[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\ninsert_final_newline = true\nindent_style = space\nindent_size = 4\ntrim_trailing_whitespace = true\n\n[*.md]\ntrim_trailing_whitespace = false\n\n[*.{yml,yaml}]\nindent_size = 2\n"
  },
  {
    "path": ".gitattributes",
    "content": "* text=auto\n*.css linguist-vendored\n*.scss linguist-vendored\n*.js linguist-vendored\nCHANGELOG.md export-ignore\n"
  },
  {
    "path": ".gitignore",
    "content": "/node_modules\n/public/hot\n/public/storage\n/storage/*.key\n/vendor\n.env\n.env.backup\n.phpunit.result.cache\ndocker-compose.override.yml\nHomestead.json\nHomestead.yaml\nnpm-debug.log\nyarn-error.log\n/.idea\n/.vscode\n"
  },
  {
    "path": ".styleci.yml",
    "content": "php:\n  preset: laravel\n  disabled:\n    - no_unused_imports\n  finder:\n    not-name:\n      - index.php\n      - server.php\njs:\n  finder:\n    not-name:\n      - webpack.mix.js\ncss: true\n"
  },
  {
    "path": "README1.md",
    "content": "<p align=\"center\"><a href=\"https://laravel.com\" target=\"_blank\"><img src=\"https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg\" width=\"400\"></a></p>\n\n<p align=\"center\">\n<a href=\"https://travis-ci.org/laravel/framework\"><img src=\"https://travis-ci.org/laravel/framework.svg\" alt=\"Build Status\"></a>\n<a href=\"https://packagist.org/packages/laravel/framework\"><img src=\"https://img.shields.io/packagist/dt/laravel/framework\" alt=\"Total Downloads\"></a>\n<a href=\"https://packagist.org/packages/laravel/framework\"><img src=\"https://img.shields.io/packagist/v/laravel/framework\" alt=\"Latest Stable Version\"></a>\n<a href=\"https://packagist.org/packages/laravel/framework\"><img src=\"https://img.shields.io/packagist/l/laravel/framework\" alt=\"License\"></a>\n</p>\n\n## About Laravel\n\nLaravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:\n\n- [Simple, fast routing engine](https://laravel.com/docs/routing).\n- [Powerful dependency injection container](https://laravel.com/docs/container).\n- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.\n- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).\n- Database agnostic [schema migrations](https://laravel.com/docs/migrations).\n- [Robust background job processing](https://laravel.com/docs/queues).\n- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).\n\nLaravel is accessible, powerful, and provides tools required for large, robust applications.\n\n## Learning Laravel\n\nLaravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.\n\nIf you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.\n\n## Laravel Sponsors\n\nWe would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).\n\n### Premium Partners\n\n- **[Vehikl](https://vehikl.com/)**\n- **[Tighten Co.](https://tighten.co)**\n- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**\n- **[64 Robots](https://64robots.com)**\n- **[Cubet Techno Labs](https://cubettech.com)**\n- **[Cyber-Duck](https://cyber-duck.co.uk)**\n- **[Many](https://www.many.co.uk)**\n- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**\n- **[DevSquad](https://devsquad.com)**\n- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**\n- **[OP.GG](https://op.gg)**\n\n## Contributing\n\nThank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).\n\n## Code of Conduct\n\nIn order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).\n\n## Security Vulnerabilities\n\nIf you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.\n\n## License\n\nThe Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n"
  },
  {
    "path": "app/Console/Kernel.php",
    "content": "<?php\n\nnamespace App\\Console;\n\nuse Illuminate\\Console\\Scheduling\\Schedule;\nuse Illuminate\\Foundation\\Console\\Kernel as ConsoleKernel;\n\nclass Kernel extends ConsoleKernel\n{\n    /**\n     * The Artisan commands provided by your application.\n     *\n     * @var array\n     */\n    protected $commands = [\n        //\n    ];\n\n    /**\n     * Define the application's command schedule.\n     *\n     * @param  \\Illuminate\\Console\\Scheduling\\Schedule  $schedule\n     * @return void\n     */\n    protected function schedule(Schedule $schedule)\n    {\n        // $schedule->command('inspire')->hourly();\n    }\n\n    /**\n     * Register the commands for the application.\n     *\n     * @return void\n     */\n    protected function commands()\n    {\n        $this->load(__DIR__.'/Commands');\n\n        require base_path('routes/console.php');\n    }\n}\n"
  },
  {
    "path": "app/Exceptions/Handler.php",
    "content": "<?php\n\nnamespace App\\Exceptions;\n\nuse Illuminate\\Foundation\\Exceptions\\Handler as ExceptionHandler;\nuse Throwable;\n\nclass Handler extends ExceptionHandler\n{\n    /**\n     * A list of the exception types that are not reported.\n     *\n     * @var array\n     */\n    protected $dontReport = [\n        //\n    ];\n\n    /**\n     * A list of the inputs that are never flashed for validation exceptions.\n     *\n     * @var array\n     */\n    protected $dontFlash = [\n        'current_password',\n        'password',\n        'password_confirmation',\n    ];\n\n    /**\n     * Register the exception handling callbacks for the application.\n     *\n     * @return void\n     */\n    public function register()\n    {\n        $this->reportable(function (Throwable $e) {\n            //\n        });\n    }\n}\n"
  },
  {
    "path": "app/Http/Controllers/Admin/AccessTokenController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Admin;\n\nuse App\\Http\\Controllers\\Controller;\nuse App\\Models\\AccessToken;\nuse Illuminate\\Http\\Request;\n\nclass AccessTokenController extends Controller\n{\n    public function index (){\n\n        $access = AccessToken::whereUserId(auth()->user()->id)->first();\n        $data['token'] = $access->token;\n        $data['count'] = $access->count;\n        $data['lastUsed'] = $access->updated_at;\n\n        return view('admin.access_token')->with($data);\n    }\n\n    public function generateNewToken (){\n\n        $access = AccessToken::whereUserId(auth()->user()->id)->first();\n        $bytes = random_bytes(10);\n        $token = \"QB-\".bin2hex($bytes);\n        $access->update(['token'=> $token]);\n        flash('New token created successfully')->success();\n\n        return redirect('admin/access-token');\n    }\n}\n"
  },
  {
    "path": "app/Http/Controllers/Admin/Auth/AuthController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Admin\\Auth;\n\nuse App\\Http\\Controllers\\Controller;\nuse App\\Models\\AccessToken;\nuse App\\Models\\PricePlan;\nuse App\\Models\\Subscription;\nuse App\\Models\\User;\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Support\\Facades\\Auth;\nuse Illuminate\\Support\\Facades\\DB;\nuse Illuminate\\Support\\Facades\\Hash;\nuse Illuminate\\Support\\Facades\\Validator;\n\nclass AuthController extends Controller\n{\n    public function signup()\n    {\n        return view('landing.auth.signup');\n    }\n\n    public function handleSignup(Request $request)\n    {\n        $input = $request->except('_token');\n        $rules = array(\n            'name'   => 'required|min:4|max:40',\n            'email'      => 'required|email|unique:users,email',\n            'password' => 'required|alpha_num|min:6|max:20');\n\n        $messages = array(\n            'min' => 'Hmm, that looks short.',\n            'max' => 'Oops, that too long you might forget.',\n            'alpha_num'  => 'Use alphabet or alphabet with numbers to secure your password.');\n\n\n        $validator = Validator::make($input, $rules, $messages);\n\n        if (!$validator->passes()) {\n            flash('Something is wrong with your entries')->warning();\n            return back()->withInput()->withErrors($validator);\n        }\n\n        try {\n\n            DB::beginTransaction();\n            $input['name'] = ucfirst($input['name']);\n            $input['password'] = Hash::make($input['password']);\n            $newUser = User::create($input);\n\n            $bytes = random_bytes(10);\n            $accessData['user_id'] = $newUser->id;\n            $accessData['token'] = \"ALOC-\" . bin2hex($bytes);\n            AccessToken::create($accessData);\n\n            $price = PricePlan::first();\n\n            $sub['user_id'] = $newUser->id;\n            $sub['limit'] = $price->unit_limit;\n            $sub['plan_id'] = $price->id;\n            Subscription::create($sub);\n            DB::commit();\n\n            flash('Account created successfully')->success();\n            $credentials = $request->except('_token', 'name');\n\n\n            if (Auth::attempt($credentials, true)) {\n                return redirect('/admin/dashboard');\n\n            } else {\n                flash('Hey! Contact admin, could not login')->warning();\n                return back();\n            }\n        }\n        catch(\\Exception $e)\n        {\n            //dd($e);\n            DB::rollback();\n            flash('Technical issue. Try again or contact admin')->error();\n            return back();\n        }\n\n\n    }\n\n    public function login()\n    {\n        if(Auth::check()) {\n            return redirect('admin/dashboard');\n        }\n        else {\n            flash('Access denied! Unauthorised login')->warning();\n            return redirect('/');\n\n        }\n    }\n\n    public function handleLogin(Request $request)\n    {\n        $credentials = $request->except('_token');\n        $rules = array(\n            'email'      => 'required|email',\n            'password' => 'required');\n\n        $validator = Validator::make($credentials, $rules);\n\n        if (!$validator->passes()) {\n            flash('Something is wrong with your entries')->warning();\n            return back()->withInput()->withErrors($validator);\n        }\n\n        if (Auth::attempt($credentials,true)) {\n            $user = auth()->user();\n            flash('Welcome back '.$user->name)->success ();\n            return redirect('admin/dashboard');\n        }\n        else {\n            flash('Awh! Incorrect login details')->warning();\n            return back()->withInput()->withErrors($validator);\n        }\n\n    }\n\n    public function handleLogout ()\n    {\n        Auth::logout();\n        flash('You have successfully log out')->success();\n        return redirect('/');\n    }\n}\n"
  },
  {
    "path": "app/Http/Controllers/Admin/Auth/ForgotPasswordController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Admin\\Auth;\n\nuse App\\Http\\Controllers\\Controller;\nuse App\\Models\\PasswordReset;\nuse App\\Models\\User;\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Support\\Facades\\Hash;\nuse Illuminate\\Support\\Facades\\Mail;\nuse Illuminate\\Support\\Str;\n\nclass ForgotPasswordController extends Controller\n{\n\n    public function showForgetPasswordForm()\n    {\n        return view('landing.auth.forget_password');\n    }\n\n    public function submitForgetPasswordForm(Request $request)\n    {\n        $request->validate([\n            'email' => 'required|email|exists:users',\n        ]);\n\n        $token = Str::random(64);\n        $input['email'] = $request->email;\n        $input['token'] = $token;\n\n        PasswordReset::create($input);\n\n        try{\n            Mail::send('landing.emails.forget_password', ['token' => $token], function($message) use($request){\n                $message->to($request->email);\n                $message->subject('ALOC Endpoints Reset Password');\n            });\n        }catch (\\Exception $e){\n            //dd($e);\n            flash('Could not send email. Please try again')->error();\n            return back();\n        }\n\n        flash('We have e-mailed your password reset link!')->success();\n        return redirect('/');\n\n    }\n\n\n    public function showResetPasswordForm($token) {\n        return view('landing.auth.forget_password_link', ['token' => $token]);\n    }\n\n    public function submitResetPasswordForm(Request $request)\n    {\n\n        $request->validate([\n            'email' => 'required|email|exists:users',\n            'password' => 'required|string|min:6|confirmed',\n            'password_confirmation' => 'required'\n        ]);\n\n\n        $updatePassword = PasswordReset::where([\n                'email' => $request->email,\n                'token' => $request->token])->first();\n\n        if(!$updatePassword){\n            flash('Invalid token!')->error();\n            return back()->withInput()->with('error', 'Invalid token!');\n        }\n\n        $user = User::where('email', $request->email)\n                      ->update(['password' => Hash::make($request->password)]);\n\n        PasswordReset::where(['email'=> $request->email])->delete();\n\n        flash('Your password has been changed!')->success();\n        return redirect('/');\n\n    }\n}\n"
  },
  {
    "path": "app/Http/Controllers/Admin/BillingController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Admin;\n\nuse App\\Http\\Controllers\\Controller;\nuse App\\Models\\Payment;\nuse App\\Models\\PricePlan;\nuse App\\Models\\Subscription;\nuse App\\Models\\User;\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Support\\Facades\\DB;\nuse Illuminate\\Support\\Facades\\Validator;\n\nclass BillingController extends Controller\n{\n    public function index (){\n        $data['pricing'] = PricePlan::get();\n        return view('admin.subscription.billing')->with($data);\n    }\n\n    public function paystackCallBack(Request $request)\n    {\n        $input = $request->all();\n        $user = auth()->user();\n        $userId =$user->id;\n        $rules = array(\n            'transReference'   => 'required',\n            'amount'      => 'required',\n            'plan' => 'required');\n\n        $validator = Validator::make($input, $rules);\n\n        if ($validator->passes())\n        {\n            try\n            {\n\n                $verifyData = $this->verifyPaystackTrans($input['transReference'],$userId);\n\n                $pay['amount'] =  $input['amount'] ;\n                $pay['plan_id'] =  $input['plan'] ;\n                $pay['price'] = $input['amount'] ;\n                $pay['trans_reference'] = $input['transReference'] ;\n                $pay['user_id'] = $userId;\n                $pay['message'] =$verifyData['message'];\n\n                if(!$verifyData['status']){\n                    flash('Aw! Could not verify transaction, please contact admin')->error();\n                    Payment::create($pay);\n                    return back();\n                }\n\n                $plan  = PricePlan::find($input['plan']);\n\n                if(is_null($plan)){\n                    $pay['plan_id'] = $plan->id ;\n                    $pay['message'] ='Oops! Something wried just happened. Plan not found';\n                    Payment::create($pay);\n                    flash('Oops! Something wried just happened, please contact admin')->warning();\n                    return back();\n                }\n\n                $pay['plan_id'] =   $plan->id ;\n                $pay['price'] = $plan->price ;\n\n                if($plan->price != $input['amount']){\n                    $pay['message'] ='Oops! Wried stuff just happened. Amount does not match';\n                    Payment::create($pay);\n                    flash('Oops! Wried stuff just happened, please contact admin')->warning();\n                    return back();\n                }\n\n                $subscription = Subscription::whereUser_id($userId)->first();\n                $pay['status'] = 1;\n\n                DB::beginTransaction();\n\n                Payment::create($pay);\n                $newLimit = $subscription->limit + $plan->unit_limit;\n                $subscription->update(['limit' => $newLimit,'paying' => 1, 'plan_id' => $plan->id]);\n\n                User::where(['id'=> $userId])->update(['price_plan' => $plan->id]);\n\n                DB::commit();\n\n                flash('Yeah! Payment was processed successfully')->warning();\n                return redirect('admin/dashboard');\n\n            }\n            catch(\\Exception $e)\n            {\n                //dd($e);\n                DB::rollback();\n                flash('App logic got crashed. Payment not saved, contact Admin')->error();\n                return back();\n            }\n        }else{\n\n            flash('Parameter not properly set. contact Admin')->warning();\n            return back();\n        }\n\n    }\n\n    private function verifyPaystackTrans($transReference, $userId)\n    {\n        $responseData = [];\n        try {\n            $res =payStackVerifyTransaction($transReference);\n            if($res->status){\n                $responseData['status'] = true;\n                $responseData['message'] = $res->message;\n                $responseData['amount'] = $res->data->amount/100;\n            }else{\n                $responseData['status'] = false;\n                $responseData['message'] = $res->message;\n                $responseData['amount'] = 0;\n            }\n\n        } catch (\\Exception $e) {\n            //dd($e);\n            $responseData['status'] = false;\n            $responseData['message'] = 'Logic error';\n            $responseData['amount'] = 0;\n        }\n\n        return $responseData;\n    }\n\n}\n"
  },
  {
    "path": "app/Http/Controllers/Admin/DashboardController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Admin;\n\nuse App\\Http\\Controllers\\Controller;\nuse App\\Models\\AccessToken;\nuse App\\Models\\AccessTokenCall;\nuse Illuminate\\Http\\Request;\n\nclass DashboardController extends Controller\n{\n    public function index (){\n        $data['tracker'] = $this->questionRequest();\n        $data['topMetrics'] = $this->topMetrics();\n        //dd($data);\n        return view('admin.dashboard')->with($data);\n    }\n\n\n    private function questionRequest(){\n\n        $userId =auth()->user()->id;\n        $res= AccessTokenCall::whereUserId(['$userId'=> $userId])->get()\n             ->groupBy('subject');\n        $data = Array();\n        $questionCalls = 0;\n        $subjectCount = 0;\n\n        if(!$res->isEmpty()){\n\n            foreach ($res as $subjectCalls){\n                 $groupCounter = 0;\n                 $requestCount = 0 ;\n                 foreach ($subjectCalls as $calls){\n                     $groupCounter++;\n                     $requestCount += $calls->requestCount;\n                     $questionCalls += $calls->requestCount;\n                     $data[$subjectCount]['subject'] = $calls->subject;\n                     $data[$subjectCount]['count'] = $requestCount;\n                     $data[$subjectCount]['lastCall'] = $calls->updated_at;\n                     $data[$subjectCount]['token'] = $groupCounter;\n                 }\n                 $subjectCount++;\n             }\n        }\n        $finalData['subjectCount'] = $subjectCount;\n        $finalData['questionCalls'] = $questionCalls;\n        $finalData['subjectTracker'] = $data;\n\n        return $finalData;\n    }\n\n    private function topMetrics(){\n        $user =auth()->user();\n        $access = AccessToken::whereUserId($user->id)->first();\n\n        $data['accessCount'] = $access->count;\n        $data['subscription'] = $user->subscription;\n        $data['plan'] = $user->pricePlan;\n\n        return $data;\n    }\n}\n"
  },
  {
    "path": "app/Http/Controllers/Api/v1/MetricsController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Api\\v1;\n\nuse App\\Models\\QLoader;\nuse Illuminate\\Http\\Request;\nuse App\\Http\\Controllers\\Controller;\nuse Illuminate\\Support\\Facades\\DB;\nuse Mockery\\Exception;\n\nclass MetricsController extends Controller\n{\n    public function subjectsApiCallCounts(){\n\n        $subjectTable = subjectArray();\n        $totalSubject = count($subjectTable);\n        $question = new QLoader;\n        $totalQuestionsAPiCalls  = 0;\n        $data = [];\n        for ($i=0; $i < $totalSubject; $i++){\n\n            try{\n                $question->setTable($subjectTable[$i]);\n                $subject = $question->get()->sum('requestCount');\n                $totalQuestionsAPiCalls = $totalQuestionsAPiCalls + $subject;\n                $data[] = ucfirst($subjectTable[$i]).\" =>\".formatNumber($subject);\n            }catch (\\Exception $e){\n                $data[] = ucfirst($subjectTable[$i]).\" =>Not found\";\n            }\n        }\n        $res['message'] = \"Metrics on API subject calls\";\n        $res['status'] = 200;\n        $res['data'] = (object) $data;\n        $res['questions-called-by-api'] = formatNumber($totalQuestionsAPiCalls);\n\n\n        return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n    }\n\n    public function availableSubjects(){\n        $subjects = subjectArray();\n        $res['message'] = \"Subject available\";\n        $res['status'] = 200;\n        $res['data'] = (object)$subjects;\n\n        return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n    }\n\n    public function subjectAvailableForYear($year)\n    {\n        if (isset($year) && $year != \"\") {\n\n            if(!is_numeric($year)){\n                $res['message'] = 'Enter numbers only';\n                $res['status'] = 400;\n                $res['data'] = array();\n\n                return response()->json($res, 400, [], JSON_PRETTY_PRINT);\n            }\n            $subjectTable = subjectArray();\n            $subjectNub = count($subjectTable);\n            $subjectAvailable = array();\n\n            try {\n\n                $question = new QLoader;\n                $itemCounter = 0;\n                for($i=0; $i < $subjectNub; $i++){\n                    $question->setTable($subjectTable[$i]);\n                    $resData= $question->where(['examyear' => $year])->get();\n                    if(!$resData->isEmpty()){\n                        $subjectAvailable[$itemCounter]['subject'] = $subjectTable[$i];\n                        $subjectAvailable[$itemCounter]['questions'] = count($resData);\n                        $itemCounter++;\n                    }\n                }\n                $res['message'] = 'Subjects available for year '.$year;\n                $res['status'] = 200;\n                $res['data'] =  $subjectAvailable;\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Year not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function yearAvailableForSubject($subject)\n    {\n        if (isset($subject) && $subject != \"\") {\n\n            try {\n\n                $question = new QLoader;\n                $question->setTable($subject);\n                $resData= $question ->select(DB::raw('count(*) as questions, examyear'))->groupBy('examyear')->get();\n\n                $res['message'] = 'Years available for '.$subject;\n                $res['status'] = 200;\n                $res['data'] =  $resData;\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function subjectQuestions($subject)\n    {\n        if (isset($subject) && $subject != \"\") {\n\n            try {\n\n                $question = new QLoader;\n                $question->setTable($subject);\n                $resData= $question->get();\n\n                $data['subject'] = $subject;\n                $data['questions'] =  count($resData);\n\n                $res['message'] = 'Action was successful';\n                $res['status'] = 200;\n                $res['data'] =  $data;\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n\n}\n"
  },
  {
    "path": "app/Http/Controllers/Api/v1/QuestionController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Api\\v1;\n\nuse App\\Models\\ApiCallIpAddress;\nuse App\\Models\\QLoader;\nuse App\\Models\\ReportQuestion;\nuse Illuminate\\Http\\Request;\nuse App\\Http\\Controllers\\Controller;\n\n\nclass QuestionController extends Controller\n{\n\n    public function index()\n    {\n        return $this->depreciateApiV1();\n\n        $input = request()->all();\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            $subjectTable = strtolower($input['subject']);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n\n                if (isset($input['year']) && isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])->inRandomOrder()->first();\n                } else if (isset($input['year'])) {\n                    $data = $question->where(['examyear' => $input['year']])->inRandomOrder()->first();\n                } else if (isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType])->inRandomOrder()->first();\n                } else {\n                    $data = $question->inRandomOrder()->first();\n                }\n\n                if (empty($data)) {\n                    $res['message'] = \"We could not find what you asked for, but got you this\";\n                    $data = $question->inRandomOrder()->first();\n                }\n\n                $count = $data->requestCount + 1;\n                $question->where(['id' => $data->id])->update(['requestCount' => $count]);\n                storeQuestionRequestByIP($subjectTable);\n\n\n                $res['subject'] = $subjectTable;\n                $res['status'] = 200;\n                $res['data'] = $question::FormatQuestionData($data);\n                $res['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function show($recordLimit)\n    {\n        return $this->depreciateApiV1();\n\n        $input = request()->all();\n        $limit = $recordLimit;\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            if (!is_numeric($recordLimit)) {\n                $limit = 1;\n            } else if ($recordLimit > 40) {\n                $limit = 40;\n            }\n\n            $subjectTable = strtolower($input['subject']);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n\n                if (isset($input['year']) && isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])->inRandomOrder()->limit($limit)->get();\n                } else if (isset($input['year'])) {\n                    $data = $question->where(['examyear' => $input['year']])->inRandomOrder()->limit($limit)->get();\n                } else if (isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType])->inRandomOrder()->limit($limit)->get();\n                } else {\n                    $data = $question->inRandomOrder()->limit($limit)->get();\n                }\n\n                if ($data->isEmpty()) {\n                    $res['message'] = \"We could not find what you asked for, but got you this\";\n                    $data = $question->inRandomOrder()->limit($limit)->get();\n                }\n\n                foreach ($data as $datum) {\n                    $count = $datum->requestCount + 1;\n                    $question->where(['id' => $datum->id])->update(['requestCount' => $count]);\n                    storeQuestionRequestByIP($subjectTable);\n                }\n\n                $res['subject'] = $subjectTable;\n                $res['status'] = 200;\n                $res['data'] = $question::FormatQuestionsData($data);\n                $res['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray2();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function questionById($questionId){\n\n        return $this->depreciateApiV1();\n\n        $input = request()->all();\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            if (!is_numeric($questionId)) {\n                $data ['error'] = \"Supply numbers only\";\n                $data['status'] = 400;\n                return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n            }\n\n            $subjectTable = strtolower($input['subject']);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n                $data = $question->find($questionId);\n\n                $res['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n                if (!empty($data)) {\n                    $res['subject'] = $subjectTable;\n                    $res['status'] = 200;\n                    $res['data'] = $question::FormatQuestionData($data);\n\n                    $count = $data->requestCount + 1;\n                    $question->where(['id' => $data->id])->update(['requestCount' => $count]);\n                    storeQuestionRequestByIP($subjectTable);\n                    return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n                } else {\n                    $res['subject'] = $subjectTable;\n                    $res['question_id'] = $questionId;\n                    $res['status'] = 204;\n                    $res['error'] = \"No content found\";\n                    return response()->json($res, 400, [], JSON_PRETTY_PRINT);\n                }\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $subject = (object) subjectArray();\n                $querySample = (object) querySampleArray2();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function reportQuestion(Request $request){\n\n        $input = $request->all();\n        if(isset($input['message'])){$input['message'] = ucfirst($input['message']);}\n        if(isset($input['full_name'])){$input['full_name'] = ucfirst($input['full_name']);}\n        if(isset($input['question_id']) && isset($input['subject'])){\n\n            $questionID = (int) $input['question_id'];\n            $questionID = abs($questionID);\n            $subject =  strtolower($input['subject']);\n            $subjectList = subjectArray();\n\n            if( $questionID == 0 ){\n                $data ['error'] = \"You supplied wrong question id\";\n                $data ['status'] = 400;\n                return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n            }\n\n            if(!in_array ( $subject, $subjectList )){\n                $data ['error'] = \"Wrong subject not supplied\";\n                $data ['status'] = 400;\n                return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n            }\n\n            try{\n\n                ReportQuestion::create($input);\n                $data['status'] = 200;\n                $data['message'] = \"We have received your report on the question. Thank you.\";\n                return response()->json($data, 200, [], JSON_PRETTY_PRINT);\n\n            }catch(\\Exception $e){\n                $data['status'] = 406;\n                $data['message'] = \"Something strange went wrong.\";\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n        }else{\n\n            $data['status'] = 406;\n            $data['message'] = \"The parameters you sent does not match our requirement. You should provide subject and question_id\";\n            return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n        }\n\n    }\n\n    public function allSubjects(){\n\n        $subject = (object) subjectArray();\n        $res['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n        $data['message'] = \"List of subjects supported\";\n        $data['status'] = 200;\n        $data['subjects'] = $subject;\n        return response()->json($data, 200, [], JSON_PRETTY_PRINT);\n    }\n\n    public function manyQuestions(){\n\n        return $this->depreciateApiV1();\n\n        $input = request()->all();\n        $questionLimit = 40;\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            $subjectTable = strtolower($input['subject']);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n\n                if (isset($input['year']) && isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])\n                        ->inRandomOrder()->take($questionLimit)->get();\n                } else if (isset($input['year'])) {\n                    $data = $question->where(['examyear' => $input['year']])\n                        ->inRandomOrder()->take($questionLimit)->get();\n                } else if (isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType])\n                        ->inRandomOrder()->take($questionLimit)->get();\n                } else {\n                    $data = $question->inRandomOrder()->take($questionLimit)->get();\n                }\n\n                if (empty($data)) {\n                    $res['message'] = \"We could not find what you asked for, but got you this\";\n                    $data = $question->inRandomOrder()->take($questionLimit)->get();\n                }\n\n                foreach ($data as $datum) {\n                    $count = $datum->requestCount + 1;\n                    $question->where(['id' => $datum->id])->update(['requestCount' => $count]);\n                    storeQuestionRequestByIP($subjectTable);\n                }\n\n                $res['subject'] = $subjectTable;\n                $res['status'] = 200;\n                $res['data'] = $question::FormatQuestionsData($data);\n                $res['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function topQuestion(){\n        return $this->depreciateApiV1();\n\n        try{\n            $randSubjects = randomSubjects();\n            $question = new QLoader;\n            foreach ( $randSubjects as $key => $subject ){\n                $question->setTable( $subject);\n                $questionSet = $question->where('id','!=', 0)->latest('updated_at')->inRandomOrder()->limit(2)->get();\n\n                foreach ($questionSet as $eachQuestion){\n\n                    $eachQuestion['subject'] = $subject;\n                    $data[] = $eachQuestion;\n                    storeQuestionRequestByIP($subject);\n                    // $count = $eachQuestion->requestCount + 1;\n                    // $question->where(['id' => $eachQuestion->id])->update(['requestCount' => $count]);\n                }\n            }\n            shuffle($data);\n            $res['status'] = 200;\n            $res['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n            $res['data'] = $question::FormatTopQuestionsData($data);\n            return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n        } catch (\\Exception $e) {\n            $data = null;\n            $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n            $data ['error'] = \"Something strange just happened\";\n            $data['status'] = 406;\n            return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    private function depreciateApiV1 (){\n        $data['notice'] = 'This API is depreciated and will be terminated by September 1st 2021. Kindly migrate to v2';\n        $data ['error'] = \"Depreciated v1 was terminated on September 6th 2021. Kindly migrate to v2\";\n        $data['status'] = 400;\n        return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n    }\n\n}\n"
  },
  {
    "path": "app/Http/Controllers/Api/v2/MetricsController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Api\\v2;\n\nuse App\\Models\\QLoader;\nuse Illuminate\\Http\\Request;\nuse App\\Http\\Controllers\\Controller;\nuse Illuminate\\Support\\Facades\\DB;\nuse Mockery\\Exception;\n\nclass MetricsController extends Controller\n{\n    public function subjectsApiCallCounts(){\n\n        $subjectTable = subjectArray();\n        $totalSubject = count($subjectTable);\n        $question = new QLoader;\n        $totalQuestionsAPiCalls  = 0;\n        $data = [];\n        for ($i=0; $i < $totalSubject; $i++){\n\n            try{\n                $question->setTable($subjectTable[$i]);\n                $subject = $question->get()->sum('requestCount');\n                $totalQuestionsAPiCalls = $totalQuestionsAPiCalls + $subject;\n                $data[] = ucfirst($subjectTable[$i]).\" =>\".formatNumber($subject);\n            }catch (\\Exception $e){\n                $data[] = ucfirst($subjectTable[$i]).\" =>Not found\";\n            }\n        }\n        $res['message'] = \"Metrics on API subject calls\";\n        $res['status'] = 200;\n        $res['data'] = (object) $data;\n        $res['questions-called-by-api'] = formatNumber($totalQuestionsAPiCalls);\n\n\n        return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n    }\n\n    public function availableSubjects(){\n        $subjects = subjectArray();\n        $res['message'] = \"Subject available\";\n        $res['status'] = 200;\n        $res['data'] = (object)$subjects;\n\n        return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n    }\n\n    public function subjectAvailableForYear($year)\n    {\n        if (isset($year) && $year != \"\") {\n\n            if(!is_numeric($year)){\n                $res['message'] = 'Enter numbers only';\n                $res['status'] = 400;\n                $res['data'] = array();\n\n                return response()->json($res, 400, [], JSON_PRETTY_PRINT);\n            }\n            $subjectTable = subjectArray();\n            $subjectNub = count($subjectTable);\n            $subjectAvailable = array();\n\n            try {\n\n                $question = new QLoader;\n                $itemCounter = 0;\n                for($i=0; $i < $subjectNub; $i++){\n                    $question->setTable($subjectTable[$i]);\n                    $resData= $question->where(['examyear' => $year])->get();\n                    if(!$resData->isEmpty()){\n                        $subjectAvailable[$itemCounter]['subject'] = $subjectTable[$i];\n                        $subjectAvailable[$itemCounter]['questions'] = count($resData);\n                        $itemCounter++;\n                    }\n                }\n                $res['message'] = 'Subjects available for year '.$year;\n                $res['status'] = 200;\n                $res['data'] =  $subjectAvailable;\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Year not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function yearAvailableForSubject($subject)\n    {\n        if (isset($subject) && $subject != \"\") {\n\n            try {\n\n                $question = new QLoader;\n                $question->setTable($subject);\n                $resData= $question ->select(DB::raw('count(*) as questions, examyear'))->groupBy('examyear')->get();\n\n                $res['message'] = 'Years available for '.$subject;\n                $res['status'] = 200;\n                $res['data'] =  $resData;\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function subjectQuestions($subject)\n    {\n        if (isset($subject) && $subject != \"\") {\n\n            try {\n\n                $question = new QLoader;\n                $question->setTable($subject);\n                $resData= $question->get();\n\n                $data['subject'] = $subject;\n                $data['questions'] =  count($resData);\n\n                $res['message'] = 'Action was successful';\n                $res['status'] = 200;\n                $res['data'] =  $data;\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n\n}\n"
  },
  {
    "path": "app/Http/Controllers/Api/v2/QuestionController.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers\\Api\\v2;\n\nuse App\\Models\\QLoader;\nuse App\\Models\\QBoardLog;\nuse App\\Models\\AccessToken;\nuse Illuminate\\Http\\Request;\nuse App\\Models\\Subscription;\nuse App\\Models\\ReportQuestion;\nuse App\\Models\\AccessTokenCall;\nuse App\\Models\\ApiCallIpAddress;\nuse App\\Http\\Controllers\\Controller;\nuse Illuminate\\Support\\Facades\\Validator;\n\n\nclass QuestionController extends Controller\n{\n\n    public function index()\n    {\n        $processReq =  $this->processRequest();\n        if($processReq['shouldReturn']){\n            unset($processReq['shouldReturn']);\n            return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n        }\n\n        $input = request()->all();\n\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            $subjectTable = strtolower($input['subject']);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n\n                if(!isset($input['random'])){\n                    $random = 'true';\n                }else{\n                    $random = strtolower($input['random']);\n                }\n\n                if (isset($input['year']) && isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    if($random === 'true'){\n                        $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])->inRandomOrder()->first();\n                    }else{\n                        $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])->first();\n                    }\n                } else if (isset($input['year'])) {\n                    if($random === 'true'){\n                        $data = $question->where(['examyear' => $input['year']])->inRandomOrder()->first();\n                    }else{\n                        $data = $question->where(['examyear' => $input['year']])->first();\n\n                    }\n                } else if (isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    if($random === 'true'){\n                        $data = $question->where(['examtype' => $examType])->inRandomOrder()->first();\n                    }else{\n                        $data = $question->where(['examtype' => $examType])->first();\n                    }\n                } else {\n                    if($random === 'true'){\n                        $data = $question->inRandomOrder()->first();\n                    }else{\n                        $data = $question->first();\n                    }\n                }\n\n                if (empty($data)) {\n                    $res['message'] = \"We could not find what you asked for, but got you this\";\n                    $data = $question->inRandomOrder()->first();\n                }\n\n                $count = $data->requestCount + 1;\n                $question->where(['id' => $data->id])->update(['requestCount' => $count]);\n                if(!env('APP_DEBUG')){\n                    storeQuestionRequestByIP($subjectTable);\n                }\n\n                $res['subject'] = $subjectTable;\n                $res['status'] = 200;\n                $res['data'] = $question::FormatQuestionData($data, $subjectTable);\n\n                $this->tokenQuestions(1, $subjectTable, $processReq['userId'], $processReq['token'] );\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                print($e);\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                                  'message-2' => 'Supported exam types.', 'Exams' => $type,\n                                  'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function show($recordLimit)\n    {\n        $processReq =  $this->processRequest();\n        if($processReq['shouldReturn']){\n            unset($processReq['shouldReturn']);\n            return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n        }\n\n        $input = request()->all();\n        $limit = $recordLimit;\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            if (!is_numeric($recordLimit)) {\n                $limit = 1;\n            } else if ($recordLimit > 40) {\n                $limit = 40;\n            }\n\n            $subjectTable = strtolower($input['subject']);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n \n                if (isset($input['year']) && isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])->inRandomOrder()->limit($limit)->get();\n                } else if (isset($input['year'])) {\n                    $data = $question->where(['examyear' => $input['year']])->inRandomOrder()->limit($limit)->get();\n                } else if (isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType])->inRandomOrder()->limit($limit)->get();\n                } else {\n                    $data = $question->inRandomOrder()->limit($limit)->get();\n                }\n\n                if ($data->isEmpty()) {\n                    $res['message'] = \"We could not find what you asked for, but got you this\";\n                    $data = $question->inRandomOrder()->limit($limit)->get();\n                }\n\n                if(!env('APP_DEBUG')){\n                    foreach ($data as $datum) {\n                        $count = $datum->requestCount + 1;\n                        $question->where(['id' => $datum->id])->update(['requestCount' => $count]);\n                        storeQuestionRequestByIP($subjectTable);\n                    }\n                }\n\n\n                $res['subject'] = $subjectTable;  \n                $res['status'] = 200;\n                $res['data'] = $question::FormatQuestionsData($data, $subjectTable);\n\n                $this->tokenQuestions($recordLimit, $subjectTable, $processReq['userId'], $processReq['token'] );\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                // dd($e);\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray2();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                                  'message-2' => 'Supported exam types.', 'Exams' => $type,\n                                  'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    // public function showVendor($recordLimit)\n    // {\n    //     $processReq =  $this->processRequest();\n    //     if($processReq['shouldReturn']){\n    //         unset($processReq['shouldReturn']);\n    //         return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n    //     }\n\n    //     $input = request()->all();\n    //     $limit = $recordLimit;\n    //     if (isset($input['subject']) && $input['subject'] != \"\") {\n\n    //         if (!is_numeric($recordLimit)) {\n    //             $limit = 1;\n    //         } else if ($recordLimit > 40) {\n    //             $limit = 40;\n    //         }\n\n    //         $subjectTable = strtolower($input['subject']);\n    //         try {\n    //             $question = new QLoader;\n    //             $question->setTable($subjectTable);\n \n    //             if (isset($input['year']) && isset($input['type'])) {\n    //                 $examType = strtolower($input['type']);\n    //                 $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])->inRandomOrder()->limit($limit)->get();\n    //             } else if (isset($input['year'])) {\n    //                 $data = $question->where(['examyear' => $input['year']])->inRandomOrder()->limit($limit)->get();\n    //             } else if (isset($input['type'])) {\n    //                 $examType = strtolower($input['type']);\n    //                 $data = $question->where(['examtype' => $examType])->inRandomOrder()->limit($limit)->get();\n    //             } else {\n    //                 $data = $question->inRandomOrder()->limit($limit)->get();\n    //             }\n\n    //             if ($data->isEmpty()) {\n    //                 $res['message'] = \"We could not find what you asked for, but got you this\";\n    //                 $data = $question->inRandomOrder()->limit($limit)->get();\n    //             }\n\n    //             if(!env('APP_DEBUG')){\n    //                 foreach ($data as $datum) {\n    //                     $count = $datum->requestCount + 1;\n    //                     $question->where(['id' => $datum->id])->update(['requestCount' => $count]);\n    //                     storeQuestionRequestByIP($subjectTable);\n    //                 }\n    //             }\n\n\n    //             $res['subject'] = $subjectTable;  \n    //             $res['status'] = 200;\n    //             $res['data'] = $question::FormatQuestionsData($data, $subjectTable);\n\n    //             $this->tokenQuestions($recordLimit, $subjectTable, $processReq['userId'], $processReq['token'] );\n\n    //             return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n    //         } catch (\\Exception $e) {\n    //             // dd($e);\n    //             $subject = (object) subjectArray();\n    //             $type = (object) examTypeArray();\n    //             $querySample = (object) querySampleArray2();\n    //             $data = null;\n    //             $data ['error'] = \"Something strange just happened\";\n    //             $data['status'] = 406;\n    //             $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n    //                               'message-2' => 'Supported exam types.', 'Exams' => $type,\n    //                               'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n\n    //             return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n    //         }\n\n    //     } else {\n    //         $data ['error'] = \"Subject not supplied\";\n    //         $data['status'] = 400;\n    //         return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n    //     }\n    // }\n\n    public function questionById($questionId){\n\n        $processReq =  $this->processRequest();\n        if($processReq['shouldReturn']){\n            unset($processReq['shouldReturn']);\n            return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n        }\n        $input = request()->all();\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            if (!is_numeric($questionId)) {\n                $data ['error'] = \"Supply numbers only\";\n                $data['status'] = 400;\n                return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n            }\n\n            $subjectTable = strtolower($input['subject']);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n                $data = $question->find($questionId);\n\n                if (!empty($data)) {\n                    $res['subject'] = $subjectTable;\n                    $res['status'] = 200;\n                    $res['data'] = $question::FormatQuestionData($data,$subjectTable);\n\n                    $count = $data->requestCount + 1;\n                    $question->where(['id' => $data->id])->update(['requestCount' => $count]);\n                    if(!env('APP_DEBUG')){\n                        storeQuestionRequestByIP($subjectTable);\n                    }\n                    $this->tokenQuestions(1, $subjectTable, $processReq['userId'], $processReq['token'] );\n                    return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n                } else {\n                    $res['subject'] = $subjectTable;\n                    $res['question_id'] = $questionId;\n                    $res['status'] = 204;\n                    $res['error'] = \"No content found\";\n                    return response()->json($res, 400, [], JSON_PRETTY_PRINT);\n                }\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $subject = (object) subjectArray();\n                $querySample = (object) querySampleArray2();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function reportQuestion(Request $request){\n\n        $input = $request->all();\n        if(isset($input['message'])){$input['message'] = ucfirst($input['message']);}\n        if(isset($input['full_name'])){$input['full_name'] = ucfirst($input['full_name']);}\n        if(isset($input['question_id']) && isset($input['subject'])){\n\n            $questionID = (int) $input['question_id'];\n            $questionID = abs($questionID);\n            $subject =  strtolower($input['subject']);\n            $subjectList = subjectArray();\n\n            if( $questionID == 0 ){\n                $data ['error'] = \"You supplied wrong question id\";\n                $data ['status'] = 400;\n                return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n            }\n\n            if(!in_array ( $subject, $subjectList )){\n                $data ['error'] = \"Wrong subject not supplied\";\n                $data ['status'] = 400;\n                return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n            }\n\n            try{\n\n                ReportQuestion::create($input);\n                $data['status'] = 200;\n                $data['message'] = \"We have received your report on the question. Thank you.\";\n                return response()->json($data, 200, [], JSON_PRETTY_PRINT);\n\n            }catch(\\Exception $e){\n                $data['status'] = 406;\n                $data['message'] = \"Something strange went wrong.\";\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n        }else{\n\n            $data['status'] = 406;\n            $data['message'] = \"The parameters you sent does not match our requirement. You should provide subject and question_id\";\n            return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n        }\n\n    }\n\n    public function allSubjects(){\n\n        $subject = (object) subjectArray();\n        $data['message'] = \"List of subjects supported\";\n        $data['status'] = 200;\n        $data['subjects'] = $subject;\n        return response()->json($data, 200, [], JSON_PRETTY_PRINT);\n    }\n\n    public function comprehensionYears(){\n\n        $processReq =  $this->processRequest();\n        if($processReq['shouldReturn']){\n            unset($processReq['shouldReturn']);\n            return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n        }\n\n        $input = request()->all();\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            $subjectTable = strtolower($input['subject']);\n            if($subjectTable !== 'english'){\n                $data ['error'] = \"Subject not supplied. Only english language is supported\";\n                $data['status'] = 400;\n                return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n            }\n\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n                $data = $question->where(['hasPassage' => true])->select(['examyear'])->groupBy('examyear')->get();\n\n\n                $res['subject'] = $subjectTable;\n                $res['status'] = 200;\n                $res['data'] = $data;\n\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                //dd($e);\n                $data = null;\n                $data ['error'] = \"Something strange just happened. Check your input\";\n                $data['status'] = 406;\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n\n    public function manyQuestions(){\n\n        $processReq =  $this->processRequest();\n        if($processReq['shouldReturn']){\n            unset($processReq['shouldReturn']);\n            return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n        }\n\n        $input = request()->all();\n        $questionLimit = 40;\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            $subjectTable = strtolower($input['subject']);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n\n                if (isset($input['year']) && isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])\n                                     ->inRandomOrder()->take($questionLimit)->get();\n                } else if (isset($input['year'])) {\n                    $data = $question->where(['examyear' => $input['year']])\n                                     ->inRandomOrder()->take($questionLimit)->get();\n                } else if (isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    $data = $question->where(['examtype' => $examType])\n                                     ->inRandomOrder()->take($questionLimit)->get();\n                } else {\n                    $data = $question->inRandomOrder()->take($questionLimit)->get();\n                }\n\n                if ($data->isEmpty()) {\n                    $res['message'] = \"We could not find what you asked for, but got you this\";\n                    $data = $question->inRandomOrder()->take($questionLimit)->get();\n                }\n\n                if(!env('APP_DEBUG')){\n                    foreach ($data as $datum) {\n                        $count = $datum->requestCount + 1;\n                        $question->where(['id' => $datum->id])->update(['requestCount' => $count]);\n                        storeQuestionRequestByIP($subjectTable);\n                    }\n                }\n\n                $qResult = $question::FormatQuestionsData($data, $subjectTable);\n                $res['subject'] = $subjectTable;\n                $res['status'] = 200;\n                $res['total'] = count($qResult);\n                $res['data'] = $qResult;\n\n                $this->tokenQuestions(40, $subjectTable, $processReq['userId'], $processReq['token'] );\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function hugeQuestions($questionLimit){\n\n        if($questionLimit > 120){\n            $data ['error'] = \"Maximum questions support is 120\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n\n        $processReq =  $this->processRequest($questionLimit);\n        if($processReq['shouldReturn']){\n            unset($processReq['shouldReturn']);\n            return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n        }\n\n        $input = request()->all();\n        // $questionLimit = 40;\n        //dd($input);\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            $subjectTable = strtolower($input['subject']);\n\n            if(!isset($input['random'])){\n                $random = 'true';\n            }else{\n                $random = strtolower($input['random']);\n            }\n\n            if(!isset($input['withComprehension'])){\n                $withComprehension = 'false';\n            }else{\n                $withComprehension = strtolower($input['withComprehension']);\n            }\n\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n\n                if (isset($input['year']) && isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    if($random === 'true'){\n                        $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])\n                                        ->inRandomOrder()->take($questionLimit)->get();\n                    }else{\n                        $data = $question->where(['examtype' => $examType, 'examyear' => $input['year']])->take($questionLimit)->get();\n                    }\n                } else if (isset($input['year'])) {\n                    if($random === 'true'){\n                        $data = $question->where(['examyear' => $input['year']])->inRandomOrder()->take($questionLimit)->get();\n                    }else{\n                        $data = $question->where(['examyear' => $input['year']])->take($questionLimit)->get();\n                    }\n\n                } else if (isset($input['type'])) {\n                    $examType = strtolower($input['type']);\n                    if($random === 'true'){\n                         $data = $question->where(['examtype' => $examType])\n                                     ->inRandomOrder()->take($questionLimit)->get();\n                    }else{\n                        $data = $question->where(['examtype' => $examType])->take($questionLimit)->get();\n                    }\n                } else {\n                    if($random === 'true'){\n                      $data = $question->inRandomOrder()->take($questionLimit)->get();\n                    }else{\n                        $data = $question->take($questionLimit)->get();\n                    }\n                }\n\n                if ($data->isEmpty()) {\n                    $res['message'] = \"We could not find what you asked for, but got you this\";\n                    $data = $question->inRandomOrder()->take($questionLimit)->get();\n                }\n\n                if(!env('APP_DEBUG')){\n                    foreach ($data as $datum) {\n                        $count = $datum->requestCount + 1;\n                        $question->where(['id' => $datum->id])->update(['requestCount' => $count]);\n                        storeQuestionRequestByIP($subjectTable);\n                    }\n                }\n\n                $qResult = $question::FormatQuestionsData($data, $subjectTable, $withComprehension);\n                $res['subject'] = $subjectTable;\n                $res['status'] = 200;\n                $res['total'] = count($qResult);\n                $res['data'] = $qResult;\n\n                if( $res['total'] == 0 && isset($input['withComprehension'])){\n                    $data = null;\n                    $data ['error'] = \"Comprehension not supported for subject or year\";\n                    $data['status'] = 406;\n                    $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => 'english',\n                    'message-2' => 'Supported years. 2000, 2001, 2002, 2011,2012, 2013, 2014, 2015,2016, 2017, 2018, 2019,2020, 2021, 2022', 'Exams' => 'utme'];\n                    return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n\n                }\n\n                $this->tokenQuestions($questionLimit, $subjectTable, $processReq['userId'], $processReq['token'] );\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    public function vendorHugeQuestions($questionLimit){\n\n        if($questionLimit > 60){\n            $data ['error'] = \"Maximum questions support is 60\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n\n        $processReq =  $this->processRequest($questionLimit);\n        if($processReq['shouldReturn']){\n            unset($processReq['shouldReturn']);\n            return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n        }\n\n        $input = request()->all();\n        // $questionLimit = 40;\n        //dd($input);\n        if (isset($input['subject']) && $input['subject'] != \"\") {\n\n            $subjectTable = strtolower($input['subject']);\n\n            if(!isset($input['random'])){\n                $random = 'true';\n            }else{\n                $random = strtolower($input['random']);\n            }\n\n            if(!isset($input['withComprehension'])){\n                $withComprehension = 'false';\n            }else{\n                $withComprehension = strtolower($input['withComprehension']);\n            }\n\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n\n                if (isset($input['examtype']) && isset($input['type'])) {\n                    $examType = strtolower($input['examtype']);\n                    $type = strtolower($input['type']);\n\n                    if($random === 'true'){\n                        $data = $question->where(['examtype' => $examType, 'type' => $input['type']])\n                                        ->inRandomOrder()->take($questionLimit)->get();\n                    }else{\n                        $data = $question->where(['examtype' => $examType, 'type' => $input['type']])->take($questionLimit)->get();\n                    }\n\n                } else {\n                    $data ['error'] = \"examtype or type was not supplied\";\n                    $data['status'] = 400;\n                    return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n                }\n\n                // dd( $data);\n\n                if ($data->isEmpty()) {\n                    // dd( $data);\n\n                    $data['status'] = 400;\n                    $data ['error'] = \"We could not find what you asked for\";\n                    return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n                }\n\n\n                if(!env('APP_DEBUG')){\n                    foreach ($data as $datum) {\n                        $count = $datum->requestCount + 1;\n                        $question->where(['id' => $datum->id])->update(['requestCount' => $count]);\n                        storeQuestionRequestByIP($subjectTable);\n                    }\n                }\n                \n\n                $qResult = $question::FormatQuestionsData($data, $subjectTable, $withComprehension);\n                $res['subject'] = $subjectTable;\n                $res['status'] = 200;\n                $res['total'] = count($qResult);\n                $res['data'] = $qResult;\n\n                if( $res['total'] == 0 && isset($input['withComprehension'])){\n                    $data = null;\n                    $data ['error'] = \"Comprehension not supported for subject or year\";\n                    $data['status'] = 406;\n                    $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => 'english',\n                    'message-2' => 'Supported years. 2000, 2001, 2002, 2011,2012, 2013, 2014, 2015,2016, 2017, 2018, 2019,2020, 2021, 2022', 'Exams' => 'utme'];\n                    return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n\n                }\n\n                $this->tokenQuestions($questionLimit, $subjectTable, $processReq['userId'], $processReq['token'] );\n                return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n            } catch (\\Exception $e) {\n\n                //dd($e);\n                $subject = (object) subjectArray();\n                $type = (object) examTypeArray();\n                $querySample = (object) querySampleArray1();\n                $data = null;\n                $data ['error'] = \"Something strange just happened\";\n                $data['status'] = 406;\n                $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                    'message-2' => 'Supported exam types.', 'Exams' => $type,\n                    'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n                return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n            }\n\n        } else {\n            $data ['error'] = \"Subject not supplied\";\n            $data['status'] = 400;\n            return response()->json($data, 400, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n\n    public function groupSubjectsQuestions(Request $request)\n    {\n        $processReq =  $this->processRequest();\n        if($processReq['shouldReturn']){\n            unset($processReq['shouldReturn']);\n            return response()->json($processReq, 406, [], JSON_PRETTY_PRINT);\n        }\n\n        $input = $request->all();\n\n        $rules = array(\n            'subject1'   => 'required', \n            'number'=> 'required|numeric');\n\n        $validator = Validator::make($input, $rules);\n\n        if (!$validator->passes()){\n            $res['status'] = 406;\n            $res['message'] = $validator->errors();\n            return response()->json($res,406);\n        }\n\n        try{\n\n            $questions['subject1'] = $this->getBySubject($input['subject1'], $input['number'],$processReq);\n\n            if (isset($input['subject2']) && $input['subject2'] != \"\") {\n                $questions['subject2'] = $this->getBySubject($input['subject2'], $input['number'],$processReq);\n            }\n\n            if (isset($input['subject3']) && $input['subject3'] != \"\") {\n                $questions['subject3'] = $this->getBySubject($input['subject3'], $input['number'],$processReq);\n            }\n\n            if (isset($input['subject4']) && $input['subject4'] != \"\") {\n                $questions['subject4'] = $this->getBySubject($input['subject4'], $input['number'],$processReq);\n            }\n\n            $res['status'] = 200;\n            $res['data'] = $questions;\n            $res['message'] = 'Group questions was fetched';\n\n            return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n\n        } catch (\\Exception $e) {\n           // print($e);\n            $subject = (object) subjectArray();\n            $type = (object) examTypeArray();\n            $querySample = (object) querySampleArray1();\n            $data = null;\n            $data ['error'] = \"Something strange just happened\";\n            $data['status'] = 406;\n            $data ['hint'] = ['message-1' => 'This is the list of supported subjects.', 'Subjects' => $subject,\n                                'message-2' => 'Supported exam types.', 'Exams' => $type,\n                                'message-3' => 'Query samples.', 'Queries' => $querySample,];\n\n            return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n        }\n\n    }\n\n    public function topQuestion(){\n\n        try{\n            $randSubjects = randomSubjects();\n            $question = new QLoader;\n            $data = Array();\n            foreach ( $randSubjects as $key => $subject ){\n                $question->setTable( $subject);\n                $questionSet = $question->where('id','!=', 0)->latest('updated_at')->inRandomOrder()->limit(2)->get();\n\n                foreach ($questionSet as $eachQuestion){\n\n                    $eachQuestion['subject'] = $subject;\n                    $data[] = $eachQuestion;\n                    if(!env('APP_DEBUG')) {\n                        storeQuestionRequestByIP($subject);\n                    }\n                    // $count = $eachQuestion->requestCount + 1;\n                    // $question->where(['id' => $eachQuestion->id])->update(['requestCount' => $count]);\n                }\n            }\n            shuffle($data);\n            $res['status'] = 200;\n            $res['data'] = $question::FormatTopQuestionsData($data);\n            return response()->json($res, 200, [], JSON_PRETTY_PRINT);\n        } catch (\\Exception $e) {\n            $data = null;\n            $data ['error'] = \"Something strange just happened\";\n            $data['status'] = 406;\n            return response()->json($data, 406, [], JSON_PRETTY_PRINT);\n        }\n    }\n\n    private function processRequest($questions = 40){\n        $computeCount = ceil($questions/40);\n        $accessToken =  request()->header('AccessToken');\n        if(!$accessToken){\n            $data['status'] = 400;\n            $data['shouldReturn'] = true;\n            $data ['error'] = \"Access token not provide on request header\";\n            return $data;\n        }\n\n        $res = AccessToken::whereToken($accessToken)->first();\n        if(!is_null($res)){\n\n            $subscription = Subscription::whereUserId($res->user_id)->first();\n            if($res->count >= $subscription->limit){\n                $data['status'] = 400;\n                $data['shouldReturn'] = true;\n                $data ['error'] = \"You have used up your quota. Please, upgrade your plan to continue\";\n                return $data;\n            }\n            $newCount =  $res->count + $computeCount;\n\n            if($newCount > $subscription->limit){\n                $newCount = $subscription->limit;\n            }\n            $data['status'] = 200;\n            $data['shouldReturn'] = false;\n            $data['userId'] = $res->user_id;\n            $data['token'] = $accessToken;\n            $res->update(['count'=> $newCount]);\n        }else{\n            $data['status'] = 406;\n            $data['shouldReturn'] = true;\n            $data ['error'] = \"Access token not valid or deactivated\";\n        }\n        return $data;\n    }\n\n    private function tokenQuestions($questionNumber,$subject, $userId, $token){\n\n        $res =  AccessTokenCall::where(['token' =>$token,'subject' => $subject])->first();\n        if(!is_null($res)){\n            $count = $res->requestCount + $questionNumber;\n            $res->update(['requestCount'=>$count]);\n        }else{\n\n            $data['subject'] =$subject;\n            $data['requestCount'] = $questionNumber ;\n            $data['token'] = $token ;\n            $data['user_id'] =$userId;\n            AccessTokenCall::create($data);\n        }\n\n        $this->saveQuestionsRequestByMonth($questionNumber,$subject);\n    }\n\n\n    private function saveQuestionsRequestByMonth ($questionNumber,$subject){\n\n        $year = date('Y');\n        $month = date('M');\n        $res =  QBoardLog::where(['month' =>$month,'year' =>$year,'subject' => $subject])->first();\n        if(!is_null($res)){\n            $count = $res->requestCount + 1;\n            $countQ = $res->questionCount + $questionNumber;\n            $res->update(['requestCount'=>$count, 'questionCount'=>$countQ]);\n        }else{\n\n            $data['subject'] =$subject;\n            $data['requestCount'] = 1 ;\n            $data['questionCount'] = $questionNumber ;\n            $data['month'] = $month ;\n            $data['year'] =$year;\n            QBoardLog::create($data);\n        }\n    }\n\n    private function getBySubject($subject, $recordLimit, $processReq)\n    {\n      \n        $limit = $recordLimit;\n        if ($subject != \"\") {\n\n            if (!is_numeric($recordLimit)) {\n                $limit = 1;\n            } else if ($recordLimit > 20) {\n                $limit = 20;\n            }\n\n            $subjectTable = strtolower($subject);\n            try {\n                $question = new QLoader;\n                $question->setTable($subjectTable);\n \n                if($subject === 'english'){\n                    $data = $question->where(['hasPassage' => false])->inRandomOrder()->limit($limit)->get();\n                }else{\n                    $data = $question->inRandomOrder()->limit($limit)->get();\n                }\n\n                if(!env('APP_DEBUG')){\n                    foreach ($data as $datum) {\n                        $count = $datum->requestCount + 1;\n                        $question->where(['id' => $datum->id])->update(['requestCount' => $count]);\n                        storeQuestionRequestByIP($subjectTable);\n                    }\n                }\n\n\n                $res['subject'] = $subjectTable;  \n                $res['data'] = $question::FormatQuestionsData($data, $subjectTable);\n\n                $this->tokenQuestions($recordLimit, $subjectTable, $processReq['userId'], $processReq['token'] );\n\n                return $res;\n\n            } catch (\\Exception $e) {\n                // dd($e);\n                $res['subject'] = $subject;  \n                $res['data'] = [];\n            }\n\n        } else {\n            $res['subject'] = $subject;  \n            $res['data'] = [];\n        }\n    }\n\n}\n"
  },
  {
    "path": "app/Http/Controllers/Controller.php",
    "content": "<?php\n\nnamespace App\\Http\\Controllers;\n\nuse Illuminate\\Foundation\\Auth\\Access\\AuthorizesRequests;\nuse Illuminate\\Foundation\\Bus\\DispatchesJobs;\nuse Illuminate\\Foundation\\Validation\\ValidatesRequests;\nuse Illuminate\\Routing\\Controller as BaseController;\n\nclass Controller extends BaseController\n{\n    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;\n}\n"
  },
  {
    "path": "app/Http/Kernel.php",
    "content": "<?php\n\nnamespace App\\Http;\n\nuse Illuminate\\Foundation\\Http\\Kernel as HttpKernel;\n\nclass Kernel extends HttpKernel\n{\n    /**\n     * The application's global HTTP middleware stack.\n     *\n     * These middleware are run during every request to your application.\n     *\n     * @var array\n     */\n    protected $middleware = [\n        // \\App\\Http\\Middleware\\TrustHosts::class,\n        \\App\\Http\\Middleware\\TrustProxies::class,\n        \\Fruitcake\\Cors\\HandleCors::class,\n        \\App\\Http\\Middleware\\PreventRequestsDuringMaintenance::class,\n        \\Illuminate\\Foundation\\Http\\Middleware\\ValidatePostSize::class,\n        \\App\\Http\\Middleware\\TrimStrings::class,\n        \\Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull::class,\n    ];\n\n    /**\n     * The application's route middleware groups.\n     *\n     * @var array\n     */\n    protected $middlewareGroups = [\n        'web' => [\n            \\App\\Http\\Middleware\\EncryptCookies::class,\n            \\Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse::class,\n            \\Illuminate\\Session\\Middleware\\StartSession::class,\n            // \\Illuminate\\Session\\Middleware\\AuthenticateSession::class,\n            \\Illuminate\\View\\Middleware\\ShareErrorsFromSession::class,\n            \\App\\Http\\Middleware\\VerifyCsrfToken::class,\n            \\Illuminate\\Routing\\Middleware\\SubstituteBindings::class,\n        ],\n\n        'api' => [\n            'throttle:api',\n            \\Illuminate\\Routing\\Middleware\\SubstituteBindings::class,\n        ],\n    ];\n\n    /**\n     * The application's route middleware.\n     *\n     * These middleware may be assigned to groups or used individually.\n     *\n     * @var array\n     */\n    protected $routeMiddleware = [\n        'auth' => \\App\\Http\\Middleware\\Authenticate::class,\n        'auth.basic' => \\Illuminate\\Auth\\Middleware\\AuthenticateWithBasicAuth::class,\n        'cache.headers' => \\Illuminate\\Http\\Middleware\\SetCacheHeaders::class,\n        'can' => \\Illuminate\\Auth\\Middleware\\Authorize::class,\n        'guest' => \\App\\Http\\Middleware\\RedirectIfAuthenticated::class,\n        'password.confirm' => \\Illuminate\\Auth\\Middleware\\RequirePassword::class,\n        'signed' => \\Illuminate\\Routing\\Middleware\\ValidateSignature::class,\n        'throttle' => \\Illuminate\\Routing\\Middleware\\ThrottleRequests::class,\n        'verified' => \\Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified::class,\n    ];\n}\n"
  },
  {
    "path": "app/Http/Middleware/Authenticate.php",
    "content": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Auth\\Middleware\\Authenticate as Middleware;\n\nclass Authenticate extends Middleware\n{\n    /**\n     * Get the path the user should be redirected to when they are not authenticated.\n     *\n     * @param  \\Illuminate\\Http\\Request  $request\n     * @return string|null\n     */\n    protected function redirectTo($request)\n    {\n        if (! $request->expectsJson()) {\n            return route('login');\n        }\n    }\n}\n"
  },
  {
    "path": "app/Http/Middleware/EncryptCookies.php",
    "content": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Cookie\\Middleware\\EncryptCookies as Middleware;\n\nclass EncryptCookies extends Middleware\n{\n    /**\n     * The names of the cookies that should not be encrypted.\n     *\n     * @var array\n     */\n    protected $except = [\n        //\n    ];\n}\n"
  },
  {
    "path": "app/Http/Middleware/PreventRequestsDuringMaintenance.php",
    "content": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance as Middleware;\n\nclass PreventRequestsDuringMaintenance extends Middleware\n{\n    /**\n     * The URIs that should be reachable while maintenance mode is enabled.\n     *\n     * @var array\n     */\n    protected $except = [\n        //\n    ];\n}\n"
  },
  {
    "path": "app/Http/Middleware/RedirectIfAuthenticated.php",
    "content": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse App\\Providers\\RouteServiceProvider;\nuse Closure;\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Support\\Facades\\Auth;\n\nclass RedirectIfAuthenticated\n{\n    /**\n     * Handle an incoming request.\n     *\n     * @param  \\Illuminate\\Http\\Request  $request\n     * @param  \\Closure  $next\n     * @param  string|null  ...$guards\n     * @return mixed\n     */\n    public function handle(Request $request, Closure $next, ...$guards)\n    {\n        $guards = empty($guards) ? [null] : $guards;\n\n        foreach ($guards as $guard) {\n            if (Auth::guard($guard)->check()) {\n                return redirect(RouteServiceProvider::HOME);\n            }\n        }\n\n        return $next($request);\n    }\n}\n"
  },
  {
    "path": "app/Http/Middleware/TrimStrings.php",
    "content": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Foundation\\Http\\Middleware\\TrimStrings as Middleware;\n\nclass TrimStrings extends Middleware\n{\n    /**\n     * The names of the attributes that should not be trimmed.\n     *\n     * @var array\n     */\n    protected $except = [\n        'current_password',\n        'password',\n        'password_confirmation',\n    ];\n}\n"
  },
  {
    "path": "app/Http/Middleware/TrustHosts.php",
    "content": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Http\\Middleware\\TrustHosts as Middleware;\n\nclass TrustHosts extends Middleware\n{\n    /**\n     * Get the host patterns that should be trusted.\n     *\n     * @return array\n     */\n    public function hosts()\n    {\n        return [\n            $this->allSubdomainsOfApplicationUrl(),\n        ];\n    }\n}\n"
  },
  {
    "path": "app/Http/Middleware/TrustProxies.php",
    "content": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Fideloper\\Proxy\\TrustProxies as Middleware;\nuse Illuminate\\Http\\Request;\n\nclass TrustProxies extends Middleware\n{\n    /**\n     * The trusted proxies for this application.\n     *\n     * @var array|string|null\n     */\n    protected $proxies;\n\n    /**\n     * The headers that should be used to detect proxies.\n     *\n     * @var int\n     */\n    protected $headers = Request::HEADER_X_FORWARDED_FOR | Request::HEADER_X_FORWARDED_HOST | Request::HEADER_X_FORWARDED_PORT | Request::HEADER_X_FORWARDED_PROTO | Request::HEADER_X_FORWARDED_AWS_ELB;\n}\n"
  },
  {
    "path": "app/Http/Middleware/VerifyCsrfToken.php",
    "content": "<?php\n\nnamespace App\\Http\\Middleware;\n\nuse Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken as Middleware;\n\nclass VerifyCsrfToken extends Middleware\n{\n    /**\n     * The URIs that should be excluded from CSRF verification.\n     *\n     * @var array\n     */\n    protected $except = [\n        //\n    ];\n}\n"
  },
  {
    "path": "app/Models/AccessToken.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass AccessToken extends Model\n{\n    use HasFactory;\n    protected $table = 'q_access_tokens';\n\n    protected  $fillable = ['user_id','count','token'];\n}\n"
  },
  {
    "path": "app/Models/AccessTokenCall.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass AccessTokenCall extends Model\n{\n    use HasFactory;\n    protected $table = 'q_access_token_calls';\n\n    protected  $fillable = ['user_id','subject','token','requestCount'];\n\n}\n"
  },
  {
    "path": "app/Models/ApiCallIpAddress.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass ApiCallIpAddress extends Model\n{\n    protected $table = 'api_call_ip_address';\n\n    protected  $fillable = ['subject', 'ipAddress','requestCount','countryCode','countryName','regionCode',\n                            'regionName','cityName','zipCode','latitude','longitude'];\n\n}\n"
  },
  {
    "path": "app/Models/PasswordReset.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass PasswordReset extends Model\n{\n    use HasFactory;\n    protected $table = 'q_password_resets';\n    protected  $fillable = ['token','email'];\n\n    const UPDATED_AT = null;\n\n}\n"
  },
  {
    "path": "app/Models/Payment.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass Payment extends Model\n{\n    use HasFactory;\n\n    protected $table = 'q_payments';\n\n    protected  $fillable = ['method', 'user_id','amount','plan_id','price','status','trans_reference','message'];\n}\n"
  },
  {
    "path": "app/Models/PricePlan.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass PricePlan extends Model\n{\n    use HasFactory;\n    protected $table = 'q_price_plans';\n\n}\n"
  },
  {
    "path": "app/Models/QBoardLog.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass QBoardLog extends Model\n{\n    use HasFactory;\n    protected $table = 'q_qboard_logs';\n\n    protected  $fillable = ['month','subject','year','requestCount','questionCount'];\n\n}\n"
  },
  {
    "path": "app/Models/QLoader.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass QLoader extends Model\n{\n    protected  $fillable = ['question', 'optionA','optionB','optionC','optionD','optionE','section','image','answer','solution','examtype','examyear','requestCount','authorised' ];\n\n    protected $hidden = ['created_at, updated_at', 'requestCount', 'authorised'];\n\n\n    public function setTable($table)\n    {\n        $this->table = $table;\n    }\n\n    public static function FormatQuestionData($result, $subject)\n    {\n        $data =[];\n\n        $option['a'] = $result->optionA;\n        $option['b'] = $result->optionB;\n        $option['c'] = $result->optionC;\n        $option['d'] = $result->optionD;\n        $option['e'] = $result->optionE;\n\n        $data['id'] = $result->id;\n        $data['question'] = $result->question;\n        $data['option'] = $option;\n        $data['section'] = $result->section;\n        $data['image'] = $result->image;\n        $data['answer'] = $result->answer;\n        $data['solution'] = $result->solution;\n        $data['examtype'] = $result->examtype;\n        $data['examyear'] = $result->examyear;\n\n\n        if($subject=== 'english'){\n            $data['questionNub'] = $result->questionNub;\n            $data['hasPassage'] = $result->hasPassage;\n            $data['category'] = $result->category;\n        }\n\n        return $data;\n    }\n\n    public static function FormatQuestionsData($results, $subject,  $withComprehension='false')\n    {\n        $dataAll =[];\n        foreach ($results as $result){\n            if($subject=== 'english' && $result->hasPassage && $withComprehension !== 'true'){\n                continue;\n            }else if($subject=== 'english' && $result->hasPassage && $withComprehension == 'true'){\n                $option['a'] = $result->optionA;\n                $option['b'] = $result->optionB;\n                $option['c'] = $result->optionC;\n                $option['d'] = $result->optionD;\n\n                if( property_exists('optionE', $result)){\n                    $option['e'] = $result->optionE;\n                }\n\n                $data['id'] = $result->id;\n                $data['question'] = $result->question;\n                $data['option'] = $option;\n                $data['section'] = $result->section;\n                $data['image'] = $result->image;\n                $data['answer'] = $result->answer;\n                $data['solution'] = $result->solution;\n                $data['examtype'] = $result->examtype;\n                $data['examyear'] = $result->examyear;\n\n                $data['questionNub'] = $result->questionNub;\n                $data['hasPassage'] = $result->hasPassage;\n                $data['category'] = $result->category;\n\n                $dataAll[] = $data;\n\n            }else{\n                $option['a'] = $result->optionA;\n                $option['b'] = $result->optionB;\n                $option['c'] = $result->optionC;\n                $option['d'] = $result->optionD;\n\n                if( property_exists('optionE', $result)){\n                    $option['e'] = $result->optionE;\n                }\n\n                $data['id'] = $result->id;\n                $data['question'] = $result->question;\n                $data['option'] = $option;\n                $data['section'] = $result->section;\n                $data['image'] = $result->image;\n                $data['answer'] = $result->answer;\n                $data['solution'] = $result->solution;\n                $data['examtype'] = $result->examtype;\n                $data['examyear'] = $result->examyear;\n\n                if($subject=== 'english'){\n                    $data['questionNub'] = $result->questionNub;\n                    $data['hasPassage'] = $result->hasPassage;\n                    $data['category'] = $result->category;\n                }\n\n                $dataAll[] = $data;\n            }\n        }\n        return $dataAll;\n    }\n\n    public static function FormatTopQuestionsData($results)\n    {\n        $dataAll =[];\n        foreach ($results as $result){\n            $option['a'] = $result->optionA;\n            $option['b'] = $result->optionB;\n            $option['c'] = $result->optionC;\n            $option['d'] = $result->optionD;\n            if( property_exists('optionE', $result)){\n                $option['e'] = $result->optionE;\n            }\n            \n            $data['id'] = $result->id;\n            $data['subject'] = $result->subject;\n            $data['question'] = $result->question;\n            $data['option'] = $option;\n            $data['section'] = $result->section;\n            $data['image'] = $result->image;\n            $data['answer'] = $result->answer;\n            $data['solution'] = $result->solution;\n            $data['examtype'] = $result->examtype;\n            $dataAll[] = $data;\n        }\n        return $dataAll;\n    }\n}\n"
  },
  {
    "path": "app/Models/ReportQuestion.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass ReportQuestion extends Model\n{\n    protected $table = 'report_question';\n\n    protected  $fillable = ['question_id', 'subject','message','type','status','full_name'];\n\n}\n"
  },
  {
    "path": "app/Models/Subscription.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Database\\Eloquent\\Model;\n\nclass Subscription extends Model\n{\n    use HasFactory;\n    protected $table = 'q_subscriptions';\n\n    protected  $fillable = ['user_id', 'limit','plan_id','paying','status'];\n\n}\n"
  },
  {
    "path": "app/Models/User.php",
    "content": "<?php\n\nnamespace App\\Models;\n\nuse Illuminate\\Contracts\\Auth\\MustVerifyEmail;\nuse Illuminate\\Database\\Eloquent\\Factories\\HasFactory;\nuse Illuminate\\Foundation\\Auth\\User as Authenticatable;\nuse Illuminate\\Notifications\\Notifiable;\n\nclass User extends Authenticatable\n{\n    use HasFactory, Notifiable;\n\n    /**\n     * The attributes that are mass assignable.\n     *\n     * @var array\n     */\n    protected $fillable = [\n        'name',\n        'email',\n        'password',\n    ];\n\n    /**\n     * The attributes that should be hidden for arrays.\n     *\n     * @var array\n     */\n    protected $hidden = [\n        'password',\n        'remember_token',\n    ];\n\n    /**\n     * The attributes that should be cast to native types.\n     *\n     * @var array\n     */\n    protected $casts = [\n        'email_verified_at' => 'datetime',\n    ];\n\n    public function pricePlan()\n    {\n        return $this->belongsTo(PricePlan::class,'price_plan');\n    }\n\n    public function subscription()\n    {\n        return $this->hasOne(Subscription::class,'user_id', );\n    }\n}\n"
  },
  {
    "path": "app/Providers/AppServiceProvider.php",
    "content": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Support\\ServiceProvider;\n\nclass AppServiceProvider extends ServiceProvider\n{\n    /**\n     * Register any application services.\n     *\n     * @return void\n     */\n    public function register()\n    {\n        //\n    }\n\n    /**\n     * Bootstrap any application services.\n     *\n     * @return void\n     */\n    public function boot()\n    {\n        //\n    }\n}\n"
  },
  {
    "path": "app/Providers/AuthServiceProvider.php",
    "content": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Foundation\\Support\\Providers\\AuthServiceProvider as ServiceProvider;\nuse Illuminate\\Support\\Facades\\Gate;\n\nclass AuthServiceProvider extends ServiceProvider\n{\n    /**\n     * The policy mappings for the application.\n     *\n     * @var array\n     */\n    protected $policies = [\n        // 'App\\Models\\Model' => 'App\\Policies\\ModelPolicy',\n    ];\n\n    /**\n     * Register any authentication / authorization services.\n     *\n     * @return void\n     */\n    public function boot()\n    {\n        $this->registerPolicies();\n\n        //\n    }\n}\n"
  },
  {
    "path": "app/Providers/BroadcastServiceProvider.php",
    "content": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Support\\Facades\\Broadcast;\nuse Illuminate\\Support\\ServiceProvider;\n\nclass BroadcastServiceProvider extends ServiceProvider\n{\n    /**\n     * Bootstrap any application services.\n     *\n     * @return void\n     */\n    public function boot()\n    {\n        Broadcast::routes();\n\n        require base_path('routes/channels.php');\n    }\n}\n"
  },
  {
    "path": "app/Providers/EventServiceProvider.php",
    "content": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Auth\\Events\\Registered;\nuse Illuminate\\Auth\\Listeners\\SendEmailVerificationNotification;\nuse Illuminate\\Foundation\\Support\\Providers\\EventServiceProvider as ServiceProvider;\nuse Illuminate\\Support\\Facades\\Event;\n\nclass EventServiceProvider extends ServiceProvider\n{\n    /**\n     * The event listener mappings for the application.\n     *\n     * @var array\n     */\n    protected $listen = [\n        Registered::class => [\n            SendEmailVerificationNotification::class,\n        ],\n    ];\n\n    /**\n     * Register any events for your application.\n     *\n     * @return void\n     */\n    public function boot()\n    {\n        //\n    }\n}\n"
  },
  {
    "path": "app/Providers/RouteServiceProvider.php",
    "content": "<?php\n\nnamespace App\\Providers;\n\nuse Illuminate\\Cache\\RateLimiting\\Limit;\nuse Illuminate\\Foundation\\Support\\Providers\\RouteServiceProvider as ServiceProvider;\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Support\\Facades\\RateLimiter;\nuse Illuminate\\Support\\Facades\\Route;\n\nclass RouteServiceProvider extends ServiceProvider\n{\n    /**\n     * The path to the \"home\" route for your application.\n     *\n     * This is used by Laravel authentication to redirect users after login.\n     *\n     * @var string\n     */\n    public const HOME = '/home';\n\n    /**\n     * The controller namespace for the application.\n     *\n     * When present, controller route declarations will automatically be prefixed with this namespace.\n     *\n     * @var string|null\n     */\n    protected $namespace = 'App\\\\Http\\\\Controllers';\n\n    /**\n     * Define your route model bindings, pattern filters, etc.\n     *\n     * @return void\n     */\n    public function boot()\n    {\n        $this->configureRateLimiting();\n\n        $this->routes(function () {\n            Route::prefix('api')\n                ->middleware('api')\n                ->namespace($this->namespace)\n                ->group(base_path('routes/api.php'));\n\n            Route::middleware('web')\n                ->namespace($this->namespace)\n                ->group(base_path('routes/web.php'));\n        });\n    }\n\n    /**\n     * Configure the rate limiters for the application.\n     *\n     * @return void\n     */\n    protected function configureRateLimiting()\n    {\n        RateLimiter::for('api', function (Request $request) {\n            return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());\n        });\n    }\n}\n"
  },
  {
    "path": "app/functions.php",
    "content": "<?php\n\nuse App\\Models\\ApiCallIpAddress;\nuse Illuminate\\Support\\Arr;\n\nfunction subjectArray (){\n    return ['english', 'mathematics', 'commerce', 'accounting', 'biology', 'physics', 'chemistry', 'englishlit', 'government', 'crk', 'geography', 'economics', 'irk', 'civiledu', 'insurance', 'currentaffairs', 'history'];\n}\n\nfunction examTypeArray(){\n    return ['waec', 'utme', 'neco', 'post-utme'];\n}\n\nfunction querySampleArray1(){\n    return ['https://questions.aloc.com.ng/api/q?subject=english',\n        'https://questions.aloc.com.ng/api/q?subject=english&year=2010',\n        'https://questions.aloc.com.ng/api/q?subject=insurance&type=wassce',\n        'https://questions.aloc.com.ng/api/q?subject=english&year=2009&type=utme'];\n}\n\nfunction querySampleArray2(){\n    return ['https://questions.aloc.com.ng/api/q/0?subject=english',\n        'https://questions.aloc.com.ng/api/q/1?subject=english&year=2010',\n        'https://questions.aloc.com.ng/api/q/2?subject=insurance&type=wassce',\n        'https://questions.aloc.com.ng/api/q/3?subject=english&year=2009&type=utme'];\n}\n\nfunction randomSubjects(){\n    return Arr::random(subjectArray(), 7);\n\n}\n\nfunction storeQuestionRequestByIP($subject){\n    $userIp = request()->getClientIp(true);\n    $locationData = \\Location::get( $userIp);\n    // dd($locationData, $userIp);\n\n    if( $locationData !== false){\n        $res =  ApiCallIpAddress::where(['ipAddress' => $userIp,'subject' => $subject] )->get();\n        if(!$res->isEmpty()){\n            $res = $res->first();\n            $count = $res->requestCount + 1;\n            $res::where('id','=', $res->id)->update(['requestCount'=>$count,'countryCode'=>$locationData->countryCode,\n                'countryName'=>$locationData->countryName,'regionName'=>$locationData->regionName,]);\n        }else{\n\n            $data['countryCode'] = $locationData->countryCode;\n            $data['countryName'] = $locationData->countryName ;\n            $data['regionCode'] = $locationData->regionCode ;\n            $data['regionName'] = $locationData->regionName ;\n            $data['cityName'] = $locationData->cityName ;\n            $data['zipCode'] = $locationData->zipCode;\n            $data['latitude'] = $locationData->latitude ;\n            $data['longitude'] = $locationData->longitude;\n\n            $data['subject'] = $subject;\n            $data['ipAddress'] = $userIp;\n            ApiCallIpAddress::create($data);\n        }\n    }else{\n        //localhost\n    }\n}\n\nfunction formatNumber($num)\n{\n    return number_format($num, 0, '.', ',');\n}\n\nfunction payStackVerifyTransaction ($transactionReference) {\n\n    $curl = curl_init();\n    curl_setopt_array($curl, array(\n        CURLOPT_URL => env('PAYSTACK_BASE_URL').\"/transaction/verify/\".$transactionReference,\n        CURLOPT_RETURNTRANSFER => true,\n        CURLOPT_ENCODING => \"\",\n        CURLOPT_MAXREDIRS => 10,\n        CURLOPT_TIMEOUT => 30,\n        CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\n        CURLOPT_CUSTOMREQUEST => \"GET\",\n        CURLOPT_HTTPHEADER => array(\n            \"Authorization: Bearer \".env('PAYSTACK_SECRET_KEY'),\n            \"Cache-Control: no-cache\",\n        ),\n    ));\n\n    $response = curl_exec($curl);\n    $err = curl_error($curl);\n    curl_close($curl);\n\n    if ($err) {\n        return $err;\n    } else {\n        return json_decode($response);\n    }\n}\n"
  },
  {
    "path": "artisan",
    "content": "#!/usr/bin/env php\n<?php\n\ndefine('LARAVEL_START', microtime(true));\n\n/*\n|--------------------------------------------------------------------------\n| Register The Auto Loader\n|--------------------------------------------------------------------------\n|\n| Composer provides a convenient, automatically generated class loader\n| for our application. We just need to utilize it! We'll require it\n| into the script here so that we do not have to worry about the\n| loading of any of our classes manually. It's great to relax.\n|\n*/\n\nrequire __DIR__.'/vendor/autoload.php';\n\n$app = require_once __DIR__.'/bootstrap/app.php';\n\n/*\n|--------------------------------------------------------------------------\n| Run The Artisan Application\n|--------------------------------------------------------------------------\n|\n| When we run the console application, the current CLI command will be\n| executed in this console and the response sent back to a terminal\n| or another output device for the developers. Here goes nothing!\n|\n*/\n\n$kernel = $app->make(Illuminate\\Contracts\\Console\\Kernel::class);\n\n$status = $kernel->handle(\n    $input = new Symfony\\Component\\Console\\Input\\ArgvInput,\n    new Symfony\\Component\\Console\\Output\\ConsoleOutput\n);\n\n/*\n|--------------------------------------------------------------------------\n| Shutdown The Application\n|--------------------------------------------------------------------------\n|\n| Once Artisan has finished running, we will fire off the shutdown events\n| so that any final work may be done by the application before we shut\n| down the process. This is the last thing to happen to the request.\n|\n*/\n\n$kernel->terminate($input, $status);\n\nexit($status);\n"
  },
  {
    "path": "bootstrap/app.php",
    "content": "<?php\n\n/*\n|--------------------------------------------------------------------------\n| Create The Application\n|--------------------------------------------------------------------------\n|\n| The first thing we will do is create a new Laravel application instance\n| which serves as the \"glue\" for all the components of Laravel, and is\n| the IoC container for the system binding all of the various parts.\n|\n*/\n\n$app = new Illuminate\\Foundation\\Application(\n    $_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)\n);\n\n/*\n|--------------------------------------------------------------------------\n| Bind Important Interfaces\n|--------------------------------------------------------------------------\n|\n| Next, we need to bind some important interfaces into the container so\n| we will be able to resolve them when needed. The kernels serve the\n| incoming requests to this application from both the web and CLI.\n|\n*/\n\n$app->singleton(\n    Illuminate\\Contracts\\Http\\Kernel::class,\n    App\\Http\\Kernel::class\n);\n\n$app->singleton(\n    Illuminate\\Contracts\\Console\\Kernel::class,\n    App\\Console\\Kernel::class\n);\n\n$app->singleton(\n    Illuminate\\Contracts\\Debug\\ExceptionHandler::class,\n    App\\Exceptions\\Handler::class\n);\n\n/*\n|--------------------------------------------------------------------------\n| Return The Application\n|--------------------------------------------------------------------------\n|\n| This script returns the application instance. The instance is given to\n| the calling script so we can separate the building of the instances\n| from the actual running of the application and sending responses.\n|\n*/\n\nreturn $app;\n"
  },
  {
    "path": "bootstrap/cache/.gitignore",
    "content": "*\n!.gitignore\n"
  },
  {
    "path": "composer.json",
    "content": "{\n    \"name\": \"laravel/laravel\",\n    \"type\": \"project\",\n    \"description\": \"The Laravel Framework.\",\n    \"keywords\": [\"framework\", \"laravel\"],\n    \"license\": \"MIT\",\n    \"require\": {\n        \"php\": \"^7.3|^8.0\",\n        \"fideloper/proxy\": \"^4.4\",\n        \"fruitcake/laravel-cors\": \"^2.0\",\n        \"guzzlehttp/guzzle\": \"^7.0.1\",\n        \"laracasts/flash\": \"^3.2\",\n        \"laravel/framework\": \"^8.40\",\n        \"laravel/tinker\": \"^2.5\",\n        \"stevebauman/location\": \"^6.1\"\n    },\n    \"php\": \"^7.1.3\",\n    \"require-dev\": {\n        \"facade/ignition\": \"^2.5\",\n        \"fakerphp/faker\": \"^1.9.1\",\n        \"laravel/sail\": \"^1.0.1\",\n        \"mockery/mockery\": \"^1.4.2\",\n        \"nunomaduro/collision\": \"^5.0\",\n        \"phpunit/phpunit\": \"^9.3.3\"\n    },\n    \"autoload\": {\n        \"psr-4\": {\n            \"App\\\\\": \"app/\",\n            \"Database\\\\Factories\\\\\": \"database/factories/\",\n            \"Database\\\\Seeders\\\\\": \"database/seeders/\"\n        },\n        \"files\": [\n            \"app/functions.php\"\n        ]\n    },\n    \"autoload-dev\": {\n        \"psr-4\": {\n            \"Tests\\\\\": \"tests/\"\n        }\n    },\n    \"scripts\": {\n        \"post-autoload-dump\": [\n            \"Illuminate\\\\Foundation\\\\ComposerScripts::postAutoloadDump\",\n            \"@php artisan package:discover --ansi\"\n        ],\n        \"post-root-package-install\": [\n            \"@php -r \\\"file_exists('.env') || copy('.env.example', '.env');\\\"\"\n        ],\n        \"post-create-project-cmd\": [\n            \"@php artisan key:generate --ansi\"\n        ]\n    },\n    \"extra\": {\n        \"laravel\": {\n            \"dont-discover\": []\n        }\n    },\n    \"config\": {\n        \"optimize-autoloader\": true,\n        \"preferred-install\": \"dist\",\n        \"sort-packages\": true\n    },\n    \"minimum-stability\": \"dev\",\n    \"prefer-stable\": true\n}\n"
  },
  {
    "path": "config/app.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Application Name\n    |--------------------------------------------------------------------------\n    |\n    | This value is the name of your application. This value is used when the\n    | framework needs to place the application's name in a notification or\n    | any other location as required by the application or its packages.\n    |\n    */\n\n    'name' => env('APP_NAME', 'Laravel'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Application Environment\n    |--------------------------------------------------------------------------\n    |\n    | This value determines the \"environment\" your application is currently\n    | running in. This may determine how you prefer to configure various\n    | services the application utilizes. Set this in your \".env\" file.\n    |\n    */\n\n    'env' => env('APP_ENV', 'production'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Application Debug Mode\n    |--------------------------------------------------------------------------\n    |\n    | When your application is in debug mode, detailed error messages with\n    | stack traces will be shown on every error that occurs within your\n    | application. If disabled, a simple generic error page is shown.\n    |\n    */\n\n    'debug' => (bool) env('APP_DEBUG', false),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Application URL\n    |--------------------------------------------------------------------------\n    |\n    | This URL is used by the console to properly generate URLs when using\n    | the Artisan command line tool. You should set this to the root of\n    | your application so that it is used when running Artisan tasks.\n    |\n    */\n\n    'url' => env('APP_URL', 'http://localhost'),\n\n    'asset_url' => env('ASSET_URL', null),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Application Timezone\n    |--------------------------------------------------------------------------\n    |\n    | Here you may specify the default timezone for your application, which\n    | will be used by the PHP date and date-time functions. We have gone\n    | ahead and set this to a sensible default for you out of the box.\n    |\n    */\n\n    'timezone' => 'UTC',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Application Locale Configuration\n    |--------------------------------------------------------------------------\n    |\n    | The application locale determines the default locale that will be used\n    | by the translation service provider. You are free to set this value\n    | to any of the locales which will be supported by the application.\n    |\n    */\n\n    'locale' => 'en',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Application Fallback Locale\n    |--------------------------------------------------------------------------\n    |\n    | The fallback locale determines the locale to use when the current one\n    | is not available. You may change the value to correspond to any of\n    | the language folders that are provided through your application.\n    |\n    */\n\n    'fallback_locale' => 'en',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Faker Locale\n    |--------------------------------------------------------------------------\n    |\n    | This locale will be used by the Faker PHP library when generating fake\n    | data for your database seeds. For example, this will be used to get\n    | localized telephone numbers, street address information and more.\n    |\n    */\n\n    'faker_locale' => 'en_US',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Encryption Key\n    |--------------------------------------------------------------------------\n    |\n    | This key is used by the Illuminate encrypter service and should be set\n    | to a random, 32 character string, otherwise these encrypted strings\n    | will not be safe. Please do this before deploying an application!\n    |\n    */\n\n    'key' => env('APP_KEY'),\n\n    'cipher' => 'AES-256-CBC',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Autoloaded Service Providers\n    |--------------------------------------------------------------------------\n    |\n    | The service providers listed here will be automatically loaded on the\n    | request to your application. Feel free to add your own services to\n    | this array to grant expanded functionality to your applications.\n    |\n    */\n\n    'providers' => [\n\n        /*\n         * Laravel Framework Service Providers...\n         */\n        Illuminate\\Auth\\AuthServiceProvider::class,\n        Illuminate\\Broadcasting\\BroadcastServiceProvider::class,\n        Illuminate\\Bus\\BusServiceProvider::class,\n        Illuminate\\Cache\\CacheServiceProvider::class,\n        Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider::class,\n        Illuminate\\Cookie\\CookieServiceProvider::class,\n        Illuminate\\Database\\DatabaseServiceProvider::class,\n        Illuminate\\Encryption\\EncryptionServiceProvider::class,\n        Illuminate\\Filesystem\\FilesystemServiceProvider::class,\n        Illuminate\\Foundation\\Providers\\FoundationServiceProvider::class,\n        Illuminate\\Hashing\\HashServiceProvider::class,\n        Illuminate\\Mail\\MailServiceProvider::class,\n        Illuminate\\Notifications\\NotificationServiceProvider::class,\n        Illuminate\\Pagination\\PaginationServiceProvider::class,\n        Illuminate\\Pipeline\\PipelineServiceProvider::class,\n        Illuminate\\Queue\\QueueServiceProvider::class,\n        Illuminate\\Redis\\RedisServiceProvider::class,\n        Illuminate\\Auth\\Passwords\\PasswordResetServiceProvider::class,\n        Illuminate\\Session\\SessionServiceProvider::class,\n        Illuminate\\Translation\\TranslationServiceProvider::class,\n        Illuminate\\Validation\\ValidationServiceProvider::class,\n        Illuminate\\View\\ViewServiceProvider::class,\n\n        /*\n         * Package Service Providers...\n         */\n\n        /*\n         * Application Service Providers...\n         */\n        App\\Providers\\AppServiceProvider::class,\n        App\\Providers\\AuthServiceProvider::class,\n        // App\\Providers\\BroadcastServiceProvider::class,\n        App\\Providers\\EventServiceProvider::class,\n        App\\Providers\\RouteServiceProvider::class,\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Class Aliases\n    |--------------------------------------------------------------------------\n    |\n    | This array of class aliases will be registered when this application\n    | is started. However, feel free to register as many as you wish as\n    | the aliases are \"lazy\" loaded so they don't hinder performance.\n    |\n    */\n\n    'aliases' => [\n\n        'App' => Illuminate\\Support\\Facades\\App::class,\n        'Arr' => Illuminate\\Support\\Arr::class,\n        'Artisan' => Illuminate\\Support\\Facades\\Artisan::class,\n        'Auth' => Illuminate\\Support\\Facades\\Auth::class,\n        'Blade' => Illuminate\\Support\\Facades\\Blade::class,\n        'Broadcast' => Illuminate\\Support\\Facades\\Broadcast::class,\n        'Bus' => Illuminate\\Support\\Facades\\Bus::class,\n        'Cache' => Illuminate\\Support\\Facades\\Cache::class,\n        'Config' => Illuminate\\Support\\Facades\\Config::class,\n        'Cookie' => Illuminate\\Support\\Facades\\Cookie::class,\n        'Crypt' => Illuminate\\Support\\Facades\\Crypt::class,\n        'Date' => Illuminate\\Support\\Facades\\Date::class,\n        'DB' => Illuminate\\Support\\Facades\\DB::class,\n        'Eloquent' => Illuminate\\Database\\Eloquent\\Model::class,\n        'Event' => Illuminate\\Support\\Facades\\Event::class,\n        'File' => Illuminate\\Support\\Facades\\File::class,\n        'Gate' => Illuminate\\Support\\Facades\\Gate::class,\n        'Hash' => Illuminate\\Support\\Facades\\Hash::class,\n        'Http' => Illuminate\\Support\\Facades\\Http::class,\n        'Lang' => Illuminate\\Support\\Facades\\Lang::class,\n        'Log' => Illuminate\\Support\\Facades\\Log::class,\n        'Mail' => Illuminate\\Support\\Facades\\Mail::class,\n        'Notification' => Illuminate\\Support\\Facades\\Notification::class,\n        'Password' => Illuminate\\Support\\Facades\\Password::class,\n        'Queue' => Illuminate\\Support\\Facades\\Queue::class,\n        'Redirect' => Illuminate\\Support\\Facades\\Redirect::class,\n        // 'Redis' => Illuminate\\Support\\Facades\\Redis::class,\n        'Request' => Illuminate\\Support\\Facades\\Request::class,\n        'Response' => Illuminate\\Support\\Facades\\Response::class,\n        'Route' => Illuminate\\Support\\Facades\\Route::class,\n        'Schema' => Illuminate\\Support\\Facades\\Schema::class,\n        'Session' => Illuminate\\Support\\Facades\\Session::class,\n        'Storage' => Illuminate\\Support\\Facades\\Storage::class,\n        'Str' => Illuminate\\Support\\Str::class,\n        'URL' => Illuminate\\Support\\Facades\\URL::class,\n        'Validator' => Illuminate\\Support\\Facades\\Validator::class,\n        'View' => Illuminate\\Support\\Facades\\View::class,\n\n    ],\n\n];\n"
  },
  {
    "path": "config/auth.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Authentication Defaults\n    |--------------------------------------------------------------------------\n    |\n    | This option controls the default authentication \"guard\" and password\n    | reset options for your application. You may change these defaults\n    | as required, but they're a perfect start for most applications.\n    |\n    */\n\n    'defaults' => [\n        'guard' => 'web',\n        'passwords' => 'users',\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Authentication Guards\n    |--------------------------------------------------------------------------\n    |\n    | Next, you may define every authentication guard for your application.\n    | Of course, a great default configuration has been defined for you\n    | here which uses session storage and the Eloquent user provider.\n    |\n    | All authentication drivers have a user provider. This defines how the\n    | users are actually retrieved out of your database or other storage\n    | mechanisms used by this application to persist your user's data.\n    |\n    | Supported: \"session\", \"token\"\n    |\n    */\n\n    'guards' => [\n        'web' => [\n            'driver' => 'session',\n            'provider' => 'users',\n        ],\n\n        'api' => [\n            'driver' => 'token',\n            'provider' => 'users',\n            'hash' => false,\n        ],\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | User Providers\n    |--------------------------------------------------------------------------\n    |\n    | All authentication drivers have a user provider. This defines how the\n    | users are actually retrieved out of your database or other storage\n    | mechanisms used by this application to persist your user's data.\n    |\n    | If you have multiple user tables or models you may configure multiple\n    | sources which represent each model / table. These sources may then\n    | be assigned to any extra authentication guards you have defined.\n    |\n    | Supported: \"database\", \"eloquent\"\n    |\n    */\n\n    'providers' => [\n        'users' => [\n            'driver' => 'eloquent',\n            'model' => App\\Models\\User::class,\n        ],\n\n        // 'users' => [\n        //     'driver' => 'database',\n        //     'table' => 'users',\n        // ],\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Resetting Passwords\n    |--------------------------------------------------------------------------\n    |\n    | You may specify multiple password reset configurations if you have more\n    | than one user table or model in the application and you want to have\n    | separate password reset settings based on the specific user types.\n    |\n    | The expire time is the number of minutes that the reset token should be\n    | considered valid. This security feature keeps tokens short-lived so\n    | they have less time to be guessed. You may change this as needed.\n    |\n    */\n\n    'passwords' => [\n        'users' => [\n            'provider' => 'users',\n            'table' => 'password_resets',\n            'expire' => 60,\n            'throttle' => 60,\n        ],\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Password Confirmation Timeout\n    |--------------------------------------------------------------------------\n    |\n    | Here you may define the amount of seconds before a password confirmation\n    | times out and the user is prompted to re-enter their password via the\n    | confirmation screen. By default, the timeout lasts for three hours.\n    |\n    */\n\n    'password_timeout' => 10800,\n\n];\n"
  },
  {
    "path": "config/broadcasting.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Broadcaster\n    |--------------------------------------------------------------------------\n    |\n    | This option controls the default broadcaster that will be used by the\n    | framework when an event needs to be broadcast. You may set this to\n    | any of the connections defined in the \"connections\" array below.\n    |\n    | Supported: \"pusher\", \"ably\", \"redis\", \"log\", \"null\"\n    |\n    */\n\n    'default' => env('BROADCAST_DRIVER', 'null'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Broadcast Connections\n    |--------------------------------------------------------------------------\n    |\n    | Here you may define all of the broadcast connections that will be used\n    | to broadcast events to other systems or over websockets. Samples of\n    | each available type of connection are provided inside this array.\n    |\n    */\n\n    'connections' => [\n\n        'pusher' => [\n            'driver' => 'pusher',\n            'key' => env('PUSHER_APP_KEY'),\n            'secret' => env('PUSHER_APP_SECRET'),\n            'app_id' => env('PUSHER_APP_ID'),\n            'options' => [\n                'cluster' => env('PUSHER_APP_CLUSTER'),\n                'useTLS' => true,\n            ],\n        ],\n\n        'ably' => [\n            'driver' => 'ably',\n            'key' => env('ABLY_KEY'),\n        ],\n\n        'redis' => [\n            'driver' => 'redis',\n            'connection' => 'default',\n        ],\n\n        'log' => [\n            'driver' => 'log',\n        ],\n\n        'null' => [\n            'driver' => 'null',\n        ],\n\n    ],\n\n];\n"
  },
  {
    "path": "config/cache.php",
    "content": "<?php\n\nuse Illuminate\\Support\\Str;\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Cache Store\n    |--------------------------------------------------------------------------\n    |\n    | This option controls the default cache connection that gets used while\n    | using this caching library. This connection is used when another is\n    | not explicitly specified when executing a given caching function.\n    |\n    */\n\n    'default' => env('CACHE_DRIVER', 'file'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Cache Stores\n    |--------------------------------------------------------------------------\n    |\n    | Here you may define all of the cache \"stores\" for your application as\n    | well as their drivers. You may even define multiple stores for the\n    | same cache driver to group types of items stored in your caches.\n    |\n    | Supported drivers: \"apc\", \"array\", \"database\", \"file\",\n    |         \"memcached\", \"redis\", \"dynamodb\", \"octane\", \"null\"\n    |\n    */\n\n    'stores' => [\n\n        'apc' => [\n            'driver' => 'apc',\n        ],\n\n        'array' => [\n            'driver' => 'array',\n            'serialize' => false,\n        ],\n\n        'database' => [\n            'driver' => 'database',\n            'table' => 'cache',\n            'connection' => null,\n            'lock_connection' => null,\n        ],\n\n        'file' => [\n            'driver' => 'file',\n            'path' => storage_path('framework/cache/data'),\n        ],\n\n        'memcached' => [\n            'driver' => 'memcached',\n            'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),\n            'sasl' => [\n                env('MEMCACHED_USERNAME'),\n                env('MEMCACHED_PASSWORD'),\n            ],\n            'options' => [\n                // Memcached::OPT_CONNECT_TIMEOUT => 2000,\n            ],\n            'servers' => [\n                [\n                    'host' => env('MEMCACHED_HOST', '127.0.0.1'),\n                    'port' => env('MEMCACHED_PORT', 11211),\n                    'weight' => 100,\n                ],\n            ],\n        ],\n\n        'redis' => [\n            'driver' => 'redis',\n            'connection' => 'cache',\n            'lock_connection' => 'default',\n        ],\n\n        'dynamodb' => [\n            'driver' => 'dynamodb',\n            'key' => env('AWS_ACCESS_KEY_ID'),\n            'secret' => env('AWS_SECRET_ACCESS_KEY'),\n            'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),\n            'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),\n            'endpoint' => env('DYNAMODB_ENDPOINT'),\n        ],\n\n        'octane' => [\n            'driver' => 'octane',\n        ],\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Cache Key Prefix\n    |--------------------------------------------------------------------------\n    |\n    | When utilizing a RAM based store such as APC or Memcached, there might\n    | be other applications utilizing the same cache. So, we'll specify a\n    | value to get prefixed to all our keys so we can avoid collisions.\n    |\n    */\n\n    'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),\n\n];\n"
  },
  {
    "path": "config/cors.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Cross-Origin Resource Sharing (CORS) Configuration\n    |--------------------------------------------------------------------------\n    |\n    | Here you may configure your settings for cross-origin resource sharing\n    | or \"CORS\". This determines what cross-origin operations may execute\n    | in web browsers. You are free to adjust these settings as needed.\n    |\n    | To learn more: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS\n    |\n    */\n\n    'paths' => ['api/*', 'sanctum/csrf-cookie'],\n\n    'allowed_methods' => ['*'],\n\n    'allowed_origins' => ['*'],\n\n    'allowed_origins_patterns' => [],\n\n    'allowed_headers' => ['*'],\n\n    'exposed_headers' => [],\n\n    'max_age' => 0,\n\n    'supports_credentials' => false,\n\n];\n"
  },
  {
    "path": "config/database.php",
    "content": "<?php\n\nuse Illuminate\\Support\\Str;\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Database Connection Name\n    |--------------------------------------------------------------------------\n    |\n    | Here you may specify which of the database connections below you wish\n    | to use as your default connection for all database work. Of course\n    | you may use many connections at once using the Database library.\n    |\n    */\n\n    'default' => env('DB_CONNECTION', 'mysql'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Database Connections\n    |--------------------------------------------------------------------------\n    |\n    | Here are each of the database connections setup for your application.\n    | Of course, examples of configuring each database platform that is\n    | supported by Laravel is shown below to make development simple.\n    |\n    |\n    | All database work in Laravel is done through the PHP PDO facilities\n    | so make sure you have the driver for your particular database of\n    | choice installed on your machine before you begin development.\n    |\n    */\n\n    'connections' => [\n\n        'sqlite' => [\n            'driver' => 'sqlite',\n            'url' => env('DATABASE_URL'),\n            'database' => env('DB_DATABASE', database_path('database.sqlite')),\n            'prefix' => '',\n            'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),\n        ],\n\n        'mysql' => [\n            'driver' => 'mysql',\n            'url' => env('DATABASE_URL'),\n            'host' => env('DB_HOST', '127.0.0.1'),\n            'port' => env('DB_PORT', '3306'),\n            'database' => env('DB_DATABASE', 'forge'),\n            'username' => env('DB_USERNAME', 'forge'),\n            'password' => env('DB_PASSWORD', ''),\n            'unix_socket' => env('DB_SOCKET', ''),\n            'charset' => 'utf8mb4',\n            'collation' => 'utf8mb4_unicode_ci',\n            'prefix' => '',\n            'prefix_indexes' => true,\n            'strict' => true,\n            'engine' => null,\n            'options' => extension_loaded('pdo_mysql') ? array_filter([\n                PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),\n            ]) : [],\n        ],\n\n        'pgsql' => [\n            'driver' => 'pgsql',\n            'url' => env('DATABASE_URL'),\n            'host' => env('DB_HOST', '127.0.0.1'),\n            'port' => env('DB_PORT', '5432'),\n            'database' => env('DB_DATABASE', 'forge'),\n            'username' => env('DB_USERNAME', 'forge'),\n            'password' => env('DB_PASSWORD', ''),\n            'charset' => 'utf8',\n            'prefix' => '',\n            'prefix_indexes' => true,\n            'schema' => 'public',\n            'sslmode' => 'prefer',\n        ],\n\n        'sqlsrv' => [\n            'driver' => 'sqlsrv',\n            'url' => env('DATABASE_URL'),\n            'host' => env('DB_HOST', 'localhost'),\n            'port' => env('DB_PORT', '1433'),\n            'database' => env('DB_DATABASE', 'forge'),\n            'username' => env('DB_USERNAME', 'forge'),\n            'password' => env('DB_PASSWORD', ''),\n            'charset' => 'utf8',\n            'prefix' => '',\n            'prefix_indexes' => true,\n        ],\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Migration Repository Table\n    |--------------------------------------------------------------------------\n    |\n    | This table keeps track of all the migrations that have already run for\n    | your application. Using this information, we can determine which of\n    | the migrations on disk haven't actually been run in the database.\n    |\n    */\n\n    'migrations' => 'migrations',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Redis Databases\n    |--------------------------------------------------------------------------\n    |\n    | Redis is an open source, fast, and advanced key-value store that also\n    | provides a richer body of commands than a typical key-value system\n    | such as APC or Memcached. Laravel makes it easy to dig right in.\n    |\n    */\n\n    'redis' => [\n\n        'client' => env('REDIS_CLIENT', 'phpredis'),\n\n        'options' => [\n            'cluster' => env('REDIS_CLUSTER', 'redis'),\n            'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),\n        ],\n\n        'default' => [\n            'url' => env('REDIS_URL'),\n            'host' => env('REDIS_HOST', '127.0.0.1'),\n            'password' => env('REDIS_PASSWORD', null),\n            'port' => env('REDIS_PORT', '6379'),\n            'database' => env('REDIS_DB', '0'),\n        ],\n\n        'cache' => [\n            'url' => env('REDIS_URL'),\n            'host' => env('REDIS_HOST', '127.0.0.1'),\n            'password' => env('REDIS_PASSWORD', null),\n            'port' => env('REDIS_PORT', '6379'),\n            'database' => env('REDIS_CACHE_DB', '1'),\n        ],\n\n    ],\n\n];\n"
  },
  {
    "path": "config/filesystems.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Filesystem Disk\n    |--------------------------------------------------------------------------\n    |\n    | Here you may specify the default filesystem disk that should be used\n    | by the framework. The \"local\" disk, as well as a variety of cloud\n    | based disks are available to your application. Just store away!\n    |\n    */\n\n    'default' => env('FILESYSTEM_DRIVER', 'local'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Filesystem Disks\n    |--------------------------------------------------------------------------\n    |\n    | Here you may configure as many filesystem \"disks\" as you wish, and you\n    | may even configure multiple disks of the same driver. Defaults have\n    | been setup for each driver as an example of the required options.\n    |\n    | Supported Drivers: \"local\", \"ftp\", \"sftp\", \"s3\"\n    |\n    */\n\n    'disks' => [\n\n        'local' => [\n            'driver' => 'local',\n            'root' => storage_path('app'),\n        ],\n\n        'public' => [\n            'driver' => 'local',\n            'root' => storage_path('app/public'),\n            'url' => env('APP_URL').'/storage',\n            'visibility' => 'public',\n        ],\n\n        's3' => [\n            'driver' => 's3',\n            'key' => env('AWS_ACCESS_KEY_ID'),\n            'secret' => env('AWS_SECRET_ACCESS_KEY'),\n            'region' => env('AWS_DEFAULT_REGION'),\n            'bucket' => env('AWS_BUCKET'),\n            'url' => env('AWS_URL'),\n            'endpoint' => env('AWS_ENDPOINT'),\n            'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),\n        ],\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Symbolic Links\n    |--------------------------------------------------------------------------\n    |\n    | Here you may configure the symbolic links that will be created when the\n    | `storage:link` Artisan command is executed. The array keys should be\n    | the locations of the links and the values should be their targets.\n    |\n    */\n\n    'links' => [\n        public_path('storage') => storage_path('app/public'),\n    ],\n\n];\n"
  },
  {
    "path": "config/hashing.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Hash Driver\n    |--------------------------------------------------------------------------\n    |\n    | This option controls the default hash driver that will be used to hash\n    | passwords for your application. By default, the bcrypt algorithm is\n    | used; however, you remain free to modify this option if you wish.\n    |\n    | Supported: \"bcrypt\", \"argon\", \"argon2id\"\n    |\n    */\n\n    'driver' => 'bcrypt',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Bcrypt Options\n    |--------------------------------------------------------------------------\n    |\n    | Here you may specify the configuration options that should be used when\n    | passwords are hashed using the Bcrypt algorithm. This will allow you\n    | to control the amount of time it takes to hash the given password.\n    |\n    */\n\n    'bcrypt' => [\n        'rounds' => env('BCRYPT_ROUNDS', 10),\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Argon Options\n    |--------------------------------------------------------------------------\n    |\n    | Here you may specify the configuration options that should be used when\n    | passwords are hashed using the Argon algorithm. These will allow you\n    | to control the amount of time it takes to hash the given password.\n    |\n    */\n\n    'argon' => [\n        'memory' => 1024,\n        'threads' => 2,\n        'time' => 2,\n    ],\n\n];\n"
  },
  {
    "path": "config/location.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Driver\n    |--------------------------------------------------------------------------\n    |\n    | The default driver you would like to use for location retrieval.\n    |\n    */\n\n    'driver' => Stevebauman\\Location\\Drivers\\IpApi::class,\n\n    /*\n    |--------------------------------------------------------------------------\n    | Driver Fallbacks\n    |--------------------------------------------------------------------------\n    |\n    | The drivers you want to use to retrieve the users location\n    | if the above selected driver is unavailable.\n    |\n    | These will be called upon in order (first to last).\n    |\n    */\n\n    'fallbacks' => [\n\n        Stevebauman\\Location\\Drivers\\IpInfo::class,\n\n        Stevebauman\\Location\\Drivers\\GeoPlugin::class,\n\n        Stevebauman\\Location\\Drivers\\MaxMind::class,\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Position\n    |--------------------------------------------------------------------------\n    |\n    | Here you may configure the position instance that is created\n    | and returned from the above drivers. The instance you\n    | create must extend the built-in Position class.\n    |\n    */\n\n    'position' => Stevebauman\\Location\\Position::class,\n\n    /*\n    |--------------------------------------------------------------------------\n    | MaxMind Configuration\n    |--------------------------------------------------------------------------\n    |\n    | The configuration for the MaxMind driver.\n    |\n    | If web service is enabled, you must fill in your user ID and license key.\n    |\n    | If web service is disabled, it will try and retrieve the users location\n    | from the MaxMind database file located in the local path below.\n    |\n    */\n\n    'maxmind' => [\n\n        'web' => [\n\n            'enabled' => false,\n\n            'user_id' => '',\n\n            'license_key' => '',\n\n            'options' => [\n\n                'host' => 'geoip.maxmind.com',\n\n            ],\n\n        ],\n\n        'local' => [\n\n            'path' => database_path('maxmind/GeoLite2-City.mmdb')\n\n        ],\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | IP API Pro Configuration\n    |--------------------------------------------------------------------------\n    |\n    | The configuration for the IP API Pro driver.\n    |\n    */\n\n    'ip_api' => [\n\n        'token' => env('IP_API_TOKEN'),\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | IPInfo Configuration\n    |--------------------------------------------------------------------------\n    |\n    | The configuration for the IPInfo driver.\n    |\n    */\n\n    'ipinfo' => [\n\n        'token' => env('IPINFO_TOKEN'),\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Localhost Testing\n    |--------------------------------------------------------------------------\n    |\n    | If your running your website locally and want to test different\n    | IP addresses to see location detection, set 'enabled' to true.\n    |\n    | The testing IP address is a Google host in the United-States.\n    |\n    */\n\n    'testing' => [\n\n        'enabled' => env('LOCATION_TESTING', true),\n\n        'ip' => '66.102.0.0',\n\n    ],\n\n];\n"
  },
  {
    "path": "config/logging.php",
    "content": "<?php\n\nuse Monolog\\Handler\\NullHandler;\nuse Monolog\\Handler\\StreamHandler;\nuse Monolog\\Handler\\SyslogUdpHandler;\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Log Channel\n    |--------------------------------------------------------------------------\n    |\n    | This option defines the default log channel that gets used when writing\n    | messages to the logs. The name specified in this option should match\n    | one of the channels defined in the \"channels\" configuration array.\n    |\n    */\n\n    'default' => env('LOG_CHANNEL', 'stack'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Log Channels\n    |--------------------------------------------------------------------------\n    |\n    | Here you may configure the log channels for your application. Out of\n    | the box, Laravel uses the Monolog PHP logging library. This gives\n    | you a variety of powerful log handlers / formatters to utilize.\n    |\n    | Available Drivers: \"single\", \"daily\", \"slack\", \"syslog\",\n    |                    \"errorlog\", \"monolog\",\n    |                    \"custom\", \"stack\"\n    |\n    */\n\n    'channels' => [\n        'stack' => [\n            'driver' => 'stack',\n            'channels' => ['single'],\n            'ignore_exceptions' => false,\n        ],\n\n        'single' => [\n            'driver' => 'single',\n            'path' => storage_path('logs/laravel.log'),\n            'level' => env('LOG_LEVEL', 'debug'),\n        ],\n\n        'daily' => [\n            'driver' => 'daily',\n            'path' => storage_path('logs/laravel.log'),\n            'level' => env('LOG_LEVEL', 'debug'),\n            'days' => 14,\n        ],\n\n        'slack' => [\n            'driver' => 'slack',\n            'url' => env('LOG_SLACK_WEBHOOK_URL'),\n            'username' => 'Laravel Log',\n            'emoji' => ':boom:',\n            'level' => env('LOG_LEVEL', 'critical'),\n        ],\n\n        'papertrail' => [\n            'driver' => 'monolog',\n            'level' => env('LOG_LEVEL', 'debug'),\n            'handler' => SyslogUdpHandler::class,\n            'handler_with' => [\n                'host' => env('PAPERTRAIL_URL'),\n                'port' => env('PAPERTRAIL_PORT'),\n            ],\n        ],\n\n        'stderr' => [\n            'driver' => 'monolog',\n            'level' => env('LOG_LEVEL', 'debug'),\n            'handler' => StreamHandler::class,\n            'formatter' => env('LOG_STDERR_FORMATTER'),\n            'with' => [\n                'stream' => 'php://stderr',\n            ],\n        ],\n\n        'syslog' => [\n            'driver' => 'syslog',\n            'level' => env('LOG_LEVEL', 'debug'),\n        ],\n\n        'errorlog' => [\n            'driver' => 'errorlog',\n            'level' => env('LOG_LEVEL', 'debug'),\n        ],\n\n        'null' => [\n            'driver' => 'monolog',\n            'handler' => NullHandler::class,\n        ],\n\n        'emergency' => [\n            'path' => storage_path('logs/laravel.log'),\n        ],\n    ],\n\n];\n"
  },
  {
    "path": "config/mail.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Mailer\n    |--------------------------------------------------------------------------\n    |\n    | This option controls the default mailer that is used to send any email\n    | messages sent by your application. Alternative mailers may be setup\n    | and used as needed; however, this mailer will be used by default.\n    |\n    */\n\n    'default' => env('MAIL_MAILER', 'smtp'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Mailer Configurations\n    |--------------------------------------------------------------------------\n    |\n    | Here you may configure all of the mailers used by your application plus\n    | their respective settings. Several examples have been configured for\n    | you and you are free to add your own as your application requires.\n    |\n    | Laravel supports a variety of mail \"transport\" drivers to be used while\n    | sending an e-mail. You will specify which one you are using for your\n    | mailers below. You are free to add additional mailers as required.\n    |\n    | Supported: \"smtp\", \"sendmail\", \"mailgun\", \"ses\",\n    |            \"postmark\", \"log\", \"array\"\n    |\n    */\n\n    'mailers' => [\n        'smtp' => [\n            'transport' => 'smtp',\n            'host' => env('MAIL_HOST', 'smtp.mailgun.org'),\n            'port' => env('MAIL_PORT', 587),\n            'encryption' => env('MAIL_ENCRYPTION', 'tls'),\n            'username' => env('MAIL_USERNAME'),\n            'password' => env('MAIL_PASSWORD'),\n            'timeout' => null,\n            'auth_mode' => null,\n        ],\n\n        'ses' => [\n            'transport' => 'ses',\n        ],\n\n        'mailgun' => [\n            'transport' => 'mailgun',\n        ],\n\n        'postmark' => [\n            'transport' => 'postmark',\n        ],\n\n        'sendmail' => [\n            'transport' => 'sendmail',\n            'path' => '/usr/sbin/sendmail -bs',\n        ],\n\n        'log' => [\n            'transport' => 'log',\n            'channel' => env('MAIL_LOG_CHANNEL'),\n        ],\n\n        'array' => [\n            'transport' => 'array',\n        ],\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Global \"From\" Address\n    |--------------------------------------------------------------------------\n    |\n    | You may wish for all e-mails sent by your application to be sent from\n    | the same address. Here, you may specify a name and address that is\n    | used globally for all e-mails that are sent by your application.\n    |\n    */\n\n    'from' => [\n        'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),\n        'name' => env('MAIL_FROM_NAME', 'Example'),\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Markdown Mail Settings\n    |--------------------------------------------------------------------------\n    |\n    | If you are using Markdown based email rendering, you may configure your\n    | theme and component paths here, allowing you to customize the design\n    | of the emails. Or, you may simply stick with the Laravel defaults!\n    |\n    */\n\n    'markdown' => [\n        'theme' => 'default',\n\n        'paths' => [\n            resource_path('views/vendor/mail'),\n        ],\n    ],\n\n];\n"
  },
  {
    "path": "config/queue.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Queue Connection Name\n    |--------------------------------------------------------------------------\n    |\n    | Laravel's queue API supports an assortment of back-ends via a single\n    | API, giving you convenient access to each back-end using the same\n    | syntax for every one. Here you may define a default connection.\n    |\n    */\n\n    'default' => env('QUEUE_CONNECTION', 'sync'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Queue Connections\n    |--------------------------------------------------------------------------\n    |\n    | Here you may configure the connection information for each server that\n    | is used by your application. A default configuration has been added\n    | for each back-end shipped with Laravel. You are free to add more.\n    |\n    | Drivers: \"sync\", \"database\", \"beanstalkd\", \"sqs\", \"redis\", \"null\"\n    |\n    */\n\n    'connections' => [\n\n        'sync' => [\n            'driver' => 'sync',\n        ],\n\n        'database' => [\n            'driver' => 'database',\n            'table' => 'jobs',\n            'queue' => 'default',\n            'retry_after' => 90,\n            'after_commit' => false,\n        ],\n\n        'beanstalkd' => [\n            'driver' => 'beanstalkd',\n            'host' => 'localhost',\n            'queue' => 'default',\n            'retry_after' => 90,\n            'block_for' => 0,\n            'after_commit' => false,\n        ],\n\n        'sqs' => [\n            'driver' => 'sqs',\n            'key' => env('AWS_ACCESS_KEY_ID'),\n            'secret' => env('AWS_SECRET_ACCESS_KEY'),\n            'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),\n            'queue' => env('SQS_QUEUE', 'default'),\n            'suffix' => env('SQS_SUFFIX'),\n            'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),\n            'after_commit' => false,\n        ],\n\n        'redis' => [\n            'driver' => 'redis',\n            'connection' => 'default',\n            'queue' => env('REDIS_QUEUE', 'default'),\n            'retry_after' => 90,\n            'block_for' => null,\n            'after_commit' => false,\n        ],\n\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Failed Queue Jobs\n    |--------------------------------------------------------------------------\n    |\n    | These options configure the behavior of failed queue job logging so you\n    | can control which database and table are used to store the jobs that\n    | have failed. You may change them to any database / table you wish.\n    |\n    */\n\n    'failed' => [\n        'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),\n        'database' => env('DB_CONNECTION', 'mysql'),\n        'table' => 'failed_jobs',\n    ],\n\n];\n"
  },
  {
    "path": "config/services.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Third Party Services\n    |--------------------------------------------------------------------------\n    |\n    | This file is for storing the credentials for third party services such\n    | as Mailgun, Postmark, AWS and more. This file provides the de facto\n    | location for this type of information, allowing packages to have\n    | a conventional file to locate the various service credentials.\n    |\n    */\n\n    'mailgun' => [\n        'domain' => env('MAILGUN_DOMAIN'),\n        'secret' => env('MAILGUN_SECRET'),\n        'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),\n    ],\n\n    'postmark' => [\n        'token' => env('POSTMARK_TOKEN'),\n    ],\n\n    'ses' => [\n        'key' => env('AWS_ACCESS_KEY_ID'),\n        'secret' => env('AWS_SECRET_ACCESS_KEY'),\n        'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),\n    ],\n\n];\n"
  },
  {
    "path": "config/session.php",
    "content": "<?php\n\nuse Illuminate\\Support\\Str;\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Default Session Driver\n    |--------------------------------------------------------------------------\n    |\n    | This option controls the default session \"driver\" that will be used on\n    | requests. By default, we will use the lightweight native driver but\n    | you may specify any of the other wonderful drivers provided here.\n    |\n    | Supported: \"file\", \"cookie\", \"database\", \"apc\",\n    |            \"memcached\", \"redis\", \"dynamodb\", \"array\"\n    |\n    */\n\n    'driver' => env('SESSION_DRIVER', 'file'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Lifetime\n    |--------------------------------------------------------------------------\n    |\n    | Here you may specify the number of minutes that you wish the session\n    | to be allowed to remain idle before it expires. If you want them\n    | to immediately expire on the browser closing, set that option.\n    |\n    */\n\n    'lifetime' => env('SESSION_LIFETIME', 120),\n\n    'expire_on_close' => false,\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Encryption\n    |--------------------------------------------------------------------------\n    |\n    | This option allows you to easily specify that all of your session data\n    | should be encrypted before it is stored. All encryption will be run\n    | automatically by Laravel and you can use the Session like normal.\n    |\n    */\n\n    'encrypt' => false,\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session File Location\n    |--------------------------------------------------------------------------\n    |\n    | When using the native session driver, we need a location where session\n    | files may be stored. A default has been set for you but a different\n    | location may be specified. This is only needed for file sessions.\n    |\n    */\n\n    'files' => storage_path('framework/sessions'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Database Connection\n    |--------------------------------------------------------------------------\n    |\n    | When using the \"database\" or \"redis\" session drivers, you may specify a\n    | connection that should be used to manage these sessions. This should\n    | correspond to a connection in your database configuration options.\n    |\n    */\n\n    'connection' => env('SESSION_CONNECTION', null),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Database Table\n    |--------------------------------------------------------------------------\n    |\n    | When using the \"database\" session driver, you may specify the table we\n    | should use to manage the sessions. Of course, a sensible default is\n    | provided for you; however, you are free to change this as needed.\n    |\n    */\n\n    'table' => 'sessions',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Cache Store\n    |--------------------------------------------------------------------------\n    |\n    | While using one of the framework's cache driven session backends you may\n    | list a cache store that should be used for these sessions. This value\n    | must match with one of the application's configured cache \"stores\".\n    |\n    | Affects: \"apc\", \"dynamodb\", \"memcached\", \"redis\"\n    |\n    */\n\n    'store' => env('SESSION_STORE', null),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Sweeping Lottery\n    |--------------------------------------------------------------------------\n    |\n    | Some session drivers must manually sweep their storage location to get\n    | rid of old sessions from storage. Here are the chances that it will\n    | happen on a given request. By default, the odds are 2 out of 100.\n    |\n    */\n\n    'lottery' => [2, 100],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Cookie Name\n    |--------------------------------------------------------------------------\n    |\n    | Here you may change the name of the cookie used to identify a session\n    | instance by ID. The name specified here will get used every time a\n    | new session cookie is created by the framework for every driver.\n    |\n    */\n\n    'cookie' => env(\n        'SESSION_COOKIE',\n        Str::slug(env('APP_NAME', 'laravel'), '_').'_session'\n    ),\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Cookie Path\n    |--------------------------------------------------------------------------\n    |\n    | The session cookie path determines the path for which the cookie will\n    | be regarded as available. Typically, this will be the root path of\n    | your application but you are free to change this when necessary.\n    |\n    */\n\n    'path' => '/',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Session Cookie Domain\n    |--------------------------------------------------------------------------\n    |\n    | Here you may change the domain of the cookie used to identify a session\n    | in your application. This will determine which domains the cookie is\n    | available to in your application. A sensible default has been set.\n    |\n    */\n\n    'domain' => env('SESSION_DOMAIN', null),\n\n    /*\n    |--------------------------------------------------------------------------\n    | HTTPS Only Cookies\n    |--------------------------------------------------------------------------\n    |\n    | By setting this option to true, session cookies will only be sent back\n    | to the server if the browser has a HTTPS connection. This will keep\n    | the cookie from being sent to you when it can't be done securely.\n    |\n    */\n\n    'secure' => env('SESSION_SECURE_COOKIE'),\n\n    /*\n    |--------------------------------------------------------------------------\n    | HTTP Access Only\n    |--------------------------------------------------------------------------\n    |\n    | Setting this value to true will prevent JavaScript from accessing the\n    | value of the cookie and the cookie will only be accessible through\n    | the HTTP protocol. You are free to modify this option if needed.\n    |\n    */\n\n    'http_only' => true,\n\n    /*\n    |--------------------------------------------------------------------------\n    | Same-Site Cookies\n    |--------------------------------------------------------------------------\n    |\n    | This option determines how your cookies behave when cross-site requests\n    | take place, and can be used to mitigate CSRF attacks. By default, we\n    | will set this value to \"lax\" since this is a secure default value.\n    |\n    | Supported: \"lax\", \"strict\", \"none\", null\n    |\n    */\n\n    'same_site' => 'lax',\n\n];\n"
  },
  {
    "path": "config/view.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | View Storage Paths\n    |--------------------------------------------------------------------------\n    |\n    | Most templating systems load templates from disk. Here you may specify\n    | an array of paths that should be checked for your views. Of course\n    | the usual Laravel view path has already been registered for you.\n    |\n    */\n\n    'paths' => [\n        resource_path('views'),\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Compiled View Path\n    |--------------------------------------------------------------------------\n    |\n    | This option determines where all the compiled Blade templates will be\n    | stored for your application. Typically, this is within the storage\n    | directory. However, as usual, you are free to change this value.\n    |\n    */\n\n    'compiled' => env(\n        'VIEW_COMPILED_PATH',\n        realpath(storage_path('framework/views'))\n    ),\n\n];\n"
  },
  {
    "path": "database/.gitignore",
    "content": "*.sqlite*\n"
  },
  {
    "path": "database/factories/UserFactory.php",
    "content": "<?php\n\nnamespace Database\\Factories;\n\nuse App\\Models\\User;\nuse Illuminate\\Database\\Eloquent\\Factories\\Factory;\nuse Illuminate\\Support\\Str;\n\nclass UserFactory extends Factory\n{\n    /**\n     * The name of the factory's corresponding model.\n     *\n     * @var string\n     */\n    protected $model = User::class;\n\n    /**\n     * Define the model's default state.\n     *\n     * @return array\n     */\n    public function definition()\n    {\n        return [\n            'name' => $this->faker->name(),\n            'email' => $this->faker->unique()->safeEmail(),\n            'email_verified_at' => now(),\n            'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password\n            'remember_token' => Str::random(10),\n        ];\n    }\n\n    /**\n     * Indicate that the model's email address should be unverified.\n     *\n     * @return \\Illuminate\\Database\\Eloquent\\Factories\\Factory\n     */\n    public function unverified()\n    {\n        return $this->state(function (array $attributes) {\n            return [\n                'email_verified_at' => null,\n            ];\n        });\n    }\n}\n"
  },
  {
    "path": "database/migrations/2014_10_12_000000_create_users_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass CreateUsersTable extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n        Schema::create('users', function (Blueprint $table) {\n            $table->id();\n            $table->string('name');\n            $table->string('email')->unique();\n            $table->timestamp('email_verified_at')->nullable();\n            $table->string('password');\n            $table->Integer('price_plan')->unsigned()->default(1);\n            $table->rememberToken();\n            $table->timestamps();\n        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n        Schema::dropIfExists('users');\n    }\n}\n"
  },
  {
    "path": "database/migrations/2014_10_12_100000_create_password_resets_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass CreatePasswordResetsTable extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n        Schema::create('q_password_resets', function (Blueprint $table) {\n            $table->string('email')->index();\n            $table->string('token');\n            $table->timestamp('created_at')->nullable();\n        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n        Schema::dropIfExists('q_password_resets');\n    }\n}\n"
  },
  {
    "path": "database/migrations/2018_08_13_124632_create_questions_tables.php",
    "content": "<?php\n\nuse Illuminate\\Support\\Facades\\Schema;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateQuestionsTables extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n//        Schema::create('english', function($table)\n//        {\n//            $table->increments('id');\n//            $table->text('question');\n//            $table->string('optionA', 225);\n//            $table->string('optionB', 225);\n//            $table->string('optionC', 225);\n//            $table->string('optionD', 225);\n//            $table->text('section')->nullable();\n//            $table->text('image')->nullable();\n//            $table->string('answer', 10);\n//            $table->text('solution')->nullable();\n//            $table->string('examtype',20);\n//            $table->string('examyear', 6);\n//            $table->mediumInteger('requestCount')->default(0);\n//            $table->string('authorised', 50)->nullable();\n//            $table->timestamps();\n//        });\n//\n//        Schema::create('mathematics', function($table)\n//        {\n//            $table->increments('id');\n//            $table->text('question');\n//            $table->string('optionA', 225);\n//            $table->string('optionB', 225);\n//            $table->string('optionC', 225);\n//            $table->string('optionD', 225);\n//            $table->text('section')->nullable();\n//            $table->text('image')->nullable();\n//            $table->string('answer', 10);\n//            $table->text('solution')->nullable();\n//            $table->string('examtype',20);\n//            $table->string('examyear', 6);\n//            $table->mediumInteger('requestCount')->default(0);\n//            $table->string('authorised', 50)->nullable();\n//            $table->timestamps();\n//        });\n//\n//        Schema::create('physics', function($table)\n//        {\n//            $table->increments('id');\n//            $table->text('question');\n//            $table->string('optionA', 225);\n//            $table->string('optionB', 225);\n//            $table->string('optionC', 225);\n//            $table->string('optionD', 225);\n//            $table->text('section')->nullable();\n//            $table->text('image')->nullable();\n//            $table->string('answer', 10);\n//            $table->text('solution')->nullable();\n//            $table->string('examtype',20);\n//            $table->string('examyear', 6);\n//            $table->mediumInteger('requestCount')->default(0);\n//            $table->string('authorised', 50)->nullable();\n//            $table->timestamps();\n//        });\n//\n//        Schema::create('chemistry', function($table)\n//        {\n//            $table->increments('id');\n//            $table->text('question');\n//            $table->string('optionA', 225);\n//            $table->string('optionB', 225);\n//            $table->string('optionC', 225);\n//            $table->string('optionD', 225);\n//            $table->text('section')->nullable();\n//            $table->text('image')->nullable();\n//            $table->string('answer', 10);\n//            $table->text('solution')->nullable();\n//            $table->string('examtype',20);\n//            $table->string('examyear', 6);\n//            $table->mediumInteger('requestCount')->default(0);\n//            $table->string('authorised', 50)->nullable();\n//            $table->timestamps();\n//        });\n//\n//\n//        Schema::create('biology', function($table)\n//        {\n//            $table->increments('id');\n//            $table->text('question');\n//            $table->string('optionA', 225);\n//            $table->string('optionB', 225);\n//            $table->string('optionC', 225);\n//            $table->string('optionD', 225);\n//            $table->text('section')->nullable();\n//            $table->text('image')->nullable();\n//            $table->string('answer', 10);\n//            $table->text('solution')->nullable();\n//            $table->string('examtype',20);\n//            $table->string('examyear', 6);\n//            $table->mediumInteger('requestCount')->default(0);\n//            $table->string('authorised', 50)->nullable();\n//            $table->timestamps();\n//        });\n//\n//        Schema::create('accounting', function($table)\n//        {\n//            $table->increments('id');\n//            $table->text('question');\n//            $table->string('optionA', 225);\n//            $table->string('optionB', 225);\n//            $table->string('optionC', 225);\n//            $table->string('optionD', 225);\n//            $table->text('section')->nullable();\n//            $table->text('image')->nullable();\n//            $table->string('answer', 10);\n//            $table->text('solution')->nullable();\n//            $table->string('examtype',20);\n//            $table->string('examyear', 6);\n//            $table->mediumInteger('requestCount')->default(0);\n//            $table->string('authorised', 50)->nullable();\n//            $table->timestamps();\n//        });\n//\n//        Schema::create('commerce', function($table)\n//        {\n//            $table->increments('id');\n//            $table->text('question');\n//            $table->string('optionA', 225);\n//            $table->string('optionB', 225);\n//            $table->string('optionC', 225);\n//            $table->string('optionD', 225);\n//            $table->text('section')->nullable();\n//            $table->text('image')->nullable();\n//            $table->string('answer', 10);\n//            $table->text('solution')->nullable();\n//            $table->string('examtype',20);\n//            $table->string('examyear', 6);\n//            $table->mediumInteger('requestCount')->default(0);\n//            $table->string('authorised', 50)->nullable();\n//            $table->timestamps();\n//        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n//        Schema::dropIfExists('english');\n//        Schema::dropIfExists('mathematics');\n//        Schema::dropIfExists('physics');\n//        Schema::dropIfExists('chemistry');\n//        Schema::dropIfExists('biology');\n//        Schema::dropIfExists('accounting');\n//        Schema::dropIfExists('commerce');\n    }\n}\n"
  },
  {
    "path": "database/migrations/2018_08_28_195542_create_report_question_tables.php",
    "content": "<?php\n\nuse Illuminate\\Support\\Facades\\Schema;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateReportQuestionTables extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n//        Schema::create('report_question', function (Blueprint $table) {\n//            $table->increments('id');\n//            $table->string('full_name')->default('Anonymous');\n//            $table->mediumInteger('question_id');\n//            $table->string('subject');\n//            $table->text('message', 225)->nullable();\n//            $table->enum('type',['1','2','3','4','5','6','7']); //1=>question. 2=>option A 3=> option B, 4=>option C 5=> option D 6=>answer 7=>solution\n//            $table->enum('status', ['0','1']);  //0=> opened 1=>closed\n//            $table->timestamps();\n//        });\n//\n//        Schema::create('report_question_type', function(Blueprint $table)\n//        {\n//            $table->increments('id');\n//            $table->text('name', 50);\n//            $table->string('description', 225)->nullable();\n//            $table->timestamps();\n//        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n//        Schema::dropIfExists('report_question');\n//        Schema::dropIfExists('report_question_type');\n\n    }\n}\n"
  },
  {
    "path": "database/migrations/2018_11_10_105744_create_table_ipaddres_2_question.php",
    "content": "<?php\n\nuse Illuminate\\Support\\Facades\\Schema;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Database\\Migrations\\Migration;\n\nclass CreateTableIpaddres2Question extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n//        Schema::create('api_call_ip_address', function (Blueprint $table) {\n//            $table->increments('id');\n//            $table->string('subject');\n//            $table->string('ipAddress');\n//            $table->string('countryName')->nullable();\n//            $table->string('countryCode')->nullable();\n//            $table->string('regionCode')->nullable();\n//            $table->string('regionName')->nullable();\n//            $table->string('cityName')->nullable();\n//            $table->string('zipCode')->nullable();\n//            $table->string('latitude')->nullable();\n//            $table->string('longitude')->nullable();\n//            $table->Integer('requestCount')->default(0);\n//            $table->timestamps();\n//        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n        //Schema::dropIfExists('api_call_ip_address');\n\n    }\n}\n"
  },
  {
    "path": "database/migrations/2019_08_19_000000_create_failed_jobs_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass CreateFailedJobsTable extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n//        Schema::create('failed_jobs', function (Blueprint $table) {\n//            $table->id();\n//            $table->string('uuid')->unique();\n//            $table->text('connection');\n//            $table->text('queue');\n//            $table->longText('payload');\n//            $table->longText('exception');\n//            $table->timestamp('failed_at')->useCurrent();\n//        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n//        Schema::dropIfExists('failed_jobs');\n    }\n}\n"
  },
  {
    "path": "database/migrations/2021_07_10_192953_create_access_token_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass CreateAccessTokenTable extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n\n        Schema::create('q_access_tokens', function (Blueprint $table) {\n            $table->id();\n            $table->Integer('user_id')->unsigned()->unique();\n            $table->string('token', 225);\n            $table->Integer('count')->default(0);\n            $table->timestamps();\n        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n        Schema::dropIfExists('q_access_tokens');\n    }\n}\n"
  },
  {
    "path": "database/migrations/2021_07_13_194154_create_table_access_token_calls.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass CreateTableAccessTokenCalls extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n        Schema::create('q_access_token_calls', function (Blueprint $table) {\n            $table->id();\n            $table->Integer('user_id')->unsigned();\n            $table->string('subject');\n            $table->Integer('requestCount')->default(0);\n            $table->string('token', 225);\n            $table->timestamps();\n        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n        Schema::dropIfExists('q_access_token_calls');\n    }\n}\n"
  },
  {
    "path": "database/migrations/2021_07_17_152326_create_table_price_plans.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass CreateTablePricePlans extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n        Schema::create('q_price_plans', function (Blueprint $table) {\n            $table->id();\n            $table->string('plan');\n            $table->Integer('price')->default(0);\n            $table->Integer('default_unit')->default(0);\n            $table->Integer('bonus_unit')->default(0);\n            $table->Integer('unit_limit')->default(0);\n\n            $table->timestamps();\n        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n        Schema::dropIfExists('q_price_plans');\n    }\n}\n"
  },
  {
    "path": "database/migrations/2021_08_03_124437_create_payment_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass CreatePaymentTable extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n        Schema::create('q_payments', function (Blueprint $table) {\n            $table->id();\n            $table->Integer('user_id')->unsigned();\n            $table->Integer('amount')->default(0);\n            $table->Integer('plan_id')->unsigned();\n            $table->Integer('price')->default(0);\n            $table->enum('method', ['paystack','monnify'])->default('paystack');\n            $table->string('trans_reference');\n            $table->text('message');\n            $table->boolean('status')->default(false);\n\n            $table->timestamps();\n        });\n\n        Schema::create('q_subscriptions', function (Blueprint $table) {\n            $table->id();\n            $table->Integer('user_id')->unsigned();\n            $table->Integer('plan_id')->unsigned();\n            $table->Integer('limit')->default(0);\n            $table->boolean('paying')->default(false);\n\n            $table->timestamps();\n        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n        Schema::dropIfExists('q_payments');\n        Schema::dropIfExists('q_subscriptions');\n\n    }\n}\n"
  },
  {
    "path": "database/migrations/2022_10_22_110248_create_qboard_log_table.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Migrations\\Migration;\nuse Illuminate\\Database\\Schema\\Blueprint;\nuse Illuminate\\Support\\Facades\\Schema;\n\nclass CreateQboardLogTable extends Migration\n{\n    /**\n     * Run the migrations.\n     *\n     * @return void\n     */\n    public function up()\n    {\n        Schema::create('q_qboard_logs', function (Blueprint $table) {\n            $table->id();\n            $table->string('subject');\n            $table->string('month');\n            $table->string('year');\n            $table->Integer('requestCount')->default(0);\n            $table->Integer('questionCount')->default(0);\n            $table->timestamps();\n        });\n    }\n\n    /**\n     * Reverse the migrations.\n     *\n     * @return void\n     */\n    public function down()\n    {\n        Schema::dropIfExists('q_qboard_logs');\n    }\n}\n"
  },
  {
    "path": "database/seeders/DatabaseSeeder.php",
    "content": "<?php\n\nnamespace Database\\Seeders;\n\nuse Illuminate\\Database\\Seeder;\n\nclass DatabaseSeeder extends Seeder\n{\n    /**\n     * Seed the application's database.\n     *\n     * @return void\n     */\n    public function run()\n    {\n        // \\App\\Models\\User::factory(10)->create();\n    }\n}\n"
  },
  {
    "path": "database/seeders/LoadDummyQuestions.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Seeder;\n\nclass LoadDummyQuestions extends Seeder\n{\n    /**\n     * Run the database seeds.\n     *\n     * @return void\n     */\n    public function run()\n    {\n        DB::table('accounting')->insert(['question' => 'The bad debt account is closed by transferring the balance to','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('accounting')->insert(['question' => 'The bad  account is closed','optionA' => 'capital account', 'optionB' => 'debit of profit  ', 'optionC' => 'debit of account','optionD' => 'credit of profit account', 'answer' => 'b', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('accounting')->insert(['question' => 'The bad debt account o','optionA' => 'credit', 'optionB' => 'debitband loss', 'optionC' => ' account','optionD' => 'credit of profit and loss account', 'answer' => 'c', 'examtype' => 'WAEC', 'examyear' => '2008', 'authorised' => 'Admin',]);\n        DB::table('accounting')->insert(['question' => 'Bad debt account','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'd', 'examtype' => 'WAEC', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('accounting')->insert(['question' => 'Bad account','optionA' => 'credit', 'optionB' => 'loss', 'optionC' => 'debit o account','optionD' => 'credit of profit ', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2008', 'authorised' => 'Admin',]);\n\n        DB::table('english')->insert(['question' => 'The bad debt account is closed by transferring the balance to','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('english')->insert(['question' => 'The bad  account is closed','optionA' => 'capital account', 'optionB' => 'debit of profit  ', 'optionC' => 'debit of account','optionD' => 'credit of profit account', 'answer' => 'b', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('english')->insert(['question' => 'The bad debt account o','optionA' => 'credit', 'optionB' => 'debitband loss', 'optionC' => ' account','optionD' => 'credit of profit and loss account', 'answer' => 'c', 'examtype' => 'WAEC', 'examyear' => '2008', 'authorised' => 'Admin',]);\n        DB::table('english')->insert(['question' => 'Bad debt account','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'd', 'examtype' => 'WAEC', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('english')->insert(['question' => 'Bad account','optionA' => 'credit', 'optionB' => 'loss', 'optionC' => 'debit o account','optionD' => 'credit of profit ', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2008', 'authorised' => 'Admin',]);\n\n        DB::table('mathematics')->insert(['question' => 'The bad debt account is closed by transferring the balance to','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('mathematics')->insert(['question' => 'The bad  account is closed','optionA' => 'capital account', 'optionB' => 'debit of profit  ', 'optionC' => 'debit of account','optionD' => 'credit of profit account', 'answer' => 'b', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('mathematics')->insert(['question' => 'The bad debt account o','optionA' => 'credit', 'optionB' => 'debitband loss', 'optionC' => ' account','optionD' => 'credit of profit and loss account', 'answer' => 'c', 'examtype' => 'WAEC', 'examyear' => '2008', 'authorised' => 'Admin',]);\n        DB::table('mathematics')->insert(['question' => 'Bad debt account','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'd', 'examtype' => 'WAEC', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('mathematics')->insert(['question' => 'Bad account','optionA' => 'credit', 'optionB' => 'loss', 'optionC' => 'debit o account','optionD' => 'credit of profit ', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2008', 'authorised' => 'Admin',]);\n\n        DB::table('physics')->insert(['question' => 'The bad debt account is closed by transferring the balance to','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('physics')->insert(['question' => 'The bad  account is closed','optionA' => 'capital account', 'optionB' => 'debit of profit  ', 'optionC' => 'debit of account','optionD' => 'credit of profit account', 'answer' => 'b', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('physics')->insert(['question' => 'The bad debt account o','optionA' => 'credit', 'optionB' => 'debitband loss', 'optionC' => ' account','optionD' => 'credit of profit and loss account', 'answer' => 'c', 'examtype' => 'WAEC', 'examyear' => '2008', 'authorised' => 'Admin',]);\n        DB::table('physics')->insert(['question' => 'Bad debt account','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'd', 'examtype' => 'WAEC', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('physics')->insert(['question' => 'Bad account','optionA' => 'credit', 'optionB' => 'loss', 'optionC' => 'debit o account','optionD' => 'credit of profit ', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2008', 'authorised' => 'Admin',]);\n\n        DB::table('chemistry')->insert(['question' => 'The bad debt account is closed by transferring the balance to','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('chemistry')->insert(['question' => 'The bad  account is closed','optionA' => 'capital account', 'optionB' => 'debit of profit  ', 'optionC' => 'debit of account','optionD' => 'credit of profit account', 'answer' => 'b', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('chemistry')->insert(['question' => 'The bad debt account o','optionA' => 'credit', 'optionB' => 'debitband loss', 'optionC' => ' account','optionD' => 'credit of profit and loss account', 'answer' => 'c', 'examtype' => 'WAEC', 'examyear' => '2008', 'authorised' => 'Admin',]);\n        DB::table('chemistry')->insert(['question' => 'Bad debt account','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'd', 'examtype' => 'WAEC', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('chemistry')->insert(['question' => 'Bad account','optionA' => 'credit', 'optionB' => 'loss', 'optionC' => 'debit o account','optionD' => 'credit of profit ', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2008', 'authorised' => 'Admin',]);\n\n        DB::table('biology')->insert(['question' => 'The bad debt account is closed by transferring the balance to','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('biology')->insert(['question' => 'The bad  account is closed','optionA' => 'capital account', 'optionB' => 'debit of profit  ', 'optionC' => 'debit of account','optionD' => 'credit of profit account', 'answer' => 'b', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('biology')->insert(['question' => 'The bad debt account o','optionA' => 'credit', 'optionB' => 'debitband loss', 'optionC' => ' account','optionD' => 'credit of profit and loss account', 'answer' => 'c', 'examtype' => 'WAEC', 'examyear' => '2008', 'authorised' => 'Admin',]);\n        DB::table('biology')->insert(['question' => 'Bad debt account','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'd', 'examtype' => 'WAEC', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('biology')->insert(['question' => 'Bad account','optionA' => 'credit', 'optionB' => 'loss', 'optionC' => 'debit o account','optionD' => 'credit of profit ', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2008', 'authorised' => 'Admin',]);\n\n        DB::table('commerce')->insert(['question' => 'The bad debt account is closed by transferring the balance to','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('commerce')->insert(['question' => 'The bad  account is closed','optionA' => 'capital account', 'optionB' => 'debit of profit  ', 'optionC' => 'debit of account','optionD' => 'credit of profit account', 'answer' => 'b', 'examtype' => 'JAMB', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('commerce')->insert(['question' => 'The bad debt account o','optionA' => 'credit', 'optionB' => 'debitband loss', 'optionC' => ' account','optionD' => 'credit of profit and loss account', 'answer' => 'c', 'examtype' => 'WAEC', 'examyear' => '2008', 'authorised' => 'Admin',]);\n        DB::table('commerce')->insert(['question' => 'Bad debt account','optionA' => 'credit of capital account', 'optionB' => 'debit of profit  and loss', 'optionC' => 'debit of the debtors personal account','optionD' => 'credit of profit and loss account', 'answer' => 'd', 'examtype' => 'WAEC', 'examyear' => '2006', 'authorised' => 'Admin',]);\n        DB::table('commerce')->insert(['question' => 'Bad account','optionA' => 'credit', 'optionB' => 'loss', 'optionC' => 'debit o account','optionD' => 'credit of profit ', 'answer' => 'a', 'examtype' => 'JAMB', 'examyear' => '2008', 'authorised' => 'Admin',]);\n    }\n}\n"
  },
  {
    "path": "database/seeders/ReportQuestionType.php",
    "content": "<?php\n\nuse Illuminate\\Database\\Seeder;\n\nclass ReportQuestionType extends Seeder\n{\n    /**\n     * Run the database seeds.\n     *\n     * @return void\n     */\n    public function run()\n    {\n        DB::table('report_question_type')->insert(['name' => 'Question','description' => 'There is an error in question']);\n        DB::table('report_question_type')->insert(['name' => 'Option A','description' => 'There is an error with option a']);\n        DB::table('report_question_type')->insert(['name' => 'Option B','description' => 'There is an error with option b']);\n        DB::table('report_question_type')->insert(['name' => 'Option C','description' => 'There is an error with option c']);\n        DB::table('report_question_type')->insert(['name' => 'Option D','description' => 'There is an error with option d']);\n        DB::table('report_question_type')->insert(['name' => 'Answer','description' => 'Something is wrong with the answer']);\n        DB::table('report_question_type')->insert(['name' => 'Solution','description' => 'Something is wrong with the solution']);\n\n    }\n}\n"
  },
  {
    "path": "package.json",
    "content": "{\n    \"private\": true,\n    \"scripts\": {\n        \"dev\": \"npm run development\",\n        \"development\": \"mix\",\n        \"watch\": \"mix watch\",\n        \"watch-poll\": \"mix watch -- --watch-options-poll=1000\",\n        \"hot\": \"mix watch --hot\",\n        \"prod\": \"npm run production\",\n        \"production\": \"mix --production\"\n    },\n    \"devDependencies\": {\n        \"axios\": \"^0.21\",\n        \"laravel-mix\": \"^6.0.6\",\n        \"lodash\": \"^4.17.19\",\n        \"postcss\": \"^8.1.14\"\n    }\n}\n"
  },
  {
    "path": "phpunit.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<phpunit xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:noNamespaceSchemaLocation=\"./vendor/phpunit/phpunit/phpunit.xsd\"\n         bootstrap=\"vendor/autoload.php\"\n         colors=\"true\"\n>\n    <testsuites>\n        <testsuite name=\"Unit\">\n            <directory suffix=\"Test.php\">./tests/Unit</directory>\n        </testsuite>\n        <testsuite name=\"Feature\">\n            <directory suffix=\"Test.php\">./tests/Feature</directory>\n        </testsuite>\n    </testsuites>\n    <coverage processUncoveredFiles=\"true\">\n        <include>\n            <directory suffix=\".php\">./app</directory>\n        </include>\n    </coverage>\n    <php>\n        <server name=\"APP_ENV\" value=\"testing\"/>\n        <server name=\"BCRYPT_ROUNDS\" value=\"4\"/>\n        <server name=\"CACHE_DRIVER\" value=\"array\"/>\n        <!-- <server name=\"DB_CONNECTION\" value=\"sqlite\"/> -->\n        <!-- <server name=\"DB_DATABASE\" value=\":memory:\"/> -->\n        <server name=\"MAIL_MAILER\" value=\"array\"/>\n        <server name=\"QUEUE_CONNECTION\" value=\"sync\"/>\n        <server name=\"SESSION_DRIVER\" value=\"array\"/>\n        <server name=\"TELESCOPE_ENABLED\" value=\"false\"/>\n    </php>\n</phpunit>\n"
  },
  {
    "path": "public/.htaccess",
    "content": "<IfModule mod_rewrite.c>\n    <IfModule mod_negotiation.c>\n        Options -MultiViews -Indexes\n    </IfModule>\n\n    RewriteEngine On\n\n    # Handle Authorization Header\n    RewriteCond %{HTTP:Authorization} .\n    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]\n\n    # Redirect Trailing Slashes If Not A Folder...\n    RewriteCond %{REQUEST_FILENAME} !-d\n    RewriteCond %{REQUEST_URI} (.+)/$\n    RewriteRule ^ %1 [L,R=301]\n\n    # Send Requests To Front Controller...\n    RewriteCond %{REQUEST_FILENAME} !-d\n    RewriteCond %{REQUEST_FILENAME} !-f\n    RewriteRule ^ index.php [L]\n</IfModule>\n"
  },
  {
    "path": "public/admin/css/animate.css",
    "content": "@charset \"UTF-8\";\n\n/*!\nAnimate.css - http://daneden.me/animate\nLicensed under the MIT license\n\nCopyright (c) 2013 Daniel Eden\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n\n.animated {\n    -webkit-animation-duration: 1s;\n    animation-duration: 1s;\n    -webkit-animation-fill-mode: both;\n    animation-fill-mode: both;\n    z-index: 100;\n}\n\n.animated.infinite {\n    -webkit-animation-iteration-count: infinite;\n    animation-iteration-count: infinite;\n}\n\n.animated.hinge {\n    -webkit-animation-duration: 2s;\n    animation-duration: 2s;\n}\n\n@-webkit-keyframes bounce {\n    0%, 20%, 50%, 80%, 100% {\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    40% {\n        -webkit-transform: translateY(-30px);\n        transform: translateY(-30px);\n    }\n\n    60% {\n        -webkit-transform: translateY(-15px);\n        transform: translateY(-15px);\n    }\n}\n\n@keyframes bounce {\n    0%, 20%, 50%, 80%, 100% {\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    40% {\n        -webkit-transform: translateY(-30px);\n        -ms-transform: translateY(-30px);\n        transform: translateY(-30px);\n    }\n\n    60% {\n        -webkit-transform: translateY(-15px);\n        -ms-transform: translateY(-15px);\n        transform: translateY(-15px);\n    }\n}\n\n.bounce {\n    -webkit-animation-name: bounce;\n    animation-name: bounce;\n}\n\n@-webkit-keyframes flash {\n    0%, 50%, 100% {\n        opacity: 1;\n    }\n\n    25%, 75% {\n        opacity: 0;\n    }\n}\n\n@keyframes flash {\n    0%, 50%, 100% {\n        opacity: 1;\n    }\n\n    25%, 75% {\n        opacity: 0;\n    }\n}\n\n.flash {\n    -webkit-animation-name: flash;\n    animation-name: flash;\n}\n\n/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */\n\n@-webkit-keyframes pulse {\n    0% {\n        -webkit-transform: scale(1);\n        transform: scale(1);\n    }\n\n    50% {\n        -webkit-transform: scale(1.1);\n        transform: scale(1.1);\n    }\n\n    100% {\n        -webkit-transform: scale(1);\n        transform: scale(1);\n    }\n}\n\n@keyframes pulse {\n    0% {\n        -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n        transform: scale(1);\n    }\n\n    50% {\n        -webkit-transform: scale(1.1);\n        -ms-transform: scale(1.1);\n        transform: scale(1.1);\n    }\n\n    100% {\n        -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n        transform: scale(1);\n    }\n}\n\n.pulse {\n    -webkit-animation-name: pulse;\n    animation-name: pulse;\n}\n\n@-webkit-keyframes rubberBand {\n    0% {\n        -webkit-transform: scale(1);\n        transform: scale(1);\n    }\n\n    30% {\n        -webkit-transform: scaleX(1.25) scaleY(0.75);\n        transform: scaleX(1.25) scaleY(0.75);\n    }\n\n    40% {\n        -webkit-transform: scaleX(0.75) scaleY(1.25);\n        transform: scaleX(0.75) scaleY(1.25);\n    }\n\n    60% {\n        -webkit-transform: scaleX(1.15) scaleY(0.85);\n        transform: scaleX(1.15) scaleY(0.85);\n    }\n\n    100% {\n        -webkit-transform: scale(1);\n        transform: scale(1);\n    }\n}\n\n@keyframes rubberBand {\n    0% {\n        -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n        transform: scale(1);\n    }\n\n    30% {\n        -webkit-transform: scaleX(1.25) scaleY(0.75);\n        -ms-transform: scaleX(1.25) scaleY(0.75);\n        transform: scaleX(1.25) scaleY(0.75);\n    }\n\n    40% {\n        -webkit-transform: scaleX(0.75) scaleY(1.25);\n        -ms-transform: scaleX(0.75) scaleY(1.25);\n        transform: scaleX(0.75) scaleY(1.25);\n    }\n\n    60% {\n        -webkit-transform: scaleX(1.15) scaleY(0.85);\n        -ms-transform: scaleX(1.15) scaleY(0.85);\n        transform: scaleX(1.15) scaleY(0.85);\n    }\n\n    100% {\n        -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n        transform: scale(1);\n    }\n}\n\n.rubberBand {\n    -webkit-animation-name: rubberBand;\n    animation-name: rubberBand;\n}\n\n@-webkit-keyframes shake {\n    0%, 100% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    10%, 30%, 50%, 70%, 90% {\n        -webkit-transform: translateX(-10px);\n        transform: translateX(-10px);\n    }\n\n    20%, 40%, 60%, 80% {\n        -webkit-transform: translateX(10px);\n        transform: translateX(10px);\n    }\n}\n\n@keyframes shake {\n    0%, 100% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    10%, 30%, 50%, 70%, 90% {\n        -webkit-transform: translateX(-10px);\n        -ms-transform: translateX(-10px);\n        transform: translateX(-10px);\n    }\n\n    20%, 40%, 60%, 80% {\n        -webkit-transform: translateX(10px);\n        -ms-transform: translateX(10px);\n        transform: translateX(10px);\n    }\n}\n\n.shake {\n    -webkit-animation-name: shake;\n    animation-name: shake;\n}\n\n@-webkit-keyframes swing {\n    20% {\n        -webkit-transform: rotate(15deg);\n        transform: rotate(15deg);\n    }\n\n    40% {\n        -webkit-transform: rotate(-10deg);\n        transform: rotate(-10deg);\n    }\n\n    60% {\n        -webkit-transform: rotate(5deg);\n        transform: rotate(5deg);\n    }\n\n    80% {\n        -webkit-transform: rotate(-5deg);\n        transform: rotate(-5deg);\n    }\n\n    100% {\n        -webkit-transform: rotate(0deg);\n        transform: rotate(0deg);\n    }\n}\n\n@keyframes swing {\n    20% {\n        -webkit-transform: rotate(15deg);\n        -ms-transform: rotate(15deg);\n        transform: rotate(15deg);\n    }\n\n    40% {\n        -webkit-transform: rotate(-10deg);\n        -ms-transform: rotate(-10deg);\n        transform: rotate(-10deg);\n    }\n\n    60% {\n        -webkit-transform: rotate(5deg);\n        -ms-transform: rotate(5deg);\n        transform: rotate(5deg);\n    }\n\n    80% {\n        -webkit-transform: rotate(-5deg);\n        -ms-transform: rotate(-5deg);\n        transform: rotate(-5deg);\n    }\n\n    100% {\n        -webkit-transform: rotate(0deg);\n        -ms-transform: rotate(0deg);\n        transform: rotate(0deg);\n    }\n}\n\n.swing {\n    -webkit-transform-origin: top center;\n    -ms-transform-origin: top center;\n    transform-origin: top center;\n    -webkit-animation-name: swing;\n    animation-name: swing;\n}\n\n@-webkit-keyframes tada {\n    0% {\n        -webkit-transform: scale(1);\n        transform: scale(1);\n    }\n\n    10%, 20% {\n        -webkit-transform: scale(0.9) rotate(-3deg);\n        transform: scale(0.9) rotate(-3deg);\n    }\n\n    30%, 50%, 70%, 90% {\n        -webkit-transform: scale(1.1) rotate(3deg);\n        transform: scale(1.1) rotate(3deg);\n    }\n\n    40%, 60%, 80% {\n        -webkit-transform: scale(1.1) rotate(-3deg);\n        transform: scale(1.1) rotate(-3deg);\n    }\n\n    100% {\n        -webkit-transform: scale(1) rotate(0);\n        transform: scale(1) rotate(0);\n    }\n}\n\n@keyframes tada {\n    0% {\n        -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n        transform: scale(1);\n    }\n\n    10%, 20% {\n        -webkit-transform: scale(0.9) rotate(-3deg);\n        -ms-transform: scale(0.9) rotate(-3deg);\n        transform: scale(0.9) rotate(-3deg);\n    }\n\n    30%, 50%, 70%, 90% {\n        -webkit-transform: scale(1.1) rotate(3deg);\n        -ms-transform: scale(1.1) rotate(3deg);\n        transform: scale(1.1) rotate(3deg);\n    }\n\n    40%, 60%, 80% {\n        -webkit-transform: scale(1.1) rotate(-3deg);\n        -ms-transform: scale(1.1) rotate(-3deg);\n        transform: scale(1.1) rotate(-3deg);\n    }\n\n    100% {\n        -webkit-transform: scale(1) rotate(0);\n        -ms-transform: scale(1) rotate(0);\n        transform: scale(1) rotate(0);\n    }\n}\n\n.tada {\n    -webkit-animation-name: tada;\n    animation-name: tada;\n}\n\n/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */\n\n@-webkit-keyframes wobble {\n    0% {\n        -webkit-transform: translateX(0%);\n        transform: translateX(0%);\n    }\n\n    15% {\n        -webkit-transform: translateX(-25%) rotate(-5deg);\n        transform: translateX(-25%) rotate(-5deg);\n    }\n\n    30% {\n        -webkit-transform: translateX(20%) rotate(3deg);\n        transform: translateX(20%) rotate(3deg);\n    }\n\n    45% {\n        -webkit-transform: translateX(-15%) rotate(-3deg);\n        transform: translateX(-15%) rotate(-3deg);\n    }\n\n    60% {\n        -webkit-transform: translateX(10%) rotate(2deg);\n        transform: translateX(10%) rotate(2deg);\n    }\n\n    75% {\n        -webkit-transform: translateX(-5%) rotate(-1deg);\n        transform: translateX(-5%) rotate(-1deg);\n    }\n\n    100% {\n        -webkit-transform: translateX(0%);\n        transform: translateX(0%);\n    }\n}\n\n@keyframes wobble {\n    0% {\n        -webkit-transform: translateX(0%);\n        -ms-transform: translateX(0%);\n        transform: translateX(0%);\n    }\n\n    15% {\n        -webkit-transform: translateX(-25%) rotate(-5deg);\n        -ms-transform: translateX(-25%) rotate(-5deg);\n        transform: translateX(-25%) rotate(-5deg);\n    }\n\n    30% {\n        -webkit-transform: translateX(20%) rotate(3deg);\n        -ms-transform: translateX(20%) rotate(3deg);\n        transform: translateX(20%) rotate(3deg);\n    }\n\n    45% {\n        -webkit-transform: translateX(-15%) rotate(-3deg);\n        -ms-transform: translateX(-15%) rotate(-3deg);\n        transform: translateX(-15%) rotate(-3deg);\n    }\n\n    60% {\n        -webkit-transform: translateX(10%) rotate(2deg);\n        -ms-transform: translateX(10%) rotate(2deg);\n        transform: translateX(10%) rotate(2deg);\n    }\n\n    75% {\n        -webkit-transform: translateX(-5%) rotate(-1deg);\n        -ms-transform: translateX(-5%) rotate(-1deg);\n        transform: translateX(-5%) rotate(-1deg);\n    }\n\n    100% {\n        -webkit-transform: translateX(0%);\n        -ms-transform: translateX(0%);\n        transform: translateX(0%);\n    }\n}\n\n.wobble {\n    -webkit-animation-name: wobble;\n    animation-name: wobble;\n}\n\n@-webkit-keyframes bounceIn {\n    0% {\n        opacity: 0;\n        -webkit-transform: scale(.3);\n        transform: scale(.3);\n    }\n\n    50% {\n        opacity: 1;\n        -webkit-transform: scale(1.05);\n        transform: scale(1.05);\n    }\n\n    70% {\n        -webkit-transform: scale(.9);\n        transform: scale(.9);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: scale(1);\n        transform: scale(1);\n    }\n}\n\n@keyframes bounceIn {\n    0% {\n        opacity: 0;\n        -webkit-transform: scale(.3);\n        -ms-transform: scale(.3);\n        transform: scale(.3);\n    }\n\n    50% {\n        opacity: 1;\n        -webkit-transform: scale(1.05);\n        -ms-transform: scale(1.05);\n        transform: scale(1.05);\n    }\n\n    70% {\n        -webkit-transform: scale(.9);\n        -ms-transform: scale(.9);\n        transform: scale(.9);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n        transform: scale(1);\n    }\n}\n\n.bounceIn {\n    -webkit-animation-name: bounceIn;\n    animation-name: bounceIn;\n}\n\n@-webkit-keyframes bounceInDown {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n\n    60% {\n        opacity: 1;\n        -webkit-transform: translateY(30px);\n        transform: translateY(30px);\n    }\n\n    80% {\n        -webkit-transform: translateY(-10px);\n        transform: translateY(-10px);\n    }\n\n    100% {\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n@keyframes bounceInDown {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        -ms-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n\n    60% {\n        opacity: 1;\n        -webkit-transform: translateY(30px);\n        -ms-transform: translateY(30px);\n        transform: translateY(30px);\n    }\n\n    80% {\n        -webkit-transform: translateY(-10px);\n        -ms-transform: translateY(-10px);\n        transform: translateY(-10px);\n    }\n\n    100% {\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n.bounceInDown {\n    -webkit-animation-name: bounceInDown;\n    animation-name: bounceInDown;\n}\n\n@-webkit-keyframes bounceInLeft {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n\n    60% {\n        opacity: 1;\n        -webkit-transform: translateX(30px);\n        transform: translateX(30px);\n    }\n\n    80% {\n        -webkit-transform: translateX(-10px);\n        transform: translateX(-10px);\n    }\n\n    100% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n@keyframes bounceInLeft {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        -ms-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n\n    60% {\n        opacity: 1;\n        -webkit-transform: translateX(30px);\n        -ms-transform: translateX(30px);\n        transform: translateX(30px);\n    }\n\n    80% {\n        -webkit-transform: translateX(-10px);\n        -ms-transform: translateX(-10px);\n        transform: translateX(-10px);\n    }\n\n    100% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n.bounceInLeft {\n    -webkit-animation-name: bounceInLeft;\n    animation-name: bounceInLeft;\n}\n\n@-webkit-keyframes bounceInRight {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n\n    60% {\n        opacity: 1;\n        -webkit-transform: translateX(-30px);\n        transform: translateX(-30px);\n    }\n\n    80% {\n        -webkit-transform: translateX(10px);\n        transform: translateX(10px);\n    }\n\n    100% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n@keyframes bounceInRight {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        -ms-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n\n    60% {\n        opacity: 1;\n        -webkit-transform: translateX(-30px);\n        -ms-transform: translateX(-30px);\n        transform: translateX(-30px);\n    }\n\n    80% {\n        -webkit-transform: translateX(10px);\n        -ms-transform: translateX(10px);\n        transform: translateX(10px);\n    }\n\n    100% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n.bounceInRight {\n    -webkit-animation-name: bounceInRight;\n    animation-name: bounceInRight;\n}\n\n@-webkit-keyframes bounceInUp {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n\n    60% {\n        opacity: 1;\n        -webkit-transform: translateY(-30px);\n        transform: translateY(-30px);\n    }\n\n    80% {\n        -webkit-transform: translateY(10px);\n        transform: translateY(10px);\n    }\n\n    100% {\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n@keyframes bounceInUp {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        -ms-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n\n    60% {\n        opacity: 1;\n        -webkit-transform: translateY(-30px);\n        -ms-transform: translateY(-30px);\n        transform: translateY(-30px);\n    }\n\n    80% {\n        -webkit-transform: translateY(10px);\n        -ms-transform: translateY(10px);\n        transform: translateY(10px);\n    }\n\n    100% {\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n.bounceInUp {\n    -webkit-animation-name: bounceInUp;\n    animation-name: bounceInUp;\n}\n\n@-webkit-keyframes bounceOut {\n    0% {\n        -webkit-transform: scale(1);\n        transform: scale(1);\n    }\n\n    25% {\n        -webkit-transform: scale(.95);\n        transform: scale(.95);\n    }\n\n    50% {\n        opacity: 1;\n        -webkit-transform: scale(1.1);\n        transform: scale(1.1);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: scale(.3);\n        transform: scale(.3);\n    }\n}\n\n@keyframes bounceOut {\n    0% {\n        -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n        transform: scale(1);\n    }\n\n    25% {\n        -webkit-transform: scale(.95);\n        -ms-transform: scale(.95);\n        transform: scale(.95);\n    }\n\n    50% {\n        opacity: 1;\n        -webkit-transform: scale(1.1);\n        -ms-transform: scale(1.1);\n        transform: scale(1.1);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: scale(.3);\n        -ms-transform: scale(.3);\n        transform: scale(.3);\n    }\n}\n\n.bounceOut {\n    -webkit-animation-name: bounceOut;\n    animation-name: bounceOut;\n}\n\n@-webkit-keyframes bounceOutDown {\n    0% {\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    20% {\n        opacity: 1;\n        -webkit-transform: translateY(-20px);\n        transform: translateY(-20px);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n}\n\n@keyframes bounceOutDown {\n    0% {\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    20% {\n        opacity: 1;\n        -webkit-transform: translateY(-20px);\n        -ms-transform: translateY(-20px);\n        transform: translateY(-20px);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        -ms-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n}\n\n.bounceOutDown {\n    -webkit-animation-name: bounceOutDown;\n    animation-name: bounceOutDown;\n}\n\n@-webkit-keyframes bounceOutLeft {\n    0% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    20% {\n        opacity: 1;\n        -webkit-transform: translateX(20px);\n        transform: translateX(20px);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n}\n\n@keyframes bounceOutLeft {\n    0% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    20% {\n        opacity: 1;\n        -webkit-transform: translateX(20px);\n        -ms-transform: translateX(20px);\n        transform: translateX(20px);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        -ms-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n}\n\n.bounceOutLeft {\n    -webkit-animation-name: bounceOutLeft;\n    animation-name: bounceOutLeft;\n}\n\n@-webkit-keyframes bounceOutRight {\n    0% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    20% {\n        opacity: 1;\n        -webkit-transform: translateX(-20px);\n        transform: translateX(-20px);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n}\n\n@keyframes bounceOutRight {\n    0% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    20% {\n        opacity: 1;\n        -webkit-transform: translateX(-20px);\n        -ms-transform: translateX(-20px);\n        transform: translateX(-20px);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        -ms-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n}\n\n.bounceOutRight {\n    -webkit-animation-name: bounceOutRight;\n    animation-name: bounceOutRight;\n}\n\n@-webkit-keyframes bounceOutUp {\n    0% {\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    20% {\n        opacity: 1;\n        -webkit-transform: translateY(20px);\n        transform: translateY(20px);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n}\n\n@keyframes bounceOutUp {\n    0% {\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    20% {\n        opacity: 1;\n        -webkit-transform: translateY(20px);\n        -ms-transform: translateY(20px);\n        transform: translateY(20px);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        -ms-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n}\n\n.bounceOutUp {\n    -webkit-animation-name: bounceOutUp;\n    animation-name: bounceOutUp;\n}\n\n@-webkit-keyframes fadeIn {\n    0% {\n        opacity: 0;\n    }\n\n    100% {\n        opacity: 1;\n    }\n}\n\n@keyframes fadeIn {\n    0% {\n        opacity: 0;\n    }\n\n    100% {\n        opacity: 1;\n    }\n}\n\n.fadeIn {\n    -webkit-animation-name: fadeIn;\n    animation-name: fadeIn;\n}\n\n@-webkit-keyframes fadeInDown {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(-20px);\n        transform: translateY(-20px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n@keyframes fadeInDown {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(-20px);\n        -ms-transform: translateY(-20px);\n        transform: translateY(-20px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n.fadeInDown {\n    -webkit-animation-name: fadeInDown;\n    animation-name: fadeInDown;\n}\n\n@-webkit-keyframes fadeInDownBig {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n@keyframes fadeInDownBig {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        -ms-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n.fadeInDownBig {\n    -webkit-animation-name: fadeInDownBig;\n    animation-name: fadeInDownBig;\n}\n\n@-webkit-keyframes fadeInLeft {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-20px);\n        transform: translateX(-20px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n@keyframes fadeInLeft {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-20px);\n        -ms-transform: translateX(-20px);\n        transform: translateX(-20px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n.fadeInLeft {\n    -webkit-animation-name: fadeInLeft;\n    animation-name: fadeInLeft;\n}\n\n@-webkit-keyframes fadeInLeftBig {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n@keyframes fadeInLeftBig {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        -ms-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n.fadeInLeftBig {\n    -webkit-animation-name: fadeInLeftBig;\n    animation-name: fadeInLeftBig;\n}\n\n@-webkit-keyframes fadeInRight {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(20px);\n        transform: translateX(20px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n@keyframes fadeInRight {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(40px);\n        -ms-transform: translateX(40px);\n        transform: translateX(40px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n.fadeInRight {\n    -webkit-animation-name: fadeInRight;\n    animation-name: fadeInRight;\n}\n\n@-webkit-keyframes fadeInRightBig {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n@keyframes fadeInRightBig {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        -ms-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n.fadeInRightBig {\n    -webkit-animation-name: fadeInRightBig;\n    animation-name: fadeInRightBig;\n}\n\n@-webkit-keyframes fadeInUp {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(20px);\n        transform: translateY(20px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n@keyframes fadeInUp {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(20px);\n        -ms-transform: translateY(20px);\n        transform: translateY(20px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n.fadeInUp {\n    -webkit-animation-name: fadeInUp;\n    animation-name: fadeInUp;\n}\n\n@-webkit-keyframes fadeInUpBig {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n@keyframes fadeInUpBig {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        -ms-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n.fadeInUpBig {\n    -webkit-animation-name: fadeInUpBig;\n    animation-name: fadeInUpBig;\n}\n\n@-webkit-keyframes fadeOut {\n    0% {\n        opacity: 1;\n    }\n\n    100% {\n        opacity: 0;\n    }\n}\n\n@keyframes fadeOut {\n    0% {\n        opacity: 1;\n    }\n\n    100% {\n        opacity: 0;\n    }\n}\n\n.fadeOut {\n    -webkit-animation-name: fadeOut;\n    animation-name: fadeOut;\n}\n\n@-webkit-keyframes fadeOutDown {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(20px);\n        transform: translateY(20px);\n    }\n}\n\n@keyframes fadeOutDown {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(20px);\n        -ms-transform: translateY(20px);\n        transform: translateY(20px);\n    }\n}\n\n.fadeOutDown {\n    -webkit-animation-name: fadeOutDown;\n    animation-name: fadeOutDown;\n}\n\n@-webkit-keyframes fadeOutDownBig {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n}\n\n@keyframes fadeOutDownBig {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        -ms-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n}\n\n.fadeOutDownBig {\n    -webkit-animation-name: fadeOutDownBig;\n    animation-name: fadeOutDownBig;\n}\n\n@-webkit-keyframes fadeOutLeft {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(-20px);\n        transform: translateX(-20px);\n    }\n}\n\n@keyframes fadeOutLeft {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(-20px);\n        -ms-transform: translateX(-20px);\n        transform: translateX(-20px);\n    }\n}\n\n.fadeOutLeft {\n    -webkit-animation-name: fadeOutLeft;\n    animation-name: fadeOutLeft;\n}\n\n@-webkit-keyframes fadeOutLeftBig {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n}\n\n@keyframes fadeOutLeftBig {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        -ms-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n}\n\n.fadeOutLeftBig {\n    -webkit-animation-name: fadeOutLeftBig;\n    animation-name: fadeOutLeftBig;\n}\n\n@-webkit-keyframes fadeOutRight {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(20px);\n        transform: translateX(20px);\n    }\n}\n\n@keyframes fadeOutRight {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(20px);\n        -ms-transform: translateX(20px);\n        transform: translateX(20px);\n    }\n}\n\n.fadeOutRight {\n    -webkit-animation-name: fadeOutRight;\n    animation-name: fadeOutRight;\n}\n\n@-webkit-keyframes fadeOutRightBig {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n}\n\n@keyframes fadeOutRightBig {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        -ms-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n}\n\n.fadeOutRightBig {\n    -webkit-animation-name: fadeOutRightBig;\n    animation-name: fadeOutRightBig;\n}\n\n@-webkit-keyframes fadeOutUp {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(-20px);\n        transform: translateY(-20px);\n    }\n}\n\n@keyframes fadeOutUp {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(-20px);\n        -ms-transform: translateY(-20px);\n        transform: translateY(-20px);\n    }\n}\n\n.fadeOutUp {\n    -webkit-animation-name: fadeOutUp;\n    animation-name: fadeOutUp;\n}\n\n@-webkit-keyframes fadeOutUpBig {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n}\n\n@keyframes fadeOutUpBig {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        -ms-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n}\n\n.fadeOutUpBig {\n    -webkit-animation-name: fadeOutUpBig;\n    animation-name: fadeOutUpBig;\n}\n\n@-webkit-keyframes flip {\n    0% {\n        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);\n        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);\n        -webkit-animation-timing-function: ease-out;\n        animation-timing-function: ease-out;\n    }\n\n    40% {\n        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);\n        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);\n        -webkit-animation-timing-function: ease-out;\n        animation-timing-function: ease-out;\n    }\n\n    50% {\n        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n        -webkit-animation-timing-function: ease-in;\n        animation-timing-function: ease-in;\n    }\n\n    80% {\n        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);\n        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);\n        -webkit-animation-timing-function: ease-in;\n        animation-timing-function: ease-in;\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);\n        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);\n        -webkit-animation-timing-function: ease-in;\n        animation-timing-function: ease-in;\n    }\n}\n\n@keyframes flip {\n    0% {\n        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);\n        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);\n        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);\n        -webkit-animation-timing-function: ease-out;\n        animation-timing-function: ease-out;\n    }\n\n    40% {\n        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);\n        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);\n        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);\n        -webkit-animation-timing-function: ease-out;\n        animation-timing-function: ease-out;\n    }\n\n    50% {\n        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n        -webkit-animation-timing-function: ease-in;\n        animation-timing-function: ease-in;\n    }\n\n    80% {\n        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);\n        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);\n        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);\n        -webkit-animation-timing-function: ease-in;\n        animation-timing-function: ease-in;\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);\n        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);\n        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);\n        -webkit-animation-timing-function: ease-in;\n        animation-timing-function: ease-in;\n    }\n}\n\n.animated.flip {\n    -webkit-backface-visibility: visible;\n    -ms-backface-visibility: visible;\n    backface-visibility: visible;\n    -webkit-animation-name: flip;\n    animation-name: flip;\n}\n\n@-webkit-keyframes flipInX {\n    0% {\n        -webkit-transform: perspective(400px) rotateX(90deg);\n        transform: perspective(400px) rotateX(90deg);\n        opacity: 0;\n    }\n\n    40% {\n        -webkit-transform: perspective(400px) rotateX(-10deg);\n        transform: perspective(400px) rotateX(-10deg);\n    }\n\n    70% {\n        -webkit-transform: perspective(400px) rotateX(10deg);\n        transform: perspective(400px) rotateX(10deg);\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) rotateX(0deg);\n        transform: perspective(400px) rotateX(0deg);\n        opacity: 1;\n    }\n}\n\n@keyframes flipInX {\n    0% {\n        -webkit-transform: perspective(400px) rotateX(90deg);\n        -ms-transform: perspective(400px) rotateX(90deg);\n        transform: perspective(400px) rotateX(90deg);\n        opacity: 0;\n    }\n\n    40% {\n        -webkit-transform: perspective(400px) rotateX(-10deg);\n        -ms-transform: perspective(400px) rotateX(-10deg);\n        transform: perspective(400px) rotateX(-10deg);\n    }\n\n    70% {\n        -webkit-transform: perspective(400px) rotateX(10deg);\n        -ms-transform: perspective(400px) rotateX(10deg);\n        transform: perspective(400px) rotateX(10deg);\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) rotateX(0deg);\n        -ms-transform: perspective(400px) rotateX(0deg);\n        transform: perspective(400px) rotateX(0deg);\n        opacity: 1;\n    }\n}\n\n.flipInX {\n    -webkit-backface-visibility: visible !important;\n    -ms-backface-visibility: visible !important;\n    backface-visibility: visible !important;\n    -webkit-animation-name: flipInX;\n    animation-name: flipInX;\n}\n\n@-webkit-keyframes flipInY {\n    0% {\n        -webkit-transform: perspective(400px) rotateY(90deg);\n        transform: perspective(400px) rotateY(90deg);\n        opacity: 0;\n    }\n\n    40% {\n        -webkit-transform: perspective(400px) rotateY(-10deg);\n        transform: perspective(400px) rotateY(-10deg);\n    }\n\n    70% {\n        -webkit-transform: perspective(400px) rotateY(10deg);\n        transform: perspective(400px) rotateY(10deg);\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) rotateY(0deg);\n        transform: perspective(400px) rotateY(0deg);\n        opacity: 1;\n    }\n}\n\n@keyframes flipInY {\n    0% {\n        -webkit-transform: perspective(400px) rotateY(90deg);\n        -ms-transform: perspective(400px) rotateY(90deg);\n        transform: perspective(400px) rotateY(90deg);\n        opacity: 0;\n    }\n\n    40% {\n        -webkit-transform: perspective(400px) rotateY(-10deg);\n        -ms-transform: perspective(400px) rotateY(-10deg);\n        transform: perspective(400px) rotateY(-10deg);\n    }\n\n    70% {\n        -webkit-transform: perspective(400px) rotateY(10deg);\n        -ms-transform: perspective(400px) rotateY(10deg);\n        transform: perspective(400px) rotateY(10deg);\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) rotateY(0deg);\n        -ms-transform: perspective(400px) rotateY(0deg);\n        transform: perspective(400px) rotateY(0deg);\n        opacity: 1;\n    }\n}\n\n.flipInY {\n    -webkit-backface-visibility: visible !important;\n    -ms-backface-visibility: visible !important;\n    backface-visibility: visible !important;\n    -webkit-animation-name: flipInY;\n    animation-name: flipInY;\n}\n\n@-webkit-keyframes flipOutX {\n    0% {\n        -webkit-transform: perspective(400px) rotateX(0deg);\n        transform: perspective(400px) rotateX(0deg);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) rotateX(90deg);\n        transform: perspective(400px) rotateX(90deg);\n        opacity: 0;\n    }\n}\n\n@keyframes flipOutX {\n    0% {\n        -webkit-transform: perspective(400px) rotateX(0deg);\n        -ms-transform: perspective(400px) rotateX(0deg);\n        transform: perspective(400px) rotateX(0deg);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) rotateX(90deg);\n        -ms-transform: perspective(400px) rotateX(90deg);\n        transform: perspective(400px) rotateX(90deg);\n        opacity: 0;\n    }\n}\n\n.flipOutX {\n    -webkit-animation-name: flipOutX;\n    animation-name: flipOutX;\n    -webkit-backface-visibility: visible !important;\n    -ms-backface-visibility: visible !important;\n    backface-visibility: visible !important;\n}\n\n@-webkit-keyframes flipOutY {\n    0% {\n        -webkit-transform: perspective(400px) rotateY(0deg);\n        transform: perspective(400px) rotateY(0deg);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) rotateY(90deg);\n        transform: perspective(400px) rotateY(90deg);\n        opacity: 0;\n    }\n}\n\n@keyframes flipOutY {\n    0% {\n        -webkit-transform: perspective(400px) rotateY(0deg);\n        -ms-transform: perspective(400px) rotateY(0deg);\n        transform: perspective(400px) rotateY(0deg);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: perspective(400px) rotateY(90deg);\n        -ms-transform: perspective(400px) rotateY(90deg);\n        transform: perspective(400px) rotateY(90deg);\n        opacity: 0;\n    }\n}\n\n.flipOutY {\n    -webkit-backface-visibility: visible !important;\n    -ms-backface-visibility: visible !important;\n    backface-visibility: visible !important;\n    -webkit-animation-name: flipOutY;\n    animation-name: flipOutY;\n}\n\n@-webkit-keyframes lightSpeedIn {\n    0% {\n        -webkit-transform: translateX(100%) skewX(-30deg);\n        transform: translateX(100%) skewX(-30deg);\n        opacity: 0;\n    }\n\n    60% {\n        -webkit-transform: translateX(-20%) skewX(30deg);\n        transform: translateX(-20%) skewX(30deg);\n        opacity: 1;\n    }\n\n    80% {\n        -webkit-transform: translateX(0%) skewX(-15deg);\n        transform: translateX(0%) skewX(-15deg);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: translateX(0%) skewX(0deg);\n        transform: translateX(0%) skewX(0deg);\n        opacity: 1;\n    }\n}\n\n@keyframes lightSpeedIn {\n    0% {\n        -webkit-transform: translateX(100%) skewX(-30deg);\n        -ms-transform: translateX(100%) skewX(-30deg);\n        transform: translateX(100%) skewX(-30deg);\n        opacity: 0;\n    }\n\n    60% {\n        -webkit-transform: translateX(-20%) skewX(30deg);\n        -ms-transform: translateX(-20%) skewX(30deg);\n        transform: translateX(-20%) skewX(30deg);\n        opacity: 1;\n    }\n\n    80% {\n        -webkit-transform: translateX(0%) skewX(-15deg);\n        -ms-transform: translateX(0%) skewX(-15deg);\n        transform: translateX(0%) skewX(-15deg);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: translateX(0%) skewX(0deg);\n        -ms-transform: translateX(0%) skewX(0deg);\n        transform: translateX(0%) skewX(0deg);\n        opacity: 1;\n    }\n}\n\n.lightSpeedIn {\n    -webkit-animation-name: lightSpeedIn;\n    animation-name: lightSpeedIn;\n    -webkit-animation-timing-function: ease-out;\n    animation-timing-function: ease-out;\n}\n\n@-webkit-keyframes lightSpeedOut {\n    0% {\n        -webkit-transform: translateX(0%) skewX(0deg);\n        transform: translateX(0%) skewX(0deg);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: translateX(100%) skewX(-30deg);\n        transform: translateX(100%) skewX(-30deg);\n        opacity: 0;\n    }\n}\n\n@keyframes lightSpeedOut {\n    0% {\n        -webkit-transform: translateX(0%) skewX(0deg);\n        -ms-transform: translateX(0%) skewX(0deg);\n        transform: translateX(0%) skewX(0deg);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: translateX(100%) skewX(-30deg);\n        -ms-transform: translateX(100%) skewX(-30deg);\n        transform: translateX(100%) skewX(-30deg);\n        opacity: 0;\n    }\n}\n\n.lightSpeedOut {\n    -webkit-animation-name: lightSpeedOut;\n    animation-name: lightSpeedOut;\n    -webkit-animation-timing-function: ease-in;\n    animation-timing-function: ease-in;\n}\n\n@-webkit-keyframes rotateIn {\n    0% {\n        -webkit-transform-origin: center center;\n        transform-origin: center center;\n        -webkit-transform: rotate(-200deg);\n        transform: rotate(-200deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: center center;\n        transform-origin: center center;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n@keyframes rotateIn {\n    0% {\n        -webkit-transform-origin: center center;\n        -ms-transform-origin: center center;\n        transform-origin: center center;\n        -webkit-transform: rotate(-200deg);\n        -ms-transform: rotate(-200deg);\n        transform: rotate(-200deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: center center;\n        -ms-transform-origin: center center;\n        transform-origin: center center;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n.rotateIn {\n    -webkit-animation-name: rotateIn;\n    animation-name: rotateIn;\n}\n\n@-webkit-keyframes rotateInDownLeft {\n    0% {\n        -webkit-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(-90deg);\n        transform: rotate(-90deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n@keyframes rotateInDownLeft {\n    0% {\n        -webkit-transform-origin: left bottom;\n        -ms-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(-90deg);\n        -ms-transform: rotate(-90deg);\n        transform: rotate(-90deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: left bottom;\n        -ms-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n.rotateInDownLeft {\n    -webkit-animation-name: rotateInDownLeft;\n    animation-name: rotateInDownLeft;\n}\n\n@-webkit-keyframes rotateInDownRight {\n    0% {\n        -webkit-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(90deg);\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n@keyframes rotateInDownRight {\n    0% {\n        -webkit-transform-origin: right bottom;\n        -ms-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(90deg);\n        -ms-transform: rotate(90deg);\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: right bottom;\n        -ms-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n.rotateInDownRight {\n    -webkit-animation-name: rotateInDownRight;\n    animation-name: rotateInDownRight;\n}\n\n@-webkit-keyframes rotateInUpLeft {\n    0% {\n        -webkit-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(90deg);\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n@keyframes rotateInUpLeft {\n    0% {\n        -webkit-transform-origin: left bottom;\n        -ms-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(90deg);\n        -ms-transform: rotate(90deg);\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: left bottom;\n        -ms-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n.rotateInUpLeft {\n    -webkit-animation-name: rotateInUpLeft;\n    animation-name: rotateInUpLeft;\n}\n\n@-webkit-keyframes rotateInUpRight {\n    0% {\n        -webkit-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(-90deg);\n        transform: rotate(-90deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n@keyframes rotateInUpRight {\n    0% {\n        -webkit-transform-origin: right bottom;\n        -ms-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(-90deg);\n        -ms-transform: rotate(-90deg);\n        transform: rotate(-90deg);\n        opacity: 0;\n    }\n\n    100% {\n        -webkit-transform-origin: right bottom;\n        -ms-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n}\n\n.rotateInUpRight {\n    -webkit-animation-name: rotateInUpRight;\n    animation-name: rotateInUpRight;\n}\n\n@-webkit-keyframes rotateOut {\n    0% {\n        -webkit-transform-origin: center center;\n        transform-origin: center center;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: center center;\n        transform-origin: center center;\n        -webkit-transform: rotate(200deg);\n        transform: rotate(200deg);\n        opacity: 0;\n    }\n}\n\n@keyframes rotateOut {\n    0% {\n        -webkit-transform-origin: center center;\n        -ms-transform-origin: center center;\n        transform-origin: center center;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: center center;\n        -ms-transform-origin: center center;\n        transform-origin: center center;\n        -webkit-transform: rotate(200deg);\n        -ms-transform: rotate(200deg);\n        transform: rotate(200deg);\n        opacity: 0;\n    }\n}\n\n.rotateOut {\n    -webkit-animation-name: rotateOut;\n    animation-name: rotateOut;\n}\n\n@-webkit-keyframes rotateOutDownLeft {\n    0% {\n        -webkit-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(90deg);\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n}\n\n@keyframes rotateOutDownLeft {\n    0% {\n        -webkit-transform-origin: left bottom;\n        -ms-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: left bottom;\n        -ms-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(90deg);\n        -ms-transform: rotate(90deg);\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n}\n\n.rotateOutDownLeft {\n    -webkit-animation-name: rotateOutDownLeft;\n    animation-name: rotateOutDownLeft;\n}\n\n@-webkit-keyframes rotateOutDownRight {\n    0% {\n        -webkit-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(-90deg);\n        transform: rotate(-90deg);\n        opacity: 0;\n    }\n}\n\n@keyframes rotateOutDownRight {\n    0% {\n        -webkit-transform-origin: right bottom;\n        -ms-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: right bottom;\n        -ms-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(-90deg);\n        -ms-transform: rotate(-90deg);\n        transform: rotate(-90deg);\n        opacity: 0;\n    }\n}\n\n.rotateOutDownRight {\n    -webkit-animation-name: rotateOutDownRight;\n    animation-name: rotateOutDownRight;\n}\n\n@-webkit-keyframes rotateOutUpLeft {\n    0% {\n        -webkit-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(-90deg);\n        transform: rotate(-90deg);\n        opacity: 0;\n    }\n}\n\n@keyframes rotateOutUpLeft {\n    0% {\n        -webkit-transform-origin: left bottom;\n        -ms-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: left bottom;\n        -ms-transform-origin: left bottom;\n        transform-origin: left bottom;\n        -webkit-transform: rotate(-90deg);\n        -ms-transform: rotate(-90deg);\n        transform: rotate(-90deg);\n        opacity: 0;\n    }\n}\n\n.rotateOutUpLeft {\n    -webkit-animation-name: rotateOutUpLeft;\n    animation-name: rotateOutUpLeft;\n}\n\n@-webkit-keyframes rotateOutUpRight {\n    0% {\n        -webkit-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(90deg);\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n}\n\n@keyframes rotateOutUpRight {\n    0% {\n        -webkit-transform-origin: right bottom;\n        -ms-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform-origin: right bottom;\n        -ms-transform-origin: right bottom;\n        transform-origin: right bottom;\n        -webkit-transform: rotate(90deg);\n        -ms-transform: rotate(90deg);\n        transform: rotate(90deg);\n        opacity: 0;\n    }\n}\n\n.rotateOutUpRight {\n    -webkit-animation-name: rotateOutUpRight;\n    animation-name: rotateOutUpRight;\n}\n\n@-webkit-keyframes slideInDown {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n\n    100% {\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n@keyframes slideInDown {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        -ms-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n\n    100% {\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n}\n\n.slideInDown {\n    -webkit-animation-name: slideInDown;\n    animation-name: slideInDown;\n}\n\n@-webkit-keyframes slideInLeft {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n\n    100% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n@keyframes slideInLeft {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        -ms-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n\n    100% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n.slideInLeft {\n    -webkit-animation-name: slideInLeft;\n    animation-name: slideInLeft;\n}\n\n@-webkit-keyframes slideInRight {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n\n    100% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n@keyframes slideInRight {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        -ms-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n\n    100% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n}\n\n.slideInRight {\n    -webkit-animation-name: slideInRight;\n    animation-name: slideInRight;\n}\n\n@-webkit-keyframes slideOutLeft {\n    0% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n}\n\n@keyframes slideOutLeft {\n    0% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(-2000px);\n        -ms-transform: translateX(-2000px);\n        transform: translateX(-2000px);\n    }\n}\n\n.slideOutLeft {\n    -webkit-animation-name: slideOutLeft;\n    animation-name: slideOutLeft;\n}\n\n@-webkit-keyframes slideOutRight {\n    0% {\n        -webkit-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n}\n\n@keyframes slideOutRight {\n    0% {\n        -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n        transform: translateX(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(2000px);\n        -ms-transform: translateX(2000px);\n        transform: translateX(2000px);\n    }\n}\n\n.slideOutRight {\n    -webkit-animation-name: slideOutRight;\n    animation-name: slideOutRight;\n}\n\n@-webkit-keyframes slideOutUp {\n    0% {\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n}\n\n@keyframes slideOutUp {\n    0% {\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(-2000px);\n        -ms-transform: translateY(-2000px);\n        transform: translateY(-2000px);\n    }\n}\n\n.slideOutUp {\n    -webkit-animation-name: slideOutUp;\n    animation-name: slideOutUp;\n}\n\n@-webkit-keyframes slideOutDown {\n    0% {\n        -webkit-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n}\n\n@keyframes slideOutDown {\n    0% {\n        -webkit-transform: translateY(0);\n        -ms-transform: translateY(0);\n        transform: translateY(0);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateY(2000px);\n        -ms-transform: translateY(2000px);\n        transform: translateY(2000px);\n    }\n}\n\n.slideOutDown {\n    -webkit-animation-name: slideOutDown;\n    animation-name: slideOutDown;\n}\n\n@-webkit-keyframes hinge {\n    0% {\n        -webkit-transform: rotate(0);\n        transform: rotate(0);\n        -webkit-transform-origin: top left;\n        transform-origin: top left;\n        -webkit-animation-timing-function: ease-in-out;\n        animation-timing-function: ease-in-out;\n    }\n\n    20%, 60% {\n        -webkit-transform: rotate(80deg);\n        transform: rotate(80deg);\n        -webkit-transform-origin: top left;\n        transform-origin: top left;\n        -webkit-animation-timing-function: ease-in-out;\n        animation-timing-function: ease-in-out;\n    }\n\n    40% {\n        -webkit-transform: rotate(60deg);\n        transform: rotate(60deg);\n        -webkit-transform-origin: top left;\n        transform-origin: top left;\n        -webkit-animation-timing-function: ease-in-out;\n        animation-timing-function: ease-in-out;\n    }\n\n    80% {\n        -webkit-transform: rotate(60deg) translateY(0);\n        transform: rotate(60deg) translateY(0);\n        -webkit-transform-origin: top left;\n        transform-origin: top left;\n        -webkit-animation-timing-function: ease-in-out;\n        animation-timing-function: ease-in-out;\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: translateY(700px);\n        transform: translateY(700px);\n        opacity: 0;\n    }\n}\n\n@keyframes hinge {\n    0% {\n        -webkit-transform: rotate(0);\n        -ms-transform: rotate(0);\n        transform: rotate(0);\n        -webkit-transform-origin: top left;\n        -ms-transform-origin: top left;\n        transform-origin: top left;\n        -webkit-animation-timing-function: ease-in-out;\n        animation-timing-function: ease-in-out;\n    }\n\n    20%, 60% {\n        -webkit-transform: rotate(80deg);\n        -ms-transform: rotate(80deg);\n        transform: rotate(80deg);\n        -webkit-transform-origin: top left;\n        -ms-transform-origin: top left;\n        transform-origin: top left;\n        -webkit-animation-timing-function: ease-in-out;\n        animation-timing-function: ease-in-out;\n    }\n\n    40% {\n        -webkit-transform: rotate(60deg);\n        -ms-transform: rotate(60deg);\n        transform: rotate(60deg);\n        -webkit-transform-origin: top left;\n        -ms-transform-origin: top left;\n        transform-origin: top left;\n        -webkit-animation-timing-function: ease-in-out;\n        animation-timing-function: ease-in-out;\n    }\n\n    80% {\n        -webkit-transform: rotate(60deg) translateY(0);\n        -ms-transform: rotate(60deg) translateY(0);\n        transform: rotate(60deg) translateY(0);\n        -webkit-transform-origin: top left;\n        -ms-transform-origin: top left;\n        transform-origin: top left;\n        -webkit-animation-timing-function: ease-in-out;\n        animation-timing-function: ease-in-out;\n        opacity: 1;\n    }\n\n    100% {\n        -webkit-transform: translateY(700px);\n        -ms-transform: translateY(700px);\n        transform: translateY(700px);\n        opacity: 0;\n    }\n}\n\n.hinge {\n    -webkit-animation-name: hinge;\n    animation-name: hinge;\n}\n\n/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */\n\n@-webkit-keyframes rollIn {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-100%) rotate(-120deg);\n        transform: translateX(-100%) rotate(-120deg);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0px) rotate(0deg);\n        transform: translateX(0px) rotate(0deg);\n    }\n}\n\n@keyframes rollIn {\n    0% {\n        opacity: 0;\n        -webkit-transform: translateX(-100%) rotate(-120deg);\n        -ms-transform: translateX(-100%) rotate(-120deg);\n        transform: translateX(-100%) rotate(-120deg);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: translateX(0px) rotate(0deg);\n        -ms-transform: translateX(0px) rotate(0deg);\n        transform: translateX(0px) rotate(0deg);\n    }\n}\n\n.rollIn {\n    -webkit-animation-name: rollIn;\n    animation-name: rollIn;\n}\n\n/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */\n\n@-webkit-keyframes rollOut {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0px) rotate(0deg);\n        transform: translateX(0px) rotate(0deg);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(100%) rotate(120deg);\n        transform: translateX(100%) rotate(120deg);\n    }\n}\n\n@keyframes rollOut {\n    0% {\n        opacity: 1;\n        -webkit-transform: translateX(0px) rotate(0deg);\n        -ms-transform: translateX(0px) rotate(0deg);\n        transform: translateX(0px) rotate(0deg);\n    }\n\n    100% {\n        opacity: 0;\n        -webkit-transform: translateX(100%) rotate(120deg);\n        -ms-transform: translateX(100%) rotate(120deg);\n        transform: translateX(100%) rotate(120deg);\n    }\n}\n\n.rollOut {\n    -webkit-animation-name: rollOut;\n    animation-name: rollOut;\n}"
  },
  {
    "path": "public/admin/css/bootstrap.css",
    "content": "/*!\n * Bootstrap v3.3.0 (http://getbootstrap.com)\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\nhtml {\n  font-family: sans-serif;\n  -webkit-text-size-adjust: 100%;\n      -ms-text-size-adjust: 100%;\n}\nbody {\n  margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n  vertical-align: baseline;\n}\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n[hidden],\ntemplate {\n  display: none;\n}\na {\n  background-color: transparent;\n}\na:active,\na:hover {\n  outline: 0;\n}\nabbr[title] {\n  border-bottom: 1px dotted;\n}\nb,\nstrong {\n  font-weight: bold;\n}\ndfn {\n  font-style: italic;\n}\nh1 {\n  margin: .67em 0;\n  font-size: 2em;\n}\nmark {\n  color: #000;\n  background: #ff0;\n}\nsmall {\n  font-size: 80%;\n}\nsub,\nsup {\n  position: relative;\n  font-size: 75%;\n  line-height: 0;\n  vertical-align: baseline;\n}\nsup {\n  top: -.5em;\n}\nsub {\n  bottom: -.25em;\n}\nimg {\n  border: 0;\n}\nsvg:not(:root) {\n  overflow: hidden;\n}\nfigure {\n  margin: 1em 40px;\n}\nhr {\n  height: 0;\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n}\npre {\n  overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n  font: inherit;\n  color: inherit;\n}\nbutton {\n  overflow: visible;\n}\nbutton,\nselect {\n  text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  padding: 0;\n  border: 0;\n}\ninput {\n  line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n  padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n  -webkit-appearance: textfield;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\nfieldset {\n  padding: .35em .625em .75em;\n  margin: 0 2px;\n  border: 1px solid #c0c0c0;\n}\nlegend {\n  padding: 0;\n  border: 0;\n}\ntextarea {\n  overflow: auto;\n}\noptgroup {\n  font-weight: bold;\n}\ntable {\n  border-spacing: 0;\n  border-collapse: collapse;\n}\ntd,\nth {\n  padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n  *,\n  *:before,\n  *:after {\n    color: #000 !important;\n    text-shadow: none !important;\n    background: transparent !important;\n    -webkit-box-shadow: none !important;\n            box-shadow: none !important;\n  }\n  a,\n  a:visited {\n    text-decoration: underline;\n  }\n  a[href]:after {\n    content: \" (\" attr(href) \")\";\n  }\n  abbr[title]:after {\n    content: \" (\" attr(title) \")\";\n  }\n  a[href^=\"#\"]:after,\n  a[href^=\"javascript:\"]:after {\n    content: \"\";\n  }\n  pre,\n  blockquote {\n    border: 1px solid #999;\n\n    page-break-inside: avoid;\n  }\n  thead {\n    display: table-header-group;\n  }\n  tr,\n  img {\n    page-break-inside: avoid;\n  }\n  img {\n    max-width: 100% !important;\n  }\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3;\n  }\n  h2,\n  h3 {\n    page-break-after: avoid;\n  }\n  select {\n    background: #fff !important;\n  }\n  .navbar {\n    display: none;\n  }\n  .btn > .caret,\n  .dropup > .btn > .caret {\n    border-top-color: #000 !important;\n  }\n  .label {\n    border: 1px solid #000;\n  }\n  .table {\n    border-collapse: collapse !important;\n  }\n  .table td,\n  .table th {\n    background-color: #fff !important;\n  }\n  .table-bordered th,\n  .table-bordered td {\n    border: 1px solid #ddd !important;\n  }\n}\n@font-face {\n  font-family: 'Glyphicons Halflings';\n\n  src: url('../fonts/glyphicons-halflings-regular.eot');\n  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n  content: \"\\2a\";\n}\n.glyphicon-plus:before {\n  content: \"\\2b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n  content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n  content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n  content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n  content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n  content: \"\\270f\";\n}\n.glyphicon-glass:before {\n  content: \"\\e001\";\n}\n.glyphicon-music:before {\n  content: \"\\e002\";\n}\n.glyphicon-search:before {\n  content: \"\\e003\";\n}\n.glyphicon-heart:before {\n  content: \"\\e005\";\n}\n.glyphicon-star:before {\n  content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n  content: \"\\e007\";\n}\n.glyphicon-user:before {\n  content: \"\\e008\";\n}\n.glyphicon-film:before {\n  content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n  content: \"\\e010\";\n}\n.glyphicon-th:before {\n  content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n  content: \"\\e012\";\n}\n.glyphicon-ok:before {\n  content: \"\\e013\";\n}\n.glyphicon-remove:before {\n  content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n  content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n  content: \"\\e016\";\n}\n.glyphicon-off:before {\n  content: \"\\e017\";\n}\n.glyphicon-signal:before {\n  content: \"\\e018\";\n}\n.glyphicon-cog:before {\n  content: \"\\e019\";\n}\n.glyphicon-trash:before {\n  content: \"\\e020\";\n}\n.glyphicon-home:before {\n  content: \"\\e021\";\n}\n.glyphicon-file:before {\n  content: \"\\e022\";\n}\n.glyphicon-time:before {\n  content: \"\\e023\";\n}\n.glyphicon-road:before {\n  content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n  content: \"\\e025\";\n}\n.glyphicon-download:before {\n  content: \"\\e026\";\n}\n.glyphicon-upload:before {\n  content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n  content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n  content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n  content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n  content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n  content: \"\\e032\";\n}\n.glyphicon-lock:before {\n  content: \"\\e033\";\n}\n.glyphicon-flag:before {\n  content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n  content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n  content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n  content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n  content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n  content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n  content: \"\\e040\";\n}\n.glyphicon-tag:before {\n  content: \"\\e041\";\n}\n.glyphicon-tags:before {\n  content: \"\\e042\";\n}\n.glyphicon-book:before {\n  content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n  content: \"\\e044\";\n}\n.glyphicon-print:before {\n  content: \"\\e045\";\n}\n.glyphicon-camera:before {\n  content: \"\\e046\";\n}\n.glyphicon-font:before {\n  content: \"\\e047\";\n}\n.glyphicon-bold:before {\n  content: \"\\e048\";\n}\n.glyphicon-italic:before {\n  content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n  content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n  content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n  content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n  content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n  content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n  content: \"\\e055\";\n}\n.glyphicon-list:before {\n  content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n  content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n  content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n  content: \"\\e059\";\n}\n.glyphicon-picture:before {\n  content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n  content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n  content: \"\\e063\";\n}\n.glyphicon-tint:before {\n  content: \"\\e064\";\n}\n.glyphicon-edit:before {\n  content: \"\\e065\";\n}\n.glyphicon-share:before {\n  content: \"\\e066\";\n}\n.glyphicon-check:before {\n  content: \"\\e067\";\n}\n.glyphicon-move:before {\n  content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n  content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n  content: \"\\e070\";\n}\n.glyphicon-backward:before {\n  content: \"\\e071\";\n}\n.glyphicon-play:before {\n  content: \"\\e072\";\n}\n.glyphicon-pause:before {\n  content: \"\\e073\";\n}\n.glyphicon-stop:before {\n  content: \"\\e074\";\n}\n.glyphicon-forward:before {\n  content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n  content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n  content: \"\\e077\";\n}\n.glyphicon-eject:before {\n  content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n  content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n  content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n  content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n  content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n  content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n  content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n  content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n  content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n  content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n  content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n  content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n  content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n  content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n  content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n  content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n  content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n  content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n  content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n  content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n  content: \"\\e101\";\n}\n.glyphicon-gift:before {\n  content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n  content: \"\\e103\";\n}\n.glyphicon-fire:before {\n  content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n  content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n  content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n  content: \"\\e107\";\n}\n.glyphicon-plane:before {\n  content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n  content: \"\\e109\";\n}\n.glyphicon-random:before {\n  content: \"\\e110\";\n}\n.glyphicon-comment:before {\n  content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n  content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n  content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n  content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n  content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n  content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n  content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n  content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n  content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n  content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n  content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n  content: \"\\e122\";\n}\n.glyphicon-bell:before {\n  content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n  content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n  content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n  content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n  content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n  content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n  content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n  content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n  content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n  content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n  content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n  content: \"\\e134\";\n}\n.glyphicon-globe:before {\n  content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n  content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n  content: \"\\e137\";\n}\n.glyphicon-filter:before {\n  content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n  content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n  content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n  content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n  content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n  content: \"\\e143\";\n}\n.glyphicon-link:before {\n  content: \"\\e144\";\n}\n.glyphicon-phone:before {\n  content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n  content: \"\\e146\";\n}\n.glyphicon-usd:before {\n  content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n  content: \"\\e149\";\n}\n.glyphicon-sort:before {\n  content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n  content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n  content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n  content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n  content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n  content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n  content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n  content: \"\\e157\";\n}\n.glyphicon-expand:before {\n  content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n  content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n  content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n  content: \"\\e161\";\n}\n.glyphicon-flash:before {\n  content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n  content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n  content: \"\\e164\";\n}\n.glyphicon-record:before {\n  content: \"\\e165\";\n}\n.glyphicon-save:before {\n  content: \"\\e166\";\n}\n.glyphicon-open:before {\n  content: \"\\e167\";\n}\n.glyphicon-saved:before {\n  content: \"\\e168\";\n}\n.glyphicon-import:before {\n  content: \"\\e169\";\n}\n.glyphicon-export:before {\n  content: \"\\e170\";\n}\n.glyphicon-send:before {\n  content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n  content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n  content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n  content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n  content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n  content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n  content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n  content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n  content: \"\\e179\";\n}\n.glyphicon-header:before {\n  content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n  content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n  content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n  content: \"\\e183\";\n}\n.glyphicon-tower:before {\n  content: \"\\e184\";\n}\n.glyphicon-stats:before {\n  content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n  content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n  content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n  content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n  content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n  content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n  content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n  content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n  content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n  content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n  content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n  content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n  content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n  content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n  content: \"\\e200\";\n}\n* {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n*:before,\n*:after {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\nhtml {\n  font-size: 10px;\n\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #333;\n  background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\na {\n  color: #428bca;\n  text-decoration: none;\n}\na:hover,\na:focus {\n  color: #2a6496;\n  text-decoration: underline;\n}\na:focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\nfigure {\n  margin: 0;\n}\nimg {\n  vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  display: block;\n  max-width: 100%;\n  height: auto;\n}\n.img-rounded {\n  border-radius: 6px;\n}\n.img-thumbnail {\n  display: inline-block;\n  max-width: 100%;\n  height: auto;\n  padding: 4px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n  -webkit-transition: all .2s ease-in-out;\n       -o-transition: all .2s ease-in-out;\n          transition: all .2s ease-in-out;\n}\n.img-circle {\n  border-radius: 50%;\n}\nhr {\n  margin-top: 20px;\n  margin-bottom: 20px;\n  border: 0;\n  border-top: 1px solid #eee;\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n  font-family: inherit;\n  font-weight: 500;\n  line-height: 1.1;\n  color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n  font-weight: normal;\n  line-height: 1;\n  color: #777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n  margin-top: 20px;\n  margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n  font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n  font-size: 75%;\n}\nh1,\n.h1 {\n  font-size: 36px;\n}\nh2,\n.h2 {\n  font-size: 30px;\n}\nh3,\n.h3 {\n  font-size: 24px;\n}\nh4,\n.h4 {\n  font-size: 18px;\n}\nh5,\n.h5 {\n  font-size: 14px;\n}\nh6,\n.h6 {\n  font-size: 12px;\n}\np {\n  margin: 0 0 10px;\n}\n.lead {\n  margin-bottom: 20px;\n  font-size: 16px;\n  font-weight: 300;\n  line-height: 1.4;\n}\n@media (min-width: 768px) {\n  .lead {\n    font-size: 21px;\n  }\n}\nsmall,\n.small {\n  font-size: 85%;\n}\nmark,\n.mark {\n  padding: .2em;\n  background-color: #fcf8e3;\n}\n.text-left {\n  text-align: left;\n}\n.text-right {\n  text-align: right;\n}\n.text-center {\n  text-align: center;\n}\n.text-justify {\n  text-align: justify;\n}\n.text-nowrap {\n  white-space: nowrap;\n}\n.text-lowercase {\n  text-transform: lowercase;\n}\n.text-uppercase {\n  text-transform: uppercase;\n}\n.text-capitalize {\n  text-transform: capitalize;\n}\n.text-muted {\n  color: #777;\n}\n.text-primary {\n  color: #428bca;\n}\na.text-primary:hover {\n  color: #3071a9;\n}\n.text-success {\n  color: #3c763d;\n}\na.text-success:hover {\n  color: #2b542c;\n}\n.text-info {\n  color: #31708f;\n}\na.text-info:hover {\n  color: #245269;\n}\n.text-warning {\n  color: #8a6d3b;\n}\na.text-warning:hover {\n  color: #66512c;\n}\n.text-danger {\n  color: #a94442;\n}\na.text-danger:hover {\n  color: #843534;\n}\n.bg-primary {\n  color: #fff;\n  background-color: #428bca;\n}\na.bg-primary:hover {\n  background-color: #3071a9;\n}\n.bg-success {\n  background-color: #dff0d8;\n}\na.bg-success:hover {\n  background-color: #c1e2b3;\n}\n.bg-info {\n  background-color: #d9edf7;\n}\na.bg-info:hover {\n  background-color: #afd9ee;\n}\n.bg-warning {\n  background-color: #fcf8e3;\n}\na.bg-warning:hover {\n  background-color: #f7ecb5;\n}\n.bg-danger {\n  background-color: #f2dede;\n}\na.bg-danger:hover {\n  background-color: #e4b9b9;\n}\n.page-header {\n  padding-bottom: 9px;\n  margin: 40px 0 20px;\n  border-bottom: 1px solid #eee;\n}\nul,\nol {\n  margin-top: 0;\n  margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n  margin-bottom: 0;\n}\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n.list-inline {\n  padding-left: 0;\n  margin-left: -5px;\n  list-style: none;\n}\n.list-inline > li {\n  display: inline-block;\n  padding-right: 5px;\n  padding-left: 5px;\n}\ndl {\n  margin-top: 0;\n  margin-bottom: 20px;\n}\ndt,\ndd {\n  line-height: 1.42857143;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .dl-horizontal dt {\n    float: left;\n    width: 160px;\n    overflow: hidden;\n    clear: left;\n    text-align: right;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n  }\n  .dl-horizontal dd {\n    margin-left: 180px;\n  }\n}\nabbr[title],\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted #777;\n}\n.initialism {\n  font-size: 90%;\n  text-transform: uppercase;\n}\nblockquote {\n  padding: 10px 20px;\n  margin: 0 0 20px;\n  font-size: 17.5px;\n  border-left: 5px solid #eee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n  margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n  display: block;\n  font-size: 80%;\n  line-height: 1.42857143;\n  color: #777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n  content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  text-align: right;\n  border-right: 5px solid #eee;\n  border-left: 0;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n  content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n  content: '\\00A0 \\2014';\n}\naddress {\n  margin-bottom: 20px;\n  font-style: normal;\n  line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  border-radius: 4px;\n}\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #fff;\n  background-color: #333;\n  border-radius: 3px;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n}\nkbd kbd {\n  padding: 0;\n  font-size: 100%;\n  font-weight: bold;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\npre {\n  display: block;\n  padding: 9.5px;\n  margin: 0 0 10px;\n  font-size: 13px;\n  line-height: 1.42857143;\n  color: #333;\n  word-break: break-all;\n  word-wrap: break-word;\n  background-color: #f5f5f5;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n}\npre code {\n  padding: 0;\n  font-size: inherit;\n  color: inherit;\n  white-space: pre-wrap;\n  background-color: transparent;\n  border-radius: 0;\n}\n.pre-scrollable {\n  max-height: 340px;\n  overflow-y: scroll;\n}\n.container {\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto;\n}\n@media (min-width: 768px) {\n  .container {\n    width: 750px;\n  }\n}\n@media (min-width: 992px) {\n  .container {\n    width: 970px;\n  }\n}\n@media (min-width: 1200px) {\n  .container {\n    width: 1170px;\n  }\n}\n.container-fluid {\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto;\n}\n.row {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n  position: relative;\n  min-height: 1px;\n  padding-right: 15px;\n  padding-left: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n  float: left;\n}\n.col-xs-12 {\n  width: 100%;\n}\n.col-xs-11 {\n  width: 91.66666667%;\n}\n.col-xs-10 {\n  width: 83.33333333%;\n}\n.col-xs-9 {\n  width: 75%;\n}\n.col-xs-8 {\n  width: 66.66666667%;\n}\n.col-xs-7 {\n  width: 58.33333333%;\n}\n.col-xs-6 {\n  width: 50%;\n}\n.col-xs-5 {\n  width: 41.66666667%;\n}\n.col-xs-4 {\n  width: 33.33333333%;\n}\n.col-xs-3 {\n  width: 25%;\n}\n.col-xs-2 {\n  width: 16.66666667%;\n}\n.col-xs-1 {\n  width: 8.33333333%;\n}\n.col-xs-pull-12 {\n  right: 100%;\n}\n.col-xs-pull-11 {\n  right: 91.66666667%;\n}\n.col-xs-pull-10 {\n  right: 83.33333333%;\n}\n.col-xs-pull-9 {\n  right: 75%;\n}\n.col-xs-pull-8 {\n  right: 66.66666667%;\n}\n.col-xs-pull-7 {\n  right: 58.33333333%;\n}\n.col-xs-pull-6 {\n  right: 50%;\n}\n.col-xs-pull-5 {\n  right: 41.66666667%;\n}\n.col-xs-pull-4 {\n  right: 33.33333333%;\n}\n.col-xs-pull-3 {\n  right: 25%;\n}\n.col-xs-pull-2 {\n  right: 16.66666667%;\n}\n.col-xs-pull-1 {\n  right: 8.33333333%;\n}\n.col-xs-pull-0 {\n  right: auto;\n}\n.col-xs-push-12 {\n  left: 100%;\n}\n.col-xs-push-11 {\n  left: 91.66666667%;\n}\n.col-xs-push-10 {\n  left: 83.33333333%;\n}\n.col-xs-push-9 {\n  left: 75%;\n}\n.col-xs-push-8 {\n  left: 66.66666667%;\n}\n.col-xs-push-7 {\n  left: 58.33333333%;\n}\n.col-xs-push-6 {\n  left: 50%;\n}\n.col-xs-push-5 {\n  left: 41.66666667%;\n}\n.col-xs-push-4 {\n  left: 33.33333333%;\n}\n.col-xs-push-3 {\n  left: 25%;\n}\n.col-xs-push-2 {\n  left: 16.66666667%;\n}\n.col-xs-push-1 {\n  left: 8.33333333%;\n}\n.col-xs-push-0 {\n  left: auto;\n}\n.col-xs-offset-12 {\n  margin-left: 100%;\n}\n.col-xs-offset-11 {\n  margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n  margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n  margin-left: 75%;\n}\n.col-xs-offset-8 {\n  margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n  margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n  margin-left: 50%;\n}\n.col-xs-offset-5 {\n  margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n  margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n  margin-left: 25%;\n}\n.col-xs-offset-2 {\n  margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n  margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n    float: left;\n  }\n  .col-sm-12 {\n    width: 100%;\n  }\n  .col-sm-11 {\n    width: 91.66666667%;\n  }\n  .col-sm-10 {\n    width: 83.33333333%;\n  }\n  .col-sm-9 {\n    width: 75%;\n  }\n  .col-sm-8 {\n    width: 66.66666667%;\n  }\n  .col-sm-7 {\n    width: 58.33333333%;\n  }\n  .col-sm-6 {\n    width: 50%;\n  }\n  .col-sm-5 {\n    width: 41.66666667%;\n  }\n  .col-sm-4 {\n    width: 33.33333333%;\n  }\n  .col-sm-3 {\n    width: 25%;\n  }\n  .col-sm-2 {\n    width: 16.66666667%;\n  }\n  .col-sm-1 {\n    width: 8.33333333%;\n  }\n  .col-sm-pull-12 {\n    right: 100%;\n  }\n  .col-sm-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-sm-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-sm-pull-9 {\n    right: 75%;\n  }\n  .col-sm-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-sm-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-sm-pull-6 {\n    right: 50%;\n  }\n  .col-sm-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-sm-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-sm-pull-3 {\n    right: 25%;\n  }\n  .col-sm-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-sm-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-sm-pull-0 {\n    right: auto;\n  }\n  .col-sm-push-12 {\n    left: 100%;\n  }\n  .col-sm-push-11 {\n    left: 91.66666667%;\n  }\n  .col-sm-push-10 {\n    left: 83.33333333%;\n  }\n  .col-sm-push-9 {\n    left: 75%;\n  }\n  .col-sm-push-8 {\n    left: 66.66666667%;\n  }\n  .col-sm-push-7 {\n    left: 58.33333333%;\n  }\n  .col-sm-push-6 {\n    left: 50%;\n  }\n  .col-sm-push-5 {\n    left: 41.66666667%;\n  }\n  .col-sm-push-4 {\n    left: 33.33333333%;\n  }\n  .col-sm-push-3 {\n    left: 25%;\n  }\n  .col-sm-push-2 {\n    left: 16.66666667%;\n  }\n  .col-sm-push-1 {\n    left: 8.33333333%;\n  }\n  .col-sm-push-0 {\n    left: auto;\n  }\n  .col-sm-offset-12 {\n    margin-left: 100%;\n  }\n  .col-sm-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-sm-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-sm-offset-9 {\n    margin-left: 75%;\n  }\n  .col-sm-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-sm-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-sm-offset-6 {\n    margin-left: 50%;\n  }\n  .col-sm-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-sm-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-sm-offset-3 {\n    margin-left: 25%;\n  }\n  .col-sm-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-sm-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-sm-offset-0 {\n    margin-left: 0;\n  }\n}\n@media (min-width: 992px) {\n  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n    float: left;\n  }\n  .col-md-12 {\n    width: 100%;\n  }\n  .col-md-11 {\n    width: 91.66666667%;\n  }\n  .col-md-10 {\n    width: 83.33333333%;\n  }\n  .col-md-9 {\n    width: 75%;\n  }\n  .col-md-8 {\n    width: 66.66666667%;\n  }\n  .col-md-7 {\n    width: 58.33333333%;\n  }\n  .col-md-6 {\n    width: 50%;\n  }\n  .col-md-5 {\n    width: 41.66666667%;\n  }\n  .col-md-4 {\n    width: 33.33333333%;\n  }\n  .col-md-3 {\n    width: 25%;\n  }\n  .col-md-2 {\n    width: 16.66666667%;\n  }\n  .col-md-1 {\n    width: 8.33333333%;\n  }\n  .col-md-pull-12 {\n    right: 100%;\n  }\n  .col-md-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-md-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-md-pull-9 {\n    right: 75%;\n  }\n  .col-md-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-md-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-md-pull-6 {\n    right: 50%;\n  }\n  .col-md-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-md-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-md-pull-3 {\n    right: 25%;\n  }\n  .col-md-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-md-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-md-pull-0 {\n    right: auto;\n  }\n  .col-md-push-12 {\n    left: 100%;\n  }\n  .col-md-push-11 {\n    left: 91.66666667%;\n  }\n  .col-md-push-10 {\n    left: 83.33333333%;\n  }\n  .col-md-push-9 {\n    left: 75%;\n  }\n  .col-md-push-8 {\n    left: 66.66666667%;\n  }\n  .col-md-push-7 {\n    left: 58.33333333%;\n  }\n  .col-md-push-6 {\n    left: 50%;\n  }\n  .col-md-push-5 {\n    left: 41.66666667%;\n  }\n  .col-md-push-4 {\n    left: 33.33333333%;\n  }\n  .col-md-push-3 {\n    left: 25%;\n  }\n  .col-md-push-2 {\n    left: 16.66666667%;\n  }\n  .col-md-push-1 {\n    left: 8.33333333%;\n  }\n  .col-md-push-0 {\n    left: auto;\n  }\n  .col-md-offset-12 {\n    margin-left: 100%;\n  }\n  .col-md-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-md-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-md-offset-9 {\n    margin-left: 75%;\n  }\n  .col-md-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-md-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-md-offset-6 {\n    margin-left: 50%;\n  }\n  .col-md-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-md-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-md-offset-3 {\n    margin-left: 25%;\n  }\n  .col-md-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-md-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-md-offset-0 {\n    margin-left: 0;\n  }\n}\n@media (min-width: 1200px) {\n  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n    float: left;\n  }\n  .col-lg-12 {\n    width: 100%;\n  }\n  .col-lg-11 {\n    width: 91.66666667%;\n  }\n  .col-lg-10 {\n    width: 83.33333333%;\n  }\n  .col-lg-9 {\n    width: 75%;\n  }\n  .col-lg-8 {\n    width: 66.66666667%;\n  }\n  .col-lg-7 {\n    width: 58.33333333%;\n  }\n  .col-lg-6 {\n    width: 50%;\n  }\n  .col-lg-5 {\n    width: 41.66666667%;\n  }\n  .col-lg-4 {\n    width: 33.33333333%;\n  }\n  .col-lg-3 {\n    width: 25%;\n  }\n  .col-lg-2 {\n    width: 16.66666667%;\n  }\n  .col-lg-1 {\n    width: 8.33333333%;\n  }\n  .col-lg-pull-12 {\n    right: 100%;\n  }\n  .col-lg-pull-11 {\n    right: 91.66666667%;\n  }\n  .col-lg-pull-10 {\n    right: 83.33333333%;\n  }\n  .col-lg-pull-9 {\n    right: 75%;\n  }\n  .col-lg-pull-8 {\n    right: 66.66666667%;\n  }\n  .col-lg-pull-7 {\n    right: 58.33333333%;\n  }\n  .col-lg-pull-6 {\n    right: 50%;\n  }\n  .col-lg-pull-5 {\n    right: 41.66666667%;\n  }\n  .col-lg-pull-4 {\n    right: 33.33333333%;\n  }\n  .col-lg-pull-3 {\n    right: 25%;\n  }\n  .col-lg-pull-2 {\n    right: 16.66666667%;\n  }\n  .col-lg-pull-1 {\n    right: 8.33333333%;\n  }\n  .col-lg-pull-0 {\n    right: auto;\n  }\n  .col-lg-push-12 {\n    left: 100%;\n  }\n  .col-lg-push-11 {\n    left: 91.66666667%;\n  }\n  .col-lg-push-10 {\n    left: 83.33333333%;\n  }\n  .col-lg-push-9 {\n    left: 75%;\n  }\n  .col-lg-push-8 {\n    left: 66.66666667%;\n  }\n  .col-lg-push-7 {\n    left: 58.33333333%;\n  }\n  .col-lg-push-6 {\n    left: 50%;\n  }\n  .col-lg-push-5 {\n    left: 41.66666667%;\n  }\n  .col-lg-push-4 {\n    left: 33.33333333%;\n  }\n  .col-lg-push-3 {\n    left: 25%;\n  }\n  .col-lg-push-2 {\n    left: 16.66666667%;\n  }\n  .col-lg-push-1 {\n    left: 8.33333333%;\n  }\n  .col-lg-push-0 {\n    left: auto;\n  }\n  .col-lg-offset-12 {\n    margin-left: 100%;\n  }\n  .col-lg-offset-11 {\n    margin-left: 91.66666667%;\n  }\n  .col-lg-offset-10 {\n    margin-left: 83.33333333%;\n  }\n  .col-lg-offset-9 {\n    margin-left: 75%;\n  }\n  .col-lg-offset-8 {\n    margin-left: 66.66666667%;\n  }\n  .col-lg-offset-7 {\n    margin-left: 58.33333333%;\n  }\n  .col-lg-offset-6 {\n    margin-left: 50%;\n  }\n  .col-lg-offset-5 {\n    margin-left: 41.66666667%;\n  }\n  .col-lg-offset-4 {\n    margin-left: 33.33333333%;\n  }\n  .col-lg-offset-3 {\n    margin-left: 25%;\n  }\n  .col-lg-offset-2 {\n    margin-left: 16.66666667%;\n  }\n  .col-lg-offset-1 {\n    margin-left: 8.33333333%;\n  }\n  .col-lg-offset-0 {\n    margin-left: 0;\n  }\n}\ntable {\n  background-color: transparent;\n}\ncaption {\n  padding-top: 8px;\n  padding-bottom: 8px;\n  color: #777;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n  padding: 8px;\n  line-height: 1.42857143;\n  vertical-align: top;\n  border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n  vertical-align: bottom;\n  border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n  border-top: 0;\n}\n.table > tbody + tbody {\n  border-top: 2px solid #ddd;\n}\n.table .table {\n  background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n  padding: 5px;\n}\n.table-bordered {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n  border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n  border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-child(odd) {\n  background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n  background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n  position: static;\n  display: table-column;\n  float: none;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n  position: static;\n  display: table-cell;\n  float: none;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n  background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n  background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n  background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n  background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n  background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n  background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n  background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n  background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n  background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n  background-color: #ebcccc;\n}\n.table-responsive {\n  min-height: .01%;\n  overflow-x: auto;\n}\n@media screen and (max-width: 767px) {\n  .table-responsive {\n    width: 100%;\n    margin-bottom: 15px;\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid #ddd;\n  }\n  .table-responsive > .table {\n    margin-bottom: 0;\n  }\n  .table-responsive > .table > thead > tr > th,\n  .table-responsive > .table > tbody > tr > th,\n  .table-responsive > .table > tfoot > tr > th,\n  .table-responsive > .table > thead > tr > td,\n  .table-responsive > .table > tbody > tr > td,\n  .table-responsive > .table > tfoot > tr > td {\n    white-space: nowrap;\n  }\n  .table-responsive > .table-bordered {\n    border: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:first-child,\n  .table-responsive > .table-bordered > tbody > tr > th:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n  .table-responsive > .table-bordered > thead > tr > td:first-child,\n  .table-responsive > .table-bordered > tbody > tr > td:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n    border-left: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:last-child,\n  .table-responsive > .table-bordered > tbody > tr > th:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n  .table-responsive > .table-bordered > thead > tr > td:last-child,\n  .table-responsive > .table-bordered > tbody > tr > td:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n    border-right: 0;\n  }\n  .table-responsive > .table-bordered > tbody > tr:last-child > th,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n  .table-responsive > .table-bordered > tbody > tr:last-child > td,\n  .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n    border-bottom: 0;\n  }\n}\nfieldset {\n  min-width: 0;\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: 20px;\n  font-size: 21px;\n  line-height: inherit;\n  color: #333;\n  border: 0;\n  border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n  display: inline-block;\n  max-width: 100%;\n  margin-bottom: 5px;\n  font-weight: bold;\n}\ninput[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9;\n  line-height: normal;\n}\ninput[type=\"file\"] {\n  display: block;\n}\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\nselect[multiple],\nselect[size] {\n  height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\noutput {\n  display: block;\n  padding-top: 7px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #555;\n}\n.form-control {\n  display: block;\n  width: 100%;\n  height: 34px;\n  padding: 6px 12px;\n  font-size: 14px;\n  line-height: 1.42857143;\n  color: #555;\n  background-color: #fff;\n  background-image: none;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;\n       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);\n          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);\n}\n.form-control::-moz-placeholder {\n  color: #999;\n  opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n  color: #999;\n}\n.form-control::-webkit-input-placeholder {\n  color: #999;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n  cursor: not-allowed;\n  background-color: #eee;\n  opacity: 1;\n}\ntextarea.form-control {\n  height: auto;\n}\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n  line-height: 34px;\n  line-height: 1.42857143 \\0;\n}\ninput[type=\"date\"].input-sm,\ninput[type=\"time\"].input-sm,\ninput[type=\"datetime-local\"].input-sm,\ninput[type=\"month\"].input-sm {\n  line-height: 30px;\n  line-height: 1.5 \\0;\n}\ninput[type=\"date\"].input-lg,\ninput[type=\"time\"].input-lg,\ninput[type=\"datetime-local\"].input-lg,\ninput[type=\"month\"].input-lg {\n  line-height: 46px;\n  line-height: 1.33 \\0;\n}\n_:-ms-fullscreen,\n:root input[type=\"date\"],\n_:-ms-fullscreen,\n:root input[type=\"time\"],\n_:-ms-fullscreen,\n:root input[type=\"datetime-local\"],\n_:-ms-fullscreen,\n:root input[type=\"month\"] {\n  line-height: 1.42857143;\n}\n_:-ms-fullscreen.input-sm,\n:root input[type=\"date\"].input-sm,\n_:-ms-fullscreen.input-sm,\n:root input[type=\"time\"].input-sm,\n_:-ms-fullscreen.input-sm,\n:root input[type=\"datetime-local\"].input-sm,\n_:-ms-fullscreen.input-sm,\n:root input[type=\"month\"].input-sm {\n  line-height: 1.5;\n}\n_:-ms-fullscreen.input-lg,\n:root input[type=\"date\"].input-lg,\n_:-ms-fullscreen.input-lg,\n:root input[type=\"time\"].input-lg,\n_:-ms-fullscreen.input-lg,\n:root input[type=\"datetime-local\"].input-lg,\n_:-ms-fullscreen.input-lg,\n:root input[type=\"month\"].input-lg {\n  line-height: 1.33;\n}\n.form-group {\n  margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n  min-height: 20px;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-top: 4px \\9;\n  margin-left: -20px;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  font-weight: normal;\n  vertical-align: middle;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n  cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n  cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n  cursor: not-allowed;\n}\n.form-control-static {\n  padding-top: 7px;\n  padding-bottom: 7px;\n  margin-bottom: 0;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n  padding-right: 0;\n  padding-left: 0;\n}\n.input-sm,\n.form-group-sm .form-control {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.input-sm,\nselect.form-group-sm .form-control {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-sm,\ntextarea.form-group-sm .form-control,\nselect[multiple].input-sm,\nselect[multiple].form-group-sm .form-control {\n  height: auto;\n}\n.input-lg,\n.form-group-lg .form-control {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.33;\n  border-radius: 6px;\n}\nselect.input-lg,\nselect.form-group-lg .form-control {\n  height: 46px;\n  line-height: 46px;\n}\ntextarea.input-lg,\ntextarea.form-group-lg .form-control,\nselect[multiple].input-lg,\nselect[multiple].form-group-lg .form-control {\n  height: auto;\n}\n.has-feedback {\n  position: relative;\n}\n.has-feedback .form-control {\n  padding-right: 42.5px;\n}\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2;\n  display: block;\n  width: 34px;\n  height: 34px;\n  line-height: 34px;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n  width: 46px;\n  height: 46px;\n  line-height: 46px;\n}\n.input-sm + .form-control-feedback {\n  width: 30px;\n  height: 30px;\n  line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n  color: #3c763d;\n}\n.has-success .form-control {\n  border-color: #3c763d;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-success .form-control:focus {\n  border-color: #2b542c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #3c763d;\n}\n.has-success .form-control-feedback {\n  color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n  color: #8a6d3b;\n}\n.has-warning .form-control {\n  border-color: #8a6d3b;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-warning .form-control:focus {\n  border-color: #66512c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #8a6d3b;\n}\n.has-warning .form-control-feedback {\n  color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n  color: #a94442;\n}\n.has-error .form-control {\n  border-color: #a94442;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);\n}\n.has-error .form-control:focus {\n  border-color: #843534;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #a94442;\n}\n.has-error .form-control-feedback {\n  color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n  top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n  top: 0;\n}\n.help-block {\n  display: block;\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: #737373;\n}\n@media (min-width: 768px) {\n  .form-inline .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .form-inline .form-control-static {\n    display: inline-block;\n  }\n  .form-inline .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .form-inline .input-group .input-group-addon,\n  .form-inline .input-group .input-group-btn,\n  .form-inline .input-group .form-control {\n    width: auto;\n  }\n  .form-inline .input-group > .form-control {\n    width: 100%;\n  }\n  .form-inline .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio,\n  .form-inline .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .form-inline .radio label,\n  .form-inline .checkbox label {\n    padding-left: 0;\n  }\n  .form-inline .radio input[type=\"radio\"],\n  .form-inline .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .form-inline .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n  padding-top: 7px;\n  margin-top: 0;\n  margin-bottom: 0;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n  min-height: 27px;\n}\n.form-horizontal .form-group {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .control-label {\n    padding-top: 7px;\n    margin-bottom: 0;\n    text-align: right;\n  }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n  right: 15px;\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-lg .control-label {\n    padding-top: 14.3px;\n  }\n}\n@media (min-width: 768px) {\n  .form-horizontal .form-group-sm .control-label {\n    padding-top: 6px;\n  }\n}\n.btn {\n  display: inline-block;\n  padding: 6px 12px;\n  margin-bottom: 0;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1.42857143;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: middle;\n  -ms-touch-action: manipulation;\n      touch-action: manipulation;\n  cursor: pointer;\n  -webkit-user-select: none;\n     -moz-user-select: none;\n      -ms-user-select: none;\n          user-select: none;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n  outline: thin dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n  color: #333;\n  text-decoration: none;\n}\n.btn:active,\n.btn.active {\n  background-image: none;\n  outline: 0;\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n  pointer-events: none;\n  cursor: not-allowed;\n  filter: alpha(opacity=65);\n  -webkit-box-shadow: none;\n          box-shadow: none;\n  opacity: .65;\n}\n.btn-default {\n  color: #333;\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus,\n.btn-default.focus,\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  color: #333;\n  background-color: #e6e6e6;\n  border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n  background-image: none;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n  background-color: #fff;\n  border-color: #ccc;\n}\n.btn-default .badge {\n  color: #fff;\n  background-color: #333;\n}\n.btn-primary {\n  color: #fff;\n  background-color: #428bca;\n  border-color: #357ebd;\n}\n.btn-primary:hover,\n.btn-primary:focus,\n.btn-primary.focus,\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  color: #fff;\n  background-color: #3071a9;\n  border-color: #285e8e;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n  background-image: none;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n  background-color: #428bca;\n  border-color: #357ebd;\n}\n.btn-primary .badge {\n  color: #428bca;\n  background-color: #fff;\n}\n.btn-success {\n  color: #fff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success:hover,\n.btn-success:focus,\n.btn-success.focus,\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  color: #fff;\n  background-color: #449d44;\n  border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n  background-image: none;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.btn-success .badge {\n  color: #5cb85c;\n  background-color: #fff;\n}\n.btn-info {\n  color: #fff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info:hover,\n.btn-info:focus,\n.btn-info.focus,\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  color: #fff;\n  background-color: #31b0d5;\n  border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n  background-image: none;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.btn-info .badge {\n  color: #5bc0de;\n  background-color: #fff;\n}\n.btn-warning {\n  color: #fff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning:hover,\n.btn-warning:focus,\n.btn-warning.focus,\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  color: #fff;\n  background-color: #ec971f;\n  border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n  background-image: none;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.btn-warning .badge {\n  color: #f0ad4e;\n  background-color: #fff;\n}\n.btn-danger {\n  color: #fff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger:hover,\n.btn-danger:focus,\n.btn-danger.focus,\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  color: #fff;\n  background-color: #c9302c;\n  border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n  background-image: none;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.btn-danger .badge {\n  color: #d9534f;\n  background-color: #fff;\n}\n.btn-link {\n  font-weight: normal;\n  color: #428bca;\n  border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n  background-color: transparent;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n  border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n  color: #2a6496;\n  text-decoration: underline;\n  background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n  color: #777;\n  text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.33;\n  border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n  padding: 1px 5px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.btn-block {\n  display: block;\n  width: 100%;\n}\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n  width: 100%;\n}\n.fade {\n  opacity: 0;\n  -webkit-transition: opacity .15s linear;\n       -o-transition: opacity .15s linear;\n          transition: opacity .15s linear;\n}\n.fade.in {\n  opacity: 1;\n}\n.collapse {\n  display: none;\n  visibility: hidden;\n}\n.collapse.in {\n  display: block;\n  visibility: visible;\n}\ntr.collapse.in {\n  display: table-row;\n}\ntbody.collapse.in {\n  display: table-row-group;\n}\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  -webkit-transition-timing-function: ease;\n       -o-transition-timing-function: ease;\n          transition-timing-function: ease;\n  -webkit-transition-duration: .35s;\n       -o-transition-duration: .35s;\n          transition-duration: .35s;\n  -webkit-transition-property: height, visibility;\n       -o-transition-property: height, visibility;\n          transition-property: height, visibility;\n}\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top: 4px solid;\n  border-right: 4px solid transparent;\n  border-left: 4px solid transparent;\n}\n.dropdown {\n  position: relative;\n}\n.dropdown-toggle:focus {\n  outline: 0;\n}\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  display: none;\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0;\n  font-size: 14px;\n  text-align: left;\n  list-style: none;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, .15);\n  border-radius: 4px;\n  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);\n          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);\n}\n.dropdown-menu.pull-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu .divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n  display: block;\n  padding: 3px 20px;\n  clear: both;\n  font-weight: normal;\n  line-height: 1.42857143;\n  color: #333;\n  white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  color: #262626;\n  text-decoration: none;\n  background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  color: #fff;\n  text-decoration: none;\n  background-color: #428bca;\n  outline: 0;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  color: #777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n  text-decoration: none;\n  cursor: not-allowed;\n  background-color: transparent;\n  background-image: none;\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n}\n.open > .dropdown-menu {\n  display: block;\n}\n.open > a {\n  outline: 0;\n}\n.dropdown-menu-right {\n  right: 0;\n  left: auto;\n}\n.dropdown-menu-left {\n  right: auto;\n  left: 0;\n}\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: 12px;\n  line-height: 1.42857143;\n  color: #777;\n  white-space: nowrap;\n}\n.dropdown-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 990;\n}\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n  content: \"\";\n  border-top: 0;\n  border-bottom: 4px solid;\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n  top: auto;\n  bottom: 100%;\n  margin-bottom: 1px;\n}\n@media (min-width: 768px) {\n  .navbar-right .dropdown-menu {\n    right: 0;\n    left: auto;\n  }\n  .navbar-right .dropdown-menu-left {\n    right: auto;\n    left: 0;\n  }\n}\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n  position: relative;\n  float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n  z-index: 2;\n}\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus {\n  outline: 0;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n  margin-left: -1px;\n}\n.btn-toolbar {\n  margin-left: -5px;\n}\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n  float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n  margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n.btn-group > .btn:first-child {\n  margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child > .btn:last-child,\n.btn-group > .btn-group:first-child > .dropdown-toggle {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.btn-group > .btn-group:last-child > .btn:first-child {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n  padding-right: 8px;\n  padding-left: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-right: 12px;\n  padding-left: 12px;\n}\n.btn-group.open .dropdown-toggle {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n.btn .caret {\n  margin-left: 0;\n}\n.btn-lg .caret {\n  border-width: 5px 5px 0;\n  border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n  border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n  float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n  margin-top: -1px;\n  margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n  border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n  display: table-cell;\n  float: none;\n  width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n  width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n  left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n  position: absolute;\n  clip: rect(0, 0, 0, 0);\n  pointer-events: none;\n}\n.input-group {\n  position: relative;\n  display: table;\n  border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n  float: none;\n  padding-right: 0;\n  padding-left: 0;\n}\n.input-group .form-control {\n  position: relative;\n  z-index: 2;\n  float: left;\n  width: 100%;\n  margin-bottom: 0;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  height: 46px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.33;\n  border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n  height: 46px;\n  line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n  height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle;\n}\n.input-group-addon {\n  padding: 6px 12px;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1;\n  color: #555;\n  text-align: center;\n  background-color: #eee;\n  border: 1px solid #ccc;\n  border-radius: 4px;\n}\n.input-group-addon.input-sm {\n  padding: 5px 10px;\n  font-size: 12px;\n  border-radius: 3px;\n}\n.input-group-addon.input-lg {\n  padding: 10px 16px;\n  font-size: 18px;\n  border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n  margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0;\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n.input-group-btn {\n  position: relative;\n  font-size: 0;\n  white-space: nowrap;\n}\n.input-group-btn > .btn {\n  position: relative;\n}\n.input-group-btn > .btn + .btn {\n  margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n  z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n  margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n  margin-left: -1px;\n}\n.nav {\n  padding-left: 0;\n  margin-bottom: 0;\n  list-style: none;\n}\n.nav > li {\n  position: relative;\n  display: block;\n}\n.nav > li > a {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n  text-decoration: none;\n  background-color: #eee;\n}\n.nav > li.disabled > a {\n  color: #777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n  color: #777;\n  text-decoration: none;\n  cursor: not-allowed;\n  background-color: transparent;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n  background-color: #eee;\n  border-color: #428bca;\n}\n.nav .nav-divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.nav > li > a > img {\n  max-width: none;\n}\n.nav-tabs {\n  border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n  float: left;\n  margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n  margin-right: 2px;\n  line-height: 1.42857143;\n  border: 1px solid transparent;\n  border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n  border-color: #eee #eee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n  color: #555;\n  cursor: default;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-bottom-color: transparent;\n}\n.nav-tabs.nav-justified {\n  width: 100%;\n  border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n  float: none;\n}\n.nav-tabs.nav-justified > li > a {\n  margin-bottom: 5px;\n  text-align: center;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-tabs.nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs.nav-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs.nav-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .nav-tabs.nav-justified > .active > a,\n  .nav-tabs.nav-justified > .active > a:hover,\n  .nav-tabs.nav-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.nav-pills > li {\n  float: left;\n}\n.nav-pills > li > a {\n  border-radius: 4px;\n}\n.nav-pills > li + li {\n  margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n  color: #fff;\n  background-color: #428bca;\n}\n.nav-stacked > li {\n  float: none;\n}\n.nav-stacked > li + li {\n  margin-top: 2px;\n  margin-left: 0;\n}\n.nav-justified {\n  width: 100%;\n}\n.nav-justified > li {\n  float: none;\n}\n.nav-justified > li > a {\n  margin-bottom: 5px;\n  text-align: center;\n}\n.nav-justified > .dropdown .dropdown-menu {\n  top: auto;\n  left: auto;\n}\n@media (min-width: 768px) {\n  .nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.nav-tabs-justified {\n  border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n  border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n  .nav-tabs-justified > li > a {\n    border-bottom: 1px solid #ddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .nav-tabs-justified > .active > a,\n  .nav-tabs-justified > .active > a:hover,\n  .nav-tabs-justified > .active > a:focus {\n    border-bottom-color: #fff;\n  }\n}\n.tab-content > .tab-pane {\n  display: none;\n  visibility: hidden;\n}\n.tab-content > .active {\n  display: block;\n  visibility: visible;\n}\n.nav-tabs .dropdown-menu {\n  margin-top: -1px;\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.navbar {\n  position: relative;\n  min-height: 50px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n  .navbar {\n    border-radius: 4px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-header {\n    float: left;\n  }\n}\n.navbar-collapse {\n  padding-right: 15px;\n  padding-left: 15px;\n  overflow-x: visible;\n  -webkit-overflow-scrolling: touch;\n  border-top: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);\n}\n.navbar-collapse.in {\n  overflow-y: auto;\n}\n@media (min-width: 768px) {\n  .navbar-collapse {\n    width: auto;\n    border-top: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n  .navbar-collapse.collapse {\n    display: block !important;\n    height: auto !important;\n    padding-bottom: 0;\n    overflow: visible !important;\n    visibility: visible !important;\n  }\n  .navbar-collapse.in {\n    overflow-y: visible;\n  }\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-static-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    padding-right: 0;\n    padding-left: 0;\n  }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n  max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n  .navbar-fixed-top .navbar-collapse,\n  .navbar-fixed-bottom .navbar-collapse {\n    max-height: 200px;\n  }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n@media (min-width: 768px) {\n  .container > .navbar-header,\n  .container-fluid > .navbar-header,\n  .container > .navbar-collapse,\n  .container-fluid > .navbar-collapse {\n    margin-right: 0;\n    margin-left: 0;\n  }\n}\n.navbar-static-top {\n  z-index: 1000;\n  border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n  .navbar-static-top {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 1030;\n}\n@media (min-width: 768px) {\n  .navbar-fixed-top,\n  .navbar-fixed-bottom {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0;\n  border-width: 1px 0 0;\n}\n.navbar-brand {\n  float: left;\n  height: 50px;\n  padding: 15px 15px;\n  font-size: 18px;\n  line-height: 20px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n  text-decoration: none;\n}\n.navbar-brand > img {\n  display: block;\n}\n@media (min-width: 768px) {\n  .navbar > .container .navbar-brand,\n  .navbar > .container-fluid .navbar-brand {\n    margin-left: -15px;\n  }\n}\n.navbar-toggle {\n  position: relative;\n  float: right;\n  padding: 9px 10px;\n  margin-top: 8px;\n  margin-right: 15px;\n  margin-bottom: 8px;\n  background-color: transparent;\n  background-image: none;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.navbar-toggle:focus {\n  outline: 0;\n}\n.navbar-toggle .icon-bar {\n  display: block;\n  width: 22px;\n  height: 2px;\n  border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n  margin-top: 4px;\n}\n@media (min-width: 768px) {\n  .navbar-toggle {\n    display: none;\n  }\n}\n.navbar-nav {\n  margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  line-height: 20px;\n}\n@media (max-width: 767px) {\n  .navbar-nav .open .dropdown-menu {\n    position: static;\n    float: none;\n    width: auto;\n    margin-top: 0;\n    background-color: transparent;\n    border: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n  .navbar-nav .open .dropdown-menu > li > a,\n  .navbar-nav .open .dropdown-menu .dropdown-header {\n    padding: 5px 15px 5px 25px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a {\n    line-height: 20px;\n  }\n  .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-nav .open .dropdown-menu > li > a:focus {\n    background-image: none;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-nav {\n    float: left;\n    margin: 0;\n  }\n  .navbar-nav > li {\n    float: left;\n  }\n  .navbar-nav > li > a {\n    padding-top: 15px;\n    padding-bottom: 15px;\n  }\n}\n.navbar-form {\n  padding: 10px 15px;\n  margin-top: 8px;\n  margin-right: -15px;\n  margin-bottom: 8px;\n  margin-left: -15px;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);\n}\n@media (min-width: 768px) {\n  .navbar-form .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control {\n    display: inline-block;\n    width: auto;\n    vertical-align: middle;\n  }\n  .navbar-form .form-control-static {\n    display: inline-block;\n  }\n  .navbar-form .input-group {\n    display: inline-table;\n    vertical-align: middle;\n  }\n  .navbar-form .input-group .input-group-addon,\n  .navbar-form .input-group .input-group-btn,\n  .navbar-form .input-group .form-control {\n    width: auto;\n  }\n  .navbar-form .input-group > .form-control {\n    width: 100%;\n  }\n  .navbar-form .control-label {\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio,\n  .navbar-form .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .navbar-form .radio label,\n  .navbar-form .checkbox label {\n    padding-left: 0;\n  }\n  .navbar-form .radio input[type=\"radio\"],\n  .navbar-form .checkbox input[type=\"checkbox\"] {\n    position: relative;\n    margin-left: 0;\n  }\n  .navbar-form .has-feedback .form-control-feedback {\n    top: 0;\n  }\n}\n@media (max-width: 767px) {\n  .navbar-form .form-group {\n    margin-bottom: 5px;\n  }\n  .navbar-form .form-group:last-child {\n    margin-bottom: 0;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-form {\n    width: auto;\n    padding-top: 0;\n    padding-bottom: 0;\n    margin-right: 0;\n    margin-left: 0;\n    border: 0;\n    -webkit-box-shadow: none;\n            box-shadow: none;\n  }\n}\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.navbar-btn {\n  margin-top: 8px;\n  margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n  margin-top: 14px;\n  margin-bottom: 14px;\n}\n.navbar-text {\n  margin-top: 15px;\n  margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n  .navbar-text {\n    float: left;\n    margin-right: 15px;\n    margin-left: 15px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-left {\n    float: left !important;\n  }\n  .navbar-right {\n    float: right !important;\n    margin-right: -15px;\n  }\n  .navbar-right ~ .navbar-right {\n    margin-right: 0;\n  }\n}\n.navbar-default {\n  background-color: #f8f8f8;\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n  color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n  color: #5e5e5e;\n  background-color: transparent;\n}\n.navbar-default .navbar-text {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n  color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n  color: #333;\n  background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n  color: #ccc;\n  background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n  border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n  background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n  background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n  border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n  color: #555;\n  background-color: #e7e7e7;\n}\n@media (max-width: 767px) {\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n    color: #777;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #333;\n    background-color: transparent;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #555;\n    background-color: #e7e7e7;\n  }\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #ccc;\n    background-color: transparent;\n  }\n}\n.navbar-default .navbar-link {\n  color: #777;\n}\n.navbar-default .navbar-link:hover {\n  color: #333;\n}\n.navbar-default .btn-link {\n  color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n  color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n  color: #ccc;\n}\n.navbar-inverse {\n  background-color: #222;\n  border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n  color: #fff;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n  color: #444;\n  background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n  border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n  background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n  background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n  border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n  color: #fff;\n  background-color: #080808;\n}\n@media (max-width: 767px) {\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n    border-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n    color: #9d9d9d;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #fff;\n    background-color: transparent;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #fff;\n    background-color: #080808;\n  }\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #444;\n    background-color: transparent;\n  }\n}\n.navbar-inverse .navbar-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n  color: #fff;\n}\n.navbar-inverse .btn-link {\n  color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n  color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n  color: #444;\n}\n.breadcrumb {\n  padding: 8px 15px;\n  margin-bottom: 20px;\n  list-style: none;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n}\n.breadcrumb > li {\n  display: inline-block;\n}\n.breadcrumb > li + li:before {\n  padding: 0 5px;\n  color: #ccc;\n  content: \"/\\00a0\";\n}\n.breadcrumb > .active {\n  color: #777;\n}\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: 20px 0;\n  border-radius: 4px;\n}\n.pagination > li {\n  display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n  position: relative;\n  float: left;\n  padding: 6px 12px;\n  margin-left: -1px;\n  line-height: 1.42857143;\n  color: #428bca;\n  text-decoration: none;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n  margin-left: 0;\n  border-top-left-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n  color: #2a6496;\n  background-color: #eee;\n  border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n  z-index: 2;\n  color: #fff;\n  cursor: default;\n  background-color: #428bca;\n  border-color: #428bca;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #fff;\n  border-color: #ddd;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n  padding: 10px 16px;\n  font-size: 18px;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n  border-top-left-radius: 6px;\n  border-bottom-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n  border-top-right-radius: 6px;\n  border-bottom-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n  padding: 5px 10px;\n  font-size: 12px;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n  border-top-left-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n  border-top-right-radius: 3px;\n  border-bottom-right-radius: 3px;\n}\n.pager {\n  padding-left: 0;\n  margin: 20px 0;\n  text-align: center;\n  list-style: none;\n}\n.pager li {\n  display: inline;\n}\n.pager li > a,\n.pager li > span {\n  display: inline-block;\n  padding: 5px 14px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n  text-decoration: none;\n  background-color: #eee;\n}\n.pager .next > a,\n.pager .next > span {\n  float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n  float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #fff;\n}\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.label:empty {\n  display: none;\n}\n.btn .label {\n  position: relative;\n  top: -1px;\n}\n.label-default {\n  background-color: #777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n  background-color: #5e5e5e;\n}\n.label-primary {\n  background-color: #428bca;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n  background-color: #3071a9;\n}\n.label-success {\n  background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n  background-color: #449d44;\n}\n.label-info {\n  background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n  background-color: #31b0d5;\n}\n.label-warning {\n  background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n  background-color: #ec971f;\n}\n.label-danger {\n  background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n  background-color: #c9302c;\n}\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: 12px;\n  font-weight: bold;\n  line-height: 1;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  background-color: #777;\n  border-radius: 10px;\n}\n.badge:empty {\n  display: none;\n}\n.btn .badge {\n  position: relative;\n  top: -1px;\n}\n.btn-xs .badge {\n  top: 0;\n  padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n  color: #fff;\n  text-decoration: none;\n  cursor: pointer;\n}\na.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n  color: #428bca;\n  background-color: #fff;\n}\n.nav-pills > li > a > .badge {\n  margin-left: 3px;\n}\n.jumbotron {\n  padding: 30px 15px;\n  margin-bottom: 30px;\n  color: inherit;\n  background-color: #eee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n  color: inherit;\n}\n.jumbotron p {\n  margin-bottom: 15px;\n  font-size: 21px;\n  font-weight: 200;\n}\n.jumbotron > hr {\n  border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n  border-radius: 6px;\n}\n.jumbotron .container {\n  max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n  .jumbotron {\n    padding: 48px 0;\n  }\n  .container .jumbotron {\n    padding-right: 60px;\n    padding-left: 60px;\n  }\n  .jumbotron h1,\n  .jumbotron .h1 {\n    font-size: 63px;\n  }\n}\n.thumbnail {\n  display: block;\n  padding: 4px;\n  margin-bottom: 20px;\n  line-height: 1.42857143;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 4px;\n  -webkit-transition: border .2s ease-in-out;\n       -o-transition: border .2s ease-in-out;\n          transition: border .2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n  margin-right: auto;\n  margin-left: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n  border-color: #428bca;\n}\n.thumbnail .caption {\n  padding: 9px;\n  color: #333;\n}\n.alert {\n  padding: 15px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.alert h4 {\n  margin-top: 0;\n  color: inherit;\n}\n.alert .alert-link {\n  font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n  margin-bottom: 0;\n}\n.alert > p + p {\n  margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n  padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n  position: relative;\n  top: -2px;\n  right: -21px;\n  color: inherit;\n}\n.alert-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.alert-success hr {\n  border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n  color: #2b542c;\n}\n.alert-info {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.alert-info hr {\n  border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n  color: #245269;\n}\n.alert-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.alert-warning hr {\n  border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n  color: #66512c;\n}\n.alert-danger {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.alert-danger hr {\n  border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n  color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@-o-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n.progress {\n  height: 20px;\n  margin-bottom: 20px;\n  overflow: hidden;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);\n          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);\n}\n.progress-bar {\n  float: left;\n  width: 0;\n  height: 100%;\n  font-size: 12px;\n  line-height: 20px;\n  color: #fff;\n  text-align: center;\n  background-color: #428bca;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);\n  -webkit-transition: width .6s ease;\n       -o-transition: width .6s ease;\n          transition: width .6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  -webkit-background-size: 40px 40px;\n          background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n  -webkit-animation: progress-bar-stripes 2s linear infinite;\n       -o-animation: progress-bar-stripes 2s linear infinite;\n          animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n  background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n  background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n  background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n  background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);\n}\n.media {\n  margin-top: 15px;\n}\n.media:first-child {\n  margin-top: 0;\n}\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n.media-middle {\n  vertical-align: middle;\n}\n.media-bottom {\n  vertical-align: bottom;\n}\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n.list-group {\n  padding-left: 0;\n  margin-bottom: 20px;\n}\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n  border-top-left-radius: 4px;\n  border-top-right-radius: 4px;\n}\n.list-group-item:last-child {\n  margin-bottom: 0;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\n.list-group-item > .badge {\n  float: right;\n}\n.list-group-item > .badge + .badge {\n  margin-right: 5px;\n}\na.list-group-item {\n  color: #555;\n}\na.list-group-item .list-group-item-heading {\n  color: #333;\n}\na.list-group-item:hover,\na.list-group-item:focus {\n  color: #555;\n  text-decoration: none;\n  background-color: #f5f5f5;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n  color: #777;\n  cursor: not-allowed;\n  background-color: #eee;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n  color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n  color: #777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  z-index: 2;\n  color: #fff;\n  background-color: #428bca;\n  border-color: #428bca;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n  color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n  color: #e1edf7;\n}\n.list-group-item-success {\n  color: #3c763d;\n  background-color: #dff0d8;\n}\na.list-group-item-success {\n  color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-success:hover,\na.list-group-item-success:focus {\n  color: #3c763d;\n  background-color: #d0e9c6;\n}\na.list-group-item-success.active,\na.list-group-item-success.active:hover,\na.list-group-item-success.active:focus {\n  color: #fff;\n  background-color: #3c763d;\n  border-color: #3c763d;\n}\n.list-group-item-info {\n  color: #31708f;\n  background-color: #d9edf7;\n}\na.list-group-item-info {\n  color: #31708f;\n}\na.list-group-item-info .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-info:hover,\na.list-group-item-info:focus {\n  color: #31708f;\n  background-color: #c4e3f3;\n}\na.list-group-item-info.active,\na.list-group-item-info.active:hover,\na.list-group-item-info.active:focus {\n  color: #fff;\n  background-color: #31708f;\n  border-color: #31708f;\n}\n.list-group-item-warning {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n}\na.list-group-item-warning {\n  color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-warning:hover,\na.list-group-item-warning:focus {\n  color: #8a6d3b;\n  background-color: #faf2cc;\n}\na.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus {\n  color: #fff;\n  background-color: #8a6d3b;\n  border-color: #8a6d3b;\n}\n.list-group-item-danger {\n  color: #a94442;\n  background-color: #f2dede;\n}\na.list-group-item-danger {\n  color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading {\n  color: inherit;\n}\na.list-group-item-danger:hover,\na.list-group-item-danger:focus {\n  color: #a94442;\n  background-color: #ebcccc;\n}\na.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus {\n  color: #fff;\n  background-color: #a94442;\n  border-color: #a94442;\n}\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n.panel {\n  margin-bottom: 20px;\n  background-color: #fff;\n  border: 1px solid transparent;\n  border-radius: 4px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);\n}\n.panel-body {\n  padding: 15px;\n}\n.panel-heading {\n  padding: 10px 15px;\n  border-bottom: 1px solid transparent;\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n  color: inherit;\n}\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: 16px;\n  color: inherit;\n}\n.panel-title > a {\n  color: inherit;\n}\n.panel-footer {\n  padding: 10px 15px;\n  background-color: #f5f5f5;\n  border-top: 1px solid #ddd;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n  margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n  border-width: 1px 0;\n  border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n  border-top: 0;\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n  border-bottom: 0;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n  border-top-width: 0;\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n  margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n  padding-right: 15px;\n  padding-left: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n  border-top-left-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n  border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n  border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n  border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n  border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n  border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n  border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n  border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n  border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n  border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n  border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n  border-bottom: 0;\n}\n.panel > .table-responsive {\n  margin-bottom: 0;\n  border: 0;\n}\n.panel-group {\n  margin-bottom: 20px;\n}\n.panel-group .panel {\n  margin-bottom: 0;\n  border-radius: 4px;\n}\n.panel-group .panel + .panel {\n  margin-top: 5px;\n}\n.panel-group .panel-heading {\n  border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n  border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n  border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n  border-bottom: 1px solid #ddd;\n}\n.panel-default {\n  border-color: #ddd;\n}\n.panel-default > .panel-heading {\n  color: #333;\n  background-color: #f5f5f5;\n  border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n  color: #f5f5f5;\n  background-color: #333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ddd;\n}\n.panel-primary {\n  border-color: #428bca;\n}\n.panel-primary > .panel-heading {\n  color: #fff;\n  background-color: #428bca;\n  border-color: #428bca;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #428bca;\n}\n.panel-primary > .panel-heading .badge {\n  color: #428bca;\n  background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #428bca;\n}\n.panel-success {\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n  color: #3c763d;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n  color: #dff0d8;\n  background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #d6e9c6;\n}\n.panel-info {\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n  color: #31708f;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n  color: #d9edf7;\n  background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #bce8f1;\n}\n.panel-warning {\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n  color: #8a6d3b;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n  color: #fcf8e3;\n  background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #faebcc;\n}\n.panel-danger {\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n  color: #a94442;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n  border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n  color: #f2dede;\n  background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n  border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  border: 0;\n}\n.embed-responsive.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n.embed-responsive.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border: 1px solid #e3e3e3;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);\n}\n.well blockquote {\n  border-color: #ddd;\n  border-color: rgba(0, 0, 0, .15);\n}\n.well-lg {\n  padding: 24px;\n  border-radius: 6px;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: 3px;\n}\n.close {\n  float: right;\n  font-size: 21px;\n  font-weight: bold;\n  line-height: 1;\n  color: #000;\n  text-shadow: 0 1px 0 #fff;\n  filter: alpha(opacity=20);\n  opacity: .2;\n}\n.close:hover,\n.close:focus {\n  color: #000;\n  text-decoration: none;\n  cursor: pointer;\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\nbutton.close {\n  -webkit-appearance: none;\n  padding: 0;\n  cursor: pointer;\n  background: transparent;\n  border: 0;\n}\n.modal-open {\n  overflow: hidden;\n}\n.modal {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1040;\n  display: none;\n  overflow: hidden;\n  -webkit-overflow-scrolling: touch;\n  outline: 0;\n}\n.modal.fade .modal-dialog {\n  -webkit-transition: -webkit-transform .3s ease-out;\n       -o-transition:      -o-transform .3s ease-out;\n          transition:         transform .3s ease-out;\n  -webkit-transform: translate(0, -25%);\n      -ms-transform: translate(0, -25%);\n       -o-transform: translate(0, -25%);\n          transform: translate(0, -25%);\n}\n.modal.in .modal-dialog {\n  -webkit-transform: translate(0, 0);\n      -ms-transform: translate(0, 0);\n       -o-transform: translate(0, 0);\n          transform: translate(0, 0);\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n.modal-content {\n  position: relative;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #999;\n  border: 1px solid rgba(0, 0, 0, .2);\n  border-radius: 6px;\n  outline: 0;\n  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);\n          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);\n}\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  background-color: #000;\n}\n.modal-backdrop.fade {\n  filter: alpha(opacity=0);\n  opacity: 0;\n}\n.modal-backdrop.in {\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\n.modal-header {\n  min-height: 16.42857143px;\n  padding: 15px;\n  border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n  margin-top: -2px;\n}\n.modal-title {\n  margin: 0;\n  line-height: 1.42857143;\n}\n.modal-body {\n  position: relative;\n  padding: 15px;\n}\n.modal-footer {\n  padding: 15px;\n  text-align: right;\n  border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n  margin-bottom: 0;\n  margin-left: 5px;\n}\n.modal-footer .btn-group .btn + .btn {\n  margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n  margin-left: 0;\n}\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n@media (min-width: 768px) {\n  .modal-dialog {\n    width: 600px;\n    margin: 30px auto;\n  }\n  .modal-content {\n    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);\n            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);\n  }\n  .modal-sm {\n    width: 300px;\n  }\n}\n@media (min-width: 992px) {\n  .modal-lg {\n    width: 900px;\n  }\n}\n.tooltip {\n  position: absolute;\n  z-index: 1070;\n  display: block;\n  font-size: 12px;\n  line-height: 1.4;\n  visibility: visible;\n  filter: alpha(opacity=0);\n  opacity: 0;\n}\n.tooltip.in {\n  filter: alpha(opacity=90);\n  opacity: .9;\n}\n.tooltip.top {\n  padding: 5px 0;\n  margin-top: -3px;\n}\n.tooltip.right {\n  padding: 0 5px;\n  margin-left: 3px;\n}\n.tooltip.bottom {\n  padding: 5px 0;\n  margin-top: 3px;\n}\n.tooltip.left {\n  padding: 0 5px;\n  margin-left: -3px;\n}\n.tooltip-inner {\n  max-width: 200px;\n  padding: 3px 8px;\n  color: #fff;\n  text-align: center;\n  text-decoration: none;\n  background-color: #000;\n  border-radius: 4px;\n}\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n  bottom: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n  bottom: 0;\n  left: 5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n  right: 5px;\n  bottom: 0;\n  border-width: 5px 5px 0;\n  border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n  top: 50%;\n  left: 0;\n  margin-top: -5px;\n  border-width: 5px 5px 5px 0;\n  border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n  top: 50%;\n  right: 0;\n  margin-top: -5px;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n  top: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n  top: 0;\n  left: 5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n  top: 0;\n  right: 5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000;\n}\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1060;\n  display: none;\n  max-width: 276px;\n  padding: 1px;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1.42857143;\n  text-align: left;\n  white-space: normal;\n  background-color: #fff;\n  -webkit-background-clip: padding-box;\n          background-clip: padding-box;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, .2);\n  border-radius: 6px;\n  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);\n          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);\n}\n.popover.top {\n  margin-top: -10px;\n}\n.popover.right {\n  margin-left: 10px;\n}\n.popover.bottom {\n  margin-top: 10px;\n}\n.popover.left {\n  margin-left: -10px;\n}\n.popover-title {\n  padding: 8px 14px;\n  margin: 0;\n  font-size: 14px;\n  background-color: #f7f7f7;\n  border-bottom: 1px solid #ebebeb;\n  border-radius: 5px 5px 0 0;\n}\n.popover-content {\n  padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n  position: absolute;\n  display: block;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.popover > .arrow {\n  border-width: 11px;\n}\n.popover > .arrow:after {\n  content: \"\";\n  border-width: 10px;\n}\n.popover.top > .arrow {\n  bottom: -11px;\n  left: 50%;\n  margin-left: -11px;\n  border-top-color: #999;\n  border-top-color: rgba(0, 0, 0, .25);\n  border-bottom-width: 0;\n}\n.popover.top > .arrow:after {\n  bottom: 1px;\n  margin-left: -10px;\n  content: \" \";\n  border-top-color: #fff;\n  border-bottom-width: 0;\n}\n.popover.right > .arrow {\n  top: 50%;\n  left: -11px;\n  margin-top: -11px;\n  border-right-color: #999;\n  border-right-color: rgba(0, 0, 0, .25);\n  border-left-width: 0;\n}\n.popover.right > .arrow:after {\n  bottom: -10px;\n  left: 1px;\n  content: \" \";\n  border-right-color: #fff;\n  border-left-width: 0;\n}\n.popover.bottom > .arrow {\n  top: -11px;\n  left: 50%;\n  margin-left: -11px;\n  border-top-width: 0;\n  border-bottom-color: #999;\n  border-bottom-color: rgba(0, 0, 0, .25);\n}\n.popover.bottom > .arrow:after {\n  top: 1px;\n  margin-left: -10px;\n  content: \" \";\n  border-top-width: 0;\n  border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n  top: 50%;\n  right: -11px;\n  margin-top: -11px;\n  border-right-width: 0;\n  border-left-color: #999;\n  border-left-color: rgba(0, 0, 0, .25);\n}\n.popover.left > .arrow:after {\n  right: 1px;\n  bottom: -10px;\n  content: \" \";\n  border-right-width: 0;\n  border-left-color: #fff;\n}\n.carousel {\n  position: relative;\n}\n.carousel-inner {\n  position: relative;\n  width: 100%;\n  overflow: hidden;\n}\n.carousel-inner > .item {\n  position: relative;\n  display: none;\n  -webkit-transition: .6s ease-in-out left;\n       -o-transition: .6s ease-in-out left;\n          transition: .6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n  .carousel-inner > .item {\n    -webkit-transition: -webkit-transform .6s ease-in-out;\n         -o-transition:      -o-transform .6s ease-in-out;\n            transition:         transform .6s ease-in-out;\n\n    -webkit-backface-visibility: hidden;\n            backface-visibility: hidden;\n    -webkit-perspective: 1000;\n            perspective: 1000;\n  }\n  .carousel-inner > .item.next,\n  .carousel-inner > .item.active.right {\n    left: 0;\n    -webkit-transform: translate3d(100%, 0, 0);\n            transform: translate3d(100%, 0, 0);\n  }\n  .carousel-inner > .item.prev,\n  .carousel-inner > .item.active.left {\n    left: 0;\n    -webkit-transform: translate3d(-100%, 0, 0);\n            transform: translate3d(-100%, 0, 0);\n  }\n  .carousel-inner > .item.next.left,\n  .carousel-inner > .item.prev.right,\n  .carousel-inner > .item.active {\n    left: 0;\n    -webkit-transform: translate3d(0, 0, 0);\n            transform: translate3d(0, 0, 0);\n  }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  display: block;\n}\n.carousel-inner > .active {\n  left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  position: absolute;\n  top: 0;\n  width: 100%;\n}\n.carousel-inner > .next {\n  left: 100%;\n}\n.carousel-inner > .prev {\n  left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n  left: 0;\n}\n.carousel-inner > .active.left {\n  left: -100%;\n}\n.carousel-inner > .active.right {\n  left: 100%;\n}\n.carousel-control {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  width: 15%;\n  font-size: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);\n  filter: alpha(opacity=50);\n  opacity: .5;\n}\n.carousel-control.left {\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));\n  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n  background-repeat: repeat-x;\n}\n.carousel-control.right {\n  right: 0;\n  left: auto;\n  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));\n  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n  background-repeat: repeat-x;\n}\n.carousel-control:hover,\n.carousel-control:focus {\n  color: #fff;\n  text-decoration: none;\n  filter: alpha(opacity=90);\n  outline: 0;\n  opacity: .9;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n  position: absolute;\n  top: 50%;\n  z-index: 5;\n  display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n  left: 50%;\n  margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n  right: 50%;\n  margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n  width: 20px;\n  height: 20px;\n  margin-top: -10px;\n  font-family: serif;\n}\n.carousel-control .icon-prev:before {\n  content: '\\2039';\n}\n.carousel-control .icon-next:before {\n  content: '\\203a';\n}\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  padding-left: 0;\n  margin-left: -30%;\n  text-align: center;\n  list-style: none;\n}\n.carousel-indicators li {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin: 1px;\n  text-indent: -999px;\n  cursor: pointer;\n  background-color: #000 \\9;\n  background-color: rgba(0, 0, 0, 0);\n  border: 1px solid #fff;\n  border-radius: 10px;\n}\n.carousel-indicators .active {\n  width: 12px;\n  height: 12px;\n  margin: 0;\n  background-color: #fff;\n}\n.carousel-caption {\n  position: absolute;\n  right: 15%;\n  bottom: 20px;\n  left: 15%;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);\n}\n.carousel-caption .btn {\n  text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-prev,\n  .carousel-control .icon-next {\n    width: 30px;\n    height: 30px;\n    margin-top: -15px;\n    font-size: 30px;\n  }\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .icon-prev {\n    margin-left: -15px;\n  }\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-next {\n    margin-right: -15px;\n  }\n  .carousel-caption {\n    right: 20%;\n    left: 20%;\n    padding-bottom: 30px;\n  }\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-footer:before,\n.modal-footer:after {\n  display: table;\n  content: \" \";\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-footer:after {\n  clear: both;\n}\n.center-block {\n  display: block;\n  margin-right: auto;\n  margin-left: auto;\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n.hidden {\n  display: none !important;\n  visibility: hidden !important;\n}\n.affix {\n  position: fixed;\n}\n@-ms-viewport {\n  width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-xs {\n    display: block !important;\n  }\n  table.visible-xs {\n    display: table;\n  }\n  tr.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-xs,\n  td.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-block {\n    display: block !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline {\n    display: inline !important;\n  }\n}\n@media (max-width: 767px) {\n  .visible-xs-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm {\n    display: block !important;\n  }\n  table.visible-sm {\n    display: table;\n  }\n  tr.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-sm,\n  td.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-block {\n    display: block !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md {\n    display: block !important;\n  }\n  table.visible-md {\n    display: table;\n  }\n  tr.visible-md {\n    display: table-row !important;\n  }\n  th.visible-md,\n  td.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-block {\n    display: block !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg {\n    display: block !important;\n  }\n  table.visible-lg {\n    display: table;\n  }\n  tr.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-lg,\n  td.visible-lg {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-block {\n    display: block !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline {\n    display: inline !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg-inline-block {\n    display: inline-block !important;\n  }\n}\n@media (max-width: 767px) {\n  .hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-lg {\n    display: none !important;\n  }\n}\n.visible-print {\n  display: none !important;\n}\n@media print {\n  .visible-print {\n    display: block !important;\n  }\n  table.visible-print {\n    display: table;\n  }\n  tr.visible-print {\n    display: table-row !important;\n  }\n  th.visible-print,\n  td.visible-print {\n    display: table-cell !important;\n  }\n}\n.visible-print-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-block {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n}\n@media print {\n  .visible-print-inline-block {\n    display: inline-block !important;\n  }\n}\n@media print {\n  .hidden-print {\n    display: none !important;\n  }\n}\n/*# sourceMappingURL=bootstrap.css.map */\n"
  },
  {
    "path": "public/admin/css/plugins/blueimp/css/blueimp-gallery-indicator.css",
    "content": "@charset \"UTF-8\";\n/*\n * blueimp Gallery Indicator CSS 1.1.0\n * https://github.com/blueimp/Gallery\n *\n * Copyright 2013, Sebastian Tschan\n * https://blueimp.net\n *\n * Licensed under the MIT license:\n * http://www.opensource.org/licenses/MIT\n */\n\n.blueimp-gallery > .indicator {\n  position: absolute;\n  top: auto;\n  right: 15px;\n  bottom: 15px;\n  left: 15px;\n  margin: 0 40px;\n  padding: 0;\n  list-style: none;\n  text-align: center;\n  line-height: 10px;\n  display: none;\n}\n.blueimp-gallery > .indicator > li {\n  display: inline-block;\n  width: 9px;\n  height: 9px;\n  margin: 6px 3px 0 3px;\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n  border: 1px solid transparent;\n  background: #ccc;\n  background: rgba(255, 255, 255, 0.25) center no-repeat;\n  border-radius: 5px;\n  box-shadow: 0 0 2px #000;\n  opacity: 0.5;\n  cursor: pointer;\n}\n.blueimp-gallery > .indicator > li:hover,\n.blueimp-gallery > .indicator > .active {\n  background-color: #fff;\n  border-color: #fff;\n  opacity: 1;\n}\n.blueimp-gallery-controls > .indicator {\n  display: block;\n  /* Fix z-index issues (controls behind slide element) on Android: */\n  -webkit-transform: translateZ(0);\n     -moz-transform: translateZ(0);\n      -ms-transform: translateZ(0);\n       -o-transform: translateZ(0);\n          transform: translateZ(0);\n}\n.blueimp-gallery-single > .indicator {\n  display: none;\n}\n.blueimp-gallery > .indicator {\n  -webkit-user-select: none;\n   -khtml-user-select: none;\n     -moz-user-select: none;\n      -ms-user-select: none;\n          user-select: none;\n}\n\n/* IE7 fixes */\n*+html .blueimp-gallery > .indicator > li {\n  display: inline;\n}\n"
  },
  {
    "path": "public/admin/css/plugins/blueimp/css/blueimp-gallery-video.css",
    "content": "@charset \"UTF-8\";\n/*\n * blueimp Gallery Video Factory CSS 1.3.0\n * https://github.com/blueimp/Gallery\n *\n * Copyright 2013, Sebastian Tschan\n * https://blueimp.net\n *\n * Licensed under the MIT license:\n * http://www.opensource.org/licenses/MIT\n */\n\n.blueimp-gallery > .slides > .slide > .video-content > img {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  width: auto;\n  height: auto;\n  max-width: 100%;\n  max-height: 100%;\n  /* Prevent artifacts in Mozilla Firefox: */\n  -moz-backface-visibility: hidden;\n}\n.blueimp-gallery > .slides > .slide > .video-content > video {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n}\n.blueimp-gallery > .slides > .slide > .video-content > iframe {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  border: none;\n}\n.blueimp-gallery > .slides > .slide > .video-playing > iframe {\n  top: 0;\n}\n.blueimp-gallery > .slides > .slide > .video-content > a {\n  position: absolute;\n  top: 50%;\n  right: 0;\n  left: 0;\n  margin: -64px auto 0;\n  width: 128px;\n  height: 128px;\n  background: url(../img/video-play.png) center no-repeat;\n  opacity: 0.8;\n  cursor: pointer;\n}\n.blueimp-gallery > .slides > .slide > .video-content > a:hover {\n  opacity: 1;\n}\n.blueimp-gallery > .slides > .slide > .video-playing > a,\n.blueimp-gallery > .slides > .slide > .video-playing > img {\n  display: none;\n}\n.blueimp-gallery > .slides > .slide > .video-content > video {\n  display: none;\n}\n.blueimp-gallery > .slides > .slide > .video-playing > video {\n  display: block;\n}\n.blueimp-gallery > .slides > .slide > .video-loading > a {\n  background: url(../img/loading.gif) center no-repeat;\n  background-size: 64px 64px;\n}\n\n/* Replace PNGs with SVGs for capable browsers (excluding IE<9) */\nbody:last-child .blueimp-gallery > .slides > .slide > .video-content:not(.video-loading) > a {\n  background-image: url(../img/video-play.svg);\n}\n\n/* IE7 fixes */\n*+html .blueimp-gallery > .slides > .slide > .video-content {\n  height: 100%;\n}\n*+html .blueimp-gallery > .slides > .slide > .video-content > a {\n  left: 50%;\n  margin-left: -64px;\n}\n"
  },
  {
    "path": "public/admin/css/plugins/blueimp/css/blueimp-gallery.css",
    "content": "@charset \"UTF-8\";\n/*\n * blueimp Gallery CSS 2.11.1\n * https://github.com/blueimp/Gallery\n *\n * Copyright 2013, Sebastian Tschan\n * https://blueimp.net\n *\n * Licensed under the MIT license:\n * http://www.opensource.org/licenses/MIT\n */\n\n.blueimp-gallery,\n.blueimp-gallery > .slides > .slide > .slide-content {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  /* Prevent artifacts in Mozilla Firefox: */\n  -moz-backface-visibility: hidden;\n}\n.blueimp-gallery > .slides > .slide > .slide-content {\n  margin: auto;\n  width: auto;\n  height: auto;\n  max-width: 100%;\n  max-height: 100%;\n  opacity: 1;\n}\n.blueimp-gallery {\n  position: fixed;\n  z-index: 999999;\n  overflow: hidden;\n  background: #000;\n  background: rgba(0, 0, 0, 0.9);\n  opacity: 0;\n  display: none;\n  direction: ltr;\n  -ms-touch-action: none;\n  touch-action: none;\n}\n.blueimp-gallery-carousel {\n  position: relative;\n  z-index: auto;\n  margin: 1em auto;\n  /* Set the carousel width/height ratio to 16/9: */\n  padding-bottom: 56.25%;\n  box-shadow: 0 0 10px #000;\n  -ms-touch-action: pan-y;\n  touch-action: pan-y;\n}\n.blueimp-gallery-display {\n  display: block;\n  opacity: 1;\n}\n.blueimp-gallery > .slides {\n  position: relative;\n  height: 100%;\n  overflow: hidden;\n}\n.blueimp-gallery-carousel > .slides {\n  position: absolute;\n}\n.blueimp-gallery > .slides > .slide {\n  position: relative;\n  float: left;\n  height: 100%;\n  text-align: center;\n  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); \n     -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); \n      -ms-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); \n       -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000); \n          transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);\n}\n.blueimp-gallery,\n.blueimp-gallery > .slides > .slide > .slide-content {\n  -webkit-transition: opacity 0.5s linear;\n     -moz-transition: opacity 0.5s linear;\n      -ms-transition: opacity 0.5s linear;\n       -o-transition: opacity 0.5s linear;\n          transition: opacity 0.5s linear;\n}\n.blueimp-gallery > .slides > .slide-loading {\n  background: url(../img/loading.gif) center no-repeat;\n  background-size: 64px 64px;\n}\n.blueimp-gallery > .slides > .slide-loading > .slide-content {\n  opacity: 0;\n}\n.blueimp-gallery > .slides > .slide-error {\n  background: url(../img/error.png) center no-repeat;\n}\n.blueimp-gallery > .slides > .slide-error > .slide-content {\n  display: none;\n}\n.blueimp-gallery > .prev,\n.blueimp-gallery > .next {\n  position: absolute;\n  top: 50%;\n  left: 15px;\n  width: 40px;\n  height: 40px;\n  margin-top: -23px;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 60px;\n  font-weight: 100;\n  line-height: 30px;\n  color: #fff;\n  text-decoration: none;\n  text-shadow: 0 0 2px #000;\n  text-align: center;\n  background: #222;\n  background: rgba(0, 0, 0, 0.5);\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n  border: 3px solid #fff;\n  -webkit-border-radius: 23px;\n     -moz-border-radius: 23px;\n          border-radius: 23px;\n  opacity: 0.5;\n  cursor: pointer;\n  display: none;\n}\n.blueimp-gallery > .next {\n  left: auto;\n  right: 15px;\n}\n.blueimp-gallery > .close,\n.blueimp-gallery > .title {\n  position: absolute;\n  top: 15px;\n  left: 15px;\n  margin: 0 40px 0 0;\n  font-size: 20px;\n  line-height: 30px;\n  color: #fff;\n  text-shadow: 0 0 2px #000;\n  opacity: 0.8;\n  display: none;\n}\n.blueimp-gallery > .close {\n  padding: 15px;\n  right: 15px;\n  left: auto;\n  margin: -15px;\n  font-size: 30px;\n  text-decoration: none;\n  cursor: pointer;\n}\n.blueimp-gallery > .play-pause {\n  position: absolute;\n  right: 15px;\n  bottom: 15px;\n  width: 15px;\n  height: 15px;\n  background: url(../img/play-pause.png) 0 0 no-repeat;\n  cursor: pointer;\n  opacity: 0.5;\n  display: none;\n}\n.blueimp-gallery-playing > .play-pause {\n  background-position: -15px 0;\n}\n.blueimp-gallery > .prev:hover,\n.blueimp-gallery > .next:hover,\n.blueimp-gallery > .close:hover,\n.blueimp-gallery > .title:hover,\n.blueimp-gallery > .play-pause:hover {\n  color: #fff;\n  opacity: 1;\n}\n.blueimp-gallery-controls > .prev,\n.blueimp-gallery-controls > .next,\n.blueimp-gallery-controls > .close,\n.blueimp-gallery-controls > .title,\n.blueimp-gallery-controls > .play-pause {\n  display: block;\n  /* Fix z-index issues (controls behind slide element) on Android: */\n  -webkit-transform: translateZ(0);\n     -moz-transform: translateZ(0);\n      -ms-transform: translateZ(0);\n       -o-transform: translateZ(0);\n          transform: translateZ(0);\n}\n.blueimp-gallery-single > .prev,\n.blueimp-gallery-left > .prev,\n.blueimp-gallery-single > .next,\n.blueimp-gallery-right > .next,\n.blueimp-gallery-single > .play-pause {\n  display: none;\n}\n.blueimp-gallery > .slides > .slide > .slide-content,\n.blueimp-gallery > .prev,\n.blueimp-gallery > .next,\n.blueimp-gallery > .close,\n.blueimp-gallery > .play-pause {\n  -webkit-user-select: none;\n   -khtml-user-select: none;\n     -moz-user-select: none;\n      -ms-user-select: none;\n          user-select: none;\n}\n\n/* Replace PNGs with SVGs for capable browsers (excluding IE<9) */\nbody:last-child .blueimp-gallery > .slides > .slide-error {\n  background-image: url(../img/error.svg);\n}\nbody:last-child .blueimp-gallery > .play-pause {\n  width: 20px;\n  height: 20px;\n  background-size: 40px 20px;\n  background-image: url(../img/play-pause.svg);\n}\nbody:last-child .blueimp-gallery-playing > .play-pause {\n  background-position: -20px 0;\n}\n\n/* IE7 fixes */\n*+html .blueimp-gallery > .slides > .slide {\n  min-height: 300px;\n}\n*+html .blueimp-gallery > .slides > .slide > .slide-content {\n  position: relative;\n}\n"
  },
  {
    "path": "public/admin/css/plugins/blueimp/css/demo.css",
    "content": "/*\n * blueimp Gallery Demo CSS 2.0.0\n * https://github.com/blueimp/Gallery\n *\n * Copyright 2013, Sebastian Tschan\n * https://blueimp.net\n *\n * Licensed under the MIT license:\n * http://www.opensource.org/licenses/MIT\n */\n\nbody {\n  max-width: 750px;\n  margin: 0 auto;\n  padding: 1em;\n  font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;\n  font-size: 1em;\n  line-height: 1.4em;\n  background: #222;\n  color: #fff;\n  -webkit-text-size-adjust: 100%;\n      -ms-text-size-adjust: 100%;\n}\na {\n  color: orange;\n  text-decoration: none;\n}\nimg {\n  border: 0;\n  vertical-align: middle;\n}\nh1 {\n  line-height: 1em;\n}\nh2,\n.links {\n  text-align: center;\n}\n\n@media (min-width: 481px) {\n  .navigation {\n    list-style: none;\n    padding: 0;\n  }\n  .navigation li {\n    display: inline-block;\n  }\n  .navigation li:not(:first-child):before {\n    content: '| ';\n  }\n}\n"
  },
  {
    "path": "public/admin/css/plugins/bootstrap-rtl/bootstrap-rtl.css",
    "content": "/*******************************************************************************\n *              bootstrap-rtl (version 3.3.1)\n *      Author: Morteza Ansarinia (http://github.com/morteza)\n *  Created on: January 21,2015\n *     Project: bootstrap-rtl\n *   Copyright: Unlicensed Public Domain\n *******************************************************************************/\n\nhtml {\n  direction: rtl;\n}\nbody {\n  direction: rtl;\n}\n.list-unstyled {\n  padding-right: 0;\n  padding-left: initial;\n}\n.list-inline {\n  padding-right: 0;\n  padding-left: initial;\n  margin-right: -5px;\n  margin-left: 0;\n}\ndd {\n  margin-right: 0;\n  margin-left: initial;\n}\n@media (min-width: 768px) {\n  .dl-horizontal dt {\n    float: right;\n    clear: right;\n    text-align: left;\n  }\n  .dl-horizontal dd {\n    margin-right: 180px;\n    margin-left: 0;\n  }\n}\nblockquote {\n  border-right: 5px solid #eeeeee;\n  border-left: 0;\n}\n.blockquote-reverse,\nblockquote.pull-left {\n  padding-left: 15px;\n  padding-right: 0;\n  border-left: 5px solid #eeeeee;\n  border-right: 0;\n  text-align: left;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n  position: relative;\n  min-height: 1px;\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n  float: right;\n}\n.col-xs-12 {\n  width: 100%;\n}\n.col-xs-11 {\n  width: 91.66666667%;\n}\n.col-xs-10 {\n  width: 83.33333333%;\n}\n.col-xs-9 {\n  width: 75%;\n}\n.col-xs-8 {\n  width: 66.66666667%;\n}\n.col-xs-7 {\n  width: 58.33333333%;\n}\n.col-xs-6 {\n  width: 50%;\n}\n.col-xs-5 {\n  width: 41.66666667%;\n}\n.col-xs-4 {\n  width: 33.33333333%;\n}\n.col-xs-3 {\n  width: 25%;\n}\n.col-xs-2 {\n  width: 16.66666667%;\n}\n.col-xs-1 {\n  width: 8.33333333%;\n}\n.col-xs-pull-12 {\n  left: 100%;\n  right: auto;\n}\n.col-xs-pull-11 {\n  left: 91.66666667%;\n  right: auto;\n}\n.col-xs-pull-10 {\n  left: 83.33333333%;\n  right: auto;\n}\n.col-xs-pull-9 {\n  left: 75%;\n  right: auto;\n}\n.col-xs-pull-8 {\n  left: 66.66666667%;\n  right: auto;\n}\n.col-xs-pull-7 {\n  left: 58.33333333%;\n  right: auto;\n}\n.col-xs-pull-6 {\n  left: 50%;\n  right: auto;\n}\n.col-xs-pull-5 {\n  left: 41.66666667%;\n  right: auto;\n}\n.col-xs-pull-4 {\n  left: 33.33333333%;\n  right: auto;\n}\n.col-xs-pull-3 {\n  left: 25%;\n  right: auto;\n}\n.col-xs-pull-2 {\n  left: 16.66666667%;\n  right: auto;\n}\n.col-xs-pull-1 {\n  left: 8.33333333%;\n  right: auto;\n}\n.col-xs-pull-0 {\n  left: auto;\n  right: auto;\n}\n.col-xs-push-12 {\n  right: 100%;\n  left: 0;\n}\n.col-xs-push-11 {\n  right: 91.66666667%;\n  left: 0;\n}\n.col-xs-push-10 {\n  right: 83.33333333%;\n  left: 0;\n}\n.col-xs-push-9 {\n  right: 75%;\n  left: 0;\n}\n.col-xs-push-8 {\n  right: 66.66666667%;\n  left: 0;\n}\n.col-xs-push-7 {\n  right: 58.33333333%;\n  left: 0;\n}\n.col-xs-push-6 {\n  right: 50%;\n  left: 0;\n}\n.col-xs-push-5 {\n  right: 41.66666667%;\n  left: 0;\n}\n.col-xs-push-4 {\n  right: 33.33333333%;\n  left: 0;\n}\n.col-xs-push-3 {\n  right: 25%;\n  left: 0;\n}\n.col-xs-push-2 {\n  right: 16.66666667%;\n  left: 0;\n}\n.col-xs-push-1 {\n  right: 8.33333333%;\n  left: 0;\n}\n.col-xs-push-0 {\n  right: auto;\n  left: 0;\n}\n.col-xs-offset-12 {\n  margin-right: 100%;\n  margin-left: 0;\n}\n.col-xs-offset-11 {\n  margin-right: 91.66666667%;\n  margin-left: 0;\n}\n.col-xs-offset-10 {\n  margin-right: 83.33333333%;\n  margin-left: 0;\n}\n.col-xs-offset-9 {\n  margin-right: 75%;\n  margin-left: 0;\n}\n.col-xs-offset-8 {\n  margin-right: 66.66666667%;\n  margin-left: 0;\n}\n.col-xs-offset-7 {\n  margin-right: 58.33333333%;\n  margin-left: 0;\n}\n.col-xs-offset-6 {\n  margin-right: 50%;\n  margin-left: 0;\n}\n.col-xs-offset-5 {\n  margin-right: 41.66666667%;\n  margin-left: 0;\n}\n.col-xs-offset-4 {\n  margin-right: 33.33333333%;\n  margin-left: 0;\n}\n.col-xs-offset-3 {\n  margin-right: 25%;\n  margin-left: 0;\n}\n.col-xs-offset-2 {\n  margin-right: 16.66666667%;\n  margin-left: 0;\n}\n.col-xs-offset-1 {\n  margin-right: 8.33333333%;\n  margin-left: 0;\n}\n.col-xs-offset-0 {\n  margin-right: 0%;\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n    float: right;\n  }\n  .col-sm-12 {\n    width: 100%;\n  }\n  .col-sm-11 {\n    width: 91.66666667%;\n  }\n  .col-sm-10 {\n    width: 83.33333333%;\n  }\n  .col-sm-9 {\n    width: 75%;\n  }\n  .col-sm-8 {\n    width: 66.66666667%;\n  }\n  .col-sm-7 {\n    width: 58.33333333%;\n  }\n  .col-sm-6 {\n    width: 50%;\n  }\n  .col-sm-5 {\n    width: 41.66666667%;\n  }\n  .col-sm-4 {\n    width: 33.33333333%;\n  }\n  .col-sm-3 {\n    width: 25%;\n  }\n  .col-sm-2 {\n    width: 16.66666667%;\n  }\n  .col-sm-1 {\n    width: 8.33333333%;\n  }\n  .col-sm-pull-12 {\n    left: 100%;\n    right: auto;\n  }\n  .col-sm-pull-11 {\n    left: 91.66666667%;\n    right: auto;\n  }\n  .col-sm-pull-10 {\n    left: 83.33333333%;\n    right: auto;\n  }\n  .col-sm-pull-9 {\n    left: 75%;\n    right: auto;\n  }\n  .col-sm-pull-8 {\n    left: 66.66666667%;\n    right: auto;\n  }\n  .col-sm-pull-7 {\n    left: 58.33333333%;\n    right: auto;\n  }\n  .col-sm-pull-6 {\n    left: 50%;\n    right: auto;\n  }\n  .col-sm-pull-5 {\n    left: 41.66666667%;\n    right: auto;\n  }\n  .col-sm-pull-4 {\n    left: 33.33333333%;\n    right: auto;\n  }\n  .col-sm-pull-3 {\n    left: 25%;\n    right: auto;\n  }\n  .col-sm-pull-2 {\n    left: 16.66666667%;\n    right: auto;\n  }\n  .col-sm-pull-1 {\n    left: 8.33333333%;\n    right: auto;\n  }\n  .col-sm-pull-0 {\n    left: auto;\n    right: auto;\n  }\n  .col-sm-push-12 {\n    right: 100%;\n    left: 0;\n  }\n  .col-sm-push-11 {\n    right: 91.66666667%;\n    left: 0;\n  }\n  .col-sm-push-10 {\n    right: 83.33333333%;\n    left: 0;\n  }\n  .col-sm-push-9 {\n    right: 75%;\n    left: 0;\n  }\n  .col-sm-push-8 {\n    right: 66.66666667%;\n    left: 0;\n  }\n  .col-sm-push-7 {\n    right: 58.33333333%;\n    left: 0;\n  }\n  .col-sm-push-6 {\n    right: 50%;\n    left: 0;\n  }\n  .col-sm-push-5 {\n    right: 41.66666667%;\n    left: 0;\n  }\n  .col-sm-push-4 {\n    right: 33.33333333%;\n    left: 0;\n  }\n  .col-sm-push-3 {\n    right: 25%;\n    left: 0;\n  }\n  .col-sm-push-2 {\n    right: 16.66666667%;\n    left: 0;\n  }\n  .col-sm-push-1 {\n    right: 8.33333333%;\n    left: 0;\n  }\n  .col-sm-push-0 {\n    right: auto;\n    left: 0;\n  }\n  .col-sm-offset-12 {\n    margin-right: 100%;\n    margin-left: 0;\n  }\n  .col-sm-offset-11 {\n    margin-right: 91.66666667%;\n    margin-left: 0;\n  }\n  .col-sm-offset-10 {\n    margin-right: 83.33333333%;\n    margin-left: 0;\n  }\n  .col-sm-offset-9 {\n    margin-right: 75%;\n    margin-left: 0;\n  }\n  .col-sm-offset-8 {\n    margin-right: 66.66666667%;\n    margin-left: 0;\n  }\n  .col-sm-offset-7 {\n    margin-right: 58.33333333%;\n    margin-left: 0;\n  }\n  .col-sm-offset-6 {\n    margin-right: 50%;\n    margin-left: 0;\n  }\n  .col-sm-offset-5 {\n    margin-right: 41.66666667%;\n    margin-left: 0;\n  }\n  .col-sm-offset-4 {\n    margin-right: 33.33333333%;\n    margin-left: 0;\n  }\n  .col-sm-offset-3 {\n    margin-right: 25%;\n    margin-left: 0;\n  }\n  .col-sm-offset-2 {\n    margin-right: 16.66666667%;\n    margin-left: 0;\n  }\n  .col-sm-offset-1 {\n    margin-right: 8.33333333%;\n    margin-left: 0;\n  }\n  .col-sm-offset-0 {\n    margin-right: 0%;\n    margin-left: 0;\n  }\n}\n@media (min-width: 992px) {\n  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n    float: right;\n  }\n  .col-md-12 {\n    width: 100%;\n  }\n  .col-md-11 {\n    width: 91.66666667%;\n  }\n  .col-md-10 {\n    width: 83.33333333%;\n  }\n  .col-md-9 {\n    width: 75%;\n  }\n  .col-md-8 {\n    width: 66.66666667%;\n  }\n  .col-md-7 {\n    width: 58.33333333%;\n  }\n  .col-md-6 {\n    width: 50%;\n  }\n  .col-md-5 {\n    width: 41.66666667%;\n  }\n  .col-md-4 {\n    width: 33.33333333%;\n  }\n  .col-md-3 {\n    width: 25%;\n  }\n  .col-md-2 {\n    width: 16.66666667%;\n  }\n  .col-md-1 {\n    width: 8.33333333%;\n  }\n  .col-md-pull-12 {\n    left: 100%;\n    right: auto;\n  }\n  .col-md-pull-11 {\n    left: 91.66666667%;\n    right: auto;\n  }\n  .col-md-pull-10 {\n    left: 83.33333333%;\n    right: auto;\n  }\n  .col-md-pull-9 {\n    left: 75%;\n    right: auto;\n  }\n  .col-md-pull-8 {\n    left: 66.66666667%;\n    right: auto;\n  }\n  .col-md-pull-7 {\n    left: 58.33333333%;\n    right: auto;\n  }\n  .col-md-pull-6 {\n    left: 50%;\n    right: auto;\n  }\n  .col-md-pull-5 {\n    left: 41.66666667%;\n    right: auto;\n  }\n  .col-md-pull-4 {\n    left: 33.33333333%;\n    right: auto;\n  }\n  .col-md-pull-3 {\n    left: 25%;\n    right: auto;\n  }\n  .col-md-pull-2 {\n    left: 16.66666667%;\n    right: auto;\n  }\n  .col-md-pull-1 {\n    left: 8.33333333%;\n    right: auto;\n  }\n  .col-md-pull-0 {\n    left: auto;\n    right: auto;\n  }\n  .col-md-push-12 {\n    right: 100%;\n    left: 0;\n  }\n  .col-md-push-11 {\n    right: 91.66666667%;\n    left: 0;\n  }\n  .col-md-push-10 {\n    right: 83.33333333%;\n    left: 0;\n  }\n  .col-md-push-9 {\n    right: 75%;\n    left: 0;\n  }\n  .col-md-push-8 {\n    right: 66.66666667%;\n    left: 0;\n  }\n  .col-md-push-7 {\n    right: 58.33333333%;\n    left: 0;\n  }\n  .col-md-push-6 {\n    right: 50%;\n    left: 0;\n  }\n  .col-md-push-5 {\n    right: 41.66666667%;\n    left: 0;\n  }\n  .col-md-push-4 {\n    right: 33.33333333%;\n    left: 0;\n  }\n  .col-md-push-3 {\n    right: 25%;\n    left: 0;\n  }\n  .col-md-push-2 {\n    right: 16.66666667%;\n    left: 0;\n  }\n  .col-md-push-1 {\n    right: 8.33333333%;\n    left: 0;\n  }\n  .col-md-push-0 {\n    right: auto;\n    left: 0;\n  }\n  .col-md-offset-12 {\n    margin-right: 100%;\n    margin-left: 0;\n  }\n  .col-md-offset-11 {\n    margin-right: 91.66666667%;\n    margin-left: 0;\n  }\n  .col-md-offset-10 {\n    margin-right: 83.33333333%;\n    margin-left: 0;\n  }\n  .col-md-offset-9 {\n    margin-right: 75%;\n    margin-left: 0;\n  }\n  .col-md-offset-8 {\n    margin-right: 66.66666667%;\n    margin-left: 0;\n  }\n  .col-md-offset-7 {\n    margin-right: 58.33333333%;\n    margin-left: 0;\n  }\n  .col-md-offset-6 {\n    margin-right: 50%;\n    margin-left: 0;\n  }\n  .col-md-offset-5 {\n    margin-right: 41.66666667%;\n    margin-left: 0;\n  }\n  .col-md-offset-4 {\n    margin-right: 33.33333333%;\n    margin-left: 0;\n  }\n  .col-md-offset-3 {\n    margin-right: 25%;\n    margin-left: 0;\n  }\n  .col-md-offset-2 {\n    margin-right: 16.66666667%;\n    margin-left: 0;\n  }\n  .col-md-offset-1 {\n    margin-right: 8.33333333%;\n    margin-left: 0;\n  }\n  .col-md-offset-0 {\n    margin-right: 0%;\n    margin-left: 0;\n  }\n}\n@media (min-width: 1200px) {\n  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n    float: right;\n  }\n  .col-lg-12 {\n    width: 100%;\n  }\n  .col-lg-11 {\n    width: 91.66666667%;\n  }\n  .col-lg-10 {\n    width: 83.33333333%;\n  }\n  .col-lg-9 {\n    width: 75%;\n  }\n  .col-lg-8 {\n    width: 66.66666667%;\n  }\n  .col-lg-7 {\n    width: 58.33333333%;\n  }\n  .col-lg-6 {\n    width: 50%;\n  }\n  .col-lg-5 {\n    width: 41.66666667%;\n  }\n  .col-lg-4 {\n    width: 33.33333333%;\n  }\n  .col-lg-3 {\n    width: 25%;\n  }\n  .col-lg-2 {\n    width: 16.66666667%;\n  }\n  .col-lg-1 {\n    width: 8.33333333%;\n  }\n  .col-lg-pull-12 {\n    left: 100%;\n    right: auto;\n  }\n  .col-lg-pull-11 {\n    left: 91.66666667%;\n    right: auto;\n  }\n  .col-lg-pull-10 {\n    left: 83.33333333%;\n    right: auto;\n  }\n  .col-lg-pull-9 {\n    left: 75%;\n    right: auto;\n  }\n  .col-lg-pull-8 {\n    left: 66.66666667%;\n    right: auto;\n  }\n  .col-lg-pull-7 {\n    left: 58.33333333%;\n    right: auto;\n  }\n  .col-lg-pull-6 {\n    left: 50%;\n    right: auto;\n  }\n  .col-lg-pull-5 {\n    left: 41.66666667%;\n    right: auto;\n  }\n  .col-lg-pull-4 {\n    left: 33.33333333%;\n    right: auto;\n  }\n  .col-lg-pull-3 {\n    left: 25%;\n    right: auto;\n  }\n  .col-lg-pull-2 {\n    left: 16.66666667%;\n    right: auto;\n  }\n  .col-lg-pull-1 {\n    left: 8.33333333%;\n    right: auto;\n  }\n  .col-lg-pull-0 {\n    left: auto;\n    right: auto;\n  }\n  .col-lg-push-12 {\n    right: 100%;\n    left: 0;\n  }\n  .col-lg-push-11 {\n    right: 91.66666667%;\n    left: 0;\n  }\n  .col-lg-push-10 {\n    right: 83.33333333%;\n    left: 0;\n  }\n  .col-lg-push-9 {\n    right: 75%;\n    left: 0;\n  }\n  .col-lg-push-8 {\n    right: 66.66666667%;\n    left: 0;\n  }\n  .col-lg-push-7 {\n    right: 58.33333333%;\n    left: 0;\n  }\n  .col-lg-push-6 {\n    right: 50%;\n    left: 0;\n  }\n  .col-lg-push-5 {\n    right: 41.66666667%;\n    left: 0;\n  }\n  .col-lg-push-4 {\n    right: 33.33333333%;\n    left: 0;\n  }\n  .col-lg-push-3 {\n    right: 25%;\n    left: 0;\n  }\n  .col-lg-push-2 {\n    right: 16.66666667%;\n    left: 0;\n  }\n  .col-lg-push-1 {\n    right: 8.33333333%;\n    left: 0;\n  }\n  .col-lg-push-0 {\n    right: auto;\n    left: 0;\n  }\n  .col-lg-offset-12 {\n    margin-right: 100%;\n    margin-left: 0;\n  }\n  .col-lg-offset-11 {\n    margin-right: 91.66666667%;\n    margin-left: 0;\n  }\n  .col-lg-offset-10 {\n    margin-right: 83.33333333%;\n    margin-left: 0;\n  }\n  .col-lg-offset-9 {\n    margin-right: 75%;\n    margin-left: 0;\n  }\n  .col-lg-offset-8 {\n    margin-right: 66.66666667%;\n    margin-left: 0;\n  }\n  .col-lg-offset-7 {\n    margin-right: 58.33333333%;\n    margin-left: 0;\n  }\n  .col-lg-offset-6 {\n    margin-right: 50%;\n    margin-left: 0;\n  }\n  .col-lg-offset-5 {\n    margin-right: 41.66666667%;\n    margin-left: 0;\n  }\n  .col-lg-offset-4 {\n    margin-right: 33.33333333%;\n    margin-left: 0;\n  }\n  .col-lg-offset-3 {\n    margin-right: 25%;\n    margin-left: 0;\n  }\n  .col-lg-offset-2 {\n    margin-right: 16.66666667%;\n    margin-left: 0;\n  }\n  .col-lg-offset-1 {\n    margin-right: 8.33333333%;\n    margin-left: 0;\n  }\n  .col-lg-offset-0 {\n    margin-right: 0%;\n    margin-left: 0;\n  }\n}\ncaption {\n  text-align: right;\n}\nth {\n  text-align: right;\n}\n@media screen and (max-width: 767px) {\n  .table-responsive > .table-bordered {\n    border: 0;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:first-child,\n  .table-responsive > .table-bordered > tbody > tr > th:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n  .table-responsive > .table-bordered > thead > tr > td:first-child,\n  .table-responsive > .table-bordered > tbody > tr > td:first-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n    border-right: 0;\n    border-left: initial;\n  }\n  .table-responsive > .table-bordered > thead > tr > th:last-child,\n  .table-responsive > .table-bordered > tbody > tr > th:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n  .table-responsive > .table-bordered > thead > tr > td:last-child,\n  .table-responsive > .table-bordered > tbody > tr > td:last-child,\n  .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n    border-left: 0;\n    border-right: initial;\n  }\n}\n.radio label,\n.checkbox label {\n  padding-right: 20px;\n  padding-left: initial;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  margin-right: -20px;\n  margin-left: auto;\n}\n.radio-inline,\n.checkbox-inline {\n  padding-right: 20px;\n  padding-left: 0;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-right: 10px;\n  margin-left: 0;\n}\n.has-feedback .form-control {\n  padding-left: 42.5px;\n  padding-right: 12px;\n}\n.form-control-feedback {\n  left: 0;\n  right: auto;\n}\n@media (min-width: 768px) {\n  .form-inline label {\n    padding-right: 0;\n    padding-left: initial;\n  }\n  .form-inline .radio input[type=\"radio\"],\n  .form-inline .checkbox input[type=\"checkbox\"] {\n    margin-right: 0;\n    margin-left: auto;\n  }\n}\n@media (min-width: 768px) {\n  .form-horizontal .control-label {\n    text-align: left;\n  }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n  left: 15px;\n  right: auto;\n}\n.caret {\n  margin-right: 2px;\n  margin-left: 0;\n}\n.dropdown-menu {\n  right: 0;\n  left: auto;\n  float: left;\n  text-align: right;\n}\n.dropdown-menu.pull-right {\n  left: 0;\n  right: auto;\n  float: right;\n}\n.dropdown-menu-right {\n  left: auto;\n  right: 0;\n}\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n@media (min-width: 768px) {\n  .navbar-right .dropdown-menu {\n    left: auto;\n    right: 0;\n  }\n  .navbar-right .dropdown-menu-left {\n    left: 0;\n    right: auto;\n  }\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n  float: right;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n  margin-right: -1px;\n  margin-left: 0px;\n}\n.btn-toolbar {\n  margin-right: -5px;\n  margin-left: 0px;\n}\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n  float: right;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n  margin-right: 5px;\n  margin-left: 0px;\n}\n.btn-group > .btn:first-child {\n  margin-right: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  border-top-left-radius: 4px;\n  border-bottom-left-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn-group > .btn-group {\n  float: right;\n}\n.btn-group.btn-group-justified > .btn,\n.btn-group.btn-group-justified > .btn-group {\n  float: none;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child > .btn:last-child,\n.btn-group > .btn-group:first-child > .dropdown-toggle {\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.btn-group > .btn-group:last-child > .btn:first-child {\n  border-top-left-radius: 4px;\n  border-bottom-left-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.btn .caret {\n  margin-right: 0;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n  margin-top: -1px;\n  margin-right: 0;\n}\n.input-group .form-control {\n  float: right;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  border-bottom-right-radius: 4px;\n  border-top-right-radius: 4px;\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.input-group-addon:first-child {\n  border-right-width: 1px;\n  border-right-style: solid;\n  border-left: 0px;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  border-bottom-left-radius: 4px;\n  border-top-left-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.input-group-addon:last-child {\n  border-left-width: 1px;\n  border-left-style: solid;\n  border-right: 0px;\n}\n.input-group-btn > .btn + .btn {\n  margin-right: -1px;\n  margin-left: auto;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n  margin-left: -1px;\n  margin-right: auto;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n  margin-right: -1px;\n  margin-left: auto;\n}\n.nav {\n  padding-right: 0;\n  padding-left: initial;\n}\n.nav-tabs > li {\n  float: right;\n}\n.nav-tabs > li > a {\n  margin-left: auto;\n  margin-right: -2px;\n  border-radius: 4px 4px 0 0;\n}\n.nav-pills > li {\n  float: right;\n}\n.nav-pills > li > a {\n  border-radius: 4px;\n}\n.nav-pills > li + li {\n  margin-right: 2px;\n  margin-left: auto;\n}\n.nav-stacked > li {\n  float: none;\n}\n.nav-stacked > li + li {\n  margin-right: 0;\n  margin-left: auto;\n}\n.nav-justified > .dropdown .dropdown-menu {\n  right: auto;\n}\n.nav-tabs-justified > li > a {\n  margin-left: 0;\n  margin-right: auto;\n}\n@media (min-width: 768px) {\n  .nav-tabs-justified > li > a {\n    border-radius: 4px 4px 0 0;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-header {\n    float: right;\n  }\n}\n.navbar-collapse {\n  padding-right: 15px;\n  padding-left: 15px;\n}\n.navbar-brand {\n  float: right;\n}\n@media (min-width: 768px) {\n  .navbar > .container .navbar-brand,\n  .navbar > .container-fluid .navbar-brand {\n    margin-right: -15px;\n    margin-left: auto;\n  }\n}\n.navbar-toggle {\n  float: left;\n  margin-left: 15px;\n  margin-right: auto;\n}\n@media (max-width: 767px) {\n  .navbar-nav .open .dropdown-menu > li > a,\n  .navbar-nav .open .dropdown-menu .dropdown-header {\n    padding: 5px 25px 5px 15px;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-nav {\n    float: right;\n  }\n  .navbar-nav > li {\n    float: right;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-left.flip {\n    float: right !important;\n  }\n  .navbar-right:last-child {\n    margin-left: -15px;\n    margin-right: auto;\n  }\n  .navbar-right.flip {\n    float: left !important;\n    margin-left: -15px;\n    margin-right: auto;\n  }\n  .navbar-right .dropdown-menu {\n    left: 0;\n    right: auto;\n  }\n}\n@media (min-width: 768px) {\n  .navbar-text {\n    float: right;\n  }\n  .navbar-text.navbar-right:last-child {\n    margin-left: 0;\n    margin-right: auto;\n  }\n}\n.pagination {\n  padding-right: 0;\n}\n.pagination > li > a,\n.pagination > li > span {\n  float: right;\n  margin-right: -1px;\n  margin-left: 0px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n  margin-left: 0;\n  border-bottom-right-radius: 4px;\n  border-top-right-radius: 4px;\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n  margin-right: -1px;\n  border-bottom-left-radius: 4px;\n  border-top-left-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.pager {\n  padding-right: 0;\n  padding-left: initial;\n}\n.pager .next > a,\n.pager .next > span {\n  float: left;\n}\n.pager .previous > a,\n.pager .previous > span {\n  float: right;\n}\n.nav-pills > li > a > .badge {\n  margin-left: 0px;\n  margin-right: 3px;\n}\n.list-group-item > .badge {\n  float: left;\n}\n.list-group-item > .badge + .badge {\n  margin-left: 5px;\n  margin-right: auto;\n}\n.alert-dismissable,\n.alert-dismissible {\n  padding-left: 35px;\n  padding-right: 15px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n  right: auto;\n  left: -21px;\n}\n.progress-bar {\n  float: right;\n}\n.media > .pull-left {\n  margin-right: 10px;\n}\n.media > .pull-left.flip {\n  margin-right: 0;\n  margin-left: 10px;\n}\n.media > .pull-right {\n  margin-left: 10px;\n}\n.media > .pull-right.flip {\n  margin-left: 0;\n  margin-right: 10px;\n}\n.media-right,\n.media > .pull-right {\n  padding-right: 10px;\n  padding-left: initial;\n}\n.media-left,\n.media > .pull-left {\n  padding-left: 10px;\n  padding-right: initial;\n}\n.media-list {\n  padding-right: 0;\n  padding-left: initial;\n  list-style: none;\n}\n.list-group {\n  padding-right: 0;\n  padding-left: initial;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n  border-top-right-radius: 3px;\n  border-top-left-radius: 0;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n  border-top-left-radius: 3px;\n  border-top-right-radius: 0;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n  border-bottom-left-radius: 3px;\n  border-top-right-radius: 0;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n  border-bottom-right-radius: 3px;\n  border-top-left-radius: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n  border-right: 0;\n  border-left: none;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n  border-right: none;\n  border-left: 0;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object {\n  right: 0;\n  left: auto;\n}\n.close {\n  float: left;\n}\n.modal-footer {\n  text-align: left;\n}\n.modal-footer .btn + .btn {\n  margin-left: auto;\n  margin-right: 5px;\n}\n.modal-footer .btn-group .btn + .btn {\n  margin-right: -1px;\n  margin-left: auto;\n}\n.modal-footer .btn-block + .btn-block {\n  margin-right: 0;\n  margin-left: auto;\n}\n.popover {\n  left: auto;\n  text-align: right;\n}\n.popover.top > .arrow {\n  right: 50%;\n  left: auto;\n  margin-right: -11px;\n  margin-left: auto;\n}\n.popover.top > .arrow:after {\n  margin-right: -10px;\n  margin-left: auto;\n}\n.popover.bottom > .arrow {\n  right: 50%;\n  left: auto;\n  margin-right: -11px;\n  margin-left: auto;\n}\n.popover.bottom > .arrow:after {\n  margin-right: -10px;\n  margin-left: auto;\n}\n.carousel-control {\n  right: 0;\n  bottom: 0;\n}\n.carousel-control.left {\n  right: auto;\n  left: 0;\n  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));\n  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n  left: auto;\n  right: 0;\n  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));\n  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n  left: 50%;\n  right: auto;\n  margin-right: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n  right: 50%;\n  left: auto;\n  margin-left: -10px;\n}\n.carousel-indicators {\n  right: 50%;\n  left: 0;\n  margin-right: -30%;\n  margin-left: 0;\n  padding-left: 0;\n}\n@media screen and (min-width: 768px) {\n  .carousel-control .glyphicon-chevron-left,\n  .carousel-control .icon-prev {\n    margin-left: 0;\n    margin-right: -15px;\n  }\n  .carousel-control .glyphicon-chevron-right,\n  .carousel-control .icon-next {\n    margin-left: 0;\n    margin-right: -15px;\n  }\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n}\n.pull-right.flip {\n  float: left !important;\n}\n.pull-left.flip {\n  float: right !important;\n}\n/*# sourceMappingURL=bootstrap-rtl.css.map */"
  },
  {
    "path": "public/admin/css/plugins/chosen/chosen.css",
    "content": "/*!\nChosen, a Select Box Enhancer for jQuery and Prototype\nby Patrick Filler for Harvest, http://getharvest.com\n\nVersion 1.1.0\nFull source at https://github.com/harvesthq/chosen\nCopyright (c) 2011 Harvest http://getharvest.com\n\nMIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md\nThis file is generated by `grunt build`, do not edit it by hand.\n*/\n\n/* @group Base */\n.chosen-container {\n    position: relative;\n    display: inline-block;\n    vertical-align: middle;\n    font-size: 13px;\n    zoom: 1;\n    *display: inline;\n    -webkit-user-select: none;\n    -moz-user-select: none;\n    user-select: none;\n}\n.chosen-container .chosen-drop {\n    position: absolute;\n    top: 100%;\n    left: -9999px;\n    z-index: 1010;\n    -webkit-box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    box-sizing: border-box;\n    width: 100%;\n    border: 1px solid #aaa;\n    border-top: 0;\n    background: #fff;\n    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);\n}\n.chosen-container.chosen-with-drop .chosen-drop {\n    left: 0;\n}\n.chosen-container a {\n    cursor: pointer;\n}\n\n/* @end */\n/* @group Single Chosen */\n.chosen-container-single .chosen-single {\n    position: relative;\n    display: block;\n    overflow: hidden;\n    padding: 0 0 0 8px;\n    height: 23px;\n    border: 1px solid #aaa;\n    border-radius: 5px;\n    background-color: #fff;\n    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));\n    background: -webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n    background: -moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n    background: -o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n    background: linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);\n    background-clip: padding-box;\n    box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);\n    color: #444;\n    text-decoration: none;\n    white-space: nowrap;\n    line-height: 24px;\n}\n.chosen-container-single .chosen-default {\n    color: #999;\n}\n.chosen-container-single .chosen-single span {\n    display: block;\n    overflow: hidden;\n    margin-right: 26px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n}\n.chosen-container-single .chosen-single-with-deselect span {\n    margin-right: 38px;\n}\n.chosen-container-single .chosen-single abbr {\n    position: absolute;\n    top: 6px;\n    right: 26px;\n    display: block;\n    width: 12px;\n    height: 12px;\n    background: url('chosen-sprite.png') -42px 1px no-repeat;\n    font-size: 1px;\n}\n.chosen-container-single .chosen-single abbr:hover {\n    background-position: -42px -10px;\n}\n.chosen-container-single.chosen-disabled .chosen-single abbr:hover {\n    background-position: -42px -10px;\n}\n.chosen-container-single .chosen-single div {\n    position: absolute;\n    top: 0;\n    right: 0;\n    display: block;\n    width: 18px;\n    height: 100%;\n}\n.chosen-container-single .chosen-single div b {\n    display: block;\n    width: 100%;\n    height: 100%;\n    background: url('chosen-sprite.png') no-repeat 0px 2px;\n}\n.chosen-container-single .chosen-search {\n    position: relative;\n    z-index: 1010;\n    margin: 0;\n    padding: 3px 4px;\n    white-space: nowrap;\n}\n.chosen-container-single .chosen-search input[type=\"text\"] {\n    -webkit-box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    box-sizing: border-box;\n    margin: 1px 0;\n    padding: 4px 20px 4px 5px;\n    width: 100%;\n    height: auto;\n    outline: 0;\n    border: 1px solid #aaa;\n    background: white url('chosen-sprite.png') no-repeat 100% -20px;\n    background: url('chosen-sprite.png') no-repeat 100% -20px;\n    font-size: 1em;\n    font-family: sans-serif;\n    line-height: normal;\n    border-radius: 0;\n}\n.chosen-container-single .chosen-drop {\n    margin-top: -1px;\n    border-radius: 0 0 4px 4px;\n    background-clip: padding-box;\n}\n.chosen-container-single.chosen-container-single-nosearch .chosen-search {\n    position: absolute;\n    left: -9999px;\n}\n\n/* @end */\n/* @group Results */\n.chosen-container .chosen-results {\n    position: relative;\n    overflow-x: hidden;\n    overflow-y: auto;\n    margin: 0 4px 4px 0;\n    padding: 0 0 0 4px;\n    max-height: 240px;\n    -webkit-overflow-scrolling: touch;\n}\n.chosen-container .chosen-results li {\n    display: none;\n    margin: 0;\n    padding: 5px 6px;\n    list-style: none;\n    line-height: 15px;\n    -webkit-touch-callout: none;\n}\n.chosen-container .chosen-results li.active-result {\n    display: list-item;\n    cursor: pointer;\n}\n.chosen-container .chosen-results li.disabled-result {\n    display: list-item;\n    color: #ccc;\n    cursor: default;\n}\n.chosen-container .chosen-results li.highlighted {\n    background-color: #3875d7;\n    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));\n    background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);\n    background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);\n    background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);\n    background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);\n    color: #fff;\n}\n.chosen-container .chosen-results li.no-results {\n    display: list-item;\n    background: #f4f4f4;\n}\n.chosen-container .chosen-results li.group-result {\n    display: list-item;\n    font-weight: bold;\n    cursor: default;\n}\n.chosen-container .chosen-results li.group-option {\n    padding-left: 15px;\n}\n.chosen-container .chosen-results li em {\n    font-style: normal;\n    text-decoration: underline;\n}\n\n/* @end */\n/* @group Multi Chosen */\n.chosen-container-multi .chosen-choices {\n    -moz-box-sizing: border-box;\n    background-color: #FFFFFF;\n    border: 1px solid #CBD5DD;\n    border-radius: 2px;\n    cursor: text;\n    height: auto !important;\n    margin: 0;\n    min-height: 30px;\n    overflow: hidden;\n    padding: 2px;\n    position: relative;\n    width: 100%;\n}\n.chosen-container-multi .chosen-choices li {\n    float: left;\n    list-style: none;\n}\n.chosen-container-multi .chosen-choices li.search-field {\n    margin: 0;\n    padding: 0;\n    white-space: nowrap;\n}\n.chosen-container-multi .chosen-choices li.search-field input[type=\"text\"] {\n    margin: 1px 0;\n    padding: 5px;\n    height: 25px;\n    outline: 0;\n    border: 0 !important;\n    background: transparent !important;\n    box-shadow: none;\n    color: #666;\n    font-size: 100%;\n    font-family: sans-serif;\n    line-height: normal;\n    border-radius: 0;\n}\n.chosen-container-multi .chosen-choices li.search-field .default {\n    color: #999;\n}\n.chosen-container-multi .chosen-choices li.search-choice {\n    position: relative;\n    margin: 3px 0 3px 5px;\n    padding: 3px 20px 3px 5px;\n    border: 1px solid #aaa;\n    border-radius: 3px;\n    background-color: #e4e4e4;\n    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));\n    background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n    background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n    background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n    background-clip: padding-box;\n    box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);\n    color: #333;\n    line-height: 13px;\n    cursor: default;\n}\n.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {\n    position: absolute;\n    top: 4px;\n    right: 3px;\n    display: block;\n    width: 12px;\n    height: 12px;\n    background: url('chosen-sprite.png') -42px 1px no-repeat;\n    font-size: 1px;\n}\n.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {\n    background-position: -42px -10px;\n}\n.chosen-container-multi .chosen-choices li.search-choice-disabled {\n    padding-right: 5px;\n    border: 1px solid #ccc;\n    background-color: #e4e4e4;\n    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));\n    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n    background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);\n    color: #666;\n}\n.chosen-container-multi .chosen-choices li.search-choice-focus {\n    background: #d4d4d4;\n}\n.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {\n    background-position: -42px -10px;\n}\n.chosen-container-multi .chosen-results {\n    margin: 0;\n    padding: 0;\n}\n.chosen-container-multi .chosen-drop .result-selected {\n    display: list-item;\n    color: #ccc;\n    cursor: default;\n}\n\n/* @end */\n/* @group Active  */\n.chosen-container-active .chosen-single {\n    border: 1px solid #5897fb;\n    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);\n}\n.chosen-container-active.chosen-with-drop .chosen-single {\n    border: 1px solid #aaa;\n    -moz-border-radius-bottomright: 0;\n    border-bottom-right-radius: 0;\n    -moz-border-radius-bottomleft: 0;\n    border-bottom-left-radius: 0;\n    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));\n    background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);\n    background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);\n    background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);\n    background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);\n    box-shadow: 0 1px 0 #fff inset;\n}\n.chosen-container-active.chosen-with-drop .chosen-single div {\n    border-left: none;\n    background: transparent;\n}\n.chosen-container-active.chosen-with-drop .chosen-single div b {\n    background-position: -18px 2px;\n}\n.chosen-container-active .chosen-choices {\n    border: 1px solid #5897fb;\n    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);\n}\n.chosen-container-active .chosen-choices li.search-field input[type=\"text\"] {\n    color: #111 !important;\n}\n\n/* @end */\n/* @group Disabled Support */\n.chosen-disabled {\n    opacity: 0.5 !important;\n    cursor: default;\n}\n.chosen-disabled .chosen-single {\n    cursor: default;\n}\n.chosen-disabled .chosen-choices .search-choice .search-choice-close {\n    cursor: default;\n}\n\n/* @end */\n/* @group Right to Left */\n.chosen-rtl {\n    text-align: right;\n}\n.chosen-rtl .chosen-single {\n    overflow: visible;\n    padding: 0 8px 0 0;\n}\n.chosen-rtl .chosen-single span {\n    margin-right: 0;\n    margin-left: 26px;\n    direction: rtl;\n}\n.chosen-rtl .chosen-single-with-deselect span {\n    margin-left: 38px;\n}\n.chosen-rtl .chosen-single div {\n    right: auto;\n    left: 3px;\n}\n.chosen-rtl .chosen-single abbr {\n    right: auto;\n    left: 26px;\n}\n.chosen-rtl .chosen-choices li {\n    float: right;\n}\n.chosen-rtl .chosen-choices li.search-field input[type=\"text\"] {\n    direction: rtl;\n}\n.chosen-rtl .chosen-choices li.search-choice {\n    margin: 3px 5px 3px 0;\n    padding: 3px 5px 3px 19px;\n}\n.chosen-rtl .chosen-choices li.search-choice .search-choice-close {\n    right: auto;\n    left: 4px;\n}\n.chosen-rtl.chosen-container-single-nosearch .chosen-search,\n.chosen-rtl .chosen-drop {\n    left: 9999px;\n}\n.chosen-rtl.chosen-container-single .chosen-results {\n    margin: 0 0 4px 4px;\n    padding: 0 4px 0 0;\n}\n.chosen-rtl .chosen-results li.group-option {\n    padding-right: 15px;\n    padding-left: 0;\n}\n.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {\n    border-right: none;\n}\n.chosen-rtl .chosen-search input[type=\"text\"] {\n    padding: 4px 5px 4px 20px;\n    background: white url('chosen-sprite.png') no-repeat -30px -20px;\n    background: url('chosen-sprite.png') no-repeat -30px -20px;\n    direction: rtl;\n}\n.chosen-rtl.chosen-container-single .chosen-single div b {\n    background-position: 6px 2px;\n}\n.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {\n    background-position: -12px 2px;\n}\n\n/* @end */\n/* @group Retina compatibility */\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {\n    .chosen-rtl .chosen-search input[type=\"text\"],\n    .chosen-container-single .chosen-single abbr,\n    .chosen-container-single .chosen-single div b,\n    .chosen-container-single .chosen-search input[type=\"text\"],\n    .chosen-container-multi .chosen-choices .search-choice .search-choice-close,\n    .chosen-container .chosen-results-scroll-down span,\n    .chosen-container .chosen-results-scroll-up span {\n        background-image: url('chosen-sprite@2x.png') !important;\n        background-size: 52px 37px !important;\n        background-repeat: no-repeat !important;\n    }\n}\n/* @end */\n"
  },
  {
    "path": "public/admin/css/plugins/codemirror/ambiance.css",
    "content": "/* ambiance theme for codemirror */\n\n/* Color scheme */\n\n.cm-s-ambiance .cm-keyword { color: #cda869; }\n.cm-s-ambiance .cm-atom { color: #CF7EA9; }\n.cm-s-ambiance .cm-number { color: #78CF8A; }\n.cm-s-ambiance .cm-def { color: #aac6e3; }\n.cm-s-ambiance .cm-variable { color: #ffb795; }\n.cm-s-ambiance .cm-variable-2 { color: #eed1b3; }\n.cm-s-ambiance .cm-variable-3 { color: #faded3; }\n.cm-s-ambiance .cm-property { color: #eed1b3; }\n.cm-s-ambiance .cm-operator {color: #fa8d6a;}\n.cm-s-ambiance .cm-comment { color: #555; font-style:italic; }\n.cm-s-ambiance .cm-string { color: #8f9d6a; }\n.cm-s-ambiance .cm-string-2 { color: #9d937c; }\n.cm-s-ambiance .cm-meta { color: #D2A8A1; }\n.cm-s-ambiance .cm-qualifier { color: yellow; }\n.cm-s-ambiance .cm-builtin { color: #9999cc; }\n.cm-s-ambiance .cm-bracket { color: #24C2C7; }\n.cm-s-ambiance .cm-tag { color: #fee4ff }\n.cm-s-ambiance .cm-attribute {  color: #9B859D; }\n.cm-s-ambiance .cm-header {color: blue;}\n.cm-s-ambiance .cm-quote { color: #24C2C7; }\n.cm-s-ambiance .cm-hr { color: pink; }\n.cm-s-ambiance .cm-link { color: #F4C20B; }\n.cm-s-ambiance .cm-special { color: #FF9D00; }\n.cm-s-ambiance .cm-error { color: #AF2018; }\n\n.cm-s-ambiance .CodeMirror-matchingbracket { color: #0f0; }\n.cm-s-ambiance .CodeMirror-nonmatchingbracket { color: #f22; }\n\n.cm-s-ambiance .CodeMirror-selected {\n  background: rgba(255, 255, 255, 0.15);\n}\n.cm-s-ambiance.CodeMirror-focused .CodeMirror-selected {\n  background: rgba(255, 255, 255, 0.10);\n}\n\n/* Editor styling */\n\n.cm-s-ambiance.CodeMirror {\n  line-height: 1.40em;\n  color: #E6E1DC;\n  background-color: #202020;\n  -webkit-box-shadow: inset 0 0 10px black;\n  -moz-box-shadow: inset 0 0 10px black;\n  box-shadow: inset 0 0 10px black;\n}\n\n.cm-s-ambiance .CodeMirror-gutters {\n  background: #3D3D3D;\n  border-right: 1px solid #4D4D4D;\n  box-shadow: 0 10px 20px black;\n}\n\n.cm-s-ambiance .CodeMirror-linenumber {\n  text-shadow: 0px 1px 1px #4d4d4d;\n  color: #111;\n  padding: 0 5px;\n}\n\n.cm-s-ambiance .CodeMirror-guttermarker { color: #aaa; }\n.cm-s-ambiance .CodeMirror-guttermarker-subtle { color: #111; }\n\n.cm-s-ambiance .CodeMirror-lines .CodeMirror-cursor {\n  border-left: 1px solid #7991E8;\n}\n\n.cm-s-ambiance .CodeMirror-activeline-background {\n  background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.031);\n}\n\n.cm-s-ambiance.CodeMirror,\n.cm-s-ambiance .CodeMirror-gutters {\n  background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAQAAAAHUWYVAABFFUlEQVQYGbzBCeDVU/74/6fj9HIcx/FRHx9JCFmzMyGRURhLZIkUsoeRfUjS2FNDtr6WkMhO9sm+S8maJfu+Jcsg+/o/c+Z4z/t97/vezy3z+z8ekGlnYICG/o7gdk+wmSHZ1z4pJItqapjoKXWahm8NmV6eOTbWUOp6/6a/XIg6GQqmenJ2lDHyvCFZ2cBDbmtHA043VFhHwXxClWmeYAdLhV00Bd85go8VmaFCkbVkzlQENzfBDZ5gtN7HwF0KDrTwJ0dypSOzpaKCMwQHKTIreYIxlmhXTzTWkVm+LTynZhiSBT3RZQ7aGfjGEd3qyXQ1FDymqbKxpspERQN2MiRjNZlFFQXfCNFm9nM1zpAsoYjmtRTc5ajwuaXc5xrWskT97RaKzAGe5ARHhVUsDbjKklziiX5WROcJwSNCNI+9w1Jwv4Zb2r7lCMZ4oq5C0EdTx+2GzNuKpJ+iFf38JEWkHJn9DNF7mmBDITrWEg0VWL3pHU20tSZnuqWu+R3BtYa8XxV1HO7GyD32UkOpL/yDloINFTmvtId+nmAjxRw40VMwVKiwrKLE4bK5UOVntYwhOcSSXKrJHKPJedocpGjVz/ZMIbnYUPB10/eKCrs5apqpgVmWzBYWpmtKHecJPjaUuEgRDDaU0oZghCJ6zNMQ5ZhDYx05r5v2muQdM0EILtXUsaKiQX9WMEUotagQzFbUNN6NUPC2nm5pxEWGCjMc3GdJHjSU2kORLK/JGSrkfGEIjncU/CYUnOipoYemwj8tST9NsJmB7TUVXtbUtXATJVZXBMvYeTXJfobgJUPmGMP/yFaWonaa6BcFO3nqcIqCozSZoZoSr1g4zJOzuyGnxTEX3lUEJ7WcZgme8ddaWvWJo2AJR9DZU3CUIbhCSG6ybSwN6qtJVnCU2svDTP2ZInOw2cBTrqtQahtNZn9NcJ4l2NaSmSkkP1noZWnVwkLmdUPOwLZEwy2Z3S3R+4rIG9hcbpPXHFVWcQdZkn2FOta3cKWQnNRC5g1LsJah4GCzSVsKnCOY5OAFRTBekyyryeyilhFKva75r4Mc0aWanGEaThcy31s439KKxTzJYY5WTHPU1FtIHjQU3Oip4xlNzj/lBw23dYZVliQa7WAXf4shetcQfatI+jWRDBPmyNeW6A1P5kdDgyYJlba0BIM8BZu1JfrFwItyjcAMR3K0BWOIrtMEXyhyrlVEx3ui5dUBjmB/Q3CXW85R4mBD0s7B+4q5tKUjOlb9qqmhi5AZ6GFIC5HXtOobdYGlVdMVbNJ8toNTFcHxnoL+muBagcctjWnbNMuR00uI7nQESwg5q2qqrKWIfrNUmeQocY6HuyxJV02wj36w00yhpmUFenv4p6fUkZYqLyuinx2RGOjhCXYyJF84oiU00YMOOhhquNdfbOB7gU88pY4xJO8LVdp6/q2voeB4R04vIdhSE40xZObx1HGGJ/ja0LBthFInKaLPPFzuCaYaoj8JjPME8yoyxo6zlBqkiUZYgq00OYMswbWO5NGmq+xhipxHLRW29ARjNKXO0wRnear8XSg4XFPLKEPUS1GqvyLwiuBUoa7zpZ0l5xxFwWmWZC1H5h5FwU8eQ7K+g8UcVY6TMQreVQT/8uQ8Z+ALIXnSEa2pYZQneE9RZbSBNYXfWYJzW/h/4j4Dp1tYVcFIC5019Vyi4ThPqSFCzjGWaHQTBU8q6vrVwgxP9Lkm840imWKpcLCjYTtrKuwvsKSnrvHCXGkSMk9p6lhckfRpIeis+N2PiszT+mFLspyGleUhDwcLrZqmyeylxwjBcKHEapqkmyangyLZRVOijwOtCY5SsG5zL0OwlCJ4y5KznF3EUNDDrinwiyLZRzOXtlBbK5ITHFGLp8Q0R6ab6mS7enI2cFrxOyHvOCFaT1HThS1krjCwqWeurCkk+willhCC+RSZnRXBiZaC5RXRIZYKp2lyfrHwiKPKR0JDzrdU2EFgpidawlFDR6FgXUMNa+g1FY3bUQh2cLCwosRdnuQTS/S+JVrGLeWIvtQUvONJxlqSQYYKpwoN2kaocLjdVsis4Mk80ESF2YpSkzwldjHkjFCUutI/r+EHDU8oCs6yzL3PhWiEooZdFMkymlas4AcI3KmoMMNSQ3tHzjGWCrcJJdYyZC7QFGwjRL9p+MrRkAGWzIaWCn9W0F3TsK01c2ZvQw0byvxuQU0r1lM0qJO7wW0kRIMdDTtXEdzi4VIh+EoIHm0mWtAtpCixlabgn83fKTI7anJe9ST7WIK1DMGpQmYeA58ImV6ezOGOzK2Kgq01pd60cKWiUi9Lievb/0vIDPHQ05Kzt4ddPckQBQtoaurjyHnek/nKzpQLrVgKPjIkh2v4uyezpv+Xoo7fPFXaGFp1vaLKxQ4uUpQQS5VuQs7BCq4xRJv7fwpVvvFEB3j+620haOuocqMhWd6TTPAEx+mdFNGHdranFe95WrWmIvlY4F1Dle2ECgc6cto7SryuqGGGha0tFQ5V53migUKmg6XKAo4qS3mik+0OZpAhOLeZKicacgaYcyx5hypYQE02ZA4xi/pNhOQxR4klNKyqacj+mpxnLTnnGSo85++3ZCZq6lrZkXlGEX3o+C9FieccJbZWVFjC0Yo1FZnJhoYMFoI1hEZ9r6hwg75HwzBNhbZCdJEfJwTPGzJvaKImw1yYX1HDAmpXR+ZJQ/SmgqMNVQb5vgamGwLtt7VwvP7Qk1xpiM5x5Cyv93E06MZmgs0Nya2azIKOYKCGBQQW97RmhKNKF02JZqHEJ4o58qp7X5EcZmc56trXEqzjCBZ1MFGR87Ql2tSTs6CGxS05PTzRQorkbw7aKoKXFDXsYW42VJih/q+FP2BdTzDTwVqOYB13liM50vG7wy28qagyuIXMeQI/Oqq8bcn5wJI50xH00CRntyfpL1T4hydYpoXgNiFzoIUTDZnLNRzh4TBHwbYGDvZkxmlyJloyr6tRihpeUG94GnKtIznREF0tzJG/OOr73JBcrSh1k6WuTprgLU+mnSGnv6Zge0NNz+kTDdH8nuAuTdJDCNb21LCiIuqlYbqGzT3RAoZofQfjFazkqeNWdYaGvYTM001EW2oKPvVk1ldUGSgUtHFwjKM1h9jnFcmy5lChoLNaQMGGDsYbKixlaMBmmsx1QjCfflwTfO/gckW0ruZ3jugKR3R5W9hGUWqCgxuFgsuaCHorotGKzGaeZB9DMsaTnKCpMtwTvOzhYk0rdrArKCqcaWmVk1+F372ur1YkKxgatI8Qfe1gIX9wE9FgS8ESmuABIXnRUbCapcKe+nO7slClSZFzpV/LkLncEb1qiO42fS3R855Su2mCLh62t1SYZZYVmKwIHjREF2uihTzB20JOkz7dkxzYQnK0UOU494wh+VWRc6Un2kpTaVgLDFEkJ/uhzRcI0YKGgpGWOlocBU/a4fKoJ/pEaNV6jip3+Es9VXY078rGnmAdf7t9ylPXS34RBSuYPs1UecZTU78WanhBCHpZ5sAoTz0LGZKjPf9TRypqWEiTvOFglL1fCEY3wY/++rbk7C8bWebA6p6om6PgOL2kp44TFJlVNBXae2rqqdZztOJpT87GQsE9jqCPIe9VReZuQ/CIgacsyZdCpIScSYqcZk8r+nsyCzhyfhOqHGOIvrLknC8wTpFcaYiGC/RU1NRbUeUpocQOnkRpGOrIOcNRx+1uA0UrzhSSt+VyS3SJpnFWkzNDqOFGIWcfR86DnmARTQ1HKIL33ExPiemeOhYSSjzlSUZZuE4TveoJLnBUOFof6KiysCbnAEcZgcUNTDOwkqWu3RWtmGpZwlHhJENdZ3miGz0lJlsKnjbwqSHQjpxnFDlTLLwqJPMZMjd7KrzkSG7VsxXBZE+F8YZkb01Oe00yyRK9psh5SYh29ySPKBo2ylNht7ZkZnsKenjKNJu9PNEyZpaCHv4Kt6RQsLvAVp7M9kIimmCUwGeWqLMmGuIotYMmWNpSahkhZw9FqZsVnKJhsjAHvtHMsTM9fCI06Dx/u3vfUXCqfsKRc4oFY2jMsoo/7DJDwZ1CsIKnJu+J9ldkpmiCxQx1rWjI+T9FwcWWzOuaYH0Hj7klNRVWEQpmaqosakiGNTFHdjS/qnUdmf0NJW5xsL0HhimCCZZSRzmSPTXJQ4aaztAwtZnoabebJ+htCaZ7Cm535ByoqXKbX1WRc4Eh2MkRXWzImVc96Cj4VdOKVxR84VdQsIUM8Psoou2byVHyZFuq7O8otbSQ2UAoeEWTudATLGSpZzVLlXVkPU2Jc+27lsw2jmg5T5VhbeE3BT083K9WsTTkFU/Osi0rC5lRlpwRHUiesNS0sOvmqGML1aRbPAxTJD9ZKtxuob+hhl8cwYGWpJ8nub7t5p6coYbMovZ1BTdaKn1jYD6h4GFDNFyT/Kqe1XCXphXHOKLZmuRSRdBPEfVUXQzJm5YGPGGJdvAEr7hHNdGZnuBvrpciGmopOLf5N0uVMy0FfYToJk90uUCbJupaVpO53UJXR2bVpoU00V2KOo4zMFrBd0Jtz2pa0clT5Q5L8IpQ177mWQejPMEJhuQjS10ref6HHjdEhy1P1EYR7GtO0uSsKJQYLiTnG1rVScj5lyazpqWGl5uBbRWl7m6ixGOOnEsMJR7z8J0n6KMnCdxhiNYQCoZ6CmYLnO8omC3MkW3bktlPmEt/VQQHejL3+dOE5FlPdK/Mq8hZxxJtLyRrepLThYKbLZxkSb5W52vYxNOaOxUF0yxMUPwBTYqCzy01XayYK0sJyWBLqX0MwU5CzoymRzV0EjjeUeLgDpTo6ij42ZAzvD01dHUUTPLU96MdLbBME8nFBn7zJCMtJcZokn8YoqU0FS5WFKyniHobguMcmW8N0XkWZjkyN3hqOMtS08r+/xTBwpZSZ3qiVRX8SzMHHjfUNFjgHEPmY9PL3ykEzxkSre/1ZD6z/NuznuB0RcE1TWTm9zRgfUWVJiG6yrzgmWPXC8EAR4Wxhlad0ZbgQyEz3pG5RVEwwDJH2mgKpjcTiCOzn1lfUWANFbZ2BA8balnEweJC9J0iuaeZoI+ippFCztEKVvckR2iice1JvhVytrQwUAZpgsubCPaU7xUe9vWnaOpaSBEspalykhC9bUlOMpT42ZHca6hyrqKmw/wMR8H5ZmdFoBVJb03O4UL0tSNnvIeRmkrLWqrs78gcrEn2tpcboh0UPOW3UUR9PMk4T4nnNKWmCjlrefhCwxRNztfmIQVdDElvS4m1/WuOujoZCs5XVOjtKPGokJzsYCtFYoWonSPT21DheU/wWhM19FcElwqNGOsp9Q8N/cwXaiND1MmeL1Q5XROtYYgGeFq1aTMsoMmcrKjQrOFQTQ1fmBYhmW6o8Jkjc7iDJRTBIo5kgJD5yMEYA3srCg7VFKwiVJkmRCc5ohGOKhsYMn/XBLdo5taZjlb9YAlGWRimqbCsoY7HFAXLa5I1HPRxMMsQDHFkWtRNniqT9UEeNjcE7RUlrCJ4R2CSJuqlKHWvJXjAUNcITYkenuBRB84TbeepcqTj3zZyFJzgYQdHnqfgI0ddUwS6GqWpsKWhjq9cV0vBAEMN2znq+EBfIWT+pClYw5xsTlJU6GeIBsjGmmANTzJZiIYpgrM0Oa8ZMjd7NP87jxhqGOhJlnQtjuQpB+8aEE00wZFznSJPyHxgH3HkPOsJFvYk8zqCHzTs1BYOa4J3PFU+UVRZxlHDM4YavlNUuMoRveiZA2d7grMNc2g+RbSCEKzmgYsUmWmazFJyoiOZ4KnyhKOGRzWJa0+moyV4TVHDzn51Awtqaphfk/lRQ08FX1iiqxTB/kLwd0VynKfEvI6cd4XMV5bMhZ7gZUWVzYQ6Nm2BYzxJbw3bGthEUUMfgbGeorae6DxHtJoZ6alhZ0+ytiVoK1R4z5PTrOECT/SugseEOlb1MMNR4VRNcJy+V1Hg9ONClSZFZjdHlc6W6FBLdJja2MC5hhpu0DBYEY1TFGwiFAxRRCsYkiM9JRb0JNMVkW6CZYT/2EiTGWmo8k+h4FhDNE7BvppoTSFnmCV5xZKzvcCdDo7VVPnIU+I+Rc68juApC90MwcFCsJ5hDqxgScYKreruyQwTqrzoqDCmhWi4IbhB0Yrt3RGa6GfDv52rKXWhh28dyZaWUvcZeMTBaZoSGyiCtRU5J8iviioHaErs7Jkj61syVzTTgOcUOQ8buFBTYWdL5g3T4qlpe0+wvD63heAXRfCCIed9RbCsp2CiI7raUOYOTU13N8PNHvpaGvayo4a3LLT1lDrVEPT2zLUlheB1R+ZTRfKWJ+dcocLJfi11vyJ51lLqJ0WD7tRwryezjiV5W28uJO9qykzX8JDe2lHl/9oyBwa2UMfOngpXCixvKdXTk3wrsKmiVYdZIqsoWEERjbcUNDuiaQomGoIbFdEHmsyWnuR+IeriKDVLnlawlyNHKwKlSU631PKep8J4Q+ayjkSLKYLhalNHlYvttb6fHm0p6OApsZ4l2VfdqZkjuysy6ysKLlckf1KUutCTs39bmCgEyyoasIWlVaMF7mgmWtBT8Kol5xpH9IGllo8cJdopcvZ2sImlDmMIbtDk3KIpeNiS08lQw11NFPTwVFlPP6pJ2gvRfI7gQUfmNAtf6Gs0wQxDsKGlVBdF8rCa3jzdwMaGHOsItrZk7hAyOzpK9VS06j5F49b0VNGOOfKs3lDToMsMBe9ZWtHFEgxTJLs7qrygKZjUnmCYoeAqeU6jqWuLJup4WghOdvCYJnrSkSzoyRkm5M2StQwVltPkfCAk58tET/CSg+8MUecmotMEnhBKfWBIZsg2ihruMJQaoIm+tkTLKEqspMh00w95gvFCQRtDwTT1gVDDSEVdlwqZfxoQRbK0g+tbiBZxzKlpnpypejdDwTaeOvorMk/IJE10h9CqRe28hhLbe0pMsdSwv4ZbhKivo2BjDWfL8UKJgeavwlwb5KlwhyE4u4XkGE2ytZCznKLCDZZq42VzT8HLCrpruFbIfOIINmh/qCdZ1ZBc65kLHR1Bkyf5zn6pN3SvGKIlFNGplhrO9QSXanLOMQTLCa0YJCRrCZm/CZmrLTm7WzCK4GJDiWUdFeYx1LCFg3NMd0XmCuF3Y5rITLDUsYS9zoHVzwnJoYpSTQoObyEzr4cFBNqYTopoaU/wkyLZ2lPhX/5Y95ulxGTV7KjhWrOZgl8MyUUafjYraNjNU1N3IWcjT5WzWqjwtoarHSUObGYO3GCJZpsBlnJGPd6ZYLyl1GdCA2625IwwJDP8GUKymbzuyPlZlvTUsaUh5zFDhRWFzPKKZLAlWdcQbObgF9tOqOsmB1dqcqYJmWstFbZRRI9poolmqiLnU0POvxScpah2iSL5UJNzgScY5+AuIbpO0YD3NCW+dLMszFSdFCWGqG6eVq2uYVNDdICGD6W7EPRWZEY5gpsE9rUkS3mijzzJnm6UpUFXG1hCUeVoS5WfNcFpblELL2qqrCvMvRfd45oalvKU2tiQ6ePJOVMRXase9iTtLJztPxJKLWpo2CRDcJwn2sWSLKIO1WQWNTCvpVUvOZhgSC40JD0dOctaSqzkCRbXsKlb11Oip6PCJ0IwSJM31j3akRxlP7Rwn6aGaUL0qiLnJkvB3xWZ2+Q1TfCwpQH3G0o92UzmX4o/oJNQMMSQc547wVHhdk+VCw01DFYEnTxzZKAm74QmeNNR1w6WzEhNK15VJzuCdxQ53dRUDws5KvwgBMOEgpcVNe0hZI6RXT1Jd0cyj5nsaEAHgVmGaJIlWdsc5Ui2ElrRR6jrRAttNMEAIWrTDFubkZaok7/AkzfIwfuWVq0jHzuCK4QabtLUMVPB3kJ0oyHTSVFlqMALilJf2Rf8k5aaHtMfayocLBS8L89oKoxpJvnAkDPa0qp5DAUTHKWmCcnthlou8iCKaFFLHWcINd1nyIwXqrSxMNmSs6KmoL2QrKuWtlQ5V0120xQ5vRyZS1rgFkWwhiOwiuQbR0OOVhQM9iS3tiXp4RawRPMp5tDletOOBL95MpM01dZTBM9pkn5qF010rIeHFcFZhmSGpYpTsI6nwhqe5C9ynhlpp5ophuRb6WcJFldkVnVEwwxVfrVkvnWUuNLCg5bgboFHPDlDPDmnK7hUrWiIbjadDclujlZcaokOFup4Ri1kacV6jmrrK1hN9bGwpKEBQ4Q6DvIUXOmo6U5LqQM6EPyiKNjVkPnJkDPNEaxhiFay5ExW1NXVUGqcpYYdPcGiCq7z/TSlbhL4pplWXKd7NZO5QQFrefhRQW/NHOsqcIglc4UhWklR8K0QzbAw08CBDnpbgqXdeD/QUsM4RZXDFBW6WJKe/mFPdH0LtBgiq57wFLzlyQzz82qYx5D5WJP5yVJDW01BfyHnS6HKO/reZqId1WGa4Hkh2kWodJ8i6KoIPlAj2hPt76CzXsVR6koPRzWTfKqIentatYpQw2me4AA3y1Kind3SwoOKZDcFXTwl9tWU6mfgRk9d71sKtlNwrjnYw5tC5n5LdKiGry3JKNlHEd3oaMCFHrazBPMp/uNJ+V7IudcSbeOIdjUEdwl0VHCOZo5t6YluEuaC9mQeMgSfOyKnYGFHcIeQ84yQWbuJYJpZw5CzglDH7gKnWqqM9ZTaXcN0TeYhR84eQtJT76JJ1lREe7WnnvsMmRc9FQ7SBBM9mV3lCUdmHk/S2RAMt0QjFNFqQpWjDPQ01DXWUdDBkXziKPjGEP3VP+zIWU2t7im41FOloyWzn/L6dkUy3VLDaZ6appgDLHPjJEsyvJngWEPUyVBiAaHCTEXwrLvSEbV1e1gKJniicWorC1MUrVjB3uDhJE/wgSOzk1DXpk0k73qCM8xw2UvD5kJmDUfOomqMpWCkJRlvKXGmoeBm18USjVIk04SClxTB6YrgLAPLWYK9HLUt5cmc0vYES8GnTeRc6skZbQkWdxRsIcyBRzx1DbTk9FbU0caTPOgJHhJKnOGIVhQqvKmo0llRw9sabrZkDtdg3PqaKi9oatjY8B+G371paMg6+mZFNNtQ04mWBq3rYLOmtWWQp8KJnpy9DdFensyjdqZ+yY40VJlH8wcdLzC8PZnvHMFUTZUrDTkLyQaGus5X5LzpYAf3i+e/ZlhqGqWhh6Ou6xTR9Z6oi5AZZtp7Mj2EEm8oSpxiYZCHU/1fbGdNNNRRoZMhmilEb2gqHOEJDtXkHK/JnG6IrvbPCwV3NhONVdS1thBMs1T4QOBcTWa2IzhMk2nW5Kyn9tXUtpv9RsG2msxk+ZsQzRQacJncpgke0+T8y5Fzj8BiGo7XlJjaTIlpQs7KFjpqGnKuoyEPeIKnFMkZHvopgh81ySxNFWvJWcKRs70j2FOT012IllEEO1n4pD1513Yg2ssQPOThOkvyrqHUdEXOSEsihmBbTbKX1kLBPWqWkLOqJbjB3GBIZmoa8qWl4CG/iZ7oiA72ZL7TJNeZUY7kFQftDcHHluBzRbCegzMtrRjVQpX2lgoPKKLJAkcbMl01XK2p7yhL8pCBbQ3BN2avJgKvttcrWDK3CiUOVxQ8ZP+pqXKyIxnmBymCg5vJjNfkPK4+c8cIfK8ocVt7kmfd/I5SR1hKvCzUtb+lhgc00ZaO6CyhIQP1Uv4yIZjload72PXX0OIJvnFU+0Zf6MhsJwTfW0r0UwQfW4LNLZl5HK261JCZ4qnBaAreVAS3WrjV0LBnNDUNNDToCEeFfwgcb4gOEqLRhirWkexrCEYKVV711DLYEE1XBEsp5tpTGjorkomKYF9FDXv7fR3BGwbettSxnyL53MBPjsxDZjMh+VUW9NRxq1DhVk+FSxQcaGjV9Pawv6eGByw5qzoy7xk4RsOShqjJwWKe/1pEEfzkobeD/dQJmpqedcyBTy2sr4nGNRH0c0SPWTLrqAc0OQcb/gemKgqucQT7ySWKCn2EUotoCvpZct7RO2sy/QW0IWcXd7pQRQyZVwT2USRO87uhjioTLKV2brpMUcMQRbKH/N2T+UlTpaMls6cmc6CCNy3JdYYSUzzJQ4oSD3oKLncULOiJvjBEC2oqnCJkJluCYy2ZQ5so9YYlZ1VLlQU1mXEW1jZERwj/MUSRc24TdexlqLKfQBtDTScJUV8FszXBEY5ktpD5Ur9hYB4Nb1iikw3JoYpkKX+RodRKFt53MMuRnKSpY31PwYaGaILh3wxJGz9TkTPEETxoCWZrgvOlmyMzxFEwVJE5xZKzvyJ4WxEc16Gd4Xe3Weq4XH2jKRikqOkGQ87hQnC7wBmGYLAnesX3M+S87eFATauuN+Qcrh7xIxXJbUIdMw3JGE3ylCWzrieaqCn4zhGM19TQ3z1oH1AX+pWEqIc7wNGAkULBo/ZxRaV9NNyh4Br3rCHZzbzmSfawBL0dNRwpW1kK9mxPXR9povcdrGSZK9c2k0xwFGzjuniCtRSZCZ6ccZ7gaktmgAOtKbG/JnOkJrjcQTdFMsxRQ2cLY3WTIrlCw1eWKn8R6pvt4GFDso3QoL4a3nLk3G6JrtME3dSenpx7PNFTmga0EaJTLQ061sEeQoWXhSo9LTXsaSjoJQRXeZLtDclbCrYzfzHHeaKjHCVOUkQHO3JeEepr56mhiyaYYKjjNU+Fed1wS5VlhWSqI/hYUdDOkaxiKehoyOnrCV5yBHtbWFqTHCCwtpDcYolesVR5yUzTZBb3RNMd0d6WP+SvhuBmRcGxnuQzT95IC285cr41cLGQ6aJJhmi4TMGempxeimBRQw1tFKV+8jd6KuzoSTqqDxzRtpZkurvKEHxlqXKRIjjfUNNXQsNOsRScoWFLT+YeRZVD3GRN0MdQcKqQjHDMrdGGVu3iYJpQx3WGUvfbmxwFfR20WBq0oYY7LMFhhgYtr8jpaEnaOzjawWWaTP8mMr0t/EPDPoqcnxTBI5o58L7uoWnMrpoqPwgVrlAUWE+V+TQl9rawoyP6QGAlQw2TPRX+YSkxyBC8Z6jhHkXBgQL7WII3DVFnRfCrBfxewv9D6xsyjys4VkhWb9pUU627JllV0YDNHMku/ldNMMXDEo4aFnAkk4U6frNEU4XgZUPmEKHUl44KrzmYamjAbh0JFvGnaTLPu1s9jPCwjFpYiN7z1DTOk/nc07CfDFzmCf7i+bfNHXhDtLeBXzTBT5rkMvWOIxpl4EMh2LGJBu2syDnAEx2naEhHDWMMzPZEhygyS1mS5RTJr5ZkoKbEUoYqr2kqdDUE8ztK7OaIntJkFrIECwv8LJTaVx5XJE86go8dFeZ3FN3rjabCAYpoYEeC9zzJVULBbmZhDyd7ko09ydpNZ3nm2Kee4FPPXHnYEF1nqOFEC08LUVcDvYXkJHW8gTaKCk9YGOeIJhqiE4ToPEepdp7IWFjdwnWaufGMwJJCMtUTTBBK9BGCOy2tGGrJTHIwyEOzp6aPzNMOtlZkDvcEWpP5SVNhfkvDxhmSazTJXYrM9U1E0xwFVwqZQwzJxw6+kGGGUj2FglGGmnb1/G51udRSMNlTw6GGnCcUwVcOpmsqTHa06o72sw1RL02p9z0VbnMLOaIX3QKaYKSCFQzBKEUNHTSc48k53RH9wxGMtpQa5KjjW0W0n6XCCCG4yxNNdhQ4R4l1Ff+2sSd6UFHiIEOyqqFgT01mEUMD+joy75jPhOA+oVVLm309FR4yVOlp4RhLiScNmSmaYF5Pw0STrOIoWMSR2UkRXOMp+M4SHW8o8Zoi6OZgjKOaFar8zZDzkWzvKOjkKBjmCXby8JahhjXULY4KlzgKLvAwxVGhvyd4zxB1d9T0piazmKLCVZY5sKiD0y2ZSYrkUEPUbIk+dlQ4SJHTR50k1DPaUWIdTZW9NJwnJMOECgd7ou/MnppMJ02O1VT4Wsh85MnZzcFTngpXGKo84qmwgKbCL/orR/SzJ2crA+t6Mp94KvxJUeIbT3CQu1uIdlQEOzlKfS3UMcrTiFmOuroocrZrT2AcmamOKg8YomeEKm/rlT2sociMaybaUlFhuqHCM2qIJ+rg4EcDFymiDSxzaHdPcpE62pD5kyM5SBMoA1PaUtfIthS85ig1VPiPPYXgYEMNk4Qq7TXBgo7oT57gPUdwgCHzhIVFPFU6OYJzHAX9m5oNrVjeE61miDrqQ4VSa1oiURTsKHC0IfjNwU2WzK6eqK8jWln4g15TVBnqmDteCJ501PGAocJhhqjZdtBEB6lnhLreFJKxmlKbeGrqLiSThVIbCdGzloasa6lpMQXHCME2boLpJgT7yWaemu6wBONbqGNVRS0PKIL7LckbjmQtR7K8I5qtqel+T/ChJTNIKLjdUMNIRyvOEko9YYl2cwQveBikCNawJKcLBbc7+JM92mysNvd/Fqp8a0k6CNEe7cnZrxlW0wQXaXjaktnRwNOGZKYiONwS7a1JVheq3WgJHlQUGKHKmp4KAxXR/ULURcNgoa4zhKSLpZR3kxRRb0NmD0OFn+UCS7CzI1nbP6+o4x47QZE5xRCt3ZagnYcvmpYQktXdk5YKXTzBC57kKEe0VVuiSYqapssMS3C9p2CKkHOg8B8Pa8p5atrIw3qezIWanMGa5HRDNF6RM9wcacl0N+Q8Z8hsIkSnaIIdHRUOEebAPy1zbCkhM062FCJtif7PU+UtoVXzWKqM1PxXO8cfdruhFQ/a6x3JKYagvVDhQEtNiyiiSQ7OsuRsZUku0CRNDs4Sog6KKjsZgk2bYJqijgsEenoKeniinRXBn/U3lgpPdyDZynQx8IiioMnCep5Ky8mjGs6Wty0l1hUQTcNWswS3WRp2kCNZwJG8omG8JphPUaFbC8lEfabwP7VtM9yoaNCAjpR41VNhrD9LkbN722v0CoZMByFzhaW+MyzRYEWFDQwN2M4/JiT76PuljT3VU/A36eaIThb+R9oZGOAJ9tewkgGvqOMNRWYjT/Cwu99Q8LqDE4TgbLWxJ1jaDDAERsFOFrobgjUsBScaguXU8kKm2RL19tRypSHnHNlHiIZqgufs4opgQdVdwxBNNFBR6kVFqb8ogimOzB6a6HTzrlDHEpYaxjiiA4TMQobkDg2vejjfwJGWmnbVFAw3H3hq2NyQfG7hz4aC+w3BbwbesG0swYayvpAs6++Ri1Vfzx93mFChvyN5xVHTS+0p9aqCAxyZ6ZacZyw5+7uuQkFPR9DDk9NOiE7X1PCYJVjVUqq7JlrHwWALF5nfHNGjApdpqgzx5OwilDhCiDYTgnc9waGW4BdLNNUQvOtpzDOWHDH8D7TR/A/85KljEQu3NREc4Pl/6B1Hhc8Umb5CsKMmGC9EPcxoT2amwHNCmeOEnOPbklnMkbOgIvO5UMOpQrS9UGVdt6iH/fURjhI/WOpaW9OKLYRod6HCUEdOX000wpDZQ6hwg6LgZfOqo1RfT/CrJzjekXOGhpc1VW71ZLbXyyp+93ILbC1kPtIEYx0FIx1VDrLoVzXRKRYWk809yYlC9ImcrinxtabKnzRJk3lAU1OLEN1j2zrYzr2myHRXJFf4h4QKT1qSTzTB5+ZNTzTRkAxX8FcLV2uS8eoQQ2aAkFzvCM72sJIcJET3WPjRk5wi32uSS9rfZajpWEvj9hW42F4o5NytSXYy8IKHay10VYdrcl4SkqscrXpMwyGOgtkajheSxdQqmpxP1L3t4R5PqasFnrQEjytq6qgp9Y09Qx9o4S1FzhUCn1kyHSzBWLemoSGvOqLNhZyBjmCaAUYpMgt4Ck7wBBMMwWKWgjsUwTaGVsxWC1mYoKiyqqeGKYqonSIRQ3KIkHO0pmAxTdBHkbOvfllfr+AA+7gnc50huVKYK393FOyg7rbPO/izI7hE4CnHHHnJ0ogNPRUGeUpsrZZTBJcrovUcJe51BPsr6GkJdhCCsZ6aTtMEb2pqWkqeVtDXE/QVggsU/Nl86d9RMF3DxvZTA58agu810RWawCiSzzXBeU3MMW9oyJUedvNEvQyNu1f10BSMddR1vaLCYpYa/mGocLSiYDcLbQz8aMn5iyF4xBNMs1P0QEOV7o5gaWGuzSeLue4tt3ro7y4Tgm4G/mopdZgl6q0o6KzJWE3mMksNr3r+a6CbT8g5wZNzT9O7fi/zpaOmnz3BRoqos+tv9zMbdpxsqDBOEewtJLt7cg5wtKKbvldpSzRRCD43VFheCI7yZLppggMVBS/KMAdHODJvOwq2NQSbKKKPLdFWQs7Fqo+mpl01JXYRgq8dnGLhTiFzqmWsUMdpllZdbKlyvSdYxhI9YghOtxR8LgSLWHK62mGGVoxzBE8LNWzqH9CUesQzFy5RQzTc56mhi6fgXEWwpKfE5Z7M05ZgZUPmo6auiv8YKzDYwWBLMErIbKHJvOwIrvEdhOBcQ9JdU1NHQ7CXn2XIDFBKU2WAgcX9UAUzDXWd5alwuyJ41Z9rjKLCL4aCp4WarhPm2rH+SaHUYE001JDZ2ZAzXPjdMpZWvC9wmqIB2lLhQ01D5jO06hghWMndbM7yRJMsoCj1vYbnFQVrW9jak3OlEJ3s/96+p33dEPRV5GxiqaGjIthUU6FFEZyqCa5qJrpBdzSw95IUnOPIrCUUjRZQFrbw5PR0R1qiYx3cb6nrWUMrBmmiBQxVHtTew5ICP/ip6g4hed/Akob/32wvBHsIOX83cI8hGeNeNPCIkPmXe8fPKx84OMSRM1MTdXSwjCZ4S30jVGhvqTRak/OVhgGazHuOCud5onEO1lJr6ecVyaOK6H7zqlBlIaHE0oroCgfvGJIdPcmfLNGLjpz7hZwZQpUbFME0A1cIJa7VNORkgfsMBatbKgwwJM9bSvQXeNOvbIjelg6WWvo5kvbKaJJNHexkKNHL9xRyFlH8Ti2riB5wVPhUk7nGkJnoCe428LR/wRGdYIlmWebCyxou1rCk4g/ShugBDX0V0ZQWkh0dOVsagkM0yV6OoLd5ye+pRlsCr0n+KiQrGuq5yJDzrTAXHtLUMduTDBVKrSm3eHL+6ijxhFDX9Z5gVU/wliHYTMiMFpKLNMEywu80wd3meoFmt6VbRMPenhrOc6DVe4pgXU8DnnHakLOIIrlF4FZPIw6R+zxBP0dyq6OOZ4Q5sLKCcz084ok+VsMMyQhNZmmBgX5xIXOEJTmi7VsGTvMTNdHHhpzdbE8Du2oKxgvBqQKdDDnTFOylCFaxR1syz2iqrOI/FEpNc3C6f11/7+ASS6l2inq2ciTrCCzgyemrCL5SVPjQkdPZUmGy2c9Sw9FtR1sS30RmsKPCS4rkIC/2U0MduwucYolGaPjKEyhzmiPYXagyWbYz8LWBDdzRimAXzxx4z8K9hpzlhLq+NiQ97HuKorMUfK/OVvC2JfiHUPCQI/q7J2gjK+tTDNxkCc4TMssqCs4TGtLVwQihyoAWgj9bosU80XGW6Ac9TJGziaUh5+hnFcHOnlaM1iRn29NaqGENTTTSUHCH2tWTeV0osUhH6psuVLjRUmGWhm6OZEshGeNowABHcJ2Bpy2ZszRcKkRXd2QuKVEeXnbfaEq825FguqfgfE2whlChSRMdron+LATTPQ2Z369t4B9C5gs/ylzv+CMmepIDPclFQl13W0rspPd1JOcbghGOEutqCv5qacURQl3dDKyvyJlqKXGPgcM9FfawJAMVmdcspcYKOZc4GjDYkFlK05olNMHyHn4zFNykyOxt99RkHlfwmiHo60l2EKI+mhreEKp080Tbug08BVPcgoqC5zWt+NLDTZ7oNSF51N1qie7Va3uCCwyZbkINf/NED6jzOsBdZjFN8oqG3wxVunqCSYYKf3EdhJyf9YWGf7tRU2oH3VHgPr1fe5J9hOgHd7xQ0y7qBwXr23aGErP0cm64JVjZwsOGqL+mhNgZmhJLW2oY4UhedsyBgzrCKrq7BmcpNVhR6jBPq64Vgi+kn6XE68pp8J5/+0wRHGOpsKenQn9DZntPzjRLZpDAdD2fnSgkG9tmIXnUwQ6WVighs7Yi2MxQ0N3CqYaCXkJ0oyOztMDJjmSSpcpvlrk0RMMOjmArQ04PRV1DO1FwhCVaUVPpKUM03JK5SxPsIWRu8/CGHi8UHChiqGFDTbSRJWeYUDDcH6vJWUxR4k1FXbMUwV6e4AJFXS8oMqsZKqzvYQ9DDQdZckY4aGsIhtlubbd2r3j4QBMoTamdPZk7O/Bf62lacZwneNjQoGcdVU7zJOd7ghsUHOkosagic6cnWc8+4gg285R6zZP5s1/LUbCKIznTwK36PkdwlOrl4U1LwfdCCa+IrvFkmgw1PCAUXKWo0sURXWcI2muKJlgyFzhynCY4RBOsqCjoI1R5zREco0n2Vt09BQtYSizgKNHfUmUrQ5UOCh51BFcLmY7umhYqXKQomOop8bUnWNNQcIiBcYaC6xzMNOS8JQQfeqKBmmglB+97ok/lfk3ygaHSyZaCRTzRxQo6GzLfa2jWBPepw+UmT7SQEJyiyRkhBLMVOfcoMjcK0eZChfUNzFAUzCsEN5vP/X1uP/n/aoMX+K+nw/Hjr/9xOo7j7Pju61tLcgvJpTWXNbfN5jLpi6VfCOviTktKlFusQixdEKWmEBUKNaIpjZRSSOXSgzaaKLdabrm1/9nZ+/f+vd/vz/v9+Xy+zZ7PRorYoZqyLrCwQdEAixxVOEXNNnjX2nUSRlkqGmWowk8lxR50JPy9Bo6qJXaXwNvREBvnThPEPrewryLhcAnj5WE15Fqi8W7R1sAuEu86S4ENikItFN4xkv9Af4nXSnUVcLiA9xzesFpivRRVeFKtsMRaKBhuSbjOELnAUtlSQUpXgdfB4Z1oSbnFEetbQ0IrAe+Y+pqnDcEJFj6S8LDZzZHwY4e3XONNlARraomNEt2bkvGsosA3ioyHm+6jCMbI59wqt4eeara28IzEmyPgoRaUOEDhTVdEJhmCoTWfC0p8aNkCp0oYqih2iqGi4yXeMkOsn4LdLLnmKfh/YogjNsPebeFGR4m9BJHLzB61XQ3BtpISfS2FugsK9FAtLWX1dCRcrCnUp44CNzuCowUZmxSRgYaE6Za0W2u/E7CVXCiI/UOR8aAm1+OSyE3mOUcwyc1zBBeoX1kiKy0Zfxck1Gsyulti11i83QTBF5Kg3pDQThFMVHiPSlK+0cSedng/VaS8bOZbtsBcTcZAR8JP5KeqQ1OYKAi20njdNNRpgnsU//K+JnaXJaGTomr7aYIphoRn9aeShJWKEq9LcozSF7QleEfDI5LYm5bgVkFkRwVDBCVu0DDIkGupo8TZBq+/pMQURYErJQmPKGKjNDkWOLx7Jd5QizdUweIaKrlP7SwJDhZvONjLkOsBBX9UpGxnydhXkfBLQ8IxgojQbLFnJf81JytSljclYYyEFyx0kVBvKWOFJmONpshGAcsduQY5giVNCV51eOdJYo/pLhbvM0uDHSevNKRcrKZIqnCtJeEsO95RoqcgGK4ocZcho1tTYtcZvH41pNQ7vA0WrhIfOSraIIntIAi+NXWCErdbkvrWwjRLrt0NKUdL6KSOscTOdMSOUtBHwL6OLA0vNSdynaWQEnCpIvKaIrJJEbvHkmuNhn6OjM8VkSGSqn1uYJCGHnq9I3aLhNME3t6GjIkO7xrNFumpyTNX/NrwX7CrIRiqqWijI9JO4d1iieykyfiposQIQ8YjjsjlBh6oHWbwRjgYJQn2NgSnNycmJAk3NiXhx44Sxykihxm8ybUwT1OVKySc7vi3OXVkdBJ4AyXBeksDXG0IhgtYY0lY5ahCD0ehborIk5aUWRJviMA7Xt5kyRjonrXENkm8yYqgs8VzgrJmClK20uMM3jRJ0FiQICQF9hdETlLQWRIb5ki6WDfWRPobvO6a4GP5mcOrNzDFELtTkONLh9dXE8xypEg7z8A9jkhrQ6Fhjlg/QVktJXxt4WXzT/03Q8IaQWSqIuEvloQ2mqC9Jfi7wRul4RX3pSPlzpoVlmCtI2jvKHCFhjcM3sN6lqF6HxnKelLjXWbwrpR4xzuCrTUZx2qq9oAh8p6ixCUGr78g8oyjRAtB5CZFwi80VerVpI0h+IeBxa6Zg6kWvpDHaioYYuEsRbDC3eOmC2JvGYLeioxGknL2UATNJN6hmtj1DlpLvDVmocYbrGCVJKOrg4X6DgddLA203BKMFngdJJFtFd7vJLm6KEpc5yjQrkk7M80SGe34X24nSex1Ra5Omgb71JKyg8SrU3i/kARKwWpH0kOGhKkObyfd0ZGjvyXlAkVZ4xRbYJ2irFMkFY1SwyWxr2oo4zlNiV+7zmaweFpT4kR3kaDAFW6xpSqzJay05FtYR4HmZhc9UxKbbfF2V8RG1MBmSaE+kmC6JnaRXK9gsiXhJHl/U0qM0WTcbyhwkYIvFGwjSbjfwhiJt8ZSQU+Bd5+marPMOkVkD0muxYLIfEuhh60x/J92itguihJSEMySVPQnTewnEm+620rTQEMsOfo4/kP/0ARvWjitlpSX7GxBgcMEsd3EEeYWvdytd+Saawi6aCIj1CkGb6Aj9rwhx16Cf3vAwFy5pyLhVonXzy51FDpdEblbkdJbUcEPDEFzQ8qNmhzzLTmmKWKbFCXeEuRabp6rxbvAtLF442QjQ+wEA9eL1xSR7Q0JXzlSHjJ4exq89yR0laScJ/FW6z4a73pFMEfDiRZvuvijIt86RaSFOl01riV2mD1UEvxGk/Geg5aWwGki1zgKPG9J2U8PEg8qYvMsZeytiTRXBMslCU8JSlxi8EabjwUldlDNLfzTUmCgxWsjqWCOHavYAqsknKFIO0yQ61VL5AVFxk6WhEaCAkdJgt9aSkzXlKNX2jEa79waYuc7gq0N3GDJGCBhoiTXUEPsdknCUE1CK0fwsiaylSF2uiDyO4XX3pFhNd7R4itFGc0k/ElBZwWvq+GC6szVeEoS/MZ+qylwpKNKv9Z469UOjqCjwlusicyTxG6VpNxcQ8IncoR4RhLbR+NdpGGmJWOcIzJGUuKPGpQg8rrG21dOMqQssJQ4RxH5jaUqnZuQ0F4Q+cjxLwPtpZbIAk3QTJHQWBE5S1BokoVtDd6lhqr9UpHSUxMcIYl9pojsb8h4SBOsMQcqvOWC2E8EVehqiJ1hrrAEbQxeK0NGZ0Gkq+guSRgniM23bIHVkqwx4hiHd7smaOyglyIyQuM978j4VS08J/A2G1KeMBRo4fBaSNhKUEZfQewVQ/C1I+MgfbEleEzCUw7mKXI0M3hd1EESVji8x5uQ41nxs1q4RMJCCXs7Iq9acpxn22oSDnQ/sJTxsCbHIYZiLyhY05TY0ZLIOQrGaSJDDN4t8pVaIrsqqFdEegtizc1iTew5Q4ayBDMUsQMkXocaYkc0hZua412siZ1rSXlR460zRJ5SlHGe5j801RLMlJTxtaOM3Q1pvxJ45zUlWFD7rsAbpfEm1JHxG0eh8w2R7QQVzBUw28FhFp5QZzq8t2rx2joqulYTWSuJdTYfWwqMFMcovFmSyJPNyLhE4E10pHzYjOC3huArRa571ZsGajQpQx38SBP5pyZB6lMU3khDnp0MBV51BE9o2E+TY5Ml2E8S7C0o6w1xvCZjf0HkVEHCzFoyNmqC+9wdcqN+Tp7jSDheE9ws8Y5V0NJCn2bk2tqSY4okdrEhx1iDN8cSudwepWmAGXKcJXK65H9to8jYQRH7SBF01ESUJdd0TayVInaWhLkOjlXE5irKGOnI6GSWGCJa482zBI9rCr0jyTVcEuzriC1vcr6mwFGSiqy5zMwxBH/TJHwjSPhL8+01kaaSUuMFKTcLEvaUePcrSmwn8DZrgikWb7CGPxkSjhQwrRk57tctmxLsb9sZvL9LSlyuSLlWkqOjwduo8b6Uv1DkmudIeFF2dHCgxVtk8dpIvHpBxhEOdhKk7OLIUSdJ+cSRY57B+0DgGUUlNfpthTfGkauzxrvTsUUaCVhlKeteTXCoJDCa2NOKhOmC4G1H8JBd4OBZReSRGkqcb/CO1PyLJTLB4j1q8JYaIutEjSLX8YKM+a6phdMsdLFUoV5RTm9JSkuDN8WcIon0NZMNZWh1q8C7SJEwV5HxrmnnTrf3KoJBlmCYI2ilSLlfEvlE4011NNgjgthzEua0oKK7JLE7HZHlEl60BLMVFewg4EWNt0ThrVNEVkkiTwpKXSWJzdRENgvKGq4IhjsiezgSFtsfCUq8qki5S1LRQeYQQ4nemmCkImWMw3tFUoUBZk4NOeZYEp4XRKTGa6wJjrWNHBVJR4m3FCnbuD6aak2WsMTh3SZImGCIPKNgsDpVwnsa70K31lCFJZYcwwSMFcQulGTsZuEaSdBXkPGZhu0FsdUO73RHjq8MPGGIfaGIbVTk6iuI3GFgucHrIQkmWSJdBd7BBu+uOryWAhY7+Lki9rK5wtEQzWwvtbqGhIMFwWRJsElsY4m9IIg9L6lCX0VklaPAYkfkZEGDnOWowlBJjtMUkcGK4Lg6EtoZInMUBVYLgn0UsdmCyCz7gIGHFfk+k1QwTh5We7A9x+IdJ6CvIkEagms0hR50eH9UnTQJ+2oiKyVlLFUE+8gBGu8MQ3CppUHesnjTHN4QB/UGPhCTHLFPHMFrCqa73gqObUJGa03wgbhHkrCfpEpzNLE7JDS25FMKhlhKKWKfCgqstLCPu1zBXy0J2ztwjtixBu8UTRn9LVtkmCN2iyFhtME70JHRQ1KVZXqKI/KNIKYMCYs1GUMEKbM1bKOI9LDXC7zbHS+bt+1MTWS9odA9DtrYtpbImQJ2VHh/lisEwaHqUk1kjKTAKknkBEXkbkdMGwq0dnhzLJF3NJH3JVwrqOB4Sca2hti75nmJN0WzxS6UxDYoEpxpa4htVlRjkYE7DZGzJVU72uC9IyhQL4i8YfGWSYLLNcHXloyz7QhNifmKSE9JgfGmuyLhc403Xm9vqcp6gXe3xuuv8F6VJNxkyTHEkHG2g0aKXL0MsXc1bGfgas2//dCONXiNLCX+5mB7eZIl1kHh7ajwpikyzlUUWOVOsjSQlsS+M0R+pPje/dzBXRZGO0rMtgQrLLG9VSu9n6CMXS3BhwYmSoIBhsjNBmZbgusE9BCPCP5triU4VhNbJfE+swSP27aayE8tuTpYYjtrYjMVGZdp2NpS1s6aBnKSHDsbKuplKbHM4a0wMFd/5/DmGyKrJSUaW4IBrqUhx0vyfzTBBLPIUcnZdrAkNsKR0sWRspumSns6Ch0v/qqIbBYUWKvPU/CFoyrDJGwSNFhbA/MlzKqjrO80hRbpKx0Jewsi/STftwGSlKc1JZyAzx05dhLEdnfQvhZOqiHWWEAHC7+30FuRcZUgaO5gpaIK+xsiHRUsqaPElTV40xQZQ107Q9BZE1nryDVGU9ZSQ47bmhBpLcYpUt7S+xuK/FiT8qKjwXYw5ypS2iuCv7q1gtgjhuBuB8LCFY5cUuCNtsQOFcT+4Ih9JX+k8Ea6v0iCIRZOtCT0Et00JW5UeC85Cg0ScK0k411HcG1zKtre3SeITBRk7WfwDhEvaYLTHP9le0m8By0JDwn4TlLW/aJOvGHxdjYUes+ScZigCkYQdNdEOhkiezgShqkx8ueKjI8lDfK2oNiOFvrZH1hS+tk7NV7nOmLHicGWEgubkXKdwdtZknCLJXaCpkrjZBtLZFsDP9CdxWsSr05Sxl6CMmoFbCOgryX40uDtamB7SVmXW4Ihlgpmq+00tBKUUa83WbjLUNkzDmY7cow1JDygyPGlhgGKYKz4vcV7QBNbJIgM11TUqZaMdwTeSguH6rOaw1JRKzaaGyxVm2EJ/uCIrVWUcZUkcp2grMsEjK+DMwS59jQk3Kd6SEq1d0S6uVmO4Bc1lDXTUcHjluCXEq+1OlBDj1pi9zgiXxnKuE0SqTXwhqbETW6RggMEnGl/q49UT2iCzgJvRwVXS2K/d6+ZkyUl7jawSVLit46EwxVljDZwoSQ20sDBihztHfk2yA8NVZghiXwrYHQdfKAOtzsayjhY9bY0yE2CWEeJ9xfzO423xhL5syS2TFJofO2pboHob0nY4GiAgRrvGQEDa/FWSsoaaYl0syRsEt3kWoH3B01shCXhTUWe9w3Bt44SC9QCh3eShQctwbaK2ApLroGCMlZrYqvlY3qYhM0aXpFkPOuoqJ3Dm6fxXrGwVF9gCWZagjPqznfkuMKQ8DPTQRO8ZqG1hPGKEm9IgpGW4DZDgTNriTxvFiq+Lz+0cKfp4wj6OCK9JSnzNSn9LFU7UhKZZMnYwcJ8s8yRsECScK4j5UOB95HFO0CzhY4xJxuCix0lDlEUeMdS6EZBkTsUkZ4K74dugyTXS7aNgL8aqjDfkCE0ZbwkCXpaWCKhl8P7VD5jxykivSyxyZrYERbe168LYu9ZYh86IkscgVLE7tWPKmJv11CgoyJltMEbrohtVAQfO4ImltiHEroYEs7RxAarVpY8AwXMcMReFOTYWe5iiLRQxJ5Q8DtJ8LQhWOhIeFESPGsILhbNDRljNbHzNRlTFbk2S3L0NOS6V1KFJYKUbSTcIIhM0wQ/s2TM0SRMNcQmSap3jCH4yhJZKSkwyRHpYYgsFeQ4U7xoCB7VVOExhXepo9ABBsYbvGWKXPME3lyH95YioZ0gssQRWWbI+FaSMkXijZXwgiTlYdPdkNLaETxlyDVIwqeaEus0aTcYcg0RVOkpR3CSJqIddK+90JCxzsDVloyrFd5ZAr4TBKfaWa6boEA7C7s6EpYaeFPjveooY72mjIccLHJ9HUwVlDhKkmutJDJBwnp1rvulJZggKDRfbXAkvC/4l3ozQOG9a8lxjx0i7nV4jSXc7vhe3OwIxjgSHjdEhhsif9YkPGlus3iLFDnWOFhtCZbJg0UbQcIaR67JjthoCyMEZRwhiXWyxO5QxI6w5NhT4U1WsJvDO60J34fW9hwzwlKij6ZAW9ne4L0s8C6XeBMEkd/LQy1VucBRot6QMlbivaBhoBgjqGiCJNhsqVp/S2SsG6DIONCR0dXhvWbJ+MRRZJkkuEjgDXJjFQW6SSL7GXK8Z2CZg7cVsbWGoKmEpzQ5elpiy8Ryg7dMkLLUEauzeO86CuwlSOlgYLojZWeJ9xM3S1PWfEfKl5ISLQ0MEKR8YOB2QfCxJBjrKPCN4f9MkaSsqoVXJBmP7EpFZ9UQfOoOFwSzBN4MQ8LsGrymlipcJQhmy0GaQjPqCHaXRwuCZwRbqK2Fg9wlClZqYicrIgMdZfxTQ0c7TBIbrChxmuzoKG8XRaSrIhhiyNFJkrC7oIAWMEOQa5aBekPCRknCo4IKPrYkvCDI8aYmY7WFtprgekcJZ3oLIqssCSMtFbQTJKwXYy3BY5oCh2iKPCpJOE+zRdpYgi6O2KmOAgvVCYaU4ySRek1sgyFhJ403QFHiVEmJHwtybO1gs8Hr5+BETQX3War0qZngYGgtVZtoqd6vFSk/UwdZElYqyjrF4HXUeFspIi9IGKf4j92pKGAdCYMVsbcV3kRF0N+R8LUd5PCsIGWoxDtBkCI0nKofdJQxT+LtZflvuc8Q3CjwWkq8KwUpHzkK/NmSsclCL0nseQdj5FRH5CNHSgtLiW80Of5HU9Hhlsga9bnBq3fEVltKfO5IaSTmGjjc4J0otcP7QsJUSQM8pEj5/wCuUuC2DWz8AAAAAElFTkSuQmCC\");\n}\n"
  },
  {
    "path": "public/admin/css/plugins/codemirror/codemirror.css",
    "content": "/* BASICS */\n\n.CodeMirror {\n  /* Set height, width, borders, and global font properties here */\n  font-family: monospace;\n  height: 300px;\n}\n.CodeMirror-scroll {\n  /* Set scrolling behaviour here */\n  overflow: auto;\n}\n\n/* PADDING */\n\n.CodeMirror-lines {\n  padding: 4px 0; /* Vertical padding around content */\n}\n.CodeMirror pre {\n  padding: 0 4px; /* Horizontal padding of content */\n}\n\n.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  background-color: white; /* The little square between H and V scrollbars */\n}\n\n/* GUTTER */\n\n.CodeMirror-gutters {\n  border-right: 1px solid #ddd;\n  background-color: #f7f7f7;\n  white-space: nowrap;\n}\n.CodeMirror-linenumbers {}\n.CodeMirror-linenumber {\n  padding: 0 3px 0 5px;\n  min-width: 20px;\n  text-align: right;\n  color: #999;\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n.CodeMirror-guttermarker { color: black; }\n.CodeMirror-guttermarker-subtle { color: #999; }\n\n/* CURSOR */\n\n.CodeMirror div.CodeMirror-cursor {\n  border-left: 1px solid black;\n}\n/* Shown when moving in bi-directional text */\n.CodeMirror div.CodeMirror-secondarycursor {\n  border-left: 1px solid silver;\n}\n.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {\n  width: auto;\n  border: 0;\n  background: #7e7;\n}\n.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursors {\n  z-index: 1;\n}\n\n.cm-animate-fat-cursor {\n  width: auto;\n  border: 0;\n  -webkit-animation: blink 1.06s steps(1) infinite;\n  -moz-animation: blink 1.06s steps(1) infinite;\n  animation: blink 1.06s steps(1) infinite;\n}\n@-moz-keyframes blink {\n  0% { background: #7e7; }\n  50% { background: none; }\n  100% { background: #7e7; }\n}\n@-webkit-keyframes blink {\n  0% { background: #7e7; }\n  50% { background: none; }\n  100% { background: #7e7; }\n}\n@keyframes blink {\n  0% { background: #7e7; }\n  50% { background: none; }\n  100% { background: #7e7; }\n}\n\n/* Can style cursor different in overwrite (non-insert) mode */\ndiv.CodeMirror-overwrite div.CodeMirror-cursor {}\n\n.cm-tab { display: inline-block; text-decoration: inherit; }\n\n.CodeMirror-ruler {\n  border-left: 1px solid #ccc;\n  position: absolute;\n}\n\n/* DEFAULT THEME */\n\n.cm-s-default .cm-keyword {color: #708;}\n.cm-s-default .cm-atom {color: #219;}\n.cm-s-default .cm-number {color: #164;}\n.cm-s-default .cm-def {color: #00f;}\n.cm-s-default .cm-variable,\n.cm-s-default .cm-punctuation,\n.cm-s-default .cm-property,\n.cm-s-default .cm-operator {}\n.cm-s-default .cm-variable-2 {color: #05a;}\n.cm-s-default .cm-variable-3 {color: #085;}\n.cm-s-default .cm-comment {color: #a50;}\n.cm-s-default .cm-string {color: #a11;}\n.cm-s-default .cm-string-2 {color: #f50;}\n.cm-s-default .cm-meta {color: #555;}\n.cm-s-default .cm-qualifier {color: #555;}\n.cm-s-default .cm-builtin {color: #30a;}\n.cm-s-default .cm-bracket {color: #997;}\n.cm-s-default .cm-tag {color: #170;}\n.cm-s-default .cm-attribute {color: #00c;}\n.cm-s-default .cm-header {color: blue;}\n.cm-s-default .cm-quote {color: #090;}\n.cm-s-default .cm-hr {color: #999;}\n.cm-s-default .cm-link {color: #00c;}\n\n.cm-negative {color: #d44;}\n.cm-positive {color: #292;}\n.cm-header, .cm-strong {font-weight: bold;}\n.cm-em {font-style: italic;}\n.cm-link {text-decoration: underline;}\n\n.cm-s-default .cm-error {color: #f00;}\n.cm-invalidchar {color: #f00;}\n\n/* Default styles for common addons */\n\ndiv.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}\ndiv.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}\n.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }\n.CodeMirror-activeline-background {background: #e8f2ff;}\n\n/* STOP */\n\n/* The rest of this file contains styles related to the mechanics of\n   the editor. You probably shouldn't touch them. */\n\n.CodeMirror {\n  line-height: 1;\n  position: relative;\n  overflow: hidden;\n  background: white;\n  color: black;\n}\n\n.CodeMirror-scroll {\n  /* 30px is the magic margin used to hide the element's real scrollbars */\n  /* See overflow: hidden in .CodeMirror */\n  margin-bottom: -30px; margin-right: -30px;\n  padding-bottom: 30px;\n  height: 100%;\n  outline: none; /* Prevent dragging from highlighting the element */\n  position: relative;\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n.CodeMirror-sizer {\n  position: relative;\n  border-right: 30px solid transparent;\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n/* The fake, visible scrollbars. Used to force redraw during scrolling\n   before actuall scrolling happens, thus preventing shaking and\n   flickering artifacts. */\n.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {\n  position: absolute;\n  z-index: 6;\n  display: none;\n}\n.CodeMirror-vscrollbar {\n  right: 0; top: 0;\n  overflow-x: hidden;\n  overflow-y: scroll;\n}\n.CodeMirror-hscrollbar {\n  bottom: 0; left: 0;\n  overflow-y: hidden;\n  overflow-x: scroll;\n}\n.CodeMirror-scrollbar-filler {\n  right: 0; bottom: 0;\n}\n.CodeMirror-gutter-filler {\n  left: 0; bottom: 0;\n}\n\n.CodeMirror-gutters {\n  position: absolute; left: 0; top: 0;\n  padding-bottom: 30px;\n  z-index: 3;\n}\n.CodeMirror-gutter {\n  white-space: normal;\n  height: 100%;\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n  padding-bottom: 30px;\n  margin-bottom: -32px;\n  display: inline-block;\n  /* Hack to make IE7 behave */\n  *zoom:1;\n  *display:inline;\n}\n.CodeMirror-gutter-elt {\n  position: absolute;\n  cursor: default;\n  z-index: 4;\n}\n\n.CodeMirror-lines {\n  cursor: text;\n  min-height: 1px; /* prevents collapsing before first draw */\n}\n.CodeMirror pre {\n  /* Reset some styles that the rest of the page might have set */\n  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;\n  border-width: 0;\n  background: transparent;\n  font-family: inherit;\n  font-size: inherit;\n  margin: 0;\n  white-space: pre;\n  word-wrap: normal;\n  line-height: inherit;\n  color: inherit;\n  z-index: 2;\n  position: relative;\n  overflow: visible;\n}\n.CodeMirror-wrap pre {\n  word-wrap: break-word;\n  white-space: pre-wrap;\n  word-break: normal;\n}\n\n.CodeMirror-linebackground {\n  position: absolute;\n  left: 0; right: 0; top: 0; bottom: 0;\n  z-index: 0;\n}\n\n.CodeMirror-linewidget {\n  position: relative;\n  z-index: 2;\n  overflow: auto;\n}\n\n.CodeMirror-widget {}\n\n.CodeMirror-wrap .CodeMirror-scroll {\n  overflow-x: hidden;\n}\n\n.CodeMirror-measure {\n  position: absolute;\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  visibility: hidden;\n}\n.CodeMirror-measure pre { position: static; }\n\n.CodeMirror div.CodeMirror-cursor {\n  position: absolute;\n  border-right: none;\n  width: 0;\n}\n\ndiv.CodeMirror-cursors {\n  visibility: hidden;\n  position: relative;\n  z-index: 3;\n}\n.CodeMirror-focused div.CodeMirror-cursors {\n  visibility: visible;\n}\n\n.CodeMirror-selected { background: #d9d9d9; }\n.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }\n.CodeMirror-crosshair { cursor: crosshair; }\n\n.cm-searching {\n  background: #ffa;\n  background: rgba(255, 255, 0, .4);\n}\n\n/* IE7 hack to prevent it from returning funny offsetTops on the spans */\n.CodeMirror span { *vertical-align: text-bottom; }\n\n/* Used to force a border model for a node */\n.cm-force-border { padding-right: .1px; }\n\n@media print {\n  /* Hide the cursor when printing */\n  .CodeMirror div.CodeMirror-cursors {\n    visibility: hidden;\n  }\n}\n\n/* Help users use markselection to safely style text background */\nspan.CodeMirror-selectedtext { background: none; }\n"
  },
  {
    "path": "public/admin/css/plugins/dataTables/dataTables.bootstrap.css",
    "content": "div.dataTables_length label {\n    float: left;\n    text-align: left;\n    font-weight: normal;\n}\n\ndiv.dataTables_length select {\n    width: 75px;\n}\n\ndiv.dataTables_filter label {\n    float: right;\n    font-weight: normal;\n}\n\ndiv.dataTables_filter input {\n    width: 16em;\n}\n\ndiv.dataTables_info {\n    padding-top: 8px;\n}\n\ndiv.dataTables_paginate {\n    float: right;\n    margin: 0;\n}\n\ndiv.dataTables_paginate ul.pagination {\n    margin: 2px 0;\n    white-space: nowrap;\n}\n\ntable.dataTable,\ntable.dataTable td,\ntable.dataTable th {\n    -webkit-box-sizing: content-box;\n    -moz-box-sizing: content-box;\n    box-sizing: content-box;\n}\n\ntable.dataTable {\n    clear: both;\n    margin-top: 6px !important;\n    margin-bottom: 6px !important;\n    max-width: none !important;\n}\n\ntable.dataTable thead .sorting,\ntable.dataTable thead .sorting_asc,\ntable.dataTable thead .sorting_desc,\ntable.dataTable thead .sorting_asc_disabled,\ntable.dataTable thead .sorting_desc_disabled {\n    cursor: pointer;\n}\n\ntable.dataTable thead .sorting {\n    background: url('../images/sort_both.png') no-repeat center right;\n}\n\ntable.dataTable thead .sorting_asc {\n    background: url('../images/sort_asc.png') no-repeat center right;\n}\n\ntable.dataTable thead .sorting_desc {\n    background: url('../images/sort_desc.png') no-repeat center right;\n}\n\ntable.dataTable thead .sorting_asc_disabled {\n    background: url('../images/sort_asc_disabled.png') no-repeat center right;\n}\n\ntable.dataTable thead .sorting_desc_disabled {\n    background: url('../images/sort_desc_disabled.png') no-repeat center right;\n}\n\ntable.dataTable th:active {\n    outline: none;\n}\n\n/* Scrolling */\n\ndiv.dataTables_scrollHead table {\n    margin-bottom: 0 !important;\n    border-bottom-left-radius: 0;\n    border-bottom-right-radius: 0;\n}\n\ndiv.dataTables_scrollHead table thead tr:last-child th:first-child,\ndiv.dataTables_scrollHead table thead tr:last-child td:first-child {\n    border-bottom-left-radius: 0 !important;\n    border-bottom-right-radius: 0 !important;\n}\n\ndiv.dataTables_scrollBody table {\n    margin-top: 0 !important;\n    margin-bottom: 0 !important;\n    border-top: none;\n}\n\ndiv.dataTables_scrollBody tbody tr:first-child th,\ndiv.dataTables_scrollBody tbody tr:first-child td {\n    border-top: none;\n}\n\ndiv.dataTables_scrollFoot table {\n    margin-top: 0 !important;\n    border-top: none;\n}\n\n/*\n * TableTools styles\n */\n\n.table tbody tr.active td,\n.table tbody tr.active th {\n    color: white;\n    background-color: #08C;\n}\n\n.table tbody tr.active:hover td,\n.table tbody tr.active:hover th {\n    background-color: #0075b0 !important;\n}\n\n.table tbody tr.active a {\n    color: white;\n}\n\n.table-striped tbody tr.active:nth-child(odd) td,\n.table-striped tbody tr.active:nth-child(odd) th {\n    background-color: #017ebc;\n}\n\ntable.DTTT_selectable tbody tr {\n    cursor: pointer;\n}\n\ndiv.DTTT .btn {\n    font-size: 12px;\n    color: #333 !important;\n}\n\ndiv.DTTT .btn:hover {\n    text-decoration: none !important;\n}\n\nul.DTTT_dropdown.dropdown-menu {\n    z-index: 2003;\n}\n\nul.DTTT_dropdown.dropdown-menu a {\n    color: #333 !important; /* needed only when demo_page.css is included */\n}\n\nul.DTTT_dropdown.dropdown-menu li {\n    position: relative;\n}\n\nul.DTTT_dropdown.dropdown-menu li:hover a {\n    color: white !important;\n    background-color: #0088cc;\n}\n\ndiv.DTTT_collection_background {\n    z-index: 2002;\n}\n\n/* TableTools information display */\n\ndiv.DTTT_print_info.modal {\n    height: 150px;\n    margin-top: -75px;\n    text-align: center;\n}\n\ndiv.DTTT_print_info h6 {\n    margin: 1em;\n    font-size: 28px;\n    font-weight: normal;\n    line-height: 28px;\n}\n\ndiv.DTTT_print_info p {\n    font-size: 14px;\n    line-height: 20px;\n}\n\n/*\n * FixedColumns styles\n */\n\ndiv.DTFC_LeftHeadWrapper table,\ndiv.DTFC_LeftFootWrapper table,\ndiv.DTFC_RightHeadWrapper table,\ndiv.DTFC_RightFootWrapper table,\ntable.DTFC_Cloned tr.even {\n    background-color: white;\n}\n\ndiv.DTFC_RightHeadWrapper table,\ndiv.DTFC_LeftHeadWrapper table {\n    margin-bottom: 0 !important;\n    border-top-right-radius: 0 !important;\n    border-bottom-left-radius: 0 !important;\n    border-bottom-right-radius: 0 !important;\n}\n\ndiv.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,\ndiv.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,\ndiv.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,\ndiv.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {\n    border-bottom-left-radius: 0 !important;\n    border-bottom-right-radius: 0 !important;\n}\n\ndiv.DTFC_RightBodyWrapper table,\ndiv.DTFC_LeftBodyWrapper table {\n    margin-bottom: 0 !important;\n    border-top: none;\n}\n\ndiv.DTFC_RightBodyWrapper tbody tr:first-child th,\ndiv.DTFC_RightBodyWrapper tbody tr:first-child td,\ndiv.DTFC_LeftBodyWrapper tbody tr:first-child th,\ndiv.DTFC_LeftBodyWrapper tbody tr:first-child td {\n    border-top: none;\n}\n\ndiv.DTFC_RightFootWrapper table,\ndiv.DTFC_LeftFootWrapper table {\n    border-top: none;\n}"
  },
  {
    "path": "public/admin/css/plugins/dataTables/dataTables.responsive.css",
    "content": "table.dataTable.dtr-inline.collapsed tbody td:first-child,\ntable.dataTable.dtr-inline.collapsed tbody th:first-child {\n    position: relative;\n    padding-left: 30px;\n    cursor: pointer;\n}\ntable.dataTable.dtr-inline.collapsed tbody td:first-child:before,\ntable.dataTable.dtr-inline.collapsed tbody th:first-child:before {\n    top: 8px;\n    left: 4px;\n    height: 16px;\n    width: 16px;\n    display: block;\n    position: absolute;\n    color: white;\n    border: 2px solid white;\n    border-radius: 16px;\n    text-align: center;\n    line-height: 14px;\n    box-shadow: 0 0 3px #444;\n    box-sizing: content-box;\n    content: '+';\n    background-color: #31b131;\n}\ntable.dataTable.dtr-inline.collapsed tbody td:first-child.dataTables_empty:before,\ntable.dataTable.dtr-inline.collapsed tbody th:first-child.dataTables_empty:before {\n    display: none;\n}\ntable.dataTable.dtr-inline.collapsed tbody tr.parent td:first-child:before,\ntable.dataTable.dtr-inline.collapsed tbody tr.parent th:first-child:before {\n    content: '-';\n    background-color: #d33333;\n}\ntable.dataTable.dtr-inline.collapsed tbody tr.child td:before {\n    display: none;\n}\ntable.dataTable.dtr-column tbody td.control,\ntable.dataTable.dtr-column tbody th.control {\n    position: relative;\n    cursor: pointer;\n}\ntable.dataTable.dtr-column tbody td.control:before,\ntable.dataTable.dtr-column tbody th.control:before {\n    top: 50%;\n    left: 50%;\n    height: 16px;\n    width: 16px;\n    margin-top: -10px;\n    margin-left: -10px;\n    display: block;\n    position: absolute;\n    color: white;\n    border: 2px solid white;\n    border-radius: 16px;\n    text-align: center;\n    line-height: 14px;\n    box-shadow: 0 0 3px #444;\n    box-sizing: content-box;\n    content: '+';\n    background-color: #31b131;\n}\ntable.dataTable.dtr-column tbody tr.parent td.control:before,\ntable.dataTable.dtr-column tbody tr.parent th.control:before {\n    content: '-';\n    background-color: #d33333;\n}\ntable.dataTable tr.child {\n    padding: 0.5em 1em;\n}\ntable.dataTable tr.child:hover {\n    background: transparent !important;\n}\ntable.dataTable tr.child ul {\n    display: inline-block;\n    list-style-type: none;\n    margin: 0;\n    padding: 0;\n}\ntable.dataTable tr.child ul li {\n    border-bottom: 1px solid #efefef;\n    padding: 0.5em 0;\n}\ntable.dataTable tr.child ul li:first-child {\n    padding-top: 0;\n}\ntable.dataTable tr.child ul li:last-child {\n    border-bottom: none;\n}\ntable.dataTable tr.child span.dtr-title {\n    display: inline-block;\n    min-width: 75px;\n    font-weight: bold;\n}\n"
  },
  {
    "path": "public/admin/css/plugins/datapicker/datepicker3.css",
    "content": "/*!\n * Datepicker for Bootstrap\n *\n * Copyright 2012 Stefan Petre\n * Improvements by Andrew Rowls\n * Licensed under the Apache License v2.0\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n */\n.datepicker {\n  padding: 4px;\n  border-radius: 4px;\n  direction: ltr;\n  /*.dow {\n\t\tborder-top: 1px solid #ddd !important;\n\t}*/\n}\n.datepicker-inline {\n  width: 220px;\n}\n.datepicker.datepicker-rtl {\n  direction: rtl;\n}\n.datepicker.datepicker-rtl table tr td span {\n  float: right;\n}\n.datepicker-dropdown {\n  top: 0;\n  left: 0;\n}\n.datepicker-dropdown:before {\n  content: '';\n  display: inline-block;\n  border-left: 7px solid transparent;\n  border-right: 7px solid transparent;\n  border-bottom: 7px solid #ccc;\n  border-top: 0;\n  border-bottom-color: rgba(0, 0, 0, 0.2);\n  position: absolute;\n}\n.datepicker-dropdown:after {\n  content: '';\n  display: inline-block;\n  border-left: 6px solid transparent;\n  border-right: 6px solid transparent;\n  border-bottom: 6px solid #fff;\n  border-top: 0;\n  position: absolute;\n}\n.datepicker-dropdown.datepicker-orient-left:before {\n  left: 6px;\n}\n.datepicker-dropdown.datepicker-orient-left:after {\n  left: 7px;\n}\n.datepicker-dropdown.datepicker-orient-right:before {\n  right: 6px;\n}\n.datepicker-dropdown.datepicker-orient-right:after {\n  right: 7px;\n}\n.datepicker-dropdown.datepicker-orient-top:before {\n  top: -7px;\n}\n.datepicker-dropdown.datepicker-orient-top:after {\n  top: -6px;\n}\n.datepicker-dropdown.datepicker-orient-bottom:before {\n  bottom: -7px;\n  border-bottom: 0;\n  border-top: 7px solid #999;\n}\n.datepicker-dropdown.datepicker-orient-bottom:after {\n  bottom: -6px;\n  border-bottom: 0;\n  border-top: 6px solid #fff;\n}\n.datepicker > div {\n  display: none;\n}\n.datepicker.days div.datepicker-days {\n  display: block;\n}\n.datepicker.months div.datepicker-months {\n  display: block;\n}\n.datepicker.years div.datepicker-years {\n  display: block;\n}\n.datepicker table {\n  margin: 0;\n  -webkit-touch-callout: none;\n  -webkit-user-select: none;\n  -khtml-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n.datepicker table tr td,\n.datepicker table tr th {\n  text-align: center;\n  width: 30px;\n  height: 30px;\n  border-radius: 4px;\n  border: none;\n}\n.table-striped .datepicker table tr td,\n.table-striped .datepicker table tr th {\n  background-color: transparent;\n}\n.datepicker table tr td.day:hover,\n.datepicker table tr td.day.focused {\n  background: #eeeeee;\n  cursor: pointer;\n}\n.datepicker table tr td.old,\n.datepicker table tr td.new {\n  color: #999999;\n}\n.datepicker table tr td.disabled,\n.datepicker table tr td.disabled:hover {\n  background: none;\n  color: #999999;\n  cursor: default;\n}\n.datepicker table tr td.today,\n.datepicker table tr td.today:hover,\n.datepicker table tr td.today.disabled,\n.datepicker table tr td.today.disabled:hover {\n  color: #000000;\n  background-color: #ffdb99;\n  border-color: #ffb733;\n}\n.datepicker table tr td.today:hover,\n.datepicker table tr td.today:hover:hover,\n.datepicker table tr td.today.disabled:hover,\n.datepicker table tr td.today.disabled:hover:hover,\n.datepicker table tr td.today:focus,\n.datepicker table tr td.today:hover:focus,\n.datepicker table tr td.today.disabled:focus,\n.datepicker table tr td.today.disabled:hover:focus,\n.datepicker table tr td.today:active,\n.datepicker table tr td.today:hover:active,\n.datepicker table tr td.today.disabled:active,\n.datepicker table tr td.today.disabled:hover:active,\n.datepicker table tr td.today.active,\n.datepicker table tr td.today:hover.active,\n.datepicker table tr td.today.disabled.active,\n.datepicker table tr td.today.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td.today,\n.open .dropdown-toggle.datepicker table tr td.today:hover,\n.open .dropdown-toggle.datepicker table tr td.today.disabled,\n.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {\n  color: #000000;\n  background-color: #ffcd70;\n  border-color: #f59e00;\n}\n.datepicker table tr td.today:active,\n.datepicker table tr td.today:hover:active,\n.datepicker table tr td.today.disabled:active,\n.datepicker table tr td.today.disabled:hover:active,\n.datepicker table tr td.today.active,\n.datepicker table tr td.today:hover.active,\n.datepicker table tr td.today.disabled.active,\n.datepicker table tr td.today.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td.today,\n.open .dropdown-toggle.datepicker table tr td.today:hover,\n.open .dropdown-toggle.datepicker table tr td.today.disabled,\n.open .dropdown-toggle.datepicker table tr td.today.disabled:hover {\n  background-image: none;\n}\n.datepicker table tr td.today.disabled,\n.datepicker table tr td.today:hover.disabled,\n.datepicker table tr td.today.disabled.disabled,\n.datepicker table tr td.today.disabled:hover.disabled,\n.datepicker table tr td.today[disabled],\n.datepicker table tr td.today:hover[disabled],\n.datepicker table tr td.today.disabled[disabled],\n.datepicker table tr td.today.disabled:hover[disabled],\nfieldset[disabled] .datepicker table tr td.today,\nfieldset[disabled] .datepicker table tr td.today:hover,\nfieldset[disabled] .datepicker table tr td.today.disabled,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover,\n.datepicker table tr td.today.disabled:hover,\n.datepicker table tr td.today:hover.disabled:hover,\n.datepicker table tr td.today.disabled.disabled:hover,\n.datepicker table tr td.today.disabled:hover.disabled:hover,\n.datepicker table tr td.today[disabled]:hover,\n.datepicker table tr td.today:hover[disabled]:hover,\n.datepicker table tr td.today.disabled[disabled]:hover,\n.datepicker table tr td.today.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td.today:hover,\nfieldset[disabled] .datepicker table tr td.today:hover:hover,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,\n.datepicker table tr td.today.disabled:focus,\n.datepicker table tr td.today:hover.disabled:focus,\n.datepicker table tr td.today.disabled.disabled:focus,\n.datepicker table tr td.today.disabled:hover.disabled:focus,\n.datepicker table tr td.today[disabled]:focus,\n.datepicker table tr td.today:hover[disabled]:focus,\n.datepicker table tr td.today.disabled[disabled]:focus,\n.datepicker table tr td.today.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td.today:focus,\nfieldset[disabled] .datepicker table tr td.today:hover:focus,\nfieldset[disabled] .datepicker table tr td.today.disabled:focus,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,\n.datepicker table tr td.today.disabled:active,\n.datepicker table tr td.today:hover.disabled:active,\n.datepicker table tr td.today.disabled.disabled:active,\n.datepicker table tr td.today.disabled:hover.disabled:active,\n.datepicker table tr td.today[disabled]:active,\n.datepicker table tr td.today:hover[disabled]:active,\n.datepicker table tr td.today.disabled[disabled]:active,\n.datepicker table tr td.today.disabled:hover[disabled]:active,\nfieldset[disabled] .datepicker table tr td.today:active,\nfieldset[disabled] .datepicker table tr td.today:hover:active,\nfieldset[disabled] .datepicker table tr td.today.disabled:active,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover:active,\n.datepicker table tr td.today.disabled.active,\n.datepicker table tr td.today:hover.disabled.active,\n.datepicker table tr td.today.disabled.disabled.active,\n.datepicker table tr td.today.disabled:hover.disabled.active,\n.datepicker table tr td.today[disabled].active,\n.datepicker table tr td.today:hover[disabled].active,\n.datepicker table tr td.today.disabled[disabled].active,\n.datepicker table tr td.today.disabled:hover[disabled].active,\nfieldset[disabled] .datepicker table tr td.today.active,\nfieldset[disabled] .datepicker table tr td.today:hover.active,\nfieldset[disabled] .datepicker table tr td.today.disabled.active,\nfieldset[disabled] .datepicker table tr td.today.disabled:hover.active {\n  background-color: #ffdb99;\n  border-color: #ffb733;\n}\n.datepicker table tr td.today:hover:hover {\n  color: #000;\n}\n.datepicker table tr td.today.active:hover {\n  color: #fff;\n}\n.datepicker table tr td.range,\n.datepicker table tr td.range:hover,\n.datepicker table tr td.range.disabled,\n.datepicker table tr td.range.disabled:hover {\n  background: #eeeeee;\n  border-radius: 0;\n}\n.datepicker table tr td.range.today,\n.datepicker table tr td.range.today:hover,\n.datepicker table tr td.range.today.disabled,\n.datepicker table tr td.range.today.disabled:hover {\n  color: #000000;\n  background-color: #f7ca77;\n  border-color: #f1a417;\n  border-radius: 0;\n}\n.datepicker table tr td.range.today:hover,\n.datepicker table tr td.range.today:hover:hover,\n.datepicker table tr td.range.today.disabled:hover,\n.datepicker table tr td.range.today.disabled:hover:hover,\n.datepicker table tr td.range.today:focus,\n.datepicker table tr td.range.today:hover:focus,\n.datepicker table tr td.range.today.disabled:focus,\n.datepicker table tr td.range.today.disabled:hover:focus,\n.datepicker table tr td.range.today:active,\n.datepicker table tr td.range.today:hover:active,\n.datepicker table tr td.range.today.disabled:active,\n.datepicker table tr td.range.today.disabled:hover:active,\n.datepicker table tr td.range.today.active,\n.datepicker table tr td.range.today:hover.active,\n.datepicker table tr td.range.today.disabled.active,\n.datepicker table tr td.range.today.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td.range.today,\n.open .dropdown-toggle.datepicker table tr td.range.today:hover,\n.open .dropdown-toggle.datepicker table tr td.range.today.disabled,\n.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {\n  color: #000000;\n  background-color: #f4bb51;\n  border-color: #bf800c;\n}\n.datepicker table tr td.range.today:active,\n.datepicker table tr td.range.today:hover:active,\n.datepicker table tr td.range.today.disabled:active,\n.datepicker table tr td.range.today.disabled:hover:active,\n.datepicker table tr td.range.today.active,\n.datepicker table tr td.range.today:hover.active,\n.datepicker table tr td.range.today.disabled.active,\n.datepicker table tr td.range.today.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td.range.today,\n.open .dropdown-toggle.datepicker table tr td.range.today:hover,\n.open .dropdown-toggle.datepicker table tr td.range.today.disabled,\n.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {\n  background-image: none;\n}\n.datepicker table tr td.range.today.disabled,\n.datepicker table tr td.range.today:hover.disabled,\n.datepicker table tr td.range.today.disabled.disabled,\n.datepicker table tr td.range.today.disabled:hover.disabled,\n.datepicker table tr td.range.today[disabled],\n.datepicker table tr td.range.today:hover[disabled],\n.datepicker table tr td.range.today.disabled[disabled],\n.datepicker table tr td.range.today.disabled:hover[disabled],\nfieldset[disabled] .datepicker table tr td.range.today,\nfieldset[disabled] .datepicker table tr td.range.today:hover,\nfieldset[disabled] .datepicker table tr td.range.today.disabled,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover,\n.datepicker table tr td.range.today.disabled:hover,\n.datepicker table tr td.range.today:hover.disabled:hover,\n.datepicker table tr td.range.today.disabled.disabled:hover,\n.datepicker table tr td.range.today.disabled:hover.disabled:hover,\n.datepicker table tr td.range.today[disabled]:hover,\n.datepicker table tr td.range.today:hover[disabled]:hover,\n.datepicker table tr td.range.today.disabled[disabled]:hover,\n.datepicker table tr td.range.today.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td.range.today:hover,\nfieldset[disabled] .datepicker table tr td.range.today:hover:hover,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,\n.datepicker table tr td.range.today.disabled:focus,\n.datepicker table tr td.range.today:hover.disabled:focus,\n.datepicker table tr td.range.today.disabled.disabled:focus,\n.datepicker table tr td.range.today.disabled:hover.disabled:focus,\n.datepicker table tr td.range.today[disabled]:focus,\n.datepicker table tr td.range.today:hover[disabled]:focus,\n.datepicker table tr td.range.today.disabled[disabled]:focus,\n.datepicker table tr td.range.today.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td.range.today:focus,\nfieldset[disabled] .datepicker table tr td.range.today:hover:focus,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:focus,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,\n.datepicker table tr td.range.today.disabled:active,\n.datepicker table tr td.range.today:hover.disabled:active,\n.datepicker table tr td.range.today.disabled.disabled:active,\n.datepicker table tr td.range.today.disabled:hover.disabled:active,\n.datepicker table tr td.range.today[disabled]:active,\n.datepicker table tr td.range.today:hover[disabled]:active,\n.datepicker table tr td.range.today.disabled[disabled]:active,\n.datepicker table tr td.range.today.disabled:hover[disabled]:active,\nfieldset[disabled] .datepicker table tr td.range.today:active,\nfieldset[disabled] .datepicker table tr td.range.today:hover:active,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:active,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,\n.datepicker table tr td.range.today.disabled.active,\n.datepicker table tr td.range.today:hover.disabled.active,\n.datepicker table tr td.range.today.disabled.disabled.active,\n.datepicker table tr td.range.today.disabled:hover.disabled.active,\n.datepicker table tr td.range.today[disabled].active,\n.datepicker table tr td.range.today:hover[disabled].active,\n.datepicker table tr td.range.today.disabled[disabled].active,\n.datepicker table tr td.range.today.disabled:hover[disabled].active,\nfieldset[disabled] .datepicker table tr td.range.today.active,\nfieldset[disabled] .datepicker table tr td.range.today:hover.active,\nfieldset[disabled] .datepicker table tr td.range.today.disabled.active,\nfieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active {\n  background-color: #f7ca77;\n  border-color: #f1a417;\n}\n.datepicker table tr td.selected,\n.datepicker table tr td.selected:hover,\n.datepicker table tr td.selected.disabled,\n.datepicker table tr td.selected.disabled:hover {\n  color: #ffffff;\n  background-color: #999999;\n  border-color: #555555;\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td.selected:hover,\n.datepicker table tr td.selected:hover:hover,\n.datepicker table tr td.selected.disabled:hover,\n.datepicker table tr td.selected.disabled:hover:hover,\n.datepicker table tr td.selected:focus,\n.datepicker table tr td.selected:hover:focus,\n.datepicker table tr td.selected.disabled:focus,\n.datepicker table tr td.selected.disabled:hover:focus,\n.datepicker table tr td.selected:active,\n.datepicker table tr td.selected:hover:active,\n.datepicker table tr td.selected.disabled:active,\n.datepicker table tr td.selected.disabled:hover:active,\n.datepicker table tr td.selected.active,\n.datepicker table tr td.selected:hover.active,\n.datepicker table tr td.selected.disabled.active,\n.datepicker table tr td.selected.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td.selected,\n.open .dropdown-toggle.datepicker table tr td.selected:hover,\n.open .dropdown-toggle.datepicker table tr td.selected.disabled,\n.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {\n  color: #ffffff;\n  background-color: #858585;\n  border-color: #373737;\n}\n.datepicker table tr td.selected:active,\n.datepicker table tr td.selected:hover:active,\n.datepicker table tr td.selected.disabled:active,\n.datepicker table tr td.selected.disabled:hover:active,\n.datepicker table tr td.selected.active,\n.datepicker table tr td.selected:hover.active,\n.datepicker table tr td.selected.disabled.active,\n.datepicker table tr td.selected.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td.selected,\n.open .dropdown-toggle.datepicker table tr td.selected:hover,\n.open .dropdown-toggle.datepicker table tr td.selected.disabled,\n.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover {\n  background-image: none;\n}\n.datepicker table tr td.selected.disabled,\n.datepicker table tr td.selected:hover.disabled,\n.datepicker table tr td.selected.disabled.disabled,\n.datepicker table tr td.selected.disabled:hover.disabled,\n.datepicker table tr td.selected[disabled],\n.datepicker table tr td.selected:hover[disabled],\n.datepicker table tr td.selected.disabled[disabled],\n.datepicker table tr td.selected.disabled:hover[disabled],\nfieldset[disabled] .datepicker table tr td.selected,\nfieldset[disabled] .datepicker table tr td.selected:hover,\nfieldset[disabled] .datepicker table tr td.selected.disabled,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover,\n.datepicker table tr td.selected.disabled:hover,\n.datepicker table tr td.selected:hover.disabled:hover,\n.datepicker table tr td.selected.disabled.disabled:hover,\n.datepicker table tr td.selected.disabled:hover.disabled:hover,\n.datepicker table tr td.selected[disabled]:hover,\n.datepicker table tr td.selected:hover[disabled]:hover,\n.datepicker table tr td.selected.disabled[disabled]:hover,\n.datepicker table tr td.selected.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td.selected:hover,\nfieldset[disabled] .datepicker table tr td.selected:hover:hover,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,\n.datepicker table tr td.selected.disabled:focus,\n.datepicker table tr td.selected:hover.disabled:focus,\n.datepicker table tr td.selected.disabled.disabled:focus,\n.datepicker table tr td.selected.disabled:hover.disabled:focus,\n.datepicker table tr td.selected[disabled]:focus,\n.datepicker table tr td.selected:hover[disabled]:focus,\n.datepicker table tr td.selected.disabled[disabled]:focus,\n.datepicker table tr td.selected.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td.selected:focus,\nfieldset[disabled] .datepicker table tr td.selected:hover:focus,\nfieldset[disabled] .datepicker table tr td.selected.disabled:focus,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,\n.datepicker table tr td.selected.disabled:active,\n.datepicker table tr td.selected:hover.disabled:active,\n.datepicker table tr td.selected.disabled.disabled:active,\n.datepicker table tr td.selected.disabled:hover.disabled:active,\n.datepicker table tr td.selected[disabled]:active,\n.datepicker table tr td.selected:hover[disabled]:active,\n.datepicker table tr td.selected.disabled[disabled]:active,\n.datepicker table tr td.selected.disabled:hover[disabled]:active,\nfieldset[disabled] .datepicker table tr td.selected:active,\nfieldset[disabled] .datepicker table tr td.selected:hover:active,\nfieldset[disabled] .datepicker table tr td.selected.disabled:active,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,\n.datepicker table tr td.selected.disabled.active,\n.datepicker table tr td.selected:hover.disabled.active,\n.datepicker table tr td.selected.disabled.disabled.active,\n.datepicker table tr td.selected.disabled:hover.disabled.active,\n.datepicker table tr td.selected[disabled].active,\n.datepicker table tr td.selected:hover[disabled].active,\n.datepicker table tr td.selected.disabled[disabled].active,\n.datepicker table tr td.selected.disabled:hover[disabled].active,\nfieldset[disabled] .datepicker table tr td.selected.active,\nfieldset[disabled] .datepicker table tr td.selected:hover.active,\nfieldset[disabled] .datepicker table tr td.selected.disabled.active,\nfieldset[disabled] .datepicker table tr td.selected.disabled:hover.active {\n  background-color: #999999;\n  border-color: #555555;\n}\n.datepicker table tr td.active,\n.datepicker table tr td.active:hover,\n.datepicker table tr td.active.disabled,\n.datepicker table tr td.active.disabled:hover {\n  color: #ffffff;\n  background-color: #428bca;\n  border-color: #357ebd;\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td.active:hover,\n.datepicker table tr td.active:hover:hover,\n.datepicker table tr td.active.disabled:hover,\n.datepicker table tr td.active.disabled:hover:hover,\n.datepicker table tr td.active:focus,\n.datepicker table tr td.active:hover:focus,\n.datepicker table tr td.active.disabled:focus,\n.datepicker table tr td.active.disabled:hover:focus,\n.datepicker table tr td.active:active,\n.datepicker table tr td.active:hover:active,\n.datepicker table tr td.active.disabled:active,\n.datepicker table tr td.active.disabled:hover:active,\n.datepicker table tr td.active.active,\n.datepicker table tr td.active:hover.active,\n.datepicker table tr td.active.disabled.active,\n.datepicker table tr td.active.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td.active,\n.open .dropdown-toggle.datepicker table tr td.active:hover,\n.open .dropdown-toggle.datepicker table tr td.active.disabled,\n.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {\n  color: #ffffff;\n  background-color: #3276b1;\n  border-color: #285e8e;\n}\n.datepicker table tr td.active:active,\n.datepicker table tr td.active:hover:active,\n.datepicker table tr td.active.disabled:active,\n.datepicker table tr td.active.disabled:hover:active,\n.datepicker table tr td.active.active,\n.datepicker table tr td.active:hover.active,\n.datepicker table tr td.active.disabled.active,\n.datepicker table tr td.active.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td.active,\n.open .dropdown-toggle.datepicker table tr td.active:hover,\n.open .dropdown-toggle.datepicker table tr td.active.disabled,\n.open .dropdown-toggle.datepicker table tr td.active.disabled:hover {\n  background-image: none;\n}\n.datepicker table tr td.active.disabled,\n.datepicker table tr td.active:hover.disabled,\n.datepicker table tr td.active.disabled.disabled,\n.datepicker table tr td.active.disabled:hover.disabled,\n.datepicker table tr td.active[disabled],\n.datepicker table tr td.active:hover[disabled],\n.datepicker table tr td.active.disabled[disabled],\n.datepicker table tr td.active.disabled:hover[disabled],\nfieldset[disabled] .datepicker table tr td.active,\nfieldset[disabled] .datepicker table tr td.active:hover,\nfieldset[disabled] .datepicker table tr td.active.disabled,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover,\n.datepicker table tr td.active.disabled:hover,\n.datepicker table tr td.active:hover.disabled:hover,\n.datepicker table tr td.active.disabled.disabled:hover,\n.datepicker table tr td.active.disabled:hover.disabled:hover,\n.datepicker table tr td.active[disabled]:hover,\n.datepicker table tr td.active:hover[disabled]:hover,\n.datepicker table tr td.active.disabled[disabled]:hover,\n.datepicker table tr td.active.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td.active:hover,\nfieldset[disabled] .datepicker table tr td.active:hover:hover,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,\n.datepicker table tr td.active.disabled:focus,\n.datepicker table tr td.active:hover.disabled:focus,\n.datepicker table tr td.active.disabled.disabled:focus,\n.datepicker table tr td.active.disabled:hover.disabled:focus,\n.datepicker table tr td.active[disabled]:focus,\n.datepicker table tr td.active:hover[disabled]:focus,\n.datepicker table tr td.active.disabled[disabled]:focus,\n.datepicker table tr td.active.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td.active:focus,\nfieldset[disabled] .datepicker table tr td.active:hover:focus,\nfieldset[disabled] .datepicker table tr td.active.disabled:focus,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,\n.datepicker table tr td.active.disabled:active,\n.datepicker table tr td.active:hover.disabled:active,\n.datepicker table tr td.active.disabled.disabled:active,\n.datepicker table tr td.active.disabled:hover.disabled:active,\n.datepicker table tr td.active[disabled]:active,\n.datepicker table tr td.active:hover[disabled]:active,\n.datepicker table tr td.active.disabled[disabled]:active,\n.datepicker table tr td.active.disabled:hover[disabled]:active,\nfieldset[disabled] .datepicker table tr td.active:active,\nfieldset[disabled] .datepicker table tr td.active:hover:active,\nfieldset[disabled] .datepicker table tr td.active.disabled:active,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover:active,\n.datepicker table tr td.active.disabled.active,\n.datepicker table tr td.active:hover.disabled.active,\n.datepicker table tr td.active.disabled.disabled.active,\n.datepicker table tr td.active.disabled:hover.disabled.active,\n.datepicker table tr td.active[disabled].active,\n.datepicker table tr td.active:hover[disabled].active,\n.datepicker table tr td.active.disabled[disabled].active,\n.datepicker table tr td.active.disabled:hover[disabled].active,\nfieldset[disabled] .datepicker table tr td.active.active,\nfieldset[disabled] .datepicker table tr td.active:hover.active,\nfieldset[disabled] .datepicker table tr td.active.disabled.active,\nfieldset[disabled] .datepicker table tr td.active.disabled:hover.active {\n  background-color: #428bca;\n  border-color: #357ebd;\n}\n.datepicker table tr td span {\n  display: block;\n  width: 23%;\n  height: 54px;\n  line-height: 54px;\n  float: left;\n  margin: 1%;\n  cursor: pointer;\n  border-radius: 4px;\n}\n.datepicker table tr td span:hover {\n  background: #eeeeee;\n}\n.datepicker table tr td span.disabled,\n.datepicker table tr td span.disabled:hover {\n  background: none;\n  color: #999999;\n  cursor: default;\n}\n.datepicker table tr td span.active,\n.datepicker table tr td span.active:hover,\n.datepicker table tr td span.active.disabled,\n.datepicker table tr td span.active.disabled:hover {\n  color: #ffffff;\n  background-color: #428bca;\n  border-color: #357ebd;\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td span.active:hover,\n.datepicker table tr td span.active:hover:hover,\n.datepicker table tr td span.active.disabled:hover,\n.datepicker table tr td span.active.disabled:hover:hover,\n.datepicker table tr td span.active:focus,\n.datepicker table tr td span.active:hover:focus,\n.datepicker table tr td span.active.disabled:focus,\n.datepicker table tr td span.active.disabled:hover:focus,\n.datepicker table tr td span.active:active,\n.datepicker table tr td span.active:hover:active,\n.datepicker table tr td span.active.disabled:active,\n.datepicker table tr td span.active.disabled:hover:active,\n.datepicker table tr td span.active.active,\n.datepicker table tr td span.active:hover.active,\n.datepicker table tr td span.active.disabled.active,\n.datepicker table tr td span.active.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td span.active,\n.open .dropdown-toggle.datepicker table tr td span.active:hover,\n.open .dropdown-toggle.datepicker table tr td span.active.disabled,\n.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {\n  color: #ffffff;\n  background-color: #3276b1;\n  border-color: #285e8e;\n}\n.datepicker table tr td span.active:active,\n.datepicker table tr td span.active:hover:active,\n.datepicker table tr td span.active.disabled:active,\n.datepicker table tr td span.active.disabled:hover:active,\n.datepicker table tr td span.active.active,\n.datepicker table tr td span.active:hover.active,\n.datepicker table tr td span.active.disabled.active,\n.datepicker table tr td span.active.disabled:hover.active,\n.open .dropdown-toggle.datepicker table tr td span.active,\n.open .dropdown-toggle.datepicker table tr td span.active:hover,\n.open .dropdown-toggle.datepicker table tr td span.active.disabled,\n.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {\n  background-image: none;\n}\n.datepicker table tr td span.active.disabled,\n.datepicker table tr td span.active:hover.disabled,\n.datepicker table tr td span.active.disabled.disabled,\n.datepicker table tr td span.active.disabled:hover.disabled,\n.datepicker table tr td span.active[disabled],\n.datepicker table tr td span.active:hover[disabled],\n.datepicker table tr td span.active.disabled[disabled],\n.datepicker table tr td span.active.disabled:hover[disabled],\nfieldset[disabled] .datepicker table tr td span.active,\nfieldset[disabled] .datepicker table tr td span.active:hover,\nfieldset[disabled] .datepicker table tr td span.active.disabled,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover,\n.datepicker table tr td span.active.disabled:hover,\n.datepicker table tr td span.active:hover.disabled:hover,\n.datepicker table tr td span.active.disabled.disabled:hover,\n.datepicker table tr td span.active.disabled:hover.disabled:hover,\n.datepicker table tr td span.active[disabled]:hover,\n.datepicker table tr td span.active:hover[disabled]:hover,\n.datepicker table tr td span.active.disabled[disabled]:hover,\n.datepicker table tr td span.active.disabled:hover[disabled]:hover,\nfieldset[disabled] .datepicker table tr td span.active:hover,\nfieldset[disabled] .datepicker table tr td span.active:hover:hover,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,\n.datepicker table tr td span.active.disabled:focus,\n.datepicker table tr td span.active:hover.disabled:focus,\n.datepicker table tr td span.active.disabled.disabled:focus,\n.datepicker table tr td span.active.disabled:hover.disabled:focus,\n.datepicker table tr td span.active[disabled]:focus,\n.datepicker table tr td span.active:hover[disabled]:focus,\n.datepicker table tr td span.active.disabled[disabled]:focus,\n.datepicker table tr td span.active.disabled:hover[disabled]:focus,\nfieldset[disabled] .datepicker table tr td span.active:focus,\nfieldset[disabled] .datepicker table tr td span.active:hover:focus,\nfieldset[disabled] .datepicker table tr td span.active.disabled:focus,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,\n.datepicker table tr td span.active.disabled:active,\n.datepicker table tr td span.active:hover.disabled:active,\n.datepicker table tr td span.active.disabled.disabled:active,\n.datepicker table tr td span.active.disabled:hover.disabled:active,\n.datepicker table tr td span.active[disabled]:active,\n.datepicker table tr td span.active:hover[disabled]:active,\n.datepicker table tr td span.active.disabled[disabled]:active,\n.datepicker table tr td span.active.disabled:hover[disabled]:active,\nfieldset[disabled] .datepicker table tr td span.active:active,\nfieldset[disabled] .datepicker table tr td span.active:hover:active,\nfieldset[disabled] .datepicker table tr td span.active.disabled:active,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,\n.datepicker table tr td span.active.disabled.active,\n.datepicker table tr td span.active:hover.disabled.active,\n.datepicker table tr td span.active.disabled.disabled.active,\n.datepicker table tr td span.active.disabled:hover.disabled.active,\n.datepicker table tr td span.active[disabled].active,\n.datepicker table tr td span.active:hover[disabled].active,\n.datepicker table tr td span.active.disabled[disabled].active,\n.datepicker table tr td span.active.disabled:hover[disabled].active,\nfieldset[disabled] .datepicker table tr td span.active.active,\nfieldset[disabled] .datepicker table tr td span.active:hover.active,\nfieldset[disabled] .datepicker table tr td span.active.disabled.active,\nfieldset[disabled] .datepicker table tr td span.active.disabled:hover.active {\n  background-color: #428bca;\n  border-color: #357ebd;\n}\n.datepicker table tr td span.old,\n.datepicker table tr td span.new {\n  color: #999999;\n}\n.datepicker th.datepicker-switch {\n  width: 145px;\n}\n.datepicker thead tr:first-child th,\n.datepicker tfoot tr th {\n  cursor: pointer;\n}\n.datepicker thead tr:first-child th:hover,\n.datepicker tfoot tr th:hover {\n  background: #eeeeee;\n}\n.datepicker .cw {\n  font-size: 10px;\n  width: 12px;\n  padding: 0 2px 0 5px;\n  vertical-align: middle;\n}\n.datepicker thead tr:first-child th.cw {\n  cursor: default;\n  background-color: transparent;\n}\n.input-group.date .input-group-addon i {\n  cursor: pointer;\n  width: 16px;\n  height: 16px;\n}\n.input-daterange input {\n  text-align: center;\n}\n.input-daterange input:first-child {\n  border-radius: 3px 0 0 3px;\n}\n.input-daterange input:last-child {\n  border-radius: 0 3px 3px 0;\n}\n.input-daterange .input-group-addon {\n  width: auto;\n  min-width: 16px;\n  padding: 4px 5px;\n  font-weight: normal;\n  line-height: 1.428571429;\n  text-align: center;\n  text-shadow: 0 1px 0 #fff;\n  vertical-align: middle;\n  background-color: #eeeeee;\n  border-width: 1px 0;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n.datepicker.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  float: left;\n  display: none;\n  min-width: 160px;\n  list-style: none;\n  background-color: #ffffff;\n  border: 1px solid #ccc;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 5px;\n  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n  -webkit-background-clip: padding-box;\n  -moz-background-clip: padding;\n  background-clip: padding-box;\n  *border-right-width: 2px;\n  *border-bottom-width: 2px;\n  color: #333333;\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 13px;\n  line-height: 1.428571429;\n}\n.datepicker.dropdown-menu th,\n.datepicker.dropdown-menu td {\n  padding: 4px 5px;\n}\n"
  },
  {
    "path": "public/admin/css/plugins/dropzone/basic.css",
    "content": "/* The MIT License */\n.dropzone,\n.dropzone *,\n.dropzone-previews,\n.dropzone-previews * {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\n.dropzone {\n  position: relative;\n  border: 1px solid rgba(0,0,0,0.08);\n  background: rgba(0,0,0,0.02);\n  padding: 1em;\n}\n.dropzone.dz-clickable {\n  cursor: pointer;\n}\n.dropzone.dz-clickable .dz-message,\n.dropzone.dz-clickable .dz-message span {\n  cursor: pointer;\n}\n.dropzone.dz-clickable * {\n  cursor: default;\n}\n.dropzone .dz-message {\n  opacity: 1;\n  -ms-filter: none;\n  filter: none;\n}\n.dropzone.dz-drag-hover {\n  border-color: rgba(0,0,0,0.15);\n  background: rgba(0,0,0,0.04);\n}\n.dropzone.dz-started .dz-message {\n  display: none;\n}\n.dropzone .dz-preview,\n.dropzone-previews .dz-preview {\n  background: rgba(255,255,255,0.8);\n  position: relative;\n  display: inline-block;\n  margin: 17px;\n  vertical-align: top;\n  border: 1px solid #acacac;\n  padding: 6px 6px 6px 6px;\n}\n.dropzone .dz-preview.dz-file-preview [data-dz-thumbnail],\n.dropzone-previews .dz-preview.dz-file-preview [data-dz-thumbnail] {\n  display: none;\n}\n.dropzone .dz-preview .dz-details,\n.dropzone-previews .dz-preview .dz-details {\n  width: 100px;\n  height: 100px;\n  position: relative;\n  background: #ebebeb;\n  padding: 5px;\n  margin-bottom: 22px;\n}\n.dropzone .dz-preview .dz-details .dz-filename,\n.dropzone-previews .dz-preview .dz-details .dz-filename {\n  overflow: hidden;\n  height: 100%;\n}\n.dropzone .dz-preview .dz-details img,\n.dropzone-previews .dz-preview .dz-details img {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100px;\n  height: 100px;\n}\n.dropzone .dz-preview .dz-details .dz-size,\n.dropzone-previews .dz-preview .dz-details .dz-size {\n  position: absolute;\n  bottom: -28px;\n  left: 3px;\n  height: 28px;\n  line-height: 28px;\n}\n.dropzone .dz-preview.dz-error .dz-error-mark,\n.dropzone-previews .dz-preview.dz-error .dz-error-mark {\n  display: block;\n}\n.dropzone .dz-preview.dz-success .dz-success-mark,\n.dropzone-previews .dz-preview.dz-success .dz-success-mark {\n  display: block;\n}\n.dropzone .dz-preview:hover .dz-details img,\n.dropzone-previews .dz-preview:hover .dz-details img {\n  display: none;\n}\n.dropzone .dz-preview .dz-success-mark,\n.dropzone-previews .dz-preview .dz-success-mark,\n.dropzone .dz-preview .dz-error-mark,\n.dropzone-previews .dz-preview .dz-error-mark {\n  display: none;\n  position: absolute;\n  width: 40px;\n  height: 40px;\n  font-size: 30px;\n  text-align: center;\n  right: -10px;\n  top: -10px;\n}\n.dropzone .dz-preview .dz-success-mark,\n.dropzone-previews .dz-preview .dz-success-mark {\n  color: #8cc657;\n}\n.dropzone .dz-preview .dz-error-mark,\n.dropzone-previews .dz-preview .dz-error-mark {\n  color: #ee162d;\n}\n.dropzone .dz-preview .dz-progress,\n.dropzone-previews .dz-preview .dz-progress {\n  position: absolute;\n  top: 100px;\n  left: 6px;\n  right: 6px;\n  height: 6px;\n  background: #d7d7d7;\n  display: none;\n}\n.dropzone .dz-preview .dz-progress .dz-upload,\n.dropzone-previews .dz-preview .dz-progress .dz-upload {\n  display: block;\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  width: 0%;\n  background-color: #8cc657;\n}\n.dropzone .dz-preview.dz-processing .dz-progress,\n.dropzone-previews .dz-preview.dz-processing .dz-progress {\n  display: block;\n}\n.dropzone .dz-preview .dz-error-message,\n.dropzone-previews .dz-preview .dz-error-message {\n  display: none;\n  position: absolute;\n  top: -5px;\n  left: -20px;\n  background: rgba(245,245,245,0.8);\n  padding: 8px 10px;\n  color: #800;\n  min-width: 140px;\n  max-width: 500px;\n  z-index: 500;\n}\n.dropzone .dz-preview:hover.dz-error .dz-error-message,\n.dropzone-previews .dz-preview:hover.dz-error .dz-error-message {\n  display: block;\n}\n"
  },
  {
    "path": "public/admin/css/plugins/dropzone/dropzone.css",
    "content": "/* The MIT License */\n.dropzone,\n.dropzone *,\n.dropzone-previews,\n.dropzone-previews * {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\n.dropzone {\n  position: relative;\n  border: 1px solid rgba(0,0,0,0.08);\n  background: rgba(0,0,0,0.02);\n  padding: 1em;\n}\n.dropzone.dz-clickable {\n  cursor: pointer;\n}\n.dropzone.dz-clickable .dz-message,\n.dropzone.dz-clickable .dz-message span {\n  cursor: pointer;\n}\n.dropzone.dz-clickable * {\n  cursor: default;\n}\n.dropzone .dz-message {\n  opacity: 1;\n  -ms-filter: none;\n  filter: none;\n}\n.dropzone.dz-drag-hover {\n  border-color: rgba(0,0,0,0.15);\n  background: rgba(0,0,0,0.04);\n}\n.dropzone.dz-started .dz-message {\n  display: none;\n}\n.dropzone .dz-preview,\n.dropzone-previews .dz-preview {\n  background: rgba(255,255,255,0.8);\n  position: relative;\n  display: inline-block;\n  margin: 17px;\n  vertical-align: top;\n  border: 1px solid #acacac;\n  padding: 6px 6px 6px 6px;\n}\n.dropzone .dz-preview.dz-file-preview [data-dz-thumbnail],\n.dropzone-previews .dz-preview.dz-file-preview [data-dz-thumbnail] {\n  display: none;\n}\n.dropzone .dz-preview .dz-details,\n.dropzone-previews .dz-preview .dz-details {\n  width: 100px;\n  height: 100px;\n  position: relative;\n  background: #ebebeb;\n  padding: 5px;\n  margin-bottom: 22px;\n}\n.dropzone .dz-preview .dz-details .dz-filename,\n.dropzone-previews .dz-preview .dz-details .dz-filename {\n  overflow: hidden;\n  height: 100%;\n}\n.dropzone .dz-preview .dz-details img,\n.dropzone-previews .dz-preview .dz-details img {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100px;\n  height: 100px;\n}\n.dropzone .dz-preview .dz-details .dz-size,\n.dropzone-previews .dz-preview .dz-details .dz-size {\n  position: absolute;\n  bottom: -28px;\n  left: 3px;\n  height: 28px;\n  line-height: 28px;\n}\n.dropzone .dz-preview.dz-error .dz-error-mark,\n.dropzone-previews .dz-preview.dz-error .dz-error-mark {\n  display: block;\n}\n.dropzone .dz-preview.dz-success .dz-success-mark,\n.dropzone-previews .dz-preview.dz-success .dz-success-mark {\n  display: block;\n}\n.dropzone .dz-preview:hover .dz-details img,\n.dropzone-previews .dz-preview:hover .dz-details img {\n  display: none;\n}\n.dropzone .dz-preview .dz-success-mark,\n.dropzone-previews .dz-preview .dz-success-mark,\n.dropzone .dz-preview .dz-error-mark,\n.dropzone-previews .dz-preview .dz-error-mark {\n  display: none;\n  position: absolute;\n  width: 40px;\n  height: 40px;\n  font-size: 30px;\n  text-align: center;\n  right: -10px;\n  top: -10px;\n}\n.dropzone .dz-preview .dz-success-mark,\n.dropzone-previews .dz-preview .dz-success-mark {\n  color: #8cc657;\n}\n.dropzone .dz-preview .dz-error-mark,\n.dropzone-previews .dz-preview .dz-error-mark {\n  color: #ee162d;\n}\n.dropzone .dz-preview .dz-progress,\n.dropzone-previews .dz-preview .dz-progress {\n  position: absolute;\n  top: 100px;\n  left: 6px;\n  right: 6px;\n  height: 6px;\n  background: #d7d7d7;\n  display: none;\n}\n.dropzone .dz-preview .dz-progress .dz-upload,\n.dropzone-previews .dz-preview .dz-progress .dz-upload {\n  display: block;\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  width: 0%;\n  background-color: #8cc657;\n}\n.dropzone .dz-preview.dz-processing .dz-progress,\n.dropzone-previews .dz-preview.dz-processing .dz-progress {\n  display: block;\n}\n.dropzone .dz-preview .dz-error-message,\n.dropzone-previews .dz-preview .dz-error-message {\n  display: none;\n  position: absolute;\n  top: -5px;\n  left: -20px;\n  background: rgba(245,245,245,0.8);\n  padding: 8px 10px;\n  color: #800;\n  min-width: 140px;\n  max-width: 500px;\n  z-index: 500;\n}\n.dropzone .dz-preview:hover.dz-error .dz-error-message,\n.dropzone-previews .dz-preview:hover.dz-error .dz-error-message {\n  display: block;\n}\n.dropzone {\n  border: 1px solid rgba(0,0,0,0.03);\n  min-height: 360px;\n  -webkit-border-radius: 3px;\n  border-radius: 3px;\n  background: rgba(0,0,0,0.03);\n  padding: 23px;\n}\n.dropzone .dz-default.dz-message {\n  opacity: 1;\n  -ms-filter: none;\n  filter: none;\n  -webkit-transition: opacity 0.3s ease-in-out;\n  -moz-transition: opacity 0.3s ease-in-out;\n  -o-transition: opacity 0.3s ease-in-out;\n  -ms-transition: opacity 0.3s ease-in-out;\n  transition: opacity 0.3s ease-in-out;\n  background-image: url(\"../images/spritemap.png\");\n  background-repeat: no-repeat;\n  background-position: 0 0;\n  position: absolute;\n  width: 428px;\n  height: 123px;\n  margin-left: -214px;\n  margin-top: -61.5px;\n  top: 50%;\n  left: 50%;\n}\n@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) {\n  .dropzone .dz-default.dz-message {\n    background-image: url(\"../images/spritemap@2x.png\");\n    -webkit-background-size: 428px 406px;\n    -moz-background-size: 428px 406px;\n    background-size: 428px 406px;\n  }\n}\n.dropzone .dz-default.dz-message span {\n  display: none;\n}\n.dropzone.dz-square .dz-default.dz-message {\n  background-position: 0 -123px;\n  width: 268px;\n  margin-left: -134px;\n  height: 174px;\n  margin-top: -87px;\n}\n.dropzone.dz-drag-hover .dz-message {\n  opacity: 0.15;\n  -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=15)\";\n  filter: alpha(opacity=15);\n}\n.dropzone.dz-started .dz-message {\n  display: block;\n  opacity: 0;\n  -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n  filter: alpha(opacity=0);\n}\n.dropzone .dz-preview,\n.dropzone-previews .dz-preview {\n  -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.16);\n  box-shadow: 1px 1px 4px rgba(0,0,0,0.16);\n  font-size: 14px;\n}\n.dropzone .dz-preview.dz-image-preview:hover .dz-details img,\n.dropzone-previews .dz-preview.dz-image-preview:hover .dz-details img {\n  display: block;\n  opacity: 0.1;\n  -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=10)\";\n  filter: alpha(opacity=10);\n}\n.dropzone .dz-preview.dz-success .dz-success-mark,\n.dropzone-previews .dz-preview.dz-success .dz-success-mark {\n  opacity: 1;\n  -ms-filter: none;\n  filter: none;\n}\n.dropzone .dz-preview.dz-error .dz-error-mark,\n.dropzone-previews .dz-preview.dz-error .dz-error-mark {\n  opacity: 1;\n  -ms-filter: none;\n  filter: none;\n}\n.dropzone .dz-preview.dz-error .dz-progress .dz-upload,\n.dropzone-previews .dz-preview.dz-error .dz-progress .dz-upload {\n  background: #ee1e2d;\n}\n.dropzone .dz-preview .dz-error-mark,\n.dropzone-previews .dz-preview .dz-error-mark,\n.dropzone .dz-preview .dz-success-mark,\n.dropzone-previews .dz-preview .dz-success-mark {\n  display: block;\n  opacity: 0;\n  -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n  filter: alpha(opacity=0);\n  -webkit-transition: opacity 0.4s ease-in-out;\n  -moz-transition: opacity 0.4s ease-in-out;\n  -o-transition: opacity 0.4s ease-in-out;\n  -ms-transition: opacity 0.4s ease-in-out;\n  transition: opacity 0.4s ease-in-out;\n  background-image: url(\"../images/spritemap.png\");\n  background-repeat: no-repeat;\n}\n@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) {\n  .dropzone .dz-preview .dz-error-mark,\n  .dropzone-previews .dz-preview .dz-error-mark,\n  .dropzone .dz-preview .dz-success-mark,\n  .dropzone-previews .dz-preview .dz-success-mark {\n    background-image: url(\"../images/spritemap@2x.png\");\n    -webkit-background-size: 428px 406px;\n    -moz-background-size: 428px 406px;\n    background-size: 428px 406px;\n  }\n}\n.dropzone .dz-preview .dz-error-mark span,\n.dropzone-previews .dz-preview .dz-error-mark span,\n.dropzone .dz-preview .dz-success-mark span,\n.dropzone-previews .dz-preview .dz-success-mark span {\n  display: none;\n}\n.dropzone .dz-preview .dz-error-mark,\n.dropzone-previews .dz-preview .dz-error-mark {\n  background-position: -268px -123px;\n}\n.dropzone .dz-preview .dz-success-mark,\n.dropzone-previews .dz-preview .dz-success-mark {\n  background-position: -268px -163px;\n}\n.dropzone .dz-preview .dz-progress .dz-upload,\n.dropzone-previews .dz-preview .dz-progress .dz-upload {\n  -webkit-animation: loading 0.4s linear infinite;\n  -moz-animation: loading 0.4s linear infinite;\n  -o-animation: loading 0.4s linear infinite;\n  -ms-animation: loading 0.4s linear infinite;\n  animation: loading 0.4s linear infinite;\n  -webkit-transition: width 0.3s ease-in-out;\n  -moz-transition: width 0.3s ease-in-out;\n  -o-transition: width 0.3s ease-in-out;\n  -ms-transition: width 0.3s ease-in-out;\n  transition: width 0.3s ease-in-out;\n  -webkit-border-radius: 2px;\n  border-radius: 2px;\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 0%;\n  height: 100%;\n  background-image: url(\"../images/spritemap.png\");\n  background-repeat: repeat-x;\n  background-position: 0px -400px;\n}\n@media all and (-webkit-min-device-pixel-ratio:1.5),(min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:1.5/1),(min-device-pixel-ratio:1.5),(min-resolution:138dpi),(min-resolution:1.5dppx) {\n  .dropzone .dz-preview .dz-progress .dz-upload,\n  .dropzone-previews .dz-preview .dz-progress .dz-upload {\n    background-image: url(\"../images/spritemap@2x.png\");\n    -webkit-background-size: 428px 406px;\n    -moz-background-size: 428px 406px;\n    background-size: 428px 406px;\n  }\n}\n.dropzone .dz-preview.dz-success .dz-progress,\n.dropzone-previews .dz-preview.dz-success .dz-progress {\n  display: block;\n  opacity: 0;\n  -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n  filter: alpha(opacity=0);\n  -webkit-transition: opacity 0.4s ease-in-out;\n  -moz-transition: opacity 0.4s ease-in-out;\n  -o-transition: opacity 0.4s ease-in-out;\n  -ms-transition: opacity 0.4s ease-in-out;\n  transition: opacity 0.4s ease-in-out;\n}\n.dropzone .dz-preview .dz-error-message,\n.dropzone-previews .dz-preview .dz-error-message {\n  display: block;\n  opacity: 0;\n  -ms-filter: \"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\";\n  filter: alpha(opacity=0);\n  -webkit-transition: opacity 0.3s ease-in-out;\n  -moz-transition: opacity 0.3s ease-in-out;\n  -o-transition: opacity 0.3s ease-in-out;\n  -ms-transition: opacity 0.3s ease-in-out;\n  transition: opacity 0.3s ease-in-out;\n}\n.dropzone .dz-preview:hover.dz-error .dz-error-message,\n.dropzone-previews .dz-preview:hover.dz-error .dz-error-message {\n  opacity: 1;\n  -ms-filter: none;\n  filter: none;\n}\n.dropzone a.dz-remove,\n.dropzone-previews a.dz-remove {\n  background-image: -webkit-linear-gradient(top, #fafafa, #eee);\n  background-image: -moz-linear-gradient(top, #fafafa, #eee);\n  background-image: -o-linear-gradient(top, #fafafa, #eee);\n  background-image: -ms-linear-gradient(top, #fafafa, #eee);\n  background-image: linear-gradient(to bottom, #fafafa, #eee);\n  -webkit-border-radius: 2px;\n  border-radius: 2px;\n  border: 1px solid #eee;\n  text-decoration: none;\n  display: block;\n  padding: 4px 5px;\n  text-align: center;\n  color: #aaa;\n  margin-top: 26px;\n}\n.dropzone a.dz-remove:hover,\n.dropzone-previews a.dz-remove:hover {\n  color: #666;\n}\n@-moz-keyframes loading {\n  0% {\n    background-position: 0 -400px;\n  }\n\n  100% {\n    background-position: -7px -400px;\n  }\n}\n@-webkit-keyframes loading {\n  0% {\n    background-position: 0 -400px;\n  }\n\n  100% {\n    background-position: -7px -400px;\n  }\n}\n@-o-keyframes loading {\n  0% {\n    background-position: 0 -400px;\n  }\n\n  100% {\n    background-position: -7px -400px;\n  }\n}\n@-ms-keyframes loading {\n  0% {\n    background-position: 0 -400px;\n  }\n\n  100% {\n    background-position: -7px -400px;\n  }\n}\n@keyframes loading {\n  0% {\n    background-position: 0 -400px;\n  }\n\n  100% {\n    background-position: -7px -400px;\n  }\n}\n"
  },
  {
    "path": "public/admin/css/plugins/fullcalendar/fullcalendar.css",
    "content": "/*!\n * FullCalendar v2.2.0 Stylesheet\n * Docs & License: http://arshaw.com/fullcalendar/\n * (c) 2013 Adam Shaw\n */\n\n\n.fc {\n    direction: ltr;\n    text-align: left;\n}\n\n.fc-rtl {\n    text-align: right;\n}\n\nbody .fc { /* extra precedence to overcome jqui */\n    font-size: 1em;\n}\n\n\n/* Colors\n--------------------------------------------------------------------------------------------------*/\n\n.fc-unthemed th,\n.fc-unthemed td,\n.fc-unthemed hr,\n.fc-unthemed thead,\n.fc-unthemed tbody,\n.fc-unthemed .fc-row,\n.fc-unthemed .fc-popover {\n    border-color: #ddd;\n}\n\n.fc-unthemed .fc-popover {\n    background-color: #fff;\n}\n\n.fc-unthemed hr,\n.fc-unthemed .fc-popover .fc-header {\n    background: #eee;\n}\n\n.fc-unthemed .fc-popover .fc-header .fc-close {\n    color: #666;\n}\n\n.fc-unthemed .fc-today {\n    background: #fcf8e3;\n}\n\n.fc-highlight { /* when user is selecting cells */\n    background: #bce8f1;\n    opacity: .3;\n    filter: alpha(opacity=30); /* for IE */\n}\n\n.fc-bgevent { /* default look for background events */\n    background: rgb(143, 223, 130);\n    opacity: .3;\n    filter: alpha(opacity=30); /* for IE */\n}\n\n.fc-nonbusiness { /* default look for non-business-hours areas */\n    /* will inherit .fc-bgevent's styles */\n    background: #ccc;\n}\n\n\n/* Icons (inline elements with styled text that mock arrow icons)\n--------------------------------------------------------------------------------------------------*/\n\n.fc-icon {\n    display: inline-block;\n    font-size: 2em;\n    line-height: .5em;\n    height: .5em; /* will make the total height 1em */\n    font-family: \"Courier New\", Courier, monospace;\n}\n\n.fc-icon-left-single-arrow:after {\n    content: \"\\02039\";\n    font-weight: bold;\n}\n\n.fc-icon-right-single-arrow:after {\n    content: \"\\0203A\";\n    font-weight: bold;\n}\n\n.fc-icon-left-double-arrow:after {\n    content: \"\\000AB\";\n}\n\n.fc-icon-right-double-arrow:after {\n    content: \"\\000BB\";\n}\n\n.fc-icon-x:after {\n    content: \"\\000D7\";\n}\n\n\n/* Buttons (styled <button> tags, normalized to work cross-browser)\n--------------------------------------------------------------------------------------------------*/\n\n.fc button {\n    /* force height to include the border and padding */\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n\n    /* dimensions */\n    margin: 0;\n    height: 2.1em;\n    padding: 0 .6em;\n\n    /* text & cursor */\n    font-size: 1em; /* normalize */\n    white-space: nowrap;\n    cursor: pointer;\n}\n\n/* Firefox has an annoying inner border */\n.fc button::-moz-focus-inner { margin: 0; padding: 0; }\n\n.fc-state-default { /* non-theme */\n    border: 1px solid;\n}\n\n.fc-state-default.fc-corner-left { /* non-theme */\n    border-top-left-radius: 4px;\n    border-bottom-left-radius: 4px;\n}\n\n.fc-state-default.fc-corner-right { /* non-theme */\n    border-top-right-radius: 4px;\n    border-bottom-right-radius: 4px;\n}\n\n/* icons in buttons */\n\n.fc button .fc-icon { /* non-theme */\n    position: relative;\n    top: .05em; /* seems to be a good adjustment across browsers */\n    margin: 0 .1em;\n}\n\n/*\n  button states\n  borrowed from twitter bootstrap (http://twitter.github.com/bootstrap/)\n*/\n\n.fc-state-default {\n    background-color: #f5f5f5;\n    background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);\n    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));\n    background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);\n    background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);\n    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);\n    background-repeat: repeat-x;\n    border-color: #e6e6e6 #e6e6e6 #bfbfbf;\n    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);\n    color: #333;\n    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);\n    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n\n.fc-state-hover,\n.fc-state-down,\n.fc-state-active,\n.fc-state-disabled {\n    color: #333333;\n    background-color: #e6e6e6;\n}\n\n.fc-state-hover {\n    color: #333333;\n    text-decoration: none;\n    background-position: 0 -15px;\n    -webkit-transition: background-position 0.1s linear;\n    -moz-transition: background-position 0.1s linear;\n    -o-transition: background-position 0.1s linear;\n    transition: background-position 0.1s linear;\n}\n\n.fc-state-down,\n.fc-state-active {\n    background-color: #cccccc;\n    background-image: none;\n    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n\n.fc-state-disabled {\n    cursor: default;\n    background-image: none;\n    opacity: 0.65;\n    filter: alpha(opacity=65);\n    box-shadow: none;\n}\n\n\n/* Buttons Groups\n--------------------------------------------------------------------------------------------------*/\n\n.fc-button-group {\n    display: inline-block;\n}\n\n/*\nevery button that is not first in a button group should scootch over one pixel and cover the\nprevious button's border...\n*/\n\n.fc .fc-button-group > * { /* extra precedence b/c buttons have margin set to zero */\n    float: left;\n    margin: 0 0 0 -1px;\n}\n\n.fc .fc-button-group > :first-child { /* same */\n    margin-left: 0;\n}\n\n\n/* Popover\n--------------------------------------------------------------------------------------------------*/\n\n.fc-popover {\n    position: absolute;\n    box-shadow: 0 2px 6px rgba(0,0,0,.15);\n}\n\n.fc-popover .fc-header {\n    padding: 2px 4px;\n}\n\n.fc-popover .fc-header .fc-title {\n    margin: 0 2px;\n}\n\n.fc-popover .fc-header .fc-close {\n    cursor: pointer;\n}\n\n.fc-ltr .fc-popover .fc-header .fc-title,\n.fc-rtl .fc-popover .fc-header .fc-close {\n    float: left;\n}\n\n.fc-rtl .fc-popover .fc-header .fc-title,\n.fc-ltr .fc-popover .fc-header .fc-close {\n    float: right;\n}\n\n/* unthemed */\n\n.fc-unthemed .fc-popover {\n    border-width: 1px;\n    border-style: solid;\n}\n\n.fc-unthemed .fc-popover .fc-header .fc-close {\n    font-size: 25px;\n    margin-top: 4px;\n}\n\n/* jqui themed */\n\n.fc-popover > .ui-widget-header + .ui-widget-content {\n    border-top: 0; /* where they meet, let the header have the border */\n}\n\n\n/* Misc Reusable Components\n--------------------------------------------------------------------------------------------------*/\n\n.fc hr {\n    height: 0;\n    margin: 0;\n    padding: 0 0 2px; /* height is unreliable across browsers, so use padding */\n    border-style: solid;\n    border-width: 1px 0;\n}\n\n.fc-clear {\n    clear: both;\n}\n\n.fc-bg,\n.fc-bgevent-skeleton,\n.fc-highlight-skeleton,\n.fc-helper-skeleton {\n    /* these element should always cling to top-left/right corners */\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n}\n\n.fc-bg {\n    bottom: 0; /* strech bg to bottom edge */\n}\n\n.fc-bg table {\n    height: 100%; /* strech bg to bottom edge */\n}\n\n\n/* Tables\n--------------------------------------------------------------------------------------------------*/\n\n.fc table {\n    width: 100%;\n    table-layout: fixed;\n    border-collapse: collapse;\n    border-spacing: 0;\n    font-size: 1em; /* normalize cross-browser */\n}\n\n.fc th {\n    text-align: center;\n}\n\n.fc th,\n.fc td {\n    border-style: solid;\n    border-width: 1px;\n    padding: 0;\n    vertical-align: top;\n}\n\n.fc td.fc-today {\n    border-style: double; /* overcome neighboring borders */\n}\n\n\n/* Fake Table Rows\n--------------------------------------------------------------------------------------------------*/\n\n.fc .fc-row { /* extra precedence to overcome themes w/ .ui-widget-content forcing a 1px border */\n    /* no visible border by default. but make available if need be (scrollbar width compensation) */\n    border-style: solid;\n    border-width: 0;\n}\n\n.fc-row table {\n    /* don't put left/right border on anything within a fake row.\n       the outer tbody will worry about this */\n    border-left: 0 hidden transparent;\n    border-right: 0 hidden transparent;\n\n    /* no bottom borders on rows */\n    border-bottom: 0 hidden transparent;\n}\n\n.fc-row:first-child table {\n    border-top: 0 hidden transparent; /* no top border on first row */\n}\n\n\n/* Day Row (used within the header and the DayGrid)\n--------------------------------------------------------------------------------------------------*/\n\n.fc-row {\n    position: relative;\n}\n\n.fc-row .fc-bg {\n    z-index: 1;\n}\n\n/* highlighting cells & background event skeleton */\n\n.fc-row .fc-bgevent-skeleton,\n.fc-row .fc-highlight-skeleton {\n    bottom: 0; /* stretch skeleton to bottom of row */\n}\n\n.fc-row .fc-bgevent-skeleton table,\n.fc-row .fc-highlight-skeleton table {\n    height: 100%; /* stretch skeleton to bottom of row */\n}\n\n.fc-row .fc-highlight-skeleton td,\n.fc-row .fc-bgevent-skeleton td {\n    border-color: transparent;\n}\n\n.fc-row .fc-bgevent-skeleton {\n    z-index: 2;\n\n}\n\n.fc-row .fc-highlight-skeleton {\n    z-index: 3;\n}\n\n/*\nrow content (which contains day/week numbers and events) as well as \"helper\" (which contains\ntemporary rendered events).\n*/\n\n.fc-row .fc-content-skeleton {\n    position: relative;\n    z-index: 4;\n    padding-bottom: 2px; /* matches the space above the events */\n}\n\n.fc-row .fc-helper-skeleton {\n    z-index: 5;\n}\n\n.fc-row .fc-content-skeleton td,\n.fc-row .fc-helper-skeleton td {\n    /* see-through to the background below */\n    background: none; /* in case <td>s are globally styled */\n    border-color: transparent;\n\n    /* don't put a border between events and/or the day number */\n    border-bottom: 0;\n}\n\n.fc-row .fc-content-skeleton tbody td, /* cells with events inside (so NOT the day number cell) */\n.fc-row .fc-helper-skeleton tbody td {\n    /* don't put a border between event cells */\n    border-top: 0;\n}\n\n\n/* Scrolling Container\n--------------------------------------------------------------------------------------------------*/\n\n.fc-scroller { /* this class goes on elements for guaranteed vertical scrollbars */\n    overflow-y: scroll;\n    overflow-x: hidden;\n}\n\n.fc-scroller > * { /* we expect an immediate inner element */\n    position: relative; /* re-scope all positions */\n    width: 100%; /* hack to force re-sizing this inner element when scrollbars appear/disappear */\n    overflow: hidden; /* don't let negative margins or absolute positioning create further scroll */\n}\n\n\n/* Global Event Styles\n--------------------------------------------------------------------------------------------------*/\n\n.fc-event {\n    position: relative; /* for resize handle and other inner positioning */\n    display: block; /* make the <a> tag block */\n    font-size: .85em;\n    line-height: 1.3;\n    border-radius: 3px;\n    border: 1px solid #3a87ad; /* default BORDER color */\n    background-color: #3a87ad; /* default BACKGROUND color */\n    font-weight: normal; /* undo jqui's ui-widget-header bold */\n}\n\n/* overpower some of bootstrap's and jqui's styles on <a> tags */\n.fc-event,\n.fc-event:hover,\n.ui-widget .fc-event {\n    color: #fff; /* default TEXT color */\n    text-decoration: none; /* if <a> has an href */\n}\n\n.fc-event[href],\n.fc-event.fc-draggable {\n    cursor: pointer; /* give events with links and draggable events a hand mouse pointer */\n}\n\n.fc-not-allowed, /* causes a \"warning\" cursor. applied on body */\n.fc-not-allowed .fc-event { /* to override an event's custom cursor */\n    cursor: not-allowed;\n}\n\n\n/* DayGrid events\n----------------------------------------------------------------------------------------------------\nWe use the full \"fc-day-grid-event\" class instead of using descendants because the event won't\nbe a descendant of the grid when it is being dragged.\n*/\n\n.fc-day-grid-event {\n    margin: 1px 2px 0; /* spacing between events and edges */\n    padding: 0 1px;\n}\n\n/* events that are continuing to/from another week. kill rounded corners and butt up against edge */\n\n.fc-ltr .fc-day-grid-event.fc-not-start,\n.fc-rtl .fc-day-grid-event.fc-not-end {\n    margin-left: 0;\n    border-left-width: 0;\n    padding-left: 1px; /* replace the border with padding */\n    border-top-left-radius: 0;\n    border-bottom-left-radius: 0;\n}\n\n.fc-ltr .fc-day-grid-event.fc-not-end,\n.fc-rtl .fc-day-grid-event.fc-not-start {\n    margin-right: 0;\n    border-right-width: 0;\n    padding-right: 1px; /* replace the border with padding */\n    border-top-right-radius: 0;\n    border-bottom-right-radius: 0;\n}\n\n.fc-day-grid-event > .fc-content { /* force events to be one-line tall */\n    white-space: nowrap;\n    overflow: hidden;\n}\n\n.fc-day-grid-event .fc-time {\n    font-weight: bold;\n}\n\n/* resize handle (outside of fc-content, so can go outside of bounds) */\n\n.fc-day-grid-event .fc-resizer {\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    width: 7px;\n}\n\n.fc-ltr .fc-day-grid-event .fc-resizer {\n    right: -3px;\n    cursor: e-resize;\n}\n\n.fc-rtl .fc-day-grid-event .fc-resizer {\n    left: -3px;\n    cursor: w-resize;\n}\n\n\n/* Event Limiting\n--------------------------------------------------------------------------------------------------*/\n\n/* \"more\" link that represents hidden events */\n\na.fc-more {\n    margin: 1px 3px;\n    font-size: .85em;\n    cursor: pointer;\n    text-decoration: none;\n}\n\na.fc-more:hover {\n    text-decoration: underline;\n}\n\n.fc-limited { /* rows and cells that are hidden because of a \"more\" link */\n    display: none;\n}\n\n/* popover that appears when \"more\" link is clicked */\n\n.fc-day-grid .fc-row {\n    z-index: 1; /* make the \"more\" popover one higher than this */\n}\n\n.fc-more-popover {\n    z-index: 2;\n    width: 220px;\n}\n\n.fc-more-popover .fc-event-container {\n    padding: 10px;\n}\n\n/* Toolbar\n--------------------------------------------------------------------------------------------------*/\n\n.fc-toolbar {\n    text-align: center;\n    margin-bottom: 1em;\n}\n\n.fc-toolbar .fc-left {\n    float: left;\n}\n\n.fc-toolbar .fc-right {\n    float: right;\n}\n\n.fc-toolbar .fc-center {\n    display: inline-block;\n}\n\n/* the things within each left/right/center section */\n.fc .fc-toolbar > * > * { /* extra precedence to override button border margins */\n    float: left;\n    margin-left: .75em;\n}\n\n/* the first thing within each left/center/right section */\n.fc .fc-toolbar > * > :first-child { /* extra precedence to override button border margins */\n    margin-left: 0;\n}\n\n/* title text */\n\n.fc-toolbar h2 {\n    margin: 0;\n}\n\n/* button layering (for border precedence) */\n\n.fc-toolbar button {\n    position: relative;\n}\n\n.fc-toolbar .fc-state-hover,\n.fc-toolbar .ui-state-hover {\n    z-index: 2;\n}\n\n.fc-toolbar .fc-state-down {\n    z-index: 3;\n}\n\n.fc-toolbar .fc-state-active,\n.fc-toolbar .ui-state-active {\n    z-index: 4;\n}\n\n.fc-toolbar button:focus {\n    z-index: 5;\n}\n\n\n/* View Structure\n--------------------------------------------------------------------------------------------------*/\n\n/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */\n/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */\n.fc-view-container *,\n.fc-view-container *:before,\n.fc-view-container *:after {\n    -webkit-box-sizing: content-box;\n    -moz-box-sizing: content-box;\n    box-sizing: content-box;\n}\n\n.fc-view, /* scope positioning and z-index's for everything within the view */\n.fc-view > table { /* so dragged elements can be above the view's main element */\n    position: relative;\n    z-index: 1;\n}\n\n/* BasicView\n--------------------------------------------------------------------------------------------------*/\n\n/* day row structure */\n\n.fc-basicWeek-view .fc-content-skeleton,\n.fc-basicDay-view .fc-content-skeleton {\n    /* we are sure there are no day numbers in these views, so... */\n    padding-top: 1px; /* add a pixel to make sure there are 2px padding above events */\n    padding-bottom: 1em; /* ensure a space at bottom of cell for user selecting/clicking */\n}\n\n.fc-basic-view tbody .fc-row {\n    min-height: 4em; /* ensure that all rows are at least this tall */\n}\n\n/* a \"rigid\" row will take up a constant amount of height because content-skeleton is absolute */\n\n.fc-row.fc-rigid {\n    overflow: hidden;\n}\n\n.fc-row.fc-rigid .fc-content-skeleton {\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n}\n\n/* week and day number styling */\n\n.fc-basic-view .fc-week-number,\n.fc-basic-view .fc-day-number {\n    padding: 0 2px;\n}\n\n.fc-basic-view td.fc-week-number span,\n.fc-basic-view td.fc-day-number {\n    padding-top: 2px;\n    padding-bottom: 2px;\n}\n\n.fc-basic-view .fc-week-number {\n    text-align: center;\n}\n\n.fc-basic-view .fc-week-number span {\n    /* work around the way we do column resizing and ensure a minimum width */\n    display: inline-block;\n    min-width: 1.25em;\n}\n\n.fc-ltr .fc-basic-view .fc-day-number {\n    text-align: right;\n}\n\n.fc-rtl .fc-basic-view .fc-day-number {\n    text-align: left;\n}\n\n.fc-day-number.fc-other-month {\n    opacity: 0.3;\n    filter: alpha(opacity=30); /* for IE */\n    /* opacity with small font can sometimes look too faded\n       might want to set the 'color' property instead\n       making day-numbers bold also fixes the problem */\n}\n\n/* AgendaView all-day area\n--------------------------------------------------------------------------------------------------*/\n\n.fc-agenda-view .fc-day-grid {\n    position: relative;\n    z-index: 2; /* so the \"more..\" popover will be over the time grid */\n}\n\n.fc-agenda-view .fc-day-grid .fc-row {\n    min-height: 3em; /* all-day section will never get shorter than this */\n}\n\n.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton {\n    padding-top: 1px; /* add a pixel to make sure there are 2px padding above events */\n    padding-bottom: 1em; /* give space underneath events for clicking/selecting days */\n}\n\n\n/* TimeGrid axis running down the side (for both the all-day area and the slot area)\n--------------------------------------------------------------------------------------------------*/\n\n.fc .fc-axis { /* .fc to overcome default cell styles */\n    vertical-align: middle;\n    padding: 0 4px;\n    white-space: nowrap;\n}\n\n.fc-ltr .fc-axis {\n    text-align: right;\n}\n\n.fc-rtl .fc-axis {\n    text-align: left;\n}\n\n.ui-widget td.fc-axis {\n    font-weight: normal; /* overcome jqui theme making it bold */\n}\n\n\n/* TimeGrid Structure\n--------------------------------------------------------------------------------------------------*/\n\n.fc-time-grid-container, /* so scroll container's z-index is below all-day */\n.fc-time-grid { /* so slats/bg/content/etc positions get scoped within here */\n    position: relative;\n    z-index: 1;\n}\n\n.fc-time-grid {\n    min-height: 100%; /* so if height setting is 'auto', .fc-bg stretches to fill height */\n}\n\n.fc-time-grid table { /* don't put outer borders on slats/bg/content/etc */\n    border: 0 hidden transparent;\n}\n\n.fc-time-grid > .fc-bg {\n    z-index: 1;\n}\n\n.fc-time-grid .fc-slats,\n.fc-time-grid > hr { /* the <hr> AgendaView injects when grid is shorter than scroller */\n    position: relative;\n    z-index: 2;\n}\n\n.fc-time-grid .fc-bgevent-skeleton,\n.fc-time-grid .fc-content-skeleton {\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n}\n\n.fc-time-grid .fc-bgevent-skeleton {\n    z-index: 3;\n}\n\n.fc-time-grid .fc-highlight-skeleton {\n    z-index: 4;\n}\n\n.fc-time-grid .fc-content-skeleton {\n    z-index: 5;\n}\n\n.fc-time-grid .fc-helper-skeleton {\n    z-index: 6;\n}\n\n\n/* TimeGrid Slats (lines that run horizontally)\n--------------------------------------------------------------------------------------------------*/\n\n.fc-slats td {\n    height: 1.5em;\n    border-bottom: 0; /* each cell is responsible for its top border */\n}\n\n.fc-slats .fc-minor td {\n    border-top-style: dotted;\n}\n\n.fc-slats .ui-widget-content { /* for jqui theme */\n    background: none; /* see through to fc-bg */\n}\n\n\n/* TimeGrid Highlighting Slots\n--------------------------------------------------------------------------------------------------*/\n\n.fc-time-grid .fc-highlight-container { /* a div within a cell within the fc-highlight-skeleton */\n    position: relative; /* scopes the left/right of the fc-highlight to be in the column */\n}\n\n.fc-time-grid .fc-highlight {\n    position: absolute;\n    left: 0;\n    right: 0;\n    /* top and bottom will be in by JS */\n}\n\n\n/* TimeGrid Event Containment\n--------------------------------------------------------------------------------------------------*/\n\n.fc-time-grid .fc-event-container, /* a div within a cell within the fc-content-skeleton */\n.fc-time-grid .fc-bgevent-container { /* a div within a cell within the fc-bgevent-skeleton */\n    position: relative;\n}\n\n.fc-ltr .fc-time-grid .fc-event-container { /* space on the sides of events for LTR (default) */\n    margin: 0 2.5% 0 2px;\n}\n\n.fc-rtl .fc-time-grid .fc-event-container { /* space on the sides of events for RTL */\n    margin: 0 2px 0 2.5%;\n}\n\n.fc-time-grid .fc-event,\n.fc-time-grid .fc-bgevent {\n    position: absolute;\n    z-index: 1; /* scope inner z-index's */\n}\n\n.fc-time-grid .fc-bgevent {\n    /* background events always span full width */\n    left: 0;\n    right: 0;\n}\n\n\n/* TimeGrid Event Styling\n----------------------------------------------------------------------------------------------------\nWe use the full \"fc-time-grid-event\" class instead of using descendants because the event won't\nbe a descendant of the grid when it is being dragged.\n*/\n\n.fc-time-grid-event.fc-not-start { /* events that are continuing from another day */\n    /* replace space made by the top border with padding */\n    border-top-width: 0;\n    padding-top: 1px;\n\n    /* remove top rounded corners */\n    border-top-left-radius: 0;\n    border-top-right-radius: 0;\n}\n\n.fc-time-grid-event.fc-not-end {\n    /* replace space made by the top border with padding */\n    border-bottom-width: 0;\n    padding-bottom: 1px;\n\n    /* remove bottom rounded corners */\n    border-bottom-left-radius: 0;\n    border-bottom-right-radius: 0;\n}\n\n.fc-time-grid-event {\n    overflow: hidden; /* don't let the bg flow over rounded corners */\n}\n\n.fc-time-grid-event > .fc-content { /* contains the time and title, but no bg and resizer */\n    position: relative;\n    z-index: 2; /* above the bg */\n}\n\n.fc-time-grid-event .fc-time,\n.fc-time-grid-event .fc-title {\n    padding: 0 1px;\n}\n\n.fc-time-grid-event .fc-time {\n    font-size: .85em;\n    white-space: nowrap;\n}\n\n.fc-time-grid-event .fc-bg {\n    z-index: 1;\n    background: #fff;\n    opacity: .25;\n    filter: alpha(opacity=25); /* for IE */\n}\n\n/* short mode, where time and title are on the same line */\n\n.fc-time-grid-event.fc-short .fc-content {\n    /* don't wrap to second line (now that contents will be inline) */\n    white-space: nowrap;\n}\n\n.fc-time-grid-event.fc-short .fc-time,\n.fc-time-grid-event.fc-short .fc-title {\n    /* put the time and title on the same line */\n    display: inline-block;\n    vertical-align: top;\n}\n\n.fc-time-grid-event.fc-short .fc-time span {\n    display: none; /* don't display the full time text... */\n}\n\n.fc-time-grid-event.fc-short .fc-time:before {\n    content: attr(data-start); /* ...instead, display only the start time */\n}\n\n.fc-time-grid-event.fc-short .fc-time:after {\n    content: \"\\000A0-\\000A0\"; /* seperate with a dash, wrapped in nbsp's */\n}\n\n.fc-time-grid-event.fc-short .fc-title {\n    font-size: .85em; /* make the title text the same size as the time */\n    padding: 0; /* undo padding from above */\n}\n\n/* resizer */\n\n.fc-time-grid-event .fc-resizer {\n    position: absolute;\n    z-index: 3; /* above content */\n    left: 0;\n    right: 0;\n    bottom: 0;\n    height: 8px;\n    overflow: hidden;\n    line-height: 8px;\n    font-size: 11px;\n    font-family: monospace;\n    text-align: center;\n    cursor: s-resize;\n}\n\n.fc-time-grid-event .fc-resizer:after {\n    content: \"=\";\n}\n"
  },
  {
    "path": "public/admin/css/plugins/fullcalendar/fullcalendar.print.css",
    "content": "/*!\n * FullCalendar v2.2.0 Print Stylesheet\n * Docs & License: http://arshaw.com/fullcalendar/\n * (c) 2013 Adam Shaw\n */\n\n/*\n * Include this stylesheet on your page to get a more printer-friendly calendar.\n * When including this stylesheet, use the media='print' attribute of the <link> tag.\n * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css.\n */\n\n.fc {\n\tmax-width: 100% !important;\n}\n\n\n/* Global Event Restyling\n--------------------------------------------------------------------------------------------------*/\n\n.fc-event {\n\tbackground: #fff !important;\n\tcolor: #000 !important;\n\tpage-break-inside: avoid;\n}\n\n.fc-event .fc-resizer {\n\tdisplay: none;\n}\n\n\n/* Table & Day-Row Restyling\n--------------------------------------------------------------------------------------------------*/\n\nth,\ntd,\nhr,\nthead,\ntbody,\n.fc-row {\n\tborder-color: #ccc !important;\n\tbackground: #fff !important;\n}\n\n/* kill the overlaid, absolutely-positioned common components */\n.fc-bg,\n.fc-bgevent-skeleton,\n.fc-highlight-skeleton,\n.fc-helper-skeleton {\n\tdisplay: none;\n}\n\n/* don't force a min-height on rows (for DayGrid) */\n.fc tbody .fc-row {\n\theight: auto !important; /* undo height that JS set in distributeHeight */\n\tmin-height: 0 !important; /* undo the min-height from each view's specific stylesheet */\n}\n\n.fc tbody .fc-row .fc-content-skeleton {\n\tposition: static; /* undo .fc-rigid */\n\tpadding-bottom: 0 !important; /* use a more border-friendly method for this... */\n}\n\n.fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td { /* only works in newer browsers */\n\tpadding-bottom: 1em; /* ...gives space within the skeleton. also ensures min height in a way */\n}\n\n.fc tbody .fc-row .fc-content-skeleton table {\n\t/* provides a min-height for the row, but only effective for IE, which exaggerates this value,\n\t   making it look more like 3em. for other browers, it will already be this tall */\n\theight: 1em;\n}\n\n\n/* Undo month-view event limiting. Display all events and hide the \"more\" links\n--------------------------------------------------------------------------------------------------*/\n\n.fc-more-cell,\n.fc-more {\n\tdisplay: none !important;\n}\n\n.fc tr.fc-limited {\n\tdisplay: table-row !important;\n}\n\n.fc td.fc-limited {\n\tdisplay: table-cell !important;\n}\n\n.fc-popover {\n\tdisplay: none; /* never display the \"more..\" popover in print mode */\n}\n\n\n/* TimeGrid Restyling\n--------------------------------------------------------------------------------------------------*/\n\n/* undo the min-height 100% trick used to fill the container's height */\n.fc-time-grid {\n\tmin-height: 0 !important;\n}\n\n/* don't display the side axis at all (\"all-day\" and time cells) */\n.fc-agenda-view .fc-axis {\n\tdisplay: none;\n}\n\n/* don't display the horizontal lines */\n.fc-slats,\n.fc-time-grid hr { /* this hr is used when height is underused and needs to be filled */\n\tdisplay: none !important; /* important overrides inline declaration */\n}\n\n/* let the container that holds the events be naturally positioned and create real height */\n.fc-time-grid .fc-content-skeleton {\n\tposition: static;\n}\n\n/* in case there are no events, we still want some height */\n.fc-time-grid .fc-content-skeleton table {\n\theight: 4em;\n}\n\n/* kill the horizontal spacing made by the event container. event margins will be done below */\n.fc-time-grid .fc-event-container {\n\tmargin: 0 !important;\n}\n\n\n/* TimeGrid *Event* Restyling\n--------------------------------------------------------------------------------------------------*/\n\n/* naturally position events, vertically stacking them */\n.fc-time-grid .fc-event {\n\tposition: static !important;\n\tmargin: 3px 2px !important;\n}\n\n/* for events that continue to a future day, give the bottom border back */\n.fc-time-grid .fc-event.fc-not-end {\n\tborder-bottom-width: 1px !important;\n}\n\n/* indicate the event continues via \"...\" text */\n.fc-time-grid .fc-event.fc-not-end:after {\n\tcontent: \"...\";\n}\n\n/* for events that are continuations from previous days, give the top border back */\n.fc-time-grid .fc-event.fc-not-start {\n\tborder-top-width: 1px !important;\n}\n\n/* indicate the event is a continuation via \"...\" text */\n.fc-time-grid .fc-event.fc-not-start:before {\n\tcontent: \"...\";\n}\n\n/* time */\n\n/* undo a previous declaration and let the time text span to a second line */\n.fc-time-grid .fc-event .fc-time {\n\twhite-space: normal !important;\n}\n\n/* hide the the time that is normally displayed... */\n.fc-time-grid .fc-event .fc-time span {\n\tdisplay: none;\n}\n\n/* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */\n.fc-time-grid .fc-event .fc-time:after {\n\tcontent: attr(data-full);\n}\n\n\n/* Vertical Scroller & Containers\n--------------------------------------------------------------------------------------------------*/\n\n/* kill the scrollbars and allow natural height */\n.fc-scroller,\n.fc-day-grid-container,    /* these divs might be assigned height, which we need to cleared */\n.fc-time-grid-container {  /* */\n\toverflow: visible !important;\n\theight: auto !important;\n}\n\n/* kill the horizontal border/padding used to compensate for scrollbars */\n.fc-row {\n\tborder: 0 !important;\n\tmargin: 0 !important;\n}\n\n\n/* Button Controls\n--------------------------------------------------------------------------------------------------*/\n\n.fc-button-group,\n.fc button {\n\tdisplay: none; /* don't display any button-related controls */\n}\n"
  },
  {
    "path": "public/admin/css/plugins/iCheck/custom.css",
    "content": "/* iCheck plugin Square skin, green\n----------------------------------- */\n.icheckbox_square-green,\n.iradio_square-green {\n    display: inline-block;\n    *display: inline;\n    vertical-align: middle;\n    margin: 0;\n    padding: 0;\n    width: 22px;\n    height: 22px;\n    background: url(green.png) no-repeat;\n    border: none;\n    cursor: pointer;\n}\n\n.icheckbox_square-green {\n    background-position: 0 0;\n}\n.icheckbox_square-green.hover {\n    background-position: -24px 0;\n}\n.icheckbox_square-green.checked {\n    background-position: -48px 0;\n}\n.icheckbox_square-green.disabled {\n    background-position: -72px 0;\n    cursor: default;\n}\n.icheckbox_square-green.checked.disabled {\n    background-position: -96px 0;\n}\n\n.iradio_square-green {\n    background-position: -120px 0;\n}\n.iradio_square-green.hover {\n    background-position: -144px 0;\n}\n.iradio_square-green.checked {\n    background-position: -168px 0;\n}\n.iradio_square-green.disabled {\n    background-position: -192px 0;\n    cursor: default;\n}\n.iradio_square-green.checked.disabled {\n    background-position: -216px 0;\n}\n\n/* HiDPI support */\n@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {\n    .icheckbox_square-green,\n    .iradio_square-green {\n        background-image: url(green@2x.png);\n        -webkit-background-size: 240px 24px;\n        background-size: 240px 24px;\n    }\n}"
  },
  {
    "path": "public/admin/css/plugins/ionRangeSlider/ion.rangeSlider.css",
    "content": "/* Ion.RangeSlider\n// css version 1.8.5\n// by Denis Ineshin | ionden.com\n// ===================================================================================================================*/\n\n/* =====================================================================================================================\n// RangeSlider */\n\n.irs {\n    position: relative; display: block;\n}\n    .irs-line {\n        position: relative; display: block;\n        overflow: hidden;\n    }\n        .irs-line-left, .irs-line-mid, .irs-line-right {\n            position: absolute; display: block;\n            top: 0;\n        }\n        .irs-line-left {\n            left: 0; width: 10%;\n        }\n        .irs-line-mid {\n            left: 10%; width: 80%;\n        }\n        .irs-line-right {\n            right: 0; width: 10%;\n        }\n\n    .irs-diapason {\n        position: absolute; display: block;\n        left: 0; width: 100%;\n    }\n    .irs-slider {\n        position: absolute; display: block;\n        cursor: default;\n        z-index: 1;\n    }\n        .irs-slider.single {\n            left: 10px;\n        }\n            .irs-slider.single:before {\n                position: absolute; display: block; content: \"\";\n                top: -30%; left: -30%;\n                width: 160%; height: 160%;\n                background: rgba(0,0,0,0.0);\n            }\n        .irs-slider.from {\n            left: 100px;\n        }\n            .irs-slider.from:before {\n                position: absolute; display: block; content: \"\";\n                top: -30%; left: -30%;\n                width: 130%; height: 160%;\n                background: rgba(0,0,0,0.0);\n            }\n        .irs-slider.to {\n            left: 300px;\n        }\n            .irs-slider.to:before {\n                position: absolute; display: block; content: \"\";\n                top: -30%; left: 0;\n                width: 130%; height: 160%;\n                background: rgba(0,0,0,0.0);\n            }\n        .irs-slider.last {\n            z-index: 2;\n        }\n\n    .irs-min {\n        position: absolute; display: block;\n        left: 0;\n        cursor: default;\n    }\n    .irs-max {\n        position: absolute; display: block;\n        right: 0;\n        cursor: default;\n    }\n\n    .irs-from, .irs-to, .irs-single {\n        position: absolute; display: block;\n        top: 0; left: 0;\n        cursor: default;\n        white-space: nowrap;\n    }\n\n\n.irs-grid {\n    position: absolute; display: none;\n    bottom: 0; left: 0;\n    width: 100%; height: 20px;\n}\n.irs-with-grid .irs-grid {\n    display: block;\n}\n    .irs-grid-pol {\n        position: absolute;\n        top: 0; left: 0;\n        width: 1px; height: 8px;\n        background: #000;\n    }\n    .irs-grid-pol.small {\n        height: 4px;\n    }\n    .irs-grid-text {\n        position: absolute;\n        bottom: 0; left: 0;\n        width: 100px;\n        white-space: nowrap;\n        text-align: center;\n        font-size: 9px; line-height: 9px;\n        color: #000;\n    }\n\n.irs-disable-mask {\n    position: absolute; display: block;\n    top: 0; left: 0;\n    width: 100%; height: 100%;\n    cursor: default;\n    background: rgba(0,0,0,0.0);\n    z-index: 2;\n}\n.irs-disabled {\n    opacity: 0.4;\n}"
  },
  {
    "path": "public/admin/css/plugins/ionRangeSlider/ion.rangeSlider.skinFlat.css",
    "content": "/* Ion.RangeSlider, Flat UI Skin\n// css version 1.8.5\n// by Denis Ineshin | ionden.com\n// ===================================================================================================================*/\n\n/* =====================================================================================================================\n// Skin details */\n\n.irs-line-mid,\n.irs-line-left,\n.irs-line-right,\n.irs-diapason,\n.irs-slider {\n    background: url(../images/sprite-skin-flat.png) repeat-x;\n}\n\n.irs {\n    height: 40px;\n}\n.irs-with-grid {\n    height: 60px;\n}\n.irs-line {\n    height: 12px; top: 25px;\n}\n    .irs-line-left {\n        height: 12px;\n        background-position: 0 -30px;\n    }\n    .irs-line-mid {\n        height: 12px;\n        background-position: 0 0;\n    }\n    .irs-line-right {\n        height: 12px;\n        background-position: 100% -30px;\n    }\n\n.irs-diapason {\n    height: 12px; top: 25px;\n    background-position: 0 -60px;\n}\n\n.irs-slider {\n    width: 16px; height: 18px;\n    top: 22px;\n    background-position: 0 -90px;\n}\n#irs-active-slider, .irs-slider:hover {\n    background-position: 0 -120px;\n}\n\n.irs-min, .irs-max {\n    color: #999;\n    font-size: 10px; line-height: 1.333;\n    text-shadow: none;\n    top: 0; padding: 1px 3px;\n    background: #e1e4e9;\n    border-radius: 4px;\n}\n\n.irs-from, .irs-to, .irs-single {\n    color: #fff;\n    font-size: 10px; line-height: 1.333;\n    text-shadow: none;\n    padding: 1px 5px;\n    background: #ed5565;\n    border-radius: 4px;\n}\n.irs-from:after, .irs-to:after, .irs-single:after {\n    position: absolute; display: block; content: \"\";\n    bottom: -6px; left: 50%;\n    width: 0; height: 0;\n    margin-left: -3px;\n    overflow: hidden;\n    border: 3px solid transparent;\n    border-top-color: #ed5565;\n}\n\n\n.irs-grid-pol {\n    background: #e1e4e9;\n}\n.irs-grid-text {\n    color: #999;\n}\n\n.irs-disabled {\n}"
  },
  {
    "path": "public/admin/css/plugins/ionRangeSlider/ion.rangeSlider.skinNice.css",
    "content": "/* Ion.RangeSlider, Nice Skin\n// css version 1.8.5\n// by Denis Ineshin | ionden.com\n// ===================================================================================================================*/\n\n/* =====================================================================================================================\n// Skin details */\n\n.irs-line-mid,\n.irs-line-left,\n.irs-line-right,\n.irs-diapason,\n.irs-slider {\n    background: url(../img/sprite-skin-nice.png) repeat-x;\n}\n\n.irs {\n    height: 40px;\n}\n.irs-with-grid {\n    height: 60px;\n}\n.irs-line {\n    height: 8px; top: 25px;\n}\n    .irs-line-left {\n        height: 8px;\n        background-position: 0 -30px;\n    }\n    .irs-line-mid {\n        height: 8px;\n        background-position: 0 0;\n    }\n    .irs-line-right {\n        height: 8px;\n        background-position: 100% -30px;\n    }\n\n.irs-diapason {\n    height: 8px; top: 25px;\n    background-position: 0 -60px;\n}\n\n.irs-slider {\n    width: 22px; height: 22px;\n    top: 17px;\n    background-position: 0 -90px;\n}\n#irs-active-slider, .irs-slider:hover {\n    background-position: 0 -120px;\n}\n\n.irs-min, .irs-max {\n    color: #999;\n    font-size: 10px; line-height: 1.333;\n    text-shadow: none;\n    top: 0; padding: 1px 3px;\n    background: rgba(0,0,0,0.1);\n    border-radius: 3px;\n}\n.lt-ie9 .irs-min, .lt-ie9 .irs-max {\n    background: #ccc;\n}\n\n.irs-from, .irs-to, .irs-single {\n    color: #fff;\n    font-size: 10px; line-height: 1.333;\n    text-shadow: none;\n    padding: 1px 5px;\n    background: rgba(0,0,0,0.3);\n    border-radius: 3px;\n}\n.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single {\n    background: #999;\n}\n\n.irs-grid-pol {\n    background: #99a4ac;\n}\n.irs-grid-text {\n    color: #99a4ac;\n}\n\n.irs-disabled {\n}"
  },
  {
    "path": "public/admin/css/plugins/ionRangeSlider/ion.rangeSlider.skinSimple.css",
    "content": "/* Ion.RangeSlider, Simple Skin\n// css version 1.8.5\n// by Denis Ineshin | ionden.com\n// ===================================================================================================================*/\n\n/* =====================================================================================================================\n// Skin details */\n\n.irs-line-mid,\n.irs-line-left,\n.irs-line-right,\n.irs-diapason,\n.irs-slider {\n    background: url(../img/sprite-skin-simple.png) repeat-x;\n}\n\n.irs {\n    height: 40px;\n}\n.irs-with-grid {\n    height: 60px;\n}\n.irs-line {\n    height: 6px; top: 25px;\n}\n    .irs-line-left {\n        height: 6px;\n        background-position: 0 -30px;\n    }\n    .irs-line-mid {\n        height: 6px;\n        background-position: 0 0;\n    }\n    .irs-line-right {\n        height: 6px;\n        background-position: 100% -30px;\n    }\n\n.irs-diapason {\n    height: 6px; top: 25px;\n    background-position: 0 -60px;\n}\n\n.irs-slider {\n    width: 8px; height: 15px;\n    top: 21px;\n    background-position: 0 -90px;\n}\n#irs-active-slider, .irs-slider:hover {\n    background-position: 0 -120px;\n}\n\n.irs-min, .irs-max {\n    color: #c0c0c0;\n    font-size: 10px; line-height: 1.333;\n    text-shadow: none;\n    top: 0; padding: 1px 3px;\n    background: rgba(0,0,0,0.1);\n    border-radius: 3px;\n}\n.lt-ie9 .irs-min, .lt-ie9 .irs-max {\n    background: #3654b0;\n}\n\n.irs-from, .irs-to, .irs-single {\n    color: #000;\n    font-size: 10px; line-height: 1.333;\n    text-shadow: none;\n    padding: 1px 5px;\n    background: rgba(255,255,255,0.8);\n    border-radius: 3px;\n}\n.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single {\n    background: #d8dff3;\n}\n\n.irs-grid-pol {\n    background: #777;\n}\n.irs-grid-text {\n    color: #e0e0e0;\n}\n\n.irs-disabled {\n}"
  },
  {
    "path": "public/admin/css/plugins/jqGrid/ui.jqgrid.css",
    "content": "/*Grid*/\n.ui-jqgrid {position: relative;}\n.ui-jqgrid .ui-jqgrid-view {position: relative;left:0; top: 0; padding: 0; font-size:11px;}\n/* caption*/\n.ui-jqgrid .ui-jqgrid-titlebar {padding: .3em .2em .2em .3em; position: relative; font-size: 12px; border-left: 0 none;border-right: 0 none; border-top: 0 none;}\n.ui-jqgrid .ui-jqgrid-caption {text-align: left;}\n.ui-jqgrid .ui-jqgrid-title { margin: .1em 0 .2em; }\n.ui-jqgrid .ui-jqgrid-titlebar-close { position: absolute;top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height:18px; cursor:pointer;}\n.ui-jqgrid .ui-jqgrid-titlebar-close span { display: block; margin: 1px; }\n.ui-jqgrid .ui-jqgrid-titlebar-close:hover { padding: 0; }\n/* header*/\n.ui-jqgrid .ui-jqgrid-hdiv {position: relative; margin: 0;padding: 0; overflow-x: hidden; border-left: 0 none !important; border-top : 0 none !important; border-right : 0 none !important;}\n.ui-jqgrid .ui-jqgrid-hbox {float: left; padding-right: 20px;}\n.ui-jqgrid .ui-jqgrid-htable {table-layout:fixed;margin:0;}\n.ui-jqgrid .ui-jqgrid-htable th {height:22px;padding: 0 2px 0 2px;}\n.ui-jqgrid .ui-jqgrid-htable th div {overflow: hidden; position:relative; height:17px;}\n.ui-th-column, .ui-jqgrid .ui-jqgrid-htable th.ui-th-column {overflow: hidden;white-space: nowrap;text-align:center;border-top : 0 none;border-bottom : 0 none;}\n.ui-th-ltr, .ui-jqgrid .ui-jqgrid-htable th.ui-th-ltr {border-left : 0 none;}\n.ui-th-rtl, .ui-jqgrid .ui-jqgrid-htable th.ui-th-rtl {border-right : 0 none;}\n.ui-first-th-ltr {border-right: 1px solid; }\n.ui-first-th-rtl {border-left: 1px solid; }\n.ui-jqgrid .ui-th-div-ie {white-space: nowrap; zoom :1; height:17px;}\n.ui-jqgrid .ui-jqgrid-resize {height:20px !important;position: relative; cursor :e-resize;display: inline;overflow: hidden;}\n.ui-jqgrid .ui-grid-ico-sort {overflow:hidden;position:absolute;display:inline; cursor: pointer !important;}\n.ui-jqgrid .ui-icon-asc {margin-top:-3px; height:12px;}\n.ui-jqgrid .ui-icon-desc {margin-top:3px;height:12px;}\n.ui-jqgrid .ui-i-asc {margin-top:0;height:16px;}\n.ui-jqgrid .ui-i-desc {margin-top:0;margin-left:13px;height:16px;}\n.ui-jqgrid .ui-jqgrid-sortable {cursor:pointer;}\n.ui-jqgrid tr.ui-search-toolbar th { border-top-width: 1px !important; border-top-color: inherit !important; border-top-style: ridge !important }\ntr.ui-search-toolbar input {margin: 1px 0 0 0}\ntr.ui-search-toolbar select {margin: 1px 0 0 0}\n/* body */ \n.ui-jqgrid .ui-jqgrid-bdiv {position: relative; margin: 0; padding:0; overflow: auto; text-align:left;}\n.ui-jqgrid .ui-jqgrid-btable {table-layout:fixed; margin:0; outline-style: none; }\n.ui-jqgrid tr.jqgrow { outline-style: none; }\n.ui-jqgrid tr.jqgroup { outline-style: none; }\n.ui-jqgrid tr.jqgrow td {font-weight: normal; overflow: hidden; white-space: pre; height: 22px;padding: 0 2px 0 2px;border-bottom-width: 1px; border-bottom-color: inherit; border-bottom-style: solid;}\n.ui-jqgrid tr.jqgfirstrow td {padding: 0 2px 0 2px;border-right-width: 1px; border-right-style: solid;}\n.ui-jqgrid tr.jqgroup td {font-weight: normal; overflow: hidden; white-space: pre; height: 22px;padding: 0 2px 0 2px;border-bottom-width: 1px; border-bottom-color: inherit; border-bottom-style: solid;}\n.ui-jqgrid tr.jqfoot td {font-weight: bold; overflow: hidden; white-space: pre; height: 22px;padding: 0 2px 0 2px;border-bottom-width: 1px; border-bottom-color: inherit; border-bottom-style: solid;}\n.ui-jqgrid tr.ui-row-ltr td {text-align:left;border-right-width: 1px; border-right-color: inherit; border-right-style: solid;}\n.ui-jqgrid tr.ui-row-rtl td {text-align:right;border-left-width: 1px; border-left-color: inherit; border-left-style: solid;}\n.ui-jqgrid td.jqgrid-rownum { padding: 0 2px 0 2px; margin: 0; border: 0 none;}\n.ui-jqgrid .ui-jqgrid-resize-mark { width:2px; left:0; background-color:#777; cursor: e-resize; cursor: col-resize; position:absolute; top:0; height:100px; overflow:hidden; display:none; border:0 none; z-index: 99999;}\n/* footer */\n.ui-jqgrid .ui-jqgrid-sdiv {position: relative; margin: 0;padding: 0; overflow: hidden; border-left: 0 none !important; border-top : 0 none !important; border-right : 0 none !important;}\n.ui-jqgrid .ui-jqgrid-ftable {table-layout:fixed; margin-bottom:0;}\n.ui-jqgrid tr.footrow td {font-weight: bold; overflow: hidden; white-space:nowrap; height: 21px;padding: 0 2px 0 2px;border-top-width: 1px; border-top-color: inherit; border-top-style: solid;}\n.ui-jqgrid tr.footrow-ltr td {text-align:left;border-right-width: 1px; border-right-color: inherit; border-right-style: solid;}\n.ui-jqgrid tr.footrow-rtl td {text-align:right;border-left-width: 1px; border-left-color: inherit; border-left-style: solid;}\n/* Pager*/\n.ui-jqgrid .ui-jqgrid-pager { border-left: 0 none !important;border-right: 0 none !important; border-bottom: 0 none !important; margin: 0 !important; padding: 0 !important; position: relative; height: 25px;white-space: nowrap;overflow: hidden;font-size:11px;}\n.ui-jqgrid .ui-pager-control {position: relative;}\n.ui-jqgrid .ui-pg-table {position: relative; padding-bottom:2px; width:auto; margin: 0;}\n.ui-jqgrid .ui-pg-table td {font-weight:normal; vertical-align:middle; padding:1px;}\n.ui-jqgrid .ui-pg-button  { height:19px !important;}\n.ui-jqgrid .ui-pg-button span { display: block; margin: 1px; float:left;}\n.ui-jqgrid .ui-pg-button:hover { padding: 0; }\n.ui-jqgrid .ui-state-disabled:hover {padding:1px;}\n.ui-jqgrid .ui-pg-input { height:13px;font-size:.8em; margin: 0;}\n.ui-jqgrid .ui-pg-selbox {font-size:.8em; line-height:18px; display:block; height:18px; margin: 0;}\n.ui-jqgrid .ui-separator {height: 18px; border-left: 1px solid #ccc ; border-right: 1px solid #ccc ; margin: 1px; float: right;}\n.ui-jqgrid .ui-paging-info {font-weight: normal;height:19px; margin-top:3px;margin-right:4px;}\n.ui-jqgrid .ui-jqgrid-pager .ui-pg-div {padding:1px 0;float:left;position:relative;}\n.ui-jqgrid .ui-jqgrid-pager .ui-pg-button { cursor:pointer; }\n.ui-jqgrid .ui-jqgrid-pager .ui-pg-div  span.ui-icon {float:left;margin:0 2px;}\n.ui-jqgrid td input, .ui-jqgrid td select .ui-jqgrid td textarea { margin: 0;}\n.ui-jqgrid td textarea {width:auto;height:auto;}\n.ui-jqgrid .ui-jqgrid-toppager {border-left: 0 none !important;border-right: 0 none !important; border-top: 0 none !important; margin: 0 !important; padding: 0 !important; position: relative; height: 25px !important;white-space: nowrap;overflow: hidden;}\n.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div {padding:1px 0;float:left;position:relative;}\n.ui-jqgrid .ui-jqgrid-toppager .ui-pg-button { cursor:pointer; }\n.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div  span.ui-icon {float:left;margin:0 2px;}\n/*subgrid*/\n.ui-jqgrid .ui-jqgrid-btable .ui-sgcollapsed span {display: block;}\n.ui-jqgrid .ui-subgrid {margin:0;padding:0; width:100%;}\n.ui-jqgrid .ui-subgrid table {table-layout: fixed;}\n.ui-jqgrid .ui-subgrid tr.ui-subtblcell td {height:18px;border-right-width: 1px; border-right-color: inherit; border-right-style: solid;border-bottom-width: 1px; border-bottom-color: inherit; border-bottom-style: solid;}\n.ui-jqgrid .ui-subgrid td.subgrid-data {border-top:  0 none !important;}\n.ui-jqgrid .ui-subgrid td.subgrid-cell {border-width: 0 0 1px 0;}\n.ui-jqgrid .ui-th-subgrid {height:20px;}\n/* loading */\n.ui-jqgrid .loading {position: absolute; top: 45%;left: 45%;width: auto;z-index:101;padding: 6px; margin: 5px;text-align: center;font-weight: bold;display: none;border-width: 2px !important; font-size:11px;}\n.ui-jqgrid .jqgrid-overlay {display:none;z-index:100;}\n/* IE * html .jqgrid-overlay {width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');} */\n* .jqgrid-overlay iframe {position:absolute;top:0;left:0;z-index:-1;}\n/* IE width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');}*/\n/* end loading div */\n/* toolbar */\n.ui-jqgrid .ui-userdata {border-left: 0 none;    border-right: 0 none;\theight : 21px;overflow: hidden;\t}\n/*Modal Window */\n.ui-jqdialog { display: none; width: 300px; position: absolute; padding: .2em; font-size:11px; overflow:visible;}\n.ui-jqdialog .ui-jqdialog-titlebar { padding: .3em .2em; position: relative;  }\n.ui-jqdialog .ui-jqdialog-title { margin: .1em 0 .2em; } \n.ui-jqdialog .ui-jqdialog-titlebar-close { position: absolute;  top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; cursor:pointer;}\n\n.ui-jqdialog .ui-jqdialog-titlebar-close span { display: block; margin: 1px; }\n.ui-jqdialog .ui-jqdialog-titlebar-close:hover, .ui-jqdialog .ui-jqdialog-titlebar-close:focus { padding: 0; }\n.ui-jqdialog-content, .ui-jqdialog .ui-jqdialog-content { border: 0; padding: .3em .2em; background: none; height:auto;}\n.ui-jqdialog .ui-jqconfirm {padding: .4em 1em; border-width:3px;position:absolute;bottom:10px;right:10px;overflow:visible;display:none;height:80px;width:220px;text-align:center;}\n.ui-jqdialog>.ui-resizable-se { bottom: -3px; right: -3px}\n.ui-jqgrid>.ui-resizable-se { bottom: -3px; right: -3px }\n/* end Modal window*/\n/* Form edit */\n.ui-jqdialog-content .FormGrid {margin: 0;}\n.ui-jqdialog-content .EditTable { width: 100%; margin-bottom:0;}\n.ui-jqdialog-content .DelTable { width: 100%; margin-bottom:0;}\n.EditTable td input, .EditTable td select, .EditTable td textarea {margin: 0;}\n.EditTable td textarea { width:auto; height:auto;}\n.ui-jqdialog-content td.EditButton {text-align: right;border-top: 0 none;border-left: 0 none;border-right: 0 none; padding-bottom:5px; padding-top:5px;}\n.ui-jqdialog-content td.navButton {text-align: center; border-left: 0 none;border-top: 0 none;border-right: 0 none; padding-bottom:5px; padding-top:5px;}\n.ui-jqdialog-content input.FormElement {padding:.3em}\n.ui-jqdialog-content select.FormElement {padding:.3em}\n.ui-jqdialog-content .data-line {padding-top:.1em;border: 0 none;}\n\n.ui-jqdialog-content .CaptionTD {vertical-align: middle;border: 0 none; padding: 2px;white-space: nowrap;}\n.ui-jqdialog-content .DataTD {padding: 2px; border: 0 none; vertical-align: top;}\n.ui-jqdialog-content .form-view-data {white-space:pre}\n.fm-button { display: inline-block; margin:0 4px 0 0; padding: .4em .5em; text-decoration:none !important; cursor:pointer; position: relative; text-align: center; zoom: 1; }\n.fm-button-icon-left { padding-left: 1.9em; }\n.fm-button-icon-right { padding-right: 1.9em; }\n.fm-button-icon-left .ui-icon { right: auto; left: .2em; margin-left: 0; position: absolute; top: 50%; margin-top: -8px; }\n.fm-button-icon-right .ui-icon { left: auto; right: .2em; margin-left: 0; position: absolute; top: 50%; margin-top: -8px;}\n#nData, #pData { float: left; margin:3px;padding: 0; width: 15px; }\n/* End Eorm edit */\n/*.ui-jqgrid .edit-cell {}*/\n.ui-jqgrid .selected-row, div.ui-jqgrid .selected-row td {font-style : normal;border-left: 0 none;}\n/* inline edit actions button*/\n.ui-inline-del.ui-state-hover span, .ui-inline-edit.ui-state-hover span,\n.ui-inline-save.ui-state-hover span, .ui-inline-cancel.ui-state-hover span {\n    margin: -1px;\n}\n/* Tree Grid */\n.ui-jqgrid .tree-wrap {float: left; position: relative;height: 18px;white-space: nowrap;overflow: hidden;}\n.ui-jqgrid .tree-minus {position: absolute; height: 18px; width: 18px; overflow: hidden;}\n.ui-jqgrid .tree-plus {position: absolute;\theight: 18px; width: 18px;\toverflow: hidden;}\n.ui-jqgrid .tree-leaf {position: absolute;\theight: 18px; width: 18px;overflow: hidden;}\n.ui-jqgrid .treeclick {cursor: pointer;}\n/* moda dialog */\n* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;}\n/*\t width: expression(this.parentNode.offsetWidth+'px');height: expression(this.parentNode.offsetHeight+'px');}*/\n.ui-jqgrid-dnd tr td {border-right-width: 1px; border-right-color: inherit; border-right-style: solid; height:20px}\n/* RTL Support */\n.ui-jqgrid .ui-jqgrid-caption-rtl {text-align: right;}\n.ui-jqgrid .ui-jqgrid-hbox-rtl {float: right; padding-left: 20px;}\n.ui-jqgrid .ui-jqgrid-resize-ltr {float: right;margin: -2px -2px -2px 0;}\n.ui-jqgrid .ui-jqgrid-resize-rtl {float: left;margin: -2px 0 -1px -3px;}\n.ui-jqgrid .ui-sort-rtl {left:0;}\n.ui-jqgrid .tree-wrap-ltr {float: left;}\n.ui-jqgrid .tree-wrap-rtl {float: right;}\n.ui-jqgrid .ui-ellipsis {-moz-text-overflow:ellipsis;text-overflow:ellipsis;}\n\n/* Toolbar Search Menu */\n.ui-search-menu { position: absolute; padding: 2px 5px;}\n.ui-jqgrid .ui-search-table { padding: 0; border: 0 none; height:20px; width:100%;}\n.ui-jqgrid .ui-search-table .ui-search-oper { width:20px; }\na.g-menu-item, a.soptclass, a.clearsearchclass { cursor: pointer; }\n.ui-jqgrid .ui-search-table .ui-search-input>input,\n.ui-jqgrid .ui-search-table .ui-search-input>select\n{\n    display: block;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n} \n.ui-jqgrid .ui-jqgrid-view input,\n.ui-jqgrid .ui-jqgrid-view select,\n.ui-jqgrid .ui-jqgrid-view textarea,\n.ui-jqgrid .ui-jqgrid-view button {\n    font-size: 11px\n}\n"
  },
  {
    "path": "public/admin/css/plugins/jsTree/style.css",
    "content": "/* jsTree default theme */\n.jstree-node,\n.jstree-children,\n.jstree-container-ul {\n  display: block;\n  margin: 0;\n  padding: 0;\n  list-style-type: none;\n  list-style-image: none;\n}\n.jstree-node {\n  white-space: nowrap;\n}\n.jstree-anchor {\n  display: inline-block;\n  color: black;\n  white-space: nowrap;\n  padding: 0 4px 0 1px;\n  margin: 0;\n  vertical-align: top;\n}\n.jstree-anchor:focus {\n  outline: 0;\n}\n.jstree-anchor,\n.jstree-anchor:link,\n.jstree-anchor:visited,\n.jstree-anchor:hover,\n.jstree-anchor:active {\n  text-decoration: none;\n  color: inherit;\n}\n.jstree-icon {\n  display: inline-block;\n  text-decoration: none;\n  margin: 0;\n  padding: 0;\n  vertical-align: top;\n  text-align: center;\n}\n.jstree-icon:empty {\n  display: inline-block;\n  text-decoration: none;\n  margin: 0;\n  padding: 0;\n  vertical-align: top;\n  text-align: center;\n}\n.jstree-ocl {\n  cursor: pointer;\n}\n.jstree-leaf > .jstree-ocl {\n  cursor: default;\n}\n.jstree .jstree-open > .jstree-children {\n  display: block;\n}\n.jstree .jstree-closed > .jstree-children,\n.jstree .jstree-leaf > .jstree-children {\n  display: none;\n}\n.jstree-anchor > .jstree-themeicon {\n  margin-right: 2px;\n}\n.jstree-no-icons .jstree-themeicon,\n.jstree-anchor > .jstree-themeicon-hidden {\n  display: none;\n}\n.jstree-rtl .jstree-anchor {\n  padding: 0 1px 0 4px;\n}\n.jstree-rtl .jstree-anchor > .jstree-themeicon {\n  margin-left: 2px;\n  margin-right: 0;\n}\n.jstree-rtl .jstree-node {\n  margin-left: 0;\n}\n.jstree-rtl .jstree-container-ul > .jstree-node {\n  margin-right: 0;\n}\n.jstree-wholerow-ul {\n  position: relative;\n  display: inline-block;\n  min-width: 100%;\n}\n.jstree-wholerow-ul .jstree-leaf > .jstree-ocl {\n  cursor: pointer;\n}\n.jstree-wholerow-ul .jstree-anchor,\n.jstree-wholerow-ul .jstree-icon {\n  position: relative;\n}\n.jstree-wholerow-ul .jstree-wholerow {\n  width: 100%;\n  cursor: pointer;\n  position: absolute;\n  left: 0;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n.vakata-context {\n  display: none;\n}\n.vakata-context,\n.vakata-context ul {\n  margin: 0;\n  padding: 2px;\n  position: absolute;\n  background: #f5f5f5;\n  border: 1px solid #979797;\n  -moz-box-shadow: 5px 5px 4px -4px #666666;\n  -webkit-box-shadow: 2px 2px 2px #999999;\n  box-shadow: 2px 2px 2px #999999;\n}\n.vakata-context ul {\n  list-style: none;\n  left: 100%;\n  margin-top: -2.7em;\n  margin-left: -4px;\n}\n.vakata-context .vakata-context-right ul {\n  left: auto;\n  right: 100%;\n  margin-left: auto;\n  margin-right: -4px;\n}\n.vakata-context li {\n  list-style: none;\n  display: inline;\n}\n.vakata-context li > a {\n  display: block;\n  padding: 0 2em 0 2em;\n  text-decoration: none;\n  width: auto;\n  color: black;\n  white-space: nowrap;\n  line-height: 2.4em;\n  -moz-text-shadow: 1px 1px 0 white;\n  -webkit-text-shadow: 1px 1px 0 white;\n  text-shadow: 1px 1px 0 white;\n  -moz-border-radius: 1px;\n  -webkit-border-radius: 1px;\n  border-radius: 1px;\n}\n.vakata-context li > a:hover {\n  position: relative;\n  background-color: #e8eff7;\n  -moz-box-shadow: 0 0 2px #0a6aa1;\n  -webkit-box-shadow: 0 0 2px #0a6aa1;\n  box-shadow: 0 0 2px #0a6aa1;\n}\n.vakata-context li > a.vakata-context-parent {\n  background-image: url(\"data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==\");\n  background-position: right center;\n  background-repeat: no-repeat;\n}\n.vakata-context li > a:focus {\n  outline: 0;\n}\n.vakata-context .vakata-context-hover > a {\n  position: relative;\n  background-color: #e8eff7;\n  -moz-box-shadow: 0 0 2px #0a6aa1;\n  -webkit-box-shadow: 0 0 2px #0a6aa1;\n  box-shadow: 0 0 2px #0a6aa1;\n}\n.vakata-context .vakata-context-separator > a,\n.vakata-context .vakata-context-separator > a:hover {\n  background: white;\n  border: 0;\n  border-top: 1px solid #e2e3e3;\n  height: 1px;\n  min-height: 1px;\n  max-height: 1px;\n  padding: 0;\n  margin: 0 0 0 2.4em;\n  border-left: 1px solid #e0e0e0;\n  -moz-text-shadow: 0 0 0 transparent;\n  -webkit-text-shadow: 0 0 0 transparent;\n  text-shadow: 0 0 0 transparent;\n  -moz-box-shadow: 0 0 0 transparent;\n  -webkit-box-shadow: 0 0 0 transparent;\n  box-shadow: 0 0 0 transparent;\n  -moz-border-radius: 0;\n  -webkit-border-radius: 0;\n  border-radius: 0;\n}\n.vakata-context .vakata-contextmenu-disabled a,\n.vakata-context .vakata-contextmenu-disabled a:hover {\n  color: silver;\n  background-color: transparent;\n  border: 0;\n  box-shadow: 0 0 0;\n}\n.vakata-context li > a > i {\n  text-decoration: none;\n  display: inline-block;\n  width: 2.4em;\n  height: 2.4em;\n  background: transparent;\n  margin: 0 0 0 -2em;\n  vertical-align: top;\n  text-align: center;\n  line-height: 2.4em;\n}\n.vakata-context li > a > i:empty {\n  width: 2.4em;\n  line-height: 2.4em;\n}\n.vakata-context li > a .vakata-contextmenu-sep {\n  display: inline-block;\n  width: 1px;\n  height: 2.4em;\n  background: white;\n  margin: 0 0.5em 0 0;\n  border-left: 1px solid #e2e3e3;\n}\n.vakata-context .vakata-contextmenu-shortcut {\n  font-size: 0.8em;\n  color: silver;\n  opacity: 0.5;\n  display: none;\n}\n.vakata-context-rtl ul {\n  left: auto;\n  right: 100%;\n  margin-left: auto;\n  margin-right: -4px;\n}\n.vakata-context-rtl li > a.vakata-context-parent {\n  background-image: url(\"data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7\");\n  background-position: left center;\n  background-repeat: no-repeat;\n}\n.vakata-context-rtl .vakata-context-separator > a {\n  margin: 0 2.4em 0 0;\n  border-left: 0;\n  border-right: 1px solid #e2e3e3;\n}\n.vakata-context-rtl .vakata-context-left ul {\n  right: auto;\n  left: 100%;\n  margin-left: -4px;\n  margin-right: auto;\n}\n.vakata-context-rtl li > a > i {\n  margin: 0 -2em 0 0;\n}\n.vakata-context-rtl li > a .vakata-contextmenu-sep {\n  margin: 0 0 0 0.5em;\n  border-left-color: white;\n  background: #e2e3e3;\n}\n#jstree-marker {\n  position: absolute;\n  top: 0;\n  left: 0;\n  margin: -5px 0 0 0;\n  padding: 0;\n  border-right: 0;\n  border-top: 5px solid transparent;\n  border-bottom: 5px solid transparent;\n  border-left: 5px solid;\n  width: 0;\n  height: 0;\n  font-size: 0;\n  line-height: 0;\n}\n#jstree-dnd {\n  line-height: 16px;\n  margin: 0;\n  padding: 4px;\n}\n#jstree-dnd .jstree-icon,\n#jstree-dnd .jstree-copy {\n  display: inline-block;\n  text-decoration: none;\n  margin: 0 2px 0 0;\n  padding: 0;\n  width: 16px;\n  height: 16px;\n}\n#jstree-dnd .jstree-ok {\n  background: green;\n}\n#jstree-dnd .jstree-er {\n  background: red;\n}\n#jstree-dnd .jstree-copy {\n  margin: 0 2px 0 2px;\n}\n.jstree-default .jstree-node,\n.jstree-default .jstree-icon {\n  background-repeat: no-repeat;\n  background-color: transparent;\n}\n.jstree-default .jstree-anchor,\n.jstree-default .jstree-wholerow {\n  transition: background-color 0.15s, box-shadow 0.15s;\n}\n.jstree-default .jstree-hovered {\n  background: #e7f4f9;\n  border-radius: 2px;\n  box-shadow: inset 0 0 1px #cccccc;\n}\n.jstree-default .jstree-clicked {\n  background: #beebff;\n  border-radius: 2px;\n  box-shadow: inset 0 0 1px #999999;\n}\n.jstree-default .jstree-no-icons .jstree-anchor > .jstree-themeicon {\n  display: none;\n}\n.jstree-default .jstree-disabled {\n  background: transparent;\n  color: #666666;\n}\n.jstree-default .jstree-disabled.jstree-hovered {\n  background: transparent;\n  box-shadow: none;\n}\n.jstree-default .jstree-disabled.jstree-clicked {\n  background: #efefef;\n}\n.jstree-default .jstree-disabled > .jstree-icon {\n  opacity: 0.8;\n  filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\\'http://www.w3.org/2000/svg\\'><filter id=\\'jstree-grayscale\\'><feColorMatrix type=\\'matrix\\' values=\\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\\'/></filter></svg>#jstree-grayscale\");\n  /* Firefox 10+ */\n  filter: gray;\n  /* IE6-9 */\n  -webkit-filter: grayscale(100%);\n  /* Chrome 19+ & Safari 6+ */\n}\n.jstree-default .jstree-search {\n  font-style: italic;\n  color: #8b0000;\n  font-weight: bold;\n}\n.jstree-default .jstree-no-checkboxes .jstree-checkbox {\n  display: none !important;\n}\n.jstree-default.jstree-checkbox-no-clicked .jstree-clicked {\n  background: transparent;\n  box-shadow: none;\n}\n.jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {\n  background: #e7f4f9;\n}\n.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {\n  background: transparent;\n}\n.jstree-default.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {\n  background: #e7f4f9;\n}\n.jstree-default > .jstree-striped {\n  background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==\") left top repeat;\n}\n.jstree-default > .jstree-wholerow-ul .jstree-hovered,\n.jstree-default > .jstree-wholerow-ul .jstree-clicked {\n  background: transparent;\n  box-shadow: none;\n  border-radius: 0;\n}\n.jstree-default .jstree-wholerow {\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n}\n.jstree-default .jstree-wholerow-hovered {\n  background: #e7f4f9;\n}\n.jstree-default .jstree-wholerow-clicked {\n  background: #beebff;\n  background: -moz-linear-gradient(top, #beebff 0%, #a8e4ff 100%);\n  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #beebff), color-stop(100%, #a8e4ff));\n  background: -webkit-linear-gradient(top, #beebff 0%, #a8e4ff 100%);\n  background: -o-linear-gradient(top, #beebff 0%, #a8e4ff 100%);\n  background: -ms-linear-gradient(top, #beebff 0%, #a8e4ff 100%);\n  background: linear-gradient(to bottom, #beebff 0%, #a8e4ff 100%);\n  /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='@color1', endColorstr='@color2',GradientType=0 );*/\n}\n.jstree-default .jstree-node {\n  min-height: 24px;\n  line-height: 24px;\n  margin-left: 24px;\n  min-width: 24px;\n}\n.jstree-default .jstree-anchor {\n  line-height: 24px;\n  height: 24px;\n}\n.jstree-default .jstree-icon {\n  width: 24px;\n  height: 24px;\n  line-height: 24px;\n}\n.jstree-default .jstree-icon:empty {\n  width: 24px;\n  height: 24px;\n  line-height: 24px;\n}\n.jstree-default.jstree-rtl .jstree-node {\n  margin-right: 24px;\n}\n.jstree-default .jstree-wholerow {\n  height: 24px;\n}\n.jstree-default .jstree-node,\n.jstree-default .jstree-icon {\n  background-image: url(\"32px.png\");\n}\n.jstree-default .jstree-node {\n  background-position: -292px -4px;\n  background-repeat: repeat-y;\n}\n.jstree-default .jstree-last {\n  background: transparent;\n}\n.jstree-default .jstree-open > .jstree-ocl {\n  background-position: -132px -4px;\n}\n.jstree-default .jstree-closed > .jstree-ocl {\n  background-position: -100px -4px;\n}\n.jstree-default .jstree-leaf > .jstree-ocl {\n  background-position: -68px -4px;\n}\n.jstree-default .jstree-themeicon {\n  background-position: -260px -4px;\n}\n.jstree-default > .jstree-no-dots .jstree-node,\n.jstree-default > .jstree-no-dots .jstree-leaf > .jstree-ocl {\n  background: transparent;\n}\n.jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl {\n  background-position: -36px -4px;\n}\n.jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl {\n  background-position: -4px -4px;\n}\n.jstree-default .jstree-disabled {\n  background: transparent;\n}\n.jstree-default .jstree-disabled.jstree-hovered {\n  background: transparent;\n}\n.jstree-default .jstree-disabled.jstree-clicked {\n  background: #efefef;\n}\n.jstree-default .jstree-checkbox {\n  background-position: -164px -4px;\n}\n.jstree-default .jstree-checkbox:hover {\n  background-position: -164px -36px;\n}\n.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,\n.jstree-default .jstree-checked > .jstree-checkbox {\n  background-position: -228px -4px;\n}\n.jstree-default.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,\n.jstree-default .jstree-checked > .jstree-checkbox:hover {\n  background-position: -228px -36px;\n}\n.jstree-default .jstree-anchor > .jstree-undetermined {\n  background-position: -196px -4px;\n}\n.jstree-default .jstree-anchor > .jstree-undetermined:hover {\n  background-position: -196px -36px;\n}\n.jstree-default > .jstree-striped {\n  background-size: auto 48px;\n}\n.jstree-default.jstree-rtl .jstree-node {\n  background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==\");\n  background-position: 100% 1px;\n  background-repeat: repeat-y;\n}\n.jstree-default.jstree-rtl .jstree-last {\n  background: transparent;\n}\n.jstree-default.jstree-rtl .jstree-open > .jstree-ocl {\n  background-position: -132px -36px;\n}\n.jstree-default.jstree-rtl .jstree-closed > .jstree-ocl {\n  background-position: -100px -36px;\n}\n.jstree-default.jstree-rtl .jstree-leaf > .jstree-ocl {\n  background-position: -68px -36px;\n}\n.jstree-default.jstree-rtl > .jstree-no-dots .jstree-node,\n.jstree-default.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {\n  background: transparent;\n}\n.jstree-default.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {\n  background-position: -36px -36px;\n}\n.jstree-default.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {\n  background-position: -4px -36px;\n}\n.jstree-default .jstree-themeicon-custom {\n  background-color: transparent;\n  background-image: none;\n  background-position: 0 0;\n}\n.jstree-default > .jstree-container-ul .jstree-loading > .jstree-ocl {\n  background: url(\"throbber.gif\") center center no-repeat;\n}\n.jstree-default .jstree-file {\n  background: url(\"32px.png\") -100px -68px no-repeat;\n}\n.jstree-default .jstree-folder {\n  background: url(\"32px.png\") -260px -4px no-repeat;\n}\n.jstree-default > .jstree-container-ul > .jstree-node {\n  margin-left: 0;\n  margin-right: 0;\n}\n#jstree-dnd.jstree-default {\n  line-height: 24px;\n  padding: 0 4px;\n}\n#jstree-dnd.jstree-default .jstree-ok,\n#jstree-dnd.jstree-default .jstree-er {\n  background-image: url(\"32px.png\");\n  background-repeat: no-repeat;\n  background-color: transparent;\n}\n#jstree-dnd.jstree-default i {\n  background: transparent;\n  width: 24px;\n  height: 24px;\n  line-height: 24px;\n}\n#jstree-dnd.jstree-default .jstree-ok {\n  background-position: -4px -68px;\n}\n#jstree-dnd.jstree-default .jstree-er {\n  background-position: -36px -68px;\n}\n.jstree-default.jstree-rtl .jstree-node {\n  background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==\");\n}\n.jstree-default.jstree-rtl .jstree-last {\n  background: transparent;\n}\n.jstree-default-small .jstree-node {\n  min-height: 18px;\n  line-height: 18px;\n  margin-left: 18px;\n  min-width: 18px;\n}\n.jstree-default-small .jstree-anchor {\n  line-height: 18px;\n  height: 18px;\n}\n.jstree-default-small .jstree-icon {\n  width: 18px;\n  height: 18px;\n  line-height: 18px;\n}\n.jstree-default-small .jstree-icon:empty {\n  width: 18px;\n  height: 18px;\n  line-height: 18px;\n}\n.jstree-default-small.jstree-rtl .jstree-node {\n  margin-right: 18px;\n}\n.jstree-default-small .jstree-wholerow {\n  height: 18px;\n}\n.jstree-default-small .jstree-node,\n.jstree-default-small .jstree-icon {\n  background-image: url(\"32px.png\");\n}\n.jstree-default-small .jstree-node {\n  background-position: -295px -7px;\n  background-repeat: repeat-y;\n}\n.jstree-default-small .jstree-last {\n  background: transparent;\n}\n.jstree-default-small .jstree-open > .jstree-ocl {\n  background-position: -135px -7px;\n}\n.jstree-default-small .jstree-closed > .jstree-ocl {\n  background-position: -103px -7px;\n}\n.jstree-default-small .jstree-leaf > .jstree-ocl {\n  background-position: -71px -7px;\n}\n.jstree-default-small .jstree-themeicon {\n  background-position: -263px -7px;\n}\n.jstree-default-small > .jstree-no-dots .jstree-node,\n.jstree-default-small > .jstree-no-dots .jstree-leaf > .jstree-ocl {\n  background: transparent;\n}\n.jstree-default-small > .jstree-no-dots .jstree-open > .jstree-ocl {\n  background-position: -39px -7px;\n}\n.jstree-default-small > .jstree-no-dots .jstree-closed > .jstree-ocl {\n  background-position: -7px -7px;\n}\n.jstree-default-small .jstree-disabled {\n  background: transparent;\n}\n.jstree-default-small .jstree-disabled.jstree-hovered {\n  background: transparent;\n}\n.jstree-default-small .jstree-disabled.jstree-clicked {\n  background: #efefef;\n}\n.jstree-default-small .jstree-checkbox {\n  background-position: -167px -7px;\n}\n.jstree-default-small .jstree-checkbox:hover {\n  background-position: -167px -39px;\n}\n.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,\n.jstree-default-small .jstree-checked > .jstree-checkbox {\n  background-position: -231px -7px;\n}\n.jstree-default-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,\n.jstree-default-small .jstree-checked > .jstree-checkbox:hover {\n  background-position: -231px -39px;\n}\n.jstree-default-small .jstree-anchor > .jstree-undetermined {\n  background-position: -199px -7px;\n}\n.jstree-default-small .jstree-anchor > .jstree-undetermined:hover {\n  background-position: -199px -39px;\n}\n.jstree-default-small > .jstree-striped {\n  background-size: auto 36px;\n}\n.jstree-default-small.jstree-rtl .jstree-node {\n  background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==\");\n  background-position: 100% 1px;\n  background-repeat: repeat-y;\n}\n.jstree-default-small.jstree-rtl .jstree-last {\n  background: transparent;\n}\n.jstree-default-small.jstree-rtl .jstree-open > .jstree-ocl {\n  background-position: -135px -39px;\n}\n.jstree-default-small.jstree-rtl .jstree-closed > .jstree-ocl {\n  background-position: -103px -39px;\n}\n.jstree-default-small.jstree-rtl .jstree-leaf > .jstree-ocl {\n  background-position: -71px -39px;\n}\n.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-node,\n.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {\n  background: transparent;\n}\n.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {\n  background-position: -39px -39px;\n}\n.jstree-default-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {\n  background-position: -7px -39px;\n}\n.jstree-default-small .jstree-themeicon-custom {\n  background-color: transparent;\n  background-image: none;\n  background-position: 0 0;\n}\n.jstree-default-small > .jstree-container-ul .jstree-loading > .jstree-ocl {\n  background: url(\"throbber.gif\") center center no-repeat;\n}\n.jstree-default-small .jstree-file {\n  background: url(\"32px.png\") -103px -71px no-repeat;\n}\n.jstree-default-small .jstree-folder {\n  background: url(\"32px.png\") -263px -7px no-repeat;\n}\n.jstree-default-small > .jstree-container-ul > .jstree-node {\n  margin-left: 0;\n  margin-right: 0;\n}\n#jstree-dnd.jstree-default-small {\n  line-height: 18px;\n  padding: 0 4px;\n}\n#jstree-dnd.jstree-default-small .jstree-ok,\n#jstree-dnd.jstree-default-small .jstree-er {\n  background-image: url(\"32px.png\");\n  background-repeat: no-repeat;\n  background-color: transparent;\n}\n#jstree-dnd.jstree-default-small i {\n  background: transparent;\n  width: 18px;\n  height: 18px;\n  line-height: 18px;\n}\n#jstree-dnd.jstree-default-small .jstree-ok {\n  background-position: -7px -71px;\n}\n#jstree-dnd.jstree-default-small .jstree-er {\n  background-position: -39px -71px;\n}\n.jstree-default-small.jstree-rtl .jstree-node {\n  background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==\");\n}\n.jstree-default-small.jstree-rtl .jstree-last {\n  background: transparent;\n}\n.jstree-default-large .jstree-node {\n  min-height: 32px;\n  line-height: 32px;\n  margin-left: 32px;\n  min-width: 32px;\n}\n.jstree-default-large .jstree-anchor {\n  line-height: 32px;\n  height: 32px;\n}\n.jstree-default-large .jstree-icon {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n}\n.jstree-default-large .jstree-icon:empty {\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n}\n.jstree-default-large.jstree-rtl .jstree-node {\n  margin-right: 32px;\n}\n.jstree-default-large .jstree-wholerow {\n  height: 32px;\n}\n.jstree-default-large .jstree-node,\n.jstree-default-large .jstree-icon {\n  background-image: url(\"32px.png\");\n}\n.jstree-default-large .jstree-node {\n  background-position: -288px 0px;\n  background-repeat: repeat-y;\n}\n.jstree-default-large .jstree-last {\n  background: transparent;\n}\n.jstree-default-large .jstree-open > .jstree-ocl {\n  background-position: -128px 0px;\n}\n.jstree-default-large .jstree-closed > .jstree-ocl {\n  background-position: -96px 0px;\n}\n.jstree-default-large .jstree-leaf > .jstree-ocl {\n  background-position: -64px 0px;\n}\n.jstree-default-large .jstree-themeicon {\n  background-position: -256px 0px;\n}\n.jstree-default-large > .jstree-no-dots .jstree-node,\n.jstree-default-large > .jstree-no-dots .jstree-leaf > .jstree-ocl {\n  background: transparent;\n}\n.jstree-default-large > .jstree-no-dots .jstree-open > .jstree-ocl {\n  background-position: -32px 0px;\n}\n.jstree-default-large > .jstree-no-dots .jstree-closed > .jstree-ocl {\n  background-position: 0px 0px;\n}\n.jstree-default-large .jstree-disabled {\n  background: transparent;\n}\n.jstree-default-large .jstree-disabled.jstree-hovered {\n  background: transparent;\n}\n.jstree-default-large .jstree-disabled.jstree-clicked {\n  background: #efefef;\n}\n.jstree-default-large .jstree-checkbox {\n  background-position: -160px 0px;\n}\n.jstree-default-large .jstree-checkbox:hover {\n  background-position: -160px -32px;\n}\n.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,\n.jstree-default-large .jstree-checked > .jstree-checkbox {\n  background-position: -224px 0px;\n}\n.jstree-default-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,\n.jstree-default-large .jstree-checked > .jstree-checkbox:hover {\n  background-position: -224px -32px;\n}\n.jstree-default-large .jstree-anchor > .jstree-undetermined {\n  background-position: -192px 0px;\n}\n.jstree-default-large .jstree-anchor > .jstree-undetermined:hover {\n  background-position: -192px -32px;\n}\n.jstree-default-large > .jstree-striped {\n  background-size: auto 64px;\n}\n.jstree-default-large.jstree-rtl .jstree-node {\n  background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==\");\n  background-position: 100% 1px;\n  background-repeat: repeat-y;\n}\n.jstree-default-large.jstree-rtl .jstree-last {\n  background: transparent;\n}\n.jstree-default-large.jstree-rtl .jstree-open > .jstree-ocl {\n  background-position: -128px -32px;\n}\n.jstree-default-large.jstree-rtl .jstree-closed > .jstree-ocl {\n  background-position: -96px -32px;\n}\n.jstree-default-large.jstree-rtl .jstree-leaf > .jstree-ocl {\n  background-position: -64px -32px;\n}\n.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-node,\n.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {\n  background: transparent;\n}\n.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {\n  background-position: -32px -32px;\n}\n.jstree-default-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {\n  background-position: 0px -32px;\n}\n.jstree-default-large .jstree-themeicon-custom {\n  background-color: transparent;\n  background-image: none;\n  background-position: 0 0;\n}\n.jstree-default-large > .jstree-container-ul .jstree-loading > .jstree-ocl {\n  background: url(\"throbber.gif\") center center no-repeat;\n}\n.jstree-default-large .jstree-file {\n  background: url(\"32px.png\") -96px -64px no-repeat;\n}\n.jstree-default-large .jstree-folder {\n  background: url(\"32px.png\") -256px 0px no-repeat;\n}\n.jstree-default-large > .jstree-container-ul > .jstree-node {\n  margin-left: 0;\n  margin-right: 0;\n}\n#jstree-dnd.jstree-default-large {\n  line-height: 32px;\n  padding: 0 4px;\n}\n#jstree-dnd.jstree-default-large .jstree-ok,\n#jstree-dnd.jstree-default-large .jstree-er {\n  background-image: url(\"32px.png\");\n  background-repeat: no-repeat;\n  background-color: transparent;\n}\n#jstree-dnd.jstree-default-large i {\n  background: transparent;\n  width: 32px;\n  height: 32px;\n  line-height: 32px;\n}\n#jstree-dnd.jstree-default-large .jstree-ok {\n  background-position: 0px -64px;\n}\n#jstree-dnd.jstree-default-large .jstree-er {\n  background-position: -32px -64px;\n}\n.jstree-default-large.jstree-rtl .jstree-node {\n  background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==\");\n}\n.jstree-default-large.jstree-rtl .jstree-last {\n  background: transparent;\n}\n@media (max-width: 768px) {\n  #jstree-dnd.jstree-dnd-responsive {\n    line-height: 40px;\n    font-weight: bold;\n    font-size: 1.1em;\n    text-shadow: 1px 1px white;\n  }\n  #jstree-dnd.jstree-dnd-responsive > i {\n    background: transparent;\n    width: 40px;\n    height: 40px;\n  }\n  #jstree-dnd.jstree-dnd-responsive > .jstree-ok {\n    background-image: url(\"40px.png\");\n    background-position: 0 -200px;\n    background-size: 120px 240px;\n  }\n  #jstree-dnd.jstree-dnd-responsive > .jstree-er {\n    background-image: url(\"40px.png\");\n    background-position: -40px -200px;\n    background-size: 120px 240px;\n  }\n  #jstree-marker.jstree-dnd-responsive {\n    border-left-width: 10px;\n    border-top-width: 10px;\n    border-bottom-width: 10px;\n    margin-top: -10px;\n  }\n}\n@media (max-width: 768px) {\n  .jstree-default-responsive {\n    /*\n\t.jstree-open > .jstree-ocl,\n\t.jstree-closed > .jstree-ocl { border-radius:20px; background-color:white; }\n\t*/\n  }\n  .jstree-default-responsive .jstree-icon {\n    background-image: url(\"40px.png\");\n  }\n  .jstree-default-responsive .jstree-node,\n  .jstree-default-responsive .jstree-leaf > .jstree-ocl {\n    background: transparent;\n  }\n  .jstree-default-responsive .jstree-node {\n    min-height: 40px;\n    line-height: 40px;\n    margin-left: 40px;\n    min-width: 40px;\n    white-space: nowrap;\n  }\n  .jstree-default-responsive .jstree-anchor {\n    line-height: 40px;\n    height: 40px;\n  }\n  .jstree-default-responsive .jstree-icon,\n  .jstree-default-responsive .jstree-icon:empty {\n    width: 40px;\n    height: 40px;\n    line-height: 40px;\n  }\n  .jstree-default-responsive > .jstree-container-ul > .jstree-node {\n    margin-left: 0;\n  }\n  .jstree-default-responsive.jstree-rtl .jstree-node {\n    margin-left: 0;\n    margin-right: 40px;\n  }\n  .jstree-default-responsive.jstree-rtl .jstree-container-ul > .jstree-node {\n    margin-right: 0;\n  }\n  .jstree-default-responsive .jstree-ocl,\n  .jstree-default-responsive .jstree-themeicon,\n  .jstree-default-responsive .jstree-checkbox {\n    background-size: 120px 240px;\n  }\n  .jstree-default-responsive .jstree-leaf > .jstree-ocl {\n    background: transparent;\n  }\n  .jstree-default-responsive .jstree-open > .jstree-ocl {\n    background-position: 0 0px !important;\n  }\n  .jstree-default-responsive .jstree-closed > .jstree-ocl {\n    background-position: 0 -40px !important;\n  }\n  .jstree-default-responsive.jstree-rtl .jstree-closed > .jstree-ocl {\n    background-position: -40px 0px !important;\n  }\n  .jstree-default-responsive .jstree-themeicon {\n    background-position: -40px -40px;\n  }\n  .jstree-default-responsive .jstree-checkbox,\n  .jstree-default-responsive .jstree-checkbox:hover {\n    background-position: -40px -80px;\n  }\n  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,\n  .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,\n  .jstree-default-responsive .jstree-checked > .jstree-checkbox,\n  .jstree-default-responsive .jstree-checked > .jstree-checkbox:hover {\n    background-position: 0 -80px;\n  }\n  .jstree-default-responsive .jstree-anchor > .jstree-undetermined,\n  .jstree-default-responsive .jstree-anchor > .jstree-undetermined:hover {\n    background-position: 0 -120px;\n  }\n  .jstree-default-responsive .jstree-anchor {\n    font-weight: bold;\n    font-size: 1.1em;\n    text-shadow: 1px 1px white;\n  }\n  .jstree-default-responsive > .jstree-striped {\n    background: transparent;\n  }\n  .jstree-default-responsive .jstree-wholerow {\n    border-top: 1px solid rgba(255, 255, 255, 0.7);\n    border-bottom: 1px solid rgba(64, 64, 64, 0.2);\n    background: #ebebeb;\n    height: 40px;\n  }\n  .jstree-default-responsive .jstree-wholerow-hovered {\n    background: #e7f4f9;\n  }\n  .jstree-default-responsive .jstree-wholerow-clicked {\n    background: #beebff;\n  }\n  .jstree-default-responsive .jstree-children .jstree-last > .jstree-wholerow {\n    box-shadow: inset 0 -6px 3px -5px #666666;\n  }\n  .jstree-default-responsive .jstree-children .jstree-open > .jstree-wholerow {\n    box-shadow: inset 0 6px 3px -5px #666666;\n    border-top: 0;\n  }\n  .jstree-default-responsive .jstree-children .jstree-open + .jstree-open {\n    box-shadow: none;\n  }\n  .jstree-default-responsive .jstree-node,\n  .jstree-default-responsive .jstree-icon,\n  .jstree-default-responsive .jstree-node > .jstree-ocl,\n  .jstree-default-responsive .jstree-themeicon,\n  .jstree-default-responsive .jstree-checkbox {\n    background-image: url(\"40px.png\");\n    background-size: 120px 240px;\n  }\n  .jstree-default-responsive .jstree-node {\n    background-position: -80px 0;\n    background-repeat: repeat-y;\n  }\n  .jstree-default-responsive .jstree-last {\n    background: transparent;\n  }\n  .jstree-default-responsive .jstree-leaf > .jstree-ocl {\n    background-position: -40px -120px;\n  }\n  .jstree-default-responsive .jstree-last > .jstree-ocl {\n    background-position: -40px -160px;\n  }\n  .jstree-default-responsive .jstree-themeicon-custom {\n    background-color: transparent;\n    background-image: none;\n    background-position: 0 0;\n  }\n  .jstree-default-responsive .jstree-file {\n    background: url(\"40px.png\") 0 -160px no-repeat;\n    background-size: 120px 240px;\n  }\n  .jstree-default-responsive .jstree-folder {\n    background: url(\"40px.png\") -40px -40px no-repeat;\n    background-size: 120px 240px;\n  }\n  .jstree-default-responsive > .jstree-container-ul > .jstree-node {\n    margin-left: 0;\n    margin-right: 0;\n  }\n}\n"
  },
  {
    "path": "public/admin/css/plugins/nouslider/jquery.nouislider.css",
    "content": "\n/* Functional styling;\n * These styles are required for noUiSlider to function.\n * You don't need to change these rules to apply your design.\n */\n.noUi-target,\n.noUi-target * {\n-webkit-touch-callout: none;\n-webkit-user-select: none;\n-ms-touch-action: none;\n-ms-user-select: none;\n-moz-user-select: none;\n-moz-box-sizing: border-box;\n\tbox-sizing: border-box;\n}\n.noUi-base {\n\twidth: 100%;\n\theight: 100%;\n\tposition: relative;\n}\n.noUi-origin {\n\tposition: absolute;\n\tright: 0;\n\ttop: 0;\n\tleft: 0;\n\tbottom: 0;\n}\n.noUi-handle {\n\tposition: relative;\n\tz-index: 1;\n}\n.noUi-stacking .noUi-handle {\n/* This class is applied to the lower origin when\n   its values is > 50%. */\n\tz-index: 10;\n}\n.noUi-stacking + .noUi-origin {\n/* Fix stacking order in IE7, which incorrectly\n   creates a new context for the origins. */\n\t*z-index: -1;\n}\n.noUi-state-tap .noUi-origin {\n-webkit-transition: left 0.3s, top 0.3s;\n\ttransition: left 0.3s, top 0.3s;\n}\n.noUi-state-drag * {\n\tcursor: inherit !important;\n}\n\n/* Slider size and handle placement;\n */\n.noUi-horizontal {\n\theight: 18px;\n}\n.noUi-horizontal .noUi-handle {\n\twidth: 34px;\n\theight: 28px;\n\tleft: -17px;\n\ttop: -6px;\n}\n.noUi-horizontal.noUi-extended {\n\tpadding: 0 15px;\n}\n.noUi-horizontal.noUi-extended .noUi-origin  {\n\tright: -15px;\n}\n.noUi-vertical {\n\twidth: 18px;\n}\n.noUi-vertical .noUi-handle {\n\twidth: 28px;\n\theight: 34px;\n\tleft: -6px;\n\ttop: -17px;\n}\n.noUi-vertical.noUi-extended {\n\tpadding: 15px 0;\n}\n.noUi-vertical.noUi-extended .noUi-origin  {\n\tbottom: -15px;\n}\n\n/* Styling;\n */\n.noUi-background {\n\tbackground: #FAFAFA;\n\tbox-shadow: inset 0 1px 1px #f0f0f0;\n}\n.noUi-connect {\n\tbackground: #3FB8AF;\n\tbox-shadow: inset 0 0 3px rgba(51,51,51,0.45);\n-webkit-transition: background 450ms;\n\ttransition: background 450ms;\n}\n.noUi-origin {\n\tborder-radius: 2px;\n}\n.noUi-target {\n\tborder-radius: 4px;\n\tborder: 1px solid #D3D3D3;\n\tbox-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;\n}\n.noUi-target.noUi-connect {\n\tbox-shadow: inset 0 0 3px rgba(51,51,51,0.45), 0 3px 6px -5px #BBB;\n}\n\n/* Handles and cursors;\n */\n.noUi-dragable {\n\tcursor: w-resize;\n}\n.noUi-vertical .noUi-dragable {\n\tcursor: n-resize;\n}\n.noUi-handle {\n\tborder: 1px solid #D9D9D9;\n\tborder-radius: 3px;\n\tbackground: #FFF;\n\tcursor: default;\n\tbox-shadow: inset 0 0 1px #FFF,\n\t\t\t\tinset 0 1px 7px #EBEBEB,\n\t\t\t\t0 3px 6px -3px #BBB;\n}\n.noUi-active {\n\tbox-shadow: inset 0 0 1px #FFF,\n\t\t\t\tinset 0 1px 7px #DDD,\n\t\t\t\t0 3px 6px -3px #BBB;\n}\n\n/* Handle stripes;\n */\n.noUi-handle:before,\n.noUi-handle:after {\n\tcontent: \"\";\n\tdisplay: block;\n\tposition: absolute;\n\theight: 14px;\n\twidth: 1px;\n\tbackground: #E8E7E6;\n\tleft: 14px;\n\ttop: 6px;\n}\n.noUi-handle:after {\n\tleft: 17px;\n}\n.noUi-vertical .noUi-handle:before,\n.noUi-vertical .noUi-handle:after {\n\twidth: 14px;\n\theight: 1px;\n\tleft: 6px;\n\ttop: 14px;\n}\n.noUi-vertical .noUi-handle:after {\n\ttop: 17px;\n}\n\n/* Disabled state;\n */\n[disabled].noUi-connect,\n[disabled] .noUi-connect {\n\tbackground: #B8B8B8;\n}\n[disabled] .noUi-handle {\n\tcursor: not-allowed;\n}\n"
  },
  {
    "path": "public/admin/css/plugins/social-buttons/social-buttons.css",
    "content": "@import url(//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css);\n/*\n * Social Buttons for Bootstrap\n *\n * Copyright 2013 Panayiotis Lipiridis\n * Licensed under the MIT License\n *\n * https://github.com/lipis/bootstrap-social\n */\n\n.btn-social{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.btn-social :first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}\n.btn-social.btn-lg{padding-left:61px}.btn-social.btn-lg :first-child{line-height:45px;width:45px;font-size:1.8em}\n.btn-social.btn-sm{padding-left:38px}.btn-social.btn-sm :first-child{line-height:28px;width:28px;font-size:1.4em}\n.btn-social.btn-xs{padding-left:30px}.btn-social.btn-xs :first-child{line-height:20px;width:20px;font-size:1.2em}\n.btn-social-icon{position:relative;padding-left:44px;text-align:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;height:34px;width:34px;padding-left:0;padding-right:0}.btn-social-icon :first-child{position:absolute;left:0;top:0;bottom:0;width:32px;line-height:34px;font-size:1.6em;text-align:center;border-right:1px solid rgba(0,0,0,0.2)}\n.btn-social-icon.btn-lg{padding-left:61px}.btn-social-icon.btn-lg :first-child{line-height:45px;width:45px;font-size:1.8em}\n.btn-social-icon.btn-sm{padding-left:38px}.btn-social-icon.btn-sm :first-child{line-height:28px;width:28px;font-size:1.4em}\n.btn-social-icon.btn-xs{padding-left:30px}.btn-social-icon.btn-xs :first-child{line-height:20px;width:20px;font-size:1.2em}\n.btn-social-icon :first-child{border:none;text-align:center;width:100% !important}\n.btn-social-icon.btn-lg{height:45px;width:45px;padding-left:0;padding-right:0}\n.btn-social-icon.btn-sm{height:30px;width:30px;padding-left:0;padding-right:0}\n.btn-social-icon.btn-xs{height:22px;width:22px;padding-left:0;padding-right:0}\n.btn-bitbucket{color:#fff;background-color:#205081;border-color:rgba(0,0,0,0.2)}.btn-bitbucket:hover,.btn-bitbucket:focus,.btn-bitbucket:active,.btn-bitbucket.active,.open .dropdown-toggle.btn-bitbucket{color:#fff;background-color:#183c60;border-color:rgba(0,0,0,0.2)}\n.btn-bitbucket:active,.btn-bitbucket.active,.open .dropdown-toggle.btn-bitbucket{background-image:none}\n.btn-bitbucket.disabled,.btn-bitbucket[disabled],fieldset[disabled] .btn-bitbucket,.btn-bitbucket.disabled:hover,.btn-bitbucket[disabled]:hover,fieldset[disabled] .btn-bitbucket:hover,.btn-bitbucket.disabled:focus,.btn-bitbucket[disabled]:focus,fieldset[disabled] .btn-bitbucket:focus,.btn-bitbucket.disabled:active,.btn-bitbucket[disabled]:active,fieldset[disabled] .btn-bitbucket:active,.btn-bitbucket.disabled.active,.btn-bitbucket[disabled].active,fieldset[disabled] .btn-bitbucket.active{background-color:#205081;border-color:rgba(0,0,0,0.2)}\n.btn-dropbox{color:#fff;background-color:#1087dd;border-color:rgba(0,0,0,0.2)}.btn-dropbox:hover,.btn-dropbox:focus,.btn-dropbox:active,.btn-dropbox.active,.open .dropdown-toggle.btn-dropbox{color:#fff;background-color:#0d70b7;border-color:rgba(0,0,0,0.2)}\n.btn-dropbox:active,.btn-dropbox.active,.open .dropdown-toggle.btn-dropbox{background-image:none}\n.btn-dropbox.disabled,.btn-dropbox[disabled],fieldset[disabled] .btn-dropbox,.btn-dropbox.disabled:hover,.btn-dropbox[disabled]:hover,fieldset[disabled] .btn-dropbox:hover,.btn-dropbox.disabled:focus,.btn-dropbox[disabled]:focus,fieldset[disabled] .btn-dropbox:focus,.btn-dropbox.disabled:active,.btn-dropbox[disabled]:active,fieldset[disabled] .btn-dropbox:active,.btn-dropbox.disabled.active,.btn-dropbox[disabled].active,fieldset[disabled] .btn-dropbox.active{background-color:#1087dd;border-color:rgba(0,0,0,0.2)}\n.btn-facebook{color:#fff;background-color:#3b5998;border-color:rgba(0,0,0,0.2)}.btn-facebook:hover,.btn-facebook:focus,.btn-facebook:active,.btn-facebook.active,.open .dropdown-toggle.btn-facebook{color:#fff;background-color:#30487b;border-color:rgba(0,0,0,0.2)}\n.btn-facebook:active,.btn-facebook.active,.open .dropdown-toggle.btn-facebook{background-image:none}\n.btn-facebook.disabled,.btn-facebook[disabled],fieldset[disabled] .btn-facebook,.btn-facebook.disabled:hover,.btn-facebook[disabled]:hover,fieldset[disabled] .btn-facebook:hover,.btn-facebook.disabled:focus,.btn-facebook[disabled]:focus,fieldset[disabled] .btn-facebook:focus,.btn-facebook.disabled:active,.btn-facebook[disabled]:active,fieldset[disabled] .btn-facebook:active,.btn-facebook.disabled.active,.btn-facebook[disabled].active,fieldset[disabled] .btn-facebook.active{background-color:#3b5998;border-color:rgba(0,0,0,0.2)}\n.btn-flickr{color:#fff;background-color:#ff0084;border-color:rgba(0,0,0,0.2)}.btn-flickr:hover,.btn-flickr:focus,.btn-flickr:active,.btn-flickr.active,.open .dropdown-toggle.btn-flickr{color:#fff;background-color:#d6006f;border-color:rgba(0,0,0,0.2)}\n.btn-flickr:active,.btn-flickr.active,.open .dropdown-toggle.btn-flickr{background-image:none}\n.btn-flickr.disabled,.btn-flickr[disabled],fieldset[disabled] .btn-flickr,.btn-flickr.disabled:hover,.btn-flickr[disabled]:hover,fieldset[disabled] .btn-flickr:hover,.btn-flickr.disabled:focus,.btn-flickr[disabled]:focus,fieldset[disabled] .btn-flickr:focus,.btn-flickr.disabled:active,.btn-flickr[disabled]:active,fieldset[disabled] .btn-flickr:active,.btn-flickr.disabled.active,.btn-flickr[disabled].active,fieldset[disabled] .btn-flickr.active{background-color:#ff0084;border-color:rgba(0,0,0,0.2)}\n.btn-github{color:#fff;background-color:#444;border-color:rgba(0,0,0,0.2)}.btn-github:hover,.btn-github:focus,.btn-github:active,.btn-github.active,.open .dropdown-toggle.btn-github{color:#fff;background-color:#303030;border-color:rgba(0,0,0,0.2)}\n.btn-github:active,.btn-github.active,.open .dropdown-toggle.btn-github{background-image:none}\n.btn-github.disabled,.btn-github[disabled],fieldset[disabled] .btn-github,.btn-github.disabled:hover,.btn-github[disabled]:hover,fieldset[disabled] .btn-github:hover,.btn-github.disabled:focus,.btn-github[disabled]:focus,fieldset[disabled] .btn-github:focus,.btn-github.disabled:active,.btn-github[disabled]:active,fieldset[disabled] .btn-github:active,.btn-github.disabled.active,.btn-github[disabled].active,fieldset[disabled] .btn-github.active{background-color:#444;border-color:rgba(0,0,0,0.2)}\n.btn-google-plus{color:#fff;background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}.btn-google-plus:hover,.btn-google-plus:focus,.btn-google-plus:active,.btn-google-plus.active,.open .dropdown-toggle.btn-google-plus{color:#fff;background-color:#ca3523;border-color:rgba(0,0,0,0.2)}\n.btn-google-plus:active,.btn-google-plus.active,.open .dropdown-toggle.btn-google-plus{background-image:none}\n.btn-google-plus.disabled,.btn-google-plus[disabled],fieldset[disabled] .btn-google-plus,.btn-google-plus.disabled:hover,.btn-google-plus[disabled]:hover,fieldset[disabled] .btn-google-plus:hover,.btn-google-plus.disabled:focus,.btn-google-plus[disabled]:focus,fieldset[disabled] .btn-google-plus:focus,.btn-google-plus.disabled:active,.btn-google-plus[disabled]:active,fieldset[disabled] .btn-google-plus:active,.btn-google-plus.disabled.active,.btn-google-plus[disabled].active,fieldset[disabled] .btn-google-plus.active{background-color:#dd4b39;border-color:rgba(0,0,0,0.2)}\n.btn-instagram{color:#fff;background-color:#517fa4;border-color:rgba(0,0,0,0.2)}.btn-instagram:hover,.btn-instagram:focus,.btn-instagram:active,.btn-instagram.active,.open .dropdown-toggle.btn-instagram{color:#fff;background-color:#446a89;border-color:rgba(0,0,0,0.2)}\n.btn-instagram:active,.btn-instagram.active,.open .dropdown-toggle.btn-instagram{background-image:none}\n.btn-instagram.disabled,.btn-instagram[disabled],fieldset[disabled] .btn-instagram,.btn-instagram.disabled:hover,.btn-instagram[disabled]:hover,fieldset[disabled] .btn-instagram:hover,.btn-instagram.disabled:focus,.btn-instagram[disabled]:focus,fieldset[disabled] .btn-instagram:focus,.btn-instagram.disabled:active,.btn-instagram[disabled]:active,fieldset[disabled] .btn-instagram:active,.btn-instagram.disabled.active,.btn-instagram[disabled].active,fieldset[disabled] .btn-instagram.active{background-color:#517fa4;border-color:rgba(0,0,0,0.2)}\n.btn-linkedin{color:#fff;background-color:#007bb6;border-color:rgba(0,0,0,0.2)}.btn-linkedin:hover,.btn-linkedin:focus,.btn-linkedin:active,.btn-linkedin.active,.open .dropdown-toggle.btn-linkedin{color:#fff;background-color:#005f8d;border-color:rgba(0,0,0,0.2)}\n.btn-linkedin:active,.btn-linkedin.active,.open .dropdown-toggle.btn-linkedin{background-image:none}\n.btn-linkedin.disabled,.btn-linkedin[disabled],fieldset[disabled] .btn-linkedin,.btn-linkedin.disabled:hover,.btn-linkedin[disabled]:hover,fieldset[disabled] .btn-linkedin:hover,.btn-linkedin.disabled:focus,.btn-linkedin[disabled]:focus,fieldset[disabled] .btn-linkedin:focus,.btn-linkedin.disabled:active,.btn-linkedin[disabled]:active,fieldset[disabled] .btn-linkedin:active,.btn-linkedin.disabled.active,.btn-linkedin[disabled].active,fieldset[disabled] .btn-linkedin.active{background-color:#007bb6;border-color:rgba(0,0,0,0.2)}\n.btn-pinterest{color:#fff;background-color:#cb2027;border-color:rgba(0,0,0,0.2)}.btn-pinterest:hover,.btn-pinterest:focus,.btn-pinterest:active,.btn-pinterest.active,.open .dropdown-toggle.btn-pinterest{color:#fff;background-color:#a81a20;border-color:rgba(0,0,0,0.2)}\n.btn-pinterest:active,.btn-pinterest.active,.open .dropdown-toggle.btn-pinterest{background-image:none}\n.btn-pinterest.disabled,.btn-pinterest[disabled],fieldset[disabled] .btn-pinterest,.btn-pinterest.disabled:hover,.btn-pinterest[disabled]:hover,fieldset[disabled] .btn-pinterest:hover,.btn-pinterest.disabled:focus,.btn-pinterest[disabled]:focus,fieldset[disabled] .btn-pinterest:focus,.btn-pinterest.disabled:active,.btn-pinterest[disabled]:active,fieldset[disabled] .btn-pinterest:active,.btn-pinterest.disabled.active,.btn-pinterest[disabled].active,fieldset[disabled] .btn-pinterest.active{background-color:#cb2027;border-color:rgba(0,0,0,0.2)}\n.btn-tumblr{color:#fff;background-color:#2c4762;border-color:rgba(0,0,0,0.2)}.btn-tumblr:hover,.btn-tumblr:focus,.btn-tumblr:active,.btn-tumblr.active,.open .dropdown-toggle.btn-tumblr{color:#fff;background-color:#1f3346;border-color:rgba(0,0,0,0.2)}\n.btn-tumblr:active,.btn-tumblr.active,.open .dropdown-toggle.btn-tumblr{background-image:none}\n.btn-tumblr.disabled,.btn-tumblr[disabled],fieldset[disabled] .btn-tumblr,.btn-tumblr.disabled:hover,.btn-tumblr[disabled]:hover,fieldset[disabled] .btn-tumblr:hover,.btn-tumblr.disabled:focus,.btn-tumblr[disabled]:focus,fieldset[disabled] .btn-tumblr:focus,.btn-tumblr.disabled:active,.btn-tumblr[disabled]:active,fieldset[disabled] .btn-tumblr:active,.btn-tumblr.disabled.active,.btn-tumblr[disabled].active,fieldset[disabled] .btn-tumblr.active{background-color:#2c4762;border-color:rgba(0,0,0,0.2)}\n.btn-twitter{color:#fff;background-color:#2ba9e1;border-color:rgba(0,0,0,0.2)}.btn-twitter:hover,.btn-twitter:focus,.btn-twitter:active,.btn-twitter.active,.open .dropdown-toggle.btn-twitter{color:#fff;background-color:#1c92c7;border-color:rgba(0,0,0,0.2)}\n.btn-twitter:active,.btn-twitter.active,.open .dropdown-toggle.btn-twitter{background-image:none}\n.btn-twitter.disabled,.btn-twitter[disabled],fieldset[disabled] .btn-twitter,.btn-twitter.disabled:hover,.btn-twitter[disabled]:hover,fieldset[disabled] .btn-twitter:hover,.btn-twitter.disabled:focus,.btn-twitter[disabled]:focus,fieldset[disabled] .btn-twitter:focus,.btn-twitter.disabled:active,.btn-twitter[disabled]:active,fieldset[disabled] .btn-twitter:active,.btn-twitter.disabled.active,.btn-twitter[disabled].active,fieldset[disabled] .btn-twitter.active{background-color:#2ba9e1;border-color:rgba(0,0,0,0.2)}\n.btn-vk{color:#fff;background-color:#587ea3;border-color:rgba(0,0,0,0.2)}.btn-vk:hover,.btn-vk:focus,.btn-vk:active,.btn-vk.active,.open .dropdown-toggle.btn-vk{color:#fff;background-color:#4a6a89;border-color:rgba(0,0,0,0.2)}\n.btn-vk:active,.btn-vk.active,.open .dropdown-toggle.btn-vk{background-image:none}\n.btn-vk.disabled,.btn-vk[disabled],fieldset[disabled] .btn-vk,.btn-vk.disabled:hover,.btn-vk[disabled]:hover,fieldset[disabled] .btn-vk:hover,.btn-vk.disabled:focus,.btn-vk[disabled]:focus,fieldset[disabled] .btn-vk:focus,.btn-vk.disabled:active,.btn-vk[disabled]:active,fieldset[disabled] .btn-vk:active,.btn-vk.disabled.active,.btn-vk[disabled].active,fieldset[disabled] .btn-vk.active{background-color:#587ea3;border-color:rgba(0,0,0,0.2)}\n\n\n/* \n * Only for this example - not needed for the buttons\n * ----------------------------------------------------- */\n.btn-social-icon {margin-bottom: 4px;}\n.social-class .social-hex{font-family:Monaco,Menlo,Consolas,\"Courier New\",monospace;font-size:10px;opacity:.3;float:right}\n.social-class li{margin-bottom:4px}.social-class li:hover .social-hex{opacity:1}\n.social-class li:hover code{background-color:#e8e8ee}\n.social-class code{cursor:default}"
  },
  {
    "path": "public/admin/css/plugins/steps/jquery.steps.css",
    "content": "/*\n    Common\n*/\n\n.wizard,\n.tabcontrol\n{\n    display: block;\n    width: 100%;\n    overflow: hidden;\n}\n\n.wizard a,\n.tabcontrol a\n{\n    outline: 0;\n}\n\n.wizard ul,\n.tabcontrol ul\n{\n    list-style: none !important;\n    padding: 0;\n    margin: 0;\n}\n\n.wizard ul > li,\n.tabcontrol ul > li\n{\n    display: block;\n    padding: 0;\n}\n\n/* Accessibility */\n.wizard > .steps .current-info,\n.tabcontrol > .steps .current-info\n{\n    position: absolute;\n    left: -999em;\n}\n\n.wizard > .content > .title,\n.tabcontrol > .content > .title\n{\n    position: absolute;\n    left: -999em;\n}\n\n\n\n/*\n    Wizard\n*/\n\n.wizard > .steps\n{\n    position: relative;\n    display: block;\n    width: 100%;\n}\n\n.wizard.vertical > .steps\n{\n    display: inline;\n    float: left;\n    width: 30%;\n}\n\n.wizard > .steps > ul > li\n{\n    width: 25%;\n}\n\n.wizard > .steps > ul > li,\n.wizard > .actions > ul > li\n{\n    float: left;\n}\n\n.wizard.vertical > .steps > ul > li\n{\n    float: none;\n    width: 100%;\n}\n\n.wizard > .steps a,\n.wizard > .steps a:hover,\n.wizard > .steps a:active\n{\n    display: block;\n    width: auto;\n    margin: 0 0.5em 0.5em;\n    padding: 8px;\n    text-decoration: none;\n\n    -webkit-border-radius: 5px;\n    -moz-border-radius: 5px;\n    border-radius: 5px;\n}\n\n.wizard > .steps .disabled a,\n.wizard > .steps .disabled a:hover,\n.wizard > .steps .disabled a:active\n{\n    background: #eee;\n    color: #aaa;\n    cursor: default;\n}\n\n.wizard > .steps .current a,\n.wizard > .steps .current a:hover,\n.wizard > .steps .current a:active\n{\n    background: #1AB394;\n    color: #fff;\n    cursor: default;\n}\n\n.wizard > .steps .done a,\n.wizard > .steps .done a:hover,\n.wizard > .steps .done a:active\n{\n    background: #6fd1bd;\n    color: #fff;\n}\n\n.wizard > .steps .error a,\n.wizard > .steps .error a:hover,\n.wizard > .steps .error a:active\n{\n    background: #ED5565 ;\n    color: #fff;\n}\n\n.wizard > .content\n{\n    background: #eee;\n    display: block;\n    margin: 5px 5px 10px 5px;\n    min-height: 120px;\n    overflow: hidden;\n    position: relative;\n    width: auto;\n\n    -webkit-border-radius: 5px;\n    -moz-border-radius: 5px;\n    border-radius: 5px;\n}\n\n.wizard-big.wizard > .content {\n    min-height: 320px;\n}\n.wizard.vertical > .content\n{\n    display: inline;\n    float: left;\n    margin: 0 2.5% 0.5em 2.5%;\n    width: 65%;\n}\n\n.wizard > .content > .body\n{\n    float: left;\n    position: absolute;\n    width: 95%;\n    height: 95%;\n    padding: 2.5%;\n}\n\n.wizard > .content > .body ul\n{\n    list-style: disc !important;\n}\n\n.wizard > .content > .body ul > li\n{\n    display: list-item;\n}\n\n.wizard > .content > .body > iframe\n{\n    border: 0 none;\n    width: 100%;\n    height: 100%;\n}\n\n.wizard > .content > .body input\n{\n    display: block;\n    border: 1px solid #ccc;\n}\n\n.wizard > .content > .body input[type=\"checkbox\"]\n{\n    display: inline-block;\n}\n\n.wizard > .content > .body input.error\n{\n    background: rgb(251, 227, 228);\n    border: 1px solid #fbc2c4;\n    color: #8a1f11;\n}\n\n.wizard > .content > .body label\n{\n    display: inline-block;\n    margin-bottom: 0.5em;\n}\n\n.wizard > .content > .body label.error\n{\n    color: #8a1f11;\n    display: inline-block;\n    margin-left: 1.5em;\n}\n\n.wizard > .actions\n{\n    position: relative;\n    display: block;\n    text-align: right;\n    width: 100%;\n}\n\n.wizard.vertical > .actions\n{\n    display: inline;\n    float: right;\n    margin: 0 2.5%;\n    width: 95%;\n}\n\n.wizard > .actions > ul\n{\n    display: inline-block;\n    text-align: right;\n}\n\n.wizard > .actions > ul > li\n{\n    margin: 0 0.5em;\n}\n\n.wizard.vertical > .actions > ul > li\n{\n    margin: 0 0 0 1em;\n}\n\n.wizard > .actions a,\n.wizard > .actions a:hover,\n.wizard > .actions a:active\n{\n    background: #1AB394;\n    color: #fff;\n    display: block;\n    padding: 0.5em 1em;\n    text-decoration: none;\n\n    -webkit-border-radius: 5px;\n    -moz-border-radius: 5px;\n    border-radius: 5px;\n}\n\n.wizard > .actions .disabled a,\n.wizard > .actions .disabled a:hover,\n.wizard > .actions .disabled a:active\n{\n    background: #eee;\n    color: #aaa;\n}\n\n.wizard > .loading\n{\n}\n\n.wizard > .loading .spinner\n{\n}\n\n\n\n/*\n    Tabcontrol\n*/\n\n.tabcontrol > .steps\n{\n    position: relative;\n    display: block;\n    width: 100%;\n}\n\n.tabcontrol > .steps > ul\n{\n    position: relative;\n    margin: 6px 0 0 0;\n    top: 1px;\n    z-index: 1;\n}\n\n.tabcontrol > .steps > ul > li\n{\n    float: left;\n    margin: 5px 2px 0 0;\n    padding: 1px;\n\n    -webkit-border-top-left-radius: 5px;\n    -webkit-border-top-right-radius: 5px;\n    -moz-border-radius-topleft: 5px;\n    -moz-border-radius-topright: 5px;\n    border-top-left-radius: 5px;\n    border-top-right-radius: 5px;\n}\n\n.tabcontrol > .steps > ul > li:hover\n{\n    background: #edecec;\n    border: 1px solid #bbb;\n    padding: 0;\n}\n\n.tabcontrol > .steps > ul > li.current\n{\n    background: #fff;\n    border: 1px solid #bbb;\n    border-bottom: 0 none;\n    padding: 0 0 1px 0;\n    margin-top: 0;\n}\n\n.tabcontrol > .steps > ul > li > a\n{\n    color: #5f5f5f;\n    display: inline-block;\n    border: 0 none;\n    margin: 0;\n    padding: 10px 30px;\n    text-decoration: none;\n}\n\n.tabcontrol > .steps > ul > li > a:hover\n{\n    text-decoration: none;\n}\n\n.tabcontrol > .steps > ul > li.current > a\n{\n    padding: 15px 30px 10px 30px;\n}\n\n.tabcontrol > .content\n{\n    position: relative;\n    display: inline-block;\n    width: 100%;\n    height: 35em;\n    overflow: hidden;\n    border-top: 1px solid #bbb;\n    padding-top: 20px;\n}\n\n.tabcontrol > .content > .body\n{\n    float: left;\n    position: absolute;\n    width: 95%;\n    height: 95%;\n    padding: 2.5%;\n}\n\n.tabcontrol > .content > .body ul\n{\n    list-style: disc !important;\n}\n\n.tabcontrol > .content > .body ul > li\n{\n    display: list-item;\n}"
  },
  {
    "path": "public/admin/css/plugins/summernote/summernote-bs3.css",
    "content": ".note-editor {\n  /*! normalize.css v2.1.3 | MIT License | git.io/normalize */\n\n}\n.note-editor article,\n.note-editor aside,\n.note-editor details,\n.note-editor figcaption,\n.note-editor figure,\n.note-editor footer,\n.note-editor header,\n.note-editor hgroup,\n.note-editor main,\n.note-editor nav,\n.note-editor section,\n.note-editor summary {\n  display: block;\n}\n.note-editor audio,\n.note-editor canvas,\n.note-editor video {\n  display: inline-block;\n}\n.note-editor audio:not([controls]) {\n  display: none;\n  height: 0;\n}\n.note-editor [hidden],\n.note-editor template {\n  display: none;\n}\n.note-editor html {\n  font-family: sans-serif;\n  -ms-text-size-adjust: 100%;\n  -webkit-text-size-adjust: 100%;\n}\n.note-editor body {\n  margin: 0;\n}\n.note-editor a {\n  background: transparent;\n}\n.note-editor a:focus {\n  outline: thin dotted;\n}\n.note-editor a:active,\n.note-editor a:hover {\n  outline: 0;\n}\n.note-editor h1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n.note-editor abbr[title] {\n  border-bottom: 1px dotted;\n}\n.note-editor b,\n.note-editor strong {\n  font-weight: bold;\n}\n.note-editor dfn {\n  font-style: italic;\n}\n.note-editor hr {\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n  height: 0;\n}\n.note-editor mark {\n  background: #ff0;\n  color: #000;\n}\n.note-editor code,\n.note-editor kbd,\n.note-editor pre,\n.note-editor samp {\n  font-family: monospace, serif;\n  font-size: 1em;\n}\n.note-editor pre {\n  white-space: pre-wrap;\n}\n.note-editor q {\n  quotes: \"\\201C\" \"\\201D\" \"\\2018\" \"\\2019\";\n}\n.note-editor small {\n  font-size: 80%;\n}\n.note-editor sub,\n.note-editor sup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n.note-editor sup {\n  top: -0.5em;\n}\n.note-editor sub {\n  bottom: -0.25em;\n}\n.note-editor img {\n  border: 0;\n}\n.note-editor svg:not(:root) {\n  overflow: hidden;\n}\n.note-editor figure {\n  margin: 0;\n}\n.note-editor fieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n.note-editor legend {\n  border: 0;\n  padding: 0;\n}\n.note-editor button,\n.note-editor input,\n.note-editor select,\n.note-editor textarea {\n  font-family: inherit;\n  font-size: 100%;\n  margin: 0;\n}\n.note-editor button,\n.note-editor input {\n  line-height: normal;\n}\n.note-editor button,\n.note-editor select {\n  text-transform: none;\n}\n.note-editor button,\n.note-editor html input[type=\"button\"],\n.note-editor input[type=\"reset\"],\n.note-editor input[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\n.note-editor button[disabled],\n.note-editor html input[disabled] {\n  cursor: default;\n}\n.note-editor input[type=\"checkbox\"],\n.note-editor input[type=\"radio\"] {\n  box-sizing: border-box;\n  padding: 0;\n}\n.note-editor input[type=\"search\"] {\n  -webkit-appearance: textfield;\n  -moz-box-sizing: content-box;\n  -webkit-box-sizing: content-box;\n  box-sizing: content-box;\n}\n.note-editor input[type=\"search\"]::-webkit-search-cancel-button,\n.note-editor input[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n.note-editor button::-moz-focus-inner,\n.note-editor input::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n.note-editor textarea {\n  overflow: auto;\n  vertical-align: top;\n}\n.note-editor table {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n@media print {\n  .note-editor * {\n    text-shadow: none !important;\n    color: #000 !important;\n    background: transparent !important;\n    box-shadow: none !important;\n  }\n  .note-editor a,\n  .note-editor a:visited {\n    text-decoration: underline;\n  }\n  .note-editor a[href]:after {\n    content: \" (\" attr(href) \")\";\n  }\n  .note-editor abbr[title]:after {\n    content: \" (\" attr(title) \")\";\n  }\n  .note-editor .ir a:after,\n  .note-editor a[href^=\"javascript:\"]:after,\n  .note-editor a[href^=\"#\"]:after {\n    content: \"\";\n  }\n  .note-editor pre,\n  .note-editor blockquote {\n    border: 1px solid #999;\n    page-break-inside: avoid;\n  }\n  .note-editor thead {\n    display: table-header-group;\n  }\n  .note-editor tr,\n  .note-editor img {\n    page-break-inside: avoid;\n  }\n  .note-editor img {\n    max-width: 100% !important;\n  }\n  @page  {\n    margin: 2cm .5cm;\n  }\n  .note-editor p,\n  .note-editor h2,\n  .note-editor h3 {\n    orphans: 3;\n    widows: 3;\n  }\n  .note-editor h2,\n  .note-editor h3 {\n    page-break-after: avoid;\n  }\n  .note-editor .navbar {\n    display: none;\n  }\n  .note-editor .table td,\n  .note-editor .table th {\n    background-color: #fff !important;\n  }\n  .note-editor .btn > .caret,\n  .note-editor .dropup > .btn > .caret {\n    border-top-color: #000 !important;\n  }\n  .note-editor .label {\n    border: 1px solid #000;\n  }\n  .note-editor .table {\n    border-collapse: collapse !important;\n  }\n  .note-editor .table-bordered th,\n  .note-editor .table-bordered td {\n    border: 1px solid #ddd !important;\n  }\n}\n.note-editor *,\n.note-editor *:before,\n.note-editor *:after {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\n.note-editor html {\n  font-size: 62.5%;\n  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n.note-editor body {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-size: 14px;\n  line-height: 1.428571429;\n  color: #333333;\n  background-color: #ffffff;\n}\n.note-editor input,\n.note-editor button,\n.note-editor select,\n.note-editor textarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n.note-editor a {\n  color: #428bca;\n  text-decoration: none;\n}\n.note-editor a:hover,\n.note-editor a:focus {\n  color: #2a6496;\n  text-decoration: underline;\n}\n.note-editor a:focus {\n  outline: thin dotted #333;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n.note-editor img {\n  vertical-align: middle;\n}\n.note-editor .img-responsive {\n  display: block;\n  max-width: 100%;\n  height: auto;\n}\n.note-editor .img-rounded {\n  border-radius: 6px;\n}\n.note-editor .img-thumbnail {\n  padding: 4px;\n  line-height: 1.428571429;\n  background-color: #ffffff;\n  border: 1px solid #dddddd;\n  border-radius: 4px;\n  -webkit-transition: all 0.2s ease-in-out;\n  transition: all 0.2s ease-in-out;\n  display: inline-block;\n  max-width: 100%;\n  height: auto;\n}\n.note-editor .img-circle {\n  border-radius: 50%;\n}\n.note-editor hr {\n  margin-top: 20px;\n  margin-bottom: 20px;\n  border: 0;\n  border-top: 1px solid #eeeeee;\n}\n.note-editor .sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.note-editor p {\n  margin: 0 0 10px;\n}\n.note-editor .lead {\n  margin-bottom: 20px;\n  font-size: 16px;\n  font-weight: 200;\n  line-height: 1.4;\n}\n@media (min-width: 768px) {\n  .note-editor .lead {\n    font-size: 21px;\n  }\n}\n.note-editor small,\n.note-editor .small {\n  font-size: 85%;\n}\n.note-editor cite {\n  font-style: normal;\n}\n.note-editor .text-muted {\n  color: #999999;\n}\n.note-editor .text-primary {\n  color: #428bca;\n}\n.note-editor .text-primary:hover {\n  color: #3071a9;\n}\n.note-editor .text-warning {\n  color: #c09853;\n}\n.note-editor .text-warning:hover {\n  color: #a47e3c;\n}\n.note-editor .text-danger {\n  color: #b94a48;\n}\n.note-editor .text-danger:hover {\n  color: #953b39;\n}\n.note-editor .text-success {\n  color: #468847;\n}\n.note-editor .text-success:hover {\n  color: #356635;\n}\n.note-editor .text-info {\n  color: #3a87ad;\n}\n.note-editor .text-info:hover {\n  color: #2d6987;\n}\n.note-editor .text-left {\n  text-align: left;\n}\n.note-editor .text-right {\n  text-align: right;\n}\n.note-editor .text-center {\n  text-align: center;\n}\n.note-editor h1,\n.note-editor h2,\n.note-editor h3,\n.note-editor h4,\n.note-editor h5,\n.note-editor h6,\n.note-editor .h1,\n.note-editor .h2,\n.note-editor .h3,\n.note-editor .h4,\n.note-editor .h5,\n.note-editor .h6 {\n  font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  font-weight: 500;\n  line-height: 1.1;\n  color: inherit;\n}\n.note-editor h1 small,\n.note-editor h2 small,\n.note-editor h3 small,\n.note-editor h4 small,\n.note-editor h5 small,\n.note-editor h6 small,\n.note-editor .h1 small,\n.note-editor .h2 small,\n.note-editor .h3 small,\n.note-editor .h4 small,\n.note-editor .h5 small,\n.note-editor .h6 small,\n.note-editor h1 .small,\n.note-editor h2 .small,\n.note-editor h3 .small,\n.note-editor h4 .small,\n.note-editor h5 .small,\n.note-editor h6 .small,\n.note-editor .h1 .small,\n.note-editor .h2 .small,\n.note-editor .h3 .small,\n.note-editor .h4 .small,\n.note-editor .h5 .small,\n.note-editor .h6 .small {\n  font-weight: normal;\n  line-height: 1;\n  color: #999999;\n}\n.note-editor h1,\n.note-editor h2,\n.note-editor h3 {\n  margin-top: 20px;\n  margin-bottom: 10px;\n}\n.note-editor h1 small,\n.note-editor h2 small,\n.note-editor h3 small,\n.note-editor h1 .small,\n.note-editor h2 .small,\n.note-editor h3 .small {\n  font-size: 65%;\n}\n.note-editor h4,\n.note-editor h5,\n.note-editor h6 {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.note-editor h4 small,\n.note-editor h5 small,\n.note-editor h6 small,\n.note-editor h4 .small,\n.note-editor h5 .small,\n.note-editor h6 .small {\n  font-size: 75%;\n}\n.note-editor h1,\n.note-editor .h1 {\n  font-size: 36px;\n}\n.note-editor h2,\n.note-editor .h2 {\n  font-size: 30px;\n}\n.note-editor h3,\n.note-editor .h3 {\n  font-size: 24px;\n}\n.note-editor h4,\n.note-editor .h4 {\n  font-size: 18px;\n}\n.note-editor h5,\n.note-editor .h5 {\n  font-size: 14px;\n}\n.note-editor h6,\n.note-editor .h6 {\n  font-size: 12px;\n}\n.note-editor .page-header {\n  padding-bottom: 9px;\n  margin: 40px 0 20px;\n  border-bottom: 1px solid #eeeeee;\n}\n.note-editor ul,\n.note-editor ol {\n  margin-top: 0;\n  margin-bottom: 10px;\n}\n.note-editor ul ul,\n.note-editor ol ul,\n.note-editor ul ol,\n.note-editor ol ol {\n  margin-bottom: 0;\n}\n.note-editor .list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n.note-editor .list-inline {\n  padding-left: 0;\n  list-style: none;\n}\n.note-editor .list-inline > li {\n  display: inline-block;\n  padding-left: 5px;\n  padding-right: 5px;\n}\n.note-editor dl {\n  margin-bottom: 20px;\n}\n.note-editor dt,\n.note-editor dd {\n  line-height: 1.428571429;\n}\n.note-editor dt {\n  font-weight: bold;\n}\n.note-editor dd {\n  margin-left: 0;\n}\n@media (min-width: 768px) {\n  .note-editor .dl-horizontal dt {\n    float: left;\n    width: 160px;\n    clear: left;\n    text-align: right;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n  }\n  .note-editor .dl-horizontal dd {\n    margin-left: 180px;\n  }\n  .note-editor .dl-horizontal dd:before,\n  .note-editor .dl-horizontal dd:after {\n    content: \" \";\n    /* 1 */\n  \n    display: table;\n    /* 2 */\n  \n  }\n  .note-editor .dl-horizontal dd:after {\n    clear: both;\n  }\n  .note-editor .dl-horizontal dd:before,\n  .note-editor .dl-horizontal dd:after {\n    content: \" \";\n    /* 1 */\n  \n    display: table;\n    /* 2 */\n  \n  }\n  .note-editor .dl-horizontal dd:after {\n    clear: both;\n  }\n}\n.note-editor abbr[title],\n.note-editor abbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted #999999;\n}\n.note-editor abbr.initialism {\n  font-size: 90%;\n  text-transform: uppercase;\n}\n.note-editor blockquote {\n  padding: 10px 20px;\n  margin: 0 0 20px;\n  border-left: 5px solid #eeeeee;\n}\n.note-editor blockquote p {\n  font-size: 17.5px;\n  font-weight: 300;\n  line-height: 1.25;\n}\n.note-editor blockquote p:last-child {\n  margin-bottom: 0;\n}\n.note-editor blockquote small {\n  display: block;\n  line-height: 1.428571429;\n  color: #999999;\n}\n.note-editor blockquote small:before {\n  content: '\\2014 \\00A0';\n}\n.note-editor blockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid #eeeeee;\n  border-left: 0;\n}\n.note-editor blockquote.pull-right p,\n.note-editor blockquote.pull-right small,\n.note-editor blockquote.pull-right .small {\n  text-align: right;\n}\n.note-editor blockquote.pull-right small:before,\n.note-editor blockquote.pull-right .small:before {\n  content: '';\n}\n.note-editor blockquote.pull-right small:after,\n.note-editor blockquote.pull-right .small:after {\n  content: '\\00A0 \\2014';\n}\n.note-editor blockquote:before,\n.note-editor blockquote:after {\n  content: \"\";\n}\n.note-editor address {\n  margin-bottom: 20px;\n  font-style: normal;\n  line-height: 1.428571429;\n}\n.note-editor code,\n.note-editor kdb,\n.note-editor pre,\n.note-editor samp {\n  font-family: Monaco, Menlo, Consolas, \"Courier New\", monospace;\n}\n.note-editor code {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  white-space: nowrap;\n  border-radius: 4px;\n}\n.note-editor pre {\n  display: block;\n  padding: 9.5px;\n  margin: 0 0 10px;\n  font-size: 13px;\n  line-height: 1.428571429;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: #333333;\n  background-color: #f5f5f5;\n  border: 1px solid #cccccc;\n  border-radius: 4px;\n}\n.note-editor pre code {\n  padding: 0;\n  font-size: inherit;\n  color: inherit;\n  white-space: pre-wrap;\n  background-color: transparent;\n  border-radius: 0;\n}\n.note-editor .pre-scrollable {\n  max-height: 340px;\n  overflow-y: scroll;\n}\n.note-editor .container {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.note-editor .container:before,\n.note-editor .container:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .container:after {\n  clear: both;\n}\n.note-editor .container:before,\n.note-editor .container:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .container:after {\n  clear: both;\n}\n.note-editor .row {\n  margin-left: -15px;\n  margin-right: -15px;\n}\n.note-editor .row:before,\n.note-editor .row:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .row:after {\n  clear: both;\n}\n.note-editor .row:before,\n.note-editor .row:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .row:after {\n  clear: both;\n}\n.note-editor .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n  position: relative;\n  min-height: 1px;\n  padding-left: 15px;\n  padding-right: 15px;\n}\n.note-editor .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 {\n  float: left;\n}\n.note-editor .col-xs-12 {\n  width: 100%;\n}\n.note-editor .col-xs-11 {\n  width: 91.66666666666666%;\n}\n.note-editor .col-xs-10 {\n  width: 83.33333333333334%;\n}\n.note-editor .col-xs-9 {\n  width: 75%;\n}\n.note-editor .col-xs-8 {\n  width: 66.66666666666666%;\n}\n.note-editor .col-xs-7 {\n  width: 58.333333333333336%;\n}\n.note-editor .col-xs-6 {\n  width: 50%;\n}\n.note-editor .col-xs-5 {\n  width: 41.66666666666667%;\n}\n.note-editor .col-xs-4 {\n  width: 33.33333333333333%;\n}\n.note-editor .col-xs-3 {\n  width: 25%;\n}\n.note-editor .col-xs-2 {\n  width: 16.666666666666664%;\n}\n.note-editor .col-xs-1 {\n  width: 8.333333333333332%;\n}\n.note-editor .col-xs-pull-12 {\n  right: 100%;\n}\n.note-editor .col-xs-pull-11 {\n  right: 91.66666666666666%;\n}\n.note-editor .col-xs-pull-10 {\n  right: 83.33333333333334%;\n}\n.note-editor .col-xs-pull-9 {\n  right: 75%;\n}\n.note-editor .col-xs-pull-8 {\n  right: 66.66666666666666%;\n}\n.note-editor .col-xs-pull-7 {\n  right: 58.333333333333336%;\n}\n.note-editor .col-xs-pull-6 {\n  right: 50%;\n}\n.note-editor .col-xs-pull-5 {\n  right: 41.66666666666667%;\n}\n.note-editor .col-xs-pull-4 {\n  right: 33.33333333333333%;\n}\n.note-editor .col-xs-pull-3 {\n  right: 25%;\n}\n.note-editor .col-xs-pull-2 {\n  right: 16.666666666666664%;\n}\n.note-editor .col-xs-pull-1 {\n  right: 8.333333333333332%;\n}\n.note-editor .col-xs-push-12 {\n  left: 100%;\n}\n.note-editor .col-xs-push-11 {\n  left: 91.66666666666666%;\n}\n.note-editor .col-xs-push-10 {\n  left: 83.33333333333334%;\n}\n.note-editor .col-xs-push-9 {\n  left: 75%;\n}\n.note-editor .col-xs-push-8 {\n  left: 66.66666666666666%;\n}\n.note-editor .col-xs-push-7 {\n  left: 58.333333333333336%;\n}\n.note-editor .col-xs-push-6 {\n  left: 50%;\n}\n.note-editor .col-xs-push-5 {\n  left: 41.66666666666667%;\n}\n.note-editor .col-xs-push-4 {\n  left: 33.33333333333333%;\n}\n.note-editor .col-xs-push-3 {\n  left: 25%;\n}\n.note-editor .col-xs-push-2 {\n  left: 16.666666666666664%;\n}\n.note-editor .col-xs-push-1 {\n  left: 8.333333333333332%;\n}\n.note-editor .col-xs-offset-12 {\n  margin-left: 100%;\n}\n.note-editor .col-xs-offset-11 {\n  margin-left: 91.66666666666666%;\n}\n.note-editor .col-xs-offset-10 {\n  margin-left: 83.33333333333334%;\n}\n.note-editor .col-xs-offset-9 {\n  margin-left: 75%;\n}\n.note-editor .col-xs-offset-8 {\n  margin-left: 66.66666666666666%;\n}\n.note-editor .col-xs-offset-7 {\n  margin-left: 58.333333333333336%;\n}\n.note-editor .col-xs-offset-6 {\n  margin-left: 50%;\n}\n.note-editor .col-xs-offset-5 {\n  margin-left: 41.66666666666667%;\n}\n.note-editor .col-xs-offset-4 {\n  margin-left: 33.33333333333333%;\n}\n.note-editor .col-xs-offset-3 {\n  margin-left: 25%;\n}\n.note-editor .col-xs-offset-2 {\n  margin-left: 16.666666666666664%;\n}\n.note-editor .col-xs-offset-1 {\n  margin-left: 8.333333333333332%;\n}\n@media (min-width: 768px) {\n  .note-editor .container {\n    width: 750px;\n  }\n  .note-editor .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11 {\n    float: left;\n  }\n  .note-editor .col-sm-12 {\n    width: 100%;\n  }\n  .note-editor .col-sm-11 {\n    width: 91.66666666666666%;\n  }\n  .note-editor .col-sm-10 {\n    width: 83.33333333333334%;\n  }\n  .note-editor .col-sm-9 {\n    width: 75%;\n  }\n  .note-editor .col-sm-8 {\n    width: 66.66666666666666%;\n  }\n  .note-editor .col-sm-7 {\n    width: 58.333333333333336%;\n  }\n  .note-editor .col-sm-6 {\n    width: 50%;\n  }\n  .note-editor .col-sm-5 {\n    width: 41.66666666666667%;\n  }\n  .note-editor .col-sm-4 {\n    width: 33.33333333333333%;\n  }\n  .note-editor .col-sm-3 {\n    width: 25%;\n  }\n  .note-editor .col-sm-2 {\n    width: 16.666666666666664%;\n  }\n  .note-editor .col-sm-1 {\n    width: 8.333333333333332%;\n  }\n  .note-editor .col-sm-pull-12 {\n    right: 100%;\n  }\n  .note-editor .col-sm-pull-11 {\n    right: 91.66666666666666%;\n  }\n  .note-editor .col-sm-pull-10 {\n    right: 83.33333333333334%;\n  }\n  .note-editor .col-sm-pull-9 {\n    right: 75%;\n  }\n  .note-editor .col-sm-pull-8 {\n    right: 66.66666666666666%;\n  }\n  .note-editor .col-sm-pull-7 {\n    right: 58.333333333333336%;\n  }\n  .note-editor .col-sm-pull-6 {\n    right: 50%;\n  }\n  .note-editor .col-sm-pull-5 {\n    right: 41.66666666666667%;\n  }\n  .note-editor .col-sm-pull-4 {\n    right: 33.33333333333333%;\n  }\n  .note-editor .col-sm-pull-3 {\n    right: 25%;\n  }\n  .note-editor .col-sm-pull-2 {\n    right: 16.666666666666664%;\n  }\n  .note-editor .col-sm-pull-1 {\n    right: 8.333333333333332%;\n  }\n  .note-editor .col-sm-push-12 {\n    left: 100%;\n  }\n  .note-editor .col-sm-push-11 {\n    left: 91.66666666666666%;\n  }\n  .note-editor .col-sm-push-10 {\n    left: 83.33333333333334%;\n  }\n  .note-editor .col-sm-push-9 {\n    left: 75%;\n  }\n  .note-editor .col-sm-push-8 {\n    left: 66.66666666666666%;\n  }\n  .note-editor .col-sm-push-7 {\n    left: 58.333333333333336%;\n  }\n  .note-editor .col-sm-push-6 {\n    left: 50%;\n  }\n  .note-editor .col-sm-push-5 {\n    left: 41.66666666666667%;\n  }\n  .note-editor .col-sm-push-4 {\n    left: 33.33333333333333%;\n  }\n  .note-editor .col-sm-push-3 {\n    left: 25%;\n  }\n  .note-editor .col-sm-push-2 {\n    left: 16.666666666666664%;\n  }\n  .note-editor .col-sm-push-1 {\n    left: 8.333333333333332%;\n  }\n  .note-editor .col-sm-offset-12 {\n    margin-left: 100%;\n  }\n  .note-editor .col-sm-offset-11 {\n    margin-left: 91.66666666666666%;\n  }\n  .note-editor .col-sm-offset-10 {\n    margin-left: 83.33333333333334%;\n  }\n  .note-editor .col-sm-offset-9 {\n    margin-left: 75%;\n  }\n  .note-editor .col-sm-offset-8 {\n    margin-left: 66.66666666666666%;\n  }\n  .note-editor .col-sm-offset-7 {\n    margin-left: 58.333333333333336%;\n  }\n  .note-editor .col-sm-offset-6 {\n    margin-left: 50%;\n  }\n  .note-editor .col-sm-offset-5 {\n    margin-left: 41.66666666666667%;\n  }\n  .note-editor .col-sm-offset-4 {\n    margin-left: 33.33333333333333%;\n  }\n  .note-editor .col-sm-offset-3 {\n    margin-left: 25%;\n  }\n  .note-editor .col-sm-offset-2 {\n    margin-left: 16.666666666666664%;\n  }\n  .note-editor .col-sm-offset-1 {\n    margin-left: 8.333333333333332%;\n  }\n}\n@media (min-width: 992px) {\n  .note-editor .container {\n    width: 970px;\n  }\n  .note-editor .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11 {\n    float: left;\n  }\n  .note-editor .col-md-12 {\n    width: 100%;\n  }\n  .note-editor .col-md-11 {\n    width: 91.66666666666666%;\n  }\n  .note-editor .col-md-10 {\n    width: 83.33333333333334%;\n  }\n  .note-editor .col-md-9 {\n    width: 75%;\n  }\n  .note-editor .col-md-8 {\n    width: 66.66666666666666%;\n  }\n  .note-editor .col-md-7 {\n    width: 58.333333333333336%;\n  }\n  .note-editor .col-md-6 {\n    width: 50%;\n  }\n  .note-editor .col-md-5 {\n    width: 41.66666666666667%;\n  }\n  .note-editor .col-md-4 {\n    width: 33.33333333333333%;\n  }\n  .note-editor .col-md-3 {\n    width: 25%;\n  }\n  .note-editor .col-md-2 {\n    width: 16.666666666666664%;\n  }\n  .note-editor .col-md-1 {\n    width: 8.333333333333332%;\n  }\n  .note-editor .col-md-pull-12 {\n    right: 100%;\n  }\n  .note-editor .col-md-pull-11 {\n    right: 91.66666666666666%;\n  }\n  .note-editor .col-md-pull-10 {\n    right: 83.33333333333334%;\n  }\n  .note-editor .col-md-pull-9 {\n    right: 75%;\n  }\n  .note-editor .col-md-pull-8 {\n    right: 66.66666666666666%;\n  }\n  .note-editor .col-md-pull-7 {\n    right: 58.333333333333336%;\n  }\n  .note-editor .col-md-pull-6 {\n    right: 50%;\n  }\n  .note-editor .col-md-pull-5 {\n    right: 41.66666666666667%;\n  }\n  .note-editor .col-md-pull-4 {\n    right: 33.33333333333333%;\n  }\n  .note-editor .col-md-pull-3 {\n    right: 25%;\n  }\n  .note-editor .col-md-pull-2 {\n    right: 16.666666666666664%;\n  }\n  .note-editor .col-md-pull-1 {\n    right: 8.333333333333332%;\n  }\n  .note-editor .col-md-push-12 {\n    left: 100%;\n  }\n  .note-editor .col-md-push-11 {\n    left: 91.66666666666666%;\n  }\n  .note-editor .col-md-push-10 {\n    left: 83.33333333333334%;\n  }\n  .note-editor .col-md-push-9 {\n    left: 75%;\n  }\n  .note-editor .col-md-push-8 {\n    left: 66.66666666666666%;\n  }\n  .note-editor .col-md-push-7 {\n    left: 58.333333333333336%;\n  }\n  .note-editor .col-md-push-6 {\n    left: 50%;\n  }\n  .note-editor .col-md-push-5 {\n    left: 41.66666666666667%;\n  }\n  .note-editor .col-md-push-4 {\n    left: 33.33333333333333%;\n  }\n  .note-editor .col-md-push-3 {\n    left: 25%;\n  }\n  .note-editor .col-md-push-2 {\n    left: 16.666666666666664%;\n  }\n  .note-editor .col-md-push-1 {\n    left: 8.333333333333332%;\n  }\n  .note-editor .col-md-offset-12 {\n    margin-left: 100%;\n  }\n  .note-editor .col-md-offset-11 {\n    margin-left: 91.66666666666666%;\n  }\n  .note-editor .col-md-offset-10 {\n    margin-left: 83.33333333333334%;\n  }\n  .note-editor .col-md-offset-9 {\n    margin-left: 75%;\n  }\n  .note-editor .col-md-offset-8 {\n    margin-left: 66.66666666666666%;\n  }\n  .note-editor .col-md-offset-7 {\n    margin-left: 58.333333333333336%;\n  }\n  .note-editor .col-md-offset-6 {\n    margin-left: 50%;\n  }\n  .note-editor .col-md-offset-5 {\n    margin-left: 41.66666666666667%;\n  }\n  .note-editor .col-md-offset-4 {\n    margin-left: 33.33333333333333%;\n  }\n  .note-editor .col-md-offset-3 {\n    margin-left: 25%;\n  }\n  .note-editor .col-md-offset-2 {\n    margin-left: 16.666666666666664%;\n  }\n  .note-editor .col-md-offset-1 {\n    margin-left: 8.333333333333332%;\n  }\n}\n@media (min-width: 1200px) {\n  .note-editor .container {\n    width: 1170px;\n  }\n  .note-editor .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11 {\n    float: left;\n  }\n  .note-editor .col-lg-12 {\n    width: 100%;\n  }\n  .note-editor .col-lg-11 {\n    width: 91.66666666666666%;\n  }\n  .note-editor .col-lg-10 {\n    width: 83.33333333333334%;\n  }\n  .note-editor .col-lg-9 {\n    width: 75%;\n  }\n  .note-editor .col-lg-8 {\n    width: 66.66666666666666%;\n  }\n  .note-editor .col-lg-7 {\n    width: 58.333333333333336%;\n  }\n  .note-editor .col-lg-6 {\n    width: 50%;\n  }\n  .note-editor .col-lg-5 {\n    width: 41.66666666666667%;\n  }\n  .note-editor .col-lg-4 {\n    width: 33.33333333333333%;\n  }\n  .note-editor .col-lg-3 {\n    width: 25%;\n  }\n  .note-editor .col-lg-2 {\n    width: 16.666666666666664%;\n  }\n  .note-editor .col-lg-1 {\n    width: 8.333333333333332%;\n  }\n  .note-editor .col-lg-pull-12 {\n    right: 100%;\n  }\n  .note-editor .col-lg-pull-11 {\n    right: 91.66666666666666%;\n  }\n  .note-editor .col-lg-pull-10 {\n    right: 83.33333333333334%;\n  }\n  .note-editor .col-lg-pull-9 {\n    right: 75%;\n  }\n  .note-editor .col-lg-pull-8 {\n    right: 66.66666666666666%;\n  }\n  .note-editor .col-lg-pull-7 {\n    right: 58.333333333333336%;\n  }\n  .note-editor .col-lg-pull-6 {\n    right: 50%;\n  }\n  .note-editor .col-lg-pull-5 {\n    right: 41.66666666666667%;\n  }\n  .note-editor .col-lg-pull-4 {\n    right: 33.33333333333333%;\n  }\n  .note-editor .col-lg-pull-3 {\n    right: 25%;\n  }\n  .note-editor .col-lg-pull-2 {\n    right: 16.666666666666664%;\n  }\n  .note-editor .col-lg-pull-1 {\n    right: 8.333333333333332%;\n  }\n  .note-editor .col-lg-push-12 {\n    left: 100%;\n  }\n  .note-editor .col-lg-push-11 {\n    left: 91.66666666666666%;\n  }\n  .note-editor .col-lg-push-10 {\n    left: 83.33333333333334%;\n  }\n  .note-editor .col-lg-push-9 {\n    left: 75%;\n  }\n  .note-editor .col-lg-push-8 {\n    left: 66.66666666666666%;\n  }\n  .note-editor .col-lg-push-7 {\n    left: 58.333333333333336%;\n  }\n  .note-editor .col-lg-push-6 {\n    left: 50%;\n  }\n  .note-editor .col-lg-push-5 {\n    left: 41.66666666666667%;\n  }\n  .note-editor .col-lg-push-4 {\n    left: 33.33333333333333%;\n  }\n  .note-editor .col-lg-push-3 {\n    left: 25%;\n  }\n  .note-editor .col-lg-push-2 {\n    left: 16.666666666666664%;\n  }\n  .note-editor .col-lg-push-1 {\n    left: 8.333333333333332%;\n  }\n  .note-editor .col-lg-offset-12 {\n    margin-left: 100%;\n  }\n  .note-editor .col-lg-offset-11 {\n    margin-left: 91.66666666666666%;\n  }\n  .note-editor .col-lg-offset-10 {\n    margin-left: 83.33333333333334%;\n  }\n  .note-editor .col-lg-offset-9 {\n    margin-left: 75%;\n  }\n  .note-editor .col-lg-offset-8 {\n    margin-left: 66.66666666666666%;\n  }\n  .note-editor .col-lg-offset-7 {\n    margin-left: 58.333333333333336%;\n  }\n  .note-editor .col-lg-offset-6 {\n    margin-left: 50%;\n  }\n  .note-editor .col-lg-offset-5 {\n    margin-left: 41.66666666666667%;\n  }\n  .note-editor .col-lg-offset-4 {\n    margin-left: 33.33333333333333%;\n  }\n  .note-editor .col-lg-offset-3 {\n    margin-left: 25%;\n  }\n  .note-editor .col-lg-offset-2 {\n    margin-left: 16.666666666666664%;\n  }\n  .note-editor .col-lg-offset-1 {\n    margin-left: 8.333333333333332%;\n  }\n}\n.note-editor table {\n  max-width: 100%;\n  background-color: transparent;\n}\n.note-editor th {\n  text-align: left;\n}\n.note-editor .table {\n  width: 100%;\n  margin-bottom: 20px;\n}\n.note-editor .table > thead > tr > th,\n.note-editor .table > tbody > tr > th,\n.note-editor .table > tfoot > tr > th,\n.note-editor .table > thead > tr > td,\n.note-editor .table > tbody > tr > td,\n.note-editor .table > tfoot > tr > td {\n  padding: 8px;\n  line-height: 1.428571429;\n  vertical-align: top;\n  border-top: 1px solid #dddddd;\n}\n.note-editor .table > thead > tr > th {\n  vertical-align: bottom;\n  border-bottom: 2px solid #dddddd;\n}\n.note-editor .table > caption + thead > tr:first-child > th,\n.note-editor .table > colgroup + thead > tr:first-child > th,\n.note-editor .table > thead:first-child > tr:first-child > th,\n.note-editor .table > caption + thead > tr:first-child > td,\n.note-editor .table > colgroup + thead > tr:first-child > td,\n.note-editor .table > thead:first-child > tr:first-child > td {\n  border-top: 0;\n}\n.note-editor .table > tbody + tbody {\n  border-top: 2px solid #dddddd;\n}\n.note-editor .table .table {\n  background-color: #ffffff;\n}\n.note-editor .table-condensed > thead > tr > th,\n.note-editor .table-condensed > tbody > tr > th,\n.note-editor .table-condensed > tfoot > tr > th,\n.note-editor .table-condensed > thead > tr > td,\n.note-editor .table-condensed > tbody > tr > td,\n.note-editor .table-condensed > tfoot > tr > td {\n  padding: 5px;\n}\n.note-editor .table-bordered {\n  border: 1px solid #dddddd;\n}\n.note-editor .table-bordered > thead > tr > th,\n.note-editor .table-bordered > tbody > tr > th,\n.note-editor .table-bordered > tfoot > tr > th,\n.note-editor .table-bordered > thead > tr > td,\n.note-editor .table-bordered > tbody > tr > td,\n.note-editor .table-bordered > tfoot > tr > td {\n  border: 1px solid #dddddd;\n}\n.note-editor .table-bordered > thead > tr > th,\n.note-editor .table-bordered > thead > tr > td {\n  border-bottom-width: 2px;\n}\n.note-editor .table-striped > tbody > tr:nth-child(odd) > td,\n.note-editor .table-striped > tbody > tr:nth-child(odd) > th {\n  background-color: #f9f9f9;\n}\n.note-editor .table-hover > tbody > tr:hover > td,\n.note-editor .table-hover > tbody > tr:hover > th {\n  background-color: #f5f5f5;\n}\n.note-editor table col[class*=\"col-\"] {\n  float: none;\n  display: table-column;\n}\n.note-editor table td[class*=\"col-\"],\n.note-editor table th[class*=\"col-\"] {\n  float: none;\n  display: table-cell;\n}\n.note-editor .table > thead > tr > td.active,\n.note-editor .table > tbody > tr > td.active,\n.note-editor .table > tfoot > tr > td.active,\n.note-editor .table > thead > tr > th.active,\n.note-editor .table > tbody > tr > th.active,\n.note-editor .table > tfoot > tr > th.active,\n.note-editor .table > thead > tr.active > td,\n.note-editor .table > tbody > tr.active > td,\n.note-editor .table > tfoot > tr.active > td,\n.note-editor .table > thead > tr.active > th,\n.note-editor .table > tbody > tr.active > th,\n.note-editor .table > tfoot > tr.active > th {\n  background-color: #f5f5f5;\n}\n.note-editor .table > thead > tr > td.success,\n.note-editor .table > tbody > tr > td.success,\n.note-editor .table > tfoot > tr > td.success,\n.note-editor .table > thead > tr > th.success,\n.note-editor .table > tbody > tr > th.success,\n.note-editor .table > tfoot > tr > th.success,\n.note-editor .table > thead > tr.success > td,\n.note-editor .table > tbody > tr.success > td,\n.note-editor .table > tfoot > tr.success > td,\n.note-editor .table > thead > tr.success > th,\n.note-editor .table > tbody > tr.success > th,\n.note-editor .table > tfoot > tr.success > th {\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.note-editor .table-hover > tbody > tr > td.success:hover,\n.note-editor .table-hover > tbody > tr > th.success:hover,\n.note-editor .table-hover > tbody > tr.success:hover > td,\n.note-editor .table-hover > tbody > tr.success:hover > th {\n  background-color: #d0e9c6;\n  border-color: #c9e2b3;\n}\n.note-editor .table > thead > tr > td.danger,\n.note-editor .table > tbody > tr > td.danger,\n.note-editor .table > tfoot > tr > td.danger,\n.note-editor .table > thead > tr > th.danger,\n.note-editor .table > tbody > tr > th.danger,\n.note-editor .table > tfoot > tr > th.danger,\n.note-editor .table > thead > tr.danger > td,\n.note-editor .table > tbody > tr.danger > td,\n.note-editor .table > tfoot > tr.danger > td,\n.note-editor .table > thead > tr.danger > th,\n.note-editor .table > tbody > tr.danger > th,\n.note-editor .table > tfoot > tr.danger > th {\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.note-editor .table-hover > tbody > tr > td.danger:hover,\n.note-editor .table-hover > tbody > tr > th.danger:hover,\n.note-editor .table-hover > tbody > tr.danger:hover > td,\n.note-editor .table-hover > tbody > tr.danger:hover > th {\n  background-color: #ebcccc;\n  border-color: #e4b9c0;\n}\n.note-editor .table > thead > tr > td.warning,\n.note-editor .table > tbody > tr > td.warning,\n.note-editor .table > tfoot > tr > td.warning,\n.note-editor .table > thead > tr > th.warning,\n.note-editor .table > tbody > tr > th.warning,\n.note-editor .table > tfoot > tr > th.warning,\n.note-editor .table > thead > tr.warning > td,\n.note-editor .table > tbody > tr.warning > td,\n.note-editor .table > tfoot > tr.warning > td,\n.note-editor .table > thead > tr.warning > th,\n.note-editor .table > tbody > tr.warning > th,\n.note-editor .table > tfoot > tr.warning > th {\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.note-editor .table-hover > tbody > tr > td.warning:hover,\n.note-editor .table-hover > tbody > tr > th.warning:hover,\n.note-editor .table-hover > tbody > tr.warning:hover > td,\n.note-editor .table-hover > tbody > tr.warning:hover > th {\n  background-color: #faf2cc;\n  border-color: #f7e1b5;\n}\n@media (max-width: 767px) {\n  .note-editor .table-responsive {\n    width: 100%;\n    margin-bottom: 15px;\n    overflow-y: hidden;\n    overflow-x: scroll;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid #dddddd;\n    -webkit-overflow-scrolling: touch;\n  }\n  .note-editor .table-responsive > .table {\n    margin-bottom: 0;\n  }\n  .note-editor .table-responsive > .table > thead > tr > th,\n  .note-editor .table-responsive > .table > tbody > tr > th,\n  .note-editor .table-responsive > .table > tfoot > tr > th,\n  .note-editor .table-responsive > .table > thead > tr > td,\n  .note-editor .table-responsive > .table > tbody > tr > td,\n  .note-editor .table-responsive > .table > tfoot > tr > td {\n    white-space: nowrap;\n  }\n  .note-editor .table-responsive > .table-bordered {\n    border: 0;\n  }\n  .note-editor .table-responsive > .table-bordered > thead > tr > th:first-child,\n  .note-editor .table-responsive > .table-bordered > tbody > tr > th:first-child,\n  .note-editor .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n  .note-editor .table-responsive > .table-bordered > thead > tr > td:first-child,\n  .note-editor .table-responsive > .table-bordered > tbody > tr > td:first-child,\n  .note-editor .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n    border-left: 0;\n  }\n  .note-editor .table-responsive > .table-bordered > thead > tr > th:last-child,\n  .note-editor .table-responsive > .table-bordered > tbody > tr > th:last-child,\n  .note-editor .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n  .note-editor .table-responsive > .table-bordered > thead > tr > td:last-child,\n  .note-editor .table-responsive > .table-bordered > tbody > tr > td:last-child,\n  .note-editor .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n    border-right: 0;\n  }\n  .note-editor .table-responsive > .table-bordered > tbody > tr:last-child > th,\n  .note-editor .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n  .note-editor .table-responsive > .table-bordered > tbody > tr:last-child > td,\n  .note-editor .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n    border-bottom: 0;\n  }\n}\n.note-editor fieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\n.note-editor legend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: 20px;\n  font-size: 21px;\n  line-height: inherit;\n  color: #333333;\n  border: 0;\n  border-bottom: 1px solid #e5e5e5;\n}\n.note-editor label {\n  display: inline-block;\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n.note-editor input[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n}\n.note-editor input[type=\"radio\"],\n.note-editor input[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9;\n  /* IE8-9 */\n\n  line-height: normal;\n}\n.note-editor input[type=\"file\"] {\n  display: block;\n}\n.note-editor select[multiple],\n.note-editor select[size] {\n  height: auto;\n}\n.note-editor select optgroup {\n  font-size: inherit;\n  font-style: inherit;\n  font-family: inherit;\n}\n.note-editor input[type=\"file\"]:focus,\n.note-editor input[type=\"radio\"]:focus,\n.note-editor input[type=\"checkbox\"]:focus {\n  outline: thin dotted #333;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n.note-editor input[type=\"number\"]::-webkit-outer-spin-button,\n.note-editor input[type=\"number\"]::-webkit-inner-spin-button {\n  height: auto;\n}\n.note-editor output {\n  display: block;\n  padding-top: 7px;\n  font-size: 14px;\n  line-height: 1.428571429;\n  color: #555555;\n  vertical-align: middle;\n}\n.note-editor .form-control:-moz-placeholder {\n  color: #999999;\n}\n.note-editor .form-control::-moz-placeholder {\n  color: #999999;\n}\n.note-editor .form-control:-ms-input-placeholder {\n  color: #999999;\n}\n.note-editor .form-control::-webkit-input-placeholder {\n  color: #999999;\n}\n.note-editor .form-control {\n  display: block;\n  width: 100%;\n  height: 34px;\n  padding: 6px 12px;\n  font-size: 14px;\n  line-height: 1.428571429;\n  color: #555555;\n  vertical-align: middle;\n  background-color: #ffffff;\n  background-image: none;\n  border: 1px solid #cccccc;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.note-editor .form-control:focus {\n  border-color: #66afe9;\n  outline: 0;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.note-editor .form-control[disabled],\n.note-editor .form-control[readonly],\nfieldset[disabled] .note-editor .form-control {\n  cursor: not-allowed;\n  background-color: #eeeeee;\n}\ntextarea.note-editor .form-control {\n  height: auto;\n}\n.note-editor .form-group {\n  margin-bottom: 15px;\n}\n.note-editor .radio,\n.note-editor .checkbox {\n  display: block;\n  min-height: 20px;\n  margin-top: 10px;\n  margin-bottom: 10px;\n  padding-left: 20px;\n  vertical-align: middle;\n}\n.note-editor .radio label,\n.note-editor .checkbox label {\n  display: inline;\n  margin-bottom: 0;\n  font-weight: normal;\n  cursor: pointer;\n}\n.note-editor .radio input[type=\"radio\"],\n.note-editor .radio-inline input[type=\"radio\"],\n.note-editor .checkbox input[type=\"checkbox\"],\n.note-editor .checkbox-inline input[type=\"checkbox\"] {\n  float: left;\n  margin-left: -20px;\n}\n.note-editor .radio + .radio,\n.note-editor .checkbox + .checkbox {\n  margin-top: -5px;\n}\n.note-editor .radio-inline,\n.note-editor .checkbox-inline {\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.note-editor .radio-inline + .radio-inline,\n.note-editor .checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px;\n}\n.note-editor input[type=\"radio\"][disabled],\n.note-editor input[type=\"checkbox\"][disabled],\n.note-editor .radio[disabled],\n.note-editor .radio-inline[disabled],\n.note-editor .checkbox[disabled],\n.note-editor .checkbox-inline[disabled],\nfieldset[disabled] .note-editor input[type=\"radio\"],\nfieldset[disabled] .note-editor input[type=\"checkbox\"],\nfieldset[disabled] .note-editor .radio,\nfieldset[disabled] .note-editor .radio-inline,\nfieldset[disabled] .note-editor .checkbox,\nfieldset[disabled] .note-editor .checkbox-inline {\n  cursor: not-allowed;\n}\n.note-editor .input-sm {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.note-editor .input-sm {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.note-editor .input-sm {\n  height: auto;\n}\n.note-editor .input-lg {\n  height: 45px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.33;\n  border-radius: 6px;\n}\nselect.note-editor .input-lg {\n  height: 45px;\n  line-height: 45px;\n}\ntextarea.note-editor .input-lg {\n  height: auto;\n}\n.note-editor .has-warning .help-block,\n.note-editor .has-warning .control-label {\n  color: #c09853;\n}\n.note-editor .has-warning .form-control {\n  border-color: #c09853;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.note-editor .has-warning .form-control:focus {\n  border-color: #a47e3c;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;\n}\n.note-editor .has-warning .input-group-addon {\n  color: #c09853;\n  border-color: #c09853;\n  background-color: #fcf8e3;\n}\n.note-editor .has-error .help-block,\n.note-editor .has-error .control-label {\n  color: #b94a48;\n}\n.note-editor .has-error .form-control {\n  border-color: #b94a48;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.note-editor .has-error .form-control:focus {\n  border-color: #953b39;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;\n}\n.note-editor .has-error .input-group-addon {\n  color: #b94a48;\n  border-color: #b94a48;\n  background-color: #f2dede;\n}\n.note-editor .has-success .help-block,\n.note-editor .has-success .control-label {\n  color: #468847;\n}\n.note-editor .has-success .form-control {\n  border-color: #468847;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.note-editor .has-success .form-control:focus {\n  border-color: #356635;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;\n}\n.note-editor .has-success .input-group-addon {\n  color: #468847;\n  border-color: #468847;\n  background-color: #dff0d8;\n}\n.note-editor .form-control-static {\n  margin-bottom: 0;\n}\n.note-editor .help-block {\n  display: block;\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: #737373;\n}\n@media (min-width: 768px) {\n  .note-editor .form-inline .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .note-editor .form-inline .form-control {\n    display: inline-block;\n  }\n  .note-editor .form-inline .radio,\n  .note-editor .form-inline .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-left: 0;\n  }\n  .note-editor .form-inline .radio input[type=\"radio\"],\n  .note-editor .form-inline .checkbox input[type=\"checkbox\"] {\n    float: none;\n    margin-left: 0;\n  }\n}\n.note-editor .form-horizontal .control-label,\n.note-editor .form-horizontal .radio,\n.note-editor .form-horizontal .checkbox,\n.note-editor .form-horizontal .radio-inline,\n.note-editor .form-horizontal .checkbox-inline {\n  margin-top: 0;\n  margin-bottom: 0;\n  padding-top: 7px;\n}\n.note-editor .form-horizontal .form-group {\n  margin-left: -15px;\n  margin-right: -15px;\n}\n.note-editor .form-horizontal .form-group:before,\n.note-editor .form-horizontal .form-group:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .form-horizontal .form-group:after {\n  clear: both;\n}\n.note-editor .form-horizontal .form-group:before,\n.note-editor .form-horizontal .form-group:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .form-horizontal .form-group:after {\n  clear: both;\n}\n.note-editor .form-horizontal .form-control-static {\n  padding-top: 7px;\n}\n@media (min-width: 768px) {\n  .note-editor .form-horizontal .control-label {\n    text-align: right;\n  }\n}\n.note-editor .btn {\n  display: inline-block;\n  margin-bottom: 0;\n  font-weight: normal;\n  text-align: center;\n  vertical-align: middle;\n  cursor: pointer;\n  background-image: none;\n  border: 1px solid transparent;\n  white-space: nowrap;\n  padding: 6px 12px;\n  font-size: 14px;\n  line-height: 1.428571429;\n  border-radius: 4px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  -o-user-select: none;\n  user-select: none;\n}\n.note-editor .btn:focus {\n  outline: thin dotted #333;\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n.note-editor .btn:hover,\n.note-editor .btn:focus {\n  color: #333333;\n  text-decoration: none;\n}\n.note-editor .btn:active,\n.note-editor .btn.active {\n  outline: 0;\n  background-image: none;\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.note-editor .btn.disabled,\n.note-editor .btn[disabled],\nfieldset[disabled] .note-editor .btn {\n  cursor: not-allowed;\n  pointer-events: none;\n  opacity: 0.65;\n  filter: alpha(opacity=65);\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.note-editor .btn-default {\n  color: #333333;\n  background-color: #ffffff;\n  border-color: #cccccc;\n}\n.note-editor .btn-default:hover,\n.note-editor .btn-default:focus,\n.note-editor .btn-default:active,\n.note-editor .btn-default.active,\n.open .dropdown-toggle.note-editor .btn-default {\n  color: #333333;\n  background-color: #ebebeb;\n  border-color: #adadad;\n}\n.note-editor .btn-default:active,\n.note-editor .btn-default.active,\n.open .dropdown-toggle.note-editor .btn-default {\n  background-image: none;\n}\n.note-editor .btn-default.disabled,\n.note-editor .btn-default[disabled],\nfieldset[disabled] .note-editor .btn-default,\n.note-editor .btn-default.disabled:hover,\n.note-editor .btn-default[disabled]:hover,\nfieldset[disabled] .note-editor .btn-default:hover,\n.note-editor .btn-default.disabled:focus,\n.note-editor .btn-default[disabled]:focus,\nfieldset[disabled] .note-editor .btn-default:focus,\n.note-editor .btn-default.disabled:active,\n.note-editor .btn-default[disabled]:active,\nfieldset[disabled] .note-editor .btn-default:active,\n.note-editor .btn-default.disabled.active,\n.note-editor .btn-default[disabled].active,\nfieldset[disabled] .note-editor .btn-default.active {\n  background-color: #ffffff;\n  border-color: #cccccc;\n}\n.note-editor .btn-primary {\n  color: #ffffff;\n  background-color: #428bca;\n  border-color: #357ebd;\n}\n.note-editor .btn-primary:hover,\n.note-editor .btn-primary:focus,\n.note-editor .btn-primary:active,\n.note-editor .btn-primary.active,\n.open .dropdown-toggle.note-editor .btn-primary {\n  color: #ffffff;\n  background-color: #3276b1;\n  border-color: #285e8e;\n}\n.note-editor .btn-primary:active,\n.note-editor .btn-primary.active,\n.open .dropdown-toggle.note-editor .btn-primary {\n  background-image: none;\n}\n.note-editor .btn-primary.disabled,\n.note-editor .btn-primary[disabled],\nfieldset[disabled] .note-editor .btn-primary,\n.note-editor .btn-primary.disabled:hover,\n.note-editor .btn-primary[disabled]:hover,\nfieldset[disabled] .note-editor .btn-primary:hover,\n.note-editor .btn-primary.disabled:focus,\n.note-editor .btn-primary[disabled]:focus,\nfieldset[disabled] .note-editor .btn-primary:focus,\n.note-editor .btn-primary.disabled:active,\n.note-editor .btn-primary[disabled]:active,\nfieldset[disabled] .note-editor .btn-primary:active,\n.note-editor .btn-primary.disabled.active,\n.note-editor .btn-primary[disabled].active,\nfieldset[disabled] .note-editor .btn-primary.active {\n  background-color: #428bca;\n  border-color: #357ebd;\n}\n.note-editor .btn-warning {\n  color: #ffffff;\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.note-editor .btn-warning:hover,\n.note-editor .btn-warning:focus,\n.note-editor .btn-warning:active,\n.note-editor .btn-warning.active,\n.open .dropdown-toggle.note-editor .btn-warning {\n  color: #ffffff;\n  background-color: #ed9c28;\n  border-color: #d58512;\n}\n.note-editor .btn-warning:active,\n.note-editor .btn-warning.active,\n.open .dropdown-toggle.note-editor .btn-warning {\n  background-image: none;\n}\n.note-editor .btn-warning.disabled,\n.note-editor .btn-warning[disabled],\nfieldset[disabled] .note-editor .btn-warning,\n.note-editor .btn-warning.disabled:hover,\n.note-editor .btn-warning[disabled]:hover,\nfieldset[disabled] .note-editor .btn-warning:hover,\n.note-editor .btn-warning.disabled:focus,\n.note-editor .btn-warning[disabled]:focus,\nfieldset[disabled] .note-editor .btn-warning:focus,\n.note-editor .btn-warning.disabled:active,\n.note-editor .btn-warning[disabled]:active,\nfieldset[disabled] .note-editor .btn-warning:active,\n.note-editor .btn-warning.disabled.active,\n.note-editor .btn-warning[disabled].active,\nfieldset[disabled] .note-editor .btn-warning.active {\n  background-color: #f0ad4e;\n  border-color: #eea236;\n}\n.note-editor .btn-danger {\n  color: #ffffff;\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.note-editor .btn-danger:hover,\n.note-editor .btn-danger:focus,\n.note-editor .btn-danger:active,\n.note-editor .btn-danger.active,\n.open .dropdown-toggle.note-editor .btn-danger {\n  color: #ffffff;\n  background-color: #d2322d;\n  border-color: #ac2925;\n}\n.note-editor .btn-danger:active,\n.note-editor .btn-danger.active,\n.open .dropdown-toggle.note-editor .btn-danger {\n  background-image: none;\n}\n.note-editor .btn-danger.disabled,\n.note-editor .btn-danger[disabled],\nfieldset[disabled] .note-editor .btn-danger,\n.note-editor .btn-danger.disabled:hover,\n.note-editor .btn-danger[disabled]:hover,\nfieldset[disabled] .note-editor .btn-danger:hover,\n.note-editor .btn-danger.disabled:focus,\n.note-editor .btn-danger[disabled]:focus,\nfieldset[disabled] .note-editor .btn-danger:focus,\n.note-editor .btn-danger.disabled:active,\n.note-editor .btn-danger[disabled]:active,\nfieldset[disabled] .note-editor .btn-danger:active,\n.note-editor .btn-danger.disabled.active,\n.note-editor .btn-danger[disabled].active,\nfieldset[disabled] .note-editor .btn-danger.active {\n  background-color: #d9534f;\n  border-color: #d43f3a;\n}\n.note-editor .btn-success {\n  color: #ffffff;\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.note-editor .btn-success:hover,\n.note-editor .btn-success:focus,\n.note-editor .btn-success:active,\n.note-editor .btn-success.active,\n.open .dropdown-toggle.note-editor .btn-success {\n  color: #ffffff;\n  background-color: #47a447;\n  border-color: #398439;\n}\n.note-editor .btn-success:active,\n.note-editor .btn-success.active,\n.open .dropdown-toggle.note-editor .btn-success {\n  background-image: none;\n}\n.note-editor .btn-success.disabled,\n.note-editor .btn-success[disabled],\nfieldset[disabled] .note-editor .btn-success,\n.note-editor .btn-success.disabled:hover,\n.note-editor .btn-success[disabled]:hover,\nfieldset[disabled] .note-editor .btn-success:hover,\n.note-editor .btn-success.disabled:focus,\n.note-editor .btn-success[disabled]:focus,\nfieldset[disabled] .note-editor .btn-success:focus,\n.note-editor .btn-success.disabled:active,\n.note-editor .btn-success[disabled]:active,\nfieldset[disabled] .note-editor .btn-success:active,\n.note-editor .btn-success.disabled.active,\n.note-editor .btn-success[disabled].active,\nfieldset[disabled] .note-editor .btn-success.active {\n  background-color: #5cb85c;\n  border-color: #4cae4c;\n}\n.note-editor .btn-info {\n  color: #ffffff;\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.note-editor .btn-info:hover,\n.note-editor .btn-info:focus,\n.note-editor .btn-info:active,\n.note-editor .btn-info.active,\n.open .dropdown-toggle.note-editor .btn-info {\n  color: #ffffff;\n  background-color: #39b3d7;\n  border-color: #269abc;\n}\n.note-editor .btn-info:active,\n.note-editor .btn-info.active,\n.open .dropdown-toggle.note-editor .btn-info {\n  background-image: none;\n}\n.note-editor .btn-info.disabled,\n.note-editor .btn-info[disabled],\nfieldset[disabled] .note-editor .btn-info,\n.note-editor .btn-info.disabled:hover,\n.note-editor .btn-info[disabled]:hover,\nfieldset[disabled] .note-editor .btn-info:hover,\n.note-editor .btn-info.disabled:focus,\n.note-editor .btn-info[disabled]:focus,\nfieldset[disabled] .note-editor .btn-info:focus,\n.note-editor .btn-info.disabled:active,\n.note-editor .btn-info[disabled]:active,\nfieldset[disabled] .note-editor .btn-info:active,\n.note-editor .btn-info.disabled.active,\n.note-editor .btn-info[disabled].active,\nfieldset[disabled] .note-editor .btn-info.active {\n  background-color: #5bc0de;\n  border-color: #46b8da;\n}\n.note-editor .btn-link {\n  color: #428bca;\n  font-weight: normal;\n  cursor: pointer;\n  border-radius: 0;\n}\n.note-editor .btn-link,\n.note-editor .btn-link:active,\n.note-editor .btn-link[disabled],\nfieldset[disabled] .note-editor .btn-link {\n  background-color: transparent;\n  -webkit-box-shadow: none;\n  box-shadow: none;\n}\n.note-editor .btn-link,\n.note-editor .btn-link:hover,\n.note-editor .btn-link:focus,\n.note-editor .btn-link:active {\n  border-color: transparent;\n}\n.note-editor .btn-link:hover,\n.note-editor .btn-link:focus {\n  color: #2a6496;\n  text-decoration: underline;\n  background-color: transparent;\n}\n.note-editor .btn-link[disabled]:hover,\nfieldset[disabled] .note-editor .btn-link:hover,\n.note-editor .btn-link[disabled]:focus,\nfieldset[disabled] .note-editor .btn-link:focus {\n  color: #999999;\n  text-decoration: none;\n}\n.note-editor .btn-lg {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.33;\n  border-radius: 6px;\n}\n.note-editor .btn-sm,\n.note-editor .btn-xs {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.note-editor .btn-xs {\n  padding: 1px 5px;\n}\n.note-editor .btn-block {\n  display: block;\n  width: 100%;\n  padding-left: 0;\n  padding-right: 0;\n}\n.note-editor .btn-block + .btn-block {\n  margin-top: 5px;\n}\n.note-editor input[type=\"submit\"].btn-block,\n.note-editor input[type=\"reset\"].btn-block,\n.note-editor input[type=\"button\"].btn-block {\n  width: 100%;\n}\n.note-editor .fade {\n  opacity: 0;\n  -webkit-transition: opacity 0.15s linear;\n  transition: opacity 0.15s linear;\n}\n.note-editor .fade.in {\n  opacity: 1;\n}\n.note-editor .collapse {\n  display: none;\n}\n.note-editor .collapse.in {\n  display: block;\n}\n.note-editor .collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  -webkit-transition: height 0.35s ease;\n  transition: height 0.35s ease;\n}\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('../fonts/glyphicons-halflings-regular.eot');\n  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.note-editor .glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n}\n.note-editor .glyphicon:empty {\n  width: 1em;\n}\n.note-editor .glyphicon-asterisk:before {\n  content: \"\\2a\";\n}\n.note-editor .glyphicon-plus:before {\n  content: \"\\2b\";\n}\n.note-editor .glyphicon-euro:before {\n  content: \"\\20ac\";\n}\n.note-editor .glyphicon-minus:before {\n  content: \"\\2212\";\n}\n.note-editor .glyphicon-cloud:before {\n  content: \"\\2601\";\n}\n.note-editor .glyphicon-envelope:before {\n  content: \"\\2709\";\n}\n.note-editor .glyphicon-pencil:before {\n  content: \"\\270f\";\n}\n.note-editor .glyphicon-glass:before {\n  content: \"\\e001\";\n}\n.note-editor .glyphicon-music:before {\n  content: \"\\e002\";\n}\n.note-editor .glyphicon-search:before {\n  content: \"\\e003\";\n}\n.note-editor .glyphicon-heart:before {\n  content: \"\\e005\";\n}\n.note-editor .glyphicon-star:before {\n  content: \"\\e006\";\n}\n.note-editor .glyphicon-star-empty:before {\n  content: \"\\e007\";\n}\n.note-editor .glyphicon-user:before {\n  content: \"\\e008\";\n}\n.note-editor .glyphicon-film:before {\n  content: \"\\e009\";\n}\n.note-editor .glyphicon-th-large:before {\n  content: \"\\e010\";\n}\n.note-editor .glyphicon-th:before {\n  content: \"\\e011\";\n}\n.note-editor .glyphicon-th-list:before {\n  content: \"\\e012\";\n}\n.note-editor .glyphicon-ok:before {\n  content: \"\\e013\";\n}\n.note-editor .glyphicon-remove:before {\n  content: \"\\e014\";\n}\n.note-editor .glyphicon-zoom-in:before {\n  content: \"\\e015\";\n}\n.note-editor .glyphicon-zoom-out:before {\n  content: \"\\e016\";\n}\n.note-editor .glyphicon-off:before {\n  content: \"\\e017\";\n}\n.note-editor .glyphicon-signal:before {\n  content: \"\\e018\";\n}\n.note-editor .glyphicon-cog:before {\n  content: \"\\e019\";\n}\n.note-editor .glyphicon-trash:before {\n  content: \"\\e020\";\n}\n.note-editor .glyphicon-home:before {\n  content: \"\\e021\";\n}\n.note-editor .glyphicon-file:before {\n  content: \"\\e022\";\n}\n.note-editor .glyphicon-time:before {\n  content: \"\\e023\";\n}\n.note-editor .glyphicon-road:before {\n  content: \"\\e024\";\n}\n.note-editor .glyphicon-download-alt:before {\n  content: \"\\e025\";\n}\n.note-editor .glyphicon-download:before {\n  content: \"\\e026\";\n}\n.note-editor .glyphicon-upload:before {\n  content: \"\\e027\";\n}\n.note-editor .glyphicon-inbox:before {\n  content: \"\\e028\";\n}\n.note-editor .glyphicon-play-circle:before {\n  content: \"\\e029\";\n}\n.note-editor .glyphicon-repeat:before {\n  content: \"\\e030\";\n}\n.note-editor .glyphicon-refresh:before {\n  content: \"\\e031\";\n}\n.note-editor .glyphicon-list-alt:before {\n  content: \"\\e032\";\n}\n.note-editor .glyphicon-lock:before {\n  content: \"\\e033\";\n}\n.note-editor .glyphicon-flag:before {\n  content: \"\\e034\";\n}\n.note-editor .glyphicon-headphones:before {\n  content: \"\\e035\";\n}\n.note-editor .glyphicon-volume-off:before {\n  content: \"\\e036\";\n}\n.note-editor .glyphicon-volume-down:before {\n  content: \"\\e037\";\n}\n.note-editor .glyphicon-volume-up:before {\n  content: \"\\e038\";\n}\n.note-editor .glyphicon-qrcode:before {\n  content: \"\\e039\";\n}\n.note-editor .glyphicon-barcode:before {\n  content: \"\\e040\";\n}\n.note-editor .glyphicon-tag:before {\n  content: \"\\e041\";\n}\n.note-editor .glyphicon-tags:before {\n  content: \"\\e042\";\n}\n.note-editor .glyphicon-book:before {\n  content: \"\\e043\";\n}\n.note-editor .glyphicon-bookmark:before {\n  content: \"\\e044\";\n}\n.note-editor .glyphicon-print:before {\n  content: \"\\e045\";\n}\n.note-editor .glyphicon-camera:before {\n  content: \"\\e046\";\n}\n.note-editor .glyphicon-font:before {\n  content: \"\\e047\";\n}\n.note-editor .glyphicon-bold:before {\n  content: \"\\e048\";\n}\n.note-editor .glyphicon-italic:before {\n  content: \"\\e049\";\n}\n.note-editor .glyphicon-text-height:before {\n  content: \"\\e050\";\n}\n.note-editor .glyphicon-text-width:before {\n  content: \"\\e051\";\n}\n.note-editor .glyphicon-align-left:before {\n  content: \"\\e052\";\n}\n.note-editor .glyphicon-align-center:before {\n  content: \"\\e053\";\n}\n.note-editor .glyphicon-align-right:before {\n  content: \"\\e054\";\n}\n.note-editor .glyphicon-align-justify:before {\n  content: \"\\e055\";\n}\n.note-editor .glyphicon-list:before {\n  content: \"\\e056\";\n}\n.note-editor .glyphicon-indent-left:before {\n  content: \"\\e057\";\n}\n.note-editor .glyphicon-indent-right:before {\n  content: \"\\e058\";\n}\n.note-editor .glyphicon-facetime-video:before {\n  content: \"\\e059\";\n}\n.note-editor .glyphicon-picture:before {\n  content: \"\\e060\";\n}\n.note-editor .glyphicon-map-marker:before {\n  content: \"\\e062\";\n}\n.note-editor .glyphicon-adjust:before {\n  content: \"\\e063\";\n}\n.note-editor .glyphicon-tint:before {\n  content: \"\\e064\";\n}\n.note-editor .glyphicon-edit:before {\n  content: \"\\e065\";\n}\n.note-editor .glyphicon-share:before {\n  content: \"\\e066\";\n}\n.note-editor .glyphicon-check:before {\n  content: \"\\e067\";\n}\n.note-editor .glyphicon-move:before {\n  content: \"\\e068\";\n}\n.note-editor .glyphicon-step-backward:before {\n  content: \"\\e069\";\n}\n.note-editor .glyphicon-fast-backward:before {\n  content: \"\\e070\";\n}\n.note-editor .glyphicon-backward:before {\n  content: \"\\e071\";\n}\n.note-editor .glyphicon-play:before {\n  content: \"\\e072\";\n}\n.note-editor .glyphicon-pause:before {\n  content: \"\\e073\";\n}\n.note-editor .glyphicon-stop:before {\n  content: \"\\e074\";\n}\n.note-editor .glyphicon-forward:before {\n  content: \"\\e075\";\n}\n.note-editor .glyphicon-fast-forward:before {\n  content: \"\\e076\";\n}\n.note-editor .glyphicon-step-forward:before {\n  content: \"\\e077\";\n}\n.note-editor .glyphicon-eject:before {\n  content: \"\\e078\";\n}\n.note-editor .glyphicon-chevron-left:before {\n  content: \"\\e079\";\n}\n.note-editor .glyphicon-chevron-right:before {\n  content: \"\\e080\";\n}\n.note-editor .glyphicon-plus-sign:before {\n  content: \"\\e081\";\n}\n.note-editor .glyphicon-minus-sign:before {\n  content: \"\\e082\";\n}\n.note-editor .glyphicon-remove-sign:before {\n  content: \"\\e083\";\n}\n.note-editor .glyphicon-ok-sign:before {\n  content: \"\\e084\";\n}\n.note-editor .glyphicon-question-sign:before {\n  content: \"\\e085\";\n}\n.note-editor .glyphicon-info-sign:before {\n  content: \"\\e086\";\n}\n.note-editor .glyphicon-screenshot:before {\n  content: \"\\e087\";\n}\n.note-editor .glyphicon-remove-circle:before {\n  content: \"\\e088\";\n}\n.note-editor .glyphicon-ok-circle:before {\n  content: \"\\e089\";\n}\n.note-editor .glyphicon-ban-circle:before {\n  content: \"\\e090\";\n}\n.note-editor .glyphicon-arrow-left:before {\n  content: \"\\e091\";\n}\n.note-editor .glyphicon-arrow-right:before {\n  content: \"\\e092\";\n}\n.note-editor .glyphicon-arrow-up:before {\n  content: \"\\e093\";\n}\n.note-editor .glyphicon-arrow-down:before {\n  content: \"\\e094\";\n}\n.note-editor .glyphicon-share-alt:before {\n  content: \"\\e095\";\n}\n.note-editor .glyphicon-resize-full:before {\n  content: \"\\e096\";\n}\n.note-editor .glyphicon-resize-small:before {\n  content: \"\\e097\";\n}\n.note-editor .glyphicon-exclamation-sign:before {\n  content: \"\\e101\";\n}\n.note-editor .glyphicon-gift:before {\n  content: \"\\e102\";\n}\n.note-editor .glyphicon-leaf:before {\n  content: \"\\e103\";\n}\n.note-editor .glyphicon-fire:before {\n  content: \"\\e104\";\n}\n.note-editor .glyphicon-eye-open:before {\n  content: \"\\e105\";\n}\n.note-editor .glyphicon-eye-close:before {\n  content: \"\\e106\";\n}\n.note-editor .glyphicon-warning-sign:before {\n  content: \"\\e107\";\n}\n.note-editor .glyphicon-plane:before {\n  content: \"\\e108\";\n}\n.note-editor .glyphicon-calendar:before {\n  content: \"\\e109\";\n}\n.note-editor .glyphicon-random:before {\n  content: \"\\e110\";\n}\n.note-editor .glyphicon-comment:before {\n  content: \"\\e111\";\n}\n.note-editor .glyphicon-magnet:before {\n  content: \"\\e112\";\n}\n.note-editor .glyphicon-chevron-up:before {\n  content: \"\\e113\";\n}\n.note-editor .glyphicon-chevron-down:before {\n  content: \"\\e114\";\n}\n.note-editor .glyphicon-retweet:before {\n  content: \"\\e115\";\n}\n.note-editor .glyphicon-shopping-cart:before {\n  content: \"\\e116\";\n}\n.note-editor .glyphicon-folder-close:before {\n  content: \"\\e117\";\n}\n.note-editor .glyphicon-folder-open:before {\n  content: \"\\e118\";\n}\n.note-editor .glyphicon-resize-vertical:before {\n  content: \"\\e119\";\n}\n.note-editor .glyphicon-resize-horizontal:before {\n  content: \"\\e120\";\n}\n.note-editor .glyphicon-hdd:before {\n  content: \"\\e121\";\n}\n.note-editor .glyphicon-bullhorn:before {\n  content: \"\\e122\";\n}\n.note-editor .glyphicon-bell:before {\n  content: \"\\e123\";\n}\n.note-editor .glyphicon-certificate:before {\n  content: \"\\e124\";\n}\n.note-editor .glyphicon-thumbs-up:before {\n  content: \"\\e125\";\n}\n.note-editor .glyphicon-thumbs-down:before {\n  content: \"\\e126\";\n}\n.note-editor .glyphicon-hand-right:before {\n  content: \"\\e127\";\n}\n.note-editor .glyphicon-hand-left:before {\n  content: \"\\e128\";\n}\n.note-editor .glyphicon-hand-up:before {\n  content: \"\\e129\";\n}\n.note-editor .glyphicon-hand-down:before {\n  content: \"\\e130\";\n}\n.note-editor .glyphicon-circle-arrow-right:before {\n  content: \"\\e131\";\n}\n.note-editor .glyphicon-circle-arrow-left:before {\n  content: \"\\e132\";\n}\n.note-editor .glyphicon-circle-arrow-up:before {\n  content: \"\\e133\";\n}\n.note-editor .glyphicon-circle-arrow-down:before {\n  content: \"\\e134\";\n}\n.note-editor .glyphicon-globe:before {\n  content: \"\\e135\";\n}\n.note-editor .glyphicon-wrench:before {\n  content: \"\\e136\";\n}\n.note-editor .glyphicon-tasks:before {\n  content: \"\\e137\";\n}\n.note-editor .glyphicon-filter:before {\n  content: \"\\e138\";\n}\n.note-editor .glyphicon-briefcase:before {\n  content: \"\\e139\";\n}\n.note-editor .glyphicon-fullscreen:before {\n  content: \"\\e140\";\n}\n.note-editor .glyphicon-dashboard:before {\n  content: \"\\e141\";\n}\n.note-editor .glyphicon-paperclip:before {\n  content: \"\\e142\";\n}\n.note-editor .glyphicon-heart-empty:before {\n  content: \"\\e143\";\n}\n.note-editor .glyphicon-link:before {\n  content: \"\\e144\";\n}\n.note-editor .glyphicon-phone:before {\n  content: \"\\e145\";\n}\n.note-editor .glyphicon-pushpin:before {\n  content: \"\\e146\";\n}\n.note-editor .glyphicon-usd:before {\n  content: \"\\e148\";\n}\n.note-editor .glyphicon-gbp:before {\n  content: \"\\e149\";\n}\n.note-editor .glyphicon-sort:before {\n  content: \"\\e150\";\n}\n.note-editor .glyphicon-sort-by-alphabet:before {\n  content: \"\\e151\";\n}\n.note-editor .glyphicon-sort-by-alphabet-alt:before {\n  content: \"\\e152\";\n}\n.note-editor .glyphicon-sort-by-order:before {\n  content: \"\\e153\";\n}\n.note-editor .glyphicon-sort-by-order-alt:before {\n  content: \"\\e154\";\n}\n.note-editor .glyphicon-sort-by-attributes:before {\n  content: \"\\e155\";\n}\n.note-editor .glyphicon-sort-by-attributes-alt:before {\n  content: \"\\e156\";\n}\n.note-editor .glyphicon-unchecked:before {\n  content: \"\\e157\";\n}\n.note-editor .glyphicon-expand:before {\n  content: \"\\e158\";\n}\n.note-editor .glyphicon-collapse-down:before {\n  content: \"\\e159\";\n}\n.note-editor .glyphicon-collapse-up:before {\n  content: \"\\e160\";\n}\n.note-editor .glyphicon-log-in:before {\n  content: \"\\e161\";\n}\n.note-editor .glyphicon-flash:before {\n  content: \"\\e162\";\n}\n.note-editor .glyphicon-log-out:before {\n  content: \"\\e163\";\n}\n.note-editor .glyphicon-new-window:before {\n  content: \"\\e164\";\n}\n.note-editor .glyphicon-record:before {\n  content: \"\\e165\";\n}\n.note-editor .glyphicon-save:before {\n  content: \"\\e166\";\n}\n.note-editor .glyphicon-open:before {\n  content: \"\\e167\";\n}\n.note-editor .glyphicon-saved:before {\n  content: \"\\e168\";\n}\n.note-editor .glyphicon-import:before {\n  content: \"\\e169\";\n}\n.note-editor .glyphicon-export:before {\n  content: \"\\e170\";\n}\n.note-editor .glyphicon-send:before {\n  content: \"\\e171\";\n}\n.note-editor .glyphicon-floppy-disk:before {\n  content: \"\\e172\";\n}\n.note-editor .glyphicon-floppy-saved:before {\n  content: \"\\e173\";\n}\n.note-editor .glyphicon-floppy-remove:before {\n  content: \"\\e174\";\n}\n.note-editor .glyphicon-floppy-save:before {\n  content: \"\\e175\";\n}\n.note-editor .glyphicon-floppy-open:before {\n  content: \"\\e176\";\n}\n.note-editor .glyphicon-credit-card:before {\n  content: \"\\e177\";\n}\n.note-editor .glyphicon-transfer:before {\n  content: \"\\e178\";\n}\n.note-editor .glyphicon-cutlery:before {\n  content: \"\\e179\";\n}\n.note-editor .glyphicon-header:before {\n  content: \"\\e180\";\n}\n.note-editor .glyphicon-compressed:before {\n  content: \"\\e181\";\n}\n.note-editor .glyphicon-earphone:before {\n  content: \"\\e182\";\n}\n.note-editor .glyphicon-phone-alt:before {\n  content: \"\\e183\";\n}\n.note-editor .glyphicon-tower:before {\n  content: \"\\e184\";\n}\n.note-editor .glyphicon-stats:before {\n  content: \"\\e185\";\n}\n.note-editor .glyphicon-sd-video:before {\n  content: \"\\e186\";\n}\n.note-editor .glyphicon-hd-video:before {\n  content: \"\\e187\";\n}\n.note-editor .glyphicon-subtitles:before {\n  content: \"\\e188\";\n}\n.note-editor .glyphicon-sound-stereo:before {\n  content: \"\\e189\";\n}\n.note-editor .glyphicon-sound-dolby:before {\n  content: \"\\e190\";\n}\n.note-editor .glyphicon-sound-5-1:before {\n  content: \"\\e191\";\n}\n.note-editor .glyphicon-sound-6-1:before {\n  content: \"\\e192\";\n}\n.note-editor .glyphicon-sound-7-1:before {\n  content: \"\\e193\";\n}\n.note-editor .glyphicon-copyright-mark:before {\n  content: \"\\e194\";\n}\n.note-editor .glyphicon-registration-mark:before {\n  content: \"\\e195\";\n}\n.note-editor .glyphicon-cloud-download:before {\n  content: \"\\e197\";\n}\n.note-editor .glyphicon-cloud-upload:before {\n  content: \"\\e198\";\n}\n.note-editor .glyphicon-tree-conifer:before {\n  content: \"\\e199\";\n}\n.note-editor .glyphicon-tree-deciduous:before {\n  content: \"\\e200\";\n}\n.note-editor .caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top: 4px solid #000000;\n  border-right: 4px solid transparent;\n  border-left: 4px solid transparent;\n  border-bottom: 0 dotted;\n}\n.note-editor .dropdown {\n  position: relative;\n}\n.note-editor .dropdown-toggle:focus {\n  outline: 0;\n}\n.note-editor .dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  display: none;\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0;\n  list-style: none;\n  font-size: 14px;\n  background-color: #ffffff;\n  border: 1px solid #cccccc;\n  border: 1px solid rgba(0, 0, 0, 0.15);\n  border-radius: 4px;\n  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n  background-clip: padding-box;\n}\n.note-editor .dropdown-menu.pull-right {\n  right: 0;\n  left: auto;\n}\n.note-editor .dropdown-menu .divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.note-editor .dropdown-menu > li > a {\n  display: block;\n  padding: 3px 20px;\n  clear: both;\n  font-weight: normal;\n  line-height: 1.428571429;\n  color: #333333;\n  white-space: nowrap;\n}\n.note-editor .dropdown-menu > li > a:hover,\n.note-editor .dropdown-menu > li > a:focus {\n  text-decoration: none;\n  color: #262626;\n  background-color: #f5f5f5;\n}\n.note-editor .dropdown-menu > .active > a,\n.note-editor .dropdown-menu > .active > a:hover,\n.note-editor .dropdown-menu > .active > a:focus {\n  color: #ffffff;\n  text-decoration: none;\n  outline: 0;\n  background-color: #428bca;\n}\n.note-editor .dropdown-menu > .disabled > a,\n.note-editor .dropdown-menu > .disabled > a:hover,\n.note-editor .dropdown-menu > .disabled > a:focus {\n  color: #999999;\n}\n.note-editor .dropdown-menu > .disabled > a:hover,\n.note-editor .dropdown-menu > .disabled > a:focus {\n  text-decoration: none;\n  background-color: transparent;\n  background-image: none;\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n  cursor: not-allowed;\n}\n.note-editor .open > .dropdown-menu {\n  display: block;\n}\n.note-editor .open > a {\n  outline: 0;\n}\n.note-editor .dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: 12px;\n  line-height: 1.428571429;\n  color: #999999;\n}\n.note-editor .dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: 990;\n}\n.note-editor .pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n.note-editor .dropup .caret,\n.note-editor .navbar-fixed-bottom .dropdown .caret {\n  border-top: 0 dotted;\n  border-bottom: 4px solid #000000;\n  content: \"\";\n}\n.note-editor .dropup .dropdown-menu,\n.note-editor .navbar-fixed-bottom .dropdown .dropdown-menu {\n  top: auto;\n  bottom: 100%;\n  margin-bottom: 1px;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-right .dropdown-menu {\n    right: 0;\n    left: auto;\n  }\n}\n.btn-default .note-editor .caret {\n  border-top-color: #333333;\n}\n.btn-primary .note-editor .caret,\n.btn-success .note-editor .caret,\n.btn-warning .note-editor .caret,\n.btn-danger .note-editor .caret,\n.btn-info .note-editor .caret {\n  border-top-color: #fff;\n}\n.note-editor .dropup .btn-default .caret {\n  border-bottom-color: #333333;\n}\n.note-editor .dropup .btn-primary .caret,\n.note-editor .dropup .btn-success .caret,\n.note-editor .dropup .btn-warning .caret,\n.note-editor .dropup .btn-danger .caret,\n.note-editor .dropup .btn-info .caret {\n  border-bottom-color: #fff;\n}\n.note-editor .btn-group,\n.note-editor .btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n}\n.note-editor .btn-group > .btn,\n.note-editor .btn-group-vertical > .btn {\n  position: relative;\n  float: left;\n}\n.note-editor .btn-group > .btn:hover,\n.note-editor .btn-group-vertical > .btn:hover,\n.note-editor .btn-group > .btn:focus,\n.note-editor .btn-group-vertical > .btn:focus,\n.note-editor .btn-group > .btn:active,\n.note-editor .btn-group-vertical > .btn:active,\n.note-editor .btn-group > .btn.active,\n.note-editor .btn-group-vertical > .btn.active {\n  z-index: 2;\n}\n.note-editor .btn-group > .btn:focus,\n.note-editor .btn-group-vertical > .btn:focus {\n  outline: none;\n}\n.note-editor .btn-group .btn + .btn,\n.note-editor .btn-group .btn + .btn-group,\n.note-editor .btn-group .btn-group + .btn,\n.note-editor .btn-group .btn-group + .btn-group {\n  margin-left: -1px;\n}\n.note-editor .btn-toolbar:before,\n.note-editor .btn-toolbar:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .btn-toolbar:after {\n  clear: both;\n}\n.note-editor .btn-toolbar:before,\n.note-editor .btn-toolbar:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .btn-toolbar:after {\n  clear: both;\n}\n.note-editor .btn-toolbar .btn-group {\n  float: left;\n}\n.note-editor .btn-toolbar > .btn + .btn,\n.note-editor .btn-toolbar > .btn-group + .btn,\n.note-editor .btn-toolbar > .btn + .btn-group,\n.note-editor .btn-toolbar > .btn-group + .btn-group {\n  margin-left: 5px;\n}\n.note-editor .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n.note-editor .btn-group > .btn:first-child {\n  margin-left: 0;\n}\n.note-editor .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.note-editor .btn-group > .btn:last-child:not(:first-child),\n.note-editor .btn-group > .dropdown-toggle:not(:first-child) {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.note-editor .btn-group > .btn-group {\n  float: left;\n}\n.note-editor .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.note-editor .btn-group > .btn-group:first-child > .btn:last-child,\n.note-editor .btn-group > .btn-group:first-child > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.note-editor .btn-group > .btn-group:last-child > .btn:first-child {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.note-editor .btn-group .dropdown-toggle:active,\n.note-editor .btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n.note-editor .btn-group-xs > .btn {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n  padding: 1px 5px;\n}\n.note-editor .btn-group-sm > .btn {\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\n.note-editor .btn-group-lg > .btn {\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.33;\n  border-radius: 6px;\n}\n.note-editor .btn-group > .btn + .dropdown-toggle {\n  padding-left: 5px;\n  padding-right: 5px;\n}\n.note-editor .btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n.note-editor .btn-group.open .dropdown-toggle {\n  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.note-editor .btn .caret {\n  margin-left: 0;\n}\n.note-editor .btn-lg .caret {\n  border-width: 5px 5px 0;\n  border-bottom-width: 0;\n}\n.note-editor .dropup .btn-lg .caret {\n  border-width: 0 5px 5px;\n}\n.note-editor .btn-group-vertical > .btn,\n.note-editor .btn-group-vertical > .btn-group {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n}\n.note-editor .btn-group-vertical > .btn-group:before,\n.note-editor .btn-group-vertical > .btn-group:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .btn-group-vertical > .btn-group:after {\n  clear: both;\n}\n.note-editor .btn-group-vertical > .btn-group:before,\n.note-editor .btn-group-vertical > .btn-group:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .btn-group-vertical > .btn-group:after {\n  clear: both;\n}\n.note-editor .btn-group-vertical > .btn-group > .btn {\n  float: none;\n}\n.note-editor .btn-group-vertical > .btn + .btn,\n.note-editor .btn-group-vertical > .btn + .btn-group,\n.note-editor .btn-group-vertical > .btn-group + .btn,\n.note-editor .btn-group-vertical > .btn-group + .btn-group {\n  margin-top: -1px;\n  margin-left: 0;\n}\n.note-editor .btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.note-editor .btn-group-vertical > .btn:first-child:not(:last-child) {\n  border-top-right-radius: 4px;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.note-editor .btn-group-vertical > .btn:last-child:not(:first-child) {\n  border-bottom-left-radius: 4px;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.note-editor .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.note-editor .btn-group-vertical > .btn-group:first-child > .btn:last-child,\n.note-editor .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.note-editor .btn-group-vertical > .btn-group:last-child > .btn:first-child {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.note-editor .btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n}\n.note-editor .btn-group-justified .btn {\n  float: none;\n  display: table-cell;\n  width: 1%;\n}\n.note-editor [data-toggle=\"buttons\"] > .btn > input[type=\"radio\"],\n.note-editor [data-toggle=\"buttons\"] > .btn > input[type=\"checkbox\"] {\n  display: none;\n}\n.note-editor .input-group {\n  position: relative;\n  display: table;\n  border-collapse: separate;\n}\n.note-editor .input-group.col {\n  float: none;\n  padding-left: 0;\n  padding-right: 0;\n}\n.note-editor .input-group .form-control {\n  width: 100%;\n  margin-bottom: 0;\n}\n.note-editor .input-group-lg > .form-control,\n.note-editor .input-group-lg > .input-group-addon,\n.note-editor .input-group-lg > .input-group-btn > .btn {\n  height: 45px;\n  padding: 10px 16px;\n  font-size: 18px;\n  line-height: 1.33;\n  border-radius: 6px;\n}\nselect.note-editor .input-group-lg > .form-control,\nselect.note-editor .input-group-lg > .input-group-addon,\nselect.note-editor .input-group-lg > .input-group-btn > .btn {\n  height: 45px;\n  line-height: 45px;\n}\ntextarea.note-editor .input-group-lg > .form-control,\ntextarea.note-editor .input-group-lg > .input-group-addon,\ntextarea.note-editor .input-group-lg > .input-group-btn > .btn {\n  height: auto;\n}\n.note-editor .input-group-sm > .form-control,\n.note-editor .input-group-sm > .input-group-addon,\n.note-editor .input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  padding: 5px 10px;\n  font-size: 12px;\n  line-height: 1.5;\n  border-radius: 3px;\n}\nselect.note-editor .input-group-sm > .form-control,\nselect.note-editor .input-group-sm > .input-group-addon,\nselect.note-editor .input-group-sm > .input-group-btn > .btn {\n  height: 30px;\n  line-height: 30px;\n}\ntextarea.note-editor .input-group-sm > .form-control,\ntextarea.note-editor .input-group-sm > .input-group-addon,\ntextarea.note-editor .input-group-sm > .input-group-btn > .btn {\n  height: auto;\n}\n.note-editor .input-group-addon,\n.note-editor .input-group-btn,\n.note-editor .input-group .form-control {\n  display: table-cell;\n}\n.note-editor .input-group-addon:not(:first-child):not(:last-child),\n.note-editor .input-group-btn:not(:first-child):not(:last-child),\n.note-editor .input-group .form-control:not(:first-child):not(:last-child) {\n  border-radius: 0;\n}\n.note-editor .input-group-addon,\n.note-editor .input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle;\n}\n.note-editor .input-group-addon {\n  padding: 6px 12px;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 1;\n  color: #555555;\n  text-align: center;\n  background-color: #eeeeee;\n  border: 1px solid #cccccc;\n  border-radius: 4px;\n}\n.note-editor .input-group-addon.input-sm {\n  padding: 5px 10px;\n  font-size: 12px;\n  border-radius: 3px;\n}\n.note-editor .input-group-addon.input-lg {\n  padding: 10px 16px;\n  font-size: 18px;\n  border-radius: 6px;\n}\n.note-editor .input-group-addon input[type=\"radio\"],\n.note-editor .input-group-addon input[type=\"checkbox\"] {\n  margin-top: 0;\n}\n.note-editor .input-group .form-control:first-child,\n.note-editor .input-group-addon:first-child,\n.note-editor .input-group-btn:first-child > .btn,\n.note-editor .input-group-btn:first-child > .dropdown-toggle,\n.note-editor .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {\n  border-bottom-right-radius: 0;\n  border-top-right-radius: 0;\n}\n.note-editor .input-group-addon:first-child {\n  border-right: 0;\n}\n.note-editor .input-group .form-control:last-child,\n.note-editor .input-group-addon:last-child,\n.note-editor .input-group-btn:last-child > .btn,\n.note-editor .input-group-btn:last-child > .dropdown-toggle,\n.note-editor .input-group-btn:first-child > .btn:not(:first-child) {\n  border-bottom-left-radius: 0;\n  border-top-left-radius: 0;\n}\n.note-editor .input-group-addon:last-child {\n  border-left: 0;\n}\n.note-editor .input-group-btn {\n  position: relative;\n  white-space: nowrap;\n}\n.note-editor .input-group-btn:first-child > .btn {\n  margin-right: -1px;\n}\n.note-editor .input-group-btn:last-child > .btn {\n  margin-left: -1px;\n}\n.note-editor .input-group-btn > .btn {\n  position: relative;\n}\n.note-editor .input-group-btn > .btn + .btn {\n  margin-left: -4px;\n}\n.note-editor .input-group-btn > .btn:hover,\n.note-editor .input-group-btn > .btn:active {\n  z-index: 2;\n}\n.note-editor .nav {\n  margin-bottom: 0;\n  padding-left: 0;\n  list-style: none;\n}\n.note-editor .nav:before,\n.note-editor .nav:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .nav:after {\n  clear: both;\n}\n.note-editor .nav:before,\n.note-editor .nav:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .nav:after {\n  clear: both;\n}\n.note-editor .nav > li {\n  position: relative;\n  display: block;\n}\n.note-editor .nav > li > a {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n}\n.note-editor .nav > li > a:hover,\n.note-editor .nav > li > a:focus {\n  text-decoration: none;\n  background-color: #eeeeee;\n}\n.note-editor .nav > li.disabled > a {\n  color: #999999;\n}\n.note-editor .nav > li.disabled > a:hover,\n.note-editor .nav > li.disabled > a:focus {\n  color: #999999;\n  text-decoration: none;\n  background-color: transparent;\n  cursor: not-allowed;\n}\n.note-editor .nav .open > a,\n.note-editor .nav .open > a:hover,\n.note-editor .nav .open > a:focus {\n  background-color: #eeeeee;\n  border-color: #428bca;\n}\n.note-editor .nav .open > a .caret,\n.note-editor .nav .open > a:hover .caret,\n.note-editor .nav .open > a:focus .caret {\n  border-top-color: #2a6496;\n  border-bottom-color: #2a6496;\n}\n.note-editor .nav .nav-divider {\n  height: 1px;\n  margin: 9px 0;\n  overflow: hidden;\n  background-color: #e5e5e5;\n}\n.note-editor .nav > li > a > img {\n  max-width: none;\n}\n.note-editor .nav-tabs {\n  border-bottom: 1px solid #dddddd;\n}\n.note-editor .nav-tabs > li {\n  float: left;\n  margin-bottom: -1px;\n}\n.note-editor .nav-tabs > li > a {\n  margin-right: 2px;\n  line-height: 1.428571429;\n  border: 1px solid transparent;\n  border-radius: 4px 4px 0 0;\n}\n.note-editor .nav-tabs > li > a:hover {\n  border-color: #eeeeee #eeeeee #dddddd;\n}\n.note-editor .nav-tabs > li.active > a,\n.note-editor .nav-tabs > li.active > a:hover,\n.note-editor .nav-tabs > li.active > a:focus {\n  color: #555555;\n  background-color: #ffffff;\n  border: 1px solid #dddddd;\n  border-bottom-color: transparent;\n  cursor: default;\n}\n.note-editor .nav-tabs.nav-justified {\n  width: 100%;\n  border-bottom: 0;\n}\n.note-editor .nav-tabs.nav-justified > li {\n  float: none;\n}\n.note-editor .nav-tabs.nav-justified > li > a {\n  text-align: center;\n  margin-bottom: 5px;\n}\n@media (min-width: 768px) {\n  .note-editor .nav-tabs.nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .note-editor .nav-tabs.nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.note-editor .nav-tabs.nav-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.note-editor .nav-tabs.nav-justified > .active > a,\n.note-editor .nav-tabs.nav-justified > .active > a:hover,\n.note-editor .nav-tabs.nav-justified > .active > a:focus {\n  border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n  .note-editor .nav-tabs.nav-justified > li > a {\n    border-bottom: 1px solid #dddddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .note-editor .nav-tabs.nav-justified > .active > a,\n  .note-editor .nav-tabs.nav-justified > .active > a:hover,\n  .note-editor .nav-tabs.nav-justified > .active > a:focus {\n    border-bottom-color: #ffffff;\n  }\n}\n.note-editor .nav-pills > li {\n  float: left;\n}\n.note-editor .nav-pills > li > a {\n  border-radius: 4px;\n}\n.note-editor .nav-pills > li + li {\n  margin-left: 2px;\n}\n.note-editor .nav-pills > li.active > a,\n.note-editor .nav-pills > li.active > a:hover,\n.note-editor .nav-pills > li.active > a:focus {\n  color: #ffffff;\n  background-color: #428bca;\n}\n.note-editor .nav-pills > li.active > a .caret,\n.note-editor .nav-pills > li.active > a:hover .caret,\n.note-editor .nav-pills > li.active > a:focus .caret {\n  border-top-color: #ffffff;\n  border-bottom-color: #ffffff;\n}\n.note-editor .nav-stacked > li {\n  float: none;\n}\n.note-editor .nav-stacked > li + li {\n  margin-top: 2px;\n  margin-left: 0;\n}\n.note-editor .nav-justified {\n  width: 100%;\n}\n.note-editor .nav-justified > li {\n  float: none;\n}\n.note-editor .nav-justified > li > a {\n  text-align: center;\n  margin-bottom: 5px;\n}\n@media (min-width: 768px) {\n  .note-editor .nav-justified > li {\n    display: table-cell;\n    width: 1%;\n  }\n  .note-editor .nav-justified > li > a {\n    margin-bottom: 0;\n  }\n}\n.note-editor .nav-tabs-justified {\n  border-bottom: 0;\n}\n.note-editor .nav-tabs-justified > li > a {\n  margin-right: 0;\n  border-radius: 4px;\n}\n.note-editor .nav-tabs-justified > .active > a,\n.note-editor .nav-tabs-justified > .active > a:hover,\n.note-editor .nav-tabs-justified > .active > a:focus {\n  border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n  .note-editor .nav-tabs-justified > li > a {\n    border-bottom: 1px solid #dddddd;\n    border-radius: 4px 4px 0 0;\n  }\n  .note-editor .nav-tabs-justified > .active > a,\n  .note-editor .nav-tabs-justified > .active > a:hover,\n  .note-editor .nav-tabs-justified > .active > a:focus {\n    border-bottom-color: #ffffff;\n  }\n}\n.note-editor .tab-content > .tab-pane {\n  display: none;\n}\n.note-editor .tab-content > .active {\n  display: block;\n}\n.note-editor .nav .caret {\n  border-top-color: #428bca;\n  border-bottom-color: #428bca;\n}\n.note-editor .nav a:hover .caret {\n  border-top-color: #2a6496;\n  border-bottom-color: #2a6496;\n}\n.note-editor .nav-tabs .dropdown-menu {\n  margin-top: -1px;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.note-editor .navbar {\n  position: relative;\n  z-index: 1000;\n  min-height: 50px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n}\n.note-editor .navbar:before,\n.note-editor .navbar:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .navbar:after {\n  clear: both;\n}\n.note-editor .navbar:before,\n.note-editor .navbar:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .navbar:after {\n  clear: both;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar {\n    border-radius: 4px;\n  }\n}\n.note-editor .navbar-header:before,\n.note-editor .navbar-header:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .navbar-header:after {\n  clear: both;\n}\n.note-editor .navbar-header:before,\n.note-editor .navbar-header:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .navbar-header:after {\n  clear: both;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-header {\n    float: left;\n  }\n}\n.note-editor .navbar-collapse {\n  max-height: 340px;\n  overflow-x: visible;\n  padding-right: 15px;\n  padding-left: 15px;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n  -webkit-overflow-scrolling: touch;\n}\n.note-editor .navbar-collapse:before,\n.note-editor .navbar-collapse:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .navbar-collapse:after {\n  clear: both;\n}\n.note-editor .navbar-collapse:before,\n.note-editor .navbar-collapse:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .navbar-collapse:after {\n  clear: both;\n}\n.note-editor .navbar-collapse.in {\n  overflow-y: auto;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-collapse {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n  }\n  .note-editor .navbar-collapse.collapse {\n    display: block !important;\n    height: auto !important;\n    padding-bottom: 0;\n    overflow: visible !important;\n  }\n  .note-editor .navbar-collapse.in {\n    overflow-y: visible;\n  }\n  .note-editor .navbar-collapse .navbar-nav.navbar-left:first-child {\n    margin-left: -15px;\n  }\n  .note-editor .navbar-collapse .navbar-nav.navbar-right:last-child {\n    margin-right: -15px;\n  }\n  .note-editor .navbar-collapse .navbar-text:last-child {\n    margin-right: 0;\n  }\n}\n.note-editor .container > .navbar-header,\n.note-editor .container > .navbar-collapse {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n@media (min-width: 768px) {\n  .note-editor .container > .navbar-header,\n  .note-editor .container > .navbar-collapse {\n    margin-right: 0;\n    margin-left: 0;\n  }\n}\n.note-editor .navbar-static-top {\n  border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-static-top {\n    border-radius: 0;\n  }\n}\n.note-editor .navbar-fixed-top,\n.note-editor .navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-fixed-top,\n  .note-editor .navbar-fixed-bottom {\n    border-radius: 0;\n  }\n}\n.note-editor .navbar-fixed-top {\n  z-index: 1030;\n  top: 0;\n}\n.note-editor .navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0;\n}\n.note-editor .navbar-brand {\n  float: left;\n  padding: 15px 15px;\n  font-size: 18px;\n  line-height: 20px;\n}\n.note-editor .navbar-brand:hover,\n.note-editor .navbar-brand:focus {\n  text-decoration: none;\n}\n@media (min-width: 768px) {\n  .navbar > .container .note-editor .navbar-brand {\n    margin-left: -15px;\n  }\n}\n.note-editor .navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: 15px;\n  padding: 9px 10px;\n  margin-top: 8px;\n  margin-bottom: 8px;\n  background-color: transparent;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.note-editor .navbar-toggle .icon-bar {\n  display: block;\n  width: 22px;\n  height: 2px;\n  border-radius: 1px;\n}\n.note-editor .navbar-toggle .icon-bar + .icon-bar {\n  margin-top: 4px;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-toggle {\n    display: none;\n  }\n}\n.note-editor .navbar-nav {\n  margin: 7.5px -15px;\n}\n.note-editor .navbar-nav > li > a {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  line-height: 20px;\n}\n@media (max-width: 767px) {\n  .note-editor .navbar-nav .open .dropdown-menu {\n    position: static;\n    float: none;\n    width: auto;\n    margin-top: 0;\n    background-color: transparent;\n    border: 0;\n    box-shadow: none;\n  }\n  .note-editor .navbar-nav .open .dropdown-menu > li > a,\n  .note-editor .navbar-nav .open .dropdown-menu .dropdown-header {\n    padding: 5px 15px 5px 25px;\n  }\n  .note-editor .navbar-nav .open .dropdown-menu > li > a {\n    line-height: 20px;\n  }\n  .note-editor .navbar-nav .open .dropdown-menu > li > a:hover,\n  .note-editor .navbar-nav .open .dropdown-menu > li > a:focus {\n    background-image: none;\n  }\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-nav {\n    float: left;\n    margin: 0;\n  }\n  .note-editor .navbar-nav > li {\n    float: left;\n  }\n  .note-editor .navbar-nav > li > a {\n    padding-top: 15px;\n    padding-bottom: 15px;\n  }\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-left {\n    float: left !important;\n  }\n  .note-editor .navbar-right {\n    float: right !important;\n  }\n}\n.note-editor .navbar-form {\n  margin-left: -15px;\n  margin-right: -15px;\n  padding: 10px 15px;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n  margin-top: 8px;\n  margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-form .form-group {\n    display: inline-block;\n    margin-bottom: 0;\n    vertical-align: middle;\n  }\n  .note-editor .navbar-form .form-control {\n    display: inline-block;\n  }\n  .note-editor .navbar-form .radio,\n  .note-editor .navbar-form .checkbox {\n    display: inline-block;\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-left: 0;\n  }\n  .note-editor .navbar-form .radio input[type=\"radio\"],\n  .note-editor .navbar-form .checkbox input[type=\"checkbox\"] {\n    float: none;\n    margin-left: 0;\n  }\n}\n@media (max-width: 767px) {\n  .note-editor .navbar-form .form-group {\n    margin-bottom: 5px;\n  }\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-form {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    -webkit-box-shadow: none;\n    box-shadow: none;\n  }\n}\n.note-editor .navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.note-editor .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0;\n}\n.note-editor .navbar-nav.pull-right > li > .dropdown-menu,\n.note-editor .navbar-nav > li > .dropdown-menu.pull-right {\n  left: auto;\n  right: 0;\n}\n.note-editor .navbar-btn {\n  margin-top: 8px;\n  margin-bottom: 8px;\n}\n.note-editor .navbar-text {\n  float: left;\n  margin-top: 15px;\n  margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n  .note-editor .navbar-text {\n    margin-left: 15px;\n    margin-right: 15px;\n  }\n}\n.note-editor .navbar-default {\n  background-color: #f8f8f8;\n  border-color: #e7e7e7;\n}\n.note-editor .navbar-default .navbar-brand {\n  color: #777777;\n}\n.note-editor .navbar-default .navbar-brand:hover,\n.note-editor .navbar-default .navbar-brand:focus {\n  color: #5e5e5e;\n  background-color: transparent;\n}\n.note-editor .navbar-default .navbar-text {\n  color: #777777;\n}\n.note-editor .navbar-default .navbar-nav > li > a {\n  color: #777777;\n}\n.note-editor .navbar-default .navbar-nav > li > a:hover,\n.note-editor .navbar-default .navbar-nav > li > a:focus {\n  color: #333333;\n  background-color: transparent;\n}\n.note-editor .navbar-default .navbar-nav > .active > a,\n.note-editor .navbar-default .navbar-nav > .active > a:hover,\n.note-editor .navbar-default .navbar-nav > .active > a:focus {\n  color: #555555;\n  background-color: #e7e7e7;\n}\n.note-editor .navbar-default .navbar-nav > .disabled > a,\n.note-editor .navbar-default .navbar-nav > .disabled > a:hover,\n.note-editor .navbar-default .navbar-nav > .disabled > a:focus {\n  color: #cccccc;\n  background-color: transparent;\n}\n.note-editor .navbar-default .navbar-toggle {\n  border-color: #dddddd;\n}\n.note-editor .navbar-default .navbar-toggle:hover,\n.note-editor .navbar-default .navbar-toggle:focus {\n  background-color: #dddddd;\n}\n.note-editor .navbar-default .navbar-toggle .icon-bar {\n  background-color: #cccccc;\n}\n.note-editor .navbar-default .navbar-collapse,\n.note-editor .navbar-default .navbar-form {\n  border-color: #e7e7e7;\n}\n.note-editor .navbar-default .navbar-nav > .dropdown > a:hover .caret,\n.note-editor .navbar-default .navbar-nav > .dropdown > a:focus .caret {\n  border-top-color: #333333;\n  border-bottom-color: #333333;\n}\n.note-editor .navbar-default .navbar-nav > .open > a,\n.note-editor .navbar-default .navbar-nav > .open > a:hover,\n.note-editor .navbar-default .navbar-nav > .open > a:focus {\n  background-color: #e7e7e7;\n  color: #555555;\n}\n.note-editor .navbar-default .navbar-nav > .open > a .caret,\n.note-editor .navbar-default .navbar-nav > .open > a:hover .caret,\n.note-editor .navbar-default .navbar-nav > .open > a:focus .caret {\n  border-top-color: #555555;\n  border-bottom-color: #555555;\n}\n.note-editor .navbar-default .navbar-nav > .dropdown > a .caret {\n  border-top-color: #777777;\n  border-bottom-color: #777777;\n}\n@media (max-width: 767px) {\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n    color: #777777;\n  }\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #333333;\n    background-color: transparent;\n  }\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #555555;\n    background-color: #e7e7e7;\n  }\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .note-editor .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #cccccc;\n    background-color: transparent;\n  }\n}\n.note-editor .navbar-default .navbar-link {\n  color: #777777;\n}\n.note-editor .navbar-default .navbar-link:hover {\n  color: #333333;\n}\n.note-editor .navbar-inverse {\n  background-color: #222222;\n  border-color: #080808;\n}\n.note-editor .navbar-inverse .navbar-brand {\n  color: #999999;\n}\n.note-editor .navbar-inverse .navbar-brand:hover,\n.note-editor .navbar-inverse .navbar-brand:focus {\n  color: #ffffff;\n  background-color: transparent;\n}\n.note-editor .navbar-inverse .navbar-text {\n  color: #999999;\n}\n.note-editor .navbar-inverse .navbar-nav > li > a {\n  color: #999999;\n}\n.note-editor .navbar-inverse .navbar-nav > li > a:hover,\n.note-editor .navbar-inverse .navbar-nav > li > a:focus {\n  color: #ffffff;\n  background-color: transparent;\n}\n.note-editor .navbar-inverse .navbar-nav > .active > a,\n.note-editor .navbar-inverse .navbar-nav > .active > a:hover,\n.note-editor .navbar-inverse .navbar-nav > .active > a:focus {\n  color: #ffffff;\n  background-color: #080808;\n}\n.note-editor .navbar-inverse .navbar-nav > .disabled > a,\n.note-editor .navbar-inverse .navbar-nav > .disabled > a:hover,\n.note-editor .navbar-inverse .navbar-nav > .disabled > a:focus {\n  color: #444444;\n  background-color: transparent;\n}\n.note-editor .navbar-inverse .navbar-toggle {\n  border-color: #333333;\n}\n.note-editor .navbar-inverse .navbar-toggle:hover,\n.note-editor .navbar-inverse .navbar-toggle:focus {\n  background-color: #333333;\n}\n.note-editor .navbar-inverse .navbar-toggle .icon-bar {\n  background-color: #ffffff;\n}\n.note-editor .navbar-inverse .navbar-collapse,\n.note-editor .navbar-inverse .navbar-form {\n  border-color: #101010;\n}\n.note-editor .navbar-inverse .navbar-nav > .open > a,\n.note-editor .navbar-inverse .navbar-nav > .open > a:hover,\n.note-editor .navbar-inverse .navbar-nav > .open > a:focus {\n  background-color: #080808;\n  color: #ffffff;\n}\n.note-editor .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {\n  border-top-color: #ffffff;\n  border-bottom-color: #ffffff;\n}\n.note-editor .navbar-inverse .navbar-nav > .dropdown > a .caret {\n  border-top-color: #999999;\n  border-bottom-color: #999999;\n}\n.note-editor .navbar-inverse .navbar-nav > .open > a .caret,\n.note-editor .navbar-inverse .navbar-nav > .open > a:hover .caret,\n.note-editor .navbar-inverse .navbar-nav > .open > a:focus .caret {\n  border-top-color: #ffffff;\n  border-bottom-color: #ffffff;\n}\n@media (max-width: 767px) {\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n    border-color: #080808;\n  }\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n    color: #999999;\n  }\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n    color: #ffffff;\n    background-color: transparent;\n  }\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n    color: #ffffff;\n    background-color: #080808;\n  }\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n  .note-editor .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n    color: #444444;\n    background-color: transparent;\n  }\n}\n.note-editor .navbar-inverse .navbar-link {\n  color: #999999;\n}\n.note-editor .navbar-inverse .navbar-link:hover {\n  color: #ffffff;\n}\n.note-editor .breadcrumb {\n  padding: 8px 15px;\n  margin-bottom: 20px;\n  list-style: none;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n}\n.note-editor .breadcrumb > li {\n  display: inline-block;\n}\n.note-editor .breadcrumb > li + li:before {\n  content: \"/\\00a0\";\n  padding: 0 5px;\n  color: #cccccc;\n}\n.note-editor .breadcrumb > .active {\n  color: #999999;\n}\n.note-editor .pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: 20px 0;\n  border-radius: 4px;\n}\n.note-editor .pagination > li {\n  display: inline;\n}\n.note-editor .pagination > li > a,\n.note-editor .pagination > li > span {\n  position: relative;\n  float: left;\n  padding: 6px 12px;\n  line-height: 1.428571429;\n  text-decoration: none;\n  background-color: #ffffff;\n  border: 1px solid #dddddd;\n  margin-left: -1px;\n}\n.note-editor .pagination > li:first-child > a,\n.note-editor .pagination > li:first-child > span {\n  margin-left: 0;\n  border-bottom-left-radius: 4px;\n  border-top-left-radius: 4px;\n}\n.note-editor .pagination > li:last-child > a,\n.note-editor .pagination > li:last-child > span {\n  border-bottom-right-radius: 4px;\n  border-top-right-radius: 4px;\n}\n.note-editor .pagination > li > a:hover,\n.note-editor .pagination > li > span:hover,\n.note-editor .pagination > li > a:focus,\n.note-editor .pagination > li > span:focus {\n  background-color: #eeeeee;\n}\n.note-editor .pagination > .active > a,\n.note-editor .pagination > .active > span,\n.note-editor .pagination > .active > a:hover,\n.note-editor .pagination > .active > span:hover,\n.note-editor .pagination > .active > a:focus,\n.note-editor .pagination > .active > span:focus {\n  z-index: 2;\n  color: #ffffff;\n  background-color: #428bca;\n  border-color: #428bca;\n  cursor: default;\n}\n.note-editor .pagination > .disabled > span,\n.note-editor .pagination > .disabled > span:hover,\n.note-editor .pagination > .disabled > span:focus,\n.note-editor .pagination > .disabled > a,\n.note-editor .pagination > .disabled > a:hover,\n.note-editor .pagination > .disabled > a:focus {\n  color: #999999;\n  background-color: #ffffff;\n  border-color: #dddddd;\n  cursor: not-allowed;\n}\n.note-editor .pagination-lg > li > a,\n.note-editor .pagination-lg > li > span {\n  padding: 10px 16px;\n  font-size: 18px;\n}\n.note-editor .pagination-lg > li:first-child > a,\n.note-editor .pagination-lg > li:first-child > span {\n  border-bottom-left-radius: 6px;\n  border-top-left-radius: 6px;\n}\n.note-editor .pagination-lg > li:last-child > a,\n.note-editor .pagination-lg > li:last-child > span {\n  border-bottom-right-radius: 6px;\n  border-top-right-radius: 6px;\n}\n.note-editor .pagination-sm > li > a,\n.note-editor .pagination-sm > li > span {\n  padding: 5px 10px;\n  font-size: 12px;\n}\n.note-editor .pagination-sm > li:first-child > a,\n.note-editor .pagination-sm > li:first-child > span {\n  border-bottom-left-radius: 3px;\n  border-top-left-radius: 3px;\n}\n.note-editor .pagination-sm > li:last-child > a,\n.note-editor .pagination-sm > li:last-child > span {\n  border-bottom-right-radius: 3px;\n  border-top-right-radius: 3px;\n}\n.note-editor .pager {\n  padding-left: 0;\n  margin: 20px 0;\n  list-style: none;\n  text-align: center;\n}\n.note-editor .pager:before,\n.note-editor .pager:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .pager:after {\n  clear: both;\n}\n.note-editor .pager:before,\n.note-editor .pager:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .pager:after {\n  clear: both;\n}\n.note-editor .pager li {\n  display: inline;\n}\n.note-editor .pager li > a,\n.note-editor .pager li > span {\n  display: inline-block;\n  padding: 5px 14px;\n  background-color: #ffffff;\n  border: 1px solid #dddddd;\n  border-radius: 15px;\n}\n.note-editor .pager li > a:hover,\n.note-editor .pager li > a:focus {\n  text-decoration: none;\n  background-color: #eeeeee;\n}\n.note-editor .pager .next > a,\n.note-editor .pager .next > span {\n  float: right;\n}\n.note-editor .pager .previous > a,\n.note-editor .pager .previous > span {\n  float: left;\n}\n.note-editor .pager .disabled > a,\n.note-editor .pager .disabled > a:hover,\n.note-editor .pager .disabled > a:focus,\n.note-editor .pager .disabled > span {\n  color: #999999;\n  background-color: #ffffff;\n  cursor: not-allowed;\n}\n.note-editor .label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: #ffffff;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n}\n.note-editor .label[href]:hover,\n.note-editor .label[href]:focus {\n  color: #ffffff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.note-editor .label:empty {\n  display: none;\n}\n.note-editor .label-default {\n  background-color: #999999;\n}\n.note-editor .label-default[href]:hover,\n.note-editor .label-default[href]:focus {\n  background-color: #808080;\n}\n.note-editor .label-primary {\n  background-color: #428bca;\n}\n.note-editor .label-primary[href]:hover,\n.note-editor .label-primary[href]:focus {\n  background-color: #3071a9;\n}\n.note-editor .label-success {\n  background-color: #5cb85c;\n}\n.note-editor .label-success[href]:hover,\n.note-editor .label-success[href]:focus {\n  background-color: #449d44;\n}\n.note-editor .label-info {\n  background-color: #5bc0de;\n}\n.note-editor .label-info[href]:hover,\n.note-editor .label-info[href]:focus {\n  background-color: #31b0d5;\n}\n.note-editor .label-warning {\n  background-color: #f0ad4e;\n}\n.note-editor .label-warning[href]:hover,\n.note-editor .label-warning[href]:focus {\n  background-color: #ec971f;\n}\n.note-editor .label-danger {\n  background-color: #d9534f;\n}\n.note-editor .label-danger[href]:hover,\n.note-editor .label-danger[href]:focus {\n  background-color: #c9302c;\n}\n.note-editor .badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: 12px;\n  font-weight: bold;\n  color: #ffffff;\n  line-height: 1;\n  vertical-align: baseline;\n  white-space: nowrap;\n  text-align: center;\n  background-color: #999999;\n  border-radius: 10px;\n}\n.note-editor .badge:empty {\n  display: none;\n}\n.note-editor a.badge:hover,\n.note-editor a.badge:focus {\n  color: #ffffff;\n  text-decoration: none;\n  cursor: pointer;\n}\n.note-editor .btn .badge {\n  position: relative;\n  top: -1px;\n}\n.note-editor a.list-group-item.active > .badge,\n.note-editor .nav-pills > .active > a > .badge {\n  color: #428bca;\n  background-color: #ffffff;\n}\n.note-editor .nav-pills > li > a > .badge {\n  margin-left: 3px;\n}\n.note-editor .jumbotron {\n  padding: 30px;\n  margin-bottom: 30px;\n  font-size: 21px;\n  font-weight: 200;\n  line-height: 2.1428571435;\n  color: inherit;\n  background-color: #eeeeee;\n}\n.note-editor .jumbotron h1 {\n  line-height: 1;\n  color: inherit;\n}\n.note-editor .jumbotron p {\n  line-height: 1.4;\n}\n.container .note-editor .jumbotron {\n  border-radius: 6px;\n}\n@media screen and (min-width: 768px) {\n  .note-editor .jumbotron {\n    padding-top: 48px;\n    padding-bottom: 48px;\n  }\n  .container .note-editor .jumbotron {\n    padding-left: 60px;\n    padding-right: 60px;\n  }\n  .note-editor .jumbotron h1 {\n    font-size: 63px;\n  }\n}\n.note-editor .thumbnail {\n  padding: 4px;\n  line-height: 1.428571429;\n  background-color: #ffffff;\n  border: 1px solid #dddddd;\n  border-radius: 4px;\n  -webkit-transition: all 0.2s ease-in-out;\n  transition: all 0.2s ease-in-out;\n  display: inline-block;\n  max-width: 100%;\n  height: auto;\n  display: block;\n  margin-bottom: 20px;\n}\n.note-editor .thumbnail > img {\n  display: block;\n  max-width: 100%;\n  height: auto;\n}\n.note-editor a.thumbnail:hover,\n.note-editor a.thumbnail:focus,\n.note-editor a.thumbnail.active {\n  border-color: #428bca;\n}\n.note-editor .thumbnail > img {\n  margin-left: auto;\n  margin-right: auto;\n}\n.note-editor .thumbnail .caption {\n  padding: 9px;\n  color: #333333;\n}\n.note-editor .alert {\n  padding: 15px;\n  margin-bottom: 20px;\n  border: 1px solid transparent;\n  border-radius: 4px;\n}\n.note-editor .alert h4 {\n  margin-top: 0;\n  color: inherit;\n}\n.note-editor .alert .alert-link {\n  font-weight: bold;\n}\n.note-editor .alert > p,\n.note-editor .alert > ul {\n  margin-bottom: 0;\n}\n.note-editor .alert > p + p {\n  margin-top: 5px;\n}\n.note-editor .alert-dismissable {\n  padding-right: 35px;\n}\n.note-editor .alert-dismissable .close {\n  position: relative;\n  top: -2px;\n  right: -21px;\n  color: inherit;\n}\n.note-editor .alert-success {\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n  color: #468847;\n}\n.note-editor .alert-success hr {\n  border-top-color: #c9e2b3;\n}\n.note-editor .alert-success .alert-link {\n  color: #356635;\n}\n.note-editor .alert-info {\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n  color: #3a87ad;\n}\n.note-editor .alert-info hr {\n  border-top-color: #a6e1ec;\n}\n.note-editor .alert-info .alert-link {\n  color: #2d6987;\n}\n.note-editor .alert-warning {\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n  color: #c09853;\n}\n.note-editor .alert-warning hr {\n  border-top-color: #f7e1b5;\n}\n.note-editor .alert-warning .alert-link {\n  color: #a47e3c;\n}\n.note-editor .alert-danger {\n  background-color: #f2dede;\n  border-color: #ebccd1;\n  color: #b94a48;\n}\n.note-editor .alert-danger hr {\n  border-top-color: #e4b9c0;\n}\n.note-editor .alert-danger .alert-link {\n  color: #953b39;\n}\n@-webkit-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@-moz-keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n@-o-keyframes progress-bar-stripes {\n  from {\n    background-position: 0 0;\n  }\n  to {\n    background-position: 40px 0;\n  }\n}\n@keyframes progress-bar-stripes {\n  from {\n    background-position: 40px 0;\n  }\n  to {\n    background-position: 0 0;\n  }\n}\n.note-editor .progress {\n  overflow: hidden;\n  height: 20px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.note-editor .progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: 12px;\n  line-height: 20px;\n  color: #ffffff;\n  text-align: center;\n  background-color: #428bca;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n  -webkit-transition: width 0.6s ease;\n  transition: width 0.6s ease;\n}\n.note-editor .progress-striped .progress-bar {\n  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-size: 40px 40px;\n}\n.note-editor .progress.active .progress-bar {\n  -webkit-animation: progress-bar-stripes 2s linear infinite;\n  -moz-animation: progress-bar-stripes 2s linear infinite;\n  -ms-animation: progress-bar-stripes 2s linear infinite;\n  -o-animation: progress-bar-stripes 2s linear infinite;\n  animation: progress-bar-stripes 2s linear infinite;\n}\n.note-editor .progress-bar-success {\n  background-color: #5cb85c;\n}\n.progress-striped .note-editor .progress-bar-success {\n  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.note-editor .progress-bar-info {\n  background-color: #5bc0de;\n}\n.progress-striped .note-editor .progress-bar-info {\n  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.note-editor .progress-bar-warning {\n  background-color: #f0ad4e;\n}\n.progress-striped .note-editor .progress-bar-warning {\n  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.note-editor .progress-bar-danger {\n  background-color: #d9534f;\n}\n.progress-striped .note-editor .progress-bar-danger {\n  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.note-editor .media,\n.note-editor .media-body {\n  overflow: hidden;\n  zoom: 1;\n}\n.note-editor .media,\n.note-editor .media .media {\n  margin-top: 15px;\n}\n.note-editor .media:first-child {\n  margin-top: 0;\n}\n.note-editor .media-object {\n  display: block;\n}\n.note-editor .media-heading {\n  margin: 0 0 5px;\n}\n.note-editor .media > .pull-left {\n  margin-right: 10px;\n}\n.note-editor .media > .pull-right {\n  margin-left: 10px;\n}\n.note-editor .media-list {\n  padding-left: 0;\n  list-style: none;\n}\n.note-editor .list-group {\n  margin-bottom: 20px;\n  padding-left: 0;\n}\n.note-editor .list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #ffffff;\n  border: 1px solid #dddddd;\n}\n.note-editor .list-group-item:first-child {\n  border-top-right-radius: 4px;\n  border-top-left-radius: 4px;\n}\n.note-editor .list-group-item:last-child {\n  margin-bottom: 0;\n  border-bottom-right-radius: 4px;\n  border-bottom-left-radius: 4px;\n}\n.note-editor .list-group-item > .badge {\n  float: right;\n}\n.note-editor .list-group-item > .badge + .badge {\n  margin-right: 5px;\n}\n.note-editor a.list-group-item {\n  color: #555555;\n}\n.note-editor a.list-group-item .list-group-item-heading {\n  color: #333333;\n}\n.note-editor a.list-group-item:hover,\n.note-editor a.list-group-item:focus {\n  text-decoration: none;\n  background-color: #f5f5f5;\n}\n.note-editor a.list-group-item.active,\n.note-editor a.list-group-item.active:hover,\n.note-editor a.list-group-item.active:focus {\n  z-index: 2;\n  color: #ffffff;\n  background-color: #428bca;\n  border-color: #428bca;\n}\n.note-editor a.list-group-item.active .list-group-item-heading,\n.note-editor a.list-group-item.active:hover .list-group-item-heading,\n.note-editor a.list-group-item.active:focus .list-group-item-heading {\n  color: inherit;\n}\n.note-editor a.list-group-item.active .list-group-item-text,\n.note-editor a.list-group-item.active:hover .list-group-item-text,\n.note-editor a.list-group-item.active:focus .list-group-item-text {\n  color: #e1edf7;\n}\n.note-editor .list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.note-editor .list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n.note-editor .panel {\n  margin-bottom: 20px;\n  background-color: #ffffff;\n  border: 1px solid transparent;\n  border-radius: 4px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.note-editor .panel-body {\n  padding: 15px;\n}\n.note-editor .panel-body:before,\n.note-editor .panel-body:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .panel-body:after {\n  clear: both;\n}\n.note-editor .panel-body:before,\n.note-editor .panel-body:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.note-editor .panel-body:after {\n  clear: both;\n}\n.note-editor .panel > .list-group {\n  margin-bottom: 0;\n}\n.note-editor .panel > .list-group .list-group-item {\n  border-width: 1px 0;\n}\n.note-editor .panel > .list-group .list-group-item:first-child {\n  border-top-right-radius: 0;\n  border-top-left-radius: 0;\n}\n.note-editor .panel > .list-group .list-group-item:last-child {\n  border-bottom: 0;\n}\n.note-editor .panel-heading + .list-group .list-group-item:first-child {\n  border-top-width: 0;\n}\n.note-editor .panel > .table,\n.note-editor .panel > .table-responsive {\n  margin-bottom: 0;\n}\n.note-editor .panel > .panel-body + .table,\n.note-editor .panel > .panel-body + .table-responsive {\n  border-top: 1px solid #dddddd;\n}\n.note-editor .panel > .table-bordered,\n.note-editor .panel > .table-responsive > .table-bordered {\n  border: 0;\n}\n.note-editor .panel > .table-bordered > thead > tr > th:first-child,\n.note-editor .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.note-editor .panel > .table-bordered > tbody > tr > th:first-child,\n.note-editor .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.note-editor .panel > .table-bordered > tfoot > tr > th:first-child,\n.note-editor .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.note-editor .panel > .table-bordered > thead > tr > td:first-child,\n.note-editor .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.note-editor .panel > .table-bordered > tbody > tr > td:first-child,\n.note-editor .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.note-editor .panel > .table-bordered > tfoot > tr > td:first-child,\n.note-editor .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n  border-left: 0;\n}\n.note-editor .panel > .table-bordered > thead > tr > th:last-child,\n.note-editor .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.note-editor .panel > .table-bordered > tbody > tr > th:last-child,\n.note-editor .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.note-editor .panel > .table-bordered > tfoot > tr > th:last-child,\n.note-editor .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.note-editor .panel > .table-bordered > thead > tr > td:last-child,\n.note-editor .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.note-editor .panel > .table-bordered > tbody > tr > td:last-child,\n.note-editor .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.note-editor .panel > .table-bordered > tfoot > tr > td:last-child,\n.note-editor .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n  border-right: 0;\n}\n.note-editor .panel > .table-bordered > thead > tr:last-child > th,\n.note-editor .panel > .table-responsive > .table-bordered > thead > tr:last-child > th,\n.note-editor .panel > .table-bordered > tbody > tr:last-child > th,\n.note-editor .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.note-editor .panel > .table-bordered > tfoot > tr:last-child > th,\n.note-editor .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n.note-editor .panel > .table-bordered > thead > tr:last-child > td,\n.note-editor .panel > .table-responsive > .table-bordered > thead > tr:last-child > td,\n.note-editor .panel > .table-bordered > tbody > tr:last-child > td,\n.note-editor .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.note-editor .panel > .table-bordered > tfoot > tr:last-child > td,\n.note-editor .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n  border-bottom: 0;\n}\n.note-editor .panel-heading {\n  padding: 10px 15px;\n  border-bottom: 1px solid transparent;\n  border-top-right-radius: 3px;\n  border-top-left-radius: 3px;\n}\n.note-editor .panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: 16px;\n}\n.note-editor .panel-title > a {\n  color: inherit;\n}\n.note-editor .panel-footer {\n  padding: 10px 15px;\n  background-color: #f5f5f5;\n  border-top: 1px solid #dddddd;\n  border-bottom-right-radius: 3px;\n  border-bottom-left-radius: 3px;\n}\n.note-editor .panel-group .panel {\n  margin-bottom: 0;\n  border-radius: 4px;\n  overflow: hidden;\n}\n.note-editor .panel-group .panel + .panel {\n  margin-top: 5px;\n}\n.note-editor .panel-group .panel-heading {\n  border-bottom: 0;\n}\n.note-editor .panel-group .panel-heading + .panel-collapse .panel-body {\n  border-top: 1px solid #dddddd;\n}\n.note-editor .panel-group .panel-footer {\n  border-top: 0;\n}\n.note-editor .panel-group .panel-footer + .panel-collapse .panel-body {\n  border-bottom: 1px solid #dddddd;\n}\n.note-editor .panel-default {\n  border-color: #dddddd;\n}\n.note-editor .panel-default > .panel-heading {\n  color: #333333;\n  background-color: #f5f5f5;\n  border-color: #dddddd;\n}\n.note-editor .panel-default > .panel-heading + .panel-collapse .panel-body {\n  border-top-color: #dddddd;\n}\n.note-editor .panel-default > .panel-footer + .panel-collapse .panel-body {\n  border-bottom-color: #dddddd;\n}\n.note-editor .panel-primary {\n  border-color: #428bca;\n}\n.note-editor .panel-primary > .panel-heading {\n  color: #ffffff;\n  background-color: #428bca;\n  border-color: #428bca;\n}\n.note-editor .panel-primary > .panel-heading + .panel-collapse .panel-body {\n  border-top-color: #428bca;\n}\n.note-editor .panel-primary > .panel-footer + .panel-collapse .panel-body {\n  border-bottom-color: #428bca;\n}\n.note-editor .panel-success {\n  border-color: #d6e9c6;\n}\n.note-editor .panel-success > .panel-heading {\n  color: #468847;\n  background-color: #dff0d8;\n  border-color: #d6e9c6;\n}\n.note-editor .panel-success > .panel-heading + .panel-collapse .panel-body {\n  border-top-color: #d6e9c6;\n}\n.note-editor .panel-success > .panel-footer + .panel-collapse .panel-body {\n  border-bottom-color: #d6e9c6;\n}\n.note-editor .panel-warning {\n  border-color: #faebcc;\n}\n.note-editor .panel-warning > .panel-heading {\n  color: #c09853;\n  background-color: #fcf8e3;\n  border-color: #faebcc;\n}\n.note-editor .panel-warning > .panel-heading + .panel-collapse .panel-body {\n  border-top-color: #faebcc;\n}\n.note-editor .panel-warning > .panel-footer + .panel-collapse .panel-body {\n  border-bottom-color: #faebcc;\n}\n.note-editor .panel-danger {\n  border-color: #ebccd1;\n}\n.note-editor .panel-danger > .panel-heading {\n  color: #b94a48;\n  background-color: #f2dede;\n  border-color: #ebccd1;\n}\n.note-editor .panel-danger > .panel-heading + .panel-collapse .panel-body {\n  border-top-color: #ebccd1;\n}\n.note-editor .panel-danger > .panel-footer + .panel-collapse .panel-body {\n  border-bottom-color: #ebccd1;\n}\n.note-editor .panel-info {\n  border-color: #bce8f1;\n}\n.note-editor .panel-info > .panel-heading {\n  color: #3a87ad;\n  background-color: #d9edf7;\n  border-color: #bce8f1;\n}\n.note-editor .panel-info > .panel-heading + .panel-collapse .panel-body {\n  border-top-color: #bce8f1;\n}\n.note-editor .panel-info > .panel-footer + .panel-collapse .panel-body {\n  border-bottom-color: #bce8f1;\n}\n.note-editor .well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: #f5f5f5;\n  border: 1px solid #e3e3e3;\n  border-radius: 4px;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.note-editor .well blockquote {\n  border-color: #ddd;\n  border-color: rgba(0, 0, 0, 0.15);\n}\n.note-editor .well-lg {\n  padding: 24px;\n  border-radius: 6px;\n}\n.note-editor .well-sm {\n  padding: 9px;\n  border-radius: 3px;\n}\n.note-editor .close {\n  float: right;\n  font-size: 21px;\n  font-weight: bold;\n  line-height: 1;\n  color: #000000;\n  text-shadow: 0 1px 0 #ffffff;\n  opacity: 0.2;\n  filter: alpha(opacity=20);\n}\n.note-editor .close:hover,\n.note-editor .close:focus {\n  color: #000000;\n  text-decoration: none;\n  cursor: pointer;\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n}\nbutton.note-editor .close {\n  padding: 0;\n  cursor: pointer;\n  background: transparent;\n  border: 0;\n  -webkit-appearance: none;\n}\n.modal-open {\n  overflow: hidden;\n}\n.modal {\n  display: none;\n  overflow: auto;\n  overflow-y: scroll;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1040;\n}\n.modal.fade .modal-dialog {\n  -webkit-transform: translate(0, -25%);\n  -ms-transform: translate(0, -25%);\n  transform: translate(0, -25%);\n  -webkit-transition: -webkit-transform 0.3s ease-out;\n  -moz-transition: -moz-transform 0.3s ease-out;\n  -o-transition: -o-transform 0.3s ease-out;\n  transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n  -webkit-transform: translate(0, 0);\n  -ms-transform: translate(0, 0);\n  transform: translate(0, 0);\n}\n.modal-dialog {\n  margin-left: auto;\n  margin-right: auto;\n  width: auto;\n  padding: 10px;\n  z-index: 1050;\n}\n.modal-content {\n  position: relative;\n  background-color: #ffffff;\n  border: 1px solid #999999;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 6px;\n  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  background-clip: padding-box;\n  outline: none;\n}\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1030;\n  background-color: #000000;\n}\n.modal-backdrop.fade {\n  opacity: 0;\n  filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n}\n.modal-header {\n  padding: 15px;\n  border-bottom: 1px solid #e5e5e5;\n  min-height: 16.428571429px;\n}\n.modal-header .close {\n  margin-top: -2px;\n}\n.modal-title {\n  margin: 0;\n  line-height: 1.428571429;\n}\n.modal-body {\n  position: relative;\n  padding: 20px;\n}\n.modal-footer {\n  margin-top: 15px;\n  padding: 19px 20px 20px;\n  text-align: right;\n  border-top: 1px solid #e5e5e5;\n}\n.modal-footer:before,\n.modal-footer:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.modal-footer:after {\n  clear: both;\n}\n.modal-footer:before,\n.modal-footer:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.modal-footer:after {\n  clear: both;\n}\n.modal-footer .btn + .btn {\n  margin-left: 5px;\n  margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n  margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n  margin-left: 0;\n}\n@media screen and (min-width: 768px) {\n  .modal-dialog {\n    width: 600px;\n    padding-top: 30px;\n    padding-bottom: 30px;\n  }\n  .modal-content {\n    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n  }\n}\n.tooltip {\n  position: absolute;\n  z-index: 1030;\n  display: block;\n  visibility: visible;\n  font-size: 12px;\n  line-height: 1.4;\n  opacity: 0;\n  filter: alpha(opacity=0);\n}\n.tooltip.in {\n  opacity: 0.9;\n  filter: alpha(opacity=90);\n}\n.tooltip.top {\n  margin-top: -3px;\n  padding: 5px 0;\n}\n.tooltip.right {\n  margin-left: 3px;\n  padding: 0 5px;\n}\n.tooltip.bottom {\n  margin-top: 3px;\n  padding: 5px 0;\n}\n.tooltip.left {\n  margin-left: -3px;\n  padding: 0 5px;\n}\n.tooltip-inner {\n  max-width: 200px;\n  padding: 3px 8px;\n  color: #ffffff;\n  text-align: center;\n  text-decoration: none;\n  background-color: #000000;\n  border-radius: 4px;\n}\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n  bottom: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000000;\n}\n.tooltip.top-left .tooltip-arrow {\n  bottom: 0;\n  left: 5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000000;\n}\n.tooltip.top-right .tooltip-arrow {\n  bottom: 0;\n  right: 5px;\n  border-width: 5px 5px 0;\n  border-top-color: #000000;\n}\n.tooltip.right .tooltip-arrow {\n  top: 50%;\n  left: 0;\n  margin-top: -5px;\n  border-width: 5px 5px 5px 0;\n  border-right-color: #000000;\n}\n.tooltip.left .tooltip-arrow {\n  top: 50%;\n  right: 0;\n  margin-top: -5px;\n  border-width: 5px 0 5px 5px;\n  border-left-color: #000000;\n}\n.tooltip.bottom .tooltip-arrow {\n  top: 0;\n  left: 50%;\n  margin-left: -5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n  top: 0;\n  left: 5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n  top: 0;\n  right: 5px;\n  border-width: 0 5px 5px;\n  border-bottom-color: #000000;\n}\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1010;\n  display: none;\n  max-width: 276px;\n  padding: 1px;\n  text-align: left;\n  background-color: #ffffff;\n  background-clip: padding-box;\n  border: 1px solid #cccccc;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 6px;\n  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n  white-space: normal;\n}\n.popover.top {\n  margin-top: -10px;\n}\n.popover.right {\n  margin-left: 10px;\n}\n.popover.bottom {\n  margin-top: 10px;\n}\n.popover.left {\n  margin-left: -10px;\n}\n.popover-title {\n  margin: 0;\n  padding: 8px 14px;\n  font-size: 14px;\n  font-weight: normal;\n  line-height: 18px;\n  background-color: #f7f7f7;\n  border-bottom: 1px solid #ebebeb;\n  border-radius: 5px 5px 0 0;\n}\n.popover-content {\n  padding: 9px 14px;\n}\n.popover .arrow,\n.popover .arrow:after {\n  position: absolute;\n  display: block;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n.popover .arrow {\n  border-width: 11px;\n}\n.popover .arrow:after {\n  border-width: 10px;\n  content: \"\";\n}\n.popover.top .arrow {\n  left: 50%;\n  margin-left: -11px;\n  border-bottom-width: 0;\n  border-top-color: #999999;\n  border-top-color: rgba(0, 0, 0, 0.25);\n  bottom: -11px;\n}\n.popover.top .arrow:after {\n  content: \" \";\n  bottom: 1px;\n  margin-left: -10px;\n  border-bottom-width: 0;\n  border-top-color: #ffffff;\n}\n.popover.right .arrow {\n  top: 50%;\n  left: -11px;\n  margin-top: -11px;\n  border-left-width: 0;\n  border-right-color: #999999;\n  border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right .arrow:after {\n  content: \" \";\n  left: 1px;\n  bottom: -10px;\n  border-left-width: 0;\n  border-right-color: #ffffff;\n}\n.popover.bottom .arrow {\n  left: 50%;\n  margin-left: -11px;\n  border-top-width: 0;\n  border-bottom-color: #999999;\n  border-bottom-color: rgba(0, 0, 0, 0.25);\n  top: -11px;\n}\n.popover.bottom .arrow:after {\n  content: \" \";\n  top: 1px;\n  margin-left: -10px;\n  border-top-width: 0;\n  border-bottom-color: #ffffff;\n}\n.popover.left .arrow {\n  top: 50%;\n  right: -11px;\n  margin-top: -11px;\n  border-right-width: 0;\n  border-left-color: #999999;\n  border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left .arrow:after {\n  content: \" \";\n  right: 1px;\n  border-right-width: 0;\n  border-left-color: #ffffff;\n  bottom: -10px;\n}\n.carousel {\n  position: relative;\n}\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n}\n.carousel-inner > .item {\n  display: none;\n  position: relative;\n  -webkit-transition: 0.6s ease-in-out left;\n  transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n  display: block;\n  max-width: 100%;\n  height: auto;\n  line-height: 1;\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  display: block;\n}\n.carousel-inner > .active {\n  left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n  position: absolute;\n  top: 0;\n  width: 100%;\n}\n.carousel-inner > .next {\n  left: 100%;\n}\n.carousel-inner > .prev {\n  left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n  left: 0;\n}\n.carousel-inner > .active.left {\n  left: -100%;\n}\n.carousel-inner > .active.right {\n  left: 100%;\n}\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: 15%;\n  opacity: 0.5;\n  filter: alpha(opacity=50);\n  font-size: 20px;\n  color: #ffffff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-control.left {\n  background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));\n  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));\n  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n  left: auto;\n  right: 0;\n  background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));\n  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));\n  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n  color: #ffffff;\n  text-decoration: none;\n  opacity: 0.9;\n  filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n  position: absolute;\n  top: 50%;\n  z-index: 5;\n  display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n  left: 50%;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n  right: 50%;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n  width: 20px;\n  height: 20px;\n  margin-top: -10px;\n  margin-left: -10px;\n  font-family: serif;\n}\n.carousel-control .icon-prev:before {\n  content: '\\2039';\n}\n.carousel-control .icon-next:before {\n  content: '\\203a';\n}\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n}\n.carousel-indicators li {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin: 1px;\n  text-indent: -999px;\n  border: 1px solid #ffffff;\n  border-radius: 10px;\n  cursor: pointer;\n}\n.carousel-indicators .active {\n  margin: 0;\n  width: 12px;\n  height: 12px;\n  background-color: #ffffff;\n}\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: #ffffff;\n  text-align: center;\n  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n  text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n  .carousel-control .glyphicons-chevron-left,\n  .carousel-control .glyphicons-chevron-right,\n  .carousel-control .icon-prev,\n  .carousel-control .icon-next {\n    width: 30px;\n    height: 30px;\n    margin-top: -15px;\n    margin-left: -15px;\n    font-size: 30px;\n  }\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n.clearfix:before,\n.clearfix:after {\n  content: \" \";\n  /* 1 */\n\n  display: table;\n  /* 2 */\n\n}\n.clearfix:after {\n  clear: both;\n}\n.center-block {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n.hidden {\n  display: none !important;\n  visibility: hidden !important;\n}\n.affix {\n  position: fixed;\n}\n@-ms-viewport {\n  width: device-width;\n}\n.visible-xs,\ntr.visible-xs,\nth.visible-xs,\ntd.visible-xs {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-xs {\n    display: block !important;\n  }\n  tr.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-xs,\n  td.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-xs.visible-sm {\n    display: block !important;\n  }\n  tr.visible-xs.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-xs.visible-sm,\n  td.visible-xs.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-xs.visible-md {\n    display: block !important;\n  }\n  tr.visible-xs.visible-md {\n    display: table-row !important;\n  }\n  th.visible-xs.visible-md,\n  td.visible-xs.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-xs.visible-lg {\n    display: block !important;\n  }\n  tr.visible-xs.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-xs.visible-lg,\n  td.visible-xs.visible-lg {\n    display: table-cell !important;\n  }\n}\n.visible-sm,\ntr.visible-sm,\nth.visible-sm,\ntd.visible-sm {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-sm.visible-xs {\n    display: block !important;\n  }\n  tr.visible-sm.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-sm.visible-xs,\n  td.visible-sm.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-sm {\n    display: block !important;\n  }\n  tr.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-sm,\n  td.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-sm.visible-md {\n    display: block !important;\n  }\n  tr.visible-sm.visible-md {\n    display: table-row !important;\n  }\n  th.visible-sm.visible-md,\n  td.visible-sm.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-sm.visible-lg {\n    display: block !important;\n  }\n  tr.visible-sm.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-sm.visible-lg,\n  td.visible-sm.visible-lg {\n    display: table-cell !important;\n  }\n}\n.visible-md,\ntr.visible-md,\nth.visible-md,\ntd.visible-md {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-md.visible-xs {\n    display: block !important;\n  }\n  tr.visible-md.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-md.visible-xs,\n  td.visible-md.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-md.visible-sm {\n    display: block !important;\n  }\n  tr.visible-md.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-md.visible-sm,\n  td.visible-md.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-md {\n    display: block !important;\n  }\n  tr.visible-md {\n    display: table-row !important;\n  }\n  th.visible-md,\n  td.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-md.visible-lg {\n    display: block !important;\n  }\n  tr.visible-md.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-md.visible-lg,\n  td.visible-md.visible-lg {\n    display: table-cell !important;\n  }\n}\n.visible-lg,\ntr.visible-lg,\nth.visible-lg,\ntd.visible-lg {\n  display: none !important;\n}\n@media (max-width: 767px) {\n  .visible-lg.visible-xs {\n    display: block !important;\n  }\n  tr.visible-lg.visible-xs {\n    display: table-row !important;\n  }\n  th.visible-lg.visible-xs,\n  td.visible-lg.visible-xs {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .visible-lg.visible-sm {\n    display: block !important;\n  }\n  tr.visible-lg.visible-sm {\n    display: table-row !important;\n  }\n  th.visible-lg.visible-sm,\n  td.visible-lg.visible-sm {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .visible-lg.visible-md {\n    display: block !important;\n  }\n  tr.visible-lg.visible-md {\n    display: table-row !important;\n  }\n  th.visible-lg.visible-md,\n  td.visible-lg.visible-md {\n    display: table-cell !important;\n  }\n}\n@media (min-width: 1200px) {\n  .visible-lg {\n    display: block !important;\n  }\n  tr.visible-lg {\n    display: table-row !important;\n  }\n  th.visible-lg,\n  td.visible-lg {\n    display: table-cell !important;\n  }\n}\n.hidden-xs {\n  display: block !important;\n}\ntr.hidden-xs {\n  display: table-row !important;\n}\nth.hidden-xs,\ntd.hidden-xs {\n  display: table-cell !important;\n}\n@media (max-width: 767px) {\n  .hidden-xs,\n  tr.hidden-xs,\n  th.hidden-xs,\n  td.hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-xs.hidden-sm,\n  tr.hidden-xs.hidden-sm,\n  th.hidden-xs.hidden-sm,\n  td.hidden-xs.hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-xs.hidden-md,\n  tr.hidden-xs.hidden-md,\n  th.hidden-xs.hidden-md,\n  td.hidden-xs.hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-xs.hidden-lg,\n  tr.hidden-xs.hidden-lg,\n  th.hidden-xs.hidden-lg,\n  td.hidden-xs.hidden-lg {\n    display: none !important;\n  }\n}\n.hidden-sm {\n  display: block !important;\n}\ntr.hidden-sm {\n  display: table-row !important;\n}\nth.hidden-sm,\ntd.hidden-sm {\n  display: table-cell !important;\n}\n@media (max-width: 767px) {\n  .hidden-sm.hidden-xs,\n  tr.hidden-sm.hidden-xs,\n  th.hidden-sm.hidden-xs,\n  td.hidden-sm.hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-sm,\n  tr.hidden-sm,\n  th.hidden-sm,\n  td.hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-sm.hidden-md,\n  tr.hidden-sm.hidden-md,\n  th.hidden-sm.hidden-md,\n  td.hidden-sm.hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-sm.hidden-lg,\n  tr.hidden-sm.hidden-lg,\n  th.hidden-sm.hidden-lg,\n  td.hidden-sm.hidden-lg {\n    display: none !important;\n  }\n}\n.hidden-md {\n  display: block !important;\n}\ntr.hidden-md {\n  display: table-row !important;\n}\nth.hidden-md,\ntd.hidden-md {\n  display: table-cell !important;\n}\n@media (max-width: 767px) {\n  .hidden-md.hidden-xs,\n  tr.hidden-md.hidden-xs,\n  th.hidden-md.hidden-xs,\n  td.hidden-md.hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-md.hidden-sm,\n  tr.hidden-md.hidden-sm,\n  th.hidden-md.hidden-sm,\n  td.hidden-md.hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-md,\n  tr.hidden-md,\n  th.hidden-md,\n  td.hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-md.hidden-lg,\n  tr.hidden-md.hidden-lg,\n  th.hidden-md.hidden-lg,\n  td.hidden-md.hidden-lg {\n    display: none !important;\n  }\n}\n.hidden-lg {\n  display: block !important;\n}\ntr.hidden-lg {\n  display: table-row !important;\n}\nth.hidden-lg,\ntd.hidden-lg {\n  display: table-cell !important;\n}\n@media (max-width: 767px) {\n  .hidden-lg.hidden-xs,\n  tr.hidden-lg.hidden-xs,\n  th.hidden-lg.hidden-xs,\n  td.hidden-lg.hidden-xs {\n    display: none !important;\n  }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n  .hidden-lg.hidden-sm,\n  tr.hidden-lg.hidden-sm,\n  th.hidden-lg.hidden-sm,\n  td.hidden-lg.hidden-sm {\n    display: none !important;\n  }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n  .hidden-lg.hidden-md,\n  tr.hidden-lg.hidden-md,\n  th.hidden-lg.hidden-md,\n  td.hidden-lg.hidden-md {\n    display: none !important;\n  }\n}\n@media (min-width: 1200px) {\n  .hidden-lg,\n  tr.hidden-lg,\n  th.hidden-lg,\n  td.hidden-lg {\n    display: none !important;\n  }\n}\n.visible-print,\ntr.visible-print,\nth.visible-print,\ntd.visible-print {\n  display: none !important;\n}\n@media print {\n  .visible-print {\n    display: block !important;\n  }\n  tr.visible-print {\n    display: table-row !important;\n  }\n  th.visible-print,\n  td.visible-print {\n    display: table-cell !important;\n  }\n  .hidden-print,\n  tr.hidden-print,\n  th.hidden-print,\n  td.hidden-print {\n    display: none !important;\n  }\n}\n"
  },
  {
    "path": "public/admin/css/plugins/summernote/summernote.css",
    "content": ".note-editor {\n    height: 300px;\n}\n\n.note-editor .note-dropzone {\n    position: absolute;\n    z-index: 1;\n    display: none;\n    color: #87cefa;\n    background-color: white;\n    border: 2px dashed #87cefa;\n    opacity: .95;\n    pointer-event: none\n}\n\n.note-editor .note-dropzone .note-dropzone-message {\n    display: table-cell;\n    font-size: 28px;\n    font-weight: bold;\n    text-align: center;\n    vertical-align: middle\n}\n\n.note-editor .note-dropzone.hover {\n    color: #098ddf;\n    border: 2px dashed #098ddf\n}\n\n.note-editor.dragover .note-dropzone {\n    display: table\n}\n\n.note-editor.fullscreen {\n    position: fixed;\n    top: 0;\n    left: 0;\n    z-index: 1050;\n    width: 100%\n}\n\n.note-editor.fullscreen .note-editable {\n    background-color: white\n}\n\n.note-editor.fullscreen .note-resizebar {\n    display: none\n}\n\n.note-editor.codeview .note-editable {\n    display: none\n}\n\n.note-editor.codeview .note-codable {\n    display: block\n}\n\n.note-editor .note-toolbar {\n    padding-bottom: 5px;\n    padding-left: 10px;\n    padding-top: 5px;\n    margin: 0;\n    background-color: #f5f5f5;\n    border-bottom: 1px solid #E7EAEC\n}\n\n.note-editor .note-toolbar > .btn-group {\n    margin-top: 5px;\n    margin-right: 5px;\n    margin-left: 0\n}\n\n.note-editor .note-toolbar .note-table .dropdown-menu {\n    min-width: 0;\n    padding: 5px\n}\n\n.note-editor .note-toolbar .note-table .dropdown-menu .note-dimension-picker {\n    font-size: 18px\n}\n\n.note-editor .note-toolbar .note-table .dropdown-menu .note-dimension-picker .note-dimension-picker-mousecatcher {\n    position: absolute !important;\n    z-index: 3;\n    width: 10em;\n    height: 10em;\n    cursor: pointer\n}\n\n.note-editor .note-toolbar .note-table .dropdown-menu .note-dimension-picker .note-dimension-picker-unhighlighted {\n    position: relative !important;\n    z-index: 1;\n    width: 5em;\n    height: 5em;\n    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat\n}\n\n.note-editor .note-toolbar .note-table .dropdown-menu .note-dimension-picker .note-dimension-picker-highlighted {\n    position: absolute !important;\n    z-index: 2;\n    width: 1em;\n    height: 1em;\n    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat\n}\n\n.note-editor .note-toolbar .note-style h1, .note-editor .note-toolbar .note-style h2, .note-editor .note-toolbar .note-style h3, .note-editor .note-toolbar .note-style h4, .note-editor .note-toolbar .note-style h5, .note-editor .note-toolbar .note-style h6, .note-editor .note-toolbar .note-style blockquote {\n    margin: 0\n}\n\n.note-editor .note-toolbar .note-color .dropdown-toggle {\n    width: 20px;\n    padding-left: 5px\n}\n\n.note-editor .note-toolbar .note-color .dropdown-menu {\n    min-width: 290px\n}\n\n.note-editor .note-toolbar .note-color .dropdown-menu .btn-group {\n    margin: 0\n}\n\n.note-editor .note-toolbar .note-color .dropdown-menu .btn-group:first-child {\n    margin: 0 5px\n}\n\n.note-editor .note-toolbar .note-color .dropdown-menu .btn-group .note-palette-title {\n    margin: 2px 7px;\n    font-size: 12px;\n    text-align: center;\n    border-bottom: 1px solid #eee\n}\n\n.note-editor .note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset {\n    padding: 0 3px;\n    margin: 5px;\n    font-size: 12px;\n    cursor: pointer;\n    -webkit-border-radius: 5px;\n    -moz-border-radius: 5px;\n    border-radius: 5px\n}\n\n.note-editor .note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset:hover {\n    background: #eee\n}\n\n.note-editor .note-toolbar .note-para .dropdown-menu {\n    min-width: 216px;\n    padding: 5px\n}\n\n.note-editor .note-toolbar .note-para .dropdown-menu > div:first-child {\n    margin-right: 5px\n}\n\n.note-editor .note-statusbar {\n    background-color: #f5f5f5\n}\n\n.note-editor .note-statusbar .note-resizebar {\n    width: 100%;\n    height: 8px;\n    cursor: s-resize;\n    border-top: 1px solid #a9a9a9\n}\n\n.note-editor .note-statusbar .note-resizebar .note-icon-bar {\n    width: 20px;\n    margin: 1px auto;\n    border-top: 1px solid #a9a9a9\n}\n\n.note-editor .note-popover .popover {\n    max-width: none\n}\n\n.note-editor .note-popover .popover .popover-content {\n    padding: 5px\n}\n\n.note-editor .note-popover .popover .popover-content a {\n    display: inline-block;\n    max-width: 200px;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    vertical-align: middle\n}\n\n.note-editor .note-popover .popover .popover-content .btn-group + .btn-group {\n    margin-left: 5px\n}\n\n.note-editor .note-popover .popover .arrow {\n    left: 20px\n}\n\n.note-editor .note-handle .note-control-selection {\n    position: absolute;\n    display: none;\n    border: 1px solid black\n}\n\n.note-editor .note-handle .note-control-selection > div {\n    position: absolute\n}\n\n.note-editor .note-handle .note-control-selection .note-control-selection-bg {\n    width: 100%;\n    height: 100%;\n    background-color: black;\n    -webkit-opacity: .3;\n    -khtml-opacity: .3;\n    -moz-opacity: .3;\n    opacity: .3;\n    -ms-filter: alpha(opacity=30);\n    filter: alpha(opacity=30)\n}\n\n.note-editor .note-handle .note-control-selection .note-control-handle {\n    width: 7px;\n    height: 7px;\n    border: 1px solid black\n}\n\n.note-editor .note-handle .note-control-selection .note-control-holder {\n    width: 7px;\n    height: 7px;\n    border: 1px solid black\n}\n\n.note-editor .note-handle .note-control-selection .note-control-sizing {\n    width: 7px;\n    height: 7px;\n    background-color: white;\n    border: 1px solid black\n}\n\n.note-editor .note-handle .note-control-selection .note-control-nw {\n    top: -5px;\n    left: -5px;\n    border-right: 0;\n    border-bottom: 0\n}\n\n.note-editor .note-handle .note-control-selection .note-control-ne {\n    top: -5px;\n    right: -5px;\n    border-bottom: 0;\n    border-left: none\n}\n\n.note-editor .note-handle .note-control-selection .note-control-sw {\n    bottom: -5px;\n    left: -5px;\n    border-top: 0;\n    border-right: 0\n}\n\n.note-editor .note-handle .note-control-selection .note-control-se {\n    right: -5px;\n    bottom: -5px;\n    cursor: se-resize\n}\n\n.note-editor .note-handle .note-control-selection .note-control-selection-info {\n    right: 0;\n    bottom: 0;\n    padding: 5px;\n    margin: 5px;\n    font-size: 12px;\n    color: white;\n    background-color: black;\n    -webkit-border-radius: 5px;\n    -moz-border-radius: 5px;\n    border-radius: 5px;\n    -webkit-opacity: .7;\n    -khtml-opacity: .7;\n    -moz-opacity: .7;\n    opacity: .7;\n    -ms-filter: alpha(opacity=70);\n    filter: alpha(opacity=70)\n}\n\n.note-editor .note-dialog > div {\n    display: none\n}\n\n.note-editor .note-dialog .note-image-dialog .note-dropzone {\n    min-height: 100px;\n    margin-bottom: 10px;\n    font-size: 30px;\n    line-height: 4;\n    color: lightgray;\n    text-align: center;\n    border: 4px dashed lightgray\n}\n\n.note-editor .note-dialog .note-help-dialog {\n    font-size: 12px;\n    color: #ccc;\n    background: transparent;\n    background-color: #222 !important;\n    border: 0;\n    -webkit-opacity: .9;\n    -khtml-opacity: .9;\n    -moz-opacity: .9;\n    opacity: .9;\n    -ms-filter: alpha(opacity=90);\n    filter: alpha(opacity=90)\n}\n\n.note-editor .note-dialog .note-help-dialog .modal-content {\n    background: transparent;\n    border: 1px solid white;\n    -webkit-border-radius: 5px;\n    -moz-border-radius: 5px;\n    border-radius: 5px;\n    -webkit-box-shadow: none;\n    -moz-box-shadow: none;\n    box-shadow: none\n}\n\n.note-editor .note-dialog .note-help-dialog a {\n    font-size: 12px;\n    color: white\n}\n\n.note-editor .note-dialog .note-help-dialog .title {\n    padding-bottom: 5px;\n    font-size: 14px;\n    font-weight: bold;\n    color: white;\n    border-bottom: white 1px solid\n}\n\n.note-editor .note-dialog .note-help-dialog .modal-close {\n    font-size: 14px;\n    color: #dd0;\n    cursor: pointer\n}\n\n.note-editor .note-dialog .note-help-dialog .note-shortcut-layout {\n    width: 100%\n}\n\n.note-editor .note-dialog .note-help-dialog .note-shortcut-layout td {\n    vertical-align: top\n}\n\n.note-editor .note-dialog .note-help-dialog .note-shortcut {\n    margin-top: 8px\n}\n\n.note-editor .note-dialog .note-help-dialog .note-shortcut th {\n    font-size: 13px;\n    color: #dd0;\n    text-align: left\n}\n\n.note-editor .note-dialog .note-help-dialog .note-shortcut td:first-child {\n    min-width: 110px;\n    padding-right: 10px;\n    font-family: \"Courier New\";\n    color: #dd0;\n    text-align: right\n}\n\n.note-editor .note-editable {\n    padding: 20px;\n    overflow: auto;\n    outline: 0\n}\n\n.note-editor .note-editable[contenteditable=\"false\"] {\n    background-color: #e5e5e5\n}\n\n.note-editor .note-codable {\n    display: none;\n    width: 100%;\n    padding: 10px;\n    margin-bottom: 0;\n    font-family: Menlo, Monaco, monospace, sans-serif;\n    font-size: 14px;\n    color: #ccc;\n    background-color: #222;\n    border: 0;\n    -webkit-border-radius: 0;\n    -moz-border-radius: 0;\n    border-radius: 0;\n    box-shadow: none;\n    -webkit-box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    -ms-box-sizing: border-box;\n    box-sizing: border-box;\n    resize: none\n}\n\n.note-editor .dropdown-menu {\n    min-width: 90px\n}\n\n.note-editor .dropdown-menu.right {\n    right: 0;\n    left: auto\n}\n\n.note-editor .dropdown-menu.right::before {\n    right: 9px;\n    left: auto !important\n}\n\n.note-editor .dropdown-menu.right::after {\n    right: 10px;\n    left: auto !important\n}\n\n.note-editor .dropdown-menu li a i {\n    color: deepskyblue;\n    visibility: hidden\n}\n\n.note-editor .dropdown-menu li a.checked i {\n    visibility: visible\n}\n\n.note-editor .note-fontsize-10 {\n    font-size: 10px\n}\n\n.note-editor .note-color-palette {\n    line-height: 1\n}\n\n.note-editor .note-color-palette div .note-color-btn {\n    width: 17px;\n    height: 17px;\n    padding: 0;\n    margin: 0;\n    border: 1px solid #fff\n}\n\n.note-editor .note-color-palette div .note-color-btn:hover {\n    border: 1px solid #000\n}"
  },
  {
    "path": "public/admin/css/plugins/switchery/switchery.css",
    "content": "/*\n *\n * Main stylesheet for Switchery.\n * http://abpetkov.github.io/switchery/\n *\n */\n\n.switchery {\n    background-color: #fff;\n    border: 1px solid #dfdfdf;\n    border-radius: 20px;\n    cursor: pointer;\n    display: inline-block;\n    height: 30px;\n    position: relative;\n    vertical-align: middle;\n    width: 50px;\n\n    -webkit-box-sizing: content-box;\n    -moz-box-sizing: content-box;\n    box-sizing: content-box;\n}\n\n.switchery > small {\n    background: #fff;\n    border-radius: 100%;\n    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);\n    height: 30px;\n    position: absolute;\n    top: 0;\n    width: 30px;\n}"
  },
  {
    "path": "public/admin/css/style.css",
    "content": "@import url(\"//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&amp;lang=en\");\n/*\n *\n *   INSPINIA - Responsive Admin Theme\n *   Copyright 2014 Webapplayers.com\n *\n*/\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n  font-weight: 100;\n}\nh1 {\n  font-size: 30px;\n}\nh2 {\n  font-size: 24px;\n}\nh3 {\n  font-size: 16px;\n}\nh4 {\n  font-size: 14px;\n}\nh5 {\n  font-size: 12px;\n}\nh6 {\n  font-size: 10px;\n}\nh3,\nh4,\nh5 {\n  margin-top: 5px;\n  font-weight: 600;\n}\n.nav > li > a {\n  color: #a7b1c2;\n  font-weight: 600;\n  padding: 14px 20px 14px 25px;\n}\n.nav.navbar-right > li > a {\n  color: #999c9e;\n}\n.nav > li.active > a {\n  color: #ffffff;\n}\n.navbar-default .nav > li > a:hover,\n.navbar-default .nav > li > a:focus {\n  background-color: #293846;\n  color: white;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n  background: #fff;\n}\n.nav.navbar-top-links > li > a:hover,\n.nav.navbar-top-links > li > a:focus {\n  background-color: transparent;\n}\n.nav > li > a i {\n  margin-right: 6px;\n}\n.navbar {\n  border: 0;\n}\n.navbar-default {\n  background-color: transparent;\n  border-color: #2f4050;\n}\n.navbar-top-links li {\n  display: inline-block;\n}\n.navbar-top-links li:last-child {\n  margin-right: 40px;\n}\n.navbar-top-links li a {\n  padding: 20px 10px;\n  min-height: 50px;\n}\n.dropdown-menu {\n  border: medium none;\n  border-radius: 3px;\n  box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);\n  display: none;\n  float: left;\n  font-size: 12px;\n  left: 0;\n  list-style: none outside none;\n  padding: 0;\n  position: absolute;\n  text-shadow: none;\n  top: 100%;\n  z-index: 1000;\n  border-radius: 2px;\n}\n.dropdown-menu > li > a {\n  border-radius: 3px;\n  color: inherit;\n  line-height: 25px;\n  margin: 4px;\n  text-align: left;\n  font-weight: normal;\n}\n.dropdown-menu > li > a.font-bold {\n  font-weight: 600;\n}\n.navbar-top-links .dropdown-menu li {\n  display: block;\n}\n.navbar-top-links .dropdown-menu li:last-child {\n  margin-right: 0;\n}\n.navbar-top-links .dropdown-menu li a {\n  padding: 3px 20px;\n  min-height: 0;\n}\n.navbar-top-links .dropdown-menu li a div {\n  white-space: normal;\n}\n.navbar-top-links .dropdown-messages,\n.navbar-top-links .dropdown-tasks,\n.navbar-top-links .dropdown-alerts {\n  width: 310px;\n  min-width: 0;\n}\n.navbar-top-links .dropdown-messages {\n  margin-left: 5px;\n}\n.navbar-top-links .dropdown-tasks {\n  margin-left: -59px;\n}\n.navbar-top-links .dropdown-alerts {\n  margin-left: -123px;\n}\n.navbar-top-links .dropdown-user {\n  right: 0;\n  left: auto;\n}\n.dropdown-messages,\n.dropdown-alerts {\n  padding: 10px 10px 10px 10px;\n}\n.dropdown-messages li a,\n.dropdown-alerts li a {\n  font-size: 12px;\n}\n.dropdown-messages li em,\n.dropdown-alerts li em {\n  font-size: 10px;\n}\n.nav.navbar-top-links .dropdown-alerts a {\n  font-size: 12px;\n}\n.nav-header {\n  padding: 33px 25px;\n  background: url(\"patterns/header-profile.png\") no-repeat;\n}\n.pace-done .nav-header {\n  transition: all 0.5s;\n}\n.nav > li.active {\n  border-left: 4px solid #19aa8d;\n  background: #293846;\n}\n.nav.nav-second-level > li.active {\n  border: none;\n}\n.nav.nav-second-level.collapse[style] {\n  height: auto !important;\n}\n.nav-header a {\n  color: #DFE4ED;\n}\n.nav-header .text-muted {\n  color: #8095a8;\n}\n.minimalize-styl-2 {\n  padding: 4px 12px;\n  margin: 14px 5px 5px 20px;\n  font-size: 14px;\n  float: left;\n}\n.navbar-form-custom {\n  float: left;\n  height: 50px;\n  padding: 0;\n  width: 200px;\n  display: inline-table;\n}\n.navbar-form-custom .form-group {\n  margin-bottom: 0;\n}\n.nav.navbar-top-links a {\n  font-size: 14px;\n}\n.navbar-form-custom .form-control {\n  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);\n  border: medium none;\n  font-size: 14px;\n  height: 60px;\n  margin: 0;\n  z-index: 2000;\n}\n.count-info .label {\n  line-height: 12px;\n  padding: 2px 5px;\n  position: absolute;\n  right: 6px;\n  top: 12px;\n}\n.arrow {\n  float: right;\n}\n.fa.arrow:before {\n  content: \"\\f104\";\n}\n.active > a > .fa.arrow:before {\n  content: \"\\f107\";\n}\n.nav-second-level li,\n.nav-third-level li {\n  border-bottom: none !important;\n}\n.nav-second-level li a {\n  padding: 7px 10px 7px 10px;\n  padding-left: 52px;\n}\n.nav-third-level li a {\n  padding-left: 62px;\n}\n.nav-second-level li:last-child {\n  margin-bottom: 10px;\n}\nbody:not(.fixed-sidebar).mini-navbar .nav li:hover > .nav-second-level,\n.mini-navbar .nav li:focus > .nav-second-level {\n  display: block;\n  border-radius: 0 2px 2px 0;\n  min-width: 140px;\n  height: auto;\n}\nbody.mini-navbar .navbar-default .nav > li > .nav-second-level li a {\n  font-size: 12px;\n  border-radius: 3px;\n}\n.fixed-nav .slimScrollDiv #side-menu {\n  padding-bottom: 60px;\n}\n.mini-navbar .nav-second-level li a {\n  padding: 10px 10px 10px 15px;\n}\n.mini-navbar .nav-second-level {\n  position: absolute;\n  left: 70px;\n  top: 0px;\n  background-color: #2f4050;\n  padding: 10px 10px 10px 10px;\n  font-size: 12px;\n}\n.mini-navbar li.active .nav-second-level {\n  left: 65px;\n}\n.navbar-default .special_link a {\n  background: #1ab394;\n  color: white;\n}\n.navbar-default .special_link a:hover {\n  background: #17987e !important;\n  color: white;\n}\n.navbar-default .special_link a span.label {\n  background: #fff;\n  color: #1ab394;\n}\n.navbar-default .landing_link a {\n  background: #1cc09f;\n  color: white;\n}\n.navbar-default .landing_link a:hover {\n  background: #1ab394 !important;\n  color: white;\n}\n.navbar-default .landing_link a span.label {\n  background: #fff;\n  color: #1cc09f;\n}\n.logo-element {\n  text-align: center;\n  font-size: 18px;\n  font-weight: 600;\n  color: white;\n  display: none;\n  padding: 18px 0;\n}\n.pace-done .navbar-static-side,\n.pace-done .nav-header,\n.pace-done li.active,\n.pace-done #page-wrapper,\n.pace-done .footer {\n  -webkit-transition: all 0.5s;\n  -moz-transition: all 0.5s;\n  -o-transition: all 0.5s;\n  transition: all 0.5s;\n}\n.navbar-fixed-top {\n  background: #fff;\n  transition-duration: 0.5s;\n  border-bottom: 1px solid #e7eaec !important;\n}\n.navbar-fixed-top,\n.navbar-static-top {\n  background: #f3f3f4;\n}\n.fixed-nav #wrapper {\n  margin-top: 60px;\n}\n.fixed-nav .minimalize-styl-2 {\n  margin: 14px 5px 5px 15px;\n}\n.body-small .navbar-fixed-top {\n  margin-left: 0px;\n}\nbody.mini-navbar .navbar-static-side {\n  width: 70px;\n}\nbody.mini-navbar .profile-element,\nbody.mini-navbar .nav-label,\nbody.mini-navbar .navbar-default .nav li a span {\n  display: none;\n}\nbody:not(.fixed-sidebar).mini-navbar .nav-second-level {\n  display: none;\n}\nbody.mini-navbar .navbar-default .nav > li > a {\n  font-size: 16px;\n}\nbody.mini-navbar .logo-element {\n  display: block;\n}\nbody.mini-navbar .nav-header {\n  padding: 0;\n  background-color: #1ab394;\n}\nbody.mini-navbar #page-wrapper {\n  margin: 0 0 0 70px;\n}\nbody.fixed-sidebar.mini-navbar .footer {\n  margin: 0 0 0 0px;\n}\nbody.mini-navbar #page-wrapper {\n  margin: 0 0 0 70px;\n}\nbody.fixed-sidebar .navbar-static-side {\n  position: fixed;\n  width: 220px;\n  z-index: 101;\n  height: 100%;\n}\nbody.fixed-sidebar.mini-navbar .navbar-static-side {\n  width: 0px;\n}\nbody.fixed-sidebar.mini-navbar #page-wrapper {\n  margin: 0 0 0 0px;\n}\nbody.body-small.fixed-sidebar.mini-navbar #page-wrapper {\n  margin: 0 0 0 220px;\n}\nbody.body-small.fixed-sidebar.mini-navbar .navbar-static-side {\n  width: 220px;\n}\n.fixed-sidebar.mini-navbar .nav li:focus > .nav-second-level {\n  display: block;\n  height: auto;\n}\nbody.fixed-sidebar.mini-navbar .navbar-default .nav > li > .nav-second-level li a {\n  font-size: 12px;\n  border-radius: 3px;\n}\n.fixed-sidebar.mini-navbar .nav-second-level li a {\n  padding: 10px 10px 10px 15px;\n}\n.fixed-sidebar.mini-navbar .nav-second-level {\n  position: relative;\n  padding: 0;\n  font-size: 13px;\n}\n.fixed-sidebar.mini-navbar li.active .nav-second-level {\n  left: 0px;\n}\nbody.fixed-sidebar.mini-navbar .navbar-default .nav > li > a {\n  font-size: 13px;\n}\nbody.fixed-sidebar.mini-navbar .nav-label,\nbody.fixed-sidebar.mini-navbar .navbar-default .nav li a span {\n  display: inline;\n}\n.fixed-sidebar.mini-navbar .nav-second-level li a {\n  padding: 7px 10px 7px 52px;\n}\n.fixed-sidebar.mini-navbar .nav-second-level {\n  left: 0px;\n}\n.top-navigation #page-wrapper {\n  margin-left: 0;\n}\n.top-navigation .pace .pace-progress {\n  left: 0;\n}\n.top-navigation .navbar-nav .dropdown-menu > .active > a {\n  background: white;\n  color: #1ab394;\n  font-weight: bold;\n}\n.white-bg .navbar-fixed-top,\n.white-bg .navbar-static-top {\n  background: #fff;\n}\n.top-navigation .navbar {\n  margin-bottom: 0;\n}\n.top-navigation .nav > li > a {\n  padding: 15px 20px;\n  color: #676a6c;\n}\n.top-navigation .nav > li a:hover,\n.top-navigation .nav > li a:focus {\n  background: #fff;\n  color: #1ab394;\n}\n.top-navigation .nav > li.active {\n  background: #fff;\n  border: none;\n}\n.top-navigation .nav > li.active > a {\n  color: #1ab394;\n}\n.top-navigation .navbar-right {\n  margin-right: 10px;\n}\n.top-navigation .navbar-nav .dropdown-menu {\n  box-shadow: none;\n  border: 1px solid #e7eaec;\n}\n.top-navigation .dropdown-menu > li > a {\n  margin: 0;\n  padding: 7px 20px;\n}\n.navbar .dropdown-menu {\n  margin-top: 0px;\n}\n.top-navigation .navbar-brand {\n  background: #1ab394;\n  color: #fff;\n  padding: 15px 25px;\n}\n.top-navigation .navbar-top-links li:last-child {\n  margin-right: 0;\n}\n.top-navigation.mini-navbar #page-wrapper,\n.top-navigation.body-small.fixed-sidebar.mini-navbar #page-wrapper,\n.mini-navbar .top-navigation #page-wrapper,\nbody-small.fixed-sidebar.mini-navbar .top-navigation #page-wrapper {\n  margin: 0;\n}\n.top-navigation.fixed-nav #wrapper,\n.fixed-nav #wrapper.top-navigation {\n  margin-top: 50px;\n}\n.top-navigation .footer.fixed {\n  margin-left: 0 !important;\n}\n.top-navigation .wrapper.wrapper-content {\n  padding: 40px;\n}\n.top-navigation.body-small .wrapper.wrapper-content,\n.body-small .top-navigation .wrapper.wrapper-content {\n  padding: 40px 0px 40px 0px;\n}\n.navbar-toggle {\n  background-color: #1ab394;\n  color: #fff;\n  padding: 6px 12px;\n  font-size: 14px;\n}\n.top-navigation .navbar-nav .open .dropdown-menu > li > a,\n.top-navigation .navbar-nav .open .dropdown-menu .dropdown-header {\n  padding: 10px 15px 10px 20px;\n}\n@media (max-width: 768px) {\n  .top-navigation .navbar-header {\n    display: block;\n    float: none;\n  }\n}\n.menu-visible-lg,\n.menu-visible-md {\n  display: none !important;\n}\n@media (min-width: 1200px) {\n  .menu-visible-lg {\n    display: block !important;\n  }\n}\n@media (min-width: 992px) {\n  .menu-visible-md {\n    display: block !important;\n  }\n}\n@media (max-width: 767px) {\n  .menu-visible-md {\n    display: block !important;\n  }\n  .menu-visible-lg {\n    display: block !important;\n  }\n}\n.btn {\n  border-radius: 3px;\n}\n.float-e-margins .btn {\n  margin-bottom: 5px;\n}\n.btn-w-m {\n  min-width: 120px;\n}\n.btn-primary.btn-outline {\n  color: #1ab394;\n}\n.btn-success.btn-outline {\n  color: #1c84c6;\n}\n.btn-info.btn-outline {\n  color: #23c6c8;\n}\n.btn-warning.btn-outline {\n  color: #f8ac59;\n}\n.btn-danger.btn-outline {\n  color: #ed5565;\n}\n.btn-primary.btn-outline:hover,\n.btn-success.btn-outline:hover,\n.btn-info.btn-outline:hover,\n.btn-warning.btn-outline:hover,\n.btn-danger.btn-outline:hover {\n  color: #fff;\n}\n.btn-primary {\n  background-color: #1ab394;\n  border-color: #1ab394;\n  color: #FFFFFF;\n}\n.btn-primary:hover,\n.btn-primary:focus,\n.btn-primary:active,\n.btn-primary.active,\n.open .dropdown-toggle.btn-primary {\n  background-color: #18a689;\n  border-color: #18a689;\n  color: #FFFFFF;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open .dropdown-toggle.btn-primary {\n  background-image: none;\n}\n.btn-primary.disabled,\n.btn-primary.disabled:hover,\n.btn-primary.disabled:focus,\n.btn-primary.disabled:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled],\n.btn-primary[disabled]:hover,\n.btn-primary[disabled]:focus,\n.btn-primary[disabled]:active,\n.btn-primary.active[disabled],\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-primary:hover,\nfieldset[disabled] .btn-primary:focus,\nfieldset[disabled] .btn-primary:active,\nfieldset[disabled] .btn-primary.active {\n  background-color: #1dc5a3;\n  border-color: #1dc5a3;\n}\n.btn-success {\n  background-color: #1c84c6;\n  border-color: #1c84c6;\n  color: #FFFFFF;\n}\n.btn-success:hover,\n.btn-success:focus,\n.btn-success:active,\n.btn-success.active,\n.open .dropdown-toggle.btn-success {\n  background-color: #1a7bb9;\n  border-color: #1a7bb9;\n  color: #FFFFFF;\n}\n.btn-success:active,\n.btn-success.active,\n.open .dropdown-toggle.btn-success {\n  background-image: none;\n}\n.btn-success.disabled,\n.btn-success.disabled:hover,\n.btn-success.disabled:focus,\n.btn-success.disabled:active,\n.btn-success.disabled.active,\n.btn-success[disabled],\n.btn-success[disabled]:hover,\n.btn-success[disabled]:focus,\n.btn-success[disabled]:active,\n.btn-success.active[disabled],\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-success:hover,\nfieldset[disabled] .btn-success:focus,\nfieldset[disabled] .btn-success:active,\nfieldset[disabled] .btn-success.active {\n  background-color: #1f90d8;\n  border-color: #1f90d8;\n}\n.btn-info {\n  background-color: #23c6c8;\n  border-color: #23c6c8;\n  color: #FFFFFF;\n}\n.btn-info:hover,\n.btn-info:focus,\n.btn-info:active,\n.btn-info.active,\n.open .dropdown-toggle.btn-info {\n  background-color: #21b9bb;\n  border-color: #21b9bb;\n  color: #FFFFFF;\n}\n.btn-info:active,\n.btn-info.active,\n.open .dropdown-toggle.btn-info {\n  background-image: none;\n}\n.btn-info.disabled,\n.btn-info.disabled:hover,\n.btn-info.disabled:focus,\n.btn-info.disabled:active,\n.btn-info.disabled.active,\n.btn-info[disabled],\n.btn-info[disabled]:hover,\n.btn-info[disabled]:focus,\n.btn-info[disabled]:active,\n.btn-info.active[disabled],\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-info:hover,\nfieldset[disabled] .btn-info:focus,\nfieldset[disabled] .btn-info:active,\nfieldset[disabled] .btn-info.active {\n  background-color: #26d7d9;\n  border-color: #26d7d9;\n}\n.btn-default {\n  background-color: #c2c2c2;\n  border-color: #c2c2c2;\n  color: #FFFFFF;\n}\n.btn-default:hover,\n.btn-default:focus,\n.btn-default:active,\n.btn-default.active,\n.open .dropdown-toggle.btn-default {\n  background-color: #bababa;\n  border-color: #bababa;\n  color: #FFFFFF;\n}\n.btn-default:active,\n.btn-default.active,\n.open .dropdown-toggle.btn-default {\n  background-image: none;\n}\n.btn-default.disabled,\n.btn-default.disabled:hover,\n.btn-default.disabled:focus,\n.btn-default.disabled:active,\n.btn-default.disabled.active,\n.btn-default[disabled],\n.btn-default[disabled]:hover,\n.btn-default[disabled]:focus,\n.btn-default[disabled]:active,\n.btn-default.active[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-default:hover,\nfieldset[disabled] .btn-default:focus,\nfieldset[disabled] .btn-default:active,\nfieldset[disabled] .btn-default.active {\n  background-color: #cccccc;\n  border-color: #cccccc;\n}\n.btn-warning {\n  background-color: #f8ac59;\n  border-color: #f8ac59;\n  color: #FFFFFF;\n}\n.btn-warning:hover,\n.btn-warning:focus,\n.btn-warning:active,\n.btn-warning.active,\n.open .dropdown-toggle.btn-warning {\n  background-color: #f7a54a;\n  border-color: #f7a54a;\n  color: #FFFFFF;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open .dropdown-toggle.btn-warning {\n  background-image: none;\n}\n.btn-warning.disabled,\n.btn-warning.disabled:hover,\n.btn-warning.disabled:focus,\n.btn-warning.disabled:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled],\n.btn-warning[disabled]:hover,\n.btn-warning[disabled]:focus,\n.btn-warning[disabled]:active,\n.btn-warning.active[disabled],\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-warning:hover,\nfieldset[disabled] .btn-warning:focus,\nfieldset[disabled] .btn-warning:active,\nfieldset[disabled] .btn-warning.active {\n  background-color: #f9b66d;\n  border-color: #f9b66d;\n}\n.btn-danger {\n  background-color: #ed5565;\n  border-color: #ed5565;\n  color: #FFFFFF;\n}\n.btn-danger:hover,\n.btn-danger:focus,\n.btn-danger:active,\n.btn-danger.active,\n.open .dropdown-toggle.btn-danger {\n  background-color: #ec4758;\n  border-color: #ec4758;\n  color: #FFFFFF;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open .dropdown-toggle.btn-danger {\n  background-image: none;\n}\n.btn-danger.disabled,\n.btn-danger.disabled:hover,\n.btn-danger.disabled:focus,\n.btn-danger.disabled:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled],\n.btn-danger[disabled]:hover,\n.btn-danger[disabled]:focus,\n.btn-danger[disabled]:active,\n.btn-danger.active[disabled],\nfieldset[disabled] .btn-danger,\nfieldset[disabled] .btn-danger:hover,\nfieldset[disabled] .btn-danger:focus,\nfieldset[disabled] .btn-danger:active,\nfieldset[disabled] .btn-danger.active {\n  background-color: #ef6776;\n  border-color: #ef6776;\n}\n.btn-link {\n  color: inherit;\n}\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active,\n.btn-link.active,\n.open .dropdown-toggle.btn-link {\n  color: #1c84c6;\n}\n.btn-link:active,\n.btn-link.active,\n.open .dropdown-toggle.btn-link {\n  background-image: none;\n}\n.btn-link.disabled,\n.btn-link.disabled:hover,\n.btn-link.disabled:focus,\n.btn-link.disabled:active,\n.btn-link.disabled.active,\n.btn-link[disabled],\n.btn-link[disabled]:hover,\n.btn-link[disabled]:focus,\n.btn-link[disabled]:active,\n.btn-link.active[disabled],\nfieldset[disabled] .btn-link,\nfieldset[disabled] .btn-link:hover,\nfieldset[disabled] .btn-link:focus,\nfieldset[disabled] .btn-link:active,\nfieldset[disabled] .btn-link.active {\n  color: #cacaca;\n}\n.btn-white {\n  color: inherit;\n  background: white;\n  border: 1px solid #e7eaec;\n}\n.btn-white:hover,\n.btn-white:focus,\n.btn-white:active,\n.btn-white.active,\n.open .dropdown-toggle.btn-white {\n  color: inherit;\n  border: 1px solid #d2d2d2;\n}\n.btn-white:active,\n.btn-white.active {\n  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;\n}\n.btn-white:active,\n.btn-white.active,\n.open .dropdown-toggle.btn-white {\n  background-image: none;\n}\n.btn-white.disabled,\n.btn-white.disabled:hover,\n.btn-white.disabled:focus,\n.btn-white.disabled:active,\n.btn-white.disabled.active,\n.btn-white[disabled],\n.btn-white[disabled]:hover,\n.btn-white[disabled]:focus,\n.btn-white[disabled]:active,\n.btn-white.active[disabled],\nfieldset[disabled] .btn-white,\nfieldset[disabled] .btn-white:hover,\nfieldset[disabled] .btn-white:focus,\nfieldset[disabled] .btn-white:active,\nfieldset[disabled] .btn-white.active {\n  color: #cacaca;\n}\n.form-control,\n.form-control:focus,\n.has-error .form-control:focus,\n.has-success .form-control:focus,\n.has-warning .form-control:focus,\n.navbar-collapse,\n.navbar-form,\n.navbar-form-custom .form-control:focus,\n.navbar-form-custom .form-control:hover,\n.open .btn.dropdown-toggle,\n.panel,\n.popover,\n.progress,\n.progress-bar {\n  box-shadow: none;\n}\n.btn-outline {\n  color: inherit;\n  background-color: transparent;\n  transition: all .5s;\n}\n.btn-rounded {\n  border-radius: 50px;\n}\n.btn-large-dim {\n  width: 90px;\n  height: 90px;\n  font-size: 42px;\n}\nbutton.dim {\n  display: inline-block;\n  color: #fff;\n  text-decoration: none;\n  text-transform: uppercase;\n  text-align: center;\n  padding-top: 6px;\n  margin-right: 10px;\n  position: relative;\n  cursor: pointer;\n  border-radius: 5px;\n  font-weight: 600;\n  margin-bottom: 20px !important;\n}\nbutton.dim:active {\n  top: 3px;\n}\nbutton.btn-primary.dim {\n  box-shadow: inset 0px 0px 0px #16987e, 0px 5px 0px 0px #16987e, 0px 10px 5px #999999;\n}\nbutton.btn-primary.dim:active {\n  box-shadow: inset 0px 0px 0px #16987e, 0px 2px 0px 0px #16987e, 0px 5px 3px #999999;\n}\nbutton.btn-default.dim {\n  box-shadow: inset 0px 0px 0px #b3b3b3, 0px 5px 0px 0px #b3b3b3, 0px 10px 5px #999999;\n}\nbutton.btn-default.dim:active {\n  box-shadow: inset 0px 0px 0px #b3b3b3, 0px 2px 0px 0px #b3b3b3, 0px 5px 3px #999999;\n}\nbutton.btn-warning.dim {\n  box-shadow: inset 0px 0px 0px #f79d3c, 0px 5px 0px 0px #f79d3c, 0px 10px 5px #999999;\n}\nbutton.btn-warning.dim:active {\n  box-shadow: inset 0px 0px 0px #f79d3c, 0px 2px 0px 0px #f79d3c, 0px 5px 3px #999999;\n}\nbutton.btn-info.dim {\n  box-shadow: inset 0px 0px 0px #1eacae, 0px 5px 0px 0px #1eacae, 0px 10px 5px #999999;\n}\nbutton.btn-info.dim:active {\n  box-shadow: inset 0px 0px 0px #1eacae, 0px 2px 0px 0px #1eacae, 0px 5px 3px #999999;\n}\nbutton.btn-success.dim {\n  box-shadow: inset 0px 0px 0px #1872ab, 0px 5px 0px 0px #1872ab, 0px 10px 5px #999999;\n}\nbutton.btn-success.dim:active {\n  box-shadow: inset 0px 0px 0px #1872ab, 0px 2px 0px 0px #1872ab, 0px 5px 3px #999999;\n}\nbutton.btn-danger.dim {\n  box-shadow: inset 0px 0px 0px #ea394c, 0px 5px 0px 0px #ea394c, 0px 10px 5px #999999;\n}\nbutton.btn-danger.dim:active {\n  box-shadow: inset 0px 0px 0px #ea394c, 0px 2px 0px 0px #ea394c, 0px 5px 3px #999999;\n}\nbutton.dim:before {\n  font-size: 50px;\n  line-height: 1em;\n  font-weight: normal;\n  color: #fff;\n  display: block;\n  padding-top: 10px;\n}\nbutton.dim:active:before {\n  top: 7px;\n  font-size: 50px;\n}\n.label {\n  background-color: #d1dade;\n  color: #5e5e5e;\n  font-family: 'Open Sans';\n  font-size: 10px;\n  font-weight: 600;\n  padding: 3px 8px;\n  text-shadow: none;\n}\n.badge {\n  background-color: #d1dade;\n  color: #5e5e5e;\n  font-family: 'Open Sans';\n  font-size: 11px;\n  font-weight: 600;\n  padding-bottom: 4px;\n  padding-left: 6px;\n  padding-right: 6px;\n  text-shadow: none;\n}\n.label-primary,\n.badge-primary {\n  background-color: #1ab394;\n  color: #FFFFFF;\n}\n.label-success,\n.badge-success {\n  background-color: #1c84c6;\n  color: #FFFFFF;\n}\n.label-warning,\n.badge-warning {\n  background-color: #f8ac59;\n  color: #FFFFFF;\n}\n.label-warning-light,\n.badge-warning-light {\n  background-color: #f8ac59;\n  color: #ffffff;\n}\n.label-danger,\n.badge-danger {\n  background-color: #ed5565;\n  color: #FFFFFF;\n}\n.label-info,\n.badge-info {\n  background-color: #23c6c8;\n  color: #FFFFFF;\n}\n.label-inverse,\n.badge-inverse {\n  background-color: #262626;\n  color: #FFFFFF;\n}\n.label-white,\n.badge-white {\n  background-color: #FFFFFF;\n  color: #5E5E5E;\n}\n.label-white,\n.badge-disable {\n  background-color: #2A2E36;\n  color: #8B91A0;\n}\n/* TOOGLE SWICH */\n.onoffswitch {\n  position: relative;\n  width: 64px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n}\n.onoffswitch-checkbox {\n  display: none;\n}\n.onoffswitch-label {\n  display: block;\n  overflow: hidden;\n  cursor: pointer;\n  border: 2px solid #1ab394;\n  border-radius: 2px;\n}\n.onoffswitch-inner {\n  width: 200%;\n  margin-left: -100%;\n  -moz-transition: margin 0.3s ease-in 0s;\n  -webkit-transition: margin 0.3s ease-in 0s;\n  -o-transition: margin 0.3s ease-in 0s;\n  transition: margin 0.3s ease-in 0s;\n}\n.onoffswitch-inner:before,\n.onoffswitch-inner:after {\n  float: left;\n  width: 50%;\n  height: 20px;\n  padding: 0;\n  line-height: 20px;\n  font-size: 12px;\n  color: white;\n  font-family: Trebuchet, Arial, sans-serif;\n  font-weight: bold;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n}\n.onoffswitch-inner:before {\n  content: \"ON\";\n  padding-left: 10px;\n  background-color: #1ab394;\n  color: #FFFFFF;\n}\n.onoffswitch-inner:after {\n  content: \"OFF\";\n  padding-right: 10px;\n  background-color: #FFFFFF;\n  color: #999999;\n  text-align: right;\n}\n.onoffswitch-switch {\n  width: 20px;\n  margin: 0px;\n  background: #FFFFFF;\n  border: 2px solid #1ab394;\n  border-radius: 2px;\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  right: 44px;\n  -moz-transition: all 0.3s ease-in 0s;\n  -webkit-transition: all 0.3s ease-in 0s;\n  -o-transition: all 0.3s ease-in 0s;\n  transition: all 0.3s ease-in 0s;\n}\n.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {\n  margin-left: 0;\n}\n.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {\n  right: 0px;\n}\n/* CHOSEN PLUGIN */\n.chosen-container-single .chosen-single {\n  background: #ffffff;\n  box-shadow: none;\n  -moz-box-sizing: border-box;\n  background-color: #FFFFFF;\n  border: 1px solid #CBD5DD;\n  border-radius: 2px;\n  cursor: text;\n  height: auto !important;\n  margin: 0;\n  min-height: 30px;\n  overflow: hidden;\n  padding: 4px 12px;\n  position: relative;\n  width: 100%;\n}\n.chosen-container-multi .chosen-choices li.search-choice {\n  background: #f1f1f1;\n  border: 1px solid #ededed;\n  border-radius: 2px;\n  box-shadow: none;\n  color: #333333;\n  cursor: default;\n  line-height: 13px;\n  margin: 3px 0 3px 5px;\n  padding: 3px 20px 3px 5px;\n  position: relative;\n}\n/* PAGINATIN */\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n  background-color: #f4f4f4;\n  border-color: #DDDDDD;\n  color: inherit;\n  cursor: default;\n  z-index: 2;\n}\n.pagination > li > a,\n.pagination > li > span {\n  background-color: #FFFFFF;\n  border: 1px solid #DDDDDD;\n  color: inherit;\n  float: left;\n  line-height: 1.42857;\n  margin-left: -1px;\n  padding: 4px 10px;\n  position: relative;\n  text-decoration: none;\n}\n/* TOOLTIPS */\n.tooltip-inner {\n  background-color: #2F4050;\n}\n.tooltip.top .tooltip-arrow {\n  border-top-color: #2F4050;\n}\n.tooltip.right .tooltip-arrow {\n  border-right-color: #2F4050;\n}\n.tooltip.bottom .tooltip-arrow {\n  border-bottom-color: #2F4050;\n}\n.tooltip.left .tooltip-arrow {\n  border-left-color: #2F4050;\n}\n/* EASY PIE CHART*/\n.easypiechart {\n  position: relative;\n  text-align: center;\n}\n.easypiechart .h2 {\n  margin-left: 10px;\n  margin-top: 10px;\n  display: inline-block;\n}\n.easypiechart canvas {\n  top: 0;\n  left: 0;\n}\n.easypiechart .easypie-text {\n  line-height: 1;\n  position: absolute;\n  top: 33px;\n  width: 100%;\n  z-index: 1;\n}\n.easypiechart img {\n  margin-top: -4px;\n}\n.jqstooltip {\n  -webkit-box-sizing: content-box;\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n/* FULLCALENDAR */\n.fc-state-default {\n  background-color: #ffffff;\n  background-image: none;\n  background-repeat: repeat-x;\n  box-shadow: none;\n  color: #333333;\n  text-shadow: none;\n}\n.fc-state-default {\n  border: 1px solid;\n}\n.fc-button {\n  color: inherit;\n  border: 1px solid #e7eaec;\n  cursor: pointer;\n  display: inline-block;\n  height: 1.9em;\n  line-height: 1.9em;\n  overflow: hidden;\n  padding: 0 0.6em;\n  position: relative;\n  white-space: nowrap;\n}\n.fc-state-active {\n  background-color: #1ab394;\n  border-color: #1ab394;\n  color: #ffffff;\n}\n.fc-header-title h2 {\n  font-size: 16px;\n  font-weight: 600;\n  color: inherit;\n}\n.fc-content .fc-widget-header,\n.fc-content .fc-widget-content {\n  border-color: #e7eaec;\n  font-weight: normal;\n}\n.fc-border-separate tbody {\n  background-color: #F8F8F8;\n}\n.fc-state-highlight {\n  background: none repeat scroll 0 0 #FCF8E3;\n}\n.external-event {\n  padding: 5px 10px;\n  border-radius: 2px;\n  cursor: pointer;\n  margin-bottom: 5px;\n}\n.fc-ltr .fc-event-hori.fc-event-end,\n.fc-rtl .fc-event-hori.fc-event-start {\n  border-radius: 2px;\n}\n.fc-event,\n.fc-agenda .fc-event-time,\n.fc-event a {\n  padding: 4px 6px;\n  background-color: #1ab394;\n  /* background color */\n  border-color: #1ab394;\n  /* border color */\n}\n.fc-event-time,\n.fc-event-title {\n  color: #717171;\n  padding: 0 1px;\n}\n.ui-calendar .fc-event-time,\n.ui-calendar .fc-event-title {\n  color: #fff;\n}\n/* Chat */\n.chat-activity-list .chat-element {\n  border-bottom: 1px solid #e7eaec;\n}\n.chat-element:first-child {\n  margin-top: 0;\n}\n.chat-element {\n  padding-bottom: 15px;\n}\n.chat-element,\n.chat-element .media {\n  margin-top: 15px;\n}\n.chat-element,\n.media-body {\n  overflow: hidden;\n}\n.media-body {\n  display: block;\n}\n.chat-element > .pull-left {\n  margin-right: 10px;\n}\n.chat-element img.img-circle,\n.dropdown-messages-box img.img-circle {\n  width: 38px;\n  height: 38px;\n}\n.chat-element .well {\n  border: 1px solid #e7eaec;\n  box-shadow: none;\n  margin-top: 10px;\n  margin-bottom: 5px;\n  padding: 10px 20px;\n  font-size: 11px;\n  line-height: 16px;\n}\n.chat-element .actions {\n  margin-top: 10px;\n}\n.chat-element .photos {\n  margin: 10px 0;\n}\n.right.chat-element > .pull-right {\n  margin-left: 10px;\n}\n.chat-photo {\n  max-height: 180px;\n  border-radius: 4px;\n  overflow: hidden;\n  margin-right: 10px;\n  margin-bottom: 10px;\n}\n.chat {\n  margin: 0;\n  padding: 0;\n  list-style: none;\n}\n.chat li {\n  margin-bottom: 10px;\n  padding-bottom: 5px;\n  border-bottom: 1px dotted #B3A9A9;\n}\n.chat li.left .chat-body {\n  margin-left: 60px;\n}\n.chat li.right .chat-body {\n  margin-right: 60px;\n}\n.chat li .chat-body p {\n  margin: 0;\n  color: #777777;\n}\n.panel .slidedown .glyphicon,\n.chat .glyphicon {\n  margin-right: 5px;\n}\n.chat-panel .panel-body {\n  height: 350px;\n  overflow-y: scroll;\n}\n/* LIST GROUP */\na.list-group-item.active,\na.list-group-item.active:hover,\na.list-group-item.active:focus {\n  background-color: #1ab394;\n  border-color: #1ab394;\n  color: #FFFFFF;\n  z-index: 2;\n}\n.list-group-item-heading {\n  margin-top: 10px;\n}\n.list-group-item-text {\n  margin: 0 0 10px;\n  color: inherit;\n  font-size: 12px;\n  line-height: inherit;\n}\n.no-padding .list-group-item {\n  border-left: none;\n  border-right: none;\n  border-bottom: none;\n}\n.no-padding .list-group-item:first-child {\n  border-left: none;\n  border-right: none;\n  border-bottom: none;\n  border-top: none;\n}\n.no-padding .list-group {\n  margin-bottom: 0;\n}\n.list-group-item {\n  background-color: inherit;\n  border: 1px solid #e7eaec;\n  display: block;\n  margin-bottom: -1px;\n  padding: 10px 15px;\n  position: relative;\n}\n/* FLOT CHART  */\n.flot-chart {\n  display: block;\n  height: 200px;\n}\n.widget .flot-chart.dashboard-chart {\n  display: block;\n  height: 120px;\n  margin-top: 40px;\n}\n.flot-chart.dashboard-chart {\n  display: block;\n  height: 180px;\n  margin-top: 40px;\n}\n.flot-chart-content {\n  width: 100%;\n  height: 100%;\n}\n.flot-chart-pie-content {\n  width: 200px;\n  height: 200px;\n  margin: auto;\n}\n.jqstooltip {\n  position: absolute;\n  display: block;\n  left: 0px;\n  top: 0px;\n  visibility: hidden;\n  background: #2b303a;\n  background-color: rgba(43, 48, 58, 0.8);\n  color: white;\n  text-align: left;\n  white-space: nowrap;\n  z-index: 10000;\n  padding: 5px 5px 5px 5px;\n  min-height: 22px;\n  border-radius: 3px;\n}\n.jqsfield {\n  color: white;\n  text-align: left;\n}\n.h-200 {\n  min-height: 200px;\n}\n.legendLabel {\n  padding-left: 5px;\n}\n.stat-list li:first-child {\n  margin-top: 0;\n}\n.stat-list {\n  list-style: none;\n  padding: 0;\n  margin: 0;\n}\n.stat-percent {\n  float: right;\n}\n.stat-list li {\n  margin-top: 15px;\n  position: relative;\n}\n/* DATATABLES */\ntable.dataTable thead .sorting,\ntable.dataTable thead .sorting_asc:after,\ntable.dataTable thead .sorting_desc,\ntable.dataTable thead .sorting_asc_disabled,\ntable.dataTable thead .sorting_desc_disabled {\n  background: transparent;\n}\ntable.dataTable thead .sorting_asc:after {\n  float: right;\n  font-family: fontawesome;\n}\ntable.dataTable thead .sorting_desc:after {\n  content: \"\\f0dd\";\n  float: right;\n  font-family: fontawesome;\n}\ntable.dataTable thead .sorting:after {\n  content: \"\\f0dc\";\n  float: right;\n  font-family: fontawesome;\n  color: rgba(50, 50, 50, 0.5);\n}\n.dataTables_wrapper {\n  padding-bottom: 30px;\n}\n/* CIRCLE */\n.img-circle {\n  border-radius: 50%;\n}\n.btn-circle {\n  width: 30px;\n  height: 30px;\n  padding: 6px 0;\n  border-radius: 15px;\n  text-align: center;\n  font-size: 12px;\n  line-height: 1.428571429;\n}\n.btn-circle.btn-lg {\n  width: 50px;\n  height: 50px;\n  padding: 10px 16px;\n  border-radius: 25px;\n  font-size: 18px;\n  line-height: 1.33;\n}\n.btn-circle.btn-xl {\n  width: 70px;\n  height: 70px;\n  padding: 10px 16px;\n  border-radius: 35px;\n  font-size: 24px;\n  line-height: 1.33;\n}\n.show-grid [class^=\"col-\"] {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  border: 1px solid #ddd;\n  background-color: #eee !important;\n}\n.show-grid {\n  margin: 15px 0;\n}\n/* ANIMATION */\n.css-animation-box h1 {\n  font-size: 44px;\n}\n.animation-efect-links a {\n  padding: 4px 6px;\n  font-size: 12px;\n}\n#animation_box {\n  background-color: #f9f8f8;\n  border-radius: 16px;\n  width: 80%;\n  margin: 0 auto;\n  padding-top: 80px;\n}\n.animation-text-box {\n  position: absolute;\n  margin-top: 40px;\n  left: 50%;\n  margin-left: -100px;\n  width: 200px;\n}\n.animation-text-info {\n  position: absolute;\n  margin-top: -60px;\n  left: 50%;\n  margin-left: -100px;\n  width: 200px;\n  font-size: 10px;\n}\n.animation-text-box h2 {\n  font-size: 54px;\n  font-weight: 600;\n  margin-bottom: 5px;\n}\n.animation-text-box p {\n  font-size: 12px;\n  text-transform: uppercase;\n}\n/* PEACE */\n.pace .pace-progress {\n  background: #1ab394;\n  position: fixed;\n  z-index: 2000;\n  top: 0px;\n  left: 220px;\n  height: 2px;\n  -webkit-transition: width 1s;\n  -moz-transition: width 1s;\n  -o-transition: width 1s;\n  transition: width 1s;\n}\n.body-small .pace .pace-progress {\n  left: 0px;\n}\n.pace-inactive {\n  display: none;\n}\n/* WIDGETS */\n.widget {\n  border-radius: 5px;\n  padding: 15px 20px;\n  margin-bottom: 10px;\n  margin-top: 10px;\n}\n.widget.style1 h2 {\n  font-size: 30px;\n}\n.widget h2,\n.widget h3 {\n  margin-top: 5px;\n  margin-bottom: 0;\n}\n.widget-text-box {\n  padding: 20px;\n  border: 1px solid #e7eaec;\n  background: #ffffff;\n}\n.widget-head-color-box {\n  border-radius: 5px 5px 0px 0px;\n  margin-top: 10px;\n}\n.widget .flot-chart {\n  height: 100px;\n}\n.vertical-align div {\n  display: inline-block;\n  vertical-align: middle;\n}\n.vertical-align h2,\n.vertical-align h3 {\n  margin: 0;\n}\n.todo-list {\n  list-style: none outside none;\n  margin: 0;\n  padding: 0;\n  font-size: 14px;\n}\n.todo-list.small-list {\n  font-size: 12px;\n}\n.todo-list.small-list > li {\n  background: #f3f3f4;\n  border-left: none;\n  border-right: none;\n  border-radius: 4px;\n  color: inherit;\n  margin-bottom: 2px;\n  padding: 6px 6px 6px 12px;\n}\n.todo-list.small-list .btn-xs,\n.todo-list.small-list .btn-group-xs > .btn {\n  border-radius: 5px;\n  font-size: 10px;\n  line-height: 1.5;\n  padding: 1px 2px 1px 5px;\n}\n.todo-list > li {\n  background: #f3f3f4;\n  border-left: 6px solid #e7eaec;\n  border-right: 6px solid #e7eaec;\n  border-radius: 4px;\n  color: inherit;\n  margin-bottom: 2px;\n  padding: 10px;\n}\n.todo-list .handle {\n  cursor: move;\n  display: inline-block;\n  font-size: 16px;\n  margin: 0 5px;\n}\n.todo-list > li .label {\n  font-size: 9px;\n  margin-left: 10px;\n}\n.check-link {\n  font-size: 16px;\n}\n.todo-completed {\n  text-decoration: line-through;\n}\n.geo-statistic h1 {\n  font-size: 36px;\n  margin-bottom: 0;\n}\n.glyphicon.fa {\n  font-family: \"FontAwesome\";\n}\n/* INPUTS */\n.inline {\n  display: inline-block !important;\n}\n.input-s-sm {\n  width: 120px;\n}\n.input-s {\n  width: 200px;\n}\n.input-s-lg {\n  width: 250px;\n}\n.i-checks {\n  padding-left: 0;\n}\n.form-control,\n.single-line {\n  background-color: #FFFFFF;\n  background-image: none;\n  border: 1px solid #e5e6e7;\n  border-radius: 1px;\n  color: inherit;\n  display: block;\n  padding: 6px 12px;\n  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;\n  width: 100%;\n  font-size: 14px;\n}\n.form-control:focus,\n.single-line:focus {\n  border-color: #1ab394;\n}\n.has-success .form-control {\n  border-color: #1ab394;\n}\n.has-warning .form-control {\n  border-color: #f8ac59;\n}\n.has-error .form-control {\n  border-color: #ed5565;\n}\n.has-success .control-label {\n  color: #1ab394;\n}\n.has-warning .control-label {\n  color: #f8ac59;\n}\n.has-error .control-label {\n  color: #ed5565;\n}\n.input-group-addon {\n  background-color: #fff;\n  border: 1px solid #E5E6E7;\n  border-radius: 1px;\n  color: inherit;\n  font-size: 14px;\n  font-weight: 400;\n  line-height: 1;\n  padding: 6px 12px;\n  text-align: center;\n}\n.spinner-buttons.input-group-btn .btn-xs {\n  line-height: 1.13;\n}\n.spinner-buttons.input-group-btn {\n  width: 20%;\n}\n.noUi-connect {\n  background: none repeat scroll 0 0 #1ab394;\n  box-shadow: none;\n}\n.slider_red .noUi-connect {\n  background: none repeat scroll 0 0 #ed5565;\n  box-shadow: none;\n}\n/* UI Sortable */\n.ui-sortable .ibox-title {\n  cursor: move;\n}\n.ui-sortable-placeholder {\n  border: 1px dashed #cecece !important;\n  visibility: visible !important;\n  background: #e7eaec;\n}\n.ibox.ui-sortable-placeholder {\n  margin: 0px 0px 23px !important;\n}\n/* SWITCHES */\n.onoffswitch {\n  position: relative;\n  width: 54px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n}\n.onoffswitch-checkbox {\n  display: none;\n}\n.onoffswitch-label {\n  display: block;\n  overflow: hidden;\n  cursor: pointer;\n  border: 2px solid #1AB394;\n  border-radius: 3px;\n}\n.onoffswitch-inner {\n  display: block;\n  width: 200%;\n  margin-left: -100%;\n  -moz-transition: margin 0.3s ease-in 0s;\n  -webkit-transition: margin 0.3s ease-in 0s;\n  -o-transition: margin 0.3s ease-in 0s;\n  transition: margin 0.3s ease-in 0s;\n}\n.onoffswitch-inner:before,\n.onoffswitch-inner:after {\n  display: block;\n  float: left;\n  width: 50%;\n  height: 16px;\n  padding: 0;\n  line-height: 16px;\n  font-size: 10px;\n  color: white;\n  font-family: Trebuchet, Arial, sans-serif;\n  font-weight: bold;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n}\n.onoffswitch-inner:before {\n  content: \"ON\";\n  padding-left: 7px;\n  background-color: #1AB394;\n  color: #FFFFFF;\n}\n.onoffswitch-inner:after {\n  content: \"OFF\";\n  padding-right: 7px;\n  background-color: #FFFFFF;\n  color: #919191;\n  text-align: right;\n}\n.onoffswitch-switch {\n  display: block;\n  width: 18px;\n  margin: 0px;\n  background: #FFFFFF;\n  border: 2px solid #1AB394;\n  border-radius: 3px;\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  right: 36px;\n  -moz-transition: all 0.3s ease-in 0s;\n  -webkit-transition: all 0.3s ease-in 0s;\n  -o-transition: all 0.3s ease-in 0s;\n  transition: all 0.3s ease-in 0s;\n}\n.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {\n  margin-left: 0;\n}\n.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {\n  right: 0px;\n}\n/* jqGrid */\n.ui-jqgrid {\n  -moz-box-sizing: content-box;\n}\n.ui-jqgrid-btable {\n  border-collapse: separate;\n}\n.ui-jqgrid-htable {\n  border-collapse: separate;\n}\n.ui-jqgrid-titlebar {\n  height: 40px;\n  line-height: 15px;\n  color: #676a6c;\n  background-color: #F9F9F9;\n  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);\n}\n.ui-jqgrid .ui-jqgrid-title {\n  float: left;\n  margin: 1.1em 1em 0.2em;\n}\n.ui-jqgrid .ui-jqgrid-titlebar {\n  position: relative;\n  border-left: 0px solid;\n  border-right: 0px solid;\n  border-top: 0px solid;\n}\n.ui-widget-header {\n  background: none;\n  background-image: none;\n  background-color: #f5f5f6;\n  text-transform: uppercase;\n  border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n}\n.ui-jqgrid tr.ui-row-ltr td {\n  border-right-color: inherit;\n  border-right-style: solid;\n  border-right-width: 1px;\n  text-align: left;\n  border-color: #DDDDDD;\n  background-color: inherit;\n}\n.ui-search-toolbar input[type=\"text\"] {\n  font-size: 12px;\n  height: 15px;\n  border: 1px solid #CCCCCC;\n  border-radius: 0px;\n}\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n  background: #F9F9F9;\n  border: 1px solid #DDDDDD;\n  line-height: 15px;\n  font-weight: bold;\n  color: #676a6c;\n  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);\n}\n.ui-widget-content {\n  box-sizing: content-box;\n}\n.ui-icon-triangle-1-n {\n  background-position: 1px -16px;\n}\n.ui-jqgrid tr.ui-search-toolbar th {\n  border-top-width: 0px !important;\n  border-top-color: inherit !important;\n  border-top-style: ridge !important;\n}\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n  background: #f5f5f5;\n  border-collapse: separate;\n}\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n  background: #f2fbff;\n}\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n  border: 1px solid #dddddd;\n  background: #ffffff;\n  font-weight: normal;\n  color: #212121;\n}\n.ui-jqgrid .ui-pg-input {\n  font-size: inherit;\n  width: 50px;\n  border: 1px solid #CCCCCC;\n  height: 15px;\n}\n.ui-jqgrid .ui-pg-selbox {\n  display: block;\n  font-size: 1em;\n  height: 25px;\n  line-height: 18px;\n  margin: 0;\n  width: auto;\n}\n.ui-jqgrid .ui-pager-control {\n  position: relative;\n}\n.ui-jqgrid .ui-jqgrid-pager {\n  height: 32px;\n  position: relative;\n}\n.ui-pg-table .navtable .ui-corner-all {\n  border-radius: 0px;\n}\n.ui-jqgrid .ui-pg-button:hover {\n  padding: 1px;\n  border: 0px;\n}\n.ui-jqgrid .loading {\n  position: absolute;\n  top: 45%;\n  left: 45%;\n  width: auto;\n  height: auto;\n  z-index: 101;\n  padding: 6px;\n  margin: 5px;\n  text-align: center;\n  font-weight: bold;\n  display: none;\n  border-width: 2px !important;\n  font-size: 11px;\n}\n.ui-jqgrid .form-control {\n  height: 10px;\n  width: auto;\n  display: inline;\n  padding: 10px 12px;\n}\n.ui-jqgrid-pager {\n  height: 32px;\n}\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n  border-top-left-radius: 0;\n}\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n  border-top-right-radius: 0;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n  border-bottom-left-radius: 0;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n  border-bottom-right-radius: 0;\n}\n.ui-widget-content {\n  border: 1px solid #ddd;\n}\n.ui-jqgrid .ui-jqgrid-titlebar {\n  padding: 0;\n}\n.ui-jqgrid .ui-jqgrid-titlebar {\n  border-bottom: 1px solid #ddd;\n}\n.ui-jqgrid tr.jqgrow td {\n  padding: 6px;\n}\n.ui-jqdialog .ui-jqdialog-titlebar {\n  padding: 10px 10px;\n}\n.ui-jqdialog .ui-jqdialog-title {\n  float: none !important;\n}\n.ui-jqdialog > .ui-resizable-se {\n  position: absolute;\n}\n/* Nestable list */\n.dd {\n  position: relative;\n  display: block;\n  margin: 0;\n  padding: 0;\n  list-style: none;\n  font-size: 13px;\n  line-height: 20px;\n}\n.dd-list {\n  display: block;\n  position: relative;\n  margin: 0;\n  padding: 0;\n  list-style: none;\n}\n.dd-list .dd-list {\n  padding-left: 30px;\n}\n.dd-collapsed .dd-list {\n  display: none;\n}\n.dd-item,\n.dd-empty,\n.dd-placeholder {\n  display: block;\n  position: relative;\n  margin: 0;\n  padding: 0;\n  min-height: 20px;\n  font-size: 13px;\n  line-height: 20px;\n}\n.dd-handle {\n  display: block;\n  margin: 5px 0;\n  padding: 5px 10px;\n  color: #333;\n  text-decoration: none;\n  border: 1px solid #e7eaec;\n  background: #f5f5f5;\n  -webkit-border-radius: 3px;\n  border-radius: 3px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n}\n.dd-handle span {\n  font-weight: bold;\n}\n.dd-handle:hover {\n  background: #f0f0f0;\n  cursor: pointer;\n  font-weight: bold;\n}\n.dd-item > button {\n  display: block;\n  position: relative;\n  cursor: pointer;\n  float: left;\n  width: 25px;\n  height: 20px;\n  margin: 5px 0;\n  padding: 0;\n  text-indent: 100%;\n  white-space: nowrap;\n  overflow: hidden;\n  border: 0;\n  background: transparent;\n  font-size: 12px;\n  line-height: 1;\n  text-align: center;\n  font-weight: bold;\n}\n.dd-item > button:before {\n  content: '+';\n  display: block;\n  position: absolute;\n  width: 100%;\n  text-align: center;\n  text-indent: 0;\n}\n.dd-item > button[data-action=\"collapse\"]:before {\n  content: '-';\n}\n#nestable2 .dd-item > button {\n  font-family: FontAwesome;\n  height: 34px;\n  width: 33px;\n  color: #c1c1c1;\n}\n#nestable2 .dd-item > button:before {\n  content: \"\\f067\";\n}\n#nestable2 .dd-item > button[data-action=\"collapse\"]:before {\n  content: \"\\f068\";\n}\n.dd-placeholder,\n.dd-empty {\n  margin: 5px 0;\n  padding: 0;\n  min-height: 30px;\n  background: #f2fbff;\n  border: 1px dashed #b6bcbf;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n}\n.dd-empty {\n  border: 1px dashed #bbb;\n  min-height: 100px;\n  background-color: #e5e5e5;\n  background-image: -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), -webkit-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);\n  background-image: -moz-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), -moz-linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);\n  background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff), linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 75%, #ffffff 75%, #ffffff);\n  background-size: 60px 60px;\n  background-position: 0 0, 30px 30px;\n}\n.dd-dragel {\n  position: absolute;\n  z-index: 9999;\n  pointer-events: none;\n}\n.dd-dragel > .dd-item .dd-handle {\n  margin-top: 0;\n}\n.dd-dragel .dd-handle {\n  -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);\n  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);\n}\n/**\n* Nestable Extras\n*/\n.nestable-lists {\n  display: block;\n  clear: both;\n  padding: 30px 0;\n  width: 100%;\n  border: 0;\n  border-top: 2px solid #ddd;\n  border-bottom: 2px solid #ddd;\n}\n#nestable-menu {\n  padding: 0;\n  margin: 10px 0 20px 0;\n}\n#nestable-output,\n#nestable2-output {\n  width: 100%;\n  font-size: 0.75em;\n  line-height: 1.333333em;\n  font-family: open sans, lucida grande, lucida sans unicode, helvetica, arial, sans-serif;\n  padding: 5px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n}\n#nestable2 .dd-handle {\n  color: inherit;\n  border: 1px dashed #e7eaec;\n  background: #f3f3f4;\n  padding: 10px;\n}\n#nestable2 .dd-handle:hover {\n  /*background: #bbb;*/\n}\n#nestable2 span.label {\n  margin-right: 10px;\n}\n#nestable-output,\n#nestable2-output {\n  font-size: 12px;\n  padding: 25px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n}\n/* CodeMirror */\n.CodeMirror {\n  border: 1px solid #eee;\n  height: auto;\n}\n.CodeMirror-scroll {\n  overflow-y: hidden;\n  overflow-x: auto;\n}\n/* Google Maps */\n.google-map {\n  height: 300px;\n}\n/* Validation */\nlabel.error {\n  color: #cc5965;\n  display: inline-block;\n  margin-left: 5px;\n}\n.form-control.error {\n  border: 1px dotted #cc5965;\n}\n/* ngGrid */\n.gridStyle {\n  border: 1px solid #d4d4d4;\n  width: 100%;\n  height: 400px;\n}\n.gridStyle2 {\n  border: 1px solid #d4d4d4;\n  width: 500px;\n  height: 300px;\n}\n.ngH eaderCell {\n  border-right: none;\n  border-bottom: 1px solid #e7eaec;\n}\n.ngCell {\n  border-right: none;\n}\n.ngTopPanel {\n  background: #F5F5F6;\n}\n.ngRow.even {\n  background: #f9f9f9;\n}\n.ngRow.selected {\n  background: #EBF2F1;\n}\n.ngRow {\n  border-bottom: 1px solid #e7eaec;\n}\n.ngCell {\n  background-color: transparent;\n}\n.ngHeaderCell {\n  border-right: none;\n}\n/* Toastr custom style */\n#toast-container > .toast {\n  background-image: none !important;\n}\n#toast-container > .toast:before {\n  position: fixed;\n  font-family: FontAwesome;\n  font-size: 24px;\n  line-height: 24px;\n  float: left;\n  color: #FFF;\n  padding-right: 0.5em;\n  margin: auto 0.5em auto -1.5em;\n}\n#toast-container > .toast-warning:before {\n  content: \"\\f003\";\n}\n#toast-container > .toast-error:before {\n  content: \"\\f001\";\n}\n#toast-container > .toast-info:before {\n  content: \"\\f005\";\n}\n#toast-container > .toast-success:before {\n  content: \"\\f00C\";\n}\n#toast-container > div {\n  -moz-box-shadow: 0 0 3px #999;\n  -webkit-box-shadow: 0 0 3px #999;\n  box-shadow: 0 0 3px #999;\n  opacity: .9;\n  -ms-filter: alpha(opacity=90);\n  filter: alpha(opacity=90);\n}\n#toast-container > :hover {\n  -moz-box-shadow: 0 0 4px #999;\n  -webkit-box-shadow: 0 0 4px #999;\n  box-shadow: 0 0 4px #999;\n  opacity: 1;\n  -ms-filter: alpha(opacity=100);\n  filter: alpha(opacity=100);\n  cursor: pointer;\n}\n.toast {\n  background-color: #1ab394;\n}\n.toast-success {\n  background-color: #1ab394;\n}\n.toast-error {\n  background-color: #ed5565;\n}\n.toast-info {\n  background-color: #23c6c8;\n}\n.toast-warning {\n  background-color: #f8ac59;\n}\n.toast-top-full-width {\n  margin-top: 20px;\n}\n.toast-bottom-full-width {\n  margin-bottom: 20px;\n}\n/* Notifie */\n.cg-notify-message.inspinia-notify {\n  background: #fff;\n  padding: 0;\n  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);\n  -webkit-box-shadow: 0 0 1 px rgba(0, 0, 0, 0.1), 0 2 px 4 px rgba(0, 0, 0, 0.2);\n  -moz-box-shadow: 0 0 1 px rgba(0, 0, 0, 0.1), 0 2 px 4 px rgba(0, 0, 0, 0.2);\n  border: none ;\n  margin-top: 30px;\n  color: inherit;\n}\n.inspinia-notify.alert-warning {\n  border-left: 6px solid #f8ac59;\n}\n.inspinia-notify.alert-success {\n  border-left: 6px solid #1c84c6;\n}\n.inspinia-notify.alert-danger {\n  border-left: 6px solid #ed5565;\n}\n.inspinia-notify.alert-info {\n  border-left: 6px solid #1ab394;\n}\n/* Image cropper style */\n.img-container,\n.img-preview {\n  overflow: hidden;\n  text-align: center;\n  width: 100%;\n}\n.img-preview-sm {\n  height: 130px;\n  width: 200px;\n}\n/* Forum styles  */\n.forum-post-container .media {\n  margin: 10px 10px 10px 10px;\n  padding: 20px 10px 20px 10px;\n  border-bottom: 1px solid #f1f1f1;\n}\n.forum-avatar {\n  float: left;\n  margin-right: 20px;\n  text-align: center;\n  width: 110px;\n}\n.forum-avatar .img-circle {\n  height: 48px;\n  width: 48px;\n}\n.author-info {\n  color: #676a6c;\n  font-size: 11px;\n  margin-top: 5px;\n  text-align: center;\n}\n.forum-post-info {\n  padding: 9px 12px 6px 12px;\n  background: #f9f9f9;\n  border: 1px solid #f1f1f1;\n}\n.media-body > .media {\n  background: #f9f9f9;\n  border-radius: 3px;\n  border: 1px solid #f1f1f1;\n}\n.forum-post-container .media-body .photos {\n  margin: 10px 0;\n}\n.forum-photo {\n  max-width: 140px;\n  border-radius: 3px;\n}\n.media-body > .media .forum-avatar {\n  width: 70px;\n  margin-right: 10px;\n}\n.media-body > .media .forum-avatar .img-circle {\n  height: 38px;\n  width: 38px;\n}\n.mid-icon {\n  font-size: 66px;\n}\n.forum-item {\n  margin: 10px 0;\n  padding: 10px 0 20px;\n  border-bottom: 1px solid #f1f1f1;\n}\n.views-number {\n  font-size: 24px;\n  line-height: 18px;\n  font-weight: 400;\n}\n.forum-container,\n.forum-post-container {\n  padding: 30px !important;\n}\n.forum-item small {\n  color: #999;\n}\n.forum-item .forum-sub-title {\n  color: #999;\n  margin-left: 50px;\n}\n.forum-title {\n  margin: 15px 0 15px 0;\n}\n.forum-info {\n  text-align: center;\n}\n.forum-desc {\n  color: #999;\n}\n.forum-icon {\n  float: left;\n  width: 30px;\n  margin-right: 20px;\n  text-align: center;\n}\na.forum-item-title {\n  color: inherit;\n  display: block;\n  font-size: 18px;\n  font-weight: 600;\n}\na.forum-item-title:hover {\n  color: inherit;\n}\n.forum-icon .fa {\n  font-size: 30px;\n  margin-top: 8px;\n  color: #9b9b9b;\n}\n.forum-item.active .fa {\n  color: #1ab394;\n}\n.forum-item.active a.forum-item-title {\n  color: #1ab394;\n}\n@media (max-width: 992px) {\n  .forum-info {\n    margin: 15px 0 10px 0px;\n    /* Comment this is you want to show forum info in small devices */\n    display: none;\n  }\n  .forum-desc {\n    float: none !important;\n  }\n}\n/* New Timeline style */\n.vertical-container {\n  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */\n  width: 90%;\n  max-width: 1170px;\n  margin: 0 auto;\n}\n.vertical-container::after {\n  /* clearfix */\n  content: '';\n  display: table;\n  clear: both;\n}\n#vertical-timeline {\n  position: relative;\n  padding: 0;\n  margin-top: 2em;\n  margin-bottom: 2em;\n}\n#vertical-timeline::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 18px;\n  height: 100%;\n  width: 4px;\n  background: #f1f1f1;\n}\n.vertical-timeline-content .btn {\n  float: right;\n}\n#vertical-timeline.light-timeline:before {\n  background: #e7eaec;\n}\n.dark-timeline .vertical-timeline-content:before {\n  border-color: transparent #f5f5f5 transparent transparent ;\n}\n.dark-timeline.center-orientation .vertical-timeline-content:before {\n  border-color: transparent  transparent transparent #f5f5f5;\n}\n.dark-timeline .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before,\n.dark-timeline.center-orientation .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before {\n  border-color: transparent #f5f5f5 transparent transparent;\n}\n.dark-timeline .vertical-timeline-content,\n.dark-timeline.center-orientation .vertical-timeline-content {\n  background: #f5f5f5;\n}\n@media only screen and (min-width: 1170px) {\n  #vertical-timeline.center-orientation {\n    margin-top: 3em;\n    margin-bottom: 3em;\n  }\n  #vertical-timeline.center-orientation:before {\n    left: 50%;\n    margin-left: -2px;\n  }\n}\n@media only screen and (max-width: 1170px) {\n  .center-orientation.dark-timeline .vertical-timeline-content:before {\n    border-color: transparent #f5f5f5 transparent transparent;\n  }\n}\n.vertical-timeline-block {\n  position: relative;\n  margin: 2em 0;\n}\n.vertical-timeline-block:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n.vertical-timeline-block:first-child {\n  margin-top: 0;\n}\n.vertical-timeline-block:last-child {\n  margin-bottom: 0;\n}\n@media only screen and (min-width: 1170px) {\n  .center-orientation .vertical-timeline-block {\n    margin: 4em 0;\n  }\n  .center-orientation .vertical-timeline-block:first-child {\n    margin-top: 0;\n  }\n  .center-orientation .vertical-timeline-block:last-child {\n    margin-bottom: 0;\n  }\n}\n.vertical-timeline-icon {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 40px;\n  height: 40px;\n  border-radius: 50%;\n  font-size: 16px;\n  border: 3px solid #f1f1f1;\n  text-align: center;\n}\n.vertical-timeline-icon i {\n  display: block;\n  width: 24px;\n  height: 24px;\n  position: relative;\n  left: 50%;\n  top: 50%;\n  margin-left: -12px;\n  margin-top: -9px;\n}\n@media only screen and (min-width: 1170px) {\n  .center-orientation .vertical-timeline-icon {\n    width: 50px;\n    height: 50px;\n    left: 50%;\n    margin-left: -25px;\n    -webkit-transform: translateZ(0);\n    -webkit-backface-visibility: hidden;\n    font-size: 19px;\n  }\n  .center-orientation .vertical-timeline-icon i {\n    margin-left: -12px;\n    margin-top: -10px;\n  }\n  .center-orientation .cssanimations .vertical-timeline-icon.is-hidden {\n    visibility: hidden;\n  }\n}\n.vertical-timeline-content {\n  position: relative;\n  margin-left: 60px;\n  background: white;\n  border-radius: 0.25em;\n  padding: 1em;\n}\n.vertical-timeline-content:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n.vertical-timeline-content h2 {\n  font-weight: 400;\n  margin-top: 4px;\n}\n.vertical-timeline-content p {\n  margin: 1em 0;\n  line-height: 1.6;\n}\n.vertical-timeline-content .vertical-date {\n  float: left;\n  font-weight: 500;\n}\n.vertical-date small {\n  color: #1ab394;\n  font-weight: 400;\n}\n.vertical-timeline-content::before {\n  content: '';\n  position: absolute;\n  top: 16px;\n  right: 100%;\n  height: 0;\n  width: 0;\n  border: 7px solid transparent;\n  border-right: 7px solid white;\n}\n@media only screen and (min-width: 768px) {\n  .vertical-timeline-content h2 {\n    font-size: 18px;\n  }\n  .vertical-timeline-content p {\n    font-size: 13px;\n  }\n}\n@media only screen and (min-width: 1170px) {\n  .center-orientation .vertical-timeline-content {\n    margin-left: 0;\n    padding: 1.6em;\n    width: 45%;\n  }\n  .center-orientation .vertical-timeline-content::before {\n    top: 24px;\n    left: 100%;\n    border-color: transparent;\n    border-left-color: white;\n  }\n  .center-orientation .vertical-timeline-content .btn {\n    float: left;\n  }\n  .center-orientation .vertical-timeline-content .vertical-date {\n    position: absolute;\n    width: 100%;\n    left: 122%;\n    top: 2px;\n    font-size: 14px;\n  }\n  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content {\n    float: right;\n  }\n  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content::before {\n    top: 24px;\n    left: auto;\n    right: 100%;\n    border-color: transparent;\n    border-right-color: white;\n  }\n  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .btn {\n    float: right;\n  }\n  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .vertical-date {\n    left: auto;\n    right: 122%;\n    text-align: right;\n  }\n  .center-orientation .cssanimations .vertical-timeline-content.is-hidden {\n    visibility: hidden;\n  }\n}\n.sidebard-panel {\n  width: 220px;\n  background: #ebebed;\n  padding: 10px 20px;\n  position: absolute;\n  right: 0;\n}\n.sidebard-panel .feed-element img.img-circle {\n  width: 32px;\n  height: 32px;\n}\n.sidebard-panel .feed-element,\n.media-body,\n.sidebard-panel p {\n  font-size: 12px;\n}\n.sidebard-panel .feed-element {\n  margin-top: 20px;\n  padding-bottom: 0;\n}\n.sidebard-panel .list-group {\n  margin-bottom: 10px;\n}\n.sidebard-panel .list-group .list-group-item {\n  padding: 5px 0;\n  font-size: 12px;\n  border: 0;\n}\n.sidebar-content .wrapper,\n.wrapper.sidebar-content {\n  padding-right: 230px !important;\n}\n.body-small .sidebar-content .wrapper,\n.body-small .wrapper.sidebar-content {\n  padding-right: 20px !important;\n}\nbody {\n  font-family: \"open sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  background-color: #2f4050;\n  font-size: 13px;\n  color: #676a6c;\n  overflow-x: hidden;\n}\nbody.boxed-layout {\n  background: url('patterns/shattered.png');\n}\nbody.boxed-layout #wrapper {\n  background-color: #2f4050;\n  max-width: 1200px;\n  margin: 0 auto;\n  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);\n  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);\n  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);\n}\n.top-navigation.boxed-layout #wrapper,\n.boxed-layout #wrapper.top-navigation {\n  max-width: 1300px !important;\n}\n.block {\n  display: block;\n}\n.clear {\n  display: block;\n  overflow: hidden;\n}\na {\n  cursor: pointer;\n}\na:hover,\na:focus {\n  text-decoration: none;\n}\n.border-bottom {\n  border-bottom: 1px solid #e7eaec !important;\n}\n.font-bold {\n  font-weight: 600;\n}\n.font-noraml {\n  font-weight: 400;\n}\n.text-uppercase {\n  text-transform: uppercase;\n}\n.b-r {\n  border-right: 1px solid #e7eaec;\n}\n.hr-line-dashed {\n  border-top: 1px dashed #e7eaec;\n  color: #ffffff;\n  background-color: #ffffff;\n  height: 1px;\n  margin: 20px 0;\n}\n.hr-line-solid {\n  border-bottom: 1px solid #e7eaec;\n  background-color: rgba(0, 0, 0, 0);\n  border-style: solid !important;\n  margin-top: 15px;\n  margin-bottom: 15px;\n}\nvideo {\n  width: 100%    !important;\n  height: auto   !important;\n}\n/* GALLERY */\n.gallery > .row > div {\n  margin-bottom: 15px;\n}\n.fancybox img {\n  margin-bottom: 5px;\n  /* Only for demo */\n  width: 24%;\n}\n/* Summernote text editor  */\n.note-editor {\n  height: auto;\n  min-height: 300px;\n}\n/* MODAL */\n.modal-content {\n  background-clip: padding-box;\n  background-color: #FFFFFF;\n  border: 1px solid rgba(0, 0, 0, 0);\n  border-radius: 4px;\n  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);\n  outline: 0 none;\n  position: relative;\n}\n.modal-dialog {\n  z-index: 1200;\n}\n.modal-body {\n  padding: 20px 30px 30px 30px;\n}\n.inmodal .modal-body {\n  background: #f8fafb;\n}\n.inmodal .modal-header {\n  padding: 30px 15px;\n  text-align: center;\n}\n.animated.modal.fade .modal-dialog {\n  -webkit-transform: none;\n  -ms-transform: none;\n  -o-transform: none;\n  transform: none;\n}\n.inmodal .modal-title {\n  font-size: 26px;\n}\n.inmodal .modal-icon {\n  font-size: 84px;\n  color: #e2e3e3;\n}\n.modal-footer {\n  margin-top: 0;\n}\n/* WRAPPERS */\n#wrapper {\n  width: 100%;\n  overflow-x: hidden;\n}\n.wrapper {\n  padding: 0 20px;\n}\n.wrapper-content {\n  padding: 20px 10px 40px;\n}\n#page-wrapper {\n  padding: 0 15px;\n  min-height: 568px;\n  position: relative !important;\n}\n@media (min-width: 768px) {\n  #page-wrapper {\n    position: inherit;\n    margin: 0 0 0 240px;\n    min-height: 1000px;\n  }\n}\n.title-action {\n  text-align: right;\n  padding-top: 30px;\n}\n.ibox-content h1,\n.ibox-content h2,\n.ibox-content h3,\n.ibox-content h4,\n.ibox-content h5,\n.ibox-title h1,\n.ibox-title h2,\n.ibox-title h3,\n.ibox-title h4,\n.ibox-title h5 {\n  margin-top: 5px;\n}\nul.unstyled,\nol.unstyled {\n  list-style: none outside none;\n  margin-left: 0;\n}\n.big-icon {\n  font-size: 160px;\n  color: #e5e6e7;\n}\n/* FOOTER */\n.footer {\n  background: none repeat scroll 0 0 white;\n  border-top: 1px solid #e7eaec;\n  bottom: 0;\n  left: 0;\n  padding: 10px 20px;\n  position: absolute;\n  right: 0;\n}\n.footer.fixed_full {\n  position: fixed;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  z-index: 1000;\n  padding: 10px 20px;\n  background: white;\n  border-top: 1px solid #e7eaec;\n}\n.footer.fixed {\n  position: fixed;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  z-index: 1000;\n  padding: 10px 20px;\n  background: white;\n  border-top: 1px solid #e7eaec;\n  margin-left: 220px;\n}\nbody.mini-navbar .footer.fixed,\nbody.body-small.mini-navbar .footer.fixed {\n  margin: 0 0 0 70px;\n}\nbody.fixed-sidebar.body-small.mini-navbar .footer.fixed {\n  margin: 0 0 0 220px;\n}\nbody.body-small .footer.fixed {\n  margin-left: 0px;\n}\n/* PANELS */\n.page-heading {\n  border-top: 0;\n  padding: 0px 10px 20px 10px;\n}\n.panel-heading h1,\n.panel-heading h2 {\n  margin-bottom: 5px;\n}\n/* TABLES */\n.table-bordered {\n  border: 1px solid #EBEBEB;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n  background-color: #F5F5F6;\n  border-bottom-width: 1px;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n  border: 1px solid #e7e7e7;\n}\n.table > thead > tr > th {\n  border-bottom: 1px solid #DDDDDD;\n  vertical-align: bottom;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n  border-top: 1px solid #e7eaec;\n  line-height: 1.42857;\n  padding: 8px;\n  vertical-align: top;\n}\n/* PANELS */\n.panel.blank-panel {\n  background: none;\n  margin: 0;\n}\n.blank-panel .panel-heading {\n  padding-bottom: 0;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n  -moz-border-bottom-colors: none;\n  -moz-border-left-colors: none;\n  -moz-border-right-colors: none;\n  -moz-border-top-colors: none;\n  background: none;\n  border-color: #dddddd #dddddd rgba(0, 0, 0, 0);\n  border-bottom: #f3f3f4;\n  border-image: none;\n  border-style: solid;\n  border-width: 1px;\n  color: #555555;\n  cursor: default;\n}\n.nav.nav-tabs li {\n  background: none;\n  border: none;\n}\n.nav-tabs > li > a {\n  color: #A7B1C2;\n  font-weight: 600;\n  padding: 10px 20px 10px 25px;\n}\n.nav-tabs > li > a:hover,\n.nav-tabs > li > a:focus {\n  background-color: #e6e6e6;\n  color: #676a6c;\n}\n.ui-tab .tab-content {\n  padding: 20px 0px;\n}\n/* GLOBAL  */\n.no-padding {\n  padding: 0 !important;\n}\n.no-borders {\n  border: none !important;\n}\n.no-margins {\n  margin: 0 !important;\n}\n.no-top-border {\n  border-top: 0 !important;\n}\n.ibox-content.text-box {\n  padding-bottom: 0px;\n  padding-top: 15px;\n}\n.border-left-right {\n  border-left: 1px solid #e7eaec;\n  border-right: 1px solid #e7eaec;\n  border-top: none;\n  border-bottom: none;\n}\n.full-width {\n  width: 100% !important;\n}\n.link-block {\n  font-size: 12px;\n  padding: 10px;\n}\n.nav.navbar-top-links .link-block a {\n  font-size: 12px;\n}\n.link-block a {\n  font-size: 10px;\n  color: inherit;\n}\nbody.mini-navbar .branding {\n  display: none;\n}\nimg.circle-border {\n  border: 6px solid #FFFFFF;\n  border-radius: 50%;\n}\n.branding {\n  float: left;\n  color: #FFFFFF;\n  font-size: 18px;\n  font-weight: 600;\n  padding: 17px 20px;\n  text-align: center;\n  background-color: #1ab394;\n}\n.login-panel {\n  margin-top: 25%;\n}\n.icons-box h3 {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n.icons-box .infont a i {\n  font-size: 25px;\n  display: block;\n  color: #676a6c;\n}\n.icons-box .infont a {\n  color: #a6a8a9;\n}\n.icons-box .infont a {\n  padding: 10px;\n  margin: 1px;\n  display: block;\n}\n.ui-draggable .ibox-title {\n  cursor: move;\n}\n.breadcrumb {\n  background-color: #ffffff;\n  padding: 0;\n  margin-bottom: 0;\n}\n.breadcrumb > li a {\n  color: inherit;\n}\n.breadcrumb > .active {\n  color: inherit;\n}\ncode {\n  background-color: #F9F2F4;\n  border-radius: 4px;\n  color: #ca4440;\n  font-size: 90%;\n  padding: 2px 4px;\n  white-space: nowrap;\n}\n.ibox {\n  clear: both;\n  margin-bottom: 25px;\n  margin-top: 0;\n  padding: 0;\n}\n.ibox:after,\n.ibox:before {\n  display: table;\n}\n.ibox-title {\n  -moz-border-bottom-colors: none;\n  -moz-border-left-colors: none;\n  -moz-border-right-colors: none;\n  -moz-border-top-colors: none;\n  background-color: #ffffff;\n  border-color: #e7eaec;\n  border-image: none;\n  border-style: solid solid none;\n  border-width: 4px 0px 0;\n  color: inherit;\n  margin-bottom: 0;\n  padding: 14px 15px 7px;\n  height: 48px;\n}\n.ibox-content {\n  background-color: #ffffff;\n  color: inherit;\n  padding: 15px 20px 20px 20px;\n  border-color: #e7eaec;\n  border-image: none;\n  border-style: solid solid none;\n  border-width: 1px 0px;\n}\ntable.table-mail tr td {\n  padding: 12px;\n}\n.table-mail .check-mail {\n  padding-left: 20px;\n}\n.table-mail .mail-date {\n  padding-right: 20px;\n}\n.star-mail,\n.check-mail {\n  width: 40px;\n}\n.unread td a,\n.unread td {\n  font-weight: 600;\n  color: inherit;\n}\n.read td a,\n.read td {\n  font-weight: normal;\n  color: inherit;\n}\n.unread td {\n  background-color: #f9f8f8;\n}\n.ibox-content {\n  clear: both;\n}\n.ibox-heading {\n  background-color: #f3f6fb;\n  border-bottom: none;\n}\n.ibox-heading h3 {\n  font-weight: 200;\n  font-size: 24px;\n}\n.ibox-title h5 {\n  display: inline-block;\n  font-size: 14px;\n  margin: 0 0 7px;\n  padding: 0;\n  text-overflow: ellipsis;\n  float: left;\n}\n.ibox-title .label {\n  float: left;\n  margin-left: 4px;\n}\n.ibox-tools {\n  display: inline-block;\n  float: right;\n  margin-top: 0;\n  position: relative;\n  padding: 0;\n}\n.ibox-tools a {\n  cursor: pointer;\n  margin-left: 5px;\n  color: #c4c4c4;\n}\n.ibox-tools a.btn-primary {\n  color: #fff;\n}\n.ibox-tools .dropdown-menu > li > a {\n  padding: 4px 10px;\n  font-size: 12px;\n}\n.ibox .open > .dropdown-menu {\n  left: auto;\n  right: 0;\n}\n/* BACKGROUNDS */\n.gray-bg {\n  background-color: #f3f3f4;\n}\n.white-bg {\n  background-color: #ffffff;\n}\n.navy-bg {\n  background-color: #1ab394;\n  color: #ffffff;\n}\n.blue-bg {\n  background-color: #1c84c6;\n  color: #ffffff;\n}\n.lazur-bg {\n  background-color: #23c6c8;\n  color: #ffffff;\n}\n.yellow-bg {\n  background-color: #f8ac59;\n  color: #ffffff;\n}\n.red-bg {\n  background-color: #ed5565;\n  color: #ffffff;\n}\n.black-bg {\n  background-color: #262626;\n}\n.panel-primary {\n  border-color: #1ab394;\n}\n.panel-primary > .panel-heading {\n  background-color: #1ab394;\n  border-color: #1ab394;\n}\n.panel-success {\n  border-color: #1c84c6;\n}\n.panel-success > .panel-heading {\n  background-color: #1c84c6;\n  border-color: #1c84c6;\n  color: #ffffff;\n}\n.panel-info {\n  border-color: #23c6c8;\n}\n.panel-info > .panel-heading {\n  background-color: #23c6c8;\n  border-color: #23c6c8;\n  color: #ffffff;\n}\n.panel-warning {\n  border-color: #f8ac59;\n}\n.panel-warning > .panel-heading {\n  background-color: #f8ac59;\n  border-color: #f8ac59;\n  color: #ffffff;\n}\n.panel-danger {\n  border-color: #ed5565;\n}\n.panel-danger > .panel-heading {\n  background-color: #ed5565;\n  border-color: #ed5565;\n  color: #ffffff;\n}\n.progress-bar {\n  background-color: #1ab394;\n}\n.progress-small,\n.progress-small .progress-bar {\n  height: 10px;\n}\n.progress-small,\n.progress-mini {\n  margin-top: 5px;\n}\n.progress-mini,\n.progress-mini .progress-bar {\n  height: 5px;\n  margin-bottom: 0px;\n}\n.progress-bar-navy-light {\n  background-color: #3dc7ab;\n}\n.progress-bar-success {\n  background-color: #1c84c6;\n}\n.progress-bar-info {\n  background-color: #23c6c8;\n}\n.progress-bar-warning {\n  background-color: #f8ac59;\n}\n.progress-bar-danger {\n  background-color: #ed5565;\n}\n.panel-title {\n  font-size: inherit;\n}\n.jumbotron {\n  border-radius: 6px;\n  padding: 40px;\n}\n.jumbotron h1 {\n  margin-top: 0;\n}\n/* COLORS */\n.text-navy {\n  color: #1ab394;\n}\n.text-primary {\n  color: inherit;\n}\n.text-success {\n  color: #1c84c6;\n}\n.text-info {\n  color: #23c6c8;\n}\n.text-warning {\n  color: #f8ac59;\n}\n.text-danger {\n  color: #ed5565;\n}\n.text-muted {\n  color: #888888;\n}\n.simple_tag {\n  background-color: #f3f3f4;\n  border: 1px solid #e7eaec;\n  border-radius: 2px;\n  color: inherit;\n  font-size: 10px;\n  margin-right: 5px;\n  margin-top: 5px;\n  padding: 5px 12px;\n  display: inline-block;\n}\n.img-shadow {\n  -webkit-box-shadow: 0px 0px 3px 0px #919191;\n  -moz-box-shadow: 0px 0px 3px 0px #919191;\n  box-shadow: 0px 0px 3px 0px #919191;\n}\n/* For handle diferent bg color in AngularJS version */\n.dashboards\\.dashboard_2 nav.navbar,\n.dashboards\\.dashboard_3 nav.navbar,\n.mailbox\\.inbox nav.navbar,\n.mailbox\\.email_view nav.navbar,\n.mailbox\\.email_compose nav.navbar,\n.dashboards\\.dashboard_4_1 nav.navbar {\n  background: #fff;\n}\n/* For handle diferent bg color in MVC version */\n.Dashboard_2 .navbar.navbar-static-top,\n.Dashboard_3 .navbar.navbar-static-top,\n.Dashboard_4_1 .navbar.navbar-static-top,\n.ComposeEmail .navbar.navbar-static-top,\n.EmailView .navbar.navbar-static-top,\n.Inbox .navbar.navbar-static-top {\n  background: #fff;\n}\n/* MARGINS & PADDINGS */\n.p-xxs {\n  padding: 5px;\n}\n.p-xs {\n  padding: 10px;\n}\n.p-sm {\n  padding: 15px;\n}\n.p-m {\n  padding: 20px;\n}\n.p-md {\n  padding: 25px;\n}\n.p-lg {\n  padding: 30px;\n}\n.p-xl {\n  padding: 40px;\n}\n.m-xxs {\n  margin: 2px 4px;\n}\n.m-xs {\n  margin: 5px;\n}\n.m-sm {\n  margin: 10px;\n}\n.m {\n  margin: 15px;\n}\n.m-md {\n  margin: 20px;\n}\n.m-lg {\n  margin: 30px;\n}\n.m-xl {\n  margin: 50px;\n}\n.m-n {\n  margin: 0 !important;\n}\n.m-l-none {\n  margin-left: 0;\n}\n.m-l-xs {\n  margin-left: 5px;\n}\n.m-l-sm {\n  margin-left: 10px;\n}\n.m-l {\n  margin-left: 15px;\n}\n.m-l-md {\n  margin-left: 20px;\n}\n.m-l-lg {\n  margin-left: 30px;\n}\n.m-l-xl {\n  margin-left: 40px;\n}\n.m-l-n-xxs {\n  margin-left: -1px;\n}\n.m-l-n-xs {\n  margin-left: -5px;\n}\n.m-l-n-sm {\n  margin-left: -10px;\n}\n.m-l-n {\n  margin-left: -15px;\n}\n.m-l-n-md {\n  margin-left: -20px;\n}\n.m-l-n-lg {\n  margin-left: -30px;\n}\n.m-l-n-xl {\n  margin-left: -40px;\n}\n.m-t-none {\n  margin-top: 0;\n}\n.m-t-xxs {\n  margin-top: 1px;\n}\n.m-t-xs {\n  margin-top: 5px;\n}\n.m-t-sm {\n  margin-top: 10px;\n}\n.m-t {\n  margin-top: 15px;\n}\n.m-t-md {\n  margin-top: 20px;\n}\n.m-t-lg {\n  margin-top: 30px;\n}\n.m-t-xl {\n  margin-top: 40px;\n}\n.m-t-n-xxs {\n  margin-top: -1px;\n}\n.m-t-n-xs {\n  margin-top: -5px;\n}\n.m-t-n-sm {\n  margin-top: -10px;\n}\n.m-t-n {\n  margin-top: -15px;\n}\n.m-t-n-md {\n  margin-top: -20px;\n}\n.m-t-n-lg {\n  margin-top: -30px;\n}\n.m-t-n-xl {\n  margin-top: -40px;\n}\n.m-r-none {\n  margin-right: 0;\n}\n.m-r-xxs {\n  margin-right: 1px;\n}\n.m-r-xs {\n  margin-right: 5px;\n}\n.m-r-sm {\n  margin-right: 10px;\n}\n.m-r {\n  margin-right: 15px;\n}\n.m-r-md {\n  margin-right: 20px;\n}\n.m-r-lg {\n  margin-right: 30px;\n}\n.m-r-xl {\n  margin-right: 40px;\n}\n.m-r-n-xxs {\n  margin-right: -1px;\n}\n.m-r-n-xs {\n  margin-right: -5px;\n}\n.m-r-n-sm {\n  margin-right: -10px;\n}\n.m-r-n {\n  margin-right: -15px;\n}\n.m-r-n-md {\n  margin-right: -20px;\n}\n.m-r-n-lg {\n  margin-right: -30px;\n}\n.m-r-n-xl {\n  margin-right: -40px;\n}\n.m-b-none {\n  margin-bottom: 0;\n}\n.m-b-xxs {\n  margin-bottom: 1px;\n}\n.m-b-xs {\n  margin-bottom: 5px;\n}\n.m-b-sm {\n  margin-bottom: 10px;\n}\n.m-b {\n  margin-bottom: 15px;\n}\n.m-b-md {\n  margin-bottom: 20px;\n}\n.m-b-lg {\n  margin-bottom: 30px;\n}\n.m-b-xl {\n  margin-bottom: 40px;\n}\n.m-b-n-xxs {\n  margin-bottom: -1px;\n}\n.m-b-n-xs {\n  margin-bottom: -5px;\n}\n.m-b-n-sm {\n  margin-bottom: -10px;\n}\n.m-b-n {\n  margin-bottom: -15px;\n}\n.m-b-n-md {\n  margin-bottom: -20px;\n}\n.m-b-n-lg {\n  margin-bottom: -30px;\n}\n.m-b-n-xl {\n  margin-bottom: -40px;\n}\n.space-15 {\n  margin: 15px 0;\n}\n.space-20 {\n  margin: 20px 0;\n}\n.space-25 {\n  margin: 25px 0;\n}\n.space-30 {\n  margin: 30px 0;\n}\nbody.modal-open {\n  padding-right: inherit !important;\n}\n/* SEARCH PAGE */\n.search-form {\n  margin-top: 10px;\n}\n.search-result h3 {\n  margin-bottom: 0;\n  color: #1E0FBE;\n}\n.search-result .search-link {\n  color: #006621;\n}\n.search-result p {\n  font-size: 12px;\n  margin-top: 5px;\n}\n/* CONTACTS */\n.contact-box {\n  background-color: #ffffff;\n  border: 1px solid #e7eaec;\n  padding: 20px;\n  margin-bottom: 20px;\n}\n.contact-box a {\n  color: inherit;\n}\n/* INVOICE */\n.invoice-table tbody > tr > td:last-child,\n.invoice-table tbody > tr > td:nth-child(4),\n.invoice-table tbody > tr > td:nth-child(3),\n.invoice-table tbody > tr > td:nth-child(2) {\n  text-align: right;\n}\n.invoice-table thead > tr > th:last-child,\n.invoice-table thead > tr > th:nth-child(4),\n.invoice-table thead > tr > th:nth-child(3),\n.invoice-table thead > tr > th:nth-child(2) {\n  text-align: right;\n}\n.invoice-total > tbody > tr > td:first-child {\n  text-align: right;\n}\n.invoice-total > tbody > tr > td {\n  border: 0 none;\n}\n.invoice-total > tbody > tr > td:last-child {\n  border-bottom: 1px solid #DDDDDD;\n  text-align: right;\n  width: 15%;\n}\n/* ERROR & LOGIN & LOCKSCREEN*/\n.middle-box {\n  height: 400px;\n  width: 400px;\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  margin-top: -250px;\n  margin-left: -200px;\n  z-index: 100;\n}\n.lockscreen.middle-box {\n  width: 200px;\n  margin-left: -100px;\n  margin-top: -190px;\n}\n.loginscreen.middle-box {\n  width: 300px;\n  margin-left: -150px;\n  margin-top: -330px;\n}\n.loginColumns {\n  width: 760px;\n  margin: 8% auto 0;\n}\n.logo-name {\n  color: #e6e6e6;\n  font-size: 180px;\n  font-weight: 800;\n  letter-spacing: -10px;\n  margin-bottom: 0px;\n}\n.middle-box h1 {\n  font-size: 170px;\n}\n.wrapper .middle-box {\n  margin-top: 140px;\n}\n.lock-word {\n  z-index: 10;\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  margin-top: -180px;\n  margin-left: -470px;\n}\n.lock-word span {\n  font-size: 100px;\n  font-weight: 600;\n  color: #e9e9e9;\n  display: inline-block;\n}\n.lock-word .first-word {\n  margin-right: 160px;\n}\n/* DASBOARD */\n.dashboard-header {\n  border-top: 0;\n  padding: 20px 20px 20px 20px;\n}\n.dashboard-header h2 {\n  margin-top: 10px;\n  font-size: 26px;\n}\n.fist-item {\n  border-top: none !important;\n}\n.statistic-box {\n  margin-top: 40px;\n}\n.dashboard-header .list-group-item span.label {\n  margin-right: 10px;\n}\n.list-group.clear-list .list-group-item {\n  border-top: 1px solid #e7eaec;\n  border-bottom: 0;\n  border-right: 0;\n  border-left: 0;\n  padding: 10px 0;\n}\nul.clear-list:first-child {\n  border-top: none !important;\n}\n/* Intimeline */\n.timeline-item .date i {\n  position: absolute;\n  top: 0;\n  right: 0;\n  padding: 5px;\n  width: 30px;\n  text-align: center;\n  border-top: 1px solid #e7eaec;\n  border-bottom: 1px solid #e7eaec;\n  border-left: 1px solid #e7eaec;\n  background: #f8f8f8;\n}\n.timeline-item .date {\n  text-align: right;\n  width: 110px;\n  position: relative;\n  padding-top: 30px;\n}\n.timeline-item .content {\n  border-left: 1px solid #e7eaec;\n  border-top: 1px solid #e7eaec;\n  padding-top: 10px;\n  min-height: 100px;\n}\n.timeline-item .content:hover {\n  background: #f6f6f6;\n}\n/* PIN BOARD */\nul.notes li,\nul.tag-list li {\n  list-style: none;\n}\nul.notes li h4 {\n  margin-top: 20px;\n  font-size: 16px;\n}\nul.notes li div {\n  text-decoration: none;\n  color: #000;\n  background: #ffc;\n  display: block;\n  height: 140px;\n  width: 140px;\n  padding: 1em;\n  position: relative;\n}\nul.notes li div small {\n  position: absolute;\n  top: 5px;\n  right: 5px;\n  font-size: 10px;\n}\nul.notes li div a {\n  position: absolute;\n  right: 10px;\n  bottom: 10px;\n  color: inherit;\n}\nul.notes li {\n  margin: 10px 40px 50px 0px;\n  float: left;\n}\nul.notes li div p {\n  font-size: 12px;\n}\nul.notes li div {\n  text-decoration: none;\n  color: #000;\n  background: #ffc;\n  display: block;\n  height: 140px;\n  width: 140px;\n  padding: 1em;\n  /* Firefox */\n  -moz-box-shadow: 5px 5px 2px #212121;\n  /* Safari+Chrome */\n  -webkit-box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);\n  /* Opera */\n  box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);\n}\nul.notes li div {\n  -webkit-transform: rotate(-6deg);\n  -o-transform: rotate(-6deg);\n  -moz-transform: rotate(-6deg);\n}\nul.notes li:nth-child(even) div {\n  -o-transform: rotate(4deg);\n  -webkit-transform: rotate(4deg);\n  -moz-transform: rotate(4deg);\n  position: relative;\n  top: 5px;\n}\nul.notes li:nth-child(3n) div {\n  -o-transform: rotate(-3deg);\n  -webkit-transform: rotate(-3deg);\n  -moz-transform: rotate(-3deg);\n  position: relative;\n  top: -5px;\n}\nul.notes li:nth-child(5n) div {\n  -o-transform: rotate(5deg);\n  -webkit-transform: rotate(5deg);\n  -moz-transform: rotate(5deg);\n  position: relative;\n  top: -10px;\n}\nul.notes li div:hover,\nul.notes li div:focus {\n  -webkit-transform: scale(1.1);\n  -moz-transform: scale(1.1);\n  -o-transform: scale(1.1);\n  position: relative;\n  z-index: 5;\n}\nul.notes li div {\n  text-decoration: none;\n  color: #000;\n  background: #ffc;\n  display: block;\n  height: 210px;\n  width: 210px;\n  padding: 1em;\n  -moz-box-shadow: 5px 5px 7px #212121;\n  -webkit-box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);\n  box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);\n  -moz-transition: -moz-transform 0.15s linear;\n  -o-transition: -o-transform 0.15s linear;\n  -webkit-transition: -webkit-transform 0.15s linear;\n}\n/* FILE MANAGER */\n.file-box {\n  float: left;\n  width: 220px;\n}\n.file-manager h5 {\n  text-transform: uppercase;\n}\n.file-manager {\n  list-style: none outside none;\n  margin: 0;\n  padding: 0;\n}\n.folder-list li a {\n  color: #666666;\n  display: block;\n  padding: 5px 0;\n}\n.folder-list li {\n  border-bottom: 1px solid #e7eaec;\n  display: block;\n}\n.folder-list li i {\n  margin-right: 8px;\n  color: #3d4d5d;\n}\n.category-list li a {\n  color: #666666;\n  display: block;\n  padding: 5px 0;\n}\n.category-list li {\n  display: block;\n}\n.category-list li i {\n  margin-right: 8px;\n  color: #3d4d5d;\n}\n.category-list li a .text-navy {\n  color: #1ab394;\n}\n.category-list li a .text-primary {\n  color: #1c84c6;\n}\n.category-list li a .text-info {\n  color: #23c6c8;\n}\n.category-list li a .text-danger {\n  color: #EF5352;\n}\n.category-list li a .text-warning {\n  color: #F8AC59;\n}\n.file-manager h5.tag-title {\n  margin-top: 20px;\n}\n.tag-list li {\n  float: left;\n}\n.tag-list li a {\n  font-size: 10px;\n  background-color: #f3f3f4;\n  padding: 5px 12px;\n  color: inherit;\n  border-radius: 2px;\n  border: 1px solid #e7eaec;\n  margin-right: 5px;\n  margin-top: 5px;\n  display: block;\n}\n.file {\n  border: 1px solid #e7eaec;\n  padding: 0;\n  background-color: #ffffff;\n  position: relative;\n  margin-bottom: 20px;\n  margin-right: 20px;\n}\n.file-manager .hr-line-dashed {\n  margin: 15px 0;\n}\n.file .icon,\n.file .image {\n  height: 100px;\n  overflow: hidden;\n}\n.file .icon {\n  padding: 15px 10px;\n  text-align: center;\n}\n.file-control {\n  color: inherit;\n  font-size: 11px;\n  margin-right: 10px;\n}\n.file-control.active {\n  text-decoration: underline;\n}\n.file .icon i {\n  font-size: 70px;\n  color: #dadada;\n}\n.file .file-name {\n  padding: 10px;\n  background-color: #f8f8f8;\n  border-top: 1px solid #e7eaec;\n}\n.file-name small {\n  color: #676a6c;\n}\n.corner {\n  position: absolute;\n  display: inline-block;\n  width: 0;\n  height: 0;\n  line-height: 0;\n  border: 0.6em solid transparent;\n  border-right: 0.6em solid #f1f1f1;\n  border-bottom: 0.6em solid #f1f1f1;\n  right: 0em;\n  bottom: 0em;\n}\na.compose-mail {\n  padding: 8px 10px;\n}\n.mail-search {\n  max-width: 300px;\n}\n/* PROFILE */\n.profile-content {\n  border-top: none !important;\n}\n.feed-activity-list .feed-element {\n  border-bottom: 1px solid #e7eaec;\n}\n.feed-element:first-child {\n  margin-top: 0;\n}\n.feed-element {\n  padding-bottom: 15px;\n}\n.feed-element,\n.feed-element .media {\n  margin-top: 15px;\n}\n.feed-element,\n.media-body {\n  overflow: hidden;\n}\n.feed-element > .pull-left {\n  margin-right: 10px;\n}\n.feed-element img.img-circle,\n.dropdown-messages-box img.img-circle {\n  width: 38px;\n  height: 38px;\n}\n.feed-element .well {\n  border: 1px solid #e7eaec;\n  box-shadow: none;\n  margin-top: 10px;\n  margin-bottom: 5px;\n  padding: 10px 20px;\n  font-size: 11px;\n  line-height: 16px;\n}\n.feed-element .actions {\n  margin-top: 10px;\n}\n.feed-element .photos {\n  margin: 10px 0;\n}\n.feed-photo {\n  max-height: 180px;\n  border-radius: 4px;\n  overflow: hidden;\n  margin-right: 10px;\n  margin-bottom: 10px;\n}\n/* MAILBOX */\n.mail-box {\n  background-color: #ffffff;\n  border: 1px solid #e7eaec;\n  border-top: 0;\n  padding: 0px;\n  margin-bottom: 20px;\n}\n.mail-box-header {\n  background-color: #ffffff;\n  border: 1px solid #e7eaec;\n  border-bottom: 0;\n  padding: 30px 20px 20px 20px;\n}\n.mail-box-header h2 {\n  margin-top: 0px;\n}\n.mailbox-content .tag-list li a {\n  background: #ffffff;\n}\n.mail-body {\n  border-top: 1px solid #e7eaec;\n  padding: 20px;\n}\n.mail-text {\n  border-top: 1px solid #e7eaec;\n}\n.mail-text .note-toolbar {\n  padding: 10px 15px;\n}\n.mail-body .form-group {\n  margin-bottom: 5px;\n}\n.mail-text .note-editor .note-toolbar {\n  background-color: #F9F8F8;\n}\n.mail-attachment {\n  border-top: 1px solid #e7eaec;\n  padding: 20px;\n  font-size: 12px;\n}\n.mailbox-content {\n  background: none;\n  border: none;\n  padding: 10px;\n}\n.mail-ontact {\n  width: 23%;\n}\n/* PROJECTS */\n.project-people,\n.project-actions {\n  text-align: right;\n  vertical-align: middle;\n}\ndd.project-people {\n  text-align: left;\n  margin-top: 5px;\n}\n.project-people img {\n  width: 32px;\n  height: 32px;\n}\n.project-title a {\n  font-size: 14px;\n  color: #676a6c;\n  font-weight: 600;\n}\n.project-list table tr td {\n  border-top: none;\n  border-bottom: 1px solid #e7eaec;\n  padding: 15px 10px;\n  vertical-align: middle;\n}\n.project-manager .tag-list li a {\n  font-size: 10px;\n  background-color: white;\n  padding: 5px 12px;\n  color: inherit;\n  border-radius: 2px;\n  border: 1px solid #e7eaec;\n  margin-right: 5px;\n  margin-top: 5px;\n  display: block;\n}\n.project-files li a {\n  font-size: 11px;\n  color: #676a6c;\n  margin-left: 10px;\n  line-height: 22px;\n}\n/* FAQ */\n.faq-item {\n  padding: 20px;\n  margin-bottom: 2px;\n  background: #fff;\n}\n.faq-question {\n  font-size: 18px;\n  font-weight: 600;\n  color: #1ab394;\n  display: block;\n}\n.faq-question:hover {\n  color: #179d82;\n}\n.faq-answer {\n  margin-top: 10px;\n  background: #f3f3f4;\n  border: 1px solid #e7eaec;\n  border-radius: 3px;\n  padding: 15px;\n}\n.faq-item .tag-item {\n  background: #f3f3f4;\n  padding: 2px 6px;\n  font-size: 10px;\n  text-transform: uppercase;\n}\n/* Chat view */\n.message-input {\n  height: 90px !important;\n}\n.chat-avatar {\n  white: 36px;\n  height: 36px;\n  float: left;\n  margin-right: 10px;\n}\n.chat-user-name {\n  padding: 10px;\n}\n.chat-user {\n  padding: 8px 10px;\n  border-bottom: 1px solid #e7eaec;\n}\n.chat-user a {\n  color: inherit;\n}\n/*------------------------*/\n.chat-view .ibox-content {\n  /*height: 500px;*/\n}\n.theme-config-box {\n  z-index: 1;\n}\n.chat-view {\n  z-index: 20012;\n}\n.chat-users,\n.chat-statistic {\n  margin-left: -30px;\n}\n@media (max-width: 992px) {\n  .chat-users,\n  .chat-statistic {\n    margin-left: 0px;\n  }\n}\n.chat-view .ibox-content {\n  padding: 0;\n}\n.chat-message {\n  padding: 10px 20px;\n}\n.message-avatar {\n  height: 48px;\n  width: 48px;\n  border: 1px solid #e7eaec;\n  border-radius: 4px;\n  margin-top: 1px;\n}\n.chat-discussion .chat-message:nth-child(2n+1) .message-avatar {\n  float: left;\n  margin-right: 10px;\n}\n.chat-discussion .chat-message:nth-child(2n) .message-avatar {\n  float: right;\n  margin-left: 10px;\n}\n.message {\n  background-color: #fff;\n  border: 1px solid #e7eaec;\n  text-align: left;\n  display: block;\n  padding: 10px 20px;\n  position: relative;\n  border-radius: 4px;\n}\n.chat-discussion .chat-message:nth-child(2n+1) .message-date {\n  float: right;\n}\n.chat-discussion .chat-message:nth-child(2n) .message-date {\n  float: left;\n}\n.chat-discussion .chat-message:nth-child(2n+1) .message {\n  text-align: left;\n  margin-left: 55px;\n}\n.chat-discussion .chat-message:nth-child(2n) .message {\n  text-align: right;\n  margin-right: 55px;\n}\n.message-date {\n  font-size: 10px;\n  color: #888888;\n}\n.message-content {\n  display: block;\n}\n.chat-discussion {\n  background: #eee;\n  padding: 15px;\n  height: 400px;\n  overflow-y: auto;\n}\n.chat-users {\n  overflow-y: auto;\n  height: 400px;\n}\n.chat-message-form .form-group {\n  margin-bottom: 0;\n}\n/* jsTree */\n.jstree-open > .jstree-anchor > .fa-folder:before {\n  content: \"\\f07c\";\n}\n.jstree-default .jstree-icon.none {\n  width: 0;\n}\nbody.rtls {\n  /* Theme config */\n}\nbody.rtls #page-wrapper {\n  margin: 0 220px 0 0;\n}\nbody.rtls .nav-second-level li a {\n  padding: 7px 35px 7px 10px;\n}\nbody.rtls .ibox-title h5 {\n  float: right;\n}\nbody.rtls .pull-right {\n  float: left !important;\n}\nbody.rtls .pull-left {\n  float: right !important;\n}\nbody.rtls .ibox-tools {\n  float: left;\n}\nbody.rtls .stat-percent {\n  float: left;\n}\nbody.rtls .navbar-right {\n  float: left !important;\n}\nbody.rtls .navbar-top-links li:last-child {\n  margin-left: 40px;\n  margin-right: 0;\n}\nbody.rtls .minimalize-styl-2 {\n  float: right;\n  margin: 14px 20px 5px 5px;\n}\nbody.rtls .feed-element > .pull-left {\n  margin-left: 10px;\n  margin-right: 0;\n}\nbody.rtls .timeline-item .date {\n  text-align: left;\n}\nbody.rtls .timeline-item .date i {\n  left: 0;\n  right: auto;\n}\nbody.rtls .timeline-item .content {\n  border-right: 1px solid #e7eaec;\n  border-left: none;\n}\nbody.rtls .theme-config {\n  left: 0;\n  right: auto;\n}\nbody.rtls .spin-icon {\n  border-radius: 0 20px 20px 0;\n}\nbody.rtls .toast-close-button {\n  float: left;\n}\nbody.rtls #toast-container > .toast:before {\n  margin: auto -1.5em auto 0.5em;\n}\nbody.rtls #toast-container > div {\n  padding: 15px 50px 15px 15px;\n}\nbody.rtls .center-orientation .vertical-timeline-icon i {\n  margin-left: 0;\n  margin-right: -12px;\n}\nbody.rtls .vertical-timeline-icon i {\n  right: 50%;\n  left: auto;\n  margin-left: auto;\n  margin-right: -12px;\n}\nbody.rtls .file-box {\n  float: right;\n}\nbody.rtls ul.notes li {\n  float: right;\n}\nbody.rtls .chat-users,\nbody.rtls .chat-statistic {\n  margin-right: -30px;\n  margin-left: auto;\n}\nbody.rtls .dropdown-menu > li > a {\n  text-align: right;\n}\nbody.rtls .b-r {\n  border-left: 1px solid #e7eaec;\n  border-right: none;\n}\nbody.rtls .dd-list .dd-list {\n  padding-right: 30px;\n  padding-left: 0;\n}\nbody.rtls .dd-item > button {\n  float: right;\n}\nbody.rtls .theme-config-box {\n  margin-left: -220px;\n  margin-right: 0;\n}\nbody.rtls .theme-config-box.show {\n  margin-left: 0;\n  margin-right: 0;\n}\nbody.rtls .spin-icon {\n  right: 0;\n  left: auto;\n}\nbody.rtls .skin-setttings {\n  margin-right: 40px;\n  margin-left: 0;\n}\nbody.rtls .skin-setttings {\n  direction: ltr;\n}\nbody.rtls .footer.fixed {\n  margin-right: 220px;\n  margin-left: 0;\n}\n@media (max-width: 992px) {\n  body.rtls .chat-users,\n  body.rtls .chat-statistic {\n    margin-right: 0px;\n  }\n}\nbody.rtls.mini-navbar .footer.fixed,\nbody.body-small.mini-navbar .footer.fixed {\n  margin: 0 70px 0 0;\n}\nbody.rtls.mini-navbar.fixed-sidebar .footer.fixed,\nbody.body-small.mini-navbar .footer.fixed {\n  margin: 0 0 0 0;\n}\nbody.rtls.top-navigation .navbar-toggle {\n  float: right;\n  margin-left: 15px;\n  margin-right: 15px;\n}\n.body-small.rtls.top-navigation .navbar-header {\n  float: none;\n}\nbody.rtls.top-navigation #page-wrapper {\n  margin: 0;\n}\nbody.rtls.mini-navbar #page-wrapper {\n  margin: 0 70px 0 0;\n}\nbody.rtls.mini-navbar.fixed-sidebar #page-wrapper {\n  margin: 0 0 0 0;\n}\nbody.rtls.body-small.fixed-sidebar.mini-navbar #page-wrapper {\n  margin: 0 220px 0 0;\n}\nbody.rtls.body-small.fixed-sidebar.mini-navbar .navbar-static-side {\n  width: 220px;\n}\n.body-small.rtls .navbar-fixed-top {\n  margin-right: 0px;\n}\n.body-small.rtls .navbar-header {\n  float: right;\n}\nbody.rtls .navbar-top-links li:last-child {\n  margin-left: 20px;\n}\nbody.rtls .top-navigation #page-wrapper,\nbody.rtls.mini-navbar .top-navigation #page-wrapper,\nbody.rtls.mini-navbar.top-navigation #page-wrapper {\n  margin: 0;\n}\nbody.rtls .top-navigation .footer.fixed,\nbody.rtls.top-navigation .footer.fixed {\n  margin: 0;\n}\n@media (max-width: 768px) {\n  body.rtls .navbar-top-links li:last-child {\n    margin-left: 20px;\n  }\n  .body-small.rtls #page-wrapper {\n    position: inherit;\n    margin: 0 0 0 0px;\n    min-height: 1000px;\n  }\n  .body-small.rtls .navbar-static-side {\n    display: none;\n    z-index: 101;\n    position: absolute;\n    width: 70px;\n  }\n  .body-small.rtls.mini-navbar .navbar-static-side {\n    display: block;\n  }\n  .rtls.fixed-sidebar.body-small .navbar-static-side {\n    display: none;\n    z-index: 101;\n    position: fixed;\n    width: 220px;\n  }\n  .rtls.fixed-sidebar.body-small.mini-navbar .navbar-static-side {\n    display: block;\n  }\n}\n.rtls .ltr-support {\n  direction: ltr;\n}\n/*\n *\n *   This is style for skin config\n *   Use only in demo theme\n *\n*/\n.theme-config {\n  position: absolute;\n  top: 90px;\n  right: 0px;\n  overflow: hidden;\n}\n.theme-config-box {\n  margin-right: -220px;\n  position: relative;\n  z-index: 2000;\n  transition-duration: 0.8s;\n}\n.theme-config-box.show {\n  margin-right: 0px;\n}\n.spin-icon {\n  background: #1ab394;\n  position: absolute;\n  padding: 7px 10px 7px 13px;\n  border-radius: 20px 0px 0px 20px;\n  font-size: 16px;\n  top: 0;\n  left: 0px;\n  width: 40px;\n  color: #fff;\n  cursor: pointer;\n}\n.skin-setttings {\n  width: 220px;\n  margin-left: 40px;\n  background: #f3f3f4;\n}\n.skin-setttings .title {\n  background: #efefef;\n  text-align: center;\n  text-transform: uppercase;\n  font-weight: 600;\n  display: block;\n  padding: 10px 15px;\n  font-size: 12px;\n}\n.setings-item {\n  padding: 10px 30px;\n}\n.setings-item.skin {\n  text-align: center;\n}\n.setings-item .switch {\n  float: right;\n}\n.skin-name a {\n  text-transform: uppercase;\n}\n.setings-item a {\n  color: #fff;\n}\n.default-skin,\n.blue-skin,\n.ultra-skin,\n.yellow-skin {\n  text-align: center;\n}\n.default-skin {\n  font-weight: 600;\n  background: #1ab394;\n}\n.default-skin:hover {\n  background: #199d82;\n}\n.blue-skin {\n  font-weight: 600;\n  background: url(\"patterns/header-profile-skin-1.png\") repeat scroll 0 0;\n}\n.blue-skin:hover {\n  background: #0d8ddb;\n}\n.yellow-skin {\n  font-weight: 600;\n  background: url(\"patterns/header-profile-skin-3.png\") repeat scroll 0 100%;\n}\n.yellow-skin:hover {\n  background: #ce8735;\n}\n.ultra-skin {\n  font-weight: 600;\n  background: url(\"patterns/header-profile-skin-2.png\") repeat scroll 0 0;\n}\n.ultra-skin:hover {\n  background: #1a2d40;\n}\n/*\n *\n *   SKIN 1 - INSPINIA - Responsive Admin Theme\n *   NAME - Blue light\n *\n*/\n.skin-1 .minimalize-styl-2 {\n  margin: 14px 5px 5px 30px;\n}\n.skin-1 .navbar-top-links li:last-child {\n  margin-right: 30px;\n}\n.skin-1.fixed-nav .minimalize-styl-2 {\n  margin: 14px 5px 5px 15px;\n}\n.skin-1 .spin-icon {\n  background: #0e9aef !important;\n}\n.skin-1 .nav-header {\n  background: #0e9aef;\n  background: url('patterns/header-profile-skin-1.png');\n}\n.skin-1.mini-navbar .nav-second-level {\n  background: #3e495f;\n}\n.skin-1 .breadcrumb {\n  background: transparent;\n}\n.skin-1 .page-heading {\n  border: none;\n}\n.skin-1 .nav > li.active {\n  background: #3a4459;\n}\n.skin-1 .nav > li > a {\n  color: #9ea6b9;\n}\n.skin-1 .nav > li.active > a {\n  color: #fff;\n}\n.skin-1 .navbar-minimalize {\n  background: #0e9aef;\n  border-color: #0e9aef;\n}\nbody.skin-1 {\n  background: #3e495f;\n}\n.skin-1 .navbar-static-top {\n  background: #ffffff;\n}\n.skin-1 .dashboard-header {\n  background: transparent;\n  border-bottom: none !important;\n  border-top: none;\n  padding: 20px 30px 10px 30px;\n}\n.fixed-nav.skin-1 .navbar-fixed-top {\n  background: #fff;\n}\n.skin-1 .wrapper-content {\n  padding: 30px 15px;\n}\n.skin-1 #page-wrapper {\n  background: #f4f6fa;\n}\n.skin-1 .ibox-title,\n.skin-1 .ibox-content {\n  border-width: 1px;\n}\n.skin-1 .ibox-content:last-child {\n  border-style: solid solid solid solid;\n}\n.skin-1 .nav > li.active {\n  border: none;\n}\n.skin-1 .nav-header {\n  padding: 35px 25px 25px 25px;\n}\n.skin-1 .nav-header a.dropdown-toggle {\n  color: #fff;\n  margin-top: 10px;\n}\n.skin-1 .nav-header a.dropdown-toggle .text-muted {\n  color: #fff;\n  opacity: 0.8;\n}\n.skin-1 .profile-element {\n  text-align: center;\n}\n.skin-1 .img-circle {\n  border-radius: 5px;\n}\n.skin-1 .navbar-default .nav > li > a:hover,\n.skin-1 .navbar-default .nav > li > a:focus {\n  background: #3a4459;\n  color: #fff;\n}\n.skin-1 .nav.nav-tabs > li.active > a {\n  color: #555;\n}\n.skin-1 .nav.nav-tabs > li.active {\n  background: transparent;\n}\n/*\n *\n *   SKIN 2 - INSPINIA - Responsive Admin Theme\n *   NAME - Inspinia Ultra\n *\n*/\nbody.skin-2 {\n  color: #565758 !important;\n}\n.skin-2 .minimalize-styl-2 {\n  margin: 14px 5px 5px 25px;\n}\n.skin-2 .navbar-top-links li:last-child {\n  margin-right: 25px;\n}\n.skin-2 .spin-icon {\n  background: #23c6c8 !important;\n}\n.skin-2 .nav-header {\n  background: #23c6c8;\n  background: url('patterns/header-profile-skin-2.png');\n}\n.skin-2.mini-navbar .nav-second-level {\n  background: #ededed;\n}\n.skin-2 .breadcrumb {\n  background: transparent;\n}\n.skin-2.fixed-nav .minimalize-styl-2 {\n  margin: 14px 5px 5px 15px;\n}\n.skin-2 .page-heading {\n  border: none;\n  background: rgba(255, 255, 255, 0.7);\n}\n.skin-2 .nav > li.active {\n  background: #e0e0e0;\n}\n.skin-2 .logo-element {\n  padding: 17px 0;\n}\n.skin-2 .nav > li > a,\n.skin-2 .welcome-message {\n  color: #edf6ff;\n}\n.skin-2 #top-search::-moz-placeholder {\n  color: #edf6ff;\n  opacity: 0.5;\n}\n.skin-2 #side-menu > li > a,\n.skin-2 .nav.nav-second-level > li > a {\n  color: #586b7d;\n}\n.skin-2 .nav > li.active > a {\n  color: #213a53;\n}\n.skin-2.mini-navbar .nav-header {\n  background: #213a53;\n}\n.skin-2 .navbar-minimalize {\n  background: #23c6c8;\n  border-color: #23c6c8;\n}\n.skin-2 .border-bottom {\n  border-bottom: none !important;\n}\n.skin-2 #top-search {\n  color: #fff;\n}\nbody.skin-2 #wrapper {\n  background-color: #ededed;\n}\n.skin-2 .navbar-static-top {\n  background: #213a53;\n}\n.fixed-nav.skin-2 .navbar-fixed-top {\n  background: #213a53;\n  border-bottom: none !important;\n}\n.skin-2 .nav-header {\n  padding: 30px 25px 30px 25px;\n}\n.skin-2 .dashboard-header {\n  background: rgba(255, 255, 255, 0.4);\n  border-bottom: none !important;\n  border-top: none;\n  padding: 20px 30px 20px 30px;\n}\n.skin-2 .wrapper-content {\n  padding: 30px 15px;\n}\n.skin-2 .dashoard-1 .wrapper-content {\n  padding: 0px 30px 25px 30px;\n}\n.skin-2 .ibox-title {\n  background: rgba(255, 255, 255, 0.7);\n  border: none;\n  margin-bottom: 1px;\n}\n.skin-2 .ibox-content {\n  background: rgba(255, 255, 255, 0.4);\n  border: none !important;\n}\n.skin-2 #page-wrapper {\n  background: #f6f6f6;\n  background: -webkit-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);\n  background: -o-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);\n  background: -ms-radial-gradient(center, ellipse cover, #f6f6f6 20%, #d5d5d5 100%);\n  background: radial-gradient(ellipse at center, #f6f6f6 20%, #d5d5d5 100%);\n  -ms-filter: \"progid:DXImageTransform.Microsoft.gradient(startColorstr=#f6f6f6, endColorstr=#d5d5d5)\";\n}\n.skin-2 .ibox-title,\n.skin-2 .ibox-content {\n  border-width: 1px;\n}\n.skin-2 .ibox-content:last-child {\n  border-style: solid solid solid solid;\n}\n.skin-2 .nav > li.active {\n  border: none;\n}\n.skin-2 .nav-header a.dropdown-toggle {\n  color: #edf6ff;\n  margin-top: 10px;\n}\n.skin-2 .nav-header a.dropdown-toggle .text-muted {\n  color: #edf6ff;\n  opacity: 0.8;\n}\n.skin-2 .img-circle {\n  border-radius: 10px;\n}\n.skin-2 .nav.navbar-top-links > li > a:hover,\n.skin-2 .nav.navbar-top-links > li > a:focus {\n  background: #1a2d41;\n}\n.skin-2 .navbar-default .nav > li > a:hover,\n.skin-2 .navbar-default .nav > li > a:focus {\n  background: #e0e0e0;\n  color: #213a53;\n}\n.skin-2 .nav.nav-tabs > li.active > a {\n  color: #555;\n}\n.skin-2 .nav.nav-tabs > li.active {\n  background: transparent;\n}\n/*\n *\n *   SKIN 3 - INSPINIA - Responsive Admin Theme\n *   NAME - Yellow/purple\n *\n*/\n.skin-3 .minimalize-styl-2 {\n  margin: 14px 5px 5px 30px;\n}\n.skin-3 .navbar-top-links li:last-child {\n  margin-right: 30px;\n}\n.skin-3.fixed-nav .minimalize-styl-2 {\n  margin: 14px 5px 5px 15px;\n}\n.skin-3 .spin-icon {\n  background: #ecba52 !important;\n}\nbody.boxed-layout.skin-3 #wrapper {\n  background: #3e2c42;\n}\n.skin-3 .nav-header {\n  background: #ecba52;\n  background: url('patterns/header-profile-skin-3.png');\n}\n.skin-3.mini-navbar .nav-second-level {\n  background: #3e2c42;\n}\n.skin-3 .breadcrumb {\n  background: transparent;\n}\n.skin-3 .page-heading {\n  border: none;\n}\n.skin-3 .nav > li.active {\n  background: #38283c;\n}\n.fixed-nav.skin-3 .navbar-fixed-top {\n  background: #fff;\n}\n.skin-3 .nav > li > a {\n  color: #948b96;\n}\n.skin-3 .nav > li.active > a {\n  color: #fff;\n}\n.skin-3 .navbar-minimalize {\n  background: #ecba52;\n  border-color: #ecba52;\n}\nbody.skin-3 {\n  background: #3e2c42;\n}\n.skin-3 .navbar-static-top {\n  background: #ffffff;\n}\n.skin-3 .dashboard-header {\n  background: transparent;\n  border-bottom: none !important;\n  border-top: none;\n  padding: 20px 30px 10px 30px;\n}\n.skin-3 .wrapper-content {\n  padding: 30px 15px;\n}\n.skin-3 #page-wrapper {\n  background: #f4f6fa;\n}\n.skin-3 .ibox-title,\n.skin-3 .ibox-content {\n  border-width: 1px;\n}\n.skin-3 .ibox-content:last-child {\n  border-style: solid solid solid solid;\n}\n.skin-3 .nav > li.active {\n  border: none;\n}\n.skin-3 .nav-header {\n  padding: 35px 25px 25px 25px;\n}\n.skin-3 .nav-header a.dropdown-toggle {\n  color: #fff;\n  margin-top: 10px;\n}\n.skin-3 .nav-header a.dropdown-toggle .text-muted {\n  color: #fff;\n  opacity: 0.8;\n}\n.skin-3 .profile-element {\n  text-align: center;\n}\n.skin-3 .img-circle {\n  border-radius: 5px;\n}\n.skin-3 .navbar-default .nav > li > a:hover,\n.skin-3 .navbar-default .nav > li > a:focus {\n  background: #38283c;\n  color: #fff;\n}\n.skin-3 .nav.nav-tabs > li.active > a {\n  color: #555;\n}\n.skin-3 .nav.nav-tabs > li.active {\n  background: transparent;\n}\n@media (min-width: 768px) {\n  #page-wrapper {\n    position: inherit;\n    margin: 0 0 0 220px;\n    min-height: 1200px;\n  }\n  .navbar-static-side {\n    z-index: 101;\n    position: absolute;\n    width: 220px;\n  }\n  .navbar-top-links .dropdown-messages,\n  .navbar-top-links .dropdown-tasks,\n  .navbar-top-links .dropdown-alerts {\n    margin-left: auto;\n  }\n}\n@media (max-width: 768px) {\n  #page-wrapper {\n    position: inherit;\n    margin: 0 0 0 0px;\n    min-height: 1000px;\n  }\n  .body-small .navbar-static-side {\n    display: none;\n    z-index: 101;\n    position: absolute;\n    width: 70px;\n  }\n  .body-small.mini-navbar .navbar-static-side {\n    display: block;\n  }\n  .lock-word {\n    display: none;\n  }\n  .navbar-form-custom {\n    display: none;\n  }\n  .navbar-header {\n    display: inline;\n    float: left;\n  }\n  .sidebard-panel {\n    z-index: 2;\n    position: relative;\n    width: auto;\n    min-height: 100% !important;\n  }\n  .sidebar-content .wrapper {\n    padding-right: 0px;\n    z-index: 1;\n  }\n  .fixed-sidebar.body-small .navbar-static-side {\n    display: none;\n    z-index: 101;\n    position: fixed;\n    width: 220px;\n  }\n  .fixed-sidebar.body-small.mini-navbar .navbar-static-side {\n    display: block;\n  }\n}\n@media (max-width: 350px) {\n  .timeline-item .date {\n    text-align: left;\n    width: 110px;\n    position: relative;\n    padding-top: 30px;\n  }\n  .timeline-item .date i {\n    position: absolute;\n    top: 0;\n    left: 15px;\n    padding: 5px;\n    width: 30px;\n    text-align: center;\n    border: 1px solid #e7eaec;\n    background: #f8f8f8;\n  }\n  .timeline-item .content {\n    border-left: none;\n    border-top: 1px solid #e7eaec;\n    padding-top: 10px;\n    min-height: 100px;\n  }\n  .nav.navbar-top-links li.dropdown {\n    display: none;\n  }\n}\n/* Only demo */\n@media (max-width: 1000px) {\n  .welcome-message {\n    display: none;\n  }\n}\n"
  },
  {
    "path": "public/admin/email_templates/action.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n    <meta name=\"viewport\" content=\"width=device-width\" />\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title>Actionable emails e.g. reset password</title>\n    <link href=\"styles.css\" media=\"all\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n\n<body>\n\n<table class=\"body-wrap\">\n    <tr>\n        <td></td>\n        <td class=\"container\" width=\"600\">\n            <div class=\"content\">\n                <table class=\"main\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                    <tr>\n                        <td class=\"content-wrap\">\n                            <table  cellpadding=\"0\" cellspacing=\"0\">\n                                <tr>\n                                    <td>\n                                        <img class=\"img-responsive\" src=\"img/header.jpg\"/>\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        <h3>Welcom in basic email template</h3>\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries.\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        We may need to send you critical information about our service and it is important that we have an accurate email address.\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block aligncenter\">\n                                        <a href=\"#\" class=\"btn-primary\">Confirm email address</a>\n                                    </td>\n                                </tr>\n                              </table>\n                        </td>\n                    </tr>\n                </table>\n                <div class=\"footer\">\n                    <table width=\"100%\">\n                        <tr>\n                            <td class=\"aligncenter content-block\">Follow <a href=\"#\">@Company</a> on Twitter.</td>\n                        </tr>\n                    </table>\n                </div></div>\n        </td>\n        <td></td>\n    </tr>\n</table>\n\n</body>\n</html>\n"
  },
  {
    "path": "public/admin/email_templates/alert.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n    <meta name=\"viewport\" content=\"width=device-width\" />\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title>Alerts e.g. approaching your limit</title>\n    <link href=\"styles.css\" media=\"all\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n\n<body>\n\n<table class=\"body-wrap\">\n    <tr>\n        <td></td>\n        <td class=\"container\" width=\"600\">\n            <div class=\"content\">\n                <table class=\"main\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                    <tr>\n                        <td class=\"alert alert-good\">\n                            Info: You're approaching your limit. Please upgrade.\n                        </td>\n                    </tr>\n                    <tr>\n                        <td class=\"content-wrap\">\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                                <tr>\n                                    <td class=\"content-block\">\n                                        You have <strong>1 free report</strong> remaining.\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        <a href=\"#\" class=\"btn-primary\">Upgrade my account</a>\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        Thanks for choosing Company Inc.\n                                    </td>\n                                </tr>\n                            </table>\n                        </td>\n                    </tr>\n                </table>\n                <div class=\"footer\">\n                    <table width=\"100%\">\n                        <tr>\n                            <td class=\"aligncenter content-block\"><a href=\"#\">Unsubscribe</a> from these alerts.</td>\n                        </tr>\n                    </table>\n                </div></div>\n        </td>\n        <td></td>\n    </tr>\n</table>\n\n</body>\n</html>\n"
  },
  {
    "path": "public/admin/email_templates/billing.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n    <meta name=\"viewport\" content=\"width=device-width\" />\n    <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />\n    <title>Billing e.g. invoices and receipts</title>\n    <link href=\"styles.css\" media=\"all\" rel=\"stylesheet\" type=\"text/css\" />\n</head>\n\n<body>\n\n<table class=\"body-wrap\">\n    <tr>\n        <td></td>\n        <td class=\"container\" width=\"600\">\n            <div class=\"content\">\n                <table class=\"main\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                    <tr>\n                        <td class=\"content-wrap aligncenter\">\n                            <table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">\n                                <tr>\n                                    <td class=\"content-block\">\n                                        <h2>Thanks for using INSPINIA</h2>\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        <table class=\"invoice\">\n                                            <tr>\n                                                <td>Anna Smith<br>Invoice #12345<br>June 01 2015</td>\n                                            </tr>\n                                            <tr>\n                                                <td>\n                                                    <table class=\"invoice-items\" cellpadding=\"0\" cellspacing=\"0\">\n                                                        <tr>\n                                                            <td>Service 1</td>\n                                                            <td class=\"alignright\">$ 20.00</td>\n                                                        </tr>\n                                                        <tr>\n                                                            <td>Service 2</td>\n                                                            <td class=\"alignright\">$ 10.00</td>\n                                                        </tr>\n                                                        <tr>\n                                                            <td>Service 3</td>\n                                                            <td class=\"alignright\">$ 6.00</td>\n                                                        </tr>\n                                                        <tr class=\"total\">\n                                                            <td class=\"alignright\" width=\"80%\">Total</td>\n                                                            <td class=\"alignright\">$ 36.00</td>\n                                                        </tr>\n                                                    </table>\n                                                </td>\n                                            </tr>\n                                        </table>\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        <a href=\"#\">View in browser</a>\n                                    </td>\n                                </tr>\n                                <tr>\n                                    <td class=\"content-block\">\n                                        Company Inc. 123 Van Ness, San Francisco 94102\n                                    </td>\n                                </tr>\n                            </table>\n                        </td>\n                    </tr>\n                </table>\n                <div class=\"footer\">\n                    <table width=\"100%\">\n                        <tr>\n                            <td class=\"aligncenter content-block\">Questions? Email <a href=\"mailto:\">support@company.inc</a></td>\n                        </tr>\n                    </table>\n                </div></div>\n        </td>\n        <td></td>\n    </tr>\n</table>\n\n</body>\n</html>\n"
  },
  {
    "path": "public/admin/email_templates/styles.css",
    "content": "/* -------------------------------------\n    GLOBAL\n    A very basic CSS reset\n------------------------------------- */\n* {\n    margin: 0;\n    padding: 0;\n    font-family: \"Helvetica Neue\", \"Helvetica\", Helvetica, Arial, sans-serif;\n    box-sizing: border-box;\n    font-size: 14px;\n}\n\nimg {\n    max-width: 100%;\n}\n\nbody {\n    -webkit-font-smoothing: antialiased;\n    -webkit-text-size-adjust: none;\n    width: 100% !important;\n    height: 100%;\n    line-height: 1.6;\n}\n\n/* Let's make sure all tables have defaults */\ntable td {\n    vertical-align: top;\n}\n\n/* -------------------------------------\n    BODY & CONTAINER\n------------------------------------- */\nbody {\n    background-color: #f6f6f6;\n}\n\n.body-wrap {\n    background-color: #f6f6f6;\n    width: 100%;\n}\n\n.container {\n    display: block !important;\n    max-width: 600px !important;\n    margin: 0 auto !important;\n    /* makes it centered */\n    clear: both !important;\n}\n\n.content {\n    max-width: 600px;\n    margin: 0 auto;\n    display: block;\n    padding: 20px;\n}\n\n/* -------------------------------------\n    HEADER, FOOTER, MAIN\n------------------------------------- */\n.main {\n    background: #fff;\n    border: 1px solid #e9e9e9;\n    border-radius: 3px;\n}\n\n.content-wrap {\n    padding: 20px;\n}\n\n.content-block {\n    padding: 0 0 20px;\n}\n\n.header {\n    width: 100%;\n    margin-bottom: 20px;\n}\n\n.footer {\n    width: 100%;\n    clear: both;\n    color: #999;\n    padding: 20px;\n}\n.footer a {\n    color: #999;\n}\n.footer p, .footer a, .footer unsubscribe, .footer td {\n    font-size: 12px;\n}\n\n/* -------------------------------------\n    TYPOGRAPHY\n------------------------------------- */\nh1, h2, h3 {\n    font-family: \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif;\n    color: #000;\n    margin: 40px 0 0;\n    line-height: 1.2;\n    font-weight: 400;\n}\n\nh1 {\n    font-size: 32px;\n    font-weight: 500;\n}\n\nh2 {\n    font-size: 24px;\n}\n\nh3 {\n    font-size: 18px;\n}\n\nh4 {\n    font-size: 14px;\n    font-weight: 600;\n}\n\np, ul, ol {\n    margin-bottom: 10px;\n    font-weight: normal;\n}\np li, ul li, ol li {\n    margin-left: 5px;\n    list-style-position: inside;\n}\n\n/* -------------------------------------\n    LINKS & BUTTONS\n------------------------------------- */\na {\n    color: #1ab394;\n    text-decoration: underline;\n}\n\n.btn-primary {\n    text-decoration: none;\n    color: #FFF;\n    background-color: #1ab394;\n    border: solid #1ab394;\n    border-width: 5px 10px;\n    line-height: 2;\n    font-weight: bold;\n    text-align: center;\n    cursor: pointer;\n    display: inline-block;\n    border-radius: 5px;\n    text-transform: capitalize;\n}\n\n/* -------------------------------------\n    OTHER STYLES THAT MIGHT BE USEFUL\n------------------------------------- */\n.last {\n    margin-bottom: 0;\n}\n\n.first {\n    margin-top: 0;\n}\n\n.aligncenter {\n    text-align: center;\n}\n\n.alignright {\n    text-align: right;\n}\n\n.alignleft {\n    text-align: left;\n}\n\n.clear {\n    clear: both;\n}\n\n/* -------------------------------------\n    ALERTS\n    Change the class depending on warning email, good email or bad email\n------------------------------------- */\n.alert {\n    font-size: 16px;\n    color: #fff;\n    font-weight: 500;\n    padding: 20px;\n    text-align: center;\n    border-radius: 3px 3px 0 0;\n}\n.alert a {\n    color: #fff;\n    text-decoration: none;\n    font-weight: 500;\n    font-size: 16px;\n}\n.alert.alert-warning {\n    background: #f8ac59;\n}\n.alert.alert-bad {\n    background: #ed5565;\n}\n.alert.alert-good {\n    background: #1ab394;\n}\n\n/* -------------------------------------\n    INVOICE\n    Styles for the billing table\n------------------------------------- */\n.invoice {\n    margin: 40px auto;\n    text-align: left;\n    width: 80%;\n}\n.invoice td {\n    padding: 5px 0;\n}\n.invoice .invoice-items {\n    width: 100%;\n}\n.invoice .invoice-items td {\n    border-top: #eee 1px solid;\n}\n.invoice .invoice-items .total td {\n    border-top: 2px solid #333;\n    border-bottom: 2px solid #333;\n    font-weight: 700;\n}\n\n/* -------------------------------------\n    RESPONSIVE AND MOBILE FRIENDLY STYLES\n------------------------------------- */\n@media only screen and (max-width: 640px) {\n    h1, h2, h3, h4 {\n        font-weight: 600 !important;\n        margin: 20px 0 5px !important;\n    }\n\n    h1 {\n        font-size: 22px !important;\n    }\n\n    h2 {\n        font-size: 18px !important;\n    }\n\n    h3 {\n        font-size: 16px !important;\n    }\n\n    .container {\n        width: 100% !important;\n    }\n\n    .content, .content-wrap {\n        padding: 10px !important;\n    }\n\n    .invoice {\n        width: 100% !important;\n    }\n}\n"
  },
  {
    "path": "public/admin/font-awesome/css/font-awesome.css",
    "content": "/*!\n *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');\n  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n.fa {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  transform: translate(0, 0);\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n  font-size: 1.33333333em;\n  line-height: 0.75em;\n  vertical-align: -15%;\n}\n.fa-2x {\n  font-size: 2em;\n}\n.fa-3x {\n  font-size: 3em;\n}\n.fa-4x {\n  font-size: 4em;\n}\n.fa-5x {\n  font-size: 5em;\n}\n.fa-fw {\n  width: 1.28571429em;\n  text-align: center;\n}\n.fa-ul {\n  padding-left: 0;\n  margin-left: 2.14285714em;\n  list-style-type: none;\n}\n.fa-ul > li {\n  position: relative;\n}\n.fa-li {\n  position: absolute;\n  left: -2.14285714em;\n  width: 2.14285714em;\n  top: 0.14285714em;\n  text-align: center;\n}\n.fa-li.fa-lg {\n  left: -1.85714286em;\n}\n.fa-border {\n  padding: .2em .25em .15em;\n  border: solid 0.08em #eeeeee;\n  border-radius: .1em;\n}\n.pull-right {\n  float: right;\n}\n.pull-left {\n  float: left;\n}\n.fa.pull-left {\n  margin-right: .3em;\n}\n.fa.pull-right {\n  margin-left: .3em;\n}\n.fa-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n  animation: fa-spin 2s infinite linear;\n}\n.fa-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n  animation: fa-spin 1s infinite steps(8);\n}\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n.fa-rotate-90 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n  -webkit-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n  transform: rotate(90deg);\n}\n.fa-rotate-180 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n  -webkit-transform: rotate(180deg);\n  -ms-transform: rotate(180deg);\n  transform: rotate(180deg);\n}\n.fa-rotate-270 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n  -webkit-transform: rotate(270deg);\n  -ms-transform: rotate(270deg);\n  transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n  -webkit-transform: scale(-1, 1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n  -webkit-transform: scale(1, -1);\n  -ms-transform: scale(1, -1);\n  transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n  filter: none;\n}\n.fa-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.fa-stack-1x {\n  line-height: inherit;\n}\n.fa-stack-2x {\n  font-size: 2em;\n}\n.fa-inverse {\n  color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n.fa-glass:before {\n  content: \"\\f000\";\n}\n.fa-music:before {\n  content: \"\\f001\";\n}\n.fa-search:before {\n  content: \"\\f002\";\n}\n.fa-envelope-o:before {\n  content: \"\\f003\";\n}\n.fa-heart:before {\n  content: \"\\f004\";\n}\n.fa-star:before {\n  content: \"\\f005\";\n}\n.fa-star-o:before {\n  content: \"\\f006\";\n}\n.fa-user:before {\n  content: \"\\f007\";\n}\n.fa-film:before {\n  content: \"\\f008\";\n}\n.fa-th-large:before {\n  content: \"\\f009\";\n}\n.fa-th:before {\n  content: \"\\f00a\";\n}\n.fa-th-list:before {\n  content: \"\\f00b\";\n}\n.fa-check:before {\n  content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n  content: \"\\f00d\";\n}\n.fa-search-plus:before {\n  content: \"\\f00e\";\n}\n.fa-search-minus:before {\n  content: \"\\f010\";\n}\n.fa-power-off:before {\n  content: \"\\f011\";\n}\n.fa-signal:before {\n  content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n  content: \"\\f013\";\n}\n.fa-trash-o:before {\n  content: \"\\f014\";\n}\n.fa-home:before {\n  content: \"\\f015\";\n}\n.fa-file-o:before {\n  content: \"\\f016\";\n}\n.fa-clock-o:before {\n  content: \"\\f017\";\n}\n.fa-road:before {\n  content: \"\\f018\";\n}\n.fa-download:before {\n  content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n  content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n  content: \"\\f01b\";\n}\n.fa-inbox:before {\n  content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n  content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n  content: \"\\f01e\";\n}\n.fa-refresh:before {\n  content: \"\\f021\";\n}\n.fa-list-alt:before {\n  content: \"\\f022\";\n}\n.fa-lock:before {\n  content: \"\\f023\";\n}\n.fa-flag:before {\n  content: \"\\f024\";\n}\n.fa-headphones:before {\n  content: \"\\f025\";\n}\n.fa-volume-off:before {\n  content: \"\\f026\";\n}\n.fa-volume-down:before {\n  content: \"\\f027\";\n}\n.fa-volume-up:before {\n  content: \"\\f028\";\n}\n.fa-qrcode:before {\n  content: \"\\f029\";\n}\n.fa-barcode:before {\n  content: \"\\f02a\";\n}\n.fa-tag:before {\n  content: \"\\f02b\";\n}\n.fa-tags:before {\n  content: \"\\f02c\";\n}\n.fa-book:before {\n  content: \"\\f02d\";\n}\n.fa-bookmark:before {\n  content: \"\\f02e\";\n}\n.fa-print:before {\n  content: \"\\f02f\";\n}\n.fa-camera:before {\n  content: \"\\f030\";\n}\n.fa-font:before {\n  content: \"\\f031\";\n}\n.fa-bold:before {\n  content: \"\\f032\";\n}\n.fa-italic:before {\n  content: \"\\f033\";\n}\n.fa-text-height:before {\n  content: \"\\f034\";\n}\n.fa-text-width:before {\n  content: \"\\f035\";\n}\n.fa-align-left:before {\n  content: \"\\f036\";\n}\n.fa-align-center:before {\n  content: \"\\f037\";\n}\n.fa-align-right:before {\n  content: \"\\f038\";\n}\n.fa-align-justify:before {\n  content: \"\\f039\";\n}\n.fa-list:before {\n  content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n  content: \"\\f03b\";\n}\n.fa-indent:before {\n  content: \"\\f03c\";\n}\n.fa-video-camera:before {\n  content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n  content: \"\\f03e\";\n}\n.fa-pencil:before {\n  content: \"\\f040\";\n}\n.fa-map-marker:before {\n  content: \"\\f041\";\n}\n.fa-adjust:before {\n  content: \"\\f042\";\n}\n.fa-tint:before {\n  content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n  content: \"\\f044\";\n}\n.fa-share-square-o:before {\n  content: \"\\f045\";\n}\n.fa-check-square-o:before {\n  content: \"\\f046\";\n}\n.fa-arrows:before {\n  content: \"\\f047\";\n}\n.fa-step-backward:before {\n  content: \"\\f048\";\n}\n.fa-fast-backward:before {\n  content: \"\\f049\";\n}\n.fa-backward:before {\n  content: \"\\f04a\";\n}\n.fa-play:before {\n  content: \"\\f04b\";\n}\n.fa-pause:before {\n  content: \"\\f04c\";\n}\n.fa-stop:before {\n  content: \"\\f04d\";\n}\n.fa-forward:before {\n  content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n  content: \"\\f050\";\n}\n.fa-step-forward:before {\n  content: \"\\f051\";\n}\n.fa-eject:before {\n  content: \"\\f052\";\n}\n.fa-chevron-left:before {\n  content: \"\\f053\";\n}\n.fa-chevron-right:before {\n  content: \"\\f054\";\n}\n.fa-plus-circle:before {\n  content: \"\\f055\";\n}\n.fa-minus-circle:before {\n  content: \"\\f056\";\n}\n.fa-times-circle:before {\n  content: \"\\f057\";\n}\n.fa-check-circle:before {\n  content: \"\\f058\";\n}\n.fa-question-circle:before {\n  content: \"\\f059\";\n}\n.fa-info-circle:before {\n  content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n  content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n  content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n  content: \"\\f05d\";\n}\n.fa-ban:before {\n  content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n  content: \"\\f060\";\n}\n.fa-arrow-right:before {\n  content: \"\\f061\";\n}\n.fa-arrow-up:before {\n  content: \"\\f062\";\n}\n.fa-arrow-down:before {\n  content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n  content: \"\\f064\";\n}\n.fa-expand:before {\n  content: \"\\f065\";\n}\n.fa-compress:before {\n  content: \"\\f066\";\n}\n.fa-plus:before {\n  content: \"\\f067\";\n}\n.fa-minus:before {\n  content: \"\\f068\";\n}\n.fa-asterisk:before {\n  content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n  content: \"\\f06a\";\n}\n.fa-gift:before {\n  content: \"\\f06b\";\n}\n.fa-leaf:before {\n  content: \"\\f06c\";\n}\n.fa-fire:before {\n  content: \"\\f06d\";\n}\n.fa-eye:before {\n  content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n  content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n  content: \"\\f071\";\n}\n.fa-plane:before {\n  content: \"\\f072\";\n}\n.fa-calendar:before {\n  content: \"\\f073\";\n}\n.fa-random:before {\n  content: \"\\f074\";\n}\n.fa-comment:before {\n  content: \"\\f075\";\n}\n.fa-magnet:before {\n  content: \"\\f076\";\n}\n.fa-chevron-up:before {\n  content: \"\\f077\";\n}\n.fa-chevron-down:before {\n  content: \"\\f078\";\n}\n.fa-retweet:before {\n  content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n  content: \"\\f07a\";\n}\n.fa-folder:before {\n  content: \"\\f07b\";\n}\n.fa-folder-open:before {\n  content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n  content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n  content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n  content: \"\\f080\";\n}\n.fa-twitter-square:before {\n  content: \"\\f081\";\n}\n.fa-facebook-square:before {\n  content: \"\\f082\";\n}\n.fa-camera-retro:before {\n  content: \"\\f083\";\n}\n.fa-key:before {\n  content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n  content: \"\\f085\";\n}\n.fa-comments:before {\n  content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n  content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n  content: \"\\f088\";\n}\n.fa-star-half:before {\n  content: \"\\f089\";\n}\n.fa-heart-o:before {\n  content: \"\\f08a\";\n}\n.fa-sign-out:before {\n  content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n  content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n  content: \"\\f08d\";\n}\n.fa-external-link:before {\n  content: \"\\f08e\";\n}\n.fa-sign-in:before {\n  content: \"\\f090\";\n}\n.fa-trophy:before {\n  content: \"\\f091\";\n}\n.fa-github-square:before {\n  content: \"\\f092\";\n}\n.fa-upload:before {\n  content: \"\\f093\";\n}\n.fa-lemon-o:before {\n  content: \"\\f094\";\n}\n.fa-phone:before {\n  content: \"\\f095\";\n}\n.fa-square-o:before {\n  content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n  content: \"\\f097\";\n}\n.fa-phone-square:before {\n  content: \"\\f098\";\n}\n.fa-twitter:before {\n  content: \"\\f099\";\n}\n.fa-facebook-f:before,\n.fa-facebook:before {\n  content: \"\\f09a\";\n}\n.fa-github:before {\n  content: \"\\f09b\";\n}\n.fa-unlock:before {\n  content: \"\\f09c\";\n}\n.fa-credit-card:before {\n  content: \"\\f09d\";\n}\n.fa-rss:before {\n  content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n  content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n  content: \"\\f0a1\";\n}\n.fa-bell:before {\n  content: \"\\f0f3\";\n}\n.fa-certificate:before {\n  content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n  content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n  content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n  content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n  content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n  content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n  content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n  content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n  content: \"\\f0ab\";\n}\n.fa-globe:before {\n  content: \"\\f0ac\";\n}\n.fa-wrench:before {\n  content: \"\\f0ad\";\n}\n.fa-tasks:before {\n  content: \"\\f0ae\";\n}\n.fa-filter:before {\n  content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n  content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n  content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n  content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n  content: \"\\f0c1\";\n}\n.fa-cloud:before {\n  content: \"\\f0c2\";\n}\n.fa-flask:before {\n  content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n  content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n  content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n  content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n  content: \"\\f0c7\";\n}\n.fa-square:before {\n  content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n  content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n  content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n  content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n  content: \"\\f0cc\";\n}\n.fa-underline:before {\n  content: \"\\f0cd\";\n}\n.fa-table:before {\n  content: \"\\f0ce\";\n}\n.fa-magic:before {\n  content: \"\\f0d0\";\n}\n.fa-truck:before {\n  content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n  content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n  content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n  content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n  content: \"\\f0d5\";\n}\n.fa-money:before {\n  content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n  content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n  content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n  content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n  content: \"\\f0da\";\n}\n.fa-columns:before {\n  content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n  content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n  content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n  content: \"\\f0de\";\n}\n.fa-envelope:before {\n  content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n  content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n  content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n  content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n  content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n  content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n  content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n  content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n  content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n  content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n  content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n  content: \"\\f0eb\";\n}\n.fa-exchange:before {\n  content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n  content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n  content: \"\\f0ee\";\n}\n.fa-user-md:before {\n  content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n  content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n  content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n  content: \"\\f0a2\";\n}\n.fa-coffee:before {\n  content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n  content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n  content: \"\\f0f6\";\n}\n.fa-building-o:before {\n  content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n  content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n  content: \"\\f0f9\";\n}\n.fa-medkit:before {\n  content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n  content: \"\\f0fb\";\n}\n.fa-beer:before {\n  content: \"\\f0fc\";\n}\n.fa-h-square:before {\n  content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n  content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n  content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n  content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n  content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n  content: \"\\f103\";\n}\n.fa-angle-left:before {\n  content: \"\\f104\";\n}\n.fa-angle-right:before {\n  content: \"\\f105\";\n}\n.fa-angle-up:before {\n  content: \"\\f106\";\n}\n.fa-angle-down:before {\n  content: \"\\f107\";\n}\n.fa-desktop:before {\n  content: \"\\f108\";\n}\n.fa-laptop:before {\n  content: \"\\f109\";\n}\n.fa-tablet:before {\n  content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n  content: \"\\f10b\";\n}\n.fa-circle-o:before {\n  content: \"\\f10c\";\n}\n.fa-quote-left:before {\n  content: \"\\f10d\";\n}\n.fa-quote-right:before {\n  content: \"\\f10e\";\n}\n.fa-spinner:before {\n  content: \"\\f110\";\n}\n.fa-circle:before {\n  content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n  content: \"\\f112\";\n}\n.fa-github-alt:before {\n  content: \"\\f113\";\n}\n.fa-folder-o:before {\n  content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n  content: \"\\f115\";\n}\n.fa-smile-o:before {\n  content: \"\\f118\";\n}\n.fa-frown-o:before {\n  content: \"\\f119\";\n}\n.fa-meh-o:before {\n  content: \"\\f11a\";\n}\n.fa-gamepad:before {\n  content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n  content: \"\\f11c\";\n}\n.fa-flag-o:before {\n  content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n  content: \"\\f11e\";\n}\n.fa-terminal:before {\n  content: \"\\f120\";\n}\n.fa-code:before {\n  content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n  content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n  content: \"\\f123\";\n}\n.fa-location-arrow:before {\n  content: \"\\f124\";\n}\n.fa-crop:before {\n  content: \"\\f125\";\n}\n.fa-code-fork:before {\n  content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n  content: \"\\f127\";\n}\n.fa-question:before {\n  content: \"\\f128\";\n}\n.fa-info:before {\n  content: \"\\f129\";\n}\n.fa-exclamation:before {\n  content: \"\\f12a\";\n}\n.fa-superscript:before {\n  content: \"\\f12b\";\n}\n.fa-subscript:before {\n  content: \"\\f12c\";\n}\n.fa-eraser:before {\n  content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n  content: \"\\f12e\";\n}\n.fa-microphone:before {\n  content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n  content: \"\\f131\";\n}\n.fa-shield:before {\n  content: \"\\f132\";\n}\n.fa-calendar-o:before {\n  content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n  content: \"\\f134\";\n}\n.fa-rocket:before {\n  content: \"\\f135\";\n}\n.fa-maxcdn:before {\n  content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n  content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n  content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n  content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n  content: \"\\f13a\";\n}\n.fa-html5:before {\n  content: \"\\f13b\";\n}\n.fa-css3:before {\n  content: \"\\f13c\";\n}\n.fa-anchor:before {\n  content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n  content: \"\\f13e\";\n}\n.fa-bullseye:before {\n  content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n  content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n  content: \"\\f142\";\n}\n.fa-rss-square:before {\n  content: \"\\f143\";\n}\n.fa-play-circle:before {\n  content: \"\\f144\";\n}\n.fa-ticket:before {\n  content: \"\\f145\";\n}\n.fa-minus-square:before {\n  content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n  content: \"\\f147\";\n}\n.fa-level-up:before {\n  content: \"\\f148\";\n}\n.fa-level-down:before {\n  content: \"\\f149\";\n}\n.fa-check-square:before {\n  content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n  content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n  content: \"\\f14c\";\n}\n.fa-share-square:before {\n  content: \"\\f14d\";\n}\n.fa-compass:before {\n  content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n  content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n  content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n  content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n  content: \"\\f153\";\n}\n.fa-gbp:before {\n  content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n  content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n  content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n  content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n  content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n  content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n  content: \"\\f15a\";\n}\n.fa-file:before {\n  content: \"\\f15b\";\n}\n.fa-file-text:before {\n  content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n  content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n  content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n  content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n  content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n  content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n  content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n  content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n  content: \"\\f165\";\n}\n.fa-youtube-square:before {\n  content: \"\\f166\";\n}\n.fa-youtube:before {\n  content: \"\\f167\";\n}\n.fa-xing:before {\n  content: \"\\f168\";\n}\n.fa-xing-square:before {\n  content: \"\\f169\";\n}\n.fa-youtube-play:before {\n  content: \"\\f16a\";\n}\n.fa-dropbox:before {\n  content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n  content: \"\\f16c\";\n}\n.fa-instagram:before {\n  content: \"\\f16d\";\n}\n.fa-flickr:before {\n  content: \"\\f16e\";\n}\n.fa-adn:before {\n  content: \"\\f170\";\n}\n.fa-bitbucket:before {\n  content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n  content: \"\\f172\";\n}\n.fa-tumblr:before {\n  content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n  content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n  content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n  content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n  content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n  content: \"\\f178\";\n}\n.fa-apple:before {\n  content: \"\\f179\";\n}\n.fa-windows:before {\n  content: \"\\f17a\";\n}\n.fa-android:before {\n  content: \"\\f17b\";\n}\n.fa-linux:before {\n  content: \"\\f17c\";\n}\n.fa-dribbble:before {\n  content: \"\\f17d\";\n}\n.fa-skype:before {\n  content: \"\\f17e\";\n}\n.fa-foursquare:before {\n  content: \"\\f180\";\n}\n.fa-trello:before {\n  content: \"\\f181\";\n}\n.fa-female:before {\n  content: \"\\f182\";\n}\n.fa-male:before {\n  content: \"\\f183\";\n}\n.fa-gittip:before,\n.fa-gratipay:before {\n  content: \"\\f184\";\n}\n.fa-sun-o:before {\n  content: \"\\f185\";\n}\n.fa-moon-o:before {\n  content: \"\\f186\";\n}\n.fa-archive:before {\n  content: \"\\f187\";\n}\n.fa-bug:before {\n  content: \"\\f188\";\n}\n.fa-vk:before {\n  content: \"\\f189\";\n}\n.fa-weibo:before {\n  content: \"\\f18a\";\n}\n.fa-renren:before {\n  content: \"\\f18b\";\n}\n.fa-pagelines:before {\n  content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n  content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n  content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n  content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n  content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n  content: \"\\f192\";\n}\n.fa-wheelchair:before {\n  content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n  content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n  content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n  content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n  content: \"\\f197\";\n}\n.fa-slack:before {\n  content: \"\\f198\";\n}\n.fa-envelope-square:before {\n  content: \"\\f199\";\n}\n.fa-wordpress:before {\n  content: \"\\f19a\";\n}\n.fa-openid:before {\n  content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n  content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n  content: \"\\f19d\";\n}\n.fa-yahoo:before {\n  content: \"\\f19e\";\n}\n.fa-google:before {\n  content: \"\\f1a0\";\n}\n.fa-reddit:before {\n  content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n  content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n  content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n  content: \"\\f1a4\";\n}\n.fa-delicious:before {\n  content: \"\\f1a5\";\n}\n.fa-digg:before {\n  content: \"\\f1a6\";\n}\n.fa-pied-piper:before {\n  content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n  content: \"\\f1a8\";\n}\n.fa-drupal:before {\n  content: \"\\f1a9\";\n}\n.fa-joomla:before {\n  content: \"\\f1aa\";\n}\n.fa-language:before {\n  content: \"\\f1ab\";\n}\n.fa-fax:before {\n  content: \"\\f1ac\";\n}\n.fa-building:before {\n  content: \"\\f1ad\";\n}\n.fa-child:before {\n  content: \"\\f1ae\";\n}\n.fa-paw:before {\n  content: \"\\f1b0\";\n}\n.fa-spoon:before {\n  content: \"\\f1b1\";\n}\n.fa-cube:before {\n  content: \"\\f1b2\";\n}\n.fa-cubes:before {\n  content: \"\\f1b3\";\n}\n.fa-behance:before {\n  content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n  content: \"\\f1b5\";\n}\n.fa-steam:before {\n  content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n  content: \"\\f1b7\";\n}\n.fa-recycle:before {\n  content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n  content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n  content: \"\\f1ba\";\n}\n.fa-tree:before {\n  content: \"\\f1bb\";\n}\n.fa-spotify:before {\n  content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n  content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n  content: \"\\f1be\";\n}\n.fa-database:before {\n  content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n  content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n  content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n  content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n  content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n  content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n  content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n  content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n  content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n  content: \"\\f1c9\";\n}\n.fa-vine:before {\n  content: \"\\f1ca\";\n}\n.fa-codepen:before {\n  content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n  content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n  content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n  content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-rebel:before {\n  content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n  content: \"\\f1d1\";\n}\n.fa-git-square:before {\n  content: \"\\f1d2\";\n}\n.fa-git:before {\n  content: \"\\f1d3\";\n}\n.fa-hacker-news:before {\n  content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n  content: \"\\f1d5\";\n}\n.fa-qq:before {\n  content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n  content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n  content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n  content: \"\\f1d9\";\n}\n.fa-history:before {\n  content: \"\\f1da\";\n}\n.fa-genderless:before,\n.fa-circle-thin:before {\n  content: \"\\f1db\";\n}\n.fa-header:before {\n  content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n  content: \"\\f1dd\";\n}\n.fa-sliders:before {\n  content: \"\\f1de\";\n}\n.fa-share-alt:before {\n  content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n  content: \"\\f1e1\";\n}\n.fa-bomb:before {\n  content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n  content: \"\\f1e3\";\n}\n.fa-tty:before {\n  content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n  content: \"\\f1e5\";\n}\n.fa-plug:before {\n  content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n  content: \"\\f1e7\";\n}\n.fa-twitch:before {\n  content: \"\\f1e8\";\n}\n.fa-yelp:before {\n  content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n  content: \"\\f1ea\";\n}\n.fa-wifi:before {\n  content: \"\\f1eb\";\n}\n.fa-calculator:before {\n  content: \"\\f1ec\";\n}\n.fa-paypal:before {\n  content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n  content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n  content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n  content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n  content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n  content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n  content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n  content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n  content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n  content: \"\\f1f7\";\n}\n.fa-trash:before {\n  content: \"\\f1f8\";\n}\n.fa-copyright:before {\n  content: \"\\f1f9\";\n}\n.fa-at:before {\n  content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n  content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n  content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n  content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n  content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n  content: \"\\f200\";\n}\n.fa-line-chart:before {\n  content: \"\\f201\";\n}\n.fa-lastfm:before {\n  content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n  content: \"\\f203\";\n}\n.fa-toggle-off:before {\n  content: \"\\f204\";\n}\n.fa-toggle-on:before {\n  content: \"\\f205\";\n}\n.fa-bicycle:before {\n  content: \"\\f206\";\n}\n.fa-bus:before {\n  content: \"\\f207\";\n}\n.fa-ioxhost:before {\n  content: \"\\f208\";\n}\n.fa-angellist:before {\n  content: \"\\f209\";\n}\n.fa-cc:before {\n  content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n  content: \"\\f20b\";\n}\n.fa-meanpath:before {\n  content: \"\\f20c\";\n}\n.fa-buysellads:before {\n  content: \"\\f20d\";\n}\n.fa-connectdevelop:before {\n  content: \"\\f20e\";\n}\n.fa-dashcube:before {\n  content: \"\\f210\";\n}\n.fa-forumbee:before {\n  content: \"\\f211\";\n}\n.fa-leanpub:before {\n  content: \"\\f212\";\n}\n.fa-sellsy:before {\n  content: \"\\f213\";\n}\n.fa-shirtsinbulk:before {\n  content: \"\\f214\";\n}\n.fa-simplybuilt:before {\n  content: \"\\f215\";\n}\n.fa-skyatlas:before {\n  content: \"\\f216\";\n}\n.fa-cart-plus:before {\n  content: \"\\f217\";\n}\n.fa-cart-arrow-down:before {\n  content: \"\\f218\";\n}\n.fa-diamond:before {\n  content: \"\\f219\";\n}\n.fa-ship:before {\n  content: \"\\f21a\";\n}\n.fa-user-secret:before {\n  content: \"\\f21b\";\n}\n.fa-motorcycle:before {\n  content: \"\\f21c\";\n}\n.fa-street-view:before {\n  content: \"\\f21d\";\n}\n.fa-heartbeat:before {\n  content: \"\\f21e\";\n}\n.fa-venus:before {\n  content: \"\\f221\";\n}\n.fa-mars:before {\n  content: \"\\f222\";\n}\n.fa-mercury:before {\n  content: \"\\f223\";\n}\n.fa-transgender:before {\n  content: \"\\f224\";\n}\n.fa-transgender-alt:before {\n  content: \"\\f225\";\n}\n.fa-venus-double:before {\n  content: \"\\f226\";\n}\n.fa-mars-double:before {\n  content: \"\\f227\";\n}\n.fa-venus-mars:before {\n  content: \"\\f228\";\n}\n.fa-mars-stroke:before {\n  content: \"\\f229\";\n}\n.fa-mars-stroke-v:before {\n  content: \"\\f22a\";\n}\n.fa-mars-stroke-h:before {\n  content: \"\\f22b\";\n}\n.fa-neuter:before {\n  content: \"\\f22c\";\n}\n.fa-facebook-official:before {\n  content: \"\\f230\";\n}\n.fa-pinterest-p:before {\n  content: \"\\f231\";\n}\n.fa-whatsapp:before {\n  content: \"\\f232\";\n}\n.fa-server:before {\n  content: \"\\f233\";\n}\n.fa-user-plus:before {\n  content: \"\\f234\";\n}\n.fa-user-times:before {\n  content: \"\\f235\";\n}\n.fa-hotel:before,\n.fa-bed:before {\n  content: \"\\f236\";\n}\n.fa-viacoin:before {\n  content: \"\\f237\";\n}\n.fa-train:before {\n  content: \"\\f238\";\n}\n.fa-subway:before {\n  content: \"\\f239\";\n}\n.fa-medium:before {\n  content: \"\\f23a\";\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/animated.less",
    "content": "// Animated Icons\n// --------------------------\n\n.@{fa-css-prefix}-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\n\n.@{fa-css-prefix}-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/bordered-pulled.less",
    "content": "// Bordered & Pulled\n// -------------------------\n\n.@{fa-css-prefix}-border {\n  padding: .2em .25em .15em;\n  border: solid .08em @fa-border-color;\n  border-radius: .1em;\n}\n\n.pull-right { float: right; }\n.pull-left { float: left; }\n\n.@{fa-css-prefix} {\n  &.pull-left { margin-right: .3em; }\n  &.pull-right { margin-left: .3em; }\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/core.less",
    "content": "// Base Class Definition\n// -------------------------\n\n.@{fa-css-prefix} {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  transform: translate(0, 0); // ensures no half-pixel rendering in firefox\n\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/fixed-width.less",
    "content": "// Fixed Width Icons\n// -------------------------\n.@{fa-css-prefix}-fw {\n  width: (18em / 14);\n  text-align: center;\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/font-awesome.less",
    "content": "/*!\n *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n\n@import \"variables.less\";\n@import \"mixins.less\";\n@import \"path.less\";\n@import \"core.less\";\n@import \"larger.less\";\n@import \"fixed-width.less\";\n@import \"list.less\";\n@import \"bordered-pulled.less\";\n@import \"animated.less\";\n@import \"rotated-flipped.less\";\n@import \"stacked.less\";\n@import \"icons.less\";\n"
  },
  {
    "path": "public/admin/font-awesome/less/icons.less",
    "content": "/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n\n.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }\n.@{fa-css-prefix}-music:before { content: @fa-var-music; }\n.@{fa-css-prefix}-search:before { content: @fa-var-search; }\n.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }\n.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }\n.@{fa-css-prefix}-star:before { content: @fa-var-star; }\n.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }\n.@{fa-css-prefix}-user:before { content: @fa-var-user; }\n.@{fa-css-prefix}-film:before { content: @fa-var-film; }\n.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }\n.@{fa-css-prefix}-th:before { content: @fa-var-th; }\n.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }\n.@{fa-css-prefix}-check:before { content: @fa-var-check; }\n.@{fa-css-prefix}-remove:before,\n.@{fa-css-prefix}-close:before,\n.@{fa-css-prefix}-times:before { content: @fa-var-times; }\n.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }\n.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }\n.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }\n.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }\n.@{fa-css-prefix}-gear:before,\n.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }\n.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }\n.@{fa-css-prefix}-home:before { content: @fa-var-home; }\n.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }\n.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }\n.@{fa-css-prefix}-road:before { content: @fa-var-road; }\n.@{fa-css-prefix}-download:before { content: @fa-var-download; }\n.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }\n.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }\n.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }\n.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }\n.@{fa-css-prefix}-rotate-right:before,\n.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }\n.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }\n.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }\n.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }\n.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }\n.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }\n.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }\n.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }\n.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }\n.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }\n.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }\n.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }\n.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }\n.@{fa-css-prefix}-book:before { content: @fa-var-book; }\n.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }\n.@{fa-css-prefix}-print:before { content: @fa-var-print; }\n.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }\n.@{fa-css-prefix}-font:before { content: @fa-var-font; }\n.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }\n.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }\n.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }\n.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }\n.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }\n.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }\n.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }\n.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }\n.@{fa-css-prefix}-list:before { content: @fa-var-list; }\n.@{fa-css-prefix}-dedent:before,\n.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }\n.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }\n.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }\n.@{fa-css-prefix}-photo:before,\n.@{fa-css-prefix}-image:before,\n.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }\n.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }\n.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }\n.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }\n.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }\n.@{fa-css-prefix}-edit:before,\n.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }\n.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }\n.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }\n.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }\n.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }\n.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }\n.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }\n.@{fa-css-prefix}-play:before { content: @fa-var-play; }\n.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }\n.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }\n.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }\n.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }\n.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }\n.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }\n.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }\n.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }\n.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }\n.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }\n.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }\n.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }\n.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }\n.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }\n.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }\n.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }\n.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }\n.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }\n.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }\n.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }\n.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }\n.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }\n.@{fa-css-prefix}-mail-forward:before,\n.@{fa-css-prefix}-share:before { content: @fa-var-share; }\n.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }\n.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }\n.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }\n.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }\n.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }\n.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }\n.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }\n.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }\n.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }\n.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }\n.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }\n.@{fa-css-prefix}-warning:before,\n.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }\n.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }\n.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }\n.@{fa-css-prefix}-random:before { content: @fa-var-random; }\n.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }\n.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }\n.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }\n.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }\n.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }\n.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }\n.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }\n.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }\n.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }\n.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }\n.@{fa-css-prefix}-bar-chart-o:before,\n.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }\n.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }\n.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }\n.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }\n.@{fa-css-prefix}-key:before { content: @fa-var-key; }\n.@{fa-css-prefix}-gears:before,\n.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }\n.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }\n.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }\n.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }\n.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }\n.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }\n.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }\n.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }\n.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }\n.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }\n.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }\n.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }\n.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }\n.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }\n.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }\n.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }\n.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }\n.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }\n.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }\n.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }\n.@{fa-css-prefix}-facebook-f:before,\n.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }\n.@{fa-css-prefix}-github:before { content: @fa-var-github; }\n.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }\n.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }\n.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }\n.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }\n.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }\n.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }\n.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }\n.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }\n.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }\n.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }\n.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }\n.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }\n.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }\n.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }\n.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }\n.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }\n.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }\n.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }\n.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }\n.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }\n.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }\n.@{fa-css-prefix}-group:before,\n.@{fa-css-prefix}-users:before { content: @fa-var-users; }\n.@{fa-css-prefix}-chain:before,\n.@{fa-css-prefix}-link:before { content: @fa-var-link; }\n.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }\n.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }\n.@{fa-css-prefix}-cut:before,\n.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }\n.@{fa-css-prefix}-copy:before,\n.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }\n.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }\n.@{fa-css-prefix}-save:before,\n.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }\n.@{fa-css-prefix}-square:before { content: @fa-var-square; }\n.@{fa-css-prefix}-navicon:before,\n.@{fa-css-prefix}-reorder:before,\n.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }\n.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }\n.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }\n.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }\n.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }\n.@{fa-css-prefix}-table:before { content: @fa-var-table; }\n.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }\n.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }\n.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }\n.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }\n.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }\n.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }\n.@{fa-css-prefix}-money:before { content: @fa-var-money; }\n.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }\n.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }\n.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }\n.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }\n.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }\n.@{fa-css-prefix}-unsorted:before,\n.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }\n.@{fa-css-prefix}-sort-down:before,\n.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }\n.@{fa-css-prefix}-sort-up:before,\n.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }\n.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }\n.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }\n.@{fa-css-prefix}-rotate-left:before,\n.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }\n.@{fa-css-prefix}-legal:before,\n.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }\n.@{fa-css-prefix}-dashboard:before,\n.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }\n.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }\n.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }\n.@{fa-css-prefix}-flash:before,\n.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }\n.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }\n.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }\n.@{fa-css-prefix}-paste:before,\n.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }\n.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }\n.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }\n.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }\n.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }\n.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }\n.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }\n.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }\n.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }\n.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }\n.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }\n.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }\n.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }\n.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }\n.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }\n.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }\n.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }\n.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }\n.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }\n.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }\n.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }\n.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }\n.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }\n.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }\n.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }\n.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }\n.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }\n.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }\n.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }\n.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }\n.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }\n.@{fa-css-prefix}-mobile-phone:before,\n.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }\n.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }\n.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }\n.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }\n.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }\n.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }\n.@{fa-css-prefix}-mail-reply:before,\n.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }\n.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }\n.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }\n.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }\n.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }\n.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }\n.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }\n.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }\n.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }\n.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }\n.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }\n.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }\n.@{fa-css-prefix}-code:before { content: @fa-var-code; }\n.@{fa-css-prefix}-mail-reply-all:before,\n.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }\n.@{fa-css-prefix}-star-half-empty:before,\n.@{fa-css-prefix}-star-half-full:before,\n.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }\n.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }\n.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }\n.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }\n.@{fa-css-prefix}-unlink:before,\n.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }\n.@{fa-css-prefix}-question:before { content: @fa-var-question; }\n.@{fa-css-prefix}-info:before { content: @fa-var-info; }\n.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }\n.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }\n.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }\n.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }\n.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }\n.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }\n.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }\n.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }\n.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }\n.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }\n.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }\n.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }\n.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }\n.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }\n.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }\n.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }\n.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }\n.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }\n.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }\n.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }\n.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }\n.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }\n.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }\n.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }\n.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }\n.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }\n.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }\n.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }\n.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }\n.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }\n.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }\n.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }\n.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }\n.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }\n.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }\n.@{fa-css-prefix}-toggle-down:before,\n.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }\n.@{fa-css-prefix}-toggle-up:before,\n.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }\n.@{fa-css-prefix}-toggle-right:before,\n.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }\n.@{fa-css-prefix}-euro:before,\n.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }\n.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }\n.@{fa-css-prefix}-dollar:before,\n.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }\n.@{fa-css-prefix}-rupee:before,\n.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }\n.@{fa-css-prefix}-cny:before,\n.@{fa-css-prefix}-rmb:before,\n.@{fa-css-prefix}-yen:before,\n.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }\n.@{fa-css-prefix}-ruble:before,\n.@{fa-css-prefix}-rouble:before,\n.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }\n.@{fa-css-prefix}-won:before,\n.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }\n.@{fa-css-prefix}-bitcoin:before,\n.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }\n.@{fa-css-prefix}-file:before { content: @fa-var-file; }\n.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }\n.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }\n.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }\n.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }\n.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }\n.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }\n.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }\n.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }\n.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }\n.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }\n.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }\n.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }\n.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }\n.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }\n.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }\n.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }\n.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }\n.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }\n.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }\n.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }\n.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }\n.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }\n.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }\n.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }\n.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }\n.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }\n.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }\n.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }\n.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }\n.@{fa-css-prefix}-android:before { content: @fa-var-android; }\n.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }\n.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }\n.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }\n.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }\n.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }\n.@{fa-css-prefix}-female:before { content: @fa-var-female; }\n.@{fa-css-prefix}-male:before { content: @fa-var-male; }\n.@{fa-css-prefix}-gittip:before,\n.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }\n.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }\n.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }\n.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }\n.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }\n.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }\n.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }\n.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }\n.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }\n.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }\n.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }\n.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }\n.@{fa-css-prefix}-toggle-left:before,\n.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }\n.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }\n.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }\n.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }\n.@{fa-css-prefix}-turkish-lira:before,\n.@{fa-css-prefix}-try:before { content: @fa-var-try; }\n.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }\n.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }\n.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }\n.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }\n.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }\n.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }\n.@{fa-css-prefix}-institution:before,\n.@{fa-css-prefix}-bank:before,\n.@{fa-css-prefix}-university:before { content: @fa-var-university; }\n.@{fa-css-prefix}-mortar-board:before,\n.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }\n.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }\n.@{fa-css-prefix}-google:before { content: @fa-var-google; }\n.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }\n.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }\n.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }\n.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }\n.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }\n.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }\n.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }\n.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }\n.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }\n.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }\n.@{fa-css-prefix}-language:before { content: @fa-var-language; }\n.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }\n.@{fa-css-prefix}-building:before { content: @fa-var-building; }\n.@{fa-css-prefix}-child:before { content: @fa-var-child; }\n.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }\n.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }\n.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }\n.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }\n.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }\n.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }\n.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }\n.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }\n.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }\n.@{fa-css-prefix}-automobile:before,\n.@{fa-css-prefix}-car:before { content: @fa-var-car; }\n.@{fa-css-prefix}-cab:before,\n.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }\n.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }\n.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }\n.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }\n.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }\n.@{fa-css-prefix}-database:before { content: @fa-var-database; }\n.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }\n.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }\n.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }\n.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }\n.@{fa-css-prefix}-file-photo-o:before,\n.@{fa-css-prefix}-file-picture-o:before,\n.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }\n.@{fa-css-prefix}-file-zip-o:before,\n.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }\n.@{fa-css-prefix}-file-sound-o:before,\n.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }\n.@{fa-css-prefix}-file-movie-o:before,\n.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }\n.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }\n.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }\n.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }\n.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }\n.@{fa-css-prefix}-life-bouy:before,\n.@{fa-css-prefix}-life-buoy:before,\n.@{fa-css-prefix}-life-saver:before,\n.@{fa-css-prefix}-support:before,\n.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }\n.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }\n.@{fa-css-prefix}-ra:before,\n.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }\n.@{fa-css-prefix}-ge:before,\n.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }\n.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }\n.@{fa-css-prefix}-git:before { content: @fa-var-git; }\n.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }\n.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }\n.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }\n.@{fa-css-prefix}-wechat:before,\n.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }\n.@{fa-css-prefix}-send:before,\n.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }\n.@{fa-css-prefix}-send-o:before,\n.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }\n.@{fa-css-prefix}-history:before { content: @fa-var-history; }\n.@{fa-css-prefix}-genderless:before,\n.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }\n.@{fa-css-prefix}-header:before { content: @fa-var-header; }\n.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }\n.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }\n.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }\n.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }\n.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }\n.@{fa-css-prefix}-soccer-ball-o:before,\n.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }\n.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }\n.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }\n.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }\n.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }\n.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }\n.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }\n.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }\n.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }\n.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }\n.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }\n.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }\n.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }\n.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }\n.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }\n.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }\n.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }\n.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }\n.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }\n.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }\n.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }\n.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }\n.@{fa-css-prefix}-at:before { content: @fa-var-at; }\n.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }\n.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }\n.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }\n.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }\n.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }\n.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }\n.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }\n.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }\n.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }\n.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }\n.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }\n.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }\n.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }\n.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }\n.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }\n.@{fa-css-prefix}-shekel:before,\n.@{fa-css-prefix}-sheqel:before,\n.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }\n.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }\n.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }\n.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }\n.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }\n.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }\n.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }\n.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }\n.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }\n.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }\n.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }\n.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }\n.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }\n.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }\n.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }\n.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }\n.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }\n.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }\n.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }\n.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }\n.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }\n.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }\n.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }\n.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }\n.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }\n.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }\n.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }\n.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }\n.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }\n.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }\n.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }\n.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }\n.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }\n.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }\n.@{fa-css-prefix}-server:before { content: @fa-var-server; }\n.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }\n.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }\n.@{fa-css-prefix}-hotel:before,\n.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }\n.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }\n.@{fa-css-prefix}-train:before { content: @fa-var-train; }\n.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }\n.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }\n"
  },
  {
    "path": "public/admin/font-awesome/less/larger.less",
    "content": "// Icon Sizes\n// -------------------------\n\n/* makes the font 33% larger relative to the icon container */\n.@{fa-css-prefix}-lg {\n  font-size: (4em / 3);\n  line-height: (3em / 4);\n  vertical-align: -15%;\n}\n.@{fa-css-prefix}-2x { font-size: 2em; }\n.@{fa-css-prefix}-3x { font-size: 3em; }\n.@{fa-css-prefix}-4x { font-size: 4em; }\n.@{fa-css-prefix}-5x { font-size: 5em; }\n"
  },
  {
    "path": "public/admin/font-awesome/less/list.less",
    "content": "// List Icons\n// -------------------------\n\n.@{fa-css-prefix}-ul {\n  padding-left: 0;\n  margin-left: @fa-li-width;\n  list-style-type: none;\n  > li { position: relative; }\n}\n.@{fa-css-prefix}-li {\n  position: absolute;\n  left: -@fa-li-width;\n  width: @fa-li-width;\n  top: (2em / 14);\n  text-align: center;\n  &.@{fa-css-prefix}-lg {\n    left: (-@fa-li-width + (4em / 14));\n  }\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/mixins.less",
    "content": "// Mixins\n// --------------------------\n\n.fa-icon() {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/1 FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  transform: translate(0, 0); // ensures no half-pixel rendering in firefox\n\n}\n\n.fa-icon-rotate(@degrees, @rotation) {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation);\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n\n.fa-icon-flip(@horiz, @vert, @rotation) {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1);\n  -webkit-transform: scale(@horiz, @vert);\n      -ms-transform: scale(@horiz, @vert);\n          transform: scale(@horiz, @vert);\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/path.less",
    "content": "/* FONT PATH\n * -------------------------- */\n\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),\n    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),\n    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),\n    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),\n    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');\n//  src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts\n  font-weight: normal;\n  font-style: normal;\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/rotated-flipped.less",
    "content": "// Rotated & Flipped Icons\n// -------------------------\n\n.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }\n.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }\n.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }\n\n.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }\n.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }\n\n// Hook for IE8-9\n// -------------------------\n\n:root .@{fa-css-prefix}-rotate-90,\n:root .@{fa-css-prefix}-rotate-180,\n:root .@{fa-css-prefix}-rotate-270,\n:root .@{fa-css-prefix}-flip-horizontal,\n:root .@{fa-css-prefix}-flip-vertical {\n  filter: none;\n}\n"
  },
  {
    "path": "public/admin/font-awesome/less/stacked.less",
    "content": "// Stacked Icons\n// -------------------------\n\n.@{fa-css-prefix}-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.@{fa-css-prefix}-stack-1x { line-height: inherit; }\n.@{fa-css-prefix}-stack-2x { font-size: 2em; }\n.@{fa-css-prefix}-inverse { color: @fa-inverse; }\n"
  },
  {
    "path": "public/admin/font-awesome/less/variables.less",
    "content": "// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.3.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f1db\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f1a7\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_animated.scss",
    "content": "// Spinning Icons\n// --------------------------\n\n.#{$fa-css-prefix}-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\n\n.#{$fa-css-prefix}-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_bordered-pulled.scss",
    "content": "// Bordered & Pulled\n// -------------------------\n\n.#{$fa-css-prefix}-border {\n  padding: .2em .25em .15em;\n  border: solid .08em $fa-border-color;\n  border-radius: .1em;\n}\n\n.pull-right { float: right; }\n.pull-left { float: left; }\n\n.#{$fa-css-prefix} {\n  &.pull-left { margin-right: .3em; }\n  &.pull-right { margin-left: .3em; }\n}\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_core.scss",
    "content": "// Base Class Definition\n// -------------------------\n\n.#{$fa-css-prefix} {\n  display: inline-block;\n  font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  transform: translate(0, 0); // ensures no half-pixel rendering in firefox\n\n}\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_fixed-width.scss",
    "content": "// Fixed Width Icons\n// -------------------------\n.#{$fa-css-prefix}-fw {\n  width: (18em / 14);\n  text-align: center;\n}\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_icons.scss",
    "content": "/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n\n.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; }\n.#{$fa-css-prefix}-music:before { content: $fa-var-music; }\n.#{$fa-css-prefix}-search:before { content: $fa-var-search; }\n.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; }\n.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; }\n.#{$fa-css-prefix}-star:before { content: $fa-var-star; }\n.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; }\n.#{$fa-css-prefix}-user:before { content: $fa-var-user; }\n.#{$fa-css-prefix}-film:before { content: $fa-var-film; }\n.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; }\n.#{$fa-css-prefix}-th:before { content: $fa-var-th; }\n.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; }\n.#{$fa-css-prefix}-check:before { content: $fa-var-check; }\n.#{$fa-css-prefix}-remove:before,\n.#{$fa-css-prefix}-close:before,\n.#{$fa-css-prefix}-times:before { content: $fa-var-times; }\n.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; }\n.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; }\n.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; }\n.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; }\n.#{$fa-css-prefix}-gear:before,\n.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; }\n.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; }\n.#{$fa-css-prefix}-home:before { content: $fa-var-home; }\n.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; }\n.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; }\n.#{$fa-css-prefix}-road:before { content: $fa-var-road; }\n.#{$fa-css-prefix}-download:before { content: $fa-var-download; }\n.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; }\n.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; }\n.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; }\n.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; }\n.#{$fa-css-prefix}-rotate-right:before,\n.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; }\n.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; }\n.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; }\n.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; }\n.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; }\n.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; }\n.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; }\n.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; }\n.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; }\n.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; }\n.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; }\n.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; }\n.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; }\n.#{$fa-css-prefix}-book:before { content: $fa-var-book; }\n.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; }\n.#{$fa-css-prefix}-print:before { content: $fa-var-print; }\n.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; }\n.#{$fa-css-prefix}-font:before { content: $fa-var-font; }\n.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; }\n.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; }\n.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; }\n.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; }\n.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; }\n.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; }\n.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; }\n.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; }\n.#{$fa-css-prefix}-list:before { content: $fa-var-list; }\n.#{$fa-css-prefix}-dedent:before,\n.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; }\n.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; }\n.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; }\n.#{$fa-css-prefix}-photo:before,\n.#{$fa-css-prefix}-image:before,\n.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; }\n.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; }\n.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; }\n.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; }\n.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; }\n.#{$fa-css-prefix}-edit:before,\n.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; }\n.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; }\n.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; }\n.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; }\n.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; }\n.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; }\n.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; }\n.#{$fa-css-prefix}-play:before { content: $fa-var-play; }\n.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; }\n.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; }\n.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; }\n.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; }\n.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; }\n.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; }\n.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; }\n.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; }\n.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; }\n.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; }\n.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; }\n.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; }\n.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; }\n.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; }\n.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; }\n.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; }\n.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; }\n.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; }\n.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; }\n.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; }\n.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; }\n.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; }\n.#{$fa-css-prefix}-mail-forward:before,\n.#{$fa-css-prefix}-share:before { content: $fa-var-share; }\n.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; }\n.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; }\n.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; }\n.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; }\n.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; }\n.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; }\n.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; }\n.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; }\n.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; }\n.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; }\n.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; }\n.#{$fa-css-prefix}-warning:before,\n.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; }\n.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; }\n.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; }\n.#{$fa-css-prefix}-random:before { content: $fa-var-random; }\n.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; }\n.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; }\n.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; }\n.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; }\n.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; }\n.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; }\n.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; }\n.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; }\n.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; }\n.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; }\n.#{$fa-css-prefix}-bar-chart-o:before,\n.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; }\n.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; }\n.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; }\n.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; }\n.#{$fa-css-prefix}-key:before { content: $fa-var-key; }\n.#{$fa-css-prefix}-gears:before,\n.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; }\n.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; }\n.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; }\n.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; }\n.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; }\n.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; }\n.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; }\n.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; }\n.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; }\n.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; }\n.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; }\n.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; }\n.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; }\n.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; }\n.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; }\n.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; }\n.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; }\n.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; }\n.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; }\n.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; }\n.#{$fa-css-prefix}-facebook-f:before,\n.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; }\n.#{$fa-css-prefix}-github:before { content: $fa-var-github; }\n.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; }\n.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; }\n.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; }\n.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; }\n.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; }\n.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; }\n.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; }\n.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; }\n.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; }\n.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; }\n.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; }\n.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; }\n.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; }\n.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; }\n.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; }\n.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; }\n.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; }\n.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; }\n.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; }\n.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; }\n.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; }\n.#{$fa-css-prefix}-group:before,\n.#{$fa-css-prefix}-users:before { content: $fa-var-users; }\n.#{$fa-css-prefix}-chain:before,\n.#{$fa-css-prefix}-link:before { content: $fa-var-link; }\n.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; }\n.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; }\n.#{$fa-css-prefix}-cut:before,\n.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; }\n.#{$fa-css-prefix}-copy:before,\n.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; }\n.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; }\n.#{$fa-css-prefix}-save:before,\n.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; }\n.#{$fa-css-prefix}-square:before { content: $fa-var-square; }\n.#{$fa-css-prefix}-navicon:before,\n.#{$fa-css-prefix}-reorder:before,\n.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; }\n.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; }\n.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; }\n.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; }\n.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; }\n.#{$fa-css-prefix}-table:before { content: $fa-var-table; }\n.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; }\n.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; }\n.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; }\n.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; }\n.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; }\n.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; }\n.#{$fa-css-prefix}-money:before { content: $fa-var-money; }\n.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; }\n.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; }\n.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; }\n.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; }\n.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; }\n.#{$fa-css-prefix}-unsorted:before,\n.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; }\n.#{$fa-css-prefix}-sort-down:before,\n.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; }\n.#{$fa-css-prefix}-sort-up:before,\n.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; }\n.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; }\n.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; }\n.#{$fa-css-prefix}-rotate-left:before,\n.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; }\n.#{$fa-css-prefix}-legal:before,\n.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; }\n.#{$fa-css-prefix}-dashboard:before,\n.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; }\n.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; }\n.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; }\n.#{$fa-css-prefix}-flash:before,\n.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; }\n.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; }\n.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; }\n.#{$fa-css-prefix}-paste:before,\n.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; }\n.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; }\n.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; }\n.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; }\n.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; }\n.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; }\n.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; }\n.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; }\n.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; }\n.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; }\n.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; }\n.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; }\n.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; }\n.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; }\n.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; }\n.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; }\n.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; }\n.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; }\n.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; }\n.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; }\n.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; }\n.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; }\n.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; }\n.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; }\n.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; }\n.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; }\n.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; }\n.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; }\n.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; }\n.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; }\n.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; }\n.#{$fa-css-prefix}-mobile-phone:before,\n.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; }\n.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; }\n.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; }\n.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; }\n.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; }\n.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; }\n.#{$fa-css-prefix}-mail-reply:before,\n.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; }\n.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; }\n.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; }\n.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; }\n.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; }\n.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; }\n.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; }\n.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; }\n.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; }\n.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; }\n.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; }\n.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; }\n.#{$fa-css-prefix}-code:before { content: $fa-var-code; }\n.#{$fa-css-prefix}-mail-reply-all:before,\n.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; }\n.#{$fa-css-prefix}-star-half-empty:before,\n.#{$fa-css-prefix}-star-half-full:before,\n.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; }\n.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; }\n.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; }\n.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; }\n.#{$fa-css-prefix}-unlink:before,\n.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; }\n.#{$fa-css-prefix}-question:before { content: $fa-var-question; }\n.#{$fa-css-prefix}-info:before { content: $fa-var-info; }\n.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; }\n.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; }\n.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; }\n.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; }\n.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; }\n.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; }\n.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; }\n.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; }\n.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; }\n.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; }\n.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; }\n.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; }\n.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; }\n.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; }\n.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; }\n.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; }\n.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; }\n.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; }\n.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; }\n.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; }\n.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; }\n.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; }\n.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; }\n.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; }\n.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; }\n.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; }\n.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; }\n.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; }\n.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; }\n.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; }\n.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; }\n.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; }\n.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; }\n.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; }\n.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; }\n.#{$fa-css-prefix}-toggle-down:before,\n.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; }\n.#{$fa-css-prefix}-toggle-up:before,\n.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; }\n.#{$fa-css-prefix}-toggle-right:before,\n.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; }\n.#{$fa-css-prefix}-euro:before,\n.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; }\n.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; }\n.#{$fa-css-prefix}-dollar:before,\n.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; }\n.#{$fa-css-prefix}-rupee:before,\n.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; }\n.#{$fa-css-prefix}-cny:before,\n.#{$fa-css-prefix}-rmb:before,\n.#{$fa-css-prefix}-yen:before,\n.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; }\n.#{$fa-css-prefix}-ruble:before,\n.#{$fa-css-prefix}-rouble:before,\n.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; }\n.#{$fa-css-prefix}-won:before,\n.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; }\n.#{$fa-css-prefix}-bitcoin:before,\n.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; }\n.#{$fa-css-prefix}-file:before { content: $fa-var-file; }\n.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; }\n.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; }\n.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; }\n.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; }\n.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; }\n.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; }\n.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; }\n.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; }\n.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; }\n.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; }\n.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; }\n.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; }\n.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; }\n.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; }\n.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; }\n.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; }\n.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; }\n.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; }\n.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; }\n.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; }\n.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; }\n.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; }\n.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; }\n.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; }\n.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; }\n.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; }\n.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; }\n.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; }\n.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; }\n.#{$fa-css-prefix}-android:before { content: $fa-var-android; }\n.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; }\n.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; }\n.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; }\n.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; }\n.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; }\n.#{$fa-css-prefix}-female:before { content: $fa-var-female; }\n.#{$fa-css-prefix}-male:before { content: $fa-var-male; }\n.#{$fa-css-prefix}-gittip:before,\n.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; }\n.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; }\n.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; }\n.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; }\n.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; }\n.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; }\n.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; }\n.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; }\n.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; }\n.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; }\n.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; }\n.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; }\n.#{$fa-css-prefix}-toggle-left:before,\n.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; }\n.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; }\n.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; }\n.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; }\n.#{$fa-css-prefix}-turkish-lira:before,\n.#{$fa-css-prefix}-try:before { content: $fa-var-try; }\n.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; }\n.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; }\n.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; }\n.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; }\n.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; }\n.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; }\n.#{$fa-css-prefix}-institution:before,\n.#{$fa-css-prefix}-bank:before,\n.#{$fa-css-prefix}-university:before { content: $fa-var-university; }\n.#{$fa-css-prefix}-mortar-board:before,\n.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; }\n.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; }\n.#{$fa-css-prefix}-google:before { content: $fa-var-google; }\n.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; }\n.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; }\n.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; }\n.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; }\n.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; }\n.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; }\n.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; }\n.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; }\n.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; }\n.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; }\n.#{$fa-css-prefix}-language:before { content: $fa-var-language; }\n.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; }\n.#{$fa-css-prefix}-building:before { content: $fa-var-building; }\n.#{$fa-css-prefix}-child:before { content: $fa-var-child; }\n.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; }\n.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; }\n.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; }\n.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; }\n.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; }\n.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; }\n.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; }\n.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; }\n.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; }\n.#{$fa-css-prefix}-automobile:before,\n.#{$fa-css-prefix}-car:before { content: $fa-var-car; }\n.#{$fa-css-prefix}-cab:before,\n.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; }\n.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; }\n.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; }\n.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; }\n.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; }\n.#{$fa-css-prefix}-database:before { content: $fa-var-database; }\n.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; }\n.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; }\n.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; }\n.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; }\n.#{$fa-css-prefix}-file-photo-o:before,\n.#{$fa-css-prefix}-file-picture-o:before,\n.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; }\n.#{$fa-css-prefix}-file-zip-o:before,\n.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; }\n.#{$fa-css-prefix}-file-sound-o:before,\n.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; }\n.#{$fa-css-prefix}-file-movie-o:before,\n.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; }\n.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; }\n.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; }\n.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; }\n.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; }\n.#{$fa-css-prefix}-life-bouy:before,\n.#{$fa-css-prefix}-life-buoy:before,\n.#{$fa-css-prefix}-life-saver:before,\n.#{$fa-css-prefix}-support:before,\n.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; }\n.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; }\n.#{$fa-css-prefix}-ra:before,\n.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; }\n.#{$fa-css-prefix}-ge:before,\n.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; }\n.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; }\n.#{$fa-css-prefix}-git:before { content: $fa-var-git; }\n.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; }\n.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; }\n.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; }\n.#{$fa-css-prefix}-wechat:before,\n.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; }\n.#{$fa-css-prefix}-send:before,\n.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; }\n.#{$fa-css-prefix}-send-o:before,\n.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; }\n.#{$fa-css-prefix}-history:before { content: $fa-var-history; }\n.#{$fa-css-prefix}-genderless:before,\n.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; }\n.#{$fa-css-prefix}-header:before { content: $fa-var-header; }\n.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; }\n.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; }\n.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; }\n.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; }\n.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; }\n.#{$fa-css-prefix}-soccer-ball-o:before,\n.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; }\n.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; }\n.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; }\n.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; }\n.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; }\n.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; }\n.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; }\n.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; }\n.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; }\n.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; }\n.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; }\n.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; }\n.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; }\n.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; }\n.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; }\n.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; }\n.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; }\n.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; }\n.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; }\n.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; }\n.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; }\n.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; }\n.#{$fa-css-prefix}-at:before { content: $fa-var-at; }\n.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; }\n.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; }\n.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; }\n.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; }\n.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; }\n.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; }\n.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; }\n.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; }\n.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; }\n.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; }\n.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; }\n.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; }\n.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; }\n.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; }\n.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; }\n.#{$fa-css-prefix}-shekel:before,\n.#{$fa-css-prefix}-sheqel:before,\n.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; }\n.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; }\n.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; }\n.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; }\n.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; }\n.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; }\n.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; }\n.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; }\n.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; }\n.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; }\n.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; }\n.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; }\n.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; }\n.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; }\n.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; }\n.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; }\n.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; }\n.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; }\n.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; }\n.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; }\n.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; }\n.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; }\n.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; }\n.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; }\n.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; }\n.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; }\n.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; }\n.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; }\n.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; }\n.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; }\n.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; }\n.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; }\n.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; }\n.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; }\n.#{$fa-css-prefix}-server:before { content: $fa-var-server; }\n.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; }\n.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; }\n.#{$fa-css-prefix}-hotel:before,\n.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; }\n.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; }\n.#{$fa-css-prefix}-train:before { content: $fa-var-train; }\n.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; }\n.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; }\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_larger.scss",
    "content": "// Icon Sizes\n// -------------------------\n\n/* makes the font 33% larger relative to the icon container */\n.#{$fa-css-prefix}-lg {\n  font-size: (4em / 3);\n  line-height: (3em / 4);\n  vertical-align: -15%;\n}\n.#{$fa-css-prefix}-2x { font-size: 2em; }\n.#{$fa-css-prefix}-3x { font-size: 3em; }\n.#{$fa-css-prefix}-4x { font-size: 4em; }\n.#{$fa-css-prefix}-5x { font-size: 5em; }\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_list.scss",
    "content": "// List Icons\n// -------------------------\n\n.#{$fa-css-prefix}-ul {\n  padding-left: 0;\n  margin-left: $fa-li-width;\n  list-style-type: none;\n  > li { position: relative; }\n}\n.#{$fa-css-prefix}-li {\n  position: absolute;\n  left: -$fa-li-width;\n  width: $fa-li-width;\n  top: (2em / 14);\n  text-align: center;\n  &.#{$fa-css-prefix}-lg {\n    left: -$fa-li-width + (4em / 14);\n  }\n}\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_mixins.scss",
    "content": "// Mixins\n// --------------------------\n\n@mixin fa-icon() {\n  display: inline-block;\n  font: normal normal normal #{$fa-font-size-base}/1 FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  transform: translate(0, 0); // ensures no half-pixel rendering in firefox\n\n}\n\n@mixin fa-icon-rotate($degrees, $rotation) {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});\n  -webkit-transform: rotate($degrees);\n      -ms-transform: rotate($degrees);\n          transform: rotate($degrees);\n}\n\n@mixin fa-icon-flip($horiz, $vert, $rotation) {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});\n  -webkit-transform: scale($horiz, $vert);\n      -ms-transform: scale($horiz, $vert);\n          transform: scale($horiz, $vert);\n}\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_path.scss",
    "content": "/* FONT PATH\n * -------------------------- */\n\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');\n  src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),\n    url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),\n    url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),\n    url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),\n    url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');\n//  src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts\n  font-weight: normal;\n  font-style: normal;\n}\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_rotated-flipped.scss",
    "content": "// Rotated & Flipped Icons\n// -------------------------\n\n.#{$fa-css-prefix}-rotate-90  { @include fa-icon-rotate(90deg, 1);  }\n.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }\n.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }\n\n.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }\n.#{$fa-css-prefix}-flip-vertical   { @include fa-icon-flip(1, -1, 2); }\n\n// Hook for IE8-9\n// -------------------------\n\n:root .#{$fa-css-prefix}-rotate-90,\n:root .#{$fa-css-prefix}-rotate-180,\n:root .#{$fa-css-prefix}-rotate-270,\n:root .#{$fa-css-prefix}-flip-horizontal,\n:root .#{$fa-css-prefix}-flip-vertical {\n  filter: none;\n}\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_stacked.scss",
    "content": "// Stacked Icons\n// -------------------------\n\n.#{$fa-css-prefix}-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.#{$fa-css-prefix}-stack-1x { line-height: inherit; }\n.#{$fa-css-prefix}-stack-2x { font-size: 2em; }\n.#{$fa-css-prefix}-inverse { color: $fa-inverse; }\n"
  },
  {
    "path": "public/admin/font-awesome/scss/_variables.scss",
    "content": "// Variables\n// --------------------------\n\n$fa-font-path:        \"../fonts\" !default;\n$fa-font-size-base:   14px !default;\n//$fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts\" !default; // for referencing Bootstrap CDN font files directly\n$fa-css-prefix:       fa !default;\n$fa-version:          \"4.3.0\" !default;\n$fa-border-color:     #eee !default;\n$fa-inverse:          #fff !default;\n$fa-li-width:         (30em / 14) !default;\n\n$fa-var-adjust: \"\\f042\";\n$fa-var-adn: \"\\f170\";\n$fa-var-align-center: \"\\f037\";\n$fa-var-align-justify: \"\\f039\";\n$fa-var-align-left: \"\\f036\";\n$fa-var-align-right: \"\\f038\";\n$fa-var-ambulance: \"\\f0f9\";\n$fa-var-anchor: \"\\f13d\";\n$fa-var-android: \"\\f17b\";\n$fa-var-angellist: \"\\f209\";\n$fa-var-angle-double-down: \"\\f103\";\n$fa-var-angle-double-left: \"\\f100\";\n$fa-var-angle-double-right: \"\\f101\";\n$fa-var-angle-double-up: \"\\f102\";\n$fa-var-angle-down: \"\\f107\";\n$fa-var-angle-left: \"\\f104\";\n$fa-var-angle-right: \"\\f105\";\n$fa-var-angle-up: \"\\f106\";\n$fa-var-apple: \"\\f179\";\n$fa-var-archive: \"\\f187\";\n$fa-var-area-chart: \"\\f1fe\";\n$fa-var-arrow-circle-down: \"\\f0ab\";\n$fa-var-arrow-circle-left: \"\\f0a8\";\n$fa-var-arrow-circle-o-down: \"\\f01a\";\n$fa-var-arrow-circle-o-left: \"\\f190\";\n$fa-var-arrow-circle-o-right: \"\\f18e\";\n$fa-var-arrow-circle-o-up: \"\\f01b\";\n$fa-var-arrow-circle-right: \"\\f0a9\";\n$fa-var-arrow-circle-up: \"\\f0aa\";\n$fa-var-arrow-down: \"\\f063\";\n$fa-var-arrow-left: \"\\f060\";\n$fa-var-arrow-right: \"\\f061\";\n$fa-var-arrow-up: \"\\f062\";\n$fa-var-arrows: \"\\f047\";\n$fa-var-arrows-alt: \"\\f0b2\";\n$fa-var-arrows-h: \"\\f07e\";\n$fa-var-arrows-v: \"\\f07d\";\n$fa-var-asterisk: \"\\f069\";\n$fa-var-at: \"\\f1fa\";\n$fa-var-automobile: \"\\f1b9\";\n$fa-var-backward: \"\\f04a\";\n$fa-var-ban: \"\\f05e\";\n$fa-var-bank: \"\\f19c\";\n$fa-var-bar-chart: \"\\f080\";\n$fa-var-bar-chart-o: \"\\f080\";\n$fa-var-barcode: \"\\f02a\";\n$fa-var-bars: \"\\f0c9\";\n$fa-var-bed: \"\\f236\";\n$fa-var-beer: \"\\f0fc\";\n$fa-var-behance: \"\\f1b4\";\n$fa-var-behance-square: \"\\f1b5\";\n$fa-var-bell: \"\\f0f3\";\n$fa-var-bell-o: \"\\f0a2\";\n$fa-var-bell-slash: \"\\f1f6\";\n$fa-var-bell-slash-o: \"\\f1f7\";\n$fa-var-bicycle: \"\\f206\";\n$fa-var-binoculars: \"\\f1e5\";\n$fa-var-birthday-cake: \"\\f1fd\";\n$fa-var-bitbucket: \"\\f171\";\n$fa-var-bitbucket-square: \"\\f172\";\n$fa-var-bitcoin: \"\\f15a\";\n$fa-var-bold: \"\\f032\";\n$fa-var-bolt: \"\\f0e7\";\n$fa-var-bomb: \"\\f1e2\";\n$fa-var-book: \"\\f02d\";\n$fa-var-bookmark: \"\\f02e\";\n$fa-var-bookmark-o: \"\\f097\";\n$fa-var-briefcase: \"\\f0b1\";\n$fa-var-btc: \"\\f15a\";\n$fa-var-bug: \"\\f188\";\n$fa-var-building: \"\\f1ad\";\n$fa-var-building-o: \"\\f0f7\";\n$fa-var-bullhorn: \"\\f0a1\";\n$fa-var-bullseye: \"\\f140\";\n$fa-var-bus: \"\\f207\";\n$fa-var-buysellads: \"\\f20d\";\n$fa-var-cab: \"\\f1ba\";\n$fa-var-calculator: \"\\f1ec\";\n$fa-var-calendar: \"\\f073\";\n$fa-var-calendar-o: \"\\f133\";\n$fa-var-camera: \"\\f030\";\n$fa-var-camera-retro: \"\\f083\";\n$fa-var-car: \"\\f1b9\";\n$fa-var-caret-down: \"\\f0d7\";\n$fa-var-caret-left: \"\\f0d9\";\n$fa-var-caret-right: \"\\f0da\";\n$fa-var-caret-square-o-down: \"\\f150\";\n$fa-var-caret-square-o-left: \"\\f191\";\n$fa-var-caret-square-o-right: \"\\f152\";\n$fa-var-caret-square-o-up: \"\\f151\";\n$fa-var-caret-up: \"\\f0d8\";\n$fa-var-cart-arrow-down: \"\\f218\";\n$fa-var-cart-plus: \"\\f217\";\n$fa-var-cc: \"\\f20a\";\n$fa-var-cc-amex: \"\\f1f3\";\n$fa-var-cc-discover: \"\\f1f2\";\n$fa-var-cc-mastercard: \"\\f1f1\";\n$fa-var-cc-paypal: \"\\f1f4\";\n$fa-var-cc-stripe: \"\\f1f5\";\n$fa-var-cc-visa: \"\\f1f0\";\n$fa-var-certificate: \"\\f0a3\";\n$fa-var-chain: \"\\f0c1\";\n$fa-var-chain-broken: \"\\f127\";\n$fa-var-check: \"\\f00c\";\n$fa-var-check-circle: \"\\f058\";\n$fa-var-check-circle-o: \"\\f05d\";\n$fa-var-check-square: \"\\f14a\";\n$fa-var-check-square-o: \"\\f046\";\n$fa-var-chevron-circle-down: \"\\f13a\";\n$fa-var-chevron-circle-left: \"\\f137\";\n$fa-var-chevron-circle-right: \"\\f138\";\n$fa-var-chevron-circle-up: \"\\f139\";\n$fa-var-chevron-down: \"\\f078\";\n$fa-var-chevron-left: \"\\f053\";\n$fa-var-chevron-right: \"\\f054\";\n$fa-var-chevron-up: \"\\f077\";\n$fa-var-child: \"\\f1ae\";\n$fa-var-circle: \"\\f111\";\n$fa-var-circle-o: \"\\f10c\";\n$fa-var-circle-o-notch: \"\\f1ce\";\n$fa-var-circle-thin: \"\\f1db\";\n$fa-var-clipboard: \"\\f0ea\";\n$fa-var-clock-o: \"\\f017\";\n$fa-var-close: \"\\f00d\";\n$fa-var-cloud: \"\\f0c2\";\n$fa-var-cloud-download: \"\\f0ed\";\n$fa-var-cloud-upload: \"\\f0ee\";\n$fa-var-cny: \"\\f157\";\n$fa-var-code: \"\\f121\";\n$fa-var-code-fork: \"\\f126\";\n$fa-var-codepen: \"\\f1cb\";\n$fa-var-coffee: \"\\f0f4\";\n$fa-var-cog: \"\\f013\";\n$fa-var-cogs: \"\\f085\";\n$fa-var-columns: \"\\f0db\";\n$fa-var-comment: \"\\f075\";\n$fa-var-comment-o: \"\\f0e5\";\n$fa-var-comments: \"\\f086\";\n$fa-var-comments-o: \"\\f0e6\";\n$fa-var-compass: \"\\f14e\";\n$fa-var-compress: \"\\f066\";\n$fa-var-connectdevelop: \"\\f20e\";\n$fa-var-copy: \"\\f0c5\";\n$fa-var-copyright: \"\\f1f9\";\n$fa-var-credit-card: \"\\f09d\";\n$fa-var-crop: \"\\f125\";\n$fa-var-crosshairs: \"\\f05b\";\n$fa-var-css3: \"\\f13c\";\n$fa-var-cube: \"\\f1b2\";\n$fa-var-cubes: \"\\f1b3\";\n$fa-var-cut: \"\\f0c4\";\n$fa-var-cutlery: \"\\f0f5\";\n$fa-var-dashboard: \"\\f0e4\";\n$fa-var-dashcube: \"\\f210\";\n$fa-var-database: \"\\f1c0\";\n$fa-var-dedent: \"\\f03b\";\n$fa-var-delicious: \"\\f1a5\";\n$fa-var-desktop: \"\\f108\";\n$fa-var-deviantart: \"\\f1bd\";\n$fa-var-diamond: \"\\f219\";\n$fa-var-digg: \"\\f1a6\";\n$fa-var-dollar: \"\\f155\";\n$fa-var-dot-circle-o: \"\\f192\";\n$fa-var-download: \"\\f019\";\n$fa-var-dribbble: \"\\f17d\";\n$fa-var-dropbox: \"\\f16b\";\n$fa-var-drupal: \"\\f1a9\";\n$fa-var-edit: \"\\f044\";\n$fa-var-eject: \"\\f052\";\n$fa-var-ellipsis-h: \"\\f141\";\n$fa-var-ellipsis-v: \"\\f142\";\n$fa-var-empire: \"\\f1d1\";\n$fa-var-envelope: \"\\f0e0\";\n$fa-var-envelope-o: \"\\f003\";\n$fa-var-envelope-square: \"\\f199\";\n$fa-var-eraser: \"\\f12d\";\n$fa-var-eur: \"\\f153\";\n$fa-var-euro: \"\\f153\";\n$fa-var-exchange: \"\\f0ec\";\n$fa-var-exclamation: \"\\f12a\";\n$fa-var-exclamation-circle: \"\\f06a\";\n$fa-var-exclamation-triangle: \"\\f071\";\n$fa-var-expand: \"\\f065\";\n$fa-var-external-link: \"\\f08e\";\n$fa-var-external-link-square: \"\\f14c\";\n$fa-var-eye: \"\\f06e\";\n$fa-var-eye-slash: \"\\f070\";\n$fa-var-eyedropper: \"\\f1fb\";\n$fa-var-facebook: \"\\f09a\";\n$fa-var-facebook-f: \"\\f09a\";\n$fa-var-facebook-official: \"\\f230\";\n$fa-var-facebook-square: \"\\f082\";\n$fa-var-fast-backward: \"\\f049\";\n$fa-var-fast-forward: \"\\f050\";\n$fa-var-fax: \"\\f1ac\";\n$fa-var-female: \"\\f182\";\n$fa-var-fighter-jet: \"\\f0fb\";\n$fa-var-file: \"\\f15b\";\n$fa-var-file-archive-o: \"\\f1c6\";\n$fa-var-file-audio-o: \"\\f1c7\";\n$fa-var-file-code-o: \"\\f1c9\";\n$fa-var-file-excel-o: \"\\f1c3\";\n$fa-var-file-image-o: \"\\f1c5\";\n$fa-var-file-movie-o: \"\\f1c8\";\n$fa-var-file-o: \"\\f016\";\n$fa-var-file-pdf-o: \"\\f1c1\";\n$fa-var-file-photo-o: \"\\f1c5\";\n$fa-var-file-picture-o: \"\\f1c5\";\n$fa-var-file-powerpoint-o: \"\\f1c4\";\n$fa-var-file-sound-o: \"\\f1c7\";\n$fa-var-file-text: \"\\f15c\";\n$fa-var-file-text-o: \"\\f0f6\";\n$fa-var-file-video-o: \"\\f1c8\";\n$fa-var-file-word-o: \"\\f1c2\";\n$fa-var-file-zip-o: \"\\f1c6\";\n$fa-var-files-o: \"\\f0c5\";\n$fa-var-film: \"\\f008\";\n$fa-var-filter: \"\\f0b0\";\n$fa-var-fire: \"\\f06d\";\n$fa-var-fire-extinguisher: \"\\f134\";\n$fa-var-flag: \"\\f024\";\n$fa-var-flag-checkered: \"\\f11e\";\n$fa-var-flag-o: \"\\f11d\";\n$fa-var-flash: \"\\f0e7\";\n$fa-var-flask: \"\\f0c3\";\n$fa-var-flickr: \"\\f16e\";\n$fa-var-floppy-o: \"\\f0c7\";\n$fa-var-folder: \"\\f07b\";\n$fa-var-folder-o: \"\\f114\";\n$fa-var-folder-open: \"\\f07c\";\n$fa-var-folder-open-o: \"\\f115\";\n$fa-var-font: \"\\f031\";\n$fa-var-forumbee: \"\\f211\";\n$fa-var-forward: \"\\f04e\";\n$fa-var-foursquare: \"\\f180\";\n$fa-var-frown-o: \"\\f119\";\n$fa-var-futbol-o: \"\\f1e3\";\n$fa-var-gamepad: \"\\f11b\";\n$fa-var-gavel: \"\\f0e3\";\n$fa-var-gbp: \"\\f154\";\n$fa-var-ge: \"\\f1d1\";\n$fa-var-gear: \"\\f013\";\n$fa-var-gears: \"\\f085\";\n$fa-var-genderless: \"\\f1db\";\n$fa-var-gift: \"\\f06b\";\n$fa-var-git: \"\\f1d3\";\n$fa-var-git-square: \"\\f1d2\";\n$fa-var-github: \"\\f09b\";\n$fa-var-github-alt: \"\\f113\";\n$fa-var-github-square: \"\\f092\";\n$fa-var-gittip: \"\\f184\";\n$fa-var-glass: \"\\f000\";\n$fa-var-globe: \"\\f0ac\";\n$fa-var-google: \"\\f1a0\";\n$fa-var-google-plus: \"\\f0d5\";\n$fa-var-google-plus-square: \"\\f0d4\";\n$fa-var-google-wallet: \"\\f1ee\";\n$fa-var-graduation-cap: \"\\f19d\";\n$fa-var-gratipay: \"\\f184\";\n$fa-var-group: \"\\f0c0\";\n$fa-var-h-square: \"\\f0fd\";\n$fa-var-hacker-news: \"\\f1d4\";\n$fa-var-hand-o-down: \"\\f0a7\";\n$fa-var-hand-o-left: \"\\f0a5\";\n$fa-var-hand-o-right: \"\\f0a4\";\n$fa-var-hand-o-up: \"\\f0a6\";\n$fa-var-hdd-o: \"\\f0a0\";\n$fa-var-header: \"\\f1dc\";\n$fa-var-headphones: \"\\f025\";\n$fa-var-heart: \"\\f004\";\n$fa-var-heart-o: \"\\f08a\";\n$fa-var-heartbeat: \"\\f21e\";\n$fa-var-history: \"\\f1da\";\n$fa-var-home: \"\\f015\";\n$fa-var-hospital-o: \"\\f0f8\";\n$fa-var-hotel: \"\\f236\";\n$fa-var-html5: \"\\f13b\";\n$fa-var-ils: \"\\f20b\";\n$fa-var-image: \"\\f03e\";\n$fa-var-inbox: \"\\f01c\";\n$fa-var-indent: \"\\f03c\";\n$fa-var-info: \"\\f129\";\n$fa-var-info-circle: \"\\f05a\";\n$fa-var-inr: \"\\f156\";\n$fa-var-instagram: \"\\f16d\";\n$fa-var-institution: \"\\f19c\";\n$fa-var-ioxhost: \"\\f208\";\n$fa-var-italic: \"\\f033\";\n$fa-var-joomla: \"\\f1aa\";\n$fa-var-jpy: \"\\f157\";\n$fa-var-jsfiddle: \"\\f1cc\";\n$fa-var-key: \"\\f084\";\n$fa-var-keyboard-o: \"\\f11c\";\n$fa-var-krw: \"\\f159\";\n$fa-var-language: \"\\f1ab\";\n$fa-var-laptop: \"\\f109\";\n$fa-var-lastfm: \"\\f202\";\n$fa-var-lastfm-square: \"\\f203\";\n$fa-var-leaf: \"\\f06c\";\n$fa-var-leanpub: \"\\f212\";\n$fa-var-legal: \"\\f0e3\";\n$fa-var-lemon-o: \"\\f094\";\n$fa-var-level-down: \"\\f149\";\n$fa-var-level-up: \"\\f148\";\n$fa-var-life-bouy: \"\\f1cd\";\n$fa-var-life-buoy: \"\\f1cd\";\n$fa-var-life-ring: \"\\f1cd\";\n$fa-var-life-saver: \"\\f1cd\";\n$fa-var-lightbulb-o: \"\\f0eb\";\n$fa-var-line-chart: \"\\f201\";\n$fa-var-link: \"\\f0c1\";\n$fa-var-linkedin: \"\\f0e1\";\n$fa-var-linkedin-square: \"\\f08c\";\n$fa-var-linux: \"\\f17c\";\n$fa-var-list: \"\\f03a\";\n$fa-var-list-alt: \"\\f022\";\n$fa-var-list-ol: \"\\f0cb\";\n$fa-var-list-ul: \"\\f0ca\";\n$fa-var-location-arrow: \"\\f124\";\n$fa-var-lock: \"\\f023\";\n$fa-var-long-arrow-down: \"\\f175\";\n$fa-var-long-arrow-left: \"\\f177\";\n$fa-var-long-arrow-right: \"\\f178\";\n$fa-var-long-arrow-up: \"\\f176\";\n$fa-var-magic: \"\\f0d0\";\n$fa-var-magnet: \"\\f076\";\n$fa-var-mail-forward: \"\\f064\";\n$fa-var-mail-reply: \"\\f112\";\n$fa-var-mail-reply-all: \"\\f122\";\n$fa-var-male: \"\\f183\";\n$fa-var-map-marker: \"\\f041\";\n$fa-var-mars: \"\\f222\";\n$fa-var-mars-double: \"\\f227\";\n$fa-var-mars-stroke: \"\\f229\";\n$fa-var-mars-stroke-h: \"\\f22b\";\n$fa-var-mars-stroke-v: \"\\f22a\";\n$fa-var-maxcdn: \"\\f136\";\n$fa-var-meanpath: \"\\f20c\";\n$fa-var-medium: \"\\f23a\";\n$fa-var-medkit: \"\\f0fa\";\n$fa-var-meh-o: \"\\f11a\";\n$fa-var-mercury: \"\\f223\";\n$fa-var-microphone: \"\\f130\";\n$fa-var-microphone-slash: \"\\f131\";\n$fa-var-minus: \"\\f068\";\n$fa-var-minus-circle: \"\\f056\";\n$fa-var-minus-square: \"\\f146\";\n$fa-var-minus-square-o: \"\\f147\";\n$fa-var-mobile: \"\\f10b\";\n$fa-var-mobile-phone: \"\\f10b\";\n$fa-var-money: \"\\f0d6\";\n$fa-var-moon-o: \"\\f186\";\n$fa-var-mortar-board: \"\\f19d\";\n$fa-var-motorcycle: \"\\f21c\";\n$fa-var-music: \"\\f001\";\n$fa-var-navicon: \"\\f0c9\";\n$fa-var-neuter: \"\\f22c\";\n$fa-var-newspaper-o: \"\\f1ea\";\n$fa-var-openid: \"\\f19b\";\n$fa-var-outdent: \"\\f03b\";\n$fa-var-pagelines: \"\\f18c\";\n$fa-var-paint-brush: \"\\f1fc\";\n$fa-var-paper-plane: \"\\f1d8\";\n$fa-var-paper-plane-o: \"\\f1d9\";\n$fa-var-paperclip: \"\\f0c6\";\n$fa-var-paragraph: \"\\f1dd\";\n$fa-var-paste: \"\\f0ea\";\n$fa-var-pause: \"\\f04c\";\n$fa-var-paw: \"\\f1b0\";\n$fa-var-paypal: \"\\f1ed\";\n$fa-var-pencil: \"\\f040\";\n$fa-var-pencil-square: \"\\f14b\";\n$fa-var-pencil-square-o: \"\\f044\";\n$fa-var-phone: \"\\f095\";\n$fa-var-phone-square: \"\\f098\";\n$fa-var-photo: \"\\f03e\";\n$fa-var-picture-o: \"\\f03e\";\n$fa-var-pie-chart: \"\\f200\";\n$fa-var-pied-piper: \"\\f1a7\";\n$fa-var-pied-piper-alt: \"\\f1a8\";\n$fa-var-pinterest: \"\\f0d2\";\n$fa-var-pinterest-p: \"\\f231\";\n$fa-var-pinterest-square: \"\\f0d3\";\n$fa-var-plane: \"\\f072\";\n$fa-var-play: \"\\f04b\";\n$fa-var-play-circle: \"\\f144\";\n$fa-var-play-circle-o: \"\\f01d\";\n$fa-var-plug: \"\\f1e6\";\n$fa-var-plus: \"\\f067\";\n$fa-var-plus-circle: \"\\f055\";\n$fa-var-plus-square: \"\\f0fe\";\n$fa-var-plus-square-o: \"\\f196\";\n$fa-var-power-off: \"\\f011\";\n$fa-var-print: \"\\f02f\";\n$fa-var-puzzle-piece: \"\\f12e\";\n$fa-var-qq: \"\\f1d6\";\n$fa-var-qrcode: \"\\f029\";\n$fa-var-question: \"\\f128\";\n$fa-var-question-circle: \"\\f059\";\n$fa-var-quote-left: \"\\f10d\";\n$fa-var-quote-right: \"\\f10e\";\n$fa-var-ra: \"\\f1d0\";\n$fa-var-random: \"\\f074\";\n$fa-var-rebel: \"\\f1d0\";\n$fa-var-recycle: \"\\f1b8\";\n$fa-var-reddit: \"\\f1a1\";\n$fa-var-reddit-square: \"\\f1a2\";\n$fa-var-refresh: \"\\f021\";\n$fa-var-remove: \"\\f00d\";\n$fa-var-renren: \"\\f18b\";\n$fa-var-reorder: \"\\f0c9\";\n$fa-var-repeat: \"\\f01e\";\n$fa-var-reply: \"\\f112\";\n$fa-var-reply-all: \"\\f122\";\n$fa-var-retweet: \"\\f079\";\n$fa-var-rmb: \"\\f157\";\n$fa-var-road: \"\\f018\";\n$fa-var-rocket: \"\\f135\";\n$fa-var-rotate-left: \"\\f0e2\";\n$fa-var-rotate-right: \"\\f01e\";\n$fa-var-rouble: \"\\f158\";\n$fa-var-rss: \"\\f09e\";\n$fa-var-rss-square: \"\\f143\";\n$fa-var-rub: \"\\f158\";\n$fa-var-ruble: \"\\f158\";\n$fa-var-rupee: \"\\f156\";\n$fa-var-save: \"\\f0c7\";\n$fa-var-scissors: \"\\f0c4\";\n$fa-var-search: \"\\f002\";\n$fa-var-search-minus: \"\\f010\";\n$fa-var-search-plus: \"\\f00e\";\n$fa-var-sellsy: \"\\f213\";\n$fa-var-send: \"\\f1d8\";\n$fa-var-send-o: \"\\f1d9\";\n$fa-var-server: \"\\f233\";\n$fa-var-share: \"\\f064\";\n$fa-var-share-alt: \"\\f1e0\";\n$fa-var-share-alt-square: \"\\f1e1\";\n$fa-var-share-square: \"\\f14d\";\n$fa-var-share-square-o: \"\\f045\";\n$fa-var-shekel: \"\\f20b\";\n$fa-var-sheqel: \"\\f20b\";\n$fa-var-shield: \"\\f132\";\n$fa-var-ship: \"\\f21a\";\n$fa-var-shirtsinbulk: \"\\f214\";\n$fa-var-shopping-cart: \"\\f07a\";\n$fa-var-sign-in: \"\\f090\";\n$fa-var-sign-out: \"\\f08b\";\n$fa-var-signal: \"\\f012\";\n$fa-var-simplybuilt: \"\\f215\";\n$fa-var-sitemap: \"\\f0e8\";\n$fa-var-skyatlas: \"\\f216\";\n$fa-var-skype: \"\\f17e\";\n$fa-var-slack: \"\\f198\";\n$fa-var-sliders: \"\\f1de\";\n$fa-var-slideshare: \"\\f1e7\";\n$fa-var-smile-o: \"\\f118\";\n$fa-var-soccer-ball-o: \"\\f1e3\";\n$fa-var-sort: \"\\f0dc\";\n$fa-var-sort-alpha-asc: \"\\f15d\";\n$fa-var-sort-alpha-desc: \"\\f15e\";\n$fa-var-sort-amount-asc: \"\\f160\";\n$fa-var-sort-amount-desc: \"\\f161\";\n$fa-var-sort-asc: \"\\f0de\";\n$fa-var-sort-desc: \"\\f0dd\";\n$fa-var-sort-down: \"\\f0dd\";\n$fa-var-sort-numeric-asc: \"\\f162\";\n$fa-var-sort-numeric-desc: \"\\f163\";\n$fa-var-sort-up: \"\\f0de\";\n$fa-var-soundcloud: \"\\f1be\";\n$fa-var-space-shuttle: \"\\f197\";\n$fa-var-spinner: \"\\f110\";\n$fa-var-spoon: \"\\f1b1\";\n$fa-var-spotify: \"\\f1bc\";\n$fa-var-square: \"\\f0c8\";\n$fa-var-square-o: \"\\f096\";\n$fa-var-stack-exchange: \"\\f18d\";\n$fa-var-stack-overflow: \"\\f16c\";\n$fa-var-star: \"\\f005\";\n$fa-var-star-half: \"\\f089\";\n$fa-var-star-half-empty: \"\\f123\";\n$fa-var-star-half-full: \"\\f123\";\n$fa-var-star-half-o: \"\\f123\";\n$fa-var-star-o: \"\\f006\";\n$fa-var-steam: \"\\f1b6\";\n$fa-var-steam-square: \"\\f1b7\";\n$fa-var-step-backward: \"\\f048\";\n$fa-var-step-forward: \"\\f051\";\n$fa-var-stethoscope: \"\\f0f1\";\n$fa-var-stop: \"\\f04d\";\n$fa-var-street-view: \"\\f21d\";\n$fa-var-strikethrough: \"\\f0cc\";\n$fa-var-stumbleupon: \"\\f1a4\";\n$fa-var-stumbleupon-circle: \"\\f1a3\";\n$fa-var-subscript: \"\\f12c\";\n$fa-var-subway: \"\\f239\";\n$fa-var-suitcase: \"\\f0f2\";\n$fa-var-sun-o: \"\\f185\";\n$fa-var-superscript: \"\\f12b\";\n$fa-var-support: \"\\f1cd\";\n$fa-var-table: \"\\f0ce\";\n$fa-var-tablet: \"\\f10a\";\n$fa-var-tachometer: \"\\f0e4\";\n$fa-var-tag: \"\\f02b\";\n$fa-var-tags: \"\\f02c\";\n$fa-var-tasks: \"\\f0ae\";\n$fa-var-taxi: \"\\f1ba\";\n$fa-var-tencent-weibo: \"\\f1d5\";\n$fa-var-terminal: \"\\f120\";\n$fa-var-text-height: \"\\f034\";\n$fa-var-text-width: \"\\f035\";\n$fa-var-th: \"\\f00a\";\n$fa-var-th-large: \"\\f009\";\n$fa-var-th-list: \"\\f00b\";\n$fa-var-thumb-tack: \"\\f08d\";\n$fa-var-thumbs-down: \"\\f165\";\n$fa-var-thumbs-o-down: \"\\f088\";\n$fa-var-thumbs-o-up: \"\\f087\";\n$fa-var-thumbs-up: \"\\f164\";\n$fa-var-ticket: \"\\f145\";\n$fa-var-times: \"\\f00d\";\n$fa-var-times-circle: \"\\f057\";\n$fa-var-times-circle-o: \"\\f05c\";\n$fa-var-tint: \"\\f043\";\n$fa-var-toggle-down: \"\\f150\";\n$fa-var-toggle-left: \"\\f191\";\n$fa-var-toggle-off: \"\\f204\";\n$fa-var-toggle-on: \"\\f205\";\n$fa-var-toggle-right: \"\\f152\";\n$fa-var-toggle-up: \"\\f151\";\n$fa-var-train: \"\\f238\";\n$fa-var-transgender: \"\\f224\";\n$fa-var-transgender-alt: \"\\f225\";\n$fa-var-trash: \"\\f1f8\";\n$fa-var-trash-o: \"\\f014\";\n$fa-var-tree: \"\\f1bb\";\n$fa-var-trello: \"\\f181\";\n$fa-var-trophy: \"\\f091\";\n$fa-var-truck: \"\\f0d1\";\n$fa-var-try: \"\\f195\";\n$fa-var-tty: \"\\f1e4\";\n$fa-var-tumblr: \"\\f173\";\n$fa-var-tumblr-square: \"\\f174\";\n$fa-var-turkish-lira: \"\\f195\";\n$fa-var-twitch: \"\\f1e8\";\n$fa-var-twitter: \"\\f099\";\n$fa-var-twitter-square: \"\\f081\";\n$fa-var-umbrella: \"\\f0e9\";\n$fa-var-underline: \"\\f0cd\";\n$fa-var-undo: \"\\f0e2\";\n$fa-var-university: \"\\f19c\";\n$fa-var-unlink: \"\\f127\";\n$fa-var-unlock: \"\\f09c\";\n$fa-var-unlock-alt: \"\\f13e\";\n$fa-var-unsorted: \"\\f0dc\";\n$fa-var-upload: \"\\f093\";\n$fa-var-usd: \"\\f155\";\n$fa-var-user: \"\\f007\";\n$fa-var-user-md: \"\\f0f0\";\n$fa-var-user-plus: \"\\f234\";\n$fa-var-user-secret: \"\\f21b\";\n$fa-var-user-times: \"\\f235\";\n$fa-var-users: \"\\f0c0\";\n$fa-var-venus: \"\\f221\";\n$fa-var-venus-double: \"\\f226\";\n$fa-var-venus-mars: \"\\f228\";\n$fa-var-viacoin: \"\\f237\";\n$fa-var-video-camera: \"\\f03d\";\n$fa-var-vimeo-square: \"\\f194\";\n$fa-var-vine: \"\\f1ca\";\n$fa-var-vk: \"\\f189\";\n$fa-var-volume-down: \"\\f027\";\n$fa-var-volume-off: \"\\f026\";\n$fa-var-volume-up: \"\\f028\";\n$fa-var-warning: \"\\f071\";\n$fa-var-wechat: \"\\f1d7\";\n$fa-var-weibo: \"\\f18a\";\n$fa-var-weixin: \"\\f1d7\";\n$fa-var-whatsapp: \"\\f232\";\n$fa-var-wheelchair: \"\\f193\";\n$fa-var-wifi: \"\\f1eb\";\n$fa-var-windows: \"\\f17a\";\n$fa-var-won: \"\\f159\";\n$fa-var-wordpress: \"\\f19a\";\n$fa-var-wrench: \"\\f0ad\";\n$fa-var-xing: \"\\f168\";\n$fa-var-xing-square: \"\\f169\";\n$fa-var-yahoo: \"\\f19e\";\n$fa-var-yelp: \"\\f1e9\";\n$fa-var-yen: \"\\f157\";\n$fa-var-youtube: \"\\f167\";\n$fa-var-youtube-play: \"\\f16a\";\n$fa-var-youtube-square: \"\\f166\";\n\n"
  },
  {
    "path": "public/admin/font-awesome/scss/font-awesome.scss",
    "content": "/*!\n *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n\n@import \"variables\";\n@import \"mixins\";\n@import \"path\";\n@import \"core\";\n@import \"larger\";\n@import \"fixed-width\";\n@import \"list\";\n@import \"bordered-pulled\";\n@import \"animated\";\n@import \"rotated-flipped\";\n@import \"stacked\";\n@import \"icons\";\n"
  },
  {
    "path": "public/admin/js/bootstrap.js",
    "content": "/*!\n * Bootstrap v3.3.0 (http://getbootstrap.com)\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\nif (typeof jQuery === 'undefined') {\n  throw new Error('Bootstrap\\'s JavaScript requires jQuery')\n}\n\n+function ($) {\n  var version = $.fn.jquery.split(' ')[0].split('.')\n  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {\n    throw new Error('Bootstrap\\'s JavaScript requires jQuery version 1.9.1 or higher')\n  }\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: transition.js v3.3.0\n * http://getbootstrap.com/javascript/#transitions\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)\n  // ============================================================\n\n  function transitionEnd() {\n    var el = document.createElement('bootstrap')\n\n    var transEndEventNames = {\n      WebkitTransition : 'webkitTransitionEnd',\n      MozTransition    : 'transitionend',\n      OTransition      : 'oTransitionEnd otransitionend',\n      transition       : 'transitionend'\n    }\n\n    for (var name in transEndEventNames) {\n      if (el.style[name] !== undefined) {\n        return { end: transEndEventNames[name] }\n      }\n    }\n\n    return false // explicit for ie8 (  ._.)\n  }\n\n  // http://blog.alexmaccaw.com/css-transitions\n  $.fn.emulateTransitionEnd = function (duration) {\n    var called = false\n    var $el = this\n    $(this).one('bsTransitionEnd', function () { called = true })\n    var callback = function () { if (!called) $($el).trigger($.support.transition.end) }\n    setTimeout(callback, duration)\n    return this\n  }\n\n  $(function () {\n    $.support.transition = transitionEnd()\n\n    if (!$.support.transition) return\n\n    $.event.special.bsTransitionEnd = {\n      bindType: $.support.transition.end,\n      delegateType: $.support.transition.end,\n      handle: function (e) {\n        if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)\n      }\n    }\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: alert.js v3.3.0\n * http://getbootstrap.com/javascript/#alerts\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // ALERT CLASS DEFINITION\n  // ======================\n\n  var dismiss = '[data-dismiss=\"alert\"]'\n  var Alert   = function (el) {\n    $(el).on('click', dismiss, this.close)\n  }\n\n  Alert.VERSION = '3.3.0'\n\n  Alert.TRANSITION_DURATION = 150\n\n  Alert.prototype.close = function (e) {\n    var $this    = $(this)\n    var selector = $this.attr('data-target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    var $parent = $(selector)\n\n    if (e) e.preventDefault()\n\n    if (!$parent.length) {\n      $parent = $this.closest('.alert')\n    }\n\n    $parent.trigger(e = $.Event('close.bs.alert'))\n\n    if (e.isDefaultPrevented()) return\n\n    $parent.removeClass('in')\n\n    function removeElement() {\n      // detach from parent, fire event then clean up data\n      $parent.detach().trigger('closed.bs.alert').remove()\n    }\n\n    $.support.transition && $parent.hasClass('fade') ?\n      $parent\n        .one('bsTransitionEnd', removeElement)\n        .emulateTransitionEnd(Alert.TRANSITION_DURATION) :\n      removeElement()\n  }\n\n\n  // ALERT PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.alert')\n\n      if (!data) $this.data('bs.alert', (data = new Alert(this)))\n      if (typeof option == 'string') data[option].call($this)\n    })\n  }\n\n  var old = $.fn.alert\n\n  $.fn.alert             = Plugin\n  $.fn.alert.Constructor = Alert\n\n\n  // ALERT NO CONFLICT\n  // =================\n\n  $.fn.alert.noConflict = function () {\n    $.fn.alert = old\n    return this\n  }\n\n\n  // ALERT DATA-API\n  // ==============\n\n  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: button.js v3.3.0\n * http://getbootstrap.com/javascript/#buttons\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // BUTTON PUBLIC CLASS DEFINITION\n  // ==============================\n\n  var Button = function (element, options) {\n    this.$element  = $(element)\n    this.options   = $.extend({}, Button.DEFAULTS, options)\n    this.isLoading = false\n  }\n\n  Button.VERSION  = '3.3.0'\n\n  Button.DEFAULTS = {\n    loadingText: 'loading...'\n  }\n\n  Button.prototype.setState = function (state) {\n    var d    = 'disabled'\n    var $el  = this.$element\n    var val  = $el.is('input') ? 'val' : 'html'\n    var data = $el.data()\n\n    state = state + 'Text'\n\n    if (data.resetText == null) $el.data('resetText', $el[val]())\n\n    // push to event loop to allow forms to submit\n    setTimeout($.proxy(function () {\n      $el[val](data[state] == null ? this.options[state] : data[state])\n\n      if (state == 'loadingText') {\n        this.isLoading = true\n        $el.addClass(d).attr(d, d)\n      } else if (this.isLoading) {\n        this.isLoading = false\n        $el.removeClass(d).removeAttr(d)\n      }\n    }, this), 0)\n  }\n\n  Button.prototype.toggle = function () {\n    var changed = true\n    var $parent = this.$element.closest('[data-toggle=\"buttons\"]')\n\n    if ($parent.length) {\n      var $input = this.$element.find('input')\n      if ($input.prop('type') == 'radio') {\n        if ($input.prop('checked') && this.$element.hasClass('active')) changed = false\n        else $parent.find('.active').removeClass('active')\n      }\n      if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')\n    } else {\n      this.$element.attr('aria-pressed', !this.$element.hasClass('active'))\n    }\n\n    if (changed) this.$element.toggleClass('active')\n  }\n\n\n  // BUTTON PLUGIN DEFINITION\n  // ========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.button')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.button', (data = new Button(this, options)))\n\n      if (option == 'toggle') data.toggle()\n      else if (option) data.setState(option)\n    })\n  }\n\n  var old = $.fn.button\n\n  $.fn.button             = Plugin\n  $.fn.button.Constructor = Button\n\n\n  // BUTTON NO CONFLICT\n  // ==================\n\n  $.fn.button.noConflict = function () {\n    $.fn.button = old\n    return this\n  }\n\n\n  // BUTTON DATA-API\n  // ===============\n\n  $(document)\n    .on('click.bs.button.data-api', '[data-toggle^=\"button\"]', function (e) {\n      var $btn = $(e.target)\n      if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')\n      Plugin.call($btn, 'toggle')\n      e.preventDefault()\n    })\n    .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^=\"button\"]', function (e) {\n      $(e.target).closest('.btn').toggleClass('focus', e.type == 'focus')\n    })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: carousel.js v3.3.0\n * http://getbootstrap.com/javascript/#carousel\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // CAROUSEL CLASS DEFINITION\n  // =========================\n\n  var Carousel = function (element, options) {\n    this.$element    = $(element)\n    this.$indicators = this.$element.find('.carousel-indicators')\n    this.options     = options\n    this.paused      =\n    this.sliding     =\n    this.interval    =\n    this.$active     =\n    this.$items      = null\n\n    this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this))\n\n    this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element\n      .on('mouseenter.bs.carousel', $.proxy(this.pause, this))\n      .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))\n  }\n\n  Carousel.VERSION  = '3.3.0'\n\n  Carousel.TRANSITION_DURATION = 600\n\n  Carousel.DEFAULTS = {\n    interval: 5000,\n    pause: 'hover',\n    wrap: true,\n    keyboard: true\n  }\n\n  Carousel.prototype.keydown = function (e) {\n    switch (e.which) {\n      case 37: this.prev(); break\n      case 39: this.next(); break\n      default: return\n    }\n\n    e.preventDefault()\n  }\n\n  Carousel.prototype.cycle = function (e) {\n    e || (this.paused = false)\n\n    this.interval && clearInterval(this.interval)\n\n    this.options.interval\n      && !this.paused\n      && (this.interval = setInterval($.proxy(this.next, this), this.options.interval))\n\n    return this\n  }\n\n  Carousel.prototype.getItemIndex = function (item) {\n    this.$items = item.parent().children('.item')\n    return this.$items.index(item || this.$active)\n  }\n\n  Carousel.prototype.getItemForDirection = function (direction, active) {\n    var delta = direction == 'prev' ? -1 : 1\n    var activeIndex = this.getItemIndex(active)\n    var itemIndex = (activeIndex + delta) % this.$items.length\n    return this.$items.eq(itemIndex)\n  }\n\n  Carousel.prototype.to = function (pos) {\n    var that        = this\n    var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active'))\n\n    if (pos > (this.$items.length - 1) || pos < 0) return\n\n    if (this.sliding)       return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, \"slid\"\n    if (activeIndex == pos) return this.pause().cycle()\n\n    return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos))\n  }\n\n  Carousel.prototype.pause = function (e) {\n    e || (this.paused = true)\n\n    if (this.$element.find('.next, .prev').length && $.support.transition) {\n      this.$element.trigger($.support.transition.end)\n      this.cycle(true)\n    }\n\n    this.interval = clearInterval(this.interval)\n\n    return this\n  }\n\n  Carousel.prototype.next = function () {\n    if (this.sliding) return\n    return this.slide('next')\n  }\n\n  Carousel.prototype.prev = function () {\n    if (this.sliding) return\n    return this.slide('prev')\n  }\n\n  Carousel.prototype.slide = function (type, next) {\n    var $active   = this.$element.find('.item.active')\n    var $next     = next || this.getItemForDirection(type, $active)\n    var isCycling = this.interval\n    var direction = type == 'next' ? 'left' : 'right'\n    var fallback  = type == 'next' ? 'first' : 'last'\n    var that      = this\n\n    if (!$next.length) {\n      if (!this.options.wrap) return\n      $next = this.$element.find('.item')[fallback]()\n    }\n\n    if ($next.hasClass('active')) return (this.sliding = false)\n\n    var relatedTarget = $next[0]\n    var slideEvent = $.Event('slide.bs.carousel', {\n      relatedTarget: relatedTarget,\n      direction: direction\n    })\n    this.$element.trigger(slideEvent)\n    if (slideEvent.isDefaultPrevented()) return\n\n    this.sliding = true\n\n    isCycling && this.pause()\n\n    if (this.$indicators.length) {\n      this.$indicators.find('.active').removeClass('active')\n      var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)])\n      $nextIndicator && $nextIndicator.addClass('active')\n    }\n\n    var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, \"slid\"\n    if ($.support.transition && this.$element.hasClass('slide')) {\n      $next.addClass(type)\n      $next[0].offsetWidth // force reflow\n      $active.addClass(direction)\n      $next.addClass(direction)\n      $active\n        .one('bsTransitionEnd', function () {\n          $next.removeClass([type, direction].join(' ')).addClass('active')\n          $active.removeClass(['active', direction].join(' '))\n          that.sliding = false\n          setTimeout(function () {\n            that.$element.trigger(slidEvent)\n          }, 0)\n        })\n        .emulateTransitionEnd(Carousel.TRANSITION_DURATION)\n    } else {\n      $active.removeClass('active')\n      $next.addClass('active')\n      this.sliding = false\n      this.$element.trigger(slidEvent)\n    }\n\n    isCycling && this.cycle()\n\n    return this\n  }\n\n\n  // CAROUSEL PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.carousel')\n      var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)\n      var action  = typeof option == 'string' ? option : options.slide\n\n      if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))\n      if (typeof option == 'number') data.to(option)\n      else if (action) data[action]()\n      else if (options.interval) data.pause().cycle()\n    })\n  }\n\n  var old = $.fn.carousel\n\n  $.fn.carousel             = Plugin\n  $.fn.carousel.Constructor = Carousel\n\n\n  // CAROUSEL NO CONFLICT\n  // ====================\n\n  $.fn.carousel.noConflict = function () {\n    $.fn.carousel = old\n    return this\n  }\n\n\n  // CAROUSEL DATA-API\n  // =================\n\n  var clickHandler = function (e) {\n    var href\n    var $this   = $(this)\n    var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '')) // strip for ie7\n    if (!$target.hasClass('carousel')) return\n    var options = $.extend({}, $target.data(), $this.data())\n    var slideIndex = $this.attr('data-slide-to')\n    if (slideIndex) options.interval = false\n\n    Plugin.call($target, options)\n\n    if (slideIndex) {\n      $target.data('bs.carousel').to(slideIndex)\n    }\n\n    e.preventDefault()\n  }\n\n  $(document)\n    .on('click.bs.carousel.data-api', '[data-slide]', clickHandler)\n    .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler)\n\n  $(window).on('load', function () {\n    $('[data-ride=\"carousel\"]').each(function () {\n      var $carousel = $(this)\n      Plugin.call($carousel, $carousel.data())\n    })\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: collapse.js v3.3.0\n * http://getbootstrap.com/javascript/#collapse\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // COLLAPSE PUBLIC CLASS DEFINITION\n  // ================================\n\n  var Collapse = function (element, options) {\n    this.$element      = $(element)\n    this.options       = $.extend({}, Collapse.DEFAULTS, options)\n    this.$trigger      = $(this.options.trigger).filter('[href=\"#' + element.id + '\"], [data-target=\"#' + element.id + '\"]')\n    this.transitioning = null\n\n    if (this.options.parent) {\n      this.$parent = this.getParent()\n    } else {\n      this.addAriaAndCollapsedClass(this.$element, this.$trigger)\n    }\n\n    if (this.options.toggle) this.toggle()\n  }\n\n  Collapse.VERSION  = '3.3.0'\n\n  Collapse.TRANSITION_DURATION = 350\n\n  Collapse.DEFAULTS = {\n    toggle: true,\n    trigger: '[data-toggle=\"collapse\"]'\n  }\n\n  Collapse.prototype.dimension = function () {\n    var hasWidth = this.$element.hasClass('width')\n    return hasWidth ? 'width' : 'height'\n  }\n\n  Collapse.prototype.show = function () {\n    if (this.transitioning || this.$element.hasClass('in')) return\n\n    var activesData\n    var actives = this.$parent && this.$parent.find('> .panel').children('.in, .collapsing')\n\n    if (actives && actives.length) {\n      activesData = actives.data('bs.collapse')\n      if (activesData && activesData.transitioning) return\n    }\n\n    var startEvent = $.Event('show.bs.collapse')\n    this.$element.trigger(startEvent)\n    if (startEvent.isDefaultPrevented()) return\n\n    if (actives && actives.length) {\n      Plugin.call(actives, 'hide')\n      activesData || actives.data('bs.collapse', null)\n    }\n\n    var dimension = this.dimension()\n\n    this.$element\n      .removeClass('collapse')\n      .addClass('collapsing')[dimension](0)\n      .attr('aria-expanded', true)\n\n    this.$trigger\n      .removeClass('collapsed')\n      .attr('aria-expanded', true)\n\n    this.transitioning = 1\n\n    var complete = function () {\n      this.$element\n        .removeClass('collapsing')\n        .addClass('collapse in')[dimension]('')\n      this.transitioning = 0\n      this.$element\n        .trigger('shown.bs.collapse')\n    }\n\n    if (!$.support.transition) return complete.call(this)\n\n    var scrollSize = $.camelCase(['scroll', dimension].join('-'))\n\n    this.$element\n      .one('bsTransitionEnd', $.proxy(complete, this))\n      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize])\n  }\n\n  Collapse.prototype.hide = function () {\n    if (this.transitioning || !this.$element.hasClass('in')) return\n\n    var startEvent = $.Event('hide.bs.collapse')\n    this.$element.trigger(startEvent)\n    if (startEvent.isDefaultPrevented()) return\n\n    var dimension = this.dimension()\n\n    this.$element[dimension](this.$element[dimension]())[0].offsetHeight\n\n    this.$element\n      .addClass('collapsing')\n      .removeClass('collapse in')\n      .attr('aria-expanded', false)\n\n    this.$trigger\n      .addClass('collapsed')\n      .attr('aria-expanded', false)\n\n    this.transitioning = 1\n\n    var complete = function () {\n      this.transitioning = 0\n      this.$element\n        .removeClass('collapsing')\n        .addClass('collapse')\n        .trigger('hidden.bs.collapse')\n    }\n\n    if (!$.support.transition) return complete.call(this)\n\n    this.$element\n      [dimension](0)\n      .one('bsTransitionEnd', $.proxy(complete, this))\n      .emulateTransitionEnd(Collapse.TRANSITION_DURATION)\n  }\n\n  Collapse.prototype.toggle = function () {\n    this[this.$element.hasClass('in') ? 'hide' : 'show']()\n  }\n\n  Collapse.prototype.getParent = function () {\n    return $(this.options.parent)\n      .find('[data-toggle=\"collapse\"][data-parent=\"' + this.options.parent + '\"]')\n      .each($.proxy(function (i, element) {\n        var $element = $(element)\n        this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element)\n      }, this))\n      .end()\n  }\n\n  Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) {\n    var isOpen = $element.hasClass('in')\n\n    $element.attr('aria-expanded', isOpen)\n    $trigger\n      .toggleClass('collapsed', !isOpen)\n      .attr('aria-expanded', isOpen)\n  }\n\n  function getTargetFromTrigger($trigger) {\n    var href\n    var target = $trigger.attr('data-target')\n      || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '') // strip for ie7\n\n    return $(target)\n  }\n\n\n  // COLLAPSE PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.collapse')\n      var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n      if (!data && options.toggle && option == 'show') options.toggle = false\n      if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.collapse\n\n  $.fn.collapse             = Plugin\n  $.fn.collapse.Constructor = Collapse\n\n\n  // COLLAPSE NO CONFLICT\n  // ====================\n\n  $.fn.collapse.noConflict = function () {\n    $.fn.collapse = old\n    return this\n  }\n\n\n  // COLLAPSE DATA-API\n  // =================\n\n  $(document).on('click.bs.collapse.data-api', '[data-toggle=\"collapse\"]', function (e) {\n    var $this   = $(this)\n\n    if (!$this.attr('data-target')) e.preventDefault()\n\n    var $target = getTargetFromTrigger($this)\n    var data    = $target.data('bs.collapse')\n    var option  = data ? 'toggle' : $.extend({}, $this.data(), { trigger: this })\n\n    Plugin.call($target, option)\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: dropdown.js v3.3.0\n * http://getbootstrap.com/javascript/#dropdowns\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // DROPDOWN CLASS DEFINITION\n  // =========================\n\n  var backdrop = '.dropdown-backdrop'\n  var toggle   = '[data-toggle=\"dropdown\"]'\n  var Dropdown = function (element) {\n    $(element).on('click.bs.dropdown', this.toggle)\n  }\n\n  Dropdown.VERSION = '3.3.0'\n\n  Dropdown.prototype.toggle = function (e) {\n    var $this = $(this)\n\n    if ($this.is('.disabled, :disabled')) return\n\n    var $parent  = getParent($this)\n    var isActive = $parent.hasClass('open')\n\n    clearMenus()\n\n    if (!isActive) {\n      if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {\n        // if mobile we use a backdrop because click events don't delegate\n        $('<div class=\"dropdown-backdrop\"/>').insertAfter($(this)).on('click', clearMenus)\n      }\n\n      var relatedTarget = { relatedTarget: this }\n      $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))\n\n      if (e.isDefaultPrevented()) return\n\n      $this\n        .trigger('focus')\n        .attr('aria-expanded', 'true')\n\n      $parent\n        .toggleClass('open')\n        .trigger('shown.bs.dropdown', relatedTarget)\n    }\n\n    return false\n  }\n\n  Dropdown.prototype.keydown = function (e) {\n    if (!/(38|40|27|32)/.test(e.which)) return\n\n    var $this = $(this)\n\n    e.preventDefault()\n    e.stopPropagation()\n\n    if ($this.is('.disabled, :disabled')) return\n\n    var $parent  = getParent($this)\n    var isActive = $parent.hasClass('open')\n\n    if ((!isActive && e.which != 27) || (isActive && e.which == 27)) {\n      if (e.which == 27) $parent.find(toggle).trigger('focus')\n      return $this.trigger('click')\n    }\n\n    var desc = ' li:not(.divider):visible a'\n    var $items = $parent.find('[role=\"menu\"]' + desc + ', [role=\"listbox\"]' + desc)\n\n    if (!$items.length) return\n\n    var index = $items.index(e.target)\n\n    if (e.which == 38 && index > 0)                 index--                        // up\n    if (e.which == 40 && index < $items.length - 1) index++                        // down\n    if (!~index)                                      index = 0\n\n    $items.eq(index).trigger('focus')\n  }\n\n  function clearMenus(e) {\n    if (e && e.which === 3) return\n    $(backdrop).remove()\n    $(toggle).each(function () {\n      var $this         = $(this)\n      var $parent       = getParent($this)\n      var relatedTarget = { relatedTarget: this }\n\n      if (!$parent.hasClass('open')) return\n\n      $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))\n\n      if (e.isDefaultPrevented()) return\n\n      $this.attr('aria-expanded', 'false')\n      $parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)\n    })\n  }\n\n  function getParent($this) {\n    var selector = $this.attr('data-target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    var $parent = selector && $(selector)\n\n    return $parent && $parent.length ? $parent : $this.parent()\n  }\n\n\n  // DROPDOWN PLUGIN DEFINITION\n  // ==========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.dropdown')\n\n      if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))\n      if (typeof option == 'string') data[option].call($this)\n    })\n  }\n\n  var old = $.fn.dropdown\n\n  $.fn.dropdown             = Plugin\n  $.fn.dropdown.Constructor = Dropdown\n\n\n  // DROPDOWN NO CONFLICT\n  // ====================\n\n  $.fn.dropdown.noConflict = function () {\n    $.fn.dropdown = old\n    return this\n  }\n\n\n  // APPLY TO STANDARD DROPDOWN ELEMENTS\n  // ===================================\n\n  $(document)\n    .on('click.bs.dropdown.data-api', clearMenus)\n    .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })\n    .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)\n    .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown)\n    .on('keydown.bs.dropdown.data-api', '[role=\"menu\"]', Dropdown.prototype.keydown)\n    .on('keydown.bs.dropdown.data-api', '[role=\"listbox\"]', Dropdown.prototype.keydown)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: modal.js v3.3.0\n * http://getbootstrap.com/javascript/#modals\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // MODAL CLASS DEFINITION\n  // ======================\n\n  var Modal = function (element, options) {\n    this.options        = options\n    this.$body          = $(document.body)\n    this.$element       = $(element)\n    this.$backdrop      =\n    this.isShown        = null\n    this.scrollbarWidth = 0\n\n    if (this.options.remote) {\n      this.$element\n        .find('.modal-content')\n        .load(this.options.remote, $.proxy(function () {\n          this.$element.trigger('loaded.bs.modal')\n        }, this))\n    }\n  }\n\n  Modal.VERSION  = '3.3.0'\n\n  Modal.TRANSITION_DURATION = 300\n  Modal.BACKDROP_TRANSITION_DURATION = 150\n\n  Modal.DEFAULTS = {\n    backdrop: true,\n    keyboard: true,\n    show: true\n  }\n\n  Modal.prototype.toggle = function (_relatedTarget) {\n    return this.isShown ? this.hide() : this.show(_relatedTarget)\n  }\n\n  Modal.prototype.show = function (_relatedTarget) {\n    var that = this\n    var e    = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })\n\n    this.$element.trigger(e)\n\n    if (this.isShown || e.isDefaultPrevented()) return\n\n    this.isShown = true\n\n    this.checkScrollbar()\n    this.$body.addClass('modal-open')\n\n    this.setScrollbar()\n    this.escape()\n\n    this.$element.on('click.dismiss.bs.modal', '[data-dismiss=\"modal\"]', $.proxy(this.hide, this))\n\n    this.backdrop(function () {\n      var transition = $.support.transition && that.$element.hasClass('fade')\n\n      if (!that.$element.parent().length) {\n        that.$element.appendTo(that.$body) // don't move modals dom position\n      }\n\n      that.$element\n        .show()\n        .scrollTop(0)\n\n      if (transition) {\n        that.$element[0].offsetWidth // force reflow\n      }\n\n      that.$element\n        .addClass('in')\n        .attr('aria-hidden', false)\n\n      that.enforceFocus()\n\n      var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })\n\n      transition ?\n        that.$element.find('.modal-dialog') // wait for modal to slide in\n          .one('bsTransitionEnd', function () {\n            that.$element.trigger('focus').trigger(e)\n          })\n          .emulateTransitionEnd(Modal.TRANSITION_DURATION) :\n        that.$element.trigger('focus').trigger(e)\n    })\n  }\n\n  Modal.prototype.hide = function (e) {\n    if (e) e.preventDefault()\n\n    e = $.Event('hide.bs.modal')\n\n    this.$element.trigger(e)\n\n    if (!this.isShown || e.isDefaultPrevented()) return\n\n    this.isShown = false\n\n    this.escape()\n\n    $(document).off('focusin.bs.modal')\n\n    this.$element\n      .removeClass('in')\n      .attr('aria-hidden', true)\n      .off('click.dismiss.bs.modal')\n\n    $.support.transition && this.$element.hasClass('fade') ?\n      this.$element\n        .one('bsTransitionEnd', $.proxy(this.hideModal, this))\n        .emulateTransitionEnd(Modal.TRANSITION_DURATION) :\n      this.hideModal()\n  }\n\n  Modal.prototype.enforceFocus = function () {\n    $(document)\n      .off('focusin.bs.modal') // guard against infinite focus loop\n      .on('focusin.bs.modal', $.proxy(function (e) {\n        if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {\n          this.$element.trigger('focus')\n        }\n      }, this))\n  }\n\n  Modal.prototype.escape = function () {\n    if (this.isShown && this.options.keyboard) {\n      this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {\n        e.which == 27 && this.hide()\n      }, this))\n    } else if (!this.isShown) {\n      this.$element.off('keydown.dismiss.bs.modal')\n    }\n  }\n\n  Modal.prototype.hideModal = function () {\n    var that = this\n    this.$element.hide()\n    this.backdrop(function () {\n      that.$body.removeClass('modal-open')\n      that.resetScrollbar()\n      that.$element.trigger('hidden.bs.modal')\n    })\n  }\n\n  Modal.prototype.removeBackdrop = function () {\n    this.$backdrop && this.$backdrop.remove()\n    this.$backdrop = null\n  }\n\n  Modal.prototype.backdrop = function (callback) {\n    var that = this\n    var animate = this.$element.hasClass('fade') ? 'fade' : ''\n\n    if (this.isShown && this.options.backdrop) {\n      var doAnimate = $.support.transition && animate\n\n      this.$backdrop = $('<div class=\"modal-backdrop ' + animate + '\" />')\n        .prependTo(this.$element)\n        .on('click.dismiss.bs.modal', $.proxy(function (e) {\n          if (e.target !== e.currentTarget) return\n          this.options.backdrop == 'static'\n            ? this.$element[0].focus.call(this.$element[0])\n            : this.hide.call(this)\n        }, this))\n\n      if (doAnimate) this.$backdrop[0].offsetWidth // force reflow\n\n      this.$backdrop.addClass('in')\n\n      if (!callback) return\n\n      doAnimate ?\n        this.$backdrop\n          .one('bsTransitionEnd', callback)\n          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :\n        callback()\n\n    } else if (!this.isShown && this.$backdrop) {\n      this.$backdrop.removeClass('in')\n\n      var callbackRemove = function () {\n        that.removeBackdrop()\n        callback && callback()\n      }\n      $.support.transition && this.$element.hasClass('fade') ?\n        this.$backdrop\n          .one('bsTransitionEnd', callbackRemove)\n          .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :\n        callbackRemove()\n\n    } else if (callback) {\n      callback()\n    }\n  }\n\n  Modal.prototype.checkScrollbar = function () {\n    this.scrollbarWidth = this.measureScrollbar()\n  }\n\n  Modal.prototype.setScrollbar = function () {\n    var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)\n    if (this.scrollbarWidth) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)\n  }\n\n  Modal.prototype.resetScrollbar = function () {\n    this.$body.css('padding-right', '')\n  }\n\n  Modal.prototype.measureScrollbar = function () { // thx walsh\n    if (document.body.clientWidth >= window.innerWidth) return 0\n    var scrollDiv = document.createElement('div')\n    scrollDiv.className = 'modal-scrollbar-measure'\n    this.$body.append(scrollDiv)\n    var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth\n    this.$body[0].removeChild(scrollDiv)\n    return scrollbarWidth\n  }\n\n\n  // MODAL PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option, _relatedTarget) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.modal')\n      var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)\n\n      if (!data) $this.data('bs.modal', (data = new Modal(this, options)))\n      if (typeof option == 'string') data[option](_relatedTarget)\n      else if (options.show) data.show(_relatedTarget)\n    })\n  }\n\n  var old = $.fn.modal\n\n  $.fn.modal             = Plugin\n  $.fn.modal.Constructor = Modal\n\n\n  // MODAL NO CONFLICT\n  // =================\n\n  $.fn.modal.noConflict = function () {\n    $.fn.modal = old\n    return this\n  }\n\n\n  // MODAL DATA-API\n  // ==============\n\n  $(document).on('click.bs.modal.data-api', '[data-toggle=\"modal\"]', function (e) {\n    var $this   = $(this)\n    var href    = $this.attr('href')\n    var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\\s]+$)/, ''))) // strip for ie7\n    var option  = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())\n\n    if ($this.is('a')) e.preventDefault()\n\n    $target.one('show.bs.modal', function (showEvent) {\n      if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown\n      $target.one('hidden.bs.modal', function () {\n        $this.is(':visible') && $this.trigger('focus')\n      })\n    })\n    Plugin.call($target, option, this)\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: tooltip.js v3.3.0\n * http://getbootstrap.com/javascript/#tooltip\n * Inspired by the original jQuery.tipsy by Jason Frame\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // TOOLTIP PUBLIC CLASS DEFINITION\n  // ===============================\n\n  var Tooltip = function (element, options) {\n    this.type       =\n    this.options    =\n    this.enabled    =\n    this.timeout    =\n    this.hoverState =\n    this.$element   = null\n\n    this.init('tooltip', element, options)\n  }\n\n  Tooltip.VERSION  = '3.3.0'\n\n  Tooltip.TRANSITION_DURATION = 150\n\n  Tooltip.DEFAULTS = {\n    animation: true,\n    placement: 'top',\n    selector: false,\n    template: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n    trigger: 'hover focus',\n    title: '',\n    delay: 0,\n    html: false,\n    container: false,\n    viewport: {\n      selector: 'body',\n      padding: 0\n    }\n  }\n\n  Tooltip.prototype.init = function (type, element, options) {\n    this.enabled   = true\n    this.type      = type\n    this.$element  = $(element)\n    this.options   = this.getOptions(options)\n    this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport)\n\n    var triggers = this.options.trigger.split(' ')\n\n    for (var i = triggers.length; i--;) {\n      var trigger = triggers[i]\n\n      if (trigger == 'click') {\n        this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))\n      } else if (trigger != 'manual') {\n        var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'\n        var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'\n\n        this.$element.on(eventIn  + '.' + this.type, this.options.selector, $.proxy(this.enter, this))\n        this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))\n      }\n    }\n\n    this.options.selector ?\n      (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :\n      this.fixTitle()\n  }\n\n  Tooltip.prototype.getDefaults = function () {\n    return Tooltip.DEFAULTS\n  }\n\n  Tooltip.prototype.getOptions = function (options) {\n    options = $.extend({}, this.getDefaults(), this.$element.data(), options)\n\n    if (options.delay && typeof options.delay == 'number') {\n      options.delay = {\n        show: options.delay,\n        hide: options.delay\n      }\n    }\n\n    return options\n  }\n\n  Tooltip.prototype.getDelegateOptions = function () {\n    var options  = {}\n    var defaults = this.getDefaults()\n\n    this._options && $.each(this._options, function (key, value) {\n      if (defaults[key] != value) options[key] = value\n    })\n\n    return options\n  }\n\n  Tooltip.prototype.enter = function (obj) {\n    var self = obj instanceof this.constructor ?\n      obj : $(obj.currentTarget).data('bs.' + this.type)\n\n    if (self && self.$tip && self.$tip.is(':visible')) {\n      self.hoverState = 'in'\n      return\n    }\n\n    if (!self) {\n      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())\n      $(obj.currentTarget).data('bs.' + this.type, self)\n    }\n\n    clearTimeout(self.timeout)\n\n    self.hoverState = 'in'\n\n    if (!self.options.delay || !self.options.delay.show) return self.show()\n\n    self.timeout = setTimeout(function () {\n      if (self.hoverState == 'in') self.show()\n    }, self.options.delay.show)\n  }\n\n  Tooltip.prototype.leave = function (obj) {\n    var self = obj instanceof this.constructor ?\n      obj : $(obj.currentTarget).data('bs.' + this.type)\n\n    if (!self) {\n      self = new this.constructor(obj.currentTarget, this.getDelegateOptions())\n      $(obj.currentTarget).data('bs.' + this.type, self)\n    }\n\n    clearTimeout(self.timeout)\n\n    self.hoverState = 'out'\n\n    if (!self.options.delay || !self.options.delay.hide) return self.hide()\n\n    self.timeout = setTimeout(function () {\n      if (self.hoverState == 'out') self.hide()\n    }, self.options.delay.hide)\n  }\n\n  Tooltip.prototype.show = function () {\n    var e = $.Event('show.bs.' + this.type)\n\n    if (this.hasContent() && this.enabled) {\n      this.$element.trigger(e)\n\n      var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0])\n      if (e.isDefaultPrevented() || !inDom) return\n      var that = this\n\n      var $tip = this.tip()\n\n      var tipId = this.getUID(this.type)\n\n      this.setContent()\n      $tip.attr('id', tipId)\n      this.$element.attr('aria-describedby', tipId)\n\n      if (this.options.animation) $tip.addClass('fade')\n\n      var placement = typeof this.options.placement == 'function' ?\n        this.options.placement.call(this, $tip[0], this.$element[0]) :\n        this.options.placement\n\n      var autoToken = /\\s?auto?\\s?/i\n      var autoPlace = autoToken.test(placement)\n      if (autoPlace) placement = placement.replace(autoToken, '') || 'top'\n\n      $tip\n        .detach()\n        .css({ top: 0, left: 0, display: 'block' })\n        .addClass(placement)\n        .data('bs.' + this.type, this)\n\n      this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)\n\n      var pos          = this.getPosition()\n      var actualWidth  = $tip[0].offsetWidth\n      var actualHeight = $tip[0].offsetHeight\n\n      if (autoPlace) {\n        var orgPlacement = placement\n        var $container   = this.options.container ? $(this.options.container) : this.$element.parent()\n        var containerDim = this.getPosition($container)\n\n        placement = placement == 'bottom' && pos.bottom + actualHeight > containerDim.bottom ? 'top'    :\n                    placement == 'top'    && pos.top    - actualHeight < containerDim.top    ? 'bottom' :\n                    placement == 'right'  && pos.right  + actualWidth  > containerDim.width  ? 'left'   :\n                    placement == 'left'   && pos.left   - actualWidth  < containerDim.left   ? 'right'  :\n                    placement\n\n        $tip\n          .removeClass(orgPlacement)\n          .addClass(placement)\n      }\n\n      var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)\n\n      this.applyPlacement(calculatedOffset, placement)\n\n      var complete = function () {\n        var prevHoverState = that.hoverState\n        that.$element.trigger('shown.bs.' + that.type)\n        that.hoverState = null\n\n        if (prevHoverState == 'out') that.leave(that)\n      }\n\n      $.support.transition && this.$tip.hasClass('fade') ?\n        $tip\n          .one('bsTransitionEnd', complete)\n          .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :\n        complete()\n    }\n  }\n\n  Tooltip.prototype.applyPlacement = function (offset, placement) {\n    var $tip   = this.tip()\n    var width  = $tip[0].offsetWidth\n    var height = $tip[0].offsetHeight\n\n    // manually read margins because getBoundingClientRect includes difference\n    var marginTop = parseInt($tip.css('margin-top'), 10)\n    var marginLeft = parseInt($tip.css('margin-left'), 10)\n\n    // we must check for NaN for ie 8/9\n    if (isNaN(marginTop))  marginTop  = 0\n    if (isNaN(marginLeft)) marginLeft = 0\n\n    offset.top  = offset.top  + marginTop\n    offset.left = offset.left + marginLeft\n\n    // $.fn.offset doesn't round pixel values\n    // so we use setOffset directly with our own function B-0\n    $.offset.setOffset($tip[0], $.extend({\n      using: function (props) {\n        $tip.css({\n          top: Math.round(props.top),\n          left: Math.round(props.left)\n        })\n      }\n    }, offset), 0)\n\n    $tip.addClass('in')\n\n    // check to see if placing tip in new offset caused the tip to resize itself\n    var actualWidth  = $tip[0].offsetWidth\n    var actualHeight = $tip[0].offsetHeight\n\n    if (placement == 'top' && actualHeight != height) {\n      offset.top = offset.top + height - actualHeight\n    }\n\n    var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight)\n\n    if (delta.left) offset.left += delta.left\n    else offset.top += delta.top\n\n    var isVertical          = /top|bottom/.test(placement)\n    var arrowDelta          = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight\n    var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight'\n\n    $tip.offset(offset)\n    this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical)\n  }\n\n  Tooltip.prototype.replaceArrow = function (delta, dimension, isHorizontal) {\n    this.arrow()\n      .css(isHorizontal ? 'left' : 'top', 50 * (1 - delta / dimension) + '%')\n      .css(isHorizontal ? 'top' : 'left', '')\n  }\n\n  Tooltip.prototype.setContent = function () {\n    var $tip  = this.tip()\n    var title = this.getTitle()\n\n    $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)\n    $tip.removeClass('fade in top bottom left right')\n  }\n\n  Tooltip.prototype.hide = function (callback) {\n    var that = this\n    var $tip = this.tip()\n    var e    = $.Event('hide.bs.' + this.type)\n\n    function complete() {\n      if (that.hoverState != 'in') $tip.detach()\n      that.$element\n        .removeAttr('aria-describedby')\n        .trigger('hidden.bs.' + that.type)\n      callback && callback()\n    }\n\n    this.$element.trigger(e)\n\n    if (e.isDefaultPrevented()) return\n\n    $tip.removeClass('in')\n\n    $.support.transition && this.$tip.hasClass('fade') ?\n      $tip\n        .one('bsTransitionEnd', complete)\n        .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) :\n      complete()\n\n    this.hoverState = null\n\n    return this\n  }\n\n  Tooltip.prototype.fixTitle = function () {\n    var $e = this.$element\n    if ($e.attr('title') || typeof ($e.attr('data-original-title')) != 'string') {\n      $e.attr('data-original-title', $e.attr('title') || '').attr('title', '')\n    }\n  }\n\n  Tooltip.prototype.hasContent = function () {\n    return this.getTitle()\n  }\n\n  Tooltip.prototype.getPosition = function ($element) {\n    $element   = $element || this.$element\n\n    var el     = $element[0]\n    var isBody = el.tagName == 'BODY'\n\n    var elRect    = el.getBoundingClientRect()\n    if (elRect.width == null) {\n      // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093\n      elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })\n    }\n    var elOffset  = isBody ? { top: 0, left: 0 } : $element.offset()\n    var scroll    = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }\n    var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null\n\n    return $.extend({}, elRect, scroll, outerDims, elOffset)\n  }\n\n  Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {\n    return placement == 'bottom' ? { top: pos.top + pos.height,   left: pos.left + pos.width / 2 - actualWidth / 2  } :\n           placement == 'top'    ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2  } :\n           placement == 'left'   ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :\n        /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width   }\n\n  }\n\n  Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) {\n    var delta = { top: 0, left: 0 }\n    if (!this.$viewport) return delta\n\n    var viewportPadding = this.options.viewport && this.options.viewport.padding || 0\n    var viewportDimensions = this.getPosition(this.$viewport)\n\n    if (/right|left/.test(placement)) {\n      var topEdgeOffset    = pos.top - viewportPadding - viewportDimensions.scroll\n      var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight\n      if (topEdgeOffset < viewportDimensions.top) { // top overflow\n        delta.top = viewportDimensions.top - topEdgeOffset\n      } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow\n        delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset\n      }\n    } else {\n      var leftEdgeOffset  = pos.left - viewportPadding\n      var rightEdgeOffset = pos.left + viewportPadding + actualWidth\n      if (leftEdgeOffset < viewportDimensions.left) { // left overflow\n        delta.left = viewportDimensions.left - leftEdgeOffset\n      } else if (rightEdgeOffset > viewportDimensions.width) { // right overflow\n        delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset\n      }\n    }\n\n    return delta\n  }\n\n  Tooltip.prototype.getTitle = function () {\n    var title\n    var $e = this.$element\n    var o  = this.options\n\n    title = $e.attr('data-original-title')\n      || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title)\n\n    return title\n  }\n\n  Tooltip.prototype.getUID = function (prefix) {\n    do prefix += ~~(Math.random() * 1000000)\n    while (document.getElementById(prefix))\n    return prefix\n  }\n\n  Tooltip.prototype.tip = function () {\n    return (this.$tip = this.$tip || $(this.options.template))\n  }\n\n  Tooltip.prototype.arrow = function () {\n    return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow'))\n  }\n\n  Tooltip.prototype.enable = function () {\n    this.enabled = true\n  }\n\n  Tooltip.prototype.disable = function () {\n    this.enabled = false\n  }\n\n  Tooltip.prototype.toggleEnabled = function () {\n    this.enabled = !this.enabled\n  }\n\n  Tooltip.prototype.toggle = function (e) {\n    var self = this\n    if (e) {\n      self = $(e.currentTarget).data('bs.' + this.type)\n      if (!self) {\n        self = new this.constructor(e.currentTarget, this.getDelegateOptions())\n        $(e.currentTarget).data('bs.' + this.type, self)\n      }\n    }\n\n    self.tip().hasClass('in') ? self.leave(self) : self.enter(self)\n  }\n\n  Tooltip.prototype.destroy = function () {\n    var that = this\n    clearTimeout(this.timeout)\n    this.hide(function () {\n      that.$element.off('.' + that.type).removeData('bs.' + that.type)\n    })\n  }\n\n\n  // TOOLTIP PLUGIN DEFINITION\n  // =========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this    = $(this)\n      var data     = $this.data('bs.tooltip')\n      var options  = typeof option == 'object' && option\n      var selector = options && options.selector\n\n      if (!data && option == 'destroy') return\n      if (selector) {\n        if (!data) $this.data('bs.tooltip', (data = {}))\n        if (!data[selector]) data[selector] = new Tooltip(this, options)\n      } else {\n        if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))\n      }\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.tooltip\n\n  $.fn.tooltip             = Plugin\n  $.fn.tooltip.Constructor = Tooltip\n\n\n  // TOOLTIP NO CONFLICT\n  // ===================\n\n  $.fn.tooltip.noConflict = function () {\n    $.fn.tooltip = old\n    return this\n  }\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: popover.js v3.3.0\n * http://getbootstrap.com/javascript/#popovers\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // POPOVER PUBLIC CLASS DEFINITION\n  // ===============================\n\n  var Popover = function (element, options) {\n    this.init('popover', element, options)\n  }\n\n  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')\n\n  Popover.VERSION  = '3.3.0'\n\n  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {\n    placement: 'right',\n    trigger: 'click',\n    content: '',\n    template: '<div class=\"popover\" role=\"tooltip\"><div class=\"arrow\"></div><h3 class=\"popover-title\"></h3><div class=\"popover-content\"></div></div>'\n  })\n\n\n  // NOTE: POPOVER EXTENDS tooltip.js\n  // ================================\n\n  Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)\n\n  Popover.prototype.constructor = Popover\n\n  Popover.prototype.getDefaults = function () {\n    return Popover.DEFAULTS\n  }\n\n  Popover.prototype.setContent = function () {\n    var $tip    = this.tip()\n    var title   = this.getTitle()\n    var content = this.getContent()\n\n    $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)\n    $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events\n      this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'\n    ](content)\n\n    $tip.removeClass('fade top bottom left right in')\n\n    // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do\n    // this manually by checking the contents.\n    if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()\n  }\n\n  Popover.prototype.hasContent = function () {\n    return this.getTitle() || this.getContent()\n  }\n\n  Popover.prototype.getContent = function () {\n    var $e = this.$element\n    var o  = this.options\n\n    return $e.attr('data-content')\n      || (typeof o.content == 'function' ?\n            o.content.call($e[0]) :\n            o.content)\n  }\n\n  Popover.prototype.arrow = function () {\n    return (this.$arrow = this.$arrow || this.tip().find('.arrow'))\n  }\n\n  Popover.prototype.tip = function () {\n    if (!this.$tip) this.$tip = $(this.options.template)\n    return this.$tip\n  }\n\n\n  // POPOVER PLUGIN DEFINITION\n  // =========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this    = $(this)\n      var data     = $this.data('bs.popover')\n      var options  = typeof option == 'object' && option\n      var selector = options && options.selector\n\n      if (!data && option == 'destroy') return\n      if (selector) {\n        if (!data) $this.data('bs.popover', (data = {}))\n        if (!data[selector]) data[selector] = new Popover(this, options)\n      } else {\n        if (!data) $this.data('bs.popover', (data = new Popover(this, options)))\n      }\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.popover\n\n  $.fn.popover             = Plugin\n  $.fn.popover.Constructor = Popover\n\n\n  // POPOVER NO CONFLICT\n  // ===================\n\n  $.fn.popover.noConflict = function () {\n    $.fn.popover = old\n    return this\n  }\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: scrollspy.js v3.3.0\n * http://getbootstrap.com/javascript/#scrollspy\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // SCROLLSPY CLASS DEFINITION\n  // ==========================\n\n  function ScrollSpy(element, options) {\n    var process  = $.proxy(this.process, this)\n\n    this.$body          = $('body')\n    this.$scrollElement = $(element).is('body') ? $(window) : $(element)\n    this.options        = $.extend({}, ScrollSpy.DEFAULTS, options)\n    this.selector       = (this.options.target || '') + ' .nav li > a'\n    this.offsets        = []\n    this.targets        = []\n    this.activeTarget   = null\n    this.scrollHeight   = 0\n\n    this.$scrollElement.on('scroll.bs.scrollspy', process)\n    this.refresh()\n    this.process()\n  }\n\n  ScrollSpy.VERSION  = '3.3.0'\n\n  ScrollSpy.DEFAULTS = {\n    offset: 10\n  }\n\n  ScrollSpy.prototype.getScrollHeight = function () {\n    return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight)\n  }\n\n  ScrollSpy.prototype.refresh = function () {\n    var offsetMethod = 'offset'\n    var offsetBase   = 0\n\n    if (!$.isWindow(this.$scrollElement[0])) {\n      offsetMethod = 'position'\n      offsetBase   = this.$scrollElement.scrollTop()\n    }\n\n    this.offsets = []\n    this.targets = []\n    this.scrollHeight = this.getScrollHeight()\n\n    var self     = this\n\n    this.$body\n      .find(this.selector)\n      .map(function () {\n        var $el   = $(this)\n        var href  = $el.data('target') || $el.attr('href')\n        var $href = /^#./.test(href) && $(href)\n\n        return ($href\n          && $href.length\n          && $href.is(':visible')\n          && [[$href[offsetMethod]().top + offsetBase, href]]) || null\n      })\n      .sort(function (a, b) { return a[0] - b[0] })\n      .each(function () {\n        self.offsets.push(this[0])\n        self.targets.push(this[1])\n      })\n  }\n\n  ScrollSpy.prototype.process = function () {\n    var scrollTop    = this.$scrollElement.scrollTop() + this.options.offset\n    var scrollHeight = this.getScrollHeight()\n    var maxScroll    = this.options.offset + scrollHeight - this.$scrollElement.height()\n    var offsets      = this.offsets\n    var targets      = this.targets\n    var activeTarget = this.activeTarget\n    var i\n\n    if (this.scrollHeight != scrollHeight) {\n      this.refresh()\n    }\n\n    if (scrollTop >= maxScroll) {\n      return activeTarget != (i = targets[targets.length - 1]) && this.activate(i)\n    }\n\n    if (activeTarget && scrollTop < offsets[0]) {\n      this.activeTarget = null\n      return this.clear()\n    }\n\n    for (i = offsets.length; i--;) {\n      activeTarget != targets[i]\n        && scrollTop >= offsets[i]\n        && (!offsets[i + 1] || scrollTop <= offsets[i + 1])\n        && this.activate(targets[i])\n    }\n  }\n\n  ScrollSpy.prototype.activate = function (target) {\n    this.activeTarget = target\n\n    this.clear()\n\n    var selector = this.selector +\n        '[data-target=\"' + target + '\"],' +\n        this.selector + '[href=\"' + target + '\"]'\n\n    var active = $(selector)\n      .parents('li')\n      .addClass('active')\n\n    if (active.parent('.dropdown-menu').length) {\n      active = active\n        .closest('li.dropdown')\n        .addClass('active')\n    }\n\n    active.trigger('activate.bs.scrollspy')\n  }\n\n  ScrollSpy.prototype.clear = function () {\n    $(this.selector)\n      .parentsUntil(this.options.target, '.active')\n      .removeClass('active')\n  }\n\n\n  // SCROLLSPY PLUGIN DEFINITION\n  // ===========================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.scrollspy')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.scrollspy\n\n  $.fn.scrollspy             = Plugin\n  $.fn.scrollspy.Constructor = ScrollSpy\n\n\n  // SCROLLSPY NO CONFLICT\n  // =====================\n\n  $.fn.scrollspy.noConflict = function () {\n    $.fn.scrollspy = old\n    return this\n  }\n\n\n  // SCROLLSPY DATA-API\n  // ==================\n\n  $(window).on('load.bs.scrollspy.data-api', function () {\n    $('[data-spy=\"scroll\"]').each(function () {\n      var $spy = $(this)\n      Plugin.call($spy, $spy.data())\n    })\n  })\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: tab.js v3.3.0\n * http://getbootstrap.com/javascript/#tabs\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // TAB CLASS DEFINITION\n  // ====================\n\n  var Tab = function (element) {\n    this.element = $(element)\n  }\n\n  Tab.VERSION = '3.3.0'\n\n  Tab.TRANSITION_DURATION = 150\n\n  Tab.prototype.show = function () {\n    var $this    = this.element\n    var $ul      = $this.closest('ul:not(.dropdown-menu)')\n    var selector = $this.data('target')\n\n    if (!selector) {\n      selector = $this.attr('href')\n      selector = selector && selector.replace(/.*(?=#[^\\s]*$)/, '') // strip for ie7\n    }\n\n    if ($this.parent('li').hasClass('active')) return\n\n    var $previous = $ul.find('.active:last a')\n    var hideEvent = $.Event('hide.bs.tab', {\n      relatedTarget: $this[0]\n    })\n    var showEvent = $.Event('show.bs.tab', {\n      relatedTarget: $previous[0]\n    })\n\n    $previous.trigger(hideEvent)\n    $this.trigger(showEvent)\n\n    if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return\n\n    var $target = $(selector)\n\n    this.activate($this.closest('li'), $ul)\n    this.activate($target, $target.parent(), function () {\n      $previous.trigger({\n        type: 'hidden.bs.tab',\n        relatedTarget: $this[0]\n      })\n      $this.trigger({\n        type: 'shown.bs.tab',\n        relatedTarget: $previous[0]\n      })\n    })\n  }\n\n  Tab.prototype.activate = function (element, container, callback) {\n    var $active    = container.find('> .active')\n    var transition = callback\n      && $.support.transition\n      && (($active.length && $active.hasClass('fade')) || !!container.find('> .fade').length)\n\n    function next() {\n      $active\n        .removeClass('active')\n        .find('> .dropdown-menu > .active')\n          .removeClass('active')\n        .end()\n        .find('[data-toggle=\"tab\"]')\n          .attr('aria-expanded', false)\n\n      element\n        .addClass('active')\n        .find('[data-toggle=\"tab\"]')\n          .attr('aria-expanded', true)\n\n      if (transition) {\n        element[0].offsetWidth // reflow for transition\n        element.addClass('in')\n      } else {\n        element.removeClass('fade')\n      }\n\n      if (element.parent('.dropdown-menu')) {\n        element\n          .closest('li.dropdown')\n            .addClass('active')\n          .end()\n          .find('[data-toggle=\"tab\"]')\n            .attr('aria-expanded', true)\n      }\n\n      callback && callback()\n    }\n\n    $active.length && transition ?\n      $active\n        .one('bsTransitionEnd', next)\n        .emulateTransitionEnd(Tab.TRANSITION_DURATION) :\n      next()\n\n    $active.removeClass('in')\n  }\n\n\n  // TAB PLUGIN DEFINITION\n  // =====================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this = $(this)\n      var data  = $this.data('bs.tab')\n\n      if (!data) $this.data('bs.tab', (data = new Tab(this)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.tab\n\n  $.fn.tab             = Plugin\n  $.fn.tab.Constructor = Tab\n\n\n  // TAB NO CONFLICT\n  // ===============\n\n  $.fn.tab.noConflict = function () {\n    $.fn.tab = old\n    return this\n  }\n\n\n  // TAB DATA-API\n  // ============\n\n  var clickHandler = function (e) {\n    e.preventDefault()\n    Plugin.call($(this), 'show')\n  }\n\n  $(document)\n    .on('click.bs.tab.data-api', '[data-toggle=\"tab\"]', clickHandler)\n    .on('click.bs.tab.data-api', '[data-toggle=\"pill\"]', clickHandler)\n\n}(jQuery);\n\n/* ========================================================================\n * Bootstrap: affix.js v3.3.0\n * http://getbootstrap.com/javascript/#affix\n * ========================================================================\n * Copyright 2011-2014 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * ======================================================================== */\n\n\n+function ($) {\n  'use strict';\n\n  // AFFIX CLASS DEFINITION\n  // ======================\n\n  var Affix = function (element, options) {\n    this.options = $.extend({}, Affix.DEFAULTS, options)\n\n    this.$target = $(this.options.target)\n      .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))\n      .on('click.bs.affix.data-api',  $.proxy(this.checkPositionWithEventLoop, this))\n\n    this.$element     = $(element)\n    this.affixed      =\n    this.unpin        =\n    this.pinnedOffset = null\n\n    this.checkPosition()\n  }\n\n  Affix.VERSION  = '3.3.0'\n\n  Affix.RESET    = 'affix affix-top affix-bottom'\n\n  Affix.DEFAULTS = {\n    offset: 0,\n    target: window\n  }\n\n  Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) {\n    var scrollTop    = this.$target.scrollTop()\n    var position     = this.$element.offset()\n    var targetHeight = this.$target.height()\n\n    if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false\n\n    if (this.affixed == 'bottom') {\n      if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom'\n      return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom'\n    }\n\n    var initializing   = this.affixed == null\n    var colliderTop    = initializing ? scrollTop : position.top\n    var colliderHeight = initializing ? targetHeight : height\n\n    if (offsetTop != null && colliderTop <= offsetTop) return 'top'\n    if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'\n\n    return false\n  }\n\n  Affix.prototype.getPinnedOffset = function () {\n    if (this.pinnedOffset) return this.pinnedOffset\n    this.$element.removeClass(Affix.RESET).addClass('affix')\n    var scrollTop = this.$target.scrollTop()\n    var position  = this.$element.offset()\n    return (this.pinnedOffset = position.top - scrollTop)\n  }\n\n  Affix.prototype.checkPositionWithEventLoop = function () {\n    setTimeout($.proxy(this.checkPosition, this), 1)\n  }\n\n  Affix.prototype.checkPosition = function () {\n    if (!this.$element.is(':visible')) return\n\n    var height       = this.$element.height()\n    var offset       = this.options.offset\n    var offsetTop    = offset.top\n    var offsetBottom = offset.bottom\n    var scrollHeight = $('body').height()\n\n    if (typeof offset != 'object')         offsetBottom = offsetTop = offset\n    if (typeof offsetTop == 'function')    offsetTop    = offset.top(this.$element)\n    if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element)\n\n    var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom)\n\n    if (this.affixed != affix) {\n      if (this.unpin != null) this.$element.css('top', '')\n\n      var affixType = 'affix' + (affix ? '-' + affix : '')\n      var e         = $.Event(affixType + '.bs.affix')\n\n      this.$element.trigger(e)\n\n      if (e.isDefaultPrevented()) return\n\n      this.affixed = affix\n      this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null\n\n      this.$element\n        .removeClass(Affix.RESET)\n        .addClass(affixType)\n        .trigger(affixType.replace('affix', 'affixed') + '.bs.affix')\n    }\n\n    if (affix == 'bottom') {\n      this.$element.offset({\n        top: scrollHeight - height - offsetBottom\n      })\n    }\n  }\n\n\n  // AFFIX PLUGIN DEFINITION\n  // =======================\n\n  function Plugin(option) {\n    return this.each(function () {\n      var $this   = $(this)\n      var data    = $this.data('bs.affix')\n      var options = typeof option == 'object' && option\n\n      if (!data) $this.data('bs.affix', (data = new Affix(this, options)))\n      if (typeof option == 'string') data[option]()\n    })\n  }\n\n  var old = $.fn.affix\n\n  $.fn.affix             = Plugin\n  $.fn.affix.Constructor = Affix\n\n\n  // AFFIX NO CONFLICT\n  // =================\n\n  $.fn.affix.noConflict = function () {\n    $.fn.affix = old\n    return this\n  }\n\n\n  // AFFIX DATA-API\n  // ==============\n\n  $(window).on('load', function () {\n    $('[data-spy=\"affix\"]').each(function () {\n      var $spy = $(this)\n      var data = $spy.data()\n\n      data.offset = data.offset || {}\n\n      if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom\n      if (data.offsetTop    != null) data.offset.top    = data.offsetTop\n\n      Plugin.call($spy, data)\n    })\n  })\n\n}(jQuery);\n"
  },
  {
    "path": "public/admin/js/demo/chartjs-demo.js",
    "content": "$(function () {\n\n    var lineData = {\n        labels: [\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\"],\n        datasets: [\n            {\n                label: \"Example dataset\",\n                fillColor: \"rgba(220,220,220,0.5)\",\n                strokeColor: \"rgba(220,220,220,1)\",\n                pointColor: \"rgba(220,220,220,1)\",\n                pointStrokeColor: \"#fff\",\n                pointHighlightFill: \"#fff\",\n                pointHighlightStroke: \"rgba(220,220,220,1)\",\n                data: [65, 59, 80, 81, 56, 55, 40]\n            },\n            {\n                label: \"Example dataset\",\n                fillColor: \"rgba(26,179,148,0.5)\",\n                strokeColor: \"rgba(26,179,148,0.7)\",\n                pointColor: \"rgba(26,179,148,1)\",\n                pointStrokeColor: \"#fff\",\n                pointHighlightFill: \"#fff\",\n                pointHighlightStroke: \"rgba(26,179,148,1)\",\n                data: [28, 48, 40, 19, 86, 27, 90]\n            }\n        ]\n    };\n\n    var lineOptions = {\n        scaleShowGridLines: true,\n        scaleGridLineColor: \"rgba(0,0,0,.05)\",\n        scaleGridLineWidth: 1,\n        bezierCurve: true,\n        bezierCurveTension: 0.4,\n        pointDot: true,\n        pointDotRadius: 4,\n        pointDotStrokeWidth: 1,\n        pointHitDetectionRadius: 20,\n        datasetStroke: true,\n        datasetStrokeWidth: 2,\n        datasetFill: true,\n        responsive: true,\n    };\n\n\n    var ctx = document.getElementById(\"lineChart\").getContext(\"2d\");\n    var myNewChart = new Chart(ctx).Line(lineData, lineOptions);\n\n    var barData = {\n        labels: [\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\"],\n        datasets: [\n            {\n                label: \"My First dataset\",\n                fillColor: \"rgba(220,220,220,0.5)\",\n                strokeColor: \"rgba(220,220,220,0.8)\",\n                highlightFill: \"rgba(220,220,220,0.75)\",\n                highlightStroke: \"rgba(220,220,220,1)\",\n                data: [65, 59, 80, 81, 56, 55, 40]\n            },\n            {\n                label: \"My Second dataset\",\n                fillColor: \"rgba(26,179,148,0.5)\",\n                strokeColor: \"rgba(26,179,148,0.8)\",\n                highlightFill: \"rgba(26,179,148,0.75)\",\n                highlightStroke: \"rgba(26,179,148,1)\",\n                data: [28, 48, 40, 19, 86, 27, 90]\n            }\n        ]\n    };\n\n    var barOptions = {\n        scaleBeginAtZero: true,\n        scaleShowGridLines: true,\n        scaleGridLineColor: \"rgba(0,0,0,.05)\",\n        scaleGridLineWidth: 1,\n        barShowStroke: true,\n        barStrokeWidth: 2,\n        barValueSpacing: 5,\n        barDatasetSpacing: 1,\n        responsive: true,\n    }\n\n\n    var ctx = document.getElementById(\"barChart\").getContext(\"2d\");\n    var myNewChart = new Chart(ctx).Bar(barData, barOptions);\n\n    var polarData = [\n        {\n            value: 300,\n            color: \"#a3e1d4\",\n            highlight: \"#1ab394\",\n            label: \"App\"\n        },\n        {\n            value: 140,\n            color: \"#dedede\",\n            highlight: \"#1ab394\",\n            label: \"Software\"\n        },\n        {\n            value: 200,\n            color: \"#b5b8cf\",\n            highlight: \"#1ab394\",\n            label: \"Laptop\"\n        }\n    ];\n\n    var polarOptions = {\n        scaleShowLabelBackdrop: true,\n        scaleBackdropColor: \"rgba(255,255,255,0.75)\",\n        scaleBeginAtZero: true,\n        scaleBackdropPaddingY: 1,\n        scaleBackdropPaddingX: 1,\n        scaleShowLine: true,\n        segmentShowStroke: true,\n        segmentStrokeColor: \"#fff\",\n        segmentStrokeWidth: 2,\n        animationSteps: 100,\n        animationEasing: \"easeOutBounce\",\n        animateRotate: true,\n        animateScale: false,\n        responsive: true,\n\n    };\n\n    var ctx = document.getElementById(\"polarChart\").getContext(\"2d\");\n    var myNewChart = new Chart(ctx).PolarArea(polarData, polarOptions);\n\n    var doughnutData = [\n        {\n            value: 300,\n            color: \"#a3e1d4\",\n            highlight: \"#1ab394\",\n            label: \"App\"\n        },\n        {\n            value: 50,\n            color: \"#dedede\",\n            highlight: \"#1ab394\",\n            label: \"Software\"\n        },\n        {\n            value: 100,\n            color: \"#b5b8cf\",\n            highlight: \"#1ab394\",\n            label: \"Laptop\"\n        }\n    ];\n\n    var doughnutOptions = {\n        segmentShowStroke: true,\n        segmentStrokeColor: \"#fff\",\n        segmentStrokeWidth: 2,\n        percentageInnerCutout: 45, // This is 0 for Pie charts\n        animationSteps: 100,\n        animationEasing: \"easeOutBounce\",\n        animateRotate: true,\n        animateScale: false,\n        responsive: true,\n    };\n\n\n    var ctx = document.getElementById(\"doughnutChart\").getContext(\"2d\");\n    var myNewChart = new Chart(ctx).Doughnut(doughnutData, doughnutOptions);\n\n\n    var radarData = {\n        labels: [\"Eating\", \"Drinking\", \"Sleeping\", \"Designing\", \"Coding\", \"Cycling\", \"Running\"],\n        datasets: [\n            {\n                label: \"My First dataset\",\n                fillColor: \"rgba(220,220,220,0.2)\",\n                strokeColor: \"rgba(220,220,220,1)\",\n                pointColor: \"rgba(220,220,220,1)\",\n                pointStrokeColor: \"#fff\",\n                pointHighlightFill: \"#fff\",\n                pointHighlightStroke: \"rgba(220,220,220,1)\",\n                data: [65, 59, 90, 81, 56, 55, 40]\n            },\n            {\n                label: \"My Second dataset\",\n                fillColor: \"rgba(26,179,148,0.2)\",\n                strokeColor: \"rgba(26,179,148,1)\",\n                pointColor: \"rgba(26,179,148,1)\",\n                pointStrokeColor: \"#fff\",\n                pointHighlightFill: \"#fff\",\n                pointHighlightStroke: \"rgba(151,187,205,1)\",\n                data: [28, 48, 40, 19, 96, 27, 100]\n            }\n        ]\n    };\n\n    var radarOptions = {\n        scaleShowLine: true,\n        angleShowLineOut: true,\n        scaleShowLabels: false,\n        scaleBeginAtZero: true,\n        angleLineColor: \"rgba(0,0,0,.1)\",\n        angleLineWidth: 1,\n        pointLabelFontFamily: \"'Arial'\",\n        pointLabelFontStyle: \"normal\",\n        pointLabelFontSize: 10,\n        pointLabelFontColor: \"#666\",\n        pointDot: true,\n        pointDotRadius: 3,\n        pointDotStrokeWidth: 1,\n        pointHitDetectionRadius: 20,\n        datasetStroke: true,\n        datasetStrokeWidth: 2,\n        datasetFill: true,\n        responsive: true,\n    }\n\n    var ctx = document.getElementById(\"radarChart\").getContext(\"2d\");\n    var myNewChart = new Chart(ctx).Radar(radarData, radarOptions);\n\n});"
  },
  {
    "path": "public/admin/js/demo/dashboard-demo.js",
    "content": "$(function() {\n\n    Morris.Area({\n        element: 'morris-area-chart',\n        data: [{\n            period: '2010 Q1',\n            iphone: 2666,\n            ipad: null,\n            itouch: 2647\n        }, {\n            period: '2010 Q2',\n            iphone: 2778,\n            ipad: 2294,\n            itouch: 2441\n        }, {\n            period: '2010 Q3',\n            iphone: 4912,\n            ipad: 1969,\n            itouch: 2501\n        }, {\n            period: '2010 Q4',\n            iphone: 3767,\n            ipad: 3597,\n            itouch: 5689\n        }, {\n            period: '2011 Q1',\n            iphone: 6810,\n            ipad: 1914,\n            itouch: 2293\n        }, {\n            period: '2011 Q2',\n            iphone: 5670,\n            ipad: 4293,\n            itouch: 1881\n        }, {\n            period: '2011 Q3',\n            iphone: 4820,\n            ipad: 3795,\n            itouch: 1588\n        }, {\n            period: '2011 Q4',\n            iphone: 15073,\n            ipad: 5967,\n            itouch: 5175\n        }, {\n            period: '2012 Q1',\n            iphone: 10687,\n            ipad: 4460,\n            itouch: 2028\n        }, {\n            period: '2012 Q2',\n            iphone: 8432,\n            ipad: 5713,\n            itouch: 1791\n        }],\n        xkey: 'period',\n        ykeys: ['iphone', 'ipad', 'itouch'],\n        labels: ['iPhone', 'iPad', 'iPod Touch'],\n        pointSize: 2,\n        hideHover: 'auto',\n        resize: true\n    });\n\n    Morris.Donut({\n        element: 'morris-donut-chart',\n        data: [{\n            label: \"Download Sales\",\n            value: 12\n        }, {\n            label: \"In-Store Sales\",\n            value: 30\n        }, {\n            label: \"Mail-Order Sales\",\n            value: 20\n        }],\n        resize: true\n    });\n\n    Morris.Bar({\n        element: 'morris-bar-chart',\n        data: [{\n            y: '2006',\n            a: 100,\n            b: 90\n        }, {\n            y: '2007',\n            a: 75,\n            b: 65\n        }, {\n            y: '2008',\n            a: 50,\n            b: 40\n        }, {\n            y: '2009',\n            a: 75,\n            b: 65\n        }, {\n            y: '2010',\n            a: 50,\n            b: 40\n        }, {\n            y: '2011',\n            a: 75,\n            b: 65\n        }, {\n            y: '2012',\n            a: 100,\n            b: 90\n        }],\n        xkey: 'y',\n        ykeys: ['a', 'b'],\n        labels: ['Series A', 'Series B'],\n        hideHover: 'auto',\n        resize: true\n    });\n\n});\n"
  },
  {
    "path": "public/admin/js/demo/flot-demo.js",
    "content": "//Flot Bar Chart\n$(function() {\n    var barOptions = {\n        series: {\n            bars: {\n                show: true,\n                barWidth: 0.6,\n                fill: true,\n                fillColor: {\n                    colors: [{\n                        opacity: 0.8\n                    }, {\n                        opacity: 0.8\n                    }]\n                }\n            }\n        },\n        xaxis: {\n            tickDecimals: 0\n        },\n        colors: [\"#1ab394\"],\n        grid: {\n            color: \"#999999\",\n            hoverable: true,\n            clickable: true,\n            tickColor: \"#D4D4D4\",\n            borderWidth:0\n        },\n        legend: {\n            show: false\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"x: %x, y: %y\"\n        }\n    };\n    var barData = {\n        label: \"bar\",\n        data: [\n            [1, 34],\n            [2, 25],\n            [3, 19],\n            [4, 34],\n            [5, 32],\n            [6, 44]\n        ]\n    };\n    $.plot($(\"#flot-bar-chart\"), [barData], barOptions);\n\n});\n\n$(function() {\n    var barOptions = {\n        series: {\n            lines: {\n                show: true,\n                lineWidth: 2,\n                fill: true,\n                fillColor: {\n                    colors: [{\n                        opacity: 0.0\n                    }, {\n                        opacity: 0.0\n                    }]\n                }\n            }\n        },\n        xaxis: {\n            tickDecimals: 0\n        },\n        colors: [\"#1ab394\"],\n        grid: {\n            color: \"#999999\",\n            hoverable: true,\n            clickable: true,\n            tickColor: \"#D4D4D4\",\n            borderWidth:0\n        },\n        legend: {\n            show: false\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"x: %x, y: %y\"\n        }\n    };\n    var barData = {\n        label: \"bar\",\n        data: [\n            [1, 34],\n            [2, 25],\n            [3, 19],\n            [4, 34],\n            [5, 32],\n            [6, 44]\n        ]\n    };\n    $.plot($(\"#flot-line-chart\"), [barData], barOptions);\n\n});\n//Flot Pie Chart\n$(function() {\n\n    var data = [{\n        label: \"Sales 1\",\n        data: 21,\n        color: \"#d3d3d3\",\n    }, {\n        label: \"Sales 2\",\n        data: 3,\n        color: \"#bababa\",\n    }, {\n        label: \"Sales 3\",\n        data: 15,\n        color: \"#79d2c0\",\n    }, {\n        label: \"Sales 4\",\n        data: 52,\n        color: \"#1ab394\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n$(function() {\n\n    var container = $(\"#flot-line-chart-moving\");\n\n    // Determine how many data points to keep based on the placeholder's initial size;\n    // this gives us a nice high-res plot while avoiding more than one point per pixel.\n\n    var maximum = container.outerWidth() / 2 || 300;\n\n    //\n\n    var data = [];\n\n    function getRandomData() {\n\n        if (data.length) {\n            data = data.slice(1);\n        }\n\n        while (data.length < maximum) {\n            var previous = data.length ? data[data.length - 1] : 50;\n            var y = previous + Math.random() * 10 - 5;\n            data.push(y < 0 ? 0 : y > 100 ? 100 : y);\n        }\n\n        // zip the generated y values with the x values\n\n        var res = [];\n        for (var i = 0; i < data.length; ++i) {\n            res.push([i, data[i]])\n        }\n\n        return res;\n    }\n\n    series = [{\n        data: getRandomData(),\n        lines: {\n            fill: true\n        }\n    }];\n\n\n    var plot = $.plot(container, series, {\n        grid: {\n\n            color: \"#999999\",\n            tickColor: \"#D4D4D4\",\n            borderWidth:0,\n            minBorderMargin: 20,\n            labelMargin: 10,\n            backgroundColor: {\n                colors: [\"#ffffff\", \"#ffffff\"]\n            },\n            margin: {\n                top: 8,\n                bottom: 20,\n                left: 20\n            },\n            markings: function(axes) {\n                var markings = [];\n                var xaxis = axes.xaxis;\n                for (var x = Math.floor(xaxis.min); x < xaxis.max; x += xaxis.tickSize * 2) {\n                    markings.push({\n                        xaxis: {\n                            from: x,\n                            to: x + xaxis.tickSize\n                        },\n                        color: \"#fff\"\n                    });\n                }\n                return markings;\n            }\n        },\n        colors: [\"#1ab394\"],\n        xaxis: {\n            tickFormatter: function() {\n                return \"\";\n            }\n        },\n        yaxis: {\n            min: 0,\n            max: 110\n        },\n        legend: {\n            show: true\n        }\n    });\n\n    // Update the random dataset at 25FPS for a smoothly-animating chart\n\n    setInterval(function updateRandom() {\n        series[0].data = getRandomData();\n        plot.setData(series);\n        plot.draw();\n    }, 40);\n\n});\n\n//Flot Multiple Axes Line Chart\n$(function() {\n    var oilprices = [ [1167692400000, 61.05], [1167778800000, 58.32], [1167865200000, 57.35], [1167951600000, 56.31], [1168210800000, 55.55], [1168297200000, 55.64], [1168383600000, 54.02], [1168470000000, 51.88], [1168556400000, 52.99], [1168815600000, 52.99], [1168902000000, 51.21], [1168988400000, 52.24], [1169074800000, 50.48], [1169161200000, 51.99], [1169420400000, 51.13], [1169506800000, 55.04], [1169593200000, 55.37], [1169679600000, 54.23], [1169766000000, 55.42], [1170025200000, 54.01], [1170111600000, 56.97], [1170198000000, 58.14], [1170284400000, 58.14], [1170370800000, 59.02], [1170630000000, 58.74], [1170716400000, 58.88], [1170802800000, 57.71], [1170889200000, 59.71], [1170975600000, 59.89], [1171234800000, 57.81], [1171321200000, 59.06], [1171407600000, 58.00], [1171494000000, 57.99], [1171580400000, 59.39], [1171839600000, 59.39], [1171926000000, 58.07], [1172012400000, 60.07], [1172098800000, 61.14], [1172444400000, 61.39], [1172530800000, 61.46], [1172617200000, 61.79], [1172703600000, 62.00], [1172790000000, 60.07], [1173135600000, 60.69], [1173222000000, 61.82], [1173308400000, 60.05], [1173654000000, 58.91], [1173740400000, 57.93], [1173826800000, 58.16], [1173913200000, 57.55], [1173999600000, 57.11], [1174258800000, 56.59], [1174345200000, 59.61], [1174518000000, 61.69], [1174604400000, 62.28], [1174860000000, 62.91], [1174946400000, 62.93], [1175032800000, 64.03], [1175119200000, 66.03], [1175205600000, 65.87], [1175464800000, 64.64], [1175637600000, 64.38], [1175724000000, 64.28], [1175810400000, 64.28], [1176069600000, 61.51], [1176156000000, 61.89], [1176242400000, 62.01], [1176328800000, 63.85], [1176415200000, 63.63], [1176674400000, 63.61], [1176760800000, 63.10], [1176847200000, 63.13], [1176933600000, 61.83], [1177020000000, 63.38], [1177279200000, 64.58], [1177452000000, 65.84], [1177538400000, 65.06], [1177624800000, 66.46], [1177884000000, 64.40], [1178056800000, 63.68], [1178143200000, 63.19], [1178229600000, 61.93], [1178488800000, 61.47], [1178575200000, 61.55], [1178748000000, 61.81], [1178834400000, 62.37], [1179093600000, 62.46], [1179180000000, 63.17], [1179266400000, 62.55], [1179352800000, 64.94], [1179698400000, 66.27], [1179784800000, 65.50], [1179871200000, 65.77], [1179957600000, 64.18], [1180044000000, 65.20], [1180389600000, 63.15], [1180476000000, 63.49], [1180562400000, 65.08], [1180908000000, 66.30], [1180994400000, 65.96], [1181167200000, 66.93], [1181253600000, 65.98], [1181599200000, 65.35], [1181685600000, 66.26], [1181858400000, 68.00], [1182117600000, 69.09], [1182204000000, 69.10], [1182290400000, 68.19], [1182376800000, 68.19], [1182463200000, 69.14], [1182722400000, 68.19], [1182808800000, 67.77], [1182895200000, 68.97], [1182981600000, 69.57], [1183068000000, 70.68], [1183327200000, 71.09], [1183413600000, 70.92], [1183586400000, 71.81], [1183672800000, 72.81], [1183932000000, 72.19], [1184018400000, 72.56], [1184191200000, 72.50], [1184277600000, 74.15], [1184623200000, 75.05], [1184796000000, 75.92], [1184882400000, 75.57], [1185141600000, 74.89], [1185228000000, 73.56], [1185314400000, 75.57], [1185400800000, 74.95], [1185487200000, 76.83], [1185832800000, 78.21], [1185919200000, 76.53], [1186005600000, 76.86], [1186092000000, 76.00], [1186437600000, 71.59], [1186696800000, 71.47], [1186956000000, 71.62], [1187042400000, 71.00], [1187301600000, 71.98], [1187560800000, 71.12], [1187647200000, 69.47], [1187733600000, 69.26], [1187820000000, 69.83], [1187906400000, 71.09], [1188165600000, 71.73], [1188338400000, 73.36], [1188511200000, 74.04], [1188856800000, 76.30], [1189116000000, 77.49], [1189461600000, 78.23], [1189548000000, 79.91], [1189634400000, 80.09], [1189720800000, 79.10], [1189980000000, 80.57], [1190066400000, 81.93], [1190239200000, 83.32], [1190325600000, 81.62], [1190584800000, 80.95], [1190671200000, 79.53], [1190757600000, 80.30], [1190844000000, 82.88], [1190930400000, 81.66], [1191189600000, 80.24], [1191276000000, 80.05], [1191362400000, 79.94], [1191448800000, 81.44], [1191535200000, 81.22], [1191794400000, 79.02], [1191880800000, 80.26], [1191967200000, 80.30], [1192053600000, 83.08], [1192140000000, 83.69], [1192399200000, 86.13], [1192485600000, 87.61], [1192572000000, 87.40], [1192658400000, 89.47], [1192744800000, 88.60], [1193004000000, 87.56], [1193090400000, 87.56], [1193176800000, 87.10], [1193263200000, 91.86], [1193612400000, 93.53], [1193698800000, 94.53], [1193871600000, 95.93], [1194217200000, 93.98], [1194303600000, 96.37], [1194476400000, 95.46], [1194562800000, 96.32], [1195081200000, 93.43], [1195167600000, 95.10], [1195426800000, 94.64], [1195513200000, 95.10], [1196031600000, 97.70], [1196118000000, 94.42], [1196204400000, 90.62], [1196290800000, 91.01], [1196377200000, 88.71], [1196636400000, 88.32], [1196809200000, 90.23], [1196982000000, 88.28], [1197241200000, 87.86], [1197327600000, 90.02], [1197414000000, 92.25], [1197586800000, 90.63], [1197846000000, 90.63], [1197932400000, 90.49], [1198018800000, 91.24], [1198105200000, 91.06], [1198191600000, 90.49], [1198710000000, 96.62], [1198796400000, 96.00], [1199142000000, 99.62], [1199314800000, 99.18], [1199401200000, 95.09], [1199660400000, 96.33], [1199833200000, 95.67], [1200351600000, 91.90], [1200438000000, 90.84], [1200524400000, 90.13], [1200610800000, 90.57], [1200956400000, 89.21], [1201042800000, 86.99], [1201129200000, 89.85], [1201474800000, 90.99], [1201561200000, 91.64], [1201647600000, 92.33], [1201734000000, 91.75], [1202079600000, 90.02], [1202166000000, 88.41], [1202252400000, 87.14], [1202338800000, 88.11], [1202425200000, 91.77], [1202770800000, 92.78], [1202857200000, 93.27], [1202943600000, 95.46], [1203030000000, 95.46], [1203289200000, 101.74], [1203462000000, 98.81], [1203894000000, 100.88], [1204066800000, 99.64], [1204153200000, 102.59], [1204239600000, 101.84], [1204498800000, 99.52], [1204585200000, 99.52], [1204671600000, 104.52], [1204758000000, 105.47], [1204844400000, 105.15], [1205103600000, 108.75], [1205276400000, 109.92], [1205362800000, 110.33], [1205449200000, 110.21], [1205708400000, 105.68], [1205967600000, 101.84], [1206313200000, 100.86], [1206399600000, 101.22], [1206486000000, 105.90], [1206572400000, 107.58], [1206658800000, 105.62], [1206914400000, 101.58], [1207000800000, 100.98], [1207173600000, 103.83], [1207260000000, 106.23], [1207605600000, 108.50], [1207778400000, 110.11], [1207864800000, 110.14], [1208210400000, 113.79], [1208296800000, 114.93], [1208383200000, 114.86], [1208728800000, 117.48], [1208815200000, 118.30], [1208988000000, 116.06], [1209074400000, 118.52], [1209333600000, 118.75], [1209420000000, 113.46], [1209592800000, 112.52], [1210024800000, 121.84], [1210111200000, 123.53], [1210197600000, 123.69], [1210543200000, 124.23], [1210629600000, 125.80], [1210716000000, 126.29], [1211148000000, 127.05], [1211320800000, 129.07], [1211493600000, 132.19], [1211839200000, 128.85], [1212357600000, 127.76], [1212703200000, 138.54], [1212962400000, 136.80], [1213135200000, 136.38], [1213308000000, 134.86], [1213653600000, 134.01], [1213740000000, 136.68], [1213912800000, 135.65], [1214172000000, 134.62], [1214258400000, 134.62], [1214344800000, 134.62], [1214431200000, 139.64], [1214517600000, 140.21], [1214776800000, 140.00], [1214863200000, 140.97], [1214949600000, 143.57], [1215036000000, 145.29], [1215381600000, 141.37], [1215468000000, 136.04], [1215727200000, 146.40], [1215986400000, 145.18], [1216072800000, 138.74], [1216159200000, 134.60], [1216245600000, 129.29], [1216332000000, 130.65], [1216677600000, 127.95], [1216850400000, 127.95], [1217282400000, 122.19], [1217455200000, 124.08], [1217541600000, 125.10], [1217800800000, 121.41], [1217887200000, 119.17], [1217973600000, 118.58], [1218060000000, 120.02], [1218405600000, 114.45], [1218492000000, 113.01], [1218578400000, 116.00], [1218751200000, 113.77], [1219010400000, 112.87], [1219096800000, 114.53], [1219269600000, 114.98], [1219356000000, 114.98], [1219701600000, 116.27], [1219788000000, 118.15], [1219874400000, 115.59], [1219960800000, 115.46], [1220306400000, 109.71], [1220392800000, 109.35], [1220565600000, 106.23], [1220824800000, 106.34] ];\n    var exchangerates = [ [1167606000000, 0.7580], [1167692400000, 0.7580], [1167778800000, 0.75470], [1167865200000, 0.75490], [1167951600000, 0.76130], [1168038000000, 0.76550], [1168124400000, 0.76930], [1168210800000, 0.76940], [1168297200000, 0.76880], [1168383600000, 0.76780], [1168470000000, 0.77080], [1168556400000, 0.77270], [1168642800000, 0.77490], [1168729200000, 0.77410], [1168815600000, 0.77410], [1168902000000, 0.77320], [1168988400000, 0.77270], [1169074800000, 0.77370], [1169161200000, 0.77240], [1169247600000, 0.77120], [1169334000000, 0.7720], [1169420400000, 0.77210], [1169506800000, 0.77170], [1169593200000, 0.77040], [1169679600000, 0.7690], [1169766000000, 0.77110], [1169852400000, 0.7740], [1169938800000, 0.77450], [1170025200000, 0.77450], [1170111600000, 0.7740], [1170198000000, 0.77160], [1170284400000, 0.77130], [1170370800000, 0.76780], [1170457200000, 0.76880], [1170543600000, 0.77180], [1170630000000, 0.77180], [1170716400000, 0.77280], [1170802800000, 0.77290], [1170889200000, 0.76980], [1170975600000, 0.76850], [1171062000000, 0.76810], [1171148400000, 0.7690], [1171234800000, 0.7690], [1171321200000, 0.76980], [1171407600000, 0.76990], [1171494000000, 0.76510], [1171580400000, 0.76130], [1171666800000, 0.76160], [1171753200000, 0.76140], [1171839600000, 0.76140], [1171926000000, 0.76070], [1172012400000, 0.76020], [1172098800000, 0.76110], [1172185200000, 0.76220], [1172271600000, 0.76150], [1172358000000, 0.75980], [1172444400000, 0.75980], [1172530800000, 0.75920], [1172617200000, 0.75730], [1172703600000, 0.75660], [1172790000000, 0.75670], [1172876400000, 0.75910], [1172962800000, 0.75820], [1173049200000, 0.75850], [1173135600000, 0.76130], [1173222000000, 0.76310], [1173308400000, 0.76150], [1173394800000, 0.760], [1173481200000, 0.76130], [1173567600000, 0.76270], [1173654000000, 0.76270], [1173740400000, 0.76080], [1173826800000, 0.75830], [1173913200000, 0.75750], [1173999600000, 0.75620], [1174086000000, 0.7520], [1174172400000, 0.75120], [1174258800000, 0.75120], [1174345200000, 0.75170], [1174431600000, 0.7520], [1174518000000, 0.75110], [1174604400000, 0.7480], [1174690800000, 0.75090], [1174777200000, 0.75310], [1174860000000, 0.75310], [1174946400000, 0.75270], [1175032800000, 0.74980], [1175119200000, 0.74930], [1175205600000, 0.75040], [1175292000000, 0.750], [1175378400000, 0.74910], [1175464800000, 0.74910], [1175551200000, 0.74850], [1175637600000, 0.74840], [1175724000000, 0.74920], [1175810400000, 0.74710], [1175896800000, 0.74590], [1175983200000, 0.74770], [1176069600000, 0.74770], [1176156000000, 0.74830], [1176242400000, 0.74580], [1176328800000, 0.74480], [1176415200000, 0.7430], [1176501600000, 0.73990], [1176588000000, 0.73950], [1176674400000, 0.73950], [1176760800000, 0.73780], [1176847200000, 0.73820], [1176933600000, 0.73620], [1177020000000, 0.73550], [1177106400000, 0.73480], [1177192800000, 0.73610], [1177279200000, 0.73610], [1177365600000, 0.73650], [1177452000000, 0.73620], [1177538400000, 0.73310], [1177624800000, 0.73390], [1177711200000, 0.73440], [1177797600000, 0.73270], [1177884000000, 0.73270], [1177970400000, 0.73360], [1178056800000, 0.73330], [1178143200000, 0.73590], [1178229600000, 0.73590], [1178316000000, 0.73720], [1178402400000, 0.7360], [1178488800000, 0.7360], [1178575200000, 0.7350], [1178661600000, 0.73650], [1178748000000, 0.73840], [1178834400000, 0.73950], [1178920800000, 0.74130], [1179007200000, 0.73970], [1179093600000, 0.73960], [1179180000000, 0.73850], [1179266400000, 0.73780], [1179352800000, 0.73660], [1179439200000, 0.740], [1179525600000, 0.74110], [1179612000000, 0.74060], [1179698400000, 0.74050], [1179784800000, 0.74140], [1179871200000, 0.74310], [1179957600000, 0.74310], [1180044000000, 0.74380], [1180130400000, 0.74430], [1180216800000, 0.74430], [1180303200000, 0.74430], [1180389600000, 0.74340], [1180476000000, 0.74290], [1180562400000, 0.74420], [1180648800000, 0.7440], [1180735200000, 0.74390], [1180821600000, 0.74370], [1180908000000, 0.74370], [1180994400000, 0.74290], [1181080800000, 0.74030], [1181167200000, 0.73990], [1181253600000, 0.74180], [1181340000000, 0.74680], [1181426400000, 0.7480], [1181512800000, 0.7480], [1181599200000, 0.7490], [1181685600000, 0.74940], [1181772000000, 0.75220], [1181858400000, 0.75150], [1181944800000, 0.75020], [1182031200000, 0.74720], [1182117600000, 0.74720], [1182204000000, 0.74620], [1182290400000, 0.74550], [1182376800000, 0.74490], [1182463200000, 0.74670], [1182549600000, 0.74580], [1182636000000, 0.74270], [1182722400000, 0.74270], [1182808800000, 0.7430], [1182895200000, 0.74290], [1182981600000, 0.7440], [1183068000000, 0.7430], [1183154400000, 0.74220], [1183240800000, 0.73880], [1183327200000, 0.73880], [1183413600000, 0.73690], [1183500000000, 0.73450], [1183586400000, 0.73450], [1183672800000, 0.73450], [1183759200000, 0.73520], [1183845600000, 0.73410], [1183932000000, 0.73410], [1184018400000, 0.7340], [1184104800000, 0.73240], [1184191200000, 0.72720], [1184277600000, 0.72640], [1184364000000, 0.72550], [1184450400000, 0.72580], [1184536800000, 0.72580], [1184623200000, 0.72560], [1184709600000, 0.72570], [1184796000000, 0.72470], [1184882400000, 0.72430], [1184968800000, 0.72440], [1185055200000, 0.72350], [1185141600000, 0.72350], [1185228000000, 0.72350], [1185314400000, 0.72350], [1185400800000, 0.72620], [1185487200000, 0.72880], [1185573600000, 0.73010], [1185660000000, 0.73370], [1185746400000, 0.73370], [1185832800000, 0.73240], [1185919200000, 0.72970], [1186005600000, 0.73170], [1186092000000, 0.73150], [1186178400000, 0.72880], [1186264800000, 0.72630], [1186351200000, 0.72630], [1186437600000, 0.72420], [1186524000000, 0.72530], [1186610400000, 0.72640], [1186696800000, 0.7270], [1186783200000, 0.73120], [1186869600000, 0.73050], [1186956000000, 0.73050], [1187042400000, 0.73180], [1187128800000, 0.73580], [1187215200000, 0.74090], [1187301600000, 0.74540], [1187388000000, 0.74370], [1187474400000, 0.74240], [1187560800000, 0.74240], [1187647200000, 0.74150], [1187733600000, 0.74190], [1187820000000, 0.74140], [1187906400000, 0.73770], [1187992800000, 0.73550], [1188079200000, 0.73150], [1188165600000, 0.73150], [1188252000000, 0.7320], [1188338400000, 0.73320], [1188424800000, 0.73460], [1188511200000, 0.73280], [1188597600000, 0.73230], [1188684000000, 0.7340], [1188770400000, 0.7340], [1188856800000, 0.73360], [1188943200000, 0.73510], [1189029600000, 0.73460], [1189116000000, 0.73210], [1189202400000, 0.72940], [1189288800000, 0.72660], [1189375200000, 0.72660], [1189461600000, 0.72540], [1189548000000, 0.72420], [1189634400000, 0.72130], [1189720800000, 0.71970], [1189807200000, 0.72090], [1189893600000, 0.7210], [1189980000000, 0.7210], [1190066400000, 0.7210], [1190152800000, 0.72090], [1190239200000, 0.71590], [1190325600000, 0.71330], [1190412000000, 0.71050], [1190498400000, 0.70990], [1190584800000, 0.70990], [1190671200000, 0.70930], [1190757600000, 0.70930], [1190844000000, 0.70760], [1190930400000, 0.7070], [1191016800000, 0.70490], [1191103200000, 0.70120], [1191189600000, 0.70110], [1191276000000, 0.70190], [1191362400000, 0.70460], [1191448800000, 0.70630], [1191535200000, 0.70890], [1191621600000, 0.70770], [1191708000000, 0.70770], [1191794400000, 0.70770], [1191880800000, 0.70910], [1191967200000, 0.71180], [1192053600000, 0.70790], [1192140000000, 0.70530], [1192226400000, 0.7050], [1192312800000, 0.70550], [1192399200000, 0.70550], [1192485600000, 0.70450], [1192572000000, 0.70510], [1192658400000, 0.70510], [1192744800000, 0.70170], [1192831200000, 0.70], [1192917600000, 0.69950], [1193004000000, 0.69940], [1193090400000, 0.70140], [1193176800000, 0.70360], [1193263200000, 0.70210], [1193349600000, 0.70020], [1193436000000, 0.69670], [1193522400000, 0.6950], [1193612400000, 0.6950], [1193698800000, 0.69390], [1193785200000, 0.6940], [1193871600000, 0.69220], [1193958000000, 0.69190], [1194044400000, 0.69140], [1194130800000, 0.68940], [1194217200000, 0.68910], [1194303600000, 0.69040], [1194390000000, 0.6890], [1194476400000, 0.68340], [1194562800000, 0.68230], [1194649200000, 0.68070], [1194735600000, 0.68150], [1194822000000, 0.68150], [1194908400000, 0.68470], [1194994800000, 0.68590], [1195081200000, 0.68220], [1195167600000, 0.68270], [1195254000000, 0.68370], [1195340400000, 0.68230], [1195426800000, 0.68220], [1195513200000, 0.68220], [1195599600000, 0.67920], [1195686000000, 0.67460], [1195772400000, 0.67350], [1195858800000, 0.67310], [1195945200000, 0.67420], [1196031600000, 0.67440], [1196118000000, 0.67390], [1196204400000, 0.67310], [1196290800000, 0.67610], [1196377200000, 0.67610], [1196463600000, 0.67850], [1196550000000, 0.68180], [1196636400000, 0.68360], [1196722800000, 0.68230], [1196809200000, 0.68050], [1196895600000, 0.67930], [1196982000000, 0.68490], [1197068400000, 0.68330], [1197154800000, 0.68250], [1197241200000, 0.68250], [1197327600000, 0.68160], [1197414000000, 0.67990], [1197500400000, 0.68130], [1197586800000, 0.68090], [1197673200000, 0.68680], [1197759600000, 0.69330], [1197846000000, 0.69330], [1197932400000, 0.69450], [1198018800000, 0.69440], [1198105200000, 0.69460], [1198191600000, 0.69640], [1198278000000, 0.69650], [1198364400000, 0.69560], [1198450800000, 0.69560], [1198537200000, 0.6950], [1198623600000, 0.69480], [1198710000000, 0.69280], [1198796400000, 0.68870], [1198882800000, 0.68240], [1198969200000, 0.67940], [1199055600000, 0.67940], [1199142000000, 0.68030], [1199228400000, 0.68550], [1199314800000, 0.68240], [1199401200000, 0.67910], [1199487600000, 0.67830], [1199574000000, 0.67850], [1199660400000, 0.67850], [1199746800000, 0.67970], [1199833200000, 0.680], [1199919600000, 0.68030], [1200006000000, 0.68050], [1200092400000, 0.6760], [1200178800000, 0.6770], [1200265200000, 0.6770], [1200351600000, 0.67360], [1200438000000, 0.67260], [1200524400000, 0.67640], [1200610800000, 0.68210], [1200697200000, 0.68310], [1200783600000, 0.68420], [1200870000000, 0.68420], [1200956400000, 0.68870], [1201042800000, 0.69030], [1201129200000, 0.68480], [1201215600000, 0.68240], [1201302000000, 0.67880], [1201388400000, 0.68140], [1201474800000, 0.68140], [1201561200000, 0.67970], [1201647600000, 0.67690], [1201734000000, 0.67650], [1201820400000, 0.67330], [1201906800000, 0.67290], [1201993200000, 0.67580], [1202079600000, 0.67580], [1202166000000, 0.6750], [1202252400000, 0.6780], [1202338800000, 0.68330], [1202425200000, 0.68560], [1202511600000, 0.69030], [1202598000000, 0.68960], [1202684400000, 0.68960], [1202770800000, 0.68820], [1202857200000, 0.68790], [1202943600000, 0.68620], [1203030000000, 0.68520], [1203116400000, 0.68230], [1203202800000, 0.68130], [1203289200000, 0.68130], [1203375600000, 0.68220], [1203462000000, 0.68020], [1203548400000, 0.68020], [1203634800000, 0.67840], [1203721200000, 0.67480], [1203807600000, 0.67470], [1203894000000, 0.67470], [1203980400000, 0.67480], [1204066800000, 0.67330], [1204153200000, 0.6650], [1204239600000, 0.66110], [1204326000000, 0.65830], [1204412400000, 0.6590], [1204498800000, 0.6590], [1204585200000, 0.65810], [1204671600000, 0.65780], [1204758000000, 0.65740], [1204844400000, 0.65320], [1204930800000, 0.65020], [1205017200000, 0.65140], [1205103600000, 0.65140], [1205190000000, 0.65070], [1205276400000, 0.6510], [1205362800000, 0.64890], [1205449200000, 0.64240], [1205535600000, 0.64060], [1205622000000, 0.63820], [1205708400000, 0.63820], [1205794800000, 0.63410], [1205881200000, 0.63440], [1205967600000, 0.63780], [1206054000000, 0.64390], [1206140400000, 0.64780], [1206226800000, 0.64810], [1206313200000, 0.64810], [1206399600000, 0.64940], [1206486000000, 0.64380], [1206572400000, 0.63770], [1206658800000, 0.63290], [1206745200000, 0.63360], [1206831600000, 0.63330], [1206914400000, 0.63330], [1207000800000, 0.6330], [1207087200000, 0.63710], [1207173600000, 0.64030], [1207260000000, 0.63960], [1207346400000, 0.63640], [1207432800000, 0.63560], [1207519200000, 0.63560], [1207605600000, 0.63680], [1207692000000, 0.63570], [1207778400000, 0.63540], [1207864800000, 0.6320], [1207951200000, 0.63320], [1208037600000, 0.63280], [1208124000000, 0.63310], [1208210400000, 0.63420], [1208296800000, 0.63210], [1208383200000, 0.63020], [1208469600000, 0.62780], [1208556000000, 0.63080], [1208642400000, 0.63240], [1208728800000, 0.63240], [1208815200000, 0.63070], [1208901600000, 0.62770], [1208988000000, 0.62690], [1209074400000, 0.63350], [1209160800000, 0.63920], [1209247200000, 0.640], [1209333600000, 0.64010], [1209420000000, 0.63960], [1209506400000, 0.64070], [1209592800000, 0.64230], [1209679200000, 0.64290], [1209765600000, 0.64720], [1209852000000, 0.64850], [1209938400000, 0.64860], [1210024800000, 0.64670], [1210111200000, 0.64440], [1210197600000, 0.64670], [1210284000000, 0.65090], [1210370400000, 0.64780], [1210456800000, 0.64610], [1210543200000, 0.64610], [1210629600000, 0.64680], [1210716000000, 0.64490], [1210802400000, 0.6470], [1210888800000, 0.64610], [1210975200000, 0.64520], [1211061600000, 0.64220], [1211148000000, 0.64220], [1211234400000, 0.64250], [1211320800000, 0.64140], [1211407200000, 0.63660], [1211493600000, 0.63460], [1211580000000, 0.6350], [1211666400000, 0.63460], [1211752800000, 0.63460], [1211839200000, 0.63430], [1211925600000, 0.63460], [1212012000000, 0.63790], [1212098400000, 0.64160], [1212184800000, 0.64420], [1212271200000, 0.64310], [1212357600000, 0.64310], [1212444000000, 0.64350], [1212530400000, 0.6440], [1212616800000, 0.64730], [1212703200000, 0.64690], [1212789600000, 0.63860], [1212876000000, 0.63560], [1212962400000, 0.6340], [1213048800000, 0.63460], [1213135200000, 0.6430], [1213221600000, 0.64520], [1213308000000, 0.64670], [1213394400000, 0.65060], [1213480800000, 0.65040], [1213567200000, 0.65030], [1213653600000, 0.64810], [1213740000000, 0.64510], [1213826400000, 0.6450], [1213912800000, 0.64410], [1213999200000, 0.64140], [1214085600000, 0.64090], [1214172000000, 0.64090], [1214258400000, 0.64280], [1214344800000, 0.64310], [1214431200000, 0.64180], [1214517600000, 0.63710], [1214604000000, 0.63490], [1214690400000, 0.63330], [1214776800000, 0.63340], [1214863200000, 0.63380], [1214949600000, 0.63420], [1215036000000, 0.6320], [1215122400000, 0.63180], [1215208800000, 0.6370], [1215295200000, 0.63680], [1215381600000, 0.63680], [1215468000000, 0.63830], [1215554400000, 0.63710], [1215640800000, 0.63710], [1215727200000, 0.63550], [1215813600000, 0.6320], [1215900000000, 0.62770], [1215986400000, 0.62760], [1216072800000, 0.62910], [1216159200000, 0.62740], [1216245600000, 0.62930], [1216332000000, 0.63110], [1216418400000, 0.6310], [1216504800000, 0.63120], [1216591200000, 0.63120], [1216677600000, 0.63040], [1216764000000, 0.62940], [1216850400000, 0.63480], [1216936800000, 0.63780], [1217023200000, 0.63680], [1217109600000, 0.63680], [1217196000000, 0.63680], [1217282400000, 0.6360], [1217368800000, 0.6370], [1217455200000, 0.64180], [1217541600000, 0.64110], [1217628000000, 0.64350], [1217714400000, 0.64270], [1217800800000, 0.64270], [1217887200000, 0.64190], [1217973600000, 0.64460], [1218060000000, 0.64680], [1218146400000, 0.64870], [1218232800000, 0.65940], [1218319200000, 0.66660], [1218405600000, 0.66660], [1218492000000, 0.66780], [1218578400000, 0.67120], [1218664800000, 0.67050], [1218751200000, 0.67180], [1218837600000, 0.67840], [1218924000000, 0.68110], [1219010400000, 0.68110], [1219096800000, 0.67940], [1219183200000, 0.68040], [1219269600000, 0.67810], [1219356000000, 0.67560], [1219442400000, 0.67350], [1219528800000, 0.67630], [1219615200000, 0.67620], [1219701600000, 0.67770], [1219788000000, 0.68150], [1219874400000, 0.68020], [1219960800000, 0.6780], [1220047200000, 0.67960], [1220133600000, 0.68170], [1220220000000, 0.68170], [1220306400000, 0.68320], [1220392800000, 0.68770], [1220479200000, 0.69120], [1220565600000, 0.69140], [1220652000000, 0.70090], [1220738400000, 0.70120], [1220824800000, 0.7010], [1220911200000, 0.70050]\n    ];\n\n    function euroFormatter(v, axis) {\n        return v.toFixed(axis.tickDecimals) + \"€\";\n    }\n\n    function doPlot(position) {\n        $.plot($(\"#flot-line-chart-multi\"), [{\n            data: oilprices,\n            label: \"Oil price ($)\"\n        }, {\n            data: exchangerates,\n            label: \"USD/EUR exchange rate\",\n            yaxis: 2\n        }], {\n            xaxes: [{\n                mode: 'time'\n            }],\n            yaxes: [{\n                min: 0\n            }, {\n                // align if we are to the right\n                alignTicksWithAxis: position == \"right\" ? 1 : null,\n                position: position,\n                tickFormatter: euroFormatter\n            }],\n            legend: {\n                position: 'sw'\n            },\n            colors: [\"#1ab394\"],\n            grid: {\n                color: \"#999999\",\n                hoverable: true,\n                clickable: true,\n                tickColor: \"#D4D4D4\",\n                borderWidth:0,\n                hoverable: true //IMPORTANT! this is needed for tooltip to work,\n\n            },\n            tooltip: true,\n            tooltipOpts: {\n                content: \"%s for %x was %y\",\n                xDateFormat: \"%y-%0m-%0d\",\n\n                onHover: function(flotItem, $tooltipEl) {\n                    // console.log(flotItem, $tooltipEl);\n                }\n            }\n\n        });\n    }\n\n    doPlot(\"right\");\n\n    $(\"button\").click(function() {\n        doPlot($(this).text());\n    });\n});\n\n\n\n\n"
  },
  {
    "path": "public/admin/js/demo/flot-demo2.js",
    "content": "//Flot Pie Chart Devices\n$(function() {\n\n    var data = [{\n        label: \"iPhone\",\n        data: 21,\n        color: \"#d3d3d3\",\n    }, {\n        label: \"Samsung\",\n        data: 3,\n        color: \"#bababa\",\n    }, {\n        label: \"Windows\",\n        data: 15,\n        color: \"#79d2c0\",\n    }, {\n        label: \"Blackberry\",\n        data: 52,\n        color: \"#1ab394\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-devices\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n//Flot Pie Chart Browsers\n$(function() {\n\n    var data = [{\n        label: \"Chrome\",\n        data: 21,\n        color: \"#d3d3d3\",\n    }, {\n        label: \"Firefox\",\n        data: 3,\n        color: \"#bababa\",\n    }, {\n        label: \"IE\",\n        data: 15,\n        color: \"#79d2c0\",\n    }, {\n        label: \"Safari\",\n        data: 52,\n        color: \"#1ab394\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-browsers\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n//Flot Pie Chart Sources\n$(function() {\n\n    var data = [{\n        label: \"Client 1\",\n        data: 21,\n        color: \"#d3d3d3\",\n    }, {\n        label: \"Client 2\",\n        data: 3,\n        color: \"#bababa\",\n    }, {\n        label: \"Client 3\",\n        data: 15,\n        color: \"#79d2c0\",\n    }, {\n        label: \"Client 4\",\n        data: 52,\n        color: \"#1ab394\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-sources\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n\n//Flot Pie Chart Carriers\n$(function() {\n\n    var data = [{\n        label: \"Carriers 1\",\n        data: 21,\n        color: \"#d3d3d3\",\n    }, {\n        label: \"Carriers 2\",\n        data: 3,\n        color: \"#bababa\",\n    }, {\n        label: \"Carriers 3\",\n        data: 15,\n        color: \"#79d2c0\",\n    }, {\n        label: \"Carriers 4\",\n        data: 52,\n        color: \"#1ab394\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-carriers\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n//Flot Pie Chart Gender\n$(function() {\n\n    var data = [{\n        label: \"Male\",\n        data: 50,\n        color: \"#d3d3d3\",\n    },{\n        label: \"Female\",\n        data: 50,\n        color: \"#1ab394\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-gender\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n//Flot Pie Chart Age groups\n$(function() {\n\n    var data = [{\n        label: \"18/24\",\n        data: 21,\n        color: \"#d3d3d3\",\n    }, {\n        label: \"24/34\",\n        data: 3,\n        color: \"#bababa\",\n    }, {\n        label: \"35/44\",\n        data: 15,\n        color: \"#79d2c0\",\n    }, {\n        label: \"45/54\",\n        data: 37,\n        color: \"#1ab394\",\n    }, {\n        label: \">55\",\n        data: 15,\n        color: \"#79d2c0\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-age-groups\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n//Flot Pie Chart Spending power\n$(function() {\n\n    var data = [{\n        label: \"High\",\n        data: 20,\n        color: \"#d3d3d3\",\n    }, {\n        label: \"Medium\",\n        data: 40,\n        color: \"#1ab394\",\n    }, {\n        label: \"Low\",\n        data: 40,\n        color: \"#79d2c0\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-spending-power\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n//Flot Pie Chart User type\n$(function() {\n\n    var data = [{\n        label: \"Business\",\n        data: 60,\n        color: \"#1ab394\",\n    }, {\n        label: \"Private\",\n        data: 40,\n        color: \"#79d2c0\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-user-type\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n//Flot Pie Chart Interest\n$(function() {\n\n    var data = [{\n        label: \"Auto\",\n        data: 21,\n        color: \"#d3d3d3\",\n    }, {\n        label: \"Sports\",\n        data: 3,\n        color: \"#bababa\",\n    }, {\n        label: \"Health\",\n        data: 15,\n        color: \"#79d2c0\",\n    }, {\n        label: \"Education\",\n        data: 37,\n        color: \"#1ab394\",\n    }, {\n        label: \"Other\",\n        data: 15,\n        color: \"#79d2c0\",\n    }];\n\n    var plotObj = $.plot($(\"#flot-pie-chart-interest\"), data, {\n        series: {\n            pie: {\n                show: true\n            }\n        },\n        grid: {\n            hoverable: true\n        },\n        tooltip: true,\n        tooltipOpts: {\n            content: \"%p.0%, %s\", // show percentages, rounding to 2 decimal places\n            shifts: {\n                x: 20,\n                y: 0\n            },\n            defaultTheme: false\n        }\n    });\n\n});\n\n\n"
  },
  {
    "path": "public/admin/js/demo/morris-demo.js",
    "content": "$(function() {\n\n    Morris.Line({\n        element: 'morris-one-line-chart',\n            data: [\n                { year: '2008', value: 5 },\n                { year: '2009', value: 10 },\n                { year: '2010', value: 8 },\n                { year: '2011', value: 22 },\n                { year: '2012', value: 8 },\n                { year: '2014', value: 10 },\n                { year: '2015', value: 5 }\n            ],\n        xkey: 'year',\n        ykeys: ['value'],\n        resize: true,\n        lineWidth:4,\n        labels: ['Value'],\n        lineColors: ['#1ab394'],\n        pointSize:5,\n    });\n\n    Morris.Area({\n        element: 'morris-area-chart',\n        data: [{ period: '2010 Q1', iphone: 2666, ipad: null, itouch: 2647 },\n            { period: '2010 Q2', iphone: 2778, ipad: 2294, itouch: 2441 },\n            { period: '2010 Q3', iphone: 4912, ipad: 1969, itouch: 2501 },\n            { period: '2010 Q4', iphone: 3767, ipad: 3597, itouch: 5689 },\n            { period: '2011 Q1', iphone: 6810, ipad: 1914, itouch: 2293 },\n            { period: '2011 Q2', iphone: 5670, ipad: 4293, itouch: 1881 },\n            { period: '2011 Q3', iphone: 4820, ipad: 3795, itouch: 1588 },\n            { period: '2011 Q4', iphone: 15073, ipad: 5967, itouch: 5175 },\n            { period: '2012 Q1', iphone: 10687, ipad: 4460, itouch: 2028 },\n            { period: '2012 Q2', iphone: 8432, ipad: 5713, itouch: 1791 } ],\n        xkey: 'period',\n        ykeys: ['iphone', 'ipad', 'itouch'],\n        labels: ['iPhone', 'iPad', 'iPod Touch'],\n        pointSize: 2,\n        hideHover: 'auto',\n        resize: true,\n        lineColors: ['#87d6c6', '#54cdb4','#1ab394'],\n        lineWidth:2,\n        pointSize:1,\n    });\n\n    Morris.Donut({\n        element: 'morris-donut-chart',\n        data: [{ label: \"Download Sales\", value: 12 },\n            { label: \"In-Store Sales\", value: 30 },\n            { label: \"Mail-Order Sales\", value: 20 } ],\n        resize: true,\n        colors: ['#87d6c6', '#54cdb4','#1ab394'],\n    });\n\n    Morris.Bar({\n        element: 'morris-bar-chart',\n        data: [{ y: '2006', a: 60, b: 50 },\n            { y: '2007', a: 75, b: 65 },\n            { y: '2008', a: 50, b: 40 },\n            { y: '2009', a: 75, b: 65 },\n            { y: '2010', a: 50, b: 40 },\n            { y: '2011', a: 75, b: 65 },\n            { y: '2012', a: 100, b: 90 } ],\n        xkey: 'y',\n        ykeys: ['a', 'b'],\n        labels: ['Series A', 'Series B'],\n        hideHover: 'auto',\n        resize: true,\n        barColors: ['#1ab394', '#cacaca'],\n    });\n\n    Morris.Line({\n        element: 'morris-line-chart',\n        data: [{ y: '2006', a: 100, b: 90 },\n            { y: '2007', a: 75, b: 65 },\n            { y: '2008', a: 50, b: 40 },\n            { y: '2009', a: 75, b: 65 },\n            { y: '2010', a: 50, b: 40 },\n            { y: '2011', a: 75, b: 65 },\n            { y: '2012', a: 100, b: 90 } ],\n        xkey: 'y',\n        ykeys: ['a', 'b'],\n        labels: ['Series A', 'Series B'],\n        hideHover: 'auto',\n        resize: true,\n        lineColors: ['#54cdb4','#1ab394'],\n    });\n\n});\n"
  },
  {
    "path": "public/admin/js/demo/peity-demo.js",
    "content": "$(function() {\n    $(\"span.pie\").peity(\"pie\", {\n        fill: ['#1ab394', '#d7d7d7', '#ffffff']\n    })\n\n    $(\".line\").peity(\"line\",{\n        fill: '#1ab394',\n        stroke:'#169c81',\n    })\n\n    $(\".bar\").peity(\"bar\", {\n        fill: [\"#1ab394\", \"#d7d7d7\"]\n    })\n\n    $(\".bar_dashboard\").peity(\"bar\", {\n        fill: [\"#1ab394\", \"#d7d7d7\"],\n        width:100\n    })\n\n    var updatingChart = $(\".updating-chart\").peity(\"line\", { fill: '#1ab394',stroke:'#169c81', width: 64 })\n\n    setInterval(function() {\n        var random = Math.round(Math.random() * 10)\n        var values = updatingChart.text().split(\",\")\n        values.shift()\n        values.push(random)\n\n        updatingChart\n            .text(values.join(\",\"))\n            .change()\n    }, 1000);\n\n});\n"
  },
  {
    "path": "public/admin/js/demo/rickshaw-demo.js",
    "content": "$(function() {\n    var graph = new Rickshaw.Graph( {\n        element: document.querySelector(\"#chart\"),\n        series: [{\n            color: '#1ab394',\n            data: [\n                { x: 0, y: 40 },\n                { x: 1, y: 49 },\n                { x: 2, y: 38 },\n                { x: 3, y: 30 },\n                { x: 4, y: 32 } ]\n        }]\n    });\n    graph.render();\n\n    var graph2 = new Rickshaw.Graph( {\n        element: document.querySelector(\"#rickshaw_multi\"),\n        renderer: 'area',\n        stroke: true,\n        series: [ {\n            data: [ { x: 0, y: 40 }, { x: 1, y: 49 }, { x: 2, y: 38 }, { x: 3, y: 20 }, { x: 4, y: 16 } ],\n            color: '#1ab394',\n            stroke: '#17997f'\n        }, {\n            data: [ { x: 0, y: 22 }, { x: 1, y: 25 }, { x: 2, y: 38 }, { x: 3, y: 44 }, { x: 4, y: 46 } ],\n            color: '#eeeeee',\n            stroke: '#d7d7d7'\n        } ]\n    } );\n    graph2.renderer.unstack = true;\n    graph2.render();\n\n    var graph3 = new Rickshaw.Graph({\n        element: document.querySelector(\"#rickshaw_line\"),\n        renderer: 'line',\n        series: [ {\n            data: [ { x: 0, y: 40 }, { x: 1, y: 49 }, { x: 2, y: 38 }, { x: 3, y: 30 }, { x: 4, y: 32 } ],\n            color: '#1ab394'\n        } ]\n    } );\n    graph3.render();\n\n    var graph4 = new Rickshaw.Graph({\n        element: document.querySelector(\"#rickshaw_multi_line\"),\n        renderer: 'line',\n        series: [{\n            data: [ { x: 0, y: 40 }, { x: 1, y: 49 }, { x: 2, y: 38 }, { x: 3, y: 30 }, { x: 4, y: 32 } ],\n            color: '#1ab394'\n        }, {\n            data: [ { x: 0, y: 20 }, { x: 1, y: 24 }, { x: 2, y: 19 }, { x: 3, y: 15 }, { x: 4, y: 16 } ],\n            color: '#d7d7d7'\n        }]\n    });\n    graph4.render();\n\n    var graph5 = new Rickshaw.Graph( {\n        element: document.querySelector(\"#rickshaw_bars\"),\n        renderer: 'bar',\n        series: [ {\n            data: [ { x: 0, y: 40 }, { x: 1, y: 49 }, { x: 2, y: 38 }, { x: 3, y: 30 }, { x: 4, y: 32 } ],\n            color: '#1ab394'\n        } ]\n    } );\n    graph5.render();\n\n    var graph6 = new Rickshaw.Graph( {\n        element: document.querySelector(\"#rickshaw_bars_stacked\"),\n        renderer: 'bar',\n        series: [\n            {\n                data: [ { x: 0, y: 40 }, { x: 1, y: 49 }, { x: 2, y: 38 }, { x: 3, y: 30 }, { x: 4, y: 32 } ],\n                color: '#1ab394'\n            }, {\n                data: [ { x: 0, y: 20 }, { x: 1, y: 24 }, { x: 2, y: 19 }, { x: 3, y: 15 }, { x: 4, y: 16 } ],\n                color: '#d7d7d7'\n            } ]\n    } );\n    graph6.render();\n\n    var graph7 = new Rickshaw.Graph( {\n        element: document.querySelector(\"#rickshaw_scatterplot\"),\n        renderer: 'scatterplot',\n        stroke: true,\n        padding: { top: 0.05, left: 0.05, right: 0.05 },\n        series: [ {\n            data: [ { x: 0, y: 15 },\n                { x: 1, y: 18 },\n                { x: 2, y: 10 },\n                { x: 3, y: 12 },\n                { x: 4, y: 15 },\n                { x: 5, y: 24 },\n                { x: 6, y: 28 },\n                { x: 7, y: 31 },\n                { x: 8, y: 22 },\n                { x: 9, y: 18 },\n                { x: 10, y: 16 }\n            ],\n            color: '#1ab394'\n        } ]\n    } );\n    graph7.render();\n\n});"
  },
  {
    "path": "public/admin/js/demo/sparkline-demo.js",
    "content": "$(function () {\n    $(\"#sparkline1\").sparkline([34, 43, 43, 35, 44, 32, 44, 52, 25], {\n        type: 'line',\n        lineColor: '#17997f',\n        fillColor: '#1ab394',\n    });\n    $(\"#sparkline2\").sparkline([5, 6, 7, 2, 0, -4, -2, 4], {\n        type: 'bar',\n        barColor: '#1ab394',\n        negBarColor: '#c6c6c6'});\n\n    $(\"#sparkline3\").sparkline([1, 1, 2], {\n        type: 'pie',\n        sliceColors: ['#1ab394', '#b3b3b3', '#e4f0fb']});\n\n    $(\"#sparkline4\").sparkline([34, 43, 43, 35, 44, 32, 15, 22, 46, 33, 86, 54, 73, 53, 12, 53, 23, 65, 23, 63, 53, 42, 34, 56, 76, 15, 54, 23, 44], {\n        type: 'line',\n        lineColor: '#17997f',\n        fillColor: '#ffffff',\n    });\n\n    $(\"#sparkline5\").sparkline([1, 1, 0, 1, -1, -1, 1, -1, 0, 0, 1, 1], {\n        type: 'tristate',\n        posBarColor: '#1ab394',\n        negBarColor: '#bfbfbf'});\n\n\n    $(\"#sparkline6\").sparkline([4, 6, 7, 7, 4, 3, 2, 1, 4, 4, 5, 6, 3, 4, 5, 8, 7, 6, 9, 3, 2, 4, 1, 5, 6, 4, 3, 7, ], {\n        type: 'discrete',\n        lineColor: '#1ab394'});\n\n    $(\"#sparkline7\").sparkline([52, 12, 44], {\n        type: 'pie',\n        height: '150px',\n        sliceColors: ['#1ab394', '#b3b3b3', '#e4f0fb']});\n\n    $(\"#sparkline8\").sparkline([5, 6, 7, 2, 0, 4, 2, 4, 5, 7, 2, 4, 12, 14, 4, 2, 14, 12, 7], {\n        type: 'bar',\n        barWidth: 8,\n        height: '150px',\n        barColor: '#1ab394',\n        negBarColor: '#c6c6c6'});\n\n    $(\"#sparkline9\").sparkline([34, 43, 43, 35, 44, 32, 15, 22, 46, 33, 86, 54, 73, 53, 12, 53, 23, 65, 23, 63, 53, 42, 34, 56, 76, 15, 54, 23, 44], {\n        type: 'line',\n        lineWidth: 1,\n        height: '150px',\n        lineColor: '#17997f',\n        fillColor: '#ffffff',\n    });\n});\n"
  },
  {
    "path": "public/admin/js/inspinia.js",
    "content": "// Custom scripts\n$(document).ready(function () {\n\n    // MetsiMenu\n    $('#side-menu').metisMenu();\n \n    // Collapse ibox function\n    $('.collapse-link:not(.binded)').addClass(\"binded\").click( function() {\n        var ibox = $(this).closest('div.ibox');\n        var button = $(this).find('i');\n        var content = ibox.find('div.ibox-content');\n        content.slideToggle(200);\n        button.toggleClass('fa-chevron-up').toggleClass('fa-chevron-down');\n        ibox.toggleClass('').toggleClass('border-bottom');\n        setTimeout(function () {\n            ibox.resize();\n            ibox.find('[id^=map-]').resize();\n        }, 50);\n    });\n \n    // Close ibox function\n    $('.close-link:not(.binded)').addClass(\"binded\").click( function() {\n        var content = $(this).closest('div.ibox');\n        content.remove();\n    });\n \n    // Small todo handler\n    $('.check-link:not(.binded)').addClass(\"binded\").click( function(){\n        var button = $(this).find('i');\n        var label = $(this).next('span');\n        button.toggleClass('fa-check-square').toggleClass('fa-square-o');\n        label.toggleClass('todo-completed');\n        return false;\n    });\n \n    // Append config box / Only for demo purpose\n    /*\n    $.get(\"skin-config.html\", function (data) {\n        $('body').append(data);\n    });\n    */\n \n    // minimalize menu\n    $('.navbar-minimalize:not(.binded)').addClass(\"binded\").click(function () {\n        $(\"body\").toggleClass(\"mini-navbar\");\n        SmoothlyMenu();\n    })\n \n    // tooltips\n    $('.tooltip-demo').tooltip({\n        selector: \"[data-toggle=tooltip]\",\n        container: \"body\"\n    })\n \n    // Move modal to body\n    // Fix Bootstrap backdrop issu with animation.css\n    $('.modal').appendTo(\"body\")\n \n    // Full height of sidebar\n    function fix_height() {\n        var heightWithoutNavbar = $(\"body > #wrapper\").height() - 61;\n        $(\".sidebard-panel\").css(\"min-height\", heightWithoutNavbar + \"px\");\n    }\n    fix_height();\n \n    // Fixed Sidebar\n    // unComment this only whe you have a fixed-sidebar\n            //    $(window).bind(\"load\", function() {\n            //        if($(\"body\").hasClass('fixed-sidebar')) {\n            //            $('.sidebar-collapse').slimScroll({\n            //                height: '100%',\n            //                railOpacity: 0.9,\n            //            });\n            //        }\n            //    })\n \n    $(window).bind(\"load resize click scroll\", function() {\n        if(!$(\"body\").hasClass('body-small')) {\n            fix_height();\n        }\n    })\n \n    $(\"[data-toggle=popover]\")\n        .popover();\n});\n\n\n// For demo purpose - animation css script\nwindow.animationHover = function(element, animation){\n    element = $(element);\n    element.hover(\n        function() {\n            element.addClass('animated ' + animation);\n        },\n        function(){\n            //wait for animation to finish before removing classes\n            window.setTimeout( function(){\n                element.removeClass('animated ' + animation);\n            }, 2000);\n        });\n};\n\n// Minimalize menu when screen is less than 768px\n$(function() {\n    $(window).bind(\"load resize\", function() {\n        if ($(this).width() < 769) {\n            $('body').addClass('body-small')\n        } else {\n            $('body').removeClass('body-small')\n        }\n    })\n})\n\nwindow.SmoothlyMenu = function() {\n    if (!$('body').hasClass('mini-navbar') || $('body').hasClass('body-small')) {\n        // Hide menu in order to smoothly turn on when maximize menu\n        $('#side-menu').hide();\n        // For smoothly turn on menu\n        setTimeout(\n            function () {\n                $('#side-menu').fadeIn(500);\n            }, 100);\n    } else if ($('body').hasClass('fixed-sidebar')){\n        $('#side-menu').hide();\n        setTimeout(\n            function () {\n                $('#side-menu').fadeIn(500);\n            }, 300);\n    } else {\n        // Remove all inline style from jquery fadeIn function to reset menu state\n        $('#side-menu').removeAttr('style');\n    }\n};\n\n// Dragable panels\nwindow.WinMove = function() {\n    var element = \"[class*=col]\";\n    var handle = \".ibox-title\";\n    var connect = \"[class*=col]\";\n    $(element).sortable(\n        {\n            handle: handle,\n            connectWith: connect,\n            tolerance: 'pointer',\n            forcePlaceholderSize: true,\n            opacity: 0.8,\n        })\n        .disableSelection();\n};\n\n\n"
  },
  {
    "path": "public/admin/js/jquery-2.1.1.js",
    "content": "/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */\n!function(a,b){\"object\"==typeof module&&\"object\"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error(\"jQuery requires a window with a document\");return b(a)}:b(a)}(\"undefined\"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m=\"2.1.1\",n=function(a,b){return new n.fn.init(a,b)},o=/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,p=/^-ms-/,q=/-([\\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:\"\",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for(\"boolean\"==typeof g&&(j=g,g=arguments[h]||{},h++),\"object\"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:\"jQuery\"+(m+Math.random()).replace(/\\D/g,\"\"),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return\"function\"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)>=0},isPlainObject:function(a){return\"object\"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,\"isPrototypeOf\")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+\"\":\"object\"==typeof a||\"function\"==typeof a?h[i.call(a)]||\"object\":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf(\"use strict\")?(b=l.createElement(\"script\"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,\"ms-\").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?\"\":(a+\"\").replace(o,\"\")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,\"string\"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return\"string\"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"),function(a,b){h[\"[object \"+b+\"]\"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return\"function\"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:\"array\"===c||0===b||\"number\"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u=\"sizzle\"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C=\"undefined\",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L=\"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",M=\"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",N=\"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",O=N.replace(\"w\",\"w#\"),P=\"\\\\[\"+M+\"*(\"+N+\")(?:\"+M+\"*([*^$|!~]?=)\"+M+\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\"+O+\"))|)\"+M+\"*\\\\]\",Q=\":(\"+N+\")(?:\\\\((('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\"+P+\")*)|.*)\\\\)|)\",R=new RegExp(\"^\"+M+\"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\"+M+\"+$\",\"g\"),S=new RegExp(\"^\"+M+\"*,\"+M+\"*\"),T=new RegExp(\"^\"+M+\"*([>+~]|\"+M+\")\"+M+\"*\"),U=new RegExp(\"=\"+M+\"*([^\\\\]'\\\"]*?)\"+M+\"*\\\\]\",\"g\"),V=new RegExp(Q),W=new RegExp(\"^\"+O+\"$\"),X={ID:new RegExp(\"^#(\"+N+\")\"),CLASS:new RegExp(\"^\\\\.(\"+N+\")\"),TAG:new RegExp(\"^(\"+N.replace(\"w\",\"w*\")+\")\"),ATTR:new RegExp(\"^\"+P),PSEUDO:new RegExp(\"^\"+Q),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+M+\"*(even|odd|(([+-]|)(\\\\d*)n|)\"+M+\"*(?:([+-]|)\"+M+\"*(\\\\d+)|))\"+M+\"*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+L+\")$\",\"i\"),needsContext:new RegExp(\"^\"+M+\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\"+M+\"*((?:-\\\\d)?\\\\d*)\"+M+\"*\\\\)|)(?=[^-]|$)\",\"i\")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\\d$/i,$=/^[^{]+\\{\\s*\\[native \\w/,_=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,ab=/[+~]/,bb=/'|\\\\/g,cb=new RegExp(\"\\\\\\\\([\\\\da-f]{1,6}\"+M+\"?|(\"+M+\")|.)\",\"ig\"),db=function(a,b,c){var d=\"0x\"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||\"string\"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&\"object\"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute(\"id\"))?s=r.replace(bb,\"\\\\$&\"):b.setAttribute(\"id\",s),s=\"[id='\"+s+\"'] \",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(\",\")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute(\"id\")}}}return i(a.replace(R,\"$1\"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+\" \")>d.cacheLength&&delete b[a.shift()],b[c+\" \"]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement(\"div\");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split(\"|\"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return\"input\"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return(\"input\"===c||\"button\"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?\"HTML\"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener(\"unload\",function(){m()},!1):g.attachEvent&&g.attachEvent(\"onunload\",function(){m()})),c.attributes=ib(function(a){return a.className=\"i\",!a.getAttribute(\"className\")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment(\"\")),!a.getElementsByTagName(\"*\").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML=\"<div class='a'></div><div class='a i'></div>\",a.firstChild.className=\"i\",2===a.getElementsByClassName(\"i\").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute(\"id\")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode(\"id\");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if(\"*\"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML=\"<select msallowclip=''><option selected=''></option></select>\",a.querySelectorAll(\"[msallowclip^='']\").length&&q.push(\"[*^$]=\"+M+\"*(?:''|\\\"\\\")\"),a.querySelectorAll(\"[selected]\").length||q.push(\"\\\\[\"+M+\"*(?:value|\"+L+\")\"),a.querySelectorAll(\":checked\").length||q.push(\":checked\")}),ib(function(a){var b=e.createElement(\"input\");b.setAttribute(\"type\",\"hidden\"),a.appendChild(b).setAttribute(\"name\",\"D\"),a.querySelectorAll(\"[name=d]\").length&&q.push(\"name\"+M+\"*[*^$|!~]?=\"),a.querySelectorAll(\":enabled\").length||q.push(\":enabled\",\":disabled\"),a.querySelectorAll(\"*,:x\"),q.push(\",.*:\")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,\"div\"),s.call(a,\"[s!='']:x\"),r.push(\"!=\",Q)}),q=q.length&&new RegExp(q.join(\"|\")),r=r.length&&new RegExp(r.join(\"|\")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,\"='$1']\"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error(\"Syntax error, unrecognized expression: \"+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c=\"\",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if(\"string\"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||\"\").replace(cb,db),\"~=\"===a[2]&&(a[3]=\" \"+a[3]+\" \"),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),\"nth\"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*(\"even\"===a[3]||\"odd\"===a[3])),a[5]=+(a[7]+a[8]||\"odd\"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||\"\":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(\")\",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return\"*\"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+\" \"];return b||(b=new RegExp(\"(^|\"+M+\")\"+a+\"(\"+M+\"|$)\"))&&y(a,function(a){return b.test(\"string\"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute(\"class\")||\"\")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?\"!=\"===b:b?(e+=\"\",\"=\"===b?e===c:\"!=\"===b?e!==c:\"^=\"===b?c&&0===e.indexOf(c):\"*=\"===b?c&&e.indexOf(c)>-1:\"$=\"===b?c&&e.slice(-c.length)===c:\"~=\"===b?(\" \"+e+\" \").indexOf(c)>-1:\"|=\"===b?e===c||e.slice(0,c.length+1)===c+\"-\":!1):!0}},CHILD:function(a,b,c,d,e){var f=\"nth\"!==a.slice(0,3),g=\"last\"!==a.slice(-4),h=\"of-type\"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?\"nextSibling\":\"previousSibling\",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p=\"only\"===a&&!o&&\"nextSibling\"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error(\"unsupported pseudo: \"+a);return e[u]?e(b):e.length>1?(c=[a,a,\"\",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,\"$1\"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||\"\")||fb.error(\"unsupported lang: \"+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute(\"xml:lang\")||b.getAttribute(\"lang\"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+\"-\");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return\"input\"===b&&!!a.checked||\"option\"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return\"input\"===b&&\"button\"===a.type||\"button\"===b},text:function(a){var b;return\"input\"===a.nodeName.toLowerCase()&&\"text\"===a.type&&(null==(b=a.getAttribute(\"type\"))||\"text\"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=lb(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=mb(b);function pb(){}pb.prototype=d.filters=d.pseudos,d.setFilters=new pb,g=fb.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+\" \"];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){(!c||(e=S.exec(h)))&&(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=T.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(R,\" \")}),h=h.slice(c.length));for(g in d.filter)!(e=X[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fb.error(a):z(a,i).slice(0)};function qb(a){for(var b=0,c=a.length,d=\"\";c>b;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&\"parentNode\"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||\"*\",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[\" \"],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:\" \"===a[i-2].type?\"*\":\"\"})).replace(R,\"$1\"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q=\"0\",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG(\"*\",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+\" \"];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n=\"function\"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&\"ID\"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split(\"\").sort(B).join(\"\")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement(\"div\"))}),ib(function(a){return a.innerHTML=\"<a href='#'></a>\",\"#\"===a.firstChild.getAttribute(\"href\")})||jb(\"type|href|height|width\",function(a,b,c){return c?void 0:a.getAttribute(b,\"type\"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML=\"<input/>\",a.firstChild.setAttribute(\"value\",\"\"),\"\"===a.firstChild.getAttribute(\"value\")})||jb(\"value\",function(a,b,c){return c||\"input\"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute(\"disabled\")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);n.find=t,n.expr=t.selectors,n.expr[\":\"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/,w=/^.[^:#\\[\\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if(\"string\"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=\":not(\"+a+\")\"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if(\"string\"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+\" \"+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,\"string\"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if(\"string\"==typeof a){if(c=\"<\"===a[0]&&\">\"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?\"undefined\"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||\"string\"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?\"string\"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,\"parentNode\")},parentsUntil:function(a,b,c){return n.dir(a,\"parentNode\",c)},next:function(a){return D(a,\"nextSibling\")},prev:function(a){return D(a,\"previousSibling\")},nextAll:function(a){return n.dir(a,\"nextSibling\")},prevAll:function(a){return n.dir(a,\"previousSibling\")},nextUntil:function(a,b,c){return n.dir(a,\"nextSibling\",c)},prevUntil:function(a,b,c){return n.dir(a,\"previousSibling\",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return\"Until\"!==a.slice(-5)&&(d=c),d&&\"string\"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a=\"string\"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);\"function\"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&\"string\"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[[\"resolve\",\"done\",n.Callbacks(\"once memory\"),\"resolved\"],[\"reject\",\"fail\",n.Callbacks(\"once memory\"),\"rejected\"],[\"notify\",\"progress\",n.Callbacks(\"memory\")]],c=\"pending\",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+\"With\"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+\"With\"](this===e?d:this,arguments),this},e[f[0]+\"With\"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler(\"ready\"),n(l).off(\"ready\"))))}});function I(){l.removeEventListener(\"DOMContentLoaded\",I,!1),a.removeEventListener(\"load\",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),\"complete\"===l.readyState?setTimeout(n.ready):(l.addEventListener(\"DOMContentLoaded\",I,!1),a.addEventListener(\"load\",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if(\"object\"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if(\"string\"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&\"string\"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d=\"data-\"+b.replace(O,\"-$1\").toLowerCase(),c=a.getAttribute(d),\"string\"==typeof c){try{c=\"true\"===c?!0:\"false\"===c?!1:\"null\"===c?null:+c+\"\"===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)\n},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,\"hasDataAttrs\"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf(\"data-\")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,\"hasDataAttrs\",!0)}return e}return\"object\"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf(\"-\")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||\"fx\")+\"queue\",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||\"fx\";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};\"inprogress\"===e&&(e=c.shift(),d--),e&&(\"fx\"===b&&c.unshift(\"inprogress\"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+\"queueHooks\";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks(\"once memory\").add(function(){L.remove(a,[b+\"queue\",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return\"string\"!=typeof a&&(b=a,a=\"fx\",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),\"fx\"===a&&\"inprogress\"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||\"fx\",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};\"string\"!=typeof a&&(b=a,a=void 0),a=a||\"fx\";while(g--)c=L.get(f[g],a+\"queueHooks\"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var Q=/[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source,R=[\"Top\",\"Right\",\"Bottom\",\"Left\"],S=function(a,b){return a=b||a,\"none\"===n.css(a,\"display\")||!n.contains(a.ownerDocument,a)},T=/^(?:checkbox|radio)$/i;!function(){var a=l.createDocumentFragment(),b=a.appendChild(l.createElement(\"div\")),c=l.createElement(\"input\");c.setAttribute(\"type\",\"radio\"),c.setAttribute(\"checked\",\"checked\"),c.setAttribute(\"name\",\"t\"),b.appendChild(c),k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML=\"<textarea>x</textarea>\",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U=\"undefined\";k.focusinBubbles=\"onfocusin\"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||\"\").match(E)||[\"\"],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||\"\").split(\".\").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(\".\")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||\"\").match(E)||[\"\"],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||\"\").split(\".\").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp(\"(^|\\\\.)\"+p.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&(\"**\"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,\"events\"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,\"type\")?b.type:b,r=j.call(b,\"namespace\")?b.namespace.split(\".\"):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(\".\")>=0&&(r=q.split(\".\"),q=r.shift(),r.sort()),k=q.indexOf(\":\")<0&&\"on\"+q,b=b[n.expando]?b:new n.Event(q,\"object\"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join(\".\"),b.namespace_re=b.namespace?new RegExp(\"(^|\\\\.)\"+r.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,\"events\")||{})[b.type]&&L.get(g,\"handle\"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,\"events\")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||\"click\"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||\"click\"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+\" \",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},props:\"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which\".split(\" \"),fixHooks:{},keyHooks:{props:\"char charCode key keyCode\".split(\" \"),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:\"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement\".split(\" \"),filter:function(a,b){var c,d,e,f=b.button;return null==a.pageX&&null!=b.clientX&&(c=a.target.ownerDocument||l,d=c.documentElement,e=c.body,a.pageX=b.clientX+(d&&d.scrollLeft||e&&e.scrollLeft||0)-(d&&d.clientLeft||e&&e.clientLeft||0),a.pageY=b.clientY+(d&&d.scrollTop||e&&e.scrollTop||0)-(d&&d.clientTop||e&&e.clientTop||0)),a.which||void 0===f||(a.which=1&f?1:2&f?3:4&f?2:0),a}},fix:function(a){if(a[n.expando])return a;var b,c,d,e=a.type,f=a,g=this.fixHooks[e];g||(this.fixHooks[e]=g=W.test(e)?this.mouseHooks:V.test(e)?this.keyHooks:{}),d=g.props?this.props.concat(g.props):this.props,a=new n.Event(f),b=d.length;while(b--)c=d[b],a[c]=f[c];return a.target||(a.target=l),3===a.target.nodeType&&(a.target=a.target.parentNode),g.filter?g.filter(a,f):a},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==_()&&this.focus?(this.focus(),!1):void 0},delegateType:\"focusin\"},blur:{trigger:function(){return this===_()&&this.blur?(this.blur(),!1):void 0},delegateType:\"focusout\"},click:{trigger:function(){return\"checkbox\"===this.type&&this.click&&n.nodeName(this,\"input\")?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,\"a\")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c,d){var e=n.extend(new n.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?n.event.trigger(e,null,b):n.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},n.removeEvent=function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)},n.Event=function(a,b){return this instanceof n.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?Z:$):this.type=a,b&&n.extend(this,b),this.timeStamp=a&&a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={isDefaultPrevented:$,isPropagationStopped:$,isImmediatePropagationStopped:$,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=Z,a&&a.preventDefault&&a.preventDefault()},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=Z,a&&a.stopPropagation&&a.stopPropagation()},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=Z,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},n.each({mouseenter:\"mouseover\",mouseleave:\"mouseout\",pointerenter:\"pointerover\",pointerleave:\"pointerout\"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return(!e||e!==d&&!n.contains(d,e))&&(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),k.focusinBubbles||n.each({focus:\"focusin\",blur:\"focusout\"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a),!0)};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=L.access(d,b);e||d.addEventListener(a,c,!0),L.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=L.access(d,b)-1;e?L.access(d,b,e):(d.removeEventListener(a,c,!0),L.remove(d,b))}}}),n.fn.extend({on:function(a,b,c,d,e){var f,g;if(\"object\"==typeof a){\"string\"!=typeof b&&(c=c||b,b=void 0);for(g in a)this.on(g,b,c,a[g],e);return this}if(null==c&&null==d?(d=b,c=b=void 0):null==d&&(\"string\"==typeof b?(d=c,c=void 0):(d=c,c=b,b=void 0)),d===!1)d=$;else if(!d)return this;return 1===e&&(f=d,d=function(a){return n().off(a),f.apply(this,arguments)},d.guid=f.guid||(f.guid=n.guid++)),this.each(function(){n.event.add(this,a,d,c,b)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+\".\"+d.namespace:d.origType,d.selector,d.handler),this;if(\"object\"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return(b===!1||\"function\"==typeof b)&&(c=b,b=void 0),c===!1&&(c=$),this.each(function(){n.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}});var ab=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,bb=/<([\\w:]+)/,cb=/<|&#?\\w+;/,db=/<(?:script|style|link)/i,eb=/checked\\s*(?:[^=]|=\\s*.checked.)/i,fb=/^$|\\/(?:java|ecma)script/i,gb=/^true\\/(.*)/,hb=/^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g,ib={option:[1,\"<select multiple='multiple'>\",\"</select>\"],thead:[1,\"<table>\",\"</table>\"],col:[2,\"<table><colgroup>\",\"</colgroup></table>\"],tr:[2,\"<table><tbody>\",\"</tbody></table>\"],td:[3,\"<table><tbody><tr>\",\"</tr></tbody></table>\"],_default:[0,\"\",\"\"]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,\"table\")&&n.nodeName(11!==b.nodeType?b:b.firstChild,\"tr\")?a.getElementsByTagName(\"tbody\")[0]||a.appendChild(a.ownerDocument.createElement(\"tbody\")):a}function kb(a){return a.type=(null!==a.getAttribute(\"type\"))+\"/\"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute(\"type\"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],\"globalEval\",!b||L.get(b[c],\"globalEval\"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||\"*\"):a.querySelectorAll?a.querySelectorAll(b||\"*\"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();\"input\"===c&&T.test(a.type)?b.checked=a.checked:(\"input\"===c||\"textarea\"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,\"script\"),g.length>0&&mb(g,!i&&ob(a,\"script\")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if(\"object\"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement(\"div\")),g=(bb.exec(e)||[\"\",\"\"])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,\"<$1></$2>\")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=\"\"}else l.push(b.createTextNode(e));k.textContent=\"\",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),\"script\"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||\"\")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,\"script\")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent=\"\");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if(\"string\"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||[\"\",\"\"])[1].toLowerCase()]){a=a.replace(ab,\"<$1></$2>\");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&\"string\"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,\"script\"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,\"script\"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||\"\")&&!L.access(h,\"globalEval\")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,\"\")))}return this}}),n.each({appendTo:\"append\",prependTo:\"prepend\",insertBefore:\"before\",insertAfter:\"after\",replaceAll:\"replaceWith\"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],\"display\");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),\"none\"!==c&&c||(qb=(qb||n(\"<iframe frameborder='0' width='0' height='0'/>\")).appendTo(b.documentElement),b=qb[0].contentDocument,b.write(),b.close(),c=sb(a,b),qb.detach()),rb[a]=c),c}var ub=/^margin/,vb=new RegExp(\"^(\"+Q+\")(?!px)[a-z%]+$\",\"i\"),wb=function(a){return a.ownerDocument.defaultView.getComputedStyle(a,null)};function xb(a,b,c){var d,e,f,g,h=a.style;return c=c||wb(a),c&&(g=c.getPropertyValue(b)||c[b]),c&&(\"\"!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),vb.test(g)&&ub.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+\"\":g}function yb(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d=l.documentElement,e=l.createElement(\"div\"),f=l.createElement(\"div\");if(f.style){f.style.backgroundClip=\"content-box\",f.cloneNode(!0).style.backgroundClip=\"\",k.clearCloneStyle=\"content-box\"===f.style.backgroundClip,e.style.cssText=\"border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;position:absolute\",e.appendChild(f);function g(){f.style.cssText=\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute\",f.innerHTML=\"\",d.appendChild(e);var g=a.getComputedStyle(f,null);b=\"1%\"!==g.top,c=\"4px\"===g.width,d.removeChild(e)}a.getComputedStyle&&n.extend(k,{pixelPosition:function(){return g(),b},boxSizingReliable:function(){return null==c&&g(),c},reliableMarginRight:function(){var b,c=f.appendChild(l.createElement(\"div\"));return c.style.cssText=f.style.cssText=\"-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0\",c.style.marginRight=c.style.width=\"0\",f.style.width=\"1px\",d.appendChild(e),b=!parseFloat(a.getComputedStyle(c,null).marginRight),d.removeChild(e),b}})}}(),n.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var zb=/^(none|table(?!-c[ea]).+)/,Ab=new RegExp(\"^(\"+Q+\")(.*)$\",\"i\"),Bb=new RegExp(\"^([+-])=(\"+Q+\")\",\"i\"),Cb={position:\"absolute\",visibility:\"hidden\",display:\"block\"},Db={letterSpacing:\"0\",fontWeight:\"400\"},Eb=[\"Webkit\",\"O\",\"Moz\",\"ms\"];function Fb(a,b){if(b in a)return b;var c=b[0].toUpperCase()+b.slice(1),d=b,e=Eb.length;while(e--)if(b=Eb[e]+c,b in a)return b;return d}function Gb(a,b,c){var d=Ab.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||\"px\"):b}function Hb(a,b,c,d,e){for(var f=c===(d?\"border\":\"content\")?4:\"width\"===b?1:0,g=0;4>f;f+=2)\"margin\"===c&&(g+=n.css(a,c+R[f],!0,e)),d?(\"content\"===c&&(g-=n.css(a,\"padding\"+R[f],!0,e)),\"margin\"!==c&&(g-=n.css(a,\"border\"+R[f]+\"Width\",!0,e))):(g+=n.css(a,\"padding\"+R[f],!0,e),\"padding\"!==c&&(g+=n.css(a,\"border\"+R[f]+\"Width\",!0,e)));return g}function Ib(a,b,c){var d=!0,e=\"width\"===b?a.offsetWidth:a.offsetHeight,f=wb(a),g=\"border-box\"===n.css(a,\"boxSizing\",!1,f);if(0>=e||null==e){if(e=xb(a,b,f),(0>e||null==e)&&(e=a.style[b]),vb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Hb(a,b,c||(g?\"border\":\"content\"),d,f)+\"px\"}function Jb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=L.get(d,\"olddisplay\"),c=d.style.display,b?(f[g]||\"none\"!==c||(d.style.display=\"\"),\"\"===d.style.display&&S(d)&&(f[g]=L.access(d,\"olddisplay\",tb(d.nodeName)))):(e=S(d),\"none\"===c&&e||L.set(d,\"olddisplay\",e?c:n.css(d,\"display\"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&\"none\"!==d.style.display&&\"\"!==d.style.display||(d.style.display=b?f[g]||\"\":\"none\"));return a}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=xb(a,\"opacity\");return\"\"===c?\"1\":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{\"float\":\"cssFloat\"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;return b=n.cssProps[h]||(n.cssProps[h]=Fb(i,h)),g=n.cssHooks[b]||n.cssHooks[h],void 0===c?g&&\"get\"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b]:(f=typeof c,\"string\"===f&&(e=Bb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(n.css(a,b)),f=\"number\"),null!=c&&c===c&&(\"number\"!==f||n.cssNumber[h]||(c+=\"px\"),k.clearCloneStyle||\"\"!==c||0!==b.indexOf(\"background\")||(i[b]=\"inherit\"),g&&\"set\"in g&&void 0===(c=g.set(a,c,d))||(i[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Fb(a.style,h)),g=n.cssHooks[b]||n.cssHooks[h],g&&\"get\"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=xb(a,b,d)),\"normal\"===e&&b in Db&&(e=Db[b]),\"\"===c||c?(f=parseFloat(e),c===!0||n.isNumeric(f)?f||0:e):e}}),n.each([\"height\",\"width\"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?zb.test(n.css(a,\"display\"))&&0===a.offsetWidth?n.swap(a,Cb,function(){return Ib(a,b,d)}):Ib(a,b,d):void 0},set:function(a,c,d){var e=d&&wb(a);return Gb(a,c,d?Hb(a,b,d,\"border-box\"===n.css(a,\"boxSizing\",!1,e),e):0)}}}),n.cssHooks.marginRight=yb(k.reliableMarginRight,function(a,b){return b?n.swap(a,{display:\"inline-block\"},xb,[a,\"marginRight\"]):void 0}),n.each({margin:\"\",padding:\"\",border:\"Width\"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f=\"string\"==typeof c?c.split(\" \"):[c];4>d;d++)e[a+R[d]+b]=f[d]||f[d-2]||f[0];return e}},ub.test(a)||(n.cssHooks[a+b].set=Gb)}),n.fn.extend({css:function(a,b){return J(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=wb(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return Jb(this,!0)},hide:function(){return Jb(this)},toggle:function(a){return\"boolean\"==typeof a?a?this.show():this.hide():this.each(function(){S(this)?n(this).show():n(this).hide()})}});function Kb(a,b,c,d,e){return new Kb.prototype.init(a,b,c,d,e)}n.Tween=Kb,Kb.prototype={constructor:Kb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||\"swing\",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?\"\":\"px\")},cur:function(){var a=Kb.propHooks[this.prop];return a&&a.get?a.get(this):Kb.propHooks._default.get(this)},run:function(a){var b,c=Kb.propHooks[this.prop];return this.pos=b=this.options.duration?n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Kb.propHooks._default.set(this),this}},Kb.prototype.init.prototype=Kb.prototype,Kb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=n.css(a.elem,a.prop,\"\"),b&&\"auto\"!==b?b:0):a.elem[a.prop]},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[n.cssProps[a.prop]]||n.cssHooks[a.prop])?n.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Kb.propHooks.scrollTop=Kb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},n.fx=Kb.prototype.init,n.fx.step={};var Lb,Mb,Nb=/^(?:toggle|show|hide)$/,Ob=new RegExp(\"^(?:([+-])=|)(\"+Q+\")([a-z%]*)$\",\"i\"),Pb=/queueHooks$/,Qb=[Vb],Rb={\"*\":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=Ob.exec(b),f=e&&e[3]||(n.cssNumber[a]?\"\":\"px\"),g=(n.cssNumber[a]||\"px\"!==f&&+d)&&Ob.exec(n.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||\".5\",g/=h,n.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function Sb(){return setTimeout(function(){Lb=void 0}),Lb=n.now()}function Tb(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=R[d],e[\"margin\"+c]=e[\"padding\"+c]=a;return b&&(e.opacity=e.width=a),e}function Ub(a,b,c){for(var d,e=(Rb[b]||[]).concat(Rb[\"*\"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Vb(a,b,c){var d,e,f,g,h,i,j,k,l=this,m={},o=a.style,p=a.nodeType&&S(a),q=L.get(a,\"fxshow\");c.queue||(h=n._queueHooks(a,\"fx\"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,l.always(function(){l.always(function(){h.unqueued--,n.queue(a,\"fx\").length||h.empty.fire()})})),1===a.nodeType&&(\"height\"in b||\"width\"in b)&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=n.css(a,\"display\"),k=\"none\"===j?L.get(a,\"olddisplay\")||tb(a.nodeName):j,\"inline\"===k&&\"none\"===n.css(a,\"float\")&&(o.display=\"inline-block\")),c.overflow&&(o.overflow=\"hidden\",l.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],Nb.exec(e)){if(delete b[d],f=f||\"toggle\"===e,e===(p?\"hide\":\"show\")){if(\"show\"!==e||!q||void 0===q[d])continue;p=!0}m[d]=q&&q[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(m))\"inline\"===(\"none\"===j?tb(a.nodeName):j)&&(o.display=j);else{q?\"hidden\"in q&&(p=q.hidden):q=L.access(a,\"fxshow\",{}),f&&(q.hidden=!p),p?n(a).show():l.done(function(){n(a).hide()}),l.done(function(){var b;L.remove(a,\"fxshow\");for(b in m)n.style(a,b,m[b])});for(d in m)g=Ub(p?q[d]:0,d,l),d in q||(q[d]=g.start,p&&(g.end=g.start,g.start=\"width\"===d||\"height\"===d?1:0))}}function Wb(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&\"expand\"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function Xb(a,b,c){var d,e,f=0,g=Qb.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=Lb||Sb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:Lb||Sb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(Wb(k,j.opts.specialEasing);g>f;f++)if(d=Qb[f].call(j,a,k,j.opts))return d;return n.map(k,Ub,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(Xb,{tweener:function(a,b){n.isFunction(a)?(b=a,a=[\"*\"]):a=a.split(\" \");for(var c,d=0,e=a.length;e>d;d++)c=a[d],Rb[c]=Rb[c]||[],Rb[c].unshift(b)},prefilter:function(a,b){b?Qb.unshift(a):Qb.push(a)}}),n.speed=function(a,b,c){var d=a&&\"object\"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:\"number\"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue=\"fx\"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(S).css(\"opacity\",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=Xb(this,n.extend({},a),f);(e||L.get(this,\"finish\"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return\"string\"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||\"fx\",[]),this.each(function(){var b=!0,e=null!=a&&a+\"queueHooks\",f=n.timers,g=L.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Pb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||\"fx\"),this.each(function(){var b,c=L.get(this),d=c[a+\"queue\"],e=c[a+\"queueHooks\"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each([\"toggle\",\"show\",\"hide\"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||\"boolean\"==typeof a?c.apply(this,arguments):this.animate(Tb(b,!0),a,d,e)}}),n.each({slideDown:Tb(\"show\"),slideUp:Tb(\"hide\"),slideToggle:Tb(\"toggle\"),fadeIn:{opacity:\"show\"},fadeOut:{opacity:\"hide\"},fadeToggle:{opacity:\"toggle\"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=0,c=n.timers;for(Lb=n.now();b<c.length;b++)a=c[b],a()||c[b]!==a||c.splice(b--,1);c.length||n.fx.stop(),Lb=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){Mb||(Mb=setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){clearInterval(Mb),Mb=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(a,b){return a=n.fx?n.fx.speeds[a]||a:a,b=b||\"fx\",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},function(){var a=l.createElement(\"input\"),b=l.createElement(\"select\"),c=b.appendChild(l.createElement(\"option\"));a.type=\"checkbox\",k.checkOn=\"\"!==a.value,k.optSelected=c.selected,b.disabled=!0,k.optDisabled=!c.disabled,a=l.createElement(\"input\"),a.value=\"t\",a.type=\"radio\",k.radioValue=\"t\"===a.value}();var Yb,Zb,$b=n.expr.attrHandle;n.fn.extend({attr:function(a,b){return J(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===U?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),d=n.attrHooks[b]||(n.expr.match.bool.test(b)?Zb:Yb)),void 0===c?d&&\"get\"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?void 0:e):null!==c?d&&\"set\"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+\"\"),c):void n.removeAttr(a,b))\n},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)&&(a[d]=!1),a.removeAttribute(c)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&\"radio\"===b&&n.nodeName(a,\"input\")){var c=a.value;return a.setAttribute(\"type\",b),c&&(a.value=c),b}}}}}),Zb={set:function(a,b,c){return b===!1?n.removeAttr(a,c):a.setAttribute(c,c),c}},n.each(n.expr.match.bool.source.match(/\\w+/g),function(a,b){var c=$b[b]||n.find.attr;$b[b]=function(a,b,d){var e,f;return d||(f=$b[b],$b[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,$b[b]=f),e}});var _b=/^(?:input|select|textarea|button)$/i;n.fn.extend({prop:function(a,b){return J(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[n.propFix[a]||a]})}}),n.extend({propFix:{\"for\":\"htmlFor\",\"class\":\"className\"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!n.isXMLDoc(a),f&&(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&\"set\"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&\"get\"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){return a.hasAttribute(\"tabindex\")||_b.test(a.nodeName)||a.href?a.tabIndex:-1}}}}),k.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null}}),n.each([\"tabIndex\",\"readOnly\",\"maxLength\",\"cellSpacing\",\"cellPadding\",\"rowSpan\",\"colSpan\",\"useMap\",\"frameBorder\",\"contentEditable\"],function(){n.propFix[this.toLowerCase()]=this});var ac=/[\\t\\r\\n\\f]/g;n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h=\"string\"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,this.className))});if(h)for(b=(a||\"\").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(\" \"+c.className+\" \").replace(ac,\" \"):\" \")){f=0;while(e=b[f++])d.indexOf(\" \"+e+\" \")<0&&(d+=e+\" \");g=n.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0===arguments.length||\"string\"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,this.className))});if(h)for(b=(a||\"\").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(\" \"+c.className+\" \").replace(ac,\" \"):\"\")){f=0;while(e=b[f++])while(d.indexOf(\" \"+e+\" \")>=0)d=d.replace(\" \"+e+\" \",\" \");g=a?n.trim(d):\"\",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return\"boolean\"==typeof b&&\"string\"===c?b?this.addClass(a):this.removeClass(a):this.each(n.isFunction(a)?function(c){n(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if(\"string\"===c){var b,d=0,e=n(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===U||\"boolean\"===c)&&(this.className&&L.set(this,\"__className__\",this.className),this.className=this.className||a===!1?\"\":L.get(this,\"__className__\")||\"\")})},hasClass:function(a){for(var b=\" \"+a+\" \",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(\" \"+this[c].className+\" \").replace(ac,\" \").indexOf(b)>=0)return!0;return!1}});var bc=/\\r/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e=\"\":\"number\"==typeof e?e+=\"\":n.isArray(e)&&(e=n.map(e,function(a){return null==a?\"\":a+\"\"})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&\"set\"in b&&void 0!==b.set(this,e,\"value\")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&\"get\"in b&&void 0!==(c=b.get(e,\"value\"))?c:(c=e.value,\"string\"==typeof c?c.replace(bc,\"\"):null==c?\"\":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,\"value\");return null!=b?b:n.trim(n.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f=\"select-one\"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute(\"disabled\"))||c.parentNode.disabled&&n.nodeName(c.parentNode,\"optgroup\"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=n.inArray(d.value,f)>=0)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),n.each([\"radio\",\"checkbox\"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>=0:void 0}},k.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute(\"value\")?\"on\":a.value})}),n.each(\"blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu\".split(\" \"),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,\"**\"):this.off(b,a||\"**\",c)}});var cc=n.now(),dc=/\\?/;n.parseJSON=function(a){return JSON.parse(a+\"\")},n.parseXML=function(a){var b,c;if(!a||\"string\"!=typeof a)return null;try{c=new DOMParser,b=c.parseFromString(a,\"text/xml\")}catch(d){b=void 0}return(!b||b.getElementsByTagName(\"parsererror\").length)&&n.error(\"Invalid XML: \"+a),b};var ec,fc,gc=/#.*$/,hc=/([?&])_=[^&]*/,ic=/^(.*?):[ \\t]*([^\\r\\n]*)$/gm,jc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,kc=/^(?:GET|HEAD)$/,lc=/^\\/\\//,mc=/^([\\w.+-]+:)(?:\\/\\/(?:[^\\/?#]*@|)([^\\/?#:]*)(?::(\\d+)|)|)/,nc={},oc={},pc=\"*/\".concat(\"*\");try{fc=location.href}catch(qc){fc=l.createElement(\"a\"),fc.href=\"\",fc=fc.href}ec=mc.exec(fc.toLowerCase())||[];function rc(a){return function(b,c){\"string\"!=typeof b&&(c=b,b=\"*\");var d,e=0,f=b.toLowerCase().match(E)||[];if(n.isFunction(c))while(d=f[e++])\"+\"===d[0]?(d=d.slice(1)||\"*\",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function sc(a,b,c,d){var e={},f=a===oc;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return\"string\"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e[\"*\"]&&g(\"*\")}function tc(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&n.extend(!0,a,d),a}function uc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while(\"*\"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader(\"Content-Type\"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+\" \"+i[0]]){f=e;break}g||(g=e)}f=f||g}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function vc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if(\"*\"===f)f=i;else if(\"*\"!==i&&i!==f){if(g=j[i+\" \"+f]||j[\"* \"+f],!g)for(e in j)if(h=e.split(\" \"),h[1]===f&&(g=j[i+\" \"+h[0]]||j[\"* \"+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a[\"throws\"])b=g(b);else try{b=g(b)}catch(l){return{state:\"parsererror\",error:g?l:\"No conversion from \"+i+\" to \"+f}}}return{state:\"success\",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:fc,type:\"GET\",isLocal:jc.test(ec[1]),global:!0,processData:!0,async:!0,contentType:\"application/x-www-form-urlencoded; charset=UTF-8\",accepts:{\"*\":pc,text:\"text/plain\",html:\"text/html\",xml:\"application/xml, text/xml\",json:\"application/json, text/javascript\"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:\"responseXML\",text:\"responseText\",json:\"responseJSON\"},converters:{\"* text\":String,\"text html\":!0,\"text json\":n.parseJSON,\"text xml\":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?tc(tc(a,n.ajaxSettings),b):tc(n.ajaxSettings,a)},ajaxPrefilter:rc(nc),ajaxTransport:rc(oc),ajax:function(a,b){\"object\"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=n.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?n(l):n.event,o=n.Deferred(),p=n.Callbacks(\"once memory\"),q=k.statusCode||{},r={},s={},t=0,u=\"canceled\",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!f){f={};while(b=ic.exec(e))f[b[1].toLowerCase()]=b[2]}b=f[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?e:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return c&&c.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||fc)+\"\").replace(gc,\"\").replace(lc,ec[1]+\"//\"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=n.trim(k.dataType||\"*\").toLowerCase().match(E)||[\"\"],null==k.crossDomain&&(h=mc.exec(k.url.toLowerCase()),k.crossDomain=!(!h||h[1]===ec[1]&&h[2]===ec[2]&&(h[3]||(\"http:\"===h[1]?\"80\":\"443\"))===(ec[3]||(\"http:\"===ec[1]?\"80\":\"443\")))),k.data&&k.processData&&\"string\"!=typeof k.data&&(k.data=n.param(k.data,k.traditional)),sc(nc,k,b,v),2===t)return v;i=k.global,i&&0===n.active++&&n.event.trigger(\"ajaxStart\"),k.type=k.type.toUpperCase(),k.hasContent=!kc.test(k.type),d=k.url,k.hasContent||(k.data&&(d=k.url+=(dc.test(d)?\"&\":\"?\")+k.data,delete k.data),k.cache===!1&&(k.url=hc.test(d)?d.replace(hc,\"$1_=\"+cc++):d+(dc.test(d)?\"&\":\"?\")+\"_=\"+cc++)),k.ifModified&&(n.lastModified[d]&&v.setRequestHeader(\"If-Modified-Since\",n.lastModified[d]),n.etag[d]&&v.setRequestHeader(\"If-None-Match\",n.etag[d])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader(\"Content-Type\",k.contentType),v.setRequestHeader(\"Accept\",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+(\"*\"!==k.dataTypes[0]?\", \"+pc+\"; q=0.01\":\"\"):k.accepts[\"*\"]);for(j in k.headers)v.setRequestHeader(j,k.headers[j]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u=\"abort\";for(j in{success:1,error:1,complete:1})v[j](k[j]);if(c=sc(oc,k,b,v)){v.readyState=1,i&&m.trigger(\"ajaxSend\",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort(\"timeout\")},k.timeout));try{t=1,c.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,\"No Transport\");function x(a,b,f,h){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),c=void 0,e=h||\"\",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,f&&(u=uc(k,v,f)),u=vc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader(\"Last-Modified\"),w&&(n.lastModified[d]=w),w=v.getResponseHeader(\"etag\"),w&&(n.etag[d]=w)),204===a||\"HEAD\"===k.type?x=\"nocontent\":304===a?x=\"notmodified\":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x=\"error\",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+\"\",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,i&&m.trigger(j?\"ajaxSuccess\":\"ajaxError\",[v,k,j?r:s]),p.fireWith(l,[v,x]),i&&(m.trigger(\"ajaxComplete\",[v,k]),--n.active||n.event.trigger(\"ajaxStop\")))}return v},getJSON:function(a,b,c){return n.get(a,b,c,\"json\")},getScript:function(a,b){return n.get(a,void 0,b,\"script\")}}),n.each([\"get\",\"post\"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),n.each([\"ajaxStart\",\"ajaxStop\",\"ajaxComplete\",\"ajaxError\",\"ajaxSuccess\",\"ajaxSend\"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n._evalUrl=function(a){return n.ajax({url:a,type:\"GET\",dataType:\"script\",async:!1,global:!1,\"throws\":!0})},n.fn.extend({wrapAll:function(a){var b;return n.isFunction(a)?this.each(function(b){n(this).wrapAll(a.call(this,b))}):(this[0]&&(b=n(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this)},wrapInner:function(a){return this.each(n.isFunction(a)?function(b){n(this).wrapInner(a.call(this,b))}:function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,\"body\")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var wc=/%20/g,xc=/\\[\\]$/,yc=/\\r?\\n/g,zc=/^(?:submit|button|image|reset|file)$/i,Ac=/^(?:input|select|textarea|keygen)/i;function Bc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||xc.test(a)?d(a,e):Bc(a+\"[\"+(\"object\"==typeof e?b:\"\")+\"]\",e,c,d)});else if(c||\"object\"!==n.type(b))d(a,b);else for(e in b)Bc(a+\"[\"+e+\"]\",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?\"\":b,d[d.length]=encodeURIComponent(a)+\"=\"+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Bc(c,a[c],b,e);return d.join(\"&\").replace(wc,\"+\")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,\"elements\");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(\":disabled\")&&Ac.test(this.nodeName)&&!zc.test(a)&&(this.checked||!T.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(yc,\"\\r\\n\")}}):{name:b.name,value:c.replace(yc,\"\\r\\n\")}}).get()}}),n.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(a){}};var Cc=0,Dc={},Ec={0:200,1223:204},Fc=n.ajaxSettings.xhr();a.ActiveXObject&&n(a).on(\"unload\",function(){for(var a in Dc)Dc[a]()}),k.cors=!!Fc&&\"withCredentials\"in Fc,k.ajax=Fc=!!Fc,n.ajaxTransport(function(a){var b;return k.cors||Fc&&!a.crossDomain?{send:function(c,d){var e,f=a.xhr(),g=++Cc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c[\"X-Requested-With\"]||(c[\"X-Requested-With\"]=\"XMLHttpRequest\");for(e in c)f.setRequestHeader(e,c[e]);b=function(a){return function(){b&&(delete Dc[g],b=f.onload=f.onerror=null,\"abort\"===a?f.abort():\"error\"===a?d(f.status,f.statusText):d(Ec[f.status]||f.status,f.statusText,\"string\"==typeof f.responseText?{text:f.responseText}:void 0,f.getAllResponseHeaders()))}},f.onload=b(),f.onerror=b(\"error\"),b=Dc[g]=b(\"abort\");try{f.send(a.hasContent&&a.data||null)}catch(h){if(b)throw h}},abort:function(){b&&b()}}:void 0}),n.ajaxSetup({accepts:{script:\"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript\"},contents:{script:/(?:java|ecma)script/},converters:{\"text script\":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter(\"script\",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type=\"GET\")}),n.ajaxTransport(\"script\",function(a){if(a.crossDomain){var b,c;return{send:function(d,e){b=n(\"<script>\").prop({async:!0,charset:a.scriptCharset,src:a.url}).on(\"load error\",c=function(a){b.remove(),c=null,a&&e(\"error\"===a.type?404:200,a.type)}),l.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Gc=[],Hc=/(=)\\?(?=&|$)|\\?\\?/;n.ajaxSetup({jsonp:\"callback\",jsonpCallback:function(){var a=Gc.pop()||n.expando+\"_\"+cc++;return this[a]=!0,a}}),n.ajaxPrefilter(\"json jsonp\",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(Hc.test(b.url)?\"url\":\"string\"==typeof b.data&&!(b.contentType||\"\").indexOf(\"application/x-www-form-urlencoded\")&&Hc.test(b.data)&&\"data\");return h||\"jsonp\"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(Hc,\"$1\"+e):b.jsonp!==!1&&(b.url+=(dc.test(b.url)?\"&\":\"?\")+b.jsonp+\"=\"+e),b.converters[\"script json\"]=function(){return g||n.error(e+\" was not called\"),g[0]},b.dataTypes[0]=\"json\",f=a[e],a[e]=function(){g=arguments},d.always(function(){a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,Gc.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),\"script\"):void 0}),n.parseHTML=function(a,b,c){if(!a||\"string\"!=typeof a)return null;\"boolean\"==typeof b&&(c=b,b=!1),b=b||l;var d=v.exec(a),e=!c&&[];return d?[b.createElement(d[1])]:(d=n.buildFragment([a],b,e),e&&e.length&&n(e).remove(),n.merge([],d.childNodes))};var Ic=n.fn.load;n.fn.load=function(a,b,c){if(\"string\"!=typeof a&&Ic)return Ic.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(\" \");return h>=0&&(d=n.trim(a.slice(h)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&\"object\"==typeof b&&(e=\"POST\"),g.length>0&&n.ajax({url:a,type:e,dataType:\"html\",data:b}).done(function(a){f=arguments,g.html(d?n(\"<div>\").append(n.parseHTML(a)).find(d):a)}).complete(c&&function(a,b){g.each(c,f||[a.responseText,b,a])}),this},n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};var Jc=a.document.documentElement;function Kc(a){return n.isWindow(a)?a:9===a.nodeType&&a.defaultView}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,\"position\"),l=n(a),m={};\"static\"===k&&(a.style.position=\"relative\"),h=l.offset(),f=n.css(a,\"top\"),i=n.css(a,\"left\"),j=(\"absolute\"===k||\"fixed\"===k)&&(f+i).indexOf(\"auto\")>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,h)),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),\"using\"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d=this[0],e={top:0,left:0},f=d&&d.ownerDocument;if(f)return b=f.documentElement,n.contains(b,d)?(typeof d.getBoundingClientRect!==U&&(e=d.getBoundingClientRect()),c=Kc(f),{top:e.top+c.pageYOffset-b.clientTop,left:e.left+c.pageXOffset-b.clientLeft}):e},position:function(){if(this[0]){var a,b,c=this[0],d={top:0,left:0};return\"fixed\"===n.css(c,\"position\")?b=c.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],\"html\")||(d=a.offset()),d.top+=n.css(a[0],\"borderTopWidth\",!0),d.left+=n.css(a[0],\"borderLeftWidth\",!0)),{top:b.top-d.top-n.css(c,\"marginTop\",!0),left:b.left-d.left-n.css(c,\"marginLeft\",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||Jc;while(a&&!n.nodeName(a,\"html\")&&\"static\"===n.css(a,\"position\"))a=a.offsetParent;return a||Jc})}}),n.each({scrollLeft:\"pageXOffset\",scrollTop:\"pageYOffset\"},function(b,c){var d=\"pageYOffset\"===c;n.fn[b]=function(e){return J(this,function(b,e,f){var g=Kc(b);return void 0===f?g?g[c]:b[e]:void(g?g.scrollTo(d?a.pageXOffset:f,d?f:a.pageYOffset):b[e]=f)},b,e,arguments.length,null)}}),n.each([\"top\",\"left\"],function(a,b){n.cssHooks[b]=yb(k.pixelPosition,function(a,c){return c?(c=xb(a,b),vb.test(c)?n(a).position()[b]+\"px\":c):void 0})}),n.each({Height:\"height\",Width:\"width\"},function(a,b){n.each({padding:\"inner\"+a,content:b,\"\":\"outer\"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||\"boolean\"!=typeof d),g=c||(d===!0||e===!0?\"margin\":\"border\");return J(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement[\"client\"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body[\"scroll\"+a],e[\"scroll\"+a],b.body[\"offset\"+a],e[\"offset\"+a],e[\"client\"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,\"function\"==typeof define&&define.amd&&define(\"jquery\",[],function(){return n});var Lc=a.jQuery,Mc=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=Mc),b&&a.jQuery===n&&(a.jQuery=Lc),n},typeof b===U&&(a.jQuery=a.$=n),n});"
  },
  {
    "path": "public/admin/js/plugins/chosen/chosen.jquery.js",
    "content": "/*!\n Chosen, a Select Box Enhancer for jQuery and Prototype\n by Patrick Filler for Harvest, http://getharvest.com\n\n Version 1.1.0\n Full source at https://github.com/harvesthq/chosen\n Copyright (c) 2011 Harvest http://getharvest.com\n\n MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md\n This file is generated by `grunt build`, do not edit it by hand.\n */\n\n(function() {\n    var $, AbstractChosen, Chosen, SelectParser, _ref,\n        __hasProp = {}.hasOwnProperty,\n        __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };\n\n    SelectParser = (function() {\n        function SelectParser() {\n            this.options_index = 0;\n            this.parsed = [];\n        }\n\n        SelectParser.prototype.add_node = function(child) {\n            if (child.nodeName.toUpperCase() === \"OPTGROUP\") {\n                return this.add_group(child);\n            } else {\n                return this.add_option(child);\n            }\n        };\n\n        SelectParser.prototype.add_group = function(group) {\n            var group_position, option, _i, _len, _ref, _results;\n            group_position = this.parsed.length;\n            this.parsed.push({\n                array_index: group_position,\n                group: true,\n                label: this.escapeExpression(group.label),\n                children: 0,\n                disabled: group.disabled\n            });\n            _ref = group.childNodes;\n            _results = [];\n            for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                option = _ref[_i];\n                _results.push(this.add_option(option, group_position, group.disabled));\n            }\n            return _results;\n        };\n\n        SelectParser.prototype.add_option = function(option, group_position, group_disabled) {\n            if (option.nodeName.toUpperCase() === \"OPTION\") {\n                if (option.text !== \"\") {\n                    if (group_position != null) {\n                        this.parsed[group_position].children += 1;\n                    }\n                    this.parsed.push({\n                        array_index: this.parsed.length,\n                        options_index: this.options_index,\n                        value: option.value,\n                        text: option.text,\n                        html: option.innerHTML,\n                        selected: option.selected,\n                        disabled: group_disabled === true ? group_disabled : option.disabled,\n                        group_array_index: group_position,\n                        classes: option.className,\n                        style: option.style.cssText\n                    });\n                } else {\n                    this.parsed.push({\n                        array_index: this.parsed.length,\n                        options_index: this.options_index,\n                        empty: true\n                    });\n                }\n                return this.options_index += 1;\n            }\n        };\n\n        SelectParser.prototype.escapeExpression = function(text) {\n            var map, unsafe_chars;\n            if ((text == null) || text === false) {\n                return \"\";\n            }\n            if (!/[\\&\\<\\>\\\"\\'\\`]/.test(text)) {\n                return text;\n            }\n            map = {\n                \"<\": \"&lt;\",\n                \">\": \"&gt;\",\n                '\"': \"&quot;\",\n                \"'\": \"&#x27;\",\n                \"`\": \"&#x60;\"\n            };\n            unsafe_chars = /&(?!\\w+;)|[\\<\\>\\\"\\'\\`]/g;\n            return text.replace(unsafe_chars, function(chr) {\n                return map[chr] || \"&amp;\";\n            });\n        };\n\n        return SelectParser;\n\n    })();\n\n    SelectParser.select_to_array = function(select) {\n        var child, parser, _i, _len, _ref;\n        parser = new SelectParser();\n        _ref = select.childNodes;\n        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n            child = _ref[_i];\n            parser.add_node(child);\n        }\n        return parser.parsed;\n    };\n\n    AbstractChosen = (function() {\n        function AbstractChosen(form_field, options) {\n            this.form_field = form_field;\n            this.options = options != null ? options : {};\n            if (!AbstractChosen.browser_is_supported()) {\n                return;\n            }\n            this.is_multiple = this.form_field.multiple;\n            this.set_default_text();\n            this.set_default_values();\n            this.setup();\n            this.set_up_html();\n            this.register_observers();\n        }\n\n        AbstractChosen.prototype.set_default_values = function() {\n            var _this = this;\n            this.click_test_action = function(evt) {\n                return _this.test_active_click(evt);\n            };\n            this.activate_action = function(evt) {\n                return _this.activate_field(evt);\n            };\n            this.active_field = false;\n            this.mouse_on_container = false;\n            this.results_showing = false;\n            this.result_highlighted = null;\n            this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === \"\" ? this.options.allow_single_deselect : false;\n            this.disable_search_threshold = this.options.disable_search_threshold || 0;\n            this.disable_search = this.options.disable_search || false;\n            this.enable_split_word_search = this.options.enable_split_word_search != null ? this.options.enable_split_word_search : true;\n            this.group_search = this.options.group_search != null ? this.options.group_search : true;\n            this.search_contains = this.options.search_contains || false;\n            this.single_backstroke_delete = this.options.single_backstroke_delete != null ? this.options.single_backstroke_delete : true;\n            this.max_selected_options = this.options.max_selected_options || Infinity;\n            this.inherit_select_classes = this.options.inherit_select_classes || false;\n            this.display_selected_options = this.options.display_selected_options != null ? this.options.display_selected_options : true;\n            return this.display_disabled_options = this.options.display_disabled_options != null ? this.options.display_disabled_options : true;\n        };\n\n        AbstractChosen.prototype.set_default_text = function() {\n            if (this.form_field.getAttribute(\"data-placeholder\")) {\n                this.default_text = this.form_field.getAttribute(\"data-placeholder\");\n            } else if (this.is_multiple) {\n                this.default_text = this.options.placeholder_text_multiple || this.options.placeholder_text || AbstractChosen.default_multiple_text;\n            } else {\n                this.default_text = this.options.placeholder_text_single || this.options.placeholder_text || AbstractChosen.default_single_text;\n            }\n            return this.results_none_found = this.form_field.getAttribute(\"data-no_results_text\") || this.options.no_results_text || AbstractChosen.default_no_result_text;\n        };\n\n        AbstractChosen.prototype.mouse_enter = function() {\n            return this.mouse_on_container = true;\n        };\n\n        AbstractChosen.prototype.mouse_leave = function() {\n            return this.mouse_on_container = false;\n        };\n\n        AbstractChosen.prototype.input_focus = function(evt) {\n            var _this = this;\n            if (this.is_multiple) {\n                if (!this.active_field) {\n                    return setTimeout((function() {\n                        return _this.container_mousedown();\n                    }), 50);\n                }\n            } else {\n                if (!this.active_field) {\n                    return this.activate_field();\n                }\n            }\n        };\n\n        AbstractChosen.prototype.input_blur = function(evt) {\n            var _this = this;\n            if (!this.mouse_on_container) {\n                this.active_field = false;\n                return setTimeout((function() {\n                    return _this.blur_test();\n                }), 100);\n            }\n        };\n\n        AbstractChosen.prototype.results_option_build = function(options) {\n            var content, data, _i, _len, _ref;\n            content = '';\n            _ref = this.results_data;\n            for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                data = _ref[_i];\n                if (data.group) {\n                    content += this.result_add_group(data);\n                } else {\n                    content += this.result_add_option(data);\n                }\n                if (options != null ? options.first : void 0) {\n                    if (data.selected && this.is_multiple) {\n                        this.choice_build(data);\n                    } else if (data.selected && !this.is_multiple) {\n                        this.single_set_selected_text(data.text);\n                    }\n                }\n            }\n            return content;\n        };\n\n        AbstractChosen.prototype.result_add_option = function(option) {\n            var classes, option_el;\n            if (!option.search_match) {\n                return '';\n            }\n            if (!this.include_option_in_results(option)) {\n                return '';\n            }\n            classes = [];\n            if (!option.disabled && !(option.selected && this.is_multiple)) {\n                classes.push(\"active-result\");\n            }\n            if (option.disabled && !(option.selected && this.is_multiple)) {\n                classes.push(\"disabled-result\");\n            }\n            if (option.selected) {\n                classes.push(\"result-selected\");\n            }\n            if (option.group_array_index != null) {\n                classes.push(\"group-option\");\n            }\n            if (option.classes !== \"\") {\n                classes.push(option.classes);\n            }\n            option_el = document.createElement(\"li\");\n            option_el.className = classes.join(\" \");\n            option_el.style.cssText = option.style;\n            option_el.setAttribute(\"data-option-array-index\", option.array_index);\n            option_el.innerHTML = option.search_text;\n            return this.outerHTML(option_el);\n        };\n\n        AbstractChosen.prototype.result_add_group = function(group) {\n            var group_el;\n            if (!(group.search_match || group.group_match)) {\n                return '';\n            }\n            if (!(group.active_options > 0)) {\n                return '';\n            }\n            group_el = document.createElement(\"li\");\n            group_el.className = \"group-result\";\n            group_el.innerHTML = group.search_text;\n            return this.outerHTML(group_el);\n        };\n\n        AbstractChosen.prototype.results_update_field = function() {\n            this.set_default_text();\n            if (!this.is_multiple) {\n                this.results_reset_cleanup();\n            }\n            this.result_clear_highlight();\n            this.results_build();\n            if (this.results_showing) {\n                return this.winnow_results();\n            }\n        };\n\n        AbstractChosen.prototype.reset_single_select_options = function() {\n            var result, _i, _len, _ref, _results;\n            _ref = this.results_data;\n            _results = [];\n            for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                result = _ref[_i];\n                if (result.selected) {\n                    _results.push(result.selected = false);\n                } else {\n                    _results.push(void 0);\n                }\n            }\n            return _results;\n        };\n\n        AbstractChosen.prototype.results_toggle = function() {\n            if (this.results_showing) {\n                return this.results_hide();\n            } else {\n                return this.results_show();\n            }\n        };\n\n        AbstractChosen.prototype.results_search = function(evt) {\n            if (this.results_showing) {\n                return this.winnow_results();\n            } else {\n                return this.results_show();\n            }\n        };\n\n        AbstractChosen.prototype.winnow_results = function() {\n            var escapedSearchText, option, regex, regexAnchor, results, results_group, searchText, startpos, text, zregex, _i, _len, _ref;\n            this.no_results_clear();\n            results = 0;\n            searchText = this.get_search_text();\n            escapedSearchText = searchText.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, \"\\\\$&\");\n            regexAnchor = this.search_contains ? \"\" : \"^\";\n            regex = new RegExp(regexAnchor + escapedSearchText, 'i');\n            zregex = new RegExp(escapedSearchText, 'i');\n            _ref = this.results_data;\n            for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                option = _ref[_i];\n                option.search_match = false;\n                results_group = null;\n                if (this.include_option_in_results(option)) {\n                    if (option.group) {\n                        option.group_match = false;\n                        option.active_options = 0;\n                    }\n                    if ((option.group_array_index != null) && this.results_data[option.group_array_index]) {\n                        results_group = this.results_data[option.group_array_index];\n                        if (results_group.active_options === 0 && results_group.search_match) {\n                            results += 1;\n                        }\n                        results_group.active_options += 1;\n                    }\n                    if (!(option.group && !this.group_search)) {\n                        option.search_text = option.group ? option.label : option.html;\n                        option.search_match = this.search_string_match(option.search_text, regex);\n                        if (option.search_match && !option.group) {\n                            results += 1;\n                        }\n                        if (option.search_match) {\n                            if (searchText.length) {\n                                startpos = option.search_text.search(zregex);\n                                text = option.search_text.substr(0, startpos + searchText.length) + '</em>' + option.search_text.substr(startpos + searchText.length);\n                                option.search_text = text.substr(0, startpos) + '<em>' + text.substr(startpos);\n                            }\n                            if (results_group != null) {\n                                results_group.group_match = true;\n                            }\n                        } else if ((option.group_array_index != null) && this.results_data[option.group_array_index].search_match) {\n                            option.search_match = true;\n                        }\n                    }\n                }\n            }\n            this.result_clear_highlight();\n            if (results < 1 && searchText.length) {\n                this.update_results_content(\"\");\n                return this.no_results(searchText);\n            } else {\n                this.update_results_content(this.results_option_build());\n                return this.winnow_results_set_highlight();\n            }\n        };\n\n        AbstractChosen.prototype.search_string_match = function(search_string, regex) {\n            var part, parts, _i, _len;\n            if (regex.test(search_string)) {\n                return true;\n            } else if (this.enable_split_word_search && (search_string.indexOf(\" \") >= 0 || search_string.indexOf(\"[\") === 0)) {\n                parts = search_string.replace(/\\[|\\]/g, \"\").split(\" \");\n                if (parts.length) {\n                    for (_i = 0, _len = parts.length; _i < _len; _i++) {\n                        part = parts[_i];\n                        if (regex.test(part)) {\n                            return true;\n                        }\n                    }\n                }\n            }\n        };\n\n        AbstractChosen.prototype.choices_count = function() {\n            var option, _i, _len, _ref;\n            if (this.selected_option_count != null) {\n                return this.selected_option_count;\n            }\n            this.selected_option_count = 0;\n            _ref = this.form_field.options;\n            for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                option = _ref[_i];\n                if (option.selected) {\n                    this.selected_option_count += 1;\n                }\n            }\n            return this.selected_option_count;\n        };\n\n        AbstractChosen.prototype.choices_click = function(evt) {\n            evt.preventDefault();\n            if (!(this.results_showing || this.is_disabled)) {\n                return this.results_show();\n            }\n        };\n\n        AbstractChosen.prototype.keyup_checker = function(evt) {\n            var stroke, _ref;\n            stroke = (_ref = evt.which) != null ? _ref : evt.keyCode;\n            this.search_field_scale();\n            switch (stroke) {\n                case 8:\n                    if (this.is_multiple && this.backstroke_length < 1 && this.choices_count() > 0) {\n                        return this.keydown_backstroke();\n                    } else if (!this.pending_backstroke) {\n                        this.result_clear_highlight();\n                        return this.results_search();\n                    }\n                    break;\n                case 13:\n                    evt.preventDefault();\n                    if (this.results_showing) {\n                        return this.result_select(evt);\n                    }\n                    break;\n                case 27:\n                    if (this.results_showing) {\n                        this.results_hide();\n                    }\n                    return true;\n                case 9:\n                case 38:\n                case 40:\n                case 16:\n                case 91:\n                case 17:\n                    break;\n                default:\n                    return this.results_search();\n            }\n        };\n\n        AbstractChosen.prototype.clipboard_event_checker = function(evt) {\n            var _this = this;\n            return setTimeout((function() {\n                return _this.results_search();\n            }), 50);\n        };\n\n        AbstractChosen.prototype.container_width = function() {\n            if (this.options.width != null) {\n                return this.options.width;\n            } else {\n                return \"\" + this.form_field.offsetWidth + \"px\";\n            }\n        };\n\n        AbstractChosen.prototype.include_option_in_results = function(option) {\n            if (this.is_multiple && (!this.display_selected_options && option.selected)) {\n                return false;\n            }\n            if (!this.display_disabled_options && option.disabled) {\n                return false;\n            }\n            if (option.empty) {\n                return false;\n            }\n            return true;\n        };\n\n        AbstractChosen.prototype.search_results_touchstart = function(evt) {\n            this.touch_started = true;\n            return this.search_results_mouseover(evt);\n        };\n\n        AbstractChosen.prototype.search_results_touchmove = function(evt) {\n            this.touch_started = false;\n            return this.search_results_mouseout(evt);\n        };\n\n        AbstractChosen.prototype.search_results_touchend = function(evt) {\n            if (this.touch_started) {\n                return this.search_results_mouseup(evt);\n            }\n        };\n\n        AbstractChosen.prototype.outerHTML = function(element) {\n            var tmp;\n            if (element.outerHTML) {\n                return element.outerHTML;\n            }\n            tmp = document.createElement(\"div\");\n            tmp.appendChild(element);\n            return tmp.innerHTML;\n        };\n\n        AbstractChosen.browser_is_supported = function() {\n            if (window.navigator.appName === \"Microsoft Internet Explorer\") {\n                return document.documentMode >= 8;\n            }\n            if (/iP(od|hone)/i.test(window.navigator.userAgent)) {\n                return false;\n            }\n            if (/Android/i.test(window.navigator.userAgent)) {\n                if (/Mobile/i.test(window.navigator.userAgent)) {\n                    return false;\n                }\n            }\n            return true;\n        };\n\n        AbstractChosen.default_multiple_text = \"Select Some Options\";\n\n        AbstractChosen.default_single_text = \"Select an Option\";\n\n        AbstractChosen.default_no_result_text = \"No results match\";\n\n        return AbstractChosen;\n\n    })();\n\n    $ = jQuery;\n\n    $.fn.extend({\n        chosen: function(options) {\n            if (!AbstractChosen.browser_is_supported()) {\n                return this;\n            }\n            return this.each(function(input_field) {\n                var $this, chosen;\n                $this = $(this);\n                chosen = $this.data('chosen');\n                if (options === 'destroy' && chosen) {\n                    chosen.destroy();\n                } else if (!chosen) {\n                    $this.data('chosen', new Chosen(this, options));\n                }\n            });\n        }\n    });\n\n    Chosen = (function(_super) {\n        __extends(Chosen, _super);\n\n        function Chosen() {\n            _ref = Chosen.__super__.constructor.apply(this, arguments);\n            return _ref;\n        }\n\n        Chosen.prototype.setup = function() {\n            this.form_field_jq = $(this.form_field);\n            this.current_selectedIndex = this.form_field.selectedIndex;\n            return this.is_rtl = this.form_field_jq.hasClass(\"chosen-rtl\");\n        };\n\n        Chosen.prototype.set_up_html = function() {\n            var container_classes, container_props;\n            container_classes = [\"chosen-container\"];\n            container_classes.push(\"chosen-container-\" + (this.is_multiple ? \"multi\" : \"single\"));\n            if (this.inherit_select_classes && this.form_field.className) {\n                container_classes.push(this.form_field.className);\n            }\n            if (this.is_rtl) {\n                container_classes.push(\"chosen-rtl\");\n            }\n            container_props = {\n                'class': container_classes.join(' '),\n                'style': \"width: \" + (this.container_width()) + \";\",\n                'title': this.form_field.title\n            };\n            if (this.form_field.id.length) {\n                container_props.id = this.form_field.id.replace(/[^\\w]/g, '_') + \"_chosen\";\n            }\n            this.container = $(\"<div />\", container_props);\n            if (this.is_multiple) {\n                this.container.html('<ul class=\"chosen-choices\"><li class=\"search-field\"><input type=\"text\" value=\"' + this.default_text + '\" class=\"default\" autocomplete=\"off\" style=\"width:25px;\" /></li></ul><div class=\"chosen-drop\"><ul class=\"chosen-results\"></ul></div>');\n            } else {\n                this.container.html('<a class=\"chosen-single chosen-default\" tabindex=\"-1\"><span>' + this.default_text + '</span><div><b></b></div></a><div class=\"chosen-drop\"><div class=\"chosen-search\"><input type=\"text\" autocomplete=\"off\" /></div><ul class=\"chosen-results\"></ul></div>');\n            }\n            this.form_field_jq.hide().after(this.container);\n            this.dropdown = this.container.find('div.chosen-drop').first();\n            this.search_field = this.container.find('input').first();\n            this.search_results = this.container.find('ul.chosen-results').first();\n            this.search_field_scale();\n            this.search_no_results = this.container.find('li.no-results').first();\n            if (this.is_multiple) {\n                this.search_choices = this.container.find('ul.chosen-choices').first();\n                this.search_container = this.container.find('li.search-field').first();\n            } else {\n                this.search_container = this.container.find('div.chosen-search').first();\n                this.selected_item = this.container.find('.chosen-single').first();\n            }\n            this.results_build();\n            this.set_tab_index();\n            this.set_label_behavior();\n            return this.form_field_jq.trigger(\"chosen:ready\", {\n                chosen: this\n            });\n        };\n\n        Chosen.prototype.register_observers = function() {\n            var _this = this;\n            this.container.bind('mousedown.chosen', function(evt) {\n                _this.container_mousedown(evt);\n            });\n            this.container.bind('mouseup.chosen', function(evt) {\n                _this.container_mouseup(evt);\n            });\n            this.container.bind('mouseenter.chosen', function(evt) {\n                _this.mouse_enter(evt);\n            });\n            this.container.bind('mouseleave.chosen', function(evt) {\n                _this.mouse_leave(evt);\n            });\n            this.search_results.bind('mouseup.chosen', function(evt) {\n                _this.search_results_mouseup(evt);\n            });\n            this.search_results.bind('mouseover.chosen', function(evt) {\n                _this.search_results_mouseover(evt);\n            });\n            this.search_results.bind('mouseout.chosen', function(evt) {\n                _this.search_results_mouseout(evt);\n            });\n            this.search_results.bind('mousewheel.chosen DOMMouseScroll.chosen', function(evt) {\n                _this.search_results_mousewheel(evt);\n            });\n            this.search_results.bind('touchstart.chosen', function(evt) {\n                _this.search_results_touchstart(evt);\n            });\n            this.search_results.bind('touchmove.chosen', function(evt) {\n                _this.search_results_touchmove(evt);\n            });\n            this.search_results.bind('touchend.chosen', function(evt) {\n                _this.search_results_touchend(evt);\n            });\n            this.form_field_jq.bind(\"chosen:updated.chosen\", function(evt) {\n                _this.results_update_field(evt);\n            });\n            this.form_field_jq.bind(\"chosen:activate.chosen\", function(evt) {\n                _this.activate_field(evt);\n            });\n            this.form_field_jq.bind(\"chosen:open.chosen\", function(evt) {\n                _this.container_mousedown(evt);\n            });\n            this.form_field_jq.bind(\"chosen:close.chosen\", function(evt) {\n                _this.input_blur(evt);\n            });\n            this.search_field.bind('blur.chosen', function(evt) {\n                _this.input_blur(evt);\n            });\n            this.search_field.bind('keyup.chosen', function(evt) {\n                _this.keyup_checker(evt);\n            });\n            this.search_field.bind('keydown.chosen', function(evt) {\n                _this.keydown_checker(evt);\n            });\n            this.search_field.bind('focus.chosen', function(evt) {\n                _this.input_focus(evt);\n            });\n            this.search_field.bind('cut.chosen', function(evt) {\n                _this.clipboard_event_checker(evt);\n            });\n            this.search_field.bind('paste.chosen', function(evt) {\n                _this.clipboard_event_checker(evt);\n            });\n            if (this.is_multiple) {\n                return this.search_choices.bind('click.chosen', function(evt) {\n                    _this.choices_click(evt);\n                });\n            } else {\n                return this.container.bind('click.chosen', function(evt) {\n                    evt.preventDefault();\n                });\n            }\n        };\n\n        Chosen.prototype.destroy = function() {\n            $(this.container[0].ownerDocument).unbind(\"click.chosen\", this.click_test_action);\n            if (this.search_field[0].tabIndex) {\n                this.form_field_jq[0].tabIndex = this.search_field[0].tabIndex;\n            }\n            this.container.remove();\n            this.form_field_jq.removeData('chosen');\n            return this.form_field_jq.show();\n        };\n\n        Chosen.prototype.search_field_disabled = function() {\n            this.is_disabled = this.form_field_jq[0].disabled;\n            if (this.is_disabled) {\n                this.container.addClass('chosen-disabled');\n                this.search_field[0].disabled = true;\n                if (!this.is_multiple) {\n                    this.selected_item.unbind(\"focus.chosen\", this.activate_action);\n                }\n                return this.close_field();\n            } else {\n                this.container.removeClass('chosen-disabled');\n                this.search_field[0].disabled = false;\n                if (!this.is_multiple) {\n                    return this.selected_item.bind(\"focus.chosen\", this.activate_action);\n                }\n            }\n        };\n\n        Chosen.prototype.container_mousedown = function(evt) {\n            if (!this.is_disabled) {\n                if (evt && evt.type === \"mousedown\" && !this.results_showing) {\n                    evt.preventDefault();\n                }\n                if (!((evt != null) && ($(evt.target)).hasClass(\"search-choice-close\"))) {\n                    if (!this.active_field) {\n                        if (this.is_multiple) {\n                            this.search_field.val(\"\");\n                        }\n                        $(this.container[0].ownerDocument).bind('click.chosen', this.click_test_action);\n                        this.results_show();\n                    } else if (!this.is_multiple && evt && (($(evt.target)[0] === this.selected_item[0]) || $(evt.target).parents(\"a.chosen-single\").length)) {\n                        evt.preventDefault();\n                        this.results_toggle();\n                    }\n                    return this.activate_field();\n                }\n            }\n        };\n\n        Chosen.prototype.container_mouseup = function(evt) {\n            if (evt.target.nodeName === \"ABBR\" && !this.is_disabled) {\n                return this.results_reset(evt);\n            }\n        };\n\n        Chosen.prototype.search_results_mousewheel = function(evt) {\n            var delta;\n            if (evt.originalEvent) {\n                delta = -evt.originalEvent.wheelDelta || evt.originalEvent.detail;\n            }\n            if (delta != null) {\n                evt.preventDefault();\n                if (evt.type === 'DOMMouseScroll') {\n                    delta = delta * 40;\n                }\n                return this.search_results.scrollTop(delta + this.search_results.scrollTop());\n            }\n        };\n\n        Chosen.prototype.blur_test = function(evt) {\n            if (!this.active_field && this.container.hasClass(\"chosen-container-active\")) {\n                return this.close_field();\n            }\n        };\n\n        Chosen.prototype.close_field = function() {\n            $(this.container[0].ownerDocument).unbind(\"click.chosen\", this.click_test_action);\n            this.active_field = false;\n            this.results_hide();\n            this.container.removeClass(\"chosen-container-active\");\n            this.clear_backstroke();\n            this.show_search_field_default();\n            return this.search_field_scale();\n        };\n\n        Chosen.prototype.activate_field = function() {\n            this.container.addClass(\"chosen-container-active\");\n            this.active_field = true;\n            this.search_field.val(this.search_field.val());\n            return this.search_field.focus();\n        };\n\n        Chosen.prototype.test_active_click = function(evt) {\n            var active_container;\n            active_container = $(evt.target).closest('.chosen-container');\n            if (active_container.length && this.container[0] === active_container[0]) {\n                return this.active_field = true;\n            } else {\n                return this.close_field();\n            }\n        };\n\n        Chosen.prototype.results_build = function() {\n            this.parsing = true;\n            this.selected_option_count = null;\n            this.results_data = SelectParser.select_to_array(this.form_field);\n            if (this.is_multiple) {\n                this.search_choices.find(\"li.search-choice\").remove();\n            } else if (!this.is_multiple) {\n                this.single_set_selected_text();\n                if (this.disable_search || this.form_field.options.length <= this.disable_search_threshold) {\n                    this.search_field[0].readOnly = true;\n                    this.container.addClass(\"chosen-container-single-nosearch\");\n                } else {\n                    this.search_field[0].readOnly = false;\n                    this.container.removeClass(\"chosen-container-single-nosearch\");\n                }\n            }\n            this.update_results_content(this.results_option_build({\n                first: true\n            }));\n            this.search_field_disabled();\n            this.show_search_field_default();\n            this.search_field_scale();\n            return this.parsing = false;\n        };\n\n        Chosen.prototype.result_do_highlight = function(el) {\n            var high_bottom, high_top, maxHeight, visible_bottom, visible_top;\n            if (el.length) {\n                this.result_clear_highlight();\n                this.result_highlight = el;\n                this.result_highlight.addClass(\"highlighted\");\n                maxHeight = parseInt(this.search_results.css(\"maxHeight\"), 10);\n                visible_top = this.search_results.scrollTop();\n                visible_bottom = maxHeight + visible_top;\n                high_top = this.result_highlight.position().top + this.search_results.scrollTop();\n                high_bottom = high_top + this.result_highlight.outerHeight();\n                if (high_bottom >= visible_bottom) {\n                    return this.search_results.scrollTop((high_bottom - maxHeight) > 0 ? high_bottom - maxHeight : 0);\n                } else if (high_top < visible_top) {\n                    return this.search_results.scrollTop(high_top);\n                }\n            }\n        };\n\n        Chosen.prototype.result_clear_highlight = function() {\n            if (this.result_highlight) {\n                this.result_highlight.removeClass(\"highlighted\");\n            }\n            return this.result_highlight = null;\n        };\n\n        Chosen.prototype.results_show = function() {\n            if (this.is_multiple && this.max_selected_options <= this.choices_count()) {\n                this.form_field_jq.trigger(\"chosen:maxselected\", {\n                    chosen: this\n                });\n                return false;\n            }\n            this.container.addClass(\"chosen-with-drop\");\n            this.results_showing = true;\n            this.search_field.focus();\n            this.search_field.val(this.search_field.val());\n            this.winnow_results();\n            return this.form_field_jq.trigger(\"chosen:showing_dropdown\", {\n                chosen: this\n            });\n        };\n\n        Chosen.prototype.update_results_content = function(content) {\n            return this.search_results.html(content);\n        };\n\n        Chosen.prototype.results_hide = function() {\n            if (this.results_showing) {\n                this.result_clear_highlight();\n                this.container.removeClass(\"chosen-with-drop\");\n                this.form_field_jq.trigger(\"chosen:hiding_dropdown\", {\n                    chosen: this\n                });\n            }\n            return this.results_showing = false;\n        };\n\n        Chosen.prototype.set_tab_index = function(el) {\n            var ti;\n            if (this.form_field.tabIndex) {\n                ti = this.form_field.tabIndex;\n                this.form_field.tabIndex = -1;\n                return this.search_field[0].tabIndex = ti;\n            }\n        };\n\n        Chosen.prototype.set_label_behavior = function() {\n            var _this = this;\n            this.form_field_label = this.form_field_jq.parents(\"label\");\n            if (!this.form_field_label.length && this.form_field.id.length) {\n                this.form_field_label = $(\"label[for='\" + this.form_field.id + \"']\");\n            }\n            if (this.form_field_label.length > 0) {\n                return this.form_field_label.bind('click.chosen', function(evt) {\n                    if (_this.is_multiple) {\n                        return _this.container_mousedown(evt);\n                    } else {\n                        return _this.activate_field();\n                    }\n                });\n            }\n        };\n\n        Chosen.prototype.show_search_field_default = function() {\n            if (this.is_multiple && this.choices_count() < 1 && !this.active_field) {\n                this.search_field.val(this.default_text);\n                return this.search_field.addClass(\"default\");\n            } else {\n                this.search_field.val(\"\");\n                return this.search_field.removeClass(\"default\");\n            }\n        };\n\n        Chosen.prototype.search_results_mouseup = function(evt) {\n            var target;\n            target = $(evt.target).hasClass(\"active-result\") ? $(evt.target) : $(evt.target).parents(\".active-result\").first();\n            if (target.length) {\n                this.result_highlight = target;\n                this.result_select(evt);\n                return this.search_field.focus();\n            }\n        };\n\n        Chosen.prototype.search_results_mouseover = function(evt) {\n            var target;\n            target = $(evt.target).hasClass(\"active-result\") ? $(evt.target) : $(evt.target).parents(\".active-result\").first();\n            if (target) {\n                return this.result_do_highlight(target);\n            }\n        };\n\n        Chosen.prototype.search_results_mouseout = function(evt) {\n            if ($(evt.target).hasClass(\"active-result\" || $(evt.target).parents('.active-result').first())) {\n                return this.result_clear_highlight();\n            }\n        };\n\n        Chosen.prototype.choice_build = function(item) {\n            var choice, close_link,\n                _this = this;\n            choice = $('<li />', {\n                \"class\": \"search-choice\"\n            }).html(\"<span>\" + item.html + \"</span>\");\n            if (item.disabled) {\n                choice.addClass('search-choice-disabled');\n            } else {\n                close_link = $('<a />', {\n                    \"class\": 'search-choice-close',\n                    'data-option-array-index': item.array_index\n                });\n                close_link.bind('click.chosen', function(evt) {\n                    return _this.choice_destroy_link_click(evt);\n                });\n                choice.append(close_link);\n            }\n            return this.search_container.before(choice);\n        };\n\n        Chosen.prototype.choice_destroy_link_click = function(evt) {\n            evt.preventDefault();\n            evt.stopPropagation();\n            if (!this.is_disabled) {\n                return this.choice_destroy($(evt.target));\n            }\n        };\n\n        Chosen.prototype.choice_destroy = function(link) {\n            if (this.result_deselect(link[0].getAttribute(\"data-option-array-index\"))) {\n                this.show_search_field_default();\n                if (this.is_multiple && this.choices_count() > 0 && this.search_field.val().length < 1) {\n                    this.results_hide();\n                }\n                link.parents('li').first().remove();\n                return this.search_field_scale();\n            }\n        };\n\n        Chosen.prototype.results_reset = function() {\n            this.reset_single_select_options();\n            this.form_field.options[0].selected = true;\n            this.single_set_selected_text();\n            this.show_search_field_default();\n            this.results_reset_cleanup();\n            this.form_field_jq.trigger(\"change\");\n            if (this.active_field) {\n                return this.results_hide();\n            }\n        };\n\n        Chosen.prototype.results_reset_cleanup = function() {\n            this.current_selectedIndex = this.form_field.selectedIndex;\n            return this.selected_item.find(\"abbr\").remove();\n        };\n\n        Chosen.prototype.result_select = function(evt) {\n            var high, item;\n            if (this.result_highlight) {\n                high = this.result_highlight;\n                this.result_clear_highlight();\n                if (this.is_multiple && this.max_selected_options <= this.choices_count()) {\n                    this.form_field_jq.trigger(\"chosen:maxselected\", {\n                        chosen: this\n                    });\n                    return false;\n                }\n                if (this.is_multiple) {\n                    high.removeClass(\"active-result\");\n                } else {\n                    this.reset_single_select_options();\n                }\n                item = this.results_data[high[0].getAttribute(\"data-option-array-index\")];\n                item.selected = true;\n                this.form_field.options[item.options_index].selected = true;\n                this.selected_option_count = null;\n                if (this.is_multiple) {\n                    this.choice_build(item);\n                } else {\n                    this.single_set_selected_text(item.text);\n                }\n                if (!((evt.metaKey || evt.ctrlKey) && this.is_multiple)) {\n                    this.results_hide();\n                }\n                this.search_field.val(\"\");\n                if (this.is_multiple || this.form_field.selectedIndex !== this.current_selectedIndex) {\n                    this.form_field_jq.trigger(\"change\", {\n                        'selected': this.form_field.options[item.options_index].value\n                    });\n                }\n                this.current_selectedIndex = this.form_field.selectedIndex;\n                return this.search_field_scale();\n            }\n        };\n\n        Chosen.prototype.single_set_selected_text = function(text) {\n            if (text == null) {\n                text = this.default_text;\n            }\n            if (text === this.default_text) {\n                this.selected_item.addClass(\"chosen-default\");\n            } else {\n                this.single_deselect_control_build();\n                this.selected_item.removeClass(\"chosen-default\");\n            }\n            return this.selected_item.find(\"span\").text(text);\n        };\n\n        Chosen.prototype.result_deselect = function(pos) {\n            var result_data;\n            result_data = this.results_data[pos];\n            if (!this.form_field.options[result_data.options_index].disabled) {\n                result_data.selected = false;\n                this.form_field.options[result_data.options_index].selected = false;\n                this.selected_option_count = null;\n                this.result_clear_highlight();\n                if (this.results_showing) {\n                    this.winnow_results();\n                }\n                this.form_field_jq.trigger(\"change\", {\n                    deselected: this.form_field.options[result_data.options_index].value\n                });\n                this.search_field_scale();\n                return true;\n            } else {\n                return false;\n            }\n        };\n\n        Chosen.prototype.single_deselect_control_build = function() {\n            if (!this.allow_single_deselect) {\n                return;\n            }\n            if (!this.selected_item.find(\"abbr\").length) {\n                this.selected_item.find(\"span\").first().after(\"<abbr class=\\\"search-choice-close\\\"></abbr>\");\n            }\n            return this.selected_item.addClass(\"chosen-single-with-deselect\");\n        };\n\n        Chosen.prototype.get_search_text = function() {\n            if (this.search_field.val() === this.default_text) {\n                return \"\";\n            } else {\n                return $('<div/>').text($.trim(this.search_field.val())).html();\n            }\n        };\n\n        Chosen.prototype.winnow_results_set_highlight = function() {\n            var do_high, selected_results;\n            selected_results = !this.is_multiple ? this.search_results.find(\".result-selected.active-result\") : [];\n            do_high = selected_results.length ? selected_results.first() : this.search_results.find(\".active-result\").first();\n            if (do_high != null) {\n                return this.result_do_highlight(do_high);\n            }\n        };\n\n        Chosen.prototype.no_results = function(terms) {\n            var no_results_html;\n            no_results_html = $('<li class=\"no-results\">' + this.results_none_found + ' \"<span></span>\"</li>');\n            no_results_html.find(\"span\").first().html(terms);\n            this.search_results.append(no_results_html);\n            return this.form_field_jq.trigger(\"chosen:no_results\", {\n                chosen: this\n            });\n        };\n\n        Chosen.prototype.no_results_clear = function() {\n            return this.search_results.find(\".no-results\").remove();\n        };\n\n        Chosen.prototype.keydown_arrow = function() {\n            var next_sib;\n            if (this.results_showing && this.result_highlight) {\n                next_sib = this.result_highlight.nextAll(\"li.active-result\").first();\n                if (next_sib) {\n                    return this.result_do_highlight(next_sib);\n                }\n            } else {\n                return this.results_show();\n            }\n        };\n\n        Chosen.prototype.keyup_arrow = function() {\n            var prev_sibs;\n            if (!this.results_showing && !this.is_multiple) {\n                return this.results_show();\n            } else if (this.result_highlight) {\n                prev_sibs = this.result_highlight.prevAll(\"li.active-result\");\n                if (prev_sibs.length) {\n                    return this.result_do_highlight(prev_sibs.first());\n                } else {\n                    if (this.choices_count() > 0) {\n                        this.results_hide();\n                    }\n                    return this.result_clear_highlight();\n                }\n            }\n        };\n\n        Chosen.prototype.keydown_backstroke = function() {\n            var next_available_destroy;\n            if (this.pending_backstroke) {\n                this.choice_destroy(this.pending_backstroke.find(\"a\").first());\n                return this.clear_backstroke();\n            } else {\n                next_available_destroy = this.search_container.siblings(\"li.search-choice\").last();\n                if (next_available_destroy.length && !next_available_destroy.hasClass(\"search-choice-disabled\")) {\n                    this.pending_backstroke = next_available_destroy;\n                    if (this.single_backstroke_delete) {\n                        return this.keydown_backstroke();\n                    } else {\n                        return this.pending_backstroke.addClass(\"search-choice-focus\");\n                    }\n                }\n            }\n        };\n\n        Chosen.prototype.clear_backstroke = function() {\n            if (this.pending_backstroke) {\n                this.pending_backstroke.removeClass(\"search-choice-focus\");\n            }\n            return this.pending_backstroke = null;\n        };\n\n        Chosen.prototype.keydown_checker = function(evt) {\n            var stroke, _ref1;\n            stroke = (_ref1 = evt.which) != null ? _ref1 : evt.keyCode;\n            this.search_field_scale();\n            if (stroke !== 8 && this.pending_backstroke) {\n                this.clear_backstroke();\n            }\n            switch (stroke) {\n                case 8:\n                    this.backstroke_length = this.search_field.val().length;\n                    break;\n                case 9:\n                    if (this.results_showing && !this.is_multiple) {\n                        this.result_select(evt);\n                    }\n                    this.mouse_on_container = false;\n                    break;\n                case 13:\n                    evt.preventDefault();\n                    break;\n                case 38:\n                    evt.preventDefault();\n                    this.keyup_arrow();\n                    break;\n                case 40:\n                    evt.preventDefault();\n                    this.keydown_arrow();\n                    break;\n            }\n        };\n\n        Chosen.prototype.search_field_scale = function() {\n            var div, f_width, h, style, style_block, styles, w, _i, _len;\n            if (this.is_multiple) {\n                h = 0;\n                w = 0;\n                style_block = \"position:absolute; left: -1000px; top: -1000px; display:none;\";\n                styles = ['font-size', 'font-style', 'font-weight', 'font-family', 'line-height', 'text-transform', 'letter-spacing'];\n                for (_i = 0, _len = styles.length; _i < _len; _i++) {\n                    style = styles[_i];\n                    style_block += style + \":\" + this.search_field.css(style) + \";\";\n                }\n                div = $('<div />', {\n                    'style': style_block\n                });\n                div.text(this.search_field.val());\n                $('body').append(div);\n                w = div.width() + 25;\n                div.remove();\n                f_width = this.container.outerWidth();\n                if (w > f_width - 10) {\n                    w = f_width - 10;\n                }\n                return this.search_field.css({\n                    'width': w + 'px'\n                });\n            }\n        };\n\n        return Chosen;\n\n    })(AbstractChosen);\n\n}).call(this);\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/codemirror.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// This is CodeMirror (http://codemirror.net), a code editor\n// implemented in JavaScript on top of the browser's DOM.\n//\n// You can find some technical background for some of the code below\n// at http://marijnhaverbeke.nl/blog/#cm-internals .\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    module.exports = mod();\n  else if (typeof define == \"function\" && define.amd) // AMD\n    return define([], mod);\n  else // Plain browser env\n    this.CodeMirror = mod();\n})(function() {\n  \"use strict\";\n\n  // BROWSER SNIFFING\n\n  // Kludges for bugs and behavior differences that can't be feature\n  // detected are enabled based on userAgent etc sniffing.\n\n  var gecko = /gecko\\/\\d/i.test(navigator.userAgent);\n  // ie_uptoN means Internet Explorer version N or lower\n  var ie_upto10 = /MSIE \\d/.test(navigator.userAgent);\n  var ie_11up = /Trident\\/(?:[7-9]|\\d{2,})\\..*rv:(\\d+)/.exec(navigator.userAgent);\n  var ie = ie_upto10 || ie_11up;\n  var ie_version = ie && (ie_upto10 ? document.documentMode || 6 : ie_11up[1]);\n  var webkit = /WebKit\\//.test(navigator.userAgent);\n  var qtwebkit = webkit && /Qt\\/\\d+\\.\\d+/.test(navigator.userAgent);\n  var chrome = /Chrome\\//.test(navigator.userAgent);\n  var presto = /Opera\\//.test(navigator.userAgent);\n  var safari = /Apple Computer/.test(navigator.vendor);\n  var khtml = /KHTML\\//.test(navigator.userAgent);\n  var mac_geMountainLion = /Mac OS X 1\\d\\D([8-9]|\\d\\d)\\D/.test(navigator.userAgent);\n  var phantom = /PhantomJS/.test(navigator.userAgent);\n\n  var ios = /AppleWebKit/.test(navigator.userAgent) && /Mobile\\/\\w+/.test(navigator.userAgent);\n  // This is woefully incomplete. Suggestions for alternative methods welcome.\n  var mobile = ios || /Android|webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(navigator.userAgent);\n  var mac = ios || /Mac/.test(navigator.platform);\n  var windows = /win/i.test(navigator.platform);\n\n  var presto_version = presto && navigator.userAgent.match(/Version\\/(\\d*\\.\\d*)/);\n  if (presto_version) presto_version = Number(presto_version[1]);\n  if (presto_version && presto_version >= 15) { presto = false; webkit = true; }\n  // Some browsers use the wrong event properties to signal cmd/ctrl on OS X\n  var flipCtrlCmd = mac && (qtwebkit || presto && (presto_version == null || presto_version < 12.11));\n  var captureRightClick = gecko || (ie && ie_version >= 9);\n\n  // Optimize some code when these features are not used.\n  var sawReadOnlySpans = false, sawCollapsedSpans = false;\n\n  // EDITOR CONSTRUCTOR\n\n  // A CodeMirror instance represents an editor. This is the object\n  // that user code is usually dealing with.\n\n  function CodeMirror(place, options) {\n    if (!(this instanceof CodeMirror)) return new CodeMirror(place, options);\n\n    this.options = options = options ? copyObj(options) : {};\n    // Determine effective options based on given values and defaults.\n    copyObj(defaults, options, false);\n    setGuttersForLineNumbers(options);\n\n    var doc = options.value;\n    if (typeof doc == \"string\") doc = new Doc(doc, options.mode);\n    this.doc = doc;\n\n    var display = this.display = new Display(place, doc);\n    display.wrapper.CodeMirror = this;\n    updateGutters(this);\n    themeChanged(this);\n    if (options.lineWrapping)\n      this.display.wrapper.className += \" CodeMirror-wrap\";\n    if (options.autofocus && !mobile) focusInput(this);\n\n    this.state = {\n      keyMaps: [],  // stores maps added by addKeyMap\n      overlays: [], // highlighting overlays, as added by addOverlay\n      modeGen: 0,   // bumped when mode/overlay changes, used to invalidate highlighting info\n      overwrite: false, focused: false,\n      suppressEdits: false, // used to disable editing during key handlers when in readOnly mode\n      pasteIncoming: false, cutIncoming: false, // help recognize paste/cut edits in readInput\n      draggingText: false,\n      highlight: new Delayed() // stores highlight worker timeout\n    };\n\n    // Override magic textarea content restore that IE sometimes does\n    // on our hidden textarea on reload\n    if (ie && ie_version < 11) setTimeout(bind(resetInput, this, true), 20);\n\n    registerEventHandlers(this);\n    ensureGlobalHandlers();\n\n    startOperation(this);\n    this.curOp.forceUpdate = true;\n    attachDoc(this, doc);\n\n    if ((options.autofocus && !mobile) || activeElt() == display.input)\n      setTimeout(bind(onFocus, this), 20);\n    else\n      onBlur(this);\n\n    for (var opt in optionHandlers) if (optionHandlers.hasOwnProperty(opt))\n      optionHandlers[opt](this, options[opt], Init);\n    maybeUpdateLineNumberWidth(this);\n    for (var i = 0; i < initHooks.length; ++i) initHooks[i](this);\n    endOperation(this);\n  }\n\n  // DISPLAY CONSTRUCTOR\n\n  // The display handles the DOM integration, both for input reading\n  // and content drawing. It holds references to DOM nodes and\n  // display-related state.\n\n  function Display(place, doc) {\n    var d = this;\n\n    // The semihidden textarea that is focused when the editor is\n    // focused, and receives input.\n    var input = d.input = elt(\"textarea\", null, null, \"position: absolute; padding: 0; width: 1px; height: 1em; outline: none\");\n    // The textarea is kept positioned near the cursor to prevent the\n    // fact that it'll be scrolled into view on input from scrolling\n    // our fake cursor out of view. On webkit, when wrap=off, paste is\n    // very slow. So make the area wide instead.\n    if (webkit) input.style.width = \"1000px\";\n    else input.setAttribute(\"wrap\", \"off\");\n    // If border: 0; -- iOS fails to open keyboard (issue #1287)\n    if (ios) input.style.border = \"1px solid black\";\n    input.setAttribute(\"autocorrect\", \"off\"); input.setAttribute(\"autocapitalize\", \"off\"); input.setAttribute(\"spellcheck\", \"false\");\n\n    // Wraps and hides input textarea\n    d.inputDiv = elt(\"div\", [input], null, \"overflow: hidden; position: relative; width: 3px; height: 0px;\");\n    // The fake scrollbar elements.\n    d.scrollbarH = elt(\"div\", [elt(\"div\", null, null, \"height: 100%; min-height: 1px\")], \"CodeMirror-hscrollbar\");\n    d.scrollbarV = elt(\"div\", [elt(\"div\", null, null, \"min-width: 1px\")], \"CodeMirror-vscrollbar\");\n    // Covers bottom-right square when both scrollbars are present.\n    d.scrollbarFiller = elt(\"div\", null, \"CodeMirror-scrollbar-filler\");\n    // Covers bottom of gutter when coverGutterNextToScrollbar is on\n    // and h scrollbar is present.\n    d.gutterFiller = elt(\"div\", null, \"CodeMirror-gutter-filler\");\n    // Will contain the actual code, positioned to cover the viewport.\n    d.lineDiv = elt(\"div\", null, \"CodeMirror-code\");\n    // Elements are added to these to represent selection and cursors.\n    d.selectionDiv = elt(\"div\", null, null, \"position: relative; z-index: 1\");\n    d.cursorDiv = elt(\"div\", null, \"CodeMirror-cursors\");\n    // A visibility: hidden element used to find the size of things.\n    d.measure = elt(\"div\", null, \"CodeMirror-measure\");\n    // When lines outside of the viewport are measured, they are drawn in this.\n    d.lineMeasure = elt(\"div\", null, \"CodeMirror-measure\");\n    // Wraps everything that needs to exist inside the vertically-padded coordinate system\n    d.lineSpace = elt(\"div\", [d.measure, d.lineMeasure, d.selectionDiv, d.cursorDiv, d.lineDiv],\n                      null, \"position: relative; outline: none\");\n    // Moved around its parent to cover visible view.\n    d.mover = elt(\"div\", [elt(\"div\", [d.lineSpace], \"CodeMirror-lines\")], null, \"position: relative\");\n    // Set to the height of the document, allowing scrolling.\n    d.sizer = elt(\"div\", [d.mover], \"CodeMirror-sizer\");\n    // Behavior of elts with overflow: auto and padding is\n    // inconsistent across browsers. This is used to ensure the\n    // scrollable area is big enough.\n    d.heightForcer = elt(\"div\", null, null, \"position: absolute; height: \" + scrollerCutOff + \"px; width: 1px;\");\n    // Will contain the gutters, if any.\n    d.gutters = elt(\"div\", null, \"CodeMirror-gutters\");\n    d.lineGutter = null;\n    // Actual scrollable element.\n    d.scroller = elt(\"div\", [d.sizer, d.heightForcer, d.gutters], \"CodeMirror-scroll\");\n    d.scroller.setAttribute(\"tabIndex\", \"-1\");\n    // The element in which the editor lives.\n    d.wrapper = elt(\"div\", [d.inputDiv, d.scrollbarH, d.scrollbarV,\n                            d.scrollbarFiller, d.gutterFiller, d.scroller], \"CodeMirror\");\n\n    // Work around IE7 z-index bug (not perfect, hence IE7 not really being supported)\n    if (ie && ie_version < 8) { d.gutters.style.zIndex = -1; d.scroller.style.paddingRight = 0; }\n    // Needed to hide big blue blinking cursor on Mobile Safari\n    if (ios) input.style.width = \"0px\";\n    if (!webkit) d.scroller.draggable = true;\n    // Needed to handle Tab key in KHTML\n    if (khtml) { d.inputDiv.style.height = \"1px\"; d.inputDiv.style.position = \"absolute\"; }\n    // Need to set a minimum width to see the scrollbar on IE7 (but must not set it on IE8).\n    if (ie && ie_version < 8) d.scrollbarH.style.minHeight = d.scrollbarV.style.minWidth = \"18px\";\n\n    if (place.appendChild) place.appendChild(d.wrapper);\n    else place(d.wrapper);\n\n    // Current rendered range (may be bigger than the view window).\n    d.viewFrom = d.viewTo = doc.first;\n    // Information about the rendered lines.\n    d.view = [];\n    // Holds info about a single rendered line when it was rendered\n    // for measurement, while not in view.\n    d.externalMeasured = null;\n    // Empty space (in pixels) above the view\n    d.viewOffset = 0;\n    d.lastSizeC = 0;\n    d.updateLineNumbers = null;\n\n    // Used to only resize the line number gutter when necessary (when\n    // the amount of lines crosses a boundary that makes its width change)\n    d.lineNumWidth = d.lineNumInnerWidth = d.lineNumChars = null;\n    // See readInput and resetInput\n    d.prevInput = \"\";\n    // Set to true when a non-horizontal-scrolling line widget is\n    // added. As an optimization, line widget aligning is skipped when\n    // this is false.\n    d.alignWidgets = false;\n    // Flag that indicates whether we expect input to appear real soon\n    // now (after some event like 'keypress' or 'input') and are\n    // polling intensively.\n    d.pollingFast = false;\n    // Self-resetting timeout for the poller\n    d.poll = new Delayed();\n\n    d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;\n\n    // Tracks when resetInput has punted to just putting a short\n    // string into the textarea instead of the full selection.\n    d.inaccurateSelection = false;\n\n    // Tracks the maximum line length so that the horizontal scrollbar\n    // can be kept static when scrolling.\n    d.maxLine = null;\n    d.maxLineLength = 0;\n    d.maxLineChanged = false;\n\n    // Used for measuring wheel scrolling granularity\n    d.wheelDX = d.wheelDY = d.wheelStartX = d.wheelStartY = null;\n\n    // True when shift is held down.\n    d.shift = false;\n\n    // Used to track whether anything happened since the context menu\n    // was opened.\n    d.selForContextMenu = null;\n  }\n\n  // STATE UPDATES\n\n  // Used to get the editor into a consistent state again when options change.\n\n  function loadMode(cm) {\n    cm.doc.mode = CodeMirror.getMode(cm.options, cm.doc.modeOption);\n    resetModeState(cm);\n  }\n\n  function resetModeState(cm) {\n    cm.doc.iter(function(line) {\n      if (line.stateAfter) line.stateAfter = null;\n      if (line.styles) line.styles = null;\n    });\n    cm.doc.frontier = cm.doc.first;\n    startWorker(cm, 100);\n    cm.state.modeGen++;\n    if (cm.curOp) regChange(cm);\n  }\n\n  function wrappingChanged(cm) {\n    if (cm.options.lineWrapping) {\n      addClass(cm.display.wrapper, \"CodeMirror-wrap\");\n      cm.display.sizer.style.minWidth = \"\";\n    } else {\n      rmClass(cm.display.wrapper, \"CodeMirror-wrap\");\n      findMaxLine(cm);\n    }\n    estimateLineHeights(cm);\n    regChange(cm);\n    clearCaches(cm);\n    setTimeout(function(){updateScrollbars(cm);}, 100);\n  }\n\n  // Returns a function that estimates the height of a line, to use as\n  // first approximation until the line becomes visible (and is thus\n  // properly measurable).\n  function estimateHeight(cm) {\n    var th = textHeight(cm.display), wrapping = cm.options.lineWrapping;\n    var perLine = wrapping && Math.max(5, cm.display.scroller.clientWidth / charWidth(cm.display) - 3);\n    return function(line) {\n      if (lineIsHidden(cm.doc, line)) return 0;\n\n      var widgetsHeight = 0;\n      if (line.widgets) for (var i = 0; i < line.widgets.length; i++) {\n        if (line.widgets[i].height) widgetsHeight += line.widgets[i].height;\n      }\n\n      if (wrapping)\n        return widgetsHeight + (Math.ceil(line.text.length / perLine) || 1) * th;\n      else\n        return widgetsHeight + th;\n    };\n  }\n\n  function estimateLineHeights(cm) {\n    var doc = cm.doc, est = estimateHeight(cm);\n    doc.iter(function(line) {\n      var estHeight = est(line);\n      if (estHeight != line.height) updateLineHeight(line, estHeight);\n    });\n  }\n\n  function keyMapChanged(cm) {\n    var map = keyMap[cm.options.keyMap], style = map.style;\n    cm.display.wrapper.className = cm.display.wrapper.className.replace(/\\s*cm-keymap-\\S+/g, \"\") +\n      (style ? \" cm-keymap-\" + style : \"\");\n  }\n\n  function themeChanged(cm) {\n    cm.display.wrapper.className = cm.display.wrapper.className.replace(/\\s*cm-s-\\S+/g, \"\") +\n      cm.options.theme.replace(/(^|\\s)\\s*/g, \" cm-s-\");\n    clearCaches(cm);\n  }\n\n  function guttersChanged(cm) {\n    updateGutters(cm);\n    regChange(cm);\n    setTimeout(function(){alignHorizontally(cm);}, 20);\n  }\n\n  // Rebuild the gutter elements, ensure the margin to the left of the\n  // code matches their width.\n  function updateGutters(cm) {\n    var gutters = cm.display.gutters, specs = cm.options.gutters;\n    removeChildren(gutters);\n    for (var i = 0; i < specs.length; ++i) {\n      var gutterClass = specs[i];\n      var gElt = gutters.appendChild(elt(\"div\", null, \"CodeMirror-gutter \" + gutterClass));\n      if (gutterClass == \"CodeMirror-linenumbers\") {\n        cm.display.lineGutter = gElt;\n        gElt.style.width = (cm.display.lineNumWidth || 1) + \"px\";\n      }\n    }\n    gutters.style.display = i ? \"\" : \"none\";\n    updateGutterSpace(cm);\n  }\n\n  function updateGutterSpace(cm) {\n    var width = cm.display.gutters.offsetWidth;\n    cm.display.sizer.style.marginLeft = width + \"px\";\n    cm.display.scrollbarH.style.left = cm.options.fixedGutter ? width + \"px\" : 0;\n  }\n\n  // Compute the character length of a line, taking into account\n  // collapsed ranges (see markText) that might hide parts, and join\n  // other lines onto it.\n  function lineLength(line) {\n    if (line.height == 0) return 0;\n    var len = line.text.length, merged, cur = line;\n    while (merged = collapsedSpanAtStart(cur)) {\n      var found = merged.find(0, true);\n      cur = found.from.line;\n      len += found.from.ch - found.to.ch;\n    }\n    cur = line;\n    while (merged = collapsedSpanAtEnd(cur)) {\n      var found = merged.find(0, true);\n      len -= cur.text.length - found.from.ch;\n      cur = found.to.line;\n      len += cur.text.length - found.to.ch;\n    }\n    return len;\n  }\n\n  // Find the longest line in the document.\n  function findMaxLine(cm) {\n    var d = cm.display, doc = cm.doc;\n    d.maxLine = getLine(doc, doc.first);\n    d.maxLineLength = lineLength(d.maxLine);\n    d.maxLineChanged = true;\n    doc.iter(function(line) {\n      var len = lineLength(line);\n      if (len > d.maxLineLength) {\n        d.maxLineLength = len;\n        d.maxLine = line;\n      }\n    });\n  }\n\n  // Make sure the gutters options contains the element\n  // \"CodeMirror-linenumbers\" when the lineNumbers option is true.\n  function setGuttersForLineNumbers(options) {\n    var found = indexOf(options.gutters, \"CodeMirror-linenumbers\");\n    if (found == -1 && options.lineNumbers) {\n      options.gutters = options.gutters.concat([\"CodeMirror-linenumbers\"]);\n    } else if (found > -1 && !options.lineNumbers) {\n      options.gutters = options.gutters.slice(0);\n      options.gutters.splice(found, 1);\n    }\n  }\n\n  // SCROLLBARS\n\n  function hScrollbarTakesSpace(cm) {\n    return cm.display.scroller.clientHeight - cm.display.wrapper.clientHeight < scrollerCutOff - 3;\n  }\n\n  // Prepare DOM reads needed to update the scrollbars. Done in one\n  // shot to minimize update/measure roundtrips.\n  function measureForScrollbars(cm) {\n    var scroll = cm.display.scroller;\n    return {\n      clientHeight: scroll.clientHeight,\n      barHeight: cm.display.scrollbarV.clientHeight,\n      scrollWidth: scroll.scrollWidth, clientWidth: scroll.clientWidth,\n      hScrollbarTakesSpace: hScrollbarTakesSpace(cm),\n      barWidth: cm.display.scrollbarH.clientWidth,\n      docHeight: Math.round(cm.doc.height + paddingVert(cm.display))\n    };\n  }\n\n  // Re-synchronize the fake scrollbars with the actual size of the\n  // content.\n  function updateScrollbars(cm, measure) {\n    if (!measure) measure = measureForScrollbars(cm);\n    var d = cm.display, sWidth = scrollbarWidth(d.measure);\n    var scrollHeight = measure.docHeight + scrollerCutOff;\n    var needsH = measure.scrollWidth > measure.clientWidth;\n    if (needsH && measure.scrollWidth <= measure.clientWidth + 1 &&\n        sWidth > 0 && !measure.hScrollbarTakesSpace)\n      needsH = false; // (Issue #2562)\n    var needsV = scrollHeight > measure.clientHeight;\n\n    if (needsV) {\n      d.scrollbarV.style.display = \"block\";\n      d.scrollbarV.style.bottom = needsH ? sWidth + \"px\" : \"0\";\n      // A bug in IE8 can cause this value to be negative, so guard it.\n      d.scrollbarV.firstChild.style.height =\n        Math.max(0, scrollHeight - measure.clientHeight + (measure.barHeight || d.scrollbarV.clientHeight)) + \"px\";\n    } else {\n      d.scrollbarV.style.display = \"\";\n      d.scrollbarV.firstChild.style.height = \"0\";\n    }\n    if (needsH) {\n      d.scrollbarH.style.display = \"block\";\n      d.scrollbarH.style.right = needsV ? sWidth + \"px\" : \"0\";\n      d.scrollbarH.firstChild.style.width =\n        (measure.scrollWidth - measure.clientWidth + (measure.barWidth || d.scrollbarH.clientWidth)) + \"px\";\n    } else {\n      d.scrollbarH.style.display = \"\";\n      d.scrollbarH.firstChild.style.width = \"0\";\n    }\n    if (needsH && needsV) {\n      d.scrollbarFiller.style.display = \"block\";\n      d.scrollbarFiller.style.height = d.scrollbarFiller.style.width = sWidth + \"px\";\n    } else d.scrollbarFiller.style.display = \"\";\n    if (needsH && cm.options.coverGutterNextToScrollbar && cm.options.fixedGutter) {\n      d.gutterFiller.style.display = \"block\";\n      d.gutterFiller.style.height = sWidth + \"px\";\n      d.gutterFiller.style.width = d.gutters.offsetWidth + \"px\";\n    } else d.gutterFiller.style.display = \"\";\n\n    if (!cm.state.checkedOverlayScrollbar && measure.clientHeight > 0) {\n      if (sWidth === 0) {\n        var w = mac && !mac_geMountainLion ? \"12px\" : \"18px\";\n        d.scrollbarV.style.minWidth = d.scrollbarH.style.minHeight = w;\n        var barMouseDown = function(e) {\n          if (e_target(e) != d.scrollbarV && e_target(e) != d.scrollbarH)\n            operation(cm, onMouseDown)(e);\n        };\n        on(d.scrollbarV, \"mousedown\", barMouseDown);\n        on(d.scrollbarH, \"mousedown\", barMouseDown);\n      }\n      cm.state.checkedOverlayScrollbar = true;\n    }\n  }\n\n  // Compute the lines that are visible in a given viewport (defaults\n  // the the current scroll position). viewport may contain top,\n  // height, and ensure (see op.scrollToPos) properties.\n  function visibleLines(display, doc, viewport) {\n    var top = viewport && viewport.top != null ? Math.max(0, viewport.top) : display.scroller.scrollTop;\n    top = Math.floor(top - paddingTop(display));\n    var bottom = viewport && viewport.bottom != null ? viewport.bottom : top + display.wrapper.clientHeight;\n\n    var from = lineAtHeight(doc, top), to = lineAtHeight(doc, bottom);\n    // Ensure is a {from: {line, ch}, to: {line, ch}} object, and\n    // forces those lines into the viewport (if possible).\n    if (viewport && viewport.ensure) {\n      var ensureFrom = viewport.ensure.from.line, ensureTo = viewport.ensure.to.line;\n      if (ensureFrom < from)\n        return {from: ensureFrom,\n                to: lineAtHeight(doc, heightAtLine(getLine(doc, ensureFrom)) + display.wrapper.clientHeight)};\n      if (Math.min(ensureTo, doc.lastLine()) >= to)\n        return {from: lineAtHeight(doc, heightAtLine(getLine(doc, ensureTo)) - display.wrapper.clientHeight),\n                to: ensureTo};\n    }\n    return {from: from, to: Math.max(to, from + 1)};\n  }\n\n  // LINE NUMBERS\n\n  // Re-align line numbers and gutter marks to compensate for\n  // horizontal scrolling.\n  function alignHorizontally(cm) {\n    var display = cm.display, view = display.view;\n    if (!display.alignWidgets && (!display.gutters.firstChild || !cm.options.fixedGutter)) return;\n    var comp = compensateForHScroll(display) - display.scroller.scrollLeft + cm.doc.scrollLeft;\n    var gutterW = display.gutters.offsetWidth, left = comp + \"px\";\n    for (var i = 0; i < view.length; i++) if (!view[i].hidden) {\n      if (cm.options.fixedGutter && view[i].gutter)\n        view[i].gutter.style.left = left;\n      var align = view[i].alignable;\n      if (align) for (var j = 0; j < align.length; j++)\n        align[j].style.left = left;\n    }\n    if (cm.options.fixedGutter)\n      display.gutters.style.left = (comp + gutterW) + \"px\";\n  }\n\n  // Used to ensure that the line number gutter is still the right\n  // size for the current document size. Returns true when an update\n  // is needed.\n  function maybeUpdateLineNumberWidth(cm) {\n    if (!cm.options.lineNumbers) return false;\n    var doc = cm.doc, last = lineNumberFor(cm.options, doc.first + doc.size - 1), display = cm.display;\n    if (last.length != display.lineNumChars) {\n      var test = display.measure.appendChild(elt(\"div\", [elt(\"div\", last)],\n                                                 \"CodeMirror-linenumber CodeMirror-gutter-elt\"));\n      var innerW = test.firstChild.offsetWidth, padding = test.offsetWidth - innerW;\n      display.lineGutter.style.width = \"\";\n      display.lineNumInnerWidth = Math.max(innerW, display.lineGutter.offsetWidth - padding);\n      display.lineNumWidth = display.lineNumInnerWidth + padding;\n      display.lineNumChars = display.lineNumInnerWidth ? last.length : -1;\n      display.lineGutter.style.width = display.lineNumWidth + \"px\";\n      updateGutterSpace(cm);\n      return true;\n    }\n    return false;\n  }\n\n  function lineNumberFor(options, i) {\n    return String(options.lineNumberFormatter(i + options.firstLineNumber));\n  }\n\n  // Computes display.scroller.scrollLeft + display.gutters.offsetWidth,\n  // but using getBoundingClientRect to get a sub-pixel-accurate\n  // result.\n  function compensateForHScroll(display) {\n    return display.scroller.getBoundingClientRect().left - display.sizer.getBoundingClientRect().left;\n  }\n\n  // DISPLAY DRAWING\n\n  function DisplayUpdate(cm, viewport, force) {\n    var display = cm.display;\n\n    this.viewport = viewport;\n    // Store some values that we'll need later (but don't want to force a relayout for)\n    this.visible = visibleLines(display, cm.doc, viewport);\n    this.editorIsHidden = !display.wrapper.offsetWidth;\n    this.wrapperHeight = display.wrapper.clientHeight;\n    this.oldViewFrom = display.viewFrom; this.oldViewTo = display.viewTo;\n    this.oldScrollerWidth = display.scroller.clientWidth;\n    this.force = force;\n    this.dims = getDimensions(cm);\n  }\n\n  // Does the actual updating of the line display. Bails out\n  // (returning false) when there is nothing to be done and forced is\n  // false.\n  function updateDisplayIfNeeded(cm, update) {\n    var display = cm.display, doc = cm.doc;\n    if (update.editorIsHidden) {\n      resetView(cm);\n      return false;\n    }\n\n    // Bail out if the visible area is already rendered and nothing changed.\n    if (!update.force &&\n        update.visible.from >= display.viewFrom && update.visible.to <= display.viewTo &&\n        (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo) &&\n        countDirtyView(cm) == 0)\n      return false;\n\n    if (maybeUpdateLineNumberWidth(cm)) {\n      resetView(cm);\n      update.dims = getDimensions(cm);\n    }\n\n    // Compute a suitable new viewport (from & to)\n    var end = doc.first + doc.size;\n    var from = Math.max(update.visible.from - cm.options.viewportMargin, doc.first);\n    var to = Math.min(end, update.visible.to + cm.options.viewportMargin);\n    if (display.viewFrom < from && from - display.viewFrom < 20) from = Math.max(doc.first, display.viewFrom);\n    if (display.viewTo > to && display.viewTo - to < 20) to = Math.min(end, display.viewTo);\n    if (sawCollapsedSpans) {\n      from = visualLineNo(cm.doc, from);\n      to = visualLineEndNo(cm.doc, to);\n    }\n\n    var different = from != display.viewFrom || to != display.viewTo ||\n      display.lastSizeC != update.wrapperHeight;\n    adjustView(cm, from, to);\n\n    display.viewOffset = heightAtLine(getLine(cm.doc, display.viewFrom));\n    // Position the mover div to align with the current scroll position\n    cm.display.mover.style.top = display.viewOffset + \"px\";\n\n    var toUpdate = countDirtyView(cm);\n    if (!different && toUpdate == 0 && !update.force &&\n        (display.updateLineNumbers == null || display.updateLineNumbers >= display.viewTo))\n      return false;\n\n    // For big changes, we hide the enclosing element during the\n    // update, since that speeds up the operations on most browsers.\n    var focused = activeElt();\n    if (toUpdate > 4) display.lineDiv.style.display = \"none\";\n    patchDisplay(cm, display.updateLineNumbers, update.dims);\n    if (toUpdate > 4) display.lineDiv.style.display = \"\";\n    // There might have been a widget with a focused element that got\n    // hidden or updated, if so re-focus it.\n    if (focused && activeElt() != focused && focused.offsetHeight) focused.focus();\n\n    // Prevent selection and cursors from interfering with the scroll\n    // width.\n    removeChildren(display.cursorDiv);\n    removeChildren(display.selectionDiv);\n\n    if (different) {\n      display.lastSizeC = update.wrapperHeight;\n      startWorker(cm, 400);\n    }\n\n    display.updateLineNumbers = null;\n\n    return true;\n  }\n\n  function postUpdateDisplay(cm, update) {\n    var force = update.force, viewport = update.viewport;\n    for (var first = true;; first = false) {\n      if (first && cm.options.lineWrapping && update.oldScrollerWidth != cm.display.scroller.clientWidth) {\n        force = true;\n      } else {\n        force = false;\n        // Clip forced viewport to actual scrollable area.\n        if (viewport && viewport.top != null)\n          viewport = {top: Math.min(cm.doc.height + paddingVert(cm.display) - scrollerCutOff -\n                                    cm.display.scroller.clientHeight, viewport.top)};\n        // Updated line heights might result in the drawn area not\n        // actually covering the viewport. Keep looping until it does.\n        update.visible = visibleLines(cm.display, cm.doc, viewport);\n        if (update.visible.from >= cm.display.viewFrom && update.visible.to <= cm.display.viewTo)\n          break;\n      }\n      if (!updateDisplayIfNeeded(cm, update)) break;\n      updateHeightsInViewport(cm);\n      var barMeasure = measureForScrollbars(cm);\n      updateSelection(cm);\n      setDocumentHeight(cm, barMeasure);\n      updateScrollbars(cm, barMeasure);\n    }\n\n    signalLater(cm, \"update\", cm);\n    if (cm.display.viewFrom != update.oldViewFrom || cm.display.viewTo != update.oldViewTo)\n      signalLater(cm, \"viewportChange\", cm, cm.display.viewFrom, cm.display.viewTo);\n  }\n\n  function updateDisplaySimple(cm, viewport) {\n    var update = new DisplayUpdate(cm, viewport);\n    if (updateDisplayIfNeeded(cm, update)) {\n      updateHeightsInViewport(cm);\n      postUpdateDisplay(cm, update);\n      var barMeasure = measureForScrollbars(cm);\n      updateSelection(cm);\n      setDocumentHeight(cm, barMeasure);\n      updateScrollbars(cm, barMeasure);\n    }\n  }\n\n  function setDocumentHeight(cm, measure) {\n    cm.display.sizer.style.minHeight = cm.display.heightForcer.style.top = measure.docHeight + \"px\";\n    cm.display.gutters.style.height = Math.max(measure.docHeight, measure.clientHeight - scrollerCutOff) + \"px\";\n  }\n\n  function checkForWebkitWidthBug(cm, measure) {\n    // Work around Webkit bug where it sometimes reserves space for a\n    // non-existing phantom scrollbar in the scroller (Issue #2420)\n    if (cm.display.sizer.offsetWidth + cm.display.gutters.offsetWidth < cm.display.scroller.clientWidth - 1) {\n      cm.display.sizer.style.minHeight = cm.display.heightForcer.style.top = \"0px\";\n      cm.display.gutters.style.height = measure.docHeight + \"px\";\n    }\n  }\n\n  // Read the actual heights of the rendered lines, and update their\n  // stored heights to match.\n  function updateHeightsInViewport(cm) {\n    var display = cm.display;\n    var prevBottom = display.lineDiv.offsetTop;\n    for (var i = 0; i < display.view.length; i++) {\n      var cur = display.view[i], height;\n      if (cur.hidden) continue;\n      if (ie && ie_version < 8) {\n        var bot = cur.node.offsetTop + cur.node.offsetHeight;\n        height = bot - prevBottom;\n        prevBottom = bot;\n      } else {\n        var box = cur.node.getBoundingClientRect();\n        height = box.bottom - box.top;\n      }\n      var diff = cur.line.height - height;\n      if (height < 2) height = textHeight(display);\n      if (diff > .001 || diff < -.001) {\n        updateLineHeight(cur.line, height);\n        updateWidgetHeight(cur.line);\n        if (cur.rest) for (var j = 0; j < cur.rest.length; j++)\n          updateWidgetHeight(cur.rest[j]);\n      }\n    }\n  }\n\n  // Read and store the height of line widgets associated with the\n  // given line.\n  function updateWidgetHeight(line) {\n    if (line.widgets) for (var i = 0; i < line.widgets.length; ++i)\n      line.widgets[i].height = line.widgets[i].node.offsetHeight;\n  }\n\n  // Do a bulk-read of the DOM positions and sizes needed to draw the\n  // view, so that we don't interleave reading and writing to the DOM.\n  function getDimensions(cm) {\n    var d = cm.display, left = {}, width = {};\n    var gutterLeft = d.gutters.clientLeft;\n    for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) {\n      left[cm.options.gutters[i]] = n.offsetLeft + n.clientLeft + gutterLeft;\n      width[cm.options.gutters[i]] = n.clientWidth;\n    }\n    return {fixedPos: compensateForHScroll(d),\n            gutterTotalWidth: d.gutters.offsetWidth,\n            gutterLeft: left,\n            gutterWidth: width,\n            wrapperWidth: d.wrapper.clientWidth};\n  }\n\n  // Sync the actual display DOM structure with display.view, removing\n  // nodes for lines that are no longer in view, and creating the ones\n  // that are not there yet, and updating the ones that are out of\n  // date.\n  function patchDisplay(cm, updateNumbersFrom, dims) {\n    var display = cm.display, lineNumbers = cm.options.lineNumbers;\n    var container = display.lineDiv, cur = container.firstChild;\n\n    function rm(node) {\n      var next = node.nextSibling;\n      // Works around a throw-scroll bug in OS X Webkit\n      if (webkit && mac && cm.display.currentWheelTarget == node)\n        node.style.display = \"none\";\n      else\n        node.parentNode.removeChild(node);\n      return next;\n    }\n\n    var view = display.view, lineN = display.viewFrom;\n    // Loop over the elements in the view, syncing cur (the DOM nodes\n    // in display.lineDiv) with the view as we go.\n    for (var i = 0; i < view.length; i++) {\n      var lineView = view[i];\n      if (lineView.hidden) {\n      } else if (!lineView.node) { // Not drawn yet\n        var node = buildLineElement(cm, lineView, lineN, dims);\n        container.insertBefore(node, cur);\n      } else { // Already drawn\n        while (cur != lineView.node) cur = rm(cur);\n        var updateNumber = lineNumbers && updateNumbersFrom != null &&\n          updateNumbersFrom <= lineN && lineView.lineNumber;\n        if (lineView.changes) {\n          if (indexOf(lineView.changes, \"gutter\") > -1) updateNumber = false;\n          updateLineForChanges(cm, lineView, lineN, dims);\n        }\n        if (updateNumber) {\n          removeChildren(lineView.lineNumber);\n          lineView.lineNumber.appendChild(document.createTextNode(lineNumberFor(cm.options, lineN)));\n        }\n        cur = lineView.node.nextSibling;\n      }\n      lineN += lineView.size;\n    }\n    while (cur) cur = rm(cur);\n  }\n\n  // When an aspect of a line changes, a string is added to\n  // lineView.changes. This updates the relevant part of the line's\n  // DOM structure.\n  function updateLineForChanges(cm, lineView, lineN, dims) {\n    for (var j = 0; j < lineView.changes.length; j++) {\n      var type = lineView.changes[j];\n      if (type == \"text\") updateLineText(cm, lineView);\n      else if (type == \"gutter\") updateLineGutter(cm, lineView, lineN, dims);\n      else if (type == \"class\") updateLineClasses(lineView);\n      else if (type == \"widget\") updateLineWidgets(lineView, dims);\n    }\n    lineView.changes = null;\n  }\n\n  // Lines with gutter elements, widgets or a background class need to\n  // be wrapped, and have the extra elements added to the wrapper div\n  function ensureLineWrapped(lineView) {\n    if (lineView.node == lineView.text) {\n      lineView.node = elt(\"div\", null, null, \"position: relative\");\n      if (lineView.text.parentNode)\n        lineView.text.parentNode.replaceChild(lineView.node, lineView.text);\n      lineView.node.appendChild(lineView.text);\n      if (ie && ie_version < 8) lineView.node.style.zIndex = 2;\n    }\n    return lineView.node;\n  }\n\n  function updateLineBackground(lineView) {\n    var cls = lineView.bgClass ? lineView.bgClass + \" \" + (lineView.line.bgClass || \"\") : lineView.line.bgClass;\n    if (cls) cls += \" CodeMirror-linebackground\";\n    if (lineView.background) {\n      if (cls) lineView.background.className = cls;\n      else { lineView.background.parentNode.removeChild(lineView.background); lineView.background = null; }\n    } else if (cls) {\n      var wrap = ensureLineWrapped(lineView);\n      lineView.background = wrap.insertBefore(elt(\"div\", null, cls), wrap.firstChild);\n    }\n  }\n\n  // Wrapper around buildLineContent which will reuse the structure\n  // in display.externalMeasured when possible.\n  function getLineContent(cm, lineView) {\n    var ext = cm.display.externalMeasured;\n    if (ext && ext.line == lineView.line) {\n      cm.display.externalMeasured = null;\n      lineView.measure = ext.measure;\n      return ext.built;\n    }\n    return buildLineContent(cm, lineView);\n  }\n\n  // Redraw the line's text. Interacts with the background and text\n  // classes because the mode may output tokens that influence these\n  // classes.\n  function updateLineText(cm, lineView) {\n    var cls = lineView.text.className;\n    var built = getLineContent(cm, lineView);\n    if (lineView.text == lineView.node) lineView.node = built.pre;\n    lineView.text.parentNode.replaceChild(built.pre, lineView.text);\n    lineView.text = built.pre;\n    if (built.bgClass != lineView.bgClass || built.textClass != lineView.textClass) {\n      lineView.bgClass = built.bgClass;\n      lineView.textClass = built.textClass;\n      updateLineClasses(lineView);\n    } else if (cls) {\n      lineView.text.className = cls;\n    }\n  }\n\n  function updateLineClasses(lineView) {\n    updateLineBackground(lineView);\n    if (lineView.line.wrapClass)\n      ensureLineWrapped(lineView).className = lineView.line.wrapClass;\n    else if (lineView.node != lineView.text)\n      lineView.node.className = \"\";\n    var textClass = lineView.textClass ? lineView.textClass + \" \" + (lineView.line.textClass || \"\") : lineView.line.textClass;\n    lineView.text.className = textClass || \"\";\n  }\n\n  function updateLineGutter(cm, lineView, lineN, dims) {\n    if (lineView.gutter) {\n      lineView.node.removeChild(lineView.gutter);\n      lineView.gutter = null;\n    }\n    var markers = lineView.line.gutterMarkers;\n    if (cm.options.lineNumbers || markers) {\n      var wrap = ensureLineWrapped(lineView);\n      var gutterWrap = lineView.gutter =\n        wrap.insertBefore(elt(\"div\", null, \"CodeMirror-gutter-wrapper\", \"position: absolute; left: \" +\n                              (cm.options.fixedGutter ? dims.fixedPos : -dims.gutterTotalWidth) + \"px\"),\n                          lineView.text);\n      if (cm.options.lineNumbers && (!markers || !markers[\"CodeMirror-linenumbers\"]))\n        lineView.lineNumber = gutterWrap.appendChild(\n          elt(\"div\", lineNumberFor(cm.options, lineN),\n              \"CodeMirror-linenumber CodeMirror-gutter-elt\",\n              \"left: \" + dims.gutterLeft[\"CodeMirror-linenumbers\"] + \"px; width: \"\n              + cm.display.lineNumInnerWidth + \"px\"));\n      if (markers) for (var k = 0; k < cm.options.gutters.length; ++k) {\n        var id = cm.options.gutters[k], found = markers.hasOwnProperty(id) && markers[id];\n        if (found)\n          gutterWrap.appendChild(elt(\"div\", [found], \"CodeMirror-gutter-elt\", \"left: \" +\n                                     dims.gutterLeft[id] + \"px; width: \" + dims.gutterWidth[id] + \"px\"));\n      }\n    }\n  }\n\n  function updateLineWidgets(lineView, dims) {\n    if (lineView.alignable) lineView.alignable = null;\n    for (var node = lineView.node.firstChild, next; node; node = next) {\n      var next = node.nextSibling;\n      if (node.className == \"CodeMirror-linewidget\")\n        lineView.node.removeChild(node);\n    }\n    insertLineWidgets(lineView, dims);\n  }\n\n  // Build a line's DOM representation from scratch\n  function buildLineElement(cm, lineView, lineN, dims) {\n    var built = getLineContent(cm, lineView);\n    lineView.text = lineView.node = built.pre;\n    if (built.bgClass) lineView.bgClass = built.bgClass;\n    if (built.textClass) lineView.textClass = built.textClass;\n\n    updateLineClasses(lineView);\n    updateLineGutter(cm, lineView, lineN, dims);\n    insertLineWidgets(lineView, dims);\n    return lineView.node;\n  }\n\n  // A lineView may contain multiple logical lines (when merged by\n  // collapsed spans). The widgets for all of them need to be drawn.\n  function insertLineWidgets(lineView, dims) {\n    insertLineWidgetsFor(lineView.line, lineView, dims, true);\n    if (lineView.rest) for (var i = 0; i < lineView.rest.length; i++)\n      insertLineWidgetsFor(lineView.rest[i], lineView, dims, false);\n  }\n\n  function insertLineWidgetsFor(line, lineView, dims, allowAbove) {\n    if (!line.widgets) return;\n    var wrap = ensureLineWrapped(lineView);\n    for (var i = 0, ws = line.widgets; i < ws.length; ++i) {\n      var widget = ws[i], node = elt(\"div\", [widget.node], \"CodeMirror-linewidget\");\n      if (!widget.handleMouseEvents) node.ignoreEvents = true;\n      positionLineWidget(widget, node, lineView, dims);\n      if (allowAbove && widget.above)\n        wrap.insertBefore(node, lineView.gutter || lineView.text);\n      else\n        wrap.appendChild(node);\n      signalLater(widget, \"redraw\");\n    }\n  }\n\n  function positionLineWidget(widget, node, lineView, dims) {\n    if (widget.noHScroll) {\n      (lineView.alignable || (lineView.alignable = [])).push(node);\n      var width = dims.wrapperWidth;\n      node.style.left = dims.fixedPos + \"px\";\n      if (!widget.coverGutter) {\n        width -= dims.gutterTotalWidth;\n        node.style.paddingLeft = dims.gutterTotalWidth + \"px\";\n      }\n      node.style.width = width + \"px\";\n    }\n    if (widget.coverGutter) {\n      node.style.zIndex = 5;\n      node.style.position = \"relative\";\n      if (!widget.noHScroll) node.style.marginLeft = -dims.gutterTotalWidth + \"px\";\n    }\n  }\n\n  // POSITION OBJECT\n\n  // A Pos instance represents a position within the text.\n  var Pos = CodeMirror.Pos = function(line, ch) {\n    if (!(this instanceof Pos)) return new Pos(line, ch);\n    this.line = line; this.ch = ch;\n  };\n\n  // Compare two positions, return 0 if they are the same, a negative\n  // number when a is less, and a positive number otherwise.\n  var cmp = CodeMirror.cmpPos = function(a, b) { return a.line - b.line || a.ch - b.ch; };\n\n  function copyPos(x) {return Pos(x.line, x.ch);}\n  function maxPos(a, b) { return cmp(a, b) < 0 ? b : a; }\n  function minPos(a, b) { return cmp(a, b) < 0 ? a : b; }\n\n  // SELECTION / CURSOR\n\n  // Selection objects are immutable. A new one is created every time\n  // the selection changes. A selection is one or more non-overlapping\n  // (and non-touching) ranges, sorted, and an integer that indicates\n  // which one is the primary selection (the one that's scrolled into\n  // view, that getCursor returns, etc).\n  function Selection(ranges, primIndex) {\n    this.ranges = ranges;\n    this.primIndex = primIndex;\n  }\n\n  Selection.prototype = {\n    primary: function() { return this.ranges[this.primIndex]; },\n    equals: function(other) {\n      if (other == this) return true;\n      if (other.primIndex != this.primIndex || other.ranges.length != this.ranges.length) return false;\n      for (var i = 0; i < this.ranges.length; i++) {\n        var here = this.ranges[i], there = other.ranges[i];\n        if (cmp(here.anchor, there.anchor) != 0 || cmp(here.head, there.head) != 0) return false;\n      }\n      return true;\n    },\n    deepCopy: function() {\n      for (var out = [], i = 0; i < this.ranges.length; i++)\n        out[i] = new Range(copyPos(this.ranges[i].anchor), copyPos(this.ranges[i].head));\n      return new Selection(out, this.primIndex);\n    },\n    somethingSelected: function() {\n      for (var i = 0; i < this.ranges.length; i++)\n        if (!this.ranges[i].empty()) return true;\n      return false;\n    },\n    contains: function(pos, end) {\n      if (!end) end = pos;\n      for (var i = 0; i < this.ranges.length; i++) {\n        var range = this.ranges[i];\n        if (cmp(end, range.from()) >= 0 && cmp(pos, range.to()) <= 0)\n          return i;\n      }\n      return -1;\n    }\n  };\n\n  function Range(anchor, head) {\n    this.anchor = anchor; this.head = head;\n  }\n\n  Range.prototype = {\n    from: function() { return minPos(this.anchor, this.head); },\n    to: function() { return maxPos(this.anchor, this.head); },\n    empty: function() {\n      return this.head.line == this.anchor.line && this.head.ch == this.anchor.ch;\n    }\n  };\n\n  // Take an unsorted, potentially overlapping set of ranges, and\n  // build a selection out of it. 'Consumes' ranges array (modifying\n  // it).\n  function normalizeSelection(ranges, primIndex) {\n    var prim = ranges[primIndex];\n    ranges.sort(function(a, b) { return cmp(a.from(), b.from()); });\n    primIndex = indexOf(ranges, prim);\n    for (var i = 1; i < ranges.length; i++) {\n      var cur = ranges[i], prev = ranges[i - 1];\n      if (cmp(prev.to(), cur.from()) >= 0) {\n        var from = minPos(prev.from(), cur.from()), to = maxPos(prev.to(), cur.to());\n        var inv = prev.empty() ? cur.from() == cur.head : prev.from() == prev.head;\n        if (i <= primIndex) --primIndex;\n        ranges.splice(--i, 2, new Range(inv ? to : from, inv ? from : to));\n      }\n    }\n    return new Selection(ranges, primIndex);\n  }\n\n  function simpleSelection(anchor, head) {\n    return new Selection([new Range(anchor, head || anchor)], 0);\n  }\n\n  // Most of the external API clips given positions to make sure they\n  // actually exist within the document.\n  function clipLine(doc, n) {return Math.max(doc.first, Math.min(n, doc.first + doc.size - 1));}\n  function clipPos(doc, pos) {\n    if (pos.line < doc.first) return Pos(doc.first, 0);\n    var last = doc.first + doc.size - 1;\n    if (pos.line > last) return Pos(last, getLine(doc, last).text.length);\n    return clipToLen(pos, getLine(doc, pos.line).text.length);\n  }\n  function clipToLen(pos, linelen) {\n    var ch = pos.ch;\n    if (ch == null || ch > linelen) return Pos(pos.line, linelen);\n    else if (ch < 0) return Pos(pos.line, 0);\n    else return pos;\n  }\n  function isLine(doc, l) {return l >= doc.first && l < doc.first + doc.size;}\n  function clipPosArray(doc, array) {\n    for (var out = [], i = 0; i < array.length; i++) out[i] = clipPos(doc, array[i]);\n    return out;\n  }\n\n  // SELECTION UPDATES\n\n  // The 'scroll' parameter given to many of these indicated whether\n  // the new cursor position should be scrolled into view after\n  // modifying the selection.\n\n  // If shift is held or the extend flag is set, extends a range to\n  // include a given position (and optionally a second position).\n  // Otherwise, simply returns the range between the given positions.\n  // Used for cursor motion and such.\n  function extendRange(doc, range, head, other) {\n    if (doc.cm && doc.cm.display.shift || doc.extend) {\n      var anchor = range.anchor;\n      if (other) {\n        var posBefore = cmp(head, anchor) < 0;\n        if (posBefore != (cmp(other, anchor) < 0)) {\n          anchor = head;\n          head = other;\n        } else if (posBefore != (cmp(head, other) < 0)) {\n          head = other;\n        }\n      }\n      return new Range(anchor, head);\n    } else {\n      return new Range(other || head, head);\n    }\n  }\n\n  // Extend the primary selection range, discard the rest.\n  function extendSelection(doc, head, other, options) {\n    setSelection(doc, new Selection([extendRange(doc, doc.sel.primary(), head, other)], 0), options);\n  }\n\n  // Extend all selections (pos is an array of selections with length\n  // equal the number of selections)\n  function extendSelections(doc, heads, options) {\n    for (var out = [], i = 0; i < doc.sel.ranges.length; i++)\n      out[i] = extendRange(doc, doc.sel.ranges[i], heads[i], null);\n    var newSel = normalizeSelection(out, doc.sel.primIndex);\n    setSelection(doc, newSel, options);\n  }\n\n  // Updates a single range in the selection.\n  function replaceOneSelection(doc, i, range, options) {\n    var ranges = doc.sel.ranges.slice(0);\n    ranges[i] = range;\n    setSelection(doc, normalizeSelection(ranges, doc.sel.primIndex), options);\n  }\n\n  // Reset the selection to a single range.\n  function setSimpleSelection(doc, anchor, head, options) {\n    setSelection(doc, simpleSelection(anchor, head), options);\n  }\n\n  // Give beforeSelectionChange handlers a change to influence a\n  // selection update.\n  function filterSelectionChange(doc, sel) {\n    var obj = {\n      ranges: sel.ranges,\n      update: function(ranges) {\n        this.ranges = [];\n        for (var i = 0; i < ranges.length; i++)\n          this.ranges[i] = new Range(clipPos(doc, ranges[i].anchor),\n                                     clipPos(doc, ranges[i].head));\n      }\n    };\n    signal(doc, \"beforeSelectionChange\", doc, obj);\n    if (doc.cm) signal(doc.cm, \"beforeSelectionChange\", doc.cm, obj);\n    if (obj.ranges != sel.ranges) return normalizeSelection(obj.ranges, obj.ranges.length - 1);\n    else return sel;\n  }\n\n  function setSelectionReplaceHistory(doc, sel, options) {\n    var done = doc.history.done, last = lst(done);\n    if (last && last.ranges) {\n      done[done.length - 1] = sel;\n      setSelectionNoUndo(doc, sel, options);\n    } else {\n      setSelection(doc, sel, options);\n    }\n  }\n\n  // Set a new selection.\n  function setSelection(doc, sel, options) {\n    setSelectionNoUndo(doc, sel, options);\n    addSelectionToHistory(doc, doc.sel, doc.cm ? doc.cm.curOp.id : NaN, options);\n  }\n\n  function setSelectionNoUndo(doc, sel, options) {\n    if (hasHandler(doc, \"beforeSelectionChange\") || doc.cm && hasHandler(doc.cm, \"beforeSelectionChange\"))\n      sel = filterSelectionChange(doc, sel);\n\n    var bias = options && options.bias ||\n      (cmp(sel.primary().head, doc.sel.primary().head) < 0 ? -1 : 1);\n    setSelectionInner(doc, skipAtomicInSelection(doc, sel, bias, true));\n\n    if (!(options && options.scroll === false) && doc.cm)\n      ensureCursorVisible(doc.cm);\n  }\n\n  function setSelectionInner(doc, sel) {\n    if (sel.equals(doc.sel)) return;\n\n    doc.sel = sel;\n\n    if (doc.cm) {\n      doc.cm.curOp.updateInput = doc.cm.curOp.selectionChanged = true;\n      signalCursorActivity(doc.cm);\n    }\n    signalLater(doc, \"cursorActivity\", doc);\n  }\n\n  // Verify that the selection does not partially select any atomic\n  // marked ranges.\n  function reCheckSelection(doc) {\n    setSelectionInner(doc, skipAtomicInSelection(doc, doc.sel, null, false), sel_dontScroll);\n  }\n\n  // Return a selection that does not partially select any atomic\n  // ranges.\n  function skipAtomicInSelection(doc, sel, bias, mayClear) {\n    var out;\n    for (var i = 0; i < sel.ranges.length; i++) {\n      var range = sel.ranges[i];\n      var newAnchor = skipAtomic(doc, range.anchor, bias, mayClear);\n      var newHead = skipAtomic(doc, range.head, bias, mayClear);\n      if (out || newAnchor != range.anchor || newHead != range.head) {\n        if (!out) out = sel.ranges.slice(0, i);\n        out[i] = new Range(newAnchor, newHead);\n      }\n    }\n    return out ? normalizeSelection(out, sel.primIndex) : sel;\n  }\n\n  // Ensure a given position is not inside an atomic range.\n  function skipAtomic(doc, pos, bias, mayClear) {\n    var flipped = false, curPos = pos;\n    var dir = bias || 1;\n    doc.cantEdit = false;\n    search: for (;;) {\n      var line = getLine(doc, curPos.line);\n      if (line.markedSpans) {\n        for (var i = 0; i < line.markedSpans.length; ++i) {\n          var sp = line.markedSpans[i], m = sp.marker;\n          if ((sp.from == null || (m.inclusiveLeft ? sp.from <= curPos.ch : sp.from < curPos.ch)) &&\n              (sp.to == null || (m.inclusiveRight ? sp.to >= curPos.ch : sp.to > curPos.ch))) {\n            if (mayClear) {\n              signal(m, \"beforeCursorEnter\");\n              if (m.explicitlyCleared) {\n                if (!line.markedSpans) break;\n                else {--i; continue;}\n              }\n            }\n            if (!m.atomic) continue;\n            var newPos = m.find(dir < 0 ? -1 : 1);\n            if (cmp(newPos, curPos) == 0) {\n              newPos.ch += dir;\n              if (newPos.ch < 0) {\n                if (newPos.line > doc.first) newPos = clipPos(doc, Pos(newPos.line - 1));\n                else newPos = null;\n              } else if (newPos.ch > line.text.length) {\n                if (newPos.line < doc.first + doc.size - 1) newPos = Pos(newPos.line + 1, 0);\n                else newPos = null;\n              }\n              if (!newPos) {\n                if (flipped) {\n                  // Driven in a corner -- no valid cursor position found at all\n                  // -- try again *with* clearing, if we didn't already\n                  if (!mayClear) return skipAtomic(doc, pos, bias, true);\n                  // Otherwise, turn off editing until further notice, and return the start of the doc\n                  doc.cantEdit = true;\n                  return Pos(doc.first, 0);\n                }\n                flipped = true; newPos = pos; dir = -dir;\n              }\n            }\n            curPos = newPos;\n            continue search;\n          }\n        }\n      }\n      return curPos;\n    }\n  }\n\n  // SELECTION DRAWING\n\n  // Redraw the selection and/or cursor\n  function drawSelection(cm) {\n    var display = cm.display, doc = cm.doc, result = {};\n    var curFragment = result.cursors = document.createDocumentFragment();\n    var selFragment = result.selection = document.createDocumentFragment();\n\n    for (var i = 0; i < doc.sel.ranges.length; i++) {\n      var range = doc.sel.ranges[i];\n      var collapsed = range.empty();\n      if (collapsed || cm.options.showCursorWhenSelecting)\n        drawSelectionCursor(cm, range, curFragment);\n      if (!collapsed)\n        drawSelectionRange(cm, range, selFragment);\n    }\n\n    // Move the hidden textarea near the cursor to prevent scrolling artifacts\n    if (cm.options.moveInputWithCursor) {\n      var headPos = cursorCoords(cm, doc.sel.primary().head, \"div\");\n      var wrapOff = display.wrapper.getBoundingClientRect(), lineOff = display.lineDiv.getBoundingClientRect();\n      result.teTop = Math.max(0, Math.min(display.wrapper.clientHeight - 10,\n                                          headPos.top + lineOff.top - wrapOff.top));\n      result.teLeft = Math.max(0, Math.min(display.wrapper.clientWidth - 10,\n                                           headPos.left + lineOff.left - wrapOff.left));\n    }\n\n    return result;\n  }\n\n  function showSelection(cm, drawn) {\n    removeChildrenAndAdd(cm.display.cursorDiv, drawn.cursors);\n    removeChildrenAndAdd(cm.display.selectionDiv, drawn.selection);\n    if (drawn.teTop != null) {\n      cm.display.inputDiv.style.top = drawn.teTop + \"px\";\n      cm.display.inputDiv.style.left = drawn.teLeft + \"px\";\n    }\n  }\n\n  function updateSelection(cm) {\n    showSelection(cm, drawSelection(cm));\n  }\n\n  // Draws a cursor for the given range\n  function drawSelectionCursor(cm, range, output) {\n    var pos = cursorCoords(cm, range.head, \"div\", null, null, !cm.options.singleCursorHeightPerLine);\n\n    var cursor = output.appendChild(elt(\"div\", \"\\u00a0\", \"CodeMirror-cursor\"));\n    cursor.style.left = pos.left + \"px\";\n    cursor.style.top = pos.top + \"px\";\n    cursor.style.height = Math.max(0, pos.bottom - pos.top) * cm.options.cursorHeight + \"px\";\n\n    if (pos.other) {\n      // Secondary cursor, shown when on a 'jump' in bi-directional text\n      var otherCursor = output.appendChild(elt(\"div\", \"\\u00a0\", \"CodeMirror-cursor CodeMirror-secondarycursor\"));\n      otherCursor.style.display = \"\";\n      otherCursor.style.left = pos.other.left + \"px\";\n      otherCursor.style.top = pos.other.top + \"px\";\n      otherCursor.style.height = (pos.other.bottom - pos.other.top) * .85 + \"px\";\n    }\n  }\n\n  // Draws the given range as a highlighted selection\n  function drawSelectionRange(cm, range, output) {\n    var display = cm.display, doc = cm.doc;\n    var fragment = document.createDocumentFragment();\n    var padding = paddingH(cm.display), leftSide = padding.left, rightSide = display.lineSpace.offsetWidth - padding.right;\n\n    function add(left, top, width, bottom) {\n      if (top < 0) top = 0;\n      top = Math.round(top);\n      bottom = Math.round(bottom);\n      fragment.appendChild(elt(\"div\", null, \"CodeMirror-selected\", \"position: absolute; left: \" + left +\n                               \"px; top: \" + top + \"px; width: \" + (width == null ? rightSide - left : width) +\n                               \"px; height: \" + (bottom - top) + \"px\"));\n    }\n\n    function drawForLine(line, fromArg, toArg) {\n      var lineObj = getLine(doc, line);\n      var lineLen = lineObj.text.length;\n      var start, end;\n      function coords(ch, bias) {\n        return charCoords(cm, Pos(line, ch), \"div\", lineObj, bias);\n      }\n\n      iterateBidiSections(getOrder(lineObj), fromArg || 0, toArg == null ? lineLen : toArg, function(from, to, dir) {\n        var leftPos = coords(from, \"left\"), rightPos, left, right;\n        if (from == to) {\n          rightPos = leftPos;\n          left = right = leftPos.left;\n        } else {\n          rightPos = coords(to - 1, \"right\");\n          if (dir == \"rtl\") { var tmp = leftPos; leftPos = rightPos; rightPos = tmp; }\n          left = leftPos.left;\n          right = rightPos.right;\n        }\n        if (fromArg == null && from == 0) left = leftSide;\n        if (rightPos.top - leftPos.top > 3) { // Different lines, draw top part\n          add(left, leftPos.top, null, leftPos.bottom);\n          left = leftSide;\n          if (leftPos.bottom < rightPos.top) add(left, leftPos.bottom, null, rightPos.top);\n        }\n        if (toArg == null && to == lineLen) right = rightSide;\n        if (!start || leftPos.top < start.top || leftPos.top == start.top && leftPos.left < start.left)\n          start = leftPos;\n        if (!end || rightPos.bottom > end.bottom || rightPos.bottom == end.bottom && rightPos.right > end.right)\n          end = rightPos;\n        if (left < leftSide + 1) left = leftSide;\n        add(left, rightPos.top, right - left, rightPos.bottom);\n      });\n      return {start: start, end: end};\n    }\n\n    var sFrom = range.from(), sTo = range.to();\n    if (sFrom.line == sTo.line) {\n      drawForLine(sFrom.line, sFrom.ch, sTo.ch);\n    } else {\n      var fromLine = getLine(doc, sFrom.line), toLine = getLine(doc, sTo.line);\n      var singleVLine = visualLine(fromLine) == visualLine(toLine);\n      var leftEnd = drawForLine(sFrom.line, sFrom.ch, singleVLine ? fromLine.text.length + 1 : null).end;\n      var rightStart = drawForLine(sTo.line, singleVLine ? 0 : null, sTo.ch).start;\n      if (singleVLine) {\n        if (leftEnd.top < rightStart.top - 2) {\n          add(leftEnd.right, leftEnd.top, null, leftEnd.bottom);\n          add(leftSide, rightStart.top, rightStart.left, rightStart.bottom);\n        } else {\n          add(leftEnd.right, leftEnd.top, rightStart.left - leftEnd.right, leftEnd.bottom);\n        }\n      }\n      if (leftEnd.bottom < rightStart.top)\n        add(leftSide, leftEnd.bottom, null, rightStart.top);\n    }\n\n    output.appendChild(fragment);\n  }\n\n  // Cursor-blinking\n  function restartBlink(cm) {\n    if (!cm.state.focused) return;\n    var display = cm.display;\n    clearInterval(display.blinker);\n    var on = true;\n    display.cursorDiv.style.visibility = \"\";\n    if (cm.options.cursorBlinkRate > 0)\n      display.blinker = setInterval(function() {\n        display.cursorDiv.style.visibility = (on = !on) ? \"\" : \"hidden\";\n      }, cm.options.cursorBlinkRate);\n    else if (cm.options.cursorBlinkRate < 0)\n      display.cursorDiv.style.visibility = \"hidden\";\n  }\n\n  // HIGHLIGHT WORKER\n\n  function startWorker(cm, time) {\n    if (cm.doc.mode.startState && cm.doc.frontier < cm.display.viewTo)\n      cm.state.highlight.set(time, bind(highlightWorker, cm));\n  }\n\n  function highlightWorker(cm) {\n    var doc = cm.doc;\n    if (doc.frontier < doc.first) doc.frontier = doc.first;\n    if (doc.frontier >= cm.display.viewTo) return;\n    var end = +new Date + cm.options.workTime;\n    var state = copyState(doc.mode, getStateBefore(cm, doc.frontier));\n    var changedLines = [];\n\n    doc.iter(doc.frontier, Math.min(doc.first + doc.size, cm.display.viewTo + 500), function(line) {\n      if (doc.frontier >= cm.display.viewFrom) { // Visible\n        var oldStyles = line.styles;\n        var highlighted = highlightLine(cm, line, state, true);\n        line.styles = highlighted.styles;\n        var oldCls = line.styleClasses, newCls = highlighted.classes;\n        if (newCls) line.styleClasses = newCls;\n        else if (oldCls) line.styleClasses = null;\n        var ischange = !oldStyles || oldStyles.length != line.styles.length ||\n          oldCls != newCls && (!oldCls || !newCls || oldCls.bgClass != newCls.bgClass || oldCls.textClass != newCls.textClass);\n        for (var i = 0; !ischange && i < oldStyles.length; ++i) ischange = oldStyles[i] != line.styles[i];\n        if (ischange) changedLines.push(doc.frontier);\n        line.stateAfter = copyState(doc.mode, state);\n      } else {\n        processLine(cm, line.text, state);\n        line.stateAfter = doc.frontier % 5 == 0 ? copyState(doc.mode, state) : null;\n      }\n      ++doc.frontier;\n      if (+new Date > end) {\n        startWorker(cm, cm.options.workDelay);\n        return true;\n      }\n    });\n    if (changedLines.length) runInOp(cm, function() {\n      for (var i = 0; i < changedLines.length; i++)\n        regLineChange(cm, changedLines[i], \"text\");\n    });\n  }\n\n  // Finds the line to start with when starting a parse. Tries to\n  // find a line with a stateAfter, so that it can start with a\n  // valid state. If that fails, it returns the line with the\n  // smallest indentation, which tends to need the least context to\n  // parse correctly.\n  function findStartLine(cm, n, precise) {\n    var minindent, minline, doc = cm.doc;\n    var lim = precise ? -1 : n - (cm.doc.mode.innerMode ? 1000 : 100);\n    for (var search = n; search > lim; --search) {\n      if (search <= doc.first) return doc.first;\n      var line = getLine(doc, search - 1);\n      if (line.stateAfter && (!precise || search <= doc.frontier)) return search;\n      var indented = countColumn(line.text, null, cm.options.tabSize);\n      if (minline == null || minindent > indented) {\n        minline = search - 1;\n        minindent = indented;\n      }\n    }\n    return minline;\n  }\n\n  function getStateBefore(cm, n, precise) {\n    var doc = cm.doc, display = cm.display;\n    if (!doc.mode.startState) return true;\n    var pos = findStartLine(cm, n, precise), state = pos > doc.first && getLine(doc, pos-1).stateAfter;\n    if (!state) state = startState(doc.mode);\n    else state = copyState(doc.mode, state);\n    doc.iter(pos, n, function(line) {\n      processLine(cm, line.text, state);\n      var save = pos == n - 1 || pos % 5 == 0 || pos >= display.viewFrom && pos < display.viewTo;\n      line.stateAfter = save ? copyState(doc.mode, state) : null;\n      ++pos;\n    });\n    if (precise) doc.frontier = pos;\n    return state;\n  }\n\n  // POSITION MEASUREMENT\n\n  function paddingTop(display) {return display.lineSpace.offsetTop;}\n  function paddingVert(display) {return display.mover.offsetHeight - display.lineSpace.offsetHeight;}\n  function paddingH(display) {\n    if (display.cachedPaddingH) return display.cachedPaddingH;\n    var e = removeChildrenAndAdd(display.measure, elt(\"pre\", \"x\"));\n    var style = window.getComputedStyle ? window.getComputedStyle(e) : e.currentStyle;\n    var data = {left: parseInt(style.paddingLeft), right: parseInt(style.paddingRight)};\n    if (!isNaN(data.left) && !isNaN(data.right)) display.cachedPaddingH = data;\n    return data;\n  }\n\n  // Ensure the lineView.wrapping.heights array is populated. This is\n  // an array of bottom offsets for the lines that make up a drawn\n  // line. When lineWrapping is on, there might be more than one\n  // height.\n  function ensureLineHeights(cm, lineView, rect) {\n    var wrapping = cm.options.lineWrapping;\n    var curWidth = wrapping && cm.display.scroller.clientWidth;\n    if (!lineView.measure.heights || wrapping && lineView.measure.width != curWidth) {\n      var heights = lineView.measure.heights = [];\n      if (wrapping) {\n        lineView.measure.width = curWidth;\n        var rects = lineView.text.firstChild.getClientRects();\n        for (var i = 0; i < rects.length - 1; i++) {\n          var cur = rects[i], next = rects[i + 1];\n          if (Math.abs(cur.bottom - next.bottom) > 2)\n            heights.push((cur.bottom + next.top) / 2 - rect.top);\n        }\n      }\n      heights.push(rect.bottom - rect.top);\n    }\n  }\n\n  // Find a line map (mapping character offsets to text nodes) and a\n  // measurement cache for the given line number. (A line view might\n  // contain multiple lines when collapsed ranges are present.)\n  function mapFromLineView(lineView, line, lineN) {\n    if (lineView.line == line)\n      return {map: lineView.measure.map, cache: lineView.measure.cache};\n    for (var i = 0; i < lineView.rest.length; i++)\n      if (lineView.rest[i] == line)\n        return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i]};\n    for (var i = 0; i < lineView.rest.length; i++)\n      if (lineNo(lineView.rest[i]) > lineN)\n        return {map: lineView.measure.maps[i], cache: lineView.measure.caches[i], before: true};\n  }\n\n  // Render a line into the hidden node display.externalMeasured. Used\n  // when measurement is needed for a line that's not in the viewport.\n  function updateExternalMeasurement(cm, line) {\n    line = visualLine(line);\n    var lineN = lineNo(line);\n    var view = cm.display.externalMeasured = new LineView(cm.doc, line, lineN);\n    view.lineN = lineN;\n    var built = view.built = buildLineContent(cm, view);\n    view.text = built.pre;\n    removeChildrenAndAdd(cm.display.lineMeasure, built.pre);\n    return view;\n  }\n\n  // Get a {top, bottom, left, right} box (in line-local coordinates)\n  // for a given character.\n  function measureChar(cm, line, ch, bias) {\n    return measureCharPrepared(cm, prepareMeasureForLine(cm, line), ch, bias);\n  }\n\n  // Find a line view that corresponds to the given line number.\n  function findViewForLine(cm, lineN) {\n    if (lineN >= cm.display.viewFrom && lineN < cm.display.viewTo)\n      return cm.display.view[findViewIndex(cm, lineN)];\n    var ext = cm.display.externalMeasured;\n    if (ext && lineN >= ext.lineN && lineN < ext.lineN + ext.size)\n      return ext;\n  }\n\n  // Measurement can be split in two steps, the set-up work that\n  // applies to the whole line, and the measurement of the actual\n  // character. Functions like coordsChar, that need to do a lot of\n  // measurements in a row, can thus ensure that the set-up work is\n  // only done once.\n  function prepareMeasureForLine(cm, line) {\n    var lineN = lineNo(line);\n    var view = findViewForLine(cm, lineN);\n    if (view && !view.text)\n      view = null;\n    else if (view && view.changes)\n      updateLineForChanges(cm, view, lineN, getDimensions(cm));\n    if (!view)\n      view = updateExternalMeasurement(cm, line);\n\n    var info = mapFromLineView(view, line, lineN);\n    return {\n      line: line, view: view, rect: null,\n      map: info.map, cache: info.cache, before: info.before,\n      hasHeights: false\n    };\n  }\n\n  // Given a prepared measurement object, measures the position of an\n  // actual character (or fetches it from the cache).\n  function measureCharPrepared(cm, prepared, ch, bias, varHeight) {\n    if (prepared.before) ch = -1;\n    var key = ch + (bias || \"\"), found;\n    if (prepared.cache.hasOwnProperty(key)) {\n      found = prepared.cache[key];\n    } else {\n      if (!prepared.rect)\n        prepared.rect = prepared.view.text.getBoundingClientRect();\n      if (!prepared.hasHeights) {\n        ensureLineHeights(cm, prepared.view, prepared.rect);\n        prepared.hasHeights = true;\n      }\n      found = measureCharInner(cm, prepared, ch, bias);\n      if (!found.bogus) prepared.cache[key] = found;\n    }\n    return {left: found.left, right: found.right,\n            top: varHeight ? found.rtop : found.top,\n            bottom: varHeight ? found.rbottom : found.bottom};\n  }\n\n  var nullRect = {left: 0, right: 0, top: 0, bottom: 0};\n\n  function measureCharInner(cm, prepared, ch, bias) {\n    var map = prepared.map;\n\n    var node, start, end, collapse;\n    // First, search the line map for the text node corresponding to,\n    // or closest to, the target character.\n    for (var i = 0; i < map.length; i += 3) {\n      var mStart = map[i], mEnd = map[i + 1];\n      if (ch < mStart) {\n        start = 0; end = 1;\n        collapse = \"left\";\n      } else if (ch < mEnd) {\n        start = ch - mStart;\n        end = start + 1;\n      } else if (i == map.length - 3 || ch == mEnd && map[i + 3] > ch) {\n        end = mEnd - mStart;\n        start = end - 1;\n        if (ch >= mEnd) collapse = \"right\";\n      }\n      if (start != null) {\n        node = map[i + 2];\n        if (mStart == mEnd && bias == (node.insertLeft ? \"left\" : \"right\"))\n          collapse = bias;\n        if (bias == \"left\" && start == 0)\n          while (i && map[i - 2] == map[i - 3] && map[i - 1].insertLeft) {\n            node = map[(i -= 3) + 2];\n            collapse = \"left\";\n          }\n        if (bias == \"right\" && start == mEnd - mStart)\n          while (i < map.length - 3 && map[i + 3] == map[i + 4] && !map[i + 5].insertLeft) {\n            node = map[(i += 3) + 2];\n            collapse = \"right\";\n          }\n        break;\n      }\n    }\n\n    var rect;\n    if (node.nodeType == 3) { // If it is a text node, use a range to retrieve the coordinates.\n      for (var i = 0; i < 4; i++) { // Retry a maximum of 4 times when nonsense rectangles are returned\n        while (start && isExtendingChar(prepared.line.text.charAt(mStart + start))) --start;\n        while (mStart + end < mEnd && isExtendingChar(prepared.line.text.charAt(mStart + end))) ++end;\n        if (ie && ie_version < 9 && start == 0 && end == mEnd - mStart) {\n          rect = node.parentNode.getBoundingClientRect();\n        } else if (ie && cm.options.lineWrapping) {\n          var rects = range(node, start, end).getClientRects();\n          if (rects.length)\n            rect = rects[bias == \"right\" ? rects.length - 1 : 0];\n          else\n            rect = nullRect;\n        } else {\n          rect = range(node, start, end).getBoundingClientRect() || nullRect;\n        }\n        if (rect.left || rect.right || start == 0) break;\n        end = start;\n        start = start - 1;\n        collapse = \"right\";\n      }\n      if (ie && ie_version < 11) rect = maybeUpdateRectForZooming(cm.display.measure, rect);\n    } else { // If it is a widget, simply get the box for the whole widget.\n      if (start > 0) collapse = bias = \"right\";\n      var rects;\n      if (cm.options.lineWrapping && (rects = node.getClientRects()).length > 1)\n        rect = rects[bias == \"right\" ? rects.length - 1 : 0];\n      else\n        rect = node.getBoundingClientRect();\n    }\n    if (ie && ie_version < 9 && !start && (!rect || !rect.left && !rect.right)) {\n      var rSpan = node.parentNode.getClientRects()[0];\n      if (rSpan)\n        rect = {left: rSpan.left, right: rSpan.left + charWidth(cm.display), top: rSpan.top, bottom: rSpan.bottom};\n      else\n        rect = nullRect;\n    }\n\n    var rtop = rect.top - prepared.rect.top, rbot = rect.bottom - prepared.rect.top;\n    var mid = (rtop + rbot) / 2;\n    var heights = prepared.view.measure.heights;\n    for (var i = 0; i < heights.length - 1; i++)\n      if (mid < heights[i]) break;\n    var top = i ? heights[i - 1] : 0, bot = heights[i];\n    var result = {left: (collapse == \"right\" ? rect.right : rect.left) - prepared.rect.left,\n                  right: (collapse == \"left\" ? rect.left : rect.right) - prepared.rect.left,\n                  top: top, bottom: bot};\n    if (!rect.left && !rect.right) result.bogus = true;\n    if (!cm.options.singleCursorHeightPerLine) { result.rtop = rtop; result.rbottom = rbot; }\n\n    return result;\n  }\n\n  // Work around problem with bounding client rects on ranges being\n  // returned incorrectly when zoomed on IE10 and below.\n  function maybeUpdateRectForZooming(measure, rect) {\n    if (!window.screen || screen.logicalXDPI == null ||\n        screen.logicalXDPI == screen.deviceXDPI || !hasBadZoomedRects(measure))\n      return rect;\n    var scaleX = screen.logicalXDPI / screen.deviceXDPI;\n    var scaleY = screen.logicalYDPI / screen.deviceYDPI;\n    return {left: rect.left * scaleX, right: rect.right * scaleX,\n            top: rect.top * scaleY, bottom: rect.bottom * scaleY};\n  }\n\n  function clearLineMeasurementCacheFor(lineView) {\n    if (lineView.measure) {\n      lineView.measure.cache = {};\n      lineView.measure.heights = null;\n      if (lineView.rest) for (var i = 0; i < lineView.rest.length; i++)\n        lineView.measure.caches[i] = {};\n    }\n  }\n\n  function clearLineMeasurementCache(cm) {\n    cm.display.externalMeasure = null;\n    removeChildren(cm.display.lineMeasure);\n    for (var i = 0; i < cm.display.view.length; i++)\n      clearLineMeasurementCacheFor(cm.display.view[i]);\n  }\n\n  function clearCaches(cm) {\n    clearLineMeasurementCache(cm);\n    cm.display.cachedCharWidth = cm.display.cachedTextHeight = cm.display.cachedPaddingH = null;\n    if (!cm.options.lineWrapping) cm.display.maxLineChanged = true;\n    cm.display.lineNumChars = null;\n  }\n\n  function pageScrollX() { return window.pageXOffset || (document.documentElement || document.body).scrollLeft; }\n  function pageScrollY() { return window.pageYOffset || (document.documentElement || document.body).scrollTop; }\n\n  // Converts a {top, bottom, left, right} box from line-local\n  // coordinates into another coordinate system. Context may be one of\n  // \"line\", \"div\" (display.lineDiv), \"local\"/null (editor), or \"page\".\n  function intoCoordSystem(cm, lineObj, rect, context) {\n    if (lineObj.widgets) for (var i = 0; i < lineObj.widgets.length; ++i) if (lineObj.widgets[i].above) {\n      var size = widgetHeight(lineObj.widgets[i]);\n      rect.top += size; rect.bottom += size;\n    }\n    if (context == \"line\") return rect;\n    if (!context) context = \"local\";\n    var yOff = heightAtLine(lineObj);\n    if (context == \"local\") yOff += paddingTop(cm.display);\n    else yOff -= cm.display.viewOffset;\n    if (context == \"page\" || context == \"window\") {\n      var lOff = cm.display.lineSpace.getBoundingClientRect();\n      yOff += lOff.top + (context == \"window\" ? 0 : pageScrollY());\n      var xOff = lOff.left + (context == \"window\" ? 0 : pageScrollX());\n      rect.left += xOff; rect.right += xOff;\n    }\n    rect.top += yOff; rect.bottom += yOff;\n    return rect;\n  }\n\n  // Coverts a box from \"div\" coords to another coordinate system.\n  // Context may be \"window\", \"page\", \"div\", or \"local\"/null.\n  function fromCoordSystem(cm, coords, context) {\n    if (context == \"div\") return coords;\n    var left = coords.left, top = coords.top;\n    // First move into \"page\" coordinate system\n    if (context == \"page\") {\n      left -= pageScrollX();\n      top -= pageScrollY();\n    } else if (context == \"local\" || !context) {\n      var localBox = cm.display.sizer.getBoundingClientRect();\n      left += localBox.left;\n      top += localBox.top;\n    }\n\n    var lineSpaceBox = cm.display.lineSpace.getBoundingClientRect();\n    return {left: left - lineSpaceBox.left, top: top - lineSpaceBox.top};\n  }\n\n  function charCoords(cm, pos, context, lineObj, bias) {\n    if (!lineObj) lineObj = getLine(cm.doc, pos.line);\n    return intoCoordSystem(cm, lineObj, measureChar(cm, lineObj, pos.ch, bias), context);\n  }\n\n  // Returns a box for a given cursor position, which may have an\n  // 'other' property containing the position of the secondary cursor\n  // on a bidi boundary.\n  function cursorCoords(cm, pos, context, lineObj, preparedMeasure, varHeight) {\n    lineObj = lineObj || getLine(cm.doc, pos.line);\n    if (!preparedMeasure) preparedMeasure = prepareMeasureForLine(cm, lineObj);\n    function get(ch, right) {\n      var m = measureCharPrepared(cm, preparedMeasure, ch, right ? \"right\" : \"left\", varHeight);\n      if (right) m.left = m.right; else m.right = m.left;\n      return intoCoordSystem(cm, lineObj, m, context);\n    }\n    function getBidi(ch, partPos) {\n      var part = order[partPos], right = part.level % 2;\n      if (ch == bidiLeft(part) && partPos && part.level < order[partPos - 1].level) {\n        part = order[--partPos];\n        ch = bidiRight(part) - (part.level % 2 ? 0 : 1);\n        right = true;\n      } else if (ch == bidiRight(part) && partPos < order.length - 1 && part.level < order[partPos + 1].level) {\n        part = order[++partPos];\n        ch = bidiLeft(part) - part.level % 2;\n        right = false;\n      }\n      if (right && ch == part.to && ch > part.from) return get(ch - 1);\n      return get(ch, right);\n    }\n    var order = getOrder(lineObj), ch = pos.ch;\n    if (!order) return get(ch);\n    var partPos = getBidiPartAt(order, ch);\n    var val = getBidi(ch, partPos);\n    if (bidiOther != null) val.other = getBidi(ch, bidiOther);\n    return val;\n  }\n\n  // Used to cheaply estimate the coordinates for a position. Used for\n  // intermediate scroll updates.\n  function estimateCoords(cm, pos) {\n    var left = 0, pos = clipPos(cm.doc, pos);\n    if (!cm.options.lineWrapping) left = charWidth(cm.display) * pos.ch;\n    var lineObj = getLine(cm.doc, pos.line);\n    var top = heightAtLine(lineObj) + paddingTop(cm.display);\n    return {left: left, right: left, top: top, bottom: top + lineObj.height};\n  }\n\n  // Positions returned by coordsChar contain some extra information.\n  // xRel is the relative x position of the input coordinates compared\n  // to the found position (so xRel > 0 means the coordinates are to\n  // the right of the character position, for example). When outside\n  // is true, that means the coordinates lie outside the line's\n  // vertical range.\n  function PosWithInfo(line, ch, outside, xRel) {\n    var pos = Pos(line, ch);\n    pos.xRel = xRel;\n    if (outside) pos.outside = true;\n    return pos;\n  }\n\n  // Compute the character position closest to the given coordinates.\n  // Input must be lineSpace-local (\"div\" coordinate system).\n  function coordsChar(cm, x, y) {\n    var doc = cm.doc;\n    y += cm.display.viewOffset;\n    if (y < 0) return PosWithInfo(doc.first, 0, true, -1);\n    var lineN = lineAtHeight(doc, y), last = doc.first + doc.size - 1;\n    if (lineN > last)\n      return PosWithInfo(doc.first + doc.size - 1, getLine(doc, last).text.length, true, 1);\n    if (x < 0) x = 0;\n\n    var lineObj = getLine(doc, lineN);\n    for (;;) {\n      var found = coordsCharInner(cm, lineObj, lineN, x, y);\n      var merged = collapsedSpanAtEnd(lineObj);\n      var mergedPos = merged && merged.find(0, true);\n      if (merged && (found.ch > mergedPos.from.ch || found.ch == mergedPos.from.ch && found.xRel > 0))\n        lineN = lineNo(lineObj = mergedPos.to.line);\n      else\n        return found;\n    }\n  }\n\n  function coordsCharInner(cm, lineObj, lineNo, x, y) {\n    var innerOff = y - heightAtLine(lineObj);\n    var wrongLine = false, adjust = 2 * cm.display.wrapper.clientWidth;\n    var preparedMeasure = prepareMeasureForLine(cm, lineObj);\n\n    function getX(ch) {\n      var sp = cursorCoords(cm, Pos(lineNo, ch), \"line\", lineObj, preparedMeasure);\n      wrongLine = true;\n      if (innerOff > sp.bottom) return sp.left - adjust;\n      else if (innerOff < sp.top) return sp.left + adjust;\n      else wrongLine = false;\n      return sp.left;\n    }\n\n    var bidi = getOrder(lineObj), dist = lineObj.text.length;\n    var from = lineLeft(lineObj), to = lineRight(lineObj);\n    var fromX = getX(from), fromOutside = wrongLine, toX = getX(to), toOutside = wrongLine;\n\n    if (x > toX) return PosWithInfo(lineNo, to, toOutside, 1);\n    // Do a binary search between these bounds.\n    for (;;) {\n      if (bidi ? to == from || to == moveVisually(lineObj, from, 1) : to - from <= 1) {\n        var ch = x < fromX || x - fromX <= toX - x ? from : to;\n        var xDiff = x - (ch == from ? fromX : toX);\n        while (isExtendingChar(lineObj.text.charAt(ch))) ++ch;\n        var pos = PosWithInfo(lineNo, ch, ch == from ? fromOutside : toOutside,\n                              xDiff < -1 ? -1 : xDiff > 1 ? 1 : 0);\n        return pos;\n      }\n      var step = Math.ceil(dist / 2), middle = from + step;\n      if (bidi) {\n        middle = from;\n        for (var i = 0; i < step; ++i) middle = moveVisually(lineObj, middle, 1);\n      }\n      var middleX = getX(middle);\n      if (middleX > x) {to = middle; toX = middleX; if (toOutside = wrongLine) toX += 1000; dist = step;}\n      else {from = middle; fromX = middleX; fromOutside = wrongLine; dist -= step;}\n    }\n  }\n\n  var measureText;\n  // Compute the default text height.\n  function textHeight(display) {\n    if (display.cachedTextHeight != null) return display.cachedTextHeight;\n    if (measureText == null) {\n      measureText = elt(\"pre\");\n      // Measure a bunch of lines, for browsers that compute\n      // fractional heights.\n      for (var i = 0; i < 49; ++i) {\n        measureText.appendChild(document.createTextNode(\"x\"));\n        measureText.appendChild(elt(\"br\"));\n      }\n      measureText.appendChild(document.createTextNode(\"x\"));\n    }\n    removeChildrenAndAdd(display.measure, measureText);\n    var height = measureText.offsetHeight / 50;\n    if (height > 3) display.cachedTextHeight = height;\n    removeChildren(display.measure);\n    return height || 1;\n  }\n\n  // Compute the default character width.\n  function charWidth(display) {\n    if (display.cachedCharWidth != null) return display.cachedCharWidth;\n    var anchor = elt(\"span\", \"xxxxxxxxxx\");\n    var pre = elt(\"pre\", [anchor]);\n    removeChildrenAndAdd(display.measure, pre);\n    var rect = anchor.getBoundingClientRect(), width = (rect.right - rect.left) / 10;\n    if (width > 2) display.cachedCharWidth = width;\n    return width || 10;\n  }\n\n  // OPERATIONS\n\n  // Operations are used to wrap a series of changes to the editor\n  // state in such a way that each change won't have to update the\n  // cursor and display (which would be awkward, slow, and\n  // error-prone). Instead, display updates are batched and then all\n  // combined and executed at once.\n\n  var operationGroup = null;\n\n  var nextOpId = 0;\n  // Start a new operation.\n  function startOperation(cm) {\n    cm.curOp = {\n      cm: cm,\n      viewChanged: false,      // Flag that indicates that lines might need to be redrawn\n      startHeight: cm.doc.height, // Used to detect need to update scrollbar\n      forceUpdate: false,      // Used to force a redraw\n      updateInput: null,       // Whether to reset the input textarea\n      typing: false,           // Whether this reset should be careful to leave existing text (for compositing)\n      changeObjs: null,        // Accumulated changes, for firing change events\n      cursorActivityHandlers: null, // Set of handlers to fire cursorActivity on\n      cursorActivityCalled: 0, // Tracks which cursorActivity handlers have been called already\n      selectionChanged: false, // Whether the selection needs to be redrawn\n      updateMaxLine: false,    // Set when the widest line needs to be determined anew\n      scrollLeft: null, scrollTop: null, // Intermediate scroll position, not pushed to DOM yet\n      scrollToPos: null,       // Used to scroll to a specific position\n      id: ++nextOpId           // Unique ID\n    };\n    if (operationGroup) {\n      operationGroup.ops.push(cm.curOp);\n    } else {\n      cm.curOp.ownsGroup = operationGroup = {\n        ops: [cm.curOp],\n        delayedCallbacks: []\n      };\n    }\n  }\n\n  function fireCallbacksForOps(group) {\n    // Calls delayed callbacks and cursorActivity handlers until no\n    // new ones appear\n    var callbacks = group.delayedCallbacks, i = 0;\n    do {\n      for (; i < callbacks.length; i++)\n        callbacks[i]();\n      for (var j = 0; j < group.ops.length; j++) {\n        var op = group.ops[j];\n        if (op.cursorActivityHandlers)\n          while (op.cursorActivityCalled < op.cursorActivityHandlers.length)\n            op.cursorActivityHandlers[op.cursorActivityCalled++](op.cm);\n      }\n    } while (i < callbacks.length);\n  }\n\n  // Finish an operation, updating the display and signalling delayed events\n  function endOperation(cm) {\n    var op = cm.curOp, group = op.ownsGroup;\n    if (!group) return;\n\n    try { fireCallbacksForOps(group); }\n    finally {\n      operationGroup = null;\n      for (var i = 0; i < group.ops.length; i++)\n        group.ops[i].cm.curOp = null;\n      endOperations(group);\n    }\n  }\n\n  // The DOM updates done when an operation finishes are batched so\n  // that the minimum number of relayouts are required.\n  function endOperations(group) {\n    var ops = group.ops;\n    for (var i = 0; i < ops.length; i++) // Read DOM\n      endOperation_R1(ops[i]);\n    for (var i = 0; i < ops.length; i++) // Write DOM (maybe)\n      endOperation_W1(ops[i]);\n    for (var i = 0; i < ops.length; i++) // Read DOM\n      endOperation_R2(ops[i]);\n    for (var i = 0; i < ops.length; i++) // Write DOM (maybe)\n      endOperation_W2(ops[i]);\n    for (var i = 0; i < ops.length; i++) // Read DOM\n      endOperation_finish(ops[i]);\n  }\n\n  function endOperation_R1(op) {\n    var cm = op.cm, display = cm.display;\n    if (op.updateMaxLine) findMaxLine(cm);\n\n    op.mustUpdate = op.viewChanged || op.forceUpdate || op.scrollTop != null ||\n      op.scrollToPos && (op.scrollToPos.from.line < display.viewFrom ||\n                         op.scrollToPos.to.line >= display.viewTo) ||\n      display.maxLineChanged && cm.options.lineWrapping;\n    op.update = op.mustUpdate &&\n      new DisplayUpdate(cm, op.mustUpdate && {top: op.scrollTop, ensure: op.scrollToPos}, op.forceUpdate);\n  }\n\n  function endOperation_W1(op) {\n    op.updatedDisplay = op.mustUpdate && updateDisplayIfNeeded(op.cm, op.update);\n  }\n\n  function endOperation_R2(op) {\n    var cm = op.cm, display = cm.display;\n    if (op.updatedDisplay) updateHeightsInViewport(cm);\n\n    op.barMeasure = measureForScrollbars(cm);\n\n    // If the max line changed since it was last measured, measure it,\n    // and ensure the document's width matches it.\n    // updateDisplay_W2 will use these properties to do the actual resizing\n    if (display.maxLineChanged && !cm.options.lineWrapping) {\n      op.adjustWidthTo = measureChar(cm, display.maxLine, display.maxLine.text.length).left + 3;\n      op.maxScrollLeft = Math.max(0, display.sizer.offsetLeft + op.adjustWidthTo +\n                                  scrollerCutOff - display.scroller.clientWidth);\n    }\n\n    if (op.updatedDisplay || op.selectionChanged)\n      op.newSelectionNodes = drawSelection(cm);\n  }\n\n  function endOperation_W2(op) {\n    var cm = op.cm;\n\n    if (op.adjustWidthTo != null) {\n      cm.display.sizer.style.minWidth = op.adjustWidthTo + \"px\";\n      if (op.maxScrollLeft < cm.doc.scrollLeft)\n        setScrollLeft(cm, Math.min(cm.display.scroller.scrollLeft, op.maxScrollLeft), true);\n      cm.display.maxLineChanged = false;\n    }\n\n    if (op.newSelectionNodes)\n      showSelection(cm, op.newSelectionNodes);\n    if (op.updatedDisplay)\n      setDocumentHeight(cm, op.barMeasure);\n    if (op.updatedDisplay || op.startHeight != cm.doc.height)\n      updateScrollbars(cm, op.barMeasure);\n\n    if (op.selectionChanged) restartBlink(cm);\n\n    if (cm.state.focused && op.updateInput)\n      resetInput(cm, op.typing);\n  }\n\n  function endOperation_finish(op) {\n    var cm = op.cm, display = cm.display, doc = cm.doc;\n\n    if (op.adjustWidthTo != null && Math.abs(op.barMeasure.scrollWidth - cm.display.scroller.scrollWidth) > 1)\n      updateScrollbars(cm);\n\n    if (op.updatedDisplay) postUpdateDisplay(cm, op.update);\n\n    // Abort mouse wheel delta measurement, when scrolling explicitly\n    if (display.wheelStartX != null && (op.scrollTop != null || op.scrollLeft != null || op.scrollToPos))\n      display.wheelStartX = display.wheelStartY = null;\n\n    // Propagate the scroll position to the actual DOM scroller\n    if (op.scrollTop != null && (display.scroller.scrollTop != op.scrollTop || op.forceScroll)) {\n      var top = Math.max(0, Math.min(display.scroller.scrollHeight - display.scroller.clientHeight, op.scrollTop));\n      display.scroller.scrollTop = display.scrollbarV.scrollTop = doc.scrollTop = top;\n    }\n    if (op.scrollLeft != null && (display.scroller.scrollLeft != op.scrollLeft || op.forceScroll)) {\n      var left = Math.max(0, Math.min(display.scroller.scrollWidth - display.scroller.clientWidth, op.scrollLeft));\n      display.scroller.scrollLeft = display.scrollbarH.scrollLeft = doc.scrollLeft = left;\n      alignHorizontally(cm);\n    }\n    // If we need to scroll a specific position into view, do so.\n    if (op.scrollToPos) {\n      var coords = scrollPosIntoView(cm, clipPos(doc, op.scrollToPos.from),\n                                     clipPos(doc, op.scrollToPos.to), op.scrollToPos.margin);\n      if (op.scrollToPos.isCursor && cm.state.focused) maybeScrollWindow(cm, coords);\n    }\n\n    // Fire events for markers that are hidden/unidden by editing or\n    // undoing\n    var hidden = op.maybeHiddenMarkers, unhidden = op.maybeUnhiddenMarkers;\n    if (hidden) for (var i = 0; i < hidden.length; ++i)\n      if (!hidden[i].lines.length) signal(hidden[i], \"hide\");\n    if (unhidden) for (var i = 0; i < unhidden.length; ++i)\n      if (unhidden[i].lines.length) signal(unhidden[i], \"unhide\");\n\n    if (display.wrapper.offsetHeight)\n      doc.scrollTop = cm.display.scroller.scrollTop;\n\n    // Apply workaround for two webkit bugs\n    if (op.updatedDisplay && webkit) {\n      if (cm.options.lineWrapping)\n        checkForWebkitWidthBug(cm, op.barMeasure); // (Issue #2420)\n      if (op.barMeasure.scrollWidth > op.barMeasure.clientWidth &&\n          op.barMeasure.scrollWidth < op.barMeasure.clientWidth + 1 &&\n          !hScrollbarTakesSpace(cm))\n        updateScrollbars(cm); // (Issue #2562)\n    }\n\n    // Fire change events, and delayed event handlers\n    if (op.changeObjs)\n      signal(cm, \"changes\", cm, op.changeObjs);\n  }\n\n  // Run the given function in an operation\n  function runInOp(cm, f) {\n    if (cm.curOp) return f();\n    startOperation(cm);\n    try { return f(); }\n    finally { endOperation(cm); }\n  }\n  // Wraps a function in an operation. Returns the wrapped function.\n  function operation(cm, f) {\n    return function() {\n      if (cm.curOp) return f.apply(cm, arguments);\n      startOperation(cm);\n      try { return f.apply(cm, arguments); }\n      finally { endOperation(cm); }\n    };\n  }\n  // Used to add methods to editor and doc instances, wrapping them in\n  // operations.\n  function methodOp(f) {\n    return function() {\n      if (this.curOp) return f.apply(this, arguments);\n      startOperation(this);\n      try { return f.apply(this, arguments); }\n      finally { endOperation(this); }\n    };\n  }\n  function docMethodOp(f) {\n    return function() {\n      var cm = this.cm;\n      if (!cm || cm.curOp) return f.apply(this, arguments);\n      startOperation(cm);\n      try { return f.apply(this, arguments); }\n      finally { endOperation(cm); }\n    };\n  }\n\n  // VIEW TRACKING\n\n  // These objects are used to represent the visible (currently drawn)\n  // part of the document. A LineView may correspond to multiple\n  // logical lines, if those are connected by collapsed ranges.\n  function LineView(doc, line, lineN) {\n    // The starting line\n    this.line = line;\n    // Continuing lines, if any\n    this.rest = visualLineContinued(line);\n    // Number of logical lines in this visual line\n    this.size = this.rest ? lineNo(lst(this.rest)) - lineN + 1 : 1;\n    this.node = this.text = null;\n    this.hidden = lineIsHidden(doc, line);\n  }\n\n  // Create a range of LineView objects for the given lines.\n  function buildViewArray(cm, from, to) {\n    var array = [], nextPos;\n    for (var pos = from; pos < to; pos = nextPos) {\n      var view = new LineView(cm.doc, getLine(cm.doc, pos), pos);\n      nextPos = pos + view.size;\n      array.push(view);\n    }\n    return array;\n  }\n\n  // Updates the display.view data structure for a given change to the\n  // document. From and to are in pre-change coordinates. Lendiff is\n  // the amount of lines added or subtracted by the change. This is\n  // used for changes that span multiple lines, or change the way\n  // lines are divided into visual lines. regLineChange (below)\n  // registers single-line changes.\n  function regChange(cm, from, to, lendiff) {\n    if (from == null) from = cm.doc.first;\n    if (to == null) to = cm.doc.first + cm.doc.size;\n    if (!lendiff) lendiff = 0;\n\n    var display = cm.display;\n    if (lendiff && to < display.viewTo &&\n        (display.updateLineNumbers == null || display.updateLineNumbers > from))\n      display.updateLineNumbers = from;\n\n    cm.curOp.viewChanged = true;\n\n    if (from >= display.viewTo) { // Change after\n      if (sawCollapsedSpans && visualLineNo(cm.doc, from) < display.viewTo)\n        resetView(cm);\n    } else if (to <= display.viewFrom) { // Change before\n      if (sawCollapsedSpans && visualLineEndNo(cm.doc, to + lendiff) > display.viewFrom) {\n        resetView(cm);\n      } else {\n        display.viewFrom += lendiff;\n        display.viewTo += lendiff;\n      }\n    } else if (from <= display.viewFrom && to >= display.viewTo) { // Full overlap\n      resetView(cm);\n    } else if (from <= display.viewFrom) { // Top overlap\n      var cut = viewCuttingPoint(cm, to, to + lendiff, 1);\n      if (cut) {\n        display.view = display.view.slice(cut.index);\n        display.viewFrom = cut.lineN;\n        display.viewTo += lendiff;\n      } else {\n        resetView(cm);\n      }\n    } else if (to >= display.viewTo) { // Bottom overlap\n      var cut = viewCuttingPoint(cm, from, from, -1);\n      if (cut) {\n        display.view = display.view.slice(0, cut.index);\n        display.viewTo = cut.lineN;\n      } else {\n        resetView(cm);\n      }\n    } else { // Gap in the middle\n      var cutTop = viewCuttingPoint(cm, from, from, -1);\n      var cutBot = viewCuttingPoint(cm, to, to + lendiff, 1);\n      if (cutTop && cutBot) {\n        display.view = display.view.slice(0, cutTop.index)\n          .concat(buildViewArray(cm, cutTop.lineN, cutBot.lineN))\n          .concat(display.view.slice(cutBot.index));\n        display.viewTo += lendiff;\n      } else {\n        resetView(cm);\n      }\n    }\n\n    var ext = display.externalMeasured;\n    if (ext) {\n      if (to < ext.lineN)\n        ext.lineN += lendiff;\n      else if (from < ext.lineN + ext.size)\n        display.externalMeasured = null;\n    }\n  }\n\n  // Register a change to a single line. Type must be one of \"text\",\n  // \"gutter\", \"class\", \"widget\"\n  function regLineChange(cm, line, type) {\n    cm.curOp.viewChanged = true;\n    var display = cm.display, ext = cm.display.externalMeasured;\n    if (ext && line >= ext.lineN && line < ext.lineN + ext.size)\n      display.externalMeasured = null;\n\n    if (line < display.viewFrom || line >= display.viewTo) return;\n    var lineView = display.view[findViewIndex(cm, line)];\n    if (lineView.node == null) return;\n    var arr = lineView.changes || (lineView.changes = []);\n    if (indexOf(arr, type) == -1) arr.push(type);\n  }\n\n  // Clear the view.\n  function resetView(cm) {\n    cm.display.viewFrom = cm.display.viewTo = cm.doc.first;\n    cm.display.view = [];\n    cm.display.viewOffset = 0;\n  }\n\n  // Find the view element corresponding to a given line. Return null\n  // when the line isn't visible.\n  function findViewIndex(cm, n) {\n    if (n >= cm.display.viewTo) return null;\n    n -= cm.display.viewFrom;\n    if (n < 0) return null;\n    var view = cm.display.view;\n    for (var i = 0; i < view.length; i++) {\n      n -= view[i].size;\n      if (n < 0) return i;\n    }\n  }\n\n  function viewCuttingPoint(cm, oldN, newN, dir) {\n    var index = findViewIndex(cm, oldN), diff, view = cm.display.view;\n    if (!sawCollapsedSpans || newN == cm.doc.first + cm.doc.size)\n      return {index: index, lineN: newN};\n    for (var i = 0, n = cm.display.viewFrom; i < index; i++)\n      n += view[i].size;\n    if (n != oldN) {\n      if (dir > 0) {\n        if (index == view.length - 1) return null;\n        diff = (n + view[index].size) - oldN;\n        index++;\n      } else {\n        diff = n - oldN;\n      }\n      oldN += diff; newN += diff;\n    }\n    while (visualLineNo(cm.doc, newN) != newN) {\n      if (index == (dir < 0 ? 0 : view.length - 1)) return null;\n      newN += dir * view[index - (dir < 0 ? 1 : 0)].size;\n      index += dir;\n    }\n    return {index: index, lineN: newN};\n  }\n\n  // Force the view to cover a given range, adding empty view element\n  // or clipping off existing ones as needed.\n  function adjustView(cm, from, to) {\n    var display = cm.display, view = display.view;\n    if (view.length == 0 || from >= display.viewTo || to <= display.viewFrom) {\n      display.view = buildViewArray(cm, from, to);\n      display.viewFrom = from;\n    } else {\n      if (display.viewFrom > from)\n        display.view = buildViewArray(cm, from, display.viewFrom).concat(display.view);\n      else if (display.viewFrom < from)\n        display.view = display.view.slice(findViewIndex(cm, from));\n      display.viewFrom = from;\n      if (display.viewTo < to)\n        display.view = display.view.concat(buildViewArray(cm, display.viewTo, to));\n      else if (display.viewTo > to)\n        display.view = display.view.slice(0, findViewIndex(cm, to));\n    }\n    display.viewTo = to;\n  }\n\n  // Count the number of lines in the view whose DOM representation is\n  // out of date (or nonexistent).\n  function countDirtyView(cm) {\n    var view = cm.display.view, dirty = 0;\n    for (var i = 0; i < view.length; i++) {\n      var lineView = view[i];\n      if (!lineView.hidden && (!lineView.node || lineView.changes)) ++dirty;\n    }\n    return dirty;\n  }\n\n  // INPUT HANDLING\n\n  // Poll for input changes, using the normal rate of polling. This\n  // runs as long as the editor is focused.\n  function slowPoll(cm) {\n    if (cm.display.pollingFast) return;\n    cm.display.poll.set(cm.options.pollInterval, function() {\n      readInput(cm);\n      if (cm.state.focused) slowPoll(cm);\n    });\n  }\n\n  // When an event has just come in that is likely to add or change\n  // something in the input textarea, we poll faster, to ensure that\n  // the change appears on the screen quickly.\n  function fastPoll(cm) {\n    var missed = false;\n    cm.display.pollingFast = true;\n    function p() {\n      var changed = readInput(cm);\n      if (!changed && !missed) {missed = true; cm.display.poll.set(60, p);}\n      else {cm.display.pollingFast = false; slowPoll(cm);}\n    }\n    cm.display.poll.set(20, p);\n  }\n\n  // This will be set to an array of strings when copying, so that,\n  // when pasting, we know what kind of selections the copied text\n  // was made out of.\n  var lastCopied = null;\n\n  // Read input from the textarea, and update the document to match.\n  // When something is selected, it is present in the textarea, and\n  // selected (unless it is huge, in which case a placeholder is\n  // used). When nothing is selected, the cursor sits after previously\n  // seen text (can be empty), which is stored in prevInput (we must\n  // not reset the textarea when typing, because that breaks IME).\n  function readInput(cm) {\n    var input = cm.display.input, prevInput = cm.display.prevInput, doc = cm.doc;\n    // Since this is called a *lot*, try to bail out as cheaply as\n    // possible when it is clear that nothing happened. hasSelection\n    // will be the case when there is a lot of text in the textarea,\n    // in which case reading its value would be expensive.\n    if (!cm.state.focused || (hasSelection(input) && !prevInput) || isReadOnly(cm) || cm.options.disableInput)\n      return false;\n    // See paste handler for more on the fakedLastChar kludge\n    if (cm.state.pasteIncoming && cm.state.fakedLastChar) {\n      input.value = input.value.substring(0, input.value.length - 1);\n      cm.state.fakedLastChar = false;\n    }\n    var text = input.value;\n    // If nothing changed, bail.\n    if (text == prevInput && !cm.somethingSelected()) return false;\n    // Work around nonsensical selection resetting in IE9/10, and\n    // inexplicable appearance of private area unicode characters on\n    // some key combos in Mac (#2689).\n    if (ie && ie_version >= 9 && cm.display.inputHasSelection === text ||\n        mac && /[\\uf700-\\uf7ff]/.test(text)) {\n      resetInput(cm);\n      return false;\n    }\n\n    var withOp = !cm.curOp;\n    if (withOp) startOperation(cm);\n    cm.display.shift = false;\n\n    if (text.charCodeAt(0) == 0x200b && doc.sel == cm.display.selForContextMenu && !prevInput)\n      prevInput = \"\\u200b\";\n    // Find the part of the input that is actually new\n    var same = 0, l = Math.min(prevInput.length, text.length);\n    while (same < l && prevInput.charCodeAt(same) == text.charCodeAt(same)) ++same;\n    var inserted = text.slice(same), textLines = splitLines(inserted);\n\n    // When pasing N lines into N selections, insert one line per selection\n    var multiPaste = null;\n    if (cm.state.pasteIncoming && doc.sel.ranges.length > 1) {\n      if (lastCopied && lastCopied.join(\"\\n\") == inserted)\n        multiPaste = doc.sel.ranges.length % lastCopied.length == 0 && map(lastCopied, splitLines);\n      else if (textLines.length == doc.sel.ranges.length)\n        multiPaste = map(textLines, function(l) { return [l]; });\n    }\n\n    // Normal behavior is to insert the new text into every selection\n    for (var i = doc.sel.ranges.length - 1; i >= 0; i--) {\n      var range = doc.sel.ranges[i];\n      var from = range.from(), to = range.to();\n      // Handle deletion\n      if (same < prevInput.length)\n        from = Pos(from.line, from.ch - (prevInput.length - same));\n      // Handle overwrite\n      else if (cm.state.overwrite && range.empty() && !cm.state.pasteIncoming)\n        to = Pos(to.line, Math.min(getLine(doc, to.line).text.length, to.ch + lst(textLines).length));\n      var updateInput = cm.curOp.updateInput;\n      var changeEvent = {from: from, to: to, text: multiPaste ? multiPaste[i % multiPaste.length] : textLines,\n                         origin: cm.state.pasteIncoming ? \"paste\" : cm.state.cutIncoming ? \"cut\" : \"+input\"};\n      makeChange(cm.doc, changeEvent);\n      signalLater(cm, \"inputRead\", cm, changeEvent);\n      // When an 'electric' character is inserted, immediately trigger a reindent\n      if (inserted && !cm.state.pasteIncoming && cm.options.electricChars &&\n          cm.options.smartIndent && range.head.ch < 100 &&\n          (!i || doc.sel.ranges[i - 1].head.line != range.head.line)) {\n        var mode = cm.getModeAt(range.head);\n        var end = changeEnd(changeEvent);\n        if (mode.electricChars) {\n          for (var j = 0; j < mode.electricChars.length; j++)\n            if (inserted.indexOf(mode.electricChars.charAt(j)) > -1) {\n              indentLine(cm, end.line, \"smart\");\n              break;\n            }\n        } else if (mode.electricInput) {\n          if (mode.electricInput.test(getLine(doc, end.line).text.slice(0, end.ch)))\n            indentLine(cm, end.line, \"smart\");\n        }\n      }\n    }\n    ensureCursorVisible(cm);\n    cm.curOp.updateInput = updateInput;\n    cm.curOp.typing = true;\n\n    // Don't leave long text in the textarea, since it makes further polling slow\n    if (text.length > 1000 || text.indexOf(\"\\n\") > -1) input.value = cm.display.prevInput = \"\";\n    else cm.display.prevInput = text;\n    if (withOp) endOperation(cm);\n    cm.state.pasteIncoming = cm.state.cutIncoming = false;\n    return true;\n  }\n\n  // Reset the input to correspond to the selection (or to be empty,\n  // when not typing and nothing is selected)\n  function resetInput(cm, typing) {\n    var minimal, selected, doc = cm.doc;\n    if (cm.somethingSelected()) {\n      cm.display.prevInput = \"\";\n      var range = doc.sel.primary();\n      minimal = hasCopyEvent &&\n        (range.to().line - range.from().line > 100 || (selected = cm.getSelection()).length > 1000);\n      var content = minimal ? \"-\" : selected || cm.getSelection();\n      cm.display.input.value = content;\n      if (cm.state.focused) selectInput(cm.display.input);\n      if (ie && ie_version >= 9) cm.display.inputHasSelection = content;\n    } else if (!typing) {\n      cm.display.prevInput = cm.display.input.value = \"\";\n      if (ie && ie_version >= 9) cm.display.inputHasSelection = null;\n    }\n    cm.display.inaccurateSelection = minimal;\n  }\n\n  function focusInput(cm) {\n    if (cm.options.readOnly != \"nocursor\" && (!mobile || activeElt() != cm.display.input))\n      cm.display.input.focus();\n  }\n\n  function ensureFocus(cm) {\n    if (!cm.state.focused) { focusInput(cm); onFocus(cm); }\n  }\n\n  function isReadOnly(cm) {\n    return cm.options.readOnly || cm.doc.cantEdit;\n  }\n\n  // EVENT HANDLERS\n\n  // Attach the necessary event handlers when initializing the editor\n  function registerEventHandlers(cm) {\n    var d = cm.display;\n    on(d.scroller, \"mousedown\", operation(cm, onMouseDown));\n    // Older IE's will not fire a second mousedown for a double click\n    if (ie && ie_version < 11)\n      on(d.scroller, \"dblclick\", operation(cm, function(e) {\n        if (signalDOMEvent(cm, e)) return;\n        var pos = posFromMouse(cm, e);\n        if (!pos || clickInGutter(cm, e) || eventInWidget(cm.display, e)) return;\n        e_preventDefault(e);\n        var word = cm.findWordAt(pos);\n        extendSelection(cm.doc, word.anchor, word.head);\n      }));\n    else\n      on(d.scroller, \"dblclick\", function(e) { signalDOMEvent(cm, e) || e_preventDefault(e); });\n    // Prevent normal selection in the editor (we handle our own)\n    on(d.lineSpace, \"selectstart\", function(e) {\n      if (!eventInWidget(d, e)) e_preventDefault(e);\n    });\n    // Some browsers fire contextmenu *after* opening the menu, at\n    // which point we can't mess with it anymore. Context menu is\n    // handled in onMouseDown for these browsers.\n    if (!captureRightClick) on(d.scroller, \"contextmenu\", function(e) {onContextMenu(cm, e);});\n\n    // Sync scrolling between fake scrollbars and real scrollable\n    // area, ensure viewport is updated when scrolling.\n    on(d.scroller, \"scroll\", function() {\n      if (d.scroller.clientHeight) {\n        setScrollTop(cm, d.scroller.scrollTop);\n        setScrollLeft(cm, d.scroller.scrollLeft, true);\n        signal(cm, \"scroll\", cm);\n      }\n    });\n    on(d.scrollbarV, \"scroll\", function() {\n      if (d.scroller.clientHeight) setScrollTop(cm, d.scrollbarV.scrollTop);\n    });\n    on(d.scrollbarH, \"scroll\", function() {\n      if (d.scroller.clientHeight) setScrollLeft(cm, d.scrollbarH.scrollLeft);\n    });\n\n    // Listen to wheel events in order to try and update the viewport on time.\n    on(d.scroller, \"mousewheel\", function(e){onScrollWheel(cm, e);});\n    on(d.scroller, \"DOMMouseScroll\", function(e){onScrollWheel(cm, e);});\n\n    // Prevent clicks in the scrollbars from killing focus\n    function reFocus() { if (cm.state.focused) setTimeout(bind(focusInput, cm), 0); }\n    on(d.scrollbarH, \"mousedown\", reFocus);\n    on(d.scrollbarV, \"mousedown\", reFocus);\n    // Prevent wrapper from ever scrolling\n    on(d.wrapper, \"scroll\", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; });\n\n    on(d.input, \"keyup\", function(e) { onKeyUp.call(cm, e); });\n    on(d.input, \"input\", function() {\n      if (ie && ie_version >= 9 && cm.display.inputHasSelection) cm.display.inputHasSelection = null;\n      fastPoll(cm);\n    });\n    on(d.input, \"keydown\", operation(cm, onKeyDown));\n    on(d.input, \"keypress\", operation(cm, onKeyPress));\n    on(d.input, \"focus\", bind(onFocus, cm));\n    on(d.input, \"blur\", bind(onBlur, cm));\n\n    function drag_(e) {\n      if (!signalDOMEvent(cm, e)) e_stop(e);\n    }\n    if (cm.options.dragDrop) {\n      on(d.scroller, \"dragstart\", function(e){onDragStart(cm, e);});\n      on(d.scroller, \"dragenter\", drag_);\n      on(d.scroller, \"dragover\", drag_);\n      on(d.scroller, \"drop\", operation(cm, onDrop));\n    }\n    on(d.scroller, \"paste\", function(e) {\n      if (eventInWidget(d, e)) return;\n      cm.state.pasteIncoming = true;\n      focusInput(cm);\n      fastPoll(cm);\n    });\n    on(d.input, \"paste\", function() {\n      // Workaround for webkit bug https://bugs.webkit.org/show_bug.cgi?id=90206\n      // Add a char to the end of textarea before paste occur so that\n      // selection doesn't span to the end of textarea.\n      if (webkit && !cm.state.fakedLastChar && !(new Date - cm.state.lastMiddleDown < 200)) {\n        var start = d.input.selectionStart, end = d.input.selectionEnd;\n        d.input.value += \"$\";\n        // The selection end needs to be set before the start, otherwise there\n        // can be an intermediate non-empty selection between the two, which\n        // can override the middle-click paste buffer on linux and cause the\n        // wrong thing to get pasted.\n        d.input.selectionEnd = end;\n        d.input.selectionStart = start;\n        cm.state.fakedLastChar = true;\n      }\n      cm.state.pasteIncoming = true;\n      fastPoll(cm);\n    });\n\n    function prepareCopyCut(e) {\n      if (cm.somethingSelected()) {\n        lastCopied = cm.getSelections();\n        if (d.inaccurateSelection) {\n          d.prevInput = \"\";\n          d.inaccurateSelection = false;\n          d.input.value = lastCopied.join(\"\\n\");\n          selectInput(d.input);\n        }\n      } else {\n        var text = [], ranges = [];\n        for (var i = 0; i < cm.doc.sel.ranges.length; i++) {\n          var line = cm.doc.sel.ranges[i].head.line;\n          var lineRange = {anchor: Pos(line, 0), head: Pos(line + 1, 0)};\n          ranges.push(lineRange);\n          text.push(cm.getRange(lineRange.anchor, lineRange.head));\n        }\n        if (e.type == \"cut\") {\n          cm.setSelections(ranges, null, sel_dontScroll);\n        } else {\n          d.prevInput = \"\";\n          d.input.value = text.join(\"\\n\");\n          selectInput(d.input);\n        }\n        lastCopied = text;\n      }\n      if (e.type == \"cut\") cm.state.cutIncoming = true;\n    }\n    on(d.input, \"cut\", prepareCopyCut);\n    on(d.input, \"copy\", prepareCopyCut);\n\n    // Needed to handle Tab key in KHTML\n    if (khtml) on(d.sizer, \"mouseup\", function() {\n      if (activeElt() == d.input) d.input.blur();\n      focusInput(cm);\n    });\n  }\n\n  // Called when the window resizes\n  function onResize(cm) {\n    // Might be a text scaling operation, clear size caches.\n    var d = cm.display;\n    d.cachedCharWidth = d.cachedTextHeight = d.cachedPaddingH = null;\n    cm.setSize();\n  }\n\n  // MOUSE EVENTS\n\n  // Return true when the given mouse event happened in a widget\n  function eventInWidget(display, e) {\n    for (var n = e_target(e); n != display.wrapper; n = n.parentNode) {\n      if (!n || n.ignoreEvents || n.parentNode == display.sizer && n != display.mover) return true;\n    }\n  }\n\n  // Given a mouse event, find the corresponding position. If liberal\n  // is false, it checks whether a gutter or scrollbar was clicked,\n  // and returns null if it was. forRect is used by rectangular\n  // selections, and tries to estimate a character position even for\n  // coordinates beyond the right of the text.\n  function posFromMouse(cm, e, liberal, forRect) {\n    var display = cm.display;\n    if (!liberal) {\n      var target = e_target(e);\n      if (target == display.scrollbarH || target == display.scrollbarV ||\n          target == display.scrollbarFiller || target == display.gutterFiller) return null;\n    }\n    var x, y, space = display.lineSpace.getBoundingClientRect();\n    // Fails unpredictably on IE[67] when mouse is dragged around quickly.\n    try { x = e.clientX - space.left; y = e.clientY - space.top; }\n    catch (e) { return null; }\n    var coords = coordsChar(cm, x, y), line;\n    if (forRect && coords.xRel == 1 && (line = getLine(cm.doc, coords.line).text).length == coords.ch) {\n      var colDiff = countColumn(line, line.length, cm.options.tabSize) - line.length;\n      coords = Pos(coords.line, Math.max(0, Math.round((x - paddingH(cm.display).left) / charWidth(cm.display)) - colDiff));\n    }\n    return coords;\n  }\n\n  // A mouse down can be a single click, double click, triple click,\n  // start of selection drag, start of text drag, new cursor\n  // (ctrl-click), rectangle drag (alt-drag), or xwin\n  // middle-click-paste. Or it might be a click on something we should\n  // not interfere with, such as a scrollbar or widget.\n  function onMouseDown(e) {\n    if (signalDOMEvent(this, e)) return;\n    var cm = this, display = cm.display;\n    display.shift = e.shiftKey;\n\n    if (eventInWidget(display, e)) {\n      if (!webkit) {\n        // Briefly turn off draggability, to allow widgets to do\n        // normal dragging things.\n        display.scroller.draggable = false;\n        setTimeout(function(){display.scroller.draggable = true;}, 100);\n      }\n      return;\n    }\n    if (clickInGutter(cm, e)) return;\n    var start = posFromMouse(cm, e);\n    window.focus();\n\n    switch (e_button(e)) {\n    case 1:\n      if (start)\n        leftButtonDown(cm, e, start);\n      else if (e_target(e) == display.scroller)\n        e_preventDefault(e);\n      break;\n    case 2:\n      if (webkit) cm.state.lastMiddleDown = +new Date;\n      if (start) extendSelection(cm.doc, start);\n      setTimeout(bind(focusInput, cm), 20);\n      e_preventDefault(e);\n      break;\n    case 3:\n      if (captureRightClick) onContextMenu(cm, e);\n      break;\n    }\n  }\n\n  var lastClick, lastDoubleClick;\n  function leftButtonDown(cm, e, start) {\n    setTimeout(bind(ensureFocus, cm), 0);\n\n    var now = +new Date, type;\n    if (lastDoubleClick && lastDoubleClick.time > now - 400 && cmp(lastDoubleClick.pos, start) == 0) {\n      type = \"triple\";\n    } else if (lastClick && lastClick.time > now - 400 && cmp(lastClick.pos, start) == 0) {\n      type = \"double\";\n      lastDoubleClick = {time: now, pos: start};\n    } else {\n      type = \"single\";\n      lastClick = {time: now, pos: start};\n    }\n\n    var sel = cm.doc.sel, modifier = mac ? e.metaKey : e.ctrlKey;\n    if (cm.options.dragDrop && dragAndDrop && !isReadOnly(cm) &&\n        type == \"single\" && sel.contains(start) > -1 && sel.somethingSelected())\n      leftButtonStartDrag(cm, e, start, modifier);\n    else\n      leftButtonSelect(cm, e, start, type, modifier);\n  }\n\n  // Start a text drag. When it ends, see if any dragging actually\n  // happen, and treat as a click if it didn't.\n  function leftButtonStartDrag(cm, e, start, modifier) {\n    var display = cm.display;\n    var dragEnd = operation(cm, function(e2) {\n      if (webkit) display.scroller.draggable = false;\n      cm.state.draggingText = false;\n      off(document, \"mouseup\", dragEnd);\n      off(display.scroller, \"drop\", dragEnd);\n      if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) {\n        e_preventDefault(e2);\n        if (!modifier)\n          extendSelection(cm.doc, start);\n        focusInput(cm);\n        // Work around unexplainable focus problem in IE9 (#2127)\n        if (ie && ie_version == 9)\n          setTimeout(function() {document.body.focus(); focusInput(cm);}, 20);\n      }\n    });\n    // Let the drag handler handle this.\n    if (webkit) display.scroller.draggable = true;\n    cm.state.draggingText = dragEnd;\n    // IE's approach to draggable\n    if (display.scroller.dragDrop) display.scroller.dragDrop();\n    on(document, \"mouseup\", dragEnd);\n    on(display.scroller, \"drop\", dragEnd);\n  }\n\n  // Normal selection, as opposed to text dragging.\n  function leftButtonSelect(cm, e, start, type, addNew) {\n    var display = cm.display, doc = cm.doc;\n    e_preventDefault(e);\n\n    var ourRange, ourIndex, startSel = doc.sel;\n    if (addNew && !e.shiftKey) {\n      ourIndex = doc.sel.contains(start);\n      if (ourIndex > -1)\n        ourRange = doc.sel.ranges[ourIndex];\n      else\n        ourRange = new Range(start, start);\n    } else {\n      ourRange = doc.sel.primary();\n    }\n\n    if (e.altKey) {\n      type = \"rect\";\n      if (!addNew) ourRange = new Range(start, start);\n      start = posFromMouse(cm, e, true, true);\n      ourIndex = -1;\n    } else if (type == \"double\") {\n      var word = cm.findWordAt(start);\n      if (cm.display.shift || doc.extend)\n        ourRange = extendRange(doc, ourRange, word.anchor, word.head);\n      else\n        ourRange = word;\n    } else if (type == \"triple\") {\n      var line = new Range(Pos(start.line, 0), clipPos(doc, Pos(start.line + 1, 0)));\n      if (cm.display.shift || doc.extend)\n        ourRange = extendRange(doc, ourRange, line.anchor, line.head);\n      else\n        ourRange = line;\n    } else {\n      ourRange = extendRange(doc, ourRange, start);\n    }\n\n    if (!addNew) {\n      ourIndex = 0;\n      setSelection(doc, new Selection([ourRange], 0), sel_mouse);\n      startSel = doc.sel;\n    } else if (ourIndex > -1) {\n      replaceOneSelection(doc, ourIndex, ourRange, sel_mouse);\n    } else {\n      ourIndex = doc.sel.ranges.length;\n      setSelection(doc, normalizeSelection(doc.sel.ranges.concat([ourRange]), ourIndex),\n                   {scroll: false, origin: \"*mouse\"});\n    }\n\n    var lastPos = start;\n    function extendTo(pos) {\n      if (cmp(lastPos, pos) == 0) return;\n      lastPos = pos;\n\n      if (type == \"rect\") {\n        var ranges = [], tabSize = cm.options.tabSize;\n        var startCol = countColumn(getLine(doc, start.line).text, start.ch, tabSize);\n        var posCol = countColumn(getLine(doc, pos.line).text, pos.ch, tabSize);\n        var left = Math.min(startCol, posCol), right = Math.max(startCol, posCol);\n        for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line));\n             line <= end; line++) {\n          var text = getLine(doc, line).text, leftPos = findColumn(text, left, tabSize);\n          if (left == right)\n            ranges.push(new Range(Pos(line, leftPos), Pos(line, leftPos)));\n          else if (text.length > leftPos)\n            ranges.push(new Range(Pos(line, leftPos), Pos(line, findColumn(text, right, tabSize))));\n        }\n        if (!ranges.length) ranges.push(new Range(start, start));\n        setSelection(doc, normalizeSelection(startSel.ranges.slice(0, ourIndex).concat(ranges), ourIndex),\n                     {origin: \"*mouse\", scroll: false});\n        cm.scrollIntoView(pos);\n      } else {\n        var oldRange = ourRange;\n        var anchor = oldRange.anchor, head = pos;\n        if (type != \"single\") {\n          if (type == \"double\")\n            var range = cm.findWordAt(pos);\n          else\n            var range = new Range(Pos(pos.line, 0), clipPos(doc, Pos(pos.line + 1, 0)));\n          if (cmp(range.anchor, anchor) > 0) {\n            head = range.head;\n            anchor = minPos(oldRange.from(), range.anchor);\n          } else {\n            head = range.anchor;\n            anchor = maxPos(oldRange.to(), range.head);\n          }\n        }\n        var ranges = startSel.ranges.slice(0);\n        ranges[ourIndex] = new Range(clipPos(doc, anchor), head);\n        setSelection(doc, normalizeSelection(ranges, ourIndex), sel_mouse);\n      }\n    }\n\n    var editorSize = display.wrapper.getBoundingClientRect();\n    // Used to ensure timeout re-tries don't fire when another extend\n    // happened in the meantime (clearTimeout isn't reliable -- at\n    // least on Chrome, the timeouts still happen even when cleared,\n    // if the clear happens after their scheduled firing time).\n    var counter = 0;\n\n    function extend(e) {\n      var curCount = ++counter;\n      var cur = posFromMouse(cm, e, true, type == \"rect\");\n      if (!cur) return;\n      if (cmp(cur, lastPos) != 0) {\n        ensureFocus(cm);\n        extendTo(cur);\n        var visible = visibleLines(display, doc);\n        if (cur.line >= visible.to || cur.line < visible.from)\n          setTimeout(operation(cm, function(){if (counter == curCount) extend(e);}), 150);\n      } else {\n        var outside = e.clientY < editorSize.top ? -20 : e.clientY > editorSize.bottom ? 20 : 0;\n        if (outside) setTimeout(operation(cm, function() {\n          if (counter != curCount) return;\n          display.scroller.scrollTop += outside;\n          extend(e);\n        }), 50);\n      }\n    }\n\n    function done(e) {\n      counter = Infinity;\n      e_preventDefault(e);\n      focusInput(cm);\n      off(document, \"mousemove\", move);\n      off(document, \"mouseup\", up);\n      doc.history.lastSelOrigin = null;\n    }\n\n    var move = operation(cm, function(e) {\n      if (!e_button(e)) done(e);\n      else extend(e);\n    });\n    var up = operation(cm, done);\n    on(document, \"mousemove\", move);\n    on(document, \"mouseup\", up);\n  }\n\n  // Determines whether an event happened in the gutter, and fires the\n  // handlers for the corresponding event.\n  function gutterEvent(cm, e, type, prevent, signalfn) {\n    try { var mX = e.clientX, mY = e.clientY; }\n    catch(e) { return false; }\n    if (mX >= Math.floor(cm.display.gutters.getBoundingClientRect().right)) return false;\n    if (prevent) e_preventDefault(e);\n\n    var display = cm.display;\n    var lineBox = display.lineDiv.getBoundingClientRect();\n\n    if (mY > lineBox.bottom || !hasHandler(cm, type)) return e_defaultPrevented(e);\n    mY -= lineBox.top - display.viewOffset;\n\n    for (var i = 0; i < cm.options.gutters.length; ++i) {\n      var g = display.gutters.childNodes[i];\n      if (g && g.getBoundingClientRect().right >= mX) {\n        var line = lineAtHeight(cm.doc, mY);\n        var gutter = cm.options.gutters[i];\n        signalfn(cm, type, cm, line, gutter, e);\n        return e_defaultPrevented(e);\n      }\n    }\n  }\n\n  function clickInGutter(cm, e) {\n    return gutterEvent(cm, e, \"gutterClick\", true, signalLater);\n  }\n\n  // Kludge to work around strange IE behavior where it'll sometimes\n  // re-fire a series of drag-related events right after the drop (#1551)\n  var lastDrop = 0;\n\n  function onDrop(e) {\n    var cm = this;\n    if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e))\n      return;\n    e_preventDefault(e);\n    if (ie) lastDrop = +new Date;\n    var pos = posFromMouse(cm, e, true), files = e.dataTransfer.files;\n    if (!pos || isReadOnly(cm)) return;\n    // Might be a file drop, in which case we simply extract the text\n    // and insert it.\n    if (files && files.length && window.FileReader && window.File) {\n      var n = files.length, text = Array(n), read = 0;\n      var loadFile = function(file, i) {\n        var reader = new FileReader;\n        reader.onload = operation(cm, function() {\n          text[i] = reader.result;\n          if (++read == n) {\n            pos = clipPos(cm.doc, pos);\n            var change = {from: pos, to: pos, text: splitLines(text.join(\"\\n\")), origin: \"paste\"};\n            makeChange(cm.doc, change);\n            setSelectionReplaceHistory(cm.doc, simpleSelection(pos, changeEnd(change)));\n          }\n        });\n        reader.readAsText(file);\n      };\n      for (var i = 0; i < n; ++i) loadFile(files[i], i);\n    } else { // Normal drop\n      // Don't do a replace if the drop happened inside of the selected text.\n      if (cm.state.draggingText && cm.doc.sel.contains(pos) > -1) {\n        cm.state.draggingText(e);\n        // Ensure the editor is re-focused\n        setTimeout(bind(focusInput, cm), 20);\n        return;\n      }\n      try {\n        var text = e.dataTransfer.getData(\"Text\");\n        if (text) {\n          if (cm.state.draggingText && !(mac ? e.metaKey : e.ctrlKey))\n            var selected = cm.listSelections();\n          setSelectionNoUndo(cm.doc, simpleSelection(pos, pos));\n          if (selected) for (var i = 0; i < selected.length; ++i)\n            replaceRange(cm.doc, \"\", selected[i].anchor, selected[i].head, \"drag\");\n          cm.replaceSelection(text, \"around\", \"paste\");\n          focusInput(cm);\n        }\n      }\n      catch(e){}\n    }\n  }\n\n  function onDragStart(cm, e) {\n    if (ie && (!cm.state.draggingText || +new Date - lastDrop < 100)) { e_stop(e); return; }\n    if (signalDOMEvent(cm, e) || eventInWidget(cm.display, e)) return;\n\n    e.dataTransfer.setData(\"Text\", cm.getSelection());\n\n    // Use dummy image instead of default browsers image.\n    // Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.\n    if (e.dataTransfer.setDragImage && !safari) {\n      var img = elt(\"img\", null, null, \"position: fixed; left: 0; top: 0;\");\n      img.src = \"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\";\n      if (presto) {\n        img.width = img.height = 1;\n        cm.display.wrapper.appendChild(img);\n        // Force a relayout, or Opera won't use our image for some obscure reason\n        img._top = img.offsetTop;\n      }\n      e.dataTransfer.setDragImage(img, 0, 0);\n      if (presto) img.parentNode.removeChild(img);\n    }\n  }\n\n  // SCROLL EVENTS\n\n  // Sync the scrollable area and scrollbars, ensure the viewport\n  // covers the visible area.\n  function setScrollTop(cm, val) {\n    if (Math.abs(cm.doc.scrollTop - val) < 2) return;\n    cm.doc.scrollTop = val;\n    if (!gecko) updateDisplaySimple(cm, {top: val});\n    if (cm.display.scroller.scrollTop != val) cm.display.scroller.scrollTop = val;\n    if (cm.display.scrollbarV.scrollTop != val) cm.display.scrollbarV.scrollTop = val;\n    if (gecko) updateDisplaySimple(cm);\n    startWorker(cm, 100);\n  }\n  // Sync scroller and scrollbar, ensure the gutter elements are\n  // aligned.\n  function setScrollLeft(cm, val, isScroller) {\n    if (isScroller ? val == cm.doc.scrollLeft : Math.abs(cm.doc.scrollLeft - val) < 2) return;\n    val = Math.min(val, cm.display.scroller.scrollWidth - cm.display.scroller.clientWidth);\n    cm.doc.scrollLeft = val;\n    alignHorizontally(cm);\n    if (cm.display.scroller.scrollLeft != val) cm.display.scroller.scrollLeft = val;\n    if (cm.display.scrollbarH.scrollLeft != val) cm.display.scrollbarH.scrollLeft = val;\n  }\n\n  // Since the delta values reported on mouse wheel events are\n  // unstandardized between browsers and even browser versions, and\n  // generally horribly unpredictable, this code starts by measuring\n  // the scroll effect that the first few mouse wheel events have,\n  // and, from that, detects the way it can convert deltas to pixel\n  // offsets afterwards.\n  //\n  // The reason we want to know the amount a wheel event will scroll\n  // is that it gives us a chance to update the display before the\n  // actual scrolling happens, reducing flickering.\n\n  var wheelSamples = 0, wheelPixelsPerUnit = null;\n  // Fill in a browser-detected starting value on browsers where we\n  // know one. These don't have to be accurate -- the result of them\n  // being wrong would just be a slight flicker on the first wheel\n  // scroll (if it is large enough).\n  if (ie) wheelPixelsPerUnit = -.53;\n  else if (gecko) wheelPixelsPerUnit = 15;\n  else if (chrome) wheelPixelsPerUnit = -.7;\n  else if (safari) wheelPixelsPerUnit = -1/3;\n\n  function onScrollWheel(cm, e) {\n    var dx = e.wheelDeltaX, dy = e.wheelDeltaY;\n    if (dx == null && e.detail && e.axis == e.HORIZONTAL_AXIS) dx = e.detail;\n    if (dy == null && e.detail && e.axis == e.VERTICAL_AXIS) dy = e.detail;\n    else if (dy == null) dy = e.wheelDelta;\n\n    var display = cm.display, scroll = display.scroller;\n    // Quit if there's nothing to scroll here\n    if (!(dx && scroll.scrollWidth > scroll.clientWidth ||\n          dy && scroll.scrollHeight > scroll.clientHeight)) return;\n\n    // Webkit browsers on OS X abort momentum scrolls when the target\n    // of the scroll event is removed from the scrollable element.\n    // This hack (see related code in patchDisplay) makes sure the\n    // element is kept around.\n    if (dy && mac && webkit) {\n      outer: for (var cur = e.target, view = display.view; cur != scroll; cur = cur.parentNode) {\n        for (var i = 0; i < view.length; i++) {\n          if (view[i].node == cur) {\n            cm.display.currentWheelTarget = cur;\n            break outer;\n          }\n        }\n      }\n    }\n\n    // On some browsers, horizontal scrolling will cause redraws to\n    // happen before the gutter has been realigned, causing it to\n    // wriggle around in a most unseemly way. When we have an\n    // estimated pixels/delta value, we just handle horizontal\n    // scrolling entirely here. It'll be slightly off from native, but\n    // better than glitching out.\n    if (dx && !gecko && !presto && wheelPixelsPerUnit != null) {\n      if (dy)\n        setScrollTop(cm, Math.max(0, Math.min(scroll.scrollTop + dy * wheelPixelsPerUnit, scroll.scrollHeight - scroll.clientHeight)));\n      setScrollLeft(cm, Math.max(0, Math.min(scroll.scrollLeft + dx * wheelPixelsPerUnit, scroll.scrollWidth - scroll.clientWidth)));\n      e_preventDefault(e);\n      display.wheelStartX = null; // Abort measurement, if in progress\n      return;\n    }\n\n    // 'Project' the visible viewport to cover the area that is being\n    // scrolled into view (if we know enough to estimate it).\n    if (dy && wheelPixelsPerUnit != null) {\n      var pixels = dy * wheelPixelsPerUnit;\n      var top = cm.doc.scrollTop, bot = top + display.wrapper.clientHeight;\n      if (pixels < 0) top = Math.max(0, top + pixels - 50);\n      else bot = Math.min(cm.doc.height, bot + pixels + 50);\n      updateDisplaySimple(cm, {top: top, bottom: bot});\n    }\n\n    if (wheelSamples < 20) {\n      if (display.wheelStartX == null) {\n        display.wheelStartX = scroll.scrollLeft; display.wheelStartY = scroll.scrollTop;\n        display.wheelDX = dx; display.wheelDY = dy;\n        setTimeout(function() {\n          if (display.wheelStartX == null) return;\n          var movedX = scroll.scrollLeft - display.wheelStartX;\n          var movedY = scroll.scrollTop - display.wheelStartY;\n          var sample = (movedY && display.wheelDY && movedY / display.wheelDY) ||\n            (movedX && display.wheelDX && movedX / display.wheelDX);\n          display.wheelStartX = display.wheelStartY = null;\n          if (!sample) return;\n          wheelPixelsPerUnit = (wheelPixelsPerUnit * wheelSamples + sample) / (wheelSamples + 1);\n          ++wheelSamples;\n        }, 200);\n      } else {\n        display.wheelDX += dx; display.wheelDY += dy;\n      }\n    }\n  }\n\n  // KEY EVENTS\n\n  // Run a handler that was bound to a key.\n  function doHandleBinding(cm, bound, dropShift) {\n    if (typeof bound == \"string\") {\n      bound = commands[bound];\n      if (!bound) return false;\n    }\n    // Ensure previous input has been read, so that the handler sees a\n    // consistent view of the document\n    if (cm.display.pollingFast && readInput(cm)) cm.display.pollingFast = false;\n    var prevShift = cm.display.shift, done = false;\n    try {\n      if (isReadOnly(cm)) cm.state.suppressEdits = true;\n      if (dropShift) cm.display.shift = false;\n      done = bound(cm) != Pass;\n    } finally {\n      cm.display.shift = prevShift;\n      cm.state.suppressEdits = false;\n    }\n    return done;\n  }\n\n  // Collect the currently active keymaps.\n  function allKeyMaps(cm) {\n    var maps = cm.state.keyMaps.slice(0);\n    if (cm.options.extraKeys) maps.push(cm.options.extraKeys);\n    maps.push(cm.options.keyMap);\n    return maps;\n  }\n\n  var maybeTransition;\n  // Handle a key from the keydown event.\n  function handleKeyBinding(cm, e) {\n    // Handle automatic keymap transitions\n    var startMap = getKeyMap(cm.options.keyMap), next = startMap.auto;\n    clearTimeout(maybeTransition);\n    if (next && !isModifierKey(e)) maybeTransition = setTimeout(function() {\n      if (getKeyMap(cm.options.keyMap) == startMap) {\n        cm.options.keyMap = (next.call ? next.call(null, cm) : next);\n        keyMapChanged(cm);\n      }\n    }, 50);\n\n    var name = keyName(e, true), handled = false;\n    if (!name) return false;\n    var keymaps = allKeyMaps(cm);\n\n    if (e.shiftKey) {\n      // First try to resolve full name (including 'Shift-'). Failing\n      // that, see if there is a cursor-motion command (starting with\n      // 'go') bound to the keyname without 'Shift-'.\n      handled = lookupKey(\"Shift-\" + name, keymaps, function(b) {return doHandleBinding(cm, b, true);})\n             || lookupKey(name, keymaps, function(b) {\n                  if (typeof b == \"string\" ? /^go[A-Z]/.test(b) : b.motion)\n                    return doHandleBinding(cm, b);\n                });\n    } else {\n      handled = lookupKey(name, keymaps, function(b) { return doHandleBinding(cm, b); });\n    }\n\n    if (handled) {\n      e_preventDefault(e);\n      restartBlink(cm);\n      signalLater(cm, \"keyHandled\", cm, name, e);\n    }\n    return handled;\n  }\n\n  // Handle a key from the keypress event\n  function handleCharBinding(cm, e, ch) {\n    var handled = lookupKey(\"'\" + ch + \"'\", allKeyMaps(cm),\n                            function(b) { return doHandleBinding(cm, b, true); });\n    if (handled) {\n      e_preventDefault(e);\n      restartBlink(cm);\n      signalLater(cm, \"keyHandled\", cm, \"'\" + ch + \"'\", e);\n    }\n    return handled;\n  }\n\n  var lastStoppedKey = null;\n  function onKeyDown(e) {\n    var cm = this;\n    ensureFocus(cm);\n    if (signalDOMEvent(cm, e)) return;\n    // IE does strange things with escape.\n    if (ie && ie_version < 11 && e.keyCode == 27) e.returnValue = false;\n    var code = e.keyCode;\n    cm.display.shift = code == 16 || e.shiftKey;\n    var handled = handleKeyBinding(cm, e);\n    if (presto) {\n      lastStoppedKey = handled ? code : null;\n      // Opera has no cut event... we try to at least catch the key combo\n      if (!handled && code == 88 && !hasCopyEvent && (mac ? e.metaKey : e.ctrlKey))\n        cm.replaceSelection(\"\", null, \"cut\");\n    }\n\n    // Turn mouse into crosshair when Alt is held on Mac.\n    if (code == 18 && !/\\bCodeMirror-crosshair\\b/.test(cm.display.lineDiv.className))\n      showCrossHair(cm);\n  }\n\n  function showCrossHair(cm) {\n    var lineDiv = cm.display.lineDiv;\n    addClass(lineDiv, \"CodeMirror-crosshair\");\n\n    function up(e) {\n      if (e.keyCode == 18 || !e.altKey) {\n        rmClass(lineDiv, \"CodeMirror-crosshair\");\n        off(document, \"keyup\", up);\n        off(document, \"mouseover\", up);\n      }\n    }\n    on(document, \"keyup\", up);\n    on(document, \"mouseover\", up);\n  }\n\n  function onKeyUp(e) {\n    if (e.keyCode == 16) this.doc.sel.shift = false;\n    signalDOMEvent(this, e);\n  }\n\n  function onKeyPress(e) {\n    var cm = this;\n    if (signalDOMEvent(cm, e) || e.ctrlKey && !e.altKey || mac && e.metaKey) return;\n    var keyCode = e.keyCode, charCode = e.charCode;\n    if (presto && keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;}\n    if (((presto && (!e.which || e.which < 10)) || khtml) && handleKeyBinding(cm, e)) return;\n    var ch = String.fromCharCode(charCode == null ? keyCode : charCode);\n    if (handleCharBinding(cm, e, ch)) return;\n    if (ie && ie_version >= 9) cm.display.inputHasSelection = null;\n    fastPoll(cm);\n  }\n\n  // FOCUS/BLUR EVENTS\n\n  function onFocus(cm) {\n    if (cm.options.readOnly == \"nocursor\") return;\n    if (!cm.state.focused) {\n      signal(cm, \"focus\", cm);\n      cm.state.focused = true;\n      addClass(cm.display.wrapper, \"CodeMirror-focused\");\n      // The prevInput test prevents this from firing when a context\n      // menu is closed (since the resetInput would kill the\n      // select-all detection hack)\n      if (!cm.curOp && cm.display.selForContextMenu != cm.doc.sel) {\n        resetInput(cm);\n        if (webkit) setTimeout(bind(resetInput, cm, true), 0); // Issue #1730\n      }\n    }\n    slowPoll(cm);\n    restartBlink(cm);\n  }\n  function onBlur(cm) {\n    if (cm.state.focused) {\n      signal(cm, \"blur\", cm);\n      cm.state.focused = false;\n      rmClass(cm.display.wrapper, \"CodeMirror-focused\");\n    }\n    clearInterval(cm.display.blinker);\n    setTimeout(function() {if (!cm.state.focused) cm.display.shift = false;}, 150);\n  }\n\n  // CONTEXT MENU HANDLING\n\n  // To make the context menu work, we need to briefly unhide the\n  // textarea (making it as unobtrusive as possible) to let the\n  // right-click take effect on it.\n  function onContextMenu(cm, e) {\n    if (signalDOMEvent(cm, e, \"contextmenu\")) return;\n    var display = cm.display;\n    if (eventInWidget(display, e) || contextMenuInGutter(cm, e)) return;\n\n    var pos = posFromMouse(cm, e), scrollPos = display.scroller.scrollTop;\n    if (!pos || presto) return; // Opera is difficult.\n\n    // Reset the current text selection only if the click is done outside of the selection\n    // and 'resetSelectionOnContextMenu' option is true.\n    var reset = cm.options.resetSelectionOnContextMenu;\n    if (reset && cm.doc.sel.contains(pos) == -1)\n      operation(cm, setSelection)(cm.doc, simpleSelection(pos), sel_dontScroll);\n\n    var oldCSS = display.input.style.cssText;\n    display.inputDiv.style.position = \"absolute\";\n    display.input.style.cssText = \"position: fixed; width: 30px; height: 30px; top: \" + (e.clientY - 5) +\n      \"px; left: \" + (e.clientX - 5) + \"px; z-index: 1000; background: \" +\n      (ie ? \"rgba(255, 255, 255, .05)\" : \"transparent\") +\n      \"; outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);\";\n    if (webkit) var oldScrollY = window.scrollY; // Work around Chrome issue (#2712)\n    focusInput(cm);\n    if (webkit) window.scrollTo(null, oldScrollY);\n    resetInput(cm);\n    // Adds \"Select all\" to context menu in FF\n    if (!cm.somethingSelected()) display.input.value = display.prevInput = \" \";\n    display.selForContextMenu = cm.doc.sel;\n    clearTimeout(display.detectingSelectAll);\n\n    // Select-all will be greyed out if there's nothing to select, so\n    // this adds a zero-width space so that we can later check whether\n    // it got selected.\n    function prepareSelectAllHack() {\n      if (display.input.selectionStart != null) {\n        var selected = cm.somethingSelected();\n        var extval = display.input.value = \"\\u200b\" + (selected ? display.input.value : \"\");\n        display.prevInput = selected ? \"\" : \"\\u200b\";\n        display.input.selectionStart = 1; display.input.selectionEnd = extval.length;\n        // Re-set this, in case some other handler touched the\n        // selection in the meantime.\n        display.selForContextMenu = cm.doc.sel;\n      }\n    }\n    function rehide() {\n      display.inputDiv.style.position = \"relative\";\n      display.input.style.cssText = oldCSS;\n      if (ie && ie_version < 9) display.scrollbarV.scrollTop = display.scroller.scrollTop = scrollPos;\n      slowPoll(cm);\n\n      // Try to detect the user choosing select-all\n      if (display.input.selectionStart != null) {\n        if (!ie || (ie && ie_version < 9)) prepareSelectAllHack();\n        var i = 0, poll = function() {\n          if (display.selForContextMenu == cm.doc.sel && display.input.selectionStart == 0)\n            operation(cm, commands.selectAll)(cm);\n          else if (i++ < 10) display.detectingSelectAll = setTimeout(poll, 500);\n          else resetInput(cm);\n        };\n        display.detectingSelectAll = setTimeout(poll, 200);\n      }\n    }\n\n    if (ie && ie_version >= 9) prepareSelectAllHack();\n    if (captureRightClick) {\n      e_stop(e);\n      var mouseup = function() {\n        off(window, \"mouseup\", mouseup);\n        setTimeout(rehide, 20);\n      };\n      on(window, \"mouseup\", mouseup);\n    } else {\n      setTimeout(rehide, 50);\n    }\n  }\n\n  function contextMenuInGutter(cm, e) {\n    if (!hasHandler(cm, \"gutterContextMenu\")) return false;\n    return gutterEvent(cm, e, \"gutterContextMenu\", false, signal);\n  }\n\n  // UPDATING\n\n  // Compute the position of the end of a change (its 'to' property\n  // refers to the pre-change end).\n  var changeEnd = CodeMirror.changeEnd = function(change) {\n    if (!change.text) return change.to;\n    return Pos(change.from.line + change.text.length - 1,\n               lst(change.text).length + (change.text.length == 1 ? change.from.ch : 0));\n  };\n\n  // Adjust a position to refer to the post-change position of the\n  // same text, or the end of the change if the change covers it.\n  function adjustForChange(pos, change) {\n    if (cmp(pos, change.from) < 0) return pos;\n    if (cmp(pos, change.to) <= 0) return changeEnd(change);\n\n    var line = pos.line + change.text.length - (change.to.line - change.from.line) - 1, ch = pos.ch;\n    if (pos.line == change.to.line) ch += changeEnd(change).ch - change.to.ch;\n    return Pos(line, ch);\n  }\n\n  function computeSelAfterChange(doc, change) {\n    var out = [];\n    for (var i = 0; i < doc.sel.ranges.length; i++) {\n      var range = doc.sel.ranges[i];\n      out.push(new Range(adjustForChange(range.anchor, change),\n                         adjustForChange(range.head, change)));\n    }\n    return normalizeSelection(out, doc.sel.primIndex);\n  }\n\n  function offsetPos(pos, old, nw) {\n    if (pos.line == old.line)\n      return Pos(nw.line, pos.ch - old.ch + nw.ch);\n    else\n      return Pos(nw.line + (pos.line - old.line), pos.ch);\n  }\n\n  // Used by replaceSelections to allow moving the selection to the\n  // start or around the replaced test. Hint may be \"start\" or \"around\".\n  function computeReplacedSel(doc, changes, hint) {\n    var out = [];\n    var oldPrev = Pos(doc.first, 0), newPrev = oldPrev;\n    for (var i = 0; i < changes.length; i++) {\n      var change = changes[i];\n      var from = offsetPos(change.from, oldPrev, newPrev);\n      var to = offsetPos(changeEnd(change), oldPrev, newPrev);\n      oldPrev = change.to;\n      newPrev = to;\n      if (hint == \"around\") {\n        var range = doc.sel.ranges[i], inv = cmp(range.head, range.anchor) < 0;\n        out[i] = new Range(inv ? to : from, inv ? from : to);\n      } else {\n        out[i] = new Range(from, from);\n      }\n    }\n    return new Selection(out, doc.sel.primIndex);\n  }\n\n  // Allow \"beforeChange\" event handlers to influence a change\n  function filterChange(doc, change, update) {\n    var obj = {\n      canceled: false,\n      from: change.from,\n      to: change.to,\n      text: change.text,\n      origin: change.origin,\n      cancel: function() { this.canceled = true; }\n    };\n    if (update) obj.update = function(from, to, text, origin) {\n      if (from) this.from = clipPos(doc, from);\n      if (to) this.to = clipPos(doc, to);\n      if (text) this.text = text;\n      if (origin !== undefined) this.origin = origin;\n    };\n    signal(doc, \"beforeChange\", doc, obj);\n    if (doc.cm) signal(doc.cm, \"beforeChange\", doc.cm, obj);\n\n    if (obj.canceled) return null;\n    return {from: obj.from, to: obj.to, text: obj.text, origin: obj.origin};\n  }\n\n  // Apply a change to a document, and add it to the document's\n  // history, and propagating it to all linked documents.\n  function makeChange(doc, change, ignoreReadOnly) {\n    if (doc.cm) {\n      if (!doc.cm.curOp) return operation(doc.cm, makeChange)(doc, change, ignoreReadOnly);\n      if (doc.cm.state.suppressEdits) return;\n    }\n\n    if (hasHandler(doc, \"beforeChange\") || doc.cm && hasHandler(doc.cm, \"beforeChange\")) {\n      change = filterChange(doc, change, true);\n      if (!change) return;\n    }\n\n    // Possibly split or suppress the update based on the presence\n    // of read-only spans in its range.\n    var split = sawReadOnlySpans && !ignoreReadOnly && removeReadOnlyRanges(doc, change.from, change.to);\n    if (split) {\n      for (var i = split.length - 1; i >= 0; --i)\n        makeChangeInner(doc, {from: split[i].from, to: split[i].to, text: i ? [\"\"] : change.text});\n    } else {\n      makeChangeInner(doc, change);\n    }\n  }\n\n  function makeChangeInner(doc, change) {\n    if (change.text.length == 1 && change.text[0] == \"\" && cmp(change.from, change.to) == 0) return;\n    var selAfter = computeSelAfterChange(doc, change);\n    addChangeToHistory(doc, change, selAfter, doc.cm ? doc.cm.curOp.id : NaN);\n\n    makeChangeSingleDoc(doc, change, selAfter, stretchSpansOverChange(doc, change));\n    var rebased = [];\n\n    linkedDocs(doc, function(doc, sharedHist) {\n      if (!sharedHist && indexOf(rebased, doc.history) == -1) {\n        rebaseHist(doc.history, change);\n        rebased.push(doc.history);\n      }\n      makeChangeSingleDoc(doc, change, null, stretchSpansOverChange(doc, change));\n    });\n  }\n\n  // Revert a change stored in a document's history.\n  function makeChangeFromHistory(doc, type, allowSelectionOnly) {\n    if (doc.cm && doc.cm.state.suppressEdits) return;\n\n    var hist = doc.history, event, selAfter = doc.sel;\n    var source = type == \"undo\" ? hist.done : hist.undone, dest = type == \"undo\" ? hist.undone : hist.done;\n\n    // Verify that there is a useable event (so that ctrl-z won't\n    // needlessly clear selection events)\n    for (var i = 0; i < source.length; i++) {\n      event = source[i];\n      if (allowSelectionOnly ? event.ranges && !event.equals(doc.sel) : !event.ranges)\n        break;\n    }\n    if (i == source.length) return;\n    hist.lastOrigin = hist.lastSelOrigin = null;\n\n    for (;;) {\n      event = source.pop();\n      if (event.ranges) {\n        pushSelectionToHistory(event, dest);\n        if (allowSelectionOnly && !event.equals(doc.sel)) {\n          setSelection(doc, event, {clearRedo: false});\n          return;\n        }\n        selAfter = event;\n      }\n      else break;\n    }\n\n    // Build up a reverse change object to add to the opposite history\n    // stack (redo when undoing, and vice versa).\n    var antiChanges = [];\n    pushSelectionToHistory(selAfter, dest);\n    dest.push({changes: antiChanges, generation: hist.generation});\n    hist.generation = event.generation || ++hist.maxGeneration;\n\n    var filter = hasHandler(doc, \"beforeChange\") || doc.cm && hasHandler(doc.cm, \"beforeChange\");\n\n    for (var i = event.changes.length - 1; i >= 0; --i) {\n      var change = event.changes[i];\n      change.origin = type;\n      if (filter && !filterChange(doc, change, false)) {\n        source.length = 0;\n        return;\n      }\n\n      antiChanges.push(historyChangeFromChange(doc, change));\n\n      var after = i ? computeSelAfterChange(doc, change) : lst(source);\n      makeChangeSingleDoc(doc, change, after, mergeOldSpans(doc, change));\n      if (!i && doc.cm) doc.cm.scrollIntoView({from: change.from, to: changeEnd(change)});\n      var rebased = [];\n\n      // Propagate to the linked documents\n      linkedDocs(doc, function(doc, sharedHist) {\n        if (!sharedHist && indexOf(rebased, doc.history) == -1) {\n          rebaseHist(doc.history, change);\n          rebased.push(doc.history);\n        }\n        makeChangeSingleDoc(doc, change, null, mergeOldSpans(doc, change));\n      });\n    }\n  }\n\n  // Sub-views need their line numbers shifted when text is added\n  // above or below them in the parent document.\n  function shiftDoc(doc, distance) {\n    if (distance == 0) return;\n    doc.first += distance;\n    doc.sel = new Selection(map(doc.sel.ranges, function(range) {\n      return new Range(Pos(range.anchor.line + distance, range.anchor.ch),\n                       Pos(range.head.line + distance, range.head.ch));\n    }), doc.sel.primIndex);\n    if (doc.cm) {\n      regChange(doc.cm, doc.first, doc.first - distance, distance);\n      for (var d = doc.cm.display, l = d.viewFrom; l < d.viewTo; l++)\n        regLineChange(doc.cm, l, \"gutter\");\n    }\n  }\n\n  // More lower-level change function, handling only a single document\n  // (not linked ones).\n  function makeChangeSingleDoc(doc, change, selAfter, spans) {\n    if (doc.cm && !doc.cm.curOp)\n      return operation(doc.cm, makeChangeSingleDoc)(doc, change, selAfter, spans);\n\n    if (change.to.line < doc.first) {\n      shiftDoc(doc, change.text.length - 1 - (change.to.line - change.from.line));\n      return;\n    }\n    if (change.from.line > doc.lastLine()) return;\n\n    // Clip the change to the size of this doc\n    if (change.from.line < doc.first) {\n      var shift = change.text.length - 1 - (doc.first - change.from.line);\n      shiftDoc(doc, shift);\n      change = {from: Pos(doc.first, 0), to: Pos(change.to.line + shift, change.to.ch),\n                text: [lst(change.text)], origin: change.origin};\n    }\n    var last = doc.lastLine();\n    if (change.to.line > last) {\n      change = {from: change.from, to: Pos(last, getLine(doc, last).text.length),\n                text: [change.text[0]], origin: change.origin};\n    }\n\n    change.removed = getBetween(doc, change.from, change.to);\n\n    if (!selAfter) selAfter = computeSelAfterChange(doc, change);\n    if (doc.cm) makeChangeSingleDocInEditor(doc.cm, change, spans);\n    else updateDoc(doc, change, spans);\n    setSelectionNoUndo(doc, selAfter, sel_dontScroll);\n  }\n\n  // Handle the interaction of a change to a document with the editor\n  // that this document is part of.\n  function makeChangeSingleDocInEditor(cm, change, spans) {\n    var doc = cm.doc, display = cm.display, from = change.from, to = change.to;\n\n    var recomputeMaxLength = false, checkWidthStart = from.line;\n    if (!cm.options.lineWrapping) {\n      checkWidthStart = lineNo(visualLine(getLine(doc, from.line)));\n      doc.iter(checkWidthStart, to.line + 1, function(line) {\n        if (line == display.maxLine) {\n          recomputeMaxLength = true;\n          return true;\n        }\n      });\n    }\n\n    if (doc.sel.contains(change.from, change.to) > -1)\n      signalCursorActivity(cm);\n\n    updateDoc(doc, change, spans, estimateHeight(cm));\n\n    if (!cm.options.lineWrapping) {\n      doc.iter(checkWidthStart, from.line + change.text.length, function(line) {\n        var len = lineLength(line);\n        if (len > display.maxLineLength) {\n          display.maxLine = line;\n          display.maxLineLength = len;\n          display.maxLineChanged = true;\n          recomputeMaxLength = false;\n        }\n      });\n      if (recomputeMaxLength) cm.curOp.updateMaxLine = true;\n    }\n\n    // Adjust frontier, schedule worker\n    doc.frontier = Math.min(doc.frontier, from.line);\n    startWorker(cm, 400);\n\n    var lendiff = change.text.length - (to.line - from.line) - 1;\n    // Remember that these lines changed, for updating the display\n    if (from.line == to.line && change.text.length == 1 && !isWholeLineUpdate(cm.doc, change))\n      regLineChange(cm, from.line, \"text\");\n    else\n      regChange(cm, from.line, to.line + 1, lendiff);\n\n    var changesHandler = hasHandler(cm, \"changes\"), changeHandler = hasHandler(cm, \"change\");\n    if (changeHandler || changesHandler) {\n      var obj = {\n        from: from, to: to,\n        text: change.text,\n        removed: change.removed,\n        origin: change.origin\n      };\n      if (changeHandler) signalLater(cm, \"change\", cm, obj);\n      if (changesHandler) (cm.curOp.changeObjs || (cm.curOp.changeObjs = [])).push(obj);\n    }\n    cm.display.selForContextMenu = null;\n  }\n\n  function replaceRange(doc, code, from, to, origin) {\n    if (!to) to = from;\n    if (cmp(to, from) < 0) { var tmp = to; to = from; from = tmp; }\n    if (typeof code == \"string\") code = splitLines(code);\n    makeChange(doc, {from: from, to: to, text: code, origin: origin});\n  }\n\n  // SCROLLING THINGS INTO VIEW\n\n  // If an editor sits on the top or bottom of the window, partially\n  // scrolled out of view, this ensures that the cursor is visible.\n  function maybeScrollWindow(cm, coords) {\n    var display = cm.display, box = display.sizer.getBoundingClientRect(), doScroll = null;\n    if (coords.top + box.top < 0) doScroll = true;\n    else if (coords.bottom + box.top > (window.innerHeight || document.documentElement.clientHeight)) doScroll = false;\n    if (doScroll != null && !phantom) {\n      var scrollNode = elt(\"div\", \"\\u200b\", null, \"position: absolute; top: \" +\n                           (coords.top - display.viewOffset - paddingTop(cm.display)) + \"px; height: \" +\n                           (coords.bottom - coords.top + scrollerCutOff) + \"px; left: \" +\n                           coords.left + \"px; width: 2px;\");\n      cm.display.lineSpace.appendChild(scrollNode);\n      scrollNode.scrollIntoView(doScroll);\n      cm.display.lineSpace.removeChild(scrollNode);\n    }\n  }\n\n  // Scroll a given position into view (immediately), verifying that\n  // it actually became visible (as line heights are accurately\n  // measured, the position of something may 'drift' during drawing).\n  function scrollPosIntoView(cm, pos, end, margin) {\n    if (margin == null) margin = 0;\n    for (var limit = 0; limit < 5; limit++) {\n      var changed = false, coords = cursorCoords(cm, pos);\n      var endCoords = !end || end == pos ? coords : cursorCoords(cm, end);\n      var scrollPos = calculateScrollPos(cm, Math.min(coords.left, endCoords.left),\n                                         Math.min(coords.top, endCoords.top) - margin,\n                                         Math.max(coords.left, endCoords.left),\n                                         Math.max(coords.bottom, endCoords.bottom) + margin);\n      var startTop = cm.doc.scrollTop, startLeft = cm.doc.scrollLeft;\n      if (scrollPos.scrollTop != null) {\n        setScrollTop(cm, scrollPos.scrollTop);\n        if (Math.abs(cm.doc.scrollTop - startTop) > 1) changed = true;\n      }\n      if (scrollPos.scrollLeft != null) {\n        setScrollLeft(cm, scrollPos.scrollLeft);\n        if (Math.abs(cm.doc.scrollLeft - startLeft) > 1) changed = true;\n      }\n      if (!changed) return coords;\n    }\n  }\n\n  // Scroll a given set of coordinates into view (immediately).\n  function scrollIntoView(cm, x1, y1, x2, y2) {\n    var scrollPos = calculateScrollPos(cm, x1, y1, x2, y2);\n    if (scrollPos.scrollTop != null) setScrollTop(cm, scrollPos.scrollTop);\n    if (scrollPos.scrollLeft != null) setScrollLeft(cm, scrollPos.scrollLeft);\n  }\n\n  // Calculate a new scroll position needed to scroll the given\n  // rectangle into view. Returns an object with scrollTop and\n  // scrollLeft properties. When these are undefined, the\n  // vertical/horizontal position does not need to be adjusted.\n  function calculateScrollPos(cm, x1, y1, x2, y2) {\n    var display = cm.display, snapMargin = textHeight(cm.display);\n    if (y1 < 0) y1 = 0;\n    var screentop = cm.curOp && cm.curOp.scrollTop != null ? cm.curOp.scrollTop : display.scroller.scrollTop;\n    var screen = display.scroller.clientHeight - scrollerCutOff, result = {};\n    if (y2 - y1 > screen) y2 = y1 + screen;\n    var docBottom = cm.doc.height + paddingVert(display);\n    var atTop = y1 < snapMargin, atBottom = y2 > docBottom - snapMargin;\n    if (y1 < screentop) {\n      result.scrollTop = atTop ? 0 : y1;\n    } else if (y2 > screentop + screen) {\n      var newTop = Math.min(y1, (atBottom ? docBottom : y2) - screen);\n      if (newTop != screentop) result.scrollTop = newTop;\n    }\n\n    var screenleft = cm.curOp && cm.curOp.scrollLeft != null ? cm.curOp.scrollLeft : display.scroller.scrollLeft;\n    var screenw = display.scroller.clientWidth - scrollerCutOff - display.gutters.offsetWidth;\n    var tooWide = x2 - x1 > screenw;\n    if (tooWide) x2 = x1 + screenw;\n    if (x1 < 10)\n      result.scrollLeft = 0;\n    else if (x1 < screenleft)\n      result.scrollLeft = Math.max(0, x1 - (tooWide ? 0 : 10));\n    else if (x2 > screenw + screenleft - 3)\n      result.scrollLeft = x2 + (tooWide ? 0 : 10) - screenw;\n\n    return result;\n  }\n\n  // Store a relative adjustment to the scroll position in the current\n  // operation (to be applied when the operation finishes).\n  function addToScrollPos(cm, left, top) {\n    if (left != null || top != null) resolveScrollToPos(cm);\n    if (left != null)\n      cm.curOp.scrollLeft = (cm.curOp.scrollLeft == null ? cm.doc.scrollLeft : cm.curOp.scrollLeft) + left;\n    if (top != null)\n      cm.curOp.scrollTop = (cm.curOp.scrollTop == null ? cm.doc.scrollTop : cm.curOp.scrollTop) + top;\n  }\n\n  // Make sure that at the end of the operation the current cursor is\n  // shown.\n  function ensureCursorVisible(cm) {\n    resolveScrollToPos(cm);\n    var cur = cm.getCursor(), from = cur, to = cur;\n    if (!cm.options.lineWrapping) {\n      from = cur.ch ? Pos(cur.line, cur.ch - 1) : cur;\n      to = Pos(cur.line, cur.ch + 1);\n    }\n    cm.curOp.scrollToPos = {from: from, to: to, margin: cm.options.cursorScrollMargin, isCursor: true};\n  }\n\n  // When an operation has its scrollToPos property set, and another\n  // scroll action is applied before the end of the operation, this\n  // 'simulates' scrolling that position into view in a cheap way, so\n  // that the effect of intermediate scroll commands is not ignored.\n  function resolveScrollToPos(cm) {\n    var range = cm.curOp.scrollToPos;\n    if (range) {\n      cm.curOp.scrollToPos = null;\n      var from = estimateCoords(cm, range.from), to = estimateCoords(cm, range.to);\n      var sPos = calculateScrollPos(cm, Math.min(from.left, to.left),\n                                    Math.min(from.top, to.top) - range.margin,\n                                    Math.max(from.right, to.right),\n                                    Math.max(from.bottom, to.bottom) + range.margin);\n      cm.scrollTo(sPos.scrollLeft, sPos.scrollTop);\n    }\n  }\n\n  // API UTILITIES\n\n  // Indent the given line. The how parameter can be \"smart\",\n  // \"add\"/null, \"subtract\", or \"prev\". When aggressive is false\n  // (typically set to true for forced single-line indents), empty\n  // lines are not indented, and places where the mode returns Pass\n  // are left alone.\n  function indentLine(cm, n, how, aggressive) {\n    var doc = cm.doc, state;\n    if (how == null) how = \"add\";\n    if (how == \"smart\") {\n      // Fall back to \"prev\" when the mode doesn't have an indentation\n      // method.\n      if (!doc.mode.indent) how = \"prev\";\n      else state = getStateBefore(cm, n);\n    }\n\n    var tabSize = cm.options.tabSize;\n    var line = getLine(doc, n), curSpace = countColumn(line.text, null, tabSize);\n    if (line.stateAfter) line.stateAfter = null;\n    var curSpaceString = line.text.match(/^\\s*/)[0], indentation;\n    if (!aggressive && !/\\S/.test(line.text)) {\n      indentation = 0;\n      how = \"not\";\n    } else if (how == \"smart\") {\n      indentation = doc.mode.indent(state, line.text.slice(curSpaceString.length), line.text);\n      if (indentation == Pass || indentation > 150) {\n        if (!aggressive) return;\n        how = \"prev\";\n      }\n    }\n    if (how == \"prev\") {\n      if (n > doc.first) indentation = countColumn(getLine(doc, n-1).text, null, tabSize);\n      else indentation = 0;\n    } else if (how == \"add\") {\n      indentation = curSpace + cm.options.indentUnit;\n    } else if (how == \"subtract\") {\n      indentation = curSpace - cm.options.indentUnit;\n    } else if (typeof how == \"number\") {\n      indentation = curSpace + how;\n    }\n    indentation = Math.max(0, indentation);\n\n    var indentString = \"\", pos = 0;\n    if (cm.options.indentWithTabs)\n      for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += \"\\t\";}\n    if (pos < indentation) indentString += spaceStr(indentation - pos);\n\n    if (indentString != curSpaceString) {\n      replaceRange(doc, indentString, Pos(n, 0), Pos(n, curSpaceString.length), \"+input\");\n    } else {\n      // Ensure that, if the cursor was in the whitespace at the start\n      // of the line, it is moved to the end of that space.\n      for (var i = 0; i < doc.sel.ranges.length; i++) {\n        var range = doc.sel.ranges[i];\n        if (range.head.line == n && range.head.ch < curSpaceString.length) {\n          var pos = Pos(n, curSpaceString.length);\n          replaceOneSelection(doc, i, new Range(pos, pos));\n          break;\n        }\n      }\n    }\n    line.stateAfter = null;\n  }\n\n  // Utility for applying a change to a line by handle or number,\n  // returning the number and optionally registering the line as\n  // changed.\n  function changeLine(doc, handle, changeType, op) {\n    var no = handle, line = handle;\n    if (typeof handle == \"number\") line = getLine(doc, clipLine(doc, handle));\n    else no = lineNo(handle);\n    if (no == null) return null;\n    if (op(line, no) && doc.cm) regLineChange(doc.cm, no, changeType);\n    return line;\n  }\n\n  // Helper for deleting text near the selection(s), used to implement\n  // backspace, delete, and similar functionality.\n  function deleteNearSelection(cm, compute) {\n    var ranges = cm.doc.sel.ranges, kill = [];\n    // Build up a set of ranges to kill first, merging overlapping\n    // ranges.\n    for (var i = 0; i < ranges.length; i++) {\n      var toKill = compute(ranges[i]);\n      while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) {\n        var replaced = kill.pop();\n        if (cmp(replaced.from, toKill.from) < 0) {\n          toKill.from = replaced.from;\n          break;\n        }\n      }\n      kill.push(toKill);\n    }\n    // Next, remove those actual ranges.\n    runInOp(cm, function() {\n      for (var i = kill.length - 1; i >= 0; i--)\n        replaceRange(cm.doc, \"\", kill[i].from, kill[i].to, \"+delete\");\n      ensureCursorVisible(cm);\n    });\n  }\n\n  // Used for horizontal relative motion. Dir is -1 or 1 (left or\n  // right), unit can be \"char\", \"column\" (like char, but doesn't\n  // cross line boundaries), \"word\" (across next word), or \"group\" (to\n  // the start of next group of word or non-word-non-whitespace\n  // chars). The visually param controls whether, in right-to-left\n  // text, direction 1 means to move towards the next index in the\n  // string, or towards the character to the right of the current\n  // position. The resulting position will have a hitSide=true\n  // property if it reached the end of the document.\n  function findPosH(doc, pos, dir, unit, visually) {\n    var line = pos.line, ch = pos.ch, origDir = dir;\n    var lineObj = getLine(doc, line);\n    var possible = true;\n    function findNextLine() {\n      var l = line + dir;\n      if (l < doc.first || l >= doc.first + doc.size) return (possible = false);\n      line = l;\n      return lineObj = getLine(doc, l);\n    }\n    function moveOnce(boundToLine) {\n      var next = (visually ? moveVisually : moveLogically)(lineObj, ch, dir, true);\n      if (next == null) {\n        if (!boundToLine && findNextLine()) {\n          if (visually) ch = (dir < 0 ? lineRight : lineLeft)(lineObj);\n          else ch = dir < 0 ? lineObj.text.length : 0;\n        } else return (possible = false);\n      } else ch = next;\n      return true;\n    }\n\n    if (unit == \"char\") moveOnce();\n    else if (unit == \"column\") moveOnce(true);\n    else if (unit == \"word\" || unit == \"group\") {\n      var sawType = null, group = unit == \"group\";\n      var helper = doc.cm && doc.cm.getHelper(pos, \"wordChars\");\n      for (var first = true;; first = false) {\n        if (dir < 0 && !moveOnce(!first)) break;\n        var cur = lineObj.text.charAt(ch) || \"\\n\";\n        var type = isWordChar(cur, helper) ? \"w\"\n          : group && cur == \"\\n\" ? \"n\"\n          : !group || /\\s/.test(cur) ? null\n          : \"p\";\n        if (group && !first && !type) type = \"s\";\n        if (sawType && sawType != type) {\n          if (dir < 0) {dir = 1; moveOnce();}\n          break;\n        }\n\n        if (type) sawType = type;\n        if (dir > 0 && !moveOnce(!first)) break;\n      }\n    }\n    var result = skipAtomic(doc, Pos(line, ch), origDir, true);\n    if (!possible) result.hitSide = true;\n    return result;\n  }\n\n  // For relative vertical movement. Dir may be -1 or 1. Unit can be\n  // \"page\" or \"line\". The resulting position will have a hitSide=true\n  // property if it reached the end of the document.\n  function findPosV(cm, pos, dir, unit) {\n    var doc = cm.doc, x = pos.left, y;\n    if (unit == \"page\") {\n      var pageSize = Math.min(cm.display.wrapper.clientHeight, window.innerHeight || document.documentElement.clientHeight);\n      y = pos.top + dir * (pageSize - (dir < 0 ? 1.5 : .5) * textHeight(cm.display));\n    } else if (unit == \"line\") {\n      y = dir > 0 ? pos.bottom + 3 : pos.top - 3;\n    }\n    for (;;) {\n      var target = coordsChar(cm, x, y);\n      if (!target.outside) break;\n      if (dir < 0 ? y <= 0 : y >= doc.height) { target.hitSide = true; break; }\n      y += dir * 5;\n    }\n    return target;\n  }\n\n  // EDITOR METHODS\n\n  // The publicly visible API. Note that methodOp(f) means\n  // 'wrap f in an operation, performed on its `this` parameter'.\n\n  // This is not the complete set of editor methods. Most of the\n  // methods defined on the Doc type are also injected into\n  // CodeMirror.prototype, for backwards compatibility and\n  // convenience.\n\n  CodeMirror.prototype = {\n    constructor: CodeMirror,\n    focus: function(){window.focus(); focusInput(this); fastPoll(this);},\n\n    setOption: function(option, value) {\n      var options = this.options, old = options[option];\n      if (options[option] == value && option != \"mode\") return;\n      options[option] = value;\n      if (optionHandlers.hasOwnProperty(option))\n        operation(this, optionHandlers[option])(this, value, old);\n    },\n\n    getOption: function(option) {return this.options[option];},\n    getDoc: function() {return this.doc;},\n\n    addKeyMap: function(map, bottom) {\n      this.state.keyMaps[bottom ? \"push\" : \"unshift\"](map);\n    },\n    removeKeyMap: function(map) {\n      var maps = this.state.keyMaps;\n      for (var i = 0; i < maps.length; ++i)\n        if (maps[i] == map || (typeof maps[i] != \"string\" && maps[i].name == map)) {\n          maps.splice(i, 1);\n          return true;\n        }\n    },\n\n    addOverlay: methodOp(function(spec, options) {\n      var mode = spec.token ? spec : CodeMirror.getMode(this.options, spec);\n      if (mode.startState) throw new Error(\"Overlays may not be stateful.\");\n      this.state.overlays.push({mode: mode, modeSpec: spec, opaque: options && options.opaque});\n      this.state.modeGen++;\n      regChange(this);\n    }),\n    removeOverlay: methodOp(function(spec) {\n      var overlays = this.state.overlays;\n      for (var i = 0; i < overlays.length; ++i) {\n        var cur = overlays[i].modeSpec;\n        if (cur == spec || typeof spec == \"string\" && cur.name == spec) {\n          overlays.splice(i, 1);\n          this.state.modeGen++;\n          regChange(this);\n          return;\n        }\n      }\n    }),\n\n    indentLine: methodOp(function(n, dir, aggressive) {\n      if (typeof dir != \"string\" && typeof dir != \"number\") {\n        if (dir == null) dir = this.options.smartIndent ? \"smart\" : \"prev\";\n        else dir = dir ? \"add\" : \"subtract\";\n      }\n      if (isLine(this.doc, n)) indentLine(this, n, dir, aggressive);\n    }),\n    indentSelection: methodOp(function(how) {\n      var ranges = this.doc.sel.ranges, end = -1;\n      for (var i = 0; i < ranges.length; i++) {\n        var range = ranges[i];\n        if (!range.empty()) {\n          var from = range.from(), to = range.to();\n          var start = Math.max(end, from.line);\n          end = Math.min(this.lastLine(), to.line - (to.ch ? 0 : 1)) + 1;\n          for (var j = start; j < end; ++j)\n            indentLine(this, j, how);\n          var newRanges = this.doc.sel.ranges;\n          if (from.ch == 0 && ranges.length == newRanges.length && newRanges[i].from().ch > 0)\n            replaceOneSelection(this.doc, i, new Range(from, newRanges[i].to()), sel_dontScroll);\n        } else if (range.head.line > end) {\n          indentLine(this, range.head.line, how, true);\n          end = range.head.line;\n          if (i == this.doc.sel.primIndex) ensureCursorVisible(this);\n        }\n      }\n    }),\n\n    // Fetch the parser token for a given character. Useful for hacks\n    // that want to inspect the mode state (say, for completion).\n    getTokenAt: function(pos, precise) {\n      var doc = this.doc;\n      pos = clipPos(doc, pos);\n      var state = getStateBefore(this, pos.line, precise), mode = this.doc.mode;\n      var line = getLine(doc, pos.line);\n      var stream = new StringStream(line.text, this.options.tabSize);\n      while (stream.pos < pos.ch && !stream.eol()) {\n        stream.start = stream.pos;\n        var style = readToken(mode, stream, state);\n      }\n      return {start: stream.start,\n              end: stream.pos,\n              string: stream.current(),\n              type: style || null,\n              state: state};\n    },\n\n    getTokenTypeAt: function(pos) {\n      pos = clipPos(this.doc, pos);\n      var styles = getLineStyles(this, getLine(this.doc, pos.line));\n      var before = 0, after = (styles.length - 1) / 2, ch = pos.ch;\n      var type;\n      if (ch == 0) type = styles[2];\n      else for (;;) {\n        var mid = (before + after) >> 1;\n        if ((mid ? styles[mid * 2 - 1] : 0) >= ch) after = mid;\n        else if (styles[mid * 2 + 1] < ch) before = mid + 1;\n        else { type = styles[mid * 2 + 2]; break; }\n      }\n      var cut = type ? type.indexOf(\"cm-overlay \") : -1;\n      return cut < 0 ? type : cut == 0 ? null : type.slice(0, cut - 1);\n    },\n\n    getModeAt: function(pos) {\n      var mode = this.doc.mode;\n      if (!mode.innerMode) return mode;\n      return CodeMirror.innerMode(mode, this.getTokenAt(pos).state).mode;\n    },\n\n    getHelper: function(pos, type) {\n      return this.getHelpers(pos, type)[0];\n    },\n\n    getHelpers: function(pos, type) {\n      var found = [];\n      if (!helpers.hasOwnProperty(type)) return helpers;\n      var help = helpers[type], mode = this.getModeAt(pos);\n      if (typeof mode[type] == \"string\") {\n        if (help[mode[type]]) found.push(help[mode[type]]);\n      } else if (mode[type]) {\n        for (var i = 0; i < mode[type].length; i++) {\n          var val = help[mode[type][i]];\n          if (val) found.push(val);\n        }\n      } else if (mode.helperType && help[mode.helperType]) {\n        found.push(help[mode.helperType]);\n      } else if (help[mode.name]) {\n        found.push(help[mode.name]);\n      }\n      for (var i = 0; i < help._global.length; i++) {\n        var cur = help._global[i];\n        if (cur.pred(mode, this) && indexOf(found, cur.val) == -1)\n          found.push(cur.val);\n      }\n      return found;\n    },\n\n    getStateAfter: function(line, precise) {\n      var doc = this.doc;\n      line = clipLine(doc, line == null ? doc.first + doc.size - 1: line);\n      return getStateBefore(this, line + 1, precise);\n    },\n\n    cursorCoords: function(start, mode) {\n      var pos, range = this.doc.sel.primary();\n      if (start == null) pos = range.head;\n      else if (typeof start == \"object\") pos = clipPos(this.doc, start);\n      else pos = start ? range.from() : range.to();\n      return cursorCoords(this, pos, mode || \"page\");\n    },\n\n    charCoords: function(pos, mode) {\n      return charCoords(this, clipPos(this.doc, pos), mode || \"page\");\n    },\n\n    coordsChar: function(coords, mode) {\n      coords = fromCoordSystem(this, coords, mode || \"page\");\n      return coordsChar(this, coords.left, coords.top);\n    },\n\n    lineAtHeight: function(height, mode) {\n      height = fromCoordSystem(this, {top: height, left: 0}, mode || \"page\").top;\n      return lineAtHeight(this.doc, height + this.display.viewOffset);\n    },\n    heightAtLine: function(line, mode) {\n      var end = false, last = this.doc.first + this.doc.size - 1;\n      if (line < this.doc.first) line = this.doc.first;\n      else if (line > last) { line = last; end = true; }\n      var lineObj = getLine(this.doc, line);\n      return intoCoordSystem(this, lineObj, {top: 0, left: 0}, mode || \"page\").top +\n        (end ? this.doc.height - heightAtLine(lineObj) : 0);\n    },\n\n    defaultTextHeight: function() { return textHeight(this.display); },\n    defaultCharWidth: function() { return charWidth(this.display); },\n\n    setGutterMarker: methodOp(function(line, gutterID, value) {\n      return changeLine(this.doc, line, \"gutter\", function(line) {\n        var markers = line.gutterMarkers || (line.gutterMarkers = {});\n        markers[gutterID] = value;\n        if (!value && isEmpty(markers)) line.gutterMarkers = null;\n        return true;\n      });\n    }),\n\n    clearGutter: methodOp(function(gutterID) {\n      var cm = this, doc = cm.doc, i = doc.first;\n      doc.iter(function(line) {\n        if (line.gutterMarkers && line.gutterMarkers[gutterID]) {\n          line.gutterMarkers[gutterID] = null;\n          regLineChange(cm, i, \"gutter\");\n          if (isEmpty(line.gutterMarkers)) line.gutterMarkers = null;\n        }\n        ++i;\n      });\n    }),\n\n    addLineWidget: methodOp(function(handle, node, options) {\n      return addLineWidget(this, handle, node, options);\n    }),\n\n    removeLineWidget: function(widget) { widget.clear(); },\n\n    lineInfo: function(line) {\n      if (typeof line == \"number\") {\n        if (!isLine(this.doc, line)) return null;\n        var n = line;\n        line = getLine(this.doc, line);\n        if (!line) return null;\n      } else {\n        var n = lineNo(line);\n        if (n == null) return null;\n      }\n      return {line: n, handle: line, text: line.text, gutterMarkers: line.gutterMarkers,\n              textClass: line.textClass, bgClass: line.bgClass, wrapClass: line.wrapClass,\n              widgets: line.widgets};\n    },\n\n    getViewport: function() { return {from: this.display.viewFrom, to: this.display.viewTo};},\n\n    addWidget: function(pos, node, scroll, vert, horiz) {\n      var display = this.display;\n      pos = cursorCoords(this, clipPos(this.doc, pos));\n      var top = pos.bottom, left = pos.left;\n      node.style.position = \"absolute\";\n      display.sizer.appendChild(node);\n      if (vert == \"over\") {\n        top = pos.top;\n      } else if (vert == \"above\" || vert == \"near\") {\n        var vspace = Math.max(display.wrapper.clientHeight, this.doc.height),\n        hspace = Math.max(display.sizer.clientWidth, display.lineSpace.clientWidth);\n        // Default to positioning above (if specified and possible); otherwise default to positioning below\n        if ((vert == 'above' || pos.bottom + node.offsetHeight > vspace) && pos.top > node.offsetHeight)\n          top = pos.top - node.offsetHeight;\n        else if (pos.bottom + node.offsetHeight <= vspace)\n          top = pos.bottom;\n        if (left + node.offsetWidth > hspace)\n          left = hspace - node.offsetWidth;\n      }\n      node.style.top = top + \"px\";\n      node.style.left = node.style.right = \"\";\n      if (horiz == \"right\") {\n        left = display.sizer.clientWidth - node.offsetWidth;\n        node.style.right = \"0px\";\n      } else {\n        if (horiz == \"left\") left = 0;\n        else if (horiz == \"middle\") left = (display.sizer.clientWidth - node.offsetWidth) / 2;\n        node.style.left = left + \"px\";\n      }\n      if (scroll)\n        scrollIntoView(this, left, top, left + node.offsetWidth, top + node.offsetHeight);\n    },\n\n    triggerOnKeyDown: methodOp(onKeyDown),\n    triggerOnKeyPress: methodOp(onKeyPress),\n    triggerOnKeyUp: onKeyUp,\n\n    execCommand: function(cmd) {\n      if (commands.hasOwnProperty(cmd))\n        return commands[cmd](this);\n    },\n\n    findPosH: function(from, amount, unit, visually) {\n      var dir = 1;\n      if (amount < 0) { dir = -1; amount = -amount; }\n      for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {\n        cur = findPosH(this.doc, cur, dir, unit, visually);\n        if (cur.hitSide) break;\n      }\n      return cur;\n    },\n\n    moveH: methodOp(function(dir, unit) {\n      var cm = this;\n      cm.extendSelectionsBy(function(range) {\n        if (cm.display.shift || cm.doc.extend || range.empty())\n          return findPosH(cm.doc, range.head, dir, unit, cm.options.rtlMoveVisually);\n        else\n          return dir < 0 ? range.from() : range.to();\n      }, sel_move);\n    }),\n\n    deleteH: methodOp(function(dir, unit) {\n      var sel = this.doc.sel, doc = this.doc;\n      if (sel.somethingSelected())\n        doc.replaceSelection(\"\", null, \"+delete\");\n      else\n        deleteNearSelection(this, function(range) {\n          var other = findPosH(doc, range.head, dir, unit, false);\n          return dir < 0 ? {from: other, to: range.head} : {from: range.head, to: other};\n        });\n    }),\n\n    findPosV: function(from, amount, unit, goalColumn) {\n      var dir = 1, x = goalColumn;\n      if (amount < 0) { dir = -1; amount = -amount; }\n      for (var i = 0, cur = clipPos(this.doc, from); i < amount; ++i) {\n        var coords = cursorCoords(this, cur, \"div\");\n        if (x == null) x = coords.left;\n        else coords.left = x;\n        cur = findPosV(this, coords, dir, unit);\n        if (cur.hitSide) break;\n      }\n      return cur;\n    },\n\n    moveV: methodOp(function(dir, unit) {\n      var cm = this, doc = this.doc, goals = [];\n      var collapse = !cm.display.shift && !doc.extend && doc.sel.somethingSelected();\n      doc.extendSelectionsBy(function(range) {\n        if (collapse)\n          return dir < 0 ? range.from() : range.to();\n        var headPos = cursorCoords(cm, range.head, \"div\");\n        if (range.goalColumn != null) headPos.left = range.goalColumn;\n        goals.push(headPos.left);\n        var pos = findPosV(cm, headPos, dir, unit);\n        if (unit == \"page\" && range == doc.sel.primary())\n          addToScrollPos(cm, null, charCoords(cm, pos, \"div\").top - headPos.top);\n        return pos;\n      }, sel_move);\n      if (goals.length) for (var i = 0; i < doc.sel.ranges.length; i++)\n        doc.sel.ranges[i].goalColumn = goals[i];\n    }),\n\n    // Find the word at the given position (as returned by coordsChar).\n    findWordAt: function(pos) {\n      var doc = this.doc, line = getLine(doc, pos.line).text;\n      var start = pos.ch, end = pos.ch;\n      if (line) {\n        var helper = this.getHelper(pos, \"wordChars\");\n        if ((pos.xRel < 0 || end == line.length) && start) --start; else ++end;\n        var startChar = line.charAt(start);\n        var check = isWordChar(startChar, helper)\n          ? function(ch) { return isWordChar(ch, helper); }\n          : /\\s/.test(startChar) ? function(ch) {return /\\s/.test(ch);}\n          : function(ch) {return !/\\s/.test(ch) && !isWordChar(ch);};\n        while (start > 0 && check(line.charAt(start - 1))) --start;\n        while (end < line.length && check(line.charAt(end))) ++end;\n      }\n      return new Range(Pos(pos.line, start), Pos(pos.line, end));\n    },\n\n    toggleOverwrite: function(value) {\n      if (value != null && value == this.state.overwrite) return;\n      if (this.state.overwrite = !this.state.overwrite)\n        addClass(this.display.cursorDiv, \"CodeMirror-overwrite\");\n      else\n        rmClass(this.display.cursorDiv, \"CodeMirror-overwrite\");\n\n      signal(this, \"overwriteToggle\", this, this.state.overwrite);\n    },\n    hasFocus: function() { return activeElt() == this.display.input; },\n\n    scrollTo: methodOp(function(x, y) {\n      if (x != null || y != null) resolveScrollToPos(this);\n      if (x != null) this.curOp.scrollLeft = x;\n      if (y != null) this.curOp.scrollTop = y;\n    }),\n    getScrollInfo: function() {\n      var scroller = this.display.scroller, co = scrollerCutOff;\n      return {left: scroller.scrollLeft, top: scroller.scrollTop,\n              height: scroller.scrollHeight - co, width: scroller.scrollWidth - co,\n              clientHeight: scroller.clientHeight - co, clientWidth: scroller.clientWidth - co};\n    },\n\n    scrollIntoView: methodOp(function(range, margin) {\n      if (range == null) {\n        range = {from: this.doc.sel.primary().head, to: null};\n        if (margin == null) margin = this.options.cursorScrollMargin;\n      } else if (typeof range == \"number\") {\n        range = {from: Pos(range, 0), to: null};\n      } else if (range.from == null) {\n        range = {from: range, to: null};\n      }\n      if (!range.to) range.to = range.from;\n      range.margin = margin || 0;\n\n      if (range.from.line != null) {\n        resolveScrollToPos(this);\n        this.curOp.scrollToPos = range;\n      } else {\n        var sPos = calculateScrollPos(this, Math.min(range.from.left, range.to.left),\n                                      Math.min(range.from.top, range.to.top) - range.margin,\n                                      Math.max(range.from.right, range.to.right),\n                                      Math.max(range.from.bottom, range.to.bottom) + range.margin);\n        this.scrollTo(sPos.scrollLeft, sPos.scrollTop);\n      }\n    }),\n\n    setSize: methodOp(function(width, height) {\n      var cm = this;\n      function interpret(val) {\n        return typeof val == \"number\" || /^\\d+$/.test(String(val)) ? val + \"px\" : val;\n      }\n      if (width != null) cm.display.wrapper.style.width = interpret(width);\n      if (height != null) cm.display.wrapper.style.height = interpret(height);\n      if (cm.options.lineWrapping) clearLineMeasurementCache(this);\n      var lineNo = cm.display.viewFrom;\n      cm.doc.iter(lineNo, cm.display.viewTo, function(line) {\n        if (line.widgets) for (var i = 0; i < line.widgets.length; i++)\n          if (line.widgets[i].noHScroll) { regLineChange(cm, lineNo, \"widget\"); break; }\n        ++lineNo;\n      });\n      cm.curOp.forceUpdate = true;\n      signal(cm, \"refresh\", this);\n    }),\n\n    operation: function(f){return runInOp(this, f);},\n\n    refresh: methodOp(function() {\n      var oldHeight = this.display.cachedTextHeight;\n      regChange(this);\n      this.curOp.forceUpdate = true;\n      clearCaches(this);\n      this.scrollTo(this.doc.scrollLeft, this.doc.scrollTop);\n      updateGutterSpace(this);\n      if (oldHeight == null || Math.abs(oldHeight - textHeight(this.display)) > .5)\n        estimateLineHeights(this);\n      signal(this, \"refresh\", this);\n    }),\n\n    swapDoc: methodOp(function(doc) {\n      var old = this.doc;\n      old.cm = null;\n      attachDoc(this, doc);\n      clearCaches(this);\n      resetInput(this);\n      this.scrollTo(doc.scrollLeft, doc.scrollTop);\n      this.curOp.forceScroll = true;\n      signalLater(this, \"swapDoc\", this, old);\n      return old;\n    }),\n\n    getInputField: function(){return this.display.input;},\n    getWrapperElement: function(){return this.display.wrapper;},\n    getScrollerElement: function(){return this.display.scroller;},\n    getGutterElement: function(){return this.display.gutters;}\n  };\n  eventMixin(CodeMirror);\n\n  // OPTION DEFAULTS\n\n  // The default configuration options.\n  var defaults = CodeMirror.defaults = {};\n  // Functions to run when options are changed.\n  var optionHandlers = CodeMirror.optionHandlers = {};\n\n  function option(name, deflt, handle, notOnInit) {\n    CodeMirror.defaults[name] = deflt;\n    if (handle) optionHandlers[name] =\n      notOnInit ? function(cm, val, old) {if (old != Init) handle(cm, val, old);} : handle;\n  }\n\n  // Passed to option handlers when there is no old value.\n  var Init = CodeMirror.Init = {toString: function(){return \"CodeMirror.Init\";}};\n\n  // These two are, on init, called from the constructor because they\n  // have to be initialized before the editor can start at all.\n  option(\"value\", \"\", function(cm, val) {\n    cm.setValue(val);\n  }, true);\n  option(\"mode\", null, function(cm, val) {\n    cm.doc.modeOption = val;\n    loadMode(cm);\n  }, true);\n\n  option(\"indentUnit\", 2, loadMode, true);\n  option(\"indentWithTabs\", false);\n  option(\"smartIndent\", true);\n  option(\"tabSize\", 4, function(cm) {\n    resetModeState(cm);\n    clearCaches(cm);\n    regChange(cm);\n  }, true);\n  option(\"specialChars\", /[\\t\\u0000-\\u0019\\u00ad\\u200b-\\u200f\\u2028\\u2029\\ufeff]/g, function(cm, val) {\n    cm.options.specialChars = new RegExp(val.source + (val.test(\"\\t\") ? \"\" : \"|\\t\"), \"g\");\n    cm.refresh();\n  }, true);\n  option(\"specialCharPlaceholder\", defaultSpecialCharPlaceholder, function(cm) {cm.refresh();}, true);\n  option(\"electricChars\", true);\n  option(\"rtlMoveVisually\", !windows);\n  option(\"wholeLineUpdateBefore\", true);\n\n  option(\"theme\", \"default\", function(cm) {\n    themeChanged(cm);\n    guttersChanged(cm);\n  }, true);\n  option(\"keyMap\", \"default\", keyMapChanged);\n  option(\"extraKeys\", null);\n\n  option(\"lineWrapping\", false, wrappingChanged, true);\n  option(\"gutters\", [], function(cm) {\n    setGuttersForLineNumbers(cm.options);\n    guttersChanged(cm);\n  }, true);\n  option(\"fixedGutter\", true, function(cm, val) {\n    cm.display.gutters.style.left = val ? compensateForHScroll(cm.display) + \"px\" : \"0\";\n    cm.refresh();\n  }, true);\n  option(\"coverGutterNextToScrollbar\", false, updateScrollbars, true);\n  option(\"lineNumbers\", false, function(cm) {\n    setGuttersForLineNumbers(cm.options);\n    guttersChanged(cm);\n  }, true);\n  option(\"firstLineNumber\", 1, guttersChanged, true);\n  option(\"lineNumberFormatter\", function(integer) {return integer;}, guttersChanged, true);\n  option(\"showCursorWhenSelecting\", false, updateSelection, true);\n\n  option(\"resetSelectionOnContextMenu\", true);\n\n  option(\"readOnly\", false, function(cm, val) {\n    if (val == \"nocursor\") {\n      onBlur(cm);\n      cm.display.input.blur();\n      cm.display.disabled = true;\n    } else {\n      cm.display.disabled = false;\n      if (!val) resetInput(cm);\n    }\n  });\n  option(\"disableInput\", false, function(cm, val) {if (!val) resetInput(cm);}, true);\n  option(\"dragDrop\", true);\n\n  option(\"cursorBlinkRate\", 530);\n  option(\"cursorScrollMargin\", 0);\n  option(\"cursorHeight\", 1, updateSelection, true);\n  option(\"singleCursorHeightPerLine\", true, updateSelection, true);\n  option(\"workTime\", 100);\n  option(\"workDelay\", 100);\n  option(\"flattenSpans\", true, resetModeState, true);\n  option(\"addModeClass\", false, resetModeState, true);\n  option(\"pollInterval\", 100);\n  option(\"undoDepth\", 200, function(cm, val){cm.doc.history.undoDepth = val;});\n  option(\"historyEventDelay\", 1250);\n  option(\"viewportMargin\", 10, function(cm){cm.refresh();}, true);\n  option(\"maxHighlightLength\", 10000, resetModeState, true);\n  option(\"moveInputWithCursor\", true, function(cm, val) {\n    if (!val) cm.display.inputDiv.style.top = cm.display.inputDiv.style.left = 0;\n  });\n\n  option(\"tabindex\", null, function(cm, val) {\n    cm.display.input.tabIndex = val || \"\";\n  });\n  option(\"autofocus\", null);\n\n  // MODE DEFINITION AND QUERYING\n\n  // Known modes, by name and by MIME\n  var modes = CodeMirror.modes = {}, mimeModes = CodeMirror.mimeModes = {};\n\n  // Extra arguments are stored as the mode's dependencies, which is\n  // used by (legacy) mechanisms like loadmode.js to automatically\n  // load a mode. (Preferred mechanism is the require/define calls.)\n  CodeMirror.defineMode = function(name, mode) {\n    if (!CodeMirror.defaults.mode && name != \"null\") CodeMirror.defaults.mode = name;\n    if (arguments.length > 2)\n      mode.dependencies = Array.prototype.slice.call(arguments, 2);\n    modes[name] = mode;\n  };\n\n  CodeMirror.defineMIME = function(mime, spec) {\n    mimeModes[mime] = spec;\n  };\n\n  // Given a MIME type, a {name, ...options} config object, or a name\n  // string, return a mode config object.\n  CodeMirror.resolveMode = function(spec) {\n    if (typeof spec == \"string\" && mimeModes.hasOwnProperty(spec)) {\n      spec = mimeModes[spec];\n    } else if (spec && typeof spec.name == \"string\" && mimeModes.hasOwnProperty(spec.name)) {\n      var found = mimeModes[spec.name];\n      if (typeof found == \"string\") found = {name: found};\n      spec = createObj(found, spec);\n      spec.name = found.name;\n    } else if (typeof spec == \"string\" && /^[\\w\\-]+\\/[\\w\\-]+\\+xml$/.test(spec)) {\n      return CodeMirror.resolveMode(\"application/xml\");\n    }\n    if (typeof spec == \"string\") return {name: spec};\n    else return spec || {name: \"null\"};\n  };\n\n  // Given a mode spec (anything that resolveMode accepts), find and\n  // initialize an actual mode object.\n  CodeMirror.getMode = function(options, spec) {\n    var spec = CodeMirror.resolveMode(spec);\n    var mfactory = modes[spec.name];\n    if (!mfactory) return CodeMirror.getMode(options, \"text/plain\");\n    var modeObj = mfactory(options, spec);\n    if (modeExtensions.hasOwnProperty(spec.name)) {\n      var exts = modeExtensions[spec.name];\n      for (var prop in exts) {\n        if (!exts.hasOwnProperty(prop)) continue;\n        if (modeObj.hasOwnProperty(prop)) modeObj[\"_\" + prop] = modeObj[prop];\n        modeObj[prop] = exts[prop];\n      }\n    }\n    modeObj.name = spec.name;\n    if (spec.helperType) modeObj.helperType = spec.helperType;\n    if (spec.modeProps) for (var prop in spec.modeProps)\n      modeObj[prop] = spec.modeProps[prop];\n\n    return modeObj;\n  };\n\n  // Minimal default mode.\n  CodeMirror.defineMode(\"null\", function() {\n    return {token: function(stream) {stream.skipToEnd();}};\n  });\n  CodeMirror.defineMIME(\"text/plain\", \"null\");\n\n  // This can be used to attach properties to mode objects from\n  // outside the actual mode definition.\n  var modeExtensions = CodeMirror.modeExtensions = {};\n  CodeMirror.extendMode = function(mode, properties) {\n    var exts = modeExtensions.hasOwnProperty(mode) ? modeExtensions[mode] : (modeExtensions[mode] = {});\n    copyObj(properties, exts);\n  };\n\n  // EXTENSIONS\n\n  CodeMirror.defineExtension = function(name, func) {\n    CodeMirror.prototype[name] = func;\n  };\n  CodeMirror.defineDocExtension = function(name, func) {\n    Doc.prototype[name] = func;\n  };\n  CodeMirror.defineOption = option;\n\n  var initHooks = [];\n  CodeMirror.defineInitHook = function(f) {initHooks.push(f);};\n\n  var helpers = CodeMirror.helpers = {};\n  CodeMirror.registerHelper = function(type, name, value) {\n    if (!helpers.hasOwnProperty(type)) helpers[type] = CodeMirror[type] = {_global: []};\n    helpers[type][name] = value;\n  };\n  CodeMirror.registerGlobalHelper = function(type, name, predicate, value) {\n    CodeMirror.registerHelper(type, name, value);\n    helpers[type]._global.push({pred: predicate, val: value});\n  };\n\n  // MODE STATE HANDLING\n\n  // Utility functions for working with state. Exported because nested\n  // modes need to do this for their inner modes.\n\n  var copyState = CodeMirror.copyState = function(mode, state) {\n    if (state === true) return state;\n    if (mode.copyState) return mode.copyState(state);\n    var nstate = {};\n    for (var n in state) {\n      var val = state[n];\n      if (val instanceof Array) val = val.concat([]);\n      nstate[n] = val;\n    }\n    return nstate;\n  };\n\n  var startState = CodeMirror.startState = function(mode, a1, a2) {\n    return mode.startState ? mode.startState(a1, a2) : true;\n  };\n\n  // Given a mode and a state (for that mode), find the inner mode and\n  // state at the position that the state refers to.\n  CodeMirror.innerMode = function(mode, state) {\n    while (mode.innerMode) {\n      var info = mode.innerMode(state);\n      if (!info || info.mode == mode) break;\n      state = info.state;\n      mode = info.mode;\n    }\n    return info || {mode: mode, state: state};\n  };\n\n  // STANDARD COMMANDS\n\n  // Commands are parameter-less actions that can be performed on an\n  // editor, mostly used for keybindings.\n  var commands = CodeMirror.commands = {\n    selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll);},\n    singleSelection: function(cm) {\n      cm.setSelection(cm.getCursor(\"anchor\"), cm.getCursor(\"head\"), sel_dontScroll);\n    },\n    killLine: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        if (range.empty()) {\n          var len = getLine(cm.doc, range.head.line).text.length;\n          if (range.head.ch == len && range.head.line < cm.lastLine())\n            return {from: range.head, to: Pos(range.head.line + 1, 0)};\n          else\n            return {from: range.head, to: Pos(range.head.line, len)};\n        } else {\n          return {from: range.from(), to: range.to()};\n        }\n      });\n    },\n    deleteLine: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        return {from: Pos(range.from().line, 0),\n                to: clipPos(cm.doc, Pos(range.to().line + 1, 0))};\n      });\n    },\n    delLineLeft: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        return {from: Pos(range.from().line, 0), to: range.from()};\n      });\n    },\n    delWrappedLineLeft: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        var leftPos = cm.coordsChar({left: 0, top: top}, \"div\");\n        return {from: leftPos, to: range.from()};\n      });\n    },\n    delWrappedLineRight: function(cm) {\n      deleteNearSelection(cm, function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        var rightPos = cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, \"div\");\n        return {from: range.from(), to: rightPos };\n      });\n    },\n    undo: function(cm) {cm.undo();},\n    redo: function(cm) {cm.redo();},\n    undoSelection: function(cm) {cm.undoSelection();},\n    redoSelection: function(cm) {cm.redoSelection();},\n    goDocStart: function(cm) {cm.extendSelection(Pos(cm.firstLine(), 0));},\n    goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));},\n    goLineStart: function(cm) {\n      cm.extendSelectionsBy(function(range) { return lineStart(cm, range.head.line); },\n                            {origin: \"+move\", bias: 1});\n    },\n    goLineStartSmart: function(cm) {\n      cm.extendSelectionsBy(function(range) {\n        return lineStartSmart(cm, range.head);\n      }, {origin: \"+move\", bias: 1});\n    },\n    goLineEnd: function(cm) {\n      cm.extendSelectionsBy(function(range) { return lineEnd(cm, range.head.line); },\n                            {origin: \"+move\", bias: -1});\n    },\n    goLineRight: function(cm) {\n      cm.extendSelectionsBy(function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        return cm.coordsChar({left: cm.display.lineDiv.offsetWidth + 100, top: top}, \"div\");\n      }, sel_move);\n    },\n    goLineLeft: function(cm) {\n      cm.extendSelectionsBy(function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        return cm.coordsChar({left: 0, top: top}, \"div\");\n      }, sel_move);\n    },\n    goLineLeftSmart: function(cm) {\n      cm.extendSelectionsBy(function(range) {\n        var top = cm.charCoords(range.head, \"div\").top + 5;\n        var pos = cm.coordsChar({left: 0, top: top}, \"div\");\n        if (pos.ch < cm.getLine(pos.line).search(/\\S/)) return lineStartSmart(cm, range.head);\n        return pos;\n      }, sel_move);\n    },\n    goLineUp: function(cm) {cm.moveV(-1, \"line\");},\n    goLineDown: function(cm) {cm.moveV(1, \"line\");},\n    goPageUp: function(cm) {cm.moveV(-1, \"page\");},\n    goPageDown: function(cm) {cm.moveV(1, \"page\");},\n    goCharLeft: function(cm) {cm.moveH(-1, \"char\");},\n    goCharRight: function(cm) {cm.moveH(1, \"char\");},\n    goColumnLeft: function(cm) {cm.moveH(-1, \"column\");},\n    goColumnRight: function(cm) {cm.moveH(1, \"column\");},\n    goWordLeft: function(cm) {cm.moveH(-1, \"word\");},\n    goGroupRight: function(cm) {cm.moveH(1, \"group\");},\n    goGroupLeft: function(cm) {cm.moveH(-1, \"group\");},\n    goWordRight: function(cm) {cm.moveH(1, \"word\");},\n    delCharBefore: function(cm) {cm.deleteH(-1, \"char\");},\n    delCharAfter: function(cm) {cm.deleteH(1, \"char\");},\n    delWordBefore: function(cm) {cm.deleteH(-1, \"word\");},\n    delWordAfter: function(cm) {cm.deleteH(1, \"word\");},\n    delGroupBefore: function(cm) {cm.deleteH(-1, \"group\");},\n    delGroupAfter: function(cm) {cm.deleteH(1, \"group\");},\n    indentAuto: function(cm) {cm.indentSelection(\"smart\");},\n    indentMore: function(cm) {cm.indentSelection(\"add\");},\n    indentLess: function(cm) {cm.indentSelection(\"subtract\");},\n    insertTab: function(cm) {cm.replaceSelection(\"\\t\");},\n    insertSoftTab: function(cm) {\n      var spaces = [], ranges = cm.listSelections(), tabSize = cm.options.tabSize;\n      for (var i = 0; i < ranges.length; i++) {\n        var pos = ranges[i].from();\n        var col = countColumn(cm.getLine(pos.line), pos.ch, tabSize);\n        spaces.push(new Array(tabSize - col % tabSize + 1).join(\" \"));\n      }\n      cm.replaceSelections(spaces);\n    },\n    defaultTab: function(cm) {\n      if (cm.somethingSelected()) cm.indentSelection(\"add\");\n      else cm.execCommand(\"insertTab\");\n    },\n    transposeChars: function(cm) {\n      runInOp(cm, function() {\n        var ranges = cm.listSelections(), newSel = [];\n        for (var i = 0; i < ranges.length; i++) {\n          var cur = ranges[i].head, line = getLine(cm.doc, cur.line).text;\n          if (line) {\n            if (cur.ch == line.length) cur = new Pos(cur.line, cur.ch - 1);\n            if (cur.ch > 0) {\n              cur = new Pos(cur.line, cur.ch + 1);\n              cm.replaceRange(line.charAt(cur.ch - 1) + line.charAt(cur.ch - 2),\n                              Pos(cur.line, cur.ch - 2), cur, \"+transpose\");\n            } else if (cur.line > cm.doc.first) {\n              var prev = getLine(cm.doc, cur.line - 1).text;\n              if (prev)\n                cm.replaceRange(line.charAt(0) + \"\\n\" + prev.charAt(prev.length - 1),\n                                Pos(cur.line - 1, prev.length - 1), Pos(cur.line, 1), \"+transpose\");\n            }\n          }\n          newSel.push(new Range(cur, cur));\n        }\n        cm.setSelections(newSel);\n      });\n    },\n    newlineAndIndent: function(cm) {\n      runInOp(cm, function() {\n        var len = cm.listSelections().length;\n        for (var i = 0; i < len; i++) {\n          var range = cm.listSelections()[i];\n          cm.replaceRange(\"\\n\", range.anchor, range.head, \"+input\");\n          cm.indentLine(range.from().line + 1, null, true);\n          ensureCursorVisible(cm);\n        }\n      });\n    },\n    toggleOverwrite: function(cm) {cm.toggleOverwrite();}\n  };\n\n  // STANDARD KEYMAPS\n\n  var keyMap = CodeMirror.keyMap = {};\n  keyMap.basic = {\n    \"Left\": \"goCharLeft\", \"Right\": \"goCharRight\", \"Up\": \"goLineUp\", \"Down\": \"goLineDown\",\n    \"End\": \"goLineEnd\", \"Home\": \"goLineStartSmart\", \"PageUp\": \"goPageUp\", \"PageDown\": \"goPageDown\",\n    \"Delete\": \"delCharAfter\", \"Backspace\": \"delCharBefore\", \"Shift-Backspace\": \"delCharBefore\",\n    \"Tab\": \"defaultTab\", \"Shift-Tab\": \"indentAuto\",\n    \"Enter\": \"newlineAndIndent\", \"Insert\": \"toggleOverwrite\",\n    \"Esc\": \"singleSelection\"\n  };\n  // Note that the save and find-related commands aren't defined by\n  // default. User code or addons can define them. Unknown commands\n  // are simply ignored.\n  keyMap.pcDefault = {\n    \"Ctrl-A\": \"selectAll\", \"Ctrl-D\": \"deleteLine\", \"Ctrl-Z\": \"undo\", \"Shift-Ctrl-Z\": \"redo\", \"Ctrl-Y\": \"redo\",\n    \"Ctrl-Home\": \"goDocStart\", \"Ctrl-End\": \"goDocEnd\", \"Ctrl-Up\": \"goLineUp\", \"Ctrl-Down\": \"goLineDown\",\n    \"Ctrl-Left\": \"goGroupLeft\", \"Ctrl-Right\": \"goGroupRight\", \"Alt-Left\": \"goLineStart\", \"Alt-Right\": \"goLineEnd\",\n    \"Ctrl-Backspace\": \"delGroupBefore\", \"Ctrl-Delete\": \"delGroupAfter\", \"Ctrl-S\": \"save\", \"Ctrl-F\": \"find\",\n    \"Ctrl-G\": \"findNext\", \"Shift-Ctrl-G\": \"findPrev\", \"Shift-Ctrl-F\": \"replace\", \"Shift-Ctrl-R\": \"replaceAll\",\n    \"Ctrl-[\": \"indentLess\", \"Ctrl-]\": \"indentMore\",\n    \"Ctrl-U\": \"undoSelection\", \"Shift-Ctrl-U\": \"redoSelection\", \"Alt-U\": \"redoSelection\",\n    fallthrough: \"basic\"\n  };\n  keyMap.macDefault = {\n    \"Cmd-A\": \"selectAll\", \"Cmd-D\": \"deleteLine\", \"Cmd-Z\": \"undo\", \"Shift-Cmd-Z\": \"redo\", \"Cmd-Y\": \"redo\",\n    \"Cmd-Home\": \"goDocStart\", \"Cmd-Up\": \"goDocStart\", \"Cmd-End\": \"goDocEnd\", \"Cmd-Down\": \"goDocEnd\", \"Alt-Left\": \"goGroupLeft\",\n    \"Alt-Right\": \"goGroupRight\", \"Cmd-Left\": \"goLineLeft\", \"Cmd-Right\": \"goLineRight\", \"Alt-Backspace\": \"delGroupBefore\",\n    \"Ctrl-Alt-Backspace\": \"delGroupAfter\", \"Alt-Delete\": \"delGroupAfter\", \"Cmd-S\": \"save\", \"Cmd-F\": \"find\",\n    \"Cmd-G\": \"findNext\", \"Shift-Cmd-G\": \"findPrev\", \"Cmd-Alt-F\": \"replace\", \"Shift-Cmd-Alt-F\": \"replaceAll\",\n    \"Cmd-[\": \"indentLess\", \"Cmd-]\": \"indentMore\", \"Cmd-Backspace\": \"delWrappedLineLeft\", \"Cmd-Delete\": \"delWrappedLineRight\",\n    \"Cmd-U\": \"undoSelection\", \"Shift-Cmd-U\": \"redoSelection\", \"Ctrl-Up\": \"goDocStart\", \"Ctrl-Down\": \"goDocEnd\",\n    fallthrough: [\"basic\", \"emacsy\"]\n  };\n  // Very basic readline/emacs-style bindings, which are standard on Mac.\n  keyMap.emacsy = {\n    \"Ctrl-F\": \"goCharRight\", \"Ctrl-B\": \"goCharLeft\", \"Ctrl-P\": \"goLineUp\", \"Ctrl-N\": \"goLineDown\",\n    \"Alt-F\": \"goWordRight\", \"Alt-B\": \"goWordLeft\", \"Ctrl-A\": \"goLineStart\", \"Ctrl-E\": \"goLineEnd\",\n    \"Ctrl-V\": \"goPageDown\", \"Shift-Ctrl-V\": \"goPageUp\", \"Ctrl-D\": \"delCharAfter\", \"Ctrl-H\": \"delCharBefore\",\n    \"Alt-D\": \"delWordAfter\", \"Alt-Backspace\": \"delWordBefore\", \"Ctrl-K\": \"killLine\", \"Ctrl-T\": \"transposeChars\"\n  };\n  keyMap[\"default\"] = mac ? keyMap.macDefault : keyMap.pcDefault;\n\n  // KEYMAP DISPATCH\n\n  function getKeyMap(val) {\n    if (typeof val == \"string\") return keyMap[val];\n    else return val;\n  }\n\n  // Given an array of keymaps and a key name, call handle on any\n  // bindings found, until that returns a truthy value, at which point\n  // we consider the key handled. Implements things like binding a key\n  // to false stopping further handling and keymap fallthrough.\n  var lookupKey = CodeMirror.lookupKey = function(name, maps, handle) {\n    function lookup(map) {\n      map = getKeyMap(map);\n      var found = map[name];\n      if (found === false) return \"stop\";\n      if (found != null && handle(found)) return true;\n      if (map.nofallthrough) return \"stop\";\n\n      var fallthrough = map.fallthrough;\n      if (fallthrough == null) return false;\n      if (Object.prototype.toString.call(fallthrough) != \"[object Array]\")\n        return lookup(fallthrough);\n      for (var i = 0; i < fallthrough.length; ++i) {\n        var done = lookup(fallthrough[i]);\n        if (done) return done;\n      }\n      return false;\n    }\n\n    for (var i = 0; i < maps.length; ++i) {\n      var done = lookup(maps[i]);\n      if (done) return done != \"stop\";\n    }\n  };\n\n  // Modifier key presses don't count as 'real' key presses for the\n  // purpose of keymap fallthrough.\n  var isModifierKey = CodeMirror.isModifierKey = function(event) {\n    var name = keyNames[event.keyCode];\n    return name == \"Ctrl\" || name == \"Alt\" || name == \"Shift\" || name == \"Mod\";\n  };\n\n  // Look up the name of a key as indicated by an event object.\n  var keyName = CodeMirror.keyName = function(event, noShift) {\n    if (presto && event.keyCode == 34 && event[\"char\"]) return false;\n    var name = keyNames[event.keyCode];\n    if (name == null || event.altGraphKey) return false;\n    if (event.altKey) name = \"Alt-\" + name;\n    if (flipCtrlCmd ? event.metaKey : event.ctrlKey) name = \"Ctrl-\" + name;\n    if (flipCtrlCmd ? event.ctrlKey : event.metaKey) name = \"Cmd-\" + name;\n    if (!noShift && event.shiftKey) name = \"Shift-\" + name;\n    return name;\n  };\n\n  // FROMTEXTAREA\n\n  CodeMirror.fromTextArea = function(textarea, options) {\n    if (!options) options = {};\n    options.value = textarea.value;\n    if (!options.tabindex && textarea.tabindex)\n      options.tabindex = textarea.tabindex;\n    if (!options.placeholder && textarea.placeholder)\n      options.placeholder = textarea.placeholder;\n    // Set autofocus to true if this textarea is focused, or if it has\n    // autofocus and no other element is focused.\n    if (options.autofocus == null) {\n      var hasFocus = activeElt();\n      options.autofocus = hasFocus == textarea ||\n        textarea.getAttribute(\"autofocus\") != null && hasFocus == document.body;\n    }\n\n    function save() {textarea.value = cm.getValue();}\n    if (textarea.form) {\n      on(textarea.form, \"submit\", save);\n      // Deplorable hack to make the submit method do the right thing.\n      if (!options.leaveSubmitMethodAlone) {\n        var form = textarea.form, realSubmit = form.submit;\n        try {\n          var wrappedSubmit = form.submit = function() {\n            save();\n            form.submit = realSubmit;\n            form.submit();\n            form.submit = wrappedSubmit;\n          };\n        } catch(e) {}\n      }\n    }\n\n    textarea.style.display = \"none\";\n    var cm = CodeMirror(function(node) {\n      textarea.parentNode.insertBefore(node, textarea.nextSibling);\n    }, options);\n    cm.save = save;\n    cm.getTextArea = function() { return textarea; };\n    cm.toTextArea = function() {\n      cm.toTextArea = isNaN; // Prevent this from being ran twice\n      save();\n      textarea.parentNode.removeChild(cm.getWrapperElement());\n      textarea.style.display = \"\";\n      if (textarea.form) {\n        off(textarea.form, \"submit\", save);\n        if (typeof textarea.form.submit == \"function\")\n          textarea.form.submit = realSubmit;\n      }\n    };\n    return cm;\n  };\n\n  // STRING STREAM\n\n  // Fed to the mode parsers, provides helper functions to make\n  // parsers more succinct.\n\n  var StringStream = CodeMirror.StringStream = function(string, tabSize) {\n    this.pos = this.start = 0;\n    this.string = string;\n    this.tabSize = tabSize || 8;\n    this.lastColumnPos = this.lastColumnValue = 0;\n    this.lineStart = 0;\n  };\n\n  StringStream.prototype = {\n    eol: function() {return this.pos >= this.string.length;},\n    sol: function() {return this.pos == this.lineStart;},\n    peek: function() {return this.string.charAt(this.pos) || undefined;},\n    next: function() {\n      if (this.pos < this.string.length)\n        return this.string.charAt(this.pos++);\n    },\n    eat: function(match) {\n      var ch = this.string.charAt(this.pos);\n      if (typeof match == \"string\") var ok = ch == match;\n      else var ok = ch && (match.test ? match.test(ch) : match(ch));\n      if (ok) {++this.pos; return ch;}\n    },\n    eatWhile: function(match) {\n      var start = this.pos;\n      while (this.eat(match)){}\n      return this.pos > start;\n    },\n    eatSpace: function() {\n      var start = this.pos;\n      while (/[\\s\\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos;\n      return this.pos > start;\n    },\n    skipToEnd: function() {this.pos = this.string.length;},\n    skipTo: function(ch) {\n      var found = this.string.indexOf(ch, this.pos);\n      if (found > -1) {this.pos = found; return true;}\n    },\n    backUp: function(n) {this.pos -= n;},\n    column: function() {\n      if (this.lastColumnPos < this.start) {\n        this.lastColumnValue = countColumn(this.string, this.start, this.tabSize, this.lastColumnPos, this.lastColumnValue);\n        this.lastColumnPos = this.start;\n      }\n      return this.lastColumnValue - (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0);\n    },\n    indentation: function() {\n      return countColumn(this.string, null, this.tabSize) -\n        (this.lineStart ? countColumn(this.string, this.lineStart, this.tabSize) : 0);\n    },\n    match: function(pattern, consume, caseInsensitive) {\n      if (typeof pattern == \"string\") {\n        var cased = function(str) {return caseInsensitive ? str.toLowerCase() : str;};\n        var substr = this.string.substr(this.pos, pattern.length);\n        if (cased(substr) == cased(pattern)) {\n          if (consume !== false) this.pos += pattern.length;\n          return true;\n        }\n      } else {\n        var match = this.string.slice(this.pos).match(pattern);\n        if (match && match.index > 0) return null;\n        if (match && consume !== false) this.pos += match[0].length;\n        return match;\n      }\n    },\n    current: function(){return this.string.slice(this.start, this.pos);},\n    hideFirstChars: function(n, inner) {\n      this.lineStart += n;\n      try { return inner(); }\n      finally { this.lineStart -= n; }\n    }\n  };\n\n  // TEXTMARKERS\n\n  // Created with markText and setBookmark methods. A TextMarker is a\n  // handle that can be used to clear or find a marked position in the\n  // document. Line objects hold arrays (markedSpans) containing\n  // {from, to, marker} object pointing to such marker objects, and\n  // indicating that such a marker is present on that line. Multiple\n  // lines may point to the same marker when it spans across lines.\n  // The spans will have null for their from/to properties when the\n  // marker continues beyond the start/end of the line. Markers have\n  // links back to the lines they currently touch.\n\n  var TextMarker = CodeMirror.TextMarker = function(doc, type) {\n    this.lines = [];\n    this.type = type;\n    this.doc = doc;\n  };\n  eventMixin(TextMarker);\n\n  // Clear the marker.\n  TextMarker.prototype.clear = function() {\n    if (this.explicitlyCleared) return;\n    var cm = this.doc.cm, withOp = cm && !cm.curOp;\n    if (withOp) startOperation(cm);\n    if (hasHandler(this, \"clear\")) {\n      var found = this.find();\n      if (found) signalLater(this, \"clear\", found.from, found.to);\n    }\n    var min = null, max = null;\n    for (var i = 0; i < this.lines.length; ++i) {\n      var line = this.lines[i];\n      var span = getMarkedSpanFor(line.markedSpans, this);\n      if (cm && !this.collapsed) regLineChange(cm, lineNo(line), \"text\");\n      else if (cm) {\n        if (span.to != null) max = lineNo(line);\n        if (span.from != null) min = lineNo(line);\n      }\n      line.markedSpans = removeMarkedSpan(line.markedSpans, span);\n      if (span.from == null && this.collapsed && !lineIsHidden(this.doc, line) && cm)\n        updateLineHeight(line, textHeight(cm.display));\n    }\n    if (cm && this.collapsed && !cm.options.lineWrapping) for (var i = 0; i < this.lines.length; ++i) {\n      var visual = visualLine(this.lines[i]), len = lineLength(visual);\n      if (len > cm.display.maxLineLength) {\n        cm.display.maxLine = visual;\n        cm.display.maxLineLength = len;\n        cm.display.maxLineChanged = true;\n      }\n    }\n\n    if (min != null && cm && this.collapsed) regChange(cm, min, max + 1);\n    this.lines.length = 0;\n    this.explicitlyCleared = true;\n    if (this.atomic && this.doc.cantEdit) {\n      this.doc.cantEdit = false;\n      if (cm) reCheckSelection(cm.doc);\n    }\n    if (cm) signalLater(cm, \"markerCleared\", cm, this);\n    if (withOp) endOperation(cm);\n    if (this.parent) this.parent.clear();\n  };\n\n  // Find the position of the marker in the document. Returns a {from,\n  // to} object by default. Side can be passed to get a specific side\n  // -- 0 (both), -1 (left), or 1 (right). When lineObj is true, the\n  // Pos objects returned contain a line object, rather than a line\n  // number (used to prevent looking up the same line twice).\n  TextMarker.prototype.find = function(side, lineObj) {\n    if (side == null && this.type == \"bookmark\") side = 1;\n    var from, to;\n    for (var i = 0; i < this.lines.length; ++i) {\n      var line = this.lines[i];\n      var span = getMarkedSpanFor(line.markedSpans, this);\n      if (span.from != null) {\n        from = Pos(lineObj ? line : lineNo(line), span.from);\n        if (side == -1) return from;\n      }\n      if (span.to != null) {\n        to = Pos(lineObj ? line : lineNo(line), span.to);\n        if (side == 1) return to;\n      }\n    }\n    return from && {from: from, to: to};\n  };\n\n  // Signals that the marker's widget changed, and surrounding layout\n  // should be recomputed.\n  TextMarker.prototype.changed = function() {\n    var pos = this.find(-1, true), widget = this, cm = this.doc.cm;\n    if (!pos || !cm) return;\n    runInOp(cm, function() {\n      var line = pos.line, lineN = lineNo(pos.line);\n      var view = findViewForLine(cm, lineN);\n      if (view) {\n        clearLineMeasurementCacheFor(view);\n        cm.curOp.selectionChanged = cm.curOp.forceUpdate = true;\n      }\n      cm.curOp.updateMaxLine = true;\n      if (!lineIsHidden(widget.doc, line) && widget.height != null) {\n        var oldHeight = widget.height;\n        widget.height = null;\n        var dHeight = widgetHeight(widget) - oldHeight;\n        if (dHeight)\n          updateLineHeight(line, line.height + dHeight);\n      }\n    });\n  };\n\n  TextMarker.prototype.attachLine = function(line) {\n    if (!this.lines.length && this.doc.cm) {\n      var op = this.doc.cm.curOp;\n      if (!op.maybeHiddenMarkers || indexOf(op.maybeHiddenMarkers, this) == -1)\n        (op.maybeUnhiddenMarkers || (op.maybeUnhiddenMarkers = [])).push(this);\n    }\n    this.lines.push(line);\n  };\n  TextMarker.prototype.detachLine = function(line) {\n    this.lines.splice(indexOf(this.lines, line), 1);\n    if (!this.lines.length && this.doc.cm) {\n      var op = this.doc.cm.curOp;\n      (op.maybeHiddenMarkers || (op.maybeHiddenMarkers = [])).push(this);\n    }\n  };\n\n  // Collapsed markers have unique ids, in order to be able to order\n  // them, which is needed for uniquely determining an outer marker\n  // when they overlap (they may nest, but not partially overlap).\n  var nextMarkerId = 0;\n\n  // Create a marker, wire it up to the right lines, and\n  function markText(doc, from, to, options, type) {\n    // Shared markers (across linked documents) are handled separately\n    // (markTextShared will call out to this again, once per\n    // document).\n    if (options && options.shared) return markTextShared(doc, from, to, options, type);\n    // Ensure we are in an operation.\n    if (doc.cm && !doc.cm.curOp) return operation(doc.cm, markText)(doc, from, to, options, type);\n\n    var marker = new TextMarker(doc, type), diff = cmp(from, to);\n    if (options) copyObj(options, marker, false);\n    // Don't connect empty markers unless clearWhenEmpty is false\n    if (diff > 0 || diff == 0 && marker.clearWhenEmpty !== false)\n      return marker;\n    if (marker.replacedWith) {\n      // Showing up as a widget implies collapsed (widget replaces text)\n      marker.collapsed = true;\n      marker.widgetNode = elt(\"span\", [marker.replacedWith], \"CodeMirror-widget\");\n      if (!options.handleMouseEvents) marker.widgetNode.ignoreEvents = true;\n      if (options.insertLeft) marker.widgetNode.insertLeft = true;\n    }\n    if (marker.collapsed) {\n      if (conflictingCollapsedRange(doc, from.line, from, to, marker) ||\n          from.line != to.line && conflictingCollapsedRange(doc, to.line, from, to, marker))\n        throw new Error(\"Inserting collapsed marker partially overlapping an existing one\");\n      sawCollapsedSpans = true;\n    }\n\n    if (marker.addToHistory)\n      addChangeToHistory(doc, {from: from, to: to, origin: \"markText\"}, doc.sel, NaN);\n\n    var curLine = from.line, cm = doc.cm, updateMaxLine;\n    doc.iter(curLine, to.line + 1, function(line) {\n      if (cm && marker.collapsed && !cm.options.lineWrapping && visualLine(line) == cm.display.maxLine)\n        updateMaxLine = true;\n      if (marker.collapsed && curLine != from.line) updateLineHeight(line, 0);\n      addMarkedSpan(line, new MarkedSpan(marker,\n                                         curLine == from.line ? from.ch : null,\n                                         curLine == to.line ? to.ch : null));\n      ++curLine;\n    });\n    // lineIsHidden depends on the presence of the spans, so needs a second pass\n    if (marker.collapsed) doc.iter(from.line, to.line + 1, function(line) {\n      if (lineIsHidden(doc, line)) updateLineHeight(line, 0);\n    });\n\n    if (marker.clearOnEnter) on(marker, \"beforeCursorEnter\", function() { marker.clear(); });\n\n    if (marker.readOnly) {\n      sawReadOnlySpans = true;\n      if (doc.history.done.length || doc.history.undone.length)\n        doc.clearHistory();\n    }\n    if (marker.collapsed) {\n      marker.id = ++nextMarkerId;\n      marker.atomic = true;\n    }\n    if (cm) {\n      // Sync editor state\n      if (updateMaxLine) cm.curOp.updateMaxLine = true;\n      if (marker.collapsed)\n        regChange(cm, from.line, to.line + 1);\n      else if (marker.className || marker.title || marker.startStyle || marker.endStyle)\n        for (var i = from.line; i <= to.line; i++) regLineChange(cm, i, \"text\");\n      if (marker.atomic) reCheckSelection(cm.doc);\n      signalLater(cm, \"markerAdded\", cm, marker);\n    }\n    return marker;\n  }\n\n  // SHARED TEXTMARKERS\n\n  // A shared marker spans multiple linked documents. It is\n  // implemented as a meta-marker-object controlling multiple normal\n  // markers.\n  var SharedTextMarker = CodeMirror.SharedTextMarker = function(markers, primary) {\n    this.markers = markers;\n    this.primary = primary;\n    for (var i = 0; i < markers.length; ++i)\n      markers[i].parent = this;\n  };\n  eventMixin(SharedTextMarker);\n\n  SharedTextMarker.prototype.clear = function() {\n    if (this.explicitlyCleared) return;\n    this.explicitlyCleared = true;\n    for (var i = 0; i < this.markers.length; ++i)\n      this.markers[i].clear();\n    signalLater(this, \"clear\");\n  };\n  SharedTextMarker.prototype.find = function(side, lineObj) {\n    return this.primary.find(side, lineObj);\n  };\n\n  function markTextShared(doc, from, to, options, type) {\n    options = copyObj(options);\n    options.shared = false;\n    var markers = [markText(doc, from, to, options, type)], primary = markers[0];\n    var widget = options.widgetNode;\n    linkedDocs(doc, function(doc) {\n      if (widget) options.widgetNode = widget.cloneNode(true);\n      markers.push(markText(doc, clipPos(doc, from), clipPos(doc, to), options, type));\n      for (var i = 0; i < doc.linked.length; ++i)\n        if (doc.linked[i].isParent) return;\n      primary = lst(markers);\n    });\n    return new SharedTextMarker(markers, primary);\n  }\n\n  function findSharedMarkers(doc) {\n    return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())),\n                         function(m) { return m.parent; });\n  }\n\n  function copySharedMarkers(doc, markers) {\n    for (var i = 0; i < markers.length; i++) {\n      var marker = markers[i], pos = marker.find();\n      var mFrom = doc.clipPos(pos.from), mTo = doc.clipPos(pos.to);\n      if (cmp(mFrom, mTo)) {\n        var subMark = markText(doc, mFrom, mTo, marker.primary, marker.primary.type);\n        marker.markers.push(subMark);\n        subMark.parent = marker;\n      }\n    }\n  }\n\n  function detachSharedMarkers(markers) {\n    for (var i = 0; i < markers.length; i++) {\n      var marker = markers[i], linked = [marker.primary.doc];;\n      linkedDocs(marker.primary.doc, function(d) { linked.push(d); });\n      for (var j = 0; j < marker.markers.length; j++) {\n        var subMarker = marker.markers[j];\n        if (indexOf(linked, subMarker.doc) == -1) {\n          subMarker.parent = null;\n          marker.markers.splice(j--, 1);\n        }\n      }\n    }\n  }\n\n  // TEXTMARKER SPANS\n\n  function MarkedSpan(marker, from, to) {\n    this.marker = marker;\n    this.from = from; this.to = to;\n  }\n\n  // Search an array of spans for a span matching the given marker.\n  function getMarkedSpanFor(spans, marker) {\n    if (spans) for (var i = 0; i < spans.length; ++i) {\n      var span = spans[i];\n      if (span.marker == marker) return span;\n    }\n  }\n  // Remove a span from an array, returning undefined if no spans are\n  // left (we don't store arrays for lines without spans).\n  function removeMarkedSpan(spans, span) {\n    for (var r, i = 0; i < spans.length; ++i)\n      if (spans[i] != span) (r || (r = [])).push(spans[i]);\n    return r;\n  }\n  // Add a span to a line.\n  function addMarkedSpan(line, span) {\n    line.markedSpans = line.markedSpans ? line.markedSpans.concat([span]) : [span];\n    span.marker.attachLine(line);\n  }\n\n  // Used for the algorithm that adjusts markers for a change in the\n  // document. These functions cut an array of spans at a given\n  // character position, returning an array of remaining chunks (or\n  // undefined if nothing remains).\n  function markedSpansBefore(old, startCh, isInsert) {\n    if (old) for (var i = 0, nw; i < old.length; ++i) {\n      var span = old[i], marker = span.marker;\n      var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= startCh : span.from < startCh);\n      if (startsBefore || span.from == startCh && marker.type == \"bookmark\" && (!isInsert || !span.marker.insertLeft)) {\n        var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= startCh : span.to > startCh);\n        (nw || (nw = [])).push(new MarkedSpan(marker, span.from, endsAfter ? null : span.to));\n      }\n    }\n    return nw;\n  }\n  function markedSpansAfter(old, endCh, isInsert) {\n    if (old) for (var i = 0, nw; i < old.length; ++i) {\n      var span = old[i], marker = span.marker;\n      var endsAfter = span.to == null || (marker.inclusiveRight ? span.to >= endCh : span.to > endCh);\n      if (endsAfter || span.from == endCh && marker.type == \"bookmark\" && (!isInsert || span.marker.insertLeft)) {\n        var startsBefore = span.from == null || (marker.inclusiveLeft ? span.from <= endCh : span.from < endCh);\n        (nw || (nw = [])).push(new MarkedSpan(marker, startsBefore ? null : span.from - endCh,\n                                              span.to == null ? null : span.to - endCh));\n      }\n    }\n    return nw;\n  }\n\n  // Given a change object, compute the new set of marker spans that\n  // cover the line in which the change took place. Removes spans\n  // entirely within the change, reconnects spans belonging to the\n  // same marker that appear on both sides of the change, and cuts off\n  // spans partially within the change. Returns an array of span\n  // arrays with one element for each line in (after) the change.\n  function stretchSpansOverChange(doc, change) {\n    var oldFirst = isLine(doc, change.from.line) && getLine(doc, change.from.line).markedSpans;\n    var oldLast = isLine(doc, change.to.line) && getLine(doc, change.to.line).markedSpans;\n    if (!oldFirst && !oldLast) return null;\n\n    var startCh = change.from.ch, endCh = change.to.ch, isInsert = cmp(change.from, change.to) == 0;\n    // Get the spans that 'stick out' on both sides\n    var first = markedSpansBefore(oldFirst, startCh, isInsert);\n    var last = markedSpansAfter(oldLast, endCh, isInsert);\n\n    // Next, merge those two ends\n    var sameLine = change.text.length == 1, offset = lst(change.text).length + (sameLine ? startCh : 0);\n    if (first) {\n      // Fix up .to properties of first\n      for (var i = 0; i < first.length; ++i) {\n        var span = first[i];\n        if (span.to == null) {\n          var found = getMarkedSpanFor(last, span.marker);\n          if (!found) span.to = startCh;\n          else if (sameLine) span.to = found.to == null ? null : found.to + offset;\n        }\n      }\n    }\n    if (last) {\n      // Fix up .from in last (or move them into first in case of sameLine)\n      for (var i = 0; i < last.length; ++i) {\n        var span = last[i];\n        if (span.to != null) span.to += offset;\n        if (span.from == null) {\n          var found = getMarkedSpanFor(first, span.marker);\n          if (!found) {\n            span.from = offset;\n            if (sameLine) (first || (first = [])).push(span);\n          }\n        } else {\n          span.from += offset;\n          if (sameLine) (first || (first = [])).push(span);\n        }\n      }\n    }\n    // Make sure we didn't create any zero-length spans\n    if (first) first = clearEmptySpans(first);\n    if (last && last != first) last = clearEmptySpans(last);\n\n    var newMarkers = [first];\n    if (!sameLine) {\n      // Fill gap with whole-line-spans\n      var gap = change.text.length - 2, gapMarkers;\n      if (gap > 0 && first)\n        for (var i = 0; i < first.length; ++i)\n          if (first[i].to == null)\n            (gapMarkers || (gapMarkers = [])).push(new MarkedSpan(first[i].marker, null, null));\n      for (var i = 0; i < gap; ++i)\n        newMarkers.push(gapMarkers);\n      newMarkers.push(last);\n    }\n    return newMarkers;\n  }\n\n  // Remove spans that are empty and don't have a clearWhenEmpty\n  // option of false.\n  function clearEmptySpans(spans) {\n    for (var i = 0; i < spans.length; ++i) {\n      var span = spans[i];\n      if (span.from != null && span.from == span.to && span.marker.clearWhenEmpty !== false)\n        spans.splice(i--, 1);\n    }\n    if (!spans.length) return null;\n    return spans;\n  }\n\n  // Used for un/re-doing changes from the history. Combines the\n  // result of computing the existing spans with the set of spans that\n  // existed in the history (so that deleting around a span and then\n  // undoing brings back the span).\n  function mergeOldSpans(doc, change) {\n    var old = getOldSpans(doc, change);\n    var stretched = stretchSpansOverChange(doc, change);\n    if (!old) return stretched;\n    if (!stretched) return old;\n\n    for (var i = 0; i < old.length; ++i) {\n      var oldCur = old[i], stretchCur = stretched[i];\n      if (oldCur && stretchCur) {\n        spans: for (var j = 0; j < stretchCur.length; ++j) {\n          var span = stretchCur[j];\n          for (var k = 0; k < oldCur.length; ++k)\n            if (oldCur[k].marker == span.marker) continue spans;\n          oldCur.push(span);\n        }\n      } else if (stretchCur) {\n        old[i] = stretchCur;\n      }\n    }\n    return old;\n  }\n\n  // Used to 'clip' out readOnly ranges when making a change.\n  function removeReadOnlyRanges(doc, from, to) {\n    var markers = null;\n    doc.iter(from.line, to.line + 1, function(line) {\n      if (line.markedSpans) for (var i = 0; i < line.markedSpans.length; ++i) {\n        var mark = line.markedSpans[i].marker;\n        if (mark.readOnly && (!markers || indexOf(markers, mark) == -1))\n          (markers || (markers = [])).push(mark);\n      }\n    });\n    if (!markers) return null;\n    var parts = [{from: from, to: to}];\n    for (var i = 0; i < markers.length; ++i) {\n      var mk = markers[i], m = mk.find(0);\n      for (var j = 0; j < parts.length; ++j) {\n        var p = parts[j];\n        if (cmp(p.to, m.from) < 0 || cmp(p.from, m.to) > 0) continue;\n        var newParts = [j, 1], dfrom = cmp(p.from, m.from), dto = cmp(p.to, m.to);\n        if (dfrom < 0 || !mk.inclusiveLeft && !dfrom)\n          newParts.push({from: p.from, to: m.from});\n        if (dto > 0 || !mk.inclusiveRight && !dto)\n          newParts.push({from: m.to, to: p.to});\n        parts.splice.apply(parts, newParts);\n        j += newParts.length - 1;\n      }\n    }\n    return parts;\n  }\n\n  // Connect or disconnect spans from a line.\n  function detachMarkedSpans(line) {\n    var spans = line.markedSpans;\n    if (!spans) return;\n    for (var i = 0; i < spans.length; ++i)\n      spans[i].marker.detachLine(line);\n    line.markedSpans = null;\n  }\n  function attachMarkedSpans(line, spans) {\n    if (!spans) return;\n    for (var i = 0; i < spans.length; ++i)\n      spans[i].marker.attachLine(line);\n    line.markedSpans = spans;\n  }\n\n  // Helpers used when computing which overlapping collapsed span\n  // counts as the larger one.\n  function extraLeft(marker) { return marker.inclusiveLeft ? -1 : 0; }\n  function extraRight(marker) { return marker.inclusiveRight ? 1 : 0; }\n\n  // Returns a number indicating which of two overlapping collapsed\n  // spans is larger (and thus includes the other). Falls back to\n  // comparing ids when the spans cover exactly the same range.\n  function compareCollapsedMarkers(a, b) {\n    var lenDiff = a.lines.length - b.lines.length;\n    if (lenDiff != 0) return lenDiff;\n    var aPos = a.find(), bPos = b.find();\n    var fromCmp = cmp(aPos.from, bPos.from) || extraLeft(a) - extraLeft(b);\n    if (fromCmp) return -fromCmp;\n    var toCmp = cmp(aPos.to, bPos.to) || extraRight(a) - extraRight(b);\n    if (toCmp) return toCmp;\n    return b.id - a.id;\n  }\n\n  // Find out whether a line ends or starts in a collapsed span. If\n  // so, return the marker for that span.\n  function collapsedSpanAtSide(line, start) {\n    var sps = sawCollapsedSpans && line.markedSpans, found;\n    if (sps) for (var sp, i = 0; i < sps.length; ++i) {\n      sp = sps[i];\n      if (sp.marker.collapsed && (start ? sp.from : sp.to) == null &&\n          (!found || compareCollapsedMarkers(found, sp.marker) < 0))\n        found = sp.marker;\n    }\n    return found;\n  }\n  function collapsedSpanAtStart(line) { return collapsedSpanAtSide(line, true); }\n  function collapsedSpanAtEnd(line) { return collapsedSpanAtSide(line, false); }\n\n  // Test whether there exists a collapsed span that partially\n  // overlaps (covers the start or end, but not both) of a new span.\n  // Such overlap is not allowed.\n  function conflictingCollapsedRange(doc, lineNo, from, to, marker) {\n    var line = getLine(doc, lineNo);\n    var sps = sawCollapsedSpans && line.markedSpans;\n    if (sps) for (var i = 0; i < sps.length; ++i) {\n      var sp = sps[i];\n      if (!sp.marker.collapsed) continue;\n      var found = sp.marker.find(0);\n      var fromCmp = cmp(found.from, from) || extraLeft(sp.marker) - extraLeft(marker);\n      var toCmp = cmp(found.to, to) || extraRight(sp.marker) - extraRight(marker);\n      if (fromCmp >= 0 && toCmp <= 0 || fromCmp <= 0 && toCmp >= 0) continue;\n      if (fromCmp <= 0 && (cmp(found.to, from) > 0 || (sp.marker.inclusiveRight && marker.inclusiveLeft)) ||\n          fromCmp >= 0 && (cmp(found.from, to) < 0 || (sp.marker.inclusiveLeft && marker.inclusiveRight)))\n        return true;\n    }\n  }\n\n  // A visual line is a line as drawn on the screen. Folding, for\n  // example, can cause multiple logical lines to appear on the same\n  // visual line. This finds the start of the visual line that the\n  // given line is part of (usually that is the line itself).\n  function visualLine(line) {\n    var merged;\n    while (merged = collapsedSpanAtStart(line))\n      line = merged.find(-1, true).line;\n    return line;\n  }\n\n  // Returns an array of logical lines that continue the visual line\n  // started by the argument, or undefined if there are no such lines.\n  function visualLineContinued(line) {\n    var merged, lines;\n    while (merged = collapsedSpanAtEnd(line)) {\n      line = merged.find(1, true).line;\n      (lines || (lines = [])).push(line);\n    }\n    return lines;\n  }\n\n  // Get the line number of the start of the visual line that the\n  // given line number is part of.\n  function visualLineNo(doc, lineN) {\n    var line = getLine(doc, lineN), vis = visualLine(line);\n    if (line == vis) return lineN;\n    return lineNo(vis);\n  }\n  // Get the line number of the start of the next visual line after\n  // the given line.\n  function visualLineEndNo(doc, lineN) {\n    if (lineN > doc.lastLine()) return lineN;\n    var line = getLine(doc, lineN), merged;\n    if (!lineIsHidden(doc, line)) return lineN;\n    while (merged = collapsedSpanAtEnd(line))\n      line = merged.find(1, true).line;\n    return lineNo(line) + 1;\n  }\n\n  // Compute whether a line is hidden. Lines count as hidden when they\n  // are part of a visual line that starts with another line, or when\n  // they are entirely covered by collapsed, non-widget span.\n  function lineIsHidden(doc, line) {\n    var sps = sawCollapsedSpans && line.markedSpans;\n    if (sps) for (var sp, i = 0; i < sps.length; ++i) {\n      sp = sps[i];\n      if (!sp.marker.collapsed) continue;\n      if (sp.from == null) return true;\n      if (sp.marker.widgetNode) continue;\n      if (sp.from == 0 && sp.marker.inclusiveLeft && lineIsHiddenInner(doc, line, sp))\n        return true;\n    }\n  }\n  function lineIsHiddenInner(doc, line, span) {\n    if (span.to == null) {\n      var end = span.marker.find(1, true);\n      return lineIsHiddenInner(doc, end.line, getMarkedSpanFor(end.line.markedSpans, span.marker));\n    }\n    if (span.marker.inclusiveRight && span.to == line.text.length)\n      return true;\n    for (var sp, i = 0; i < line.markedSpans.length; ++i) {\n      sp = line.markedSpans[i];\n      if (sp.marker.collapsed && !sp.marker.widgetNode && sp.from == span.to &&\n          (sp.to == null || sp.to != span.from) &&\n          (sp.marker.inclusiveLeft || span.marker.inclusiveRight) &&\n          lineIsHiddenInner(doc, line, sp)) return true;\n    }\n  }\n\n  // LINE WIDGETS\n\n  // Line widgets are block elements displayed above or below a line.\n\n  var LineWidget = CodeMirror.LineWidget = function(cm, node, options) {\n    if (options) for (var opt in options) if (options.hasOwnProperty(opt))\n      this[opt] = options[opt];\n    this.cm = cm;\n    this.node = node;\n  };\n  eventMixin(LineWidget);\n\n  function adjustScrollWhenAboveVisible(cm, line, diff) {\n    if (heightAtLine(line) < ((cm.curOp && cm.curOp.scrollTop) || cm.doc.scrollTop))\n      addToScrollPos(cm, null, diff);\n  }\n\n  LineWidget.prototype.clear = function() {\n    var cm = this.cm, ws = this.line.widgets, line = this.line, no = lineNo(line);\n    if (no == null || !ws) return;\n    for (var i = 0; i < ws.length; ++i) if (ws[i] == this) ws.splice(i--, 1);\n    if (!ws.length) line.widgets = null;\n    var height = widgetHeight(this);\n    runInOp(cm, function() {\n      adjustScrollWhenAboveVisible(cm, line, -height);\n      regLineChange(cm, no, \"widget\");\n      updateLineHeight(line, Math.max(0, line.height - height));\n    });\n  };\n  LineWidget.prototype.changed = function() {\n    var oldH = this.height, cm = this.cm, line = this.line;\n    this.height = null;\n    var diff = widgetHeight(this) - oldH;\n    if (!diff) return;\n    runInOp(cm, function() {\n      cm.curOp.forceUpdate = true;\n      adjustScrollWhenAboveVisible(cm, line, diff);\n      updateLineHeight(line, line.height + diff);\n    });\n  };\n\n  function widgetHeight(widget) {\n    if (widget.height != null) return widget.height;\n    if (!contains(document.body, widget.node)) {\n      var parentStyle = \"position: relative;\";\n      if (widget.coverGutter)\n        parentStyle += \"margin-left: -\" + widget.cm.getGutterElement().offsetWidth + \"px;\";\n      removeChildrenAndAdd(widget.cm.display.measure, elt(\"div\", [widget.node], null, parentStyle));\n    }\n    return widget.height = widget.node.offsetHeight;\n  }\n\n  function addLineWidget(cm, handle, node, options) {\n    var widget = new LineWidget(cm, node, options);\n    if (widget.noHScroll) cm.display.alignWidgets = true;\n    changeLine(cm.doc, handle, \"widget\", function(line) {\n      var widgets = line.widgets || (line.widgets = []);\n      if (widget.insertAt == null) widgets.push(widget);\n      else widgets.splice(Math.min(widgets.length - 1, Math.max(0, widget.insertAt)), 0, widget);\n      widget.line = line;\n      if (!lineIsHidden(cm.doc, line)) {\n        var aboveVisible = heightAtLine(line) < cm.doc.scrollTop;\n        updateLineHeight(line, line.height + widgetHeight(widget));\n        if (aboveVisible) addToScrollPos(cm, null, widget.height);\n        cm.curOp.forceUpdate = true;\n      }\n      return true;\n    });\n    return widget;\n  }\n\n  // LINE DATA STRUCTURE\n\n  // Line objects. These hold state related to a line, including\n  // highlighting info (the styles array).\n  var Line = CodeMirror.Line = function(text, markedSpans, estimateHeight) {\n    this.text = text;\n    attachMarkedSpans(this, markedSpans);\n    this.height = estimateHeight ? estimateHeight(this) : 1;\n  };\n  eventMixin(Line);\n  Line.prototype.lineNo = function() { return lineNo(this); };\n\n  // Change the content (text, markers) of a line. Automatically\n  // invalidates cached information and tries to re-estimate the\n  // line's height.\n  function updateLine(line, text, markedSpans, estimateHeight) {\n    line.text = text;\n    if (line.stateAfter) line.stateAfter = null;\n    if (line.styles) line.styles = null;\n    if (line.order != null) line.order = null;\n    detachMarkedSpans(line);\n    attachMarkedSpans(line, markedSpans);\n    var estHeight = estimateHeight ? estimateHeight(line) : 1;\n    if (estHeight != line.height) updateLineHeight(line, estHeight);\n  }\n\n  // Detach a line from the document tree and its markers.\n  function cleanUpLine(line) {\n    line.parent = null;\n    detachMarkedSpans(line);\n  }\n\n  function extractLineClasses(type, output) {\n    if (type) for (;;) {\n      var lineClass = type.match(/(?:^|\\s+)line-(background-)?(\\S+)/);\n      if (!lineClass) break;\n      type = type.slice(0, lineClass.index) + type.slice(lineClass.index + lineClass[0].length);\n      var prop = lineClass[1] ? \"bgClass\" : \"textClass\";\n      if (output[prop] == null)\n        output[prop] = lineClass[2];\n      else if (!(new RegExp(\"(?:^|\\s)\" + lineClass[2] + \"(?:$|\\s)\")).test(output[prop]))\n        output[prop] += \" \" + lineClass[2];\n    }\n    return type;\n  }\n\n  function callBlankLine(mode, state) {\n    if (mode.blankLine) return mode.blankLine(state);\n    if (!mode.innerMode) return;\n    var inner = CodeMirror.innerMode(mode, state);\n    if (inner.mode.blankLine) return inner.mode.blankLine(inner.state);\n  }\n\n  function readToken(mode, stream, state) {\n    for (var i = 0; i < 10; i++) {\n      var style = mode.token(stream, state);\n      if (stream.pos > stream.start) return style;\n    }\n    throw new Error(\"Mode \" + mode.name + \" failed to advance stream.\");\n  }\n\n  // Run the given mode's parser over a line, calling f for each token.\n  function runMode(cm, text, mode, state, f, lineClasses, forceToEnd) {\n    var flattenSpans = mode.flattenSpans;\n    if (flattenSpans == null) flattenSpans = cm.options.flattenSpans;\n    var curStart = 0, curStyle = null;\n    var stream = new StringStream(text, cm.options.tabSize), style;\n    if (text == \"\") extractLineClasses(callBlankLine(mode, state), lineClasses);\n    while (!stream.eol()) {\n      if (stream.pos > cm.options.maxHighlightLength) {\n        flattenSpans = false;\n        if (forceToEnd) processLine(cm, text, state, stream.pos);\n        stream.pos = text.length;\n        style = null;\n      } else {\n        style = extractLineClasses(readToken(mode, stream, state), lineClasses);\n      }\n      if (cm.options.addModeClass) {\n        var mName = CodeMirror.innerMode(mode, state).mode.name;\n        if (mName) style = \"m-\" + (style ? mName + \" \" + style : mName);\n      }\n      if (!flattenSpans || curStyle != style) {\n        if (curStart < stream.start) f(stream.start, curStyle);\n        curStart = stream.start; curStyle = style;\n      }\n      stream.start = stream.pos;\n    }\n    while (curStart < stream.pos) {\n      // Webkit seems to refuse to render text nodes longer than 57444 characters\n      var pos = Math.min(stream.pos, curStart + 50000);\n      f(pos, curStyle);\n      curStart = pos;\n    }\n  }\n\n  // Compute a style array (an array starting with a mode generation\n  // -- for invalidation -- followed by pairs of end positions and\n  // style strings), which is used to highlight the tokens on the\n  // line.\n  function highlightLine(cm, line, state, forceToEnd) {\n    // A styles array always starts with a number identifying the\n    // mode/overlays that it is based on (for easy invalidation).\n    var st = [cm.state.modeGen], lineClasses = {};\n    // Compute the base array of styles\n    runMode(cm, line.text, cm.doc.mode, state, function(end, style) {\n      st.push(end, style);\n    }, lineClasses, forceToEnd);\n\n    // Run overlays, adjust style array.\n    for (var o = 0; o < cm.state.overlays.length; ++o) {\n      var overlay = cm.state.overlays[o], i = 1, at = 0;\n      runMode(cm, line.text, overlay.mode, true, function(end, style) {\n        var start = i;\n        // Ensure there's a token end at the current position, and that i points at it\n        while (at < end) {\n          var i_end = st[i];\n          if (i_end > end)\n            st.splice(i, 1, end, st[i+1], i_end);\n          i += 2;\n          at = Math.min(end, i_end);\n        }\n        if (!style) return;\n        if (overlay.opaque) {\n          st.splice(start, i - start, end, \"cm-overlay \" + style);\n          i = start + 2;\n        } else {\n          for (; start < i; start += 2) {\n            var cur = st[start+1];\n            st[start+1] = (cur ? cur + \" \" : \"\") + \"cm-overlay \" + style;\n          }\n        }\n      }, lineClasses);\n    }\n\n    return {styles: st, classes: lineClasses.bgClass || lineClasses.textClass ? lineClasses : null};\n  }\n\n  function getLineStyles(cm, line) {\n    if (!line.styles || line.styles[0] != cm.state.modeGen) {\n      var result = highlightLine(cm, line, line.stateAfter = getStateBefore(cm, lineNo(line)));\n      line.styles = result.styles;\n      if (result.classes) line.styleClasses = result.classes;\n      else if (line.styleClasses) line.styleClasses = null;\n    }\n    return line.styles;\n  }\n\n  // Lightweight form of highlight -- proceed over this line and\n  // update state, but don't save a style array. Used for lines that\n  // aren't currently visible.\n  function processLine(cm, text, state, startAt) {\n    var mode = cm.doc.mode;\n    var stream = new StringStream(text, cm.options.tabSize);\n    stream.start = stream.pos = startAt || 0;\n    if (text == \"\") callBlankLine(mode, state);\n    while (!stream.eol() && stream.pos <= cm.options.maxHighlightLength) {\n      readToken(mode, stream, state);\n      stream.start = stream.pos;\n    }\n  }\n\n  // Convert a style as returned by a mode (either null, or a string\n  // containing one or more styles) to a CSS style. This is cached,\n  // and also looks for line-wide styles.\n  var styleToClassCache = {}, styleToClassCacheWithMode = {};\n  function interpretTokenStyle(style, options) {\n    if (!style || /^\\s*$/.test(style)) return null;\n    var cache = options.addModeClass ? styleToClassCacheWithMode : styleToClassCache;\n    return cache[style] ||\n      (cache[style] = style.replace(/\\S+/g, \"cm-$&\"));\n  }\n\n  // Render the DOM representation of the text of a line. Also builds\n  // up a 'line map', which points at the DOM nodes that represent\n  // specific stretches of text, and is used by the measuring code.\n  // The returned object contains the DOM node, this map, and\n  // information about line-wide styles that were set by the mode.\n  function buildLineContent(cm, lineView) {\n    // The padding-right forces the element to have a 'border', which\n    // is needed on Webkit to be able to get line-level bounding\n    // rectangles for it (in measureChar).\n    var content = elt(\"span\", null, null, webkit ? \"padding-right: .1px\" : null);\n    var builder = {pre: elt(\"pre\", [content]), content: content, col: 0, pos: 0, cm: cm};\n    lineView.measure = {};\n\n    // Iterate over the logical lines that make up this visual line.\n    for (var i = 0; i <= (lineView.rest ? lineView.rest.length : 0); i++) {\n      var line = i ? lineView.rest[i - 1] : lineView.line, order;\n      builder.pos = 0;\n      builder.addToken = buildToken;\n      // Optionally wire in some hacks into the token-rendering\n      // algorithm, to deal with browser quirks.\n      if ((ie || webkit) && cm.getOption(\"lineWrapping\"))\n        builder.addToken = buildTokenSplitSpaces(builder.addToken);\n      if (hasBadBidiRects(cm.display.measure) && (order = getOrder(line)))\n        builder.addToken = buildTokenBadBidi(builder.addToken, order);\n      builder.map = [];\n      insertLineContent(line, builder, getLineStyles(cm, line));\n      if (line.styleClasses) {\n        if (line.styleClasses.bgClass)\n          builder.bgClass = joinClasses(line.styleClasses.bgClass, builder.bgClass || \"\");\n        if (line.styleClasses.textClass)\n          builder.textClass = joinClasses(line.styleClasses.textClass, builder.textClass || \"\");\n      }\n\n      // Ensure at least a single node is present, for measuring.\n      if (builder.map.length == 0)\n        builder.map.push(0, 0, builder.content.appendChild(zeroWidthElement(cm.display.measure)));\n\n      // Store the map and a cache object for the current logical line\n      if (i == 0) {\n        lineView.measure.map = builder.map;\n        lineView.measure.cache = {};\n      } else {\n        (lineView.measure.maps || (lineView.measure.maps = [])).push(builder.map);\n        (lineView.measure.caches || (lineView.measure.caches = [])).push({});\n      }\n    }\n\n    signal(cm, \"renderLine\", cm, lineView.line, builder.pre);\n    if (builder.pre.className)\n      builder.textClass = joinClasses(builder.pre.className, builder.textClass || \"\");\n    return builder;\n  }\n\n  function defaultSpecialCharPlaceholder(ch) {\n    var token = elt(\"span\", \"\\u2022\", \"cm-invalidchar\");\n    token.title = \"\\\\u\" + ch.charCodeAt(0).toString(16);\n    return token;\n  }\n\n  // Build up the DOM representation for a single token, and add it to\n  // the line map. Takes care to render special characters separately.\n  function buildToken(builder, text, style, startStyle, endStyle, title) {\n    if (!text) return;\n    var special = builder.cm.options.specialChars, mustWrap = false;\n    if (!special.test(text)) {\n      builder.col += text.length;\n      var content = document.createTextNode(text);\n      builder.map.push(builder.pos, builder.pos + text.length, content);\n      if (ie && ie_version < 9) mustWrap = true;\n      builder.pos += text.length;\n    } else {\n      var content = document.createDocumentFragment(), pos = 0;\n      while (true) {\n        special.lastIndex = pos;\n        var m = special.exec(text);\n        var skipped = m ? m.index - pos : text.length - pos;\n        if (skipped) {\n          var txt = document.createTextNode(text.slice(pos, pos + skipped));\n          if (ie && ie_version < 9) content.appendChild(elt(\"span\", [txt]));\n          else content.appendChild(txt);\n          builder.map.push(builder.pos, builder.pos + skipped, txt);\n          builder.col += skipped;\n          builder.pos += skipped;\n        }\n        if (!m) break;\n        pos += skipped + 1;\n        if (m[0] == \"\\t\") {\n          var tabSize = builder.cm.options.tabSize, tabWidth = tabSize - builder.col % tabSize;\n          var txt = content.appendChild(elt(\"span\", spaceStr(tabWidth), \"cm-tab\"));\n          builder.col += tabWidth;\n        } else {\n          var txt = builder.cm.options.specialCharPlaceholder(m[0]);\n          if (ie && ie_version < 9) content.appendChild(elt(\"span\", [txt]));\n          else content.appendChild(txt);\n          builder.col += 1;\n        }\n        builder.map.push(builder.pos, builder.pos + 1, txt);\n        builder.pos++;\n      }\n    }\n    if (style || startStyle || endStyle || mustWrap) {\n      var fullStyle = style || \"\";\n      if (startStyle) fullStyle += startStyle;\n      if (endStyle) fullStyle += endStyle;\n      var token = elt(\"span\", [content], fullStyle);\n      if (title) token.title = title;\n      return builder.content.appendChild(token);\n    }\n    builder.content.appendChild(content);\n  }\n\n  function buildTokenSplitSpaces(inner) {\n    function split(old) {\n      var out = \" \";\n      for (var i = 0; i < old.length - 2; ++i) out += i % 2 ? \" \" : \"\\u00a0\";\n      out += \" \";\n      return out;\n    }\n    return function(builder, text, style, startStyle, endStyle, title) {\n      inner(builder, text.replace(/ {3,}/g, split), style, startStyle, endStyle, title);\n    };\n  }\n\n  // Work around nonsense dimensions being reported for stretches of\n  // right-to-left text.\n  function buildTokenBadBidi(inner, order) {\n    return function(builder, text, style, startStyle, endStyle, title) {\n      style = style ? style + \" cm-force-border\" : \"cm-force-border\";\n      var start = builder.pos, end = start + text.length;\n      for (;;) {\n        // Find the part that overlaps with the start of this text\n        for (var i = 0; i < order.length; i++) {\n          var part = order[i];\n          if (part.to > start && part.from <= start) break;\n        }\n        if (part.to >= end) return inner(builder, text, style, startStyle, endStyle, title);\n        inner(builder, text.slice(0, part.to - start), style, startStyle, null, title);\n        startStyle = null;\n        text = text.slice(part.to - start);\n        start = part.to;\n      }\n    };\n  }\n\n  function buildCollapsedSpan(builder, size, marker, ignoreWidget) {\n    var widget = !ignoreWidget && marker.widgetNode;\n    if (widget) {\n      builder.map.push(builder.pos, builder.pos + size, widget);\n      builder.content.appendChild(widget);\n    }\n    builder.pos += size;\n  }\n\n  // Outputs a number of spans to make up a line, taking highlighting\n  // and marked text into account.\n  function insertLineContent(line, builder, styles) {\n    var spans = line.markedSpans, allText = line.text, at = 0;\n    if (!spans) {\n      for (var i = 1; i < styles.length; i+=2)\n        builder.addToken(builder, allText.slice(at, at = styles[i]), interpretTokenStyle(styles[i+1], builder.cm.options));\n      return;\n    }\n\n    var len = allText.length, pos = 0, i = 1, text = \"\", style;\n    var nextChange = 0, spanStyle, spanEndStyle, spanStartStyle, title, collapsed;\n    for (;;) {\n      if (nextChange == pos) { // Update current marker set\n        spanStyle = spanEndStyle = spanStartStyle = title = \"\";\n        collapsed = null; nextChange = Infinity;\n        var foundBookmarks = [];\n        for (var j = 0; j < spans.length; ++j) {\n          var sp = spans[j], m = sp.marker;\n          if (sp.from <= pos && (sp.to == null || sp.to > pos)) {\n            if (sp.to != null && nextChange > sp.to) { nextChange = sp.to; spanEndStyle = \"\"; }\n            if (m.className) spanStyle += \" \" + m.className;\n            if (m.startStyle && sp.from == pos) spanStartStyle += \" \" + m.startStyle;\n            if (m.endStyle && sp.to == nextChange) spanEndStyle += \" \" + m.endStyle;\n            if (m.title && !title) title = m.title;\n            if (m.collapsed && (!collapsed || compareCollapsedMarkers(collapsed.marker, m) < 0))\n              collapsed = sp;\n          } else if (sp.from > pos && nextChange > sp.from) {\n            nextChange = sp.from;\n          }\n          if (m.type == \"bookmark\" && sp.from == pos && m.widgetNode) foundBookmarks.push(m);\n        }\n        if (collapsed && (collapsed.from || 0) == pos) {\n          buildCollapsedSpan(builder, (collapsed.to == null ? len + 1 : collapsed.to) - pos,\n                             collapsed.marker, collapsed.from == null);\n          if (collapsed.to == null) return;\n        }\n        if (!collapsed && foundBookmarks.length) for (var j = 0; j < foundBookmarks.length; ++j)\n          buildCollapsedSpan(builder, 0, foundBookmarks[j]);\n      }\n      if (pos >= len) break;\n\n      var upto = Math.min(len, nextChange);\n      while (true) {\n        if (text) {\n          var end = pos + text.length;\n          if (!collapsed) {\n            var tokenText = end > upto ? text.slice(0, upto - pos) : text;\n            builder.addToken(builder, tokenText, style ? style + spanStyle : spanStyle,\n                             spanStartStyle, pos + tokenText.length == nextChange ? spanEndStyle : \"\", title);\n          }\n          if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;}\n          pos = end;\n          spanStartStyle = \"\";\n        }\n        text = allText.slice(at, at = styles[i++]);\n        style = interpretTokenStyle(styles[i++], builder.cm.options);\n      }\n    }\n  }\n\n  // DOCUMENT DATA STRUCTURE\n\n  // By default, updates that start and end at the beginning of a line\n  // are treated specially, in order to make the association of line\n  // widgets and marker elements with the text behave more intuitive.\n  function isWholeLineUpdate(doc, change) {\n    return change.from.ch == 0 && change.to.ch == 0 && lst(change.text) == \"\" &&\n      (!doc.cm || doc.cm.options.wholeLineUpdateBefore);\n  }\n\n  // Perform a change on the document data structure.\n  function updateDoc(doc, change, markedSpans, estimateHeight) {\n    function spansFor(n) {return markedSpans ? markedSpans[n] : null;}\n    function update(line, text, spans) {\n      updateLine(line, text, spans, estimateHeight);\n      signalLater(line, \"change\", line, change);\n    }\n\n    var from = change.from, to = change.to, text = change.text;\n    var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line);\n    var lastText = lst(text), lastSpans = spansFor(text.length - 1), nlines = to.line - from.line;\n\n    // Adjust the line structure\n    if (isWholeLineUpdate(doc, change)) {\n      // This is a whole-line replace. Treated specially to make\n      // sure line objects move the way they are supposed to.\n      for (var i = 0, added = []; i < text.length - 1; ++i)\n        added.push(new Line(text[i], spansFor(i), estimateHeight));\n      update(lastLine, lastLine.text, lastSpans);\n      if (nlines) doc.remove(from.line, nlines);\n      if (added.length) doc.insert(from.line, added);\n    } else if (firstLine == lastLine) {\n      if (text.length == 1) {\n        update(firstLine, firstLine.text.slice(0, from.ch) + lastText + firstLine.text.slice(to.ch), lastSpans);\n      } else {\n        for (var added = [], i = 1; i < text.length - 1; ++i)\n          added.push(new Line(text[i], spansFor(i), estimateHeight));\n        added.push(new Line(lastText + firstLine.text.slice(to.ch), lastSpans, estimateHeight));\n        update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));\n        doc.insert(from.line + 1, added);\n      }\n    } else if (text.length == 1) {\n      update(firstLine, firstLine.text.slice(0, from.ch) + text[0] + lastLine.text.slice(to.ch), spansFor(0));\n      doc.remove(from.line + 1, nlines);\n    } else {\n      update(firstLine, firstLine.text.slice(0, from.ch) + text[0], spansFor(0));\n      update(lastLine, lastText + lastLine.text.slice(to.ch), lastSpans);\n      for (var i = 1, added = []; i < text.length - 1; ++i)\n        added.push(new Line(text[i], spansFor(i), estimateHeight));\n      if (nlines > 1) doc.remove(from.line + 1, nlines - 1);\n      doc.insert(from.line + 1, added);\n    }\n\n    signalLater(doc, \"change\", doc, change);\n  }\n\n  // The document is represented as a BTree consisting of leaves, with\n  // chunk of lines in them, and branches, with up to ten leaves or\n  // other branch nodes below them. The top node is always a branch\n  // node, and is the document object itself (meaning it has\n  // additional methods and properties).\n  //\n  // All nodes have parent links. The tree is used both to go from\n  // line numbers to line objects, and to go from objects to numbers.\n  // It also indexes by height, and is used to convert between height\n  // and line object, and to find the total height of the document.\n  //\n  // See also http://marijnhaverbeke.nl/blog/codemirror-line-tree.html\n\n  function LeafChunk(lines) {\n    this.lines = lines;\n    this.parent = null;\n    for (var i = 0, height = 0; i < lines.length; ++i) {\n      lines[i].parent = this;\n      height += lines[i].height;\n    }\n    this.height = height;\n  }\n\n  LeafChunk.prototype = {\n    chunkSize: function() { return this.lines.length; },\n    // Remove the n lines at offset 'at'.\n    removeInner: function(at, n) {\n      for (var i = at, e = at + n; i < e; ++i) {\n        var line = this.lines[i];\n        this.height -= line.height;\n        cleanUpLine(line);\n        signalLater(line, \"delete\");\n      }\n      this.lines.splice(at, n);\n    },\n    // Helper used to collapse a small branch into a single leaf.\n    collapse: function(lines) {\n      lines.push.apply(lines, this.lines);\n    },\n    // Insert the given array of lines at offset 'at', count them as\n    // having the given height.\n    insertInner: function(at, lines, height) {\n      this.height += height;\n      this.lines = this.lines.slice(0, at).concat(lines).concat(this.lines.slice(at));\n      for (var i = 0; i < lines.length; ++i) lines[i].parent = this;\n    },\n    // Used to iterate over a part of the tree.\n    iterN: function(at, n, op) {\n      for (var e = at + n; at < e; ++at)\n        if (op(this.lines[at])) return true;\n    }\n  };\n\n  function BranchChunk(children) {\n    this.children = children;\n    var size = 0, height = 0;\n    for (var i = 0; i < children.length; ++i) {\n      var ch = children[i];\n      size += ch.chunkSize(); height += ch.height;\n      ch.parent = this;\n    }\n    this.size = size;\n    this.height = height;\n    this.parent = null;\n  }\n\n  BranchChunk.prototype = {\n    chunkSize: function() { return this.size; },\n    removeInner: function(at, n) {\n      this.size -= n;\n      for (var i = 0; i < this.children.length; ++i) {\n        var child = this.children[i], sz = child.chunkSize();\n        if (at < sz) {\n          var rm = Math.min(n, sz - at), oldHeight = child.height;\n          child.removeInner(at, rm);\n          this.height -= oldHeight - child.height;\n          if (sz == rm) { this.children.splice(i--, 1); child.parent = null; }\n          if ((n -= rm) == 0) break;\n          at = 0;\n        } else at -= sz;\n      }\n      // If the result is smaller than 25 lines, ensure that it is a\n      // single leaf node.\n      if (this.size - n < 25 &&\n          (this.children.length > 1 || !(this.children[0] instanceof LeafChunk))) {\n        var lines = [];\n        this.collapse(lines);\n        this.children = [new LeafChunk(lines)];\n        this.children[0].parent = this;\n      }\n    },\n    collapse: function(lines) {\n      for (var i = 0; i < this.children.length; ++i) this.children[i].collapse(lines);\n    },\n    insertInner: function(at, lines, height) {\n      this.size += lines.length;\n      this.height += height;\n      for (var i = 0; i < this.children.length; ++i) {\n        var child = this.children[i], sz = child.chunkSize();\n        if (at <= sz) {\n          child.insertInner(at, lines, height);\n          if (child.lines && child.lines.length > 50) {\n            while (child.lines.length > 50) {\n              var spilled = child.lines.splice(child.lines.length - 25, 25);\n              var newleaf = new LeafChunk(spilled);\n              child.height -= newleaf.height;\n              this.children.splice(i + 1, 0, newleaf);\n              newleaf.parent = this;\n            }\n            this.maybeSpill();\n          }\n          break;\n        }\n        at -= sz;\n      }\n    },\n    // When a node has grown, check whether it should be split.\n    maybeSpill: function() {\n      if (this.children.length <= 10) return;\n      var me = this;\n      do {\n        var spilled = me.children.splice(me.children.length - 5, 5);\n        var sibling = new BranchChunk(spilled);\n        if (!me.parent) { // Become the parent node\n          var copy = new BranchChunk(me.children);\n          copy.parent = me;\n          me.children = [copy, sibling];\n          me = copy;\n        } else {\n          me.size -= sibling.size;\n          me.height -= sibling.height;\n          var myIndex = indexOf(me.parent.children, me);\n          me.parent.children.splice(myIndex + 1, 0, sibling);\n        }\n        sibling.parent = me.parent;\n      } while (me.children.length > 10);\n      me.parent.maybeSpill();\n    },\n    iterN: function(at, n, op) {\n      for (var i = 0; i < this.children.length; ++i) {\n        var child = this.children[i], sz = child.chunkSize();\n        if (at < sz) {\n          var used = Math.min(n, sz - at);\n          if (child.iterN(at, used, op)) return true;\n          if ((n -= used) == 0) break;\n          at = 0;\n        } else at -= sz;\n      }\n    }\n  };\n\n  var nextDocId = 0;\n  var Doc = CodeMirror.Doc = function(text, mode, firstLine) {\n    if (!(this instanceof Doc)) return new Doc(text, mode, firstLine);\n    if (firstLine == null) firstLine = 0;\n\n    BranchChunk.call(this, [new LeafChunk([new Line(\"\", null)])]);\n    this.first = firstLine;\n    this.scrollTop = this.scrollLeft = 0;\n    this.cantEdit = false;\n    this.cleanGeneration = 1;\n    this.frontier = firstLine;\n    var start = Pos(firstLine, 0);\n    this.sel = simpleSelection(start);\n    this.history = new History(null);\n    this.id = ++nextDocId;\n    this.modeOption = mode;\n\n    if (typeof text == \"string\") text = splitLines(text);\n    updateDoc(this, {from: start, to: start, text: text});\n    setSelection(this, simpleSelection(start), sel_dontScroll);\n  };\n\n  Doc.prototype = createObj(BranchChunk.prototype, {\n    constructor: Doc,\n    // Iterate over the document. Supports two forms -- with only one\n    // argument, it calls that for each line in the document. With\n    // three, it iterates over the range given by the first two (with\n    // the second being non-inclusive).\n    iter: function(from, to, op) {\n      if (op) this.iterN(from - this.first, to - from, op);\n      else this.iterN(this.first, this.first + this.size, from);\n    },\n\n    // Non-public interface for adding and removing lines.\n    insert: function(at, lines) {\n      var height = 0;\n      for (var i = 0; i < lines.length; ++i) height += lines[i].height;\n      this.insertInner(at - this.first, lines, height);\n    },\n    remove: function(at, n) { this.removeInner(at - this.first, n); },\n\n    // From here, the methods are part of the public interface. Most\n    // are also available from CodeMirror (editor) instances.\n\n    getValue: function(lineSep) {\n      var lines = getLines(this, this.first, this.first + this.size);\n      if (lineSep === false) return lines;\n      return lines.join(lineSep || \"\\n\");\n    },\n    setValue: docMethodOp(function(code) {\n      var top = Pos(this.first, 0), last = this.first + this.size - 1;\n      makeChange(this, {from: top, to: Pos(last, getLine(this, last).text.length),\n                        text: splitLines(code), origin: \"setValue\"}, true);\n      setSelection(this, simpleSelection(top));\n    }),\n    replaceRange: function(code, from, to, origin) {\n      from = clipPos(this, from);\n      to = to ? clipPos(this, to) : from;\n      replaceRange(this, code, from, to, origin);\n    },\n    getRange: function(from, to, lineSep) {\n      var lines = getBetween(this, clipPos(this, from), clipPos(this, to));\n      if (lineSep === false) return lines;\n      return lines.join(lineSep || \"\\n\");\n    },\n\n    getLine: function(line) {var l = this.getLineHandle(line); return l && l.text;},\n\n    getLineHandle: function(line) {if (isLine(this, line)) return getLine(this, line);},\n    getLineNumber: function(line) {return lineNo(line);},\n\n    getLineHandleVisualStart: function(line) {\n      if (typeof line == \"number\") line = getLine(this, line);\n      return visualLine(line);\n    },\n\n    lineCount: function() {return this.size;},\n    firstLine: function() {return this.first;},\n    lastLine: function() {return this.first + this.size - 1;},\n\n    clipPos: function(pos) {return clipPos(this, pos);},\n\n    getCursor: function(start) {\n      var range = this.sel.primary(), pos;\n      if (start == null || start == \"head\") pos = range.head;\n      else if (start == \"anchor\") pos = range.anchor;\n      else if (start == \"end\" || start == \"to\" || start === false) pos = range.to();\n      else pos = range.from();\n      return pos;\n    },\n    listSelections: function() { return this.sel.ranges; },\n    somethingSelected: function() {return this.sel.somethingSelected();},\n\n    setCursor: docMethodOp(function(line, ch, options) {\n      setSimpleSelection(this, clipPos(this, typeof line == \"number\" ? Pos(line, ch || 0) : line), null, options);\n    }),\n    setSelection: docMethodOp(function(anchor, head, options) {\n      setSimpleSelection(this, clipPos(this, anchor), clipPos(this, head || anchor), options);\n    }),\n    extendSelection: docMethodOp(function(head, other, options) {\n      extendSelection(this, clipPos(this, head), other && clipPos(this, other), options);\n    }),\n    extendSelections: docMethodOp(function(heads, options) {\n      extendSelections(this, clipPosArray(this, heads, options));\n    }),\n    extendSelectionsBy: docMethodOp(function(f, options) {\n      extendSelections(this, map(this.sel.ranges, f), options);\n    }),\n    setSelections: docMethodOp(function(ranges, primary, options) {\n      if (!ranges.length) return;\n      for (var i = 0, out = []; i < ranges.length; i++)\n        out[i] = new Range(clipPos(this, ranges[i].anchor),\n                           clipPos(this, ranges[i].head));\n      if (primary == null) primary = Math.min(ranges.length - 1, this.sel.primIndex);\n      setSelection(this, normalizeSelection(out, primary), options);\n    }),\n    addSelection: docMethodOp(function(anchor, head, options) {\n      var ranges = this.sel.ranges.slice(0);\n      ranges.push(new Range(clipPos(this, anchor), clipPos(this, head || anchor)));\n      setSelection(this, normalizeSelection(ranges, ranges.length - 1), options);\n    }),\n\n    getSelection: function(lineSep) {\n      var ranges = this.sel.ranges, lines;\n      for (var i = 0; i < ranges.length; i++) {\n        var sel = getBetween(this, ranges[i].from(), ranges[i].to());\n        lines = lines ? lines.concat(sel) : sel;\n      }\n      if (lineSep === false) return lines;\n      else return lines.join(lineSep || \"\\n\");\n    },\n    getSelections: function(lineSep) {\n      var parts = [], ranges = this.sel.ranges;\n      for (var i = 0; i < ranges.length; i++) {\n        var sel = getBetween(this, ranges[i].from(), ranges[i].to());\n        if (lineSep !== false) sel = sel.join(lineSep || \"\\n\");\n        parts[i] = sel;\n      }\n      return parts;\n    },\n    replaceSelection: function(code, collapse, origin) {\n      var dup = [];\n      for (var i = 0; i < this.sel.ranges.length; i++)\n        dup[i] = code;\n      this.replaceSelections(dup, collapse, origin || \"+input\");\n    },\n    replaceSelections: docMethodOp(function(code, collapse, origin) {\n      var changes = [], sel = this.sel;\n      for (var i = 0; i < sel.ranges.length; i++) {\n        var range = sel.ranges[i];\n        changes[i] = {from: range.from(), to: range.to(), text: splitLines(code[i]), origin: origin};\n      }\n      var newSel = collapse && collapse != \"end\" && computeReplacedSel(this, changes, collapse);\n      for (var i = changes.length - 1; i >= 0; i--)\n        makeChange(this, changes[i]);\n      if (newSel) setSelectionReplaceHistory(this, newSel);\n      else if (this.cm) ensureCursorVisible(this.cm);\n    }),\n    undo: docMethodOp(function() {makeChangeFromHistory(this, \"undo\");}),\n    redo: docMethodOp(function() {makeChangeFromHistory(this, \"redo\");}),\n    undoSelection: docMethodOp(function() {makeChangeFromHistory(this, \"undo\", true);}),\n    redoSelection: docMethodOp(function() {makeChangeFromHistory(this, \"redo\", true);}),\n\n    setExtending: function(val) {this.extend = val;},\n    getExtending: function() {return this.extend;},\n\n    historySize: function() {\n      var hist = this.history, done = 0, undone = 0;\n      for (var i = 0; i < hist.done.length; i++) if (!hist.done[i].ranges) ++done;\n      for (var i = 0; i < hist.undone.length; i++) if (!hist.undone[i].ranges) ++undone;\n      return {undo: done, redo: undone};\n    },\n    clearHistory: function() {this.history = new History(this.history.maxGeneration);},\n\n    markClean: function() {\n      this.cleanGeneration = this.changeGeneration(true);\n    },\n    changeGeneration: function(forceSplit) {\n      if (forceSplit)\n        this.history.lastOp = this.history.lastSelOp = this.history.lastOrigin = null;\n      return this.history.generation;\n    },\n    isClean: function (gen) {\n      return this.history.generation == (gen || this.cleanGeneration);\n    },\n\n    getHistory: function() {\n      return {done: copyHistoryArray(this.history.done),\n              undone: copyHistoryArray(this.history.undone)};\n    },\n    setHistory: function(histData) {\n      var hist = this.history = new History(this.history.maxGeneration);\n      hist.done = copyHistoryArray(histData.done.slice(0), null, true);\n      hist.undone = copyHistoryArray(histData.undone.slice(0), null, true);\n    },\n\n    addLineClass: docMethodOp(function(handle, where, cls) {\n      return changeLine(this, handle, \"class\", function(line) {\n        var prop = where == \"text\" ? \"textClass\" : where == \"background\" ? \"bgClass\" : \"wrapClass\";\n        if (!line[prop]) line[prop] = cls;\n        else if (new RegExp(\"(?:^|\\\\s)\" + cls + \"(?:$|\\\\s)\").test(line[prop])) return false;\n        else line[prop] += \" \" + cls;\n        return true;\n      });\n    }),\n    removeLineClass: docMethodOp(function(handle, where, cls) {\n      return changeLine(this, handle, \"class\", function(line) {\n        var prop = where == \"text\" ? \"textClass\" : where == \"background\" ? \"bgClass\" : \"wrapClass\";\n        var cur = line[prop];\n        if (!cur) return false;\n        else if (cls == null) line[prop] = null;\n        else {\n          var found = cur.match(new RegExp(\"(?:^|\\\\s+)\" + cls + \"(?:$|\\\\s+)\"));\n          if (!found) return false;\n          var end = found.index + found[0].length;\n          line[prop] = cur.slice(0, found.index) + (!found.index || end == cur.length ? \"\" : \" \") + cur.slice(end) || null;\n        }\n        return true;\n      });\n    }),\n\n    markText: function(from, to, options) {\n      return markText(this, clipPos(this, from), clipPos(this, to), options, \"range\");\n    },\n    setBookmark: function(pos, options) {\n      var realOpts = {replacedWith: options && (options.nodeType == null ? options.widget : options),\n                      insertLeft: options && options.insertLeft,\n                      clearWhenEmpty: false, shared: options && options.shared};\n      pos = clipPos(this, pos);\n      return markText(this, pos, pos, realOpts, \"bookmark\");\n    },\n    findMarksAt: function(pos) {\n      pos = clipPos(this, pos);\n      var markers = [], spans = getLine(this, pos.line).markedSpans;\n      if (spans) for (var i = 0; i < spans.length; ++i) {\n        var span = spans[i];\n        if ((span.from == null || span.from <= pos.ch) &&\n            (span.to == null || span.to >= pos.ch))\n          markers.push(span.marker.parent || span.marker);\n      }\n      return markers;\n    },\n    findMarks: function(from, to, filter) {\n      from = clipPos(this, from); to = clipPos(this, to);\n      var found = [], lineNo = from.line;\n      this.iter(from.line, to.line + 1, function(line) {\n        var spans = line.markedSpans;\n        if (spans) for (var i = 0; i < spans.length; i++) {\n          var span = spans[i];\n          if (!(lineNo == from.line && from.ch > span.to ||\n                span.from == null && lineNo != from.line||\n                lineNo == to.line && span.from > to.ch) &&\n              (!filter || filter(span.marker)))\n            found.push(span.marker.parent || span.marker);\n        }\n        ++lineNo;\n      });\n      return found;\n    },\n    getAllMarks: function() {\n      var markers = [];\n      this.iter(function(line) {\n        var sps = line.markedSpans;\n        if (sps) for (var i = 0; i < sps.length; ++i)\n          if (sps[i].from != null) markers.push(sps[i].marker);\n      });\n      return markers;\n    },\n\n    posFromIndex: function(off) {\n      var ch, lineNo = this.first;\n      this.iter(function(line) {\n        var sz = line.text.length + 1;\n        if (sz > off) { ch = off; return true; }\n        off -= sz;\n        ++lineNo;\n      });\n      return clipPos(this, Pos(lineNo, ch));\n    },\n    indexFromPos: function (coords) {\n      coords = clipPos(this, coords);\n      var index = coords.ch;\n      if (coords.line < this.first || coords.ch < 0) return 0;\n      this.iter(this.first, coords.line, function (line) {\n        index += line.text.length + 1;\n      });\n      return index;\n    },\n\n    copy: function(copyHistory) {\n      var doc = new Doc(getLines(this, this.first, this.first + this.size), this.modeOption, this.first);\n      doc.scrollTop = this.scrollTop; doc.scrollLeft = this.scrollLeft;\n      doc.sel = this.sel;\n      doc.extend = false;\n      if (copyHistory) {\n        doc.history.undoDepth = this.history.undoDepth;\n        doc.setHistory(this.getHistory());\n      }\n      return doc;\n    },\n\n    linkedDoc: function(options) {\n      if (!options) options = {};\n      var from = this.first, to = this.first + this.size;\n      if (options.from != null && options.from > from) from = options.from;\n      if (options.to != null && options.to < to) to = options.to;\n      var copy = new Doc(getLines(this, from, to), options.mode || this.modeOption, from);\n      if (options.sharedHist) copy.history = this.history;\n      (this.linked || (this.linked = [])).push({doc: copy, sharedHist: options.sharedHist});\n      copy.linked = [{doc: this, isParent: true, sharedHist: options.sharedHist}];\n      copySharedMarkers(copy, findSharedMarkers(this));\n      return copy;\n    },\n    unlinkDoc: function(other) {\n      if (other instanceof CodeMirror) other = other.doc;\n      if (this.linked) for (var i = 0; i < this.linked.length; ++i) {\n        var link = this.linked[i];\n        if (link.doc != other) continue;\n        this.linked.splice(i, 1);\n        other.unlinkDoc(this);\n        detachSharedMarkers(findSharedMarkers(this));\n        break;\n      }\n      // If the histories were shared, split them again\n      if (other.history == this.history) {\n        var splitIds = [other.id];\n        linkedDocs(other, function(doc) {splitIds.push(doc.id);}, true);\n        other.history = new History(null);\n        other.history.done = copyHistoryArray(this.history.done, splitIds);\n        other.history.undone = copyHistoryArray(this.history.undone, splitIds);\n      }\n    },\n    iterLinkedDocs: function(f) {linkedDocs(this, f);},\n\n    getMode: function() {return this.mode;},\n    getEditor: function() {return this.cm;}\n  });\n\n  // Public alias.\n  Doc.prototype.eachLine = Doc.prototype.iter;\n\n  // Set up methods on CodeMirror's prototype to redirect to the editor's document.\n  var dontDelegate = \"iter insert remove copy getEditor\".split(\" \");\n  for (var prop in Doc.prototype) if (Doc.prototype.hasOwnProperty(prop) && indexOf(dontDelegate, prop) < 0)\n    CodeMirror.prototype[prop] = (function(method) {\n      return function() {return method.apply(this.doc, arguments);};\n    })(Doc.prototype[prop]);\n\n  eventMixin(Doc);\n\n  // Call f for all linked documents.\n  function linkedDocs(doc, f, sharedHistOnly) {\n    function propagate(doc, skip, sharedHist) {\n      if (doc.linked) for (var i = 0; i < doc.linked.length; ++i) {\n        var rel = doc.linked[i];\n        if (rel.doc == skip) continue;\n        var shared = sharedHist && rel.sharedHist;\n        if (sharedHistOnly && !shared) continue;\n        f(rel.doc, shared);\n        propagate(rel.doc, doc, shared);\n      }\n    }\n    propagate(doc, null, true);\n  }\n\n  // Attach a document to an editor.\n  function attachDoc(cm, doc) {\n    if (doc.cm) throw new Error(\"This document is already in use.\");\n    cm.doc = doc;\n    doc.cm = cm;\n    estimateLineHeights(cm);\n    loadMode(cm);\n    if (!cm.options.lineWrapping) findMaxLine(cm);\n    cm.options.mode = doc.modeOption;\n    regChange(cm);\n  }\n\n  // LINE UTILITIES\n\n  // Find the line object corresponding to the given line number.\n  function getLine(doc, n) {\n    n -= doc.first;\n    if (n < 0 || n >= doc.size) throw new Error(\"There is no line \" + (n + doc.first) + \" in the document.\");\n    for (var chunk = doc; !chunk.lines;) {\n      for (var i = 0;; ++i) {\n        var child = chunk.children[i], sz = child.chunkSize();\n        if (n < sz) { chunk = child; break; }\n        n -= sz;\n      }\n    }\n    return chunk.lines[n];\n  }\n\n  // Get the part of a document between two positions, as an array of\n  // strings.\n  function getBetween(doc, start, end) {\n    var out = [], n = start.line;\n    doc.iter(start.line, end.line + 1, function(line) {\n      var text = line.text;\n      if (n == end.line) text = text.slice(0, end.ch);\n      if (n == start.line) text = text.slice(start.ch);\n      out.push(text);\n      ++n;\n    });\n    return out;\n  }\n  // Get the lines between from and to, as array of strings.\n  function getLines(doc, from, to) {\n    var out = [];\n    doc.iter(from, to, function(line) { out.push(line.text); });\n    return out;\n  }\n\n  // Update the height of a line, propagating the height change\n  // upwards to parent nodes.\n  function updateLineHeight(line, height) {\n    var diff = height - line.height;\n    if (diff) for (var n = line; n; n = n.parent) n.height += diff;\n  }\n\n  // Given a line object, find its line number by walking up through\n  // its parent links.\n  function lineNo(line) {\n    if (line.parent == null) return null;\n    var cur = line.parent, no = indexOf(cur.lines, line);\n    for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {\n      for (var i = 0;; ++i) {\n        if (chunk.children[i] == cur) break;\n        no += chunk.children[i].chunkSize();\n      }\n    }\n    return no + cur.first;\n  }\n\n  // Find the line at the given vertical position, using the height\n  // information in the document tree.\n  function lineAtHeight(chunk, h) {\n    var n = chunk.first;\n    outer: do {\n      for (var i = 0; i < chunk.children.length; ++i) {\n        var child = chunk.children[i], ch = child.height;\n        if (h < ch) { chunk = child; continue outer; }\n        h -= ch;\n        n += child.chunkSize();\n      }\n      return n;\n    } while (!chunk.lines);\n    for (var i = 0; i < chunk.lines.length; ++i) {\n      var line = chunk.lines[i], lh = line.height;\n      if (h < lh) break;\n      h -= lh;\n    }\n    return n + i;\n  }\n\n\n  // Find the height above the given line.\n  function heightAtLine(lineObj) {\n    lineObj = visualLine(lineObj);\n\n    var h = 0, chunk = lineObj.parent;\n    for (var i = 0; i < chunk.lines.length; ++i) {\n      var line = chunk.lines[i];\n      if (line == lineObj) break;\n      else h += line.height;\n    }\n    for (var p = chunk.parent; p; chunk = p, p = chunk.parent) {\n      for (var i = 0; i < p.children.length; ++i) {\n        var cur = p.children[i];\n        if (cur == chunk) break;\n        else h += cur.height;\n      }\n    }\n    return h;\n  }\n\n  // Get the bidi ordering for the given line (and cache it). Returns\n  // false for lines that are fully left-to-right, and an array of\n  // BidiSpan objects otherwise.\n  function getOrder(line) {\n    var order = line.order;\n    if (order == null) order = line.order = bidiOrdering(line.text);\n    return order;\n  }\n\n  // HISTORY\n\n  function History(startGen) {\n    // Arrays of change events and selections. Doing something adds an\n    // event to done and clears undo. Undoing moves events from done\n    // to undone, redoing moves them in the other direction.\n    this.done = []; this.undone = [];\n    this.undoDepth = Infinity;\n    // Used to track when changes can be merged into a single undo\n    // event\n    this.lastModTime = this.lastSelTime = 0;\n    this.lastOp = this.lastSelOp = null;\n    this.lastOrigin = this.lastSelOrigin = null;\n    // Used by the isClean() method\n    this.generation = this.maxGeneration = startGen || 1;\n  }\n\n  // Create a history change event from an updateDoc-style change\n  // object.\n  function historyChangeFromChange(doc, change) {\n    var histChange = {from: copyPos(change.from), to: changeEnd(change), text: getBetween(doc, change.from, change.to)};\n    attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);\n    linkedDocs(doc, function(doc) {attachLocalSpans(doc, histChange, change.from.line, change.to.line + 1);}, true);\n    return histChange;\n  }\n\n  // Pop all selection events off the end of a history array. Stop at\n  // a change event.\n  function clearSelectionEvents(array) {\n    while (array.length) {\n      var last = lst(array);\n      if (last.ranges) array.pop();\n      else break;\n    }\n  }\n\n  // Find the top change event in the history. Pop off selection\n  // events that are in the way.\n  function lastChangeEvent(hist, force) {\n    if (force) {\n      clearSelectionEvents(hist.done);\n      return lst(hist.done);\n    } else if (hist.done.length && !lst(hist.done).ranges) {\n      return lst(hist.done);\n    } else if (hist.done.length > 1 && !hist.done[hist.done.length - 2].ranges) {\n      hist.done.pop();\n      return lst(hist.done);\n    }\n  }\n\n  // Register a change in the history. Merges changes that are within\n  // a single operation, ore are close together with an origin that\n  // allows merging (starting with \"+\") into a single event.\n  function addChangeToHistory(doc, change, selAfter, opId) {\n    var hist = doc.history;\n    hist.undone.length = 0;\n    var time = +new Date, cur;\n\n    if ((hist.lastOp == opId ||\n         hist.lastOrigin == change.origin && change.origin &&\n         ((change.origin.charAt(0) == \"+\" && doc.cm && hist.lastModTime > time - doc.cm.options.historyEventDelay) ||\n          change.origin.charAt(0) == \"*\")) &&\n        (cur = lastChangeEvent(hist, hist.lastOp == opId))) {\n      // Merge this change into the last event\n      var last = lst(cur.changes);\n      if (cmp(change.from, change.to) == 0 && cmp(change.from, last.to) == 0) {\n        // Optimized case for simple insertion -- don't want to add\n        // new changesets for every character typed\n        last.to = changeEnd(change);\n      } else {\n        // Add new sub-event\n        cur.changes.push(historyChangeFromChange(doc, change));\n      }\n    } else {\n      // Can not be merged, start a new event.\n      var before = lst(hist.done);\n      if (!before || !before.ranges)\n        pushSelectionToHistory(doc.sel, hist.done);\n      cur = {changes: [historyChangeFromChange(doc, change)],\n             generation: hist.generation};\n      hist.done.push(cur);\n      while (hist.done.length > hist.undoDepth) {\n        hist.done.shift();\n        if (!hist.done[0].ranges) hist.done.shift();\n      }\n    }\n    hist.done.push(selAfter);\n    hist.generation = ++hist.maxGeneration;\n    hist.lastModTime = hist.lastSelTime = time;\n    hist.lastOp = hist.lastSelOp = opId;\n    hist.lastOrigin = hist.lastSelOrigin = change.origin;\n\n    if (!last) signal(doc, \"historyAdded\");\n  }\n\n  function selectionEventCanBeMerged(doc, origin, prev, sel) {\n    var ch = origin.charAt(0);\n    return ch == \"*\" ||\n      ch == \"+\" &&\n      prev.ranges.length == sel.ranges.length &&\n      prev.somethingSelected() == sel.somethingSelected() &&\n      new Date - doc.history.lastSelTime <= (doc.cm ? doc.cm.options.historyEventDelay : 500);\n  }\n\n  // Called whenever the selection changes, sets the new selection as\n  // the pending selection in the history, and pushes the old pending\n  // selection into the 'done' array when it was significantly\n  // different (in number of selected ranges, emptiness, or time).\n  function addSelectionToHistory(doc, sel, opId, options) {\n    var hist = doc.history, origin = options && options.origin;\n\n    // A new event is started when the previous origin does not match\n    // the current, or the origins don't allow matching. Origins\n    // starting with * are always merged, those starting with + are\n    // merged when similar and close together in time.\n    if (opId == hist.lastSelOp ||\n        (origin && hist.lastSelOrigin == origin &&\n         (hist.lastModTime == hist.lastSelTime && hist.lastOrigin == origin ||\n          selectionEventCanBeMerged(doc, origin, lst(hist.done), sel))))\n      hist.done[hist.done.length - 1] = sel;\n    else\n      pushSelectionToHistory(sel, hist.done);\n\n    hist.lastSelTime = +new Date;\n    hist.lastSelOrigin = origin;\n    hist.lastSelOp = opId;\n    if (options && options.clearRedo !== false)\n      clearSelectionEvents(hist.undone);\n  }\n\n  function pushSelectionToHistory(sel, dest) {\n    var top = lst(dest);\n    if (!(top && top.ranges && top.equals(sel)))\n      dest.push(sel);\n  }\n\n  // Used to store marked span information in the history.\n  function attachLocalSpans(doc, change, from, to) {\n    var existing = change[\"spans_\" + doc.id], n = 0;\n    doc.iter(Math.max(doc.first, from), Math.min(doc.first + doc.size, to), function(line) {\n      if (line.markedSpans)\n        (existing || (existing = change[\"spans_\" + doc.id] = {}))[n] = line.markedSpans;\n      ++n;\n    });\n  }\n\n  // When un/re-doing restores text containing marked spans, those\n  // that have been explicitly cleared should not be restored.\n  function removeClearedSpans(spans) {\n    if (!spans) return null;\n    for (var i = 0, out; i < spans.length; ++i) {\n      if (spans[i].marker.explicitlyCleared) { if (!out) out = spans.slice(0, i); }\n      else if (out) out.push(spans[i]);\n    }\n    return !out ? spans : out.length ? out : null;\n  }\n\n  // Retrieve and filter the old marked spans stored in a change event.\n  function getOldSpans(doc, change) {\n    var found = change[\"spans_\" + doc.id];\n    if (!found) return null;\n    for (var i = 0, nw = []; i < change.text.length; ++i)\n      nw.push(removeClearedSpans(found[i]));\n    return nw;\n  }\n\n  // Used both to provide a JSON-safe object in .getHistory, and, when\n  // detaching a document, to split the history in two\n  function copyHistoryArray(events, newGroup, instantiateSel) {\n    for (var i = 0, copy = []; i < events.length; ++i) {\n      var event = events[i];\n      if (event.ranges) {\n        copy.push(instantiateSel ? Selection.prototype.deepCopy.call(event) : event);\n        continue;\n      }\n      var changes = event.changes, newChanges = [];\n      copy.push({changes: newChanges});\n      for (var j = 0; j < changes.length; ++j) {\n        var change = changes[j], m;\n        newChanges.push({from: change.from, to: change.to, text: change.text});\n        if (newGroup) for (var prop in change) if (m = prop.match(/^spans_(\\d+)$/)) {\n          if (indexOf(newGroup, Number(m[1])) > -1) {\n            lst(newChanges)[prop] = change[prop];\n            delete change[prop];\n          }\n        }\n      }\n    }\n    return copy;\n  }\n\n  // Rebasing/resetting history to deal with externally-sourced changes\n\n  function rebaseHistSelSingle(pos, from, to, diff) {\n    if (to < pos.line) {\n      pos.line += diff;\n    } else if (from < pos.line) {\n      pos.line = from;\n      pos.ch = 0;\n    }\n  }\n\n  // Tries to rebase an array of history events given a change in the\n  // document. If the change touches the same lines as the event, the\n  // event, and everything 'behind' it, is discarded. If the change is\n  // before the event, the event's positions are updated. Uses a\n  // copy-on-write scheme for the positions, to avoid having to\n  // reallocate them all on every rebase, but also avoid problems with\n  // shared position objects being unsafely updated.\n  function rebaseHistArray(array, from, to, diff) {\n    for (var i = 0; i < array.length; ++i) {\n      var sub = array[i], ok = true;\n      if (sub.ranges) {\n        if (!sub.copied) { sub = array[i] = sub.deepCopy(); sub.copied = true; }\n        for (var j = 0; j < sub.ranges.length; j++) {\n          rebaseHistSelSingle(sub.ranges[j].anchor, from, to, diff);\n          rebaseHistSelSingle(sub.ranges[j].head, from, to, diff);\n        }\n        continue;\n      }\n      for (var j = 0; j < sub.changes.length; ++j) {\n        var cur = sub.changes[j];\n        if (to < cur.from.line) {\n          cur.from = Pos(cur.from.line + diff, cur.from.ch);\n          cur.to = Pos(cur.to.line + diff, cur.to.ch);\n        } else if (from <= cur.to.line) {\n          ok = false;\n          break;\n        }\n      }\n      if (!ok) {\n        array.splice(0, i + 1);\n        i = 0;\n      }\n    }\n  }\n\n  function rebaseHist(hist, change) {\n    var from = change.from.line, to = change.to.line, diff = change.text.length - (to - from) - 1;\n    rebaseHistArray(hist.done, from, to, diff);\n    rebaseHistArray(hist.undone, from, to, diff);\n  }\n\n  // EVENT UTILITIES\n\n  // Due to the fact that we still support jurassic IE versions, some\n  // compatibility wrappers are needed.\n\n  var e_preventDefault = CodeMirror.e_preventDefault = function(e) {\n    if (e.preventDefault) e.preventDefault();\n    else e.returnValue = false;\n  };\n  var e_stopPropagation = CodeMirror.e_stopPropagation = function(e) {\n    if (e.stopPropagation) e.stopPropagation();\n    else e.cancelBubble = true;\n  };\n  function e_defaultPrevented(e) {\n    return e.defaultPrevented != null ? e.defaultPrevented : e.returnValue == false;\n  }\n  var e_stop = CodeMirror.e_stop = function(e) {e_preventDefault(e); e_stopPropagation(e);};\n\n  function e_target(e) {return e.target || e.srcElement;}\n  function e_button(e) {\n    var b = e.which;\n    if (b == null) {\n      if (e.button & 1) b = 1;\n      else if (e.button & 2) b = 3;\n      else if (e.button & 4) b = 2;\n    }\n    if (mac && e.ctrlKey && b == 1) b = 3;\n    return b;\n  }\n\n  // EVENT HANDLING\n\n  // Lightweight event framework. on/off also work on DOM nodes,\n  // registering native DOM handlers.\n\n  var on = CodeMirror.on = function(emitter, type, f) {\n    if (emitter.addEventListener)\n      emitter.addEventListener(type, f, false);\n    else if (emitter.attachEvent)\n      emitter.attachEvent(\"on\" + type, f);\n    else {\n      var map = emitter._handlers || (emitter._handlers = {});\n      var arr = map[type] || (map[type] = []);\n      arr.push(f);\n    }\n  };\n\n  var off = CodeMirror.off = function(emitter, type, f) {\n    if (emitter.removeEventListener)\n      emitter.removeEventListener(type, f, false);\n    else if (emitter.detachEvent)\n      emitter.detachEvent(\"on\" + type, f);\n    else {\n      var arr = emitter._handlers && emitter._handlers[type];\n      if (!arr) return;\n      for (var i = 0; i < arr.length; ++i)\n        if (arr[i] == f) { arr.splice(i, 1); break; }\n    }\n  };\n\n  var signal = CodeMirror.signal = function(emitter, type /*, values...*/) {\n    var arr = emitter._handlers && emitter._handlers[type];\n    if (!arr) return;\n    var args = Array.prototype.slice.call(arguments, 2);\n    for (var i = 0; i < arr.length; ++i) arr[i].apply(null, args);\n  };\n\n  var orphanDelayedCallbacks = null;\n\n  // Often, we want to signal events at a point where we are in the\n  // middle of some work, but don't want the handler to start calling\n  // other methods on the editor, which might be in an inconsistent\n  // state or simply not expect any other events to happen.\n  // signalLater looks whether there are any handlers, and schedules\n  // them to be executed when the last operation ends, or, if no\n  // operation is active, when a timeout fires.\n  function signalLater(emitter, type /*, values...*/) {\n    var arr = emitter._handlers && emitter._handlers[type];\n    if (!arr) return;\n    var args = Array.prototype.slice.call(arguments, 2), list;\n    if (operationGroup) {\n      list = operationGroup.delayedCallbacks;\n    } else if (orphanDelayedCallbacks) {\n      list = orphanDelayedCallbacks;\n    } else {\n      list = orphanDelayedCallbacks = [];\n      setTimeout(fireOrphanDelayed, 0);\n    }\n    function bnd(f) {return function(){f.apply(null, args);};};\n    for (var i = 0; i < arr.length; ++i)\n      list.push(bnd(arr[i]));\n  }\n\n  function fireOrphanDelayed() {\n    var delayed = orphanDelayedCallbacks;\n    orphanDelayedCallbacks = null;\n    for (var i = 0; i < delayed.length; ++i) delayed[i]();\n  }\n\n  // The DOM events that CodeMirror handles can be overridden by\n  // registering a (non-DOM) handler on the editor for the event name,\n  // and preventDefault-ing the event in that handler.\n  function signalDOMEvent(cm, e, override) {\n    signal(cm, override || e.type, cm, e);\n    return e_defaultPrevented(e) || e.codemirrorIgnore;\n  }\n\n  function signalCursorActivity(cm) {\n    var arr = cm._handlers && cm._handlers.cursorActivity;\n    if (!arr) return;\n    var set = cm.curOp.cursorActivityHandlers || (cm.curOp.cursorActivityHandlers = []);\n    for (var i = 0; i < arr.length; ++i) if (indexOf(set, arr[i]) == -1)\n      set.push(arr[i]);\n  }\n\n  function hasHandler(emitter, type) {\n    var arr = emitter._handlers && emitter._handlers[type];\n    return arr && arr.length > 0;\n  }\n\n  // Add on and off methods to a constructor's prototype, to make\n  // registering events on such objects more convenient.\n  function eventMixin(ctor) {\n    ctor.prototype.on = function(type, f) {on(this, type, f);};\n    ctor.prototype.off = function(type, f) {off(this, type, f);};\n  }\n\n  // MISC UTILITIES\n\n  // Number of pixels added to scroller and sizer to hide scrollbar\n  var scrollerCutOff = 30;\n\n  // Returned or thrown by various protocols to signal 'I'm not\n  // handling this'.\n  var Pass = CodeMirror.Pass = {toString: function(){return \"CodeMirror.Pass\";}};\n\n  // Reused option objects for setSelection & friends\n  var sel_dontScroll = {scroll: false}, sel_mouse = {origin: \"*mouse\"}, sel_move = {origin: \"+move\"};\n\n  function Delayed() {this.id = null;}\n  Delayed.prototype.set = function(ms, f) {\n    clearTimeout(this.id);\n    this.id = setTimeout(f, ms);\n  };\n\n  // Counts the column offset in a string, taking tabs into account.\n  // Used mostly to find indentation.\n  var countColumn = CodeMirror.countColumn = function(string, end, tabSize, startIndex, startValue) {\n    if (end == null) {\n      end = string.search(/[^\\s\\u00a0]/);\n      if (end == -1) end = string.length;\n    }\n    for (var i = startIndex || 0, n = startValue || 0;;) {\n      var nextTab = string.indexOf(\"\\t\", i);\n      if (nextTab < 0 || nextTab >= end)\n        return n + (end - i);\n      n += nextTab - i;\n      n += tabSize - (n % tabSize);\n      i = nextTab + 1;\n    }\n  };\n\n  // The inverse of countColumn -- find the offset that corresponds to\n  // a particular column.\n  function findColumn(string, goal, tabSize) {\n    for (var pos = 0, col = 0;;) {\n      var nextTab = string.indexOf(\"\\t\", pos);\n      if (nextTab == -1) nextTab = string.length;\n      var skipped = nextTab - pos;\n      if (nextTab == string.length || col + skipped >= goal)\n        return pos + Math.min(skipped, goal - col);\n      col += nextTab - pos;\n      col += tabSize - (col % tabSize);\n      pos = nextTab + 1;\n      if (col >= goal) return pos;\n    }\n  }\n\n  var spaceStrs = [\"\"];\n  function spaceStr(n) {\n    while (spaceStrs.length <= n)\n      spaceStrs.push(lst(spaceStrs) + \" \");\n    return spaceStrs[n];\n  }\n\n  function lst(arr) { return arr[arr.length-1]; }\n\n  var selectInput = function(node) { node.select(); };\n  if (ios) // Mobile Safari apparently has a bug where select() is broken.\n    selectInput = function(node) { node.selectionStart = 0; node.selectionEnd = node.value.length; };\n  else if (ie) // Suppress mysterious IE10 errors\n    selectInput = function(node) { try { node.select(); } catch(_e) {} };\n\n  function indexOf(array, elt) {\n    for (var i = 0; i < array.length; ++i)\n      if (array[i] == elt) return i;\n    return -1;\n  }\n  if ([].indexOf) indexOf = function(array, elt) { return array.indexOf(elt); };\n  function map(array, f) {\n    var out = [];\n    for (var i = 0; i < array.length; i++) out[i] = f(array[i], i);\n    return out;\n  }\n  if ([].map) map = function(array, f) { return array.map(f); };\n\n  function createObj(base, props) {\n    var inst;\n    if (Object.create) {\n      inst = Object.create(base);\n    } else {\n      var ctor = function() {};\n      ctor.prototype = base;\n      inst = new ctor();\n    }\n    if (props) copyObj(props, inst);\n    return inst;\n  };\n\n  function copyObj(obj, target, overwrite) {\n    if (!target) target = {};\n    for (var prop in obj)\n      if (obj.hasOwnProperty(prop) && (overwrite !== false || !target.hasOwnProperty(prop)))\n        target[prop] = obj[prop];\n    return target;\n  }\n\n  function bind(f) {\n    var args = Array.prototype.slice.call(arguments, 1);\n    return function(){return f.apply(null, args);};\n  }\n\n  var nonASCIISingleCaseWordChar = /[\\u00df\\u0590-\\u05f4\\u0600-\\u06ff\\u3040-\\u309f\\u30a0-\\u30ff\\u3400-\\u4db5\\u4e00-\\u9fcc\\uac00-\\ud7af]/;\n  var isWordCharBasic = CodeMirror.isWordChar = function(ch) {\n    return /\\w/.test(ch) || ch > \"\\x80\" &&\n      (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch));\n  };\n  function isWordChar(ch, helper) {\n    if (!helper) return isWordCharBasic(ch);\n    if (helper.source.indexOf(\"\\\\w\") > -1 && isWordCharBasic(ch)) return true;\n    return helper.test(ch);\n  }\n\n  function isEmpty(obj) {\n    for (var n in obj) if (obj.hasOwnProperty(n) && obj[n]) return false;\n    return true;\n  }\n\n  // Extending unicode characters. A series of a non-extending char +\n  // any number of extending chars is treated as a single unit as far\n  // as editing and measuring is concerned. This is not fully correct,\n  // since some scripts/fonts/browsers also treat other configurations\n  // of code points as a group.\n  var extendingChars = /[\\u0300-\\u036f\\u0483-\\u0489\\u0591-\\u05bd\\u05bf\\u05c1\\u05c2\\u05c4\\u05c5\\u05c7\\u0610-\\u061a\\u064b-\\u065e\\u0670\\u06d6-\\u06dc\\u06de-\\u06e4\\u06e7\\u06e8\\u06ea-\\u06ed\\u0711\\u0730-\\u074a\\u07a6-\\u07b0\\u07eb-\\u07f3\\u0816-\\u0819\\u081b-\\u0823\\u0825-\\u0827\\u0829-\\u082d\\u0900-\\u0902\\u093c\\u0941-\\u0948\\u094d\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09bc\\u09be\\u09c1-\\u09c4\\u09cd\\u09d7\\u09e2\\u09e3\\u0a01\\u0a02\\u0a3c\\u0a41\\u0a42\\u0a47\\u0a48\\u0a4b-\\u0a4d\\u0a51\\u0a70\\u0a71\\u0a75\\u0a81\\u0a82\\u0abc\\u0ac1-\\u0ac5\\u0ac7\\u0ac8\\u0acd\\u0ae2\\u0ae3\\u0b01\\u0b3c\\u0b3e\\u0b3f\\u0b41-\\u0b44\\u0b4d\\u0b56\\u0b57\\u0b62\\u0b63\\u0b82\\u0bbe\\u0bc0\\u0bcd\\u0bd7\\u0c3e-\\u0c40\\u0c46-\\u0c48\\u0c4a-\\u0c4d\\u0c55\\u0c56\\u0c62\\u0c63\\u0cbc\\u0cbf\\u0cc2\\u0cc6\\u0ccc\\u0ccd\\u0cd5\\u0cd6\\u0ce2\\u0ce3\\u0d3e\\u0d41-\\u0d44\\u0d4d\\u0d57\\u0d62\\u0d63\\u0dca\\u0dcf\\u0dd2-\\u0dd4\\u0dd6\\u0ddf\\u0e31\\u0e34-\\u0e3a\\u0e47-\\u0e4e\\u0eb1\\u0eb4-\\u0eb9\\u0ebb\\u0ebc\\u0ec8-\\u0ecd\\u0f18\\u0f19\\u0f35\\u0f37\\u0f39\\u0f71-\\u0f7e\\u0f80-\\u0f84\\u0f86\\u0f87\\u0f90-\\u0f97\\u0f99-\\u0fbc\\u0fc6\\u102d-\\u1030\\u1032-\\u1037\\u1039\\u103a\\u103d\\u103e\\u1058\\u1059\\u105e-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108d\\u109d\\u135f\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17b7-\\u17bd\\u17c6\\u17c9-\\u17d3\\u17dd\\u180b-\\u180d\\u18a9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193b\\u1a17\\u1a18\\u1a56\\u1a58-\\u1a5e\\u1a60\\u1a62\\u1a65-\\u1a6c\\u1a73-\\u1a7c\\u1a7f\\u1b00-\\u1b03\\u1b34\\u1b36-\\u1b3a\\u1b3c\\u1b42\\u1b6b-\\u1b73\\u1b80\\u1b81\\u1ba2-\\u1ba5\\u1ba8\\u1ba9\\u1c2c-\\u1c33\\u1c36\\u1c37\\u1cd0-\\u1cd2\\u1cd4-\\u1ce0\\u1ce2-\\u1ce8\\u1ced\\u1dc0-\\u1de6\\u1dfd-\\u1dff\\u200c\\u200d\\u20d0-\\u20f0\\u2cef-\\u2cf1\\u2de0-\\u2dff\\u302a-\\u302f\\u3099\\u309a\\ua66f-\\ua672\\ua67c\\ua67d\\ua6f0\\ua6f1\\ua802\\ua806\\ua80b\\ua825\\ua826\\ua8c4\\ua8e0-\\ua8f1\\ua926-\\ua92d\\ua947-\\ua951\\ua980-\\ua982\\ua9b3\\ua9b6-\\ua9b9\\ua9bc\\uaa29-\\uaa2e\\uaa31\\uaa32\\uaa35\\uaa36\\uaa43\\uaa4c\\uaab0\\uaab2-\\uaab4\\uaab7\\uaab8\\uaabe\\uaabf\\uaac1\\uabe5\\uabe8\\uabed\\udc00-\\udfff\\ufb1e\\ufe00-\\ufe0f\\ufe20-\\ufe26\\uff9e\\uff9f]/;\n  function isExtendingChar(ch) { return ch.charCodeAt(0) >= 768 && extendingChars.test(ch); }\n\n  // DOM UTILITIES\n\n  function elt(tag, content, className, style) {\n    var e = document.createElement(tag);\n    if (className) e.className = className;\n    if (style) e.style.cssText = style;\n    if (typeof content == \"string\") e.appendChild(document.createTextNode(content));\n    else if (content) for (var i = 0; i < content.length; ++i) e.appendChild(content[i]);\n    return e;\n  }\n\n  var range;\n  if (document.createRange) range = function(node, start, end) {\n    var r = document.createRange();\n    r.setEnd(node, end);\n    r.setStart(node, start);\n    return r;\n  };\n  else range = function(node, start, end) {\n    var r = document.body.createTextRange();\n    r.moveToElementText(node.parentNode);\n    r.collapse(true);\n    r.moveEnd(\"character\", end);\n    r.moveStart(\"character\", start);\n    return r;\n  };\n\n  function removeChildren(e) {\n    for (var count = e.childNodes.length; count > 0; --count)\n      e.removeChild(e.firstChild);\n    return e;\n  }\n\n  function removeChildrenAndAdd(parent, e) {\n    return removeChildren(parent).appendChild(e);\n  }\n\n  function contains(parent, child) {\n    if (parent.contains)\n      return parent.contains(child);\n    while (child = child.parentNode)\n      if (child == parent) return true;\n  }\n\n  function activeElt() { return document.activeElement; }\n  // Older versions of IE throws unspecified error when touching\n  // document.activeElement in some cases (during loading, in iframe)\n  if (ie && ie_version < 11) activeElt = function() {\n    try { return document.activeElement; }\n    catch(e) { return document.body; }\n  };\n\n  function classTest(cls) { return new RegExp(\"\\\\b\" + cls + \"\\\\b\\\\s*\"); }\n  function rmClass(node, cls) {\n    var test = classTest(cls);\n    if (test.test(node.className)) node.className = node.className.replace(test, \"\");\n  }\n  function addClass(node, cls) {\n    if (!classTest(cls).test(node.className)) node.className += \" \" + cls;\n  }\n  function joinClasses(a, b) {\n    var as = a.split(\" \");\n    for (var i = 0; i < as.length; i++)\n      if (as[i] && !classTest(as[i]).test(b)) b += \" \" + as[i];\n    return b;\n  }\n\n  // WINDOW-WIDE EVENTS\n\n  // These must be handled carefully, because naively registering a\n  // handler for each editor will cause the editors to never be\n  // garbage collected.\n\n  function forEachCodeMirror(f) {\n    if (!document.body.getElementsByClassName) return;\n    var byClass = document.body.getElementsByClassName(\"CodeMirror\");\n    for (var i = 0; i < byClass.length; i++) {\n      var cm = byClass[i].CodeMirror;\n      if (cm) f(cm);\n    }\n  }\n\n  var globalsRegistered = false;\n  function ensureGlobalHandlers() {\n    if (globalsRegistered) return;\n    registerGlobalHandlers();\n    globalsRegistered = true;\n  }\n  function registerGlobalHandlers() {\n    // When the window resizes, we need to refresh active editors.\n    var resizeTimer;\n    on(window, \"resize\", function() {\n      if (resizeTimer == null) resizeTimer = setTimeout(function() {\n        resizeTimer = null;\n        knownScrollbarWidth = null;\n        forEachCodeMirror(onResize);\n      }, 100);\n    });\n    // When the window loses focus, we want to show the editor as blurred\n    on(window, \"blur\", function() {\n      forEachCodeMirror(onBlur);\n    });\n  }\n\n  // FEATURE DETECTION\n\n  // Detect drag-and-drop\n  var dragAndDrop = function() {\n    // There is *some* kind of drag-and-drop support in IE6-8, but I\n    // couldn't get it to work yet.\n    if (ie && ie_version < 9) return false;\n    var div = elt('div');\n    return \"draggable\" in div || \"dragDrop\" in div;\n  }();\n\n  var knownScrollbarWidth;\n  function scrollbarWidth(measure) {\n    if (knownScrollbarWidth != null) return knownScrollbarWidth;\n    var test = elt(\"div\", null, null, \"width: 50px; height: 50px; overflow-x: scroll\");\n    removeChildrenAndAdd(measure, test);\n    if (test.offsetWidth)\n      knownScrollbarWidth = test.offsetHeight - test.clientHeight;\n    return knownScrollbarWidth || 0;\n  }\n\n  var zwspSupported;\n  function zeroWidthElement(measure) {\n    if (zwspSupported == null) {\n      var test = elt(\"span\", \"\\u200b\");\n      removeChildrenAndAdd(measure, elt(\"span\", [test, document.createTextNode(\"x\")]));\n      if (measure.firstChild.offsetHeight != 0)\n        zwspSupported = test.offsetWidth <= 1 && test.offsetHeight > 2 && !(ie && ie_version < 8);\n    }\n    if (zwspSupported) return elt(\"span\", \"\\u200b\");\n    else return elt(\"span\", \"\\u00a0\", null, \"display: inline-block; width: 1px; margin-right: -1px\");\n  }\n\n  // Feature-detect IE's crummy client rect reporting for bidi text\n  var badBidiRects;\n  function hasBadBidiRects(measure) {\n    if (badBidiRects != null) return badBidiRects;\n    var txt = removeChildrenAndAdd(measure, document.createTextNode(\"A\\u062eA\"));\n    var r0 = range(txt, 0, 1).getBoundingClientRect();\n    if (!r0 || r0.left == r0.right) return false; // Safari returns null in some cases (#2780)\n    var r1 = range(txt, 1, 2).getBoundingClientRect();\n    return badBidiRects = (r1.right - r0.right < 3);\n  }\n\n  // See if \"\".split is the broken IE version, if so, provide an\n  // alternative way to split lines.\n  var splitLines = CodeMirror.splitLines = \"\\n\\nb\".split(/\\n/).length != 3 ? function(string) {\n    var pos = 0, result = [], l = string.length;\n    while (pos <= l) {\n      var nl = string.indexOf(\"\\n\", pos);\n      if (nl == -1) nl = string.length;\n      var line = string.slice(pos, string.charAt(nl - 1) == \"\\r\" ? nl - 1 : nl);\n      var rt = line.indexOf(\"\\r\");\n      if (rt != -1) {\n        result.push(line.slice(0, rt));\n        pos += rt + 1;\n      } else {\n        result.push(line);\n        pos = nl + 1;\n      }\n    }\n    return result;\n  } : function(string){return string.split(/\\r\\n?|\\n/);};\n\n  var hasSelection = window.getSelection ? function(te) {\n    try { return te.selectionStart != te.selectionEnd; }\n    catch(e) { return false; }\n  } : function(te) {\n    try {var range = te.ownerDocument.selection.createRange();}\n    catch(e) {}\n    if (!range || range.parentElement() != te) return false;\n    return range.compareEndPoints(\"StartToEnd\", range) != 0;\n  };\n\n  var hasCopyEvent = (function() {\n    var e = elt(\"div\");\n    if (\"oncopy\" in e) return true;\n    e.setAttribute(\"oncopy\", \"return;\");\n    return typeof e.oncopy == \"function\";\n  })();\n\n  var badZoomedRects = null;\n  function hasBadZoomedRects(measure) {\n    if (badZoomedRects != null) return badZoomedRects;\n    var node = removeChildrenAndAdd(measure, elt(\"span\", \"x\"));\n    var normal = node.getBoundingClientRect();\n    var fromRange = range(node, 0, 1).getBoundingClientRect();\n    return badZoomedRects = Math.abs(normal.left - fromRange.left) > 1;\n  }\n\n  // KEY NAMES\n\n  var keyNames = {3: \"Enter\", 8: \"Backspace\", 9: \"Tab\", 13: \"Enter\", 16: \"Shift\", 17: \"Ctrl\", 18: \"Alt\",\n                  19: \"Pause\", 20: \"CapsLock\", 27: \"Esc\", 32: \"Space\", 33: \"PageUp\", 34: \"PageDown\", 35: \"End\",\n                  36: \"Home\", 37: \"Left\", 38: \"Up\", 39: \"Right\", 40: \"Down\", 44: \"PrintScrn\", 45: \"Insert\",\n                  46: \"Delete\", 59: \";\", 61: \"=\", 91: \"Mod\", 92: \"Mod\", 93: \"Mod\", 107: \"=\", 109: \"-\", 127: \"Delete\",\n                  173: \"-\", 186: \";\", 187: \"=\", 188: \",\", 189: \"-\", 190: \".\", 191: \"/\", 192: \"`\", 219: \"[\", 220: \"\\\\\",\n                  221: \"]\", 222: \"'\", 63232: \"Up\", 63233: \"Down\", 63234: \"Left\", 63235: \"Right\", 63272: \"Delete\",\n                  63273: \"Home\", 63275: \"End\", 63276: \"PageUp\", 63277: \"PageDown\", 63302: \"Insert\"};\n  CodeMirror.keyNames = keyNames;\n  (function() {\n    // Number keys\n    for (var i = 0; i < 10; i++) keyNames[i + 48] = keyNames[i + 96] = String(i);\n    // Alphabetic keys\n    for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i);\n    // Function keys\n    for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = \"F\" + i;\n  })();\n\n  // BIDI HELPERS\n\n  function iterateBidiSections(order, from, to, f) {\n    if (!order) return f(from, to, \"ltr\");\n    var found = false;\n    for (var i = 0; i < order.length; ++i) {\n      var part = order[i];\n      if (part.from < to && part.to > from || from == to && part.to == from) {\n        f(Math.max(part.from, from), Math.min(part.to, to), part.level == 1 ? \"rtl\" : \"ltr\");\n        found = true;\n      }\n    }\n    if (!found) f(from, to, \"ltr\");\n  }\n\n  function bidiLeft(part) { return part.level % 2 ? part.to : part.from; }\n  function bidiRight(part) { return part.level % 2 ? part.from : part.to; }\n\n  function lineLeft(line) { var order = getOrder(line); return order ? bidiLeft(order[0]) : 0; }\n  function lineRight(line) {\n    var order = getOrder(line);\n    if (!order) return line.text.length;\n    return bidiRight(lst(order));\n  }\n\n  function lineStart(cm, lineN) {\n    var line = getLine(cm.doc, lineN);\n    var visual = visualLine(line);\n    if (visual != line) lineN = lineNo(visual);\n    var order = getOrder(visual);\n    var ch = !order ? 0 : order[0].level % 2 ? lineRight(visual) : lineLeft(visual);\n    return Pos(lineN, ch);\n  }\n  function lineEnd(cm, lineN) {\n    var merged, line = getLine(cm.doc, lineN);\n    while (merged = collapsedSpanAtEnd(line)) {\n      line = merged.find(1, true).line;\n      lineN = null;\n    }\n    var order = getOrder(line);\n    var ch = !order ? line.text.length : order[0].level % 2 ? lineLeft(line) : lineRight(line);\n    return Pos(lineN == null ? lineNo(line) : lineN, ch);\n  }\n  function lineStartSmart(cm, pos) {\n    var start = lineStart(cm, pos.line);\n    var line = getLine(cm.doc, start.line);\n    var order = getOrder(line);\n    if (!order || order[0].level == 0) {\n      var firstNonWS = Math.max(0, line.text.search(/\\S/));\n      var inWS = pos.line == start.line && pos.ch <= firstNonWS && pos.ch;\n      return Pos(start.line, inWS ? 0 : firstNonWS);\n    }\n    return start;\n  }\n\n  function compareBidiLevel(order, a, b) {\n    var linedir = order[0].level;\n    if (a == linedir) return true;\n    if (b == linedir) return false;\n    return a < b;\n  }\n  var bidiOther;\n  function getBidiPartAt(order, pos) {\n    bidiOther = null;\n    for (var i = 0, found; i < order.length; ++i) {\n      var cur = order[i];\n      if (cur.from < pos && cur.to > pos) return i;\n      if ((cur.from == pos || cur.to == pos)) {\n        if (found == null) {\n          found = i;\n        } else if (compareBidiLevel(order, cur.level, order[found].level)) {\n          if (cur.from != cur.to) bidiOther = found;\n          return i;\n        } else {\n          if (cur.from != cur.to) bidiOther = i;\n          return found;\n        }\n      }\n    }\n    return found;\n  }\n\n  function moveInLine(line, pos, dir, byUnit) {\n    if (!byUnit) return pos + dir;\n    do pos += dir;\n    while (pos > 0 && isExtendingChar(line.text.charAt(pos)));\n    return pos;\n  }\n\n  // This is needed in order to move 'visually' through bi-directional\n  // text -- i.e., pressing left should make the cursor go left, even\n  // when in RTL text. The tricky part is the 'jumps', where RTL and\n  // LTR text touch each other. This often requires the cursor offset\n  // to move more than one unit, in order to visually move one unit.\n  function moveVisually(line, start, dir, byUnit) {\n    var bidi = getOrder(line);\n    if (!bidi) return moveLogically(line, start, dir, byUnit);\n    var pos = getBidiPartAt(bidi, start), part = bidi[pos];\n    var target = moveInLine(line, start, part.level % 2 ? -dir : dir, byUnit);\n\n    for (;;) {\n      if (target > part.from && target < part.to) return target;\n      if (target == part.from || target == part.to) {\n        if (getBidiPartAt(bidi, target) == pos) return target;\n        part = bidi[pos += dir];\n        return (dir > 0) == part.level % 2 ? part.to : part.from;\n      } else {\n        part = bidi[pos += dir];\n        if (!part) return null;\n        if ((dir > 0) == part.level % 2)\n          target = moveInLine(line, part.to, -1, byUnit);\n        else\n          target = moveInLine(line, part.from, 1, byUnit);\n      }\n    }\n  }\n\n  function moveLogically(line, start, dir, byUnit) {\n    var target = start + dir;\n    if (byUnit) while (target > 0 && isExtendingChar(line.text.charAt(target))) target += dir;\n    return target < 0 || target > line.text.length ? null : target;\n  }\n\n  // Bidirectional ordering algorithm\n  // See http://unicode.org/reports/tr9/tr9-13.html for the algorithm\n  // that this (partially) implements.\n\n  // One-char codes used for character types:\n  // L (L):   Left-to-Right\n  // R (R):   Right-to-Left\n  // r (AL):  Right-to-Left Arabic\n  // 1 (EN):  European Number\n  // + (ES):  European Number Separator\n  // % (ET):  European Number Terminator\n  // n (AN):  Arabic Number\n  // , (CS):  Common Number Separator\n  // m (NSM): Non-Spacing Mark\n  // b (BN):  Boundary Neutral\n  // s (B):   Paragraph Separator\n  // t (S):   Segment Separator\n  // w (WS):  Whitespace\n  // N (ON):  Other Neutrals\n\n  // Returns null if characters are ordered as they appear\n  // (left-to-right), or an array of sections ({from, to, level}\n  // objects) in the order in which they occur visually.\n  var bidiOrdering = (function() {\n    // Character types for codepoints 0 to 0xff\n    var lowTypes = \"bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN\";\n    // Character types for codepoints 0x600 to 0x6ff\n    var arabicTypes = \"rrrrrrrrrrrr,rNNmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmrrrrrrrnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmNmmmm\";\n    function charType(code) {\n      if (code <= 0xf7) return lowTypes.charAt(code);\n      else if (0x590 <= code && code <= 0x5f4) return \"R\";\n      else if (0x600 <= code && code <= 0x6ed) return arabicTypes.charAt(code - 0x600);\n      else if (0x6ee <= code && code <= 0x8ac) return \"r\";\n      else if (0x2000 <= code && code <= 0x200b) return \"w\";\n      else if (code == 0x200c) return \"b\";\n      else return \"L\";\n    }\n\n    var bidiRE = /[\\u0590-\\u05f4\\u0600-\\u06ff\\u0700-\\u08ac]/;\n    var isNeutral = /[stwN]/, isStrong = /[LRr]/, countsAsLeft = /[Lb1n]/, countsAsNum = /[1n]/;\n    // Browsers seem to always treat the boundaries of block elements as being L.\n    var outerType = \"L\";\n\n    function BidiSpan(level, from, to) {\n      this.level = level;\n      this.from = from; this.to = to;\n    }\n\n    return function(str) {\n      if (!bidiRE.test(str)) return false;\n      var len = str.length, types = [];\n      for (var i = 0, type; i < len; ++i)\n        types.push(type = charType(str.charCodeAt(i)));\n\n      // W1. Examine each non-spacing mark (NSM) in the level run, and\n      // change the type of the NSM to the type of the previous\n      // character. If the NSM is at the start of the level run, it will\n      // get the type of sor.\n      for (var i = 0, prev = outerType; i < len; ++i) {\n        var type = types[i];\n        if (type == \"m\") types[i] = prev;\n        else prev = type;\n      }\n\n      // W2. Search backwards from each instance of a European number\n      // until the first strong type (R, L, AL, or sor) is found. If an\n      // AL is found, change the type of the European number to Arabic\n      // number.\n      // W3. Change all ALs to R.\n      for (var i = 0, cur = outerType; i < len; ++i) {\n        var type = types[i];\n        if (type == \"1\" && cur == \"r\") types[i] = \"n\";\n        else if (isStrong.test(type)) { cur = type; if (type == \"r\") types[i] = \"R\"; }\n      }\n\n      // W4. A single European separator between two European numbers\n      // changes to a European number. A single common separator between\n      // two numbers of the same type changes to that type.\n      for (var i = 1, prev = types[0]; i < len - 1; ++i) {\n        var type = types[i];\n        if (type == \"+\" && prev == \"1\" && types[i+1] == \"1\") types[i] = \"1\";\n        else if (type == \",\" && prev == types[i+1] &&\n                 (prev == \"1\" || prev == \"n\")) types[i] = prev;\n        prev = type;\n      }\n\n      // W5. A sequence of European terminators adjacent to European\n      // numbers changes to all European numbers.\n      // W6. Otherwise, separators and terminators change to Other\n      // Neutral.\n      for (var i = 0; i < len; ++i) {\n        var type = types[i];\n        if (type == \",\") types[i] = \"N\";\n        else if (type == \"%\") {\n          for (var end = i + 1; end < len && types[end] == \"%\"; ++end) {}\n          var replace = (i && types[i-1] == \"!\") || (end < len && types[end] == \"1\") ? \"1\" : \"N\";\n          for (var j = i; j < end; ++j) types[j] = replace;\n          i = end - 1;\n        }\n      }\n\n      // W7. Search backwards from each instance of a European number\n      // until the first strong type (R, L, or sor) is found. If an L is\n      // found, then change the type of the European number to L.\n      for (var i = 0, cur = outerType; i < len; ++i) {\n        var type = types[i];\n        if (cur == \"L\" && type == \"1\") types[i] = \"L\";\n        else if (isStrong.test(type)) cur = type;\n      }\n\n      // N1. A sequence of neutrals takes the direction of the\n      // surrounding strong text if the text on both sides has the same\n      // direction. European and Arabic numbers act as if they were R in\n      // terms of their influence on neutrals. Start-of-level-run (sor)\n      // and end-of-level-run (eor) are used at level run boundaries.\n      // N2. Any remaining neutrals take the embedding direction.\n      for (var i = 0; i < len; ++i) {\n        if (isNeutral.test(types[i])) {\n          for (var end = i + 1; end < len && isNeutral.test(types[end]); ++end) {}\n          var before = (i ? types[i-1] : outerType) == \"L\";\n          var after = (end < len ? types[end] : outerType) == \"L\";\n          var replace = before || after ? \"L\" : \"R\";\n          for (var j = i; j < end; ++j) types[j] = replace;\n          i = end - 1;\n        }\n      }\n\n      // Here we depart from the documented algorithm, in order to avoid\n      // building up an actual levels array. Since there are only three\n      // levels (0, 1, 2) in an implementation that doesn't take\n      // explicit embedding into account, we can build up the order on\n      // the fly, without following the level-based algorithm.\n      var order = [], m;\n      for (var i = 0; i < len;) {\n        if (countsAsLeft.test(types[i])) {\n          var start = i;\n          for (++i; i < len && countsAsLeft.test(types[i]); ++i) {}\n          order.push(new BidiSpan(0, start, i));\n        } else {\n          var pos = i, at = order.length;\n          for (++i; i < len && types[i] != \"L\"; ++i) {}\n          for (var j = pos; j < i;) {\n            if (countsAsNum.test(types[j])) {\n              if (pos < j) order.splice(at, 0, new BidiSpan(1, pos, j));\n              var nstart = j;\n              for (++j; j < i && countsAsNum.test(types[j]); ++j) {}\n              order.splice(at, 0, new BidiSpan(2, nstart, j));\n              pos = j;\n            } else ++j;\n          }\n          if (pos < i) order.splice(at, 0, new BidiSpan(1, pos, i));\n        }\n      }\n      if (order[0].level == 1 && (m = str.match(/^\\s+/))) {\n        order[0].from = m[0].length;\n        order.unshift(new BidiSpan(0, 0, m[0].length));\n      }\n      if (lst(order).level == 1 && (m = str.match(/\\s+$/))) {\n        lst(order).to -= m[0].length;\n        order.push(new BidiSpan(0, len - m[0].length, len));\n      }\n      if (order[0].level != lst(order).level)\n        order.push(new BidiSpan(order[0].level, len, len));\n\n      return order;\n    };\n  })();\n\n  // THE END\n\n  CodeMirror.version = \"4.7.0\";\n\n  return CodeMirror;\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/apl/apl.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"apl\", function() {\n  var builtInOps = {\n    \".\": \"innerProduct\",\n    \"\\\\\": \"scan\",\n    \"/\": \"reduce\",\n    \"⌿\": \"reduce1Axis\",\n    \"⍀\": \"scan1Axis\",\n    \"¨\": \"each\",\n    \"⍣\": \"power\"\n  };\n  var builtInFuncs = {\n    \"+\": [\"conjugate\", \"add\"],\n    \"−\": [\"negate\", \"subtract\"],\n    \"×\": [\"signOf\", \"multiply\"],\n    \"÷\": [\"reciprocal\", \"divide\"],\n    \"⌈\": [\"ceiling\", \"greaterOf\"],\n    \"⌊\": [\"floor\", \"lesserOf\"],\n    \"∣\": [\"absolute\", \"residue\"],\n    \"⍳\": [\"indexGenerate\", \"indexOf\"],\n    \"?\": [\"roll\", \"deal\"],\n    \"⋆\": [\"exponentiate\", \"toThePowerOf\"],\n    \"⍟\": [\"naturalLog\", \"logToTheBase\"],\n    \"○\": [\"piTimes\", \"circularFuncs\"],\n    \"!\": [\"factorial\", \"binomial\"],\n    \"⌹\": [\"matrixInverse\", \"matrixDivide\"],\n    \"<\": [null, \"lessThan\"],\n    \"≤\": [null, \"lessThanOrEqual\"],\n    \"=\": [null, \"equals\"],\n    \">\": [null, \"greaterThan\"],\n    \"≥\": [null, \"greaterThanOrEqual\"],\n    \"≠\": [null, \"notEqual\"],\n    \"≡\": [\"depth\", \"match\"],\n    \"≢\": [null, \"notMatch\"],\n    \"∈\": [\"enlist\", \"membership\"],\n    \"⍷\": [null, \"find\"],\n    \"∪\": [\"unique\", \"union\"],\n    \"∩\": [null, \"intersection\"],\n    \"∼\": [\"not\", \"without\"],\n    \"∨\": [null, \"or\"],\n    \"∧\": [null, \"and\"],\n    \"⍱\": [null, \"nor\"],\n    \"⍲\": [null, \"nand\"],\n    \"⍴\": [\"shapeOf\", \"reshape\"],\n    \",\": [\"ravel\", \"catenate\"],\n    \"⍪\": [null, \"firstAxisCatenate\"],\n    \"⌽\": [\"reverse\", \"rotate\"],\n    \"⊖\": [\"axis1Reverse\", \"axis1Rotate\"],\n    \"⍉\": [\"transpose\", null],\n    \"↑\": [\"first\", \"take\"],\n    \"↓\": [null, \"drop\"],\n    \"⊂\": [\"enclose\", \"partitionWithAxis\"],\n    \"⊃\": [\"diclose\", \"pick\"],\n    \"⌷\": [null, \"index\"],\n    \"⍋\": [\"gradeUp\", null],\n    \"⍒\": [\"gradeDown\", null],\n    \"⊤\": [\"encode\", null],\n    \"⊥\": [\"decode\", null],\n    \"⍕\": [\"format\", \"formatByExample\"],\n    \"⍎\": [\"execute\", null],\n    \"⊣\": [\"stop\", \"left\"],\n    \"⊢\": [\"pass\", \"right\"]\n  };\n\n  var isOperator = /[\\.\\/⌿⍀¨⍣]/;\n  var isNiladic = /⍬/;\n  var isFunction = /[\\+−×÷⌈⌊∣⍳\\?⋆⍟○!⌹<≤=>≥≠≡≢∈⍷∪∩∼∨∧⍱⍲⍴,⍪⌽⊖⍉↑↓⊂⊃⌷⍋⍒⊤⊥⍕⍎⊣⊢]/;\n  var isArrow = /←/;\n  var isComment = /[⍝#].*$/;\n\n  var stringEater = function(type) {\n    var prev;\n    prev = false;\n    return function(c) {\n      prev = c;\n      if (c === type) {\n        return prev === \"\\\\\";\n      }\n      return true;\n    };\n  };\n  return {\n    startState: function() {\n      return {\n        prev: false,\n        func: false,\n        op: false,\n        string: false,\n        escape: false\n      };\n    },\n    token: function(stream, state) {\n      var ch, funcName, word;\n      if (stream.eatSpace()) {\n        return null;\n      }\n      ch = stream.next();\n      if (ch === '\"' || ch === \"'\") {\n        stream.eatWhile(stringEater(ch));\n        stream.next();\n        state.prev = true;\n        return \"string\";\n      }\n      if (/[\\[{\\(]/.test(ch)) {\n        state.prev = false;\n        return null;\n      }\n      if (/[\\]}\\)]/.test(ch)) {\n        state.prev = true;\n        return null;\n      }\n      if (isNiladic.test(ch)) {\n        state.prev = false;\n        return \"niladic\";\n      }\n      if (/[¯\\d]/.test(ch)) {\n        if (state.func) {\n          state.func = false;\n          state.prev = false;\n        } else {\n          state.prev = true;\n        }\n        stream.eatWhile(/[\\w\\.]/);\n        return \"number\";\n      }\n      if (isOperator.test(ch)) {\n        return \"operator apl-\" + builtInOps[ch];\n      }\n      if (isArrow.test(ch)) {\n        return \"apl-arrow\";\n      }\n      if (isFunction.test(ch)) {\n        funcName = \"apl-\";\n        if (builtInFuncs[ch] != null) {\n          if (state.prev) {\n            funcName += builtInFuncs[ch][1];\n          } else {\n            funcName += builtInFuncs[ch][0];\n          }\n        }\n        state.func = true;\n        state.prev = false;\n        return \"function \" + funcName;\n      }\n      if (isComment.test(ch)) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n      if (ch === \"∘\" && stream.peek() === \".\") {\n        stream.next();\n        return \"function jot-dot\";\n      }\n      stream.eatWhile(/[\\w\\$_]/);\n      word = stream.current();\n      state.prev = true;\n      return \"keyword\";\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/apl\", \"apl\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/apl/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: APL mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"./apl.js\"></script>\n<style>\n\t.CodeMirror { border: 2px inset #dee; }\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">APL</a>\n  </ul>\n</div>\n\n<article>\n<h2>APL mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n⍝ Conway's game of life\n\n⍝ This example was inspired by the impressive demo at\n⍝ http://www.youtube.com/watch?v=a9xAKttWgP4\n\n⍝ Create a matrix:\n⍝     0 1 1\n⍝     1 1 0\n⍝     0 1 0\ncreature ← (3 3 ⍴ ⍳ 9) ∈ 1 2 3 4 7   ⍝ Original creature from demo\ncreature ← (3 3 ⍴ ⍳ 9) ∈ 1 3 6 7 8   ⍝ Glider\n\n⍝ Place the creature on a larger board, near the centre\nboard ← ¯1 ⊖ ¯2 ⌽ 5 7 ↑ creature\n\n⍝ A function to move from one generation to the next\nlife ← {∨/ 1 ⍵ ∧ 3 4 = ⊂+/ +⌿ 1 0 ¯1 ∘.⊖ 1 0 ¯1 ⌽¨ ⊂⍵}\n\n⍝ Compute n-th generation and format it as a\n⍝ character matrix\ngen ← {' #'[(life ⍣ ⍵) board]}\n\n⍝ Show first three generations\n(gen 1) (gen 2) (gen 3)\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/apl\"\n      });\n    </script>\n\n    <p>Simple mode that tries to handle APL as well as it can.</p>\n    <p>It attempts to label functions/operators based upon\n    monadic/dyadic usage (but this is far from fully fleshed out).\n    This means there are meaningful classnames so hover states can\n    have popups etc.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/apl</code> (APL code)</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/asterisk/asterisk.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/*\n * =====================================================================================\n *\n *       Filename:  mode/asterisk/asterisk.js\n *\n *    Description:  CodeMirror mode for Asterisk dialplan\n *\n *        Created:  05/17/2012 09:20:25 PM\n *       Revision:  none\n *\n *         Author:  Stas Kobzar (stas@modulis.ca),\n *        Company:  Modulis.ca Inc.\n *\n * =====================================================================================\n */\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"asterisk\", function() {\n  var atoms    = [\"exten\", \"same\", \"include\",\"ignorepat\",\"switch\"],\n      dpcmd    = [\"#include\",\"#exec\"],\n      apps     = [\n                  \"addqueuemember\",\"adsiprog\",\"aelsub\",\"agentlogin\",\"agentmonitoroutgoing\",\"agi\",\n                  \"alarmreceiver\",\"amd\",\"answer\",\"authenticate\",\"background\",\"backgrounddetect\",\n                  \"bridge\",\"busy\",\"callcompletioncancel\",\"callcompletionrequest\",\"celgenuserevent\",\n                  \"changemonitor\",\"chanisavail\",\"channelredirect\",\"chanspy\",\"clearhash\",\"confbridge\",\n                  \"congestion\",\"continuewhile\",\"controlplayback\",\"dahdiacceptr2call\",\"dahdibarge\",\n                  \"dahdiras\",\"dahdiscan\",\"dahdisendcallreroutingfacility\",\"dahdisendkeypadfacility\",\n                  \"datetime\",\"dbdel\",\"dbdeltree\",\"deadagi\",\"dial\",\"dictate\",\"directory\",\"disa\",\n                  \"dumpchan\",\"eagi\",\"echo\",\"endwhile\",\"exec\",\"execif\",\"execiftime\",\"exitwhile\",\"extenspy\",\n                  \"externalivr\",\"festival\",\"flash\",\"followme\",\"forkcdr\",\"getcpeid\",\"gosub\",\"gosubif\",\n                  \"goto\",\"gotoif\",\"gotoiftime\",\"hangup\",\"iax2provision\",\"ices\",\"importvar\",\"incomplete\",\n                  \"ivrdemo\",\"jabberjoin\",\"jabberleave\",\"jabbersend\",\"jabbersendgroup\",\"jabberstatus\",\n                  \"jack\",\"log\",\"macro\",\"macroexclusive\",\"macroexit\",\"macroif\",\"mailboxexists\",\"meetme\",\n                  \"meetmeadmin\",\"meetmechanneladmin\",\"meetmecount\",\"milliwatt\",\"minivmaccmess\",\"minivmdelete\",\n                  \"minivmgreet\",\"minivmmwi\",\"minivmnotify\",\"minivmrecord\",\"mixmonitor\",\"monitor\",\"morsecode\",\n                  \"mp3player\",\"mset\",\"musiconhold\",\"nbscat\",\"nocdr\",\"noop\",\"odbc\",\"odbc\",\"odbcfinish\",\n                  \"originate\",\"ospauth\",\"ospfinish\",\"osplookup\",\"ospnext\",\"page\",\"park\",\"parkandannounce\",\n                  \"parkedcall\",\"pausemonitor\",\"pausequeuemember\",\"pickup\",\"pickupchan\",\"playback\",\"playtones\",\n                  \"privacymanager\",\"proceeding\",\"progress\",\"queue\",\"queuelog\",\"raiseexception\",\"read\",\"readexten\",\n                  \"readfile\",\"receivefax\",\"receivefax\",\"receivefax\",\"record\",\"removequeuemember\",\n                  \"resetcdr\",\"retrydial\",\"return\",\"ringing\",\"sayalpha\",\"saycountedadj\",\"saycountednoun\",\n                  \"saycountpl\",\"saydigits\",\"saynumber\",\"sayphonetic\",\"sayunixtime\",\"senddtmf\",\"sendfax\",\n                  \"sendfax\",\"sendfax\",\"sendimage\",\"sendtext\",\"sendurl\",\"set\",\"setamaflags\",\n                  \"setcallerpres\",\"setmusiconhold\",\"sipaddheader\",\"sipdtmfmode\",\"sipremoveheader\",\"skel\",\n                  \"slastation\",\"slatrunk\",\"sms\",\"softhangup\",\"speechactivategrammar\",\"speechbackground\",\n                  \"speechcreate\",\"speechdeactivategrammar\",\"speechdestroy\",\"speechloadgrammar\",\"speechprocessingsound\",\n                  \"speechstart\",\"speechunloadgrammar\",\"stackpop\",\"startmusiconhold\",\"stopmixmonitor\",\"stopmonitor\",\n                  \"stopmusiconhold\",\"stopplaytones\",\"system\",\"testclient\",\"testserver\",\"transfer\",\"tryexec\",\n                  \"trysystem\",\"unpausemonitor\",\"unpausequeuemember\",\"userevent\",\"verbose\",\"vmauthenticate\",\n                  \"vmsayname\",\"voicemail\",\"voicemailmain\",\"wait\",\"waitexten\",\"waitfornoise\",\"waitforring\",\n                  \"waitforsilence\",\"waitmusiconhold\",\"waituntil\",\"while\",\"zapateller\"\n                 ];\n\n  function basicToken(stream,state){\n    var cur = '';\n    var ch  = '';\n    ch = stream.next();\n    // comment\n    if(ch == \";\") {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n    // context\n    if(ch == '[') {\n      stream.skipTo(']');\n      stream.eat(']');\n      return \"header\";\n    }\n    // string\n    if(ch == '\"') {\n      stream.skipTo('\"');\n      return \"string\";\n    }\n    if(ch == \"'\") {\n      stream.skipTo(\"'\");\n      return \"string-2\";\n    }\n    // dialplan commands\n    if(ch == '#') {\n      stream.eatWhile(/\\w/);\n      cur = stream.current();\n      if(dpcmd.indexOf(cur) !== -1) {\n        stream.skipToEnd();\n        return \"strong\";\n      }\n    }\n    // application args\n    if(ch == '$'){\n      var ch1 = stream.peek();\n      if(ch1 == '{'){\n        stream.skipTo('}');\n        stream.eat('}');\n        return \"variable-3\";\n      }\n    }\n    // extension\n    stream.eatWhile(/\\w/);\n    cur = stream.current();\n    if(atoms.indexOf(cur) !== -1) {\n      state.extenStart = true;\n      switch(cur) {\n        case 'same': state.extenSame = true; break;\n        case 'include':\n        case 'switch':\n        case 'ignorepat':\n          state.extenInclude = true;break;\n        default:break;\n      }\n      return \"atom\";\n    }\n  }\n\n  return {\n    startState: function() {\n      return {\n        extenStart: false,\n        extenSame:  false,\n        extenInclude: false,\n        extenExten: false,\n        extenPriority: false,\n        extenApplication: false\n      };\n    },\n    token: function(stream, state) {\n\n      var cur = '';\n      var ch  = '';\n      if(stream.eatSpace()) return null;\n      // extension started\n      if(state.extenStart){\n        stream.eatWhile(/[^\\s]/);\n        cur = stream.current();\n        if(/^=>?$/.test(cur)){\n          state.extenExten = true;\n          state.extenStart = false;\n          return \"strong\";\n        } else {\n          state.extenStart = false;\n          stream.skipToEnd();\n          return \"error\";\n        }\n      } else if(state.extenExten) {\n        // set exten and priority\n        state.extenExten = false;\n        state.extenPriority = true;\n        stream.eatWhile(/[^,]/);\n        if(state.extenInclude) {\n          stream.skipToEnd();\n          state.extenPriority = false;\n          state.extenInclude = false;\n        }\n        if(state.extenSame) {\n          state.extenPriority = false;\n          state.extenSame = false;\n          state.extenApplication = true;\n        }\n        return \"tag\";\n      } else if(state.extenPriority) {\n        state.extenPriority = false;\n        state.extenApplication = true;\n        ch = stream.next(); // get comma\n        if(state.extenSame) return null;\n        stream.eatWhile(/[^,]/);\n        return \"number\";\n      } else if(state.extenApplication) {\n        stream.eatWhile(/,/);\n        cur = stream.current();\n        if(cur === ',') return null;\n        stream.eatWhile(/\\w/);\n        cur = stream.current().toLowerCase();\n        state.extenApplication = false;\n        if(apps.indexOf(cur) !== -1){\n          return \"def strong\";\n        }\n      } else{\n        return basicToken(stream,state);\n      }\n\n      return null;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-asterisk\", \"asterisk\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/asterisk/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Asterisk dialplan mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"asterisk.js\"></script>\n<style>\n      .CodeMirror {border: 1px solid #999;}\n      .cm-s-default span.cm-arrow { color: red; }\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Asterisk dialplan</a>\n  </ul>\n</div>\n\n<article>\n<h2>Asterisk dialplan mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n; extensions.conf - the Asterisk dial plan\n;\n\n[general]\n;\n; If static is set to no, or omitted, then the pbx_config will rewrite\n; this file when extensions are modified.  Remember that all comments\n; made in the file will be lost when that happens.\nstatic=yes\n\n#include \"/etc/asterisk/additional_general.conf\n\n[iaxprovider]\nswitch => IAX2/user:[key]@myserver/mycontext\n\n[dynamic]\n#exec /usr/bin/dynamic-peers.pl\n\n[trunkint]\n;\n; International long distance through trunk\n;\nexten => _9011.,1,Macro(dundi-e164,${EXTEN:4})\nexten => _9011.,n,Dial(${GLOBAL(TRUNK)}/${FILTER(0-9,${EXTEN:${GLOBAL(TRUNKMSD)}})})\n\n[local]\n;\n; Master context for local, toll-free, and iaxtel calls only\n;\nignorepat => 9\ninclude => default\n\n[demo]\ninclude => stdexten\n;\n; We start with what to do when a call first comes in.\n;\nexten => s,1,Wait(1)\t\t\t; Wait a second, just for fun\nsame  => n,Answer\t\t\t; Answer the line\nsame  => n,Set(TIMEOUT(digit)=5)\t; Set Digit Timeout to 5 seconds\nsame  => n,Set(TIMEOUT(response)=10)\t; Set Response Timeout to 10 seconds\nsame  => n(restart),BackGround(demo-congrats)\t; Play a congratulatory message\nsame  => n(instruct),BackGround(demo-instruct)\t; Play some instructions\nsame  => n,WaitExten\t\t\t; Wait for an extension to be dialed.\n\nexten => 2,1,BackGround(demo-moreinfo)\t; Give some more information.\nexten => 2,n,Goto(s,instruct)\n\nexten => 3,1,Set(LANGUAGE()=fr)\t\t; Set language to french\nexten => 3,n,Goto(s,restart)\t\t; Start with the congratulations\n\nexten => 1000,1,Goto(default,s,1)\n;\n; We also create an example user, 1234, who is on the console and has\n; voicemail, etc.\n;\nexten => 1234,1,Playback(transfer,skip)\t\t; \"Please hold while...\"\n\t\t\t\t\t; (but skip if channel is not up)\nexten => 1234,n,Gosub(${EXTEN},stdexten(${GLOBAL(CONSOLE)}))\nexten => 1234,n,Goto(default,s,1)\t\t; exited Voicemail\n\nexten => 1235,1,Voicemail(1234,u)\t\t; Right to voicemail\n\nexten => 1236,1,Dial(Console/dsp)\t\t; Ring forever\nexten => 1236,n,Voicemail(1234,b)\t\t; Unless busy\n\n;\n; # for when they're done with the demo\n;\nexten => #,1,Playback(demo-thanks)\t; \"Thanks for trying the demo\"\nexten => #,n,Hangup\t\t\t; Hang them up.\n\n;\n; A timeout and \"invalid extension rule\"\n;\nexten => t,1,Goto(#,1)\t\t\t; If they take too long, give up\nexten => i,1,Playback(invalid)\t\t; \"That's not valid, try again\"\n\n;\n; Create an extension, 500, for dialing the\n; Asterisk demo.\n;\nexten => 500,1,Playback(demo-abouttotry); Let them know what's going on\nexten => 500,n,Dial(IAX2/guest@pbx.digium.com/s@default)\t; Call the Asterisk demo\nexten => 500,n,Playback(demo-nogo)\t; Couldn't connect to the demo site\nexten => 500,n,Goto(s,6)\t\t; Return to the start over message.\n\n;\n; Create an extension, 600, for evaluating echo latency.\n;\nexten => 600,1,Playback(demo-echotest)\t; Let them know what's going on\nexten => 600,n,Echo\t\t\t; Do the echo test\nexten => 600,n,Playback(demo-echodone)\t; Let them know it's over\nexten => 600,n,Goto(s,6)\t\t; Start over\n\n;\n;\tYou can use the Macro Page to intercom a individual user\nexten => 76245,1,Macro(page,SIP/Grandstream1)\n; or if your peernames are the same as extensions\nexten => _7XXX,1,Macro(page,SIP/${EXTEN})\n;\n;\n; System Wide Page at extension 7999\n;\nexten => 7999,1,Set(TIMEOUT(absolute)=60)\nexten => 7999,2,Page(Local/Grandstream1@page&Local/Xlite1@page&Local/1234@page/n,d)\n\n; Give voicemail at extension 8500\n;\nexten => 8500,1,VoicemailMain\nexten => 8500,n,Goto(s,6)\n\n    </textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: \"text/x-asterisk\",\n        matchBrackets: true,\n        lineNumber: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-asterisk</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/clike/clike.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"clike\", function(config, parserConfig) {\n  var indentUnit = config.indentUnit,\n      statementIndentUnit = parserConfig.statementIndentUnit || indentUnit,\n      dontAlignCalls = parserConfig.dontAlignCalls,\n      keywords = parserConfig.keywords || {},\n      builtin = parserConfig.builtin || {},\n      blockKeywords = parserConfig.blockKeywords || {},\n      atoms = parserConfig.atoms || {},\n      hooks = parserConfig.hooks || {},\n      multiLineStrings = parserConfig.multiLineStrings,\n      indentStatements = parserConfig.indentStatements !== false;\n  var isOperatorChar = /[+\\-*&%=<>!?|\\/]/;\n\n  var curPunc;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (hooks[ch]) {\n      var result = hooks[ch](stream, state);\n      if (result !== false) return result;\n    }\n    if (ch == '\"' || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      return \"number\";\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        state.tokenize = tokenComment;\n        return tokenComment(stream, state);\n      }\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n    }\n    if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_\\xa1-\\uffff]/);\n    var cur = stream.current();\n    if (keywords.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"keyword\";\n    }\n    if (builtin.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"builtin\";\n    }\n    if (atoms.propertyIsEnumerable(cur)) return \"atom\";\n    return \"variable\";\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {end = true; break;}\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !(escaped || multiLineStrings))\n        state.tokenize = null;\n      return \"string\";\n    };\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = null;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function Context(indented, column, type, align, prev) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.align = align;\n    this.prev = prev;\n  }\n  function pushContext(state, col, type) {\n    var indent = state.indented;\n    if (state.context && state.context.type == \"statement\")\n      indent = state.context.indented;\n    return state.context = new Context(indent, col, type, null, state.context);\n  }\n  function popContext(state) {\n    var t = state.context.type;\n    if (t == \")\" || t == \"]\" || t == \"}\")\n      state.indented = state.context.indented;\n    return state.context = state.context.prev;\n  }\n\n  // Interface\n\n  return {\n    startState: function(basecolumn) {\n      return {\n        tokenize: null,\n        context: new Context((basecolumn || 0) - indentUnit, 0, \"top\", false),\n        indented: 0,\n        startOfLine: true\n      };\n    },\n\n    token: function(stream, state) {\n      var ctx = state.context;\n      if (stream.sol()) {\n        if (ctx.align == null) ctx.align = false;\n        state.indented = stream.indentation();\n        state.startOfLine = true;\n      }\n      if (stream.eatSpace()) return null;\n      curPunc = null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style == \"comment\" || style == \"meta\") return style;\n      if (ctx.align == null) ctx.align = true;\n\n      if ((curPunc == \";\" || curPunc == \":\" || curPunc == \",\") && ctx.type == \"statement\") popContext(state);\n      else if (curPunc == \"{\") pushContext(state, stream.column(), \"}\");\n      else if (curPunc == \"[\") pushContext(state, stream.column(), \"]\");\n      else if (curPunc == \"(\") pushContext(state, stream.column(), \")\");\n      else if (curPunc == \"}\") {\n        while (ctx.type == \"statement\") ctx = popContext(state);\n        if (ctx.type == \"}\") ctx = popContext(state);\n        while (ctx.type == \"statement\") ctx = popContext(state);\n      }\n      else if (curPunc == ctx.type) popContext(state);\n      else if (indentStatements &&\n               (((ctx.type == \"}\" || ctx.type == \"top\") && curPunc != ';') ||\n                (ctx.type == \"statement\" && curPunc == \"newstatement\")))\n        pushContext(state, stream.column(), \"statement\");\n      state.startOfLine = false;\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != tokenBase && state.tokenize != null) return CodeMirror.Pass;\n      var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);\n      if (ctx.type == \"statement\" && firstChar == \"}\") ctx = ctx.prev;\n      var closing = firstChar == ctx.type;\n      if (ctx.type == \"statement\") return ctx.indented + (firstChar == \"{\" ? 0 : statementIndentUnit);\n      else if (ctx.align && (!dontAlignCalls || ctx.type != \")\")) return ctx.column + (closing ? 0 : 1);\n      else if (ctx.type == \")\" && !closing) return ctx.indented + statementIndentUnit;\n      else return ctx.indented + (closing ? 0 : indentUnit);\n    },\n\n    electricChars: \"{}\",\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\",\n    lineComment: \"//\",\n    fold: \"brace\"\n  };\n});\n\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n  var cKeywords = \"auto if break int case long char register continue return default short do sizeof \" +\n    \"double static else struct entry switch extern typedef float union for unsigned \" +\n    \"goto while enum void const signed volatile\";\n\n  function cppHook(stream, state) {\n    if (!state.startOfLine) return false;\n    for (;;) {\n      if (stream.skipTo(\"\\\\\")) {\n        stream.next();\n        if (stream.eol()) {\n          state.tokenize = cppHook;\n          break;\n        }\n      } else {\n        stream.skipToEnd();\n        state.tokenize = null;\n        break;\n      }\n    }\n    return \"meta\";\n  }\n\n  function cpp11StringHook(stream, state) {\n    stream.backUp(1);\n    // Raw strings.\n    if (stream.match(/(R|u8R|uR|UR|LR)/)) {\n      var match = stream.match(/\"([^\\s\\\\()]{0,16})\\(/);\n      if (!match) {\n        return false;\n      }\n      state.cpp11RawStringDelim = match[1];\n      state.tokenize = tokenRawString;\n      return tokenRawString(stream, state);\n    }\n    // Unicode strings/chars.\n    if (stream.match(/(u8|u|U|L)/)) {\n      if (stream.match(/[\"']/, /* eat */ false)) {\n        return \"string\";\n      }\n      return false;\n    }\n    // Ignore this hook.\n    stream.next();\n    return false;\n  }\n\n  // C#-style strings where \"\" escapes a quote.\n  function tokenAtString(stream, state) {\n    var next;\n    while ((next = stream.next()) != null) {\n      if (next == '\"' && !stream.eat('\"')) {\n        state.tokenize = null;\n        break;\n      }\n    }\n    return \"string\";\n  }\n\n  // C++11 raw string literal is <prefix>\"<delim>( anything )<delim>\", where\n  // <delim> can be a string up to 16 characters long.\n  function tokenRawString(stream, state) {\n    // Escape characters that have special regex meanings.\n    var delim = state.cpp11RawStringDelim.replace(/[^\\w\\s]/g, '\\\\$&');\n    var match = stream.match(new RegExp(\".*?\\\\)\" + delim + '\"'));\n    if (match)\n      state.tokenize = null;\n    else\n      stream.skipToEnd();\n    return \"string\";\n  }\n\n  function def(mimes, mode) {\n    if (typeof mimes == \"string\") mimes = [mimes];\n    var words = [];\n    function add(obj) {\n      if (obj) for (var prop in obj) if (obj.hasOwnProperty(prop))\n        words.push(prop);\n    }\n    add(mode.keywords);\n    add(mode.builtin);\n    add(mode.atoms);\n    if (words.length) {\n      mode.helperType = mimes[0];\n      CodeMirror.registerHelper(\"hintWords\", mimes[0], words);\n    }\n\n    for (var i = 0; i < mimes.length; ++i)\n      CodeMirror.defineMIME(mimes[i], mode);\n  }\n\n  def([\"text/x-csrc\", \"text/x-c\", \"text/x-chdr\"], {\n    name: \"clike\",\n    keywords: words(cKeywords),\n    blockKeywords: words(\"case do else for if switch while struct\"),\n    atoms: words(\"null\"),\n    hooks: {\"#\": cppHook},\n    modeProps: {fold: [\"brace\", \"include\"]}\n  });\n\n  def([\"text/x-c++src\", \"text/x-c++hdr\"], {\n    name: \"clike\",\n    keywords: words(cKeywords + \" asm dynamic_cast namespace reinterpret_cast try bool explicit new \" +\n                    \"static_cast typeid catch operator template typename class friend private \" +\n                    \"this using const_cast inline public throw virtual delete mutable protected \" +\n                    \"wchar_t alignas alignof constexpr decltype nullptr noexcept thread_local final \" +\n                    \"static_assert override\"),\n    blockKeywords: words(\"catch class do else finally for if struct switch try while\"),\n    atoms: words(\"true false null\"),\n    hooks: {\n      \"#\": cppHook,\n      \"u\": cpp11StringHook,\n      \"U\": cpp11StringHook,\n      \"L\": cpp11StringHook,\n      \"R\": cpp11StringHook\n    },\n    modeProps: {fold: [\"brace\", \"include\"]}\n  });\n\n  def(\"text/x-java\", {\n    name: \"clike\",\n    keywords: words(\"abstract assert boolean break byte case catch char class const continue default \" +\n                    \"do double else enum extends final finally float for goto if implements import \" +\n                    \"instanceof int interface long native new package private protected public \" +\n                    \"return short static strictfp super switch synchronized this throw throws transient \" +\n                    \"try void volatile while\"),\n    blockKeywords: words(\"catch class do else finally for if switch try while\"),\n    atoms: words(\"true false null\"),\n    hooks: {\n      \"@\": function(stream) {\n        stream.eatWhile(/[\\w\\$_]/);\n        return \"meta\";\n      }\n    },\n    modeProps: {fold: [\"brace\", \"import\"]}\n  });\n\n  def(\"text/x-csharp\", {\n    name: \"clike\",\n    keywords: words(\"abstract as base break case catch checked class const continue\" +\n                    \" default delegate do else enum event explicit extern finally fixed for\" +\n                    \" foreach goto if implicit in interface internal is lock namespace new\" +\n                    \" operator out override params private protected public readonly ref return sealed\" +\n                    \" sizeof stackalloc static struct switch this throw try typeof unchecked\" +\n                    \" unsafe using virtual void volatile while add alias ascending descending dynamic from get\" +\n                    \" global group into join let orderby partial remove select set value var yield\"),\n    blockKeywords: words(\"catch class do else finally for foreach if struct switch try while\"),\n    builtin: words(\"Boolean Byte Char DateTime DateTimeOffset Decimal Double\" +\n                    \" Guid Int16 Int32 Int64 Object SByte Single String TimeSpan UInt16 UInt32\" +\n                    \" UInt64 bool byte char decimal double short int long object\"  +\n                    \" sbyte float string ushort uint ulong\"),\n    atoms: words(\"true false null\"),\n    hooks: {\n      \"@\": function(stream, state) {\n        if (stream.eat('\"')) {\n          state.tokenize = tokenAtString;\n          return tokenAtString(stream, state);\n        }\n        stream.eatWhile(/[\\w\\$_]/);\n        return \"meta\";\n      }\n    }\n  });\n\n  function tokenTripleString(stream, state) {\n    var escaped = false;\n    while (!stream.eol()) {\n      if (!escaped && stream.match('\"\"\"')) {\n        state.tokenize = null;\n        break;\n      }\n      escaped = stream.next() != \"\\\\\" && !escaped;\n    }\n    return \"string\";\n  }\n\n  def(\"text/x-scala\", {\n    name: \"clike\",\n    keywords: words(\n\n      /* scala */\n      \"abstract case catch class def do else extends false final finally for forSome if \" +\n      \"implicit import lazy match new null object override package private protected return \" +\n      \"sealed super this throw trait try trye type val var while with yield _ : = => <- <: \" +\n      \"<% >: # @ \" +\n\n      /* package scala */\n      \"assert assume require print println printf readLine readBoolean readByte readShort \" +\n      \"readChar readInt readLong readFloat readDouble \" +\n\n      \"AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either \" +\n      \"Enumeration Equiv Error Exception Fractional Function IndexedSeq Integral Iterable \" +\n      \"Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering \" +\n      \"Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder \" +\n      \"StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector :: #:: \" +\n\n      /* package java.lang */\n      \"Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable \" +\n      \"Compiler Double Exception Float Integer Long Math Number Object Package Pair Process \" +\n      \"Runtime Runnable SecurityManager Short StackTraceElement StrictMath String \" +\n      \"StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void\"\n    ),\n    multiLineStrings: true,\n    blockKeywords: words(\"catch class do else finally for forSome if match switch try while\"),\n    atoms: words(\"true false null\"),\n    indentStatements: false,\n    hooks: {\n      \"@\": function(stream) {\n        stream.eatWhile(/[\\w\\$_]/);\n        return \"meta\";\n      },\n      '\"': function(stream, state) {\n        if (!stream.match('\"\"')) return false;\n        state.tokenize = tokenTripleString;\n        return state.tokenize(stream, state);\n      }\n    }\n  });\n\n  def([\"x-shader/x-vertex\", \"x-shader/x-fragment\"], {\n    name: \"clike\",\n    keywords: words(\"float int bool void \" +\n                    \"vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 \" +\n                    \"mat2 mat3 mat4 \" +\n                    \"sampler1D sampler2D sampler3D samplerCube \" +\n                    \"sampler1DShadow sampler2DShadow\" +\n                    \"const attribute uniform varying \" +\n                    \"break continue discard return \" +\n                    \"for while do if else struct \" +\n                    \"in out inout\"),\n    blockKeywords: words(\"for while do if else struct\"),\n    builtin: words(\"radians degrees sin cos tan asin acos atan \" +\n                    \"pow exp log exp2 sqrt inversesqrt \" +\n                    \"abs sign floor ceil fract mod min max clamp mix step smootstep \" +\n                    \"length distance dot cross normalize ftransform faceforward \" +\n                    \"reflect refract matrixCompMult \" +\n                    \"lessThan lessThanEqual greaterThan greaterThanEqual \" +\n                    \"equal notEqual any all not \" +\n                    \"texture1D texture1DProj texture1DLod texture1DProjLod \" +\n                    \"texture2D texture2DProj texture2DLod texture2DProjLod \" +\n                    \"texture3D texture3DProj texture3DLod texture3DProjLod \" +\n                    \"textureCube textureCubeLod \" +\n                    \"shadow1D shadow2D shadow1DProj shadow2DProj \" +\n                    \"shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod \" +\n                    \"dFdx dFdy fwidth \" +\n                    \"noise1 noise2 noise3 noise4\"),\n    atoms: words(\"true false \" +\n                \"gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex \" +\n                \"gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 \" +\n                \"gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 \" +\n                \"gl_FogCoord \" +\n                \"gl_Position gl_PointSize gl_ClipVertex \" +\n                \"gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor \" +\n                \"gl_TexCoord gl_FogFragCoord \" +\n                \"gl_FragCoord gl_FrontFacing \" +\n                \"gl_FragColor gl_FragData gl_FragDepth \" +\n                \"gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix \" +\n                \"gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse \" +\n                \"gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse \" +\n                \"gl_TexureMatrixTranspose gl_ModelViewMatrixInverseTranspose \" +\n                \"gl_ProjectionMatrixInverseTranspose \" +\n                \"gl_ModelViewProjectionMatrixInverseTranspose \" +\n                \"gl_TextureMatrixInverseTranspose \" +\n                \"gl_NormalScale gl_DepthRange gl_ClipPlane \" +\n                \"gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel \" +\n                \"gl_FrontLightModelProduct gl_BackLightModelProduct \" +\n                \"gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ \" +\n                \"gl_FogParameters \" +\n                \"gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords \" +\n                \"gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats \" +\n                \"gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits \" +\n                \"gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits \" +\n                \"gl_MaxDrawBuffers\"),\n    hooks: {\"#\": cppHook},\n    modeProps: {fold: [\"brace\", \"include\"]}\n  });\n\n  def(\"text/x-nesc\", {\n    name: \"clike\",\n    keywords: words(cKeywords + \"as atomic async call command component components configuration event generic \" +\n                    \"implementation includes interface module new norace nx_struct nx_union post provides \" +\n                    \"signal task uses abstract extends\"),\n    blockKeywords: words(\"case do else for if switch while struct\"),\n    atoms: words(\"null\"),\n    hooks: {\"#\": cppHook},\n    modeProps: {fold: [\"brace\", \"include\"]}\n  });\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/clike/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: C-like mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<link rel=\"stylesheet\" href=\"../../addon/hint/show-hint.css\">\n<script src=\"../../addon/hint/show-hint.js\"></script>\n<script src=\"clike.js\"></script>\n<style>.CodeMirror {border: 2px inset #dee;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">C-like</a>\n  </ul>\n</div>\n\n<article>\n<h2>C-like mode</h2>\n\n<div><textarea id=\"c-code\">\n/* C demo code */\n\n#include <zmq.h>\n#include <pthread.h>\n#include <semaphore.h>\n#include <time.h>\n#include <stdio.h>\n#include <fcntl.h>\n#include <malloc.h>\n\ntypedef struct {\n  void* arg_socket;\n  zmq_msg_t* arg_msg;\n  char* arg_string;\n  unsigned long arg_len;\n  int arg_int, arg_command;\n\n  int signal_fd;\n  int pad;\n  void* context;\n  sem_t sem;\n} acl_zmq_context;\n\n#define p(X) (context->arg_##X)\n\nvoid* zmq_thread(void* context_pointer) {\n  acl_zmq_context* context = (acl_zmq_context*)context_pointer;\n  char ok = 'K', err = 'X';\n  int res;\n\n  while (1) {\n    while ((res = sem_wait(&amp;context->sem)) == EINTR);\n    if (res) {write(context->signal_fd, &amp;err, 1); goto cleanup;}\n    switch(p(command)) {\n    case 0: goto cleanup;\n    case 1: p(socket) = zmq_socket(context->context, p(int)); break;\n    case 2: p(int) = zmq_close(p(socket)); break;\n    case 3: p(int) = zmq_bind(p(socket), p(string)); break;\n    case 4: p(int) = zmq_connect(p(socket), p(string)); break;\n    case 5: p(int) = zmq_getsockopt(p(socket), p(int), (void*)p(string), &amp;p(len)); break;\n    case 6: p(int) = zmq_setsockopt(p(socket), p(int), (void*)p(string), p(len)); break;\n    case 7: p(int) = zmq_send(p(socket), p(msg), p(int)); break;\n    case 8: p(int) = zmq_recv(p(socket), p(msg), p(int)); break;\n    case 9: p(int) = zmq_poll(p(socket), p(int), p(len)); break;\n    }\n    p(command) = errno;\n    write(context->signal_fd, &amp;ok, 1);\n  }\n cleanup:\n  close(context->signal_fd);\n  free(context_pointer);\n  return 0;\n}\n\nvoid* zmq_thread_init(void* zmq_context, int signal_fd) {\n  acl_zmq_context* context = malloc(sizeof(acl_zmq_context));\n  pthread_t thread;\n\n  context->context = zmq_context;\n  context->signal_fd = signal_fd;\n  sem_init(&amp;context->sem, 1, 0);\n  pthread_create(&amp;thread, 0, &amp;zmq_thread, context);\n  pthread_detach(thread);\n  return context;\n}\n</textarea></div>\n\n<h2>C++ example</h2>\n\n<div><textarea id=\"cpp-code\">\n#include <iostream>\n#include \"mystuff/util.h\"\n\nnamespace {\nenum Enum {\n  VAL1, VAL2, VAL3\n};\n\nchar32_t unicode_string = U\"\\U0010FFFF\";\nstring raw_string = R\"delim(anything\nyou\nwant)delim\";\n\nint Helper(const MyType& param) {\n  return 0;\n}\n} // namespace\n\nclass ForwardDec;\n\ntemplate <class T, class V>\nclass Class : public BaseClass {\n  const MyType<T, V> member_;\n\n public:\n  const MyType<T, V>& Method() const {\n    return member_;\n  }\n\n  void Method2(MyType<T, V>* value);\n}\n\ntemplate <class T, class V>\nvoid Class::Method2(MyType<T, V>* value) {\n  std::out << 1 >> method();\n  value->Method3(member_);\n  member_ = value;\n}\n</textarea></div>\n\n<h2>Java example</h2>\n\n<div><textarea id=\"java-code\">\nimport com.demo.util.MyType;\nimport com.demo.util.MyInterface;\n\npublic enum Enum {\n  VAL1, VAL2, VAL3\n}\n\npublic class Class<T, V> implements MyInterface {\n  public static final MyType<T, V> member;\n  \n  private class InnerClass {\n    public int zero() {\n      return 0;\n    }\n  }\n\n  @Override\n  public MyType method() {\n    return member;\n  }\n\n  public void method2(MyType<T, V> value) {\n    method();\n    value.method3();\n    member = value;\n  }\n}\n</textarea></div>\n\n<h2>Scala example</h2>\n\n<div><textarea id=\"scala-code\">\nobject FilterTest extends App {\n  def filter(xs: List[Int], threshold: Int) = {\n    def process(ys: List[Int]): List[Int] =\n      if (ys.isEmpty) ys\n      else if (ys.head < threshold) ys.head :: process(ys.tail)\n      else process(ys.tail)\n    process(xs)\n  }\n  println(filter(List(1, 9, 2, 8, 3, 7, 4), 5))\n}\n</textarea></div>\n\n    <script>\n      var cEditor = CodeMirror.fromTextArea(document.getElementById(\"c-code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-csrc\"\n      });\n      var cppEditor = CodeMirror.fromTextArea(document.getElementById(\"cpp-code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-c++src\"\n      });\n      var javaEditor = CodeMirror.fromTextArea(document.getElementById(\"java-code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-java\"\n      });\n      var scalaEditor = CodeMirror.fromTextArea(document.getElementById(\"scala-code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-scala\"\n      });\n      var mac = CodeMirror.keyMap.default == CodeMirror.keyMap.macDefault;\n      CodeMirror.keyMap.default[(mac ? \"Cmd\" : \"Ctrl\") + \"-Space\"] = \"autocomplete\";\n    </script>\n\n    <p>Simple mode that tries to handle C-like languages as well as it\n    can. Takes two configuration parameters: <code>keywords</code>, an\n    object whose property names are the keywords in the language,\n    and <code>useCPP</code>, which determines whether C preprocessor\n    directives are recognized.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-csrc</code>\n    (C), <code>text/x-c++src</code> (C++), <code>text/x-java</code>\n    (Java), <code>text/x-csharp</code> (C#),\n    <code>text/x-scala</code> (Scala), <code>text/x-vertex</code>\n    and <code>x-shader/x-fragment</code> (shader programs).</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/clike/scala.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Scala mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/ambiance.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"clike.js\"></script>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Scala</a>\n  </ul>\n</div>\n\n<article>\n<h2>Scala mode</h2>\n<form>\n<textarea id=\"code\" name=\"code\">\n\n  /*                     __                                               *\\\n  **     ________ ___   / /  ___     Scala API                            **\n  **    / __/ __// _ | / /  / _ |    (c) 2003-2011, LAMP/EPFL             **\n  **  __\\ \\/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **\n  ** /____/\\___/_/ |_/____/_/ | |                                         **\n  **                          |/                                          **\n  \\*                                                                      */\n\n  package scala.collection\n\n  import generic._\n  import mutable.{ Builder, ListBuffer }\n  import annotation.{tailrec, migration, bridge}\n  import annotation.unchecked.{ uncheckedVariance => uV }\n  import parallel.ParIterable\n\n  /** A template trait for traversable collections of type `Traversable[A]`.\n   *  \n   *  $traversableInfo\n   *  @define mutability\n   *  @define traversableInfo\n   *  This is a base trait of all kinds of $mutability Scala collections. It\n   *  implements the behavior common to all collections, in terms of a method\n   *  `foreach` with signature:\n   * {{{\n   *     def foreach[U](f: Elem => U): Unit\n   * }}}\n   *  Collection classes mixing in this trait provide a concrete \n   *  `foreach` method which traverses all the\n   *  elements contained in the collection, applying a given function to each.\n   *  They also need to provide a method `newBuilder`\n   *  which creates a builder for collections of the same kind.\n   *  \n   *  A traversable class might or might not have two properties: strictness\n   *  and orderedness. Neither is represented as a type.\n   *  \n   *  The instances of a strict collection class have all their elements\n   *  computed before they can be used as values. By contrast, instances of\n   *  a non-strict collection class may defer computation of some of their\n   *  elements until after the instance is available as a value.\n   *  A typical example of a non-strict collection class is a\n   *  <a href=\"../immutable/Stream.html\" target=\"ContentFrame\">\n   *  `scala.collection.immutable.Stream`</a>.\n   *  A more general class of examples are `TraversableViews`.\n   *  \n   *  If a collection is an instance of an ordered collection class, traversing\n   *  its elements with `foreach` will always visit elements in the\n   *  same order, even for different runs of the program. If the class is not\n   *  ordered, `foreach` can visit elements in different orders for\n   *  different runs (but it will keep the same order in the same run).'\n   * \n   *  A typical example of a collection class which is not ordered is a\n   *  `HashMap` of objects. The traversal order for hash maps will\n   *  depend on the hash codes of its elements, and these hash codes might\n   *  differ from one run to the next. By contrast, a `LinkedHashMap`\n   *  is ordered because it's `foreach` method visits elements in the\n   *  order they were inserted into the `HashMap`.\n   *\n   *  @author Martin Odersky\n   *  @version 2.8\n   *  @since   2.8\n   *  @tparam A    the element type of the collection\n   *  @tparam Repr the type of the actual collection containing the elements.\n   *\n   *  @define Coll Traversable\n   *  @define coll traversable collection\n   */\n  trait TraversableLike[+A, +Repr] extends HasNewBuilder[A, Repr] \n                                      with FilterMonadic[A, Repr]\n                                      with TraversableOnce[A]\n                                      with GenTraversableLike[A, Repr]\n                                      with Parallelizable[A, ParIterable[A]]\n  {\n    self =>\n\n    import Traversable.breaks._\n\n    /** The type implementing this traversable */\n    protected type Self = Repr\n\n    /** The collection of type $coll underlying this `TraversableLike` object.\n     *  By default this is implemented as the `TraversableLike` object itself,\n     *  but this can be overridden.\n     */\n    def repr: Repr = this.asInstanceOf[Repr]\n\n    /** The underlying collection seen as an instance of `$Coll`.\n     *  By default this is implemented as the current collection object itself,\n     *  but this can be overridden.\n     */\n    protected[this] def thisCollection: Traversable[A] = this.asInstanceOf[Traversable[A]]\n\n    /** A conversion from collections of type `Repr` to `$Coll` objects.\n     *  By default this is implemented as just a cast, but this can be overridden.\n     */\n    protected[this] def toCollection(repr: Repr): Traversable[A] = repr.asInstanceOf[Traversable[A]]\n\n    /** Creates a new builder for this collection type.\n     */\n    protected[this] def newBuilder: Builder[A, Repr]\n\n    protected[this] def parCombiner = ParIterable.newCombiner[A]\n\n    /** Applies a function `f` to all elements of this $coll.\n     *  \n     *    Note: this method underlies the implementation of most other bulk operations.\n     *    It's important to implement this method in an efficient way.\n     *  \n     *\n     *  @param  f   the function that is applied for its side-effect to every element.\n     *              The result of function `f` is discarded.\n     *              \n     *  @tparam  U  the type parameter describing the result of function `f`. \n     *              This result will always be ignored. Typically `U` is `Unit`,\n     *              but this is not necessary.\n     *\n     *  @usecase def foreach(f: A => Unit): Unit\n     */\n    def foreach[U](f: A => U): Unit\n\n    /** Tests whether this $coll is empty.\n     *\n     *  @return    `true` if the $coll contain no elements, `false` otherwise.\n     */\n    def isEmpty: Boolean = {\n      var result = true\n      breakable {\n        for (x <- this) {\n          result = false\n          break\n        }\n      }\n      result\n    }\n\n    /** Tests whether this $coll is known to have a finite size.\n     *  All strict collections are known to have finite size. For a non-strict collection\n     *  such as `Stream`, the predicate returns `true` if all elements have been computed.\n     *  It returns `false` if the stream is not yet evaluated to the end.\n     *\n     *  Note: many collection methods will not work on collections of infinite sizes. \n     *\n     *  @return  `true` if this collection is known to have finite size, `false` otherwise.\n     */\n    def hasDefiniteSize = true\n\n    def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n      val b = bf(repr)\n      if (that.isInstanceOf[IndexedSeqLike[_, _]]) b.sizeHint(this, that.seq.size)\n      b ++= thisCollection\n      b ++= that.seq\n      b.result\n    }\n\n    @bridge\n    def ++[B >: A, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That =\n      ++(that: GenTraversableOnce[B])(bf)\n\n    /** Concatenates this $coll with the elements of a traversable collection.\n     *  It differs from ++ in that the right operand determines the type of the\n     *  resulting collection rather than the left one.\n     * \n     *  @param that   the traversable to append.\n     *  @tparam B     the element type of the returned collection. \n     *  @tparam That  $thatinfo\n     *  @param bf     $bfinfo\n     *  @return       a new collection of type `That` which contains all elements\n     *                of this $coll followed by all elements of `that`.\n     * \n     *  @usecase def ++:[B](that: TraversableOnce[B]): $Coll[B]\n     *  \n     *  @return       a new $coll which contains all elements of this $coll\n     *                followed by all elements of `that`.\n     */\n    def ++:[B >: A, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n      val b = bf(repr)\n      if (that.isInstanceOf[IndexedSeqLike[_, _]]) b.sizeHint(this, that.size)\n      b ++= that\n      b ++= thisCollection\n      b.result\n    }\n\n    /** This overload exists because: for the implementation of ++: we should reuse\n     *  that of ++ because many collections override it with more efficient versions.\n     *  Since TraversableOnce has no '++' method, we have to implement that directly,\n     *  but Traversable and down can use the overload.\n     */\n    def ++:[B >: A, That](that: Traversable[B])(implicit bf: CanBuildFrom[Repr, B, That]): That =\n      (that ++ seq)(breakOut)\n\n    def map[B, That](f: A => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n      val b = bf(repr)\n      b.sizeHint(this) \n      for (x <- this) b += f(x)\n      b.result\n    }\n\n    def flatMap[B, That](f: A => GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n      val b = bf(repr)\n      for (x <- this) b ++= f(x).seq\n      b.result\n    }\n\n    /** Selects all elements of this $coll which satisfy a predicate.\n     *\n     *  @param p     the predicate used to test elements.\n     *  @return      a new $coll consisting of all elements of this $coll that satisfy the given\n     *               predicate `p`. The order of the elements is preserved.\n     */\n    def filter(p: A => Boolean): Repr = {\n      val b = newBuilder\n      for (x <- this) \n        if (p(x)) b += x\n      b.result\n    }\n\n    /** Selects all elements of this $coll which do not satisfy a predicate.\n     *\n     *  @param p     the predicate used to test elements.\n     *  @return      a new $coll consisting of all elements of this $coll that do not satisfy the given\n     *               predicate `p`. The order of the elements is preserved.\n     */\n    def filterNot(p: A => Boolean): Repr = filter(!p(_))\n\n    def collect[B, That](pf: PartialFunction[A, B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n      val b = bf(repr)\n      for (x <- this) if (pf.isDefinedAt(x)) b += pf(x)\n      b.result\n    }\n\n    /** Builds a new collection by applying an option-valued function to all\n     *  elements of this $coll on which the function is defined.\n     *\n     *  @param f      the option-valued function which filters and maps the $coll.\n     *  @tparam B     the element type of the returned collection.\n     *  @tparam That  $thatinfo\n     *  @param bf     $bfinfo\n     *  @return       a new collection of type `That` resulting from applying the option-valued function\n     *                `f` to each element and collecting all defined results.\n     *                The order of the elements is preserved.\n     *\n     *  @usecase def filterMap[B](f: A => Option[B]): $Coll[B]\n     *  \n     *  @param pf     the partial function which filters and maps the $coll.\n     *  @return       a new $coll resulting from applying the given option-valued function\n     *                `f` to each element and collecting all defined results.\n     *                The order of the elements is preserved.\n    def filterMap[B, That](f: A => Option[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n      val b = bf(repr)\n      for (x <- this) \n        f(x) match {\n          case Some(y) => b += y\n          case _ =>\n        }\n      b.result\n    }\n     */\n\n    /** Partitions this $coll in two ${coll}s according to a predicate.\n     *\n     *  @param p the predicate on which to partition.\n     *  @return  a pair of ${coll}s: the first $coll consists of all elements that \n     *           satisfy the predicate `p` and the second $coll consists of all elements\n     *           that don't. The relative order of the elements in the resulting ${coll}s\n     *           is the same as in the original $coll.\n     */\n    def partition(p: A => Boolean): (Repr, Repr) = {\n      val l, r = newBuilder\n      for (x <- this) (if (p(x)) l else r) += x\n      (l.result, r.result)\n    }\n\n    def groupBy[K](f: A => K): immutable.Map[K, Repr] = {\n      val m = mutable.Map.empty[K, Builder[A, Repr]]\n      for (elem <- this) {\n        val key = f(elem)\n        val bldr = m.getOrElseUpdate(key, newBuilder)\n        bldr += elem\n      }\n      val b = immutable.Map.newBuilder[K, Repr]\n      for ((k, v) <- m)\n        b += ((k, v.result))\n\n      b.result\n    }\n\n    /** Tests whether a predicate holds for all elements of this $coll.\n     *\n     *  $mayNotTerminateInf\n     *\n     *  @param   p     the predicate used to test elements.\n     *  @return        `true` if the given predicate `p` holds for all elements\n     *                 of this $coll, otherwise `false`.\n     */\n    def forall(p: A => Boolean): Boolean = {\n      var result = true\n      breakable {\n        for (x <- this)\n          if (!p(x)) { result = false; break }\n      }\n      result\n    }\n\n    /** Tests whether a predicate holds for some of the elements of this $coll.\n     *\n     *  $mayNotTerminateInf\n     *\n     *  @param   p     the predicate used to test elements.\n     *  @return        `true` if the given predicate `p` holds for some of the\n     *                 elements of this $coll, otherwise `false`.\n     */\n    def exists(p: A => Boolean): Boolean = {\n      var result = false\n      breakable {\n        for (x <- this)\n          if (p(x)) { result = true; break }\n      }\n      result\n    }\n\n    /** Finds the first element of the $coll satisfying a predicate, if any.\n     * \n     *  $mayNotTerminateInf\n     *  $orderDependent\n     *\n     *  @param p    the predicate used to test elements.\n     *  @return     an option value containing the first element in the $coll\n     *              that satisfies `p`, or `None` if none exists.\n     */\n    def find(p: A => Boolean): Option[A] = {\n      var result: Option[A] = None\n      breakable {\n        for (x <- this)\n          if (p(x)) { result = Some(x); break }\n      }\n      result\n    }\n\n    def scan[B >: A, That](z: B)(op: (B, B) => B)(implicit cbf: CanBuildFrom[Repr, B, That]): That = scanLeft(z)(op)\n\n    def scanLeft[B, That](z: B)(op: (B, A) => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n      val b = bf(repr)\n      b.sizeHint(this, 1)\n      var acc = z\n      b += acc\n      for (x <- this) { acc = op(acc, x); b += acc }\n      b.result\n    }\n\n    @migration(2, 9,\n      \"This scanRight definition has changed in 2.9.\\n\" +\n      \"The previous behavior can be reproduced with scanRight.reverse.\"\n    )\n    def scanRight[B, That](z: B)(op: (A, B) => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n      var scanned = List(z)\n      var acc = z\n      for (x <- reversed) {\n        acc = op(x, acc)\n        scanned ::= acc\n      }\n      val b = bf(repr)\n      for (elem <- scanned) b += elem\n      b.result\n    }\n\n    /** Selects the first element of this $coll.\n     *  $orderDependent\n     *  @return  the first element of this $coll.\n     *  @throws `NoSuchElementException` if the $coll is empty.\n     */\n    def head: A = {\n      var result: () => A = () => throw new NoSuchElementException\n      breakable {\n        for (x <- this) {\n          result = () => x\n          break\n        }\n      }\n      result()\n    }\n\n    /** Optionally selects the first element.\n     *  $orderDependent\n     *  @return  the first element of this $coll if it is nonempty, `None` if it is empty.\n     */\n    def headOption: Option[A] = if (isEmpty) None else Some(head)\n\n    /** Selects all elements except the first.\n     *  $orderDependent\n     *  @return  a $coll consisting of all elements of this $coll\n     *           except the first one.\n     *  @throws `UnsupportedOperationException` if the $coll is empty.\n     */ \n    override def tail: Repr = {\n      if (isEmpty) throw new UnsupportedOperationException(\"empty.tail\")\n      drop(1)\n    }\n\n    /** Selects the last element.\n      * $orderDependent\n      * @return The last element of this $coll.\n      * @throws NoSuchElementException If the $coll is empty.\n      */\n    def last: A = {\n      var lst = head\n      for (x <- this)\n        lst = x\n      lst\n    }\n\n    /** Optionally selects the last element.\n     *  $orderDependent\n     *  @return  the last element of this $coll$ if it is nonempty, `None` if it is empty.\n     */\n    def lastOption: Option[A] = if (isEmpty) None else Some(last)\n\n    /** Selects all elements except the last.\n     *  $orderDependent\n     *  @return  a $coll consisting of all elements of this $coll\n     *           except the last one.\n     *  @throws `UnsupportedOperationException` if the $coll is empty.\n     */\n    def init: Repr = {\n      if (isEmpty) throw new UnsupportedOperationException(\"empty.init\")\n      var lst = head\n      var follow = false\n      val b = newBuilder\n      b.sizeHint(this, -1)\n      for (x <- this.seq) {\n        if (follow) b += lst\n        else follow = true\n        lst = x\n      }\n      b.result\n    }\n\n    def take(n: Int): Repr = slice(0, n)\n\n    def drop(n: Int): Repr = \n      if (n <= 0) {\n        val b = newBuilder\n        b.sizeHint(this)\n        b ++= thisCollection result\n      }\n      else sliceWithKnownDelta(n, Int.MaxValue, -n)\n\n    def slice(from: Int, until: Int): Repr = sliceWithKnownBound(math.max(from, 0), until)\n\n    // Precondition: from >= 0, until > 0, builder already configured for building.\n    private[this] def sliceInternal(from: Int, until: Int, b: Builder[A, Repr]): Repr = {\n      var i = 0\n      breakable {\n        for (x <- this.seq) {\n          if (i >= from) b += x\n          i += 1\n          if (i >= until) break\n        }\n      }\n      b.result\n    }\n    // Precondition: from >= 0\n    private[scala] def sliceWithKnownDelta(from: Int, until: Int, delta: Int): Repr = {\n      val b = newBuilder\n      if (until <= from) b.result\n      else {\n        b.sizeHint(this, delta)\n        sliceInternal(from, until, b)\n      }\n    }\n    // Precondition: from >= 0\n    private[scala] def sliceWithKnownBound(from: Int, until: Int): Repr = {\n      val b = newBuilder\n      if (until <= from) b.result\n      else {\n        b.sizeHintBounded(until - from, this)      \n        sliceInternal(from, until, b)\n      }\n    }\n\n    def takeWhile(p: A => Boolean): Repr = {\n      val b = newBuilder\n      breakable {\n        for (x <- this) {\n          if (!p(x)) break\n          b += x\n        }\n      }\n      b.result\n    }\n\n    def dropWhile(p: A => Boolean): Repr = {\n      val b = newBuilder\n      var go = false\n      for (x <- this) {\n        if (!p(x)) go = true\n        if (go) b += x\n      }\n      b.result\n    }\n\n    def span(p: A => Boolean): (Repr, Repr) = {\n      val l, r = newBuilder\n      var toLeft = true\n      for (x <- this) {\n        toLeft = toLeft && p(x)\n        (if (toLeft) l else r) += x\n      }\n      (l.result, r.result)\n    }\n\n    def splitAt(n: Int): (Repr, Repr) = {\n      val l, r = newBuilder\n      l.sizeHintBounded(n, this)\n      if (n >= 0) r.sizeHint(this, -n)\n      var i = 0\n      for (x <- this) {\n        (if (i < n) l else r) += x\n        i += 1\n      }\n      (l.result, r.result)\n    }\n\n    /** Iterates over the tails of this $coll. The first value will be this\n     *  $coll and the final one will be an empty $coll, with the intervening\n     *  values the results of successive applications of `tail`.\n     *\n     *  @return   an iterator over all the tails of this $coll\n     *  @example  `List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)`\n     */  \n    def tails: Iterator[Repr] = iterateUntilEmpty(_.tail)\n\n    /** Iterates over the inits of this $coll. The first value will be this\n     *  $coll and the final one will be an empty $coll, with the intervening\n     *  values the results of successive applications of `init`.\n     *\n     *  @return  an iterator over all the inits of this $coll\n     *  @example  `List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)`\n     */\n    def inits: Iterator[Repr] = iterateUntilEmpty(_.init)\n\n    /** Copies elements of this $coll to an array.\n     *  Fills the given array `xs` with at most `len` elements of\n     *  this $coll, starting at position `start`.\n     *  Copying will stop once either the end of the current $coll is reached,\n     *  or the end of the array is reached, or `len` elements have been copied.\n     *\n     *  $willNotTerminateInf\n     * \n     *  @param  xs     the array to fill.\n     *  @param  start  the starting index.\n     *  @param  len    the maximal number of elements to copy.\n     *  @tparam B      the type of the elements of the array. \n     * \n     *\n     *  @usecase def copyToArray(xs: Array[A], start: Int, len: Int): Unit\n     */\n    def copyToArray[B >: A](xs: Array[B], start: Int, len: Int) {\n      var i = start\n      val end = (start + len) min xs.length\n      breakable {\n        for (x <- this) {\n          if (i >= end) break\n          xs(i) = x\n          i += 1\n        }\n      }\n    }\n\n    def toTraversable: Traversable[A] = thisCollection\n    def toIterator: Iterator[A] = toStream.iterator\n    def toStream: Stream[A] = toBuffer.toStream\n\n    /** Converts this $coll to a string.\n     *\n     *  @return   a string representation of this collection. By default this\n     *            string consists of the `stringPrefix` of this $coll,\n     *            followed by all elements separated by commas and enclosed in parentheses.\n     */\n    override def toString = mkString(stringPrefix + \"(\", \", \", \")\")\n\n    /** Defines the prefix of this object's `toString` representation.\n     *\n     *  @return  a string representation which starts the result of `toString`\n     *           applied to this $coll. By default the string prefix is the\n     *           simple name of the collection class $coll.\n     */\n    def stringPrefix : String = {\n      var string = repr.asInstanceOf[AnyRef].getClass.getName\n      val idx1 = string.lastIndexOf('.' : Int)\n      if (idx1 != -1) string = string.substring(idx1 + 1)\n      val idx2 = string.indexOf('$')\n      if (idx2 != -1) string = string.substring(0, idx2)\n      string\n    }\n\n    /** Creates a non-strict view of this $coll.\n     * \n     *  @return a non-strict view of this $coll.\n     */\n    def view = new TraversableView[A, Repr] {\n      protected lazy val underlying = self.repr\n      override def foreach[U](f: A => U) = self foreach f\n    }\n\n    /** Creates a non-strict view of a slice of this $coll.\n     *\n     *  Note: the difference between `view` and `slice` is that `view` produces\n     *        a view of the current $coll, whereas `slice` produces a new $coll.\n     * \n     *  Note: `view(from, to)` is equivalent to `view.slice(from, to)`\n     *  $orderDependent\n     * \n     *  @param from   the index of the first element of the view\n     *  @param until  the index of the element following the view\n     *  @return a non-strict view of a slice of this $coll, starting at index `from`\n     *  and extending up to (but not including) index `until`.\n     */\n    def view(from: Int, until: Int): TraversableView[A, Repr] = view.slice(from, until)\n\n    /** Creates a non-strict filter of this $coll.\n     *\n     *  Note: the difference between `c filter p` and `c withFilter p` is that\n     *        the former creates a new collection, whereas the latter only\n     *        restricts the domain of subsequent `map`, `flatMap`, `foreach`,\n     *        and `withFilter` operations.\n     *  $orderDependent\n     * \n     *  @param p   the predicate used to test elements.\n     *  @return    an object of class `WithFilter`, which supports\n     *             `map`, `flatMap`, `foreach`, and `withFilter` operations.\n     *             All these operations apply to those elements of this $coll which\n     *             satisfy the predicate `p`.\n     */\n    def withFilter(p: A => Boolean): FilterMonadic[A, Repr] = new WithFilter(p)\n\n    /** A class supporting filtered operations. Instances of this class are\n     *  returned by method `withFilter`.\n     */\n    class WithFilter(p: A => Boolean) extends FilterMonadic[A, Repr] {\n\n      /** Builds a new collection by applying a function to all elements of the\n       *  outer $coll containing this `WithFilter` instance that satisfy predicate `p`.\n       *\n       *  @param f      the function to apply to each element.\n       *  @tparam B     the element type of the returned collection.\n       *  @tparam That  $thatinfo\n       *  @param bf     $bfinfo\n       *  @return       a new collection of type `That` resulting from applying\n       *                the given function `f` to each element of the outer $coll\n       *                that satisfies predicate `p` and collecting the results.\n       *\n       *  @usecase def map[B](f: A => B): $Coll[B] \n       *  \n       *  @return       a new $coll resulting from applying the given function\n       *                `f` to each element of the outer $coll that satisfies\n       *                predicate `p` and collecting the results.\n       */\n      def map[B, That](f: A => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n        val b = bf(repr)\n        for (x <- self) \n          if (p(x)) b += f(x)\n        b.result\n      }\n\n      /** Builds a new collection by applying a function to all elements of the\n       *  outer $coll containing this `WithFilter` instance that satisfy\n       *  predicate `p` and concatenating the results. \n       *\n       *  @param f      the function to apply to each element.\n       *  @tparam B     the element type of the returned collection.\n       *  @tparam That  $thatinfo\n       *  @param bf     $bfinfo\n       *  @return       a new collection of type `That` resulting from applying\n       *                the given collection-valued function `f` to each element\n       *                of the outer $coll that satisfies predicate `p` and\n       *                concatenating the results.\n       *\n       *  @usecase def flatMap[B](f: A => TraversableOnce[B]): $Coll[B]\n       * \n       *  @return       a new $coll resulting from applying the given collection-valued function\n       *                `f` to each element of the outer $coll that satisfies predicate `p` and concatenating the results.\n       */\n      def flatMap[B, That](f: A => GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {\n        val b = bf(repr)\n        for (x <- self) \n          if (p(x)) b ++= f(x).seq\n        b.result\n      }\n\n      /** Applies a function `f` to all elements of the outer $coll containing\n       *  this `WithFilter` instance that satisfy predicate `p`.\n       *\n       *  @param  f   the function that is applied for its side-effect to every element.\n       *              The result of function `f` is discarded.\n       *              \n       *  @tparam  U  the type parameter describing the result of function `f`. \n       *              This result will always be ignored. Typically `U` is `Unit`,\n       *              but this is not necessary.\n       *\n       *  @usecase def foreach(f: A => Unit): Unit\n       */   \n      def foreach[U](f: A => U): Unit = \n        for (x <- self) \n          if (p(x)) f(x)\n\n      /** Further refines the filter for this $coll.\n       *\n       *  @param q   the predicate used to test elements.\n       *  @return    an object of class `WithFilter`, which supports\n       *             `map`, `flatMap`, `foreach`, and `withFilter` operations.\n       *             All these operations apply to those elements of this $coll which\n       *             satisfy the predicate `q` in addition to the predicate `p`.\n       */\n      def withFilter(q: A => Boolean): WithFilter = \n        new WithFilter(x => p(x) && q(x))\n    }\n\n    // A helper for tails and inits.\n    private def iterateUntilEmpty(f: Traversable[A @uV] => Traversable[A @uV]): Iterator[Repr] = {\n      val it = Iterator.iterate(thisCollection)(f) takeWhile (x => !x.isEmpty)\n      it ++ Iterator(Nil) map (newBuilder ++= _ result)\n    }\n  }\n\n\n</textarea>\n</form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        theme: \"ambiance\",\n        mode: \"text/x-scala\"\n      });\n    </script>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/clojure/clojure.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/**\n * Author: Hans Engel\n * Branched from CodeMirror's Scheme mode (by Koh Zi Han, based on implementation by Koh Zi Chun)\n */\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"clojure\", function (options) {\n    var BUILTIN = \"builtin\", COMMENT = \"comment\", STRING = \"string\", CHARACTER = \"string-2\",\n        ATOM = \"atom\", NUMBER = \"number\", BRACKET = \"bracket\", KEYWORD = \"keyword\", VAR = \"variable\";\n    var INDENT_WORD_SKIP = options.indentUnit || 2;\n    var NORMAL_INDENT_UNIT = options.indentUnit || 2;\n\n    function makeKeywords(str) {\n        var obj = {}, words = str.split(\" \");\n        for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n        return obj;\n    }\n\n    var atoms = makeKeywords(\"true false nil\");\n\n    var keywords = makeKeywords(\n      \"defn defn- def def- defonce defmulti defmethod defmacro defstruct deftype defprotocol defrecord defproject deftest slice defalias defhinted defmacro- defn-memo defnk defnk defonce- defunbound defunbound- defvar defvar- let letfn do case cond condp for loop recur when when-not when-let when-first if if-let if-not . .. -> ->> doto and or dosync doseq dotimes dorun doall load import unimport ns in-ns refer try catch finally throw with-open with-local-vars binding gen-class gen-and-load-class gen-and-save-class handler-case handle\");\n\n    var builtins = makeKeywords(\n        \"* *' *1 *2 *3 *agent* *allow-unresolved-vars* *assert* *clojure-version* *command-line-args* *compile-files* *compile-path* *compiler-options* *data-readers* *e *err* *file* *flush-on-newline* *fn-loader* *in* *math-context* *ns* *out* *print-dup* *print-length* *print-level* *print-meta* *print-readably* *read-eval* *source-path* *unchecked-math* *use-context-classloader* *verbose-defrecords* *warn-on-reflection* + +' - -' -> ->> ->ArrayChunk ->Vec ->VecNode ->VecSeq -cache-protocol-fn -reset-methods .. / < <= = == > >= EMPTY-NODE accessor aclone add-classpath add-watch agent agent-error agent-errors aget alength alias all-ns alter alter-meta! alter-var-root amap ancestors and apply areduce array-map aset aset-boolean aset-byte aset-char aset-double aset-float aset-int aset-long aset-short assert assoc assoc! assoc-in associative? atom await await-for await1 bases bean bigdec bigint biginteger binding bit-and bit-and-not bit-clear bit-flip bit-not bit-or bit-set bit-shift-left bit-shift-right bit-test bit-xor boolean boolean-array booleans bound-fn bound-fn* bound? butlast byte byte-array bytes case cast char char-array char-escape-string char-name-string char? chars chunk chunk-append chunk-buffer chunk-cons chunk-first chunk-next chunk-rest chunked-seq? class class? clear-agent-errors clojure-version coll? comment commute comp comparator compare compare-and-set! compile complement concat cond condp conj conj! cons constantly construct-proxy contains? count counted? create-ns create-struct cycle dec dec' decimal? declare default-data-readers definline definterface defmacro defmethod defmulti defn defn- defonce defprotocol defrecord defstruct deftype delay delay? deliver denominator deref derive descendants destructure disj disj! dissoc dissoc! distinct distinct? doall dorun doseq dosync dotimes doto double double-array doubles drop drop-last drop-while empty empty? ensure enumeration-seq error-handler error-mode eval even? every-pred every? ex-data ex-info extend extend-protocol extend-type extenders extends? false? ffirst file-seq filter filterv find find-keyword find-ns find-protocol-impl find-protocol-method find-var first flatten float float-array float? floats flush fn fn? fnext fnil for force format frequencies future future-call future-cancel future-cancelled? future-done? future? gen-class gen-interface gensym get get-in get-method get-proxy-class get-thread-bindings get-validator group-by hash hash-combine hash-map hash-set identical? identity if-let if-not ifn? import in-ns inc inc' init-proxy instance? int int-array integer? interleave intern interpose into into-array ints io! isa? iterate iterator-seq juxt keep keep-indexed key keys keyword keyword? last lazy-cat lazy-seq let letfn line-seq list list* list? load load-file load-reader load-string loaded-libs locking long long-array longs loop macroexpand macroexpand-1 make-array make-hierarchy map map-indexed map? mapcat mapv max max-key memfn memoize merge merge-with meta method-sig methods min min-key mod munge name namespace namespace-munge neg? newline next nfirst nil? nnext not not-any? not-empty not-every? not= ns ns-aliases ns-imports ns-interns ns-map ns-name ns-publics ns-refers ns-resolve ns-unalias ns-unmap nth nthnext nthrest num number? numerator object-array odd? or parents partial partition partition-all partition-by pcalls peek persistent! pmap pop pop! pop-thread-bindings pos? pr pr-str prefer-method prefers primitives-classnames print print-ctor print-dup print-method print-simple print-str printf println println-str prn prn-str promise proxy proxy-call-with-super proxy-mappings proxy-name proxy-super push-thread-bindings pvalues quot rand rand-int rand-nth range ratio? rational? rationalize re-find re-groups re-matcher re-matches re-pattern re-seq read read-line read-string realized? reduce reduce-kv reductions ref ref-history-count ref-max-history ref-min-history ref-set refer refer-clojure reify release-pending-sends rem remove remove-all-methods remove-method remove-ns remove-watch repeat repeatedly replace replicate require reset! reset-meta! resolve rest restart-agent resultset-seq reverse reversible? rseq rsubseq satisfies? second select-keys send send-off seq seq? seque sequence sequential? set set-error-handler! set-error-mode! set-validator! set? short short-array shorts shuffle shutdown-agents slurp some some-fn sort sort-by sorted-map sorted-map-by sorted-set sorted-set-by sorted? special-symbol? spit split-at split-with str string? struct struct-map subs subseq subvec supers swap! symbol symbol? sync take take-last take-nth take-while test the-ns thread-bound? time to-array to-array-2d trampoline transient tree-seq true? type unchecked-add unchecked-add-int unchecked-byte unchecked-char unchecked-dec unchecked-dec-int unchecked-divide-int unchecked-double unchecked-float unchecked-inc unchecked-inc-int unchecked-int unchecked-long unchecked-multiply unchecked-multiply-int unchecked-negate unchecked-negate-int unchecked-remainder-int unchecked-short unchecked-subtract unchecked-subtract-int underive unquote unquote-splicing update-in update-proxy use val vals var-get var-set var? vary-meta vec vector vector-of vector? when when-first when-let when-not while with-bindings with-bindings* with-in-str with-loading-context with-local-vars with-meta with-open with-out-str with-precision with-redefs with-redefs-fn xml-seq zero? zipmap *default-data-reader-fn* as-> cond-> cond->> reduced reduced? send-via set-agent-send-executor! set-agent-send-off-executor! some-> some->>\");\n\n    var indentKeys = makeKeywords(\n        // Built-ins\n        \"ns fn def defn defmethod bound-fn if if-not case condp when while when-not when-first do future comment doto locking proxy with-open with-precision reify deftype defrecord defprotocol extend extend-protocol extend-type try catch \" +\n\n        // Binding forms\n        \"let letfn binding loop for doseq dotimes when-let if-let \" +\n\n        // Data structures\n        \"defstruct struct-map assoc \" +\n\n        // clojure.test\n        \"testing deftest \" +\n\n        // contrib\n        \"handler-case handle dotrace deftrace\");\n\n    var tests = {\n        digit: /\\d/,\n        digit_or_colon: /[\\d:]/,\n        hex: /[0-9a-f]/i,\n        sign: /[+-]/,\n        exponent: /e/i,\n        keyword_char: /[^\\s\\(\\[\\;\\)\\]]/,\n        symbol: /[\\w*+!\\-\\._?:<>\\/\\xa1-\\uffff]/\n    };\n\n    function stateStack(indent, type, prev) { // represents a state stack object\n        this.indent = indent;\n        this.type = type;\n        this.prev = prev;\n    }\n\n    function pushStack(state, indent, type) {\n        state.indentStack = new stateStack(indent, type, state.indentStack);\n    }\n\n    function popStack(state) {\n        state.indentStack = state.indentStack.prev;\n    }\n\n    function isNumber(ch, stream){\n        // hex\n        if ( ch === '0' && stream.eat(/x/i) ) {\n            stream.eatWhile(tests.hex);\n            return true;\n        }\n\n        // leading sign\n        if ( ( ch == '+' || ch == '-' ) && ( tests.digit.test(stream.peek()) ) ) {\n          stream.eat(tests.sign);\n          ch = stream.next();\n        }\n\n        if ( tests.digit.test(ch) ) {\n            stream.eat(ch);\n            stream.eatWhile(tests.digit);\n\n            if ( '.' == stream.peek() ) {\n                stream.eat('.');\n                stream.eatWhile(tests.digit);\n            }\n\n            if ( stream.eat(tests.exponent) ) {\n                stream.eat(tests.sign);\n                stream.eatWhile(tests.digit);\n            }\n\n            return true;\n        }\n\n        return false;\n    }\n\n    // Eat character that starts after backslash \\\n    function eatCharacter(stream) {\n        var first = stream.next();\n        // Read special literals: backspace, newline, space, return.\n        // Just read all lowercase letters.\n        if (first && first.match(/[a-z]/) && stream.match(/[a-z]+/, true)) {\n            return;\n        }\n        // Read unicode character: \\u1000 \\uA0a1\n        if (first === \"u\") {\n            stream.match(/[0-9a-z]{4}/i, true);\n        }\n    }\n\n    return {\n        startState: function () {\n            return {\n                indentStack: null,\n                indentation: 0,\n                mode: false\n            };\n        },\n\n        token: function (stream, state) {\n            if (state.indentStack == null && stream.sol()) {\n                // update indentation, but only if indentStack is empty\n                state.indentation = stream.indentation();\n            }\n\n            // skip spaces\n            if (stream.eatSpace()) {\n                return null;\n            }\n            var returnType = null;\n\n            switch(state.mode){\n                case \"string\": // multi-line string parsing mode\n                    var next, escaped = false;\n                    while ((next = stream.next()) != null) {\n                        if (next == \"\\\"\" && !escaped) {\n\n                            state.mode = false;\n                            break;\n                        }\n                        escaped = !escaped && next == \"\\\\\";\n                    }\n                    returnType = STRING; // continue on in string mode\n                    break;\n                default: // default parsing mode\n                    var ch = stream.next();\n\n                    if (ch == \"\\\"\") {\n                        state.mode = \"string\";\n                        returnType = STRING;\n                    } else if (ch == \"\\\\\") {\n                        eatCharacter(stream);\n                        returnType = CHARACTER;\n                    } else if (ch == \"'\" && !( tests.digit_or_colon.test(stream.peek()) )) {\n                        returnType = ATOM;\n                    } else if (ch == \";\") { // comment\n                        stream.skipToEnd(); // rest of the line is a comment\n                        returnType = COMMENT;\n                    } else if (isNumber(ch,stream)){\n                        returnType = NUMBER;\n                    } else if (ch == \"(\" || ch == \"[\" || ch == \"{\" ) {\n                        var keyWord = '', indentTemp = stream.column(), letter;\n                        /**\n                        Either\n                        (indent-word ..\n                        (non-indent-word ..\n                        (;something else, bracket, etc.\n                        */\n\n                        if (ch == \"(\") while ((letter = stream.eat(tests.keyword_char)) != null) {\n                            keyWord += letter;\n                        }\n\n                        if (keyWord.length > 0 && (indentKeys.propertyIsEnumerable(keyWord) ||\n                                                   /^(?:def|with)/.test(keyWord))) { // indent-word\n                            pushStack(state, indentTemp + INDENT_WORD_SKIP, ch);\n                        } else { // non-indent word\n                            // we continue eating the spaces\n                            stream.eatSpace();\n                            if (stream.eol() || stream.peek() == \";\") {\n                                // nothing significant after\n                                // we restart indentation the user defined spaces after\n                                pushStack(state, indentTemp + NORMAL_INDENT_UNIT, ch);\n                            } else {\n                                pushStack(state, indentTemp + stream.current().length, ch); // else we match\n                            }\n                        }\n                        stream.backUp(stream.current().length - 1); // undo all the eating\n\n                        returnType = BRACKET;\n                    } else if (ch == \")\" || ch == \"]\" || ch == \"}\") {\n                        returnType = BRACKET;\n                        if (state.indentStack != null && state.indentStack.type == (ch == \")\" ? \"(\" : (ch == \"]\" ? \"[\" :\"{\"))) {\n                            popStack(state);\n                        }\n                    } else if ( ch == \":\" ) {\n                        stream.eatWhile(tests.symbol);\n                        return ATOM;\n                    } else {\n                        stream.eatWhile(tests.symbol);\n\n                        if (keywords && keywords.propertyIsEnumerable(stream.current())) {\n                            returnType = KEYWORD;\n                        } else if (builtins && builtins.propertyIsEnumerable(stream.current())) {\n                            returnType = BUILTIN;\n                        } else if (atoms && atoms.propertyIsEnumerable(stream.current())) {\n                            returnType = ATOM;\n                        } else {\n                          returnType = VAR;\n                        }\n                    }\n            }\n\n            return returnType;\n        },\n\n        indent: function (state) {\n            if (state.indentStack == null) return state.indentation;\n            return state.indentStack.indent;\n        },\n\n        lineComment: \";;\"\n    };\n});\n\nCodeMirror.defineMIME(\"text/x-clojure\", \"clojure\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/clojure/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Clojure mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"clojure.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Clojure</a>\n  </ul>\n</div>\n\n<article>\n<h2>Clojure mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n; Conway's Game of Life, based on the work of:\n;; Laurent Petit https://gist.github.com/1200343\n;; Christophe Grand http://clj-me.cgrand.net/2011/08/19/conways-game-of-life\n\n(ns ^{:doc \"Conway's Game of Life.\"}\n game-of-life)\n\n;; Core game of life's algorithm functions\n\n(defn neighbours\n  \"Given a cell's coordinates, returns the coordinates of its neighbours.\"\n  [[x y]]\n  (for [dx [-1 0 1] dy (if (zero? dx) [-1 1] [-1 0 1])]\n    [(+ dx x) (+ dy y)]))\n\n(defn step\n  \"Given a set of living cells, computes the new set of living cells.\"\n  [cells]\n  (set (for [[cell n] (frequencies (mapcat neighbours cells))\n             :when (or (= n 3) (and (= n 2) (cells cell)))]\n         cell)))\n\n;; Utility methods for displaying game on a text terminal\n\n(defn print-board\n  \"Prints a board on *out*, representing a step in the game.\"\n  [board w h]\n  (doseq [x (range (inc w)) y (range (inc h))]\n    (if (= y 0) (print \"\\n\"))\n    (print (if (board [x y]) \"[X]\" \" . \"))))\n\n(defn display-grids\n  \"Prints a squence of boards on *out*, representing several steps.\"\n  [grids w h]\n  (doseq [board grids]\n    (print-board board w h)\n    (print \"\\n\")))\n\n;; Launches an example board\n\n(def\n  ^{:doc \"board represents the initial set of living cells\"}\n   board #{[2 1] [2 2] [2 3]})\n\n(display-grids (take 3 (iterate step board)) 5 5)\n\n;; Let's play with characters\n(println \\1 \\a \\# \\\\\n         \\\" \\( \\newline\n         \\} \\\" \\space\n         \\tab \\return \\backspace\n         \\u1000 \\uAaAa \\u9F9F)\n\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-clojure</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/cobol/cobol.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/**\n * Author: Gautam Mehta\n * Branched from CodeMirror's Scheme mode\n */\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"cobol\", function () {\n  var BUILTIN = \"builtin\", COMMENT = \"comment\", STRING = \"string\",\n      ATOM = \"atom\", NUMBER = \"number\", KEYWORD = \"keyword\", MODTAG = \"header\",\n      COBOLLINENUM = \"def\", PERIOD = \"link\";\n  function makeKeywords(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n  var atoms = makeKeywords(\"TRUE FALSE ZEROES ZEROS ZERO SPACES SPACE LOW-VALUE LOW-VALUES \");\n  var keywords = makeKeywords(\n      \"ACCEPT ACCESS ACQUIRE ADD ADDRESS \" +\n      \"ADVANCING AFTER ALIAS ALL ALPHABET \" +\n      \"ALPHABETIC ALPHABETIC-LOWER ALPHABETIC-UPPER ALPHANUMERIC ALPHANUMERIC-EDITED \" +\n      \"ALSO ALTER ALTERNATE AND ANY \" +\n      \"ARE AREA AREAS ARITHMETIC ASCENDING \" +\n      \"ASSIGN AT ATTRIBUTE AUTHOR AUTO \" +\n      \"AUTO-SKIP AUTOMATIC B-AND B-EXOR B-LESS \" +\n      \"B-NOT B-OR BACKGROUND-COLOR BACKGROUND-COLOUR BEEP \" +\n      \"BEFORE BELL BINARY BIT BITS \" +\n      \"BLANK BLINK BLOCK BOOLEAN BOTTOM \" +\n      \"BY CALL CANCEL CD CF \" +\n      \"CH CHARACTER CHARACTERS CLASS CLOCK-UNITS \" +\n      \"CLOSE COBOL CODE CODE-SET COL \" +\n      \"COLLATING COLUMN COMMA COMMIT COMMITMENT \" +\n      \"COMMON COMMUNICATION COMP COMP-0 COMP-1 \" +\n      \"COMP-2 COMP-3 COMP-4 COMP-5 COMP-6 \" +\n      \"COMP-7 COMP-8 COMP-9 COMPUTATIONAL COMPUTATIONAL-0 \" +\n      \"COMPUTATIONAL-1 COMPUTATIONAL-2 COMPUTATIONAL-3 COMPUTATIONAL-4 COMPUTATIONAL-5 \" +\n      \"COMPUTATIONAL-6 COMPUTATIONAL-7 COMPUTATIONAL-8 COMPUTATIONAL-9 COMPUTE \" +\n      \"CONFIGURATION CONNECT CONSOLE CONTAINED CONTAINS \" +\n      \"CONTENT CONTINUE CONTROL CONTROL-AREA CONTROLS \" +\n      \"CONVERTING COPY CORR CORRESPONDING COUNT \" +\n      \"CRT CRT-UNDER CURRENCY CURRENT CURSOR \" +\n      \"DATA DATE DATE-COMPILED DATE-WRITTEN DAY \" +\n      \"DAY-OF-WEEK DB DB-ACCESS-CONTROL-KEY DB-DATA-NAME DB-EXCEPTION \" +\n      \"DB-FORMAT-NAME DB-RECORD-NAME DB-SET-NAME DB-STATUS DBCS \" +\n      \"DBCS-EDITED DE DEBUG-CONTENTS DEBUG-ITEM DEBUG-LINE \" +\n      \"DEBUG-NAME DEBUG-SUB-1 DEBUG-SUB-2 DEBUG-SUB-3 DEBUGGING \" +\n      \"DECIMAL-POINT DECLARATIVES DEFAULT DELETE DELIMITED \" +\n      \"DELIMITER DEPENDING DESCENDING DESCRIBED DESTINATION \" +\n      \"DETAIL DISABLE DISCONNECT DISPLAY DISPLAY-1 \" +\n      \"DISPLAY-2 DISPLAY-3 DISPLAY-4 DISPLAY-5 DISPLAY-6 \" +\n      \"DISPLAY-7 DISPLAY-8 DISPLAY-9 DIVIDE DIVISION \" +\n      \"DOWN DROP DUPLICATE DUPLICATES DYNAMIC \" +\n      \"EBCDIC EGI EJECT ELSE EMI \" +\n      \"EMPTY EMPTY-CHECK ENABLE END END. END-ACCEPT END-ACCEPT. \" +\n      \"END-ADD END-CALL END-COMPUTE END-DELETE END-DISPLAY \" +\n      \"END-DIVIDE END-EVALUATE END-IF END-INVOKE END-MULTIPLY \" +\n      \"END-OF-PAGE END-PERFORM END-READ END-RECEIVE END-RETURN \" +\n      \"END-REWRITE END-SEARCH END-START END-STRING END-SUBTRACT \" +\n      \"END-UNSTRING END-WRITE END-XML ENTER ENTRY \" +\n      \"ENVIRONMENT EOP EQUAL EQUALS ERASE \" +\n      \"ERROR ESI EVALUATE EVERY EXCEEDS \" +\n      \"EXCEPTION EXCLUSIVE EXIT EXTEND EXTERNAL \" +\n      \"EXTERNALLY-DESCRIBED-KEY FD FETCH FILE FILE-CONTROL \" +\n      \"FILE-STREAM FILES FILLER FINAL FIND \" +\n      \"FINISH FIRST FOOTING FOR FOREGROUND-COLOR \" +\n      \"FOREGROUND-COLOUR FORMAT FREE FROM FULL \" +\n      \"FUNCTION GENERATE GET GIVING GLOBAL \" +\n      \"GO GOBACK GREATER GROUP HEADING \" +\n      \"HIGH-VALUE HIGH-VALUES HIGHLIGHT I-O I-O-CONTROL \" +\n      \"ID IDENTIFICATION IF IN INDEX \" +\n      \"INDEX-1 INDEX-2 INDEX-3 INDEX-4 INDEX-5 \" +\n      \"INDEX-6 INDEX-7 INDEX-8 INDEX-9 INDEXED \" +\n      \"INDIC INDICATE INDICATOR INDICATORS INITIAL \" +\n      \"INITIALIZE INITIATE INPUT INPUT-OUTPUT INSPECT \" +\n      \"INSTALLATION INTO INVALID INVOKE IS \" +\n      \"JUST JUSTIFIED KANJI KEEP KEY \" +\n      \"LABEL LAST LD LEADING LEFT \" +\n      \"LEFT-JUSTIFY LENGTH LENGTH-CHECK LESS LIBRARY \" +\n      \"LIKE LIMIT LIMITS LINAGE LINAGE-COUNTER \" +\n      \"LINE LINE-COUNTER LINES LINKAGE LOCAL-STORAGE \" +\n      \"LOCALE LOCALLY LOCK \" +\n      \"MEMBER MEMORY MERGE MESSAGE METACLASS \" +\n      \"MODE MODIFIED MODIFY MODULES MOVE \" +\n      \"MULTIPLE MULTIPLY NATIONAL NATIVE NEGATIVE \" +\n      \"NEXT NO NO-ECHO NONE NOT \" +\n      \"NULL NULL-KEY-MAP NULL-MAP NULLS NUMBER \" +\n      \"NUMERIC NUMERIC-EDITED OBJECT OBJECT-COMPUTER OCCURS \" +\n      \"OF OFF OMITTED ON ONLY \" +\n      \"OPEN OPTIONAL OR ORDER ORGANIZATION \" +\n      \"OTHER OUTPUT OVERFLOW OWNER PACKED-DECIMAL \" +\n      \"PADDING PAGE PAGE-COUNTER PARSE PERFORM \" +\n      \"PF PH PIC PICTURE PLUS \" +\n      \"POINTER POSITION POSITIVE PREFIX PRESENT \" +\n      \"PRINTING PRIOR PROCEDURE PROCEDURE-POINTER PROCEDURES \" +\n      \"PROCEED PROCESS PROCESSING PROGRAM PROGRAM-ID \" +\n      \"PROMPT PROTECTED PURGE QUEUE QUOTE \" +\n      \"QUOTES RANDOM RD READ READY \" +\n      \"REALM RECEIVE RECONNECT RECORD RECORD-NAME \" +\n      \"RECORDS RECURSIVE REDEFINES REEL REFERENCE \" +\n      \"REFERENCE-MONITOR REFERENCES RELATION RELATIVE RELEASE \" +\n      \"REMAINDER REMOVAL RENAMES REPEATED REPLACE \" +\n      \"REPLACING REPORT REPORTING REPORTS REPOSITORY \" +\n      \"REQUIRED RERUN RESERVE RESET RETAINING \" +\n      \"RETRIEVAL RETURN RETURN-CODE RETURNING REVERSE-VIDEO \" +\n      \"REVERSED REWIND REWRITE RF RH \" +\n      \"RIGHT RIGHT-JUSTIFY ROLLBACK ROLLING ROUNDED \" +\n      \"RUN SAME SCREEN SD SEARCH \" +\n      \"SECTION SECURE SECURITY SEGMENT SEGMENT-LIMIT \" +\n      \"SELECT SEND SENTENCE SEPARATE SEQUENCE \" +\n      \"SEQUENTIAL SET SHARED SIGN SIZE \" +\n      \"SKIP1 SKIP2 SKIP3 SORT SORT-MERGE \" +\n      \"SORT-RETURN SOURCE SOURCE-COMPUTER SPACE-FILL \" +\n      \"SPECIAL-NAMES STANDARD STANDARD-1 STANDARD-2 \" +\n      \"START STARTING STATUS STOP STORE \" +\n      \"STRING SUB-QUEUE-1 SUB-QUEUE-2 SUB-QUEUE-3 SUB-SCHEMA \" +\n      \"SUBFILE SUBSTITUTE SUBTRACT SUM SUPPRESS \" +\n      \"SYMBOLIC SYNC SYNCHRONIZED SYSIN SYSOUT \" +\n      \"TABLE TALLYING TAPE TENANT TERMINAL \" +\n      \"TERMINATE TEST TEXT THAN THEN \" +\n      \"THROUGH THRU TIME TIMES TITLE \" +\n      \"TO TOP TRAILING TRAILING-SIGN TRANSACTION \" +\n      \"TYPE TYPEDEF UNDERLINE UNEQUAL UNIT \" +\n      \"UNSTRING UNTIL UP UPDATE UPON \" +\n      \"USAGE USAGE-MODE USE USING VALID \" +\n      \"VALIDATE VALUE VALUES VARYING VLR \" +\n      \"WAIT WHEN WHEN-COMPILED WITH WITHIN \" +\n      \"WORDS WORKING-STORAGE WRITE XML XML-CODE \" +\n      \"XML-EVENT XML-NTEXT XML-TEXT ZERO ZERO-FILL \" );\n\n  var builtins = makeKeywords(\"- * ** / + < <= = > >= \");\n  var tests = {\n    digit: /\\d/,\n    digit_or_colon: /[\\d:]/,\n    hex: /[0-9a-f]/i,\n    sign: /[+-]/,\n    exponent: /e/i,\n    keyword_char: /[^\\s\\(\\[\\;\\)\\]]/,\n    symbol: /[\\w*+\\-]/\n  };\n  function isNumber(ch, stream){\n    // hex\n    if ( ch === '0' && stream.eat(/x/i) ) {\n      stream.eatWhile(tests.hex);\n      return true;\n    }\n    // leading sign\n    if ( ( ch == '+' || ch == '-' ) && ( tests.digit.test(stream.peek()) ) ) {\n      stream.eat(tests.sign);\n      ch = stream.next();\n    }\n    if ( tests.digit.test(ch) ) {\n      stream.eat(ch);\n      stream.eatWhile(tests.digit);\n      if ( '.' == stream.peek()) {\n        stream.eat('.');\n        stream.eatWhile(tests.digit);\n      }\n      if ( stream.eat(tests.exponent) ) {\n        stream.eat(tests.sign);\n        stream.eatWhile(tests.digit);\n      }\n      return true;\n    }\n    return false;\n  }\n  return {\n    startState: function () {\n      return {\n        indentStack: null,\n        indentation: 0,\n        mode: false\n      };\n    },\n    token: function (stream, state) {\n      if (state.indentStack == null && stream.sol()) {\n        // update indentation, but only if indentStack is empty\n        state.indentation = 6 ; //stream.indentation();\n      }\n      // skip spaces\n      if (stream.eatSpace()) {\n        return null;\n      }\n      var returnType = null;\n      switch(state.mode){\n      case \"string\": // multi-line string parsing mode\n        var next = false;\n        while ((next = stream.next()) != null) {\n          if (next == \"\\\"\" || next == \"\\'\") {\n            state.mode = false;\n            break;\n          }\n        }\n        returnType = STRING; // continue on in string mode\n        break;\n      default: // default parsing mode\n        var ch = stream.next();\n        var col = stream.column();\n        if (col >= 0 && col <= 5) {\n          returnType = COBOLLINENUM;\n        } else if (col >= 72 && col <= 79) {\n          stream.skipToEnd();\n          returnType = MODTAG;\n        } else if (ch == \"*\" && col == 6) { // comment\n          stream.skipToEnd(); // rest of the line is a comment\n          returnType = COMMENT;\n        } else if (ch == \"\\\"\" || ch == \"\\'\") {\n          state.mode = \"string\";\n          returnType = STRING;\n        } else if (ch == \"'\" && !( tests.digit_or_colon.test(stream.peek()) )) {\n          returnType = ATOM;\n        } else if (ch == \".\") {\n          returnType = PERIOD;\n        } else if (isNumber(ch,stream)){\n          returnType = NUMBER;\n        } else {\n          if (stream.current().match(tests.symbol)) {\n            while (col < 71) {\n              if (stream.eat(tests.symbol) === undefined) {\n                break;\n              } else {\n                col++;\n              }\n            }\n          }\n          if (keywords && keywords.propertyIsEnumerable(stream.current().toUpperCase())) {\n            returnType = KEYWORD;\n          } else if (builtins && builtins.propertyIsEnumerable(stream.current().toUpperCase())) {\n            returnType = BUILTIN;\n          } else if (atoms && atoms.propertyIsEnumerable(stream.current().toUpperCase())) {\n            returnType = ATOM;\n          } else returnType = null;\n        }\n      }\n      return returnType;\n    },\n    indent: function (state) {\n      if (state.indentStack == null) return state.indentation;\n      return state.indentStack.indent;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-cobol\", \"cobol\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/cobol/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: COBOL mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/neat.css\">\n<link rel=\"stylesheet\" href=\"../../theme/elegant.css\">\n<link rel=\"stylesheet\" href=\"../../theme/erlang-dark.css\">\n<link rel=\"stylesheet\" href=\"../../theme/night.css\">\n<link rel=\"stylesheet\" href=\"../../theme/monokai.css\">\n<link rel=\"stylesheet\" href=\"../../theme/cobalt.css\">\n<link rel=\"stylesheet\" href=\"../../theme/eclipse.css\">\n<link rel=\"stylesheet\" href=\"../../theme/rubyblue.css\">\n<link rel=\"stylesheet\" href=\"../../theme/lesser-dark.css\">\n<link rel=\"stylesheet\" href=\"../../theme/xq-dark.css\">\n<link rel=\"stylesheet\" href=\"../../theme/xq-light.css\">\n<link rel=\"stylesheet\" href=\"../../theme/ambiance.css\">\n<link rel=\"stylesheet\" href=\"../../theme/blackboard.css\">\n<link rel=\"stylesheet\" href=\"../../theme/vibrant-ink.css\">\n<link rel=\"stylesheet\" href=\"../../theme/solarized.css\">\n<link rel=\"stylesheet\" href=\"../../theme/twilight.css\">\n<link rel=\"stylesheet\" href=\"../../theme/midnight.css\">\n<link rel=\"stylesheet\" href=\"../../addon/dialog/dialog.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"cobol.js\"></script>\n<script src=\"../../addon/selection/active-line.js\"></script>\n<script src=\"../../addon/search/search.js\"></script>\n<script src=\"../../addon/dialog/dialog.js\"></script>\n<script src=\"../../addon/search/searchcursor.js\"></script>\n<style>\n        .CodeMirror {\n          border: 1px solid #eee;\n          font-size : 20px;\n          height : auto !important;\n        }\n        .CodeMirror-activeline-background {background: #555555 !important;}\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">COBOL</a>\n  </ul>\n</div>\n\n<article>\n<h2>COBOL mode</h2>\n\n    <p> Select Theme <select onchange=\"selectTheme()\" id=\"selectTheme\">\n        <option>default</option>\n        <option>ambiance</option>\n        <option>blackboard</option>\n        <option>cobalt</option>\n        <option>eclipse</option>\n        <option>elegant</option>\n        <option>erlang-dark</option>\n        <option>lesser-dark</option>\n        <option>midnight</option>\n        <option>monokai</option>\n        <option>neat</option>\n        <option>night</option>\n        <option>rubyblue</option>\n        <option>solarized dark</option>\n        <option>solarized light</option>\n        <option selected>twilight</option>\n        <option>vibrant-ink</option>\n        <option>xq-dark</option>\n        <option>xq-light</option>\n    </select>    Select Font Size <select onchange=\"selectFontsize()\" id=\"selectFontSize\">\n          <option value=\"13px\">13px</option>\n          <option value=\"14px\">14px</option>\n          <option value=\"16px\">16px</option>\n          <option value=\"18px\">18px</option>\n          <option value=\"20px\" selected=\"selected\">20px</option>\n          <option value=\"24px\">24px</option>\n          <option value=\"26px\">26px</option>\n          <option value=\"28px\">28px</option>\n          <option value=\"30px\">30px</option>\n          <option value=\"32px\">32px</option>\n          <option value=\"34px\">34px</option>\n          <option value=\"36px\">36px</option>\n        </select>\n<label for=\"checkBoxReadOnly\">Read-only</label>\n<input type=\"checkbox\" id=\"checkBoxReadOnly\" onchange=\"selectReadOnly()\">\n<label for=\"id_tabToIndentSpace\">Insert Spaces on Tab</label>\n<input type=\"checkbox\" id=\"id_tabToIndentSpace\" onchange=\"tabToIndentSpace()\">\n</p>\n<textarea id=\"code\" name=\"code\">\n---------1---------2---------3---------4---------5---------6---------7---------8\n12345678911234567892123456789312345678941234567895123456789612345678971234567898\n000010 IDENTIFICATION DIVISION.                                        MODTGHERE\n000020 PROGRAM-ID.       SAMPLE.\n000030 AUTHOR.           TEST SAM. \n000040 DATE-WRITTEN.     5 February 2013\n000041\n000042* A sample program just to show the form.\n000043* The program copies its input to the output,\n000044* and counts the number of records.\n000045* At the end this number is printed.\n000046\n000050 ENVIRONMENT DIVISION.\n000060 INPUT-OUTPUT SECTION.\n000070 FILE-CONTROL.\n000080     SELECT STUDENT-FILE     ASSIGN TO SYSIN\n000090         ORGANIZATION IS LINE SEQUENTIAL.\n000100     SELECT PRINT-FILE       ASSIGN TO SYSOUT\n000110         ORGANIZATION IS LINE SEQUENTIAL.\n000120\n000130 DATA DIVISION.\n000140 FILE SECTION.\n000150 FD  STUDENT-FILE\n000160     RECORD CONTAINS 43 CHARACTERS\n000170     DATA RECORD IS STUDENT-IN.\n000180 01  STUDENT-IN              PIC X(43).\n000190\n000200 FD  PRINT-FILE\n000210     RECORD CONTAINS 80 CHARACTERS\n000220     DATA RECORD IS PRINT-LINE.\n000230 01  PRINT-LINE              PIC X(80).\n000240\n000250 WORKING-STORAGE SECTION.\n000260 01  DATA-REMAINS-SWITCH     PIC X(2)      VALUE SPACES.\n000261 01  RECORDS-WRITTEN         PIC 99.\n000270\n000280 01  DETAIL-LINE.\n000290     05  FILLER              PIC X(7)      VALUE SPACES.\n000300     05  RECORD-IMAGE        PIC X(43).\n000310     05  FILLER              PIC X(30)     VALUE SPACES.\n000311 \n000312 01  SUMMARY-LINE.\n000313     05  FILLER              PIC X(7)      VALUE SPACES.\n000314     05  TOTAL-READ          PIC 99.\n000315     05  FILLER              PIC X         VALUE SPACE.\n000316     05  FILLER              PIC X(17)     \n000317                 VALUE  'Records were read'.\n000318     05  FILLER              PIC X(53)     VALUE SPACES.\n000319\n000320 PROCEDURE DIVISION.\n000321\n000330 PREPARE-SENIOR-REPORT.\n000340     OPEN INPUT  STUDENT-FILE\n000350          OUTPUT PRINT-FILE.\n000351     MOVE ZERO TO RECORDS-WRITTEN.\n000360     READ STUDENT-FILE\n000370         AT END MOVE 'NO' TO DATA-REMAINS-SWITCH\n000380     END-READ.\n000390     PERFORM PROCESS-RECORDS\n000410         UNTIL DATA-REMAINS-SWITCH = 'NO'.\n000411     PERFORM PRINT-SUMMARY.\n000420     CLOSE STUDENT-FILE\n000430           PRINT-FILE.\n000440     STOP RUN.\n000450\n000460 PROCESS-RECORDS.\n000470     MOVE STUDENT-IN TO RECORD-IMAGE.\n000480     MOVE DETAIL-LINE TO PRINT-LINE.\n000490     WRITE PRINT-LINE.\n000500     ADD 1 TO RECORDS-WRITTEN.\n000510     READ STUDENT-FILE\n000520         AT END MOVE 'NO' TO DATA-REMAINS-SWITCH\n000530     END-READ. \n000540\n000550 PRINT-SUMMARY.\n000560     MOVE RECORDS-WRITTEN TO TOTAL-READ.\n000570     MOVE SUMMARY-LINE TO PRINT-LINE.\n000571     WRITE PRINT-LINE. \n000572\n000580\n</textarea>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-cobol\",\n        theme : \"twilight\",\n        styleActiveLine: true,\n        showCursorWhenSelecting : true,  \n      });\n      function selectTheme() {\n        var themeInput = document.getElementById(\"selectTheme\");\n        var theme = themeInput.options[themeInput.selectedIndex].innerHTML;\n        editor.setOption(\"theme\", theme);\n      }\n      function selectFontsize() {\n        var fontSizeInput = document.getElementById(\"selectFontSize\");\n        var fontSize = fontSizeInput.options[fontSizeInput.selectedIndex].innerHTML;\n        editor.getWrapperElement().style.fontSize = fontSize;\n        editor.refresh();\n      }\n      function selectReadOnly() {\n        editor.setOption(\"readOnly\", document.getElementById(\"checkBoxReadOnly\").checked);\n      }\n      function tabToIndentSpace() {\n        if (document.getElementById(\"id_tabToIndentSpace\").checked) {\n            editor.setOption(\"extraKeys\", {Tab: function(cm) { cm.replaceSelection(\"    \", \"end\"); }});\n        } else {\n            editor.setOption(\"extraKeys\", {Tab: function(cm) { cm.replaceSelection(\"    \", \"end\"); }});\n        }\n      }\n    </script>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/coffeescript/coffeescript.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/**\n * Link to the project's GitHub page:\n * https://github.com/pickhardt/coffeescript-codemirror-mode\n */\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"coffeescript\", function(conf) {\n  var ERRORCLASS = \"error\";\n\n  function wordRegexp(words) {\n    return new RegExp(\"^((\" + words.join(\")|(\") + \"))\\\\b\");\n  }\n\n  var operators = /^(?:->|=>|\\+[+=]?|-[\\-=]?|\\*[\\*=]?|\\/[\\/=]?|[=!]=|<[><]?=?|>>?=?|%=?|&=?|\\|=?|\\^=?|\\~|!|\\?|(or|and|\\|\\||&&|\\?)=)/;\n  var delimiters = /^(?:[()\\[\\]{},:`=;]|\\.\\.?\\.?)/;\n  var identifiers = /^[_A-Za-z$][_A-Za-z$0-9]*/;\n  var properties = /^(@|this\\.)[_A-Za-z$][_A-Za-z$0-9]*/;\n\n  var wordOperators = wordRegexp([\"and\", \"or\", \"not\",\n                                  \"is\", \"isnt\", \"in\",\n                                  \"instanceof\", \"typeof\"]);\n  var indentKeywords = [\"for\", \"while\", \"loop\", \"if\", \"unless\", \"else\",\n                        \"switch\", \"try\", \"catch\", \"finally\", \"class\"];\n  var commonKeywords = [\"break\", \"by\", \"continue\", \"debugger\", \"delete\",\n                        \"do\", \"in\", \"of\", \"new\", \"return\", \"then\",\n                        \"this\", \"@\", \"throw\", \"when\", \"until\", \"extends\"];\n\n  var keywords = wordRegexp(indentKeywords.concat(commonKeywords));\n\n  indentKeywords = wordRegexp(indentKeywords);\n\n\n  var stringPrefixes = /^('{3}|\\\"{3}|['\\\"])/;\n  var regexPrefixes = /^(\\/{3}|\\/)/;\n  var commonConstants = [\"Infinity\", \"NaN\", \"undefined\", \"null\", \"true\", \"false\", \"on\", \"off\", \"yes\", \"no\"];\n  var constants = wordRegexp(commonConstants);\n\n  // Tokenizers\n  function tokenBase(stream, state) {\n    // Handle scope changes\n    if (stream.sol()) {\n      if (state.scope.align === null) state.scope.align = false;\n      var scopeOffset = state.scope.offset;\n      if (stream.eatSpace()) {\n        var lineOffset = stream.indentation();\n        if (lineOffset > scopeOffset && state.scope.type == \"coffee\") {\n          return \"indent\";\n        } else if (lineOffset < scopeOffset) {\n          return \"dedent\";\n        }\n        return null;\n      } else {\n        if (scopeOffset > 0) {\n          dedent(stream, state);\n        }\n      }\n    }\n    if (stream.eatSpace()) {\n      return null;\n    }\n\n    var ch = stream.peek();\n\n    // Handle docco title comment (single line)\n    if (stream.match(\"####\")) {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n\n    // Handle multi line comments\n    if (stream.match(\"###\")) {\n      state.tokenize = longComment;\n      return state.tokenize(stream, state);\n    }\n\n    // Single line comment\n    if (ch === \"#\") {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n\n    // Handle number literals\n    if (stream.match(/^-?[0-9\\.]/, false)) {\n      var floatLiteral = false;\n      // Floats\n      if (stream.match(/^-?\\d*\\.\\d+(e[\\+\\-]?\\d+)?/i)) {\n        floatLiteral = true;\n      }\n      if (stream.match(/^-?\\d+\\.\\d*/)) {\n        floatLiteral = true;\n      }\n      if (stream.match(/^-?\\.\\d+/)) {\n        floatLiteral = true;\n      }\n\n      if (floatLiteral) {\n        // prevent from getting extra . on 1..\n        if (stream.peek() == \".\"){\n          stream.backUp(1);\n        }\n        return \"number\";\n      }\n      // Integers\n      var intLiteral = false;\n      // Hex\n      if (stream.match(/^-?0x[0-9a-f]+/i)) {\n        intLiteral = true;\n      }\n      // Decimal\n      if (stream.match(/^-?[1-9]\\d*(e[\\+\\-]?\\d+)?/)) {\n        intLiteral = true;\n      }\n      // Zero by itself with no other piece of number.\n      if (stream.match(/^-?0(?![\\dx])/i)) {\n        intLiteral = true;\n      }\n      if (intLiteral) {\n        return \"number\";\n      }\n    }\n\n    // Handle strings\n    if (stream.match(stringPrefixes)) {\n      state.tokenize = tokenFactory(stream.current(), false, \"string\");\n      return state.tokenize(stream, state);\n    }\n    // Handle regex literals\n    if (stream.match(regexPrefixes)) {\n      if (stream.current() != \"/\" || stream.match(/^.*\\//, false)) { // prevent highlight of division\n        state.tokenize = tokenFactory(stream.current(), true, \"string-2\");\n        return state.tokenize(stream, state);\n      } else {\n        stream.backUp(1);\n      }\n    }\n\n    // Handle operators and delimiters\n    if (stream.match(operators) || stream.match(wordOperators)) {\n      return \"operator\";\n    }\n    if (stream.match(delimiters)) {\n      return \"punctuation\";\n    }\n\n    if (stream.match(constants)) {\n      return \"atom\";\n    }\n\n    if (stream.match(keywords)) {\n      return \"keyword\";\n    }\n\n    if (stream.match(identifiers)) {\n      return \"variable\";\n    }\n\n    if (stream.match(properties)) {\n      return \"property\";\n    }\n\n    // Handle non-detected items\n    stream.next();\n    return ERRORCLASS;\n  }\n\n  function tokenFactory(delimiter, singleline, outclass) {\n    return function(stream, state) {\n      while (!stream.eol()) {\n        stream.eatWhile(/[^'\"\\/\\\\]/);\n        if (stream.eat(\"\\\\\")) {\n          stream.next();\n          if (singleline && stream.eol()) {\n            return outclass;\n          }\n        } else if (stream.match(delimiter)) {\n          state.tokenize = tokenBase;\n          return outclass;\n        } else {\n          stream.eat(/['\"\\/]/);\n        }\n      }\n      if (singleline) {\n        if (conf.mode.singleLineStringErrors) {\n          outclass = ERRORCLASS;\n        } else {\n          state.tokenize = tokenBase;\n        }\n      }\n      return outclass;\n    };\n  }\n\n  function longComment(stream, state) {\n    while (!stream.eol()) {\n      stream.eatWhile(/[^#]/);\n      if (stream.match(\"###\")) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      stream.eatWhile(\"#\");\n    }\n    return \"comment\";\n  }\n\n  function indent(stream, state, type) {\n    type = type || \"coffee\";\n    var offset = 0, align = false, alignOffset = null;\n    for (var scope = state.scope; scope; scope = scope.prev) {\n      if (scope.type === \"coffee\" || scope.type == \"}\") {\n        offset = scope.offset + conf.indentUnit;\n        break;\n      }\n    }\n    if (type !== \"coffee\") {\n      align = null;\n      alignOffset = stream.column() + stream.current().length;\n    } else if (state.scope.align) {\n      state.scope.align = false;\n    }\n    state.scope = {\n      offset: offset,\n      type: type,\n      prev: state.scope,\n      align: align,\n      alignOffset: alignOffset\n    };\n  }\n\n  function dedent(stream, state) {\n    if (!state.scope.prev) return;\n    if (state.scope.type === \"coffee\") {\n      var _indent = stream.indentation();\n      var matched = false;\n      for (var scope = state.scope; scope; scope = scope.prev) {\n        if (_indent === scope.offset) {\n          matched = true;\n          break;\n        }\n      }\n      if (!matched) {\n        return true;\n      }\n      while (state.scope.prev && state.scope.offset !== _indent) {\n        state.scope = state.scope.prev;\n      }\n      return false;\n    } else {\n      state.scope = state.scope.prev;\n      return false;\n    }\n  }\n\n  function tokenLexer(stream, state) {\n    var style = state.tokenize(stream, state);\n    var current = stream.current();\n\n    // Handle \".\" connected identifiers\n    if (current === \".\") {\n      style = state.tokenize(stream, state);\n      current = stream.current();\n      if (/^\\.[\\w$]+$/.test(current)) {\n        return \"variable\";\n      } else {\n        return ERRORCLASS;\n      }\n    }\n\n    // Handle scope changes.\n    if (current === \"return\") {\n      state.dedent = true;\n    }\n    if (((current === \"->\" || current === \"=>\") &&\n         !state.lambda &&\n         !stream.peek())\n        || style === \"indent\") {\n      indent(stream, state);\n    }\n    var delimiter_index = \"[({\".indexOf(current);\n    if (delimiter_index !== -1) {\n      indent(stream, state, \"])}\".slice(delimiter_index, delimiter_index+1));\n    }\n    if (indentKeywords.exec(current)){\n      indent(stream, state);\n    }\n    if (current == \"then\"){\n      dedent(stream, state);\n    }\n\n\n    if (style === \"dedent\") {\n      if (dedent(stream, state)) {\n        return ERRORCLASS;\n      }\n    }\n    delimiter_index = \"])}\".indexOf(current);\n    if (delimiter_index !== -1) {\n      while (state.scope.type == \"coffee\" && state.scope.prev)\n        state.scope = state.scope.prev;\n      if (state.scope.type == current)\n        state.scope = state.scope.prev;\n    }\n    if (state.dedent && stream.eol()) {\n      if (state.scope.type == \"coffee\" && state.scope.prev)\n        state.scope = state.scope.prev;\n      state.dedent = false;\n    }\n\n    return style;\n  }\n\n  var external = {\n    startState: function(basecolumn) {\n      return {\n        tokenize: tokenBase,\n        scope: {offset:basecolumn || 0, type:\"coffee\", prev: null, align: false},\n        lastToken: null,\n        lambda: false,\n        dedent: 0\n      };\n    },\n\n    token: function(stream, state) {\n      var fillAlign = state.scope.align === null && state.scope;\n      if (fillAlign && stream.sol()) fillAlign.align = false;\n\n      var style = tokenLexer(stream, state);\n      if (fillAlign && style && style != \"comment\") fillAlign.align = true;\n\n      state.lastToken = {style:style, content: stream.current()};\n\n      if (stream.eol() && stream.lambda) {\n        state.lambda = false;\n      }\n\n      return style;\n    },\n\n    indent: function(state, text) {\n      if (state.tokenize != tokenBase) return 0;\n      var scope = state.scope;\n      var closer = text && \"])}\".indexOf(text.charAt(0)) > -1;\n      if (closer) while (scope.type == \"coffee\" && scope.prev) scope = scope.prev;\n      var closes = closer && scope.type === text.charAt(0);\n      if (scope.align)\n        return scope.alignOffset - (closes ? 1 : 0);\n      else\n        return (closes ? scope.prev : scope).offset;\n    },\n\n    lineComment: \"#\",\n    fold: \"indent\"\n  };\n  return external;\n});\n\nCodeMirror.defineMIME(\"text/x-coffeescript\", \"coffeescript\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/coffeescript/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: CoffeeScript mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"coffeescript.js\"></script>\n<style>.CodeMirror {border-top: 1px solid silver; border-bottom: 1px solid silver;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">CoffeeScript</a>\n  </ul>\n</div>\n\n<article>\n<h2>CoffeeScript mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n# CoffeeScript mode for CodeMirror\n# Copyright (c) 2011 Jeff Pickhardt, released under\n# the MIT License.\n#\n# Modified from the Python CodeMirror mode, which also is \n# under the MIT License Copyright (c) 2010 Timothy Farrell.\n#\n# The following script, Underscore.coffee, is used to \n# demonstrate CoffeeScript mode for CodeMirror.\n#\n# To download CoffeeScript mode for CodeMirror, go to:\n# https://github.com/pickhardt/coffeescript-codemirror-mode\n\n# **Underscore.coffee\n# (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.**\n# Underscore is freely distributable under the terms of the\n# [MIT license](http://en.wikipedia.org/wiki/MIT_License).\n# Portions of Underscore are inspired by or borrowed from\n# [Prototype.js](http://prototypejs.org/api), Oliver Steele's\n# [Functional](http://osteele.com), and John Resig's\n# [Micro-Templating](http://ejohn.org).\n# For all details and documentation:\n# http://documentcloud.github.com/underscore/\n\n\n# Baseline setup\n# --------------\n\n# Establish the root object, `window` in the browser, or `global` on the server.\nroot = this\n\n\n# Save the previous value of the `_` variable.\npreviousUnderscore = root._\n\n### Multiline\n    comment\n###\n\n# Establish the object that gets thrown to break out of a loop iteration.\n# `StopIteration` is SOP on Mozilla.\nbreaker = if typeof(StopIteration) is 'undefined' then '__break__' else StopIteration\n\n\n#### Docco style single line comment (title)\n\n\n# Helper function to escape **RegExp** contents, because JS doesn't have one.\nescapeRegExp = (string) -> string.replace(/([.*+?^${}()|[\\]\\/\\\\])/g, '\\\\$1')\n\n\n# Save bytes in the minified (but not gzipped) version:\nArrayProto = Array.prototype\nObjProto = Object.prototype\n\n\n# Create quick reference variables for speed access to core prototypes.\nslice = ArrayProto.slice\nunshift = ArrayProto.unshift\ntoString = ObjProto.toString\nhasOwnProperty = ObjProto.hasOwnProperty\npropertyIsEnumerable = ObjProto.propertyIsEnumerable\n\n\n# All **ECMA5** native implementations we hope to use are declared here.\nnativeForEach = ArrayProto.forEach\nnativeMap = ArrayProto.map\nnativeReduce = ArrayProto.reduce\nnativeReduceRight = ArrayProto.reduceRight\nnativeFilter = ArrayProto.filter\nnativeEvery = ArrayProto.every\nnativeSome = ArrayProto.some\nnativeIndexOf = ArrayProto.indexOf\nnativeLastIndexOf = ArrayProto.lastIndexOf\nnativeIsArray = Array.isArray\nnativeKeys = Object.keys\n\n\n# Create a safe reference to the Underscore object for use below.\n_ = (obj) -> new wrapper(obj)\n\n\n# Export the Underscore object for **CommonJS**.\nif typeof(exports) != 'undefined' then exports._ = _\n\n\n# Export Underscore to global scope.\nroot._ = _\n\n\n# Current version.\n_.VERSION = '1.1.0'\n\n\n# Collection Functions\n# --------------------\n\n# The cornerstone, an **each** implementation.\n# Handles objects implementing **forEach**, arrays, and raw objects.\n_.each = (obj, iterator, context) ->\n  try\n    if nativeForEach and obj.forEach is nativeForEach\n      obj.forEach iterator, context\n    else if _.isNumber obj.length\n      iterator.call context, obj[i], i, obj for i in [0...obj.length]\n    else\n      iterator.call context, val, key, obj for own key, val of obj\n  catch e\n    throw e if e isnt breaker\n  obj\n\n\n# Return the results of applying the iterator to each element. Use JavaScript\n# 1.6's version of **map**, if possible.\n_.map = (obj, iterator, context) ->\n  return obj.map(iterator, context) if nativeMap and obj.map is nativeMap\n  results = []\n  _.each obj, (value, index, list) ->\n    results.push iterator.call context, value, index, list\n  results\n\n\n# **Reduce** builds up a single result from a list of values. Also known as\n# **inject**, or **foldl**. Uses JavaScript 1.8's version of **reduce**, if possible.\n_.reduce = (obj, iterator, memo, context) ->\n  if nativeReduce and obj.reduce is nativeReduce\n    iterator = _.bind iterator, context if context\n    return obj.reduce iterator, memo\n  _.each obj, (value, index, list) ->\n    memo = iterator.call context, memo, value, index, list\n  memo\n\n\n# The right-associative version of **reduce**, also known as **foldr**. Uses\n# JavaScript 1.8's version of **reduceRight**, if available.\n_.reduceRight = (obj, iterator, memo, context) ->\n  if nativeReduceRight and obj.reduceRight is nativeReduceRight\n    iterator = _.bind iterator, context if context\n    return obj.reduceRight iterator, memo\n  reversed = _.clone(_.toArray(obj)).reverse()\n  _.reduce reversed, iterator, memo, context\n\n\n# Return the first value which passes a truth test.\n_.detect = (obj, iterator, context) ->\n  result = null\n  _.each obj, (value, index, list) ->\n    if iterator.call context, value, index, list\n      result = value\n      _.breakLoop()\n  result\n\n\n# Return all the elements that pass a truth test. Use JavaScript 1.6's\n# **filter**, if it exists.\n_.filter = (obj, iterator, context) ->\n  return obj.filter iterator, context if nativeFilter and obj.filter is nativeFilter\n  results = []\n  _.each obj, (value, index, list) ->\n    results.push value if iterator.call context, value, index, list\n  results\n\n\n# Return all the elements for which a truth test fails.\n_.reject = (obj, iterator, context) ->\n  results = []\n  _.each obj, (value, index, list) ->\n    results.push value if not iterator.call context, value, index, list\n  results\n\n\n# Determine whether all of the elements match a truth test. Delegate to\n# JavaScript 1.6's **every**, if it is present.\n_.every = (obj, iterator, context) ->\n  iterator ||= _.identity\n  return obj.every iterator, context if nativeEvery and obj.every is nativeEvery\n  result = true\n  _.each obj, (value, index, list) ->\n    _.breakLoop() unless (result = result and iterator.call(context, value, index, list))\n  result\n\n\n# Determine if at least one element in the object matches a truth test. Use\n# JavaScript 1.6's **some**, if it exists.\n_.some = (obj, iterator, context) ->\n  iterator ||= _.identity\n  return obj.some iterator, context if nativeSome and obj.some is nativeSome\n  result = false\n  _.each obj, (value, index, list) ->\n    _.breakLoop() if (result = iterator.call(context, value, index, list))\n  result\n\n\n# Determine if a given value is included in the array or object,\n# based on `===`.\n_.include = (obj, target) ->\n  return _.indexOf(obj, target) isnt -1 if nativeIndexOf and obj.indexOf is nativeIndexOf\n  return true for own key, val of obj when val is target\n  false\n\n\n# Invoke a method with arguments on every item in a collection.\n_.invoke = (obj, method) ->\n  args = _.rest arguments, 2\n  (if method then val[method] else val).apply(val, args) for val in obj\n\n\n# Convenience version of a common use case of **map**: fetching a property.\n_.pluck = (obj, key) ->\n  _.map(obj, (val) -> val[key])\n\n\n# Return the maximum item or (item-based computation).\n_.max = (obj, iterator, context) ->\n  return Math.max.apply(Math, obj) if not iterator and _.isArray(obj)\n  result = computed: -Infinity\n  _.each obj, (value, index, list) ->\n    computed = if iterator then iterator.call(context, value, index, list) else value\n    computed >= result.computed and (result = {value: value, computed: computed})\n  result.value\n\n\n# Return the minimum element (or element-based computation).\n_.min = (obj, iterator, context) ->\n  return Math.min.apply(Math, obj) if not iterator and _.isArray(obj)\n  result = computed: Infinity\n  _.each obj, (value, index, list) ->\n    computed = if iterator then iterator.call(context, value, index, list) else value\n    computed < result.computed and (result = {value: value, computed: computed})\n  result.value\n\n\n# Sort the object's values by a criterion produced by an iterator.\n_.sortBy = (obj, iterator, context) ->\n  _.pluck(((_.map obj, (value, index, list) ->\n    {value: value, criteria: iterator.call(context, value, index, list)}\n  ).sort((left, right) ->\n    a = left.criteria; b = right.criteria\n    if a < b then -1 else if a > b then 1 else 0\n  )), 'value')\n\n\n# Use a comparator function to figure out at what index an object should\n# be inserted so as to maintain order. Uses binary search.\n_.sortedIndex = (array, obj, iterator) ->\n  iterator ||= _.identity\n  low = 0\n  high = array.length\n  while low < high\n    mid = (low + high) >> 1\n    if iterator(array[mid]) < iterator(obj) then low = mid + 1 else high = mid\n  low\n\n\n# Convert anything iterable into a real, live array.\n_.toArray = (iterable) ->\n  return [] if (!iterable)\n  return iterable.toArray() if (iterable.toArray)\n  return iterable if (_.isArray(iterable))\n  return slice.call(iterable) if (_.isArguments(iterable))\n  _.values(iterable)\n\n\n# Return the number of elements in an object.\n_.size = (obj) -> _.toArray(obj).length\n\n\n# Array Functions\n# ---------------\n\n# Get the first element of an array. Passing `n` will return the first N\n# values in the array. Aliased as **head**. The `guard` check allows it to work\n# with **map**.\n_.first = (array, n, guard) ->\n  if n and not guard then slice.call(array, 0, n) else array[0]\n\n\n# Returns everything but the first entry of the array. Aliased as **tail**.\n# Especially useful on the arguments object. Passing an `index` will return\n# the rest of the values in the array from that index onward. The `guard`\n# check allows it to work with **map**.\n_.rest = (array, index, guard) ->\n  slice.call(array, if _.isUndefined(index) or guard then 1 else index)\n\n\n# Get the last element of an array.\n_.last = (array) -> array[array.length - 1]\n\n\n# Trim out all falsy values from an array.\n_.compact = (array) -> item for item in array when item\n\n\n# Return a completely flattened version of an array.\n_.flatten = (array) ->\n  _.reduce array, (memo, value) ->\n    return memo.concat(_.flatten(value)) if _.isArray value\n    memo.push value\n    memo\n  , []\n\n\n# Return a version of the array that does not contain the specified value(s).\n_.without = (array) ->\n  values = _.rest arguments\n  val for val in _.toArray(array) when not _.include values, val\n\n\n# Produce a duplicate-free version of the array. If the array has already\n# been sorted, you have the option of using a faster algorithm.\n_.uniq = (array, isSorted) ->\n  memo = []\n  for el, i in _.toArray array\n    memo.push el if i is 0 || (if isSorted is true then _.last(memo) isnt el else not _.include(memo, el))\n  memo\n\n\n# Produce an array that contains every item shared between all the\n# passed-in arrays.\n_.intersect = (array) ->\n  rest = _.rest arguments\n  _.select _.uniq(array), (item) ->\n    _.all rest, (other) ->\n      _.indexOf(other, item) >= 0\n\n\n# Zip together multiple lists into a single array -- elements that share\n# an index go together.\n_.zip = ->\n  length = _.max _.pluck arguments, 'length'\n  results = new Array length\n  for i in [0...length]\n    results[i] = _.pluck arguments, String i\n  results\n\n\n# If the browser doesn't supply us with **indexOf** (I'm looking at you, MSIE),\n# we need this function. Return the position of the first occurrence of an\n# item in an array, or -1 if the item is not included in the array.\n_.indexOf = (array, item) ->\n  return array.indexOf item if nativeIndexOf and array.indexOf is nativeIndexOf\n  i = 0; l = array.length\n  while l - i\n    if array[i] is item then return i else i++\n  -1\n\n\n# Provide JavaScript 1.6's **lastIndexOf**, delegating to the native function,\n# if possible.\n_.lastIndexOf = (array, item) ->\n  return array.lastIndexOf(item) if nativeLastIndexOf and array.lastIndexOf is nativeLastIndexOf\n  i = array.length\n  while i\n    if array[i] is item then return i else i--\n  -1\n\n\n# Generate an integer Array containing an arithmetic progression. A port of\n# [the native Python **range** function](http://docs.python.org/library/functions.html#range).\n_.range = (start, stop, step) ->\n  a = arguments\n  solo = a.length <= 1\n  i = start = if solo then 0 else a[0]\n  stop = if solo then a[0] else a[1]\n  step = a[2] or 1\n  len = Math.ceil((stop - start) / step)\n  return [] if len <= 0\n  range = new Array len\n  idx = 0\n  loop\n    return range if (if step > 0 then i - stop else stop - i) >= 0\n    range[idx] = i\n    idx++\n    i+= step\n\n\n# Function Functions\n# ------------------\n\n# Create a function bound to a given object (assigning `this`, and arguments,\n# optionally). Binding with arguments is also known as **curry**.\n_.bind = (func, obj) ->\n  args = _.rest arguments, 2\n  -> func.apply obj or root, args.concat arguments\n\n\n# Bind all of an object's methods to that object. Useful for ensuring that\n# all callbacks defined on an object belong to it.\n_.bindAll = (obj) ->\n  funcs = if arguments.length > 1 then _.rest(arguments) else _.functions(obj)\n  _.each funcs, (f) -> obj[f] = _.bind obj[f], obj\n  obj\n\n\n# Delays a function for the given number of milliseconds, and then calls\n# it with the arguments supplied.\n_.delay = (func, wait) ->\n  args = _.rest arguments, 2\n  setTimeout((-> func.apply(func, args)), wait)\n\n\n# Memoize an expensive function by storing its results.\n_.memoize = (func, hasher) ->\n  memo = {}\n  hasher or= _.identity\n  ->\n    key = hasher.apply this, arguments\n    return memo[key] if key of memo\n    memo[key] = func.apply this, arguments\n\n\n# Defers a function, scheduling it to run after the current call stack has\n# cleared.\n_.defer = (func) ->\n  _.delay.apply _, [func, 1].concat _.rest arguments\n\n\n# Returns the first function passed as an argument to the second,\n# allowing you to adjust arguments, run code before and after, and\n# conditionally execute the original function.\n_.wrap = (func, wrapper) ->\n  -> wrapper.apply wrapper, [func].concat arguments\n\n\n# Returns a function that is the composition of a list of functions, each\n# consuming the return value of the function that follows.\n_.compose = ->\n  funcs = arguments\n  ->\n    args = arguments\n    for i in [funcs.length - 1..0] by -1\n      args = [funcs[i].apply(this, args)]\n    args[0]\n\n\n# Object Functions\n# ----------------\n\n# Retrieve the names of an object's properties.\n_.keys = nativeKeys or (obj) ->\n  return _.range 0, obj.length if _.isArray(obj)\n  key for key, val of obj\n\n\n# Retrieve the values of an object's properties.\n_.values = (obj) ->\n  _.map obj, _.identity\n\n\n# Return a sorted list of the function names available in Underscore.\n_.functions = (obj) ->\n  _.filter(_.keys(obj), (key) -> _.isFunction(obj[key])).sort()\n\n\n# Extend a given object with all of the properties in a source object.\n_.extend = (obj) ->\n  for source in _.rest(arguments)\n    obj[key] = val for key, val of source\n  obj\n\n\n# Create a (shallow-cloned) duplicate of an object.\n_.clone = (obj) ->\n  return obj.slice 0 if _.isArray obj\n  _.extend {}, obj\n\n\n# Invokes interceptor with the obj, and then returns obj.\n# The primary purpose of this method is to \"tap into\" a method chain,\n# in order to perform operations on intermediate results within\n the chain.\n_.tap = (obj, interceptor) ->\n  interceptor obj\n  obj\n\n\n# Perform a deep comparison to check if two objects are equal.\n_.isEqual = (a, b) ->\n  # Check object identity.\n  return true if a is b\n  # Different types?\n  atype = typeof(a); btype = typeof(b)\n  return false if atype isnt btype\n  # Basic equality test (watch out for coercions).\n  return true if `a == b`\n  # One is falsy and the other truthy.\n  return false if (!a and b) or (a and !b)\n  # One of them implements an `isEqual()`?\n  return a.isEqual(b) if a.isEqual\n  # Check dates' integer values.\n  return a.getTime() is b.getTime() if _.isDate(a) and _.isDate(b)\n  # Both are NaN?\n  return false if _.isNaN(a) and _.isNaN(b)\n  # Compare regular expressions.\n  if _.isRegExp(a) and _.isRegExp(b)\n    return a.source is b.source and\n           a.global is b.global and\n           a.ignoreCase is b.ignoreCase and\n           a.multiline is b.multiline\n  # If a is not an object by this point, we can't handle it.\n  return false if atype isnt 'object'\n  # Check for different array lengths before comparing contents.\n  return false if a.length and (a.length isnt b.length)\n  # Nothing else worked, deep compare the contents.\n  aKeys = _.keys(a); bKeys = _.keys(b)\n  # Different object sizes?\n  return false if aKeys.length isnt bKeys.length\n  # Recursive comparison of contents.\n  return false for key, val of a when !(key of b) or !_.isEqual(val, b[key])\n  true\n\n\n# Is a given array or object empty?\n_.isEmpty = (obj) ->\n  return obj.length is 0 if _.isArray(obj) or _.isString(obj)\n  return false for own key of obj\n  true\n\n\n# Is a given value a DOM element?\n_.isElement = (obj) -> obj and obj.nodeType is 1\n\n\n# Is a given value an array?\n_.isArray = nativeIsArray or (obj) -> !!(obj and obj.concat and obj.unshift and not obj.callee)\n\n\n# Is a given variable an arguments object?\n_.isArguments = (obj) -> obj and obj.callee\n\n\n# Is the given value a function?\n_.isFunction = (obj) -> !!(obj and obj.constructor and obj.call and obj.apply)\n\n\n# Is the given value a string?\n_.isString = (obj) -> !!(obj is '' or (obj and obj.charCodeAt and obj.substr))\n\n\n# Is a given value a number?\n_.isNumber = (obj) -> (obj is +obj) or toString.call(obj) is '[object Number]'\n\n\n# Is a given value a boolean?\n_.isBoolean = (obj) -> obj is true or obj is false\n\n\n# Is a given value a Date?\n_.isDate = (obj) -> !!(obj and obj.getTimezoneOffset and obj.setUTCFullYear)\n\n\n# Is the given value a regular expression?\n_.isRegExp = (obj) -> !!(obj and obj.exec and (obj.ignoreCase or obj.ignoreCase is false))\n\n\n# Is the given value NaN -- this one is interesting. `NaN != NaN`, and\n# `isNaN(undefined) == true`, so we make sure it's a number first.\n_.isNaN = (obj) -> _.isNumber(obj) and window.isNaN(obj)\n\n\n# Is a given value equal to null?\n_.isNull = (obj) -> obj is null\n\n\n# Is a given variable undefined?\n_.isUndefined = (obj) -> typeof obj is 'undefined'\n\n\n# Utility Functions\n# -----------------\n\n# Run Underscore.js in noConflict mode, returning the `_` variable to its\n# previous owner. Returns a reference to the Underscore object.\n_.noConflict = ->\n  root._ = previousUnderscore\n  this\n\n\n# Keep the identity function around for default iterators.\n_.identity = (value) -> value\n\n\n# Run a function `n` times.\n_.times = (n, iterator, context) ->\n  iterator.call context, i for i in [0...n]\n\n\n# Break out of the middle of an iteration.\n_.breakLoop = -> throw breaker\n\n\n# Add your own custom functions to the Underscore object, ensuring that\n# they're correctly added to the OOP wrapper as well.\n_.mixin = (obj) ->\n  for name in _.functions(obj)\n    addToWrapper name, _[name] = obj[name]\n\n\n# Generate a unique integer id (unique within the entire client session).\n# Useful for temporary DOM ids.\nidCounter = 0\n_.uniqueId = (prefix) ->\n  (prefix or '') + idCounter++\n\n\n# By default, Underscore uses **ERB**-style template delimiters, change the\n# following template settings to use alternative delimiters.\n_.templateSettings = {\n  start: '<%'\n  end: '%>'\n  interpolate: /<%=(.+?)%>/g\n}\n\n\n# JavaScript templating a-la **ERB**, pilfered from John Resig's\n# *Secrets of the JavaScript Ninja*, page 83.\n# Single-quote fix from Rick Strahl.\n# With alterations for arbitrary delimiters, and to preserve whitespace.\n_.template = (str, data) ->\n  c = _.templateSettings\n  endMatch = new RegExp(\"'(?=[^\"+c.end.substr(0, 1)+\"]*\"+escapeRegExp(c.end)+\")\",\"g\")\n  fn = new Function 'obj',\n    'var p=[],print=function(){p.push.apply(p,arguments);};' +\n    'with(obj||{}){p.push(\\'' +\n    str.replace(/\\r/g, '\\\\r')\n       .replace(/\\n/g, '\\\\n')\n       .replace(/\\t/g, '\\\\t')\n       .replace(endMatch,\"���\")\n       .split(\"'\").join(\"\\\\'\")\n       .split(\"���\").join(\"'\")\n       .replace(c.interpolate, \"',$1,'\")\n       .split(c.start).join(\"');\")\n       .split(c.end).join(\"p.push('\") +\n       \"');}return p.join('');\"\n  if data then fn(data) else fn\n\n\n# Aliases\n# -------\n\n_.forEach = _.each\n_.foldl = _.inject = _.reduce\n_.foldr = _.reduceRight\n_.select = _.filter\n_.all = _.every\n_.any = _.some\n_.contains = _.include\n_.head = _.first\n_.tail = _.rest\n_.methods = _.functions\n\n\n# Setup the OOP Wrapper\n# ---------------------\n\n# If Underscore is called as a function, it returns a wrapped object that\n# can be used OO-style. This wrapper holds altered versions of all the\n# underscore functions. Wrapped objects may be chained.\nwrapper = (obj) ->\n  this._wrapped = obj\n  this\n\n\n# Helper function to continue chaining intermediate results.\nresult = (obj, chain) ->\n  if chain then _(obj).chain() else obj\n\n\n# A method to easily add functions to the OOP wrapper.\naddToWrapper = (name, func) ->\n  wrapper.prototype[name] = ->\n    args = _.toArray arguments\n    unshift.call args, this._wrapped\n    result func.apply(_, args), this._chain\n\n\n# Add all ofthe Underscore functions to the wrapper object.\n_.mixin _\n\n\n# Add all mutator Array functions to the wrapper.\n_.each ['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], (name) ->\n  method = Array.prototype[name]\n  wrapper.prototype[name] = ->\n    method.apply(this._wrapped, arguments)\n    result(this._wrapped, this._chain)\n\n\n# Add all accessor Array functions to the wrapper.\n_.each ['concat', 'join', 'slice'], (name) ->\n  method = Array.prototype[name]\n  wrapper.prototype[name] = ->\n    result(method.apply(this._wrapped, arguments), this._chain)\n\n\n# Start chaining a wrapped Underscore object.\nwrapper::chain = ->\n  this._chain = true\n  this\n\n\n# Extracts the result from a wrapped and chained object.\nwrapper::value = -> this._wrapped\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-coffeescript</code>.</p>\n\n    <p>The CoffeeScript mode was written by Jeff Pickhardt.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/commonlisp/commonlisp.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"commonlisp\", function (config) {\n  var assumeBody = /^with|^def|^do|^prog|case$|^cond$|bind$|when$|unless$/;\n  var numLiteral = /^(?:[+\\-]?(?:\\d+|\\d*\\.\\d+)(?:[efd][+\\-]?\\d+)?|[+\\-]?\\d+(?:\\/[+\\-]?\\d+)?|#b[+\\-]?[01]+|#o[+\\-]?[0-7]+|#x[+\\-]?[\\da-f]+)/;\n  var symbol = /[^\\s'`,@()\\[\\]\";]/;\n  var type;\n\n  function readSym(stream) {\n    var ch;\n    while (ch = stream.next()) {\n      if (ch == \"\\\\\") stream.next();\n      else if (!symbol.test(ch)) { stream.backUp(1); break; }\n    }\n    return stream.current();\n  }\n\n  function base(stream, state) {\n    if (stream.eatSpace()) {type = \"ws\"; return null;}\n    if (stream.match(numLiteral)) return \"number\";\n    var ch = stream.next();\n    if (ch == \"\\\\\") ch = stream.next();\n\n    if (ch == '\"') return (state.tokenize = inString)(stream, state);\n    else if (ch == \"(\") { type = \"open\"; return \"bracket\"; }\n    else if (ch == \")\" || ch == \"]\") { type = \"close\"; return \"bracket\"; }\n    else if (ch == \";\") { stream.skipToEnd(); type = \"ws\"; return \"comment\"; }\n    else if (/['`,@]/.test(ch)) return null;\n    else if (ch == \"|\") {\n      if (stream.skipTo(\"|\")) { stream.next(); return \"symbol\"; }\n      else { stream.skipToEnd(); return \"error\"; }\n    } else if (ch == \"#\") {\n      var ch = stream.next();\n      if (ch == \"[\") { type = \"open\"; return \"bracket\"; }\n      else if (/[+\\-=\\.']/.test(ch)) return null;\n      else if (/\\d/.test(ch) && stream.match(/^\\d*#/)) return null;\n      else if (ch == \"|\") return (state.tokenize = inComment)(stream, state);\n      else if (ch == \":\") { readSym(stream); return \"meta\"; }\n      else return \"error\";\n    } else {\n      var name = readSym(stream);\n      if (name == \".\") return null;\n      type = \"symbol\";\n      if (name == \"nil\" || name == \"t\") return \"atom\";\n      if (name.charAt(0) == \":\") return \"keyword\";\n      if (name.charAt(0) == \"&\") return \"variable-2\";\n      return \"variable\";\n    }\n  }\n\n  function inString(stream, state) {\n    var escaped = false, next;\n    while (next = stream.next()) {\n      if (next == '\"' && !escaped) { state.tokenize = base; break; }\n      escaped = !escaped && next == \"\\\\\";\n    }\n    return \"string\";\n  }\n\n  function inComment(stream, state) {\n    var next, last;\n    while (next = stream.next()) {\n      if (next == \"#\" && last == \"|\") { state.tokenize = base; break; }\n      last = next;\n    }\n    type = \"ws\";\n    return \"comment\";\n  }\n\n  return {\n    startState: function () {\n      return {ctx: {prev: null, start: 0, indentTo: 0}, tokenize: base};\n    },\n\n    token: function (stream, state) {\n      if (stream.sol() && typeof state.ctx.indentTo != \"number\")\n        state.ctx.indentTo = state.ctx.start + 1;\n\n      type = null;\n      var style = state.tokenize(stream, state);\n      if (type != \"ws\") {\n        if (state.ctx.indentTo == null) {\n          if (type == \"symbol\" && assumeBody.test(stream.current()))\n            state.ctx.indentTo = state.ctx.start + config.indentUnit;\n          else\n            state.ctx.indentTo = \"next\";\n        } else if (state.ctx.indentTo == \"next\") {\n          state.ctx.indentTo = stream.column();\n        }\n      }\n      if (type == \"open\") state.ctx = {prev: state.ctx, start: stream.column(), indentTo: null};\n      else if (type == \"close\") state.ctx = state.ctx.prev || state.ctx;\n      return style;\n    },\n\n    indent: function (state, _textAfter) {\n      var i = state.ctx.indentTo;\n      return typeof i == \"number\" ? i : state.ctx.start + 1;\n    },\n\n    lineComment: \";;\",\n    blockCommentStart: \"#|\",\n    blockCommentEnd: \"|#\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-common-lisp\", \"commonlisp\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/commonlisp/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Common Lisp mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"commonlisp.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Common Lisp</a>\n  </ul>\n</div>\n\n<article>\n<h2>Common Lisp mode</h2>\n<form><textarea id=\"code\" name=\"code\">(in-package :cl-postgres)\n\n;; These are used to synthesize reader and writer names for integer\n;; reading/writing functions when the amount of bytes and the\n;; signedness is known. Both the macro that creates the functions and\n;; some macros that use them create names this way.\n(eval-when (:compile-toplevel :load-toplevel :execute)\n  (defun integer-reader-name (bytes signed)\n    (intern (with-standard-io-syntax\n              (format nil \"~a~a~a~a\" '#:read- (if signed \"\" '#:u) '#:int bytes))))\n  (defun integer-writer-name (bytes signed)\n    (intern (with-standard-io-syntax\n              (format nil \"~a~a~a~a\" '#:write- (if signed \"\" '#:u) '#:int bytes)))))\n\n(defmacro integer-reader (bytes)\n  \"Create a function to read integers from a binary stream.\"\n  (let ((bits (* bytes 8)))\n    (labels ((return-form (signed)\n               (if signed\n                   `(if (logbitp ,(1- bits) result)\n                        (dpb result (byte ,(1- bits) 0) -1)\n                        result)\n                   `result))\n             (generate-reader (signed)\n               `(defun ,(integer-reader-name bytes signed) (socket)\n                  (declare (type stream socket)\n                           #.*optimize*)\n                  ,(if (= bytes 1)\n                       `(let ((result (the (unsigned-byte 8) (read-byte socket))))\n                          (declare (type (unsigned-byte 8) result))\n                          ,(return-form signed))\n                       `(let ((result 0))\n                          (declare (type (unsigned-byte ,bits) result))\n                          ,@(loop :for byte :from (1- bytes) :downto 0\n                                   :collect `(setf (ldb (byte 8 ,(* 8 byte)) result)\n                                                   (the (unsigned-byte 8) (read-byte socket))))\n                          ,(return-form signed))))))\n      `(progn\n;; This causes weird errors on SBCL in some circumstances. Disabled for now.\n;;         (declaim (inline ,(integer-reader-name bytes t)\n;;                          ,(integer-reader-name bytes nil)))\n         (declaim (ftype (function (t) (signed-byte ,bits))\n                         ,(integer-reader-name bytes t)))\n         ,(generate-reader t)\n         (declaim (ftype (function (t) (unsigned-byte ,bits))\n                         ,(integer-reader-name bytes nil)))\n         ,(generate-reader nil)))))\n\n(defmacro integer-writer (bytes)\n  \"Create a function to write integers to a binary stream.\"\n  (let ((bits (* 8 bytes)))\n    `(progn\n      (declaim (inline ,(integer-writer-name bytes t)\n                       ,(integer-writer-name bytes nil)))\n      (defun ,(integer-writer-name bytes nil) (socket value)\n        (declare (type stream socket)\n                 (type (unsigned-byte ,bits) value)\n                 #.*optimize*)\n        ,@(if (= bytes 1)\n              `((write-byte value socket))\n              (loop :for byte :from (1- bytes) :downto 0\n                    :collect `(write-byte (ldb (byte 8 ,(* byte 8)) value)\n                               socket)))\n        (values))\n      (defun ,(integer-writer-name bytes t) (socket value)\n        (declare (type stream socket)\n                 (type (signed-byte ,bits) value)\n                 #.*optimize*)\n        ,@(if (= bytes 1)\n              `((write-byte (ldb (byte 8 0) value) socket))\n              (loop :for byte :from (1- bytes) :downto 0\n                    :collect `(write-byte (ldb (byte 8 ,(* byte 8)) value)\n                               socket)))\n        (values)))))\n\n;; All the instances of the above that we need.\n\n(integer-reader 1)\n(integer-reader 2)\n(integer-reader 4)\n(integer-reader 8)\n\n(integer-writer 1)\n(integer-writer 2)\n(integer-writer 4)\n\n(defun write-bytes (socket bytes)\n  \"Write a byte-array to a stream.\"\n  (declare (type stream socket)\n           (type (simple-array (unsigned-byte 8)) bytes)\n           #.*optimize*)\n  (write-sequence bytes socket))\n\n(defun write-str (socket string)\n  \"Write a null-terminated string to a stream \\(encoding it when UTF-8\nsupport is enabled.).\"\n  (declare (type stream socket)\n           (type string string)\n           #.*optimize*)\n  (enc-write-string string socket)\n  (write-uint1 socket 0))\n\n(declaim (ftype (function (t unsigned-byte)\n                          (simple-array (unsigned-byte 8) (*)))\n                read-bytes))\n(defun read-bytes (socket length)\n  \"Read a byte array of the given length from a stream.\"\n  (declare (type stream socket)\n           (type fixnum length)\n           #.*optimize*)\n  (let ((result (make-array length :element-type '(unsigned-byte 8))))\n    (read-sequence result socket)\n    result))\n\n(declaim (ftype (function (t) string) read-str))\n(defun read-str (socket)\n  \"Read a null-terminated string from a stream. Takes care of encoding\nwhen UTF-8 support is enabled.\"\n  (declare (type stream socket)\n           #.*optimize*)\n  (enc-read-string socket :null-terminated t))\n\n(defun skip-bytes (socket length)\n  \"Skip a given number of bytes in a binary stream.\"\n  (declare (type stream socket)\n           (type (unsigned-byte 32) length)\n           #.*optimize*)\n  (dotimes (i length)\n    (read-byte socket)))\n\n(defun skip-str (socket)\n  \"Skip a null-terminated string.\"\n  (declare (type stream socket)\n           #.*optimize*)\n  (loop :for char :of-type fixnum = (read-byte socket)\n        :until (zerop char)))\n\n(defun ensure-socket-is-closed (socket &amp;key abort)\n  (when (open-stream-p socket)\n    (handler-case\n        (close socket :abort abort)\n      (error (error)\n        (warn \"Ignoring the error which happened while trying to close PostgreSQL socket: ~A\" error)))))\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {lineNumbers: true});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-common-lisp</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/css/css.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"css\", function(config, parserConfig) {\n  if (!parserConfig.propertyKeywords) parserConfig = CodeMirror.resolveMode(\"text/css\");\n\n  var indentUnit = config.indentUnit,\n      tokenHooks = parserConfig.tokenHooks,\n      mediaTypes = parserConfig.mediaTypes || {},\n      mediaFeatures = parserConfig.mediaFeatures || {},\n      propertyKeywords = parserConfig.propertyKeywords || {},\n      nonStandardPropertyKeywords = parserConfig.nonStandardPropertyKeywords || {},\n      colorKeywords = parserConfig.colorKeywords || {},\n      valueKeywords = parserConfig.valueKeywords || {},\n      fontProperties = parserConfig.fontProperties || {},\n      allowNested = parserConfig.allowNested;\n\n  var type, override;\n  function ret(style, tp) { type = tp; return style; }\n\n  // Tokenizers\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (tokenHooks[ch]) {\n      var result = tokenHooks[ch](stream, state);\n      if (result !== false) return result;\n    }\n    if (ch == \"@\") {\n      stream.eatWhile(/[\\w\\\\\\-]/);\n      return ret(\"def\", stream.current());\n    } else if (ch == \"=\" || (ch == \"~\" || ch == \"|\") && stream.eat(\"=\")) {\n      return ret(null, \"compare\");\n    } else if (ch == \"\\\"\" || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    } else if (ch == \"#\") {\n      stream.eatWhile(/[\\w\\\\\\-]/);\n      return ret(\"atom\", \"hash\");\n    } else if (ch == \"!\") {\n      stream.match(/^\\s*\\w*/);\n      return ret(\"keyword\", \"important\");\n    } else if (/\\d/.test(ch) || ch == \".\" && stream.eat(/\\d/)) {\n      stream.eatWhile(/[\\w.%]/);\n      return ret(\"number\", \"unit\");\n    } else if (ch === \"-\") {\n      if (/[\\d.]/.test(stream.peek())) {\n        stream.eatWhile(/[\\w.%]/);\n        return ret(\"number\", \"unit\");\n      } else if (stream.match(/^\\w+-/)) {\n        return ret(\"meta\", \"meta\");\n      }\n    } else if (/[,+>*\\/]/.test(ch)) {\n      return ret(null, \"select-op\");\n    } else if (ch == \".\" && stream.match(/^-?[_a-z][_a-z0-9-]*/i)) {\n      return ret(\"qualifier\", \"qualifier\");\n    } else if (/[:;{}\\[\\]\\(\\)]/.test(ch)) {\n      return ret(null, ch);\n    } else if (ch == \"u\" && stream.match(\"rl(\")) {\n      stream.backUp(1);\n      state.tokenize = tokenParenthesized;\n      return ret(\"property\", \"word\");\n    } else if (/[\\w\\\\\\-]/.test(ch)) {\n      stream.eatWhile(/[\\w\\\\\\-]/);\n      return ret(\"property\", \"word\");\n    } else {\n      return ret(null, null);\n    }\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && !escaped) {\n          if (quote == \")\") stream.backUp(1);\n          break;\n        }\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      if (ch == quote || !escaped && quote != \")\") state.tokenize = null;\n      return ret(\"string\", \"string\");\n    };\n  }\n\n  function tokenParenthesized(stream, state) {\n    stream.next(); // Must be '('\n    if (!stream.match(/\\s*[\\\"\\')]/, false))\n      state.tokenize = tokenString(\")\");\n    else\n      state.tokenize = null;\n    return ret(null, \"(\");\n  }\n\n  // Context management\n\n  function Context(type, indent, prev) {\n    this.type = type;\n    this.indent = indent;\n    this.prev = prev;\n  }\n\n  function pushContext(state, stream, type) {\n    state.context = new Context(type, stream.indentation() + indentUnit, state.context);\n    return type;\n  }\n\n  function popContext(state) {\n    state.context = state.context.prev;\n    return state.context.type;\n  }\n\n  function pass(type, stream, state) {\n    return states[state.context.type](type, stream, state);\n  }\n  function popAndPass(type, stream, state, n) {\n    for (var i = n || 1; i > 0; i--)\n      state.context = state.context.prev;\n    return pass(type, stream, state);\n  }\n\n  // Parser\n\n  function wordAsValue(stream) {\n    var word = stream.current().toLowerCase();\n    if (valueKeywords.hasOwnProperty(word))\n      override = \"atom\";\n    else if (colorKeywords.hasOwnProperty(word))\n      override = \"keyword\";\n    else\n      override = \"variable\";\n  }\n\n  var states = {};\n\n  states.top = function(type, stream, state) {\n    if (type == \"{\") {\n      return pushContext(state, stream, \"block\");\n    } else if (type == \"}\" && state.context.prev) {\n      return popContext(state);\n    } else if (type == \"@media\") {\n      return pushContext(state, stream, \"media\");\n    } else if (type == \"@font-face\") {\n      return \"font_face_before\";\n    } else if (/^@(-(moz|ms|o|webkit)-)?keyframes$/.test(type)) {\n      return \"keyframes\";\n    } else if (type && type.charAt(0) == \"@\") {\n      return pushContext(state, stream, \"at\");\n    } else if (type == \"hash\") {\n      override = \"builtin\";\n    } else if (type == \"word\") {\n      override = \"tag\";\n    } else if (type == \"variable-definition\") {\n      return \"maybeprop\";\n    } else if (type == \"interpolation\") {\n      return pushContext(state, stream, \"interpolation\");\n    } else if (type == \":\") {\n      return \"pseudo\";\n    } else if (allowNested && type == \"(\") {\n      return pushContext(state, stream, \"parens\");\n    }\n    return state.context.type;\n  };\n\n  states.block = function(type, stream, state) {\n    if (type == \"word\") {\n      var word = stream.current().toLowerCase();\n      if (propertyKeywords.hasOwnProperty(word)) {\n        override = \"property\";\n        return \"maybeprop\";\n      } else if (nonStandardPropertyKeywords.hasOwnProperty(word)) {\n        override = \"string-2\";\n        return \"maybeprop\";\n      } else if (allowNested) {\n        override = stream.match(/^\\s*:/, false) ? \"property\" : \"tag\";\n        return \"block\";\n      } else {\n        override += \" error\";\n        return \"maybeprop\";\n      }\n    } else if (type == \"meta\") {\n      return \"block\";\n    } else if (!allowNested && (type == \"hash\" || type == \"qualifier\")) {\n      override = \"error\";\n      return \"block\";\n    } else {\n      return states.top(type, stream, state);\n    }\n  };\n\n  states.maybeprop = function(type, stream, state) {\n    if (type == \":\") return pushContext(state, stream, \"prop\");\n    return pass(type, stream, state);\n  };\n\n  states.prop = function(type, stream, state) {\n    if (type == \";\") return popContext(state);\n    if (type == \"{\" && allowNested) return pushContext(state, stream, \"propBlock\");\n    if (type == \"}\" || type == \"{\") return popAndPass(type, stream, state);\n    if (type == \"(\") return pushContext(state, stream, \"parens\");\n\n    if (type == \"hash\" && !/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(stream.current())) {\n      override += \" error\";\n    } else if (type == \"word\") {\n      wordAsValue(stream);\n    } else if (type == \"interpolation\") {\n      return pushContext(state, stream, \"interpolation\");\n    }\n    return \"prop\";\n  };\n\n  states.propBlock = function(type, _stream, state) {\n    if (type == \"}\") return popContext(state);\n    if (type == \"word\") { override = \"property\"; return \"maybeprop\"; }\n    return state.context.type;\n  };\n\n  states.parens = function(type, stream, state) {\n    if (type == \"{\" || type == \"}\") return popAndPass(type, stream, state);\n    if (type == \")\") return popContext(state);\n    if (type == \"(\") return pushContext(state, stream, \"parens\");\n    if (type == \"word\") wordAsValue(stream);\n    return \"parens\";\n  };\n\n  states.pseudo = function(type, stream, state) {\n    if (type == \"word\") {\n      override = \"variable-3\";\n      return state.context.type;\n    }\n    return pass(type, stream, state);\n  };\n\n  states.media = function(type, stream, state) {\n    if (type == \"(\") return pushContext(state, stream, \"media_parens\");\n    if (type == \"}\") return popAndPass(type, stream, state);\n    if (type == \"{\") return popContext(state) && pushContext(state, stream, allowNested ? \"block\" : \"top\");\n\n    if (type == \"word\") {\n      var word = stream.current().toLowerCase();\n      if (word == \"only\" || word == \"not\" || word == \"and\")\n        override = \"keyword\";\n      else if (mediaTypes.hasOwnProperty(word))\n        override = \"attribute\";\n      else if (mediaFeatures.hasOwnProperty(word))\n        override = \"property\";\n      else\n        override = \"error\";\n    }\n    return state.context.type;\n  };\n\n  states.media_parens = function(type, stream, state) {\n    if (type == \")\") return popContext(state);\n    if (type == \"{\" || type == \"}\") return popAndPass(type, stream, state, 2);\n    return states.media(type, stream, state);\n  };\n\n  states.font_face_before = function(type, stream, state) {\n    if (type == \"{\")\n      return pushContext(state, stream, \"font_face\");\n    return pass(type, stream, state);\n  };\n\n  states.font_face = function(type, stream, state) {\n    if (type == \"}\") return popContext(state);\n    if (type == \"word\") {\n      if (!fontProperties.hasOwnProperty(stream.current().toLowerCase()))\n        override = \"error\";\n      else\n        override = \"property\";\n      return \"maybeprop\";\n    }\n    return \"font_face\";\n  };\n\n  states.keyframes = function(type, stream, state) {\n    if (type == \"word\") { override = \"variable\"; return \"keyframes\"; }\n    if (type == \"{\") return pushContext(state, stream, \"top\");\n    return pass(type, stream, state);\n  };\n\n  states.at = function(type, stream, state) {\n    if (type == \";\") return popContext(state);\n    if (type == \"{\" || type == \"}\") return popAndPass(type, stream, state);\n    if (type == \"word\") override = \"tag\";\n    else if (type == \"hash\") override = \"builtin\";\n    return \"at\";\n  };\n\n  states.interpolation = function(type, stream, state) {\n    if (type == \"}\") return popContext(state);\n    if (type == \"{\" || type == \";\") return popAndPass(type, stream, state);\n    if (type != \"variable\") override = \"error\";\n    return \"interpolation\";\n  };\n\n  return {\n    startState: function(base) {\n      return {tokenize: null,\n              state: \"top\",\n              context: new Context(\"top\", base || 0, null)};\n    },\n\n    token: function(stream, state) {\n      if (!state.tokenize && stream.eatSpace()) return null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style && typeof style == \"object\") {\n        type = style[1];\n        style = style[0];\n      }\n      override = style;\n      state.state = states[state.state](type, stream, state);\n      return override;\n    },\n\n    indent: function(state, textAfter) {\n      var cx = state.context, ch = textAfter && textAfter.charAt(0);\n      var indent = cx.indent;\n      if (cx.type == \"prop\" && (ch == \"}\" || ch == \")\")) cx = cx.prev;\n      if (cx.prev &&\n          (ch == \"}\" && (cx.type == \"block\" || cx.type == \"top\" || cx.type == \"interpolation\" || cx.type == \"font_face\") ||\n           ch == \")\" && (cx.type == \"parens\" || cx.type == \"media_parens\") ||\n           ch == \"{\" && (cx.type == \"at\" || cx.type == \"media\"))) {\n        indent = cx.indent - indentUnit;\n        cx = cx.prev;\n      }\n      return indent;\n    },\n\n    electricChars: \"}\",\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\",\n    fold: \"brace\"\n  };\n});\n\n  function keySet(array) {\n    var keys = {};\n    for (var i = 0; i < array.length; ++i) {\n      keys[array[i]] = true;\n    }\n    return keys;\n  }\n\n  var mediaTypes_ = [\n    \"all\", \"aural\", \"braille\", \"handheld\", \"print\", \"projection\", \"screen\",\n    \"tty\", \"tv\", \"embossed\"\n  ], mediaTypes = keySet(mediaTypes_);\n\n  var mediaFeatures_ = [\n    \"width\", \"min-width\", \"max-width\", \"height\", \"min-height\", \"max-height\",\n    \"device-width\", \"min-device-width\", \"max-device-width\", \"device-height\",\n    \"min-device-height\", \"max-device-height\", \"aspect-ratio\",\n    \"min-aspect-ratio\", \"max-aspect-ratio\", \"device-aspect-ratio\",\n    \"min-device-aspect-ratio\", \"max-device-aspect-ratio\", \"color\", \"min-color\",\n    \"max-color\", \"color-index\", \"min-color-index\", \"max-color-index\",\n    \"monochrome\", \"min-monochrome\", \"max-monochrome\", \"resolution\",\n    \"min-resolution\", \"max-resolution\", \"scan\", \"grid\"\n  ], mediaFeatures = keySet(mediaFeatures_);\n\n  var propertyKeywords_ = [\n    \"align-content\", \"align-items\", \"align-self\", \"alignment-adjust\",\n    \"alignment-baseline\", \"anchor-point\", \"animation\", \"animation-delay\",\n    \"animation-direction\", \"animation-duration\", \"animation-fill-mode\",\n    \"animation-iteration-count\", \"animation-name\", \"animation-play-state\",\n    \"animation-timing-function\", \"appearance\", \"azimuth\", \"backface-visibility\",\n    \"background\", \"background-attachment\", \"background-clip\", \"background-color\",\n    \"background-image\", \"background-origin\", \"background-position\",\n    \"background-repeat\", \"background-size\", \"baseline-shift\", \"binding\",\n    \"bleed\", \"bookmark-label\", \"bookmark-level\", \"bookmark-state\",\n    \"bookmark-target\", \"border\", \"border-bottom\", \"border-bottom-color\",\n    \"border-bottom-left-radius\", \"border-bottom-right-radius\",\n    \"border-bottom-style\", \"border-bottom-width\", \"border-collapse\",\n    \"border-color\", \"border-image\", \"border-image-outset\",\n    \"border-image-repeat\", \"border-image-slice\", \"border-image-source\",\n    \"border-image-width\", \"border-left\", \"border-left-color\",\n    \"border-left-style\", \"border-left-width\", \"border-radius\", \"border-right\",\n    \"border-right-color\", \"border-right-style\", \"border-right-width\",\n    \"border-spacing\", \"border-style\", \"border-top\", \"border-top-color\",\n    \"border-top-left-radius\", \"border-top-right-radius\", \"border-top-style\",\n    \"border-top-width\", \"border-width\", \"bottom\", \"box-decoration-break\",\n    \"box-shadow\", \"box-sizing\", \"break-after\", \"break-before\", \"break-inside\",\n    \"caption-side\", \"clear\", \"clip\", \"color\", \"color-profile\", \"column-count\",\n    \"column-fill\", \"column-gap\", \"column-rule\", \"column-rule-color\",\n    \"column-rule-style\", \"column-rule-width\", \"column-span\", \"column-width\",\n    \"columns\", \"content\", \"counter-increment\", \"counter-reset\", \"crop\", \"cue\",\n    \"cue-after\", \"cue-before\", \"cursor\", \"direction\", \"display\",\n    \"dominant-baseline\", \"drop-initial-after-adjust\",\n    \"drop-initial-after-align\", \"drop-initial-before-adjust\",\n    \"drop-initial-before-align\", \"drop-initial-size\", \"drop-initial-value\",\n    \"elevation\", \"empty-cells\", \"fit\", \"fit-position\", \"flex\", \"flex-basis\",\n    \"flex-direction\", \"flex-flow\", \"flex-grow\", \"flex-shrink\", \"flex-wrap\",\n    \"float\", \"float-offset\", \"flow-from\", \"flow-into\", \"font\", \"font-feature-settings\",\n    \"font-family\", \"font-kerning\", \"font-language-override\", \"font-size\", \"font-size-adjust\",\n    \"font-stretch\", \"font-style\", \"font-synthesis\", \"font-variant\",\n    \"font-variant-alternates\", \"font-variant-caps\", \"font-variant-east-asian\",\n    \"font-variant-ligatures\", \"font-variant-numeric\", \"font-variant-position\",\n    \"font-weight\", \"grid\", \"grid-area\", \"grid-auto-columns\", \"grid-auto-flow\",\n    \"grid-auto-position\", \"grid-auto-rows\", \"grid-column\", \"grid-column-end\",\n    \"grid-column-start\", \"grid-row\", \"grid-row-end\", \"grid-row-start\",\n    \"grid-template\", \"grid-template-areas\", \"grid-template-columns\",\n    \"grid-template-rows\", \"hanging-punctuation\", \"height\", \"hyphens\",\n    \"icon\", \"image-orientation\", \"image-rendering\", \"image-resolution\",\n    \"inline-box-align\", \"justify-content\", \"left\", \"letter-spacing\",\n    \"line-break\", \"line-height\", \"line-stacking\", \"line-stacking-ruby\",\n    \"line-stacking-shift\", \"line-stacking-strategy\", \"list-style\",\n    \"list-style-image\", \"list-style-position\", \"list-style-type\", \"margin\",\n    \"margin-bottom\", \"margin-left\", \"margin-right\", \"margin-top\",\n    \"marker-offset\", \"marks\", \"marquee-direction\", \"marquee-loop\",\n    \"marquee-play-count\", \"marquee-speed\", \"marquee-style\", \"max-height\",\n    \"max-width\", \"min-height\", \"min-width\", \"move-to\", \"nav-down\", \"nav-index\",\n    \"nav-left\", \"nav-right\", \"nav-up\", \"object-fit\", \"object-position\",\n    \"opacity\", \"order\", \"orphans\", \"outline\",\n    \"outline-color\", \"outline-offset\", \"outline-style\", \"outline-width\",\n    \"overflow\", \"overflow-style\", \"overflow-wrap\", \"overflow-x\", \"overflow-y\",\n    \"padding\", \"padding-bottom\", \"padding-left\", \"padding-right\", \"padding-top\",\n    \"page\", \"page-break-after\", \"page-break-before\", \"page-break-inside\",\n    \"page-policy\", \"pause\", \"pause-after\", \"pause-before\", \"perspective\",\n    \"perspective-origin\", \"pitch\", \"pitch-range\", \"play-during\", \"position\",\n    \"presentation-level\", \"punctuation-trim\", \"quotes\", \"region-break-after\",\n    \"region-break-before\", \"region-break-inside\", \"region-fragment\",\n    \"rendering-intent\", \"resize\", \"rest\", \"rest-after\", \"rest-before\", \"richness\",\n    \"right\", \"rotation\", \"rotation-point\", \"ruby-align\", \"ruby-overhang\",\n    \"ruby-position\", \"ruby-span\", \"shape-image-threshold\", \"shape-inside\", \"shape-margin\",\n    \"shape-outside\", \"size\", \"speak\", \"speak-as\", \"speak-header\",\n    \"speak-numeral\", \"speak-punctuation\", \"speech-rate\", \"stress\", \"string-set\",\n    \"tab-size\", \"table-layout\", \"target\", \"target-name\", \"target-new\",\n    \"target-position\", \"text-align\", \"text-align-last\", \"text-decoration\",\n    \"text-decoration-color\", \"text-decoration-line\", \"text-decoration-skip\",\n    \"text-decoration-style\", \"text-emphasis\", \"text-emphasis-color\",\n    \"text-emphasis-position\", \"text-emphasis-style\", \"text-height\",\n    \"text-indent\", \"text-justify\", \"text-outline\", \"text-overflow\", \"text-shadow\",\n    \"text-size-adjust\", \"text-space-collapse\", \"text-transform\", \"text-underline-position\",\n    \"text-wrap\", \"top\", \"transform\", \"transform-origin\", \"transform-style\",\n    \"transition\", \"transition-delay\", \"transition-duration\",\n    \"transition-property\", \"transition-timing-function\", \"unicode-bidi\",\n    \"vertical-align\", \"visibility\", \"voice-balance\", \"voice-duration\",\n    \"voice-family\", \"voice-pitch\", \"voice-range\", \"voice-rate\", \"voice-stress\",\n    \"voice-volume\", \"volume\", \"white-space\", \"widows\", \"width\", \"word-break\",\n    \"word-spacing\", \"word-wrap\", \"z-index\",\n    // SVG-specific\n    \"clip-path\", \"clip-rule\", \"mask\", \"enable-background\", \"filter\", \"flood-color\",\n    \"flood-opacity\", \"lighting-color\", \"stop-color\", \"stop-opacity\", \"pointer-events\",\n    \"color-interpolation\", \"color-interpolation-filters\",\n    \"color-rendering\", \"fill\", \"fill-opacity\", \"fill-rule\", \"image-rendering\",\n    \"marker\", \"marker-end\", \"marker-mid\", \"marker-start\", \"shape-rendering\", \"stroke\",\n    \"stroke-dasharray\", \"stroke-dashoffset\", \"stroke-linecap\", \"stroke-linejoin\",\n    \"stroke-miterlimit\", \"stroke-opacity\", \"stroke-width\", \"text-rendering\",\n    \"baseline-shift\", \"dominant-baseline\", \"glyph-orientation-horizontal\",\n    \"glyph-orientation-vertical\", \"text-anchor\", \"writing-mode\"\n  ], propertyKeywords = keySet(propertyKeywords_);\n\n  var nonStandardPropertyKeywords_ = [\n    \"scrollbar-arrow-color\", \"scrollbar-base-color\", \"scrollbar-dark-shadow-color\",\n    \"scrollbar-face-color\", \"scrollbar-highlight-color\", \"scrollbar-shadow-color\",\n    \"scrollbar-3d-light-color\", \"scrollbar-track-color\", \"shape-inside\",\n    \"searchfield-cancel-button\", \"searchfield-decoration\", \"searchfield-results-button\",\n    \"searchfield-results-decoration\", \"zoom\"\n  ], nonStandardPropertyKeywords = keySet(nonStandardPropertyKeywords_);\n\n  var colorKeywords_ = [\n    \"aliceblue\", \"antiquewhite\", \"aqua\", \"aquamarine\", \"azure\", \"beige\",\n    \"bisque\", \"black\", \"blanchedalmond\", \"blue\", \"blueviolet\", \"brown\",\n    \"burlywood\", \"cadetblue\", \"chartreuse\", \"chocolate\", \"coral\", \"cornflowerblue\",\n    \"cornsilk\", \"crimson\", \"cyan\", \"darkblue\", \"darkcyan\", \"darkgoldenrod\",\n    \"darkgray\", \"darkgreen\", \"darkkhaki\", \"darkmagenta\", \"darkolivegreen\",\n    \"darkorange\", \"darkorchid\", \"darkred\", \"darksalmon\", \"darkseagreen\",\n    \"darkslateblue\", \"darkslategray\", \"darkturquoise\", \"darkviolet\",\n    \"deeppink\", \"deepskyblue\", \"dimgray\", \"dodgerblue\", \"firebrick\",\n    \"floralwhite\", \"forestgreen\", \"fuchsia\", \"gainsboro\", \"ghostwhite\",\n    \"gold\", \"goldenrod\", \"gray\", \"grey\", \"green\", \"greenyellow\", \"honeydew\",\n    \"hotpink\", \"indianred\", \"indigo\", \"ivory\", \"khaki\", \"lavender\",\n    \"lavenderblush\", \"lawngreen\", \"lemonchiffon\", \"lightblue\", \"lightcoral\",\n    \"lightcyan\", \"lightgoldenrodyellow\", \"lightgray\", \"lightgreen\", \"lightpink\",\n    \"lightsalmon\", \"lightseagreen\", \"lightskyblue\", \"lightslategray\",\n    \"lightsteelblue\", \"lightyellow\", \"lime\", \"limegreen\", \"linen\", \"magenta\",\n    \"maroon\", \"mediumaquamarine\", \"mediumblue\", \"mediumorchid\", \"mediumpurple\",\n    \"mediumseagreen\", \"mediumslateblue\", \"mediumspringgreen\", \"mediumturquoise\",\n    \"mediumvioletred\", \"midnightblue\", \"mintcream\", \"mistyrose\", \"moccasin\",\n    \"navajowhite\", \"navy\", \"oldlace\", \"olive\", \"olivedrab\", \"orange\", \"orangered\",\n    \"orchid\", \"palegoldenrod\", \"palegreen\", \"paleturquoise\", \"palevioletred\",\n    \"papayawhip\", \"peachpuff\", \"peru\", \"pink\", \"plum\", \"powderblue\",\n    \"purple\", \"rebeccapurple\", \"red\", \"rosybrown\", \"royalblue\", \"saddlebrown\",\n    \"salmon\", \"sandybrown\", \"seagreen\", \"seashell\", \"sienna\", \"silver\", \"skyblue\",\n    \"slateblue\", \"slategray\", \"snow\", \"springgreen\", \"steelblue\", \"tan\",\n    \"teal\", \"thistle\", \"tomato\", \"turquoise\", \"violet\", \"wheat\", \"white\",\n    \"whitesmoke\", \"yellow\", \"yellowgreen\"\n  ], colorKeywords = keySet(colorKeywords_);\n\n  var valueKeywords_ = [\n    \"above\", \"absolute\", \"activeborder\", \"activecaption\", \"afar\",\n    \"after-white-space\", \"ahead\", \"alias\", \"all\", \"all-scroll\", \"alternate\",\n    \"always\", \"amharic\", \"amharic-abegede\", \"antialiased\", \"appworkspace\",\n    \"arabic-indic\", \"armenian\", \"asterisks\", \"auto\", \"avoid\", \"avoid-column\", \"avoid-page\",\n    \"avoid-region\", \"background\", \"backwards\", \"baseline\", \"below\", \"bidi-override\", \"binary\",\n    \"bengali\", \"blink\", \"block\", \"block-axis\", \"bold\", \"bolder\", \"border\", \"border-box\",\n    \"both\", \"bottom\", \"break\", \"break-all\", \"break-word\", \"button\", \"button-bevel\",\n    \"buttonface\", \"buttonhighlight\", \"buttonshadow\", \"buttontext\", \"cambodian\",\n    \"capitalize\", \"caps-lock-indicator\", \"caption\", \"captiontext\", \"caret\",\n    \"cell\", \"center\", \"checkbox\", \"circle\", \"cjk-earthly-branch\",\n    \"cjk-heavenly-stem\", \"cjk-ideographic\", \"clear\", \"clip\", \"close-quote\",\n    \"col-resize\", \"collapse\", \"column\", \"compact\", \"condensed\", \"contain\", \"content\",\n    \"content-box\", \"context-menu\", \"continuous\", \"copy\", \"cover\", \"crop\",\n    \"cross\", \"crosshair\", \"currentcolor\", \"cursive\", \"dashed\", \"decimal\",\n    \"decimal-leading-zero\", \"default\", \"default-button\", \"destination-atop\",\n    \"destination-in\", \"destination-out\", \"destination-over\", \"devanagari\",\n    \"disc\", \"discard\", \"document\", \"dot-dash\", \"dot-dot-dash\", \"dotted\",\n    \"double\", \"down\", \"e-resize\", \"ease\", \"ease-in\", \"ease-in-out\", \"ease-out\",\n    \"element\", \"ellipse\", \"ellipsis\", \"embed\", \"end\", \"ethiopic\", \"ethiopic-abegede\",\n    \"ethiopic-abegede-am-et\", \"ethiopic-abegede-gez\", \"ethiopic-abegede-ti-er\",\n    \"ethiopic-abegede-ti-et\", \"ethiopic-halehame-aa-er\",\n    \"ethiopic-halehame-aa-et\", \"ethiopic-halehame-am-et\",\n    \"ethiopic-halehame-gez\", \"ethiopic-halehame-om-et\",\n    \"ethiopic-halehame-sid-et\", \"ethiopic-halehame-so-et\",\n    \"ethiopic-halehame-ti-er\", \"ethiopic-halehame-ti-et\",\n    \"ethiopic-halehame-tig\", \"ew-resize\", \"expanded\", \"extra-condensed\",\n    \"extra-expanded\", \"fantasy\", \"fast\", \"fill\", \"fixed\", \"flat\", \"footnotes\",\n    \"forwards\", \"from\", \"geometricPrecision\", \"georgian\", \"graytext\", \"groove\",\n    \"gujarati\", \"gurmukhi\", \"hand\", \"hangul\", \"hangul-consonant\", \"hebrew\",\n    \"help\", \"hidden\", \"hide\", \"higher\", \"highlight\", \"highlighttext\",\n    \"hiragana\", \"hiragana-iroha\", \"horizontal\", \"hsl\", \"hsla\", \"icon\", \"ignore\",\n    \"inactiveborder\", \"inactivecaption\", \"inactivecaptiontext\", \"infinite\",\n    \"infobackground\", \"infotext\", \"inherit\", \"initial\", \"inline\", \"inline-axis\",\n    \"inline-block\", \"inline-table\", \"inset\", \"inside\", \"intrinsic\", \"invert\",\n    \"italic\", \"justify\", \"kannada\", \"katakana\", \"katakana-iroha\", \"keep-all\", \"khmer\",\n    \"landscape\", \"lao\", \"large\", \"larger\", \"left\", \"level\", \"lighter\",\n    \"line-through\", \"linear\", \"lines\", \"list-item\", \"listbox\", \"listitem\",\n    \"local\", \"logical\", \"loud\", \"lower\", \"lower-alpha\", \"lower-armenian\",\n    \"lower-greek\", \"lower-hexadecimal\", \"lower-latin\", \"lower-norwegian\",\n    \"lower-roman\", \"lowercase\", \"ltr\", \"malayalam\", \"match\",\n    \"media-controls-background\", \"media-current-time-display\",\n    \"media-fullscreen-button\", \"media-mute-button\", \"media-play-button\",\n    \"media-return-to-realtime-button\", \"media-rewind-button\",\n    \"media-seek-back-button\", \"media-seek-forward-button\", \"media-slider\",\n    \"media-sliderthumb\", \"media-time-remaining-display\", \"media-volume-slider\",\n    \"media-volume-slider-container\", \"media-volume-sliderthumb\", \"medium\",\n    \"menu\", \"menulist\", \"menulist-button\", \"menulist-text\",\n    \"menulist-textfield\", \"menutext\", \"message-box\", \"middle\", \"min-intrinsic\",\n    \"mix\", \"mongolian\", \"monospace\", \"move\", \"multiple\", \"myanmar\", \"n-resize\",\n    \"narrower\", \"ne-resize\", \"nesw-resize\", \"no-close-quote\", \"no-drop\",\n    \"no-open-quote\", \"no-repeat\", \"none\", \"normal\", \"not-allowed\", \"nowrap\",\n    \"ns-resize\", \"nw-resize\", \"nwse-resize\", \"oblique\", \"octal\", \"open-quote\",\n    \"optimizeLegibility\", \"optimizeSpeed\", \"oriya\", \"oromo\", \"outset\",\n    \"outside\", \"outside-shape\", \"overlay\", \"overline\", \"padding\", \"padding-box\",\n    \"painted\", \"page\", \"paused\", \"persian\", \"plus-darker\", \"plus-lighter\", \"pointer\",\n    \"polygon\", \"portrait\", \"pre\", \"pre-line\", \"pre-wrap\", \"preserve-3d\", \"progress\", \"push-button\",\n    \"radio\", \"read-only\", \"read-write\", \"read-write-plaintext-only\", \"rectangle\", \"region\",\n    \"relative\", \"repeat\", \"repeat-x\", \"repeat-y\", \"reset\", \"reverse\", \"rgb\", \"rgba\",\n    \"ridge\", \"right\", \"round\", \"row-resize\", \"rtl\", \"run-in\", \"running\",\n    \"s-resize\", \"sans-serif\", \"scroll\", \"scrollbar\", \"se-resize\", \"searchfield\",\n    \"searchfield-cancel-button\", \"searchfield-decoration\",\n    \"searchfield-results-button\", \"searchfield-results-decoration\",\n    \"semi-condensed\", \"semi-expanded\", \"separate\", \"serif\", \"show\", \"sidama\",\n    \"single\", \"skip-white-space\", \"slide\", \"slider-horizontal\",\n    \"slider-vertical\", \"sliderthumb-horizontal\", \"sliderthumb-vertical\", \"slow\",\n    \"small\", \"small-caps\", \"small-caption\", \"smaller\", \"solid\", \"somali\",\n    \"source-atop\", \"source-in\", \"source-out\", \"source-over\", \"space\", \"square\",\n    \"square-button\", \"start\", \"static\", \"status-bar\", \"stretch\", \"stroke\",\n    \"sub\", \"subpixel-antialiased\", \"super\", \"sw-resize\", \"table\",\n    \"table-caption\", \"table-cell\", \"table-column\", \"table-column-group\",\n    \"table-footer-group\", \"table-header-group\", \"table-row\", \"table-row-group\",\n    \"telugu\", \"text\", \"text-bottom\", \"text-top\", \"textarea\", \"textfield\", \"thai\",\n    \"thick\", \"thin\", \"threeddarkshadow\", \"threedface\", \"threedhighlight\",\n    \"threedlightshadow\", \"threedshadow\", \"tibetan\", \"tigre\", \"tigrinya-er\",\n    \"tigrinya-er-abegede\", \"tigrinya-et\", \"tigrinya-et-abegede\", \"to\", \"top\",\n    \"transparent\", \"ultra-condensed\", \"ultra-expanded\", \"underline\", \"up\",\n    \"upper-alpha\", \"upper-armenian\", \"upper-greek\", \"upper-hexadecimal\",\n    \"upper-latin\", \"upper-norwegian\", \"upper-roman\", \"uppercase\", \"urdu\", \"url\",\n    \"vertical\", \"vertical-text\", \"visible\", \"visibleFill\", \"visiblePainted\",\n    \"visibleStroke\", \"visual\", \"w-resize\", \"wait\", \"wave\", \"wider\",\n    \"window\", \"windowframe\", \"windowtext\", \"x-large\", \"x-small\", \"xor\",\n    \"xx-large\", \"xx-small\"\n  ], valueKeywords = keySet(valueKeywords_);\n\n  var fontProperties_ = [\n    \"font-family\", \"src\", \"unicode-range\", \"font-variant\", \"font-feature-settings\",\n    \"font-stretch\", \"font-weight\", \"font-style\"\n  ], fontProperties = keySet(fontProperties_);\n\n  var allWords = mediaTypes_.concat(mediaFeatures_).concat(propertyKeywords_)\n    .concat(nonStandardPropertyKeywords_).concat(colorKeywords_).concat(valueKeywords_);\n  CodeMirror.registerHelper(\"hintWords\", \"css\", allWords);\n\n  function tokenCComment(stream, state) {\n    var maybeEnd = false, ch;\n    while ((ch = stream.next()) != null) {\n      if (maybeEnd && ch == \"/\") {\n        state.tokenize = null;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return [\"comment\", \"comment\"];\n  }\n\n  function tokenSGMLComment(stream, state) {\n    if (stream.skipTo(\"-->\")) {\n      stream.match(\"-->\");\n      state.tokenize = null;\n    } else {\n      stream.skipToEnd();\n    }\n    return [\"comment\", \"comment\"];\n  }\n\n  CodeMirror.defineMIME(\"text/css\", {\n    mediaTypes: mediaTypes,\n    mediaFeatures: mediaFeatures,\n    propertyKeywords: propertyKeywords,\n    nonStandardPropertyKeywords: nonStandardPropertyKeywords,\n    colorKeywords: colorKeywords,\n    valueKeywords: valueKeywords,\n    fontProperties: fontProperties,\n    tokenHooks: {\n      \"<\": function(stream, state) {\n        if (!stream.match(\"!--\")) return false;\n        state.tokenize = tokenSGMLComment;\n        return tokenSGMLComment(stream, state);\n      },\n      \"/\": function(stream, state) {\n        if (!stream.eat(\"*\")) return false;\n        state.tokenize = tokenCComment;\n        return tokenCComment(stream, state);\n      }\n    },\n    name: \"css\"\n  });\n\n  CodeMirror.defineMIME(\"text/x-scss\", {\n    mediaTypes: mediaTypes,\n    mediaFeatures: mediaFeatures,\n    propertyKeywords: propertyKeywords,\n    nonStandardPropertyKeywords: nonStandardPropertyKeywords,\n    colorKeywords: colorKeywords,\n    valueKeywords: valueKeywords,\n    fontProperties: fontProperties,\n    allowNested: true,\n    tokenHooks: {\n      \"/\": function(stream, state) {\n        if (stream.eat(\"/\")) {\n          stream.skipToEnd();\n          return [\"comment\", \"comment\"];\n        } else if (stream.eat(\"*\")) {\n          state.tokenize = tokenCComment;\n          return tokenCComment(stream, state);\n        } else {\n          return [\"operator\", \"operator\"];\n        }\n      },\n      \":\": function(stream) {\n        if (stream.match(/\\s*\\{/))\n          return [null, \"{\"];\n        return false;\n      },\n      \"$\": function(stream) {\n        stream.match(/^[\\w-]+/);\n        if (stream.match(/^\\s*:/, false))\n          return [\"variable-2\", \"variable-definition\"];\n        return [\"variable-2\", \"variable\"];\n      },\n      \"#\": function(stream) {\n        if (!stream.eat(\"{\")) return false;\n        return [null, \"interpolation\"];\n      }\n    },\n    name: \"css\",\n    helperType: \"scss\"\n  });\n\n  CodeMirror.defineMIME(\"text/x-less\", {\n    mediaTypes: mediaTypes,\n    mediaFeatures: mediaFeatures,\n    propertyKeywords: propertyKeywords,\n    nonStandardPropertyKeywords: nonStandardPropertyKeywords,\n    colorKeywords: colorKeywords,\n    valueKeywords: valueKeywords,\n    fontProperties: fontProperties,\n    allowNested: true,\n    tokenHooks: {\n      \"/\": function(stream, state) {\n        if (stream.eat(\"/\")) {\n          stream.skipToEnd();\n          return [\"comment\", \"comment\"];\n        } else if (stream.eat(\"*\")) {\n          state.tokenize = tokenCComment;\n          return tokenCComment(stream, state);\n        } else {\n          return [\"operator\", \"operator\"];\n        }\n      },\n      \"@\": function(stream) {\n        if (stream.match(/^(charset|document|font-face|import|(-(moz|ms|o|webkit)-)?keyframes|media|namespace|page|supports)\\b/, false)) return false;\n        stream.eatWhile(/[\\w\\\\\\-]/);\n        if (stream.match(/^\\s*:/, false))\n          return [\"variable-2\", \"variable-definition\"];\n        return [\"variable-2\", \"variable\"];\n      },\n      \"&\": function() {\n        return [\"atom\", \"atom\"];\n      }\n    },\n    name: \"css\",\n    helperType: \"less\"\n  });\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/css/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: CSS mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"css.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">CSS</a>\n  </ul>\n</div>\n\n<article>\n<h2>CSS mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n/* Some example CSS */\n\n@import url(\"something.css\");\n\nbody {\n  margin: 0;\n  padding: 3em 6em;\n  font-family: tahoma, arial, sans-serif;\n  color: #000;\n}\n\n#navigation a {\n  font-weight: bold;\n  text-decoration: none !important;\n}\n\nh1 {\n  font-size: 2.5em;\n}\n\nh2 {\n  font-size: 1.7em;\n}\n\nh1:before, h2:before {\n  content: \"::\";\n}\n\ncode {\n  font-family: courier, monospace;\n  font-size: 80%;\n  color: #418A8A;\n}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/css</code>, <code>text/x-scss</code> (<a href=\"scss.html\">demo</a>), <code>text/x-less</code> (<a href=\"less.html\">demo</a>).</p>\n\n    <p><strong>Parsing/Highlighting Tests:</strong> <a href=\"../../test/index.html#css_*\">normal</a>,  <a href=\"../../test/index.html#verbose,css_*\">verbose</a>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/css/less.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: LESS mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"css.js\"></script>\n<style>.CodeMirror {border: 1px solid #ddd; line-height: 1.2;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">LESS</a>\n  </ul>\n</div>\n\n<article>\n<h2>LESS mode</h2>\n<form><textarea id=\"code\" name=\"code\">@media screen and (device-aspect-ratio: 16/9) { … }\n@media screen and (device-aspect-ratio: 1280/720) { … }\n@media screen and (device-aspect-ratio: 2560/1440) { … }\n\nhtml:lang(fr-be)\n\ntr:nth-child(2n+1) /* represents every odd row of an HTML table */\n\nimg:nth-of-type(2n+1) { float: right; }\nimg:nth-of-type(2n) { float: left; }\n\nbody > h2:not(:first-of-type):not(:last-of-type)\n\nhtml|*:not(:link):not(:visited)\n*|*:not(:hover)\np::first-line { text-transform: uppercase }\n\n@namespace foo url(http://www.example.com);\nfoo|h1 { color: blue }  /* first rule */\n\nspan[hello=\"Ocean\"][goodbye=\"Land\"]\n\nE[foo]{\n  padding:65px;\n}\n\ninput[type=\"search\"]::-webkit-search-decoration,\ninput[type=\"search\"]::-webkit-search-cancel-button {\n  -webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner { // Inner padding and border oddities in FF3/4\n  padding: 0;\n  border: 0;\n}\n.btn {\n  // reset here as of 2.0.3 due to Recess property order\n  border-color: #ccc;\n  border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);\n}\nfieldset span button, fieldset span input[type=\"file\"] {\n  font-size:12px;\n\tfont-family:Arial, Helvetica, sans-serif;\n}\n\n.rounded-corners (@radius: 5px) {\n  border-radius: @radius;\n  -webkit-border-radius: @radius;\n  -moz-border-radius: @radius;\n}\n\n@import url(\"something.css\");\n\n@light-blue:   hsl(190, 50%, 65%);\n\n#menu {\n  position: absolute;\n  width: 100%;\n  z-index: 3;\n  clear: both;\n  display: block;\n  background-color: @blue;\n  height: 42px;\n  border-top: 2px solid lighten(@alpha-blue, 20%);\n  border-bottom: 2px solid darken(@alpha-blue, 25%);\n  .box-shadow(0, 1px, 8px, 0.6);\n  -moz-box-shadow: 0 0 0 #000; // Because firefox sucks.\n\n  &.docked {\n    background-color: hsla(210, 60%, 40%, 0.4);\n  }\n  &:hover {\n    background-color: @blue;\n  }\n\n  #dropdown {\n    margin: 0 0 0 117px;\n    padding: 0;\n    padding-top: 5px;\n    display: none;\n    width: 190px;\n    border-top: 2px solid @medium;\n    color: @highlight;\n    border: 2px solid darken(@medium, 25%);\n    border-left-color: darken(@medium, 15%);\n    border-right-color: darken(@medium, 15%);\n    border-top-width: 0;\n    background-color: darken(@medium, 10%);\n    ul {\n      padding: 0px;  \n    }\n    li {\n      font-size: 14px;\n      display: block;\n      text-align: left;\n      padding: 0;\n      border: 0;\n      a {\n        display: block;\n        padding: 0px 15px;  \n        text-decoration: none;\n        color: white;  \n        &:hover {\n          background-color: darken(@medium, 15%);\n          text-decoration: none;\n        }\n      }\n    }\n    .border-radius(5px, bottom);\n    .box-shadow(0, 6px, 8px, 0.5);\n  }\n}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers : true,\n        matchBrackets : true,\n        mode: \"text/x-less\"\n      });\n    </script>\n\n    <p>The LESS mode is a sub-mode of the <a href=\"index.html\">CSS mode</a> (defined in <code>css.js</code>.</p>\n\n    <p><strong>Parsing/Highlighting Tests:</strong> <a href=\"../../test/index.html#less_*\">normal</a>,  <a href=\"../../test/index.html#verbose,less_*\">verbose</a>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/css/less_test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  \"use strict\";\n\n  var mode = CodeMirror.getMode({indentUnit: 2}, \"text/x-less\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), \"less\"); }\n\n  MT(\"variable\",\n     \"[variable-2 @base]: [atom #f04615];\",\n     \"[qualifier .class] {\",\n     \"  [property width]: [variable percentage]([number 0.5]); [comment // returns `50%`]\",\n     \"  [property color]: [variable saturate]([variable-2 @base], [number 5%]);\",\n     \"}\");\n\n  MT(\"amp\",\n     \"[qualifier .child], [qualifier .sibling] {\",\n     \"  [qualifier .parent] [atom &] {\",\n     \"    [property color]: [keyword black];\",\n     \"  }\",\n     \"  [atom &] + [atom &] {\",\n     \"    [property color]: [keyword red];\",\n     \"  }\",\n     \"}\");\n\n  MT(\"mixin\",\n     \"[qualifier .mixin] ([variable dark]; [variable-2 @color]) {\",\n     \"  [property color]: [variable darken]([variable-2 @color], [number 10%]);\",\n     \"}\",\n     \"[qualifier .mixin] ([variable light]; [variable-2 @color]) {\",\n     \"  [property color]: [variable lighten]([variable-2 @color], [number 10%]);\",\n     \"}\",\n     \"[qualifier .mixin] ([variable-2 @_]; [variable-2 @color]) {\",\n     \"  [property display]: [atom block];\",\n     \"}\",\n     \"[variable-2 @switch]: [variable light];\",\n     \"[qualifier .class] {\",\n     \"  [qualifier .mixin]([variable-2 @switch]; [atom #888]);\",\n     \"}\");\n\n  MT(\"nest\",\n     \"[qualifier .one] {\",\n     \"  [def @media] ([property width]: [number 400px]) {\",\n     \"    [property font-size]: [number 1.2em];\",\n     \"    [def @media] [attribute print] [keyword and] [property color] {\",\n     \"      [property color]: [keyword blue];\",\n     \"    }\",\n     \"  }\",\n     \"}\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/css/scss.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: SCSS mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"css.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">SCSS</a>\n  </ul>\n</div>\n\n<article>\n<h2>SCSS mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n/* Some example SCSS */\n\n@import \"compass/css3\";\n$variable: #333;\n\n$blue: #3bbfce;\n$margin: 16px;\n\n.content-navigation {\n  #nested {\n    background-color: black;\n  }\n  border-color: $blue;\n  color:\n    darken($blue, 9%);\n}\n\n.border {\n  padding: $margin / 2;\n  margin: $margin / 2;\n  border-color: $blue;\n}\n\n@mixin table-base {\n  th {\n    text-align: center;\n    font-weight: bold;\n  }\n  td, th {padding: 2px}\n}\n\ntable.hl {\n  margin: 2em 0;\n  td.ln {\n    text-align: right;\n  }\n}\n\nli {\n  font: {\n    family: serif;\n    weight: bold;\n    size: 1.2em;\n  }\n}\n\n@mixin left($dist) {\n  float: left;\n  margin-left: $dist;\n}\n\n#data {\n  @include left(10px);\n  @include table-base;\n}\n\n.source {\n  @include flow-into(target);\n  border: 10px solid green;\n  margin: 20px;\n  width: 200px; }\n\n.new-container {\n  @include flow-from(target);\n  border: 10px solid red;\n  margin: 20px;\n  width: 200px; }\n\nbody {\n  margin: 0;\n  padding: 3em 6em;\n  font-family: tahoma, arial, sans-serif;\n  color: #000;\n}\n\n@mixin yellow() {\n  background: yellow;\n}\n\n.big {\n  font-size: 14px;\n}\n\n.nested {\n  @include border-radius(3px);\n  @extend .big;\n  p {\n    background: whitesmoke;\n    a {\n      color: red;\n    }\n  }\n}\n\n#navigation a {\n  font-weight: bold;\n  text-decoration: none !important;\n}\n\nh1 {\n  font-size: 2.5em;\n}\n\nh2 {\n  font-size: 1.7em;\n}\n\nh1:before, h2:before {\n  content: \"::\";\n}\n\ncode {\n  font-family: courier, monospace;\n  font-size: 80%;\n  color: #418A8A;\n}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-scss\"\n      });\n    </script>\n\n    <p>The SCSS mode is a sub-mode of the <a href=\"index.html\">CSS mode</a> (defined in <code>css.js</code>.</p>\n\n    <p><strong>Parsing/Highlighting Tests:</strong> <a href=\"../../test/index.html#scss_*\">normal</a>,  <a href=\"../../test/index.html#verbose,scss_*\">verbose</a>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/css/scss_test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({indentUnit: 2}, \"text/x-scss\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), \"scss\"); }\n\n  MT('url_with_quotation',\n    \"[tag foo] { [property background]:[atom url]([string test.jpg]) }\");\n\n  MT('url_with_double_quotes',\n    \"[tag foo] { [property background]:[atom url]([string \\\"test.jpg\\\"]) }\");\n\n  MT('url_with_single_quotes',\n    \"[tag foo] { [property background]:[atom url]([string \\'test.jpg\\']) }\");\n\n  MT('string',\n    \"[def @import] [string \\\"compass/css3\\\"]\");\n\n  MT('important_keyword',\n    \"[tag foo] { [property background]:[atom url]([string \\'test.jpg\\']) [keyword !important] }\");\n\n  MT('variable',\n    \"[variable-2 $blue]:[atom #333]\");\n\n  MT('variable_as_attribute',\n    \"[tag foo] { [property color]:[variable-2 $blue] }\");\n\n  MT('numbers',\n    \"[tag foo] { [property padding]:[number 10px] [number 10] [number 10em] [number 8in] }\");\n\n  MT('number_percentage',\n    \"[tag foo] { [property width]:[number 80%] }\");\n\n  MT('selector',\n    \"[builtin #hello][qualifier .world]{}\");\n\n  MT('singleline_comment',\n    \"[comment // this is a comment]\");\n\n  MT('multiline_comment',\n    \"[comment /*foobar*/]\");\n\n  MT('attribute_with_hyphen',\n    \"[tag foo] { [property font-size]:[number 10px] }\");\n\n  MT('string_after_attribute',\n    \"[tag foo] { [property content]:[string \\\"::\\\"] }\");\n\n  MT('directives',\n    \"[def @include] [qualifier .mixin]\");\n\n  MT('basic_structure',\n    \"[tag p] { [property background]:[keyword red]; }\");\n\n  MT('nested_structure',\n    \"[tag p] { [tag a] { [property color]:[keyword red]; } }\");\n\n  MT('mixin',\n    \"[def @mixin] [tag table-base] {}\");\n\n  MT('number_without_semicolon',\n    \"[tag p] {[property width]:[number 12]}\",\n    \"[tag a] {[property color]:[keyword red];}\");\n\n  MT('atom_in_nested_block',\n    \"[tag p] { [tag a] { [property color]:[atom #000]; } }\");\n\n  MT('interpolation_in_property',\n    \"[tag foo] { #{[variable-2 $hello]}:[number 2]; }\");\n\n  MT('interpolation_in_selector',\n    \"[tag foo]#{[variable-2 $hello]} { [property color]:[atom #000]; }\");\n\n  MT('interpolation_error',\n    \"[tag foo]#{[error foo]} { [property color]:[atom #000]; }\");\n\n  MT(\"divide_operator\",\n    \"[tag foo] { [property width]:[number 4] [operator /] [number 2] }\");\n\n  MT('nested_structure_with_id_selector',\n    \"[tag p] { [builtin #hello] { [property color]:[keyword red]; } }\");\n\n  MT('indent_mixin',\n     \"[def @mixin] [tag container] (\",\n     \"  [variable-2 $a]: [number 10],\",\n     \"  [variable-2 $b]: [number 10])\",\n     \"{}\");\n\n  MT('indent_nested',\n     \"[tag foo] {\",\n     \"  [tag bar] {\",\n     \"  }\",\n     \"}\");\n\n  MT('indent_parentheses',\n     \"[tag foo] {\",\n     \"  [property color]: [variable darken]([variable-2 $blue],\",\n     \"    [number 9%]);\",\n     \"}\");\n\n  MT('indent_vardef',\n     \"[variable-2 $name]:\",\n     \"  [string 'val'];\",\n     \"[tag tag] {\",\n     \"  [tag inner] {\",\n     \"    [property margin]: [number 3px];\",\n     \"  }\",\n     \"}\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/css/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({indentUnit: 2}, \"css\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  // Error, because \"foobarhello\" is neither a known type or property, but\n  // property was expected (after \"and\"), and it should be in parenthese.\n  MT(\"atMediaUnknownType\",\n     \"[def @media] [attribute screen] [keyword and] [error foobarhello] { }\");\n\n  // Soft error, because \"foobarhello\" is not a known property or type.\n  MT(\"atMediaUnknownProperty\",\n     \"[def @media] [attribute screen] [keyword and] ([error foobarhello]) { }\");\n\n  // Make sure nesting works with media queries\n  MT(\"atMediaMaxWidthNested\",\n     \"[def @media] [attribute screen] [keyword and] ([property max-width]: [number 25px]) { [tag foo] { } }\");\n\n  MT(\"tagSelector\",\n     \"[tag foo] { }\");\n\n  MT(\"classSelector\",\n     \"[qualifier .foo-bar_hello] { }\");\n\n  MT(\"idSelector\",\n     \"[builtin #foo] { [error #foo] }\");\n\n  MT(\"tagSelectorUnclosed\",\n     \"[tag foo] { [property margin]: [number 0] } [tag bar] { }\");\n\n  MT(\"tagStringNoQuotes\",\n     \"[tag foo] { [property font-family]: [variable hello] [variable world]; }\");\n\n  MT(\"tagStringDouble\",\n     \"[tag foo] { [property font-family]: [string \\\"hello world\\\"]; }\");\n\n  MT(\"tagStringSingle\",\n     \"[tag foo] { [property font-family]: [string 'hello world']; }\");\n\n  MT(\"tagColorKeyword\",\n     \"[tag foo] {\",\n     \"  [property color]: [keyword black];\",\n     \"  [property color]: [keyword navy];\",\n     \"  [property color]: [keyword yellow];\",\n     \"}\");\n\n  MT(\"tagColorHex3\",\n     \"[tag foo] { [property background]: [atom #fff]; }\");\n\n  MT(\"tagColorHex6\",\n     \"[tag foo] { [property background]: [atom #ffffff]; }\");\n\n  MT(\"tagColorHex4\",\n     \"[tag foo] { [property background]: [atom&error #ffff]; }\");\n\n  MT(\"tagColorHexInvalid\",\n     \"[tag foo] { [property background]: [atom&error #ffg]; }\");\n\n  MT(\"tagNegativeNumber\",\n     \"[tag foo] { [property margin]: [number -5px]; }\");\n\n  MT(\"tagPositiveNumber\",\n     \"[tag foo] { [property padding]: [number 5px]; }\");\n\n  MT(\"tagVendor\",\n     \"[tag foo] { [meta -foo-][property box-sizing]: [meta -foo-][atom border-box]; }\");\n\n  MT(\"tagBogusProperty\",\n     \"[tag foo] { [property&error barhelloworld]: [number 0]; }\");\n\n  MT(\"tagTwoProperties\",\n     \"[tag foo] { [property margin]: [number 0]; [property padding]: [number 0]; }\");\n\n  MT(\"tagTwoPropertiesURL\",\n     \"[tag foo] { [property background]: [atom url]([string //example.com/foo.png]); [property padding]: [number 0]; }\");\n\n  MT(\"commentSGML\",\n     \"[comment <!--comment-->]\");\n\n  MT(\"commentSGML2\",\n     \"[comment <!--comment]\",\n     \"[comment -->] [tag div] {}\");\n\n  MT(\"indent_tagSelector\",\n     \"[tag strong], [tag em] {\",\n     \"  [property background]: [atom rgba](\",\n     \"    [number 255], [number 255], [number 0], [number .2]\",\n     \"  );\",\n     \"}\");\n\n  MT(\"indent_atMedia\",\n     \"[def @media] {\",\n     \"  [tag foo] {\",\n     \"    [property color]:\",\n     \"      [keyword yellow];\",\n     \"  }\",\n     \"}\");\n\n  MT(\"indent_comma\",\n     \"[tag foo] {\",\n     \"  [property font-family]: [variable verdana],\",\n     \"    [atom sans-serif];\",\n     \"}\");\n\n  MT(\"indent_parentheses\",\n     \"[tag foo]:[variable-3 before] {\",\n     \"  [property background]: [atom url](\",\n     \"[string     blahblah]\",\n     \"[string     etc]\",\n     \"[string   ]) [keyword !important];\",\n     \"}\");\n\n  MT(\"font_face\",\n     \"[def @font-face] {\",\n     \"  [property font-family]: [string 'myfont'];\",\n     \"  [error nonsense]: [string 'abc'];\",\n     \"  [property src]: [atom url]([string http://blah]),\",\n     \"    [atom url]([string http://foo]);\",\n     \"}\");\n\n  MT(\"empty_url\",\n     \"[def @import] [tag url]() [tag screen];\");\n\n  MT(\"parens\",\n     \"[qualifier .foo] {\",\n     \"  [property background-image]: [variable fade]([atom #000], [number 20%]);\",\n     \"  [property border-image]: [variable linear-gradient](\",\n     \"    [atom to] [atom bottom],\",\n     \"    [variable fade]([atom #000], [number 20%]) [number 0%],\",\n     \"    [variable fade]([atom #000], [number 20%]) [number 100%]\",\n     \"  );\",\n     \"}\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/cypher/cypher.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// By the Neo4j Team and contributors.\n// https://github.com/neo4j-contrib/CodeMirror\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n  var wordRegexp = function(words) {\n    return new RegExp(\"^(?:\" + words.join(\"|\") + \")$\", \"i\");\n  };\n\n  CodeMirror.defineMode(\"cypher\", function(config) {\n    var tokenBase = function(stream/*, state*/) {\n      var ch = stream.next(), curPunc = null;\n      if (ch === \"\\\"\" || ch === \"'\") {\n        stream.match(/.+?[\"']/);\n        return \"string\";\n      }\n      if (/[{}\\(\\),\\.;\\[\\]]/.test(ch)) {\n        curPunc = ch;\n        return \"node\";\n      } else if (ch === \"/\" && stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      } else if (operatorChars.test(ch)) {\n        stream.eatWhile(operatorChars);\n        return null;\n      } else {\n        stream.eatWhile(/[_\\w\\d]/);\n        if (stream.eat(\":\")) {\n          stream.eatWhile(/[\\w\\d_\\-]/);\n          return \"atom\";\n        }\n        var word = stream.current();\n        if (funcs.test(word)) return \"builtin\";\n        if (preds.test(word)) return \"def\";\n        if (keywords.test(word)) return \"keyword\";\n        return \"variable\";\n      }\n    };\n    var pushContext = function(state, type, col) {\n      return state.context = {\n        prev: state.context,\n        indent: state.indent,\n        col: col,\n        type: type\n      };\n    };\n    var popContext = function(state) {\n      state.indent = state.context.indent;\n      return state.context = state.context.prev;\n    };\n    var indentUnit = config.indentUnit;\n    var curPunc;\n    var funcs = wordRegexp([\"abs\", \"acos\", \"allShortestPaths\", \"asin\", \"atan\", \"atan2\", \"avg\", \"ceil\", \"coalesce\", \"collect\", \"cos\", \"cot\", \"count\", \"degrees\", \"e\", \"endnode\", \"exp\", \"extract\", \"filter\", \"floor\", \"haversin\", \"head\", \"id\", \"labels\", \"last\", \"left\", \"length\", \"log\", \"log10\", \"lower\", \"ltrim\", \"max\", \"min\", \"node\", \"nodes\", \"percentileCont\", \"percentileDisc\", \"pi\", \"radians\", \"rand\", \"range\", \"reduce\", \"rel\", \"relationship\", \"relationships\", \"replace\", \"right\", \"round\", \"rtrim\", \"shortestPath\", \"sign\", \"sin\", \"split\", \"sqrt\", \"startnode\", \"stdev\", \"stdevp\", \"str\", \"substring\", \"sum\", \"tail\", \"tan\", \"timestamp\", \"toFloat\", \"toInt\", \"trim\", \"type\", \"upper\"]);\n    var preds = wordRegexp([\"all\", \"and\", \"any\", \"has\", \"in\", \"none\", \"not\", \"or\", \"single\", \"xor\"]);\n    var keywords = wordRegexp([\"as\", \"asc\", \"ascending\", \"assert\", \"by\", \"case\", \"commit\", \"constraint\", \"create\", \"csv\", \"cypher\", \"delete\", \"desc\", \"descending\", \"distinct\", \"drop\", \"else\", \"end\", \"false\", \"fieldterminator\", \"foreach\", \"from\", \"headers\", \"in\", \"index\", \"is\", \"limit\", \"load\", \"match\", \"merge\", \"null\", \"on\", \"optional\", \"order\", \"periodic\", \"remove\", \"return\", \"scan\", \"set\", \"skip\", \"start\", \"then\", \"true\", \"union\", \"unique\", \"unwind\", \"using\", \"when\", \"where\", \"with\"]);\n    var operatorChars = /[*+\\-<>=&|~%^]/;\n\n    return {\n      startState: function(/*base*/) {\n        return {\n          tokenize: tokenBase,\n          context: null,\n          indent: 0,\n          col: 0\n        };\n      },\n      token: function(stream, state) {\n        if (stream.sol()) {\n          if (state.context && (state.context.align == null)) {\n            state.context.align = false;\n          }\n          state.indent = stream.indentation();\n        }\n        if (stream.eatSpace()) {\n          return null;\n        }\n        var style = state.tokenize(stream, state);\n        if (style !== \"comment\" && state.context && (state.context.align == null) && state.context.type !== \"pattern\") {\n          state.context.align = true;\n        }\n        if (curPunc === \"(\") {\n          pushContext(state, \")\", stream.column());\n        } else if (curPunc === \"[\") {\n          pushContext(state, \"]\", stream.column());\n        } else if (curPunc === \"{\") {\n          pushContext(state, \"}\", stream.column());\n        } else if (/[\\]\\}\\)]/.test(curPunc)) {\n          while (state.context && state.context.type === \"pattern\") {\n            popContext(state);\n          }\n          if (state.context && curPunc === state.context.type) {\n            popContext(state);\n          }\n        } else if (curPunc === \".\" && state.context && state.context.type === \"pattern\") {\n          popContext(state);\n        } else if (/atom|string|variable/.test(style) && state.context) {\n          if (/[\\}\\]]/.test(state.context.type)) {\n            pushContext(state, \"pattern\", stream.column());\n          } else if (state.context.type === \"pattern\" && !state.context.align) {\n            state.context.align = true;\n            state.context.col = stream.column();\n          }\n        }\n        return style;\n      },\n      indent: function(state, textAfter) {\n        var firstChar = textAfter && textAfter.charAt(0);\n        var context = state.context;\n        if (/[\\]\\}]/.test(firstChar)) {\n          while (context && context.type === \"pattern\") {\n            context = context.prev;\n          }\n        }\n        var closing = context && firstChar === context.type;\n        if (!context) return 0;\n        if (context.type === \"keywords\") return CodeMirror.commands.newlineAndIndent;\n        if (context.align) return context.col + (closing ? 0 : 1);\n        return context.indent + (closing ? 0 : indentUnit);\n      }\n    };\n  });\n\n  CodeMirror.modeExtensions[\"cypher\"] = {\n    autoFormatLineBreaks: function(text) {\n      var i, lines, reProcessedPortion;\n      var lines = text.split(\"\\n\");\n      var reProcessedPortion = /\\s+\\b(return|where|order by|match|with|skip|limit|create|delete|set)\\b\\s/g;\n      for (var i = 0; i < lines.length; i++)\n        lines[i] = lines[i].replace(reProcessedPortion, \" \\n$1 \").trim();\n      return lines.join(\"\\n\");\n    }\n  };\n\n  CodeMirror.defineMIME(\"application/x-cypher-query\", \"cypher\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/cypher/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Cypher Mode for CodeMirror</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\" />\n<link rel=\"stylesheet\" href=\"../../theme/neo.css\" />\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"cypher.js\"></script>\n<style>\n.CodeMirror {\n    border-top: 1px solid black;\n    border-bottom: 1px solid black;\n}\n        </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Cypher Mode for CodeMirror</a>\n  </ul>\n</div>\n\n<article>\n<h2>Cypher Mode for CodeMirror</h2>\n<form>\n            <textarea id=\"code\" name=\"code\">// Cypher Mode for CodeMirror, using the neo theme\nMATCH (joe { name: 'Joe' })-[:knows*2..2]-(friend_of_friend)\nWHERE NOT (joe)-[:knows]-(friend_of_friend)\nRETURN friend_of_friend.name, COUNT(*)\nORDER BY COUNT(*) DESC , friend_of_friend.name\n</textarea>\n            </form>\n            <p><strong>MIME types defined:</strong> \n            <code><a href=\"?mime=application/x-cypher-query\">application/x-cypher-query</a></code>\n        </p>\n<script>\nwindow.onload = function() {\n  var mime = 'application/x-cypher-query';\n  // get mime type\n  if (window.location.href.indexOf('mime=') > -1) {\n    mime = window.location.href.substr(window.location.href.indexOf('mime=') + 5);\n  }\n  window.editor = CodeMirror.fromTextArea(document.getElementById('code'), {\n    mode: mime,\n    indentWithTabs: true,\n    smartIndent: true,\n    lineNumbers: true,\n    matchBrackets : true,\n    autofocus: true,\n    theme: 'neo'\n  });\n};\n</script>\n\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/d/d.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"d\", function(config, parserConfig) {\n  var indentUnit = config.indentUnit,\n      statementIndentUnit = parserConfig.statementIndentUnit || indentUnit,\n      keywords = parserConfig.keywords || {},\n      builtin = parserConfig.builtin || {},\n      blockKeywords = parserConfig.blockKeywords || {},\n      atoms = parserConfig.atoms || {},\n      hooks = parserConfig.hooks || {},\n      multiLineStrings = parserConfig.multiLineStrings;\n  var isOperatorChar = /[+\\-*&%=<>!?|\\/]/;\n\n  var curPunc;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (hooks[ch]) {\n      var result = hooks[ch](stream, state);\n      if (result !== false) return result;\n    }\n    if (ch == '\"' || ch == \"'\" || ch == \"`\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      return \"number\";\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"+\")) {\n        state.tokenize = tokenComment;\n        return tokenNestedComment(stream, state);\n      }\n      if (stream.eat(\"*\")) {\n        state.tokenize = tokenComment;\n        return tokenComment(stream, state);\n      }\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n    }\n    if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_\\xa1-\\uffff]/);\n    var cur = stream.current();\n    if (keywords.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"keyword\";\n    }\n    if (builtin.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"builtin\";\n    }\n    if (atoms.propertyIsEnumerable(cur)) return \"atom\";\n    return \"variable\";\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {end = true; break;}\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !(escaped || multiLineStrings))\n        state.tokenize = null;\n      return \"string\";\n    };\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = null;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function tokenNestedComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = null;\n        break;\n      }\n      maybeEnd = (ch == \"+\");\n    }\n    return \"comment\";\n  }\n\n  function Context(indented, column, type, align, prev) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.align = align;\n    this.prev = prev;\n  }\n  function pushContext(state, col, type) {\n    var indent = state.indented;\n    if (state.context && state.context.type == \"statement\")\n      indent = state.context.indented;\n    return state.context = new Context(indent, col, type, null, state.context);\n  }\n  function popContext(state) {\n    var t = state.context.type;\n    if (t == \")\" || t == \"]\" || t == \"}\")\n      state.indented = state.context.indented;\n    return state.context = state.context.prev;\n  }\n\n  // Interface\n\n  return {\n    startState: function(basecolumn) {\n      return {\n        tokenize: null,\n        context: new Context((basecolumn || 0) - indentUnit, 0, \"top\", false),\n        indented: 0,\n        startOfLine: true\n      };\n    },\n\n    token: function(stream, state) {\n      var ctx = state.context;\n      if (stream.sol()) {\n        if (ctx.align == null) ctx.align = false;\n        state.indented = stream.indentation();\n        state.startOfLine = true;\n      }\n      if (stream.eatSpace()) return null;\n      curPunc = null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style == \"comment\" || style == \"meta\") return style;\n      if (ctx.align == null) ctx.align = true;\n\n      if ((curPunc == \";\" || curPunc == \":\" || curPunc == \",\") && ctx.type == \"statement\") popContext(state);\n      else if (curPunc == \"{\") pushContext(state, stream.column(), \"}\");\n      else if (curPunc == \"[\") pushContext(state, stream.column(), \"]\");\n      else if (curPunc == \"(\") pushContext(state, stream.column(), \")\");\n      else if (curPunc == \"}\") {\n        while (ctx.type == \"statement\") ctx = popContext(state);\n        if (ctx.type == \"}\") ctx = popContext(state);\n        while (ctx.type == \"statement\") ctx = popContext(state);\n      }\n      else if (curPunc == ctx.type) popContext(state);\n      else if (((ctx.type == \"}\" || ctx.type == \"top\") && curPunc != ';') || (ctx.type == \"statement\" && curPunc == \"newstatement\"))\n        pushContext(state, stream.column(), \"statement\");\n      state.startOfLine = false;\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != tokenBase && state.tokenize != null) return CodeMirror.Pass;\n      var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);\n      if (ctx.type == \"statement\" && firstChar == \"}\") ctx = ctx.prev;\n      var closing = firstChar == ctx.type;\n      if (ctx.type == \"statement\") return ctx.indented + (firstChar == \"{\" ? 0 : statementIndentUnit);\n      else if (ctx.align) return ctx.column + (closing ? 0 : 1);\n      else return ctx.indented + (closing ? 0 : indentUnit);\n    },\n\n    electricChars: \"{}\"\n  };\n});\n\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  var blockKeywords = \"body catch class do else enum for foreach foreach_reverse if in interface mixin \" +\n                      \"out scope struct switch try union unittest version while with\";\n\n  CodeMirror.defineMIME(\"text/x-d\", {\n    name: \"d\",\n    keywords: words(\"abstract alias align asm assert auto break case cast cdouble cent cfloat const continue \" +\n                    \"debug default delegate delete deprecated export extern final finally function goto immutable \" +\n                    \"import inout invariant is lazy macro module new nothrow override package pragma private \" +\n                    \"protected public pure ref return shared short static super synchronized template this \" +\n                    \"throw typedef typeid typeof volatile __FILE__ __LINE__ __gshared __traits __vector __parameters \" +\n                    blockKeywords),\n    blockKeywords: words(blockKeywords),\n    builtin: words(\"bool byte char creal dchar double float idouble ifloat int ireal long real short ubyte \" +\n                   \"ucent uint ulong ushort wchar wstring void size_t sizediff_t\"),\n    atoms: words(\"exit failure success true false null\"),\n    hooks: {\n      \"@\": function(stream, _state) {\n        stream.eatWhile(/[\\w\\$_]/);\n        return \"meta\";\n      }\n    }\n  });\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/d/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: D mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"d.js\"></script>\n<style>.CodeMirror {border: 2px inset #dee;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">D</a>\n  </ul>\n</div>\n\n<article>\n<h2>D mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n/* D demo code // copied from phobos/sd/metastrings.d */\n// Written in the D programming language.\n\n/**\nTemplates with which to do compile-time manipulation of strings.\n\nMacros:\n WIKI = Phobos/StdMetastrings\n\nCopyright: Copyright Digital Mars 2007 - 2009.\nLicense:   <a href=\"http://www.boost.org/LICENSE_1_0.txt\">Boost License 1.0</a>.\nAuthors:   $(WEB digitalmars.com, Walter Bright),\n           Don Clugston\nSource:    $(PHOBOSSRC std/_metastrings.d)\n*/\n/*\n         Copyright Digital Mars 2007 - 2009.\nDistributed under the Boost Software License, Version 1.0.\n   (See accompanying file LICENSE_1_0.txt or copy at\n         http://www.boost.org/LICENSE_1_0.txt)\n */\nmodule std.metastrings;\n\n/**\nFormats constants into a string at compile time.  Analogous to $(XREF\nstring,format).\n\nParameters:\n\nA = tuple of constants, which can be strings, characters, or integral\n    values.\n\nFormats:\n *    The formats supported are %s for strings, and %%\n *    for the % character.\nExample:\n---\nimport std.metastrings;\nimport std.stdio;\n\nvoid main()\n{\n  string s = Format!(\"Arg %s = %s\", \"foo\", 27);\n  writefln(s); // \"Arg foo = 27\"\n}\n * ---\n */\n\ntemplate Format(A...)\n{\n    static if (A.length == 0)\n        enum Format = \"\";\n    else static if (is(typeof(A[0]) : const(char)[]))\n        enum Format = FormatString!(A[0], A[1..$]);\n    else\n        enum Format = toStringNow!(A[0]) ~ Format!(A[1..$]);\n}\n\ntemplate FormatString(const(char)[] F, A...)\n{\n    static if (F.length == 0)\n        enum FormatString = Format!(A);\n    else static if (F.length == 1)\n        enum FormatString = F[0] ~ Format!(A);\n    else static if (F[0..2] == \"%s\")\n        enum FormatString\n            = toStringNow!(A[0]) ~ FormatString!(F[2..$],A[1..$]);\n    else static if (F[0..2] == \"%%\")\n        enum FormatString = \"%\" ~ FormatString!(F[2..$],A);\n    else\n    {\n        static assert(F[0] != '%', \"unrecognized format %\" ~ F[1]);\n        enum FormatString = F[0] ~ FormatString!(F[1..$],A);\n    }\n}\n\nunittest\n{\n    auto s = Format!(\"hel%slo\", \"world\", -138, 'c', true);\n    assert(s == \"helworldlo-138ctrue\", \"[\" ~ s ~ \"]\");\n}\n\n/**\n * Convert constant argument to a string.\n */\n\ntemplate toStringNow(ulong v)\n{\n    static if (v < 10)\n        enum toStringNow = \"\" ~ cast(char)(v + '0');\n    else\n        enum toStringNow = toStringNow!(v / 10) ~ toStringNow!(v % 10);\n}\n\nunittest\n{\n    static assert(toStringNow!(1uL << 62) == \"4611686018427387904\");\n}\n\n/// ditto\ntemplate toStringNow(long v)\n{\n    static if (v < 0)\n        enum toStringNow = \"-\" ~ toStringNow!(cast(ulong) -v);\n    else\n        enum toStringNow = toStringNow!(cast(ulong) v);\n}\n\nunittest\n{\n    static assert(toStringNow!(0x100000000) == \"4294967296\");\n    static assert(toStringNow!(-138L) == \"-138\");\n}\n\n/// ditto\ntemplate toStringNow(uint U)\n{\n    enum toStringNow = toStringNow!(cast(ulong)U);\n}\n\n/// ditto\ntemplate toStringNow(int I)\n{\n    enum toStringNow = toStringNow!(cast(long)I);\n}\n\n/// ditto\ntemplate toStringNow(bool B)\n{\n    enum toStringNow = B ? \"true\" : \"false\";\n}\n\n/// ditto\ntemplate toStringNow(string S)\n{\n    enum toStringNow = S;\n}\n\n/// ditto\ntemplate toStringNow(char C)\n{\n    enum toStringNow = \"\" ~ C;\n}\n\n\n/********\n * Parse unsigned integer literal from the start of string s.\n * returns:\n *    .value = the integer literal as a string,\n *    .rest = the string following the integer literal\n * Otherwise:\n *    .value = null,\n *    .rest = s\n */\n\ntemplate parseUinteger(const(char)[] s)\n{\n    static if (s.length == 0)\n    {\n        enum value = \"\";\n        enum rest = \"\";\n    }\n    else static if (s[0] >= '0' && s[0] <= '9')\n    {\n        enum value = s[0] ~ parseUinteger!(s[1..$]).value;\n        enum rest = parseUinteger!(s[1..$]).rest;\n    }\n    else\n    {\n        enum value = \"\";\n        enum rest = s;\n    }\n}\n\n/********\nParse integer literal optionally preceded by $(D '-') from the start\nof string $(D s).\n\nReturns:\n   .value = the integer literal as a string,\n   .rest = the string following the integer literal\n\nOtherwise:\n   .value = null,\n   .rest = s\n*/\n\ntemplate parseInteger(const(char)[] s)\n{\n    static if (s.length == 0)\n    {\n        enum value = \"\";\n        enum rest = \"\";\n    }\n    else static if (s[0] >= '0' && s[0] <= '9')\n    {\n        enum value = s[0] ~ parseUinteger!(s[1..$]).value;\n        enum rest = parseUinteger!(s[1..$]).rest;\n    }\n    else static if (s.length >= 2 &&\n            s[0] == '-' && s[1] >= '0' && s[1] <= '9')\n    {\n        enum value = s[0..2] ~ parseUinteger!(s[2..$]).value;\n        enum rest = parseUinteger!(s[2..$]).rest;\n    }\n    else\n    {\n        enum value = \"\";\n        enum rest = s;\n    }\n}\n\nunittest\n{\n    assert(parseUinteger!(\"1234abc\").value == \"1234\");\n    assert(parseUinteger!(\"1234abc\").rest == \"abc\");\n    assert(parseInteger!(\"-1234abc\").value == \"-1234\");\n    assert(parseInteger!(\"-1234abc\").rest == \"abc\");\n}\n\n/**\nDeprecated aliases held for backward compatibility.\n*/\ndeprecated alias toStringNow ToString;\n/// Ditto\ndeprecated alias parseUinteger ParseUinteger;\n/// Ditto\ndeprecated alias parseUinteger ParseInteger;\n\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        indentUnit: 4,\n        mode: \"text/x-d\"\n      });\n    </script>\n\n    <p>Simple mode that handle D-Syntax (<a href=\"http://www.dlang.org\">DLang Homepage</a>).</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-d</code>\n    .</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/diff/diff.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"diff\", function() {\n\n  var TOKEN_NAMES = {\n    '+': 'positive',\n    '-': 'negative',\n    '@': 'meta'\n  };\n\n  return {\n    token: function(stream) {\n      var tw_pos = stream.string.search(/[\\t ]+?$/);\n\n      if (!stream.sol() || tw_pos === 0) {\n        stream.skipToEnd();\n        return (\"error \" + (\n          TOKEN_NAMES[stream.string.charAt(0)] || '')).replace(/ $/, '');\n      }\n\n      var token_name = TOKEN_NAMES[stream.peek()] || stream.skipToEnd();\n\n      if (tw_pos === -1) {\n        stream.skipToEnd();\n      } else {\n        stream.pos = tw_pos;\n      }\n\n      return token_name;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-diff\", \"diff\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/diff/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Diff mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"diff.js\"></script>\n<style>\n      .CodeMirror {border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;}\n      span.cm-meta {color: #a0b !important;}\n      span.cm-error { background-color: black; opacity: 0.4;}\n      span.cm-error.cm-string { background-color: red; }\n      span.cm-error.cm-tag { background-color: #2b2; }\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Diff</a>\n  </ul>\n</div>\n\n<article>\n<h2>Diff mode</h2>\n<form><textarea id=\"code\" name=\"code\">\ndiff --git a/index.html b/index.html\nindex c1d9156..7764744 100644\n--- a/index.html\n+++ b/index.html\n@@ -95,7 +95,8 @@ StringStream.prototype = {\n     <script>\n       var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n         lineNumbers: true,\n-        autoMatchBrackets: true\n+        autoMatchBrackets: true,\n+      onGutterClick: function(x){console.log(x);}\n       });\n     </script>\n   </body>\ndiff --git a/lib/codemirror.js b/lib/codemirror.js\nindex 04646a9..9a39cc7 100644\n--- a/lib/codemirror.js\n+++ b/lib/codemirror.js\n@@ -399,10 +399,16 @@ var CodeMirror = (function() {\n     }\n \n     function onMouseDown(e) {\n-      var start = posFromMouse(e), last = start;    \n+      var start = posFromMouse(e), last = start, target = e.target();\n       if (!start) return;\n       setCursor(start.line, start.ch, false);\n       if (e.button() != 1) return;\n+      if (target.parentNode == gutter) {    \n+        if (options.onGutterClick)\n+          options.onGutterClick(indexOf(gutter.childNodes, target) + showingFrom);\n+        return;\n+      }\n+\n       if (!focused) onFocus();\n \n       e.stop();\n@@ -808,7 +814,7 @@ var CodeMirror = (function() {\n       for (var i = showingFrom; i < showingTo; ++i) {\n         var marker = lines[i].gutterMarker;\n         if (marker) html.push('<div class=\"' + marker.style + '\">' + htmlEscape(marker.text) + '</div>');\n-        else html.push(\"<div>\" + (options.lineNumbers ? i + 1 : \"\\u00a0\") + \"</div>\");\n+        else html.push(\"<div>\" + (options.lineNumbers ? i + options.firstLineNumber : \"\\u00a0\") + \"</div>\");\n       }\n       gutter.style.display = \"none\"; // TODO test whether this actually helps\n       gutter.innerHTML = html.join(\"\");\n@@ -1371,10 +1377,8 @@ var CodeMirror = (function() {\n         if (option == \"parser\") setParser(value);\n         else if (option === \"lineNumbers\") setLineNumbers(value);\n         else if (option === \"gutter\") setGutter(value);\n-        else if (option === \"readOnly\") options.readOnly = value;\n-        else if (option === \"indentUnit\") {options.indentUnit = indentUnit = value; setParser(options.parser);}\n-        else if (/^(?:enterMode|tabMode|indentWithTabs|readOnly|autoMatchBrackets|undoDepth)$/.test(option)) options[option] = value;\n-        else throw new Error(\"Can't set option \" + option);\n+        else if (option === \"indentUnit\") {options.indentUnit = value; setParser(options.parser);}\n+        else options[option] = value;\n       },\n       cursorCoords: cursorCoords,\n       undo: operation(undo),\n@@ -1402,7 +1406,8 @@ var CodeMirror = (function() {\n       replaceRange: operation(replaceRange),\n \n       operation: function(f){return operation(f)();},\n-      refresh: function(){updateDisplay([{from: 0, to: lines.length}]);}\n+      refresh: function(){updateDisplay([{from: 0, to: lines.length}]);},\n+      getInputField: function(){return input;}\n     };\n     return instance;\n   }\n@@ -1420,6 +1425,7 @@ var CodeMirror = (function() {\n     readOnly: false,\n     onChange: null,\n     onCursorActivity: null,\n+    onGutterClick: null,\n     autoMatchBrackets: false,\n     workTime: 200,\n     workDelay: 300,\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-diff</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/django/django.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../htmlmixed/htmlmixed\"),\n        require(\"../../addon/mode/overlay\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../htmlmixed/htmlmixed\",\n            \"../../addon/mode/overlay\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n\n  CodeMirror.defineMode(\"django:inner\", function() {\n    var keywords = [\"block\", \"endblock\", \"for\", \"endfor\", \"in\", \"true\", \"false\",\n                    \"loop\", \"none\", \"self\", \"super\", \"if\", \"endif\", \"as\", \"not\", \"and\",\n                    \"else\", \"import\", \"with\", \"endwith\", \"without\", \"context\", \"ifequal\", \"endifequal\",\n                    \"ifnotequal\", \"endifnotequal\", \"extends\", \"include\", \"load\", \"length\", \"comment\",\n                    \"endcomment\", \"empty\"];\n    keywords = new RegExp(\"^((\" + keywords.join(\")|(\") + \"))\\\\b\");\n\n    function tokenBase (stream, state) {\n      stream.eatWhile(/[^\\{]/);\n      var ch = stream.next();\n      if (ch == \"{\") {\n        if (ch = stream.eat(/\\{|%|#/)) {\n          state.tokenize = inTag(ch);\n          return \"tag\";\n        }\n      }\n    }\n    function inTag (close) {\n      if (close == \"{\") {\n        close = \"}\";\n      }\n      return function (stream, state) {\n        var ch = stream.next();\n        if ((ch == close) && stream.eat(\"}\")) {\n          state.tokenize = tokenBase;\n          return \"tag\";\n        }\n        if (stream.match(keywords)) {\n          return \"keyword\";\n        }\n        return close == \"#\" ? \"comment\" : \"string\";\n      };\n    }\n    return {\n      startState: function () {\n        return {tokenize: tokenBase};\n      },\n      token: function (stream, state) {\n        return state.tokenize(stream, state);\n      }\n    };\n  });\n\n  CodeMirror.defineMode(\"django\", function(config) {\n    var htmlBase = CodeMirror.getMode(config, \"text/html\");\n    var djangoInner = CodeMirror.getMode(config, \"django:inner\");\n    return CodeMirror.overlayMode(htmlBase, djangoInner);\n  });\n\n  CodeMirror.defineMIME(\"text/x-django\", \"django\");\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/django/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Django template mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/mode/overlay.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../htmlmixed/htmlmixed.js\"></script>\n<script src=\"django.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Django</a>\n  </ul>\n</div>\n\n<article>\n<h2>Django template mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n<!doctype html>\n<html>\n    <head>\n        <title>My Django web application</title>\n    </head>\n    <body>\n        <h1>\n            {{ page.title }}\n        </h1>\n        <ul class=\"my-list\">\n            {% for item in items %}\n                <li>{% item.name %}</li>\n            {% empty %}\n                <li>You have no items in your list.</li>\n            {% endfor %}\n        </ul>\n    </body>\n</html>\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        mode: \"django\",\n        indentUnit: 4,\n        indentWithTabs: true\n      });\n    </script>\n\n    <p>Mode for HTML with embedded Django template markup.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-django</code></p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/dtd/dtd.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/*\n  DTD mode\n  Ported to CodeMirror by Peter Kroon <plakroon@gmail.com>\n  Report bugs/issues here: https://github.com/codemirror/CodeMirror/issues\n  GitHub: @peterkroon\n*/\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"dtd\", function(config) {\n  var indentUnit = config.indentUnit, type;\n  function ret(style, tp) {type = tp; return style;}\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n\n    if (ch == \"<\" && stream.eat(\"!\") ) {\n      if (stream.eatWhile(/[\\-]/)) {\n        state.tokenize = tokenSGMLComment;\n        return tokenSGMLComment(stream, state);\n      } else if (stream.eatWhile(/[\\w]/)) return ret(\"keyword\", \"doindent\");\n    } else if (ch == \"<\" && stream.eat(\"?\")) { //xml declaration\n      state.tokenize = inBlock(\"meta\", \"?>\");\n      return ret(\"meta\", ch);\n    } else if (ch == \"#\" && stream.eatWhile(/[\\w]/)) return ret(\"atom\", \"tag\");\n    else if (ch == \"|\") return ret(\"keyword\", \"seperator\");\n    else if (ch.match(/[\\(\\)\\[\\]\\-\\.,\\+\\?>]/)) return ret(null, ch);//if(ch === \">\") return ret(null, \"endtag\"); else\n    else if (ch.match(/[\\[\\]]/)) return ret(\"rule\", ch);\n    else if (ch == \"\\\"\" || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    } else if (stream.eatWhile(/[a-zA-Z\\?\\+\\d]/)) {\n      var sc = stream.current();\n      if( sc.substr(sc.length-1,sc.length).match(/\\?|\\+/) !== null )stream.backUp(1);\n      return ret(\"tag\", \"tag\");\n    } else if (ch == \"%\" || ch == \"*\" ) return ret(\"number\", \"number\");\n    else {\n      stream.eatWhile(/[\\w\\\\\\-_%.{,]/);\n      return ret(null, null);\n    }\n  }\n\n  function tokenSGMLComment(stream, state) {\n    var dashes = 0, ch;\n    while ((ch = stream.next()) != null) {\n      if (dashes >= 2 && ch == \">\") {\n        state.tokenize = tokenBase;\n        break;\n      }\n      dashes = (ch == \"-\") ? dashes + 1 : 0;\n    }\n    return ret(\"comment\", \"comment\");\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && !escaped) {\n          state.tokenize = tokenBase;\n          break;\n        }\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      return ret(\"string\", \"tag\");\n    };\n  }\n\n  function inBlock(style, terminator) {\n    return function(stream, state) {\n      while (!stream.eol()) {\n        if (stream.match(terminator)) {\n          state.tokenize = tokenBase;\n          break;\n        }\n        stream.next();\n      }\n      return style;\n    };\n  }\n\n  return {\n    startState: function(base) {\n      return {tokenize: tokenBase,\n              baseIndent: base || 0,\n              stack: []};\n    },\n\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n\n      var context = state.stack[state.stack.length-1];\n      if (stream.current() == \"[\" || type === \"doindent\" || type == \"[\") state.stack.push(\"rule\");\n      else if (type === \"endtag\") state.stack[state.stack.length-1] = \"endtag\";\n      else if (stream.current() == \"]\" || type == \"]\" || (type == \">\" && context == \"rule\")) state.stack.pop();\n      else if (type == \"[\") state.stack.push(\"[\");\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      var n = state.stack.length;\n\n      if( textAfter.match(/\\]\\s+|\\]/) )n=n-1;\n      else if(textAfter.substr(textAfter.length-1, textAfter.length) === \">\"){\n        if(textAfter.substr(0,1) === \"<\")n;\n        else if( type == \"doindent\" && textAfter.length > 1 )n;\n        else if( type == \"doindent\")n--;\n        else if( type == \">\" && textAfter.length > 1)n;\n        else if( type == \"tag\" && textAfter !== \">\")n;\n        else if( type == \"tag\" && state.stack[state.stack.length-1] == \"rule\")n--;\n        else if( type == \"tag\")n++;\n        else if( textAfter === \">\" && state.stack[state.stack.length-1] == \"rule\" && type === \">\")n--;\n        else if( textAfter === \">\" && state.stack[state.stack.length-1] == \"rule\")n;\n        else if( textAfter.substr(0,1) !== \"<\" && textAfter.substr(0,1) === \">\" )n=n-1;\n        else if( textAfter === \">\")n;\n        else n=n-1;\n        //over rule them all\n        if(type == null || type == \"]\")n--;\n      }\n\n      return state.baseIndent + n * indentUnit;\n    },\n\n    electricChars: \"]>\"\n  };\n});\n\nCodeMirror.defineMIME(\"application/xml-dtd\", \"dtd\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/dtd/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: DTD mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"dtd.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">DTD</a>\n  </ul>\n</div>\n\n<article>\n<h2>DTD mode</h2>\n<form><textarea id=\"code\" name=\"code\"><?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<!ATTLIST title\n  xmlns\tCDATA\t#FIXED\t\"http://docbook.org/ns/docbook\"\n  role\tCDATA\t#IMPLIED\n  %db.common.attributes;\n  %db.common.linking.attributes;\n>\n\n<!--\n  Try: http://docbook.org/xml/5.0/dtd/docbook.dtd\n-->\n\n<!DOCTYPE xsl:stylesheet\n  [\n    <!ENTITY nbsp   \"&amp;#160;\">\n    <!ENTITY copy   \"&amp;#169;\">\n    <!ENTITY reg    \"&amp;#174;\">\n    <!ENTITY trade  \"&amp;#8482;\">\n    <!ENTITY mdash  \"&amp;#8212;\">\n    <!ENTITY ldquo  \"&amp;#8220;\">\n    <!ENTITY rdquo  \"&amp;#8221;\">\n    <!ENTITY pound  \"&amp;#163;\">\n    <!ENTITY yen    \"&amp;#165;\">\n    <!ENTITY euro   \"&amp;#8364;\">\n    <!ENTITY mathml \"http://www.w3.org/1998/Math/MathML\">\n  ]\n>\n\n<!ELEMENT title (#PCDATA|inlinemediaobject|remark|superscript|subscript|xref|link|olink|anchor|biblioref|alt|annotation|indexterm|abbrev|acronym|date|emphasis|footnote|footnoteref|foreignphrase|phrase|quote|wordasword|firstterm|glossterm|coref|trademark|productnumber|productname|database|application|hardware|citation|citerefentry|citetitle|citebiblioid|author|person|personname|org|orgname|editor|jobtitle|replaceable|package|parameter|termdef|nonterminal|systemitem|option|optional|property|inlineequation|tag|markup|token|symbol|literal|code|constant|email|uri|guiicon|guibutton|guimenuitem|guimenu|guisubmenu|guilabel|menuchoice|mousebutton|keycombo|keycap|keycode|keysym|shortcut|accel|prompt|envar|filename|command|computeroutput|userinput|function|varname|returnvalue|type|classname|exceptionname|interfacename|methodname|modifier|initializer|ooclass|ooexception|oointerface|errorcode|errortext|errorname|errortype)*>\n\n<!ENTITY % db.common.attributes \"\n  xml:id\tID\t#IMPLIED\n  version\tCDATA\t#IMPLIED\n  xml:lang\tCDATA\t#IMPLIED\n  xml:base\tCDATA\t#IMPLIED\n  remap\tCDATA\t#IMPLIED\n  xreflabel\tCDATA\t#IMPLIED\n  revisionflag\t(changed|added|deleted|off)\t#IMPLIED\n  dir\t(ltr|rtl|lro|rlo)\t#IMPLIED\n  arch\tCDATA\t#IMPLIED\n  audience\tCDATA\t#IMPLIED\n  condition\tCDATA\t#IMPLIED\n  conformance\tCDATA\t#IMPLIED\n  os\tCDATA\t#IMPLIED\n  revision\tCDATA\t#IMPLIED\n  security\tCDATA\t#IMPLIED\n  userlevel\tCDATA\t#IMPLIED\n  vendor\tCDATA\t#IMPLIED\n  wordsize\tCDATA\t#IMPLIED\n  annotations\tCDATA\t#IMPLIED\n\n\"></textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: {name: \"dtd\", alignCDATA: true},\n        lineNumbers: true,\n        lineWrapping: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>application/xml-dtd</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/dylan/dylan.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"dylan\", function(_config) {\n  // Words\n  var words = {\n    // Words that introduce unnamed definitions like \"define interface\"\n    unnamedDefinition: [\"interface\"],\n\n    // Words that introduce simple named definitions like \"define library\"\n    namedDefinition: [\"module\", \"library\", \"macro\",\n                      \"C-struct\", \"C-union\",\n                      \"C-function\", \"C-callable-wrapper\"\n                     ],\n\n    // Words that introduce type definitions like \"define class\".\n    // These are also parameterized like \"define method\" and are\n    // appended to otherParameterizedDefinitionWords\n    typeParameterizedDefinition: [\"class\", \"C-subtype\", \"C-mapped-subtype\"],\n\n    // Words that introduce trickier definitions like \"define method\".\n    // These require special definitions to be added to startExpressions\n    otherParameterizedDefinition: [\"method\", \"function\",\n                                   \"C-variable\", \"C-address\"\n                                  ],\n\n    // Words that introduce module constant definitions.\n    // These must also be simple definitions and are\n    // appended to otherSimpleDefinitionWords\n    constantSimpleDefinition: [\"constant\"],\n\n    // Words that introduce module variable definitions.\n    // These must also be simple definitions and are\n    // appended to otherSimpleDefinitionWords\n    variableSimpleDefinition: [\"variable\"],\n\n    // Other words that introduce simple definitions\n    // (without implicit bodies).\n    otherSimpleDefinition: [\"generic\", \"domain\",\n                            \"C-pointer-type\",\n                            \"table\"\n                           ],\n\n    // Words that begin statements with implicit bodies.\n    statement: [\"if\", \"block\", \"begin\", \"method\", \"case\",\n                \"for\", \"select\", \"when\", \"unless\", \"until\",\n                \"while\", \"iterate\", \"profiling\", \"dynamic-bind\"\n               ],\n\n    // Patterns that act as separators in compound statements.\n    // This may include any general pattern that must be indented\n    // specially.\n    separator: [\"finally\", \"exception\", \"cleanup\", \"else\",\n                \"elseif\", \"afterwards\"\n               ],\n\n    // Keywords that do not require special indentation handling,\n    // but which should be highlighted\n    other: [\"above\", \"below\", \"by\", \"from\", \"handler\", \"in\",\n            \"instance\", \"let\", \"local\", \"otherwise\", \"slot\",\n            \"subclass\", \"then\", \"to\", \"keyed-by\", \"virtual\"\n           ],\n\n    // Condition signaling function calls\n    signalingCalls: [\"signal\", \"error\", \"cerror\",\n                     \"break\", \"check-type\", \"abort\"\n                    ]\n  };\n\n  words[\"otherDefinition\"] =\n    words[\"unnamedDefinition\"]\n    .concat(words[\"namedDefinition\"])\n    .concat(words[\"otherParameterizedDefinition\"]);\n\n  words[\"definition\"] =\n    words[\"typeParameterizedDefinition\"]\n    .concat(words[\"otherDefinition\"]);\n\n  words[\"parameterizedDefinition\"] =\n    words[\"typeParameterizedDefinition\"]\n    .concat(words[\"otherParameterizedDefinition\"]);\n\n  words[\"simpleDefinition\"] =\n    words[\"constantSimpleDefinition\"]\n    .concat(words[\"variableSimpleDefinition\"])\n    .concat(words[\"otherSimpleDefinition\"]);\n\n  words[\"keyword\"] =\n    words[\"statement\"]\n    .concat(words[\"separator\"])\n    .concat(words[\"other\"]);\n\n  // Patterns\n  var symbolPattern = \"[-_a-zA-Z?!*@<>$%]+\";\n  var symbol = new RegExp(\"^\" + symbolPattern);\n  var patterns = {\n    // Symbols with special syntax\n    symbolKeyword: symbolPattern + \":\",\n    symbolClass: \"<\" + symbolPattern + \">\",\n    symbolGlobal: \"\\\\*\" + symbolPattern + \"\\\\*\",\n    symbolConstant: \"\\\\$\" + symbolPattern\n  };\n  var patternStyles = {\n    symbolKeyword: \"atom\",\n    symbolClass: \"tag\",\n    symbolGlobal: \"variable-2\",\n    symbolConstant: \"variable-3\"\n  };\n\n  // Compile all patterns to regular expressions\n  for (var patternName in patterns)\n    if (patterns.hasOwnProperty(patternName))\n      patterns[patternName] = new RegExp(\"^\" + patterns[patternName]);\n\n  // Names beginning \"with-\" and \"without-\" are commonly\n  // used as statement macro\n  patterns[\"keyword\"] = [/^with(?:out)?-[-_a-zA-Z?!*@<>$%]+/];\n\n  var styles = {};\n  styles[\"keyword\"] = \"keyword\";\n  styles[\"definition\"] = \"def\";\n  styles[\"simpleDefinition\"] = \"def\";\n  styles[\"signalingCalls\"] = \"builtin\";\n\n  // protected words lookup table\n  var wordLookup = {};\n  var styleLookup = {};\n\n  [\n    \"keyword\",\n    \"definition\",\n    \"simpleDefinition\",\n    \"signalingCalls\"\n  ].forEach(function(type) {\n    words[type].forEach(function(word) {\n      wordLookup[word] = type;\n      styleLookup[word] = styles[type];\n    });\n  });\n\n\n  function chain(stream, state, f) {\n    state.tokenize = f;\n    return f(stream, state);\n  }\n\n  var type, content;\n\n  function ret(_type, style, _content) {\n    type = _type;\n    content = _content;\n    return style;\n  }\n\n  function tokenBase(stream, state) {\n    // String\n    var ch = stream.peek();\n    if (ch == \"'\" || ch == '\"') {\n      stream.next();\n      return chain(stream, state, tokenString(ch, \"string\", \"string\"));\n    }\n    // Comment\n    else if (ch == \"/\") {\n      stream.next();\n      if (stream.eat(\"*\")) {\n        return chain(stream, state, tokenComment);\n      } else if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return ret(\"comment\", \"comment\");\n      } else {\n        stream.skipTo(\" \");\n        return ret(\"operator\", \"operator\");\n      }\n    }\n    // Decimal\n    else if (/\\d/.test(ch)) {\n      stream.match(/^\\d*(?:\\.\\d*)?(?:e[+\\-]?\\d+)?/);\n      return ret(\"number\", \"number\");\n    }\n    // Hash\n    else if (ch == \"#\") {\n      stream.next();\n      // Symbol with string syntax\n      ch = stream.peek();\n      if (ch == '\"') {\n        stream.next();\n        return chain(stream, state, tokenString('\"', \"symbol\", \"string-2\"));\n      }\n      // Binary number\n      else if (ch == \"b\") {\n        stream.next();\n        stream.eatWhile(/[01]/);\n        return ret(\"number\", \"number\");\n      }\n      // Hex number\n      else if (ch == \"x\") {\n        stream.next();\n        stream.eatWhile(/[\\da-f]/i);\n        return ret(\"number\", \"number\");\n      }\n      // Octal number\n      else if (ch == \"o\") {\n        stream.next();\n        stream.eatWhile(/[0-7]/);\n        return ret(\"number\", \"number\");\n      }\n      // Hash symbol\n      else {\n        stream.eatWhile(/[-a-zA-Z]/);\n        return ret(\"hash\", \"keyword\");\n      }\n    } else if (stream.match(\"end\")) {\n      return ret(\"end\", \"keyword\");\n    }\n    for (var name in patterns) {\n      if (patterns.hasOwnProperty(name)) {\n        var pattern = patterns[name];\n        if ((pattern instanceof Array && pattern.some(function(p) {\n          return stream.match(p);\n        })) || stream.match(pattern))\n          return ret(name, patternStyles[name], stream.current());\n      }\n    }\n    if (stream.match(\"define\")) {\n      return ret(\"definition\", \"def\");\n    } else {\n      stream.eatWhile(/[\\w\\-]/);\n      // Keyword\n      if (wordLookup[stream.current()]) {\n        return ret(wordLookup[stream.current()], styleLookup[stream.current()], stream.current());\n      } else if (stream.current().match(symbol)) {\n        return ret(\"variable\", \"variable\");\n      } else {\n        stream.next();\n        return ret(\"other\", \"variable-2\");\n      }\n    }\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false,\n    ch;\n    while ((ch = stream.next())) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return ret(\"comment\", \"comment\");\n  }\n\n  function tokenString(quote, type, style) {\n    return function(stream, state) {\n      var next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote) {\n          end = true;\n          break;\n        }\n      }\n      if (end)\n        state.tokenize = tokenBase;\n      return ret(type, style);\n    };\n  }\n\n  // Interface\n  return {\n    startState: function() {\n      return {\n        tokenize: tokenBase,\n        currentIndent: 0\n      };\n    },\n    token: function(stream, state) {\n      if (stream.eatSpace())\n        return null;\n      var style = state.tokenize(stream, state);\n      return style;\n    },\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-dylan\", \"dylan\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/dylan/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Dylan mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"../../addon/comment/continuecomment.js\"></script>\n<script src=\"../../addon/comment/comment.js\"></script>\n<script src=\"dylan.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Dylan</a>\n  </ul>\n</div>\n\n<article>\n<h2>Dylan mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\nModule:       locators-internals\nSynopsis:     Abstract modeling of locations\nAuthor:       Andy Armstrong\nCopyright:    Original Code is Copyright (c) 1995-2004 Functional Objects, Inc.\n              All rights reserved.\nLicense:      See License.txt in this distribution for details.\nWarranty:     Distributed WITHOUT WARRANTY OF ANY KIND\n\ndefine open generic locator-server\n    (locator :: <locator>) => (server :: false-or(<server-locator>));\ndefine open generic locator-host\n    (locator :: <locator>) => (host :: false-or(<string>));\ndefine open generic locator-volume\n    (locator :: <locator>) => (volume :: false-or(<string>));\ndefine open generic locator-directory\n    (locator :: <locator>) => (directory :: false-or(<directory-locator>));\ndefine open generic locator-relative?\n    (locator :: <locator>) => (relative? :: <boolean>);\ndefine open generic locator-path\n    (locator :: <locator>) => (path :: <sequence>);\ndefine open generic locator-base\n    (locator :: <locator>) => (base :: false-or(<string>));\ndefine open generic locator-extension\n    (locator :: <locator>) => (extension :: false-or(<string>));\n\n/// Locator classes\n\ndefine open abstract class <directory-locator> (<physical-locator>)\nend class <directory-locator>;\n\ndefine open abstract class <file-locator> (<physical-locator>)\nend class <file-locator>;\n\ndefine method as\n    (class == <directory-locator>, string :: <string>)\n => (locator :: <directory-locator>)\n  as(<native-directory-locator>, string)\nend method as;\n\ndefine method make\n    (class == <directory-locator>,\n     #key server :: false-or(<server-locator>) = #f,\n          path :: <sequence> = #[],\n          relative? :: <boolean> = #f,\n          name :: false-or(<string>) = #f)\n => (locator :: <directory-locator>)\n  make(<native-directory-locator>,\n       server:    server,\n       path:      path,\n       relative?: relative?,\n       name:      name)\nend method make;\n\ndefine method as\n    (class == <file-locator>, string :: <string>)\n => (locator :: <file-locator>)\n  as(<native-file-locator>, string)\nend method as;\n\ndefine method make\n    (class == <file-locator>,\n     #key directory :: false-or(<directory-locator>) = #f,\n          base :: false-or(<string>) = #f,\n          extension :: false-or(<string>) = #f,\n          name :: false-or(<string>) = #f)\n => (locator :: <file-locator>)\n  make(<native-file-locator>,\n       directory: directory,\n       base:      base,\n       extension: extension,\n       name:      name)\nend method make;\n\n/// Locator coercion\n\n//---*** andrewa: This caching scheme doesn't work yet, so disable it.\ndefine constant $cache-locators?        = #f;\ndefine constant $cache-locator-strings? = #f;\n\ndefine constant $locator-to-string-cache = make(<object-table>, weak: #\"key\");\ndefine constant $string-to-locator-cache = make(<string-table>, weak: #\"value\");\n\ndefine open generic locator-as-string\n    (class :: subclass(<string>), locator :: <locator>)\n => (string :: <string>);\n\ndefine open generic string-as-locator\n    (class :: subclass(<locator>), string :: <string>)\n => (locator :: <locator>);\n\ndefine sealed sideways method as\n    (class :: subclass(<string>), locator :: <locator>)\n => (string :: <string>)\n  let string = element($locator-to-string-cache, locator, default: #f);\n  if (string)\n    as(class, string)\n  else\n    let string = locator-as-string(class, locator);\n    if ($cache-locator-strings?)\n      element($locator-to-string-cache, locator) := string;\n    else\n      string\n    end\n  end\nend method as;\n\ndefine sealed sideways method as\n    (class :: subclass(<locator>), string :: <string>)\n => (locator :: <locator>)\n  let locator = element($string-to-locator-cache, string, default: #f);\n  if (instance?(locator, class))\n    locator\n  else\n    let locator = string-as-locator(class, string);\n    if ($cache-locators?)\n      element($string-to-locator-cache, string) := locator;\n    else\n      locator\n    end\n  end\nend method as;\n\n/// Locator conditions\n\ndefine class <locator-error> (<format-string-condition>, <error>)\nend class <locator-error>;\n\ndefine function locator-error\n    (format-string :: <string>, #rest format-arguments)\n  error(make(<locator-error>, \n             format-string:    format-string,\n             format-arguments: format-arguments))\nend function locator-error;\n\n/// Useful locator protocols\n\ndefine open generic locator-test\n    (locator :: <directory-locator>) => (test :: <function>);\n\ndefine method locator-test\n    (locator :: <directory-locator>) => (test :: <function>)\n  \\=\nend method locator-test;\n\ndefine open generic locator-might-have-links?\n    (locator :: <directory-locator>) => (links? :: <boolean>);\n\ndefine method locator-might-have-links?\n    (locator :: <directory-locator>) => (links? :: singleton(#f))\n  #f\nend method locator-might-have-links?;\n\ndefine method locator-relative?\n    (locator :: <file-locator>) => (relative? :: <boolean>)\n  let directory = locator.locator-directory;\n  ~directory | directory.locator-relative?\nend method locator-relative?;\n\ndefine method current-directory-locator?\n    (locator :: <directory-locator>) => (current-directory? :: <boolean>)\n  locator.locator-relative?\n    & locator.locator-path = #[#\"self\"]\nend method current-directory-locator?;\n\ndefine method locator-directory\n    (locator :: <directory-locator>) => (parent :: false-or(<directory-locator>))\n  let path = locator.locator-path;\n  unless (empty?(path))\n    make(object-class(locator),\n         server:    locator.locator-server,\n         path:      copy-sequence(path, end: path.size - 1),\n         relative?: locator.locator-relative?)\n  end\nend method locator-directory;\n\n/// Simplify locator\n\ndefine open generic simplify-locator\n    (locator :: <physical-locator>)\n => (simplified-locator :: <physical-locator>);\n\ndefine method simplify-locator\n    (locator :: <directory-locator>)\n => (simplified-locator :: <directory-locator>)\n  let path = locator.locator-path;\n  let relative? = locator.locator-relative?;\n  let resolve-parent? = ~locator.locator-might-have-links?;\n  let simplified-path\n    = simplify-path(path, \n                    resolve-parent?: resolve-parent?,\n                    relative?: relative?);\n  if (path ~= simplified-path)\n    make(object-class(locator),\n         server:    locator.locator-server,\n         path:      simplified-path,\n         relative?: locator.locator-relative?)\n  else\n    locator\n  end\nend method simplify-locator;\n\ndefine method simplify-locator\n    (locator :: <file-locator>) => (simplified-locator :: <file-locator>)\n  let directory = locator.locator-directory;\n  let simplified-directory = directory & simplify-locator(directory);\n  if (directory ~= simplified-directory)\n    make(object-class(locator),\n         directory: simplified-directory,\n         base:      locator.locator-base,\n         extension: locator.locator-extension)\n  else\n    locator\n  end\nend method simplify-locator;\n\n/// Subdirectory locator\n\ndefine open generic subdirectory-locator\n    (locator :: <directory-locator>, #rest sub-path)\n => (subdirectory :: <directory-locator>);\n\ndefine method subdirectory-locator\n    (locator :: <directory-locator>, #rest sub-path)\n => (subdirectory :: <directory-locator>)\n  let old-path = locator.locator-path;\n  let new-path = concatenate-as(<simple-object-vector>, old-path, sub-path);\n  make(object-class(locator),\n       server:    locator.locator-server,\n       path:      new-path,\n       relative?: locator.locator-relative?)\nend method subdirectory-locator;\n\n/// Relative locator\n\ndefine open generic relative-locator\n    (locator :: <physical-locator>, from-locator :: <physical-locator>)\n => (relative-locator :: <physical-locator>);\n\ndefine method relative-locator\n    (locator :: <directory-locator>, from-locator :: <directory-locator>)\n => (relative-locator :: <directory-locator>)\n  let path = locator.locator-path;\n  let from-path = from-locator.locator-path;\n  case\n    ~locator.locator-relative? & from-locator.locator-relative? =>\n      locator-error\n        (\"Cannot find relative path of absolute locator %= from relative locator %=\",\n         locator, from-locator);\n    locator.locator-server ~= from-locator.locator-server =>\n      locator;\n    path = from-path =>\n      make(object-class(locator),\n           path: vector(#\"self\"),\n           relative?: #t);\n    otherwise =>\n      make(object-class(locator),\n           path: relative-path(path, from-path, test: locator.locator-test),\n           relative?: #t);\n  end\nend method relative-locator;\n\ndefine method relative-locator\n    (locator :: <file-locator>, from-directory :: <directory-locator>)\n => (relative-locator :: <file-locator>)\n  let directory = locator.locator-directory;\n  let relative-directory = directory & relative-locator(directory, from-directory);\n  if (relative-directory ~= directory)\n    simplify-locator\n      (make(object-class(locator),\n            directory: relative-directory,\n            base:      locator.locator-base,\n            extension: locator.locator-extension))\n  else\n    locator\n  end\nend method relative-locator;\n\ndefine method relative-locator\n    (locator :: <physical-locator>, from-locator :: <file-locator>)\n => (relative-locator :: <physical-locator>)\n  let from-directory = from-locator.locator-directory;\n  case\n    from-directory =>\n      relative-locator(locator, from-directory);\n    ~locator.locator-relative? =>\n      locator-error\n        (\"Cannot find relative path of absolute locator %= from relative locator %=\",\n         locator, from-locator);\n    otherwise =>\n      locator;\n  end\nend method relative-locator;\n\n/// Merge locators\n\ndefine open generic merge-locators\n    (locator :: <physical-locator>, from-locator :: <physical-locator>)\n => (merged-locator :: <physical-locator>);\n\n/// Merge locators\n\ndefine method merge-locators\n    (locator :: <directory-locator>, from-locator :: <directory-locator>)\n => (merged-locator :: <directory-locator>)\n  if (locator.locator-relative?)\n    let path = concatenate(from-locator.locator-path, locator.locator-path);\n    simplify-locator\n      (make(object-class(locator),\n            server:    from-locator.locator-server,\n            path:      path,\n            relative?: from-locator.locator-relative?))\n  else\n    locator\n  end\nend method merge-locators;\n\ndefine method merge-locators\n    (locator :: <file-locator>, from-locator :: <directory-locator>)\n => (merged-locator :: <file-locator>)\n  let directory = locator.locator-directory;\n  let merged-directory \n    = if (directory)\n        merge-locators(directory, from-locator)\n      else\n        simplify-locator(from-locator)\n      end;\n  if (merged-directory ~= directory)\n    make(object-class(locator),\n         directory: merged-directory,\n         base:      locator.locator-base,\n         extension: locator.locator-extension)\n  else\n    locator\n  end\nend method merge-locators;\n\ndefine method merge-locators\n    (locator :: <physical-locator>, from-locator :: <file-locator>)\n => (merged-locator :: <physical-locator>)\n  let from-directory = from-locator.locator-directory;\n  if (from-directory)\n    merge-locators(locator, from-directory)\n  else\n    locator\n  end\nend method merge-locators;\n\n/// Locator protocols\n\ndefine sideways method supports-open-locator?\n    (locator :: <file-locator>) => (openable? :: <boolean>)\n  ~locator.locator-relative?\nend method supports-open-locator?;\n\ndefine sideways method open-locator\n    (locator :: <file-locator>, #rest keywords, #key, #all-keys)\n => (stream :: <stream>)\n  apply(open-file-stream, locator, keywords)\nend method open-locator;\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: \"text/x-dylan\",\n        lineNumbers: true,\n        matchBrackets: true,\n        continueComments: \"Enter\",\n        extraKeys: {\"Ctrl-Q\": \"toggleComment\"},\n        tabMode: \"indent\",\n        indentUnit: 2\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-dylan</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/ecl/ecl.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"ecl\", function(config) {\n\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  function metaHook(stream, state) {\n    if (!state.startOfLine) return false;\n    stream.skipToEnd();\n    return \"meta\";\n  }\n\n  var indentUnit = config.indentUnit;\n  var keyword = words(\"abs acos allnodes ascii asin asstring atan atan2 ave case choose choosen choosesets clustersize combine correlation cos cosh count covariance cron dataset dedup define denormalize distribute distributed distribution ebcdic enth error evaluate event eventextra eventname exists exp failcode failmessage fetch fromunicode getisvalid global graph group hash hash32 hash64 hashcrc hashmd5 having if index intformat isvalid iterate join keyunicode length library limit ln local log loop map matched matchlength matchposition matchtext matchunicode max merge mergejoin min nolocal nonempty normalize parse pipe power preload process project pull random range rank ranked realformat recordof regexfind regexreplace regroup rejected rollup round roundup row rowdiff sample set sin sinh sizeof soapcall sort sorted sqrt stepped stored sum table tan tanh thisnode topn tounicode transfer trim truncate typeof ungroup unicodeorder variance which workunit xmldecode xmlencode xmltext xmlunicode\");\n  var variable = words(\"apply assert build buildindex evaluate fail keydiff keypatch loadxml nothor notify output parallel sequential soapcall wait\");\n  var variable_2 = words(\"__compressed__ all and any as atmost before beginc++ best between case const counter csv descend encrypt end endc++ endmacro except exclusive expire export extend false few first flat from full function group header heading hole ifblock import in interface joined keep keyed last left limit load local locale lookup macro many maxcount maxlength min skew module named nocase noroot noscan nosort not of only opt or outer overwrite packed partition penalty physicallength pipe quote record relationship repeat return right scan self separator service shared skew skip sql store terminator thor threshold token transform trim true type unicodeorder unsorted validate virtual whole wild within xml xpath\");\n  var variable_3 = words(\"ascii big_endian boolean data decimal ebcdic integer pattern qstring real record rule set of string token udecimal unicode unsigned varstring varunicode\");\n  var builtin = words(\"checkpoint deprecated failcode failmessage failure global independent onwarning persist priority recovery stored success wait when\");\n  var blockKeywords = words(\"catch class do else finally for if switch try while\");\n  var atoms = words(\"true false null\");\n  var hooks = {\"#\": metaHook};\n  var multiLineStrings;\n  var isOperatorChar = /[+\\-*&%=<>!?|\\/]/;\n\n  var curPunc;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (hooks[ch]) {\n      var result = hooks[ch](stream, state);\n      if (result !== false) return result;\n    }\n    if (ch == '\"' || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      return \"number\";\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        state.tokenize = tokenComment;\n        return tokenComment(stream, state);\n      }\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n    }\n    if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_]/);\n    var cur = stream.current().toLowerCase();\n    if (keyword.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"keyword\";\n    } else if (variable.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"variable\";\n    } else if (variable_2.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"variable-2\";\n    } else if (variable_3.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"variable-3\";\n    } else if (builtin.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"builtin\";\n    } else { //Data types are of from KEYWORD##\n                var i = cur.length - 1;\n                while(i >= 0 && (!isNaN(cur[i]) || cur[i] == '_'))\n                        --i;\n\n                if (i > 0) {\n                        var cur2 = cur.substr(0, i + 1);\n                if (variable_3.propertyIsEnumerable(cur2)) {\n                        if (blockKeywords.propertyIsEnumerable(cur2)) curPunc = \"newstatement\";\n                        return \"variable-3\";\n                }\n            }\n    }\n    if (atoms.propertyIsEnumerable(cur)) return \"atom\";\n    return null;\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {end = true; break;}\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !(escaped || multiLineStrings))\n        state.tokenize = tokenBase;\n      return \"string\";\n    };\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function Context(indented, column, type, align, prev) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.align = align;\n    this.prev = prev;\n  }\n  function pushContext(state, col, type) {\n    return state.context = new Context(state.indented, col, type, null, state.context);\n  }\n  function popContext(state) {\n    var t = state.context.type;\n    if (t == \")\" || t == \"]\" || t == \"}\")\n      state.indented = state.context.indented;\n    return state.context = state.context.prev;\n  }\n\n  // Interface\n\n  return {\n    startState: function(basecolumn) {\n      return {\n        tokenize: null,\n        context: new Context((basecolumn || 0) - indentUnit, 0, \"top\", false),\n        indented: 0,\n        startOfLine: true\n      };\n    },\n\n    token: function(stream, state) {\n      var ctx = state.context;\n      if (stream.sol()) {\n        if (ctx.align == null) ctx.align = false;\n        state.indented = stream.indentation();\n        state.startOfLine = true;\n      }\n      if (stream.eatSpace()) return null;\n      curPunc = null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style == \"comment\" || style == \"meta\") return style;\n      if (ctx.align == null) ctx.align = true;\n\n      if ((curPunc == \";\" || curPunc == \":\") && ctx.type == \"statement\") popContext(state);\n      else if (curPunc == \"{\") pushContext(state, stream.column(), \"}\");\n      else if (curPunc == \"[\") pushContext(state, stream.column(), \"]\");\n      else if (curPunc == \"(\") pushContext(state, stream.column(), \")\");\n      else if (curPunc == \"}\") {\n        while (ctx.type == \"statement\") ctx = popContext(state);\n        if (ctx.type == \"}\") ctx = popContext(state);\n        while (ctx.type == \"statement\") ctx = popContext(state);\n      }\n      else if (curPunc == ctx.type) popContext(state);\n      else if (ctx.type == \"}\" || ctx.type == \"top\" || (ctx.type == \"statement\" && curPunc == \"newstatement\"))\n        pushContext(state, stream.column(), \"statement\");\n      state.startOfLine = false;\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != tokenBase && state.tokenize != null) return 0;\n      var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);\n      if (ctx.type == \"statement\" && firstChar == \"}\") ctx = ctx.prev;\n      var closing = firstChar == ctx.type;\n      if (ctx.type == \"statement\") return ctx.indented + (firstChar == \"{\" ? 0 : indentUnit);\n      else if (ctx.align) return ctx.column + (closing ? 0 : 1);\n      else return ctx.indented + (closing ? 0 : indentUnit);\n    },\n\n    electricChars: \"{}\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-ecl\", \"ecl\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/ecl/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: ECL mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"ecl.js\"></script>\n<style>.CodeMirror {border: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">ECL</a>\n  </ul>\n</div>\n\n<article>\n<h2>ECL mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n/*\nsample useless code to demonstrate ecl syntax highlighting\nthis is a multiline comment!\n*/\n\n//  this is a singleline comment!\n\nimport ut;\nr := \n  record\n   string22 s1 := '123';\n   integer4 i1 := 123;\n  end;\n#option('tmp', true);\nd := dataset('tmp::qb', r, thor);\noutput(d);\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p>Based on CodeMirror's clike mode.  For more information see <a href=\"http://hpccsystems.com\">HPCC Systems</a> web site.</p>\n    <p><strong>MIME types defined:</strong> <code>text/x-ecl</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/eiffel/eiffel.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"eiffel\", function() {\n  function wordObj(words) {\n    var o = {};\n    for (var i = 0, e = words.length; i < e; ++i) o[words[i]] = true;\n    return o;\n  }\n  var keywords = wordObj([\n    'note',\n    'across',\n    'when',\n    'variant',\n    'until',\n    'unique',\n    'undefine',\n    'then',\n    'strip',\n    'select',\n    'retry',\n    'rescue',\n    'require',\n    'rename',\n    'reference',\n    'redefine',\n    'prefix',\n    'once',\n    'old',\n    'obsolete',\n    'loop',\n    'local',\n    'like',\n    'is',\n    'inspect',\n    'infix',\n    'include',\n    'if',\n    'frozen',\n    'from',\n    'external',\n    'export',\n    'ensure',\n    'end',\n    'elseif',\n    'else',\n    'do',\n    'creation',\n    'create',\n    'check',\n    'alias',\n    'agent',\n    'separate',\n    'invariant',\n    'inherit',\n    'indexing',\n    'feature',\n    'expanded',\n    'deferred',\n    'class',\n    'Void',\n    'True',\n    'Result',\n    'Precursor',\n    'False',\n    'Current',\n    'create',\n    'attached',\n    'detachable',\n    'as',\n    'and',\n    'implies',\n    'not',\n    'or'\n  ]);\n  var operators = wordObj([\":=\", \"and then\",\"and\", \"or\",\"<<\",\">>\"]);\n  var curPunc;\n\n  function chain(newtok, stream, state) {\n    state.tokenize.push(newtok);\n    return newtok(stream, state);\n  }\n\n  function tokenBase(stream, state) {\n    curPunc = null;\n    if (stream.eatSpace()) return null;\n    var ch = stream.next();\n    if (ch == '\"'||ch == \"'\") {\n      return chain(readQuoted(ch, \"string\"), stream, state);\n    } else if (ch == \"-\"&&stream.eat(\"-\")) {\n      stream.skipToEnd();\n      return \"comment\";\n    } else if (ch == \":\"&&stream.eat(\"=\")) {\n      return \"operator\";\n    } else if (/[0-9]/.test(ch)) {\n      stream.eatWhile(/[xXbBCc0-9\\.]/);\n      stream.eat(/[\\?\\!]/);\n      return \"ident\";\n    } else if (/[a-zA-Z_0-9]/.test(ch)) {\n      stream.eatWhile(/[a-zA-Z_0-9]/);\n      stream.eat(/[\\?\\!]/);\n      return \"ident\";\n    } else if (/[=+\\-\\/*^%<>~]/.test(ch)) {\n      stream.eatWhile(/[=+\\-\\/*^%<>~]/);\n      return \"operator\";\n    } else {\n      return null;\n    }\n  }\n\n  function readQuoted(quote, style,  unescaped) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && (unescaped || !escaped)) {\n          state.tokenize.pop();\n          break;\n        }\n        escaped = !escaped && ch == \"%\";\n      }\n      return style;\n    };\n  }\n\n  return {\n    startState: function() {\n      return {tokenize: [tokenBase]};\n    },\n\n    token: function(stream, state) {\n      var style = state.tokenize[state.tokenize.length-1](stream, state);\n      if (style == \"ident\") {\n        var word = stream.current();\n        style = keywords.propertyIsEnumerable(stream.current()) ? \"keyword\"\n          : operators.propertyIsEnumerable(stream.current()) ? \"operator\"\n          : /^[A-Z][A-Z_0-9]*$/g.test(word) ? \"tag\"\n          : /^0[bB][0-1]+$/g.test(word) ? \"number\"\n          : /^0[cC][0-7]+$/g.test(word) ? \"number\"\n          : /^0[xX][a-fA-F0-9]+$/g.test(word) ? \"number\"\n          : /^([0-9]+\\.[0-9]*)|([0-9]*\\.[0-9]+)$/g.test(word) ? \"number\"\n          : /^[0-9]+$/g.test(word) ? \"number\"\n          : \"variable\";\n      }\n      return style;\n    },\n    lineComment: \"--\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-eiffel\", \"eiffel\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/eiffel/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Eiffel mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/neat.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"eiffel.js\"></script>\n<style>\n      .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}\n      .cm-s-default span.cm-arrow { color: red; }\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Eiffel</a>\n  </ul>\n</div>\n\n<article>\n<h2>Eiffel mode</h2>\n<form><textarea id=\"code\" name=\"code\">\nnote\n    description: \"[\n        Project-wide universal properties.\n        This class is an ancestor to all developer-written classes.\n        ANY may be customized for individual projects or teams.\n        ]\"\n\n    library: \"Free implementation of ELKS library\"\n    status: \"See notice at end of class.\"\n    legal: \"See notice at end of class.\"\n    date: \"$Date: 2013-01-25 11:49:00 -0800 (Fri, 25 Jan 2013) $\"\n    revision: \"$Revision: 712 $\"\n\nclass\n    ANY\n\nfeature -- Customization\n\nfeature -- Access\n\n    generator: STRING\n            -- Name of current object's generating class\n            -- (base class of the type of which it is a direct instance)\n        external\n            \"built_in\"\n        ensure\n            generator_not_void: Result /= Void\n            generator_not_empty: not Result.is_empty\n        end\n\n    generating_type: TYPE [detachable like Current]\n            -- Type of current object\n            -- (type of which it is a direct instance)\n        do\n            Result := {detachable like Current}\n        ensure\n            generating_type_not_void: Result /= Void\n        end\n\nfeature -- Status report\n\n    conforms_to (other: ANY): BOOLEAN\n            -- Does type of current object conform to type\n            -- of `other' (as per Eiffel: The Language, chapter 13)?\n        require\n            other_not_void: other /= Void\n        external\n            \"built_in\"\n        end\n\n    same_type (other: ANY): BOOLEAN\n            -- Is type of current object identical to type of `other'?\n        require\n            other_not_void: other /= Void\n        external\n            \"built_in\"\n        ensure\n            definition: Result = (conforms_to (other) and\n                                        other.conforms_to (Current))\n        end\n\nfeature -- Comparison\n\n    is_equal (other: like Current): BOOLEAN\n            -- Is `other' attached to an object considered\n            -- equal to current object?\n        require\n            other_not_void: other /= Void\n        external\n            \"built_in\"\n        ensure\n            symmetric: Result implies other ~ Current\n            consistent: standard_is_equal (other) implies Result\n        end\n\n    frozen standard_is_equal (other: like Current): BOOLEAN\n            -- Is `other' attached to an object of the same type\n            -- as current object, and field-by-field identical to it?\n        require\n            other_not_void: other /= Void\n        external\n            \"built_in\"\n        ensure\n            same_type: Result implies same_type (other)\n            symmetric: Result implies other.standard_is_equal (Current)\n        end\n\n    frozen equal (a: detachable ANY; b: like a): BOOLEAN\n            -- Are `a' and `b' either both void or attached\n            -- to objects considered equal?\n        do\n            if a = Void then\n                Result := b = Void\n            else\n                Result := b /= Void and then\n                            a.is_equal (b)\n            end\n        ensure\n            definition: Result = (a = Void and b = Void) or else\n                        ((a /= Void and b /= Void) and then\n                        a.is_equal (b))\n        end\n\n    frozen standard_equal (a: detachable ANY; b: like a): BOOLEAN\n            -- Are `a' and `b' either both void or attached to\n            -- field-by-field identical objects of the same type?\n            -- Always uses default object comparison criterion.\n        do\n            if a = Void then\n                Result := b = Void\n            else\n                Result := b /= Void and then\n                            a.standard_is_equal (b)\n            end\n        ensure\n            definition: Result = (a = Void and b = Void) or else\n                        ((a /= Void and b /= Void) and then\n                        a.standard_is_equal (b))\n        end\n\n    frozen is_deep_equal (other: like Current): BOOLEAN\n            -- Are `Current' and `other' attached to isomorphic object structures?\n        require\n            other_not_void: other /= Void\n        external\n            \"built_in\"\n        ensure\n            shallow_implies_deep: standard_is_equal (other) implies Result\n            same_type: Result implies same_type (other)\n            symmetric: Result implies other.is_deep_equal (Current)\n        end\n\n    frozen deep_equal (a: detachable ANY; b: like a): BOOLEAN\n            -- Are `a' and `b' either both void\n            -- or attached to isomorphic object structures?\n        do\n            if a = Void then\n                Result := b = Void\n            else\n                Result := b /= Void and then a.is_deep_equal (b)\n            end\n        ensure\n            shallow_implies_deep: standard_equal (a, b) implies Result\n            both_or_none_void: (a = Void) implies (Result = (b = Void))\n            same_type: (Result and (a /= Void)) implies (b /= Void and then a.same_type (b))\n            symmetric: Result implies deep_equal (b, a)\n        end\n\nfeature -- Duplication\n\n    frozen twin: like Current\n            -- New object equal to `Current'\n            -- `twin' calls `copy'; to change copying/twinning semantics, redefine `copy'.\n        external\n            \"built_in\"\n        ensure\n            twin_not_void: Result /= Void\n            is_equal: Result ~ Current\n        end\n\n    copy (other: like Current)\n            -- Update current object using fields of object attached\n            -- to `other', so as to yield equal objects.\n        require\n            other_not_void: other /= Void\n            type_identity: same_type (other)\n        external\n            \"built_in\"\n        ensure\n            is_equal: Current ~ other\n        end\n\n    frozen standard_copy (other: like Current)\n            -- Copy every field of `other' onto corresponding field\n            -- of current object.\n        require\n            other_not_void: other /= Void\n            type_identity: same_type (other)\n        external\n            \"built_in\"\n        ensure\n            is_standard_equal: standard_is_equal (other)\n        end\n\n    frozen clone (other: detachable ANY): like other\n            -- Void if `other' is void; otherwise new object\n            -- equal to `other'\n            --\n            -- For non-void `other', `clone' calls `copy';\n            -- to change copying/cloning semantics, redefine `copy'.\n        obsolete\n            \"Use `twin' instead.\"\n        do\n            if other /= Void then\n                Result := other.twin\n            end\n        ensure\n            equal: Result ~ other\n        end\n\n    frozen standard_clone (other: detachable ANY): like other\n            -- Void if `other' is void; otherwise new object\n            -- field-by-field identical to `other'.\n            -- Always uses default copying semantics.\n        obsolete\n            \"Use `standard_twin' instead.\"\n        do\n            if other /= Void then\n                Result := other.standard_twin\n            end\n        ensure\n            equal: standard_equal (Result, other)\n        end\n\n    frozen standard_twin: like Current\n            -- New object field-by-field identical to `other'.\n            -- Always uses default copying semantics.\n        external\n            \"built_in\"\n        ensure\n            standard_twin_not_void: Result /= Void\n            equal: standard_equal (Result, Current)\n        end\n\n    frozen deep_twin: like Current\n            -- New object structure recursively duplicated from Current.\n        external\n            \"built_in\"\n        ensure\n            deep_twin_not_void: Result /= Void\n            deep_equal: deep_equal (Current, Result)\n        end\n\n    frozen deep_clone (other: detachable ANY): like other\n            -- Void if `other' is void: otherwise, new object structure\n            -- recursively duplicated from the one attached to `other'\n        obsolete\n            \"Use `deep_twin' instead.\"\n        do\n            if other /= Void then\n                Result := other.deep_twin\n            end\n        ensure\n            deep_equal: deep_equal (other, Result)\n        end\n\n    frozen deep_copy (other: like Current)\n            -- Effect equivalent to that of:\n            --      `copy' (`other' . `deep_twin')\n        require\n            other_not_void: other /= Void\n        do\n            copy (other.deep_twin)\n        ensure\n            deep_equal: deep_equal (Current, other)\n        end\n\nfeature {NONE} -- Retrieval\n\n    frozen internal_correct_mismatch\n            -- Called from runtime to perform a proper dynamic dispatch on `correct_mismatch'\n            -- from MISMATCH_CORRECTOR.\n        local\n            l_msg: STRING\n            l_exc: EXCEPTIONS\n        do\n            if attached {MISMATCH_CORRECTOR} Current as l_corrector then\n                l_corrector.correct_mismatch\n            else\n                create l_msg.make_from_string (\"Mismatch: \")\n                create l_exc\n                l_msg.append (generating_type.name)\n                l_exc.raise_retrieval_exception (l_msg)\n            end\n        end\n\nfeature -- Output\n\n    io: STD_FILES\n            -- Handle to standard file setup\n        once\n            create Result\n            Result.set_output_default\n        ensure\n            io_not_void: Result /= Void\n        end\n\n    out: STRING\n            -- New string containing terse printable representation\n            -- of current object\n        do\n            Result := tagged_out\n        ensure\n            out_not_void: Result /= Void\n        end\n\n    frozen tagged_out: STRING\n            -- New string containing terse printable representation\n            -- of current object\n        external\n            \"built_in\"\n        ensure\n            tagged_out_not_void: Result /= Void\n        end\n\n    print (o: detachable ANY)\n            -- Write terse external representation of `o'\n            -- on standard output.\n        do\n            if o /= Void then\n                io.put_string (o.out)\n            end\n        end\n\nfeature -- Platform\n\n    Operating_environment: OPERATING_ENVIRONMENT\n            -- Objects available from the operating system\n        once\n            create Result\n        ensure\n            operating_environment_not_void: Result /= Void\n        end\n\nfeature {NONE} -- Initialization\n\n    default_create\n            -- Process instances of classes with no creation clause.\n            -- (Default: do nothing.)\n        do\n        end\n\nfeature -- Basic operations\n\n    default_rescue\n            -- Process exception for routines with no Rescue clause.\n            -- (Default: do nothing.)\n        do\n        end\n\n    frozen do_nothing\n            -- Execute a null action.\n        do\n        end\n\n    frozen default: detachable like Current\n            -- Default value of object's type\n        do\n        end\n\n    frozen default_pointer: POINTER\n            -- Default value of type `POINTER'\n            -- (Avoid the need to write `p'.`default' for\n            -- some `p' of type `POINTER'.)\n        do\n        ensure\n            -- Result = Result.default\n        end\n\n    frozen as_attached: attached like Current\n            -- Attached version of Current\n            -- (Can be used during transitional period to convert\n            -- non-void-safe classes to void-safe ones.)\n        do\n            Result := Current\n        end\n\ninvariant\n    reflexive_equality: standard_is_equal (Current)\n    reflexive_conformance: conforms_to (Current)\n\nnote\n    copyright: \"Copyright (c) 1984-2012, Eiffel Software and others\"\n    license:   \"Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)\"\n    source: \"[\n            Eiffel Software\n            5949 Hollister Ave., Goleta, CA 93117 USA\n            Telephone 805-685-1006, Fax 805-685-6869\n            Website http://www.eiffel.com\n            Customer support http://support.eiffel.com\n        ]\"\n\nend\n\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: \"text/x-eiffel\",\n        indentUnit: 4,\n        lineNumbers: true,\n        theme: \"neat\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-eiffel</code>.</p>\n \n <p> Created by <a href=\"https://github.com/ynh\">YNH</a>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/erlang/erlang.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/*jshint unused:true, eqnull:true, curly:true, bitwise:true */\n/*jshint undef:true, latedef:true, trailing:true */\n/*global CodeMirror:true */\n\n// erlang mode.\n// tokenizer -> token types -> CodeMirror styles\n// tokenizer maintains a parse stack\n// indenter uses the parse stack\n\n// TODO indenter:\n//   bit syntax\n//   old guard/bif/conversion clashes (e.g. \"float/1\")\n//   type/spec/opaque\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMIME(\"text/x-erlang\", \"erlang\");\n\nCodeMirror.defineMode(\"erlang\", function(cmCfg) {\n  \"use strict\";\n\n/////////////////////////////////////////////////////////////////////////////\n// constants\n\n  var typeWords = [\n    \"-type\", \"-spec\", \"-export_type\", \"-opaque\"];\n\n  var keywordWords = [\n    \"after\",\"begin\",\"catch\",\"case\",\"cond\",\"end\",\"fun\",\"if\",\n    \"let\",\"of\",\"query\",\"receive\",\"try\",\"when\"];\n\n  var separatorRE    = /[\\->,;]/;\n  var separatorWords = [\n    \"->\",\";\",\",\"];\n\n  var operatorAtomWords = [\n    \"and\",\"andalso\",\"band\",\"bnot\",\"bor\",\"bsl\",\"bsr\",\"bxor\",\n    \"div\",\"not\",\"or\",\"orelse\",\"rem\",\"xor\"];\n\n  var operatorSymbolRE    = /[\\+\\-\\*\\/<>=\\|:!]/;\n  var operatorSymbolWords = [\n    \"=\",\"+\",\"-\",\"*\",\"/\",\">\",\">=\",\"<\",\"=<\",\"=:=\",\"==\",\"=/=\",\"/=\",\"||\",\"<-\",\"!\"];\n\n  var openParenRE    = /[<\\(\\[\\{]/;\n  var openParenWords = [\n    \"<<\",\"(\",\"[\",\"{\"];\n\n  var closeParenRE    = /[>\\)\\]\\}]/;\n  var closeParenWords = [\n    \"}\",\"]\",\")\",\">>\"];\n\n  var guardWords = [\n    \"is_atom\",\"is_binary\",\"is_bitstring\",\"is_boolean\",\"is_float\",\n    \"is_function\",\"is_integer\",\"is_list\",\"is_number\",\"is_pid\",\n    \"is_port\",\"is_record\",\"is_reference\",\"is_tuple\",\n    \"atom\",\"binary\",\"bitstring\",\"boolean\",\"function\",\"integer\",\"list\",\n    \"number\",\"pid\",\"port\",\"record\",\"reference\",\"tuple\"];\n\n  var bifWords = [\n    \"abs\",\"adler32\",\"adler32_combine\",\"alive\",\"apply\",\"atom_to_binary\",\n    \"atom_to_list\",\"binary_to_atom\",\"binary_to_existing_atom\",\n    \"binary_to_list\",\"binary_to_term\",\"bit_size\",\"bitstring_to_list\",\n    \"byte_size\",\"check_process_code\",\"contact_binary\",\"crc32\",\n    \"crc32_combine\",\"date\",\"decode_packet\",\"delete_module\",\n    \"disconnect_node\",\"element\",\"erase\",\"exit\",\"float\",\"float_to_list\",\n    \"garbage_collect\",\"get\",\"get_keys\",\"group_leader\",\"halt\",\"hd\",\n    \"integer_to_list\",\"internal_bif\",\"iolist_size\",\"iolist_to_binary\",\n    \"is_alive\",\"is_atom\",\"is_binary\",\"is_bitstring\",\"is_boolean\",\n    \"is_float\",\"is_function\",\"is_integer\",\"is_list\",\"is_number\",\"is_pid\",\n    \"is_port\",\"is_process_alive\",\"is_record\",\"is_reference\",\"is_tuple\",\n    \"length\",\"link\",\"list_to_atom\",\"list_to_binary\",\"list_to_bitstring\",\n    \"list_to_existing_atom\",\"list_to_float\",\"list_to_integer\",\n    \"list_to_pid\",\"list_to_tuple\",\"load_module\",\"make_ref\",\"module_loaded\",\n    \"monitor_node\",\"node\",\"node_link\",\"node_unlink\",\"nodes\",\"notalive\",\n    \"now\",\"open_port\",\"pid_to_list\",\"port_close\",\"port_command\",\n    \"port_connect\",\"port_control\",\"pre_loaded\",\"process_flag\",\n    \"process_info\",\"processes\",\"purge_module\",\"put\",\"register\",\n    \"registered\",\"round\",\"self\",\"setelement\",\"size\",\"spawn\",\"spawn_link\",\n    \"spawn_monitor\",\"spawn_opt\",\"split_binary\",\"statistics\",\n    \"term_to_binary\",\"time\",\"throw\",\"tl\",\"trunc\",\"tuple_size\",\n    \"tuple_to_list\",\"unlink\",\"unregister\",\"whereis\"];\n\n// upper case: [A-Z] [Ø-Þ] [À-Ö]\n// lower case: [a-z] [ß-ö] [ø-ÿ]\n  var anumRE       = /[\\w@Ø-ÞÀ-Öß-öø-ÿ]/;\n  var escapesRE    =\n    /[0-7]{1,3}|[bdefnrstv\\\\\"']|\\^[a-zA-Z]|x[0-9a-zA-Z]{2}|x{[0-9a-zA-Z]+}/;\n\n/////////////////////////////////////////////////////////////////////////////\n// tokenizer\n\n  function tokenizer(stream,state) {\n    // in multi-line string\n    if (state.in_string) {\n      state.in_string = (!doubleQuote(stream));\n      return rval(state,stream,\"string\");\n    }\n\n    // in multi-line atom\n    if (state.in_atom) {\n      state.in_atom = (!singleQuote(stream));\n      return rval(state,stream,\"atom\");\n    }\n\n    // whitespace\n    if (stream.eatSpace()) {\n      return rval(state,stream,\"whitespace\");\n    }\n\n    // attributes and type specs\n    if (!peekToken(state) &&\n        stream.match(/-\\s*[a-zß-öø-ÿ][\\wØ-ÞÀ-Öß-öø-ÿ]*/)) {\n      if (is_member(stream.current(),typeWords)) {\n        return rval(state,stream,\"type\");\n      }else{\n        return rval(state,stream,\"attribute\");\n      }\n    }\n\n    var ch = stream.next();\n\n    // comment\n    if (ch == '%') {\n      stream.skipToEnd();\n      return rval(state,stream,\"comment\");\n    }\n\n    // colon\n    if (ch == \":\") {\n      return rval(state,stream,\"colon\");\n    }\n\n    // macro\n    if (ch == '?') {\n      stream.eatSpace();\n      stream.eatWhile(anumRE);\n      return rval(state,stream,\"macro\");\n    }\n\n    // record\n    if (ch == \"#\") {\n      stream.eatSpace();\n      stream.eatWhile(anumRE);\n      return rval(state,stream,\"record\");\n    }\n\n    // dollar escape\n    if (ch == \"$\") {\n      if (stream.next() == \"\\\\\" && !stream.match(escapesRE)) {\n        return rval(state,stream,\"error\");\n      }\n      return rval(state,stream,\"number\");\n    }\n\n    // dot\n    if (ch == \".\") {\n      return rval(state,stream,\"dot\");\n    }\n\n    // quoted atom\n    if (ch == '\\'') {\n      if (!(state.in_atom = (!singleQuote(stream)))) {\n        if (stream.match(/\\s*\\/\\s*[0-9]/,false)) {\n          stream.match(/\\s*\\/\\s*[0-9]/,true);\n          return rval(state,stream,\"fun\");      // 'f'/0 style fun\n        }\n        if (stream.match(/\\s*\\(/,false) || stream.match(/\\s*:/,false)) {\n          return rval(state,stream,\"function\");\n        }\n      }\n      return rval(state,stream,\"atom\");\n    }\n\n    // string\n    if (ch == '\"') {\n      state.in_string = (!doubleQuote(stream));\n      return rval(state,stream,\"string\");\n    }\n\n    // variable\n    if (/[A-Z_Ø-ÞÀ-Ö]/.test(ch)) {\n      stream.eatWhile(anumRE);\n      return rval(state,stream,\"variable\");\n    }\n\n    // atom/keyword/BIF/function\n    if (/[a-z_ß-öø-ÿ]/.test(ch)) {\n      stream.eatWhile(anumRE);\n\n      if (stream.match(/\\s*\\/\\s*[0-9]/,false)) {\n        stream.match(/\\s*\\/\\s*[0-9]/,true);\n        return rval(state,stream,\"fun\");      // f/0 style fun\n      }\n\n      var w = stream.current();\n\n      if (is_member(w,keywordWords)) {\n        return rval(state,stream,\"keyword\");\n      }else if (is_member(w,operatorAtomWords)) {\n        return rval(state,stream,\"operator\");\n      }else if (stream.match(/\\s*\\(/,false)) {\n        // 'put' and 'erlang:put' are bifs, 'foo:put' is not\n        if (is_member(w,bifWords) &&\n            ((peekToken(state).token != \":\") ||\n             (peekToken(state,2).token == \"erlang\"))) {\n          return rval(state,stream,\"builtin\");\n        }else if (is_member(w,guardWords)) {\n          return rval(state,stream,\"guard\");\n        }else{\n          return rval(state,stream,\"function\");\n        }\n      }else if (is_member(w,operatorAtomWords)) {\n        return rval(state,stream,\"operator\");\n      }else if (lookahead(stream) == \":\") {\n        if (w == \"erlang\") {\n          return rval(state,stream,\"builtin\");\n        } else {\n          return rval(state,stream,\"function\");\n        }\n      }else if (is_member(w,[\"true\",\"false\"])) {\n        return rval(state,stream,\"boolean\");\n      }else if (is_member(w,[\"true\",\"false\"])) {\n        return rval(state,stream,\"boolean\");\n      }else{\n        return rval(state,stream,\"atom\");\n      }\n    }\n\n    // number\n    var digitRE      = /[0-9]/;\n    var radixRE      = /[0-9a-zA-Z]/;         // 36#zZ style int\n    if (digitRE.test(ch)) {\n      stream.eatWhile(digitRE);\n      if (stream.eat('#')) {                // 36#aZ  style integer\n        if (!stream.eatWhile(radixRE)) {\n          stream.backUp(1);                 //\"36#\" - syntax error\n        }\n      } else if (stream.eat('.')) {       // float\n        if (!stream.eatWhile(digitRE)) {\n          stream.backUp(1);        // \"3.\" - probably end of function\n        } else {\n          if (stream.eat(/[eE]/)) {        // float with exponent\n            if (stream.eat(/[-+]/)) {\n              if (!stream.eatWhile(digitRE)) {\n                stream.backUp(2);            // \"2e-\" - syntax error\n              }\n            } else {\n              if (!stream.eatWhile(digitRE)) {\n                stream.backUp(1);            // \"2e\" - syntax error\n              }\n            }\n          }\n        }\n      }\n      return rval(state,stream,\"number\");   // normal integer\n    }\n\n    // open parens\n    if (nongreedy(stream,openParenRE,openParenWords)) {\n      return rval(state,stream,\"open_paren\");\n    }\n\n    // close parens\n    if (nongreedy(stream,closeParenRE,closeParenWords)) {\n      return rval(state,stream,\"close_paren\");\n    }\n\n    // separators\n    if (greedy(stream,separatorRE,separatorWords)) {\n      return rval(state,stream,\"separator\");\n    }\n\n    // operators\n    if (greedy(stream,operatorSymbolRE,operatorSymbolWords)) {\n      return rval(state,stream,\"operator\");\n    }\n\n    return rval(state,stream,null);\n  }\n\n/////////////////////////////////////////////////////////////////////////////\n// utilities\n  function nongreedy(stream,re,words) {\n    if (stream.current().length == 1 && re.test(stream.current())) {\n      stream.backUp(1);\n      while (re.test(stream.peek())) {\n        stream.next();\n        if (is_member(stream.current(),words)) {\n          return true;\n        }\n      }\n      stream.backUp(stream.current().length-1);\n    }\n    return false;\n  }\n\n  function greedy(stream,re,words) {\n    if (stream.current().length == 1 && re.test(stream.current())) {\n      while (re.test(stream.peek())) {\n        stream.next();\n      }\n      while (0 < stream.current().length) {\n        if (is_member(stream.current(),words)) {\n          return true;\n        }else{\n          stream.backUp(1);\n        }\n      }\n      stream.next();\n    }\n    return false;\n  }\n\n  function doubleQuote(stream) {\n    return quote(stream, '\"', '\\\\');\n  }\n\n  function singleQuote(stream) {\n    return quote(stream,'\\'','\\\\');\n  }\n\n  function quote(stream,quoteChar,escapeChar) {\n    while (!stream.eol()) {\n      var ch = stream.next();\n      if (ch == quoteChar) {\n        return true;\n      }else if (ch == escapeChar) {\n        stream.next();\n      }\n    }\n    return false;\n  }\n\n  function lookahead(stream) {\n    var m = stream.match(/([\\n\\s]+|%[^\\n]*\\n)*(.)/,false);\n    return m ? m.pop() : \"\";\n  }\n\n  function is_member(element,list) {\n    return (-1 < list.indexOf(element));\n  }\n\n  function rval(state,stream,type) {\n\n    // parse stack\n    pushToken(state,realToken(type,stream));\n\n    // map erlang token type to CodeMirror style class\n    //     erlang             -> CodeMirror tag\n    switch (type) {\n      case \"atom\":        return \"atom\";\n      case \"attribute\":   return \"attribute\";\n      case \"boolean\":     return \"atom\";\n      case \"builtin\":     return \"builtin\";\n      case \"close_paren\": return null;\n      case \"colon\":       return null;\n      case \"comment\":     return \"comment\";\n      case \"dot\":         return null;\n      case \"error\":       return \"error\";\n      case \"fun\":         return \"meta\";\n      case \"function\":    return \"tag\";\n      case \"guard\":       return \"property\";\n      case \"keyword\":     return \"keyword\";\n      case \"macro\":       return \"variable-2\";\n      case \"number\":      return \"number\";\n      case \"open_paren\":  return null;\n      case \"operator\":    return \"operator\";\n      case \"record\":      return \"bracket\";\n      case \"separator\":   return null;\n      case \"string\":      return \"string\";\n      case \"type\":        return \"def\";\n      case \"variable\":    return \"variable\";\n      default:            return null;\n    }\n  }\n\n  function aToken(tok,col,ind,typ) {\n    return {token:  tok,\n            column: col,\n            indent: ind,\n            type:   typ};\n  }\n\n  function realToken(type,stream) {\n    return aToken(stream.current(),\n                 stream.column(),\n                 stream.indentation(),\n                 type);\n  }\n\n  function fakeToken(type) {\n    return aToken(type,0,0,type);\n  }\n\n  function peekToken(state,depth) {\n    var len = state.tokenStack.length;\n    var dep = (depth ? depth : 1);\n\n    if (len < dep) {\n      return false;\n    }else{\n      return state.tokenStack[len-dep];\n    }\n  }\n\n  function pushToken(state,token) {\n\n    if (!(token.type == \"comment\" || token.type == \"whitespace\")) {\n      state.tokenStack = maybe_drop_pre(state.tokenStack,token);\n      state.tokenStack = maybe_drop_post(state.tokenStack);\n    }\n  }\n\n  function maybe_drop_pre(s,token) {\n    var last = s.length-1;\n\n    if (0 < last && s[last].type === \"record\" && token.type === \"dot\") {\n      s.pop();\n    }else if (0 < last && s[last].type === \"group\") {\n      s.pop();\n      s.push(token);\n    }else{\n      s.push(token);\n    }\n    return s;\n  }\n\n  function maybe_drop_post(s) {\n    var last = s.length-1;\n\n    if (s[last].type === \"dot\") {\n      return [];\n    }\n    if (s[last].type === \"fun\" && s[last-1].token === \"fun\") {\n      return s.slice(0,last-1);\n    }\n    switch (s[s.length-1].token) {\n      case \"}\":    return d(s,{g:[\"{\"]});\n      case \"]\":    return d(s,{i:[\"[\"]});\n      case \")\":    return d(s,{i:[\"(\"]});\n      case \">>\":   return d(s,{i:[\"<<\"]});\n      case \"end\":  return d(s,{i:[\"begin\",\"case\",\"fun\",\"if\",\"receive\",\"try\"]});\n      case \",\":    return d(s,{e:[\"begin\",\"try\",\"when\",\"->\",\n                                  \",\",\"(\",\"[\",\"{\",\"<<\"]});\n      case \"->\":   return d(s,{r:[\"when\"],\n                               m:[\"try\",\"if\",\"case\",\"receive\"]});\n      case \";\":    return d(s,{E:[\"case\",\"fun\",\"if\",\"receive\",\"try\",\"when\"]});\n      case \"catch\":return d(s,{e:[\"try\"]});\n      case \"of\":   return d(s,{e:[\"case\"]});\n      case \"after\":return d(s,{e:[\"receive\",\"try\"]});\n      default:     return s;\n    }\n  }\n\n  function d(stack,tt) {\n    // stack is a stack of Token objects.\n    // tt is an object; {type:tokens}\n    // type is a char, tokens is a list of token strings.\n    // The function returns (possibly truncated) stack.\n    // It will descend the stack, looking for a Token such that Token.token\n    //  is a member of tokens. If it does not find that, it will normally (but\n    //  see \"E\" below) return stack. If it does find a match, it will remove\n    //  all the Tokens between the top and the matched Token.\n    // If type is \"m\", that is all it does.\n    // If type is \"i\", it will also remove the matched Token and the top Token.\n    // If type is \"g\", like \"i\", but add a fake \"group\" token at the top.\n    // If type is \"r\", it will remove the matched Token, but not the top Token.\n    // If type is \"e\", it will keep the matched Token but not the top Token.\n    // If type is \"E\", it behaves as for type \"e\", except if there is no match,\n    //  in which case it will return an empty stack.\n\n    for (var type in tt) {\n      var len = stack.length-1;\n      var tokens = tt[type];\n      for (var i = len-1; -1 < i ; i--) {\n        if (is_member(stack[i].token,tokens)) {\n          var ss = stack.slice(0,i);\n          switch (type) {\n              case \"m\": return ss.concat(stack[i]).concat(stack[len]);\n              case \"r\": return ss.concat(stack[len]);\n              case \"i\": return ss;\n              case \"g\": return ss.concat(fakeToken(\"group\"));\n              case \"E\": return ss.concat(stack[i]);\n              case \"e\": return ss.concat(stack[i]);\n          }\n        }\n      }\n    }\n    return (type == \"E\" ? [] : stack);\n  }\n\n/////////////////////////////////////////////////////////////////////////////\n// indenter\n\n  function indenter(state,textAfter) {\n    var t;\n    var unit = cmCfg.indentUnit;\n    var wordAfter = wordafter(textAfter);\n    var currT = peekToken(state,1);\n    var prevT = peekToken(state,2);\n\n    if (state.in_string || state.in_atom) {\n      return CodeMirror.Pass;\n    }else if (!prevT) {\n      return 0;\n    }else if (currT.token == \"when\") {\n      return currT.column+unit;\n    }else if (wordAfter === \"when\" && prevT.type === \"function\") {\n      return prevT.indent+unit;\n    }else if (wordAfter === \"(\" && currT.token === \"fun\") {\n      return  currT.column+3;\n    }else if (wordAfter === \"catch\" && (t = getToken(state,[\"try\"]))) {\n      return t.column;\n    }else if (is_member(wordAfter,[\"end\",\"after\",\"of\"])) {\n      t = getToken(state,[\"begin\",\"case\",\"fun\",\"if\",\"receive\",\"try\"]);\n      return t ? t.column : CodeMirror.Pass;\n    }else if (is_member(wordAfter,closeParenWords)) {\n      t = getToken(state,openParenWords);\n      return t ? t.column : CodeMirror.Pass;\n    }else if (is_member(currT.token,[\",\",\"|\",\"||\"]) ||\n              is_member(wordAfter,[\",\",\"|\",\"||\"])) {\n      t = postcommaToken(state);\n      return t ? t.column+t.token.length : unit;\n    }else if (currT.token == \"->\") {\n      if (is_member(prevT.token, [\"receive\",\"case\",\"if\",\"try\"])) {\n        return prevT.column+unit+unit;\n      }else{\n        return prevT.column+unit;\n      }\n    }else if (is_member(currT.token,openParenWords)) {\n      return currT.column+currT.token.length;\n    }else{\n      t = defaultToken(state);\n      return truthy(t) ? t.column+unit : 0;\n    }\n  }\n\n  function wordafter(str) {\n    var m = str.match(/,|[a-z]+|\\}|\\]|\\)|>>|\\|+|\\(/);\n\n    return truthy(m) && (m.index === 0) ? m[0] : \"\";\n  }\n\n  function postcommaToken(state) {\n    var objs = state.tokenStack.slice(0,-1);\n    var i = getTokenIndex(objs,\"type\",[\"open_paren\"]);\n\n    return truthy(objs[i]) ? objs[i] : false;\n  }\n\n  function defaultToken(state) {\n    var objs = state.tokenStack;\n    var stop = getTokenIndex(objs,\"type\",[\"open_paren\",\"separator\",\"keyword\"]);\n    var oper = getTokenIndex(objs,\"type\",[\"operator\"]);\n\n    if (truthy(stop) && truthy(oper) && stop < oper) {\n      return objs[stop+1];\n    } else if (truthy(stop)) {\n      return objs[stop];\n    } else {\n      return false;\n    }\n  }\n\n  function getToken(state,tokens) {\n    var objs = state.tokenStack;\n    var i = getTokenIndex(objs,\"token\",tokens);\n\n    return truthy(objs[i]) ? objs[i] : false;\n  }\n\n  function getTokenIndex(objs,propname,propvals) {\n\n    for (var i = objs.length-1; -1 < i ; i--) {\n      if (is_member(objs[i][propname],propvals)) {\n        return i;\n      }\n    }\n    return false;\n  }\n\n  function truthy(x) {\n    return (x !== false) && (x != null);\n  }\n\n/////////////////////////////////////////////////////////////////////////////\n// this object defines the mode\n\n  return {\n    startState:\n      function() {\n        return {tokenStack: [],\n                in_string:  false,\n                in_atom:    false};\n      },\n\n    token:\n      function(stream, state) {\n        return tokenizer(stream, state);\n      },\n\n    indent:\n      function(state, textAfter) {\n        return indenter(state,textAfter);\n      },\n\n    lineComment: \"%\"\n  };\n});\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/erlang/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Erlang mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/erlang-dark.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"erlang.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Erlang</a>\n  </ul>\n</div>\n\n<article>\n<h2>Erlang mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n%% -*- mode: erlang; erlang-indent-level: 2 -*-\n%%% Created :  7 May 2012 by mats cronqvist <masse@klarna.com>\n\n%% @doc\n%% Demonstrates how to print a record.\n%% @end\n\n-module('ex').\n-author('mats cronqvist').\n-export([demo/0,\n         rec_info/1]).\n\n-record(demo,{a=\"One\",b=\"Two\",c=\"Three\",d=\"Four\"}).\n\nrec_info(demo) -> record_info(fields,demo).\n\ndemo() -> expand_recs(?MODULE,#demo{a=\"A\",b=\"BB\"}).\n\nexpand_recs(M,List) when is_list(List) ->\n  [expand_recs(M,L)||L<-List];\nexpand_recs(M,Tup) when is_tuple(Tup) ->\n  case tuple_size(Tup) of\n    L when L < 1 -> Tup;\n    L ->\n      try\n        Fields = M:rec_info(element(1,Tup)),\n        L = length(Fields)+1,\n        lists:zip(Fields,expand_recs(M,tl(tuple_to_list(Tup))))\n      catch\n        _:_ -> list_to_tuple(expand_recs(M,tuple_to_list(Tup)))\n      end\n  end;\nexpand_recs(_,Term) ->\n  Term.\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        extraKeys: {\"Tab\":  \"indentAuto\"},\n        theme: \"erlang-dark\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-erlang</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/fortran/fortran.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"fortran\", function() {\n  function words(array) {\n    var keys = {};\n    for (var i = 0; i < array.length; ++i) {\n      keys[array[i]] = true;\n    }\n    return keys;\n  }\n\n  var keywords = words([\n                  \"abstract\", \"accept\", \"allocatable\", \"allocate\",\n                  \"array\", \"assign\", \"asynchronous\", \"backspace\",\n                  \"bind\", \"block\", \"byte\", \"call\", \"case\",\n                  \"class\", \"close\", \"common\", \"contains\",\n                  \"continue\", \"cycle\", \"data\", \"deallocate\",\n                  \"decode\", \"deferred\", \"dimension\", \"do\",\n                  \"elemental\", \"else\", \"encode\", \"end\",\n                  \"endif\", \"entry\", \"enumerator\", \"equivalence\",\n                  \"exit\", \"external\", \"extrinsic\", \"final\",\n                  \"forall\", \"format\", \"function\", \"generic\",\n                  \"go\", \"goto\", \"if\", \"implicit\", \"import\", \"include\",\n                  \"inquire\", \"intent\", \"interface\", \"intrinsic\",\n                  \"module\", \"namelist\", \"non_intrinsic\",\n                  \"non_overridable\", \"none\", \"nopass\",\n                  \"nullify\", \"open\", \"optional\", \"options\",\n                  \"parameter\", \"pass\", \"pause\", \"pointer\",\n                  \"print\", \"private\", \"program\", \"protected\",\n                  \"public\", \"pure\", \"read\", \"recursive\", \"result\",\n                  \"return\", \"rewind\", \"save\", \"select\", \"sequence\",\n                  \"stop\", \"subroutine\", \"target\", \"then\", \"to\", \"type\",\n                  \"use\", \"value\", \"volatile\", \"where\", \"while\",\n                  \"write\"]);\n  var builtins = words([\"abort\", \"abs\", \"access\", \"achar\", \"acos\",\n                          \"adjustl\", \"adjustr\", \"aimag\", \"aint\", \"alarm\",\n                          \"all\", \"allocated\", \"alog\", \"amax\", \"amin\",\n                          \"amod\", \"and\", \"anint\", \"any\", \"asin\",\n                          \"associated\", \"atan\", \"besj\", \"besjn\", \"besy\",\n                          \"besyn\", \"bit_size\", \"btest\", \"cabs\", \"ccos\",\n                          \"ceiling\", \"cexp\", \"char\", \"chdir\", \"chmod\",\n                          \"clog\", \"cmplx\", \"command_argument_count\",\n                          \"complex\", \"conjg\", \"cos\", \"cosh\", \"count\",\n                          \"cpu_time\", \"cshift\", \"csin\", \"csqrt\", \"ctime\",\n                          \"c_funloc\", \"c_loc\", \"c_associated\", \"c_null_ptr\",\n                          \"c_null_funptr\", \"c_f_pointer\", \"c_null_char\",\n                          \"c_alert\", \"c_backspace\", \"c_form_feed\",\n                          \"c_new_line\", \"c_carriage_return\",\n                          \"c_horizontal_tab\", \"c_vertical_tab\", \"dabs\",\n                          \"dacos\", \"dasin\", \"datan\", \"date_and_time\",\n                          \"dbesj\", \"dbesj\", \"dbesjn\", \"dbesy\", \"dbesy\",\n                          \"dbesyn\", \"dble\", \"dcos\", \"dcosh\", \"ddim\", \"derf\",\n                          \"derfc\", \"dexp\", \"digits\", \"dim\", \"dint\", \"dlog\",\n                          \"dlog\", \"dmax\", \"dmin\", \"dmod\", \"dnint\",\n                          \"dot_product\", \"dprod\", \"dsign\", \"dsinh\",\n                          \"dsin\", \"dsqrt\", \"dtanh\", \"dtan\", \"dtime\",\n                          \"eoshift\", \"epsilon\", \"erf\", \"erfc\", \"etime\",\n                          \"exit\", \"exp\", \"exponent\", \"extends_type_of\",\n                          \"fdate\", \"fget\", \"fgetc\", \"float\", \"floor\",\n                          \"flush\", \"fnum\", \"fputc\", \"fput\", \"fraction\",\n                          \"fseek\", \"fstat\", \"ftell\", \"gerror\", \"getarg\",\n                          \"get_command\", \"get_command_argument\",\n                          \"get_environment_variable\", \"getcwd\",\n                          \"getenv\", \"getgid\", \"getlog\", \"getpid\",\n                          \"getuid\", \"gmtime\", \"hostnm\", \"huge\", \"iabs\",\n                          \"iachar\", \"iand\", \"iargc\", \"ibclr\", \"ibits\",\n                          \"ibset\", \"ichar\", \"idate\", \"idim\", \"idint\",\n                          \"idnint\", \"ieor\", \"ierrno\", \"ifix\", \"imag\",\n                          \"imagpart\", \"index\", \"int\", \"ior\", \"irand\",\n                          \"isatty\", \"ishft\", \"ishftc\", \"isign\",\n                          \"iso_c_binding\", \"is_iostat_end\", \"is_iostat_eor\",\n                          \"itime\", \"kill\", \"kind\", \"lbound\", \"len\", \"len_trim\",\n                          \"lge\", \"lgt\", \"link\", \"lle\", \"llt\", \"lnblnk\", \"loc\",\n                          \"log\", \"logical\", \"long\", \"lshift\", \"lstat\", \"ltime\",\n                          \"matmul\", \"max\", \"maxexponent\", \"maxloc\", \"maxval\",\n                          \"mclock\", \"merge\", \"move_alloc\", \"min\", \"minexponent\",\n                          \"minloc\", \"minval\", \"mod\", \"modulo\", \"mvbits\",\n                          \"nearest\", \"new_line\", \"nint\", \"not\", \"or\", \"pack\",\n                          \"perror\", \"precision\", \"present\", \"product\", \"radix\",\n                          \"rand\", \"random_number\", \"random_seed\", \"range\",\n                          \"real\", \"realpart\", \"rename\", \"repeat\", \"reshape\",\n                          \"rrspacing\", \"rshift\", \"same_type_as\", \"scale\",\n                          \"scan\", \"second\", \"selected_int_kind\",\n                          \"selected_real_kind\", \"set_exponent\", \"shape\",\n                          \"short\", \"sign\", \"signal\", \"sinh\", \"sin\", \"sleep\",\n                          \"sngl\", \"spacing\", \"spread\", \"sqrt\", \"srand\", \"stat\",\n                          \"sum\", \"symlnk\", \"system\", \"system_clock\", \"tan\",\n                          \"tanh\", \"time\", \"tiny\", \"transfer\", \"transpose\",\n                          \"trim\", \"ttynam\", \"ubound\", \"umask\", \"unlink\",\n                          \"unpack\", \"verify\", \"xor\", \"zabs\", \"zcos\", \"zexp\",\n                          \"zlog\", \"zsin\", \"zsqrt\"]);\n\n    var dataTypes =  words([\"c_bool\", \"c_char\", \"c_double\", \"c_double_complex\",\n                     \"c_float\", \"c_float_complex\", \"c_funptr\", \"c_int\",\n                     \"c_int16_t\", \"c_int32_t\", \"c_int64_t\", \"c_int8_t\",\n                     \"c_int_fast16_t\", \"c_int_fast32_t\", \"c_int_fast64_t\",\n                     \"c_int_fast8_t\", \"c_int_least16_t\", \"c_int_least32_t\",\n                     \"c_int_least64_t\", \"c_int_least8_t\", \"c_intmax_t\",\n                     \"c_intptr_t\", \"c_long\", \"c_long_double\",\n                     \"c_long_double_complex\", \"c_long_long\", \"c_ptr\",\n                     \"c_short\", \"c_signed_char\", \"c_size_t\", \"character\",\n                     \"complex\", \"double\", \"integer\", \"logical\", \"real\"]);\n  var isOperatorChar = /[+\\-*&=<>\\/\\:]/;\n  var litOperator = new RegExp(\"(\\.and\\.|\\.or\\.|\\.eq\\.|\\.lt\\.|\\.le\\.|\\.gt\\.|\\.ge\\.|\\.ne\\.|\\.not\\.|\\.eqv\\.|\\.neqv\\.)\", \"i\");\n\n  function tokenBase(stream, state) {\n\n    if (stream.match(litOperator)){\n        return 'operator';\n    }\n\n    var ch = stream.next();\n    if (ch == \"!\") {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n    if (ch == '\"' || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    if (/[\\[\\]\\(\\),]/.test(ch)) {\n      return null;\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      return \"number\";\n    }\n    if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_]/);\n    var word = stream.current().toLowerCase();\n\n    if (keywords.hasOwnProperty(word)){\n            return 'keyword';\n    }\n    if (builtins.hasOwnProperty(word) || dataTypes.hasOwnProperty(word)) {\n            return 'builtin';\n    }\n    return \"variable\";\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {\n            end = true;\n            break;\n        }\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !escaped) state.tokenize = null;\n      return \"string\";\n    };\n  }\n\n  // Interface\n\n  return {\n    startState: function() {\n      return {tokenize: null};\n    },\n\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style == \"comment\" || style == \"meta\") return style;\n      return style;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-fortran\", \"fortran\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/fortran/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Fortran mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"fortran.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Fortran</a>\n  </ul>\n</div>\n\n<article>\n<h2>Fortran mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n! Example Fortran code\n  program average\n\n  ! Read in some numbers and take the average\n  ! As written, if there are no data points, an average of zero is returned\n  ! While this may not be desired behavior, it keeps this example simple\n\n  implicit none\n\n  real, dimension(:), allocatable :: points\n  integer                         :: number_of_points\n  real                            :: average_points=0., positive_average=0., negative_average=0.\n\n  write (*,*) \"Input number of points to average:\"\n  read  (*,*) number_of_points\n\n  allocate (points(number_of_points))\n\n  write (*,*) \"Enter the points to average:\"\n  read  (*,*) points\n\n  ! Take the average by summing points and dividing by number_of_points\n  if (number_of_points > 0) average_points = sum(points) / number_of_points\n\n  ! Now form average over positive and negative points only\n  if (count(points > 0.) > 0) then\n     positive_average = sum(points, points > 0.) / count(points > 0.)\n  end if\n\n  if (count(points < 0.) > 0) then\n     negative_average = sum(points, points < 0.) / count(points < 0.)\n  end if\n\n  deallocate (points)\n\n  ! Print result to terminal\n  write (*,'(a,g12.4)') 'Average = ', average_points\n  write (*,'(a,g12.4)') 'Average of positive points = ', positive_average\n  write (*,'(a,g12.4)') 'Average of negative points = ', negative_average\n\n  end program average\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        mode: \"text/x-fortran\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-Fortran</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/gas/gas.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"gas\", function(_config, parserConfig) {\n  'use strict';\n\n  // If an architecture is specified, its initialization function may\n  // populate this array with custom parsing functions which will be\n  // tried in the event that the standard functions do not find a match.\n  var custom = [];\n\n  // The symbol used to start a line comment changes based on the target\n  // architecture.\n  // If no architecture is pased in \"parserConfig\" then only multiline\n  // comments will have syntax support.\n  var lineCommentStartSymbol = \"\";\n\n  // These directives are architecture independent.\n  // Machine specific directives should go in their respective\n  // architecture initialization function.\n  // Reference:\n  // http://sourceware.org/binutils/docs/as/Pseudo-Ops.html#Pseudo-Ops\n  var directives = {\n    \".abort\" : \"builtin\",\n    \".align\" : \"builtin\",\n    \".altmacro\" : \"builtin\",\n    \".ascii\" : \"builtin\",\n    \".asciz\" : \"builtin\",\n    \".balign\" : \"builtin\",\n    \".balignw\" : \"builtin\",\n    \".balignl\" : \"builtin\",\n    \".bundle_align_mode\" : \"builtin\",\n    \".bundle_lock\" : \"builtin\",\n    \".bundle_unlock\" : \"builtin\",\n    \".byte\" : \"builtin\",\n    \".cfi_startproc\" : \"builtin\",\n    \".comm\" : \"builtin\",\n    \".data\" : \"builtin\",\n    \".def\" : \"builtin\",\n    \".desc\" : \"builtin\",\n    \".dim\" : \"builtin\",\n    \".double\" : \"builtin\",\n    \".eject\" : \"builtin\",\n    \".else\" : \"builtin\",\n    \".elseif\" : \"builtin\",\n    \".end\" : \"builtin\",\n    \".endef\" : \"builtin\",\n    \".endfunc\" : \"builtin\",\n    \".endif\" : \"builtin\",\n    \".equ\" : \"builtin\",\n    \".equiv\" : \"builtin\",\n    \".eqv\" : \"builtin\",\n    \".err\" : \"builtin\",\n    \".error\" : \"builtin\",\n    \".exitm\" : \"builtin\",\n    \".extern\" : \"builtin\",\n    \".fail\" : \"builtin\",\n    \".file\" : \"builtin\",\n    \".fill\" : \"builtin\",\n    \".float\" : \"builtin\",\n    \".func\" : \"builtin\",\n    \".global\" : \"builtin\",\n    \".gnu_attribute\" : \"builtin\",\n    \".hidden\" : \"builtin\",\n    \".hword\" : \"builtin\",\n    \".ident\" : \"builtin\",\n    \".if\" : \"builtin\",\n    \".incbin\" : \"builtin\",\n    \".include\" : \"builtin\",\n    \".int\" : \"builtin\",\n    \".internal\" : \"builtin\",\n    \".irp\" : \"builtin\",\n    \".irpc\" : \"builtin\",\n    \".lcomm\" : \"builtin\",\n    \".lflags\" : \"builtin\",\n    \".line\" : \"builtin\",\n    \".linkonce\" : \"builtin\",\n    \".list\" : \"builtin\",\n    \".ln\" : \"builtin\",\n    \".loc\" : \"builtin\",\n    \".loc_mark_labels\" : \"builtin\",\n    \".local\" : \"builtin\",\n    \".long\" : \"builtin\",\n    \".macro\" : \"builtin\",\n    \".mri\" : \"builtin\",\n    \".noaltmacro\" : \"builtin\",\n    \".nolist\" : \"builtin\",\n    \".octa\" : \"builtin\",\n    \".offset\" : \"builtin\",\n    \".org\" : \"builtin\",\n    \".p2align\" : \"builtin\",\n    \".popsection\" : \"builtin\",\n    \".previous\" : \"builtin\",\n    \".print\" : \"builtin\",\n    \".protected\" : \"builtin\",\n    \".psize\" : \"builtin\",\n    \".purgem\" : \"builtin\",\n    \".pushsection\" : \"builtin\",\n    \".quad\" : \"builtin\",\n    \".reloc\" : \"builtin\",\n    \".rept\" : \"builtin\",\n    \".sbttl\" : \"builtin\",\n    \".scl\" : \"builtin\",\n    \".section\" : \"builtin\",\n    \".set\" : \"builtin\",\n    \".short\" : \"builtin\",\n    \".single\" : \"builtin\",\n    \".size\" : \"builtin\",\n    \".skip\" : \"builtin\",\n    \".sleb128\" : \"builtin\",\n    \".space\" : \"builtin\",\n    \".stab\" : \"builtin\",\n    \".string\" : \"builtin\",\n    \".struct\" : \"builtin\",\n    \".subsection\" : \"builtin\",\n    \".symver\" : \"builtin\",\n    \".tag\" : \"builtin\",\n    \".text\" : \"builtin\",\n    \".title\" : \"builtin\",\n    \".type\" : \"builtin\",\n    \".uleb128\" : \"builtin\",\n    \".val\" : \"builtin\",\n    \".version\" : \"builtin\",\n    \".vtable_entry\" : \"builtin\",\n    \".vtable_inherit\" : \"builtin\",\n    \".warning\" : \"builtin\",\n    \".weak\" : \"builtin\",\n    \".weakref\" : \"builtin\",\n    \".word\" : \"builtin\"\n  };\n\n  var registers = {};\n\n  function x86(_parserConfig) {\n    lineCommentStartSymbol = \"#\";\n\n    registers.ax  = \"variable\";\n    registers.eax = \"variable-2\";\n    registers.rax = \"variable-3\";\n\n    registers.bx  = \"variable\";\n    registers.ebx = \"variable-2\";\n    registers.rbx = \"variable-3\";\n\n    registers.cx  = \"variable\";\n    registers.ecx = \"variable-2\";\n    registers.rcx = \"variable-3\";\n\n    registers.dx  = \"variable\";\n    registers.edx = \"variable-2\";\n    registers.rdx = \"variable-3\";\n\n    registers.si  = \"variable\";\n    registers.esi = \"variable-2\";\n    registers.rsi = \"variable-3\";\n\n    registers.di  = \"variable\";\n    registers.edi = \"variable-2\";\n    registers.rdi = \"variable-3\";\n\n    registers.sp  = \"variable\";\n    registers.esp = \"variable-2\";\n    registers.rsp = \"variable-3\";\n\n    registers.bp  = \"variable\";\n    registers.ebp = \"variable-2\";\n    registers.rbp = \"variable-3\";\n\n    registers.ip  = \"variable\";\n    registers.eip = \"variable-2\";\n    registers.rip = \"variable-3\";\n\n    registers.cs  = \"keyword\";\n    registers.ds  = \"keyword\";\n    registers.ss  = \"keyword\";\n    registers.es  = \"keyword\";\n    registers.fs  = \"keyword\";\n    registers.gs  = \"keyword\";\n  }\n\n  function armv6(_parserConfig) {\n    // Reference:\n    // http://infocenter.arm.com/help/topic/com.arm.doc.qrc0001l/QRC0001_UAL.pdf\n    // http://infocenter.arm.com/help/topic/com.arm.doc.ddi0301h/DDI0301H_arm1176jzfs_r0p7_trm.pdf\n    lineCommentStartSymbol = \"@\";\n    directives.syntax = \"builtin\";\n\n    registers.r0  = \"variable\";\n    registers.r1  = \"variable\";\n    registers.r2  = \"variable\";\n    registers.r3  = \"variable\";\n    registers.r4  = \"variable\";\n    registers.r5  = \"variable\";\n    registers.r6  = \"variable\";\n    registers.r7  = \"variable\";\n    registers.r8  = \"variable\";\n    registers.r9  = \"variable\";\n    registers.r10 = \"variable\";\n    registers.r11 = \"variable\";\n    registers.r12 = \"variable\";\n\n    registers.sp  = \"variable-2\";\n    registers.lr  = \"variable-2\";\n    registers.pc  = \"variable-2\";\n    registers.r13 = registers.sp;\n    registers.r14 = registers.lr;\n    registers.r15 = registers.pc;\n\n    custom.push(function(ch, stream) {\n      if (ch === '#') {\n        stream.eatWhile(/\\w/);\n        return \"number\";\n      }\n    });\n  }\n\n  var arch = (parserConfig.architecture || \"x86\").toLowerCase();\n  if (arch === \"x86\") {\n    x86(parserConfig);\n  } else if (arch === \"arm\" || arch === \"armv6\") {\n    armv6(parserConfig);\n  }\n\n  function nextUntilUnescaped(stream, end) {\n    var escaped = false, next;\n    while ((next = stream.next()) != null) {\n      if (next === end && !escaped) {\n        return false;\n      }\n      escaped = !escaped && next === \"\\\\\";\n    }\n    return escaped;\n  }\n\n  function clikeComment(stream, state) {\n    var maybeEnd = false, ch;\n    while ((ch = stream.next()) != null) {\n      if (ch === \"/\" && maybeEnd) {\n        state.tokenize = null;\n        break;\n      }\n      maybeEnd = (ch === \"*\");\n    }\n    return \"comment\";\n  }\n\n  return {\n    startState: function() {\n      return {\n        tokenize: null\n      };\n    },\n\n    token: function(stream, state) {\n      if (state.tokenize) {\n        return state.tokenize(stream, state);\n      }\n\n      if (stream.eatSpace()) {\n        return null;\n      }\n\n      var style, cur, ch = stream.next();\n\n      if (ch === \"/\") {\n        if (stream.eat(\"*\")) {\n          state.tokenize = clikeComment;\n          return clikeComment(stream, state);\n        }\n      }\n\n      if (ch === lineCommentStartSymbol) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n\n      if (ch === '\"') {\n        nextUntilUnescaped(stream, '\"');\n        return \"string\";\n      }\n\n      if (ch === '.') {\n        stream.eatWhile(/\\w/);\n        cur = stream.current().toLowerCase();\n        style = directives[cur];\n        return style || null;\n      }\n\n      if (ch === '=') {\n        stream.eatWhile(/\\w/);\n        return \"tag\";\n      }\n\n      if (ch === '{') {\n        return \"braket\";\n      }\n\n      if (ch === '}') {\n        return \"braket\";\n      }\n\n      if (/\\d/.test(ch)) {\n        if (ch === \"0\" && stream.eat(\"x\")) {\n          stream.eatWhile(/[0-9a-fA-F]/);\n          return \"number\";\n        }\n        stream.eatWhile(/\\d/);\n        return \"number\";\n      }\n\n      if (/\\w/.test(ch)) {\n        stream.eatWhile(/\\w/);\n        if (stream.eat(\":\")) {\n          return 'tag';\n        }\n        cur = stream.current().toLowerCase();\n        style = registers[cur];\n        return style || null;\n      }\n\n      for (var i = 0; i < custom.length; i++) {\n        style = custom[i](ch, stream, state);\n        if (style) {\n          return style;\n        }\n      }\n    },\n\n    lineComment: lineCommentStartSymbol,\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\"\n  };\n});\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/gas/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Gas mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"gas.js\"></script>\n<style>.CodeMirror {border: 2px inset #dee;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Gas</a>\n  </ul>\n</div>\n\n<article>\n<h2>Gas mode</h2>\n<form>\n<textarea id=\"code\" name=\"code\">\n.syntax unified\n.global main\n\n/* \n *  A\n *  multi-line\n *  comment.\n */\n\n@ A single line comment.\n\nmain:\n        push    {sp, lr}\n        ldr     r0, =message\n        bl      puts\n        mov     r0, #0\n        pop     {sp, pc}\n\nmessage:\n        .asciz \"Hello world!<br />\"\n</textarea>\n        </form>\n\n        <script>\n            var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n                lineNumbers: true,\n                mode: {name: \"gas\", architecture: \"ARMv6\"},\n            });\n        </script>\n\n        <p>Handles AT&amp;T assembler syntax (more specifically this handles\n        the GNU Assembler (gas) syntax.)\n        It takes a single optional configuration parameter:\n        <code>architecture</code>, which can be one of <code>\"ARM\"</code>,\n        <code>\"ARMv6\"</code> or <code>\"x86\"</code>.\n        Including the parameter adds syntax for the registers and special\n        directives for the supplied architecture.\n\n        <p><strong>MIME types defined:</strong> <code>text/x-gas</code></p>\n    </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/gfm/gfm.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../markdown/markdown\"), require(\"../../addon/mode/overlay\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../markdown/markdown\", \"../../addon/mode/overlay\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"gfm\", function(config, modeConfig) {\n  var codeDepth = 0;\n  function blankLine(state) {\n    state.code = false;\n    return null;\n  }\n  var gfmOverlay = {\n    startState: function() {\n      return {\n        code: false,\n        codeBlock: false,\n        ateSpace: false\n      };\n    },\n    copyState: function(s) {\n      return {\n        code: s.code,\n        codeBlock: s.codeBlock,\n        ateSpace: s.ateSpace\n      };\n    },\n    token: function(stream, state) {\n      state.combineTokens = null;\n\n      // Hack to prevent formatting override inside code blocks (block and inline)\n      if (state.codeBlock) {\n        if (stream.match(/^```/)) {\n          state.codeBlock = false;\n          return null;\n        }\n        stream.skipToEnd();\n        return null;\n      }\n      if (stream.sol()) {\n        state.code = false;\n      }\n      if (stream.sol() && stream.match(/^```/)) {\n        stream.skipToEnd();\n        state.codeBlock = true;\n        return null;\n      }\n      // If this block is changed, it may need to be updated in Markdown mode\n      if (stream.peek() === '`') {\n        stream.next();\n        var before = stream.pos;\n        stream.eatWhile('`');\n        var difference = 1 + stream.pos - before;\n        if (!state.code) {\n          codeDepth = difference;\n          state.code = true;\n        } else {\n          if (difference === codeDepth) { // Must be exact\n            state.code = false;\n          }\n        }\n        return null;\n      } else if (state.code) {\n        stream.next();\n        return null;\n      }\n      // Check if space. If so, links can be formatted later on\n      if (stream.eatSpace()) {\n        state.ateSpace = true;\n        return null;\n      }\n      if (stream.sol() || state.ateSpace) {\n        state.ateSpace = false;\n        if(stream.match(/^(?:[a-zA-Z0-9\\-_]+\\/)?(?:[a-zA-Z0-9\\-_]+@)?(?:[a-f0-9]{7,40}\\b)/)) {\n          // User/Project@SHA\n          // User@SHA\n          // SHA\n          state.combineTokens = true;\n          return \"link\";\n        } else if (stream.match(/^(?:[a-zA-Z0-9\\-_]+\\/)?(?:[a-zA-Z0-9\\-_]+)?#[0-9]+\\b/)) {\n          // User/Project#Num\n          // User#Num\n          // #Num\n          state.combineTokens = true;\n          return \"link\";\n        }\n      }\n      if (stream.match(/^((?:[a-z][\\w-]+:(?:\\/{1,3}|[a-z0-9%])|www\\d{0,3}[.]|[a-z0-9.\\-]+[.][a-z]{2,4}\\/)(?:[^\\s()<>]|\\([^\\s()<>]*\\))+(?:\\([^\\s()<>]*\\)|[^\\s`*!()\\[\\]{};:'\".,<>?«»“”‘’]))/i) &&\n         stream.string.slice(stream.start - 2, stream.start) != \"](\") {\n        // URLs\n        // Taken from http://daringfireball.net/2010/07/improved_regex_for_matching_urls\n        // And then (issue #1160) simplified to make it not crash the Chrome Regexp engine\n        state.combineTokens = true;\n        return \"link\";\n      }\n      stream.next();\n      return null;\n    },\n    blankLine: blankLine\n  };\n\n  var markdownConfig = {\n    underscoresBreakWords: false,\n    taskLists: true,\n    fencedCodeBlocks: true\n  };\n  for (var attr in modeConfig) {\n    markdownConfig[attr] = modeConfig[attr];\n  }\n  markdownConfig.name = \"markdown\";\n  CodeMirror.defineMIME(\"gfmBase\", markdownConfig);\n  return CodeMirror.overlayMode(CodeMirror.getMode(config, \"gfmBase\"), gfmOverlay);\n}, \"markdown\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/gfm/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: GFM mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/mode/overlay.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../markdown/markdown.js\"></script>\n<script src=\"gfm.js\"></script>\n<script src=\"../javascript/javascript.js\"></script>\n<script src=\"../css/css.js\"></script>\n<script src=\"../htmlmixed/htmlmixed.js\"></script>\n<script src=\"../clike/clike.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">GFM</a>\n  </ul>\n</div>\n\n<article>\n<h2>GFM mode</h2>\n<form><textarea id=\"code\" name=\"code\">\nGitHub Flavored Markdown\n========================\n\nEverything from markdown plus GFM features:\n\n## URL autolinking\n\nUnderscores_are_allowed_between_words.\n\n## Fenced code blocks (and syntax highlighting)\n\n```javascript\nfor (var i = 0; i &lt; items.length; i++) {\n    console.log(items[i], i); // log them\n}\n```\n\n## Task Lists\n\n- [ ] Incomplete task list item\n- [x] **Completed** task list item\n\n## A bit of GitHub spice\n\n* SHA: be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2\n* User@SHA ref: mojombo@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2\n* User/Project@SHA: mojombo/god@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2\n* \\#Num: #1\n* User/#Num: mojombo#1\n* User/Project#Num: mojombo/god#1\n\nSee http://github.github.com/github-flavored-markdown/.\n\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: 'gfm',\n        lineNumbers: true,\n        theme: \"default\"\n      });\n    </script>\n\n    <p>Optionally depends on other modes for properly highlighted code blocks.</p>\n\n    <p><strong>Parsing/Highlighting Tests:</strong> <a href=\"../../test/index.html#gfm_*\">normal</a>,  <a href=\"../../test/index.html#verbose,gfm_*\">verbose</a>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/gfm/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({tabSize: 4}, \"gfm\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n  var modeHighlightFormatting = CodeMirror.getMode({tabSize: 4}, {name: \"gfm\", highlightFormatting: true});\n  function FT(name) { test.mode(name, modeHighlightFormatting, Array.prototype.slice.call(arguments, 1)); }\n\n  FT(\"codeBackticks\",\n     \"[comment&formatting&formatting-code `][comment foo][comment&formatting&formatting-code `]\");\n\n  FT(\"doubleBackticks\",\n     \"[comment&formatting&formatting-code ``][comment foo ` bar][comment&formatting&formatting-code ``]\");\n\n  FT(\"codeBlock\",\n     \"[comment&formatting&formatting-code-block ```css]\",\n     \"[tag foo]\",\n     \"[comment&formatting&formatting-code-block ```]\");\n\n  FT(\"taskList\",\n     \"[variable-2&formatting&formatting-list&formatting-list-ul - ][meta&formatting&formatting-task [ ]]][variable-2  foo]\",\n     \"[variable-2&formatting&formatting-list&formatting-list-ul - ][property&formatting&formatting-task [x]]][variable-2  foo]\");\n\n  MT(\"emInWordAsterisk\",\n     \"foo[em *bar*]hello\");\n\n  MT(\"emInWordUnderscore\",\n     \"foo_bar_hello\");\n\n  MT(\"emStrongUnderscore\",\n     \"[strong __][em&strong _foo__][em _] bar\");\n\n  MT(\"fencedCodeBlocks\",\n     \"[comment ```]\",\n     \"[comment foo]\",\n     \"\",\n     \"[comment ```]\",\n     \"bar\");\n\n  MT(\"fencedCodeBlockModeSwitching\",\n     \"[comment ```javascript]\",\n     \"[variable foo]\",\n     \"\",\n     \"[comment ```]\",\n     \"bar\");\n\n  MT(\"taskListAsterisk\",\n     \"[variable-2 * []] foo]\", // Invalid; must have space or x between []\n     \"[variable-2 * [ ]]bar]\", // Invalid; must have space after ]\n     \"[variable-2 * [x]]hello]\", // Invalid; must have space after ]\n     \"[variable-2 * ][meta [ ]]][variable-2  [world]]]\", // Valid; tests reference style links\n     \"    [variable-3 * ][property [x]]][variable-3  foo]\"); // Valid; can be nested\n\n  MT(\"taskListPlus\",\n     \"[variable-2 + []] foo]\", // Invalid; must have space or x between []\n     \"[variable-2 + [ ]]bar]\", // Invalid; must have space after ]\n     \"[variable-2 + [x]]hello]\", // Invalid; must have space after ]\n     \"[variable-2 + ][meta [ ]]][variable-2  [world]]]\", // Valid; tests reference style links\n     \"    [variable-3 + ][property [x]]][variable-3  foo]\"); // Valid; can be nested\n\n  MT(\"taskListDash\",\n     \"[variable-2 - []] foo]\", // Invalid; must have space or x between []\n     \"[variable-2 - [ ]]bar]\", // Invalid; must have space after ]\n     \"[variable-2 - [x]]hello]\", // Invalid; must have space after ]\n     \"[variable-2 - ][meta [ ]]][variable-2  [world]]]\", // Valid; tests reference style links\n     \"    [variable-3 - ][property [x]]][variable-3  foo]\"); // Valid; can be nested\n\n  MT(\"taskListNumber\",\n     \"[variable-2 1. []] foo]\", // Invalid; must have space or x between []\n     \"[variable-2 2. [ ]]bar]\", // Invalid; must have space after ]\n     \"[variable-2 3. [x]]hello]\", // Invalid; must have space after ]\n     \"[variable-2 4. ][meta [ ]]][variable-2  [world]]]\", // Valid; tests reference style links\n     \"    [variable-3 1. ][property [x]]][variable-3  foo]\"); // Valid; can be nested\n\n  MT(\"SHA\",\n     \"foo [link be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2] bar\");\n\n  MT(\"SHAEmphasis\",\n     \"[em *foo ][em&link be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2][em *]\");\n\n  MT(\"shortSHA\",\n     \"foo [link be6a8cc] bar\");\n\n  MT(\"tooShortSHA\",\n     \"foo be6a8c bar\");\n\n  MT(\"longSHA\",\n     \"foo be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd22 bar\");\n\n  MT(\"badSHA\",\n     \"foo be6a8cc1c1ecfe9489fb51e4869af15a13fc2cg2 bar\");\n\n  MT(\"userSHA\",\n     \"foo [link bar@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2] hello\");\n\n  MT(\"userSHAEmphasis\",\n     \"[em *foo ][em&link bar@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2][em *]\");\n\n  MT(\"userProjectSHA\",\n     \"foo [link bar/hello@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2] world\");\n\n  MT(\"userProjectSHAEmphasis\",\n     \"[em *foo ][em&link bar/hello@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2][em *]\");\n\n  MT(\"num\",\n     \"foo [link #1] bar\");\n\n  MT(\"numEmphasis\",\n     \"[em *foo ][em&link #1][em *]\");\n\n  MT(\"badNum\",\n     \"foo #1bar hello\");\n\n  MT(\"userNum\",\n     \"foo [link bar#1] hello\");\n\n  MT(\"userNumEmphasis\",\n     \"[em *foo ][em&link bar#1][em *]\");\n\n  MT(\"userProjectNum\",\n     \"foo [link bar/hello#1] world\");\n\n  MT(\"userProjectNumEmphasis\",\n     \"[em *foo ][em&link bar/hello#1][em *]\");\n\n  MT(\"vanillaLink\",\n     \"foo [link http://www.example.com/] bar\");\n\n  MT(\"vanillaLinkPunctuation\",\n     \"foo [link http://www.example.com/]. bar\");\n\n  MT(\"vanillaLinkExtension\",\n     \"foo [link http://www.example.com/index.html] bar\");\n\n  MT(\"vanillaLinkEmphasis\",\n     \"foo [em *][em&link http://www.example.com/index.html][em *] bar\");\n\n  MT(\"notALink\",\n     \"[comment ```css]\",\n     \"[tag foo] {[property color]:[keyword black];}\",\n     \"[comment ```][link http://www.example.com/]\");\n\n  MT(\"notALink\",\n     \"[comment ``foo `bar` http://www.example.com/``] hello\");\n\n  MT(\"notALink\",\n     \"[comment `foo]\",\n     \"[link http://www.example.com/]\",\n     \"[comment `foo]\",\n     \"\",\n     \"[link http://www.example.com/]\");\n\n  MT(\"headerCodeBlockGithub\",\n     \"[header&header-1 # heading]\",\n     \"\",\n     \"[comment ```]\",\n     \"[comment code]\",\n     \"[comment ```]\",\n     \"\",\n     \"Commit: [link be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2]\",\n     \"Issue: [link #1]\",\n     \"Link: [link http://www.example.com/]\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/gherkin/gherkin.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/*\nGherkin mode - http://www.cukes.info/\nReport bugs/issues here: https://github.com/codemirror/CodeMirror/issues\n*/\n\n// Following Objs from Brackets implementation: https://github.com/tregusti/brackets-gherkin/blob/master/main.js\n//var Quotes = {\n//  SINGLE: 1,\n//  DOUBLE: 2\n//};\n\n//var regex = {\n//  keywords: /(Feature| {2}(Scenario|In order to|As|I)| {4}(Given|When|Then|And))/\n//};\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"gherkin\", function () {\n  return {\n    startState: function () {\n      return {\n        lineNumber: 0,\n        tableHeaderLine: false,\n        allowFeature: true,\n        allowBackground: false,\n        allowScenario: false,\n        allowSteps: false,\n        allowPlaceholders: false,\n        allowMultilineArgument: false,\n        inMultilineString: false,\n        inMultilineTable: false,\n        inKeywordLine: false\n      };\n    },\n    token: function (stream, state) {\n      if (stream.sol()) {\n        state.lineNumber++;\n        state.inKeywordLine = false;\n        if (state.inMultilineTable) {\n            state.tableHeaderLine = false;\n            if (!stream.match(/\\s*\\|/, false)) {\n              state.allowMultilineArgument = false;\n              state.inMultilineTable = false;\n            }\n        }\n      }\n\n      stream.eatSpace();\n\n      if (state.allowMultilineArgument) {\n\n        // STRING\n        if (state.inMultilineString) {\n          if (stream.match('\"\"\"')) {\n            state.inMultilineString = false;\n            state.allowMultilineArgument = false;\n          } else {\n            stream.match(/.*/);\n          }\n          return \"string\";\n        }\n\n        // TABLE\n        if (state.inMultilineTable) {\n          if (stream.match(/\\|\\s*/)) {\n            return \"bracket\";\n          } else {\n            stream.match(/[^\\|]*/);\n            return state.tableHeaderLine ? \"header\" : \"string\";\n          }\n        }\n\n        // DETECT START\n        if (stream.match('\"\"\"')) {\n          // String\n          state.inMultilineString = true;\n          return \"string\";\n        } else if (stream.match(\"|\")) {\n          // Table\n          state.inMultilineTable = true;\n          state.tableHeaderLine = true;\n          return \"bracket\";\n        }\n\n      }\n\n      // LINE COMMENT\n      if (stream.match(/#.*/)) {\n        return \"comment\";\n\n      // TAG\n      } else if (!state.inKeywordLine && stream.match(/@\\S+/)) {\n        return \"tag\";\n\n      // FEATURE\n      } else if (!state.inKeywordLine && state.allowFeature && stream.match(/(機能|功能|フィーチャ|기능|โครงหลัก|ความสามารถ|ความต้องการทางธุรกิจ|ಹೆಚ್ಚಳ|గుణము|ਮੁਹਾਂਦਰਾ|ਨਕਸ਼ ਨੁਹਾਰ|ਖਾਸੀਅਤ|रूप लेख|وِیژگی|خاصية|תכונה|Функціонал|Функция|Функционалност|Функционал|Үзенчәлеклелек|Свойство|Особина|Мөмкинлек|Могућност|Λειτουργία|Δυνατότητα|Właściwość|Vlastnosť|Trajto|Tính năng|Savybė|Pretty much|Požiadavka|Požadavek|Potrzeba biznesowa|Özellik|Osobina|Ominaisuus|Omadus|OH HAI|Mogućnost|Mogucnost|Jellemző|Hwæt|Hwaet|Funzionalità|Funktionalitéit|Funktionalität|Funkcja|Funkcionalnost|Funkcionalitāte|Funkcia|Fungsi|Functionaliteit|Funcționalitate|Funcţionalitate|Functionalitate|Funcionalitat|Funcionalidade|Fonctionnalité|Fitur|Fīča|Feature|Eiginleiki|Egenskap|Egenskab|Característica|Caracteristica|Business Need|Aspekt|Arwedd|Ahoy matey!|Ability):/)) {\n        state.allowScenario = true;\n        state.allowBackground = true;\n        state.allowPlaceholders = false;\n        state.allowSteps = false;\n        state.allowMultilineArgument = false;\n        state.inKeywordLine = true;\n        return \"keyword\";\n\n      // BACKGROUND\n      } else if (!state.inKeywordLine && state.allowBackground && stream.match(/(背景|배경|แนวคิด|ಹಿನ್ನೆಲೆ|నేపథ్యం|ਪਿਛੋਕੜ|पृष्ठभूमि|زمینه|الخلفية|רקע|Тарих|Предыстория|Предистория|Позадина|Передумова|Основа|Контекст|Кереш|Υπόβαθρο|Założenia|Yo\\-ho\\-ho|Tausta|Taust|Situācija|Rerefons|Pozadina|Pozadie|Pozadí|Osnova|Latar Belakang|Kontext|Konteksts|Kontekstas|Kontekst|Háttér|Hannergrond|Grundlage|Geçmiş|Fundo|Fono|First off|Dis is what went down|Dasar|Contexto|Contexte|Context|Contesto|Cenário de Fundo|Cenario de Fundo|Cefndir|Bối cảnh|Bakgrunnur|Bakgrunn|Bakgrund|Baggrund|Background|B4|Antecedents|Antecedentes|Ær|Aer|Achtergrond):/)) {\n        state.allowPlaceholders = false;\n        state.allowSteps = true;\n        state.allowBackground = false;\n        state.allowMultilineArgument = false;\n        state.inKeywordLine = true;\n        return \"keyword\";\n\n      // SCENARIO OUTLINE\n      } else if (!state.inKeywordLine && state.allowScenario && stream.match(/(場景大綱|场景大纲|劇本大綱|剧本大纲|テンプレ|シナリオテンプレート|シナリオテンプレ|シナリオアウトライン|시나리오 개요|สรุปเหตุการณ์|โครงสร้างของเหตุการณ์|ವಿವರಣೆ|కథనం|ਪਟਕਥਾ ਰੂਪ ਰੇਖਾ|ਪਟਕਥਾ ਢਾਂਚਾ|परिदृश्य रूपरेखा|سيناريو مخطط|الگوی سناریو|תבנית תרחיש|Сценарийның төзелеше|Сценарий структураси|Структура сценарію|Структура сценария|Структура сценарија|Скица|Рамка на сценарий|Концепт|Περιγραφή Σεναρίου|Wharrimean is|Template Situai|Template Senario|Template Keadaan|Tapausaihio|Szenariogrundriss|Szablon scenariusza|Swa hwær swa|Swa hwaer swa|Struktura scenarija|Structură scenariu|Structura scenariu|Skica|Skenario konsep|Shiver me timbers|Senaryo taslağı|Schema dello scenario|Scenariomall|Scenariomal|Scenario Template|Scenario Outline|Scenario Amlinellol|Scenārijs pēc parauga|Scenarijaus šablonas|Reckon it's like|Raamstsenaarium|Plang vum Szenario|Plan du Scénario|Plan du scénario|Osnova scénáře|Osnova Scenára|Náčrt Scenáru|Náčrt Scénáře|Náčrt Scenára|MISHUN SRSLY|Menggariskan Senario|Lýsing Dæma|Lýsing Atburðarásar|Konturo de la scenaro|Koncept|Khung tình huống|Khung kịch bản|Forgatókönyv vázlat|Esquema do Cenário|Esquema do Cenario|Esquema del escenario|Esquema de l'escenari|Esbozo do escenario|Delineação do Cenário|Delineacao do Cenario|All y'all|Abstrakt Scenario|Abstract Scenario):/)) {\n        state.allowPlaceholders = true;\n        state.allowSteps = true;\n        state.allowMultilineArgument = false;\n        state.inKeywordLine = true;\n        return \"keyword\";\n\n      // EXAMPLES\n      } else if (state.allowScenario && stream.match(/(例子|例|サンプル|예|ชุดของเหตุการณ์|ชุดของตัวอย่าง|ಉದಾಹರಣೆಗಳು|ఉదాహరణలు|ਉਦਾਹਰਨਾਂ|उदाहरण|نمونه ها|امثلة|דוגמאות|Үрнәкләр|Сценарији|Примеры|Примери|Приклади|Мисоллар|Мисаллар|Σενάρια|Παραδείγματα|You'll wanna|Voorbeelden|Variantai|Tapaukset|Se þe|Se the|Se ðe|Scenarios|Scenariji|Scenarijai|Przykłady|Primjeri|Primeri|Příklady|Príklady|Piemēri|Példák|Pavyzdžiai|Paraugs|Örnekler|Juhtumid|Exemplos|Exemples|Exemple|Exempel|EXAMPLZ|Examples|Esempi|Enghreifftiau|Ekzemploj|Eksempler|Ejemplos|Dữ liệu|Dead men tell no tales|Dæmi|Contoh|Cenários|Cenarios|Beispiller|Beispiele|Atburðarásir):/)) {\n        state.allowPlaceholders = false;\n        state.allowSteps = true;\n        state.allowBackground = false;\n        state.allowMultilineArgument = true;\n        return \"keyword\";\n\n      // SCENARIO\n      } else if (!state.inKeywordLine && state.allowScenario && stream.match(/(場景|场景|劇本|剧本|シナリオ|시나리오|เหตุการณ์|ಕಥಾಸಾರಾಂಶ|సన్నివేశం|ਪਟਕਥਾ|परिदृश्य|سيناريو|سناریو|תרחיש|Сценарій|Сценарио|Сценарий|Пример|Σενάριο|Tình huống|The thing of it is|Tapaus|Szenario|Swa|Stsenaarium|Skenario|Situai|Senaryo|Senario|Scenaro|Scenariusz|Scenariu|Scénario|Scenario|Scenarijus|Scenārijs|Scenarij|Scenarie|Scénář|Scenár|Primer|MISHUN|Kịch bản|Keadaan|Heave to|Forgatókönyv|Escenario|Escenari|Cenário|Cenario|Awww, look mate|Atburðarás):/)) {\n        state.allowPlaceholders = false;\n        state.allowSteps = true;\n        state.allowBackground = false;\n        state.allowMultilineArgument = false;\n        state.inKeywordLine = true;\n        return \"keyword\";\n\n      // STEPS\n      } else if (!state.inKeywordLine && state.allowSteps && stream.match(/(那麼|那么|而且|當|当|并且|同時|同时|前提|假设|假設|假定|假如|但是|但し|並且|もし|ならば|ただし|しかし|かつ|하지만|조건|먼저|만일|만약|단|그리고|그러면|และ |เมื่อ |แต่ |ดังนั้น |กำหนดให้ |ಸ್ಥಿತಿಯನ್ನು |ಮತ್ತು |ನೀಡಿದ |ನಂತರ |ಆದರೆ |మరియు |చెప్పబడినది |కాని |ఈ పరిస్థితిలో |అప్పుడు |ਪਰ |ਤਦ |ਜੇਕਰ |ਜਿਵੇਂ ਕਿ |ਜਦੋਂ |ਅਤੇ |यदि |परन्तु |पर |तब |तदा |तथा |जब |चूंकि |किन्तु |कदा |और |अगर |و |هنگامی |متى |لكن |عندما |ثم |بفرض |با فرض |اما |اذاً |آنگاه |כאשר |וגם |בהינתן |אזי |אז |אבל |Якщо |Һәм |Унда |Тоді |Тогда |То |Также |Та |Пусть |Припустимо, що |Припустимо |Онда |Но |Нехай |Нәтиҗәдә |Лекин |Ләкин |Коли |Когда |Когато |Када |Кад |К тому же |І |И |Задато |Задати |Задате |Если |Допустим |Дано |Дадено |Вә |Ва |Бирок |Әмма |Әйтик |Әгәр |Аммо |Али |Але |Агар |А також |А |Τότε |Όταν |Και |Δεδομένου |Αλλά |Þurh |Þegar |Þa þe |Þá |Þa |Zatati |Zakładając |Zadato |Zadate |Zadano |Zadani |Zadan |Za předpokladu |Za predpokladu |Youse know when youse got |Youse know like when |Yna |Yeah nah |Y'know |Y |Wun |Wtedy |When y'all |When |Wenn |WEN |wann |Ve |Và |Und |Un |ugeholl |Too right |Thurh |Thì |Then y'all |Then |Tha the |Tha |Tetapi |Tapi |Tak |Tada |Tad |Stel |Soit |Siis |Și |Şi |Si |Sed |Se |Så |Quando |Quand |Quan |Pryd |Potom |Pokud |Pokiaľ |Però |Pero |Pak |Oraz |Onda |Ond |Oletetaan |Og |Och |O zaman |Niin |Nhưng |När |Når |Mutta |Men |Mas |Maka |Majd |Mając |Mais |Maar |mä |Ma |Lorsque |Lorsqu'|Logo |Let go and haul |Kun |Kuid |Kui |Kiedy |Khi |Ketika |Kemudian |Keď |Když |Kaj |Kai |Kada |Kad |Jeżeli |Jeśli |Ja |It's just unbelievable |Ir |I CAN HAZ |I |Ha |Givun |Givet |Given y'all |Given |Gitt |Gegeven |Gegeben seien |Gegeben sei |Gdy |Gangway! |Fakat |Étant donnés |Etant donnés |Étant données |Etant données |Étant donnée |Etant donnée |Étant donné |Etant donné |Et |És |Entonces |Entón |Então |Entao |En |Eğer ki |Ef |Eeldades |E |Ðurh |Duota |Dun |Donitaĵo |Donat |Donada |Do |Diyelim ki |Diberi |Dengan |Den youse gotta |DEN |De |Dato |Dați fiind |Daţi fiind |Dati fiind |Dati |Date fiind |Date |Data |Dat fiind |Dar |Dann |dann |Dan |Dados |Dado |Dadas |Dada |Ða ðe |Ða |Cuando |Cho |Cando |Când |Cand |Cal |But y'all |But at the end of the day I reckon |BUT |But |Buh |Blimey! |Biết |Bet |Bagi |Aye |awer |Avast! |Atunci |Atesa |Atès |Apabila |Anrhegedig a |Angenommen |And y'all |And |AN |An |an |Amikor |Amennyiben |Ama |Als |Alors |Allora |Ali |Aleshores |Ale |Akkor |Ak |Adott |Ac |Aber |A zároveň |A tiež |A taktiež |A také |A |a |7 |\\* )/)) {\n        state.inStep = true;\n        state.allowPlaceholders = true;\n        state.allowMultilineArgument = true;\n        state.inKeywordLine = true;\n        return \"keyword\";\n\n      // INLINE STRING\n      } else if (stream.match(/\"[^\"]*\"?/)) {\n        return \"string\";\n\n      // PLACEHOLDER\n      } else if (state.allowPlaceholders && stream.match(/<[^>]*>?/)) {\n        return \"variable\";\n\n      // Fall through\n      } else {\n        stream.next();\n        stream.eatWhile(/[^@\"<#]/);\n        return null;\n      }\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-feature\", \"gherkin\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/gherkin/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Gherkin mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"gherkin.js\"></script>\n<style>.CodeMirror { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Gherkin</a>\n  </ul>\n</div>\n\n<article>\n<h2>Gherkin mode</h2>\n<form><textarea id=\"code\" name=\"code\">\nFeature: Using Google\n  Background: \n    Something something\n    Something else\n  Scenario: Has a homepage\n    When I navigate to the google home page\n    Then the home page should contain the menu and the search form\n  Scenario: Searching for a term \n    When I navigate to the google home page\n    When I search for Tofu\n    Then the search results page is displayed\n    Then the search results page contains 10 individual search results\n    Then the search results contain a link to the wikipedia tofu page\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-feature</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/go/go.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"go\", function(config) {\n  var indentUnit = config.indentUnit;\n\n  var keywords = {\n    \"break\":true, \"case\":true, \"chan\":true, \"const\":true, \"continue\":true,\n    \"default\":true, \"defer\":true, \"else\":true, \"fallthrough\":true, \"for\":true,\n    \"func\":true, \"go\":true, \"goto\":true, \"if\":true, \"import\":true,\n    \"interface\":true, \"map\":true, \"package\":true, \"range\":true, \"return\":true,\n    \"select\":true, \"struct\":true, \"switch\":true, \"type\":true, \"var\":true,\n    \"bool\":true, \"byte\":true, \"complex64\":true, \"complex128\":true,\n    \"float32\":true, \"float64\":true, \"int8\":true, \"int16\":true, \"int32\":true,\n    \"int64\":true, \"string\":true, \"uint8\":true, \"uint16\":true, \"uint32\":true,\n    \"uint64\":true, \"int\":true, \"uint\":true, \"uintptr\":true\n  };\n\n  var atoms = {\n    \"true\":true, \"false\":true, \"iota\":true, \"nil\":true, \"append\":true,\n    \"cap\":true, \"close\":true, \"complex\":true, \"copy\":true, \"imag\":true,\n    \"len\":true, \"make\":true, \"new\":true, \"panic\":true, \"print\":true,\n    \"println\":true, \"real\":true, \"recover\":true\n  };\n\n  var isOperatorChar = /[+\\-*&^%:=<>!|\\/]/;\n\n  var curPunc;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (ch == '\"' || ch == \"'\" || ch == \"`\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    if (/[\\d\\.]/.test(ch)) {\n      if (ch == \".\") {\n        stream.match(/^[0-9]+([eE][\\-+]?[0-9]+)?/);\n      } else if (ch == \"0\") {\n        stream.match(/^[xX][0-9a-fA-F]+/) || stream.match(/^0[0-7]+/);\n      } else {\n        stream.match(/^[0-9]*\\.?[0-9]*([eE][\\-+]?[0-9]+)?/);\n      }\n      return \"number\";\n    }\n    if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        state.tokenize = tokenComment;\n        return tokenComment(stream, state);\n      }\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n    }\n    if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_\\xa1-\\uffff]/);\n    var cur = stream.current();\n    if (keywords.propertyIsEnumerable(cur)) {\n      if (cur == \"case\" || cur == \"default\") curPunc = \"case\";\n      return \"keyword\";\n    }\n    if (atoms.propertyIsEnumerable(cur)) return \"atom\";\n    return \"variable\";\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {end = true; break;}\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !(escaped || quote == \"`\"))\n        state.tokenize = tokenBase;\n      return \"string\";\n    };\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function Context(indented, column, type, align, prev) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.align = align;\n    this.prev = prev;\n  }\n  function pushContext(state, col, type) {\n    return state.context = new Context(state.indented, col, type, null, state.context);\n  }\n  function popContext(state) {\n    var t = state.context.type;\n    if (t == \")\" || t == \"]\" || t == \"}\")\n      state.indented = state.context.indented;\n    return state.context = state.context.prev;\n  }\n\n  // Interface\n\n  return {\n    startState: function(basecolumn) {\n      return {\n        tokenize: null,\n        context: new Context((basecolumn || 0) - indentUnit, 0, \"top\", false),\n        indented: 0,\n        startOfLine: true\n      };\n    },\n\n    token: function(stream, state) {\n      var ctx = state.context;\n      if (stream.sol()) {\n        if (ctx.align == null) ctx.align = false;\n        state.indented = stream.indentation();\n        state.startOfLine = true;\n        if (ctx.type == \"case\") ctx.type = \"}\";\n      }\n      if (stream.eatSpace()) return null;\n      curPunc = null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style == \"comment\") return style;\n      if (ctx.align == null) ctx.align = true;\n\n      if (curPunc == \"{\") pushContext(state, stream.column(), \"}\");\n      else if (curPunc == \"[\") pushContext(state, stream.column(), \"]\");\n      else if (curPunc == \"(\") pushContext(state, stream.column(), \")\");\n      else if (curPunc == \"case\") ctx.type = \"case\";\n      else if (curPunc == \"}\" && ctx.type == \"}\") ctx = popContext(state);\n      else if (curPunc == ctx.type) popContext(state);\n      state.startOfLine = false;\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != tokenBase && state.tokenize != null) return 0;\n      var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);\n      if (ctx.type == \"case\" && /^(?:case|default)\\b/.test(textAfter)) {\n        state.context.type = \"}\";\n        return ctx.indented;\n      }\n      var closing = firstChar == ctx.type;\n      if (ctx.align) return ctx.column + (closing ? 0 : 1);\n      else return ctx.indented + (closing ? 0 : indentUnit);\n    },\n\n    electricChars: \"{}):\",\n    fold: \"brace\",\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\",\n    lineComment: \"//\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-go\", \"go\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/go/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Go mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/elegant.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"go.js\"></script>\n<style>.CodeMirror {border:1px solid #999; background:#ffc}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Go</a>\n  </ul>\n</div>\n\n<article>\n<h2>Go mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n// Prime Sieve in Go.\n// Taken from the Go specification.\n// Copyright © The Go Authors.\n\npackage main\n\nimport \"fmt\"\n\n// Send the sequence 2, 3, 4, ... to channel 'ch'.\nfunc generate(ch chan&lt;- int) {\n\tfor i := 2; ; i++ {\n\t\tch &lt;- i  // Send 'i' to channel 'ch'\n\t}\n}\n\n// Copy the values from channel 'src' to channel 'dst',\n// removing those divisible by 'prime'.\nfunc filter(src &lt;-chan int, dst chan&lt;- int, prime int) {\n\tfor i := range src {    // Loop over values received from 'src'.\n\t\tif i%prime != 0 {\n\t\t\tdst &lt;- i  // Send 'i' to channel 'dst'.\n\t\t}\n\t}\n}\n\n// The prime sieve: Daisy-chain filter processes together.\nfunc sieve() {\n\tch := make(chan int)  // Create a new channel.\n\tgo generate(ch)       // Start generate() as a subprocess.\n\tfor {\n\t\tprime := &lt;-ch\n\t\tfmt.Print(prime, \"\\n\")\n\t\tch1 := make(chan int)\n\t\tgo filter(ch, ch1, prime)\n\t\tch = ch1\n\t}\n}\n\nfunc main() {\n\tsieve()\n}\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        theme: \"elegant\",\n        matchBrackets: true,\n        indentUnit: 8,\n        tabSize: 8,\n        indentWithTabs: true,\n        mode: \"text/x-go\"\n      });\n    </script>\n\n    <p><strong>MIME type:</strong> <code>text/x-go</code></p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/groovy/groovy.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"groovy\", function(config) {\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n  var keywords = words(\n    \"abstract as assert boolean break byte case catch char class const continue def default \" +\n    \"do double else enum extends final finally float for goto if implements import in \" +\n    \"instanceof int interface long native new package private protected public return \" +\n    \"short static strictfp super switch synchronized threadsafe throw throws transient \" +\n    \"try void volatile while\");\n  var blockKeywords = words(\"catch class do else finally for if switch try while enum interface def\");\n  var atoms = words(\"null true false this\");\n\n  var curPunc;\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (ch == '\"' || ch == \"'\") {\n      return startString(ch, stream, state);\n    }\n    if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      if (stream.eat(/eE/)) { stream.eat(/\\+\\-/); stream.eatWhile(/\\d/); }\n      return \"number\";\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        state.tokenize.push(tokenComment);\n        return tokenComment(stream, state);\n      }\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n      if (expectExpression(state.lastToken)) {\n        return startString(ch, stream, state);\n      }\n    }\n    if (ch == \"-\" && stream.eat(\">\")) {\n      curPunc = \"->\";\n      return null;\n    }\n    if (/[+\\-*&%=<>!?|\\/~]/.test(ch)) {\n      stream.eatWhile(/[+\\-*&%=<>|~]/);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_]/);\n    if (ch == \"@\") { stream.eatWhile(/[\\w\\$_\\.]/); return \"meta\"; }\n    if (state.lastToken == \".\") return \"property\";\n    if (stream.eat(\":\")) { curPunc = \"proplabel\"; return \"property\"; }\n    var cur = stream.current();\n    if (atoms.propertyIsEnumerable(cur)) { return \"atom\"; }\n    if (keywords.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"keyword\";\n    }\n    return \"variable\";\n  }\n  tokenBase.isBase = true;\n\n  function startString(quote, stream, state) {\n    var tripleQuoted = false;\n    if (quote != \"/\" && stream.eat(quote)) {\n      if (stream.eat(quote)) tripleQuoted = true;\n      else return \"string\";\n    }\n    function t(stream, state) {\n      var escaped = false, next, end = !tripleQuoted;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {\n          if (!tripleQuoted) { break; }\n          if (stream.match(quote + quote)) { end = true; break; }\n        }\n        if (quote == '\"' && next == \"$\" && !escaped && stream.eat(\"{\")) {\n          state.tokenize.push(tokenBaseUntilBrace());\n          return \"string\";\n        }\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end) state.tokenize.pop();\n      return \"string\";\n    }\n    state.tokenize.push(t);\n    return t(stream, state);\n  }\n\n  function tokenBaseUntilBrace() {\n    var depth = 1;\n    function t(stream, state) {\n      if (stream.peek() == \"}\") {\n        depth--;\n        if (depth == 0) {\n          state.tokenize.pop();\n          return state.tokenize[state.tokenize.length-1](stream, state);\n        }\n      } else if (stream.peek() == \"{\") {\n        depth++;\n      }\n      return tokenBase(stream, state);\n    }\n    t.isBase = true;\n    return t;\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize.pop();\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function expectExpression(last) {\n    return !last || last == \"operator\" || last == \"->\" || /[\\.\\[\\{\\(,;:]/.test(last) ||\n      last == \"newstatement\" || last == \"keyword\" || last == \"proplabel\";\n  }\n\n  function Context(indented, column, type, align, prev) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.align = align;\n    this.prev = prev;\n  }\n  function pushContext(state, col, type) {\n    return state.context = new Context(state.indented, col, type, null, state.context);\n  }\n  function popContext(state) {\n    var t = state.context.type;\n    if (t == \")\" || t == \"]\" || t == \"}\")\n      state.indented = state.context.indented;\n    return state.context = state.context.prev;\n  }\n\n  // Interface\n\n  return {\n    startState: function(basecolumn) {\n      return {\n        tokenize: [tokenBase],\n        context: new Context((basecolumn || 0) - config.indentUnit, 0, \"top\", false),\n        indented: 0,\n        startOfLine: true,\n        lastToken: null\n      };\n    },\n\n    token: function(stream, state) {\n      var ctx = state.context;\n      if (stream.sol()) {\n        if (ctx.align == null) ctx.align = false;\n        state.indented = stream.indentation();\n        state.startOfLine = true;\n        // Automatic semicolon insertion\n        if (ctx.type == \"statement\" && !expectExpression(state.lastToken)) {\n          popContext(state); ctx = state.context;\n        }\n      }\n      if (stream.eatSpace()) return null;\n      curPunc = null;\n      var style = state.tokenize[state.tokenize.length-1](stream, state);\n      if (style == \"comment\") return style;\n      if (ctx.align == null) ctx.align = true;\n\n      if ((curPunc == \";\" || curPunc == \":\") && ctx.type == \"statement\") popContext(state);\n      // Handle indentation for {x -> \\n ... }\n      else if (curPunc == \"->\" && ctx.type == \"statement\" && ctx.prev.type == \"}\") {\n        popContext(state);\n        state.context.align = false;\n      }\n      else if (curPunc == \"{\") pushContext(state, stream.column(), \"}\");\n      else if (curPunc == \"[\") pushContext(state, stream.column(), \"]\");\n      else if (curPunc == \"(\") pushContext(state, stream.column(), \")\");\n      else if (curPunc == \"}\") {\n        while (ctx.type == \"statement\") ctx = popContext(state);\n        if (ctx.type == \"}\") ctx = popContext(state);\n        while (ctx.type == \"statement\") ctx = popContext(state);\n      }\n      else if (curPunc == ctx.type) popContext(state);\n      else if (ctx.type == \"}\" || ctx.type == \"top\" || (ctx.type == \"statement\" && curPunc == \"newstatement\"))\n        pushContext(state, stream.column(), \"statement\");\n      state.startOfLine = false;\n      state.lastToken = curPunc || style;\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (!state.tokenize[state.tokenize.length-1].isBase) return 0;\n      var firstChar = textAfter && textAfter.charAt(0), ctx = state.context;\n      if (ctx.type == \"statement\" && !expectExpression(state.lastToken)) ctx = ctx.prev;\n      var closing = firstChar == ctx.type;\n      if (ctx.type == \"statement\") return ctx.indented + (firstChar == \"{\" ? 0 : config.indentUnit);\n      else if (ctx.align) return ctx.column + (closing ? 0 : 1);\n      else return ctx.indented + (closing ? 0 : config.indentUnit);\n    },\n\n    electricChars: \"{}\",\n    fold: \"brace\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-groovy\", \"groovy\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/groovy/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Groovy mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"groovy.js\"></script>\n<style>.CodeMirror {border-top: 1px solid #500; border-bottom: 1px solid #500;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Groovy</a>\n  </ul>\n</div>\n\n<article>\n<h2>Groovy mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n//Pattern for groovy script\ndef p = ~/.*\\.groovy/\nnew File( 'd:\\\\scripts' ).eachFileMatch(p) {f ->\n  // imports list\n  def imports = []\n  f.eachLine {\n    // condition to detect an import instruction\n    ln -> if ( ln =~ '^import .*' ) {\n      imports << \"${ln - 'import '}\"\n    }\n  }\n  // print thmen\n  if ( ! imports.empty ) {\n    println f\n    imports.each{ println \"   $it\" }\n  }\n}\n\n/* Coin changer demo code from http://groovy.codehaus.org */\n\nenum UsCoin {\n  quarter(25), dime(10), nickel(5), penny(1)\n  UsCoin(v) { value = v }\n  final value\n}\n\nenum OzzieCoin {\n  fifty(50), twenty(20), ten(10), five(5)\n  OzzieCoin(v) { value = v }\n  final value\n}\n\ndef plural(word, count) {\n  if (count == 1) return word\n  word[-1] == 'y' ? word[0..-2] + \"ies\" : word + \"s\"\n}\n\ndef change(currency, amount) {\n  currency.values().inject([]){ list, coin ->\n     int count = amount / coin.value\n     amount = amount % coin.value\n     list += \"$count ${plural(coin.toString(), count)}\"\n  }\n}\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-groovy\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-groovy</code></p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/haml/haml.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../htmlmixed/htmlmixed\"), require(\"../ruby/ruby\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../htmlmixed/htmlmixed\", \"../ruby/ruby\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\n  // full haml mode. This handled embeded ruby and html fragments too\n  CodeMirror.defineMode(\"haml\", function(config) {\n    var htmlMode = CodeMirror.getMode(config, {name: \"htmlmixed\"});\n    var rubyMode = CodeMirror.getMode(config, \"ruby\");\n\n    function rubyInQuote(endQuote) {\n      return function(stream, state) {\n        var ch = stream.peek();\n        if (ch == endQuote && state.rubyState.tokenize.length == 1) {\n          // step out of ruby context as it seems to complete processing all the braces\n          stream.next();\n          state.tokenize = html;\n          return \"closeAttributeTag\";\n        } else {\n          return ruby(stream, state);\n        }\n      };\n    }\n\n    function ruby(stream, state) {\n      if (stream.match(\"-#\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n      return rubyMode.token(stream, state.rubyState);\n    }\n\n    function html(stream, state) {\n      var ch = stream.peek();\n\n      // handle haml declarations. All declarations that cant be handled here\n      // will be passed to html mode\n      if (state.previousToken.style == \"comment\" ) {\n        if (state.indented > state.previousToken.indented) {\n          stream.skipToEnd();\n          return \"commentLine\";\n        }\n      }\n\n      if (state.startOfLine) {\n        if (ch == \"!\" && stream.match(\"!!\")) {\n          stream.skipToEnd();\n          return \"tag\";\n        } else if (stream.match(/^%[\\w:#\\.]+=/)) {\n          state.tokenize = ruby;\n          return \"hamlTag\";\n        } else if (stream.match(/^%[\\w:]+/)) {\n          return \"hamlTag\";\n        } else if (ch == \"/\" ) {\n          stream.skipToEnd();\n          return \"comment\";\n        }\n      }\n\n      if (state.startOfLine || state.previousToken.style == \"hamlTag\") {\n        if ( ch == \"#\" || ch == \".\") {\n          stream.match(/[\\w-#\\.]*/);\n          return \"hamlAttribute\";\n        }\n      }\n\n      // donot handle --> as valid ruby, make it HTML close comment instead\n      if (state.startOfLine && !stream.match(\"-->\", false) && (ch == \"=\" || ch == \"-\" )) {\n        state.tokenize = ruby;\n        return state.tokenize(stream, state);\n      }\n\n      if (state.previousToken.style == \"hamlTag\" ||\n          state.previousToken.style == \"closeAttributeTag\" ||\n          state.previousToken.style == \"hamlAttribute\") {\n        if (ch == \"(\") {\n          state.tokenize = rubyInQuote(\")\");\n          return state.tokenize(stream, state);\n        } else if (ch == \"{\") {\n          state.tokenize = rubyInQuote(\"}\");\n          return state.tokenize(stream, state);\n        }\n      }\n\n      return htmlMode.token(stream, state.htmlState);\n    }\n\n    return {\n      // default to html mode\n      startState: function() {\n        var htmlState = htmlMode.startState();\n        var rubyState = rubyMode.startState();\n        return {\n          htmlState: htmlState,\n          rubyState: rubyState,\n          indented: 0,\n          previousToken: { style: null, indented: 0},\n          tokenize: html\n        };\n      },\n\n      copyState: function(state) {\n        return {\n          htmlState : CodeMirror.copyState(htmlMode, state.htmlState),\n          rubyState: CodeMirror.copyState(rubyMode, state.rubyState),\n          indented: state.indented,\n          previousToken: state.previousToken,\n          tokenize: state.tokenize\n        };\n      },\n\n      token: function(stream, state) {\n        if (stream.sol()) {\n          state.indented = stream.indentation();\n          state.startOfLine = true;\n        }\n        if (stream.eatSpace()) return null;\n        var style = state.tokenize(stream, state);\n        state.startOfLine = false;\n        // dont record comment line as we only want to measure comment line with\n        // the opening comment block\n        if (style && style != \"commentLine\") {\n          state.previousToken = { style: style, indented: state.indented };\n        }\n        // if current state is ruby and the previous token is not `,` reset the\n        // tokenize to html\n        if (stream.eol() && state.tokenize == ruby) {\n          stream.backUp(1);\n          var ch = stream.peek();\n          stream.next();\n          if (ch && ch != \",\") {\n            state.tokenize = html;\n          }\n        }\n        // reprocess some of the specific style tag when finish setting previousToken\n        if (style == \"hamlTag\") {\n          style = \"tag\";\n        } else if (style == \"commentLine\") {\n          style = \"comment\";\n        } else if (style == \"hamlAttribute\") {\n          style = \"attribute\";\n        } else if (style == \"closeAttributeTag\") {\n          style = null;\n        }\n        return style;\n      }\n    };\n  }, \"htmlmixed\", \"ruby\");\n\n  CodeMirror.defineMIME(\"text/x-haml\", \"haml\");\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/haml/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: HAML mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../htmlmixed/htmlmixed.js\"></script>\n<script src=\"../javascript/javascript.js\"></script>\n<script src=\"../ruby/ruby.js\"></script>\n<script src=\"haml.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">HAML</a>\n  </ul>\n</div>\n\n<article>\n<h2>HAML mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n!!!\n#content\n.left.column(title=\"title\"){:href => \"/hello\", :test => \"#{hello}_#{world}\"}\n    <!-- This is a comment -->\n    %h2 Welcome to our site!\n    %p= puts \"HAML MODE\"\n  .right.column\n    = render :partial => \"sidebar\"\n\n.container\n  .row\n    .span8\n      %h1.title= @page_title\n%p.title= @page_title\n%p\n  /\n    The same as HTML comment\n    Hello multiline comment\n\n  -# haml comment\n      This wont be displayed\n      nor will this\n  Date/Time:\n  - now = DateTime.now\n  %strong= now\n  - if now > DateTime.parse(\"December 31, 2006\")\n    = \"Happy new \" + \"year!\"\n\n%title\n  = @title\n  \\= @title\n  <h1>Title</h1>\n  <h1 title=\"HELLO\">\n    Title\n  </h1>\n    </textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        mode: \"text/x-haml\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-haml</code>.</p>\n\n    <p><strong>Parsing/Highlighting Tests:</strong> <a href=\"../../test/index.html#haml_*\">normal</a>,  <a href=\"../../test/index.html#verbose,haml_*\">verbose</a>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/haml/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({tabSize: 4, indentUnit: 2}, \"haml\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  // Requires at least one media query\n  MT(\"elementName\",\n     \"[tag %h1] Hey There\");\n\n  MT(\"oneElementPerLine\",\n     \"[tag %h1] Hey There %h2\");\n\n  MT(\"idSelector\",\n     \"[tag %h1][attribute #test] Hey There\");\n\n  MT(\"classSelector\",\n     \"[tag %h1][attribute .hello] Hey There\");\n\n  MT(\"docType\",\n     \"[tag !!! XML]\");\n\n  MT(\"comment\",\n     \"[comment / Hello WORLD]\");\n\n  MT(\"notComment\",\n     \"[tag %h1] This is not a / comment \");\n\n  MT(\"attributes\",\n     \"[tag %a]([variable title][operator =][string \\\"test\\\"]){[atom :title] [operator =>] [string \\\"test\\\"]}\");\n\n  MT(\"htmlCode\",\n     \"[tag&bracket <][tag h1][tag&bracket >]Title[tag&bracket </][tag h1][tag&bracket >]\");\n\n  MT(\"rubyBlock\",\n     \"[operator =][variable-2 @item]\");\n\n  MT(\"selectorRubyBlock\",\n     \"[tag %a.selector=] [variable-2 @item]\");\n\n  MT(\"nestedRubyBlock\",\n      \"[tag %a]\",\n      \"   [operator =][variable puts] [string \\\"test\\\"]\");\n\n  MT(\"multilinePlaintext\",\n      \"[tag %p]\",\n      \"  Hello,\",\n      \"  World\");\n\n  MT(\"multilineRuby\",\n      \"[tag %p]\",\n      \"  [comment -# this is a comment]\",\n      \"     [comment and this is a comment too]\",\n      \"  Date/Time\",\n      \"  [operator -] [variable now] [operator =] [tag DateTime][operator .][property now]\",\n      \"  [tag %strong=] [variable now]\",\n      \"  [operator -] [keyword if] [variable now] [operator >] [tag DateTime][operator .][property parse]([string \\\"December 31, 2006\\\"])\",\n      \"     [operator =][string \\\"Happy\\\"]\",\n      \"     [operator =][string \\\"Belated\\\"]\",\n      \"     [operator =][string \\\"Birthday\\\"]\");\n\n  MT(\"multilineComment\",\n      \"[comment /]\",\n      \"  [comment Multiline]\",\n      \"  [comment Comment]\");\n\n  MT(\"hamlComment\",\n     \"[comment -# this is a comment]\");\n\n  MT(\"multilineHamlComment\",\n     \"[comment -# this is a comment]\",\n     \"   [comment and this is a comment too]\");\n\n  MT(\"multilineHTMLComment\",\n    \"[comment <!--]\",\n    \"  [comment what a comment]\",\n    \"  [comment -->]\");\n\n  MT(\"hamlAfterRubyTag\",\n    \"[attribute .block]\",\n    \"  [tag %strong=] [variable now]\",\n    \"  [attribute .test]\",\n    \"     [operator =][variable now]\",\n    \"  [attribute .right]\");\n\n  MT(\"stretchedRuby\",\n     \"[operator =] [variable puts] [string \\\"Hello\\\"],\",\n     \"   [string \\\"World\\\"]\");\n\n  MT(\"interpolationInHashAttribute\",\n     //\"[tag %div]{[atom :id] [operator =>] [string \\\"#{][variable test][string }_#{][variable ting][string }\\\"]} test\");\n     \"[tag %div]{[atom :id] [operator =>] [string \\\"#{][variable test][string }_#{][variable ting][string }\\\"]} test\");\n\n  MT(\"interpolationInHTMLAttribute\",\n     \"[tag %div]([variable title][operator =][string \\\"#{][variable test][string }_#{][variable ting]()[string }\\\"]) Test\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/haskell/haskell.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"haskell\", function(_config, modeConfig) {\n\n  function switchState(source, setState, f) {\n    setState(f);\n    return f(source, setState);\n  }\n\n  // These should all be Unicode extended, as per the Haskell 2010 report\n  var smallRE = /[a-z_]/;\n  var largeRE = /[A-Z]/;\n  var digitRE = /\\d/;\n  var hexitRE = /[0-9A-Fa-f]/;\n  var octitRE = /[0-7]/;\n  var idRE = /[a-z_A-Z0-9'\\xa1-\\uffff]/;\n  var symbolRE = /[-!#$%&*+.\\/<=>?@\\\\^|~:]/;\n  var specialRE = /[(),;[\\]`{}]/;\n  var whiteCharRE = /[ \\t\\v\\f]/; // newlines are handled in tokenizer\n\n  function normal(source, setState) {\n    if (source.eatWhile(whiteCharRE)) {\n      return null;\n    }\n\n    var ch = source.next();\n    if (specialRE.test(ch)) {\n      if (ch == '{' && source.eat('-')) {\n        var t = \"comment\";\n        if (source.eat('#')) {\n          t = \"meta\";\n        }\n        return switchState(source, setState, ncomment(t, 1));\n      }\n      return null;\n    }\n\n    if (ch == '\\'') {\n      if (source.eat('\\\\')) {\n        source.next();  // should handle other escapes here\n      }\n      else {\n        source.next();\n      }\n      if (source.eat('\\'')) {\n        return \"string\";\n      }\n      return \"error\";\n    }\n\n    if (ch == '\"') {\n      return switchState(source, setState, stringLiteral);\n    }\n\n    if (largeRE.test(ch)) {\n      source.eatWhile(idRE);\n      if (source.eat('.')) {\n        return \"qualifier\";\n      }\n      return \"variable-2\";\n    }\n\n    if (smallRE.test(ch)) {\n      source.eatWhile(idRE);\n      return \"variable\";\n    }\n\n    if (digitRE.test(ch)) {\n      if (ch == '0') {\n        if (source.eat(/[xX]/)) {\n          source.eatWhile(hexitRE); // should require at least 1\n          return \"integer\";\n        }\n        if (source.eat(/[oO]/)) {\n          source.eatWhile(octitRE); // should require at least 1\n          return \"number\";\n        }\n      }\n      source.eatWhile(digitRE);\n      var t = \"number\";\n      if (source.match(/^\\.\\d+/)) {\n        t = \"number\";\n      }\n      if (source.eat(/[eE]/)) {\n        t = \"number\";\n        source.eat(/[-+]/);\n        source.eatWhile(digitRE); // should require at least 1\n      }\n      return t;\n    }\n\n    if (ch == \".\" && source.eat(\".\"))\n      return \"keyword\";\n\n    if (symbolRE.test(ch)) {\n      if (ch == '-' && source.eat(/-/)) {\n        source.eatWhile(/-/);\n        if (!source.eat(symbolRE)) {\n          source.skipToEnd();\n          return \"comment\";\n        }\n      }\n      var t = \"variable\";\n      if (ch == ':') {\n        t = \"variable-2\";\n      }\n      source.eatWhile(symbolRE);\n      return t;\n    }\n\n    return \"error\";\n  }\n\n  function ncomment(type, nest) {\n    if (nest == 0) {\n      return normal;\n    }\n    return function(source, setState) {\n      var currNest = nest;\n      while (!source.eol()) {\n        var ch = source.next();\n        if (ch == '{' && source.eat('-')) {\n          ++currNest;\n        }\n        else if (ch == '-' && source.eat('}')) {\n          --currNest;\n          if (currNest == 0) {\n            setState(normal);\n            return type;\n          }\n        }\n      }\n      setState(ncomment(type, currNest));\n      return type;\n    };\n  }\n\n  function stringLiteral(source, setState) {\n    while (!source.eol()) {\n      var ch = source.next();\n      if (ch == '\"') {\n        setState(normal);\n        return \"string\";\n      }\n      if (ch == '\\\\') {\n        if (source.eol() || source.eat(whiteCharRE)) {\n          setState(stringGap);\n          return \"string\";\n        }\n        if (source.eat('&')) {\n        }\n        else {\n          source.next(); // should handle other escapes here\n        }\n      }\n    }\n    setState(normal);\n    return \"error\";\n  }\n\n  function stringGap(source, setState) {\n    if (source.eat('\\\\')) {\n      return switchState(source, setState, stringLiteral);\n    }\n    source.next();\n    setState(normal);\n    return \"error\";\n  }\n\n\n  var wellKnownWords = (function() {\n    var wkw = {};\n    function setType(t) {\n      return function () {\n        for (var i = 0; i < arguments.length; i++)\n          wkw[arguments[i]] = t;\n      };\n    }\n\n    setType(\"keyword\")(\n      \"case\", \"class\", \"data\", \"default\", \"deriving\", \"do\", \"else\", \"foreign\",\n      \"if\", \"import\", \"in\", \"infix\", \"infixl\", \"infixr\", \"instance\", \"let\",\n      \"module\", \"newtype\", \"of\", \"then\", \"type\", \"where\", \"_\");\n\n    setType(\"keyword\")(\n      \"\\.\\.\", \":\", \"::\", \"=\", \"\\\\\", \"\\\"\", \"<-\", \"->\", \"@\", \"~\", \"=>\");\n\n    setType(\"builtin\")(\n      \"!!\", \"$!\", \"$\", \"&&\", \"+\", \"++\", \"-\", \".\", \"/\", \"/=\", \"<\", \"<=\", \"=<<\",\n      \"==\", \">\", \">=\", \">>\", \">>=\", \"^\", \"^^\", \"||\", \"*\", \"**\");\n\n    setType(\"builtin\")(\n      \"Bool\", \"Bounded\", \"Char\", \"Double\", \"EQ\", \"Either\", \"Enum\", \"Eq\",\n      \"False\", \"FilePath\", \"Float\", \"Floating\", \"Fractional\", \"Functor\", \"GT\",\n      \"IO\", \"IOError\", \"Int\", \"Integer\", \"Integral\", \"Just\", \"LT\", \"Left\",\n      \"Maybe\", \"Monad\", \"Nothing\", \"Num\", \"Ord\", \"Ordering\", \"Rational\", \"Read\",\n      \"ReadS\", \"Real\", \"RealFloat\", \"RealFrac\", \"Right\", \"Show\", \"ShowS\",\n      \"String\", \"True\");\n\n    setType(\"builtin\")(\n      \"abs\", \"acos\", \"acosh\", \"all\", \"and\", \"any\", \"appendFile\", \"asTypeOf\",\n      \"asin\", \"asinh\", \"atan\", \"atan2\", \"atanh\", \"break\", \"catch\", \"ceiling\",\n      \"compare\", \"concat\", \"concatMap\", \"const\", \"cos\", \"cosh\", \"curry\",\n      \"cycle\", \"decodeFloat\", \"div\", \"divMod\", \"drop\", \"dropWhile\", \"either\",\n      \"elem\", \"encodeFloat\", \"enumFrom\", \"enumFromThen\", \"enumFromThenTo\",\n      \"enumFromTo\", \"error\", \"even\", \"exp\", \"exponent\", \"fail\", \"filter\",\n      \"flip\", \"floatDigits\", \"floatRadix\", \"floatRange\", \"floor\", \"fmap\",\n      \"foldl\", \"foldl1\", \"foldr\", \"foldr1\", \"fromEnum\", \"fromInteger\",\n      \"fromIntegral\", \"fromRational\", \"fst\", \"gcd\", \"getChar\", \"getContents\",\n      \"getLine\", \"head\", \"id\", \"init\", \"interact\", \"ioError\", \"isDenormalized\",\n      \"isIEEE\", \"isInfinite\", \"isNaN\", \"isNegativeZero\", \"iterate\", \"last\",\n      \"lcm\", \"length\", \"lex\", \"lines\", \"log\", \"logBase\", \"lookup\", \"map\",\n      \"mapM\", \"mapM_\", \"max\", \"maxBound\", \"maximum\", \"maybe\", \"min\", \"minBound\",\n      \"minimum\", \"mod\", \"negate\", \"not\", \"notElem\", \"null\", \"odd\", \"or\",\n      \"otherwise\", \"pi\", \"pred\", \"print\", \"product\", \"properFraction\",\n      \"putChar\", \"putStr\", \"putStrLn\", \"quot\", \"quotRem\", \"read\", \"readFile\",\n      \"readIO\", \"readList\", \"readLn\", \"readParen\", \"reads\", \"readsPrec\",\n      \"realToFrac\", \"recip\", \"rem\", \"repeat\", \"replicate\", \"return\", \"reverse\",\n      \"round\", \"scaleFloat\", \"scanl\", \"scanl1\", \"scanr\", \"scanr1\", \"seq\",\n      \"sequence\", \"sequence_\", \"show\", \"showChar\", \"showList\", \"showParen\",\n      \"showString\", \"shows\", \"showsPrec\", \"significand\", \"signum\", \"sin\",\n      \"sinh\", \"snd\", \"span\", \"splitAt\", \"sqrt\", \"subtract\", \"succ\", \"sum\",\n      \"tail\", \"take\", \"takeWhile\", \"tan\", \"tanh\", \"toEnum\", \"toInteger\",\n      \"toRational\", \"truncate\", \"uncurry\", \"undefined\", \"unlines\", \"until\",\n      \"unwords\", \"unzip\", \"unzip3\", \"userError\", \"words\", \"writeFile\", \"zip\",\n      \"zip3\", \"zipWith\", \"zipWith3\");\n\n    var override = modeConfig.overrideKeywords;\n    if (override) for (var word in override) if (override.hasOwnProperty(word))\n      wkw[word] = override[word];\n\n    return wkw;\n  })();\n\n\n\n  return {\n    startState: function ()  { return { f: normal }; },\n    copyState:  function (s) { return { f: s.f }; },\n\n    token: function(stream, state) {\n      var t = state.f(stream, function(s) { state.f = s; });\n      var w = stream.current();\n      return wellKnownWords.hasOwnProperty(w) ? wellKnownWords[w] : t;\n    },\n\n    blockCommentStart: \"{-\",\n    blockCommentEnd: \"-}\",\n    lineComment: \"--\"\n  };\n\n});\n\nCodeMirror.defineMIME(\"text/x-haskell\", \"haskell\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/haskell/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Haskell mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/elegant.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"haskell.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Haskell</a>\n  </ul>\n</div>\n\n<article>\n<h2>Haskell mode</h2>\n<form><textarea id=\"code\" name=\"code\">\nmodule UniquePerms (\n    uniquePerms\n    )\nwhere\n\n-- | Find all unique permutations of a list where there might be duplicates.\nuniquePerms :: (Eq a) => [a] -> [[a]]\nuniquePerms = permBag . makeBag\n\n-- | An unordered collection where duplicate values are allowed,\n-- but represented with a single value and a count.\ntype Bag a = [(a, Int)]\n\nmakeBag :: (Eq a) => [a] -> Bag a\nmakeBag [] = []\nmakeBag (a:as) = mix a $ makeBag as\n  where\n    mix a []                        = [(a,1)]\n    mix a (bn@(b,n):bs) | a == b    = (b,n+1):bs\n                        | otherwise = bn : mix a bs\n\npermBag :: Bag a -> [[a]]\npermBag [] = [[]]\npermBag bs = concatMap (\\(f,cs) -> map (f:) $ permBag cs) . oneOfEach $ bs\n  where\n    oneOfEach [] = []\n    oneOfEach (an@(a,n):bs) =\n        let bs' = if n == 1 then bs else (a,n-1):bs\n        in (a,bs') : mapSnd (an:) (oneOfEach bs)\n    \n    apSnd f (a,b) = (a, f b)\n    mapSnd = map . apSnd\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        theme: \"elegant\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-haskell</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/haxe/haxe.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"haxe\", function(config, parserConfig) {\n  var indentUnit = config.indentUnit;\n\n  // Tokenizer\n\n  var keywords = function(){\n    function kw(type) {return {type: type, style: \"keyword\"};}\n    var A = kw(\"keyword a\"), B = kw(\"keyword b\"), C = kw(\"keyword c\");\n    var operator = kw(\"operator\"), atom = {type: \"atom\", style: \"atom\"}, attribute = {type:\"attribute\", style: \"attribute\"};\n  var type = kw(\"typedef\");\n    return {\n      \"if\": A, \"while\": A, \"else\": B, \"do\": B, \"try\": B,\n      \"return\": C, \"break\": C, \"continue\": C, \"new\": C, \"throw\": C,\n      \"var\": kw(\"var\"), \"inline\":attribute, \"static\": attribute, \"using\":kw(\"import\"),\n    \"public\": attribute, \"private\": attribute, \"cast\": kw(\"cast\"), \"import\": kw(\"import\"), \"macro\": kw(\"macro\"),\n      \"function\": kw(\"function\"), \"catch\": kw(\"catch\"), \"untyped\": kw(\"untyped\"), \"callback\": kw(\"cb\"),\n      \"for\": kw(\"for\"), \"switch\": kw(\"switch\"), \"case\": kw(\"case\"), \"default\": kw(\"default\"),\n      \"in\": operator, \"never\": kw(\"property_access\"), \"trace\":kw(\"trace\"),\n    \"class\": type, \"abstract\":type, \"enum\":type, \"interface\":type, \"typedef\":type, \"extends\":type, \"implements\":type, \"dynamic\":type,\n      \"true\": atom, \"false\": atom, \"null\": atom\n    };\n  }();\n\n  var isOperatorChar = /[+\\-*&%=<>!?|]/;\n\n  function chain(stream, state, f) {\n    state.tokenize = f;\n    return f(stream, state);\n  }\n\n  function nextUntilUnescaped(stream, end) {\n    var escaped = false, next;\n    while ((next = stream.next()) != null) {\n      if (next == end && !escaped)\n        return false;\n      escaped = !escaped && next == \"\\\\\";\n    }\n    return escaped;\n  }\n\n  // Used as scratch variables to communicate multiple values without\n  // consing up tons of objects.\n  var type, content;\n  function ret(tp, style, cont) {\n    type = tp; content = cont;\n    return style;\n  }\n\n  function haxeTokenBase(stream, state) {\n    var ch = stream.next();\n    if (ch == '\"' || ch == \"'\")\n      return chain(stream, state, haxeTokenString(ch));\n    else if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch))\n      return ret(ch);\n    else if (ch == \"0\" && stream.eat(/x/i)) {\n      stream.eatWhile(/[\\da-f]/i);\n      return ret(\"number\", \"number\");\n    }\n    else if (/\\d/.test(ch) || ch == \"-\" && stream.eat(/\\d/)) {\n      stream.match(/^\\d*(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/);\n      return ret(\"number\", \"number\");\n    }\n    else if (state.reAllowed && (ch == \"~\" && stream.eat(/\\//))) {\n      nextUntilUnescaped(stream, \"/\");\n      stream.eatWhile(/[gimsu]/);\n      return ret(\"regexp\", \"string-2\");\n    }\n    else if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        return chain(stream, state, haxeTokenComment);\n      }\n      else if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return ret(\"comment\", \"comment\");\n      }\n      else {\n        stream.eatWhile(isOperatorChar);\n        return ret(\"operator\", null, stream.current());\n      }\n    }\n    else if (ch == \"#\") {\n        stream.skipToEnd();\n        return ret(\"conditional\", \"meta\");\n    }\n    else if (ch == \"@\") {\n      stream.eat(/:/);\n      stream.eatWhile(/[\\w_]/);\n      return ret (\"metadata\", \"meta\");\n    }\n    else if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return ret(\"operator\", null, stream.current());\n    }\n    else {\n    var word;\n    if(/[A-Z]/.test(ch))\n    {\n      stream.eatWhile(/[\\w_<>]/);\n      word = stream.current();\n      return ret(\"type\", \"variable-3\", word);\n    }\n    else\n    {\n        stream.eatWhile(/[\\w_]/);\n        var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word];\n        return (known && state.kwAllowed) ? ret(known.type, known.style, word) :\n                       ret(\"variable\", \"variable\", word);\n    }\n    }\n  }\n\n  function haxeTokenString(quote) {\n    return function(stream, state) {\n      if (!nextUntilUnescaped(stream, quote))\n        state.tokenize = haxeTokenBase;\n      return ret(\"string\", \"string\");\n    };\n  }\n\n  function haxeTokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = haxeTokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return ret(\"comment\", \"comment\");\n  }\n\n  // Parser\n\n  var atomicTypes = {\"atom\": true, \"number\": true, \"variable\": true, \"string\": true, \"regexp\": true};\n\n  function HaxeLexical(indented, column, type, align, prev, info) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.prev = prev;\n    this.info = info;\n    if (align != null) this.align = align;\n  }\n\n  function inScope(state, varname) {\n    for (var v = state.localVars; v; v = v.next)\n      if (v.name == varname) return true;\n  }\n\n  function parseHaxe(state, style, type, content, stream) {\n    var cc = state.cc;\n    // Communicate our context to the combinators.\n    // (Less wasteful than consing up a hundred closures on every call.)\n    cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc;\n\n    if (!state.lexical.hasOwnProperty(\"align\"))\n      state.lexical.align = true;\n\n    while(true) {\n      var combinator = cc.length ? cc.pop() : statement;\n      if (combinator(type, content)) {\n        while(cc.length && cc[cc.length - 1].lex)\n          cc.pop()();\n        if (cx.marked) return cx.marked;\n        if (type == \"variable\" && inScope(state, content)) return \"variable-2\";\n    if (type == \"variable\" && imported(state, content)) return \"variable-3\";\n        return style;\n      }\n    }\n  }\n\n  function imported(state, typename)\n  {\n  if (/[a-z]/.test(typename.charAt(0)))\n    return false;\n  var len = state.importedtypes.length;\n  for (var i = 0; i<len; i++)\n    if(state.importedtypes[i]==typename) return true;\n  }\n\n\n  function registerimport(importname) {\n  var state = cx.state;\n  for (var t = state.importedtypes; t; t = t.next)\n    if(t.name == importname) return;\n  state.importedtypes = { name: importname, next: state.importedtypes };\n  }\n  // Combinator utils\n\n  var cx = {state: null, column: null, marked: null, cc: null};\n  function pass() {\n    for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);\n  }\n  function cont() {\n    pass.apply(null, arguments);\n    return true;\n  }\n  function register(varname) {\n    var state = cx.state;\n    if (state.context) {\n      cx.marked = \"def\";\n      for (var v = state.localVars; v; v = v.next)\n        if (v.name == varname) return;\n      state.localVars = {name: varname, next: state.localVars};\n    }\n  }\n\n  // Combinators\n\n  var defaultVars = {name: \"this\", next: null};\n  function pushcontext() {\n    if (!cx.state.context) cx.state.localVars = defaultVars;\n    cx.state.context = {prev: cx.state.context, vars: cx.state.localVars};\n  }\n  function popcontext() {\n    cx.state.localVars = cx.state.context.vars;\n    cx.state.context = cx.state.context.prev;\n  }\n  function pushlex(type, info) {\n    var result = function() {\n      var state = cx.state;\n      state.lexical = new HaxeLexical(state.indented, cx.stream.column(), type, null, state.lexical, info);\n    };\n    result.lex = true;\n    return result;\n  }\n  function poplex() {\n    var state = cx.state;\n    if (state.lexical.prev) {\n      if (state.lexical.type == \")\")\n        state.indented = state.lexical.indented;\n      state.lexical = state.lexical.prev;\n    }\n  }\n  poplex.lex = true;\n\n  function expect(wanted) {\n    function f(type) {\n      if (type == wanted) return cont();\n      else if (wanted == \";\") return pass();\n      else return cont(f);\n    };\n    return f;\n  }\n\n  function statement(type) {\n    if (type == \"@\") return cont(metadef);\n    if (type == \"var\") return cont(pushlex(\"vardef\"), vardef1, expect(\";\"), poplex);\n    if (type == \"keyword a\") return cont(pushlex(\"form\"), expression, statement, poplex);\n    if (type == \"keyword b\") return cont(pushlex(\"form\"), statement, poplex);\n    if (type == \"{\") return cont(pushlex(\"}\"), pushcontext, block, poplex, popcontext);\n    if (type == \";\") return cont();\n    if (type == \"attribute\") return cont(maybeattribute);\n    if (type == \"function\") return cont(functiondef);\n    if (type == \"for\") return cont(pushlex(\"form\"), expect(\"(\"), pushlex(\")\"), forspec1, expect(\")\"),\n                                      poplex, statement, poplex);\n    if (type == \"variable\") return cont(pushlex(\"stat\"), maybelabel);\n    if (type == \"switch\") return cont(pushlex(\"form\"), expression, pushlex(\"}\", \"switch\"), expect(\"{\"),\n                                         block, poplex, poplex);\n    if (type == \"case\") return cont(expression, expect(\":\"));\n    if (type == \"default\") return cont(expect(\":\"));\n    if (type == \"catch\") return cont(pushlex(\"form\"), pushcontext, expect(\"(\"), funarg, expect(\")\"),\n                                        statement, poplex, popcontext);\n    if (type == \"import\") return cont(importdef, expect(\";\"));\n    if (type == \"typedef\") return cont(typedef);\n    return pass(pushlex(\"stat\"), expression, expect(\";\"), poplex);\n  }\n  function expression(type) {\n    if (atomicTypes.hasOwnProperty(type)) return cont(maybeoperator);\n    if (type == \"function\") return cont(functiondef);\n    if (type == \"keyword c\") return cont(maybeexpression);\n    if (type == \"(\") return cont(pushlex(\")\"), maybeexpression, expect(\")\"), poplex, maybeoperator);\n    if (type == \"operator\") return cont(expression);\n    if (type == \"[\") return cont(pushlex(\"]\"), commasep(expression, \"]\"), poplex, maybeoperator);\n    if (type == \"{\") return cont(pushlex(\"}\"), commasep(objprop, \"}\"), poplex, maybeoperator);\n    return cont();\n  }\n  function maybeexpression(type) {\n    if (type.match(/[;\\}\\)\\],]/)) return pass();\n    return pass(expression);\n  }\n\n  function maybeoperator(type, value) {\n    if (type == \"operator\" && /\\+\\+|--/.test(value)) return cont(maybeoperator);\n    if (type == \"operator\" || type == \":\") return cont(expression);\n    if (type == \";\") return;\n    if (type == \"(\") return cont(pushlex(\")\"), commasep(expression, \")\"), poplex, maybeoperator);\n    if (type == \".\") return cont(property, maybeoperator);\n    if (type == \"[\") return cont(pushlex(\"]\"), expression, expect(\"]\"), poplex, maybeoperator);\n  }\n\n  function maybeattribute(type) {\n    if (type == \"attribute\") return cont(maybeattribute);\n    if (type == \"function\") return cont(functiondef);\n    if (type == \"var\") return cont(vardef1);\n  }\n\n  function metadef(type) {\n    if(type == \":\") return cont(metadef);\n    if(type == \"variable\") return cont(metadef);\n    if(type == \"(\") return cont(pushlex(\")\"), commasep(metaargs, \")\"), poplex, statement);\n  }\n  function metaargs(type) {\n    if(type == \"variable\") return cont();\n  }\n\n  function importdef (type, value) {\n  if(type == \"variable\" && /[A-Z]/.test(value.charAt(0))) { registerimport(value); return cont(); }\n  else if(type == \"variable\" || type == \"property\" || type == \".\" || value == \"*\") return cont(importdef);\n  }\n\n  function typedef (type, value)\n  {\n  if(type == \"variable\" && /[A-Z]/.test(value.charAt(0))) { registerimport(value); return cont(); }\n  else if (type == \"type\" && /[A-Z]/.test(value.charAt(0))) { return cont(); }\n  }\n\n  function maybelabel(type) {\n    if (type == \":\") return cont(poplex, statement);\n    return pass(maybeoperator, expect(\";\"), poplex);\n  }\n  function property(type) {\n    if (type == \"variable\") {cx.marked = \"property\"; return cont();}\n  }\n  function objprop(type) {\n    if (type == \"variable\") cx.marked = \"property\";\n    if (atomicTypes.hasOwnProperty(type)) return cont(expect(\":\"), expression);\n  }\n  function commasep(what, end) {\n    function proceed(type) {\n      if (type == \",\") return cont(what, proceed);\n      if (type == end) return cont();\n      return cont(expect(end));\n    }\n    return function(type) {\n      if (type == end) return cont();\n      else return pass(what, proceed);\n    };\n  }\n  function block(type) {\n    if (type == \"}\") return cont();\n    return pass(statement, block);\n  }\n  function vardef1(type, value) {\n    if (type == \"variable\"){register(value); return cont(typeuse, vardef2);}\n    return cont();\n  }\n  function vardef2(type, value) {\n    if (value == \"=\") return cont(expression, vardef2);\n    if (type == \",\") return cont(vardef1);\n  }\n  function forspec1(type, value) {\n  if (type == \"variable\") {\n    register(value);\n  }\n  return cont(pushlex(\")\"), pushcontext, forin, expression, poplex, statement, popcontext);\n  }\n  function forin(_type, value) {\n    if (value == \"in\") return cont();\n  }\n  function functiondef(type, value) {\n    if (type == \"variable\") {register(value); return cont(functiondef);}\n    if (value == \"new\") return cont(functiondef);\n    if (type == \"(\") return cont(pushlex(\")\"), pushcontext, commasep(funarg, \")\"), poplex, typeuse, statement, popcontext);\n  }\n  function typeuse(type) {\n    if(type == \":\") return cont(typestring);\n  }\n  function typestring(type) {\n    if(type == \"type\") return cont();\n    if(type == \"variable\") return cont();\n    if(type == \"{\") return cont(pushlex(\"}\"), commasep(typeprop, \"}\"), poplex);\n  }\n  function typeprop(type) {\n    if(type == \"variable\") return cont(typeuse);\n  }\n  function funarg(type, value) {\n    if (type == \"variable\") {register(value); return cont(typeuse);}\n  }\n\n  // Interface\n\n  return {\n    startState: function(basecolumn) {\n    var defaulttypes = [\"Int\", \"Float\", \"String\", \"Void\", \"Std\", \"Bool\", \"Dynamic\", \"Array\"];\n      return {\n        tokenize: haxeTokenBase,\n        reAllowed: true,\n        kwAllowed: true,\n        cc: [],\n        lexical: new HaxeLexical((basecolumn || 0) - indentUnit, 0, \"block\", false),\n        localVars: parserConfig.localVars,\n    importedtypes: defaulttypes,\n        context: parserConfig.localVars && {vars: parserConfig.localVars},\n        indented: 0\n      };\n    },\n\n    token: function(stream, state) {\n      if (stream.sol()) {\n        if (!state.lexical.hasOwnProperty(\"align\"))\n          state.lexical.align = false;\n        state.indented = stream.indentation();\n      }\n      if (stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n      if (type == \"comment\") return style;\n      state.reAllowed = !!(type == \"operator\" || type == \"keyword c\" || type.match(/^[\\[{}\\(,;:]$/));\n      state.kwAllowed = type != '.';\n      return parseHaxe(state, style, type, content, stream);\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != haxeTokenBase) return 0;\n      var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical;\n      if (lexical.type == \"stat\" && firstChar == \"}\") lexical = lexical.prev;\n      var type = lexical.type, closing = firstChar == type;\n      if (type == \"vardef\") return lexical.indented + 4;\n      else if (type == \"form\" && firstChar == \"{\") return lexical.indented;\n      else if (type == \"stat\" || type == \"form\") return lexical.indented + indentUnit;\n      else if (lexical.info == \"switch\" && !closing)\n        return lexical.indented + (/^(?:case|default)\\b/.test(textAfter) ? indentUnit : 2 * indentUnit);\n      else if (lexical.align) return lexical.column + (closing ? 0 : 1);\n      else return lexical.indented + (closing ? 0 : indentUnit);\n    },\n\n    electricChars: \"{}\",\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\",\n    lineComment: \"//\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-haxe\", \"haxe\");\n\nCodeMirror.defineMode(\"hxml\", function () {\n\n  return {\n    startState: function () {\n      return {\n        define: false,\n        inString: false\n      };\n    },\n    token: function (stream, state) {\n      var ch = stream.peek();\n      var sol = stream.sol();\n\n      ///* comments */\n      if (ch == \"#\") {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n      if (sol && ch == \"-\") {\n        var style = \"variable-2\";\n\n        stream.eat(/-/);\n\n        if (stream.peek() == \"-\") {\n          stream.eat(/-/);\n          style = \"keyword a\";\n        }\n\n        if (stream.peek() == \"D\") {\n          stream.eat(/[D]/);\n          style = \"keyword c\";\n          state.define = true;\n        }\n\n        stream.eatWhile(/[A-Z]/i);\n        return style;\n      }\n\n      var ch = stream.peek();\n\n      if (state.inString == false && ch == \"'\") {\n        state.inString = true;\n        ch = stream.next();\n      }\n\n      if (state.inString == true) {\n        if (stream.skipTo(\"'\")) {\n\n        } else {\n          stream.skipToEnd();\n        }\n\n        if (stream.peek() == \"'\") {\n          stream.next();\n          state.inString = false;\n        }\n\n        return \"string\";\n      }\n\n      stream.next();\n      return null;\n    },\n    lineComment: \"#\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-hxml\", \"hxml\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/haxe/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Haxe mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"haxe.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Haxe</a>\n  </ul>\n</div>\n\n<article>\n<h2>Haxe mode</h2>\n\n\n<div><p><textarea id=\"code-haxe\" name=\"code\">\nimport one.two.Three;\n\n@attr(\"test\")\nclass Foo&lt;T&gt; extends Three\n{\n\tpublic function new()\n\t{\n\t\tnoFoo = 12;\n\t}\n\t\n\tpublic static inline function doFoo(obj:{k:Int, l:Float}):Int\n\t{\n\t\tfor(i in 0...10)\n\t\t{\n\t\t\tobj.k++;\n\t\t\ttrace(i);\n\t\t\tvar var1 = new Array();\n\t\t\tif(var1.length > 1)\n\t\t\t\tthrow \"Error\";\n\t\t}\n\t\t// The following line should not be colored, the variable is scoped out\n\t\tvar1;\n\t\t/* Multi line\n\t\t * Comment test\n\t\t */\n\t\treturn obj.k;\n\t}\n\tprivate function bar():Void\n\t{\n\t\t#if flash\n\t\tvar t1:String = \"1.21\";\n\t\t#end\n\t\ttry {\n\t\t\tdoFoo({k:3, l:1.2});\n\t\t}\n\t\tcatch (e : String) {\n\t\t\ttrace(e);\n\t\t}\n\t\tvar t2:Float = cast(3.2);\n\t\tvar t3:haxe.Timer = new haxe.Timer();\n\t\tvar t4 = {k:Std.int(t2), l:Std.parseFloat(t1)};\n\t\tvar t5 = ~/123+.*$/i;\n\t\tdoFoo(t4);\n\t\tuntyped t1 = 4;\n\t\tbob = new Foo&lt;Int&gt;\n\t}\n\tpublic var okFoo(default, never):Float;\n\tvar noFoo(getFoo, null):Int;\n\tfunction getFoo():Int {\n\t\treturn noFoo;\n\t}\n\t\n\tpublic var three:Int;\n}\nenum Color\n{\n\tred;\n\tgreen;\n\tblue;\n\tgrey( v : Int );\n\trgb (r:Int,g:Int,b:Int);\n}\n</textarea></p>\n\n<p>Hxml mode:</p>\n\n<p><textarea id=\"code-hxml\">\n-cp test\n-js path/to/file.js\n#-remap nme:flash\n--next\n-D source-map-content\n-cmd 'test'\n-lib lime\n</textarea></p>\n</div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code-haxe\"), {\n      \tmode: \"haxe\",\n        lineNumbers: true,\n        indentUnit: 4,\n        indentWithTabs: true\n      });\n      \n      editor = CodeMirror.fromTextArea(document.getElementById(\"code-hxml\"), {\n      \tmode: \"hxml\",\n        lineNumbers: true,\n        indentUnit: 4,\n        indentWithTabs: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-haxe, text/x-hxml</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/htmlembedded/htmlembedded.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../htmlmixed/htmlmixed\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../htmlmixed/htmlmixed\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"htmlembedded\", function(config, parserConfig) {\n\n  //config settings\n  var scriptStartRegex = parserConfig.scriptStartRegex || /^<%/i,\n      scriptEndRegex = parserConfig.scriptEndRegex || /^%>/i;\n\n  //inner modes\n  var scriptingMode, htmlMixedMode;\n\n  //tokenizer when in html mode\n  function htmlDispatch(stream, state) {\n      if (stream.match(scriptStartRegex, false)) {\n          state.token=scriptingDispatch;\n          return scriptingMode.token(stream, state.scriptState);\n          }\n      else\n          return htmlMixedMode.token(stream, state.htmlState);\n    }\n\n  //tokenizer when in scripting mode\n  function scriptingDispatch(stream, state) {\n      if (stream.match(scriptEndRegex, false))  {\n          state.token=htmlDispatch;\n          return htmlMixedMode.token(stream, state.htmlState);\n         }\n      else\n          return scriptingMode.token(stream, state.scriptState);\n         }\n\n\n  return {\n    startState: function() {\n      scriptingMode = scriptingMode || CodeMirror.getMode(config, parserConfig.scriptingModeSpec);\n      htmlMixedMode = htmlMixedMode || CodeMirror.getMode(config, \"htmlmixed\");\n      return {\n          token :  parserConfig.startOpen ? scriptingDispatch : htmlDispatch,\n          htmlState : CodeMirror.startState(htmlMixedMode),\n          scriptState : CodeMirror.startState(scriptingMode)\n      };\n    },\n\n    token: function(stream, state) {\n      return state.token(stream, state);\n    },\n\n    indent: function(state, textAfter) {\n      if (state.token == htmlDispatch)\n        return htmlMixedMode.indent(state.htmlState, textAfter);\n      else if (scriptingMode.indent)\n        return scriptingMode.indent(state.scriptState, textAfter);\n    },\n\n    copyState: function(state) {\n      return {\n       token : state.token,\n       htmlState : CodeMirror.copyState(htmlMixedMode, state.htmlState),\n       scriptState : CodeMirror.copyState(scriptingMode, state.scriptState)\n      };\n    },\n\n    innerMode: function(state) {\n      if (state.token == scriptingDispatch) return {state: state.scriptState, mode: scriptingMode};\n      else return {state: state.htmlState, mode: htmlMixedMode};\n    }\n  };\n}, \"htmlmixed\");\n\nCodeMirror.defineMIME(\"application/x-ejs\", { name: \"htmlembedded\", scriptingModeSpec:\"javascript\"});\nCodeMirror.defineMIME(\"application/x-aspx\", { name: \"htmlembedded\", scriptingModeSpec:\"text/x-csharp\"});\nCodeMirror.defineMIME(\"application/x-jsp\", { name: \"htmlembedded\", scriptingModeSpec:\"text/x-java\"});\nCodeMirror.defineMIME(\"application/x-erb\", { name: \"htmlembedded\", scriptingModeSpec:\"ruby\"});\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/htmlembedded/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Html Embedded Scripts mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../javascript/javascript.js\"></script>\n<script src=\"../css/css.js\"></script>\n<script src=\"../htmlmixed/htmlmixed.js\"></script>\n<script src=\"htmlembedded.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Html Embedded Scripts</a>\n  </ul>\n</div>\n\n<article>\n<h2>Html Embedded Scripts mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n<%\nfunction hello(who) {\n\treturn \"Hello \" + who;\n}\n%>\nThis is an example of EJS (embedded javascript)\n<p>The program says <%= hello(\"world\") %>.</p>\n<script>\n\talert(\"And here is some normal JS code\"); // also colored\n</script>\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        mode: \"application/x-ejs\",\n        indentUnit: 4,\n        indentWithTabs: true\n      });\n    </script>\n\n    <p>Mode for html embedded scripts like JSP and ASP.NET. Depends on HtmlMixed which in turn depends on\n    JavaScript, CSS and XML.<br />Other dependancies include those of the scriping language chosen.</p>\n\n    <p><strong>MIME types defined:</strong> <code>application/x-aspx</code> (ASP.NET), \n    <code>application/x-ejs</code> (Embedded Javascript), <code>application/x-jsp</code> (JavaServer Pages)</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/htmlmixed/htmlmixed.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../xml/xml\"), require(\"../javascript/javascript\"), require(\"../css/css\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../xml/xml\", \"../javascript/javascript\", \"../css/css\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"htmlmixed\", function(config, parserConfig) {\n  var htmlMode = CodeMirror.getMode(config, {name: \"xml\",\n                                             htmlMode: true,\n                                             multilineTagIndentFactor: parserConfig.multilineTagIndentFactor,\n                                             multilineTagIndentPastTag: parserConfig.multilineTagIndentPastTag});\n  var cssMode = CodeMirror.getMode(config, \"css\");\n\n  var scriptTypes = [], scriptTypesConf = parserConfig && parserConfig.scriptTypes;\n  scriptTypes.push({matches: /^(?:text|application)\\/(?:x-)?(?:java|ecma)script$|^$/i,\n                    mode: CodeMirror.getMode(config, \"javascript\")});\n  if (scriptTypesConf) for (var i = 0; i < scriptTypesConf.length; ++i) {\n    var conf = scriptTypesConf[i];\n    scriptTypes.push({matches: conf.matches, mode: conf.mode && CodeMirror.getMode(config, conf.mode)});\n  }\n  scriptTypes.push({matches: /./,\n                    mode: CodeMirror.getMode(config, \"text/plain\")});\n\n  function html(stream, state) {\n    var tagName = state.htmlState.tagName;\n    if (tagName) tagName = tagName.toLowerCase();\n    var style = htmlMode.token(stream, state.htmlState);\n    if (tagName == \"script\" && /\\btag\\b/.test(style) && stream.current() == \">\") {\n      // Script block: mode to change to depends on type attribute\n      var scriptType = stream.string.slice(Math.max(0, stream.pos - 100), stream.pos).match(/\\btype\\s*=\\s*(\"[^\"]+\"|'[^']+'|\\S+)[^<]*$/i);\n      scriptType = scriptType ? scriptType[1] : \"\";\n      if (scriptType && /[\\\"\\']/.test(scriptType.charAt(0))) scriptType = scriptType.slice(1, scriptType.length - 1);\n      for (var i = 0; i < scriptTypes.length; ++i) {\n        var tp = scriptTypes[i];\n        if (typeof tp.matches == \"string\" ? scriptType == tp.matches : tp.matches.test(scriptType)) {\n          if (tp.mode) {\n            state.token = script;\n            state.localMode = tp.mode;\n            state.localState = tp.mode.startState && tp.mode.startState(htmlMode.indent(state.htmlState, \"\"));\n          }\n          break;\n        }\n      }\n    } else if (tagName == \"style\" && /\\btag\\b/.test(style) && stream.current() == \">\") {\n      state.token = css;\n      state.localMode = cssMode;\n      state.localState = cssMode.startState(htmlMode.indent(state.htmlState, \"\"));\n    }\n    return style;\n  }\n  function maybeBackup(stream, pat, style) {\n    var cur = stream.current();\n    var close = cur.search(pat), m;\n    if (close > -1) stream.backUp(cur.length - close);\n    else if (m = cur.match(/<\\/?$/)) {\n      stream.backUp(cur.length);\n      if (!stream.match(pat, false)) stream.match(cur);\n    }\n    return style;\n  }\n  function script(stream, state) {\n    if (stream.match(/^<\\/\\s*script\\s*>/i, false)) {\n      state.token = html;\n      state.localState = state.localMode = null;\n      return html(stream, state);\n    }\n    return maybeBackup(stream, /<\\/\\s*script\\s*>/,\n                       state.localMode.token(stream, state.localState));\n  }\n  function css(stream, state) {\n    if (stream.match(/^<\\/\\s*style\\s*>/i, false)) {\n      state.token = html;\n      state.localState = state.localMode = null;\n      return html(stream, state);\n    }\n    return maybeBackup(stream, /<\\/\\s*style\\s*>/,\n                       cssMode.token(stream, state.localState));\n  }\n\n  return {\n    startState: function() {\n      var state = htmlMode.startState();\n      return {token: html, localMode: null, localState: null, htmlState: state};\n    },\n\n    copyState: function(state) {\n      if (state.localState)\n        var local = CodeMirror.copyState(state.localMode, state.localState);\n      return {token: state.token, localMode: state.localMode, localState: local,\n              htmlState: CodeMirror.copyState(htmlMode, state.htmlState)};\n    },\n\n    token: function(stream, state) {\n      return state.token(stream, state);\n    },\n\n    indent: function(state, textAfter) {\n      if (!state.localMode || /^\\s*<\\//.test(textAfter))\n        return htmlMode.indent(state.htmlState, textAfter);\n      else if (state.localMode.indent)\n        return state.localMode.indent(state.localState, textAfter);\n      else\n        return CodeMirror.Pass;\n    },\n\n    innerMode: function(state) {\n      return {state: state.localState || state.htmlState, mode: state.localMode || htmlMode};\n    }\n  };\n}, \"xml\", \"javascript\", \"css\");\n\nCodeMirror.defineMIME(\"text/html\", \"htmlmixed\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/htmlmixed/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: HTML mixed mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../javascript/javascript.js\"></script>\n<script src=\"../css/css.js\"></script>\n<script src=\"../vbscript/vbscript.js\"></script>\n<script src=\"htmlmixed.js\"></script>\n<style>.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">HTML mixed</a>\n  </ul>\n</div>\n\n<article>\n<h2>HTML mixed mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n<html style=\"color: green\">\n  <!-- this is a comment -->\n  <head>\n    <title>Mixed HTML Example</title>\n    <style type=\"text/css\">\n      h1 {font-family: comic sans; color: #f0f;}\n      div {background: yellow !important;}\n      body {\n        max-width: 50em;\n        margin: 1em 2em 1em 5em;\n      }\n    </style>\n  </head>\n  <body>\n    <h1>Mixed HTML Example</h1>\n    <script>\n      function jsFunc(arg1, arg2) {\n        if (arg1 && arg2) document.body.innerHTML = \"achoo\";\n      }\n    </script>\n  </body>\n</html>\n</textarea></form>\n    <script>\n      // Define an extended mixed-mode that understands vbscript and\n      // leaves mustache/handlebars embedded templates in html mode\n      var mixedMode = {\n        name: \"htmlmixed\",\n        scriptTypes: [{matches: /\\/x-handlebars-template|\\/x-mustache/i,\n                       mode: null},\n                      {matches: /(text|application)\\/(x-)?vb(a|script)/i,\n                       mode: \"vbscript\"}]\n      };\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {mode: mixedMode});\n    </script>\n\n    <p>The HTML mixed mode depends on the XML, JavaScript, and CSS modes.</p>\n\n    <p>It takes an optional mode configuration\n    option, <code>scriptTypes</code>, which can be used to add custom\n    behavior for specific <code>&lt;script type=\"...\"></code> tags. If\n    given, it should hold an array of <code>{matches, mode}</code>\n    objects, where <code>matches</code> is a string or regexp that\n    matches the script type, and <code>mode</code> is\n    either <code>null</code>, for script types that should stay in\n    HTML mode, or a <a href=\"../../doc/manual.html#option_mode\">mode\n    spec</a> corresponding to the mode that should be used for the\n    script.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/html</code>\n    (redefined, only takes effect if you load this parser after the\n    XML parser).</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/http/http.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"http\", function() {\n  function failFirstLine(stream, state) {\n    stream.skipToEnd();\n    state.cur = header;\n    return \"error\";\n  }\n\n  function start(stream, state) {\n    if (stream.match(/^HTTP\\/\\d\\.\\d/)) {\n      state.cur = responseStatusCode;\n      return \"keyword\";\n    } else if (stream.match(/^[A-Z]+/) && /[ \\t]/.test(stream.peek())) {\n      state.cur = requestPath;\n      return \"keyword\";\n    } else {\n      return failFirstLine(stream, state);\n    }\n  }\n\n  function responseStatusCode(stream, state) {\n    var code = stream.match(/^\\d+/);\n    if (!code) return failFirstLine(stream, state);\n\n    state.cur = responseStatusText;\n    var status = Number(code[0]);\n    if (status >= 100 && status < 200) {\n      return \"positive informational\";\n    } else if (status >= 200 && status < 300) {\n      return \"positive success\";\n    } else if (status >= 300 && status < 400) {\n      return \"positive redirect\";\n    } else if (status >= 400 && status < 500) {\n      return \"negative client-error\";\n    } else if (status >= 500 && status < 600) {\n      return \"negative server-error\";\n    } else {\n      return \"error\";\n    }\n  }\n\n  function responseStatusText(stream, state) {\n    stream.skipToEnd();\n    state.cur = header;\n    return null;\n  }\n\n  function requestPath(stream, state) {\n    stream.eatWhile(/\\S/);\n    state.cur = requestProtocol;\n    return \"string-2\";\n  }\n\n  function requestProtocol(stream, state) {\n    if (stream.match(/^HTTP\\/\\d\\.\\d$/)) {\n      state.cur = header;\n      return \"keyword\";\n    } else {\n      return failFirstLine(stream, state);\n    }\n  }\n\n  function header(stream) {\n    if (stream.sol() && !stream.eat(/[ \\t]/)) {\n      if (stream.match(/^.*?:/)) {\n        return \"atom\";\n      } else {\n        stream.skipToEnd();\n        return \"error\";\n      }\n    } else {\n      stream.skipToEnd();\n      return \"string\";\n    }\n  }\n\n  function body(stream) {\n    stream.skipToEnd();\n    return null;\n  }\n\n  return {\n    token: function(stream, state) {\n      var cur = state.cur;\n      if (cur != header && cur != body && stream.eatSpace()) return null;\n      return cur(stream, state);\n    },\n\n    blankLine: function(state) {\n      state.cur = body;\n    },\n\n    startState: function() {\n      return {cur: start};\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"message/http\", \"http\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/http/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: HTTP mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"http.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">HTTP</a>\n  </ul>\n</div>\n\n<article>\n<h2>HTTP mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\nPOST /somewhere HTTP/1.1\nHost: example.com\nIf-Modified-Since: Sat, 29 Oct 1994 19:43:31 GMT\nContent-Type: application/x-www-form-urlencoded;\n\tcharset=utf-8\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/536.11 (KHTML, like Gecko) Ubuntu/12.04 Chromium/20.0.1132.47 Chrome/20.0.1132.47 Safari/536.11\n\nThis is the request body!\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>message/http</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Language Modes</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../doc/docs.css\">\n\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../index.html\">Home</a>\n    <li><a href=\"../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a class=active href=\"#\">Language modes</a>\n  </ul>\n</div>\n\n<article>\n\n<h2>Language modes</h2>\n\n<p>This is a list of every mode in the distribution. Each mode lives\nin a subdirectory of the <code>mode/</code> directory, and typically\ndefines a single JavaScript file that implements the mode. Loading\nsuch file will make the language available to CodeMirror, through\nthe <a href=\"manual.html#option_mode\"><code>mode</code></a>\noption.</p>\n\n<div style=\"-webkit-columns: 100px 2; -moz-columns: 100px 2; columns: 100px 2;\">\n    <ul style=\"margin-top: 0\">\n      <li><a href=\"apl/index.html\">APL</a></li>\n      <li><a href=\"asterisk/index.html\">Asterisk dialplan</a></li>\n      <li><a href=\"clike/index.html\">C, C++, C#</a></li>\n      <li><a href=\"clojure/index.html\">Clojure</a></li>\n      <li><a href=\"cobol/index.html\">COBOL</a></li>\n      <li><a href=\"coffeescript/index.html\">CoffeeScript</a></li>\n      <li><a href=\"commonlisp/index.html\">Common Lisp</a></li>\n      <li><a href=\"css/index.html\">CSS</a></li>\n      <li><a href=\"cypher/index.html\">Cypher</a></li>\n      <li><a href=\"python/index.html\">Cython</a></li>\n      <li><a href=\"d/index.html\">D</a></li>\n      <li><a href=\"django/index.html\">Django</a> (templating language)</li>\n      <li><a href=\"diff/index.html\">diff</a></li>\n      <li><a href=\"dtd/index.html\">DTD</a></li>\n      <li><a href=\"dylan/index.html\">Dylan</a></li>\n      <li><a href=\"ecl/index.html\">ECL</a></li>\n      <li><a href=\"eiffel/index.html\">Eiffel</a></li>\n      <li><a href=\"erlang/index.html\">Erlang</a></li>\n      <li><a href=\"fortran/index.html\">Fortran</a></li>\n      <li><a href=\"mllike/index.html\">F#</a></li>\n      <li><a href=\"gas/index.html\">Gas</a> (AT&amp;T-style assembly)</li>\n      <li><a href=\"gherkin/index.html\">Gherkin</a></li>\n      <li><a href=\"go/index.html\">Go</a></li>\n      <li><a href=\"groovy/index.html\">Groovy</a></li>\n      <li><a href=\"haml/index.html\">HAML</a></li>\n      <li><a href=\"haskell/index.html\">Haskell</a></li>\n      <li><a href=\"haxe/index.html\">Haxe</a></li>\n      <li><a href=\"htmlembedded/index.html\">HTML embedded scripts</a></li>\n      <li><a href=\"htmlmixed/index.html\">HTML mixed-mode</a></li>\n      <li><a href=\"http/index.html\">HTTP</a></li>\n      <li><a href=\"clike/index.html\">Java</a></li>\n      <li><a href=\"jade/index.html\">Jade</a></li>\n      <li><a href=\"javascript/index.html\">JavaScript</a></li>\n      <li><a href=\"jinja2/index.html\">Jinja2</a></li>\n      <li><a href=\"julia/index.html\">Julia</a></li>\n      <li><a href=\"kotlin/index.html\">Kotlin</a></li>\n      <li><a href=\"css/less.html\">LESS</a></li>\n      <li><a href=\"livescript/index.html\">LiveScript</a></li>\n      <li><a href=\"lua/index.html\">Lua</a></li>\n      <li><a href=\"markdown/index.html\">Markdown</a> (<a href=\"gfm/index.html\">GitHub-flavour</a>)</li>\n      <li><a href=\"mirc/index.html\">mIRC</a></li>\n      <li><a href=\"modelica/index.html\">Modelica</a></li>\n      <li><a href=\"nginx/index.html\">Nginx</a></li>\n      <li><a href=\"ntriples/index.html\">NTriples</a></li>\n      <li><a href=\"mllike/index.html\">OCaml</a></li>\n      <li><a href=\"octave/index.html\">Octave</a> (MATLAB)</li>\n      <li><a href=\"pascal/index.html\">Pascal</a></li>\n      <li><a href=\"pegjs/index.html\">PEG.js</a></li>\n      <li><a href=\"perl/index.html\">Perl</a></li>\n      <li><a href=\"php/index.html\">PHP</a></li>\n      <li><a href=\"pig/index.html\">Pig Latin</a></li>\n      <li><a href=\"properties/index.html\">Properties files</a></li>\n      <li><a href=\"puppet/index.html\">Puppet</a></li>\n      <li><a href=\"python/index.html\">Python</a></li>\n      <li><a href=\"q/index.html\">Q</a></li>\n      <li><a href=\"r/index.html\">R</a></li>\n      <li><a href=\"rpm/index.html\">RPM</a></li>\n      <li><a href=\"rst/index.html\">reStructuredText</a></li>\n      <li><a href=\"ruby/index.html\">Ruby</a></li>\n      <li><a href=\"rust/index.html\">Rust</a></li>\n      <li><a href=\"sass/index.html\">Sass</a></li>\n      <li><a href=\"clike/scala.html\">Scala</a></li>\n      <li><a href=\"scheme/index.html\">Scheme</a></li>\n      <li><a href=\"css/scss.html\">SCSS</a></li>\n      <li><a href=\"shell/index.html\">Shell</a></li>\n      <li><a href=\"sieve/index.html\">Sieve</a></li>\n      <li><a href=\"slim/index.html\">Slim</a></li>\n      <li><a href=\"smalltalk/index.html\">Smalltalk</a></li>\n      <li><a href=\"smarty/index.html\">Smarty</a></li>\n      <li><a href=\"smartymixed/index.html\">Smarty/HTML mixed</a></li>\n      <li><a href=\"solr/index.html\">Solr</a></li>\n      <li><a href=\"sql/index.html\">SQL</a> (several dialects)</li>\n      <li><a href=\"sparql/index.html\">SPARQL</a></li>\n      <li><a href=\"stex/index.html\">sTeX, LaTeX</a></li>\n      <li><a href=\"tcl/index.html\">Tcl</a></li>\n      <li><a href=\"textile/index.html\">Textile</a></li>\n      <li><a href=\"tiddlywiki/index.html\">Tiddlywiki</a></li>\n      <li><a href=\"tiki/index.html\">Tiki wiki</a></li>\n      <li><a href=\"toml/index.html\">TOML</a></li>\n      <li><a href=\"tornado/index.html\">Tornado</a> (templating language)</li>\n      <li><a href=\"turtle/index.html\">Turtle</a></li>\n      <li><a href=\"vb/index.html\">VB.NET</a></li>\n      <li><a href=\"vbscript/index.html\">VBScript</a></li>\n      <li><a href=\"velocity/index.html\">Velocity</a></li>\n      <li><a href=\"verilog/index.html\">Verilog/SystemVerilog</a></li>\n      <li><a href=\"xml/index.html\">XML/HTML</a></li>\n      <li><a href=\"xquery/index.html\">XQuery</a></li>\n      <li><a href=\"yaml/index.html\">YAML</a></li>\n      <li><a href=\"z80/index.html\">Z80</a></li>\n    </ul>\n  </div>\n\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/jade/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Jade Templating Mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../javascript/javascript.js\"></script>\n<script src=\"../css/css.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../htmlmixed/htmlmixed.js\"></script>\n<script src=\"jade.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Jade Templating Mode</a>\n  </ul>\n</div>\n\n<article>\n<h2>Jade Templating Mode</h2>\n<form><textarea id=\"code\" name=\"code\">\ndoctype html\n  html\n    head\n      title= \"Jade Templating CodeMirror Mode Example\"\n      link(rel='stylesheet', href='/css/bootstrap.min.css')\n      link(rel='stylesheet', href='/css/index.css')\n      script(type='text/javascript', src='/js/jquery-1.9.1.min.js')\n      script(type='text/javascript', src='/js/bootstrap.min.js')\n    body\n      div.header\n        h1 Welcome to this Example\n      div.spots\n        if locals.spots\n          each spot in spots\n            div.spot.well\n         div\n           if spot.logo\n             img.img-rounded.logo(src=spot.logo)\n           else\n             img.img-rounded.logo(src=\"img/placeholder.png\")\n         h3\n           a(href=spot.hash) ##{spot.hash}\n           if spot.title\n             span.title #{spot.title}\n           if spot.desc\n             div #{spot.desc}\n        else\n          h3 There are no spots currently available.\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: {name: \"jade\", alignCDATA: true},\n        lineNumbers: true\n      });\n    </script>\n    <h3>The Jade Templating Mode</h3>\n      <p> Created by Forbes Lindesay. Managed as part of a Brackets extension at <a href=\"https://github.com/ForbesLindesay/jade-brackets\">https://github.com/ForbesLindesay/jade-brackets</a>.</p>\n    <p><strong>MIME type defined:</strong> <code>text/x-jade</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/jade/jade.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../javascript/javascript\"), require(\"../css/css\"), require(\"../htmlmixed/htmlmixed\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../javascript/javascript\", \"../css/css\", \"../htmlmixed/htmlmixed\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode('jade', function (config) {\n  // token types\n  var KEYWORD = 'keyword';\n  var DOCTYPE = 'meta';\n  var ID = 'builtin';\n  var CLASS = 'qualifier';\n\n  var ATTRS_NEST = {\n    '{': '}',\n    '(': ')',\n    '[': ']'\n  };\n\n  var jsMode = CodeMirror.getMode(config, 'javascript');\n\n  function State() {\n    this.javaScriptLine = false;\n    this.javaScriptLineExcludesColon = false;\n\n    this.javaScriptArguments = false;\n    this.javaScriptArgumentsDepth = 0;\n\n    this.isInterpolating = false;\n    this.interpolationNesting = 0;\n\n    this.jsState = jsMode.startState();\n\n    this.restOfLine = '';\n\n    this.isIncludeFiltered = false;\n    this.isEach = false;\n\n    this.lastTag = '';\n    this.scriptType = '';\n\n    // Attributes Mode\n    this.isAttrs = false;\n    this.attrsNest = [];\n    this.inAttributeName = true;\n    this.attributeIsType = false;\n    this.attrValue = '';\n\n    // Indented Mode\n    this.indentOf = Infinity;\n    this.indentToken = '';\n\n    this.innerMode = null;\n    this.innerState = null;\n\n    this.innerModeForLine = false;\n  }\n  /**\n   * Safely copy a state\n   *\n   * @return {State}\n   */\n  State.prototype.copy = function () {\n    var res = new State();\n    res.javaScriptLine = this.javaScriptLine;\n    res.javaScriptLineExcludesColon = this.javaScriptLineExcludesColon;\n    res.javaScriptArguments = this.javaScriptArguments;\n    res.javaScriptArgumentsDepth = this.javaScriptArgumentsDepth;\n    res.isInterpolating = this.isInterpolating;\n    res.interpolationNesting = this.intpolationNesting;\n\n    res.jsState = CodeMirror.copyState(jsMode, this.jsState);\n\n    res.innerMode = this.innerMode;\n    if (this.innerMode && this.innerState) {\n      res.innerState = CodeMirror.copyState(this.innerMode, this.innerState);\n    }\n\n    res.restOfLine = this.restOfLine;\n\n    res.isIncludeFiltered = this.isIncludeFiltered;\n    res.isEach = this.isEach;\n    res.lastTag = this.lastTag;\n    res.scriptType = this.scriptType;\n    res.isAttrs = this.isAttrs;\n    res.attrsNest = this.attrsNest.slice();\n    res.inAttributeName = this.inAttributeName;\n    res.attributeIsType = this.attributeIsType;\n    res.attrValue = this.attrValue;\n    res.indentOf = this.indentOf;\n    res.indentToken = this.indentToken;\n\n    res.innerModeForLine = this.innerModeForLine;\n\n    return res;\n  };\n\n  function javaScript(stream, state) {\n    if (stream.sol()) {\n      // if javaScriptLine was set at end of line, ignore it\n      state.javaScriptLine = false;\n      state.javaScriptLineExcludesColon = false;\n    }\n    if (state.javaScriptLine) {\n      if (state.javaScriptLineExcludesColon && stream.peek() === ':') {\n        state.javaScriptLine = false;\n        state.javaScriptLineExcludesColon = false;\n        return;\n      }\n      var tok = jsMode.token(stream, state.jsState);\n      if (stream.eol()) state.javaScriptLine = false;\n      return tok || true;\n    }\n  }\n  function javaScriptArguments(stream, state) {\n    if (state.javaScriptArguments) {\n      if (state.javaScriptArgumentsDepth === 0 && stream.peek() !== '(') {\n        state.javaScriptArguments = false;\n        return;\n      }\n      if (stream.peek() === '(') {\n        state.javaScriptArgumentsDepth++;\n      } else if (stream.peek() === ')') {\n        state.javaScriptArgumentsDepth--;\n      }\n      if (state.javaScriptArgumentsDepth === 0) {\n        state.javaScriptArguments = false;\n        return;\n      }\n\n      var tok = jsMode.token(stream, state.jsState);\n      return tok || true;\n    }\n  }\n\n  function yieldStatement(stream) {\n    if (stream.match(/^yield\\b/)) {\n        return 'keyword';\n    }\n  }\n\n  function doctype(stream) {\n    if (stream.match(/^(?:doctype) *([^\\n]+)?/)) {\n        return DOCTYPE;\n    }\n  }\n\n  function interpolation(stream, state) {\n    if (stream.match('#{')) {\n      state.isInterpolating = true;\n      state.interpolationNesting = 0;\n      return 'punctuation';\n    }\n  }\n\n  function interpolationContinued(stream, state) {\n    if (state.isInterpolating) {\n      if (stream.peek() === '}') {\n        state.interpolationNesting--;\n        if (state.interpolationNesting < 0) {\n          stream.next();\n          state.isInterpolating = false;\n          return 'puncutation';\n        }\n      } else if (stream.peek() === '{') {\n        state.interpolationNesting++;\n      }\n      return jsMode.token(stream, state.jsState) || true;\n    }\n  }\n\n  function caseStatement(stream, state) {\n    if (stream.match(/^case\\b/)) {\n      state.javaScriptLine = true;\n      return KEYWORD;\n    }\n  }\n\n  function when(stream, state) {\n    if (stream.match(/^when\\b/)) {\n      state.javaScriptLine = true;\n      state.javaScriptLineExcludesColon = true;\n      return KEYWORD;\n    }\n  }\n\n  function defaultStatement(stream) {\n    if (stream.match(/^default\\b/)) {\n      return KEYWORD;\n    }\n  }\n\n  function extendsStatement(stream, state) {\n    if (stream.match(/^extends?\\b/)) {\n      state.restOfLine = 'string';\n      return KEYWORD;\n    }\n  }\n\n  function append(stream, state) {\n    if (stream.match(/^append\\b/)) {\n      state.restOfLine = 'variable';\n      return KEYWORD;\n    }\n  }\n  function prepend(stream, state) {\n    if (stream.match(/^prepend\\b/)) {\n      state.restOfLine = 'variable';\n      return KEYWORD;\n    }\n  }\n  function block(stream, state) {\n    if (stream.match(/^block\\b *(?:(prepend|append)\\b)?/)) {\n      state.restOfLine = 'variable';\n      return KEYWORD;\n    }\n  }\n\n  function include(stream, state) {\n    if (stream.match(/^include\\b/)) {\n      state.restOfLine = 'string';\n      return KEYWORD;\n    }\n  }\n\n  function includeFiltered(stream, state) {\n    if (stream.match(/^include:([a-zA-Z0-9\\-]+)/, false) && stream.match('include')) {\n      state.isIncludeFiltered = true;\n      return KEYWORD;\n    }\n  }\n\n  function includeFilteredContinued(stream, state) {\n    if (state.isIncludeFiltered) {\n      var tok = filter(stream, state);\n      state.isIncludeFiltered = false;\n      state.restOfLine = 'string';\n      return tok;\n    }\n  }\n\n  function mixin(stream, state) {\n    if (stream.match(/^mixin\\b/)) {\n      state.javaScriptLine = true;\n      return KEYWORD;\n    }\n  }\n\n  function call(stream, state) {\n    if (stream.match(/^\\+([-\\w]+)/)) {\n      if (!stream.match(/^\\( *[-\\w]+ *=/, false)) {\n        state.javaScriptArguments = true;\n        state.javaScriptArgumentsDepth = 0;\n      }\n      return 'variable';\n    }\n    if (stream.match(/^\\+#{/, false)) {\n      stream.next();\n      state.mixinCallAfter = true;\n      return interpolation(stream, state);\n    }\n  }\n  function callArguments(stream, state) {\n    if (state.mixinCallAfter) {\n      state.mixinCallAfter = false;\n      if (!stream.match(/^\\( *[-\\w]+ *=/, false)) {\n        state.javaScriptArguments = true;\n        state.javaScriptArgumentsDepth = 0;\n      }\n      return true;\n    }\n  }\n\n  function conditional(stream, state) {\n    if (stream.match(/^(if|unless|else if|else)\\b/)) {\n      state.javaScriptLine = true;\n      return KEYWORD;\n    }\n  }\n\n  function each(stream, state) {\n    if (stream.match(/^(- *)?(each|for)\\b/)) {\n      state.isEach = true;\n      return KEYWORD;\n    }\n  }\n  function eachContinued(stream, state) {\n    if (state.isEach) {\n      if (stream.match(/^ in\\b/)) {\n        state.javaScriptLine = true;\n        state.isEach = false;\n        return KEYWORD;\n      } else if (stream.sol() || stream.eol()) {\n        state.isEach = false;\n      } else if (stream.next()) {\n        while (!stream.match(/^ in\\b/, false) && stream.next());\n        return 'variable';\n      }\n    }\n  }\n\n  function whileStatement(stream, state) {\n    if (stream.match(/^while\\b/)) {\n      state.javaScriptLine = true;\n      return KEYWORD;\n    }\n  }\n\n  function tag(stream, state) {\n    var captures;\n    if (captures = stream.match(/^(\\w(?:[-:\\w]*\\w)?)\\/?/)) {\n      state.lastTag = captures[1].toLowerCase();\n      if (state.lastTag === 'script') {\n        state.scriptType = 'application/javascript';\n      }\n      return 'tag';\n    }\n  }\n\n  function filter(stream, state) {\n    if (stream.match(/^:([\\w\\-]+)/)) {\n      var innerMode;\n      if (config && config.innerModes) {\n        innerMode = config.innerModes(stream.current().substring(1));\n      }\n      if (!innerMode) {\n        innerMode = stream.current().substring(1);\n      }\n      if (typeof innerMode === 'string') {\n        innerMode = CodeMirror.getMode(config, innerMode);\n      }\n      setInnerMode(stream, state, innerMode);\n      return 'atom';\n    }\n  }\n\n  function code(stream, state) {\n    if (stream.match(/^(!?=|-)/)) {\n      state.javaScriptLine = true;\n      return 'punctuation';\n    }\n  }\n\n  function id(stream) {\n    if (stream.match(/^#([\\w-]+)/)) {\n      return ID;\n    }\n  }\n\n  function className(stream) {\n    if (stream.match(/^\\.([\\w-]+)/)) {\n      return CLASS;\n    }\n  }\n\n  function attrs(stream, state) {\n    if (stream.peek() == '(') {\n      stream.next();\n      state.isAttrs = true;\n      state.attrsNest = [];\n      state.inAttributeName = true;\n      state.attrValue = '';\n      state.attributeIsType = false;\n      return 'punctuation';\n    }\n  }\n\n  function attrsContinued(stream, state) {\n    if (state.isAttrs) {\n      if (ATTRS_NEST[stream.peek()]) {\n        state.attrsNest.push(ATTRS_NEST[stream.peek()]);\n      }\n      if (state.attrsNest[state.attrsNest.length - 1] === stream.peek()) {\n        state.attrsNest.pop();\n      } else  if (stream.eat(')')) {\n        state.isAttrs = false;\n        return 'punctuation';\n      }\n      if (state.inAttributeName && stream.match(/^[^=,\\)!]+/)) {\n        if (stream.peek() === '=' || stream.peek() === '!') {\n          state.inAttributeName = false;\n          state.jsState = jsMode.startState();\n          if (state.lastTag === 'script' && stream.current().trim().toLowerCase() === 'type') {\n            state.attributeIsType = true;\n          } else {\n            state.attributeIsType = false;\n          }\n        }\n        return 'attribute';\n      }\n\n      var tok = jsMode.token(stream, state.jsState);\n      if (state.attributeIsType && tok === 'string') {\n        state.scriptType = stream.current().toString();\n      }\n      if (state.attrsNest.length === 0 && (tok === 'string' || tok === 'variable' || tok === 'keyword')) {\n        try {\n          Function('', 'var x ' + state.attrValue.replace(/,\\s*$/, '').replace(/^!/, ''));\n          state.inAttributeName = true;\n          state.attrValue = '';\n          stream.backUp(stream.current().length);\n          return attrsContinued(stream, state);\n        } catch (ex) {\n          //not the end of an attribute\n        }\n      }\n      state.attrValue += stream.current();\n      return tok || true;\n    }\n  }\n\n  function attributesBlock(stream, state) {\n    if (stream.match(/^&attributes\\b/)) {\n      state.javaScriptArguments = true;\n      state.javaScriptArgumentsDepth = 0;\n      return 'keyword';\n    }\n  }\n\n  function indent(stream) {\n    if (stream.sol() && stream.eatSpace()) {\n      return 'indent';\n    }\n  }\n\n  function comment(stream, state) {\n    if (stream.match(/^ *\\/\\/(-)?([^\\n]*)/)) {\n      state.indentOf = stream.indentation();\n      state.indentToken = 'comment';\n      return 'comment';\n    }\n  }\n\n  function colon(stream) {\n    if (stream.match(/^: */)) {\n      return 'colon';\n    }\n  }\n\n  function text(stream, state) {\n    if (stream.match(/^(?:\\| ?| )([^\\n]+)/)) {\n      return 'string';\n    }\n    if (stream.match(/^(<[^\\n]*)/, false)) {\n      // html string\n      setInnerMode(stream, state, 'htmlmixed');\n      state.innerModeForLine = true;\n      return innerMode(stream, state, true);\n    }\n  }\n\n  function dot(stream, state) {\n    if (stream.eat('.')) {\n      var innerMode = null;\n      if (state.lastTag === 'script' && state.scriptType.toLowerCase().indexOf('javascript') != -1) {\n        innerMode = state.scriptType.toLowerCase().replace(/\"|'/g, '');\n      } else if (state.lastTag === 'style') {\n        innerMode = 'css';\n      }\n      setInnerMode(stream, state, innerMode);\n      return 'dot';\n    }\n  }\n\n  function fail(stream) {\n    stream.next();\n    return null;\n  }\n\n\n  function setInnerMode(stream, state, mode) {\n    mode = CodeMirror.mimeModes[mode] || mode;\n    mode = config.innerModes ? config.innerModes(mode) || mode : mode;\n    mode = CodeMirror.mimeModes[mode] || mode;\n    mode = CodeMirror.getMode(config, mode);\n    state.indentOf = stream.indentation();\n\n    if (mode && mode.name !== 'null') {\n      state.innerMode = mode;\n    } else {\n      state.indentToken = 'string';\n    }\n  }\n  function innerMode(stream, state, force) {\n    if (stream.indentation() > state.indentOf || (state.innerModeForLine && !stream.sol()) || force) {\n      if (state.innerMode) {\n        if (!state.innerState) {\n          state.innerState = state.innerMode.startState ? state.innerMode.startState(stream.indentation()) : {};\n        }\n        return stream.hideFirstChars(state.indentOf + 2, function () {\n          return state.innerMode.token(stream, state.innerState) || true;\n        });\n      } else {\n        stream.skipToEnd();\n        return state.indentToken;\n      }\n    } else if (stream.sol()) {\n      state.indentOf = Infinity;\n      state.indentToken = null;\n      state.innerMode = null;\n      state.innerState = null;\n    }\n  }\n  function restOfLine(stream, state) {\n    if (stream.sol()) {\n      // if restOfLine was set at end of line, ignore it\n      state.restOfLine = '';\n    }\n    if (state.restOfLine) {\n      stream.skipToEnd();\n      var tok = state.restOfLine;\n      state.restOfLine = '';\n      return tok;\n    }\n  }\n\n\n  function startState() {\n    return new State();\n  }\n  function copyState(state) {\n    return state.copy();\n  }\n  /**\n   * Get the next token in the stream\n   *\n   * @param {Stream} stream\n   * @param {State} state\n   */\n  function nextToken(stream, state) {\n    var tok = innerMode(stream, state)\n      || restOfLine(stream, state)\n      || interpolationContinued(stream, state)\n      || includeFilteredContinued(stream, state)\n      || eachContinued(stream, state)\n      || attrsContinued(stream, state)\n      || javaScript(stream, state)\n      || javaScriptArguments(stream, state)\n      || callArguments(stream, state)\n\n      || yieldStatement(stream, state)\n      || doctype(stream, state)\n      || interpolation(stream, state)\n      || caseStatement(stream, state)\n      || when(stream, state)\n      || defaultStatement(stream, state)\n      || extendsStatement(stream, state)\n      || append(stream, state)\n      || prepend(stream, state)\n      || block(stream, state)\n      || include(stream, state)\n      || includeFiltered(stream, state)\n      || mixin(stream, state)\n      || call(stream, state)\n      || conditional(stream, state)\n      || each(stream, state)\n      || whileStatement(stream, state)\n      || tag(stream, state)\n      || filter(stream, state)\n      || code(stream, state)\n      || id(stream, state)\n      || className(stream, state)\n      || attrs(stream, state)\n      || attributesBlock(stream, state)\n      || indent(stream, state)\n      || text(stream, state)\n      || comment(stream, state)\n      || colon(stream, state)\n      || dot(stream, state)\n      || fail(stream, state);\n\n    return tok === true ? null : tok;\n  }\n  return {\n    startState: startState,\n    copyState: copyState,\n    token: nextToken\n  };\n});\n\nCodeMirror.defineMIME('text/x-jade', 'jade');\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/javascript/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: JavaScript mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"../../addon/comment/continuecomment.js\"></script>\n<script src=\"../../addon/comment/comment.js\"></script>\n<script src=\"javascript.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">JavaScript</a>\n  </ul>\n</div>\n\n<article>\n<h2>JavaScript mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n// Demo code (the actual new parser character stream implementation)\n\nfunction StringStream(string) {\n  this.pos = 0;\n  this.string = string;\n}\n\nStringStream.prototype = {\n  done: function() {return this.pos >= this.string.length;},\n  peek: function() {return this.string.charAt(this.pos);},\n  next: function() {\n    if (this.pos &lt; this.string.length)\n      return this.string.charAt(this.pos++);\n  },\n  eat: function(match) {\n    var ch = this.string.charAt(this.pos);\n    if (typeof match == \"string\") var ok = ch == match;\n    else var ok = ch &amp;&amp; match.test ? match.test(ch) : match(ch);\n    if (ok) {this.pos++; return ch;}\n  },\n  eatWhile: function(match) {\n    var start = this.pos;\n    while (this.eat(match));\n    if (this.pos > start) return this.string.slice(start, this.pos);\n  },\n  backUp: function(n) {this.pos -= n;},\n  column: function() {return this.pos;},\n  eatSpace: function() {\n    var start = this.pos;\n    while (/\\s/.test(this.string.charAt(this.pos))) this.pos++;\n    return this.pos - start;\n  },\n  match: function(pattern, consume, caseInsensitive) {\n    if (typeof pattern == \"string\") {\n      function cased(str) {return caseInsensitive ? str.toLowerCase() : str;}\n      if (cased(this.string).indexOf(cased(pattern), this.pos) == this.pos) {\n        if (consume !== false) this.pos += str.length;\n        return true;\n      }\n    }\n    else {\n      var match = this.string.slice(this.pos).match(pattern);\n      if (match &amp;&amp; consume !== false) this.pos += match[0].length;\n      return match;\n    }\n  }\n};\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        continueComments: \"Enter\",\n        extraKeys: {\"Ctrl-Q\": \"toggleComment\"}\n      });\n    </script>\n\n    <p>\n      JavaScript mode supports several configuration options:\n      <ul>\n        <li><code>json</code> which will set the mode to expect JSON\n        data rather than a JavaScript program.</li>\n        <li><code>jsonld</code> which will set the mode to expect\n        <a href=\"http://json-ld.org\">JSON-LD</a> linked data rather\n        than a JavaScript program (<a href=\"json-ld.html\">demo</a>).</li>\n        <li><code>typescript</code> which will activate additional\n        syntax highlighting and some other things for TypeScript code\n        (<a href=\"typescript.html\">demo</a>).</li>\n        <li><code>statementIndent</code> which (given a number) will\n        determine the amount of indentation to use for statements\n        continued on a new line.</li>\n        <li><code>wordCharacters</code>, a regexp that indicates which\n        characters should be considered part of an identifier.\n        Defaults to <code>/[\\w$]/</code>, which does not handle\n        non-ASCII identifiers. Can be set to something more elaborate\n        to improve Unicode support.</li>\n      </ul>\n    </p>\n\n    <p><strong>MIME types defined:</strong> <code>text/javascript</code>, <code>application/json</code>, <code>application/ld+json</code>, <code>text/typescript</code>, <code>application/typescript</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/javascript/javascript.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// TODO actually recognize syntax of TypeScript constructs\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"javascript\", function(config, parserConfig) {\n  var indentUnit = config.indentUnit;\n  var statementIndent = parserConfig.statementIndent;\n  var jsonldMode = parserConfig.jsonld;\n  var jsonMode = parserConfig.json || jsonldMode;\n  var isTS = parserConfig.typescript;\n  var wordRE = parserConfig.wordCharacters || /[\\w$\\xa1-\\uffff]/;\n\n  // Tokenizer\n\n  var keywords = function(){\n    function kw(type) {return {type: type, style: \"keyword\"};}\n    var A = kw(\"keyword a\"), B = kw(\"keyword b\"), C = kw(\"keyword c\");\n    var operator = kw(\"operator\"), atom = {type: \"atom\", style: \"atom\"};\n\n    var jsKeywords = {\n      \"if\": kw(\"if\"), \"while\": A, \"with\": A, \"else\": B, \"do\": B, \"try\": B, \"finally\": B,\n      \"return\": C, \"break\": C, \"continue\": C, \"new\": C, \"delete\": C, \"throw\": C, \"debugger\": C,\n      \"var\": kw(\"var\"), \"const\": kw(\"var\"), \"let\": kw(\"var\"),\n      \"function\": kw(\"function\"), \"catch\": kw(\"catch\"),\n      \"for\": kw(\"for\"), \"switch\": kw(\"switch\"), \"case\": kw(\"case\"), \"default\": kw(\"default\"),\n      \"in\": operator, \"typeof\": operator, \"instanceof\": operator,\n      \"true\": atom, \"false\": atom, \"null\": atom, \"undefined\": atom, \"NaN\": atom, \"Infinity\": atom,\n      \"this\": kw(\"this\"), \"module\": kw(\"module\"), \"class\": kw(\"class\"), \"super\": kw(\"atom\"),\n      \"yield\": C, \"export\": kw(\"export\"), \"import\": kw(\"import\"), \"extends\": C\n    };\n\n    // Extend the 'normal' keywords with the TypeScript language extensions\n    if (isTS) {\n      var type = {type: \"variable\", style: \"variable-3\"};\n      var tsKeywords = {\n        // object-like things\n        \"interface\": kw(\"interface\"),\n        \"extends\": kw(\"extends\"),\n        \"constructor\": kw(\"constructor\"),\n\n        // scope modifiers\n        \"public\": kw(\"public\"),\n        \"private\": kw(\"private\"),\n        \"protected\": kw(\"protected\"),\n        \"static\": kw(\"static\"),\n\n        // types\n        \"string\": type, \"number\": type, \"bool\": type, \"any\": type\n      };\n\n      for (var attr in tsKeywords) {\n        jsKeywords[attr] = tsKeywords[attr];\n      }\n    }\n\n    return jsKeywords;\n  }();\n\n  var isOperatorChar = /[+\\-*&%=<>!?|~^]/;\n  var isJsonldKeyword = /^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)\"/;\n\n  function readRegexp(stream) {\n    var escaped = false, next, inSet = false;\n    while ((next = stream.next()) != null) {\n      if (!escaped) {\n        if (next == \"/\" && !inSet) return;\n        if (next == \"[\") inSet = true;\n        else if (inSet && next == \"]\") inSet = false;\n      }\n      escaped = !escaped && next == \"\\\\\";\n    }\n  }\n\n  // Used as scratch variables to communicate multiple values without\n  // consing up tons of objects.\n  var type, content;\n  function ret(tp, style, cont) {\n    type = tp; content = cont;\n    return style;\n  }\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (ch == '\"' || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    } else if (ch == \".\" && stream.match(/^\\d+(?:[eE][+\\-]?\\d+)?/)) {\n      return ret(\"number\", \"number\");\n    } else if (ch == \".\" && stream.match(\"..\")) {\n      return ret(\"spread\", \"meta\");\n    } else if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      return ret(ch);\n    } else if (ch == \"=\" && stream.eat(\">\")) {\n      return ret(\"=>\", \"operator\");\n    } else if (ch == \"0\" && stream.eat(/x/i)) {\n      stream.eatWhile(/[\\da-f]/i);\n      return ret(\"number\", \"number\");\n    } else if (/\\d/.test(ch)) {\n      stream.match(/^\\d*(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/);\n      return ret(\"number\", \"number\");\n    } else if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        state.tokenize = tokenComment;\n        return tokenComment(stream, state);\n      } else if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return ret(\"comment\", \"comment\");\n      } else if (state.lastType == \"operator\" || state.lastType == \"keyword c\" ||\n               state.lastType == \"sof\" || /^[\\[{}\\(,;:]$/.test(state.lastType)) {\n        readRegexp(stream);\n        stream.eatWhile(/[gimy]/); // 'y' is \"sticky\" option in Mozilla\n        return ret(\"regexp\", \"string-2\");\n      } else {\n        stream.eatWhile(isOperatorChar);\n        return ret(\"operator\", \"operator\", stream.current());\n      }\n    } else if (ch == \"`\") {\n      state.tokenize = tokenQuasi;\n      return tokenQuasi(stream, state);\n    } else if (ch == \"#\") {\n      stream.skipToEnd();\n      return ret(\"error\", \"error\");\n    } else if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return ret(\"operator\", \"operator\", stream.current());\n    } else if (wordRE.test(ch)) {\n      stream.eatWhile(wordRE);\n      var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word];\n      return (known && state.lastType != \".\") ? ret(known.type, known.style, word) :\n                     ret(\"variable\", \"variable\", word);\n    }\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next;\n      if (jsonldMode && stream.peek() == \"@\" && stream.match(isJsonldKeyword)){\n        state.tokenize = tokenBase;\n        return ret(\"jsonld-keyword\", \"meta\");\n      }\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) break;\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (!escaped) state.tokenize = tokenBase;\n      return ret(\"string\", \"string\");\n    };\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return ret(\"comment\", \"comment\");\n  }\n\n  function tokenQuasi(stream, state) {\n    var escaped = false, next;\n    while ((next = stream.next()) != null) {\n      if (!escaped && (next == \"`\" || next == \"$\" && stream.eat(\"{\"))) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      escaped = !escaped && next == \"\\\\\";\n    }\n    return ret(\"quasi\", \"string-2\", stream.current());\n  }\n\n  var brackets = \"([{}])\";\n  // This is a crude lookahead trick to try and notice that we're\n  // parsing the argument patterns for a fat-arrow function before we\n  // actually hit the arrow token. It only works if the arrow is on\n  // the same line as the arguments and there's no strange noise\n  // (comments) in between. Fallback is to only notice when we hit the\n  // arrow, and not declare the arguments as locals for the arrow\n  // body.\n  function findFatArrow(stream, state) {\n    if (state.fatArrowAt) state.fatArrowAt = null;\n    var arrow = stream.string.indexOf(\"=>\", stream.start);\n    if (arrow < 0) return;\n\n    var depth = 0, sawSomething = false;\n    for (var pos = arrow - 1; pos >= 0; --pos) {\n      var ch = stream.string.charAt(pos);\n      var bracket = brackets.indexOf(ch);\n      if (bracket >= 0 && bracket < 3) {\n        if (!depth) { ++pos; break; }\n        if (--depth == 0) break;\n      } else if (bracket >= 3 && bracket < 6) {\n        ++depth;\n      } else if (wordRE.test(ch)) {\n        sawSomething = true;\n      } else if (sawSomething && !depth) {\n        ++pos;\n        break;\n      }\n    }\n    if (sawSomething && !depth) state.fatArrowAt = pos;\n  }\n\n  // Parser\n\n  var atomicTypes = {\"atom\": true, \"number\": true, \"variable\": true, \"string\": true, \"regexp\": true, \"this\": true, \"jsonld-keyword\": true};\n\n  function JSLexical(indented, column, type, align, prev, info) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.prev = prev;\n    this.info = info;\n    if (align != null) this.align = align;\n  }\n\n  function inScope(state, varname) {\n    for (var v = state.localVars; v; v = v.next)\n      if (v.name == varname) return true;\n    for (var cx = state.context; cx; cx = cx.prev) {\n      for (var v = cx.vars; v; v = v.next)\n        if (v.name == varname) return true;\n    }\n  }\n\n  function parseJS(state, style, type, content, stream) {\n    var cc = state.cc;\n    // Communicate our context to the combinators.\n    // (Less wasteful than consing up a hundred closures on every call.)\n    cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc; cx.style = style;\n\n    if (!state.lexical.hasOwnProperty(\"align\"))\n      state.lexical.align = true;\n\n    while(true) {\n      var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;\n      if (combinator(type, content)) {\n        while(cc.length && cc[cc.length - 1].lex)\n          cc.pop()();\n        if (cx.marked) return cx.marked;\n        if (type == \"variable\" && inScope(state, content)) return \"variable-2\";\n        return style;\n      }\n    }\n  }\n\n  // Combinator utils\n\n  var cx = {state: null, column: null, marked: null, cc: null};\n  function pass() {\n    for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);\n  }\n  function cont() {\n    pass.apply(null, arguments);\n    return true;\n  }\n  function register(varname) {\n    function inList(list) {\n      for (var v = list; v; v = v.next)\n        if (v.name == varname) return true;\n      return false;\n    }\n    var state = cx.state;\n    if (state.context) {\n      cx.marked = \"def\";\n      if (inList(state.localVars)) return;\n      state.localVars = {name: varname, next: state.localVars};\n    } else {\n      if (inList(state.globalVars)) return;\n      if (parserConfig.globalVars)\n        state.globalVars = {name: varname, next: state.globalVars};\n    }\n  }\n\n  // Combinators\n\n  var defaultVars = {name: \"this\", next: {name: \"arguments\"}};\n  function pushcontext() {\n    cx.state.context = {prev: cx.state.context, vars: cx.state.localVars};\n    cx.state.localVars = defaultVars;\n  }\n  function popcontext() {\n    cx.state.localVars = cx.state.context.vars;\n    cx.state.context = cx.state.context.prev;\n  }\n  function pushlex(type, info) {\n    var result = function() {\n      var state = cx.state, indent = state.indented;\n      if (state.lexical.type == \"stat\") indent = state.lexical.indented;\n      else for (var outer = state.lexical; outer && outer.type == \")\" && outer.align; outer = outer.prev)\n        indent = outer.indented;\n      state.lexical = new JSLexical(indent, cx.stream.column(), type, null, state.lexical, info);\n    };\n    result.lex = true;\n    return result;\n  }\n  function poplex() {\n    var state = cx.state;\n    if (state.lexical.prev) {\n      if (state.lexical.type == \")\")\n        state.indented = state.lexical.indented;\n      state.lexical = state.lexical.prev;\n    }\n  }\n  poplex.lex = true;\n\n  function expect(wanted) {\n    function exp(type) {\n      if (type == wanted) return cont();\n      else if (wanted == \";\") return pass();\n      else return cont(exp);\n    };\n    return exp;\n  }\n\n  function statement(type, value) {\n    if (type == \"var\") return cont(pushlex(\"vardef\", value.length), vardef, expect(\";\"), poplex);\n    if (type == \"keyword a\") return cont(pushlex(\"form\"), expression, statement, poplex);\n    if (type == \"keyword b\") return cont(pushlex(\"form\"), statement, poplex);\n    if (type == \"{\") return cont(pushlex(\"}\"), block, poplex);\n    if (type == \";\") return cont();\n    if (type == \"if\") {\n      if (cx.state.lexical.info == \"else\" && cx.state.cc[cx.state.cc.length - 1] == poplex)\n        cx.state.cc.pop()();\n      return cont(pushlex(\"form\"), expression, statement, poplex, maybeelse);\n    }\n    if (type == \"function\") return cont(functiondef);\n    if (type == \"for\") return cont(pushlex(\"form\"), forspec, statement, poplex);\n    if (type == \"variable\") return cont(pushlex(\"stat\"), maybelabel);\n    if (type == \"switch\") return cont(pushlex(\"form\"), expression, pushlex(\"}\", \"switch\"), expect(\"{\"),\n                                      block, poplex, poplex);\n    if (type == \"case\") return cont(expression, expect(\":\"));\n    if (type == \"default\") return cont(expect(\":\"));\n    if (type == \"catch\") return cont(pushlex(\"form\"), pushcontext, expect(\"(\"), funarg, expect(\")\"),\n                                     statement, poplex, popcontext);\n    if (type == \"module\") return cont(pushlex(\"form\"), pushcontext, afterModule, popcontext, poplex);\n    if (type == \"class\") return cont(pushlex(\"form\"), className, poplex);\n    if (type == \"export\") return cont(pushlex(\"form\"), afterExport, poplex);\n    if (type == \"import\") return cont(pushlex(\"form\"), afterImport, poplex);\n    return pass(pushlex(\"stat\"), expression, expect(\";\"), poplex);\n  }\n  function expression(type) {\n    return expressionInner(type, false);\n  }\n  function expressionNoComma(type) {\n    return expressionInner(type, true);\n  }\n  function expressionInner(type, noComma) {\n    if (cx.state.fatArrowAt == cx.stream.start) {\n      var body = noComma ? arrowBodyNoComma : arrowBody;\n      if (type == \"(\") return cont(pushcontext, pushlex(\")\"), commasep(pattern, \")\"), poplex, expect(\"=>\"), body, popcontext);\n      else if (type == \"variable\") return pass(pushcontext, pattern, expect(\"=>\"), body, popcontext);\n    }\n\n    var maybeop = noComma ? maybeoperatorNoComma : maybeoperatorComma;\n    if (atomicTypes.hasOwnProperty(type)) return cont(maybeop);\n    if (type == \"function\") return cont(functiondef, maybeop);\n    if (type == \"keyword c\") return cont(noComma ? maybeexpressionNoComma : maybeexpression);\n    if (type == \"(\") return cont(pushlex(\")\"), maybeexpression, comprehension, expect(\")\"), poplex, maybeop);\n    if (type == \"operator\" || type == \"spread\") return cont(noComma ? expressionNoComma : expression);\n    if (type == \"[\") return cont(pushlex(\"]\"), arrayLiteral, poplex, maybeop);\n    if (type == \"{\") return contCommasep(objprop, \"}\", null, maybeop);\n    if (type == \"quasi\") { return pass(quasi, maybeop); }\n    return cont();\n  }\n  function maybeexpression(type) {\n    if (type.match(/[;\\}\\)\\],]/)) return pass();\n    return pass(expression);\n  }\n  function maybeexpressionNoComma(type) {\n    if (type.match(/[;\\}\\)\\],]/)) return pass();\n    return pass(expressionNoComma);\n  }\n\n  function maybeoperatorComma(type, value) {\n    if (type == \",\") return cont(expression);\n    return maybeoperatorNoComma(type, value, false);\n  }\n  function maybeoperatorNoComma(type, value, noComma) {\n    var me = noComma == false ? maybeoperatorComma : maybeoperatorNoComma;\n    var expr = noComma == false ? expression : expressionNoComma;\n    if (type == \"=>\") return cont(pushcontext, noComma ? arrowBodyNoComma : arrowBody, popcontext);\n    if (type == \"operator\") {\n      if (/\\+\\+|--/.test(value)) return cont(me);\n      if (value == \"?\") return cont(expression, expect(\":\"), expr);\n      return cont(expr);\n    }\n    if (type == \"quasi\") { return pass(quasi, me); }\n    if (type == \";\") return;\n    if (type == \"(\") return contCommasep(expressionNoComma, \")\", \"call\", me);\n    if (type == \".\") return cont(property, me);\n    if (type == \"[\") return cont(pushlex(\"]\"), maybeexpression, expect(\"]\"), poplex, me);\n  }\n  function quasi(type, value) {\n    if (type != \"quasi\") return pass();\n    if (value.slice(value.length - 2) != \"${\") return cont(quasi);\n    return cont(expression, continueQuasi);\n  }\n  function continueQuasi(type) {\n    if (type == \"}\") {\n      cx.marked = \"string-2\";\n      cx.state.tokenize = tokenQuasi;\n      return cont(quasi);\n    }\n  }\n  function arrowBody(type) {\n    findFatArrow(cx.stream, cx.state);\n    return pass(type == \"{\" ? statement : expression);\n  }\n  function arrowBodyNoComma(type) {\n    findFatArrow(cx.stream, cx.state);\n    return pass(type == \"{\" ? statement : expressionNoComma);\n  }\n  function maybelabel(type) {\n    if (type == \":\") return cont(poplex, statement);\n    return pass(maybeoperatorComma, expect(\";\"), poplex);\n  }\n  function property(type) {\n    if (type == \"variable\") {cx.marked = \"property\"; return cont();}\n  }\n  function objprop(type, value) {\n    if (type == \"variable\" || cx.style == \"keyword\") {\n      cx.marked = \"property\";\n      if (value == \"get\" || value == \"set\") return cont(getterSetter);\n      return cont(afterprop);\n    } else if (type == \"number\" || type == \"string\") {\n      cx.marked = jsonldMode ? \"property\" : (cx.style + \" property\");\n      return cont(afterprop);\n    } else if (type == \"jsonld-keyword\") {\n      return cont(afterprop);\n    } else if (type == \"[\") {\n      return cont(expression, expect(\"]\"), afterprop);\n    }\n  }\n  function getterSetter(type) {\n    if (type != \"variable\") return pass(afterprop);\n    cx.marked = \"property\";\n    return cont(functiondef);\n  }\n  function afterprop(type) {\n    if (type == \":\") return cont(expressionNoComma);\n    if (type == \"(\") return pass(functiondef);\n  }\n  function commasep(what, end) {\n    function proceed(type) {\n      if (type == \",\") {\n        var lex = cx.state.lexical;\n        if (lex.info == \"call\") lex.pos = (lex.pos || 0) + 1;\n        return cont(what, proceed);\n      }\n      if (type == end) return cont();\n      return cont(expect(end));\n    }\n    return function(type) {\n      if (type == end) return cont();\n      return pass(what, proceed);\n    };\n  }\n  function contCommasep(what, end, info) {\n    for (var i = 3; i < arguments.length; i++)\n      cx.cc.push(arguments[i]);\n    return cont(pushlex(end, info), commasep(what, end), poplex);\n  }\n  function block(type) {\n    if (type == \"}\") return cont();\n    return pass(statement, block);\n  }\n  function maybetype(type) {\n    if (isTS && type == \":\") return cont(typedef);\n  }\n  function typedef(type) {\n    if (type == \"variable\"){cx.marked = \"variable-3\"; return cont();}\n  }\n  function vardef() {\n    return pass(pattern, maybetype, maybeAssign, vardefCont);\n  }\n  function pattern(type, value) {\n    if (type == \"variable\") { register(value); return cont(); }\n    if (type == \"[\") return contCommasep(pattern, \"]\");\n    if (type == \"{\") return contCommasep(proppattern, \"}\");\n  }\n  function proppattern(type, value) {\n    if (type == \"variable\" && !cx.stream.match(/^\\s*:/, false)) {\n      register(value);\n      return cont(maybeAssign);\n    }\n    if (type == \"variable\") cx.marked = \"property\";\n    return cont(expect(\":\"), pattern, maybeAssign);\n  }\n  function maybeAssign(_type, value) {\n    if (value == \"=\") return cont(expressionNoComma);\n  }\n  function vardefCont(type) {\n    if (type == \",\") return cont(vardef);\n  }\n  function maybeelse(type, value) {\n    if (type == \"keyword b\" && value == \"else\") return cont(pushlex(\"form\", \"else\"), statement, poplex);\n  }\n  function forspec(type) {\n    if (type == \"(\") return cont(pushlex(\")\"), forspec1, expect(\")\"), poplex);\n  }\n  function forspec1(type) {\n    if (type == \"var\") return cont(vardef, expect(\";\"), forspec2);\n    if (type == \";\") return cont(forspec2);\n    if (type == \"variable\") return cont(formaybeinof);\n    return pass(expression, expect(\";\"), forspec2);\n  }\n  function formaybeinof(_type, value) {\n    if (value == \"in\" || value == \"of\") { cx.marked = \"keyword\"; return cont(expression); }\n    return cont(maybeoperatorComma, forspec2);\n  }\n  function forspec2(type, value) {\n    if (type == \";\") return cont(forspec3);\n    if (value == \"in\" || value == \"of\") { cx.marked = \"keyword\"; return cont(expression); }\n    return pass(expression, expect(\";\"), forspec3);\n  }\n  function forspec3(type) {\n    if (type != \")\") cont(expression);\n  }\n  function functiondef(type, value) {\n    if (value == \"*\") {cx.marked = \"keyword\"; return cont(functiondef);}\n    if (type == \"variable\") {register(value); return cont(functiondef);}\n    if (type == \"(\") return cont(pushcontext, pushlex(\")\"), commasep(funarg, \")\"), poplex, statement, popcontext);\n  }\n  function funarg(type) {\n    if (type == \"spread\") return cont(funarg);\n    return pass(pattern, maybetype);\n  }\n  function className(type, value) {\n    if (type == \"variable\") {register(value); return cont(classNameAfter);}\n  }\n  function classNameAfter(type, value) {\n    if (value == \"extends\") return cont(expression, classNameAfter);\n    if (type == \"{\") return cont(pushlex(\"}\"), classBody, poplex);\n  }\n  function classBody(type, value) {\n    if (type == \"variable\" || cx.style == \"keyword\") {\n      cx.marked = \"property\";\n      if (value == \"get\" || value == \"set\") return cont(classGetterSetter, functiondef, classBody);\n      return cont(functiondef, classBody);\n    }\n    if (value == \"*\") {\n      cx.marked = \"keyword\";\n      return cont(classBody);\n    }\n    if (type == \";\") return cont(classBody);\n    if (type == \"}\") return cont();\n  }\n  function classGetterSetter(type) {\n    if (type != \"variable\") return pass();\n    cx.marked = \"property\";\n    return cont();\n  }\n  function afterModule(type, value) {\n    if (type == \"string\") return cont(statement);\n    if (type == \"variable\") { register(value); return cont(maybeFrom); }\n  }\n  function afterExport(_type, value) {\n    if (value == \"*\") { cx.marked = \"keyword\"; return cont(maybeFrom, expect(\";\")); }\n    if (value == \"default\") { cx.marked = \"keyword\"; return cont(expression, expect(\";\")); }\n    return pass(statement);\n  }\n  function afterImport(type) {\n    if (type == \"string\") return cont();\n    return pass(importSpec, maybeFrom);\n  }\n  function importSpec(type, value) {\n    if (type == \"{\") return contCommasep(importSpec, \"}\");\n    if (type == \"variable\") register(value);\n    return cont();\n  }\n  function maybeFrom(_type, value) {\n    if (value == \"from\") { cx.marked = \"keyword\"; return cont(expression); }\n  }\n  function arrayLiteral(type) {\n    if (type == \"]\") return cont();\n    return pass(expressionNoComma, maybeArrayComprehension);\n  }\n  function maybeArrayComprehension(type) {\n    if (type == \"for\") return pass(comprehension, expect(\"]\"));\n    if (type == \",\") return cont(commasep(maybeexpressionNoComma, \"]\"));\n    return pass(commasep(expressionNoComma, \"]\"));\n  }\n  function comprehension(type) {\n    if (type == \"for\") return cont(forspec, comprehension);\n    if (type == \"if\") return cont(expression, comprehension);\n  }\n\n  // Interface\n\n  return {\n    startState: function(basecolumn) {\n      var state = {\n        tokenize: tokenBase,\n        lastType: \"sof\",\n        cc: [],\n        lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, \"block\", false),\n        localVars: parserConfig.localVars,\n        context: parserConfig.localVars && {vars: parserConfig.localVars},\n        indented: 0\n      };\n      if (parserConfig.globalVars && typeof parserConfig.globalVars == \"object\")\n        state.globalVars = parserConfig.globalVars;\n      return state;\n    },\n\n    token: function(stream, state) {\n      if (stream.sol()) {\n        if (!state.lexical.hasOwnProperty(\"align\"))\n          state.lexical.align = false;\n        state.indented = stream.indentation();\n        findFatArrow(stream, state);\n      }\n      if (state.tokenize != tokenComment && stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n      if (type == \"comment\") return style;\n      state.lastType = type == \"operator\" && (content == \"++\" || content == \"--\") ? \"incdec\" : type;\n      return parseJS(state, style, type, content, stream);\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize == tokenComment) return CodeMirror.Pass;\n      if (state.tokenize != tokenBase) return 0;\n      var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical;\n      // Kludge to prevent 'maybelse' from blocking lexical scope pops\n      if (!/^\\s*else\\b/.test(textAfter)) for (var i = state.cc.length - 1; i >= 0; --i) {\n        var c = state.cc[i];\n        if (c == poplex) lexical = lexical.prev;\n        else if (c != maybeelse) break;\n      }\n      if (lexical.type == \"stat\" && firstChar == \"}\") lexical = lexical.prev;\n      if (statementIndent && lexical.type == \")\" && lexical.prev.type == \"stat\")\n        lexical = lexical.prev;\n      var type = lexical.type, closing = firstChar == type;\n\n      if (type == \"vardef\") return lexical.indented + (state.lastType == \"operator\" || state.lastType == \",\" ? lexical.info + 1 : 0);\n      else if (type == \"form\" && firstChar == \"{\") return lexical.indented;\n      else if (type == \"form\") return lexical.indented + indentUnit;\n      else if (type == \"stat\")\n        return lexical.indented + (state.lastType == \"operator\" || state.lastType == \",\" ? statementIndent || indentUnit : 0);\n      else if (lexical.info == \"switch\" && !closing && parserConfig.doubleIndentSwitch != false)\n        return lexical.indented + (/^(?:case|default)\\b/.test(textAfter) ? indentUnit : 2 * indentUnit);\n      else if (lexical.align) return lexical.column + (closing ? 0 : 1);\n      else return lexical.indented + (closing ? 0 : indentUnit);\n    },\n\n    electricInput: /^\\s*(?:case .*?:|default:|\\{|\\})$/,\n    blockCommentStart: jsonMode ? null : \"/*\",\n    blockCommentEnd: jsonMode ? null : \"*/\",\n    lineComment: jsonMode ? null : \"//\",\n    fold: \"brace\",\n\n    helperType: jsonMode ? \"json\" : \"javascript\",\n    jsonldMode: jsonldMode,\n    jsonMode: jsonMode\n  };\n});\n\nCodeMirror.registerHelper(\"wordChars\", \"javascript\", /[\\w$]/);\n\nCodeMirror.defineMIME(\"text/javascript\", \"javascript\");\nCodeMirror.defineMIME(\"text/ecmascript\", \"javascript\");\nCodeMirror.defineMIME(\"application/javascript\", \"javascript\");\nCodeMirror.defineMIME(\"application/x-javascript\", \"javascript\");\nCodeMirror.defineMIME(\"application/ecmascript\", \"javascript\");\nCodeMirror.defineMIME(\"application/json\", {name: \"javascript\", json: true});\nCodeMirror.defineMIME(\"application/x-json\", {name: \"javascript\", json: true});\nCodeMirror.defineMIME(\"application/ld+json\", {name: \"javascript\", jsonld: true});\nCodeMirror.defineMIME(\"text/typescript\", { name: \"javascript\", typescript: true });\nCodeMirror.defineMIME(\"application/typescript\", { name: \"javascript\", typescript: true });\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/javascript/json-ld.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: JSON-LD mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"../../addon/comment/continuecomment.js\"></script>\n<script src=\"../../addon/comment/comment.js\"></script>\n<script src=\"javascript.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=\"nav\">\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"/></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">JSON-LD</a>\n  </ul>\n</div>\n\n<article>\n<h2>JSON-LD mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n{\n  \"@context\": {\n    \"name\": \"http://schema.org/name\",\n    \"description\": \"http://schema.org/description\",\n    \"image\": {\n      \"@id\": \"http://schema.org/image\",\n      \"@type\": \"@id\"\n    },\n    \"geo\": \"http://schema.org/geo\",\n    \"latitude\": {\n      \"@id\": \"http://schema.org/latitude\",\n      \"@type\": \"xsd:float\"\n    },\n    \"longitude\": {\n      \"@id\": \"http://schema.org/longitude\",\n      \"@type\": \"xsd:float\"\n    },\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\"\n  },\n  \"name\": \"The Empire State Building\",\n  \"description\": \"The Empire State Building is a 102-story landmark in New York City.\",\n  \"image\": \"http://www.civil.usherbrooke.ca/cours/gci215a/empire-state-building.jpg\",\n  \"geo\": {\n    \"latitude\": \"40.75\",\n    \"longitude\": \"73.98\"\n  }\n}\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        matchBrackets: true,\n        autoCloseBrackets: true,\n        mode: \"application/ld+json\",\n        lineWrapping: true\n      });\n    </script>\n    \n    <p>This is a specialization of the <a href=\"index.html\">JavaScript mode</a>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/javascript/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({indentUnit: 2}, \"javascript\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  MT(\"locals\",\n     \"[keyword function] [variable foo]([def a], [def b]) { [keyword var] [def c] [operator =] [number 10]; [keyword return] [variable-2 a] [operator +] [variable-2 c] [operator +] [variable d]; }\");\n\n  MT(\"comma-and-binop\",\n     \"[keyword function](){ [keyword var] [def x] [operator =] [number 1] [operator +] [number 2], [def y]; }\");\n\n  MT(\"destructuring\",\n     \"([keyword function]([def a], [[[def b], [def c] ]]) {\",\n     \"  [keyword let] {[def d], [property foo]: [def c][operator =][number 10], [def x]} [operator =] [variable foo]([variable-2 a]);\",\n     \"  [[[variable-2 c], [variable y] ]] [operator =] [variable-2 c];\",\n     \"})();\");\n\n  MT(\"class_body\",\n     \"[keyword class] [variable Foo] {\",\n     \"  [property constructor]() {}\",\n     \"  [property sayName]() {\",\n     \"    [keyword return] [string-2 `foo${][variable foo][string-2 }oo`];\",\n     \"  }\",\n     \"}\");\n\n  MT(\"class\",\n     \"[keyword class] [variable Point] [keyword extends] [variable SuperThing] {\",\n     \"  [property get] [property prop]() { [keyword return] [number 24]; }\",\n     \"  [property constructor]([def x], [def y]) {\",\n     \"    [keyword super]([string 'something']);\",\n     \"    [keyword this].[property x] [operator =] [variable-2 x];\",\n     \"  }\",\n     \"}\");\n\n  MT(\"module\",\n     \"[keyword module] [string 'foo'] {\",\n     \"  [keyword export] [keyword let] [def x] [operator =] [number 42];\",\n     \"  [keyword export] [keyword *] [keyword from] [string 'somewhere'];\",\n     \"}\");\n\n  MT(\"import\",\n     \"[keyword function] [variable foo]() {\",\n     \"  [keyword import] [def $] [keyword from] [string 'jquery'];\",\n     \"  [keyword module] [def crypto] [keyword from] [string 'crypto'];\",\n     \"  [keyword import] { [def encrypt], [def decrypt] } [keyword from] [string 'crypto'];\",\n     \"}\");\n\n  MT(\"const\",\n     \"[keyword function] [variable f]() {\",\n     \"  [keyword const] [[ [def a], [def b] ]] [operator =] [[ [number 1], [number 2] ]];\",\n     \"}\");\n\n  MT(\"for/of\",\n     \"[keyword for]([keyword let] [variable of] [keyword of] [variable something]) {}\");\n\n  MT(\"generator\",\n     \"[keyword function*] [variable repeat]([def n]) {\",\n     \"  [keyword for]([keyword var] [def i] [operator =] [number 0]; [variable-2 i] [operator <] [variable-2 n]; [operator ++][variable-2 i])\",\n     \"    [keyword yield] [variable-2 i];\",\n     \"}\");\n\n  MT(\"fatArrow\",\n     \"[variable array].[property filter]([def a] [operator =>] [variable-2 a] [operator +] [number 1]);\",\n     \"[variable a];\", // No longer in scope\n     \"[keyword let] [variable f] [operator =] ([[ [def a], [def b] ]], [def c]) [operator =>] [variable-2 a] [operator +] [variable-2 c];\",\n     \"[variable c];\");\n\n  MT(\"spread\",\n     \"[keyword function] [variable f]([def a], [meta ...][def b]) {\",\n     \"  [variable something]([variable-2 a], [meta ...][variable-2 b]);\",\n     \"}\");\n\n  MT(\"comprehension\",\n     \"[keyword function] [variable f]() {\",\n     \"  [[([variable x] [operator +] [number 1]) [keyword for] ([keyword var] [def x] [keyword in] [variable y]) [keyword if] [variable pred]([variable-2 x]) ]];\",\n     \"  ([variable u] [keyword for] ([keyword var] [def u] [keyword of] [variable generateValues]()) [keyword if] ([variable-2 u].[property color] [operator ===] [string 'blue']));\",\n     \"}\");\n\n  MT(\"quasi\",\n     \"[variable re][string-2 `fofdlakj${][variable x] [operator +] ([variable re][string-2 `foo`]) [operator +] [number 1][string-2 }fdsa`] [operator +] [number 2]\");\n\n  MT(\"quasi_no_function\",\n     \"[variable x] [operator =] [string-2 `fofdlakj${][variable x] [operator +] [string-2 `foo`] [operator +] [number 1][string-2 }fdsa`] [operator +] [number 2]\");\n\n  MT(\"indent_statement\",\n     \"[keyword var] [variable x] [operator =] [number 10]\",\n     \"[variable x] [operator +=] [variable y] [operator +]\",\n     \"  [atom Infinity]\",\n     \"[keyword debugger];\");\n\n  MT(\"indent_if\",\n     \"[keyword if] ([number 1])\",\n     \"  [keyword break];\",\n     \"[keyword else] [keyword if] ([number 2])\",\n     \"  [keyword continue];\",\n     \"[keyword else]\",\n     \"  [number 10];\",\n     \"[keyword if] ([number 1]) {\",\n     \"  [keyword break];\",\n     \"} [keyword else] [keyword if] ([number 2]) {\",\n     \"  [keyword continue];\",\n     \"} [keyword else] {\",\n     \"  [number 10];\",\n     \"}\");\n\n  MT(\"indent_for\",\n     \"[keyword for] ([keyword var] [variable i] [operator =] [number 0];\",\n     \"     [variable i] [operator <] [number 100];\",\n     \"     [variable i][operator ++])\",\n     \"  [variable doSomething]([variable i]);\",\n     \"[keyword debugger];\");\n\n  MT(\"indent_c_style\",\n     \"[keyword function] [variable foo]()\",\n     \"{\",\n     \"  [keyword debugger];\",\n     \"}\");\n\n  MT(\"indent_else\",\n     \"[keyword for] (;;)\",\n     \"  [keyword if] ([variable foo])\",\n     \"    [keyword if] ([variable bar])\",\n     \"      [number 1];\",\n     \"    [keyword else]\",\n     \"      [number 2];\",\n     \"  [keyword else]\",\n     \"    [number 3];\");\n\n  MT(\"indent_funarg\",\n     \"[variable foo]([number 10000],\",\n     \"    [keyword function]([def a]) {\",\n     \"  [keyword debugger];\",\n     \"};\");\n\n  MT(\"indent_below_if\",\n     \"[keyword for] (;;)\",\n     \"  [keyword if] ([variable foo])\",\n     \"    [number 1];\",\n     \"[number 2];\");\n\n  MT(\"multilinestring\",\n     \"[keyword var] [variable x] [operator =] [string 'foo\\\\]\",\n     \"[string bar'];\");\n\n  MT(\"scary_regexp\",\n     \"[string-2 /foo[[/]]bar/];\");\n\n  MT(\"indent_strange_array\",\n     \"[keyword var] [variable x] [operator =] [[\",\n     \"  [number 1],,\",\n     \"  [number 2],\",\n     \"]];\",\n     \"[number 10];\");\n\n  var jsonld_mode = CodeMirror.getMode(\n    {indentUnit: 2},\n    {name: \"javascript\", jsonld: true}\n  );\n  function LD(name) {\n    test.mode(name, jsonld_mode, Array.prototype.slice.call(arguments, 1));\n  }\n\n  LD(\"json_ld_keywords\",\n    '{',\n    '  [meta \"@context\"]: {',\n    '    [meta \"@base\"]: [string \"http://example.com\"],',\n    '    [meta \"@vocab\"]: [string \"http://xmlns.com/foaf/0.1/\"],',\n    '    [property \"likesFlavor\"]: {',\n    '      [meta \"@container\"]: [meta \"@list\"]',\n    '      [meta \"@reverse\"]: [string \"@beFavoriteOf\"]',\n    '    },',\n    '    [property \"nick\"]: { [meta \"@container\"]: [meta \"@set\"] },',\n    '    [property \"nick\"]: { [meta \"@container\"]: [meta \"@index\"] }',\n    '  },',\n    '  [meta \"@graph\"]: [[ {',\n    '    [meta \"@id\"]: [string \"http://dbpedia.org/resource/John_Lennon\"],',\n    '    [property \"name\"]: [string \"John Lennon\"],',\n    '    [property \"modified\"]: {',\n    '      [meta \"@value\"]: [string \"2010-05-29T14:17:39+02:00\"],',\n    '      [meta \"@type\"]: [string \"http://www.w3.org/2001/XMLSchema#dateTime\"]',\n    '    }',\n    '  } ]]',\n    '}');\n\n  LD(\"json_ld_fake\",\n    '{',\n    '  [property \"@fake\"]: [string \"@fake\"],',\n    '  [property \"@contextual\"]: [string \"@identifier\"],',\n    '  [property \"user@domain.com\"]: [string \"@graphical\"],',\n    '  [property \"@ID\"]: [string \"@@ID\"]',\n    '}');\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/javascript/typescript.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: TypeScript mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"javascript.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">TypeScript</a>\n  </ul>\n</div>\n\n<article>\n<h2>TypeScript mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\nclass Greeter {\n\tgreeting: string;\n\tconstructor (message: string) {\n\t\tthis.greeting = message;\n\t}\n\tgreet() {\n\t\treturn \"Hello, \" + this.greeting;\n\t}\n}   \n\nvar greeter = new Greeter(\"world\");\n\nvar button = document.createElement('button')\nbutton.innerText = \"Say Hello\"\nbutton.onclick = function() {\n\talert(greeter.greet())\n}\n\ndocument.body.appendChild(button)\n\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/typescript\"\n      });\n    </script>\n\n    <p>This is a specialization of the <a href=\"index.html\">JavaScript mode</a>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/jinja2/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Jinja2 mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"jinja2.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Jinja2</a>\n  </ul>\n</div>\n\n<article>\n<h2>Jinja2 mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n{# this is a comment #}\n{%- for item in li -%}\n  &lt;li&gt;{{ item.label }}&lt;/li&gt;\n{% endfor -%}\n{{ item.sand == true and item.keyword == false ? 1 : 0 }}\n{{ app.get(55, 1.2, true) }}\n{% if app.get(&#39;_route&#39;) == (&#39;_home&#39;) %}home{% endif %}\n{% if app.session.flashbag.has(&#39;message&#39;) %}\n  {% for message in app.session.flashbag.get(&#39;message&#39;) %}\n    {{ message.content }}\n  {% endfor %}\n{% endif %}\n{{ path(&#39;_home&#39;, {&#39;section&#39;: app.request.get(&#39;section&#39;)}) }}\n{{ path(&#39;_home&#39;, {\n    &#39;section&#39;: app.request.get(&#39;section&#39;),\n    &#39;boolean&#39;: true,\n    &#39;number&#39;: 55.33\n  })\n}}\n{% include (&#39;test.incl.html.twig&#39;) %}\n</textarea></form>\n    <script>\n      var editor =\n      CodeMirror.fromTextArea(document.getElementById(\"code\"), {mode:\n        {name: \"jinja2\", htmlMode: true}});\n    </script>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/jinja2/jinja2.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n\n  CodeMirror.defineMode(\"jinja2\", function() {\n    var keywords = [\"and\", \"as\", \"block\", \"endblock\", \"by\", \"cycle\", \"debug\", \"else\", \"elif\",\n      \"extends\", \"filter\", \"endfilter\", \"firstof\", \"for\",\n      \"endfor\", \"if\", \"endif\", \"ifchanged\", \"endifchanged\",\n      \"ifequal\", \"endifequal\", \"ifnotequal\",\n      \"endifnotequal\", \"in\", \"include\", \"load\", \"not\", \"now\", \"or\",\n      \"parsed\", \"regroup\", \"reversed\", \"spaceless\",\n      \"endspaceless\", \"ssi\", \"templatetag\", \"openblock\",\n      \"closeblock\", \"openvariable\", \"closevariable\",\n      \"openbrace\", \"closebrace\", \"opencomment\",\n      \"closecomment\", \"widthratio\", \"url\", \"with\", \"endwith\",\n      \"get_current_language\", \"trans\", \"endtrans\", \"noop\", \"blocktrans\",\n      \"endblocktrans\", \"get_available_languages\",\n      \"get_current_language_bidi\", \"plural\"],\n    operator = /^[+\\-*&%=<>!?|~^]/,\n    sign = /^[:\\[\\(\\{]/,\n    atom = [\"true\", \"false\"],\n    number = /^(\\d[+\\-\\*\\/])?\\d+(\\.\\d+)?/;\n\n    keywords = new RegExp(\"((\" + keywords.join(\")|(\") + \"))\\\\b\");\n    atom = new RegExp(\"((\" + atom.join(\")|(\") + \"))\\\\b\");\n\n    function tokenBase (stream, state) {\n      var ch = stream.peek();\n\n      //Comment\n      if (state.incomment) {\n        if(!stream.skipTo(\"#}\")) {\n          stream.skipToEnd();\n        } else {\n          stream.eatWhile(/\\#|}/);\n          state.incomment = false;\n        }\n        return \"comment\";\n      //Tag\n      } else if (state.intag) {\n        //After operator\n        if(state.operator) {\n          state.operator = false;\n          if(stream.match(atom)) {\n            return \"atom\";\n          }\n          if(stream.match(number)) {\n            return \"number\";\n          }\n        }\n        //After sign\n        if(state.sign) {\n          state.sign = false;\n          if(stream.match(atom)) {\n            return \"atom\";\n          }\n          if(stream.match(number)) {\n            return \"number\";\n          }\n        }\n\n        if(state.instring) {\n          if(ch == state.instring) {\n            state.instring = false;\n          }\n          stream.next();\n          return \"string\";\n        } else if(ch == \"'\" || ch == '\"') {\n          state.instring = ch;\n          stream.next();\n          return \"string\";\n        } else if(stream.match(state.intag + \"}\") || stream.eat(\"-\") && stream.match(state.intag + \"}\")) {\n          state.intag = false;\n          return \"tag\";\n        } else if(stream.match(operator)) {\n          state.operator = true;\n          return \"operator\";\n        } else if(stream.match(sign)) {\n          state.sign = true;\n        } else {\n          if(stream.eat(\" \") || stream.sol()) {\n            if(stream.match(keywords)) {\n              return \"keyword\";\n            }\n            if(stream.match(atom)) {\n              return \"atom\";\n            }\n            if(stream.match(number)) {\n              return \"number\";\n            }\n            if(stream.sol()) {\n              stream.next();\n            }\n          } else {\n            stream.next();\n          }\n\n        }\n        return \"variable\";\n      } else if (stream.eat(\"{\")) {\n        if (ch = stream.eat(\"#\")) {\n          state.incomment = true;\n          if(!stream.skipTo(\"#}\")) {\n            stream.skipToEnd();\n          } else {\n            stream.eatWhile(/\\#|}/);\n            state.incomment = false;\n          }\n          return \"comment\";\n        //Open tag\n        } else if (ch = stream.eat(/\\{|%/)) {\n          //Cache close tag\n          state.intag = ch;\n          if(ch == \"{\") {\n            state.intag = \"}\";\n          }\n          stream.eat(\"-\");\n          return \"tag\";\n        }\n      }\n      stream.next();\n    };\n\n    return {\n      startState: function () {\n        return {tokenize: tokenBase};\n      },\n      token: function (stream, state) {\n        return state.tokenize(stream, state);\n      }\n    };\n  });\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/julia/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Julia mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"julia.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Julia</a>\n  </ul>\n</div>\n\n<article>\n<h2>Julia mode</h2>\n\n    <div><textarea id=\"code\" name=\"code\">\n#numbers\n1234\n1234im\n.234\n.234im\n2.23im\n2.3f3\n23e2\n0x234\n\n#strings\n'a'\n\"asdf\"\nr\"regex\"\nb\"bytestring\"\n\n\"\"\"\nmultiline string\n\"\"\"\n\n#identifiers\na\nas123\nfunction_name!\n\n#unicode identifiers\n# a = x\\ddot\na⃗ = ẍ\n# a = v\\dot\na⃗ = v̇\n#F\\vec = m \\cdotp a\\vec\nF⃗ = m·a⃗\n\n#literal identifier multiples\n3x\n4[1, 2, 3]\n\n#dicts and indexing\nx=[1, 2, 3]\nx[end-1]\nx={\"julia\"=>\"language of technical computing\"}\n\n\n#exception handling\ntry\n  f()\ncatch\n  @printf \"Error\"\nfinally\n  g()\nend\n\n#types\nimmutable Color{T<:Number}\n  r::T\n  g::T\n  b::T\nend\n\n#functions\nfunction change!(x::Vector{Float64})\n  for i = 1:length(x)\n    x[i] *= 2\n  end\nend\n\n#function invocation\nf('b', (2, 3)...)\n\n#operators\n|=\n&=\n^=\n\\-\n%=\n*=\n+=\n-=\n<=\n>=\n!=\n==\n%\n*\n+\n-\n<\n>\n!\n=\n|\n&\n^\n\\\n?\n~\n:\n$\n<:\n.<\n.>\n<<\n<<=\n>>\n>>>>\n>>=\n>>>=\n<<=\n<<<=\n.<=\n.>=\n.==\n->\n//\nin\n...\n//\n:=\n.//=\n.*=\n./=\n.^=\n.%=\n.+=\n.-=\n\\=\n\\\\=\n||\n===\n&&\n|=\n.|=\n<:\n>:\n|>\n<|\n::\nx ? y : z\n\n#macros\n@spawnat 2 1+1\n@eval(:x)\n\n#keywords and operators\nif else elseif while for\n begin let end do\ntry catch finally return break continue\nglobal local const \nexport import importall using\nfunction macro module baremodule \ntype immutable quote\ntrue false enumerate\n\n\n    </textarea></div>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: {name: \"julia\",\n               },\n        lineNumbers: true,\n        indentUnit: 4,\n        matchBrackets: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-julia</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/julia/julia.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"julia\", function(_conf, parserConf) {\n  var ERRORCLASS = 'error';\n\n  function wordRegexp(words) {\n    return new RegExp(\"^((\" + words.join(\")|(\") + \"))\\\\b\");\n  }\n\n  var operators = parserConf.operators || /^\\.?[|&^\\\\%*+\\-<>!=\\/]=?|\\?|~|:|\\$|\\.[<>]|<<=?|>>>?=?|\\.[<>=]=|->?|\\/\\/|\\bin\\b/;\n  var delimiters = parserConf.delimiters || /^[;,()[\\]{}]/;\n  var identifiers = parserConf.identifiers|| /^[_A-Za-z\\u00A1-\\uFFFF][_A-Za-z0-9\\u00A1-\\uFFFF]*!*/;\n  var blockOpeners = [\"begin\", \"function\", \"type\", \"immutable\", \"let\", \"macro\", \"for\", \"while\", \"quote\", \"if\", \"else\", \"elseif\", \"try\", \"finally\", \"catch\", \"do\"];\n  var blockClosers = [\"end\", \"else\", \"elseif\", \"catch\", \"finally\"];\n  var keywordList = ['if', 'else', 'elseif', 'while', 'for', 'begin', 'let', 'end', 'do', 'try', 'catch', 'finally', 'return', 'break', 'continue', 'global', 'local', 'const', 'export', 'import', 'importall', 'using', 'function', 'macro', 'module', 'baremodule', 'type', 'immutable', 'quote', 'typealias', 'abstract', 'bitstype', 'ccall'];\n  var builtinList = ['true', 'false', 'enumerate', 'open', 'close', 'nothing', 'NaN', 'Inf', 'print', 'println', 'Int', 'Int8', 'Uint8', 'Int16', 'Uint16', 'Int32', 'Uint32', 'Int64', 'Uint64', 'Int128', 'Uint128', 'Bool', 'Char', 'Float16', 'Float32', 'Float64', 'Array', 'Vector', 'Matrix', 'String', 'UTF8String', 'ASCIIString', 'error', 'warn', 'info', '@printf'];\n\n  //var stringPrefixes = new RegExp(\"^[br]?('|\\\")\")\n  var stringPrefixes = /^(`|'|\"{3}|([br]?\"))/;\n  var keywords = wordRegexp(keywordList);\n  var builtins = wordRegexp(builtinList);\n  var openers = wordRegexp(blockOpeners);\n  var closers = wordRegexp(blockClosers);\n  var macro = /^@[_A-Za-z][_A-Za-z0-9]*/;\n  var symbol = /^:[_A-Za-z][_A-Za-z0-9]*/;\n  var indentInfo = null;\n\n  function in_array(state) {\n    var ch = cur_scope(state);\n    if(ch==\"[\" || ch==\"{\") {\n      return true;\n    }\n    else {\n      return false;\n    }\n  }\n\n  function cur_scope(state) {\n    if(state.scopes.length==0) {\n      return null;\n    }\n    return state.scopes[state.scopes.length - 1];\n  }\n\n  // tokenizers\n  function tokenBase(stream, state) {\n    // Handle scope changes\n    var leaving_expr = state.leaving_expr;\n    if(stream.sol()) {\n      leaving_expr = false;\n    }\n    state.leaving_expr = false;\n    if(leaving_expr) {\n      if(stream.match(/^'+/)) {\n        return 'operator';\n      }\n\n    }\n\n    if(stream.match(/^\\.{2,3}/)) {\n      return 'operator';\n    }\n\n    if (stream.eatSpace()) {\n      return null;\n    }\n\n    var ch = stream.peek();\n    // Handle Comments\n    if (ch === '#') {\n        stream.skipToEnd();\n        return 'comment';\n    }\n    if(ch==='[') {\n      state.scopes.push(\"[\");\n    }\n\n    if(ch==='{') {\n      state.scopes.push(\"{\");\n    }\n\n    var scope=cur_scope(state);\n\n    if(scope==='[' && ch===']') {\n      state.scopes.pop();\n      state.leaving_expr=true;\n    }\n\n    if(scope==='{' && ch==='}') {\n      state.scopes.pop();\n      state.leaving_expr=true;\n    }\n\n    if(ch===')') {\n      state.leaving_expr = true;\n    }\n\n    var match;\n    if(!in_array(state) && (match=stream.match(openers, false))) {\n      state.scopes.push(match);\n    }\n\n    if(!in_array(state) && stream.match(closers, false)) {\n      state.scopes.pop();\n    }\n\n    if(in_array(state)) {\n      if(stream.match(/^end/)) {\n        return 'number';\n      }\n\n    }\n\n    if(stream.match(/^=>/)) {\n      return 'operator';\n    }\n\n\n    // Handle Number Literals\n    if (stream.match(/^[0-9\\.]/, false)) {\n      var imMatcher = RegExp(/^im\\b/);\n      var floatLiteral = false;\n      // Floats\n      if (stream.match(/^\\d*\\.(?!\\.)\\d+([ef][\\+\\-]?\\d+)?/i)) { floatLiteral = true; }\n      if (stream.match(/^\\d+\\.(?!\\.)\\d*/)) { floatLiteral = true; }\n      if (stream.match(/^\\.\\d+/)) { floatLiteral = true; }\n      if (floatLiteral) {\n          // Float literals may be \"imaginary\"\n          stream.match(imMatcher);\n          state.leaving_expr = true;\n          return 'number';\n      }\n      // Integers\n      var intLiteral = false;\n      // Hex\n      if (stream.match(/^0x[0-9a-f]+/i)) { intLiteral = true; }\n      // Binary\n      if (stream.match(/^0b[01]+/i)) { intLiteral = true; }\n      // Octal\n      if (stream.match(/^0o[0-7]+/i)) { intLiteral = true; }\n      // Decimal\n      if (stream.match(/^[1-9]\\d*(e[\\+\\-]?\\d+)?/)) {\n          intLiteral = true;\n      }\n      // Zero by itself with no other piece of number.\n      if (stream.match(/^0(?![\\dx])/i)) { intLiteral = true; }\n      if (intLiteral) {\n          // Integer literals may be \"long\"\n          stream.match(imMatcher);\n          state.leaving_expr = true;\n          return 'number';\n      }\n    }\n\n    if(stream.match(/^(::)|(<:)/)) {\n      return 'operator';\n    }\n\n    // Handle symbols\n    if(!leaving_expr && stream.match(symbol)) {\n      return 'string';\n    }\n\n    // Handle operators and Delimiters\n    if (stream.match(operators)) {\n      return 'operator';\n    }\n\n\n    // Handle Strings\n    if (stream.match(stringPrefixes)) {\n      state.tokenize = tokenStringFactory(stream.current());\n      return state.tokenize(stream, state);\n    }\n\n    if (stream.match(macro)) {\n      return 'meta';\n    }\n\n\n    if (stream.match(delimiters)) {\n      return null;\n    }\n\n    if (stream.match(keywords)) {\n      return 'keyword';\n    }\n\n    if (stream.match(builtins)) {\n      return 'builtin';\n    }\n\n\n    if (stream.match(identifiers)) {\n      state.leaving_expr=true;\n      return 'variable';\n    }\n    // Handle non-detected items\n    stream.next();\n    return ERRORCLASS;\n  }\n\n  function tokenStringFactory(delimiter) {\n    while ('rub'.indexOf(delimiter.charAt(0).toLowerCase()) >= 0) {\n      delimiter = delimiter.substr(1);\n    }\n    var singleline = delimiter.length == 1;\n    var OUTCLASS = 'string';\n\n    function tokenString(stream, state) {\n      while (!stream.eol()) {\n        stream.eatWhile(/[^'\"\\\\]/);\n        if (stream.eat('\\\\')) {\n            stream.next();\n            if (singleline && stream.eol()) {\n              return OUTCLASS;\n            }\n        } else if (stream.match(delimiter)) {\n            state.tokenize = tokenBase;\n            return OUTCLASS;\n        } else {\n            stream.eat(/['\"]/);\n        }\n      }\n      if (singleline) {\n        if (parserConf.singleLineStringErrors) {\n            return ERRORCLASS;\n        } else {\n            state.tokenize = tokenBase;\n        }\n      }\n      return OUTCLASS;\n    }\n    tokenString.isString = true;\n    return tokenString;\n  }\n\n  function tokenLexer(stream, state) {\n    indentInfo = null;\n    var style = state.tokenize(stream, state);\n    var current = stream.current();\n\n    // Handle '.' connected identifiers\n    if (current === '.') {\n      style = stream.match(identifiers, false) ? null : ERRORCLASS;\n      if (style === null && state.lastStyle === 'meta') {\n          // Apply 'meta' style to '.' connected identifiers when\n          // appropriate.\n        style = 'meta';\n      }\n      return style;\n    }\n\n    return style;\n  }\n\n  var external = {\n    startState: function() {\n      return {\n        tokenize: tokenBase,\n        scopes: [],\n        leaving_expr: false\n      };\n    },\n\n    token: function(stream, state) {\n      var style = tokenLexer(stream, state);\n      state.lastStyle = style;\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      var delta = 0;\n      if(textAfter==\"end\" || textAfter==\"]\" || textAfter==\"}\" || textAfter==\"else\" || textAfter==\"elseif\" || textAfter==\"catch\" || textAfter==\"finally\") {\n        delta = -1;\n      }\n      return (state.scopes.length + delta) * 4;\n    },\n\n    lineComment: \"#\",\n    fold: \"indent\",\n    electricChars: \"edlsifyh]}\"\n  };\n  return external;\n});\n\n\nCodeMirror.defineMIME(\"text/x-julia\", \"julia\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/kotlin/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Kotlin mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"kotlin.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Kotlin</a>\n  </ul>\n</div>\n\n<article>\n<h2>Kotlin mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\npackage org.wasabi.http\n\nimport java.util.concurrent.Executors\nimport java.net.InetSocketAddress\nimport org.wasabi.app.AppConfiguration\nimport io.netty.bootstrap.ServerBootstrap\nimport io.netty.channel.nio.NioEventLoopGroup\nimport io.netty.channel.socket.nio.NioServerSocketChannel\nimport org.wasabi.app.AppServer\n\npublic class HttpServer(private val appServer: AppServer) {\n\n    val bootstrap: ServerBootstrap\n    val primaryGroup: NioEventLoopGroup\n    val workerGroup:  NioEventLoopGroup\n\n    {\n        // Define worker groups\n        primaryGroup = NioEventLoopGroup()\n        workerGroup = NioEventLoopGroup()\n\n        // Initialize bootstrap of server\n        bootstrap = ServerBootstrap()\n\n        bootstrap.group(primaryGroup, workerGroup)\n        bootstrap.channel(javaClass<NioServerSocketChannel>())\n        bootstrap.childHandler(NettyPipelineInitializer(appServer))\n    }\n\n    public fun start(wait: Boolean = true) {\n        val channel = bootstrap.bind(appServer.configuration.port)?.sync()?.channel()\n\n        if (wait) {\n            channel?.closeFuture()?.sync()\n        }\n    }\n\n    public fun stop() {\n        // Shutdown all event loops\n        primaryGroup.shutdownGracefully()\n        workerGroup.shutdownGracefully()\n\n        // Wait till all threads are terminated\n        primaryGroup.terminationFuture().sync()\n        workerGroup.terminationFuture().sync()\n    }\n}\n</textarea></div>\n\n    <script>\n        var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n            mode: {name: \"kotlin\"},\n            lineNumbers: true,\n            indentUnit: 4\n        });\n    </script>\n    <h3>Mode for Kotlin (http://kotlin.jetbrains.org/)</h3>\n    <p>Developed by Hadi Hariri (https://github.com/hhariri).</p>\n    <p><strong>MIME type defined:</strong> <code>text/x-kotlin</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/kotlin/kotlin.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"kotlin\", function (config, parserConfig) {\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  var multiLineStrings = parserConfig.multiLineStrings;\n\n  var keywords = words(\n          \"package continue return object while break class data trait throw super\" +\n          \" when type this else This try val var fun for is in if do as true false null get set\");\n  var softKeywords = words(\"import\" +\n      \" where by get set abstract enum open annotation override private public internal\" +\n      \" protected catch out vararg inline finally final ref\");\n  var blockKeywords = words(\"catch class do else finally for if where try while enum\");\n  var atoms = words(\"null true false this\");\n\n  var curPunc;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (ch == '\"' || ch == \"'\") {\n      return startString(ch, stream, state);\n    }\n    // Wildcard import w/o trailing semicolon (import smth.*)\n    if (ch == \".\" && stream.eat(\"*\")) {\n      return \"word\";\n    }\n    if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    if (/\\d/.test(ch)) {\n      if (stream.eat(/eE/)) {\n        stream.eat(/\\+\\-/);\n        stream.eatWhile(/\\d/);\n      }\n      return \"number\";\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        state.tokenize.push(tokenComment);\n        return tokenComment(stream, state);\n      }\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n      if (expectExpression(state.lastToken)) {\n        return startString(ch, stream, state);\n      }\n    }\n    // Commented\n    if (ch == \"-\" && stream.eat(\">\")) {\n      curPunc = \"->\";\n      return null;\n    }\n    if (/[\\-+*&%=<>!?|\\/~]/.test(ch)) {\n      stream.eatWhile(/[\\-+*&%=<>|~]/);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_]/);\n\n    var cur = stream.current();\n    if (atoms.propertyIsEnumerable(cur)) {\n      return \"atom\";\n    }\n    if (softKeywords.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"softKeyword\";\n    }\n\n    if (keywords.propertyIsEnumerable(cur)) {\n      if (blockKeywords.propertyIsEnumerable(cur)) curPunc = \"newstatement\";\n      return \"keyword\";\n    }\n    return \"word\";\n  }\n\n  tokenBase.isBase = true;\n\n  function startString(quote, stream, state) {\n    var tripleQuoted = false;\n    if (quote != \"/\" && stream.eat(quote)) {\n      if (stream.eat(quote)) tripleQuoted = true;\n      else return \"string\";\n    }\n    function t(stream, state) {\n      var escaped = false, next, end = !tripleQuoted;\n\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {\n          if (!tripleQuoted) {\n            break;\n          }\n          if (stream.match(quote + quote)) {\n            end = true;\n            break;\n          }\n        }\n\n        if (quote == '\"' && next == \"$\" && !escaped && stream.eat(\"{\")) {\n          state.tokenize.push(tokenBaseUntilBrace());\n          return \"string\";\n        }\n\n        if (next == \"$\" && !escaped && !stream.eat(\" \")) {\n          state.tokenize.push(tokenBaseUntilSpace());\n          return \"string\";\n        }\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (multiLineStrings)\n        state.tokenize.push(t);\n      if (end) state.tokenize.pop();\n      return \"string\";\n    }\n\n    state.tokenize.push(t);\n    return t(stream, state);\n  }\n\n  function tokenBaseUntilBrace() {\n    var depth = 1;\n\n    function t(stream, state) {\n      if (stream.peek() == \"}\") {\n        depth--;\n        if (depth == 0) {\n          state.tokenize.pop();\n          return state.tokenize[state.tokenize.length - 1](stream, state);\n        }\n      } else if (stream.peek() == \"{\") {\n        depth++;\n      }\n      return tokenBase(stream, state);\n    }\n\n    t.isBase = true;\n    return t;\n  }\n\n  function tokenBaseUntilSpace() {\n    function t(stream, state) {\n      if (stream.eat(/[\\w]/)) {\n        var isWord = stream.eatWhile(/[\\w]/);\n        if (isWord) {\n          state.tokenize.pop();\n          return \"word\";\n        }\n      }\n      state.tokenize.pop();\n      return \"string\";\n    }\n\n    t.isBase = true;\n    return t;\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize.pop();\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function expectExpression(last) {\n    return !last || last == \"operator\" || last == \"->\" || /[\\.\\[\\{\\(,;:]/.test(last) ||\n        last == \"newstatement\" || last == \"keyword\" || last == \"proplabel\";\n  }\n\n  function Context(indented, column, type, align, prev) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.align = align;\n    this.prev = prev;\n  }\n\n  function pushContext(state, col, type) {\n    return state.context = new Context(state.indented, col, type, null, state.context);\n  }\n\n  function popContext(state) {\n    var t = state.context.type;\n    if (t == \")\" || t == \"]\" || t == \"}\")\n      state.indented = state.context.indented;\n    return state.context = state.context.prev;\n  }\n\n  // Interface\n\n  return {\n    startState: function (basecolumn) {\n      return {\n        tokenize: [tokenBase],\n        context: new Context((basecolumn || 0) - config.indentUnit, 0, \"top\", false),\n        indented: 0,\n        startOfLine: true,\n        lastToken: null\n      };\n    },\n\n    token: function (stream, state) {\n      var ctx = state.context;\n      if (stream.sol()) {\n        if (ctx.align == null) ctx.align = false;\n        state.indented = stream.indentation();\n        state.startOfLine = true;\n        // Automatic semicolon insertion\n        if (ctx.type == \"statement\" && !expectExpression(state.lastToken)) {\n          popContext(state);\n          ctx = state.context;\n        }\n      }\n      if (stream.eatSpace()) return null;\n      curPunc = null;\n      var style = state.tokenize[state.tokenize.length - 1](stream, state);\n      if (style == \"comment\") return style;\n      if (ctx.align == null) ctx.align = true;\n      if ((curPunc == \";\" || curPunc == \":\") && ctx.type == \"statement\") popContext(state);\n      // Handle indentation for {x -> \\n ... }\n      else if (curPunc == \"->\" && ctx.type == \"statement\" && ctx.prev.type == \"}\") {\n        popContext(state);\n        state.context.align = false;\n      }\n      else if (curPunc == \"{\") pushContext(state, stream.column(), \"}\");\n      else if (curPunc == \"[\") pushContext(state, stream.column(), \"]\");\n      else if (curPunc == \"(\") pushContext(state, stream.column(), \")\");\n      else if (curPunc == \"}\") {\n        while (ctx.type == \"statement\") ctx = popContext(state);\n        if (ctx.type == \"}\") ctx = popContext(state);\n        while (ctx.type == \"statement\") ctx = popContext(state);\n      }\n      else if (curPunc == ctx.type) popContext(state);\n      else if (ctx.type == \"}\" || ctx.type == \"top\" || (ctx.type == \"statement\" && curPunc == \"newstatement\"))\n        pushContext(state, stream.column(), \"statement\");\n      state.startOfLine = false;\n      state.lastToken = curPunc || style;\n      return style;\n    },\n\n    indent: function (state, textAfter) {\n      if (!state.tokenize[state.tokenize.length - 1].isBase) return 0;\n      var firstChar = textAfter && textAfter.charAt(0), ctx = state.context;\n      if (ctx.type == \"statement\" && !expectExpression(state.lastToken)) ctx = ctx.prev;\n      var closing = firstChar == ctx.type;\n      if (ctx.type == \"statement\") {\n        return ctx.indented + (firstChar == \"{\" ? 0 : config.indentUnit);\n      }\n      else if (ctx.align) return ctx.column + (closing ? 0 : 1);\n      else return ctx.indented + (closing ? 0 : config.indentUnit);\n    },\n\n    electricChars: \"{}\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-kotlin\", \"kotlin\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/livescript/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: LiveScript mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/solarized.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"livescript.js\"></script>\n<style>.CodeMirror {font-size: 80%;border-top: 1px solid silver; border-bottom: 1px solid silver;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">LiveScript</a>\n  </ul>\n</div>\n\n<article>\n<h2>LiveScript mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n# LiveScript mode for CodeMirror\n# The following script, prelude.ls, is used to\n# demonstrate LiveScript mode for CodeMirror.\n#   https://github.com/gkz/prelude-ls\n\nexport objToFunc = objToFunc = (obj) ->\n  (key) -> obj[key]\n\nexport each = (f, xs) -->\n  if typeof! xs is \\Object\n    for , x of xs then f x\n  else\n    for x in xs then f x\n  xs\n\nexport map = (f, xs) -->\n  f = objToFunc f if typeof! f isnt \\Function\n  type = typeof! xs\n  if type is \\Object\n    {[key, f x] for key, x of xs}\n  else\n    result = [f x for x in xs]\n    if type is \\String then result * '' else result\n\nexport filter = (f, xs) -->\n  f = objToFunc f if typeof! f isnt \\Function\n  type = typeof! xs\n  if type is \\Object\n    {[key, x] for key, x of xs when f x}\n  else\n    result = [x for x in xs when f x]\n    if type is \\String then result * '' else result\n\nexport reject = (f, xs) -->\n  f = objToFunc f if typeof! f isnt \\Function\n  type = typeof! xs\n  if type is \\Object\n    {[key, x] for key, x of xs when not f x}\n  else\n    result = [x for x in xs when not f x]\n    if type is \\String then result * '' else result\n\nexport partition = (f, xs) -->\n  f = objToFunc f if typeof! f isnt \\Function\n  type = typeof! xs\n  if type is \\Object\n    passed = {}\n    failed = {}\n    for key, x of xs\n      (if f x then passed else failed)[key] = x\n  else\n    passed = []\n    failed = []\n    for x in xs\n      (if f x then passed else failed)push x\n    if type is \\String\n      passed *= ''\n      failed *= ''\n  [passed, failed]\n\nexport find = (f, xs) -->\n  f = objToFunc f if typeof! f isnt \\Function\n  if typeof! xs is \\Object\n    for , x of xs when f x then return x\n  else\n    for x in xs when f x then return x\n  void\n\nexport head = export first = (xs) ->\n  return void if not xs.length\n  xs.0\n\nexport tail = (xs) ->\n  return void if not xs.length\n  xs.slice 1\n\nexport last = (xs) ->\n  return void if not xs.length\n  xs[*-1]\n\nexport initial = (xs) ->\n  return void if not xs.length\n  xs.slice 0 xs.length - 1\n\nexport empty = (xs) ->\n  if typeof! xs is \\Object\n    for x of xs then return false\n    return yes\n  not xs.length\n\nexport values = (obj) ->\n  [x for , x of obj]\n\nexport keys = (obj) ->\n  [x for x of obj]\n\nexport len = (xs) ->\n  xs = values xs if typeof! xs is \\Object\n  xs.length\n\nexport cons = (x, xs) -->\n  if typeof! xs is \\String then x + xs else [x] ++ xs\n\nexport append = (xs, ys) -->\n  if typeof! ys is \\String then xs + ys else xs ++ ys\n\nexport join = (sep, xs) -->\n  xs = values xs if typeof! xs is \\Object\n  xs.join sep\n\nexport reverse = (xs) ->\n  if typeof! xs is \\String\n  then (xs / '')reverse! * ''\n  else xs.slice!reverse!\n\nexport fold = export foldl = (f, memo, xs) -->\n  if typeof! xs is \\Object\n    for , x of xs then memo = f memo, x\n  else\n    for x in xs then memo = f memo, x\n  memo\n\nexport fold1 = export foldl1 = (f, xs) --> fold f, xs.0, xs.slice 1\n\nexport foldr = (f, memo, xs) --> fold f, memo, xs.slice!reverse!\n\nexport foldr1 = (f, xs) -->\n  xs.=slice!reverse!\n  fold f, xs.0, xs.slice 1\n\nexport unfoldr = export unfold = (f, b) -->\n  if (f b)?\n    [that.0] ++ unfoldr f, that.1\n  else\n    []\n\nexport andList = (xs) ->\n  for x in xs when not x\n    return false\n  true\n\nexport orList = (xs) ->\n  for x in xs when x\n    return true\n  false\n\nexport any = (f, xs) -->\n  f = objToFunc f if typeof! f isnt \\Function\n  for x in xs when f x\n    return yes\n  no\n\nexport all = (f, xs) -->\n  f = objToFunc f if typeof! f isnt \\Function\n  for x in xs when not f x\n    return no\n  yes\n\nexport unique = (xs) ->\n  result = []\n  if typeof! xs is \\Object\n    for , x of xs when x not in result then result.push x\n  else\n    for x   in xs when x not in result then result.push x\n  if typeof! xs is \\String then result * '' else result\n\nexport sort = (xs) ->\n  xs.concat!sort (x, y) ->\n    | x > y =>  1\n    | x < y => -1\n    | _     =>  0\n\nexport sortBy = (f, xs) -->\n  return [] unless xs.length\n  xs.concat!sort f\n\nexport compare = (f, x, y) -->\n  | (f x) > (f y) =>  1\n  | (f x) < (f y) => -1\n  | otherwise     =>  0\n\nexport sum = (xs) ->\n  result = 0\n  if typeof! xs is \\Object\n    for , x of xs then result += x\n  else\n    for x   in xs then result += x\n  result\n\nexport product = (xs) ->\n  result = 1\n  if typeof! xs is \\Object\n    for , x of xs then result *= x\n  else\n    for x   in xs then result *= x\n  result\n\nexport mean = export average = (xs) -> (sum xs) / len xs\n\nexport concat = (xss) -> fold append, [], xss\n\nexport concatMap = (f, xs) --> fold ((memo, x) -> append memo, f x), [], xs\n\nexport listToObj = (xs) ->\n  {[x.0, x.1] for x in xs}\n\nexport maximum = (xs) -> fold1 (>?), xs\n\nexport minimum = (xs) -> fold1 (<?), xs\n\nexport scan = export scanl = (f, memo, xs) -->\n  last = memo\n  if typeof! xs is \\Object\n  then [memo] ++ [last = f last, x for , x of xs]\n  else [memo] ++ [last = f last, x for x in xs]\n\nexport scan1 = export scanl1 = (f, xs) --> scan f, xs.0, xs.slice 1\n\nexport scanr = (f, memo, xs) -->\n  xs.=slice!reverse!\n  scan f, memo, xs .reverse!\n\nexport scanr1 = (f, xs) -->\n  xs.=slice!reverse!\n  scan f, xs.0, xs.slice 1 .reverse!\n\nexport replicate = (n, x) -->\n  result = []\n  i = 0\n  while i < n, ++i then result.push x\n  result\n\nexport take = (n, xs) -->\n  | n <= 0\n    if typeof! xs is \\String then '' else []\n  | not xs.length => xs\n  | otherwise     => xs.slice 0, n\n\nexport drop = (n, xs) -->\n  | n <= 0        => xs\n  | not xs.length => xs\n  | otherwise     => xs.slice n\n\nexport splitAt = (n, xs) --> [(take n, xs), (drop n, xs)]\n\nexport takeWhile = (p, xs) -->\n  return xs if not xs.length\n  p = objToFunc p if typeof! p isnt \\Function\n  result = []\n  for x in xs\n    break if not p x\n    result.push x\n  if typeof! xs is \\String then result * '' else result\n\nexport dropWhile = (p, xs) -->\n  return xs if not xs.length\n  p = objToFunc p if typeof! p isnt \\Function\n  i = 0\n  for x in xs\n    break if not p x\n    ++i\n  drop i, xs\n\nexport span = (p, xs) --> [(takeWhile p, xs), (dropWhile p, xs)]\n\nexport breakIt = (p, xs) --> span (not) << p, xs\n\nexport zip = (xs, ys) -->\n  result = []\n  for zs, i in [xs, ys]\n    for z, j in zs\n      result.push [] if i is 0\n      result[j]?push z\n  result\n\nexport zipWith = (f,xs, ys) -->\n  f = objToFunc f if typeof! f isnt \\Function\n  if not xs.length or not ys.length\n    []\n  else\n    [f.apply this, zs for zs in zip.call this, xs, ys]\n\nexport zipAll = (...xss) ->\n  result = []\n  for xs, i in xss\n    for x, j in xs\n      result.push [] if i is 0\n      result[j]?push x\n  result\n\nexport zipAllWith = (f, ...xss) ->\n  f = objToFunc f if typeof! f isnt \\Function\n  if not xss.0.length or not xss.1.length\n    []\n  else\n    [f.apply this, xs for xs in zipAll.apply this, xss]\n\nexport compose = (...funcs) ->\n  ->\n    args = arguments\n    for f in funcs\n      args = [f.apply this, args]\n    args.0\n\nexport curry = (f) ->\n  curry$ f # using util method curry$ from livescript\n\nexport id = (x) -> x\n\nexport flip = (f, x, y) --> f y, x\n\nexport fix = (f) ->\n  ( (g, x) -> -> f(g g) ...arguments ) do\n    (g, x) -> -> f(g g) ...arguments\n\nexport lines = (str) ->\n  return [] if not str.length\n  str / \\\\n\n\nexport unlines = (strs) -> strs * \\\\n\n\nexport words = (str) ->\n  return [] if not str.length\n  str / /[ ]+/\n\nexport unwords = (strs) -> strs * ' '\n\nexport max = (>?)\n\nexport min = (<?)\n\nexport negate = (x) -> -x\n\nexport abs = Math.abs\n\nexport signum = (x) ->\n  | x < 0     => -1\n  | x > 0     =>  1\n  | otherwise =>  0\n\nexport quot = (x, y) --> ~~(x / y)\n\nexport rem = (%)\n\nexport div = (x, y) --> Math.floor x / y\n\nexport mod = (%%)\n\nexport recip = (1 /)\n\nexport pi = Math.PI\n\nexport tau = pi * 2\n\nexport exp = Math.exp\n\nexport sqrt = Math.sqrt\n\n# changed from log as log is a\n# common function for logging things\nexport ln = Math.log\n\nexport pow = (^)\n\nexport sin = Math.sin\n\nexport tan = Math.tan\n\nexport cos = Math.cos\n\nexport asin = Math.asin\n\nexport acos = Math.acos\n\nexport atan = Math.atan\n\nexport atan2 = (x, y) --> Math.atan2 x, y\n\n# sinh\n# tanh\n# cosh\n# asinh\n# atanh\n# acosh\n\nexport truncate = (x) -> ~~x\n\nexport round = Math.round\n\nexport ceiling = Math.ceil\n\nexport floor = Math.floor\n\nexport isItNaN = (x) -> x isnt x\n\nexport even = (x) -> x % 2 == 0\n\nexport odd = (x) -> x % 2 != 0\n\nexport gcd = (x, y) -->\n  x = Math.abs x\n  y = Math.abs y\n  until y is 0\n    z = x % y\n    x = y\n    y = z\n  x\n\nexport lcm = (x, y) -->\n  Math.abs Math.floor (x / (gcd x, y) * y)\n\n# meta\nexport installPrelude = !(target) ->\n  unless target.prelude?isInstalled\n    target <<< out$ # using out$ generated by livescript\n    target <<< target.prelude.isInstalled = true\n\nexport prelude = out$\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        theme: \"solarized light\",\n        lineNumbers: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-livescript</code>.</p>\n\n    <p>The LiveScript mode was written by Kenneth Bentley.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/livescript/livescript.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/**\n * Link to the project's GitHub page:\n * https://github.com/duralog/CodeMirror\n */\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n\n  CodeMirror.defineMode('livescript', function(){\n    var tokenBase = function(stream, state) {\n      var next_rule = state.next || \"start\";\n      if (next_rule) {\n        state.next = state.next;\n        var nr = Rules[next_rule];\n        if (nr.splice) {\n          for (var i$ = 0; i$ < nr.length; ++i$) {\n            var r = nr[i$], m;\n            if (r.regex && (m = stream.match(r.regex))) {\n              state.next = r.next || state.next;\n              return r.token;\n            }\n          }\n          stream.next();\n          return 'error';\n        }\n        if (stream.match(r = Rules[next_rule])) {\n          if (r.regex && stream.match(r.regex)) {\n            state.next = r.next;\n            return r.token;\n          } else {\n            stream.next();\n            return 'error';\n          }\n        }\n      }\n      stream.next();\n      return 'error';\n    };\n    var external = {\n      startState: function(){\n        return {\n          next: 'start',\n          lastToken: null\n        };\n      },\n      token: function(stream, state){\n        while (stream.pos == stream.start)\n          var style = tokenBase(stream, state);\n        state.lastToken = {\n          style: style,\n          indent: stream.indentation(),\n          content: stream.current()\n        };\n        return style.replace(/\\./g, ' ');\n      },\n      indent: function(state){\n        var indentation = state.lastToken.indent;\n        if (state.lastToken.content.match(indenter)) {\n          indentation += 2;\n        }\n        return indentation;\n      }\n    };\n    return external;\n  });\n\n  var identifier = '(?![\\\\d\\\\s])[$\\\\w\\\\xAA-\\\\uFFDC](?:(?!\\\\s)[$\\\\w\\\\xAA-\\\\uFFDC]|-[A-Za-z])*';\n  var indenter = RegExp('(?:[({[=:]|[-~]>|\\\\b(?:e(?:lse|xport)|d(?:o|efault)|t(?:ry|hen)|finally|import(?:\\\\s*all)?|const|var|let|new|catch(?:\\\\s*' + identifier + ')?))\\\\s*$');\n  var keywordend = '(?![$\\\\w]|-[A-Za-z]|\\\\s*:(?![:=]))';\n  var stringfill = {\n    token: 'string',\n    regex: '.+'\n  };\n  var Rules = {\n    start: [\n      {\n        token: 'comment.doc',\n        regex: '/\\\\*',\n        next: 'comment'\n      }, {\n        token: 'comment',\n        regex: '#.*'\n      }, {\n        token: 'keyword',\n        regex: '(?:t(?:h(?:is|row|en)|ry|ypeof!?)|c(?:on(?:tinue|st)|a(?:se|tch)|lass)|i(?:n(?:stanceof)?|mp(?:ort(?:\\\\s+all)?|lements)|[fs])|d(?:e(?:fault|lete|bugger)|o)|f(?:or(?:\\\\s+own)?|inally|unction)|s(?:uper|witch)|e(?:lse|x(?:tends|port)|val)|a(?:nd|rguments)|n(?:ew|ot)|un(?:less|til)|w(?:hile|ith)|o[fr]|return|break|let|var|loop)' + keywordend\n      }, {\n        token: 'constant.language',\n        regex: '(?:true|false|yes|no|on|off|null|void|undefined)' + keywordend\n      }, {\n        token: 'invalid.illegal',\n        regex: '(?:p(?:ackage|r(?:ivate|otected)|ublic)|i(?:mplements|nterface)|enum|static|yield)' + keywordend\n      }, {\n        token: 'language.support.class',\n        regex: '(?:R(?:e(?:gExp|ferenceError)|angeError)|S(?:tring|yntaxError)|E(?:rror|valError)|Array|Boolean|Date|Function|Number|Object|TypeError|URIError)' + keywordend\n      }, {\n        token: 'language.support.function',\n        regex: '(?:is(?:NaN|Finite)|parse(?:Int|Float)|Math|JSON|(?:en|de)codeURI(?:Component)?)' + keywordend\n      }, {\n        token: 'variable.language',\n        regex: '(?:t(?:hat|il|o)|f(?:rom|allthrough)|it|by|e)' + keywordend\n      }, {\n        token: 'identifier',\n        regex: identifier + '\\\\s*:(?![:=])'\n      }, {\n        token: 'variable',\n        regex: identifier\n      }, {\n        token: 'keyword.operator',\n        regex: '(?:\\\\.{3}|\\\\s+\\\\?)'\n      }, {\n        token: 'keyword.variable',\n        regex: '(?:@+|::|\\\\.\\\\.)',\n        next: 'key'\n      }, {\n        token: 'keyword.operator',\n        regex: '\\\\.\\\\s*',\n        next: 'key'\n      }, {\n        token: 'string',\n        regex: '\\\\\\\\\\\\S[^\\\\s,;)}\\\\]]*'\n      }, {\n        token: 'string.doc',\n        regex: '\\'\\'\\'',\n        next: 'qdoc'\n      }, {\n        token: 'string.doc',\n        regex: '\"\"\"',\n        next: 'qqdoc'\n      }, {\n        token: 'string',\n        regex: '\\'',\n        next: 'qstring'\n      }, {\n        token: 'string',\n        regex: '\"',\n        next: 'qqstring'\n      }, {\n        token: 'string',\n        regex: '`',\n        next: 'js'\n      }, {\n        token: 'string',\n        regex: '<\\\\[',\n        next: 'words'\n      }, {\n        token: 'string.regex',\n        regex: '//',\n        next: 'heregex'\n      }, {\n        token: 'string.regex',\n        regex: '\\\\/(?:[^[\\\\/\\\\n\\\\\\\\]*(?:(?:\\\\\\\\.|\\\\[[^\\\\]\\\\n\\\\\\\\]*(?:\\\\\\\\.[^\\\\]\\\\n\\\\\\\\]*)*\\\\])[^[\\\\/\\\\n\\\\\\\\]*)*)\\\\/[gimy$]{0,4}',\n        next: 'key'\n      }, {\n        token: 'constant.numeric',\n        regex: '(?:0x[\\\\da-fA-F][\\\\da-fA-F_]*|(?:[2-9]|[12]\\\\d|3[0-6])r[\\\\da-zA-Z][\\\\da-zA-Z_]*|(?:\\\\d[\\\\d_]*(?:\\\\.\\\\d[\\\\d_]*)?|\\\\.\\\\d[\\\\d_]*)(?:e[+-]?\\\\d[\\\\d_]*)?[\\\\w$]*)'\n      }, {\n        token: 'lparen',\n        regex: '[({[]'\n      }, {\n        token: 'rparen',\n        regex: '[)}\\\\]]',\n        next: 'key'\n      }, {\n        token: 'keyword.operator',\n        regex: '\\\\S+'\n      }, {\n        token: 'text',\n        regex: '\\\\s+'\n      }\n    ],\n    heregex: [\n      {\n        token: 'string.regex',\n        regex: '.*?//[gimy$?]{0,4}',\n        next: 'start'\n      }, {\n        token: 'string.regex',\n        regex: '\\\\s*#{'\n      }, {\n        token: 'comment.regex',\n        regex: '\\\\s+(?:#.*)?'\n      }, {\n        token: 'string.regex',\n        regex: '\\\\S+'\n      }\n    ],\n    key: [\n      {\n        token: 'keyword.operator',\n        regex: '[.?@!]+'\n      }, {\n        token: 'identifier',\n        regex: identifier,\n        next: 'start'\n      }, {\n        token: 'text',\n        regex: '',\n        next: 'start'\n      }\n    ],\n    comment: [\n      {\n        token: 'comment.doc',\n        regex: '.*?\\\\*/',\n        next: 'start'\n      }, {\n        token: 'comment.doc',\n        regex: '.+'\n      }\n    ],\n    qdoc: [\n      {\n        token: 'string',\n        regex: \".*?'''\",\n        next: 'key'\n      }, stringfill\n    ],\n    qqdoc: [\n      {\n        token: 'string',\n        regex: '.*?\"\"\"',\n        next: 'key'\n      }, stringfill\n    ],\n    qstring: [\n      {\n        token: 'string',\n        regex: '[^\\\\\\\\\\']*(?:\\\\\\\\.[^\\\\\\\\\\']*)*\\'',\n        next: 'key'\n      }, stringfill\n    ],\n    qqstring: [\n      {\n        token: 'string',\n        regex: '[^\\\\\\\\\"]*(?:\\\\\\\\.[^\\\\\\\\\"]*)*\"',\n        next: 'key'\n      }, stringfill\n    ],\n    js: [\n      {\n        token: 'string',\n        regex: '[^\\\\\\\\`]*(?:\\\\\\\\.[^\\\\\\\\`]*)*`',\n        next: 'key'\n      }, stringfill\n    ],\n    words: [\n      {\n        token: 'string',\n        regex: '.*?\\\\]>',\n        next: 'key'\n      }, stringfill\n    ]\n  };\n  for (var idx in Rules) {\n    var r = Rules[idx];\n    if (r.splice) {\n      for (var i = 0, len = r.length; i < len; ++i) {\n        var rr = r[i];\n        if (typeof rr.regex === 'string') {\n          Rules[idx][i].regex = new RegExp('^' + rr.regex);\n        }\n      }\n    } else if (typeof rr.regex === 'string') {\n      Rules[idx].regex = new RegExp('^' + r.regex);\n    }\n  }\n\n  CodeMirror.defineMIME('text/x-livescript', 'livescript');\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/lua/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Lua mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/neat.css\">\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"lua.js\"></script>\n<style>.CodeMirror {border: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Lua</a>\n  </ul>\n</div>\n\n<article>\n<h2>Lua mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n--[[\nexample useless code to show lua syntax highlighting\nthis is multiline comment\n]]\n\nfunction blahblahblah(x)\n\n  local table = {\n    \"asd\" = 123,\n    \"x\" = 0.34,  \n  }\n  if x ~= 3 then\n    print( x )\n  elseif x == \"string\"\n    my_custom_function( 0x34 )\n  else\n    unknown_function( \"some string\" )\n  end\n\n  --single line comment\n  \nend\n\nfunction blablabla3()\n\n  for k,v in ipairs( table ) do\n    --abcde..\n    y=[=[\n  x=[[\n      x is a multi line string\n   ]]\n  but its definition is iside a highest level string!\n  ]=]\n    print(\" \\\"\\\" \")\n\n    s = math.sin( x )\n  end\n\nend\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        matchBrackets: true,\n        theme: \"neat\"\n      });\n    </script>\n\n    <p>Loosely based on Franciszek\n    Wawrzak's <a href=\"http://codemirror.net/1/contrib/lua\">CodeMirror\n    1 mode</a>. One configuration parameter is\n    supported, <code>specials</code>, to which you can provide an\n    array of strings to have those identifiers highlighted with\n    the <code>lua-special</code> style.</p>\n    <p><strong>MIME types defined:</strong> <code>text/x-lua</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/lua/lua.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// LUA mode. Ported to CodeMirror 2 from Franciszek Wawrzak's\n// CodeMirror 1 mode.\n// highlights keywords, strings, comments (no leveling supported! (\"[==[\")), tokens, basic indenting\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"lua\", function(config, parserConfig) {\n  var indentUnit = config.indentUnit;\n\n  function prefixRE(words) {\n    return new RegExp(\"^(?:\" + words.join(\"|\") + \")\", \"i\");\n  }\n  function wordRE(words) {\n    return new RegExp(\"^(?:\" + words.join(\"|\") + \")$\", \"i\");\n  }\n  var specials = wordRE(parserConfig.specials || []);\n\n  // long list of standard functions from lua manual\n  var builtins = wordRE([\n    \"_G\",\"_VERSION\",\"assert\",\"collectgarbage\",\"dofile\",\"error\",\"getfenv\",\"getmetatable\",\"ipairs\",\"load\",\n    \"loadfile\",\"loadstring\",\"module\",\"next\",\"pairs\",\"pcall\",\"print\",\"rawequal\",\"rawget\",\"rawset\",\"require\",\n    \"select\",\"setfenv\",\"setmetatable\",\"tonumber\",\"tostring\",\"type\",\"unpack\",\"xpcall\",\n\n    \"coroutine.create\",\"coroutine.resume\",\"coroutine.running\",\"coroutine.status\",\"coroutine.wrap\",\"coroutine.yield\",\n\n    \"debug.debug\",\"debug.getfenv\",\"debug.gethook\",\"debug.getinfo\",\"debug.getlocal\",\"debug.getmetatable\",\n    \"debug.getregistry\",\"debug.getupvalue\",\"debug.setfenv\",\"debug.sethook\",\"debug.setlocal\",\"debug.setmetatable\",\n    \"debug.setupvalue\",\"debug.traceback\",\n\n    \"close\",\"flush\",\"lines\",\"read\",\"seek\",\"setvbuf\",\"write\",\n\n    \"io.close\",\"io.flush\",\"io.input\",\"io.lines\",\"io.open\",\"io.output\",\"io.popen\",\"io.read\",\"io.stderr\",\"io.stdin\",\n    \"io.stdout\",\"io.tmpfile\",\"io.type\",\"io.write\",\n\n    \"math.abs\",\"math.acos\",\"math.asin\",\"math.atan\",\"math.atan2\",\"math.ceil\",\"math.cos\",\"math.cosh\",\"math.deg\",\n    \"math.exp\",\"math.floor\",\"math.fmod\",\"math.frexp\",\"math.huge\",\"math.ldexp\",\"math.log\",\"math.log10\",\"math.max\",\n    \"math.min\",\"math.modf\",\"math.pi\",\"math.pow\",\"math.rad\",\"math.random\",\"math.randomseed\",\"math.sin\",\"math.sinh\",\n    \"math.sqrt\",\"math.tan\",\"math.tanh\",\n\n    \"os.clock\",\"os.date\",\"os.difftime\",\"os.execute\",\"os.exit\",\"os.getenv\",\"os.remove\",\"os.rename\",\"os.setlocale\",\n    \"os.time\",\"os.tmpname\",\n\n    \"package.cpath\",\"package.loaded\",\"package.loaders\",\"package.loadlib\",\"package.path\",\"package.preload\",\n    \"package.seeall\",\n\n    \"string.byte\",\"string.char\",\"string.dump\",\"string.find\",\"string.format\",\"string.gmatch\",\"string.gsub\",\n    \"string.len\",\"string.lower\",\"string.match\",\"string.rep\",\"string.reverse\",\"string.sub\",\"string.upper\",\n\n    \"table.concat\",\"table.insert\",\"table.maxn\",\"table.remove\",\"table.sort\"\n  ]);\n  var keywords = wordRE([\"and\",\"break\",\"elseif\",\"false\",\"nil\",\"not\",\"or\",\"return\",\n                         \"true\",\"function\", \"end\", \"if\", \"then\", \"else\", \"do\",\n                         \"while\", \"repeat\", \"until\", \"for\", \"in\", \"local\" ]);\n\n  var indentTokens = wordRE([\"function\", \"if\",\"repeat\",\"do\", \"\\\\(\", \"{\"]);\n  var dedentTokens = wordRE([\"end\", \"until\", \"\\\\)\", \"}\"]);\n  var dedentPartial = prefixRE([\"end\", \"until\", \"\\\\)\", \"}\", \"else\", \"elseif\"]);\n\n  function readBracket(stream) {\n    var level = 0;\n    while (stream.eat(\"=\")) ++level;\n    stream.eat(\"[\");\n    return level;\n  }\n\n  function normal(stream, state) {\n    var ch = stream.next();\n    if (ch == \"-\" && stream.eat(\"-\")) {\n      if (stream.eat(\"[\") && stream.eat(\"[\"))\n        return (state.cur = bracketed(readBracket(stream), \"comment\"))(stream, state);\n      stream.skipToEnd();\n      return \"comment\";\n    }\n    if (ch == \"\\\"\" || ch == \"'\")\n      return (state.cur = string(ch))(stream, state);\n    if (ch == \"[\" && /[\\[=]/.test(stream.peek()))\n      return (state.cur = bracketed(readBracket(stream), \"string\"))(stream, state);\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w.%]/);\n      return \"number\";\n    }\n    if (/[\\w_]/.test(ch)) {\n      stream.eatWhile(/[\\w\\\\\\-_.]/);\n      return \"variable\";\n    }\n    return null;\n  }\n\n  function bracketed(level, style) {\n    return function(stream, state) {\n      var curlev = null, ch;\n      while ((ch = stream.next()) != null) {\n        if (curlev == null) {if (ch == \"]\") curlev = 0;}\n        else if (ch == \"=\") ++curlev;\n        else if (ch == \"]\" && curlev == level) { state.cur = normal; break; }\n        else curlev = null;\n      }\n      return style;\n    };\n  }\n\n  function string(quote) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && !escaped) break;\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      if (!escaped) state.cur = normal;\n      return \"string\";\n    };\n  }\n\n  return {\n    startState: function(basecol) {\n      return {basecol: basecol || 0, indentDepth: 0, cur: normal};\n    },\n\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      var style = state.cur(stream, state);\n      var word = stream.current();\n      if (style == \"variable\") {\n        if (keywords.test(word)) style = \"keyword\";\n        else if (builtins.test(word)) style = \"builtin\";\n        else if (specials.test(word)) style = \"variable-2\";\n      }\n      if ((style != \"comment\") && (style != \"string\")){\n        if (indentTokens.test(word)) ++state.indentDepth;\n        else if (dedentTokens.test(word)) --state.indentDepth;\n      }\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      var closing = dedentPartial.test(textAfter);\n      return state.basecol + indentUnit * (state.indentDepth - (closing ? 1 : 0));\n    },\n\n    lineComment: \"--\",\n    blockCommentStart: \"--[[\",\n    blockCommentEnd: \"]]\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-lua\", \"lua\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/markdown/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Markdown mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/continuelist.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"markdown.js\"></script>\n<style type=\"text/css\">\n      .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}\n      .cm-s-default .cm-trailing-space-a:before,\n      .cm-s-default .cm-trailing-space-b:before {position: absolute; content: \"\\00B7\"; color: #777;}\n      .cm-s-default .cm-trailing-space-new-line:before {position: absolute; content: \"\\21B5\"; color: #777;}\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Markdown</a>\n  </ul>\n</div>\n\n<article>\n<h2>Markdown mode</h2>\n<form><textarea id=\"code\" name=\"code\">\nMarkdown: Basics\n================\n\n&lt;ul id=\"ProjectSubmenu\"&gt;\n    &lt;li&gt;&lt;a href=\"/projects/markdown/\" title=\"Markdown Project Page\"&gt;Main&lt;/a&gt;&lt;/li&gt;\n    &lt;li&gt;&lt;a class=\"selected\" title=\"Markdown Basics\"&gt;Basics&lt;/a&gt;&lt;/li&gt;\n    &lt;li&gt;&lt;a href=\"/projects/markdown/syntax\" title=\"Markdown Syntax Documentation\"&gt;Syntax&lt;/a&gt;&lt;/li&gt;\n    &lt;li&gt;&lt;a href=\"/projects/markdown/license\" title=\"Pricing and License Information\"&gt;License&lt;/a&gt;&lt;/li&gt;\n    &lt;li&gt;&lt;a href=\"/projects/markdown/dingus\" title=\"Online Markdown Web Form\"&gt;Dingus&lt;/a&gt;&lt;/li&gt;\n&lt;/ul&gt;\n\n\nGetting the Gist of Markdown's Formatting Syntax\n------------------------------------------------\n\nThis page offers a brief overview of what it's like to use Markdown.\nThe [syntax page] [s] provides complete, detailed documentation for\nevery feature, but Markdown should be very easy to pick up simply by\nlooking at a few examples of it in action. The examples on this page\nare written in a before/after style, showing example syntax and the\nHTML output produced by Markdown.\n\nIt's also helpful to simply try Markdown out; the [Dingus] [d] is a\nweb application that allows you type your own Markdown-formatted text\nand translate it to XHTML.\n\n**Note:** This document is itself written using Markdown; you\ncan [see the source for it by adding '.text' to the URL] [src].\n\n  [s]: /projects/markdown/syntax  \"Markdown Syntax\"\n  [d]: /projects/markdown/dingus  \"Markdown Dingus\"\n  [src]: /projects/markdown/basics.text\n\n\n## Paragraphs, Headers, Blockquotes ##\n\nA paragraph is simply one or more consecutive lines of text, separated\nby one or more blank lines. (A blank line is any line that looks like\na blank line -- a line containing nothing but spaces or tabs is\nconsidered blank.) Normal paragraphs should not be indented with\nspaces or tabs.\n\nMarkdown offers two styles of headers: *Setext* and *atx*.\nSetext-style headers for `&lt;h1&gt;` and `&lt;h2&gt;` are created by\n\"underlining\" with equal signs (`=`) and hyphens (`-`), respectively.\nTo create an atx-style header, you put 1-6 hash marks (`#`) at the\nbeginning of the line -- the number of hashes equals the resulting\nHTML header level.\n\nBlockquotes are indicated using email-style '`&gt;`' angle brackets.\n\nMarkdown:\n\n    A First Level Header\n    ====================\n    \n    A Second Level Header\n    ---------------------\n\n    Now is the time for all good men to come to\n    the aid of their country. This is just a\n    regular paragraph.\n\n    The quick brown fox jumped over the lazy\n    dog's back.\n    \n    ### Header 3\n\n    &gt; This is a blockquote.\n    &gt; \n    &gt; This is the second paragraph in the blockquote.\n    &gt;\n    &gt; ## This is an H2 in a blockquote\n\n\nOutput:\n\n    &lt;h1&gt;A First Level Header&lt;/h1&gt;\n    \n    &lt;h2&gt;A Second Level Header&lt;/h2&gt;\n    \n    &lt;p&gt;Now is the time for all good men to come to\n    the aid of their country. This is just a\n    regular paragraph.&lt;/p&gt;\n    \n    &lt;p&gt;The quick brown fox jumped over the lazy\n    dog's back.&lt;/p&gt;\n    \n    &lt;h3&gt;Header 3&lt;/h3&gt;\n    \n    &lt;blockquote&gt;\n        &lt;p&gt;This is a blockquote.&lt;/p&gt;\n        \n        &lt;p&gt;This is the second paragraph in the blockquote.&lt;/p&gt;\n        \n        &lt;h2&gt;This is an H2 in a blockquote&lt;/h2&gt;\n    &lt;/blockquote&gt;\n\n\n\n### Phrase Emphasis ###\n\nMarkdown uses asterisks and underscores to indicate spans of emphasis.\n\nMarkdown:\n\n    Some of these words *are emphasized*.\n    Some of these words _are emphasized also_.\n    \n    Use two asterisks for **strong emphasis**.\n    Or, if you prefer, __use two underscores instead__.\n\nOutput:\n\n    &lt;p&gt;Some of these words &lt;em&gt;are emphasized&lt;/em&gt;.\n    Some of these words &lt;em&gt;are emphasized also&lt;/em&gt;.&lt;/p&gt;\n    \n    &lt;p&gt;Use two asterisks for &lt;strong&gt;strong emphasis&lt;/strong&gt;.\n    Or, if you prefer, &lt;strong&gt;use two underscores instead&lt;/strong&gt;.&lt;/p&gt;\n   \n\n\n## Lists ##\n\nUnordered (bulleted) lists use asterisks, pluses, and hyphens (`*`,\n`+`, and `-`) as list markers. These three markers are\ninterchangable; this:\n\n    *   Candy.\n    *   Gum.\n    *   Booze.\n\nthis:\n\n    +   Candy.\n    +   Gum.\n    +   Booze.\n\nand this:\n\n    -   Candy.\n    -   Gum.\n    -   Booze.\n\nall produce the same output:\n\n    &lt;ul&gt;\n    &lt;li&gt;Candy.&lt;/li&gt;\n    &lt;li&gt;Gum.&lt;/li&gt;\n    &lt;li&gt;Booze.&lt;/li&gt;\n    &lt;/ul&gt;\n\nOrdered (numbered) lists use regular numbers, followed by periods, as\nlist markers:\n\n    1.  Red\n    2.  Green\n    3.  Blue\n\nOutput:\n\n    &lt;ol&gt;\n    &lt;li&gt;Red&lt;/li&gt;\n    &lt;li&gt;Green&lt;/li&gt;\n    &lt;li&gt;Blue&lt;/li&gt;\n    &lt;/ol&gt;\n\nIf you put blank lines between items, you'll get `&lt;p&gt;` tags for the\nlist item text. You can create multi-paragraph list items by indenting\nthe paragraphs by 4 spaces or 1 tab:\n\n    *   A list item.\n    \n        With multiple paragraphs.\n\n    *   Another item in the list.\n\nOutput:\n\n    &lt;ul&gt;\n    &lt;li&gt;&lt;p&gt;A list item.&lt;/p&gt;\n    &lt;p&gt;With multiple paragraphs.&lt;/p&gt;&lt;/li&gt;\n    &lt;li&gt;&lt;p&gt;Another item in the list.&lt;/p&gt;&lt;/li&gt;\n    &lt;/ul&gt;\n    \n\n\n### Links ###\n\nMarkdown supports two styles for creating links: *inline* and\n*reference*. With both styles, you use square brackets to delimit the\ntext you want to turn into a link.\n\nInline-style links use parentheses immediately after the link text.\nFor example:\n\n    This is an [example link](http://example.com/).\n\nOutput:\n\n    &lt;p&gt;This is an &lt;a href=\"http://example.com/\"&gt;\n    example link&lt;/a&gt;.&lt;/p&gt;\n\nOptionally, you may include a title attribute in the parentheses:\n\n    This is an [example link](http://example.com/ \"With a Title\").\n\nOutput:\n\n    &lt;p&gt;This is an &lt;a href=\"http://example.com/\" title=\"With a Title\"&gt;\n    example link&lt;/a&gt;.&lt;/p&gt;\n\nReference-style links allow you to refer to your links by names, which\nyou define elsewhere in your document:\n\n    I get 10 times more traffic from [Google][1] than from\n    [Yahoo][2] or [MSN][3].\n\n    [1]: http://google.com/        \"Google\"\n    [2]: http://search.yahoo.com/  \"Yahoo Search\"\n    [3]: http://search.msn.com/    \"MSN Search\"\n\nOutput:\n\n    &lt;p&gt;I get 10 times more traffic from &lt;a href=\"http://google.com/\"\n    title=\"Google\"&gt;Google&lt;/a&gt; than from &lt;a href=\"http://search.yahoo.com/\"\n    title=\"Yahoo Search\"&gt;Yahoo&lt;/a&gt; or &lt;a href=\"http://search.msn.com/\"\n    title=\"MSN Search\"&gt;MSN&lt;/a&gt;.&lt;/p&gt;\n\nThe title attribute is optional. Link names may contain letters,\nnumbers and spaces, but are *not* case sensitive:\n\n    I start my morning with a cup of coffee and\n    [The New York Times][NY Times].\n\n    [ny times]: http://www.nytimes.com/\n\nOutput:\n\n    &lt;p&gt;I start my morning with a cup of coffee and\n    &lt;a href=\"http://www.nytimes.com/\"&gt;The New York Times&lt;/a&gt;.&lt;/p&gt;\n\n\n### Images ###\n\nImage syntax is very much like link syntax.\n\nInline (titles are optional):\n\n    ![alt text](/path/to/img.jpg \"Title\")\n\nReference-style:\n\n    ![alt text][id]\n\n    [id]: /path/to/img.jpg \"Title\"\n\nBoth of the above examples produce the same output:\n\n    &lt;img src=\"/path/to/img.jpg\" alt=\"alt text\" title=\"Title\" /&gt;\n\n\n\n### Code ###\n\nIn a regular paragraph, you can create code span by wrapping text in\nbacktick quotes. Any ampersands (`&amp;`) and angle brackets (`&lt;` or\n`&gt;`) will automatically be translated into HTML entities. This makes\nit easy to use Markdown to write about HTML example code:\n\n    I strongly recommend against using any `&lt;blink&gt;` tags.\n\n    I wish SmartyPants used named entities like `&amp;mdash;`\n    instead of decimal-encoded entites like `&amp;#8212;`.\n\nOutput:\n\n    &lt;p&gt;I strongly recommend against using any\n    &lt;code&gt;&amp;lt;blink&amp;gt;&lt;/code&gt; tags.&lt;/p&gt;\n    \n    &lt;p&gt;I wish SmartyPants used named entities like\n    &lt;code&gt;&amp;amp;mdash;&lt;/code&gt; instead of decimal-encoded\n    entites like &lt;code&gt;&amp;amp;#8212;&lt;/code&gt;.&lt;/p&gt;\n\n\nTo specify an entire block of pre-formatted code, indent every line of\nthe block by 4 spaces or 1 tab. Just like with code spans, `&amp;`, `&lt;`,\nand `&gt;` characters will be escaped automatically.\n\nMarkdown:\n\n    If you want your page to validate under XHTML 1.0 Strict,\n    you've got to put paragraph tags in your blockquotes:\n\n        &lt;blockquote&gt;\n            &lt;p&gt;For example.&lt;/p&gt;\n        &lt;/blockquote&gt;\n\nOutput:\n\n    &lt;p&gt;If you want your page to validate under XHTML 1.0 Strict,\n    you've got to put paragraph tags in your blockquotes:&lt;/p&gt;\n    \n    &lt;pre&gt;&lt;code&gt;&amp;lt;blockquote&amp;gt;\n        &amp;lt;p&amp;gt;For example.&amp;lt;/p&amp;gt;\n    &amp;lt;/blockquote&amp;gt;\n    &lt;/code&gt;&lt;/pre&gt;\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: 'markdown',\n        lineNumbers: true,\n        theme: \"default\",\n        extraKeys: {\"Enter\": \"newlineAndIndentContinueMarkdownList\"}\n      });\n    </script>\n\n    <p>Optionally depends on the XML mode for properly highlighted inline XML blocks.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-markdown</code>.</p>\n\n    <p><strong>Parsing/Highlighting Tests:</strong> <a href=\"../../test/index.html#markdown_*\">normal</a>,  <a href=\"../../test/index.html#verbose,markdown_*\">verbose</a>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/markdown/markdown.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\", require(\"../xml/xml\")));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../xml/xml\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"markdown\", function(cmCfg, modeCfg) {\n\n  var htmlFound = CodeMirror.modes.hasOwnProperty(\"xml\");\n  var htmlMode = CodeMirror.getMode(cmCfg, htmlFound ? {name: \"xml\", htmlMode: true} : \"text/plain\");\n  var aliases = {\n    html: \"htmlmixed\",\n    js: \"javascript\",\n    json: \"application/json\",\n    c: \"text/x-csrc\",\n    \"c++\": \"text/x-c++src\",\n    java: \"text/x-java\",\n    csharp: \"text/x-csharp\",\n    \"c#\": \"text/x-csharp\",\n    scala: \"text/x-scala\"\n  };\n\n  var getMode = (function () {\n    var i, modes = {}, mimes = {}, mime;\n\n    var list = [];\n    for (var m in CodeMirror.modes)\n      if (CodeMirror.modes.propertyIsEnumerable(m)) list.push(m);\n    for (i = 0; i < list.length; i++) {\n      modes[list[i]] = list[i];\n    }\n    var mimesList = [];\n    for (var m in CodeMirror.mimeModes)\n      if (CodeMirror.mimeModes.propertyIsEnumerable(m))\n        mimesList.push({mime: m, mode: CodeMirror.mimeModes[m]});\n    for (i = 0; i < mimesList.length; i++) {\n      mime = mimesList[i].mime;\n      mimes[mime] = mimesList[i].mime;\n    }\n\n    for (var a in aliases) {\n      if (aliases[a] in modes || aliases[a] in mimes)\n        modes[a] = aliases[a];\n    }\n\n    return function (lang) {\n      return modes[lang] ? CodeMirror.getMode(cmCfg, modes[lang]) : null;\n    };\n  }());\n\n  // Should characters that affect highlighting be highlighted separate?\n  // Does not include characters that will be output (such as `1.` and `-` for lists)\n  if (modeCfg.highlightFormatting === undefined)\n    modeCfg.highlightFormatting = false;\n\n  // Maximum number of nested blockquotes. Set to 0 for infinite nesting.\n  // Excess `>` will emit `error` token.\n  if (modeCfg.maxBlockquoteDepth === undefined)\n    modeCfg.maxBlockquoteDepth = 0;\n\n  // Should underscores in words open/close em/strong?\n  if (modeCfg.underscoresBreakWords === undefined)\n    modeCfg.underscoresBreakWords = true;\n\n  // Turn on fenced code blocks? (\"```\" to start/end)\n  if (modeCfg.fencedCodeBlocks === undefined) modeCfg.fencedCodeBlocks = false;\n\n  // Turn on task lists? (\"- [ ] \" and \"- [x] \")\n  if (modeCfg.taskLists === undefined) modeCfg.taskLists = false;\n\n  var codeDepth = 0;\n\n  var header   = 'header'\n  ,   code     = 'comment'\n  ,   quote    = 'quote'\n  ,   list1    = 'variable-2'\n  ,   list2    = 'variable-3'\n  ,   list3    = 'keyword'\n  ,   hr       = 'hr'\n  ,   image    = 'tag'\n  ,   formatting = 'formatting'\n  ,   linkinline = 'link'\n  ,   linkemail = 'link'\n  ,   linktext = 'link'\n  ,   linkhref = 'string'\n  ,   em       = 'em'\n  ,   strong   = 'strong';\n\n  var hrRE = /^([*\\-=_])(?:\\s*\\1){2,}\\s*$/\n  ,   ulRE = /^[*\\-+]\\s+/\n  ,   olRE = /^[0-9]+\\.\\s+/\n  ,   taskListRE = /^\\[(x| )\\](?=\\s)/ // Must follow ulRE or olRE\n  ,   atxHeaderRE = /^#+/\n  ,   setextHeaderRE = /^(?:\\={1,}|-{1,})$/\n  ,   textRE = /^[^#!\\[\\]*_\\\\<>` \"'(]+/;\n\n  function switchInline(stream, state, f) {\n    state.f = state.inline = f;\n    return f(stream, state);\n  }\n\n  function switchBlock(stream, state, f) {\n    state.f = state.block = f;\n    return f(stream, state);\n  }\n\n\n  // Blocks\n\n  function blankLine(state) {\n    // Reset linkTitle state\n    state.linkTitle = false;\n    // Reset EM state\n    state.em = false;\n    // Reset STRONG state\n    state.strong = false;\n    // Reset state.quote\n    state.quote = 0;\n    if (!htmlFound && state.f == htmlBlock) {\n      state.f = inlineNormal;\n      state.block = blockNormal;\n    }\n    // Reset state.trailingSpace\n    state.trailingSpace = 0;\n    state.trailingSpaceNewLine = false;\n    // Mark this line as blank\n    state.thisLineHasContent = false;\n    return null;\n  }\n\n  function blockNormal(stream, state) {\n\n    var sol = stream.sol();\n\n    var prevLineIsList = (state.list !== false);\n    if (state.list !== false && state.indentationDiff >= 0) { // Continued list\n      if (state.indentationDiff < 4) { // Only adjust indentation if *not* a code block\n        state.indentation -= state.indentationDiff;\n      }\n      state.list = null;\n    } else if (state.list !== false && state.indentation > 0) {\n      state.list = null;\n      state.listDepth = Math.floor(state.indentation / 4);\n    } else if (state.list !== false) { // No longer a list\n      state.list = false;\n      state.listDepth = 0;\n    }\n\n    var match = null;\n    if (state.indentationDiff >= 4) {\n      state.indentation -= 4;\n      stream.skipToEnd();\n      return code;\n    } else if (stream.eatSpace()) {\n      return null;\n    } else if (match = stream.match(atxHeaderRE)) {\n      state.header = match[0].length <= 6 ? match[0].length : 6;\n      if (modeCfg.highlightFormatting) state.formatting = \"header\";\n      state.f = state.inline;\n      return getType(state);\n    } else if (state.prevLineHasContent && (match = stream.match(setextHeaderRE))) {\n      state.header = match[0].charAt(0) == '=' ? 1 : 2;\n      if (modeCfg.highlightFormatting) state.formatting = \"header\";\n      state.f = state.inline;\n      return getType(state);\n    } else if (stream.eat('>')) {\n      state.indentation++;\n      state.quote = sol ? 1 : state.quote + 1;\n      if (modeCfg.highlightFormatting) state.formatting = \"quote\";\n      stream.eatSpace();\n      return getType(state);\n    } else if (stream.peek() === '[') {\n      return switchInline(stream, state, footnoteLink);\n    } else if (stream.match(hrRE, true)) {\n      return hr;\n    } else if ((!state.prevLineHasContent || prevLineIsList) && (stream.match(ulRE, false) || stream.match(olRE, false))) {\n      var listType = null;\n      if (stream.match(ulRE, true)) {\n        listType = 'ul';\n      } else {\n        stream.match(olRE, true);\n        listType = 'ol';\n      }\n      state.indentation += 4;\n      state.list = true;\n      state.listDepth++;\n      if (modeCfg.taskLists && stream.match(taskListRE, false)) {\n        state.taskList = true;\n      }\n      state.f = state.inline;\n      if (modeCfg.highlightFormatting) state.formatting = [\"list\", \"list-\" + listType];\n      return getType(state);\n    } else if (modeCfg.fencedCodeBlocks && stream.match(/^```([\\w+#]*)/, true)) {\n      // try switching mode\n      state.localMode = getMode(RegExp.$1);\n      if (state.localMode) state.localState = state.localMode.startState();\n      switchBlock(stream, state, local);\n      if (modeCfg.highlightFormatting) state.formatting = \"code-block\";\n      state.code = true;\n      return getType(state);\n    }\n\n    return switchInline(stream, state, state.inline);\n  }\n\n  function htmlBlock(stream, state) {\n    var style = htmlMode.token(stream, state.htmlState);\n    if ((htmlFound && state.htmlState.tagStart === null && !state.htmlState.context) ||\n        (state.md_inside && stream.current().indexOf(\">\") > -1)) {\n      state.f = inlineNormal;\n      state.block = blockNormal;\n      state.htmlState = null;\n    }\n    return style;\n  }\n\n  function local(stream, state) {\n    if (stream.sol() && stream.match(/^```/, true)) {\n      state.localMode = state.localState = null;\n      state.f = inlineNormal;\n      state.block = blockNormal;\n      if (modeCfg.highlightFormatting) state.formatting = \"code-block\";\n      state.code = true;\n      var returnType = getType(state);\n      state.code = false;\n      return returnType;\n    } else if (state.localMode) {\n      return state.localMode.token(stream, state.localState);\n    } else {\n      stream.skipToEnd();\n      return code;\n    }\n  }\n\n  // Inline\n  function getType(state) {\n    var styles = [];\n\n    if (state.formatting) {\n      styles.push(formatting);\n\n      if (typeof state.formatting === \"string\") state.formatting = [state.formatting];\n\n      for (var i = 0; i < state.formatting.length; i++) {\n        styles.push(formatting + \"-\" + state.formatting[i]);\n\n        if (state.formatting[i] === \"header\") {\n          styles.push(formatting + \"-\" + state.formatting[i] + \"-\" + state.header);\n        }\n\n        // Add `formatting-quote` and `formatting-quote-#` for blockquotes\n        // Add `error` instead if the maximum blockquote nesting depth is passed\n        if (state.formatting[i] === \"quote\") {\n          if (!modeCfg.maxBlockquoteDepth || modeCfg.maxBlockquoteDepth >= state.quote) {\n            styles.push(formatting + \"-\" + state.formatting[i] + \"-\" + state.quote);\n          } else {\n            styles.push(\"error\");\n          }\n        }\n      }\n    }\n\n    if (state.taskOpen) {\n      styles.push(\"meta\");\n      return styles.length ? styles.join(' ') : null;\n    }\n    if (state.taskClosed) {\n      styles.push(\"property\");\n      return styles.length ? styles.join(' ') : null;\n    }\n\n    if (state.linkHref) {\n      styles.push(linkhref);\n      return styles.length ? styles.join(' ') : null;\n    }\n\n    if (state.strong) { styles.push(strong); }\n    if (state.em) { styles.push(em); }\n\n    if (state.linkText) { styles.push(linktext); }\n\n    if (state.code) { styles.push(code); }\n\n    if (state.header) { styles.push(header); styles.push(header + \"-\" + state.header); }\n\n    if (state.quote) {\n      styles.push(quote);\n\n      // Add `quote-#` where the maximum for `#` is modeCfg.maxBlockquoteDepth\n      if (!modeCfg.maxBlockquoteDepth || modeCfg.maxBlockquoteDepth >= state.quote) {\n        styles.push(quote + \"-\" + state.quote);\n      } else {\n        styles.push(quote + \"-\" + modeCfg.maxBlockquoteDepth);\n      }\n    }\n\n    if (state.list !== false) {\n      var listMod = (state.listDepth - 1) % 3;\n      if (!listMod) {\n        styles.push(list1);\n      } else if (listMod === 1) {\n        styles.push(list2);\n      } else {\n        styles.push(list3);\n      }\n    }\n\n    if (state.trailingSpaceNewLine) {\n      styles.push(\"trailing-space-new-line\");\n    } else if (state.trailingSpace) {\n      styles.push(\"trailing-space-\" + (state.trailingSpace % 2 ? \"a\" : \"b\"));\n    }\n\n    return styles.length ? styles.join(' ') : null;\n  }\n\n  function handleText(stream, state) {\n    if (stream.match(textRE, true)) {\n      return getType(state);\n    }\n    return undefined;\n  }\n\n  function inlineNormal(stream, state) {\n    var style = state.text(stream, state);\n    if (typeof style !== 'undefined')\n      return style;\n\n    if (state.list) { // List marker (*, +, -, 1., etc)\n      state.list = null;\n      return getType(state);\n    }\n\n    if (state.taskList) {\n      var taskOpen = stream.match(taskListRE, true)[1] !== \"x\";\n      if (taskOpen) state.taskOpen = true;\n      else state.taskClosed = true;\n      if (modeCfg.highlightFormatting) state.formatting = \"task\";\n      state.taskList = false;\n      return getType(state);\n    }\n\n    state.taskOpen = false;\n    state.taskClosed = false;\n\n    if (state.header && stream.match(/^#+$/, true)) {\n      if (modeCfg.highlightFormatting) state.formatting = \"header\";\n      return getType(state);\n    }\n\n    // Get sol() value now, before character is consumed\n    var sol = stream.sol();\n\n    var ch = stream.next();\n\n    if (ch === '\\\\') {\n      stream.next();\n      if (modeCfg.highlightFormatting) {\n        var type = getType(state);\n        return type ? type + \" formatting-escape\" : \"formatting-escape\";\n      }\n    }\n\n    // Matches link titles present on next line\n    if (state.linkTitle) {\n      state.linkTitle = false;\n      var matchCh = ch;\n      if (ch === '(') {\n        matchCh = ')';\n      }\n      matchCh = (matchCh+'').replace(/([.?*+^$[\\]\\\\(){}|-])/g, \"\\\\$1\");\n      var regex = '^\\\\s*(?:[^' + matchCh + '\\\\\\\\]+|\\\\\\\\\\\\\\\\|\\\\\\\\.)' + matchCh;\n      if (stream.match(new RegExp(regex), true)) {\n        return linkhref;\n      }\n    }\n\n    // If this block is changed, it may need to be updated in GFM mode\n    if (ch === '`') {\n      var previousFormatting = state.formatting;\n      if (modeCfg.highlightFormatting) state.formatting = \"code\";\n      var t = getType(state);\n      var before = stream.pos;\n      stream.eatWhile('`');\n      var difference = 1 + stream.pos - before;\n      if (!state.code) {\n        codeDepth = difference;\n        state.code = true;\n        return getType(state);\n      } else {\n        if (difference === codeDepth) { // Must be exact\n          state.code = false;\n          return t;\n        }\n        state.formatting = previousFormatting;\n        return getType(state);\n      }\n    } else if (state.code) {\n      return getType(state);\n    }\n\n    if (ch === '!' && stream.match(/\\[[^\\]]*\\] ?(?:\\(|\\[)/, false)) {\n      stream.match(/\\[[^\\]]*\\]/);\n      state.inline = state.f = linkHref;\n      return image;\n    }\n\n    if (ch === '[' && stream.match(/.*\\](\\(| ?\\[)/, false)) {\n      state.linkText = true;\n      if (modeCfg.highlightFormatting) state.formatting = \"link\";\n      return getType(state);\n    }\n\n    if (ch === ']' && state.linkText) {\n      if (modeCfg.highlightFormatting) state.formatting = \"link\";\n      var type = getType(state);\n      state.linkText = false;\n      state.inline = state.f = linkHref;\n      return type;\n    }\n\n    if (ch === '<' && stream.match(/^(https?|ftps?):\\/\\/(?:[^\\\\>]|\\\\.)+>/, false)) {\n      state.f = state.inline = linkInline;\n      if (modeCfg.highlightFormatting) state.formatting = \"link\";\n      var type = getType(state);\n      if (type){\n        type += \" \";\n      } else {\n        type = \"\";\n      }\n      return type + linkinline;\n    }\n\n    if (ch === '<' && stream.match(/^[^> \\\\]+@(?:[^\\\\>]|\\\\.)+>/, false)) {\n      state.f = state.inline = linkInline;\n      if (modeCfg.highlightFormatting) state.formatting = \"link\";\n      var type = getType(state);\n      if (type){\n        type += \" \";\n      } else {\n        type = \"\";\n      }\n      return type + linkemail;\n    }\n\n    if (ch === '<' && stream.match(/^\\w/, false)) {\n      if (stream.string.indexOf(\">\") != -1) {\n        var atts = stream.string.substring(1,stream.string.indexOf(\">\"));\n        if (/markdown\\s*=\\s*('|\"){0,1}1('|\"){0,1}/.test(atts)) {\n          state.md_inside = true;\n        }\n      }\n      stream.backUp(1);\n      state.htmlState = CodeMirror.startState(htmlMode);\n      return switchBlock(stream, state, htmlBlock);\n    }\n\n    if (ch === '<' && stream.match(/^\\/\\w*?>/)) {\n      state.md_inside = false;\n      return \"tag\";\n    }\n\n    var ignoreUnderscore = false;\n    if (!modeCfg.underscoresBreakWords) {\n      if (ch === '_' && stream.peek() !== '_' && stream.match(/(\\w)/, false)) {\n        var prevPos = stream.pos - 2;\n        if (prevPos >= 0) {\n          var prevCh = stream.string.charAt(prevPos);\n          if (prevCh !== '_' && prevCh.match(/(\\w)/, false)) {\n            ignoreUnderscore = true;\n          }\n        }\n      }\n    }\n    if (ch === '*' || (ch === '_' && !ignoreUnderscore)) {\n      if (sol && stream.peek() === ' ') {\n        // Do nothing, surrounded by newline and space\n      } else if (state.strong === ch && stream.eat(ch)) { // Remove STRONG\n        if (modeCfg.highlightFormatting) state.formatting = \"strong\";\n        var t = getType(state);\n        state.strong = false;\n        return t;\n      } else if (!state.strong && stream.eat(ch)) { // Add STRONG\n        state.strong = ch;\n        if (modeCfg.highlightFormatting) state.formatting = \"strong\";\n        return getType(state);\n      } else if (state.em === ch) { // Remove EM\n        if (modeCfg.highlightFormatting) state.formatting = \"em\";\n        var t = getType(state);\n        state.em = false;\n        return t;\n      } else if (!state.em) { // Add EM\n        state.em = ch;\n        if (modeCfg.highlightFormatting) state.formatting = \"em\";\n        return getType(state);\n      }\n    } else if (ch === ' ') {\n      if (stream.eat('*') || stream.eat('_')) { // Probably surrounded by spaces\n        if (stream.peek() === ' ') { // Surrounded by spaces, ignore\n          return getType(state);\n        } else { // Not surrounded by spaces, back up pointer\n          stream.backUp(1);\n        }\n      }\n    }\n\n    if (ch === ' ') {\n      if (stream.match(/ +$/, false)) {\n        state.trailingSpace++;\n      } else if (state.trailingSpace) {\n        state.trailingSpaceNewLine = true;\n      }\n    }\n\n    return getType(state);\n  }\n\n  function linkInline(stream, state) {\n    var ch = stream.next();\n\n    if (ch === \">\") {\n      state.f = state.inline = inlineNormal;\n      if (modeCfg.highlightFormatting) state.formatting = \"link\";\n      var type = getType(state);\n      if (type){\n        type += \" \";\n      } else {\n        type = \"\";\n      }\n      return type + linkinline;\n    }\n\n    stream.match(/^[^>]+/, true);\n\n    return linkinline;\n  }\n\n  function linkHref(stream, state) {\n    // Check if space, and return NULL if so (to avoid marking the space)\n    if(stream.eatSpace()){\n      return null;\n    }\n    var ch = stream.next();\n    if (ch === '(' || ch === '[') {\n      state.f = state.inline = getLinkHrefInside(ch === \"(\" ? \")\" : \"]\");\n      if (modeCfg.highlightFormatting) state.formatting = \"link-string\";\n      state.linkHref = true;\n      return getType(state);\n    }\n    return 'error';\n  }\n\n  function getLinkHrefInside(endChar) {\n    return function(stream, state) {\n      var ch = stream.next();\n\n      if (ch === endChar) {\n        state.f = state.inline = inlineNormal;\n        if (modeCfg.highlightFormatting) state.formatting = \"link-string\";\n        var returnState = getType(state);\n        state.linkHref = false;\n        return returnState;\n      }\n\n      if (stream.match(inlineRE(endChar), true)) {\n        stream.backUp(1);\n      }\n\n      state.linkHref = true;\n      return getType(state);\n    };\n  }\n\n  function footnoteLink(stream, state) {\n    if (stream.match(/^[^\\]]*\\]:/, false)) {\n      state.f = footnoteLinkInside;\n      stream.next(); // Consume [\n      if (modeCfg.highlightFormatting) state.formatting = \"link\";\n      state.linkText = true;\n      return getType(state);\n    }\n    return switchInline(stream, state, inlineNormal);\n  }\n\n  function footnoteLinkInside(stream, state) {\n    if (stream.match(/^\\]:/, true)) {\n      state.f = state.inline = footnoteUrl;\n      if (modeCfg.highlightFormatting) state.formatting = \"link\";\n      var returnType = getType(state);\n      state.linkText = false;\n      return returnType;\n    }\n\n    stream.match(/^[^\\]]+/, true);\n\n    return linktext;\n  }\n\n  function footnoteUrl(stream, state) {\n    // Check if space, and return NULL if so (to avoid marking the space)\n    if(stream.eatSpace()){\n      return null;\n    }\n    // Match URL\n    stream.match(/^[^\\s]+/, true);\n    // Check for link title\n    if (stream.peek() === undefined) { // End of line, set flag to check next line\n      state.linkTitle = true;\n    } else { // More content on line, check if link title\n      stream.match(/^(?:\\s+(?:\"(?:[^\"\\\\]|\\\\\\\\|\\\\.)+\"|'(?:[^'\\\\]|\\\\\\\\|\\\\.)+'|\\((?:[^)\\\\]|\\\\\\\\|\\\\.)+\\)))?/, true);\n    }\n    state.f = state.inline = inlineNormal;\n    return linkhref;\n  }\n\n  var savedInlineRE = [];\n  function inlineRE(endChar) {\n    if (!savedInlineRE[endChar]) {\n      // Escape endChar for RegExp (taken from http://stackoverflow.com/a/494122/526741)\n      endChar = (endChar+'').replace(/([.?*+^$[\\]\\\\(){}|-])/g, \"\\\\$1\");\n      // Match any non-endChar, escaped character, as well as the closing\n      // endChar.\n      savedInlineRE[endChar] = new RegExp('^(?:[^\\\\\\\\]|\\\\\\\\.)*?(' + endChar + ')');\n    }\n    return savedInlineRE[endChar];\n  }\n\n  var mode = {\n    startState: function() {\n      return {\n        f: blockNormal,\n\n        prevLineHasContent: false,\n        thisLineHasContent: false,\n\n        block: blockNormal,\n        htmlState: null,\n        indentation: 0,\n\n        inline: inlineNormal,\n        text: handleText,\n\n        formatting: false,\n        linkText: false,\n        linkHref: false,\n        linkTitle: false,\n        em: false,\n        strong: false,\n        header: 0,\n        taskList: false,\n        list: false,\n        listDepth: 0,\n        quote: 0,\n        trailingSpace: 0,\n        trailingSpaceNewLine: false\n      };\n    },\n\n    copyState: function(s) {\n      return {\n        f: s.f,\n\n        prevLineHasContent: s.prevLineHasContent,\n        thisLineHasContent: s.thisLineHasContent,\n\n        block: s.block,\n        htmlState: s.htmlState && CodeMirror.copyState(htmlMode, s.htmlState),\n        indentation: s.indentation,\n\n        localMode: s.localMode,\n        localState: s.localMode ? CodeMirror.copyState(s.localMode, s.localState) : null,\n\n        inline: s.inline,\n        text: s.text,\n        formatting: false,\n        linkTitle: s.linkTitle,\n        em: s.em,\n        strong: s.strong,\n        header: s.header,\n        taskList: s.taskList,\n        list: s.list,\n        listDepth: s.listDepth,\n        quote: s.quote,\n        trailingSpace: s.trailingSpace,\n        trailingSpaceNewLine: s.trailingSpaceNewLine,\n        md_inside: s.md_inside\n      };\n    },\n\n    token: function(stream, state) {\n\n      // Reset state.formatting\n      state.formatting = false;\n\n      if (stream.sol()) {\n        var forceBlankLine = !!state.header;\n\n        // Reset state.header\n        state.header = 0;\n\n        if (stream.match(/^\\s*$/, true) || forceBlankLine) {\n          state.prevLineHasContent = false;\n          blankLine(state);\n          return forceBlankLine ? this.token(stream, state) : null;\n        } else {\n          state.prevLineHasContent = state.thisLineHasContent;\n          state.thisLineHasContent = true;\n        }\n\n        // Reset state.taskList\n        state.taskList = false;\n\n        // Reset state.code\n        state.code = false;\n\n        // Reset state.trailingSpace\n        state.trailingSpace = 0;\n        state.trailingSpaceNewLine = false;\n\n        state.f = state.block;\n        var indentation = stream.match(/^\\s*/, true)[0].replace(/\\t/g, '    ').length;\n        var difference = Math.floor((indentation - state.indentation) / 4) * 4;\n        if (difference > 4) difference = 4;\n        var adjustedIndentation = state.indentation + difference;\n        state.indentationDiff = adjustedIndentation - state.indentation;\n        state.indentation = adjustedIndentation;\n        if (indentation > 0) return null;\n      }\n      var result = state.f(stream, state);\n      if (stream.start == stream.pos) return this.token(stream, state);\n      else return result;\n    },\n\n    innerMode: function(state) {\n      if (state.block == htmlBlock) return {state: state.htmlState, mode: htmlMode};\n      if (state.localState) return {state: state.localState, mode: state.localMode};\n      return {state: state, mode: mode};\n    },\n\n    blankLine: blankLine,\n\n    getType: getType,\n\n    fold: \"markdown\"\n  };\n  return mode;\n}, \"xml\");\n\nCodeMirror.defineMIME(\"text/x-markdown\", \"markdown\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/markdown/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({tabSize: 4}, \"markdown\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n  var modeHighlightFormatting = CodeMirror.getMode({tabSize: 4}, {name: \"markdown\", highlightFormatting: true});\n  function FT(name) { test.mode(name, modeHighlightFormatting, Array.prototype.slice.call(arguments, 1)); }\n\n  FT(\"formatting_emAsterisk\",\n     \"[em&formatting&formatting-em *][em foo][em&formatting&formatting-em *]\");\n\n  FT(\"formatting_emUnderscore\",\n     \"[em&formatting&formatting-em _][em foo][em&formatting&formatting-em _]\");\n\n  FT(\"formatting_strongAsterisk\",\n     \"[strong&formatting&formatting-strong **][strong foo][strong&formatting&formatting-strong **]\");\n\n  FT(\"formatting_strongUnderscore\",\n     \"[strong&formatting&formatting-strong __][strong foo][strong&formatting&formatting-strong __]\");\n\n  FT(\"formatting_codeBackticks\",\n     \"[comment&formatting&formatting-code `][comment foo][comment&formatting&formatting-code `]\");\n\n  FT(\"formatting_doubleBackticks\",\n     \"[comment&formatting&formatting-code ``][comment foo ` bar][comment&formatting&formatting-code ``]\");\n\n  FT(\"formatting_atxHeader\",\n     \"[header&header-1&formatting&formatting-header&formatting-header-1 #][header&header-1  foo # bar ][header&header-1&formatting&formatting-header&formatting-header-1 #]\");\n\n  FT(\"formatting_setextHeader\",\n     \"foo\",\n     \"[header&header-1&formatting&formatting-header&formatting-header-1 =]\");\n\n  FT(\"formatting_blockquote\",\n     \"[quote&quote-1&formatting&formatting-quote&formatting-quote-1 > ][quote&quote-1 foo]\");\n\n  FT(\"formatting_list\",\n     \"[variable-2&formatting&formatting-list&formatting-list-ul - ][variable-2 foo]\");\n  FT(\"formatting_list\",\n     \"[variable-2&formatting&formatting-list&formatting-list-ol 1. ][variable-2 foo]\");\n\n  FT(\"formatting_link\",\n     \"[link&formatting&formatting-link [][link foo][link&formatting&formatting-link ]]][string&formatting&formatting-link-string (][string http://example.com/][string&formatting&formatting-link-string )]\");\n\n  FT(\"formatting_linkReference\",\n     \"[link&formatting&formatting-link [][link foo][link&formatting&formatting-link ]]][string&formatting&formatting-link-string [][string bar][string&formatting&formatting-link-string ]]]\",\n     \"[link&formatting&formatting-link [][link bar][link&formatting&formatting-link ]]:] [string http://example.com/]\");\n\n  FT(\"formatting_linkWeb\",\n     \"[link&formatting&formatting-link <][link http://example.com/][link&formatting&formatting-link >]\");\n\n  FT(\"formatting_linkEmail\",\n     \"[link&formatting&formatting-link <][link user@example.com][link&formatting&formatting-link >]\");\n\n  FT(\"formatting_escape\",\n     \"[formatting-escape \\\\*]\");\n\n  MT(\"plainText\",\n     \"foo\");\n\n  // Don't style single trailing space\n  MT(\"trailingSpace1\",\n     \"foo \");\n\n  // Two or more trailing spaces should be styled with line break character\n  MT(\"trailingSpace2\",\n     \"foo[trailing-space-a  ][trailing-space-new-line  ]\");\n\n  MT(\"trailingSpace3\",\n     \"foo[trailing-space-a  ][trailing-space-b  ][trailing-space-new-line  ]\");\n\n  MT(\"trailingSpace4\",\n     \"foo[trailing-space-a  ][trailing-space-b  ][trailing-space-a  ][trailing-space-new-line  ]\");\n\n  // Code blocks using 4 spaces (regardless of CodeMirror.tabSize value)\n  MT(\"codeBlocksUsing4Spaces\",\n     \"    [comment foo]\");\n\n  // Code blocks using 4 spaces with internal indentation\n  MT(\"codeBlocksUsing4SpacesIndentation\",\n     \"    [comment bar]\",\n     \"        [comment hello]\",\n     \"            [comment world]\",\n     \"    [comment foo]\",\n     \"bar\");\n\n  // Code blocks using 4 spaces with internal indentation\n  MT(\"codeBlocksUsing4SpacesIndentation\",\n     \" foo\",\n     \"    [comment bar]\",\n     \"        [comment hello]\",\n     \"    [comment world]\");\n\n  // Code blocks should end even after extra indented lines\n  MT(\"codeBlocksWithTrailingIndentedLine\",\n     \"    [comment foo]\",\n     \"        [comment bar]\",\n     \"    [comment baz]\",\n     \"    \",\n     \"hello\");\n\n  // Code blocks using 1 tab (regardless of CodeMirror.indentWithTabs value)\n  MT(\"codeBlocksUsing1Tab\",\n     \"\\t[comment foo]\");\n\n  // Inline code using backticks\n  MT(\"inlineCodeUsingBackticks\",\n     \"foo [comment `bar`]\");\n\n  // Block code using single backtick (shouldn't work)\n  MT(\"blockCodeSingleBacktick\",\n     \"[comment `]\",\n     \"foo\",\n     \"[comment `]\");\n\n  // Unclosed backticks\n  // Instead of simply marking as CODE, it would be nice to have an\n  // incomplete flag for CODE, that is styled slightly different.\n  MT(\"unclosedBackticks\",\n     \"foo [comment `bar]\");\n\n  // Per documentation: \"To include a literal backtick character within a\n  // code span, you can use multiple backticks as the opening and closing\n  // delimiters\"\n  MT(\"doubleBackticks\",\n     \"[comment ``foo ` bar``]\");\n\n  // Tests based on Dingus\n  // http://daringfireball.net/projects/markdown/dingus\n  //\n  // Multiple backticks within an inline code block\n  MT(\"consecutiveBackticks\",\n     \"[comment `foo```bar`]\");\n\n  // Multiple backticks within an inline code block with a second code block\n  MT(\"consecutiveBackticks\",\n     \"[comment `foo```bar`] hello [comment `world`]\");\n\n  // Unclosed with several different groups of backticks\n  MT(\"unclosedBackticks\",\n     \"[comment ``foo ``` bar` hello]\");\n\n  // Closed with several different groups of backticks\n  MT(\"closedBackticks\",\n     \"[comment ``foo ``` bar` hello``] world\");\n\n  // atx headers\n  // http://daringfireball.net/projects/markdown/syntax#header\n\n  MT(\"atxH1\",\n     \"[header&header-1 # foo]\");\n\n  MT(\"atxH2\",\n     \"[header&header-2 ## foo]\");\n\n  MT(\"atxH3\",\n     \"[header&header-3 ### foo]\");\n\n  MT(\"atxH4\",\n     \"[header&header-4 #### foo]\");\n\n  MT(\"atxH5\",\n     \"[header&header-5 ##### foo]\");\n\n  MT(\"atxH6\",\n     \"[header&header-6 ###### foo]\");\n\n  // H6 - 7x '#' should still be H6, per Dingus\n  // http://daringfireball.net/projects/markdown/dingus\n  MT(\"atxH6NotH7\",\n     \"[header&header-6 ####### foo]\");\n\n  // Inline styles should be parsed inside headers\n  MT(\"atxH1inline\",\n     \"[header&header-1 # foo ][header&header-1&em *bar*]\");\n\n  // Setext headers - H1, H2\n  // Per documentation, \"Any number of underlining =’s or -’s will work.\"\n  // http://daringfireball.net/projects/markdown/syntax#header\n  // Ideally, the text would be marked as `header` as well, but this is\n  // not really feasible at the moment. So, instead, we're testing against\n  // what works today, to avoid any regressions.\n  //\n  // Check if single underlining = works\n  MT(\"setextH1\",\n     \"foo\",\n     \"[header&header-1 =]\");\n\n  // Check if 3+ ='s work\n  MT(\"setextH1\",\n     \"foo\",\n     \"[header&header-1 ===]\");\n\n  // Check if single underlining - works\n  MT(\"setextH2\",\n     \"foo\",\n     \"[header&header-2 -]\");\n\n  // Check if 3+ -'s work\n  MT(\"setextH2\",\n     \"foo\",\n     \"[header&header-2 ---]\");\n\n  // Single-line blockquote with trailing space\n  MT(\"blockquoteSpace\",\n     \"[quote&quote-1 > foo]\");\n\n  // Single-line blockquote\n  MT(\"blockquoteNoSpace\",\n     \"[quote&quote-1 >foo]\");\n\n  // No blank line before blockquote\n  MT(\"blockquoteNoBlankLine\",\n     \"foo\",\n     \"[quote&quote-1 > bar]\");\n\n  // Nested blockquote\n  MT(\"blockquoteSpace\",\n     \"[quote&quote-1 > foo]\",\n     \"[quote&quote-1 >][quote&quote-2 > foo]\",\n     \"[quote&quote-1 >][quote&quote-2 >][quote&quote-3 > foo]\");\n\n  // Single-line blockquote followed by normal paragraph\n  MT(\"blockquoteThenParagraph\",\n     \"[quote&quote-1 >foo]\",\n     \"\",\n     \"bar\");\n\n  // Multi-line blockquote (lazy mode)\n  MT(\"multiBlockquoteLazy\",\n     \"[quote&quote-1 >foo]\",\n     \"[quote&quote-1 bar]\");\n\n  // Multi-line blockquote followed by normal paragraph (lazy mode)\n  MT(\"multiBlockquoteLazyThenParagraph\",\n     \"[quote&quote-1 >foo]\",\n     \"[quote&quote-1 bar]\",\n     \"\",\n     \"hello\");\n\n  // Multi-line blockquote (non-lazy mode)\n  MT(\"multiBlockquote\",\n     \"[quote&quote-1 >foo]\",\n     \"[quote&quote-1 >bar]\");\n\n  // Multi-line blockquote followed by normal paragraph (non-lazy mode)\n  MT(\"multiBlockquoteThenParagraph\",\n     \"[quote&quote-1 >foo]\",\n     \"[quote&quote-1 >bar]\",\n     \"\",\n     \"hello\");\n\n  // Check list types\n\n  MT(\"listAsterisk\",\n     \"foo\",\n     \"bar\",\n     \"\",\n     \"[variable-2 * foo]\",\n     \"[variable-2 * bar]\");\n\n  MT(\"listPlus\",\n     \"foo\",\n     \"bar\",\n     \"\",\n     \"[variable-2 + foo]\",\n     \"[variable-2 + bar]\");\n\n  MT(\"listDash\",\n     \"foo\",\n     \"bar\",\n     \"\",\n     \"[variable-2 - foo]\",\n     \"[variable-2 - bar]\");\n\n  MT(\"listNumber\",\n     \"foo\",\n     \"bar\",\n     \"\",\n     \"[variable-2 1. foo]\",\n     \"[variable-2 2. bar]\");\n\n  // Lists require a preceding blank line (per Dingus)\n  MT(\"listBogus\",\n     \"foo\",\n     \"1. bar\",\n     \"2. hello\");\n\n  // List after header\n  MT(\"listAfterHeader\",\n     \"[header&header-1 # foo]\",\n     \"[variable-2 - bar]\");\n\n  // Formatting in lists (*)\n  MT(\"listAsteriskFormatting\",\n     \"[variable-2 * ][variable-2&em *foo*][variable-2  bar]\",\n     \"[variable-2 * ][variable-2&strong **foo**][variable-2  bar]\",\n     \"[variable-2 * ][variable-2&strong **][variable-2&em&strong *foo**][variable-2&em *][variable-2  bar]\",\n     \"[variable-2 * ][variable-2&comment `foo`][variable-2  bar]\");\n\n  // Formatting in lists (+)\n  MT(\"listPlusFormatting\",\n     \"[variable-2 + ][variable-2&em *foo*][variable-2  bar]\",\n     \"[variable-2 + ][variable-2&strong **foo**][variable-2  bar]\",\n     \"[variable-2 + ][variable-2&strong **][variable-2&em&strong *foo**][variable-2&em *][variable-2  bar]\",\n     \"[variable-2 + ][variable-2&comment `foo`][variable-2  bar]\");\n\n  // Formatting in lists (-)\n  MT(\"listDashFormatting\",\n     \"[variable-2 - ][variable-2&em *foo*][variable-2  bar]\",\n     \"[variable-2 - ][variable-2&strong **foo**][variable-2  bar]\",\n     \"[variable-2 - ][variable-2&strong **][variable-2&em&strong *foo**][variable-2&em *][variable-2  bar]\",\n     \"[variable-2 - ][variable-2&comment `foo`][variable-2  bar]\");\n\n  // Formatting in lists (1.)\n  MT(\"listNumberFormatting\",\n     \"[variable-2 1. ][variable-2&em *foo*][variable-2  bar]\",\n     \"[variable-2 2. ][variable-2&strong **foo**][variable-2  bar]\",\n     \"[variable-2 3. ][variable-2&strong **][variable-2&em&strong *foo**][variable-2&em *][variable-2  bar]\",\n     \"[variable-2 4. ][variable-2&comment `foo`][variable-2  bar]\");\n\n  // Paragraph lists\n  MT(\"listParagraph\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"[variable-2 * bar]\");\n\n  // Multi-paragraph lists\n  //\n  // 4 spaces\n  MT(\"listMultiParagraph\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"[variable-2 * bar]\",\n     \"\",\n     \"    [variable-2 hello]\");\n\n  // 4 spaces, extra blank lines (should still be list, per Dingus)\n  MT(\"listMultiParagraphExtra\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"[variable-2 * bar]\",\n     \"\",\n     \"\",\n     \"    [variable-2 hello]\");\n\n  // 4 spaces, plus 1 space (should still be list, per Dingus)\n  MT(\"listMultiParagraphExtraSpace\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"[variable-2 * bar]\",\n     \"\",\n     \"     [variable-2 hello]\",\n     \"\",\n     \"    [variable-2 world]\");\n\n  // 1 tab\n  MT(\"listTab\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"[variable-2 * bar]\",\n     \"\",\n     \"\\t[variable-2 hello]\");\n\n  // No indent\n  MT(\"listNoIndent\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"[variable-2 * bar]\",\n     \"\",\n     \"hello\");\n\n  // Blockquote\n  MT(\"blockquote\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"[variable-2 * bar]\",\n     \"\",\n     \"    [variable-2&quote&quote-1 > hello]\");\n\n  // Code block\n  MT(\"blockquoteCode\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"[variable-2 * bar]\",\n     \"\",\n     \"        [comment > hello]\",\n     \"\",\n     \"    [variable-2 world]\");\n\n  // Code block followed by text\n  MT(\"blockquoteCodeText\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"    [variable-2 bar]\",\n     \"\",\n     \"        [comment hello]\",\n     \"\",\n     \"    [variable-2 world]\");\n\n  // Nested list\n\n  MT(\"listAsteriskNested\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"    [variable-3 * bar]\");\n\n  MT(\"listPlusNested\",\n     \"[variable-2 + foo]\",\n     \"\",\n     \"    [variable-3 + bar]\");\n\n  MT(\"listDashNested\",\n     \"[variable-2 - foo]\",\n     \"\",\n     \"    [variable-3 - bar]\");\n\n  MT(\"listNumberNested\",\n     \"[variable-2 1. foo]\",\n     \"\",\n     \"    [variable-3 2. bar]\");\n\n  MT(\"listMixed\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"    [variable-3 + bar]\",\n     \"\",\n     \"        [keyword - hello]\",\n     \"\",\n     \"            [variable-2 1. world]\");\n\n  MT(\"listBlockquote\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"    [variable-3 + bar]\",\n     \"\",\n     \"        [quote&quote-1&variable-3 > hello]\");\n\n  MT(\"listCode\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"    [variable-3 + bar]\",\n     \"\",\n     \"            [comment hello]\");\n\n  // Code with internal indentation\n  MT(\"listCodeIndentation\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"        [comment bar]\",\n     \"            [comment hello]\",\n     \"                [comment world]\",\n     \"        [comment foo]\",\n     \"    [variable-2 bar]\");\n\n  // List nesting edge cases\n  MT(\"listNested\",\n    \"[variable-2 * foo]\",\n    \"\",\n    \"    [variable-3 * bar]\",\n    \"\",\n    \"       [variable-2 hello]\"\n  );\n  MT(\"listNested\",\n    \"[variable-2 * foo]\",\n    \"\",\n    \"    [variable-3 * bar]\",\n    \"\",\n    \"      [variable-3 * foo]\"\n  );\n\n  // Code followed by text\n  MT(\"listCodeText\",\n     \"[variable-2 * foo]\",\n     \"\",\n     \"        [comment bar]\",\n     \"\",\n     \"hello\");\n\n  // Following tests directly from official Markdown documentation\n  // http://daringfireball.net/projects/markdown/syntax#hr\n\n  MT(\"hrSpace\",\n     \"[hr * * *]\");\n\n  MT(\"hr\",\n     \"[hr ***]\");\n\n  MT(\"hrLong\",\n     \"[hr *****]\");\n\n  MT(\"hrSpaceDash\",\n     \"[hr - - -]\");\n\n  MT(\"hrDashLong\",\n     \"[hr ---------------------------------------]\");\n\n  // Inline link with title\n  MT(\"linkTitle\",\n     \"[link [[foo]]][string (http://example.com/ \\\"bar\\\")] hello\");\n\n  // Inline link without title\n  MT(\"linkNoTitle\",\n     \"[link [[foo]]][string (http://example.com/)] bar\");\n\n  // Inline link with image\n  MT(\"linkImage\",\n     \"[link [[][tag ![[foo]]][string (http://example.com/)][link ]]][string (http://example.com/)] bar\");\n\n  // Inline link with Em\n  MT(\"linkEm\",\n     \"[link [[][link&em *foo*][link ]]][string (http://example.com/)] bar\");\n\n  // Inline link with Strong\n  MT(\"linkStrong\",\n     \"[link [[][link&strong **foo**][link ]]][string (http://example.com/)] bar\");\n\n  // Inline link with EmStrong\n  MT(\"linkEmStrong\",\n     \"[link [[][link&strong **][link&em&strong *foo**][link&em *][link ]]][string (http://example.com/)] bar\");\n\n  // Image with title\n  MT(\"imageTitle\",\n     \"[tag ![[foo]]][string (http://example.com/ \\\"bar\\\")] hello\");\n\n  // Image without title\n  MT(\"imageNoTitle\",\n     \"[tag ![[foo]]][string (http://example.com/)] bar\");\n\n  // Image with asterisks\n  MT(\"imageAsterisks\",\n     \"[tag ![[*foo*]]][string (http://example.com/)] bar\");\n\n  // Not a link. Should be normal text due to square brackets being used\n  // regularly in text, especially in quoted material, and no space is allowed\n  // between square brackets and parentheses (per Dingus).\n  MT(\"notALink\",\n     \"[[foo]] (bar)\");\n\n  // Reference-style links\n  MT(\"linkReference\",\n     \"[link [[foo]]][string [[bar]]] hello\");\n\n  // Reference-style links with Em\n  MT(\"linkReferenceEm\",\n     \"[link [[][link&em *foo*][link ]]][string [[bar]]] hello\");\n\n  // Reference-style links with Strong\n  MT(\"linkReferenceStrong\",\n     \"[link [[][link&strong **foo**][link ]]][string [[bar]]] hello\");\n\n  // Reference-style links with EmStrong\n  MT(\"linkReferenceEmStrong\",\n     \"[link [[][link&strong **][link&em&strong *foo**][link&em *][link ]]][string [[bar]]] hello\");\n\n  // Reference-style links with optional space separator (per docuentation)\n  // \"You can optionally use a space to separate the sets of brackets\"\n  MT(\"linkReferenceSpace\",\n     \"[link [[foo]]] [string [[bar]]] hello\");\n\n  // Should only allow a single space (\"...use *a* space...\")\n  MT(\"linkReferenceDoubleSpace\",\n     \"[[foo]]  [[bar]] hello\");\n\n  // Reference-style links with implicit link name\n  MT(\"linkImplicit\",\n     \"[link [[foo]]][string [[]]] hello\");\n\n  // @todo It would be nice if, at some point, the document was actually\n  // checked to see if the referenced link exists\n\n  // Link label, for reference-style links (taken from documentation)\n\n  MT(\"labelNoTitle\",\n     \"[link [[foo]]:] [string http://example.com/]\");\n\n  MT(\"labelIndented\",\n     \"   [link [[foo]]:] [string http://example.com/]\");\n\n  MT(\"labelSpaceTitle\",\n     \"[link [[foo bar]]:] [string http://example.com/ \\\"hello\\\"]\");\n\n  MT(\"labelDoubleTitle\",\n     \"[link [[foo bar]]:] [string http://example.com/ \\\"hello\\\"] \\\"world\\\"\");\n\n  MT(\"labelTitleDoubleQuotes\",\n     \"[link [[foo]]:] [string http://example.com/  \\\"bar\\\"]\");\n\n  MT(\"labelTitleSingleQuotes\",\n     \"[link [[foo]]:] [string http://example.com/  'bar']\");\n\n  MT(\"labelTitleParenthese\",\n     \"[link [[foo]]:] [string http://example.com/  (bar)]\");\n\n  MT(\"labelTitleInvalid\",\n     \"[link [[foo]]:] [string http://example.com/] bar\");\n\n  MT(\"labelLinkAngleBrackets\",\n     \"[link [[foo]]:] [string <http://example.com/>  \\\"bar\\\"]\");\n\n  MT(\"labelTitleNextDoubleQuotes\",\n     \"[link [[foo]]:] [string http://example.com/]\",\n     \"[string \\\"bar\\\"] hello\");\n\n  MT(\"labelTitleNextSingleQuotes\",\n     \"[link [[foo]]:] [string http://example.com/]\",\n     \"[string 'bar'] hello\");\n\n  MT(\"labelTitleNextParenthese\",\n     \"[link [[foo]]:] [string http://example.com/]\",\n     \"[string (bar)] hello\");\n\n  MT(\"labelTitleNextMixed\",\n     \"[link [[foo]]:] [string http://example.com/]\",\n     \"(bar\\\" hello\");\n\n  MT(\"linkWeb\",\n     \"[link <http://example.com/>] foo\");\n\n  MT(\"linkWebDouble\",\n     \"[link <http://example.com/>] foo [link <http://example.com/>]\");\n\n  MT(\"linkEmail\",\n     \"[link <user@example.com>] foo\");\n\n  MT(\"linkEmailDouble\",\n     \"[link <user@example.com>] foo [link <user@example.com>]\");\n\n  MT(\"emAsterisk\",\n     \"[em *foo*] bar\");\n\n  MT(\"emUnderscore\",\n     \"[em _foo_] bar\");\n\n  MT(\"emInWordAsterisk\",\n     \"foo[em *bar*]hello\");\n\n  MT(\"emInWordUnderscore\",\n     \"foo[em _bar_]hello\");\n\n  // Per documentation: \"...surround an * or _ with spaces, it’ll be\n  // treated as a literal asterisk or underscore.\"\n\n  MT(\"emEscapedBySpaceIn\",\n     \"foo [em _bar _ hello_] world\");\n\n  MT(\"emEscapedBySpaceOut\",\n     \"foo _ bar[em _hello_]world\");\n\n  MT(\"emEscapedByNewline\",\n     \"foo\",\n     \"_ bar[em _hello_]world\");\n\n  // Unclosed emphasis characters\n  // Instead of simply marking as EM / STRONG, it would be nice to have an\n  // incomplete flag for EM and STRONG, that is styled slightly different.\n  MT(\"emIncompleteAsterisk\",\n     \"foo [em *bar]\");\n\n  MT(\"emIncompleteUnderscore\",\n     \"foo [em _bar]\");\n\n  MT(\"strongAsterisk\",\n     \"[strong **foo**] bar\");\n\n  MT(\"strongUnderscore\",\n     \"[strong __foo__] bar\");\n\n  MT(\"emStrongAsterisk\",\n     \"[em *foo][em&strong **bar*][strong hello**] world\");\n\n  MT(\"emStrongUnderscore\",\n     \"[em _foo][em&strong __bar_][strong hello__] world\");\n\n  // \"...same character must be used to open and close an emphasis span.\"\"\n  MT(\"emStrongMixed\",\n     \"[em _foo][em&strong **bar*hello__ world]\");\n\n  MT(\"emStrongMixed\",\n     \"[em *foo][em&strong __bar_hello** world]\");\n\n  // These characters should be escaped:\n  // \\   backslash\n  // `   backtick\n  // *   asterisk\n  // _   underscore\n  // {}  curly braces\n  // []  square brackets\n  // ()  parentheses\n  // #   hash mark\n  // +   plus sign\n  // -   minus sign (hyphen)\n  // .   dot\n  // !   exclamation mark\n\n  MT(\"escapeBacktick\",\n     \"foo \\\\`bar\\\\`\");\n\n  MT(\"doubleEscapeBacktick\",\n     \"foo \\\\\\\\[comment `bar\\\\\\\\`]\");\n\n  MT(\"escapeAsterisk\",\n     \"foo \\\\*bar\\\\*\");\n\n  MT(\"doubleEscapeAsterisk\",\n     \"foo \\\\\\\\[em *bar\\\\\\\\*]\");\n\n  MT(\"escapeUnderscore\",\n     \"foo \\\\_bar\\\\_\");\n\n  MT(\"doubleEscapeUnderscore\",\n     \"foo \\\\\\\\[em _bar\\\\\\\\_]\");\n\n  MT(\"escapeHash\",\n     \"\\\\# foo\");\n\n  MT(\"doubleEscapeHash\",\n     \"\\\\\\\\# foo\");\n\n  MT(\"escapeNewline\",\n     \"\\\\\",\n     \"[em *foo*]\");\n\n\n  // Tests to make sure GFM-specific things aren't getting through\n\n  MT(\"taskList\",\n     \"[variable-2 * [ ]] bar]\");\n\n  MT(\"fencedCodeBlocks\",\n     \"[comment ```]\",\n     \"foo\",\n     \"[comment ```]\");\n\n  // Tests that require XML mode\n\n  MT(\"xmlMode\",\n     \"[tag&bracket <][tag div][tag&bracket >]\",\n     \"*foo*\",\n     \"[tag&bracket <][tag http://github.com][tag&bracket />]\",\n     \"[tag&bracket </][tag div][tag&bracket >]\",\n     \"[link <http://github.com/>]\");\n\n  MT(\"xmlModeWithMarkdownInside\",\n     \"[tag&bracket <][tag div] [attribute markdown]=[string 1][tag&bracket >]\",\n     \"[em *foo*]\",\n     \"[link <http://github.com/>]\",\n     \"[tag </div>]\",\n     \"[link <http://github.com/>]\",\n     \"[tag&bracket <][tag div][tag&bracket >]\",\n     \"[tag&bracket </][tag div][tag&bracket >]\");\n\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/meta.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n\n  CodeMirror.modeInfo = [\n    {name: \"APL\", mime: \"text/apl\", mode: \"apl\", ext: [\"dyalog\", \"apl\"]},\n    {name: \"Asterisk\", mime: \"text/x-asterisk\", mode: \"asterisk\"},\n    {name: \"C\", mime: \"text/x-csrc\", mode: \"clike\", ext: [\"c\", \"h\"]},\n    {name: \"C++\", mime: \"text/x-c++src\", mode: \"clike\", ext: [\"cpp\", \"c++\", \"hpp\", \"h++\"]},\n    {name: \"Cobol\", mime: \"text/x-cobol\", mode: \"cobol\", ext: [\"cob\", \"cpy\"]},\n    {name: \"C#\", mime: \"text/x-csharp\", mode: \"clike\", ext: [\"cs\"]},\n    {name: \"Clojure\", mime: \"text/x-clojure\", mode: \"clojure\", ext: [\"clj\"]},\n    {name: \"CoffeeScript\", mime: \"text/x-coffeescript\", mode: \"coffeescript\", ext: [\"coffee\"]},\n    {name: \"Common Lisp\", mime: \"text/x-common-lisp\", mode: \"commonlisp\", ext: [\"cl\", \"lisp\", \"el\"]},\n    {name: \"Cypher\", mime: \"application/x-cypher-query\", mode: \"cypher\"},\n    {name: \"Cython\", mime: \"text/x-cython\", mode: \"python\", ext: [\"pyx\", \"pxd\", \"pxi\"]},\n    {name: \"CSS\", mime: \"text/css\", mode: \"css\", ext: [\"css\"]},\n    {name: \"CQL\", mime: \"text/x-cassandra\", mode: \"sql\", ext: [\"cql\"]},\n    {name: \"D\", mime: \"text/x-d\", mode: \"d\", ext: [\"d\"]},\n    {name: \"diff\", mime: \"text/x-diff\", mode: \"diff\", ext: [\"diff\", \"patch\"]},\n    {name: \"DTD\", mime: \"application/xml-dtd\", mode: \"dtd\", ext: [\"dtd\"]},\n    {name: \"Dylan\", mime: \"text/x-dylan\", mode: \"dylan\", ext: [\"dylan\", \"dyl\", \"intr\"]},\n    {name: \"ECL\", mime: \"text/x-ecl\", mode: \"ecl\", ext: [\"ecl\"]},\n    {name: \"Eiffel\", mime: \"text/x-eiffel\", mode: \"eiffel\", ext: [\"e\"]},\n    {name: \"Embedded Javascript\", mime: \"application/x-ejs\", mode: \"htmlembedded\", ext: [\"ejs\"]},\n    {name: \"Erlang\", mime: \"text/x-erlang\", mode: \"erlang\", ext: [\"erl\"]},\n    {name: \"Fortran\", mime: \"text/x-fortran\", mode: \"fortran\", ext: [\"f\", \"for\", \"f77\", \"f90\"]},\n    {name: \"F#\", mime: \"text/x-fsharp\", mode: \"mllike\", ext: [\"fs\"]},\n    {name: \"Gas\", mime: \"text/x-gas\", mode: \"gas\", ext: [\"s\"]},\n    {name: \"Gherkin\", mime: \"text/x-feature\", mode: \"gherkin\", ext: [\"feature\"]},\n    {name: \"GitHub Flavored Markdown\", mime: \"text/x-gfm\", mode: \"gfm\"},\n    {name: \"Go\", mime: \"text/x-go\", mode: \"go\", ext: [\"go\"]},\n    {name: \"Groovy\", mime: \"text/x-groovy\", mode: \"groovy\", ext: [\"groovy\"]},\n    {name: \"HAML\", mime: \"text/x-haml\", mode: \"haml\", ext: [\"haml\"]},\n    {name: \"Haskell\", mime: \"text/x-haskell\", mode: \"haskell\", ext: [\"hs\"]},\n    {name: \"Haxe\", mime: \"text/x-haxe\", mode: \"haxe\", ext: [\"hx\"]},\n    {name: \"HXML\", mime: \"text/x-hxml\", mode: \"haxe\", ext: [\"hxml\"]},\n    {name: \"ASP.NET\", mime: \"application/x-aspx\", mode: \"htmlembedded\", ext: [\"aspx\"]},\n    {name: \"HTML\", mime: \"text/html\", mode: \"htmlmixed\", ext: [\"html\", \"htm\"]},\n    {name: \"HTTP\", mime: \"message/http\", mode: \"http\"},\n    {name: \"Jade\", mime: \"text/x-jade\", mode: \"jade\", ext: [\"jade\"]},\n    {name: \"Java\", mime: \"text/x-java\", mode: \"clike\", ext: [\"java\"]},\n    {name: \"Java Server Pages\", mime: \"application/x-jsp\", mode: \"htmlembedded\", ext: [\"jsp\"]},\n    {name: \"JavaScript\", mimes: [\"text/javascript\", \"text/ecmascript\", \"application/javascript\", \"application/x-javascript\", \"application/ecmascript\"],\n     mode: \"javascript\", ext: [\"js\"]},\n    {name: \"JSON\", mimes: [\"application/json\", \"application/x-json\"], mode: \"javascript\", ext: [\"json\", \"map\"]},\n    {name: \"JSON-LD\", mime: \"application/ld+json\", mode: \"javascript\"},\n    {name: \"Jinja2\", mime: \"null\", mode: \"jinja2\"},\n    {name: \"Julia\", mime: \"text/x-julia\", mode: \"julia\", ext: [\"jl\"]},\n    {name: \"Kotlin\", mime: \"text/x-kotlin\", mode: \"kotlin\", ext: [\"kt\"]},\n    {name: \"LESS\", mime: \"text/x-less\", mode: \"css\", ext: [\"less\"]},\n    {name: \"LiveScript\", mime: \"text/x-livescript\", mode: \"livescript\", ext: [\"ls\"]},\n    {name: \"Lua\", mime: \"text/x-lua\", mode: \"lua\", ext: [\"lua\"]},\n    {name: \"Markdown (GitHub-flavour)\", mime: \"text/x-markdown\", mode: \"markdown\", ext: [\"markdown\", \"md\", \"mkd\"]},\n    {name: \"mIRC\", mime: \"text/mirc\", mode: \"mirc\"},\n    {name: \"MariaDB SQL\", mime: \"text/x-mariadb\", mode: \"sql\"},\n    {name: \"Modelica\", mime: \"text/x-modelica\", mode: \"modelica\", ext: [\"mo\"]},\n    {name: \"MS SQL\", mime: \"text/x-mssql\", mode: \"sql\"},\n    {name: \"MySQL\", mime: \"text/x-mysql\", mode: \"sql\"},\n    {name: \"Nginx\", mime: \"text/x-nginx-conf\", mode: \"nginx\"},\n    {name: \"NTriples\", mime: \"text/n-triples\", mode: \"ntriples\", ext: [\"nt\"]},\n    {name: \"OCaml\", mime: \"text/x-ocaml\", mode: \"mllike\", ext: [\"ml\", \"mli\", \"mll\", \"mly\"]},\n    {name: \"Octave\", mime: \"text/x-octave\", mode: \"octave\", ext: [\"m\"]},\n    {name: \"Pascal\", mime: \"text/x-pascal\", mode: \"pascal\", ext: [\"p\", \"pas\"]},\n    {name: \"PEG.js\", mime: \"null\", mode: \"pegjs\"},\n    {name: \"Perl\", mime: \"text/x-perl\", mode: \"perl\", ext: [\"pl\", \"pm\"]},\n    {name: \"PHP\", mime: \"application/x-httpd-php\", mode: \"php\", ext: [\"php\", \"php3\", \"php4\", \"php5\", \"phtml\"]},\n    {name: \"Pig\", mime: \"text/x-pig\", mode: \"pig\"},\n    {name: \"Plain Text\", mime: \"text/plain\", mode: \"null\", ext: [\"txt\", \"text\", \"conf\", \"def\", \"list\", \"log\"]},\n    {name: \"PLSQL\", mime: \"text/x-plsql\", mode: \"sql\"},\n    {name: \"Properties files\", mime: \"text/x-properties\", mode: \"properties\", ext: [\"properties\", \"ini\", \"in\"]},\n    {name: \"Python\", mime: \"text/x-python\", mode: \"python\", ext: [\"py\", \"pyw\"]},\n    {name: \"Puppet\", mime: \"text/x-puppet\", mode: \"puppet\", ext: [\"pp\"]},\n    {name: \"Q\", mime: \"text/x-q\", mode: \"q\", ext: [\"q\"]},\n    {name: \"R\", mime: \"text/x-rsrc\", mode: \"r\", ext: [\"r\"]},\n    {name: \"reStructuredText\", mime: \"text/x-rst\", mode: \"rst\", ext: [\"rst\"]},\n    {name: \"Ruby\", mime: \"text/x-ruby\", mode: \"ruby\", ext: [\"rb\"]},\n    {name: \"Rust\", mime: \"text/x-rustsrc\", mode: \"rust\", ext: [\"rs\"]},\n    {name: \"Sass\", mime: \"text/x-sass\", mode: \"sass\", ext: [\"sass\"]},\n    {name: \"Scala\", mime: \"text/x-scala\", mode: \"clike\", ext: [\"scala\"]},\n    {name: \"Scheme\", mime: \"text/x-scheme\", mode: \"scheme\", ext: [\"scm\", \"ss\"]},\n    {name: \"SCSS\", mime: \"text/x-scss\", mode: \"css\", ext: [\"scss\"]},\n    {name: \"Shell\", mime: \"text/x-sh\", mode: \"shell\", ext: [\"sh\", \"ksh\", \"bash\"]},\n    {name: \"Sieve\", mime: \"application/sieve\", mode: \"sieve\"},\n    {name: \"Slim\", mimes: [\"text/x-slim\", \"application/x-slim\"], mode: \"slim\"},\n    {name: \"Smalltalk\", mime: \"text/x-stsrc\", mode: \"smalltalk\", ext: [\"st\"]},\n    {name: \"Smarty\", mime: \"text/x-smarty\", mode: \"smarty\", ext: [\"tpl\"]},\n    {name: \"SmartyMixed\", mime: \"text/x-smarty\", mode: \"smartymixed\"},\n    {name: \"Solr\", mime: \"text/x-solr\", mode: \"solr\"},\n    {name: \"SPARQL\", mime: \"application/x-sparql-query\", mode: \"sparql\", ext: [\"sparql\"]},\n    {name: \"SQL\", mime: \"text/x-sql\", mode: \"sql\", ext: [\"sql\"]},\n    {name: \"MariaDB\", mime: \"text/x-mariadb\", mode: \"sql\"},\n    {name: \"sTeX\", mime: \"text/x-stex\", mode: \"stex\"},\n    {name: \"LaTeX\", mime: \"text/x-latex\", mode: \"stex\", ext: [\"text\", \"ltx\"]},\n    {name: \"SystemVerilog\", mime: \"text/x-systemverilog\", mode: \"verilog\", ext: [\"v\"]},\n    {name: \"Tcl\", mime: \"text/x-tcl\", mode: \"tcl\", ext: [\"tcl\"]},\n    {name: \"Textile\", mime: \"text/x-textile\", mode: \"textile\"},\n    {name: \"TiddlyWiki \", mime: \"text/x-tiddlywiki\", mode: \"tiddlywiki\"},\n    {name: \"Tiki wiki\", mime: \"text/tiki\", mode: \"tiki\"},\n    {name: \"TOML\", mime: \"text/x-toml\", mode: \"toml\"},\n    {name: \"Tornado\", mime: \"text/x-tornado\", mode: \"tornado\"},\n    {name: \"Turtle\", mime: \"text/turtle\", mode: \"turtle\", ext: [\"ttl\"]},\n    {name: \"TypeScript\", mime: \"application/typescript\", mode: \"javascript\", ext: [\"ts\"]},\n    {name: \"VB.NET\", mime: \"text/x-vb\", mode: \"vb\", ext: [\"vb\"]},\n    {name: \"VBScript\", mime: \"text/vbscript\", mode: \"vbscript\"},\n    {name: \"Velocity\", mime: \"text/velocity\", mode: \"velocity\", ext: [\"vtl\"]},\n    {name: \"Verilog\", mime: \"text/x-verilog\", mode: \"verilog\", ext: [\"v\"]},\n    {name: \"XML\", mimes: [\"application/xml\", \"text/xml\"], mode: \"xml\", ext: [\"xml\", \"xsl\", \"xsd\"]},\n    {name: \"XQuery\", mime: \"application/xquery\", mode: \"xquery\", ext: [\"xy\", \"xquery\"]},\n    {name: \"YAML\", mime: \"text/x-yaml\", mode: \"yaml\", ext: [\"yaml\"]},\n    {name: \"Z80\", mime: \"text/x-z80\", mode: \"z80\", ext: [\"z80\"]}\n  ];\n  // Ensure all modes have a mime property for backwards compatibility\n  for (var i = 0; i < CodeMirror.modeInfo.length; i++) {\n    var info = CodeMirror.modeInfo[i];\n    if (info.mimes) info.mime = info.mimes[0];\n  }\n\n  CodeMirror.findModeByMIME = function(mime) {\n    for (var i = 0; i < CodeMirror.modeInfo.length; i++) {\n      var info = CodeMirror.modeInfo[i];\n      if (info.mime == mime) return info;\n      if (info.mimes) for (var j = 0; j < info.mimes.length; j++)\n        if (info.mimes[j] == mime) return info;\n    }\n  };\n\n  CodeMirror.findModeByExtension = function(ext) {\n    for (var i = 0; i < CodeMirror.modeInfo.length; i++) {\n      var info = CodeMirror.modeInfo[i];\n      if (info.ext) for (var j = 0; j < info.ext.length; j++)\n        if (info.ext[j] == ext) return info;\n    }\n  };\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/mirc/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: mIRC mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/twilight.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"mirc.js\"></script>\n<style>.CodeMirror {border: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">mIRC</a>\n  </ul>\n</div>\n\n<article>\n<h2>mIRC mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n;AKA Nick Tracker by Ford_Lawnmower irc.GeekShed.net #Script-Help\n;*****************************************************************************;\n;**Start Setup\n;Change JoinDisplay, below, for On Join AKA Display. On = 1 - Off = 0\nalias -l JoinDisplay { return 1 }\n;Change MaxNicks, below, to the number of nicknames you want to store for each hostmask. I wouldn't go over 400 with this ;/\nalias -l MaxNicks { return 20 }\n;Change AKALogo, below, To the text you want displayed before each AKA result.\nalias -l AKALogo { return \u000306\u0007 \u000305A\u000306K\u000307A \u000306\u0007 }\n;**End Setup\n;*****************************************************************************;\nOn *:Join:#: {\n  if ($nick == $me) { .timer 1 1 ialupdateCheck $chan }\n  NickNamesAdd $nick $+($network,$wildsite)\n  if ($JoinDisplay) { .timerNickNames $+ $nick 1 2 NickNames.display $nick $chan $network $wildsite }\n}\non *:Nick: { NickNamesAdd $newnick $+($network,$wildsite) $nick }\nalias -l NickNames.display {\n  if ($gettok($hget(NickNames,$+($3,$4)),0,126) > 1) {\n    echo -g $2 $AKALogo $+(\u000309,$1) $AKALogo \u000307 $mid($replace($hget(NickNames,$+($3,$4)),$chr(126),$chr(44)),2,-1)\n  }\n}\nalias -l NickNamesAdd {\n  if ($hget(NickNames,$2)) {\n    if (!$regex($hget(NickNames,$2),/~\\Q $+ $replacecs($1,\\E,\\E\\\\E\\Q) $+ \\E~/i)) {\n      if ($gettok($hget(NickNames,$2),0,126) <= $MaxNicks) {\n        hadd NickNames $2 $+($hget(NickNames,$2),$1,~)\n      }\n      else {\n        hadd NickNames $2 $+($mid($hget(NickNames,$2),$pos($hget(NickNames,$2),~,2)),$1,~)\n      }\n    }\n  }\n  else {\n    hadd -m NickNames $2 $+(~,$1,~,$iif($3,$+($3,~)))\n  }\n}\nalias -l Fix.All.MindUser {\n  var %Fix.Count = $hfind(NickNames,/[^~]+[0-9]{4}~/,0,r).data\n  while (%Fix.Count) {\n    if ($Fix.MindUser($hget(NickNames,$hfind(NickNames,/[^~]+[0-9]{4}~/,%Fix.Count,r).data))) {\n      echo -ag Record %Fix.Count - $v1 - Was Cleaned\n      hadd NickNames $hfind(NickNames,/[^~]+[0-9]{4}~/,%Fix.Count,r).data $v1\n    }\n    dec %Fix.Count\n  }\n}\nalias -l Fix.MindUser { return $regsubex($1,/[^~]+[0-9]{4}~/g,$null) }\nmenu nicklist,query {\n  -\n  .AKA\n  ..Check $$1: {\n    if ($gettok($hget(NickNames,$+($network,$address($1,2))),0,126) > 1) {\n      NickNames.display $1 $active $network $address($1,2)\n    }\n    else { echo -ag $AKALogo $+(\u000309,$1) \u000307has not been known by any other nicknames while I have been watching. }\n  }\n  ..Cleanup $$1:hadd NickNames $+($network,$address($1,2)) $fix.minduser($hget(NickNames,$+($network,$address($1,2))))\n  ..Clear $$1:hadd NickNames $+($network,$address($1,2)) $+(~,$1,~)\n  ..AKA Search Dialog:dialog $iif($dialog(AKA_Search),-v,-m) AKA_Search AKA_Search\n  -\n}\nmenu status,channel {\n  -\n  .AKA\n  ..AKA Search Dialog:dialog $iif($dialog(AKA_Search),-v,-m) AKA_Search AKA_Search\n  ..Clean All Records:Fix.All.Minduser\n  -\n}\ndialog AKA_Search {\n  title \"AKA Search Engine\"\n  size -1 -1 206 221\n  option dbu\n  edit \"\", 1, 8 5 149 10, autohs\n  button \"Search\", 2, 163 4 32 12\n  radio \"Search HostMask\", 4, 61 22 55 10\n  radio \"Search Nicknames\", 5, 123 22 56 10\n  list 6, 8 38 190 169, sort extsel vsbar\n  button \"Check Selected\", 7, 67 206 40 12\n  button \"Close\", 8, 160 206 38 12, cancel\n  box \"Search Type\", 3, 11 17 183 18\n  button \"Copy to Clipboard\", 9, 111 206 46 12\n}\nOn *:Dialog:Aka_Search:init:*: { did -c $dname 5 }\nOn *:Dialog:Aka_Search:Sclick:2,7,9: {\n  if ($did == 2) && ($did($dname,1)) {\n    did -r $dname 6\n    var %search $+(*,$v1,*), %type $iif($did($dname,5).state,data,item), %matches = $hfind(NickNames,%search,0,w). [ $+ [ %type ] ]\n    while (%matches) {\n      did -a $dname 6 $hfind(NickNames,%search,%matches,w). [ $+ [ %type ] ]\n      dec %matches\n    }\n    did -c $dname 6 1\n  }\n  elseif ($did == 7) && ($did($dname,6).seltext) { echo -ga $AKALogo \u000307 $mid($replace($hget(NickNames,$v1),$chr(126),$chr(44)),2,-1) }\n  elseif ($did == 9) && ($did($dname,6).seltext) { clipboard $mid($v1,$pos($v1,*,1)) }\n}\nOn *:Start:{\n  if (!$hget(NickNames)) { hmake NickNames 10 }\n  if ($isfile(NickNames.hsh)) { hload  NickNames NickNames.hsh }\n}\nOn *:Exit: { if ($hget(NickNames)) { hsave NickNames NickNames.hsh } }\nOn *:Disconnect: { if ($hget(NickNames)) { hsave NickNames NickNames.hsh } }\nOn *:Unload: { hfree NickNames }\nalias -l ialupdateCheck {\n  inc -z $+(%,ialupdateCheck,$network) $calc($nick($1,0) / 4)\n  ;If your ial is already being updated on join .who $1 out.\n  ;If you are using /names to update ial you will still need this line.\n  .who $1\n}\nRaw 352:*: {\n  if ($($+(%,ialupdateCheck,$network),2)) haltdef\n  NickNamesAdd $6 $+($network,$address($6,2))\n}\nRaw 315:*: {\n  if ($($+(%,ialupdateCheck,$network),2)) haltdef\n}\n\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        theme: \"twilight\",\n        lineNumbers: true,\n        matchBrackets: true,\n        indentUnit: 4,\n        mode: \"text/mirc\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/mirc</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/mirc/mirc.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n//mIRC mode by Ford_Lawnmower :: Based on Velocity mode by Steve O'Hara\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMIME(\"text/mirc\", \"mirc\");\nCodeMirror.defineMode(\"mirc\", function() {\n  function parseWords(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n  var specials = parseWords(\"$! $$ $& $? $+ $abook $abs $active $activecid \" +\n                            \"$activewid $address $addtok $agent $agentname $agentstat $agentver \" +\n                            \"$alias $and $anick $ansi2mirc $aop $appactive $appstate $asc $asctime \" +\n                            \"$asin $atan $avoice $away $awaymsg $awaytime $banmask $base $bfind \" +\n                            \"$binoff $biton $bnick $bvar $bytes $calc $cb $cd $ceil $chan $chanmodes \" +\n                            \"$chantypes $chat $chr $cid $clevel $click $cmdbox $cmdline $cnick $color \" +\n                            \"$com $comcall $comchan $comerr $compact $compress $comval $cos $count \" +\n                            \"$cr $crc $creq $crlf $ctime $ctimer $ctrlenter $date $day $daylight \" +\n                            \"$dbuh $dbuw $dccignore $dccport $dde $ddename $debug $decode $decompress \" +\n                            \"$deltok $devent $dialog $did $didreg $didtok $didwm $disk $dlevel $dll \" +\n                            \"$dllcall $dname $dns $duration $ebeeps $editbox $emailaddr $encode $error \" +\n                            \"$eval $event $exist $feof $ferr $fgetc $file $filename $filtered $finddir \" +\n                            \"$finddirn $findfile $findfilen $findtok $fline $floor $fopen $fread $fserve \" +\n                            \"$fulladdress $fulldate $fullname $fullscreen $get $getdir $getdot $gettok $gmt \" +\n                            \"$group $halted $hash $height $hfind $hget $highlight $hnick $hotline \" +\n                            \"$hotlinepos $ial $ialchan $ibl $idle $iel $ifmatch $ignore $iif $iil \" +\n                            \"$inelipse $ini $inmidi $inpaste $inpoly $input $inrect $inroundrect \" +\n                            \"$insong $instok $int $inwave $ip $isalias $isbit $isdde $isdir $isfile \" +\n                            \"$isid $islower $istok $isupper $keychar $keyrpt $keyval $knick $lactive \" +\n                            \"$lactivecid $lactivewid $left $len $level $lf $line $lines $link $lock \" +\n                            \"$lock $locked $log $logstamp $logstampfmt $longfn $longip $lower $ltimer \" +\n                            \"$maddress $mask $matchkey $matchtok $md5 $me $menu $menubar $menucontext \" +\n                            \"$menutype $mid $middir $mircdir $mircexe $mircini $mklogfn $mnick $mode \" +\n                            \"$modefirst $modelast $modespl $mouse $msfile $network $newnick $nick $nofile \" +\n                            \"$nopath $noqt $not $notags $notify $null $numeric $numok $oline $onpoly \" +\n                            \"$opnick $or $ord $os $passivedcc $pic $play $pnick $port $portable $portfree \" +\n                            \"$pos $prefix $prop $protect $puttok $qt $query $rand $r $rawmsg $read $readomo \" +\n                            \"$readn $regex $regml $regsub $regsubex $remove $remtok $replace $replacex \" +\n                            \"$reptok $result $rgb $right $round $scid $scon $script $scriptdir $scriptline \" +\n                            \"$sdir $send $server $serverip $sfile $sha1 $shortfn $show $signal $sin \" +\n                            \"$site $sline $snick $snicks $snotify $sock $sockbr $sockerr $sockname \" +\n                            \"$sorttok $sound $sqrt $ssl $sreq $sslready $status $strip $str $stripped \" +\n                            \"$syle $submenu $switchbar $tan $target $ticks $time $timer $timestamp \" +\n                            \"$timestampfmt $timezone $tip $titlebar $toolbar $treebar $trust $ulevel \" +\n                            \"$ulist $upper $uptime $url $usermode $v1 $v2 $var $vcmd $vcmdstat $vcmdver \" +\n                            \"$version $vnick $vol $wid $width $wildsite $wildtok $window $wrap $xor\");\n  var keywords = parseWords(\"abook ajinvite alias aline ame amsg anick aop auser autojoin avoice \" +\n                            \"away background ban bcopy beep bread break breplace bset btrunc bunset bwrite \" +\n                            \"channel clear clearall cline clipboard close cnick color comclose comopen \" +\n                            \"comreg continue copy creq ctcpreply ctcps dcc dccserver dde ddeserver \" +\n                            \"debug dec describe dialog did didtok disable disconnect dlevel dline dll \" +\n                            \"dns dqwindow drawcopy drawdot drawfill drawline drawpic drawrect drawreplace \" +\n                            \"drawrot drawsave drawscroll drawtext ebeeps echo editbox emailaddr enable \" +\n                            \"events exit fclose filter findtext finger firewall flash flist flood flush \" +\n                            \"flushini font fopen fseek fsend fserve fullname fwrite ghide gload gmove \" +\n                            \"gopts goto gplay gpoint gqreq groups gshow gsize gstop gtalk gunload hadd \" +\n                            \"halt haltdef hdec hdel help hfree hinc hload hmake hop hsave ial ialclear \" +\n                            \"ialmark identd if ignore iline inc invite iuser join kick linesep links list \" +\n                            \"load loadbuf localinfo log mdi me menubar mkdir mnick mode msg nick noop notice \" +\n                            \"notify omsg onotice part partall pdcc perform play playctrl pop protect pvoice \" +\n                            \"qme qmsg query queryn quit raw reload remini remote remove rename renwin \" +\n                            \"reseterror resetidle return rlevel rline rmdir run ruser save savebuf saveini \" +\n                            \"say scid scon server set showmirc signam sline sockaccept sockclose socklist \" +\n                            \"socklisten sockmark sockopen sockpause sockread sockrename sockudp sockwrite \" +\n                            \"sound speak splay sreq strip switchbar timer timestamp titlebar tnick tokenize \" +\n                            \"toolbar topic tray treebar ulist unload unset unsetall updatenl url uwho \" +\n                            \"var vcadd vcmd vcrem vol while whois window winhelp write writeint if isalnum \" +\n                            \"isalpha isaop isavoice isban ischan ishop isignore isin isincs isletter islower \" +\n                            \"isnotify isnum ison isop isprotect isreg isupper isvoice iswm iswmcs \" +\n                            \"elseif else goto menu nicklist status title icon size option text edit \" +\n                            \"button check radio box scroll list combo link tab item\");\n  var functions = parseWords(\"if elseif else and not or eq ne in ni for foreach while switch\");\n  var isOperatorChar = /[+\\-*&%=<>!?^\\/\\|]/;\n  function chain(stream, state, f) {\n    state.tokenize = f;\n    return f(stream, state);\n  }\n  function tokenBase(stream, state) {\n    var beforeParams = state.beforeParams;\n    state.beforeParams = false;\n    var ch = stream.next();\n    if (/[\\[\\]{}\\(\\),\\.]/.test(ch)) {\n      if (ch == \"(\" && beforeParams) state.inParams = true;\n      else if (ch == \")\") state.inParams = false;\n      return null;\n    }\n    else if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      return \"number\";\n    }\n    else if (ch == \"\\\\\") {\n      stream.eat(\"\\\\\");\n      stream.eat(/./);\n      return \"number\";\n    }\n    else if (ch == \"/\" && stream.eat(\"*\")) {\n      return chain(stream, state, tokenComment);\n    }\n    else if (ch == \";\" && stream.match(/ *\\( *\\(/)) {\n      return chain(stream, state, tokenUnparsed);\n    }\n    else if (ch == \";\" && !state.inParams) {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n    else if (ch == '\"') {\n      stream.eat(/\"/);\n      return \"keyword\";\n    }\n    else if (ch == \"$\") {\n      stream.eatWhile(/[$_a-z0-9A-Z\\.:]/);\n      if (specials && specials.propertyIsEnumerable(stream.current().toLowerCase())) {\n        return \"keyword\";\n      }\n      else {\n        state.beforeParams = true;\n        return \"builtin\";\n      }\n    }\n    else if (ch == \"%\") {\n      stream.eatWhile(/[^,^\\s^\\(^\\)]/);\n      state.beforeParams = true;\n      return \"string\";\n    }\n    else if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return \"operator\";\n    }\n    else {\n      stream.eatWhile(/[\\w\\$_{}]/);\n      var word = stream.current().toLowerCase();\n      if (keywords && keywords.propertyIsEnumerable(word))\n        return \"keyword\";\n      if (functions && functions.propertyIsEnumerable(word)) {\n        state.beforeParams = true;\n        return \"keyword\";\n      }\n      return null;\n    }\n  }\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n  function tokenUnparsed(stream, state) {\n    var maybeEnd = 0, ch;\n    while (ch = stream.next()) {\n      if (ch == \";\" && maybeEnd == 2) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      if (ch == \")\")\n        maybeEnd++;\n      else if (ch != \" \")\n        maybeEnd = 0;\n    }\n    return \"meta\";\n  }\n  return {\n    startState: function() {\n      return {\n        tokenize: tokenBase,\n        beforeParams: false,\n        inParams: false\n      };\n    },\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      return state.tokenize(stream, state);\n    }\n  };\n});\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/mllike/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: ML-like mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=stylesheet href=../../lib/codemirror.css>\n<script src=../../lib/codemirror.js></script>\n<script src=../../addon/edit/matchbrackets.js></script>\n<script src=mllike.js></script>\n<style type=text/css>\n  .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}\n</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">ML-like</a>\n  </ul>\n</div>\n\n<article>\n<h2>OCaml mode</h2>\n\n\n<textarea id=\"ocamlCode\">\n(* Summing a list of integers *)\nlet rec sum xs =\n  match xs with\n    | []       -&gt; 0\n    | x :: xs' -&gt; x + sum xs'\n\n(* Quicksort *)\nlet rec qsort = function\n   | [] -&gt; []\n   | pivot :: rest -&gt;\n       let is_less x = x &lt; pivot in\n       let left, right = List.partition is_less rest in\n       qsort left @ [pivot] @ qsort right\n\n(* Fibonacci Sequence *)\nlet rec fib_aux n a b =\n  match n with\n  | 0 -&gt; a\n  | _ -&gt; fib_aux (n - 1) (a + b) a\nlet fib n = fib_aux n 0 1\n\n(* Birthday paradox *)\nlet year_size = 365.\n\nlet rec birthday_paradox prob people =\n    let prob' = (year_size -. float people) /. year_size *. prob  in\n    if prob' &lt; 0.5 then\n        Printf.printf \"answer = %d\\n\" (people+1)\n    else\n        birthday_paradox prob' (people+1) ;;\n\nbirthday_paradox 1.0 1\n\n(* Church numerals *)\nlet zero f x = x\nlet succ n f x = f (n f x)\nlet one = succ zero\nlet two = succ (succ zero)\nlet add n1 n2 f x = n1 f (n2 f x)\nlet to_string n = n (fun k -&gt; \"S\" ^ k) \"0\"\nlet _ = to_string (add (succ two) two)\n\n(* Elementary functions *)\nlet square x = x * x;;\nlet rec fact x =\n  if x &lt;= 1 then 1 else x * fact (x - 1);;\n\n(* Automatic memory management *)\nlet l = 1 :: 2 :: 3 :: [];;\n[1; 2; 3];;\n5 :: l;;\n\n(* Polymorphism: sorting lists *)\nlet rec sort = function\n  | [] -&gt; []\n  | x :: l -&gt; insert x (sort l)\n\nand insert elem = function\n  | [] -&gt; [elem]\n  | x :: l -&gt;\n      if elem &lt; x then elem :: x :: l else x :: insert elem l;;\n\n(* Imperative features *)\nlet add_polynom p1 p2 =\n  let n1 = Array.length p1\n  and n2 = Array.length p2 in\n  let result = Array.create (max n1 n2) 0 in\n  for i = 0 to n1 - 1 do result.(i) &lt;- p1.(i) done;\n  for i = 0 to n2 - 1 do result.(i) &lt;- result.(i) + p2.(i) done;\n  result;;\nadd_polynom [| 1; 2 |] [| 1; 2; 3 |];;\n\n(* We may redefine fact using a reference cell and a for loop *)\nlet fact n =\n  let result = ref 1 in\n  for i = 2 to n do\n    result := i * !result\n   done;\n   !result;;\nfact 5;;\n\n(* Triangle (graphics) *)\nlet () =\n  ignore( Glut.init Sys.argv );\n  Glut.initDisplayMode ~double_buffer:true ();\n  ignore (Glut.createWindow ~title:\"OpenGL Demo\");\n  let angle t = 10. *. t *. t in\n  let render () =\n    GlClear.clear [ `color ];\n    GlMat.load_identity ();\n    GlMat.rotate ~angle: (angle (Sys.time ())) ~z:1. ();\n    GlDraw.begins `triangles;\n    List.iter GlDraw.vertex2 [-1., -1.; 0., 1.; 1., -1.];\n    GlDraw.ends ();\n    Glut.swapBuffers () in\n  GlMat.mode `modelview;\n  Glut.displayFunc ~cb:render;\n  Glut.idleFunc ~cb:(Some Glut.postRedisplay);\n  Glut.mainLoop ()\n\n(* A Hundred Lines of Caml - http://caml.inria.fr/about/taste.en.html *)\n(* OCaml page on Wikipedia - http://en.wikipedia.org/wiki/OCaml *)\n</textarea>\n\n<h2>F# mode</h2>\n<textarea id=\"fsharpCode\">\nmodule CodeMirror.FSharp\n\nlet rec fib = function\n    | 0 -> 0\n    | 1 -> 1\n    | n -> fib (n - 1) + fib (n - 2)\n\ntype Point =\n    {\n        x : int\n        y : int\n    }\n\ntype Color =\n    | Red\n    | Green\n    | Blue\n\n[0 .. 10]\n|> List.map ((+) 2)\n|> List.fold (fun x y -> x + y) 0\n|> printf \"%i\"\n</textarea>\n\n\n<script>\n  var ocamlEditor = CodeMirror.fromTextArea(document.getElementById('ocamlCode'), {\n    mode: 'text/x-ocaml',\n    lineNumbers: true,\n    matchBrackets: true\n  });\n\n  var fsharpEditor = CodeMirror.fromTextArea(document.getElementById('fsharpCode'), {\n    mode: 'text/x-fsharp',\n    lineNumbers: true,\n    matchBrackets: true\n  });\n</script>\n\n<p><strong>MIME types defined:</strong> <code>text/x-ocaml</code> (OCaml) and <code>text/x-fsharp</code> (F#).</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/mllike/mllike.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode('mllike', function(_config, parserConfig) {\n  var words = {\n    'let': 'keyword',\n    'rec': 'keyword',\n    'in': 'keyword',\n    'of': 'keyword',\n    'and': 'keyword',\n    'if': 'keyword',\n    'then': 'keyword',\n    'else': 'keyword',\n    'for': 'keyword',\n    'to': 'keyword',\n    'while': 'keyword',\n    'do': 'keyword',\n    'done': 'keyword',\n    'fun': 'keyword',\n    'function': 'keyword',\n    'val': 'keyword',\n    'type': 'keyword',\n    'mutable': 'keyword',\n    'match': 'keyword',\n    'with': 'keyword',\n    'try': 'keyword',\n    'open': 'builtin',\n    'ignore': 'builtin',\n    'begin': 'keyword',\n    'end': 'keyword'\n  };\n\n  var extraWords = parserConfig.extraWords || {};\n  for (var prop in extraWords) {\n    if (extraWords.hasOwnProperty(prop)) {\n      words[prop] = parserConfig.extraWords[prop];\n    }\n  }\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n\n    if (ch === '\"') {\n      state.tokenize = tokenString;\n      return state.tokenize(stream, state);\n    }\n    if (ch === '(') {\n      if (stream.eat('*')) {\n        state.commentLevel++;\n        state.tokenize = tokenComment;\n        return state.tokenize(stream, state);\n      }\n    }\n    if (ch === '~') {\n      stream.eatWhile(/\\w/);\n      return 'variable-2';\n    }\n    if (ch === '`') {\n      stream.eatWhile(/\\w/);\n      return 'quote';\n    }\n    if (ch === '/' && parserConfig.slashComments && stream.eat('/')) {\n      stream.skipToEnd();\n      return 'comment';\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\d]/);\n      if (stream.eat('.')) {\n        stream.eatWhile(/[\\d]/);\n      }\n      return 'number';\n    }\n    if ( /[+\\-*&%=<>!?|]/.test(ch)) {\n      return 'operator';\n    }\n    stream.eatWhile(/\\w/);\n    var cur = stream.current();\n    return words[cur] || 'variable';\n  }\n\n  function tokenString(stream, state) {\n    var next, end = false, escaped = false;\n    while ((next = stream.next()) != null) {\n      if (next === '\"' && !escaped) {\n        end = true;\n        break;\n      }\n      escaped = !escaped && next === '\\\\';\n    }\n    if (end && !escaped) {\n      state.tokenize = tokenBase;\n    }\n    return 'string';\n  };\n\n  function tokenComment(stream, state) {\n    var prev, next;\n    while(state.commentLevel > 0 && (next = stream.next()) != null) {\n      if (prev === '(' && next === '*') state.commentLevel++;\n      if (prev === '*' && next === ')') state.commentLevel--;\n      prev = next;\n    }\n    if (state.commentLevel <= 0) {\n      state.tokenize = tokenBase;\n    }\n    return 'comment';\n  }\n\n  return {\n    startState: function() {return {tokenize: tokenBase, commentLevel: 0};},\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      return state.tokenize(stream, state);\n    },\n\n    blockCommentStart: \"(*\",\n    blockCommentEnd: \"*)\",\n    lineComment: parserConfig.slashComments ? \"//\" : null\n  };\n});\n\nCodeMirror.defineMIME('text/x-ocaml', {\n  name: 'mllike',\n  extraWords: {\n    'succ': 'keyword',\n    'trace': 'builtin',\n    'exit': 'builtin',\n    'print_string': 'builtin',\n    'print_endline': 'builtin',\n    'true': 'atom',\n    'false': 'atom',\n    'raise': 'keyword'\n  }\n});\n\nCodeMirror.defineMIME('text/x-fsharp', {\n  name: 'mllike',\n  extraWords: {\n    'abstract': 'keyword',\n    'as': 'keyword',\n    'assert': 'keyword',\n    'base': 'keyword',\n    'class': 'keyword',\n    'default': 'keyword',\n    'delegate': 'keyword',\n    'downcast': 'keyword',\n    'downto': 'keyword',\n    'elif': 'keyword',\n    'exception': 'keyword',\n    'extern': 'keyword',\n    'finally': 'keyword',\n    'global': 'keyword',\n    'inherit': 'keyword',\n    'inline': 'keyword',\n    'interface': 'keyword',\n    'internal': 'keyword',\n    'lazy': 'keyword',\n    'let!': 'keyword',\n    'member' : 'keyword',\n    'module': 'keyword',\n    'namespace': 'keyword',\n    'new': 'keyword',\n    'null': 'keyword',\n    'override': 'keyword',\n    'private': 'keyword',\n    'public': 'keyword',\n    'return': 'keyword',\n    'return!': 'keyword',\n    'select': 'keyword',\n    'static': 'keyword',\n    'struct': 'keyword',\n    'upcast': 'keyword',\n    'use': 'keyword',\n    'use!': 'keyword',\n    'val': 'keyword',\n    'when': 'keyword',\n    'yield': 'keyword',\n    'yield!': 'keyword',\n\n    'List': 'builtin',\n    'Seq': 'builtin',\n    'Map': 'builtin',\n    'Set': 'builtin',\n    'int': 'builtin',\n    'string': 'builtin',\n    'raise': 'builtin',\n    'failwith': 'builtin',\n    'not': 'builtin',\n    'true': 'builtin',\n    'false': 'builtin'\n  },\n  slashComments: true\n});\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/modelica/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Modelica mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<link rel=\"stylesheet\" href=\"../../addon/hint/show-hint.css\">\n<script src=\"../../addon/hint/show-hint.js\"></script>\n<script src=\"modelica.js\"></script>\n<style>.CodeMirror {border: 2px inset #dee;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Modelica</a>\n  </ul>\n</div>\n\n<article>\n<h2>Modelica mode</h2>\n\n<div><textarea id=\"modelica\">\nmodel BouncingBall\n  parameter Real e = 0.7;\n  parameter Real g = 9.81;\n  Real h(start=1);\n  Real v;\n  Boolean flying(start=true);\n  Boolean impact;\n  Real v_new;\nequation\n  impact = h <= 0.0;\n  der(v) = if flying then -g else 0;\n  der(h) = v;\n  when {h <= 0.0 and v <= 0.0, impact} then\n    v_new = if edge(impact) then -e*pre(v) else 0;\n    flying = v_new > 0;\n    reinit(v, v_new);\n  end when;\n  annotation (uses(Modelica(version=\"3.2\")));\nend BouncingBall;\n</textarea></div>\n\n    <script>\n      var modelicaEditor = CodeMirror.fromTextArea(document.getElementById(\"modelica\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-modelica\"\n      });\n      var mac = CodeMirror.keyMap.default == CodeMirror.keyMap.macDefault;\n      CodeMirror.keyMap.default[(mac ? \"Cmd\" : \"Ctrl\") + \"-Space\"] = \"autocomplete\";\n    </script>\n\n    <p>Simple mode that tries to handle Modelica as well as it can.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-modelica</code>\n    (Modlica code).</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/modelica/modelica.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// Modelica support for CodeMirror, copyright (c) by Lennart Ochel\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})\n\n(function(CodeMirror) {\n  \"use strict\";\n\n  CodeMirror.defineMode(\"modelica\", function(config, parserConfig) {\n\n    var indentUnit = config.indentUnit;\n    var keywords = parserConfig.keywords || {};\n    var builtin = parserConfig.builtin || {};\n    var atoms = parserConfig.atoms || {};\n\n    var isSingleOperatorChar = /[;=\\(:\\),{}.*<>+\\-\\/^\\[\\]]/;\n    var isDoubleOperatorChar = /(:=|<=|>=|==|<>|\\.\\+|\\.\\-|\\.\\*|\\.\\/|\\.\\^)/;\n    var isDigit = /[0-9]/;\n    var isNonDigit = /[_a-zA-Z]/;\n\n    function tokenLineComment(stream, state) {\n      stream.skipToEnd();\n      state.tokenize = null;\n      return \"comment\";\n    }\n\n    function tokenBlockComment(stream, state) {\n      var maybeEnd = false, ch;\n      while (ch = stream.next()) {\n        if (maybeEnd && ch == \"/\") {\n          state.tokenize = null;\n          break;\n        }\n        maybeEnd = (ch == \"*\");\n      }\n      return \"comment\";\n    }\n\n    function tokenString(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == '\"' && !escaped) {\n          state.tokenize = null;\n          state.sol = false;\n          break;\n        }\n        escaped = !escaped && ch == \"\\\\\";\n      }\n\n      return \"string\";\n    }\n\n    function tokenIdent(stream, state) {\n      stream.eatWhile(isDigit);\n      while (stream.eat(isDigit) || stream.eat(isNonDigit)) { }\n\n\n      var cur = stream.current();\n\n      if(state.sol && (cur == \"package\" || cur == \"model\" || cur == \"when\" || cur == \"connector\")) state.level++;\n      else if(state.sol && cur == \"end\" && state.level > 0) state.level--;\n\n      state.tokenize = null;\n      state.sol = false;\n\n      if (keywords.propertyIsEnumerable(cur)) return \"keyword\";\n      else if (builtin.propertyIsEnumerable(cur)) return \"builtin\";\n      else if (atoms.propertyIsEnumerable(cur)) return \"atom\";\n      else return \"variable\";\n    }\n\n    function tokenQIdent(stream, state) {\n      while (stream.eat(/[^']/)) { }\n\n      state.tokenize = null;\n      state.sol = false;\n\n      if(stream.eat(\"'\"))\n        return \"variable\";\n      else\n        return \"error\";\n    }\n\n    function tokenUnsignedNuber(stream, state) {\n      stream.eatWhile(isDigit);\n      if (stream.eat('.')) {\n        stream.eatWhile(isDigit);\n      }\n      if (stream.eat('e') || stream.eat('E')) {\n        if (!stream.eat('-'))\n          stream.eat('+');\n        stream.eatWhile(isDigit);\n      }\n\n      state.tokenize = null;\n      state.sol = false;\n      return \"number\";\n    }\n\n    // Interface\n    return {\n      startState: function() {\n        return {\n          tokenize: null,\n          level: 0,\n          sol: true\n        };\n      },\n\n      token: function(stream, state) {\n        if(state.tokenize != null) {\n          return state.tokenize(stream, state);\n        }\n\n        if(stream.sol()) {\n          state.sol = true;\n        }\n\n        // WHITESPACE\n        if(stream.eatSpace()) {\n          state.tokenize = null;\n          return null;\n        }\n\n        var ch = stream.next();\n\n        // LINECOMMENT\n        if(ch == '/' && stream.eat('/')) {\n          state.tokenize = tokenLineComment;\n        }\n        // BLOCKCOMMENT\n        else if(ch == '/' && stream.eat('*')) {\n          state.tokenize = tokenBlockComment;\n        }\n        // TWO SYMBOL TOKENS\n        else if(isDoubleOperatorChar.test(ch+stream.peek())) {\n          stream.next();\n          state.tokenize = null;\n          return \"operator\";\n        }\n        // SINGLE SYMBOL TOKENS\n        else if(isSingleOperatorChar.test(ch)) {\n          state.tokenize = null;\n          return \"operator\";\n        }\n        // IDENT\n        else if(isNonDigit.test(ch)) {\n          state.tokenize = tokenIdent;\n        }\n        // Q-IDENT\n        else if(ch == \"'\" && stream.peek() && stream.peek() != \"'\") {\n          state.tokenize = tokenQIdent;\n        }\n        // STRING\n        else if(ch == '\"') {\n          state.tokenize = tokenString;\n        }\n        // UNSIGNED_NUBER\n        else if(isDigit.test(ch)) {\n          state.tokenize = tokenUnsignedNuber;\n        }\n        // ERROR\n        else {\n          state.tokenize = null;\n          return \"error\";\n        }\n\n        return state.tokenize(stream, state);\n      },\n\n      indent: function(state, textAfter) {\n        if (state.tokenize != null) return CodeMirror.Pass;\n\n        var level = state.level;\n        if(/(algorithm)/.test(textAfter)) level--;\n        if(/(equation)/.test(textAfter)) level--;\n        if(/(initial algorithm)/.test(textAfter)) level--;\n        if(/(initial equation)/.test(textAfter)) level--;\n        if(/(end)/.test(textAfter)) level--;\n\n        if(level > 0)\n          return indentUnit*level;\n        else\n          return 0;\n      },\n\n      blockCommentStart: \"/*\",\n      blockCommentEnd: \"*/\",\n      lineComment: \"//\"\n    };\n  });\n\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i=0; i<words.length; ++i)\n      obj[words[i]] = true;\n    return obj;\n  }\n\n  var modelicaKeywords = \"algorithm and annotation assert block break class connect connector constant constrainedby der discrete each else elseif elsewhen encapsulated end enumeration equation expandable extends external false final flow for function if import impure in initial inner input loop model not operator or outer output package parameter partial protected public pure record redeclare replaceable return stream then true type when while within\";\n  var modelicaBuiltin = \"abs acos actualStream asin atan atan2 cardinality ceil cos cosh delay div edge exp floor getInstanceName homotopy inStream integer log log10 mod pre reinit rem semiLinear sign sin sinh spatialDistribution sqrt tan tanh\";\n  var modelicaAtoms = \"Real Boolean Integer String\";\n\n  function def(mimes, mode) {\n    if (typeof mimes == \"string\")\n      mimes = [mimes];\n\n    var words = [];\n\n    function add(obj) {\n      if (obj)\n        for (var prop in obj)\n          if (obj.hasOwnProperty(prop))\n            words.push(prop);\n    }\n\n    add(mode.keywords);\n    add(mode.builtin);\n    add(mode.atoms);\n\n    if (words.length) {\n      mode.helperType = mimes[0];\n      CodeMirror.registerHelper(\"hintWords\", mimes[0], words);\n    }\n\n    for (var i=0; i<mimes.length; ++i)\n      CodeMirror.defineMIME(mimes[i], mode);\n  }\n\n  def([\"text/x-modelica\"], {\n    name: \"modelica\",\n    keywords: words(modelicaKeywords),\n    builtin: words(modelicaBuiltin),\n    atoms: words(modelicaAtoms)\n  });\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/nginx/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: NGINX mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"nginx.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n    <link rel=\"stylesheet\" href=\"../../doc/docs.css\">\n  </head>\n\n  <style>\n    body {\n      margin: 0em auto;\n    }\n\n    .CodeMirror, .CodeMirror-scroll {\n      height: 600px;\n    }\n  </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">NGINX</a>\n  </ul>\n</div>\n\n<article>\n<h2>NGINX mode</h2>\n<form><textarea id=\"code\" name=\"code\" style=\"height: 800px;\">\nserver {\n  listen 173.255.219.235:80;\n  server_name website.com.au;\n  rewrite / $scheme://www.$host$request_uri permanent; ## Forcibly prepend a www\n}\n\nserver {\n  listen 173.255.219.235:443;\n  server_name website.com.au;\n  rewrite / $scheme://www.$host$request_uri permanent; ## Forcibly prepend a www\n}\n\nserver {\n\n  listen      173.255.219.235:80;\n  server_name www.website.com.au;\n\n\n\n  root        /data/www;\n  index       index.html index.php;\n\n  location / {\n    index index.html index.php;     ## Allow a static html file to be shown first\n    try_files $uri $uri/ @handler;  ## If missing pass the URI to Magento's front handler\n    expires 30d;                    ## Assume all files are cachable\n  }\n\n  ## These locations would be hidden by .htaccess normally\n  location /app/                { deny all; }\n  location /includes/           { deny all; }\n  location /lib/                { deny all; }\n  location /media/downloadable/ { deny all; }\n  location /pkginfo/            { deny all; }\n  location /report/config.xml   { deny all; }\n  location /var/                { deny all; }\n\n  location /var/export/ { ## Allow admins only to view export folder\n    auth_basic           \"Restricted\"; ## Message shown in login window\n    auth_basic_user_file /rs/passwords/testfile; ## See /etc/nginx/htpassword\n    autoindex            on;\n  }\n\n  location  /. { ## Disable .htaccess and other hidden files\n    return 404;\n  }\n\n  location @handler { ## Magento uses a common front handler\n    rewrite / /index.php;\n  }\n\n  location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler\n    rewrite ^/(.*.php)/ /$1 last;\n  }\n\n  location ~ \\.php$ {\n    if (!-e $request_filename) { rewrite / /index.php last; } ## Catch 404s that try_files miss\n\n    fastcgi_pass   127.0.0.1:9000;\n    fastcgi_index  index.php;\n    fastcgi_param PATH_INFO $fastcgi_script_name;\n    fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;\n    include        /rs/confs/nginx/fastcgi_params;\n  }\n\n}\n\n\nserver {\n\n  listen              173.255.219.235:443;\n  server_name         website.com.au www.website.com.au;\n\n  root   /data/www;\n  index index.html index.php;\n\n  ssl                 on;\n  ssl_certificate     /rs/ssl/ssl.crt;\n  ssl_certificate_key /rs/ssl/ssl.key;\n\n  ssl_session_timeout  5m;\n\n  ssl_protocols  SSLv2 SSLv3 TLSv1;\n  ssl_ciphers  ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;\n  ssl_prefer_server_ciphers   on;\n\n\n\n  location / {\n    index index.html index.php; ## Allow a static html file to be shown first\n    try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler\n    expires 30d; ## Assume all files are cachable\n  }\n\n  ## These locations would be hidden by .htaccess normally\n  location /app/                { deny all; }\n  location /includes/           { deny all; }\n  location /lib/                { deny all; }\n  location /media/downloadable/ { deny all; }\n  location /pkginfo/            { deny all; }\n  location /report/config.xml   { deny all; }\n  location /var/                { deny all; }\n\n  location /var/export/ { ## Allow admins only to view export folder\n    auth_basic           \"Restricted\"; ## Message shown in login window\n    auth_basic_user_file htpasswd; ## See /etc/nginx/htpassword\n    autoindex            on;\n  }\n\n  location  /. { ## Disable .htaccess and other hidden files\n    return 404;\n  }\n\n  location @handler { ## Magento uses a common front handler\n    rewrite / /index.php;\n  }\n\n  location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler\n    rewrite ^/(.*.php)/ /$1 last;\n  }\n\n  location ~ .php$ { ## Execute PHP scripts\n    if (!-e $request_filename) { rewrite  /index.php last; } ## Catch 404s that try_files miss\n\n    fastcgi_pass 127.0.0.1:9000;\n    fastcgi_index  index.php;\n    fastcgi_param PATH_INFO $fastcgi_script_name;\n    fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;\n    include        /rs/confs/nginx/fastcgi_params;\n\n    fastcgi_param HTTPS on;\n  }\n\n}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/nginx</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/nginx/nginx.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"nginx\", function(config) {\n\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  var keywords = words(\n    /* ngxDirectiveControl */ \"break return rewrite set\" +\n    /* ngxDirective */ \" accept_mutex accept_mutex_delay access_log add_after_body add_before_body add_header addition_types aio alias allow ancient_browser ancient_browser_value auth_basic auth_basic_user_file auth_http auth_http_header auth_http_timeout autoindex autoindex_exact_size autoindex_localtime charset charset_types client_body_buffer_size client_body_in_file_only client_body_in_single_buffer client_body_temp_path client_body_timeout client_header_buffer_size client_header_timeout client_max_body_size connection_pool_size create_full_put_path daemon dav_access dav_methods debug_connection debug_points default_type degradation degrade deny devpoll_changes devpoll_events directio directio_alignment empty_gif env epoll_events error_log eventport_events expires fastcgi_bind fastcgi_buffer_size fastcgi_buffers fastcgi_busy_buffers_size fastcgi_cache fastcgi_cache_key fastcgi_cache_methods fastcgi_cache_min_uses fastcgi_cache_path fastcgi_cache_use_stale fastcgi_cache_valid fastcgi_catch_stderr fastcgi_connect_timeout fastcgi_hide_header fastcgi_ignore_client_abort fastcgi_ignore_headers fastcgi_index fastcgi_intercept_errors fastcgi_max_temp_file_size fastcgi_next_upstream fastcgi_param fastcgi_pass_header fastcgi_pass_request_body fastcgi_pass_request_headers fastcgi_read_timeout fastcgi_send_lowat fastcgi_send_timeout fastcgi_split_path_info fastcgi_store fastcgi_store_access fastcgi_temp_file_write_size fastcgi_temp_path fastcgi_upstream_fail_timeout fastcgi_upstream_max_fails flv geoip_city geoip_country google_perftools_profiles gzip gzip_buffers gzip_comp_level gzip_disable gzip_hash gzip_http_version gzip_min_length gzip_no_buffer gzip_proxied gzip_static gzip_types gzip_vary gzip_window if_modified_since ignore_invalid_headers image_filter image_filter_buffer image_filter_jpeg_quality image_filter_transparency imap_auth imap_capabilities imap_client_buffer index ip_hash keepalive_requests keepalive_timeout kqueue_changes kqueue_events large_client_header_buffers limit_conn limit_conn_log_level limit_rate limit_rate_after limit_req limit_req_log_level limit_req_zone limit_zone lingering_time lingering_timeout lock_file log_format log_not_found log_subrequest map_hash_bucket_size map_hash_max_size master_process memcached_bind memcached_buffer_size memcached_connect_timeout memcached_next_upstream memcached_read_timeout memcached_send_timeout memcached_upstream_fail_timeout memcached_upstream_max_fails merge_slashes min_delete_depth modern_browser modern_browser_value msie_padding msie_refresh multi_accept open_file_cache open_file_cache_errors open_file_cache_events open_file_cache_min_uses open_file_cache_valid open_log_file_cache output_buffers override_charset perl perl_modules perl_require perl_set pid pop3_auth pop3_capabilities port_in_redirect postpone_gzipping postpone_output protocol proxy proxy_bind proxy_buffer proxy_buffer_size proxy_buffering proxy_buffers proxy_busy_buffers_size proxy_cache proxy_cache_key proxy_cache_methods proxy_cache_min_uses proxy_cache_path proxy_cache_use_stale proxy_cache_valid proxy_connect_timeout proxy_headers_hash_bucket_size proxy_headers_hash_max_size proxy_hide_header proxy_ignore_client_abort proxy_ignore_headers proxy_intercept_errors proxy_max_temp_file_size proxy_method proxy_next_upstream proxy_pass_error_message proxy_pass_header proxy_pass_request_body proxy_pass_request_headers proxy_read_timeout proxy_redirect proxy_send_lowat proxy_send_timeout proxy_set_body proxy_set_header proxy_ssl_session_reuse proxy_store proxy_store_access proxy_temp_file_write_size proxy_temp_path proxy_timeout proxy_upstream_fail_timeout proxy_upstream_max_fails random_index read_ahead real_ip_header recursive_error_pages request_pool_size reset_timedout_connection resolver resolver_timeout rewrite_log rtsig_overflow_events rtsig_overflow_test rtsig_overflow_threshold rtsig_signo satisfy secure_link_secret send_lowat send_timeout sendfile sendfile_max_chunk server_name_in_redirect server_names_hash_bucket_size server_names_hash_max_size server_tokens set_real_ip_from smtp_auth smtp_capabilities smtp_client_buffer smtp_greeting_delay so_keepalive source_charset ssi ssi_ignore_recycled_buffers ssi_min_file_chunk ssi_silent_errors ssi_types ssi_value_length ssl ssl_certificate ssl_certificate_key ssl_ciphers ssl_client_certificate ssl_crl ssl_dhparam ssl_engine ssl_prefer_server_ciphers ssl_protocols ssl_session_cache ssl_session_timeout ssl_verify_client ssl_verify_depth starttls stub_status sub_filter sub_filter_once sub_filter_types tcp_nodelay tcp_nopush thread_stack_size timeout timer_resolution types_hash_bucket_size types_hash_max_size underscores_in_headers uninitialized_variable_warn use user userid userid_domain userid_expires userid_mark userid_name userid_p3p userid_path userid_service valid_referers variables_hash_bucket_size variables_hash_max_size worker_connections worker_cpu_affinity worker_priority worker_processes worker_rlimit_core worker_rlimit_nofile worker_rlimit_sigpending worker_threads working_directory xclient xml_entities xslt_stylesheet xslt_typesdrew@li229-23\"\n    );\n\n  var keywords_block = words(\n    /* ngxDirectiveBlock */ \"http mail events server types location upstream charset_map limit_except if geo map\"\n    );\n\n  var keywords_important = words(\n    /* ngxDirectiveImportant */ \"include root server server_name listen internal proxy_pass memcached_pass fastcgi_pass try_files\"\n    );\n\n  var indentUnit = config.indentUnit, type;\n  function ret(style, tp) {type = tp; return style;}\n\n  function tokenBase(stream, state) {\n\n\n    stream.eatWhile(/[\\w\\$_]/);\n\n    var cur = stream.current();\n\n\n    if (keywords.propertyIsEnumerable(cur)) {\n      return \"keyword\";\n    }\n    else if (keywords_block.propertyIsEnumerable(cur)) {\n      return \"variable-2\";\n    }\n    else if (keywords_important.propertyIsEnumerable(cur)) {\n      return \"string-2\";\n    }\n    /**/\n\n    var ch = stream.next();\n    if (ch == \"@\") {stream.eatWhile(/[\\w\\\\\\-]/); return ret(\"meta\", stream.current());}\n    else if (ch == \"/\" && stream.eat(\"*\")) {\n      state.tokenize = tokenCComment;\n      return tokenCComment(stream, state);\n    }\n    else if (ch == \"<\" && stream.eat(\"!\")) {\n      state.tokenize = tokenSGMLComment;\n      return tokenSGMLComment(stream, state);\n    }\n    else if (ch == \"=\") ret(null, \"compare\");\n    else if ((ch == \"~\" || ch == \"|\") && stream.eat(\"=\")) return ret(null, \"compare\");\n    else if (ch == \"\\\"\" || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    else if (ch == \"#\") {\n      stream.skipToEnd();\n      return ret(\"comment\", \"comment\");\n    }\n    else if (ch == \"!\") {\n      stream.match(/^\\s*\\w*/);\n      return ret(\"keyword\", \"important\");\n    }\n    else if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w.%]/);\n      return ret(\"number\", \"unit\");\n    }\n    else if (/[,.+>*\\/]/.test(ch)) {\n      return ret(null, \"select-op\");\n    }\n    else if (/[;{}:\\[\\]]/.test(ch)) {\n      return ret(null, ch);\n    }\n    else {\n      stream.eatWhile(/[\\w\\\\\\-]/);\n      return ret(\"variable\", \"variable\");\n    }\n  }\n\n  function tokenCComment(stream, state) {\n    var maybeEnd = false, ch;\n    while ((ch = stream.next()) != null) {\n      if (maybeEnd && ch == \"/\") {\n        state.tokenize = tokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return ret(\"comment\", \"comment\");\n  }\n\n  function tokenSGMLComment(stream, state) {\n    var dashes = 0, ch;\n    while ((ch = stream.next()) != null) {\n      if (dashes >= 2 && ch == \">\") {\n        state.tokenize = tokenBase;\n        break;\n      }\n      dashes = (ch == \"-\") ? dashes + 1 : 0;\n    }\n    return ret(\"comment\", \"comment\");\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && !escaped)\n          break;\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      if (!escaped) state.tokenize = tokenBase;\n      return ret(\"string\", \"string\");\n    };\n  }\n\n  return {\n    startState: function(base) {\n      return {tokenize: tokenBase,\n              baseIndent: base || 0,\n              stack: []};\n    },\n\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      type = null;\n      var style = state.tokenize(stream, state);\n\n      var context = state.stack[state.stack.length-1];\n      if (type == \"hash\" && context == \"rule\") style = \"atom\";\n      else if (style == \"variable\") {\n        if (context == \"rule\") style = \"number\";\n        else if (!context || context == \"@media{\") style = \"tag\";\n      }\n\n      if (context == \"rule\" && /^[\\{\\};]$/.test(type))\n        state.stack.pop();\n      if (type == \"{\") {\n        if (context == \"@media\") state.stack[state.stack.length-1] = \"@media{\";\n        else state.stack.push(\"{\");\n      }\n      else if (type == \"}\") state.stack.pop();\n      else if (type == \"@media\") state.stack.push(\"@media\");\n      else if (context == \"{\" && type != \"comment\") state.stack.push(\"rule\");\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      var n = state.stack.length;\n      if (/^\\}/.test(textAfter))\n        n -= state.stack[state.stack.length-1] == \"rule\" ? 2 : 1;\n      return state.baseIndent + n * indentUnit;\n    },\n\n    electricChars: \"}\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/nginx\", \"text/x-nginx-conf\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/ntriples/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: NTriples mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"ntriples.js\"></script>\n<style type=\"text/css\">\n      .CodeMirror {\n        border: 1px solid #eee;\n      }\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">NTriples</a>\n  </ul>\n</div>\n\n<article>\n<h2>NTriples mode</h2>\n<form>\n<textarea id=\"ntriples\" name=\"ntriples\">    \n<http://Sub1>     <http://pred1>     <http://obj> .\n<http://Sub2>     <http://pred2#an2> \"literal 1\" .\n<http://Sub3#an3> <http://pred3>     _:bnode3 .\n_:bnode4          <http://pred4>     \"literal 2\"@lang .\n_:bnode5          <http://pred5>     \"literal 3\"^^<http://type> .\n</textarea>\n</form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"ntriples\"), {});\n    </script>\n    <p><strong>MIME types defined:</strong> <code>text/n-triples</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/ntriples/ntriples.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/**********************************************************\n* This script provides syntax highlighting support for\n* the Ntriples format.\n* Ntriples format specification:\n*     http://www.w3.org/TR/rdf-testcases/#ntriples\n***********************************************************/\n\n/*\n    The following expression defines the defined ASF grammar transitions.\n\n    pre_subject ->\n        {\n        ( writing_subject_uri | writing_bnode_uri )\n            -> pre_predicate\n                -> writing_predicate_uri\n                    -> pre_object\n                        -> writing_object_uri | writing_object_bnode |\n                          (\n                            writing_object_literal\n                                -> writing_literal_lang | writing_literal_type\n                          )\n                            -> post_object\n                                -> BEGIN\n         } otherwise {\n             -> ERROR\n         }\n*/\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"ntriples\", function() {\n\n  var Location = {\n    PRE_SUBJECT         : 0,\n    WRITING_SUB_URI     : 1,\n    WRITING_BNODE_URI   : 2,\n    PRE_PRED            : 3,\n    WRITING_PRED_URI    : 4,\n    PRE_OBJ             : 5,\n    WRITING_OBJ_URI     : 6,\n    WRITING_OBJ_BNODE   : 7,\n    WRITING_OBJ_LITERAL : 8,\n    WRITING_LIT_LANG    : 9,\n    WRITING_LIT_TYPE    : 10,\n    POST_OBJ            : 11,\n    ERROR               : 12\n  };\n  function transitState(currState, c) {\n    var currLocation = currState.location;\n    var ret;\n\n    // Opening.\n    if     (currLocation == Location.PRE_SUBJECT && c == '<') ret = Location.WRITING_SUB_URI;\n    else if(currLocation == Location.PRE_SUBJECT && c == '_') ret = Location.WRITING_BNODE_URI;\n    else if(currLocation == Location.PRE_PRED    && c == '<') ret = Location.WRITING_PRED_URI;\n    else if(currLocation == Location.PRE_OBJ     && c == '<') ret = Location.WRITING_OBJ_URI;\n    else if(currLocation == Location.PRE_OBJ     && c == '_') ret = Location.WRITING_OBJ_BNODE;\n    else if(currLocation == Location.PRE_OBJ     && c == '\"') ret = Location.WRITING_OBJ_LITERAL;\n\n    // Closing.\n    else if(currLocation == Location.WRITING_SUB_URI     && c == '>') ret = Location.PRE_PRED;\n    else if(currLocation == Location.WRITING_BNODE_URI   && c == ' ') ret = Location.PRE_PRED;\n    else if(currLocation == Location.WRITING_PRED_URI    && c == '>') ret = Location.PRE_OBJ;\n    else if(currLocation == Location.WRITING_OBJ_URI     && c == '>') ret = Location.POST_OBJ;\n    else if(currLocation == Location.WRITING_OBJ_BNODE   && c == ' ') ret = Location.POST_OBJ;\n    else if(currLocation == Location.WRITING_OBJ_LITERAL && c == '\"') ret = Location.POST_OBJ;\n    else if(currLocation == Location.WRITING_LIT_LANG && c == ' ') ret = Location.POST_OBJ;\n    else if(currLocation == Location.WRITING_LIT_TYPE && c == '>') ret = Location.POST_OBJ;\n\n    // Closing typed and language literal.\n    else if(currLocation == Location.WRITING_OBJ_LITERAL && c == '@') ret = Location.WRITING_LIT_LANG;\n    else if(currLocation == Location.WRITING_OBJ_LITERAL && c == '^') ret = Location.WRITING_LIT_TYPE;\n\n    // Spaces.\n    else if( c == ' ' &&\n             (\n               currLocation == Location.PRE_SUBJECT ||\n               currLocation == Location.PRE_PRED    ||\n               currLocation == Location.PRE_OBJ     ||\n               currLocation == Location.POST_OBJ\n             )\n           ) ret = currLocation;\n\n    // Reset.\n    else if(currLocation == Location.POST_OBJ && c == '.') ret = Location.PRE_SUBJECT;\n\n    // Error\n    else ret = Location.ERROR;\n\n    currState.location=ret;\n  }\n\n  return {\n    startState: function() {\n       return {\n           location : Location.PRE_SUBJECT,\n           uris     : [],\n           anchors  : [],\n           bnodes   : [],\n           langs    : [],\n           types    : []\n       };\n    },\n    token: function(stream, state) {\n      var ch = stream.next();\n      if(ch == '<') {\n         transitState(state, ch);\n         var parsedURI = '';\n         stream.eatWhile( function(c) { if( c != '#' && c != '>' ) { parsedURI += c; return true; } return false;} );\n         state.uris.push(parsedURI);\n         if( stream.match('#', false) ) return 'variable';\n         stream.next();\n         transitState(state, '>');\n         return 'variable';\n      }\n      if(ch == '#') {\n        var parsedAnchor = '';\n        stream.eatWhile(function(c) { if(c != '>' && c != ' ') { parsedAnchor+= c; return true; } return false;});\n        state.anchors.push(parsedAnchor);\n        return 'variable-2';\n      }\n      if(ch == '>') {\n          transitState(state, '>');\n          return 'variable';\n      }\n      if(ch == '_') {\n          transitState(state, ch);\n          var parsedBNode = '';\n          stream.eatWhile(function(c) { if( c != ' ' ) { parsedBNode += c; return true; } return false;});\n          state.bnodes.push(parsedBNode);\n          stream.next();\n          transitState(state, ' ');\n          return 'builtin';\n      }\n      if(ch == '\"') {\n          transitState(state, ch);\n          stream.eatWhile( function(c) { return c != '\"'; } );\n          stream.next();\n          if( stream.peek() != '@' && stream.peek() != '^' ) {\n              transitState(state, '\"');\n          }\n          return 'string';\n      }\n      if( ch == '@' ) {\n          transitState(state, '@');\n          var parsedLang = '';\n          stream.eatWhile(function(c) { if( c != ' ' ) { parsedLang += c; return true; } return false;});\n          state.langs.push(parsedLang);\n          stream.next();\n          transitState(state, ' ');\n          return 'string-2';\n      }\n      if( ch == '^' ) {\n          stream.next();\n          transitState(state, '^');\n          var parsedType = '';\n          stream.eatWhile(function(c) { if( c != '>' ) { parsedType += c; return true; } return false;} );\n          state.types.push(parsedType);\n          stream.next();\n          transitState(state, '>');\n          return 'variable';\n      }\n      if( ch == ' ' ) {\n          transitState(state, ch);\n      }\n      if( ch == '.' ) {\n          transitState(state, ch);\n      }\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/n-triples\", \"ntriples\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/octave/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Octave mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"octave.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Octave</a>\n  </ul>\n</div>\n\n<article>\n<h2>Octave mode</h2>\n\n    <div><textarea id=\"code\" name=\"code\">\n%numbers\n[1234 1234i 1234j]\n[.234 .234j 2.23i]\n[23e2 12E1j 123D-4 0x234]\n\n%strings\n'asda''a'\n\"asda\"\"a\"\n\n%identifiers\na + as123 - __asd__\n\n%operators\n-\n+\n=\n==\n>\n<\n>=\n<=\n&\n~\n...\nbreak zeros default margin round ones rand\nceil floor size clear zeros eye mean std cov\nerror eval function\nabs acos atan asin cos cosh exp log prod sum\nlog10 max min sign sin sinh sqrt tan reshape\nreturn\ncase switch\nelse elseif end if otherwise\ndo for while\ntry catch\nclassdef properties events methods\nglobal persistent\n\n%one line comment\n%{ multi \nline commment %}\n\n    </textarea></div>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: {name: \"octave\",\n               version: 2,\n               singleLineStringErrors: false},\n        lineNumbers: true,\n        indentUnit: 4,\n        matchBrackets: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-octave</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/octave/octave.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"octave\", function() {\n  function wordRegexp(words) {\n    return new RegExp(\"^((\" + words.join(\")|(\") + \"))\\\\b\");\n  }\n\n  var singleOperators = new RegExp(\"^[\\\\+\\\\-\\\\*/&|\\\\^~<>!@'\\\\\\\\]\");\n  var singleDelimiters = new RegExp('^[\\\\(\\\\[\\\\{\\\\},:=;]');\n  var doubleOperators = new RegExp(\"^((==)|(~=)|(<=)|(>=)|(<<)|(>>)|(\\\\.[\\\\+\\\\-\\\\*/\\\\^\\\\\\\\]))\");\n  var doubleDelimiters = new RegExp(\"^((!=)|(\\\\+=)|(\\\\-=)|(\\\\*=)|(/=)|(&=)|(\\\\|=)|(\\\\^=))\");\n  var tripleDelimiters = new RegExp(\"^((>>=)|(<<=))\");\n  var expressionEnd = new RegExp(\"^[\\\\]\\\\)]\");\n  var identifiers = new RegExp(\"^[_A-Za-z\\xa1-\\uffff][_A-Za-z0-9\\xa1-\\uffff]*\");\n\n  var builtins = wordRegexp([\n    'error', 'eval', 'function', 'abs', 'acos', 'atan', 'asin', 'cos',\n    'cosh', 'exp', 'log', 'prod', 'sum', 'log10', 'max', 'min', 'sign', 'sin', 'sinh',\n    'sqrt', 'tan', 'reshape', 'break', 'zeros', 'default', 'margin', 'round', 'ones',\n    'rand', 'syn', 'ceil', 'floor', 'size', 'clear', 'zeros', 'eye', 'mean', 'std', 'cov',\n    'det', 'eig', 'inv', 'norm', 'rank', 'trace', 'expm', 'logm', 'sqrtm', 'linspace', 'plot',\n    'title', 'xlabel', 'ylabel', 'legend', 'text', 'grid', 'meshgrid', 'mesh', 'num2str',\n    'fft', 'ifft', 'arrayfun', 'cellfun', 'input', 'fliplr', 'flipud', 'ismember'\n  ]);\n\n  var keywords = wordRegexp([\n    'return', 'case', 'switch', 'else', 'elseif', 'end', 'endif', 'endfunction',\n    'if', 'otherwise', 'do', 'for', 'while', 'try', 'catch', 'classdef', 'properties', 'events',\n    'methods', 'global', 'persistent', 'endfor', 'endwhile', 'printf', 'sprintf', 'disp', 'until',\n    'continue', 'pkg'\n  ]);\n\n\n  // tokenizers\n  function tokenTranspose(stream, state) {\n    if (!stream.sol() && stream.peek() === '\\'') {\n      stream.next();\n      state.tokenize = tokenBase;\n      return 'operator';\n    }\n    state.tokenize = tokenBase;\n    return tokenBase(stream, state);\n  }\n\n\n  function tokenComment(stream, state) {\n    if (stream.match(/^.*%}/)) {\n      state.tokenize = tokenBase;\n      return 'comment';\n    };\n    stream.skipToEnd();\n    return 'comment';\n  }\n\n  function tokenBase(stream, state) {\n    // whitespaces\n    if (stream.eatSpace()) return null;\n\n    // Handle one line Comments\n    if (stream.match('%{')){\n      state.tokenize = tokenComment;\n      stream.skipToEnd();\n      return 'comment';\n    }\n\n    if (stream.match(/^[%#]/)){\n      stream.skipToEnd();\n      return 'comment';\n    }\n\n    // Handle Number Literals\n    if (stream.match(/^[0-9\\.+-]/, false)) {\n      if (stream.match(/^[+-]?0x[0-9a-fA-F]+[ij]?/)) {\n        stream.tokenize = tokenBase;\n        return 'number'; };\n      if (stream.match(/^[+-]?\\d*\\.\\d+([EeDd][+-]?\\d+)?[ij]?/)) { return 'number'; };\n      if (stream.match(/^[+-]?\\d+([EeDd][+-]?\\d+)?[ij]?/)) { return 'number'; };\n    }\n    if (stream.match(wordRegexp(['nan','NaN','inf','Inf']))) { return 'number'; };\n\n    // Handle Strings\n    if (stream.match(/^\"([^\"]|(\"\"))*\"/)) { return 'string'; } ;\n    if (stream.match(/^'([^']|(''))*'/)) { return 'string'; } ;\n\n    // Handle words\n    if (stream.match(keywords)) { return 'keyword'; } ;\n    if (stream.match(builtins)) { return 'builtin'; } ;\n    if (stream.match(identifiers)) { return 'variable'; } ;\n\n    if (stream.match(singleOperators) || stream.match(doubleOperators)) { return 'operator'; };\n    if (stream.match(singleDelimiters) || stream.match(doubleDelimiters) || stream.match(tripleDelimiters)) { return null; };\n\n    if (stream.match(expressionEnd)) {\n      state.tokenize = tokenTranspose;\n      return null;\n    };\n\n\n    // Handle non-detected items\n    stream.next();\n    return 'error';\n  };\n\n\n  return {\n    startState: function() {\n      return {\n        tokenize: tokenBase\n      };\n    },\n\n    token: function(stream, state) {\n      var style = state.tokenize(stream, state);\n      if (style === 'number' || style === 'variable'){\n        state.tokenize = tokenTranspose;\n      }\n      return style;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-octave\", \"octave\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/pascal/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Pascal mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"pascal.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Pascal</a>\n  </ul>\n</div>\n\n<article>\n<h2>Pascal mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n(* Example Pascal code *)\n\nwhile a <> b do writeln('Waiting');\n \nif a > b then \n  writeln('Condition met')\nelse \n  writeln('Condition not met');\n \nfor i := 1 to 10 do \n  writeln('Iteration: ', i:1);\n \nrepeat\n  a := a + 1\nuntil a = 10;\n \ncase i of\n  0: write('zero');\n  1: write('one');\n  2: write('two')\nend;\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        mode: \"text/x-pascal\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-pascal</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/pascal/pascal.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"pascal\", function() {\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n  var keywords = words(\"and array begin case const div do downto else end file for forward integer \" +\n                       \"boolean char function goto if in label mod nil not of or packed procedure \" +\n                       \"program record repeat set string then to type until var while with\");\n  var atoms = {\"null\": true};\n\n  var isOperatorChar = /[+\\-*&%=<>!?|\\/]/;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (ch == \"#\" && state.startOfLine) {\n      stream.skipToEnd();\n      return \"meta\";\n    }\n    if (ch == '\"' || ch == \"'\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    if (ch == \"(\" && stream.eat(\"*\")) {\n      state.tokenize = tokenComment;\n      return tokenComment(stream, state);\n    }\n    if (/[\\[\\]{}\\(\\),;\\:\\.]/.test(ch)) {\n      return null;\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      return \"number\";\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n    }\n    if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return \"operator\";\n    }\n    stream.eatWhile(/[\\w\\$_]/);\n    var cur = stream.current();\n    if (keywords.propertyIsEnumerable(cur)) return \"keyword\";\n    if (atoms.propertyIsEnumerable(cur)) return \"atom\";\n    return \"variable\";\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {end = true; break;}\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !escaped) state.tokenize = null;\n      return \"string\";\n    };\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \")\" && maybeEnd) {\n        state.tokenize = null;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  // Interface\n\n  return {\n    startState: function() {\n      return {tokenize: null};\n    },\n\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style == \"comment\" || style == \"meta\") return style;\n      return style;\n    },\n\n    electricChars: \"{}\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-pascal\", \"pascal\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/pegjs/index.html",
    "content": "<!doctype html>\n<html>\n  <head>\n    <title>CodeMirror: PEG.js Mode</title>\n    <meta charset=\"utf-8\"/>\n    <link rel=stylesheet href=\"../../doc/docs.css\">\n\n    <link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n    <script src=\"../../lib/codemirror.js\"></script>\n    <script src=\"../javascript/javascript.js\"></script>\n    <script src=\"pegjs.js\"></script>\n    <style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n  </head>\n  <body>\n    <div id=nav>\n      <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n      <ul>\n        <li><a href=\"../../index.html\">Home</a>\n        <li><a href=\"../../doc/manual.html\">Manual</a>\n        <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n      </ul>\n      <ul>\n        <li><a href=\"../index.html\">Language modes</a>\n        <li><a class=active href=\"#\">PEG.js Mode</a>\n      </ul>\n    </div>\n\n    <article>\n      <h2>PEG.js Mode</h2>\n      <form><textarea id=\"code\" name=\"code\">\n/*\n * Classic example grammar, which recognizes simple arithmetic expressions like\n * \"2*(3+4)\". The parser generated from this grammar then computes their value.\n */\n\nstart\n  = additive\n\nadditive\n  = left:multiplicative \"+\" right:additive { return left + right; }\n  / multiplicative\n\nmultiplicative\n  = left:primary \"*\" right:multiplicative { return left * right; }\n  / primary\n\nprimary\n  = integer\n  / \"(\" additive:additive \")\" { return additive; }\n\ninteger \"integer\"\n  = digits:[0-9]+ { return parseInt(digits.join(\"\"), 10); }\n\nletter = [a-z]+</textarea></form>\n      <script>\n        var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n          mode: {name: \"pegjs\"},\n          lineNumbers: true\n        });\n      </script>\n      <h3>The PEG.js Mode</h3>\n      <p> Created by Forbes Lindesay.</p>\n    </article>\n  </body>\n</html>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/pegjs/pegjs.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../javascript/javascript\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../javascript/javascript\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"pegjs\", function (config) {\n  var jsMode = CodeMirror.getMode(config, \"javascript\");\n\n  function identifier(stream) {\n    return stream.match(/^[a-zA-Z_][a-zA-Z0-9_]*/);\n  }\n\n  return {\n    startState: function () {\n      return {\n        inString: false,\n        stringType: null,\n        inComment: false,\n        inChracterClass: false,\n        braced: 0,\n        lhs: true,\n        localState: null\n      };\n    },\n    token: function (stream, state) {\n      if (stream)\n\n      //check for state changes\n      if (!state.inString && !state.inComment && ((stream.peek() == '\"') || (stream.peek() == \"'\"))) {\n        state.stringType = stream.peek();\n        stream.next(); // Skip quote\n        state.inString = true; // Update state\n      }\n      if (!state.inString && !state.inComment && stream.match(/^\\/\\*/)) {\n        state.inComment = true;\n      }\n\n      //return state\n      if (state.inString) {\n        while (state.inString && !stream.eol()) {\n          if (stream.peek() === state.stringType) {\n            stream.next(); // Skip quote\n            state.inString = false; // Clear flag\n          } else if (stream.peek() === '\\\\') {\n            stream.next();\n            stream.next();\n          } else {\n            stream.match(/^.[^\\\\\\\"\\']*/);\n          }\n        }\n        return state.lhs ? \"property string\" : \"string\"; // Token style\n      } else if (state.inComment) {\n        while (state.inComment && !stream.eol()) {\n          if (stream.match(/\\*\\//)) {\n            state.inComment = false; // Clear flag\n          } else {\n            stream.match(/^.[^\\*]*/);\n          }\n        }\n        return \"comment\";\n      } else if (state.inChracterClass) {\n          while (state.inChracterClass && !stream.eol()) {\n            if (!(stream.match(/^[^\\]\\\\]+/) || stream.match(/^\\\\./))) {\n              state.inChracterClass = false;\n            }\n          }\n      } else if (stream.peek() === '[') {\n        stream.next();\n        state.inChracterClass = true;\n        return 'bracket';\n      } else if (stream.match(/^\\/\\//)) {\n        stream.skipToEnd();\n        return \"comment\";\n      } else if (state.braced || stream.peek() === '{') {\n        if (state.localState === null) {\n          state.localState = jsMode.startState();\n        }\n        var token = jsMode.token(stream, state.localState);\n        var text = stream.current();\n        if (!token) {\n          for (var i = 0; i < text.length; i++) {\n            if (text[i] === '{') {\n              state.braced++;\n            } else if (text[i] === '}') {\n              state.braced--;\n            }\n          };\n        }\n        return token;\n      } else if (identifier(stream)) {\n        if (stream.peek() === ':') {\n          return 'variable';\n        }\n        return 'variable-2';\n      } else if (['[', ']', '(', ')'].indexOf(stream.peek()) != -1) {\n        stream.next();\n        return 'bracket';\n      } else if (!stream.eatSpace()) {\n        stream.next();\n      }\n      return null;\n    }\n  };\n}, \"javascript\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/perl/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Perl mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"perl.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Perl</a>\n  </ul>\n</div>\n\n<article>\n<h2>Perl mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n#!/usr/bin/perl\n\nuse Something qw(func1 func2);\n\n# strings\nmy $s1 = qq'single line';\nour $s2 = q(multi-\n              line);\n\n=item Something\n\tExample.\n=cut\n\nmy $html=<<'HTML'\n<html>\n<title>hi!</title>\n</html>\nHTML\n\nprint \"first,\".join(',', 'second', qq~third~);\n\nif($s1 =~ m[(?<!\\s)(l.ne)\\z]o) {\n\t$h->{$1}=$$.' predefined variables';\n\t$s2 =~ s/\\-line//ox;\n\t$s1 =~ s[\n\t\t  line ]\n\t\t[\n\t\t  block\n\t\t]ox;\n}\n\n1; # numbers and comments\n\n__END__\nsomething...\n\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-perl</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/perl/perl.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// CodeMirror2 mode/perl/perl.js (text/x-perl) beta 0.10 (2011-11-08)\n// This is a part of CodeMirror from https://github.com/sabaca/CodeMirror_mode_perl (mail@sabaca.com)\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"perl\",function(){\n        // http://perldoc.perl.org\n        var PERL={                                      //   null - magic touch\n                                                        //   1 - keyword\n                                                        //   2 - def\n                                                        //   3 - atom\n                                                        //   4 - operator\n                                                        //   5 - variable-2 (predefined)\n                                                        //   [x,y] - x=1,2,3; y=must be defined if x{...}\n                                                //      PERL operators\n                '->'                            :   4,\n                '++'                            :   4,\n                '--'                            :   4,\n                '**'                            :   4,\n                                                        //   ! ~ \\ and unary + and -\n                '=~'                            :   4,\n                '!~'                            :   4,\n                '*'                             :   4,\n                '/'                             :   4,\n                '%'                             :   4,\n                'x'                             :   4,\n                '+'                             :   4,\n                '-'                             :   4,\n                '.'                             :   4,\n                '<<'                            :   4,\n                '>>'                            :   4,\n                                                        //   named unary operators\n                '<'                             :   4,\n                '>'                             :   4,\n                '<='                            :   4,\n                '>='                            :   4,\n                'lt'                            :   4,\n                'gt'                            :   4,\n                'le'                            :   4,\n                'ge'                            :   4,\n                '=='                            :   4,\n                '!='                            :   4,\n                '<=>'                           :   4,\n                'eq'                            :   4,\n                'ne'                            :   4,\n                'cmp'                           :   4,\n                '~~'                            :   4,\n                '&'                             :   4,\n                '|'                             :   4,\n                '^'                             :   4,\n                '&&'                            :   4,\n                '||'                            :   4,\n                '//'                            :   4,\n                '..'                            :   4,\n                '...'                           :   4,\n                '?'                             :   4,\n                ':'                             :   4,\n                '='                             :   4,\n                '+='                            :   4,\n                '-='                            :   4,\n                '*='                            :   4,  //   etc. ???\n                ','                             :   4,\n                '=>'                            :   4,\n                '::'                            :   4,\n                                                        //   list operators (rightward)\n                'not'                           :   4,\n                'and'                           :   4,\n                'or'                            :   4,\n                'xor'                           :   4,\n                                                //      PERL predefined variables (I know, what this is a paranoid idea, but may be needed for people, who learn PERL, and for me as well, ...and may be for you?;)\n                'BEGIN'                         :   [5,1],\n                'END'                           :   [5,1],\n                'PRINT'                         :   [5,1],\n                'PRINTF'                        :   [5,1],\n                'GETC'                          :   [5,1],\n                'READ'                          :   [5,1],\n                'READLINE'                      :   [5,1],\n                'DESTROY'                       :   [5,1],\n                'TIE'                           :   [5,1],\n                'TIEHANDLE'                     :   [5,1],\n                'UNTIE'                         :   [5,1],\n                'STDIN'                         :    5,\n                'STDIN_TOP'                     :    5,\n                'STDOUT'                        :    5,\n                'STDOUT_TOP'                    :    5,\n                'STDERR'                        :    5,\n                'STDERR_TOP'                    :    5,\n                '$ARG'                          :    5,\n                '$_'                            :    5,\n                '@ARG'                          :    5,\n                '@_'                            :    5,\n                '$LIST_SEPARATOR'               :    5,\n                '$\"'                            :    5,\n                '$PROCESS_ID'                   :    5,\n                '$PID'                          :    5,\n                '$$'                            :    5,\n                '$REAL_GROUP_ID'                :    5,\n                '$GID'                          :    5,\n                '$('                            :    5,\n                '$EFFECTIVE_GROUP_ID'           :    5,\n                '$EGID'                         :    5,\n                '$)'                            :    5,\n                '$PROGRAM_NAME'                 :    5,\n                '$0'                            :    5,\n                '$SUBSCRIPT_SEPARATOR'          :    5,\n                '$SUBSEP'                       :    5,\n                '$;'                            :    5,\n                '$REAL_USER_ID'                 :    5,\n                '$UID'                          :    5,\n                '$<'                            :    5,\n                '$EFFECTIVE_USER_ID'            :    5,\n                '$EUID'                         :    5,\n                '$>'                            :    5,\n                '$a'                            :    5,\n                '$b'                            :    5,\n                '$COMPILING'                    :    5,\n                '$^C'                           :    5,\n                '$DEBUGGING'                    :    5,\n                '$^D'                           :    5,\n                '${^ENCODING}'                  :    5,\n                '$ENV'                          :    5,\n                '%ENV'                          :    5,\n                '$SYSTEM_FD_MAX'                :    5,\n                '$^F'                           :    5,\n                '@F'                            :    5,\n                '${^GLOBAL_PHASE}'              :    5,\n                '$^H'                           :    5,\n                '%^H'                           :    5,\n                '@INC'                          :    5,\n                '%INC'                          :    5,\n                '$INPLACE_EDIT'                 :    5,\n                '$^I'                           :    5,\n                '$^M'                           :    5,\n                '$OSNAME'                       :    5,\n                '$^O'                           :    5,\n                '${^OPEN}'                      :    5,\n                '$PERLDB'                       :    5,\n                '$^P'                           :    5,\n                '$SIG'                          :    5,\n                '%SIG'                          :    5,\n                '$BASETIME'                     :    5,\n                '$^T'                           :    5,\n                '${^TAINT}'                     :    5,\n                '${^UNICODE}'                   :    5,\n                '${^UTF8CACHE}'                 :    5,\n                '${^UTF8LOCALE}'                :    5,\n                '$PERL_VERSION'                 :    5,\n                '$^V'                           :    5,\n                '${^WIN32_SLOPPY_STAT}'         :    5,\n                '$EXECUTABLE_NAME'              :    5,\n                '$^X'                           :    5,\n                '$1'                            :    5, // - regexp $1, $2...\n                '$MATCH'                        :    5,\n                '$&'                            :    5,\n                '${^MATCH}'                     :    5,\n                '$PREMATCH'                     :    5,\n                '$`'                            :    5,\n                '${^PREMATCH}'                  :    5,\n                '$POSTMATCH'                    :    5,\n                \"$'\"                            :    5,\n                '${^POSTMATCH}'                 :    5,\n                '$LAST_PAREN_MATCH'             :    5,\n                '$+'                            :    5,\n                '$LAST_SUBMATCH_RESULT'         :    5,\n                '$^N'                           :    5,\n                '@LAST_MATCH_END'               :    5,\n                '@+'                            :    5,\n                '%LAST_PAREN_MATCH'             :    5,\n                '%+'                            :    5,\n                '@LAST_MATCH_START'             :    5,\n                '@-'                            :    5,\n                '%LAST_MATCH_START'             :    5,\n                '%-'                            :    5,\n                '$LAST_REGEXP_CODE_RESULT'      :    5,\n                '$^R'                           :    5,\n                '${^RE_DEBUG_FLAGS}'            :    5,\n                '${^RE_TRIE_MAXBUF}'            :    5,\n                '$ARGV'                         :    5,\n                '@ARGV'                         :    5,\n                'ARGV'                          :    5,\n                'ARGVOUT'                       :    5,\n                '$OUTPUT_FIELD_SEPARATOR'       :    5,\n                '$OFS'                          :    5,\n                '$,'                            :    5,\n                '$INPUT_LINE_NUMBER'            :    5,\n                '$NR'                           :    5,\n                '$.'                            :    5,\n                '$INPUT_RECORD_SEPARATOR'       :    5,\n                '$RS'                           :    5,\n                '$/'                            :    5,\n                '$OUTPUT_RECORD_SEPARATOR'      :    5,\n                '$ORS'                          :    5,\n                '$\\\\'                           :    5,\n                '$OUTPUT_AUTOFLUSH'             :    5,\n                '$|'                            :    5,\n                '$ACCUMULATOR'                  :    5,\n                '$^A'                           :    5,\n                '$FORMAT_FORMFEED'              :    5,\n                '$^L'                           :    5,\n                '$FORMAT_PAGE_NUMBER'           :    5,\n                '$%'                            :    5,\n                '$FORMAT_LINES_LEFT'            :    5,\n                '$-'                            :    5,\n                '$FORMAT_LINE_BREAK_CHARACTERS' :    5,\n                '$:'                            :    5,\n                '$FORMAT_LINES_PER_PAGE'        :    5,\n                '$='                            :    5,\n                '$FORMAT_TOP_NAME'              :    5,\n                '$^'                            :    5,\n                '$FORMAT_NAME'                  :    5,\n                '$~'                            :    5,\n                '${^CHILD_ERROR_NATIVE}'        :    5,\n                '$EXTENDED_OS_ERROR'            :    5,\n                '$^E'                           :    5,\n                '$EXCEPTIONS_BEING_CAUGHT'      :    5,\n                '$^S'                           :    5,\n                '$WARNING'                      :    5,\n                '$^W'                           :    5,\n                '${^WARNING_BITS}'              :    5,\n                '$OS_ERROR'                     :    5,\n                '$ERRNO'                        :    5,\n                '$!'                            :    5,\n                '%OS_ERROR'                     :    5,\n                '%ERRNO'                        :    5,\n                '%!'                            :    5,\n                '$CHILD_ERROR'                  :    5,\n                '$?'                            :    5,\n                '$EVAL_ERROR'                   :    5,\n                '$@'                            :    5,\n                '$OFMT'                         :    5,\n                '$#'                            :    5,\n                '$*'                            :    5,\n                '$ARRAY_BASE'                   :    5,\n                '$['                            :    5,\n                '$OLD_PERL_VERSION'             :    5,\n                '$]'                            :    5,\n                                                //      PERL blocks\n                'if'                            :[1,1],\n                elsif                           :[1,1],\n                'else'                          :[1,1],\n                'while'                         :[1,1],\n                unless                          :[1,1],\n                'for'                           :[1,1],\n                foreach                         :[1,1],\n                                                //      PERL functions\n                'abs'                           :1,     // - absolute value function\n                accept                          :1,     // - accept an incoming socket connect\n                alarm                           :1,     // - schedule a SIGALRM\n                'atan2'                         :1,     // - arctangent of Y/X in the range -PI to PI\n                bind                            :1,     // - binds an address to a socket\n                binmode                         :1,     // - prepare binary files for I/O\n                bless                           :1,     // - create an object\n                bootstrap                       :1,     //\n                'break'                         :1,     // - break out of a \"given\" block\n                caller                          :1,     // - get context of the current subroutine call\n                chdir                           :1,     // - change your current working directory\n                chmod                           :1,     // - changes the permissions on a list of files\n                chomp                           :1,     // - remove a trailing record separator from a string\n                chop                            :1,     // - remove the last character from a string\n                chown                           :1,     // - change the owership on a list of files\n                chr                             :1,     // - get character this number represents\n                chroot                          :1,     // - make directory new root for path lookups\n                close                           :1,     // - close file (or pipe or socket) handle\n                closedir                        :1,     // - close directory handle\n                connect                         :1,     // - connect to a remote socket\n                'continue'                      :[1,1], // - optional trailing block in a while or foreach\n                'cos'                           :1,     // - cosine function\n                crypt                           :1,     // - one-way passwd-style encryption\n                dbmclose                        :1,     // - breaks binding on a tied dbm file\n                dbmopen                         :1,     // - create binding on a tied dbm file\n                'default'                       :1,     //\n                defined                         :1,     // - test whether a value, variable, or function is defined\n                'delete'                        :1,     // - deletes a value from a hash\n                die                             :1,     // - raise an exception or bail out\n                'do'                            :1,     // - turn a BLOCK into a TERM\n                dump                            :1,     // - create an immediate core dump\n                each                            :1,     // - retrieve the next key/value pair from a hash\n                endgrent                        :1,     // - be done using group file\n                endhostent                      :1,     // - be done using hosts file\n                endnetent                       :1,     // - be done using networks file\n                endprotoent                     :1,     // - be done using protocols file\n                endpwent                        :1,     // - be done using passwd file\n                endservent                      :1,     // - be done using services file\n                eof                             :1,     // - test a filehandle for its end\n                'eval'                          :1,     // - catch exceptions or compile and run code\n                'exec'                          :1,     // - abandon this program to run another\n                exists                          :1,     // - test whether a hash key is present\n                exit                            :1,     // - terminate this program\n                'exp'                           :1,     // - raise I to a power\n                fcntl                           :1,     // - file control system call\n                fileno                          :1,     // - return file descriptor from filehandle\n                flock                           :1,     // - lock an entire file with an advisory lock\n                fork                            :1,     // - create a new process just like this one\n                format                          :1,     // - declare a picture format with use by the write() function\n                formline                        :1,     // - internal function used for formats\n                getc                            :1,     // - get the next character from the filehandle\n                getgrent                        :1,     // - get next group record\n                getgrgid                        :1,     // - get group record given group user ID\n                getgrnam                        :1,     // - get group record given group name\n                gethostbyaddr                   :1,     // - get host record given its address\n                gethostbyname                   :1,     // - get host record given name\n                gethostent                      :1,     // - get next hosts record\n                getlogin                        :1,     // - return who logged in at this tty\n                getnetbyaddr                    :1,     // - get network record given its address\n                getnetbyname                    :1,     // - get networks record given name\n                getnetent                       :1,     // - get next networks record\n                getpeername                     :1,     // - find the other end of a socket connection\n                getpgrp                         :1,     // - get process group\n                getppid                         :1,     // - get parent process ID\n                getpriority                     :1,     // - get current nice value\n                getprotobyname                  :1,     // - get protocol record given name\n                getprotobynumber                :1,     // - get protocol record numeric protocol\n                getprotoent                     :1,     // - get next protocols record\n                getpwent                        :1,     // - get next passwd record\n                getpwnam                        :1,     // - get passwd record given user login name\n                getpwuid                        :1,     // - get passwd record given user ID\n                getservbyname                   :1,     // - get services record given its name\n                getservbyport                   :1,     // - get services record given numeric port\n                getservent                      :1,     // - get next services record\n                getsockname                     :1,     // - retrieve the sockaddr for a given socket\n                getsockopt                      :1,     // - get socket options on a given socket\n                given                           :1,     //\n                glob                            :1,     // - expand filenames using wildcards\n                gmtime                          :1,     // - convert UNIX time into record or string using Greenwich time\n                'goto'                          :1,     // - create spaghetti code\n                grep                            :1,     // - locate elements in a list test true against a given criterion\n                hex                             :1,     // - convert a string to a hexadecimal number\n                'import'                        :1,     // - patch a module's namespace into your own\n                index                           :1,     // - find a substring within a string\n                'int'                           :1,     // - get the integer portion of a number\n                ioctl                           :1,     // - system-dependent device control system call\n                'join'                          :1,     // - join a list into a string using a separator\n                keys                            :1,     // - retrieve list of indices from a hash\n                kill                            :1,     // - send a signal to a process or process group\n                last                            :1,     // - exit a block prematurely\n                lc                              :1,     // - return lower-case version of a string\n                lcfirst                         :1,     // - return a string with just the next letter in lower case\n                length                          :1,     // - return the number of bytes in a string\n                'link'                          :1,     // - create a hard link in the filesytem\n                listen                          :1,     // - register your socket as a server\n                local                           : 2,    // - create a temporary value for a global variable (dynamic scoping)\n                localtime                       :1,     // - convert UNIX time into record or string using local time\n                lock                            :1,     // - get a thread lock on a variable, subroutine, or method\n                'log'                           :1,     // - retrieve the natural logarithm for a number\n                lstat                           :1,     // - stat a symbolic link\n                m                               :null,  // - match a string with a regular expression pattern\n                map                             :1,     // - apply a change to a list to get back a new list with the changes\n                mkdir                           :1,     // - create a directory\n                msgctl                          :1,     // - SysV IPC message control operations\n                msgget                          :1,     // - get SysV IPC message queue\n                msgrcv                          :1,     // - receive a SysV IPC message from a message queue\n                msgsnd                          :1,     // - send a SysV IPC message to a message queue\n                my                              : 2,    // - declare and assign a local variable (lexical scoping)\n                'new'                           :1,     //\n                next                            :1,     // - iterate a block prematurely\n                no                              :1,     // - unimport some module symbols or semantics at compile time\n                oct                             :1,     // - convert a string to an octal number\n                open                            :1,     // - open a file, pipe, or descriptor\n                opendir                         :1,     // - open a directory\n                ord                             :1,     // - find a character's numeric representation\n                our                             : 2,    // - declare and assign a package variable (lexical scoping)\n                pack                            :1,     // - convert a list into a binary representation\n                'package'                       :1,     // - declare a separate global namespace\n                pipe                            :1,     // - open a pair of connected filehandles\n                pop                             :1,     // - remove the last element from an array and return it\n                pos                             :1,     // - find or set the offset for the last/next m//g search\n                print                           :1,     // - output a list to a filehandle\n                printf                          :1,     // - output a formatted list to a filehandle\n                prototype                       :1,     // - get the prototype (if any) of a subroutine\n                push                            :1,     // - append one or more elements to an array\n                q                               :null,  // - singly quote a string\n                qq                              :null,  // - doubly quote a string\n                qr                              :null,  // - Compile pattern\n                quotemeta                       :null,  // - quote regular expression magic characters\n                qw                              :null,  // - quote a list of words\n                qx                              :null,  // - backquote quote a string\n                rand                            :1,     // - retrieve the next pseudorandom number\n                read                            :1,     // - fixed-length buffered input from a filehandle\n                readdir                         :1,     // - get a directory from a directory handle\n                readline                        :1,     // - fetch a record from a file\n                readlink                        :1,     // - determine where a symbolic link is pointing\n                readpipe                        :1,     // - execute a system command and collect standard output\n                recv                            :1,     // - receive a message over a Socket\n                redo                            :1,     // - start this loop iteration over again\n                ref                             :1,     // - find out the type of thing being referenced\n                rename                          :1,     // - change a filename\n                require                         :1,     // - load in external functions from a library at runtime\n                reset                           :1,     // - clear all variables of a given name\n                'return'                        :1,     // - get out of a function early\n                reverse                         :1,     // - flip a string or a list\n                rewinddir                       :1,     // - reset directory handle\n                rindex                          :1,     // - right-to-left substring search\n                rmdir                           :1,     // - remove a directory\n                s                               :null,  // - replace a pattern with a string\n                say                             :1,     // - print with newline\n                scalar                          :1,     // - force a scalar context\n                seek                            :1,     // - reposition file pointer for random-access I/O\n                seekdir                         :1,     // - reposition directory pointer\n                select                          :1,     // - reset default output or do I/O multiplexing\n                semctl                          :1,     // - SysV semaphore control operations\n                semget                          :1,     // - get set of SysV semaphores\n                semop                           :1,     // - SysV semaphore operations\n                send                            :1,     // - send a message over a socket\n                setgrent                        :1,     // - prepare group file for use\n                sethostent                      :1,     // - prepare hosts file for use\n                setnetent                       :1,     // - prepare networks file for use\n                setpgrp                         :1,     // - set the process group of a process\n                setpriority                     :1,     // - set a process's nice value\n                setprotoent                     :1,     // - prepare protocols file for use\n                setpwent                        :1,     // - prepare passwd file for use\n                setservent                      :1,     // - prepare services file for use\n                setsockopt                      :1,     // - set some socket options\n                shift                           :1,     // - remove the first element of an array, and return it\n                shmctl                          :1,     // - SysV shared memory operations\n                shmget                          :1,     // - get SysV shared memory segment identifier\n                shmread                         :1,     // - read SysV shared memory\n                shmwrite                        :1,     // - write SysV shared memory\n                shutdown                        :1,     // - close down just half of a socket connection\n                'sin'                           :1,     // - return the sine of a number\n                sleep                           :1,     // - block for some number of seconds\n                socket                          :1,     // - create a socket\n                socketpair                      :1,     // - create a pair of sockets\n                'sort'                          :1,     // - sort a list of values\n                splice                          :1,     // - add or remove elements anywhere in an array\n                'split'                         :1,     // - split up a string using a regexp delimiter\n                sprintf                         :1,     // - formatted print into a string\n                'sqrt'                          :1,     // - square root function\n                srand                           :1,     // - seed the random number generator\n                stat                            :1,     // - get a file's status information\n                state                           :1,     // - declare and assign a state variable (persistent lexical scoping)\n                study                           :1,     // - optimize input data for repeated searches\n                'sub'                           :1,     // - declare a subroutine, possibly anonymously\n                'substr'                        :1,     // - get or alter a portion of a stirng\n                symlink                         :1,     // - create a symbolic link to a file\n                syscall                         :1,     // - execute an arbitrary system call\n                sysopen                         :1,     // - open a file, pipe, or descriptor\n                sysread                         :1,     // - fixed-length unbuffered input from a filehandle\n                sysseek                         :1,     // - position I/O pointer on handle used with sysread and syswrite\n                system                          :1,     // - run a separate program\n                syswrite                        :1,     // - fixed-length unbuffered output to a filehandle\n                tell                            :1,     // - get current seekpointer on a filehandle\n                telldir                         :1,     // - get current seekpointer on a directory handle\n                tie                             :1,     // - bind a variable to an object class\n                tied                            :1,     // - get a reference to the object underlying a tied variable\n                time                            :1,     // - return number of seconds since 1970\n                times                           :1,     // - return elapsed time for self and child processes\n                tr                              :null,  // - transliterate a string\n                truncate                        :1,     // - shorten a file\n                uc                              :1,     // - return upper-case version of a string\n                ucfirst                         :1,     // - return a string with just the next letter in upper case\n                umask                           :1,     // - set file creation mode mask\n                undef                           :1,     // - remove a variable or function definition\n                unlink                          :1,     // - remove one link to a file\n                unpack                          :1,     // - convert binary structure into normal perl variables\n                unshift                         :1,     // - prepend more elements to the beginning of a list\n                untie                           :1,     // - break a tie binding to a variable\n                use                             :1,     // - load in a module at compile time\n                utime                           :1,     // - set a file's last access and modify times\n                values                          :1,     // - return a list of the values in a hash\n                vec                             :1,     // - test or set particular bits in a string\n                wait                            :1,     // - wait for any child process to die\n                waitpid                         :1,     // - wait for a particular child process to die\n                wantarray                       :1,     // - get void vs scalar vs list context of current subroutine call\n                warn                            :1,     // - print debugging info\n                when                            :1,     //\n                write                           :1,     // - print a picture record\n                y                               :null}; // - transliterate a string\n\n        var RXstyle=\"string-2\";\n        var RXmodifiers=/[goseximacplud]/;              // NOTE: \"m\", \"s\", \"y\" and \"tr\" need to correct real modifiers for each regexp type\n\n        function tokenChain(stream,state,chain,style,tail){     // NOTE: chain.length > 2 is not working now (it's for s[...][...]geos;)\n                state.chain=null;                               //                                                          12   3tail\n                state.style=null;\n                state.tail=null;\n                state.tokenize=function(stream,state){\n                        var e=false,c,i=0;\n                        while(c=stream.next()){\n                                if(c===chain[i]&&!e){\n                                        if(chain[++i]!==undefined){\n                                                state.chain=chain[i];\n                                                state.style=style;\n                                                state.tail=tail;}\n                                        else if(tail)\n                                                stream.eatWhile(tail);\n                                        state.tokenize=tokenPerl;\n                                        return style;}\n                                e=!e&&c==\"\\\\\";}\n                        return style;};\n                return state.tokenize(stream,state);}\n\n        function tokenSOMETHING(stream,state,string){\n                state.tokenize=function(stream,state){\n                        if(stream.string==string)\n                                state.tokenize=tokenPerl;\n                        stream.skipToEnd();\n                        return \"string\";};\n                return state.tokenize(stream,state);}\n\n        function tokenPerl(stream,state){\n                if(stream.eatSpace())\n                        return null;\n                if(state.chain)\n                        return tokenChain(stream,state,state.chain,state.style,state.tail);\n                if(stream.match(/^\\-?[\\d\\.]/,false))\n                        if(stream.match(/^(\\-?(\\d*\\.\\d+(e[+-]?\\d+)?|\\d+\\.\\d*)|0x[\\da-fA-F]+|0b[01]+|\\d+(e[+-]?\\d+)?)/))\n                                return 'number';\n                if(stream.match(/^<<(?=\\w)/)){                  // NOTE: <<SOMETHING\\n...\\nSOMETHING\\n\n                        stream.eatWhile(/\\w/);\n                        return tokenSOMETHING(stream,state,stream.current().substr(2));}\n                if(stream.sol()&&stream.match(/^\\=item(?!\\w)/)){// NOTE: \\n=item...\\n=cut\\n\n                        return tokenSOMETHING(stream,state,'=cut');}\n                var ch=stream.next();\n                if(ch=='\"'||ch==\"'\"){                           // NOTE: ' or \" or <<'SOMETHING'\\n...\\nSOMETHING\\n or <<\"SOMETHING\"\\n...\\nSOMETHING\\n\n                        if(prefix(stream, 3)==\"<<\"+ch){\n                                var p=stream.pos;\n                                stream.eatWhile(/\\w/);\n                                var n=stream.current().substr(1);\n                                if(n&&stream.eat(ch))\n                                        return tokenSOMETHING(stream,state,n);\n                                stream.pos=p;}\n                        return tokenChain(stream,state,[ch],\"string\");}\n                if(ch==\"q\"){\n                        var c=look(stream, -2);\n                        if(!(c&&/\\w/.test(c))){\n                                c=look(stream, 0);\n                                if(c==\"x\"){\n                                        c=look(stream, 1);\n                                        if(c==\"(\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\")\"],RXstyle,RXmodifiers);}\n                                        if(c==\"[\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\"]\"],RXstyle,RXmodifiers);}\n                                        if(c==\"{\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\"}\"],RXstyle,RXmodifiers);}\n                                        if(c==\"<\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\">\"],RXstyle,RXmodifiers);}\n                                        if(/[\\^'\"!~\\/]/.test(c)){\n                                                eatSuffix(stream, 1);\n                                                return tokenChain(stream,state,[stream.eat(c)],RXstyle,RXmodifiers);}}\n                                else if(c==\"q\"){\n                                        c=look(stream, 1);\n                                        if(c==\"(\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\")\"],\"string\");}\n                                        if(c==\"[\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\"]\"],\"string\");}\n                                        if(c==\"{\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\"}\"],\"string\");}\n                                        if(c==\"<\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\">\"],\"string\");}\n                                        if(/[\\^'\"!~\\/]/.test(c)){\n                                                eatSuffix(stream, 1);\n                                                return tokenChain(stream,state,[stream.eat(c)],\"string\");}}\n                                else if(c==\"w\"){\n                                        c=look(stream, 1);\n                                        if(c==\"(\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\")\"],\"bracket\");}\n                                        if(c==\"[\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\"]\"],\"bracket\");}\n                                        if(c==\"{\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\"}\"],\"bracket\");}\n                                        if(c==\"<\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\">\"],\"bracket\");}\n                                        if(/[\\^'\"!~\\/]/.test(c)){\n                                                eatSuffix(stream, 1);\n                                                return tokenChain(stream,state,[stream.eat(c)],\"bracket\");}}\n                                else if(c==\"r\"){\n                                        c=look(stream, 1);\n                                        if(c==\"(\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\")\"],RXstyle,RXmodifiers);}\n                                        if(c==\"[\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\"]\"],RXstyle,RXmodifiers);}\n                                        if(c==\"{\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\"}\"],RXstyle,RXmodifiers);}\n                                        if(c==\"<\"){\n                                                eatSuffix(stream, 2);\n                                                return tokenChain(stream,state,[\">\"],RXstyle,RXmodifiers);}\n                                        if(/[\\^'\"!~\\/]/.test(c)){\n                                                eatSuffix(stream, 1);\n                                                return tokenChain(stream,state,[stream.eat(c)],RXstyle,RXmodifiers);}}\n                                else if(/[\\^'\"!~\\/(\\[{<]/.test(c)){\n                                        if(c==\"(\"){\n                                                eatSuffix(stream, 1);\n                                                return tokenChain(stream,state,[\")\"],\"string\");}\n                                        if(c==\"[\"){\n                                                eatSuffix(stream, 1);\n                                                return tokenChain(stream,state,[\"]\"],\"string\");}\n                                        if(c==\"{\"){\n                                                eatSuffix(stream, 1);\n                                                return tokenChain(stream,state,[\"}\"],\"string\");}\n                                        if(c==\"<\"){\n                                                eatSuffix(stream, 1);\n                                                return tokenChain(stream,state,[\">\"],\"string\");}\n                                        if(/[\\^'\"!~\\/]/.test(c)){\n                                                return tokenChain(stream,state,[stream.eat(c)],\"string\");}}}}\n                if(ch==\"m\"){\n                        var c=look(stream, -2);\n                        if(!(c&&/\\w/.test(c))){\n                                c=stream.eat(/[(\\[{<\\^'\"!~\\/]/);\n                                if(c){\n                                        if(/[\\^'\"!~\\/]/.test(c)){\n                                                return tokenChain(stream,state,[c],RXstyle,RXmodifiers);}\n                                        if(c==\"(\"){\n                                                return tokenChain(stream,state,[\")\"],RXstyle,RXmodifiers);}\n                                        if(c==\"[\"){\n                                                return tokenChain(stream,state,[\"]\"],RXstyle,RXmodifiers);}\n                                        if(c==\"{\"){\n                                                return tokenChain(stream,state,[\"}\"],RXstyle,RXmodifiers);}\n                                        if(c==\"<\"){\n                                                return tokenChain(stream,state,[\">\"],RXstyle,RXmodifiers);}}}}\n                if(ch==\"s\"){\n                        var c=/[\\/>\\]})\\w]/.test(look(stream, -2));\n                        if(!c){\n                                c=stream.eat(/[(\\[{<\\^'\"!~\\/]/);\n                                if(c){\n                                        if(c==\"[\")\n                                                return tokenChain(stream,state,[\"]\",\"]\"],RXstyle,RXmodifiers);\n                                        if(c==\"{\")\n                                                return tokenChain(stream,state,[\"}\",\"}\"],RXstyle,RXmodifiers);\n                                        if(c==\"<\")\n                                                return tokenChain(stream,state,[\">\",\">\"],RXstyle,RXmodifiers);\n                                        if(c==\"(\")\n                                                return tokenChain(stream,state,[\")\",\")\"],RXstyle,RXmodifiers);\n                                        return tokenChain(stream,state,[c,c],RXstyle,RXmodifiers);}}}\n                if(ch==\"y\"){\n                        var c=/[\\/>\\]})\\w]/.test(look(stream, -2));\n                        if(!c){\n                                c=stream.eat(/[(\\[{<\\^'\"!~\\/]/);\n                                if(c){\n                                        if(c==\"[\")\n                                                return tokenChain(stream,state,[\"]\",\"]\"],RXstyle,RXmodifiers);\n                                        if(c==\"{\")\n                                                return tokenChain(stream,state,[\"}\",\"}\"],RXstyle,RXmodifiers);\n                                        if(c==\"<\")\n                                                return tokenChain(stream,state,[\">\",\">\"],RXstyle,RXmodifiers);\n                                        if(c==\"(\")\n                                                return tokenChain(stream,state,[\")\",\")\"],RXstyle,RXmodifiers);\n                                        return tokenChain(stream,state,[c,c],RXstyle,RXmodifiers);}}}\n                if(ch==\"t\"){\n                        var c=/[\\/>\\]})\\w]/.test(look(stream, -2));\n                        if(!c){\n                                c=stream.eat(\"r\");if(c){\n                                c=stream.eat(/[(\\[{<\\^'\"!~\\/]/);\n                                if(c){\n                                        if(c==\"[\")\n                                                return tokenChain(stream,state,[\"]\",\"]\"],RXstyle,RXmodifiers);\n                                        if(c==\"{\")\n                                                return tokenChain(stream,state,[\"}\",\"}\"],RXstyle,RXmodifiers);\n                                        if(c==\"<\")\n                                                return tokenChain(stream,state,[\">\",\">\"],RXstyle,RXmodifiers);\n                                        if(c==\"(\")\n                                                return tokenChain(stream,state,[\")\",\")\"],RXstyle,RXmodifiers);\n                                        return tokenChain(stream,state,[c,c],RXstyle,RXmodifiers);}}}}\n                if(ch==\"`\"){\n                        return tokenChain(stream,state,[ch],\"variable-2\");}\n                if(ch==\"/\"){\n                        if(!/~\\s*$/.test(prefix(stream)))\n                                return \"operator\";\n                        else\n                                return tokenChain(stream,state,[ch],RXstyle,RXmodifiers);}\n                if(ch==\"$\"){\n                        var p=stream.pos;\n                        if(stream.eatWhile(/\\d/)||stream.eat(\"{\")&&stream.eatWhile(/\\d/)&&stream.eat(\"}\"))\n                                return \"variable-2\";\n                        else\n                                stream.pos=p;}\n                if(/[$@%]/.test(ch)){\n                        var p=stream.pos;\n                        if(stream.eat(\"^\")&&stream.eat(/[A-Z]/)||!/[@$%&]/.test(look(stream, -2))&&stream.eat(/[=|\\\\\\-#?@;:&`~\\^!\\[\\]*'\"$+.,\\/<>()]/)){\n                                var c=stream.current();\n                                if(PERL[c])\n                                        return \"variable-2\";}\n                        stream.pos=p;}\n                if(/[$@%&]/.test(ch)){\n                        if(stream.eatWhile(/[\\w$\\[\\]]/)||stream.eat(\"{\")&&stream.eatWhile(/[\\w$\\[\\]]/)&&stream.eat(\"}\")){\n                                var c=stream.current();\n                                if(PERL[c])\n                                        return \"variable-2\";\n                                else\n                                        return \"variable\";}}\n                if(ch==\"#\"){\n                        if(look(stream, -2)!=\"$\"){\n                                stream.skipToEnd();\n                                return \"comment\";}}\n                if(/[:+\\-\\^*$&%@=<>!?|\\/~\\.]/.test(ch)){\n                        var p=stream.pos;\n                        stream.eatWhile(/[:+\\-\\^*$&%@=<>!?|\\/~\\.]/);\n                        if(PERL[stream.current()])\n                                return \"operator\";\n                        else\n                                stream.pos=p;}\n                if(ch==\"_\"){\n                        if(stream.pos==1){\n                                if(suffix(stream, 6)==\"_END__\"){\n                                        return tokenChain(stream,state,['\\0'],\"comment\");}\n                                else if(suffix(stream, 7)==\"_DATA__\"){\n                                        return tokenChain(stream,state,['\\0'],\"variable-2\");}\n                                else if(suffix(stream, 7)==\"_C__\"){\n                                        return tokenChain(stream,state,['\\0'],\"string\");}}}\n                if(/\\w/.test(ch)){\n                        var p=stream.pos;\n                        if(look(stream, -2)==\"{\"&&(look(stream, 0)==\"}\"||stream.eatWhile(/\\w/)&&look(stream, 0)==\"}\"))\n                                return \"string\";\n                        else\n                                stream.pos=p;}\n                if(/[A-Z]/.test(ch)){\n                        var l=look(stream, -2);\n                        var p=stream.pos;\n                        stream.eatWhile(/[A-Z_]/);\n                        if(/[\\da-z]/.test(look(stream, 0))){\n                                stream.pos=p;}\n                        else{\n                                var c=PERL[stream.current()];\n                                if(!c)\n                                        return \"meta\";\n                                if(c[1])\n                                        c=c[0];\n                                if(l!=\":\"){\n                                        if(c==1)\n                                                return \"keyword\";\n                                        else if(c==2)\n                                                return \"def\";\n                                        else if(c==3)\n                                                return \"atom\";\n                                        else if(c==4)\n                                                return \"operator\";\n                                        else if(c==5)\n                                                return \"variable-2\";\n                                        else\n                                                return \"meta\";}\n                                else\n                                        return \"meta\";}}\n                if(/[a-zA-Z_]/.test(ch)){\n                        var l=look(stream, -2);\n                        stream.eatWhile(/\\w/);\n                        var c=PERL[stream.current()];\n                        if(!c)\n                                return \"meta\";\n                        if(c[1])\n                                c=c[0];\n                        if(l!=\":\"){\n                                if(c==1)\n                                        return \"keyword\";\n                                else if(c==2)\n                                        return \"def\";\n                                else if(c==3)\n                                        return \"atom\";\n                                else if(c==4)\n                                        return \"operator\";\n                                else if(c==5)\n                                        return \"variable-2\";\n                                else\n                                        return \"meta\";}\n                        else\n                                return \"meta\";}\n                return null;}\n\n        return{\n                startState:function(){\n                        return{\n                                tokenize:tokenPerl,\n                                chain:null,\n                                style:null,\n                                tail:null};},\n                token:function(stream,state){\n                        return (state.tokenize||tokenPerl)(stream,state);}\n                };});\n\nCodeMirror.registerHelper(\"wordChars\", \"perl\", /[\\w$]/);\n\nCodeMirror.defineMIME(\"text/x-perl\", \"perl\");\n\n// it's like \"peek\", but need for look-ahead or look-behind if index < 0\nfunction look(stream, c){\n  return stream.string.charAt(stream.pos+(c||0));\n}\n\n// return a part of prefix of current stream from current position\nfunction prefix(stream, c){\n  if(c){\n    var x=stream.pos-c;\n    return stream.string.substr((x>=0?x:0),c);}\n  else{\n    return stream.string.substr(0,stream.pos-1);\n  }\n}\n\n// return a part of suffix of current stream from current position\nfunction suffix(stream, c){\n  var y=stream.string.length;\n  var x=y-stream.pos+1;\n  return stream.string.substr(stream.pos,(c&&c<y?c:x));\n}\n\n// eating and vomiting a part of stream from current position\nfunction eatSuffix(stream, c){\n  var x=stream.pos+c;\n  var y;\n  if(x<=0)\n    stream.pos=0;\n  else if(x>=(y=stream.string.length-1))\n    stream.pos=y;\n  else\n    stream.pos=x;\n}\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/php/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: PHP mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"../htmlmixed/htmlmixed.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../javascript/javascript.js\"></script>\n<script src=\"../css/css.js\"></script>\n<script src=\"../clike/clike.js\"></script>\n<script src=\"php.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">PHP</a>\n  </ul>\n</div>\n\n<article>\n<h2>PHP mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n<?php\n$a = array('a' => 1, 'b' => 2, 3 => 'c');\n\necho \"$a[a] ${a[3] /* } comment */} {$a[b]} \\$a[a]\";\n\nfunction hello($who) {\n\treturn \"Hello $who!\";\n}\n?>\n<p>The program says <?= hello(\"World\") ?>.</p>\n<script>\n\talert(\"And here is some JS code\"); // also colored\n</script>\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"application/x-httpd-php\",\n        indentUnit: 4,\n        indentWithTabs: true\n      });\n    </script>\n\n    <p>Simple HTML/PHP mode based on\n    the <a href=\"../clike/\">C-like</a> mode. Depends on XML,\n    JavaScript, CSS, HTMLMixed, and C-like modes.</p>\n\n    <p><strong>MIME types defined:</strong> <code>application/x-httpd-php</code> (HTML with PHP code), <code>text/x-php</code> (plain, non-wrapped PHP code).</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/php/php.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../htmlmixed/htmlmixed\"), require(\"../clike/clike\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../htmlmixed/htmlmixed\", \"../clike/clike\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n\n  function keywords(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  // Helper for stringWithEscapes\n  function matchSequence(list, end) {\n    if (list.length == 0) return stringWithEscapes(end);\n    return function (stream, state) {\n      var patterns = list[0];\n      for (var i = 0; i < patterns.length; i++) if (stream.match(patterns[i][0])) {\n        state.tokenize = matchSequence(list.slice(1), end);\n        return patterns[i][1];\n      }\n      state.tokenize = stringWithEscapes(end);\n      return \"string\";\n    };\n  }\n  function stringWithEscapes(closing) {\n    return function(stream, state) { return stringWithEscapes_(stream, state, closing); };\n  }\n  function stringWithEscapes_(stream, state, closing) {\n    // \"Complex\" syntax\n    if (stream.match(\"${\", false) || stream.match(\"{$\", false)) {\n      state.tokenize = null;\n      return \"string\";\n    }\n\n    // Simple syntax\n    if (stream.match(/^\\$[a-zA-Z_][a-zA-Z0-9_]*/)) {\n      // After the variable name there may appear array or object operator.\n      if (stream.match(\"[\", false)) {\n        // Match array operator\n        state.tokenize = matchSequence([\n          [[\"[\", null]],\n          [[/\\d[\\w\\.]*/, \"number\"],\n           [/\\$[a-zA-Z_][a-zA-Z0-9_]*/, \"variable-2\"],\n           [/[\\w\\$]+/, \"variable\"]],\n          [[\"]\", null]]\n        ], closing);\n      }\n      if (stream.match(/\\-\\>\\w/, false)) {\n        // Match object operator\n        state.tokenize = matchSequence([\n          [[\"->\", null]],\n          [[/[\\w]+/, \"variable\"]]\n        ], closing);\n      }\n      return \"variable-2\";\n    }\n\n    var escaped = false;\n    // Normal string\n    while (!stream.eol() &&\n           (escaped || (!stream.match(\"{$\", false) &&\n                        !stream.match(/^(\\$[a-zA-Z_][a-zA-Z0-9_]*|\\$\\{)/, false)))) {\n      if (!escaped && stream.match(closing)) {\n        state.tokenize = null;\n        state.tokStack.pop(); state.tokStack.pop();\n        break;\n      }\n      escaped = stream.next() == \"\\\\\" && !escaped;\n    }\n    return \"string\";\n  }\n\n  var phpKeywords = \"abstract and array as break case catch class clone const continue declare default \" +\n    \"do else elseif enddeclare endfor endforeach endif endswitch endwhile extends final \" +\n    \"for foreach function global goto if implements interface instanceof namespace \" +\n    \"new or private protected public static switch throw trait try use var while xor \" +\n    \"die echo empty exit eval include include_once isset list require require_once return \" +\n    \"print unset __halt_compiler self static parent yield insteadof finally\";\n  var phpAtoms = \"true false null TRUE FALSE NULL __CLASS__ __DIR__ __FILE__ __LINE__ __METHOD__ __FUNCTION__ __NAMESPACE__ __TRAIT__\";\n  var phpBuiltin = \"func_num_args func_get_arg func_get_args strlen strcmp strncmp strcasecmp strncasecmp each error_reporting define defined trigger_error user_error set_error_handler restore_error_handler get_declared_classes get_loaded_extensions extension_loaded get_extension_funcs debug_backtrace constant bin2hex hex2bin sleep usleep time mktime gmmktime strftime gmstrftime strtotime date gmdate getdate localtime checkdate flush wordwrap htmlspecialchars htmlentities html_entity_decode md5 md5_file crc32 getimagesize image_type_to_mime_type phpinfo phpversion phpcredits strnatcmp strnatcasecmp substr_count strspn strcspn strtok strtoupper strtolower strpos strrpos strrev hebrev hebrevc nl2br basename dirname pathinfo stripslashes stripcslashes strstr stristr strrchr str_shuffle str_word_count strcoll substr substr_replace quotemeta ucfirst ucwords strtr addslashes addcslashes rtrim str_replace str_repeat count_chars chunk_split trim ltrim strip_tags similar_text explode implode setlocale localeconv parse_str str_pad chop strchr sprintf printf vprintf vsprintf sscanf fscanf parse_url urlencode urldecode rawurlencode rawurldecode readlink linkinfo link unlink exec system escapeshellcmd escapeshellarg passthru shell_exec proc_open proc_close rand srand getrandmax mt_rand mt_srand mt_getrandmax base64_decode base64_encode abs ceil floor round is_finite is_nan is_infinite bindec hexdec octdec decbin decoct dechex base_convert number_format fmod ip2long long2ip getenv putenv getopt microtime gettimeofday getrusage uniqid quoted_printable_decode set_time_limit get_cfg_var magic_quotes_runtime set_magic_quotes_runtime get_magic_quotes_gpc get_magic_quotes_runtime import_request_variables error_log serialize unserialize memory_get_usage var_dump var_export debug_zval_dump print_r highlight_file show_source highlight_string ini_get ini_get_all ini_set ini_alter ini_restore get_include_path set_include_path restore_include_path setcookie header headers_sent connection_aborted connection_status ignore_user_abort parse_ini_file is_uploaded_file move_uploaded_file intval floatval doubleval strval gettype settype is_null is_resource is_bool is_long is_float is_int is_integer is_double is_real is_numeric is_string is_array is_object is_scalar ereg ereg_replace eregi eregi_replace split spliti join sql_regcase dl pclose popen readfile rewind rmdir umask fclose feof fgetc fgets fgetss fread fopen fpassthru ftruncate fstat fseek ftell fflush fwrite fputs mkdir rename copy tempnam tmpfile file file_get_contents stream_select stream_context_create stream_context_set_params stream_context_set_option stream_context_get_options stream_filter_prepend stream_filter_append fgetcsv flock get_meta_tags stream_set_write_buffer set_file_buffer set_socket_blocking stream_set_blocking socket_set_blocking stream_get_meta_data stream_register_wrapper stream_wrapper_register stream_set_timeout socket_set_timeout socket_get_status realpath fnmatch fsockopen pfsockopen pack unpack get_browser crypt opendir closedir chdir getcwd rewinddir readdir dir glob fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype file_exists is_writable is_writeable is_readable is_executable is_file is_dir is_link stat lstat chown touch clearstatcache mail ob_start ob_flush ob_clean ob_end_flush ob_end_clean ob_get_flush ob_get_clean ob_get_length ob_get_level ob_get_status ob_get_contents ob_implicit_flush ob_list_handlers ksort krsort natsort natcasesort asort arsort sort rsort usort uasort uksort shuffle array_walk count end prev next reset current key min max in_array array_search extract compact array_fill range array_multisort array_push array_pop array_shift array_unshift array_splice array_slice array_merge array_merge_recursive array_keys array_values array_count_values array_reverse array_reduce array_pad array_flip array_change_key_case array_rand array_unique array_intersect array_intersect_assoc array_diff array_diff_assoc array_sum array_filter array_map array_chunk array_key_exists pos sizeof key_exists assert assert_options version_compare ftok str_rot13 aggregate session_name session_module_name session_save_path session_id session_regenerate_id session_decode session_register session_unregister session_is_registered session_encode session_start session_destroy session_unset session_set_save_handler session_cache_limiter session_cache_expire session_set_cookie_params session_get_cookie_params session_write_close preg_match preg_match_all preg_replace preg_replace_callback preg_split preg_quote preg_grep overload ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_lower ctype_graph ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit virtual apache_request_headers apache_note apache_lookup_uri apache_child_terminate apache_setenv apache_response_headers apache_get_version getallheaders mysql_connect mysql_pconnect mysql_close mysql_select_db mysql_create_db mysql_drop_db mysql_query mysql_unbuffered_query mysql_db_query mysql_list_dbs mysql_list_tables mysql_list_fields mysql_list_processes mysql_error mysql_errno mysql_affected_rows mysql_insert_id mysql_result mysql_num_rows mysql_num_fields mysql_fetch_row mysql_fetch_array mysql_fetch_assoc mysql_fetch_object mysql_data_seek mysql_fetch_lengths mysql_fetch_field mysql_field_seek mysql_free_result mysql_field_name mysql_field_table mysql_field_len mysql_field_type mysql_field_flags mysql_escape_string mysql_real_escape_string mysql_stat mysql_thread_id mysql_client_encoding mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql mysql_fieldname mysql_fieldtable mysql_fieldlen mysql_fieldtype mysql_fieldflags mysql_selectdb mysql_createdb mysql_dropdb mysql_freeresult mysql_numfields mysql_numrows mysql_listdbs mysql_listtables mysql_listfields mysql_db_name mysql_dbname mysql_tablename mysql_table_name pg_connect pg_pconnect pg_close pg_connection_status pg_connection_busy pg_connection_reset pg_host pg_dbname pg_port pg_tty pg_options pg_ping pg_query pg_send_query pg_cancel_query pg_fetch_result pg_fetch_row pg_fetch_assoc pg_fetch_array pg_fetch_object pg_fetch_all pg_affected_rows pg_get_result pg_result_seek pg_result_status pg_free_result pg_last_oid pg_num_rows pg_num_fields pg_field_name pg_field_num pg_field_size pg_field_type pg_field_prtlen pg_field_is_null pg_get_notify pg_get_pid pg_result_error pg_last_error pg_last_notice pg_put_line pg_end_copy pg_copy_to pg_copy_from pg_trace pg_untrace pg_lo_create pg_lo_unlink pg_lo_open pg_lo_close pg_lo_read pg_lo_write pg_lo_read_all pg_lo_import pg_lo_export pg_lo_seek pg_lo_tell pg_escape_string pg_escape_bytea pg_unescape_bytea pg_client_encoding pg_set_client_encoding pg_meta_data pg_convert pg_insert pg_update pg_delete pg_select pg_exec pg_getlastoid pg_cmdtuples pg_errormessage pg_numrows pg_numfields pg_fieldname pg_fieldsize pg_fieldtype pg_fieldnum pg_fieldprtlen pg_fieldisnull pg_freeresult pg_result pg_loreadall pg_locreate pg_lounlink pg_loopen pg_loclose pg_loread pg_lowrite pg_loimport pg_loexport http_response_code get_declared_traits getimagesizefromstring socket_import_stream stream_set_chunk_size trait_exists header_register_callback class_uses session_status session_register_shutdown echo print global static exit array empty eval isset unset die include require include_once require_once json_decode json_encode json_last_error json_last_error_msg curl_close curl_copy_handle curl_errno curl_error curl_escape curl_exec curl_file_create curl_getinfo curl_init curl_multi_add_handle curl_multi_close curl_multi_exec curl_multi_getcontent curl_multi_info_read curl_multi_init curl_multi_remove_handle curl_multi_select curl_multi_setopt curl_multi_strerror curl_pause curl_reset curl_setopt_array curl_setopt curl_share_close curl_share_init curl_share_setopt curl_strerror curl_unescape curl_version mysqli_affected_rows mysqli_autocommit mysqli_change_user mysqli_character_set_name mysqli_close mysqli_commit mysqli_connect_errno mysqli_connect_error mysqli_connect mysqli_data_seek mysqli_debug mysqli_dump_debug_info mysqli_errno mysqli_error_list mysqli_error mysqli_fetch_all mysqli_fetch_array mysqli_fetch_assoc mysqli_fetch_field_direct mysqli_fetch_field mysqli_fetch_fields mysqli_fetch_lengths mysqli_fetch_object mysqli_fetch_row mysqli_field_count mysqli_field_seek mysqli_field_tell mysqli_free_result mysqli_get_charset mysqli_get_client_info mysqli_get_client_stats mysqli_get_client_version mysqli_get_connection_stats mysqli_get_host_info mysqli_get_proto_info mysqli_get_server_info mysqli_get_server_version mysqli_info mysqli_init mysqli_insert_id mysqli_kill mysqli_more_results mysqli_multi_query mysqli_next_result mysqli_num_fields mysqli_num_rows mysqli_options mysqli_ping mysqli_prepare mysqli_query mysqli_real_connect mysqli_real_escape_string mysqli_real_query mysqli_reap_async_query mysqli_refresh mysqli_rollback mysqli_select_db mysqli_set_charset mysqli_set_local_infile_default mysqli_set_local_infile_handler mysqli_sqlstate mysqli_ssl_set mysqli_stat mysqli_stmt_init mysqli_store_result mysqli_thread_id mysqli_thread_safe mysqli_use_result mysqli_warning_count\";\n  CodeMirror.registerHelper(\"hintWords\", \"php\", [phpKeywords, phpAtoms, phpBuiltin].join(\" \").split(\" \"));\n  CodeMirror.registerHelper(\"wordChars\", \"php\", /[\\w$]/);\n\n  var phpConfig = {\n    name: \"clike\",\n    helperType: \"php\",\n    keywords: keywords(phpKeywords),\n    blockKeywords: keywords(\"catch do else elseif for foreach if switch try while finally\"),\n    atoms: keywords(phpAtoms),\n    builtin: keywords(phpBuiltin),\n    multiLineStrings: true,\n    hooks: {\n      \"$\": function(stream) {\n        stream.eatWhile(/[\\w\\$_]/);\n        return \"variable-2\";\n      },\n      \"<\": function(stream, state) {\n        if (stream.match(/<</)) {\n          stream.eatWhile(/[\\w\\.]/);\n          var delim = stream.current().slice(3);\n          if (delim) {\n            (state.tokStack || (state.tokStack = [])).push(delim, 0);\n            state.tokenize = stringWithEscapes(delim);\n            return \"string\";\n          }\n        }\n        return false;\n      },\n      \"#\": function(stream) {\n        while (!stream.eol() && !stream.match(\"?>\", false)) stream.next();\n        return \"comment\";\n      },\n      \"/\": function(stream) {\n        if (stream.eat(\"/\")) {\n          while (!stream.eol() && !stream.match(\"?>\", false)) stream.next();\n          return \"comment\";\n        }\n        return false;\n      },\n      '\"': function(_stream, state) {\n        (state.tokStack || (state.tokStack = [])).push('\"', 0);\n        state.tokenize = stringWithEscapes('\"');\n        return \"string\";\n      },\n      \"{\": function(_stream, state) {\n        if (state.tokStack && state.tokStack.length)\n          state.tokStack[state.tokStack.length - 1]++;\n        return false;\n      },\n      \"}\": function(_stream, state) {\n        if (state.tokStack && state.tokStack.length > 0 &&\n            !--state.tokStack[state.tokStack.length - 1]) {\n          state.tokenize = stringWithEscapes(state.tokStack[state.tokStack.length - 2]);\n        }\n        return false;\n      }\n    }\n  };\n\n  CodeMirror.defineMode(\"php\", function(config, parserConfig) {\n    var htmlMode = CodeMirror.getMode(config, \"text/html\");\n    var phpMode = CodeMirror.getMode(config, phpConfig);\n\n    function dispatch(stream, state) {\n      var isPHP = state.curMode == phpMode;\n      if (stream.sol() && state.pending && state.pending != '\"' && state.pending != \"'\") state.pending = null;\n      if (!isPHP) {\n        if (stream.match(/^<\\?\\w*/)) {\n          state.curMode = phpMode;\n          state.curState = state.php;\n          return \"meta\";\n        }\n        if (state.pending == '\"' || state.pending == \"'\") {\n          while (!stream.eol() && stream.next() != state.pending) {}\n          var style = \"string\";\n        } else if (state.pending && stream.pos < state.pending.end) {\n          stream.pos = state.pending.end;\n          var style = state.pending.style;\n        } else {\n          var style = htmlMode.token(stream, state.curState);\n        }\n        if (state.pending) state.pending = null;\n        var cur = stream.current(), openPHP = cur.search(/<\\?/), m;\n        if (openPHP != -1) {\n          if (style == \"string\" && (m = cur.match(/[\\'\\\"]$/)) && !/\\?>/.test(cur)) state.pending = m[0];\n          else state.pending = {end: stream.pos, style: style};\n          stream.backUp(cur.length - openPHP);\n        }\n        return style;\n      } else if (isPHP && state.php.tokenize == null && stream.match(\"?>\")) {\n        state.curMode = htmlMode;\n        state.curState = state.html;\n        return \"meta\";\n      } else {\n        return phpMode.token(stream, state.curState);\n      }\n    }\n\n    return {\n      startState: function() {\n        var html = CodeMirror.startState(htmlMode), php = CodeMirror.startState(phpMode);\n        return {html: html,\n                php: php,\n                curMode: parserConfig.startOpen ? phpMode : htmlMode,\n                curState: parserConfig.startOpen ? php : html,\n                pending: null};\n      },\n\n      copyState: function(state) {\n        var html = state.html, htmlNew = CodeMirror.copyState(htmlMode, html),\n            php = state.php, phpNew = CodeMirror.copyState(phpMode, php), cur;\n        if (state.curMode == htmlMode) cur = htmlNew;\n        else cur = phpNew;\n        return {html: htmlNew, php: phpNew, curMode: state.curMode, curState: cur,\n                pending: state.pending};\n      },\n\n      token: dispatch,\n\n      indent: function(state, textAfter) {\n        if ((state.curMode != phpMode && /^\\s*<\\//.test(textAfter)) ||\n            (state.curMode == phpMode && /^\\?>/.test(textAfter)))\n          return htmlMode.indent(state.html, textAfter);\n        return state.curMode.indent(state.curState, textAfter);\n      },\n\n      blockCommentStart: \"/*\",\n      blockCommentEnd: \"*/\",\n      lineComment: \"//\",\n\n      innerMode: function(state) { return {state: state.curState, mode: state.curMode}; }\n    };\n  }, \"htmlmixed\", \"clike\");\n\n  CodeMirror.defineMIME(\"application/x-httpd-php\", \"php\");\n  CodeMirror.defineMIME(\"application/x-httpd-php-open\", {name: \"php\", startOpen: true});\n  CodeMirror.defineMIME(\"text/x-php\", phpConfig);\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/php/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({indentUnit: 2}, \"php\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  MT('simple_test',\n     '[meta <?php] ' +\n     '[keyword echo] [string \"aaa\"]; ' +\n     '[meta ?>]');\n\n  MT('variable_interpolation_non_alphanumeric',\n     '[meta <?php]',\n     '[keyword echo] [string \"aaa$~$!$@$#$$$%$^$&$*$($)$.$<$>$/$\\\\$}$\\\\\\\"$:$;$?$|$[[$]]$+$=aaa\"]',\n     '[meta ?>]');\n\n  MT('variable_interpolation_digits',\n     '[meta <?php]',\n     '[keyword echo] [string \"aaa$1$2$3$4$5$6$7$8$9$0aaa\"]',\n     '[meta ?>]');\n\n  MT('variable_interpolation_simple_syntax_1',\n     '[meta <?php]',\n     '[keyword echo] [string \"aaa][variable-2 $aaa][string .aaa\"];',\n     '[meta ?>]');\n\n  MT('variable_interpolation_simple_syntax_2',\n     '[meta <?php]',\n     '[keyword echo] [string \"][variable-2 $aaaa][[','[number 2]',         ']][string aa\"];',\n     '[keyword echo] [string \"][variable-2 $aaaa][[','[number 2345]',      ']][string aa\"];',\n     '[keyword echo] [string \"][variable-2 $aaaa][[','[number 2.3]',       ']][string aa\"];',\n     '[keyword echo] [string \"][variable-2 $aaaa][[','[variable aaaaa]',   ']][string aa\"];',\n     '[keyword echo] [string \"][variable-2 $aaaa][[','[variable-2 $aaaaa]',']][string aa\"];',\n\n     '[keyword echo] [string \"1aaa][variable-2 $aaaa][[','[number 2]',         ']][string aa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $aaaa][[','[number 2345]',      ']][string aa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $aaaa][[','[number 2.3]',       ']][string aa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $aaaa][[','[variable aaaaa]',   ']][string aa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $aaaa][[','[variable-2 $aaaaa]',']][string aa\"];',\n     '[meta ?>]');\n\n  MT('variable_interpolation_simple_syntax_3',\n     '[meta <?php]',\n     '[keyword echo] [string \"aaa][variable-2 $aaaa]->[variable aaaaa][string .aaaaaa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $aaaa][string ->][variable-2 $aaaaa][string .aaaaaa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $aaaa]->[variable aaaaa][string [[2]].aaaaaa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $aaaa]->[variable aaaaa][string ->aaaa2.aaaaaa\"];',\n     '[meta ?>]');\n\n  MT('variable_interpolation_escaping',\n     '[meta <?php] [comment /* Escaping */]',\n     '[keyword echo] [string \"aaa\\\\$aaaa->aaa.aaa\"];',\n     '[keyword echo] [string \"aaa\\\\$aaaa[[2]]aaa.aaa\"];',\n     '[keyword echo] [string \"aaa\\\\$aaaa[[asd]]aaa.aaa\"];',\n     '[keyword echo] [string \"aaa{\\\\$aaaa->aaa.aaa\"];',\n     '[keyword echo] [string \"aaa{\\\\$aaaa[[2]]aaa.aaa\"];',\n     '[keyword echo] [string \"aaa{\\\\aaaaa[[asd]]aaa.aaa\"];',\n     '[keyword echo] [string \"aaa\\\\${aaaa->aaa.aaa\"];',\n     '[keyword echo] [string \"aaa\\\\${aaaa[[2]]aaa.aaa\"];',\n     '[keyword echo] [string \"aaa\\\\${aaaa[[asd]]aaa.aaa\"];',\n     '[meta ?>]');\n\n  MT('variable_interpolation_complex_syntax_1',\n     '[meta <?php]',\n     '[keyword echo] [string \"aaa][variable-2 $]{[variable aaaa]}[string ->aaa.aaa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $]{[variable-2 $aaaa]}[string ->aaa.aaa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $]{[variable-2 $aaaa][[','  [number 42]',']]}[string ->aaa.aaa\"];',\n     '[keyword echo] [string \"aaa][variable-2 $]{[variable aaaa][meta ?>]aaaaaa');\n\n  MT('variable_interpolation_complex_syntax_2',\n     '[meta <?php] [comment /* Monsters */]',\n     '[keyword echo] [string \"][variable-2 $]{[variable aaa][comment /*}?>} $aaa<?php } */]}[string ->aaa.aaa\"];',\n     '[keyword echo] [string \"][variable-2 $]{[variable aaa][comment /*}?>*/][[','  [string \"aaa][variable-2 $aaa][string {}][variable-2 $]{[variable aaa]}[string \"]',']]}[string ->aaa.aaa\"];',\n     '[keyword echo] [string \"][variable-2 $]{[variable aaa][comment /*} } $aaa } */]}[string ->aaa.aaa\"];');\n\n\n  function build_recursive_monsters(nt, t, n){\n    var monsters = [t];\n    for (var i = 1; i <= n; ++i)\n      monsters[i] = nt.join(monsters[i - 1]);\n    return monsters;\n  }\n\n  var m1 = build_recursive_monsters(\n    ['[string \"][variable-2 $]{[variable aaa] [operator +] ', '}[string \"]'],\n    '[comment /* }?>} */] [string \"aaa][variable-2 $aaa][string .aaa\"]',\n    10\n  );\n\n  MT('variable_interpolation_complex_syntax_3_1',\n     '[meta <?php] [comment /* Recursive monsters */]',\n     '[keyword echo] ' + m1[4] + ';',\n     '[keyword echo] ' + m1[7] + ';',\n     '[keyword echo] ' + m1[8] + ';',\n     '[keyword echo] ' + m1[5] + ';',\n     '[keyword echo] ' + m1[1] + ';',\n     '[keyword echo] ' + m1[6] + ';',\n     '[keyword echo] ' + m1[9] + ';',\n     '[keyword echo] ' + m1[0] + ';',\n     '[keyword echo] ' + m1[10] + ';',\n     '[keyword echo] ' + m1[2] + ';',\n     '[keyword echo] ' + m1[3] + ';',\n     '[keyword echo] [string \"end\"];',\n     '[meta ?>]');\n\n  var m2 = build_recursive_monsters(\n    ['[string \"a][variable-2 $]{[variable aaa] [operator +] ', ' [operator +] ', '}[string .a\"]'],\n    '[comment /* }?>{{ */] [string \"a?>}{{aa][variable-2 $aaa][string .a}a?>a\"]',\n    5\n  );\n\n  MT('variable_interpolation_complex_syntax_3_2',\n     '[meta <?php] [comment /* Recursive monsters 2 */]',\n     '[keyword echo] ' + m2[0] + ';',\n     '[keyword echo] ' + m2[1] + ';',\n     '[keyword echo] ' + m2[5] + ';',\n     '[keyword echo] ' + m2[4] + ';',\n     '[keyword echo] ' + m2[2] + ';',\n     '[keyword echo] ' + m2[3] + ';',\n     '[keyword echo] [string \"end\"];',\n     '[meta ?>]');\n\n  function build_recursive_monsters_2(mf1, mf2, nt, t, n){\n    var monsters = [t];\n    for (var i = 1; i <= n; ++i)\n      monsters[i] = nt[0] + mf1[i - 1] + nt[1] + mf2[i - 1] + nt[2] + monsters[i - 1] + nt[3];\n    return monsters;\n  }\n\n  var m3 = build_recursive_monsters_2(\n    m1,\n    m2,\n    ['[string \"a][variable-2 $]{[variable aaa] [operator +] ', ' [operator +] ', ' [operator +] ', '}[string .a\"]'],\n    '[comment /* }?>{{ */] [string \"a?>}{{aa][variable-2 $aaa][string .a}a?>a\"]',\n    4\n  );\n\n  MT('variable_interpolation_complex_syntax_3_3',\n     '[meta <?php] [comment /* Recursive monsters 2 */]',\n     '[keyword echo] ' + m3[4] + ';',\n     '[keyword echo] ' + m3[0] + ';',\n     '[keyword echo] ' + m3[3] + ';',\n     '[keyword echo] ' + m3[1] + ';',\n     '[keyword echo] ' + m3[2] + ';',\n     '[keyword echo] [string \"end\"];',\n     '[meta ?>]');\n\n  MT(\"variable_interpolation_heredoc\",\n     \"[meta <?php]\",\n     \"[string <<<here]\",\n     \"[string doc ][variable-2 $]{[variable yay]}[string more]\",\n     \"[string here]; [comment // normal]\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/pig/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Pig Latin mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"pig.js\"></script>\n<style>.CodeMirror {border: 2px inset #dee;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Pig Latin</a>\n  </ul>\n</div>\n\n<article>\n<h2>Pig Latin mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n-- Apache Pig (Pig Latin Language) Demo\n/* \nThis is a multiline comment.\n*/\na = LOAD \"\\path\\to\\input\" USING PigStorage('\\t') AS (x:long, y:chararray, z:bytearray);\nb = GROUP a BY (x,y,3+4);\nc = FOREACH b GENERATE flatten(group) as (x,y), SUM(group.$2) as z;\nSTORE c INTO \"\\path\\to\\output\";\n\n--\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        indentUnit: 4,\n        mode: \"text/x-pig\"\n      });\n    </script>\n\n    <p>\n        Simple mode that handles Pig Latin language.\n    </p>\n\n    <p><strong>MIME type defined:</strong> <code>text/x-pig</code>\n    (PIG code)\n</html>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/pig/pig.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/*\n *      Pig Latin Mode for CodeMirror 2\n *      @author Prasanth Jayachandran\n *      @link   https://github.com/prasanthj/pig-codemirror-2\n *  This implementation is adapted from PL/SQL mode in CodeMirror 2.\n */\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"pig\", function(_config, parserConfig) {\n  var keywords = parserConfig.keywords,\n  builtins = parserConfig.builtins,\n  types = parserConfig.types,\n  multiLineStrings = parserConfig.multiLineStrings;\n\n  var isOperatorChar = /[*+\\-%<>=&?:\\/!|]/;\n\n  function chain(stream, state, f) {\n    state.tokenize = f;\n    return f(stream, state);\n  }\n\n  var type;\n  function ret(tp, style) {\n    type = tp;\n    return style;\n  }\n\n  function tokenComment(stream, state) {\n    var isEnd = false;\n    var ch;\n    while(ch = stream.next()) {\n      if(ch == \"/\" && isEnd) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      isEnd = (ch == \"*\");\n    }\n    return ret(\"comment\", \"comment\");\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while((next = stream.next()) != null) {\n        if (next == quote && !escaped) {\n          end = true; break;\n        }\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !(escaped || multiLineStrings))\n        state.tokenize = tokenBase;\n      return ret(\"string\", \"error\");\n    };\n  }\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n\n    // is a start of string?\n    if (ch == '\"' || ch == \"'\")\n      return chain(stream, state, tokenString(ch));\n    // is it one of the special chars\n    else if(/[\\[\\]{}\\(\\),;\\.]/.test(ch))\n      return ret(ch);\n    // is it a number?\n    else if(/\\d/.test(ch)) {\n      stream.eatWhile(/[\\w\\.]/);\n      return ret(\"number\", \"number\");\n    }\n    // multi line comment or operator\n    else if (ch == \"/\") {\n      if (stream.eat(\"*\")) {\n        return chain(stream, state, tokenComment);\n      }\n      else {\n        stream.eatWhile(isOperatorChar);\n        return ret(\"operator\", \"operator\");\n      }\n    }\n    // single line comment or operator\n    else if (ch==\"-\") {\n      if(stream.eat(\"-\")){\n        stream.skipToEnd();\n        return ret(\"comment\", \"comment\");\n      }\n      else {\n        stream.eatWhile(isOperatorChar);\n        return ret(\"operator\", \"operator\");\n      }\n    }\n    // is it an operator\n    else if (isOperatorChar.test(ch)) {\n      stream.eatWhile(isOperatorChar);\n      return ret(\"operator\", \"operator\");\n    }\n    else {\n      // get the while word\n      stream.eatWhile(/[\\w\\$_]/);\n      // is it one of the listed keywords?\n      if (keywords && keywords.propertyIsEnumerable(stream.current().toUpperCase())) {\n        if (stream.eat(\")\") || stream.eat(\".\")) {\n          //keywords can be used as variables like flatten(group), group.$0 etc..\n        }\n        else {\n          return (\"keyword\", \"keyword\");\n        }\n      }\n      // is it one of the builtin functions?\n      if (builtins && builtins.propertyIsEnumerable(stream.current().toUpperCase()))\n      {\n        return (\"keyword\", \"variable-2\");\n      }\n      // is it one of the listed types?\n      if (types && types.propertyIsEnumerable(stream.current().toUpperCase()))\n        return (\"keyword\", \"variable-3\");\n      // default is a 'variable'\n      return ret(\"variable\", \"pig-word\");\n    }\n  }\n\n  // Interface\n  return {\n    startState: function() {\n      return {\n        tokenize: tokenBase,\n        startOfLine: true\n      };\n    },\n\n    token: function(stream, state) {\n      if(stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n      return style;\n    }\n  };\n});\n\n(function() {\n  function keywords(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  // builtin funcs taken from trunk revision 1303237\n  var pBuiltins = \"ABS ACOS ARITY ASIN ATAN AVG BAGSIZE BINSTORAGE BLOOM BUILDBLOOM CBRT CEIL \"\n    + \"CONCAT COR COS COSH COUNT COUNT_STAR COV CONSTANTSIZE CUBEDIMENSIONS DIFF DISTINCT DOUBLEABS \"\n    + \"DOUBLEAVG DOUBLEBASE DOUBLEMAX DOUBLEMIN DOUBLEROUND DOUBLESUM EXP FLOOR FLOATABS FLOATAVG \"\n    + \"FLOATMAX FLOATMIN FLOATROUND FLOATSUM GENERICINVOKER INDEXOF INTABS INTAVG INTMAX INTMIN \"\n    + \"INTSUM INVOKEFORDOUBLE INVOKEFORFLOAT INVOKEFORINT INVOKEFORLONG INVOKEFORSTRING INVOKER \"\n    + \"ISEMPTY JSONLOADER JSONMETADATA JSONSTORAGE LAST_INDEX_OF LCFIRST LOG LOG10 LOWER LONGABS \"\n    + \"LONGAVG LONGMAX LONGMIN LONGSUM MAX MIN MAPSIZE MONITOREDUDF NONDETERMINISTIC OUTPUTSCHEMA  \"\n    + \"PIGSTORAGE PIGSTREAMING RANDOM REGEX_EXTRACT REGEX_EXTRACT_ALL REPLACE ROUND SIN SINH SIZE \"\n    + \"SQRT STRSPLIT SUBSTRING SUM STRINGCONCAT STRINGMAX STRINGMIN STRINGSIZE TAN TANH TOBAG \"\n    + \"TOKENIZE TOMAP TOP TOTUPLE TRIM TEXTLOADER TUPLESIZE UCFIRST UPPER UTF8STORAGECONVERTER \";\n\n  // taken from QueryLexer.g\n  var pKeywords = \"VOID IMPORT RETURNS DEFINE LOAD FILTER FOREACH ORDER CUBE DISTINCT COGROUP \"\n    + \"JOIN CROSS UNION SPLIT INTO IF OTHERWISE ALL AS BY USING INNER OUTER ONSCHEMA PARALLEL \"\n    + \"PARTITION GROUP AND OR NOT GENERATE FLATTEN ASC DESC IS STREAM THROUGH STORE MAPREDUCE \"\n    + \"SHIP CACHE INPUT OUTPUT STDERROR STDIN STDOUT LIMIT SAMPLE LEFT RIGHT FULL EQ GT LT GTE LTE \"\n    + \"NEQ MATCHES TRUE FALSE DUMP\";\n\n  // data types\n  var pTypes = \"BOOLEAN INT LONG FLOAT DOUBLE CHARARRAY BYTEARRAY BAG TUPLE MAP \";\n\n  CodeMirror.defineMIME(\"text/x-pig\", {\n    name: \"pig\",\n    builtins: keywords(pBuiltins),\n    keywords: keywords(pKeywords),\n    types: keywords(pTypes)\n  });\n\n  CodeMirror.registerHelper(\"hintWords\", \"pig\", (pBuiltins + pTypes + pKeywords).split(\" \"));\n}());\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/properties/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Properties files mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"properties.js\"></script>\n<style>.CodeMirror {border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Properties files</a>\n  </ul>\n</div>\n\n<article>\n<h2>Properties files mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n# This is a properties file\na.key = A value\nanother.key = http://example.com\n! Exclamation mark as comment\nbut.not=Within ! A value # indeed\n   # Spaces at the beginning of a line\n   spaces.before.key=value\nbackslash=Used for multi\\\n          line entries,\\\n          that's convenient.\n# Unicode sequences\nunicode.key=This is \\u0020 Unicode\nno.multiline=here\n# Colons\ncolons : can be used too\n# Spaces\nspaces\\ in\\ keys=Not very common...\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-properties</code>,\n    <code>text/x-ini</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/properties/properties.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"properties\", function() {\n  return {\n    token: function(stream, state) {\n      var sol = stream.sol() || state.afterSection;\n      var eol = stream.eol();\n\n      state.afterSection = false;\n\n      if (sol) {\n        if (state.nextMultiline) {\n          state.inMultiline = true;\n          state.nextMultiline = false;\n        } else {\n          state.position = \"def\";\n        }\n      }\n\n      if (eol && ! state.nextMultiline) {\n        state.inMultiline = false;\n        state.position = \"def\";\n      }\n\n      if (sol) {\n        while(stream.eatSpace());\n      }\n\n      var ch = stream.next();\n\n      if (sol && (ch === \"#\" || ch === \"!\" || ch === \";\")) {\n        state.position = \"comment\";\n        stream.skipToEnd();\n        return \"comment\";\n      } else if (sol && ch === \"[\") {\n        state.afterSection = true;\n        stream.skipTo(\"]\"); stream.eat(\"]\");\n        return \"header\";\n      } else if (ch === \"=\" || ch === \":\") {\n        state.position = \"quote\";\n        return null;\n      } else if (ch === \"\\\\\" && state.position === \"quote\") {\n        if (stream.next() !== \"u\") {    // u = Unicode sequence \\u1234\n          // Multiline value\n          state.nextMultiline = true;\n        }\n      }\n\n      return state.position;\n    },\n\n    startState: function() {\n      return {\n        position : \"def\",       // Current position, \"def\", \"quote\" or \"comment\"\n        nextMultiline : false,  // Is the next line multiline value\n        inMultiline : false,    // Is the current line a multiline value\n        afterSection : false    // Did we just open a section\n      };\n    }\n\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-properties\", \"properties\");\nCodeMirror.defineMIME(\"text/x-ini\", \"properties\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/puppet/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Puppet mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"puppet.js\"></script>\n<style>\n      .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}\n      .cm-s-default span.cm-arrow { color: red; }\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Puppet</a>\n  </ul>\n</div>\n\n<article>\n<h2>Puppet mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n# == Class: automysqlbackup\n#\n# Puppet module to install AutoMySQLBackup for periodic MySQL backups.\n#\n# class { 'automysqlbackup':\n#   backup_dir => '/mnt/backups',\n# }\n#\n\nclass automysqlbackup (\n  $bin_dir = $automysqlbackup::params::bin_dir,\n  $etc_dir = $automysqlbackup::params::etc_dir,\n  $backup_dir = $automysqlbackup::params::backup_dir,\n  $install_multicore = undef,\n  $config = {},\n  $config_defaults = {},\n) inherits automysqlbackup::params {\n\n# Ensure valid paths are assigned\n  validate_absolute_path($bin_dir)\n  validate_absolute_path($etc_dir)\n  validate_absolute_path($backup_dir)\n\n# Create a subdirectory in /etc for config files\n  file { $etc_dir:\n    ensure => directory,\n    owner => 'root',\n    group => 'root',\n    mode => '0750',\n  }\n\n# Create an example backup file, useful for reference\n  file { \"${etc_dir}/automysqlbackup.conf.example\":\n    ensure => file,\n    owner => 'root',\n    group => 'root',\n    mode => '0660',\n    source => 'puppet:///modules/automysqlbackup/automysqlbackup.conf',\n  }\n\n# Add files from the developer\n  file { \"${etc_dir}/AMB_README\":\n    ensure => file,\n    source => 'puppet:///modules/automysqlbackup/AMB_README',\n  }\n  file { \"${etc_dir}/AMB_LICENSE\":\n    ensure => file,\n    source => 'puppet:///modules/automysqlbackup/AMB_LICENSE',\n  }\n\n# Install the actual binary file\n  file { \"${bin_dir}/automysqlbackup\":\n    ensure => file,\n    owner => 'root',\n    group => 'root',\n    mode => '0755',\n    source => 'puppet:///modules/automysqlbackup/automysqlbackup',\n  }\n\n# Create the base backup directory\n  file { $backup_dir:\n    ensure => directory,\n    owner => 'root',\n    group => 'root',\n    mode => '0755',\n  }\n\n# If you'd like to keep your config in hiera and pass it to this class\n  if !empty($config) {\n    create_resources('automysqlbackup::backup', $config, $config_defaults)\n  }\n\n# If using RedHat family, must have the RPMforge repo's enabled\n  if $install_multicore {\n    package { ['pigz', 'pbzip2']: ensure => installed }\n  }\n\n}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: \"text/x-puppet\",\n        matchBrackets: true,\n        indentUnit: 4\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-puppet</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/puppet/puppet.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"puppet\", function () {\n  // Stores the words from the define method\n  var words = {};\n  // Taken, mostly, from the Puppet official variable standards regex\n  var variable_regex = /({)?([a-z][a-z0-9_]*)?((::[a-z][a-z0-9_]*)*::)?[a-zA-Z0-9_]+(})?/;\n\n  // Takes a string of words separated by spaces and adds them as\n  // keys with the value of the first argument 'style'\n  function define(style, string) {\n    var split = string.split(' ');\n    for (var i = 0; i < split.length; i++) {\n      words[split[i]] = style;\n    }\n  }\n\n  // Takes commonly known puppet types/words and classifies them to a style\n  define('keyword', 'class define site node include import inherits');\n  define('keyword', 'case if else in and elsif default or');\n  define('atom', 'false true running present absent file directory undef');\n  define('builtin', 'action augeas burst chain computer cron destination dport exec ' +\n    'file filebucket group host icmp iniface interface jump k5login limit log_level ' +\n    'log_prefix macauthorization mailalias maillist mcx mount nagios_command ' +\n    'nagios_contact nagios_contactgroup nagios_host nagios_hostdependency ' +\n    'nagios_hostescalation nagios_hostextinfo nagios_hostgroup nagios_service ' +\n    'nagios_servicedependency nagios_serviceescalation nagios_serviceextinfo ' +\n    'nagios_servicegroup nagios_timeperiod name notify outiface package proto reject ' +\n    'resources router schedule scheduled_task selboolean selmodule service source ' +\n    'sport ssh_authorized_key sshkey stage state table tidy todest toports tosource ' +\n    'user vlan yumrepo zfs zone zpool');\n\n  // After finding a start of a string ('|\") this function attempts to find the end;\n  // If a variable is encountered along the way, we display it differently when it\n  // is encapsulated in a double-quoted string.\n  function tokenString(stream, state) {\n    var current, prev, found_var = false;\n    while (!stream.eol() && (current = stream.next()) != state.pending) {\n      if (current === '$' && prev != '\\\\' && state.pending == '\"') {\n        found_var = true;\n        break;\n      }\n      prev = current;\n    }\n    if (found_var) {\n      stream.backUp(1);\n    }\n    if (current == state.pending) {\n      state.continueString = false;\n    } else {\n      state.continueString = true;\n    }\n    return \"string\";\n  }\n\n  // Main function\n  function tokenize(stream, state) {\n    // Matches one whole word\n    var word = stream.match(/[\\w]+/, false);\n    // Matches attributes (i.e. ensure => present ; 'ensure' would be matched)\n    var attribute = stream.match(/(\\s+)?\\w+\\s+=>.*/, false);\n    // Matches non-builtin resource declarations\n    // (i.e. \"apache::vhost {\" or \"mycustomclasss {\" would be matched)\n    var resource = stream.match(/(\\s+)?[\\w:_]+(\\s+)?{/, false);\n    // Matches virtual and exported resources (i.e. @@user { ; and the like)\n    var special_resource = stream.match(/(\\s+)?[@]{1,2}[\\w:_]+(\\s+)?{/, false);\n\n    // Finally advance the stream\n    var ch = stream.next();\n\n    // Have we found a variable?\n    if (ch === '$') {\n      if (stream.match(variable_regex)) {\n        // If so, and its in a string, assign it a different color\n        return state.continueString ? 'variable-2' : 'variable';\n      }\n      // Otherwise return an invalid variable\n      return \"error\";\n    }\n    // Should we still be looking for the end of a string?\n    if (state.continueString) {\n      // If so, go through the loop again\n      stream.backUp(1);\n      return tokenString(stream, state);\n    }\n    // Are we in a definition (class, node, define)?\n    if (state.inDefinition) {\n      // If so, return def (i.e. for 'class myclass {' ; 'myclass' would be matched)\n      if (stream.match(/(\\s+)?[\\w:_]+(\\s+)?/)) {\n        return 'def';\n      }\n      // Match the rest it the next time around\n      stream.match(/\\s+{/);\n      state.inDefinition = false;\n    }\n    // Are we in an 'include' statement?\n    if (state.inInclude) {\n      // Match and return the included class\n      stream.match(/(\\s+)?\\S+(\\s+)?/);\n      state.inInclude = false;\n      return 'def';\n    }\n    // Do we just have a function on our hands?\n    // In 'ensure_resource(\"myclass\")', 'ensure_resource' is matched\n    if (stream.match(/(\\s+)?\\w+\\(/)) {\n      stream.backUp(1);\n      return 'def';\n    }\n    // Have we matched the prior attribute regex?\n    if (attribute) {\n      stream.match(/(\\s+)?\\w+/);\n      return 'tag';\n    }\n    // Do we have Puppet specific words?\n    if (word && words.hasOwnProperty(word)) {\n      // Negates the initial next()\n      stream.backUp(1);\n      // Acutally move the stream\n      stream.match(/[\\w]+/);\n      // We want to process these words differently\n      // do to the importance they have in Puppet\n      if (stream.match(/\\s+\\S+\\s+{/, false)) {\n        state.inDefinition = true;\n      }\n      if (word == 'include') {\n        state.inInclude = true;\n      }\n      // Returns their value as state in the prior define methods\n      return words[word];\n    }\n    // Is there a match on a reference?\n    if (/(\\s+)?[A-Z]/.test(word)) {\n      // Negate the next()\n      stream.backUp(1);\n      // Match the full reference\n      stream.match(/(\\s+)?[A-Z][\\w:_]+/);\n      return 'def';\n    }\n    // Have we matched the prior resource regex?\n    if (resource) {\n      stream.match(/(\\s+)?[\\w:_]+/);\n      return 'def';\n    }\n    // Have we matched the prior special_resource regex?\n    if (special_resource) {\n      stream.match(/(\\s+)?[@]{1,2}/);\n      return 'special';\n    }\n    // Match all the comments. All of them.\n    if (ch == \"#\") {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n    // Have we found a string?\n    if (ch == \"'\" || ch == '\"') {\n      // Store the type (single or double)\n      state.pending = ch;\n      // Perform the looping function to find the end\n      return tokenString(stream, state);\n    }\n    // Match all the brackets\n    if (ch == '{' || ch == '}') {\n      return 'bracket';\n    }\n    // Match characters that we are going to assume\n    // are trying to be regex\n    if (ch == '/') {\n      stream.match(/.*?\\//);\n      return 'variable-3';\n    }\n    // Match all the numbers\n    if (ch.match(/[0-9]/)) {\n      stream.eatWhile(/[0-9]+/);\n      return 'number';\n    }\n    // Match the '=' and '=>' operators\n    if (ch == '=') {\n      if (stream.peek() == '>') {\n          stream.next();\n      }\n      return \"operator\";\n    }\n    // Keep advancing through all the rest\n    stream.eatWhile(/[\\w-]/);\n    // Return a blank line for everything else\n    return null;\n  }\n  // Start it all\n  return {\n    startState: function () {\n      var state = {};\n      state.inDefinition = false;\n      state.inInclude = false;\n      state.continueString = false;\n      state.pending = false;\n      return state;\n    },\n    token: function (stream, state) {\n      // Strip the spaces, but regex will account for them eitherway\n      if (stream.eatSpace()) return null;\n      // Go through the main process\n      return tokenize(stream, state);\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-puppet\", \"puppet\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/python/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Python mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"python.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Python</a>\n  </ul>\n</div>\n\n<article>\n<h2>Python mode</h2>\n\n    <div><textarea id=\"code\" name=\"code\">\n# Literals\n1234\n0.0e101\n.123\n0b01010011100\n0o01234567\n0x0987654321abcdef\n7\n2147483647\n3L\n79228162514264337593543950336L\n0x100000000L\n79228162514264337593543950336\n0xdeadbeef\n3.14j\n10.j\n10j\n.001j\n1e100j\n3.14e-10j\n\n\n# String Literals\n'For\\''\n\"God\\\"\"\n\"\"\"so loved\nthe world\"\"\"\n'''that he gave\nhis only begotten\\' '''\n'that whosoever believeth \\\nin him'\n''\n\n# Identifiers\n__a__\na.b\na.b.c\n\n#Unicode identifiers on Python3\n# a = x\\ddot\na⃗ = ẍ\n# a = v\\dot\na⃗ = v̇\n\n#F\\vec = m \\cdot a\\vec\nF⃗ = m•a⃗ \n\n# Operators\n+ - * / % & | ^ ~ < >\n== != <= >= <> << >> // **\nand or not in is\n\n#infix matrix multiplication operator (PEP 465)\nA @ B\n\n# Delimiters\n() [] {} , : ` = ; @ .  # Note that @ and . require the proper context on Python 2.\n+= -= *= /= %= &= |= ^=\n//= >>= <<= **=\n\n# Keywords\nas assert break class continue def del elif else except\nfinally for from global if import lambda pass raise\nreturn try while with yield\n\n# Python 2 Keywords (otherwise Identifiers)\nexec print\n\n# Python 3 Keywords (otherwise Identifiers)\nnonlocal\n\n# Types\nbool classmethod complex dict enumerate float frozenset int list object\nproperty reversed set slice staticmethod str super tuple type\n\n# Python 2 Types (otherwise Identifiers)\nbasestring buffer file long unicode xrange\n\n# Python 3 Types (otherwise Identifiers)\nbytearray bytes filter map memoryview open range zip\n\n# Some Example code\nimport os\nfrom package import ParentClass\n\n@nonsenseDecorator\ndef doesNothing():\n    pass\n\nclass ExampleClass(ParentClass):\n    @staticmethod\n    def example(inputStr):\n        a = list(inputStr)\n        a.reverse()\n        return ''.join(a)\n\n    def __init__(self, mixin = 'Hello'):\n        self.mixin = mixin\n\n</textarea></div>\n\n\n<h2>Cython mode</h2>\n\n<div><textarea id=\"code-cython\" name=\"code-cython\">\n\nimport numpy as np\ncimport cython\nfrom libc.math cimport sqrt\n\n@cython.boundscheck(False)\n@cython.wraparound(False)\ndef pairwise_cython(double[:, ::1] X):\n    cdef int M = X.shape[0]\n    cdef int N = X.shape[1]\n    cdef double tmp, d\n    cdef double[:, ::1] D = np.empty((M, M), dtype=np.float64)\n    for i in range(M):\n        for j in range(M):\n            d = 0.0\n            for k in range(N):\n                tmp = X[i, k] - X[j, k]\n                d += tmp * tmp\n            D[i, j] = sqrt(d)\n    return np.asarray(D)\n\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: {name: \"python\",\n               version: 3,\n               singleLineStringErrors: false},\n        lineNumbers: true,\n        indentUnit: 4,\n        matchBrackets: true\n    });\n\n    CodeMirror.fromTextArea(document.getElementById(\"code-cython\"), {\n        mode: {name: \"text/x-cython\",\n               version: 2,\n               singleLineStringErrors: false},\n        lineNumbers: true,\n        indentUnit: 4,\n        matchBrackets: true\n      });\n    </script>\n    <h2>Configuration Options for Python mode:</h2>\n    <ul>\n      <li>version - 2/3 - The version of Python to recognize.  Default is 2.</li>\n      <li>singleLineStringErrors - true/false - If you have a single-line string that is not terminated at the end of the line, this will show subsequent lines as errors if true, otherwise it will consider the newline as the end of the string. Default is false.</li>\n      <li>hangingIndent - int - If you want to write long arguments to a function starting on a new line, how much that line should be indented. Defaults to one normal indentation unit.</li>\n    </ul>\n    <h2>Advanced Configuration Options:</h2>\n    <p>Usefull for superset of python syntax like Enthought enaml, IPython magics and  questionmark help</p>\n    <ul>\n      <li>singleOperators - RegEx - Regular Expression for single operator matching,  default : <pre>^[\\\\+\\\\-\\\\*/%&amp;|\\\\^~&lt;&gt;!]</pre> including <pre>@</pre> on Python 3</li>\n      <li>singleDelimiters - RegEx - Regular Expression for single delimiter matching, default :  <pre>^[\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}@,:`=;\\\\.]</pre></li>\n      <li>doubleOperators - RegEx - Regular Expression for double operators matching, default : <pre>^((==)|(!=)|(&lt;=)|(&gt;=)|(&lt;&gt;)|(&lt;&lt;)|(&gt;&gt;)|(//)|(\\\\*\\\\*))</pre></li>\n      <li>doubleDelimiters - RegEx - Regular Expressoin for double delimiters matching, default : <pre>^((\\\\+=)|(\\\\-=)|(\\\\*=)|(%=)|(/=)|(&amp;=)|(\\\\|=)|(\\\\^=))</pre></li>\n      <li>tripleDelimiters - RegEx - Regular Expression for triple delimiters matching, default : <pre>^((//=)|(&gt;&gt;=)|(&lt;&lt;=)|(\\\\*\\\\*=))</pre></li>\n      <li>identifiers - RegEx - Regular Expression for identifier, default : <pre>^[_A-Za-z][_A-Za-z0-9]*</pre> on Python 2 and <pre>^[_A-Za-z\\u00A1-\\uFFFF][_A-Za-z0-9\\u00A1-\\uFFFF]*</pre> on Python 3.</li>\n      <li>extra_keywords - list of string - List of extra words ton consider as keywords</li>\n      <li>extra_builtins - list of string - List of extra words ton consider as builtins</li>\n    </ul>\n\n\n    <p><strong>MIME types defined:</strong> <code>text/x-python</code> and <code>text/x-cython</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/python/python.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n\n  function wordRegexp(words) {\n    return new RegExp(\"^((\" + words.join(\")|(\") + \"))\\\\b\");\n  }\n\n  var wordOperators = wordRegexp([\"and\", \"or\", \"not\", \"is\"]);\n  var commonKeywords = [\"as\", \"assert\", \"break\", \"class\", \"continue\",\n                        \"def\", \"del\", \"elif\", \"else\", \"except\", \"finally\",\n                        \"for\", \"from\", \"global\", \"if\", \"import\",\n                        \"lambda\", \"pass\", \"raise\", \"return\",\n                        \"try\", \"while\", \"with\", \"yield\", \"in\"];\n  var commonBuiltins = [\"abs\", \"all\", \"any\", \"bin\", \"bool\", \"bytearray\", \"callable\", \"chr\",\n                        \"classmethod\", \"compile\", \"complex\", \"delattr\", \"dict\", \"dir\", \"divmod\",\n                        \"enumerate\", \"eval\", \"filter\", \"float\", \"format\", \"frozenset\",\n                        \"getattr\", \"globals\", \"hasattr\", \"hash\", \"help\", \"hex\", \"id\",\n                        \"input\", \"int\", \"isinstance\", \"issubclass\", \"iter\", \"len\",\n                        \"list\", \"locals\", \"map\", \"max\", \"memoryview\", \"min\", \"next\",\n                        \"object\", \"oct\", \"open\", \"ord\", \"pow\", \"property\", \"range\",\n                        \"repr\", \"reversed\", \"round\", \"set\", \"setattr\", \"slice\",\n                        \"sorted\", \"staticmethod\", \"str\", \"sum\", \"super\", \"tuple\",\n                        \"type\", \"vars\", \"zip\", \"__import__\", \"NotImplemented\",\n                        \"Ellipsis\", \"__debug__\"];\n  var py2 = {builtins: [\"apply\", \"basestring\", \"buffer\", \"cmp\", \"coerce\", \"execfile\",\n                        \"file\", \"intern\", \"long\", \"raw_input\", \"reduce\", \"reload\",\n                        \"unichr\", \"unicode\", \"xrange\", \"False\", \"True\", \"None\"],\n             keywords: [\"exec\", \"print\"]};\n  var py3 = {builtins: [\"ascii\", \"bytes\", \"exec\", \"print\"],\n             keywords: [\"nonlocal\", \"False\", \"True\", \"None\"]};\n\n  CodeMirror.registerHelper(\"hintWords\", \"python\", commonKeywords.concat(commonBuiltins));\n\n  function top(state) {\n    return state.scopes[state.scopes.length - 1];\n  }\n\n  CodeMirror.defineMode(\"python\", function(conf, parserConf) {\n    var ERRORCLASS = \"error\";\n\n    var singleDelimiters = parserConf.singleDelimiters || new RegExp(\"^[\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}@,:`=;\\\\.]\");\n    var doubleOperators = parserConf.doubleOperators || new RegExp(\"^((==)|(!=)|(<=)|(>=)|(<>)|(<<)|(>>)|(//)|(\\\\*\\\\*))\");\n    var doubleDelimiters = parserConf.doubleDelimiters || new RegExp(\"^((\\\\+=)|(\\\\-=)|(\\\\*=)|(%=)|(/=)|(&=)|(\\\\|=)|(\\\\^=))\");\n    var tripleDelimiters = parserConf.tripleDelimiters || new RegExp(\"^((//=)|(>>=)|(<<=)|(\\\\*\\\\*=))\");\n\n    if (parserConf.version && parseInt(parserConf.version, 10) == 3){\n        // since http://legacy.python.org/dev/peps/pep-0465/ @ is also an operator\n        var singleOperators = parserConf.singleOperators || new RegExp(\"^[\\\\+\\\\-\\\\*/%&|\\\\^~<>!@]\");\n        var identifiers = parserConf.identifiers|| new RegExp(\"^[_A-Za-z\\u00A1-\\uFFFF][_A-Za-z0-9\\u00A1-\\uFFFF]*\");\n    } else {\n        var singleOperators = parserConf.singleOperators || new RegExp(\"^[\\\\+\\\\-\\\\*/%&|\\\\^~<>!]\");\n        var identifiers = parserConf.identifiers|| new RegExp(\"^[_A-Za-z][_A-Za-z0-9]*\");\n    }\n\n    var hangingIndent = parserConf.hangingIndent || conf.indentUnit;\n\n    var myKeywords = commonKeywords, myBuiltins = commonBuiltins;\n    if(parserConf.extra_keywords != undefined){\n      myKeywords = myKeywords.concat(parserConf.extra_keywords);\n    }\n    if(parserConf.extra_builtins != undefined){\n      myBuiltins = myBuiltins.concat(parserConf.extra_builtins);\n    }\n    if (parserConf.version && parseInt(parserConf.version, 10) == 3) {\n      myKeywords = myKeywords.concat(py3.keywords);\n      myBuiltins = myBuiltins.concat(py3.builtins);\n      var stringPrefixes = new RegExp(\"^(([rb]|(br))?('{3}|\\\"{3}|['\\\"]))\", \"i\");\n    } else {\n      myKeywords = myKeywords.concat(py2.keywords);\n      myBuiltins = myBuiltins.concat(py2.builtins);\n      var stringPrefixes = new RegExp(\"^(([rub]|(ur)|(br))?('{3}|\\\"{3}|['\\\"]))\", \"i\");\n    }\n    var keywords = wordRegexp(myKeywords);\n    var builtins = wordRegexp(myBuiltins);\n\n    // tokenizers\n    function tokenBase(stream, state) {\n      // Handle scope changes\n      if (stream.sol() && top(state).type == \"py\") {\n        var scopeOffset = top(state).offset;\n        if (stream.eatSpace()) {\n          var lineOffset = stream.indentation();\n          if (lineOffset > scopeOffset)\n            pushScope(stream, state, \"py\");\n          else if (lineOffset < scopeOffset && dedent(stream, state))\n            state.errorToken = true;\n          return null;\n        } else {\n          var style = tokenBaseInner(stream, state);\n          if (scopeOffset > 0 && dedent(stream, state))\n            style += \" \" + ERRORCLASS;\n          return style;\n        }\n      }\n      return tokenBaseInner(stream, state);\n    }\n\n    function tokenBaseInner(stream, state) {\n      if (stream.eatSpace()) return null;\n\n      var ch = stream.peek();\n\n      // Handle Comments\n      if (ch == \"#\") {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n\n      // Handle Number Literals\n      if (stream.match(/^[0-9\\.]/, false)) {\n        var floatLiteral = false;\n        // Floats\n        if (stream.match(/^\\d*\\.\\d+(e[\\+\\-]?\\d+)?/i)) { floatLiteral = true; }\n        if (stream.match(/^\\d+\\.\\d*/)) { floatLiteral = true; }\n        if (stream.match(/^\\.\\d+/)) { floatLiteral = true; }\n        if (floatLiteral) {\n          // Float literals may be \"imaginary\"\n          stream.eat(/J/i);\n          return \"number\";\n        }\n        // Integers\n        var intLiteral = false;\n        // Hex\n        if (stream.match(/^0x[0-9a-f]+/i)) intLiteral = true;\n        // Binary\n        if (stream.match(/^0b[01]+/i)) intLiteral = true;\n        // Octal\n        if (stream.match(/^0o[0-7]+/i)) intLiteral = true;\n        // Decimal\n        if (stream.match(/^[1-9]\\d*(e[\\+\\-]?\\d+)?/)) {\n          // Decimal literals may be \"imaginary\"\n          stream.eat(/J/i);\n          // TODO - Can you have imaginary longs?\n          intLiteral = true;\n        }\n        // Zero by itself with no other piece of number.\n        if (stream.match(/^0(?![\\dx])/i)) intLiteral = true;\n        if (intLiteral) {\n          // Integer literals may be \"long\"\n          stream.eat(/L/i);\n          return \"number\";\n        }\n      }\n\n      // Handle Strings\n      if (stream.match(stringPrefixes)) {\n        state.tokenize = tokenStringFactory(stream.current());\n        return state.tokenize(stream, state);\n      }\n\n      // Handle operators and Delimiters\n      if (stream.match(tripleDelimiters) || stream.match(doubleDelimiters))\n        return null;\n\n      if (stream.match(doubleOperators)\n          || stream.match(singleOperators)\n          || stream.match(wordOperators))\n        return \"operator\";\n\n      if (stream.match(singleDelimiters))\n        return null;\n\n      if (stream.match(keywords))\n        return \"keyword\";\n\n      if (stream.match(builtins))\n        return \"builtin\";\n\n      if (stream.match(/^(self|cls)\\b/))\n        return \"variable-2\";\n\n      if (stream.match(identifiers)) {\n        if (state.lastToken == \"def\" || state.lastToken == \"class\")\n          return \"def\";\n        return \"variable\";\n      }\n\n      // Handle non-detected items\n      stream.next();\n      return ERRORCLASS;\n    }\n\n    function tokenStringFactory(delimiter) {\n      while (\"rub\".indexOf(delimiter.charAt(0).toLowerCase()) >= 0)\n        delimiter = delimiter.substr(1);\n\n      var singleline = delimiter.length == 1;\n      var OUTCLASS = \"string\";\n\n      function tokenString(stream, state) {\n        while (!stream.eol()) {\n          stream.eatWhile(/[^'\"\\\\]/);\n          if (stream.eat(\"\\\\\")) {\n            stream.next();\n            if (singleline && stream.eol())\n              return OUTCLASS;\n          } else if (stream.match(delimiter)) {\n            state.tokenize = tokenBase;\n            return OUTCLASS;\n          } else {\n            stream.eat(/['\"]/);\n          }\n        }\n        if (singleline) {\n          if (parserConf.singleLineStringErrors)\n            return ERRORCLASS;\n          else\n            state.tokenize = tokenBase;\n        }\n        return OUTCLASS;\n      }\n      tokenString.isString = true;\n      return tokenString;\n    }\n\n    function pushScope(stream, state, type) {\n      var offset = 0, align = null;\n      if (type == \"py\") {\n        while (top(state).type != \"py\")\n          state.scopes.pop();\n      }\n      offset = top(state).offset + (type == \"py\" ? conf.indentUnit : hangingIndent);\n      if (type != \"py\" && !stream.match(/^(\\s|#.*)*$/, false))\n        align = stream.column() + 1;\n      state.scopes.push({offset: offset, type: type, align: align});\n    }\n\n    function dedent(stream, state) {\n      var indented = stream.indentation();\n      while (top(state).offset > indented) {\n        if (top(state).type != \"py\") return true;\n        state.scopes.pop();\n      }\n      return top(state).offset != indented;\n    }\n\n    function tokenLexer(stream, state) {\n      var style = state.tokenize(stream, state);\n      var current = stream.current();\n\n      // Handle '.' connected identifiers\n      if (current == \".\") {\n        style = stream.match(identifiers, false) ? null : ERRORCLASS;\n        if (style == null && state.lastStyle == \"meta\") {\n          // Apply 'meta' style to '.' connected identifiers when\n          // appropriate.\n          style = \"meta\";\n        }\n        return style;\n      }\n\n      // Handle decorators\n      if (current == \"@\"){\n        if(parserConf.version && parseInt(parserConf.version, 10) == 3){\n            return stream.match(identifiers, false) ? \"meta\" : \"operator\";\n        } else {\n            return stream.match(identifiers, false) ? \"meta\" : ERRORCLASS;\n        }\n      }\n\n      if ((style == \"variable\" || style == \"builtin\")\n          && state.lastStyle == \"meta\")\n        style = \"meta\";\n\n      // Handle scope changes.\n      if (current == \"pass\" || current == \"return\")\n        state.dedent += 1;\n\n      if (current == \"lambda\") state.lambda = true;\n      if (current == \":\" && !state.lambda && top(state).type == \"py\")\n        pushScope(stream, state, \"py\");\n\n      var delimiter_index = current.length == 1 ? \"[({\".indexOf(current) : -1;\n      if (delimiter_index != -1)\n        pushScope(stream, state, \"])}\".slice(delimiter_index, delimiter_index+1));\n\n      delimiter_index = \"])}\".indexOf(current);\n      if (delimiter_index != -1) {\n        if (top(state).type == current) state.scopes.pop();\n        else return ERRORCLASS;\n      }\n      if (state.dedent > 0 && stream.eol() && top(state).type == \"py\") {\n        if (state.scopes.length > 1) state.scopes.pop();\n        state.dedent -= 1;\n      }\n\n      return style;\n    }\n\n    var external = {\n      startState: function(basecolumn) {\n        return {\n          tokenize: tokenBase,\n          scopes: [{offset: basecolumn || 0, type: \"py\", align: null}],\n          lastStyle: null,\n          lastToken: null,\n          lambda: false,\n          dedent: 0\n        };\n      },\n\n      token: function(stream, state) {\n        var addErr = state.errorToken;\n        if (addErr) state.errorToken = false;\n        var style = tokenLexer(stream, state);\n\n        state.lastStyle = style;\n\n        var current = stream.current();\n        if (current && style)\n          state.lastToken = current;\n\n        if (stream.eol() && state.lambda)\n          state.lambda = false;\n        return addErr ? style + \" \" + ERRORCLASS : style;\n      },\n\n      indent: function(state, textAfter) {\n        if (state.tokenize != tokenBase)\n          return state.tokenize.isString ? CodeMirror.Pass : 0;\n\n        var scope = top(state);\n        var closing = textAfter && textAfter.charAt(0) == scope.type;\n        if (scope.align != null)\n          return scope.align - (closing ? 1 : 0);\n        else if (closing && state.scopes.length > 1)\n          return state.scopes[state.scopes.length - 2].offset;\n        else\n          return scope.offset;\n      },\n\n      lineComment: \"#\",\n      fold: \"indent\"\n    };\n    return external;\n  });\n\n  CodeMirror.defineMIME(\"text/x-python\", \"python\");\n\n  var words = function(str) { return str.split(\" \"); };\n\n  CodeMirror.defineMIME(\"text/x-cython\", {\n    name: \"python\",\n    extra_keywords: words(\"by cdef cimport cpdef ctypedef enum except\"+\n                          \"extern gil include nogil property public\"+\n                          \"readonly struct union DEF IF ELIF ELSE\")\n  });\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/q/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Q mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"q.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Q</a>\n  </ul>\n</div>\n\n<article>\n<h2>Q mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n/ utilities to quickly load a csv file - for more exhaustive analysis of the csv contents see csvguess.q\n/ 2009.09.20 - updated to match latest csvguess.q \n\n/ .csv.colhdrs[file] - return a list of colhdrs from file\n/ info:.csv.info[file] - return a table of information about the file\n/ columns are: \n/\tc - column name; ci - column index; t - load type; mw - max width; \n/\tdchar - distinct characters in values; rule - rule that caught the type\n/\tmaybe - needs checking, _could_ be say a date, but perhaps just a float?\n/ .csv.info0[file;onlycols] - like .csv.info except that it only analyses <onlycols>\n/ example:\n/\tinfo:.csv.info0[file;(.csv.colhdrs file)like\"*price\"]\n/\tinfo:.csv.infolike[file;\"*price\"]\n/\tshow delete from info where t=\" \"\n/ .csv.data[file;info] - use the info from .csv.info to read the data\n/ .csv.data10[file;info] - like .csv.data but only returns the first 10 rows\n/ bulkload[file;info] - bulk loads file into table DATA (which must be already defined :: DATA:() )\n/ .csv.read[file]/read10[file] - for when you don't care about checking/tweaking the <info> before reading \n\n\\d .csv\nDELIM:\",\"\nZAPHDRS:0b / lowercase and remove _ from colhdrs (junk characters are always removed)\nWIDTHHDR:25000 / number of characters read to get the header\nREADLINES:222 / number of lines read and used to guess the types\nSYMMAXWIDTH:11 / character columns narrower than this are stored as symbols\nSYMMAXGR:10 / max symbol granularity% before we give up and keep as a * string\nFORCECHARWIDTH:30 / every field (of any type) with values this wide or more is forced to character \"*\"\nDISCARDEMPTY:0b / completely ignore empty columns if true else set them to \"C\"\nCHUNKSIZE:50000000 / used in fs2 (modified .Q.fs)\n\nk)nameltrim:{$[~@x;.z.s'x;~(*x)in aA:.Q.a,.Q.A;(+/&\\~x in aA)_x;x]}\nk)fs2:{[f;s]((-7!s)>){[f;s;x]i:1+last@&0xa=r:1:(s;x;CHUNKSIZE);f@`\\:i#r;x+i}[f;s]/0j}\ncleanhdrs:{{$[ZAPHDRS;lower x except\"_\";x]}x where x in DELIM,.Q.an}\ncancast:{nw:x$\"\";if[not x in\"BXCS\";nw:(min 0#;max 0#;::)@\\:nw];$[not any nw in x$(11&count y)#y;$[11<count y;not any nw in x$y;1b];0b]}\n\nread:{[file]data[file;info[file]]}  \nread10:{[file]data10[file;info[file]]}  \n\ncolhdrs:{[file]\n\t`$nameltrim DELIM vs cleanhdrs first read0(file;0;1+first where 0xa=read1(file;0;WIDTHHDR))}\ndata:{[file;info]\n\t(exec c from info where not t=\" \")xcol(exec t from info;enlist DELIM)0:file}\ndata10:{[file;info]\n\tdata[;info](file;0;1+last 11#where 0xa=read1(file;0;15*WIDTHHDR))}\ninfo0:{[file;onlycols]\n\tcolhdrs:`$nameltrim DELIM vs cleanhdrs first head:read0(file;0;1+last where 0xa=read1(file;0;WIDTHHDR));\n\tloadfmts:(count colhdrs)#\"S\";if[count onlycols;loadfmts[where not colhdrs in onlycols]:\"C\"];\n\tbreaks:where 0xa=read1(file;0;floor(10+READLINES)*WIDTHHDR%count head);\n\tnas:count as:colhdrs xcol(loadfmts;enlist DELIM)0:(file;0;1+last((1+READLINES)&count breaks)#breaks);\n\tinfo:([]c:key flip as;v:value flip as);as:();\n\treserved:key`.q;reserved,:.Q.res;reserved,:`i;\n\tinfo:update res:c in reserved from info;\n\tinfo:update ci:i,t:\"?\",ipa:0b,mdot:0,mw:0,rule:0,gr:0,ndv:0,maybe:0b,empty:0b,j10:0b,j12:0b from info;\n\tinfo:update ci:`s#ci from info;\n\tif[count onlycols;info:update t:\" \",rule:10 from info where not c in onlycols];\n\tinfo:update sdv:{string(distinct x)except`}peach v from info; \n\tinfo:update ndv:count each sdv from info;\n\tinfo:update gr:floor 0.5+100*ndv%nas,mw:{max count each x}peach sdv from info where 0<ndv;\n\tinfo:update t:\"*\",rule:20 from info where mw>.csv.FORCECHARWIDTH; / long values\n\tinfo:update t:\"C \"[.csv.DISCARDEMPTY],rule:30,empty:1b from info where t=\"?\",mw=0; / empty columns\n\tinfo:update dchar:{asc distinct raze x}peach sdv from info where t=\"?\";\n\tinfo:update mdot:{max sum each\".\"=x}peach sdv from info where t=\"?\",{\".\"in x}each dchar;\n\tinfo:update t:\"n\",rule:40 from info where t=\"?\",{any x in\"0123456789\"}each dchar; / vaguely numeric..\n\tinfo:update t:\"I\",rule:50,ipa:1b from info where t=\"n\",mw within 7 15,mdot=3,{all x in\".0123456789\"}each dchar,.csv.cancast[\"I\"]peach sdv; / ip-address\n\tinfo:update t:\"J\",rule:60 from info where t=\"n\",mdot=0,{all x in\"+-0123456789\"}each dchar,.csv.cancast[\"J\"]peach sdv;\n\tinfo:update t:\"I\",rule:70 from info where t=\"J\",mw<12,.csv.cancast[\"I\"]peach sdv;\n\tinfo:update t:\"H\",rule:80 from info where t=\"I\",mw<7,.csv.cancast[\"H\"]peach sdv;\n\tinfo:update t:\"F\",rule:90 from info where t=\"n\",mdot<2,mw>1,.csv.cancast[\"F\"]peach sdv;\n\tinfo:update t:\"E\",rule:100,maybe:1b from info where t=\"F\",mw<9;\n\tinfo:update t:\"M\",rule:110,maybe:1b from info where t in\"nIHEF\",mdot<2,mw within 4 7,.csv.cancast[\"M\"]peach sdv; \n\tinfo:update t:\"D\",rule:120,maybe:1b from info where t in\"nI\",mdot in 0 2,mw within 6 11,.csv.cancast[\"D\"]peach sdv; \n\tinfo:update t:\"V\",rule:130,maybe:1b from info where t=\"I\",mw in 5 6,7<count each dchar,{all x like\"*[0-9][0-5][0-9][0-5][0-9]\"}peach sdv,.csv.cancast[\"V\"]peach sdv; / 235959 12345        \n\tinfo:update t:\"U\",rule:140,maybe:1b from info where t=\"H\",mw in 3 4,7<count each dchar,{all x like\"*[0-9][0-5][0-9]\"}peach sdv,.csv.cancast[\"U\"]peach sdv; /2359\n\tinfo:update t:\"U\",rule:150,maybe:0b from info where t=\"n\",mw in 4 5,mdot=0,{all x like\"*[0-9]:[0-5][0-9]\"}peach sdv,.csv.cancast[\"U\"]peach sdv;\n\tinfo:update t:\"T\",rule:160,maybe:0b from info where t=\"n\",mw within 7 12,mdot<2,{all x like\"*[0-9]:[0-5][0-9]:[0-5][0-9]*\"}peach sdv,.csv.cancast[\"T\"]peach sdv;\n\tinfo:update t:\"V\",rule:170,maybe:0b from info where t=\"T\",mw in 7 8,mdot=0,.csv.cancast[\"V\"]peach sdv;\n\tinfo:update t:\"T\",rule:180,maybe:1b from info where t in\"EF\",mw within 7 10,mdot=1,{all x like\"*[0-9][0-5][0-9][0-5][0-9].*\"}peach sdv,.csv.cancast[\"T\"]peach sdv;\n\tinfo:update t:\"Z\",rule:190,maybe:0b from info where t=\"n\",mw within 11 24,mdot<4,.csv.cancast[\"Z\"]peach sdv;\n\tinfo:update t:\"P\",rule:200,maybe:1b from info where t=\"n\",mw within 12 29,mdot<4,{all x like\"[12]*\"}peach sdv,.csv.cancast[\"P\"]peach sdv;\n\tinfo:update t:\"N\",rule:210,maybe:1b from info where t=\"n\",mw within 3 28,mdot=1,.csv.cancast[\"N\"]peach sdv;\n\tinfo:update t:\"?\",rule:220,maybe:0b from info where t=\"n\"; / reset remaining maybe numeric\n\tinfo:update t:\"C\",rule:230,maybe:0b from info where t=\"?\",mw=1; / char\n\tinfo:update t:\"B\",rule:240,maybe:0b from info where t in\"HC\",mw=1,mdot=0,{$[all x in\"01tTfFyYnN\";(any\"0fFnN\"in x)and any\"1tTyY\"in x;0b]}each dchar; / boolean\n\tinfo:update t:\"B\",rule:250,maybe:1b from info where t in\"HC\",mw=1,mdot=0,{all x in\"01tTfFyYnN\"}each dchar; / boolean\n\tinfo:update t:\"X\",rule:260,maybe:0b from info where t=\"?\",mw=2,{$[all x in\"0123456789abcdefABCDEF\";(any .Q.n in x)and any\"abcdefABCDEF\"in x;0b]}each dchar; /hex\n\tinfo:update t:\"S\",rule:270,maybe:1b from info where t=\"?\",mw<.csv.SYMMAXWIDTH,mw>1,gr<.csv.SYMMAXGR; / symbols (max width permitting)\n\tinfo:update t:\"*\",rule:280,maybe:0b from info where t=\"?\"; / the rest as strings\n\t/ flag those S/* columns which could be encoded to integers (.Q.j10/x10/j12/x12) to avoid symbols\n\tinfo:update j12:1b from info where t in\"S*\",mw<13,{all x in .Q.nA}each dchar;\n\tinfo:update j10:1b from info where t in\"S*\",mw<11,{all x in .Q.b6}each dchar; \n\tselect c,ci,t,maybe,empty,res,j10,j12,ipa,mw,mdot,rule,gr,ndv,dchar from info}\ninfo:info0[;()] / by default don't restrict columns\ninfolike:{[file;pattern] info0[file;{x where x like y}[lower colhdrs[file];pattern]]} / .csv.infolike[file;\"*time\"]\n\n\\d .\n/ DATA:()\nbulkload:{[file;info]\n\tif[not`DATA in system\"v\";'`DATA.not.defined];\n\tif[count DATA;'`DATA.not.empty];\n\tloadhdrs:exec c from info where not t=\" \";loadfmts:exec t from info;\n\t.csv.fs2[{[file;loadhdrs;loadfmts] `DATA insert $[count DATA;flip loadhdrs!(loadfmts;.csv.DELIM)0:file;loadhdrs xcol(loadfmts;enlist .csv.DELIM)0:file]}[file;loadhdrs;loadfmts]];\n\tcount DATA}\n@[.:;\"\\\\l csvutil.custom.q\";::]; / save your custom settings in csvutil.custom.q to override those set at the beginning of the file \n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true\n      });\n    </script>\n\n    <p><strong>MIME type defined:</strong> <code>text/x-q</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/q/q.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"q\",function(config){\n  var indentUnit=config.indentUnit,\n      curPunc,\n      keywords=buildRE([\"abs\",\"acos\",\"aj\",\"aj0\",\"all\",\"and\",\"any\",\"asc\",\"asin\",\"asof\",\"atan\",\"attr\",\"avg\",\"avgs\",\"bin\",\"by\",\"ceiling\",\"cols\",\"cor\",\"cos\",\"count\",\"cov\",\"cross\",\"csv\",\"cut\",\"delete\",\"deltas\",\"desc\",\"dev\",\"differ\",\"distinct\",\"div\",\"do\",\"each\",\"ej\",\"enlist\",\"eval\",\"except\",\"exec\",\"exit\",\"exp\",\"fby\",\"fills\",\"first\",\"fkeys\",\"flip\",\"floor\",\"from\",\"get\",\"getenv\",\"group\",\"gtime\",\"hclose\",\"hcount\",\"hdel\",\"hopen\",\"hsym\",\"iasc\",\"idesc\",\"if\",\"ij\",\"in\",\"insert\",\"inter\",\"inv\",\"key\",\"keys\",\"last\",\"like\",\"list\",\"lj\",\"load\",\"log\",\"lower\",\"lsq\",\"ltime\",\"ltrim\",\"mavg\",\"max\",\"maxs\",\"mcount\",\"md5\",\"mdev\",\"med\",\"meta\",\"min\",\"mins\",\"mmax\",\"mmin\",\"mmu\",\"mod\",\"msum\",\"neg\",\"next\",\"not\",\"null\",\"or\",\"over\",\"parse\",\"peach\",\"pj\",\"plist\",\"prd\",\"prds\",\"prev\",\"prior\",\"rand\",\"rank\",\"ratios\",\"raze\",\"read0\",\"read1\",\"reciprocal\",\"reverse\",\"rload\",\"rotate\",\"rsave\",\"rtrim\",\"save\",\"scan\",\"select\",\"set\",\"setenv\",\"show\",\"signum\",\"sin\",\"sqrt\",\"ss\",\"ssr\",\"string\",\"sublist\",\"sum\",\"sums\",\"sv\",\"system\",\"tables\",\"tan\",\"til\",\"trim\",\"txf\",\"type\",\"uj\",\"ungroup\",\"union\",\"update\",\"upper\",\"upsert\",\"value\",\"var\",\"view\",\"views\",\"vs\",\"wavg\",\"where\",\"where\",\"while\",\"within\",\"wj\",\"wj1\",\"wsum\",\"xasc\",\"xbar\",\"xcol\",\"xcols\",\"xdesc\",\"xexp\",\"xgroup\",\"xkey\",\"xlog\",\"xprev\",\"xrank\"]),\n      E=/[|/&^!+:\\\\\\-*%$=~#;@><,?_\\'\\\"\\[\\(\\]\\)\\s{}]/;\n  function buildRE(w){return new RegExp(\"^(\"+w.join(\"|\")+\")$\");}\n  function tokenBase(stream,state){\n    var sol=stream.sol(),c=stream.next();\n    curPunc=null;\n    if(sol)\n      if(c==\"/\")\n        return(state.tokenize=tokenLineComment)(stream,state);\n      else if(c==\"\\\\\"){\n        if(stream.eol()||/\\s/.test(stream.peek()))\n          return stream.skipToEnd(),/^\\\\\\s*$/.test(stream.current())?(state.tokenize=tokenCommentToEOF)(stream, state):state.tokenize=tokenBase,\"comment\";\n        else\n          return state.tokenize=tokenBase,\"builtin\";\n      }\n    if(/\\s/.test(c))\n      return stream.peek()==\"/\"?(stream.skipToEnd(),\"comment\"):\"whitespace\";\n    if(c=='\"')\n      return(state.tokenize=tokenString)(stream,state);\n    if(c=='`')\n      return stream.eatWhile(/[A-Z|a-z|\\d|_|:|\\/|\\.]/),\"symbol\";\n    if((\".\"==c&&/\\d/.test(stream.peek()))||/\\d/.test(c)){\n      var t=null;\n      stream.backUp(1);\n      if(stream.match(/^\\d{4}\\.\\d{2}(m|\\.\\d{2}([D|T](\\d{2}(:\\d{2}(:\\d{2}(\\.\\d{1,9})?)?)?)?)?)/)\n      || stream.match(/^\\d+D(\\d{2}(:\\d{2}(:\\d{2}(\\.\\d{1,9})?)?)?)/)\n      || stream.match(/^\\d{2}:\\d{2}(:\\d{2}(\\.\\d{1,9})?)?/)\n      || stream.match(/^\\d+[ptuv]{1}/))\n        t=\"temporal\";\n      else if(stream.match(/^0[NwW]{1}/)\n      || stream.match(/^0x[\\d|a-f|A-F]*/)\n      || stream.match(/^[0|1]+[b]{1}/)\n      || stream.match(/^\\d+[chijn]{1}/)\n      || stream.match(/-?\\d*(\\.\\d*)?(e[+\\-]?\\d+)?(e|f)?/))\n        t=\"number\";\n      return(t&&(!(c=stream.peek())||E.test(c)))?t:(stream.next(),\"error\");\n    }\n    if(/[A-Z|a-z]|\\./.test(c))\n      return stream.eatWhile(/[A-Z|a-z|\\.|_|\\d]/),keywords.test(stream.current())?\"keyword\":\"variable\";\n    if(/[|/&^!+:\\\\\\-*%$=~#;@><\\.,?_\\']/.test(c))\n      return null;\n    if(/[{}\\(\\[\\]\\)]/.test(c))\n      return null;\n    return\"error\";\n  }\n  function tokenLineComment(stream,state){\n    return stream.skipToEnd(),/\\/\\s*$/.test(stream.current())?(state.tokenize=tokenBlockComment)(stream,state):(state.tokenize=tokenBase),\"comment\";\n  }\n  function tokenBlockComment(stream,state){\n    var f=stream.sol()&&stream.peek()==\"\\\\\";\n    stream.skipToEnd();\n    if(f&&/^\\\\\\s*$/.test(stream.current()))\n      state.tokenize=tokenBase;\n    return\"comment\";\n  }\n  function tokenCommentToEOF(stream){return stream.skipToEnd(),\"comment\";}\n  function tokenString(stream,state){\n    var escaped=false,next,end=false;\n    while((next=stream.next())){\n      if(next==\"\\\"\"&&!escaped){end=true;break;}\n      escaped=!escaped&&next==\"\\\\\";\n    }\n    if(end)state.tokenize=tokenBase;\n    return\"string\";\n  }\n  function pushContext(state,type,col){state.context={prev:state.context,indent:state.indent,col:col,type:type};}\n  function popContext(state){state.indent=state.context.indent;state.context=state.context.prev;}\n  return{\n    startState:function(){\n      return{tokenize:tokenBase,\n             context:null,\n             indent:0,\n             col:0};\n    },\n    token:function(stream,state){\n      if(stream.sol()){\n        if(state.context&&state.context.align==null)\n          state.context.align=false;\n        state.indent=stream.indentation();\n      }\n      //if (stream.eatSpace()) return null;\n      var style=state.tokenize(stream,state);\n      if(style!=\"comment\"&&state.context&&state.context.align==null&&state.context.type!=\"pattern\"){\n        state.context.align=true;\n      }\n      if(curPunc==\"(\")pushContext(state,\")\",stream.column());\n      else if(curPunc==\"[\")pushContext(state,\"]\",stream.column());\n      else if(curPunc==\"{\")pushContext(state,\"}\",stream.column());\n      else if(/[\\]\\}\\)]/.test(curPunc)){\n        while(state.context&&state.context.type==\"pattern\")popContext(state);\n        if(state.context&&curPunc==state.context.type)popContext(state);\n      }\n      else if(curPunc==\".\"&&state.context&&state.context.type==\"pattern\")popContext(state);\n      else if(/atom|string|variable/.test(style)&&state.context){\n        if(/[\\}\\]]/.test(state.context.type))\n          pushContext(state,\"pattern\",stream.column());\n        else if(state.context.type==\"pattern\"&&!state.context.align){\n          state.context.align=true;\n          state.context.col=stream.column();\n        }\n      }\n      return style;\n    },\n    indent:function(state,textAfter){\n      var firstChar=textAfter&&textAfter.charAt(0);\n      var context=state.context;\n      if(/[\\]\\}]/.test(firstChar))\n        while (context&&context.type==\"pattern\")context=context.prev;\n      var closing=context&&firstChar==context.type;\n      if(!context)\n        return 0;\n      else if(context.type==\"pattern\")\n        return context.col;\n      else if(context.align)\n        return context.col+(closing?0:1);\n      else\n        return context.indent+(closing?0:indentUnit);\n    }\n  };\n});\nCodeMirror.defineMIME(\"text/x-q\",\"q\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/r/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: R mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"r.js\"></script>\n<style>\n      .CodeMirror { border-top: 1px solid silver; border-bottom: 1px solid silver; }\n      .cm-s-default span.cm-semi { color: blue; font-weight: bold; }\n      .cm-s-default span.cm-dollar { color: orange; font-weight: bold; }\n      .cm-s-default span.cm-arrow { color: brown; }\n      .cm-s-default span.cm-arg-is { color: brown; }\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">R</a>\n  </ul>\n</div>\n\n<article>\n<h2>R mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n# Code from http://www.mayin.org/ajayshah/KB/R/\n\n# FIRST LEARN ABOUT LISTS --\nX = list(height=5.4, weight=54)\nprint(\"Use default printing --\")\nprint(X)\nprint(\"Accessing individual elements --\")\ncat(\"Your height is \", X$height, \" and your weight is \", X$weight, \"\\n\")\n\n# FUNCTIONS --\nsquare <- function(x) {\n  return(x*x)\n}\ncat(\"The square of 3 is \", square(3), \"\\n\")\n\n                 # default value of the arg is set to 5.\ncube <- function(x=5) {\n  return(x*x*x);\n}\ncat(\"Calling cube with 2 : \", cube(2), \"\\n\")    # will give 2^3\ncat(\"Calling cube        : \", cube(), \"\\n\")     # will default to 5^3.\n\n# LEARN ABOUT FUNCTIONS THAT RETURN MULTIPLE OBJECTS --\npowers <- function(x) {\n  parcel = list(x2=x*x, x3=x*x*x, x4=x*x*x*x);\n  return(parcel);\n}\n\nX = powers(3);\nprint(\"Showing powers of 3 --\"); print(X);\n\n# WRITING THIS COMPACTLY (4 lines instead of 7)\n\npowerful <- function(x) {\n  return(list(x2=x*x, x3=x*x*x, x4=x*x*x*x));\n}\nprint(\"Showing powers of 3 --\"); print(powerful(3));\n\n# In R, the last expression in a function is, by default, what is\n# returned. So you could equally just say:\npowerful <- function(x) {list(x2=x*x, x3=x*x*x, x4=x*x*x*x)}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-rsrc</code>.</p>\n\n    <p>Development of the CodeMirror R mode was kindly sponsored\n    by <a href=\"https://twitter.com/ubalo\">Ubalo</a>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/r/r.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"r\", function(config) {\n  function wordObj(str) {\n    var words = str.split(\" \"), res = {};\n    for (var i = 0; i < words.length; ++i) res[words[i]] = true;\n    return res;\n  }\n  var atoms = wordObj(\"NULL NA Inf NaN NA_integer_ NA_real_ NA_complex_ NA_character_\");\n  var builtins = wordObj(\"list quote bquote eval return call parse deparse\");\n  var keywords = wordObj(\"if else repeat while function for in next break\");\n  var blockkeywords = wordObj(\"if else repeat while function for\");\n  var opChars = /[+\\-*\\/^<>=!&|~$:]/;\n  var curPunc;\n\n  function tokenBase(stream, state) {\n    curPunc = null;\n    var ch = stream.next();\n    if (ch == \"#\") {\n      stream.skipToEnd();\n      return \"comment\";\n    } else if (ch == \"0\" && stream.eat(\"x\")) {\n      stream.eatWhile(/[\\da-f]/i);\n      return \"number\";\n    } else if (ch == \".\" && stream.eat(/\\d/)) {\n      stream.match(/\\d*(?:e[+\\-]?\\d+)?/);\n      return \"number\";\n    } else if (/\\d/.test(ch)) {\n      stream.match(/\\d*(?:\\.\\d+)?(?:e[+\\-]\\d+)?L?/);\n      return \"number\";\n    } else if (ch == \"'\" || ch == '\"') {\n      state.tokenize = tokenString(ch);\n      return \"string\";\n    } else if (ch == \".\" && stream.match(/.[.\\d]+/)) {\n      return \"keyword\";\n    } else if (/[\\w\\.]/.test(ch) && ch != \"_\") {\n      stream.eatWhile(/[\\w\\.]/);\n      var word = stream.current();\n      if (atoms.propertyIsEnumerable(word)) return \"atom\";\n      if (keywords.propertyIsEnumerable(word)) {\n        // Block keywords start new blocks, except 'else if', which only starts\n        // one new block for the 'if', no block for the 'else'.\n        if (blockkeywords.propertyIsEnumerable(word) &&\n            !stream.match(/\\s*if(\\s+|$)/, false))\n          curPunc = \"block\";\n        return \"keyword\";\n      }\n      if (builtins.propertyIsEnumerable(word)) return \"builtin\";\n      return \"variable\";\n    } else if (ch == \"%\") {\n      if (stream.skipTo(\"%\")) stream.next();\n      return \"variable-2\";\n    } else if (ch == \"<\" && stream.eat(\"-\")) {\n      return \"arrow\";\n    } else if (ch == \"=\" && state.ctx.argList) {\n      return \"arg-is\";\n    } else if (opChars.test(ch)) {\n      if (ch == \"$\") return \"dollar\";\n      stream.eatWhile(opChars);\n      return \"operator\";\n    } else if (/[\\(\\){}\\[\\];]/.test(ch)) {\n      curPunc = ch;\n      if (ch == \";\") return \"semi\";\n      return null;\n    } else {\n      return null;\n    }\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      if (stream.eat(\"\\\\\")) {\n        var ch = stream.next();\n        if (ch == \"x\") stream.match(/^[a-f0-9]{2}/i);\n        else if ((ch == \"u\" || ch == \"U\") && stream.eat(\"{\") && stream.skipTo(\"}\")) stream.next();\n        else if (ch == \"u\") stream.match(/^[a-f0-9]{4}/i);\n        else if (ch == \"U\") stream.match(/^[a-f0-9]{8}/i);\n        else if (/[0-7]/.test(ch)) stream.match(/^[0-7]{1,2}/);\n        return \"string-2\";\n      } else {\n        var next;\n        while ((next = stream.next()) != null) {\n          if (next == quote) { state.tokenize = tokenBase; break; }\n          if (next == \"\\\\\") { stream.backUp(1); break; }\n        }\n        return \"string\";\n      }\n    };\n  }\n\n  function push(state, type, stream) {\n    state.ctx = {type: type,\n                 indent: state.indent,\n                 align: null,\n                 column: stream.column(),\n                 prev: state.ctx};\n  }\n  function pop(state) {\n    state.indent = state.ctx.indent;\n    state.ctx = state.ctx.prev;\n  }\n\n  return {\n    startState: function() {\n      return {tokenize: tokenBase,\n              ctx: {type: \"top\",\n                    indent: -config.indentUnit,\n                    align: false},\n              indent: 0,\n              afterIdent: false};\n    },\n\n    token: function(stream, state) {\n      if (stream.sol()) {\n        if (state.ctx.align == null) state.ctx.align = false;\n        state.indent = stream.indentation();\n      }\n      if (stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n      if (style != \"comment\" && state.ctx.align == null) state.ctx.align = true;\n\n      var ctype = state.ctx.type;\n      if ((curPunc == \";\" || curPunc == \"{\" || curPunc == \"}\") && ctype == \"block\") pop(state);\n      if (curPunc == \"{\") push(state, \"}\", stream);\n      else if (curPunc == \"(\") {\n        push(state, \")\", stream);\n        if (state.afterIdent) state.ctx.argList = true;\n      }\n      else if (curPunc == \"[\") push(state, \"]\", stream);\n      else if (curPunc == \"block\") push(state, \"block\", stream);\n      else if (curPunc == ctype) pop(state);\n      state.afterIdent = style == \"variable\" || style == \"keyword\";\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != tokenBase) return 0;\n      var firstChar = textAfter && textAfter.charAt(0), ctx = state.ctx,\n          closing = firstChar == ctx.type;\n      if (ctx.type == \"block\") return ctx.indent + (firstChar == \"{\" ? 0 : config.indentUnit);\n      else if (ctx.align) return ctx.column + (closing ? 0 : 1);\n      else return ctx.indent + (closing ? 0 : config.indentUnit);\n    },\n\n    lineComment: \"#\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-rsrc\", \"r\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/rpm/changes/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: RPM changes mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n    <link rel=\"stylesheet\" href=\"../../../lib/codemirror.css\">\n    <script src=\"../../../lib/codemirror.js\"></script>\n    <script src=\"changes.js\"></script>\n    <link rel=\"stylesheet\" href=\"../../../doc/docs.css\">\n    <style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../../index.html\">Home</a>\n    <li><a href=\"../../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">RPM changes</a>\n  </ul>\n</div>\n\n<article>\n<h2>RPM changes mode</h2>\n\n    <div><textarea id=\"code\" name=\"code\">\n-------------------------------------------------------------------\nTue Oct 18 13:58:40 UTC 2011 - misterx@example.com\n\n- Update to r60.3\n- Fixes bug in the reflect package\n  * disallow Interface method on Value obtained via unexported name\n\n-------------------------------------------------------------------\nThu Oct  6 08:14:24 UTC 2011 - misterx@example.com\n\n- Update to r60.2\n- Fixes memory leak in certain map types\n\n-------------------------------------------------------------------\nWed Oct  5 14:34:10 UTC 2011 - misterx@example.com\n\n- Tweaks for gdb debugging\n- go.spec changes:\n  - move %go_arch definition to %prep section\n  - pass correct location of go specific gdb pretty printer and\n    functions to cpp as HOST_EXTRA_CFLAGS macro\n  - install go gdb functions & printer\n- gdb-printer.patch\n  - patch linker (src/cmd/ld/dwarf.c) to emit correct location of go\n    gdb functions and pretty printer\n</textarea></div>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: {name: \"changes\"},\n        lineNumbers: true,\n        indentUnit: 4\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-rpm-changes</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/rpm/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: RPM changes mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n    <link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n    <script src=\"../../lib/codemirror.js\"></script>\n    <script src=\"rpm.js\"></script>\n    <link rel=\"stylesheet\" href=\"../../doc/docs.css\">\n    <style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">RPM</a>\n  </ul>\n</div>\n\n<article>\n<h2>RPM changes mode</h2>\n\n    <div><textarea id=\"code\" name=\"code\">\n-------------------------------------------------------------------\nTue Oct 18 13:58:40 UTC 2011 - misterx@example.com\n\n- Update to r60.3\n- Fixes bug in the reflect package\n  * disallow Interface method on Value obtained via unexported name\n\n-------------------------------------------------------------------\nThu Oct  6 08:14:24 UTC 2011 - misterx@example.com\n\n- Update to r60.2\n- Fixes memory leak in certain map types\n\n-------------------------------------------------------------------\nWed Oct  5 14:34:10 UTC 2011 - misterx@example.com\n\n- Tweaks for gdb debugging\n- go.spec changes:\n  - move %go_arch definition to %prep section\n  - pass correct location of go specific gdb pretty printer and\n    functions to cpp as HOST_EXTRA_CFLAGS macro\n  - install go gdb functions & printer\n- gdb-printer.patch\n  - patch linker (src/cmd/ld/dwarf.c) to emit correct location of go\n    gdb functions and pretty printer\n</textarea></div>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: {name: \"rpm-changes\"},\n        lineNumbers: true,\n        indentUnit: 4\n      });\n    </script>\n\n<h2>RPM spec mode</h2>\n    \n    <div><textarea id=\"code2\" name=\"code2\">\n#\n# spec file for package minidlna\n#\n# Copyright (c) 2011, Sascha Peilicke <saschpe@gmx.de>\n#\n# All modifications and additions to the file contributed by third parties\n# remain the property of their copyright owners, unless otherwise agreed\n# upon. The license for this file, and modifications and additions to the\n# file, is the same license as for the pristine package itself (unless the\n# license for the pristine package is not an Open Source License, in which\n# case the license is the MIT License). An \"Open Source License\" is a\n# license that conforms to the Open Source Definition (Version 1.9)\n# published by the Open Source Initiative.\n\n\nName:           libupnp6\nVersion:        1.6.13\nRelease:        0\nSummary:        Portable Universal Plug and Play (UPnP) SDK\nGroup:          System/Libraries\nLicense:        BSD-3-Clause\nUrl:            http://sourceforge.net/projects/pupnp/\nSource0:        http://downloads.sourceforge.net/pupnp/libupnp-%{version}.tar.bz2\nBuildRoot:      %{_tmppath}/%{name}-%{version}-build\n\n%description\nThe portable Universal Plug and Play (UPnP) SDK provides support for building\nUPnP-compliant control points, devices, and bridges on several operating\nsystems.\n\n%package -n libupnp-devel\nSummary:        Portable Universal Plug and Play (UPnP) SDK\nGroup:          Development/Libraries/C and C++\nProvides:       pkgconfig(libupnp)\nRequires:       %{name} = %{version}\n\n%description -n libupnp-devel\nThe portable Universal Plug and Play (UPnP) SDK provides support for building\nUPnP-compliant control points, devices, and bridges on several operating\nsystems.\n\n%prep\n%setup -n libupnp-%{version}\n\n%build\n%configure --disable-static\nmake %{?_smp_mflags}\n\n%install\n%makeinstall\nfind %{buildroot} -type f -name '*.la' -exec rm -f {} ';'\n\n%post -p /sbin/ldconfig\n\n%postun -p /sbin/ldconfig\n\n%files\n%defattr(-,root,root,-)\n%doc ChangeLog NEWS README TODO\n%{_libdir}/libixml.so.*\n%{_libdir}/libthreadutil.so.*\n%{_libdir}/libupnp.so.*\n\n%files -n libupnp-devel\n%defattr(-,root,root,-)\n%{_libdir}/pkgconfig/libupnp.pc\n%{_libdir}/libixml.so\n%{_libdir}/libthreadutil.so\n%{_libdir}/libupnp.so\n%{_includedir}/upnp/\n\n%changelog</textarea></div>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code2\"), {\n        mode: {name: \"rpm-spec\"},\n        lineNumbers: true,\n        indentUnit: 4\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-rpm-spec</code>, <code>text/x-rpm-changes</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/rpm/rpm.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"rpm-changes\", function() {\n  var headerSeperator = /^-+$/;\n  var headerLine = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)  ?\\d{1,2} \\d{2}:\\d{2}(:\\d{2})? [A-Z]{3,4} \\d{4} - /;\n  var simpleEmail = /^[\\w+.-]+@[\\w.-]+/;\n\n  return {\n    token: function(stream) {\n      if (stream.sol()) {\n        if (stream.match(headerSeperator)) { return 'tag'; }\n        if (stream.match(headerLine)) { return 'tag'; }\n      }\n      if (stream.match(simpleEmail)) { return 'string'; }\n      stream.next();\n      return null;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-rpm-changes\", \"rpm-changes\");\n\n// Quick and dirty spec file highlighting\n\nCodeMirror.defineMode(\"rpm-spec\", function() {\n  var arch = /^(i386|i586|i686|x86_64|ppc64|ppc|ia64|s390x|s390|sparc64|sparcv9|sparc|noarch|alphaev6|alpha|hppa|mipsel)/;\n\n  var preamble = /^(Name|Version|Release|License|Summary|Url|Group|Source|BuildArch|BuildRequires|BuildRoot|AutoReqProv|Provides|Requires(\\(\\w+\\))?|Obsoletes|Conflicts|Recommends|Source\\d*|Patch\\d*|ExclusiveArch|NoSource|Supplements):/;\n  var section = /^%(debug_package|package|description|prep|build|install|files|clean|changelog|preinstall|preun|postinstall|postun|pre|post|triggerin|triggerun|pretrans|posttrans|verifyscript|check|triggerpostun|triggerprein|trigger)/;\n  var control_flow_complex = /^%(ifnarch|ifarch|if)/; // rpm control flow macros\n  var control_flow_simple = /^%(else|endif)/; // rpm control flow macros\n  var operators = /^(\\!|\\?|\\<\\=|\\<|\\>\\=|\\>|\\=\\=|\\&\\&|\\|\\|)/; // operators in control flow macros\n\n  return {\n    startState: function () {\n        return {\n          controlFlow: false,\n          macroParameters: false,\n          section: false\n        };\n    },\n    token: function (stream, state) {\n      var ch = stream.peek();\n      if (ch == \"#\") { stream.skipToEnd(); return \"comment\"; }\n\n      if (stream.sol()) {\n        if (stream.match(preamble)) { return \"preamble\"; }\n        if (stream.match(section)) { return \"section\"; }\n      }\n\n      if (stream.match(/^\\$\\w+/)) { return \"def\"; } // Variables like '$RPM_BUILD_ROOT'\n      if (stream.match(/^\\$\\{\\w+\\}/)) { return \"def\"; } // Variables like '${RPM_BUILD_ROOT}'\n\n      if (stream.match(control_flow_simple)) { return \"keyword\"; }\n      if (stream.match(control_flow_complex)) {\n        state.controlFlow = true;\n        return \"keyword\";\n      }\n      if (state.controlFlow) {\n        if (stream.match(operators)) { return \"operator\"; }\n        if (stream.match(/^(\\d+)/)) { return \"number\"; }\n        if (stream.eol()) { state.controlFlow = false; }\n      }\n\n      if (stream.match(arch)) { return \"number\"; }\n\n      // Macros like '%make_install' or '%attr(0775,root,root)'\n      if (stream.match(/^%[\\w]+/)) {\n        if (stream.match(/^\\(/)) { state.macroParameters = true; }\n        return \"macro\";\n      }\n      if (state.macroParameters) {\n        if (stream.match(/^\\d+/)) { return \"number\";}\n        if (stream.match(/^\\)/)) {\n          state.macroParameters = false;\n          return \"macro\";\n        }\n      }\n      if (stream.match(/^%\\{\\??[\\w \\-]+\\}/)) { return \"macro\"; } // Macros like '%{defined fedora}'\n\n      //TODO: Include bash script sub-parser (CodeMirror supports that)\n      stream.next();\n      return null;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-rpm-spec\", \"rpm-spec\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/rst/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: reStructuredText mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/mode/overlay.js\"></script>\n<script src=\"rst.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">reStructuredText</a>\n  </ul>\n</div>\n\n<article>\n<h2>reStructuredText mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n.. This is an excerpt from Sphinx documentation: http://sphinx.pocoo.org/_sources/rest.txt\n\n.. highlightlang:: rest\n\n.. _rst-primer:\n\nreStructuredText Primer\n=======================\n\nThis section is a brief introduction to reStructuredText (reST) concepts and\nsyntax, intended to provide authors with enough information to author documents\nproductively.  Since reST was designed to be a simple, unobtrusive markup\nlanguage, this will not take too long.\n\n.. seealso::\n\n   The authoritative `reStructuredText User Documentation\n   &lt;http://docutils.sourceforge.net/rst.html&gt;`_.  The \"ref\" links in this\n   document link to the description of the individual constructs in the reST\n   reference.\n\n\nParagraphs\n----------\n\nThe paragraph (:duref:`ref &lt;paragraphs&gt;`) is the most basic block in a reST\ndocument.  Paragraphs are simply chunks of text separated by one or more blank\nlines.  As in Python, indentation is significant in reST, so all lines of the\nsame paragraph must be left-aligned to the same level of indentation.\n\n\n.. _inlinemarkup:\n\nInline markup\n-------------\n\nThe standard reST inline markup is quite simple: use\n\n* one asterisk: ``*text*`` for emphasis (italics),\n* two asterisks: ``**text**`` for strong emphasis (boldface), and\n* backquotes: ````text```` for code samples.\n\nIf asterisks or backquotes appear in running text and could be confused with\ninline markup delimiters, they have to be escaped with a backslash.\n\nBe aware of some restrictions of this markup:\n\n* it may not be nested,\n* content may not start or end with whitespace: ``* text*`` is wrong,\n* it must be separated from surrounding text by non-word characters.  Use a\n  backslash escaped space to work around that: ``thisis\\ *one*\\ word``.\n\nThese restrictions may be lifted in future versions of the docutils.\n\nreST also allows for custom \"interpreted text roles\"', which signify that the\nenclosed text should be interpreted in a specific way.  Sphinx uses this to\nprovide semantic markup and cross-referencing of identifiers, as described in\nthe appropriate section.  The general syntax is ``:rolename:`content```.\n\nStandard reST provides the following roles:\n\n* :durole:`emphasis` -- alternate spelling for ``*emphasis*``\n* :durole:`strong` -- alternate spelling for ``**strong**``\n* :durole:`literal` -- alternate spelling for ````literal````\n* :durole:`subscript` -- subscript text\n* :durole:`superscript` -- superscript text\n* :durole:`title-reference` -- for titles of books, periodicals, and other\n  materials\n\nSee :ref:`inline-markup` for roles added by Sphinx.\n\n\nLists and Quote-like blocks\n---------------------------\n\nList markup (:duref:`ref &lt;bullet-lists&gt;`) is natural: just place an asterisk at\nthe start of a paragraph and indent properly.  The same goes for numbered lists;\nthey can also be autonumbered using a ``#`` sign::\n\n   * This is a bulleted list.\n   * It has two items, the second\n     item uses two lines.\n\n   1. This is a numbered list.\n   2. It has two items too.\n\n   #. This is a numbered list.\n   #. It has two items too.\n\n\nNested lists are possible, but be aware that they must be separated from the\nparent list items by blank lines::\n\n   * this is\n   * a list\n\n     * with a nested list\n     * and some subitems\n\n   * and here the parent list continues\n\nDefinition lists (:duref:`ref &lt;definition-lists&gt;`) are created as follows::\n\n   term (up to a line of text)\n      Definition of the term, which must be indented\n\n      and can even consist of multiple paragraphs\n\n   next term\n      Description.\n\nNote that the term cannot have more than one line of text.\n\nQuoted paragraphs (:duref:`ref &lt;block-quotes&gt;`) are created by just indenting\nthem more than the surrounding paragraphs.\n\nLine blocks (:duref:`ref &lt;line-blocks&gt;`) are a way of preserving line breaks::\n\n   | These lines are\n   | broken exactly like in\n   | the source file.\n\nThere are also several more special blocks available:\n\n* field lists (:duref:`ref &lt;field-lists&gt;`)\n* option lists (:duref:`ref &lt;option-lists&gt;`)\n* quoted literal blocks (:duref:`ref &lt;quoted-literal-blocks&gt;`)\n* doctest blocks (:duref:`ref &lt;doctest-blocks&gt;`)\n\n\nSource Code\n-----------\n\nLiteral code blocks (:duref:`ref &lt;literal-blocks&gt;`) are introduced by ending a\nparagraph with the special marker ``::``.  The literal block must be indented\n(and, like all paragraphs, separated from the surrounding ones by blank lines)::\n\n   This is a normal text paragraph. The next paragraph is a code sample::\n\n      It is not processed in any way, except\n      that the indentation is removed.\n\n      It can span multiple lines.\n\n   This is a normal text paragraph again.\n\nThe handling of the ``::`` marker is smart:\n\n* If it occurs as a paragraph of its own, that paragraph is completely left\n  out of the document.\n* If it is preceded by whitespace, the marker is removed.\n* If it is preceded by non-whitespace, the marker is replaced by a single\n  colon.\n\nThat way, the second sentence in the above example's first paragraph would be\nrendered as \"The next paragraph is a code sample:\".\n\n\n.. _rst-tables:\n\nTables\n------\n\nTwo forms of tables are supported.  For *grid tables* (:duref:`ref\n&lt;grid-tables&gt;`), you have to \"paint\" the cell grid yourself.  They look like\nthis::\n\n   +------------------------+------------+----------+----------+\n   | Header row, column 1   | Header 2   | Header 3 | Header 4 |\n   | (header rows optional) |            |          |          |\n   +========================+============+==========+==========+\n   | body row 1, column 1   | column 2   | column 3 | column 4 |\n   +------------------------+------------+----------+----------+\n   | body row 2             | ...        | ...      |          |\n   +------------------------+------------+----------+----------+\n\n*Simple tables* (:duref:`ref &lt;simple-tables&gt;`) are easier to write, but\nlimited: they must contain more than one row, and the first column cannot\ncontain multiple lines.  They look like this::\n\n   =====  =====  =======\n   A      B      A and B\n   =====  =====  =======\n   False  False  False\n   True   False  False\n   False  True   False\n   True   True   True\n   =====  =====  =======\n\n\nHyperlinks\n----------\n\nExternal links\n^^^^^^^^^^^^^^\n\nUse ```Link text &lt;http://example.com/&gt;`_`` for inline web links.  If the link\ntext should be the web address, you don't need special markup at all, the parser\nfinds links and mail addresses in ordinary text.\n\nYou can also separate the link and the target definition (:duref:`ref\n&lt;hyperlink-targets&gt;`), like this::\n\n   This is a paragraph that contains `a link`_.\n\n   .. _a link: http://example.com/\n\n\nInternal links\n^^^^^^^^^^^^^^\n\nInternal linking is done via a special reST role provided by Sphinx, see the\nsection on specific markup, :ref:`ref-role`.\n\n\nSections\n--------\n\nSection headers (:duref:`ref &lt;sections&gt;`) are created by underlining (and\noptionally overlining) the section title with a punctuation character, at least\nas long as the text::\n\n   =================\n   This is a heading\n   =================\n\nNormally, there are no heading levels assigned to certain characters as the\nstructure is determined from the succession of headings.  However, for the\nPython documentation, this convention is used which you may follow:\n\n* ``#`` with overline, for parts\n* ``*`` with overline, for chapters\n* ``=``, for sections\n* ``-``, for subsections\n* ``^``, for subsubsections\n* ``\"``, for paragraphs\n\nOf course, you are free to use your own marker characters (see the reST\ndocumentation), and use a deeper nesting level, but keep in mind that most\ntarget formats (HTML, LaTeX) have a limited supported nesting depth.\n\n\nExplicit Markup\n---------------\n\n\"Explicit markup\" (:duref:`ref &lt;explicit-markup-blocks&gt;`) is used in reST for\nmost constructs that need special handling, such as footnotes,\nspecially-highlighted paragraphs, comments, and generic directives.\n\nAn explicit markup block begins with a line starting with ``..`` followed by\nwhitespace and is terminated by the next paragraph at the same level of\nindentation.  (There needs to be a blank line between explicit markup and normal\nparagraphs.  This may all sound a bit complicated, but it is intuitive enough\nwhen you write it.)\n\n\n.. _directives:\n\nDirectives\n----------\n\nA directive (:duref:`ref &lt;directives&gt;`) is a generic block of explicit markup.\nBesides roles, it is one of the extension mechanisms of reST, and Sphinx makes\nheavy use of it.\n\nDocutils supports the following directives:\n\n* Admonitions: :dudir:`attention`, :dudir:`caution`, :dudir:`danger`,\n  :dudir:`error`, :dudir:`hint`, :dudir:`important`, :dudir:`note`,\n  :dudir:`tip`, :dudir:`warning` and the generic :dudir:`admonition`.\n  (Most themes style only \"note\" and \"warning\" specially.)\n\n* Images:\n\n  - :dudir:`image` (see also Images_ below)\n  - :dudir:`figure` (an image with caption and optional legend)\n\n* Additional body elements:\n\n  - :dudir:`contents` (a local, i.e. for the current file only, table of\n    contents)\n  - :dudir:`container` (a container with a custom class, useful to generate an\n    outer ``&lt;div&gt;`` in HTML)\n  - :dudir:`rubric` (a heading without relation to the document sectioning)\n  - :dudir:`topic`, :dudir:`sidebar` (special highlighted body elements)\n  - :dudir:`parsed-literal` (literal block that supports inline markup)\n  - :dudir:`epigraph` (a block quote with optional attribution line)\n  - :dudir:`highlights`, :dudir:`pull-quote` (block quotes with their own\n    class attribute)\n  - :dudir:`compound` (a compound paragraph)\n\n* Special tables:\n\n  - :dudir:`table` (a table with title)\n  - :dudir:`csv-table` (a table generated from comma-separated values)\n  - :dudir:`list-table` (a table generated from a list of lists)\n\n* Special directives:\n\n  - :dudir:`raw` (include raw target-format markup)\n  - :dudir:`include` (include reStructuredText from another file)\n    -- in Sphinx, when given an absolute include file path, this directive takes\n    it as relative to the source directory\n  - :dudir:`class` (assign a class attribute to the next element) [1]_\n\n* HTML specifics:\n\n  - :dudir:`meta` (generation of HTML ``&lt;meta&gt;`` tags)\n  - :dudir:`title` (override document title)\n\n* Influencing markup:\n\n  - :dudir:`default-role` (set a new default role)\n  - :dudir:`role` (create a new role)\n\n  Since these are only per-file, better use Sphinx' facilities for setting the\n  :confval:`default_role`.\n\nDo *not* use the directives :dudir:`sectnum`, :dudir:`header` and\n:dudir:`footer`.\n\nDirectives added by Sphinx are described in :ref:`sphinxmarkup`.\n\nBasically, a directive consists of a name, arguments, options and content. (Keep\nthis terminology in mind, it is used in the next chapter describing custom\ndirectives.)  Looking at this example, ::\n\n   .. function:: foo(x)\n                 foo(y, z)\n      :module: some.module.name\n\n      Return a line of text input from the user.\n\n``function`` is the directive name.  It is given two arguments here, the\nremainder of the first line and the second line, as well as one option\n``module`` (as you can see, options are given in the lines immediately following\nthe arguments and indicated by the colons).  Options must be indented to the\nsame level as the directive content.\n\nThe directive content follows after a blank line and is indented relative to the\ndirective start.\n\n\nImages\n------\n\nreST supports an image directive (:dudir:`ref &lt;image&gt;`), used like so::\n\n   .. image:: gnu.png\n      (options)\n\nWhen used within Sphinx, the file name given (here ``gnu.png``) must either be\nrelative to the source file, or absolute which means that they are relative to\nthe top source directory.  For example, the file ``sketch/spam.rst`` could refer\nto the image ``images/spam.png`` as ``../images/spam.png`` or\n``/images/spam.png``.\n\nSphinx will automatically copy image files over to a subdirectory of the output\ndirectory on building (e.g. the ``_static`` directory for HTML output.)\n\nInterpretation of image size options (``width`` and ``height``) is as follows:\nif the size has no unit or the unit is pixels, the given size will only be\nrespected for output channels that support pixels (i.e. not in LaTeX output).\nOther units (like ``pt`` for points) will be used for HTML and LaTeX output.\n\nSphinx extends the standard docutils behavior by allowing an asterisk for the\nextension::\n\n   .. image:: gnu.*\n\nSphinx then searches for all images matching the provided pattern and determines\ntheir type.  Each builder then chooses the best image out of these candidates.\nFor instance, if the file name ``gnu.*`` was given and two files :file:`gnu.pdf`\nand :file:`gnu.png` existed in the source tree, the LaTeX builder would choose\nthe former, while the HTML builder would prefer the latter.\n\n.. versionchanged:: 0.4\n   Added the support for file names ending in an asterisk.\n\n.. versionchanged:: 0.6\n   Image paths can now be absolute.\n\n\nFootnotes\n---------\n\nFor footnotes (:duref:`ref &lt;footnotes&gt;`), use ``[#name]_`` to mark the footnote\nlocation, and add the footnote body at the bottom of the document after a\n\"Footnotes\" rubric heading, like so::\n\n   Lorem ipsum [#f1]_ dolor sit amet ... [#f2]_\n\n   .. rubric:: Footnotes\n\n   .. [#f1] Text of the first footnote.\n   .. [#f2] Text of the second footnote.\n\nYou can also explicitly number the footnotes (``[1]_``) or use auto-numbered\nfootnotes without names (``[#]_``).\n\n\nCitations\n---------\n\nStandard reST citations (:duref:`ref &lt;citations&gt;`) are supported, with the\nadditional feature that they are \"global\", i.e. all citations can be referenced\nfrom all files.  Use them like so::\n\n   Lorem ipsum [Ref]_ dolor sit amet.\n\n   .. [Ref] Book or article reference, URL or whatever.\n\nCitation usage is similar to footnote usage, but with a label that is not\nnumeric or begins with ``#``.\n\n\nSubstitutions\n-------------\n\nreST supports \"substitutions\" (:duref:`ref &lt;substitution-definitions&gt;`), which\nare pieces of text and/or markup referred to in the text by ``|name|``.  They\nare defined like footnotes with explicit markup blocks, like this::\n\n   .. |name| replace:: replacement *text*\n\nor this::\n\n   .. |caution| image:: warning.png\n                :alt: Warning!\n\nSee the :duref:`reST reference for substitutions &lt;substitution-definitions&gt;`\nfor details.\n\nIf you want to use some substitutions for all documents, put them into\n:confval:`rst_prolog` or put them into a separate file and include it into all\ndocuments you want to use them in, using the :rst:dir:`include` directive.  (Be\nsure to give the include file a file name extension differing from that of other\nsource files, to avoid Sphinx finding it as a standalone document.)\n\nSphinx defines some default substitutions, see :ref:`default-substitutions`.\n\n\nComments\n--------\n\nEvery explicit markup block which isn't a valid markup construct (like the\nfootnotes above) is regarded as a comment (:duref:`ref &lt;comments&gt;`).  For\nexample::\n\n   .. This is a comment.\n\nYou can indent text after a comment start to form multiline comments::\n\n   ..\n      This whole indented block\n      is a comment.\n\n      Still in the comment.\n\n\nSource encoding\n---------------\n\nSince the easiest way to include special characters like em dashes or copyright\nsigns in reST is to directly write them as Unicode characters, one has to\nspecify an encoding.  Sphinx assumes source files to be encoded in UTF-8 by\ndefault; you can change this with the :confval:`source_encoding` config value.\n\n\nGotchas\n-------\n\nThere are some problems one commonly runs into while authoring reST documents:\n\n* **Separation of inline markup:** As said above, inline markup spans must be\n  separated from the surrounding text by non-word characters, you have to use a\n  backslash-escaped space to get around that.  See `the reference\n  &lt;http://docutils.sf.net/docs/ref/rst/restructuredtext.html#inline-markup&gt;`_\n  for the details.\n\n* **No nested inline markup:** Something like ``*see :func:`foo`*`` is not\n  possible.\n\n\n.. rubric:: Footnotes\n\n.. [1] When the default domain contains a :rst:dir:`class` directive, this directive\n       will be shadowed.  Therefore, Sphinx re-exports it as :rst:dir:`rst-class`.\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n      });\n    </script>\n    <p>\n        The <code>python</code> mode will be used for highlighting blocks\n        containing Python/IPython terminal sessions: blocks starting with\n        <code>&gt;&gt;&gt;</code> (for Python) or <code>In [num]:</code> (for\n        IPython).\n\n        Further, the <code>stex</code> mode will be used for highlighting\n        blocks containing LaTex code.\n    </p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-rst</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/rst/rst.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../python/python\"), require(\"../stex/stex\"), require(\"../../addon/mode/overlay\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../python/python\", \"../stex/stex\", \"../../addon/mode/overlay\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode('rst', function (config, options) {\n\n  var rx_strong = /^\\*\\*[^\\*\\s](?:[^\\*]*[^\\*\\s])?\\*\\*/;\n  var rx_emphasis = /^\\*[^\\*\\s](?:[^\\*]*[^\\*\\s])?\\*/;\n  var rx_literal = /^``[^`\\s](?:[^`]*[^`\\s])``/;\n\n  var rx_number = /^(?:[\\d]+(?:[\\.,]\\d+)*)/;\n  var rx_positive = /^(?:\\s\\+[\\d]+(?:[\\.,]\\d+)*)/;\n  var rx_negative = /^(?:\\s\\-[\\d]+(?:[\\.,]\\d+)*)/;\n\n  var rx_uri_protocol = \"[Hh][Tt][Tt][Pp][Ss]?://\";\n  var rx_uri_domain = \"(?:[\\\\d\\\\w.-]+)\\\\.(?:\\\\w{2,6})\";\n  var rx_uri_path = \"(?:/[\\\\d\\\\w\\\\#\\\\%\\\\&\\\\-\\\\.\\\\,\\\\/\\\\:\\\\=\\\\?\\\\~]+)*\";\n  var rx_uri = new RegExp(\"^\" + rx_uri_protocol + rx_uri_domain + rx_uri_path);\n\n  var overlay = {\n    token: function (stream) {\n\n      if (stream.match(rx_strong) && stream.match (/\\W+|$/, false))\n        return 'strong';\n      if (stream.match(rx_emphasis) && stream.match (/\\W+|$/, false))\n        return 'em';\n      if (stream.match(rx_literal) && stream.match (/\\W+|$/, false))\n        return 'string-2';\n      if (stream.match(rx_number))\n        return 'number';\n      if (stream.match(rx_positive))\n        return 'positive';\n      if (stream.match(rx_negative))\n        return 'negative';\n      if (stream.match(rx_uri))\n        return 'link';\n\n      while (stream.next() != null) {\n        if (stream.match(rx_strong, false)) break;\n        if (stream.match(rx_emphasis, false)) break;\n        if (stream.match(rx_literal, false)) break;\n        if (stream.match(rx_number, false)) break;\n        if (stream.match(rx_positive, false)) break;\n        if (stream.match(rx_negative, false)) break;\n        if (stream.match(rx_uri, false)) break;\n      }\n\n      return null;\n    }\n  };\n\n  var mode = CodeMirror.getMode(\n    config, options.backdrop || 'rst-base'\n  );\n\n  return CodeMirror.overlayMode(mode, overlay, true); // combine\n}, 'python', 'stex');\n\n///////////////////////////////////////////////////////////////////////////////\n///////////////////////////////////////////////////////////////////////////////\n\nCodeMirror.defineMode('rst-base', function (config) {\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  function format(string) {\n    var args = Array.prototype.slice.call(arguments, 1);\n    return string.replace(/{(\\d+)}/g, function (match, n) {\n      return typeof args[n] != 'undefined' ? args[n] : match;\n    });\n  }\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  var mode_python = CodeMirror.getMode(config, 'python');\n  var mode_stex = CodeMirror.getMode(config, 'stex');\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  var SEPA = \"\\\\s+\";\n  var TAIL = \"(?:\\\\s*|\\\\W|$)\",\n  rx_TAIL = new RegExp(format('^{0}', TAIL));\n\n  var NAME =\n    \"(?:[^\\\\W\\\\d_](?:[\\\\w!\\\"#$%&'()\\\\*\\\\+,\\\\-\\\\.\\/:;<=>\\\\?]*[^\\\\W_])?)\",\n  rx_NAME = new RegExp(format('^{0}', NAME));\n  var NAME_WWS =\n    \"(?:[^\\\\W\\\\d_](?:[\\\\w\\\\s!\\\"#$%&'()\\\\*\\\\+,\\\\-\\\\.\\/:;<=>\\\\?]*[^\\\\W_])?)\";\n  var REF_NAME = format('(?:{0}|`{1}`)', NAME, NAME_WWS);\n\n  var TEXT1 = \"(?:[^\\\\s\\\\|](?:[^\\\\|]*[^\\\\s\\\\|])?)\";\n  var TEXT2 = \"(?:[^\\\\`]+)\",\n  rx_TEXT2 = new RegExp(format('^{0}', TEXT2));\n\n  var rx_section = new RegExp(\n    \"^([!'#$%&\\\"()*+,-./:;<=>?@\\\\[\\\\\\\\\\\\]^_`{|}~])\\\\1{3,}\\\\s*$\");\n  var rx_explicit = new RegExp(\n    format('^\\\\.\\\\.{0}', SEPA));\n  var rx_link = new RegExp(\n    format('^_{0}:{1}|^__:{1}', REF_NAME, TAIL));\n  var rx_directive = new RegExp(\n    format('^{0}::{1}', REF_NAME, TAIL));\n  var rx_substitution = new RegExp(\n    format('^\\\\|{0}\\\\|{1}{2}::{3}', TEXT1, SEPA, REF_NAME, TAIL));\n  var rx_footnote = new RegExp(\n    format('^\\\\[(?:\\\\d+|#{0}?|\\\\*)]{1}', REF_NAME, TAIL));\n  var rx_citation = new RegExp(\n    format('^\\\\[{0}\\\\]{1}', REF_NAME, TAIL));\n\n  var rx_substitution_ref = new RegExp(\n    format('^\\\\|{0}\\\\|', TEXT1));\n  var rx_footnote_ref = new RegExp(\n    format('^\\\\[(?:\\\\d+|#{0}?|\\\\*)]_', REF_NAME));\n  var rx_citation_ref = new RegExp(\n    format('^\\\\[{0}\\\\]_', REF_NAME));\n  var rx_link_ref1 = new RegExp(\n    format('^{0}__?', REF_NAME));\n  var rx_link_ref2 = new RegExp(\n    format('^`{0}`_', TEXT2));\n\n  var rx_role_pre = new RegExp(\n    format('^:{0}:`{1}`{2}', NAME, TEXT2, TAIL));\n  var rx_role_suf = new RegExp(\n    format('^`{1}`:{0}:{2}', NAME, TEXT2, TAIL));\n  var rx_role = new RegExp(\n    format('^:{0}:{1}', NAME, TAIL));\n\n  var rx_directive_name = new RegExp(format('^{0}', REF_NAME));\n  var rx_directive_tail = new RegExp(format('^::{0}', TAIL));\n  var rx_substitution_text = new RegExp(format('^\\\\|{0}\\\\|', TEXT1));\n  var rx_substitution_sepa = new RegExp(format('^{0}', SEPA));\n  var rx_substitution_name = new RegExp(format('^{0}', REF_NAME));\n  var rx_substitution_tail = new RegExp(format('^::{0}', TAIL));\n  var rx_link_head = new RegExp(\"^_\");\n  var rx_link_name = new RegExp(format('^{0}|_', REF_NAME));\n  var rx_link_tail = new RegExp(format('^:{0}', TAIL));\n\n  var rx_verbatim = new RegExp('^::\\\\s*$');\n  var rx_examples = new RegExp('^\\\\s+(?:>>>|In \\\\[\\\\d+\\\\]:)\\\\s');\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  function to_normal(stream, state) {\n    var token = null;\n\n    if (stream.sol() && stream.match(rx_examples, false)) {\n      change(state, to_mode, {\n        mode: mode_python, local: CodeMirror.startState(mode_python)\n      });\n    } else if (stream.sol() && stream.match(rx_explicit)) {\n      change(state, to_explicit);\n      token = 'meta';\n    } else if (stream.sol() && stream.match(rx_section)) {\n      change(state, to_normal);\n      token = 'header';\n    } else if (phase(state) == rx_role_pre ||\n               stream.match(rx_role_pre, false)) {\n\n      switch (stage(state)) {\n      case 0:\n        change(state, to_normal, context(rx_role_pre, 1));\n        stream.match(/^:/);\n        token = 'meta';\n        break;\n      case 1:\n        change(state, to_normal, context(rx_role_pre, 2));\n        stream.match(rx_NAME);\n        token = 'keyword';\n\n        if (stream.current().match(/^(?:math|latex)/)) {\n          state.tmp_stex = true;\n        }\n        break;\n      case 2:\n        change(state, to_normal, context(rx_role_pre, 3));\n        stream.match(/^:`/);\n        token = 'meta';\n        break;\n      case 3:\n        if (state.tmp_stex) {\n          state.tmp_stex = undefined; state.tmp = {\n            mode: mode_stex, local: CodeMirror.startState(mode_stex)\n          };\n        }\n\n        if (state.tmp) {\n          if (stream.peek() == '`') {\n            change(state, to_normal, context(rx_role_pre, 4));\n            state.tmp = undefined;\n            break;\n          }\n\n          token = state.tmp.mode.token(stream, state.tmp.local);\n          break;\n        }\n\n        change(state, to_normal, context(rx_role_pre, 4));\n        stream.match(rx_TEXT2);\n        token = 'string';\n        break;\n      case 4:\n        change(state, to_normal, context(rx_role_pre, 5));\n        stream.match(/^`/);\n        token = 'meta';\n        break;\n      case 5:\n        change(state, to_normal, context(rx_role_pre, 6));\n        stream.match(rx_TAIL);\n        break;\n      default:\n        change(state, to_normal);\n      }\n    } else if (phase(state) == rx_role_suf ||\n               stream.match(rx_role_suf, false)) {\n\n      switch (stage(state)) {\n      case 0:\n        change(state, to_normal, context(rx_role_suf, 1));\n        stream.match(/^`/);\n        token = 'meta';\n        break;\n      case 1:\n        change(state, to_normal, context(rx_role_suf, 2));\n        stream.match(rx_TEXT2);\n        token = 'string';\n        break;\n      case 2:\n        change(state, to_normal, context(rx_role_suf, 3));\n        stream.match(/^`:/);\n        token = 'meta';\n        break;\n      case 3:\n        change(state, to_normal, context(rx_role_suf, 4));\n        stream.match(rx_NAME);\n        token = 'keyword';\n        break;\n      case 4:\n        change(state, to_normal, context(rx_role_suf, 5));\n        stream.match(/^:/);\n        token = 'meta';\n        break;\n      case 5:\n        change(state, to_normal, context(rx_role_suf, 6));\n        stream.match(rx_TAIL);\n        break;\n      default:\n        change(state, to_normal);\n      }\n    } else if (phase(state) == rx_role || stream.match(rx_role, false)) {\n\n      switch (stage(state)) {\n      case 0:\n        change(state, to_normal, context(rx_role, 1));\n        stream.match(/^:/);\n        token = 'meta';\n        break;\n      case 1:\n        change(state, to_normal, context(rx_role, 2));\n        stream.match(rx_NAME);\n        token = 'keyword';\n        break;\n      case 2:\n        change(state, to_normal, context(rx_role, 3));\n        stream.match(/^:/);\n        token = 'meta';\n        break;\n      case 3:\n        change(state, to_normal, context(rx_role, 4));\n        stream.match(rx_TAIL);\n        break;\n      default:\n        change(state, to_normal);\n      }\n    } else if (phase(state) == rx_substitution_ref ||\n               stream.match(rx_substitution_ref, false)) {\n\n      switch (stage(state)) {\n      case 0:\n        change(state, to_normal, context(rx_substitution_ref, 1));\n        stream.match(rx_substitution_text);\n        token = 'variable-2';\n        break;\n      case 1:\n        change(state, to_normal, context(rx_substitution_ref, 2));\n        if (stream.match(/^_?_?/)) token = 'link';\n        break;\n      default:\n        change(state, to_normal);\n      }\n    } else if (stream.match(rx_footnote_ref)) {\n      change(state, to_normal);\n      token = 'quote';\n    } else if (stream.match(rx_citation_ref)) {\n      change(state, to_normal);\n      token = 'quote';\n    } else if (stream.match(rx_link_ref1)) {\n      change(state, to_normal);\n      if (!stream.peek() || stream.peek().match(/^\\W$/)) {\n        token = 'link';\n      }\n    } else if (phase(state) == rx_link_ref2 ||\n               stream.match(rx_link_ref2, false)) {\n\n      switch (stage(state)) {\n      case 0:\n        if (!stream.peek() || stream.peek().match(/^\\W$/)) {\n          change(state, to_normal, context(rx_link_ref2, 1));\n        } else {\n          stream.match(rx_link_ref2);\n        }\n        break;\n      case 1:\n        change(state, to_normal, context(rx_link_ref2, 2));\n        stream.match(/^`/);\n        token = 'link';\n        break;\n      case 2:\n        change(state, to_normal, context(rx_link_ref2, 3));\n        stream.match(rx_TEXT2);\n        break;\n      case 3:\n        change(state, to_normal, context(rx_link_ref2, 4));\n        stream.match(/^`_/);\n        token = 'link';\n        break;\n      default:\n        change(state, to_normal);\n      }\n    } else if (stream.match(rx_verbatim)) {\n      change(state, to_verbatim);\n    }\n\n    else {\n      if (stream.next()) change(state, to_normal);\n    }\n\n    return token;\n  }\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  function to_explicit(stream, state) {\n    var token = null;\n\n    if (phase(state) == rx_substitution ||\n        stream.match(rx_substitution, false)) {\n\n      switch (stage(state)) {\n      case 0:\n        change(state, to_explicit, context(rx_substitution, 1));\n        stream.match(rx_substitution_text);\n        token = 'variable-2';\n        break;\n      case 1:\n        change(state, to_explicit, context(rx_substitution, 2));\n        stream.match(rx_substitution_sepa);\n        break;\n      case 2:\n        change(state, to_explicit, context(rx_substitution, 3));\n        stream.match(rx_substitution_name);\n        token = 'keyword';\n        break;\n      case 3:\n        change(state, to_explicit, context(rx_substitution, 4));\n        stream.match(rx_substitution_tail);\n        token = 'meta';\n        break;\n      default:\n        change(state, to_normal);\n      }\n    } else if (phase(state) == rx_directive ||\n               stream.match(rx_directive, false)) {\n\n      switch (stage(state)) {\n      case 0:\n        change(state, to_explicit, context(rx_directive, 1));\n        stream.match(rx_directive_name);\n        token = 'keyword';\n\n        if (stream.current().match(/^(?:math|latex)/))\n          state.tmp_stex = true;\n        else if (stream.current().match(/^python/))\n          state.tmp_py = true;\n        break;\n      case 1:\n        change(state, to_explicit, context(rx_directive, 2));\n        stream.match(rx_directive_tail);\n        token = 'meta';\n\n        if (stream.match(/^latex\\s*$/) || state.tmp_stex) {\n          state.tmp_stex = undefined; change(state, to_mode, {\n            mode: mode_stex, local: CodeMirror.startState(mode_stex)\n          });\n        }\n        break;\n      case 2:\n        change(state, to_explicit, context(rx_directive, 3));\n        if (stream.match(/^python\\s*$/) || state.tmp_py) {\n          state.tmp_py = undefined; change(state, to_mode, {\n            mode: mode_python, local: CodeMirror.startState(mode_python)\n          });\n        }\n        break;\n      default:\n        change(state, to_normal);\n      }\n    } else if (phase(state) == rx_link || stream.match(rx_link, false)) {\n\n      switch (stage(state)) {\n      case 0:\n        change(state, to_explicit, context(rx_link, 1));\n        stream.match(rx_link_head);\n        stream.match(rx_link_name);\n        token = 'link';\n        break;\n      case 1:\n        change(state, to_explicit, context(rx_link, 2));\n        stream.match(rx_link_tail);\n        token = 'meta';\n        break;\n      default:\n        change(state, to_normal);\n      }\n    } else if (stream.match(rx_footnote)) {\n      change(state, to_normal);\n      token = 'quote';\n    } else if (stream.match(rx_citation)) {\n      change(state, to_normal);\n      token = 'quote';\n    }\n\n    else {\n      stream.eatSpace();\n      if (stream.eol()) {\n        change(state, to_normal);\n      } else {\n        stream.skipToEnd();\n        change(state, to_comment);\n        token = 'comment';\n      }\n    }\n\n    return token;\n  }\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  function to_comment(stream, state) {\n    return as_block(stream, state, 'comment');\n  }\n\n  function to_verbatim(stream, state) {\n    return as_block(stream, state, 'meta');\n  }\n\n  function as_block(stream, state, token) {\n    if (stream.eol() || stream.eatSpace()) {\n      stream.skipToEnd();\n      return token;\n    } else {\n      change(state, to_normal);\n      return null;\n    }\n  }\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  function to_mode(stream, state) {\n\n    if (state.ctx.mode && state.ctx.local) {\n\n      if (stream.sol()) {\n        if (!stream.eatSpace()) change(state, to_normal);\n        return null;\n      }\n\n      return state.ctx.mode.token(stream, state.ctx.local);\n    }\n\n    change(state, to_normal);\n    return null;\n  }\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  function context(phase, stage, mode, local) {\n    return {phase: phase, stage: stage, mode: mode, local: local};\n  }\n\n  function change(state, tok, ctx) {\n    state.tok = tok;\n    state.ctx = ctx || {};\n  }\n\n  function stage(state) {\n    return state.ctx.stage || 0;\n  }\n\n  function phase(state) {\n    return state.ctx.phase;\n  }\n\n  ///////////////////////////////////////////////////////////////////////////\n  ///////////////////////////////////////////////////////////////////////////\n\n  return {\n    startState: function () {\n      return {tok: to_normal, ctx: context(undefined, 0)};\n    },\n\n    copyState: function (state) {\n      var ctx = state.ctx, tmp = state.tmp;\n      if (ctx.local)\n        ctx = {mode: ctx.mode, local: CodeMirror.copyState(ctx.mode, ctx.local)};\n      if (tmp)\n        tmp = {mode: tmp.mode, local: CodeMirror.copyState(tmp.mode, tmp.local)};\n      return {tok: state.tok, ctx: ctx, tmp: tmp};\n    },\n\n    innerMode: function (state) {\n      return state.tmp      ? {state: state.tmp.local, mode: state.tmp.mode}\n      : state.ctx.mode ? {state: state.ctx.local, mode: state.ctx.mode}\n      : null;\n    },\n\n    token: function (stream, state) {\n      return state.tok(stream, state);\n    }\n  };\n}, 'python', 'stex');\n\n///////////////////////////////////////////////////////////////////////////////\n///////////////////////////////////////////////////////////////////////////////\n\nCodeMirror.defineMIME('text/x-rst', 'rst');\n\n///////////////////////////////////////////////////////////////////////////////\n///////////////////////////////////////////////////////////////////////////////\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/ruby/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Ruby mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"ruby.js\"></script>\n<style>\n      .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}\n      .cm-s-default span.cm-arrow { color: red; }\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Ruby</a>\n  </ul>\n</div>\n\n<article>\n<h2>Ruby mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n# Code from http://sandbox.mc.edu/~bennet/ruby/code/poly_rb.html\n#\n# This program evaluates polynomials.  It first asks for the coefficients\n# of a polynomial, which must be entered on one line, highest-order first.\n# It then requests values of x and will compute the value of the poly for\n# each x.  It will repeatly ask for x values, unless you the user enters\n# a blank line.  It that case, it will ask for another polynomial.  If the\n# user types quit for either input, the program immediately exits.\n#\n\n#\n# Function to evaluate a polynomial at x.  The polynomial is given\n# as a list of coefficients, from the greatest to the least.\ndef polyval(x, coef)\n    sum = 0\n    coef = coef.clone           # Don't want to destroy the original\n    while true\n        sum += coef.shift       # Add and remove the next coef\n        break if coef.empty?    # If no more, done entirely.\n        sum *= x                # This happens the right number of times.\n    end\n    return sum\nend\n\n#\n# Function to read a line containing a list of integers and return\n# them as an array of integers.  If the string conversion fails, it\n# throws TypeError.  If the input line is the word 'quit', then it\n# converts it to an end-of-file exception\ndef readints(prompt)\n    # Read a line\n    print prompt\n    line = readline.chomp\n    raise EOFError.new if line == 'quit' # You can also use a real EOF.\n            \n    # Go through each item on the line, converting each one and adding it\n    # to retval.\n    retval = [ ]\n    for str in line.split(/\\s+/)\n        if str =~ /^\\-?\\d+$/\n            retval.push(str.to_i)\n        else\n            raise TypeError.new\n        end\n    end\n\n    return retval\nend\n\n#\n# Take a coeff and an exponent and return the string representation, ignoring\n# the sign of the coefficient.\ndef term_to_str(coef, exp)\n    ret = \"\"\n\n    # Show coeff, unless it's 1 or at the right\n    coef = coef.abs\n    ret = coef.to_s     unless coef == 1 && exp > 0\n    ret += \"x\" if exp > 0                               # x if exponent not 0\n    ret += \"^\" + exp.to_s if exp > 1                    # ^exponent, if > 1.\n\n    return ret\nend\n\n#\n# Create a string of the polynomial in sort-of-readable form.\ndef polystr(p)\n    # Get the exponent of first coefficient, plus 1.\n    exp = p.length\n\n    # Assign exponents to each term, making pairs of coeff and exponent,\n    # Then get rid of the zero terms.\n    p = (p.map { |c| exp -= 1; [ c, exp ] }).select { |p| p[0] != 0 }\n\n    # If there's nothing left, it's a zero\n    return \"0\" if p.empty?\n\n    # *** Now p is a non-empty list of [ coef, exponent ] pairs. ***\n\n    # Convert the first term, preceded by a \"-\" if it's negative.\n    result = (if p[0][0] < 0 then \"-\" else \"\" end) + term_to_str(*p[0])\n\n    # Convert the rest of the terms, in each case adding the appropriate\n    # + or - separating them.  \n    for term in p[1...p.length]\n        # Add the separator then the rep. of the term.\n        result += (if term[0] < 0 then \" - \" else \" + \" end) + \n                term_to_str(*term)\n    end\n\n    return result\nend\n        \n#\n# Run until some kind of endfile.\nbegin\n    # Repeat until an exception or quit gets us out.\n    while true\n        # Read a poly until it works.  An EOF will except out of the\n        # program.\n        print \"\\n\"\n        begin\n            poly = readints(\"Enter a polynomial coefficients: \")\n        rescue TypeError\n            print \"Try again.\\n\"\n            retry\n        end\n        break if poly.empty?\n\n        # Read and evaluate x values until the user types a blank line.\n        # Again, an EOF will except out of the pgm.\n        while true\n            # Request an integer.\n            print \"Enter x value or blank line: \"\n            x = readline.chomp\n            break if x == ''\n            raise EOFError.new if x == 'quit'\n\n            # If it looks bad, let's try again.\n            if x !~ /^\\-?\\d+$/\n                print \"That doesn't look like an integer.  Please try again.\\n\"\n                next\n            end\n\n            # Convert to an integer and print the result.\n            x = x.to_i\n            print \"p(x) = \", polystr(poly), \"\\n\"\n            print \"p(\", x, \") = \", polyval(x, poly), \"\\n\"\n        end\n    end\nrescue EOFError\n    print \"\\n=== EOF ===\\n\"\nrescue Interrupt, SignalException\n    print \"\\n=== Interrupted ===\\n\"\nelse\n    print \"--- Bye ---\\n\"\nend\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: \"text/x-ruby\",\n        matchBrackets: true,\n        indentUnit: 4\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-ruby</code>.</p>\n\n    <p>Development of the CodeMirror Ruby mode was kindly sponsored\n    by <a href=\"http://ubalo.com/\">Ubalo</a>, who hold\n    the <a href=\"LICENSE\">license</a>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/ruby/ruby.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"ruby\", function(config) {\n  function wordObj(words) {\n    var o = {};\n    for (var i = 0, e = words.length; i < e; ++i) o[words[i]] = true;\n    return o;\n  }\n  var keywords = wordObj([\n    \"alias\", \"and\", \"BEGIN\", \"begin\", \"break\", \"case\", \"class\", \"def\", \"defined?\", \"do\", \"else\",\n    \"elsif\", \"END\", \"end\", \"ensure\", \"false\", \"for\", \"if\", \"in\", \"module\", \"next\", \"not\", \"or\",\n    \"redo\", \"rescue\", \"retry\", \"return\", \"self\", \"super\", \"then\", \"true\", \"undef\", \"unless\",\n    \"until\", \"when\", \"while\", \"yield\", \"nil\", \"raise\", \"throw\", \"catch\", \"fail\", \"loop\", \"callcc\",\n    \"caller\", \"lambda\", \"proc\", \"public\", \"protected\", \"private\", \"require\", \"load\",\n    \"require_relative\", \"extend\", \"autoload\", \"__END__\", \"__FILE__\", \"__LINE__\", \"__dir__\"\n  ]);\n  var indentWords = wordObj([\"def\", \"class\", \"case\", \"for\", \"while\", \"module\", \"then\",\n                             \"catch\", \"loop\", \"proc\", \"begin\"]);\n  var dedentWords = wordObj([\"end\", \"until\"]);\n  var matching = {\"[\": \"]\", \"{\": \"}\", \"(\": \")\"};\n  var curPunc;\n\n  function chain(newtok, stream, state) {\n    state.tokenize.push(newtok);\n    return newtok(stream, state);\n  }\n\n  function tokenBase(stream, state) {\n    curPunc = null;\n    if (stream.sol() && stream.match(\"=begin\") && stream.eol()) {\n      state.tokenize.push(readBlockComment);\n      return \"comment\";\n    }\n    if (stream.eatSpace()) return null;\n    var ch = stream.next(), m;\n    if (ch == \"`\" || ch == \"'\" || ch == '\"') {\n      return chain(readQuoted(ch, \"string\", ch == '\"' || ch == \"`\"), stream, state);\n    } else if (ch == \"/\") {\n      var currentIndex = stream.current().length;\n      if (stream.skipTo(\"/\")) {\n        var search_till = stream.current().length;\n        stream.backUp(stream.current().length - currentIndex);\n        var balance = 0;  // balance brackets\n        while (stream.current().length < search_till) {\n          var chchr = stream.next();\n          if (chchr == \"(\") balance += 1;\n          else if (chchr == \")\") balance -= 1;\n          if (balance < 0) break;\n        }\n        stream.backUp(stream.current().length - currentIndex);\n        if (balance == 0)\n          return chain(readQuoted(ch, \"string-2\", true), stream, state);\n      }\n      return \"operator\";\n    } else if (ch == \"%\") {\n      var style = \"string\", embed = true;\n      if (stream.eat(\"s\")) style = \"atom\";\n      else if (stream.eat(/[WQ]/)) style = \"string\";\n      else if (stream.eat(/[r]/)) style = \"string-2\";\n      else if (stream.eat(/[wxq]/)) { style = \"string\"; embed = false; }\n      var delim = stream.eat(/[^\\w\\s=]/);\n      if (!delim) return \"operator\";\n      if (matching.propertyIsEnumerable(delim)) delim = matching[delim];\n      return chain(readQuoted(delim, style, embed, true), stream, state);\n    } else if (ch == \"#\") {\n      stream.skipToEnd();\n      return \"comment\";\n    } else if (ch == \"<\" && (m = stream.match(/^<-?[\\`\\\"\\']?([a-zA-Z_?]\\w*)[\\`\\\"\\']?(?:;|$)/))) {\n      return chain(readHereDoc(m[1]), stream, state);\n    } else if (ch == \"0\") {\n      if (stream.eat(\"x\")) stream.eatWhile(/[\\da-fA-F]/);\n      else if (stream.eat(\"b\")) stream.eatWhile(/[01]/);\n      else stream.eatWhile(/[0-7]/);\n      return \"number\";\n    } else if (/\\d/.test(ch)) {\n      stream.match(/^[\\d_]*(?:\\.[\\d_]+)?(?:[eE][+\\-]?[\\d_]+)?/);\n      return \"number\";\n    } else if (ch == \"?\") {\n      while (stream.match(/^\\\\[CM]-/)) {}\n      if (stream.eat(\"\\\\\")) stream.eatWhile(/\\w/);\n      else stream.next();\n      return \"string\";\n    } else if (ch == \":\") {\n      if (stream.eat(\"'\")) return chain(readQuoted(\"'\", \"atom\", false), stream, state);\n      if (stream.eat('\"')) return chain(readQuoted('\"', \"atom\", true), stream, state);\n\n      // :> :>> :< :<< are valid symbols\n      if (stream.eat(/[\\<\\>]/)) {\n        stream.eat(/[\\<\\>]/);\n        return \"atom\";\n      }\n\n      // :+ :- :/ :* :| :& :! are valid symbols\n      if (stream.eat(/[\\+\\-\\*\\/\\&\\|\\:\\!]/)) {\n        return \"atom\";\n      }\n\n      // Symbols can't start by a digit\n      if (stream.eat(/[a-zA-Z$@_\\xa1-\\uffff]/)) {\n        stream.eatWhile(/[\\w$\\xa1-\\uffff]/);\n        // Only one ? ! = is allowed and only as the last character\n        stream.eat(/[\\?\\!\\=]/);\n        return \"atom\";\n      }\n      return \"operator\";\n    } else if (ch == \"@\" && stream.match(/^@?[a-zA-Z_\\xa1-\\uffff]/)) {\n      stream.eat(\"@\");\n      stream.eatWhile(/[\\w\\xa1-\\uffff]/);\n      return \"variable-2\";\n    } else if (ch == \"$\") {\n      if (stream.eat(/[a-zA-Z_]/)) {\n        stream.eatWhile(/[\\w]/);\n      } else if (stream.eat(/\\d/)) {\n        stream.eat(/\\d/);\n      } else {\n        stream.next(); // Must be a special global like $: or $!\n      }\n      return \"variable-3\";\n    } else if (/[a-zA-Z_\\xa1-\\uffff]/.test(ch)) {\n      stream.eatWhile(/[\\w\\xa1-\\uffff]/);\n      stream.eat(/[\\?\\!]/);\n      if (stream.eat(\":\")) return \"atom\";\n      return \"ident\";\n    } else if (ch == \"|\" && (state.varList || state.lastTok == \"{\" || state.lastTok == \"do\")) {\n      curPunc = \"|\";\n      return null;\n    } else if (/[\\(\\)\\[\\]{}\\\\;]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    } else if (ch == \"-\" && stream.eat(\">\")) {\n      return \"arrow\";\n    } else if (/[=+\\-\\/*:\\.^%<>~|]/.test(ch)) {\n      var more = stream.eatWhile(/[=+\\-\\/*:\\.^%<>~|]/);\n      if (ch == \".\" && !more) curPunc = \".\";\n      return \"operator\";\n    } else {\n      return null;\n    }\n  }\n\n  function tokenBaseUntilBrace(depth) {\n    if (!depth) depth = 1;\n    return function(stream, state) {\n      if (stream.peek() == \"}\") {\n        if (depth == 1) {\n          state.tokenize.pop();\n          return state.tokenize[state.tokenize.length-1](stream, state);\n        } else {\n          state.tokenize[state.tokenize.length - 1] = tokenBaseUntilBrace(depth - 1);\n        }\n      } else if (stream.peek() == \"{\") {\n        state.tokenize[state.tokenize.length - 1] = tokenBaseUntilBrace(depth + 1);\n      }\n      return tokenBase(stream, state);\n    };\n  }\n  function tokenBaseOnce() {\n    var alreadyCalled = false;\n    return function(stream, state) {\n      if (alreadyCalled) {\n        state.tokenize.pop();\n        return state.tokenize[state.tokenize.length-1](stream, state);\n      }\n      alreadyCalled = true;\n      return tokenBase(stream, state);\n    };\n  }\n  function readQuoted(quote, style, embed, unescaped) {\n    return function(stream, state) {\n      var escaped = false, ch;\n\n      if (state.context.type === 'read-quoted-paused') {\n        state.context = state.context.prev;\n        stream.eat(\"}\");\n      }\n\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && (unescaped || !escaped)) {\n          state.tokenize.pop();\n          break;\n        }\n        if (embed && ch == \"#\" && !escaped) {\n          if (stream.eat(\"{\")) {\n            if (quote == \"}\") {\n              state.context = {prev: state.context, type: 'read-quoted-paused'};\n            }\n            state.tokenize.push(tokenBaseUntilBrace());\n            break;\n          } else if (/[@\\$]/.test(stream.peek())) {\n            state.tokenize.push(tokenBaseOnce());\n            break;\n          }\n        }\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      return style;\n    };\n  }\n  function readHereDoc(phrase) {\n    return function(stream, state) {\n      if (stream.match(phrase)) state.tokenize.pop();\n      else stream.skipToEnd();\n      return \"string\";\n    };\n  }\n  function readBlockComment(stream, state) {\n    if (stream.sol() && stream.match(\"=end\") && stream.eol())\n      state.tokenize.pop();\n    stream.skipToEnd();\n    return \"comment\";\n  }\n\n  return {\n    startState: function() {\n      return {tokenize: [tokenBase],\n              indented: 0,\n              context: {type: \"top\", indented: -config.indentUnit},\n              continuedLine: false,\n              lastTok: null,\n              varList: false};\n    },\n\n    token: function(stream, state) {\n      if (stream.sol()) state.indented = stream.indentation();\n      var style = state.tokenize[state.tokenize.length-1](stream, state), kwtype;\n      var thisTok = curPunc;\n      if (style == \"ident\") {\n        var word = stream.current();\n        style = state.lastTok == \".\" ? \"property\"\n          : keywords.propertyIsEnumerable(stream.current()) ? \"keyword\"\n          : /^[A-Z]/.test(word) ? \"tag\"\n          : (state.lastTok == \"def\" || state.lastTok == \"class\" || state.varList) ? \"def\"\n          : \"variable\";\n        if (style == \"keyword\") {\n          thisTok = word;\n          if (indentWords.propertyIsEnumerable(word)) kwtype = \"indent\";\n          else if (dedentWords.propertyIsEnumerable(word)) kwtype = \"dedent\";\n          else if ((word == \"if\" || word == \"unless\") && stream.column() == stream.indentation())\n            kwtype = \"indent\";\n          else if (word == \"do\" && state.context.indented < state.indented)\n            kwtype = \"indent\";\n        }\n      }\n      if (curPunc || (style && style != \"comment\")) state.lastTok = thisTok;\n      if (curPunc == \"|\") state.varList = !state.varList;\n\n      if (kwtype == \"indent\" || /[\\(\\[\\{]/.test(curPunc))\n        state.context = {prev: state.context, type: curPunc || style, indented: state.indented};\n      else if ((kwtype == \"dedent\" || /[\\)\\]\\}]/.test(curPunc)) && state.context.prev)\n        state.context = state.context.prev;\n\n      if (stream.eol())\n        state.continuedLine = (curPunc == \"\\\\\" || style == \"operator\");\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize[state.tokenize.length-1] != tokenBase) return 0;\n      var firstChar = textAfter && textAfter.charAt(0);\n      var ct = state.context;\n      var closing = ct.type == matching[firstChar] ||\n        ct.type == \"keyword\" && /^(?:end|until|else|elsif|when|rescue)\\b/.test(textAfter);\n      return ct.indented + (closing ? 0 : config.indentUnit) +\n        (state.continuedLine ? config.indentUnit : 0);\n    },\n\n    electricChars: \"}de\", // enD and rescuE\n    lineComment: \"#\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-ruby\", \"ruby\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/ruby/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({indentUnit: 2}, \"ruby\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  MT(\"divide_equal_operator\",\n     \"[variable bar] [operator /=] [variable foo]\");\n\n  MT(\"divide_equal_operator_no_spacing\",\n     \"[variable foo][operator /=][number 42]\");\n\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/rust/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Rust mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"rust.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Rust</a>\n  </ul>\n</div>\n\n<article>\n<h2>Rust mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n// Demo code.\n\ntype foo<T> = int;\nenum bar {\n    some(int, foo<float>),\n    none\n}\n\nfn check_crate(x: int) {\n    let v = 10;\n    alt foo {\n      1 to 3 {\n        print_foo();\n        if x {\n            blah() + 10;\n        }\n      }\n      (x, y) { \"bye\" }\n      _ { \"hi\" }\n    }\n}\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-rustsrc</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/rust/rust.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"rust\", function() {\n  var indentUnit = 4, altIndentUnit = 2;\n  var valKeywords = {\n    \"if\": \"if-style\", \"while\": \"if-style\", \"loop\": \"else-style\", \"else\": \"else-style\",\n    \"do\": \"else-style\", \"ret\": \"else-style\", \"fail\": \"else-style\",\n    \"break\": \"atom\", \"cont\": \"atom\", \"const\": \"let\", \"resource\": \"fn\",\n    \"let\": \"let\", \"fn\": \"fn\", \"for\": \"for\", \"alt\": \"alt\", \"iface\": \"iface\",\n    \"impl\": \"impl\", \"type\": \"type\", \"enum\": \"enum\", \"mod\": \"mod\",\n    \"as\": \"op\", \"true\": \"atom\", \"false\": \"atom\", \"assert\": \"op\", \"check\": \"op\",\n    \"claim\": \"op\", \"native\": \"ignore\", \"unsafe\": \"ignore\", \"import\": \"else-style\",\n    \"export\": \"else-style\", \"copy\": \"op\", \"log\": \"op\", \"log_err\": \"op\",\n    \"use\": \"op\", \"bind\": \"op\", \"self\": \"atom\", \"struct\": \"enum\"\n  };\n  var typeKeywords = function() {\n    var keywords = {\"fn\": \"fn\", \"block\": \"fn\", \"obj\": \"obj\"};\n    var atoms = \"bool uint int i8 i16 i32 i64 u8 u16 u32 u64 float f32 f64 str char\".split(\" \");\n    for (var i = 0, e = atoms.length; i < e; ++i) keywords[atoms[i]] = \"atom\";\n    return keywords;\n  }();\n  var operatorChar = /[+\\-*&%=<>!?|\\.@]/;\n\n  // Tokenizer\n\n  // Used as scratch variable to communicate multiple values without\n  // consing up tons of objects.\n  var tcat, content;\n  function r(tc, style) {\n    tcat = tc;\n    return style;\n  }\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (ch == '\"') {\n      state.tokenize = tokenString;\n      return state.tokenize(stream, state);\n    }\n    if (ch == \"'\") {\n      tcat = \"atom\";\n      if (stream.eat(\"\\\\\")) {\n        if (stream.skipTo(\"'\")) { stream.next(); return \"string\"; }\n        else { return \"error\"; }\n      } else {\n        stream.next();\n        return stream.eat(\"'\") ? \"string\" : \"error\";\n      }\n    }\n    if (ch == \"/\") {\n      if (stream.eat(\"/\")) { stream.skipToEnd(); return \"comment\"; }\n      if (stream.eat(\"*\")) {\n        state.tokenize = tokenComment(1);\n        return state.tokenize(stream, state);\n      }\n    }\n    if (ch == \"#\") {\n      if (stream.eat(\"[\")) { tcat = \"open-attr\"; return null; }\n      stream.eatWhile(/\\w/);\n      return r(\"macro\", \"meta\");\n    }\n    if (ch == \":\" && stream.match(\":<\")) {\n      return r(\"op\", null);\n    }\n    if (ch.match(/\\d/) || (ch == \".\" && stream.eat(/\\d/))) {\n      var flp = false;\n      if (!stream.match(/^x[\\da-f]+/i) && !stream.match(/^b[01]+/)) {\n        stream.eatWhile(/\\d/);\n        if (stream.eat(\".\")) { flp = true; stream.eatWhile(/\\d/); }\n        if (stream.match(/^e[+\\-]?\\d+/i)) { flp = true; }\n      }\n      if (flp) stream.match(/^f(?:32|64)/);\n      else stream.match(/^[ui](?:8|16|32|64)/);\n      return r(\"atom\", \"number\");\n    }\n    if (ch.match(/[()\\[\\]{}:;,]/)) return r(ch, null);\n    if (ch == \"-\" && stream.eat(\">\")) return r(\"->\", null);\n    if (ch.match(operatorChar)) {\n      stream.eatWhile(operatorChar);\n      return r(\"op\", null);\n    }\n    stream.eatWhile(/\\w/);\n    content = stream.current();\n    if (stream.match(/^::\\w/)) {\n      stream.backUp(1);\n      return r(\"prefix\", \"variable-2\");\n    }\n    if (state.keywords.propertyIsEnumerable(content))\n      return r(state.keywords[content], content.match(/true|false/) ? \"atom\" : \"keyword\");\n    return r(\"name\", \"variable\");\n  }\n\n  function tokenString(stream, state) {\n    var ch, escaped = false;\n    while (ch = stream.next()) {\n      if (ch == '\"' && !escaped) {\n        state.tokenize = tokenBase;\n        return r(\"atom\", \"string\");\n      }\n      escaped = !escaped && ch == \"\\\\\";\n    }\n    // Hack to not confuse the parser when a string is split in\n    // pieces.\n    return r(\"op\", \"string\");\n  }\n\n  function tokenComment(depth) {\n    return function(stream, state) {\n      var lastCh = null, ch;\n      while (ch = stream.next()) {\n        if (ch == \"/\" && lastCh == \"*\") {\n          if (depth == 1) {\n            state.tokenize = tokenBase;\n            break;\n          } else {\n            state.tokenize = tokenComment(depth - 1);\n            return state.tokenize(stream, state);\n          }\n        }\n        if (ch == \"*\" && lastCh == \"/\") {\n          state.tokenize = tokenComment(depth + 1);\n          return state.tokenize(stream, state);\n        }\n        lastCh = ch;\n      }\n      return \"comment\";\n    };\n  }\n\n  // Parser\n\n  var cx = {state: null, stream: null, marked: null, cc: null};\n  function pass() {\n    for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);\n  }\n  function cont() {\n    pass.apply(null, arguments);\n    return true;\n  }\n\n  function pushlex(type, info) {\n    var result = function() {\n      var state = cx.state;\n      state.lexical = {indented: state.indented, column: cx.stream.column(),\n                       type: type, prev: state.lexical, info: info};\n    };\n    result.lex = true;\n    return result;\n  }\n  function poplex() {\n    var state = cx.state;\n    if (state.lexical.prev) {\n      if (state.lexical.type == \")\")\n        state.indented = state.lexical.indented;\n      state.lexical = state.lexical.prev;\n    }\n  }\n  function typecx() { cx.state.keywords = typeKeywords; }\n  function valcx() { cx.state.keywords = valKeywords; }\n  poplex.lex = typecx.lex = valcx.lex = true;\n\n  function commasep(comb, end) {\n    function more(type) {\n      if (type == \",\") return cont(comb, more);\n      if (type == end) return cont();\n      return cont(more);\n    }\n    return function(type) {\n      if (type == end) return cont();\n      return pass(comb, more);\n    };\n  }\n\n  function stat_of(comb, tag) {\n    return cont(pushlex(\"stat\", tag), comb, poplex, block);\n  }\n  function block(type) {\n    if (type == \"}\") return cont();\n    if (type == \"let\") return stat_of(letdef1, \"let\");\n    if (type == \"fn\") return stat_of(fndef);\n    if (type == \"type\") return cont(pushlex(\"stat\"), tydef, endstatement, poplex, block);\n    if (type == \"enum\") return stat_of(enumdef);\n    if (type == \"mod\") return stat_of(mod);\n    if (type == \"iface\") return stat_of(iface);\n    if (type == \"impl\") return stat_of(impl);\n    if (type == \"open-attr\") return cont(pushlex(\"]\"), commasep(expression, \"]\"), poplex);\n    if (type == \"ignore\" || type.match(/[\\]\\);,]/)) return cont(block);\n    return pass(pushlex(\"stat\"), expression, poplex, endstatement, block);\n  }\n  function endstatement(type) {\n    if (type == \";\") return cont();\n    return pass();\n  }\n  function expression(type) {\n    if (type == \"atom\" || type == \"name\") return cont(maybeop);\n    if (type == \"{\") return cont(pushlex(\"}\"), exprbrace, poplex);\n    if (type.match(/[\\[\\(]/)) return matchBrackets(type, expression);\n    if (type.match(/[\\]\\)\\};,]/)) return pass();\n    if (type == \"if-style\") return cont(expression, expression);\n    if (type == \"else-style\" || type == \"op\") return cont(expression);\n    if (type == \"for\") return cont(pattern, maybetype, inop, expression, expression);\n    if (type == \"alt\") return cont(expression, altbody);\n    if (type == \"fn\") return cont(fndef);\n    if (type == \"macro\") return cont(macro);\n    return cont();\n  }\n  function maybeop(type) {\n    if (content == \".\") return cont(maybeprop);\n    if (content == \"::<\"){return cont(typarams, maybeop);}\n    if (type == \"op\" || content == \":\") return cont(expression);\n    if (type == \"(\" || type == \"[\") return matchBrackets(type, expression);\n    return pass();\n  }\n  function maybeprop() {\n    if (content.match(/^\\w+$/)) {cx.marked = \"variable\"; return cont(maybeop);}\n    return pass(expression);\n  }\n  function exprbrace(type) {\n    if (type == \"op\") {\n      if (content == \"|\") return cont(blockvars, poplex, pushlex(\"}\", \"block\"), block);\n      if (content == \"||\") return cont(poplex, pushlex(\"}\", \"block\"), block);\n    }\n    if (content == \"mutable\" || (content.match(/^\\w+$/) && cx.stream.peek() == \":\"\n                                 && !cx.stream.match(\"::\", false)))\n      return pass(record_of(expression));\n    return pass(block);\n  }\n  function record_of(comb) {\n    function ro(type) {\n      if (content == \"mutable\" || content == \"with\") {cx.marked = \"keyword\"; return cont(ro);}\n      if (content.match(/^\\w*$/)) {cx.marked = \"variable\"; return cont(ro);}\n      if (type == \":\") return cont(comb, ro);\n      if (type == \"}\") return cont();\n      return cont(ro);\n    }\n    return ro;\n  }\n  function blockvars(type) {\n    if (type == \"name\") {cx.marked = \"def\"; return cont(blockvars);}\n    if (type == \"op\" && content == \"|\") return cont();\n    return cont(blockvars);\n  }\n\n  function letdef1(type) {\n    if (type.match(/[\\]\\)\\};]/)) return cont();\n    if (content == \"=\") return cont(expression, letdef2);\n    if (type == \",\") return cont(letdef1);\n    return pass(pattern, maybetype, letdef1);\n  }\n  function letdef2(type) {\n    if (type.match(/[\\]\\)\\};,]/)) return pass(letdef1);\n    else return pass(expression, letdef2);\n  }\n  function maybetype(type) {\n    if (type == \":\") return cont(typecx, rtype, valcx);\n    return pass();\n  }\n  function inop(type) {\n    if (type == \"name\" && content == \"in\") {cx.marked = \"keyword\"; return cont();}\n    return pass();\n  }\n  function fndef(type) {\n    if (content == \"@\" || content == \"~\") {cx.marked = \"keyword\"; return cont(fndef);}\n    if (type == \"name\") {cx.marked = \"def\"; return cont(fndef);}\n    if (content == \"<\") return cont(typarams, fndef);\n    if (type == \"{\") return pass(expression);\n    if (type == \"(\") return cont(pushlex(\")\"), commasep(argdef, \")\"), poplex, fndef);\n    if (type == \"->\") return cont(typecx, rtype, valcx, fndef);\n    if (type == \";\") return cont();\n    return cont(fndef);\n  }\n  function tydef(type) {\n    if (type == \"name\") {cx.marked = \"def\"; return cont(tydef);}\n    if (content == \"<\") return cont(typarams, tydef);\n    if (content == \"=\") return cont(typecx, rtype, valcx);\n    return cont(tydef);\n  }\n  function enumdef(type) {\n    if (type == \"name\") {cx.marked = \"def\"; return cont(enumdef);}\n    if (content == \"<\") return cont(typarams, enumdef);\n    if (content == \"=\") return cont(typecx, rtype, valcx, endstatement);\n    if (type == \"{\") return cont(pushlex(\"}\"), typecx, enumblock, valcx, poplex);\n    return cont(enumdef);\n  }\n  function enumblock(type) {\n    if (type == \"}\") return cont();\n    if (type == \"(\") return cont(pushlex(\")\"), commasep(rtype, \")\"), poplex, enumblock);\n    if (content.match(/^\\w+$/)) cx.marked = \"def\";\n    return cont(enumblock);\n  }\n  function mod(type) {\n    if (type == \"name\") {cx.marked = \"def\"; return cont(mod);}\n    if (type == \"{\") return cont(pushlex(\"}\"), block, poplex);\n    return pass();\n  }\n  function iface(type) {\n    if (type == \"name\") {cx.marked = \"def\"; return cont(iface);}\n    if (content == \"<\") return cont(typarams, iface);\n    if (type == \"{\") return cont(pushlex(\"}\"), block, poplex);\n    return pass();\n  }\n  function impl(type) {\n    if (content == \"<\") return cont(typarams, impl);\n    if (content == \"of\" || content == \"for\") {cx.marked = \"keyword\"; return cont(rtype, impl);}\n    if (type == \"name\") {cx.marked = \"def\"; return cont(impl);}\n    if (type == \"{\") return cont(pushlex(\"}\"), block, poplex);\n    return pass();\n  }\n  function typarams() {\n    if (content == \">\") return cont();\n    if (content == \",\") return cont(typarams);\n    if (content == \":\") return cont(rtype, typarams);\n    return pass(rtype, typarams);\n  }\n  function argdef(type) {\n    if (type == \"name\") {cx.marked = \"def\"; return cont(argdef);}\n    if (type == \":\") return cont(typecx, rtype, valcx);\n    return pass();\n  }\n  function rtype(type) {\n    if (type == \"name\") {cx.marked = \"variable-3\"; return cont(rtypemaybeparam); }\n    if (content == \"mutable\") {cx.marked = \"keyword\"; return cont(rtype);}\n    if (type == \"atom\") return cont(rtypemaybeparam);\n    if (type == \"op\" || type == \"obj\") return cont(rtype);\n    if (type == \"fn\") return cont(fntype);\n    if (type == \"{\") return cont(pushlex(\"{\"), record_of(rtype), poplex);\n    return matchBrackets(type, rtype);\n  }\n  function rtypemaybeparam() {\n    if (content == \"<\") return cont(typarams);\n    return pass();\n  }\n  function fntype(type) {\n    if (type == \"(\") return cont(pushlex(\"(\"), commasep(rtype, \")\"), poplex, fntype);\n    if (type == \"->\") return cont(rtype);\n    return pass();\n  }\n  function pattern(type) {\n    if (type == \"name\") {cx.marked = \"def\"; return cont(patternmaybeop);}\n    if (type == \"atom\") return cont(patternmaybeop);\n    if (type == \"op\") return cont(pattern);\n    if (type.match(/[\\]\\)\\};,]/)) return pass();\n    return matchBrackets(type, pattern);\n  }\n  function patternmaybeop(type) {\n    if (type == \"op\" && content == \".\") return cont();\n    if (content == \"to\") {cx.marked = \"keyword\"; return cont(pattern);}\n    else return pass();\n  }\n  function altbody(type) {\n    if (type == \"{\") return cont(pushlex(\"}\", \"alt\"), altblock1, poplex);\n    return pass();\n  }\n  function altblock1(type) {\n    if (type == \"}\") return cont();\n    if (type == \"|\") return cont(altblock1);\n    if (content == \"when\") {cx.marked = \"keyword\"; return cont(expression, altblock2);}\n    if (type.match(/[\\]\\);,]/)) return cont(altblock1);\n    return pass(pattern, altblock2);\n  }\n  function altblock2(type) {\n    if (type == \"{\") return cont(pushlex(\"}\", \"alt\"), block, poplex, altblock1);\n    else return pass(altblock1);\n  }\n\n  function macro(type) {\n    if (type.match(/[\\[\\(\\{]/)) return matchBrackets(type, expression);\n    return pass();\n  }\n  function matchBrackets(type, comb) {\n    if (type == \"[\") return cont(pushlex(\"]\"), commasep(comb, \"]\"), poplex);\n    if (type == \"(\") return cont(pushlex(\")\"), commasep(comb, \")\"), poplex);\n    if (type == \"{\") return cont(pushlex(\"}\"), commasep(comb, \"}\"), poplex);\n    return cont();\n  }\n\n  function parse(state, stream, style) {\n    var cc = state.cc;\n    // Communicate our context to the combinators.\n    // (Less wasteful than consing up a hundred closures on every call.)\n    cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc;\n\n    while (true) {\n      var combinator = cc.length ? cc.pop() : block;\n      if (combinator(tcat)) {\n        while(cc.length && cc[cc.length - 1].lex)\n          cc.pop()();\n        return cx.marked || style;\n      }\n    }\n  }\n\n  return {\n    startState: function() {\n      return {\n        tokenize: tokenBase,\n        cc: [],\n        lexical: {indented: -indentUnit, column: 0, type: \"top\", align: false},\n        keywords: valKeywords,\n        indented: 0\n      };\n    },\n\n    token: function(stream, state) {\n      if (stream.sol()) {\n        if (!state.lexical.hasOwnProperty(\"align\"))\n          state.lexical.align = false;\n        state.indented = stream.indentation();\n      }\n      if (stream.eatSpace()) return null;\n      tcat = content = null;\n      var style = state.tokenize(stream, state);\n      if (style == \"comment\") return style;\n      if (!state.lexical.hasOwnProperty(\"align\"))\n        state.lexical.align = true;\n      if (tcat == \"prefix\") return style;\n      if (!content) content = stream.current();\n      return parse(state, stream, style);\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != tokenBase) return 0;\n      var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical,\n          type = lexical.type, closing = firstChar == type;\n      if (type == \"stat\") return lexical.indented + indentUnit;\n      if (lexical.align) return lexical.column + (closing ? 0 : 1);\n      return lexical.indented + (closing ? 0 : (lexical.info == \"alt\" ? altIndentUnit : indentUnit));\n    },\n\n    electricChars: \"{}\",\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\",\n    lineComment: \"//\",\n    fold: \"brace\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-rustsrc\", \"rust\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/sass/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Sass mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"sass.js\"></script>\n<style>.CodeMirror {border: 1px solid #ddd; font-size:12px; height: 400px}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Sass</a>\n  </ul>\n</div>\n\n<article>\n<h2>Sass mode</h2>\n<form><textarea id=\"code\" name=\"code\">// Variable Definitions\n\n$page-width:    800px\n$sidebar-width: 200px\n$primary-color: #eeeeee\n\n// Global Attributes\n\nbody\n  font:\n    family: sans-serif\n    size: 30em\n    weight: bold\n\n// Scoped Styles\n\n#contents\n  width: $page-width\n  #sidebar\n    float: right\n    width: $sidebar-width\n  #main\n    width: $page-width - $sidebar-width\n    background: $primary-color\n    h2\n      color: blue\n\n#footer\n  height: 200px\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers : true,\n        matchBrackets : true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-sass</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/sass/sass.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"sass\", function(config) {\n  function tokenRegexp(words) {\n    return new RegExp(\"^\" + words.join(\"|\"));\n  }\n\n  var keywords = [\"true\", \"false\", \"null\", \"auto\"];\n  var keywordsRegexp = new RegExp(\"^\" + keywords.join(\"|\"));\n\n  var operators = [\"\\\\(\", \"\\\\)\", \"=\", \">\", \"<\", \"==\", \">=\", \"<=\", \"\\\\+\", \"-\", \"\\\\!=\", \"/\", \"\\\\*\", \"%\", \"and\", \"or\", \"not\"];\n  var opRegexp = tokenRegexp(operators);\n\n  var pseudoElementsRegexp = /^::?[\\w\\-]+/;\n\n  function urlTokens(stream, state) {\n    var ch = stream.peek();\n\n    if (ch === \")\") {\n      stream.next();\n      state.tokenizer = tokenBase;\n      return \"operator\";\n    } else if (ch === \"(\") {\n      stream.next();\n      stream.eatSpace();\n\n      return \"operator\";\n    } else if (ch === \"'\" || ch === '\"') {\n      state.tokenizer = buildStringTokenizer(stream.next());\n      return \"string\";\n    } else {\n      state.tokenizer = buildStringTokenizer(\")\", false);\n      return \"string\";\n    }\n  }\n  function comment(indentation, multiLine) {\n    return function(stream, state) {\n      if (stream.sol() && stream.indentation() <= indentation) {\n        state.tokenizer = tokenBase;\n        return tokenBase(stream, state);\n      }\n\n      if (multiLine && stream.skipTo(\"*/\")) {\n        stream.next();\n        stream.next();\n        state.tokenizer = tokenBase;\n      } else {\n        stream.next();\n      }\n\n      return \"comment\";\n    };\n  }\n\n  function buildStringTokenizer(quote, greedy) {\n    if(greedy == null) { greedy = true; }\n\n    function stringTokenizer(stream, state) {\n      var nextChar = stream.next();\n      var peekChar = stream.peek();\n      var previousChar = stream.string.charAt(stream.pos-2);\n\n      var endingString = ((nextChar !== \"\\\\\" && peekChar === quote) || (nextChar === quote && previousChar !== \"\\\\\"));\n\n      if (endingString) {\n        if (nextChar !== quote && greedy) { stream.next(); }\n        state.tokenizer = tokenBase;\n        return \"string\";\n      } else if (nextChar === \"#\" && peekChar === \"{\") {\n        state.tokenizer = buildInterpolationTokenizer(stringTokenizer);\n        stream.next();\n        return \"operator\";\n      } else {\n        return \"string\";\n      }\n    }\n\n    return stringTokenizer;\n  }\n\n  function buildInterpolationTokenizer(currentTokenizer) {\n    return function(stream, state) {\n      if (stream.peek() === \"}\") {\n        stream.next();\n        state.tokenizer = currentTokenizer;\n        return \"operator\";\n      } else {\n        return tokenBase(stream, state);\n      }\n    };\n  }\n\n  function indent(state) {\n    if (state.indentCount == 0) {\n      state.indentCount++;\n      var lastScopeOffset = state.scopes[0].offset;\n      var currentOffset = lastScopeOffset + config.indentUnit;\n      state.scopes.unshift({ offset:currentOffset });\n    }\n  }\n\n  function dedent(state) {\n    if (state.scopes.length == 1) return;\n\n    state.scopes.shift();\n  }\n\n  function tokenBase(stream, state) {\n    var ch = stream.peek();\n\n    // Comment\n    if (stream.match(\"/*\")) {\n      state.tokenizer = comment(stream.indentation(), true);\n      return state.tokenizer(stream, state);\n    }\n    if (stream.match(\"//\")) {\n      state.tokenizer = comment(stream.indentation(), false);\n      return state.tokenizer(stream, state);\n    }\n\n    // Interpolation\n    if (stream.match(\"#{\")) {\n      state.tokenizer = buildInterpolationTokenizer(tokenBase);\n      return \"operator\";\n    }\n\n    if (ch === \".\") {\n      stream.next();\n\n      // Match class selectors\n      if (stream.match(/^[\\w-]+/)) {\n        indent(state);\n        return \"atom\";\n      } else if (stream.peek() === \"#\") {\n        indent(state);\n        return \"atom\";\n      } else {\n        return \"operator\";\n      }\n    }\n\n    if (ch === \"#\") {\n      stream.next();\n\n      // Hex numbers\n      if (stream.match(/[0-9a-fA-F]{6}|[0-9a-fA-F]{3}/))\n        return \"number\";\n\n      // ID selectors\n      if (stream.match(/^[\\w-]+/)) {\n        indent(state);\n        return \"atom\";\n      }\n\n      if (stream.peek() === \"#\") {\n        indent(state);\n        return \"atom\";\n      }\n    }\n\n    // Numbers\n    if (stream.match(/^-?[0-9\\.]+/))\n      return \"number\";\n\n    // Units\n    if (stream.match(/^(px|em|in)\\b/))\n      return \"unit\";\n\n    if (stream.match(keywordsRegexp))\n      return \"keyword\";\n\n    if (stream.match(/^url/) && stream.peek() === \"(\") {\n      state.tokenizer = urlTokens;\n      return \"atom\";\n    }\n\n    // Variables\n    if (ch === \"$\") {\n      stream.next();\n      stream.eatWhile(/[\\w-]/);\n\n      if (stream.peek() === \":\") {\n        stream.next();\n        return \"variable-2\";\n      } else {\n        return \"variable-3\";\n      }\n    }\n\n    if (ch === \"!\") {\n      stream.next();\n      return stream.match(/^[\\w]+/) ? \"keyword\": \"operator\";\n    }\n\n    if (ch === \"=\") {\n      stream.next();\n\n      // Match shortcut mixin definition\n      if (stream.match(/^[\\w-]+/)) {\n        indent(state);\n        return \"meta\";\n      } else {\n        return \"operator\";\n      }\n    }\n\n    if (ch === \"+\") {\n      stream.next();\n\n      // Match shortcut mixin definition\n      if (stream.match(/^[\\w-]+/))\n        return \"variable-3\";\n      else\n        return \"operator\";\n    }\n\n    // Indent Directives\n    if (stream.match(/^@(else if|if|media|else|for|each|while|mixin|function)/)) {\n      indent(state);\n      return \"meta\";\n    }\n\n    // Other Directives\n    if (ch === \"@\") {\n      stream.next();\n      stream.eatWhile(/[\\w-]/);\n      return \"meta\";\n    }\n\n    // Strings\n    if (ch === '\"' || ch === \"'\") {\n      stream.next();\n      state.tokenizer = buildStringTokenizer(ch);\n      return \"string\";\n    }\n\n    // Pseudo element selectors\n    if (ch == \":\" && stream.match(pseudoElementsRegexp))\n      return \"keyword\";\n\n    // atoms\n    if (stream.eatWhile(/[\\w-&]/)) {\n      // matches a property definition\n      if (stream.peek() === \":\" && !stream.match(pseudoElementsRegexp, false))\n        return \"property\";\n      else\n        return \"atom\";\n    }\n\n    if (stream.match(opRegexp))\n      return \"operator\";\n\n    // If we haven't returned by now, we move 1 character\n    // and return an error\n    stream.next();\n    return null;\n  }\n\n  function tokenLexer(stream, state) {\n    if (stream.sol()) state.indentCount = 0;\n    var style = state.tokenizer(stream, state);\n    var current = stream.current();\n\n    if (current === \"@return\")\n      dedent(state);\n\n    if (style === \"atom\")\n      indent(state);\n\n    if (style !== null) {\n      var startOfToken = stream.pos - current.length;\n      var withCurrentIndent = startOfToken + (config.indentUnit * state.indentCount);\n\n      var newScopes = [];\n\n      for (var i = 0; i < state.scopes.length; i++) {\n        var scope = state.scopes[i];\n\n        if (scope.offset <= withCurrentIndent)\n          newScopes.push(scope);\n      }\n\n      state.scopes = newScopes;\n    }\n\n\n    return style;\n  }\n\n  return {\n    startState: function() {\n      return {\n        tokenizer: tokenBase,\n        scopes: [{offset: 0, type: \"sass\"}],\n        indentCount: 0,\n        definedVars: [],\n        definedMixins: []\n      };\n    },\n    token: function(stream, state) {\n      var style = tokenLexer(stream, state);\n\n      state.lastToken = { style: style, content: stream.current() };\n\n      return style;\n    },\n\n    indent: function(state) {\n      return state.scopes[0].offset;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-sass\", \"sass\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/scheme/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Scheme mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"scheme.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Scheme</a>\n  </ul>\n</div>\n\n<article>\n<h2>Scheme mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n; See if the input starts with a given symbol.\n(define (match-symbol input pattern)\n  (cond ((null? (remain input)) #f)\n\t((eqv? (car (remain input)) pattern) (r-cdr input))\n\t(else #f)))\n\n; Allow the input to start with one of a list of patterns.\n(define (match-or input pattern)\n  (cond ((null? pattern) #f)\n\t((match-pattern input (car pattern)))\n\t(else (match-or input (cdr pattern)))))\n\n; Allow a sequence of patterns.\n(define (match-seq input pattern)\n  (if (null? pattern)\n      input\n      (let ((match (match-pattern input (car pattern))))\n\t(if match (match-seq match (cdr pattern)) #f))))\n\n; Match with the pattern but no problem if it does not match.\n(define (match-opt input pattern)\n  (let ((match (match-pattern input (car pattern))))\n    (if match match input)))\n\n; Match anything (other than '()), until pattern is found. The rather\n; clumsy form of requiring an ending pattern is needed to decide where\n; the end of the match is. If none is given, this will match the rest\n; of the sentence.\n(define (match-any input pattern)\n  (cond ((null? (remain input)) #f)\n\t((null? pattern) (f-cons (remain input) (clear-remain input)))\n\t(else\n\t (let ((accum-any (collector)))\n\t   (define (match-pattern-any input pattern)\n\t     (cond ((null? (remain input)) #f)\n\t\t   (else (accum-any (car (remain input)))\n\t\t\t (cond ((match-pattern (r-cdr input) pattern))\n\t\t\t       (else (match-pattern-any (r-cdr input) pattern))))))\n\t   (let ((retval (match-pattern-any input (car pattern))))\n\t     (if retval\n\t\t (f-cons (accum-any) retval)\n\t\t #f))))))\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-scheme</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/scheme/scheme.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/**\n * Author: Koh Zi Han, based on implementation by Koh Zi Chun\n */\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"scheme\", function () {\n    var BUILTIN = \"builtin\", COMMENT = \"comment\", STRING = \"string\",\n        ATOM = \"atom\", NUMBER = \"number\", BRACKET = \"bracket\";\n    var INDENT_WORD_SKIP = 2;\n\n    function makeKeywords(str) {\n        var obj = {}, words = str.split(\" \");\n        for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n        return obj;\n    }\n\n    var keywords = makeKeywords(\"λ case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt #f floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? #t tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\");\n    var indentKeys = makeKeywords(\"define let letrec let* lambda\");\n\n    function stateStack(indent, type, prev) { // represents a state stack object\n        this.indent = indent;\n        this.type = type;\n        this.prev = prev;\n    }\n\n    function pushStack(state, indent, type) {\n        state.indentStack = new stateStack(indent, type, state.indentStack);\n    }\n\n    function popStack(state) {\n        state.indentStack = state.indentStack.prev;\n    }\n\n    var binaryMatcher = new RegExp(/^(?:[-+]i|[-+][01]+#*(?:\\/[01]+#*)?i|[-+]?[01]+#*(?:\\/[01]+#*)?@[-+]?[01]+#*(?:\\/[01]+#*)?|[-+]?[01]+#*(?:\\/[01]+#*)?[-+](?:[01]+#*(?:\\/[01]+#*)?)?i|[-+]?[01]+#*(?:\\/[01]+#*)?)(?=[()\\s;\"]|$)/i);\n    var octalMatcher = new RegExp(/^(?:[-+]i|[-+][0-7]+#*(?:\\/[0-7]+#*)?i|[-+]?[0-7]+#*(?:\\/[0-7]+#*)?@[-+]?[0-7]+#*(?:\\/[0-7]+#*)?|[-+]?[0-7]+#*(?:\\/[0-7]+#*)?[-+](?:[0-7]+#*(?:\\/[0-7]+#*)?)?i|[-+]?[0-7]+#*(?:\\/[0-7]+#*)?)(?=[()\\s;\"]|$)/i);\n    var hexMatcher = new RegExp(/^(?:[-+]i|[-+][\\da-f]+#*(?:\\/[\\da-f]+#*)?i|[-+]?[\\da-f]+#*(?:\\/[\\da-f]+#*)?@[-+]?[\\da-f]+#*(?:\\/[\\da-f]+#*)?|[-+]?[\\da-f]+#*(?:\\/[\\da-f]+#*)?[-+](?:[\\da-f]+#*(?:\\/[\\da-f]+#*)?)?i|[-+]?[\\da-f]+#*(?:\\/[\\da-f]+#*)?)(?=[()\\s;\"]|$)/i);\n    var decimalMatcher = new RegExp(/^(?:[-+]i|[-+](?:(?:(?:\\d+#+\\.?#*|\\d+\\.\\d*#*|\\.\\d+#*|\\d+)(?:[esfdl][-+]?\\d+)?)|\\d+#*\\/\\d+#*)i|[-+]?(?:(?:(?:\\d+#+\\.?#*|\\d+\\.\\d*#*|\\.\\d+#*|\\d+)(?:[esfdl][-+]?\\d+)?)|\\d+#*\\/\\d+#*)@[-+]?(?:(?:(?:\\d+#+\\.?#*|\\d+\\.\\d*#*|\\.\\d+#*|\\d+)(?:[esfdl][-+]?\\d+)?)|\\d+#*\\/\\d+#*)|[-+]?(?:(?:(?:\\d+#+\\.?#*|\\d+\\.\\d*#*|\\.\\d+#*|\\d+)(?:[esfdl][-+]?\\d+)?)|\\d+#*\\/\\d+#*)[-+](?:(?:(?:\\d+#+\\.?#*|\\d+\\.\\d*#*|\\.\\d+#*|\\d+)(?:[esfdl][-+]?\\d+)?)|\\d+#*\\/\\d+#*)?i|(?:(?:(?:\\d+#+\\.?#*|\\d+\\.\\d*#*|\\.\\d+#*|\\d+)(?:[esfdl][-+]?\\d+)?)|\\d+#*\\/\\d+#*))(?=[()\\s;\"]|$)/i);\n\n    function isBinaryNumber (stream) {\n        return stream.match(binaryMatcher);\n    }\n\n    function isOctalNumber (stream) {\n        return stream.match(octalMatcher);\n    }\n\n    function isDecimalNumber (stream, backup) {\n        if (backup === true) {\n            stream.backUp(1);\n        }\n        return stream.match(decimalMatcher);\n    }\n\n    function isHexNumber (stream) {\n        return stream.match(hexMatcher);\n    }\n\n    return {\n        startState: function () {\n            return {\n                indentStack: null,\n                indentation: 0,\n                mode: false,\n                sExprComment: false\n            };\n        },\n\n        token: function (stream, state) {\n            if (state.indentStack == null && stream.sol()) {\n                // update indentation, but only if indentStack is empty\n                state.indentation = stream.indentation();\n            }\n\n            // skip spaces\n            if (stream.eatSpace()) {\n                return null;\n            }\n            var returnType = null;\n\n            switch(state.mode){\n                case \"string\": // multi-line string parsing mode\n                    var next, escaped = false;\n                    while ((next = stream.next()) != null) {\n                        if (next == \"\\\"\" && !escaped) {\n\n                            state.mode = false;\n                            break;\n                        }\n                        escaped = !escaped && next == \"\\\\\";\n                    }\n                    returnType = STRING; // continue on in scheme-string mode\n                    break;\n                case \"comment\": // comment parsing mode\n                    var next, maybeEnd = false;\n                    while ((next = stream.next()) != null) {\n                        if (next == \"#\" && maybeEnd) {\n\n                            state.mode = false;\n                            break;\n                        }\n                        maybeEnd = (next == \"|\");\n                    }\n                    returnType = COMMENT;\n                    break;\n                case \"s-expr-comment\": // s-expr commenting mode\n                    state.mode = false;\n                    if(stream.peek() == \"(\" || stream.peek() == \"[\"){\n                        // actually start scheme s-expr commenting mode\n                        state.sExprComment = 0;\n                    }else{\n                        // if not we just comment the entire of the next token\n                        stream.eatWhile(/[^/s]/); // eat non spaces\n                        returnType = COMMENT;\n                        break;\n                    }\n                default: // default parsing mode\n                    var ch = stream.next();\n\n                    if (ch == \"\\\"\") {\n                        state.mode = \"string\";\n                        returnType = STRING;\n\n                    } else if (ch == \"'\") {\n                        returnType = ATOM;\n                    } else if (ch == '#') {\n                        if (stream.eat(\"|\")) {                    // Multi-line comment\n                            state.mode = \"comment\"; // toggle to comment mode\n                            returnType = COMMENT;\n                        } else if (stream.eat(/[tf]/i)) {            // #t/#f (atom)\n                            returnType = ATOM;\n                        } else if (stream.eat(';')) {                // S-Expr comment\n                            state.mode = \"s-expr-comment\";\n                            returnType = COMMENT;\n                        } else {\n                            var numTest = null, hasExactness = false, hasRadix = true;\n                            if (stream.eat(/[ei]/i)) {\n                                hasExactness = true;\n                            } else {\n                                stream.backUp(1);       // must be radix specifier\n                            }\n                            if (stream.match(/^#b/i)) {\n                                numTest = isBinaryNumber;\n                            } else if (stream.match(/^#o/i)) {\n                                numTest = isOctalNumber;\n                            } else if (stream.match(/^#x/i)) {\n                                numTest = isHexNumber;\n                            } else if (stream.match(/^#d/i)) {\n                                numTest = isDecimalNumber;\n                            } else if (stream.match(/^[-+0-9.]/, false)) {\n                                hasRadix = false;\n                                numTest = isDecimalNumber;\n                            // re-consume the intial # if all matches failed\n                            } else if (!hasExactness) {\n                                stream.eat('#');\n                            }\n                            if (numTest != null) {\n                                if (hasRadix && !hasExactness) {\n                                    // consume optional exactness after radix\n                                    stream.match(/^#[ei]/i);\n                                }\n                                if (numTest(stream))\n                                    returnType = NUMBER;\n                            }\n                        }\n                    } else if (/^[-+0-9.]/.test(ch) && isDecimalNumber(stream, true)) { // match non-prefixed number, must be decimal\n                        returnType = NUMBER;\n                    } else if (ch == \";\") { // comment\n                        stream.skipToEnd(); // rest of the line is a comment\n                        returnType = COMMENT;\n                    } else if (ch == \"(\" || ch == \"[\") {\n                      var keyWord = ''; var indentTemp = stream.column(), letter;\n                        /**\n                        Either\n                        (indent-word ..\n                        (non-indent-word ..\n                        (;something else, bracket, etc.\n                        */\n\n                        while ((letter = stream.eat(/[^\\s\\(\\[\\;\\)\\]]/)) != null) {\n                            keyWord += letter;\n                        }\n\n                        if (keyWord.length > 0 && indentKeys.propertyIsEnumerable(keyWord)) { // indent-word\n\n                            pushStack(state, indentTemp + INDENT_WORD_SKIP, ch);\n                        } else { // non-indent word\n                            // we continue eating the spaces\n                            stream.eatSpace();\n                            if (stream.eol() || stream.peek() == \";\") {\n                                // nothing significant after\n                                // we restart indentation 1 space after\n                                pushStack(state, indentTemp + 1, ch);\n                            } else {\n                                pushStack(state, indentTemp + stream.current().length, ch); // else we match\n                            }\n                        }\n                        stream.backUp(stream.current().length - 1); // undo all the eating\n\n                        if(typeof state.sExprComment == \"number\") state.sExprComment++;\n\n                        returnType = BRACKET;\n                    } else if (ch == \")\" || ch == \"]\") {\n                        returnType = BRACKET;\n                        if (state.indentStack != null && state.indentStack.type == (ch == \")\" ? \"(\" : \"[\")) {\n                            popStack(state);\n\n                            if(typeof state.sExprComment == \"number\"){\n                                if(--state.sExprComment == 0){\n                                    returnType = COMMENT; // final closing bracket\n                                    state.sExprComment = false; // turn off s-expr commenting mode\n                                }\n                            }\n                        }\n                    } else {\n                        stream.eatWhile(/[\\w\\$_\\-!$%&*+\\.\\/:<=>?@\\^~]/);\n\n                        if (keywords && keywords.propertyIsEnumerable(stream.current())) {\n                            returnType = BUILTIN;\n                        } else returnType = \"variable\";\n                    }\n            }\n            return (typeof state.sExprComment == \"number\") ? COMMENT : returnType;\n        },\n\n        indent: function (state) {\n            if (state.indentStack == null) return state.indentation;\n            return state.indentStack.indent;\n        },\n\n        lineComment: \";;\"\n    };\n});\n\nCodeMirror.defineMIME(\"text/x-scheme\", \"scheme\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/shell/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Shell mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=stylesheet href=../../lib/codemirror.css>\n<script src=../../lib/codemirror.js></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=shell.js></script>\n<style type=text/css>\n  .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}\n</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Shell</a>\n  </ul>\n</div>\n\n<article>\n<h2>Shell mode</h2>\n\n\n<textarea id=code>\n#!/bin/bash\n\n# clone the repository\ngit clone http://github.com/garden/tree\n\n# generate HTTPS credentials\ncd tree\nopenssl genrsa -aes256 -out https.key 1024\nopenssl req -new -nodes -key https.key -out https.csr\nopenssl x509 -req -days 365 -in https.csr -signkey https.key -out https.crt\ncp https.key{,.orig}\nopenssl rsa -in https.key.orig -out https.key\n\n# start the server in HTTPS mode\ncd web\nsudo node ../server.js 443 'yes' &gt;&gt; ../node.log &amp;\n\n# here is how to stop the server\nfor pid in `ps aux | grep 'node ../server.js' | awk '{print $2}'` ; do\n  sudo kill -9 $pid 2&gt; /dev/null\ndone\n\nexit 0</textarea>\n\n<script>\n  var editor = CodeMirror.fromTextArea(document.getElementById('code'), {\n    mode: 'shell',\n    lineNumbers: true,\n    matchBrackets: true\n  });\n</script>\n\n<p><strong>MIME types defined:</strong> <code>text/x-sh</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/shell/shell.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode('shell', function() {\n\n  var words = {};\n  function define(style, string) {\n    var split = string.split(' ');\n    for(var i = 0; i < split.length; i++) {\n      words[split[i]] = style;\n    }\n  };\n\n  // Atoms\n  define('atom', 'true false');\n\n  // Keywords\n  define('keyword', 'if then do else elif while until for in esac fi fin ' +\n    'fil done exit set unset export function');\n\n  // Commands\n  define('builtin', 'ab awk bash beep cat cc cd chown chmod chroot clear cp ' +\n    'curl cut diff echo find gawk gcc get git grep kill killall ln ls make ' +\n    'mkdir openssl mv nc node npm ping ps restart rm rmdir sed service sh ' +\n    'shopt shred source sort sleep ssh start stop su sudo tee telnet top ' +\n    'touch vi vim wall wc wget who write yes zsh');\n\n  function tokenBase(stream, state) {\n    if (stream.eatSpace()) return null;\n\n    var sol = stream.sol();\n    var ch = stream.next();\n\n    if (ch === '\\\\') {\n      stream.next();\n      return null;\n    }\n    if (ch === '\\'' || ch === '\"' || ch === '`') {\n      state.tokens.unshift(tokenString(ch));\n      return tokenize(stream, state);\n    }\n    if (ch === '#') {\n      if (sol && stream.eat('!')) {\n        stream.skipToEnd();\n        return 'meta'; // 'comment'?\n      }\n      stream.skipToEnd();\n      return 'comment';\n    }\n    if (ch === '$') {\n      state.tokens.unshift(tokenDollar);\n      return tokenize(stream, state);\n    }\n    if (ch === '+' || ch === '=') {\n      return 'operator';\n    }\n    if (ch === '-') {\n      stream.eat('-');\n      stream.eatWhile(/\\w/);\n      return 'attribute';\n    }\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/\\d/);\n      if(stream.eol() || !/\\w/.test(stream.peek())) {\n        return 'number';\n      }\n    }\n    stream.eatWhile(/[\\w-]/);\n    var cur = stream.current();\n    if (stream.peek() === '=' && /\\w+/.test(cur)) return 'def';\n    return words.hasOwnProperty(cur) ? words[cur] : null;\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var next, end = false, escaped = false;\n      while ((next = stream.next()) != null) {\n        if (next === quote && !escaped) {\n          end = true;\n          break;\n        }\n        if (next === '$' && !escaped && quote !== '\\'') {\n          escaped = true;\n          stream.backUp(1);\n          state.tokens.unshift(tokenDollar);\n          break;\n        }\n        escaped = !escaped && next === '\\\\';\n      }\n      if (end || !escaped) {\n        state.tokens.shift();\n      }\n      return (quote === '`' || quote === ')' ? 'quote' : 'string');\n    };\n  };\n\n  var tokenDollar = function(stream, state) {\n    if (state.tokens.length > 1) stream.eat('$');\n    var ch = stream.next(), hungry = /\\w/;\n    if (ch === '{') hungry = /[^}]/;\n    if (ch === '(') {\n      state.tokens[0] = tokenString(')');\n      return tokenize(stream, state);\n    }\n    if (!/\\d/.test(ch)) {\n      stream.eatWhile(hungry);\n      stream.eat('}');\n    }\n    state.tokens.shift();\n    return 'def';\n  };\n\n  function tokenize(stream, state) {\n    return (state.tokens[0] || tokenBase) (stream, state);\n  };\n\n  return {\n    startState: function() {return {tokens:[]};},\n    token: function(stream, state) {\n      return tokenize(stream, state);\n    },\n    lineComment: '#'\n  };\n});\n\nCodeMirror.defineMIME('text/x-sh', 'shell');\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/shell/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({}, \"shell\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  MT(\"var\",\n     \"text [def $var] text\");\n  MT(\"varBraces\",\n     \"text[def ${var}]text\");\n  MT(\"varVar\",\n     \"text [def $a$b] text\");\n  MT(\"varBracesVarBraces\",\n     \"text[def ${a}${b}]text\");\n\n  MT(\"singleQuotedVar\",\n     \"[string 'text $var text']\");\n  MT(\"singleQuotedVarBraces\",\n     \"[string 'text ${var} text']\");\n\n  MT(\"doubleQuotedVar\",\n     '[string \"text ][def $var][string  text\"]');\n  MT(\"doubleQuotedVarBraces\",\n     '[string \"text][def ${var}][string text\"]');\n  MT(\"doubleQuotedVarPunct\",\n     '[string \"text ][def $@][string  text\"]');\n  MT(\"doubleQuotedVarVar\",\n     '[string \"][def $a$b][string \"]');\n  MT(\"doubleQuotedVarBracesVarBraces\",\n     '[string \"][def ${a}${b}][string \"]');\n\n  MT(\"notAString\",\n     \"text\\\\'text\");\n  MT(\"escapes\",\n     \"outside\\\\'\\\\\\\"\\\\`\\\\\\\\[string \\\"inside\\\\`\\\\'\\\\\\\"\\\\\\\\`\\\\$notAVar\\\"]outside\\\\$\\\\(notASubShell\\\\)\");\n\n  MT(\"subshell\",\n     \"[builtin echo] [quote $(whoami)] s log, stardate [quote `date`].\");\n  MT(\"doubleQuotedSubshell\",\n     \"[builtin echo] [string \\\"][quote $(whoami)][string 's log, stardate `date`.\\\"]\");\n\n  MT(\"hashbang\",\n     \"[meta #!/bin/bash]\");\n  MT(\"comment\",\n     \"text [comment # Blurb]\");\n\n  MT(\"numbers\",\n     \"[number 0] [number 1] [number 2]\");\n  MT(\"keywords\",\n     \"[keyword while] [atom true]; [keyword do]\",\n     \"  [builtin sleep] [number 3]\",\n     \"[keyword done]\");\n  MT(\"options\",\n     \"[builtin ls] [attribute -l] [attribute --human-readable]\");\n  MT(\"operator\",\n     \"[def var][operator =]value\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/sieve/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Sieve (RFC5228) mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"sieve.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Sieve (RFC5228)</a>\n  </ul>\n</div>\n\n<article>\n<h2>Sieve (RFC5228) mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n#\n# Example Sieve Filter\n# Declare any optional features or extension used by the script\n#\n\nrequire [\"fileinto\", \"reject\"];\n\n#\n# Reject any large messages (note that the four leading dots get\n# \"stuffed\" to three)\n#\nif size :over 1M\n{\n  reject text:\nPlease do not send me large attachments.\nPut your file on a server and send me the URL.\nThank you.\n.... Fred\n.\n;\n  stop;\n}\n\n#\n# Handle messages from known mailing lists\n# Move messages from IETF filter discussion list to filter folder\n#\nif header :is \"Sender\" \"owner-ietf-mta-filters@imc.org\"\n{\n  fileinto \"filter\";  # move to \"filter\" folder\n}\n#\n# Keep all messages to or from people in my company\n#\nelsif address :domain :is [\"From\", \"To\"] \"example.com\"\n{\n  keep;               # keep in \"In\" folder\n}\n\n#\n# Try and catch unsolicited email.  If a message is not to me,\n# or it contains a subject known to be spam, file it away.\n#\nelsif anyof (not address :all :contains\n               [\"To\", \"Cc\", \"Bcc\"] \"me@example.com\",\n             header :matches \"subject\"\n               [\"*make*money*fast*\", \"*university*dipl*mas*\"])\n{\n  # If message header does not contain my address,\n  # it's from a list.\n  fileinto \"spam\";   # move to \"spam\" folder\n}\nelse\n{\n  # Move all other (non-company) mail to \"personal\"\n  # folder.\n  fileinto \"personal\";\n}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>application/sieve</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/sieve/sieve.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"sieve\", function(config) {\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  var keywords = words(\"if elsif else stop require\");\n  var atoms = words(\"true false not\");\n  var indentUnit = config.indentUnit;\n\n  function tokenBase(stream, state) {\n\n    var ch = stream.next();\n    if (ch == \"/\" && stream.eat(\"*\")) {\n      state.tokenize = tokenCComment;\n      return tokenCComment(stream, state);\n    }\n\n    if (ch === '#') {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n\n    if (ch == \"\\\"\") {\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n\n    if (ch == \"(\") {\n      state._indent.push(\"(\");\n      // add virtual angel wings so that editor behaves...\n      // ...more sane incase of broken brackets\n      state._indent.push(\"{\");\n      return null;\n    }\n\n    if (ch === \"{\") {\n      state._indent.push(\"{\");\n      return null;\n    }\n\n    if (ch == \")\")  {\n      state._indent.pop();\n      state._indent.pop();\n    }\n\n    if (ch === \"}\") {\n      state._indent.pop();\n      return null;\n    }\n\n    if (ch == \",\")\n      return null;\n\n    if (ch == \";\")\n      return null;\n\n\n    if (/[{}\\(\\),;]/.test(ch))\n      return null;\n\n    // 1*DIGIT \"K\" / \"M\" / \"G\"\n    if (/\\d/.test(ch)) {\n      stream.eatWhile(/[\\d]/);\n      stream.eat(/[KkMmGg]/);\n      return \"number\";\n    }\n\n    // \":\" (ALPHA / \"_\") *(ALPHA / DIGIT / \"_\")\n    if (ch == \":\") {\n      stream.eatWhile(/[a-zA-Z_]/);\n      stream.eatWhile(/[a-zA-Z0-9_]/);\n\n      return \"operator\";\n    }\n\n    stream.eatWhile(/\\w/);\n    var cur = stream.current();\n\n    // \"text:\" *(SP / HTAB) (hash-comment / CRLF)\n    // *(multiline-literal / multiline-dotstart)\n    // \".\" CRLF\n    if ((cur == \"text\") && stream.eat(\":\"))\n    {\n      state.tokenize = tokenMultiLineString;\n      return \"string\";\n    }\n\n    if (keywords.propertyIsEnumerable(cur))\n      return \"keyword\";\n\n    if (atoms.propertyIsEnumerable(cur))\n      return \"atom\";\n\n    return null;\n  }\n\n  function tokenMultiLineString(stream, state)\n  {\n    state._multiLineString = true;\n    // the first line is special it may contain a comment\n    if (!stream.sol()) {\n      stream.eatSpace();\n\n      if (stream.peek() == \"#\") {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n\n      stream.skipToEnd();\n      return \"string\";\n    }\n\n    if ((stream.next() == \".\")  && (stream.eol()))\n    {\n      state._multiLineString = false;\n      state.tokenize = tokenBase;\n    }\n\n    return \"string\";\n  }\n\n  function tokenCComment(stream, state) {\n    var maybeEnd = false, ch;\n    while ((ch = stream.next()) != null) {\n      if (maybeEnd && ch == \"/\") {\n        state.tokenize = tokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && !escaped)\n          break;\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      if (!escaped) state.tokenize = tokenBase;\n      return \"string\";\n    };\n  }\n\n  return {\n    startState: function(base) {\n      return {tokenize: tokenBase,\n              baseIndent: base || 0,\n              _indent: []};\n    },\n\n    token: function(stream, state) {\n      if (stream.eatSpace())\n        return null;\n\n      return (state.tokenize || tokenBase)(stream, state);;\n    },\n\n    indent: function(state, _textAfter) {\n      var length = state._indent.length;\n      if (_textAfter && (_textAfter[0] == \"}\"))\n        length--;\n\n      if (length <0)\n        length = 0;\n\n      return length * indentUnit;\n    },\n\n    electricChars: \"}\"\n  };\n});\n\nCodeMirror.defineMIME(\"application/sieve\", \"sieve\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/slim/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: SLIM mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/ambiance.css\">\n<script src=\"https://code.jquery.com/jquery-1.11.1.min.js\"></script>\n<script src=\"https://code.jquery.com/ui/1.11.0/jquery-ui.min.js\"></script>\n<link rel=\"stylesheet\" href=\"https://code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../htmlembedded/htmlembedded.js\"></script>\n<script src=\"../htmlmixed/htmlmixed.js\"></script>\n<script src=\"../coffeescript/coffeescript.js\"></script>\n<script src=\"../javascript/javascript.js\"></script>\n<script src=\"../ruby/ruby.js\"></script>\n<script src=\"../markdown/markdown.js\"></script>\n<script src=\"slim.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">SLIM</a>\n  </ul>\n</div>\n\n<article>\n  <h2>SLIM mode</h2>\n  <form><textarea id=\"code\" name=\"code\">\nbody\n  table\n    - for user in users\n      td id=\"user_#{user.id}\" class=user.role\n        a href=user_action(user, :edit) Edit #{user.name}\n        a href=(path_to_user user) = user.name\nbody\n  h1(id=\"logo\") = page_logo\n  h2[id=\"tagline\" class=\"small tagline\"] = page_tagline\n\nh2[id=\"tagline\"\n   class=\"small tagline\"] = page_tagline\n\nh1 id = \"logo\" = page_logo\nh2 [ id = \"tagline\" ] = page_tagline\n\n/ comment\n  second line\n/! html comment\n   second line\n<!-- html comment -->\n<a href=\"#{'hello' if set}\">link</a>\na.slim href=\"work\" disabled=false running==:atom Text <b>bold</b>\n.clazz data-id=\"test\" == 'hello' unless quark\n | Text mode #{12}\n   Second line\n= x ||= :ruby_atom\n#menu.left\n  - @env.each do |x|\n    li: a = x\n*@dyntag attr=\"val\"\n.first *{:class => [:second, :third]} Text\n.second class=[\"text\",\"more\"]\n.third class=:text,:symbol\n\n  </textarea></form>\n  <script>\n    var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n      lineNumbers: true,\n      theme: \"ambiance\",\n      mode: \"application/x-slim\"\n    });\n    $('.CodeMirror').resizable({\n      resize: function() {\n        editor.setSize($(this).width(), $(this).height());\n        //editor.refresh();\n      }\n    });\n  </script>\n\n  <p><strong>MIME types defined:</strong> <code>application/x-slim</code>.</p>\n\n  <p>\n    <strong>Parsing/Highlighting Tests:</strong>\n    <a href=\"../../test/index.html#slim_*\">normal</a>,\n    <a href=\"../../test/index.html#verbose,slim_*\">verbose</a>.\n  </p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/slim/slim.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// Slim Highlighting for CodeMirror copyright (c) HicknHack Software Gmbh\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../htmlmixed/htmlmixed\"), require(\"../ruby/ruby\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../htmlmixed/htmlmixed\", \"../ruby/ruby\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\n  CodeMirror.defineMode(\"slim\", function(config) {\n    var htmlMode = CodeMirror.getMode(config, {name: \"htmlmixed\"});\n    var rubyMode = CodeMirror.getMode(config, \"ruby\");\n    var modes = { html: htmlMode, ruby: rubyMode };\n    var embedded = {\n      ruby: \"ruby\",\n      javascript: \"javascript\",\n      css: \"text/css\",\n      sass: \"text/x-sass\",\n      scss: \"text/x-scss\",\n      less: \"text/x-less\",\n      styl: \"text/x-styl\", // no highlighting so far\n      coffee: \"coffeescript\",\n      asciidoc: \"text/x-asciidoc\",\n      markdown: \"text/x-markdown\",\n      textile: \"text/x-textile\", // no highlighting so far\n      creole: \"text/x-creole\", // no highlighting so far\n      wiki: \"text/x-wiki\", // no highlighting so far\n      mediawiki: \"text/x-mediawiki\", // no highlighting so far\n      rdoc: \"text/x-rdoc\", // no highlighting so far\n      builder: \"text/x-builder\", // no highlighting so far\n      nokogiri: \"text/x-nokogiri\", // no highlighting so far\n      erb: \"application/x-erb\"\n    };\n    var embeddedRegexp = function(map){\n      var arr = [];\n      for(var key in map) arr.push(key);\n      return new RegExp(\"^(\"+arr.join('|')+\"):\");\n    }(embedded);\n\n    var styleMap = {\n      \"commentLine\": \"comment\",\n      \"slimSwitch\": \"operator special\",\n      \"slimTag\": \"tag\",\n      \"slimId\": \"attribute def\",\n      \"slimClass\": \"attribute qualifier\",\n      \"slimAttribute\": \"attribute\",\n      \"slimSubmode\": \"keyword special\",\n      \"closeAttributeTag\": null,\n      \"slimDoctype\": null,\n      \"lineContinuation\": null\n    };\n    var closing = {\n      \"{\": \"}\",\n      \"[\": \"]\",\n      \"(\": \")\"\n    };\n\n    var nameStartChar = \"_a-zA-Z\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\";\n    var nameChar = nameStartChar + \"\\\\-0-9\\xB7\\u0300-\\u036F\\u203F-\\u2040\";\n    var nameRegexp = new RegExp(\"^[:\"+nameStartChar+\"](?::[\"+nameChar+\"]|[\"+nameChar+\"]*)\");\n    var attributeNameRegexp = new RegExp(\"^[:\"+nameStartChar+\"][:\\\\.\"+nameChar+\"]*(?=\\\\s*=)\");\n    var wrappedAttributeNameRegexp = new RegExp(\"^[:\"+nameStartChar+\"][:\\\\.\"+nameChar+\"]*\");\n    var classNameRegexp = /^\\.-?[_a-zA-Z]+[\\w\\-]*/;\n    var classIdRegexp = /^#[_a-zA-Z]+[\\w\\-]*/;\n\n    function backup(pos, tokenize, style) {\n      var restore = function(stream, state) {\n        state.tokenize = tokenize;\n        if (stream.pos < pos) {\n          stream.pos = pos;\n          return style;\n        }\n        return state.tokenize(stream, state);\n      };\n      return function(stream, state) {\n        state.tokenize = restore;\n        return tokenize(stream, state);\n      };\n    }\n\n    function maybeBackup(stream, state, pat, offset, style) {\n      var cur = stream.current();\n      var idx = cur.search(pat);\n      if (idx > -1) {\n        state.tokenize = backup(stream.pos, state.tokenize, style);\n        stream.backUp(cur.length - idx - offset);\n      }\n      return style;\n    }\n\n    function continueLine(state, column) {\n      state.stack = {\n        parent: state.stack,\n        style: \"continuation\",\n        indented: column,\n        tokenize: state.line\n      };\n      state.line = state.tokenize;\n    }\n    function finishContinue(state) {\n      if (state.line == state.tokenize) {\n        state.line = state.stack.tokenize;\n        state.stack = state.stack.parent;\n      }\n    }\n\n    function lineContinuable(column, tokenize) {\n      return function(stream, state) {\n        finishContinue(state);\n        if (stream.match(/^\\\\$/)) {\n          continueLine(state, column);\n          return \"lineContinuation\";\n        }\n        var style = tokenize(stream, state);\n        if (stream.eol() && stream.current().match(/(?:^|[^\\\\])(?:\\\\\\\\)*\\\\$/)) {\n          stream.backUp(1);\n        }\n        return style;\n      };\n    }\n    function commaContinuable(column, tokenize) {\n      return function(stream, state) {\n        finishContinue(state);\n        var style = tokenize(stream, state);\n        if (stream.eol() && stream.current().match(/,$/)) {\n          continueLine(state, column);\n        }\n        return style;\n      };\n    }\n\n    function rubyInQuote(endQuote, tokenize) {\n      // TODO: add multi line support\n      return function(stream, state) {\n        var ch = stream.peek();\n        if (ch == endQuote && state.rubyState.tokenize.length == 1) {\n          // step out of ruby context as it seems to complete processing all the braces\n          stream.next();\n          state.tokenize = tokenize;\n          return \"closeAttributeTag\";\n        } else {\n          return ruby(stream, state);\n        }\n      };\n    }\n    function startRubySplat(tokenize) {\n      var rubyState;\n      var runSplat = function(stream, state) {\n        if (state.rubyState.tokenize.length == 1 && !state.rubyState.context.prev) {\n          stream.backUp(1);\n          if (stream.eatSpace()) {\n            state.rubyState = rubyState;\n            state.tokenize = tokenize;\n            return tokenize(stream, state);\n          }\n          stream.next();\n        }\n        return ruby(stream, state);\n      };\n      return function(stream, state) {\n        rubyState = state.rubyState;\n        state.rubyState = rubyMode.startState();\n        state.tokenize = runSplat;\n        return ruby(stream, state);\n      };\n    }\n\n    function ruby(stream, state) {\n      return rubyMode.token(stream, state.rubyState);\n    }\n\n    function htmlLine(stream, state) {\n      if (stream.match(/^\\\\$/)) {\n        return \"lineContinuation\";\n      }\n      return html(stream, state);\n    }\n    function html(stream, state) {\n      if (stream.match(/^#\\{/)) {\n        state.tokenize = rubyInQuote(\"}\", state.tokenize);\n        return null;\n      }\n      return maybeBackup(stream, state, /[^\\\\]#\\{/, 1, htmlMode.token(stream, state.htmlState));\n    }\n\n    function startHtmlLine(lastTokenize) {\n      return function(stream, state) {\n        var style = htmlLine(stream, state);\n        if (stream.eol()) state.tokenize = lastTokenize;\n        return style;\n      };\n    }\n\n    function startHtmlMode(stream, state, offset) {\n      state.stack = {\n        parent: state.stack,\n        style: \"html\",\n        indented: stream.column() + offset, // pipe + space\n        tokenize: state.line\n      };\n      state.line = state.tokenize = html;\n      return null;\n    }\n\n    function comment(stream, state) {\n      stream.skipToEnd();\n      return state.stack.style;\n    }\n\n    function commentMode(stream, state) {\n      state.stack = {\n        parent: state.stack,\n        style: \"comment\",\n        indented: state.indented + 1,\n        tokenize: state.line\n      };\n      state.line = comment;\n      return comment(stream, state);\n    }\n\n    function attributeWrapper(stream, state) {\n      if (stream.eat(state.stack.endQuote)) {\n        state.line = state.stack.line;\n        state.tokenize = state.stack.tokenize;\n        state.stack = state.stack.parent;\n        return null;\n      }\n      if (stream.match(wrappedAttributeNameRegexp)) {\n        state.tokenize = attributeWrapperAssign;\n        return \"slimAttribute\";\n      }\n      stream.next();\n      return null;\n    }\n    function attributeWrapperAssign(stream, state) {\n      if (stream.match(/^==?/)) {\n        state.tokenize = attributeWrapperValue;\n        return null;\n      }\n      return attributeWrapper(stream, state);\n    }\n    function attributeWrapperValue(stream, state) {\n      var ch = stream.peek();\n      if (ch == '\"' || ch == \"\\'\") {\n        state.tokenize = readQuoted(ch, \"string\", true, false, attributeWrapper);\n        stream.next();\n        return state.tokenize(stream, state);\n      }\n      if (ch == '[') {\n        return startRubySplat(attributeWrapper)(stream, state);\n      }\n      if (stream.match(/^(true|false|nil)\\b/)) {\n        state.tokenize = attributeWrapper;\n        return \"keyword\";\n      }\n      return startRubySplat(attributeWrapper)(stream, state);\n    }\n\n    function startAttributeWrapperMode(state, endQuote, tokenize) {\n      state.stack = {\n        parent: state.stack,\n        style: \"wrapper\",\n        indented: state.indented + 1,\n        tokenize: tokenize,\n        line: state.line,\n        endQuote: endQuote\n      };\n      state.line = state.tokenize = attributeWrapper;\n      return null;\n    }\n\n    function sub(stream, state) {\n      if (stream.match(/^#\\{/)) {\n        state.tokenize = rubyInQuote(\"}\", state.tokenize);\n        return null;\n      }\n      var subStream = new CodeMirror.StringStream(stream.string.slice(state.stack.indented), stream.tabSize);\n      subStream.pos = stream.pos - state.stack.indented;\n      subStream.start = stream.start - state.stack.indented;\n      subStream.lastColumnPos = stream.lastColumnPos - state.stack.indented;\n      subStream.lastColumnValue = stream.lastColumnValue - state.stack.indented;\n      var style = state.subMode.token(subStream, state.subState);\n      stream.pos = subStream.pos + state.stack.indented;\n      return style;\n    }\n    function firstSub(stream, state) {\n      state.stack.indented = stream.column();\n      state.line = state.tokenize = sub;\n      return state.tokenize(stream, state);\n    }\n\n    function createMode(mode) {\n      var query = embedded[mode];\n      var spec = CodeMirror.mimeModes[query];\n      if (spec) {\n        return CodeMirror.getMode(config, spec);\n      }\n      var factory = CodeMirror.modes[query];\n      if (factory) {\n        return factory(config, {name: query});\n      }\n      return CodeMirror.getMode(config, \"null\");\n    }\n\n    function getMode(mode) {\n      if (!modes.hasOwnProperty(mode)) {\n        return modes[mode] = createMode(mode);\n      }\n      return modes[mode];\n    }\n\n    function startSubMode(mode, state) {\n      var subMode = getMode(mode);\n      var subState = subMode.startState && subMode.startState();\n\n      state.subMode = subMode;\n      state.subState = subState;\n\n      state.stack = {\n        parent: state.stack,\n        style: \"sub\",\n        indented: state.indented + 1,\n        tokenize: state.line\n      };\n      state.line = state.tokenize = firstSub;\n      return \"slimSubmode\";\n    }\n\n    function doctypeLine(stream, _state) {\n      stream.skipToEnd();\n      return \"slimDoctype\";\n    }\n\n    function startLine(stream, state) {\n      var ch = stream.peek();\n      if (ch == '<') {\n        return (state.tokenize = startHtmlLine(state.tokenize))(stream, state);\n      }\n      if (stream.match(/^[|']/)) {\n        return startHtmlMode(stream, state, 1);\n      }\n      if (stream.match(/^\\/(!|\\[\\w+])?/)) {\n        return commentMode(stream, state);\n      }\n      if (stream.match(/^(-|==?[<>]?)/)) {\n        state.tokenize = lineContinuable(stream.column(), commaContinuable(stream.column(), ruby));\n        return \"slimSwitch\";\n      }\n      if (stream.match(/^doctype\\b/)) {\n        state.tokenize = doctypeLine;\n        return \"keyword\";\n      }\n\n      var m = stream.match(embeddedRegexp);\n      if (m) {\n        return startSubMode(m[1], state);\n      }\n\n      return slimTag(stream, state);\n    }\n\n    function slim(stream, state) {\n      if (state.startOfLine) {\n        return startLine(stream, state);\n      }\n      return slimTag(stream, state);\n    }\n\n    function slimTag(stream, state) {\n      if (stream.eat('*')) {\n        state.tokenize = startRubySplat(slimTagExtras);\n        return null;\n      }\n      if (stream.match(nameRegexp)) {\n        state.tokenize = slimTagExtras;\n        return \"slimTag\";\n      }\n      return slimClass(stream, state);\n    }\n    function slimTagExtras(stream, state) {\n      if (stream.match(/^(<>?|><?)/)) {\n        state.tokenize = slimClass;\n        return null;\n      }\n      return slimClass(stream, state);\n    }\n    function slimClass(stream, state) {\n      if (stream.match(classIdRegexp)) {\n        state.tokenize = slimClass;\n        return \"slimId\";\n      }\n      if (stream.match(classNameRegexp)) {\n        state.tokenize = slimClass;\n        return \"slimClass\";\n      }\n      return slimAttribute(stream, state);\n    }\n    function slimAttribute(stream, state) {\n      if (stream.match(/^([\\[\\{\\(])/)) {\n        return startAttributeWrapperMode(state, closing[RegExp.$1], slimAttribute);\n      }\n      if (stream.match(attributeNameRegexp)) {\n        state.tokenize = slimAttributeAssign;\n        return \"slimAttribute\";\n      }\n      if (stream.peek() == '*') {\n        stream.next();\n        state.tokenize = startRubySplat(slimContent);\n        return null;\n      }\n      return slimContent(stream, state);\n    }\n    function slimAttributeAssign(stream, state) {\n      if (stream.match(/^==?/)) {\n        state.tokenize = slimAttributeValue;\n        return null;\n      }\n      // should never happen, because of forward lookup\n      return slimAttribute(stream, state);\n    }\n\n    function slimAttributeValue(stream, state) {\n      var ch = stream.peek();\n      if (ch == '\"' || ch == \"\\'\") {\n        state.tokenize = readQuoted(ch, \"string\", true, false, slimAttribute);\n        stream.next();\n        return state.tokenize(stream, state);\n      }\n      if (ch == '[') {\n        return startRubySplat(slimAttribute)(stream, state);\n      }\n      if (ch == ':') {\n        return startRubySplat(slimAttributeSymbols)(stream, state);\n      }\n      if (stream.match(/^(true|false|nil)\\b/)) {\n        state.tokenize = slimAttribute;\n        return \"keyword\";\n      }\n      return startRubySplat(slimAttribute)(stream, state);\n    }\n    function slimAttributeSymbols(stream, state) {\n      stream.backUp(1);\n      if (stream.match(/^[^\\s],(?=:)/)) {\n        state.tokenize = startRubySplat(slimAttributeSymbols);\n        return null;\n      }\n      stream.next();\n      return slimAttribute(stream, state);\n    }\n    function readQuoted(quote, style, embed, unescaped, nextTokenize) {\n      return function(stream, state) {\n        finishContinue(state);\n        var fresh = stream.current().length == 0;\n        if (stream.match(/^\\\\$/, fresh)) {\n          if (!fresh) return style;\n          continueLine(state, state.indented);\n          return \"lineContinuation\";\n        }\n        if (stream.match(/^#\\{/, fresh)) {\n          if (!fresh) return style;\n          state.tokenize = rubyInQuote(\"}\", state.tokenize);\n          return null;\n        }\n        var escaped = false, ch;\n        while ((ch = stream.next()) != null) {\n          if (ch == quote && (unescaped || !escaped)) {\n            state.tokenize = nextTokenize;\n            break;\n          }\n          if (embed && ch == \"#\" && !escaped) {\n            if (stream.eat(\"{\")) {\n              stream.backUp(2);\n              break;\n            }\n          }\n          escaped = !escaped && ch == \"\\\\\";\n        }\n        if (stream.eol() && escaped) {\n          stream.backUp(1);\n        }\n        return style;\n      };\n    }\n    function slimContent(stream, state) {\n      if (stream.match(/^==?/)) {\n        state.tokenize = ruby;\n        return \"slimSwitch\";\n      }\n      if (stream.match(/^\\/$/)) { // tag close hint\n        state.tokenize = slim;\n        return null;\n      }\n      if (stream.match(/^:/)) { // inline tag\n        state.tokenize = slimTag;\n        return \"slimSwitch\";\n      }\n      startHtmlMode(stream, state, 0);\n      return state.tokenize(stream, state);\n    }\n\n    var mode = {\n      // default to html mode\n      startState: function() {\n        var htmlState = htmlMode.startState();\n        var rubyState = rubyMode.startState();\n        return {\n          htmlState: htmlState,\n          rubyState: rubyState,\n          stack: null,\n          last: null,\n          tokenize: slim,\n          line: slim,\n          indented: 0\n        };\n      },\n\n      copyState: function(state) {\n        return {\n          htmlState : CodeMirror.copyState(htmlMode, state.htmlState),\n          rubyState: CodeMirror.copyState(rubyMode, state.rubyState),\n          subMode: state.subMode,\n          subState: state.subMode && CodeMirror.copyState(state.subMode, state.subState),\n          stack: state.stack,\n          last: state.last,\n          tokenize: state.tokenize,\n          line: state.line\n        };\n      },\n\n      token: function(stream, state) {\n        if (stream.sol()) {\n          state.indented = stream.indentation();\n          state.startOfLine = true;\n          state.tokenize = state.line;\n          while (state.stack && state.stack.indented > state.indented && state.last != \"slimSubmode\") {\n            state.line = state.tokenize = state.stack.tokenize;\n            state.stack = state.stack.parent;\n            state.subMode = null;\n            state.subState = null;\n          }\n        }\n        if (stream.eatSpace()) return null;\n        var style = state.tokenize(stream, state);\n        state.startOfLine = false;\n        if (style) state.last = style;\n        return styleMap.hasOwnProperty(style) ? styleMap[style] : style;\n      },\n\n      blankLine: function(state) {\n        if (state.subMode && state.subMode.blankLine) {\n          return state.subMode.blankLine(state.subState);\n        }\n      },\n\n      innerMode: function(state) {\n        if (state.subMode) return {state: state.subState, mode: state.subMode};\n        return {state: state, mode: mode};\n      }\n\n      //indent: function(state) {\n      //  return state.indented;\n      //}\n    };\n    return mode;\n  }, \"htmlmixed\", \"ruby\");\n\n  CodeMirror.defineMIME(\"text/x-slim\", \"slim\");\n  CodeMirror.defineMIME(\"application/x-slim\", \"slim\");\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/slim/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// Slim Highlighting for CodeMirror copyright (c) HicknHack Software Gmbh\n\n(function() {\n  var mode = CodeMirror.getMode({tabSize: 4, indentUnit: 2}, \"slim\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  // Requires at least one media query\n  MT(\"elementName\",\n     \"[tag h1] Hey There\");\n\n  MT(\"oneElementPerLine\",\n     \"[tag h1] Hey There .h2\");\n\n  MT(\"idShortcut\",\n     \"[attribute&def #test] Hey There\");\n\n  MT(\"tagWithIdShortcuts\",\n     \"[tag h1][attribute&def #test] Hey There\");\n\n  MT(\"classShortcut\",\n     \"[attribute&qualifier .hello] Hey There\");\n\n  MT(\"tagWithIdAndClassShortcuts\",\n     \"[tag h1][attribute&def #test][attribute&qualifier .hello] Hey There\");\n\n  MT(\"docType\",\n     \"[keyword doctype] xml\");\n\n  MT(\"comment\",\n     \"[comment / Hello WORLD]\");\n\n  MT(\"notComment\",\n     \"[tag h1] This is not a / comment \");\n\n  MT(\"attributes\",\n     \"[tag a]([attribute title]=[string \\\"test\\\"]) [attribute href]=[string \\\"link\\\"]}\");\n\n  MT(\"multiLineAttributes\",\n     \"[tag a]([attribute title]=[string \\\"test\\\"]\",\n     \"  ) [attribute href]=[string \\\"link\\\"]}\");\n\n  MT(\"htmlCode\",\n     \"[tag&bracket <][tag h1][tag&bracket >]Title[tag&bracket </][tag h1][tag&bracket >]\");\n\n  MT(\"rubyBlock\",\n     \"[operator&special =][variable-2 @item]\");\n\n  MT(\"selectorRubyBlock\",\n     \"[tag a][attribute&qualifier .test][operator&special =] [variable-2 @item]\");\n\n  MT(\"nestedRubyBlock\",\n      \"[tag a]\",\n      \"  [operator&special =][variable puts] [string \\\"test\\\"]\");\n\n  MT(\"multilinePlaintext\",\n      \"[tag p]\",\n      \"  | Hello,\",\n      \"    World\");\n\n  MT(\"multilineRuby\",\n      \"[tag p]\",\n      \"  [comment /# this is a comment]\",\n      \"     [comment and this is a comment too]\",\n      \"  | Date/Time\",\n      \"  [operator&special -] [variable now] [operator =] [tag DateTime][operator .][property now]\",\n      \"  [tag strong][operator&special =] [variable now]\",\n      \"  [operator&special -] [keyword if] [variable now] [operator >] [tag DateTime][operator .][property parse]([string \\\"December 31, 2006\\\"])\",\n      \"     [operator&special =][string \\\"Happy\\\"]\",\n      \"     [operator&special =][string \\\"Belated\\\"]\",\n      \"     [operator&special =][string \\\"Birthday\\\"]\");\n\n  MT(\"multilineComment\",\n      \"[comment /]\",\n      \"  [comment Multiline]\",\n      \"  [comment Comment]\");\n\n  MT(\"hamlAfterRubyTag\",\n    \"[attribute&qualifier .block]\",\n    \"  [tag strong][operator&special =] [variable now]\",\n    \"  [attribute&qualifier .test]\",\n    \"     [operator&special =][variable now]\",\n    \"  [attribute&qualifier .right]\");\n\n  MT(\"stretchedRuby\",\n     \"[operator&special =] [variable puts] [string \\\"Hello\\\"],\",\n     \"   [string \\\"World\\\"]\");\n\n  MT(\"interpolationInHashAttribute\",\n     \"[tag div]{[attribute id] = [string \\\"]#{[variable test]}[string _]#{[variable ting]}[string \\\"]} test\");\n\n  MT(\"interpolationInHTMLAttribute\",\n     \"[tag div]([attribute title]=[string \\\"]#{[variable test]}[string _]#{[variable ting]()}[string \\\"]) Test\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/smalltalk/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Smalltalk mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"smalltalk.js\"></script>\n<style>\n      .CodeMirror {border: 2px solid #dee; border-right-width: 10px;}\n      .CodeMirror-gutter {border: none; background: #dee;}\n      .CodeMirror-gutter pre {color: white; font-weight: bold;}\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Smalltalk</a>\n  </ul>\n</div>\n\n<article>\n<h2>Smalltalk mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n\" \n    This is a test of the Smalltalk code\n\"\nSeaside.WAComponent subclass: #MyCounter [\n    | count |\n    MyCounter class &gt;&gt; canBeRoot [ ^true ]\n\n    initialize [\n        super initialize.\n        count := 0.\n    ]\n    states [ ^{ self } ]\n    renderContentOn: html [\n        html heading: count.\n        html anchor callback: [ count := count + 1 ]; with: '++'.\n        html space.\n        html anchor callback: [ count := count - 1 ]; with: '--'.\n    ]\n]\n\nMyCounter registerAsApplication: 'mycounter'\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        mode: \"text/x-stsrc\",\n        indentUnit: 4\n      });\n    </script>\n\n    <p>Simple Smalltalk mode.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-stsrc</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/smalltalk/smalltalk.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode('smalltalk', function(config) {\n\n  var specialChars = /[+\\-\\/\\\\*~<>=@%|&?!.,:;^]/;\n  var keywords = /true|false|nil|self|super|thisContext/;\n\n  var Context = function(tokenizer, parent) {\n    this.next = tokenizer;\n    this.parent = parent;\n  };\n\n  var Token = function(name, context, eos) {\n    this.name = name;\n    this.context = context;\n    this.eos = eos;\n  };\n\n  var State = function() {\n    this.context = new Context(next, null);\n    this.expectVariable = true;\n    this.indentation = 0;\n    this.userIndentationDelta = 0;\n  };\n\n  State.prototype.userIndent = function(indentation) {\n    this.userIndentationDelta = indentation > 0 ? (indentation / config.indentUnit - this.indentation) : 0;\n  };\n\n  var next = function(stream, context, state) {\n    var token = new Token(null, context, false);\n    var aChar = stream.next();\n\n    if (aChar === '\"') {\n      token = nextComment(stream, new Context(nextComment, context));\n\n    } else if (aChar === '\\'') {\n      token = nextString(stream, new Context(nextString, context));\n\n    } else if (aChar === '#') {\n      if (stream.peek() === '\\'') {\n        stream.next();\n        token = nextSymbol(stream, new Context(nextSymbol, context));\n      } else {\n        if (stream.eatWhile(/[^\\s.{}\\[\\]()]/))\n          token.name = 'string-2';\n        else\n          token.name = 'meta';\n      }\n\n    } else if (aChar === '$') {\n      if (stream.next() === '<') {\n        stream.eatWhile(/[^\\s>]/);\n        stream.next();\n      }\n      token.name = 'string-2';\n\n    } else if (aChar === '|' && state.expectVariable) {\n      token.context = new Context(nextTemporaries, context);\n\n    } else if (/[\\[\\]{}()]/.test(aChar)) {\n      token.name = 'bracket';\n      token.eos = /[\\[{(]/.test(aChar);\n\n      if (aChar === '[') {\n        state.indentation++;\n      } else if (aChar === ']') {\n        state.indentation = Math.max(0, state.indentation - 1);\n      }\n\n    } else if (specialChars.test(aChar)) {\n      stream.eatWhile(specialChars);\n      token.name = 'operator';\n      token.eos = aChar !== ';'; // ; cascaded message expression\n\n    } else if (/\\d/.test(aChar)) {\n      stream.eatWhile(/[\\w\\d]/);\n      token.name = 'number';\n\n    } else if (/[\\w_]/.test(aChar)) {\n      stream.eatWhile(/[\\w\\d_]/);\n      token.name = state.expectVariable ? (keywords.test(stream.current()) ? 'keyword' : 'variable') : null;\n\n    } else {\n      token.eos = state.expectVariable;\n    }\n\n    return token;\n  };\n\n  var nextComment = function(stream, context) {\n    stream.eatWhile(/[^\"]/);\n    return new Token('comment', stream.eat('\"') ? context.parent : context, true);\n  };\n\n  var nextString = function(stream, context) {\n    stream.eatWhile(/[^']/);\n    return new Token('string', stream.eat('\\'') ? context.parent : context, false);\n  };\n\n  var nextSymbol = function(stream, context) {\n    stream.eatWhile(/[^']/);\n    return new Token('string-2', stream.eat('\\'') ? context.parent : context, false);\n  };\n\n  var nextTemporaries = function(stream, context) {\n    var token = new Token(null, context, false);\n    var aChar = stream.next();\n\n    if (aChar === '|') {\n      token.context = context.parent;\n      token.eos = true;\n\n    } else {\n      stream.eatWhile(/[^|]/);\n      token.name = 'variable';\n    }\n\n    return token;\n  };\n\n  return {\n    startState: function() {\n      return new State;\n    },\n\n    token: function(stream, state) {\n      state.userIndent(stream.indentation());\n\n      if (stream.eatSpace()) {\n        return null;\n      }\n\n      var token = state.context.next(stream, state.context, state);\n      state.context = token.context;\n      state.expectVariable = token.eos;\n\n      return token.name;\n    },\n\n    blankLine: function(state) {\n      state.userIndent(0);\n    },\n\n    indent: function(state, textAfter) {\n      var i = state.context.next === next && textAfter && textAfter.charAt(0) === ']' ? -1 : state.userIndentationDelta;\n      return (state.indentation + i) * config.indentUnit;\n    },\n\n    electricChars: ']'\n  };\n\n});\n\nCodeMirror.defineMIME('text/x-stsrc', {name: 'smalltalk'});\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/smarty/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Smarty mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"smarty.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Smarty</a>\n  </ul>\n</div>\n\n<article>\n<h2>Smarty mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n{extends file=\"parent.tpl\"}\n{include file=\"template.tpl\"}\n\n{* some example Smarty content *}\n{if isset($name) && $name == 'Blog'}\n  This is a {$var}.\n  {$integer = 451}, {$array[] = \"a\"}, {$stringvar = \"string\"}\n  {assign var='bob' value=$var.prop}\n{elseif $name == $foo}\n  {function name=menu level=0}\n    {foreach $data as $entry}\n      {if is_array($entry)}\n        - {$entry@key}\n        {menu data=$entry level=$level+1}\n      {else}\n        {$entry}\n      {/if}\n    {/foreach}\n  {/function}\n{/if}</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        mode: \"smarty\"\n      });\n    </script>\n\n    <br />\n\n\t<h3>Smarty 2, custom delimiters</h3>\n    <form><textarea id=\"code2\" name=\"code2\">\n{--extends file=\"parent.tpl\"--}\n{--include file=\"template.tpl\"--}\n\n{--* some example Smarty content *--}\n{--if isset($name) && $name == 'Blog'--}\n  This is a {--$var--}.\n  {--$integer = 451--}, {--$array[] = \"a\"--}, {--$stringvar = \"string\"--}\n  {--assign var='bob' value=$var.prop--}\n{--elseif $name == $foo--}\n  {--function name=menu level=0--}\n    {--foreach $data as $entry--}\n      {--if is_array($entry)--}\n        - {--$entry@key--}\n        {--menu data=$entry level=$level+1--}\n      {--else--}\n        {--$entry--}\n      {--/if--}\n    {--/foreach--}\n  {--/function--}\n{--/if--}</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code2\"), {\n        lineNumbers: true,\n        mode: {\n          name: \"smarty\",\n          leftDelimiter: \"{--\",\n          rightDelimiter: \"--}\"\n        }\n      });\n    </script>\n\n\t<br />\n\n\t<h3>Smarty 3</h3>\n\n\t<textarea id=\"code3\" name=\"code3\">\nNested tags {$foo={counter one=1 two={inception}}+3} are now valid in Smarty 3.\n\n<script>\nfunction test() {\n\tconsole.log(\"Smarty 3 permits single curly braces followed by whitespace to NOT slip into Smarty mode.\");\n}\n</script>\n\n{assign var=foo value=[1,2,3]}\n{assign var=foo value=['y'=>'yellow','b'=>'blue']}\n{assign var=foo value=[1,[9,8],3]}\n\n{$foo=$bar+2} {* a comment *}\n{$foo.bar=1}  {* another comment *}\n{$foo = myfunct(($x+$y)*3)}\n{$foo = strlen($bar)}\n{$foo.bar.baz=1}, {$foo[]=1}\n\nSmarty \"dot\" syntax (note: embedded {} are used to address ambiguities):\n\n{$foo.a.b.c}      => $foo['a']['b']['c']\n{$foo.a.$b.c}     => $foo['a'][$b]['c']\n{$foo.a.{$b+4}.c} => $foo['a'][$b+4]['c']\n{$foo.a.{$b.c}}   => $foo['a'][$b['c']]\n\n{$object->method1($x)->method2($y)}</textarea>\n\n\t<script>\n\t\tvar editor = CodeMirror.fromTextArea(document.getElementById(\"code3\"), {\n\t\t\tlineNumbers: true,\n\t\t\tmode: \"smarty\",\n\t\t\tsmartyVersion: 3\n\t\t});\n\t</script>\n\n\n    <p>A plain text/Smarty version 2 or 3 mode, which allows for custom delimiter tags.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-smarty</code></p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/smarty/smarty.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/**\n * Smarty 2 and 3 mode.\n */\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"smarty\", function(config) {\n  \"use strict\";\n\n  // our default settings; check to see if they're overridden\n  var settings = {\n    rightDelimiter: '}',\n    leftDelimiter: '{',\n    smartyVersion: 2 // for backward compatibility\n  };\n  if (config.hasOwnProperty(\"leftDelimiter\")) {\n    settings.leftDelimiter = config.leftDelimiter;\n  }\n  if (config.hasOwnProperty(\"rightDelimiter\")) {\n    settings.rightDelimiter = config.rightDelimiter;\n  }\n  if (config.hasOwnProperty(\"smartyVersion\") && config.smartyVersion === 3) {\n    settings.smartyVersion = 3;\n  }\n\n  var keyFunctions = [\"debug\", \"extends\", \"function\", \"include\", \"literal\"];\n  var last;\n  var regs = {\n    operatorChars: /[+\\-*&%=<>!?]/,\n    validIdentifier: /[a-zA-Z0-9_]/,\n    stringChar: /['\"]/\n  };\n\n  var helpers = {\n    cont: function(style, lastType) {\n      last = lastType;\n      return style;\n    },\n    chain: function(stream, state, parser) {\n      state.tokenize = parser;\n      return parser(stream, state);\n    }\n  };\n\n\n  // our various parsers\n  var parsers = {\n\n    // the main tokenizer\n    tokenizer: function(stream, state) {\n      if (stream.match(settings.leftDelimiter, true)) {\n        if (stream.eat(\"*\")) {\n          return helpers.chain(stream, state, parsers.inBlock(\"comment\", \"*\" + settings.rightDelimiter));\n        } else {\n          // Smarty 3 allows { and } surrounded by whitespace to NOT slip into Smarty mode\n          state.depth++;\n          var isEol = stream.eol();\n          var isFollowedByWhitespace = /\\s/.test(stream.peek());\n          if (settings.smartyVersion === 3 && settings.leftDelimiter === \"{\" && (isEol || isFollowedByWhitespace)) {\n            state.depth--;\n            return null;\n          } else {\n            state.tokenize = parsers.smarty;\n            last = \"startTag\";\n            return \"tag\";\n          }\n        }\n      } else {\n        stream.next();\n        return null;\n      }\n    },\n\n    // parsing Smarty content\n    smarty: function(stream, state) {\n      if (stream.match(settings.rightDelimiter, true)) {\n        if (settings.smartyVersion === 3) {\n          state.depth--;\n          if (state.depth <= 0) {\n            state.tokenize = parsers.tokenizer;\n          }\n        } else {\n          state.tokenize = parsers.tokenizer;\n        }\n        return helpers.cont(\"tag\", null);\n      }\n\n      if (stream.match(settings.leftDelimiter, true)) {\n        state.depth++;\n        return helpers.cont(\"tag\", \"startTag\");\n      }\n\n      var ch = stream.next();\n      if (ch == \"$\") {\n        stream.eatWhile(regs.validIdentifier);\n        return helpers.cont(\"variable-2\", \"variable\");\n      } else if (ch == \"|\") {\n        return helpers.cont(\"operator\", \"pipe\");\n      } else if (ch == \".\") {\n        return helpers.cont(\"operator\", \"property\");\n      } else if (regs.stringChar.test(ch)) {\n        state.tokenize = parsers.inAttribute(ch);\n        return helpers.cont(\"string\", \"string\");\n      } else if (regs.operatorChars.test(ch)) {\n        stream.eatWhile(regs.operatorChars);\n        return helpers.cont(\"operator\", \"operator\");\n      } else if (ch == \"[\" || ch == \"]\") {\n        return helpers.cont(\"bracket\", \"bracket\");\n      } else if (ch == \"(\" || ch == \")\") {\n        return helpers.cont(\"bracket\", \"operator\");\n      } else if (/\\d/.test(ch)) {\n        stream.eatWhile(/\\d/);\n        return helpers.cont(\"number\", \"number\");\n      } else {\n\n        if (state.last == \"variable\") {\n          if (ch == \"@\") {\n            stream.eatWhile(regs.validIdentifier);\n            return helpers.cont(\"property\", \"property\");\n          } else if (ch == \"|\") {\n            stream.eatWhile(regs.validIdentifier);\n            return helpers.cont(\"qualifier\", \"modifier\");\n          }\n        } else if (state.last == \"pipe\") {\n          stream.eatWhile(regs.validIdentifier);\n          return helpers.cont(\"qualifier\", \"modifier\");\n        } else if (state.last == \"whitespace\") {\n          stream.eatWhile(regs.validIdentifier);\n          return helpers.cont(\"attribute\", \"modifier\");\n        } if (state.last == \"property\") {\n          stream.eatWhile(regs.validIdentifier);\n          return helpers.cont(\"property\", null);\n        } else if (/\\s/.test(ch)) {\n          last = \"whitespace\";\n          return null;\n        }\n\n        var str = \"\";\n        if (ch != \"/\") {\n          str += ch;\n        }\n        var c = null;\n        while (c = stream.eat(regs.validIdentifier)) {\n          str += c;\n        }\n        for (var i=0, j=keyFunctions.length; i<j; i++) {\n          if (keyFunctions[i] == str) {\n            return helpers.cont(\"keyword\", \"keyword\");\n          }\n        }\n        if (/\\s/.test(ch)) {\n          return null;\n        }\n        return helpers.cont(\"tag\", \"tag\");\n      }\n    },\n\n    inAttribute: function(quote) {\n      return function(stream, state) {\n        var prevChar = null;\n        var currChar = null;\n        while (!stream.eol()) {\n          currChar = stream.peek();\n          if (stream.next() == quote && prevChar !== '\\\\') {\n            state.tokenize = parsers.smarty;\n            break;\n          }\n          prevChar = currChar;\n        }\n        return \"string\";\n      };\n    },\n\n    inBlock: function(style, terminator) {\n      return function(stream, state) {\n        while (!stream.eol()) {\n          if (stream.match(terminator)) {\n            state.tokenize = parsers.tokenizer;\n            break;\n          }\n          stream.next();\n        }\n        return style;\n      };\n    }\n  };\n\n\n  // the public API for CodeMirror\n  return {\n    startState: function() {\n      return {\n        tokenize: parsers.tokenizer,\n        mode: \"smarty\",\n        last: null,\n        depth: 0\n      };\n    },\n    token: function(stream, state) {\n      var style = state.tokenize(stream, state);\n      state.last = last;\n      return style;\n    },\n    electricChars: \"\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-smarty\", \"smarty\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/smartymixed/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Smarty mixed mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../mode/xml/xml.js\"></script>\n<script src=\"../../mode/javascript/javascript.js\"></script>\n<script src=\"../../mode/css/css.js\"></script>\n<script src=\"../../mode/htmlmixed/htmlmixed.js\"></script>\n<script src=\"../../mode/smarty/smarty.js\"></script>\n<script src=\"../../mode/smartymixed/smartymixed.js\"></script>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Smarty mixed</a>\n  </ul>\n</div>\n\n<article>\n<h2>Smarty mixed mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n{**\n* @brief Smarty mixed mode\n* @author Ruslan Osmanov\n* @date 29.06.2013\n*}\n<html>\n<head>\n  <title>{$title|htmlspecialchars|truncate:30}</title>\n</head>\n<body class=\"{$bodyclass}\">\n  {* Multiline smarty\n  * comment, no {$variables} here\n  *}\n  {literal}\n  {literal} is just an HTML text.\n  <script type=\"text/javascript\">//<![CDATA[\n    var a = {$just_a_normal_js_object : \"value\"};\n    var myCodeMirror = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n      mode           : \"smartymixed\",\n      tabSize        : 2,\n      indentUnit     : 2,\n      indentWithTabs : false,\n      lineNumbers    : true,\n      smartyVersion  : 3\n    });\n    // ]]>\n  </script>\n  <style>\n    /* CSS content \n    {$no_smarty} */\n    .some-class { font-weight: bolder; color: \"orange\"; }\n  </style>\n  {/literal}\n\n  {extends file=\"parent.tpl\"}\n  {include file=\"template.tpl\"}\n\n  {* some example Smarty content *}\n  {if isset($name) && $name == 'Blog'}\n    This is a {$var}.\n    {$integer = 4511}, {$array[] = \"a\"}, {$stringvar = \"string\"}\n    {$integer = 4512} {$array[] = \"a\"} {$stringvar = \"string\"}\n    {assign var='bob' value=$var.prop}\n  {elseif $name == $foo}\n    {function name=menu level=0}\n    {foreach $data as $entry}\n      {if is_array($entry)}\n      - {$entry@key}\n      {menu data=$entry level=$level+1}\n      {else}\n      {$entry}\n      {* One\n      * Two\n      * Three\n      *}\n      {/if}\n    {/foreach}\n    {/function}\n  {/if}\n  </body>\n  <!-- R.O. -->\n</html>\n</textarea></form>\n\n    <script type=\"text/javascript\">\n      var myCodeMirror = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode           : \"smartymixed\",\n        tabSize        : 2,\n        indentUnit     : 2,\n        indentWithTabs : false,\n        lineNumbers    : true,\n        smartyVersion  : 3,\n        matchBrackets  : true,\n      });\n    </script>\n\n    <p>The Smarty mixed mode depends on the Smarty and HTML mixed modes. HTML\n    mixed mode itself depends on XML, JavaScript, and CSS modes.</p>\n\n    <p>It takes the same options, as Smarty and HTML mixed modes.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-smarty</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/smartymixed/smartymixed.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/**\n* @file smartymixed.js\n* @brief Smarty Mixed Codemirror mode (Smarty + Mixed HTML)\n* @author Ruslan Osmanov <rrosmanov at gmail dot com>\n* @version 3.0\n* @date 05.07.2013\n*/\n\n// Warning: Don't base other modes on this one. This here is a\n// terrible way to write a mixed mode.\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../htmlmixed/htmlmixed\"), require(\"../smarty/smarty\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../htmlmixed/htmlmixed\", \"../smarty/smarty\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"smartymixed\", function(config) {\n  var htmlMixedMode = CodeMirror.getMode(config, \"htmlmixed\");\n  var smartyMode = CodeMirror.getMode(config, \"smarty\");\n\n  var settings = {\n    rightDelimiter: '}',\n    leftDelimiter: '{'\n  };\n\n  if (config.hasOwnProperty(\"leftDelimiter\")) {\n    settings.leftDelimiter = config.leftDelimiter;\n  }\n  if (config.hasOwnProperty(\"rightDelimiter\")) {\n    settings.rightDelimiter = config.rightDelimiter;\n  }\n\n  function reEsc(str) { return str.replace(/[^\\s\\w]/g, \"\\\\$&\"); }\n\n  var reLeft = reEsc(settings.leftDelimiter), reRight = reEsc(settings.rightDelimiter);\n  var regs = {\n    smartyComment: new RegExp(\"^\" + reRight + \"\\\\*\"),\n    literalOpen: new RegExp(reLeft + \"literal\" + reRight),\n    literalClose: new RegExp(reLeft + \"\\/literal\" + reRight),\n    hasLeftDelimeter: new RegExp(\".*\" + reLeft),\n    htmlHasLeftDelimeter: new RegExp(\"[^<>]*\" + reLeft)\n  };\n\n  var helpers = {\n    chain: function(stream, state, parser) {\n      state.tokenize = parser;\n      return parser(stream, state);\n    },\n\n    cleanChain: function(stream, state, parser) {\n      state.tokenize = null;\n      state.localState = null;\n      state.localMode = null;\n      return (typeof parser == \"string\") ? (parser ? parser : null) : parser(stream, state);\n    },\n\n    maybeBackup: function(stream, pat, style) {\n      var cur = stream.current();\n      var close = cur.search(pat),\n      m;\n      if (close > - 1) stream.backUp(cur.length - close);\n      else if (m = cur.match(/<\\/?$/)) {\n        stream.backUp(cur.length);\n        if (!stream.match(pat, false)) stream.match(cur[0]);\n      }\n      return style;\n    }\n  };\n\n  var parsers = {\n    html: function(stream, state) {\n      var htmlTagName = state.htmlMixedState.htmlState.context && state.htmlMixedState.htmlState.context.tagName\n        ? state.htmlMixedState.htmlState.context.tagName\n        : null;\n\n      if (!state.inLiteral && stream.match(regs.htmlHasLeftDelimeter, false) && htmlTagName === null) {\n        state.tokenize = parsers.smarty;\n        state.localMode = smartyMode;\n        state.localState = smartyMode.startState(htmlMixedMode.indent(state.htmlMixedState, \"\"));\n        return helpers.maybeBackup(stream, settings.leftDelimiter, smartyMode.token(stream, state.localState));\n      } else if (!state.inLiteral && stream.match(settings.leftDelimiter, false)) {\n        state.tokenize = parsers.smarty;\n        state.localMode = smartyMode;\n        state.localState = smartyMode.startState(htmlMixedMode.indent(state.htmlMixedState, \"\"));\n        return helpers.maybeBackup(stream, settings.leftDelimiter, smartyMode.token(stream, state.localState));\n      }\n      return htmlMixedMode.token(stream, state.htmlMixedState);\n    },\n\n    smarty: function(stream, state) {\n      if (stream.match(settings.leftDelimiter, false)) {\n        if (stream.match(regs.smartyComment, false)) {\n          return helpers.chain(stream, state, parsers.inBlock(\"comment\", \"*\" + settings.rightDelimiter));\n        }\n      } else if (stream.match(settings.rightDelimiter, false)) {\n        stream.eat(settings.rightDelimiter);\n        state.tokenize = parsers.html;\n        state.localMode = htmlMixedMode;\n        state.localState = state.htmlMixedState;\n        return \"tag\";\n      }\n\n      return helpers.maybeBackup(stream, settings.rightDelimiter, smartyMode.token(stream, state.localState));\n    },\n\n    inBlock: function(style, terminator) {\n      return function(stream, state) {\n        while (!stream.eol()) {\n          if (stream.match(terminator)) {\n            helpers.cleanChain(stream, state, \"\");\n            break;\n          }\n          stream.next();\n        }\n        return style;\n      };\n    }\n  };\n\n  return {\n    startState: function() {\n      var state = htmlMixedMode.startState();\n      return {\n        token: parsers.html,\n        localMode: null,\n        localState: null,\n        htmlMixedState: state,\n        tokenize: null,\n        inLiteral: false\n      };\n    },\n\n    copyState: function(state) {\n      var local = null, tok = (state.tokenize || state.token);\n      if (state.localState) {\n        local = CodeMirror.copyState((tok != parsers.html ? smartyMode : htmlMixedMode), state.localState);\n      }\n      return {\n        token: state.token,\n        tokenize: state.tokenize,\n        localMode: state.localMode,\n        localState: local,\n        htmlMixedState: CodeMirror.copyState(htmlMixedMode, state.htmlMixedState),\n        inLiteral: state.inLiteral\n      };\n    },\n\n    token: function(stream, state) {\n      if (stream.match(settings.leftDelimiter, false)) {\n        if (!state.inLiteral && stream.match(regs.literalOpen, true)) {\n          state.inLiteral = true;\n          return \"keyword\";\n        } else if (state.inLiteral && stream.match(regs.literalClose, true)) {\n          state.inLiteral = false;\n          return \"keyword\";\n        }\n      }\n      if (state.inLiteral && state.localState != state.htmlMixedState) {\n        state.tokenize = parsers.html;\n        state.localMode = htmlMixedMode;\n        state.localState = state.htmlMixedState;\n      }\n\n      var style = (state.tokenize || state.token)(stream, state);\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.localMode == smartyMode\n          || (state.inLiteral && !state.localMode)\n         || regs.hasLeftDelimeter.test(textAfter)) {\n        return CodeMirror.Pass;\n      }\n      return htmlMixedMode.indent(state.htmlMixedState, textAfter);\n    },\n\n    innerMode: function(state) {\n      return {\n        state: state.localState || state.htmlMixedState,\n        mode: state.localMode || htmlMixedMode\n      };\n    }\n  };\n}, \"htmlmixed\", \"smarty\");\n\nCodeMirror.defineMIME(\"text/x-smarty\", \"smartymixed\");\n// vim: et ts=2 sts=2 sw=2\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/solr/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Solr mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"solr.js\"></script>\n<style type=\"text/css\">\n  .CodeMirror {\n    border-top: 1px solid black;\n    border-bottom: 1px solid black;\n  }\n\n  .CodeMirror .cm-operator {\n    color: orange;\n  }\n</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Solr</a>\n  </ul>\n</div>\n\n<article>\n  <h2>Solr mode</h2>\n\n  <div>\n    <textarea id=\"code\" name=\"code\">author:Camus\n\ntitle:\"The Rebel\" and author:Camus\n\nphilosophy:Existentialism -author:Kierkegaard\n\nhardToSpell:Dostoevsky~\n\npublished:[194* TO 1960] and author:(Sartre or \"Simone de Beauvoir\")</textarea>\n  </div>\n\n  <script>\n    var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n      mode: 'solr',\n      lineNumbers: true\n    });\n  </script>\n\n  <p><strong>MIME types defined:</strong> <code>text/x-solr</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/solr/solr.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"solr\", function() {\n  \"use strict\";\n\n  var isStringChar = /[^\\s\\|\\!\\+\\-\\*\\?\\~\\^\\&\\:\\(\\)\\[\\]\\{\\}\\^\\\"\\\\]/;\n  var isOperatorChar = /[\\|\\!\\+\\-\\*\\?\\~\\^\\&]/;\n  var isOperatorString = /^(OR|AND|NOT|TO)$/i;\n\n  function isNumber(word) {\n    return parseFloat(word, 10).toString() === word;\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) break;\n        escaped = !escaped && next == \"\\\\\";\n      }\n\n      if (!escaped) state.tokenize = tokenBase;\n      return \"string\";\n    };\n  }\n\n  function tokenOperator(operator) {\n    return function(stream, state) {\n      var style = \"operator\";\n      if (operator == \"+\")\n        style += \" positive\";\n      else if (operator == \"-\")\n        style += \" negative\";\n      else if (operator == \"|\")\n        stream.eat(/\\|/);\n      else if (operator == \"&\")\n        stream.eat(/\\&/);\n      else if (operator == \"^\")\n        style += \" boost\";\n\n      state.tokenize = tokenBase;\n      return style;\n    };\n  }\n\n  function tokenWord(ch) {\n    return function(stream, state) {\n      var word = ch;\n      while ((ch = stream.peek()) && ch.match(isStringChar) != null) {\n        word += stream.next();\n      }\n\n      state.tokenize = tokenBase;\n      if (isOperatorString.test(word))\n        return \"operator\";\n      else if (isNumber(word))\n        return \"number\";\n      else if (stream.peek() == \":\")\n        return \"field\";\n      else\n        return \"string\";\n    };\n  }\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    if (ch == '\"')\n      state.tokenize = tokenString(ch);\n    else if (isOperatorChar.test(ch))\n      state.tokenize = tokenOperator(ch);\n    else if (isStringChar.test(ch))\n      state.tokenize = tokenWord(ch);\n\n    return (state.tokenize != tokenBase) ? state.tokenize(stream, state) : null;\n  }\n\n  return {\n    startState: function() {\n      return {\n        tokenize: tokenBase\n      };\n    },\n\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      return state.tokenize(stream, state);\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-solr\", \"solr\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/sparql/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: SPARQL mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"sparql.js\"></script>\n<style>.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">SPARQL</a>\n  </ul>\n</div>\n\n<article>\n<h2>SPARQL mode</h2>\n<form><textarea id=\"code\" name=\"code\">\nPREFIX a: &lt;http://www.w3.org/2000/10/annotation-ns#>\nPREFIX dc: &lt;http://purl.org/dc/elements/1.1/>\nPREFIX foaf: &lt;http://xmlns.com/foaf/0.1/>\n\n# Comment!\n\nSELECT ?given ?family\nWHERE {\n  ?annot a:annotates &lt;http://www.w3.org/TR/rdf-sparql-query/> .\n  ?annot dc:creator ?c .\n  OPTIONAL {?c foaf:given ?given ;\n               foaf:family ?family } .\n  FILTER isBlank(?c)\n}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: \"application/x-sparql-query\",\n        matchBrackets: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>application/x-sparql-query</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/sparql/sparql.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"sparql\", function(config) {\n  var indentUnit = config.indentUnit;\n  var curPunc;\n\n  function wordRegexp(words) {\n    return new RegExp(\"^(?:\" + words.join(\"|\") + \")$\", \"i\");\n  }\n  var ops = wordRegexp([\"str\", \"lang\", \"langmatches\", \"datatype\", \"bound\", \"sameterm\", \"isiri\", \"isuri\",\n                        \"isblank\", \"isliteral\", \"a\"]);\n  var keywords = wordRegexp([\"base\", \"prefix\", \"select\", \"distinct\", \"reduced\", \"construct\", \"describe\",\n                             \"ask\", \"from\", \"named\", \"where\", \"order\", \"limit\", \"offset\", \"filter\", \"optional\",\n                             \"graph\", \"by\", \"asc\", \"desc\", \"as\", \"having\", \"undef\", \"values\", \"group\",\n                             \"minus\", \"in\", \"not\", \"service\", \"silent\", \"using\", \"insert\", \"delete\", \"union\",\n                             \"data\", \"copy\", \"to\", \"move\", \"add\", \"create\", \"drop\", \"clear\", \"load\"]);\n  var operatorChars = /[*+\\-<>=&|]/;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    curPunc = null;\n    if (ch == \"$\" || ch == \"?\") {\n      stream.match(/^[\\w\\d]*/);\n      return \"variable-2\";\n    }\n    else if (ch == \"<\" && !stream.match(/^[\\s\\u00a0=]/, false)) {\n      stream.match(/^[^\\s\\u00a0>]*>?/);\n      return \"atom\";\n    }\n    else if (ch == \"\\\"\" || ch == \"'\") {\n      state.tokenize = tokenLiteral(ch);\n      return state.tokenize(stream, state);\n    }\n    else if (/[{}\\(\\),\\.;\\[\\]]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    else if (ch == \"#\") {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n    else if (operatorChars.test(ch)) {\n      stream.eatWhile(operatorChars);\n      return null;\n    }\n    else if (ch == \":\") {\n      stream.eatWhile(/[\\w\\d\\._\\-]/);\n      return \"atom\";\n    }\n    else {\n      stream.eatWhile(/[_\\w\\d]/);\n      if (stream.eat(\":\")) {\n        stream.eatWhile(/[\\w\\d_\\-]/);\n        return \"atom\";\n      }\n      var word = stream.current();\n      if (ops.test(word))\n        return null;\n      else if (keywords.test(word))\n        return \"keyword\";\n      else\n        return \"variable\";\n    }\n  }\n\n  function tokenLiteral(quote) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && !escaped) {\n          state.tokenize = tokenBase;\n          break;\n        }\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      return \"string\";\n    };\n  }\n\n  function pushContext(state, type, col) {\n    state.context = {prev: state.context, indent: state.indent, col: col, type: type};\n  }\n  function popContext(state) {\n    state.indent = state.context.indent;\n    state.context = state.context.prev;\n  }\n\n  return {\n    startState: function() {\n      return {tokenize: tokenBase,\n              context: null,\n              indent: 0,\n              col: 0};\n    },\n\n    token: function(stream, state) {\n      if (stream.sol()) {\n        if (state.context && state.context.align == null) state.context.align = false;\n        state.indent = stream.indentation();\n      }\n      if (stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n\n      if (style != \"comment\" && state.context && state.context.align == null && state.context.type != \"pattern\") {\n        state.context.align = true;\n      }\n\n      if (curPunc == \"(\") pushContext(state, \")\", stream.column());\n      else if (curPunc == \"[\") pushContext(state, \"]\", stream.column());\n      else if (curPunc == \"{\") pushContext(state, \"}\", stream.column());\n      else if (/[\\]\\}\\)]/.test(curPunc)) {\n        while (state.context && state.context.type == \"pattern\") popContext(state);\n        if (state.context && curPunc == state.context.type) popContext(state);\n      }\n      else if (curPunc == \".\" && state.context && state.context.type == \"pattern\") popContext(state);\n      else if (/atom|string|variable/.test(style) && state.context) {\n        if (/[\\}\\]]/.test(state.context.type))\n          pushContext(state, \"pattern\", stream.column());\n        else if (state.context.type == \"pattern\" && !state.context.align) {\n          state.context.align = true;\n          state.context.col = stream.column();\n        }\n      }\n\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      var firstChar = textAfter && textAfter.charAt(0);\n      var context = state.context;\n      if (/[\\]\\}]/.test(firstChar))\n        while (context && context.type == \"pattern\") context = context.prev;\n\n      var closing = context && firstChar == context.type;\n      if (!context)\n        return 0;\n      else if (context.type == \"pattern\")\n        return context.col;\n      else if (context.align)\n        return context.col + (closing ? 0 : 1);\n      else\n        return context.indent + (closing ? 0 : indentUnit);\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"application/x-sparql-query\", \"sparql\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/sql/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: SQL Mode for CodeMirror</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\" />\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"sql.js\"></script>\n<link rel=\"stylesheet\" href=\"../../addon/hint/show-hint.css\" />\n<script src=\"../../addon/hint/show-hint.js\"></script>\n<script src=\"../../addon/hint/sql-hint.js\"></script>\n<style>\n.CodeMirror {\n    border-top: 1px solid black;\n    border-bottom: 1px solid black;\n}\n        </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">SQL Mode for CodeMirror</a>\n  </ul>\n</div>\n\n<article>\n<h2>SQL Mode for CodeMirror</h2>\n<form>\n            <textarea id=\"code\" name=\"code\">-- SQL Mode for CodeMirror\nSELECT SQL_NO_CACHE DISTINCT\n\t\t@var1 AS `val1`, @'val2', @global.'sql_mode',\n\t\t1.1 AS `float_val`, .14 AS `another_float`, 0.09e3 AS `int_with_esp`,\n\t\t0xFA5 AS `hex`, x'fa5' AS `hex2`, 0b101 AS `bin`, b'101' AS `bin2`,\n\t\tDATE '1994-01-01' AS `sql_date`, { T \"1994-01-01\" } AS `odbc_date`,\n\t\t'my string', _utf8'your string', N'her string',\n        TRUE, FALSE, UNKNOWN\n\tFROM DUAL\n\t-- space needed after '--'\n\t# 1 line comment\n\t/* multiline\n\tcomment! */\n\tLIMIT 1 OFFSET 0;\n</textarea>\n            </form>\n            <p><strong>MIME types defined:</strong> \n            <code><a href=\"?mime=text/x-sql\">text/x-sql</a></code>,\n            <code><a href=\"?mime=text/x-mysql\">text/x-mysql</a></code>,\n            <code><a href=\"?mime=text/x-mariadb\">text/x-mariadb</a></code>,\n            <code><a href=\"?mime=text/x-cassandra\">text/x-cassandra</a></code>,\n            <code><a href=\"?mime=text/x-plsql\">text/x-plsql</a></code>,\n            <code><a href=\"?mime=text/x-mssql\">text/x-mssql</a></code>,\n            <code><a href=\"?mime=text/x-hive\">text/x-hive</a></code>.\n        </p>\n<script>\nwindow.onload = function() {\n  var mime = 'text/x-mariadb';\n  // get mime type\n  if (window.location.href.indexOf('mime=') > -1) {\n    mime = window.location.href.substr(window.location.href.indexOf('mime=') + 5);\n  }\n  window.editor = CodeMirror.fromTextArea(document.getElementById('code'), {\n    mode: mime,\n    indentWithTabs: true,\n    smartIndent: true,\n    lineNumbers: true,\n    matchBrackets : true,\n    autofocus: true,\n    extraKeys: {\"Ctrl-Space\": \"autocomplete\"},\n    hintOptions: {tables: {\n      users: {name: null, score: null, birthDate: null},\n      countries: {name: null, population: null, size: null}\n    }}\n  });\n};\n</script>\n\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/sql/sql.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"sql\", function(config, parserConfig) {\n  \"use strict\";\n\n  var client         = parserConfig.client || {},\n      atoms          = parserConfig.atoms || {\"false\": true, \"true\": true, \"null\": true},\n      builtin        = parserConfig.builtin || {},\n      keywords       = parserConfig.keywords || {},\n      operatorChars  = parserConfig.operatorChars || /^[*+\\-%<>!=&|~^]/,\n      support        = parserConfig.support || {},\n      hooks          = parserConfig.hooks || {},\n      dateSQL        = parserConfig.dateSQL || {\"date\" : true, \"time\" : true, \"timestamp\" : true};\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n\n    // call hooks from the mime type\n    if (hooks[ch]) {\n      var result = hooks[ch](stream, state);\n      if (result !== false) return result;\n    }\n\n    if (support.hexNumber == true &&\n      ((ch == \"0\" && stream.match(/^[xX][0-9a-fA-F]+/))\n      || (ch == \"x\" || ch == \"X\") && stream.match(/^'[0-9a-fA-F]+'/))) {\n      // hex\n      // ref: http://dev.mysql.com/doc/refman/5.5/en/hexadecimal-literals.html\n      return \"number\";\n    } else if (support.binaryNumber == true &&\n      (((ch == \"b\" || ch == \"B\") && stream.match(/^'[01]+'/))\n      || (ch == \"0\" && stream.match(/^b[01]+/)))) {\n      // bitstring\n      // ref: http://dev.mysql.com/doc/refman/5.5/en/bit-field-literals.html\n      return \"number\";\n    } else if (ch.charCodeAt(0) > 47 && ch.charCodeAt(0) < 58) {\n      // numbers\n      // ref: http://dev.mysql.com/doc/refman/5.5/en/number-literals.html\n          stream.match(/^[0-9]*\\.?[0-9]+([eE][-+]?[0-9]+)?/);\n      support.decimallessFloat == true && stream.eat('.');\n      return \"number\";\n    } else if (ch == \"?\" && (stream.eatSpace() || stream.eol() || stream.eat(\";\"))) {\n      // placeholders\n      return \"variable-3\";\n    } else if (ch == \"'\" || (ch == '\"' && support.doubleQuote)) {\n      // strings\n      // ref: http://dev.mysql.com/doc/refman/5.5/en/string-literals.html\n      state.tokenize = tokenLiteral(ch);\n      return state.tokenize(stream, state);\n    } else if ((((support.nCharCast == true && (ch == \"n\" || ch == \"N\"))\n        || (support.charsetCast == true && ch == \"_\" && stream.match(/[a-z][a-z0-9]*/i)))\n        && (stream.peek() == \"'\" || stream.peek() == '\"'))) {\n      // charset casting: _utf8'str', N'str', n'str'\n      // ref: http://dev.mysql.com/doc/refman/5.5/en/string-literals.html\n      return \"keyword\";\n    } else if (/^[\\(\\),\\;\\[\\]]/.test(ch)) {\n      // no highlightning\n      return null;\n    } else if (support.commentSlashSlash && ch == \"/\" && stream.eat(\"/\")) {\n      // 1-line comment\n      stream.skipToEnd();\n      return \"comment\";\n    } else if ((support.commentHash && ch == \"#\")\n        || (ch == \"-\" && stream.eat(\"-\") && (!support.commentSpaceRequired || stream.eat(\" \")))) {\n      // 1-line comments\n      // ref: https://kb.askmonty.org/en/comment-syntax/\n      stream.skipToEnd();\n      return \"comment\";\n    } else if (ch == \"/\" && stream.eat(\"*\")) {\n      // multi-line comments\n      // ref: https://kb.askmonty.org/en/comment-syntax/\n      state.tokenize = tokenComment;\n      return state.tokenize(stream, state);\n    } else if (ch == \".\") {\n      // .1 for 0.1\n      if (support.zerolessFloat == true && stream.match(/^(?:\\d+(?:e[+-]?\\d+)?)/i)) {\n        return \"number\";\n      }\n      // .table_name (ODBC)\n      // // ref: http://dev.mysql.com/doc/refman/5.6/en/identifier-qualifiers.html\n      if (support.ODBCdotTable == true && stream.match(/^[a-zA-Z_]+/)) {\n        return \"variable-2\";\n      }\n    } else if (operatorChars.test(ch)) {\n      // operators\n      stream.eatWhile(operatorChars);\n      return null;\n    } else if (ch == '{' &&\n        (stream.match(/^( )*(d|D|t|T|ts|TS)( )*'[^']*'( )*}/) || stream.match(/^( )*(d|D|t|T|ts|TS)( )*\"[^\"]*\"( )*}/))) {\n      // dates (weird ODBC syntax)\n      // ref: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-literals.html\n      return \"number\";\n    } else {\n      stream.eatWhile(/^[_\\w\\d]/);\n      var word = stream.current().toLowerCase();\n      // dates (standard SQL syntax)\n      // ref: http://dev.mysql.com/doc/refman/5.5/en/date-and-time-literals.html\n      if (dateSQL.hasOwnProperty(word) && (stream.match(/^( )+'[^']*'/) || stream.match(/^( )+\"[^\"]*\"/)))\n        return \"number\";\n      if (atoms.hasOwnProperty(word)) return \"atom\";\n      if (builtin.hasOwnProperty(word)) return \"builtin\";\n      if (keywords.hasOwnProperty(word)) return \"keyword\";\n      if (client.hasOwnProperty(word)) return \"string-2\";\n      return null;\n    }\n  }\n\n  // 'string', with char specified in quote escaped by '\\'\n  function tokenLiteral(quote) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && !escaped) {\n          state.tokenize = tokenBase;\n          break;\n        }\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      return \"string\";\n    };\n  }\n  function tokenComment(stream, state) {\n    while (true) {\n      if (stream.skipTo(\"*\")) {\n        stream.next();\n        if (stream.eat(\"/\")) {\n          state.tokenize = tokenBase;\n          break;\n        }\n      } else {\n        stream.skipToEnd();\n        break;\n      }\n    }\n    return \"comment\";\n  }\n\n  function pushContext(stream, state, type) {\n    state.context = {\n      prev: state.context,\n      indent: stream.indentation(),\n      col: stream.column(),\n      type: type\n    };\n  }\n\n  function popContext(state) {\n    state.indent = state.context.indent;\n    state.context = state.context.prev;\n  }\n\n  return {\n    startState: function() {\n      return {tokenize: tokenBase, context: null};\n    },\n\n    token: function(stream, state) {\n      if (stream.sol()) {\n        if (state.context && state.context.align == null)\n          state.context.align = false;\n      }\n      if (stream.eatSpace()) return null;\n\n      var style = state.tokenize(stream, state);\n      if (style == \"comment\") return style;\n\n      if (state.context && state.context.align == null)\n        state.context.align = true;\n\n      var tok = stream.current();\n      if (tok == \"(\")\n        pushContext(stream, state, \")\");\n      else if (tok == \"[\")\n        pushContext(stream, state, \"]\");\n      else if (state.context && state.context.type == tok)\n        popContext(state);\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      var cx = state.context;\n      if (!cx) return 0;\n      var closing = textAfter.charAt(0) == cx.type;\n      if (cx.align) return cx.col + (closing ? 0 : 1);\n      else return cx.indent + (closing ? 0 : config.indentUnit);\n    },\n\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\",\n    lineComment: support.commentSlashSlash ? \"//\" : support.commentHash ? \"#\" : null\n  };\n});\n\n(function() {\n  \"use strict\";\n\n  // `identifier`\n  function hookIdentifier(stream) {\n    // MySQL/MariaDB identifiers\n    // ref: http://dev.mysql.com/doc/refman/5.6/en/identifier-qualifiers.html\n    var ch;\n    while ((ch = stream.next()) != null) {\n      if (ch == \"`\" && !stream.eat(\"`\")) return \"variable-2\";\n    }\n    stream.backUp(stream.current().length - 1);\n    return stream.eatWhile(/\\w/) ? \"variable-2\" : null;\n  }\n\n  // variable token\n  function hookVar(stream) {\n    // variables\n    // @@prefix.varName @varName\n    // varName can be quoted with ` or ' or \"\n    // ref: http://dev.mysql.com/doc/refman/5.5/en/user-variables.html\n    if (stream.eat(\"@\")) {\n      stream.match(/^session\\./);\n      stream.match(/^local\\./);\n      stream.match(/^global\\./);\n    }\n\n    if (stream.eat(\"'\")) {\n      stream.match(/^.*'/);\n      return \"variable-2\";\n    } else if (stream.eat('\"')) {\n      stream.match(/^.*\"/);\n      return \"variable-2\";\n    } else if (stream.eat(\"`\")) {\n      stream.match(/^.*`/);\n      return \"variable-2\";\n    } else if (stream.match(/^[0-9a-zA-Z$\\.\\_]+/)) {\n      return \"variable-2\";\n    }\n    return null;\n  };\n\n  // short client keyword token\n  function hookClient(stream) {\n    // \\N means NULL\n    // ref: http://dev.mysql.com/doc/refman/5.5/en/null-values.html\n    if (stream.eat(\"N\")) {\n        return \"atom\";\n    }\n    // \\g, etc\n    // ref: http://dev.mysql.com/doc/refman/5.5/en/mysql-commands.html\n    return stream.match(/^[a-zA-Z.#!?]/) ? \"variable-2\" : null;\n  }\n\n  // these keywords are used by all SQL dialects (however, a mode can still overwrite it)\n  var sqlKeywords = \"alter and as asc between by count create delete desc distinct drop from having in insert into is join like not on or order select set table union update values where \";\n\n  // turn a space-separated list into an array\n  function set(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  // A generic SQL Mode. It's not a standard, it just try to support what is generally supported\n  CodeMirror.defineMIME(\"text/x-sql\", {\n    name: \"sql\",\n    keywords: set(sqlKeywords + \"begin\"),\n    builtin: set(\"bool boolean bit blob enum long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision real date datetime year unsigned signed decimal numeric\"),\n    atoms: set(\"false true null unknown\"),\n    operatorChars: /^[*+\\-%<>!=]/,\n    dateSQL: set(\"date time timestamp\"),\n    support: set(\"ODBCdotTable doubleQuote binaryNumber hexNumber\")\n  });\n\n  CodeMirror.defineMIME(\"text/x-mssql\", {\n    name: \"sql\",\n    client: set(\"charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee\"),\n    keywords: set(sqlKeywords + \"begin trigger proc view index for add constraint key primary foreign collate clustered nonclustered\"),\n    builtin: set(\"bigint numeric bit smallint decimal smallmoney int tinyint money float real char varchar text nchar nvarchar ntext binary varbinary image cursor timestamp hierarchyid uniqueidentifier sql_variant xml table \"),\n    atoms: set(\"false true null unknown\"),\n    operatorChars: /^[*+\\-%<>!=]/,\n    dateSQL: set(\"date datetimeoffset datetime2 smalldatetime datetime time\"),\n    hooks: {\n      \"@\":   hookVar\n    }\n  });\n\n  CodeMirror.defineMIME(\"text/x-mysql\", {\n    name: \"sql\",\n    client: set(\"charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee\"),\n    keywords: set(sqlKeywords + \"accessible action add after algorithm all analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general get global grant grants group groupby_concat handler hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show signal slave slow smallint snapshot soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views warnings when while with work write xa xor year_month zerofill begin do then else loop repeat\"),\n    builtin: set(\"bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric\"),\n    atoms: set(\"false true null unknown\"),\n    operatorChars: /^[*+\\-%<>!=&|^]/,\n    dateSQL: set(\"date time timestamp\"),\n    support: set(\"ODBCdotTable decimallessFloat zerolessFloat binaryNumber hexNumber doubleQuote nCharCast charsetCast commentHash commentSpaceRequired\"),\n    hooks: {\n      \"@\":   hookVar,\n      \"`\":   hookIdentifier,\n      \"\\\\\":  hookClient\n    }\n  });\n\n  CodeMirror.defineMIME(\"text/x-mariadb\", {\n    name: \"sql\",\n    client: set(\"charset clear connect edit ego exit go help nopager notee nowarning pager print prompt quit rehash source status system tee\"),\n    keywords: set(sqlKeywords + \"accessible action add after algorithm all always analyze asensitive at authors auto_increment autocommit avg avg_row_length before binary binlog both btree cache call cascade cascaded case catalog_name chain change changed character check checkpoint checksum class_origin client_statistics close coalesce code collate collation collations column columns comment commit committed completion concurrent condition connection consistent constraint contains continue contributors convert cross current current_date current_time current_timestamp current_user cursor data database databases day_hour day_microsecond day_minute day_second deallocate dec declare default delay_key_write delayed delimiter des_key_file describe deterministic dev_pop dev_samp deviance diagnostics directory disable discard distinctrow div dual dumpfile each elseif enable enclosed end ends engine engines enum errors escape escaped even event events every execute exists exit explain extended fast fetch field fields first flush for force foreign found_rows full fulltext function general generated get global grant grants group groupby_concat handler hard hash help high_priority hosts hour_microsecond hour_minute hour_second if ignore ignore_server_ids import index index_statistics infile inner innodb inout insensitive insert_method install interval invoker isolation iterate key keys kill language last leading leave left level limit linear lines list load local localtime localtimestamp lock logs low_priority master master_heartbeat_period master_ssl_verify_server_cert masters match max max_rows maxvalue message_text middleint migrate min min_rows minute_microsecond minute_second mod mode modifies modify mutex mysql_errno natural next no no_write_to_binlog offline offset one online open optimize option optionally out outer outfile pack_keys parser partition partitions password persistent phase plugin plugins prepare preserve prev primary privileges procedure processlist profile profiles purge query quick range read read_write reads real rebuild recover references regexp relaylog release remove rename reorganize repair repeatable replace require resignal restrict resume return returns revoke right rlike rollback rollup row row_format rtree savepoint schedule schema schema_name schemas second_microsecond security sensitive separator serializable server session share show shutdown signal slave slow smallint snapshot soft soname spatial specific sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_no_cache sql_small_result sqlexception sqlstate sqlwarning ssl start starting starts status std stddev stddev_pop stddev_samp storage straight_join subclass_origin sum suspend table_name table_statistics tables tablespace temporary terminated to trailing transaction trigger triggers truncate uncommitted undo uninstall unique unlock upgrade usage use use_frm user user_resources user_statistics using utc_date utc_time utc_timestamp value variables varying view views virtual warnings when while with work write xa xor year_month zerofill begin do then else loop repeat\"),\n    builtin: set(\"bool boolean bit blob decimal double float long longblob longtext medium mediumblob mediumint mediumtext time timestamp tinyblob tinyint tinytext text bigint int int1 int2 int3 int4 int8 integer float float4 float8 double char varbinary varchar varcharacter precision date datetime year unsigned signed numeric\"),\n    atoms: set(\"false true null unknown\"),\n    operatorChars: /^[*+\\-%<>!=&|^]/,\n    dateSQL: set(\"date time timestamp\"),\n    support: set(\"ODBCdotTable decimallessFloat zerolessFloat binaryNumber hexNumber doubleQuote nCharCast charsetCast commentHash commentSpaceRequired\"),\n    hooks: {\n      \"@\":   hookVar,\n      \"`\":   hookIdentifier,\n      \"\\\\\":  hookClient\n    }\n  });\n\n  // the query language used by Apache Cassandra is called CQL, but this mime type\n  // is called Cassandra to avoid confusion with Contextual Query Language\n  CodeMirror.defineMIME(\"text/x-cassandra\", {\n    name: \"sql\",\n    client: { },\n    keywords: set(\"use select from using consistency where limit first reversed first and in insert into values using consistency ttl update set delete truncate begin batch apply create keyspace with columnfamily primary key index on drop alter type add any one quorum all local_quorum each_quorum\"),\n    builtin: set(\"ascii bigint blob boolean counter decimal double float int text timestamp uuid varchar varint\"),\n    atoms: set(\"false true\"),\n    operatorChars: /^[<>=]/,\n    dateSQL: { },\n    support: set(\"commentSlashSlash decimallessFloat\"),\n    hooks: { }\n  });\n\n  // this is based on Peter Raganitsch's 'plsql' mode\n  CodeMirror.defineMIME(\"text/x-plsql\", {\n    name:       \"sql\",\n    client:     set(\"appinfo arraysize autocommit autoprint autorecovery autotrace blockterminator break btitle cmdsep colsep compatibility compute concat copycommit copytypecheck define describe echo editfile embedded escape exec execute feedback flagger flush heading headsep instance linesize lno loboffset logsource long longchunksize markup native newpage numformat numwidth pagesize pause pno recsep recsepchar release repfooter repheader serveroutput shiftinout show showmode size spool sqlblanklines sqlcase sqlcode sqlcontinue sqlnumber sqlpluscompatibility sqlprefix sqlprompt sqlterminator suffix tab term termout time timing trimout trimspool ttitle underline verify version wrap\"),\n    keywords:   set(\"abort accept access add all alter and any array arraylen as asc assert assign at attributes audit authorization avg base_table begin between binary_integer body boolean by case cast char char_base check close cluster clusters colauth column comment commit compress connect connected constant constraint crash create current currval cursor data_base database date dba deallocate debugoff debugon decimal declare default definition delay delete desc digits dispose distinct do drop else elseif elsif enable end entry escape exception exception_init exchange exclusive exists exit external fast fetch file for force form from function generic goto grant group having identified if immediate in increment index indexes indicator initial initrans insert interface intersect into is key level library like limited local lock log logging long loop master maxextents maxtrans member minextents minus mislabel mode modify multiset new next no noaudit nocompress nologging noparallel not nowait number_base object of off offline on online only open option or order out package parallel partition pctfree pctincrease pctused pls_integer positive positiven pragma primary prior private privileges procedure public raise range raw read rebuild record ref references refresh release rename replace resource restrict return returning returns reverse revoke rollback row rowid rowlabel rownum rows run savepoint schema segment select separate session set share snapshot some space split sql start statement storage subtype successful synonym tabauth table tables tablespace task terminate then to trigger truncate type union unique unlimited unrecoverable unusable update use using validate value values variable view views when whenever where while with work\"),\n    builtin:    set(\"abs acos add_months ascii asin atan atan2 average bfile bfilename bigserial bit blob ceil character chartorowid chr clob concat convert cos cosh count dec decode deref dual dump dup_val_on_index empty error exp false float floor found glb greatest hextoraw initcap instr instrb int integer isopen last_day least lenght lenghtb ln lower lpad ltrim lub make_ref max min mlslabel mod months_between natural naturaln nchar nclob new_time next_day nextval nls_charset_decl_len nls_charset_id nls_charset_name nls_initcap nls_lower nls_sort nls_upper nlssort no_data_found notfound null number numeric nvarchar2 nvl others power rawtohex real reftohex round rowcount rowidtochar rowtype rpad rtrim serial sign signtype sin sinh smallint soundex sqlcode sqlerrm sqrt stddev string substr substrb sum sysdate tan tanh to_char text to_date to_label to_multi_byte to_number to_single_byte translate true trunc uid unlogged upper user userenv varchar varchar2 variance varying vsize xml\"),\n    operatorChars: /^[*+\\-%<>!=~]/,\n    dateSQL:    set(\"date time timestamp\"),\n    support:    set(\"doubleQuote nCharCast zerolessFloat binaryNumber hexNumber\")\n  });\n\n  // Created to support specific hive keywords\n  CodeMirror.defineMIME(\"text/x-hive\", {\n    name: \"sql\",\n    keywords: set(\"select alter $elem$ $key$ $value$ add after all analyze and archive as asc before between binary both bucket buckets by cascade case cast change cluster clustered clusterstatus collection column columns comment compute concatenate continue create cross cursor data database databases dbproperties deferred delete delimited desc describe directory disable distinct distribute drop else enable end escaped exclusive exists explain export extended external false fetch fields fileformat first format formatted from full function functions grant group having hold_ddltime idxproperties if import in index indexes inpath inputdriver inputformat insert intersect into is items join keys lateral left like limit lines load local location lock locks mapjoin materialized minus msck no_drop nocompress not of offline on option or order out outer outputdriver outputformat overwrite partition partitioned partitions percent plus preserve procedure purge range rcfile read readonly reads rebuild recordreader recordwriter recover reduce regexp rename repair replace restrict revoke right rlike row schema schemas semi sequencefile serde serdeproperties set shared show show_database sort sorted ssl statistics stored streamtable table tables tablesample tblproperties temporary terminated textfile then tmp to touch transform trigger true unarchive undo union uniquejoin unlock update use using utc utc_tmestamp view when where while with\"),\n    builtin: set(\"bool boolean long timestamp tinyint smallint bigint int float double date datetime unsigned string array struct map uniontype\"),\n    atoms: set(\"false true null unknown\"),\n    operatorChars: /^[*+\\-%<>!=]/,\n    dateSQL: set(\"date timestamp\"),\n    support: set(\"ODBCdotTable doubleQuote binaryNumber hexNumber\")\n  });\n}());\n\n});\n\n/*\n  How Properties of Mime Types are used by SQL Mode\n  =================================================\n\n  keywords:\n    A list of keywords you want to be highlighted.\n  functions:\n    A list of function names you want to be highlighted.\n  builtin:\n    A list of builtin types you want to be highlighted (if you want types to be of class \"builtin\" instead of \"keyword\").\n  operatorChars:\n    All characters that must be handled as operators.\n  client:\n    Commands parsed and executed by the client (not the server).\n  support:\n    A list of supported syntaxes which are not common, but are supported by more than 1 DBMS.\n    * ODBCdotTable: .tableName\n    * zerolessFloat: .1\n    * doubleQuote\n    * nCharCast: N'string'\n    * charsetCast: _utf8'string'\n    * commentHash: use # char for comments\n    * commentSlashSlash: use // for comments\n    * commentSpaceRequired: require a space after -- for comments\n  atoms:\n    Keywords that must be highlighted as atoms,. Some DBMS's support more atoms than others:\n    UNKNOWN, INFINITY, UNDERFLOW, NaN...\n  dateSQL:\n    Used for date/time SQL standard syntax, because not all DBMS's support same temporal types.\n*/\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/stex/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: sTeX mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"stex.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">sTeX</a>\n  </ul>\n</div>\n\n<article>\n<h2>sTeX mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n\\begin{module}[id=bbt-size]\n\\importmodule[balanced-binary-trees]{balanced-binary-trees}\n\\importmodule[\\KWARCslides{dmath/en/cardinality}]{cardinality}\n\n\\begin{frame}\n  \\frametitle{Size Lemma for Balanced Trees}\n  \\begin{itemize}\n  \\item\n    \\begin{assertion}[id=size-lemma,type=lemma] \n    Let $G=\\tup{V,E}$ be a \\termref[cd=binary-trees]{balanced binary tree} \n    of \\termref[cd=graph-depth,name=vertex-depth]{depth}$n>i$, then the set\n     $\\defeq{\\livar{V}i}{\\setst{\\inset{v}{V}}{\\gdepth{v} = i}}$ of\n    \\termref[cd=graphs-intro,name=node]{nodes} at \n    \\termref[cd=graph-depth,name=vertex-depth]{depth} $i$ has\n    \\termref[cd=cardinality,name=cardinality]{cardinality} $\\power2i$.\n   \\end{assertion}\n  \\item\n    \\begin{sproof}[id=size-lemma-pf,proofend=,for=size-lemma]{via induction over the depth $i$.}\n      \\begin{spfcases}{We have to consider two cases}\n        \\begin{spfcase}{$i=0$}\n          \\begin{spfstep}[display=flow]\n            then $\\livar{V}i=\\set{\\livar{v}r}$, where $\\livar{v}r$ is the root, so\n            $\\eq{\\card{\\livar{V}0},\\card{\\set{\\livar{v}r}},1,\\power20}$.\n          \\end{spfstep}\n        \\end{spfcase}\n        \\begin{spfcase}{$i>0$}\n          \\begin{spfstep}[display=flow]\n           then $\\livar{V}{i-1}$ contains $\\power2{i-1}$ vertexes \n           \\begin{justification}[method=byIH](IH)\\end{justification}\n          \\end{spfstep}\n          \\begin{spfstep}\n           By the \\begin{justification}[method=byDef]definition of a binary\n              tree\\end{justification}, each $\\inset{v}{\\livar{V}{i-1}}$ is a leaf or has\n            two children that are at depth $i$.\n          \\end{spfstep}\n          \\begin{spfstep}\n           As $G$ is \\termref[cd=balanced-binary-trees,name=balanced-binary-tree]{balanced} and $\\gdepth{G}=n>i$, $\\livar{V}{i-1}$ cannot contain\n            leaves.\n          \\end{spfstep}\n          \\begin{spfstep}[type=conclusion]\n           Thus $\\eq{\\card{\\livar{V}i},{\\atimes[cdot]{2,\\card{\\livar{V}{i-1}}}},{\\atimes[cdot]{2,\\power2{i-1}}},\\power2i}$.\n          \\end{spfstep}\n        \\end{spfcase}\n      \\end{spfcases}\n    \\end{sproof}\n  \\item \n    \\begin{assertion}[id=fbbt,type=corollary]\t\n      A fully balanced tree of depth $d$ has $\\power2{d+1}-1$ nodes.\n    \\end{assertion}\n  \\item\n      \\begin{sproof}[for=fbbt,id=fbbt-pf]{}\n        \\begin{spfstep}\n          Let $\\defeq{G}{\\tup{V,E}}$ be a fully balanced tree\n        \\end{spfstep}\n        \\begin{spfstep}\n          Then $\\card{V}=\\Sumfromto{i}1d{\\power2i}= \\power2{d+1}-1$.\n        \\end{spfstep}\n      \\end{sproof}\n    \\end{itemize}\n  \\end{frame}\n\\begin{note}\n  \\begin{omtext}[type=conclusion,for=binary-tree]\n    This shows that balanced binary trees grow in breadth very quickly, a consequence of\n    this is that they are very shallow (and this compute very fast), which is the essence of\n    the next result.\n  \\end{omtext}\n\\end{note}\n\\end{module}\n\n%%% Local Variables: \n%%% mode: LaTeX\n%%% TeX-master: \"all\"\n%%% End: \\end{document}\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-stex</code>.</p>\n\n    <p><strong>Parsing/Highlighting Tests:</strong> <a href=\"../../test/index.html#stex_*\">normal</a>,  <a href=\"../../test/index.html#verbose,stex_*\">verbose</a>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/stex/stex.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/*\n * Author: Constantin Jucovschi (c.jucovschi@jacobs-university.de)\n * Licence: MIT\n */\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"stex\", function() {\n    \"use strict\";\n\n    function pushCommand(state, command) {\n        state.cmdState.push(command);\n    }\n\n    function peekCommand(state) {\n        if (state.cmdState.length > 0) {\n            return state.cmdState[state.cmdState.length - 1];\n        } else {\n            return null;\n        }\n    }\n\n    function popCommand(state) {\n        var plug = state.cmdState.pop();\n        if (plug) {\n            plug.closeBracket();\n        }\n    }\n\n    // returns the non-default plugin closest to the end of the list\n    function getMostPowerful(state) {\n        var context = state.cmdState;\n        for (var i = context.length - 1; i >= 0; i--) {\n            var plug = context[i];\n            if (plug.name == \"DEFAULT\") {\n                continue;\n            }\n            return plug;\n        }\n        return { styleIdentifier: function() { return null; } };\n    }\n\n    function addPluginPattern(pluginName, cmdStyle, styles) {\n        return function () {\n            this.name = pluginName;\n            this.bracketNo = 0;\n            this.style = cmdStyle;\n            this.styles = styles;\n            this.argument = null;   // \\begin and \\end have arguments that follow. These are stored in the plugin\n\n            this.styleIdentifier = function() {\n                return this.styles[this.bracketNo - 1] || null;\n            };\n            this.openBracket = function() {\n                this.bracketNo++;\n                return \"bracket\";\n            };\n            this.closeBracket = function() {};\n        };\n    }\n\n    var plugins = {};\n\n    plugins[\"importmodule\"] = addPluginPattern(\"importmodule\", \"tag\", [\"string\", \"builtin\"]);\n    plugins[\"documentclass\"] = addPluginPattern(\"documentclass\", \"tag\", [\"\", \"atom\"]);\n    plugins[\"usepackage\"] = addPluginPattern(\"usepackage\", \"tag\", [\"atom\"]);\n    plugins[\"begin\"] = addPluginPattern(\"begin\", \"tag\", [\"atom\"]);\n    plugins[\"end\"] = addPluginPattern(\"end\", \"tag\", [\"atom\"]);\n\n    plugins[\"DEFAULT\"] = function () {\n        this.name = \"DEFAULT\";\n        this.style = \"tag\";\n\n        this.styleIdentifier = this.openBracket = this.closeBracket = function() {};\n    };\n\n    function setState(state, f) {\n        state.f = f;\n    }\n\n    // called when in a normal (no environment) context\n    function normal(source, state) {\n        var plug;\n        // Do we look like '\\command' ?  If so, attempt to apply the plugin 'command'\n        if (source.match(/^\\\\[a-zA-Z@]+/)) {\n            var cmdName = source.current().slice(1);\n            plug = plugins[cmdName] || plugins[\"DEFAULT\"];\n            plug = new plug();\n            pushCommand(state, plug);\n            setState(state, beginParams);\n            return plug.style;\n        }\n\n        // escape characters\n        if (source.match(/^\\\\[$&%#{}_]/)) {\n          return \"tag\";\n        }\n\n        // white space control characters\n        if (source.match(/^\\\\[,;!\\/\\\\]/)) {\n          return \"tag\";\n        }\n\n        // find if we're starting various math modes\n        if (source.match(\"\\\\[\")) {\n            setState(state, function(source, state){ return inMathMode(source, state, \"\\\\]\"); });\n            return \"keyword\";\n        }\n        if (source.match(\"$$\")) {\n            setState(state, function(source, state){ return inMathMode(source, state, \"$$\"); });\n            return \"keyword\";\n        }\n        if (source.match(\"$\")) {\n            setState(state, function(source, state){ return inMathMode(source, state, \"$\"); });\n            return \"keyword\";\n        }\n\n        var ch = source.next();\n        if (ch == \"%\") {\n            // special case: % at end of its own line; stay in same state\n            if (!source.eol()) {\n              setState(state, inCComment);\n            }\n            return \"comment\";\n        }\n        else if (ch == '}' || ch == ']') {\n            plug = peekCommand(state);\n            if (plug) {\n                plug.closeBracket(ch);\n                setState(state, beginParams);\n            } else {\n                return \"error\";\n            }\n            return \"bracket\";\n        } else if (ch == '{' || ch == '[') {\n            plug = plugins[\"DEFAULT\"];\n            plug = new plug();\n            pushCommand(state, plug);\n            return \"bracket\";\n        }\n        else if (/\\d/.test(ch)) {\n            source.eatWhile(/[\\w.%]/);\n            return \"atom\";\n        }\n        else {\n            source.eatWhile(/[\\w\\-_]/);\n            plug = getMostPowerful(state);\n            if (plug.name == 'begin') {\n                plug.argument = source.current();\n            }\n            return plug.styleIdentifier();\n        }\n    }\n\n    function inCComment(source, state) {\n        source.skipToEnd();\n        setState(state, normal);\n        return \"comment\";\n    }\n\n    function inMathMode(source, state, endModeSeq) {\n        if (source.eatSpace()) {\n            return null;\n        }\n        if (source.match(endModeSeq)) {\n            setState(state, normal);\n            return \"keyword\";\n        }\n        if (source.match(/^\\\\[a-zA-Z@]+/)) {\n            return \"tag\";\n        }\n        if (source.match(/^[a-zA-Z]+/)) {\n            return \"variable-2\";\n        }\n        // escape characters\n        if (source.match(/^\\\\[$&%#{}_]/)) {\n          return \"tag\";\n        }\n        // white space control characters\n        if (source.match(/^\\\\[,;!\\/]/)) {\n          return \"tag\";\n        }\n        // special math-mode characters\n        if (source.match(/^[\\^_&]/)) {\n          return \"tag\";\n        }\n        // non-special characters\n        if (source.match(/^[+\\-<>|=,\\/@!*:;'\"`~#?]/)) {\n            return null;\n        }\n        if (source.match(/^(\\d+\\.\\d*|\\d*\\.\\d+|\\d+)/)) {\n          return \"number\";\n        }\n        var ch = source.next();\n        if (ch == \"{\" || ch == \"}\" || ch == \"[\" || ch == \"]\" || ch == \"(\" || ch == \")\") {\n            return \"bracket\";\n        }\n\n        // eat comments here, because inCComment returns us to normal state!\n        if (ch == \"%\") {\n            if (!source.eol()) {\n                source.skipToEnd();\n            }\n            return \"comment\";\n        }\n        return \"error\";\n    }\n\n    function beginParams(source, state) {\n        var ch = source.peek(), lastPlug;\n        if (ch == '{' || ch == '[') {\n            lastPlug = peekCommand(state);\n            lastPlug.openBracket(ch);\n            source.eat(ch);\n            setState(state, normal);\n            return \"bracket\";\n        }\n        if (/[ \\t\\r]/.test(ch)) {\n            source.eat(ch);\n            return null;\n        }\n        setState(state, normal);\n        popCommand(state);\n\n        return normal(source, state);\n    }\n\n    return {\n        startState: function() {\n            return {\n                cmdState: [],\n                f: normal\n            };\n        },\n        copyState: function(s) {\n            return {\n                cmdState: s.cmdState.slice(),\n                f: s.f\n            };\n        },\n        token: function(stream, state) {\n            return state.f(stream, state);\n        },\n        lineComment: \"%\"\n    };\n});\n\nCodeMirror.defineMIME(\"text/x-stex\", \"stex\");\nCodeMirror.defineMIME(\"text/x-latex\", \"stex\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/stex/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({tabSize: 4}, \"stex\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  MT(\"word\",\n     \"foo\");\n\n  MT(\"twoWords\",\n     \"foo bar\");\n\n  MT(\"beginEndDocument\",\n     \"[tag \\\\begin][bracket {][atom document][bracket }]\",\n     \"[tag \\\\end][bracket {][atom document][bracket }]\");\n\n  MT(\"beginEndEquation\",\n     \"[tag \\\\begin][bracket {][atom equation][bracket }]\",\n     \"  E=mc^2\",\n     \"[tag \\\\end][bracket {][atom equation][bracket }]\");\n\n  MT(\"beginModule\",\n     \"[tag \\\\begin][bracket {][atom module][bracket }[[]]]\");\n\n  MT(\"beginModuleId\",\n     \"[tag \\\\begin][bracket {][atom module][bracket }[[]id=bbt-size[bracket ]]]\");\n\n  MT(\"importModule\",\n     \"[tag \\\\importmodule][bracket [[][string b-b-t][bracket ]]{][builtin b-b-t][bracket }]\");\n\n  MT(\"importModulePath\",\n     \"[tag \\\\importmodule][bracket [[][tag \\\\KWARCslides][bracket {][string dmath/en/cardinality][bracket }]]{][builtin card][bracket }]\");\n\n  MT(\"psForPDF\",\n     \"[tag \\\\PSforPDF][bracket [[][atom 1][bracket ]]{]#1[bracket }]\");\n\n  MT(\"comment\",\n     \"[comment % foo]\");\n\n  MT(\"tagComment\",\n     \"[tag \\\\item][comment % bar]\");\n\n  MT(\"commentTag\",\n     \" [comment % \\\\item]\");\n\n  MT(\"commentLineBreak\",\n     \"[comment %]\",\n     \"foo\");\n\n  MT(\"tagErrorCurly\",\n     \"[tag \\\\begin][error }][bracket {]\");\n\n  MT(\"tagErrorSquare\",\n     \"[tag \\\\item][error ]]][bracket {]\");\n\n  MT(\"commentCurly\",\n     \"[comment % }]\");\n\n  MT(\"tagHash\",\n     \"the [tag \\\\#] key\");\n\n  MT(\"tagNumber\",\n     \"a [tag \\\\$][atom 5] stetson\");\n\n  MT(\"tagPercent\",\n     \"[atom 100][tag \\\\%] beef\");\n\n  MT(\"tagAmpersand\",\n     \"L [tag \\\\&] N\");\n\n  MT(\"tagUnderscore\",\n     \"foo[tag \\\\_]bar\");\n\n  MT(\"tagBracketOpen\",\n     \"[tag \\\\emph][bracket {][tag \\\\{][bracket }]\");\n\n  MT(\"tagBracketClose\",\n     \"[tag \\\\emph][bracket {][tag \\\\}][bracket }]\");\n\n  MT(\"tagLetterNumber\",\n     \"section [tag \\\\S][atom 1]\");\n\n  MT(\"textTagNumber\",\n     \"para [tag \\\\P][atom 2]\");\n\n  MT(\"thinspace\",\n     \"x[tag \\\\,]y\");\n\n  MT(\"thickspace\",\n     \"x[tag \\\\;]y\");\n\n  MT(\"negativeThinspace\",\n     \"x[tag \\\\!]y\");\n\n  MT(\"periodNotSentence\",\n     \"J.\\\\ L.\\\\ is\");\n\n  MT(\"periodSentence\",\n     \"X[tag \\\\@]. The\");\n\n  MT(\"italicCorrection\",\n     \"[bracket {][tag \\\\em] If[tag \\\\/][bracket }] I\");\n\n  MT(\"tagBracket\",\n     \"[tag \\\\newcommand][bracket {][tag \\\\pop][bracket }]\");\n\n  MT(\"inlineMathTagFollowedByNumber\",\n     \"[keyword $][tag \\\\pi][number 2][keyword $]\");\n\n  MT(\"inlineMath\",\n     \"[keyword $][number 3][variable-2 x][tag ^][number 2.45]-[tag \\\\sqrt][bracket {][tag \\\\$\\\\alpha][bracket }] = [number 2][keyword $] other text\");\n\n  MT(\"displayMath\",\n     \"More [keyword $$]\\t[variable-2 S][tag ^][variable-2 n][tag \\\\sum] [variable-2 i][keyword $$] other text\");\n\n  MT(\"mathWithComment\",\n     \"[keyword $][variable-2 x] [comment % $]\",\n     \"[variable-2 y][keyword $] other text\");\n\n  MT(\"lineBreakArgument\",\n    \"[tag \\\\\\\\][bracket [[][atom 1cm][bracket ]]]\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tcl/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Tcl mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/night.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"tcl.js\"></script>\n<script src=\"../../addon/scroll/scrollpastend.js\"></script>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Tcl</a>\n  </ul>\n</div>\n\n<article>\n<h2>Tcl mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n##############################################################################################\n##  ##     whois.tcl for eggdrop by Ford_Lawnmower irc.geekshed.net #Script-Help        ##  ##\n##############################################################################################\n## To use this script you must set channel flag +whois (ie .chanset #chan +whois)           ##\n##############################################################################################\n##      ____                __                 ###########################################  ##\n##     / __/___ _ ___ _ ___/ /____ ___   ___   ###########################################  ##\n##    / _/ / _ `// _ `// _  // __// _ \\ / _ \\  ###########################################  ##\n##   /___/ \\_, / \\_, / \\_,_//_/   \\___// .__/  ###########################################  ##\n##        /___/ /___/                 /_/      ###########################################  ##\n##                                             ###########################################  ##\n##############################################################################################\n##  ##                             Start Setup.                                         ##  ##\n##############################################################################################\nnamespace eval whois {\n## change cmdchar to the trigger you want to use                                        ##  ##\n  variable cmdchar \"!\"\n## change command to the word trigger you would like to use.                            ##  ##\n## Keep in mind, This will also change the .chanset +/-command                          ##  ##\n  variable command \"whois\"\n## change textf to the colors you want for the text.                                    ##  ##\n  variable textf \"\\017\\00304\"\n## change tagf to the colors you want for tags:                                         ##  ##\n  variable tagf \"\\017\\002\"\n## Change logo to the logo you want at the start of the line.                           ##  ##\n  variable logo \"\\017\\00304\\002\\[\\00306W\\003hois\\00304\\]\\017\"\n## Change lineout to the results you want. Valid results are channel users modes topic  ##  ##\n  variable lineout \"channel users modes topic\"\n##############################################################################################\n##  ##                           End Setup.                                              ## ##\n##############################################################################################\n  variable channel \"\"\n  setudef flag $whois::command\n  bind pub -|- [string trimleft $whois::cmdchar]${whois::command} whois::list\n  bind raw -|- \"311\" whois::311\n  bind raw -|- \"312\" whois::312\n  bind raw -|- \"319\" whois::319\n  bind raw -|- \"317\" whois::317\n  bind raw -|- \"313\" whois::multi\n  bind raw -|- \"310\" whois::multi\n  bind raw -|- \"335\" whois::multi\n  bind raw -|- \"301\" whois::301\n  bind raw -|- \"671\" whois::multi\n  bind raw -|- \"320\" whois::multi\n  bind raw -|- \"401\" whois::multi\n  bind raw -|- \"318\" whois::318\n  bind raw -|- \"307\" whois::307\n}\nproc whois::311 {from key text} {\n  if {[regexp -- {^[^\\s]+\\s(.+?)\\s(.+?)\\s(.+?)\\s\\*\\s\\:(.+)$} $text wholematch nick ident host realname]} {\n    putserv \"PRIVMSG $whois::channel :${whois::logo} ${whois::tagf}Host:${whois::textf} \\\n        $nick \\(${ident}@${host}\\) ${whois::tagf}Realname:${whois::textf} $realname\"\n  }\n}\nproc whois::multi {from key text} {\n  if {[regexp {\\:(.*)$} $text match $key]} {\n    putserv \"PRIVMSG $whois::channel :${whois::logo} ${whois::tagf}Note:${whois::textf} [subst $$key]\"\n        return 1\n  }\n}\nproc whois::312 {from key text} {\n  regexp {([^\\s]+)\\s\\:} $text match server\n  putserv \"PRIVMSG $whois::channel :${whois::logo} ${whois::tagf}Server:${whois::textf} $server\"\n}\nproc whois::319 {from key text} {\n  if {[regexp {.+\\:(.+)$} $text match channels]} {\n    putserv \"PRIVMSG $whois::channel :${whois::logo} ${whois::tagf}Channels:${whois::textf} $channels\"\n  }\n}\nproc whois::317 {from key text} {\n  if {[regexp -- {.*\\s(\\d+)\\s(\\d+)\\s\\:} $text wholematch idle signon]} {\n    putserv \"PRIVMSG $whois::channel :${whois::logo} ${whois::tagf}Connected:${whois::textf} \\\n        [ctime $signon] ${whois::tagf}Idle:${whois::textf} [duration $idle]\"\n  }\n}\nproc whois::301 {from key text} {\n  if {[regexp {^.+\\s[^\\s]+\\s\\:(.*)$} $text match awaymsg]} {\n    putserv \"PRIVMSG $whois::channel :${whois::logo} ${whois::tagf}Away:${whois::textf} $awaymsg\"\n  }\n}\nproc whois::318 {from key text} {\n  namespace eval whois {\n        variable channel \"\"\n  }\n  variable whois::channel \"\"\n}\nproc whois::307 {from key text} {\n  putserv \"PRIVMSG $whois::channel :${whois::logo} ${whois::tagf}Services:${whois::textf} Registered Nick\"\n}\nproc whois::list {nick host hand chan text} {\n  if {[lsearch -exact [channel info $chan] \"+${whois::command}\"] != -1} {\n    namespace eval whois {\n          variable channel \"\"\n        }\n    variable whois::channel $chan\n    putserv \"WHOIS $text\"\n  }\n}\nputlog \"\\002*Loaded* \\017\\00304\\002\\[\\00306W\\003hois\\00304\\]\\017 \\002by \\\nFord_Lawnmower irc.GeekShed.net #Script-Help\"\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        theme: \"night\",\n        lineNumbers: true,\n        indentUnit: 2,\n        scrollPastEnd: true,\n        mode: \"text/x-tcl\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-tcl</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tcl/tcl.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n//tcl mode by Ford_Lawnmower :: Based on Velocity mode by Steve O'Hara\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"tcl\", function() {\n  function parseWords(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n  var keywords = parseWords(\"Tcl safe after append array auto_execok auto_import auto_load \" +\n        \"auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror \" +\n        \"binary break catch cd close concat continue dde eof encoding error \" +\n        \"eval exec exit expr fblocked fconfigure fcopy file fileevent filename \" +\n        \"filename flush for foreach format gets glob global history http if \" +\n        \"incr info interp join lappend lindex linsert list llength load lrange \" +\n        \"lreplace lsearch lset lsort memory msgcat namespace open package parray \" +\n        \"pid pkg::create pkg_mkIndex proc puts pwd re_syntax read regex regexp \" +\n        \"registry regsub rename resource return scan seek set socket source split \" +\n        \"string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord \" +\n        \"tcl_wordBreakAfter tcl_startOfPreviousWord tcl_wordBreakBefore tcltest \" +\n        \"tclvars tell time trace unknown unset update uplevel upvar variable \" +\n    \"vwait\");\n    var functions = parseWords(\"if elseif else and not or eq ne in ni for foreach while switch\");\n    var isOperatorChar = /[+\\-*&%=<>!?^\\/\\|]/;\n    function chain(stream, state, f) {\n      state.tokenize = f;\n      return f(stream, state);\n    }\n    function tokenBase(stream, state) {\n      var beforeParams = state.beforeParams;\n      state.beforeParams = false;\n      var ch = stream.next();\n      if ((ch == '\"' || ch == \"'\") && state.inParams)\n        return chain(stream, state, tokenString(ch));\n      else if (/[\\[\\]{}\\(\\),;\\.]/.test(ch)) {\n        if (ch == \"(\" && beforeParams) state.inParams = true;\n        else if (ch == \")\") state.inParams = false;\n          return null;\n      }\n      else if (/\\d/.test(ch)) {\n        stream.eatWhile(/[\\w\\.]/);\n        return \"number\";\n      }\n      else if (ch == \"#\" && stream.eat(\"*\")) {\n        return chain(stream, state, tokenComment);\n      }\n      else if (ch == \"#\" && stream.match(/ *\\[ *\\[/)) {\n        return chain(stream, state, tokenUnparsed);\n      }\n      else if (ch == \"#\" && stream.eat(\"#\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n      else if (ch == '\"') {\n        stream.skipTo(/\"/);\n        return \"comment\";\n      }\n      else if (ch == \"$\") {\n        stream.eatWhile(/[$_a-z0-9A-Z\\.{:]/);\n        stream.eatWhile(/}/);\n        state.beforeParams = true;\n        return \"builtin\";\n      }\n      else if (isOperatorChar.test(ch)) {\n        stream.eatWhile(isOperatorChar);\n        return \"comment\";\n      }\n      else {\n        stream.eatWhile(/[\\w\\$_{}\\xa1-\\uffff]/);\n        var word = stream.current().toLowerCase();\n        if (keywords && keywords.propertyIsEnumerable(word))\n          return \"keyword\";\n        if (functions && functions.propertyIsEnumerable(word)) {\n          state.beforeParams = true;\n          return \"keyword\";\n        }\n        return null;\n      }\n    }\n    function tokenString(quote) {\n      return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {\n          end = true;\n          break;\n        }\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end) state.tokenize = tokenBase;\n        return \"string\";\n      };\n    }\n    function tokenComment(stream, state) {\n      var maybeEnd = false, ch;\n      while (ch = stream.next()) {\n        if (ch == \"#\" && maybeEnd) {\n          state.tokenize = tokenBase;\n          break;\n        }\n        maybeEnd = (ch == \"*\");\n      }\n      return \"comment\";\n    }\n    function tokenUnparsed(stream, state) {\n      var maybeEnd = 0, ch;\n      while (ch = stream.next()) {\n        if (ch == \"#\" && maybeEnd == 2) {\n          state.tokenize = tokenBase;\n          break;\n        }\n        if (ch == \"]\")\n          maybeEnd++;\n        else if (ch != \" \")\n          maybeEnd = 0;\n      }\n      return \"meta\";\n    }\n    return {\n      startState: function() {\n        return {\n          tokenize: tokenBase,\n          beforeParams: false,\n          inParams: false\n        };\n      },\n      token: function(stream, state) {\n        if (stream.eatSpace()) return null;\n        return state.tokenize(stream, state);\n      }\n    };\n});\nCodeMirror.defineMIME(\"text/x-tcl\", \"tcl\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/textile/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Textile mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"textile.js\"></script>\n<style>.CodeMirror {background: #f8f8f8;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/marijnh/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=\"active\" href=\"#\">Textile</a>\n  </ul>\n</div>\n\n<article>\n    <h2>Textile mode</h2>\n    <form><textarea id=\"code\" name=\"code\">\nh1. Textile Mode\n\nA paragraph without formatting.\n\np. A simple Paragraph.\n\n\nh2. Phrase Modifiers\n\nHere are some simple phrase modifiers: *strong*, _emphasis_, **bold**, and __italic__.\n\nA ??citation??, -deleted text-, +inserted text+, some ^superscript^, and some ~subscript~.\n\nA %span element% and @code element@\n\nA \"link\":http://example.com, a \"link with (alt text)\":urlAlias\n\n[urlAlias]http://example.com/\n\nAn image: !http://example.com/image.png! and an image with a link: !http://example.com/image.png!:http://example.com\n\nA sentence with a footnote.[123]\n\nfn123. The footnote is defined here.\n\nRegistered(r), Trademark(tm), and Copyright(c)\n\n\nh2. Headers\n\nh1. Top level\nh2. Second level\nh3. Third level\nh4. Fourth level\nh5. Fifth level\nh6. Lowest level\n\n\nh2.  Lists\n\n* An unordered list\n** foo bar\n*** foo bar\n**** foo bar\n** foo bar\n\n# An ordered list\n## foo bar\n### foo bar\n#### foo bar\n## foo bar\n\n- definition list := description\n- another item    := foo bar\n- spanning ines   :=\n                     foo bar\n\n                     foo bar =:\n\n\nh2. Attributes\n\nLayouts and phrase modifiers can be modified with various kinds of attributes: alignment, CSS ID, CSS class names, language, padding, and CSS styles.\n\nh3. Alignment\n\ndiv<. left align\ndiv>. right align\n\nh3. CSS ID and class name\n\nYou are a %(my-id#my-classname) rad% person.\n\nh3. Language\n\np[en_CA]. Strange weather, eh?\n\nh3. Horizontal Padding\n\np(())). 2em left padding, 3em right padding\n\nh3. CSS styling\n\np{background: red}. Fire!\n\n\nh2. Table\n\n|_.              Header 1               |_.      Header 2        |\n|{background:#ddd}. Cell with background|         Normal         |\n|\\2.         Cell spanning 2 columns                             |\n|/2.         Cell spanning 2 rows       |(cell-class). one       |\n|                                                two             |\n|>.                  Right aligned cell |<. Left aligned cell    |\n\n\nh3. A table with attributes:\n\ntable(#prices).\n|Adults|$5|\n|Children|$2|\n\n\nh2. Code blocks\n\nbc.\nfunction factorial(n) {\n    if (n === 0) {\n        return 1;\n    }\n    return n * factorial(n - 1);\n}\n\npre..\n                ,,,,,,\n            o#'9MMHb':'-,o,\n         .oH\":HH$' \"' ' -*R&o,\n        dMMM*\"\"'`'      .oM\"HM?.\n       ,MMM'          \"HLbd< ?&H\\\n      .:MH .\"\\          ` MM  MM&b\n     . \"*H    -        &MMMMMMMMMH:\n     .    dboo        MMMMMMMMMMMM.\n     .   dMMMMMMb      *MMMMMMMMMP.\n     .    MMMMMMMP        *MMMMMP .\n          `#MMMMM           MM6P ,\n       '    `MMMP\"           HM*`,\n        '    :MM             .- ,\n         '.   `#?..  .       ..'\n            -.   .         .-\n              ''-.oo,oo.-''\n\n\\. _(9>\n \\==_)\n  -'=\n\nh2. Temporarily disabling textile markup\n\nnotextile. Don't __touch this!__\n\nSurround text with double-equals to disable textile inline. Example: Use ==*asterisks*== for *strong* text.\n\n\nh2. HTML\n\nSome block layouts are simply textile versions of HTML tags with the same name, like @div@, @pre@, and @p@. HTML tags can also exist on their own line:\n\n<section>\n  <h1>Title</h1>\n  <p>Hello!</p>\n</section>\n\n</textarea></form>\n    <script>\n        var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n            lineNumbers: true,\n            mode: \"text/x-textile\"\n        });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-textile</code>.</p>\n\n    <p><strong>Parsing/Highlighting Tests:</strong> <a href=\"../../test/index.html#textile_*\">normal</a>,  <a href=\"../../test/index.html#verbose,textile_*\">verbose</a>.</p>\n\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/textile/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({tabSize: 4}, 'textile');\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  MT('simpleParagraphs',\n      'Some text.',\n      '',\n      'Some more text.');\n\n  /*\n   * Phrase Modifiers\n   */\n\n  MT('em',\n      'foo [em _bar_]');\n\n  MT('emBoogus',\n      'code_mirror');\n\n  MT('strong',\n      'foo [strong *bar*]');\n\n  MT('strongBogus',\n      '3 * 3 = 9');\n\n  MT('italic',\n      'foo [em __bar__]');\n\n  MT('italicBogus',\n      'code__mirror');\n\n  MT('bold',\n      'foo [strong **bar**]');\n\n  MT('boldBogus',\n      '3 ** 3 = 27');\n\n  MT('simpleLink',\n      '[link \"CodeMirror\":http://codemirror.net]');\n\n  MT('referenceLink',\n      '[link \"CodeMirror\":code_mirror]',\n      'Normal Text.',\n      '[link [[code_mirror]]http://codemirror.net]');\n\n  MT('footCite',\n      'foo bar[qualifier [[1]]]');\n\n  MT('footCiteBogus',\n      'foo bar[[1a2]]');\n\n  MT('special-characters',\n          'Registered [tag (r)], ' +\n          'Trademark [tag (tm)], and ' +\n          'Copyright [tag (c)] 2008');\n\n  MT('cite',\n      \"A book is [keyword ??The Count of Monte Cristo??] by Dumas.\");\n\n  MT('additionAndDeletion',\n      'The news networks declared [negative -Al Gore-] ' +\n        '[positive +George W. Bush+] the winner in Florida.');\n\n  MT('subAndSup',\n      'f(x, n) = log [builtin ~4~] x [builtin ^n^]');\n\n  MT('spanAndCode',\n      'A [quote %span element%] and [atom @code element@]');\n\n  MT('spanBogus',\n      'Percentage 25% is not a span.');\n\n  MT('citeBogus',\n      'Question? is not a citation.');\n\n  MT('codeBogus',\n      'user@example.com');\n\n  MT('subBogus',\n      '~username');\n\n  MT('supBogus',\n      'foo ^ bar');\n\n  MT('deletionBogus',\n      '3 - 3 = 0');\n\n  MT('additionBogus',\n      '3 + 3 = 6');\n\n  MT('image',\n      'An image: [string !http://www.example.com/image.png!]');\n\n  MT('imageWithAltText',\n      'An image: [string !http://www.example.com/image.png (Alt Text)!]');\n\n  MT('imageWithUrl',\n      'An image: [string !http://www.example.com/image.png!:http://www.example.com/]');\n\n  /*\n   * Headers\n   */\n\n  MT('h1',\n      '[header&header-1 h1. foo]');\n\n  MT('h2',\n      '[header&header-2 h2. foo]');\n\n  MT('h3',\n      '[header&header-3 h3. foo]');\n\n  MT('h4',\n      '[header&header-4 h4. foo]');\n\n  MT('h5',\n      '[header&header-5 h5. foo]');\n\n  MT('h6',\n      '[header&header-6 h6. foo]');\n\n  MT('h7Bogus',\n      'h7. foo');\n\n  MT('multipleHeaders',\n      '[header&header-1 h1. Heading 1]',\n      '',\n      'Some text.',\n      '',\n      '[header&header-2 h2. Heading 2]',\n      '',\n      'More text.');\n\n  MT('h1inline',\n      '[header&header-1 h1. foo ][header&header-1&em _bar_][header&header-1  baz]');\n\n  /*\n   * Lists\n   */\n\n  MT('ul',\n      'foo',\n      'bar',\n      '',\n      '[variable-2 * foo]',\n      '[variable-2 * bar]');\n\n  MT('ulNoBlank',\n      'foo',\n      'bar',\n      '[variable-2 * foo]',\n      '[variable-2 * bar]');\n\n  MT('ol',\n      'foo',\n      'bar',\n      '',\n      '[variable-2 # foo]',\n      '[variable-2 # bar]');\n\n  MT('olNoBlank',\n      'foo',\n      'bar',\n      '[variable-2 # foo]',\n      '[variable-2 # bar]');\n\n  MT('ulFormatting',\n      '[variable-2 * ][variable-2&em _foo_][variable-2 bar]',\n      '[variable-2 * ][variable-2&strong *][variable-2&em&strong _foo_]' +\n        '[variable-2&strong *][variable-2  bar]',\n      '[variable-2 * ][variable-2&strong *foo*][variable-2 bar]');\n\n  MT('olFormatting',\n      '[variable-2 # ][variable-2&em _foo_][variable-2 bar]',\n      '[variable-2 # ][variable-2&strong *][variable-2&em&strong _foo_]' +\n        '[variable-2&strong *][variable-2  bar]',\n      '[variable-2 # ][variable-2&strong *foo*][variable-2 bar]');\n\n  MT('ulNested',\n      '[variable-2 * foo]',\n      '[variable-3 ** bar]',\n      '[keyword *** bar]',\n      '[variable-2 **** bar]',\n      '[variable-3 ** bar]');\n\n  MT('olNested',\n      '[variable-2 # foo]',\n      '[variable-3 ## bar]',\n      '[keyword ### bar]',\n      '[variable-2 #### bar]',\n      '[variable-3 ## bar]');\n\n  MT('ulNestedWithOl',\n      '[variable-2 * foo]',\n      '[variable-3 ## bar]',\n      '[keyword *** bar]',\n      '[variable-2 #### bar]',\n      '[variable-3 ** bar]');\n\n  MT('olNestedWithUl',\n      '[variable-2 # foo]',\n      '[variable-3 ** bar]',\n      '[keyword ### bar]',\n      '[variable-2 **** bar]',\n      '[variable-3 ## bar]');\n\n  MT('definitionList',\n      '[number - coffee := Hot ][number&em _and_][number  black]',\n      '',\n      'Normal text.');\n\n  MT('definitionListSpan',\n      '[number - coffee :=]',\n      '',\n      '[number Hot ][number&em _and_][number  black =:]',\n      '',\n      'Normal text.');\n\n  MT('boo',\n      '[number - dog := woof woof]',\n      '[number - cat := meow meow]',\n      '[number - whale :=]',\n      '[number Whale noises.]',\n      '',\n      '[number Also, ][number&em _splashing_][number . =:]');\n\n  /*\n   * Attributes\n   */\n\n  MT('divWithAttribute',\n      '[punctuation div][punctuation&attribute (#my-id)][punctuation . foo bar]');\n\n  MT('divWithAttributeAnd2emRightPadding',\n      '[punctuation div][punctuation&attribute (#my-id)((][punctuation . foo bar]');\n\n  MT('divWithClassAndId',\n      '[punctuation div][punctuation&attribute (my-class#my-id)][punctuation . foo bar]');\n\n  MT('paragraphWithCss',\n      'p[attribute {color:red;}]. foo bar');\n\n  MT('paragraphNestedStyles',\n      'p. [strong *foo ][strong&em _bar_][strong *]');\n\n  MT('paragraphWithLanguage',\n      'p[attribute [[fr]]]. Parlez-vous français?');\n\n  MT('paragraphLeftAlign',\n      'p[attribute <]. Left');\n\n  MT('paragraphRightAlign',\n      'p[attribute >]. Right');\n\n  MT('paragraphRightAlign',\n      'p[attribute =]. Center');\n\n  MT('paragraphJustified',\n      'p[attribute <>]. Justified');\n\n  MT('paragraphWithLeftIndent1em',\n      'p[attribute (]. Left');\n\n  MT('paragraphWithRightIndent1em',\n      'p[attribute )]. Right');\n\n  MT('paragraphWithLeftIndent2em',\n      'p[attribute ((]. Left');\n\n  MT('paragraphWithRightIndent2em',\n      'p[attribute ))]. Right');\n\n  MT('paragraphWithLeftIndent3emRightIndent2em',\n      'p[attribute ((())]. Right');\n\n  MT('divFormatting',\n      '[punctuation div. ][punctuation&strong *foo ]' +\n        '[punctuation&strong&em _bar_][punctuation&strong *]');\n\n  MT('phraseModifierAttributes',\n      'p[attribute (my-class)]. This is a paragraph that has a class and' +\n      ' this [em _][em&attribute (#special-phrase)][em emphasized phrase_]' +\n      ' has an id.');\n\n  MT('linkWithClass',\n      '[link \"(my-class). This is a link with class\":http://redcloth.org]');\n\n  /*\n   * Layouts\n   */\n\n  MT('paragraphLayouts',\n      'p. This is one paragraph.',\n      '',\n      'p. This is another.');\n\n  MT('div',\n      '[punctuation div. foo bar]');\n\n  MT('pre',\n      '[operator pre. Text]');\n\n  MT('bq.',\n      '[bracket bq. foo bar]',\n      '',\n      'Normal text.');\n\n  MT('footnote',\n      '[variable fn123. foo ][variable&strong *bar*]');\n\n  /*\n   * Spanning Layouts\n   */\n\n  MT('bq..ThenParagraph',\n      '[bracket bq.. foo bar]',\n      '',\n      '[bracket More quote.]',\n      'p. Normal Text');\n\n  MT('bq..ThenH1',\n      '[bracket bq.. foo bar]',\n      '',\n      '[bracket More quote.]',\n      '[header&header-1 h1. Header Text]');\n\n  MT('bc..ThenParagraph',\n      '[atom bc.. # Some ruby code]',\n      '[atom obj = {foo: :bar}]',\n      '[atom puts obj]',\n      '',\n      '[atom obj[[:love]] = \"*love*\"]',\n      '[atom puts obj.love.upcase]',\n      '',\n      'p. Normal text.');\n\n  MT('fn1..ThenParagraph',\n      '[variable fn1.. foo bar]',\n      '',\n      '[variable More.]',\n      'p. Normal Text');\n\n  MT('pre..ThenParagraph',\n      '[operator pre.. foo bar]',\n      '',\n      '[operator More.]',\n      'p. Normal Text');\n\n  /*\n   * Tables\n   */\n\n  MT('table',\n      '[variable-3&operator |_. name |_. age|]',\n      '[variable-3 |][variable-3&strong *Walter*][variable-3 |   5  |]',\n      '[variable-3 |Florence|   6  |]',\n      '',\n      'p. Normal text.');\n\n  MT('tableWithAttributes',\n      '[variable-3&operator |_. name |_. age|]',\n      '[variable-3 |][variable-3&attribute /2.][variable-3  Jim |]',\n      '[variable-3 |][variable-3&attribute \\\\2{color: red}.][variable-3  Sam |]');\n\n  /*\n   * HTML\n   */\n\n  MT('html',\n      '[comment <div id=\"wrapper\">]',\n      '[comment <section id=\"introduction\">]',\n      '',\n      '[header&header-1 h1. Welcome]',\n      '',\n      '[variable-2 * Item one]',\n      '[variable-2 * Item two]',\n      '',\n      '[comment <a href=\"http://example.com\">Example</a>]',\n      '',\n      '[comment </section>]',\n      '[comment </div>]');\n\n  MT('inlineHtml',\n      'I can use HTML directly in my [comment <span class=\"youbetcha\">Textile</span>].');\n\n  /*\n   * No-Textile\n   */\n\n  MT('notextile',\n    '[string-2 notextile. *No* formatting]');\n\n  MT('notextileInline',\n      'Use [string-2 ==*asterisks*==] for [strong *strong*] text.');\n\n  MT('notextileWithPre',\n      '[operator pre. *No* formatting]');\n\n  MT('notextileWithSpanningPre',\n      '[operator pre.. *No* formatting]',\n      '',\n      '[operator *No* formatting]');\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/textile/textile.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == 'object' && typeof module == 'object') { // CommonJS\n    mod(require('../../lib/codemirror'));\n  } else if (typeof define == 'function' && define.amd) { // AMD\n    define(['../../lib/codemirror'], mod);\n  } else { // Plain browser env\n    mod(CodeMirror);\n  }\n})(function(CodeMirror) {\n'use strict';\n\nvar TOKEN_STYLES = {\n  addition: 'positive',\n  attributes: 'attribute',\n  bold: 'strong',\n  cite: 'keyword',\n  code: 'atom',\n  definitionList: 'number',\n  deletion: 'negative',\n  div: 'punctuation',\n  em: 'em',\n  footnote: 'variable',\n  footCite: 'qualifier',\n  header: 'header',\n  html: 'comment',\n  image: 'string',\n  italic: 'em',\n  link: 'link',\n  linkDefinition: 'link',\n  list1: 'variable-2',\n  list2: 'variable-3',\n  list3: 'keyword',\n  notextile: 'string-2',\n  pre: 'operator',\n  p: 'property',\n  quote: 'bracket',\n  span: 'quote',\n  specialChar: 'tag',\n  strong: 'strong',\n  sub: 'builtin',\n  sup: 'builtin',\n  table: 'variable-3',\n  tableHeading: 'operator'\n};\n\nfunction Parser(regExpFactory, state, stream) {\n  this.regExpFactory = regExpFactory;\n  this.state = state;\n  this.stream = stream;\n  this.styles = TOKEN_STYLES;\n\n  this.state.specialChar = null;\n}\n\nParser.prototype.eat = function(name) {\n  return this.stream.match(this.regExpFactory.pattern(name), true);\n};\n\nParser.prototype.check = function(name) {\n  return this.stream.match(this.regExpFactory.pattern(name), false);\n};\n\nParser.prototype.setModeForNextToken = function(mode) {\n  return this.state.mode = mode;\n};\n\nParser.prototype.execMode = function(newMode) {\n  return this.setModeForNextToken(newMode).call(this);\n};\n\nParser.prototype.startNewLine = function() {\n  this.setModeForNextToken(Modes.newLayout);\n  this.state.tableHeading = false;\n\n  if (this.state.layoutType === 'definitionList' && this.state.spanningLayout) {\n    if (this.check('definitionListEnd')) {\n      this.state.spanningLayout = false;\n    }\n  }\n};\n\nParser.prototype.nextToken = function() {\n  return this.state.mode.call(this);\n};\n\nParser.prototype.styleFor = function(token) {\n  if (this.styles.hasOwnProperty(token)) {\n    return this.styles[token];\n  }\n  throw 'unknown token';\n};\n\nParser.prototype.handlePhraseModifier = function(ch) {\n  if (ch === '_') {\n    if (this.stream.eat('_')) {\n      return this.togglePhraseModifier('italic', /^.*__/);\n    }\n    return this.togglePhraseModifier('em', /^.*_/);\n  }\n\n  if (ch === '*') {\n    if (this.stream.eat('*')) {\n      return this.togglePhraseModifier('bold', /^.*\\*\\*/);\n    }\n    return this.togglePhraseModifier('strong', /^.*\\*/);\n  }\n\n  if (ch === '[') {\n    if (this.stream.match(/\\d+\\]/)) {\n      this.state.footCite = true;\n    }\n    return this.tokenStyles();\n  }\n\n  if (ch === '(') {\n    if (this.stream.match('r)')) {\n      this.state.specialChar = 'r';\n    } else if (this.stream.match('tm)')) {\n      this.state.specialChar = 'tm';\n    } else if (this.stream.match('c)')) {\n      this.state.specialChar = 'c';\n    }\n    return this.tokenStyles();\n  }\n\n  if (ch === '<') {\n    if (this.stream.match(/(\\w+)[^>]+>[^<]+<\\/\\1>/)) {\n      return this.tokenStylesWith(this.styleFor('html'));\n    }\n  }\n\n  if (ch === '?' && this.stream.eat('?')) {\n    return this.togglePhraseModifier('cite', /^.*\\?\\?/);\n  }\n  if (ch === '=' && this.stream.eat('=')) {\n    return this.togglePhraseModifier('notextile', /^.*==/);\n  }\n  if (ch === '-') {\n    return this.togglePhraseModifier('deletion', /^.*-/);\n  }\n  if (ch === '+') {\n    return this.togglePhraseModifier('addition', /^.*\\+/);\n  }\n  if (ch === '~') {\n    return this.togglePhraseModifier('sub', /^.*~/);\n  }\n  if (ch === '^') {\n    return this.togglePhraseModifier('sup', /^.*\\^/);\n  }\n  if (ch === '%') {\n    return this.togglePhraseModifier('span', /^.*%/);\n  }\n  if (ch === '@') {\n    return this.togglePhraseModifier('code', /^.*@/);\n  }\n  if (ch === '!') {\n    var type = this.togglePhraseModifier('image', /^.*(?:\\([^\\)]+\\))?!/);\n    this.stream.match(/^:\\S+/); // optional Url portion\n    return type;\n  }\n  return this.tokenStyles();\n};\n\nParser.prototype.togglePhraseModifier = function(phraseModifier, closeRE) {\n  if (this.state[phraseModifier]) { // remove phrase modifier\n    var type = this.tokenStyles();\n    this.state[phraseModifier] = false;\n    return type;\n  }\n  if (this.stream.match(closeRE, false)) { // add phrase modifier\n    this.state[phraseModifier] = true;\n    this.setModeForNextToken(Modes.attributes);\n  }\n  return this.tokenStyles();\n};\n\nParser.prototype.tokenStyles = function() {\n  var disabled = this.textileDisabled(),\n      styles = [];\n\n  if (disabled) return disabled;\n\n  if (this.state.layoutType) {\n    styles.push(this.styleFor(this.state.layoutType));\n  }\n\n  styles = styles.concat(this.activeStyles('addition', 'bold', 'cite', 'code',\n      'deletion', 'em', 'footCite', 'image', 'italic', 'link', 'span', 'specialChar', 'strong',\n      'sub', 'sup', 'table', 'tableHeading'));\n\n  if (this.state.layoutType === 'header') {\n    styles.push(this.styleFor('header') + '-' + this.state.header);\n  }\n  return styles.length ? styles.join(' ') : null;\n};\n\nParser.prototype.textileDisabled = function() {\n  var type = this.state.layoutType;\n\n  switch(type) {\n    case 'notextile':\n    case 'code':\n    case 'pre':\n      return this.styleFor(type);\n    default:\n      if (this.state.notextile) {\n        return this.styleFor('notextile') + (type ? (' ' + this.styleFor(type)) : '');\n      }\n\n      return null;\n  }\n};\n\nParser.prototype.tokenStylesWith = function(extraStyles) {\n  var disabled = this.textileDisabled(),\n      type;\n\n  if (disabled) return disabled;\n\n  type = this.tokenStyles();\n  if(extraStyles) {\n    return type ? (type + ' ' + extraStyles) : extraStyles;\n  }\n  return type;\n};\n\nParser.prototype.activeStyles = function() {\n  var styles = [],\n      i;\n  for (i = 0; i < arguments.length; ++i) {\n    if (this.state[arguments[i]]) {\n      styles.push(this.styleFor(arguments[i]));\n    }\n  }\n  return styles;\n};\n\nParser.prototype.blankLine = function() {\n  var spanningLayout = this.state.spanningLayout,\n      type = this.state.layoutType,\n      key;\n\n  for (key in this.state) {\n    if (this.state.hasOwnProperty(key)) {\n      delete this.state[key];\n    }\n  }\n\n  this.setModeForNextToken(Modes.newLayout);\n  if (spanningLayout) {\n    this.state.layoutType = type;\n    this.state.spanningLayout = true;\n  }\n};\n\n\nfunction RegExpFactory() {\n  this.cache = {};\n  this.single = {\n    bc: 'bc',\n    bq: 'bq',\n    definitionList: /- [^(?::=)]+:=+/,\n    definitionListEnd: /.*=:\\s*$/,\n    div: 'div',\n    drawTable: /\\|.*\\|/,\n    foot: /fn\\d+/,\n    header: /h[1-6]/,\n    html: /\\s*<(?:\\/)?(\\w+)(?:[^>]+)?>(?:[^<]+<\\/\\1>)?/,\n    link: /[^\"]+\":\\S/,\n    linkDefinition: /\\[[^\\s\\]]+\\]\\S+/,\n    list: /(?:#+|\\*+)/,\n    notextile: 'notextile',\n    para: 'p',\n    pre: 'pre',\n    table: 'table',\n    tableCellAttributes: /[/\\\\]\\d+/,\n    tableHeading: /\\|_\\./,\n    tableText: /[^\"_\\*\\[\\(\\?\\+~\\^%@|-]+/,\n    text: /[^!\"_=\\*\\[\\(<\\?\\+~\\^%@-]+/\n  };\n  this.attributes = {\n    align: /(?:<>|<|>|=)/,\n    selector: /\\([^\\(][^\\)]+\\)/,\n    lang: /\\[[^\\[\\]]+\\]/,\n    pad: /(?:\\(+|\\)+){1,2}/,\n    css: /\\{[^\\}]+\\}/\n  };\n}\n\nRegExpFactory.prototype.pattern = function(name) {\n  return (this.cache[name] || this.createRe(name));\n};\n\nRegExpFactory.prototype.createRe = function(name) {\n  switch (name) {\n    case 'drawTable':\n      return this.makeRe('^', this.single.drawTable, '$');\n    case 'html':\n      return this.makeRe('^', this.single.html, '(?:', this.single.html, ')*', '$');\n    case 'linkDefinition':\n      return this.makeRe('^', this.single.linkDefinition, '$');\n    case 'listLayout':\n      return this.makeRe('^', this.single.list, this.pattern('allAttributes'), '*\\\\s+');\n    case 'tableCellAttributes':\n      return this.makeRe('^', this.choiceRe(this.single.tableCellAttributes,\n          this.pattern('allAttributes')), '+\\\\.');\n    case 'type':\n      return this.makeRe('^', this.pattern('allTypes'));\n    case 'typeLayout':\n      return this.makeRe('^', this.pattern('allTypes'), this.pattern('allAttributes'),\n          '*\\\\.\\\\.?', '(\\\\s+|$)');\n    case 'attributes':\n      return this.makeRe('^', this.pattern('allAttributes'), '+');\n\n    case 'allTypes':\n      return this.choiceRe(this.single.div, this.single.foot,\n          this.single.header, this.single.bc, this.single.bq,\n          this.single.notextile, this.single.pre, this.single.table,\n          this.single.para);\n\n    case 'allAttributes':\n      return this.choiceRe(this.attributes.selector, this.attributes.css,\n          this.attributes.lang, this.attributes.align, this.attributes.pad);\n\n    default:\n      return this.makeRe('^', this.single[name]);\n  }\n};\n\n\nRegExpFactory.prototype.makeRe = function() {\n  var pattern = '',\n      i,\n      arg;\n\n  for (i = 0; i < arguments.length; ++i) {\n    arg = arguments[i];\n    pattern += (typeof arg === 'string') ? arg : arg.source;\n  }\n  return new RegExp(pattern);\n};\n\nRegExpFactory.prototype.choiceRe = function() {\n  var parts = [arguments[0]],\n      i;\n\n  for (i = 1; i < arguments.length; ++i) {\n    parts[i * 2 - 1] = '|';\n    parts[i * 2] = arguments[i];\n  }\n\n  parts.unshift('(?:');\n  parts.push(')');\n  return this.makeRe.apply(this, parts);\n};\n\n\nvar Modes = {\n  newLayout: function() {\n    if (this.check('typeLayout')) {\n      this.state.spanningLayout = false;\n      return this.execMode(Modes.blockType);\n    }\n    if (!this.textileDisabled()) {\n      if (this.check('listLayout')) {\n        return this.execMode(Modes.list);\n      } else if (this.check('drawTable')) {\n        return this.execMode(Modes.table);\n      } else if (this.check('linkDefinition')) {\n        return this.execMode(Modes.linkDefinition);\n      } else if (this.check('definitionList')) {\n        return this.execMode(Modes.definitionList);\n      } else if (this.check('html')) {\n        return this.execMode(Modes.html);\n      }\n    }\n    return this.execMode(Modes.text);\n  },\n\n  blockType: function() {\n    var match,\n        type;\n    this.state.layoutType = null;\n\n    if (match = this.eat('type')) {\n      type = match[0];\n    } else {\n      return this.execMode(Modes.text);\n    }\n\n    if(match = type.match(this.regExpFactory.pattern('header'))) {\n      this.state.layoutType = 'header';\n      this.state.header = parseInt(match[0][1]);\n    } else if (type.match(this.regExpFactory.pattern('bq'))) {\n      this.state.layoutType = 'quote';\n    } else if (type.match(this.regExpFactory.pattern('bc'))) {\n      this.state.layoutType = 'code';\n    } else if (type.match(this.regExpFactory.pattern('foot'))) {\n      this.state.layoutType = 'footnote';\n    } else if (type.match(this.regExpFactory.pattern('notextile'))) {\n      this.state.layoutType = 'notextile';\n    } else if (type.match(this.regExpFactory.pattern('pre'))) {\n      this.state.layoutType = 'pre';\n    } else if (type.match(this.regExpFactory.pattern('div'))) {\n      this.state.layoutType = 'div';\n    } else if (type.match(this.regExpFactory.pattern('table'))) {\n      this.state.layoutType = 'table';\n    }\n\n    this.setModeForNextToken(Modes.attributes);\n    return this.tokenStyles();\n  },\n\n  text: function() {\n    if (this.eat('text')) {\n      return this.tokenStyles();\n    }\n\n    var ch = this.stream.next();\n\n    if (ch === '\"') {\n      return this.execMode(Modes.link);\n    }\n    return this.handlePhraseModifier(ch);\n  },\n\n  attributes: function() {\n    this.setModeForNextToken(Modes.layoutLength);\n\n    if (this.eat('attributes')) {\n      return this.tokenStylesWith(this.styleFor('attributes'));\n    }\n    return this.tokenStyles();\n  },\n\n  layoutLength: function() {\n    if (this.stream.eat('.') && this.stream.eat('.')) {\n      this.state.spanningLayout = true;\n    }\n\n    this.setModeForNextToken(Modes.text);\n    return this.tokenStyles();\n  },\n\n  list: function() {\n    var match = this.eat('list'),\n        listMod;\n    this.state.listDepth = match[0].length;\n    listMod = (this.state.listDepth - 1) % 3;\n    if (!listMod) {\n      this.state.layoutType = 'list1';\n    } else if (listMod === 1) {\n      this.state.layoutType = 'list2';\n    } else {\n      this.state.layoutType = 'list3';\n    }\n    this.setModeForNextToken(Modes.attributes);\n    return this.tokenStyles();\n  },\n\n  link: function() {\n    this.setModeForNextToken(Modes.text);\n    if (this.eat('link')) {\n      this.stream.match(/\\S+/);\n      return this.tokenStylesWith(this.styleFor('link'));\n    }\n    return this.tokenStyles();\n  },\n\n  linkDefinition: function() {\n    this.stream.skipToEnd();\n    return this.tokenStylesWith(this.styleFor('linkDefinition'));\n  },\n\n  definitionList: function() {\n    this.eat('definitionList');\n\n    this.state.layoutType = 'definitionList';\n\n    if (this.stream.match(/\\s*$/)) {\n      this.state.spanningLayout = true;\n    } else {\n      this.setModeForNextToken(Modes.attributes);\n    }\n    return this.tokenStyles();\n  },\n\n  html: function() {\n    this.stream.skipToEnd();\n    return this.tokenStylesWith(this.styleFor('html'));\n  },\n\n  table: function() {\n    this.state.layoutType = 'table';\n    return this.execMode(Modes.tableCell);\n  },\n\n  tableCell: function() {\n    if (this.eat('tableHeading')) {\n      this.state.tableHeading = true;\n    } else {\n      this.stream.eat('|');\n    }\n    this.setModeForNextToken(Modes.tableCellAttributes);\n    return this.tokenStyles();\n  },\n\n  tableCellAttributes: function() {\n    this.setModeForNextToken(Modes.tableText);\n\n    if (this.eat('tableCellAttributes')) {\n      return this.tokenStylesWith(this.styleFor('attributes'));\n    }\n    return this.tokenStyles();\n  },\n\n  tableText: function() {\n    if (this.eat('tableText')) {\n      return this.tokenStyles();\n    }\n\n    if (this.stream.peek() === '|') { // end of cell\n      this.setModeForNextToken(Modes.tableCell);\n      return this.tokenStyles();\n    }\n    return this.handlePhraseModifier(this.stream.next());\n  }\n};\n\n\nCodeMirror.defineMode('textile', function() {\n  var regExpFactory = new RegExpFactory();\n\n  return {\n    startState: function() {\n      return { mode: Modes.newLayout };\n    },\n    token: function(stream, state) {\n      var parser = new Parser(regExpFactory, state, stream);\n      if (stream.sol()) { parser.startNewLine(); }\n      return parser.nextToken();\n    },\n    blankLine: function(state) {\n      new Parser(regExpFactory, state).blankLine();\n    }\n  };\n});\n\nCodeMirror.defineMIME('text/x-textile', 'textile');\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tiddlywiki/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: TiddlyWiki mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"tiddlywiki.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"tiddlywiki.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">TiddlyWiki</a>\n  </ul>\n</div>\n\n<article>\n<h2>TiddlyWiki mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n!TiddlyWiki Formatting\n* Rendered versions can be found at: http://www.tiddlywiki.com/#Reference\n\n|!Option            | !Syntax            |\n|bold font          | ''bold''           |\n|italic type        | //italic//         |\n|underlined text    | __underlined__     |\n|strikethrough text | --strikethrough--  |\n|superscript text   | super^^script^^    |\n|subscript text     | sub~~script~~      |\n|highlighted text   | @@highlighted@@    |\n|preformatted text  | {{{preformatted}}} |\n\n!Block Elements\n<<<\n!Heading 1\n\n!!Heading 2\n\n!!!Heading 3\n\n!!!!Heading 4\n\n!!!!!Heading 5\n<<<\n\n!!Lists\n<<<\n* unordered list, level 1\n** unordered list, level 2\n*** unordered list, level 3\n\n# ordered list, level 1\n## ordered list, level 2\n### unordered list, level 3\n\n; definition list, term\n: definition list, description\n<<<\n\n!!Blockquotes\n<<<\n> blockquote, level 1\n>> blockquote, level 2\n>>> blockquote, level 3\n\n> blockquote\n<<<\n\n!!Preformatted Text\n<<<\n{{{\npreformatted (e.g. code)\n}}}\n<<<\n\n!!Code Sections\n<<<\n{{{\nText style code\n}}}\n\n//{{{\nJS styled code. TiddlyWiki mixed mode should support highlighter switching in the future.\n//}}}\n\n<!--{{{-->\nXML styled code. TiddlyWiki mixed mode should support highlighter switching in the future.\n<!--}}}-->\n<<<\n\n!!Tables\n<<<\n|CssClass|k\n|!heading column 1|!heading column 2|\n|row 1, column 1|row 1, column 2|\n|row 2, column 1|row 2, column 2|\n|>|COLSPAN|\n|ROWSPAN| ... |\n|~| ... |\n|CssProperty:value;...| ... |\n|caption|c\n\n''Annotation:''\n* The {{{>}}} marker creates a \"colspan\", causing the current cell to merge with the one to the right.\n* The {{{~}}} marker creates a \"rowspan\", causing the current cell to merge with the one above.\n<<<\n!!Images /% TODO %/\ncf. [[TiddlyWiki.com|http://www.tiddlywiki.com/#EmbeddedImages]]\n\n!Hyperlinks\n* [[WikiWords|WikiWord]] are automatically transformed to hyperlinks to the respective tiddler\n** the automatic transformation can be suppressed by preceding the respective WikiWord with a tilde ({{{~}}}): {{{~WikiWord}}}\n* [[PrettyLinks]] are enclosed in square brackets and contain the desired tiddler name: {{{[[tiddler name]]}}}\n** optionally, a custom title or description can be added, separated by a pipe character ({{{|}}}): {{{[[title|target]]}}}<br>'''N.B.:''' In this case, the target can also be any website (i.e. URL).\n\n!Custom Styling\n* {{{@@CssProperty:value;CssProperty:value;...@@}}}<br>''N.B.:'' CSS color definitions should use lowercase letters to prevent the inadvertent creation of WikiWords.\n* <html><code>{{customCssClass{...}}}</code></html>\n* raw HTML can be inserted by enclosing the respective code in HTML tags: {{{<html> ... </html>}}}\n\n!Special Markers\n* {{{<br>}}} forces a manual line break\n* {{{----}}} creates a horizontal ruler\n* [[HTML entities|http://www.tiddlywiki.com/#HtmlEntities]]\n* [[HTML entities local|HtmlEntities]]\n* {{{<<macroName>>}}} calls the respective [[macro|Macros]]\n* To hide text within a tiddler so that it is not displayed, it can be wrapped in {{{/%}}} and {{{%/}}}.<br/>This can be a useful trick for hiding drafts or annotating complex markup.\n* To prevent wiki markup from taking effect for a particular section, that section can be enclosed in three double quotes: e.g. {{{\"\"\"WikiWord\"\"\"}}}.\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: 'tiddlywiki',      \n        lineNumbers: true,\n        matchBrackets: true\n      });\n    </script>\n\n    <p>TiddlyWiki mode supports a single configuration.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-tiddlywiki</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css",
    "content": "span.cm-underlined {\n  text-decoration: underline;\n}\nspan.cm-strikethrough {\n  text-decoration: line-through;\n}\nspan.cm-brace {\n  color: #170;\n  font-weight: bold;\n}\nspan.cm-table {\n  color: blue;\n  font-weight: bold;\n}\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/***\n    |''Name''|tiddlywiki.js|\n    |''Description''|Enables TiddlyWikiy syntax highlighting using CodeMirror|\n    |''Author''|PMario|\n    |''Version''|0.1.7|\n    |''Status''|''stable''|\n    |''Source''|[[GitHub|https://github.com/pmario/CodeMirror2/blob/tw-syntax/mode/tiddlywiki]]|\n    |''Documentation''|http://codemirror.tiddlyspace.com/|\n    |''License''|[[MIT License|http://www.opensource.org/licenses/mit-license.php]]|\n    |''CoreVersion''|2.5.0|\n    |''Requires''|codemirror.js|\n    |''Keywords''|syntax highlighting color code mirror codemirror|\n    ! Info\n    CoreVersion parameter is needed for TiddlyWiki only!\n***/\n//{{{\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"tiddlywiki\", function () {\n  // Tokenizer\n  var textwords = {};\n\n  var keywords = function () {\n    function kw(type) {\n      return { type: type, style: \"macro\"};\n    }\n    return {\n      \"allTags\": kw('allTags'), \"closeAll\": kw('closeAll'), \"list\": kw('list'),\n      \"newJournal\": kw('newJournal'), \"newTiddler\": kw('newTiddler'),\n      \"permaview\": kw('permaview'), \"saveChanges\": kw('saveChanges'),\n      \"search\": kw('search'), \"slider\": kw('slider'),   \"tabs\": kw('tabs'),\n      \"tag\": kw('tag'), \"tagging\": kw('tagging'),       \"tags\": kw('tags'),\n      \"tiddler\": kw('tiddler'), \"timeline\": kw('timeline'),\n      \"today\": kw('today'), \"version\": kw('version'),   \"option\": kw('option'),\n\n      \"with\": kw('with'),\n      \"filter\": kw('filter')\n    };\n  }();\n\n  var isSpaceName = /[\\w_\\-]/i,\n  reHR = /^\\-\\-\\-\\-+$/,                                 // <hr>\n  reWikiCommentStart = /^\\/\\*\\*\\*$/,            // /***\n  reWikiCommentStop = /^\\*\\*\\*\\/$/,             // ***/\n  reBlockQuote = /^<<<$/,\n\n  reJsCodeStart = /^\\/\\/\\{\\{\\{$/,                       // //{{{ js block start\n  reJsCodeStop = /^\\/\\/\\}\\}\\}$/,                        // //}}} js stop\n  reXmlCodeStart = /^<!--\\{\\{\\{-->$/,           // xml block start\n  reXmlCodeStop = /^<!--\\}\\}\\}-->$/,            // xml stop\n\n  reCodeBlockStart = /^\\{\\{\\{$/,                        // {{{ TW text div block start\n  reCodeBlockStop = /^\\}\\}\\}$/,                 // }}} TW text stop\n\n  reUntilCodeStop = /.*?\\}\\}\\}/;\n\n  function chain(stream, state, f) {\n    state.tokenize = f;\n    return f(stream, state);\n  }\n\n  // Used as scratch variables to communicate multiple values without\n  // consing up tons of objects.\n  var type, content;\n\n  function ret(tp, style, cont) {\n    type = tp;\n    content = cont;\n    return style;\n  }\n\n  function jsTokenBase(stream, state) {\n    var sol = stream.sol(), ch;\n\n    state.block = false;        // indicates the start of a code block.\n\n    ch = stream.peek();         // don't eat, to make matching simpler\n\n    // check start of  blocks\n    if (sol && /[<\\/\\*{}\\-]/.test(ch)) {\n      if (stream.match(reCodeBlockStart)) {\n        state.block = true;\n        return chain(stream, state, twTokenCode);\n      }\n      if (stream.match(reBlockQuote)) {\n        return ret('quote', 'quote');\n      }\n      if (stream.match(reWikiCommentStart) || stream.match(reWikiCommentStop)) {\n        return ret('code', 'comment');\n      }\n      if (stream.match(reJsCodeStart) || stream.match(reJsCodeStop) || stream.match(reXmlCodeStart) || stream.match(reXmlCodeStop)) {\n        return ret('code', 'comment');\n      }\n      if (stream.match(reHR)) {\n        return ret('hr', 'hr');\n      }\n    } // sol\n    ch = stream.next();\n\n    if (sol && /[\\/\\*!#;:>|]/.test(ch)) {\n      if (ch == \"!\") { // tw header\n        stream.skipToEnd();\n        return ret(\"header\", \"header\");\n      }\n      if (ch == \"*\") { // tw list\n        stream.eatWhile('*');\n        return ret(\"list\", \"comment\");\n      }\n      if (ch == \"#\") { // tw numbered list\n        stream.eatWhile('#');\n        return ret(\"list\", \"comment\");\n      }\n      if (ch == \";\") { // definition list, term\n        stream.eatWhile(';');\n        return ret(\"list\", \"comment\");\n      }\n      if (ch == \":\") { // definition list, description\n        stream.eatWhile(':');\n        return ret(\"list\", \"comment\");\n      }\n      if (ch == \">\") { // single line quote\n        stream.eatWhile(\">\");\n        return ret(\"quote\", \"quote\");\n      }\n      if (ch == '|') {\n        return ret('table', 'header');\n      }\n    }\n\n    if (ch == '{' && stream.match(/\\{\\{/)) {\n      return chain(stream, state, twTokenCode);\n    }\n\n    // rudimentary html:// file:// link matching. TW knows much more ...\n    if (/[hf]/i.test(ch)) {\n      if (/[ti]/i.test(stream.peek()) && stream.match(/\\b(ttps?|tp|ile):\\/\\/[\\-A-Z0-9+&@#\\/%?=~_|$!:,.;]*[A-Z0-9+&@#\\/%=~_|$]/i)) {\n        return ret(\"link\", \"link\");\n      }\n    }\n    // just a little string indicator, don't want to have the whole string covered\n    if (ch == '\"') {\n      return ret('string', 'string');\n    }\n    if (ch == '~') {    // _no_ CamelCase indicator should be bold\n      return ret('text', 'brace');\n    }\n    if (/[\\[\\]]/.test(ch)) { // check for [[..]]\n      if (stream.peek() == ch) {\n        stream.next();\n        return ret('brace', 'brace');\n      }\n    }\n    if (ch == \"@\") {    // check for space link. TODO fix @@...@@ highlighting\n      stream.eatWhile(isSpaceName);\n      return ret(\"link\", \"link\");\n    }\n    if (/\\d/.test(ch)) {        // numbers\n      stream.eatWhile(/\\d/);\n      return ret(\"number\", \"number\");\n    }\n    if (ch == \"/\") { // tw invisible comment\n      if (stream.eat(\"%\")) {\n        return chain(stream, state, twTokenComment);\n      }\n      else if (stream.eat(\"/\")) { //\n        return chain(stream, state, twTokenEm);\n      }\n    }\n    if (ch == \"_\") { // tw underline\n      if (stream.eat(\"_\")) {\n        return chain(stream, state, twTokenUnderline);\n      }\n    }\n    // strikethrough and mdash handling\n    if (ch == \"-\") {\n      if (stream.eat(\"-\")) {\n        // if strikethrough looks ugly, change CSS.\n        if (stream.peek() != ' ')\n          return chain(stream, state, twTokenStrike);\n        // mdash\n        if (stream.peek() == ' ')\n          return ret('text', 'brace');\n      }\n    }\n    if (ch == \"'\") { // tw bold\n      if (stream.eat(\"'\")) {\n        return chain(stream, state, twTokenStrong);\n      }\n    }\n    if (ch == \"<\") { // tw macro\n      if (stream.eat(\"<\")) {\n        return chain(stream, state, twTokenMacro);\n      }\n    }\n    else {\n      return ret(ch);\n    }\n\n    // core macro handling\n    stream.eatWhile(/[\\w\\$_]/);\n    var word = stream.current(),\n    known = textwords.propertyIsEnumerable(word) && textwords[word];\n\n    return known ? ret(known.type, known.style, word) : ret(\"text\", null, word);\n\n  } // jsTokenBase()\n\n  // tw invisible comment\n  function twTokenComment(stream, state) {\n    var maybeEnd = false,\n    ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = jsTokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"%\");\n    }\n    return ret(\"comment\", \"comment\");\n  }\n\n  // tw strong / bold\n  function twTokenStrong(stream, state) {\n    var maybeEnd = false,\n    ch;\n    while (ch = stream.next()) {\n      if (ch == \"'\" && maybeEnd) {\n        state.tokenize = jsTokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"'\");\n    }\n    return ret(\"text\", \"strong\");\n  }\n\n  // tw code\n  function twTokenCode(stream, state) {\n    var ch, sb = state.block;\n\n    if (sb && stream.current()) {\n      return ret(\"code\", \"comment\");\n    }\n\n    if (!sb && stream.match(reUntilCodeStop)) {\n      state.tokenize = jsTokenBase;\n      return ret(\"code\", \"comment\");\n    }\n\n    if (sb && stream.sol() && stream.match(reCodeBlockStop)) {\n      state.tokenize = jsTokenBase;\n      return ret(\"code\", \"comment\");\n    }\n\n    ch = stream.next();\n    return (sb) ? ret(\"code\", \"comment\") : ret(\"code\", \"comment\");\n  }\n\n  // tw em / italic\n  function twTokenEm(stream, state) {\n    var maybeEnd = false,\n    ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = jsTokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"/\");\n    }\n    return ret(\"text\", \"em\");\n  }\n\n  // tw underlined text\n  function twTokenUnderline(stream, state) {\n    var maybeEnd = false,\n    ch;\n    while (ch = stream.next()) {\n      if (ch == \"_\" && maybeEnd) {\n        state.tokenize = jsTokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"_\");\n    }\n    return ret(\"text\", \"underlined\");\n  }\n\n  // tw strike through text looks ugly\n  // change CSS if needed\n  function twTokenStrike(stream, state) {\n    var maybeEnd = false, ch;\n\n    while (ch = stream.next()) {\n      if (ch == \"-\" && maybeEnd) {\n        state.tokenize = jsTokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"-\");\n    }\n    return ret(\"text\", \"strikethrough\");\n  }\n\n  // macro\n  function twTokenMacro(stream, state) {\n    var ch, word, known;\n\n    if (stream.current() == '<<') {\n      return ret('brace', 'macro');\n    }\n\n    ch = stream.next();\n    if (!ch) {\n      state.tokenize = jsTokenBase;\n      return ret(ch);\n    }\n    if (ch == \">\") {\n      if (stream.peek() == '>') {\n        stream.next();\n        state.tokenize = jsTokenBase;\n        return ret(\"brace\", \"macro\");\n      }\n    }\n\n    stream.eatWhile(/[\\w\\$_]/);\n    word = stream.current();\n    known = keywords.propertyIsEnumerable(word) && keywords[word];\n\n    if (known) {\n      return ret(known.type, known.style, word);\n    }\n    else {\n      return ret(\"macro\", null, word);\n    }\n  }\n\n  // Interface\n  return {\n    startState: function () {\n      return {\n        tokenize: jsTokenBase,\n        indented: 0,\n        level: 0\n      };\n    },\n\n    token: function (stream, state) {\n      if (stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n      return style;\n    },\n\n    electricChars: \"\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-tiddlywiki\", \"tiddlywiki\");\n});\n\n//}}}\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tiki/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Tiki wiki mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"tiki.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"tiki.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Tiki wiki</a>\n  </ul>\n</div>\n\n<article>\n<h2>Tiki wiki mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\nHeadings\n!Header 1\n!!Header 2\n!!!Header 3\n!!!!Header 4\n!!!!!Header 5\n!!!!!!Header 6\n\nStyling\n-=titlebar=-\n^^ Box on multi\nlines\nof content^^\n__bold__\n''italic''\n===underline===\n::center::\n--Line Through--\n\nOperators\n~np~No parse~/np~\n\nLink\n[link|desc|nocache]\n\nWiki\n((Wiki))\n((Wiki|desc))\n((Wiki|desc|timeout))\n\nTable\n||row1 col1|row1 col2|row1 col3\nrow2 col1|row2 col2|row2 col3\nrow3 col1|row3 col2|row3 col3||\n\nLists:\n*bla\n**bla-1\n++continue-bla-1\n***bla-2\n++continue-bla-1\n*bla\n+continue-bla\n#bla\n** tra-la-la\n+continue-bla\n#bla\n\nPlugin (standard):\n{PLUGIN(attr=\"my attr\")}\nPlugin Body\n{PLUGIN}\n\nPlugin (inline):\n{plugin attr=\"my attr\"}\n</textarea></div>\n\n<script type=\"text/javascript\">\n\tvar editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: 'tiki',      \n        lineNumbers: true\n    });\n</script>\n\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tiki/tiki.css",
    "content": ".cm-tw-syntaxerror {\n\tcolor: #FFF;\n\tbackground-color: #900;\n}\n\n.cm-tw-deleted {\n\ttext-decoration: line-through;\n}\n\n.cm-tw-header5 {\n\tfont-weight: bold;\n}\n.cm-tw-listitem:first-child { /*Added first child to fix duplicate padding when highlighting*/\n\tpadding-left: 10px;\n}\n\n.cm-tw-box {\n\tborder-top-width: 0px ! important;\n\tborder-style: solid;\n\tborder-width: 1px;\n\tborder-color: inherit;\n}\n\n.cm-tw-underline {\n\ttext-decoration: underline;\n}"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tiki/tiki.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode('tiki', function(config) {\n  function inBlock(style, terminator, returnTokenizer) {\n    return function(stream, state) {\n      while (!stream.eol()) {\n        if (stream.match(terminator)) {\n          state.tokenize = inText;\n          break;\n        }\n        stream.next();\n      }\n\n      if (returnTokenizer) state.tokenize = returnTokenizer;\n\n      return style;\n    };\n  }\n\n  function inLine(style) {\n    return function(stream, state) {\n      while(!stream.eol()) {\n        stream.next();\n      }\n      state.tokenize = inText;\n      return style;\n    };\n  }\n\n  function inText(stream, state) {\n    function chain(parser) {\n      state.tokenize = parser;\n      return parser(stream, state);\n    }\n\n    var sol = stream.sol();\n    var ch = stream.next();\n\n    //non start of line\n    switch (ch) { //switch is generally much faster than if, so it is used here\n    case \"{\": //plugin\n      stream.eat(\"/\");\n      stream.eatSpace();\n      var tagName = \"\";\n      var c;\n      while ((c = stream.eat(/[^\\s\\u00a0=\\\"\\'\\/?(}]/))) tagName += c;\n      state.tokenize = inPlugin;\n      return \"tag\";\n      break;\n    case \"_\": //bold\n      if (stream.eat(\"_\")) {\n        return chain(inBlock(\"strong\", \"__\", inText));\n      }\n      break;\n    case \"'\": //italics\n      if (stream.eat(\"'\")) {\n        // Italic text\n        return chain(inBlock(\"em\", \"''\", inText));\n      }\n      break;\n    case \"(\":// Wiki Link\n      if (stream.eat(\"(\")) {\n        return chain(inBlock(\"variable-2\", \"))\", inText));\n      }\n      break;\n    case \"[\":// Weblink\n      return chain(inBlock(\"variable-3\", \"]\", inText));\n      break;\n    case \"|\": //table\n      if (stream.eat(\"|\")) {\n        return chain(inBlock(\"comment\", \"||\"));\n      }\n      break;\n    case \"-\":\n      if (stream.eat(\"=\")) {//titleBar\n        return chain(inBlock(\"header string\", \"=-\", inText));\n      } else if (stream.eat(\"-\")) {//deleted\n        return chain(inBlock(\"error tw-deleted\", \"--\", inText));\n      }\n      break;\n    case \"=\": //underline\n      if (stream.match(\"==\")) {\n        return chain(inBlock(\"tw-underline\", \"===\", inText));\n      }\n      break;\n    case \":\":\n      if (stream.eat(\":\")) {\n        return chain(inBlock(\"comment\", \"::\"));\n      }\n      break;\n    case \"^\": //box\n      return chain(inBlock(\"tw-box\", \"^\"));\n      break;\n    case \"~\": //np\n      if (stream.match(\"np~\")) {\n        return chain(inBlock(\"meta\", \"~/np~\"));\n      }\n      break;\n    }\n\n    //start of line types\n    if (sol) {\n      switch (ch) {\n      case \"!\": //header at start of line\n        if (stream.match('!!!!!')) {\n          return chain(inLine(\"header string\"));\n        } else if (stream.match('!!!!')) {\n          return chain(inLine(\"header string\"));\n        } else if (stream.match('!!!')) {\n          return chain(inLine(\"header string\"));\n        } else if (stream.match('!!')) {\n          return chain(inLine(\"header string\"));\n        } else {\n          return chain(inLine(\"header string\"));\n        }\n        break;\n      case \"*\": //unordered list line item, or <li /> at start of line\n      case \"#\": //ordered list line item, or <li /> at start of line\n      case \"+\": //ordered list line item, or <li /> at start of line\n        return chain(inLine(\"tw-listitem bracket\"));\n        break;\n      }\n    }\n\n    //stream.eatWhile(/[&{]/); was eating up plugins, turned off to act less like html and more like tiki\n    return null;\n  }\n\n  var indentUnit = config.indentUnit;\n\n  // Return variables for tokenizers\n  var pluginName, type;\n  function inPlugin(stream, state) {\n    var ch = stream.next();\n    var peek = stream.peek();\n\n    if (ch == \"}\") {\n      state.tokenize = inText;\n      //type = ch == \")\" ? \"endPlugin\" : \"selfclosePlugin\"; inPlugin\n      return \"tag\";\n    } else if (ch == \"(\" || ch == \")\") {\n      return \"bracket\";\n    } else if (ch == \"=\") {\n      type = \"equals\";\n\n      if (peek == \">\") {\n        ch = stream.next();\n        peek = stream.peek();\n      }\n\n      //here we detect values directly after equal character with no quotes\n      if (!/[\\'\\\"]/.test(peek)) {\n        state.tokenize = inAttributeNoQuote();\n      }\n      //end detect values\n\n      return \"operator\";\n    } else if (/[\\'\\\"]/.test(ch)) {\n      state.tokenize = inAttribute(ch);\n      return state.tokenize(stream, state);\n    } else {\n      stream.eatWhile(/[^\\s\\u00a0=\\\"\\'\\/?]/);\n      return \"keyword\";\n    }\n  }\n\n  function inAttribute(quote) {\n    return function(stream, state) {\n      while (!stream.eol()) {\n        if (stream.next() == quote) {\n          state.tokenize = inPlugin;\n          break;\n        }\n      }\n      return \"string\";\n    };\n  }\n\n  function inAttributeNoQuote() {\n    return function(stream, state) {\n      while (!stream.eol()) {\n        var ch = stream.next();\n        var peek = stream.peek();\n        if (ch == \" \" || ch == \",\" || /[ )}]/.test(peek)) {\n      state.tokenize = inPlugin;\n      break;\n    }\n  }\n  return \"string\";\n};\n                     }\n\nvar curState, setStyle;\nfunction pass() {\n  for (var i = arguments.length - 1; i >= 0; i--) curState.cc.push(arguments[i]);\n}\n\nfunction cont() {\n  pass.apply(null, arguments);\n  return true;\n}\n\nfunction pushContext(pluginName, startOfLine) {\n  var noIndent = curState.context && curState.context.noIndent;\n  curState.context = {\n    prev: curState.context,\n    pluginName: pluginName,\n    indent: curState.indented,\n    startOfLine: startOfLine,\n    noIndent: noIndent\n  };\n}\n\nfunction popContext() {\n  if (curState.context) curState.context = curState.context.prev;\n}\n\nfunction element(type) {\n  if (type == \"openPlugin\") {curState.pluginName = pluginName; return cont(attributes, endplugin(curState.startOfLine));}\n  else if (type == \"closePlugin\") {\n    var err = false;\n    if (curState.context) {\n      err = curState.context.pluginName != pluginName;\n      popContext();\n    } else {\n      err = true;\n    }\n    if (err) setStyle = \"error\";\n    return cont(endcloseplugin(err));\n  }\n  else if (type == \"string\") {\n    if (!curState.context || curState.context.name != \"!cdata\") pushContext(\"!cdata\");\n    if (curState.tokenize == inText) popContext();\n    return cont();\n  }\n  else return cont();\n}\n\nfunction endplugin(startOfLine) {\n  return function(type) {\n    if (\n      type == \"selfclosePlugin\" ||\n        type == \"endPlugin\"\n    )\n      return cont();\n    if (type == \"endPlugin\") {pushContext(curState.pluginName, startOfLine); return cont();}\n    return cont();\n  };\n}\n\nfunction endcloseplugin(err) {\n  return function(type) {\n    if (err) setStyle = \"error\";\n    if (type == \"endPlugin\") return cont();\n    return pass();\n  };\n}\n\nfunction attributes(type) {\n  if (type == \"keyword\") {setStyle = \"attribute\"; return cont(attributes);}\n  if (type == \"equals\") return cont(attvalue, attributes);\n  return pass();\n}\nfunction attvalue(type) {\n  if (type == \"keyword\") {setStyle = \"string\"; return cont();}\n  if (type == \"string\") return cont(attvaluemaybe);\n  return pass();\n}\nfunction attvaluemaybe(type) {\n  if (type == \"string\") return cont(attvaluemaybe);\n  else return pass();\n}\nreturn {\n  startState: function() {\n    return {tokenize: inText, cc: [], indented: 0, startOfLine: true, pluginName: null, context: null};\n  },\n  token: function(stream, state) {\n    if (stream.sol()) {\n      state.startOfLine = true;\n      state.indented = stream.indentation();\n    }\n    if (stream.eatSpace()) return null;\n\n    setStyle = type = pluginName = null;\n    var style = state.tokenize(stream, state);\n    if ((style || type) && style != \"comment\") {\n      curState = state;\n      while (true) {\n        var comb = state.cc.pop() || element;\n        if (comb(type || style)) break;\n      }\n    }\n    state.startOfLine = false;\n    return setStyle || style;\n  },\n  indent: function(state, textAfter) {\n    var context = state.context;\n    if (context && context.noIndent) return 0;\n    if (context && /^{\\//.test(textAfter))\n        context = context.prev;\n        while (context && !context.startOfLine)\n          context = context.prev;\n        if (context) return context.indent + indentUnit;\n        else return 0;\n       },\n    electricChars: \"/\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/tiki\", \"tiki\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/toml/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: TOML Mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"toml.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">TOML Mode</a>\n  </ul>\n</div>\n\n<article>\n<h2>TOML Mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n# This is a TOML document. Boom.\n\ntitle = \"TOML Example\"\n\n[owner]\nname = \"Tom Preston-Werner\"\norganization = \"GitHub\"\nbio = \"GitHub Cofounder &amp; CEO\\nLikes tater tots and beer.\"\ndob = 1979-05-27T07:32:00Z # First class dates? Why not?\n\n[database]\nserver = \"192.168.1.1\"\nports = [ 8001, 8001, 8002 ]\nconnection_max = 5000\nenabled = true\n\n[servers]\n\n  # You can indent as you please. Tabs or spaces. TOML don't care.\n  [servers.alpha]\n  ip = \"10.0.0.1\"\n  dc = \"eqdc10\"\n  \n  [servers.beta]\n  ip = \"10.0.0.2\"\n  dc = \"eqdc10\"\n  \n[clients]\ndata = [ [\"gamma\", \"delta\"], [1, 2] ]\n\n# Line breaks are OK when inside arrays\nhosts = [\n  \"alpha\",\n  \"omega\"\n]\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: {name: \"toml\"},\n        lineNumbers: true\n      });\n    </script>\n    <h3>The TOML Mode</h3>\n      <p> Created by Forbes Lindesay.</p>\n    <p><strong>MIME type defined:</strong> <code>text/x-toml</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/toml/toml.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"toml\", function () {\n  return {\n    startState: function () {\n      return {\n        inString: false,\n        stringType: \"\",\n        lhs: true,\n        inArray: 0\n      };\n    },\n    token: function (stream, state) {\n      //check for state changes\n      if (!state.inString && ((stream.peek() == '\"') || (stream.peek() == \"'\"))) {\n        state.stringType = stream.peek();\n        stream.next(); // Skip quote\n        state.inString = true; // Update state\n      }\n      if (stream.sol() && state.inArray === 0) {\n        state.lhs = true;\n      }\n      //return state\n      if (state.inString) {\n        while (state.inString && !stream.eol()) {\n          if (stream.peek() === state.stringType) {\n            stream.next(); // Skip quote\n            state.inString = false; // Clear flag\n          } else if (stream.peek() === '\\\\') {\n            stream.next();\n            stream.next();\n          } else {\n            stream.match(/^.[^\\\\\\\"\\']*/);\n          }\n        }\n        return state.lhs ? \"property string\" : \"string\"; // Token style\n      } else if (state.inArray && stream.peek() === ']') {\n        stream.next();\n        state.inArray--;\n        return 'bracket';\n      } else if (state.lhs && stream.peek() === '[' && stream.skipTo(']')) {\n        stream.next();//skip closing ]\n        // array of objects has an extra open & close []\n        if (stream.peek() === ']') stream.next();\n        return \"atom\";\n      } else if (stream.peek() === \"#\") {\n        stream.skipToEnd();\n        return \"comment\";\n      } else if (stream.eatSpace()) {\n        return null;\n      } else if (state.lhs && stream.eatWhile(function (c) { return c != '=' && c != ' '; })) {\n        return \"property\";\n      } else if (state.lhs && stream.peek() === \"=\") {\n        stream.next();\n        state.lhs = false;\n        return null;\n      } else if (!state.lhs && stream.match(/^\\d\\d\\d\\d[\\d\\-\\:\\.T]*Z/)) {\n        return 'atom'; //date\n      } else if (!state.lhs && (stream.match('true') || stream.match('false'))) {\n        return 'atom';\n      } else if (!state.lhs && stream.peek() === '[') {\n        state.inArray++;\n        stream.next();\n        return 'bracket';\n      } else if (!state.lhs && stream.match(/^\\-?\\d+(?:\\.\\d+)?/)) {\n        return 'number';\n      } else if (!stream.eatSpace()) {\n        stream.next();\n      }\n      return null;\n    }\n  };\n});\n\nCodeMirror.defineMIME('text/x-toml', 'toml');\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tornado/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Tornado template mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/mode/overlay.js\"></script>\n<script src=\"../xml/xml.js\"></script>\n<script src=\"../htmlmixed/htmlmixed.js\"></script>\n<script src=\"tornado.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/marijnh/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Tornado</a>\n  </ul>\n</div>\n\n<article>\n<h2>Tornado template mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n<!doctype html>\n<html>\n    <head>\n        <title>My Tornado web application</title>\n    </head>\n    <body>\n        <h1>\n            {{ title }}\n        </h1>\n        <ul class=\"my-list\">\n            {% for item in items %}\n                <li>{% item.name %}</li>\n            {% empty %}\n                <li>You have no items in your list.</li>\n            {% end %}\n        </ul>\n    </body>\n</html>\n</textarea></form>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        mode: \"tornado\",\n        indentUnit: 4,\n        indentWithTabs: true\n      });\n    </script>\n\n    <p>Mode for HTML with embedded Tornado template markup.</p>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-tornado</code></p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/tornado/tornado.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"), require(\"../htmlmixed/htmlmixed\"),\n        require(\"../../addon/mode/overlay\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\", \"../htmlmixed/htmlmixed\",\n            \"../../addon/mode/overlay\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n  \"use strict\";\n\n  CodeMirror.defineMode(\"tornado:inner\", function() {\n    var keywords = [\"and\",\"as\",\"assert\",\"autoescape\",\"block\",\"break\",\"class\",\"comment\",\"context\",\n                    \"continue\",\"datetime\",\"def\",\"del\",\"elif\",\"else\",\"end\",\"escape\",\"except\",\n                    \"exec\",\"extends\",\"false\",\"finally\",\"for\",\"from\",\"global\",\"if\",\"import\",\"in\",\n                    \"include\",\"is\",\"json_encode\",\"lambda\",\"length\",\"linkify\",\"load\",\"module\",\n                    \"none\",\"not\",\"or\",\"pass\",\"print\",\"put\",\"raise\",\"raw\",\"return\",\"self\",\"set\",\n                    \"squeeze\",\"super\",\"true\",\"try\",\"url_escape\",\"while\",\"with\",\"without\",\"xhtml_escape\",\"yield\"];\n    keywords = new RegExp(\"^((\" + keywords.join(\")|(\") + \"))\\\\b\");\n\n    function tokenBase (stream, state) {\n      stream.eatWhile(/[^\\{]/);\n      var ch = stream.next();\n      if (ch == \"{\") {\n        if (ch = stream.eat(/\\{|%|#/)) {\n          state.tokenize = inTag(ch);\n          return \"tag\";\n        }\n      }\n    }\n    function inTag (close) {\n      if (close == \"{\") {\n        close = \"}\";\n      }\n      return function (stream, state) {\n        var ch = stream.next();\n        if ((ch == close) && stream.eat(\"}\")) {\n          state.tokenize = tokenBase;\n          return \"tag\";\n        }\n        if (stream.match(keywords)) {\n          return \"keyword\";\n        }\n        return close == \"#\" ? \"comment\" : \"string\";\n      };\n    }\n    return {\n      startState: function () {\n        return {tokenize: tokenBase};\n      },\n      token: function (stream, state) {\n        return state.tokenize(stream, state);\n      }\n    };\n  });\n\n  CodeMirror.defineMode(\"tornado\", function(config) {\n    var htmlBase = CodeMirror.getMode(config, \"text/html\");\n    var tornadoInner = CodeMirror.getMode(config, \"tornado:inner\");\n    return CodeMirror.overlayMode(htmlBase, tornadoInner);\n  });\n\n  CodeMirror.defineMIME(\"text/x-tornado\", \"tornado\");\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/turtle/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Turtle mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"turtle.js\"></script>\n<style>.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Turtle</a>\n  </ul>\n</div>\n\n<article>\n<h2>Turtle mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n\n<http://purl.org/net/bsletten> \n    a foaf:Person;\n    foaf:interest <http://www.w3.org/2000/01/sw/>;\n    foaf:based_near [\n        geo:lat \"34.0736111\" ;\n        geo:lon \"-118.3994444\"\n   ]\n\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: \"text/turtle\",\n        matchBrackets: true\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/turtle</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/turtle/turtle.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"turtle\", function(config) {\n  var indentUnit = config.indentUnit;\n  var curPunc;\n\n  function wordRegexp(words) {\n    return new RegExp(\"^(?:\" + words.join(\"|\") + \")$\", \"i\");\n  }\n  var ops = wordRegexp([]);\n  var keywords = wordRegexp([\"@prefix\", \"@base\", \"a\"]);\n  var operatorChars = /[*+\\-<>=&|]/;\n\n  function tokenBase(stream, state) {\n    var ch = stream.next();\n    curPunc = null;\n    if (ch == \"<\" && !stream.match(/^[\\s\\u00a0=]/, false)) {\n      stream.match(/^[^\\s\\u00a0>]*>?/);\n      return \"atom\";\n    }\n    else if (ch == \"\\\"\" || ch == \"'\") {\n      state.tokenize = tokenLiteral(ch);\n      return state.tokenize(stream, state);\n    }\n    else if (/[{}\\(\\),\\.;\\[\\]]/.test(ch)) {\n      curPunc = ch;\n      return null;\n    }\n    else if (ch == \"#\") {\n      stream.skipToEnd();\n      return \"comment\";\n    }\n    else if (operatorChars.test(ch)) {\n      stream.eatWhile(operatorChars);\n      return null;\n    }\n    else if (ch == \":\") {\n          return \"operator\";\n        } else {\n      stream.eatWhile(/[_\\w\\d]/);\n      if(stream.peek() == \":\") {\n        return \"variable-3\";\n      } else {\n             var word = stream.current();\n\n             if(keywords.test(word)) {\n                        return \"meta\";\n             }\n\n             if(ch >= \"A\" && ch <= \"Z\") {\n                    return \"comment\";\n                 } else {\n                        return \"keyword\";\n                 }\n      }\n      var word = stream.current();\n      if (ops.test(word))\n        return null;\n      else if (keywords.test(word))\n        return \"meta\";\n      else\n        return \"variable\";\n    }\n  }\n\n  function tokenLiteral(quote) {\n    return function(stream, state) {\n      var escaped = false, ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == quote && !escaped) {\n          state.tokenize = tokenBase;\n          break;\n        }\n        escaped = !escaped && ch == \"\\\\\";\n      }\n      return \"string\";\n    };\n  }\n\n  function pushContext(state, type, col) {\n    state.context = {prev: state.context, indent: state.indent, col: col, type: type};\n  }\n  function popContext(state) {\n    state.indent = state.context.indent;\n    state.context = state.context.prev;\n  }\n\n  return {\n    startState: function() {\n      return {tokenize: tokenBase,\n              context: null,\n              indent: 0,\n              col: 0};\n    },\n\n    token: function(stream, state) {\n      if (stream.sol()) {\n        if (state.context && state.context.align == null) state.context.align = false;\n        state.indent = stream.indentation();\n      }\n      if (stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n\n      if (style != \"comment\" && state.context && state.context.align == null && state.context.type != \"pattern\") {\n        state.context.align = true;\n      }\n\n      if (curPunc == \"(\") pushContext(state, \")\", stream.column());\n      else if (curPunc == \"[\") pushContext(state, \"]\", stream.column());\n      else if (curPunc == \"{\") pushContext(state, \"}\", stream.column());\n      else if (/[\\]\\}\\)]/.test(curPunc)) {\n        while (state.context && state.context.type == \"pattern\") popContext(state);\n        if (state.context && curPunc == state.context.type) popContext(state);\n      }\n      else if (curPunc == \".\" && state.context && state.context.type == \"pattern\") popContext(state);\n      else if (/atom|string|variable/.test(style) && state.context) {\n        if (/[\\}\\]]/.test(state.context.type))\n          pushContext(state, \"pattern\", stream.column());\n        else if (state.context.type == \"pattern\" && !state.context.align) {\n          state.context.align = true;\n          state.context.col = stream.column();\n        }\n      }\n\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      var firstChar = textAfter && textAfter.charAt(0);\n      var context = state.context;\n      if (/[\\]\\}]/.test(firstChar))\n        while (context && context.type == \"pattern\") context = context.prev;\n\n      var closing = context && firstChar == context.type;\n      if (!context)\n        return 0;\n      else if (context.type == \"pattern\")\n        return context.col;\n      else if (context.align)\n        return context.col + (closing ? 0 : 1);\n      else\n        return context.indent + (closing ? 0 : indentUnit);\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/turtle\", \"turtle\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/vb/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: VB.NET mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link href=\"http://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\" type=\"text/css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"vb.js\"></script>\n<script type=\"text/javascript\" src=\"../../addon/runmode/runmode.js\"></script>\n<style>\n      .CodeMirror {border: 1px solid #aaa; height:210px; height: auto;}\n      .CodeMirror-scroll { overflow-x: auto; overflow-y: hidden;}\n      .CodeMirror pre { font-family: Inconsolata; font-size: 14px}\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">VB.NET</a>\n  </ul>\n</div>\n\n<article>\n<h2>VB.NET mode</h2>\n\n<script type=\"text/javascript\">\nfunction test(golden, text) {\n  var ok = true;\n  var i = 0;\n  function callback(token, style, lineNo, pos){\n\t\t//console.log(String(token) + \" \" + String(style) + \" \" + String(lineNo) + \" \" + String(pos));\n    var result = [String(token), String(style)];\n    if (golden[i][0] != result[0] || golden[i][1] != result[1]){\n      return \"Error, expected: \" + String(golden[i]) + \", got: \" + String(result);\n      ok = false;\n    }\n    i++;\n  }\n  CodeMirror.runMode(text, \"text/x-vb\",callback); \n\n  if (ok) return \"Tests OK\";\n}\nfunction testTypes() {\n  var golden = [['Integer','keyword'],[' ','null'],['Float','keyword']]\n  var text =  \"Integer Float\";\n  return test(golden,text);\n}\nfunction testIf(){\n  var golden = [['If','keyword'],[' ','null'],['True','keyword'],[' ','null'],['End','keyword'],[' ','null'],['If','keyword']];\n  var text = 'If True End If';\n  return test(golden, text);\n}\nfunction testDecl(){\n   var golden = [['Dim','keyword'],[' ','null'],['x','variable'],[' ','null'],['as','keyword'],[' ','null'],['Integer','keyword']];\n   var text = 'Dim x as Integer';\n   return test(golden, text);\n}\nfunction testAll(){\n  var result = \"\";\n\n  result += testTypes() + \"\\n\";\n  result += testIf() + \"\\n\";\n  result += testDecl() + \"\\n\";\n  return result;\n\n}\nfunction initText(editor) {\n  var content = 'Class rocket\\nPrivate quality as Double\\nPublic Sub launch() as String\\nif quality > 0.8\\nlaunch = \"Successful\"\\nElse\\nlaunch = \"Failed\"\\nEnd If\\nEnd sub\\nEnd class\\n';\n  editor.setValue(content);\n  for (var i =0; i< editor.lineCount(); i++) editor.indentLine(i);\n}\nfunction init() {\n    editor = CodeMirror.fromTextArea(document.getElementById(\"solution\"), {\n        lineNumbers: true,\n        mode: \"text/x-vb\",\n        readOnly: false\n    });\n    runTest();\n}\nfunction runTest() {\n\tdocument.getElementById('testresult').innerHTML = testAll();\n  initText(editor);\n\t\n}\ndocument.body.onload = init;\n</script>\n\n  <div id=\"edit\">\n  <textarea style=\"width:95%;height:200px;padding:5px;\" name=\"solution\" id=\"solution\" ></textarea>\n  </div>\n  <pre id=\"testresult\"></pre>\n  <p>MIME type defined: <code>text/x-vb</code>.</p>\n\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/vb/vb.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"vb\", function(conf, parserConf) {\n    var ERRORCLASS = 'error';\n\n    function wordRegexp(words) {\n        return new RegExp(\"^((\" + words.join(\")|(\") + \"))\\\\b\", \"i\");\n    }\n\n    var singleOperators = new RegExp(\"^[\\\\+\\\\-\\\\*/%&\\\\\\\\|\\\\^~<>!]\");\n    var singleDelimiters = new RegExp('^[\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}@,:`=;\\\\.]');\n    var doubleOperators = new RegExp(\"^((==)|(<>)|(<=)|(>=)|(<>)|(<<)|(>>)|(//)|(\\\\*\\\\*))\");\n    var doubleDelimiters = new RegExp(\"^((\\\\+=)|(\\\\-=)|(\\\\*=)|(%=)|(/=)|(&=)|(\\\\|=)|(\\\\^=))\");\n    var tripleDelimiters = new RegExp(\"^((//=)|(>>=)|(<<=)|(\\\\*\\\\*=))\");\n    var identifiers = new RegExp(\"^[_A-Za-z][_A-Za-z0-9]*\");\n\n    var openingKeywords = ['class','module', 'sub','enum','select','while','if','function',  'get','set','property', 'try'];\n    var middleKeywords = ['else','elseif','case', 'catch'];\n    var endKeywords = ['next','loop'];\n\n    var wordOperators = wordRegexp(['and', 'or', 'not', 'xor', 'in']);\n    var commonkeywords = ['as', 'dim', 'break',  'continue','optional', 'then',  'until',\n                          'goto', 'byval','byref','new','handles','property', 'return',\n                          'const','private', 'protected', 'friend', 'public', 'shared', 'static', 'true','false'];\n    var commontypes = ['integer','string','double','decimal','boolean','short','char', 'float','single'];\n\n    var keywords = wordRegexp(commonkeywords);\n    var types = wordRegexp(commontypes);\n    var stringPrefixes = '\"';\n\n    var opening = wordRegexp(openingKeywords);\n    var middle = wordRegexp(middleKeywords);\n    var closing = wordRegexp(endKeywords);\n    var doubleClosing = wordRegexp(['end']);\n    var doOpening = wordRegexp(['do']);\n\n    var indentInfo = null;\n\n\n\n\n    function indent(_stream, state) {\n      state.currentIndent++;\n    }\n\n    function dedent(_stream, state) {\n      state.currentIndent--;\n    }\n    // tokenizers\n    function tokenBase(stream, state) {\n        if (stream.eatSpace()) {\n            return null;\n        }\n\n        var ch = stream.peek();\n\n        // Handle Comments\n        if (ch === \"'\") {\n            stream.skipToEnd();\n            return 'comment';\n        }\n\n\n        // Handle Number Literals\n        if (stream.match(/^((&H)|(&O))?[0-9\\.a-f]/i, false)) {\n            var floatLiteral = false;\n            // Floats\n            if (stream.match(/^\\d*\\.\\d+F?/i)) { floatLiteral = true; }\n            else if (stream.match(/^\\d+\\.\\d*F?/)) { floatLiteral = true; }\n            else if (stream.match(/^\\.\\d+F?/)) { floatLiteral = true; }\n\n            if (floatLiteral) {\n                // Float literals may be \"imaginary\"\n                stream.eat(/J/i);\n                return 'number';\n            }\n            // Integers\n            var intLiteral = false;\n            // Hex\n            if (stream.match(/^&H[0-9a-f]+/i)) { intLiteral = true; }\n            // Octal\n            else if (stream.match(/^&O[0-7]+/i)) { intLiteral = true; }\n            // Decimal\n            else if (stream.match(/^[1-9]\\d*F?/)) {\n                // Decimal literals may be \"imaginary\"\n                stream.eat(/J/i);\n                // TODO - Can you have imaginary longs?\n                intLiteral = true;\n            }\n            // Zero by itself with no other piece of number.\n            else if (stream.match(/^0(?![\\dx])/i)) { intLiteral = true; }\n            if (intLiteral) {\n                // Integer literals may be \"long\"\n                stream.eat(/L/i);\n                return 'number';\n            }\n        }\n\n        // Handle Strings\n        if (stream.match(stringPrefixes)) {\n            state.tokenize = tokenStringFactory(stream.current());\n            return state.tokenize(stream, state);\n        }\n\n        // Handle operators and Delimiters\n        if (stream.match(tripleDelimiters) || stream.match(doubleDelimiters)) {\n            return null;\n        }\n        if (stream.match(doubleOperators)\n            || stream.match(singleOperators)\n            || stream.match(wordOperators)) {\n            return 'operator';\n        }\n        if (stream.match(singleDelimiters)) {\n            return null;\n        }\n        if (stream.match(doOpening)) {\n            indent(stream,state);\n            state.doInCurrentLine = true;\n            return 'keyword';\n        }\n        if (stream.match(opening)) {\n            if (! state.doInCurrentLine)\n              indent(stream,state);\n            else\n              state.doInCurrentLine = false;\n            return 'keyword';\n        }\n        if (stream.match(middle)) {\n            return 'keyword';\n        }\n\n        if (stream.match(doubleClosing)) {\n            dedent(stream,state);\n            dedent(stream,state);\n            return 'keyword';\n        }\n        if (stream.match(closing)) {\n            dedent(stream,state);\n            return 'keyword';\n        }\n\n        if (stream.match(types)) {\n            return 'keyword';\n        }\n\n        if (stream.match(keywords)) {\n            return 'keyword';\n        }\n\n        if (stream.match(identifiers)) {\n            return 'variable';\n        }\n\n        // Handle non-detected items\n        stream.next();\n        return ERRORCLASS;\n    }\n\n    function tokenStringFactory(delimiter) {\n        var singleline = delimiter.length == 1;\n        var OUTCLASS = 'string';\n\n        return function(stream, state) {\n            while (!stream.eol()) {\n                stream.eatWhile(/[^'\"]/);\n                if (stream.match(delimiter)) {\n                    state.tokenize = tokenBase;\n                    return OUTCLASS;\n                } else {\n                    stream.eat(/['\"]/);\n                }\n            }\n            if (singleline) {\n                if (parserConf.singleLineStringErrors) {\n                    return ERRORCLASS;\n                } else {\n                    state.tokenize = tokenBase;\n                }\n            }\n            return OUTCLASS;\n        };\n    }\n\n\n    function tokenLexer(stream, state) {\n        var style = state.tokenize(stream, state);\n        var current = stream.current();\n\n        // Handle '.' connected identifiers\n        if (current === '.') {\n            style = state.tokenize(stream, state);\n            current = stream.current();\n            if (style === 'variable') {\n                return 'variable';\n            } else {\n                return ERRORCLASS;\n            }\n        }\n\n\n        var delimiter_index = '[({'.indexOf(current);\n        if (delimiter_index !== -1) {\n            indent(stream, state );\n        }\n        if (indentInfo === 'dedent') {\n            if (dedent(stream, state)) {\n                return ERRORCLASS;\n            }\n        }\n        delimiter_index = '])}'.indexOf(current);\n        if (delimiter_index !== -1) {\n            if (dedent(stream, state)) {\n                return ERRORCLASS;\n            }\n        }\n\n        return style;\n    }\n\n    var external = {\n        electricChars:\"dDpPtTfFeE \",\n        startState: function() {\n            return {\n              tokenize: tokenBase,\n              lastToken: null,\n              currentIndent: 0,\n              nextLineIndent: 0,\n              doInCurrentLine: false\n\n\n          };\n        },\n\n        token: function(stream, state) {\n            if (stream.sol()) {\n              state.currentIndent += state.nextLineIndent;\n              state.nextLineIndent = 0;\n              state.doInCurrentLine = 0;\n            }\n            var style = tokenLexer(stream, state);\n\n            state.lastToken = {style:style, content: stream.current()};\n\n\n\n            return style;\n        },\n\n        indent: function(state, textAfter) {\n            var trueText = textAfter.replace(/^\\s+|\\s+$/g, '') ;\n            if (trueText.match(closing) || trueText.match(doubleClosing) || trueText.match(middle)) return conf.indentUnit*(state.currentIndent-1);\n            if(state.currentIndent < 0) return 0;\n            return state.currentIndent * conf.indentUnit;\n        }\n\n    };\n    return external;\n});\n\nCodeMirror.defineMIME(\"text/x-vb\", \"vb\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/vbscript/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: VBScript mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"vbscript.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">VBScript</a>\n  </ul>\n</div>\n\n<article>\n<h2>VBScript mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n' Pete Guhl\n' 03-04-2012\n'\n' Basic VBScript support for codemirror2\n\nConst ForReading = 1, ForWriting = 2, ForAppending = 8\n\nCall Sub020_PostBroadcastToUrbanAirship(strUserName, strPassword, intTransmitID, strResponse)\n\nIf Not IsNull(strResponse) AND Len(strResponse) = 0 Then\n\tboolTransmitOkYN = False\nElse\n\t' WScript.Echo \"Oh Happy Day! Oh Happy DAY!\"\n\tboolTransmitOkYN = True\nEnd If\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        indentUnit: 4\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/vbscript</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/vbscript/vbscript.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n/*\nFor extra ASP classic objects, initialize CodeMirror instance with this option:\n    isASP: true\n\nE.G.:\n    var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        isASP: true\n      });\n*/\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"vbscript\", function(conf, parserConf) {\n    var ERRORCLASS = 'error';\n\n    function wordRegexp(words) {\n        return new RegExp(\"^((\" + words.join(\")|(\") + \"))\\\\b\", \"i\");\n    }\n\n    var singleOperators = new RegExp(\"^[\\\\+\\\\-\\\\*/&\\\\\\\\\\\\^<>=]\");\n    var doubleOperators = new RegExp(\"^((<>)|(<=)|(>=))\");\n    var singleDelimiters = new RegExp('^[\\\\.,]');\n    var brakets = new RegExp('^[\\\\(\\\\)]');\n    var identifiers = new RegExp(\"^[A-Za-z][_A-Za-z0-9]*\");\n\n    var openingKeywords = ['class','sub','select','while','if','function', 'property', 'with', 'for'];\n    var middleKeywords = ['else','elseif','case'];\n    var endKeywords = ['next','loop','wend'];\n\n    var wordOperators = wordRegexp(['and', 'or', 'not', 'xor', 'is', 'mod', 'eqv', 'imp']);\n    var commonkeywords = ['dim', 'redim', 'then',  'until', 'randomize',\n                          'byval','byref','new','property', 'exit', 'in',\n                          'const','private', 'public',\n                          'get','set','let', 'stop', 'on error resume next', 'on error goto 0', 'option explicit', 'call', 'me'];\n\n    //This list was from: http://msdn.microsoft.com/en-us/library/f8tbc79x(v=vs.84).aspx\n    var atomWords = ['true', 'false', 'nothing', 'empty', 'null'];\n    //This list was from: http://msdn.microsoft.com/en-us/library/3ca8tfek(v=vs.84).aspx\n    var builtinFuncsWords = ['abs', 'array', 'asc', 'atn', 'cbool', 'cbyte', 'ccur', 'cdate', 'cdbl', 'chr', 'cint', 'clng', 'cos', 'csng', 'cstr', 'date', 'dateadd', 'datediff', 'datepart',\n                        'dateserial', 'datevalue', 'day', 'escape', 'eval', 'execute', 'exp', 'filter', 'formatcurrency', 'formatdatetime', 'formatnumber', 'formatpercent', 'getlocale', 'getobject',\n                        'getref', 'hex', 'hour', 'inputbox', 'instr', 'instrrev', 'int', 'fix', 'isarray', 'isdate', 'isempty', 'isnull', 'isnumeric', 'isobject', 'join', 'lbound', 'lcase', 'left',\n                        'len', 'loadpicture', 'log', 'ltrim', 'rtrim', 'trim', 'maths', 'mid', 'minute', 'month', 'monthname', 'msgbox', 'now', 'oct', 'replace', 'rgb', 'right', 'rnd', 'round',\n                        'scriptengine', 'scriptenginebuildversion', 'scriptenginemajorversion', 'scriptengineminorversion', 'second', 'setlocale', 'sgn', 'sin', 'space', 'split', 'sqr', 'strcomp',\n                        'string', 'strreverse', 'tan', 'time', 'timer', 'timeserial', 'timevalue', 'typename', 'ubound', 'ucase', 'unescape', 'vartype', 'weekday', 'weekdayname', 'year'];\n\n    //This list was from: http://msdn.microsoft.com/en-us/library/ydz4cfk3(v=vs.84).aspx\n    var builtinConsts = ['vbBlack', 'vbRed', 'vbGreen', 'vbYellow', 'vbBlue', 'vbMagenta', 'vbCyan', 'vbWhite', 'vbBinaryCompare', 'vbTextCompare',\n                         'vbSunday', 'vbMonday', 'vbTuesday', 'vbWednesday', 'vbThursday', 'vbFriday', 'vbSaturday', 'vbUseSystemDayOfWeek', 'vbFirstJan1', 'vbFirstFourDays', 'vbFirstFullWeek',\n                         'vbGeneralDate', 'vbLongDate', 'vbShortDate', 'vbLongTime', 'vbShortTime', 'vbObjectError',\n                         'vbOKOnly', 'vbOKCancel', 'vbAbortRetryIgnore', 'vbYesNoCancel', 'vbYesNo', 'vbRetryCancel', 'vbCritical', 'vbQuestion', 'vbExclamation', 'vbInformation', 'vbDefaultButton1', 'vbDefaultButton2',\n                         'vbDefaultButton3', 'vbDefaultButton4', 'vbApplicationModal', 'vbSystemModal', 'vbOK', 'vbCancel', 'vbAbort', 'vbRetry', 'vbIgnore', 'vbYes', 'vbNo',\n                         'vbCr', 'VbCrLf', 'vbFormFeed', 'vbLf', 'vbNewLine', 'vbNullChar', 'vbNullString', 'vbTab', 'vbVerticalTab', 'vbUseDefault', 'vbTrue', 'vbFalse',\n                         'vbEmpty', 'vbNull', 'vbInteger', 'vbLong', 'vbSingle', 'vbDouble', 'vbCurrency', 'vbDate', 'vbString', 'vbObject', 'vbError', 'vbBoolean', 'vbVariant', 'vbDataObject', 'vbDecimal', 'vbByte', 'vbArray'];\n    //This list was from: http://msdn.microsoft.com/en-us/library/hkc375ea(v=vs.84).aspx\n    var builtinObjsWords = ['WScript', 'err', 'debug', 'RegExp'];\n    var knownProperties = ['description', 'firstindex', 'global', 'helpcontext', 'helpfile', 'ignorecase', 'length', 'number', 'pattern', 'source', 'value', 'count'];\n    var knownMethods = ['clear', 'execute', 'raise', 'replace', 'test', 'write', 'writeline', 'close', 'open', 'state', 'eof', 'update', 'addnew', 'end', 'createobject', 'quit'];\n\n    var aspBuiltinObjsWords = ['server', 'response', 'request', 'session', 'application'];\n    var aspKnownProperties = ['buffer', 'cachecontrol', 'charset', 'contenttype', 'expires', 'expiresabsolute', 'isclientconnected', 'pics', 'status', //response\n                              'clientcertificate', 'cookies', 'form', 'querystring', 'servervariables', 'totalbytes', //request\n                              'contents', 'staticobjects', //application\n                              'codepage', 'lcid', 'sessionid', 'timeout', //session\n                              'scripttimeout']; //server\n    var aspKnownMethods = ['addheader', 'appendtolog', 'binarywrite', 'end', 'flush', 'redirect', //response\n                           'binaryread', //request\n                           'remove', 'removeall', 'lock', 'unlock', //application\n                           'abandon', //session\n                           'getlasterror', 'htmlencode', 'mappath', 'transfer', 'urlencode']; //server\n\n    var knownWords = knownMethods.concat(knownProperties);\n\n    builtinObjsWords = builtinObjsWords.concat(builtinConsts);\n\n    if (conf.isASP){\n        builtinObjsWords = builtinObjsWords.concat(aspBuiltinObjsWords);\n        knownWords = knownWords.concat(aspKnownMethods, aspKnownProperties);\n    };\n\n    var keywords = wordRegexp(commonkeywords);\n    var atoms = wordRegexp(atomWords);\n    var builtinFuncs = wordRegexp(builtinFuncsWords);\n    var builtinObjs = wordRegexp(builtinObjsWords);\n    var known = wordRegexp(knownWords);\n    var stringPrefixes = '\"';\n\n    var opening = wordRegexp(openingKeywords);\n    var middle = wordRegexp(middleKeywords);\n    var closing = wordRegexp(endKeywords);\n    var doubleClosing = wordRegexp(['end']);\n    var doOpening = wordRegexp(['do']);\n    var noIndentWords = wordRegexp(['on error resume next', 'exit']);\n    var comment = wordRegexp(['rem']);\n\n\n    function indent(_stream, state) {\n      state.currentIndent++;\n    }\n\n    function dedent(_stream, state) {\n      state.currentIndent--;\n    }\n    // tokenizers\n    function tokenBase(stream, state) {\n        if (stream.eatSpace()) {\n            return 'space';\n            //return null;\n        }\n\n        var ch = stream.peek();\n\n        // Handle Comments\n        if (ch === \"'\") {\n            stream.skipToEnd();\n            return 'comment';\n        }\n        if (stream.match(comment)){\n            stream.skipToEnd();\n            return 'comment';\n        }\n\n\n        // Handle Number Literals\n        if (stream.match(/^((&H)|(&O))?[0-9\\.]/i, false) && !stream.match(/^((&H)|(&O))?[0-9\\.]+[a-z_]/i, false)) {\n            var floatLiteral = false;\n            // Floats\n            if (stream.match(/^\\d*\\.\\d+/i)) { floatLiteral = true; }\n            else if (stream.match(/^\\d+\\.\\d*/)) { floatLiteral = true; }\n            else if (stream.match(/^\\.\\d+/)) { floatLiteral = true; }\n\n            if (floatLiteral) {\n                // Float literals may be \"imaginary\"\n                stream.eat(/J/i);\n                return 'number';\n            }\n            // Integers\n            var intLiteral = false;\n            // Hex\n            if (stream.match(/^&H[0-9a-f]+/i)) { intLiteral = true; }\n            // Octal\n            else if (stream.match(/^&O[0-7]+/i)) { intLiteral = true; }\n            // Decimal\n            else if (stream.match(/^[1-9]\\d*F?/)) {\n                // Decimal literals may be \"imaginary\"\n                stream.eat(/J/i);\n                // TODO - Can you have imaginary longs?\n                intLiteral = true;\n            }\n            // Zero by itself with no other piece of number.\n            else if (stream.match(/^0(?![\\dx])/i)) { intLiteral = true; }\n            if (intLiteral) {\n                // Integer literals may be \"long\"\n                stream.eat(/L/i);\n                return 'number';\n            }\n        }\n\n        // Handle Strings\n        if (stream.match(stringPrefixes)) {\n            state.tokenize = tokenStringFactory(stream.current());\n            return state.tokenize(stream, state);\n        }\n\n        // Handle operators and Delimiters\n        if (stream.match(doubleOperators)\n            || stream.match(singleOperators)\n            || stream.match(wordOperators)) {\n            return 'operator';\n        }\n        if (stream.match(singleDelimiters)) {\n            return null;\n        }\n\n        if (stream.match(brakets)) {\n            return \"bracket\";\n        }\n\n        if (stream.match(noIndentWords)) {\n            state.doInCurrentLine = true;\n\n            return 'keyword';\n        }\n\n        if (stream.match(doOpening)) {\n            indent(stream,state);\n            state.doInCurrentLine = true;\n\n            return 'keyword';\n        }\n        if (stream.match(opening)) {\n            if (! state.doInCurrentLine)\n              indent(stream,state);\n            else\n              state.doInCurrentLine = false;\n\n            return 'keyword';\n        }\n        if (stream.match(middle)) {\n            return 'keyword';\n        }\n\n\n        if (stream.match(doubleClosing)) {\n            dedent(stream,state);\n            dedent(stream,state);\n\n            return 'keyword';\n        }\n        if (stream.match(closing)) {\n            if (! state.doInCurrentLine)\n              dedent(stream,state);\n            else\n              state.doInCurrentLine = false;\n\n            return 'keyword';\n        }\n\n        if (stream.match(keywords)) {\n            return 'keyword';\n        }\n\n        if (stream.match(atoms)) {\n            return 'atom';\n        }\n\n        if (stream.match(known)) {\n            return 'variable-2';\n        }\n\n        if (stream.match(builtinFuncs)) {\n            return 'builtin';\n        }\n\n        if (stream.match(builtinObjs)){\n            return 'variable-2';\n        }\n\n        if (stream.match(identifiers)) {\n            return 'variable';\n        }\n\n        // Handle non-detected items\n        stream.next();\n        return ERRORCLASS;\n    }\n\n    function tokenStringFactory(delimiter) {\n        var singleline = delimiter.length == 1;\n        var OUTCLASS = 'string';\n\n        return function(stream, state) {\n            while (!stream.eol()) {\n                stream.eatWhile(/[^'\"]/);\n                if (stream.match(delimiter)) {\n                    state.tokenize = tokenBase;\n                    return OUTCLASS;\n                } else {\n                    stream.eat(/['\"]/);\n                }\n            }\n            if (singleline) {\n                if (parserConf.singleLineStringErrors) {\n                    return ERRORCLASS;\n                } else {\n                    state.tokenize = tokenBase;\n                }\n            }\n            return OUTCLASS;\n        };\n    }\n\n\n    function tokenLexer(stream, state) {\n        var style = state.tokenize(stream, state);\n        var current = stream.current();\n\n        // Handle '.' connected identifiers\n        if (current === '.') {\n            style = state.tokenize(stream, state);\n\n            current = stream.current();\n            if (style && (style.substr(0, 8) === 'variable' || style==='builtin' || style==='keyword')){//|| knownWords.indexOf(current.substring(1)) > -1) {\n                if (style === 'builtin' || style === 'keyword') style='variable';\n                if (knownWords.indexOf(current.substr(1)) > -1) style='variable-2';\n\n                return style;\n            } else {\n                return ERRORCLASS;\n            }\n        }\n\n        return style;\n    }\n\n    var external = {\n        electricChars:\"dDpPtTfFeE \",\n        startState: function() {\n            return {\n              tokenize: tokenBase,\n              lastToken: null,\n              currentIndent: 0,\n              nextLineIndent: 0,\n              doInCurrentLine: false,\n              ignoreKeyword: false\n\n\n          };\n        },\n\n        token: function(stream, state) {\n            if (stream.sol()) {\n              state.currentIndent += state.nextLineIndent;\n              state.nextLineIndent = 0;\n              state.doInCurrentLine = 0;\n            }\n            var style = tokenLexer(stream, state);\n\n            state.lastToken = {style:style, content: stream.current()};\n\n            if (style==='space') style=null;\n\n            return style;\n        },\n\n        indent: function(state, textAfter) {\n            var trueText = textAfter.replace(/^\\s+|\\s+$/g, '') ;\n            if (trueText.match(closing) || trueText.match(doubleClosing) || trueText.match(middle)) return conf.indentUnit*(state.currentIndent-1);\n            if(state.currentIndent < 0) return 0;\n            return state.currentIndent * conf.indentUnit;\n        }\n\n    };\n    return external;\n});\n\nCodeMirror.defineMIME(\"text/vbscript\", \"vbscript\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/velocity/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Velocity mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/night.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"velocity.js\"></script>\n<style>.CodeMirror {border: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Velocity</a>\n  </ul>\n</div>\n\n<article>\n<h2>Velocity mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n## Velocity Code Demo\n#*\n   based on PL/SQL mode by Peter Raganitsch, adapted to Velocity by Steve O'Hara ( http://www.pivotal-solutions.co.uk )\n   August 2011\n*#\n\n#*\n   This is a multiline comment.\n   This is the second line\n*#\n\n#[[ hello steve\n   This has invalid syntax that would normally need \"poor man's escaping\" like:\n\n   #define()\n\n   ${blah\n]]#\n\n#include( \"disclaimer.txt\" \"opinion.txt\" )\n#include( $foo $bar )\n\n#parse( \"lecorbusier.vm\" )\n#parse( $foo )\n\n#evaluate( 'string with VTL #if(true)will be displayed#end' )\n\n#define( $hello ) Hello $who #end #set( $who = \"World!\") $hello ## displays Hello World!\n\n#foreach( $customer in $customerList )\n\n    $foreach.count $customer.Name\n\n    #if( $foo == ${bar})\n        it's true!\n        #break\n    #{else}\n        it's not!\n        #stop\n    #end\n\n    #if ($foreach.parent.hasNext)\n        $velocityCount\n    #end\n#end\n\n$someObject.getValues(\"this is a string split\n        across lines\")\n\n$someObject(\"This plus $something in the middle\").method(7567).property\n\n#macro( tablerows $color $somelist )\n    #foreach( $something in $somelist )\n        <tr><td bgcolor=$color>$something</td></tr>\n        <tr><td bgcolor=$color>$bodyContent</td></tr>\n    #end\n#end\n\n#tablerows(\"red\" [\"dadsdf\",\"dsa\"])\n#@tablerows(\"red\" [\"dadsdf\",\"dsa\"]) some body content #end\n\n   Variable reference: #set( $monkey = $bill )\n   String literal: #set( $monkey.Friend = 'monica' )\n   Property reference: #set( $monkey.Blame = $whitehouse.Leak )\n   Method reference: #set( $monkey.Plan = $spindoctor.weave($web) )\n   Number literal: #set( $monkey.Number = 123 )\n   Range operator: #set( $monkey.Numbers = [1..3] )\n   Object list: #set( $monkey.Say = [\"Not\", $my, \"fault\"] )\n   Object map: #set( $monkey.Map = {\"banana\" : \"good\", \"roast beef\" : \"bad\"})\n\nThe RHS can also be a simple arithmetic expression, such as:\nAddition: #set( $value = $foo + 1 )\n   Subtraction: #set( $value = $bar - 1 )\n   Multiplication: #set( $value = $foo * $bar )\n   Division: #set( $value = $foo / $bar )\n   Remainder: #set( $value = $foo % $bar )\n\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        theme: \"night\",\n        lineNumbers: true,\n        indentUnit: 4,\n        mode: \"text/velocity\"\n      });\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/velocity</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/velocity/velocity.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"velocity\", function() {\n    function parseWords(str) {\n        var obj = {}, words = str.split(\" \");\n        for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n        return obj;\n    }\n\n    var keywords = parseWords(\"#end #else #break #stop #[[ #]] \" +\n                              \"#{end} #{else} #{break} #{stop}\");\n    var functions = parseWords(\"#if #elseif #foreach #set #include #parse #macro #define #evaluate \" +\n                               \"#{if} #{elseif} #{foreach} #{set} #{include} #{parse} #{macro} #{define} #{evaluate}\");\n    var specials = parseWords(\"$foreach.count $foreach.hasNext $foreach.first $foreach.last $foreach.topmost $foreach.parent.count $foreach.parent.hasNext $foreach.parent.first $foreach.parent.last $foreach.parent $velocityCount $!bodyContent $bodyContent\");\n    var isOperatorChar = /[+\\-*&%=<>!?:\\/|]/;\n\n    function chain(stream, state, f) {\n        state.tokenize = f;\n        return f(stream, state);\n    }\n    function tokenBase(stream, state) {\n        var beforeParams = state.beforeParams;\n        state.beforeParams = false;\n        var ch = stream.next();\n        // start of unparsed string?\n        if ((ch == \"'\") && state.inParams) {\n            state.lastTokenWasBuiltin = false;\n            return chain(stream, state, tokenString(ch));\n        }\n        // start of parsed string?\n        else if ((ch == '\"')) {\n            state.lastTokenWasBuiltin = false;\n            if (state.inString) {\n                state.inString = false;\n                return \"string\";\n            }\n            else if (state.inParams)\n                return chain(stream, state, tokenString(ch));\n        }\n        // is it one of the special signs []{}().,;? Seperator?\n        else if (/[\\[\\]{}\\(\\),;\\.]/.test(ch)) {\n            if (ch == \"(\" && beforeParams)\n                state.inParams = true;\n            else if (ch == \")\") {\n                state.inParams = false;\n                state.lastTokenWasBuiltin = true;\n            }\n            return null;\n        }\n        // start of a number value?\n        else if (/\\d/.test(ch)) {\n            state.lastTokenWasBuiltin = false;\n            stream.eatWhile(/[\\w\\.]/);\n            return \"number\";\n        }\n        // multi line comment?\n        else if (ch == \"#\" && stream.eat(\"*\")) {\n            state.lastTokenWasBuiltin = false;\n            return chain(stream, state, tokenComment);\n        }\n        // unparsed content?\n        else if (ch == \"#\" && stream.match(/ *\\[ *\\[/)) {\n            state.lastTokenWasBuiltin = false;\n            return chain(stream, state, tokenUnparsed);\n        }\n        // single line comment?\n        else if (ch == \"#\" && stream.eat(\"#\")) {\n            state.lastTokenWasBuiltin = false;\n            stream.skipToEnd();\n            return \"comment\";\n        }\n        // variable?\n        else if (ch == \"$\") {\n            stream.eatWhile(/[\\w\\d\\$_\\.{}]/);\n            // is it one of the specials?\n            if (specials && specials.propertyIsEnumerable(stream.current())) {\n                return \"keyword\";\n            }\n            else {\n                state.lastTokenWasBuiltin = true;\n                state.beforeParams = true;\n                return \"builtin\";\n            }\n        }\n        // is it a operator?\n        else if (isOperatorChar.test(ch)) {\n            state.lastTokenWasBuiltin = false;\n            stream.eatWhile(isOperatorChar);\n            return \"operator\";\n        }\n        else {\n            // get the whole word\n            stream.eatWhile(/[\\w\\$_{}@]/);\n            var word = stream.current();\n            // is it one of the listed keywords?\n            if (keywords && keywords.propertyIsEnumerable(word))\n                return \"keyword\";\n            // is it one of the listed functions?\n            if (functions && functions.propertyIsEnumerable(word) ||\n                    (stream.current().match(/^#@?[a-z0-9_]+ *$/i) && stream.peek()==\"(\") &&\n                     !(functions && functions.propertyIsEnumerable(word.toLowerCase()))) {\n                state.beforeParams = true;\n                state.lastTokenWasBuiltin = false;\n                return \"keyword\";\n            }\n            if (state.inString) {\n                state.lastTokenWasBuiltin = false;\n                return \"string\";\n            }\n            if (stream.pos > word.length && stream.string.charAt(stream.pos-word.length-1)==\".\" && state.lastTokenWasBuiltin)\n                return \"builtin\";\n            // default: just a \"word\"\n            state.lastTokenWasBuiltin = false;\n            return null;\n        }\n    }\n\n    function tokenString(quote) {\n        return function(stream, state) {\n            var escaped = false, next, end = false;\n            while ((next = stream.next()) != null) {\n                if ((next == quote) && !escaped) {\n                    end = true;\n                    break;\n                }\n                if (quote=='\"' && stream.peek() == '$' && !escaped) {\n                    state.inString = true;\n                    end = true;\n                    break;\n                }\n                escaped = !escaped && next == \"\\\\\";\n            }\n            if (end) state.tokenize = tokenBase;\n            return \"string\";\n        };\n    }\n\n    function tokenComment(stream, state) {\n        var maybeEnd = false, ch;\n        while (ch = stream.next()) {\n            if (ch == \"#\" && maybeEnd) {\n                state.tokenize = tokenBase;\n                break;\n            }\n            maybeEnd = (ch == \"*\");\n        }\n        return \"comment\";\n    }\n\n    function tokenUnparsed(stream, state) {\n        var maybeEnd = 0, ch;\n        while (ch = stream.next()) {\n            if (ch == \"#\" && maybeEnd == 2) {\n                state.tokenize = tokenBase;\n                break;\n            }\n            if (ch == \"]\")\n                maybeEnd++;\n            else if (ch != \" \")\n                maybeEnd = 0;\n        }\n        return \"meta\";\n    }\n    // Interface\n\n    return {\n        startState: function() {\n            return {\n                tokenize: tokenBase,\n                beforeParams: false,\n                inParams: false,\n                inString: false,\n                lastTokenWasBuiltin: false\n            };\n        },\n\n        token: function(stream, state) {\n            if (stream.eatSpace()) return null;\n            return state.tokenize(stream, state);\n        },\n        blockCommentStart: \"#*\",\n        blockCommentEnd: \"*#\",\n        lineComment: \"##\",\n        fold: \"velocity\"\n    };\n});\n\nCodeMirror.defineMIME(\"text/velocity\", \"velocity\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/verilog/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Verilog/SystemVerilog mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"../../addon/edit/matchbrackets.js\"></script>\n<script src=\"verilog.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Verilog/SystemVerilog</a>\n  </ul>\n</div>\n\n<article>\n<h2>SystemVerilog mode</h2>\n\n<div><textarea id=\"code\" name=\"code\">\n// Literals\n1'b0\n1'bx\n1'bz\n16'hDC78\n'hdeadbeef\n'b0011xxzz\n1234\n32'd5678\n3.4e6\n-128.7\n\n// Macro definition\n`define BUS_WIDTH = 8;\n\n// Module definition\nmodule block(\n  input                   clk,\n  input                   rst_n,\n  input  [`BUS_WIDTH-1:0] data_in,\n  output [`BUS_WIDTH-1:0] data_out\n);\n  \n  always @(posedge clk or negedge rst_n) begin\n\n    if (~rst_n) begin\n      data_out <= 8'b0;\n    end else begin\n      data_out <= data_in;\n    end\n    \n    if (~rst_n)\n      data_out <= 8'b0;\n    else\n      data_out <= data_in;\n    \n    if (~rst_n)\n      begin\n        data_out <= 8'b0;\n      end\n    else\n      begin\n        data_out <= data_in;\n      end\n\n  end\n  \nendmodule\n\n// Class definition\nclass test;\n\n  /**\n   * Sum two integers\n   */\n  function int sum(int a, int b);\n    int result = a + b;\n    string msg = $sformatf(\"%d + %d = %d\", a, b, result);\n    $display(msg);\n    return result;\n  endfunction\n  \n  task delay(int num_cycles);\n    repeat(num_cycles) #1;\n  endtask\n  \nendclass\n\n</textarea></div>\n\n<script>\n  var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n    lineNumbers: true,\n    matchBrackets: true,\n    mode: {\n      name: \"verilog\",\n      noIndentKeywords: [\"package\"]\n    }\n  });\n</script>\n\n<p>\nSyntax highlighting and indentation for the Verilog and SystemVerilog languages (IEEE 1800).\n<h2>Configuration options:</h2>\n  <ul>\n    <li><strong>noIndentKeywords</strong> - List of keywords which should not cause identation to increase. E.g. [\"package\", \"module\"]. Default: None</li>\n  </ul>\n</p>\n\n<p><strong>MIME types defined:</strong> <code>text/x-verilog</code> and <code>text/x-systemverilog</code>.</p>\n</article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/verilog/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({indentUnit: 4}, \"verilog\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  MT(\"binary_literals\",\n     \"[number 1'b0]\",\n     \"[number 1'b1]\",\n     \"[number 1'bx]\",\n     \"[number 1'bz]\",\n     \"[number 1'bX]\",\n     \"[number 1'bZ]\",\n     \"[number 1'B0]\",\n     \"[number 1'B1]\",\n     \"[number 1'Bx]\",\n     \"[number 1'Bz]\",\n     \"[number 1'BX]\",\n     \"[number 1'BZ]\",\n     \"[number 1'b0]\",\n     \"[number 1'b1]\",\n     \"[number 2'b01]\",\n     \"[number 2'bxz]\",\n     \"[number 2'b11]\",\n     \"[number 2'b10]\",\n     \"[number 2'b1Z]\",\n     \"[number 12'b0101_0101_0101]\",\n     \"[number 1'b 0]\",\n     \"[number 'b0101]\"\n  );\n\n  MT(\"octal_literals\",\n     \"[number 3'o7]\",\n     \"[number 3'O7]\",\n     \"[number 3'so7]\",\n     \"[number 3'SO7]\"\n  );\n\n  MT(\"decimal_literals\",\n     \"[number 0]\",\n     \"[number 1]\",\n     \"[number 7]\",\n     \"[number 123_456]\",\n     \"[number 'd33]\",\n     \"[number 8'd255]\",\n     \"[number 8'D255]\",\n     \"[number 8'sd255]\",\n     \"[number 8'SD255]\",\n     \"[number 32'd123]\",\n     \"[number 32 'd123]\",\n     \"[number 32 'd 123]\"\n  );\n\n  MT(\"hex_literals\",\n     \"[number 4'h0]\",\n     \"[number 4'ha]\",\n     \"[number 4'hF]\",\n     \"[number 4'hx]\",\n     \"[number 4'hz]\",\n     \"[number 4'hX]\",\n     \"[number 4'hZ]\",\n     \"[number 32'hdc78]\",\n     \"[number 32'hDC78]\",\n     \"[number 32 'hDC78]\",\n     \"[number 32'h DC78]\",\n     \"[number 32 'h DC78]\",\n     \"[number 32'h44x7]\",\n     \"[number 32'hFFF?]\"\n  );\n\n  MT(\"real_number_literals\",\n     \"[number 1.2]\",\n     \"[number 0.1]\",\n     \"[number 2394.26331]\",\n     \"[number 1.2E12]\",\n     \"[number 1.2e12]\",\n     \"[number 1.30e-2]\",\n     \"[number 0.1e-0]\",\n     \"[number 23E10]\",\n     \"[number 29E-2]\",\n     \"[number 236.123_763_e-12]\"\n  );\n\n  MT(\"operators\",\n     \"[meta ^]\"\n  );\n\n  MT(\"keywords\",\n     \"[keyword logic]\",\n     \"[keyword logic] [variable foo]\",\n     \"[keyword reg] [variable abc]\"\n  );\n\n  MT(\"variables\",\n     \"[variable _leading_underscore]\",\n     \"[variable _if]\",\n     \"[number 12] [variable foo]\",\n     \"[variable foo] [number 14]\"\n  );\n\n  MT(\"tick_defines\",\n     \"[def `FOO]\",\n     \"[def `foo]\",\n     \"[def `FOO_bar]\"\n  );\n\n  MT(\"system_calls\",\n     \"[meta $display]\",\n     \"[meta $vpi_printf]\"\n  );\n\n  MT(\"line_comment\", \"[comment // Hello world]\");\n\n  // Alignment tests\n  MT(\"align_port_map_style1\",\n     /**\n      * mod mod(.a(a),\n      *         .b(b)\n      *        );\n      */\n     \"[variable mod] [variable mod][bracket (].[variable a][bracket (][variable a][bracket )],\",\n     \"        .[variable b][bracket (][variable b][bracket )]\",\n     \"       [bracket )];\",\n     \"\"\n  );\n\n  MT(\"align_port_map_style2\",\n     /**\n      * mod mod(\n      *     .a(a),\n      *     .b(b)\n      * );\n      */\n     \"[variable mod] [variable mod][bracket (]\",\n     \"    .[variable a][bracket (][variable a][bracket )],\",\n     \"    .[variable b][bracket (][variable b][bracket )]\",\n     \"[bracket )];\",\n     \"\"\n  );\n\n  // Indentation tests\n  MT(\"indent_single_statement_if\",\n      \"[keyword if] [bracket (][variable foo][bracket )]\",\n      \"    [keyword break];\",\n      \"\"\n  );\n\n  MT(\"no_indent_after_single_line_if\",\n      \"[keyword if] [bracket (][variable foo][bracket )] [keyword break];\",\n      \"\"\n  );\n\n  MT(\"indent_after_if_begin_same_line\",\n      \"[keyword if] [bracket (][variable foo][bracket )] [keyword begin]\",\n      \"    [keyword break];\",\n      \"    [keyword break];\",\n      \"[keyword end]\",\n      \"\"\n  );\n\n  MT(\"indent_after_if_begin_next_line\",\n      \"[keyword if] [bracket (][variable foo][bracket )]\",\n      \"    [keyword begin]\",\n      \"        [keyword break];\",\n      \"        [keyword break];\",\n      \"    [keyword end]\",\n      \"\"\n  );\n\n  MT(\"indent_single_statement_if_else\",\n      \"[keyword if] [bracket (][variable foo][bracket )]\",\n      \"    [keyword break];\",\n      \"[keyword else]\",\n      \"    [keyword break];\",\n      \"\"\n  );\n\n  MT(\"indent_if_else_begin_same_line\",\n      \"[keyword if] [bracket (][variable foo][bracket )] [keyword begin]\",\n      \"    [keyword break];\",\n      \"    [keyword break];\",\n      \"[keyword end] [keyword else] [keyword begin]\",\n      \"    [keyword break];\",\n      \"    [keyword break];\",\n      \"[keyword end]\",\n      \"\"\n  );\n\n  MT(\"indent_if_else_begin_next_line\",\n      \"[keyword if] [bracket (][variable foo][bracket )]\",\n      \"    [keyword begin]\",\n      \"        [keyword break];\",\n      \"        [keyword break];\",\n      \"    [keyword end]\",\n      \"[keyword else]\",\n      \"    [keyword begin]\",\n      \"        [keyword break];\",\n      \"        [keyword break];\",\n      \"    [keyword end]\",\n      \"\"\n  );\n\n  MT(\"indent_if_nested_without_begin\",\n      \"[keyword if] [bracket (][variable foo][bracket )]\",\n      \"    [keyword if] [bracket (][variable foo][bracket )]\",\n      \"        [keyword if] [bracket (][variable foo][bracket )]\",\n      \"            [keyword break];\",\n      \"\"\n  );\n\n  MT(\"indent_case\",\n      \"[keyword case] [bracket (][variable state][bracket )]\",\n      \"    [variable FOO]:\",\n      \"        [keyword break];\",\n      \"    [variable BAR]:\",\n      \"        [keyword break];\",\n      \"[keyword endcase]\",\n      \"\"\n  );\n\n  MT(\"unindent_after_end_with_preceding_text\",\n      \"[keyword begin]\",\n      \"    [keyword break]; [keyword end]\",\n      \"\"\n  );\n\n  MT(\"export_function_one_line_does_not_indent\",\n     \"[keyword export] [string \\\"DPI-C\\\"] [keyword function] [variable helloFromSV];\",\n     \"\"\n  );\n\n  MT(\"export_task_one_line_does_not_indent\",\n     \"[keyword export] [string \\\"DPI-C\\\"] [keyword task] [variable helloFromSV];\",\n     \"\"\n  );\n\n  MT(\"export_function_two_lines_indents_properly\",\n    \"[keyword export]\",\n    \"    [string \\\"DPI-C\\\"] [keyword function] [variable helloFromSV];\",\n    \"\"\n  );\n\n  MT(\"export_task_two_lines_indents_properly\",\n    \"[keyword export]\",\n    \"    [string \\\"DPI-C\\\"] [keyword task] [variable helloFromSV];\",\n    \"\"\n  );\n\n  MT(\"import_function_one_line_does_not_indent\",\n    \"[keyword import] [string \\\"DPI-C\\\"] [keyword function] [variable helloFromC];\",\n    \"\"\n  );\n\n  MT(\"import_task_one_line_does_not_indent\",\n    \"[keyword import] [string \\\"DPI-C\\\"] [keyword task] [variable helloFromC];\",\n    \"\"\n  );\n\n  MT(\"import_package_single_line_does_not_indent\",\n    \"[keyword import] [variable p]::[variable x];\",\n    \"[keyword import] [variable p]::[variable y];\",\n    \"\"\n  );\n\n  MT(\"covergoup_with_function_indents_properly\",\n    \"[keyword covergroup] [variable cg] [keyword with] [keyword function] [variable sample][bracket (][keyword bit] [variable b][bracket )];\",\n    \"    [variable c] : [keyword coverpoint] [variable c];\",\n    \"[keyword endgroup]: [variable cg]\",\n    \"\"\n  );\n\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/verilog/verilog.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"verilog\", function(config, parserConfig) {\n\n  var indentUnit = config.indentUnit,\n      statementIndentUnit = parserConfig.statementIndentUnit || indentUnit,\n      dontAlignCalls = parserConfig.dontAlignCalls,\n      noIndentKeywords = parserConfig.noIndentKeywords || [],\n      multiLineStrings = parserConfig.multiLineStrings;\n\n  function words(str) {\n    var obj = {}, words = str.split(\" \");\n    for (var i = 0; i < words.length; ++i) obj[words[i]] = true;\n    return obj;\n  }\n\n  /**\n   * Keywords from IEEE 1800-2012\n   */\n  var keywords = words(\n    \"accept_on alias always always_comb always_ff always_latch and assert assign assume automatic before begin bind \" +\n    \"bins binsof bit break buf bufif0 bufif1 byte case casex casez cell chandle checker class clocking cmos config \" +\n    \"const constraint context continue cover covergroup coverpoint cross deassign default defparam design disable \" +\n    \"dist do edge else end endcase endchecker endclass endclocking endconfig endfunction endgenerate endgroup \" +\n    \"endinterface endmodule endpackage endprimitive endprogram endproperty endspecify endsequence endtable endtask \" +\n    \"enum event eventually expect export extends extern final first_match for force foreach forever fork forkjoin \" +\n    \"function generate genvar global highz0 highz1 if iff ifnone ignore_bins illegal_bins implements implies import \" +\n    \"incdir include initial inout input inside instance int integer interconnect interface intersect join join_any \" +\n    \"join_none large let liblist library local localparam logic longint macromodule matches medium modport module \" +\n    \"nand negedge nettype new nexttime nmos nor noshowcancelled not notif0 notif1 null or output package packed \" +\n    \"parameter pmos posedge primitive priority program property protected pull0 pull1 pulldown pullup \" +\n    \"pulsestyle_ondetect pulsestyle_onevent pure rand randc randcase randsequence rcmos real realtime ref reg \" +\n    \"reject_on release repeat restrict return rnmos rpmos rtran rtranif0 rtranif1 s_always s_eventually s_nexttime \" +\n    \"s_until s_until_with scalared sequence shortint shortreal showcancelled signed small soft solve specify \" +\n    \"specparam static string strong strong0 strong1 struct super supply0 supply1 sync_accept_on sync_reject_on \" +\n    \"table tagged task this throughout time timeprecision timeunit tran tranif0 tranif1 tri tri0 tri1 triand trior \" +\n    \"trireg type typedef union unique unique0 unsigned until until_with untyped use uwire var vectored virtual void \" +\n    \"wait wait_order wand weak weak0 weak1 while wildcard wire with within wor xnor xor\");\n\n  /** Operators from IEEE 1800-2012\n     unary_operator ::=\n       + | - | ! | ~ | & | ~& | | | ~| | ^ | ~^ | ^~\n     binary_operator ::=\n       + | - | * | / | % | == | != | === | !== | ==? | !=? | && | || | **\n       | < | <= | > | >= | & | | | ^ | ^~ | ~^ | >> | << | >>> | <<<\n       | -> | <->\n     inc_or_dec_operator ::= ++ | --\n     unary_module_path_operator ::=\n       ! | ~ | & | ~& | | | ~| | ^ | ~^ | ^~\n     binary_module_path_operator ::=\n       == | != | && | || | & | | | ^ | ^~ | ~^\n  */\n  var isOperatorChar = /[\\+\\-\\*\\/!~&|^%=?:]/;\n  var isBracketChar = /[\\[\\]{}()]/;\n\n  var unsignedNumber = /\\d[0-9_]*/;\n  var decimalLiteral = /\\d*\\s*'s?d\\s*\\d[0-9_]*/i;\n  var binaryLiteral = /\\d*\\s*'s?b\\s*[xz01][xz01_]*/i;\n  var octLiteral = /\\d*\\s*'s?o\\s*[xz0-7][xz0-7_]*/i;\n  var hexLiteral = /\\d*\\s*'s?h\\s*[0-9a-fxz?][0-9a-fxz?_]*/i;\n  var realLiteral = /(\\d[\\d_]*(\\.\\d[\\d_]*)?E-?[\\d_]+)|(\\d[\\d_]*\\.\\d[\\d_]*)/i;\n\n  var closingBracketOrWord = /^((\\w+)|[)}\\]])/;\n  var closingBracket = /[)}\\]]/;\n\n  var curPunc;\n  var curKeyword;\n\n  // Block openings which are closed by a matching keyword in the form of (\"end\" + keyword)\n  // E.g. \"task\" => \"endtask\"\n  var blockKeywords = words(\n    \"case checker class clocking config function generate interface module package\" +\n    \"primitive program property specify sequence table task\"\n  );\n\n  // Opening/closing pairs\n  var openClose = {};\n  for (var keyword in blockKeywords) {\n    openClose[keyword] = \"end\" + keyword;\n  }\n  openClose[\"begin\"] = \"end\";\n  openClose[\"casex\"] = \"endcase\";\n  openClose[\"casez\"] = \"endcase\";\n  openClose[\"do\"   ] = \"while\";\n  openClose[\"fork\" ] = \"join;join_any;join_none\";\n  openClose[\"covergroup\"] = \"endgroup\";\n\n  for (var i in noIndentKeywords) {\n    var keyword = noIndentKeywords[i];\n    if (openClose[keyword]) {\n      openClose[keyword] = undefined;\n    }\n  }\n\n  // Keywords which open statements that are ended with a semi-colon\n  var statementKeywords = words(\"always always_comb always_ff always_latch assert assign assume else export for foreach forever if import initial repeat while\");\n\n  function tokenBase(stream, state) {\n    var ch = stream.peek();\n    if (/[,;:\\.]/.test(ch)) {\n      curPunc = stream.next();\n      return null;\n    }\n    if (isBracketChar.test(ch)) {\n      curPunc = stream.next();\n      return \"bracket\";\n    }\n    // Macros (tick-defines)\n    if (ch == '`') {\n      stream.next();\n      if (stream.eatWhile(/[\\w\\$_]/)) {\n        return \"def\";\n      } else {\n        return null;\n      }\n    }\n    // System calls\n    if (ch == '$') {\n      stream.next();\n      if (stream.eatWhile(/[\\w\\$_]/)) {\n        return \"meta\";\n      } else {\n        return null;\n      }\n    }\n    // Time literals\n    if (ch == '#') {\n      stream.next();\n      stream.eatWhile(/[\\d_.]/);\n      return \"def\";\n    }\n    // Strings\n    if (ch == '\"') {\n      stream.next();\n      state.tokenize = tokenString(ch);\n      return state.tokenize(stream, state);\n    }\n    // Comments\n    if (ch == \"/\") {\n      stream.next();\n      if (stream.eat(\"*\")) {\n        state.tokenize = tokenComment;\n        return tokenComment(stream, state);\n      }\n      if (stream.eat(\"/\")) {\n        stream.skipToEnd();\n        return \"comment\";\n      }\n      stream.backUp(1);\n    }\n\n    // Numeric literals\n    if (stream.match(realLiteral) ||\n        stream.match(decimalLiteral) ||\n        stream.match(binaryLiteral) ||\n        stream.match(octLiteral) ||\n        stream.match(hexLiteral) ||\n        stream.match(unsignedNumber) ||\n        stream.match(realLiteral)) {\n      return \"number\";\n    }\n\n    // Operators\n    if (stream.eatWhile(isOperatorChar)) {\n      return \"meta\";\n    }\n\n    // Keywords / plain variables\n    if (stream.eatWhile(/[\\w\\$_]/)) {\n      var cur = stream.current();\n      if (keywords[cur]) {\n        if (openClose[cur]) {\n          curPunc = \"newblock\";\n        }\n        if (statementKeywords[cur]) {\n          curPunc = \"newstatement\";\n        }\n        curKeyword = cur;\n        return \"keyword\";\n      }\n      return \"variable\";\n    }\n\n    stream.next();\n    return null;\n  }\n\n  function tokenString(quote) {\n    return function(stream, state) {\n      var escaped = false, next, end = false;\n      while ((next = stream.next()) != null) {\n        if (next == quote && !escaped) {end = true; break;}\n        escaped = !escaped && next == \"\\\\\";\n      }\n      if (end || !(escaped || multiLineStrings))\n        state.tokenize = tokenBase;\n      return \"string\";\n    };\n  }\n\n  function tokenComment(stream, state) {\n    var maybeEnd = false, ch;\n    while (ch = stream.next()) {\n      if (ch == \"/\" && maybeEnd) {\n        state.tokenize = tokenBase;\n        break;\n      }\n      maybeEnd = (ch == \"*\");\n    }\n    return \"comment\";\n  }\n\n  function Context(indented, column, type, align, prev) {\n    this.indented = indented;\n    this.column = column;\n    this.type = type;\n    this.align = align;\n    this.prev = prev;\n  }\n  function pushContext(state, col, type) {\n    var indent = state.indented;\n    var c = new Context(indent, col, type, null, state.context);\n    return state.context = c;\n  }\n  function popContext(state) {\n    var t = state.context.type;\n    if (t == \")\" || t == \"]\" || t == \"}\") {\n      state.indented = state.context.indented;\n    }\n    return state.context = state.context.prev;\n  }\n\n  function isClosing(text, contextClosing) {\n    if (text == contextClosing) {\n      return true;\n    } else {\n      // contextClosing may be mulitple keywords separated by ;\n      var closingKeywords = contextClosing.split(\";\");\n      for (var i in closingKeywords) {\n        if (text == closingKeywords[i]) {\n          return true;\n        }\n      }\n      return false;\n    }\n  }\n\n  function buildElectricInputRegEx() {\n    // Reindentation should occur on any bracket char: {}()[]\n    // or on a match of any of the block closing keywords, at\n    // the end of a line\n    var allClosings = [];\n    for (var i in openClose) {\n      if (openClose[i]) {\n        var closings = openClose[i].split(\";\");\n        for (var j in closings) {\n          allClosings.push(closings[j]);\n        }\n      }\n    }\n    var re = new RegExp(\"[{}()\\\\[\\\\]]|(\" + allClosings.join(\"|\") + \")$\");\n    return re;\n  }\n\n  // Interface\n  return {\n\n    // Regex to force current line to reindent\n    electricInput: buildElectricInputRegEx(),\n\n    startState: function(basecolumn) {\n      return {\n        tokenize: null,\n        context: new Context((basecolumn || 0) - indentUnit, 0, \"top\", false),\n        indented: 0,\n        startOfLine: true\n      };\n    },\n\n    token: function(stream, state) {\n      var ctx = state.context;\n      if (stream.sol()) {\n        if (ctx.align == null) ctx.align = false;\n        state.indented = stream.indentation();\n        state.startOfLine = true;\n      }\n      if (stream.eatSpace()) return null;\n      curPunc = null;\n      curKeyword = null;\n      var style = (state.tokenize || tokenBase)(stream, state);\n      if (style == \"comment\" || style == \"meta\" || style == \"variable\") return style;\n      if (ctx.align == null) ctx.align = true;\n\n      if (curPunc == ctx.type) {\n        popContext(state);\n      }\n      else if ((curPunc == \";\" && ctx.type == \"statement\") ||\n               (ctx.type && isClosing(curKeyword, ctx.type))) {\n        ctx = popContext(state);\n        while (ctx && ctx.type == \"statement\") ctx = popContext(state);\n      }\n      else if (curPunc == \"{\") { pushContext(state, stream.column(), \"}\"); }\n      else if (curPunc == \"[\") { pushContext(state, stream.column(), \"]\"); }\n      else if (curPunc == \"(\") { pushContext(state, stream.column(), \")\"); }\n      else if (ctx && ctx.type == \"endcase\" && curPunc == \":\") { pushContext(state, stream.column(), \"statement\"); }\n      else if (curPunc == \"newstatement\") {\n        pushContext(state, stream.column(), \"statement\");\n      } else if (curPunc == \"newblock\") {\n        if (curKeyword == \"function\" && ctx && (ctx.type == \"statement\" || ctx.type == \"endgroup\")) {\n          // The 'function' keyword can appear in some other contexts where it actually does not\n          // indicate a function (import/export DPI and covergroup definitions).\n          // Do nothing in this case\n        } else if (curKeyword == \"task\" && ctx && ctx.type == \"statement\") {\n          // Same thing for task\n        } else {\n          var close = openClose[curKeyword];\n          pushContext(state, stream.column(), close);\n        }\n      }\n\n      state.startOfLine = false;\n      return style;\n    },\n\n    indent: function(state, textAfter) {\n      if (state.tokenize != tokenBase && state.tokenize != null) return CodeMirror.Pass;\n      var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);\n      if (ctx.type == \"statement\" && firstChar == \"}\") ctx = ctx.prev;\n      var closing = false;\n      var possibleClosing = textAfter.match(closingBracketOrWord);\n      if (possibleClosing) {\n        closing = isClosing(possibleClosing[0], ctx.type);\n      }\n      if (ctx.type == \"statement\") return ctx.indented + (firstChar == \"{\" ? 0 : statementIndentUnit);\n      else if (closingBracket.test(ctx.type) && ctx.align && !dontAlignCalls) return ctx.column + (closing ? 0 : 1);\n      else if (ctx.type == \")\" && !closing) return ctx.indented + statementIndentUnit;\n      else return ctx.indented + (closing ? 0 : indentUnit);\n    },\n\n    blockCommentStart: \"/*\",\n    blockCommentEnd: \"*/\",\n    lineComment: \"//\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-verilog\", {\n  name: \"verilog\"\n});\nCodeMirror.defineMIME(\"text/x-systemverilog\", {\n  name: \"systemverilog\"\n});\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/xml/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: XML mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"xml.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">XML</a>\n  </ul>\n</div>\n\n<article>\n<h2>XML mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n&lt;html style=\"color: green\"&gt;\n  &lt;!-- this is a comment --&gt;\n  &lt;head&gt;\n    &lt;title&gt;HTML Example&lt;/title&gt;\n  &lt;/head&gt;\n  &lt;body&gt;\n    The indentation tries to be &lt;em&gt;somewhat &amp;quot;do what\n    I mean&amp;quot;&lt;/em&gt;... but might not match your style.\n  &lt;/body&gt;\n&lt;/html&gt;\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        mode: \"text/html\",\n        lineNumbers: true\n      });\n    </script>\n    <p>The XML mode supports two configuration parameters:</p>\n    <dl>\n      <dt><code>htmlMode (boolean)</code></dt>\n      <dd>This switches the mode to parse HTML instead of XML. This\n      means attributes do not have to be quoted, and some elements\n      (such as <code>br</code>) do not require a closing tag.</dd>\n      <dt><code>alignCDATA (boolean)</code></dt>\n      <dd>Setting this to true will force the opening tag of CDATA\n      blocks to not be indented.</dd>\n    </dl>\n\n    <p><strong>MIME types defined:</strong> <code>application/xml</code>, <code>text/html</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/xml/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function() {\n  var mode = CodeMirror.getMode({indentUnit: 2}, \"xml\"), mname = \"xml\";\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), mname); }\n\n  MT(\"matching\",\n     \"[tag&bracket <][tag top][tag&bracket >]\",\n     \"  text\",\n     \"  [tag&bracket <][tag inner][tag&bracket />]\",\n     \"[tag&bracket </][tag top][tag&bracket >]\");\n\n  MT(\"nonmatching\",\n     \"[tag&bracket <][tag top][tag&bracket >]\",\n     \"  [tag&bracket <][tag inner][tag&bracket />]\",\n     \"  [tag&bracket </][tag&error tip][tag&bracket&error >]\");\n\n  MT(\"doctype\",\n     \"[meta <!doctype foobar>]\",\n     \"[tag&bracket <][tag top][tag&bracket />]\");\n\n  MT(\"cdata\",\n     \"[tag&bracket <][tag top][tag&bracket >]\",\n     \"  [atom <![CDATA[foo]\",\n     \"[atom barbazguh]]]]>]\",\n     \"[tag&bracket </][tag top][tag&bracket >]\");\n\n  // HTML tests\n  mode = CodeMirror.getMode({indentUnit: 2}, \"text/html\");\n\n  MT(\"selfclose\",\n     \"[tag&bracket <][tag html][tag&bracket >]\",\n     \"  [tag&bracket <][tag link] [attribute rel]=[string stylesheet] [attribute href]=[string \\\"/foobar\\\"][tag&bracket >]\",\n     \"[tag&bracket </][tag html][tag&bracket >]\");\n\n  MT(\"list\",\n     \"[tag&bracket <][tag ol][tag&bracket >]\",\n     \"  [tag&bracket <][tag li][tag&bracket >]one\",\n     \"  [tag&bracket <][tag li][tag&bracket >]two\",\n     \"[tag&bracket </][tag ol][tag&bracket >]\");\n\n  MT(\"valueless\",\n     \"[tag&bracket <][tag input] [attribute type]=[string checkbox] [attribute checked][tag&bracket />]\");\n\n  MT(\"pThenArticle\",\n     \"[tag&bracket <][tag p][tag&bracket >]\",\n     \"  foo\",\n     \"[tag&bracket <][tag article][tag&bracket >]bar\");\n\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/xml/xml.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"xml\", function(config, parserConfig) {\n  var indentUnit = config.indentUnit;\n  var multilineTagIndentFactor = parserConfig.multilineTagIndentFactor || 1;\n  var multilineTagIndentPastTag = parserConfig.multilineTagIndentPastTag;\n  if (multilineTagIndentPastTag == null) multilineTagIndentPastTag = true;\n\n  var Kludges = parserConfig.htmlMode ? {\n    autoSelfClosers: {'area': true, 'base': true, 'br': true, 'col': true, 'command': true,\n                      'embed': true, 'frame': true, 'hr': true, 'img': true, 'input': true,\n                      'keygen': true, 'link': true, 'meta': true, 'param': true, 'source': true,\n                      'track': true, 'wbr': true, 'menuitem': true},\n    implicitlyClosed: {'dd': true, 'li': true, 'optgroup': true, 'option': true, 'p': true,\n                       'rp': true, 'rt': true, 'tbody': true, 'td': true, 'tfoot': true,\n                       'th': true, 'tr': true},\n    contextGrabbers: {\n      'dd': {'dd': true, 'dt': true},\n      'dt': {'dd': true, 'dt': true},\n      'li': {'li': true},\n      'option': {'option': true, 'optgroup': true},\n      'optgroup': {'optgroup': true},\n      'p': {'address': true, 'article': true, 'aside': true, 'blockquote': true, 'dir': true,\n            'div': true, 'dl': true, 'fieldset': true, 'footer': true, 'form': true,\n            'h1': true, 'h2': true, 'h3': true, 'h4': true, 'h5': true, 'h6': true,\n            'header': true, 'hgroup': true, 'hr': true, 'menu': true, 'nav': true, 'ol': true,\n            'p': true, 'pre': true, 'section': true, 'table': true, 'ul': true},\n      'rp': {'rp': true, 'rt': true},\n      'rt': {'rp': true, 'rt': true},\n      'tbody': {'tbody': true, 'tfoot': true},\n      'td': {'td': true, 'th': true},\n      'tfoot': {'tbody': true},\n      'th': {'td': true, 'th': true},\n      'thead': {'tbody': true, 'tfoot': true},\n      'tr': {'tr': true}\n    },\n    doNotIndent: {\"pre\": true},\n    allowUnquoted: true,\n    allowMissing: true,\n    caseFold: true\n  } : {\n    autoSelfClosers: {},\n    implicitlyClosed: {},\n    contextGrabbers: {},\n    doNotIndent: {},\n    allowUnquoted: false,\n    allowMissing: false,\n    caseFold: false\n  };\n  var alignCDATA = parserConfig.alignCDATA;\n\n  // Return variables for tokenizers\n  var type, setStyle;\n\n  function inText(stream, state) {\n    function chain(parser) {\n      state.tokenize = parser;\n      return parser(stream, state);\n    }\n\n    var ch = stream.next();\n    if (ch == \"<\") {\n      if (stream.eat(\"!\")) {\n        if (stream.eat(\"[\")) {\n          if (stream.match(\"CDATA[\")) return chain(inBlock(\"atom\", \"]]>\"));\n          else return null;\n        } else if (stream.match(\"--\")) {\n          return chain(inBlock(\"comment\", \"-->\"));\n        } else if (stream.match(\"DOCTYPE\", true, true)) {\n          stream.eatWhile(/[\\w\\._\\-]/);\n          return chain(doctype(1));\n        } else {\n          return null;\n        }\n      } else if (stream.eat(\"?\")) {\n        stream.eatWhile(/[\\w\\._\\-]/);\n        state.tokenize = inBlock(\"meta\", \"?>\");\n        return \"meta\";\n      } else {\n        type = stream.eat(\"/\") ? \"closeTag\" : \"openTag\";\n        state.tokenize = inTag;\n        return \"tag bracket\";\n      }\n    } else if (ch == \"&\") {\n      var ok;\n      if (stream.eat(\"#\")) {\n        if (stream.eat(\"x\")) {\n          ok = stream.eatWhile(/[a-fA-F\\d]/) && stream.eat(\";\");\n        } else {\n          ok = stream.eatWhile(/[\\d]/) && stream.eat(\";\");\n        }\n      } else {\n        ok = stream.eatWhile(/[\\w\\.\\-:]/) && stream.eat(\";\");\n      }\n      return ok ? \"atom\" : \"error\";\n    } else {\n      stream.eatWhile(/[^&<]/);\n      return null;\n    }\n  }\n\n  function inTag(stream, state) {\n    var ch = stream.next();\n    if (ch == \">\" || (ch == \"/\" && stream.eat(\">\"))) {\n      state.tokenize = inText;\n      type = ch == \">\" ? \"endTag\" : \"selfcloseTag\";\n      return \"tag bracket\";\n    } else if (ch == \"=\") {\n      type = \"equals\";\n      return null;\n    } else if (ch == \"<\") {\n      state.tokenize = inText;\n      state.state = baseState;\n      state.tagName = state.tagStart = null;\n      var next = state.tokenize(stream, state);\n      return next ? next + \" tag error\" : \"tag error\";\n    } else if (/[\\'\\\"]/.test(ch)) {\n      state.tokenize = inAttribute(ch);\n      state.stringStartCol = stream.column();\n      return state.tokenize(stream, state);\n    } else {\n      stream.match(/^[^\\s\\u00a0=<>\\\"\\']*[^\\s\\u00a0=<>\\\"\\'\\/]/);\n      return \"word\";\n    }\n  }\n\n  function inAttribute(quote) {\n    var closure = function(stream, state) {\n      while (!stream.eol()) {\n        if (stream.next() == quote) {\n          state.tokenize = inTag;\n          break;\n        }\n      }\n      return \"string\";\n    };\n    closure.isInAttribute = true;\n    return closure;\n  }\n\n  function inBlock(style, terminator) {\n    return function(stream, state) {\n      while (!stream.eol()) {\n        if (stream.match(terminator)) {\n          state.tokenize = inText;\n          break;\n        }\n        stream.next();\n      }\n      return style;\n    };\n  }\n  function doctype(depth) {\n    return function(stream, state) {\n      var ch;\n      while ((ch = stream.next()) != null) {\n        if (ch == \"<\") {\n          state.tokenize = doctype(depth + 1);\n          return state.tokenize(stream, state);\n        } else if (ch == \">\") {\n          if (depth == 1) {\n            state.tokenize = inText;\n            break;\n          } else {\n            state.tokenize = doctype(depth - 1);\n            return state.tokenize(stream, state);\n          }\n        }\n      }\n      return \"meta\";\n    };\n  }\n\n  function Context(state, tagName, startOfLine) {\n    this.prev = state.context;\n    this.tagName = tagName;\n    this.indent = state.indented;\n    this.startOfLine = startOfLine;\n    if (Kludges.doNotIndent.hasOwnProperty(tagName) || (state.context && state.context.noIndent))\n      this.noIndent = true;\n  }\n  function popContext(state) {\n    if (state.context) state.context = state.context.prev;\n  }\n  function maybePopContext(state, nextTagName) {\n    var parentTagName;\n    while (true) {\n      if (!state.context) {\n        return;\n      }\n      parentTagName = state.context.tagName;\n      if (!Kludges.contextGrabbers.hasOwnProperty(parentTagName) ||\n          !Kludges.contextGrabbers[parentTagName].hasOwnProperty(nextTagName)) {\n        return;\n      }\n      popContext(state);\n    }\n  }\n\n  function baseState(type, stream, state) {\n    if (type == \"openTag\") {\n      state.tagStart = stream.column();\n      return tagNameState;\n    } else if (type == \"closeTag\") {\n      return closeTagNameState;\n    } else {\n      return baseState;\n    }\n  }\n  function tagNameState(type, stream, state) {\n    if (type == \"word\") {\n      state.tagName = stream.current();\n      setStyle = \"tag\";\n      return attrState;\n    } else {\n      setStyle = \"error\";\n      return tagNameState;\n    }\n  }\n  function closeTagNameState(type, stream, state) {\n    if (type == \"word\") {\n      var tagName = stream.current();\n      if (state.context && state.context.tagName != tagName &&\n          Kludges.implicitlyClosed.hasOwnProperty(state.context.tagName))\n        popContext(state);\n      if (state.context && state.context.tagName == tagName) {\n        setStyle = \"tag\";\n        return closeState;\n      } else {\n        setStyle = \"tag error\";\n        return closeStateErr;\n      }\n    } else {\n      setStyle = \"error\";\n      return closeStateErr;\n    }\n  }\n\n  function closeState(type, _stream, state) {\n    if (type != \"endTag\") {\n      setStyle = \"error\";\n      return closeState;\n    }\n    popContext(state);\n    return baseState;\n  }\n  function closeStateErr(type, stream, state) {\n    setStyle = \"error\";\n    return closeState(type, stream, state);\n  }\n\n  function attrState(type, _stream, state) {\n    if (type == \"word\") {\n      setStyle = \"attribute\";\n      return attrEqState;\n    } else if (type == \"endTag\" || type == \"selfcloseTag\") {\n      var tagName = state.tagName, tagStart = state.tagStart;\n      state.tagName = state.tagStart = null;\n      if (type == \"selfcloseTag\" ||\n          Kludges.autoSelfClosers.hasOwnProperty(tagName)) {\n        maybePopContext(state, tagName);\n      } else {\n        maybePopContext(state, tagName);\n        state.context = new Context(state, tagName, tagStart == state.indented);\n      }\n      return baseState;\n    }\n    setStyle = \"error\";\n    return attrState;\n  }\n  function attrEqState(type, stream, state) {\n    if (type == \"equals\") return attrValueState;\n    if (!Kludges.allowMissing) setStyle = \"error\";\n    return attrState(type, stream, state);\n  }\n  function attrValueState(type, stream, state) {\n    if (type == \"string\") return attrContinuedState;\n    if (type == \"word\" && Kludges.allowUnquoted) {setStyle = \"string\"; return attrState;}\n    setStyle = \"error\";\n    return attrState(type, stream, state);\n  }\n  function attrContinuedState(type, stream, state) {\n    if (type == \"string\") return attrContinuedState;\n    return attrState(type, stream, state);\n  }\n\n  return {\n    startState: function() {\n      return {tokenize: inText,\n              state: baseState,\n              indented: 0,\n              tagName: null, tagStart: null,\n              context: null};\n    },\n\n    token: function(stream, state) {\n      if (!state.tagName && stream.sol())\n        state.indented = stream.indentation();\n\n      if (stream.eatSpace()) return null;\n      type = null;\n      var style = state.tokenize(stream, state);\n      if ((style || type) && style != \"comment\") {\n        setStyle = null;\n        state.state = state.state(type || style, stream, state);\n        if (setStyle)\n          style = setStyle == \"error\" ? style + \" error\" : setStyle;\n      }\n      return style;\n    },\n\n    indent: function(state, textAfter, fullLine) {\n      var context = state.context;\n      // Indent multi-line strings (e.g. css).\n      if (state.tokenize.isInAttribute) {\n        if (state.tagStart == state.indented)\n          return state.stringStartCol + 1;\n        else\n          return state.indented + indentUnit;\n      }\n      if (context && context.noIndent) return CodeMirror.Pass;\n      if (state.tokenize != inTag && state.tokenize != inText)\n        return fullLine ? fullLine.match(/^(\\s*)/)[0].length : 0;\n      // Indent the starts of attribute names.\n      if (state.tagName) {\n        if (multilineTagIndentPastTag)\n          return state.tagStart + state.tagName.length + 2;\n        else\n          return state.tagStart + indentUnit * multilineTagIndentFactor;\n      }\n      if (alignCDATA && /<!\\[CDATA\\[/.test(textAfter)) return 0;\n      var tagAfter = textAfter && /^<(\\/)?([\\w_:\\.-]*)/.exec(textAfter);\n      if (tagAfter && tagAfter[1]) { // Closing tag spotted\n        while (context) {\n          if (context.tagName == tagAfter[2]) {\n            context = context.prev;\n            break;\n          } else if (Kludges.implicitlyClosed.hasOwnProperty(context.tagName)) {\n            context = context.prev;\n          } else {\n            break;\n          }\n        }\n      } else if (tagAfter) { // Opening tag spotted\n        while (context) {\n          var grabbers = Kludges.contextGrabbers[context.tagName];\n          if (grabbers && grabbers.hasOwnProperty(tagAfter[2]))\n            context = context.prev;\n          else\n            break;\n        }\n      }\n      while (context && !context.startOfLine)\n        context = context.prev;\n      if (context) return context.indent + indentUnit;\n      else return 0;\n    },\n\n    electricInput: /<\\/[\\s\\w:]+>$/,\n    blockCommentStart: \"<!--\",\n    blockCommentEnd: \"-->\",\n\n    configuration: parserConfig.htmlMode ? \"html\" : \"xml\",\n    helperType: parserConfig.htmlMode ? \"html\" : \"xml\"\n  };\n});\n\nCodeMirror.defineMIME(\"text/xml\", \"xml\");\nCodeMirror.defineMIME(\"application/xml\", \"xml\");\nif (!CodeMirror.mimeModes.hasOwnProperty(\"text/html\"))\n  CodeMirror.defineMIME(\"text/html\", {name: \"xml\", htmlMode: true});\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/xquery/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: XQuery mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<link rel=\"stylesheet\" href=\"../../theme/xq-dark.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"xquery.js\"></script>\n<style type=\"text/css\">\n\t.CodeMirror {\n\t  border-top: 1px solid black; border-bottom: 1px solid black;\n\t  height:400px;\n\t}\n    </style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">XQuery</a>\n  </ul>\n</div>\n\n<article>\n<h2>XQuery mode</h2>\n \n \n<div class=\"cm-s-default\"> \n\t<textarea id=\"code\" name=\"code\"> \nxquery version &quot;1.0-ml&quot;;\n(: this is\n : a \n   \"comment\" :)\nlet $let := &lt;x attr=&quot;value&quot;&gt;&quot;test&quot;&lt;func&gt;function() $var {function()} {$var}&lt;/func&gt;&lt;/x&gt;\nlet $joe:=1\nreturn element element {\n\tattribute attribute { 1 },\n\telement test { &#39;a&#39; }, \n\tattribute foo { &quot;bar&quot; },\n\tfn:doc()[ foo/@bar eq $let ],\n\t//x }    \n \n(: a more 'evil' test :)\n(: Modified Blakeley example (: with nested comment :) ... :)\ndeclare private function local:declare() {()};\ndeclare private function local:private() {()};\ndeclare private function local:function() {()};\ndeclare private function local:local() {()};\nlet $let := &lt;let&gt;let $let := &quot;let&quot;&lt;/let&gt;\nreturn element element {\n\tattribute attribute { try { xdmp:version() } catch($e) { xdmp:log($e) } },\n\tattribute fn:doc { &quot;bar&quot; castable as xs:string },\n\telement text { text { &quot;text&quot; } },\n\tfn:doc()[ child::eq/(@bar | attribute::attribute) eq $let ],\n\t//fn:doc\n}\n\n\n\nxquery version &quot;1.0-ml&quot;;\n\n(: Copyright 2006-2010 Mark Logic Corporation. :)\n\n(:\n : Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);\n : you may not use this file except in compliance with the License.\n : You may obtain a copy of the License at\n :\n :     http://www.apache.org/licenses/LICENSE-2.0\n :\n : Unless required by applicable law or agreed to in writing, software\n : distributed under the License is distributed on an &quot;AS IS&quot; BASIS,\n : WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n : See the License for the specific language governing permissions and\n : limitations under the License.\n :)\n\nmodule namespace json = &quot;http://marklogic.com/json&quot;;\ndeclare default function namespace &quot;http://www.w3.org/2005/xpath-functions&quot;;\n\n(: Need to backslash escape any double quotes, backslashes, and newlines :)\ndeclare function json:escape($s as xs:string) as xs:string {\n  let $s := replace($s, &quot;\\\\&quot;, &quot;\\\\\\\\&quot;)\n  let $s := replace($s, &quot;&quot;&quot;&quot;, &quot;\\\\&quot;&quot;&quot;)\n  let $s := replace($s, codepoints-to-string((13, 10)), &quot;\\\\n&quot;)\n  let $s := replace($s, codepoints-to-string(13), &quot;\\\\n&quot;)\n  let $s := replace($s, codepoints-to-string(10), &quot;\\\\n&quot;)\n  return $s\n};\n\ndeclare function json:atomize($x as element()) as xs:string {\n  if (count($x/node()) = 0) then 'null'\n  else if ($x/@type = &quot;number&quot;) then\n    let $castable := $x castable as xs:float or\n                     $x castable as xs:double or\n                     $x castable as xs:decimal\n    return\n    if ($castable) then xs:string($x)\n    else error(concat(&quot;Not a number: &quot;, xdmp:describe($x)))\n  else if ($x/@type = &quot;boolean&quot;) then\n    let $castable := $x castable as xs:boolean\n    return\n    if ($castable) then xs:string(xs:boolean($x))\n    else error(concat(&quot;Not a boolean: &quot;, xdmp:describe($x)))\n  else concat('&quot;', json:escape($x), '&quot;')\n};\n\n(: Print the thing that comes after the colon :)\ndeclare function json:print-value($x as element()) as xs:string {\n  if (count($x/*) = 0) then\n    json:atomize($x)\n  else if ($x/@quote = &quot;true&quot;) then\n    concat('&quot;', json:escape(xdmp:quote($x/node())), '&quot;')\n  else\n    string-join(('{',\n      string-join(for $i in $x/* return json:print-name-value($i), &quot;,&quot;),\n    '}'), &quot;&quot;)\n};\n\n(: Print the name and value both :)\ndeclare function json:print-name-value($x as element()) as xs:string? {\n  let $name := name($x)\n  let $first-in-array :=\n    count($x/preceding-sibling::*[name(.) = $name]) = 0 and\n    (count($x/following-sibling::*[name(.) = $name]) &gt; 0 or $x/@array = &quot;true&quot;)\n  let $later-in-array := count($x/preceding-sibling::*[name(.) = $name]) &gt; 0\n  return\n\n  if ($later-in-array) then\n    ()  (: I was handled previously :)\n  else if ($first-in-array) then\n    string-join(('&quot;', json:escape($name), '&quot;:[',\n      string-join((for $i in ($x, $x/following-sibling::*[name(.) = $name]) return json:print-value($i)), &quot;,&quot;),\n    ']'), &quot;&quot;)\n   else\n     string-join(('&quot;', json:escape($name), '&quot;:', json:print-value($x)), &quot;&quot;)\n};\n\n(:~\n  Transforms an XML element into a JSON string representation.  See http://json.org.\n  &lt;p/&gt;\n  Sample usage:\n  &lt;pre&gt;\n    xquery version &quot;1.0-ml&quot;;\n    import module namespace json=&quot;http://marklogic.com/json&quot; at &quot;json.xqy&quot;;\n    json:serialize(&amp;lt;foo&amp;gt;&amp;lt;bar&amp;gt;kid&amp;lt;/bar&amp;gt;&amp;lt;/foo&amp;gt;)\n  &lt;/pre&gt;\n  Sample transformations:\n  &lt;pre&gt;\n  &amp;lt;e/&amp;gt; becomes {&quot;e&quot;:null}\n  &amp;lt;e&amp;gt;text&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:&quot;text&quot;}\n  &amp;lt;e&amp;gt;quote &quot; escaping&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:&quot;quote \\&quot; escaping&quot;}\n  &amp;lt;e&amp;gt;backslash \\ escaping&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:&quot;backslash \\\\ escaping&quot;}\n  &amp;lt;e&amp;gt;&amp;lt;a&amp;gt;text1&amp;lt;/a&amp;gt;&amp;lt;b&amp;gt;text2&amp;lt;/b&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:&quot;text1&quot;,&quot;b&quot;:&quot;text2&quot;}}\n  &amp;lt;e&amp;gt;&amp;lt;a&amp;gt;text1&amp;lt;/a&amp;gt;&amp;lt;a&amp;gt;text2&amp;lt;/a&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:[&quot;text1&quot;,&quot;text2&quot;]}}\n  &amp;lt;e&amp;gt;&amp;lt;a array=&quot;true&quot;&amp;gt;text1&amp;lt;/a&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:[&quot;text1&quot;]}}\n  &amp;lt;e&amp;gt;&amp;lt;a type=&quot;boolean&quot;&amp;gt;false&amp;lt;/a&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:false}}\n  &amp;lt;e&amp;gt;&amp;lt;a type=&quot;number&quot;&amp;gt;123.5&amp;lt;/a&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:{&quot;a&quot;:123.5}}\n  &amp;lt;e quote=&quot;true&quot;&amp;gt;&amp;lt;div attrib=&quot;value&quot;/&amp;gt;&amp;lt;/e&amp;gt; becomes {&quot;e&quot;:&quot;&amp;lt;div attrib=\\&quot;value\\&quot;/&amp;gt;&quot;}\n  &lt;/pre&gt;\n  &lt;p/&gt;\n  Namespace URIs are ignored.  Namespace prefixes are included in the JSON name.\n  &lt;p/&gt;\n  Attributes are ignored, except for the special attribute @array=&quot;true&quot; that\n  indicates the JSON serialization should write the node, even if single, as an\n  array, and the attribute @type that can be set to &quot;boolean&quot; or &quot;number&quot; to\n  dictate the value should be written as that type (unquoted).  There's also\n  an @quote attribute that when set to true writes the inner content as text\n  rather than as structured JSON, useful for sending some XHTML over the\n  wire.\n  &lt;p/&gt;\n  Text nodes within mixed content are ignored.\n\n  @param $x Element node to convert\n  @return String holding JSON serialized representation of $x\n\n  @author Jason Hunter\n  @version 1.0.1\n  \n  Ported to xquery 1.0-ml; double escaped backslashes in json:escape\n:)\ndeclare function json:serialize($x as element())  as xs:string {\n  string-join(('{', json:print-name-value($x), '}'), &quot;&quot;)\n};\n  </textarea> \n</div> \n \n    <script> \n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true,\n        matchBrackets: true,\n        theme: \"xq-dark\"\n      });\n    </script> \n \n    <p><strong>MIME types defined:</strong> <code>application/xquery</code>.</p> \n \n    <p>Development of the CodeMirror XQuery mode was sponsored by \n      <a href=\"http://marklogic.com\">MarkLogic</a> and developed by \n      <a href=\"https://twitter.com/mbrevoort\">Mike Brevoort</a>.\n    </p>\n \n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/xquery/test.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n// Don't take these too seriously -- the expected results appear to be\n// based on the results of actual runs without any serious manual\n// verification. If a change you made causes them to fail, the test is\n// as likely to wrong as the code.\n\n(function() {\n  var mode = CodeMirror.getMode({tabSize: 4}, \"xquery\");\n  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }\n\n  MT(\"eviltest\",\n     \"[keyword xquery] [keyword version] [variable &quot;1][keyword .][atom 0][keyword -][variable ml&quot;][def&variable ;]      [comment (: this is       : a          \\\"comment\\\" :)]\",\n     \"      [keyword let] [variable $let] [keyword :=] [variable &lt;x] [variable attr][keyword =][variable &quot;value&quot;&gt;&quot;test&quot;&lt;func&gt][def&variable ;function]() [variable $var] {[keyword function]()} {[variable $var]}[variable &lt;][keyword /][variable func&gt;&lt;][keyword /][variable x&gt;]\",\n     \"      [keyword let] [variable $joe][keyword :=][atom 1]\",\n     \"      [keyword return] [keyword element] [variable element] {\",\n     \"          [keyword attribute] [variable attribute] { [atom 1] },\",\n     \"          [keyword element] [variable test] { [variable &#39;a&#39;] },           [keyword attribute] [variable foo] { [variable &quot;bar&quot;] },\",\n     \"          [def&variable fn:doc]()[[ [variable foo][keyword /][variable @bar] [keyword eq] [variable $let] ]],\",\n     \"          [keyword //][variable x] }                 [comment (: a more 'evil' test :)]\",\n     \"      [comment (: Modified Blakeley example (: with nested comment :) ... :)]\",\n     \"      [keyword declare] [keyword private] [keyword function] [def&variable local:declare]() {()}[variable ;]\",\n     \"      [keyword declare] [keyword private] [keyword function] [def&variable local:private]() {()}[variable ;]\",\n     \"      [keyword declare] [keyword private] [keyword function] [def&variable local:function]() {()}[variable ;]\",\n     \"      [keyword declare] [keyword private] [keyword function] [def&variable local:local]() {()}[variable ;]\",\n     \"      [keyword let] [variable $let] [keyword :=] [variable &lt;let&gt;let] [variable $let] [keyword :=] [variable &quot;let&quot;&lt;][keyword /let][variable &gt;]\",\n     \"      [keyword return] [keyword element] [variable element] {\",\n     \"          [keyword attribute] [variable attribute] { [keyword try] { [def&variable xdmp:version]() } [keyword catch]([variable $e]) { [def&variable xdmp:log]([variable $e]) } },\",\n     \"          [keyword attribute] [variable fn:doc] { [variable &quot;bar&quot;] [variable castable] [keyword as] [atom xs:string] },\",\n     \"          [keyword element] [variable text] { [keyword text] { [variable &quot;text&quot;] } },\",\n     \"          [def&variable fn:doc]()[[ [qualifier child::][variable eq][keyword /]([variable @bar] [keyword |] [qualifier attribute::][variable attribute]) [keyword eq] [variable $let] ]],\",\n     \"          [keyword //][variable fn:doc]\",\n     \"      }\");\n\n  MT(\"testEmptySequenceKeyword\",\n     \"[string \\\"foo\\\"] [keyword instance] [keyword of] [keyword empty-sequence]()\");\n\n  MT(\"testMultiAttr\",\n     \"[tag <p ][attribute a1]=[string \\\"foo\\\"] [attribute a2]=[string \\\"bar\\\"][tag >][variable hello] [variable world][tag </p>]\");\n\n  MT(\"test namespaced variable\",\n     \"[keyword declare] [keyword namespace] [variable e] [keyword =] [string \\\"http://example.com/ANamespace\\\"][variable ;declare] [keyword variable] [variable $e:exampleComThisVarIsNotRecognized] [keyword as] [keyword element]([keyword *]) [variable external;]\");\n\n  MT(\"test EQName variable\",\n     \"[keyword declare] [keyword variable] [variable $\\\"http://www.example.com/ns/my\\\":var] [keyword :=] [atom 12][variable ;]\",\n     \"[tag <out>]{[variable $\\\"http://www.example.com/ns/my\\\":var]}[tag </out>]\");\n\n  MT(\"test EQName function\",\n     \"[keyword declare] [keyword function] [def&variable \\\"http://www.example.com/ns/my\\\":fn] ([variable $a] [keyword as] [atom xs:integer]) [keyword as] [atom xs:integer] {\",\n     \"   [variable $a] [keyword +] [atom 2]\",\n     \"}[variable ;]\",\n     \"[tag <out>]{[def&variable \\\"http://www.example.com/ns/my\\\":fn]([atom 12])}[tag </out>]\");\n\n  MT(\"test EQName function with single quotes\",\n     \"[keyword declare] [keyword function] [def&variable 'http://www.example.com/ns/my':fn] ([variable $a] [keyword as] [atom xs:integer]) [keyword as] [atom xs:integer] {\",\n     \"   [variable $a] [keyword +] [atom 2]\",\n     \"}[variable ;]\",\n     \"[tag <out>]{[def&variable 'http://www.example.com/ns/my':fn]([atom 12])}[tag </out>]\");\n\n  MT(\"testProcessingInstructions\",\n     \"[def&variable data]([comment&meta <?target content?>]) [keyword instance] [keyword of] [atom xs:string]\");\n\n  MT(\"testQuoteEscapeDouble\",\n     \"[keyword let] [variable $rootfolder] [keyword :=] [string \\\"c:\\\\builds\\\\winnt\\\\HEAD\\\\qa\\\\scripts\\\\\\\"]\",\n     \"[keyword let] [variable $keysfolder] [keyword :=] [def&variable concat]([variable $rootfolder], [string \\\"keys\\\\\\\"])\");\n})();\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/xquery/xquery.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"xquery\", function() {\n\n  // The keywords object is set to the result of this self executing\n  // function. Each keyword is a property of the keywords object whose\n  // value is {type: atype, style: astyle}\n  var keywords = function(){\n    // conveinence functions used to build keywords object\n    function kw(type) {return {type: type, style: \"keyword\"};}\n    var A = kw(\"keyword a\")\n      , B = kw(\"keyword b\")\n      , C = kw(\"keyword c\")\n      , operator = kw(\"operator\")\n      , atom = {type: \"atom\", style: \"atom\"}\n      , punctuation = {type: \"punctuation\", style: null}\n      , qualifier = {type: \"axis_specifier\", style: \"qualifier\"};\n\n    // kwObj is what is return from this function at the end\n    var kwObj = {\n      'if': A, 'switch': A, 'while': A, 'for': A,\n      'else': B, 'then': B, 'try': B, 'finally': B, 'catch': B,\n      'element': C, 'attribute': C, 'let': C, 'implements': C, 'import': C, 'module': C, 'namespace': C,\n      'return': C, 'super': C, 'this': C, 'throws': C, 'where': C, 'private': C,\n      ',': punctuation,\n      'null': atom, 'fn:false()': atom, 'fn:true()': atom\n    };\n\n    // a list of 'basic' keywords. For each add a property to kwObj with the value of\n    // {type: basic[i], style: \"keyword\"} e.g. 'after' --> {type: \"after\", style: \"keyword\"}\n    var basic = ['after','ancestor','ancestor-or-self','and','as','ascending','assert','attribute','before',\n    'by','case','cast','child','comment','declare','default','define','descendant','descendant-or-self',\n    'descending','document','document-node','element','else','eq','every','except','external','following',\n    'following-sibling','follows','for','function','if','import','in','instance','intersect','item',\n    'let','module','namespace','node','node','of','only','or','order','parent','precedes','preceding',\n    'preceding-sibling','processing-instruction','ref','return','returns','satisfies','schema','schema-element',\n    'self','some','sortby','stable','text','then','to','treat','typeswitch','union','variable','version','where',\n    'xquery', 'empty-sequence'];\n    for(var i=0, l=basic.length; i < l; i++) { kwObj[basic[i]] = kw(basic[i]);};\n\n    // a list of types. For each add a property to kwObj with the value of\n    // {type: \"atom\", style: \"atom\"}\n    var types = ['xs:string', 'xs:float', 'xs:decimal', 'xs:double', 'xs:integer', 'xs:boolean', 'xs:date', 'xs:dateTime',\n    'xs:time', 'xs:duration', 'xs:dayTimeDuration', 'xs:time', 'xs:yearMonthDuration', 'numeric', 'xs:hexBinary',\n    'xs:base64Binary', 'xs:anyURI', 'xs:QName', 'xs:byte','xs:boolean','xs:anyURI','xf:yearMonthDuration'];\n    for(var i=0, l=types.length; i < l; i++) { kwObj[types[i]] = atom;};\n\n    // each operator will add a property to kwObj with value of {type: \"operator\", style: \"keyword\"}\n    var operators = ['eq', 'ne', 'lt', 'le', 'gt', 'ge', ':=', '=', '>', '>=', '<', '<=', '.', '|', '?', 'and', 'or', 'div', 'idiv', 'mod', '*', '/', '+', '-'];\n    for(var i=0, l=operators.length; i < l; i++) { kwObj[operators[i]] = operator;};\n\n    // each axis_specifiers will add a property to kwObj with value of {type: \"axis_specifier\", style: \"qualifier\"}\n    var axis_specifiers = [\"self::\", \"attribute::\", \"child::\", \"descendant::\", \"descendant-or-self::\", \"parent::\",\n    \"ancestor::\", \"ancestor-or-self::\", \"following::\", \"preceding::\", \"following-sibling::\", \"preceding-sibling::\"];\n    for(var i=0, l=axis_specifiers.length; i < l; i++) { kwObj[axis_specifiers[i]] = qualifier; };\n\n    return kwObj;\n  }();\n\n  // Used as scratch variables to communicate multiple values without\n  // consing up tons of objects.\n  var type, content;\n\n  function ret(tp, style, cont) {\n    type = tp; content = cont;\n    return style;\n  }\n\n  function chain(stream, state, f) {\n    state.tokenize = f;\n    return f(stream, state);\n  }\n\n  // the primary mode tokenizer\n  function tokenBase(stream, state) {\n    var ch = stream.next(),\n        mightBeFunction = false,\n        isEQName = isEQNameAhead(stream);\n\n    // an XML tag (if not in some sub, chained tokenizer)\n    if (ch == \"<\") {\n      if(stream.match(\"!--\", true))\n        return chain(stream, state, tokenXMLComment);\n\n      if(stream.match(\"![CDATA\", false)) {\n        state.tokenize = tokenCDATA;\n        return ret(\"tag\", \"tag\");\n      }\n\n      if(stream.match(\"?\", false)) {\n        return chain(stream, state, tokenPreProcessing);\n      }\n\n      var isclose = stream.eat(\"/\");\n      stream.eatSpace();\n      var tagName = \"\", c;\n      while ((c = stream.eat(/[^\\s\\u00a0=<>\\\"\\'\\/?]/))) tagName += c;\n\n      return chain(stream, state, tokenTag(tagName, isclose));\n    }\n    // start code block\n    else if(ch == \"{\") {\n      pushStateStack(state,{ type: \"codeblock\"});\n      return ret(\"\", null);\n    }\n    // end code block\n    else if(ch == \"}\") {\n      popStateStack(state);\n      return ret(\"\", null);\n    }\n    // if we're in an XML block\n    else if(isInXmlBlock(state)) {\n      if(ch == \">\")\n        return ret(\"tag\", \"tag\");\n      else if(ch == \"/\" && stream.eat(\">\")) {\n        popStateStack(state);\n        return ret(\"tag\", \"tag\");\n      }\n      else\n        return ret(\"word\", \"variable\");\n    }\n    // if a number\n    else if (/\\d/.test(ch)) {\n      stream.match(/^\\d*(?:\\.\\d*)?(?:E[+\\-]?\\d+)?/);\n      return ret(\"number\", \"atom\");\n    }\n    // comment start\n    else if (ch === \"(\" && stream.eat(\":\")) {\n      pushStateStack(state, { type: \"comment\"});\n      return chain(stream, state, tokenComment);\n    }\n    // quoted string\n    else if (  !isEQName && (ch === '\"' || ch === \"'\"))\n      return chain(stream, state, tokenString(ch));\n    // variable\n    else if(ch === \"$\") {\n      return chain(stream, state, tokenVariable);\n    }\n    // assignment\n    else if(ch ===\":\" && stream.eat(\"=\")) {\n      return ret(\"operator\", \"keyword\");\n    }\n    // open paren\n    else if(ch === \"(\") {\n      pushStateStack(state, { type: \"paren\"});\n      return ret(\"\", null);\n    }\n    // close paren\n    else if(ch === \")\") {\n      popStateStack(state);\n      return ret(\"\", null);\n    }\n    // open paren\n    else if(ch === \"[\") {\n      pushStateStack(state, { type: \"bracket\"});\n      return ret(\"\", null);\n    }\n    // close paren\n    else if(ch === \"]\") {\n      popStateStack(state);\n      return ret(\"\", null);\n    }\n    else {\n      var known = keywords.propertyIsEnumerable(ch) && keywords[ch];\n\n      // if there's a EQName ahead, consume the rest of the string portion, it's likely a function\n      if(isEQName && ch === '\\\"') while(stream.next() !== '\"'){}\n      if(isEQName && ch === '\\'') while(stream.next() !== '\\''){}\n\n      // gobble up a word if the character is not known\n      if(!known) stream.eatWhile(/[\\w\\$_-]/);\n\n      // gobble a colon in the case that is a lib func type call fn:doc\n      var foundColon = stream.eat(\":\");\n\n      // if there's not a second colon, gobble another word. Otherwise, it's probably an axis specifier\n      // which should get matched as a keyword\n      if(!stream.eat(\":\") && foundColon) {\n        stream.eatWhile(/[\\w\\$_-]/);\n      }\n      // if the next non whitespace character is an open paren, this is probably a function (if not a keyword of other sort)\n      if(stream.match(/^[ \\t]*\\(/, false)) {\n        mightBeFunction = true;\n      }\n      // is the word a keyword?\n      var word = stream.current();\n      known = keywords.propertyIsEnumerable(word) && keywords[word];\n\n      // if we think it's a function call but not yet known,\n      // set style to variable for now for lack of something better\n      if(mightBeFunction && !known) known = {type: \"function_call\", style: \"variable def\"};\n\n      // if the previous word was element, attribute, axis specifier, this word should be the name of that\n      if(isInXmlConstructor(state)) {\n        popStateStack(state);\n        return ret(\"word\", \"variable\", word);\n      }\n      // as previously checked, if the word is element,attribute, axis specifier, call it an \"xmlconstructor\" and\n      // push the stack so we know to look for it on the next word\n      if(word == \"element\" || word == \"attribute\" || known.type == \"axis_specifier\") pushStateStack(state, {type: \"xmlconstructor\"});\n\n      // if the word is known, return the details of that else just call this a generic 'word'\n      return known ? ret(known.type, known.style, word) :\n                     ret(\"word\", \"variable\", word);\n    }\n  }\n\n  // handle comments, including nested\n  function tokenComment(stream, state) {\n    var maybeEnd = false, maybeNested = false, nestedCount = 0, ch;\n    while (ch = stream.next()) {\n      if (ch == \")\" && maybeEnd) {\n        if(nestedCount > 0)\n          nestedCount--;\n        else {\n          popStateStack(state);\n          break;\n        }\n      }\n      else if(ch == \":\" && maybeNested) {\n        nestedCount++;\n      }\n      maybeEnd = (ch == \":\");\n      maybeNested = (ch == \"(\");\n    }\n\n    return ret(\"comment\", \"comment\");\n  }\n\n  // tokenizer for string literals\n  // optionally pass a tokenizer function to set state.tokenize back to when finished\n  function tokenString(quote, f) {\n    return function(stream, state) {\n      var ch;\n\n      if(isInString(state) && stream.current() == quote) {\n        popStateStack(state);\n        if(f) state.tokenize = f;\n        return ret(\"string\", \"string\");\n      }\n\n      pushStateStack(state, { type: \"string\", name: quote, tokenize: tokenString(quote, f) });\n\n      // if we're in a string and in an XML block, allow an embedded code block\n      if(stream.match(\"{\", false) && isInXmlAttributeBlock(state)) {\n        state.tokenize = tokenBase;\n        return ret(\"string\", \"string\");\n      }\n\n\n      while (ch = stream.next()) {\n        if (ch ==  quote) {\n          popStateStack(state);\n          if(f) state.tokenize = f;\n          break;\n        }\n        else {\n          // if we're in a string and in an XML block, allow an embedded code block in an attribute\n          if(stream.match(\"{\", false) && isInXmlAttributeBlock(state)) {\n            state.tokenize = tokenBase;\n            return ret(\"string\", \"string\");\n          }\n\n        }\n      }\n\n      return ret(\"string\", \"string\");\n    };\n  }\n\n  // tokenizer for variables\n  function tokenVariable(stream, state) {\n    var isVariableChar = /[\\w\\$_-]/;\n\n    // a variable may start with a quoted EQName so if the next character is quote, consume to the next quote\n    if(stream.eat(\"\\\"\")) {\n      while(stream.next() !== '\\\"'){};\n      stream.eat(\":\");\n    } else {\n      stream.eatWhile(isVariableChar);\n      if(!stream.match(\":=\", false)) stream.eat(\":\");\n    }\n    stream.eatWhile(isVariableChar);\n    state.tokenize = tokenBase;\n    return ret(\"variable\", \"variable\");\n  }\n\n  // tokenizer for XML tags\n  function tokenTag(name, isclose) {\n    return function(stream, state) {\n      stream.eatSpace();\n      if(isclose && stream.eat(\">\")) {\n        popStateStack(state);\n        state.tokenize = tokenBase;\n        return ret(\"tag\", \"tag\");\n      }\n      // self closing tag without attributes?\n      if(!stream.eat(\"/\"))\n        pushStateStack(state, { type: \"tag\", name: name, tokenize: tokenBase});\n      if(!stream.eat(\">\")) {\n        state.tokenize = tokenAttribute;\n        return ret(\"tag\", \"tag\");\n      }\n      else {\n        state.tokenize = tokenBase;\n      }\n      return ret(\"tag\", \"tag\");\n    };\n  }\n\n  // tokenizer for XML attributes\n  function tokenAttribute(stream, state) {\n    var ch = stream.next();\n\n    if(ch == \"/\" && stream.eat(\">\")) {\n      if(isInXmlAttributeBlock(state)) popStateStack(state);\n      if(isInXmlBlock(state)) popStateStack(state);\n      return ret(\"tag\", \"tag\");\n    }\n    if(ch == \">\") {\n      if(isInXmlAttributeBlock(state)) popStateStack(state);\n      return ret(\"tag\", \"tag\");\n    }\n    if(ch == \"=\")\n      return ret(\"\", null);\n    // quoted string\n    if (ch == '\"' || ch == \"'\")\n      return chain(stream, state, tokenString(ch, tokenAttribute));\n\n    if(!isInXmlAttributeBlock(state))\n      pushStateStack(state, { type: \"attribute\", tokenize: tokenAttribute});\n\n    stream.eat(/[a-zA-Z_:]/);\n    stream.eatWhile(/[-a-zA-Z0-9_:.]/);\n    stream.eatSpace();\n\n    // the case where the attribute has not value and the tag was closed\n    if(stream.match(\">\", false) || stream.match(\"/\", false)) {\n      popStateStack(state);\n      state.tokenize = tokenBase;\n    }\n\n    return ret(\"attribute\", \"attribute\");\n  }\n\n  // handle comments, including nested\n  function tokenXMLComment(stream, state) {\n    var ch;\n    while (ch = stream.next()) {\n      if (ch == \"-\" && stream.match(\"->\", true)) {\n        state.tokenize = tokenBase;\n        return ret(\"comment\", \"comment\");\n      }\n    }\n  }\n\n\n  // handle CDATA\n  function tokenCDATA(stream, state) {\n    var ch;\n    while (ch = stream.next()) {\n      if (ch == \"]\" && stream.match(\"]\", true)) {\n        state.tokenize = tokenBase;\n        return ret(\"comment\", \"comment\");\n      }\n    }\n  }\n\n  // handle preprocessing instructions\n  function tokenPreProcessing(stream, state) {\n    var ch;\n    while (ch = stream.next()) {\n      if (ch == \"?\" && stream.match(\">\", true)) {\n        state.tokenize = tokenBase;\n        return ret(\"comment\", \"comment meta\");\n      }\n    }\n  }\n\n\n  // functions to test the current context of the state\n  function isInXmlBlock(state) { return isIn(state, \"tag\"); }\n  function isInXmlAttributeBlock(state) { return isIn(state, \"attribute\"); }\n  function isInXmlConstructor(state) { return isIn(state, \"xmlconstructor\"); }\n  function isInString(state) { return isIn(state, \"string\"); }\n\n  function isEQNameAhead(stream) {\n    // assume we've already eaten a quote (\")\n    if(stream.current() === '\"')\n      return stream.match(/^[^\\\"]+\\\"\\:/, false);\n    else if(stream.current() === '\\'')\n      return stream.match(/^[^\\\"]+\\'\\:/, false);\n    else\n      return false;\n  }\n\n  function isIn(state, type) {\n    return (state.stack.length && state.stack[state.stack.length - 1].type == type);\n  }\n\n  function pushStateStack(state, newState) {\n    state.stack.push(newState);\n  }\n\n  function popStateStack(state) {\n    state.stack.pop();\n    var reinstateTokenize = state.stack.length && state.stack[state.stack.length-1].tokenize;\n    state.tokenize = reinstateTokenize || tokenBase;\n  }\n\n  // the interface for the mode API\n  return {\n    startState: function() {\n      return {\n        tokenize: tokenBase,\n        cc: [],\n        stack: []\n      };\n    },\n\n    token: function(stream, state) {\n      if (stream.eatSpace()) return null;\n      var style = state.tokenize(stream, state);\n      return style;\n    },\n\n    blockCommentStart: \"(:\",\n    blockCommentEnd: \":)\"\n\n  };\n\n});\n\nCodeMirror.defineMIME(\"application/xquery\", \"xquery\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/yaml/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: YAML mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"yaml.js\"></script>\n<style>.CodeMirror { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">YAML</a>\n  </ul>\n</div>\n\n<article>\n<h2>YAML mode</h2>\n<form><textarea id=\"code\" name=\"code\">\n--- # Favorite movies\n- Casablanca\n- North by Northwest\n- The Man Who Wasn't There\n--- # Shopping list\n[milk, pumpkin pie, eggs, juice]\n--- # Indented Blocks, common in YAML data files, use indentation and new lines to separate the key: value pairs\n  name: John Smith\n  age: 33\n--- # Inline Blocks, common in YAML data streams, use commas to separate the key: value pairs between braces\n{name: John Smith, age: 33}\n---\nreceipt:     Oz-Ware Purchase Invoice\ndate:        2007-08-06\ncustomer:\n    given:   Dorothy\n    family:  Gale\n\nitems:\n    - part_no:   A4786\n      descrip:   Water Bucket (Filled)\n      price:     1.47\n      quantity:  4\n\n    - part_no:   E1628\n      descrip:   High Heeled \"Ruby\" Slippers\n      size:       8\n      price:     100.27\n      quantity:  1\n\nbill-to:  &id001\n    street: |\n            123 Tornado Alley\n            Suite 16\n    city:   East Centerville\n    state:  KS\n\nship-to:  *id001\n\nspecialDelivery:  >\n    Follow the Yellow Brick\n    Road to the Emerald City.\n    Pay no attention to the\n    man behind the curtain.\n...\n</textarea></form>\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {});\n    </script>\n\n    <p><strong>MIME types defined:</strong> <code>text/x-yaml</code>.</p>\n\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/yaml/yaml.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode(\"yaml\", function() {\n\n  var cons = ['true', 'false', 'on', 'off', 'yes', 'no'];\n  var keywordRegex = new RegExp(\"\\\\b((\"+cons.join(\")|(\")+\"))$\", 'i');\n\n  return {\n    token: function(stream, state) {\n      var ch = stream.peek();\n      var esc = state.escaped;\n      state.escaped = false;\n      /* comments */\n      if (ch == \"#\" && (stream.pos == 0 || /\\s/.test(stream.string.charAt(stream.pos - 1)))) {\n        stream.skipToEnd(); return \"comment\";\n      }\n      if (state.literal && stream.indentation() > state.keyCol) {\n        stream.skipToEnd(); return \"string\";\n      } else if (state.literal) { state.literal = false; }\n      if (stream.sol()) {\n        state.keyCol = 0;\n        state.pair = false;\n        state.pairStart = false;\n        /* document start */\n        if(stream.match(/---/)) { return \"def\"; }\n        /* document end */\n        if (stream.match(/\\.\\.\\./)) { return \"def\"; }\n        /* array list item */\n        if (stream.match(/\\s*-\\s+/)) { return 'meta'; }\n      }\n      /* inline pairs/lists */\n      if (stream.match(/^(\\{|\\}|\\[|\\])/)) {\n        if (ch == '{')\n          state.inlinePairs++;\n        else if (ch == '}')\n          state.inlinePairs--;\n        else if (ch == '[')\n          state.inlineList++;\n        else\n          state.inlineList--;\n        return 'meta';\n      }\n\n      /* list seperator */\n      if (state.inlineList > 0 && !esc && ch == ',') {\n        stream.next();\n        return 'meta';\n      }\n      /* pairs seperator */\n      if (state.inlinePairs > 0 && !esc && ch == ',') {\n        state.keyCol = 0;\n        state.pair = false;\n        state.pairStart = false;\n        stream.next();\n        return 'meta';\n      }\n\n      /* start of value of a pair */\n      if (state.pairStart) {\n        /* block literals */\n        if (stream.match(/^\\s*(\\||\\>)\\s*/)) { state.literal = true; return 'meta'; };\n        /* references */\n        if (stream.match(/^\\s*(\\&|\\*)[a-z0-9\\._-]+\\b/i)) { return 'variable-2'; }\n        /* numbers */\n        if (state.inlinePairs == 0 && stream.match(/^\\s*-?[0-9\\.\\,]+\\s?$/)) { return 'number'; }\n        if (state.inlinePairs > 0 && stream.match(/^\\s*-?[0-9\\.\\,]+\\s?(?=(,|}))/)) { return 'number'; }\n        /* keywords */\n        if (stream.match(keywordRegex)) { return 'keyword'; }\n      }\n\n      /* pairs (associative arrays) -> key */\n      if (!state.pair && stream.match(/^\\s*(?:[,\\[\\]{}&*!|>'\"%@`][^\\s'\":]|[^,\\[\\]{}#&*!|>'\"%@`])[^#]*?(?=\\s*:($|\\s))/)) {\n        state.pair = true;\n        state.keyCol = stream.indentation();\n        return \"atom\";\n      }\n      if (state.pair && stream.match(/^:\\s*/)) { state.pairStart = true; return 'meta'; }\n\n      /* nothing found, continue */\n      state.pairStart = false;\n      state.escaped = (ch == '\\\\');\n      stream.next();\n      return null;\n    },\n    startState: function() {\n      return {\n        pair: false,\n        pairStart: false,\n        keyCol: 0,\n        inlinePairs: 0,\n        inlineList: 0,\n        literal: false,\n        escaped: false\n      };\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-yaml\", \"yaml\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/z80/index.html",
    "content": "<!doctype html>\n\n<title>CodeMirror: Z80 assembly mode</title>\n<meta charset=\"utf-8\"/>\n<link rel=stylesheet href=\"../../doc/docs.css\">\n\n<link rel=\"stylesheet\" href=\"../../lib/codemirror.css\">\n<script src=\"../../lib/codemirror.js\"></script>\n<script src=\"z80.js\"></script>\n<style type=\"text/css\">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>\n<div id=nav>\n  <a href=\"http://codemirror.net\"><h1>CodeMirror</h1><img id=logo src=\"../../doc/logo.png\"></a>\n\n  <ul>\n    <li><a href=\"../../index.html\">Home</a>\n    <li><a href=\"../../doc/manual.html\">Manual</a>\n    <li><a href=\"https://github.com/codemirror/codemirror\">Code</a>\n  </ul>\n  <ul>\n    <li><a href=\"../index.html\">Language modes</a>\n    <li><a class=active href=\"#\">Z80 assembly</a>\n  </ul>\n</div>\n\n<article>\n<h2>Z80 assembly mode</h2>\n\n\n<div><textarea id=\"code\" name=\"code\">\n#include    \"ti83plus.inc\"\n#define     progStart   $9D95\n.org        progStart-2\n.db         $BB,$6D\n    bcall(_ClrLCDFull)\n    ld  HL, 0\n    ld  (PenCol),   HL\n    ld  HL, Message\n    bcall(_PutS) ; Displays the string\n    bcall(_NewLine)\n    ret\nMessage:\n.db         \"Hello world!\",0\n</textarea></div>\n\n    <script>\n      var editor = CodeMirror.fromTextArea(document.getElementById(\"code\"), {\n        lineNumbers: true\n      });\n    </script>\n\n    <p><strong>MIME type defined:</strong> <code>text/x-z80</code>.</p>\n  </article>\n"
  },
  {
    "path": "public/admin/js/plugins/codemirror/mode/z80/z80.js",
    "content": "// CodeMirror, copyright (c) by Marijn Haverbeke and others\n// Distributed under an MIT license: http://codemirror.net/LICENSE\n\n(function(mod) {\n  if (typeof exports == \"object\" && typeof module == \"object\") // CommonJS\n    mod(require(\"../../lib/codemirror\"));\n  else if (typeof define == \"function\" && define.amd) // AMD\n    define([\"../../lib/codemirror\"], mod);\n  else // Plain browser env\n    mod(CodeMirror);\n})(function(CodeMirror) {\n\"use strict\";\n\nCodeMirror.defineMode('z80', function() {\n  var keywords1 = /^(exx?|(ld|cp|in)([di]r?)?|pop|push|ad[cd]|cpl|daa|dec|inc|neg|sbc|sub|and|bit|[cs]cf|x?or|res|set|r[lr]c?a?|r[lr]d|s[lr]a|srl|djnz|nop|rst|[de]i|halt|im|ot[di]r|out[di]?)\\b/i;\n  var keywords2 = /^(call|j[pr]|ret[in]?)\\b/i;\n  var keywords3 = /^b_?(call|jump)\\b/i;\n  var variables1 = /^(af?|bc?|c|de?|e|hl?|l|i[xy]?|r|sp)\\b/i;\n  var variables2 = /^(n?[zc]|p[oe]?|m)\\b/i;\n  var errors = /^([hl][xy]|i[xy][hl]|slia|sll)\\b/i;\n  var numbers = /^([\\da-f]+h|[0-7]+o|[01]+b|\\d+)\\b/i;\n\n  return {\n    startState: function() {\n      return {context: 0};\n    },\n    token: function(stream, state) {\n      if (!stream.column())\n        state.context = 0;\n\n      if (stream.eatSpace())\n        return null;\n\n      var w;\n\n      if (stream.eatWhile(/\\w/)) {\n        w = stream.current();\n\n        if (stream.indentation()) {\n          if (state.context == 1 && variables1.test(w))\n            return 'variable-2';\n\n          if (state.context == 2 && variables2.test(w))\n            return 'variable-3';\n\n          if (keywords1.test(w)) {\n            state.context = 1;\n            return 'keyword';\n          } else if (keywords2.test(w)) {\n            state.context = 2;\n            return 'keyword';\n          } else if (keywords3.test(w)) {\n            state.context = 3;\n            return 'keyword';\n          }\n\n          if (errors.test(w))\n            return 'error';\n        } else if (numbers.test(w)) {\n          return 'number';\n        } else {\n          return null;\n        }\n      } else if (stream.eat(';')) {\n        stream.skipToEnd();\n        return 'comment';\n      } else if (stream.eat('\"')) {\n        while (w = stream.next()) {\n          if (w == '\"')\n            break;\n\n          if (w == '\\\\')\n            stream.next();\n        }\n        return 'string';\n      } else if (stream.eat('\\'')) {\n        if (stream.match(/\\\\?.'/))\n          return 'number';\n      } else if (stream.eat('.') || stream.sol() && stream.eat('#')) {\n        state.context = 4;\n\n        if (stream.eatWhile(/\\w/))\n          return 'def';\n      } else if (stream.eat('$')) {\n        if (stream.eatWhile(/[\\da-f]/i))\n          return 'number';\n      } else if (stream.eat('%')) {\n        if (stream.eatWhile(/[01]/))\n          return 'number';\n      } else {\n        stream.next();\n      }\n      return null;\n    }\n  };\n});\n\nCodeMirror.defineMIME(\"text/x-z80\", \"z80\");\n\n});\n"
  },
  {
    "path": "public/admin/js/plugins/dataTables/dataTables.bootstrap.js",
    "content": "/* Set the defaults for DataTables initialisation */\n$.extend(true, $.fn.dataTable.defaults, {\n    \"sDom\": \"<'row'<'col-sm-6'l><'col-sm-6'f>r>\" + \"t\" + \"<'row'<'col-sm-6'i><'col-sm-6'p>>\",\n    \"oLanguage\": {\n        \"sLengthMenu\": \"_MENU_ records per page\"\n    }\n});\n\n\n/* Default class modification */\n$.extend($.fn.dataTableExt.oStdClasses, {\n    \"sWrapper\": \"dataTables_wrapper form-inline\",\n    \"sFilterInput\": \"form-control input-sm\",\n    \"sLengthSelect\": \"form-control input-sm\"\n});\n\n// In 1.10 we use the pagination renderers to draw the Bootstrap paging,\n// rather than  custom plug-in\nif ($.fn.dataTable.Api) {\n    $.fn.dataTable.defaults.renderer = 'bootstrap';\n    $.fn.dataTable.ext.renderer.pageButton.bootstrap = function(settings, host, idx, buttons, page, pages) {\n        var api = new $.fn.dataTable.Api(settings);\n        var classes = settings.oClasses;\n        var lang = settings.oLanguage.oPaginate;\n        var btnDisplay, btnClass;\n\n        var attach = function(container, buttons) {\n            var i, ien, node, button;\n            var clickHandler = function(e) {\n                e.preventDefault();\n                if (e.data.action !== 'ellipsis') {\n                    api.page(e.data.action).draw(false);\n                }\n            };\n\n            for (i = 0, ien = buttons.length; i < ien; i++) {\n                button = buttons[i];\n\n                if ($.isArray(button)) {\n                    attach(container, button);\n                } else {\n                    btnDisplay = '';\n                    btnClass = '';\n\n                    switch (button) {\n                        case 'ellipsis':\n                            btnDisplay = '&hellip;';\n                            btnClass = 'disabled';\n                            break;\n\n                        case 'first':\n                            btnDisplay = lang.sFirst;\n                            btnClass = button + (page > 0 ?\n                                '' : ' disabled');\n                            break;\n\n                        case 'previous':\n                            btnDisplay = lang.sPrevious;\n                            btnClass = button + (page > 0 ?\n                                '' : ' disabled');\n                            break;\n\n                        case 'next':\n                            btnDisplay = lang.sNext;\n                            btnClass = button + (page < pages - 1 ?\n                                '' : ' disabled');\n                            break;\n\n                        case 'last':\n                            btnDisplay = lang.sLast;\n                            btnClass = button + (page < pages - 1 ?\n                                '' : ' disabled');\n                            break;\n\n                        default:\n                            btnDisplay = button + 1;\n                            btnClass = page === button ?\n                                'active' : '';\n                            break;\n                    }\n\n                    if (btnDisplay) {\n                        node = $('<li>', {\n                            'class': classes.sPageButton + ' ' + btnClass,\n                            'aria-controls': settings.sTableId,\n                            'tabindex': settings.iTabIndex,\n                            'id': idx === 0 && typeof button === 'string' ? settings.sTableId + '_' + button : null\n                        })\n                            .append($('<a>', {\n                                    'href': '#'\n                                })\n                                .html(btnDisplay)\n                        )\n                            .appendTo(container);\n\n                        settings.oApi._fnBindAction(\n                            node, {\n                                action: button\n                            }, clickHandler\n                        );\n                    }\n                }\n            }\n        };\n\n        attach(\n            $(host).empty().html('<ul class=\"pagination\"/>').children('ul'),\n            buttons\n        );\n    }\n} else {\n    // Integration for 1.9-\n    $.fn.dataTable.defaults.sPaginationType = 'bootstrap';\n\n    /* API method to get paging information */\n    $.fn.dataTableExt.oApi.fnPagingInfo = function(oSettings) {\n        return {\n            \"iStart\": oSettings._iDisplayStart,\n            \"iEnd\": oSettings.fnDisplayEnd(),\n            \"iLength\": oSettings._iDisplayLength,\n            \"iTotal\": oSettings.fnRecordsTotal(),\n            \"iFilteredTotal\": oSettings.fnRecordsDisplay(),\n            \"iPage\": oSettings._iDisplayLength === -1 ? 0 : Math.ceil(oSettings._iDisplayStart / oSettings._iDisplayLength),\n            \"iTotalPages\": oSettings._iDisplayLength === -1 ? 0 : Math.ceil(oSettings.fnRecordsDisplay() / oSettings._iDisplayLength)\n        };\n    };\n\n    /* Bootstrap style pagination control */\n    $.extend($.fn.dataTableExt.oPagination, {\n        \"bootstrap\": {\n            \"fnInit\": function(oSettings, nPaging, fnDraw) {\n                var oLang = oSettings.oLanguage.oPaginate;\n                var fnClickHandler = function(e) {\n                    e.preventDefault();\n                    if (oSettings.oApi._fnPageChange(oSettings, e.data.action)) {\n                        fnDraw(oSettings);\n                    }\n                };\n\n                $(nPaging).append(\n                    '<ul class=\"pagination\">' +\n                    '<li class=\"prev disabled\"><a href=\"#\">&larr; ' + oLang.sPrevious + '</a></li>' +\n                    '<li class=\"next disabled\"><a href=\"#\">' + oLang.sNext + ' &rarr; </a></li>' +\n                    '</ul>'\n                );\n                var els = $('a', nPaging);\n                $(els[0]).bind('click.DT', {\n                    action: \"previous\"\n                }, fnClickHandler);\n                $(els[1]).bind('click.DT', {\n                    action: \"next\"\n                }, fnClickHandler);\n            },\n\n            \"fnUpdate\": function(oSettings, fnDraw) {\n                var iListLength = 5;\n                var oPaging = oSettings.oInstance.fnPagingInfo();\n                var an = oSettings.aanFeatures.p;\n                var i, ien, j, sClass, iStart, iEnd, iHalf = Math.floor(iListLength / 2);\n\n                if (oPaging.iTotalPages < iListLength) {\n                    iStart = 1;\n                    iEnd = oPaging.iTotalPages;\n                } else if (oPaging.iPage <= iHalf) {\n                    iStart = 1;\n                    iEnd = iListLength;\n                } else if (oPaging.iPage >= (oPaging.iTotalPages - iHalf)) {\n                    iStart = oPaging.iTotalPages - iListLength + 1;\n                    iEnd = oPaging.iTotalPages;\n                } else {\n                    iStart = oPaging.iPage - iHalf + 1;\n                    iEnd = iStart + iListLength - 1;\n                }\n\n                for (i = 0, ien = an.length; i < ien; i++) {\n                    // Remove the middle elements\n                    $('li:gt(0)', an[i]).filter(':not(:last)').remove();\n\n                    // Add the new list items and their event handlers\n                    for (j = iStart; j <= iEnd; j++) {\n                        sClass = (j == oPaging.iPage + 1) ? 'class=\"active\"' : '';\n                        $('<li ' + sClass + '><a href=\"#\">' + j + '</a></li>')\n                            .insertBefore($('li:last', an[i])[0])\n                            .bind('click', function(e) {\n                                e.preventDefault();\n                                oSettings._iDisplayStart = (parseInt($('a', this).text(), 10) - 1) * oPaging.iLength;\n                                fnDraw(oSettings);\n                            });\n                    }\n\n                    // Add / remove disabled classes from the static elements\n                    if (oPaging.iPage === 0) {\n                        $('li:first', an[i]).addClass('disabled');\n                    } else {\n                        $('li:first', an[i]).removeClass('disabled');\n                    }\n\n                    if (oPaging.iPage === oPaging.iTotalPages - 1 || oPaging.iTotalPages === 0) {\n                        $('li:last', an[i]).addClass('disabled');\n                    } else {\n                        $('li:last', an[i]).removeClass('disabled');\n                    }\n                }\n            }\n        }\n    });\n}\n\n\n/*\n * TableTools Bootstrap compatibility\n * Required TableTools 2.1+\n */\nif ($.fn.DataTable.TableTools) {\n    // Set the classes that TableTools uses to something suitable for Bootstrap\n    $.extend(true, $.fn.DataTable.TableTools.classes, {\n        \"container\": \"DTTT btn-group\",\n        \"buttons\": {\n            \"normal\": \"btn btn-default\",\n            \"disabled\": \"disabled\"\n        },\n        \"collection\": {\n            \"container\": \"DTTT_dropdown dropdown-menu\",\n            \"buttons\": {\n                \"normal\": \"\",\n                \"disabled\": \"disabled\"\n            }\n        },\n        \"print\": {\n            \"info\": \"DTTT_print_info modal\"\n        },\n        \"select\": {\n            \"row\": \"active\"\n        }\n    });\n\n    // Have the collection use a bootstrap compatible dropdown\n    $.extend(true, $.fn.DataTable.TableTools.DEFAULTS.oTags, {\n        \"collection\": {\n            \"container\": \"ul\",\n            \"button\": \"li\",\n            \"liner\": \"a\"\n        }\n    });\n}\n"
  },
  {
    "path": "public/admin/js/plugins/dataTables/dataTables.responsive.js",
    "content": "/*! Responsive 1.0.2\n * 2014 SpryMedia Ltd - datatables.net/license\n */\n\n/**\n * @summary     Responsive\n * @description Responsive tables plug-in for DataTables\n * @version     1.0.2\n * @file        dataTables.responsive.js\n * @author      SpryMedia Ltd (www.sprymedia.co.uk)\n * @contact     www.sprymedia.co.uk/contact\n * @copyright   Copyright 2014 SpryMedia Ltd.\n *\n * This source file is free software, available under the following license:\n *   MIT license - http://datatables.net/license/mit\n *\n * This source file is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.\n *\n * For details please refer to: http://www.datatables.net\n */\n\n(function(window, document, undefined) {\n\n\n    var factory = function( $, DataTable ) {\n        \"use strict\";\n\n        /**\n         * Responsive is a plug-in for the DataTables library that makes use of\n         * DataTables' ability to change the visibility of columns, changing the\n         * visibility of columns so the displayed columns fit into the table container.\n         * The end result is that complex tables will be dynamically adjusted to fit\n         * into the viewport, be it on a desktop, tablet or mobile browser.\n         *\n         * Responsive for DataTables has two modes of operation, which can used\n         * individually or combined:\n         *\n         * * Class name based control - columns assigned class names that match the\n         *   breakpoint logic can be shown / hidden as required for each breakpoint.\n         * * Automatic control - columns are automatically hidden when there is no\n         *   room left to display them. Columns removed from the right.\n         *\n         * In additional to column visibility control, Responsive also has built into\n         * options to use DataTables' child row display to show / hide the information\n         * from the table that has been hidden. There are also two modes of operation\n         * for this child row display:\n         *\n         * * Inline - when the control element that the user can use to show / hide\n         *   child rows is displayed inside the first column of the table.\n         * * Column - where a whole column is dedicated to be the show / hide control.\n         *\n         * Initialisation of Responsive is performed by:\n         *\n         * * Adding the class `responsive` or `dt-responsive` to the table. In this case\n         *   Responsive will automatically be initialised with the default configuration\n         *   options when the DataTable is created.\n         * * Using the `responsive` option in the DataTables configuration options. This\n         *   can also be used to specify the configuration options, or simply set to\n         *   `true` to use the defaults.\n         *\n         *  @class\n         *  @param {object} settings DataTables settings object for the host table\n         *  @param {object} [opts] Configuration options\n         *  @requires jQuery 1.7+\n         *  @requires DataTables 1.10.1+\n         *\n         *  @example\n         *      $('#example').DataTable( {\n *        responsive: true\n *      } );\n         *    } );\n         */\n        var Responsive = function ( settings, opts ) {\n            // Sanity check that we are using DataTables 1.10 or newer\n            if ( ! DataTable.versionCheck || ! DataTable.versionCheck( '1.10.1' ) ) {\n                throw 'DataTables Responsive requires DataTables 1.10.1 or newer';\n            }\n\n            this.s = {\n                dt: new DataTable.Api( settings ),\n                columns: []\n            };\n\n            // Check if responsive has already been initialised on this table\n            if ( this.s.dt.settings()[0].responsive ) {\n                return;\n            }\n\n            // details is an object, but for simplicity the user can give it as a string\n            if ( opts && typeof opts.details === 'string' ) {\n                opts.details = { type: opts.details };\n            }\n\n            this.c = $.extend( true, {}, Responsive.defaults, DataTable.defaults.responsive, opts );\n            settings.responsive = this;\n            this._constructor();\n        };\n\n        Responsive.prototype = {\n            /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n             * Constructor\n             */\n\n            /**\n             * Initialise the Responsive instance\n             *\n             * @private\n             */\n            _constructor: function ()\n            {\n                var that = this;\n                var dt = this.s.dt;\n\n                dt.settings()[0]._responsive = this;\n\n                // Use DataTables' private throttle function to avoid processor thrashing\n                $(window).on( 'resize.dtr orientationchange.dtr', dt.settings()[0].oApi._fnThrottle( function () {\n                    that._resize();\n                } ) );\n\n                // Destroy event handler\n                dt.on( 'destroy.dtr', function () {\n                    $(window).off( 'resize.dtr orientationchange.dtr' );\n                } );\n\n                // Reorder the breakpoints array here in case they have been added out\n                // of order\n                this.c.breakpoints.sort( function (a, b) {\n                    return a.width < b.width ? 1 :\n                        a.width > b.width ? -1 : 0;\n                } );\n\n                // Determine which columns are already hidden, and should therefore\n                // remain hidden. TODO - should this be done? See thread 22677\n                //\n                // this.s.alwaysHidden = dt.columns(':hidden').indexes();\n\n                this._classLogic();\n                this._resizeAuto();\n\n                // First pass - draw the table for the current viewport size\n                this._resize();\n\n                // Details handler\n                var details = this.c.details;\n                if ( details.type ) {\n                    that._detailsInit();\n                    this._detailsVis();\n\n                    dt.on( 'column-visibility.dtr', function () {\n                        that._detailsVis();\n                    } );\n\n                    $(dt.table().node()).addClass( 'dtr-'+details.type );\n                }\n            },\n\n\n            /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n             * Private methods\n             */\n\n            /**\n             * Calculate the visibility for the columns in a table for a given\n             * breakpoint. The result is pre-determined based on the class logic if\n             * class names are used to control all columns, but the width of the table\n             * is also used if there are columns which are to be automatically shown\n             * and hidden.\n             *\n             * @param  {string} breakpoint Breakpoint name to use for the calculation\n             * @return {array} Array of boolean values initiating the visibility of each\n             *   column.\n             *  @private\n             */\n            _columnsVisiblity: function ( breakpoint )\n            {\n                var dt = this.s.dt;\n                var columns = this.s.columns;\n                var i, ien;\n\n                // Class logic - determine which columns are in this breakpoint based\n                // on the classes. If no class control (i.e. `auto`) then `-` is used\n                // to indicate this to the rest of the function\n                var display = $.map( columns, function ( col ) {\n                    return col.auto && col.minWidth === null ?\n                        false :\n                        col.auto === true ?\n                            '-' :\n                            $.inArray( breakpoint, col.includeIn ) !== -1;\n                } );\n\n                // Auto column control - first pass: how much width is taken by the\n                // ones that must be included from the non-auto columns\n                var requiredWidth = 0;\n                for ( i=0, ien=display.length ; i<ien ; i++ ) {\n                    if ( display[i] === true ) {\n                        requiredWidth += columns[i].minWidth;\n                    }\n                }\n\n                // Second pass, use up any remaining width for other columns\n                var widthAvailable = dt.table().container().offsetWidth;\n                var usedWidth = widthAvailable - requiredWidth;\n\n                for ( i=0, ien=display.length ; i<ien ; i++ ) {\n                    // Control column needs to always be included. This makes it sub-\n                    // optimal in terms of using the available with, but to stop layout\n                    // thrashing or overflow\n                    if ( columns[i].control ) {\n                        usedWidth -= columns[i].minWidth;\n                    }\n                    else if ( display[i] === '-' ) {\n                        // Otherwise, remove the width\n                        display[i] = usedWidth - columns[i].minWidth < 0 ?\n                            false :\n                            true;\n\n                        // Continue counting down the width, so a smaller column to the\n                        // left won't be shown\n                        usedWidth -= columns[i].minWidth;\n                    }\n                }\n\n                // Determine if the 'control' column should be shown (if there is one).\n                // This is the case when there is a hidden column (that is not the\n                // control column). The two loops look inefficient here, but they are\n                // trivial and will fly through. We need to know the outcome from the\n                // first , before the action in the second can be taken\n                var showControl = false;\n\n                for ( i=0, ien=columns.length ; i<ien ; i++ ) {\n                    if ( ! columns[i].control && ! columns[i].never && ! display[i] ) {\n                        showControl = true;\n                        break;\n                    }\n                }\n\n                for ( i=0, ien=columns.length ; i<ien ; i++ ) {\n                    if ( columns[i].control ) {\n                        display[i] = showControl;\n                    }\n                }\n\n                // Finally we need to make sure that there is at least one column that\n                // is visible\n                if ( $.inArray( true, display ) === -1 ) {\n                    display[0] = true;\n                }\n\n                return display;\n            },\n\n\n            /**\n             * Create the internal `columns` array with information about the columns\n             * for the table. This includes determining which breakpoints the column\n             * will appear in, based upon class names in the column, which makes up the\n             * vast majority of this method.\n             *\n             * @private\n             */\n            _classLogic: function ()\n            {\n                var that = this;\n                var calc = {};\n                var breakpoints = this.c.breakpoints;\n                var columns = this.s.dt.columns().eq(0).map( function (i) {\n                    var className = this.column(i).header().className;\n\n                    return {\n                        className: className,\n                        includeIn: [],\n                        auto:      false,\n                        control:   false,\n                        never:     className.match(/\\bnever\\b/) ? true : false\n                    };\n                } );\n\n                // Simply add a breakpoint to `includeIn` array, ensuring that there are\n                // no duplicates\n                var add = function ( colIdx, name ) {\n                    var includeIn = columns[ colIdx ].includeIn;\n\n                    if ( $.inArray( name, includeIn ) === -1 ) {\n                        includeIn.push( name );\n                    }\n                };\n\n                var column = function ( colIdx, name, operator, matched ) {\n                    var size, i, ien;\n\n                    if ( ! operator ) {\n                        columns[ colIdx ].includeIn.push( name );\n                    }\n                    else if ( operator === 'max-' ) {\n                        // Add this breakpoint and all smaller\n                        size = that._find( name ).width;\n\n                        for ( i=0, ien=breakpoints.length ; i<ien ; i++ ) {\n                            if ( breakpoints[i].width <= size ) {\n                                add( colIdx, breakpoints[i].name );\n                            }\n                        }\n                    }\n                    else if ( operator === 'min-' ) {\n                        // Add this breakpoint and all larger\n                        size = that._find( name ).width;\n\n                        for ( i=0, ien=breakpoints.length ; i<ien ; i++ ) {\n                            if ( breakpoints[i].width >= size ) {\n                                add( colIdx, breakpoints[i].name );\n                            }\n                        }\n                    }\n                    else if ( operator === 'not-' ) {\n                        // Add all but this breakpoint (xxx need extra information)\n\n                        for ( i=0, ien=breakpoints.length ; i<ien ; i++ ) {\n                            if ( breakpoints[i].name.indexOf( matched ) === -1 ) {\n                                add( colIdx, breakpoints[i].name );\n                            }\n                        }\n                    }\n                };\n\n                // Loop over each column and determine if it has a responsive control\n                // class\n                columns.each( function ( col, i ) {\n                    var classNames = col.className.split(' ');\n                    var hasClass = false;\n\n                    // Split the class name up so multiple rules can be applied if needed\n                    for ( var k=0, ken=classNames.length ; k<ken ; k++ ) {\n                        var className = $.trim( classNames[k] );\n\n                        if ( className === 'all' ) {\n                            // Include in all\n                            hasClass = true;\n                            col.includeIn = $.map( breakpoints, function (a) {\n                                return a.name;\n                            } );\n                            return;\n                        }\n                        else if ( className === 'none' || className === 'never' ) {\n                            // Include in none (default) and no auto\n                            hasClass = true;\n                            return;\n                        }\n                        else if ( className === 'control' ) {\n                            // Special column that is only visible, when one of the other\n                            // columns is hidden. This is used for the details control\n                            hasClass = true;\n                            col.control = true;\n                            return;\n                        }\n\n                        $.each( breakpoints, function ( j, breakpoint ) {\n                            // Does this column have a class that matches this breakpoint?\n                            var brokenPoint = breakpoint.name.split('-');\n                            var re = new RegExp( '(min\\\\-|max\\\\-|not\\\\-)?('+brokenPoint[0]+')(\\\\-[_a-zA-Z0-9])?' );\n                            var match = className.match( re );\n\n                            if ( match ) {\n                                hasClass = true;\n\n                                if ( match[2] === brokenPoint[0] && match[3] === '-'+brokenPoint[1] ) {\n                                    // Class name matches breakpoint name fully\n                                    column( i, breakpoint.name, match[1], match[2]+match[3] );\n                                }\n                                else if ( match[2] === brokenPoint[0] && ! match[3] ) {\n                                    // Class name matched primary breakpoint name with no qualifier\n                                    column( i, breakpoint.name, match[1], match[2] );\n                                }\n                            }\n                        } );\n                    }\n\n                    // If there was no control class, then automatic sizing is used\n                    if ( ! hasClass ) {\n                        col.auto = true;\n                    }\n                } );\n\n                this.s.columns = columns;\n            },\n\n\n            /**\n             * Initialisation for the details handler\n             *\n             * @private\n             */\n            _detailsInit: function ()\n            {\n                var that    = this;\n                var dt      = this.s.dt;\n                var details = this.c.details;\n\n                // The inline type always uses the first child as the target\n                if ( details.type === 'inline' ) {\n                    details.target = 'td:first-child';\n                }\n\n                // type.target can be a string jQuery selector or a column index\n                var target   = details.target;\n                var selector = typeof target === 'string' ? target : 'td';\n\n                // Click handler to show / hide the details rows when they are available\n                $( dt.table().body() ).on( 'click', selector, function (e) {\n                    // If the table is not collapsed (i.e. there is no hidden columns)\n                    // then take no action\n                    if ( ! $(dt.table().node()).hasClass('collapsed' ) ) {\n                        return;\n                    }\n\n                    // Check that the row is actually a DataTable's controlled node\n                    if ( ! dt.row( $(this).closest('tr') ).length ) {\n                        return;\n                    }\n\n                    // For column index, we determine if we should act or not in the\n                    // handler - otherwise it is already okay\n                    if ( typeof target === 'number' ) {\n                        var targetIdx = target < 0 ?\n                            dt.columns().eq(0).length + target :\n                            target;\n\n                        if ( dt.cell( this ).index().column !== targetIdx ) {\n                            return;\n                        }\n                    }\n\n                    // $().closest() includes itself in its check\n                    var row = dt.row( $(this).closest('tr') );\n\n                    if ( row.child.isShown() ) {\n                        row.child( false );\n                        $( row.node() ).removeClass( 'parent' );\n                    }\n                    else {\n                        var info = that.c.details.renderer( dt, row[0] );\n                        row.child( info, 'child' ).show();\n                        $( row.node() ).addClass( 'parent' );\n                    }\n                } );\n            },\n\n\n            /**\n             * Update the child rows in the table whenever the column visibility changes\n             *\n             * @private\n             */\n            _detailsVis: function ()\n            {\n                var that = this;\n                var dt = this.s.dt;\n\n                // Find how many columns are hidden\n                var hiddenColumns = dt.columns().indexes().filter( function ( idx ) {\n                    var col = dt.column( idx );\n\n                    if ( col.visible() ) {\n                        return null;\n                    }\n\n                    // Only counts as hidden if it doesn't have the `never` class\n                    return $( col.header() ).hasClass( 'never' ) ? null : idx;\n                } );\n                var haveHidden = true;\n\n                if ( hiddenColumns.length === 0 || ( hiddenColumns.length === 1 && this.s.columns[ hiddenColumns[0] ].control ) ) {\n                    haveHidden = false;\n                }\n\n                if ( haveHidden ) {\n                    // Got hidden columns\n                    $( dt.table().node() ).addClass('collapsed');\n\n                    // Show all existing child rows\n                    dt.rows().eq(0).each( function (idx) {\n                        var row = dt.row( idx );\n\n                        if ( row.child() ) {\n                            var info = that.c.details.renderer( dt, row[0] );\n\n                            // The renderer can return false to have no child row\n                            if ( info === false ) {\n                                row.child.hide();\n                            }\n                            else {\n                                row.child( info, 'child' ).show();\n                            }\n                        }\n                    } );\n                }\n                else {\n                    // No hidden columns\n                    $( dt.table().node() ).removeClass('collapsed');\n\n                    // Hide all existing child rows\n                    dt.rows().eq(0).each( function (idx) {\n                        dt.row( idx ).child.hide();\n                    } );\n                }\n            },\n\n\n            /**\n             * Find a breakpoint object from a name\n             * @param  {string} name Breakpoint name to find\n             * @return {object}      Breakpoint description object\n             */\n            _find: function ( name )\n            {\n                var breakpoints = this.c.breakpoints;\n\n                for ( var i=0, ien=breakpoints.length ; i<ien ; i++ ) {\n                    if ( breakpoints[i].name === name ) {\n                        return breakpoints[i];\n                    }\n                }\n            },\n\n\n            /**\n             * Alter the table display for a resized viewport. This involves first\n             * determining what breakpoint the window currently is in, getting the\n             * column visibilities to apply and then setting them.\n             *\n             * @private\n             */\n            _resize: function ()\n            {\n                var dt = this.s.dt;\n                var width = $(window).width();\n                var breakpoints = this.c.breakpoints;\n                var breakpoint = breakpoints[0].name;\n\n                // Determine what breakpoint we are currently at\n                for ( var i=breakpoints.length-1 ; i>=0 ; i-- ) {\n                    if ( width <= breakpoints[i].width ) {\n                        breakpoint = breakpoints[i].name;\n                        break;\n                    }\n                }\n\n                // Show the columns for that break point\n                var columns = this._columnsVisiblity( breakpoint );\n\n                dt.columns().eq(0).each( function ( colIdx, i ) {\n                    dt.column( colIdx ).visible( columns[i] );\n                } );\n            },\n\n\n            /**\n             * Determine the width of each column in the table so the auto column hiding\n             * has that information to work with. This method is never going to be 100%\n             * perfect since column widths can change slightly per page, but without\n             * seriously compromising performance this is quite effective.\n             *\n             * @private\n             */\n            _resizeAuto: function ()\n            {\n                var dt = this.s.dt;\n                var columns = this.s.columns;\n\n                // Are we allowed to do auto sizing?\n                if ( ! this.c.auto ) {\n                    return;\n                }\n\n                // Are there any columns that actually need auto-sizing, or do they all\n                // have classes defined\n                if ( $.inArray( true, $.map( columns, function (c) { return c.auto; } ) ) === -1 ) {\n                    return;\n                }\n\n                // Clone the table with the current data in it\n                var tableWidth   = dt.table().node().offsetWidth;\n                var columnWidths = dt.columns;\n                var clonedTable  = dt.table().node().cloneNode( false );\n                var clonedHeader = $( dt.table().header().cloneNode( false ) ).appendTo( clonedTable );\n                var clonedBody   = $( dt.table().body().cloneNode( false ) ).appendTo( clonedTable );\n\n                // This is a bit slow, but we need to get a clone of each row that\n                // includes all columns. As such, try to do this as little as possible.\n                dt.rows( { page: 'current' } ).indexes().flatten().each( function ( idx ) {\n                    var clone = dt.row( idx ).node().cloneNode( true );\n\n                    if ( dt.columns( ':hidden' ).flatten().length ) {\n                        $(clone).append( dt.cells( idx, ':hidden' ).nodes().to$().clone() );\n                    }\n\n                    $(clone).appendTo( clonedBody );\n                } );\n\n                var cells        = dt.columns().header().to$().clone( false ).wrapAll('tr').appendTo( clonedHeader );\n                var inserted     = $('<div/>')\n                    .css( {\n                        width: 1,\n                        height: 1,\n                        overflow: 'hidden'\n                    } )\n                    .append( clonedTable )\n                    .insertBefore( dt.table().node() );\n\n                // The cloned header now contains the smallest that each column can be\n                dt.columns().eq(0).each( function ( idx ) {\n                    columns[idx].minWidth = cells[ idx ].offsetWidth || 0;\n                } );\n\n                inserted.remove();\n            }\n        };\n\n\n        /**\n         * List of default breakpoints. Each item in the array is an object with two\n         * properties:\n         *\n         * * `name` - the breakpoint name.\n         * * `width` - the breakpoint width\n         *\n         * @name Responsive.breakpoints\n         * @static\n         */\n        Responsive.breakpoints = [\n            { name: 'desktop',  width: Infinity },\n            { name: 'tablet-l', width: 1024 },\n            { name: 'tablet-p', width: 768 },\n            { name: 'mobile-l', width: 480 },\n            { name: 'mobile-p', width: 320 }\n        ];\n\n\n        /**\n         * Responsive default settings for initialisation\n         *\n         * @namespace\n         * @name Responsive.defaults\n         * @static\n         */\n        Responsive.defaults = {\n            /**\n             * List of breakpoints for the instance. Note that this means that each\n             * instance can have its own breakpoints. Additionally, the breakpoints\n             * cannot be changed once an instance has been creased.\n             *\n             * @type {Array}\n             * @default Takes the value of `Responsive.breakpoints`\n             */\n            breakpoints: Responsive.breakpoints,\n\n            /**\n             * Enable / disable auto hiding calculations. It can help to increase\n             * performance slightly if you disable this option, but all columns would\n             * need to have breakpoint classes assigned to them\n             *\n             * @type {Boolean}\n             * @default  `true`\n             */\n            auto: true,\n\n            /**\n             * Details control. If given as a string value, the `type` property of the\n             * default object is set to that value, and the defaults used for the rest\n             * of the object - this is for ease of implementation.\n             *\n             * The object consists of the following properties:\n             *\n             * * `renderer` - function that is called for display of the child row data.\n             *   The default function will show the data from the hidden columns\n             * * `target` - Used as the selector for what objects to attach the child\n             *   open / close to\n             * * `type` - `false` to disable the details display, `inline` or `column`\n             *   for the two control types\n             *\n             * @type {Object|string}\n             */\n            details: {\n                renderer: function ( api, rowIdx ) {\n                    var data = api.cells( rowIdx, ':hidden' ).eq(0).map( function ( cell ) {\n                        var header = $( api.column( cell.column ).header() );\n                        var idx = api.cell( cell ).index();\n\n                        if ( header.hasClass( 'control' ) || header.hasClass( 'never' ) ) {\n                            return '';\n                        }\n\n                        // Use a non-public DT API method to render the data for display\n                        // This needs to be updated when DT adds a suitable method for\n                        // this type of data retrieval\n                        var dtPrivate = api.settings()[0];\n                        var cellData = dtPrivate.oApi._fnGetCellData(\n                            dtPrivate, idx.row, idx.column, 'display'\n                        );\n\n                        return '<li data-dtr-index=\"'+idx.column+'\">'+\n                            '<span class=\"dtr-title\">'+\n                            header.text()+':'+\n                            '</span> '+\n                            '<span class=\"dtr-data\">'+\n                            cellData+\n                            '</span>'+\n                            '</li>';\n                    } ).toArray().join('');\n\n                    return data ?\n                        $('<ul data-dtr-index=\"'+rowIdx+'\"/>').append( data ) :\n                        false;\n                },\n\n                target: 0,\n\n                type: 'inline'\n            }\n        };\n\n\n        /*\n         * API\n         */\n        var Api = $.fn.dataTable.Api;\n\n// Doesn't do anything - work around for a bug in DT... Not documented\n        Api.register( 'responsive()', function () {\n            return this;\n        } );\n\n        Api.register( 'responsive.recalc()', function () {\n            this.iterator( 'table', function ( ctx ) {\n                if ( ctx._responsive ) {\n                    ctx._responsive._resizeAuto();\n                    ctx._responsive._resize();\n                }\n            } );\n        } );\n\n        Api.register( 'responsive.index()', function ( li ) {\n            li = $(li);\n\n            return {\n                column: li.data('dtr-index'),\n                row:    li.parent().data('dtr-index')\n            };\n        } );\n\n\n        /**\n         * Version information\n         *\n         * @name Responsive.version\n         * @static\n         */\n        Responsive.version = '1.0.2';\n\n\n        $.fn.dataTable.Responsive = Responsive;\n        $.fn.DataTable.Responsive = Responsive;\n\n// Attach a listener to the document which listens for DataTables initialisation\n// events so we can automatically initialise\n        $(document).on( 'init.dt.dtr', function (e, settings, json) {\n            if ( $(settings.nTable).hasClass( 'responsive' ) ||\n                $(settings.nTable).hasClass( 'dt-responsive' ) ||\n                settings.oInit.responsive ||\n                DataTable.defaults.responsive\n                ) {\n                var init = settings.oInit.responsive;\n\n                if ( init !== false ) {\n                    new Responsive( settings, $.isPlainObject( init ) ? init : {}  );\n                }\n            }\n        } );\n\n        return Responsive;\n    }; // /factory\n\n\n// Define as an AMD module if possible\n    if ( typeof define === 'function' && define.amd ) {\n        define( ['jquery', 'datatables'], factory );\n    }\n    else if ( typeof exports === 'object' ) {\n        // Node/CommonJS\n        factory( require('jquery'), require('datatables') );\n    }\n    else if ( jQuery && !jQuery.fn.dataTable.Responsive ) {\n        // Otherwise simply initialise as normal, stopping multiple evaluation\n        factory( jQuery, jQuery.fn.dataTable );\n    }\n\n\n})(window, document);\n\n"
  },
  {
    "path": "public/admin/js/plugins/dataTables/jquery.dataTables.js",
    "content": "/*! DataTables 1.10.4\n * ©2008-2014 SpryMedia Ltd - datatables.net/license\n */\n\n/**\n * @summary     DataTables\n * @description Paginate, search and order HTML tables\n * @version     1.10.4\n * @file        jquery.dataTables.js\n * @author      SpryMedia Ltd (www.sprymedia.co.uk)\n * @contact     www.sprymedia.co.uk/contact\n * @copyright   Copyright 2008-2014 SpryMedia Ltd.\n *\n * This source file is free software, available under the following license:\n *   MIT license - http://datatables.net/license\n *\n * This source file is distributed in the hope that it will be useful, but\n * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n * or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.\n *\n * For details please refer to: http://www.datatables.net\n */\n\n/*jslint evil: true, undef: true, browser: true */\n/*globals $,require,jQuery,define,_selector_run,_selector_opts,_selector_first,_selector_row_indexes,_ext,_Api,_api_register,_api_registerPlural,_re_new_lines,_re_html,_re_formatted_numeric,_re_escape_regex,_empty,_intVal,_numToDecimal,_isNumber,_isHtml,_htmlNumeric,_pluck,_pluck_order,_range,_stripHtml,_unique,_fnBuildAjax,_fnAjaxUpdate,_fnAjaxParameters,_fnAjaxUpdateDraw,_fnAjaxDataSrc,_fnAddColumn,_fnColumnOptions,_fnAdjustColumnSizing,_fnVisibleToColumnIndex,_fnColumnIndexToVisible,_fnVisbleColumns,_fnGetColumns,_fnColumnTypes,_fnApplyColumnDefs,_fnHungarianMap,_fnCamelToHungarian,_fnLanguageCompat,_fnBrowserDetect,_fnAddData,_fnAddTr,_fnNodeToDataIndex,_fnNodeToColumnIndex,_fnGetCellData,_fnSetCellData,_fnSplitObjNotation,_fnGetObjectDataFn,_fnSetObjectDataFn,_fnGetDataMaster,_fnClearTable,_fnDeleteIndex,_fnInvalidate,_fnGetRowElements,_fnCreateTr,_fnBuildHead,_fnDrawHead,_fnDraw,_fnReDraw,_fnAddOptionsHtml,_fnDetectHeader,_fnGetUniqueThs,_fnFeatureHtmlFilter,_fnFilterComplete,_fnFilterCustom,_fnFilterColumn,_fnFilter,_fnFilterCreateSearch,_fnEscapeRegex,_fnFilterData,_fnFeatureHtmlInfo,_fnUpdateInfo,_fnInfoMacros,_fnInitialise,_fnInitComplete,_fnLengthChange,_fnFeatureHtmlLength,_fnFeatureHtmlPaginate,_fnPageChange,_fnFeatureHtmlProcessing,_fnProcessingDisplay,_fnFeatureHtmlTable,_fnScrollDraw,_fnApplyToChildren,_fnCalculateColumnWidths,_fnThrottle,_fnConvertToWidth,_fnScrollingWidthAdjust,_fnGetWidestNode,_fnGetMaxLenString,_fnStringToCss,_fnScrollBarWidth,_fnSortFlatten,_fnSort,_fnSortAria,_fnSortListener,_fnSortAttachListener,_fnSortingClasses,_fnSortData,_fnSaveState,_fnLoadState,_fnSettingsFromNode,_fnLog,_fnMap,_fnBindAction,_fnCallbackReg,_fnCallbackFire,_fnLengthOverflow,_fnRenderer,_fnDataSource,_fnRowAttributes*/\n\n(/** @lends <global> */function( window, document, undefined ) {\n\n(function( factory ) {\n\t\"use strict\";\n\n\tif ( typeof define === 'function' && define.amd ) {\n\t\t// Define as an AMD module if possible\n\t\tdefine( 'datatables', ['jquery'], factory );\n\t}\n    else if ( typeof exports === 'object' ) {\n        // Node/CommonJS\n        factory( require( 'jquery' ) );\n    }\n\telse if ( jQuery && !jQuery.fn.dataTable ) {\n\t\t// Define using browser globals otherwise\n\t\t// Prevent multiple instantiations if the script is loaded twice\n\t\tfactory( jQuery );\n\t}\n}\n(/** @lends <global> */function( $ ) {\n\t\"use strict\";\n\n\t/**\n\t * DataTables is a plug-in for the jQuery Javascript library. It is a highly\n\t * flexible tool, based upon the foundations of progressive enhancement,\n\t * which will add advanced interaction controls to any HTML table. For a\n\t * full list of features please refer to\n\t * [DataTables.net](href=\"http://datatables.net).\n\t *\n\t * Note that the `DataTable` object is not a global variable but is aliased\n\t * to `jQuery.fn.DataTable` and `jQuery.fn.dataTable` through which it may\n\t * be  accessed.\n\t *\n\t *  @class\n\t *  @param {object} [init={}] Configuration object for DataTables. Options\n\t *    are defined by {@link DataTable.defaults}\n\t *  @requires jQuery 1.7+\n\t *\n\t *  @example\n\t *    // Basic initialisation\n\t *    $(document).ready( function {\n\t *      $('#example').dataTable();\n\t *    } );\n\t *\n\t *  @example\n\t *    // Initialisation with configuration options - in this case, disable\n\t *    // pagination and sorting.\n\t *    $(document).ready( function {\n\t *      $('#example').dataTable( {\n\t *        \"paginate\": false,\n\t *        \"sort\": false\n\t *      } );\n\t *    } );\n\t */\n\tvar DataTable;\n\n\t\n\t/*\n\t * It is useful to have variables which are scoped locally so only the\n\t * DataTables functions can access them and they don't leak into global space.\n\t * At the same time these functions are often useful over multiple files in the\n\t * core and API, so we list, or at least document, all variables which are used\n\t * by DataTables as private variables here. This also ensures that there is no\n\t * clashing of variable names and that they can easily referenced for reuse.\n\t */\n\t\n\t\n\t// Defined else where\n\t//  _selector_run\n\t//  _selector_opts\n\t//  _selector_first\n\t//  _selector_row_indexes\n\t\n\tvar _ext; // DataTable.ext\n\tvar _Api; // DataTable.Api\n\tvar _api_register; // DataTable.Api.register\n\tvar _api_registerPlural; // DataTable.Api.registerPlural\n\t\n\tvar _re_dic = {};\n\tvar _re_new_lines = /[\\r\\n]/g;\n\tvar _re_html = /<.*?>/g;\n\tvar _re_date_start = /^[\\w\\+\\-]/;\n\tvar _re_date_end = /[\\w\\+\\-]$/;\n\t\n\t// Escape regular expression special characters\n\tvar _re_escape_regex = new RegExp( '(\\\\' + [ '/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\\\', '$', '^', '-' ].join('|\\\\') + ')', 'g' );\n\t\n\t// U+2009 is thin space and U+202F is narrow no-break space, both used in many\n\t// standards as thousands separators\n\tvar _re_formatted_numeric = /[',$£€¥%\\u2009\\u202F]/g;\n\t\n\t\n\tvar _empty = function ( d ) {\n\t\treturn !d || d === true || d === '-' ? true : false;\n\t};\n\t\n\t\n\tvar _intVal = function ( s ) {\n\t\tvar integer = parseInt( s, 10 );\n\t\treturn !isNaN(integer) && isFinite(s) ? integer : null;\n\t};\n\t\n\t// Convert from a formatted number with characters other than `.` as the\n\t// decimal place, to a Javascript number\n\tvar _numToDecimal = function ( num, decimalPoint ) {\n\t\t// Cache created regular expressions for speed as this function is called often\n\t\tif ( ! _re_dic[ decimalPoint ] ) {\n\t\t\t_re_dic[ decimalPoint ] = new RegExp( _fnEscapeRegex( decimalPoint ), 'g' );\n\t\t}\n\t\treturn typeof num === 'string' && decimalPoint !== '.' ?\n\t\t\tnum.replace( /\\./g, '' ).replace( _re_dic[ decimalPoint ], '.' ) :\n\t\t\tnum;\n\t};\n\t\n\t\n\tvar _isNumber = function ( d, decimalPoint, formatted ) {\n\t\tvar strType = typeof d === 'string';\n\t\n\t\tif ( decimalPoint && strType ) {\n\t\t\td = _numToDecimal( d, decimalPoint );\n\t\t}\n\t\n\t\tif ( formatted && strType ) {\n\t\t\td = d.replace( _re_formatted_numeric, '' );\n\t\t}\n\t\n\t\treturn _empty( d ) || (!isNaN( parseFloat(d) ) && isFinite( d ));\n\t};\n\t\n\t\n\t// A string without HTML in it can be considered to be HTML still\n\tvar _isHtml = function ( d ) {\n\t\treturn _empty( d ) || typeof d === 'string';\n\t};\n\t\n\t\n\tvar _htmlNumeric = function ( d, decimalPoint, formatted ) {\n\t\tif ( _empty( d ) ) {\n\t\t\treturn true;\n\t\t}\n\t\n\t\tvar html = _isHtml( d );\n\t\treturn ! html ?\n\t\t\tnull :\n\t\t\t_isNumber( _stripHtml( d ), decimalPoint, formatted ) ?\n\t\t\t\ttrue :\n\t\t\t\tnull;\n\t};\n\t\n\t\n\tvar _pluck = function ( a, prop, prop2 ) {\n\t\tvar out = [];\n\t\tvar i=0, ien=a.length;\n\t\n\t\t// Could have the test in the loop for slightly smaller code, but speed\n\t\t// is essential here\n\t\tif ( prop2 !== undefined ) {\n\t\t\tfor ( ; i<ien ; i++ ) {\n\t\t\t\tif ( a[i] && a[i][ prop ] ) {\n\t\t\t\t\tout.push( a[i][ prop ][ prop2 ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tfor ( ; i<ien ; i++ ) {\n\t\t\t\tif ( a[i] ) {\n\t\t\t\t\tout.push( a[i][ prop ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\treturn out;\n\t};\n\t\n\t\n\t// Basically the same as _pluck, but rather than looping over `a` we use `order`\n\t// as the indexes to pick from `a`\n\tvar _pluck_order = function ( a, order, prop, prop2 )\n\t{\n\t\tvar out = [];\n\t\tvar i=0, ien=order.length;\n\t\n\t\t// Could have the test in the loop for slightly smaller code, but speed\n\t\t// is essential here\n\t\tif ( prop2 !== undefined ) {\n\t\t\tfor ( ; i<ien ; i++ ) {\n\t\t\t\tif ( a[ order[i] ][ prop ] ) {\n\t\t\t\t\tout.push( a[ order[i] ][ prop ][ prop2 ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tfor ( ; i<ien ; i++ ) {\n\t\t\t\tout.push( a[ order[i] ][ prop ] );\n\t\t\t}\n\t\t}\n\t\n\t\treturn out;\n\t};\n\t\n\t\n\tvar _range = function ( len, start )\n\t{\n\t\tvar out = [];\n\t\tvar end;\n\t\n\t\tif ( start === undefined ) {\n\t\t\tstart = 0;\n\t\t\tend = len;\n\t\t}\n\t\telse {\n\t\t\tend = start;\n\t\t\tstart = len;\n\t\t}\n\t\n\t\tfor ( var i=start ; i<end ; i++ ) {\n\t\t\tout.push( i );\n\t\t}\n\t\n\t\treturn out;\n\t};\n\t\n\t\n\tvar _removeEmpty = function ( a )\n\t{\n\t\tvar out = [];\n\t\n\t\tfor ( var i=0, ien=a.length ; i<ien ; i++ ) {\n\t\t\tif ( a[i] ) { // careful - will remove all falsy values!\n\t\t\t\tout.push( a[i] );\n\t\t\t}\n\t\t}\n\t\n\t\treturn out;\n\t};\n\t\n\t\n\tvar _stripHtml = function ( d ) {\n\t\treturn d.replace( _re_html, '' );\n\t};\n\t\n\t\n\t/**\n\t * Find the unique elements in a source array.\n\t *\n\t * @param  {array} src Source array\n\t * @return {array} Array of unique items\n\t * @ignore\n\t */\n\tvar _unique = function ( src )\n\t{\n\t\t// A faster unique method is to use object keys to identify used values,\n\t\t// but this doesn't work with arrays or objects, which we must also\n\t\t// consider. See jsperf.com/compare-array-unique-versions/4 for more\n\t\t// information.\n\t\tvar\n\t\t\tout = [],\n\t\t\tval,\n\t\t\ti, ien=src.length,\n\t\t\tj, k=0;\n\t\n\t\tagain: for ( i=0 ; i<ien ; i++ ) {\n\t\t\tval = src[i];\n\t\n\t\t\tfor ( j=0 ; j<k ; j++ ) {\n\t\t\t\tif ( out[j] === val ) {\n\t\t\t\t\tcontinue again;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tout.push( val );\n\t\t\tk++;\n\t\t}\n\t\n\t\treturn out;\n\t};\n\t\n\t\n\t\n\t/**\n\t * Create a mapping object that allows camel case parameters to be looked up\n\t * for their Hungarian counterparts. The mapping is stored in a private\n\t * parameter called `_hungarianMap` which can be accessed on the source object.\n\t *  @param {object} o\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnHungarianMap ( o )\n\t{\n\t\tvar\n\t\t\thungarian = 'a aa ai ao as b fn i m o s ',\n\t\t\tmatch,\n\t\t\tnewKey,\n\t\t\tmap = {};\n\t\n\t\t$.each( o, function (key, val) {\n\t\t\tmatch = key.match(/^([^A-Z]+?)([A-Z])/);\n\t\n\t\t\tif ( match && hungarian.indexOf(match[1]+' ') !== -1 )\n\t\t\t{\n\t\t\t\tnewKey = key.replace( match[0], match[2].toLowerCase() );\n\t\t\t\tmap[ newKey ] = key;\n\t\n\t\t\t\tif ( match[1] === 'o' )\n\t\t\t\t{\n\t\t\t\t\t_fnHungarianMap( o[key] );\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t\n\t\to._hungarianMap = map;\n\t}\n\t\n\t\n\t/**\n\t * Convert from camel case parameters to Hungarian, based on a Hungarian map\n\t * created by _fnHungarianMap.\n\t *  @param {object} src The model object which holds all parameters that can be\n\t *    mapped.\n\t *  @param {object} user The object to convert from camel case to Hungarian.\n\t *  @param {boolean} force When set to `true`, properties which already have a\n\t *    Hungarian value in the `user` object will be overwritten. Otherwise they\n\t *    won't be.\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnCamelToHungarian ( src, user, force )\n\t{\n\t\tif ( ! src._hungarianMap ) {\n\t\t\t_fnHungarianMap( src );\n\t\t}\n\t\n\t\tvar hungarianKey;\n\t\n\t\t$.each( user, function (key, val) {\n\t\t\thungarianKey = src._hungarianMap[ key ];\n\t\n\t\t\tif ( hungarianKey !== undefined && (force || user[hungarianKey] === undefined) )\n\t\t\t{\n\t\t\t\t// For objects, we need to buzz down into the object to copy parameters\n\t\t\t\tif ( hungarianKey.charAt(0) === 'o' )\n\t\t\t\t{\n\t\t\t\t\t// Copy the camelCase options over to the hungarian\n\t\t\t\t\tif ( ! user[ hungarianKey ] ) {\n\t\t\t\t\t\tuser[ hungarianKey ] = {};\n\t\t\t\t\t}\n\t\t\t\t\t$.extend( true, user[hungarianKey], user[key] );\n\t\n\t\t\t\t\t_fnCamelToHungarian( src[hungarianKey], user[hungarianKey], force );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tuser[hungarianKey] = user[ key ];\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t}\n\t\n\t\n\t/**\n\t * Language compatibility - when certain options are given, and others aren't, we\n\t * need to duplicate the values over, in order to provide backwards compatibility\n\t * with older language files.\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnLanguageCompat( lang )\n\t{\n\t\tvar defaults = DataTable.defaults.oLanguage;\n\t\tvar zeroRecords = lang.sZeroRecords;\n\t\n\t\t/* Backwards compatibility - if there is no sEmptyTable given, then use the same as\n\t\t * sZeroRecords - assuming that is given.\n\t\t */\n\t\tif ( ! lang.sEmptyTable && zeroRecords &&\n\t\t\tdefaults.sEmptyTable === \"No data available in table\" )\n\t\t{\n\t\t\t_fnMap( lang, lang, 'sZeroRecords', 'sEmptyTable' );\n\t\t}\n\t\n\t\t/* Likewise with loading records */\n\t\tif ( ! lang.sLoadingRecords && zeroRecords &&\n\t\t\tdefaults.sLoadingRecords === \"Loading...\" )\n\t\t{\n\t\t\t_fnMap( lang, lang, 'sZeroRecords', 'sLoadingRecords' );\n\t\t}\n\t\n\t\t// Old parameter name of the thousands separator mapped onto the new\n\t\tif ( lang.sInfoThousands ) {\n\t\t\tlang.sThousands = lang.sInfoThousands;\n\t\t}\n\t\n\t\tvar decimal = lang.sDecimal;\n\t\tif ( decimal ) {\n\t\t\t_addNumericSort( decimal );\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Map one parameter onto another\n\t *  @param {object} o Object to map\n\t *  @param {*} knew The new parameter name\n\t *  @param {*} old The old parameter name\n\t */\n\tvar _fnCompatMap = function ( o, knew, old ) {\n\t\tif ( o[ knew ] !== undefined ) {\n\t\t\to[ old ] = o[ knew ];\n\t\t}\n\t};\n\t\n\t\n\t/**\n\t * Provide backwards compatibility for the main DT options. Note that the new\n\t * options are mapped onto the old parameters, so this is an external interface\n\t * change only.\n\t *  @param {object} init Object to map\n\t */\n\tfunction _fnCompatOpts ( init )\n\t{\n\t\t_fnCompatMap( init, 'ordering',      'bSort' );\n\t\t_fnCompatMap( init, 'orderMulti',    'bSortMulti' );\n\t\t_fnCompatMap( init, 'orderClasses',  'bSortClasses' );\n\t\t_fnCompatMap( init, 'orderCellsTop', 'bSortCellsTop' );\n\t\t_fnCompatMap( init, 'order',         'aaSorting' );\n\t\t_fnCompatMap( init, 'orderFixed',    'aaSortingFixed' );\n\t\t_fnCompatMap( init, 'paging',        'bPaginate' );\n\t\t_fnCompatMap( init, 'pagingType',    'sPaginationType' );\n\t\t_fnCompatMap( init, 'pageLength',    'iDisplayLength' );\n\t\t_fnCompatMap( init, 'searching',     'bFilter' );\n\t\n\t\t// Column search objects are in an array, so it needs to be converted\n\t\t// element by element\n\t\tvar searchCols = init.aoSearchCols;\n\t\n\t\tif ( searchCols ) {\n\t\t\tfor ( var i=0, ien=searchCols.length ; i<ien ; i++ ) {\n\t\t\t\tif ( searchCols[i] ) {\n\t\t\t\t\t_fnCamelToHungarian( DataTable.models.oSearch, searchCols[i] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Provide backwards compatibility for column options. Note that the new options\n\t * are mapped onto the old parameters, so this is an external interface change\n\t * only.\n\t *  @param {object} init Object to map\n\t */\n\tfunction _fnCompatCols ( init )\n\t{\n\t\t_fnCompatMap( init, 'orderable',     'bSortable' );\n\t\t_fnCompatMap( init, 'orderData',     'aDataSort' );\n\t\t_fnCompatMap( init, 'orderSequence', 'asSorting' );\n\t\t_fnCompatMap( init, 'orderDataType', 'sortDataType' );\n\t}\n\t\n\t\n\t/**\n\t * Browser feature detection for capabilities, quirks\n\t *  @param {object} settings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnBrowserDetect( settings )\n\t{\n\t\tvar browser = settings.oBrowser;\n\t\n\t\t// Scrolling feature / quirks detection\n\t\tvar n = $('<div/>')\n\t\t\t.css( {\n\t\t\t\tposition: 'absolute',\n\t\t\t\ttop: 0,\n\t\t\t\tleft: 0,\n\t\t\t\theight: 1,\n\t\t\t\twidth: 1,\n\t\t\t\toverflow: 'hidden'\n\t\t\t} )\n\t\t\t.append(\n\t\t\t\t$('<div/>')\n\t\t\t\t\t.css( {\n\t\t\t\t\t\tposition: 'absolute',\n\t\t\t\t\t\ttop: 1,\n\t\t\t\t\t\tleft: 1,\n\t\t\t\t\t\twidth: 100,\n\t\t\t\t\t\toverflow: 'scroll'\n\t\t\t\t\t} )\n\t\t\t\t\t.append(\n\t\t\t\t\t\t$('<div class=\"test\"/>')\n\t\t\t\t\t\t\t.css( {\n\t\t\t\t\t\t\t\twidth: '100%',\n\t\t\t\t\t\t\t\theight: 10\n\t\t\t\t\t\t\t} )\n\t\t\t\t\t)\n\t\t\t)\n\t\t\t.appendTo( 'body' );\n\t\n\t\tvar test = n.find('.test');\n\t\n\t\t// IE6/7 will oversize a width 100% element inside a scrolling element, to\n\t\t// include the width of the scrollbar, while other browsers ensure the inner\n\t\t// element is contained without forcing scrolling\n\t\tbrowser.bScrollOversize = test[0].offsetWidth === 100;\n\t\n\t\t// In rtl text layout, some browsers (most, but not all) will place the\n\t\t// scrollbar on the left, rather than the right.\n\t\tbrowser.bScrollbarLeft = test.offset().left !== 1;\n\t\n\t\tn.remove();\n\t}\n\t\n\t\n\t/**\n\t * Array.prototype reduce[Right] method, used for browsers which don't support\n\t * JS 1.6. Done this way to reduce code size, since we iterate either way\n\t *  @param {object} settings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnReduce ( that, fn, init, start, end, inc )\n\t{\n\t\tvar\n\t\t\ti = start,\n\t\t\tvalue,\n\t\t\tisSet = false;\n\t\n\t\tif ( init !== undefined ) {\n\t\t\tvalue = init;\n\t\t\tisSet = true;\n\t\t}\n\t\n\t\twhile ( i !== end ) {\n\t\t\tif ( ! that.hasOwnProperty(i) ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\n\t\t\tvalue = isSet ?\n\t\t\t\tfn( value, that[i], i, that ) :\n\t\t\t\tthat[i];\n\t\n\t\t\tisSet = true;\n\t\t\ti += inc;\n\t\t}\n\t\n\t\treturn value;\n\t}\n\t\n\t/**\n\t * Add a column to the list used for the table with default values\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {node} nTh The th element for this column\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnAddColumn( oSettings, nTh )\n\t{\n\t\t// Add column to aoColumns array\n\t\tvar oDefaults = DataTable.defaults.column;\n\t\tvar iCol = oSettings.aoColumns.length;\n\t\tvar oCol = $.extend( {}, DataTable.models.oColumn, oDefaults, {\n\t\t\t\"nTh\": nTh ? nTh : document.createElement('th'),\n\t\t\t\"sTitle\":    oDefaults.sTitle    ? oDefaults.sTitle    : nTh ? nTh.innerHTML : '',\n\t\t\t\"aDataSort\": oDefaults.aDataSort ? oDefaults.aDataSort : [iCol],\n\t\t\t\"mData\": oDefaults.mData ? oDefaults.mData : iCol,\n\t\t\tidx: iCol\n\t\t} );\n\t\toSettings.aoColumns.push( oCol );\n\t\n\t\t// Add search object for column specific search. Note that the `searchCols[ iCol ]`\n\t\t// passed into extend can be undefined. This allows the user to give a default\n\t\t// with only some of the parameters defined, and also not give a default\n\t\tvar searchCols = oSettings.aoPreSearchCols;\n\t\tsearchCols[ iCol ] = $.extend( {}, DataTable.models.oSearch, searchCols[ iCol ] );\n\t\n\t\t// Use the default column options function to initialise classes etc\n\t\t_fnColumnOptions( oSettings, iCol, null );\n\t}\n\t\n\t\n\t/**\n\t * Apply options for a column\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {int} iCol column index to consider\n\t *  @param {object} oOptions object with sType, bVisible and bSearchable etc\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnColumnOptions( oSettings, iCol, oOptions )\n\t{\n\t\tvar oCol = oSettings.aoColumns[ iCol ];\n\t\tvar oClasses = oSettings.oClasses;\n\t\tvar th = $(oCol.nTh);\n\t\n\t\t// Try to get width information from the DOM. We can't get it from CSS\n\t\t// as we'd need to parse the CSS stylesheet. `width` option can override\n\t\tif ( ! oCol.sWidthOrig ) {\n\t\t\t// Width attribute\n\t\t\toCol.sWidthOrig = th.attr('width') || null;\n\t\n\t\t\t// Style attribute\n\t\t\tvar t = (th.attr('style') || '').match(/width:\\s*(\\d+[pxem%]+)/);\n\t\t\tif ( t ) {\n\t\t\t\toCol.sWidthOrig = t[1];\n\t\t\t}\n\t\t}\n\t\n\t\t/* User specified column options */\n\t\tif ( oOptions !== undefined && oOptions !== null )\n\t\t{\n\t\t\t// Backwards compatibility\n\t\t\t_fnCompatCols( oOptions );\n\t\n\t\t\t// Map camel case parameters to their Hungarian counterparts\n\t\t\t_fnCamelToHungarian( DataTable.defaults.column, oOptions );\n\t\n\t\t\t/* Backwards compatibility for mDataProp */\n\t\t\tif ( oOptions.mDataProp !== undefined && !oOptions.mData )\n\t\t\t{\n\t\t\t\toOptions.mData = oOptions.mDataProp;\n\t\t\t}\n\t\n\t\t\tif ( oOptions.sType )\n\t\t\t{\n\t\t\t\toCol._sManualType = oOptions.sType;\n\t\t\t}\n\t\n\t\t\t// `class` is a reserved word in Javascript, so we need to provide\n\t\t\t// the ability to use a valid name for the camel case input\n\t\t\tif ( oOptions.className && ! oOptions.sClass )\n\t\t\t{\n\t\t\t\toOptions.sClass = oOptions.className;\n\t\t\t}\n\t\n\t\t\t$.extend( oCol, oOptions );\n\t\t\t_fnMap( oCol, oOptions, \"sWidth\", \"sWidthOrig\" );\n\t\n\t\t\t/* iDataSort to be applied (backwards compatibility), but aDataSort will take\n\t\t\t * priority if defined\n\t\t\t */\n\t\t\tif ( typeof oOptions.iDataSort === 'number' )\n\t\t\t{\n\t\t\t\toCol.aDataSort = [ oOptions.iDataSort ];\n\t\t\t}\n\t\t\t_fnMap( oCol, oOptions, \"aDataSort\" );\n\t\t}\n\t\n\t\t/* Cache the data get and set functions for speed */\n\t\tvar mDataSrc = oCol.mData;\n\t\tvar mData = _fnGetObjectDataFn( mDataSrc );\n\t\tvar mRender = oCol.mRender ? _fnGetObjectDataFn( oCol.mRender ) : null;\n\t\n\t\tvar attrTest = function( src ) {\n\t\t\treturn typeof src === 'string' && src.indexOf('@') !== -1;\n\t\t};\n\t\toCol._bAttrSrc = $.isPlainObject( mDataSrc ) && (\n\t\t\tattrTest(mDataSrc.sort) || attrTest(mDataSrc.type) || attrTest(mDataSrc.filter)\n\t\t);\n\t\n\t\toCol.fnGetData = function (rowData, type, meta) {\n\t\t\tvar innerData = mData( rowData, type, undefined, meta );\n\t\n\t\t\treturn mRender && type ?\n\t\t\t\tmRender( innerData, type, rowData, meta ) :\n\t\t\t\tinnerData;\n\t\t};\n\t\toCol.fnSetData = function ( rowData, val, meta ) {\n\t\t\treturn _fnSetObjectDataFn( mDataSrc )( rowData, val, meta );\n\t\t};\n\t\n\t\t// Indicate if DataTables should read DOM data as an object or array\n\t\t// Used in _fnGetRowElements\n\t\tif ( typeof mDataSrc !== 'number' ) {\n\t\t\toSettings._rowReadObject = true;\n\t\t}\n\t\n\t\t/* Feature sorting overrides column specific when off */\n\t\tif ( !oSettings.oFeatures.bSort )\n\t\t{\n\t\t\toCol.bSortable = false;\n\t\t\tth.addClass( oClasses.sSortableNone ); // Have to add class here as order event isn't called\n\t\t}\n\t\n\t\t/* Check that the class assignment is correct for sorting */\n\t\tvar bAsc = $.inArray('asc', oCol.asSorting) !== -1;\n\t\tvar bDesc = $.inArray('desc', oCol.asSorting) !== -1;\n\t\tif ( !oCol.bSortable || (!bAsc && !bDesc) )\n\t\t{\n\t\t\toCol.sSortingClass = oClasses.sSortableNone;\n\t\t\toCol.sSortingClassJUI = \"\";\n\t\t}\n\t\telse if ( bAsc && !bDesc )\n\t\t{\n\t\t\toCol.sSortingClass = oClasses.sSortableAsc;\n\t\t\toCol.sSortingClassJUI = oClasses.sSortJUIAscAllowed;\n\t\t}\n\t\telse if ( !bAsc && bDesc )\n\t\t{\n\t\t\toCol.sSortingClass = oClasses.sSortableDesc;\n\t\t\toCol.sSortingClassJUI = oClasses.sSortJUIDescAllowed;\n\t\t}\n\t\telse\n\t\t{\n\t\t\toCol.sSortingClass = oClasses.sSortable;\n\t\t\toCol.sSortingClassJUI = oClasses.sSortJUI;\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Adjust the table column widths for new data. Note: you would probably want to\n\t * do a redraw after calling this function!\n\t *  @param {object} settings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnAdjustColumnSizing ( settings )\n\t{\n\t\t/* Not interested in doing column width calculation if auto-width is disabled */\n\t\tif ( settings.oFeatures.bAutoWidth !== false )\n\t\t{\n\t\t\tvar columns = settings.aoColumns;\n\t\n\t\t\t_fnCalculateColumnWidths( settings );\n\t\t\tfor ( var i=0 , iLen=columns.length ; i<iLen ; i++ )\n\t\t\t{\n\t\t\t\tcolumns[i].nTh.style.width = columns[i].sWidth;\n\t\t\t}\n\t\t}\n\t\n\t\tvar scroll = settings.oScroll;\n\t\tif ( scroll.sY !== '' || scroll.sX !== '')\n\t\t{\n\t\t\t_fnScrollDraw( settings );\n\t\t}\n\t\n\t\t_fnCallbackFire( settings, null, 'column-sizing', [settings] );\n\t}\n\t\n\t\n\t/**\n\t * Covert the index of a visible column to the index in the data array (take account\n\t * of hidden columns)\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {int} iMatch Visible column index to lookup\n\t *  @returns {int} i the data index\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnVisibleToColumnIndex( oSettings, iMatch )\n\t{\n\t\tvar aiVis = _fnGetColumns( oSettings, 'bVisible' );\n\t\n\t\treturn typeof aiVis[iMatch] === 'number' ?\n\t\t\taiVis[iMatch] :\n\t\t\tnull;\n\t}\n\t\n\t\n\t/**\n\t * Covert the index of an index in the data array and convert it to the visible\n\t *   column index (take account of hidden columns)\n\t *  @param {int} iMatch Column index to lookup\n\t *  @param {object} oSettings dataTables settings object\n\t *  @returns {int} i the data index\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnColumnIndexToVisible( oSettings, iMatch )\n\t{\n\t\tvar aiVis = _fnGetColumns( oSettings, 'bVisible' );\n\t\tvar iPos = $.inArray( iMatch, aiVis );\n\t\n\t\treturn iPos !== -1 ? iPos : null;\n\t}\n\t\n\t\n\t/**\n\t * Get the number of visible columns\n\t *  @param {object} oSettings dataTables settings object\n\t *  @returns {int} i the number of visible columns\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnVisbleColumns( oSettings )\n\t{\n\t\treturn _fnGetColumns( oSettings, 'bVisible' ).length;\n\t}\n\t\n\t\n\t/**\n\t * Get an array of column indexes that match a given property\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {string} sParam Parameter in aoColumns to look for - typically\n\t *    bVisible or bSearchable\n\t *  @returns {array} Array of indexes with matched properties\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnGetColumns( oSettings, sParam )\n\t{\n\t\tvar a = [];\n\t\n\t\t$.map( oSettings.aoColumns, function(val, i) {\n\t\t\tif ( val[sParam] ) {\n\t\t\t\ta.push( i );\n\t\t\t}\n\t\t} );\n\t\n\t\treturn a;\n\t}\n\t\n\t\n\t/**\n\t * Calculate the 'type' of a column\n\t *  @param {object} settings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnColumnTypes ( settings )\n\t{\n\t\tvar columns = settings.aoColumns;\n\t\tvar data = settings.aoData;\n\t\tvar types = DataTable.ext.type.detect;\n\t\tvar i, ien, j, jen, k, ken;\n\t\tvar col, cell, detectedType, cache;\n\t\n\t\t// For each column, spin over the \n\t\tfor ( i=0, ien=columns.length ; i<ien ; i++ ) {\n\t\t\tcol = columns[i];\n\t\t\tcache = [];\n\t\n\t\t\tif ( ! col.sType && col._sManualType ) {\n\t\t\t\tcol.sType = col._sManualType;\n\t\t\t}\n\t\t\telse if ( ! col.sType ) {\n\t\t\t\tfor ( j=0, jen=types.length ; j<jen ; j++ ) {\n\t\t\t\t\tfor ( k=0, ken=data.length ; k<ken ; k++ ) {\n\t\t\t\t\t\t// Use a cache array so we only need to get the type data\n\t\t\t\t\t\t// from the formatter once (when using multiple detectors)\n\t\t\t\t\t\tif ( cache[k] === undefined ) {\n\t\t\t\t\t\t\tcache[k] = _fnGetCellData( settings, k, i, 'type' );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tdetectedType = types[j]( cache[k], settings );\n\t\n\t\t\t\t\t\t// If null, then this type can't apply to this column, so\n\t\t\t\t\t\t// rather than testing all cells, break out. There is an\n\t\t\t\t\t\t// exception for the last type which is `html`. We need to\n\t\t\t\t\t\t// scan all rows since it is possible to mix string and HTML\n\t\t\t\t\t\t// types\n\t\t\t\t\t\tif ( ! detectedType && j !== types.length-1 ) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t// Only a single match is needed for html type since it is\n\t\t\t\t\t\t// bottom of the pile and very similar to string\n\t\t\t\t\t\tif ( detectedType === 'html' ) {\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// Type is valid for all data points in the column - use this\n\t\t\t\t\t// type\n\t\t\t\t\tif ( detectedType ) {\n\t\t\t\t\t\tcol.sType = detectedType;\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\n\t\t\t\t// Fall back - if no type was detected, always use string\n\t\t\t\tif ( ! col.sType ) {\n\t\t\t\t\tcol.sType = 'string';\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Take the column definitions and static columns arrays and calculate how\n\t * they relate to column indexes. The callback function will then apply the\n\t * definition found for a column to a suitable configuration object.\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {array} aoColDefs The aoColumnDefs array that is to be applied\n\t *  @param {array} aoCols The aoColumns array that defines columns individually\n\t *  @param {function} fn Callback function - takes two parameters, the calculated\n\t *    column index and the definition for that column.\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnApplyColumnDefs( oSettings, aoColDefs, aoCols, fn )\n\t{\n\t\tvar i, iLen, j, jLen, k, kLen, def;\n\t\tvar columns = oSettings.aoColumns;\n\t\n\t\t// Column definitions with aTargets\n\t\tif ( aoColDefs )\n\t\t{\n\t\t\t/* Loop over the definitions array - loop in reverse so first instance has priority */\n\t\t\tfor ( i=aoColDefs.length-1 ; i>=0 ; i-- )\n\t\t\t{\n\t\t\t\tdef = aoColDefs[i];\n\t\n\t\t\t\t/* Each definition can target multiple columns, as it is an array */\n\t\t\t\tvar aTargets = def.targets !== undefined ?\n\t\t\t\t\tdef.targets :\n\t\t\t\t\tdef.aTargets;\n\t\n\t\t\t\tif ( ! $.isArray( aTargets ) )\n\t\t\t\t{\n\t\t\t\t\taTargets = [ aTargets ];\n\t\t\t\t}\n\t\n\t\t\t\tfor ( j=0, jLen=aTargets.length ; j<jLen ; j++ )\n\t\t\t\t{\n\t\t\t\t\tif ( typeof aTargets[j] === 'number' && aTargets[j] >= 0 )\n\t\t\t\t\t{\n\t\t\t\t\t\t/* Add columns that we don't yet know about */\n\t\t\t\t\t\twhile( columns.length <= aTargets[j] )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t_fnAddColumn( oSettings );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t/* Integer, basic index */\n\t\t\t\t\t\tfn( aTargets[j], def );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( typeof aTargets[j] === 'number' && aTargets[j] < 0 )\n\t\t\t\t\t{\n\t\t\t\t\t\t/* Negative integer, right to left column counting */\n\t\t\t\t\t\tfn( columns.length+aTargets[j], def );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( typeof aTargets[j] === 'string' )\n\t\t\t\t\t{\n\t\t\t\t\t\t/* Class name matching on TH element */\n\t\t\t\t\t\tfor ( k=0, kLen=columns.length ; k<kLen ; k++ )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif ( aTargets[j] == \"_all\" ||\n\t\t\t\t\t\t\t     $(columns[k].nTh).hasClass( aTargets[j] ) )\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tfn( k, def );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\t// Statically defined columns array\n\t\tif ( aoCols )\n\t\t{\n\t\t\tfor ( i=0, iLen=aoCols.length ; i<iLen ; i++ )\n\t\t\t{\n\t\t\t\tfn( i, aoCols[i] );\n\t\t\t}\n\t\t}\n\t}\n\t\n\t/**\n\t * Add a data array to the table, creating DOM node etc. This is the parallel to\n\t * _fnGatherData, but for adding rows from a Javascript source, rather than a\n\t * DOM source.\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {array} aData data array to be added\n\t *  @param {node} [nTr] TR element to add to the table - optional. If not given,\n\t *    DataTables will create a row automatically\n\t *  @param {array} [anTds] Array of TD|TH elements for the row - must be given\n\t *    if nTr is.\n\t *  @returns {int} >=0 if successful (index of new aoData entry), -1 if failed\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnAddData ( oSettings, aDataIn, nTr, anTds )\n\t{\n\t\t/* Create the object for storing information about this new row */\n\t\tvar iRow = oSettings.aoData.length;\n\t\tvar oData = $.extend( true, {}, DataTable.models.oRow, {\n\t\t\tsrc: nTr ? 'dom' : 'data'\n\t\t} );\n\t\n\t\toData._aData = aDataIn;\n\t\toSettings.aoData.push( oData );\n\t\n\t\t/* Create the cells */\n\t\tvar nTd, sThisType;\n\t\tvar columns = oSettings.aoColumns;\n\t\tfor ( var i=0, iLen=columns.length ; i<iLen ; i++ )\n\t\t{\n\t\t\t// When working with a row, the data source object must be populated. In\n\t\t\t// all other cases, the data source object is already populated, so we\n\t\t\t// don't overwrite it, which might break bindings etc\n\t\t\tif ( nTr ) {\n\t\t\t\t_fnSetCellData( oSettings, iRow, i, _fnGetCellData( oSettings, iRow, i ) );\n\t\t\t}\n\t\t\tcolumns[i].sType = null;\n\t\t}\n\t\n\t\t/* Add to the display array */\n\t\toSettings.aiDisplayMaster.push( iRow );\n\t\n\t\t/* Create the DOM information, or register it if already present */\n\t\tif ( nTr || ! oSettings.oFeatures.bDeferRender )\n\t\t{\n\t\t\t_fnCreateTr( oSettings, iRow, nTr, anTds );\n\t\t}\n\t\n\t\treturn iRow;\n\t}\n\t\n\t\n\t/**\n\t * Add one or more TR elements to the table. Generally we'd expect to\n\t * use this for reading data from a DOM sourced table, but it could be\n\t * used for an TR element. Note that if a TR is given, it is used (i.e.\n\t * it is not cloned).\n\t *  @param {object} settings dataTables settings object\n\t *  @param {array|node|jQuery} trs The TR element(s) to add to the table\n\t *  @returns {array} Array of indexes for the added rows\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnAddTr( settings, trs )\n\t{\n\t\tvar row;\n\t\n\t\t// Allow an individual node to be passed in\n\t\tif ( ! (trs instanceof $) ) {\n\t\t\ttrs = $(trs);\n\t\t}\n\t\n\t\treturn trs.map( function (i, el) {\n\t\t\trow = _fnGetRowElements( settings, el );\n\t\t\treturn _fnAddData( settings, row.data, el, row.cells );\n\t\t} );\n\t}\n\t\n\t\n\t/**\n\t * Take a TR element and convert it to an index in aoData\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {node} n the TR element to find\n\t *  @returns {int} index if the node is found, null if not\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnNodeToDataIndex( oSettings, n )\n\t{\n\t\treturn (n._DT_RowIndex!==undefined) ? n._DT_RowIndex : null;\n\t}\n\t\n\t\n\t/**\n\t * Take a TD element and convert it into a column data index (not the visible index)\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {int} iRow The row number the TD/TH can be found in\n\t *  @param {node} n The TD/TH element to find\n\t *  @returns {int} index if the node is found, -1 if not\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnNodeToColumnIndex( oSettings, iRow, n )\n\t{\n\t\treturn $.inArray( n, oSettings.aoData[ iRow ].anCells );\n\t}\n\t\n\t\n\t/**\n\t * Get the data for a given cell from the internal cache, taking into account data mapping\n\t *  @param {object} settings dataTables settings object\n\t *  @param {int} rowIdx aoData row id\n\t *  @param {int} colIdx Column index\n\t *  @param {string} type data get type ('display', 'type' 'filter' 'sort')\n\t *  @returns {*} Cell data\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnGetCellData( settings, rowIdx, colIdx, type )\n\t{\n\t\tvar draw           = settings.iDraw;\n\t\tvar col            = settings.aoColumns[colIdx];\n\t\tvar rowData        = settings.aoData[rowIdx]._aData;\n\t\tvar defaultContent = col.sDefaultContent;\n\t\tvar cellData       = col.fnGetData( rowData, type, {\n\t\t\tsettings: settings,\n\t\t\trow:      rowIdx,\n\t\t\tcol:      colIdx\n\t\t} );\n\t\n\t\tif ( cellData === undefined ) {\n\t\t\tif ( settings.iDrawError != draw && defaultContent === null ) {\n\t\t\t\t_fnLog( settings, 0, \"Requested unknown parameter \"+\n\t\t\t\t\t(typeof col.mData=='function' ? '{function}' : \"'\"+col.mData+\"'\")+\n\t\t\t\t\t\" for row \"+rowIdx, 4 );\n\t\t\t\tsettings.iDrawError = draw;\n\t\t\t}\n\t\t\treturn defaultContent;\n\t\t}\n\t\n\t\t/* When the data source is null, we can use default column data */\n\t\tif ( (cellData === rowData || cellData === null) && defaultContent !== null ) {\n\t\t\tcellData = defaultContent;\n\t\t}\n\t\telse if ( typeof cellData === 'function' ) {\n\t\t\t// If the data source is a function, then we run it and use the return,\n\t\t\t// executing in the scope of the data object (for instances)\n\t\t\treturn cellData.call( rowData );\n\t\t}\n\t\n\t\tif ( cellData === null && type == 'display' ) {\n\t\t\treturn '';\n\t\t}\n\t\treturn cellData;\n\t}\n\t\n\t\n\t/**\n\t * Set the value for a specific cell, into the internal data cache\n\t *  @param {object} settings dataTables settings object\n\t *  @param {int} rowIdx aoData row id\n\t *  @param {int} colIdx Column index\n\t *  @param {*} val Value to set\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSetCellData( settings, rowIdx, colIdx, val )\n\t{\n\t\tvar col     = settings.aoColumns[colIdx];\n\t\tvar rowData = settings.aoData[rowIdx]._aData;\n\t\n\t\tcol.fnSetData( rowData, val, {\n\t\t\tsettings: settings,\n\t\t\trow:      rowIdx,\n\t\t\tcol:      colIdx\n\t\t}  );\n\t}\n\t\n\t\n\t// Private variable that is used to match action syntax in the data property object\n\tvar __reArray = /\\[.*?\\]$/;\n\tvar __reFn = /\\(\\)$/;\n\t\n\t/**\n\t * Split string on periods, taking into account escaped periods\n\t * @param  {string} str String to split\n\t * @return {array} Split string\n\t */\n\tfunction _fnSplitObjNotation( str )\n\t{\n\t\treturn $.map( str.match(/(\\\\.|[^\\.])+/g), function ( s ) {\n\t\t\treturn s.replace(/\\\\./g, '.');\n\t\t} );\n\t}\n\t\n\t\n\t/**\n\t * Return a function that can be used to get data from a source object, taking\n\t * into account the ability to use nested objects as a source\n\t *  @param {string|int|function} mSource The data source for the object\n\t *  @returns {function} Data get function\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnGetObjectDataFn( mSource )\n\t{\n\t\tif ( $.isPlainObject( mSource ) )\n\t\t{\n\t\t\t/* Build an object of get functions, and wrap them in a single call */\n\t\t\tvar o = {};\n\t\t\t$.each( mSource, function (key, val) {\n\t\t\t\tif ( val ) {\n\t\t\t\t\to[key] = _fnGetObjectDataFn( val );\n\t\t\t\t}\n\t\t\t} );\n\t\n\t\t\treturn function (data, type, row, meta) {\n\t\t\t\tvar t = o[type] || o._;\n\t\t\t\treturn t !== undefined ?\n\t\t\t\t\tt(data, type, row, meta) :\n\t\t\t\t\tdata;\n\t\t\t};\n\t\t}\n\t\telse if ( mSource === null )\n\t\t{\n\t\t\t/* Give an empty string for rendering / sorting etc */\n\t\t\treturn function (data) { // type, row and meta also passed, but not used\n\t\t\t\treturn data;\n\t\t\t};\n\t\t}\n\t\telse if ( typeof mSource === 'function' )\n\t\t{\n\t\t\treturn function (data, type, row, meta) {\n\t\t\t\treturn mSource( data, type, row, meta );\n\t\t\t};\n\t\t}\n\t\telse if ( typeof mSource === 'string' && (mSource.indexOf('.') !== -1 ||\n\t\t\t      mSource.indexOf('[') !== -1 || mSource.indexOf('(') !== -1) )\n\t\t{\n\t\t\t/* If there is a . in the source string then the data source is in a\n\t\t\t * nested object so we loop over the data for each level to get the next\n\t\t\t * level down. On each loop we test for undefined, and if found immediately\n\t\t\t * return. This allows entire objects to be missing and sDefaultContent to\n\t\t\t * be used if defined, rather than throwing an error\n\t\t\t */\n\t\t\tvar fetchData = function (data, type, src) {\n\t\t\t\tvar arrayNotation, funcNotation, out, innerSrc;\n\t\n\t\t\t\tif ( src !== \"\" )\n\t\t\t\t{\n\t\t\t\t\tvar a = _fnSplitObjNotation( src );\n\t\n\t\t\t\t\tfor ( var i=0, iLen=a.length ; i<iLen ; i++ )\n\t\t\t\t\t{\n\t\t\t\t\t\t// Check if we are dealing with special notation\n\t\t\t\t\t\tarrayNotation = a[i].match(__reArray);\n\t\t\t\t\t\tfuncNotation = a[i].match(__reFn);\n\t\n\t\t\t\t\t\tif ( arrayNotation )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t// Array notation\n\t\t\t\t\t\t\ta[i] = a[i].replace(__reArray, '');\n\t\n\t\t\t\t\t\t\t// Condition allows simply [] to be passed in\n\t\t\t\t\t\t\tif ( a[i] !== \"\" ) {\n\t\t\t\t\t\t\t\tdata = data[ a[i] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tout = [];\n\t\n\t\t\t\t\t\t\t// Get the remainder of the nested object to get\n\t\t\t\t\t\t\ta.splice( 0, i+1 );\n\t\t\t\t\t\t\tinnerSrc = a.join('.');\n\t\n\t\t\t\t\t\t\t// Traverse each entry in the array getting the properties requested\n\t\t\t\t\t\t\tfor ( var j=0, jLen=data.length ; j<jLen ; j++ ) {\n\t\t\t\t\t\t\t\tout.push( fetchData( data[j], type, innerSrc ) );\n\t\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t\t// If a string is given in between the array notation indicators, that\n\t\t\t\t\t\t\t// is used to join the strings together, otherwise an array is returned\n\t\t\t\t\t\t\tvar join = arrayNotation[0].substring(1, arrayNotation[0].length-1);\n\t\t\t\t\t\t\tdata = (join===\"\") ? out : out.join(join);\n\t\n\t\t\t\t\t\t\t// The inner call to fetchData has already traversed through the remainder\n\t\t\t\t\t\t\t// of the source requested, so we exit from the loop\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if ( funcNotation )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t// Function call\n\t\t\t\t\t\t\ta[i] = a[i].replace(__reFn, '');\n\t\t\t\t\t\t\tdata = data[ a[i] ]();\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tif ( data === null || data[ a[i] ] === undefined )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\treturn undefined;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdata = data[ a[i] ];\n\t\t\t\t\t}\n\t\t\t\t}\n\t\n\t\t\t\treturn data;\n\t\t\t};\n\t\n\t\t\treturn function (data, type) { // row and meta also passed, but not used\n\t\t\t\treturn fetchData( data, type, mSource );\n\t\t\t};\n\t\t}\n\t\telse\n\t\t{\n\t\t\t/* Array or flat object mapping */\n\t\t\treturn function (data, type) { // row and meta also passed, but not used\n\t\t\t\treturn data[mSource];\n\t\t\t};\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Return a function that can be used to set data from a source object, taking\n\t * into account the ability to use nested objects as a source\n\t *  @param {string|int|function} mSource The data source for the object\n\t *  @returns {function} Data set function\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSetObjectDataFn( mSource )\n\t{\n\t\tif ( $.isPlainObject( mSource ) )\n\t\t{\n\t\t\t/* Unlike get, only the underscore (global) option is used for for\n\t\t\t * setting data since we don't know the type here. This is why an object\n\t\t\t * option is not documented for `mData` (which is read/write), but it is\n\t\t\t * for `mRender` which is read only.\n\t\t\t */\n\t\t\treturn _fnSetObjectDataFn( mSource._ );\n\t\t}\n\t\telse if ( mSource === null )\n\t\t{\n\t\t\t/* Nothing to do when the data source is null */\n\t\t\treturn function () {};\n\t\t}\n\t\telse if ( typeof mSource === 'function' )\n\t\t{\n\t\t\treturn function (data, val, meta) {\n\t\t\t\tmSource( data, 'set', val, meta );\n\t\t\t};\n\t\t}\n\t\telse if ( typeof mSource === 'string' && (mSource.indexOf('.') !== -1 ||\n\t\t\t      mSource.indexOf('[') !== -1 || mSource.indexOf('(') !== -1) )\n\t\t{\n\t\t\t/* Like the get, we need to get data from a nested object */\n\t\t\tvar setData = function (data, val, src) {\n\t\t\t\tvar a = _fnSplitObjNotation( src ), b;\n\t\t\t\tvar aLast = a[a.length-1];\n\t\t\t\tvar arrayNotation, funcNotation, o, innerSrc;\n\t\n\t\t\t\tfor ( var i=0, iLen=a.length-1 ; i<iLen ; i++ )\n\t\t\t\t{\n\t\t\t\t\t// Check if we are dealing with an array notation request\n\t\t\t\t\tarrayNotation = a[i].match(__reArray);\n\t\t\t\t\tfuncNotation = a[i].match(__reFn);\n\t\n\t\t\t\t\tif ( arrayNotation )\n\t\t\t\t\t{\n\t\t\t\t\t\ta[i] = a[i].replace(__reArray, '');\n\t\t\t\t\t\tdata[ a[i] ] = [];\n\t\n\t\t\t\t\t\t// Get the remainder of the nested object to set so we can recurse\n\t\t\t\t\t\tb = a.slice();\n\t\t\t\t\t\tb.splice( 0, i+1 );\n\t\t\t\t\t\tinnerSrc = b.join('.');\n\t\n\t\t\t\t\t\t// Traverse each entry in the array setting the properties requested\n\t\t\t\t\t\tfor ( var j=0, jLen=val.length ; j<jLen ; j++ )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\to = {};\n\t\t\t\t\t\t\tsetData( o, val[j], innerSrc );\n\t\t\t\t\t\t\tdata[ a[i] ].push( o );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t// The inner call to setData has already traversed through the remainder\n\t\t\t\t\t\t// of the source and has set the data, thus we can exit here\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\telse if ( funcNotation )\n\t\t\t\t\t{\n\t\t\t\t\t\t// Function call\n\t\t\t\t\t\ta[i] = a[i].replace(__reFn, '');\n\t\t\t\t\t\tdata = data[ a[i] ]( val );\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// If the nested object doesn't currently exist - since we are\n\t\t\t\t\t// trying to set the value - create it\n\t\t\t\t\tif ( data[ a[i] ] === null || data[ a[i] ] === undefined )\n\t\t\t\t\t{\n\t\t\t\t\t\tdata[ a[i] ] = {};\n\t\t\t\t\t}\n\t\t\t\t\tdata = data[ a[i] ];\n\t\t\t\t}\n\t\n\t\t\t\t// Last item in the input - i.e, the actual set\n\t\t\t\tif ( aLast.match(__reFn ) )\n\t\t\t\t{\n\t\t\t\t\t// Function call\n\t\t\t\t\tdata = data[ aLast.replace(__reFn, '') ]( val );\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t// If array notation is used, we just want to strip it and use the property name\n\t\t\t\t\t// and assign the value. If it isn't used, then we get the result we want anyway\n\t\t\t\t\tdata[ aLast.replace(__reArray, '') ] = val;\n\t\t\t\t}\n\t\t\t};\n\t\n\t\t\treturn function (data, val) { // meta is also passed in, but not used\n\t\t\t\treturn setData( data, val, mSource );\n\t\t\t};\n\t\t}\n\t\telse\n\t\t{\n\t\t\t/* Array or flat object mapping */\n\t\t\treturn function (data, val) { // meta is also passed in, but not used\n\t\t\t\tdata[mSource] = val;\n\t\t\t};\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Return an array with the full table data\n\t *  @param {object} oSettings dataTables settings object\n\t *  @returns array {array} aData Master data array\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnGetDataMaster ( settings )\n\t{\n\t\treturn _pluck( settings.aoData, '_aData' );\n\t}\n\t\n\t\n\t/**\n\t * Nuke the table\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnClearTable( settings )\n\t{\n\t\tsettings.aoData.length = 0;\n\t\tsettings.aiDisplayMaster.length = 0;\n\t\tsettings.aiDisplay.length = 0;\n\t}\n\t\n\t\n\t /**\n\t * Take an array of integers (index array) and remove a target integer (value - not\n\t * the key!)\n\t *  @param {array} a Index array to target\n\t *  @param {int} iTarget value to find\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnDeleteIndex( a, iTarget, splice )\n\t{\n\t\tvar iTargetIndex = -1;\n\t\n\t\tfor ( var i=0, iLen=a.length ; i<iLen ; i++ )\n\t\t{\n\t\t\tif ( a[i] == iTarget )\n\t\t\t{\n\t\t\t\tiTargetIndex = i;\n\t\t\t}\n\t\t\telse if ( a[i] > iTarget )\n\t\t\t{\n\t\t\t\ta[i]--;\n\t\t\t}\n\t\t}\n\t\n\t\tif ( iTargetIndex != -1 && splice === undefined )\n\t\t{\n\t\t\ta.splice( iTargetIndex, 1 );\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Mark cached data as invalid such that a re-read of the data will occur when\n\t * the cached data is next requested. Also update from the data source object.\n\t *\n\t * @param {object} settings DataTables settings object\n\t * @param {int}    rowIdx   Row index to invalidate\n\t * @param {string} [src]    Source to invalidate from: undefined, 'auto', 'dom'\n\t *     or 'data'\n\t * @param {int}    [colIdx] Column index to invalidate. If undefined the whole\n\t *     row will be invalidated\n\t * @memberof DataTable#oApi\n\t *\n\t * @todo For the modularisation of v1.11 this will need to become a callback, so\n\t *   the sort and filter methods can subscribe to it. That will required\n\t *   initialisation options for sorting, which is why it is not already baked in\n\t */\n\tfunction _fnInvalidate( settings, rowIdx, src, colIdx )\n\t{\n\t\tvar row = settings.aoData[ rowIdx ];\n\t\tvar i, ien;\n\t\tvar cellWrite = function ( cell, col ) {\n\t\t\t// This is very frustrating, but in IE if you just write directly\n\t\t\t// to innerHTML, and elements that are overwritten are GC'ed,\n\t\t\t// even if there is a reference to them elsewhere\n\t\t\twhile ( cell.childNodes.length ) {\n\t\t\t\tcell.removeChild( cell.firstChild );\n\t\t\t}\n\t\n\t\t\tcell.innerHTML = _fnGetCellData( settings, rowIdx, col, 'display' );\n\t\t};\n\t\n\t\t// Are we reading last data from DOM or the data object?\n\t\tif ( src === 'dom' || ((! src || src === 'auto') && row.src === 'dom') ) {\n\t\t\t// Read the data from the DOM\n\t\t\trow._aData = _fnGetRowElements(\n\t\t\t\t\tsettings, row, colIdx, colIdx === undefined ? undefined : row._aData\n\t\t\t\t)\n\t\t\t\t.data;\n\t\t}\n\t\telse {\n\t\t\t// Reading from data object, update the DOM\n\t\t\tvar cells = row.anCells;\n\t\n\t\t\tif ( cells ) {\n\t\t\t\tif ( colIdx !== undefined ) {\n\t\t\t\t\tcellWrite( cells[colIdx], colIdx );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tfor ( i=0, ien=cells.length ; i<ien ; i++ ) {\n\t\t\t\t\t\tcellWrite( cells[i], i );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\t// For both row and cell invalidation, the cached data for sorting and\n\t\t// filtering is nulled out\n\t\trow._aSortData = null;\n\t\trow._aFilterData = null;\n\t\n\t\t// Invalidate the type for a specific column (if given) or all columns since\n\t\t// the data might have changed\n\t\tvar cols = settings.aoColumns;\n\t\tif ( colIdx !== undefined ) {\n\t\t\tcols[ colIdx ].sType = null;\n\t\t}\n\t\telse {\n\t\t\tfor ( i=0, ien=cols.length ; i<ien ; i++ ) {\n\t\t\t\tcols[i].sType = null;\n\t\t\t}\n\t\n\t\t\t// Update DataTables special `DT_*` attributes for the row\n\t\t\t_fnRowAttributes( row );\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Build a data source object from an HTML row, reading the contents of the\n\t * cells that are in the row.\n\t *\n\t * @param {object} settings DataTables settings object\n\t * @param {node|object} TR element from which to read data or existing row\n\t *   object from which to re-read the data from the cells\n\t * @param {int} [colIdx] Optional column index\n\t * @param {array|object} [d] Data source object. If `colIdx` is given then this\n\t *   parameter should also be given and will be used to write the data into.\n\t *   Only the column in question will be written\n\t * @returns {object} Object with two parameters: `data` the data read, in\n\t *   document order, and `cells` and array of nodes (they can be useful to the\n\t *   caller, so rather than needing a second traversal to get them, just return\n\t *   them from here).\n\t * @memberof DataTable#oApi\n\t */\n\tfunction _fnGetRowElements( settings, row, colIdx, d )\n\t{\n\t\tvar\n\t\t\ttds = [],\n\t\t\ttd = row.firstChild,\n\t\t\tname, col, o, i=0, contents,\n\t\t\tcolumns = settings.aoColumns,\n\t\t\tobjectRead = settings._rowReadObject;\n\t\n\t\t// Allow the data object to be passed in, or construct\n\t\td = d || objectRead ? {} : [];\n\t\n\t\tvar attr = function ( str, td  ) {\n\t\t\tif ( typeof str === 'string' ) {\n\t\t\t\tvar idx = str.indexOf('@');\n\t\n\t\t\t\tif ( idx !== -1 ) {\n\t\t\t\t\tvar attr = str.substring( idx+1 );\n\t\t\t\t\tvar setter = _fnSetObjectDataFn( str );\n\t\t\t\t\tsetter( d, td.getAttribute( attr ) );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t\n\t\t// Read data from a cell and store into the data object\n\t\tvar cellProcess = function ( cell ) {\n\t\t\tif ( colIdx === undefined || colIdx === i ) {\n\t\t\t\tcol = columns[i];\n\t\t\t\tcontents = $.trim(cell.innerHTML);\n\t\n\t\t\t\tif ( col && col._bAttrSrc ) {\n\t\t\t\t\tvar setter = _fnSetObjectDataFn( col.mData._ );\n\t\t\t\t\tsetter( d, contents );\n\t\n\t\t\t\t\tattr( col.mData.sort, cell );\n\t\t\t\t\tattr( col.mData.type, cell );\n\t\t\t\t\tattr( col.mData.filter, cell );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// Depending on the `data` option for the columns the data can\n\t\t\t\t\t// be read to either an object or an array.\n\t\t\t\t\tif ( objectRead ) {\n\t\t\t\t\t\tif ( ! col._setter ) {\n\t\t\t\t\t\t\t// Cache the setter function\n\t\t\t\t\t\t\tcol._setter = _fnSetObjectDataFn( col.mData );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcol._setter( d, contents );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\td[i] = contents;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\ti++;\n\t\t};\n\t\n\t\tif ( td ) {\n\t\t\t// `tr` element was passed in\n\t\t\twhile ( td ) {\n\t\t\t\tname = td.nodeName.toUpperCase();\n\t\n\t\t\t\tif ( name == \"TD\" || name == \"TH\" ) {\n\t\t\t\t\tcellProcess( td );\n\t\t\t\t\ttds.push( td );\n\t\t\t\t}\n\t\n\t\t\t\ttd = td.nextSibling;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Existing row object passed in\n\t\t\ttds = row.anCells;\n\t\t\t\n\t\t\tfor ( var j=0, jen=tds.length ; j<jen ; j++ ) {\n\t\t\t\tcellProcess( tds[j] );\n\t\t\t}\n\t\t}\n\t\n\t\treturn {\n\t\t\tdata: d,\n\t\t\tcells: tds\n\t\t};\n\t}\n\t/**\n\t * Create a new TR element (and it's TD children) for a row\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {int} iRow Row to consider\n\t *  @param {node} [nTrIn] TR element to add to the table - optional. If not given,\n\t *    DataTables will create a row automatically\n\t *  @param {array} [anTds] Array of TD|TH elements for the row - must be given\n\t *    if nTr is.\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnCreateTr ( oSettings, iRow, nTrIn, anTds )\n\t{\n\t\tvar\n\t\t\trow = oSettings.aoData[iRow],\n\t\t\trowData = row._aData,\n\t\t\tcells = [],\n\t\t\tnTr, nTd, oCol,\n\t\t\ti, iLen;\n\t\n\t\tif ( row.nTr === null )\n\t\t{\n\t\t\tnTr = nTrIn || document.createElement('tr');\n\t\n\t\t\trow.nTr = nTr;\n\t\t\trow.anCells = cells;\n\t\n\t\t\t/* Use a private property on the node to allow reserve mapping from the node\n\t\t\t * to the aoData array for fast look up\n\t\t\t */\n\t\t\tnTr._DT_RowIndex = iRow;\n\t\n\t\t\t/* Special parameters can be given by the data source to be used on the row */\n\t\t\t_fnRowAttributes( row );\n\t\n\t\t\t/* Process each column */\n\t\t\tfor ( i=0, iLen=oSettings.aoColumns.length ; i<iLen ; i++ )\n\t\t\t{\n\t\t\t\toCol = oSettings.aoColumns[i];\n\t\n\t\t\t\tnTd = nTrIn ? anTds[i] : document.createElement( oCol.sCellType );\n\t\t\t\tcells.push( nTd );\n\t\n\t\t\t\t// Need to create the HTML if new, or if a rendering function is defined\n\t\t\t\tif ( !nTrIn || oCol.mRender || oCol.mData !== i )\n\t\t\t\t{\n\t\t\t\t\tnTd.innerHTML = _fnGetCellData( oSettings, iRow, i, 'display' );\n\t\t\t\t}\n\t\n\t\t\t\t/* Add user defined class */\n\t\t\t\tif ( oCol.sClass )\n\t\t\t\t{\n\t\t\t\t\tnTd.className += ' '+oCol.sClass;\n\t\t\t\t}\n\t\n\t\t\t\t// Visibility - add or remove as required\n\t\t\t\tif ( oCol.bVisible && ! nTrIn )\n\t\t\t\t{\n\t\t\t\t\tnTr.appendChild( nTd );\n\t\t\t\t}\n\t\t\t\telse if ( ! oCol.bVisible && nTrIn )\n\t\t\t\t{\n\t\t\t\t\tnTd.parentNode.removeChild( nTd );\n\t\t\t\t}\n\t\n\t\t\t\tif ( oCol.fnCreatedCell )\n\t\t\t\t{\n\t\t\t\t\toCol.fnCreatedCell.call( oSettings.oInstance,\n\t\t\t\t\t\tnTd, _fnGetCellData( oSettings, iRow, i ), rowData, iRow, i\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\t_fnCallbackFire( oSettings, 'aoRowCreatedCallback', null, [nTr, rowData, iRow] );\n\t\t}\n\t\n\t\t// Remove once webkit bug 131819 and Chromium bug 365619 have been resolved\n\t\t// and deployed\n\t\trow.nTr.setAttribute( 'role', 'row' );\n\t}\n\t\n\t\n\t/**\n\t * Add attributes to a row based on the special `DT_*` parameters in a data\n\t * source object.\n\t *  @param {object} DataTables row object for the row to be modified\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnRowAttributes( row )\n\t{\n\t\tvar tr = row.nTr;\n\t\tvar data = row._aData;\n\t\n\t\tif ( tr ) {\n\t\t\tif ( data.DT_RowId ) {\n\t\t\t\ttr.id = data.DT_RowId;\n\t\t\t}\n\t\n\t\t\tif ( data.DT_RowClass ) {\n\t\t\t\t// Remove any classes added by DT_RowClass before\n\t\t\t\tvar a = data.DT_RowClass.split(' ');\n\t\t\t\trow.__rowc = row.__rowc ?\n\t\t\t\t\t_unique( row.__rowc.concat( a ) ) :\n\t\t\t\t\ta;\n\t\n\t\t\t\t$(tr)\n\t\t\t\t\t.removeClass( row.__rowc.join(' ') )\n\t\t\t\t\t.addClass( data.DT_RowClass );\n\t\t\t}\n\t\n\t\t\tif ( data.DT_RowData ) {\n\t\t\t\t$(tr).data( data.DT_RowData );\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Create the HTML header for the table\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnBuildHead( oSettings )\n\t{\n\t\tvar i, ien, cell, row, column;\n\t\tvar thead = oSettings.nTHead;\n\t\tvar tfoot = oSettings.nTFoot;\n\t\tvar createHeader = $('th, td', thead).length === 0;\n\t\tvar classes = oSettings.oClasses;\n\t\tvar columns = oSettings.aoColumns;\n\t\n\t\tif ( createHeader ) {\n\t\t\trow = $('<tr/>').appendTo( thead );\n\t\t}\n\t\n\t\tfor ( i=0, ien=columns.length ; i<ien ; i++ ) {\n\t\t\tcolumn = columns[i];\n\t\t\tcell = $( column.nTh ).addClass( column.sClass );\n\t\n\t\t\tif ( createHeader ) {\n\t\t\t\tcell.appendTo( row );\n\t\t\t}\n\t\n\t\t\t// 1.11 move into sorting\n\t\t\tif ( oSettings.oFeatures.bSort ) {\n\t\t\t\tcell.addClass( column.sSortingClass );\n\t\n\t\t\t\tif ( column.bSortable !== false ) {\n\t\t\t\t\tcell\n\t\t\t\t\t\t.attr( 'tabindex', oSettings.iTabIndex )\n\t\t\t\t\t\t.attr( 'aria-controls', oSettings.sTableId );\n\t\n\t\t\t\t\t_fnSortAttachListener( oSettings, column.nTh, i );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tif ( column.sTitle != cell.html() ) {\n\t\t\t\tcell.html( column.sTitle );\n\t\t\t}\n\t\n\t\t\t_fnRenderer( oSettings, 'header' )(\n\t\t\t\toSettings, cell, column, classes\n\t\t\t);\n\t\t}\n\t\n\t\tif ( createHeader ) {\n\t\t\t_fnDetectHeader( oSettings.aoHeader, thead );\n\t\t}\n\t\t\n\t\t/* ARIA role for the rows */\n\t \t$(thead).find('>tr').attr('role', 'row');\n\t\n\t\t/* Deal with the footer - add classes if required */\n\t\t$(thead).find('>tr>th, >tr>td').addClass( classes.sHeaderTH );\n\t\t$(tfoot).find('>tr>th, >tr>td').addClass( classes.sFooterTH );\n\t\n\t\t// Cache the footer cells. Note that we only take the cells from the first\n\t\t// row in the footer. If there is more than one row the user wants to\n\t\t// interact with, they need to use the table().foot() method. Note also this\n\t\t// allows cells to be used for multiple columns using colspan\n\t\tif ( tfoot !== null ) {\n\t\t\tvar cells = oSettings.aoFooter[0];\n\t\n\t\t\tfor ( i=0, ien=cells.length ; i<ien ; i++ ) {\n\t\t\t\tcolumn = columns[i];\n\t\t\t\tcolumn.nTf = cells[i].cell;\n\t\n\t\t\t\tif ( column.sClass ) {\n\t\t\t\t\t$(column.nTf).addClass( column.sClass );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Draw the header (or footer) element based on the column visibility states. The\n\t * methodology here is to use the layout array from _fnDetectHeader, modified for\n\t * the instantaneous column visibility, to construct the new layout. The grid is\n\t * traversed over cell at a time in a rows x columns grid fashion, although each\n\t * cell insert can cover multiple elements in the grid - which is tracks using the\n\t * aApplied array. Cell inserts in the grid will only occur where there isn't\n\t * already a cell in that position.\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param array {objects} aoSource Layout array from _fnDetectHeader\n\t *  @param {boolean} [bIncludeHidden=false] If true then include the hidden columns in the calc,\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnDrawHead( oSettings, aoSource, bIncludeHidden )\n\t{\n\t\tvar i, iLen, j, jLen, k, kLen, n, nLocalTr;\n\t\tvar aoLocal = [];\n\t\tvar aApplied = [];\n\t\tvar iColumns = oSettings.aoColumns.length;\n\t\tvar iRowspan, iColspan;\n\t\n\t\tif ( ! aoSource )\n\t\t{\n\t\t\treturn;\n\t\t}\n\t\n\t\tif (  bIncludeHidden === undefined )\n\t\t{\n\t\t\tbIncludeHidden = false;\n\t\t}\n\t\n\t\t/* Make a copy of the master layout array, but without the visible columns in it */\n\t\tfor ( i=0, iLen=aoSource.length ; i<iLen ; i++ )\n\t\t{\n\t\t\taoLocal[i] = aoSource[i].slice();\n\t\t\taoLocal[i].nTr = aoSource[i].nTr;\n\t\n\t\t\t/* Remove any columns which are currently hidden */\n\t\t\tfor ( j=iColumns-1 ; j>=0 ; j-- )\n\t\t\t{\n\t\t\t\tif ( !oSettings.aoColumns[j].bVisible && !bIncludeHidden )\n\t\t\t\t{\n\t\t\t\t\taoLocal[i].splice( j, 1 );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\t/* Prep the applied array - it needs an element for each row */\n\t\t\taApplied.push( [] );\n\t\t}\n\t\n\t\tfor ( i=0, iLen=aoLocal.length ; i<iLen ; i++ )\n\t\t{\n\t\t\tnLocalTr = aoLocal[i].nTr;\n\t\n\t\t\t/* All cells are going to be replaced, so empty out the row */\n\t\t\tif ( nLocalTr )\n\t\t\t{\n\t\t\t\twhile( (n = nLocalTr.firstChild) )\n\t\t\t\t{\n\t\t\t\t\tnLocalTr.removeChild( n );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tfor ( j=0, jLen=aoLocal[i].length ; j<jLen ; j++ )\n\t\t\t{\n\t\t\t\tiRowspan = 1;\n\t\t\t\tiColspan = 1;\n\t\n\t\t\t\t/* Check to see if there is already a cell (row/colspan) covering our target\n\t\t\t\t * insert point. If there is, then there is nothing to do.\n\t\t\t\t */\n\t\t\t\tif ( aApplied[i][j] === undefined )\n\t\t\t\t{\n\t\t\t\t\tnLocalTr.appendChild( aoLocal[i][j].cell );\n\t\t\t\t\taApplied[i][j] = 1;\n\t\n\t\t\t\t\t/* Expand the cell to cover as many rows as needed */\n\t\t\t\t\twhile ( aoLocal[i+iRowspan] !== undefined &&\n\t\t\t\t\t        aoLocal[i][j].cell == aoLocal[i+iRowspan][j].cell )\n\t\t\t\t\t{\n\t\t\t\t\t\taApplied[i+iRowspan][j] = 1;\n\t\t\t\t\t\tiRowspan++;\n\t\t\t\t\t}\n\t\n\t\t\t\t\t/* Expand the cell to cover as many columns as needed */\n\t\t\t\t\twhile ( aoLocal[i][j+iColspan] !== undefined &&\n\t\t\t\t\t        aoLocal[i][j].cell == aoLocal[i][j+iColspan].cell )\n\t\t\t\t\t{\n\t\t\t\t\t\t/* Must update the applied array over the rows for the columns */\n\t\t\t\t\t\tfor ( k=0 ; k<iRowspan ; k++ )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\taApplied[i+k][j+iColspan] = 1;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tiColspan++;\n\t\t\t\t\t}\n\t\n\t\t\t\t\t/* Do the actual expansion in the DOM */\n\t\t\t\t\t$(aoLocal[i][j].cell)\n\t\t\t\t\t\t.attr('rowspan', iRowspan)\n\t\t\t\t\t\t.attr('colspan', iColspan);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Insert the required TR nodes into the table for display\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnDraw( oSettings )\n\t{\n\t\t/* Provide a pre-callback function which can be used to cancel the draw is false is returned */\n\t\tvar aPreDraw = _fnCallbackFire( oSettings, 'aoPreDrawCallback', 'preDraw', [oSettings] );\n\t\tif ( $.inArray( false, aPreDraw ) !== -1 )\n\t\t{\n\t\t\t_fnProcessingDisplay( oSettings, false );\n\t\t\treturn;\n\t\t}\n\t\n\t\tvar i, iLen, n;\n\t\tvar anRows = [];\n\t\tvar iRowCount = 0;\n\t\tvar asStripeClasses = oSettings.asStripeClasses;\n\t\tvar iStripes = asStripeClasses.length;\n\t\tvar iOpenRows = oSettings.aoOpenRows.length;\n\t\tvar oLang = oSettings.oLanguage;\n\t\tvar iInitDisplayStart = oSettings.iInitDisplayStart;\n\t\tvar bServerSide = _fnDataSource( oSettings ) == 'ssp';\n\t\tvar aiDisplay = oSettings.aiDisplay;\n\t\n\t\toSettings.bDrawing = true;\n\t\n\t\t/* Check and see if we have an initial draw position from state saving */\n\t\tif ( iInitDisplayStart !== undefined && iInitDisplayStart !== -1 )\n\t\t{\n\t\t\toSettings._iDisplayStart = bServerSide ?\n\t\t\t\tiInitDisplayStart :\n\t\t\t\tiInitDisplayStart >= oSettings.fnRecordsDisplay() ?\n\t\t\t\t\t0 :\n\t\t\t\t\tiInitDisplayStart;\n\t\n\t\t\toSettings.iInitDisplayStart = -1;\n\t\t}\n\t\n\t\tvar iDisplayStart = oSettings._iDisplayStart;\n\t\tvar iDisplayEnd = oSettings.fnDisplayEnd();\n\t\n\t\t/* Server-side processing draw intercept */\n\t\tif ( oSettings.bDeferLoading )\n\t\t{\n\t\t\toSettings.bDeferLoading = false;\n\t\t\toSettings.iDraw++;\n\t\t\t_fnProcessingDisplay( oSettings, false );\n\t\t}\n\t\telse if ( !bServerSide )\n\t\t{\n\t\t\toSettings.iDraw++;\n\t\t}\n\t\telse if ( !oSettings.bDestroying && !_fnAjaxUpdate( oSettings ) )\n\t\t{\n\t\t\treturn;\n\t\t}\n\t\n\t\tif ( aiDisplay.length !== 0 )\n\t\t{\n\t\t\tvar iStart = bServerSide ? 0 : iDisplayStart;\n\t\t\tvar iEnd = bServerSide ? oSettings.aoData.length : iDisplayEnd;\n\t\n\t\t\tfor ( var j=iStart ; j<iEnd ; j++ )\n\t\t\t{\n\t\t\t\tvar iDataIndex = aiDisplay[j];\n\t\t\t\tvar aoData = oSettings.aoData[ iDataIndex ];\n\t\t\t\tif ( aoData.nTr === null )\n\t\t\t\t{\n\t\t\t\t\t_fnCreateTr( oSettings, iDataIndex );\n\t\t\t\t}\n\t\n\t\t\t\tvar nRow = aoData.nTr;\n\t\n\t\t\t\t/* Remove the old striping classes and then add the new one */\n\t\t\t\tif ( iStripes !== 0 )\n\t\t\t\t{\n\t\t\t\t\tvar sStripe = asStripeClasses[ iRowCount % iStripes ];\n\t\t\t\t\tif ( aoData._sRowStripe != sStripe )\n\t\t\t\t\t{\n\t\t\t\t\t\t$(nRow).removeClass( aoData._sRowStripe ).addClass( sStripe );\n\t\t\t\t\t\taoData._sRowStripe = sStripe;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\n\t\t\t\t// Row callback functions - might want to manipulate the row\n\t\t\t\t// iRowCount and j are not currently documented. Are they at all\n\t\t\t\t// useful?\n\t\t\t\t_fnCallbackFire( oSettings, 'aoRowCallback', null,\n\t\t\t\t\t[nRow, aoData._aData, iRowCount, j] );\n\t\n\t\t\t\tanRows.push( nRow );\n\t\t\t\tiRowCount++;\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t/* Table is empty - create a row with an empty message in it */\n\t\t\tvar sZero = oLang.sZeroRecords;\n\t\t\tif ( oSettings.iDraw == 1 &&  _fnDataSource( oSettings ) == 'ajax' )\n\t\t\t{\n\t\t\t\tsZero = oLang.sLoadingRecords;\n\t\t\t}\n\t\t\telse if ( oLang.sEmptyTable && oSettings.fnRecordsTotal() === 0 )\n\t\t\t{\n\t\t\t\tsZero = oLang.sEmptyTable;\n\t\t\t}\n\t\n\t\t\tanRows[ 0 ] = $( '<tr/>', { 'class': iStripes ? asStripeClasses[0] : '' } )\n\t\t\t\t.append( $('<td />', {\n\t\t\t\t\t'valign':  'top',\n\t\t\t\t\t'colSpan': _fnVisbleColumns( oSettings ),\n\t\t\t\t\t'class':   oSettings.oClasses.sRowEmpty\n\t\t\t\t} ).html( sZero ) )[0];\n\t\t}\n\t\n\t\t/* Header and footer callbacks */\n\t\t_fnCallbackFire( oSettings, 'aoHeaderCallback', 'header', [ $(oSettings.nTHead).children('tr')[0],\n\t\t\t_fnGetDataMaster( oSettings ), iDisplayStart, iDisplayEnd, aiDisplay ] );\n\t\n\t\t_fnCallbackFire( oSettings, 'aoFooterCallback', 'footer', [ $(oSettings.nTFoot).children('tr')[0],\n\t\t\t_fnGetDataMaster( oSettings ), iDisplayStart, iDisplayEnd, aiDisplay ] );\n\t\n\t\tvar body = $(oSettings.nTBody);\n\t\n\t\tbody.children().detach();\n\t\tbody.append( $(anRows) );\n\t\n\t\t/* Call all required callback functions for the end of a draw */\n\t\t_fnCallbackFire( oSettings, 'aoDrawCallback', 'draw', [oSettings] );\n\t\n\t\t/* Draw is complete, sorting and filtering must be as well */\n\t\toSettings.bSorted = false;\n\t\toSettings.bFiltered = false;\n\t\toSettings.bDrawing = false;\n\t}\n\t\n\t\n\t/**\n\t * Redraw the table - taking account of the various features which are enabled\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {boolean} [holdPosition] Keep the current paging position. By default\n\t *    the paging is reset to the first page\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnReDraw( settings, holdPosition )\n\t{\n\t\tvar\n\t\t\tfeatures = settings.oFeatures,\n\t\t\tsort     = features.bSort,\n\t\t\tfilter   = features.bFilter;\n\t\n\t\tif ( sort ) {\n\t\t\t_fnSort( settings );\n\t\t}\n\t\n\t\tif ( filter ) {\n\t\t\t_fnFilterComplete( settings, settings.oPreviousSearch );\n\t\t}\n\t\telse {\n\t\t\t// No filtering, so we want to just use the display master\n\t\t\tsettings.aiDisplay = settings.aiDisplayMaster.slice();\n\t\t}\n\t\n\t\tif ( holdPosition !== true ) {\n\t\t\tsettings._iDisplayStart = 0;\n\t\t}\n\t\n\t\t// Let any modules know about the draw hold position state (used by\n\t\t// scrolling internally)\n\t\tsettings._drawHold = holdPosition;\n\t\n\t\t_fnDraw( settings );\n\t\n\t\tsettings._drawHold = false;\n\t}\n\t\n\t\n\t/**\n\t * Add the options to the page HTML for the table\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnAddOptionsHtml ( oSettings )\n\t{\n\t\tvar classes = oSettings.oClasses;\n\t\tvar table = $(oSettings.nTable);\n\t\tvar holding = $('<div/>').insertBefore( table ); // Holding element for speed\n\t\tvar features = oSettings.oFeatures;\n\t\n\t\t// All DataTables are wrapped in a div\n\t\tvar insert = $('<div/>', {\n\t\t\tid:      oSettings.sTableId+'_wrapper',\n\t\t\t'class': classes.sWrapper + (oSettings.nTFoot ? '' : ' '+classes.sNoFooter)\n\t\t} );\n\t\n\t\toSettings.nHolding = holding[0];\n\t\toSettings.nTableWrapper = insert[0];\n\t\toSettings.nTableReinsertBefore = oSettings.nTable.nextSibling;\n\t\n\t\t/* Loop over the user set positioning and place the elements as needed */\n\t\tvar aDom = oSettings.sDom.split('');\n\t\tvar featureNode, cOption, nNewNode, cNext, sAttr, j;\n\t\tfor ( var i=0 ; i<aDom.length ; i++ )\n\t\t{\n\t\t\tfeatureNode = null;\n\t\t\tcOption = aDom[i];\n\t\n\t\t\tif ( cOption == '<' )\n\t\t\t{\n\t\t\t\t/* New container div */\n\t\t\t\tnNewNode = $('<div/>')[0];\n\t\n\t\t\t\t/* Check to see if we should append an id and/or a class name to the container */\n\t\t\t\tcNext = aDom[i+1];\n\t\t\t\tif ( cNext == \"'\" || cNext == '\"' )\n\t\t\t\t{\n\t\t\t\t\tsAttr = \"\";\n\t\t\t\t\tj = 2;\n\t\t\t\t\twhile ( aDom[i+j] != cNext )\n\t\t\t\t\t{\n\t\t\t\t\t\tsAttr += aDom[i+j];\n\t\t\t\t\t\tj++;\n\t\t\t\t\t}\n\t\n\t\t\t\t\t/* Replace jQuery UI constants @todo depreciated */\n\t\t\t\t\tif ( sAttr == \"H\" )\n\t\t\t\t\t{\n\t\t\t\t\t\tsAttr = classes.sJUIHeader;\n\t\t\t\t\t}\n\t\t\t\t\telse if ( sAttr == \"F\" )\n\t\t\t\t\t{\n\t\t\t\t\t\tsAttr = classes.sJUIFooter;\n\t\t\t\t\t}\n\t\n\t\t\t\t\t/* The attribute can be in the format of \"#id.class\", \"#id\" or \"class\" This logic\n\t\t\t\t\t * breaks the string into parts and applies them as needed\n\t\t\t\t\t */\n\t\t\t\t\tif ( sAttr.indexOf('.') != -1 )\n\t\t\t\t\t{\n\t\t\t\t\t\tvar aSplit = sAttr.split('.');\n\t\t\t\t\t\tnNewNode.id = aSplit[0].substr(1, aSplit[0].length-1);\n\t\t\t\t\t\tnNewNode.className = aSplit[1];\n\t\t\t\t\t}\n\t\t\t\t\telse if ( sAttr.charAt(0) == \"#\" )\n\t\t\t\t\t{\n\t\t\t\t\t\tnNewNode.id = sAttr.substr(1, sAttr.length-1);\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tnNewNode.className = sAttr;\n\t\t\t\t\t}\n\t\n\t\t\t\t\ti += j; /* Move along the position array */\n\t\t\t\t}\n\t\n\t\t\t\tinsert.append( nNewNode );\n\t\t\t\tinsert = $(nNewNode);\n\t\t\t}\n\t\t\telse if ( cOption == '>' )\n\t\t\t{\n\t\t\t\t/* End container div */\n\t\t\t\tinsert = insert.parent();\n\t\t\t}\n\t\t\t// @todo Move options into their own plugins?\n\t\t\telse if ( cOption == 'l' && features.bPaginate && features.bLengthChange )\n\t\t\t{\n\t\t\t\t/* Length */\n\t\t\t\tfeatureNode = _fnFeatureHtmlLength( oSettings );\n\t\t\t}\n\t\t\telse if ( cOption == 'f' && features.bFilter )\n\t\t\t{\n\t\t\t\t/* Filter */\n\t\t\t\tfeatureNode = _fnFeatureHtmlFilter( oSettings );\n\t\t\t}\n\t\t\telse if ( cOption == 'r' && features.bProcessing )\n\t\t\t{\n\t\t\t\t/* pRocessing */\n\t\t\t\tfeatureNode = _fnFeatureHtmlProcessing( oSettings );\n\t\t\t}\n\t\t\telse if ( cOption == 't' )\n\t\t\t{\n\t\t\t\t/* Table */\n\t\t\t\tfeatureNode = _fnFeatureHtmlTable( oSettings );\n\t\t\t}\n\t\t\telse if ( cOption ==  'i' && features.bInfo )\n\t\t\t{\n\t\t\t\t/* Info */\n\t\t\t\tfeatureNode = _fnFeatureHtmlInfo( oSettings );\n\t\t\t}\n\t\t\telse if ( cOption == 'p' && features.bPaginate )\n\t\t\t{\n\t\t\t\t/* Pagination */\n\t\t\t\tfeatureNode = _fnFeatureHtmlPaginate( oSettings );\n\t\t\t}\n\t\t\telse if ( DataTable.ext.feature.length !== 0 )\n\t\t\t{\n\t\t\t\t/* Plug-in features */\n\t\t\t\tvar aoFeatures = DataTable.ext.feature;\n\t\t\t\tfor ( var k=0, kLen=aoFeatures.length ; k<kLen ; k++ )\n\t\t\t\t{\n\t\t\t\t\tif ( cOption == aoFeatures[k].cFeature )\n\t\t\t\t\t{\n\t\t\t\t\t\tfeatureNode = aoFeatures[k].fnInit( oSettings );\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\t/* Add to the 2D features array */\n\t\t\tif ( featureNode )\n\t\t\t{\n\t\t\t\tvar aanFeatures = oSettings.aanFeatures;\n\t\n\t\t\t\tif ( ! aanFeatures[cOption] )\n\t\t\t\t{\n\t\t\t\t\taanFeatures[cOption] = [];\n\t\t\t\t}\n\t\n\t\t\t\taanFeatures[cOption].push( featureNode );\n\t\t\t\tinsert.append( featureNode );\n\t\t\t}\n\t\t}\n\t\n\t\t/* Built our DOM structure - replace the holding div with what we want */\n\t\tholding.replaceWith( insert );\n\t}\n\t\n\t\n\t/**\n\t * Use the DOM source to create up an array of header cells. The idea here is to\n\t * create a layout grid (array) of rows x columns, which contains a reference\n\t * to the cell that that point in the grid (regardless of col/rowspan), such that\n\t * any column / row could be removed and the new grid constructed\n\t *  @param array {object} aLayout Array to store the calculated layout in\n\t *  @param {node} nThead The header/footer element for the table\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnDetectHeader ( aLayout, nThead )\n\t{\n\t\tvar nTrs = $(nThead).children('tr');\n\t\tvar nTr, nCell;\n\t\tvar i, k, l, iLen, jLen, iColShifted, iColumn, iColspan, iRowspan;\n\t\tvar bUnique;\n\t\tvar fnShiftCol = function ( a, i, j ) {\n\t\t\tvar k = a[i];\n\t                while ( k[j] ) {\n\t\t\t\tj++;\n\t\t\t}\n\t\t\treturn j;\n\t\t};\n\t\n\t\taLayout.splice( 0, aLayout.length );\n\t\n\t\t/* We know how many rows there are in the layout - so prep it */\n\t\tfor ( i=0, iLen=nTrs.length ; i<iLen ; i++ )\n\t\t{\n\t\t\taLayout.push( [] );\n\t\t}\n\t\n\t\t/* Calculate a layout array */\n\t\tfor ( i=0, iLen=nTrs.length ; i<iLen ; i++ )\n\t\t{\n\t\t\tnTr = nTrs[i];\n\t\t\tiColumn = 0;\n\t\n\t\t\t/* For every cell in the row... */\n\t\t\tnCell = nTr.firstChild;\n\t\t\twhile ( nCell ) {\n\t\t\t\tif ( nCell.nodeName.toUpperCase() == \"TD\" ||\n\t\t\t\t     nCell.nodeName.toUpperCase() == \"TH\" )\n\t\t\t\t{\n\t\t\t\t\t/* Get the col and rowspan attributes from the DOM and sanitise them */\n\t\t\t\t\tiColspan = nCell.getAttribute('colspan') * 1;\n\t\t\t\t\tiRowspan = nCell.getAttribute('rowspan') * 1;\n\t\t\t\t\tiColspan = (!iColspan || iColspan===0 || iColspan===1) ? 1 : iColspan;\n\t\t\t\t\tiRowspan = (!iRowspan || iRowspan===0 || iRowspan===1) ? 1 : iRowspan;\n\t\n\t\t\t\t\t/* There might be colspan cells already in this row, so shift our target\n\t\t\t\t\t * accordingly\n\t\t\t\t\t */\n\t\t\t\t\tiColShifted = fnShiftCol( aLayout, i, iColumn );\n\t\n\t\t\t\t\t/* Cache calculation for unique columns */\n\t\t\t\t\tbUnique = iColspan === 1 ? true : false;\n\t\n\t\t\t\t\t/* If there is col / rowspan, copy the information into the layout grid */\n\t\t\t\t\tfor ( l=0 ; l<iColspan ; l++ )\n\t\t\t\t\t{\n\t\t\t\t\t\tfor ( k=0 ; k<iRowspan ; k++ )\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\taLayout[i+k][iColShifted+l] = {\n\t\t\t\t\t\t\t\t\"cell\": nCell,\n\t\t\t\t\t\t\t\t\"unique\": bUnique\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\taLayout[i+k].nTr = nTr;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tnCell = nCell.nextSibling;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Get an array of unique th elements, one for each column\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {node} nHeader automatically detect the layout from this node - optional\n\t *  @param {array} aLayout thead/tfoot layout from _fnDetectHeader - optional\n\t *  @returns array {node} aReturn list of unique th's\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnGetUniqueThs ( oSettings, nHeader, aLayout )\n\t{\n\t\tvar aReturn = [];\n\t\tif ( !aLayout )\n\t\t{\n\t\t\taLayout = oSettings.aoHeader;\n\t\t\tif ( nHeader )\n\t\t\t{\n\t\t\t\taLayout = [];\n\t\t\t\t_fnDetectHeader( aLayout, nHeader );\n\t\t\t}\n\t\t}\n\t\n\t\tfor ( var i=0, iLen=aLayout.length ; i<iLen ; i++ )\n\t\t{\n\t\t\tfor ( var j=0, jLen=aLayout[i].length ; j<jLen ; j++ )\n\t\t\t{\n\t\t\t\tif ( aLayout[i][j].unique &&\n\t\t\t\t\t (!aReturn[j] || !oSettings.bSortCellsTop) )\n\t\t\t\t{\n\t\t\t\t\taReturn[j] = aLayout[i][j].cell;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\treturn aReturn;\n\t}\n\t\n\t\n\t\n\t/**\n\t * Create an Ajax call based on the table's settings, taking into account that\n\t * parameters can have multiple forms, and backwards compatibility.\n\t *\n\t * @param {object} oSettings dataTables settings object\n\t * @param {array} data Data to send to the server, required by\n\t *     DataTables - may be augmented by developer callbacks\n\t * @param {function} fn Callback function to run when data is obtained\n\t */\n\tfunction _fnBuildAjax( oSettings, data, fn )\n\t{\n\t\t// Compatibility with 1.9-, allow fnServerData and event to manipulate\n\t\t_fnCallbackFire( oSettings, 'aoServerParams', 'serverParams', [data] );\n\t\n\t\t// Convert to object based for 1.10+ if using the old array scheme which can\n\t\t// come from server-side processing or serverParams\n\t\tif ( data && $.isArray(data) ) {\n\t\t\tvar tmp = {};\n\t\t\tvar rbracket = /(.*?)\\[\\]$/;\n\t\n\t\t\t$.each( data, function (key, val) {\n\t\t\t\tvar match = val.name.match(rbracket);\n\t\n\t\t\t\tif ( match ) {\n\t\t\t\t\t// Support for arrays\n\t\t\t\t\tvar name = match[0];\n\t\n\t\t\t\t\tif ( ! tmp[ name ] ) {\n\t\t\t\t\t\ttmp[ name ] = [];\n\t\t\t\t\t}\n\t\t\t\t\ttmp[ name ].push( val.value );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\ttmp[val.name] = val.value;\n\t\t\t\t}\n\t\t\t} );\n\t\t\tdata = tmp;\n\t\t}\n\t\n\t\tvar ajaxData;\n\t\tvar ajax = oSettings.ajax;\n\t\tvar instance = oSettings.oInstance;\n\t\n\t\tif ( $.isPlainObject( ajax ) && ajax.data )\n\t\t{\n\t\t\tajaxData = ajax.data;\n\t\n\t\t\tvar newData = $.isFunction( ajaxData ) ?\n\t\t\t\tajaxData( data ) :  // fn can manipulate data or return an object\n\t\t\t\tajaxData;           // object or array to merge\n\t\n\t\t\t// If the function returned an object, use that alone\n\t\t\tdata = $.isFunction( ajaxData ) && newData ?\n\t\t\t\tnewData :\n\t\t\t\t$.extend( true, data, newData );\n\t\n\t\t\t// Remove the data property as we've resolved it already and don't want\n\t\t\t// jQuery to do it again (it is restored at the end of the function)\n\t\t\tdelete ajax.data;\n\t\t}\n\t\n\t\tvar baseAjax = {\n\t\t\t\"data\": data,\n\t\t\t\"success\": function (json) {\n\t\t\t\tvar error = json.error || json.sError;\n\t\t\t\tif ( error ) {\n\t\t\t\t\toSettings.oApi._fnLog( oSettings, 0, error );\n\t\t\t\t}\n\t\n\t\t\t\toSettings.json = json;\n\t\t\t\t_fnCallbackFire( oSettings, null, 'xhr', [oSettings, json] );\n\t\t\t\tfn( json );\n\t\t\t},\n\t\t\t\"dataType\": \"json\",\n\t\t\t\"cache\": false,\n\t\t\t\"type\": oSettings.sServerMethod,\n\t\t\t\"error\": function (xhr, error, thrown) {\n\t\t\t\tvar log = oSettings.oApi._fnLog;\n\t\n\t\t\t\tif ( error == \"parsererror\" ) {\n\t\t\t\t\tlog( oSettings, 0, 'Invalid JSON response', 1 );\n\t\t\t\t}\n\t\t\t\telse if ( xhr.readyState === 4 ) {\n\t\t\t\t\tlog( oSettings, 0, 'Ajax error', 7 );\n\t\t\t\t}\n\t\n\t\t\t\t_fnProcessingDisplay( oSettings, false );\n\t\t\t}\n\t\t};\n\t\n\t\t// Store the data submitted for the API\n\t\toSettings.oAjaxData = data;\n\t\n\t\t// Allow plug-ins and external processes to modify the data\n\t\t_fnCallbackFire( oSettings, null, 'preXhr', [oSettings, data] );\n\t\n\t\tif ( oSettings.fnServerData )\n\t\t{\n\t\t\t// DataTables 1.9- compatibility\n\t\t\toSettings.fnServerData.call( instance,\n\t\t\t\toSettings.sAjaxSource,\n\t\t\t\t$.map( data, function (val, key) { // Need to convert back to 1.9 trad format\n\t\t\t\t\treturn { name: key, value: val };\n\t\t\t\t} ),\n\t\t\t\tfn,\n\t\t\t\toSettings\n\t\t\t);\n\t\t}\n\t\telse if ( oSettings.sAjaxSource || typeof ajax === 'string' )\n\t\t{\n\t\t\t// DataTables 1.9- compatibility\n\t\t\toSettings.jqXHR = $.ajax( $.extend( baseAjax, {\n\t\t\t\turl: ajax || oSettings.sAjaxSource\n\t\t\t} ) );\n\t\t}\n\t\telse if ( $.isFunction( ajax ) )\n\t\t{\n\t\t\t// Is a function - let the caller define what needs to be done\n\t\t\toSettings.jqXHR = ajax.call( instance, data, fn, oSettings );\n\t\t}\n\t\telse\n\t\t{\n\t\t\t// Object to extend the base settings\n\t\t\toSettings.jqXHR = $.ajax( $.extend( baseAjax, ajax ) );\n\t\n\t\t\t// Restore for next time around\n\t\t\tajax.data = ajaxData;\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Update the table using an Ajax call\n\t *  @param {object} settings dataTables settings object\n\t *  @returns {boolean} Block the table drawing or not\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnAjaxUpdate( settings )\n\t{\n\t\tif ( settings.bAjaxDataGet ) {\n\t\t\tsettings.iDraw++;\n\t\t\t_fnProcessingDisplay( settings, true );\n\t\n\t\t\t_fnBuildAjax(\n\t\t\t\tsettings,\n\t\t\t\t_fnAjaxParameters( settings ),\n\t\t\t\tfunction(json) {\n\t\t\t\t\t_fnAjaxUpdateDraw( settings, json );\n\t\t\t\t}\n\t\t\t);\n\t\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t}\n\t\n\t\n\t/**\n\t * Build up the parameters in an object needed for a server-side processing\n\t * request. Note that this is basically done twice, is different ways - a modern\n\t * method which is used by default in DataTables 1.10 which uses objects and\n\t * arrays, or the 1.9- method with is name / value pairs. 1.9 method is used if\n\t * the sAjaxSource option is used in the initialisation, or the legacyAjax\n\t * option is set.\n\t *  @param {object} oSettings dataTables settings object\n\t *  @returns {bool} block the table drawing or not\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnAjaxParameters( settings )\n\t{\n\t\tvar\n\t\t\tcolumns = settings.aoColumns,\n\t\t\tcolumnCount = columns.length,\n\t\t\tfeatures = settings.oFeatures,\n\t\t\tpreSearch = settings.oPreviousSearch,\n\t\t\tpreColSearch = settings.aoPreSearchCols,\n\t\t\ti, data = [], dataProp, column, columnSearch,\n\t\t\tsort = _fnSortFlatten( settings ),\n\t\t\tdisplayStart = settings._iDisplayStart,\n\t\t\tdisplayLength = features.bPaginate !== false ?\n\t\t\t\tsettings._iDisplayLength :\n\t\t\t\t-1;\n\t\n\t\tvar param = function ( name, value ) {\n\t\t\tdata.push( { 'name': name, 'value': value } );\n\t\t};\n\t\n\t\t// DataTables 1.9- compatible method\n\t\tparam( 'sEcho',          settings.iDraw );\n\t\tparam( 'iColumns',       columnCount );\n\t\tparam( 'sColumns',       _pluck( columns, 'sName' ).join(',') );\n\t\tparam( 'iDisplayStart',  displayStart );\n\t\tparam( 'iDisplayLength', displayLength );\n\t\n\t\t// DataTables 1.10+ method\n\t\tvar d = {\n\t\t\tdraw:    settings.iDraw,\n\t\t\tcolumns: [],\n\t\t\torder:   [],\n\t\t\tstart:   displayStart,\n\t\t\tlength:  displayLength,\n\t\t\tsearch:  {\n\t\t\t\tvalue: preSearch.sSearch,\n\t\t\t\tregex: preSearch.bRegex\n\t\t\t}\n\t\t};\n\t\n\t\tfor ( i=0 ; i<columnCount ; i++ ) {\n\t\t\tcolumn = columns[i];\n\t\t\tcolumnSearch = preColSearch[i];\n\t\t\tdataProp = typeof column.mData==\"function\" ? 'function' : column.mData ;\n\t\n\t\t\td.columns.push( {\n\t\t\t\tdata:       dataProp,\n\t\t\t\tname:       column.sName,\n\t\t\t\tsearchable: column.bSearchable,\n\t\t\t\torderable:  column.bSortable,\n\t\t\t\tsearch:     {\n\t\t\t\t\tvalue: columnSearch.sSearch,\n\t\t\t\t\tregex: columnSearch.bRegex\n\t\t\t\t}\n\t\t\t} );\n\t\n\t\t\tparam( \"mDataProp_\"+i, dataProp );\n\t\n\t\t\tif ( features.bFilter ) {\n\t\t\t\tparam( 'sSearch_'+i,     columnSearch.sSearch );\n\t\t\t\tparam( 'bRegex_'+i,      columnSearch.bRegex );\n\t\t\t\tparam( 'bSearchable_'+i, column.bSearchable );\n\t\t\t}\n\t\n\t\t\tif ( features.bSort ) {\n\t\t\t\tparam( 'bSortable_'+i, column.bSortable );\n\t\t\t}\n\t\t}\n\t\n\t\tif ( features.bFilter ) {\n\t\t\tparam( 'sSearch', preSearch.sSearch );\n\t\t\tparam( 'bRegex', preSearch.bRegex );\n\t\t}\n\t\n\t\tif ( features.bSort ) {\n\t\t\t$.each( sort, function ( i, val ) {\n\t\t\t\td.order.push( { column: val.col, dir: val.dir } );\n\t\n\t\t\t\tparam( 'iSortCol_'+i, val.col );\n\t\t\t\tparam( 'sSortDir_'+i, val.dir );\n\t\t\t} );\n\t\n\t\t\tparam( 'iSortingCols', sort.length );\n\t\t}\n\t\n\t\t// If the legacy.ajax parameter is null, then we automatically decide which\n\t\t// form to use, based on sAjaxSource\n\t\tvar legacy = DataTable.ext.legacy.ajax;\n\t\tif ( legacy === null ) {\n\t\t\treturn settings.sAjaxSource ? data : d;\n\t\t}\n\t\n\t\t// Otherwise, if legacy has been specified then we use that to decide on the\n\t\t// form\n\t\treturn legacy ? data : d;\n\t}\n\t\n\t\n\t/**\n\t * Data the data from the server (nuking the old) and redraw the table\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {object} json json data return from the server.\n\t *  @param {string} json.sEcho Tracking flag for DataTables to match requests\n\t *  @param {int} json.iTotalRecords Number of records in the data set, not accounting for filtering\n\t *  @param {int} json.iTotalDisplayRecords Number of records in the data set, accounting for filtering\n\t *  @param {array} json.aaData The data to display on this page\n\t *  @param {string} [json.sColumns] Column ordering (sName, comma separated)\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnAjaxUpdateDraw ( settings, json )\n\t{\n\t\t// v1.10 uses camelCase variables, while 1.9 uses Hungarian notation.\n\t\t// Support both\n\t\tvar compat = function ( old, modern ) {\n\t\t\treturn json[old] !== undefined ? json[old] : json[modern];\n\t\t};\n\t\n\t\tvar draw            = compat( 'sEcho',                'draw' );\n\t\tvar recordsTotal    = compat( 'iTotalRecords',        'recordsTotal' );\n\t\tvar recordsFiltered = compat( 'iTotalDisplayRecords', 'recordsFiltered' );\n\t\n\t\tif ( draw ) {\n\t\t\t// Protect against out of sequence returns\n\t\t\tif ( draw*1 < settings.iDraw ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tsettings.iDraw = draw * 1;\n\t\t}\n\t\n\t\t_fnClearTable( settings );\n\t\tsettings._iRecordsTotal   = parseInt(recordsTotal, 10);\n\t\tsettings._iRecordsDisplay = parseInt(recordsFiltered, 10);\n\t\n\t\tvar data = _fnAjaxDataSrc( settings, json );\n\t\tfor ( var i=0, ien=data.length ; i<ien ; i++ ) {\n\t\t\t_fnAddData( settings, data[i] );\n\t\t}\n\t\tsettings.aiDisplay = settings.aiDisplayMaster.slice();\n\t\n\t\tsettings.bAjaxDataGet = false;\n\t\t_fnDraw( settings );\n\t\n\t\tif ( ! settings._bInitComplete ) {\n\t\t\t_fnInitComplete( settings, json );\n\t\t}\n\t\n\t\tsettings.bAjaxDataGet = true;\n\t\t_fnProcessingDisplay( settings, false );\n\t}\n\t\n\t\n\t/**\n\t * Get the data from the JSON data source to use for drawing a table. Using\n\t * `_fnGetObjectDataFn` allows the data to be sourced from a property of the\n\t * source object, or from a processing function.\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param  {object} json Data source object / array from the server\n\t *  @return {array} Array of data to use\n\t */\n\tfunction _fnAjaxDataSrc ( oSettings, json )\n\t{\n\t\tvar dataSrc = $.isPlainObject( oSettings.ajax ) && oSettings.ajax.dataSrc !== undefined ?\n\t\t\toSettings.ajax.dataSrc :\n\t\t\toSettings.sAjaxDataProp; // Compatibility with 1.9-.\n\t\n\t\t// Compatibility with 1.9-. In order to read from aaData, check if the\n\t\t// default has been changed, if not, check for aaData\n\t\tif ( dataSrc === 'data' ) {\n\t\t\treturn json.aaData || json[dataSrc];\n\t\t}\n\t\n\t\treturn dataSrc !== \"\" ?\n\t\t\t_fnGetObjectDataFn( dataSrc )( json ) :\n\t\t\tjson;\n\t}\n\t\n\t\n\t/**\n\t * Generate the node required for filtering text\n\t *  @returns {node} Filter control element\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFeatureHtmlFilter ( settings )\n\t{\n\t\tvar classes = settings.oClasses;\n\t\tvar tableId = settings.sTableId;\n\t\tvar language = settings.oLanguage;\n\t\tvar previousSearch = settings.oPreviousSearch;\n\t\tvar features = settings.aanFeatures;\n\t\tvar input = '<input type=\"search\" class=\"'+classes.sFilterInput+'\"/>';\n\t\n\t\tvar str = language.sSearch;\n\t\tstr = str.match(/_INPUT_/) ?\n\t\t\tstr.replace('_INPUT_', input) :\n\t\t\tstr+input;\n\t\n\t\tvar filter = $('<div/>', {\n\t\t\t\t'id': ! features.f ? tableId+'_filter' : null,\n\t\t\t\t'class': classes.sFilter\n\t\t\t} )\n\t\t\t.append( $('<label/>' ).append( str ) );\n\t\n\t\tvar searchFn = function() {\n\t\t\t/* Update all other filter input elements for the new display */\n\t\t\tvar n = features.f;\n\t\t\tvar val = !this.value ? \"\" : this.value; // mental IE8 fix :-(\n\t\n\t\t\t/* Now do the filter */\n\t\t\tif ( val != previousSearch.sSearch ) {\n\t\t\t\t_fnFilterComplete( settings, {\n\t\t\t\t\t\"sSearch\": val,\n\t\t\t\t\t\"bRegex\": previousSearch.bRegex,\n\t\t\t\t\t\"bSmart\": previousSearch.bSmart ,\n\t\t\t\t\t\"bCaseInsensitive\": previousSearch.bCaseInsensitive\n\t\t\t\t} );\n\t\n\t\t\t\t// Need to redraw, without resorting\n\t\t\t\tsettings._iDisplayStart = 0;\n\t\t\t\t_fnDraw( settings );\n\t\t\t}\n\t\t};\n\t\n\t\tvar searchDelay = settings.searchDelay !== null ?\n\t\t\tsettings.searchDelay :\n\t\t\t_fnDataSource( settings ) === 'ssp' ?\n\t\t\t\t400 :\n\t\t\t\t0;\n\t\n\t\tvar jqFilter = $('input', filter)\n\t\t\t.val( previousSearch.sSearch )\n\t\t\t.attr( 'placeholder', language.sSearchPlaceholder )\n\t\t\t.bind(\n\t\t\t\t'keyup.DT search.DT input.DT paste.DT cut.DT',\n\t\t\t\tsearchDelay ?\n\t\t\t\t\t_fnThrottle( searchFn, searchDelay ) :\n\t\t\t\t\tsearchFn\n\t\t\t)\n\t\t\t.bind( 'keypress.DT', function(e) {\n\t\t\t\t/* Prevent form submission */\n\t\t\t\tif ( e.keyCode == 13 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t} )\n\t\t\t.attr('aria-controls', tableId);\n\t\n\t\t// Update the input elements whenever the table is filtered\n\t\t$(settings.nTable).on( 'search.dt.DT', function ( ev, s ) {\n\t\t\tif ( settings === s ) {\n\t\t\t\t// IE9 throws an 'unknown error' if document.activeElement is used\n\t\t\t\t// inside an iframe or frame...\n\t\t\t\ttry {\n\t\t\t\t\tif ( jqFilter[0] !== document.activeElement ) {\n\t\t\t\t\t\tjqFilter.val( previousSearch.sSearch );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcatch ( e ) {}\n\t\t\t}\n\t\t} );\n\t\n\t\treturn filter[0];\n\t}\n\t\n\t\n\t/**\n\t * Filter the table using both the global filter and column based filtering\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {object} oSearch search information\n\t *  @param {int} [iForce] force a research of the master array (1) or not (undefined or 0)\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFilterComplete ( oSettings, oInput, iForce )\n\t{\n\t\tvar oPrevSearch = oSettings.oPreviousSearch;\n\t\tvar aoPrevSearch = oSettings.aoPreSearchCols;\n\t\tvar fnSaveFilter = function ( oFilter ) {\n\t\t\t/* Save the filtering values */\n\t\t\toPrevSearch.sSearch = oFilter.sSearch;\n\t\t\toPrevSearch.bRegex = oFilter.bRegex;\n\t\t\toPrevSearch.bSmart = oFilter.bSmart;\n\t\t\toPrevSearch.bCaseInsensitive = oFilter.bCaseInsensitive;\n\t\t};\n\t\tvar fnRegex = function ( o ) {\n\t\t\t// Backwards compatibility with the bEscapeRegex option\n\t\t\treturn o.bEscapeRegex !== undefined ? !o.bEscapeRegex : o.bRegex;\n\t\t};\n\t\n\t\t// Resolve any column types that are unknown due to addition or invalidation\n\t\t// @todo As per sort - can this be moved into an event handler?\n\t\t_fnColumnTypes( oSettings );\n\t\n\t\t/* In server-side processing all filtering is done by the server, so no point hanging around here */\n\t\tif ( _fnDataSource( oSettings ) != 'ssp' )\n\t\t{\n\t\t\t/* Global filter */\n\t\t\t_fnFilter( oSettings, oInput.sSearch, iForce, fnRegex(oInput), oInput.bSmart, oInput.bCaseInsensitive );\n\t\t\tfnSaveFilter( oInput );\n\t\n\t\t\t/* Now do the individual column filter */\n\t\t\tfor ( var i=0 ; i<aoPrevSearch.length ; i++ )\n\t\t\t{\n\t\t\t\t_fnFilterColumn( oSettings, aoPrevSearch[i].sSearch, i, fnRegex(aoPrevSearch[i]),\n\t\t\t\t\taoPrevSearch[i].bSmart, aoPrevSearch[i].bCaseInsensitive );\n\t\t\t}\n\t\n\t\t\t/* Custom filtering */\n\t\t\t_fnFilterCustom( oSettings );\n\t\t}\n\t\telse\n\t\t{\n\t\t\tfnSaveFilter( oInput );\n\t\t}\n\t\n\t\t/* Tell the draw function we have been filtering */\n\t\toSettings.bFiltered = true;\n\t\t_fnCallbackFire( oSettings, null, 'search', [oSettings] );\n\t}\n\t\n\t\n\t/**\n\t * Apply custom filtering functions\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFilterCustom( settings )\n\t{\n\t\tvar filters = DataTable.ext.search;\n\t\tvar displayRows = settings.aiDisplay;\n\t\tvar row, rowIdx;\n\t\n\t\tfor ( var i=0, ien=filters.length ; i<ien ; i++ ) {\n\t\t\tvar rows = [];\n\t\n\t\t\t// Loop over each row and see if it should be included\n\t\t\tfor ( var j=0, jen=displayRows.length ; j<jen ; j++ ) {\n\t\t\t\trowIdx = displayRows[ j ];\n\t\t\t\trow = settings.aoData[ rowIdx ];\n\t\n\t\t\t\tif ( filters[i]( settings, row._aFilterData, rowIdx, row._aData, j ) ) {\n\t\t\t\t\trows.push( rowIdx );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\t// So the array reference doesn't break set the results into the\n\t\t\t// existing array\n\t\t\tdisplayRows.length = 0;\n\t\t\tdisplayRows.push.apply( displayRows, rows );\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Filter the table on a per-column basis\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {string} sInput string to filter on\n\t *  @param {int} iColumn column to filter\n\t *  @param {bool} bRegex treat search string as a regular expression or not\n\t *  @param {bool} bSmart use smart filtering or not\n\t *  @param {bool} bCaseInsensitive Do case insenstive matching or not\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFilterColumn ( settings, searchStr, colIdx, regex, smart, caseInsensitive )\n\t{\n\t\tif ( searchStr === '' ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tvar data;\n\t\tvar display = settings.aiDisplay;\n\t\tvar rpSearch = _fnFilterCreateSearch( searchStr, regex, smart, caseInsensitive );\n\t\n\t\tfor ( var i=display.length-1 ; i>=0 ; i-- ) {\n\t\t\tdata = settings.aoData[ display[i] ]._aFilterData[ colIdx ];\n\t\n\t\t\tif ( ! rpSearch.test( data ) ) {\n\t\t\t\tdisplay.splice( i, 1 );\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Filter the data table based on user input and draw the table\n\t *  @param {object} settings dataTables settings object\n\t *  @param {string} input string to filter on\n\t *  @param {int} force optional - force a research of the master array (1) or not (undefined or 0)\n\t *  @param {bool} regex treat as a regular expression or not\n\t *  @param {bool} smart perform smart filtering or not\n\t *  @param {bool} caseInsensitive Do case insenstive matching or not\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFilter( settings, input, force, regex, smart, caseInsensitive )\n\t{\n\t\tvar rpSearch = _fnFilterCreateSearch( input, regex, smart, caseInsensitive );\n\t\tvar prevSearch = settings.oPreviousSearch.sSearch;\n\t\tvar displayMaster = settings.aiDisplayMaster;\n\t\tvar display, invalidated, i;\n\t\n\t\t// Need to take account of custom filtering functions - always filter\n\t\tif ( DataTable.ext.search.length !== 0 ) {\n\t\t\tforce = true;\n\t\t}\n\t\n\t\t// Check if any of the rows were invalidated\n\t\tinvalidated = _fnFilterData( settings );\n\t\n\t\t// If the input is blank - we just want the full data set\n\t\tif ( input.length <= 0 ) {\n\t\t\tsettings.aiDisplay = displayMaster.slice();\n\t\t}\n\t\telse {\n\t\t\t// New search - start from the master array\n\t\t\tif ( invalidated ||\n\t\t\t\t force ||\n\t\t\t\t prevSearch.length > input.length ||\n\t\t\t\t input.indexOf(prevSearch) !== 0 ||\n\t\t\t\t settings.bSorted // On resort, the display master needs to be\n\t\t\t\t                  // re-filtered since indexes will have changed\n\t\t\t) {\n\t\t\t\tsettings.aiDisplay = displayMaster.slice();\n\t\t\t}\n\t\n\t\t\t// Search the display array\n\t\t\tdisplay = settings.aiDisplay;\n\t\n\t\t\tfor ( i=display.length-1 ; i>=0 ; i-- ) {\n\t\t\t\tif ( ! rpSearch.test( settings.aoData[ display[i] ]._sFilterRow ) ) {\n\t\t\t\t\tdisplay.splice( i, 1 );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Build a regular expression object suitable for searching a table\n\t *  @param {string} sSearch string to search for\n\t *  @param {bool} bRegex treat as a regular expression or not\n\t *  @param {bool} bSmart perform smart filtering or not\n\t *  @param {bool} bCaseInsensitive Do case insensitive matching or not\n\t *  @returns {RegExp} constructed object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFilterCreateSearch( search, regex, smart, caseInsensitive )\n\t{\n\t\tsearch = regex ?\n\t\t\tsearch :\n\t\t\t_fnEscapeRegex( search );\n\t\t\n\t\tif ( smart ) {\n\t\t\t/* For smart filtering we want to allow the search to work regardless of\n\t\t\t * word order. We also want double quoted text to be preserved, so word\n\t\t\t * order is important - a la google. So this is what we want to\n\t\t\t * generate:\n\t\t\t * \n\t\t\t * ^(?=.*?\\bone\\b)(?=.*?\\btwo three\\b)(?=.*?\\bfour\\b).*$\n\t\t\t */\n\t\t\tvar a = $.map( search.match( /\"[^\"]+\"|[^ ]+/g ) || '', function ( word ) {\n\t\t\t\tif ( word.charAt(0) === '\"' ) {\n\t\t\t\t\tvar m = word.match( /^\"(.*)\"$/ );\n\t\t\t\t\tword = m ? m[1] : word;\n\t\t\t\t}\n\t\n\t\t\t\treturn word.replace('\"', '');\n\t\t\t} );\n\t\n\t\t\tsearch = '^(?=.*?'+a.join( ')(?=.*?' )+').*$';\n\t\t}\n\t\n\t\treturn new RegExp( search, caseInsensitive ? 'i' : '' );\n\t}\n\t\n\t\n\t/**\n\t * Escape a string such that it can be used in a regular expression\n\t *  @param {string} sVal string to escape\n\t *  @returns {string} escaped string\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnEscapeRegex ( sVal )\n\t{\n\t\treturn sVal.replace( _re_escape_regex, '\\\\$1' );\n\t}\n\t\n\t\n\t\n\tvar __filter_div = $('<div>')[0];\n\tvar __filter_div_textContent = __filter_div.textContent !== undefined;\n\t\n\t// Update the filtering data for each row if needed (by invalidation or first run)\n\tfunction _fnFilterData ( settings )\n\t{\n\t\tvar columns = settings.aoColumns;\n\t\tvar column;\n\t\tvar i, j, ien, jen, filterData, cellData, row;\n\t\tvar fomatters = DataTable.ext.type.search;\n\t\tvar wasInvalidated = false;\n\t\n\t\tfor ( i=0, ien=settings.aoData.length ; i<ien ; i++ ) {\n\t\t\trow = settings.aoData[i];\n\t\n\t\t\tif ( ! row._aFilterData ) {\n\t\t\t\tfilterData = [];\n\t\n\t\t\t\tfor ( j=0, jen=columns.length ; j<jen ; j++ ) {\n\t\t\t\t\tcolumn = columns[j];\n\t\n\t\t\t\t\tif ( column.bSearchable ) {\n\t\t\t\t\t\tcellData = _fnGetCellData( settings, i, j, 'filter' );\n\t\n\t\t\t\t\t\tif ( fomatters[ column.sType ] ) {\n\t\t\t\t\t\t\tcellData = fomatters[ column.sType ]( cellData );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t// Search in DataTables 1.10 is string based. In 1.11 this\n\t\t\t\t\t\t// should be altered to also allow strict type checking.\n\t\t\t\t\t\tif ( cellData === null ) {\n\t\t\t\t\t\t\tcellData = '';\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tif ( typeof cellData !== 'string' && cellData.toString ) {\n\t\t\t\t\t\t\tcellData = cellData.toString();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tcellData = '';\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// If it looks like there is an HTML entity in the string,\n\t\t\t\t\t// attempt to decode it so sorting works as expected. Note that\n\t\t\t\t\t// we could use a single line of jQuery to do this, but the DOM\n\t\t\t\t\t// method used here is much faster http://jsperf.com/html-decode\n\t\t\t\t\tif ( cellData.indexOf && cellData.indexOf('&') !== -1 ) {\n\t\t\t\t\t\t__filter_div.innerHTML = cellData;\n\t\t\t\t\t\tcellData = __filter_div_textContent ?\n\t\t\t\t\t\t\t__filter_div.textContent :\n\t\t\t\t\t\t\t__filter_div.innerText;\n\t\t\t\t\t}\n\t\n\t\t\t\t\tif ( cellData.replace ) {\n\t\t\t\t\t\tcellData = cellData.replace(/[\\r\\n]/g, '');\n\t\t\t\t\t}\n\t\n\t\t\t\t\tfilterData.push( cellData );\n\t\t\t\t}\n\t\n\t\t\t\trow._aFilterData = filterData;\n\t\t\t\trow._sFilterRow = filterData.join('  ');\n\t\t\t\twasInvalidated = true;\n\t\t\t}\n\t\t}\n\t\n\t\treturn wasInvalidated;\n\t}\n\t\n\t\n\t/**\n\t * Convert from the internal Hungarian notation to camelCase for external\n\t * interaction\n\t *  @param {object} obj Object to convert\n\t *  @returns {object} Inverted object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSearchToCamel ( obj )\n\t{\n\t\treturn {\n\t\t\tsearch:          obj.sSearch,\n\t\t\tsmart:           obj.bSmart,\n\t\t\tregex:           obj.bRegex,\n\t\t\tcaseInsensitive: obj.bCaseInsensitive\n\t\t};\n\t}\n\t\n\t\n\t\n\t/**\n\t * Convert from camelCase notation to the internal Hungarian. We could use the\n\t * Hungarian convert function here, but this is cleaner\n\t *  @param {object} obj Object to convert\n\t *  @returns {object} Inverted object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSearchToHung ( obj )\n\t{\n\t\treturn {\n\t\t\tsSearch:          obj.search,\n\t\t\tbSmart:           obj.smart,\n\t\t\tbRegex:           obj.regex,\n\t\t\tbCaseInsensitive: obj.caseInsensitive\n\t\t};\n\t}\n\t\n\t/**\n\t * Generate the node required for the info display\n\t *  @param {object} oSettings dataTables settings object\n\t *  @returns {node} Information element\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFeatureHtmlInfo ( settings )\n\t{\n\t\tvar\n\t\t\ttid = settings.sTableId,\n\t\t\tnodes = settings.aanFeatures.i,\n\t\t\tn = $('<div/>', {\n\t\t\t\t'class': settings.oClasses.sInfo,\n\t\t\t\t'id': ! nodes ? tid+'_info' : null\n\t\t\t} );\n\t\n\t\tif ( ! nodes ) {\n\t\t\t// Update display on each draw\n\t\t\tsettings.aoDrawCallback.push( {\n\t\t\t\t\"fn\": _fnUpdateInfo,\n\t\t\t\t\"sName\": \"information\"\n\t\t\t} );\n\t\n\t\t\tn\n\t\t\t\t.attr( 'role', 'status' )\n\t\t\t\t.attr( 'aria-live', 'polite' );\n\t\n\t\t\t// Table is described by our info div\n\t\t\t$(settings.nTable).attr( 'aria-describedby', tid+'_info' );\n\t\t}\n\t\n\t\treturn n[0];\n\t}\n\t\n\t\n\t/**\n\t * Update the information elements in the display\n\t *  @param {object} settings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnUpdateInfo ( settings )\n\t{\n\t\t/* Show information about the table */\n\t\tvar nodes = settings.aanFeatures.i;\n\t\tif ( nodes.length === 0 ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tvar\n\t\t\tlang  = settings.oLanguage,\n\t\t\tstart = settings._iDisplayStart+1,\n\t\t\tend   = settings.fnDisplayEnd(),\n\t\t\tmax   = settings.fnRecordsTotal(),\n\t\t\ttotal = settings.fnRecordsDisplay(),\n\t\t\tout   = total ?\n\t\t\t\tlang.sInfo :\n\t\t\t\tlang.sInfoEmpty;\n\t\n\t\tif ( total !== max ) {\n\t\t\t/* Record set after filtering */\n\t\t\tout += ' ' + lang.sInfoFiltered;\n\t\t}\n\t\n\t\t// Convert the macros\n\t\tout += lang.sInfoPostFix;\n\t\tout = _fnInfoMacros( settings, out );\n\t\n\t\tvar callback = lang.fnInfoCallback;\n\t\tif ( callback !== null ) {\n\t\t\tout = callback.call( settings.oInstance,\n\t\t\t\tsettings, start, end, max, total, out\n\t\t\t);\n\t\t}\n\t\n\t\t$(nodes).html( out );\n\t}\n\t\n\t\n\tfunction _fnInfoMacros ( settings, str )\n\t{\n\t\t// When infinite scrolling, we are always starting at 1. _iDisplayStart is used only\n\t\t// internally\n\t\tvar\n\t\t\tformatter  = settings.fnFormatNumber,\n\t\t\tstart      = settings._iDisplayStart+1,\n\t\t\tlen        = settings._iDisplayLength,\n\t\t\tvis        = settings.fnRecordsDisplay(),\n\t\t\tall        = len === -1;\n\t\n\t\treturn str.\n\t\t\treplace(/_START_/g, formatter.call( settings, start ) ).\n\t\t\treplace(/_END_/g,   formatter.call( settings, settings.fnDisplayEnd() ) ).\n\t\t\treplace(/_MAX_/g,   formatter.call( settings, settings.fnRecordsTotal() ) ).\n\t\t\treplace(/_TOTAL_/g, formatter.call( settings, vis ) ).\n\t\t\treplace(/_PAGE_/g,  formatter.call( settings, all ? 1 : Math.ceil( start / len ) ) ).\n\t\t\treplace(/_PAGES_/g, formatter.call( settings, all ? 1 : Math.ceil( vis / len ) ) );\n\t}\n\t\n\t\n\t\n\t/**\n\t * Draw the table for the first time, adding all required features\n\t *  @param {object} settings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnInitialise ( settings )\n\t{\n\t\tvar i, iLen, iAjaxStart=settings.iInitDisplayStart;\n\t\tvar columns = settings.aoColumns, column;\n\t\tvar features = settings.oFeatures;\n\t\n\t\t/* Ensure that the table data is fully initialised */\n\t\tif ( ! settings.bInitialised ) {\n\t\t\tsetTimeout( function(){ _fnInitialise( settings ); }, 200 );\n\t\t\treturn;\n\t\t}\n\t\n\t\t/* Show the display HTML options */\n\t\t_fnAddOptionsHtml( settings );\n\t\n\t\t/* Build and draw the header / footer for the table */\n\t\t_fnBuildHead( settings );\n\t\t_fnDrawHead( settings, settings.aoHeader );\n\t\t_fnDrawHead( settings, settings.aoFooter );\n\t\n\t\t/* Okay to show that something is going on now */\n\t\t_fnProcessingDisplay( settings, true );\n\t\n\t\t/* Calculate sizes for columns */\n\t\tif ( features.bAutoWidth ) {\n\t\t\t_fnCalculateColumnWidths( settings );\n\t\t}\n\t\n\t\tfor ( i=0, iLen=columns.length ; i<iLen ; i++ ) {\n\t\t\tcolumn = columns[i];\n\t\n\t\t\tif ( column.sWidth ) {\n\t\t\t\tcolumn.nTh.style.width = _fnStringToCss( column.sWidth );\n\t\t\t}\n\t\t}\n\t\n\t\t// If there is default sorting required - let's do it. The sort function\n\t\t// will do the drawing for us. Otherwise we draw the table regardless of the\n\t\t// Ajax source - this allows the table to look initialised for Ajax sourcing\n\t\t// data (show 'loading' message possibly)\n\t\t_fnReDraw( settings );\n\t\n\t\t// Server-side processing init complete is done by _fnAjaxUpdateDraw\n\t\tvar dataSrc = _fnDataSource( settings );\n\t\tif ( dataSrc != 'ssp' ) {\n\t\t\t// if there is an ajax source load the data\n\t\t\tif ( dataSrc == 'ajax' ) {\n\t\t\t\t_fnBuildAjax( settings, [], function(json) {\n\t\t\t\t\tvar aData = _fnAjaxDataSrc( settings, json );\n\t\n\t\t\t\t\t// Got the data - add it to the table\n\t\t\t\t\tfor ( i=0 ; i<aData.length ; i++ ) {\n\t\t\t\t\t\t_fnAddData( settings, aData[i] );\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// Reset the init display for cookie saving. We've already done\n\t\t\t\t\t// a filter, and therefore cleared it before. So we need to make\n\t\t\t\t\t// it appear 'fresh'\n\t\t\t\t\tsettings.iInitDisplayStart = iAjaxStart;\n\t\n\t\t\t\t\t_fnReDraw( settings );\n\t\n\t\t\t\t\t_fnProcessingDisplay( settings, false );\n\t\t\t\t\t_fnInitComplete( settings, json );\n\t\t\t\t}, settings );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t_fnProcessingDisplay( settings, false );\n\t\t\t\t_fnInitComplete( settings );\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Draw the table for the first time, adding all required features\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {object} [json] JSON from the server that completed the table, if using Ajax source\n\t *    with client-side processing (optional)\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnInitComplete ( settings, json )\n\t{\n\t\tsettings._bInitComplete = true;\n\t\n\t\t// On an Ajax load we now have data and therefore want to apply the column\n\t\t// sizing\n\t\tif ( json ) {\n\t\t\t_fnAdjustColumnSizing( settings );\n\t\t}\n\t\n\t\t_fnCallbackFire( settings, 'aoInitComplete', 'init', [settings, json] );\n\t}\n\t\n\t\n\tfunction _fnLengthChange ( settings, val )\n\t{\n\t\tvar len = parseInt( val, 10 );\n\t\tsettings._iDisplayLength = len;\n\t\n\t\t_fnLengthOverflow( settings );\n\t\n\t\t// Fire length change event\n\t\t_fnCallbackFire( settings, null, 'length', [settings, len] );\n\t}\n\t\n\t\n\t/**\n\t * Generate the node required for user display length changing\n\t *  @param {object} settings dataTables settings object\n\t *  @returns {node} Display length feature node\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFeatureHtmlLength ( settings )\n\t{\n\t\tvar\n\t\t\tclasses  = settings.oClasses,\n\t\t\ttableId  = settings.sTableId,\n\t\t\tmenu     = settings.aLengthMenu,\n\t\t\td2       = $.isArray( menu[0] ),\n\t\t\tlengths  = d2 ? menu[0] : menu,\n\t\t\tlanguage = d2 ? menu[1] : menu;\n\t\n\t\tvar select = $('<select/>', {\n\t\t\t'name':          tableId+'_length',\n\t\t\t'aria-controls': tableId,\n\t\t\t'class':         classes.sLengthSelect\n\t\t} );\n\t\n\t\tfor ( var i=0, ien=lengths.length ; i<ien ; i++ ) {\n\t\t\tselect[0][ i ] = new Option( language[i], lengths[i] );\n\t\t}\n\t\n\t\tvar div = $('<div><label/></div>').addClass( classes.sLength );\n\t\tif ( ! settings.aanFeatures.l ) {\n\t\t\tdiv[0].id = tableId+'_length';\n\t\t}\n\t\n\t\tdiv.children().append(\n\t\t\tsettings.oLanguage.sLengthMenu.replace( '_MENU_', select[0].outerHTML )\n\t\t);\n\t\n\t\t// Can't use `select` variable as user might provide their own and the\n\t\t// reference is broken by the use of outerHTML\n\t\t$('select', div)\n\t\t\t.val( settings._iDisplayLength )\n\t\t\t.bind( 'change.DT', function(e) {\n\t\t\t\t_fnLengthChange( settings, $(this).val() );\n\t\t\t\t_fnDraw( settings );\n\t\t\t} );\n\t\n\t\t// Update node value whenever anything changes the table's length\n\t\t$(settings.nTable).bind( 'length.dt.DT', function (e, s, len) {\n\t\t\tif ( settings === s ) {\n\t\t\t\t$('select', div).val( len );\n\t\t\t}\n\t\t} );\n\t\n\t\treturn div[0];\n\t}\n\t\n\t\n\t\n\t/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n\t * Note that most of the paging logic is done in\n\t * DataTable.ext.pager\n\t */\n\t\n\t/**\n\t * Generate the node required for default pagination\n\t *  @param {object} oSettings dataTables settings object\n\t *  @returns {node} Pagination feature node\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFeatureHtmlPaginate ( settings )\n\t{\n\t\tvar\n\t\t\ttype   = settings.sPaginationType,\n\t\t\tplugin = DataTable.ext.pager[ type ],\n\t\t\tmodern = typeof plugin === 'function',\n\t\t\tredraw = function( settings ) {\n\t\t\t\t_fnDraw( settings );\n\t\t\t},\n\t\t\tnode = $('<div/>').addClass( settings.oClasses.sPaging + type )[0],\n\t\t\tfeatures = settings.aanFeatures;\n\t\n\t\tif ( ! modern ) {\n\t\t\tplugin.fnInit( settings, node, redraw );\n\t\t}\n\t\n\t\t/* Add a draw callback for the pagination on first instance, to update the paging display */\n\t\tif ( ! features.p )\n\t\t{\n\t\t\tnode.id = settings.sTableId+'_paginate';\n\t\n\t\t\tsettings.aoDrawCallback.push( {\n\t\t\t\t\"fn\": function( settings ) {\n\t\t\t\t\tif ( modern ) {\n\t\t\t\t\t\tvar\n\t\t\t\t\t\t\tstart      = settings._iDisplayStart,\n\t\t\t\t\t\t\tlen        = settings._iDisplayLength,\n\t\t\t\t\t\t\tvisRecords = settings.fnRecordsDisplay(),\n\t\t\t\t\t\t\tall        = len === -1,\n\t\t\t\t\t\t\tpage = all ? 0 : Math.ceil( start / len ),\n\t\t\t\t\t\t\tpages = all ? 1 : Math.ceil( visRecords / len ),\n\t\t\t\t\t\t\tbuttons = plugin(page, pages),\n\t\t\t\t\t\t\ti, ien;\n\t\n\t\t\t\t\t\tfor ( i=0, ien=features.p.length ; i<ien ; i++ ) {\n\t\t\t\t\t\t\t_fnRenderer( settings, 'pageButton' )(\n\t\t\t\t\t\t\t\tsettings, features.p[i], i, buttons, page, pages\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tplugin.fnUpdate( settings, redraw );\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"sName\": \"pagination\"\n\t\t\t} );\n\t\t}\n\t\n\t\treturn node;\n\t}\n\t\n\t\n\t/**\n\t * Alter the display settings to change the page\n\t *  @param {object} settings DataTables settings object\n\t *  @param {string|int} action Paging action to take: \"first\", \"previous\",\n\t *    \"next\" or \"last\" or page number to jump to (integer)\n\t *  @param [bool] redraw Automatically draw the update or not\n\t *  @returns {bool} true page has changed, false - no change\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnPageChange ( settings, action, redraw )\n\t{\n\t\tvar\n\t\t\tstart     = settings._iDisplayStart,\n\t\t\tlen       = settings._iDisplayLength,\n\t\t\trecords   = settings.fnRecordsDisplay();\n\t\n\t\tif ( records === 0 || len === -1 )\n\t\t{\n\t\t\tstart = 0;\n\t\t}\n\t\telse if ( typeof action === \"number\" )\n\t\t{\n\t\t\tstart = action * len;\n\t\n\t\t\tif ( start > records )\n\t\t\t{\n\t\t\t\tstart = 0;\n\t\t\t}\n\t\t}\n\t\telse if ( action == \"first\" )\n\t\t{\n\t\t\tstart = 0;\n\t\t}\n\t\telse if ( action == \"previous\" )\n\t\t{\n\t\t\tstart = len >= 0 ?\n\t\t\t\tstart - len :\n\t\t\t\t0;\n\t\n\t\t\tif ( start < 0 )\n\t\t\t{\n\t\t\t  start = 0;\n\t\t\t}\n\t\t}\n\t\telse if ( action == \"next\" )\n\t\t{\n\t\t\tif ( start + len < records )\n\t\t\t{\n\t\t\t\tstart += len;\n\t\t\t}\n\t\t}\n\t\telse if ( action == \"last\" )\n\t\t{\n\t\t\tstart = Math.floor( (records-1) / len) * len;\n\t\t}\n\t\telse\n\t\t{\n\t\t\t_fnLog( settings, 0, \"Unknown paging action: \"+action, 5 );\n\t\t}\n\t\n\t\tvar changed = settings._iDisplayStart !== start;\n\t\tsettings._iDisplayStart = start;\n\t\n\t\tif ( changed ) {\n\t\t\t_fnCallbackFire( settings, null, 'page', [settings] );\n\t\n\t\t\tif ( redraw ) {\n\t\t\t\t_fnDraw( settings );\n\t\t\t}\n\t\t}\n\t\n\t\treturn changed;\n\t}\n\t\n\t\n\t\n\t/**\n\t * Generate the node required for the processing node\n\t *  @param {object} settings dataTables settings object\n\t *  @returns {node} Processing element\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFeatureHtmlProcessing ( settings )\n\t{\n\t\treturn $('<div/>', {\n\t\t\t\t'id': ! settings.aanFeatures.r ? settings.sTableId+'_processing' : null,\n\t\t\t\t'class': settings.oClasses.sProcessing\n\t\t\t} )\n\t\t\t.html( settings.oLanguage.sProcessing )\n\t\t\t.insertBefore( settings.nTable )[0];\n\t}\n\t\n\t\n\t/**\n\t * Display or hide the processing indicator\n\t *  @param {object} settings dataTables settings object\n\t *  @param {bool} show Show the processing indicator (true) or not (false)\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnProcessingDisplay ( settings, show )\n\t{\n\t\tif ( settings.oFeatures.bProcessing ) {\n\t\t\t$(settings.aanFeatures.r).css( 'display', show ? 'block' : 'none' );\n\t\t}\n\t\n\t\t_fnCallbackFire( settings, null, 'processing', [settings, show] );\n\t}\n\t\n\t/**\n\t * Add any control elements for the table - specifically scrolling\n\t *  @param {object} settings dataTables settings object\n\t *  @returns {node} Node to add to the DOM\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnFeatureHtmlTable ( settings )\n\t{\n\t\tvar table = $(settings.nTable);\n\t\n\t\t// Add the ARIA grid role to the table\n\t\ttable.attr( 'role', 'grid' );\n\t\n\t\t// Scrolling from here on in\n\t\tvar scroll = settings.oScroll;\n\t\n\t\tif ( scroll.sX === '' && scroll.sY === '' ) {\n\t\t\treturn settings.nTable;\n\t\t}\n\t\n\t\tvar scrollX = scroll.sX;\n\t\tvar scrollY = scroll.sY;\n\t\tvar classes = settings.oClasses;\n\t\tvar caption = table.children('caption');\n\t\tvar captionSide = caption.length ? caption[0]._captionSide : null;\n\t\tvar headerClone = $( table[0].cloneNode(false) );\n\t\tvar footerClone = $( table[0].cloneNode(false) );\n\t\tvar footer = table.children('tfoot');\n\t\tvar _div = '<div/>';\n\t\tvar size = function ( s ) {\n\t\t\treturn !s ? null : _fnStringToCss( s );\n\t\t};\n\t\n\t\t// This is fairly messy, but with x scrolling enabled, if the table has a\n\t\t// width attribute, regardless of any width applied using the column width\n\t\t// options, the browser will shrink or grow the table as needed to fit into\n\t\t// that 100%. That would make the width options useless. So we remove it.\n\t\t// This is okay, under the assumption that width:100% is applied to the\n\t\t// table in CSS (it is in the default stylesheet) which will set the table\n\t\t// width as appropriate (the attribute and css behave differently...)\n\t\tif ( scroll.sX && table.attr('width') === '100%' ) {\n\t\t\ttable.removeAttr('width');\n\t\t}\n\t\n\t\tif ( ! footer.length ) {\n\t\t\tfooter = null;\n\t\t}\n\t\n\t\t/*\n\t\t * The HTML structure that we want to generate in this function is:\n\t\t *  div - scroller\n\t\t *    div - scroll head\n\t\t *      div - scroll head inner\n\t\t *        table - scroll head table\n\t\t *          thead - thead\n\t\t *    div - scroll body\n\t\t *      table - table (master table)\n\t\t *        thead - thead clone for sizing\n\t\t *        tbody - tbody\n\t\t *    div - scroll foot\n\t\t *      div - scroll foot inner\n\t\t *        table - scroll foot table\n\t\t *          tfoot - tfoot\n\t\t */\n\t\tvar scroller = $( _div, { 'class': classes.sScrollWrapper } )\n\t\t\t.append(\n\t\t\t\t$(_div, { 'class': classes.sScrollHead } )\n\t\t\t\t\t.css( {\n\t\t\t\t\t\toverflow: 'hidden',\n\t\t\t\t\t\tposition: 'relative',\n\t\t\t\t\t\tborder: 0,\n\t\t\t\t\t\twidth: scrollX ? size(scrollX) : '100%'\n\t\t\t\t\t} )\n\t\t\t\t\t.append(\n\t\t\t\t\t\t$(_div, { 'class': classes.sScrollHeadInner } )\n\t\t\t\t\t\t\t.css( {\n\t\t\t\t\t\t\t\t'box-sizing': 'content-box',\n\t\t\t\t\t\t\t\twidth: scroll.sXInner || '100%'\n\t\t\t\t\t\t\t} )\n\t\t\t\t\t\t\t.append(\n\t\t\t\t\t\t\t\theaderClone\n\t\t\t\t\t\t\t\t\t.removeAttr('id')\n\t\t\t\t\t\t\t\t\t.css( 'margin-left', 0 )\n\t\t\t\t\t\t\t\t\t.append( captionSide === 'top' ? caption : null )\n\t\t\t\t\t\t\t\t\t.append(\n\t\t\t\t\t\t\t\t\t\ttable.children('thead')\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t)\n\t\t\t\t\t)\n\t\t\t)\n\t\t\t.append(\n\t\t\t\t$(_div, { 'class': classes.sScrollBody } )\n\t\t\t\t\t.css( {\n\t\t\t\t\t\toverflow: 'auto',\n\t\t\t\t\t\theight: size( scrollY ),\n\t\t\t\t\t\twidth: size( scrollX )\n\t\t\t\t\t} )\n\t\t\t\t\t.append( table )\n\t\t\t);\n\t\n\t\tif ( footer ) {\n\t\t\tscroller.append(\n\t\t\t\t$(_div, { 'class': classes.sScrollFoot } )\n\t\t\t\t\t.css( {\n\t\t\t\t\t\toverflow: 'hidden',\n\t\t\t\t\t\tborder: 0,\n\t\t\t\t\t\twidth: scrollX ? size(scrollX) : '100%'\n\t\t\t\t\t} )\n\t\t\t\t\t.append(\n\t\t\t\t\t\t$(_div, { 'class': classes.sScrollFootInner } )\n\t\t\t\t\t\t\t.append(\n\t\t\t\t\t\t\t\tfooterClone\n\t\t\t\t\t\t\t\t\t.removeAttr('id')\n\t\t\t\t\t\t\t\t\t.css( 'margin-left', 0 )\n\t\t\t\t\t\t\t\t\t.append( captionSide === 'bottom' ? caption : null )\n\t\t\t\t\t\t\t\t\t.append(\n\t\t\t\t\t\t\t\t\t\ttable.children('tfoot')\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t)\n\t\t\t\t\t)\n\t\t\t);\n\t\t}\n\t\n\t\tvar children = scroller.children();\n\t\tvar scrollHead = children[0];\n\t\tvar scrollBody = children[1];\n\t\tvar scrollFoot = footer ? children[2] : null;\n\t\n\t\t// When the body is scrolled, then we also want to scroll the headers\n\t\tif ( scrollX ) {\n\t\t\t$(scrollBody).scroll( function (e) {\n\t\t\t\tvar scrollLeft = this.scrollLeft;\n\t\n\t\t\t\tscrollHead.scrollLeft = scrollLeft;\n\t\n\t\t\t\tif ( footer ) {\n\t\t\t\t\tscrollFoot.scrollLeft = scrollLeft;\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\t\n\t\tsettings.nScrollHead = scrollHead;\n\t\tsettings.nScrollBody = scrollBody;\n\t\tsettings.nScrollFoot = scrollFoot;\n\t\n\t\t// On redraw - align columns\n\t\tsettings.aoDrawCallback.push( {\n\t\t\t\"fn\": _fnScrollDraw,\n\t\t\t\"sName\": \"scrolling\"\n\t\t} );\n\t\n\t\treturn scroller[0];\n\t}\n\t\n\t\n\t\n\t/**\n\t * Update the header, footer and body tables for resizing - i.e. column\n\t * alignment.\n\t *\n\t * Welcome to the most horrible function DataTables. The process that this\n\t * function follows is basically:\n\t *   1. Re-create the table inside the scrolling div\n\t *   2. Take live measurements from the DOM\n\t *   3. Apply the measurements to align the columns\n\t *   4. Clean up\n\t *\n\t *  @param {object} settings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnScrollDraw ( settings )\n\t{\n\t\t// Given that this is such a monster function, a lot of variables are use\n\t\t// to try and keep the minimised size as small as possible\n\t\tvar\n\t\t\tscroll         = settings.oScroll,\n\t\t\tscrollX        = scroll.sX,\n\t\t\tscrollXInner   = scroll.sXInner,\n\t\t\tscrollY        = scroll.sY,\n\t\t\tbarWidth       = scroll.iBarWidth,\n\t\t\tdivHeader      = $(settings.nScrollHead),\n\t\t\tdivHeaderStyle = divHeader[0].style,\n\t\t\tdivHeaderInner = divHeader.children('div'),\n\t\t\tdivHeaderInnerStyle = divHeaderInner[0].style,\n\t\t\tdivHeaderTable = divHeaderInner.children('table'),\n\t\t\tdivBodyEl      = settings.nScrollBody,\n\t\t\tdivBody        = $(divBodyEl),\n\t\t\tdivBodyStyle   = divBodyEl.style,\n\t\t\tdivFooter      = $(settings.nScrollFoot),\n\t\t\tdivFooterInner = divFooter.children('div'),\n\t\t\tdivFooterTable = divFooterInner.children('table'),\n\t\t\theader         = $(settings.nTHead),\n\t\t\ttable          = $(settings.nTable),\n\t\t\ttableEl        = table[0],\n\t\t\ttableStyle     = tableEl.style,\n\t\t\tfooter         = settings.nTFoot ? $(settings.nTFoot) : null,\n\t\t\tbrowser        = settings.oBrowser,\n\t\t\tie67           = browser.bScrollOversize,\n\t\t\theaderTrgEls, footerTrgEls,\n\t\t\theaderSrcEls, footerSrcEls,\n\t\t\theaderCopy, footerCopy,\n\t\t\theaderWidths=[], footerWidths=[],\n\t\t\theaderContent=[],\n\t\t\tidx, correction, sanityWidth,\n\t\t\tzeroOut = function(nSizer) {\n\t\t\t\tvar style = nSizer.style;\n\t\t\t\tstyle.paddingTop = \"0\";\n\t\t\t\tstyle.paddingBottom = \"0\";\n\t\t\t\tstyle.borderTopWidth = \"0\";\n\t\t\t\tstyle.borderBottomWidth = \"0\";\n\t\t\t\tstyle.height = 0;\n\t\t\t};\n\t\n\t\t/*\n\t\t * 1. Re-create the table inside the scrolling div\n\t\t */\n\t\n\t\t// Remove the old minimised thead and tfoot elements in the inner table\n\t\ttable.children('thead, tfoot').remove();\n\t\n\t\t// Clone the current header and footer elements and then place it into the inner table\n\t\theaderCopy = header.clone().prependTo( table );\n\t\theaderTrgEls = header.find('tr'); // original header is in its own table\n\t\theaderSrcEls = headerCopy.find('tr');\n\t\theaderCopy.find('th, td').removeAttr('tabindex');\n\t\n\t\tif ( footer ) {\n\t\t\tfooterCopy = footer.clone().prependTo( table );\n\t\t\tfooterTrgEls = footer.find('tr'); // the original tfoot is in its own table and must be sized\n\t\t\tfooterSrcEls = footerCopy.find('tr');\n\t\t}\n\t\n\t\n\t\t/*\n\t\t * 2. Take live measurements from the DOM - do not alter the DOM itself!\n\t\t */\n\t\n\t\t// Remove old sizing and apply the calculated column widths\n\t\t// Get the unique column headers in the newly created (cloned) header. We want to apply the\n\t\t// calculated sizes to this header\n\t\tif ( ! scrollX )\n\t\t{\n\t\t\tdivBodyStyle.width = '100%';\n\t\t\tdivHeader[0].style.width = '100%';\n\t\t}\n\t\n\t\t$.each( _fnGetUniqueThs( settings, headerCopy ), function ( i, el ) {\n\t\t\tidx = _fnVisibleToColumnIndex( settings, i );\n\t\t\tel.style.width = settings.aoColumns[idx].sWidth;\n\t\t} );\n\t\n\t\tif ( footer ) {\n\t\t\t_fnApplyToChildren( function(n) {\n\t\t\t\tn.style.width = \"\";\n\t\t\t}, footerSrcEls );\n\t\t}\n\t\n\t\t// If scroll collapse is enabled, when we put the headers back into the body for sizing, we\n\t\t// will end up forcing the scrollbar to appear, making our measurements wrong for when we\n\t\t// then hide it (end of this function), so add the header height to the body scroller.\n\t\tif ( scroll.bCollapse && scrollY !== \"\" ) {\n\t\t\tdivBodyStyle.height = (divBody[0].offsetHeight + header[0].offsetHeight)+\"px\";\n\t\t}\n\t\n\t\t// Size the table as a whole\n\t\tsanityWidth = table.outerWidth();\n\t\tif ( scrollX === \"\" ) {\n\t\t\t// No x scrolling\n\t\t\ttableStyle.width = \"100%\";\n\t\n\t\t\t// IE7 will make the width of the table when 100% include the scrollbar\n\t\t\t// - which is shouldn't. When there is a scrollbar we need to take this\n\t\t\t// into account.\n\t\t\tif ( ie67 && (table.find('tbody').height() > divBodyEl.offsetHeight ||\n\t\t\t\tdivBody.css('overflow-y') == \"scroll\")\n\t\t\t) {\n\t\t\t\ttableStyle.width = _fnStringToCss( table.outerWidth() - barWidth);\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t// x scrolling\n\t\t\tif ( scrollXInner !== \"\" ) {\n\t\t\t\t// x scroll inner has been given - use it\n\t\t\t\ttableStyle.width = _fnStringToCss(scrollXInner);\n\t\t\t}\n\t\t\telse if ( sanityWidth == divBody.width() && divBody.height() < table.height() ) {\n\t\t\t\t// There is y-scrolling - try to take account of the y scroll bar\n\t\t\t\ttableStyle.width = _fnStringToCss( sanityWidth-barWidth );\n\t\t\t\tif ( table.outerWidth() > sanityWidth-barWidth ) {\n\t\t\t\t\t// Not possible to take account of it\n\t\t\t\t\ttableStyle.width = _fnStringToCss( sanityWidth );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// When all else fails\n\t\t\t\ttableStyle.width = _fnStringToCss( sanityWidth );\n\t\t\t}\n\t\t}\n\t\n\t\t// Recalculate the sanity width - now that we've applied the required width,\n\t\t// before it was a temporary variable. This is required because the column\n\t\t// width calculation is done before this table DOM is created.\n\t\tsanityWidth = table.outerWidth();\n\t\n\t\t// Hidden header should have zero height, so remove padding and borders. Then\n\t\t// set the width based on the real headers\n\t\n\t\t// Apply all styles in one pass\n\t\t_fnApplyToChildren( zeroOut, headerSrcEls );\n\t\n\t\t// Read all widths in next pass\n\t\t_fnApplyToChildren( function(nSizer) {\n\t\t\theaderContent.push( nSizer.innerHTML );\n\t\t\theaderWidths.push( _fnStringToCss( $(nSizer).css('width') ) );\n\t\t}, headerSrcEls );\n\t\n\t\t// Apply all widths in final pass\n\t\t_fnApplyToChildren( function(nToSize, i) {\n\t\t\tnToSize.style.width = headerWidths[i];\n\t\t}, headerTrgEls );\n\t\n\t\t$(headerSrcEls).height(0);\n\t\n\t\t/* Same again with the footer if we have one */\n\t\tif ( footer )\n\t\t{\n\t\t\t_fnApplyToChildren( zeroOut, footerSrcEls );\n\t\n\t\t\t_fnApplyToChildren( function(nSizer) {\n\t\t\t\tfooterWidths.push( _fnStringToCss( $(nSizer).css('width') ) );\n\t\t\t}, footerSrcEls );\n\t\n\t\t\t_fnApplyToChildren( function(nToSize, i) {\n\t\t\t\tnToSize.style.width = footerWidths[i];\n\t\t\t}, footerTrgEls );\n\t\n\t\t\t$(footerSrcEls).height(0);\n\t\t}\n\t\n\t\n\t\t/*\n\t\t * 3. Apply the measurements\n\t\t */\n\t\n\t\t// \"Hide\" the header and footer that we used for the sizing. We need to keep\n\t\t// the content of the cell so that the width applied to the header and body\n\t\t// both match, but we want to hide it completely. We want to also fix their\n\t\t// width to what they currently are\n\t\t_fnApplyToChildren( function(nSizer, i) {\n\t\t\tnSizer.innerHTML = '<div class=\"dataTables_sizing\" style=\"height:0;overflow:hidden;\">'+headerContent[i]+'</div>';\n\t\t\tnSizer.style.width = headerWidths[i];\n\t\t}, headerSrcEls );\n\t\n\t\tif ( footer )\n\t\t{\n\t\t\t_fnApplyToChildren( function(nSizer, i) {\n\t\t\t\tnSizer.innerHTML = \"\";\n\t\t\t\tnSizer.style.width = footerWidths[i];\n\t\t\t}, footerSrcEls );\n\t\t}\n\t\n\t\t// Sanity check that the table is of a sensible width. If not then we are going to get\n\t\t// misalignment - try to prevent this by not allowing the table to shrink below its min width\n\t\tif ( table.outerWidth() < sanityWidth )\n\t\t{\n\t\t\t// The min width depends upon if we have a vertical scrollbar visible or not */\n\t\t\tcorrection = ((divBodyEl.scrollHeight > divBodyEl.offsetHeight ||\n\t\t\t\tdivBody.css('overflow-y') == \"scroll\")) ?\n\t\t\t\t\tsanityWidth+barWidth :\n\t\t\t\t\tsanityWidth;\n\t\n\t\t\t// IE6/7 are a law unto themselves...\n\t\t\tif ( ie67 && (divBodyEl.scrollHeight >\n\t\t\t\tdivBodyEl.offsetHeight || divBody.css('overflow-y') == \"scroll\")\n\t\t\t) {\n\t\t\t\ttableStyle.width = _fnStringToCss( correction-barWidth );\n\t\t\t}\n\t\n\t\t\t// And give the user a warning that we've stopped the table getting too small\n\t\t\tif ( scrollX === \"\" || scrollXInner !== \"\" ) {\n\t\t\t\t_fnLog( settings, 1, 'Possible column misalignment', 6 );\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\tcorrection = '100%';\n\t\t}\n\t\n\t\t// Apply to the container elements\n\t\tdivBodyStyle.width = _fnStringToCss( correction );\n\t\tdivHeaderStyle.width = _fnStringToCss( correction );\n\t\n\t\tif ( footer ) {\n\t\t\tsettings.nScrollFoot.style.width = _fnStringToCss( correction );\n\t\t}\n\t\n\t\n\t\t/*\n\t\t * 4. Clean up\n\t\t */\n\t\tif ( ! scrollY ) {\n\t\t\t/* IE7< puts a vertical scrollbar in place (when it shouldn't be) due to subtracting\n\t\t\t * the scrollbar height from the visible display, rather than adding it on. We need to\n\t\t\t * set the height in order to sort this. Don't want to do it in any other browsers.\n\t\t\t */\n\t\t\tif ( ie67 ) {\n\t\t\t\tdivBodyStyle.height = _fnStringToCss( tableEl.offsetHeight+barWidth );\n\t\t\t}\n\t\t}\n\t\n\t\tif ( scrollY && scroll.bCollapse ) {\n\t\t\tdivBodyStyle.height = _fnStringToCss( scrollY );\n\t\n\t\t\tvar iExtra = (scrollX && tableEl.offsetWidth > divBodyEl.offsetWidth) ?\n\t\t\t\tbarWidth :\n\t\t\t\t0;\n\t\n\t\t\tif ( tableEl.offsetHeight < divBodyEl.offsetHeight ) {\n\t\t\t\tdivBodyStyle.height = _fnStringToCss( tableEl.offsetHeight+iExtra );\n\t\t\t}\n\t\t}\n\t\n\t\t/* Finally set the width's of the header and footer tables */\n\t\tvar iOuterWidth = table.outerWidth();\n\t\tdivHeaderTable[0].style.width = _fnStringToCss( iOuterWidth );\n\t\tdivHeaderInnerStyle.width = _fnStringToCss( iOuterWidth );\n\t\n\t\t// Figure out if there are scrollbar present - if so then we need a the header and footer to\n\t\t// provide a bit more space to allow \"overflow\" scrolling (i.e. past the scrollbar)\n\t\tvar bScrolling = table.height() > divBodyEl.clientHeight || divBody.css('overflow-y') == \"scroll\";\n\t\tvar padding = 'padding' + (browser.bScrollbarLeft ? 'Left' : 'Right' );\n\t\tdivHeaderInnerStyle[ padding ] = bScrolling ? barWidth+\"px\" : \"0px\";\n\t\n\t\tif ( footer ) {\n\t\t\tdivFooterTable[0].style.width = _fnStringToCss( iOuterWidth );\n\t\t\tdivFooterInner[0].style.width = _fnStringToCss( iOuterWidth );\n\t\t\tdivFooterInner[0].style[padding] = bScrolling ? barWidth+\"px\" : \"0px\";\n\t\t}\n\t\n\t\t/* Adjust the position of the header in case we loose the y-scrollbar */\n\t\tdivBody.scroll();\n\t\n\t\t// If sorting or filtering has occurred, jump the scrolling back to the top\n\t\t// only if we aren't holding the position\n\t\tif ( (settings.bSorted || settings.bFiltered) && ! settings._drawHold ) {\n\t\t\tdivBodyEl.scrollTop = 0;\n\t\t}\n\t}\n\t\n\t\n\t\n\t/**\n\t * Apply a given function to the display child nodes of an element array (typically\n\t * TD children of TR rows\n\t *  @param {function} fn Method to apply to the objects\n\t *  @param array {nodes} an1 List of elements to look through for display children\n\t *  @param array {nodes} an2 Another list (identical structure to the first) - optional\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnApplyToChildren( fn, an1, an2 )\n\t{\n\t\tvar index=0, i=0, iLen=an1.length;\n\t\tvar nNode1, nNode2;\n\t\n\t\twhile ( i < iLen ) {\n\t\t\tnNode1 = an1[i].firstChild;\n\t\t\tnNode2 = an2 ? an2[i].firstChild : null;\n\t\n\t\t\twhile ( nNode1 ) {\n\t\t\t\tif ( nNode1.nodeType === 1 ) {\n\t\t\t\t\tif ( an2 ) {\n\t\t\t\t\t\tfn( nNode1, nNode2, index );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tfn( nNode1, index );\n\t\t\t\t\t}\n\t\n\t\t\t\t\tindex++;\n\t\t\t\t}\n\t\n\t\t\t\tnNode1 = nNode1.nextSibling;\n\t\t\t\tnNode2 = an2 ? nNode2.nextSibling : null;\n\t\t\t}\n\t\n\t\t\ti++;\n\t\t}\n\t}\n\t\n\t\n\t\n\tvar __re_html_remove = /<.*?>/g;\n\t\n\t\n\t/**\n\t * Calculate the width of columns for the table\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnCalculateColumnWidths ( oSettings )\n\t{\n\t\tvar\n\t\t\ttable = oSettings.nTable,\n\t\t\tcolumns = oSettings.aoColumns,\n\t\t\tscroll = oSettings.oScroll,\n\t\t\tscrollY = scroll.sY,\n\t\t\tscrollX = scroll.sX,\n\t\t\tscrollXInner = scroll.sXInner,\n\t\t\tcolumnCount = columns.length,\n\t\t\tvisibleColumns = _fnGetColumns( oSettings, 'bVisible' ),\n\t\t\theaderCells = $('th', oSettings.nTHead),\n\t\t\ttableWidthAttr = table.getAttribute('width'),\n\t\t\ttableContainer = table.parentNode,\n\t\t\tuserInputs = false,\n\t\t\ti, column, columnIdx, width, outerWidth;\n\t\n\t\t/* Convert any user input sizes into pixel sizes */\n\t\tfor ( i=0 ; i<visibleColumns.length ; i++ ) {\n\t\t\tcolumn = columns[ visibleColumns[i] ];\n\t\n\t\t\tif ( column.sWidth !== null ) {\n\t\t\t\tcolumn.sWidth = _fnConvertToWidth( column.sWidthOrig, tableContainer );\n\t\n\t\t\t\tuserInputs = true;\n\t\t\t}\n\t\t}\n\t\n\t\t/* If the number of columns in the DOM equals the number that we have to\n\t\t * process in DataTables, then we can use the offsets that are created by\n\t\t * the web- browser. No custom sizes can be set in order for this to happen,\n\t\t * nor scrolling used\n\t\t */\n\t\tif ( ! userInputs && ! scrollX && ! scrollY &&\n\t\t    columnCount == _fnVisbleColumns( oSettings ) &&\n\t\t\tcolumnCount == headerCells.length\n\t\t) {\n\t\t\tfor ( i=0 ; i<columnCount ; i++ ) {\n\t\t\t\tcolumns[i].sWidth = _fnStringToCss( headerCells.eq(i).width() );\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t// Otherwise construct a single row table with the widest node in the\n\t\t\t// data, assign any user defined widths, then insert it into the DOM and\n\t\t\t// allow the browser to do all the hard work of calculating table widths\n\t\t\tvar tmpTable = $(table).clone() // don't use cloneNode - IE8 will remove events on the main table\n\t\t\t\t.empty()\n\t\t\t\t.css( 'visibility', 'hidden' )\n\t\t\t\t.removeAttr( 'id' )\n\t\t\t\t.append( $(oSettings.nTHead).clone( false ) )\n\t\t\t\t.append( $(oSettings.nTFoot).clone( false ) )\n\t\t\t\t.append( $('<tbody><tr/></tbody>') );\n\t\n\t\t\t// Remove any assigned widths from the footer (from scrolling)\n\t\t\ttmpTable.find('tfoot th, tfoot td').css('width', '');\n\t\n\t\t\tvar tr = tmpTable.find( 'tbody tr' );\n\t\n\t\t\t// Apply custom sizing to the cloned header\n\t\t\theaderCells = _fnGetUniqueThs( oSettings, tmpTable.find('thead')[0] );\n\t\n\t\t\tfor ( i=0 ; i<visibleColumns.length ; i++ ) {\n\t\t\t\tcolumn = columns[ visibleColumns[i] ];\n\t\n\t\t\t\theaderCells[i].style.width = column.sWidthOrig !== null && column.sWidthOrig !== '' ?\n\t\t\t\t\t_fnStringToCss( column.sWidthOrig ) :\n\t\t\t\t\t'';\n\t\t\t}\n\t\n\t\t\t// Find the widest cell for each column and put it into the table\n\t\t\tif ( oSettings.aoData.length ) {\n\t\t\t\tfor ( i=0 ; i<visibleColumns.length ; i++ ) {\n\t\t\t\t\tcolumnIdx = visibleColumns[i];\n\t\t\t\t\tcolumn = columns[ columnIdx ];\n\t\n\t\t\t\t\t$( _fnGetWidestNode( oSettings, columnIdx ) )\n\t\t\t\t\t\t.clone( false )\n\t\t\t\t\t\t.append( column.sContentPadding )\n\t\t\t\t\t\t.appendTo( tr );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\t// Table has been built, attach to the document so we can work with it\n\t\t\ttmpTable.appendTo( tableContainer );\n\t\n\t\t\t// When scrolling (X or Y) we want to set the width of the table as \n\t\t\t// appropriate. However, when not scrolling leave the table width as it\n\t\t\t// is. This results in slightly different, but I think correct behaviour\n\t\t\tif ( scrollX && scrollXInner ) {\n\t\t\t\ttmpTable.width( scrollXInner );\n\t\t\t}\n\t\t\telse if ( scrollX ) {\n\t\t\t\ttmpTable.css( 'width', 'auto' );\n\t\n\t\t\t\tif ( tmpTable.width() < tableContainer.offsetWidth ) {\n\t\t\t\t\ttmpTable.width( tableContainer.offsetWidth );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse if ( scrollY ) {\n\t\t\t\ttmpTable.width( tableContainer.offsetWidth );\n\t\t\t}\n\t\t\telse if ( tableWidthAttr ) {\n\t\t\t\ttmpTable.width( tableWidthAttr );\n\t\t\t}\n\t\n\t\t\t// Take into account the y scrollbar\n\t\t\t_fnScrollingWidthAdjust( oSettings, tmpTable[0] );\n\t\n\t\t\t// Browsers need a bit of a hand when a width is assigned to any columns\n\t\t\t// when x-scrolling as they tend to collapse the table to the min-width,\n\t\t\t// even if we sent the column widths. So we need to keep track of what\n\t\t\t// the table width should be by summing the user given values, and the\n\t\t\t// automatic values\n\t\t\tif ( scrollX )\n\t\t\t{\n\t\t\t\tvar total = 0;\n\t\n\t\t\t\tfor ( i=0 ; i<visibleColumns.length ; i++ ) {\n\t\t\t\t\tcolumn = columns[ visibleColumns[i] ];\n\t\t\t\t\touterWidth = $(headerCells[i]).outerWidth();\n\t\n\t\t\t\t\ttotal += column.sWidthOrig === null ?\n\t\t\t\t\t\touterWidth :\n\t\t\t\t\t\tparseInt( column.sWidth, 10 ) + outerWidth - $(headerCells[i]).width();\n\t\t\t\t}\n\t\n\t\t\t\ttmpTable.width( _fnStringToCss( total ) );\n\t\t\t\ttable.style.width = _fnStringToCss( total );\n\t\t\t}\n\t\n\t\t\t// Get the width of each column in the constructed table\n\t\t\tfor ( i=0 ; i<visibleColumns.length ; i++ ) {\n\t\t\t\tcolumn = columns[ visibleColumns[i] ];\n\t\t\t\twidth = $(headerCells[i]).width();\n\t\n\t\t\t\tif ( width ) {\n\t\t\t\t\tcolumn.sWidth = _fnStringToCss( width );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\ttable.style.width = _fnStringToCss( tmpTable.css('width') );\n\t\n\t\t\t// Finished with the table - ditch it\n\t\t\ttmpTable.remove();\n\t\t}\n\t\n\t\t// If there is a width attr, we want to attach an event listener which\n\t\t// allows the table sizing to automatically adjust when the window is\n\t\t// resized. Use the width attr rather than CSS, since we can't know if the\n\t\t// CSS is a relative value or absolute - DOM read is always px.\n\t\tif ( tableWidthAttr ) {\n\t\t\ttable.style.width = _fnStringToCss( tableWidthAttr );\n\t\t}\n\t\n\t\tif ( (tableWidthAttr || scrollX) && ! oSettings._reszEvt ) {\n\t\t\t$(window).bind('resize.DT-'+oSettings.sInstance, _fnThrottle( function () {\n\t\t\t\t_fnAdjustColumnSizing( oSettings );\n\t\t\t} ) );\n\t\n\t\t\toSettings._reszEvt = true;\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Throttle the calls to a function. Arguments and context are maintained for\n\t * the throttled function\n\t *  @param {function} fn Function to be called\n\t *  @param {int} [freq=200] call frequency in mS\n\t *  @returns {function} wrapped function\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnThrottle( fn, freq ) {\n\t\tvar\n\t\t\tfrequency = freq !== undefined ? freq : 200,\n\t\t\tlast,\n\t\t\ttimer;\n\t\n\t\treturn function () {\n\t\t\tvar\n\t\t\t\tthat = this,\n\t\t\t\tnow  = +new Date(),\n\t\t\t\targs = arguments;\n\t\n\t\t\tif ( last && now < last + frequency ) {\n\t\t\t\tclearTimeout( timer );\n\t\n\t\t\t\ttimer = setTimeout( function () {\n\t\t\t\t\tlast = undefined;\n\t\t\t\t\tfn.apply( that, args );\n\t\t\t\t}, frequency );\n\t\t\t}\n\t\t\telse if ( last ) {\n\t\t\t\tlast = now;\n\t\t\t\tfn.apply( that, args );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tlast = now;\n\t\t\t}\n\t\t};\n\t}\n\t\n\t\n\t/**\n\t * Convert a CSS unit width to pixels (e.g. 2em)\n\t *  @param {string} width width to be converted\n\t *  @param {node} parent parent to get the with for (required for relative widths) - optional\n\t *  @returns {int} width in pixels\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnConvertToWidth ( width, parent )\n\t{\n\t\tif ( ! width ) {\n\t\t\treturn 0;\n\t\t}\n\t\n\t\tvar n = $('<div/>')\n\t\t\t.css( 'width', _fnStringToCss( width ) )\n\t\t\t.appendTo( parent || document.body );\n\t\n\t\tvar val = n[0].offsetWidth;\n\t\tn.remove();\n\t\n\t\treturn val;\n\t}\n\t\n\t\n\t/**\n\t * Adjust a table's width to take account of vertical scroll bar\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {node} n table node\n\t *  @memberof DataTable#oApi\n\t */\n\t\n\tfunction _fnScrollingWidthAdjust ( settings, n )\n\t{\n\t\tvar scroll = settings.oScroll;\n\t\n\t\tif ( scroll.sX || scroll.sY ) {\n\t\t\t// When y-scrolling only, we want to remove the width of the scroll bar\n\t\t\t// so the table + scroll bar will fit into the area available, otherwise\n\t\t\t// we fix the table at its current size with no adjustment\n\t\t\tvar correction = ! scroll.sX ? scroll.iBarWidth : 0;\n\t\t\tn.style.width = _fnStringToCss( $(n).outerWidth() - correction );\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Get the widest node\n\t *  @param {object} settings dataTables settings object\n\t *  @param {int} colIdx column of interest\n\t *  @returns {node} widest table node\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnGetWidestNode( settings, colIdx )\n\t{\n\t\tvar idx = _fnGetMaxLenString( settings, colIdx );\n\t\tif ( idx < 0 ) {\n\t\t\treturn null;\n\t\t}\n\t\n\t\tvar data = settings.aoData[ idx ];\n\t\treturn ! data.nTr ? // Might not have been created when deferred rendering\n\t\t\t$('<td/>').html( _fnGetCellData( settings, idx, colIdx, 'display' ) )[0] :\n\t\t\tdata.anCells[ colIdx ];\n\t}\n\t\n\t\n\t/**\n\t * Get the maximum strlen for each data column\n\t *  @param {object} settings dataTables settings object\n\t *  @param {int} colIdx column of interest\n\t *  @returns {string} max string length for each column\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnGetMaxLenString( settings, colIdx )\n\t{\n\t\tvar s, max=-1, maxIdx = -1;\n\t\n\t\tfor ( var i=0, ien=settings.aoData.length ; i<ien ; i++ ) {\n\t\t\ts = _fnGetCellData( settings, i, colIdx, 'display' )+'';\n\t\t\ts = s.replace( __re_html_remove, '' );\n\t\n\t\t\tif ( s.length > max ) {\n\t\t\t\tmax = s.length;\n\t\t\t\tmaxIdx = i;\n\t\t\t}\n\t\t}\n\t\n\t\treturn maxIdx;\n\t}\n\t\n\t\n\t/**\n\t * Append a CSS unit (only if required) to a string\n\t *  @param {string} value to css-ify\n\t *  @returns {string} value with css unit\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnStringToCss( s )\n\t{\n\t\tif ( s === null ) {\n\t\t\treturn '0px';\n\t\t}\n\t\n\t\tif ( typeof s == 'number' ) {\n\t\t\treturn s < 0 ?\n\t\t\t\t'0px' :\n\t\t\t\ts+'px';\n\t\t}\n\t\n\t\t// Check it has a unit character already\n\t\treturn s.match(/\\d$/) ?\n\t\t\ts+'px' :\n\t\t\ts;\n\t}\n\t\n\t\n\t/**\n\t * Get the width of a scroll bar in this browser being used\n\t *  @returns {int} width in pixels\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnScrollBarWidth ()\n\t{\n\t\t// On first run a static variable is set, since this is only needed once.\n\t\t// Subsequent runs will just use the previously calculated value\n\t\tif ( ! DataTable.__scrollbarWidth ) {\n\t\t\tvar inner = $('<p/>').css( {\n\t\t\t\twidth: '100%',\n\t\t\t\theight: 200,\n\t\t\t\tpadding: 0\n\t\t\t} )[0];\n\t\n\t\t\tvar outer = $('<div/>')\n\t\t\t\t.css( {\n\t\t\t\t\tposition: 'absolute',\n\t\t\t\t\ttop: 0,\n\t\t\t\t\tleft: 0,\n\t\t\t\t\twidth: 200,\n\t\t\t\t\theight: 150,\n\t\t\t\t\tpadding: 0,\n\t\t\t\t\toverflow: 'hidden',\n\t\t\t\t\tvisibility: 'hidden'\n\t\t\t\t} )\n\t\t\t\t.append( inner )\n\t\t\t\t.appendTo( 'body' );\n\t\n\t\t\tvar w1 = inner.offsetWidth;\n\t\t\touter.css( 'overflow', 'scroll' );\n\t\t\tvar w2 = inner.offsetWidth;\n\t\n\t\t\tif ( w1 === w2 ) {\n\t\t\t\tw2 = outer[0].clientWidth;\n\t\t\t}\n\t\n\t\t\touter.remove();\n\t\n\t\t\tDataTable.__scrollbarWidth = w1 - w2;\n\t\t}\n\t\n\t\treturn DataTable.__scrollbarWidth;\n\t}\n\t\n\t\n\t\n\tfunction _fnSortFlatten ( settings )\n\t{\n\t\tvar\n\t\t\ti, iLen, k, kLen,\n\t\t\taSort = [],\n\t\t\taiOrig = [],\n\t\t\taoColumns = settings.aoColumns,\n\t\t\taDataSort, iCol, sType, srcCol,\n\t\t\tfixed = settings.aaSortingFixed,\n\t\t\tfixedObj = $.isPlainObject( fixed ),\n\t\t\tnestedSort = [],\n\t\t\tadd = function ( a ) {\n\t\t\t\tif ( a.length && ! $.isArray( a[0] ) ) {\n\t\t\t\t\t// 1D array\n\t\t\t\t\tnestedSort.push( a );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// 2D array\n\t\t\t\t\tnestedSort.push.apply( nestedSort, a );\n\t\t\t\t}\n\t\t\t};\n\t\n\t\t// Build the sort array, with pre-fix and post-fix options if they have been\n\t\t// specified\n\t\tif ( $.isArray( fixed ) ) {\n\t\t\tadd( fixed );\n\t\t}\n\t\n\t\tif ( fixedObj && fixed.pre ) {\n\t\t\tadd( fixed.pre );\n\t\t}\n\t\n\t\tadd( settings.aaSorting );\n\t\n\t\tif (fixedObj && fixed.post ) {\n\t\t\tadd( fixed.post );\n\t\t}\n\t\n\t\tfor ( i=0 ; i<nestedSort.length ; i++ )\n\t\t{\n\t\t\tsrcCol = nestedSort[i][0];\n\t\t\taDataSort = aoColumns[ srcCol ].aDataSort;\n\t\n\t\t\tfor ( k=0, kLen=aDataSort.length ; k<kLen ; k++ )\n\t\t\t{\n\t\t\t\tiCol = aDataSort[k];\n\t\t\t\tsType = aoColumns[ iCol ].sType || 'string';\n\t\n\t\t\t\tif ( nestedSort[i]._idx === undefined ) {\n\t\t\t\t\tnestedSort[i]._idx = $.inArray( nestedSort[i][1], aoColumns[iCol].asSorting );\n\t\t\t\t}\n\t\n\t\t\t\taSort.push( {\n\t\t\t\t\tsrc:       srcCol,\n\t\t\t\t\tcol:       iCol,\n\t\t\t\t\tdir:       nestedSort[i][1],\n\t\t\t\t\tindex:     nestedSort[i]._idx,\n\t\t\t\t\ttype:      sType,\n\t\t\t\t\tformatter: DataTable.ext.type.order[ sType+\"-pre\" ]\n\t\t\t\t} );\n\t\t\t}\n\t\t}\n\t\n\t\treturn aSort;\n\t}\n\t\n\t/**\n\t * Change the order of the table\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t *  @todo This really needs split up!\n\t */\n\tfunction _fnSort ( oSettings )\n\t{\n\t\tvar\n\t\t\ti, ien, iLen, j, jLen, k, kLen,\n\t\t\tsDataType, nTh,\n\t\t\taiOrig = [],\n\t\t\toExtSort = DataTable.ext.type.order,\n\t\t\taoData = oSettings.aoData,\n\t\t\taoColumns = oSettings.aoColumns,\n\t\t\taDataSort, data, iCol, sType, oSort,\n\t\t\tformatters = 0,\n\t\t\tsortCol,\n\t\t\tdisplayMaster = oSettings.aiDisplayMaster,\n\t\t\taSort;\n\t\n\t\t// Resolve any column types that are unknown due to addition or invalidation\n\t\t// @todo Can this be moved into a 'data-ready' handler which is called when\n\t\t//   data is going to be used in the table?\n\t\t_fnColumnTypes( oSettings );\n\t\n\t\taSort = _fnSortFlatten( oSettings );\n\t\n\t\tfor ( i=0, ien=aSort.length ; i<ien ; i++ ) {\n\t\t\tsortCol = aSort[i];\n\t\n\t\t\t// Track if we can use the fast sort algorithm\n\t\t\tif ( sortCol.formatter ) {\n\t\t\t\tformatters++;\n\t\t\t}\n\t\n\t\t\t// Load the data needed for the sort, for each cell\n\t\t\t_fnSortData( oSettings, sortCol.col );\n\t\t}\n\t\n\t\t/* No sorting required if server-side or no sorting array */\n\t\tif ( _fnDataSource( oSettings ) != 'ssp' && aSort.length !== 0 )\n\t\t{\n\t\t\t// Create a value - key array of the current row positions such that we can use their\n\t\t\t// current position during the sort, if values match, in order to perform stable sorting\n\t\t\tfor ( i=0, iLen=displayMaster.length ; i<iLen ; i++ ) {\n\t\t\t\taiOrig[ displayMaster[i] ] = i;\n\t\t\t}\n\t\n\t\t\t/* Do the sort - here we want multi-column sorting based on a given data source (column)\n\t\t\t * and sorting function (from oSort) in a certain direction. It's reasonably complex to\n\t\t\t * follow on it's own, but this is what we want (example two column sorting):\n\t\t\t *  fnLocalSorting = function(a,b){\n\t\t\t *    var iTest;\n\t\t\t *    iTest = oSort['string-asc']('data11', 'data12');\n\t\t\t *      if (iTest !== 0)\n\t\t\t *        return iTest;\n\t\t\t *    iTest = oSort['numeric-desc']('data21', 'data22');\n\t\t\t *    if (iTest !== 0)\n\t\t\t *      return iTest;\n\t\t\t *    return oSort['numeric-asc']( aiOrig[a], aiOrig[b] );\n\t\t\t *  }\n\t\t\t * Basically we have a test for each sorting column, if the data in that column is equal,\n\t\t\t * test the next column. If all columns match, then we use a numeric sort on the row\n\t\t\t * positions in the original data array to provide a stable sort.\n\t\t\t *\n\t\t\t * Note - I know it seems excessive to have two sorting methods, but the first is around\n\t\t\t * 15% faster, so the second is only maintained for backwards compatibility with sorting\n\t\t\t * methods which do not have a pre-sort formatting function.\n\t\t\t */\n\t\t\tif ( formatters === aSort.length ) {\n\t\t\t\t// All sort types have formatting functions\n\t\t\t\tdisplayMaster.sort( function ( a, b ) {\n\t\t\t\t\tvar\n\t\t\t\t\t\tx, y, k, test, sort,\n\t\t\t\t\t\tlen=aSort.length,\n\t\t\t\t\t\tdataA = aoData[a]._aSortData,\n\t\t\t\t\t\tdataB = aoData[b]._aSortData;\n\t\n\t\t\t\t\tfor ( k=0 ; k<len ; k++ ) {\n\t\t\t\t\t\tsort = aSort[k];\n\t\n\t\t\t\t\t\tx = dataA[ sort.col ];\n\t\t\t\t\t\ty = dataB[ sort.col ];\n\t\n\t\t\t\t\t\ttest = x<y ? -1 : x>y ? 1 : 0;\n\t\t\t\t\t\tif ( test !== 0 ) {\n\t\t\t\t\t\t\treturn sort.dir === 'asc' ? test : -test;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\n\t\t\t\t\tx = aiOrig[a];\n\t\t\t\t\ty = aiOrig[b];\n\t\t\t\t\treturn x<y ? -1 : x>y ? 1 : 0;\n\t\t\t\t} );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Depreciated - remove in 1.11 (providing a plug-in option)\n\t\t\t\t// Not all sort types have formatting methods, so we have to call their sorting\n\t\t\t\t// methods.\n\t\t\t\tdisplayMaster.sort( function ( a, b ) {\n\t\t\t\t\tvar\n\t\t\t\t\t\tx, y, k, l, test, sort, fn,\n\t\t\t\t\t\tlen=aSort.length,\n\t\t\t\t\t\tdataA = aoData[a]._aSortData,\n\t\t\t\t\t\tdataB = aoData[b]._aSortData;\n\t\n\t\t\t\t\tfor ( k=0 ; k<len ; k++ ) {\n\t\t\t\t\t\tsort = aSort[k];\n\t\n\t\t\t\t\t\tx = dataA[ sort.col ];\n\t\t\t\t\t\ty = dataB[ sort.col ];\n\t\n\t\t\t\t\t\tfn = oExtSort[ sort.type+\"-\"+sort.dir ] || oExtSort[ \"string-\"+sort.dir ];\n\t\t\t\t\t\ttest = fn( x, y );\n\t\t\t\t\t\tif ( test !== 0 ) {\n\t\t\t\t\t\t\treturn test;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\n\t\t\t\t\tx = aiOrig[a];\n\t\t\t\t\ty = aiOrig[b];\n\t\t\t\t\treturn x<y ? -1 : x>y ? 1 : 0;\n\t\t\t\t} );\n\t\t\t}\n\t\t}\n\t\n\t\t/* Tell the draw function that we have sorted the data */\n\t\toSettings.bSorted = true;\n\t}\n\t\n\t\n\tfunction _fnSortAria ( settings )\n\t{\n\t\tvar label;\n\t\tvar nextSort;\n\t\tvar columns = settings.aoColumns;\n\t\tvar aSort = _fnSortFlatten( settings );\n\t\tvar oAria = settings.oLanguage.oAria;\n\t\n\t\t// ARIA attributes - need to loop all columns, to update all (removing old\n\t\t// attributes as needed)\n\t\tfor ( var i=0, iLen=columns.length ; i<iLen ; i++ )\n\t\t{\n\t\t\tvar col = columns[i];\n\t\t\tvar asSorting = col.asSorting;\n\t\t\tvar sTitle = col.sTitle.replace( /<.*?>/g, \"\" );\n\t\t\tvar th = col.nTh;\n\t\n\t\t\t// IE7 is throwing an error when setting these properties with jQuery's\n\t\t\t// attr() and removeAttr() methods...\n\t\t\tth.removeAttribute('aria-sort');\n\t\n\t\t\t/* In ARIA only the first sorting column can be marked as sorting - no multi-sort option */\n\t\t\tif ( col.bSortable ) {\n\t\t\t\tif ( aSort.length > 0 && aSort[0].col == i ) {\n\t\t\t\t\tth.setAttribute('aria-sort', aSort[0].dir==\"asc\" ? \"ascending\" : \"descending\" );\n\t\t\t\t\tnextSort = asSorting[ aSort[0].index+1 ] || asSorting[0];\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tnextSort = asSorting[0];\n\t\t\t\t}\n\t\n\t\t\t\tlabel = sTitle + ( nextSort === \"asc\" ?\n\t\t\t\t\toAria.sSortAscending :\n\t\t\t\t\toAria.sSortDescending\n\t\t\t\t);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tlabel = sTitle;\n\t\t\t}\n\t\n\t\t\tth.setAttribute('aria-label', label);\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Function to run on user sort request\n\t *  @param {object} settings dataTables settings object\n\t *  @param {node} attachTo node to attach the handler to\n\t *  @param {int} colIdx column sorting index\n\t *  @param {boolean} [append=false] Append the requested sort to the existing\n\t *    sort if true (i.e. multi-column sort)\n\t *  @param {function} [callback] callback function\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSortListener ( settings, colIdx, append, callback )\n\t{\n\t\tvar col = settings.aoColumns[ colIdx ];\n\t\tvar sorting = settings.aaSorting;\n\t\tvar asSorting = col.asSorting;\n\t\tvar nextSortIdx;\n\t\tvar next = function ( a, overflow ) {\n\t\t\tvar idx = a._idx;\n\t\t\tif ( idx === undefined ) {\n\t\t\t\tidx = $.inArray( a[1], asSorting );\n\t\t\t}\n\t\n\t\t\treturn idx+1 < asSorting.length ?\n\t\t\t\tidx+1 :\n\t\t\t\toverflow ?\n\t\t\t\t\tnull :\n\t\t\t\t\t0;\n\t\t};\n\t\n\t\t// Convert to 2D array if needed\n\t\tif ( typeof sorting[0] === 'number' ) {\n\t\t\tsorting = settings.aaSorting = [ sorting ];\n\t\t}\n\t\n\t\t// If appending the sort then we are multi-column sorting\n\t\tif ( append && settings.oFeatures.bSortMulti ) {\n\t\t\t// Are we already doing some kind of sort on this column?\n\t\t\tvar sortIdx = $.inArray( colIdx, _pluck(sorting, '0') );\n\t\n\t\t\tif ( sortIdx !== -1 ) {\n\t\t\t\t// Yes, modify the sort\n\t\t\t\tnextSortIdx = next( sorting[sortIdx], true );\n\t\n\t\t\t\tif ( nextSortIdx === null ) {\n\t\t\t\t\tsorting.splice( sortIdx, 1 );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tsorting[sortIdx][1] = asSorting[ nextSortIdx ];\n\t\t\t\t\tsorting[sortIdx]._idx = nextSortIdx;\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// No sort on this column yet\n\t\t\t\tsorting.push( [ colIdx, asSorting[0], 0 ] );\n\t\t\t\tsorting[sorting.length-1]._idx = 0;\n\t\t\t}\n\t\t}\n\t\telse if ( sorting.length && sorting[0][0] == colIdx ) {\n\t\t\t// Single column - already sorting on this column, modify the sort\n\t\t\tnextSortIdx = next( sorting[0] );\n\t\n\t\t\tsorting.length = 1;\n\t\t\tsorting[0][1] = asSorting[ nextSortIdx ];\n\t\t\tsorting[0]._idx = nextSortIdx;\n\t\t}\n\t\telse {\n\t\t\t// Single column - sort only on this column\n\t\t\tsorting.length = 0;\n\t\t\tsorting.push( [ colIdx, asSorting[0] ] );\n\t\t\tsorting[0]._idx = 0;\n\t\t}\n\t\n\t\t// Run the sort by calling a full redraw\n\t\t_fnReDraw( settings );\n\t\n\t\t// callback used for async user interaction\n\t\tif ( typeof callback == 'function' ) {\n\t\t\tcallback( settings );\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Attach a sort handler (click) to a node\n\t *  @param {object} settings dataTables settings object\n\t *  @param {node} attachTo node to attach the handler to\n\t *  @param {int} colIdx column sorting index\n\t *  @param {function} [callback] callback function\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSortAttachListener ( settings, attachTo, colIdx, callback )\n\t{\n\t\tvar col = settings.aoColumns[ colIdx ];\n\t\n\t\t_fnBindAction( attachTo, {}, function (e) {\n\t\t\t/* If the column is not sortable - don't to anything */\n\t\t\tif ( col.bSortable === false ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t// If processing is enabled use a timeout to allow the processing\n\t\t\t// display to be shown - otherwise to it synchronously\n\t\t\tif ( settings.oFeatures.bProcessing ) {\n\t\t\t\t_fnProcessingDisplay( settings, true );\n\t\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\t_fnSortListener( settings, colIdx, e.shiftKey, callback );\n\t\n\t\t\t\t\t// In server-side processing, the draw callback will remove the\n\t\t\t\t\t// processing display\n\t\t\t\t\tif ( _fnDataSource( settings ) !== 'ssp' ) {\n\t\t\t\t\t\t_fnProcessingDisplay( settings, false );\n\t\t\t\t\t}\n\t\t\t\t}, 0 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t_fnSortListener( settings, colIdx, e.shiftKey, callback );\n\t\t\t}\n\t\t} );\n\t}\n\t\n\t\n\t/**\n\t * Set the sorting classes on table's body, Note: it is safe to call this function\n\t * when bSort and bSortClasses are false\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSortingClasses( settings )\n\t{\n\t\tvar oldSort = settings.aLastSort;\n\t\tvar sortClass = settings.oClasses.sSortColumn;\n\t\tvar sort = _fnSortFlatten( settings );\n\t\tvar features = settings.oFeatures;\n\t\tvar i, ien, colIdx;\n\t\n\t\tif ( features.bSort && features.bSortClasses ) {\n\t\t\t// Remove old sorting classes\n\t\t\tfor ( i=0, ien=oldSort.length ; i<ien ; i++ ) {\n\t\t\t\tcolIdx = oldSort[i].src;\n\t\n\t\t\t\t// Remove column sorting\n\t\t\t\t$( _pluck( settings.aoData, 'anCells', colIdx ) )\n\t\t\t\t\t.removeClass( sortClass + (i<2 ? i+1 : 3) );\n\t\t\t}\n\t\n\t\t\t// Add new column sorting\n\t\t\tfor ( i=0, ien=sort.length ; i<ien ; i++ ) {\n\t\t\t\tcolIdx = sort[i].src;\n\t\n\t\t\t\t$( _pluck( settings.aoData, 'anCells', colIdx ) )\n\t\t\t\t\t.addClass( sortClass + (i<2 ? i+1 : 3) );\n\t\t\t}\n\t\t}\n\t\n\t\tsettings.aLastSort = sort;\n\t}\n\t\n\t\n\t// Get the data to sort a column, be it from cache, fresh (populating the\n\t// cache), or from a sort formatter\n\tfunction _fnSortData( settings, idx )\n\t{\n\t\t// Custom sorting function - provided by the sort data type\n\t\tvar column = settings.aoColumns[ idx ];\n\t\tvar customSort = DataTable.ext.order[ column.sSortDataType ];\n\t\tvar customData;\n\t\n\t\tif ( customSort ) {\n\t\t\tcustomData = customSort.call( settings.oInstance, settings, idx,\n\t\t\t\t_fnColumnIndexToVisible( settings, idx )\n\t\t\t);\n\t\t}\n\t\n\t\t// Use / populate cache\n\t\tvar row, cellData;\n\t\tvar formatter = DataTable.ext.type.order[ column.sType+\"-pre\" ];\n\t\n\t\tfor ( var i=0, ien=settings.aoData.length ; i<ien ; i++ ) {\n\t\t\trow = settings.aoData[i];\n\t\n\t\t\tif ( ! row._aSortData ) {\n\t\t\t\trow._aSortData = [];\n\t\t\t}\n\t\n\t\t\tif ( ! row._aSortData[idx] || customSort ) {\n\t\t\t\tcellData = customSort ?\n\t\t\t\t\tcustomData[i] : // If there was a custom sort function, use data from there\n\t\t\t\t\t_fnGetCellData( settings, i, idx, 'sort' );\n\t\n\t\t\t\trow._aSortData[ idx ] = formatter ?\n\t\t\t\t\tformatter( cellData ) :\n\t\t\t\t\tcellData;\n\t\t\t}\n\t\t}\n\t}\n\t\n\t\n\t\n\t/**\n\t * Save the state of a table\n\t *  @param {object} oSettings dataTables settings object\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSaveState ( settings )\n\t{\n\t\tif ( !settings.oFeatures.bStateSave || settings.bDestroying )\n\t\t{\n\t\t\treturn;\n\t\t}\n\t\n\t\t/* Store the interesting variables */\n\t\tvar state = {\n\t\t\ttime:    +new Date(),\n\t\t\tstart:   settings._iDisplayStart,\n\t\t\tlength:  settings._iDisplayLength,\n\t\t\torder:   $.extend( true, [], settings.aaSorting ),\n\t\t\tsearch:  _fnSearchToCamel( settings.oPreviousSearch ),\n\t\t\tcolumns: $.map( settings.aoColumns, function ( col, i ) {\n\t\t\t\treturn {\n\t\t\t\t\tvisible: col.bVisible,\n\t\t\t\t\tsearch: _fnSearchToCamel( settings.aoPreSearchCols[i] )\n\t\t\t\t};\n\t\t\t} )\n\t\t};\n\t\n\t\t_fnCallbackFire( settings, \"aoStateSaveParams\", 'stateSaveParams', [settings, state] );\n\t\n\t\tsettings.oSavedState = state;\n\t\tsettings.fnStateSaveCallback.call( settings.oInstance, settings, state );\n\t}\n\t\n\t\n\t/**\n\t * Attempt to load a saved table state\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {object} oInit DataTables init object so we can override settings\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnLoadState ( settings, oInit )\n\t{\n\t\tvar i, ien;\n\t\tvar columns = settings.aoColumns;\n\t\n\t\tif ( ! settings.oFeatures.bStateSave ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tvar state = settings.fnStateLoadCallback.call( settings.oInstance, settings );\n\t\tif ( ! state || ! state.time ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\t/* Allow custom and plug-in manipulation functions to alter the saved data set and\n\t\t * cancelling of loading by returning false\n\t\t */\n\t\tvar abStateLoad = _fnCallbackFire( settings, 'aoStateLoadParams', 'stateLoadParams', [settings, state] );\n\t\tif ( $.inArray( false, abStateLoad ) !== -1 ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\t/* Reject old data */\n\t\tvar duration = settings.iStateDuration;\n\t\tif ( duration > 0 && state.time < +new Date() - (duration*1000) ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\t// Number of columns have changed - all bets are off, no restore of settings\n\t\tif ( columns.length !== state.columns.length ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\t// Store the saved state so it might be accessed at any time\n\t\tsettings.oLoadedState = $.extend( true, {}, state );\n\t\n\t\t// Restore key features - todo - for 1.11 this needs to be done by\n\t\t// subscribed events\n\t\tsettings._iDisplayStart    = state.start;\n\t\tsettings.iInitDisplayStart = state.start;\n\t\tsettings._iDisplayLength   = state.length;\n\t\tsettings.aaSorting = [];\n\t\n\t\t// Order\n\t\t$.each( state.order, function ( i, col ) {\n\t\t\tsettings.aaSorting.push( col[0] >= columns.length ?\n\t\t\t\t[ 0, col[1] ] :\n\t\t\t\tcol\n\t\t\t);\n\t\t} );\n\t\n\t\t// Search\n\t\t$.extend( settings.oPreviousSearch, _fnSearchToHung( state.search ) );\n\t\n\t\t// Columns\n\t\tfor ( i=0, ien=state.columns.length ; i<ien ; i++ ) {\n\t\t\tvar col = state.columns[i];\n\t\n\t\t\t// Visibility\n\t\t\tcolumns[i].bVisible = col.visible;\n\t\n\t\t\t// Search\n\t\t\t$.extend( settings.aoPreSearchCols[i], _fnSearchToHung( col.search ) );\n\t\t}\n\t\n\t\t_fnCallbackFire( settings, 'aoStateLoaded', 'stateLoaded', [settings, state] );\n\t}\n\t\n\t\n\t/**\n\t * Return the settings object for a particular table\n\t *  @param {node} table table we are using as a dataTable\n\t *  @returns {object} Settings object - or null if not found\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnSettingsFromNode ( table )\n\t{\n\t\tvar settings = DataTable.settings;\n\t\tvar idx = $.inArray( table, _pluck( settings, 'nTable' ) );\n\t\n\t\treturn idx !== -1 ?\n\t\t\tsettings[ idx ] :\n\t\t\tnull;\n\t}\n\t\n\t\n\t/**\n\t * Log an error message\n\t *  @param {object} settings dataTables settings object\n\t *  @param {int} level log error messages, or display them to the user\n\t *  @param {string} msg error message\n\t *  @param {int} tn Technical note id to get more information about the error.\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnLog( settings, level, msg, tn )\n\t{\n\t\tmsg = 'DataTables warning: '+\n\t\t\t(settings!==null ? 'table id='+settings.sTableId+' - ' : '')+msg;\n\t\n\t\tif ( tn ) {\n\t\t\tmsg += '. For more information about this error, please see '+\n\t\t\t'http://datatables.net/tn/'+tn;\n\t\t}\n\t\n\t\tif ( ! level  ) {\n\t\t\t// Backwards compatibility pre 1.10\n\t\t\tvar ext = DataTable.ext;\n\t\t\tvar type = ext.sErrMode || ext.errMode;\n\t\n\t\t\tif ( type == 'alert' ) {\n\t\t\t\talert( msg );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthrow new Error(msg);\n\t\t\t}\n\t\t}\n\t\telse if ( window.console && console.log ) {\n\t\t\tconsole.log( msg );\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * See if a property is defined on one object, if so assign it to the other object\n\t *  @param {object} ret target object\n\t *  @param {object} src source object\n\t *  @param {string} name property\n\t *  @param {string} [mappedName] name to map too - optional, name used if not given\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnMap( ret, src, name, mappedName )\n\t{\n\t\tif ( $.isArray( name ) ) {\n\t\t\t$.each( name, function (i, val) {\n\t\t\t\tif ( $.isArray( val ) ) {\n\t\t\t\t\t_fnMap( ret, src, val[0], val[1] );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t_fnMap( ret, src, val );\n\t\t\t\t}\n\t\t\t} );\n\t\n\t\t\treturn;\n\t\t}\n\t\n\t\tif ( mappedName === undefined ) {\n\t\t\tmappedName = name;\n\t\t}\n\t\n\t\tif ( src[name] !== undefined ) {\n\t\t\tret[mappedName] = src[name];\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Extend objects - very similar to jQuery.extend, but deep copy objects, and\n\t * shallow copy arrays. The reason we need to do this, is that we don't want to\n\t * deep copy array init values (such as aaSorting) since the dev wouldn't be\n\t * able to override them, but we do want to deep copy arrays.\n\t *  @param {object} out Object to extend\n\t *  @param {object} extender Object from which the properties will be applied to\n\t *      out\n\t *  @param {boolean} breakRefs If true, then arrays will be sliced to take an\n\t *      independent copy with the exception of the `data` or `aaData` parameters\n\t *      if they are present. This is so you can pass in a collection to\n\t *      DataTables and have that used as your data source without breaking the\n\t *      references\n\t *  @returns {object} out Reference, just for convenience - out === the return.\n\t *  @memberof DataTable#oApi\n\t *  @todo This doesn't take account of arrays inside the deep copied objects.\n\t */\n\tfunction _fnExtend( out, extender, breakRefs )\n\t{\n\t\tvar val;\n\t\n\t\tfor ( var prop in extender ) {\n\t\t\tif ( extender.hasOwnProperty(prop) ) {\n\t\t\t\tval = extender[prop];\n\t\n\t\t\t\tif ( $.isPlainObject( val ) ) {\n\t\t\t\t\tif ( ! $.isPlainObject( out[prop] ) ) {\n\t\t\t\t\t\tout[prop] = {};\n\t\t\t\t\t}\n\t\t\t\t\t$.extend( true, out[prop], val );\n\t\t\t\t}\n\t\t\t\telse if ( breakRefs && prop !== 'data' && prop !== 'aaData' && $.isArray(val) ) {\n\t\t\t\t\tout[prop] = val.slice();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tout[prop] = val;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\treturn out;\n\t}\n\t\n\t\n\t/**\n\t * Bind an event handers to allow a click or return key to activate the callback.\n\t * This is good for accessibility since a return on the keyboard will have the\n\t * same effect as a click, if the element has focus.\n\t *  @param {element} n Element to bind the action to\n\t *  @param {object} oData Data object to pass to the triggered function\n\t *  @param {function} fn Callback function for when the event is triggered\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnBindAction( n, oData, fn )\n\t{\n\t\t$(n)\n\t\t\t.bind( 'click.DT', oData, function (e) {\n\t\t\t\t\tn.blur(); // Remove focus outline for mouse users\n\t\t\t\t\tfn(e);\n\t\t\t\t} )\n\t\t\t.bind( 'keypress.DT', oData, function (e){\n\t\t\t\t\tif ( e.which === 13 ) {\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tfn(e);\n\t\t\t\t\t}\n\t\t\t\t} )\n\t\t\t.bind( 'selectstart.DT', function () {\n\t\t\t\t\t/* Take the brutal approach to cancelling text selection */\n\t\t\t\t\treturn false;\n\t\t\t\t} );\n\t}\n\t\n\t\n\t/**\n\t * Register a callback function. Easily allows a callback function to be added to\n\t * an array store of callback functions that can then all be called together.\n\t *  @param {object} oSettings dataTables settings object\n\t *  @param {string} sStore Name of the array storage for the callbacks in oSettings\n\t *  @param {function} fn Function to be called back\n\t *  @param {string} sName Identifying name for the callback (i.e. a label)\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnCallbackReg( oSettings, sStore, fn, sName )\n\t{\n\t\tif ( fn )\n\t\t{\n\t\t\toSettings[sStore].push( {\n\t\t\t\t\"fn\": fn,\n\t\t\t\t\"sName\": sName\n\t\t\t} );\n\t\t}\n\t}\n\t\n\t\n\t/**\n\t * Fire callback functions and trigger events. Note that the loop over the\n\t * callback array store is done backwards! Further note that you do not want to\n\t * fire off triggers in time sensitive applications (for example cell creation)\n\t * as its slow.\n\t *  @param {object} settings dataTables settings object\n\t *  @param {string} callbackArr Name of the array storage for the callbacks in\n\t *      oSettings\n\t *  @param {string} event Name of the jQuery custom event to trigger. If null no\n\t *      trigger is fired\n\t *  @param {array} args Array of arguments to pass to the callback function /\n\t *      trigger\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnCallbackFire( settings, callbackArr, e, args )\n\t{\n\t\tvar ret = [];\n\t\n\t\tif ( callbackArr ) {\n\t\t\tret = $.map( settings[callbackArr].slice().reverse(), function (val, i) {\n\t\t\t\treturn val.fn.apply( settings.oInstance, args );\n\t\t\t} );\n\t\t}\n\t\n\t\tif ( e !== null ) {\n\t\t\t$(settings.nTable).trigger( e+'.dt', args );\n\t\t}\n\t\n\t\treturn ret;\n\t}\n\t\n\t\n\tfunction _fnLengthOverflow ( settings )\n\t{\n\t\tvar\n\t\t\tstart = settings._iDisplayStart,\n\t\t\tend = settings.fnDisplayEnd(),\n\t\t\tlen = settings._iDisplayLength;\n\t\n\t\t/* If we have space to show extra rows (backing up from the end point - then do so */\n\t\tif ( start >= end )\n\t\t{\n\t\t\tstart = end - len;\n\t\t}\n\t\n\t\t// Keep the start record on the current page\n\t\tstart -= (start % len);\n\t\n\t\tif ( len === -1 || start < 0 )\n\t\t{\n\t\t\tstart = 0;\n\t\t}\n\t\n\t\tsettings._iDisplayStart = start;\n\t}\n\t\n\t\n\tfunction _fnRenderer( settings, type )\n\t{\n\t\tvar renderer = settings.renderer;\n\t\tvar host = DataTable.ext.renderer[type];\n\t\n\t\tif ( $.isPlainObject( renderer ) && renderer[type] ) {\n\t\t\t// Specific renderer for this type. If available use it, otherwise use\n\t\t\t// the default.\n\t\t\treturn host[renderer[type]] || host._;\n\t\t}\n\t\telse if ( typeof renderer === 'string' ) {\n\t\t\t// Common renderer - if there is one available for this type use it,\n\t\t\t// otherwise use the default\n\t\t\treturn host[renderer] || host._;\n\t\t}\n\t\n\t\t// Use the default\n\t\treturn host._;\n\t}\n\t\n\t\n\t/**\n\t * Detect the data source being used for the table. Used to simplify the code\n\t * a little (ajax) and to make it compress a little smaller.\n\t *\n\t *  @param {object} settings dataTables settings object\n\t *  @returns {string} Data source\n\t *  @memberof DataTable#oApi\n\t */\n\tfunction _fnDataSource ( settings )\n\t{\n\t\tif ( settings.oFeatures.bServerSide ) {\n\t\t\treturn 'ssp';\n\t\t}\n\t\telse if ( settings.ajax || settings.sAjaxSource ) {\n\t\t\treturn 'ajax';\n\t\t}\n\t\treturn 'dom';\n\t}\n\t\n\n\tDataTable = function( options )\n\t{\n\t\t/**\n\t\t * Perform a jQuery selector action on the table's TR elements (from the tbody) and\n\t\t * return the resulting jQuery object.\n\t\t *  @param {string|node|jQuery} sSelector jQuery selector or node collection to act on\n\t\t *  @param {object} [oOpts] Optional parameters for modifying the rows to be included\n\t\t *  @param {string} [oOpts.filter=none] Select TR elements that meet the current filter\n\t\t *    criterion (\"applied\") or all TR elements (i.e. no filter).\n\t\t *  @param {string} [oOpts.order=current] Order of the TR elements in the processed array.\n\t\t *    Can be either 'current', whereby the current sorting of the table is used, or\n\t\t *    'original' whereby the original order the data was read into the table is used.\n\t\t *  @param {string} [oOpts.page=all] Limit the selection to the currently displayed page\n\t\t *    (\"current\") or not (\"all\"). If 'current' is given, then order is assumed to be\n\t\t *    'current' and filter is 'applied', regardless of what they might be given as.\n\t\t *  @returns {object} jQuery object, filtered by the given selector.\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Highlight every second row\n\t\t *      oTable.$('tr:odd').css('backgroundColor', 'blue');\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Filter to rows with 'Webkit' in them, add a background colour and then\n\t\t *      // remove the filter, thus highlighting the 'Webkit' rows only.\n\t\t *      oTable.fnFilter('Webkit');\n\t\t *      oTable.$('tr', {\"search\": \"applied\"}).css('backgroundColor', 'blue');\n\t\t *      oTable.fnFilter('');\n\t\t *    } );\n\t\t */\n\t\tthis.$ = function ( sSelector, oOpts )\n\t\t{\n\t\t\treturn this.api(true).$( sSelector, oOpts );\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Almost identical to $ in operation, but in this case returns the data for the matched\n\t\t * rows - as such, the jQuery selector used should match TR row nodes or TD/TH cell nodes\n\t\t * rather than any descendants, so the data can be obtained for the row/cell. If matching\n\t\t * rows are found, the data returned is the original data array/object that was used to\n\t\t * create the row (or a generated array if from a DOM source).\n\t\t *\n\t\t * This method is often useful in-combination with $ where both functions are given the\n\t\t * same parameters and the array indexes will match identically.\n\t\t *  @param {string|node|jQuery} sSelector jQuery selector or node collection to act on\n\t\t *  @param {object} [oOpts] Optional parameters for modifying the rows to be included\n\t\t *  @param {string} [oOpts.filter=none] Select elements that meet the current filter\n\t\t *    criterion (\"applied\") or all elements (i.e. no filter).\n\t\t *  @param {string} [oOpts.order=current] Order of the data in the processed array.\n\t\t *    Can be either 'current', whereby the current sorting of the table is used, or\n\t\t *    'original' whereby the original order the data was read into the table is used.\n\t\t *  @param {string} [oOpts.page=all] Limit the selection to the currently displayed page\n\t\t *    (\"current\") or not (\"all\"). If 'current' is given, then order is assumed to be\n\t\t *    'current' and filter is 'applied', regardless of what they might be given as.\n\t\t *  @returns {array} Data for the matched elements. If any elements, as a result of the\n\t\t *    selector, were not TR, TD or TH elements in the DataTable, they will have a null\n\t\t *    entry in the array.\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Get the data from the first row in the table\n\t\t *      var data = oTable._('tr:first');\n\t\t *\n\t\t *      // Do something useful with the data\n\t\t *      alert( \"First cell is: \"+data[0] );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Filter to 'Webkit' and get all data for\n\t\t *      oTable.fnFilter('Webkit');\n\t\t *      var data = oTable._('tr', {\"search\": \"applied\"});\n\t\t *\n\t\t *      // Do something with the data\n\t\t *      alert( data.length+\" rows matched the search\" );\n\t\t *    } );\n\t\t */\n\t\tthis._ = function ( sSelector, oOpts )\n\t\t{\n\t\t\treturn this.api(true).rows( sSelector, oOpts ).data();\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Create a DataTables Api instance, with the currently selected tables for\n\t\t * the Api's context.\n\t\t * @param {boolean} [traditional=false] Set the API instance's context to be\n\t\t *   only the table referred to by the `DataTable.ext.iApiIndex` option, as was\n\t\t *   used in the API presented by DataTables 1.9- (i.e. the traditional mode),\n\t\t *   or if all tables captured in the jQuery object should be used.\n\t\t * @return {DataTables.Api}\n\t\t */\n\t\tthis.api = function ( traditional )\n\t\t{\n\t\t\treturn traditional ?\n\t\t\t\tnew _Api(\n\t\t\t\t\t_fnSettingsFromNode( this[ _ext.iApiIndex ] )\n\t\t\t\t) :\n\t\t\t\tnew _Api( this );\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Add a single new row or multiple rows of data to the table. Please note\n\t\t * that this is suitable for client-side processing only - if you are using\n\t\t * server-side processing (i.e. \"bServerSide\": true), then to add data, you\n\t\t * must add it to the data source, i.e. the server-side, through an Ajax call.\n\t\t *  @param {array|object} data The data to be added to the table. This can be:\n\t\t *    <ul>\n\t\t *      <li>1D array of data - add a single row with the data provided</li>\n\t\t *      <li>2D array of arrays - add multiple rows in a single call</li>\n\t\t *      <li>object - data object when using <i>mData</i></li>\n\t\t *      <li>array of objects - multiple data objects when using <i>mData</i></li>\n\t\t *    </ul>\n\t\t *  @param {bool} [redraw=true] redraw the table or not\n\t\t *  @returns {array} An array of integers, representing the list of indexes in\n\t\t *    <i>aoData</i> ({@link DataTable.models.oSettings}) that have been added to\n\t\t *    the table.\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    // Global var for counter\n\t\t *    var giCount = 2;\n\t\t *\n\t\t *    $(document).ready(function() {\n\t\t *      $('#example').dataTable();\n\t\t *    } );\n\t\t *\n\t\t *    function fnClickAddRow() {\n\t\t *      $('#example').dataTable().fnAddData( [\n\t\t *        giCount+\".1\",\n\t\t *        giCount+\".2\",\n\t\t *        giCount+\".3\",\n\t\t *        giCount+\".4\" ]\n\t\t *      );\n\t\t *\n\t\t *      giCount++;\n\t\t *    }\n\t\t */\n\t\tthis.fnAddData = function( data, redraw )\n\t\t{\n\t\t\tvar api = this.api( true );\n\t\t\n\t\t\t/* Check if we want to add multiple rows or not */\n\t\t\tvar rows = $.isArray(data) && ( $.isArray(data[0]) || $.isPlainObject(data[0]) ) ?\n\t\t\t\tapi.rows.add( data ) :\n\t\t\t\tapi.row.add( data );\n\t\t\n\t\t\tif ( redraw === undefined || redraw ) {\n\t\t\t\tapi.draw();\n\t\t\t}\n\t\t\n\t\t\treturn rows.flatten().toArray();\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * This function will make DataTables recalculate the column sizes, based on the data\n\t\t * contained in the table and the sizes applied to the columns (in the DOM, CSS or\n\t\t * through the sWidth parameter). This can be useful when the width of the table's\n\t\t * parent element changes (for example a window resize).\n\t\t *  @param {boolean} [bRedraw=true] Redraw the table or not, you will typically want to\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable( {\n\t\t *        \"sScrollY\": \"200px\",\n\t\t *        \"bPaginate\": false\n\t\t *      } );\n\t\t *\n\t\t *      $(window).bind('resize', function () {\n\t\t *        oTable.fnAdjustColumnSizing();\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\tthis.fnAdjustColumnSizing = function ( bRedraw )\n\t\t{\n\t\t\tvar api = this.api( true ).columns.adjust();\n\t\t\tvar settings = api.settings()[0];\n\t\t\tvar scroll = settings.oScroll;\n\t\t\n\t\t\tif ( bRedraw === undefined || bRedraw ) {\n\t\t\t\tapi.draw( false );\n\t\t\t}\n\t\t\telse if ( scroll.sX !== \"\" || scroll.sY !== \"\" ) {\n\t\t\t\t/* If not redrawing, but scrolling, we want to apply the new column sizes anyway */\n\t\t\t\t_fnScrollDraw( settings );\n\t\t\t}\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Quickly and simply clear a table\n\t\t *  @param {bool} [bRedraw=true] redraw the table or not\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Immediately 'nuke' the current rows (perhaps waiting for an Ajax callback...)\n\t\t *      oTable.fnClearTable();\n\t\t *    } );\n\t\t */\n\t\tthis.fnClearTable = function( bRedraw )\n\t\t{\n\t\t\tvar api = this.api( true ).clear();\n\t\t\n\t\t\tif ( bRedraw === undefined || bRedraw ) {\n\t\t\t\tapi.draw();\n\t\t\t}\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * The exact opposite of 'opening' a row, this function will close any rows which\n\t\t * are currently 'open'.\n\t\t *  @param {node} nTr the table row to 'close'\n\t\t *  @returns {int} 0 on success, or 1 if failed (can't find the row)\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable;\n\t\t *\n\t\t *      // 'open' an information row when a row is clicked on\n\t\t *      $('#example tbody tr').click( function () {\n\t\t *        if ( oTable.fnIsOpen(this) ) {\n\t\t *          oTable.fnClose( this );\n\t\t *        } else {\n\t\t *          oTable.fnOpen( this, \"Temporary row opened\", \"info_row\" );\n\t\t *        }\n\t\t *      } );\n\t\t *\n\t\t *      oTable = $('#example').dataTable();\n\t\t *    } );\n\t\t */\n\t\tthis.fnClose = function( nTr )\n\t\t{\n\t\t\tthis.api( true ).row( nTr ).child.hide();\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Remove a row for the table\n\t\t *  @param {mixed} target The index of the row from aoData to be deleted, or\n\t\t *    the TR element you want to delete\n\t\t *  @param {function|null} [callBack] Callback function\n\t\t *  @param {bool} [redraw=true] Redraw the table or not\n\t\t *  @returns {array} The row that was deleted\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Immediately remove the first row\n\t\t *      oTable.fnDeleteRow( 0 );\n\t\t *    } );\n\t\t */\n\t\tthis.fnDeleteRow = function( target, callback, redraw )\n\t\t{\n\t\t\tvar api = this.api( true );\n\t\t\tvar rows = api.rows( target );\n\t\t\tvar settings = rows.settings()[0];\n\t\t\tvar data = settings.aoData[ rows[0][0] ];\n\t\t\n\t\t\trows.remove();\n\t\t\n\t\t\tif ( callback ) {\n\t\t\t\tcallback.call( this, settings, data );\n\t\t\t}\n\t\t\n\t\t\tif ( redraw === undefined || redraw ) {\n\t\t\t\tapi.draw();\n\t\t\t}\n\t\t\n\t\t\treturn data;\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Restore the table to it's original state in the DOM by removing all of DataTables\n\t\t * enhancements, alterations to the DOM structure of the table and event listeners.\n\t\t *  @param {boolean} [remove=false] Completely remove the table from the DOM\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      // This example is fairly pointless in reality, but shows how fnDestroy can be used\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *      oTable.fnDestroy();\n\t\t *    } );\n\t\t */\n\t\tthis.fnDestroy = function ( remove )\n\t\t{\n\t\t\tthis.api( true ).destroy( remove );\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Redraw the table\n\t\t *  @param {bool} [complete=true] Re-filter and resort (if enabled) the table before the draw.\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Re-draw the table - you wouldn't want to do it here, but it's an example :-)\n\t\t *      oTable.fnDraw();\n\t\t *    } );\n\t\t */\n\t\tthis.fnDraw = function( complete )\n\t\t{\n\t\t\t// Note that this isn't an exact match to the old call to _fnDraw - it takes\n\t\t\t// into account the new data, but can old position.\n\t\t\tthis.api( true ).draw( ! complete );\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Filter the input based on data\n\t\t *  @param {string} sInput String to filter the table on\n\t\t *  @param {int|null} [iColumn] Column to limit filtering to\n\t\t *  @param {bool} [bRegex=false] Treat as regular expression or not\n\t\t *  @param {bool} [bSmart=true] Perform smart filtering or not\n\t\t *  @param {bool} [bShowGlobal=true] Show the input global filter in it's input box(es)\n\t\t *  @param {bool} [bCaseInsensitive=true] Do case-insensitive matching (true) or not (false)\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Sometime later - filter...\n\t\t *      oTable.fnFilter( 'test string' );\n\t\t *    } );\n\t\t */\n\t\tthis.fnFilter = function( sInput, iColumn, bRegex, bSmart, bShowGlobal, bCaseInsensitive )\n\t\t{\n\t\t\tvar api = this.api( true );\n\t\t\n\t\t\tif ( iColumn === null || iColumn === undefined ) {\n\t\t\t\tapi.search( sInput, bRegex, bSmart, bCaseInsensitive );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tapi.column( iColumn ).search( sInput, bRegex, bSmart, bCaseInsensitive );\n\t\t\t}\n\t\t\n\t\t\tapi.draw();\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Get the data for the whole table, an individual row or an individual cell based on the\n\t\t * provided parameters.\n\t\t *  @param {int|node} [src] A TR row node, TD/TH cell node or an integer. If given as\n\t\t *    a TR node then the data source for the whole row will be returned. If given as a\n\t\t *    TD/TH cell node then iCol will be automatically calculated and the data for the\n\t\t *    cell returned. If given as an integer, then this is treated as the aoData internal\n\t\t *    data index for the row (see fnGetPosition) and the data for that row used.\n\t\t *  @param {int} [col] Optional column index that you want the data of.\n\t\t *  @returns {array|object|string} If mRow is undefined, then the data for all rows is\n\t\t *    returned. If mRow is defined, just data for that row, and is iCol is\n\t\t *    defined, only data for the designated cell is returned.\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    // Row data\n\t\t *    $(document).ready(function() {\n\t\t *      oTable = $('#example').dataTable();\n\t\t *\n\t\t *      oTable.$('tr').click( function () {\n\t\t *        var data = oTable.fnGetData( this );\n\t\t *        // ... do something with the array / object of data for the row\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Individual cell data\n\t\t *    $(document).ready(function() {\n\t\t *      oTable = $('#example').dataTable();\n\t\t *\n\t\t *      oTable.$('td').click( function () {\n\t\t *        var sData = oTable.fnGetData( this );\n\t\t *        alert( 'The cell clicked on had the value of '+sData );\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\tthis.fnGetData = function( src, col )\n\t\t{\n\t\t\tvar api = this.api( true );\n\t\t\n\t\t\tif ( src !== undefined ) {\n\t\t\t\tvar type = src.nodeName ? src.nodeName.toLowerCase() : '';\n\t\t\n\t\t\t\treturn col !== undefined || type == 'td' || type == 'th' ?\n\t\t\t\t\tapi.cell( src, col ).data() :\n\t\t\t\t\tapi.row( src ).data() || null;\n\t\t\t}\n\t\t\n\t\t\treturn api.data().toArray();\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Get an array of the TR nodes that are used in the table's body. Note that you will\n\t\t * typically want to use the '$' API method in preference to this as it is more\n\t\t * flexible.\n\t\t *  @param {int} [iRow] Optional row index for the TR element you want\n\t\t *  @returns {array|node} If iRow is undefined, returns an array of all TR elements\n\t\t *    in the table's body, or iRow is defined, just the TR element requested.\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Get the nodes from the table\n\t\t *      var nNodes = oTable.fnGetNodes( );\n\t\t *    } );\n\t\t */\n\t\tthis.fnGetNodes = function( iRow )\n\t\t{\n\t\t\tvar api = this.api( true );\n\t\t\n\t\t\treturn iRow !== undefined ?\n\t\t\t\tapi.row( iRow ).node() :\n\t\t\t\tapi.rows().nodes().flatten().toArray();\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Get the array indexes of a particular cell from it's DOM element\n\t\t * and column index including hidden columns\n\t\t *  @param {node} node this can either be a TR, TD or TH in the table's body\n\t\t *  @returns {int} If nNode is given as a TR, then a single index is returned, or\n\t\t *    if given as a cell, an array of [row index, column index (visible),\n\t\t *    column index (all)] is given.\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      $('#example tbody td').click( function () {\n\t\t *        // Get the position of the current data from the node\n\t\t *        var aPos = oTable.fnGetPosition( this );\n\t\t *\n\t\t *        // Get the data array for this row\n\t\t *        var aData = oTable.fnGetData( aPos[0] );\n\t\t *\n\t\t *        // Update the data array and return the value\n\t\t *        aData[ aPos[1] ] = 'clicked';\n\t\t *        this.innerHTML = 'clicked';\n\t\t *      } );\n\t\t *\n\t\t *      // Init DataTables\n\t\t *      oTable = $('#example').dataTable();\n\t\t *    } );\n\t\t */\n\t\tthis.fnGetPosition = function( node )\n\t\t{\n\t\t\tvar api = this.api( true );\n\t\t\tvar nodeName = node.nodeName.toUpperCase();\n\t\t\n\t\t\tif ( nodeName == 'TR' ) {\n\t\t\t\treturn api.row( node ).index();\n\t\t\t}\n\t\t\telse if ( nodeName == 'TD' || nodeName == 'TH' ) {\n\t\t\t\tvar cell = api.cell( node ).index();\n\t\t\n\t\t\t\treturn [\n\t\t\t\t\tcell.row,\n\t\t\t\t\tcell.columnVisible,\n\t\t\t\t\tcell.column\n\t\t\t\t];\n\t\t\t}\n\t\t\treturn null;\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Check to see if a row is 'open' or not.\n\t\t *  @param {node} nTr the table row to check\n\t\t *  @returns {boolean} true if the row is currently open, false otherwise\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable;\n\t\t *\n\t\t *      // 'open' an information row when a row is clicked on\n\t\t *      $('#example tbody tr').click( function () {\n\t\t *        if ( oTable.fnIsOpen(this) ) {\n\t\t *          oTable.fnClose( this );\n\t\t *        } else {\n\t\t *          oTable.fnOpen( this, \"Temporary row opened\", \"info_row\" );\n\t\t *        }\n\t\t *      } );\n\t\t *\n\t\t *      oTable = $('#example').dataTable();\n\t\t *    } );\n\t\t */\n\t\tthis.fnIsOpen = function( nTr )\n\t\t{\n\t\t\treturn this.api( true ).row( nTr ).child.isShown();\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * This function will place a new row directly after a row which is currently\n\t\t * on display on the page, with the HTML contents that is passed into the\n\t\t * function. This can be used, for example, to ask for confirmation that a\n\t\t * particular record should be deleted.\n\t\t *  @param {node} nTr The table row to 'open'\n\t\t *  @param {string|node|jQuery} mHtml The HTML to put into the row\n\t\t *  @param {string} sClass Class to give the new TD cell\n\t\t *  @returns {node} The row opened. Note that if the table row passed in as the\n\t\t *    first parameter, is not found in the table, this method will silently\n\t\t *    return.\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable;\n\t\t *\n\t\t *      // 'open' an information row when a row is clicked on\n\t\t *      $('#example tbody tr').click( function () {\n\t\t *        if ( oTable.fnIsOpen(this) ) {\n\t\t *          oTable.fnClose( this );\n\t\t *        } else {\n\t\t *          oTable.fnOpen( this, \"Temporary row opened\", \"info_row\" );\n\t\t *        }\n\t\t *      } );\n\t\t *\n\t\t *      oTable = $('#example').dataTable();\n\t\t *    } );\n\t\t */\n\t\tthis.fnOpen = function( nTr, mHtml, sClass )\n\t\t{\n\t\t\treturn this.api( true )\n\t\t\t\t.row( nTr )\n\t\t\t\t.child( mHtml, sClass )\n\t\t\t\t.show()\n\t\t\t\t.child()[0];\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Change the pagination - provides the internal logic for pagination in a simple API\n\t\t * function. With this function you can have a DataTables table go to the next,\n\t\t * previous, first or last pages.\n\t\t *  @param {string|int} mAction Paging action to take: \"first\", \"previous\", \"next\" or \"last\"\n\t\t *    or page number to jump to (integer), note that page 0 is the first page.\n\t\t *  @param {bool} [bRedraw=true] Redraw the table or not\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *      oTable.fnPageChange( 'next' );\n\t\t *    } );\n\t\t */\n\t\tthis.fnPageChange = function ( mAction, bRedraw )\n\t\t{\n\t\t\tvar api = this.api( true ).page( mAction );\n\t\t\n\t\t\tif ( bRedraw === undefined || bRedraw ) {\n\t\t\t\tapi.draw(false);\n\t\t\t}\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Show a particular column\n\t\t *  @param {int} iCol The column whose display should be changed\n\t\t *  @param {bool} bShow Show (true) or hide (false) the column\n\t\t *  @param {bool} [bRedraw=true] Redraw the table or not\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Hide the second column after initialisation\n\t\t *      oTable.fnSetColumnVis( 1, false );\n\t\t *    } );\n\t\t */\n\t\tthis.fnSetColumnVis = function ( iCol, bShow, bRedraw )\n\t\t{\n\t\t\tvar api = this.api( true ).column( iCol ).visible( bShow );\n\t\t\n\t\t\tif ( bRedraw === undefined || bRedraw ) {\n\t\t\t\tapi.columns.adjust().draw();\n\t\t\t}\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Get the settings for a particular table for external manipulation\n\t\t *  @returns {object} DataTables settings object. See\n\t\t *    {@link DataTable.models.oSettings}\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *      var oSettings = oTable.fnSettings();\n\t\t *\n\t\t *      // Show an example parameter from the settings\n\t\t *      alert( oSettings._iDisplayStart );\n\t\t *    } );\n\t\t */\n\t\tthis.fnSettings = function()\n\t\t{\n\t\t\treturn _fnSettingsFromNode( this[_ext.iApiIndex] );\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Sort the table by a particular column\n\t\t *  @param {int} iCol the data index to sort on. Note that this will not match the\n\t\t *    'display index' if you have hidden data entries\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Sort immediately with columns 0 and 1\n\t\t *      oTable.fnSort( [ [0,'asc'], [1,'asc'] ] );\n\t\t *    } );\n\t\t */\n\t\tthis.fnSort = function( aaSort )\n\t\t{\n\t\t\tthis.api( true ).order( aaSort ).draw();\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Attach a sort listener to an element for a given column\n\t\t *  @param {node} nNode the element to attach the sort listener to\n\t\t *  @param {int} iColumn the column that a click on this node will sort on\n\t\t *  @param {function} [fnCallback] callback function when sort is run\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *\n\t\t *      // Sort on column 1, when 'sorter' is clicked on\n\t\t *      oTable.fnSortListener( document.getElementById('sorter'), 1 );\n\t\t *    } );\n\t\t */\n\t\tthis.fnSortListener = function( nNode, iColumn, fnCallback )\n\t\t{\n\t\t\tthis.api( true ).order.listener( nNode, iColumn, fnCallback );\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Update a table cell or row - this method will accept either a single value to\n\t\t * update the cell with, an array of values with one element for each column or\n\t\t * an object in the same format as the original data source. The function is\n\t\t * self-referencing in order to make the multi column updates easier.\n\t\t *  @param {object|array|string} mData Data to update the cell/row with\n\t\t *  @param {node|int} mRow TR element you want to update or the aoData index\n\t\t *  @param {int} [iColumn] The column to update, give as null or undefined to\n\t\t *    update a whole row.\n\t\t *  @param {bool} [bRedraw=true] Redraw the table or not\n\t\t *  @param {bool} [bAction=true] Perform pre-draw actions or not\n\t\t *  @returns {int} 0 on success, 1 on error\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *      oTable.fnUpdate( 'Example update', 0, 0 ); // Single cell\n\t\t *      oTable.fnUpdate( ['a', 'b', 'c', 'd', 'e'], $('tbody tr')[0] ); // Row\n\t\t *    } );\n\t\t */\n\t\tthis.fnUpdate = function( mData, mRow, iColumn, bRedraw, bAction )\n\t\t{\n\t\t\tvar api = this.api( true );\n\t\t\n\t\t\tif ( iColumn === undefined || iColumn === null ) {\n\t\t\t\tapi.row( mRow ).data( mData );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tapi.cell( mRow, iColumn ).data( mData );\n\t\t\t}\n\t\t\n\t\t\tif ( bAction === undefined || bAction ) {\n\t\t\t\tapi.columns.adjust();\n\t\t\t}\n\t\t\n\t\t\tif ( bRedraw === undefined || bRedraw ) {\n\t\t\t\tapi.draw();\n\t\t\t}\n\t\t\treturn 0;\n\t\t};\n\t\t\n\t\t\n\t\t/**\n\t\t * Provide a common method for plug-ins to check the version of DataTables being used, in order\n\t\t * to ensure compatibility.\n\t\t *  @param {string} sVersion Version string to check for, in the format \"X.Y.Z\". Note that the\n\t\t *    formats \"X\" and \"X.Y\" are also acceptable.\n\t\t *  @returns {boolean} true if this version of DataTables is greater or equal to the required\n\t\t *    version, or false if this version of DataTales is not suitable\n\t\t *  @method\n\t\t *  @dtopt API\n\t\t *  @deprecated Since v1.10\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready(function() {\n\t\t *      var oTable = $('#example').dataTable();\n\t\t *      alert( oTable.fnVersionCheck( '1.9.0' ) );\n\t\t *    } );\n\t\t */\n\t\tthis.fnVersionCheck = _ext.fnVersionCheck;\n\t\t\n\n\t\tvar _that = this;\n\t\tvar emptyInit = options === undefined;\n\t\tvar len = this.length;\n\n\t\tif ( emptyInit ) {\n\t\t\toptions = {};\n\t\t}\n\n\t\tthis.oApi = this.internal = _ext.internal;\n\n\t\t// Extend with old style plug-in API methods\n\t\tfor ( var fn in DataTable.ext.internal ) {\n\t\t\tif ( fn ) {\n\t\t\t\tthis[fn] = _fnExternApiFunc(fn);\n\t\t\t}\n\t\t}\n\n\t\tthis.each(function() {\n\t\t\t// For each initialisation we want to give it a clean initialisation\n\t\t\t// object that can be bashed around\n\t\t\tvar o = {};\n\t\t\tvar oInit = len > 1 ? // optimisation for single table case\n\t\t\t\t_fnExtend( o, options, true ) :\n\t\t\t\toptions;\n\n\t\t\t/*global oInit,_that,emptyInit*/\n\t\t\tvar i=0, iLen, j, jLen, k, kLen;\n\t\t\tvar sId = this.getAttribute( 'id' );\n\t\t\tvar bInitHandedOff = false;\n\t\t\tvar defaults = DataTable.defaults;\n\t\t\t\n\t\t\t\n\t\t\t/* Sanity check */\n\t\t\tif ( this.nodeName.toLowerCase() != 'table' )\n\t\t\t{\n\t\t\t\t_fnLog( null, 0, 'Non-table node initialisation ('+this.nodeName+')', 2 );\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t\n\t\t\t/* Backwards compatibility for the defaults */\n\t\t\t_fnCompatOpts( defaults );\n\t\t\t_fnCompatCols( defaults.column );\n\t\t\t\n\t\t\t/* Convert the camel-case defaults to Hungarian */\n\t\t\t_fnCamelToHungarian( defaults, defaults, true );\n\t\t\t_fnCamelToHungarian( defaults.column, defaults.column, true );\n\t\t\t\n\t\t\t/* Setting up the initialisation object */\n\t\t\t_fnCamelToHungarian( defaults, oInit );\n\t\t\t\n\t\t\t/* Check to see if we are re-initialising a table */\n\t\t\tvar allSettings = DataTable.settings;\n\t\t\tfor ( i=0, iLen=allSettings.length ; i<iLen ; i++ )\n\t\t\t{\n\t\t\t\t/* Base check on table node */\n\t\t\t\tif ( allSettings[i].nTable == this )\n\t\t\t\t{\n\t\t\t\t\tvar bRetrieve = oInit.bRetrieve !== undefined ? oInit.bRetrieve : defaults.bRetrieve;\n\t\t\t\t\tvar bDestroy = oInit.bDestroy !== undefined ? oInit.bDestroy : defaults.bDestroy;\n\t\t\t\n\t\t\t\t\tif ( emptyInit || bRetrieve )\n\t\t\t\t\t{\n\t\t\t\t\t\treturn allSettings[i].oInstance;\n\t\t\t\t\t}\n\t\t\t\t\telse if ( bDestroy )\n\t\t\t\t\t{\n\t\t\t\t\t\tallSettings[i].oInstance.fnDestroy();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\t_fnLog( allSettings[i], 0, 'Cannot reinitialise DataTable', 3 );\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\n\t\t\t\t/* If the element we are initialising has the same ID as a table which was previously\n\t\t\t\t * initialised, but the table nodes don't match (from before) then we destroy the old\n\t\t\t\t * instance by simply deleting it. This is under the assumption that the table has been\n\t\t\t\t * destroyed by other methods. Anyone using non-id selectors will need to do this manually\n\t\t\t\t */\n\t\t\t\tif ( allSettings[i].sTableId == this.id )\n\t\t\t\t{\n\t\t\t\t\tallSettings.splice( i, 1 );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t/* Ensure the table has an ID - required for accessibility */\n\t\t\tif ( sId === null || sId === \"\" )\n\t\t\t{\n\t\t\t\tsId = \"DataTables_Table_\"+(DataTable.ext._unique++);\n\t\t\t\tthis.id = sId;\n\t\t\t}\n\t\t\t\n\t\t\t/* Create the settings object for this table and set some of the default parameters */\n\t\t\tvar oSettings = $.extend( true, {}, DataTable.models.oSettings, {\n\t\t\t\t\"nTable\":        this,\n\t\t\t\t\"oApi\":          _that.internal,\n\t\t\t\t\"oInit\":         oInit,\n\t\t\t\t\"sDestroyWidth\": $(this)[0].style.width,\n\t\t\t\t\"sInstance\":     sId,\n\t\t\t\t\"sTableId\":      sId\n\t\t\t} );\n\t\t\tallSettings.push( oSettings );\n\t\t\t\n\t\t\t// Need to add the instance after the instance after the settings object has been added\n\t\t\t// to the settings array, so we can self reference the table instance if more than one\n\t\t\toSettings.oInstance = (_that.length===1) ? _that : $(this).dataTable();\n\t\t\t\n\t\t\t// Backwards compatibility, before we apply all the defaults\n\t\t\t_fnCompatOpts( oInit );\n\t\t\t\n\t\t\tif ( oInit.oLanguage )\n\t\t\t{\n\t\t\t\t_fnLanguageCompat( oInit.oLanguage );\n\t\t\t}\n\t\t\t\n\t\t\t// If the length menu is given, but the init display length is not, use the length menu\n\t\t\tif ( oInit.aLengthMenu && ! oInit.iDisplayLength )\n\t\t\t{\n\t\t\t\toInit.iDisplayLength = $.isArray( oInit.aLengthMenu[0] ) ?\n\t\t\t\t\toInit.aLengthMenu[0][0] : oInit.aLengthMenu[0];\n\t\t\t}\n\t\t\t\n\t\t\t// Apply the defaults and init options to make a single init object will all\n\t\t\t// options defined from defaults and instance options.\n\t\t\toInit = _fnExtend( $.extend( true, {}, defaults ), oInit );\n\t\t\t\n\t\t\t\n\t\t\t// Map the initialisation options onto the settings object\n\t\t\t_fnMap( oSettings.oFeatures, oInit, [\n\t\t\t\t\"bPaginate\",\n\t\t\t\t\"bLengthChange\",\n\t\t\t\t\"bFilter\",\n\t\t\t\t\"bSort\",\n\t\t\t\t\"bSortMulti\",\n\t\t\t\t\"bInfo\",\n\t\t\t\t\"bProcessing\",\n\t\t\t\t\"bAutoWidth\",\n\t\t\t\t\"bSortClasses\",\n\t\t\t\t\"bServerSide\",\n\t\t\t\t\"bDeferRender\"\n\t\t\t] );\n\t\t\t_fnMap( oSettings, oInit, [\n\t\t\t\t\"asStripeClasses\",\n\t\t\t\t\"ajax\",\n\t\t\t\t\"fnServerData\",\n\t\t\t\t\"fnFormatNumber\",\n\t\t\t\t\"sServerMethod\",\n\t\t\t\t\"aaSorting\",\n\t\t\t\t\"aaSortingFixed\",\n\t\t\t\t\"aLengthMenu\",\n\t\t\t\t\"sPaginationType\",\n\t\t\t\t\"sAjaxSource\",\n\t\t\t\t\"sAjaxDataProp\",\n\t\t\t\t\"iStateDuration\",\n\t\t\t\t\"sDom\",\n\t\t\t\t\"bSortCellsTop\",\n\t\t\t\t\"iTabIndex\",\n\t\t\t\t\"fnStateLoadCallback\",\n\t\t\t\t\"fnStateSaveCallback\",\n\t\t\t\t\"renderer\",\n\t\t\t\t\"searchDelay\",\n\t\t\t\t[ \"iCookieDuration\", \"iStateDuration\" ], // backwards compat\n\t\t\t\t[ \"oSearch\", \"oPreviousSearch\" ],\n\t\t\t\t[ \"aoSearchCols\", \"aoPreSearchCols\" ],\n\t\t\t\t[ \"iDisplayLength\", \"_iDisplayLength\" ],\n\t\t\t\t[ \"bJQueryUI\", \"bJUI\" ]\n\t\t\t] );\n\t\t\t_fnMap( oSettings.oScroll, oInit, [\n\t\t\t\t[ \"sScrollX\", \"sX\" ],\n\t\t\t\t[ \"sScrollXInner\", \"sXInner\" ],\n\t\t\t\t[ \"sScrollY\", \"sY\" ],\n\t\t\t\t[ \"bScrollCollapse\", \"bCollapse\" ]\n\t\t\t] );\n\t\t\t_fnMap( oSettings.oLanguage, oInit, \"fnInfoCallback\" );\n\t\t\t\n\t\t\t/* Callback functions which are array driven */\n\t\t\t_fnCallbackReg( oSettings, 'aoDrawCallback',       oInit.fnDrawCallback,      'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoServerParams',       oInit.fnServerParams,      'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoStateSaveParams',    oInit.fnStateSaveParams,   'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoStateLoadParams',    oInit.fnStateLoadParams,   'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoStateLoaded',        oInit.fnStateLoaded,       'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoRowCallback',        oInit.fnRowCallback,       'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoRowCreatedCallback', oInit.fnCreatedRow,        'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoHeaderCallback',     oInit.fnHeaderCallback,    'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoFooterCallback',     oInit.fnFooterCallback,    'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoInitComplete',       oInit.fnInitComplete,      'user' );\n\t\t\t_fnCallbackReg( oSettings, 'aoPreDrawCallback',    oInit.fnPreDrawCallback,   'user' );\n\t\t\t\n\t\t\tvar oClasses = oSettings.oClasses;\n\t\t\t\n\t\t\t// @todo Remove in 1.11\n\t\t\tif ( oInit.bJQueryUI )\n\t\t\t{\n\t\t\t\t/* Use the JUI classes object for display. You could clone the oStdClasses object if\n\t\t\t\t * you want to have multiple tables with multiple independent classes\n\t\t\t\t */\n\t\t\t\t$.extend( oClasses, DataTable.ext.oJUIClasses, oInit.oClasses );\n\t\t\t\n\t\t\t\tif ( oInit.sDom === defaults.sDom && defaults.sDom === \"lfrtip\" )\n\t\t\t\t{\n\t\t\t\t\t/* Set the DOM to use a layout suitable for jQuery UI's theming */\n\t\t\t\t\toSettings.sDom = '<\"H\"lfr>t<\"F\"ip>';\n\t\t\t\t}\n\t\t\t\n\t\t\t\tif ( ! oSettings.renderer ) {\n\t\t\t\t\toSettings.renderer = 'jqueryui';\n\t\t\t\t}\n\t\t\t\telse if ( $.isPlainObject( oSettings.renderer ) && ! oSettings.renderer.header ) {\n\t\t\t\t\toSettings.renderer.header = 'jqueryui';\n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$.extend( oClasses, DataTable.ext.classes, oInit.oClasses );\n\t\t\t}\n\t\t\t$(this).addClass( oClasses.sTable );\n\t\t\t\n\t\t\t/* Calculate the scroll bar width and cache it for use later on */\n\t\t\tif ( oSettings.oScroll.sX !== \"\" || oSettings.oScroll.sY !== \"\" )\n\t\t\t{\n\t\t\t\toSettings.oScroll.iBarWidth = _fnScrollBarWidth();\n\t\t\t}\n\t\t\tif ( oSettings.oScroll.sX === true ) { // Easy initialisation of x-scrolling\n\t\t\t\toSettings.oScroll.sX = '100%';\n\t\t\t}\n\t\t\t\n\t\t\tif ( oSettings.iInitDisplayStart === undefined )\n\t\t\t{\n\t\t\t\t/* Display start point, taking into account the save saving */\n\t\t\t\toSettings.iInitDisplayStart = oInit.iDisplayStart;\n\t\t\t\toSettings._iDisplayStart = oInit.iDisplayStart;\n\t\t\t}\n\t\t\t\n\t\t\tif ( oInit.iDeferLoading !== null )\n\t\t\t{\n\t\t\t\toSettings.bDeferLoading = true;\n\t\t\t\tvar tmp = $.isArray( oInit.iDeferLoading );\n\t\t\t\toSettings._iRecordsDisplay = tmp ? oInit.iDeferLoading[0] : oInit.iDeferLoading;\n\t\t\t\toSettings._iRecordsTotal = tmp ? oInit.iDeferLoading[1] : oInit.iDeferLoading;\n\t\t\t}\n\t\t\t\n\t\t\t/* Language definitions */\n\t\t\tvar oLanguage = oSettings.oLanguage;\n\t\t\t$.extend( true, oLanguage, oInit.oLanguage );\n\t\t\t\n\t\t\tif ( oLanguage.sUrl !== \"\" )\n\t\t\t{\n\t\t\t\t/* Get the language definitions from a file - because this Ajax call makes the language\n\t\t\t\t * get async to the remainder of this function we use bInitHandedOff to indicate that\n\t\t\t\t * _fnInitialise will be fired by the returned Ajax handler, rather than the constructor\n\t\t\t\t */\n\t\t\t\t$.ajax( {\n\t\t\t\t\tdataType: 'json',\n\t\t\t\t\turl: oLanguage.sUrl,\n\t\t\t\t\tsuccess: function ( json ) {\n\t\t\t\t\t\t_fnLanguageCompat( json );\n\t\t\t\t\t\t_fnCamelToHungarian( defaults.oLanguage, json );\n\t\t\t\t\t\t$.extend( true, oLanguage, json );\n\t\t\t\t\t\t_fnInitialise( oSettings );\n\t\t\t\t\t},\n\t\t\t\t\terror: function () {\n\t\t\t\t\t\t// Error occurred loading language file, continue on as best we can\n\t\t\t\t\t\t_fnInitialise( oSettings );\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\tbInitHandedOff = true;\n\t\t\t}\n\t\t\t\n\t\t\t/*\n\t\t\t * Stripes\n\t\t\t */\n\t\t\tif ( oInit.asStripeClasses === null )\n\t\t\t{\n\t\t\t\toSettings.asStripeClasses =[\n\t\t\t\t\toClasses.sStripeOdd,\n\t\t\t\t\toClasses.sStripeEven\n\t\t\t\t];\n\t\t\t}\n\t\t\t\n\t\t\t/* Remove row stripe classes if they are already on the table row */\n\t\t\tvar stripeClasses = oSettings.asStripeClasses;\n\t\t\tvar rowOne = $('tbody tr:eq(0)', this);\n\t\t\tif ( $.inArray( true, $.map( stripeClasses, function(el, i) {\n\t\t\t\treturn rowOne.hasClass(el);\n\t\t\t} ) ) !== -1 ) {\n\t\t\t\t$('tbody tr', this).removeClass( stripeClasses.join(' ') );\n\t\t\t\toSettings.asDestroyStripes = stripeClasses.slice();\n\t\t\t}\n\t\t\t\n\t\t\t/*\n\t\t\t * Columns\n\t\t\t * See if we should load columns automatically or use defined ones\n\t\t\t */\n\t\t\tvar anThs = [];\n\t\t\tvar aoColumnsInit;\n\t\t\tvar nThead = this.getElementsByTagName('thead');\n\t\t\tif ( nThead.length !== 0 )\n\t\t\t{\n\t\t\t\t_fnDetectHeader( oSettings.aoHeader, nThead[0] );\n\t\t\t\tanThs = _fnGetUniqueThs( oSettings );\n\t\t\t}\n\t\t\t\n\t\t\t/* If not given a column array, generate one with nulls */\n\t\t\tif ( oInit.aoColumns === null )\n\t\t\t{\n\t\t\t\taoColumnsInit = [];\n\t\t\t\tfor ( i=0, iLen=anThs.length ; i<iLen ; i++ )\n\t\t\t\t{\n\t\t\t\t\taoColumnsInit.push( null );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\taoColumnsInit = oInit.aoColumns;\n\t\t\t}\n\t\t\t\n\t\t\t/* Add the columns */\n\t\t\tfor ( i=0, iLen=aoColumnsInit.length ; i<iLen ; i++ )\n\t\t\t{\n\t\t\t\t_fnAddColumn( oSettings, anThs ? anThs[i] : null );\n\t\t\t}\n\t\t\t\n\t\t\t/* Apply the column definitions */\n\t\t\t_fnApplyColumnDefs( oSettings, oInit.aoColumnDefs, aoColumnsInit, function (iCol, oDef) {\n\t\t\t\t_fnColumnOptions( oSettings, iCol, oDef );\n\t\t\t} );\n\t\t\t\n\t\t\t/* HTML5 attribute detection - build an mData object automatically if the\n\t\t\t * attributes are found\n\t\t\t */\n\t\t\tif ( rowOne.length ) {\n\t\t\t\tvar a = function ( cell, name ) {\n\t\t\t\t\treturn cell.getAttribute( 'data-'+name ) ? name : null;\n\t\t\t\t};\n\t\t\t\n\t\t\t\t$.each( _fnGetRowElements( oSettings, rowOne[0] ).cells, function (i, cell) {\n\t\t\t\t\tvar col = oSettings.aoColumns[i];\n\t\t\t\n\t\t\t\t\tif ( col.mData === i ) {\n\t\t\t\t\t\tvar sort = a( cell, 'sort' ) || a( cell, 'order' );\n\t\t\t\t\t\tvar filter = a( cell, 'filter' ) || a( cell, 'search' );\n\t\t\t\n\t\t\t\t\t\tif ( sort !== null || filter !== null ) {\n\t\t\t\t\t\t\tcol.mData = {\n\t\t\t\t\t\t\t\t_:      i+'.display',\n\t\t\t\t\t\t\t\tsort:   sort !== null   ? i+'.@data-'+sort   : undefined,\n\t\t\t\t\t\t\t\ttype:   sort !== null   ? i+'.@data-'+sort   : undefined,\n\t\t\t\t\t\t\t\tfilter: filter !== null ? i+'.@data-'+filter : undefined\n\t\t\t\t\t\t\t};\n\t\t\t\n\t\t\t\t\t\t\t_fnColumnOptions( oSettings, i );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\t\n\t\t\tvar features = oSettings.oFeatures;\n\t\t\t\n\t\t\t/* Must be done after everything which can be overridden by the state saving! */\n\t\t\tif ( oInit.bStateSave )\n\t\t\t{\n\t\t\t\tfeatures.bStateSave = true;\n\t\t\t\t_fnLoadState( oSettings, oInit );\n\t\t\t\t_fnCallbackReg( oSettings, 'aoDrawCallback', _fnSaveState, 'state_save' );\n\t\t\t}\n\t\t\t\n\t\t\t\n\t\t\t/*\n\t\t\t * Sorting\n\t\t\t * @todo For modularisation (1.11) this needs to do into a sort start up handler\n\t\t\t */\n\t\t\t\n\t\t\t// If aaSorting is not defined, then we use the first indicator in asSorting\n\t\t\t// in case that has been altered, so the default sort reflects that option\n\t\t\tif ( oInit.aaSorting === undefined )\n\t\t\t{\n\t\t\t\tvar sorting = oSettings.aaSorting;\n\t\t\t\tfor ( i=0, iLen=sorting.length ; i<iLen ; i++ )\n\t\t\t\t{\n\t\t\t\t\tsorting[i][1] = oSettings.aoColumns[ i ].asSorting[0];\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t/* Do a first pass on the sorting classes (allows any size changes to be taken into\n\t\t\t * account, and also will apply sorting disabled classes if disabled\n\t\t\t */\n\t\t\t_fnSortingClasses( oSettings );\n\t\t\t\n\t\t\tif ( features.bSort )\n\t\t\t{\n\t\t\t\t_fnCallbackReg( oSettings, 'aoDrawCallback', function () {\n\t\t\t\t\tif ( oSettings.bSorted ) {\n\t\t\t\t\t\tvar aSort = _fnSortFlatten( oSettings );\n\t\t\t\t\t\tvar sortedColumns = {};\n\t\t\t\n\t\t\t\t\t\t$.each( aSort, function (i, val) {\n\t\t\t\t\t\t\tsortedColumns[ val.src ] = val.dir;\n\t\t\t\t\t\t} );\n\t\t\t\n\t\t\t\t\t\t_fnCallbackFire( oSettings, null, 'order', [oSettings, aSort, sortedColumns] );\n\t\t\t\t\t\t_fnSortAria( oSettings );\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\t\n\t\t\t_fnCallbackReg( oSettings, 'aoDrawCallback', function () {\n\t\t\t\tif ( oSettings.bSorted || _fnDataSource( oSettings ) === 'ssp' || features.bDeferRender ) {\n\t\t\t\t\t_fnSortingClasses( oSettings );\n\t\t\t\t}\n\t\t\t}, 'sc' );\n\t\t\t\n\t\t\t\n\t\t\t/*\n\t\t\t * Final init\n\t\t\t * Cache the header, body and footer as required, creating them if needed\n\t\t\t */\n\t\t\t\n\t\t\t/* Browser support detection */\n\t\t\t_fnBrowserDetect( oSettings );\n\t\t\t\n\t\t\t// Work around for Webkit bug 83867 - store the caption-side before removing from doc\n\t\t\tvar captions = $(this).children('caption').each( function () {\n\t\t\t\tthis._captionSide = $(this).css('caption-side');\n\t\t\t} );\n\t\t\t\n\t\t\tvar thead = $(this).children('thead');\n\t\t\tif ( thead.length === 0 )\n\t\t\t{\n\t\t\t\tthead = $('<thead/>').appendTo(this);\n\t\t\t}\n\t\t\toSettings.nTHead = thead[0];\n\t\t\t\n\t\t\tvar tbody = $(this).children('tbody');\n\t\t\tif ( tbody.length === 0 )\n\t\t\t{\n\t\t\t\ttbody = $('<tbody/>').appendTo(this);\n\t\t\t}\n\t\t\toSettings.nTBody = tbody[0];\n\t\t\t\n\t\t\tvar tfoot = $(this).children('tfoot');\n\t\t\tif ( tfoot.length === 0 && captions.length > 0 && (oSettings.oScroll.sX !== \"\" || oSettings.oScroll.sY !== \"\") )\n\t\t\t{\n\t\t\t\t// If we are a scrolling table, and no footer has been given, then we need to create\n\t\t\t\t// a tfoot element for the caption element to be appended to\n\t\t\t\ttfoot = $('<tfoot/>').appendTo(this);\n\t\t\t}\n\t\t\t\n\t\t\tif ( tfoot.length === 0 || tfoot.children().length === 0 ) {\n\t\t\t\t$(this).addClass( oClasses.sNoFooter );\n\t\t\t}\n\t\t\telse if ( tfoot.length > 0 ) {\n\t\t\t\toSettings.nTFoot = tfoot[0];\n\t\t\t\t_fnDetectHeader( oSettings.aoFooter, oSettings.nTFoot );\n\t\t\t}\n\t\t\t\n\t\t\t/* Check if there is data passing into the constructor */\n\t\t\tif ( oInit.aaData )\n\t\t\t{\n\t\t\t\tfor ( i=0 ; i<oInit.aaData.length ; i++ )\n\t\t\t\t{\n\t\t\t\t\t_fnAddData( oSettings, oInit.aaData[ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse if ( oSettings.bDeferLoading || _fnDataSource( oSettings ) == 'dom' )\n\t\t\t{\n\t\t\t\t/* Grab the data from the page - only do this when deferred loading or no Ajax\n\t\t\t\t * source since there is no point in reading the DOM data if we are then going\n\t\t\t\t * to replace it with Ajax data\n\t\t\t\t */\n\t\t\t\t_fnAddTr( oSettings, $(oSettings.nTBody).children('tr') );\n\t\t\t}\n\t\t\t\n\t\t\t/* Copy the data index array */\n\t\t\toSettings.aiDisplay = oSettings.aiDisplayMaster.slice();\n\t\t\t\n\t\t\t/* Initialisation complete - table can be drawn */\n\t\t\toSettings.bInitialised = true;\n\t\t\t\n\t\t\t/* Check if we need to initialise the table (it might not have been handed off to the\n\t\t\t * language processor)\n\t\t\t */\n\t\t\tif ( bInitHandedOff === false )\n\t\t\t{\n\t\t\t\t_fnInitialise( oSettings );\n\t\t\t}\n\t\t} );\n\t\t_that = null;\n\t\treturn this;\n\t};\n\n\t\n\t\n\t/**\n\t * Computed structure of the DataTables API, defined by the options passed to\n\t * `DataTable.Api.register()` when building the API.\n\t *\n\t * The structure is built in order to speed creation and extension of the Api\n\t * objects since the extensions are effectively pre-parsed.\n\t *\n\t * The array is an array of objects with the following structure, where this\n\t * base array represents the Api prototype base:\n\t *\n\t *     [\n\t *       {\n\t *         name:      'data'                -- string   - Property name\n\t *         val:       function () {},       -- function - Api method (or undefined if just an object\n\t *         methodExt: [ ... ],              -- array    - Array of Api object definitions to extend the method result\n\t *         propExt:   [ ... ]               -- array    - Array of Api object definitions to extend the property\n\t *       },\n\t *       {\n\t *         name:     'row'\n\t *         val:       {},\n\t *         methodExt: [ ... ],\n\t *         propExt:   [\n\t *           {\n\t *             name:      'data'\n\t *             val:       function () {},\n\t *             methodExt: [ ... ],\n\t *             propExt:   [ ... ]\n\t *           },\n\t *           ...\n\t *         ]\n\t *       }\n\t *     ]\n\t *\n\t * @type {Array}\n\t * @ignore\n\t */\n\tvar __apiStruct = [];\n\t\n\t\n\t/**\n\t * `Array.prototype` reference.\n\t *\n\t * @type object\n\t * @ignore\n\t */\n\tvar __arrayProto = Array.prototype;\n\t\n\t\n\t/**\n\t * Abstraction for `context` parameter of the `Api` constructor to allow it to\n\t * take several different forms for ease of use.\n\t *\n\t * Each of the input parameter types will be converted to a DataTables settings\n\t * object where possible.\n\t *\n\t * @param  {string|node|jQuery|object} mixed DataTable identifier. Can be one\n\t *   of:\n\t *\n\t *   * `string` - jQuery selector. Any DataTables' matching the given selector\n\t *     with be found and used.\n\t *   * `node` - `TABLE` node which has already been formed into a DataTable.\n\t *   * `jQuery` - A jQuery object of `TABLE` nodes.\n\t *   * `object` - DataTables settings object\n\t *   * `DataTables.Api` - API instance\n\t * @return {array|null} Matching DataTables settings objects. `null` or\n\t *   `undefined` is returned if no matching DataTable is found.\n\t * @ignore\n\t */\n\tvar _toSettings = function ( mixed )\n\t{\n\t\tvar idx, jq;\n\t\tvar settings = DataTable.settings;\n\t\tvar tables = $.map( settings, function (el, i) {\n\t\t\treturn el.nTable;\n\t\t} );\n\t\n\t\tif ( ! mixed ) {\n\t\t\treturn [];\n\t\t}\n\t\telse if ( mixed.nTable && mixed.oApi ) {\n\t\t\t// DataTables settings object\n\t\t\treturn [ mixed ];\n\t\t}\n\t\telse if ( mixed.nodeName && mixed.nodeName.toLowerCase() === 'table' ) {\n\t\t\t// Table node\n\t\t\tidx = $.inArray( mixed, tables );\n\t\t\treturn idx !== -1 ? [ settings[idx] ] : null;\n\t\t}\n\t\telse if ( mixed && typeof mixed.settings === 'function' ) {\n\t\t\treturn mixed.settings().toArray();\n\t\t}\n\t\telse if ( typeof mixed === 'string' ) {\n\t\t\t// jQuery selector\n\t\t\tjq = $(mixed);\n\t\t}\n\t\telse if ( mixed instanceof $ ) {\n\t\t\t// jQuery object (also DataTables instance)\n\t\t\tjq = mixed;\n\t\t}\n\t\n\t\tif ( jq ) {\n\t\t\treturn jq.map( function(i) {\n\t\t\t\tidx = $.inArray( this, tables );\n\t\t\t\treturn idx !== -1 ? settings[idx] : null;\n\t\t\t} ).toArray();\n\t\t}\n\t};\n\t\n\t\n\t/**\n\t * DataTables API class - used to control and interface with  one or more\n\t * DataTables enhanced tables.\n\t *\n\t * The API class is heavily based on jQuery, presenting a chainable interface\n\t * that you can use to interact with tables. Each instance of the API class has\n\t * a \"context\" - i.e. the tables that it will operate on. This could be a single\n\t * table, all tables on a page or a sub-set thereof.\n\t *\n\t * Additionally the API is designed to allow you to easily work with the data in\n\t * the tables, retrieving and manipulating it as required. This is done by\n\t * presenting the API class as an array like interface. The contents of the\n\t * array depend upon the actions requested by each method (for example\n\t * `rows().nodes()` will return an array of nodes, while `rows().data()` will\n\t * return an array of objects or arrays depending upon your table's\n\t * configuration). The API object has a number of array like methods (`push`,\n\t * `pop`, `reverse` etc) as well as additional helper methods (`each`, `pluck`,\n\t * `unique` etc) to assist your working with the data held in a table.\n\t *\n\t * Most methods (those which return an Api instance) are chainable, which means\n\t * the return from a method call also has all of the methods available that the\n\t * top level object had. For example, these two calls are equivalent:\n\t *\n\t *     // Not chained\n\t *     api.row.add( {...} );\n\t *     api.draw();\n\t *\n\t *     // Chained\n\t *     api.row.add( {...} ).draw();\n\t *\n\t * @class DataTable.Api\n\t * @param {array|object|string|jQuery} context DataTable identifier. This is\n\t *   used to define which DataTables enhanced tables this API will operate on.\n\t *   Can be one of:\n\t *\n\t *   * `string` - jQuery selector. Any DataTables' matching the given selector\n\t *     with be found and used.\n\t *   * `node` - `TABLE` node which has already been formed into a DataTable.\n\t *   * `jQuery` - A jQuery object of `TABLE` nodes.\n\t *   * `object` - DataTables settings object\n\t * @param {array} [data] Data to initialise the Api instance with.\n\t *\n\t * @example\n\t *   // Direct initialisation during DataTables construction\n\t *   var api = $('#example').DataTable();\n\t *\n\t * @example\n\t *   // Initialisation using a DataTables jQuery object\n\t *   var api = $('#example').dataTable().api();\n\t *\n\t * @example\n\t *   // Initialisation as a constructor\n\t *   var api = new $.fn.DataTable.Api( 'table.dataTable' );\n\t */\n\t_Api = function ( context, data )\n\t{\n\t\tif ( ! this instanceof _Api ) {\n\t\t\tthrow 'DT API must be constructed as a new object';\n\t\t\t// or should it do the 'new' for the caller?\n\t\t\t// return new _Api.apply( this, arguments );\n\t\t}\n\t\n\t\tvar settings = [];\n\t\tvar ctxSettings = function ( o ) {\n\t\t\tvar a = _toSettings( o );\n\t\t\tif ( a ) {\n\t\t\t\tsettings.push.apply( settings, a );\n\t\t\t}\n\t\t};\n\t\n\t\tif ( $.isArray( context ) ) {\n\t\t\tfor ( var i=0, ien=context.length ; i<ien ; i++ ) {\n\t\t\t\tctxSettings( context[i] );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tctxSettings( context );\n\t\t}\n\t\n\t\t// Remove duplicates\n\t\tthis.context = _unique( settings );\n\t\n\t\t// Initial data\n\t\tif ( data ) {\n\t\t\tthis.push.apply( this, data.toArray ? data.toArray() : data );\n\t\t}\n\t\n\t\t// selector\n\t\tthis.selector = {\n\t\t\trows: null,\n\t\t\tcols: null,\n\t\t\topts: null\n\t\t};\n\t\n\t\t_Api.extend( this, this, __apiStruct );\n\t};\n\t\n\tDataTable.Api = _Api;\n\t\n\t_Api.prototype = /** @lends DataTables.Api */{\n\t\t/**\n\t\t * Return a new Api instance, comprised of the data held in the current\n\t\t * instance, join with the other array(s) and/or value(s).\n\t\t *\n\t\t * An alias for `Array.prototype.concat`.\n\t\t *\n\t\t * @type method\n\t\t * @param {*} value1 Arrays and/or values to concatenate.\n\t\t * @param {*} [...] Additional arrays and/or values to concatenate.\n\t\t * @returns {DataTables.Api} New API instance, comprising of the combined\n\t\t *   array.\n\t\t */\n\t\tconcat:  __arrayProto.concat,\n\t\n\t\n\t\tcontext: [], // array of table settings objects\n\t\n\t\n\t\teach: function ( fn )\n\t\t{\n\t\t\tfor ( var i=0, ien=this.length ; i<ien; i++ ) {\n\t\t\t\tfn.call( this, this[i], i, this );\n\t\t\t}\n\t\n\t\t\treturn this;\n\t\t},\n\t\n\t\n\t\teq: function ( idx )\n\t\t{\n\t\t\tvar ctx = this.context;\n\t\n\t\t\treturn ctx.length > idx ?\n\t\t\t\tnew _Api( ctx[idx], this[idx] ) :\n\t\t\t\tnull;\n\t\t},\n\t\n\t\n\t\tfilter: function ( fn )\n\t\t{\n\t\t\tvar a = [];\n\t\n\t\t\tif ( __arrayProto.filter ) {\n\t\t\t\ta = __arrayProto.filter.call( this, fn, this );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Compatibility for browsers without EMCA-252-5 (JS 1.6)\n\t\t\t\tfor ( var i=0, ien=this.length ; i<ien ; i++ ) {\n\t\t\t\t\tif ( fn.call( this, this[i], i, this ) ) {\n\t\t\t\t\t\ta.push( this[i] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\treturn new _Api( this.context, a );\n\t\t},\n\t\n\t\n\t\tflatten: function ()\n\t\t{\n\t\t\tvar a = [];\n\t\t\treturn new _Api( this.context, a.concat.apply( a, this.toArray() ) );\n\t\t},\n\t\n\t\n\t\tjoin:    __arrayProto.join,\n\t\n\t\n\t\tindexOf: __arrayProto.indexOf || function (obj, start)\n\t\t{\n\t\t\tfor ( var i=(start || 0), ien=this.length ; i<ien ; i++ ) {\n\t\t\t\tif ( this[i] === obj ) {\n\t\t\t\t\treturn i;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn -1;\n\t\t},\n\t\n\t\t// Note that `alwaysNew` is internal - use iteratorNew externally\n\t\titerator: function ( flatten, type, fn, alwaysNew ) {\n\t\t\tvar\n\t\t\t\ta = [], ret,\n\t\t\t\ti, ien, j, jen,\n\t\t\t\tcontext = this.context,\n\t\t\t\trows, items, item,\n\t\t\t\tselector = this.selector;\n\t\n\t\t\t// Argument shifting\n\t\t\tif ( typeof flatten === 'string' ) {\n\t\t\t\talwaysNew = fn;\n\t\t\t\tfn = type;\n\t\t\t\ttype = flatten;\n\t\t\t\tflatten = false;\n\t\t\t}\n\t\n\t\t\tfor ( i=0, ien=context.length ; i<ien ; i++ ) {\n\t\t\t\tvar apiInst = new _Api( context[i] );\n\t\n\t\t\t\tif ( type === 'table' ) {\n\t\t\t\t\tret = fn.call( apiInst, context[i], i );\n\t\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\ta.push( ret );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if ( type === 'columns' || type === 'rows' ) {\n\t\t\t\t\t// this has same length as context - one entry for each table\n\t\t\t\t\tret = fn.call( apiInst, context[i], this[i], i );\n\t\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\ta.push( ret );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if ( type === 'column' || type === 'column-rows' || type === 'row' || type === 'cell' ) {\n\t\t\t\t\t// columns and rows share the same structure.\n\t\t\t\t\t// 'this' is an array of column indexes for each context\n\t\t\t\t\titems = this[i];\n\t\n\t\t\t\t\tif ( type === 'column-rows' ) {\n\t\t\t\t\t\trows = _selector_row_indexes( context[i], selector.opts );\n\t\t\t\t\t}\n\t\n\t\t\t\t\tfor ( j=0, jen=items.length ; j<jen ; j++ ) {\n\t\t\t\t\t\titem = items[j];\n\t\n\t\t\t\t\t\tif ( type === 'cell' ) {\n\t\t\t\t\t\t\tret = fn.call( apiInst, context[i], item.row, item.column, i, j );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tret = fn.call( apiInst, context[i], item, i, j, rows );\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\t\ta.push( ret );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\tif ( a.length || alwaysNew ) {\n\t\t\t\tvar api = new _Api( context, flatten ? a.concat.apply( [], a ) : a );\n\t\t\t\tvar apiSelector = api.selector;\n\t\t\t\tapiSelector.rows = selector.rows;\n\t\t\t\tapiSelector.cols = selector.cols;\n\t\t\t\tapiSelector.opts = selector.opts;\n\t\t\t\treturn api;\n\t\t\t}\n\t\t\treturn this;\n\t\t},\n\t\n\t\n\t\tlastIndexOf: __arrayProto.lastIndexOf || function (obj, start)\n\t\t{\n\t\t\t// Bit cheeky...\n\t\t\treturn this.indexOf.apply( this.toArray.reverse(), arguments );\n\t\t},\n\t\n\t\n\t\tlength:  0,\n\t\n\t\n\t\tmap: function ( fn )\n\t\t{\n\t\t\tvar a = [];\n\t\n\t\t\tif ( __arrayProto.map ) {\n\t\t\t\ta = __arrayProto.map.call( this, fn, this );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Compatibility for browsers without EMCA-252-5 (JS 1.6)\n\t\t\t\tfor ( var i=0, ien=this.length ; i<ien ; i++ ) {\n\t\t\t\t\ta.push( fn.call( this, this[i], i ) );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\treturn new _Api( this.context, a );\n\t\t},\n\t\n\t\n\t\tpluck: function ( prop )\n\t\t{\n\t\t\treturn this.map( function ( el ) {\n\t\t\t\treturn el[ prop ];\n\t\t\t} );\n\t\t},\n\t\n\t\tpop:     __arrayProto.pop,\n\t\n\t\n\t\tpush:    __arrayProto.push,\n\t\n\t\n\t\t// Does not return an API instance\n\t\treduce: __arrayProto.reduce || function ( fn, init )\n\t\t{\n\t\t\treturn _fnReduce( this, fn, init, 0, this.length, 1 );\n\t\t},\n\t\n\t\n\t\treduceRight: __arrayProto.reduceRight || function ( fn, init )\n\t\t{\n\t\t\treturn _fnReduce( this, fn, init, this.length-1, -1, -1 );\n\t\t},\n\t\n\t\n\t\treverse: __arrayProto.reverse,\n\t\n\t\n\t\t// Object with rows, columns and opts\n\t\tselector: null,\n\t\n\t\n\t\tshift:   __arrayProto.shift,\n\t\n\t\n\t\tsort:    __arrayProto.sort, // ? name - order?\n\t\n\t\n\t\tsplice:  __arrayProto.splice,\n\t\n\t\n\t\ttoArray: function ()\n\t\t{\n\t\t\treturn __arrayProto.slice.call( this );\n\t\t},\n\t\n\t\n\t\tto$: function ()\n\t\t{\n\t\t\treturn $( this );\n\t\t},\n\t\n\t\n\t\ttoJQuery: function ()\n\t\t{\n\t\t\treturn $( this );\n\t\t},\n\t\n\t\n\t\tunique: function ()\n\t\t{\n\t\t\treturn new _Api( this.context, _unique(this) );\n\t\t},\n\t\n\t\n\t\tunshift: __arrayProto.unshift\n\t};\n\t\n\t\n\t_Api.extend = function ( scope, obj, ext )\n\t{\n\t\t// Only extend API instances and static properties of the API\n\t\tif ( ! obj || ( ! (obj instanceof _Api) && ! obj.__dt_wrapper ) ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tvar\n\t\t\ti, ien,\n\t\t\tj, jen,\n\t\t\tstruct, inner,\n\t\t\tmethodScoping = function ( scope, fn, struc ) {\n\t\t\t\treturn function () {\n\t\t\t\t\tvar ret = fn.apply( scope, arguments );\n\t\n\t\t\t\t\t// Method extension\n\t\t\t\t\t_Api.extend( ret, ret, struc.methodExt );\n\t\t\t\t\treturn ret;\n\t\t\t\t};\n\t\t\t};\n\t\n\t\tfor ( i=0, ien=ext.length ; i<ien ; i++ ) {\n\t\t\tstruct = ext[i];\n\t\n\t\t\t// Value\n\t\t\tobj[ struct.name ] = typeof struct.val === 'function' ?\n\t\t\t\tmethodScoping( scope, struct.val, struct ) :\n\t\t\t\t$.isPlainObject( struct.val ) ?\n\t\t\t\t\t{} :\n\t\t\t\t\tstruct.val;\n\t\n\t\t\tobj[ struct.name ].__dt_wrapper = true;\n\t\n\t\t\t// Property extension\n\t\t\t_Api.extend( scope, obj[ struct.name ], struct.propExt );\n\t\t}\n\t};\n\t\n\t\n\t// @todo - Is there need for an augment function?\n\t// _Api.augment = function ( inst, name )\n\t// {\n\t// \t// Find src object in the structure from the name\n\t// \tvar parts = name.split('.');\n\t\n\t// \t_Api.extend( inst, obj );\n\t// };\n\t\n\t\n\t//     [\n\t//       {\n\t//         name:      'data'                -- string   - Property name\n\t//         val:       function () {},       -- function - Api method (or undefined if just an object\n\t//         methodExt: [ ... ],              -- array    - Array of Api object definitions to extend the method result\n\t//         propExt:   [ ... ]               -- array    - Array of Api object definitions to extend the property\n\t//       },\n\t//       {\n\t//         name:     'row'\n\t//         val:       {},\n\t//         methodExt: [ ... ],\n\t//         propExt:   [\n\t//           {\n\t//             name:      'data'\n\t//             val:       function () {},\n\t//             methodExt: [ ... ],\n\t//             propExt:   [ ... ]\n\t//           },\n\t//           ...\n\t//         ]\n\t//       }\n\t//     ]\n\t\n\t_Api.register = _api_register = function ( name, val )\n\t{\n\t\tif ( $.isArray( name ) ) {\n\t\t\tfor ( var j=0, jen=name.length ; j<jen ; j++ ) {\n\t\t\t\t_Api.register( name[j], val );\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\n\t\tvar\n\t\t\ti, ien,\n\t\t\their = name.split('.'),\n\t\t\tstruct = __apiStruct,\n\t\t\tkey, method;\n\t\n\t\tvar find = function ( src, name ) {\n\t\t\tfor ( var i=0, ien=src.length ; i<ien ; i++ ) {\n\t\t\t\tif ( src[i].name === name ) {\n\t\t\t\t\treturn src[i];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn null;\n\t\t};\n\t\n\t\tfor ( i=0, ien=heir.length ; i<ien ; i++ ) {\n\t\t\tmethod = heir[i].indexOf('()') !== -1;\n\t\t\tkey = method ?\n\t\t\t\their[i].replace('()', '') :\n\t\t\t\their[i];\n\t\n\t\t\tvar src = find( struct, key );\n\t\t\tif ( ! src ) {\n\t\t\t\tsrc = {\n\t\t\t\t\tname:      key,\n\t\t\t\t\tval:       {},\n\t\t\t\t\tmethodExt: [],\n\t\t\t\t\tpropExt:   []\n\t\t\t\t};\n\t\t\t\tstruct.push( src );\n\t\t\t}\n\t\n\t\t\tif ( i === ien-1 ) {\n\t\t\t\tsrc.val = val;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tstruct = method ?\n\t\t\t\t\tsrc.methodExt :\n\t\t\t\t\tsrc.propExt;\n\t\t\t}\n\t\t}\n\t};\n\t\n\t\n\t_Api.registerPlural = _api_registerPlural = function ( pluralName, singularName, val ) {\n\t\t_Api.register( pluralName, val );\n\t\n\t\t_Api.register( singularName, function () {\n\t\t\tvar ret = val.apply( this, arguments );\n\t\n\t\t\tif ( ret === this ) {\n\t\t\t\t// Returned item is the API instance that was passed in, return it\n\t\t\t\treturn this;\n\t\t\t}\n\t\t\telse if ( ret instanceof _Api ) {\n\t\t\t\t// New API instance returned, want the value from the first item\n\t\t\t\t// in the returned array for the singular result.\n\t\t\t\treturn ret.length ?\n\t\t\t\t\t$.isArray( ret[0] ) ?\n\t\t\t\t\t\tnew _Api( ret.context, ret[0] ) : // Array results are 'enhanced'\n\t\t\t\t\t\tret[0] :\n\t\t\t\t\tundefined;\n\t\t\t}\n\t\n\t\t\t// Non-API return - just fire it back\n\t\t\treturn ret;\n\t\t} );\n\t};\n\t\n\t\n\t/**\n\t * Selector for HTML tables. Apply the given selector to the give array of\n\t * DataTables settings objects.\n\t *\n\t * @param {string|integer} [selector] jQuery selector string or integer\n\t * @param  {array} Array of DataTables settings objects to be filtered\n\t * @return {array}\n\t * @ignore\n\t */\n\tvar __table_selector = function ( selector, a )\n\t{\n\t\t// Integer is used to pick out a table by index\n\t\tif ( typeof selector === 'number' ) {\n\t\t\treturn [ a[ selector ] ];\n\t\t}\n\t\n\t\t// Perform a jQuery selector on the table nodes\n\t\tvar nodes = $.map( a, function (el, i) {\n\t\t\treturn el.nTable;\n\t\t} );\n\t\n\t\treturn $(nodes)\n\t\t\t.filter( selector )\n\t\t\t.map( function (i) {\n\t\t\t\t// Need to translate back from the table node to the settings\n\t\t\t\tvar idx = $.inArray( this, nodes );\n\t\t\t\treturn a[ idx ];\n\t\t\t} )\n\t\t\t.toArray();\n\t};\n\t\n\t\n\t\n\t/**\n\t * Context selector for the API's context (i.e. the tables the API instance\n\t * refers to.\n\t *\n\t * @name    DataTable.Api#tables\n\t * @param {string|integer} [selector] Selector to pick which tables the iterator\n\t *   should operate on. If not given, all tables in the current context are\n\t *   used. This can be given as a jQuery selector (for example `':gt(0)'`) to\n\t *   select multiple tables or as an integer to select a single table.\n\t * @returns {DataTable.Api} Returns a new API instance if a selector is given.\n\t */\n\t_api_register( 'tables()', function ( selector ) {\n\t\t// A new instance is created if there was a selector specified\n\t\treturn selector ?\n\t\t\tnew _Api( __table_selector( selector, this.context ) ) :\n\t\t\tthis;\n\t} );\n\t\n\t\n\t_api_register( 'table()', function ( selector ) {\n\t\tvar tables = this.tables( selector );\n\t\tvar ctx = tables.context;\n\t\n\t\t// Truncate to the first matched table\n\t\treturn ctx.length ?\n\t\t\tnew _Api( ctx[0] ) :\n\t\t\ttables;\n\t} );\n\t\n\t\n\t_api_registerPlural( 'tables().nodes()', 'table().node()' , function () {\n\t\treturn this.iterator( 'table', function ( ctx ) {\n\t\t\treturn ctx.nTable;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'tables().body()', 'table().body()' , function () {\n\t\treturn this.iterator( 'table', function ( ctx ) {\n\t\t\treturn ctx.nTBody;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'tables().header()', 'table().header()' , function () {\n\t\treturn this.iterator( 'table', function ( ctx ) {\n\t\t\treturn ctx.nTHead;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'tables().footer()', 'table().footer()' , function () {\n\t\treturn this.iterator( 'table', function ( ctx ) {\n\t\t\treturn ctx.nTFoot;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'tables().containers()', 'table().container()' , function () {\n\t\treturn this.iterator( 'table', function ( ctx ) {\n\t\t\treturn ctx.nTableWrapper;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t\n\t/**\n\t * Redraw the tables in the current context.\n\t *\n\t * @param {boolean} [reset=true] Reset (default) or hold the current paging\n\t *   position. A full re-sort and re-filter is performed when this method is\n\t *   called, which is why the pagination reset is the default action.\n\t * @returns {DataTables.Api} this\n\t */\n\t_api_register( 'draw()', function ( resetPaging ) {\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t_fnReDraw( settings, resetPaging===false );\n\t\t} );\n\t} );\n\t\n\t\n\t\n\t/**\n\t * Get the current page index.\n\t *\n\t * @return {integer} Current page index (zero based)\n\t *//**\n\t * Set the current page.\n\t *\n\t * Note that if you attempt to show a page which does not exist, DataTables will\n\t * not throw an error, but rather reset the paging.\n\t *\n\t * @param {integer|string} action The paging action to take. This can be one of:\n\t *  * `integer` - The page index to jump to\n\t *  * `string` - An action to take:\n\t *    * `first` - Jump to first page.\n\t *    * `next` - Jump to the next page\n\t *    * `previous` - Jump to previous page\n\t *    * `last` - Jump to the last page.\n\t * @returns {DataTables.Api} this\n\t */\n\t_api_register( 'page()', function ( action ) {\n\t\tif ( action === undefined ) {\n\t\t\treturn this.page.info().page; // not an expensive call\n\t\t}\n\t\n\t\t// else, have an action to take on all tables\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t_fnPageChange( settings, action );\n\t\t} );\n\t} );\n\t\n\t\n\t/**\n\t * Paging information for the first table in the current context.\n\t *\n\t * If you require paging information for another table, use the `table()` method\n\t * with a suitable selector.\n\t *\n\t * @return {object} Object with the following properties set:\n\t *  * `page` - Current page index (zero based - i.e. the first page is `0`)\n\t *  * `pages` - Total number of pages\n\t *  * `start` - Display index for the first record shown on the current page\n\t *  * `end` - Display index for the last record shown on the current page\n\t *  * `length` - Display length (number of records). Note that generally `start\n\t *    + length = end`, but this is not always true, for example if there are\n\t *    only 2 records to show on the final page, with a length of 10.\n\t *  * `recordsTotal` - Full data set length\n\t *  * `recordsDisplay` - Data set length once the current filtering criterion\n\t *    are applied.\n\t */\n\t_api_register( 'page.info()', function ( action ) {\n\t\tif ( this.context.length === 0 ) {\n\t\t\treturn undefined;\n\t\t}\n\t\n\t\tvar\n\t\t\tsettings   = this.context[0],\n\t\t\tstart      = settings._iDisplayStart,\n\t\t\tlen        = settings._iDisplayLength,\n\t\t\tvisRecords = settings.fnRecordsDisplay(),\n\t\t\tall        = len === -1;\n\t\n\t\treturn {\n\t\t\t\"page\":           all ? 0 : Math.floor( start / len ),\n\t\t\t\"pages\":          all ? 1 : Math.ceil( visRecords / len ),\n\t\t\t\"start\":          start,\n\t\t\t\"end\":            settings.fnDisplayEnd(),\n\t\t\t\"length\":         len,\n\t\t\t\"recordsTotal\":   settings.fnRecordsTotal(),\n\t\t\t\"recordsDisplay\": visRecords\n\t\t};\n\t} );\n\t\n\t\n\t/**\n\t * Get the current page length.\n\t *\n\t * @return {integer} Current page length. Note `-1` indicates that all records\n\t *   are to be shown.\n\t *//**\n\t * Set the current page length.\n\t *\n\t * @param {integer} Page length to set. Use `-1` to show all records.\n\t * @returns {DataTables.Api} this\n\t */\n\t_api_register( 'page.len()', function ( len ) {\n\t\t// Note that we can't call this function 'length()' because `length`\n\t\t// is a Javascript property of functions which defines how many arguments\n\t\t// the function expects.\n\t\tif ( len === undefined ) {\n\t\t\treturn this.context.length !== 0 ?\n\t\t\t\tthis.context[0]._iDisplayLength :\n\t\t\t\tundefined;\n\t\t}\n\t\n\t\t// else, set the page length\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t_fnLengthChange( settings, len );\n\t\t} );\n\t} );\n\t\n\t\n\t\n\tvar __reload = function ( settings, holdPosition, callback ) {\n\t\tif ( _fnDataSource( settings ) == 'ssp' ) {\n\t\t\t_fnReDraw( settings, holdPosition );\n\t\t}\n\t\telse {\n\t\t\t// Trigger xhr\n\t\t\t_fnProcessingDisplay( settings, true );\n\t\n\t\t\t_fnBuildAjax( settings, [], function( json ) {\n\t\t\t\t_fnClearTable( settings );\n\t\n\t\t\t\tvar data = _fnAjaxDataSrc( settings, json );\n\t\t\t\tfor ( var i=0, ien=data.length ; i<ien ; i++ ) {\n\t\t\t\t\t_fnAddData( settings, data[i] );\n\t\t\t\t}\n\t\n\t\t\t\t_fnReDraw( settings, holdPosition );\n\t\t\t\t_fnProcessingDisplay( settings, false );\n\t\t\t} );\n\t\t}\n\t\n\t\t// Use the draw event to trigger a callback, regardless of if it is an async\n\t\t// or sync draw\n\t\tif ( callback ) {\n\t\t\tvar api = new _Api( settings );\n\t\n\t\t\tapi.one( 'draw', function () {\n\t\t\t\tcallback( api.ajax.json() );\n\t\t\t} );\n\t\t}\n\t};\n\t\n\t\n\t/**\n\t * Get the JSON response from the last Ajax request that DataTables made to the\n\t * server. Note that this returns the JSON from the first table in the current\n\t * context.\n\t *\n\t * @return {object} JSON received from the server.\n\t */\n\t_api_register( 'ajax.json()', function () {\n\t\tvar ctx = this.context;\n\t\n\t\tif ( ctx.length > 0 ) {\n\t\t\treturn ctx[0].json;\n\t\t}\n\t\n\t\t// else return undefined;\n\t} );\n\t\n\t\n\t/**\n\t * Get the data submitted in the last Ajax request\n\t */\n\t_api_register( 'ajax.params()', function () {\n\t\tvar ctx = this.context;\n\t\n\t\tif ( ctx.length > 0 ) {\n\t\t\treturn ctx[0].oAjaxData;\n\t\t}\n\t\n\t\t// else return undefined;\n\t} );\n\t\n\t\n\t/**\n\t * Reload tables from the Ajax data source. Note that this function will\n\t * automatically re-draw the table when the remote data has been loaded.\n\t *\n\t * @param {boolean} [reset=true] Reset (default) or hold the current paging\n\t *   position. A full re-sort and re-filter is performed when this method is\n\t *   called, which is why the pagination reset is the default action.\n\t * @returns {DataTables.Api} this\n\t */\n\t_api_register( 'ajax.reload()', function ( callback, resetPaging ) {\n\t\treturn this.iterator( 'table', function (settings) {\n\t\t\t__reload( settings, resetPaging===false, callback );\n\t\t} );\n\t} );\n\t\n\t\n\t/**\n\t * Get the current Ajax URL. Note that this returns the URL from the first\n\t * table in the current context.\n\t *\n\t * @return {string} Current Ajax source URL\n\t *//**\n\t * Set the Ajax URL. Note that this will set the URL for all tables in the\n\t * current context.\n\t *\n\t * @param {string} url URL to set.\n\t * @returns {DataTables.Api} this\n\t */\n\t_api_register( 'ajax.url()', function ( url ) {\n\t\tvar ctx = this.context;\n\t\n\t\tif ( url === undefined ) {\n\t\t\t// get\n\t\t\tif ( ctx.length === 0 ) {\n\t\t\t\treturn undefined;\n\t\t\t}\n\t\t\tctx = ctx[0];\n\t\n\t\t\treturn ctx.ajax ?\n\t\t\t\t$.isPlainObject( ctx.ajax ) ?\n\t\t\t\t\tctx.ajax.url :\n\t\t\t\t\tctx.ajax :\n\t\t\t\tctx.sAjaxSource;\n\t\t}\n\t\n\t\t// set\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\tif ( $.isPlainObject( settings.ajax ) ) {\n\t\t\t\tsettings.ajax.url = url;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tsettings.ajax = url;\n\t\t\t}\n\t\t\t// No need to consider sAjaxSource here since DataTables gives priority\n\t\t\t// to `ajax` over `sAjaxSource`. So setting `ajax` here, renders any\n\t\t\t// value of `sAjaxSource` redundant.\n\t\t} );\n\t} );\n\t\n\t\n\t/**\n\t * Load data from the newly set Ajax URL. Note that this method is only\n\t * available when `ajax.url()` is used to set a URL. Additionally, this method\n\t * has the same effect as calling `ajax.reload()` but is provided for\n\t * convenience when setting a new URL. Like `ajax.reload()` it will\n\t * automatically redraw the table once the remote data has been loaded.\n\t *\n\t * @returns {DataTables.Api} this\n\t */\n\t_api_register( 'ajax.url().load()', function ( callback, resetPaging ) {\n\t\t// Same as a reload, but makes sense to present it for easy access after a\n\t\t// url change\n\t\treturn this.iterator( 'table', function ( ctx ) {\n\t\t\t__reload( ctx, resetPaging===false, callback );\n\t\t} );\n\t} );\n\t\n\t\n\t\n\t\n\tvar _selector_run = function ( selector, select )\n\t{\n\t\tvar\n\t\t\tout = [], res,\n\t\t\ta, i, ien, j, jen,\n\t\t\tselectorType = typeof selector;\n\t\n\t\t// Can't just check for isArray here, as an API or jQuery instance might be\n\t\t// given with their array like look\n\t\tif ( ! selector || selectorType === 'string' || selectorType === 'function' || selector.length === undefined ) {\n\t\t\tselector = [ selector ];\n\t\t}\n\t\n\t\tfor ( i=0, ien=selector.length ; i<ien ; i++ ) {\n\t\t\ta = selector[i] && selector[i].split ?\n\t\t\t\tselector[i].split(',') :\n\t\t\t\t[ selector[i] ];\n\t\n\t\t\tfor ( j=0, jen=a.length ; j<jen ; j++ ) {\n\t\t\t\tres = select( typeof a[j] === 'string' ? $.trim(a[j]) : a[j] );\n\t\n\t\t\t\tif ( res && res.length ) {\n\t\t\t\t\tout.push.apply( out, res );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\treturn out;\n\t};\n\t\n\t\n\tvar _selector_opts = function ( opts )\n\t{\n\t\tif ( ! opts ) {\n\t\t\topts = {};\n\t\t}\n\t\n\t\t// Backwards compatibility for 1.9- which used the terminology filter rather\n\t\t// than search\n\t\tif ( opts.filter && ! opts.search ) {\n\t\t\topts.search = opts.filter;\n\t\t}\n\t\n\t\treturn {\n\t\t\tsearch: opts.search || 'none',\n\t\t\torder:  opts.order  || 'current',\n\t\t\tpage:   opts.page   || 'all'\n\t\t};\n\t};\n\t\n\t\n\tvar _selector_first = function ( inst )\n\t{\n\t\t// Reduce the API instance to the first item found\n\t\tfor ( var i=0, ien=inst.length ; i<ien ; i++ ) {\n\t\t\tif ( inst[i].length > 0 ) {\n\t\t\t\t// Assign the first element to the first item in the instance\n\t\t\t\t// and truncate the instance and context\n\t\t\t\tinst[0] = inst[i];\n\t\t\t\tinst.length = 1;\n\t\t\t\tinst.context = [ inst.context[i] ];\n\t\n\t\t\t\treturn inst;\n\t\t\t}\n\t\t}\n\t\n\t\t// Not found - return an empty instance\n\t\tinst.length = 0;\n\t\treturn inst;\n\t};\n\t\n\t\n\tvar _selector_row_indexes = function ( settings, opts )\n\t{\n\t\tvar\n\t\t\ti, ien, tmp, a=[],\n\t\t\tdisplayFiltered = settings.aiDisplay,\n\t\t\tdisplayMaster = settings.aiDisplayMaster;\n\t\n\t\tvar\n\t\t\tsearch = opts.search,  // none, applied, removed\n\t\t\torder  = opts.order,   // applied, current, index (original - compatibility with 1.9)\n\t\t\tpage   = opts.page;    // all, current\n\t\n\t\tif ( _fnDataSource( settings ) == 'ssp' ) {\n\t\t\t// In server-side processing mode, most options are irrelevant since\n\t\t\t// rows not shown don't exist and the index order is the applied order\n\t\t\t// Removed is a special case - for consistency just return an empty\n\t\t\t// array\n\t\t\treturn search === 'removed' ?\n\t\t\t\t[] :\n\t\t\t\t_range( 0, displayMaster.length );\n\t\t}\n\t\telse if ( page == 'current' ) {\n\t\t\t// Current page implies that order=current and fitler=applied, since it is\n\t\t\t// fairly senseless otherwise, regardless of what order and search actually\n\t\t\t// are\n\t\t\tfor ( i=settings._iDisplayStart, ien=settings.fnDisplayEnd() ; i<ien ; i++ ) {\n\t\t\t\ta.push( displayFiltered[i] );\n\t\t\t}\n\t\t}\n\t\telse if ( order == 'current' || order == 'applied' ) {\n\t\t\ta = search == 'none' ?\n\t\t\t\tdisplayMaster.slice() :                      // no search\n\t\t\t\tsearch == 'applied' ?\n\t\t\t\t\tdisplayFiltered.slice() :                // applied search\n\t\t\t\t\t$.map( displayMaster, function (el, i) { // removed search\n\t\t\t\t\t\treturn $.inArray( el, displayFiltered ) === -1 ? el : null;\n\t\t\t\t\t} );\n\t\t}\n\t\telse if ( order == 'index' || order == 'original' ) {\n\t\t\tfor ( i=0, ien=settings.aoData.length ; i<ien ; i++ ) {\n\t\t\t\tif ( search == 'none' ) {\n\t\t\t\t\ta.push( i );\n\t\t\t\t}\n\t\t\t\telse { // applied | removed\n\t\t\t\t\ttmp = $.inArray( i, displayFiltered );\n\t\n\t\t\t\t\tif ((tmp === -1 && search == 'removed') ||\n\t\t\t\t\t\t(tmp >= 0   && search == 'applied') )\n\t\t\t\t\t{\n\t\t\t\t\t\ta.push( i );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\treturn a;\n\t};\n\t\n\t\n\t/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n\t * Rows\n\t *\n\t * {}          - no selector - use all available rows\n\t * {integer}   - row aoData index\n\t * {node}      - TR node\n\t * {string}    - jQuery selector to apply to the TR elements\n\t * {array}     - jQuery array of nodes, or simply an array of TR nodes\n\t *\n\t */\n\t\n\t\n\tvar __row_selector = function ( settings, selector, opts )\n\t{\n\t\treturn _selector_run( selector, function ( sel ) {\n\t\t\tvar selInt = _intVal( sel );\n\t\t\tvar i, ien;\n\t\n\t\t\t// Short cut - selector is a number and no options provided (default is\n\t\t\t// all records, so no need to check if the index is in there, since it\n\t\t\t// must be - dev error if the index doesn't exist).\n\t\t\tif ( selInt !== null && ! opts ) {\n\t\t\t\treturn [ selInt ];\n\t\t\t}\n\t\n\t\t\tvar rows = _selector_row_indexes( settings, opts );\n\t\n\t\t\tif ( selInt !== null && $.inArray( selInt, rows ) !== -1 ) {\n\t\t\t\t// Selector - integer\n\t\t\t\treturn [ selInt ];\n\t\t\t}\n\t\t\telse if ( ! sel ) {\n\t\t\t\t// Selector - none\n\t\t\t\treturn rows;\n\t\t\t}\n\t\n\t\t\t// Selector - function\n\t\t\tif ( typeof sel === 'function' ) {\n\t\t\t\treturn $.map( rows, function (idx) {\n\t\t\t\t\tvar row = settings.aoData[ idx ];\n\t\t\t\t\treturn sel( idx, row._aData, row.nTr ) ? idx : null;\n\t\t\t\t} );\n\t\t\t}\n\t\n\t\t\t// Get nodes in the order from the `rows` array with null values removed\n\t\t\tvar nodes = _removeEmpty(\n\t\t\t\t_pluck_order( settings.aoData, rows, 'nTr' )\n\t\t\t);\n\t\n\t\t\t// Selector - node\n\t\t\tif ( sel.nodeName ) {\n\t\t\t\tif ( $.inArray( sel, nodes ) !== -1 ) {\n\t\t\t\t\treturn [ sel._DT_RowIndex ]; // sel is a TR node that is in the table\n\t\t\t\t\t                             // and DataTables adds a prop for fast lookup\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\t// Selector - jQuery selector string, array of nodes or jQuery object/\n\t\t\t// As jQuery's .filter() allows jQuery objects to be passed in filter,\n\t\t\t// it also allows arrays, so this will cope with all three options\n\t\t\treturn $(nodes)\n\t\t\t\t.filter( sel )\n\t\t\t\t.map( function () {\n\t\t\t\t\treturn this._DT_RowIndex;\n\t\t\t\t} )\n\t\t\t\t.toArray();\n\t\t} );\n\t};\n\t\n\t\n\t/**\n\t *\n\t */\n\t_api_register( 'rows()', function ( selector, opts ) {\n\t\t// argument shifting\n\t\tif ( selector === undefined ) {\n\t\t\tselector = '';\n\t\t}\n\t\telse if ( $.isPlainObject( selector ) ) {\n\t\t\topts = selector;\n\t\t\tselector = '';\n\t\t}\n\t\n\t\topts = _selector_opts( opts );\n\t\n\t\tvar inst = this.iterator( 'table', function ( settings ) {\n\t\t\treturn __row_selector( settings, selector, opts );\n\t\t}, 1 );\n\t\n\t\t// Want argument shifting here and in __row_selector?\n\t\tinst.selector.rows = selector;\n\t\tinst.selector.opts = opts;\n\t\n\t\treturn inst;\n\t} );\n\t\n\t\n\t_api_register( 'rows().nodes()', function () {\n\t\treturn this.iterator( 'row', function ( settings, row ) {\n\t\t\treturn settings.aoData[ row ].nTr || undefined;\n\t\t}, 1 );\n\t} );\n\t\n\t_api_register( 'rows().data()', function () {\n\t\treturn this.iterator( true, 'rows', function ( settings, rows ) {\n\t\t\treturn _pluck_order( settings.aoData, rows, '_aData' );\n\t\t}, 1 );\n\t} );\n\t\n\t_api_registerPlural( 'rows().cache()', 'row().cache()', function ( type ) {\n\t\treturn this.iterator( 'row', function ( settings, row ) {\n\t\t\tvar r = settings.aoData[ row ];\n\t\t\treturn type === 'search' ? r._aFilterData : r._aSortData;\n\t\t}, 1 );\n\t} );\n\t\n\t_api_registerPlural( 'rows().invalidate()', 'row().invalidate()', function ( src ) {\n\t\treturn this.iterator( 'row', function ( settings, row ) {\n\t\t\t_fnInvalidate( settings, row, src );\n\t\t} );\n\t} );\n\t\n\t_api_registerPlural( 'rows().indexes()', 'row().index()', function () {\n\t\treturn this.iterator( 'row', function ( settings, row ) {\n\t\t\treturn row;\n\t\t}, 1 );\n\t} );\n\t\n\t_api_registerPlural( 'rows().remove()', 'row().remove()', function () {\n\t\tvar that = this;\n\t\n\t\treturn this.iterator( 'row', function ( settings, row, thatIdx ) {\n\t\t\tvar data = settings.aoData;\n\t\n\t\t\tdata.splice( row, 1 );\n\t\n\t\t\t// Update the _DT_RowIndex parameter on all rows in the table\n\t\t\tfor ( var i=0, ien=data.length ; i<ien ; i++ ) {\n\t\t\t\tif ( data[i].nTr !== null ) {\n\t\t\t\t\tdata[i].nTr._DT_RowIndex = i;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\t// Remove the target row from the search array\n\t\t\tvar displayIndex = $.inArray( row, settings.aiDisplay );\n\t\n\t\t\t// Delete from the display arrays\n\t\t\t_fnDeleteIndex( settings.aiDisplayMaster, row );\n\t\t\t_fnDeleteIndex( settings.aiDisplay, row );\n\t\t\t_fnDeleteIndex( that[ thatIdx ], row, false ); // maintain local indexes\n\t\n\t\t\t// Check for an 'overflow' they case for displaying the table\n\t\t\t_fnLengthOverflow( settings );\n\t\t} );\n\t} );\n\t\n\t\n\t_api_register( 'rows.add()', function ( rows ) {\n\t\tvar newRows = this.iterator( 'table', function ( settings ) {\n\t\t\t\tvar row, i, ien;\n\t\t\t\tvar out = [];\n\t\n\t\t\t\tfor ( i=0, ien=rows.length ; i<ien ; i++ ) {\n\t\t\t\t\trow = rows[i];\n\t\n\t\t\t\t\tif ( row.nodeName && row.nodeName.toUpperCase() === 'TR' ) {\n\t\t\t\t\t\tout.push( _fnAddTr( settings, row )[0] );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tout.push( _fnAddData( settings, row ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\n\t\t\t\treturn out;\n\t\t\t}, 1 );\n\t\n\t\t// Return an Api.rows() extended instance, so rows().nodes() etc can be used\n\t\tvar modRows = this.rows( -1 );\n\t\tmodRows.pop();\n\t\tmodRows.push.apply( modRows, newRows.toArray() );\n\t\n\t\treturn modRows;\n\t} );\n\t\n\t\n\t\n\t\n\t\n\t/**\n\t *\n\t */\n\t_api_register( 'row()', function ( selector, opts ) {\n\t\treturn _selector_first( this.rows( selector, opts ) );\n\t} );\n\t\n\t\n\t_api_register( 'row().data()', function ( data ) {\n\t\tvar ctx = this.context;\n\t\n\t\tif ( data === undefined ) {\n\t\t\t// Get\n\t\t\treturn ctx.length && this.length ?\n\t\t\t\tctx[0].aoData[ this[0] ]._aData :\n\t\t\t\tundefined;\n\t\t}\n\t\n\t\t// Set\n\t\tctx[0].aoData[ this[0] ]._aData = data;\n\t\n\t\t// Automatically invalidate\n\t\t_fnInvalidate( ctx[0], this[0], 'data' );\n\t\n\t\treturn this;\n\t} );\n\t\n\t\n\t_api_register( 'row().node()', function () {\n\t\tvar ctx = this.context;\n\t\n\t\treturn ctx.length && this.length ?\n\t\t\tctx[0].aoData[ this[0] ].nTr || null :\n\t\t\tnull;\n\t} );\n\t\n\t\n\t_api_register( 'row.add()', function ( row ) {\n\t\t// Allow a jQuery object to be passed in - only a single row is added from\n\t\t// it though - the first element in the set\n\t\tif ( row instanceof $ && row.length ) {\n\t\t\trow = row[0];\n\t\t}\n\t\n\t\tvar rows = this.iterator( 'table', function ( settings ) {\n\t\t\tif ( row.nodeName && row.nodeName.toUpperCase() === 'TR' ) {\n\t\t\t\treturn _fnAddTr( settings, row )[0];\n\t\t\t}\n\t\t\treturn _fnAddData( settings, row );\n\t\t} );\n\t\n\t\t// Return an Api.rows() extended instance, with the newly added row selected\n\t\treturn this.row( rows[0] );\n\t} );\n\t\n\t\n\t\n\tvar __details_add = function ( ctx, row, data, klass )\n\t{\n\t\t// Convert to array of TR elements\n\t\tvar rows = [];\n\t\tvar addRow = function ( r, k ) {\n\t\t\t// If we get a TR element, then just add it directly - up to the dev\n\t\t\t// to add the correct number of columns etc\n\t\t\tif ( r.nodeName && r.nodeName.toLowerCase() === 'tr' ) {\n\t\t\t\trows.push( r );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Otherwise create a row with a wrapper\n\t\t\t\tvar created = $('<tr><td/></tr>').addClass( k );\n\t\t\t\t$('td', created)\n\t\t\t\t\t.addClass( k )\n\t\t\t\t\t.html( r )\n\t\t\t\t\t[0].colSpan = _fnVisbleColumns( ctx );\n\t\n\t\t\t\trows.push( created[0] );\n\t\t\t}\n\t\t};\n\t\n\t\tif ( $.isArray( data ) || data instanceof $ ) {\n\t\t\tfor ( var i=0, ien=data.length ; i<ien ; i++ ) {\n\t\t\t\taddRow( data[i], klass );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\taddRow( data, klass );\n\t\t}\n\t\n\t\tif ( row._details ) {\n\t\t\trow._details.remove();\n\t\t}\n\t\n\t\trow._details = $(rows);\n\t\n\t\t// If the children were already shown, that state should be retained\n\t\tif ( row._detailsShow ) {\n\t\t\trow._details.insertAfter( row.nTr );\n\t\t}\n\t};\n\t\n\t\n\tvar __details_remove = function ( api, idx )\n\t{\n\t\tvar ctx = api.context;\n\t\n\t\tif ( ctx.length ) {\n\t\t\tvar row = ctx[0].aoData[ idx !== undefined ? idx : api[0] ];\n\t\n\t\t\tif ( row._details ) {\n\t\t\t\trow._details.remove();\n\t\n\t\t\t\trow._detailsShow = undefined;\n\t\t\t\trow._details = undefined;\n\t\t\t}\n\t\t}\n\t};\n\t\n\t\n\tvar __details_display = function ( api, show ) {\n\t\tvar ctx = api.context;\n\t\n\t\tif ( ctx.length && api.length ) {\n\t\t\tvar row = ctx[0].aoData[ api[0] ];\n\t\n\t\t\tif ( row._details ) {\n\t\t\t\trow._detailsShow = show;\n\t\n\t\t\t\tif ( show ) {\n\t\t\t\t\trow._details.insertAfter( row.nTr );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\trow._details.detach();\n\t\t\t\t}\n\t\n\t\t\t\t__details_events( ctx[0] );\n\t\t\t}\n\t\t}\n\t};\n\t\n\t\n\tvar __details_events = function ( settings )\n\t{\n\t\tvar api = new _Api( settings );\n\t\tvar namespace = '.dt.DT_details';\n\t\tvar drawEvent = 'draw'+namespace;\n\t\tvar colvisEvent = 'column-visibility'+namespace;\n\t\tvar destroyEvent = 'destroy'+namespace;\n\t\tvar data = settings.aoData;\n\t\n\t\tapi.off( drawEvent +' '+ colvisEvent +' '+ destroyEvent );\n\t\n\t\tif ( _pluck( data, '_details' ).length > 0 ) {\n\t\t\t// On each draw, insert the required elements into the document\n\t\t\tapi.on( drawEvent, function ( e, ctx ) {\n\t\t\t\tif ( settings !== ctx ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tapi.rows( {page:'current'} ).eq(0).each( function (idx) {\n\t\t\t\t\t// Internal data grab\n\t\t\t\t\tvar row = data[ idx ];\n\t\n\t\t\t\t\tif ( row._detailsShow ) {\n\t\t\t\t\t\trow._details.insertAfter( row.nTr );\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t} );\n\t\n\t\t\t// Column visibility change - update the colspan\n\t\t\tapi.on( colvisEvent, function ( e, ctx, idx, vis ) {\n\t\t\t\tif ( settings !== ctx ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\t// Update the colspan for the details rows (note, only if it already has\n\t\t\t\t// a colspan)\n\t\t\t\tvar row, visible = _fnVisbleColumns( ctx );\n\t\n\t\t\t\tfor ( var i=0, ien=data.length ; i<ien ; i++ ) {\n\t\t\t\t\trow = data[i];\n\t\n\t\t\t\t\tif ( row._details ) {\n\t\t\t\t\t\trow._details.children('td[colspan]').attr('colspan', visible );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\n\t\t\t// Table destroyed - nuke any child rows\n\t\t\tapi.on( destroyEvent, function ( e, ctx ) {\n\t\t\t\tif ( settings !== ctx ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\tfor ( var i=0, ien=data.length ; i<ien ; i++ ) {\n\t\t\t\t\tif ( data[i]._details ) {\n\t\t\t\t\t\t__details_remove( api, i );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\t};\n\t\n\t// Strings for the method names to help minification\n\tvar _emp = '';\n\tvar _child_obj = _emp+'row().child';\n\tvar _child_mth = _child_obj+'()';\n\t\n\t// data can be:\n\t//  tr\n\t//  string\n\t//  jQuery or array of any of the above\n\t_api_register( _child_mth, function ( data, klass ) {\n\t\tvar ctx = this.context;\n\t\n\t\tif ( data === undefined ) {\n\t\t\t// get\n\t\t\treturn ctx.length && this.length ?\n\t\t\t\tctx[0].aoData[ this[0] ]._details :\n\t\t\t\tundefined;\n\t\t}\n\t\telse if ( data === true ) {\n\t\t\t// show\n\t\t\tthis.child.show();\n\t\t}\n\t\telse if ( data === false ) {\n\t\t\t// remove\n\t\t\t__details_remove( this );\n\t\t}\n\t\telse if ( ctx.length && this.length ) {\n\t\t\t// set\n\t\t\t__details_add( ctx[0], ctx[0].aoData[ this[0] ], data, klass );\n\t\t}\n\t\n\t\treturn this;\n\t} );\n\t\n\t\n\t_api_register( [\n\t\t_child_obj+'.show()',\n\t\t_child_mth+'.show()' // only when `child()` was called with parameters (without\n\t], function ( show ) {   // it returns an object and this method is not executed)\n\t\t__details_display( this, true );\n\t\treturn this;\n\t} );\n\t\n\t\n\t_api_register( [\n\t\t_child_obj+'.hide()',\n\t\t_child_mth+'.hide()' // only when `child()` was called with parameters (without\n\t], function () {         // it returns an object and this method is not executed)\n\t\t__details_display( this, false );\n\t\treturn this;\n\t} );\n\t\n\t\n\t_api_register( [\n\t\t_child_obj+'.remove()',\n\t\t_child_mth+'.remove()' // only when `child()` was called with parameters (without\n\t], function () {           // it returns an object and this method is not executed)\n\t\t__details_remove( this );\n\t\treturn this;\n\t} );\n\t\n\t\n\t_api_register( _child_obj+'.isShown()', function () {\n\t\tvar ctx = this.context;\n\t\n\t\tif ( ctx.length && this.length ) {\n\t\t\t// _detailsShown as false or undefined will fall through to return false\n\t\t\treturn ctx[0].aoData[ this[0] ]._detailsShow || false;\n\t\t}\n\t\treturn false;\n\t} );\n\t\n\t\n\t\n\t/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\n\t * Columns\n\t *\n\t * {integer}           - column index (>=0 count from left, <0 count from right)\n\t * \"{integer}:visIdx\"  - visible column index (i.e. translate to column index)  (>=0 count from left, <0 count from right)\n\t * \"{integer}:visible\" - alias for {integer}:visIdx  (>=0 count from left, <0 count from right)\n\t * \"{string}:name\"     - column name\n\t * \"{string}\"          - jQuery selector on column header nodes\n\t *\n\t */\n\t\n\t// can be an array of these items, comma separated list, or an array of comma\n\t// separated lists\n\t\n\tvar __re_column_selector = /^(.+):(name|visIdx|visible)$/;\n\t\n\t\n\t// r1 and r2 are redundant - but it means that the parameters match for the\n\t// iterator callback in columns().data()\n\tvar __columnData = function ( settings, column, r1, r2, rows ) {\n\t\tvar a = [];\n\t\tfor ( var row=0, ien=rows.length ; row<ien ; row++ ) {\n\t\t\ta.push( _fnGetCellData( settings, rows[row], column ) );\n\t\t}\n\t\treturn a;\n\t};\n\t\n\t\n\tvar __column_selector = function ( settings, selector, opts )\n\t{\n\t\tvar\n\t\t\tcolumns = settings.aoColumns,\n\t\t\tnames = _pluck( columns, 'sName' ),\n\t\t\tnodes = _pluck( columns, 'nTh' );\n\t\n\t\treturn _selector_run( selector, function ( s ) {\n\t\t\tvar selInt = _intVal( s );\n\t\n\t\t\t// Selector - all\n\t\t\tif ( s === '' ) {\n\t\t\t\treturn _range( columns.length );\n\t\t\t}\n\t\t\t\n\t\t\t// Selector - index\n\t\t\tif ( selInt !== null ) {\n\t\t\t\treturn [ selInt >= 0 ?\n\t\t\t\t\tselInt : // Count from left\n\t\t\t\t\tcolumns.length + selInt // Count from right (+ because its a negative value)\n\t\t\t\t];\n\t\t\t}\n\t\t\t\n\t\t\t// Selector = function\n\t\t\tif ( typeof s === 'function' ) {\n\t\t\t\tvar rows = _selector_row_indexes( settings, opts );\n\t\n\t\t\t\treturn $.map( columns, function (col, idx) {\n\t\t\t\t\treturn s(\n\t\t\t\t\t\t\tidx,\n\t\t\t\t\t\t\t__columnData( settings, idx, 0, 0, rows ),\n\t\t\t\t\t\t\tnodes[ idx ]\n\t\t\t\t\t\t) ? idx : null;\n\t\t\t\t} );\n\t\t\t}\n\t\n\t\t\t// jQuery or string selector\n\t\t\tvar match = typeof s === 'string' ?\n\t\t\t\ts.match( __re_column_selector ) :\n\t\t\t\t'';\n\t\n\t\t\tif ( match ) {\n\t\t\t\tswitch( match[2] ) {\n\t\t\t\t\tcase 'visIdx':\n\t\t\t\t\tcase 'visible':\n\t\t\t\t\t\tvar idx = parseInt( match[1], 10 );\n\t\t\t\t\t\t// Visible index given, convert to column index\n\t\t\t\t\t\tif ( idx < 0 ) {\n\t\t\t\t\t\t\t// Counting from the right\n\t\t\t\t\t\t\tvar visColumns = $.map( columns, function (col,i) {\n\t\t\t\t\t\t\t\treturn col.bVisible ? i : null;\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t\treturn [ visColumns[ visColumns.length + idx ] ];\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Counting from the left\n\t\t\t\t\t\treturn [ _fnVisibleToColumnIndex( settings, idx ) ];\n\t\n\t\t\t\t\tcase 'name':\n\t\t\t\t\t\t// match by name. `names` is column index complete and in order\n\t\t\t\t\t\treturn $.map( names, function (name, i) {\n\t\t\t\t\t\t\treturn name === match[1] ? i : null;\n\t\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// jQuery selector on the TH elements for the columns\n\t\t\t\treturn $( nodes )\n\t\t\t\t\t.filter( s )\n\t\t\t\t\t.map( function () {\n\t\t\t\t\t\treturn $.inArray( this, nodes ); // `nodes` is column index complete and in order\n\t\t\t\t\t} )\n\t\t\t\t\t.toArray();\n\t\t\t}\n\t\t} );\n\t};\n\t\n\t\n\tvar __setColumnVis = function ( settings, column, vis, recalc ) {\n\t\tvar\n\t\t\tcols = settings.aoColumns,\n\t\t\tcol  = cols[ column ],\n\t\t\tdata = settings.aoData,\n\t\t\trow, cells, i, ien, tr;\n\t\n\t\t// Get\n\t\tif ( vis === undefined ) {\n\t\t\treturn col.bVisible;\n\t\t}\n\t\n\t\t// Set\n\t\t// No change\n\t\tif ( col.bVisible === vis ) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tif ( vis ) {\n\t\t\t// Insert column\n\t\t\t// Need to decide if we should use appendChild or insertBefore\n\t\t\tvar insertBefore = $.inArray( true, _pluck(cols, 'bVisible'), column+1 );\n\t\n\t\t\tfor ( i=0, ien=data.length ; i<ien ; i++ ) {\n\t\t\t\ttr = data[i].nTr;\n\t\t\t\tcells = data[i].anCells;\n\t\n\t\t\t\tif ( tr ) {\n\t\t\t\t\t// insertBefore can act like appendChild if 2nd arg is null\n\t\t\t\t\ttr.insertBefore( cells[ column ], cells[ insertBefore ] || null );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Remove column\n\t\t\t$( _pluck( settings.aoData, 'anCells', column ) ).detach();\n\t\t}\n\t\n\t\t// Common actions\n\t\tcol.bVisible = vis;\n\t\t_fnDrawHead( settings, settings.aoHeader );\n\t\t_fnDrawHead( settings, settings.aoFooter );\n\t\n\t\tif ( recalc === undefined || recalc ) {\n\t\t\t// Automatically adjust column sizing\n\t\t\t_fnAdjustColumnSizing( settings );\n\t\n\t\t\t// Realign columns for scrolling\n\t\t\tif ( settings.oScroll.sX || settings.oScroll.sY ) {\n\t\t\t\t_fnScrollDraw( settings );\n\t\t\t}\n\t\t}\n\t\n\t\t_fnCallbackFire( settings, null, 'column-visibility', [settings, column, vis] );\n\t\n\t\t_fnSaveState( settings );\n\t};\n\t\n\t\n\t/**\n\t *\n\t */\n\t_api_register( 'columns()', function ( selector, opts ) {\n\t\t// argument shifting\n\t\tif ( selector === undefined ) {\n\t\t\tselector = '';\n\t\t}\n\t\telse if ( $.isPlainObject( selector ) ) {\n\t\t\topts = selector;\n\t\t\tselector = '';\n\t\t}\n\t\n\t\topts = _selector_opts( opts );\n\t\n\t\tvar inst = this.iterator( 'table', function ( settings ) {\n\t\t\treturn __column_selector( settings, selector, opts );\n\t\t}, 1 );\n\t\n\t\t// Want argument shifting here and in _row_selector?\n\t\tinst.selector.cols = selector;\n\t\tinst.selector.opts = opts;\n\t\n\t\treturn inst;\n\t} );\n\t\n\t\n\t/**\n\t *\n\t */\n\t_api_registerPlural( 'columns().header()', 'column().header()', function ( selector, opts ) {\n\t\treturn this.iterator( 'column', function ( settings, column ) {\n\t\t\treturn settings.aoColumns[column].nTh;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t/**\n\t *\n\t */\n\t_api_registerPlural( 'columns().footer()', 'column().footer()', function ( selector, opts ) {\n\t\treturn this.iterator( 'column', function ( settings, column ) {\n\t\t\treturn settings.aoColumns[column].nTf;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t/**\n\t *\n\t */\n\t_api_registerPlural( 'columns().data()', 'column().data()', function () {\n\t\treturn this.iterator( 'column-rows', __columnData, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'columns().dataSrc()', 'column().dataSrc()', function () {\n\t\treturn this.iterator( 'column', function ( settings, column ) {\n\t\t\treturn settings.aoColumns[column].mData;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'columns().cache()', 'column().cache()', function ( type ) {\n\t\treturn this.iterator( 'column-rows', function ( settings, column, i, j, rows ) {\n\t\t\treturn _pluck_order( settings.aoData, rows,\n\t\t\t\ttype === 'search' ? '_aFilterData' : '_aSortData', column\n\t\t\t);\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'columns().nodes()', 'column().nodes()', function () {\n\t\treturn this.iterator( 'column-rows', function ( settings, column, i, j, rows ) {\n\t\t\treturn _pluck_order( settings.aoData, rows, 'anCells', column ) ;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t\n\t_api_registerPlural( 'columns().visible()', 'column().visible()', function ( vis, calc ) {\n\t\treturn this.iterator( 'column', function ( settings, column ) {\n\t\t\tif ( vis === undefined ) {\n\t\t\t\treturn settings.aoColumns[ column ].bVisible;\n\t\t\t} // else\n\t\t\t__setColumnVis( settings, column, vis, calc );\n\t\t} );\n\t} );\n\t\n\t\n\t\n\t_api_registerPlural( 'columns().indexes()', 'column().index()', function ( type ) {\n\t\treturn this.iterator( 'column', function ( settings, column ) {\n\t\t\treturn type === 'visible' ?\n\t\t\t\t_fnColumnIndexToVisible( settings, column ) :\n\t\t\t\tcolumn;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t// _api_register( 'columns().show()', function () {\n\t// \tvar selector = this.selector;\n\t// \treturn this.columns( selector.cols, selector.opts ).visible( true );\n\t// } );\n\t\n\t\n\t// _api_register( 'columns().hide()', function () {\n\t// \tvar selector = this.selector;\n\t// \treturn this.columns( selector.cols, selector.opts ).visible( false );\n\t// } );\n\t\n\t\n\t\n\t_api_register( 'columns.adjust()', function () {\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t_fnAdjustColumnSizing( settings );\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t// Convert from one column index type, to another type\n\t_api_register( 'column.index()', function ( type, idx ) {\n\t\tif ( this.context.length !== 0 ) {\n\t\t\tvar ctx = this.context[0];\n\t\n\t\t\tif ( type === 'fromVisible' || type === 'toData' ) {\n\t\t\t\treturn _fnVisibleToColumnIndex( ctx, idx );\n\t\t\t}\n\t\t\telse if ( type === 'fromData' || type === 'toVisible' ) {\n\t\t\t\treturn _fnColumnIndexToVisible( ctx, idx );\n\t\t\t}\n\t\t}\n\t} );\n\t\n\t\n\t_api_register( 'column()', function ( selector, opts ) {\n\t\treturn _selector_first( this.columns( selector, opts ) );\n\t} );\n\t\n\t\n\t\n\t\n\tvar __cell_selector = function ( settings, selector, opts )\n\t{\n\t\tvar data = settings.aoData;\n\t\tvar rows = _selector_row_indexes( settings, opts );\n\t\tvar cells = _removeEmpty( _pluck_order( data, rows, 'anCells' ) );\n\t\tvar allCells = $( [].concat.apply([], cells) );\n\t\tvar row;\n\t\tvar columns = settings.aoColumns.length;\n\t\tvar a, i, ien, j, o, host;\n\t\n\t\treturn _selector_run( selector, function ( s ) {\n\t\t\tvar fnSelector = typeof s === 'function';\n\t\n\t\t\tif ( s === null || s === undefined || fnSelector ) {\n\t\t\t\t// All cells and function selectors\n\t\t\t\ta = [];\n\t\n\t\t\t\tfor ( i=0, ien=rows.length ; i<ien ; i++ ) {\n\t\t\t\t\trow = rows[i];\n\t\n\t\t\t\t\tfor ( j=0 ; j<columns ; j++ ) {\n\t\t\t\t\t\to = {\n\t\t\t\t\t\t\trow: row,\n\t\t\t\t\t\t\tcolumn: j\n\t\t\t\t\t\t};\n\t\n\t\t\t\t\t\tif ( fnSelector ) {\n\t\t\t\t\t\t\t// Selector - function\n\t\t\t\t\t\t\thost = settings.aoData[ row ];\n\t\n\t\t\t\t\t\t\tif ( s( o, _fnGetCellData(settings, row, j), host.anCells[j] ) ) {\n\t\t\t\t\t\t\t\ta.push( o );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t// Selector - all\n\t\t\t\t\t\t\ta.push( o );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\n\t\t\t\treturn a;\n\t\t\t}\n\t\t\t\n\t\t\t// Selector - index\n\t\t\tif ( $.isPlainObject( s ) ) {\n\t\t\t\treturn [s];\n\t\t\t}\n\t\n\t\t\t// Selector - jQuery filtered cells\n\t\t\treturn allCells\n\t\t\t\t.filter( s )\n\t\t\t\t.map( function (i, el) {\n\t\t\t\t\trow = el.parentNode._DT_RowIndex;\n\t\n\t\t\t\t\treturn {\n\t\t\t\t\t\trow: row,\n\t\t\t\t\t\tcolumn: $.inArray( el, data[ row ].anCells )\n\t\t\t\t\t};\n\t\t\t\t} )\n\t\t\t\t.toArray();\n\t\t} );\n\t};\n\t\n\t\n\t\n\t\n\t_api_register( 'cells()', function ( rowSelector, columnSelector, opts ) {\n\t\t// Argument shifting\n\t\tif ( $.isPlainObject( rowSelector ) ) {\n\t\t\t// Indexes\n\t\t\tif ( typeof rowSelector.row !== undefined ) {\n\t\t\t\topts = columnSelector;\n\t\t\t\tcolumnSelector = null;\n\t\t\t}\n\t\t\telse {\n\t\t\t\topts = rowSelector;\n\t\t\t\trowSelector = null;\n\t\t\t}\n\t\t}\n\t\tif ( $.isPlainObject( columnSelector ) ) {\n\t\t\topts = columnSelector;\n\t\t\tcolumnSelector = null;\n\t\t}\n\t\n\t\t// Cell selector\n\t\tif ( columnSelector === null || columnSelector === undefined ) {\n\t\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t\treturn __cell_selector( settings, rowSelector, _selector_opts( opts ) );\n\t\t\t} );\n\t\t}\n\t\n\t\t// Row + column selector\n\t\tvar columns = this.columns( columnSelector, opts );\n\t\tvar rows = this.rows( rowSelector, opts );\n\t\tvar a, i, ien, j, jen;\n\t\n\t\tvar cells = this.iterator( 'table', function ( settings, idx ) {\n\t\t\ta = [];\n\t\n\t\t\tfor ( i=0, ien=rows[idx].length ; i<ien ; i++ ) {\n\t\t\t\tfor ( j=0, jen=columns[idx].length ; j<jen ; j++ ) {\n\t\t\t\t\ta.push( {\n\t\t\t\t\t\trow:    rows[idx][i],\n\t\t\t\t\t\tcolumn: columns[idx][j]\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t\treturn a;\n\t\t}, 1 );\n\t\n\t\t$.extend( cells.selector, {\n\t\t\tcols: columnSelector,\n\t\t\trows: rowSelector,\n\t\t\topts: opts\n\t\t} );\n\t\n\t\treturn cells;\n\t} );\n\t\n\t\n\t_api_registerPlural( 'cells().nodes()', 'cell().node()', function () {\n\t\treturn this.iterator( 'cell', function ( settings, row, column ) {\n\t\t\tvar cells = settings.aoData[ row ].anCells;\n\t\t\treturn cells ?\n\t\t\t\tcells[ column ] :\n\t\t\t\tundefined;\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_register( 'cells().data()', function () {\n\t\treturn this.iterator( 'cell', function ( settings, row, column ) {\n\t\t\treturn _fnGetCellData( settings, row, column );\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'cells().cache()', 'cell().cache()', function ( type ) {\n\t\ttype = type === 'search' ? '_aFilterData' : '_aSortData';\n\t\n\t\treturn this.iterator( 'cell', function ( settings, row, column ) {\n\t\t\treturn settings.aoData[ row ][ type ][ column ];\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'cells().render()', 'cell().render()', function ( type ) {\n\t\treturn this.iterator( 'cell', function ( settings, row, column ) {\n\t\t\treturn _fnGetCellData( settings, row, column, type );\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'cells().indexes()', 'cell().index()', function () {\n\t\treturn this.iterator( 'cell', function ( settings, row, column ) {\n\t\t\treturn {\n\t\t\t\trow: row,\n\t\t\t\tcolumn: column,\n\t\t\t\tcolumnVisible: _fnColumnIndexToVisible( settings, column )\n\t\t\t};\n\t\t}, 1 );\n\t} );\n\t\n\t\n\t_api_registerPlural( 'cells().invalidate()', 'cell().invalidate()', function ( src ) {\n\t\treturn this.iterator( 'cell', function ( settings, row, column ) {\n\t\t\t_fnInvalidate( settings, row, src, column );\n\t\t} );\n\t} );\n\t\n\t\n\t\n\t_api_register( 'cell()', function ( rowSelector, columnSelector, opts ) {\n\t\treturn _selector_first( this.cells( rowSelector, columnSelector, opts ) );\n\t} );\n\t\n\t\n\t_api_register( 'cell().data()', function ( data ) {\n\t\tvar ctx = this.context;\n\t\tvar cell = this[0];\n\t\n\t\tif ( data === undefined ) {\n\t\t\t// Get\n\t\t\treturn ctx.length && cell.length ?\n\t\t\t\t_fnGetCellData( ctx[0], cell[0].row, cell[0].column ) :\n\t\t\t\tundefined;\n\t\t}\n\t\n\t\t// Set\n\t\t_fnSetCellData( ctx[0], cell[0].row, cell[0].column, data );\n\t\t_fnInvalidate( ctx[0], cell[0].row, 'data', cell[0].column );\n\t\n\t\treturn this;\n\t} );\n\t\n\t\n\t\n\t/**\n\t * Get current ordering (sorting) that has been applied to the table.\n\t *\n\t * @returns {array} 2D array containing the sorting information for the first\n\t *   table in the current context. Each element in the parent array represents\n\t *   a column being sorted upon (i.e. multi-sorting with two columns would have\n\t *   2 inner arrays). The inner arrays may have 2 or 3 elements. The first is\n\t *   the column index that the sorting condition applies to, the second is the\n\t *   direction of the sort (`desc` or `asc`) and, optionally, the third is the\n\t *   index of the sorting order from the `column.sorting` initialisation array.\n\t *//**\n\t * Set the ordering for the table.\n\t *\n\t * @param {integer} order Column index to sort upon.\n\t * @param {string} direction Direction of the sort to be applied (`asc` or `desc`)\n\t * @returns {DataTables.Api} this\n\t *//**\n\t * Set the ordering for the table.\n\t *\n\t * @param {array} order 1D array of sorting information to be applied.\n\t * @param {array} [...] Optional additional sorting conditions\n\t * @returns {DataTables.Api} this\n\t *//**\n\t * Set the ordering for the table.\n\t *\n\t * @param {array} order 2D array of sorting information to be applied.\n\t * @returns {DataTables.Api} this\n\t */\n\t_api_register( 'order()', function ( order, dir ) {\n\t\tvar ctx = this.context;\n\t\n\t\tif ( order === undefined ) {\n\t\t\t// get\n\t\t\treturn ctx.length !== 0 ?\n\t\t\t\tctx[0].aaSorting :\n\t\t\t\tundefined;\n\t\t}\n\t\n\t\t// set\n\t\tif ( typeof order === 'number' ) {\n\t\t\t// Simple column / direction passed in\n\t\t\torder = [ [ order, dir ] ];\n\t\t}\n\t\telse if ( ! $.isArray( order[0] ) ) {\n\t\t\t// Arguments passed in (list of 1D arrays)\n\t\t\torder = Array.prototype.slice.call( arguments );\n\t\t}\n\t\t// otherwise a 2D array was passed in\n\t\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\tsettings.aaSorting = order.slice();\n\t\t} );\n\t} );\n\t\n\t\n\t/**\n\t * Attach a sort listener to an element for a given column\n\t *\n\t * @param {node|jQuery|string} node Identifier for the element(s) to attach the\n\t *   listener to. This can take the form of a single DOM node, a jQuery\n\t *   collection of nodes or a jQuery selector which will identify the node(s).\n\t * @param {integer} column the column that a click on this node will sort on\n\t * @param {function} [callback] callback function when sort is run\n\t * @returns {DataTables.Api} this\n\t */\n\t_api_register( 'order.listener()', function ( node, column, callback ) {\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t_fnSortAttachListener( settings, node, column, callback );\n\t\t} );\n\t} );\n\t\n\t\n\t// Order by the selected column(s)\n\t_api_register( [\n\t\t'columns().order()',\n\t\t'column().order()'\n\t], function ( dir ) {\n\t\tvar that = this;\n\t\n\t\treturn this.iterator( 'table', function ( settings, i ) {\n\t\t\tvar sort = [];\n\t\n\t\t\t$.each( that[i], function (j, col) {\n\t\t\t\tsort.push( [ col, dir ] );\n\t\t\t} );\n\t\n\t\t\tsettings.aaSorting = sort;\n\t\t} );\n\t} );\n\t\n\t\n\t\n\t_api_register( 'search()', function ( input, regex, smart, caseInsen ) {\n\t\tvar ctx = this.context;\n\t\n\t\tif ( input === undefined ) {\n\t\t\t// get\n\t\t\treturn ctx.length !== 0 ?\n\t\t\t\tctx[0].oPreviousSearch.sSearch :\n\t\t\t\tundefined;\n\t\t}\n\t\n\t\t// set\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\tif ( ! settings.oFeatures.bFilter ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\n\t\t\t_fnFilterComplete( settings, $.extend( {}, settings.oPreviousSearch, {\n\t\t\t\t\"sSearch\": input+\"\",\n\t\t\t\t\"bRegex\":  regex === null ? false : regex,\n\t\t\t\t\"bSmart\":  smart === null ? true  : smart,\n\t\t\t\t\"bCaseInsensitive\": caseInsen === null ? true : caseInsen\n\t\t\t} ), 1 );\n\t\t} );\n\t} );\n\t\n\t\n\t_api_registerPlural(\n\t\t'columns().search()',\n\t\t'column().search()',\n\t\tfunction ( input, regex, smart, caseInsen ) {\n\t\t\treturn this.iterator( 'column', function ( settings, column ) {\n\t\t\t\tvar preSearch = settings.aoPreSearchCols;\n\t\n\t\t\t\tif ( input === undefined ) {\n\t\t\t\t\t// get\n\t\t\t\t\treturn preSearch[ column ].sSearch;\n\t\t\t\t}\n\t\n\t\t\t\t// set\n\t\t\t\tif ( ! settings.oFeatures.bFilter ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\n\t\t\t\t$.extend( preSearch[ column ], {\n\t\t\t\t\t\"sSearch\": input+\"\",\n\t\t\t\t\t\"bRegex\":  regex === null ? false : regex,\n\t\t\t\t\t\"bSmart\":  smart === null ? true  : smart,\n\t\t\t\t\t\"bCaseInsensitive\": caseInsen === null ? true : caseInsen\n\t\t\t\t} );\n\t\n\t\t\t\t_fnFilterComplete( settings, settings.oPreviousSearch, 1 );\n\t\t\t} );\n\t\t}\n\t);\n\t\n\t/*\n\t * State API methods\n\t */\n\t\n\t_api_register( 'state()', function () {\n\t\treturn this.context.length ?\n\t\t\tthis.context[0].oSavedState :\n\t\t\tnull;\n\t} );\n\t\n\t\n\t_api_register( 'state.clear()', function () {\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t// Save an empty object\n\t\t\tsettings.fnStateSaveCallback.call( settings.oInstance, settings, {} );\n\t\t} );\n\t} );\n\t\n\t\n\t_api_register( 'state.loaded()', function () {\n\t\treturn this.context.length ?\n\t\t\tthis.context[0].oLoadedState :\n\t\t\tnull;\n\t} );\n\t\n\t\n\t_api_register( 'state.save()', function () {\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t_fnSaveState( settings );\n\t\t} );\n\t} );\n\t\n\t\n\t\n\t/**\n\t * Provide a common method for plug-ins to check the version of DataTables being\n\t * used, in order to ensure compatibility.\n\t *\n\t *  @param {string} version Version string to check for, in the format \"X.Y.Z\".\n\t *    Note that the formats \"X\" and \"X.Y\" are also acceptable.\n\t *  @returns {boolean} true if this version of DataTables is greater or equal to\n\t *    the required version, or false if this version of DataTales is not\n\t *    suitable\n\t *  @static\n\t *  @dtopt API-Static\n\t *\n\t *  @example\n\t *    alert( $.fn.dataTable.versionCheck( '1.9.0' ) );\n\t */\n\tDataTable.versionCheck = DataTable.fnVersionCheck = function( version )\n\t{\n\t\tvar aThis = DataTable.version.split('.');\n\t\tvar aThat = version.split('.');\n\t\tvar iThis, iThat;\n\t\n\t\tfor ( var i=0, iLen=aThat.length ; i<iLen ; i++ ) {\n\t\t\tiThis = parseInt( aThis[i], 10 ) || 0;\n\t\t\tiThat = parseInt( aThat[i], 10 ) || 0;\n\t\n\t\t\t// Parts are the same, keep comparing\n\t\t\tif (iThis === iThat) {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\n\t\t\t// Parts are different, return immediately\n\t\t\treturn iThis > iThat;\n\t\t}\n\t\n\t\treturn true;\n\t};\n\t\n\t\n\t/**\n\t * Check if a `<table>` node is a DataTable table already or not.\n\t *\n\t *  @param {node|jquery|string} table Table node, jQuery object or jQuery\n\t *      selector for the table to test. Note that if more than more than one\n\t *      table is passed on, only the first will be checked\n\t *  @returns {boolean} true the table given is a DataTable, or false otherwise\n\t *  @static\n\t *  @dtopt API-Static\n\t *\n\t *  @example\n\t *    if ( ! $.fn.DataTable.isDataTable( '#example' ) ) {\n\t *      $('#example').dataTable();\n\t *    }\n\t */\n\tDataTable.isDataTable = DataTable.fnIsDataTable = function ( table )\n\t{\n\t\tvar t = $(table).get(0);\n\t\tvar is = false;\n\t\n\t\t$.each( DataTable.settings, function (i, o) {\n\t\t\tif ( o.nTable === t || o.nScrollHead === t || o.nScrollFoot === t ) {\n\t\t\t\tis = true;\n\t\t\t}\n\t\t} );\n\t\n\t\treturn is;\n\t};\n\t\n\t\n\t/**\n\t * Get all DataTable tables that have been initialised - optionally you can\n\t * select to get only currently visible tables.\n\t *\n\t *  @param {boolean} [visible=false] Flag to indicate if you want all (default)\n\t *    or visible tables only.\n\t *  @returns {array} Array of `table` nodes (not DataTable instances) which are\n\t *    DataTables\n\t *  @static\n\t *  @dtopt API-Static\n\t *\n\t *  @example\n\t *    $.each( $.fn.dataTable.tables(true), function () {\n\t *      $(table).DataTable().columns.adjust();\n\t *    } );\n\t */\n\tDataTable.tables = DataTable.fnTables = function ( visible )\n\t{\n\t\treturn $.map( DataTable.settings, function (o) {\n\t\t\tif ( !visible || (visible && $(o.nTable).is(':visible')) ) {\n\t\t\t\treturn o.nTable;\n\t\t\t}\n\t\t} );\n\t};\n\t\n\t\n\t/**\n\t * DataTables utility methods\n\t * \n\t * This namespace provides helper methods that DataTables uses internally to\n\t * create a DataTable, but which are not exclusively used only for DataTables.\n\t * These methods can be used by extension authors to save the duplication of\n\t * code.\n\t *\n\t *  @namespace\n\t */\n\tDataTable.util = {\n\t\t/**\n\t\t * Throttle the calls to a function. Arguments and context are maintained\n\t\t * for the throttled function.\n\t\t *\n\t\t * @param {function} fn Function to be called\n\t\t * @param {integer} freq Call frequency in mS\n\t\t * @return {function} Wrapped function\n\t\t */\n\t\tthrottle: _fnThrottle,\n\t\n\t\n\t\t/**\n\t\t * Escape a string such that it can be used in a regular expression\n\t\t *\n\t\t *  @param {string} sVal string to escape\n\t\t *  @returns {string} escaped string\n\t\t */\n\t\tescapeRegex: _fnEscapeRegex\n\t};\n\t\n\t\n\t/**\n\t * Convert from camel case parameters to Hungarian notation. This is made public\n\t * for the extensions to provide the same ability as DataTables core to accept\n\t * either the 1.9 style Hungarian notation, or the 1.10+ style camelCase\n\t * parameters.\n\t *\n\t *  @param {object} src The model object which holds all parameters that can be\n\t *    mapped.\n\t *  @param {object} user The object to convert from camel case to Hungarian.\n\t *  @param {boolean} force When set to `true`, properties which already have a\n\t *    Hungarian value in the `user` object will be overwritten. Otherwise they\n\t *    won't be.\n\t */\n\tDataTable.camelToHungarian = _fnCamelToHungarian;\n\t\n\t\n\t\n\t/**\n\t *\n\t */\n\t_api_register( '$()', function ( selector, opts ) {\n\t\tvar\n\t\t\trows   = this.rows( opts ).nodes(), // Get all rows\n\t\t\tjqRows = $(rows);\n\t\n\t\treturn $( [].concat(\n\t\t\tjqRows.filter( selector ).toArray(),\n\t\t\tjqRows.find( selector ).toArray()\n\t\t) );\n\t} );\n\t\n\t\n\t// jQuery functions to operate on the tables\n\t$.each( [ 'on', 'one', 'off' ], function (i, key) {\n\t\t_api_register( key+'()', function ( /* event, handler */ ) {\n\t\t\tvar args = Array.prototype.slice.call(arguments);\n\t\n\t\t\t// Add the `dt` namespace automatically if it isn't already present\n\t\t\tif ( ! args[0].match(/\\.dt\\b/) ) {\n\t\t\t\targs[0] += '.dt';\n\t\t\t}\n\t\n\t\t\tvar inst = $( this.tables().nodes() );\n\t\t\tinst[key].apply( inst, args );\n\t\t\treturn this;\n\t\t} );\n\t} );\n\t\n\t\n\t_api_register( 'clear()', function () {\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\t_fnClearTable( settings );\n\t\t} );\n\t} );\n\t\n\t\n\t_api_register( 'settings()', function () {\n\t\treturn new _Api( this.context, this.context );\n\t} );\n\t\n\t\n\t_api_register( 'data()', function () {\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\treturn _pluck( settings.aoData, '_aData' );\n\t\t} ).flatten();\n\t} );\n\t\n\t\n\t_api_register( 'destroy()', function ( remove ) {\n\t\tremove = remove || false;\n\t\n\t\treturn this.iterator( 'table', function ( settings ) {\n\t\t\tvar orig      = settings.nTableWrapper.parentNode;\n\t\t\tvar classes   = settings.oClasses;\n\t\t\tvar table     = settings.nTable;\n\t\t\tvar tbody     = settings.nTBody;\n\t\t\tvar thead     = settings.nTHead;\n\t\t\tvar tfoot     = settings.nTFoot;\n\t\t\tvar jqTable   = $(table);\n\t\t\tvar jqTbody   = $(tbody);\n\t\t\tvar jqWrapper = $(settings.nTableWrapper);\n\t\t\tvar rows      = $.map( settings.aoData, function (r) { return r.nTr; } );\n\t\t\tvar i, ien;\n\t\n\t\t\t// Flag to note that the table is currently being destroyed - no action\n\t\t\t// should be taken\n\t\t\tsettings.bDestroying = true;\n\t\n\t\t\t// Fire off the destroy callbacks for plug-ins etc\n\t\t\t_fnCallbackFire( settings, \"aoDestroyCallback\", \"destroy\", [settings] );\n\t\n\t\t\t// If not being removed from the document, make all columns visible\n\t\t\tif ( ! remove ) {\n\t\t\t\tnew _Api( settings ).columns().visible( true );\n\t\t\t}\n\t\n\t\t\t// Blitz all `DT` namespaced events (these are internal events, the\n\t\t\t// lowercase, `dt` events are user subscribed and they are responsible\n\t\t\t// for removing them\n\t\t\tjqWrapper.unbind('.DT').find(':not(tbody *)').unbind('.DT');\n\t\t\t$(window).unbind('.DT-'+settings.sInstance);\n\t\n\t\t\t// When scrolling we had to break the table up - restore it\n\t\t\tif ( table != thead.parentNode ) {\n\t\t\t\tjqTable.children('thead').detach();\n\t\t\t\tjqTable.append( thead );\n\t\t\t}\n\t\n\t\t\tif ( tfoot && table != tfoot.parentNode ) {\n\t\t\t\tjqTable.children('tfoot').detach();\n\t\t\t\tjqTable.append( tfoot );\n\t\t\t}\n\t\n\t\t\t// Remove the DataTables generated nodes, events and classes\n\t\t\tjqTable.detach();\n\t\t\tjqWrapper.detach();\n\t\n\t\t\tsettings.aaSorting = [];\n\t\t\tsettings.aaSortingFixed = [];\n\t\t\t_fnSortingClasses( settings );\n\t\n\t\t\t$( rows ).removeClass( settings.asStripeClasses.join(' ') );\n\t\n\t\t\t$('th, td', thead).removeClass( classes.sSortable+' '+\n\t\t\t\tclasses.sSortableAsc+' '+classes.sSortableDesc+' '+classes.sSortableNone\n\t\t\t);\n\t\n\t\t\tif ( settings.bJUI ) {\n\t\t\t\t$('th span.'+classes.sSortIcon+ ', td span.'+classes.sSortIcon, thead).detach();\n\t\t\t\t$('th, td', thead).each( function () {\n\t\t\t\t\tvar wrapper = $('div.'+classes.sSortJUIWrapper, this);\n\t\t\t\t\t$(this).append( wrapper.contents() );\n\t\t\t\t\twrapper.detach();\n\t\t\t\t} );\n\t\t\t}\n\t\n\t\t\tif ( ! remove && orig ) {\n\t\t\t\t// insertBefore acts like appendChild if !arg[1]\n\t\t\t\torig.insertBefore( table, settings.nTableReinsertBefore );\n\t\t\t}\n\t\n\t\t\t// Add the TR elements back into the table in their original order\n\t\t\tjqTbody.children().detach();\n\t\t\tjqTbody.append( rows );\n\t\n\t\t\t// Restore the width of the original table - was read from the style property,\n\t\t\t// so we can restore directly to that\n\t\t\tjqTable\n\t\t\t\t.css( 'width', settings.sDestroyWidth )\n\t\t\t\t.removeClass( classes.sTable );\n\t\n\t\t\t// If the were originally stripe classes - then we add them back here.\n\t\t\t// Note this is not fool proof (for example if not all rows had stripe\n\t\t\t// classes - but it's a good effort without getting carried away\n\t\t\tien = settings.asDestroyStripes.length;\n\t\n\t\t\tif ( ien ) {\n\t\t\t\tjqTbody.children().each( function (i) {\n\t\t\t\t\t$(this).addClass( settings.asDestroyStripes[i % ien] );\n\t\t\t\t} );\n\t\t\t}\n\t\n\t\t\t/* Remove the settings object from the settings array */\n\t\t\tvar idx = $.inArray( settings, DataTable.settings );\n\t\t\tif ( idx !== -1 ) {\n\t\t\t\tDataTable.settings.splice( idx, 1 );\n\t\t\t}\n\t\t} );\n\t} );\n\t\n\n\t/**\n\t * Version string for plug-ins to check compatibility. Allowed format is\n\t * `a.b.c-d` where: a:int, b:int, c:int, d:string(dev|beta|alpha). `d` is used\n\t * only for non-release builds. See http://semver.org/ for more information.\n\t *  @member\n\t *  @type string\n\t *  @default Version number\n\t */\n\tDataTable.version = \"1.10.4\";\n\n\t/**\n\t * Private data store, containing all of the settings objects that are\n\t * created for the tables on a given page.\n\t *\n\t * Note that the `DataTable.settings` object is aliased to\n\t * `jQuery.fn.dataTableExt` through which it may be accessed and\n\t * manipulated, or `jQuery.fn.dataTable.settings`.\n\t *  @member\n\t *  @type array\n\t *  @default []\n\t *  @private\n\t */\n\tDataTable.settings = [];\n\n\t/**\n\t * Object models container, for the various models that DataTables has\n\t * available to it. These models define the objects that are used to hold\n\t * the active state and configuration of the table.\n\t *  @namespace\n\t */\n\tDataTable.models = {};\n\t\n\t\n\t\n\t/**\n\t * Template object for the way in which DataTables holds information about\n\t * search information for the global filter and individual column filters.\n\t *  @namespace\n\t */\n\tDataTable.models.oSearch = {\n\t\t/**\n\t\t * Flag to indicate if the filtering should be case insensitive or not\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t */\n\t\t\"bCaseInsensitive\": true,\n\t\n\t\t/**\n\t\t * Applied search term\n\t\t *  @type string\n\t\t *  @default <i>Empty string</i>\n\t\t */\n\t\t\"sSearch\": \"\",\n\t\n\t\t/**\n\t\t * Flag to indicate if the search term should be interpreted as a\n\t\t * regular expression (true) or not (false) and therefore and special\n\t\t * regex characters escaped.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t */\n\t\t\"bRegex\": false,\n\t\n\t\t/**\n\t\t * Flag to indicate if DataTables is to use its smart filtering or not.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t */\n\t\t\"bSmart\": true\n\t};\n\t\n\t\n\t\n\t\n\t/**\n\t * Template object for the way in which DataTables holds information about\n\t * each individual row. This is the object format used for the settings\n\t * aoData array.\n\t *  @namespace\n\t */\n\tDataTable.models.oRow = {\n\t\t/**\n\t\t * TR element for the row\n\t\t *  @type node\n\t\t *  @default null\n\t\t */\n\t\t\"nTr\": null,\n\t\n\t\t/**\n\t\t * Array of TD elements for each row. This is null until the row has been\n\t\t * created.\n\t\t *  @type array nodes\n\t\t *  @default []\n\t\t */\n\t\t\"anCells\": null,\n\t\n\t\t/**\n\t\t * Data object from the original data source for the row. This is either\n\t\t * an array if using the traditional form of DataTables, or an object if\n\t\t * using mData options. The exact type will depend on the passed in\n\t\t * data from the data source, or will be an array if using DOM a data\n\t\t * source.\n\t\t *  @type array|object\n\t\t *  @default []\n\t\t */\n\t\t\"_aData\": [],\n\t\n\t\t/**\n\t\t * Sorting data cache - this array is ostensibly the same length as the\n\t\t * number of columns (although each index is generated only as it is\n\t\t * needed), and holds the data that is used for sorting each column in the\n\t\t * row. We do this cache generation at the start of the sort in order that\n\t\t * the formatting of the sort data need be done only once for each cell\n\t\t * per sort. This array should not be read from or written to by anything\n\t\t * other than the master sorting methods.\n\t\t *  @type array\n\t\t *  @default null\n\t\t *  @private\n\t\t */\n\t\t\"_aSortData\": null,\n\t\n\t\t/**\n\t\t * Per cell filtering data cache. As per the sort data cache, used to\n\t\t * increase the performance of the filtering in DataTables\n\t\t *  @type array\n\t\t *  @default null\n\t\t *  @private\n\t\t */\n\t\t\"_aFilterData\": null,\n\t\n\t\t/**\n\t\t * Filtering data cache. This is the same as the cell filtering cache, but\n\t\t * in this case a string rather than an array. This is easily computed with\n\t\t * a join on `_aFilterData`, but is provided as a cache so the join isn't\n\t\t * needed on every search (memory traded for performance)\n\t\t *  @type array\n\t\t *  @default null\n\t\t *  @private\n\t\t */\n\t\t\"_sFilterRow\": null,\n\t\n\t\t/**\n\t\t * Cache of the class name that DataTables has applied to the row, so we\n\t\t * can quickly look at this variable rather than needing to do a DOM check\n\t\t * on className for the nTr property.\n\t\t *  @type string\n\t\t *  @default <i>Empty string</i>\n\t\t *  @private\n\t\t */\n\t\t\"_sRowStripe\": \"\",\n\t\n\t\t/**\n\t\t * Denote if the original data source was from the DOM, or the data source\n\t\t * object. This is used for invalidating data, so DataTables can\n\t\t * automatically read data from the original source, unless uninstructed\n\t\t * otherwise.\n\t\t *  @type string\n\t\t *  @default null\n\t\t *  @private\n\t\t */\n\t\t\"src\": null\n\t};\n\t\n\t\n\t/**\n\t * Template object for the column information object in DataTables. This object\n\t * is held in the settings aoColumns array and contains all the information that\n\t * DataTables needs about each individual column.\n\t *\n\t * Note that this object is related to {@link DataTable.defaults.column}\n\t * but this one is the internal data store for DataTables's cache of columns.\n\t * It should NOT be manipulated outside of DataTables. Any configuration should\n\t * be done through the initialisation options.\n\t *  @namespace\n\t */\n\tDataTable.models.oColumn = {\n\t\t/**\n\t\t * Column index. This could be worked out on-the-fly with $.inArray, but it\n\t\t * is faster to just hold it as a variable\n\t\t *  @type integer\n\t\t *  @default null\n\t\t */\n\t\t\"idx\": null,\n\t\n\t\t/**\n\t\t * A list of the columns that sorting should occur on when this column\n\t\t * is sorted. That this property is an array allows multi-column sorting\n\t\t * to be defined for a column (for example first name / last name columns\n\t\t * would benefit from this). The values are integers pointing to the\n\t\t * columns to be sorted on (typically it will be a single integer pointing\n\t\t * at itself, but that doesn't need to be the case).\n\t\t *  @type array\n\t\t */\n\t\t\"aDataSort\": null,\n\t\n\t\t/**\n\t\t * Define the sorting directions that are applied to the column, in sequence\n\t\t * as the column is repeatedly sorted upon - i.e. the first value is used\n\t\t * as the sorting direction when the column if first sorted (clicked on).\n\t\t * Sort it again (click again) and it will move on to the next index.\n\t\t * Repeat until loop.\n\t\t *  @type array\n\t\t */\n\t\t\"asSorting\": null,\n\t\n\t\t/**\n\t\t * Flag to indicate if the column is searchable, and thus should be included\n\t\t * in the filtering or not.\n\t\t *  @type boolean\n\t\t */\n\t\t\"bSearchable\": null,\n\t\n\t\t/**\n\t\t * Flag to indicate if the column is sortable or not.\n\t\t *  @type boolean\n\t\t */\n\t\t\"bSortable\": null,\n\t\n\t\t/**\n\t\t * Flag to indicate if the column is currently visible in the table or not\n\t\t *  @type boolean\n\t\t */\n\t\t\"bVisible\": null,\n\t\n\t\t/**\n\t\t * Store for manual type assignment using the `column.type` option. This\n\t\t * is held in store so we can manipulate the column's `sType` property.\n\t\t *  @type string\n\t\t *  @default null\n\t\t *  @private\n\t\t */\n\t\t\"_sManualType\": null,\n\t\n\t\t/**\n\t\t * Flag to indicate if HTML5 data attributes should be used as the data\n\t\t * source for filtering or sorting. True is either are.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *  @private\n\t\t */\n\t\t\"_bAttrSrc\": false,\n\t\n\t\t/**\n\t\t * Developer definable function that is called whenever a cell is created (Ajax source,\n\t\t * etc) or processed for input (DOM source). This can be used as a compliment to mRender\n\t\t * allowing you to modify the DOM element (add background colour for example) when the\n\t\t * element is available.\n\t\t *  @type function\n\t\t *  @param {element} nTd The TD node that has been created\n\t\t *  @param {*} sData The Data for the cell\n\t\t *  @param {array|object} oData The data for the whole row\n\t\t *  @param {int} iRow The row index for the aoData data store\n\t\t *  @default null\n\t\t */\n\t\t\"fnCreatedCell\": null,\n\t\n\t\t/**\n\t\t * Function to get data from a cell in a column. You should <b>never</b>\n\t\t * access data directly through _aData internally in DataTables - always use\n\t\t * the method attached to this property. It allows mData to function as\n\t\t * required. This function is automatically assigned by the column\n\t\t * initialisation method\n\t\t *  @type function\n\t\t *  @param {array|object} oData The data array/object for the array\n\t\t *    (i.e. aoData[]._aData)\n\t\t *  @param {string} sSpecific The specific data type you want to get -\n\t\t *    'display', 'type' 'filter' 'sort'\n\t\t *  @returns {*} The data for the cell from the given row's data\n\t\t *  @default null\n\t\t */\n\t\t\"fnGetData\": null,\n\t\n\t\t/**\n\t\t * Function to set data for a cell in the column. You should <b>never</b>\n\t\t * set the data directly to _aData internally in DataTables - always use\n\t\t * this method. It allows mData to function as required. This function\n\t\t * is automatically assigned by the column initialisation method\n\t\t *  @type function\n\t\t *  @param {array|object} oData The data array/object for the array\n\t\t *    (i.e. aoData[]._aData)\n\t\t *  @param {*} sValue Value to set\n\t\t *  @default null\n\t\t */\n\t\t\"fnSetData\": null,\n\t\n\t\t/**\n\t\t * Property to read the value for the cells in the column from the data\n\t\t * source array / object. If null, then the default content is used, if a\n\t\t * function is given then the return from the function is used.\n\t\t *  @type function|int|string|null\n\t\t *  @default null\n\t\t */\n\t\t\"mData\": null,\n\t\n\t\t/**\n\t\t * Partner property to mData which is used (only when defined) to get\n\t\t * the data - i.e. it is basically the same as mData, but without the\n\t\t * 'set' option, and also the data fed to it is the result from mData.\n\t\t * This is the rendering method to match the data method of mData.\n\t\t *  @type function|int|string|null\n\t\t *  @default null\n\t\t */\n\t\t\"mRender\": null,\n\t\n\t\t/**\n\t\t * Unique header TH/TD element for this column - this is what the sorting\n\t\t * listener is attached to (if sorting is enabled.)\n\t\t *  @type node\n\t\t *  @default null\n\t\t */\n\t\t\"nTh\": null,\n\t\n\t\t/**\n\t\t * Unique footer TH/TD element for this column (if there is one). Not used\n\t\t * in DataTables as such, but can be used for plug-ins to reference the\n\t\t * footer for each column.\n\t\t *  @type node\n\t\t *  @default null\n\t\t */\n\t\t\"nTf\": null,\n\t\n\t\t/**\n\t\t * The class to apply to all TD elements in the table's TBODY for the column\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sClass\": null,\n\t\n\t\t/**\n\t\t * When DataTables calculates the column widths to assign to each column,\n\t\t * it finds the longest string in each column and then constructs a\n\t\t * temporary table and reads the widths from that. The problem with this\n\t\t * is that \"mmm\" is much wider then \"iiii\", but the latter is a longer\n\t\t * string - thus the calculation can go wrong (doing it properly and putting\n\t\t * it into an DOM object and measuring that is horribly(!) slow). Thus as\n\t\t * a \"work around\" we provide this option. It will append its value to the\n\t\t * text that is found to be the longest string for the column - i.e. padding.\n\t\t *  @type string\n\t\t */\n\t\t\"sContentPadding\": null,\n\t\n\t\t/**\n\t\t * Allows a default value to be given for a column's data, and will be used\n\t\t * whenever a null data source is encountered (this can be because mData\n\t\t * is set to null, or because the data source itself is null).\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sDefaultContent\": null,\n\t\n\t\t/**\n\t\t * Name for the column, allowing reference to the column by name as well as\n\t\t * by index (needs a lookup to work by name).\n\t\t *  @type string\n\t\t */\n\t\t\"sName\": null,\n\t\n\t\t/**\n\t\t * Custom sorting data type - defines which of the available plug-ins in\n\t\t * afnSortData the custom sorting will use - if any is defined.\n\t\t *  @type string\n\t\t *  @default std\n\t\t */\n\t\t\"sSortDataType\": 'std',\n\t\n\t\t/**\n\t\t * Class to be applied to the header element when sorting on this column\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sSortingClass\": null,\n\t\n\t\t/**\n\t\t * Class to be applied to the header element when sorting on this column -\n\t\t * when jQuery UI theming is used.\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sSortingClassJUI\": null,\n\t\n\t\t/**\n\t\t * Title of the column - what is seen in the TH element (nTh).\n\t\t *  @type string\n\t\t */\n\t\t\"sTitle\": null,\n\t\n\t\t/**\n\t\t * Column sorting and filtering type\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sType\": null,\n\t\n\t\t/**\n\t\t * Width of the column\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sWidth\": null,\n\t\n\t\t/**\n\t\t * Width of the column when it was first \"encountered\"\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sWidthOrig\": null\n\t};\n\t\n\t\n\t/*\n\t * Developer note: The properties of the object below are given in Hungarian\n\t * notation, that was used as the interface for DataTables prior to v1.10, however\n\t * from v1.10 onwards the primary interface is camel case. In order to avoid\n\t * breaking backwards compatibility utterly with this change, the Hungarian\n\t * version is still, internally the primary interface, but is is not documented\n\t * - hence the @name tags in each doc comment. This allows a Javascript function\n\t * to create a map from Hungarian notation to camel case (going the other direction\n\t * would require each property to be listed, which would at around 3K to the size\n\t * of DataTables, while this method is about a 0.5K hit.\n\t *\n\t * Ultimately this does pave the way for Hungarian notation to be dropped\n\t * completely, but that is a massive amount of work and will break current\n\t * installs (therefore is on-hold until v2).\n\t */\n\t\n\t/**\n\t * Initialisation options that can be given to DataTables at initialisation\n\t * time.\n\t *  @namespace\n\t */\n\tDataTable.defaults = {\n\t\t/**\n\t\t * An array of data to use for the table, passed in at initialisation which\n\t\t * will be used in preference to any data which is already in the DOM. This is\n\t\t * particularly useful for constructing tables purely in Javascript, for\n\t\t * example with a custom Ajax call.\n\t\t *  @type array\n\t\t *  @default null\n\t\t *\n\t\t *  @dtopt Option\n\t\t *  @name DataTable.defaults.data\n\t\t *\n\t\t *  @example\n\t\t *    // Using a 2D array data source\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"data\": [\n\t\t *          ['Trident', 'Internet Explorer 4.0', 'Win 95+', 4, 'X'],\n\t\t *          ['Trident', 'Internet Explorer 5.0', 'Win 95+', 5, 'C'],\n\t\t *        ],\n\t\t *        \"columns\": [\n\t\t *          { \"title\": \"Engine\" },\n\t\t *          { \"title\": \"Browser\" },\n\t\t *          { \"title\": \"Platform\" },\n\t\t *          { \"title\": \"Version\" },\n\t\t *          { \"title\": \"Grade\" }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using an array of objects as a data source (`data`)\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"data\": [\n\t\t *          {\n\t\t *            \"engine\":   \"Trident\",\n\t\t *            \"browser\":  \"Internet Explorer 4.0\",\n\t\t *            \"platform\": \"Win 95+\",\n\t\t *            \"version\":  4,\n\t\t *            \"grade\":    \"X\"\n\t\t *          },\n\t\t *          {\n\t\t *            \"engine\":   \"Trident\",\n\t\t *            \"browser\":  \"Internet Explorer 5.0\",\n\t\t *            \"platform\": \"Win 95+\",\n\t\t *            \"version\":  5,\n\t\t *            \"grade\":    \"C\"\n\t\t *          }\n\t\t *        ],\n\t\t *        \"columns\": [\n\t\t *          { \"title\": \"Engine\",   \"data\": \"engine\" },\n\t\t *          { \"title\": \"Browser\",  \"data\": \"browser\" },\n\t\t *          { \"title\": \"Platform\", \"data\": \"platform\" },\n\t\t *          { \"title\": \"Version\",  \"data\": \"version\" },\n\t\t *          { \"title\": \"Grade\",    \"data\": \"grade\" }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"aaData\": null,\n\t\n\t\n\t\t/**\n\t\t * If ordering is enabled, then DataTables will perform a first pass sort on\n\t\t * initialisation. You can define which column(s) the sort is performed\n\t\t * upon, and the sorting direction, with this variable. The `sorting` array\n\t\t * should contain an array for each column to be sorted initially containing\n\t\t * the column's index and a direction string ('asc' or 'desc').\n\t\t *  @type array\n\t\t *  @default [[0,'asc']]\n\t\t *\n\t\t *  @dtopt Option\n\t\t *  @name DataTable.defaults.order\n\t\t *\n\t\t *  @example\n\t\t *    // Sort by 3rd column first, and then 4th column\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"order\": [[2,'asc'], [3,'desc']]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *    // No initial sorting\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"order\": []\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"aaSorting\": [[0,'asc']],\n\t\n\t\n\t\t/**\n\t\t * This parameter is basically identical to the `sorting` parameter, but\n\t\t * cannot be overridden by user interaction with the table. What this means\n\t\t * is that you could have a column (visible or hidden) which the sorting\n\t\t * will always be forced on first - any sorting after that (from the user)\n\t\t * will then be performed as required. This can be useful for grouping rows\n\t\t * together.\n\t\t *  @type array\n\t\t *  @default null\n\t\t *\n\t\t *  @dtopt Option\n\t\t *  @name DataTable.defaults.orderFixed\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"orderFixed\": [[0,'asc']]\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"aaSortingFixed\": [],\n\t\n\t\n\t\t/**\n\t\t * DataTables can be instructed to load data to display in the table from a\n\t\t * Ajax source. This option defines how that Ajax call is made and where to.\n\t\t *\n\t\t * The `ajax` property has three different modes of operation, depending on\n\t\t * how it is defined. These are:\n\t\t *\n\t\t * * `string` - Set the URL from where the data should be loaded from.\n\t\t * * `object` - Define properties for `jQuery.ajax`.\n\t\t * * `function` - Custom data get function\n\t\t *\n\t\t * `string`\n\t\t * --------\n\t\t *\n\t\t * As a string, the `ajax` property simply defines the URL from which\n\t\t * DataTables will load data.\n\t\t *\n\t\t * `object`\n\t\t * --------\n\t\t *\n\t\t * As an object, the parameters in the object are passed to\n\t\t * [jQuery.ajax](http://api.jquery.com/jQuery.ajax/) allowing fine control\n\t\t * of the Ajax request. DataTables has a number of default parameters which\n\t\t * you can override using this option. Please refer to the jQuery\n\t\t * documentation for a full description of the options available, although\n\t\t * the following parameters provide additional options in DataTables or\n\t\t * require special consideration:\n\t\t *\n\t\t * * `data` - As with jQuery, `data` can be provided as an object, but it\n\t\t *   can also be used as a function to manipulate the data DataTables sends\n\t\t *   to the server. The function takes a single parameter, an object of\n\t\t *   parameters with the values that DataTables has readied for sending. An\n\t\t *   object may be returned which will be merged into the DataTables\n\t\t *   defaults, or you can add the items to the object that was passed in and\n\t\t *   not return anything from the function. This supersedes `fnServerParams`\n\t\t *   from DataTables 1.9-.\n\t\t *\n\t\t * * `dataSrc` - By default DataTables will look for the property `data` (or\n\t\t *   `aaData` for compatibility with DataTables 1.9-) when obtaining data\n\t\t *   from an Ajax source or for server-side processing - this parameter\n\t\t *   allows that property to be changed. You can use Javascript dotted\n\t\t *   object notation to get a data source for multiple levels of nesting, or\n\t\t *   it my be used as a function. As a function it takes a single parameter,\n\t\t *   the JSON returned from the server, which can be manipulated as\n\t\t *   required, with the returned value being that used by DataTables as the\n\t\t *   data source for the table. This supersedes `sAjaxDataProp` from\n\t\t *   DataTables 1.9-.\n\t\t *\n\t\t * * `success` - Should not be overridden it is used internally in\n\t\t *   DataTables. To manipulate / transform the data returned by the server\n\t\t *   use `ajax.dataSrc`, or use `ajax` as a function (see below).\n\t\t *\n\t\t * `function`\n\t\t * ----------\n\t\t *\n\t\t * As a function, making the Ajax call is left up to yourself allowing\n\t\t * complete control of the Ajax request. Indeed, if desired, a method other\n\t\t * than Ajax could be used to obtain the required data, such as Web storage\n\t\t * or an AIR database.\n\t\t *\n\t\t * The function is given four parameters and no return is required. The\n\t\t * parameters are:\n\t\t *\n\t\t * 1. _object_ - Data to send to the server\n\t\t * 2. _function_ - Callback function that must be executed when the required\n\t\t *    data has been obtained. That data should be passed into the callback\n\t\t *    as the only parameter\n\t\t * 3. _object_ - DataTables settings object for the table\n\t\t *\n\t\t * Note that this supersedes `fnServerData` from DataTables 1.9-.\n\t\t *\n\t\t *  @type string|object|function\n\t\t *  @default null\n\t\t *\n\t\t *  @dtopt Option\n\t\t *  @name DataTable.defaults.ajax\n\t\t *  @since 1.10.0\n\t\t *\n\t\t * @example\n\t\t *   // Get JSON data from a file via Ajax.\n\t\t *   // Note DataTables expects data in the form `{ data: [ ...data... ] }` by default).\n\t\t *   $('#example').dataTable( {\n\t\t *     \"ajax\": \"data.json\"\n\t\t *   } );\n\t\t *\n\t\t * @example\n\t\t *   // Get JSON data from a file via Ajax, using `dataSrc` to change\n\t\t *   // `data` to `tableData` (i.e. `{ tableData: [ ...data... ] }`)\n\t\t *   $('#example').dataTable( {\n\t\t *     \"ajax\": {\n\t\t *       \"url\": \"data.json\",\n\t\t *       \"dataSrc\": \"tableData\"\n\t\t *     }\n\t\t *   } );\n\t\t *\n\t\t * @example\n\t\t *   // Get JSON data from a file via Ajax, using `dataSrc` to read data\n\t\t *   // from a plain array rather than an array in an object\n\t\t *   $('#example').dataTable( {\n\t\t *     \"ajax\": {\n\t\t *       \"url\": \"data.json\",\n\t\t *       \"dataSrc\": \"\"\n\t\t *     }\n\t\t *   } );\n\t\t *\n\t\t * @example\n\t\t *   // Manipulate the data returned from the server - add a link to data\n\t\t *   // (note this can, should, be done using `render` for the column - this\n\t\t *   // is just a simple example of how the data can be manipulated).\n\t\t *   $('#example').dataTable( {\n\t\t *     \"ajax\": {\n\t\t *       \"url\": \"data.json\",\n\t\t *       \"dataSrc\": function ( json ) {\n\t\t *         for ( var i=0, ien=json.length ; i<ien ; i++ ) {\n\t\t *           json[i][0] = '<a href=\"/message/'+json[i][0]+'>View message</a>';\n\t\t *         }\n\t\t *         return json;\n\t\t *       }\n\t\t *     }\n\t\t *   } );\n\t\t *\n\t\t * @example\n\t\t *   // Add data to the request\n\t\t *   $('#example').dataTable( {\n\t\t *     \"ajax\": {\n\t\t *       \"url\": \"data.json\",\n\t\t *       \"data\": function ( d ) {\n\t\t *         return {\n\t\t *           \"extra_search\": $('#extra').val()\n\t\t *         };\n\t\t *       }\n\t\t *     }\n\t\t *   } );\n\t\t *\n\t\t * @example\n\t\t *   // Send request as POST\n\t\t *   $('#example').dataTable( {\n\t\t *     \"ajax\": {\n\t\t *       \"url\": \"data.json\",\n\t\t *       \"type\": \"POST\"\n\t\t *     }\n\t\t *   } );\n\t\t *\n\t\t * @example\n\t\t *   // Get the data from localStorage (could interface with a form for\n\t\t *   // adding, editing and removing rows).\n\t\t *   $('#example').dataTable( {\n\t\t *     \"ajax\": function (data, callback, settings) {\n\t\t *       callback(\n\t\t *         JSON.parse( localStorage.getItem('dataTablesData') )\n\t\t *       );\n\t\t *     }\n\t\t *   } );\n\t\t */\n\t\t\"ajax\": null,\n\t\n\t\n\t\t/**\n\t\t * This parameter allows you to readily specify the entries in the length drop\n\t\t * down menu that DataTables shows when pagination is enabled. It can be\n\t\t * either a 1D array of options which will be used for both the displayed\n\t\t * option and the value, or a 2D array which will use the array in the first\n\t\t * position as the value, and the array in the second position as the\n\t\t * displayed options (useful for language strings such as 'All').\n\t\t *\n\t\t * Note that the `pageLength` property will be automatically set to the\n\t\t * first value given in this array, unless `pageLength` is also provided.\n\t\t *  @type array\n\t\t *  @default [ 10, 25, 50, 100 ]\n\t\t *\n\t\t *  @dtopt Option\n\t\t *  @name DataTable.defaults.lengthMenu\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"lengthMenu\": [[10, 25, 50, -1], [10, 25, 50, \"All\"]]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"aLengthMenu\": [ 10, 25, 50, 100 ],\n\t\n\t\n\t\t/**\n\t\t * The `columns` option in the initialisation parameter allows you to define\n\t\t * details about the way individual columns behave. For a full list of\n\t\t * column options that can be set, please see\n\t\t * {@link DataTable.defaults.column}. Note that if you use `columns` to\n\t\t * define your columns, you must have an entry in the array for every single\n\t\t * column that you have in your table (these can be null if you don't which\n\t\t * to specify any options).\n\t\t *  @member\n\t\t *\n\t\t *  @name DataTable.defaults.column\n\t\t */\n\t\t\"aoColumns\": null,\n\t\n\t\t/**\n\t\t * Very similar to `columns`, `columnDefs` allows you to target a specific\n\t\t * column, multiple columns, or all columns, using the `targets` property of\n\t\t * each object in the array. This allows great flexibility when creating\n\t\t * tables, as the `columnDefs` arrays can be of any length, targeting the\n\t\t * columns you specifically want. `columnDefs` may use any of the column\n\t\t * options available: {@link DataTable.defaults.column}, but it _must_\n\t\t * have `targets` defined in each object in the array. Values in the `targets`\n\t\t * array may be:\n\t\t *   <ul>\n\t\t *     <li>a string - class name will be matched on the TH for the column</li>\n\t\t *     <li>0 or a positive integer - column index counting from the left</li>\n\t\t *     <li>a negative integer - column index counting from the right</li>\n\t\t *     <li>the string \"_all\" - all columns (i.e. assign a default)</li>\n\t\t *   </ul>\n\t\t *  @member\n\t\t *\n\t\t *  @name DataTable.defaults.columnDefs\n\t\t */\n\t\t\"aoColumnDefs\": null,\n\t\n\t\n\t\t/**\n\t\t * Basically the same as `search`, this parameter defines the individual column\n\t\t * filtering state at initialisation time. The array must be of the same size\n\t\t * as the number of columns, and each element be an object with the parameters\n\t\t * `search` and `escapeRegex` (the latter is optional). 'null' is also\n\t\t * accepted and the default will be used.\n\t\t *  @type array\n\t\t *  @default []\n\t\t *\n\t\t *  @dtopt Option\n\t\t *  @name DataTable.defaults.searchCols\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"searchCols\": [\n\t\t *          null,\n\t\t *          { \"search\": \"My filter\" },\n\t\t *          null,\n\t\t *          { \"search\": \"^[0-9]\", \"escapeRegex\": false }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"aoSearchCols\": [],\n\t\n\t\n\t\t/**\n\t\t * An array of CSS classes that should be applied to displayed rows. This\n\t\t * array may be of any length, and DataTables will apply each class\n\t\t * sequentially, looping when required.\n\t\t *  @type array\n\t\t *  @default null <i>Will take the values determined by the `oClasses.stripe*`\n\t\t *    options</i>\n\t\t *\n\t\t *  @dtopt Option\n\t\t *  @name DataTable.defaults.stripeClasses\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stripeClasses\": [ 'strip1', 'strip2', 'strip3' ]\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"asStripeClasses\": null,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable automatic column width calculation. This can be disabled\n\t\t * as an optimisation (it takes some time to calculate the widths) if the\n\t\t * tables widths are passed in using `columns`.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.autoWidth\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"autoWidth\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bAutoWidth\": true,\n\t\n\t\n\t\t/**\n\t\t * Deferred rendering can provide DataTables with a huge speed boost when you\n\t\t * are using an Ajax or JS data source for the table. This option, when set to\n\t\t * true, will cause DataTables to defer the creation of the table elements for\n\t\t * each row until they are needed for a draw - saving a significant amount of\n\t\t * time.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.deferRender\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"ajax\": \"sources/arrays.txt\",\n\t\t *        \"deferRender\": true\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bDeferRender\": false,\n\t\n\t\n\t\t/**\n\t\t * Replace a DataTable which matches the given selector and replace it with\n\t\t * one which has the properties of the new initialisation object passed. If no\n\t\t * table matches the selector, then the new DataTable will be constructed as\n\t\t * per normal.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.destroy\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"srollY\": \"200px\",\n\t\t *        \"paginate\": false\n\t\t *      } );\n\t\t *\n\t\t *      // Some time later....\n\t\t *      $('#example').dataTable( {\n\t\t *        \"filter\": false,\n\t\t *        \"destroy\": true\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bDestroy\": false,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable filtering of data. Filtering in DataTables is \"smart\" in\n\t\t * that it allows the end user to input multiple words (space separated) and\n\t\t * will match a row containing those words, even if not in the order that was\n\t\t * specified (this allow matching across multiple columns). Note that if you\n\t\t * wish to use filtering in DataTables this must remain 'true' - to remove the\n\t\t * default filtering input box and retain filtering abilities, please use\n\t\t * {@link DataTable.defaults.dom}.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.searching\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"searching\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bFilter\": true,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable the table information display. This shows information\n\t\t * about the data that is currently visible on the page, including information\n\t\t * about filtered data if that action is being performed.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.info\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"info\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bInfo\": true,\n\t\n\t\n\t\t/**\n\t\t * Enable jQuery UI ThemeRoller support (required as ThemeRoller requires some\n\t\t * slightly different and additional mark-up from what DataTables has\n\t\t * traditionally used).\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.jQueryUI\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"jQueryUI\": true\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bJQueryUI\": false,\n\t\n\t\n\t\t/**\n\t\t * Allows the end user to select the size of a formatted page from a select\n\t\t * menu (sizes are 10, 25, 50 and 100). Requires pagination (`paginate`).\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.lengthChange\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"lengthChange\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bLengthChange\": true,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable pagination.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.paging\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"paging\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bPaginate\": true,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable the display of a 'processing' indicator when the table is\n\t\t * being processed (e.g. a sort). This is particularly useful for tables with\n\t\t * large amounts of data where it can take a noticeable amount of time to sort\n\t\t * the entries.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.processing\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"processing\": true\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bProcessing\": false,\n\t\n\t\n\t\t/**\n\t\t * Retrieve the DataTables object for the given selector. Note that if the\n\t\t * table has already been initialised, this parameter will cause DataTables\n\t\t * to simply return the object that has already been set up - it will not take\n\t\t * account of any changes you might have made to the initialisation object\n\t\t * passed to DataTables (setting this parameter to true is an acknowledgement\n\t\t * that you understand this). `destroy` can be used to reinitialise a table if\n\t\t * you need.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.retrieve\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      initTable();\n\t\t *      tableActions();\n\t\t *    } );\n\t\t *\n\t\t *    function initTable ()\n\t\t *    {\n\t\t *      return $('#example').dataTable( {\n\t\t *        \"scrollY\": \"200px\",\n\t\t *        \"paginate\": false,\n\t\t *        \"retrieve\": true\n\t\t *      } );\n\t\t *    }\n\t\t *\n\t\t *    function tableActions ()\n\t\t *    {\n\t\t *      var table = initTable();\n\t\t *      // perform API operations with oTable\n\t\t *    }\n\t\t */\n\t\t\"bRetrieve\": false,\n\t\n\t\n\t\t/**\n\t\t * When vertical (y) scrolling is enabled, DataTables will force the height of\n\t\t * the table's viewport to the given height at all times (useful for layout).\n\t\t * However, this can look odd when filtering data down to a small data set,\n\t\t * and the footer is left \"floating\" further down. This parameter (when\n\t\t * enabled) will cause DataTables to collapse the table's viewport down when\n\t\t * the result set will fit within the given Y height.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.scrollCollapse\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"scrollY\": \"200\",\n\t\t *        \"scrollCollapse\": true\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bScrollCollapse\": false,\n\t\n\t\n\t\t/**\n\t\t * Configure DataTables to use server-side processing. Note that the\n\t\t * `ajax` parameter must also be given in order to give DataTables a\n\t\t * source to obtain the required data for each draw.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @dtopt Server-side\n\t\t *  @name DataTable.defaults.serverSide\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"serverSide\": true,\n\t\t *        \"ajax\": \"xhr.php\"\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bServerSide\": false,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable sorting of columns. Sorting of individual columns can be\n\t\t * disabled by the `sortable` option for each column.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.ordering\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"ordering\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bSort\": true,\n\t\n\t\n\t\t/**\n\t\t * Enable or display DataTables' ability to sort multiple columns at the\n\t\t * same time (activated by shift-click by the user).\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.orderMulti\n\t\t *\n\t\t *  @example\n\t\t *    // Disable multiple column sorting ability\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"orderMulti\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bSortMulti\": true,\n\t\n\t\n\t\t/**\n\t\t * Allows control over whether DataTables should use the top (true) unique\n\t\t * cell that is found for a single column, or the bottom (false - default).\n\t\t * This is useful when using complex headers.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.orderCellsTop\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"orderCellsTop\": true\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bSortCellsTop\": false,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable the addition of the classes `sorting\\_1`, `sorting\\_2` and\n\t\t * `sorting\\_3` to the columns which are currently being sorted on. This is\n\t\t * presented as a feature switch as it can increase processing time (while\n\t\t * classes are removed and added) so for large data sets you might want to\n\t\t * turn this off.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.orderClasses\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"orderClasses\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bSortClasses\": true,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable state saving. When enabled HTML5 `localStorage` will be\n\t\t * used to save table display information such as pagination information,\n\t\t * display length, filtering and sorting. As such when the end user reloads\n\t\t * the page the display display will match what thy had previously set up.\n\t\t *\n\t\t * Due to the use of `localStorage` the default state saving is not supported\n\t\t * in IE6 or 7. If state saving is required in those browsers, use\n\t\t * `stateSaveCallback` to provide a storage solution such as cookies.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.stateSave\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function () {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stateSave\": true\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"bStateSave\": false,\n\t\n\t\n\t\t/**\n\t\t * This function is called when a TR element is created (and all TD child\n\t\t * elements have been inserted), or registered if using a DOM source, allowing\n\t\t * manipulation of the TR element (adding classes etc).\n\t\t *  @type function\n\t\t *  @param {node} row \"TR\" element for the current row\n\t\t *  @param {array} data Raw data array for this row\n\t\t *  @param {int} dataIndex The index of this row in the internal aoData array\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.createdRow\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"createdRow\": function( row, data, dataIndex ) {\n\t\t *          // Bold the grade for all 'A' grade browsers\n\t\t *          if ( data[4] == \"A\" )\n\t\t *          {\n\t\t *            $('td:eq(4)', row).html( '<b>A</b>' );\n\t\t *          }\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnCreatedRow\": null,\n\t\n\t\n\t\t/**\n\t\t * This function is called on every 'draw' event, and allows you to\n\t\t * dynamically modify any aspect you want about the created DOM.\n\t\t *  @type function\n\t\t *  @param {object} settings DataTables settings object\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.drawCallback\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"drawCallback\": function( settings ) {\n\t\t *          alert( 'DataTables has redrawn the table' );\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnDrawCallback\": null,\n\t\n\t\n\t\t/**\n\t\t * Identical to fnHeaderCallback() but for the table footer this function\n\t\t * allows you to modify the table footer on every 'draw' event.\n\t\t *  @type function\n\t\t *  @param {node} foot \"TR\" element for the footer\n\t\t *  @param {array} data Full table data (as derived from the original HTML)\n\t\t *  @param {int} start Index for the current display starting point in the\n\t\t *    display array\n\t\t *  @param {int} end Index for the current display ending point in the\n\t\t *    display array\n\t\t *  @param {array int} display Index array to translate the visual position\n\t\t *    to the full data array\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.footerCallback\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"footerCallback\": function( tfoot, data, start, end, display ) {\n\t\t *          tfoot.getElementsByTagName('th')[0].innerHTML = \"Starting index is \"+start;\n\t\t *        }\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"fnFooterCallback\": null,\n\t\n\t\n\t\t/**\n\t\t * When rendering large numbers in the information element for the table\n\t\t * (i.e. \"Showing 1 to 10 of 57 entries\") DataTables will render large numbers\n\t\t * to have a comma separator for the 'thousands' units (e.g. 1 million is\n\t\t * rendered as \"1,000,000\") to help readability for the end user. This\n\t\t * function will override the default method DataTables uses.\n\t\t *  @type function\n\t\t *  @member\n\t\t *  @param {int} toFormat number to be formatted\n\t\t *  @returns {string} formatted string for DataTables to show the number\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.formatNumber\n\t\t *\n\t\t *  @example\n\t\t *    // Format a number using a single quote for the separator (note that\n\t\t *    // this can also be done with the language.thousands option)\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"formatNumber\": function ( toFormat ) {\n\t\t *          return toFormat.toString().replace(\n\t\t *            /\\B(?=(\\d{3})+(?!\\d))/g, \"'\"\n\t\t *          );\n\t\t *        };\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnFormatNumber\": function ( toFormat ) {\n\t\t\treturn toFormat.toString().replace(\n\t\t\t\t/\\B(?=(\\d{3})+(?!\\d))/g,\n\t\t\t\tthis.oLanguage.sThousands\n\t\t\t);\n\t\t},\n\t\n\t\n\t\t/**\n\t\t * This function is called on every 'draw' event, and allows you to\n\t\t * dynamically modify the header row. This can be used to calculate and\n\t\t * display useful information about the table.\n\t\t *  @type function\n\t\t *  @param {node} head \"TR\" element for the header\n\t\t *  @param {array} data Full table data (as derived from the original HTML)\n\t\t *  @param {int} start Index for the current display starting point in the\n\t\t *    display array\n\t\t *  @param {int} end Index for the current display ending point in the\n\t\t *    display array\n\t\t *  @param {array int} display Index array to translate the visual position\n\t\t *    to the full data array\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.headerCallback\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"fheaderCallback\": function( head, data, start, end, display ) {\n\t\t *          head.getElementsByTagName('th')[0].innerHTML = \"Displaying \"+(end-start)+\" records\";\n\t\t *        }\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"fnHeaderCallback\": null,\n\t\n\t\n\t\t/**\n\t\t * The information element can be used to convey information about the current\n\t\t * state of the table. Although the internationalisation options presented by\n\t\t * DataTables are quite capable of dealing with most customisations, there may\n\t\t * be times where you wish to customise the string further. This callback\n\t\t * allows you to do exactly that.\n\t\t *  @type function\n\t\t *  @param {object} oSettings DataTables settings object\n\t\t *  @param {int} start Starting position in data for the draw\n\t\t *  @param {int} end End position in data for the draw\n\t\t *  @param {int} max Total number of rows in the table (regardless of\n\t\t *    filtering)\n\t\t *  @param {int} total Total number of rows in the data set, after filtering\n\t\t *  @param {string} pre The string that DataTables has formatted using it's\n\t\t *    own rules\n\t\t *  @returns {string} The string to be displayed in the information element.\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.infoCallback\n\t\t *\n\t\t *  @example\n\t\t *    $('#example').dataTable( {\n\t\t *      \"infoCallback\": function( settings, start, end, max, total, pre ) {\n\t\t *        return start +\" to \"+ end;\n\t\t *      }\n\t\t *    } );\n\t\t */\n\t\t\"fnInfoCallback\": null,\n\t\n\t\n\t\t/**\n\t\t * Called when the table has been initialised. Normally DataTables will\n\t\t * initialise sequentially and there will be no need for this function,\n\t\t * however, this does not hold true when using external language information\n\t\t * since that is obtained using an async XHR call.\n\t\t *  @type function\n\t\t *  @param {object} settings DataTables settings object\n\t\t *  @param {object} json The JSON object request from the server - only\n\t\t *    present if client-side Ajax sourced data is used\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.initComplete\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"initComplete\": function(settings, json) {\n\t\t *          alert( 'DataTables has finished its initialisation.' );\n\t\t *        }\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"fnInitComplete\": null,\n\t\n\t\n\t\t/**\n\t\t * Called at the very start of each table draw and can be used to cancel the\n\t\t * draw by returning false, any other return (including undefined) results in\n\t\t * the full draw occurring).\n\t\t *  @type function\n\t\t *  @param {object} settings DataTables settings object\n\t\t *  @returns {boolean} False will cancel the draw, anything else (including no\n\t\t *    return) will allow it to complete.\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.preDrawCallback\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"preDrawCallback\": function( settings ) {\n\t\t *          if ( $('#test').val() == 1 ) {\n\t\t *            return false;\n\t\t *          }\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnPreDrawCallback\": null,\n\t\n\t\n\t\t/**\n\t\t * This function allows you to 'post process' each row after it have been\n\t\t * generated for each table draw, but before it is rendered on screen. This\n\t\t * function might be used for setting the row class name etc.\n\t\t *  @type function\n\t\t *  @param {node} row \"TR\" element for the current row\n\t\t *  @param {array} data Raw data array for this row\n\t\t *  @param {int} displayIndex The display index for the current table draw\n\t\t *  @param {int} displayIndexFull The index of the data in the full list of\n\t\t *    rows (after filtering)\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.rowCallback\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"rowCallback\": function( row, data, displayIndex, displayIndexFull ) {\n\t\t *          // Bold the grade for all 'A' grade browsers\n\t\t *          if ( data[4] == \"A\" ) {\n\t\t *            $('td:eq(4)', row).html( '<b>A</b>' );\n\t\t *          }\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnRowCallback\": null,\n\t\n\t\n\t\t/**\n\t\t * __Deprecated__ The functionality provided by this parameter has now been\n\t\t * superseded by that provided through `ajax`, which should be used instead.\n\t\t *\n\t\t * This parameter allows you to override the default function which obtains\n\t\t * the data from the server so something more suitable for your application.\n\t\t * For example you could use POST data, or pull information from a Gears or\n\t\t * AIR database.\n\t\t *  @type function\n\t\t *  @member\n\t\t *  @param {string} source HTTP source to obtain the data from (`ajax`)\n\t\t *  @param {array} data A key/value pair object containing the data to send\n\t\t *    to the server\n\t\t *  @param {function} callback to be called on completion of the data get\n\t\t *    process that will draw the data on the page.\n\t\t *  @param {object} settings DataTables settings object\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @dtopt Server-side\n\t\t *  @name DataTable.defaults.serverData\n\t\t *\n\t\t *  @deprecated 1.10. Please use `ajax` for this functionality now.\n\t\t */\n\t\t\"fnServerData\": null,\n\t\n\t\n\t\t/**\n\t\t * __Deprecated__ The functionality provided by this parameter has now been\n\t\t * superseded by that provided through `ajax`, which should be used instead.\n\t\t *\n\t\t *  It is often useful to send extra data to the server when making an Ajax\n\t\t * request - for example custom filtering information, and this callback\n\t\t * function makes it trivial to send extra information to the server. The\n\t\t * passed in parameter is the data set that has been constructed by\n\t\t * DataTables, and you can add to this or modify it as you require.\n\t\t *  @type function\n\t\t *  @param {array} data Data array (array of objects which are name/value\n\t\t *    pairs) that has been constructed by DataTables and will be sent to the\n\t\t *    server. In the case of Ajax sourced data with server-side processing\n\t\t *    this will be an empty array, for server-side processing there will be a\n\t\t *    significant number of parameters!\n\t\t *  @returns {undefined} Ensure that you modify the data array passed in,\n\t\t *    as this is passed by reference.\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @dtopt Server-side\n\t\t *  @name DataTable.defaults.serverParams\n\t\t *\n\t\t *  @deprecated 1.10. Please use `ajax` for this functionality now.\n\t\t */\n\t\t\"fnServerParams\": null,\n\t\n\t\n\t\t/**\n\t\t * Load the table state. With this function you can define from where, and how, the\n\t\t * state of a table is loaded. By default DataTables will load from `localStorage`\n\t\t * but you might wish to use a server-side database or cookies.\n\t\t *  @type function\n\t\t *  @member\n\t\t *  @param {object} settings DataTables settings object\n\t\t *  @return {object} The DataTables state object to be loaded\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.stateLoadCallback\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stateSave\": true,\n\t\t *        \"stateLoadCallback\": function (settings) {\n\t\t *          var o;\n\t\t *\n\t\t *          // Send an Ajax request to the server to get the data. Note that\n\t\t *          // this is a synchronous request.\n\t\t *          $.ajax( {\n\t\t *            \"url\": \"/state_load\",\n\t\t *            \"async\": false,\n\t\t *            \"dataType\": \"json\",\n\t\t *            \"success\": function (json) {\n\t\t *              o = json;\n\t\t *            }\n\t\t *          } );\n\t\t *\n\t\t *          return o;\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnStateLoadCallback\": function ( settings ) {\n\t\t\ttry {\n\t\t\t\treturn JSON.parse(\n\t\t\t\t\t(settings.iStateDuration === -1 ? sessionStorage : localStorage).getItem(\n\t\t\t\t\t\t'DataTables_'+settings.sInstance+'_'+location.pathname\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t} catch (e) {}\n\t\t},\n\t\n\t\n\t\t/**\n\t\t * Callback which allows modification of the saved state prior to loading that state.\n\t\t * This callback is called when the table is loading state from the stored data, but\n\t\t * prior to the settings object being modified by the saved state. Note that for\n\t\t * plug-in authors, you should use the `stateLoadParams` event to load parameters for\n\t\t * a plug-in.\n\t\t *  @type function\n\t\t *  @param {object} settings DataTables settings object\n\t\t *  @param {object} data The state object that is to be loaded\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.stateLoadParams\n\t\t *\n\t\t *  @example\n\t\t *    // Remove a saved filter, so filtering is never loaded\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stateSave\": true,\n\t\t *        \"stateLoadParams\": function (settings, data) {\n\t\t *          data.oSearch.sSearch = \"\";\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Disallow state loading by returning false\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stateSave\": true,\n\t\t *        \"stateLoadParams\": function (settings, data) {\n\t\t *          return false;\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnStateLoadParams\": null,\n\t\n\t\n\t\t/**\n\t\t * Callback that is called when the state has been loaded from the state saving method\n\t\t * and the DataTables settings object has been modified as a result of the loaded state.\n\t\t *  @type function\n\t\t *  @param {object} settings DataTables settings object\n\t\t *  @param {object} data The state object that was loaded\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.stateLoaded\n\t\t *\n\t\t *  @example\n\t\t *    // Show an alert with the filtering value that was saved\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stateSave\": true,\n\t\t *        \"stateLoaded\": function (settings, data) {\n\t\t *          alert( 'Saved filter was: '+data.oSearch.sSearch );\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnStateLoaded\": null,\n\t\n\t\n\t\t/**\n\t\t * Save the table state. This function allows you to define where and how the state\n\t\t * information for the table is stored By default DataTables will use `localStorage`\n\t\t * but you might wish to use a server-side database or cookies.\n\t\t *  @type function\n\t\t *  @member\n\t\t *  @param {object} settings DataTables settings object\n\t\t *  @param {object} data The state object to be saved\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.stateSaveCallback\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stateSave\": true,\n\t\t *        \"stateSaveCallback\": function (settings, data) {\n\t\t *          // Send an Ajax request to the server with the state object\n\t\t *          $.ajax( {\n\t\t *            \"url\": \"/state_save\",\n\t\t *            \"data\": data,\n\t\t *            \"dataType\": \"json\",\n\t\t *            \"method\": \"POST\"\n\t\t *            \"success\": function () {}\n\t\t *          } );\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnStateSaveCallback\": function ( settings, data ) {\n\t\t\ttry {\n\t\t\t\t(settings.iStateDuration === -1 ? sessionStorage : localStorage).setItem(\n\t\t\t\t\t'DataTables_'+settings.sInstance+'_'+location.pathname,\n\t\t\t\t\tJSON.stringify( data )\n\t\t\t\t);\n\t\t\t} catch (e) {}\n\t\t},\n\t\n\t\n\t\t/**\n\t\t * Callback which allows modification of the state to be saved. Called when the table\n\t\t * has changed state a new state save is required. This method allows modification of\n\t\t * the state saving object prior to actually doing the save, including addition or\n\t\t * other state properties or modification. Note that for plug-in authors, you should\n\t\t * use the `stateSaveParams` event to save parameters for a plug-in.\n\t\t *  @type function\n\t\t *  @param {object} settings DataTables settings object\n\t\t *  @param {object} data The state object to be saved\n\t\t *\n\t\t *  @dtopt Callbacks\n\t\t *  @name DataTable.defaults.stateSaveParams\n\t\t *\n\t\t *  @example\n\t\t *    // Remove a saved filter, so filtering is never saved\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stateSave\": true,\n\t\t *        \"stateSaveParams\": function (settings, data) {\n\t\t *          data.oSearch.sSearch = \"\";\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"fnStateSaveParams\": null,\n\t\n\t\n\t\t/**\n\t\t * Duration for which the saved state information is considered valid. After this period\n\t\t * has elapsed the state will be returned to the default.\n\t\t * Value is given in seconds.\n\t\t *  @type int\n\t\t *  @default 7200 <i>(2 hours)</i>\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.stateDuration\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"stateDuration\": 60*60*24; // 1 day\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"iStateDuration\": 7200,\n\t\n\t\n\t\t/**\n\t\t * When enabled DataTables will not make a request to the server for the first\n\t\t * page draw - rather it will use the data already on the page (no sorting etc\n\t\t * will be applied to it), thus saving on an XHR at load time. `deferLoading`\n\t\t * is used to indicate that deferred loading is required, but it is also used\n\t\t * to tell DataTables how many records there are in the full table (allowing\n\t\t * the information element and pagination to be displayed correctly). In the case\n\t\t * where a filtering is applied to the table on initial load, this can be\n\t\t * indicated by giving the parameter as an array, where the first element is\n\t\t * the number of records available after filtering and the second element is the\n\t\t * number of records without filtering (allowing the table information element\n\t\t * to be shown correctly).\n\t\t *  @type int | array\n\t\t *  @default null\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.deferLoading\n\t\t *\n\t\t *  @example\n\t\t *    // 57 records available in the table, no filtering applied\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"serverSide\": true,\n\t\t *        \"ajax\": \"scripts/server_processing.php\",\n\t\t *        \"deferLoading\": 57\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // 57 records after filtering, 100 without filtering (an initial filter applied)\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"serverSide\": true,\n\t\t *        \"ajax\": \"scripts/server_processing.php\",\n\t\t *        \"deferLoading\": [ 57, 100 ],\n\t\t *        \"search\": {\n\t\t *          \"search\": \"my_filter\"\n\t\t *        }\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"iDeferLoading\": null,\n\t\n\t\n\t\t/**\n\t\t * Number of rows to display on a single page when using pagination. If\n\t\t * feature enabled (`lengthChange`) then the end user will be able to override\n\t\t * this to a custom setting using a pop-up menu.\n\t\t *  @type int\n\t\t *  @default 10\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.pageLength\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"pageLength\": 50\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"iDisplayLength\": 10,\n\t\n\t\n\t\t/**\n\t\t * Define the starting point for data display when using DataTables with\n\t\t * pagination. Note that this parameter is the number of records, rather than\n\t\t * the page number, so if you have 10 records per page and want to start on\n\t\t * the third page, it should be \"20\".\n\t\t *  @type int\n\t\t *  @default 0\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.displayStart\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"displayStart\": 20\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"iDisplayStart\": 0,\n\t\n\t\n\t\t/**\n\t\t * By default DataTables allows keyboard navigation of the table (sorting, paging,\n\t\t * and filtering) by adding a `tabindex` attribute to the required elements. This\n\t\t * allows you to tab through the controls and press the enter key to activate them.\n\t\t * The tabindex is default 0, meaning that the tab follows the flow of the document.\n\t\t * You can overrule this using this parameter if you wish. Use a value of -1 to\n\t\t * disable built-in keyboard navigation.\n\t\t *  @type int\n\t\t *  @default 0\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.tabIndex\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"tabIndex\": 1\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"iTabIndex\": 0,\n\t\n\t\n\t\t/**\n\t\t * Classes that DataTables assigns to the various components and features\n\t\t * that it adds to the HTML table. This allows classes to be configured\n\t\t * during initialisation in addition to through the static\n\t\t * {@link DataTable.ext.oStdClasses} object).\n\t\t *  @namespace\n\t\t *  @name DataTable.defaults.classes\n\t\t */\n\t\t\"oClasses\": {},\n\t\n\t\n\t\t/**\n\t\t * All strings that DataTables uses in the user interface that it creates\n\t\t * are defined in this object, allowing you to modified them individually or\n\t\t * completely replace them all as required.\n\t\t *  @namespace\n\t\t *  @name DataTable.defaults.language\n\t\t */\n\t\t\"oLanguage\": {\n\t\t\t/**\n\t\t\t * Strings that are used for WAI-ARIA labels and controls only (these are not\n\t\t\t * actually visible on the page, but will be read by screenreaders, and thus\n\t\t\t * must be internationalised as well).\n\t\t\t *  @namespace\n\t\t\t *  @name DataTable.defaults.language.aria\n\t\t\t */\n\t\t\t\"oAria\": {\n\t\t\t\t/**\n\t\t\t\t * ARIA label that is added to the table headers when the column may be\n\t\t\t\t * sorted ascending by activing the column (click or return when focused).\n\t\t\t\t * Note that the column header is prefixed to this string.\n\t\t\t\t *  @type string\n\t\t\t\t *  @default : activate to sort column ascending\n\t\t\t\t *\n\t\t\t\t *  @dtopt Language\n\t\t\t\t *  @name DataTable.defaults.language.aria.sortAscending\n\t\t\t\t *\n\t\t\t\t *  @example\n\t\t\t\t *    $(document).ready( function() {\n\t\t\t\t *      $('#example').dataTable( {\n\t\t\t\t *        \"language\": {\n\t\t\t\t *          \"aria\": {\n\t\t\t\t *            \"sortAscending\": \" - click/return to sort ascending\"\n\t\t\t\t *          }\n\t\t\t\t *        }\n\t\t\t\t *      } );\n\t\t\t\t *    } );\n\t\t\t\t */\n\t\t\t\t\"sSortAscending\": \": activate to sort column ascending\",\n\t\n\t\t\t\t/**\n\t\t\t\t * ARIA label that is added to the table headers when the column may be\n\t\t\t\t * sorted descending by activing the column (click or return when focused).\n\t\t\t\t * Note that the column header is prefixed to this string.\n\t\t\t\t *  @type string\n\t\t\t\t *  @default : activate to sort column ascending\n\t\t\t\t *\n\t\t\t\t *  @dtopt Language\n\t\t\t\t *  @name DataTable.defaults.language.aria.sortDescending\n\t\t\t\t *\n\t\t\t\t *  @example\n\t\t\t\t *    $(document).ready( function() {\n\t\t\t\t *      $('#example').dataTable( {\n\t\t\t\t *        \"language\": {\n\t\t\t\t *          \"aria\": {\n\t\t\t\t *            \"sortDescending\": \" - click/return to sort descending\"\n\t\t\t\t *          }\n\t\t\t\t *        }\n\t\t\t\t *      } );\n\t\t\t\t *    } );\n\t\t\t\t */\n\t\t\t\t\"sSortDescending\": \": activate to sort column descending\"\n\t\t\t},\n\t\n\t\t\t/**\n\t\t\t * Pagination string used by DataTables for the built-in pagination\n\t\t\t * control types.\n\t\t\t *  @namespace\n\t\t\t *  @name DataTable.defaults.language.paginate\n\t\t\t */\n\t\t\t\"oPaginate\": {\n\t\t\t\t/**\n\t\t\t\t * Text to use when using the 'full_numbers' type of pagination for the\n\t\t\t\t * button to take the user to the first page.\n\t\t\t\t *  @type string\n\t\t\t\t *  @default First\n\t\t\t\t *\n\t\t\t\t *  @dtopt Language\n\t\t\t\t *  @name DataTable.defaults.language.paginate.first\n\t\t\t\t *\n\t\t\t\t *  @example\n\t\t\t\t *    $(document).ready( function() {\n\t\t\t\t *      $('#example').dataTable( {\n\t\t\t\t *        \"language\": {\n\t\t\t\t *          \"paginate\": {\n\t\t\t\t *            \"first\": \"First page\"\n\t\t\t\t *          }\n\t\t\t\t *        }\n\t\t\t\t *      } );\n\t\t\t\t *    } );\n\t\t\t\t */\n\t\t\t\t\"sFirst\": \"First\",\n\t\n\t\n\t\t\t\t/**\n\t\t\t\t * Text to use when using the 'full_numbers' type of pagination for the\n\t\t\t\t * button to take the user to the last page.\n\t\t\t\t *  @type string\n\t\t\t\t *  @default Last\n\t\t\t\t *\n\t\t\t\t *  @dtopt Language\n\t\t\t\t *  @name DataTable.defaults.language.paginate.last\n\t\t\t\t *\n\t\t\t\t *  @example\n\t\t\t\t *    $(document).ready( function() {\n\t\t\t\t *      $('#example').dataTable( {\n\t\t\t\t *        \"language\": {\n\t\t\t\t *          \"paginate\": {\n\t\t\t\t *            \"last\": \"Last page\"\n\t\t\t\t *          }\n\t\t\t\t *        }\n\t\t\t\t *      } );\n\t\t\t\t *    } );\n\t\t\t\t */\n\t\t\t\t\"sLast\": \"Last\",\n\t\n\t\n\t\t\t\t/**\n\t\t\t\t * Text to use for the 'next' pagination button (to take the user to the\n\t\t\t\t * next page).\n\t\t\t\t *  @type string\n\t\t\t\t *  @default Next\n\t\t\t\t *\n\t\t\t\t *  @dtopt Language\n\t\t\t\t *  @name DataTable.defaults.language.paginate.next\n\t\t\t\t *\n\t\t\t\t *  @example\n\t\t\t\t *    $(document).ready( function() {\n\t\t\t\t *      $('#example').dataTable( {\n\t\t\t\t *        \"language\": {\n\t\t\t\t *          \"paginate\": {\n\t\t\t\t *            \"next\": \"Next page\"\n\t\t\t\t *          }\n\t\t\t\t *        }\n\t\t\t\t *      } );\n\t\t\t\t *    } );\n\t\t\t\t */\n\t\t\t\t\"sNext\": \"Next\",\n\t\n\t\n\t\t\t\t/**\n\t\t\t\t * Text to use for the 'previous' pagination button (to take the user to\n\t\t\t\t * the previous page).\n\t\t\t\t *  @type string\n\t\t\t\t *  @default Previous\n\t\t\t\t *\n\t\t\t\t *  @dtopt Language\n\t\t\t\t *  @name DataTable.defaults.language.paginate.previous\n\t\t\t\t *\n\t\t\t\t *  @example\n\t\t\t\t *    $(document).ready( function() {\n\t\t\t\t *      $('#example').dataTable( {\n\t\t\t\t *        \"language\": {\n\t\t\t\t *          \"paginate\": {\n\t\t\t\t *            \"previous\": \"Previous page\"\n\t\t\t\t *          }\n\t\t\t\t *        }\n\t\t\t\t *      } );\n\t\t\t\t *    } );\n\t\t\t\t */\n\t\t\t\t\"sPrevious\": \"Previous\"\n\t\t\t},\n\t\n\t\t\t/**\n\t\t\t * This string is shown in preference to `zeroRecords` when the table is\n\t\t\t * empty of data (regardless of filtering). Note that this is an optional\n\t\t\t * parameter - if it is not given, the value of `zeroRecords` will be used\n\t\t\t * instead (either the default or given value).\n\t\t\t *  @type string\n\t\t\t *  @default No data available in table\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.emptyTable\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"emptyTable\": \"No data available in table\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sEmptyTable\": \"No data available in table\",\n\t\n\t\n\t\t\t/**\n\t\t\t * This string gives information to the end user about the information\n\t\t\t * that is current on display on the page. The following tokens can be\n\t\t\t * used in the string and will be dynamically replaced as the table\n\t\t\t * display updates. This tokens can be placed anywhere in the string, or\n\t\t\t * removed as needed by the language requires:\n\t\t\t *\n\t\t\t * * `\\_START\\_` - Display index of the first record on the current page\n\t\t\t * * `\\_END\\_` - Display index of the last record on the current page\n\t\t\t * * `\\_TOTAL\\_` - Number of records in the table after filtering\n\t\t\t * * `\\_MAX\\_` - Number of records in the table without filtering\n\t\t\t * * `\\_PAGE\\_` - Current page number\n\t\t\t * * `\\_PAGES\\_` - Total number of pages of data in the table\n\t\t\t *\n\t\t\t *  @type string\n\t\t\t *  @default Showing _START_ to _END_ of _TOTAL_ entries\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.info\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"info\": \"Showing page _PAGE_ of _PAGES_\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sInfo\": \"Showing _START_ to _END_ of _TOTAL_ entries\",\n\t\n\t\n\t\t\t/**\n\t\t\t * Display information string for when the table is empty. Typically the\n\t\t\t * format of this string should match `info`.\n\t\t\t *  @type string\n\t\t\t *  @default Showing 0 to 0 of 0 entries\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.infoEmpty\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"infoEmpty\": \"No entries to show\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sInfoEmpty\": \"Showing 0 to 0 of 0 entries\",\n\t\n\t\n\t\t\t/**\n\t\t\t * When a user filters the information in a table, this string is appended\n\t\t\t * to the information (`info`) to give an idea of how strong the filtering\n\t\t\t * is. The variable _MAX_ is dynamically updated.\n\t\t\t *  @type string\n\t\t\t *  @default (filtered from _MAX_ total entries)\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.infoFiltered\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"infoFiltered\": \" - filtering from _MAX_ records\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sInfoFiltered\": \"(filtered from _MAX_ total entries)\",\n\t\n\t\n\t\t\t/**\n\t\t\t * If can be useful to append extra information to the info string at times,\n\t\t\t * and this variable does exactly that. This information will be appended to\n\t\t\t * the `info` (`infoEmpty` and `infoFiltered` in whatever combination they are\n\t\t\t * being used) at all times.\n\t\t\t *  @type string\n\t\t\t *  @default <i>Empty string</i>\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.infoPostFix\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"infoPostFix\": \"All records shown are derived from real information.\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sInfoPostFix\": \"\",\n\t\n\t\n\t\t\t/**\n\t\t\t * This decimal place operator is a little different from the other\n\t\t\t * language options since DataTables doesn't output floating point\n\t\t\t * numbers, so it won't ever use this for display of a number. Rather,\n\t\t\t * what this parameter does is modify the sort methods of the table so\n\t\t\t * that numbers which are in a format which has a character other than\n\t\t\t * a period (`.`) as a decimal place will be sorted numerically.\n\t\t\t *\n\t\t\t * Note that numbers with different decimal places cannot be shown in\n\t\t\t * the same table and still be sortable, the table must be consistent.\n\t\t\t * However, multiple different tables on the page can use different\n\t\t\t * decimal place characters.\n\t\t\t *  @type string\n\t\t\t *  @default \n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.decimal\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"decimal\": \",\"\n\t\t\t *          \"thousands\": \".\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sDecimal\": \"\",\n\t\n\t\n\t\t\t/**\n\t\t\t * DataTables has a build in number formatter (`formatNumber`) which is\n\t\t\t * used to format large numbers that are used in the table information.\n\t\t\t * By default a comma is used, but this can be trivially changed to any\n\t\t\t * character you wish with this parameter.\n\t\t\t *  @type string\n\t\t\t *  @default ,\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.thousands\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"thousands\": \"'\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sThousands\": \",\",\n\t\n\t\n\t\t\t/**\n\t\t\t * Detail the action that will be taken when the drop down menu for the\n\t\t\t * pagination length option is changed. The '_MENU_' variable is replaced\n\t\t\t * with a default select list of 10, 25, 50 and 100, and can be replaced\n\t\t\t * with a custom select box if required.\n\t\t\t *  @type string\n\t\t\t *  @default Show _MENU_ entries\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.lengthMenu\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    // Language change only\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"lengthMenu\": \"Display _MENU_ records\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    // Language and options change\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"lengthMenu\": 'Display <select>'+\n\t\t\t *            '<option value=\"10\">10</option>'+\n\t\t\t *            '<option value=\"20\">20</option>'+\n\t\t\t *            '<option value=\"30\">30</option>'+\n\t\t\t *            '<option value=\"40\">40</option>'+\n\t\t\t *            '<option value=\"50\">50</option>'+\n\t\t\t *            '<option value=\"-1\">All</option>'+\n\t\t\t *            '</select> records'\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sLengthMenu\": \"Show _MENU_ entries\",\n\t\n\t\n\t\t\t/**\n\t\t\t * When using Ajax sourced data and during the first draw when DataTables is\n\t\t\t * gathering the data, this message is shown in an empty row in the table to\n\t\t\t * indicate to the end user the the data is being loaded. Note that this\n\t\t\t * parameter is not used when loading data by server-side processing, just\n\t\t\t * Ajax sourced data with client-side processing.\n\t\t\t *  @type string\n\t\t\t *  @default Loading...\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.loadingRecords\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"loadingRecords\": \"Please wait - loading...\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sLoadingRecords\": \"Loading...\",\n\t\n\t\n\t\t\t/**\n\t\t\t * Text which is displayed when the table is processing a user action\n\t\t\t * (usually a sort command or similar).\n\t\t\t *  @type string\n\t\t\t *  @default Processing...\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.processing\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"processing\": \"DataTables is currently busy\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sProcessing\": \"Processing...\",\n\t\n\t\n\t\t\t/**\n\t\t\t * Details the actions that will be taken when the user types into the\n\t\t\t * filtering input text box. The variable \"_INPUT_\", if used in the string,\n\t\t\t * is replaced with the HTML text box for the filtering input allowing\n\t\t\t * control over where it appears in the string. If \"_INPUT_\" is not given\n\t\t\t * then the input box is appended to the string automatically.\n\t\t\t *  @type string\n\t\t\t *  @default Search:\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.search\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    // Input text box will be appended at the end automatically\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"search\": \"Filter records:\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    // Specify where the filter should appear\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"search\": \"Apply filter _INPUT_ to table\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sSearch\": \"Search:\",\n\t\n\t\n\t\t\t/**\n\t\t\t * Assign a `placeholder` attribute to the search `input` element\n\t\t\t *  @type string\n\t\t\t *  @default \n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.searchPlaceholder\n\t\t\t */\n\t\t\t\"sSearchPlaceholder\": \"\",\n\t\n\t\n\t\t\t/**\n\t\t\t * All of the language information can be stored in a file on the\n\t\t\t * server-side, which DataTables will look up if this parameter is passed.\n\t\t\t * It must store the URL of the language file, which is in a JSON format,\n\t\t\t * and the object has the same properties as the oLanguage object in the\n\t\t\t * initialiser object (i.e. the above parameters). Please refer to one of\n\t\t\t * the example language files to see how this works in action.\n\t\t\t *  @type string\n\t\t\t *  @default <i>Empty string - i.e. disabled</i>\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.url\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"url\": \"http://www.sprymedia.co.uk/dataTables/lang.txt\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sUrl\": \"\",\n\t\n\t\n\t\t\t/**\n\t\t\t * Text shown inside the table records when the is no information to be\n\t\t\t * displayed after filtering. `emptyTable` is shown when there is simply no\n\t\t\t * information in the table at all (regardless of filtering).\n\t\t\t *  @type string\n\t\t\t *  @default No matching records found\n\t\t\t *\n\t\t\t *  @dtopt Language\n\t\t\t *  @name DataTable.defaults.language.zeroRecords\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $(document).ready( function() {\n\t\t\t *      $('#example').dataTable( {\n\t\t\t *        \"language\": {\n\t\t\t *          \"zeroRecords\": \"No records to display\"\n\t\t\t *        }\n\t\t\t *      } );\n\t\t\t *    } );\n\t\t\t */\n\t\t\t\"sZeroRecords\": \"No matching records found\"\n\t\t},\n\t\n\t\n\t\t/**\n\t\t * This parameter allows you to have define the global filtering state at\n\t\t * initialisation time. As an object the `search` parameter must be\n\t\t * defined, but all other parameters are optional. When `regex` is true,\n\t\t * the search string will be treated as a regular expression, when false\n\t\t * (default) it will be treated as a straight string. When `smart`\n\t\t * DataTables will use it's smart filtering methods (to word match at\n\t\t * any point in the data), when false this will not be done.\n\t\t *  @namespace\n\t\t *  @extends DataTable.models.oSearch\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.search\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"search\": {\"search\": \"Initial search\"}\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"oSearch\": $.extend( {}, DataTable.models.oSearch ),\n\t\n\t\n\t\t/**\n\t\t * __Deprecated__ The functionality provided by this parameter has now been\n\t\t * superseded by that provided through `ajax`, which should be used instead.\n\t\t *\n\t\t * By default DataTables will look for the property `data` (or `aaData` for\n\t\t * compatibility with DataTables 1.9-) when obtaining data from an Ajax\n\t\t * source or for server-side processing - this parameter allows that\n\t\t * property to be changed. You can use Javascript dotted object notation to\n\t\t * get a data source for multiple levels of nesting.\n\t\t *  @type string\n\t\t *  @default data\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @dtopt Server-side\n\t\t *  @name DataTable.defaults.ajaxDataProp\n\t\t *\n\t\t *  @deprecated 1.10. Please use `ajax` for this functionality now.\n\t\t */\n\t\t\"sAjaxDataProp\": \"data\",\n\t\n\t\n\t\t/**\n\t\t * __Deprecated__ The functionality provided by this parameter has now been\n\t\t * superseded by that provided through `ajax`, which should be used instead.\n\t\t *\n\t\t * You can instruct DataTables to load data from an external\n\t\t * source using this parameter (use aData if you want to pass data in you\n\t\t * already have). Simply provide a url a JSON object can be obtained from.\n\t\t *  @type string\n\t\t *  @default null\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @dtopt Server-side\n\t\t *  @name DataTable.defaults.ajaxSource\n\t\t *\n\t\t *  @deprecated 1.10. Please use `ajax` for this functionality now.\n\t\t */\n\t\t\"sAjaxSource\": null,\n\t\n\t\n\t\t/**\n\t\t * This initialisation variable allows you to specify exactly where in the\n\t\t * DOM you want DataTables to inject the various controls it adds to the page\n\t\t * (for example you might want the pagination controls at the top of the\n\t\t * table). DIV elements (with or without a custom class) can also be added to\n\t\t * aid styling. The follow syntax is used:\n\t\t *   <ul>\n\t\t *     <li>The following options are allowed:\n\t\t *       <ul>\n\t\t *         <li>'l' - Length changing</li>\n\t\t *         <li>'f' - Filtering input</li>\n\t\t *         <li>'t' - The table!</li>\n\t\t *         <li>'i' - Information</li>\n\t\t *         <li>'p' - Pagination</li>\n\t\t *         <li>'r' - pRocessing</li>\n\t\t *       </ul>\n\t\t *     </li>\n\t\t *     <li>The following constants are allowed:\n\t\t *       <ul>\n\t\t *         <li>'H' - jQueryUI theme \"header\" classes ('fg-toolbar ui-widget-header ui-corner-tl ui-corner-tr ui-helper-clearfix')</li>\n\t\t *         <li>'F' - jQueryUI theme \"footer\" classes ('fg-toolbar ui-widget-header ui-corner-bl ui-corner-br ui-helper-clearfix')</li>\n\t\t *       </ul>\n\t\t *     </li>\n\t\t *     <li>The following syntax is expected:\n\t\t *       <ul>\n\t\t *         <li>'&lt;' and '&gt;' - div elements</li>\n\t\t *         <li>'&lt;\"class\" and '&gt;' - div with a class</li>\n\t\t *         <li>'&lt;\"#id\" and '&gt;' - div with an ID</li>\n\t\t *       </ul>\n\t\t *     </li>\n\t\t *     <li>Examples:\n\t\t *       <ul>\n\t\t *         <li>'&lt;\"wrapper\"flipt&gt;'</li>\n\t\t *         <li>'&lt;lf&lt;t&gt;ip&gt;'</li>\n\t\t *       </ul>\n\t\t *     </li>\n\t\t *   </ul>\n\t\t *  @type string\n\t\t *  @default lfrtip <i>(when `jQueryUI` is false)</i> <b>or</b>\n\t\t *    <\"H\"lfr>t<\"F\"ip> <i>(when `jQueryUI` is true)</i>\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.dom\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"dom\": '&lt;\"top\"i&gt;rt&lt;\"bottom\"flp&gt;&lt;\"clear\"&gt;'\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sDom\": \"lfrtip\",\n\t\n\t\n\t\t/**\n\t\t * Search delay option. This will throttle full table searches that use the\n\t\t * DataTables provided search input element (it does not effect calls to\n\t\t * `dt-api search()`, providing a delay before the search is made.\n\t\t *  @type integer\n\t\t *  @default 0\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.searchDelay\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"searchDelay\": 200\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"searchDelay\": null,\n\t\n\t\n\t\t/**\n\t\t * DataTables features four different built-in options for the buttons to\n\t\t * display for pagination control:\n\t\t *\n\t\t * * `simple` - 'Previous' and 'Next' buttons only\n\t\t * * 'simple_numbers` - 'Previous' and 'Next' buttons, plus page numbers\n\t\t * * `full` - 'First', 'Previous', 'Next' and 'Last' buttons\n\t\t * * `full_numbers` - 'First', 'Previous', 'Next' and 'Last' buttons, plus\n\t\t *   page numbers\n\t\t *  \n\t\t * Further methods can be added using {@link DataTable.ext.oPagination}.\n\t\t *  @type string\n\t\t *  @default simple_numbers\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.pagingType\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"pagingType\": \"full_numbers\"\n\t\t *      } );\n\t\t *    } )\n\t\t */\n\t\t\"sPaginationType\": \"simple_numbers\",\n\t\n\t\n\t\t/**\n\t\t * Enable horizontal scrolling. When a table is too wide to fit into a\n\t\t * certain layout, or you have a large number of columns in the table, you\n\t\t * can enable x-scrolling to show the table in a viewport, which can be\n\t\t * scrolled. This property can be `true` which will allow the table to\n\t\t * scroll horizontally when needed, or any CSS unit, or a number (in which\n\t\t * case it will be treated as a pixel measurement). Setting as simply `true`\n\t\t * is recommended.\n\t\t *  @type boolean|string\n\t\t *  @default <i>blank string - i.e. disabled</i>\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.scrollX\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"scrollX\": true,\n\t\t *        \"scrollCollapse\": true\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sScrollX\": \"\",\n\t\n\t\n\t\t/**\n\t\t * This property can be used to force a DataTable to use more width than it\n\t\t * might otherwise do when x-scrolling is enabled. For example if you have a\n\t\t * table which requires to be well spaced, this parameter is useful for\n\t\t * \"over-sizing\" the table, and thus forcing scrolling. This property can by\n\t\t * any CSS unit, or a number (in which case it will be treated as a pixel\n\t\t * measurement).\n\t\t *  @type string\n\t\t *  @default <i>blank string - i.e. disabled</i>\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @name DataTable.defaults.scrollXInner\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"scrollX\": \"100%\",\n\t\t *        \"scrollXInner\": \"110%\"\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sScrollXInner\": \"\",\n\t\n\t\n\t\t/**\n\t\t * Enable vertical scrolling. Vertical scrolling will constrain the DataTable\n\t\t * to the given height, and enable scrolling for any data which overflows the\n\t\t * current viewport. This can be used as an alternative to paging to display\n\t\t * a lot of data in a small area (although paging and scrolling can both be\n\t\t * enabled at the same time). This property can be any CSS unit, or a number\n\t\t * (in which case it will be treated as a pixel measurement).\n\t\t *  @type string\n\t\t *  @default <i>blank string - i.e. disabled</i>\n\t\t *\n\t\t *  @dtopt Features\n\t\t *  @name DataTable.defaults.scrollY\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"scrollY\": \"200px\",\n\t\t *        \"paginate\": false\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sScrollY\": \"\",\n\t\n\t\n\t\t/**\n\t\t * __Deprecated__ The functionality provided by this parameter has now been\n\t\t * superseded by that provided through `ajax`, which should be used instead.\n\t\t *\n\t\t * Set the HTTP method that is used to make the Ajax call for server-side\n\t\t * processing or Ajax sourced data.\n\t\t *  @type string\n\t\t *  @default GET\n\t\t *\n\t\t *  @dtopt Options\n\t\t *  @dtopt Server-side\n\t\t *  @name DataTable.defaults.serverMethod\n\t\t *\n\t\t *  @deprecated 1.10. Please use `ajax` for this functionality now.\n\t\t */\n\t\t\"sServerMethod\": \"GET\",\n\t\n\t\n\t\t/**\n\t\t * DataTables makes use of renderers when displaying HTML elements for\n\t\t * a table. These renderers can be added or modified by plug-ins to\n\t\t * generate suitable mark-up for a site. For example the Bootstrap\n\t\t * integration plug-in for DataTables uses a paging button renderer to\n\t\t * display pagination buttons in the mark-up required by Bootstrap.\n\t\t *\n\t\t * For further information about the renderers available see\n\t\t * DataTable.ext.renderer\n\t\t *  @type string|object\n\t\t *  @default null\n\t\t *\n\t\t *  @name DataTable.defaults.renderer\n\t\t *\n\t\t */\n\t\t\"renderer\": null\n\t};\n\t\n\t_fnHungarianMap( DataTable.defaults );\n\t\n\t\n\t\n\t/*\n\t * Developer note - See note in model.defaults.js about the use of Hungarian\n\t * notation and camel case.\n\t */\n\t\n\t/**\n\t * Column options that can be given to DataTables at initialisation time.\n\t *  @namespace\n\t */\n\tDataTable.defaults.column = {\n\t\t/**\n\t\t * Define which column(s) an order will occur on for this column. This\n\t\t * allows a column's ordering to take multiple columns into account when\n\t\t * doing a sort or use the data from a different column. For example first\n\t\t * name / last name columns make sense to do a multi-column sort over the\n\t\t * two columns.\n\t\t *  @type array|int\n\t\t *  @default null <i>Takes the value of the column index automatically</i>\n\t\t *\n\t\t *  @name DataTable.defaults.column.orderData\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"orderData\": [ 0, 1 ], \"targets\": [ 0 ] },\n\t\t *          { \"orderData\": [ 1, 0 ], \"targets\": [ 1 ] },\n\t\t *          { \"orderData\": 2, \"targets\": [ 2 ] }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"orderData\": [ 0, 1 ] },\n\t\t *          { \"orderData\": [ 1, 0 ] },\n\t\t *          { \"orderData\": 2 },\n\t\t *          null,\n\t\t *          null\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"aDataSort\": null,\n\t\t\"iDataSort\": -1,\n\t\n\t\n\t\t/**\n\t\t * You can control the default ordering direction, and even alter the\n\t\t * behaviour of the sort handler (i.e. only allow ascending ordering etc)\n\t\t * using this parameter.\n\t\t *  @type array\n\t\t *  @default [ 'asc', 'desc' ]\n\t\t *\n\t\t *  @name DataTable.defaults.column.orderSequence\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"orderSequence\": [ \"asc\" ], \"targets\": [ 1 ] },\n\t\t *          { \"orderSequence\": [ \"desc\", \"asc\", \"asc\" ], \"targets\": [ 2 ] },\n\t\t *          { \"orderSequence\": [ \"desc\" ], \"targets\": [ 3 ] }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          null,\n\t\t *          { \"orderSequence\": [ \"asc\" ] },\n\t\t *          { \"orderSequence\": [ \"desc\", \"asc\", \"asc\" ] },\n\t\t *          { \"orderSequence\": [ \"desc\" ] },\n\t\t *          null\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"asSorting\": [ 'asc', 'desc' ],\n\t\n\t\n\t\t/**\n\t\t * Enable or disable filtering on the data in this column.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @name DataTable.defaults.column.searchable\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"searchable\": false, \"targets\": [ 0 ] }\n\t\t *        ] } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"searchable\": false },\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          null\n\t\t *        ] } );\n\t\t *    } );\n\t\t */\n\t\t\"bSearchable\": true,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable ordering on this column.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @name DataTable.defaults.column.orderable\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"orderable\": false, \"targets\": [ 0 ] }\n\t\t *        ] } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"orderable\": false },\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          null\n\t\t *        ] } );\n\t\t *    } );\n\t\t */\n\t\t\"bSortable\": true,\n\t\n\t\n\t\t/**\n\t\t * Enable or disable the display of this column.\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t *\n\t\t *  @name DataTable.defaults.column.visible\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"visible\": false, \"targets\": [ 0 ] }\n\t\t *        ] } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"visible\": false },\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          null\n\t\t *        ] } );\n\t\t *    } );\n\t\t */\n\t\t\"bVisible\": true,\n\t\n\t\n\t\t/**\n\t\t * Developer definable function that is called whenever a cell is created (Ajax source,\n\t\t * etc) or processed for input (DOM source). This can be used as a compliment to mRender\n\t\t * allowing you to modify the DOM element (add background colour for example) when the\n\t\t * element is available.\n\t\t *  @type function\n\t\t *  @param {element} td The TD node that has been created\n\t\t *  @param {*} cellData The Data for the cell\n\t\t *  @param {array|object} rowData The data for the whole row\n\t\t *  @param {int} row The row index for the aoData data store\n\t\t *  @param {int} col The column index for aoColumns\n\t\t *\n\t\t *  @name DataTable.defaults.column.createdCell\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [ {\n\t\t *          \"targets\": [3],\n\t\t *          \"createdCell\": function (td, cellData, rowData, row, col) {\n\t\t *            if ( cellData == \"1.7\" ) {\n\t\t *              $(td).css('color', 'blue')\n\t\t *            }\n\t\t *          }\n\t\t *        } ]\n\t\t *      });\n\t\t *    } );\n\t\t */\n\t\t\"fnCreatedCell\": null,\n\t\n\t\n\t\t/**\n\t\t * This parameter has been replaced by `data` in DataTables to ensure naming\n\t\t * consistency. `dataProp` can still be used, as there is backwards\n\t\t * compatibility in DataTables for this option, but it is strongly\n\t\t * recommended that you use `data` in preference to `dataProp`.\n\t\t *  @name DataTable.defaults.column.dataProp\n\t\t */\n\t\n\t\n\t\t/**\n\t\t * This property can be used to read data from any data source property,\n\t\t * including deeply nested objects / properties. `data` can be given in a\n\t\t * number of different ways which effect its behaviour:\n\t\t *\n\t\t * * `integer` - treated as an array index for the data source. This is the\n\t\t *   default that DataTables uses (incrementally increased for each column).\n\t\t * * `string` - read an object property from the data source. There are\n\t\t *   three 'special' options that can be used in the string to alter how\n\t\t *   DataTables reads the data from the source object:\n\t\t *    * `.` - Dotted Javascript notation. Just as you use a `.` in\n\t\t *      Javascript to read from nested objects, so to can the options\n\t\t *      specified in `data`. For example: `browser.version` or\n\t\t *      `browser.name`. If your object parameter name contains a period, use\n\t\t *      `\\\\` to escape it - i.e. `first\\\\.name`.\n\t\t *    * `[]` - Array notation. DataTables can automatically combine data\n\t\t *      from and array source, joining the data with the characters provided\n\t\t *      between the two brackets. For example: `name[, ]` would provide a\n\t\t *      comma-space separated list from the source array. If no characters\n\t\t *      are provided between the brackets, the original array source is\n\t\t *      returned.\n\t\t *    * `()` - Function notation. Adding `()` to the end of a parameter will\n\t\t *      execute a function of the name given. For example: `browser()` for a\n\t\t *      simple function on the data source, `browser.version()` for a\n\t\t *      function in a nested property or even `browser().version` to get an\n\t\t *      object property if the function called returns an object. Note that\n\t\t *      function notation is recommended for use in `render` rather than\n\t\t *      `data` as it is much simpler to use as a renderer.\n\t\t * * `null` - use the original data source for the row rather than plucking\n\t\t *   data directly from it. This action has effects on two other\n\t\t *   initialisation options:\n\t\t *    * `defaultContent` - When null is given as the `data` option and\n\t\t *      `defaultContent` is specified for the column, the value defined by\n\t\t *      `defaultContent` will be used for the cell.\n\t\t *    * `render` - When null is used for the `data` option and the `render`\n\t\t *      option is specified for the column, the whole data source for the\n\t\t *      row is used for the renderer.\n\t\t * * `function` - the function given will be executed whenever DataTables\n\t\t *   needs to set or get the data for a cell in the column. The function\n\t\t *   takes three parameters:\n\t\t *    * Parameters:\n\t\t *      * `{array|object}` The data source for the row\n\t\t *      * `{string}` The type call data requested - this will be 'set' when\n\t\t *        setting data or 'filter', 'display', 'type', 'sort' or undefined\n\t\t *        when gathering data. Note that when `undefined` is given for the\n\t\t *        type DataTables expects to get the raw data for the object back<\n\t\t *      * `{*}` Data to set when the second parameter is 'set'.\n\t\t *    * Return:\n\t\t *      * The return value from the function is not required when 'set' is\n\t\t *        the type of call, but otherwise the return is what will be used\n\t\t *        for the data requested.\n\t\t *\n\t\t * Note that `data` is a getter and setter option. If you just require\n\t\t * formatting of data for output, you will likely want to use `render` which\n\t\t * is simply a getter and thus simpler to use.\n\t\t *\n\t\t * Note that prior to DataTables 1.9.2 `data` was called `mDataProp`. The\n\t\t * name change reflects the flexibility of this property and is consistent\n\t\t * with the naming of mRender. If 'mDataProp' is given, then it will still\n\t\t * be used by DataTables, as it automatically maps the old name to the new\n\t\t * if required.\n\t\t *\n\t\t *  @type string|int|function|null\n\t\t *  @default null <i>Use automatically calculated column index</i>\n\t\t *\n\t\t *  @name DataTable.defaults.column.data\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Read table data from objects\n\t\t *    // JSON structure for each row:\n\t\t *    //   {\n\t\t *    //      \"engine\": {value},\n\t\t *    //      \"browser\": {value},\n\t\t *    //      \"platform\": {value},\n\t\t *    //      \"version\": {value},\n\t\t *    //      \"grade\": {value}\n\t\t *    //   }\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"ajaxSource\": \"sources/objects.txt\",\n\t\t *        \"columns\": [\n\t\t *          { \"data\": \"engine\" },\n\t\t *          { \"data\": \"browser\" },\n\t\t *          { \"data\": \"platform\" },\n\t\t *          { \"data\": \"version\" },\n\t\t *          { \"data\": \"grade\" }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Read information from deeply nested objects\n\t\t *    // JSON structure for each row:\n\t\t *    //   {\n\t\t *    //      \"engine\": {value},\n\t\t *    //      \"browser\": {value},\n\t\t *    //      \"platform\": {\n\t\t *    //         \"inner\": {value}\n\t\t *    //      },\n\t\t *    //      \"details\": [\n\t\t *    //         {value}, {value}\n\t\t *    //      ]\n\t\t *    //   }\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"ajaxSource\": \"sources/deep.txt\",\n\t\t *        \"columns\": [\n\t\t *          { \"data\": \"engine\" },\n\t\t *          { \"data\": \"browser\" },\n\t\t *          { \"data\": \"platform.inner\" },\n\t\t *          { \"data\": \"platform.details.0\" },\n\t\t *          { \"data\": \"platform.details.1\" }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `data` as a function to provide different information for\n\t\t *    // sorting, filtering and display. In this case, currency (price)\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [ {\n\t\t *          \"targets\": [ 0 ],\n\t\t *          \"data\": function ( source, type, val ) {\n\t\t *            if (type === 'set') {\n\t\t *              source.price = val;\n\t\t *              // Store the computed dislay and filter values for efficiency\n\t\t *              source.price_display = val==\"\" ? \"\" : \"$\"+numberFormat(val);\n\t\t *              source.price_filter  = val==\"\" ? \"\" : \"$\"+numberFormat(val)+\" \"+val;\n\t\t *              return;\n\t\t *            }\n\t\t *            else if (type === 'display') {\n\t\t *              return source.price_display;\n\t\t *            }\n\t\t *            else if (type === 'filter') {\n\t\t *              return source.price_filter;\n\t\t *            }\n\t\t *            // 'sort', 'type' and undefined all just use the integer\n\t\t *            return source.price;\n\t\t *          }\n\t\t *        } ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using default content\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [ {\n\t\t *          \"targets\": [ 0 ],\n\t\t *          \"data\": null,\n\t\t *          \"defaultContent\": \"Click to edit\"\n\t\t *        } ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using array notation - outputting a list from an array\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [ {\n\t\t *          \"targets\": [ 0 ],\n\t\t *          \"data\": \"name[, ]\"\n\t\t *        } ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t */\n\t\t\"mData\": null,\n\t\n\t\n\t\t/**\n\t\t * This property is the rendering partner to `data` and it is suggested that\n\t\t * when you want to manipulate data for display (including filtering,\n\t\t * sorting etc) without altering the underlying data for the table, use this\n\t\t * property. `render` can be considered to be the the read only companion to\n\t\t * `data` which is read / write (then as such more complex). Like `data`\n\t\t * this option can be given in a number of different ways to effect its\n\t\t * behaviour:\n\t\t *\n\t\t * * `integer` - treated as an array index for the data source. This is the\n\t\t *   default that DataTables uses (incrementally increased for each column).\n\t\t * * `string` - read an object property from the data source. There are\n\t\t *   three 'special' options that can be used in the string to alter how\n\t\t *   DataTables reads the data from the source object:\n\t\t *    * `.` - Dotted Javascript notation. Just as you use a `.` in\n\t\t *      Javascript to read from nested objects, so to can the options\n\t\t *      specified in `data`. For example: `browser.version` or\n\t\t *      `browser.name`. If your object parameter name contains a period, use\n\t\t *      `\\\\` to escape it - i.e. `first\\\\.name`.\n\t\t *    * `[]` - Array notation. DataTables can automatically combine data\n\t\t *      from and array source, joining the data with the characters provided\n\t\t *      between the two brackets. For example: `name[, ]` would provide a\n\t\t *      comma-space separated list from the source array. If no characters\n\t\t *      are provided between the brackets, the original array source is\n\t\t *      returned.\n\t\t *    * `()` - Function notation. Adding `()` to the end of a parameter will\n\t\t *      execute a function of the name given. For example: `browser()` for a\n\t\t *      simple function on the data source, `browser.version()` for a\n\t\t *      function in a nested property or even `browser().version` to get an\n\t\t *      object property if the function called returns an object.\n\t\t * * `object` - use different data for the different data types requested by\n\t\t *   DataTables ('filter', 'display', 'type' or 'sort'). The property names\n\t\t *   of the object is the data type the property refers to and the value can\n\t\t *   defined using an integer, string or function using the same rules as\n\t\t *   `render` normally does. Note that an `_` option _must_ be specified.\n\t\t *   This is the default value to use if you haven't specified a value for\n\t\t *   the data type requested by DataTables.\n\t\t * * `function` - the function given will be executed whenever DataTables\n\t\t *   needs to set or get the data for a cell in the column. The function\n\t\t *   takes three parameters:\n\t\t *    * Parameters:\n\t\t *      * {array|object} The data source for the row (based on `data`)\n\t\t *      * {string} The type call data requested - this will be 'filter',\n\t\t *        'display', 'type' or 'sort'.\n\t\t *      * {array|object} The full data source for the row (not based on\n\t\t *        `data`)\n\t\t *    * Return:\n\t\t *      * The return value from the function is what will be used for the\n\t\t *        data requested.\n\t\t *\n\t\t *  @type string|int|function|object|null\n\t\t *  @default null Use the data source value.\n\t\t *\n\t\t *  @name DataTable.defaults.column.render\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Create a comma separated list from an array of objects\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"ajaxSource\": \"sources/deep.txt\",\n\t\t *        \"columns\": [\n\t\t *          { \"data\": \"engine\" },\n\t\t *          { \"data\": \"browser\" },\n\t\t *          {\n\t\t *            \"data\": \"platform\",\n\t\t *            \"render\": \"[, ].name\"\n\t\t *          }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Execute a function to obtain data\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [ {\n\t\t *          \"targets\": [ 0 ],\n\t\t *          \"data\": null, // Use the full data source object for the renderer's source\n\t\t *          \"render\": \"browserName()\"\n\t\t *        } ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // As an object, extracting different data for the different types\n\t\t *    // This would be used with a data source such as:\n\t\t *    //   { \"phone\": 5552368, \"phone_filter\": \"5552368 555-2368\", \"phone_display\": \"555-2368\" }\n\t\t *    // Here the `phone` integer is used for sorting and type detection, while `phone_filter`\n\t\t *    // (which has both forms) is used for filtering for if a user inputs either format, while\n\t\t *    // the formatted phone number is the one that is shown in the table.\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [ {\n\t\t *          \"targets\": [ 0 ],\n\t\t *          \"data\": null, // Use the full data source object for the renderer's source\n\t\t *          \"render\": {\n\t\t *            \"_\": \"phone\",\n\t\t *            \"filter\": \"phone_filter\",\n\t\t *            \"display\": \"phone_display\"\n\t\t *          }\n\t\t *        } ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Use as a function to create a link from the data source\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [ {\n\t\t *          \"targets\": [ 0 ],\n\t\t *          \"data\": \"download_link\",\n\t\t *          \"render\": function ( data, type, full ) {\n\t\t *            return '<a href=\"'+data+'\">Download</a>';\n\t\t *          }\n\t\t *        } ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"mRender\": null,\n\t\n\t\n\t\t/**\n\t\t * Change the cell type created for the column - either TD cells or TH cells. This\n\t\t * can be useful as TH cells have semantic meaning in the table body, allowing them\n\t\t * to act as a header for a row (you may wish to add scope='row' to the TH elements).\n\t\t *  @type string\n\t\t *  @default td\n\t\t *\n\t\t *  @name DataTable.defaults.column.cellType\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Make the first column use TH cells\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [ {\n\t\t *          \"targets\": [ 0 ],\n\t\t *          \"cellType\": \"th\"\n\t\t *        } ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sCellType\": \"td\",\n\t\n\t\n\t\t/**\n\t\t * Class to give to each cell in this column.\n\t\t *  @type string\n\t\t *  @default <i>Empty string</i>\n\t\t *\n\t\t *  @name DataTable.defaults.column.class\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"class\": \"my_class\", \"targets\": [ 0 ] }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"class\": \"my_class\" },\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          null\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sClass\": \"\",\n\t\n\t\t/**\n\t\t * When DataTables calculates the column widths to assign to each column,\n\t\t * it finds the longest string in each column and then constructs a\n\t\t * temporary table and reads the widths from that. The problem with this\n\t\t * is that \"mmm\" is much wider then \"iiii\", but the latter is a longer\n\t\t * string - thus the calculation can go wrong (doing it properly and putting\n\t\t * it into an DOM object and measuring that is horribly(!) slow). Thus as\n\t\t * a \"work around\" we provide this option. It will append its value to the\n\t\t * text that is found to be the longest string for the column - i.e. padding.\n\t\t * Generally you shouldn't need this!\n\t\t *  @type string\n\t\t *  @default <i>Empty string<i>\n\t\t *\n\t\t *  @name DataTable.defaults.column.contentPadding\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          {\n\t\t *            \"contentPadding\": \"mmm\"\n\t\t *          }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sContentPadding\": \"\",\n\t\n\t\n\t\t/**\n\t\t * Allows a default value to be given for a column's data, and will be used\n\t\t * whenever a null data source is encountered (this can be because `data`\n\t\t * is set to null, or because the data source itself is null).\n\t\t *  @type string\n\t\t *  @default null\n\t\t *\n\t\t *  @name DataTable.defaults.column.defaultContent\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          {\n\t\t *            \"data\": null,\n\t\t *            \"defaultContent\": \"Edit\",\n\t\t *            \"targets\": [ -1 ]\n\t\t *          }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          {\n\t\t *            \"data\": null,\n\t\t *            \"defaultContent\": \"Edit\"\n\t\t *          }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sDefaultContent\": null,\n\t\n\t\n\t\t/**\n\t\t * This parameter is only used in DataTables' server-side processing. It can\n\t\t * be exceptionally useful to know what columns are being displayed on the\n\t\t * client side, and to map these to database fields. When defined, the names\n\t\t * also allow DataTables to reorder information from the server if it comes\n\t\t * back in an unexpected order (i.e. if you switch your columns around on the\n\t\t * client-side, your server-side code does not also need updating).\n\t\t *  @type string\n\t\t *  @default <i>Empty string</i>\n\t\t *\n\t\t *  @name DataTable.defaults.column.name\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"name\": \"engine\", \"targets\": [ 0 ] },\n\t\t *          { \"name\": \"browser\", \"targets\": [ 1 ] },\n\t\t *          { \"name\": \"platform\", \"targets\": [ 2 ] },\n\t\t *          { \"name\": \"version\", \"targets\": [ 3 ] },\n\t\t *          { \"name\": \"grade\", \"targets\": [ 4 ] }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"name\": \"engine\" },\n\t\t *          { \"name\": \"browser\" },\n\t\t *          { \"name\": \"platform\" },\n\t\t *          { \"name\": \"version\" },\n\t\t *          { \"name\": \"grade\" }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sName\": \"\",\n\t\n\t\n\t\t/**\n\t\t * Defines a data source type for the ordering which can be used to read\n\t\t * real-time information from the table (updating the internally cached\n\t\t * version) prior to ordering. This allows ordering to occur on user\n\t\t * editable elements such as form inputs.\n\t\t *  @type string\n\t\t *  @default std\n\t\t *\n\t\t *  @name DataTable.defaults.column.orderDataType\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"orderDataType\": \"dom-text\", \"targets\": [ 2, 3 ] },\n\t\t *          { \"type\": \"numeric\", \"targets\": [ 3 ] },\n\t\t *          { \"orderDataType\": \"dom-select\", \"targets\": [ 4 ] },\n\t\t *          { \"orderDataType\": \"dom-checkbox\", \"targets\": [ 5 ] }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          null,\n\t\t *          null,\n\t\t *          { \"orderDataType\": \"dom-text\" },\n\t\t *          { \"orderDataType\": \"dom-text\", \"type\": \"numeric\" },\n\t\t *          { \"orderDataType\": \"dom-select\" },\n\t\t *          { \"orderDataType\": \"dom-checkbox\" }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sSortDataType\": \"std\",\n\t\n\t\n\t\t/**\n\t\t * The title of this column.\n\t\t *  @type string\n\t\t *  @default null <i>Derived from the 'TH' value for this column in the\n\t\t *    original HTML table.</i>\n\t\t *\n\t\t *  @name DataTable.defaults.column.title\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"title\": \"My column title\", \"targets\": [ 0 ] }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"title\": \"My column title\" },\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          null\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sTitle\": null,\n\t\n\t\n\t\t/**\n\t\t * The type allows you to specify how the data for this column will be\n\t\t * ordered. Four types (string, numeric, date and html (which will strip\n\t\t * HTML tags before ordering)) are currently available. Note that only date\n\t\t * formats understood by Javascript's Date() object will be accepted as type\n\t\t * date. For example: \"Mar 26, 2008 5:03 PM\". May take the values: 'string',\n\t\t * 'numeric', 'date' or 'html' (by default). Further types can be adding\n\t\t * through plug-ins.\n\t\t *  @type string\n\t\t *  @default null <i>Auto-detected from raw data</i>\n\t\t *\n\t\t *  @name DataTable.defaults.column.type\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"type\": \"html\", \"targets\": [ 0 ] }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"type\": \"html\" },\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          null\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sType\": null,\n\t\n\t\n\t\t/**\n\t\t * Defining the width of the column, this parameter may take any CSS value\n\t\t * (3em, 20px etc). DataTables applies 'smart' widths to columns which have not\n\t\t * been given a specific width through this interface ensuring that the table\n\t\t * remains readable.\n\t\t *  @type string\n\t\t *  @default null <i>Automatic</i>\n\t\t *\n\t\t *  @name DataTable.defaults.column.width\n\t\t *  @dtopt Columns\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columnDefs`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columnDefs\": [\n\t\t *          { \"width\": \"20%\", \"targets\": [ 0 ] }\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t *\n\t\t *  @example\n\t\t *    // Using `columns`\n\t\t *    $(document).ready( function() {\n\t\t *      $('#example').dataTable( {\n\t\t *        \"columns\": [\n\t\t *          { \"width\": \"20%\" },\n\t\t *          null,\n\t\t *          null,\n\t\t *          null,\n\t\t *          null\n\t\t *        ]\n\t\t *      } );\n\t\t *    } );\n\t\t */\n\t\t\"sWidth\": null\n\t};\n\t\n\t_fnHungarianMap( DataTable.defaults.column );\n\t\n\t\n\t\n\t/**\n\t * DataTables settings object - this holds all the information needed for a\n\t * given table, including configuration, data and current application of the\n\t * table options. DataTables does not have a single instance for each DataTable\n\t * with the settings attached to that instance, but rather instances of the\n\t * DataTable \"class\" are created on-the-fly as needed (typically by a\n\t * $().dataTable() call) and the settings object is then applied to that\n\t * instance.\n\t *\n\t * Note that this object is related to {@link DataTable.defaults} but this\n\t * one is the internal data store for DataTables's cache of columns. It should\n\t * NOT be manipulated outside of DataTables. Any configuration should be done\n\t * through the initialisation options.\n\t *  @namespace\n\t *  @todo Really should attach the settings object to individual instances so we\n\t *    don't need to create new instances on each $().dataTable() call (if the\n\t *    table already exists). It would also save passing oSettings around and\n\t *    into every single function. However, this is a very significant\n\t *    architecture change for DataTables and will almost certainly break\n\t *    backwards compatibility with older installations. This is something that\n\t *    will be done in 2.0.\n\t */\n\tDataTable.models.oSettings = {\n\t\t/**\n\t\t * Primary features of DataTables and their enablement state.\n\t\t *  @namespace\n\t\t */\n\t\t\"oFeatures\": {\n\t\n\t\t\t/**\n\t\t\t * Flag to say if DataTables should automatically try to calculate the\n\t\t\t * optimum table and columns widths (true) or not (false).\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bAutoWidth\": null,\n\t\n\t\t\t/**\n\t\t\t * Delay the creation of TR and TD elements until they are actually\n\t\t\t * needed by a driven page draw. This can give a significant speed\n\t\t\t * increase for Ajax source and Javascript source data, but makes no\n\t\t\t * difference at all fro DOM and server-side processing tables.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bDeferRender\": null,\n\t\n\t\t\t/**\n\t\t\t * Enable filtering on the table or not. Note that if this is disabled\n\t\t\t * then there is no filtering at all on the table, including fnFilter.\n\t\t\t * To just remove the filtering input use sDom and remove the 'f' option.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bFilter\": null,\n\t\n\t\t\t/**\n\t\t\t * Table information element (the 'Showing x of y records' div) enable\n\t\t\t * flag.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bInfo\": null,\n\t\n\t\t\t/**\n\t\t\t * Present a user control allowing the end user to change the page size\n\t\t\t * when pagination is enabled.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bLengthChange\": null,\n\t\n\t\t\t/**\n\t\t\t * Pagination enabled or not. Note that if this is disabled then length\n\t\t\t * changing must also be disabled.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bPaginate\": null,\n\t\n\t\t\t/**\n\t\t\t * Processing indicator enable flag whenever DataTables is enacting a\n\t\t\t * user request - typically an Ajax request for server-side processing.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bProcessing\": null,\n\t\n\t\t\t/**\n\t\t\t * Server-side processing enabled flag - when enabled DataTables will\n\t\t\t * get all data from the server for every draw - there is no filtering,\n\t\t\t * sorting or paging done on the client-side.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bServerSide\": null,\n\t\n\t\t\t/**\n\t\t\t * Sorting enablement flag.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bSort\": null,\n\t\n\t\t\t/**\n\t\t\t * Multi-column sorting\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bSortMulti\": null,\n\t\n\t\t\t/**\n\t\t\t * Apply a class to the columns which are being sorted to provide a\n\t\t\t * visual highlight or not. This can slow things down when enabled since\n\t\t\t * there is a lot of DOM interaction.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bSortClasses\": null,\n\t\n\t\t\t/**\n\t\t\t * State saving enablement flag.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bStateSave\": null\n\t\t},\n\t\n\t\n\t\t/**\n\t\t * Scrolling settings for a table.\n\t\t *  @namespace\n\t\t */\n\t\t\"oScroll\": {\n\t\t\t/**\n\t\t\t * When the table is shorter in height than sScrollY, collapse the\n\t\t\t * table container down to the height of the table (when true).\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type boolean\n\t\t\t */\n\t\t\t\"bCollapse\": null,\n\t\n\t\t\t/**\n\t\t\t * Width of the scrollbar for the web-browser's platform. Calculated\n\t\t\t * during table initialisation.\n\t\t\t *  @type int\n\t\t\t *  @default 0\n\t\t\t */\n\t\t\t\"iBarWidth\": 0,\n\t\n\t\t\t/**\n\t\t\t * Viewport width for horizontal scrolling. Horizontal scrolling is\n\t\t\t * disabled if an empty string.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type string\n\t\t\t */\n\t\t\t\"sX\": null,\n\t\n\t\t\t/**\n\t\t\t * Width to expand the table to when using x-scrolling. Typically you\n\t\t\t * should not need to use this.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type string\n\t\t\t *  @deprecated\n\t\t\t */\n\t\t\t\"sXInner\": null,\n\t\n\t\t\t/**\n\t\t\t * Viewport height for vertical scrolling. Vertical scrolling is disabled\n\t\t\t * if an empty string.\n\t\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t\t * set a default use {@link DataTable.defaults}.\n\t\t\t *  @type string\n\t\t\t */\n\t\t\t\"sY\": null\n\t\t},\n\t\n\t\t/**\n\t\t * Language information for the table.\n\t\t *  @namespace\n\t\t *  @extends DataTable.defaults.oLanguage\n\t\t */\n\t\t\"oLanguage\": {\n\t\t\t/**\n\t\t\t * Information callback function. See\n\t\t\t * {@link DataTable.defaults.fnInfoCallback}\n\t\t\t *  @type function\n\t\t\t *  @default null\n\t\t\t */\n\t\t\t\"fnInfoCallback\": null\n\t\t},\n\t\n\t\t/**\n\t\t * Browser support parameters\n\t\t *  @namespace\n\t\t */\n\t\t\"oBrowser\": {\n\t\t\t/**\n\t\t\t * Indicate if the browser incorrectly calculates width:100% inside a\n\t\t\t * scrolling element (IE6/7)\n\t\t\t *  @type boolean\n\t\t\t *  @default false\n\t\t\t */\n\t\t\t\"bScrollOversize\": false,\n\t\n\t\t\t/**\n\t\t\t * Determine if the vertical scrollbar is on the right or left of the\n\t\t\t * scrolling container - needed for rtl language layout, although not\n\t\t\t * all browsers move the scrollbar (Safari).\n\t\t\t *  @type boolean\n\t\t\t *  @default false\n\t\t\t */\n\t\t\t\"bScrollbarLeft\": false\n\t\t},\n\t\n\t\n\t\t\"ajax\": null,\n\t\n\t\n\t\t/**\n\t\t * Array referencing the nodes which are used for the features. The\n\t\t * parameters of this object match what is allowed by sDom - i.e.\n\t\t *   <ul>\n\t\t *     <li>'l' - Length changing</li>\n\t\t *     <li>'f' - Filtering input</li>\n\t\t *     <li>'t' - The table!</li>\n\t\t *     <li>'i' - Information</li>\n\t\t *     <li>'p' - Pagination</li>\n\t\t *     <li>'r' - pRocessing</li>\n\t\t *   </ul>\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aanFeatures\": [],\n\t\n\t\t/**\n\t\t * Store data information - see {@link DataTable.models.oRow} for detailed\n\t\t * information.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoData\": [],\n\t\n\t\t/**\n\t\t * Array of indexes which are in the current display (after filtering etc)\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aiDisplay\": [],\n\t\n\t\t/**\n\t\t * Array of indexes for display - no filtering\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aiDisplayMaster\": [],\n\t\n\t\t/**\n\t\t * Store information about each column that is in use\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoColumns\": [],\n\t\n\t\t/**\n\t\t * Store information about the table's header\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoHeader\": [],\n\t\n\t\t/**\n\t\t * Store information about the table's footer\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoFooter\": [],\n\t\n\t\t/**\n\t\t * Store the applied global search information in case we want to force a\n\t\t * research or compare the old search to a new one.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @namespace\n\t\t *  @extends DataTable.models.oSearch\n\t\t */\n\t\t\"oPreviousSearch\": {},\n\t\n\t\t/**\n\t\t * Store the applied search for each column - see\n\t\t * {@link DataTable.models.oSearch} for the format that is used for the\n\t\t * filtering information for each column.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoPreSearchCols\": [],\n\t\n\t\t/**\n\t\t * Sorting that is applied to the table. Note that the inner arrays are\n\t\t * used in the following manner:\n\t\t * <ul>\n\t\t *   <li>Index 0 - column number</li>\n\t\t *   <li>Index 1 - current sorting direction</li>\n\t\t * </ul>\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type array\n\t\t *  @todo These inner arrays should really be objects\n\t\t */\n\t\t\"aaSorting\": null,\n\t\n\t\t/**\n\t\t * Sorting that is always applied to the table (i.e. prefixed in front of\n\t\t * aaSorting).\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aaSortingFixed\": [],\n\t\n\t\t/**\n\t\t * Classes to use for the striping of a table.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"asStripeClasses\": null,\n\t\n\t\t/**\n\t\t * If restoring a table - we should restore its striping classes as well\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"asDestroyStripes\": [],\n\t\n\t\t/**\n\t\t * If restoring a table - we should restore its width\n\t\t *  @type int\n\t\t *  @default 0\n\t\t */\n\t\t\"sDestroyWidth\": 0,\n\t\n\t\t/**\n\t\t * Callback functions array for every time a row is inserted (i.e. on a draw).\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoRowCallback\": [],\n\t\n\t\t/**\n\t\t * Callback functions for the header on each draw.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoHeaderCallback\": [],\n\t\n\t\t/**\n\t\t * Callback function for the footer on each draw.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoFooterCallback\": [],\n\t\n\t\t/**\n\t\t * Array of callback functions for draw callback functions\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoDrawCallback\": [],\n\t\n\t\t/**\n\t\t * Array of callback functions for row created function\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoRowCreatedCallback\": [],\n\t\n\t\t/**\n\t\t * Callback functions for just before the table is redrawn. A return of\n\t\t * false will be used to cancel the draw.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoPreDrawCallback\": [],\n\t\n\t\t/**\n\t\t * Callback functions for when the table has been initialised.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoInitComplete\": [],\n\t\n\t\n\t\t/**\n\t\t * Callbacks for modifying the settings to be stored for state saving, prior to\n\t\t * saving state.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoStateSaveParams\": [],\n\t\n\t\t/**\n\t\t * Callbacks for modifying the settings that have been stored for state saving\n\t\t * prior to using the stored values to restore the state.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoStateLoadParams\": [],\n\t\n\t\t/**\n\t\t * Callbacks for operating on the settings object once the saved state has been\n\t\t * loaded\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoStateLoaded\": [],\n\t\n\t\t/**\n\t\t * Cache the table ID for quick access\n\t\t *  @type string\n\t\t *  @default <i>Empty string</i>\n\t\t */\n\t\t\"sTableId\": \"\",\n\t\n\t\t/**\n\t\t * The TABLE node for the main table\n\t\t *  @type node\n\t\t *  @default null\n\t\t */\n\t\t\"nTable\": null,\n\t\n\t\t/**\n\t\t * Permanent ref to the thead element\n\t\t *  @type node\n\t\t *  @default null\n\t\t */\n\t\t\"nTHead\": null,\n\t\n\t\t/**\n\t\t * Permanent ref to the tfoot element - if it exists\n\t\t *  @type node\n\t\t *  @default null\n\t\t */\n\t\t\"nTFoot\": null,\n\t\n\t\t/**\n\t\t * Permanent ref to the tbody element\n\t\t *  @type node\n\t\t *  @default null\n\t\t */\n\t\t\"nTBody\": null,\n\t\n\t\t/**\n\t\t * Cache the wrapper node (contains all DataTables controlled elements)\n\t\t *  @type node\n\t\t *  @default null\n\t\t */\n\t\t\"nTableWrapper\": null,\n\t\n\t\t/**\n\t\t * Indicate if when using server-side processing the loading of data\n\t\t * should be deferred until the second draw.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t */\n\t\t\"bDeferLoading\": false,\n\t\n\t\t/**\n\t\t * Indicate if all required information has been read in\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t */\n\t\t\"bInitialised\": false,\n\t\n\t\t/**\n\t\t * Information about open rows. Each object in the array has the parameters\n\t\t * 'nTr' and 'nParent'\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoOpenRows\": [],\n\t\n\t\t/**\n\t\t * Dictate the positioning of DataTables' control elements - see\n\t\t * {@link DataTable.model.oInit.sDom}.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sDom\": null,\n\t\n\t\t/**\n\t\t * Search delay (in mS)\n\t\t *  @type integer\n\t\t *  @default null\n\t\t */\n\t\t\"searchDelay\": null,\n\t\n\t\t/**\n\t\t * Which type of pagination should be used.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type string\n\t\t *  @default two_button\n\t\t */\n\t\t\"sPaginationType\": \"two_button\",\n\t\n\t\t/**\n\t\t * The state duration (for `stateSave`) in seconds.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type int\n\t\t *  @default 0\n\t\t */\n\t\t\"iStateDuration\": 0,\n\t\n\t\t/**\n\t\t * Array of callback functions for state saving. Each array element is an\n\t\t * object with the following parameters:\n\t\t *   <ul>\n\t\t *     <li>function:fn - function to call. Takes two parameters, oSettings\n\t\t *       and the JSON string to save that has been thus far created. Returns\n\t\t *       a JSON string to be inserted into a json object\n\t\t *       (i.e. '\"param\": [ 0, 1, 2]')</li>\n\t\t *     <li>string:sName - name of callback</li>\n\t\t *   </ul>\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoStateSave\": [],\n\t\n\t\t/**\n\t\t * Array of callback functions for state loading. Each array element is an\n\t\t * object with the following parameters:\n\t\t *   <ul>\n\t\t *     <li>function:fn - function to call. Takes two parameters, oSettings\n\t\t *       and the object stored. May return false to cancel state loading</li>\n\t\t *     <li>string:sName - name of callback</li>\n\t\t *   </ul>\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoStateLoad\": [],\n\t\n\t\t/**\n\t\t * State that was saved. Useful for back reference\n\t\t *  @type object\n\t\t *  @default null\n\t\t */\n\t\t\"oSavedState\": null,\n\t\n\t\t/**\n\t\t * State that was loaded. Useful for back reference\n\t\t *  @type object\n\t\t *  @default null\n\t\t */\n\t\t\"oLoadedState\": null,\n\t\n\t\t/**\n\t\t * Source url for AJAX data for the table.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sAjaxSource\": null,\n\t\n\t\t/**\n\t\t * Property from a given object from which to read the table data from. This\n\t\t * can be an empty string (when not server-side processing), in which case\n\t\t * it is  assumed an an array is given directly.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type string\n\t\t */\n\t\t\"sAjaxDataProp\": null,\n\t\n\t\t/**\n\t\t * Note if draw should be blocked while getting data\n\t\t *  @type boolean\n\t\t *  @default true\n\t\t */\n\t\t\"bAjaxDataGet\": true,\n\t\n\t\t/**\n\t\t * The last jQuery XHR object that was used for server-side data gathering.\n\t\t * This can be used for working with the XHR information in one of the\n\t\t * callbacks\n\t\t *  @type object\n\t\t *  @default null\n\t\t */\n\t\t\"jqXHR\": null,\n\t\n\t\t/**\n\t\t * JSON returned from the server in the last Ajax request\n\t\t *  @type object\n\t\t *  @default undefined\n\t\t */\n\t\t\"json\": undefined,\n\t\n\t\t/**\n\t\t * Data submitted as part of the last Ajax request\n\t\t *  @type object\n\t\t *  @default undefined\n\t\t */\n\t\t\"oAjaxData\": undefined,\n\t\n\t\t/**\n\t\t * Function to get the server-side data.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type function\n\t\t */\n\t\t\"fnServerData\": null,\n\t\n\t\t/**\n\t\t * Functions which are called prior to sending an Ajax request so extra\n\t\t * parameters can easily be sent to the server\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoServerParams\": [],\n\t\n\t\t/**\n\t\t * Send the XHR HTTP method - GET or POST (could be PUT or DELETE if\n\t\t * required).\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type string\n\t\t */\n\t\t\"sServerMethod\": null,\n\t\n\t\t/**\n\t\t * Format numbers for display.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type function\n\t\t */\n\t\t\"fnFormatNumber\": null,\n\t\n\t\t/**\n\t\t * List of options that can be used for the user selectable length menu.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aLengthMenu\": null,\n\t\n\t\t/**\n\t\t * Counter for the draws that the table does. Also used as a tracker for\n\t\t * server-side processing\n\t\t *  @type int\n\t\t *  @default 0\n\t\t */\n\t\t\"iDraw\": 0,\n\t\n\t\t/**\n\t\t * Indicate if a redraw is being done - useful for Ajax\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t */\n\t\t\"bDrawing\": false,\n\t\n\t\t/**\n\t\t * Draw index (iDraw) of the last error when parsing the returned data\n\t\t *  @type int\n\t\t *  @default -1\n\t\t */\n\t\t\"iDrawError\": -1,\n\t\n\t\t/**\n\t\t * Paging display length\n\t\t *  @type int\n\t\t *  @default 10\n\t\t */\n\t\t\"_iDisplayLength\": 10,\n\t\n\t\t/**\n\t\t * Paging start point - aiDisplay index\n\t\t *  @type int\n\t\t *  @default 0\n\t\t */\n\t\t\"_iDisplayStart\": 0,\n\t\n\t\t/**\n\t\t * Server-side processing - number of records in the result set\n\t\t * (i.e. before filtering), Use fnRecordsTotal rather than\n\t\t * this property to get the value of the number of records, regardless of\n\t\t * the server-side processing setting.\n\t\t *  @type int\n\t\t *  @default 0\n\t\t *  @private\n\t\t */\n\t\t\"_iRecordsTotal\": 0,\n\t\n\t\t/**\n\t\t * Server-side processing - number of records in the current display set\n\t\t * (i.e. after filtering). Use fnRecordsDisplay rather than\n\t\t * this property to get the value of the number of records, regardless of\n\t\t * the server-side processing setting.\n\t\t *  @type boolean\n\t\t *  @default 0\n\t\t *  @private\n\t\t */\n\t\t\"_iRecordsDisplay\": 0,\n\t\n\t\t/**\n\t\t * Flag to indicate if jQuery UI marking and classes should be used.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type boolean\n\t\t */\n\t\t\"bJUI\": null,\n\t\n\t\t/**\n\t\t * The classes to use for the table\n\t\t *  @type object\n\t\t *  @default {}\n\t\t */\n\t\t\"oClasses\": {},\n\t\n\t\t/**\n\t\t * Flag attached to the settings object so you can check in the draw\n\t\t * callback if filtering has been done in the draw. Deprecated in favour of\n\t\t * events.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *  @deprecated\n\t\t */\n\t\t\"bFiltered\": false,\n\t\n\t\t/**\n\t\t * Flag attached to the settings object so you can check in the draw\n\t\t * callback if sorting has been done in the draw. Deprecated in favour of\n\t\t * events.\n\t\t *  @type boolean\n\t\t *  @default false\n\t\t *  @deprecated\n\t\t */\n\t\t\"bSorted\": false,\n\t\n\t\t/**\n\t\t * Indicate that if multiple rows are in the header and there is more than\n\t\t * one unique cell per column, if the top one (true) or bottom one (false)\n\t\t * should be used for sorting / title by DataTables.\n\t\t * Note that this parameter will be set by the initialisation routine. To\n\t\t * set a default use {@link DataTable.defaults}.\n\t\t *  @type boolean\n\t\t */\n\t\t\"bSortCellsTop\": null,\n\t\n\t\t/**\n\t\t * Initialisation object that is used for the table\n\t\t *  @type object\n\t\t *  @default null\n\t\t */\n\t\t\"oInit\": null,\n\t\n\t\t/**\n\t\t * Destroy callback functions - for plug-ins to attach themselves to the\n\t\t * destroy so they can clean up markup and events.\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aoDestroyCallback\": [],\n\t\n\t\n\t\t/**\n\t\t * Get the number of records in the current record set, before filtering\n\t\t *  @type function\n\t\t */\n\t\t\"fnRecordsTotal\": function ()\n\t\t{\n\t\t\treturn _fnDataSource( this ) == 'ssp' ?\n\t\t\t\tthis._iRecordsTotal * 1 :\n\t\t\t\tthis.aiDisplayMaster.length;\n\t\t},\n\t\n\t\t/**\n\t\t * Get the number of records in the current record set, after filtering\n\t\t *  @type function\n\t\t */\n\t\t\"fnRecordsDisplay\": function ()\n\t\t{\n\t\t\treturn _fnDataSource( this ) == 'ssp' ?\n\t\t\t\tthis._iRecordsDisplay * 1 :\n\t\t\t\tthis.aiDisplay.length;\n\t\t},\n\t\n\t\t/**\n\t\t * Get the display end point - aiDisplay index\n\t\t *  @type function\n\t\t */\n\t\t\"fnDisplayEnd\": function ()\n\t\t{\n\t\t\tvar\n\t\t\t\tlen      = this._iDisplayLength,\n\t\t\t\tstart    = this._iDisplayStart,\n\t\t\t\tcalc     = start + len,\n\t\t\t\trecords  = this.aiDisplay.length,\n\t\t\t\tfeatures = this.oFeatures,\n\t\t\t\tpaginate = features.bPaginate;\n\t\n\t\t\tif ( features.bServerSide ) {\n\t\t\t\treturn paginate === false || len === -1 ?\n\t\t\t\t\tstart + records :\n\t\t\t\t\tMath.min( start+len, this._iRecordsDisplay );\n\t\t\t}\n\t\t\telse {\n\t\t\t\treturn ! paginate || calc>records || len===-1 ?\n\t\t\t\t\trecords :\n\t\t\t\t\tcalc;\n\t\t\t}\n\t\t},\n\t\n\t\t/**\n\t\t * The DataTables object for this table\n\t\t *  @type object\n\t\t *  @default null\n\t\t */\n\t\t\"oInstance\": null,\n\t\n\t\t/**\n\t\t * Unique identifier for each instance of the DataTables object. If there\n\t\t * is an ID on the table node, then it takes that value, otherwise an\n\t\t * incrementing internal counter is used.\n\t\t *  @type string\n\t\t *  @default null\n\t\t */\n\t\t\"sInstance\": null,\n\t\n\t\t/**\n\t\t * tabindex attribute value that is added to DataTables control elements, allowing\n\t\t * keyboard navigation of the table and its controls.\n\t\t */\n\t\t\"iTabIndex\": 0,\n\t\n\t\t/**\n\t\t * DIV container for the footer scrolling table if scrolling\n\t\t */\n\t\t\"nScrollHead\": null,\n\t\n\t\t/**\n\t\t * DIV container for the footer scrolling table if scrolling\n\t\t */\n\t\t\"nScrollFoot\": null,\n\t\n\t\t/**\n\t\t * Last applied sort\n\t\t *  @type array\n\t\t *  @default []\n\t\t */\n\t\t\"aLastSort\": [],\n\t\n\t\t/**\n\t\t * Stored plug-in instances\n\t\t *  @type object\n\t\t *  @default {}\n\t\t */\n\t\t\"oPlugins\": {}\n\t};\n\n\t/**\n\t * Extension object for DataTables that is used to provide all extension\n\t * options.\n\t *\n\t * Note that the `DataTable.ext` object is available through\n\t * `jQuery.fn.dataTable.ext` where it may be accessed and manipulated. It is\n\t * also aliased to `jQuery.fn.dataTableExt` for historic reasons.\n\t *  @namespace\n\t *  @extends DataTable.models.ext\n\t */\n\t\n\t\n\t/**\n\t * DataTables extensions\n\t * \n\t * This namespace acts as a collection area for plug-ins that can be used to\n\t * extend DataTables capabilities. Indeed many of the build in methods\n\t * use this method to provide their own capabilities (sorting methods for\n\t * example).\n\t *\n\t * Note that this namespace is aliased to `jQuery.fn.dataTableExt` for legacy\n\t * reasons\n\t *\n\t *  @namespace\n\t */\n\tDataTable.ext = _ext = {\n\t\t/**\n\t\t * Element class names\n\t\t *\n\t\t *  @type object\n\t\t *  @default {}\n\t\t */\n\t\tclasses: {},\n\t\n\t\n\t\t/**\n\t\t * Error reporting.\n\t\t * \n\t\t * How should DataTables report an error. Can take the value 'alert' or\n\t\t * 'throw'\n\t\t *\n\t\t *  @type string\n\t\t *  @default alert\n\t\t */\n\t\terrMode: \"alert\",\n\t\n\t\n\t\t/**\n\t\t * Feature plug-ins.\n\t\t * \n\t\t * This is an array of objects which describe the feature plug-ins that are\n\t\t * available to DataTables. These feature plug-ins are then available for\n\t\t * use through the `dom` initialisation option.\n\t\t * \n\t\t * Each feature plug-in is described by an object which must have the\n\t\t * following properties:\n\t\t * \n\t\t * * `fnInit` - function that is used to initialise the plug-in,\n\t\t * * `cFeature` - a character so the feature can be enabled by the `dom`\n\t\t *   instillation option. This is case sensitive.\n\t\t *\n\t\t * The `fnInit` function has the following input parameters:\n\t\t *\n\t\t * 1. `{object}` DataTables settings object: see\n\t\t *    {@link DataTable.models.oSettings}\n\t\t *\n\t\t * And the following return is expected:\n\t\t * \n\t\t * * {node|null} The element which contains your feature. Note that the\n\t\t *   return may also be void if your plug-in does not require to inject any\n\t\t *   DOM elements into DataTables control (`dom`) - for example this might\n\t\t *   be useful when developing a plug-in which allows table control via\n\t\t *   keyboard entry\n\t\t *\n\t\t *  @type array\n\t\t *\n\t\t *  @example\n\t\t *    $.fn.dataTable.ext.features.push( {\n\t\t *      \"fnInit\": function( oSettings ) {\n\t\t *        return new TableTools( { \"oDTSettings\": oSettings } );\n\t\t *      },\n\t\t *      \"cFeature\": \"T\"\n\t\t *    } );\n\t\t */\n\t\tfeature: [],\n\t\n\t\n\t\t/**\n\t\t * Row searching.\n\t\t * \n\t\t * This method of searching is complimentary to the default type based\n\t\t * searching, and a lot more comprehensive as it allows you complete control\n\t\t * over the searching logic. Each element in this array is a function\n\t\t * (parameters described below) that is called for every row in the table,\n\t\t * and your logic decides if it should be included in the searching data set\n\t\t * or not.\n\t\t *\n\t\t * Searching functions have the following input parameters:\n\t\t *\n\t\t * 1. `{object}` DataTables settings object: see\n\t\t *    {@link DataTable.models.oSettings}\n\t\t * 2. `{array|object}` Data for the row to be processed (same as the\n\t\t *    original format that was passed in as the data source, or an array\n\t\t *    from a DOM data source\n\t\t * 3. `{int}` Row index ({@link DataTable.models.oSettings.aoData}), which\n\t\t *    can be useful to retrieve the `TR` element if you need DOM interaction.\n\t\t *\n\t\t * And the following return is expected:\n\t\t *\n\t\t * * {boolean} Include the row in the searched result set (true) or not\n\t\t *   (false)\n\t\t *\n\t\t * Note that as with the main search ability in DataTables, technically this\n\t\t * is \"filtering\", since it is subtractive. However, for consistency in\n\t\t * naming we call it searching here.\n\t\t *\n\t\t *  @type array\n\t\t *  @default []\n\t\t *\n\t\t *  @example\n\t\t *    // The following example shows custom search being applied to the\n\t\t *    // fourth column (i.e. the data[3] index) based on two input values\n\t\t *    // from the end-user, matching the data in a certain range.\n\t\t *    $.fn.dataTable.ext.search.push(\n\t\t *      function( settings, data, dataIndex ) {\n\t\t *        var min = document.getElementById('min').value * 1;\n\t\t *        var max = document.getElementById('max').value * 1;\n\t\t *        var version = data[3] == \"-\" ? 0 : data[3]*1;\n\t\t *\n\t\t *        if ( min == \"\" && max == \"\" ) {\n\t\t *          return true;\n\t\t *        }\n\t\t *        else if ( min == \"\" && version < max ) {\n\t\t *          return true;\n\t\t *        }\n\t\t *        else if ( min < version && \"\" == max ) {\n\t\t *          return true;\n\t\t *        }\n\t\t *        else if ( min < version && version < max ) {\n\t\t *          return true;\n\t\t *        }\n\t\t *        return false;\n\t\t *      }\n\t\t *    );\n\t\t */\n\t\tsearch: [],\n\t\n\t\n\t\t/**\n\t\t * Internal functions, exposed for used in plug-ins.\n\t\t * \n\t\t * Please note that you should not need to use the internal methods for\n\t\t * anything other than a plug-in (and even then, try to avoid if possible).\n\t\t * The internal function may change between releases.\n\t\t *\n\t\t *  @type object\n\t\t *  @default {}\n\t\t */\n\t\tinternal: {},\n\t\n\t\n\t\t/**\n\t\t * Legacy configuration options. Enable and disable legacy options that\n\t\t * are available in DataTables.\n\t\t *\n\t\t *  @type object\n\t\t */\n\t\tlegacy: {\n\t\t\t/**\n\t\t\t * Enable / disable DataTables 1.9 compatible server-side processing\n\t\t\t * requests\n\t\t\t *\n\t\t\t *  @type boolean\n\t\t\t *  @default null\n\t\t\t */\n\t\t\tajax: null\n\t\t},\n\t\n\t\n\t\t/**\n\t\t * Pagination plug-in methods.\n\t\t * \n\t\t * Each entry in this object is a function and defines which buttons should\n\t\t * be shown by the pagination rendering method that is used for the table:\n\t\t * {@link DataTable.ext.renderer.pageButton}. The renderer addresses how the\n\t\t * buttons are displayed in the document, while the functions here tell it\n\t\t * what buttons to display. This is done by returning an array of button\n\t\t * descriptions (what each button will do).\n\t\t *\n\t\t * Pagination types (the four built in options and any additional plug-in\n\t\t * options defined here) can be used through the `paginationType`\n\t\t * initialisation parameter.\n\t\t *\n\t\t * The functions defined take two parameters:\n\t\t *\n\t\t * 1. `{int} page` The current page index\n\t\t * 2. `{int} pages` The number of pages in the table\n\t\t *\n\t\t * Each function is expected to return an array where each element of the\n\t\t * array can be one of:\n\t\t *\n\t\t * * `first` - Jump to first page when activated\n\t\t * * `last` - Jump to last page when activated\n\t\t * * `previous` - Show previous page when activated\n\t\t * * `next` - Show next page when activated\n\t\t * * `{int}` - Show page of the index given\n\t\t * * `{array}` - A nested array containing the above elements to add a\n\t\t *   containing 'DIV' element (might be useful for styling).\n\t\t *\n\t\t * Note that DataTables v1.9- used this object slightly differently whereby\n\t\t * an object with two functions would be defined for each plug-in. That\n\t\t * ability is still supported by DataTables 1.10+ to provide backwards\n\t\t * compatibility, but this option of use is now decremented and no longer\n\t\t * documented in DataTables 1.10+.\n\t\t *\n\t\t *  @type object\n\t\t *  @default {}\n\t\t *\n\t\t *  @example\n\t\t *    // Show previous, next and current page buttons only\n\t\t *    $.fn.dataTableExt.oPagination.current = function ( page, pages ) {\n\t\t *      return [ 'previous', page, 'next' ];\n\t\t *    };\n\t\t */\n\t\tpager: {},\n\t\n\t\n\t\trenderer: {\n\t\t\tpageButton: {},\n\t\t\theader: {}\n\t\t},\n\t\n\t\n\t\t/**\n\t\t * Ordering plug-ins - custom data source\n\t\t * \n\t\t * The extension options for ordering of data available here is complimentary\n\t\t * to the default type based ordering that DataTables typically uses. It\n\t\t * allows much greater control over the the data that is being used to\n\t\t * order a column, but is necessarily therefore more complex.\n\t\t * \n\t\t * This type of ordering is useful if you want to do ordering based on data\n\t\t * live from the DOM (for example the contents of an 'input' element) rather\n\t\t * than just the static string that DataTables knows of.\n\t\t * \n\t\t * The way these plug-ins work is that you create an array of the values you\n\t\t * wish to be ordering for the column in question and then return that\n\t\t * array. The data in the array much be in the index order of the rows in\n\t\t * the table (not the currently ordering order!). Which order data gathering\n\t\t * function is run here depends on the `dt-init columns.orderDataType`\n\t\t * parameter that is used for the column (if any).\n\t\t *\n\t\t * The functions defined take two parameters:\n\t\t *\n\t\t * 1. `{object}` DataTables settings object: see\n\t\t *    {@link DataTable.models.oSettings}\n\t\t * 2. `{int}` Target column index\n\t\t *\n\t\t * Each function is expected to return an array:\n\t\t *\n\t\t * * `{array}` Data for the column to be ordering upon\n\t\t *\n\t\t *  @type array\n\t\t *\n\t\t *  @example\n\t\t *    // Ordering using `input` node values\n\t\t *    $.fn.dataTable.ext.order['dom-text'] = function  ( settings, col )\n\t\t *    {\n\t\t *      return this.api().column( col, {order:'index'} ).nodes().map( function ( td, i ) {\n\t\t *        return $('input', td).val();\n\t\t *      } );\n\t\t *    }\n\t\t */\n\t\torder: {},\n\t\n\t\n\t\t/**\n\t\t * Type based plug-ins.\n\t\t *\n\t\t * Each column in DataTables has a type assigned to it, either by automatic\n\t\t * detection or by direct assignment using the `type` option for the column.\n\t\t * The type of a column will effect how it is ordering and search (plug-ins\n\t\t * can also make use of the column type if required).\n\t\t *\n\t\t * @namespace\n\t\t */\n\t\ttype: {\n\t\t\t/**\n\t\t\t * Type detection functions.\n\t\t\t *\n\t\t\t * The functions defined in this object are used to automatically detect\n\t\t\t * a column's type, making initialisation of DataTables super easy, even\n\t\t\t * when complex data is in the table.\n\t\t\t *\n\t\t\t * The functions defined take two parameters:\n\t\t\t *\n\t\t     *  1. `{*}` Data from the column cell to be analysed\n\t\t     *  2. `{settings}` DataTables settings object. This can be used to\n\t\t     *     perform context specific type detection - for example detection\n\t\t     *     based on language settings such as using a comma for a decimal\n\t\t     *     place. Generally speaking the options from the settings will not\n\t\t     *     be required\n\t\t\t *\n\t\t\t * Each function is expected to return:\n\t\t\t *\n\t\t\t * * `{string|null}` Data type detected, or null if unknown (and thus\n\t\t\t *   pass it on to the other type detection functions.\n\t\t\t *\n\t\t\t *  @type array\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    // Currency type detection plug-in:\n\t\t\t *    $.fn.dataTable.ext.type.detect.push(\n\t\t\t *      function ( data, settings ) {\n\t\t\t *        // Check the numeric part\n\t\t\t *        if ( ! $.isNumeric( data.substring(1) ) ) {\n\t\t\t *          return null;\n\t\t\t *        }\n\t\t\t *\n\t\t\t *        // Check prefixed by currency\n\t\t\t *        if ( data.charAt(0) == '$' || data.charAt(0) == '&pound;' ) {\n\t\t\t *          return 'currency';\n\t\t\t *        }\n\t\t\t *        return null;\n\t\t\t *      }\n\t\t\t *    );\n\t\t\t */\n\t\t\tdetect: [],\n\t\n\t\n\t\t\t/**\n\t\t\t * Type based search formatting.\n\t\t\t *\n\t\t\t * The type based searching functions can be used to pre-format the\n\t\t\t * data to be search on. For example, it can be used to strip HTML\n\t\t\t * tags or to de-format telephone numbers for numeric only searching.\n\t\t\t *\n\t\t\t * Note that is a search is not defined for a column of a given type,\n\t\t\t * no search formatting will be performed.\n\t\t\t * \n\t\t\t * Pre-processing of searching data plug-ins - When you assign the sType\n\t\t\t * for a column (or have it automatically detected for you by DataTables\n\t\t\t * or a type detection plug-in), you will typically be using this for\n\t\t\t * custom sorting, but it can also be used to provide custom searching\n\t\t\t * by allowing you to pre-processing the data and returning the data in\n\t\t\t * the format that should be searched upon. This is done by adding\n\t\t\t * functions this object with a parameter name which matches the sType\n\t\t\t * for that target column. This is the corollary of <i>afnSortData</i>\n\t\t\t * for searching data.\n\t\t\t *\n\t\t\t * The functions defined take a single parameter:\n\t\t\t *\n\t\t     *  1. `{*}` Data from the column cell to be prepared for searching\n\t\t\t *\n\t\t\t * Each function is expected to return:\n\t\t\t *\n\t\t\t * * `{string|null}` Formatted string that will be used for the searching.\n\t\t\t *\n\t\t\t *  @type object\n\t\t\t *  @default {}\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    $.fn.dataTable.ext.type.search['title-numeric'] = function ( d ) {\n\t\t\t *      return d.replace(/\\n/g,\" \").replace( /<.*?>/g, \"\" );\n\t\t\t *    }\n\t\t\t */\n\t\t\tsearch: {},\n\t\n\t\n\t\t\t/**\n\t\t\t * Type based ordering.\n\t\t\t *\n\t\t\t * The column type tells DataTables what ordering to apply to the table\n\t\t\t * when a column is sorted upon. The order for each type that is defined,\n\t\t\t * is defined by the functions available in this object.\n\t\t\t *\n\t\t\t * Each ordering option can be described by three properties added to\n\t\t\t * this object:\n\t\t\t *\n\t\t\t * * `{type}-pre` - Pre-formatting function\n\t\t\t * * `{type}-asc` - Ascending order function\n\t\t\t * * `{type}-desc` - Descending order function\n\t\t\t *\n\t\t\t * All three can be used together, only `{type}-pre` or only\n\t\t\t * `{type}-asc` and `{type}-desc` together. It is generally recommended\n\t\t\t * that only `{type}-pre` is used, as this provides the optimal\n\t\t\t * implementation in terms of speed, although the others are provided\n\t\t\t * for compatibility with existing Javascript sort functions.\n\t\t\t *\n\t\t\t * `{type}-pre`: Functions defined take a single parameter:\n\t\t\t *\n\t\t     *  1. `{*}` Data from the column cell to be prepared for ordering\n\t\t\t *\n\t\t\t * And return:\n\t\t\t *\n\t\t\t * * `{*}` Data to be sorted upon\n\t\t\t *\n\t\t\t * `{type}-asc` and `{type}-desc`: Functions are typical Javascript sort\n\t\t\t * functions, taking two parameters:\n\t\t\t *\n\t\t     *  1. `{*}` Data to compare to the second parameter\n\t\t     *  2. `{*}` Data to compare to the first parameter\n\t\t\t *\n\t\t\t * And returning:\n\t\t\t *\n\t\t\t * * `{*}` Ordering match: <0 if first parameter should be sorted lower\n\t\t\t *   than the second parameter, ===0 if the two parameters are equal and\n\t\t\t *   >0 if the first parameter should be sorted height than the second\n\t\t\t *   parameter.\n\t\t\t * \n\t\t\t *  @type object\n\t\t\t *  @default {}\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    // Numeric ordering of formatted numbers with a pre-formatter\n\t\t\t *    $.extend( $.fn.dataTable.ext.type.order, {\n\t\t\t *      \"string-pre\": function(x) {\n\t\t\t *        a = (a === \"-\" || a === \"\") ? 0 : a.replace( /[^\\d\\-\\.]/g, \"\" );\n\t\t\t *        return parseFloat( a );\n\t\t\t *      }\n\t\t\t *    } );\n\t\t\t *\n\t\t\t *  @example\n\t\t\t *    // Case-sensitive string ordering, with no pre-formatting method\n\t\t\t *    $.extend( $.fn.dataTable.ext.order, {\n\t\t\t *      \"string-case-asc\": function(x,y) {\n\t\t\t *        return ((x < y) ? -1 : ((x > y) ? 1 : 0));\n\t\t\t *      },\n\t\t\t *      \"string-case-desc\": function(x,y) {\n\t\t\t *        return ((x < y) ? 1 : ((x > y) ? -1 : 0));\n\t\t\t *      }\n\t\t\t *    } );\n\t\t\t */\n\t\t\torder: {}\n\t\t},\n\t\n\t\t/**\n\t\t * Unique DataTables instance counter\n\t\t *\n\t\t * @type int\n\t\t * @private\n\t\t */\n\t\t_unique: 0,\n\t\n\t\n\t\t//\n\t\t// Depreciated\n\t\t// The following properties are retained for backwards compatiblity only.\n\t\t// The should not be used in new projects and will be removed in a future\n\t\t// version\n\t\t//\n\t\n\t\t/**\n\t\t * Version check function.\n\t\t *  @type function\n\t\t *  @depreciated Since 1.10\n\t\t */\n\t\tfnVersionCheck: DataTable.fnVersionCheck,\n\t\n\t\n\t\t/**\n\t\t * Index for what 'this' index API functions should use\n\t\t *  @type int\n\t\t *  @deprecated Since v1.10\n\t\t */\n\t\tiApiIndex: 0,\n\t\n\t\n\t\t/**\n\t\t * jQuery UI class container\n\t\t *  @type object\n\t\t *  @deprecated Since v1.10\n\t\t */\n\t\toJUIClasses: {},\n\t\n\t\n\t\t/**\n\t\t * Software version\n\t\t *  @type string\n\t\t *  @deprecated Since v1.10\n\t\t */\n\t\tsVersion: DataTable.version\n\t};\n\t\n\t\n\t//\n\t// Backwards compatibility. Alias to pre 1.10 Hungarian notation counter parts\n\t//\n\t$.extend( _ext, {\n\t\tafnFiltering: _ext.search,\n\t\taTypes:       _ext.type.detect,\n\t\tofnSearch:    _ext.type.search,\n\t\toSort:        _ext.type.order,\n\t\tafnSortData:  _ext.order,\n\t\taoFeatures:   _ext.feature,\n\t\toApi:         _ext.internal,\n\t\toStdClasses:  _ext.classes,\n\t\toPagination:  _ext.pager\n\t} );\n\t\n\t\n\t$.extend( DataTable.ext.classes, {\n\t\t\"sTable\": \"dataTable\",\n\t\t\"sNoFooter\": \"no-footer\",\n\t\n\t\t/* Paging buttons */\n\t\t\"sPageButton\": \"paginate_button\",\n\t\t\"sPageButtonActive\": \"current\",\n\t\t\"sPageButtonDisabled\": \"disabled\",\n\t\n\t\t/* Striping classes */\n\t\t\"sStripeOdd\": \"odd\",\n\t\t\"sStripeEven\": \"even\",\n\t\n\t\t/* Empty row */\n\t\t\"sRowEmpty\": \"dataTables_empty\",\n\t\n\t\t/* Features */\n\t\t\"sWrapper\": \"dataTables_wrapper\",\n\t\t\"sFilter\": \"dataTables_filter\",\n\t\t\"sInfo\": \"dataTables_info\",\n\t\t\"sPaging\": \"dataTables_paginate paging_\", /* Note that the type is postfixed */\n\t\t\"sLength\": \"dataTables_length\",\n\t\t\"sProcessing\": \"dataTables_processing\",\n\t\n\t\t/* Sorting */\n\t\t\"sSortAsc\": \"sorting_asc\",\n\t\t\"sSortDesc\": \"sorting_desc\",\n\t\t\"sSortable\": \"sorting\", /* Sortable in both directions */\n\t\t\"sSortableAsc\": \"sorting_asc_disabled\",\n\t\t\"sSortableDesc\": \"sorting_desc_disabled\",\n\t\t\"sSortableNone\": \"sorting_disabled\",\n\t\t\"sSortColumn\": \"sorting_\", /* Note that an int is postfixed for the sorting order */\n\t\n\t\t/* Filtering */\n\t\t\"sFilterInput\": \"\",\n\t\n\t\t/* Page length */\n\t\t\"sLengthSelect\": \"\",\n\t\n\t\t/* Scrolling */\n\t\t\"sScrollWrapper\": \"dataTables_scroll\",\n\t\t\"sScrollHead\": \"dataTables_scrollHead\",\n\t\t\"sScrollHeadInner\": \"dataTables_scrollHeadInner\",\n\t\t\"sScrollBody\": \"dataTables_scrollBody\",\n\t\t\"sScrollFoot\": \"dataTables_scrollFoot\",\n\t\t\"sScrollFootInner\": \"dataTables_scrollFootInner\",\n\t\n\t\t/* Misc */\n\t\t\"sHeaderTH\": \"\",\n\t\t\"sFooterTH\": \"\",\n\t\n\t\t// Deprecated\n\t\t\"sSortJUIAsc\": \"\",\n\t\t\"sSortJUIDesc\": \"\",\n\t\t\"sSortJUI\": \"\",\n\t\t\"sSortJUIAscAllowed\": \"\",\n\t\t\"sSortJUIDescAllowed\": \"\",\n\t\t\"sSortJUIWrapper\": \"\",\n\t\t\"sSortIcon\": \"\",\n\t\t\"sJUIHeader\": \"\",\n\t\t\"sJUIFooter\": \"\"\n\t} );\n\t\n\t\n\t(function() {\n\t\n\t// Reused strings for better compression. Closure compiler appears to have a\n\t// weird edge case where it is trying to expand strings rather than use the\n\t// variable version. This results in about 200 bytes being added, for very\n\t// little preference benefit since it this run on script load only.\n\tvar _empty = '';\n\t_empty = '';\n\t\n\tvar _stateDefault = _empty + 'ui-state-default';\n\tvar _sortIcon     = _empty + 'css_right ui-icon ui-icon-';\n\tvar _headerFooter = _empty + 'fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix';\n\t\n\t$.extend( DataTable.ext.oJUIClasses, DataTable.ext.classes, {\n\t\t/* Full numbers paging buttons */\n\t\t\"sPageButton\":         \"fg-button ui-button \"+_stateDefault,\n\t\t\"sPageButtonActive\":   \"ui-state-disabled\",\n\t\t\"sPageButtonDisabled\": \"ui-state-disabled\",\n\t\n\t\t/* Features */\n\t\t\"sPaging\": \"dataTables_paginate fg-buttonset ui-buttonset fg-buttonset-multi \"+\n\t\t\t\"ui-buttonset-multi paging_\", /* Note that the type is postfixed */\n\t\n\t\t/* Sorting */\n\t\t\"sSortAsc\":            _stateDefault+\" sorting_asc\",\n\t\t\"sSortDesc\":           _stateDefault+\" sorting_desc\",\n\t\t\"sSortable\":           _stateDefault+\" sorting\",\n\t\t\"sSortableAsc\":        _stateDefault+\" sorting_asc_disabled\",\n\t\t\"sSortableDesc\":       _stateDefault+\" sorting_desc_disabled\",\n\t\t\"sSortableNone\":       _stateDefault+\" sorting_disabled\",\n\t\t\"sSortJUIAsc\":         _sortIcon+\"triangle-1-n\",\n\t\t\"sSortJUIDesc\":        _sortIcon+\"triangle-1-s\",\n\t\t\"sSortJUI\":            _sortIcon+\"carat-2-n-s\",\n\t\t\"sSortJUIAscAllowed\":  _sortIcon+\"carat-1-n\",\n\t\t\"sSortJUIDescAllowed\": _sortIcon+\"carat-1-s\",\n\t\t\"sSortJUIWrapper\":     \"DataTables_sort_wrapper\",\n\t\t\"sSortIcon\":           \"DataTables_sort_icon\",\n\t\n\t\t/* Scrolling */\n\t\t\"sScrollHead\": \"dataTables_scrollHead \"+_stateDefault,\n\t\t\"sScrollFoot\": \"dataTables_scrollFoot \"+_stateDefault,\n\t\n\t\t/* Misc */\n\t\t\"sHeaderTH\":  _stateDefault,\n\t\t\"sFooterTH\":  _stateDefault,\n\t\t\"sJUIHeader\": _headerFooter+\" ui-corner-tl ui-corner-tr\",\n\t\t\"sJUIFooter\": _headerFooter+\" ui-corner-bl ui-corner-br\"\n\t} );\n\t\n\t}());\n\t\n\t\n\t\n\tvar extPagination = DataTable.ext.pager;\n\t\n\tfunction _numbers ( page, pages ) {\n\t\tvar\n\t\t\tnumbers = [],\n\t\t\tbuttons = extPagination.numbers_length,\n\t\t\thalf = Math.floor( buttons / 2 ),\n\t\t\ti = 1;\n\t\n\t\tif ( pages <= buttons ) {\n\t\t\tnumbers = _range( 0, pages );\n\t\t}\n\t\telse if ( page <= half ) {\n\t\t\tnumbers = _range( 0, buttons-2 );\n\t\t\tnumbers.push( 'ellipsis' );\n\t\t\tnumbers.push( pages-1 );\n\t\t}\n\t\telse if ( page >= pages - 1 - half ) {\n\t\t\tnumbers = _range( pages-(buttons-2), pages );\n\t\t\tnumbers.splice( 0, 0, 'ellipsis' ); // no unshift in ie6\n\t\t\tnumbers.splice( 0, 0, 0 );\n\t\t}\n\t\telse {\n\t\t\tnumbers = _range( page-1, page+2 );\n\t\t\tnumbers.push( 'ellipsis' );\n\t\t\tnumbers.push( pages-1 );\n\t\t\tnumbers.splice( 0, 0, 'ellipsis' );\n\t\t\tnumbers.splice( 0, 0, 0 );\n\t\t}\n\t\n\t\tnumbers.DT_el = 'span';\n\t\treturn numbers;\n\t}\n\t\n\t\n\t$.extend( extPagination, {\n\t\tsimple: function ( page, pages ) {\n\t\t\treturn [ 'previous', 'next' ];\n\t\t},\n\t\n\t\tfull: function ( page, pages ) {\n\t\t\treturn [  'first', 'previous', 'next', 'last' ];\n\t\t},\n\t\n\t\tsimple_numbers: function ( page, pages ) {\n\t\t\treturn [ 'previous', _numbers(page, pages), 'next' ];\n\t\t},\n\t\n\t\tfull_numbers: function ( page, pages ) {\n\t\t\treturn [ 'first', 'previous', _numbers(page, pages), 'next', 'last' ];\n\t\t},\n\t\n\t\t// For testing and plug-ins to use\n\t\t_numbers: _numbers,\n\t\tnumbers_length: 7\n\t} );\n\t\n\t\n\t$.extend( true, DataTable.ext.renderer, {\n\t\tpageButton: {\n\t\t\t_: function ( settings, host, idx, buttons, page, pages ) {\n\t\t\t\tvar classes = settings.oClasses;\n\t\t\t\tvar lang = settings.oLanguage.oPaginate;\n\t\t\t\tvar btnDisplay, btnClass, counter=0;\n\t\n\t\t\t\tvar attach = function( container, buttons ) {\n\t\t\t\t\tvar i, ien, node, button;\n\t\t\t\t\tvar clickHandler = function ( e ) {\n\t\t\t\t\t\t_fnPageChange( settings, e.data.action, true );\n\t\t\t\t\t};\n\t\n\t\t\t\t\tfor ( i=0, ien=buttons.length ; i<ien ; i++ ) {\n\t\t\t\t\t\tbutton = buttons[i];\n\t\n\t\t\t\t\t\tif ( $.isArray( button ) ) {\n\t\t\t\t\t\t\tvar inner = $( '<'+(button.DT_el || 'div')+'/>' )\n\t\t\t\t\t\t\t\t.appendTo( container );\n\t\t\t\t\t\t\tattach( inner, button );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tbtnDisplay = '';\n\t\t\t\t\t\t\tbtnClass = '';\n\t\n\t\t\t\t\t\t\tswitch ( button ) {\n\t\t\t\t\t\t\t\tcase 'ellipsis':\n\t\t\t\t\t\t\t\t\tcontainer.append('<span>&hellip;</span>');\n\t\t\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\t\tcase 'first':\n\t\t\t\t\t\t\t\t\tbtnDisplay = lang.sFirst;\n\t\t\t\t\t\t\t\t\tbtnClass = button + (page > 0 ?\n\t\t\t\t\t\t\t\t\t\t'' : ' '+classes.sPageButtonDisabled);\n\t\t\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\t\tcase 'previous':\n\t\t\t\t\t\t\t\t\tbtnDisplay = lang.sPrevious;\n\t\t\t\t\t\t\t\t\tbtnClass = button + (page > 0 ?\n\t\t\t\t\t\t\t\t\t\t'' : ' '+classes.sPageButtonDisabled);\n\t\t\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\t\tcase 'next':\n\t\t\t\t\t\t\t\t\tbtnDisplay = lang.sNext;\n\t\t\t\t\t\t\t\t\tbtnClass = button + (page < pages-1 ?\n\t\t\t\t\t\t\t\t\t\t'' : ' '+classes.sPageButtonDisabled);\n\t\t\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\t\tcase 'last':\n\t\t\t\t\t\t\t\t\tbtnDisplay = lang.sLast;\n\t\t\t\t\t\t\t\t\tbtnClass = button + (page < pages-1 ?\n\t\t\t\t\t\t\t\t\t\t'' : ' '+classes.sPageButtonDisabled);\n\t\t\t\t\t\t\t\t\tbreak;\n\t\n\t\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\t\tbtnDisplay = button + 1;\n\t\t\t\t\t\t\t\t\tbtnClass = page === button ?\n\t\t\t\t\t\t\t\t\t\tclasses.sPageButtonActive : '';\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\t\tif ( btnDisplay ) {\n\t\t\t\t\t\t\t\tnode = $('<a>', {\n\t\t\t\t\t\t\t\t\t\t'class': classes.sPageButton+' '+btnClass,\n\t\t\t\t\t\t\t\t\t\t'aria-controls': settings.sTableId,\n\t\t\t\t\t\t\t\t\t\t'data-dt-idx': counter,\n\t\t\t\t\t\t\t\t\t\t'tabindex': settings.iTabIndex,\n\t\t\t\t\t\t\t\t\t\t'id': idx === 0 && typeof button === 'string' ?\n\t\t\t\t\t\t\t\t\t\t\tsettings.sTableId +'_'+ button :\n\t\t\t\t\t\t\t\t\t\t\tnull\n\t\t\t\t\t\t\t\t\t} )\n\t\t\t\t\t\t\t\t\t.html( btnDisplay )\n\t\t\t\t\t\t\t\t\t.appendTo( container );\n\t\n\t\t\t\t\t\t\t\t_fnBindAction(\n\t\t\t\t\t\t\t\t\tnode, {action: button}, clickHandler\n\t\t\t\t\t\t\t\t);\n\t\n\t\t\t\t\t\t\t\tcounter++;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\t\n\t\t\t\t// IE9 throws an 'unknown error' if document.activeElement is used\n\t\t\t\t// inside an iframe or frame. Try / catch the error. Not good for\n\t\t\t\t// accessibility, but neither are frames.\n\t\t\t\ttry {\n\t\t\t\t\t// Because this approach is destroying and recreating the paging\n\t\t\t\t\t// elements, focus is lost on the select button which is bad for\n\t\t\t\t\t// accessibility. So we want to restore focus once the draw has\n\t\t\t\t\t// completed\n\t\t\t\t\tvar activeEl = $(document.activeElement).data('dt-idx');\n\t\n\t\t\t\t\tattach( $(host).empty(), buttons );\n\t\n\t\t\t\t\tif ( activeEl !== null ) {\n\t\t\t\t\t\t$(host).find( '[data-dt-idx='+activeEl+']' ).focus();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcatch (e) {}\n\t\t\t}\n\t\t}\n\t} );\n\t\n\t\n\t\n\t// Built in type detection. See model.ext.aTypes for information about\n\t// what is required from this methods.\n\t$.extend( DataTable.ext.type.detect, [\n\t\t// Plain numbers - first since V8 detects some plain numbers as dates\n\t\t// e.g. Date.parse('55') (but not all, e.g. Date.parse('22')...).\n\t\tfunction ( d, settings )\n\t\t{\n\t\t\tvar decimal = settings.oLanguage.sDecimal;\n\t\t\treturn _isNumber( d, decimal ) ? 'num'+decimal : null;\n\t\t},\n\t\n\t\t// Dates (only those recognised by the browser's Date.parse)\n\t\tfunction ( d, settings )\n\t\t{\n\t\t\t// V8 will remove any unknown characters at the start and end of the\n\t\t\t// expression, leading to false matches such as `$245.12` or `10%` being\n\t\t\t// a valid date. See forum thread 18941 for detail.\n\t\t\tif ( d && !(d instanceof Date) && ( ! _re_date_start.test(d) || ! _re_date_end.test(d) ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\t\t\tvar parsed = Date.parse(d);\n\t\t\treturn (parsed !== null && !isNaN(parsed)) || _empty(d) ? 'date' : null;\n\t\t},\n\t\n\t\t// Formatted numbers\n\t\tfunction ( d, settings )\n\t\t{\n\t\t\tvar decimal = settings.oLanguage.sDecimal;\n\t\t\treturn _isNumber( d, decimal, true ) ? 'num-fmt'+decimal : null;\n\t\t},\n\t\n\t\t// HTML numeric\n\t\tfunction ( d, settings )\n\t\t{\n\t\t\tvar decimal = settings.oLanguage.sDecimal;\n\t\t\treturn _htmlNumeric( d, decimal ) ? 'html-num'+decimal : null;\n\t\t},\n\t\n\t\t// HTML numeric, formatted\n\t\tfunction ( d, settings )\n\t\t{\n\t\t\tvar decimal = settings.oLanguage.sDecimal;\n\t\t\treturn _htmlNumeric( d, decimal, true ) ? 'html-num-fmt'+decimal : null;\n\t\t},\n\t\n\t\t// HTML (this is strict checking - there must be html)\n\t\tfunction ( d, settings )\n\t\t{\n\t\t\treturn _empty( d ) || (typeof d === 'string' && d.indexOf('<') !== -1) ?\n\t\t\t\t'html' : null;\n\t\t}\n\t] );\n\t\n\t\n\t\n\t// Filter formatting functions. See model.ext.ofnSearch for information about\n\t// what is required from these methods.\n\t// \n\t// Note that additional search methods are added for the html numbers and\n\t// html formatted numbers by `_addNumericSort()` when we know what the decimal\n\t// place is\n\t\n\t\n\t$.extend( DataTable.ext.type.search, {\n\t\thtml: function ( data ) {\n\t\t\treturn _empty(data) ?\n\t\t\t\tdata :\n\t\t\t\ttypeof data === 'string' ?\n\t\t\t\t\tdata\n\t\t\t\t\t\t.replace( _re_new_lines, \" \" )\n\t\t\t\t\t\t.replace( _re_html, \"\" ) :\n\t\t\t\t\t'';\n\t\t},\n\t\n\t\tstring: function ( data ) {\n\t\t\treturn _empty(data) ?\n\t\t\t\tdata :\n\t\t\t\ttypeof data === 'string' ?\n\t\t\t\t\tdata.replace( _re_new_lines, \" \" ) :\n\t\t\t\t\tdata;\n\t\t}\n\t} );\n\t\n\t\n\t\n\tvar __numericReplace = function ( d, decimalPlace, re1, re2 ) {\n\t\tif ( d !== 0 && (!d || d === '-') ) {\n\t\t\treturn -Infinity;\n\t\t}\n\t\n\t\t// If a decimal place other than `.` is used, it needs to be given to the\n\t\t// function so we can detect it and replace with a `.` which is the only\n\t\t// decimal place Javascript recognises - it is not locale aware.\n\t\tif ( decimalPlace ) {\n\t\t\td = _numToDecimal( d, decimalPlace );\n\t\t}\n\t\n\t\tif ( d.replace ) {\n\t\t\tif ( re1 ) {\n\t\t\t\td = d.replace( re1, '' );\n\t\t\t}\n\t\n\t\t\tif ( re2 ) {\n\t\t\t\td = d.replace( re2, '' );\n\t\t\t}\n\t\t}\n\t\n\t\treturn d * 1;\n\t};\n\t\n\t\n\t// Add the numeric 'deformatting' functions for sorting and search. This is done\n\t// in a function to provide an easy ability for the language options to add\n\t// additional methods if a non-period decimal place is used.\n\tfunction _addNumericSort ( decimalPlace ) {\n\t\t$.each(\n\t\t\t{\n\t\t\t\t// Plain numbers\n\t\t\t\t\"num\": function ( d ) {\n\t\t\t\t\treturn __numericReplace( d, decimalPlace );\n\t\t\t\t},\n\t\n\t\t\t\t// Formatted numbers\n\t\t\t\t\"num-fmt\": function ( d ) {\n\t\t\t\t\treturn __numericReplace( d, decimalPlace, _re_formatted_numeric );\n\t\t\t\t},\n\t\n\t\t\t\t// HTML numeric\n\t\t\t\t\"html-num\": function ( d ) {\n\t\t\t\t\treturn __numericReplace( d, decimalPlace, _re_html );\n\t\t\t\t},\n\t\n\t\t\t\t// HTML numeric, formatted\n\t\t\t\t\"html-num-fmt\": function ( d ) {\n\t\t\t\t\treturn __numericReplace( d, decimalPlace, _re_html, _re_formatted_numeric );\n\t\t\t\t}\n\t\t\t},\n\t\t\tfunction ( key, fn ) {\n\t\t\t\t// Add the ordering method\n\t\t\t\t_ext.type.order[ key+decimalPlace+'-pre' ] = fn;\n\t\n\t\t\t\t// For HTML types add a search formatter that will strip the HTML\n\t\t\t\tif ( key.match(/^html\\-/) ) {\n\t\t\t\t\t_ext.type.search[ key+decimalPlace ] = _ext.type.search.html;\n\t\t\t\t}\n\t\t\t}\n\t\t);\n\t}\n\t\n\t\n\t// Default sort methods\n\t$.extend( _ext.type.order, {\n\t\t// Dates\n\t\t\"date-pre\": function ( d ) {\n\t\t\treturn Date.parse( d ) || 0;\n\t\t},\n\t\n\t\t// html\n\t\t\"html-pre\": function ( a ) {\n\t\t\treturn _empty(a) ?\n\t\t\t\t'' :\n\t\t\t\ta.replace ?\n\t\t\t\t\ta.replace( /<.*?>/g, \"\" ).toLowerCase() :\n\t\t\t\t\ta+'';\n\t\t},\n\t\n\t\t// string\n\t\t\"string-pre\": function ( a ) {\n\t\t\t// This is a little complex, but faster than always calling toString,\n\t\t\t// http://jsperf.com/tostring-v-check\n\t\t\treturn _empty(a) ?\n\t\t\t\t'' :\n\t\t\t\ttypeof a === 'string' ?\n\t\t\t\t\ta.toLowerCase() :\n\t\t\t\t\t! a.toString ?\n\t\t\t\t\t\t'' :\n\t\t\t\t\t\ta.toString();\n\t\t},\n\t\n\t\t// string-asc and -desc are retained only for compatibility with the old\n\t\t// sort methods\n\t\t\"string-asc\": function ( x, y ) {\n\t\t\treturn ((x < y) ? -1 : ((x > y) ? 1 : 0));\n\t\t},\n\t\n\t\t\"string-desc\": function ( x, y ) {\n\t\t\treturn ((x < y) ? 1 : ((x > y) ? -1 : 0));\n\t\t}\n\t} );\n\t\n\t\n\t// Numeric sorting types - order doesn't matter here\n\t_addNumericSort( '' );\n\t\n\t\n\t$.extend( true, DataTable.ext.renderer, {\n\t\theader: {\n\t\t\t_: function ( settings, cell, column, classes ) {\n\t\t\t\t// No additional mark-up required\n\t\t\t\t// Attach a sort listener to update on sort - note that using the\n\t\t\t\t// `DT` namespace will allow the event to be removed automatically\n\t\t\t\t// on destroy, while the `dt` namespaced event is the one we are\n\t\t\t\t// listening for\n\t\t\t\t$(settings.nTable).on( 'order.dt.DT', function ( e, ctx, sorting, columns ) {\n\t\t\t\t\tif ( settings !== ctx ) { // need to check this this is the host\n\t\t\t\t\t\treturn;               // table, not a nested one\n\t\t\t\t\t}\n\t\n\t\t\t\t\tvar colIdx = column.idx;\n\t\n\t\t\t\t\tcell\n\t\t\t\t\t\t.removeClass(\n\t\t\t\t\t\t\tcolumn.sSortingClass +' '+\n\t\t\t\t\t\t\tclasses.sSortAsc +' '+\n\t\t\t\t\t\t\tclasses.sSortDesc\n\t\t\t\t\t\t)\n\t\t\t\t\t\t.addClass( columns[ colIdx ] == 'asc' ?\n\t\t\t\t\t\t\tclasses.sSortAsc : columns[ colIdx ] == 'desc' ?\n\t\t\t\t\t\t\t\tclasses.sSortDesc :\n\t\t\t\t\t\t\t\tcolumn.sSortingClass\n\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t\t},\n\t\n\t\t\tjqueryui: function ( settings, cell, column, classes ) {\n\t\t\t\t$('<div/>')\n\t\t\t\t\t.addClass( classes.sSortJUIWrapper )\n\t\t\t\t\t.append( cell.contents() )\n\t\t\t\t\t.append( $('<span/>')\n\t\t\t\t\t\t.addClass( classes.sSortIcon+' '+column.sSortingClassJUI )\n\t\t\t\t\t)\n\t\t\t\t\t.appendTo( cell );\n\t\n\t\t\t\t// Attach a sort listener to update on sort\n\t\t\t\t$(settings.nTable).on( 'order.dt.DT', function ( e, ctx, sorting, columns ) {\n\t\t\t\t\tif ( settings !== ctx ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\n\t\t\t\t\tvar colIdx = column.idx;\n\t\n\t\t\t\t\tcell\n\t\t\t\t\t\t.removeClass( classes.sSortAsc +\" \"+classes.sSortDesc )\n\t\t\t\t\t\t.addClass( columns[ colIdx ] == 'asc' ?\n\t\t\t\t\t\t\tclasses.sSortAsc : columns[ colIdx ] == 'desc' ?\n\t\t\t\t\t\t\t\tclasses.sSortDesc :\n\t\t\t\t\t\t\t\tcolumn.sSortingClass\n\t\t\t\t\t\t);\n\t\n\t\t\t\t\tcell\n\t\t\t\t\t\t.find( 'span.'+classes.sSortIcon )\n\t\t\t\t\t\t.removeClass(\n\t\t\t\t\t\t\tclasses.sSortJUIAsc +\" \"+\n\t\t\t\t\t\t\tclasses.sSortJUIDesc +\" \"+\n\t\t\t\t\t\t\tclasses.sSortJUI +\" \"+\n\t\t\t\t\t\t\tclasses.sSortJUIAscAllowed +\" \"+\n\t\t\t\t\t\t\tclasses.sSortJUIDescAllowed\n\t\t\t\t\t\t)\n\t\t\t\t\t\t.addClass( columns[ colIdx ] == 'asc' ?\n\t\t\t\t\t\t\tclasses.sSortJUIAsc : columns[ colIdx ] == 'desc' ?\n\t\t\t\t\t\t\t\tclasses.sSortJUIDesc :\n\t\t\t\t\t\t\t\tcolumn.sSortingClassJUI\n\t\t\t\t\t\t);\n\t\t\t\t} );\n\t\t\t}\n\t\t}\n\t} );\n\t\n\t/*\n\t * Public helper functions. These aren't used internally by DataTables, or\n\t * called by any of the options passed into DataTables, but they can be used\n\t * externally by developers working with DataTables. They are helper functions\n\t * to make working with DataTables a little bit easier.\n\t */\n\t\n\t/**\n\t * Helpers for `columns.render`.\n\t *\n\t * The options defined here can be used with the `columns.render` initialisation\n\t * option to provide a display renderer. The following functions are defined:\n\t *\n\t * * `number` - Will format numeric data (defined by `columns.data`) for\n\t *   display, retaining the original unformatted data for sorting and filtering.\n\t *   It takes 4 parameters:\n\t *   * `string` - Thousands grouping separator\n\t *   * `string` - Decimal point indicator\n\t *   * `integer` - Number of decimal points to show\n\t *   * `string` (optional) - Prefix.\n\t *\n\t * @example\n\t *   // Column definition using the number renderer\n\t *   {\n\t *     data: \"salary\",\n\t *     render: $.fn.dataTable.render.number( '\\'', '.', 0, '$' )\n\t *   }\n\t *\n\t * @namespace\n\t */\n\tDataTable.render = {\n\t\tnumber: function ( thousands, decimal, precision, prefix ) {\n\t\t\treturn {\n\t\t\t\tdisplay: function ( d ) {\n\t\t\t\t\tvar negative = d < 0 ? '-' : '';\n\t\t\t\t\td = Math.abs( parseFloat( d ) );\n\t\n\t\t\t\t\tvar intPart = parseInt( d, 10 );\n\t\t\t\t\tvar floatPart = precision ?\n\t\t\t\t\t\tdecimal+(d - intPart).toFixed( precision ).substring( 2 ):\n\t\t\t\t\t\t'';\n\t\n\t\t\t\t\treturn negative + (prefix||'') +\n\t\t\t\t\t\tintPart.toString().replace(\n\t\t\t\t\t\t\t/\\B(?=(\\d{3})+(?!\\d))/g, thousands\n\t\t\t\t\t\t) +\n\t\t\t\t\t\tfloatPart;\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t};\n\t\n\t\n\t/*\n\t * This is really a good bit rubbish this method of exposing the internal methods\n\t * publicly... - To be fixed in 2.0 using methods on the prototype\n\t */\n\t\n\t\n\t/**\n\t * Create a wrapper function for exporting an internal functions to an external API.\n\t *  @param {string} fn API function name\n\t *  @returns {function} wrapped function\n\t *  @memberof DataTable#internal\n\t */\n\tfunction _fnExternApiFunc (fn)\n\t{\n\t\treturn function() {\n\t\t\tvar args = [_fnSettingsFromNode( this[DataTable.ext.iApiIndex] )].concat(\n\t\t\t\tArray.prototype.slice.call(arguments)\n\t\t\t);\n\t\t\treturn DataTable.ext.internal[fn].apply( this, args );\n\t\t};\n\t}\n\t\n\t\n\t/**\n\t * Reference to internal functions for use by plug-in developers. Note that\n\t * these methods are references to internal functions and are considered to be\n\t * private. If you use these methods, be aware that they are liable to change\n\t * between versions.\n\t *  @namespace\n\t */\n\t$.extend( DataTable.ext.internal, {\n\t\t_fnExternApiFunc: _fnExternApiFunc,\n\t\t_fnBuildAjax: _fnBuildAjax,\n\t\t_fnAjaxUpdate: _fnAjaxUpdate,\n\t\t_fnAjaxParameters: _fnAjaxParameters,\n\t\t_fnAjaxUpdateDraw: _fnAjaxUpdateDraw,\n\t\t_fnAjaxDataSrc: _fnAjaxDataSrc,\n\t\t_fnAddColumn: _fnAddColumn,\n\t\t_fnColumnOptions: _fnColumnOptions,\n\t\t_fnAdjustColumnSizing: _fnAdjustColumnSizing,\n\t\t_fnVisibleToColumnIndex: _fnVisibleToColumnIndex,\n\t\t_fnColumnIndexToVisible: _fnColumnIndexToVisible,\n\t\t_fnVisbleColumns: _fnVisbleColumns,\n\t\t_fnGetColumns: _fnGetColumns,\n\t\t_fnColumnTypes: _fnColumnTypes,\n\t\t_fnApplyColumnDefs: _fnApplyColumnDefs,\n\t\t_fnHungarianMap: _fnHungarianMap,\n\t\t_fnCamelToHungarian: _fnCamelToHungarian,\n\t\t_fnLanguageCompat: _fnLanguageCompat,\n\t\t_fnBrowserDetect: _fnBrowserDetect,\n\t\t_fnAddData: _fnAddData,\n\t\t_fnAddTr: _fnAddTr,\n\t\t_fnNodeToDataIndex: _fnNodeToDataIndex,\n\t\t_fnNodeToColumnIndex: _fnNodeToColumnIndex,\n\t\t_fnGetCellData: _fnGetCellData,\n\t\t_fnSetCellData: _fnSetCellData,\n\t\t_fnSplitObjNotation: _fnSplitObjNotation,\n\t\t_fnGetObjectDataFn: _fnGetObjectDataFn,\n\t\t_fnSetObjectDataFn: _fnSetObjectDataFn,\n\t\t_fnGetDataMaster: _fnGetDataMaster,\n\t\t_fnClearTable: _fnClearTable,\n\t\t_fnDeleteIndex: _fnDeleteIndex,\n\t\t_fnInvalidate: _fnInvalidate,\n\t\t_fnGetRowElements: _fnGetRowElements,\n\t\t_fnCreateTr: _fnCreateTr,\n\t\t_fnBuildHead: _fnBuildHead,\n\t\t_fnDrawHead: _fnDrawHead,\n\t\t_fnDraw: _fnDraw,\n\t\t_fnReDraw: _fnReDraw,\n\t\t_fnAddOptionsHtml: _fnAddOptionsHtml,\n\t\t_fnDetectHeader: _fnDetectHeader,\n\t\t_fnGetUniqueThs: _fnGetUniqueThs,\n\t\t_fnFeatureHtmlFilter: _fnFeatureHtmlFilter,\n\t\t_fnFilterComplete: _fnFilterComplete,\n\t\t_fnFilterCustom: _fnFilterCustom,\n\t\t_fnFilterColumn: _fnFilterColumn,\n\t\t_fnFilter: _fnFilter,\n\t\t_fnFilterCreateSearch: _fnFilterCreateSearch,\n\t\t_fnEscapeRegex: _fnEscapeRegex,\n\t\t_fnFilterData: _fnFilterData,\n\t\t_fnFeatureHtmlInfo: _fnFeatureHtmlInfo,\n\t\t_fnUpdateInfo: _fnUpdateInfo,\n\t\t_fnInfoMacros: _fnInfoMacros,\n\t\t_fnInitialise: _fnInitialise,\n\t\t_fnInitComplete: _fnInitComplete,\n\t\t_fnLengthChange: _fnLengthChange,\n\t\t_fnFeatureHtmlLength: _fnFeatureHtmlLength,\n\t\t_fnFeatureHtmlPaginate: _fnFeatureHtmlPaginate,\n\t\t_fnPageChange: _fnPageChange,\n\t\t_fnFeatureHtmlProcessing: _fnFeatureHtmlProcessing,\n\t\t_fnProcessingDisplay: _fnProcessingDisplay,\n\t\t_fnFeatureHtmlTable: _fnFeatureHtmlTable,\n\t\t_fnScrollDraw: _fnScrollDraw,\n\t\t_fnApplyToChildren: _fnApplyToChildren,\n\t\t_fnCalculateColumnWidths: _fnCalculateColumnWidths,\n\t\t_fnThrottle: _fnThrottle,\n\t\t_fnConvertToWidth: _fnConvertToWidth,\n\t\t_fnScrollingWidthAdjust: _fnScrollingWidthAdjust,\n\t\t_fnGetWidestNode: _fnGetWidestNode,\n\t\t_fnGetMaxLenString: _fnGetMaxLenString,\n\t\t_fnStringToCss: _fnStringToCss,\n\t\t_fnScrollBarWidth: _fnScrollBarWidth,\n\t\t_fnSortFlatten: _fnSortFlatten,\n\t\t_fnSort: _fnSort,\n\t\t_fnSortAria: _fnSortAria,\n\t\t_fnSortListener: _fnSortListener,\n\t\t_fnSortAttachListener: _fnSortAttachListener,\n\t\t_fnSortingClasses: _fnSortingClasses,\n\t\t_fnSortData: _fnSortData,\n\t\t_fnSaveState: _fnSaveState,\n\t\t_fnLoadState: _fnLoadState,\n\t\t_fnSettingsFromNode: _fnSettingsFromNode,\n\t\t_fnLog: _fnLog,\n\t\t_fnMap: _fnMap,\n\t\t_fnBindAction: _fnBindAction,\n\t\t_fnCallbackReg: _fnCallbackReg,\n\t\t_fnCallbackFire: _fnCallbackFire,\n\t\t_fnLengthOverflow: _fnLengthOverflow,\n\t\t_fnRenderer: _fnRenderer,\n\t\t_fnDataSource: _fnDataSource,\n\t\t_fnRowAttributes: _fnRowAttributes,\n\t\t_fnCalculateEnd: function () {} // Used by a lot of plug-ins, but redundant\n\t\t                                // in 1.10, so this dead-end function is\n\t\t                                // added to prevent errors\n\t} );\n\t\n\n\t// jQuery access\n\t$.fn.dataTable = DataTable;\n\n\t// Legacy aliases\n\t$.fn.dataTableSettings = DataTable.settings;\n\t$.fn.dataTableExt = DataTable.ext;\n\n\t// With a capital `D` we return a DataTables API instance rather than a\n\t// jQuery object\n\t$.fn.DataTable = function ( opts ) {\n\t\treturn $(this).dataTable( opts ).api();\n\t};\n\n\t// All properties that are available to $.fn.dataTable should also be\n\t// available on $.fn.DataTable\n\t$.each( DataTable, function ( prop, val ) {\n\t\t$.fn.DataTable[ prop ] = val;\n\t} );\n\n\n\t// Information about events fired by DataTables - for documentation.\n\t/**\n\t * Draw event, fired whenever the table is redrawn on the page, at the same\n\t * point as fnDrawCallback. This may be useful for binding events or\n\t * performing calculations when the table is altered at all.\n\t *  @name DataTable#draw.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t */\n\n\t/**\n\t * Search event, fired when the searching applied to the table (using the\n\t * built-in global search, or column filters) is altered.\n\t *  @name DataTable#search.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t */\n\n\t/**\n\t * Page change event, fired when the paging of the table is altered.\n\t *  @name DataTable#page.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t */\n\n\t/**\n\t * Order event, fired when the ordering applied to the table is altered.\n\t *  @name DataTable#order.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t */\n\n\t/**\n\t * DataTables initialisation complete event, fired when the table is fully\n\t * drawn, including Ajax data loaded, if Ajax data is required.\n\t *  @name DataTable#init.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} oSettings DataTables settings object\n\t *  @param {object} json The JSON object request from the server - only\n\t *    present if client-side Ajax sourced data is used</li></ol>\n\t */\n\n\t/**\n\t * State save event, fired when the table has changed state a new state save\n\t * is required. This event allows modification of the state saving object\n\t * prior to actually doing the save, including addition or other state\n\t * properties (for plug-ins) or modification of a DataTables core property.\n\t *  @name DataTable#stateSaveParams.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} oSettings DataTables settings object\n\t *  @param {object} json The state information to be saved\n\t */\n\n\t/**\n\t * State load event, fired when the table is loading state from the stored\n\t * data, but prior to the settings object being modified by the saved state\n\t * - allowing modification of the saved state is required or loading of\n\t * state for a plug-in.\n\t *  @name DataTable#stateLoadParams.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} oSettings DataTables settings object\n\t *  @param {object} json The saved state information\n\t */\n\n\t/**\n\t * State loaded event, fired when state has been loaded from stored data and\n\t * the settings object has been modified by the loaded data.\n\t *  @name DataTable#stateLoaded.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} oSettings DataTables settings object\n\t *  @param {object} json The saved state information\n\t */\n\n\t/**\n\t * Processing event, fired when DataTables is doing some kind of processing\n\t * (be it, order, searcg or anything else). It can be used to indicate to\n\t * the end user that there is something happening, or that something has\n\t * finished.\n\t *  @name DataTable#processing.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} oSettings DataTables settings object\n\t *  @param {boolean} bShow Flag for if DataTables is doing processing or not\n\t */\n\n\t/**\n\t * Ajax (XHR) event, fired whenever an Ajax request is completed from a\n\t * request to made to the server for new data. This event is called before\n\t * DataTables processed the returned data, so it can also be used to pre-\n\t * process the data returned from the server, if needed.\n\t *\n\t * Note that this trigger is called in `fnServerData`, if you override\n\t * `fnServerData` and which to use this event, you need to trigger it in you\n\t * success function.\n\t *  @name DataTable#xhr.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t *  @param {object} json JSON returned from the server\n\t *\n\t *  @example\n\t *     // Use a custom property returned from the server in another DOM element\n\t *     $('#table').dataTable().on('xhr.dt', function (e, settings, json) {\n\t *       $('#status').html( json.status );\n\t *     } );\n\t *\n\t *  @example\n\t *     // Pre-process the data returned from the server\n\t *     $('#table').dataTable().on('xhr.dt', function (e, settings, json) {\n\t *       for ( var i=0, ien=json.aaData.length ; i<ien ; i++ ) {\n\t *         json.aaData[i].sum = json.aaData[i].one + json.aaData[i].two;\n\t *       }\n\t *       // Note no return - manipulate the data directly in the JSON object.\n\t *     } );\n\t */\n\n\t/**\n\t * Destroy event, fired when the DataTable is destroyed by calling fnDestroy\n\t * or passing the bDestroy:true parameter in the initialisation object. This\n\t * can be used to remove bound events, added DOM nodes, etc.\n\t *  @name DataTable#destroy.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t */\n\n\t/**\n\t * Page length change event, fired when number of records to show on each\n\t * page (the length) is changed.\n\t *  @name DataTable#length.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t *  @param {integer} len New length\n\t */\n\n\t/**\n\t * Column sizing has changed.\n\t *  @name DataTable#column-sizing.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t */\n\n\t/**\n\t * Column visibility has changed.\n\t *  @name DataTable#column-visibility.dt\n\t *  @event\n\t *  @param {event} e jQuery event object\n\t *  @param {object} o DataTables settings object {@link DataTable.models.oSettings}\n\t *  @param {int} column Column index\n\t *  @param {bool} vis `false` if column now hidden, or `true` if visible\n\t */\n\n\treturn $.fn.dataTable;\n}));\n\n}(window, document));\n\n"
  },
  {
    "path": "public/admin/js/plugins/datapicker/bootstrap-datepicker.js",
    "content": "/* =========================================================\n * bootstrap-datepicker.js\n * Repo: https://github.com/eternicode/bootstrap-datepicker/\n * Demo: http://eternicode.github.io/bootstrap-datepicker/\n * Docs: http://bootstrap-datepicker.readthedocs.org/\n * Forked from http://www.eyecon.ro/bootstrap-datepicker\n * =========================================================\n * Started by Stefan Petre; improvements by Andrew Rowls + contributors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ========================================================= */\n\n(function($, undefined){\n\n\tvar $window = $(window);\n\n\tfunction UTCDate(){\n\t\treturn new Date(Date.UTC.apply(Date, arguments));\n\t}\n\tfunction UTCToday(){\n\t\tvar today = new Date();\n\t\treturn UTCDate(today.getFullYear(), today.getMonth(), today.getDate());\n\t}\n\tfunction alias(method){\n\t\treturn function(){\n\t\t\treturn this[method].apply(this, arguments);\n\t\t};\n\t}\n\n\tvar DateArray = (function(){\n\t\tvar extras = {\n\t\t\tget: function(i){\n\t\t\t\treturn this.slice(i)[0];\n\t\t\t},\n\t\t\tcontains: function(d){\n\t\t\t\t// Array.indexOf is not cross-browser;\n\t\t\t\t// $.inArray doesn't work with Dates\n\t\t\t\tvar val = d && d.valueOf();\n\t\t\t\tfor (var i=0, l=this.length; i < l; i++)\n\t\t\t\t\tif (this[i].valueOf() === val)\n\t\t\t\t\t\treturn i;\n\t\t\t\treturn -1;\n\t\t\t},\n\t\t\tremove: function(i){\n\t\t\t\tthis.splice(i,1);\n\t\t\t},\n\t\t\treplace: function(new_array){\n\t\t\t\tif (!new_array)\n\t\t\t\t\treturn;\n\t\t\t\tif (!$.isArray(new_array))\n\t\t\t\t\tnew_array = [new_array];\n\t\t\t\tthis.clear();\n\t\t\t\tthis.push.apply(this, new_array);\n\t\t\t},\n\t\t\tclear: function(){\n\t\t\t\tthis.splice(0);\n\t\t\t},\n\t\t\tcopy: function(){\n\t\t\t\tvar a = new DateArray();\n\t\t\t\ta.replace(this);\n\t\t\t\treturn a;\n\t\t\t}\n\t\t};\n\n\t\treturn function(){\n\t\t\tvar a = [];\n\t\t\ta.push.apply(a, arguments);\n\t\t\t$.extend(a, extras);\n\t\t\treturn a;\n\t\t};\n\t})();\n\n\n\t// Picker object\n\n\tvar Datepicker = function(element, options){\n\t\tthis.dates = new DateArray();\n\t\tthis.viewDate = UTCToday();\n\t\tthis.focusDate = null;\n\n\t\tthis._process_options(options);\n\n\t\tthis.element = $(element);\n\t\tthis.isInline = false;\n\t\tthis.isInput = this.element.is('input');\n\t\tthis.component = this.element.is('.date') ? this.element.find('.add-on, .input-group-addon, .btn') : false;\n\t\tthis.hasInput = this.component && this.element.find('input').length;\n\t\tif (this.component && this.component.length === 0)\n\t\t\tthis.component = false;\n\n\t\tthis.picker = $(DPGlobal.template);\n\t\tthis._buildEvents();\n\t\tthis._attachEvents();\n\n\t\tif (this.isInline){\n\t\t\tthis.picker.addClass('datepicker-inline').appendTo(this.element);\n\t\t}\n\t\telse {\n\t\t\tthis.picker.addClass('datepicker-dropdown dropdown-menu');\n\t\t}\n\n\t\tif (this.o.rtl){\n\t\t\tthis.picker.addClass('datepicker-rtl');\n\t\t}\n\n\t\tthis.viewMode = this.o.startView;\n\n\t\tif (this.o.calendarWeeks)\n\t\t\tthis.picker.find('tfoot th.today')\n\t\t\t\t\t\t.attr('colspan', function(i, val){\n\t\t\t\t\t\t\treturn parseInt(val) + 1;\n\t\t\t\t\t\t});\n\n\t\tthis._allow_update = false;\n\n\t\tthis.setStartDate(this._o.startDate);\n\t\tthis.setEndDate(this._o.endDate);\n\t\tthis.setDaysOfWeekDisabled(this.o.daysOfWeekDisabled);\n\n\t\tthis.fillDow();\n\t\tthis.fillMonths();\n\n\t\tthis._allow_update = true;\n\n\t\tthis.update();\n\t\tthis.showMode();\n\n\t\tif (this.isInline){\n\t\t\tthis.show();\n\t\t}\n\t};\n\n\tDatepicker.prototype = {\n\t\tconstructor: Datepicker,\n\n\t\t_process_options: function(opts){\n\t\t\t// Store raw options for reference\n\t\t\tthis._o = $.extend({}, this._o, opts);\n\t\t\t// Processed options\n\t\t\tvar o = this.o = $.extend({}, this._o);\n\n\t\t\t// Check if \"de-DE\" style date is available, if not language should\n\t\t\t// fallback to 2 letter code eg \"de\"\n\t\t\tvar lang = o.language;\n\t\t\tif (!dates[lang]){\n\t\t\t\tlang = lang.split('-')[0];\n\t\t\t\tif (!dates[lang])\n\t\t\t\t\tlang = defaults.language;\n\t\t\t}\n\t\t\to.language = lang;\n\n\t\t\tswitch (o.startView){\n\t\t\t\tcase 2:\n\t\t\t\tcase 'decade':\n\t\t\t\t\to.startView = 2;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 1:\n\t\t\t\tcase 'year':\n\t\t\t\t\to.startView = 1;\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\to.startView = 0;\n\t\t\t}\n\n\t\t\tswitch (o.minViewMode){\n\t\t\t\tcase 1:\n\t\t\t\tcase 'months':\n\t\t\t\t\to.minViewMode = 1;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 2:\n\t\t\t\tcase 'years':\n\t\t\t\t\to.minViewMode = 2;\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\to.minViewMode = 0;\n\t\t\t}\n\n\t\t\to.startView = Math.max(o.startView, o.minViewMode);\n\n\t\t\t// true, false, or Number > 0\n\t\t\tif (o.multidate !== true){\n\t\t\t\to.multidate = Number(o.multidate) || false;\n\t\t\t\tif (o.multidate !== false)\n\t\t\t\t\to.multidate = Math.max(0, o.multidate);\n\t\t\t\telse\n\t\t\t\t\to.multidate = 1;\n\t\t\t}\n\t\t\to.multidateSeparator = String(o.multidateSeparator);\n\n\t\t\to.weekStart %= 7;\n\t\t\to.weekEnd = ((o.weekStart + 6) % 7);\n\n\t\t\tvar format = DPGlobal.parseFormat(o.format);\n\t\t\tif (o.startDate !== -Infinity){\n\t\t\t\tif (!!o.startDate){\n\t\t\t\t\tif (o.startDate instanceof Date)\n\t\t\t\t\t\to.startDate = this._local_to_utc(this._zero_time(o.startDate));\n\t\t\t\t\telse\n\t\t\t\t\t\to.startDate = DPGlobal.parseDate(o.startDate, format, o.language);\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\to.startDate = -Infinity;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (o.endDate !== Infinity){\n\t\t\t\tif (!!o.endDate){\n\t\t\t\t\tif (o.endDate instanceof Date)\n\t\t\t\t\t\to.endDate = this._local_to_utc(this._zero_time(o.endDate));\n\t\t\t\t\telse\n\t\t\t\t\t\to.endDate = DPGlobal.parseDate(o.endDate, format, o.language);\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\to.endDate = Infinity;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\to.daysOfWeekDisabled = o.daysOfWeekDisabled||[];\n\t\t\tif (!$.isArray(o.daysOfWeekDisabled))\n\t\t\t\to.daysOfWeekDisabled = o.daysOfWeekDisabled.split(/[,\\s]*/);\n\t\t\to.daysOfWeekDisabled = $.map(o.daysOfWeekDisabled, function(d){\n\t\t\t\treturn parseInt(d, 10);\n\t\t\t});\n\n\t\t\tvar plc = String(o.orientation).toLowerCase().split(/\\s+/g),\n\t\t\t\t_plc = o.orientation.toLowerCase();\n\t\t\tplc = $.grep(plc, function(word){\n\t\t\t\treturn (/^auto|left|right|top|bottom$/).test(word);\n\t\t\t});\n\t\t\to.orientation = {x: 'auto', y: 'auto'};\n\t\t\tif (!_plc || _plc === 'auto')\n\t\t\t\t; // no action\n\t\t\telse if (plc.length === 1){\n\t\t\t\tswitch (plc[0]){\n\t\t\t\t\tcase 'top':\n\t\t\t\t\tcase 'bottom':\n\t\t\t\t\t\to.orientation.y = plc[0];\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'left':\n\t\t\t\t\tcase 'right':\n\t\t\t\t\t\to.orientation.x = plc[0];\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\t_plc = $.grep(plc, function(word){\n\t\t\t\t\treturn (/^left|right$/).test(word);\n\t\t\t\t});\n\t\t\t\to.orientation.x = _plc[0] || 'auto';\n\n\t\t\t\t_plc = $.grep(plc, function(word){\n\t\t\t\t\treturn (/^top|bottom$/).test(word);\n\t\t\t\t});\n\t\t\t\to.orientation.y = _plc[0] || 'auto';\n\t\t\t}\n\t\t},\n\t\t_events: [],\n\t\t_secondaryEvents: [],\n\t\t_applyEvents: function(evs){\n\t\t\tfor (var i=0, el, ch, ev; i < evs.length; i++){\n\t\t\t\tel = evs[i][0];\n\t\t\t\tif (evs[i].length === 2){\n\t\t\t\t\tch = undefined;\n\t\t\t\t\tev = evs[i][1];\n\t\t\t\t}\n\t\t\t\telse if (evs[i].length === 3){\n\t\t\t\t\tch = evs[i][1];\n\t\t\t\t\tev = evs[i][2];\n\t\t\t\t}\n\t\t\t\tel.on(ev, ch);\n\t\t\t}\n\t\t},\n\t\t_unapplyEvents: function(evs){\n\t\t\tfor (var i=0, el, ev, ch; i < evs.length; i++){\n\t\t\t\tel = evs[i][0];\n\t\t\t\tif (evs[i].length === 2){\n\t\t\t\t\tch = undefined;\n\t\t\t\t\tev = evs[i][1];\n\t\t\t\t}\n\t\t\t\telse if (evs[i].length === 3){\n\t\t\t\t\tch = evs[i][1];\n\t\t\t\t\tev = evs[i][2];\n\t\t\t\t}\n\t\t\t\tel.off(ev, ch);\n\t\t\t}\n\t\t},\n\t\t_buildEvents: function(){\n\t\t\tif (this.isInput){ // single input\n\t\t\t\tthis._events = [\n\t\t\t\t\t[this.element, {\n\t\t\t\t\t\tfocus: $.proxy(this.show, this),\n\t\t\t\t\t\tkeyup: $.proxy(function(e){\n\t\t\t\t\t\t\tif ($.inArray(e.keyCode, [27,37,39,38,40,32,13,9]) === -1)\n\t\t\t\t\t\t\t\tthis.update();\n\t\t\t\t\t\t}, this),\n\t\t\t\t\t\tkeydown: $.proxy(this.keydown, this)\n\t\t\t\t\t}]\n\t\t\t\t];\n\t\t\t}\n\t\t\telse if (this.component && this.hasInput){ // component: input + button\n\t\t\t\tthis._events = [\n\t\t\t\t\t// For components that are not readonly, allow keyboard nav\n\t\t\t\t\t[this.element.find('input'), {\n\t\t\t\t\t\tfocus: $.proxy(this.show, this),\n\t\t\t\t\t\tkeyup: $.proxy(function(e){\n\t\t\t\t\t\t\tif ($.inArray(e.keyCode, [27,37,39,38,40,32,13,9]) === -1)\n\t\t\t\t\t\t\t\tthis.update();\n\t\t\t\t\t\t}, this),\n\t\t\t\t\t\tkeydown: $.proxy(this.keydown, this)\n\t\t\t\t\t}],\n\t\t\t\t\t[this.component, {\n\t\t\t\t\t\tclick: $.proxy(this.show, this)\n\t\t\t\t\t}]\n\t\t\t\t];\n\t\t\t}\n\t\t\telse if (this.element.is('div')){  // inline datepicker\n\t\t\t\tthis.isInline = true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis._events = [\n\t\t\t\t\t[this.element, {\n\t\t\t\t\t\tclick: $.proxy(this.show, this)\n\t\t\t\t\t}]\n\t\t\t\t];\n\t\t\t}\n\t\t\tthis._events.push(\n\t\t\t\t// Component: listen for blur on element descendants\n\t\t\t\t[this.element, '*', {\n\t\t\t\t\tblur: $.proxy(function(e){\n\t\t\t\t\t\tthis._focused_from = e.target;\n\t\t\t\t\t}, this)\n\t\t\t\t}],\n\t\t\t\t// Input: listen for blur on element\n\t\t\t\t[this.element, {\n\t\t\t\t\tblur: $.proxy(function(e){\n\t\t\t\t\t\tthis._focused_from = e.target;\n\t\t\t\t\t}, this)\n\t\t\t\t}]\n\t\t\t);\n\n\t\t\tthis._secondaryEvents = [\n\t\t\t\t[this.picker, {\n\t\t\t\t\tclick: $.proxy(this.click, this)\n\t\t\t\t}],\n\t\t\t\t[$(window), {\n\t\t\t\t\tresize: $.proxy(this.place, this)\n\t\t\t\t}],\n\t\t\t\t[$(document), {\n\t\t\t\t\t'mousedown touchstart': $.proxy(function(e){\n\t\t\t\t\t\t// Clicked outside the datepicker, hide it\n\t\t\t\t\t\tif (!(\n\t\t\t\t\t\t\tthis.element.is(e.target) ||\n\t\t\t\t\t\t\tthis.element.find(e.target).length ||\n\t\t\t\t\t\t\tthis.picker.is(e.target) ||\n\t\t\t\t\t\t\tthis.picker.find(e.target).length\n\t\t\t\t\t\t)){\n\t\t\t\t\t\t\tthis.hide();\n\t\t\t\t\t\t}\n\t\t\t\t\t}, this)\n\t\t\t\t}]\n\t\t\t];\n\t\t},\n\t\t_attachEvents: function(){\n\t\t\tthis._detachEvents();\n\t\t\tthis._applyEvents(this._events);\n\t\t},\n\t\t_detachEvents: function(){\n\t\t\tthis._unapplyEvents(this._events);\n\t\t},\n\t\t_attachSecondaryEvents: function(){\n\t\t\tthis._detachSecondaryEvents();\n\t\t\tthis._applyEvents(this._secondaryEvents);\n\t\t},\n\t\t_detachSecondaryEvents: function(){\n\t\t\tthis._unapplyEvents(this._secondaryEvents);\n\t\t},\n\t\t_trigger: function(event, altdate){\n\t\t\tvar date = altdate || this.dates.get(-1),\n\t\t\t\tlocal_date = this._utc_to_local(date);\n\n\t\t\tthis.element.trigger({\n\t\t\t\ttype: event,\n\t\t\t\tdate: local_date,\n\t\t\t\tdates: $.map(this.dates, this._utc_to_local),\n\t\t\t\tformat: $.proxy(function(ix, format){\n\t\t\t\t\tif (arguments.length === 0){\n\t\t\t\t\t\tix = this.dates.length - 1;\n\t\t\t\t\t\tformat = this.o.format;\n\t\t\t\t\t}\n\t\t\t\t\telse if (typeof ix === 'string'){\n\t\t\t\t\t\tformat = ix;\n\t\t\t\t\t\tix = this.dates.length - 1;\n\t\t\t\t\t}\n\t\t\t\t\tformat = format || this.o.format;\n\t\t\t\t\tvar date = this.dates.get(ix);\n\t\t\t\t\treturn DPGlobal.formatDate(date, format, this.o.language);\n\t\t\t\t}, this)\n\t\t\t});\n\t\t},\n\n\t\tshow: function(){\n\t\t\tif (!this.isInline)\n\t\t\t\tthis.picker.appendTo('body');\n\t\t\tthis.picker.show();\n\t\t\tthis.place();\n\t\t\tthis._attachSecondaryEvents();\n\t\t\tthis._trigger('show');\n\t\t},\n\n\t\thide: function(){\n\t\t\tif (this.isInline)\n\t\t\t\treturn;\n\t\t\tif (!this.picker.is(':visible'))\n\t\t\t\treturn;\n\t\t\tthis.focusDate = null;\n\t\t\tthis.picker.hide().detach();\n\t\t\tthis._detachSecondaryEvents();\n\t\t\tthis.viewMode = this.o.startView;\n\t\t\tthis.showMode();\n\n\t\t\tif (\n\t\t\t\tthis.o.forceParse &&\n\t\t\t\t(\n\t\t\t\t\tthis.isInput && this.element.val() ||\n\t\t\t\t\tthis.hasInput && this.element.find('input').val()\n\t\t\t\t)\n\t\t\t)\n\t\t\t\tthis.setValue();\n\t\t\tthis._trigger('hide');\n\t\t},\n\n\t\tremove: function(){\n\t\t\tthis.hide();\n\t\t\tthis._detachEvents();\n\t\t\tthis._detachSecondaryEvents();\n\t\t\tthis.picker.remove();\n\t\t\tdelete this.element.data().datepicker;\n\t\t\tif (!this.isInput){\n\t\t\t\tdelete this.element.data().date;\n\t\t\t}\n\t\t},\n\n\t\t_utc_to_local: function(utc){\n\t\t\treturn utc && new Date(utc.getTime() + (utc.getTimezoneOffset()*60000));\n\t\t},\n\t\t_local_to_utc: function(local){\n\t\t\treturn local && new Date(local.getTime() - (local.getTimezoneOffset()*60000));\n\t\t},\n\t\t_zero_time: function(local){\n\t\t\treturn local && new Date(local.getFullYear(), local.getMonth(), local.getDate());\n\t\t},\n\t\t_zero_utc_time: function(utc){\n\t\t\treturn utc && new Date(Date.UTC(utc.getUTCFullYear(), utc.getUTCMonth(), utc.getUTCDate()));\n\t\t},\n\n\t\tgetDates: function(){\n\t\t\treturn $.map(this.dates, this._utc_to_local);\n\t\t},\n\n\t\tgetUTCDates: function(){\n\t\t\treturn $.map(this.dates, function(d){\n\t\t\t\treturn new Date(d);\n\t\t\t});\n\t\t},\n\n\t\tgetDate: function(){\n\t\t\treturn this._utc_to_local(this.getUTCDate());\n\t\t},\n\n\t\tgetUTCDate: function(){\n\t\t\treturn new Date(this.dates.get(-1));\n\t\t},\n\n\t\tsetDates: function(){\n\t\t\tvar args = $.isArray(arguments[0]) ? arguments[0] : arguments;\n\t\t\tthis.update.apply(this, args);\n\t\t\tthis._trigger('changeDate');\n\t\t\tthis.setValue();\n\t\t},\n\n\t\tsetUTCDates: function(){\n\t\t\tvar args = $.isArray(arguments[0]) ? arguments[0] : arguments;\n\t\t\tthis.update.apply(this, $.map(args, this._utc_to_local));\n\t\t\tthis._trigger('changeDate');\n\t\t\tthis.setValue();\n\t\t},\n\n\t\tsetDate: alias('setDates'),\n\t\tsetUTCDate: alias('setUTCDates'),\n\n\t\tsetValue: function(){\n\t\t\tvar formatted = this.getFormattedDate();\n\t\t\tif (!this.isInput){\n\t\t\t\tif (this.component){\n\t\t\t\t\tthis.element.find('input').val(formatted).change();\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.element.val(formatted).change();\n\t\t\t}\n\t\t},\n\n\t\tgetFormattedDate: function(format){\n\t\t\tif (format === undefined)\n\t\t\t\tformat = this.o.format;\n\n\t\t\tvar lang = this.o.language;\n\t\t\treturn $.map(this.dates, function(d){\n\t\t\t\treturn DPGlobal.formatDate(d, format, lang);\n\t\t\t}).join(this.o.multidateSeparator);\n\t\t},\n\n\t\tsetStartDate: function(startDate){\n\t\t\tthis._process_options({startDate: startDate});\n\t\t\tthis.update();\n\t\t\tthis.updateNavArrows();\n\t\t},\n\n\t\tsetEndDate: function(endDate){\n\t\t\tthis._process_options({endDate: endDate});\n\t\t\tthis.update();\n\t\t\tthis.updateNavArrows();\n\t\t},\n\n\t\tsetDaysOfWeekDisabled: function(daysOfWeekDisabled){\n\t\t\tthis._process_options({daysOfWeekDisabled: daysOfWeekDisabled});\n\t\t\tthis.update();\n\t\t\tthis.updateNavArrows();\n\t\t},\n\n\t\tplace: function(){\n\t\t\tif (this.isInline)\n\t\t\t\treturn;\n\t\t\tvar calendarWidth = this.picker.outerWidth(),\n\t\t\t\tcalendarHeight = this.picker.outerHeight(),\n\t\t\t\tvisualPadding = 10,\n\t\t\t\twindowWidth = $window.width(),\n\t\t\t\twindowHeight = $window.height(),\n\t\t\t\tscrollTop = $window.scrollTop();\n\n\t\t\tvar zIndex = parseInt(this.element.parents().filter(function(){\n\t\t\t\t\treturn $(this).css('z-index') !== 'auto';\n\t\t\t\t}).first().css('z-index'))+10;\n\t\t\tvar offset = this.component ? this.component.parent().offset() : this.element.offset();\n\t\t\tvar height = this.component ? this.component.outerHeight(true) : this.element.outerHeight(false);\n\t\t\tvar width = this.component ? this.component.outerWidth(true) : this.element.outerWidth(false);\n\t\t\tvar left = offset.left,\n\t\t\t\ttop = offset.top;\n\n\t\t\tthis.picker.removeClass(\n\t\t\t\t'datepicker-orient-top datepicker-orient-bottom '+\n\t\t\t\t'datepicker-orient-right datepicker-orient-left'\n\t\t\t);\n\n\t\t\tif (this.o.orientation.x !== 'auto'){\n\t\t\t\tthis.picker.addClass('datepicker-orient-' + this.o.orientation.x);\n\t\t\t\tif (this.o.orientation.x === 'right')\n\t\t\t\t\tleft -= calendarWidth - width;\n\t\t\t}\n\t\t\t// auto x orientation is best-placement: if it crosses a window\n\t\t\t// edge, fudge it sideways\n\t\t\telse {\n\t\t\t\t// Default to left\n\t\t\t\tthis.picker.addClass('datepicker-orient-left');\n\t\t\t\tif (offset.left < 0)\n\t\t\t\t\tleft -= offset.left - visualPadding;\n\t\t\t\telse if (offset.left + calendarWidth > windowWidth)\n\t\t\t\t\tleft = windowWidth - calendarWidth - visualPadding;\n\t\t\t}\n\n\t\t\t// auto y orientation is best-situation: top or bottom, no fudging,\n\t\t\t// decision based on which shows more of the calendar\n\t\t\tvar yorient = this.o.orientation.y,\n\t\t\t\ttop_overflow, bottom_overflow;\n\t\t\tif (yorient === 'auto'){\n\t\t\t\ttop_overflow = -scrollTop + offset.top - calendarHeight;\n\t\t\t\tbottom_overflow = scrollTop + windowHeight - (offset.top + height + calendarHeight);\n\t\t\t\tif (Math.max(top_overflow, bottom_overflow) === bottom_overflow)\n\t\t\t\t\tyorient = 'top';\n\t\t\t\telse\n\t\t\t\t\tyorient = 'bottom';\n\t\t\t}\n\t\t\tthis.picker.addClass('datepicker-orient-' + yorient);\n\t\t\tif (yorient === 'top')\n\t\t\t\ttop += height;\n\t\t\telse\n\t\t\t\ttop -= calendarHeight + parseInt(this.picker.css('padding-top'));\n\n\t\t\tthis.picker.css({\n\t\t\t\ttop: top,\n\t\t\t\tleft: left,\n\t\t\t\tzIndex: zIndex\n\t\t\t});\n\t\t},\n\n\t\t_allow_update: true,\n\t\tupdate: function(){\n\t\t\tif (!this._allow_update)\n\t\t\t\treturn;\n\n\t\t\tvar oldDates = this.dates.copy(),\n\t\t\t\tdates = [],\n\t\t\t\tfromArgs = false;\n\t\t\tif (arguments.length){\n\t\t\t\t$.each(arguments, $.proxy(function(i, date){\n\t\t\t\t\tif (date instanceof Date)\n\t\t\t\t\t\tdate = this._local_to_utc(date);\n\t\t\t\t\tdates.push(date);\n\t\t\t\t}, this));\n\t\t\t\tfromArgs = true;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdates = this.isInput\n\t\t\t\t\t\t? this.element.val()\n\t\t\t\t\t\t: this.element.data('date') || this.element.find('input').val();\n\t\t\t\tif (dates && this.o.multidate)\n\t\t\t\t\tdates = dates.split(this.o.multidateSeparator);\n\t\t\t\telse\n\t\t\t\t\tdates = [dates];\n\t\t\t\tdelete this.element.data().date;\n\t\t\t}\n\n\t\t\tdates = $.map(dates, $.proxy(function(date){\n\t\t\t\treturn DPGlobal.parseDate(date, this.o.format, this.o.language);\n\t\t\t}, this));\n\t\t\tdates = $.grep(dates, $.proxy(function(date){\n\t\t\t\treturn (\n\t\t\t\t\tdate < this.o.startDate ||\n\t\t\t\t\tdate > this.o.endDate ||\n\t\t\t\t\t!date\n\t\t\t\t);\n\t\t\t}, this), true);\n\t\t\tthis.dates.replace(dates);\n\n\t\t\tif (this.dates.length)\n\t\t\t\tthis.viewDate = new Date(this.dates.get(-1));\n\t\t\telse if (this.viewDate < this.o.startDate)\n\t\t\t\tthis.viewDate = new Date(this.o.startDate);\n\t\t\telse if (this.viewDate > this.o.endDate)\n\t\t\t\tthis.viewDate = new Date(this.o.endDate);\n\n\t\t\tif (fromArgs){\n\t\t\t\t// setting date by clicking\n\t\t\t\tthis.setValue();\n\t\t\t}\n\t\t\telse if (dates.length){\n\t\t\t\t// setting date by typing\n\t\t\t\tif (String(oldDates) !== String(this.dates))\n\t\t\t\t\tthis._trigger('changeDate');\n\t\t\t}\n\t\t\tif (!this.dates.length && oldDates.length)\n\t\t\t\tthis._trigger('clearDate');\n\n\t\t\tthis.fill();\n\t\t},\n\n\t\tfillDow: function(){\n\t\t\tvar dowCnt = this.o.weekStart,\n\t\t\t\thtml = '<tr>';\n\t\t\tif (this.o.calendarWeeks){\n\t\t\t\tvar cell = '<th class=\"cw\">&nbsp;</th>';\n\t\t\t\thtml += cell;\n\t\t\t\tthis.picker.find('.datepicker-days thead tr:first-child').prepend(cell);\n\t\t\t}\n\t\t\twhile (dowCnt < this.o.weekStart + 7){\n\t\t\t\thtml += '<th class=\"dow\">'+dates[this.o.language].daysMin[(dowCnt++)%7]+'</th>';\n\t\t\t}\n\t\t\thtml += '</tr>';\n\t\t\tthis.picker.find('.datepicker-days thead').append(html);\n\t\t},\n\n\t\tfillMonths: function(){\n\t\t\tvar html = '',\n\t\t\ti = 0;\n\t\t\twhile (i < 12){\n\t\t\t\thtml += '<span class=\"month\">'+dates[this.o.language].monthsShort[i++]+'</span>';\n\t\t\t}\n\t\t\tthis.picker.find('.datepicker-months td').html(html);\n\t\t},\n\n\t\tsetRange: function(range){\n\t\t\tif (!range || !range.length)\n\t\t\t\tdelete this.range;\n\t\t\telse\n\t\t\t\tthis.range = $.map(range, function(d){\n\t\t\t\t\treturn d.valueOf();\n\t\t\t\t});\n\t\t\tthis.fill();\n\t\t},\n\n\t\tgetClassNames: function(date){\n\t\t\tvar cls = [],\n\t\t\t\tyear = this.viewDate.getUTCFullYear(),\n\t\t\t\tmonth = this.viewDate.getUTCMonth(),\n\t\t\t\ttoday = new Date();\n\t\t\tif (date.getUTCFullYear() < year || (date.getUTCFullYear() === year && date.getUTCMonth() < month)){\n\t\t\t\tcls.push('old');\n\t\t\t}\n\t\t\telse if (date.getUTCFullYear() > year || (date.getUTCFullYear() === year && date.getUTCMonth() > month)){\n\t\t\t\tcls.push('new');\n\t\t\t}\n\t\t\tif (this.focusDate && date.valueOf() === this.focusDate.valueOf())\n\t\t\t\tcls.push('focused');\n\t\t\t// Compare internal UTC date with local today, not UTC today\n\t\t\tif (this.o.todayHighlight &&\n\t\t\t\tdate.getUTCFullYear() === today.getFullYear() &&\n\t\t\t\tdate.getUTCMonth() === today.getMonth() &&\n\t\t\t\tdate.getUTCDate() === today.getDate()){\n\t\t\t\tcls.push('today');\n\t\t\t}\n\t\t\tif (this.dates.contains(date) !== -1)\n\t\t\t\tcls.push('active');\n\t\t\tif (date.valueOf() < this.o.startDate || date.valueOf() > this.o.endDate ||\n\t\t\t\t$.inArray(date.getUTCDay(), this.o.daysOfWeekDisabled) !== -1){\n\t\t\t\tcls.push('disabled');\n\t\t\t}\n\t\t\tif (this.range){\n\t\t\t\tif (date > this.range[0] && date < this.range[this.range.length-1]){\n\t\t\t\t\tcls.push('range');\n\t\t\t\t}\n\t\t\t\tif ($.inArray(date.valueOf(), this.range) !== -1){\n\t\t\t\t\tcls.push('selected');\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn cls;\n\t\t},\n\n\t\tfill: function(){\n\t\t\tvar d = new Date(this.viewDate),\n\t\t\t\tyear = d.getUTCFullYear(),\n\t\t\t\tmonth = d.getUTCMonth(),\n\t\t\t\tstartYear = this.o.startDate !== -Infinity ? this.o.startDate.getUTCFullYear() : -Infinity,\n\t\t\t\tstartMonth = this.o.startDate !== -Infinity ? this.o.startDate.getUTCMonth() : -Infinity,\n\t\t\t\tendYear = this.o.endDate !== Infinity ? this.o.endDate.getUTCFullYear() : Infinity,\n\t\t\t\tendMonth = this.o.endDate !== Infinity ? this.o.endDate.getUTCMonth() : Infinity,\n\t\t\t\ttodaytxt = dates[this.o.language].today || dates['en'].today || '',\n\t\t\t\tcleartxt = dates[this.o.language].clear || dates['en'].clear || '',\n\t\t\t\ttooltip;\n\t\t\tthis.picker.find('.datepicker-days thead th.datepicker-switch')\n\t\t\t\t\t\t.text(dates[this.o.language].months[month]+' '+year);\n\t\t\tthis.picker.find('tfoot th.today')\n\t\t\t\t\t\t.text(todaytxt)\n\t\t\t\t\t\t.toggle(this.o.todayBtn !== false);\n\t\t\tthis.picker.find('tfoot th.clear')\n\t\t\t\t\t\t.text(cleartxt)\n\t\t\t\t\t\t.toggle(this.o.clearBtn !== false);\n\t\t\tthis.updateNavArrows();\n\t\t\tthis.fillMonths();\n\t\t\tvar prevMonth = UTCDate(year, month-1, 28),\n\t\t\t\tday = DPGlobal.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());\n\t\t\tprevMonth.setUTCDate(day);\n\t\t\tprevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.o.weekStart + 7)%7);\n\t\t\tvar nextMonth = new Date(prevMonth);\n\t\t\tnextMonth.setUTCDate(nextMonth.getUTCDate() + 42);\n\t\t\tnextMonth = nextMonth.valueOf();\n\t\t\tvar html = [];\n\t\t\tvar clsName;\n\t\t\twhile (prevMonth.valueOf() < nextMonth){\n\t\t\t\tif (prevMonth.getUTCDay() === this.o.weekStart){\n\t\t\t\t\thtml.push('<tr>');\n\t\t\t\t\tif (this.o.calendarWeeks){\n\t\t\t\t\t\t// ISO 8601: First week contains first thursday.\n\t\t\t\t\t\t// ISO also states week starts on Monday, but we can be more abstract here.\n\t\t\t\t\t\tvar\n\t\t\t\t\t\t\t// Start of current week: based on weekstart/current date\n\t\t\t\t\t\t\tws = new Date(+prevMonth + (this.o.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),\n\t\t\t\t\t\t\t// Thursday of this week\n\t\t\t\t\t\t\tth = new Date(Number(ws) + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),\n\t\t\t\t\t\t\t// First Thursday of year, year from thursday\n\t\t\t\t\t\t\tyth = new Date(Number(yth = UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),\n\t\t\t\t\t\t\t// Calendar week: ms between thursdays, div ms per day, div 7 days\n\t\t\t\t\t\t\tcalWeek =  (th - yth) / 864e5 / 7 + 1;\n\t\t\t\t\t\thtml.push('<td class=\"cw\">'+ calWeek +'</td>');\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tclsName = this.getClassNames(prevMonth);\n\t\t\t\tclsName.push('day');\n\n\t\t\t\tif (this.o.beforeShowDay !== $.noop){\n\t\t\t\t\tvar before = this.o.beforeShowDay(this._utc_to_local(prevMonth));\n\t\t\t\t\tif (before === undefined)\n\t\t\t\t\t\tbefore = {};\n\t\t\t\t\telse if (typeof(before) === 'boolean')\n\t\t\t\t\t\tbefore = {enabled: before};\n\t\t\t\t\telse if (typeof(before) === 'string')\n\t\t\t\t\t\tbefore = {classes: before};\n\t\t\t\t\tif (before.enabled === false)\n\t\t\t\t\t\tclsName.push('disabled');\n\t\t\t\t\tif (before.classes)\n\t\t\t\t\t\tclsName = clsName.concat(before.classes.split(/\\s+/));\n\t\t\t\t\tif (before.tooltip)\n\t\t\t\t\t\ttooltip = before.tooltip;\n\t\t\t\t}\n\n\t\t\t\tclsName = $.unique(clsName);\n\t\t\t\thtml.push('<td class=\"'+clsName.join(' ')+'\"' + (tooltip ? ' title=\"'+tooltip+'\"' : '') + '>'+prevMonth.getUTCDate() + '</td>');\n\t\t\t\tif (prevMonth.getUTCDay() === this.o.weekEnd){\n\t\t\t\t\thtml.push('</tr>');\n\t\t\t\t}\n\t\t\t\tprevMonth.setUTCDate(prevMonth.getUTCDate()+1);\n\t\t\t}\n\t\t\tthis.picker.find('.datepicker-days tbody').empty().append(html.join(''));\n\n\t\t\tvar months = this.picker.find('.datepicker-months')\n\t\t\t\t\t\t.find('th:eq(1)')\n\t\t\t\t\t\t\t.text(year)\n\t\t\t\t\t\t\t.end()\n\t\t\t\t\t\t.find('span').removeClass('active');\n\n\t\t\t$.each(this.dates, function(i, d){\n\t\t\t\tif (d.getUTCFullYear() === year)\n\t\t\t\t\tmonths.eq(d.getUTCMonth()).addClass('active');\n\t\t\t});\n\n\t\t\tif (year < startYear || year > endYear){\n\t\t\t\tmonths.addClass('disabled');\n\t\t\t}\n\t\t\tif (year === startYear){\n\t\t\t\tmonths.slice(0, startMonth).addClass('disabled');\n\t\t\t}\n\t\t\tif (year === endYear){\n\t\t\t\tmonths.slice(endMonth+1).addClass('disabled');\n\t\t\t}\n\n\t\t\thtml = '';\n\t\t\tyear = parseInt(year/10, 10) * 10;\n\t\t\tvar yearCont = this.picker.find('.datepicker-years')\n\t\t\t\t\t\t\t\t.find('th:eq(1)')\n\t\t\t\t\t\t\t\t\t.text(year + '-' + (year + 9))\n\t\t\t\t\t\t\t\t\t.end()\n\t\t\t\t\t\t\t\t.find('td');\n\t\t\tyear -= 1;\n\t\t\tvar years = $.map(this.dates, function(d){\n\t\t\t\t\treturn d.getUTCFullYear();\n\t\t\t\t}),\n\t\t\t\tclasses;\n\t\t\tfor (var i = -1; i < 11; i++){\n\t\t\t\tclasses = ['year'];\n\t\t\t\tif (i === -1)\n\t\t\t\t\tclasses.push('old');\n\t\t\t\telse if (i === 10)\n\t\t\t\t\tclasses.push('new');\n\t\t\t\tif ($.inArray(year, years) !== -1)\n\t\t\t\t\tclasses.push('active');\n\t\t\t\tif (year < startYear || year > endYear)\n\t\t\t\t\tclasses.push('disabled');\n\t\t\t\thtml += '<span class=\"' + classes.join(' ') + '\">'+year+'</span>';\n\t\t\t\tyear += 1;\n\t\t\t}\n\t\t\tyearCont.html(html);\n\t\t},\n\n\t\tupdateNavArrows: function(){\n\t\t\tif (!this._allow_update)\n\t\t\t\treturn;\n\n\t\t\tvar d = new Date(this.viewDate),\n\t\t\t\tyear = d.getUTCFullYear(),\n\t\t\t\tmonth = d.getUTCMonth();\n\t\t\tswitch (this.viewMode){\n\t\t\t\tcase 0:\n\t\t\t\t\tif (this.o.startDate !== -Infinity && year <= this.o.startDate.getUTCFullYear() && month <= this.o.startDate.getUTCMonth()){\n\t\t\t\t\t\tthis.picker.find('.prev').css({visibility: 'hidden'});\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.picker.find('.prev').css({visibility: 'visible'});\n\t\t\t\t\t}\n\t\t\t\t\tif (this.o.endDate !== Infinity && year >= this.o.endDate.getUTCFullYear() && month >= this.o.endDate.getUTCMonth()){\n\t\t\t\t\t\tthis.picker.find('.next').css({visibility: 'hidden'});\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.picker.find('.next').css({visibility: 'visible'});\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 1:\n\t\t\t\tcase 2:\n\t\t\t\t\tif (this.o.startDate !== -Infinity && year <= this.o.startDate.getUTCFullYear()){\n\t\t\t\t\t\tthis.picker.find('.prev').css({visibility: 'hidden'});\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.picker.find('.prev').css({visibility: 'visible'});\n\t\t\t\t\t}\n\t\t\t\t\tif (this.o.endDate !== Infinity && year >= this.o.endDate.getUTCFullYear()){\n\t\t\t\t\t\tthis.picker.find('.next').css({visibility: 'hidden'});\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tthis.picker.find('.next').css({visibility: 'visible'});\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t},\n\n\t\tclick: function(e){\n\t\t\te.preventDefault();\n\t\t\tvar target = $(e.target).closest('span, td, th'),\n\t\t\t\tyear, month, day;\n\t\t\tif (target.length === 1){\n\t\t\t\tswitch (target[0].nodeName.toLowerCase()){\n\t\t\t\t\tcase 'th':\n\t\t\t\t\t\tswitch (target[0].className){\n\t\t\t\t\t\t\tcase 'datepicker-switch':\n\t\t\t\t\t\t\t\tthis.showMode(1);\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\tcase 'prev':\n\t\t\t\t\t\t\tcase 'next':\n\t\t\t\t\t\t\t\tvar dir = DPGlobal.modes[this.viewMode].navStep * (target[0].className === 'prev' ? -1 : 1);\n\t\t\t\t\t\t\t\tswitch (this.viewMode){\n\t\t\t\t\t\t\t\t\tcase 0:\n\t\t\t\t\t\t\t\t\t\tthis.viewDate = this.moveMonth(this.viewDate, dir);\n\t\t\t\t\t\t\t\t\t\tthis._trigger('changeMonth', this.viewDate);\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\tcase 1:\n\t\t\t\t\t\t\t\t\tcase 2:\n\t\t\t\t\t\t\t\t\t\tthis.viewDate = this.moveYear(this.viewDate, dir);\n\t\t\t\t\t\t\t\t\t\tif (this.viewMode === 1)\n\t\t\t\t\t\t\t\t\t\t\tthis._trigger('changeYear', this.viewDate);\n\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tthis.fill();\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\tcase 'today':\n\t\t\t\t\t\t\t\tvar date = new Date();\n\t\t\t\t\t\t\t\tdate = UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);\n\n\t\t\t\t\t\t\t\tthis.showMode(-2);\n\t\t\t\t\t\t\t\tvar which = this.o.todayBtn === 'linked' ? null : 'view';\n\t\t\t\t\t\t\t\tthis._setDate(date, which);\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\tcase 'clear':\n\t\t\t\t\t\t\t\tvar element;\n\t\t\t\t\t\t\t\tif (this.isInput)\n\t\t\t\t\t\t\t\t\telement = this.element;\n\t\t\t\t\t\t\t\telse if (this.component)\n\t\t\t\t\t\t\t\t\telement = this.element.find('input');\n\t\t\t\t\t\t\t\tif (element)\n\t\t\t\t\t\t\t\t\telement.val(\"\").change();\n\t\t\t\t\t\t\t\tthis.update();\n\t\t\t\t\t\t\t\tthis._trigger('changeDate');\n\t\t\t\t\t\t\t\tif (this.o.autoclose)\n\t\t\t\t\t\t\t\t\tthis.hide();\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'span':\n\t\t\t\t\t\tif (!target.is('.disabled')){\n\t\t\t\t\t\t\tthis.viewDate.setUTCDate(1);\n\t\t\t\t\t\t\tif (target.is('.month')){\n\t\t\t\t\t\t\t\tday = 1;\n\t\t\t\t\t\t\t\tmonth = target.parent().find('span').index(target);\n\t\t\t\t\t\t\t\tyear = this.viewDate.getUTCFullYear();\n\t\t\t\t\t\t\t\tthis.viewDate.setUTCMonth(month);\n\t\t\t\t\t\t\t\tthis._trigger('changeMonth', this.viewDate);\n\t\t\t\t\t\t\t\tif (this.o.minViewMode === 1){\n\t\t\t\t\t\t\t\t\tthis._setDate(UTCDate(year, month, day));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tday = 1;\n\t\t\t\t\t\t\t\tmonth = 0;\n\t\t\t\t\t\t\t\tyear = parseInt(target.text(), 10)||0;\n\t\t\t\t\t\t\t\tthis.viewDate.setUTCFullYear(year);\n\t\t\t\t\t\t\t\tthis._trigger('changeYear', this.viewDate);\n\t\t\t\t\t\t\t\tif (this.o.minViewMode === 2){\n\t\t\t\t\t\t\t\t\tthis._setDate(UTCDate(year, month, day));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tthis.showMode(-1);\n\t\t\t\t\t\t\tthis.fill();\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'td':\n\t\t\t\t\t\tif (target.is('.day') && !target.is('.disabled')){\n\t\t\t\t\t\t\tday = parseInt(target.text(), 10)||1;\n\t\t\t\t\t\t\tyear = this.viewDate.getUTCFullYear();\n\t\t\t\t\t\t\tmonth = this.viewDate.getUTCMonth();\n\t\t\t\t\t\t\tif (target.is('.old')){\n\t\t\t\t\t\t\t\tif (month === 0){\n\t\t\t\t\t\t\t\t\tmonth = 11;\n\t\t\t\t\t\t\t\t\tyear -= 1;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tmonth -= 1;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if (target.is('.new')){\n\t\t\t\t\t\t\t\tif (month === 11){\n\t\t\t\t\t\t\t\t\tmonth = 0;\n\t\t\t\t\t\t\t\t\tyear += 1;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tmonth += 1;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tthis._setDate(UTCDate(year, month, day));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (this.picker.is(':visible') && this._focused_from){\n\t\t\t\t$(this._focused_from).focus();\n\t\t\t}\n\t\t\tdelete this._focused_from;\n\t\t},\n\n\t\t_toggle_multidate: function(date){\n\t\t\tvar ix = this.dates.contains(date);\n\t\t\tif (!date){\n\t\t\t\tthis.dates.clear();\n\t\t\t}\n\t\t\telse if (ix !== -1){\n\t\t\t\tthis.dates.remove(ix);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tthis.dates.push(date);\n\t\t\t}\n\t\t\tif (typeof this.o.multidate === 'number')\n\t\t\t\twhile (this.dates.length > this.o.multidate)\n\t\t\t\t\tthis.dates.remove(0);\n\t\t},\n\n\t\t_setDate: function(date, which){\n\t\t\tif (!which || which === 'date')\n\t\t\t\tthis._toggle_multidate(date && new Date(date));\n\t\t\tif (!which || which  === 'view')\n\t\t\t\tthis.viewDate = date && new Date(date);\n\n\t\t\tthis.fill();\n\t\t\tthis.setValue();\n\t\t\tthis._trigger('changeDate');\n\t\t\tvar element;\n\t\t\tif (this.isInput){\n\t\t\t\telement = this.element;\n\t\t\t}\n\t\t\telse if (this.component){\n\t\t\t\telement = this.element.find('input');\n\t\t\t}\n\t\t\tif (element){\n\t\t\t\telement.change();\n\t\t\t}\n\t\t\tif (this.o.autoclose && (!which || which === 'date')){\n\t\t\t\tthis.hide();\n\t\t\t}\n\t\t},\n\n\t\tmoveMonth: function(date, dir){\n\t\t\tif (!date)\n\t\t\t\treturn undefined;\n\t\t\tif (!dir)\n\t\t\t\treturn date;\n\t\t\tvar new_date = new Date(date.valueOf()),\n\t\t\t\tday = new_date.getUTCDate(),\n\t\t\t\tmonth = new_date.getUTCMonth(),\n\t\t\t\tmag = Math.abs(dir),\n\t\t\t\tnew_month, test;\n\t\t\tdir = dir > 0 ? 1 : -1;\n\t\t\tif (mag === 1){\n\t\t\t\ttest = dir === -1\n\t\t\t\t\t// If going back one month, make sure month is not current month\n\t\t\t\t\t// (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)\n\t\t\t\t\t? function(){\n\t\t\t\t\t\treturn new_date.getUTCMonth() === month;\n\t\t\t\t\t}\n\t\t\t\t\t// If going forward one month, make sure month is as expected\n\t\t\t\t\t// (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)\n\t\t\t\t\t: function(){\n\t\t\t\t\t\treturn new_date.getUTCMonth() !== new_month;\n\t\t\t\t\t};\n\t\t\t\tnew_month = month + dir;\n\t\t\t\tnew_date.setUTCMonth(new_month);\n\t\t\t\t// Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11\n\t\t\t\tif (new_month < 0 || new_month > 11)\n\t\t\t\t\tnew_month = (new_month + 12) % 12;\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// For magnitudes >1, move one month at a time...\n\t\t\t\tfor (var i=0; i < mag; i++)\n\t\t\t\t\t// ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...\n\t\t\t\t\tnew_date = this.moveMonth(new_date, dir);\n\t\t\t\t// ...then reset the day, keeping it in the new month\n\t\t\t\tnew_month = new_date.getUTCMonth();\n\t\t\t\tnew_date.setUTCDate(day);\n\t\t\t\ttest = function(){\n\t\t\t\t\treturn new_month !== new_date.getUTCMonth();\n\t\t\t\t};\n\t\t\t}\n\t\t\t// Common date-resetting loop -- if date is beyond end of month, make it\n\t\t\t// end of month\n\t\t\twhile (test()){\n\t\t\t\tnew_date.setUTCDate(--day);\n\t\t\t\tnew_date.setUTCMonth(new_month);\n\t\t\t}\n\t\t\treturn new_date;\n\t\t},\n\n\t\tmoveYear: function(date, dir){\n\t\t\treturn this.moveMonth(date, dir*12);\n\t\t},\n\n\t\tdateWithinRange: function(date){\n\t\t\treturn date >= this.o.startDate && date <= this.o.endDate;\n\t\t},\n\n\t\tkeydown: function(e){\n\t\t\tif (this.picker.is(':not(:visible)')){\n\t\t\t\tif (e.keyCode === 27) // allow escape to hide and re-show picker\n\t\t\t\t\tthis.show();\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tvar dateChanged = false,\n\t\t\t\tdir, newDate, newViewDate,\n\t\t\t\tfocusDate = this.focusDate || this.viewDate;\n\t\t\tswitch (e.keyCode){\n\t\t\t\tcase 27: // escape\n\t\t\t\t\tif (this.focusDate){\n\t\t\t\t\t\tthis.focusDate = null;\n\t\t\t\t\t\tthis.viewDate = this.dates.get(-1) || this.viewDate;\n\t\t\t\t\t\tthis.fill();\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t\tthis.hide();\n\t\t\t\t\te.preventDefault();\n\t\t\t\t\tbreak;\n\t\t\t\tcase 37: // left\n\t\t\t\tcase 39: // right\n\t\t\t\t\tif (!this.o.keyboardNavigation)\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdir = e.keyCode === 37 ? -1 : 1;\n\t\t\t\t\tif (e.ctrlKey){\n\t\t\t\t\t\tnewDate = this.moveYear(this.dates.get(-1) || UTCToday(), dir);\n\t\t\t\t\t\tnewViewDate = this.moveYear(focusDate, dir);\n\t\t\t\t\t\tthis._trigger('changeYear', this.viewDate);\n\t\t\t\t\t}\n\t\t\t\t\telse if (e.shiftKey){\n\t\t\t\t\t\tnewDate = this.moveMonth(this.dates.get(-1) || UTCToday(), dir);\n\t\t\t\t\t\tnewViewDate = this.moveMonth(focusDate, dir);\n\t\t\t\t\t\tthis._trigger('changeMonth', this.viewDate);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnewDate = new Date(this.dates.get(-1) || UTCToday());\n\t\t\t\t\t\tnewDate.setUTCDate(newDate.getUTCDate() + dir);\n\t\t\t\t\t\tnewViewDate = new Date(focusDate);\n\t\t\t\t\t\tnewViewDate.setUTCDate(focusDate.getUTCDate() + dir);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.dateWithinRange(newDate)){\n\t\t\t\t\t\tthis.focusDate = this.viewDate = newViewDate;\n\t\t\t\t\t\tthis.setValue();\n\t\t\t\t\t\tthis.fill();\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 38: // up\n\t\t\t\tcase 40: // down\n\t\t\t\t\tif (!this.o.keyboardNavigation)\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdir = e.keyCode === 38 ? -1 : 1;\n\t\t\t\t\tif (e.ctrlKey){\n\t\t\t\t\t\tnewDate = this.moveYear(this.dates.get(-1) || UTCToday(), dir);\n\t\t\t\t\t\tnewViewDate = this.moveYear(focusDate, dir);\n\t\t\t\t\t\tthis._trigger('changeYear', this.viewDate);\n\t\t\t\t\t}\n\t\t\t\t\telse if (e.shiftKey){\n\t\t\t\t\t\tnewDate = this.moveMonth(this.dates.get(-1) || UTCToday(), dir);\n\t\t\t\t\t\tnewViewDate = this.moveMonth(focusDate, dir);\n\t\t\t\t\t\tthis._trigger('changeMonth', this.viewDate);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnewDate = new Date(this.dates.get(-1) || UTCToday());\n\t\t\t\t\t\tnewDate.setUTCDate(newDate.getUTCDate() + dir * 7);\n\t\t\t\t\t\tnewViewDate = new Date(focusDate);\n\t\t\t\t\t\tnewViewDate.setUTCDate(focusDate.getUTCDate() + dir * 7);\n\t\t\t\t\t}\n\t\t\t\t\tif (this.dateWithinRange(newDate)){\n\t\t\t\t\t\tthis.focusDate = this.viewDate = newViewDate;\n\t\t\t\t\t\tthis.setValue();\n\t\t\t\t\t\tthis.fill();\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 32: // spacebar\n\t\t\t\t\t// Spacebar is used in manually typing dates in some formats.\n\t\t\t\t\t// As such, its behavior should not be hijacked.\n\t\t\t\t\tbreak;\n\t\t\t\tcase 13: // enter\n\t\t\t\t\tfocusDate = this.focusDate || this.dates.get(-1) || this.viewDate;\n\t\t\t\t\tthis._toggle_multidate(focusDate);\n\t\t\t\t\tdateChanged = true;\n\t\t\t\t\tthis.focusDate = null;\n\t\t\t\t\tthis.viewDate = this.dates.get(-1) || this.viewDate;\n\t\t\t\t\tthis.setValue();\n\t\t\t\t\tthis.fill();\n\t\t\t\t\tif (this.picker.is(':visible')){\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tif (this.o.autoclose)\n\t\t\t\t\t\t\tthis.hide();\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 9: // tab\n\t\t\t\t\tthis.focusDate = null;\n\t\t\t\t\tthis.viewDate = this.dates.get(-1) || this.viewDate;\n\t\t\t\t\tthis.fill();\n\t\t\t\t\tthis.hide();\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif (dateChanged){\n\t\t\t\tif (this.dates.length)\n\t\t\t\t\tthis._trigger('changeDate');\n\t\t\t\telse\n\t\t\t\t\tthis._trigger('clearDate');\n\t\t\t\tvar element;\n\t\t\t\tif (this.isInput){\n\t\t\t\t\telement = this.element;\n\t\t\t\t}\n\t\t\t\telse if (this.component){\n\t\t\t\t\telement = this.element.find('input');\n\t\t\t\t}\n\t\t\t\tif (element){\n\t\t\t\t\telement.change();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tshowMode: function(dir){\n\t\t\tif (dir){\n\t\t\t\tthis.viewMode = Math.max(this.o.minViewMode, Math.min(2, this.viewMode + dir));\n\t\t\t}\n\t\t\tthis.picker\n\t\t\t\t.find('>div')\n\t\t\t\t.hide()\n\t\t\t\t.filter('.datepicker-'+DPGlobal.modes[this.viewMode].clsName)\n\t\t\t\t\t.css('display', 'block');\n\t\t\tthis.updateNavArrows();\n\t\t}\n\t};\n\n\tvar DateRangePicker = function(element, options){\n\t\tthis.element = $(element);\n\t\tthis.inputs = $.map(options.inputs, function(i){\n\t\t\treturn i.jquery ? i[0] : i;\n\t\t});\n\t\tdelete options.inputs;\n\n\t\t$(this.inputs)\n\t\t\t.datepicker(options)\n\t\t\t.bind('changeDate', $.proxy(this.dateUpdated, this));\n\n\t\tthis.pickers = $.map(this.inputs, function(i){\n\t\t\treturn $(i).data('datepicker');\n\t\t});\n\t\tthis.updateDates();\n\t};\n\tDateRangePicker.prototype = {\n\t\tupdateDates: function(){\n\t\t\tthis.dates = $.map(this.pickers, function(i){\n\t\t\t\treturn i.getUTCDate();\n\t\t\t});\n\t\t\tthis.updateRanges();\n\t\t},\n\t\tupdateRanges: function(){\n\t\t\tvar range = $.map(this.dates, function(d){\n\t\t\t\treturn d.valueOf();\n\t\t\t});\n\t\t\t$.each(this.pickers, function(i, p){\n\t\t\t\tp.setRange(range);\n\t\t\t});\n\t\t},\n\t\tdateUpdated: function(e){\n\t\t\t// `this.updating` is a workaround for preventing infinite recursion\n\t\t\t// between `changeDate` triggering and `setUTCDate` calling.  Until\n\t\t\t// there is a better mechanism.\n\t\t\tif (this.updating)\n\t\t\t\treturn;\n\t\t\tthis.updating = true;\n\n\t\t\tvar dp = $(e.target).data('datepicker'),\n\t\t\t\tnew_date = dp.getUTCDate(),\n\t\t\t\ti = $.inArray(e.target, this.inputs),\n\t\t\t\tl = this.inputs.length;\n\t\t\tif (i === -1)\n\t\t\t\treturn;\n\n\t\t\t$.each(this.pickers, function(i, p){\n\t\t\t\tif (!p.getUTCDate())\n\t\t\t\t\tp.setUTCDate(new_date);\n\t\t\t});\n\n\t\t\tif (new_date < this.dates[i]){\n\t\t\t\t// Date being moved earlier/left\n\t\t\t\twhile (i >= 0 && new_date < this.dates[i]){\n\t\t\t\t\tthis.pickers[i--].setUTCDate(new_date);\n\t\t\t\t}\n\t\t\t}\n\t\t\telse if (new_date > this.dates[i]){\n\t\t\t\t// Date being moved later/right\n\t\t\t\twhile (i < l && new_date > this.dates[i]){\n\t\t\t\t\tthis.pickers[i++].setUTCDate(new_date);\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.updateDates();\n\n\t\t\tdelete this.updating;\n\t\t},\n\t\tremove: function(){\n\t\t\t$.map(this.pickers, function(p){ p.remove(); });\n\t\t\tdelete this.element.data().datepicker;\n\t\t}\n\t};\n\n\tfunction opts_from_el(el, prefix){\n\t\t// Derive options from element data-attrs\n\t\tvar data = $(el).data(),\n\t\t\tout = {}, inkey,\n\t\t\treplace = new RegExp('^' + prefix.toLowerCase() + '([A-Z])');\n\t\tprefix = new RegExp('^' + prefix.toLowerCase());\n\t\tfunction re_lower(_,a){\n\t\t\treturn a.toLowerCase();\n\t\t}\n\t\tfor (var key in data)\n\t\t\tif (prefix.test(key)){\n\t\t\t\tinkey = key.replace(replace, re_lower);\n\t\t\t\tout[inkey] = data[key];\n\t\t\t}\n\t\treturn out;\n\t}\n\n\tfunction opts_from_locale(lang){\n\t\t// Derive options from locale plugins\n\t\tvar out = {};\n\t\t// Check if \"de-DE\" style date is available, if not language should\n\t\t// fallback to 2 letter code eg \"de\"\n\t\tif (!dates[lang]){\n\t\t\tlang = lang.split('-')[0];\n\t\t\tif (!dates[lang])\n\t\t\t\treturn;\n\t\t}\n\t\tvar d = dates[lang];\n\t\t$.each(locale_opts, function(i,k){\n\t\t\tif (k in d)\n\t\t\t\tout[k] = d[k];\n\t\t});\n\t\treturn out;\n\t}\n\n\tvar old = $.fn.datepicker;\n\t$.fn.datepicker = function(option){\n\t\tvar args = Array.apply(null, arguments);\n\t\targs.shift();\n\t\tvar internal_return;\n\t\tthis.each(function(){\n\t\t\tvar $this = $(this),\n\t\t\t\tdata = $this.data('datepicker'),\n\t\t\t\toptions = typeof option === 'object' && option;\n\t\t\tif (!data){\n\t\t\t\tvar elopts = opts_from_el(this, 'date'),\n\t\t\t\t\t// Preliminary otions\n\t\t\t\t\txopts = $.extend({}, defaults, elopts, options),\n\t\t\t\t\tlocopts = opts_from_locale(xopts.language),\n\t\t\t\t\t// Options priority: js args, data-attrs, locales, defaults\n\t\t\t\t\topts = $.extend({}, defaults, locopts, elopts, options);\n\t\t\t\tif ($this.is('.input-daterange') || opts.inputs){\n\t\t\t\t\tvar ropts = {\n\t\t\t\t\t\tinputs: opts.inputs || $this.find('input').toArray()\n\t\t\t\t\t};\n\t\t\t\t\t$this.data('datepicker', (data = new DateRangePicker(this, $.extend(opts, ropts))));\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t$this.data('datepicker', (data = new Datepicker(this, opts)));\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (typeof option === 'string' && typeof data[option] === 'function'){\n\t\t\t\tinternal_return = data[option].apply(data, args);\n\t\t\t\tif (internal_return !== undefined)\n\t\t\t\t\treturn false;\n\t\t\t}\n\t\t});\n\t\tif (internal_return !== undefined)\n\t\t\treturn internal_return;\n\t\telse\n\t\t\treturn this;\n\t};\n\n\tvar defaults = $.fn.datepicker.defaults = {\n\t\tautoclose: false,\n\t\tbeforeShowDay: $.noop,\n\t\tcalendarWeeks: false,\n\t\tclearBtn: false,\n\t\tdaysOfWeekDisabled: [],\n\t\tendDate: Infinity,\n\t\tforceParse: true,\n\t\tformat: 'mm/dd/yyyy',\n\t\tkeyboardNavigation: true,\n\t\tlanguage: 'en',\n\t\tminViewMode: 0,\n\t\tmultidate: false,\n\t\tmultidateSeparator: ',',\n\t\torientation: \"auto\",\n\t\trtl: false,\n\t\tstartDate: -Infinity,\n\t\tstartView: 0,\n\t\ttodayBtn: false,\n\t\ttodayHighlight: false,\n\t\tweekStart: 0\n\t};\n\tvar locale_opts = $.fn.datepicker.locale_opts = [\n\t\t'format',\n\t\t'rtl',\n\t\t'weekStart'\n\t];\n\t$.fn.datepicker.Constructor = Datepicker;\n\tvar dates = $.fn.datepicker.dates = {\n\t\ten: {\n\t\t\tdays: [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\", \"Sunday\"],\n\t\t\tdaysShort: [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\", \"Sun\"],\n\t\t\tdaysMin: [\"Su\", \"Mo\", \"Tu\", \"We\", \"Th\", \"Fr\", \"Sa\", \"Su\"],\n\t\t\tmonths: [\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"],\n\t\t\tmonthsShort: [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"],\n\t\t\ttoday: \"Today\",\n\t\t\tclear: \"Clear\"\n\t\t}\n\t};\n\n\tvar DPGlobal = {\n\t\tmodes: [\n\t\t\t{\n\t\t\t\tclsName: 'days',\n\t\t\t\tnavFnc: 'Month',\n\t\t\t\tnavStep: 1\n\t\t\t},\n\t\t\t{\n\t\t\t\tclsName: 'months',\n\t\t\t\tnavFnc: 'FullYear',\n\t\t\t\tnavStep: 1\n\t\t\t},\n\t\t\t{\n\t\t\t\tclsName: 'years',\n\t\t\t\tnavFnc: 'FullYear',\n\t\t\t\tnavStep: 10\n\t\t}],\n\t\tisLeapYear: function(year){\n\t\t\treturn (((year % 4 === 0) && (year % 100 !== 0)) || (year % 400 === 0));\n\t\t},\n\t\tgetDaysInMonth: function(year, month){\n\t\t\treturn [31, (DPGlobal.isLeapYear(year) ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31][month];\n\t\t},\n\t\tvalidParts: /dd?|DD?|mm?|MM?|yy(?:yy)?/g,\n\t\tnonpunctuation: /[^ -\\/:-@\\[\\u3400-\\u9fff-`{-~\\t\\n\\r]+/g,\n\t\tparseFormat: function(format){\n\t\t\t// IE treats \\0 as a string end in inputs (truncating the value),\n\t\t\t// so it's a bad format delimiter, anyway\n\t\t\tvar separators = format.replace(this.validParts, '\\0').split('\\0'),\n\t\t\t\tparts = format.match(this.validParts);\n\t\t\tif (!separators || !separators.length || !parts || parts.length === 0){\n\t\t\t\tthrow new Error(\"Invalid date format.\");\n\t\t\t}\n\t\t\treturn {separators: separators, parts: parts};\n\t\t},\n\t\tparseDate: function(date, format, language){\n\t\t\tif (!date)\n\t\t\t\treturn undefined;\n\t\t\tif (date instanceof Date)\n\t\t\t\treturn date;\n\t\t\tif (typeof format === 'string')\n\t\t\t\tformat = DPGlobal.parseFormat(format);\n\t\t\tvar part_re = /([\\-+]\\d+)([dmwy])/,\n\t\t\t\tparts = date.match(/([\\-+]\\d+)([dmwy])/g),\n\t\t\t\tpart, dir, i;\n\t\t\tif (/^[\\-+]\\d+[dmwy]([\\s,]+[\\-+]\\d+[dmwy])*$/.test(date)){\n\t\t\t\tdate = new Date();\n\t\t\t\tfor (i=0; i < parts.length; i++){\n\t\t\t\t\tpart = part_re.exec(parts[i]);\n\t\t\t\t\tdir = parseInt(part[1]);\n\t\t\t\t\tswitch (part[2]){\n\t\t\t\t\t\tcase 'd':\n\t\t\t\t\t\t\tdate.setUTCDate(date.getUTCDate() + dir);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 'm':\n\t\t\t\t\t\t\tdate = Datepicker.prototype.moveMonth.call(Datepicker.prototype, date, dir);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 'w':\n\t\t\t\t\t\t\tdate.setUTCDate(date.getUTCDate() + dir * 7);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 'y':\n\t\t\t\t\t\t\tdate = Datepicker.prototype.moveYear.call(Datepicker.prototype, date, dir);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn UTCDate(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), 0, 0, 0);\n\t\t\t}\n\t\t\tparts = date && date.match(this.nonpunctuation) || [];\n\t\t\tdate = new Date();\n\t\t\tvar parsed = {},\n\t\t\t\tsetters_order = ['yyyy', 'yy', 'M', 'MM', 'm', 'mm', 'd', 'dd'],\n\t\t\t\tsetters_map = {\n\t\t\t\t\tyyyy: function(d,v){\n\t\t\t\t\t\treturn d.setUTCFullYear(v);\n\t\t\t\t\t},\n\t\t\t\t\tyy: function(d,v){\n\t\t\t\t\t\treturn d.setUTCFullYear(2000+v);\n\t\t\t\t\t},\n\t\t\t\t\tm: function(d,v){\n\t\t\t\t\t\tif (isNaN(d))\n\t\t\t\t\t\t\treturn d;\n\t\t\t\t\t\tv -= 1;\n\t\t\t\t\t\twhile (v < 0) v += 12;\n\t\t\t\t\t\tv %= 12;\n\t\t\t\t\t\td.setUTCMonth(v);\n\t\t\t\t\t\twhile (d.getUTCMonth() !== v)\n\t\t\t\t\t\t\td.setUTCDate(d.getUTCDate()-1);\n\t\t\t\t\t\treturn d;\n\t\t\t\t\t},\n\t\t\t\t\td: function(d,v){\n\t\t\t\t\t\treturn d.setUTCDate(v);\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\tval, filtered;\n\t\t\tsetters_map['M'] = setters_map['MM'] = setters_map['mm'] = setters_map['m'];\n\t\t\tsetters_map['dd'] = setters_map['d'];\n\t\t\tdate = UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);\n\t\t\tvar fparts = format.parts.slice();\n\t\t\t// Remove noop parts\n\t\t\tif (parts.length !== fparts.length){\n\t\t\t\tfparts = $(fparts).filter(function(i,p){\n\t\t\t\t\treturn $.inArray(p, setters_order) !== -1;\n\t\t\t\t}).toArray();\n\t\t\t}\n\t\t\t// Process remainder\n\t\t\tfunction match_part(){\n\t\t\t\tvar m = this.slice(0, parts[i].length),\n\t\t\t\t\tp = parts[i].slice(0, m.length);\n\t\t\t\treturn m === p;\n\t\t\t}\n\t\t\tif (parts.length === fparts.length){\n\t\t\t\tvar cnt;\n\t\t\t\tfor (i=0, cnt = fparts.length; i < cnt; i++){\n\t\t\t\t\tval = parseInt(parts[i], 10);\n\t\t\t\t\tpart = fparts[i];\n\t\t\t\t\tif (isNaN(val)){\n\t\t\t\t\t\tswitch (part){\n\t\t\t\t\t\t\tcase 'MM':\n\t\t\t\t\t\t\t\tfiltered = $(dates[language].months).filter(match_part);\n\t\t\t\t\t\t\t\tval = $.inArray(filtered[0], dates[language].months) + 1;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\tcase 'M':\n\t\t\t\t\t\t\t\tfiltered = $(dates[language].monthsShort).filter(match_part);\n\t\t\t\t\t\t\t\tval = $.inArray(filtered[0], dates[language].monthsShort) + 1;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tparsed[part] = val;\n\t\t\t\t}\n\t\t\t\tvar _date, s;\n\t\t\t\tfor (i=0; i < setters_order.length; i++){\n\t\t\t\t\ts = setters_order[i];\n\t\t\t\t\tif (s in parsed && !isNaN(parsed[s])){\n\t\t\t\t\t\t_date = new Date(date);\n\t\t\t\t\t\tsetters_map[s](_date, parsed[s]);\n\t\t\t\t\t\tif (!isNaN(_date))\n\t\t\t\t\t\t\tdate = _date;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn date;\n\t\t},\n\t\tformatDate: function(date, format, language){\n\t\t\tif (!date)\n\t\t\t\treturn '';\n\t\t\tif (typeof format === 'string')\n\t\t\t\tformat = DPGlobal.parseFormat(format);\n\t\t\tvar val = {\n\t\t\t\td: date.getUTCDate(),\n\t\t\t\tD: dates[language].daysShort[date.getUTCDay()],\n\t\t\t\tDD: dates[language].days[date.getUTCDay()],\n\t\t\t\tm: date.getUTCMonth() + 1,\n\t\t\t\tM: dates[language].monthsShort[date.getUTCMonth()],\n\t\t\t\tMM: dates[language].months[date.getUTCMonth()],\n\t\t\t\tyy: date.getUTCFullYear().toString().substring(2),\n\t\t\t\tyyyy: date.getUTCFullYear()\n\t\t\t};\n\t\t\tval.dd = (val.d < 10 ? '0' : '') + val.d;\n\t\t\tval.mm = (val.m < 10 ? '0' : '') + val.m;\n\t\t\tdate = [];\n\t\t\tvar seps = $.extend([], format.separators);\n\t\t\tfor (var i=0, cnt = format.parts.length; i <= cnt; i++){\n\t\t\t\tif (seps.length)\n\t\t\t\t\tdate.push(seps.shift());\n\t\t\t\tdate.push(val[format.parts[i]]);\n\t\t\t}\n\t\t\treturn date.join('');\n\t\t},\n\t\theadTemplate: '<thead>'+\n\t\t\t\t\t\t\t'<tr>'+\n\t\t\t\t\t\t\t\t'<th class=\"prev\">&laquo;</th>'+\n\t\t\t\t\t\t\t\t'<th colspan=\"5\" class=\"datepicker-switch\"></th>'+\n\t\t\t\t\t\t\t\t'<th class=\"next\">&raquo;</th>'+\n\t\t\t\t\t\t\t'</tr>'+\n\t\t\t\t\t\t'</thead>',\n\t\tcontTemplate: '<tbody><tr><td colspan=\"7\"></td></tr></tbody>',\n\t\tfootTemplate: '<tfoot>'+\n\t\t\t\t\t\t\t'<tr>'+\n\t\t\t\t\t\t\t\t'<th colspan=\"7\" class=\"today\"></th>'+\n\t\t\t\t\t\t\t'</tr>'+\n\t\t\t\t\t\t\t'<tr>'+\n\t\t\t\t\t\t\t\t'<th colspan=\"7\" class=\"clear\"></th>'+\n\t\t\t\t\t\t\t'</tr>'+\n\t\t\t\t\t\t'</tfoot>'\n\t};\n\tDPGlobal.template = '<div class=\"datepicker\">'+\n\t\t\t\t\t\t\t'<div class=\"datepicker-days\">'+\n\t\t\t\t\t\t\t\t'<table class=\" table-condensed\">'+\n\t\t\t\t\t\t\t\t\tDPGlobal.headTemplate+\n\t\t\t\t\t\t\t\t\t'<tbody></tbody>'+\n\t\t\t\t\t\t\t\t\tDPGlobal.footTemplate+\n\t\t\t\t\t\t\t\t'</table>'+\n\t\t\t\t\t\t\t'</div>'+\n\t\t\t\t\t\t\t'<div class=\"datepicker-months\">'+\n\t\t\t\t\t\t\t\t'<table class=\"table-condensed\">'+\n\t\t\t\t\t\t\t\t\tDPGlobal.headTemplate+\n\t\t\t\t\t\t\t\t\tDPGlobal.contTemplate+\n\t\t\t\t\t\t\t\t\tDPGlobal.footTemplate+\n\t\t\t\t\t\t\t\t'</table>'+\n\t\t\t\t\t\t\t'</div>'+\n\t\t\t\t\t\t\t'<div class=\"datepicker-years\">'+\n\t\t\t\t\t\t\t\t'<table class=\"table-condensed\">'+\n\t\t\t\t\t\t\t\t\tDPGlobal.headTemplate+\n\t\t\t\t\t\t\t\t\tDPGlobal.contTemplate+\n\t\t\t\t\t\t\t\t\tDPGlobal.footTemplate+\n\t\t\t\t\t\t\t\t'</table>'+\n\t\t\t\t\t\t\t'</div>'+\n\t\t\t\t\t\t'</div>';\n\n\t$.fn.datepicker.DPGlobal = DPGlobal;\n\n\n\t/* DATEPICKER NO CONFLICT\n\t* =================== */\n\n\t$.fn.datepicker.noConflict = function(){\n\t\t$.fn.datepicker = old;\n\t\treturn this;\n\t};\n\n\n\t/* DATEPICKER DATA-API\n\t* ================== */\n\n\t$(document).on(\n\t\t'focus.datepicker.data-api click.datepicker.data-api',\n\t\t'[data-provide=\"datepicker\"]',\n\t\tfunction(e){\n\t\t\tvar $this = $(this);\n\t\t\tif ($this.data('datepicker'))\n\t\t\t\treturn;\n\t\t\te.preventDefault();\n\t\t\t// component click requires us to explicitly show it\n\t\t\t$this.datepicker('show');\n\t\t}\n\t);\n\t$(function(){\n\t\t$('[data-provide=\"datepicker-inline\"]').datepicker();\n\t});\n\n}(window.jQuery));\n"
  },
  {
    "path": "public/admin/js/plugins/dropzone/dropzone.js",
    "content": "\n;(function(){\n\n    /**\n     * Require the module at `name`.\n     *\n     * @param {String} name\n     * @return {Object} exports\n     * @api public\n     */\n\n    function require(name) {\n        var module = require.modules[name];\n        if (!module) throw new Error('failed to require \"' + name + '\"');\n\n        if (!('exports' in module) && typeof module.definition === 'function') {\n            module.client = module.component = true;\n            module.definition.call(this, module.exports = {}, module);\n            delete module.definition;\n        }\n\n        return module.exports;\n    }\n\n    /**\n     * Registered modules.\n     */\n\n    require.modules = {};\n\n    /**\n     * Register module at `name` with callback `definition`.\n     *\n     * @param {String} name\n     * @param {Function} definition\n     * @api private\n     */\n\n    require.register = function (name, definition) {\n        require.modules[name] = {\n            definition: definition\n        };\n    };\n\n    /**\n     * Define a module's exports immediately with `exports`.\n     *\n     * @param {String} name\n     * @param {Generic} exports\n     * @api private\n     */\n\n    require.define = function (name, exports) {\n        require.modules[name] = {\n            exports: exports\n        };\n    };\n    require.register(\"component~emitter@1.1.2\", function (exports, module) {\n\n        /**\n         * Expose `Emitter`.\n         */\n\n        module.exports = Emitter;\n\n        /**\n         * Initialize a new `Emitter`.\n         *\n         * @api public\n         */\n\n        function Emitter(obj) {\n            if (obj) return mixin(obj);\n        };\n\n        /**\n         * Mixin the emitter properties.\n         *\n         * @param {Object} obj\n         * @return {Object}\n         * @api private\n         */\n\n        function mixin(obj) {\n            for (var key in Emitter.prototype) {\n                obj[key] = Emitter.prototype[key];\n            }\n            return obj;\n        }\n\n        /**\n         * Listen on the given `event` with `fn`.\n         *\n         * @param {String} event\n         * @param {Function} fn\n         * @return {Emitter}\n         * @api public\n         */\n\n        Emitter.prototype.on =\n            Emitter.prototype.addEventListener = function(event, fn){\n                this._callbacks = this._callbacks || {};\n                (this._callbacks[event] = this._callbacks[event] || [])\n                    .push(fn);\n                return this;\n            };\n\n        /**\n         * Adds an `event` listener that will be invoked a single\n         * time then automatically removed.\n         *\n         * @param {String} event\n         * @param {Function} fn\n         * @return {Emitter}\n         * @api public\n         */\n\n        Emitter.prototype.once = function(event, fn){\n            var self = this;\n            this._callbacks = this._callbacks || {};\n\n            function on() {\n                self.off(event, on);\n                fn.apply(this, arguments);\n            }\n\n            on.fn = fn;\n            this.on(event, on);\n            return this;\n        };\n\n        /**\n         * Remove the given callback for `event` or all\n         * registered callbacks.\n         *\n         * @param {String} event\n         * @param {Function} fn\n         * @return {Emitter}\n         * @api public\n         */\n\n        Emitter.prototype.off =\n            Emitter.prototype.removeListener =\n                Emitter.prototype.removeAllListeners =\n                    Emitter.prototype.removeEventListener = function(event, fn){\n                        this._callbacks = this._callbacks || {};\n\n                        // all\n                        if (0 == arguments.length) {\n                            this._callbacks = {};\n                            return this;\n                        }\n\n                        // specific event\n                        var callbacks = this._callbacks[event];\n                        if (!callbacks) return this;\n\n                        // remove all handlers\n                        if (1 == arguments.length) {\n                            delete this._callbacks[event];\n                            return this;\n                        }\n\n                        // remove specific handler\n                        var cb;\n                        for (var i = 0; i < callbacks.length; i++) {\n                            cb = callbacks[i];\n                            if (cb === fn || cb.fn === fn) {\n                                callbacks.splice(i, 1);\n                                break;\n                            }\n                        }\n                        return this;\n                    };\n\n        /**\n         * Emit `event` with the given args.\n         *\n         * @param {String} event\n         * @param {Mixed} ...\n         * @return {Emitter}\n         */\n\n        Emitter.prototype.emit = function(event){\n            this._callbacks = this._callbacks || {};\n            var args = [].slice.call(arguments, 1)\n                , callbacks = this._callbacks[event];\n\n            if (callbacks) {\n                callbacks = callbacks.slice(0);\n                for (var i = 0, len = callbacks.length; i < len; ++i) {\n                    callbacks[i].apply(this, args);\n                }\n            }\n\n            return this;\n        };\n\n        /**\n         * Return array of callbacks for `event`.\n         *\n         * @param {String} event\n         * @return {Array}\n         * @api public\n         */\n\n        Emitter.prototype.listeners = function(event){\n            this._callbacks = this._callbacks || {};\n            return this._callbacks[event] || [];\n        };\n\n        /**\n         * Check if this emitter has `event` handlers.\n         *\n         * @param {String} event\n         * @return {Boolean}\n         * @api public\n         */\n\n        Emitter.prototype.hasListeners = function(event){\n            return !! this.listeners(event).length;\n        };\n\n    });\n\n    require.register(\"dropzone\", function (exports, module) {\n\n\n        /**\n         * Exposing dropzone\n         */\n        module.exports = require(\"dropzone/lib/dropzone.js\");\n\n    });\n\n    require.register(\"dropzone/lib/dropzone.js\", function (exports, module) {\n\n        /*\n         *\n         * More info at [www.dropzonejs.com](http://www.dropzonejs.com)\n         *\n         * Copyright (c) 2012, Matias Meno\n         *\n         * Permission is hereby granted, free of charge, to any person obtaining a copy\n         * of this software and associated documentation files (the \"Software\"), to deal\n         * in the Software without restriction, including without limitation the rights\n         * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n         * copies of the Software, and to permit persons to whom the Software is\n         * furnished to do so, subject to the following conditions:\n         *\n         * The above copyright notice and this permission notice shall be included in\n         * all copies or substantial portions of the Software.\n         *\n         * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n         * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n         * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n         * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n         * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n         * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n         * THE SOFTWARE.\n         *\n         */\n\n        (function() {\n            var Dropzone, Em, camelize, contentLoaded, detectVerticalSquash, drawImageIOSFix, noop, without,\n                __hasProp = {}.hasOwnProperty,\n                __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n                __slice = [].slice;\n\n            Em = typeof Emitter !== \"undefined\" && Emitter !== null ? Emitter : require(\"component~emitter@1.1.2\");\n\n            noop = function() {};\n\n            Dropzone = (function(_super) {\n                var extend;\n\n                __extends(Dropzone, _super);\n\n\n                /*\n                 This is a list of all available events you can register on a dropzone object.\n\n                 You can register an event handler like this:\n\n                 dropzone.on(\"dragEnter\", function() { });\n                 */\n\n                Dropzone.prototype.events = [\"drop\", \"dragstart\", \"dragend\", \"dragenter\", \"dragover\", \"dragleave\", \"addedfile\", \"removedfile\", \"thumbnail\", \"error\", \"errormultiple\", \"processing\", \"processingmultiple\", \"uploadprogress\", \"totaluploadprogress\", \"sending\", \"sendingmultiple\", \"success\", \"successmultiple\", \"canceled\", \"canceledmultiple\", \"complete\", \"completemultiple\", \"reset\", \"maxfilesexceeded\", \"maxfilesreached\"];\n\n                Dropzone.prototype.defaultOptions = {\n                    url: null,\n                    method: \"post\",\n                    withCredentials: false,\n                    parallelUploads: 2,\n                    uploadMultiple: false,\n                    maxFilesize: 256,\n                    paramName: \"file\",\n                    createImageThumbnails: true,\n                    maxThumbnailFilesize: 10,\n                    thumbnailWidth: 100,\n                    thumbnailHeight: 100,\n                    maxFiles: null,\n                    params: {},\n                    clickable: true,\n                    ignoreHiddenFiles: true,\n                    acceptedFiles: null,\n                    acceptedMimeTypes: null,\n                    autoProcessQueue: true,\n                    autoQueue: true,\n                    addRemoveLinks: false,\n                    previewsContainer: null,\n                    dictDefaultMessage: \"Drop files here to upload\",\n                    dictFallbackMessage: \"Your browser does not support drag'n'drop file uploads.\",\n                    dictFallbackText: \"Please use the fallback form below to upload your files like in the olden days.\",\n                    dictFileTooBig: \"File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB.\",\n                    dictInvalidFileType: \"You can't upload files of this type.\",\n                    dictResponseError: \"Server responded with {{statusCode}} code.\",\n                    dictCancelUpload: \"Cancel upload\",\n                    dictCancelUploadConfirmation: \"Are you sure you want to cancel this upload?\",\n                    dictRemoveFile: \"Remove file\",\n                    dictRemoveFileConfirmation: null,\n                    dictMaxFilesExceeded: \"You can not upload any more files.\",\n                    accept: function(file, done) {\n                        return done();\n                    },\n                    init: function() {\n                        return noop;\n                    },\n                    forceFallback: false,\n                    fallback: function() {\n                        var child, messageElement, span, _i, _len, _ref;\n                        this.element.className = \"\" + this.element.className + \" dz-browser-not-supported\";\n                        _ref = this.element.getElementsByTagName(\"div\");\n                        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                            child = _ref[_i];\n                            if (/(^| )dz-message($| )/.test(child.className)) {\n                                messageElement = child;\n                                child.className = \"dz-message\";\n                                continue;\n                            }\n                        }\n                        if (!messageElement) {\n                            messageElement = Dropzone.createElement(\"<div class=\\\"dz-message\\\"><span></span></div>\");\n                            this.element.appendChild(messageElement);\n                        }\n                        span = messageElement.getElementsByTagName(\"span\")[0];\n                        if (span) {\n                            span.textContent = this.options.dictFallbackMessage;\n                        }\n                        return this.element.appendChild(this.getFallbackForm());\n                    },\n                    resize: function(file) {\n                        var info, srcRatio, trgRatio;\n                        info = {\n                            srcX: 0,\n                            srcY: 0,\n                            srcWidth: file.width,\n                            srcHeight: file.height\n                        };\n                        srcRatio = file.width / file.height;\n                        trgRatio = this.options.thumbnailWidth / this.options.thumbnailHeight;\n                        if (file.height < this.options.thumbnailHeight || file.width < this.options.thumbnailWidth) {\n                            info.trgHeight = info.srcHeight;\n                            info.trgWidth = info.srcWidth;\n                        } else {\n                            if (srcRatio > trgRatio) {\n                                info.srcHeight = file.height;\n                                info.srcWidth = info.srcHeight * trgRatio;\n                            } else {\n                                info.srcWidth = file.width;\n                                info.srcHeight = info.srcWidth / trgRatio;\n                            }\n                        }\n                        info.srcX = (file.width - info.srcWidth) / 2;\n                        info.srcY = (file.height - info.srcHeight) / 2;\n                        return info;\n                    },\n\n                    /*\n                     Those functions register themselves to the events on init and handle all\n                     the user interface specific stuff. Overwriting them won't break the upload\n                     but can break the way it's displayed.\n                     You can overwrite them if you don't like the default behavior. If you just\n                     want to add an additional event handler, register it on the dropzone object\n                     and don't overwrite those options.\n                     */\n                    drop: function(e) {\n                        return this.element.classList.remove(\"dz-drag-hover\");\n                    },\n                    dragstart: noop,\n                    dragend: function(e) {\n                        return this.element.classList.remove(\"dz-drag-hover\");\n                    },\n                    dragenter: function(e) {\n                        return this.element.classList.add(\"dz-drag-hover\");\n                    },\n                    dragover: function(e) {\n                        return this.element.classList.add(\"dz-drag-hover\");\n                    },\n                    dragleave: function(e) {\n                        return this.element.classList.remove(\"dz-drag-hover\");\n                    },\n                    paste: noop,\n                    reset: function() {\n                        return this.element.classList.remove(\"dz-started\");\n                    },\n                    addedfile: function(file) {\n                        var node, removeFileEvent, removeLink, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _results;\n                        if (this.element === this.previewsContainer) {\n                            this.element.classList.add(\"dz-started\");\n                        }\n                        file.previewElement = Dropzone.createElement(this.options.previewTemplate.trim());\n                        file.previewTemplate = file.previewElement;\n                        this.previewsContainer.appendChild(file.previewElement);\n                        _ref = file.previewElement.querySelectorAll(\"[data-dz-name]\");\n                        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                            node = _ref[_i];\n                            node.textContent = file.name;\n                        }\n                        _ref1 = file.previewElement.querySelectorAll(\"[data-dz-size]\");\n                        for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) {\n                            node = _ref1[_j];\n                            node.innerHTML = this.filesize(file.size);\n                        }\n                        if (this.options.addRemoveLinks) {\n                            file._removeLink = Dropzone.createElement(\"<a class=\\\"dz-remove\\\" href=\\\"javascript:undefined;\\\" data-dz-remove>\" + this.options.dictRemoveFile + \"</a>\");\n                            file.previewElement.appendChild(file._removeLink);\n                        }\n                        removeFileEvent = (function(_this) {\n                            return function(e) {\n                                e.preventDefault();\n                                e.stopPropagation();\n                                if (file.status === Dropzone.UPLOADING) {\n                                    return Dropzone.confirm(_this.options.dictCancelUploadConfirmation, function() {\n                                        return _this.removeFile(file);\n                                    });\n                                } else {\n                                    if (_this.options.dictRemoveFileConfirmation) {\n                                        return Dropzone.confirm(_this.options.dictRemoveFileConfirmation, function() {\n                                            return _this.removeFile(file);\n                                        });\n                                    } else {\n                                        return _this.removeFile(file);\n                                    }\n                                }\n                            };\n                        })(this);\n                        _ref2 = file.previewElement.querySelectorAll(\"[data-dz-remove]\");\n                        _results = [];\n                        for (_k = 0, _len2 = _ref2.length; _k < _len2; _k++) {\n                            removeLink = _ref2[_k];\n                            _results.push(removeLink.addEventListener(\"click\", removeFileEvent));\n                        }\n                        return _results;\n                    },\n                    removedfile: function(file) {\n                        var _ref;\n                        if ((_ref = file.previewElement) != null) {\n                            _ref.parentNode.removeChild(file.previewElement);\n                        }\n                        return this._updateMaxFilesReachedClass();\n                    },\n                    thumbnail: function(file, dataUrl) {\n                        var thumbnailElement, _i, _len, _ref, _results;\n                        file.previewElement.classList.remove(\"dz-file-preview\");\n                        file.previewElement.classList.add(\"dz-image-preview\");\n                        _ref = file.previewElement.querySelectorAll(\"[data-dz-thumbnail]\");\n                        _results = [];\n                        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                            thumbnailElement = _ref[_i];\n                            thumbnailElement.alt = file.name;\n                            _results.push(thumbnailElement.src = dataUrl);\n                        }\n                        return _results;\n                    },\n                    error: function(file, message) {\n                        var node, _i, _len, _ref, _results;\n                        file.previewElement.classList.add(\"dz-error\");\n                        if (typeof message !== \"String\" && message.error) {\n                            message = message.error;\n                        }\n                        _ref = file.previewElement.querySelectorAll(\"[data-dz-errormessage]\");\n                        _results = [];\n                        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                            node = _ref[_i];\n                            _results.push(node.textContent = message);\n                        }\n                        return _results;\n                    },\n                    errormultiple: noop,\n                    processing: function(file) {\n                        file.previewElement.classList.add(\"dz-processing\");\n                        if (file._removeLink) {\n                            return file._removeLink.textContent = this.options.dictCancelUpload;\n                        }\n                    },\n                    processingmultiple: noop,\n                    uploadprogress: function(file, progress, bytesSent) {\n                        var node, _i, _len, _ref, _results;\n                        _ref = file.previewElement.querySelectorAll(\"[data-dz-uploadprogress]\");\n                        _results = [];\n                        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                            node = _ref[_i];\n                            _results.push(node.style.width = \"\" + progress + \"%\");\n                        }\n                        return _results;\n                    },\n                    totaluploadprogress: noop,\n                    sending: noop,\n                    sendingmultiple: noop,\n                    success: function(file) {\n                        return file.previewElement.classList.add(\"dz-success\");\n                    },\n                    successmultiple: noop,\n                    canceled: function(file) {\n                        return this.emit(\"error\", file, \"Upload canceled.\");\n                    },\n                    canceledmultiple: noop,\n                    complete: function(file) {\n                        if (file._removeLink) {\n                            return file._removeLink.textContent = this.options.dictRemoveFile;\n                        }\n                    },\n                    completemultiple: noop,\n                    maxfilesexceeded: noop,\n                    maxfilesreached: noop,\n                    previewTemplate: \"<div class=\\\"dz-preview dz-file-preview\\\">\\n  <div class=\\\"dz-details\\\">\\n    <div class=\\\"dz-filename\\\"><span data-dz-name></span></div>\\n    <div class=\\\"dz-size\\\" data-dz-size></div>\\n    <img data-dz-thumbnail />\\n  </div>\\n  <div class=\\\"dz-progress\\\"><span class=\\\"dz-upload\\\" data-dz-uploadprogress></span></div>\\n  <div class=\\\"dz-success-mark\\\"><span>✔</span></div>\\n  <div class=\\\"dz-error-mark\\\"><span>✘</span></div>\\n  <div class=\\\"dz-error-message\\\"><span data-dz-errormessage></span></div>\\n</div>\"\n                };\n\n                extend = function() {\n                    var key, object, objects, target, val, _i, _len;\n                    target = arguments[0], objects = 2 <= arguments.length ? __slice.call(arguments, 1) : [];\n                    for (_i = 0, _len = objects.length; _i < _len; _i++) {\n                        object = objects[_i];\n                        for (key in object) {\n                            val = object[key];\n                            target[key] = val;\n                        }\n                    }\n                    return target;\n                };\n\n                function Dropzone(element, options) {\n                    var elementOptions, fallback, _ref;\n                    this.element = element;\n                    this.version = Dropzone.version;\n                    this.defaultOptions.previewTemplate = this.defaultOptions.previewTemplate.replace(/\\n*/g, \"\");\n                    this.clickableElements = [];\n                    this.listeners = [];\n                    this.files = [];\n                    if (typeof this.element === \"string\") {\n                        this.element = document.querySelector(this.element);\n                    }\n                    if (!(this.element && (this.element.nodeType != null))) {\n                        throw new Error(\"Invalid dropzone element.\");\n                    }\n                    if (this.element.dropzone) {\n                        throw new Error(\"Dropzone already attached.\");\n                    }\n                    Dropzone.instances.push(this);\n                    this.element.dropzone = this;\n                    elementOptions = (_ref = Dropzone.optionsForElement(this.element)) != null ? _ref : {};\n                    this.options = extend({}, this.defaultOptions, elementOptions, options != null ? options : {});\n                    if (this.options.forceFallback || !Dropzone.isBrowserSupported()) {\n                        return this.options.fallback.call(this);\n                    }\n                    if (this.options.url == null) {\n                        this.options.url = this.element.getAttribute(\"action\");\n                    }\n                    if (!this.options.url) {\n                        throw new Error(\"No URL provided.\");\n                    }\n                    if (this.options.acceptedFiles && this.options.acceptedMimeTypes) {\n                        throw new Error(\"You can't provide both 'acceptedFiles' and 'acceptedMimeTypes'. 'acceptedMimeTypes' is deprecated.\");\n                    }\n                    if (this.options.acceptedMimeTypes) {\n                        this.options.acceptedFiles = this.options.acceptedMimeTypes;\n                        delete this.options.acceptedMimeTypes;\n                    }\n                    this.options.method = this.options.method.toUpperCase();\n                    if ((fallback = this.getExistingFallback()) && fallback.parentNode) {\n                        fallback.parentNode.removeChild(fallback);\n                    }\n                    if (this.options.previewsContainer) {\n                        this.previewsContainer = Dropzone.getElement(this.options.previewsContainer, \"previewsContainer\");\n                    } else {\n                        this.previewsContainer = this.element;\n                    }\n                    if (this.options.clickable) {\n                        if (this.options.clickable === true) {\n                            this.clickableElements = [this.element];\n                        } else {\n                            this.clickableElements = Dropzone.getElements(this.options.clickable, \"clickable\");\n                        }\n                    }\n                    this.init();\n                }\n\n                Dropzone.prototype.getAcceptedFiles = function() {\n                    var file, _i, _len, _ref, _results;\n                    _ref = this.files;\n                    _results = [];\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        file = _ref[_i];\n                        if (file.accepted) {\n                            _results.push(file);\n                        }\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype.getRejectedFiles = function() {\n                    var file, _i, _len, _ref, _results;\n                    _ref = this.files;\n                    _results = [];\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        file = _ref[_i];\n                        if (!file.accepted) {\n                            _results.push(file);\n                        }\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype.getFilesWithStatus = function(status) {\n                    var file, _i, _len, _ref, _results;\n                    _ref = this.files;\n                    _results = [];\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        file = _ref[_i];\n                        if (file.status === status) {\n                            _results.push(file);\n                        }\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype.getQueuedFiles = function() {\n                    return this.getFilesWithStatus(Dropzone.QUEUED);\n                };\n\n                Dropzone.prototype.getUploadingFiles = function() {\n                    return this.getFilesWithStatus(Dropzone.UPLOADING);\n                };\n\n                Dropzone.prototype.getActiveFiles = function() {\n                    var file, _i, _len, _ref, _results;\n                    _ref = this.files;\n                    _results = [];\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        file = _ref[_i];\n                        if (file.status === Dropzone.UPLOADING || file.status === Dropzone.QUEUED) {\n                            _results.push(file);\n                        }\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype.init = function() {\n                    var eventName, noPropagation, setupHiddenFileInput, _i, _len, _ref, _ref1;\n                    if (this.element.tagName === \"form\") {\n                        this.element.setAttribute(\"enctype\", \"multipart/form-data\");\n                    }\n                    if (this.element.classList.contains(\"dropzone\") && !this.element.querySelector(\".dz-message\")) {\n                        this.element.appendChild(Dropzone.createElement(\"<div class=\\\"dz-default dz-message\\\"><span>\" + this.options.dictDefaultMessage + \"</span></div>\"));\n                    }\n                    if (this.clickableElements.length) {\n                        setupHiddenFileInput = (function(_this) {\n                            return function() {\n                                if (_this.hiddenFileInput) {\n                                    document.body.removeChild(_this.hiddenFileInput);\n                                }\n                                _this.hiddenFileInput = document.createElement(\"input\");\n                                _this.hiddenFileInput.setAttribute(\"type\", \"file\");\n                                if ((_this.options.maxFiles == null) || _this.options.maxFiles > 1) {\n                                    _this.hiddenFileInput.setAttribute(\"multiple\", \"multiple\");\n                                }\n                                _this.hiddenFileInput.className = \"dz-hidden-input\";\n                                if (_this.options.acceptedFiles != null) {\n                                    _this.hiddenFileInput.setAttribute(\"accept\", _this.options.acceptedFiles);\n                                }\n                                _this.hiddenFileInput.style.visibility = \"hidden\";\n                                _this.hiddenFileInput.style.position = \"absolute\";\n                                _this.hiddenFileInput.style.top = \"0\";\n                                _this.hiddenFileInput.style.left = \"0\";\n                                _this.hiddenFileInput.style.height = \"0\";\n                                _this.hiddenFileInput.style.width = \"0\";\n                                document.body.appendChild(_this.hiddenFileInput);\n                                return _this.hiddenFileInput.addEventListener(\"change\", function() {\n                                    var file, files, _i, _len;\n                                    files = _this.hiddenFileInput.files;\n                                    if (files.length) {\n                                        for (_i = 0, _len = files.length; _i < _len; _i++) {\n                                            file = files[_i];\n                                            _this.addFile(file);\n                                        }\n                                    }\n                                    return setupHiddenFileInput();\n                                });\n                            };\n                        })(this);\n                        setupHiddenFileInput();\n                    }\n                    this.URL = (_ref = window.URL) != null ? _ref : window.webkitURL;\n                    _ref1 = this.events;\n                    for (_i = 0, _len = _ref1.length; _i < _len; _i++) {\n                        eventName = _ref1[_i];\n                        this.on(eventName, this.options[eventName]);\n                    }\n                    this.on(\"uploadprogress\", (function(_this) {\n                        return function() {\n                            return _this.updateTotalUploadProgress();\n                        };\n                    })(this));\n                    this.on(\"removedfile\", (function(_this) {\n                        return function() {\n                            return _this.updateTotalUploadProgress();\n                        };\n                    })(this));\n                    this.on(\"canceled\", (function(_this) {\n                        return function(file) {\n                            return _this.emit(\"complete\", file);\n                        };\n                    })(this));\n                    this.on(\"complete\", (function(_this) {\n                        return function(file) {\n                            if (_this.getUploadingFiles().length === 0 && _this.getQueuedFiles().length === 0) {\n                                return setTimeout((function() {\n                                    return _this.emit(\"queuecomplete\");\n                                }), 0);\n                            }\n                        };\n                    })(this));\n                    noPropagation = function(e) {\n                        e.stopPropagation();\n                        if (e.preventDefault) {\n                            return e.preventDefault();\n                        } else {\n                            return e.returnValue = false;\n                        }\n                    };\n                    this.listeners = [\n                        {\n                            element: this.element,\n                            events: {\n                                \"dragstart\": (function(_this) {\n                                    return function(e) {\n                                        return _this.emit(\"dragstart\", e);\n                                    };\n                                })(this),\n                                \"dragenter\": (function(_this) {\n                                    return function(e) {\n                                        noPropagation(e);\n                                        return _this.emit(\"dragenter\", e);\n                                    };\n                                })(this),\n                                \"dragover\": (function(_this) {\n                                    return function(e) {\n                                        var efct;\n                                        try {\n                                            efct = e.dataTransfer.effectAllowed;\n                                        } catch (_error) {}\n                                        e.dataTransfer.dropEffect = 'move' === efct || 'linkMove' === efct ? 'move' : 'copy';\n                                        noPropagation(e);\n                                        return _this.emit(\"dragover\", e);\n                                    };\n                                })(this),\n                                \"dragleave\": (function(_this) {\n                                    return function(e) {\n                                        return _this.emit(\"dragleave\", e);\n                                    };\n                                })(this),\n                                \"drop\": (function(_this) {\n                                    return function(e) {\n                                        noPropagation(e);\n                                        return _this.drop(e);\n                                    };\n                                })(this),\n                                \"dragend\": (function(_this) {\n                                    return function(e) {\n                                        return _this.emit(\"dragend\", e);\n                                    };\n                                })(this)\n                            }\n                        }\n                    ];\n                    this.clickableElements.forEach((function(_this) {\n                        return function(clickableElement) {\n                            return _this.listeners.push({\n                                element: clickableElement,\n                                events: {\n                                    \"click\": function(evt) {\n                                        if ((clickableElement !== _this.element) || (evt.target === _this.element || Dropzone.elementInside(evt.target, _this.element.querySelector(\".dz-message\")))) {\n                                            return _this.hiddenFileInput.click();\n                                        }\n                                    }\n                                }\n                            });\n                        };\n                    })(this));\n                    this.enable();\n                    return this.options.init.call(this);\n                };\n\n                Dropzone.prototype.destroy = function() {\n                    var _ref;\n                    this.disable();\n                    this.removeAllFiles(true);\n                    if ((_ref = this.hiddenFileInput) != null ? _ref.parentNode : void 0) {\n                        this.hiddenFileInput.parentNode.removeChild(this.hiddenFileInput);\n                        this.hiddenFileInput = null;\n                    }\n                    delete this.element.dropzone;\n                    return Dropzone.instances.splice(Dropzone.instances.indexOf(this), 1);\n                };\n\n                Dropzone.prototype.updateTotalUploadProgress = function() {\n                    var activeFiles, file, totalBytes, totalBytesSent, totalUploadProgress, _i, _len, _ref;\n                    totalBytesSent = 0;\n                    totalBytes = 0;\n                    activeFiles = this.getActiveFiles();\n                    if (activeFiles.length) {\n                        _ref = this.getActiveFiles();\n                        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                            file = _ref[_i];\n                            totalBytesSent += file.upload.bytesSent;\n                            totalBytes += file.upload.total;\n                        }\n                        totalUploadProgress = 100 * totalBytesSent / totalBytes;\n                    } else {\n                        totalUploadProgress = 100;\n                    }\n                    return this.emit(\"totaluploadprogress\", totalUploadProgress, totalBytes, totalBytesSent);\n                };\n\n                Dropzone.prototype.getFallbackForm = function() {\n                    var existingFallback, fields, fieldsString, form;\n                    if (existingFallback = this.getExistingFallback()) {\n                        return existingFallback;\n                    }\n                    fieldsString = \"<div class=\\\"dz-fallback\\\">\";\n                    if (this.options.dictFallbackText) {\n                        fieldsString += \"<p>\" + this.options.dictFallbackText + \"</p>\";\n                    }\n                    fieldsString += \"<input type=\\\"file\\\" name=\\\"\" + this.options.paramName + (this.options.uploadMultiple ? \"[]\" : \"\") + \"\\\" \" + (this.options.uploadMultiple ? 'multiple=\"multiple\"' : void 0) + \" /><input type=\\\"submit\\\" value=\\\"Upload!\\\"></div>\";\n                    fields = Dropzone.createElement(fieldsString);\n                    if (this.element.tagName !== \"FORM\") {\n                        form = Dropzone.createElement(\"<form action=\\\"\" + this.options.url + \"\\\" enctype=\\\"multipart/form-data\\\" method=\\\"\" + this.options.method + \"\\\"></form>\");\n                        form.appendChild(fields);\n                    } else {\n                        this.element.setAttribute(\"enctype\", \"multipart/form-data\");\n                        this.element.setAttribute(\"method\", this.options.method);\n                    }\n                    return form != null ? form : fields;\n                };\n\n                Dropzone.prototype.getExistingFallback = function() {\n                    var fallback, getFallback, tagName, _i, _len, _ref;\n                    getFallback = function(elements) {\n                        var el, _i, _len;\n                        for (_i = 0, _len = elements.length; _i < _len; _i++) {\n                            el = elements[_i];\n                            if (/(^| )fallback($| )/.test(el.className)) {\n                                return el;\n                            }\n                        }\n                    };\n                    _ref = [\"div\", \"form\"];\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        tagName = _ref[_i];\n                        if (fallback = getFallback(this.element.getElementsByTagName(tagName))) {\n                            return fallback;\n                        }\n                    }\n                };\n\n                Dropzone.prototype.setupEventListeners = function() {\n                    var elementListeners, event, listener, _i, _len, _ref, _results;\n                    _ref = this.listeners;\n                    _results = [];\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        elementListeners = _ref[_i];\n                        _results.push((function() {\n                            var _ref1, _results1;\n                            _ref1 = elementListeners.events;\n                            _results1 = [];\n                            for (event in _ref1) {\n                                listener = _ref1[event];\n                                _results1.push(elementListeners.element.addEventListener(event, listener, false));\n                            }\n                            return _results1;\n                        })());\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype.removeEventListeners = function() {\n                    var elementListeners, event, listener, _i, _len, _ref, _results;\n                    _ref = this.listeners;\n                    _results = [];\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        elementListeners = _ref[_i];\n                        _results.push((function() {\n                            var _ref1, _results1;\n                            _ref1 = elementListeners.events;\n                            _results1 = [];\n                            for (event in _ref1) {\n                                listener = _ref1[event];\n                                _results1.push(elementListeners.element.removeEventListener(event, listener, false));\n                            }\n                            return _results1;\n                        })());\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype.disable = function() {\n                    var file, _i, _len, _ref, _results;\n                    this.clickableElements.forEach(function(element) {\n                        return element.classList.remove(\"dz-clickable\");\n                    });\n                    this.removeEventListeners();\n                    _ref = this.files;\n                    _results = [];\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        file = _ref[_i];\n                        _results.push(this.cancelUpload(file));\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype.enable = function() {\n                    this.clickableElements.forEach(function(element) {\n                        return element.classList.add(\"dz-clickable\");\n                    });\n                    return this.setupEventListeners();\n                };\n\n                Dropzone.prototype.filesize = function(size) {\n                    var string;\n                    if (size >= 1024 * 1024 * 1024 * 1024 / 10) {\n                        size = size / (1024 * 1024 * 1024 * 1024 / 10);\n                        string = \"TiB\";\n                    } else if (size >= 1024 * 1024 * 1024 / 10) {\n                        size = size / (1024 * 1024 * 1024 / 10);\n                        string = \"GiB\";\n                    } else if (size >= 1024 * 1024 / 10) {\n                        size = size / (1024 * 1024 / 10);\n                        string = \"MiB\";\n                    } else if (size >= 1024 / 10) {\n                        size = size / (1024 / 10);\n                        string = \"KiB\";\n                    } else {\n                        size = size * 10;\n                        string = \"b\";\n                    }\n                    return \"<strong>\" + (Math.round(size) / 10) + \"</strong> \" + string;\n                };\n\n                Dropzone.prototype._updateMaxFilesReachedClass = function() {\n                    if ((this.options.maxFiles != null) && this.getAcceptedFiles().length >= this.options.maxFiles) {\n                        if (this.getAcceptedFiles().length === this.options.maxFiles) {\n                            this.emit('maxfilesreached', this.files);\n                        }\n                        return this.element.classList.add(\"dz-max-files-reached\");\n                    } else {\n                        return this.element.classList.remove(\"dz-max-files-reached\");\n                    }\n                };\n\n                Dropzone.prototype.drop = function(e) {\n                    var files, items;\n                    if (!e.dataTransfer) {\n                        return;\n                    }\n                    this.emit(\"drop\", e);\n                    files = e.dataTransfer.files;\n                    if (files.length) {\n                        items = e.dataTransfer.items;\n                        if (items && items.length && (items[0].webkitGetAsEntry != null)) {\n                            this._addFilesFromItems(items);\n                        } else {\n                            this.handleFiles(files);\n                        }\n                    }\n                };\n\n                Dropzone.prototype.paste = function(e) {\n                    var items, _ref;\n                    if ((e != null ? (_ref = e.clipboardData) != null ? _ref.items : void 0 : void 0) == null) {\n                        return;\n                    }\n                    this.emit(\"paste\", e);\n                    items = e.clipboardData.items;\n                    if (items.length) {\n                        return this._addFilesFromItems(items);\n                    }\n                };\n\n                Dropzone.prototype.handleFiles = function(files) {\n                    var file, _i, _len, _results;\n                    _results = [];\n                    for (_i = 0, _len = files.length; _i < _len; _i++) {\n                        file = files[_i];\n                        _results.push(this.addFile(file));\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype._addFilesFromItems = function(items) {\n                    var entry, item, _i, _len, _results;\n                    _results = [];\n                    for (_i = 0, _len = items.length; _i < _len; _i++) {\n                        item = items[_i];\n                        if ((item.webkitGetAsEntry != null) && (entry = item.webkitGetAsEntry())) {\n                            if (entry.isFile) {\n                                _results.push(this.addFile(item.getAsFile()));\n                            } else if (entry.isDirectory) {\n                                _results.push(this._addFilesFromDirectory(entry, entry.name));\n                            } else {\n                                _results.push(void 0);\n                            }\n                        } else if (item.getAsFile != null) {\n                            if ((item.kind == null) || item.kind === \"file\") {\n                                _results.push(this.addFile(item.getAsFile()));\n                            } else {\n                                _results.push(void 0);\n                            }\n                        } else {\n                            _results.push(void 0);\n                        }\n                    }\n                    return _results;\n                };\n\n                Dropzone.prototype._addFilesFromDirectory = function(directory, path) {\n                    var dirReader, entriesReader;\n                    dirReader = directory.createReader();\n                    entriesReader = (function(_this) {\n                        return function(entries) {\n                            var entry, _i, _len;\n                            for (_i = 0, _len = entries.length; _i < _len; _i++) {\n                                entry = entries[_i];\n                                if (entry.isFile) {\n                                    entry.file(function(file) {\n                                        if (_this.options.ignoreHiddenFiles && file.name.substring(0, 1) === '.') {\n                                            return;\n                                        }\n                                        file.fullPath = \"\" + path + \"/\" + file.name;\n                                        return _this.addFile(file);\n                                    });\n                                } else if (entry.isDirectory) {\n                                    _this._addFilesFromDirectory(entry, \"\" + path + \"/\" + entry.name);\n                                }\n                            }\n                        };\n                    })(this);\n                    return dirReader.readEntries(entriesReader, function(error) {\n                        return typeof console !== \"undefined\" && console !== null ? typeof console.log === \"function\" ? console.log(error) : void 0 : void 0;\n                    });\n                };\n\n                Dropzone.prototype.accept = function(file, done) {\n                    if (file.size > this.options.maxFilesize * 1024 * 1024) {\n                        return done(this.options.dictFileTooBig.replace(\"{{filesize}}\", Math.round(file.size / 1024 / 10.24) / 100).replace(\"{{maxFilesize}}\", this.options.maxFilesize));\n                    } else if (!Dropzone.isValidFile(file, this.options.acceptedFiles)) {\n                        return done(this.options.dictInvalidFileType);\n                    } else if ((this.options.maxFiles != null) && this.getAcceptedFiles().length >= this.options.maxFiles) {\n                        done(this.options.dictMaxFilesExceeded.replace(\"{{maxFiles}}\", this.options.maxFiles));\n                        return this.emit(\"maxfilesexceeded\", file);\n                    } else {\n                        return this.options.accept.call(this, file, done);\n                    }\n                };\n\n                Dropzone.prototype.addFile = function(file) {\n                    file.upload = {\n                        progress: 0,\n                        total: file.size,\n                        bytesSent: 0\n                    };\n                    this.files.push(file);\n                    file.status = Dropzone.ADDED;\n                    this.emit(\"addedfile\", file);\n                    this._enqueueThumbnail(file);\n                    return this.accept(file, (function(_this) {\n                        return function(error) {\n                            if (error) {\n                                file.accepted = false;\n                                _this._errorProcessing([file], error);\n                            } else {\n                                file.accepted = true;\n                                if (_this.options.autoQueue) {\n                                    _this.enqueueFile(file);\n                                }\n                            }\n                            return _this._updateMaxFilesReachedClass();\n                        };\n                    })(this));\n                };\n\n                Dropzone.prototype.enqueueFiles = function(files) {\n                    var file, _i, _len;\n                    for (_i = 0, _len = files.length; _i < _len; _i++) {\n                        file = files[_i];\n                        this.enqueueFile(file);\n                    }\n                    return null;\n                };\n\n                Dropzone.prototype.enqueueFile = function(file) {\n                    if (file.status === Dropzone.ADDED && file.accepted === true) {\n                        file.status = Dropzone.QUEUED;\n                        if (this.options.autoProcessQueue) {\n                            return setTimeout(((function(_this) {\n                                return function() {\n                                    return _this.processQueue();\n                                };\n                            })(this)), 0);\n                        }\n                    } else {\n                        throw new Error(\"This file can't be queued because it has already been processed or was rejected.\");\n                    }\n                };\n\n                Dropzone.prototype._thumbnailQueue = [];\n\n                Dropzone.prototype._processingThumbnail = false;\n\n                Dropzone.prototype._enqueueThumbnail = function(file) {\n                    if (this.options.createImageThumbnails && file.type.match(/image.*/) && file.size <= this.options.maxThumbnailFilesize * 1024 * 1024) {\n                        this._thumbnailQueue.push(file);\n                        return setTimeout(((function(_this) {\n                            return function() {\n                                return _this._processThumbnailQueue();\n                            };\n                        })(this)), 0);\n                    }\n                };\n\n                Dropzone.prototype._processThumbnailQueue = function() {\n                    if (this._processingThumbnail || this._thumbnailQueue.length === 0) {\n                        return;\n                    }\n                    this._processingThumbnail = true;\n                    return this.createThumbnail(this._thumbnailQueue.shift(), (function(_this) {\n                        return function() {\n                            _this._processingThumbnail = false;\n                            return _this._processThumbnailQueue();\n                        };\n                    })(this));\n                };\n\n                Dropzone.prototype.removeFile = function(file) {\n                    if (file.status === Dropzone.UPLOADING) {\n                        this.cancelUpload(file);\n                    }\n                    this.files = without(this.files, file);\n                    this.emit(\"removedfile\", file);\n                    if (this.files.length === 0) {\n                        return this.emit(\"reset\");\n                    }\n                };\n\n                Dropzone.prototype.removeAllFiles = function(cancelIfNecessary) {\n                    var file, _i, _len, _ref;\n                    if (cancelIfNecessary == null) {\n                        cancelIfNecessary = false;\n                    }\n                    _ref = this.files.slice();\n                    for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                        file = _ref[_i];\n                        if (file.status !== Dropzone.UPLOADING || cancelIfNecessary) {\n                            this.removeFile(file);\n                        }\n                    }\n                    return null;\n                };\n\n                Dropzone.prototype.createThumbnail = function(file, callback) {\n                    var fileReader;\n                    fileReader = new FileReader;\n                    fileReader.onload = (function(_this) {\n                        return function() {\n                            var img;\n                            img = document.createElement(\"img\");\n                            img.onload = function() {\n                                var canvas, ctx, resizeInfo, thumbnail, _ref, _ref1, _ref2, _ref3;\n                                file.width = img.width;\n                                file.height = img.height;\n                                resizeInfo = _this.options.resize.call(_this, file);\n                                if (resizeInfo.trgWidth == null) {\n                                    resizeInfo.trgWidth = _this.options.thumbnailWidth;\n                                }\n                                if (resizeInfo.trgHeight == null) {\n                                    resizeInfo.trgHeight = _this.options.thumbnailHeight;\n                                }\n                                canvas = document.createElement(\"canvas\");\n                                ctx = canvas.getContext(\"2d\");\n                                canvas.width = resizeInfo.trgWidth;\n                                canvas.height = resizeInfo.trgHeight;\n                                drawImageIOSFix(ctx, img, (_ref = resizeInfo.srcX) != null ? _ref : 0, (_ref1 = resizeInfo.srcY) != null ? _ref1 : 0, resizeInfo.srcWidth, resizeInfo.srcHeight, (_ref2 = resizeInfo.trgX) != null ? _ref2 : 0, (_ref3 = resizeInfo.trgY) != null ? _ref3 : 0, resizeInfo.trgWidth, resizeInfo.trgHeight);\n                                thumbnail = canvas.toDataURL(\"image/png\");\n                                _this.emit(\"thumbnail\", file, thumbnail);\n                                if (callback != null) {\n                                    return callback();\n                                }\n                            };\n                            return img.src = fileReader.result;\n                        };\n                    })(this);\n                    return fileReader.readAsDataURL(file);\n                };\n\n                Dropzone.prototype.processQueue = function() {\n                    var i, parallelUploads, processingLength, queuedFiles;\n                    parallelUploads = this.options.parallelUploads;\n                    processingLength = this.getUploadingFiles().length;\n                    i = processingLength;\n                    if (processingLength >= parallelUploads) {\n                        return;\n                    }\n                    queuedFiles = this.getQueuedFiles();\n                    if (!(queuedFiles.length > 0)) {\n                        return;\n                    }\n                    if (this.options.uploadMultiple) {\n                        return this.processFiles(queuedFiles.slice(0, parallelUploads - processingLength));\n                    } else {\n                        while (i < parallelUploads) {\n                            if (!queuedFiles.length) {\n                                return;\n                            }\n                            this.processFile(queuedFiles.shift());\n                            i++;\n                        }\n                    }\n                };\n\n                Dropzone.prototype.processFile = function(file) {\n                    return this.processFiles([file]);\n                };\n\n                Dropzone.prototype.processFiles = function(files) {\n                    var file, _i, _len;\n                    for (_i = 0, _len = files.length; _i < _len; _i++) {\n                        file = files[_i];\n                        file.processing = true;\n                        file.status = Dropzone.UPLOADING;\n                        this.emit(\"processing\", file);\n                    }\n                    if (this.options.uploadMultiple) {\n                        this.emit(\"processingmultiple\", files);\n                    }\n                    return this.uploadFiles(files);\n                };\n\n                Dropzone.prototype._getFilesWithXhr = function(xhr) {\n                    var file, files;\n                    return files = (function() {\n                        var _i, _len, _ref, _results;\n                        _ref = this.files;\n                        _results = [];\n                        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                            file = _ref[_i];\n                            if (file.xhr === xhr) {\n                                _results.push(file);\n                            }\n                        }\n                        return _results;\n                    }).call(this);\n                };\n\n                Dropzone.prototype.cancelUpload = function(file) {\n                    var groupedFile, groupedFiles, _i, _j, _len, _len1, _ref;\n                    if (file.status === Dropzone.UPLOADING) {\n                        groupedFiles = this._getFilesWithXhr(file.xhr);\n                        for (_i = 0, _len = groupedFiles.length; _i < _len; _i++) {\n                            groupedFile = groupedFiles[_i];\n                            groupedFile.status = Dropzone.CANCELED;\n                        }\n                        file.xhr.abort();\n                        for (_j = 0, _len1 = groupedFiles.length; _j < _len1; _j++) {\n                            groupedFile = groupedFiles[_j];\n                            this.emit(\"canceled\", groupedFile);\n                        }\n                        if (this.options.uploadMultiple) {\n                            this.emit(\"canceledmultiple\", groupedFiles);\n                        }\n                    } else if ((_ref = file.status) === Dropzone.ADDED || _ref === Dropzone.QUEUED) {\n                        file.status = Dropzone.CANCELED;\n                        this.emit(\"canceled\", file);\n                        if (this.options.uploadMultiple) {\n                            this.emit(\"canceledmultiple\", [file]);\n                        }\n                    }\n                    if (this.options.autoProcessQueue) {\n                        return this.processQueue();\n                    }\n                };\n\n                Dropzone.prototype.uploadFile = function(file) {\n                    return this.uploadFiles([file]);\n                };\n\n                Dropzone.prototype.uploadFiles = function(files) {\n                    var file, formData, handleError, headerName, headerValue, headers, input, inputName, inputType, key, option, progressObj, response, updateProgress, value, xhr, _i, _j, _k, _l, _len, _len1, _len2, _len3, _len4, _m, _ref, _ref1, _ref2, _ref3, _ref4;\n                    xhr = new XMLHttpRequest();\n                    for (_i = 0, _len = files.length; _i < _len; _i++) {\n                        file = files[_i];\n                        file.xhr = xhr;\n                    }\n                    xhr.open(this.options.method, this.options.url, true);\n                    xhr.withCredentials = !!this.options.withCredentials;\n                    response = null;\n                    handleError = (function(_this) {\n                        return function() {\n                            var _j, _len1, _results;\n                            _results = [];\n                            for (_j = 0, _len1 = files.length; _j < _len1; _j++) {\n                                file = files[_j];\n                                _results.push(_this._errorProcessing(files, response || _this.options.dictResponseError.replace(\"{{statusCode}}\", xhr.status), xhr));\n                            }\n                            return _results;\n                        };\n                    })(this);\n                    updateProgress = (function(_this) {\n                        return function(e) {\n                            var allFilesFinished, progress, _j, _k, _l, _len1, _len2, _len3, _results;\n                            if (e != null) {\n                                progress = 100 * e.loaded / e.total;\n                                for (_j = 0, _len1 = files.length; _j < _len1; _j++) {\n                                    file = files[_j];\n                                    file.upload = {\n                                        progress: progress,\n                                        total: e.total,\n                                        bytesSent: e.loaded\n                                    };\n                                }\n                            } else {\n                                allFilesFinished = true;\n                                progress = 100;\n                                for (_k = 0, _len2 = files.length; _k < _len2; _k++) {\n                                    file = files[_k];\n                                    if (!(file.upload.progress === 100 && file.upload.bytesSent === file.upload.total)) {\n                                        allFilesFinished = false;\n                                    }\n                                    file.upload.progress = progress;\n                                    file.upload.bytesSent = file.upload.total;\n                                }\n                                if (allFilesFinished) {\n                                    return;\n                                }\n                            }\n                            _results = [];\n                            for (_l = 0, _len3 = files.length; _l < _len3; _l++) {\n                                file = files[_l];\n                                _results.push(_this.emit(\"uploadprogress\", file, progress, file.upload.bytesSent));\n                            }\n                            return _results;\n                        };\n                    })(this);\n                    xhr.onload = (function(_this) {\n                        return function(e) {\n                            var _ref;\n                            if (files[0].status === Dropzone.CANCELED) {\n                                return;\n                            }\n                            if (xhr.readyState !== 4) {\n                                return;\n                            }\n                            response = xhr.responseText;\n                            if (xhr.getResponseHeader(\"content-type\") && ~xhr.getResponseHeader(\"content-type\").indexOf(\"application/json\")) {\n                                try {\n                                    response = JSON.parse(response);\n                                } catch (_error) {\n                                    e = _error;\n                                    response = \"Invalid JSON response from server.\";\n                                }\n                            }\n                            updateProgress();\n                            if (!((200 <= (_ref = xhr.status) && _ref < 300))) {\n                                return handleError();\n                            } else {\n                                return _this._finished(files, response, e);\n                            }\n                        };\n                    })(this);\n                    xhr.onerror = (function(_this) {\n                        return function() {\n                            if (files[0].status === Dropzone.CANCELED) {\n                                return;\n                            }\n                            return handleError();\n                        };\n                    })(this);\n                    progressObj = (_ref = xhr.upload) != null ? _ref : xhr;\n                    progressObj.onprogress = updateProgress;\n                    headers = {\n                        \"Accept\": \"application/json\",\n                        \"Cache-Control\": \"no-cache\",\n                        \"X-Requested-With\": \"XMLHttpRequest\"\n                    };\n                    if (this.options.headers) {\n                        extend(headers, this.options.headers);\n                    }\n                    for (headerName in headers) {\n                        headerValue = headers[headerName];\n                        xhr.setRequestHeader(headerName, headerValue);\n                    }\n                    formData = new FormData();\n                    if (this.options.params) {\n                        _ref1 = this.options.params;\n                        for (key in _ref1) {\n                            value = _ref1[key];\n                            formData.append(key, value);\n                        }\n                    }\n                    for (_j = 0, _len1 = files.length; _j < _len1; _j++) {\n                        file = files[_j];\n                        this.emit(\"sending\", file, xhr, formData);\n                    }\n                    if (this.options.uploadMultiple) {\n                        this.emit(\"sendingmultiple\", files, xhr, formData);\n                    }\n                    if (this.element.tagName === \"FORM\") {\n                        _ref2 = this.element.querySelectorAll(\"input, textarea, select, button\");\n                        for (_k = 0, _len2 = _ref2.length; _k < _len2; _k++) {\n                            input = _ref2[_k];\n                            inputName = input.getAttribute(\"name\");\n                            inputType = input.getAttribute(\"type\");\n                            if (input.tagName === \"SELECT\" && input.hasAttribute(\"multiple\")) {\n                                _ref3 = input.options;\n                                for (_l = 0, _len3 = _ref3.length; _l < _len3; _l++) {\n                                    option = _ref3[_l];\n                                    if (option.selected) {\n                                        formData.append(inputName, option.value);\n                                    }\n                                }\n                            } else if (!inputType || ((_ref4 = inputType.toLowerCase()) !== \"checkbox\" && _ref4 !== \"radio\") || input.checked) {\n                                formData.append(inputName, input.value);\n                            }\n                        }\n                    }\n                    for (_m = 0, _len4 = files.length; _m < _len4; _m++) {\n                        file = files[_m];\n                        formData.append(\"\" + this.options.paramName + (this.options.uploadMultiple ? \"[]\" : \"\"), file, file.name);\n                    }\n                    return xhr.send(formData);\n                };\n\n                Dropzone.prototype._finished = function(files, responseText, e) {\n                    var file, _i, _len;\n                    for (_i = 0, _len = files.length; _i < _len; _i++) {\n                        file = files[_i];\n                        file.status = Dropzone.SUCCESS;\n                        this.emit(\"success\", file, responseText, e);\n                        this.emit(\"complete\", file);\n                    }\n                    if (this.options.uploadMultiple) {\n                        this.emit(\"successmultiple\", files, responseText, e);\n                        this.emit(\"completemultiple\", files);\n                    }\n                    if (this.options.autoProcessQueue) {\n                        return this.processQueue();\n                    }\n                };\n\n                Dropzone.prototype._errorProcessing = function(files, message, xhr) {\n                    var file, _i, _len;\n                    for (_i = 0, _len = files.length; _i < _len; _i++) {\n                        file = files[_i];\n                        file.status = Dropzone.ERROR;\n                        this.emit(\"error\", file, message, xhr);\n                        this.emit(\"complete\", file);\n                    }\n                    if (this.options.uploadMultiple) {\n                        this.emit(\"errormultiple\", files, message, xhr);\n                        this.emit(\"completemultiple\", files);\n                    }\n                    if (this.options.autoProcessQueue) {\n                        return this.processQueue();\n                    }\n                };\n\n                return Dropzone;\n\n            })(Em);\n\n            Dropzone.version = \"3.8.7\";\n\n            Dropzone.options = {};\n\n            Dropzone.optionsForElement = function(element) {\n                if (element.getAttribute(\"id\")) {\n                    return Dropzone.options[camelize(element.getAttribute(\"id\"))];\n                } else {\n                    return void 0;\n                }\n            };\n\n            Dropzone.instances = [];\n\n            Dropzone.forElement = function(element) {\n                if (typeof element === \"string\") {\n                    element = document.querySelector(element);\n                }\n                if ((element != null ? element.dropzone : void 0) == null) {\n                    throw new Error(\"No Dropzone found for given element. This is probably because you're trying to access it before Dropzone had the time to initialize. Use the `init` option to setup any additional observers on your Dropzone.\");\n                }\n                return element.dropzone;\n            };\n\n            Dropzone.autoDiscover = true;\n\n            Dropzone.discover = function() {\n                var checkElements, dropzone, dropzones, _i, _len, _results;\n                if (document.querySelectorAll) {\n                    dropzones = document.querySelectorAll(\".dropzone\");\n                } else {\n                    dropzones = [];\n                    checkElements = function(elements) {\n                        var el, _i, _len, _results;\n                        _results = [];\n                        for (_i = 0, _len = elements.length; _i < _len; _i++) {\n                            el = elements[_i];\n                            if (/(^| )dropzone($| )/.test(el.className)) {\n                                _results.push(dropzones.push(el));\n                            } else {\n                                _results.push(void 0);\n                            }\n                        }\n                        return _results;\n                    };\n                    checkElements(document.getElementsByTagName(\"div\"));\n                    checkElements(document.getElementsByTagName(\"form\"));\n                }\n                _results = [];\n                for (_i = 0, _len = dropzones.length; _i < _len; _i++) {\n                    dropzone = dropzones[_i];\n                    if (Dropzone.optionsForElement(dropzone) !== false) {\n                        _results.push(new Dropzone(dropzone));\n                    } else {\n                        _results.push(void 0);\n                    }\n                }\n                return _results;\n            };\n\n            Dropzone.blacklistedBrowsers = [/opera.*Macintosh.*version\\/12/i];\n\n            Dropzone.isBrowserSupported = function() {\n                var capableBrowser, regex, _i, _len, _ref;\n                capableBrowser = true;\n                if (window.File && window.FileReader && window.FileList && window.Blob && window.FormData && document.querySelector) {\n                    if (!(\"classList\" in document.createElement(\"a\"))) {\n                        capableBrowser = false;\n                    } else {\n                        _ref = Dropzone.blacklistedBrowsers;\n                        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n                            regex = _ref[_i];\n                            if (regex.test(navigator.userAgent)) {\n                                capableBrowser = false;\n                                continue;\n                            }\n                        }\n                    }\n                } else {\n                    capableBrowser = false;\n                }\n                return capableBrowser;\n            };\n\n            without = function(list, rejectedItem) {\n                var item, _i, _len, _results;\n                _results = [];\n                for (_i = 0, _len = list.length; _i < _len; _i++) {\n                    item = list[_i];\n                    if (item !== rejectedItem) {\n                        _results.push(item);\n                    }\n                }\n                return _results;\n            };\n\n            camelize = function(str) {\n                return str.replace(/[\\-_](\\w)/g, function(match) {\n                    return match.charAt(1).toUpperCase();\n                });\n            };\n\n            Dropzone.createElement = function(string) {\n                var div;\n                div = document.createElement(\"div\");\n                div.innerHTML = string;\n                return div.childNodes[0];\n            };\n\n            Dropzone.elementInside = function(element, container) {\n                if (element === container) {\n                    return true;\n                }\n                while (element = element.parentNode) {\n                    if (element === container) {\n                        return true;\n                    }\n                }\n                return false;\n            };\n\n            Dropzone.getElement = function(el, name) {\n                var element;\n                if (typeof el === \"string\") {\n                    element = document.querySelector(el);\n                } else if (el.nodeType != null) {\n                    element = el;\n                }\n                if (element == null) {\n                    throw new Error(\"Invalid `\" + name + \"` option provided. Please provide a CSS selector or a plain HTML element.\");\n                }\n                return element;\n            };\n\n            Dropzone.getElements = function(els, name) {\n                var e, el, elements, _i, _j, _len, _len1, _ref;\n                if (els instanceof Array) {\n                    elements = [];\n                    try {\n                        for (_i = 0, _len = els.length; _i < _len; _i++) {\n                            el = els[_i];\n                            elements.push(this.getElement(el, name));\n                        }\n                    } catch (_error) {\n                        e = _error;\n                        elements = null;\n                    }\n                } else if (typeof els === \"string\") {\n                    elements = [];\n                    _ref = document.querySelectorAll(els);\n                    for (_j = 0, _len1 = _ref.length; _j < _len1; _j++) {\n                        el = _ref[_j];\n                        elements.push(el);\n                    }\n                } else if (els.nodeType != null) {\n                    elements = [els];\n                }\n                if (!((elements != null) && elements.length)) {\n                    throw new Error(\"Invalid `\" + name + \"` option provided. Please provide a CSS selector, a plain HTML element or a list of those.\");\n                }\n                return elements;\n            };\n\n            Dropzone.confirm = function(question, accepted, rejected) {\n                if (window.confirm(question)) {\n                    return accepted();\n                } else if (rejected != null) {\n                    return rejected();\n                }\n            };\n\n            Dropzone.isValidFile = function(file, acceptedFiles) {\n                var baseMimeType, mimeType, validType, _i, _len;\n                if (!acceptedFiles) {\n                    return true;\n                }\n                acceptedFiles = acceptedFiles.split(\",\");\n                mimeType = file.type;\n                baseMimeType = mimeType.replace(/\\/.*$/, \"\");\n                for (_i = 0, _len = acceptedFiles.length; _i < _len; _i++) {\n                    validType = acceptedFiles[_i];\n                    validType = validType.trim();\n                    if (validType.charAt(0) === \".\") {\n                        if (file.name.toLowerCase().indexOf(validType.toLowerCase(), file.name.length - validType.length) !== -1) {\n                            return true;\n                        }\n                    } else if (/\\/\\*$/.test(validType)) {\n                        if (baseMimeType === validType.replace(/\\/.*$/, \"\")) {\n                            return true;\n                        }\n                    } else {\n                        if (mimeType === validType) {\n                            return true;\n                        }\n                    }\n                }\n                return false;\n            };\n\n            if (typeof jQuery !== \"undefined\" && jQuery !== null) {\n                jQuery.fn.dropzone = function(options) {\n                    return this.each(function() {\n                        return new Dropzone(this, options);\n                    });\n                };\n            }\n\n            if (typeof module !== \"undefined\" && module !== null) {\n                module.exports = Dropzone;\n            } else {\n                window.Dropzone = Dropzone;\n            }\n\n            Dropzone.ADDED = \"added\";\n\n            Dropzone.QUEUED = \"queued\";\n\n            Dropzone.ACCEPTED = Dropzone.QUEUED;\n\n            Dropzone.UPLOADING = \"uploading\";\n\n            Dropzone.PROCESSING = Dropzone.UPLOADING;\n\n            Dropzone.CANCELED = \"canceled\";\n\n            Dropzone.ERROR = \"error\";\n\n            Dropzone.SUCCESS = \"success\";\n\n\n            /*\n\n             Bugfix for iOS 6 and 7\n             Source: http://stackoverflow.com/questions/11929099/html5-canvas-drawimage-ratio-bug-ios\n             based on the work of https://github.com/stomita/ios-imagefile-megapixel\n             */\n\n            detectVerticalSquash = function(img) {\n                var alpha, canvas, ctx, data, ey, ih, iw, py, ratio, sy;\n                iw = img.naturalWidth;\n                ih = img.naturalHeight;\n                canvas = document.createElement(\"canvas\");\n                canvas.width = 1;\n                canvas.height = ih;\n                ctx = canvas.getContext(\"2d\");\n                ctx.drawImage(img, 0, 0);\n                data = ctx.getImageData(0, 0, 1, ih).data;\n                sy = 0;\n                ey = ih;\n                py = ih;\n                while (py > sy) {\n                    alpha = data[(py - 1) * 4 + 3];\n                    if (alpha === 0) {\n                        ey = py;\n                    } else {\n                        sy = py;\n                    }\n                    py = (ey + sy) >> 1;\n                }\n                ratio = py / ih;\n                if (ratio === 0) {\n                    return 1;\n                } else {\n                    return ratio;\n                }\n            };\n\n            drawImageIOSFix = function(ctx, img, sx, sy, sw, sh, dx, dy, dw, dh) {\n                var vertSquashRatio;\n                vertSquashRatio = detectVerticalSquash(img);\n                return ctx.drawImage(img, sx, sy, sw, sh, dx, dy, dw, dh / vertSquashRatio);\n            };\n\n\n            /*\n             * contentloaded.js\n             *\n             * Author: Diego Perini (diego.perini at gmail.com)\n             * Summary: cross-browser wrapper for DOMContentLoaded\n             * Updated: 20101020\n             * License: MIT\n             * Version: 1.2\n             *\n             * URL:\n             * http://javascript.nwbox.com/ContentLoaded/\n             * http://javascript.nwbox.com/ContentLoaded/MIT-LICENSE\n             */\n\n            contentLoaded = function(win, fn) {\n                var add, doc, done, init, poll, pre, rem, root, top;\n                done = false;\n                top = true;\n                doc = win.document;\n                root = doc.documentElement;\n                add = (doc.addEventListener ? \"addEventListener\" : \"attachEvent\");\n                rem = (doc.addEventListener ? \"removeEventListener\" : \"detachEvent\");\n                pre = (doc.addEventListener ? \"\" : \"on\");\n                init = function(e) {\n                    if (e.type === \"readystatechange\" && doc.readyState !== \"complete\") {\n                        return;\n                    }\n                    (e.type === \"load\" ? win : doc)[rem](pre + e.type, init, false);\n                    if (!done && (done = true)) {\n                        return fn.call(win, e.type || e);\n                    }\n                };\n                poll = function() {\n                    var e;\n                    try {\n                        root.doScroll(\"left\");\n                    } catch (_error) {\n                        e = _error;\n                        setTimeout(poll, 50);\n                        return;\n                    }\n                    return init(\"poll\");\n                };\n                if (doc.readyState !== \"complete\") {\n                    if (doc.createEventObject && root.doScroll) {\n                        try {\n                            top = !win.frameElement;\n                        } catch (_error) {}\n                        if (top) {\n                            poll();\n                        }\n                    }\n                    doc[add](pre + \"DOMContentLoaded\", init, false);\n                    doc[add](pre + \"readystatechange\", init, false);\n                    return win[add](pre + \"load\", init, false);\n                }\n            };\n\n            Dropzone._autoDiscoverFunction = function() {\n                if (Dropzone.autoDiscover) {\n                    return Dropzone.discover();\n                }\n            };\n\n            contentLoaded(window, Dropzone._autoDiscoverFunction);\n\n        }).call(this);\n\n    });\n\n    if (typeof exports == \"object\") {\n        module.exports = require(\"dropzone\");\n    } else if (typeof define == \"function\" && define.amd) {\n        define([], function(){ return require(\"dropzone\"); });\n    } else {\n        this[\"Dropzone\"] = require(\"dropzone\");\n    }\n})()\n"
  },
  {
    "path": "public/admin/js/plugins/easypiechart/easypiechart.js",
    "content": "/**!\n * easyPieChart\n * Lightweight plugin to render simple, animated and retina optimized pie charts\n *\n * @license\n * @author Robert Fleischmann <rendro87@gmail.com> (http://robert-fleischmann.de)\n * @version 2.1.5\n **/\n\n(function(root, factory) {\n    if(typeof exports === 'object') {\n        module.exports = factory();\n    }\n    else if(typeof define === 'function' && define.amd) {\n        define([], factory);\n    }\n    else {\n        root['EasyPieChart'] = factory();\n    }\n}(this, function() {\n\n    /**\n     * Renderer to render the chart on a canvas object\n     * @param {DOMElement} el      DOM element to host the canvas (root of the plugin)\n     * @param {object}     options options object of the plugin\n     */\n    var CanvasRenderer = function(el, options) {\n        var cachedBackground;\n        var canvas = document.createElement('canvas');\n\n        el.appendChild(canvas);\n\n        if (typeof(G_vmlCanvasManager) !== 'undefined') {\n            G_vmlCanvasManager.initElement(canvas);\n        }\n\n        var ctx = canvas.getContext('2d');\n\n        canvas.width = canvas.height = options.size;\n\n        // canvas on retina devices\n        var scaleBy = 1;\n        if (window.devicePixelRatio > 1) {\n            scaleBy = window.devicePixelRatio;\n            canvas.style.width = canvas.style.height = [options.size, 'px'].join('');\n            canvas.width = canvas.height = options.size * scaleBy;\n            ctx.scale(scaleBy, scaleBy);\n        }\n\n        // move 0,0 coordinates to the center\n        ctx.translate(options.size / 2, options.size / 2);\n\n        // rotate canvas -90deg\n        ctx.rotate((-1 / 2 + options.rotate / 180) * Math.PI);\n\n        var radius = (options.size - options.lineWidth) / 2;\n        if (options.scaleColor && options.scaleLength) {\n            radius -= options.scaleLength + 2; // 2 is the distance between scale and bar\n        }\n\n        // IE polyfill for Date\n        Date.now = Date.now || function() {\n            return +(new Date());\n        };\n\n        /**\n         * Draw a circle around the center of the canvas\n         * @param {strong} color     Valid CSS color string\n         * @param {number} lineWidth Width of the line in px\n         * @param {number} percent   Percentage to draw (float between -1 and 1)\n         */\n        var drawCircle = function(color, lineWidth, percent) {\n            percent = Math.min(Math.max(-1, percent || 0), 1);\n            var isNegative = percent <= 0 ? true : false;\n\n            ctx.beginPath();\n            ctx.arc(0, 0, radius, 0, Math.PI * 2 * percent, isNegative);\n\n            ctx.strokeStyle = color;\n            ctx.lineWidth = lineWidth;\n\n            ctx.stroke();\n        };\n\n        /**\n         * Draw the scale of the chart\n         */\n        var drawScale = function() {\n            var offset;\n            var length;\n\n            ctx.lineWidth = 1;\n            ctx.fillStyle = options.scaleColor;\n\n            ctx.save();\n            for (var i = 24; i > 0; --i) {\n                if (i % 6 === 0) {\n                    length = options.scaleLength;\n                    offset = 0;\n                } else {\n                    length = options.scaleLength * 0.6;\n                    offset = options.scaleLength - length;\n                }\n                ctx.fillRect(-options.size/2 + offset, 0, length, 1);\n                ctx.rotate(Math.PI / 12);\n            }\n            ctx.restore();\n        };\n\n        /**\n         * Request animation frame wrapper with polyfill\n         * @return {function} Request animation frame method or timeout fallback\n         */\n        var reqAnimationFrame = (function() {\n            return  window.requestAnimationFrame ||\n                window.webkitRequestAnimationFrame ||\n                window.mozRequestAnimationFrame ||\n                function(callback) {\n                    window.setTimeout(callback, 1000 / 60);\n                };\n        }());\n\n        /**\n         * Draw the background of the plugin including the scale and the track\n         */\n        var drawBackground = function() {\n            if(options.scaleColor) drawScale();\n            if(options.trackColor) drawCircle(options.trackColor, options.lineWidth, 1);\n        };\n\n        /**\n         * Canvas accessor\n         */\n        this.getCanvas = function() {\n            return canvas;\n        };\n\n        /**\n         * Canvas 2D context 'ctx' accessor\n         */\n        this.getCtx = function() {\n            return ctx;\n        };\n\n        /**\n         * Clear the complete canvas\n         */\n        this.clear = function() {\n            ctx.clearRect(options.size / -2, options.size / -2, options.size, options.size);\n        };\n\n        /**\n         * Draw the complete chart\n         * @param {number} percent Percent shown by the chart between -100 and 100\n         */\n        this.draw = function(percent) {\n            // do we need to render a background\n            if (!!options.scaleColor || !!options.trackColor) {\n                // getImageData and putImageData are supported\n                if (ctx.getImageData && ctx.putImageData) {\n                    if (!cachedBackground) {\n                        drawBackground();\n                        cachedBackground = ctx.getImageData(0, 0, options.size * scaleBy, options.size * scaleBy);\n                    } else {\n                        ctx.putImageData(cachedBackground, 0, 0);\n                    }\n                } else {\n                    this.clear();\n                    drawBackground();\n                }\n            } else {\n                this.clear();\n            }\n\n            ctx.lineCap = options.lineCap;\n\n            // if barcolor is a function execute it and pass the percent as a value\n            var color;\n            if (typeof(options.barColor) === 'function') {\n                color = options.barColor(percent);\n            } else {\n                color = options.barColor;\n            }\n\n            // draw bar\n            drawCircle(color, options.lineWidth, percent / 100);\n        }.bind(this);\n\n        /**\n         * Animate from some percent to some other percentage\n         * @param {number} from Starting percentage\n         * @param {number} to   Final percentage\n         */\n        this.animate = function(from, to) {\n            var startTime = Date.now();\n            options.onStart(from, to);\n            var animation = function() {\n                var process = Math.min(Date.now() - startTime, options.animate.duration);\n                var currentValue = options.easing(this, process, from, to - from, options.animate.duration);\n                this.draw(currentValue);\n                options.onStep(from, to, currentValue);\n                if (process >= options.animate.duration) {\n                    options.onStop(from, to);\n                } else {\n                    reqAnimationFrame(animation);\n                }\n            }.bind(this);\n\n            reqAnimationFrame(animation);\n        }.bind(this);\n    };\n\n    var EasyPieChart = function(el, opts) {\n        var defaultOptions = {\n            barColor: '#ef1e25',\n            trackColor: '#f9f9f9',\n            scaleColor: '#dfe0e0',\n            scaleLength: 5,\n            lineCap: 'round',\n            lineWidth: 3,\n            size: 110,\n            rotate: 0,\n            animate: {\n                duration: 1000,\n                enabled: true\n            },\n            easing: function (x, t, b, c, d) { // more can be found here: http://gsgd.co.uk/sandbox/jquery/easing/\n                t = t / (d/2);\n                if (t < 1) {\n                    return c / 2 * t * t + b;\n                }\n                return -c/2 * ((--t)*(t-2) - 1) + b;\n            },\n            onStart: function(from, to) {\n                return;\n            },\n            onStep: function(from, to, currentValue) {\n                return;\n            },\n            onStop: function(from, to) {\n                return;\n            }\n        };\n\n        // detect present renderer\n        if (typeof(CanvasRenderer) !== 'undefined') {\n            defaultOptions.renderer = CanvasRenderer;\n        } else if (typeof(SVGRenderer) !== 'undefined') {\n            defaultOptions.renderer = SVGRenderer;\n        } else {\n            throw new Error('Please load either the SVG- or the CanvasRenderer');\n        }\n\n        var options = {};\n        var currentValue = 0;\n\n        /**\n         * Initialize the plugin by creating the options object and initialize rendering\n         */\n        var init = function() {\n            this.el = el;\n            this.options = options;\n\n            // merge user options into default options\n            for (var i in defaultOptions) {\n                if (defaultOptions.hasOwnProperty(i)) {\n                    options[i] = opts && typeof(opts[i]) !== 'undefined' ? opts[i] : defaultOptions[i];\n                    if (typeof(options[i]) === 'function') {\n                        options[i] = options[i].bind(this);\n                    }\n                }\n            }\n\n            // check for jQuery easing\n            if (typeof(options.easing) === 'string' && typeof(jQuery) !== 'undefined' && jQuery.isFunction(jQuery.easing[options.easing])) {\n                options.easing = jQuery.easing[options.easing];\n            } else {\n                options.easing = defaultOptions.easing;\n            }\n\n            // process earlier animate option to avoid bc breaks\n            if (typeof(options.animate) === 'number') {\n                options.animate = {\n                    duration: options.animate,\n                    enabled: true\n                };\n            }\n\n            if (typeof(options.animate) === 'boolean' && !options.animate) {\n                options.animate = {\n                    duration: 1000,\n                    enabled: options.animate\n                };\n            }\n\n            // create renderer\n            this.renderer = new options.renderer(el, options);\n\n            // initial draw\n            this.renderer.draw(currentValue);\n\n            // initial update\n            if (el.dataset && el.dataset.percent) {\n                this.update(parseFloat(el.dataset.percent));\n            } else if (el.getAttribute && el.getAttribute('data-percent')) {\n                this.update(parseFloat(el.getAttribute('data-percent')));\n            }\n        }.bind(this);\n\n        /**\n         * Update the value of the chart\n         * @param  {number} newValue Number between 0 and 100\n         * @return {object}          Instance of the plugin for method chaining\n         */\n        this.update = function(newValue) {\n            newValue = parseFloat(newValue);\n            if (options.animate.enabled) {\n                this.renderer.animate(currentValue, newValue);\n            } else {\n                this.renderer.draw(newValue);\n            }\n            currentValue = newValue;\n            return this;\n        }.bind(this);\n\n        /**\n         * Disable animation\n         * @return {object} Instance of the plugin for method chaining\n         */\n        this.disableAnimation = function() {\n            options.animate.enabled = false;\n            return this;\n        };\n\n        /**\n         * Enable animation\n         * @return {object} Instance of the plugin for method chaining\n         */\n        this.enableAnimation = function() {\n            options.animate.enabled = true;\n            return this;\n        };\n\n        init();\n    };\n\n\n    return EasyPieChart;\n\n}));\n"
  },
  {
    "path": "public/admin/js/plugins/easypiechart/jquery.easypiechart.js",
    "content": "/**!\n * easyPieChart\n * Lightweight plugin to render simple, animated and retina optimized pie charts\n *\n * @license\n * @author Robert Fleischmann <rendro87@gmail.com> (http://robert-fleischmann.de)\n * @version 2.1.5\n **/\n\n(function(root, factory) {\n    if(typeof exports === 'object') {\n        module.exports = factory(require('jquery'));\n    }\n    else if(typeof define === 'function' && define.amd) {\n        define(['jquery'], factory);\n    }\n    else {\n        factory(root.jQuery);\n    }\n}(this, function($) {\n\n    /**\n     * Renderer to render the chart on a canvas object\n     * @param {DOMElement} el      DOM element to host the canvas (root of the plugin)\n     * @param {object}     options options object of the plugin\n     */\n    var CanvasRenderer = function(el, options) {\n        var cachedBackground;\n        var canvas = document.createElement('canvas');\n\n        el.appendChild(canvas);\n\n        if (typeof(G_vmlCanvasManager) !== 'undefined') {\n            G_vmlCanvasManager.initElement(canvas);\n        }\n\n        var ctx = canvas.getContext('2d');\n\n        canvas.width = canvas.height = options.size;\n\n        // canvas on retina devices\n        var scaleBy = 1;\n        if (window.devicePixelRatio > 1) {\n            scaleBy = window.devicePixelRatio;\n            canvas.style.width = canvas.style.height = [options.size, 'px'].join('');\n            canvas.width = canvas.height = options.size * scaleBy;\n            ctx.scale(scaleBy, scaleBy);\n        }\n\n        // move 0,0 coordinates to the center\n        ctx.translate(options.size / 2, options.size / 2);\n\n        // rotate canvas -90deg\n        ctx.rotate((-1 / 2 + options.rotate / 180) * Math.PI);\n\n        var radius = (options.size - options.lineWidth) / 2;\n        if (options.scaleColor && options.scaleLength) {\n            radius -= options.scaleLength + 2; // 2 is the distance between scale and bar\n        }\n\n        // IE polyfill for Date\n        Date.now = Date.now || function() {\n            return +(new Date());\n        };\n\n        /**\n         * Draw a circle around the center of the canvas\n         * @param {strong} color     Valid CSS color string\n         * @param {number} lineWidth Width of the line in px\n         * @param {number} percent   Percentage to draw (float between -1 and 1)\n         */\n        var drawCircle = function(color, lineWidth, percent) {\n            percent = Math.min(Math.max(-1, percent || 0), 1);\n            var isNegative = percent <= 0 ? true : false;\n\n            ctx.beginPath();\n            ctx.arc(0, 0, radius, 0, Math.PI * 2 * percent, isNegative);\n\n            ctx.strokeStyle = color;\n            ctx.lineWidth = lineWidth;\n\n            ctx.stroke();\n        };\n\n        /**\n         * Draw the scale of the chart\n         */\n        var drawScale = function() {\n            var offset;\n            var length;\n\n            ctx.lineWidth = 1;\n            ctx.fillStyle = options.scaleColor;\n\n            ctx.save();\n            for (var i = 24; i > 0; --i) {\n                if (i % 6 === 0) {\n                    length = options.scaleLength;\n                    offset = 0;\n                } else {\n                    length = options.scaleLength * 0.6;\n                    offset = options.scaleLength - length;\n                }\n                ctx.fillRect(-options.size/2 + offset, 0, length, 1);\n                ctx.rotate(Math.PI / 12);\n            }\n            ctx.restore();\n        };\n\n        /**\n         * Request animation frame wrapper with polyfill\n         * @return {function} Request animation frame method or timeout fallback\n         */\n        var reqAnimationFrame = (function() {\n            return  window.requestAnimationFrame ||\n                window.webkitRequestAnimationFrame ||\n                window.mozRequestAnimationFrame ||\n                function(callback) {\n                    window.setTimeout(callback, 1000 / 60);\n                };\n        }());\n\n        /**\n         * Draw the background of the plugin including the scale and the track\n         */\n        var drawBackground = function() {\n            if(options.scaleColor) drawScale();\n            if(options.trackColor) drawCircle(options.trackColor, options.lineWidth, 1);\n        };\n\n        /**\n         * Canvas accessor\n         */\n        this.getCanvas = function() {\n            return canvas;\n        };\n\n        /**\n         * Canvas 2D context 'ctx' accessor\n         */\n        this.getCtx = function() {\n            return ctx;\n        };\n\n        /**\n         * Clear the complete canvas\n         */\n        this.clear = function() {\n            ctx.clearRect(options.size / -2, options.size / -2, options.size, options.size);\n        };\n\n        /**\n         * Draw the complete chart\n         * @param {number} percent Percent shown by the chart between -100 and 100\n         */\n        this.draw = function(percent) {\n            // do we need to render a background\n            if (!!options.scaleColor || !!options.trackColor) {\n                // getImageData and putImageData are supported\n                if (ctx.getImageData && ctx.putImageData) {\n                    if (!cachedBackground) {\n                        drawBackground();\n                        cachedBackground = ctx.getImageData(0, 0, options.size * scaleBy, options.size * scaleBy);\n                    } else {\n                        ctx.putImageData(cachedBackground, 0, 0);\n                    }\n                } else {\n                    this.clear();\n                    drawBackground();\n                }\n            } else {\n                this.clear();\n            }\n\n            ctx.lineCap = options.lineCap;\n\n            // if barcolor is a function execute it and pass the percent as a value\n            var color;\n            if (typeof(options.barColor) === 'function') {\n                color = options.barColor(percent);\n            } else {\n                color = options.barColor;\n            }\n\n            // draw bar\n            drawCircle(color, options.lineWidth, percent / 100);\n        }.bind(this);\n\n        /**\n         * Animate from some percent to some other percentage\n         * @param {number} from Starting percentage\n         * @param {number} to   Final percentage\n         */\n        this.animate = function(from, to) {\n            var startTime = Date.now();\n            options.onStart(from, to);\n            var animation = function() {\n                var process = Math.min(Date.now() - startTime, options.animate.duration);\n                var currentValue = options.easing(this, process, from, to - from, options.animate.duration);\n                this.draw(currentValue);\n                options.onStep(from, to, currentValue);\n                if (process >= options.animate.duration) {\n                    options.onStop(from, to);\n                } else {\n                    reqAnimationFrame(animation);\n                }\n            }.bind(this);\n\n            reqAnimationFrame(animation);\n        }.bind(this);\n    };\n\n    var EasyPieChart = function(el, opts) {\n        var defaultOptions = {\n            barColor: '#ef1e25',\n            trackColor: '#f9f9f9',\n            scaleColor: '#dfe0e0',\n            scaleLength: 5,\n            lineCap: 'round',\n            lineWidth: 3,\n            size: 110,\n            rotate: 0,\n            animate: {\n                duration: 1000,\n                enabled: true\n            },\n            easing: function (x, t, b, c, d) { // more can be found here: http://gsgd.co.uk/sandbox/jquery/easing/\n                t = t / (d/2);\n                if (t < 1) {\n                    return c / 2 * t * t + b;\n                }\n                return -c/2 * ((--t)*(t-2) - 1) + b;\n            },\n            onStart: function(from, to) {\n                return;\n            },\n            onStep: function(from, to, currentValue) {\n                return;\n            },\n            onStop: function(from, to) {\n                return;\n            }\n        };\n\n        // detect present renderer\n        if (typeof(CanvasRenderer) !== 'undefined') {\n            defaultOptions.renderer = CanvasRenderer;\n        } else if (typeof(SVGRenderer) !== 'undefined') {\n            defaultOptions.renderer = SVGRenderer;\n        } else {\n            throw new Error('Please load either the SVG- or the CanvasRenderer');\n        }\n\n        var options = {};\n        var currentValue = 0;\n\n        /**\n         * Initialize the plugin by creating the options object and initialize rendering\n         */\n        var init = function() {\n            this.el = el;\n            this.options = options;\n\n            // merge user options into default options\n            for (var i in defaultOptions) {\n                if (defaultOptions.hasOwnProperty(i)) {\n                    options[i] = opts && typeof(opts[i]) !== 'undefined' ? opts[i] : defaultOptions[i];\n                    if (typeof(options[i]) === 'function') {\n                        options[i] = options[i].bind(this);\n                    }\n                }\n            }\n\n            // check for jQuery easing\n            if (typeof(options.easing) === 'string' && typeof(jQuery) !== 'undefined' && jQuery.isFunction(jQuery.easing[options.easing])) {\n                options.easing = jQuery.easing[options.easing];\n            } else {\n                options.easing = defaultOptions.easing;\n            }\n\n            // process earlier animate option to avoid bc breaks\n            if (typeof(options.animate) === 'number') {\n                options.animate = {\n                    duration: options.animate,\n                    enabled: true\n                };\n            }\n\n            if (typeof(options.animate) === 'boolean' && !options.animate) {\n                options.animate = {\n                    duration: 1000,\n                    enabled: options.animate\n                };\n            }\n\n            // create renderer\n            this.renderer = new options.renderer(el, options);\n\n            // initial draw\n            this.renderer.draw(currentValue);\n\n            // initial update\n            if (el.dataset && el.dataset.percent) {\n                this.update(parseFloat(el.dataset.percent));\n            } else if (el.getAttribute && el.getAttribute('data-percent')) {\n                this.update(parseFloat(el.getAttribute('data-percent')));\n            }\n        }.bind(this);\n\n        /**\n         * Update the value of the chart\n         * @param  {number} newValue Number between 0 and 100\n         * @return {object}          Instance of the plugin for method chaining\n         */\n        this.update = function(newValue) {\n            newValue = parseFloat(newValue);\n            if (options.animate.enabled) {\n                this.renderer.animate(currentValue, newValue);\n            } else {\n                this.renderer.draw(newValue);\n            }\n            currentValue = newValue;\n            return this;\n        }.bind(this);\n\n        /**\n         * Disable animation\n         * @return {object} Instance of the plugin for method chaining\n         */\n        this.disableAnimation = function() {\n            options.animate.enabled = false;\n            return this;\n        };\n\n        /**\n         * Enable animation\n         * @return {object} Instance of the plugin for method chaining\n         */\n        this.enableAnimation = function() {\n            options.animate.enabled = true;\n            return this;\n        };\n\n        init();\n    };\n\n    $.fn.easyPieChart = function(options) {\n        return this.each(function() {\n            var instanceOptions;\n\n            if (!$.data(this, 'easyPieChart')) {\n                instanceOptions = $.extend({}, options, $(this).data());\n                $.data(this, 'easyPieChart', new EasyPieChart(this, instanceOptions));\n            }\n        });\n    };\n\n\n}));\n"
  },
  {
    "path": "public/admin/js/plugins/flot/curvedLines.js",
    "content": "/* The MIT License\n\n Copyright (c) 2011 by Michael Zinsmaier and nergal.dev\n Copyright (c) 2012 by Thomas Ritou\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n/*\n\n ____________________________________________________\n\n what it is:\n ____________________________________________________\n\n curvedLines is a plugin for flot, that tries to display lines in a smoother way.\n The plugin is based on nergal.dev's work https://code.google.com/p/flot/issues/detail?id=226\n and further extended with a mode that forces the min/max points of the curves to be on the\n points. Both modes are achieved through adding of more data points\n => 1) with large data sets you may get trouble\n => 2) if you want to display the points too, you have to plot them as 2nd data series over the lines\n\n && 3) consecutive x data points are not allowed to have the same value\n\n This is version 0.5 of curvedLines so it will probably not work in every case. However\n the basic form of use descirbed next works (:\n\n Feel free to further improve the code\n\n ____________________________________________________\n\n how to use it:\n ____________________________________________________\n\n var d1 = [[5,5],[7,3],[9,12]];\n\n var options = { series: { curvedLines: {  active: true }}};\n\n $.plot($(\"#placeholder\"), [{data = d1, lines: { show: true}, curvedLines: {apply: true}}], options);\n\n _____________________________________________________\n\n options:\n _____________________________________________________\n\n active:           bool true => plugin can be used\n apply:            bool true => series will be drawn as curved line\n fit:              bool true => forces the max,mins of the curve to be on the datapoints\n curvePointFactor  int  defines how many \"virtual\" points are used per \"real\" data point to\n emulate the curvedLines (points total = real points * curvePointFactor)\n fitPointDist:     int  defines the x axis distance of the additional two points that are used\n to enforce the min max condition.\n\n + line options (since v0.5 curved lines use flots line implementation for drawing\n => line options like fill, show ... are supported out of the box)\n\n */\n\n/*\n *  v0.1   initial commit\n *  v0.15  negative values should work now (outcommented a negative -> 0 hook hope it does no harm)\n *  v0.2   added fill option (thanks to monemihir) and multi axis support (thanks to soewono effendi)\n *  v0.3   improved saddle handling and added basic handling of Dates\n *  v0.4   rewritten fill option (thomas ritou) mostly from original flot code (now fill between points rather than to graph bottom), corrected fill Opacity bug\n *  v0.5   rewritten instead of implementing a own draw function CurvedLines is now based on the processDatapoints flot hook (credits go to thomas ritou).\n * \t\t   This change breakes existing code however CurvedLines are now just many tiny straight lines to flot and therefore all flot lines options (like gradient fill,\n * \t       shadow) are now supported out of the box\n *  v0.6   flot 0.8 compatibility and some bug fixes\n */\n\n(function($) {\n\n    var options = {\n        series : {\n            curvedLines : {\n                active : false,\n                apply: false,\n                fit : false,\n                curvePointFactor : 20,\n                fitPointDist : undefined\n            }\n        }\n    };\n\n    function init(plot) {\n\n        plot.hooks.processOptions.push(processOptions);\n\n        //if the plugin is active register processDatapoints method\n        function processOptions(plot, options) {\n            if (options.series.curvedLines.active) {\n                plot.hooks.processDatapoints.unshift(processDatapoints);\n            }\n        }\n\n        //only if the plugin is active\n        function processDatapoints(plot, series, datapoints) {\n            var nrPoints = datapoints.points.length / datapoints.pointsize;\n            var EPSILON = 0.5; //pretty large epsilon but save\n\n            if (series.curvedLines.apply == true && series.originSeries === undefined && nrPoints > (1 + EPSILON)) {\n                if (series.lines.fill) {\n\n                    var pointsTop = calculateCurvePoints(datapoints, series.curvedLines, 1)\n                        ,pointsBottom = calculateCurvePoints(datapoints, series.curvedLines, 2); //flot makes sure for us that we've got a second y point if fill is true !\n\n                    //Merge top and bottom curve\n                    datapoints.pointsize = 3;\n                    datapoints.points = [];\n                    var j = 0;\n                    var k = 0;\n                    var i = 0;\n                    var ps = 2;\n                    while (i < pointsTop.length || j < pointsBottom.length) {\n                        if (pointsTop[i] == pointsBottom[j]) {\n                            datapoints.points[k] = pointsTop[i];\n                            datapoints.points[k + 1] = pointsTop[i + 1];\n                            datapoints.points[k + 2] = pointsBottom[j + 1];\n                            j += ps;\n                            i += ps;\n\n                        } else if (pointsTop[i] < pointsBottom[j]) {\n                            datapoints.points[k] = pointsTop[i];\n                            datapoints.points[k + 1] = pointsTop[i + 1];\n                            datapoints.points[k + 2] = k > 0 ? datapoints.points[k-1] : null;\n                            i += ps;\n                        } else {\n                            datapoints.points[k] = pointsBottom[j];\n                            datapoints.points[k + 1] = k > 1 ? datapoints.points[k-2] : null;\n                            datapoints.points[k + 2] = pointsBottom[j + 1];\n                            j += ps;\n                        }\n                        k += 3;\n                    }\n                } else if (series.lines.lineWidth > 0) {\n                    datapoints.points = calculateCurvePoints(datapoints, series.curvedLines, 1);\n                    datapoints.pointsize = 2;\n                }\n            }\n        }\n\n        //no real idea whats going on here code mainly from https://code.google.com/p/flot/issues/detail?id=226\n        //if fit option is selected additional datapoints get inserted before the curve calculations in nergal.dev s code.\n        function calculateCurvePoints(datapoints, curvedLinesOptions, yPos) {\n\n            var points = datapoints.points, ps = datapoints.pointsize;\n            var num = curvedLinesOptions.curvePointFactor * (points.length / ps);\n\n            var xdata = new Array;\n            var ydata = new Array;\n\n            var curX = -1;\n            var curY = -1;\n            var j = 0;\n\n            if (curvedLinesOptions.fit) {\n                //insert a point before and after the \"real\" data point to force the line\n                //to have a max,min at the data point.\n\n                var fpDist;\n                if(typeof curvedLinesOptions.fitPointDist == 'undefined') {\n                    //estimate it\n                    var minX = points[0];\n                    var maxX = points[points.length-ps];\n                    fpDist = (maxX - minX) / (500 * 100); //x range / (estimated pixel length of placeholder * factor)\n                } else {\n                    //use user defined value\n                    fpDist = curvedLinesOptions.fitPointDist;\n                }\n\n                for (var i = 0; i < points.length; i += ps) {\n\n                    var frontX;\n                    var backX;\n                    curX = i;\n                    curY = i + yPos;\n\n                    //add point X s\n                    frontX = points[curX] - fpDist;\n                    backX = points[curX] + fpDist;\n\n                    var factor = 2;\n                    while (frontX == points[curX] || backX == points[curX]) {\n                        //inside the ulp\n                        frontX = points[curX] - (fpDist * factor);\n                        backX = points[curX] + (fpDist * factor);\n                        factor++;\n                    }\n\n                    //add curve points\n                    xdata[j] = frontX;\n                    ydata[j] = points[curY];\n                    j++;\n\n                    xdata[j] = points[curX];\n                    ydata[j] = points[curY];\n                    j++;\n\n                    xdata[j] = backX;\n                    ydata[j] = points[curY];\n                    j++;\n                }\n            } else {\n                //just use the datapoints\n                for (var i = 0; i < points.length; i += ps) {\n                    curX = i;\n                    curY = i + yPos;\n\n                    xdata[j] = points[curX];\n                    ydata[j] = points[curY];\n                    j++;\n                }\n            }\n\n            var n = xdata.length;\n\n            var y2 = new Array();\n            var delta = new Array();\n            y2[0] = 0;\n            y2[n - 1] = 0;\n            delta[0] = 0;\n\n            for (var i = 1; i < n - 1; ++i) {\n                var d = (xdata[i + 1] - xdata[i - 1]);\n                if (d == 0) {\n                    //point before current point and after current point need some space in between\n                    return [];\n                }\n\n                var s = (xdata[i] - xdata[i - 1]) / d;\n                var p = s * y2[i - 1] + 2;\n                y2[i] = (s - 1) / p;\n                delta[i] = (ydata[i + 1] - ydata[i]) / (xdata[i + 1] - xdata[i]) - (ydata[i] - ydata[i - 1]) / (xdata[i] - xdata[i - 1]);\n                delta[i] = (6 * delta[i] / (xdata[i + 1] - xdata[i - 1]) - s * delta[i - 1]) / p;\n            }\n\n            for (var j = n - 2; j >= 0; --j) {\n                y2[j] = y2[j] * y2[j + 1] + delta[j];\n            }\n\n            //   xmax  - xmin  / #points\n            var step = (xdata[n - 1] - xdata[0]) / (num - 1);\n\n            var xnew = new Array;\n            var ynew = new Array;\n            var result = new Array;\n\n            xnew[0] = xdata[0];\n            ynew[0] = ydata[0];\n\n            result.push(xnew[0]);\n            result.push(ynew[0]);\n\n            for ( j = 1; j < num; ++j) {\n                //new x point (sampling point for the created curve)\n                xnew[j] = xnew[0] + j * step;\n\n                var max = n - 1;\n                var min = 0;\n\n                while (max - min > 1) {\n                    var k = Math.round((max + min) / 2);\n                    if (xdata[k] > xnew[j]) {\n                        max = k;\n                    } else {\n                        min = k;\n                    }\n                }\n\n                //found point one to the left and one to the right of generated new point\n                var h = (xdata[max] - xdata[min]);\n\n                if (h == 0) {\n                    //similar to above two points from original x data need some space between them\n                    return [];\n                }\n\n                var a = (xdata[max] - xnew[j]) / h;\n                var b = (xnew[j] - xdata[min]) / h;\n\n                ynew[j] = a * ydata[min] + b * ydata[max] + ((a * a * a - a) * y2[min] + (b * b * b - b) * y2[max]) * (h * h) / 6;\n\n                result.push(xnew[j]);\n                result.push(ynew[j]);\n            }\n\n            return result;\n        }\n\n    }//end init\n\n    $.plot.plugins.push({\n        init : init,\n        options : options,\n        name : 'curvedLines',\n        version : '0.5'\n    });\n\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/flot/jquery.flot.js",
    "content": "/* Javascript plotting library for jQuery, version 0.8.3.\n\nCopyright (c) 2007-2014 IOLA and Ole Laursen.\nLicensed under the MIT license.\n\n*/\n\n// first an inline dependency, jquery.colorhelpers.js, we inline it here\n// for convenience\n\n/* Plugin for jQuery for working with colors.\n *\n * Version 1.1.\n *\n * Inspiration from jQuery color animation plugin by John Resig.\n *\n * Released under the MIT license by Ole Laursen, October 2009.\n *\n * Examples:\n *\n *   $.color.parse(\"#fff\").scale('rgb', 0.25).add('a', -0.5).toString()\n *   var c = $.color.extract($(\"#mydiv\"), 'background-color');\n *   console.log(c.r, c.g, c.b, c.a);\n *   $.color.make(100, 50, 25, 0.4).toString() // returns \"rgba(100,50,25,0.4)\"\n *\n * Note that .scale() and .add() return the same modified object\n * instead of making a new one.\n *\n * V. 1.1: Fix error handling so e.g. parsing an empty string does\n * produce a color rather than just crashing.\n */\n(function($){$.color={};$.color.make=function(r,g,b,a){var o={};o.r=r||0;o.g=g||0;o.b=b||0;o.a=a!=null?a:1;o.add=function(c,d){for(var i=0;i<c.length;++i)o[c.charAt(i)]+=d;return o.normalize()};o.scale=function(c,f){for(var i=0;i<c.length;++i)o[c.charAt(i)]*=f;return o.normalize()};o.toString=function(){if(o.a>=1){return\"rgb(\"+[o.r,o.g,o.b].join(\",\")+\")\"}else{return\"rgba(\"+[o.r,o.g,o.b,o.a].join(\",\")+\")\"}};o.normalize=function(){function clamp(min,value,max){return value<min?min:value>max?max:value}o.r=clamp(0,parseInt(o.r),255);o.g=clamp(0,parseInt(o.g),255);o.b=clamp(0,parseInt(o.b),255);o.a=clamp(0,o.a,1);return o};o.clone=function(){return $.color.make(o.r,o.b,o.g,o.a)};return o.normalize()};$.color.extract=function(elem,css){var c;do{c=elem.css(css).toLowerCase();if(c!=\"\"&&c!=\"transparent\")break;elem=elem.parent()}while(elem.length&&!$.nodeName(elem.get(0),\"body\"));if(c==\"rgba(0, 0, 0, 0)\")c=\"transparent\";return $.color.parse(c)};$.color.parse=function(str){var res,m=$.color.make;if(res=/rgb\\(\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*\\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10));if(res=/rgba\\(\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\s*\\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10),parseFloat(res[4]));if(res=/rgb\\(\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*\\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55);if(res=/rgba\\(\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\s*\\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55,parseFloat(res[4]));if(res=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))return m(parseInt(res[1],16),parseInt(res[2],16),parseInt(res[3],16));if(res=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))return m(parseInt(res[1]+res[1],16),parseInt(res[2]+res[2],16),parseInt(res[3]+res[3],16));var name=$.trim(str).toLowerCase();if(name==\"transparent\")return m(255,255,255,0);else{res=lookupColors[name]||[0,0,0];return m(res[0],res[1],res[2])}};var lookupColors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);\n\n// the actual Flot code\n(function($) {\n\n\t// Cache the prototype hasOwnProperty for faster access\n\n\tvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\n    // A shim to provide 'detach' to jQuery versions prior to 1.4.  Using a DOM\n    // operation produces the same effect as detach, i.e. removing the element\n    // without touching its jQuery data.\n\n    // Do not merge this into Flot 0.9, since it requires jQuery 1.4.4+.\n\n    if (!$.fn.detach) {\n        $.fn.detach = function() {\n            return this.each(function() {\n                if (this.parentNode) {\n                    this.parentNode.removeChild( this );\n                }\n            });\n        };\n    }\n\n\t///////////////////////////////////////////////////////////////////////////\n\t// The Canvas object is a wrapper around an HTML5 <canvas> tag.\n\t//\n\t// @constructor\n\t// @param {string} cls List of classes to apply to the canvas.\n\t// @param {element} container Element onto which to append the canvas.\n\t//\n\t// Requiring a container is a little iffy, but unfortunately canvas\n\t// operations don't work unless the canvas is attached to the DOM.\n\n\tfunction Canvas(cls, container) {\n\n\t\tvar element = container.children(\".\" + cls)[0];\n\n\t\tif (element == null) {\n\n\t\t\telement = document.createElement(\"canvas\");\n\t\t\telement.className = cls;\n\n\t\t\t$(element).css({ direction: \"ltr\", position: \"absolute\", left: 0, top: 0 })\n\t\t\t\t.appendTo(container);\n\n\t\t\t// If HTML5 Canvas isn't available, fall back to [Ex|Flash]canvas\n\n\t\t\tif (!element.getContext) {\n\t\t\t\tif (window.G_vmlCanvasManager) {\n\t\t\t\t\telement = window.G_vmlCanvasManager.initElement(element);\n\t\t\t\t} else {\n\t\t\t\t\tthrow new Error(\"Canvas is not available. If you're using IE with a fall-back such as Excanvas, then there's either a mistake in your conditional include, or the page has no DOCTYPE and is rendering in Quirks Mode.\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.element = element;\n\n\t\tvar context = this.context = element.getContext(\"2d\");\n\n\t\t// Determine the screen's ratio of physical to device-independent\n\t\t// pixels.  This is the ratio between the canvas width that the browser\n\t\t// advertises and the number of pixels actually present in that space.\n\n\t\t// The iPhone 4, for example, has a device-independent width of 320px,\n\t\t// but its screen is actually 640px wide.  It therefore has a pixel\n\t\t// ratio of 2, while most normal devices have a ratio of 1.\n\n\t\tvar devicePixelRatio = window.devicePixelRatio || 1,\n\t\t\tbackingStoreRatio =\n\t\t\t\tcontext.webkitBackingStorePixelRatio ||\n\t\t\t\tcontext.mozBackingStorePixelRatio ||\n\t\t\t\tcontext.msBackingStorePixelRatio ||\n\t\t\t\tcontext.oBackingStorePixelRatio ||\n\t\t\t\tcontext.backingStorePixelRatio || 1;\n\n\t\tthis.pixelRatio = devicePixelRatio / backingStoreRatio;\n\n\t\t// Size the canvas to match the internal dimensions of its container\n\n\t\tthis.resize(container.width(), container.height());\n\n\t\t// Collection of HTML div layers for text overlaid onto the canvas\n\n\t\tthis.textContainer = null;\n\t\tthis.text = {};\n\n\t\t// Cache of text fragments and metrics, so we can avoid expensively\n\t\t// re-calculating them when the plot is re-rendered in a loop.\n\n\t\tthis._textCache = {};\n\t}\n\n\t// Resizes the canvas to the given dimensions.\n\t//\n\t// @param {number} width New width of the canvas, in pixels.\n\t// @param {number} width New height of the canvas, in pixels.\n\n\tCanvas.prototype.resize = function(width, height) {\n\n\t\tif (width <= 0 || height <= 0) {\n\t\t\tthrow new Error(\"Invalid dimensions for plot, width = \" + width + \", height = \" + height);\n\t\t}\n\n\t\tvar element = this.element,\n\t\t\tcontext = this.context,\n\t\t\tpixelRatio = this.pixelRatio;\n\n\t\t// Resize the canvas, increasing its density based on the display's\n\t\t// pixel ratio; basically giving it more pixels without increasing the\n\t\t// size of its element, to take advantage of the fact that retina\n\t\t// displays have that many more pixels in the same advertised space.\n\n\t\t// Resizing should reset the state (excanvas seems to be buggy though)\n\n\t\tif (this.width != width) {\n\t\t\telement.width = width * pixelRatio;\n\t\t\telement.style.width = width + \"px\";\n\t\t\tthis.width = width;\n\t\t}\n\n\t\tif (this.height != height) {\n\t\t\telement.height = height * pixelRatio;\n\t\t\telement.style.height = height + \"px\";\n\t\t\tthis.height = height;\n\t\t}\n\n\t\t// Save the context, so we can reset in case we get replotted.  The\n\t\t// restore ensure that we're really back at the initial state, and\n\t\t// should be safe even if we haven't saved the initial state yet.\n\n\t\tcontext.restore();\n\t\tcontext.save();\n\n\t\t// Scale the coordinate space to match the display density; so even though we\n\t\t// may have twice as many pixels, we still want lines and other drawing to\n\t\t// appear at the same size; the extra pixels will just make them crisper.\n\n\t\tcontext.scale(pixelRatio, pixelRatio);\n\t};\n\n\t// Clears the entire canvas area, not including any overlaid HTML text\n\n\tCanvas.prototype.clear = function() {\n\t\tthis.context.clearRect(0, 0, this.width, this.height);\n\t};\n\n\t// Finishes rendering the canvas, including managing the text overlay.\n\n\tCanvas.prototype.render = function() {\n\n\t\tvar cache = this._textCache;\n\n\t\t// For each text layer, add elements marked as active that haven't\n\t\t// already been rendered, and remove those that are no longer active.\n\n\t\tfor (var layerKey in cache) {\n\t\t\tif (hasOwnProperty.call(cache, layerKey)) {\n\n\t\t\t\tvar layer = this.getTextLayer(layerKey),\n\t\t\t\t\tlayerCache = cache[layerKey];\n\n\t\t\t\tlayer.hide();\n\n\t\t\t\tfor (var styleKey in layerCache) {\n\t\t\t\t\tif (hasOwnProperty.call(layerCache, styleKey)) {\n\t\t\t\t\t\tvar styleCache = layerCache[styleKey];\n\t\t\t\t\t\tfor (var key in styleCache) {\n\t\t\t\t\t\t\tif (hasOwnProperty.call(styleCache, key)) {\n\n\t\t\t\t\t\t\t\tvar positions = styleCache[key].positions;\n\n\t\t\t\t\t\t\t\tfor (var i = 0, position; position = positions[i]; i++) {\n\t\t\t\t\t\t\t\t\tif (position.active) {\n\t\t\t\t\t\t\t\t\t\tif (!position.rendered) {\n\t\t\t\t\t\t\t\t\t\t\tlayer.append(position.element);\n\t\t\t\t\t\t\t\t\t\t\tposition.rendered = true;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tpositions.splice(i--, 1);\n\t\t\t\t\t\t\t\t\t\tif (position.rendered) {\n\t\t\t\t\t\t\t\t\t\t\tposition.element.detach();\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (positions.length == 0) {\n\t\t\t\t\t\t\t\t\tdelete styleCache[key];\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tlayer.show();\n\t\t\t}\n\t\t}\n\t};\n\n\t// Creates (if necessary) and returns the text overlay container.\n\t//\n\t// @param {string} classes String of space-separated CSS classes used to\n\t//     uniquely identify the text layer.\n\t// @return {object} The jQuery-wrapped text-layer div.\n\n\tCanvas.prototype.getTextLayer = function(classes) {\n\n\t\tvar layer = this.text[classes];\n\n\t\t// Create the text layer if it doesn't exist\n\n\t\tif (layer == null) {\n\n\t\t\t// Create the text layer container, if it doesn't exist\n\n\t\t\tif (this.textContainer == null) {\n\t\t\t\tthis.textContainer = $(\"<div class='flot-text'></div>\")\n\t\t\t\t\t.css({\n\t\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\t\ttop: 0,\n\t\t\t\t\t\tleft: 0,\n\t\t\t\t\t\tbottom: 0,\n\t\t\t\t\t\tright: 0,\n\t\t\t\t\t\t'font-size': \"smaller\",\n\t\t\t\t\t\tcolor: \"#545454\"\n\t\t\t\t\t})\n\t\t\t\t\t.insertAfter(this.element);\n\t\t\t}\n\n\t\t\tlayer = this.text[classes] = $(\"<div></div>\")\n\t\t\t\t.addClass(classes)\n\t\t\t\t.css({\n\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\ttop: 0,\n\t\t\t\t\tleft: 0,\n\t\t\t\t\tbottom: 0,\n\t\t\t\t\tright: 0\n\t\t\t\t})\n\t\t\t\t.appendTo(this.textContainer);\n\t\t}\n\n\t\treturn layer;\n\t};\n\n\t// Creates (if necessary) and returns a text info object.\n\t//\n\t// The object looks like this:\n\t//\n\t// {\n\t//     width: Width of the text's wrapper div.\n\t//     height: Height of the text's wrapper div.\n\t//     element: The jQuery-wrapped HTML div containing the text.\n\t//     positions: Array of positions at which this text is drawn.\n\t// }\n\t//\n\t// The positions array contains objects that look like this:\n\t//\n\t// {\n\t//     active: Flag indicating whether the text should be visible.\n\t//     rendered: Flag indicating whether the text is currently visible.\n\t//     element: The jQuery-wrapped HTML div containing the text.\n\t//     x: X coordinate at which to draw the text.\n\t//     y: Y coordinate at which to draw the text.\n\t// }\n\t//\n\t// Each position after the first receives a clone of the original element.\n\t//\n\t// The idea is that that the width, height, and general 'identity' of the\n\t// text is constant no matter where it is placed; the placements are a\n\t// secondary property.\n\t//\n\t// Canvas maintains a cache of recently-used text info objects; getTextInfo\n\t// either returns the cached element or creates a new entry.\n\t//\n\t// @param {string} layer A string of space-separated CSS classes uniquely\n\t//     identifying the layer containing this text.\n\t// @param {string} text Text string to retrieve info for.\n\t// @param {(string|object)=} font Either a string of space-separated CSS\n\t//     classes or a font-spec object, defining the text's font and style.\n\t// @param {number=} angle Angle at which to rotate the text, in degrees.\n\t//     Angle is currently unused, it will be implemented in the future.\n\t// @param {number=} width Maximum width of the text before it wraps.\n\t// @return {object} a text info object.\n\n\tCanvas.prototype.getTextInfo = function(layer, text, font, angle, width) {\n\n\t\tvar textStyle, layerCache, styleCache, info;\n\n\t\t// Cast the value to a string, in case we were given a number or such\n\n\t\ttext = \"\" + text;\n\n\t\t// If the font is a font-spec object, generate a CSS font definition\n\n\t\tif (typeof font === \"object\") {\n\t\t\ttextStyle = font.style + \" \" + font.variant + \" \" + font.weight + \" \" + font.size + \"px/\" + font.lineHeight + \"px \" + font.family;\n\t\t} else {\n\t\t\ttextStyle = font;\n\t\t}\n\n\t\t// Retrieve (or create) the cache for the text's layer and styles\n\n\t\tlayerCache = this._textCache[layer];\n\n\t\tif (layerCache == null) {\n\t\t\tlayerCache = this._textCache[layer] = {};\n\t\t}\n\n\t\tstyleCache = layerCache[textStyle];\n\n\t\tif (styleCache == null) {\n\t\t\tstyleCache = layerCache[textStyle] = {};\n\t\t}\n\n\t\tinfo = styleCache[text];\n\n\t\t// If we can't find a matching element in our cache, create a new one\n\n\t\tif (info == null) {\n\n\t\t\tvar element = $(\"<div></div>\").html(text)\n\t\t\t\t.css({\n\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\t'max-width': width,\n\t\t\t\t\ttop: -9999\n\t\t\t\t})\n\t\t\t\t.appendTo(this.getTextLayer(layer));\n\n\t\t\tif (typeof font === \"object\") {\n\t\t\t\telement.css({\n\t\t\t\t\tfont: textStyle,\n\t\t\t\t\tcolor: font.color\n\t\t\t\t});\n\t\t\t} else if (typeof font === \"string\") {\n\t\t\t\telement.addClass(font);\n\t\t\t}\n\n\t\t\tinfo = styleCache[text] = {\n\t\t\t\twidth: element.outerWidth(true),\n\t\t\t\theight: element.outerHeight(true),\n\t\t\t\telement: element,\n\t\t\t\tpositions: []\n\t\t\t};\n\n\t\t\telement.detach();\n\t\t}\n\n\t\treturn info;\n\t};\n\n\t// Adds a text string to the canvas text overlay.\n\t//\n\t// The text isn't drawn immediately; it is marked as rendering, which will\n\t// result in its addition to the canvas on the next render pass.\n\t//\n\t// @param {string} layer A string of space-separated CSS classes uniquely\n\t//     identifying the layer containing this text.\n\t// @param {number} x X coordinate at which to draw the text.\n\t// @param {number} y Y coordinate at which to draw the text.\n\t// @param {string} text Text string to draw.\n\t// @param {(string|object)=} font Either a string of space-separated CSS\n\t//     classes or a font-spec object, defining the text's font and style.\n\t// @param {number=} angle Angle at which to rotate the text, in degrees.\n\t//     Angle is currently unused, it will be implemented in the future.\n\t// @param {number=} width Maximum width of the text before it wraps.\n\t// @param {string=} halign Horizontal alignment of the text; either \"left\",\n\t//     \"center\" or \"right\".\n\t// @param {string=} valign Vertical alignment of the text; either \"top\",\n\t//     \"middle\" or \"bottom\".\n\n\tCanvas.prototype.addText = function(layer, x, y, text, font, angle, width, halign, valign) {\n\n\t\tvar info = this.getTextInfo(layer, text, font, angle, width),\n\t\t\tpositions = info.positions;\n\n\t\t// Tweak the div's position to match the text's alignment\n\n\t\tif (halign == \"center\") {\n\t\t\tx -= info.width / 2;\n\t\t} else if (halign == \"right\") {\n\t\t\tx -= info.width;\n\t\t}\n\n\t\tif (valign == \"middle\") {\n\t\t\ty -= info.height / 2;\n\t\t} else if (valign == \"bottom\") {\n\t\t\ty -= info.height;\n\t\t}\n\n\t\t// Determine whether this text already exists at this position.\n\t\t// If so, mark it for inclusion in the next render pass.\n\n\t\tfor (var i = 0, position; position = positions[i]; i++) {\n\t\t\tif (position.x == x && position.y == y) {\n\t\t\t\tposition.active = true;\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\n\t\t// If the text doesn't exist at this position, create a new entry\n\n\t\t// For the very first position we'll re-use the original element,\n\t\t// while for subsequent ones we'll clone it.\n\n\t\tposition = {\n\t\t\tactive: true,\n\t\t\trendered: false,\n\t\t\telement: positions.length ? info.element.clone() : info.element,\n\t\t\tx: x,\n\t\t\ty: y\n\t\t};\n\n\t\tpositions.push(position);\n\n\t\t// Move the element to its final position within the container\n\n\t\tposition.element.css({\n\t\t\ttop: Math.round(y),\n\t\t\tleft: Math.round(x),\n\t\t\t'text-align': halign\t// In case the text wraps\n\t\t});\n\t};\n\n\t// Removes one or more text strings from the canvas text overlay.\n\t//\n\t// If no parameters are given, all text within the layer is removed.\n\t//\n\t// Note that the text is not immediately removed; it is simply marked as\n\t// inactive, which will result in its removal on the next render pass.\n\t// This avoids the performance penalty for 'clear and redraw' behavior,\n\t// where we potentially get rid of all text on a layer, but will likely\n\t// add back most or all of it later, as when redrawing axes, for example.\n\t//\n\t// @param {string} layer A string of space-separated CSS classes uniquely\n\t//     identifying the layer containing this text.\n\t// @param {number=} x X coordinate of the text.\n\t// @param {number=} y Y coordinate of the text.\n\t// @param {string=} text Text string to remove.\n\t// @param {(string|object)=} font Either a string of space-separated CSS\n\t//     classes or a font-spec object, defining the text's font and style.\n\t// @param {number=} angle Angle at which the text is rotated, in degrees.\n\t//     Angle is currently unused, it will be implemented in the future.\n\n\tCanvas.prototype.removeText = function(layer, x, y, text, font, angle) {\n\t\tif (text == null) {\n\t\t\tvar layerCache = this._textCache[layer];\n\t\t\tif (layerCache != null) {\n\t\t\t\tfor (var styleKey in layerCache) {\n\t\t\t\t\tif (hasOwnProperty.call(layerCache, styleKey)) {\n\t\t\t\t\t\tvar styleCache = layerCache[styleKey];\n\t\t\t\t\t\tfor (var key in styleCache) {\n\t\t\t\t\t\t\tif (hasOwnProperty.call(styleCache, key)) {\n\t\t\t\t\t\t\t\tvar positions = styleCache[key].positions;\n\t\t\t\t\t\t\t\tfor (var i = 0, position; position = positions[i]; i++) {\n\t\t\t\t\t\t\t\t\tposition.active = false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tvar positions = this.getTextInfo(layer, text, font, angle).positions;\n\t\t\tfor (var i = 0, position; position = positions[i]; i++) {\n\t\t\t\tif (position.x == x && position.y == y) {\n\t\t\t\t\tposition.active = false;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\t///////////////////////////////////////////////////////////////////////////\n\t// The top-level container for the entire plot.\n\n    function Plot(placeholder, data_, options_, plugins) {\n        // data is on the form:\n        //   [ series1, series2 ... ]\n        // where series is either just the data as [ [x1, y1], [x2, y2], ... ]\n        // or { data: [ [x1, y1], [x2, y2], ... ], label: \"some label\", ... }\n\n        var series = [],\n            options = {\n                // the color theme used for graphs\n                colors: [\"#edc240\", \"#afd8f8\", \"#cb4b4b\", \"#4da74d\", \"#9440ed\"],\n                legend: {\n                    show: true,\n                    noColumns: 1, // number of colums in legend table\n                    labelFormatter: null, // fn: string -> string\n                    labelBoxBorderColor: \"#ccc\", // border color for the little label boxes\n                    container: null, // container (as jQuery object) to put legend in, null means default on top of graph\n                    position: \"ne\", // position of default legend container within plot\n                    margin: 5, // distance from grid edge to default legend container within plot\n                    backgroundColor: null, // null means auto-detect\n                    backgroundOpacity: 0.85, // set to 0 to avoid background\n                    sorted: null    // default to no legend sorting\n                },\n                xaxis: {\n                    show: null, // null = auto-detect, true = always, false = never\n                    position: \"bottom\", // or \"top\"\n                    mode: null, // null or \"time\"\n                    font: null, // null (derived from CSS in placeholder) or object like { size: 11, lineHeight: 13, style: \"italic\", weight: \"bold\", family: \"sans-serif\", variant: \"small-caps\" }\n                    color: null, // base color, labels, ticks\n                    tickColor: null, // possibly different color of ticks, e.g. \"rgba(0,0,0,0.15)\"\n                    transform: null, // null or f: number -> number to transform axis\n                    inverseTransform: null, // if transform is set, this should be the inverse function\n                    min: null, // min. value to show, null means set automatically\n                    max: null, // max. value to show, null means set automatically\n                    autoscaleMargin: null, // margin in % to add if auto-setting min/max\n                    ticks: null, // either [1, 3] or [[1, \"a\"], 3] or (fn: axis info -> ticks) or app. number of ticks for auto-ticks\n                    tickFormatter: null, // fn: number -> string\n                    labelWidth: null, // size of tick labels in pixels\n                    labelHeight: null,\n                    reserveSpace: null, // whether to reserve space even if axis isn't shown\n                    tickLength: null, // size in pixels of ticks, or \"full\" for whole line\n                    alignTicksWithAxis: null, // axis number or null for no sync\n                    tickDecimals: null, // no. of decimals, null means auto\n                    tickSize: null, // number or [number, \"unit\"]\n                    minTickSize: null // number or [number, \"unit\"]\n                },\n                yaxis: {\n                    autoscaleMargin: 0.02,\n                    position: \"left\" // or \"right\"\n                },\n                xaxes: [],\n                yaxes: [],\n                series: {\n                    points: {\n                        show: false,\n                        radius: 3,\n                        lineWidth: 2, // in pixels\n                        fill: true,\n                        fillColor: \"#ffffff\",\n                        symbol: \"circle\" // or callback\n                    },\n                    lines: {\n                        // we don't put in show: false so we can see\n                        // whether lines were actively disabled\n                        lineWidth: 2, // in pixels\n                        fill: false,\n                        fillColor: null,\n                        steps: false\n                        // Omit 'zero', so we can later default its value to\n                        // match that of the 'fill' option.\n                    },\n                    bars: {\n                        show: false,\n                        lineWidth: 2, // in pixels\n                        barWidth: 1, // in units of the x axis\n                        fill: true,\n                        fillColor: null,\n                        align: \"left\", // \"left\", \"right\", or \"center\"\n                        horizontal: false,\n                        zero: true\n                    },\n                    shadowSize: 3,\n                    highlightColor: null\n                },\n                grid: {\n                    show: true,\n                    aboveData: false,\n                    color: \"#545454\", // primary color used for outline and labels\n                    backgroundColor: null, // null for transparent, else color\n                    borderColor: null, // set if different from the grid color\n                    tickColor: null, // color for the ticks, e.g. \"rgba(0,0,0,0.15)\"\n                    margin: 0, // distance from the canvas edge to the grid\n                    labelMargin: 5, // in pixels\n                    axisMargin: 8, // in pixels\n                    borderWidth: 2, // in pixels\n                    minBorderMargin: null, // in pixels, null means taken from points radius\n                    markings: null, // array of ranges or fn: axes -> array of ranges\n                    markingsColor: \"#f4f4f4\",\n                    markingsLineWidth: 2,\n                    // interactive stuff\n                    clickable: false,\n                    hoverable: false,\n                    autoHighlight: true, // highlight in case mouse is near\n                    mouseActiveRadius: 10 // how far the mouse can be away to activate an item\n                },\n                interaction: {\n                    redrawOverlayInterval: 1000/60 // time between updates, -1 means in same flow\n                },\n                hooks: {}\n            },\n        surface = null,     // the canvas for the plot itself\n        overlay = null,     // canvas for interactive stuff on top of plot\n        eventHolder = null, // jQuery object that events should be bound to\n        ctx = null, octx = null,\n        xaxes = [], yaxes = [],\n        plotOffset = { left: 0, right: 0, top: 0, bottom: 0},\n        plotWidth = 0, plotHeight = 0,\n        hooks = {\n            processOptions: [],\n            processRawData: [],\n            processDatapoints: [],\n            processOffset: [],\n            drawBackground: [],\n            drawSeries: [],\n            draw: [],\n            bindEvents: [],\n            drawOverlay: [],\n            shutdown: []\n        },\n        plot = this;\n\n        // public functions\n        plot.setData = setData;\n        plot.setupGrid = setupGrid;\n        plot.draw = draw;\n        plot.getPlaceholder = function() { return placeholder; };\n        plot.getCanvas = function() { return surface.element; };\n        plot.getPlotOffset = function() { return plotOffset; };\n        plot.width = function () { return plotWidth; };\n        plot.height = function () { return plotHeight; };\n        plot.offset = function () {\n            var o = eventHolder.offset();\n            o.left += plotOffset.left;\n            o.top += plotOffset.top;\n            return o;\n        };\n        plot.getData = function () { return series; };\n        plot.getAxes = function () {\n            var res = {}, i;\n            $.each(xaxes.concat(yaxes), function (_, axis) {\n                if (axis)\n                    res[axis.direction + (axis.n != 1 ? axis.n : \"\") + \"axis\"] = axis;\n            });\n            return res;\n        };\n        plot.getXAxes = function () { return xaxes; };\n        plot.getYAxes = function () { return yaxes; };\n        plot.c2p = canvasToAxisCoords;\n        plot.p2c = axisToCanvasCoords;\n        plot.getOptions = function () { return options; };\n        plot.highlight = highlight;\n        plot.unhighlight = unhighlight;\n        plot.triggerRedrawOverlay = triggerRedrawOverlay;\n        plot.pointOffset = function(point) {\n            return {\n                left: parseInt(xaxes[axisNumber(point, \"x\") - 1].p2c(+point.x) + plotOffset.left, 10),\n                top: parseInt(yaxes[axisNumber(point, \"y\") - 1].p2c(+point.y) + plotOffset.top, 10)\n            };\n        };\n        plot.shutdown = shutdown;\n        plot.destroy = function () {\n            shutdown();\n            placeholder.removeData(\"plot\").empty();\n\n            series = [];\n            options = null;\n            surface = null;\n            overlay = null;\n            eventHolder = null;\n            ctx = null;\n            octx = null;\n            xaxes = [];\n            yaxes = [];\n            hooks = null;\n            highlights = [];\n            plot = null;\n        };\n        plot.resize = function () {\n        \tvar width = placeholder.width(),\n        \t\theight = placeholder.height();\n            surface.resize(width, height);\n            overlay.resize(width, height);\n        };\n\n        // public attributes\n        plot.hooks = hooks;\n\n        // initialize\n        initPlugins(plot);\n        parseOptions(options_);\n        setupCanvases();\n        setData(data_);\n        setupGrid();\n        draw();\n        bindEvents();\n\n\n        function executeHooks(hook, args) {\n            args = [plot].concat(args);\n            for (var i = 0; i < hook.length; ++i)\n                hook[i].apply(this, args);\n        }\n\n        function initPlugins() {\n\n            // References to key classes, allowing plugins to modify them\n\n            var classes = {\n                Canvas: Canvas\n            };\n\n            for (var i = 0; i < plugins.length; ++i) {\n                var p = plugins[i];\n                p.init(plot, classes);\n                if (p.options)\n                    $.extend(true, options, p.options);\n            }\n        }\n\n        function parseOptions(opts) {\n\n            $.extend(true, options, opts);\n\n            // $.extend merges arrays, rather than replacing them.  When less\n            // colors are provided than the size of the default palette, we\n            // end up with those colors plus the remaining defaults, which is\n            // not expected behavior; avoid it by replacing them here.\n\n            if (opts && opts.colors) {\n            \toptions.colors = opts.colors;\n            }\n\n            if (options.xaxis.color == null)\n                options.xaxis.color = $.color.parse(options.grid.color).scale('a', 0.22).toString();\n            if (options.yaxis.color == null)\n                options.yaxis.color = $.color.parse(options.grid.color).scale('a', 0.22).toString();\n\n            if (options.xaxis.tickColor == null) // grid.tickColor for back-compatibility\n                options.xaxis.tickColor = options.grid.tickColor || options.xaxis.color;\n            if (options.yaxis.tickColor == null) // grid.tickColor for back-compatibility\n                options.yaxis.tickColor = options.grid.tickColor || options.yaxis.color;\n\n            if (options.grid.borderColor == null)\n                options.grid.borderColor = options.grid.color;\n            if (options.grid.tickColor == null)\n                options.grid.tickColor = $.color.parse(options.grid.color).scale('a', 0.22).toString();\n\n            // Fill in defaults for axis options, including any unspecified\n            // font-spec fields, if a font-spec was provided.\n\n            // If no x/y axis options were provided, create one of each anyway,\n            // since the rest of the code assumes that they exist.\n\n            var i, axisOptions, axisCount,\n                fontSize = placeholder.css(\"font-size\"),\n                fontSizeDefault = fontSize ? +fontSize.replace(\"px\", \"\") : 13,\n                fontDefaults = {\n                    style: placeholder.css(\"font-style\"),\n                    size: Math.round(0.8 * fontSizeDefault),\n                    variant: placeholder.css(\"font-variant\"),\n                    weight: placeholder.css(\"font-weight\"),\n                    family: placeholder.css(\"font-family\")\n                };\n\n            axisCount = options.xaxes.length || 1;\n            for (i = 0; i < axisCount; ++i) {\n\n                axisOptions = options.xaxes[i];\n                if (axisOptions && !axisOptions.tickColor) {\n                    axisOptions.tickColor = axisOptions.color;\n                }\n\n                axisOptions = $.extend(true, {}, options.xaxis, axisOptions);\n                options.xaxes[i] = axisOptions;\n\n                if (axisOptions.font) {\n                    axisOptions.font = $.extend({}, fontDefaults, axisOptions.font);\n                    if (!axisOptions.font.color) {\n                        axisOptions.font.color = axisOptions.color;\n                    }\n                    if (!axisOptions.font.lineHeight) {\n                        axisOptions.font.lineHeight = Math.round(axisOptions.font.size * 1.15);\n                    }\n                }\n            }\n\n            axisCount = options.yaxes.length || 1;\n            for (i = 0; i < axisCount; ++i) {\n\n                axisOptions = options.yaxes[i];\n                if (axisOptions && !axisOptions.tickColor) {\n                    axisOptions.tickColor = axisOptions.color;\n                }\n\n                axisOptions = $.extend(true, {}, options.yaxis, axisOptions);\n                options.yaxes[i] = axisOptions;\n\n                if (axisOptions.font) {\n                    axisOptions.font = $.extend({}, fontDefaults, axisOptions.font);\n                    if (!axisOptions.font.color) {\n                        axisOptions.font.color = axisOptions.color;\n                    }\n                    if (!axisOptions.font.lineHeight) {\n                        axisOptions.font.lineHeight = Math.round(axisOptions.font.size * 1.15);\n                    }\n                }\n            }\n\n            // backwards compatibility, to be removed in future\n            if (options.xaxis.noTicks && options.xaxis.ticks == null)\n                options.xaxis.ticks = options.xaxis.noTicks;\n            if (options.yaxis.noTicks && options.yaxis.ticks == null)\n                options.yaxis.ticks = options.yaxis.noTicks;\n            if (options.x2axis) {\n                options.xaxes[1] = $.extend(true, {}, options.xaxis, options.x2axis);\n                options.xaxes[1].position = \"top\";\n                // Override the inherit to allow the axis to auto-scale\n                if (options.x2axis.min == null) {\n                    options.xaxes[1].min = null;\n                }\n                if (options.x2axis.max == null) {\n                    options.xaxes[1].max = null;\n                }\n            }\n            if (options.y2axis) {\n                options.yaxes[1] = $.extend(true, {}, options.yaxis, options.y2axis);\n                options.yaxes[1].position = \"right\";\n                // Override the inherit to allow the axis to auto-scale\n                if (options.y2axis.min == null) {\n                    options.yaxes[1].min = null;\n                }\n                if (options.y2axis.max == null) {\n                    options.yaxes[1].max = null;\n                }\n            }\n            if (options.grid.coloredAreas)\n                options.grid.markings = options.grid.coloredAreas;\n            if (options.grid.coloredAreasColor)\n                options.grid.markingsColor = options.grid.coloredAreasColor;\n            if (options.lines)\n                $.extend(true, options.series.lines, options.lines);\n            if (options.points)\n                $.extend(true, options.series.points, options.points);\n            if (options.bars)\n                $.extend(true, options.series.bars, options.bars);\n            if (options.shadowSize != null)\n                options.series.shadowSize = options.shadowSize;\n            if (options.highlightColor != null)\n                options.series.highlightColor = options.highlightColor;\n\n            // save options on axes for future reference\n            for (i = 0; i < options.xaxes.length; ++i)\n                getOrCreateAxis(xaxes, i + 1).options = options.xaxes[i];\n            for (i = 0; i < options.yaxes.length; ++i)\n                getOrCreateAxis(yaxes, i + 1).options = options.yaxes[i];\n\n            // add hooks from options\n            for (var n in hooks)\n                if (options.hooks[n] && options.hooks[n].length)\n                    hooks[n] = hooks[n].concat(options.hooks[n]);\n\n            executeHooks(hooks.processOptions, [options]);\n        }\n\n        function setData(d) {\n            series = parseData(d);\n            fillInSeriesOptions();\n            processData();\n        }\n\n        function parseData(d) {\n            var res = [];\n            for (var i = 0; i < d.length; ++i) {\n                var s = $.extend(true, {}, options.series);\n\n                if (d[i].data != null) {\n                    s.data = d[i].data; // move the data instead of deep-copy\n                    delete d[i].data;\n\n                    $.extend(true, s, d[i]);\n\n                    d[i].data = s.data;\n                }\n                else\n                    s.data = d[i];\n                res.push(s);\n            }\n\n            return res;\n        }\n\n        function axisNumber(obj, coord) {\n            var a = obj[coord + \"axis\"];\n            if (typeof a == \"object\") // if we got a real axis, extract number\n                a = a.n;\n            if (typeof a != \"number\")\n                a = 1; // default to first axis\n            return a;\n        }\n\n        function allAxes() {\n            // return flat array without annoying null entries\n            return $.grep(xaxes.concat(yaxes), function (a) { return a; });\n        }\n\n        function canvasToAxisCoords(pos) {\n            // return an object with x/y corresponding to all used axes\n            var res = {}, i, axis;\n            for (i = 0; i < xaxes.length; ++i) {\n                axis = xaxes[i];\n                if (axis && axis.used)\n                    res[\"x\" + axis.n] = axis.c2p(pos.left);\n            }\n\n            for (i = 0; i < yaxes.length; ++i) {\n                axis = yaxes[i];\n                if (axis && axis.used)\n                    res[\"y\" + axis.n] = axis.c2p(pos.top);\n            }\n\n            if (res.x1 !== undefined)\n                res.x = res.x1;\n            if (res.y1 !== undefined)\n                res.y = res.y1;\n\n            return res;\n        }\n\n        function axisToCanvasCoords(pos) {\n            // get canvas coords from the first pair of x/y found in pos\n            var res = {}, i, axis, key;\n\n            for (i = 0; i < xaxes.length; ++i) {\n                axis = xaxes[i];\n                if (axis && axis.used) {\n                    key = \"x\" + axis.n;\n                    if (pos[key] == null && axis.n == 1)\n                        key = \"x\";\n\n                    if (pos[key] != null) {\n                        res.left = axis.p2c(pos[key]);\n                        break;\n                    }\n                }\n            }\n\n            for (i = 0; i < yaxes.length; ++i) {\n                axis = yaxes[i];\n                if (axis && axis.used) {\n                    key = \"y\" + axis.n;\n                    if (pos[key] == null && axis.n == 1)\n                        key = \"y\";\n\n                    if (pos[key] != null) {\n                        res.top = axis.p2c(pos[key]);\n                        break;\n                    }\n                }\n            }\n\n            return res;\n        }\n\n        function getOrCreateAxis(axes, number) {\n            if (!axes[number - 1])\n                axes[number - 1] = {\n                    n: number, // save the number for future reference\n                    direction: axes == xaxes ? \"x\" : \"y\",\n                    options: $.extend(true, {}, axes == xaxes ? options.xaxis : options.yaxis)\n                };\n\n            return axes[number - 1];\n        }\n\n        function fillInSeriesOptions() {\n\n            var neededColors = series.length, maxIndex = -1, i;\n\n            // Subtract the number of series that already have fixed colors or\n            // color indexes from the number that we still need to generate.\n\n            for (i = 0; i < series.length; ++i) {\n                var sc = series[i].color;\n                if (sc != null) {\n                    neededColors--;\n                    if (typeof sc == \"number\" && sc > maxIndex) {\n                        maxIndex = sc;\n                    }\n                }\n            }\n\n            // If any of the series have fixed color indexes, then we need to\n            // generate at least as many colors as the highest index.\n\n            if (neededColors <= maxIndex) {\n                neededColors = maxIndex + 1;\n            }\n\n            // Generate all the colors, using first the option colors and then\n            // variations on those colors once they're exhausted.\n\n            var c, colors = [], colorPool = options.colors,\n                colorPoolSize = colorPool.length, variation = 0;\n\n            for (i = 0; i < neededColors; i++) {\n\n                c = $.color.parse(colorPool[i % colorPoolSize] || \"#666\");\n\n                // Each time we exhaust the colors in the pool we adjust\n                // a scaling factor used to produce more variations on\n                // those colors. The factor alternates negative/positive\n                // to produce lighter/darker colors.\n\n                // Reset the variation after every few cycles, or else\n                // it will end up producing only white or black colors.\n\n                if (i % colorPoolSize == 0 && i) {\n                    if (variation >= 0) {\n                        if (variation < 0.5) {\n                            variation = -variation - 0.2;\n                        } else variation = 0;\n                    } else variation = -variation;\n                }\n\n                colors[i] = c.scale('rgb', 1 + variation);\n            }\n\n            // Finalize the series options, filling in their colors\n\n            var colori = 0, s;\n            for (i = 0; i < series.length; ++i) {\n                s = series[i];\n\n                // assign colors\n                if (s.color == null) {\n                    s.color = colors[colori].toString();\n                    ++colori;\n                }\n                else if (typeof s.color == \"number\")\n                    s.color = colors[s.color].toString();\n\n                // turn on lines automatically in case nothing is set\n                if (s.lines.show == null) {\n                    var v, show = true;\n                    for (v in s)\n                        if (s[v] && s[v].show) {\n                            show = false;\n                            break;\n                        }\n                    if (show)\n                        s.lines.show = true;\n                }\n\n                // If nothing was provided for lines.zero, default it to match\n                // lines.fill, since areas by default should extend to zero.\n\n                if (s.lines.zero == null) {\n                    s.lines.zero = !!s.lines.fill;\n                }\n\n                // setup axes\n                s.xaxis = getOrCreateAxis(xaxes, axisNumber(s, \"x\"));\n                s.yaxis = getOrCreateAxis(yaxes, axisNumber(s, \"y\"));\n            }\n        }\n\n        function processData() {\n            var topSentry = Number.POSITIVE_INFINITY,\n                bottomSentry = Number.NEGATIVE_INFINITY,\n                fakeInfinity = Number.MAX_VALUE,\n                i, j, k, m, length,\n                s, points, ps, x, y, axis, val, f, p,\n                data, format;\n\n            function updateAxis(axis, min, max) {\n                if (min < axis.datamin && min != -fakeInfinity)\n                    axis.datamin = min;\n                if (max > axis.datamax && max != fakeInfinity)\n                    axis.datamax = max;\n            }\n\n            $.each(allAxes(), function (_, axis) {\n                // init axis\n                axis.datamin = topSentry;\n                axis.datamax = bottomSentry;\n                axis.used = false;\n            });\n\n            for (i = 0; i < series.length; ++i) {\n                s = series[i];\n                s.datapoints = { points: [] };\n\n                executeHooks(hooks.processRawData, [ s, s.data, s.datapoints ]);\n            }\n\n            // first pass: clean and copy data\n            for (i = 0; i < series.length; ++i) {\n                s = series[i];\n\n                data = s.data;\n                format = s.datapoints.format;\n\n                if (!format) {\n                    format = [];\n                    // find out how to copy\n                    format.push({ x: true, number: true, required: true });\n                    format.push({ y: true, number: true, required: true });\n\n                    if (s.bars.show || (s.lines.show && s.lines.fill)) {\n                        var autoscale = !!((s.bars.show && s.bars.zero) || (s.lines.show && s.lines.zero));\n                        format.push({ y: true, number: true, required: false, defaultValue: 0, autoscale: autoscale });\n                        if (s.bars.horizontal) {\n                            delete format[format.length - 1].y;\n                            format[format.length - 1].x = true;\n                        }\n                    }\n\n                    s.datapoints.format = format;\n                }\n\n                if (s.datapoints.pointsize != null)\n                    continue; // already filled in\n\n                s.datapoints.pointsize = format.length;\n\n                ps = s.datapoints.pointsize;\n                points = s.datapoints.points;\n\n                var insertSteps = s.lines.show && s.lines.steps;\n                s.xaxis.used = s.yaxis.used = true;\n\n                for (j = k = 0; j < data.length; ++j, k += ps) {\n                    p = data[j];\n\n                    var nullify = p == null;\n                    if (!nullify) {\n                        for (m = 0; m < ps; ++m) {\n                            val = p[m];\n                            f = format[m];\n\n                            if (f) {\n                                if (f.number && val != null) {\n                                    val = +val; // convert to number\n                                    if (isNaN(val))\n                                        val = null;\n                                    else if (val == Infinity)\n                                        val = fakeInfinity;\n                                    else if (val == -Infinity)\n                                        val = -fakeInfinity;\n                                }\n\n                                if (val == null) {\n                                    if (f.required)\n                                        nullify = true;\n\n                                    if (f.defaultValue != null)\n                                        val = f.defaultValue;\n                                }\n                            }\n\n                            points[k + m] = val;\n                        }\n                    }\n\n                    if (nullify) {\n                        for (m = 0; m < ps; ++m) {\n                            val = points[k + m];\n                            if (val != null) {\n                                f = format[m];\n                                // extract min/max info\n                                if (f.autoscale !== false) {\n                                    if (f.x) {\n                                        updateAxis(s.xaxis, val, val);\n                                    }\n                                    if (f.y) {\n                                        updateAxis(s.yaxis, val, val);\n                                    }\n                                }\n                            }\n                            points[k + m] = null;\n                        }\n                    }\n                    else {\n                        // a little bit of line specific stuff that\n                        // perhaps shouldn't be here, but lacking\n                        // better means...\n                        if (insertSteps && k > 0\n                            && points[k - ps] != null\n                            && points[k - ps] != points[k]\n                            && points[k - ps + 1] != points[k + 1]) {\n                            // copy the point to make room for a middle point\n                            for (m = 0; m < ps; ++m)\n                                points[k + ps + m] = points[k + m];\n\n                            // middle point has same y\n                            points[k + 1] = points[k - ps + 1];\n\n                            // we've added a point, better reflect that\n                            k += ps;\n                        }\n                    }\n                }\n            }\n\n            // give the hooks a chance to run\n            for (i = 0; i < series.length; ++i) {\n                s = series[i];\n\n                executeHooks(hooks.processDatapoints, [ s, s.datapoints]);\n            }\n\n            // second pass: find datamax/datamin for auto-scaling\n            for (i = 0; i < series.length; ++i) {\n                s = series[i];\n                points = s.datapoints.points;\n                ps = s.datapoints.pointsize;\n                format = s.datapoints.format;\n\n                var xmin = topSentry, ymin = topSentry,\n                    xmax = bottomSentry, ymax = bottomSentry;\n\n                for (j = 0; j < points.length; j += ps) {\n                    if (points[j] == null)\n                        continue;\n\n                    for (m = 0; m < ps; ++m) {\n                        val = points[j + m];\n                        f = format[m];\n                        if (!f || f.autoscale === false || val == fakeInfinity || val == -fakeInfinity)\n                            continue;\n\n                        if (f.x) {\n                            if (val < xmin)\n                                xmin = val;\n                            if (val > xmax)\n                                xmax = val;\n                        }\n                        if (f.y) {\n                            if (val < ymin)\n                                ymin = val;\n                            if (val > ymax)\n                                ymax = val;\n                        }\n                    }\n                }\n\n                if (s.bars.show) {\n                    // make sure we got room for the bar on the dancing floor\n                    var delta;\n\n                    switch (s.bars.align) {\n                        case \"left\":\n                            delta = 0;\n                            break;\n                        case \"right\":\n                            delta = -s.bars.barWidth;\n                            break;\n                        default:\n                            delta = -s.bars.barWidth / 2;\n                    }\n\n                    if (s.bars.horizontal) {\n                        ymin += delta;\n                        ymax += delta + s.bars.barWidth;\n                    }\n                    else {\n                        xmin += delta;\n                        xmax += delta + s.bars.barWidth;\n                    }\n                }\n\n                updateAxis(s.xaxis, xmin, xmax);\n                updateAxis(s.yaxis, ymin, ymax);\n            }\n\n            $.each(allAxes(), function (_, axis) {\n                if (axis.datamin == topSentry)\n                    axis.datamin = null;\n                if (axis.datamax == bottomSentry)\n                    axis.datamax = null;\n            });\n        }\n\n        function setupCanvases() {\n\n            // Make sure the placeholder is clear of everything except canvases\n            // from a previous plot in this container that we'll try to re-use.\n\n            placeholder.css(\"padding\", 0) // padding messes up the positioning\n                .children().filter(function(){\n                    return !$(this).hasClass(\"flot-overlay\") && !$(this).hasClass('flot-base');\n                }).remove();\n\n            if (placeholder.css(\"position\") == 'static')\n                placeholder.css(\"position\", \"relative\"); // for positioning labels and overlay\n\n            surface = new Canvas(\"flot-base\", placeholder);\n            overlay = new Canvas(\"flot-overlay\", placeholder); // overlay canvas for interactive features\n\n            ctx = surface.context;\n            octx = overlay.context;\n\n            // define which element we're listening for events on\n            eventHolder = $(overlay.element).unbind();\n\n            // If we're re-using a plot object, shut down the old one\n\n            var existing = placeholder.data(\"plot\");\n\n            if (existing) {\n                existing.shutdown();\n                overlay.clear();\n            }\n\n            // save in case we get replotted\n            placeholder.data(\"plot\", plot);\n        }\n\n        function bindEvents() {\n            // bind events\n            if (options.grid.hoverable) {\n                eventHolder.mousemove(onMouseMove);\n\n                // Use bind, rather than .mouseleave, because we officially\n                // still support jQuery 1.2.6, which doesn't define a shortcut\n                // for mouseenter or mouseleave.  This was a bug/oversight that\n                // was fixed somewhere around 1.3.x.  We can return to using\n                // .mouseleave when we drop support for 1.2.6.\n\n                eventHolder.bind(\"mouseleave\", onMouseLeave);\n            }\n\n            if (options.grid.clickable)\n                eventHolder.click(onClick);\n\n            executeHooks(hooks.bindEvents, [eventHolder]);\n        }\n\n        function shutdown() {\n            if (redrawTimeout)\n                clearTimeout(redrawTimeout);\n\n            eventHolder.unbind(\"mousemove\", onMouseMove);\n            eventHolder.unbind(\"mouseleave\", onMouseLeave);\n            eventHolder.unbind(\"click\", onClick);\n\n            executeHooks(hooks.shutdown, [eventHolder]);\n        }\n\n        function setTransformationHelpers(axis) {\n            // set helper functions on the axis, assumes plot area\n            // has been computed already\n\n            function identity(x) { return x; }\n\n            var s, m, t = axis.options.transform || identity,\n                it = axis.options.inverseTransform;\n\n            // precompute how much the axis is scaling a point\n            // in canvas space\n            if (axis.direction == \"x\") {\n                s = axis.scale = plotWidth / Math.abs(t(axis.max) - t(axis.min));\n                m = Math.min(t(axis.max), t(axis.min));\n            }\n            else {\n                s = axis.scale = plotHeight / Math.abs(t(axis.max) - t(axis.min));\n                s = -s;\n                m = Math.max(t(axis.max), t(axis.min));\n            }\n\n            // data point to canvas coordinate\n            if (t == identity) // slight optimization\n                axis.p2c = function (p) { return (p - m) * s; };\n            else\n                axis.p2c = function (p) { return (t(p) - m) * s; };\n            // canvas coordinate to data point\n            if (!it)\n                axis.c2p = function (c) { return m + c / s; };\n            else\n                axis.c2p = function (c) { return it(m + c / s); };\n        }\n\n        function measureTickLabels(axis) {\n\n            var opts = axis.options,\n                ticks = axis.ticks || [],\n                labelWidth = opts.labelWidth || 0,\n                labelHeight = opts.labelHeight || 0,\n                maxWidth = labelWidth || (axis.direction == \"x\" ? Math.floor(surface.width / (ticks.length || 1)) : null),\n                legacyStyles = axis.direction + \"Axis \" + axis.direction + axis.n + \"Axis\",\n                layer = \"flot-\" + axis.direction + \"-axis flot-\" + axis.direction + axis.n + \"-axis \" + legacyStyles,\n                font = opts.font || \"flot-tick-label tickLabel\";\n\n            for (var i = 0; i < ticks.length; ++i) {\n\n                var t = ticks[i];\n\n                if (!t.label)\n                    continue;\n\n                var info = surface.getTextInfo(layer, t.label, font, null, maxWidth);\n\n                labelWidth = Math.max(labelWidth, info.width);\n                labelHeight = Math.max(labelHeight, info.height);\n            }\n\n            axis.labelWidth = opts.labelWidth || labelWidth;\n            axis.labelHeight = opts.labelHeight || labelHeight;\n        }\n\n        function allocateAxisBoxFirstPhase(axis) {\n            // find the bounding box of the axis by looking at label\n            // widths/heights and ticks, make room by diminishing the\n            // plotOffset; this first phase only looks at one\n            // dimension per axis, the other dimension depends on the\n            // other axes so will have to wait\n\n            var lw = axis.labelWidth,\n                lh = axis.labelHeight,\n                pos = axis.options.position,\n                isXAxis = axis.direction === \"x\",\n                tickLength = axis.options.tickLength,\n                axisMargin = options.grid.axisMargin,\n                padding = options.grid.labelMargin,\n                innermost = true,\n                outermost = true,\n                first = true,\n                found = false;\n\n            // Determine the axis's position in its direction and on its side\n\n            $.each(isXAxis ? xaxes : yaxes, function(i, a) {\n                if (a && (a.show || a.reserveSpace)) {\n                    if (a === axis) {\n                        found = true;\n                    } else if (a.options.position === pos) {\n                        if (found) {\n                            outermost = false;\n                        } else {\n                            innermost = false;\n                        }\n                    }\n                    if (!found) {\n                        first = false;\n                    }\n                }\n            });\n\n            // The outermost axis on each side has no margin\n\n            if (outermost) {\n                axisMargin = 0;\n            }\n\n            // The ticks for the first axis in each direction stretch across\n\n            if (tickLength == null) {\n                tickLength = first ? \"full\" : 5;\n            }\n\n            if (!isNaN(+tickLength))\n                padding += +tickLength;\n\n            if (isXAxis) {\n                lh += padding;\n\n                if (pos == \"bottom\") {\n                    plotOffset.bottom += lh + axisMargin;\n                    axis.box = { top: surface.height - plotOffset.bottom, height: lh };\n                }\n                else {\n                    axis.box = { top: plotOffset.top + axisMargin, height: lh };\n                    plotOffset.top += lh + axisMargin;\n                }\n            }\n            else {\n                lw += padding;\n\n                if (pos == \"left\") {\n                    axis.box = { left: plotOffset.left + axisMargin, width: lw };\n                    plotOffset.left += lw + axisMargin;\n                }\n                else {\n                    plotOffset.right += lw + axisMargin;\n                    axis.box = { left: surface.width - plotOffset.right, width: lw };\n                }\n            }\n\n             // save for future reference\n            axis.position = pos;\n            axis.tickLength = tickLength;\n            axis.box.padding = padding;\n            axis.innermost = innermost;\n        }\n\n        function allocateAxisBoxSecondPhase(axis) {\n            // now that all axis boxes have been placed in one\n            // dimension, we can set the remaining dimension coordinates\n            if (axis.direction == \"x\") {\n                axis.box.left = plotOffset.left - axis.labelWidth / 2;\n                axis.box.width = surface.width - plotOffset.left - plotOffset.right + axis.labelWidth;\n            }\n            else {\n                axis.box.top = plotOffset.top - axis.labelHeight / 2;\n                axis.box.height = surface.height - plotOffset.bottom - plotOffset.top + axis.labelHeight;\n            }\n        }\n\n        function adjustLayoutForThingsStickingOut() {\n            // possibly adjust plot offset to ensure everything stays\n            // inside the canvas and isn't clipped off\n\n            var minMargin = options.grid.minBorderMargin,\n                axis, i;\n\n            // check stuff from the plot (FIXME: this should just read\n            // a value from the series, otherwise it's impossible to\n            // customize)\n            if (minMargin == null) {\n                minMargin = 0;\n                for (i = 0; i < series.length; ++i)\n                    minMargin = Math.max(minMargin, 2 * (series[i].points.radius + series[i].points.lineWidth/2));\n            }\n\n            var margins = {\n                left: minMargin,\n                right: minMargin,\n                top: minMargin,\n                bottom: minMargin\n            };\n\n            // check axis labels, note we don't check the actual\n            // labels but instead use the overall width/height to not\n            // jump as much around with replots\n            $.each(allAxes(), function (_, axis) {\n                if (axis.reserveSpace && axis.ticks && axis.ticks.length) {\n                    if (axis.direction === \"x\") {\n                        margins.left = Math.max(margins.left, axis.labelWidth / 2);\n                        margins.right = Math.max(margins.right, axis.labelWidth / 2);\n                    } else {\n                        margins.bottom = Math.max(margins.bottom, axis.labelHeight / 2);\n                        margins.top = Math.max(margins.top, axis.labelHeight / 2);\n                    }\n                }\n            });\n\n            plotOffset.left = Math.ceil(Math.max(margins.left, plotOffset.left));\n            plotOffset.right = Math.ceil(Math.max(margins.right, plotOffset.right));\n            plotOffset.top = Math.ceil(Math.max(margins.top, plotOffset.top));\n            plotOffset.bottom = Math.ceil(Math.max(margins.bottom, plotOffset.bottom));\n        }\n\n        function setupGrid() {\n            var i, axes = allAxes(), showGrid = options.grid.show;\n\n            // Initialize the plot's offset from the edge of the canvas\n\n            for (var a in plotOffset) {\n                var margin = options.grid.margin || 0;\n                plotOffset[a] = typeof margin == \"number\" ? margin : margin[a] || 0;\n            }\n\n            executeHooks(hooks.processOffset, [plotOffset]);\n\n            // If the grid is visible, add its border width to the offset\n\n            for (var a in plotOffset) {\n                if(typeof(options.grid.borderWidth) == \"object\") {\n                    plotOffset[a] += showGrid ? options.grid.borderWidth[a] : 0;\n                }\n                else {\n                    plotOffset[a] += showGrid ? options.grid.borderWidth : 0;\n                }\n            }\n\n            $.each(axes, function (_, axis) {\n                var axisOpts = axis.options;\n                axis.show = axisOpts.show == null ? axis.used : axisOpts.show;\n                axis.reserveSpace = axisOpts.reserveSpace == null ? axis.show : axisOpts.reserveSpace;\n                setRange(axis);\n            });\n\n            if (showGrid) {\n\n                var allocatedAxes = $.grep(axes, function (axis) {\n                    return axis.show || axis.reserveSpace;\n                });\n\n                $.each(allocatedAxes, function (_, axis) {\n                    // make the ticks\n                    setupTickGeneration(axis);\n                    setTicks(axis);\n                    snapRangeToTicks(axis, axis.ticks);\n                    // find labelWidth/Height for axis\n                    measureTickLabels(axis);\n                });\n\n                // with all dimensions calculated, we can compute the\n                // axis bounding boxes, start from the outside\n                // (reverse order)\n                for (i = allocatedAxes.length - 1; i >= 0; --i)\n                    allocateAxisBoxFirstPhase(allocatedAxes[i]);\n\n                // make sure we've got enough space for things that\n                // might stick out\n                adjustLayoutForThingsStickingOut();\n\n                $.each(allocatedAxes, function (_, axis) {\n                    allocateAxisBoxSecondPhase(axis);\n                });\n            }\n\n            plotWidth = surface.width - plotOffset.left - plotOffset.right;\n            plotHeight = surface.height - plotOffset.bottom - plotOffset.top;\n\n            // now we got the proper plot dimensions, we can compute the scaling\n            $.each(axes, function (_, axis) {\n                setTransformationHelpers(axis);\n            });\n\n            if (showGrid) {\n                drawAxisLabels();\n            }\n\n            insertLegend();\n        }\n\n        function setRange(axis) {\n            var opts = axis.options,\n                min = +(opts.min != null ? opts.min : axis.datamin),\n                max = +(opts.max != null ? opts.max : axis.datamax),\n                delta = max - min;\n\n            if (delta == 0.0) {\n                // degenerate case\n                var widen = max == 0 ? 1 : 0.01;\n\n                if (opts.min == null)\n                    min -= widen;\n                // always widen max if we couldn't widen min to ensure we\n                // don't fall into min == max which doesn't work\n                if (opts.max == null || opts.min != null)\n                    max += widen;\n            }\n            else {\n                // consider autoscaling\n                var margin = opts.autoscaleMargin;\n                if (margin != null) {\n                    if (opts.min == null) {\n                        min -= delta * margin;\n                        // make sure we don't go below zero if all values\n                        // are positive\n                        if (min < 0 && axis.datamin != null && axis.datamin >= 0)\n                            min = 0;\n                    }\n                    if (opts.max == null) {\n                        max += delta * margin;\n                        if (max > 0 && axis.datamax != null && axis.datamax <= 0)\n                            max = 0;\n                    }\n                }\n            }\n            axis.min = min;\n            axis.max = max;\n        }\n\n        function setupTickGeneration(axis) {\n            var opts = axis.options;\n\n            // estimate number of ticks\n            var noTicks;\n            if (typeof opts.ticks == \"number\" && opts.ticks > 0)\n                noTicks = opts.ticks;\n            else\n                // heuristic based on the model a*sqrt(x) fitted to\n                // some data points that seemed reasonable\n                noTicks = 0.3 * Math.sqrt(axis.direction == \"x\" ? surface.width : surface.height);\n\n            var delta = (axis.max - axis.min) / noTicks,\n                dec = -Math.floor(Math.log(delta) / Math.LN10),\n                maxDec = opts.tickDecimals;\n\n            if (maxDec != null && dec > maxDec) {\n                dec = maxDec;\n            }\n\n            var magn = Math.pow(10, -dec),\n                norm = delta / magn, // norm is between 1.0 and 10.0\n                size;\n\n            if (norm < 1.5) {\n                size = 1;\n            } else if (norm < 3) {\n                size = 2;\n                // special case for 2.5, requires an extra decimal\n                if (norm > 2.25 && (maxDec == null || dec + 1 <= maxDec)) {\n                    size = 2.5;\n                    ++dec;\n                }\n            } else if (norm < 7.5) {\n                size = 5;\n            } else {\n                size = 10;\n            }\n\n            size *= magn;\n\n            if (opts.minTickSize != null && size < opts.minTickSize) {\n                size = opts.minTickSize;\n            }\n\n            axis.delta = delta;\n            axis.tickDecimals = Math.max(0, maxDec != null ? maxDec : dec);\n            axis.tickSize = opts.tickSize || size;\n\n            // Time mode was moved to a plug-in in 0.8, and since so many people use it\n            // we'll add an especially friendly reminder to make sure they included it.\n\n            if (opts.mode == \"time\" && !axis.tickGenerator) {\n                throw new Error(\"Time mode requires the flot.time plugin.\");\n            }\n\n            // Flot supports base-10 axes; any other mode else is handled by a plug-in,\n            // like flot.time.js.\n\n            if (!axis.tickGenerator) {\n\n                axis.tickGenerator = function (axis) {\n\n                    var ticks = [],\n                        start = floorInBase(axis.min, axis.tickSize),\n                        i = 0,\n                        v = Number.NaN,\n                        prev;\n\n                    do {\n                        prev = v;\n                        v = start + i * axis.tickSize;\n                        ticks.push(v);\n                        ++i;\n                    } while (v < axis.max && v != prev);\n                    return ticks;\n                };\n\n\t\t\t\taxis.tickFormatter = function (value, axis) {\n\n\t\t\t\t\tvar factor = axis.tickDecimals ? Math.pow(10, axis.tickDecimals) : 1;\n\t\t\t\t\tvar formatted = \"\" + Math.round(value * factor) / factor;\n\n\t\t\t\t\t// If tickDecimals was specified, ensure that we have exactly that\n\t\t\t\t\t// much precision; otherwise default to the value's own precision.\n\n\t\t\t\t\tif (axis.tickDecimals != null) {\n\t\t\t\t\t\tvar decimal = formatted.indexOf(\".\");\n\t\t\t\t\t\tvar precision = decimal == -1 ? 0 : formatted.length - decimal - 1;\n\t\t\t\t\t\tif (precision < axis.tickDecimals) {\n\t\t\t\t\t\t\treturn (precision ? formatted : formatted + \".\") + (\"\" + factor).substr(1, axis.tickDecimals - precision);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n                    return formatted;\n                };\n            }\n\n            if ($.isFunction(opts.tickFormatter))\n                axis.tickFormatter = function (v, axis) { return \"\" + opts.tickFormatter(v, axis); };\n\n            if (opts.alignTicksWithAxis != null) {\n                var otherAxis = (axis.direction == \"x\" ? xaxes : yaxes)[opts.alignTicksWithAxis - 1];\n                if (otherAxis && otherAxis.used && otherAxis != axis) {\n                    // consider snapping min/max to outermost nice ticks\n                    var niceTicks = axis.tickGenerator(axis);\n                    if (niceTicks.length > 0) {\n                        if (opts.min == null)\n                            axis.min = Math.min(axis.min, niceTicks[0]);\n                        if (opts.max == null && niceTicks.length > 1)\n                            axis.max = Math.max(axis.max, niceTicks[niceTicks.length - 1]);\n                    }\n\n                    axis.tickGenerator = function (axis) {\n                        // copy ticks, scaled to this axis\n                        var ticks = [], v, i;\n                        for (i = 0; i < otherAxis.ticks.length; ++i) {\n                            v = (otherAxis.ticks[i].v - otherAxis.min) / (otherAxis.max - otherAxis.min);\n                            v = axis.min + v * (axis.max - axis.min);\n                            ticks.push(v);\n                        }\n                        return ticks;\n                    };\n\n                    // we might need an extra decimal since forced\n                    // ticks don't necessarily fit naturally\n                    if (!axis.mode && opts.tickDecimals == null) {\n                        var extraDec = Math.max(0, -Math.floor(Math.log(axis.delta) / Math.LN10) + 1),\n                            ts = axis.tickGenerator(axis);\n\n                        // only proceed if the tick interval rounded\n                        // with an extra decimal doesn't give us a\n                        // zero at end\n                        if (!(ts.length > 1 && /\\..*0$/.test((ts[1] - ts[0]).toFixed(extraDec))))\n                            axis.tickDecimals = extraDec;\n                    }\n                }\n            }\n        }\n\n        function setTicks(axis) {\n            var oticks = axis.options.ticks, ticks = [];\n            if (oticks == null || (typeof oticks == \"number\" && oticks > 0))\n                ticks = axis.tickGenerator(axis);\n            else if (oticks) {\n                if ($.isFunction(oticks))\n                    // generate the ticks\n                    ticks = oticks(axis);\n                else\n                    ticks = oticks;\n            }\n\n            // clean up/labelify the supplied ticks, copy them over\n            var i, v;\n            axis.ticks = [];\n            for (i = 0; i < ticks.length; ++i) {\n                var label = null;\n                var t = ticks[i];\n                if (typeof t == \"object\") {\n                    v = +t[0];\n                    if (t.length > 1)\n                        label = t[1];\n                }\n                else\n                    v = +t;\n                if (label == null)\n                    label = axis.tickFormatter(v, axis);\n                if (!isNaN(v))\n                    axis.ticks.push({ v: v, label: label });\n            }\n        }\n\n        function snapRangeToTicks(axis, ticks) {\n            if (axis.options.autoscaleMargin && ticks.length > 0) {\n                // snap to ticks\n                if (axis.options.min == null)\n                    axis.min = Math.min(axis.min, ticks[0].v);\n                if (axis.options.max == null && ticks.length > 1)\n                    axis.max = Math.max(axis.max, ticks[ticks.length - 1].v);\n            }\n        }\n\n        function draw() {\n\n            surface.clear();\n\n            executeHooks(hooks.drawBackground, [ctx]);\n\n            var grid = options.grid;\n\n            // draw background, if any\n            if (grid.show && grid.backgroundColor)\n                drawBackground();\n\n            if (grid.show && !grid.aboveData) {\n                drawGrid();\n            }\n\n            for (var i = 0; i < series.length; ++i) {\n                executeHooks(hooks.drawSeries, [ctx, series[i]]);\n                drawSeries(series[i]);\n            }\n\n            executeHooks(hooks.draw, [ctx]);\n\n            if (grid.show && grid.aboveData) {\n                drawGrid();\n            }\n\n            surface.render();\n\n            // A draw implies that either the axes or data have changed, so we\n            // should probably update the overlay highlights as well.\n\n            triggerRedrawOverlay();\n        }\n\n        function extractRange(ranges, coord) {\n            var axis, from, to, key, axes = allAxes();\n\n            for (var i = 0; i < axes.length; ++i) {\n                axis = axes[i];\n                if (axis.direction == coord) {\n                    key = coord + axis.n + \"axis\";\n                    if (!ranges[key] && axis.n == 1)\n                        key = coord + \"axis\"; // support x1axis as xaxis\n                    if (ranges[key]) {\n                        from = ranges[key].from;\n                        to = ranges[key].to;\n                        break;\n                    }\n                }\n            }\n\n            // backwards-compat stuff - to be removed in future\n            if (!ranges[key]) {\n                axis = coord == \"x\" ? xaxes[0] : yaxes[0];\n                from = ranges[coord + \"1\"];\n                to = ranges[coord + \"2\"];\n            }\n\n            // auto-reverse as an added bonus\n            if (from != null && to != null && from > to) {\n                var tmp = from;\n                from = to;\n                to = tmp;\n            }\n\n            return { from: from, to: to, axis: axis };\n        }\n\n        function drawBackground() {\n            ctx.save();\n            ctx.translate(plotOffset.left, plotOffset.top);\n\n            ctx.fillStyle = getColorOrGradient(options.grid.backgroundColor, plotHeight, 0, \"rgba(255, 255, 255, 0)\");\n            ctx.fillRect(0, 0, plotWidth, plotHeight);\n            ctx.restore();\n        }\n\n        function drawGrid() {\n            var i, axes, bw, bc;\n\n            ctx.save();\n            ctx.translate(plotOffset.left, plotOffset.top);\n\n            // draw markings\n            var markings = options.grid.markings;\n            if (markings) {\n                if ($.isFunction(markings)) {\n                    axes = plot.getAxes();\n                    // xmin etc. is backwards compatibility, to be\n                    // removed in the future\n                    axes.xmin = axes.xaxis.min;\n                    axes.xmax = axes.xaxis.max;\n                    axes.ymin = axes.yaxis.min;\n                    axes.ymax = axes.yaxis.max;\n\n                    markings = markings(axes);\n                }\n\n                for (i = 0; i < markings.length; ++i) {\n                    var m = markings[i],\n                        xrange = extractRange(m, \"x\"),\n                        yrange = extractRange(m, \"y\");\n\n                    // fill in missing\n                    if (xrange.from == null)\n                        xrange.from = xrange.axis.min;\n                    if (xrange.to == null)\n                        xrange.to = xrange.axis.max;\n                    if (yrange.from == null)\n                        yrange.from = yrange.axis.min;\n                    if (yrange.to == null)\n                        yrange.to = yrange.axis.max;\n\n                    // clip\n                    if (xrange.to < xrange.axis.min || xrange.from > xrange.axis.max ||\n                        yrange.to < yrange.axis.min || yrange.from > yrange.axis.max)\n                        continue;\n\n                    xrange.from = Math.max(xrange.from, xrange.axis.min);\n                    xrange.to = Math.min(xrange.to, xrange.axis.max);\n                    yrange.from = Math.max(yrange.from, yrange.axis.min);\n                    yrange.to = Math.min(yrange.to, yrange.axis.max);\n\n                    var xequal = xrange.from === xrange.to,\n                        yequal = yrange.from === yrange.to;\n\n                    if (xequal && yequal) {\n                        continue;\n                    }\n\n                    // then draw\n                    xrange.from = Math.floor(xrange.axis.p2c(xrange.from));\n                    xrange.to = Math.floor(xrange.axis.p2c(xrange.to));\n                    yrange.from = Math.floor(yrange.axis.p2c(yrange.from));\n                    yrange.to = Math.floor(yrange.axis.p2c(yrange.to));\n\n                    if (xequal || yequal) {\n                        var lineWidth = m.lineWidth || options.grid.markingsLineWidth,\n                            subPixel = lineWidth % 2 ? 0.5 : 0;\n                        ctx.beginPath();\n                        ctx.strokeStyle = m.color || options.grid.markingsColor;\n                        ctx.lineWidth = lineWidth;\n                        if (xequal) {\n                            ctx.moveTo(xrange.to + subPixel, yrange.from);\n                            ctx.lineTo(xrange.to + subPixel, yrange.to);\n                        } else {\n                            ctx.moveTo(xrange.from, yrange.to + subPixel);\n                            ctx.lineTo(xrange.to, yrange.to + subPixel);                            \n                        }\n                        ctx.stroke();\n                    } else {\n                        ctx.fillStyle = m.color || options.grid.markingsColor;\n                        ctx.fillRect(xrange.from, yrange.to,\n                                     xrange.to - xrange.from,\n                                     yrange.from - yrange.to);\n                    }\n                }\n            }\n\n            // draw the ticks\n            axes = allAxes();\n            bw = options.grid.borderWidth;\n\n            for (var j = 0; j < axes.length; ++j) {\n                var axis = axes[j], box = axis.box,\n                    t = axis.tickLength, x, y, xoff, yoff;\n                if (!axis.show || axis.ticks.length == 0)\n                    continue;\n\n                ctx.lineWidth = 1;\n\n                // find the edges\n                if (axis.direction == \"x\") {\n                    x = 0;\n                    if (t == \"full\")\n                        y = (axis.position == \"top\" ? 0 : plotHeight);\n                    else\n                        y = box.top - plotOffset.top + (axis.position == \"top\" ? box.height : 0);\n                }\n                else {\n                    y = 0;\n                    if (t == \"full\")\n                        x = (axis.position == \"left\" ? 0 : plotWidth);\n                    else\n                        x = box.left - plotOffset.left + (axis.position == \"left\" ? box.width : 0);\n                }\n\n                // draw tick bar\n                if (!axis.innermost) {\n                    ctx.strokeStyle = axis.options.color;\n                    ctx.beginPath();\n                    xoff = yoff = 0;\n                    if (axis.direction == \"x\")\n                        xoff = plotWidth + 1;\n                    else\n                        yoff = plotHeight + 1;\n\n                    if (ctx.lineWidth == 1) {\n                        if (axis.direction == \"x\") {\n                            y = Math.floor(y) + 0.5;\n                        } else {\n                            x = Math.floor(x) + 0.5;\n                        }\n                    }\n\n                    ctx.moveTo(x, y);\n                    ctx.lineTo(x + xoff, y + yoff);\n                    ctx.stroke();\n                }\n\n                // draw ticks\n\n                ctx.strokeStyle = axis.options.tickColor;\n\n                ctx.beginPath();\n                for (i = 0; i < axis.ticks.length; ++i) {\n                    var v = axis.ticks[i].v;\n\n                    xoff = yoff = 0;\n\n                    if (isNaN(v) || v < axis.min || v > axis.max\n                        // skip those lying on the axes if we got a border\n                        || (t == \"full\"\n                            && ((typeof bw == \"object\" && bw[axis.position] > 0) || bw > 0)\n                            && (v == axis.min || v == axis.max)))\n                        continue;\n\n                    if (axis.direction == \"x\") {\n                        x = axis.p2c(v);\n                        yoff = t == \"full\" ? -plotHeight : t;\n\n                        if (axis.position == \"top\")\n                            yoff = -yoff;\n                    }\n                    else {\n                        y = axis.p2c(v);\n                        xoff = t == \"full\" ? -plotWidth : t;\n\n                        if (axis.position == \"left\")\n                            xoff = -xoff;\n                    }\n\n                    if (ctx.lineWidth == 1) {\n                        if (axis.direction == \"x\")\n                            x = Math.floor(x) + 0.5;\n                        else\n                            y = Math.floor(y) + 0.5;\n                    }\n\n                    ctx.moveTo(x, y);\n                    ctx.lineTo(x + xoff, y + yoff);\n                }\n\n                ctx.stroke();\n            }\n\n\n            // draw border\n            if (bw) {\n                // If either borderWidth or borderColor is an object, then draw the border\n                // line by line instead of as one rectangle\n                bc = options.grid.borderColor;\n                if(typeof bw == \"object\" || typeof bc == \"object\") {\n                    if (typeof bw !== \"object\") {\n                        bw = {top: bw, right: bw, bottom: bw, left: bw};\n                    }\n                    if (typeof bc !== \"object\") {\n                        bc = {top: bc, right: bc, bottom: bc, left: bc};\n                    }\n\n                    if (bw.top > 0) {\n                        ctx.strokeStyle = bc.top;\n                        ctx.lineWidth = bw.top;\n                        ctx.beginPath();\n                        ctx.moveTo(0 - bw.left, 0 - bw.top/2);\n                        ctx.lineTo(plotWidth, 0 - bw.top/2);\n                        ctx.stroke();\n                    }\n\n                    if (bw.right > 0) {\n                        ctx.strokeStyle = bc.right;\n                        ctx.lineWidth = bw.right;\n                        ctx.beginPath();\n                        ctx.moveTo(plotWidth + bw.right / 2, 0 - bw.top);\n                        ctx.lineTo(plotWidth + bw.right / 2, plotHeight);\n                        ctx.stroke();\n                    }\n\n                    if (bw.bottom > 0) {\n                        ctx.strokeStyle = bc.bottom;\n                        ctx.lineWidth = bw.bottom;\n                        ctx.beginPath();\n                        ctx.moveTo(plotWidth + bw.right, plotHeight + bw.bottom / 2);\n                        ctx.lineTo(0, plotHeight + bw.bottom / 2);\n                        ctx.stroke();\n                    }\n\n                    if (bw.left > 0) {\n                        ctx.strokeStyle = bc.left;\n                        ctx.lineWidth = bw.left;\n                        ctx.beginPath();\n                        ctx.moveTo(0 - bw.left/2, plotHeight + bw.bottom);\n                        ctx.lineTo(0- bw.left/2, 0);\n                        ctx.stroke();\n                    }\n                }\n                else {\n                    ctx.lineWidth = bw;\n                    ctx.strokeStyle = options.grid.borderColor;\n                    ctx.strokeRect(-bw/2, -bw/2, plotWidth + bw, plotHeight + bw);\n                }\n            }\n\n            ctx.restore();\n        }\n\n        function drawAxisLabels() {\n\n            $.each(allAxes(), function (_, axis) {\n                var box = axis.box,\n                    legacyStyles = axis.direction + \"Axis \" + axis.direction + axis.n + \"Axis\",\n                    layer = \"flot-\" + axis.direction + \"-axis flot-\" + axis.direction + axis.n + \"-axis \" + legacyStyles,\n                    font = axis.options.font || \"flot-tick-label tickLabel\",\n                    tick, x, y, halign, valign;\n\n                // Remove text before checking for axis.show and ticks.length;\n                // otherwise plugins, like flot-tickrotor, that draw their own\n                // tick labels will end up with both theirs and the defaults.\n\n                surface.removeText(layer);\n\n                if (!axis.show || axis.ticks.length == 0)\n                    return;\n\n                for (var i = 0; i < axis.ticks.length; ++i) {\n\n                    tick = axis.ticks[i];\n                    if (!tick.label || tick.v < axis.min || tick.v > axis.max)\n                        continue;\n\n                    if (axis.direction == \"x\") {\n                        halign = \"center\";\n                        x = plotOffset.left + axis.p2c(tick.v);\n                        if (axis.position == \"bottom\") {\n                            y = box.top + box.padding;\n                        } else {\n                            y = box.top + box.height - box.padding;\n                            valign = \"bottom\";\n                        }\n                    } else {\n                        valign = \"middle\";\n                        y = plotOffset.top + axis.p2c(tick.v);\n                        if (axis.position == \"left\") {\n                            x = box.left + box.width - box.padding;\n                            halign = \"right\";\n                        } else {\n                            x = box.left + box.padding;\n                        }\n                    }\n\n                    surface.addText(layer, x, y, tick.label, font, null, null, halign, valign);\n                }\n            });\n        }\n\n        function drawSeries(series) {\n            if (series.lines.show)\n                drawSeriesLines(series);\n            if (series.bars.show)\n                drawSeriesBars(series);\n            if (series.points.show)\n                drawSeriesPoints(series);\n        }\n\n        function drawSeriesLines(series) {\n            function plotLine(datapoints, xoffset, yoffset, axisx, axisy) {\n                var points = datapoints.points,\n                    ps = datapoints.pointsize,\n                    prevx = null, prevy = null;\n\n                ctx.beginPath();\n                for (var i = ps; i < points.length; i += ps) {\n                    var x1 = points[i - ps], y1 = points[i - ps + 1],\n                        x2 = points[i], y2 = points[i + 1];\n\n                    if (x1 == null || x2 == null)\n                        continue;\n\n                    // clip with ymin\n                    if (y1 <= y2 && y1 < axisy.min) {\n                        if (y2 < axisy.min)\n                            continue;   // line segment is outside\n                        // compute new intersection point\n                        x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;\n                        y1 = axisy.min;\n                    }\n                    else if (y2 <= y1 && y2 < axisy.min) {\n                        if (y1 < axisy.min)\n                            continue;\n                        x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;\n                        y2 = axisy.min;\n                    }\n\n                    // clip with ymax\n                    if (y1 >= y2 && y1 > axisy.max) {\n                        if (y2 > axisy.max)\n                            continue;\n                        x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;\n                        y1 = axisy.max;\n                    }\n                    else if (y2 >= y1 && y2 > axisy.max) {\n                        if (y1 > axisy.max)\n                            continue;\n                        x2 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;\n                        y2 = axisy.max;\n                    }\n\n                    // clip with xmin\n                    if (x1 <= x2 && x1 < axisx.min) {\n                        if (x2 < axisx.min)\n                            continue;\n                        y1 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1;\n                        x1 = axisx.min;\n                    }\n                    else if (x2 <= x1 && x2 < axisx.min) {\n                        if (x1 < axisx.min)\n                            continue;\n                        y2 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1;\n                        x2 = axisx.min;\n                    }\n\n                    // clip with xmax\n                    if (x1 >= x2 && x1 > axisx.max) {\n                        if (x2 > axisx.max)\n                            continue;\n                        y1 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1;\n                        x1 = axisx.max;\n                    }\n                    else if (x2 >= x1 && x2 > axisx.max) {\n                        if (x1 > axisx.max)\n                            continue;\n                        y2 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1;\n                        x2 = axisx.max;\n                    }\n\n                    if (x1 != prevx || y1 != prevy)\n                        ctx.moveTo(axisx.p2c(x1) + xoffset, axisy.p2c(y1) + yoffset);\n\n                    prevx = x2;\n                    prevy = y2;\n                    ctx.lineTo(axisx.p2c(x2) + xoffset, axisy.p2c(y2) + yoffset);\n                }\n                ctx.stroke();\n            }\n\n            function plotLineArea(datapoints, axisx, axisy) {\n                var points = datapoints.points,\n                    ps = datapoints.pointsize,\n                    bottom = Math.min(Math.max(0, axisy.min), axisy.max),\n                    i = 0, top, areaOpen = false,\n                    ypos = 1, segmentStart = 0, segmentEnd = 0;\n\n                // we process each segment in two turns, first forward\n                // direction to sketch out top, then once we hit the\n                // end we go backwards to sketch the bottom\n                while (true) {\n                    if (ps > 0 && i > points.length + ps)\n                        break;\n\n                    i += ps; // ps is negative if going backwards\n\n                    var x1 = points[i - ps],\n                        y1 = points[i - ps + ypos],\n                        x2 = points[i], y2 = points[i + ypos];\n\n                    if (areaOpen) {\n                        if (ps > 0 && x1 != null && x2 == null) {\n                            // at turning point\n                            segmentEnd = i;\n                            ps = -ps;\n                            ypos = 2;\n                            continue;\n                        }\n\n                        if (ps < 0 && i == segmentStart + ps) {\n                            // done with the reverse sweep\n                            ctx.fill();\n                            areaOpen = false;\n                            ps = -ps;\n                            ypos = 1;\n                            i = segmentStart = segmentEnd + ps;\n                            continue;\n                        }\n                    }\n\n                    if (x1 == null || x2 == null)\n                        continue;\n\n                    // clip x values\n\n                    // clip with xmin\n                    if (x1 <= x2 && x1 < axisx.min) {\n                        if (x2 < axisx.min)\n                            continue;\n                        y1 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1;\n                        x1 = axisx.min;\n                    }\n                    else if (x2 <= x1 && x2 < axisx.min) {\n                        if (x1 < axisx.min)\n                            continue;\n                        y2 = (axisx.min - x1) / (x2 - x1) * (y2 - y1) + y1;\n                        x2 = axisx.min;\n                    }\n\n                    // clip with xmax\n                    if (x1 >= x2 && x1 > axisx.max) {\n                        if (x2 > axisx.max)\n                            continue;\n                        y1 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1;\n                        x1 = axisx.max;\n                    }\n                    else if (x2 >= x1 && x2 > axisx.max) {\n                        if (x1 > axisx.max)\n                            continue;\n                        y2 = (axisx.max - x1) / (x2 - x1) * (y2 - y1) + y1;\n                        x2 = axisx.max;\n                    }\n\n                    if (!areaOpen) {\n                        // open area\n                        ctx.beginPath();\n                        ctx.moveTo(axisx.p2c(x1), axisy.p2c(bottom));\n                        areaOpen = true;\n                    }\n\n                    // now first check the case where both is outside\n                    if (y1 >= axisy.max && y2 >= axisy.max) {\n                        ctx.lineTo(axisx.p2c(x1), axisy.p2c(axisy.max));\n                        ctx.lineTo(axisx.p2c(x2), axisy.p2c(axisy.max));\n                        continue;\n                    }\n                    else if (y1 <= axisy.min && y2 <= axisy.min) {\n                        ctx.lineTo(axisx.p2c(x1), axisy.p2c(axisy.min));\n                        ctx.lineTo(axisx.p2c(x2), axisy.p2c(axisy.min));\n                        continue;\n                    }\n\n                    // else it's a bit more complicated, there might\n                    // be a flat maxed out rectangle first, then a\n                    // triangular cutout or reverse; to find these\n                    // keep track of the current x values\n                    var x1old = x1, x2old = x2;\n\n                    // clip the y values, without shortcutting, we\n                    // go through all cases in turn\n\n                    // clip with ymin\n                    if (y1 <= y2 && y1 < axisy.min && y2 >= axisy.min) {\n                        x1 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;\n                        y1 = axisy.min;\n                    }\n                    else if (y2 <= y1 && y2 < axisy.min && y1 >= axisy.min) {\n                        x2 = (axisy.min - y1) / (y2 - y1) * (x2 - x1) + x1;\n                        y2 = axisy.min;\n                    }\n\n                    // clip with ymax\n                    if (y1 >= y2 && y1 > axisy.max && y2 <= axisy.max) {\n                        x1 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;\n                        y1 = axisy.max;\n                    }\n                    else if (y2 >= y1 && y2 > axisy.max && y1 <= axisy.max) {\n                        x2 = (axisy.max - y1) / (y2 - y1) * (x2 - x1) + x1;\n                        y2 = axisy.max;\n                    }\n\n                    // if the x value was changed we got a rectangle\n                    // to fill\n                    if (x1 != x1old) {\n                        ctx.lineTo(axisx.p2c(x1old), axisy.p2c(y1));\n                        // it goes to (x1, y1), but we fill that below\n                    }\n\n                    // fill triangular section, this sometimes result\n                    // in redundant points if (x1, y1) hasn't changed\n                    // from previous line to, but we just ignore that\n                    ctx.lineTo(axisx.p2c(x1), axisy.p2c(y1));\n                    ctx.lineTo(axisx.p2c(x2), axisy.p2c(y2));\n\n                    // fill the other rectangle if it's there\n                    if (x2 != x2old) {\n                        ctx.lineTo(axisx.p2c(x2), axisy.p2c(y2));\n                        ctx.lineTo(axisx.p2c(x2old), axisy.p2c(y2));\n                    }\n                }\n            }\n\n            ctx.save();\n            ctx.translate(plotOffset.left, plotOffset.top);\n            ctx.lineJoin = \"round\";\n\n            var lw = series.lines.lineWidth,\n                sw = series.shadowSize;\n            // FIXME: consider another form of shadow when filling is turned on\n            if (lw > 0 && sw > 0) {\n                // draw shadow as a thick and thin line with transparency\n                ctx.lineWidth = sw;\n                ctx.strokeStyle = \"rgba(0,0,0,0.1)\";\n                // position shadow at angle from the mid of line\n                var angle = Math.PI/18;\n                plotLine(series.datapoints, Math.sin(angle) * (lw/2 + sw/2), Math.cos(angle) * (lw/2 + sw/2), series.xaxis, series.yaxis);\n                ctx.lineWidth = sw/2;\n                plotLine(series.datapoints, Math.sin(angle) * (lw/2 + sw/4), Math.cos(angle) * (lw/2 + sw/4), series.xaxis, series.yaxis);\n            }\n\n            ctx.lineWidth = lw;\n            ctx.strokeStyle = series.color;\n            var fillStyle = getFillStyle(series.lines, series.color, 0, plotHeight);\n            if (fillStyle) {\n                ctx.fillStyle = fillStyle;\n                plotLineArea(series.datapoints, series.xaxis, series.yaxis);\n            }\n\n            if (lw > 0)\n                plotLine(series.datapoints, 0, 0, series.xaxis, series.yaxis);\n            ctx.restore();\n        }\n\n        function drawSeriesPoints(series) {\n            function plotPoints(datapoints, radius, fillStyle, offset, shadow, axisx, axisy, symbol) {\n                var points = datapoints.points, ps = datapoints.pointsize;\n\n                for (var i = 0; i < points.length; i += ps) {\n                    var x = points[i], y = points[i + 1];\n                    if (x == null || x < axisx.min || x > axisx.max || y < axisy.min || y > axisy.max)\n                        continue;\n\n                    ctx.beginPath();\n                    x = axisx.p2c(x);\n                    y = axisy.p2c(y) + offset;\n                    if (symbol == \"circle\")\n                        ctx.arc(x, y, radius, 0, shadow ? Math.PI : Math.PI * 2, false);\n                    else\n                        symbol(ctx, x, y, radius, shadow);\n                    ctx.closePath();\n\n                    if (fillStyle) {\n                        ctx.fillStyle = fillStyle;\n                        ctx.fill();\n                    }\n                    ctx.stroke();\n                }\n            }\n\n            ctx.save();\n            ctx.translate(plotOffset.left, plotOffset.top);\n\n            var lw = series.points.lineWidth,\n                sw = series.shadowSize,\n                radius = series.points.radius,\n                symbol = series.points.symbol;\n\n            // If the user sets the line width to 0, we change it to a very \n            // small value. A line width of 0 seems to force the default of 1.\n            // Doing the conditional here allows the shadow setting to still be \n            // optional even with a lineWidth of 0.\n\n            if( lw == 0 )\n                lw = 0.0001;\n\n            if (lw > 0 && sw > 0) {\n                // draw shadow in two steps\n                var w = sw / 2;\n                ctx.lineWidth = w;\n                ctx.strokeStyle = \"rgba(0,0,0,0.1)\";\n                plotPoints(series.datapoints, radius, null, w + w/2, true,\n                           series.xaxis, series.yaxis, symbol);\n\n                ctx.strokeStyle = \"rgba(0,0,0,0.2)\";\n                plotPoints(series.datapoints, radius, null, w/2, true,\n                           series.xaxis, series.yaxis, symbol);\n            }\n\n            ctx.lineWidth = lw;\n            ctx.strokeStyle = series.color;\n            plotPoints(series.datapoints, radius,\n                       getFillStyle(series.points, series.color), 0, false,\n                       series.xaxis, series.yaxis, symbol);\n            ctx.restore();\n        }\n\n        function drawBar(x, y, b, barLeft, barRight, fillStyleCallback, axisx, axisy, c, horizontal, lineWidth) {\n            var left, right, bottom, top,\n                drawLeft, drawRight, drawTop, drawBottom,\n                tmp;\n\n            // in horizontal mode, we start the bar from the left\n            // instead of from the bottom so it appears to be\n            // horizontal rather than vertical\n            if (horizontal) {\n                drawBottom = drawRight = drawTop = true;\n                drawLeft = false;\n                left = b;\n                right = x;\n                top = y + barLeft;\n                bottom = y + barRight;\n\n                // account for negative bars\n                if (right < left) {\n                    tmp = right;\n                    right = left;\n                    left = tmp;\n                    drawLeft = true;\n                    drawRight = false;\n                }\n            }\n            else {\n                drawLeft = drawRight = drawTop = true;\n                drawBottom = false;\n                left = x + barLeft;\n                right = x + barRight;\n                bottom = b;\n                top = y;\n\n                // account for negative bars\n                if (top < bottom) {\n                    tmp = top;\n                    top = bottom;\n                    bottom = tmp;\n                    drawBottom = true;\n                    drawTop = false;\n                }\n            }\n\n            // clip\n            if (right < axisx.min || left > axisx.max ||\n                top < axisy.min || bottom > axisy.max)\n                return;\n\n            if (left < axisx.min) {\n                left = axisx.min;\n                drawLeft = false;\n            }\n\n            if (right > axisx.max) {\n                right = axisx.max;\n                drawRight = false;\n            }\n\n            if (bottom < axisy.min) {\n                bottom = axisy.min;\n                drawBottom = false;\n            }\n\n            if (top > axisy.max) {\n                top = axisy.max;\n                drawTop = false;\n            }\n\n            left = axisx.p2c(left);\n            bottom = axisy.p2c(bottom);\n            right = axisx.p2c(right);\n            top = axisy.p2c(top);\n\n            // fill the bar\n            if (fillStyleCallback) {\n                c.fillStyle = fillStyleCallback(bottom, top);\n                c.fillRect(left, top, right - left, bottom - top)\n            }\n\n            // draw outline\n            if (lineWidth > 0 && (drawLeft || drawRight || drawTop || drawBottom)) {\n                c.beginPath();\n\n                // FIXME: inline moveTo is buggy with excanvas\n                c.moveTo(left, bottom);\n                if (drawLeft)\n                    c.lineTo(left, top);\n                else\n                    c.moveTo(left, top);\n                if (drawTop)\n                    c.lineTo(right, top);\n                else\n                    c.moveTo(right, top);\n                if (drawRight)\n                    c.lineTo(right, bottom);\n                else\n                    c.moveTo(right, bottom);\n                if (drawBottom)\n                    c.lineTo(left, bottom);\n                else\n                    c.moveTo(left, bottom);\n                c.stroke();\n            }\n        }\n\n        function drawSeriesBars(series) {\n            function plotBars(datapoints, barLeft, barRight, fillStyleCallback, axisx, axisy) {\n                var points = datapoints.points, ps = datapoints.pointsize;\n\n                for (var i = 0; i < points.length; i += ps) {\n                    if (points[i] == null)\n                        continue;\n                    drawBar(points[i], points[i + 1], points[i + 2], barLeft, barRight, fillStyleCallback, axisx, axisy, ctx, series.bars.horizontal, series.bars.lineWidth);\n                }\n            }\n\n            ctx.save();\n            ctx.translate(plotOffset.left, plotOffset.top);\n\n            // FIXME: figure out a way to add shadows (for instance along the right edge)\n            ctx.lineWidth = series.bars.lineWidth;\n            ctx.strokeStyle = series.color;\n\n            var barLeft;\n\n            switch (series.bars.align) {\n                case \"left\":\n                    barLeft = 0;\n                    break;\n                case \"right\":\n                    barLeft = -series.bars.barWidth;\n                    break;\n                default:\n                    barLeft = -series.bars.barWidth / 2;\n            }\n\n            var fillStyleCallback = series.bars.fill ? function (bottom, top) { return getFillStyle(series.bars, series.color, bottom, top); } : null;\n            plotBars(series.datapoints, barLeft, barLeft + series.bars.barWidth, fillStyleCallback, series.xaxis, series.yaxis);\n            ctx.restore();\n        }\n\n        function getFillStyle(filloptions, seriesColor, bottom, top) {\n            var fill = filloptions.fill;\n            if (!fill)\n                return null;\n\n            if (filloptions.fillColor)\n                return getColorOrGradient(filloptions.fillColor, bottom, top, seriesColor);\n\n            var c = $.color.parse(seriesColor);\n            c.a = typeof fill == \"number\" ? fill : 0.4;\n            c.normalize();\n            return c.toString();\n        }\n\n        function insertLegend() {\n\n            if (options.legend.container != null) {\n                $(options.legend.container).html(\"\");\n            } else {\n                placeholder.find(\".legend\").remove();\n            }\n\n            if (!options.legend.show) {\n                return;\n            }\n\n            var fragments = [], entries = [], rowStarted = false,\n                lf = options.legend.labelFormatter, s, label;\n\n            // Build a list of legend entries, with each having a label and a color\n\n            for (var i = 0; i < series.length; ++i) {\n                s = series[i];\n                if (s.label) {\n                    label = lf ? lf(s.label, s) : s.label;\n                    if (label) {\n                        entries.push({\n                            label: label,\n                            color: s.color\n                        });\n                    }\n                }\n            }\n\n            // Sort the legend using either the default or a custom comparator\n\n            if (options.legend.sorted) {\n                if ($.isFunction(options.legend.sorted)) {\n                    entries.sort(options.legend.sorted);\n                } else if (options.legend.sorted == \"reverse\") {\n                \tentries.reverse();\n                } else {\n                    var ascending = options.legend.sorted != \"descending\";\n                    entries.sort(function(a, b) {\n                        return a.label == b.label ? 0 : (\n                            (a.label < b.label) != ascending ? 1 : -1   // Logical XOR\n                        );\n                    });\n                }\n            }\n\n            // Generate markup for the list of entries, in their final order\n\n            for (var i = 0; i < entries.length; ++i) {\n\n                var entry = entries[i];\n\n                if (i % options.legend.noColumns == 0) {\n                    if (rowStarted)\n                        fragments.push('</tr>');\n                    fragments.push('<tr>');\n                    rowStarted = true;\n                }\n\n                fragments.push(\n                    '<td class=\"legendColorBox\"><div style=\"border:1px solid ' + options.legend.labelBoxBorderColor + ';padding:1px\"><div style=\"width:4px;height:0;border:5px solid ' + entry.color + ';overflow:hidden\"></div></div></td>' +\n                    '<td class=\"legendLabel\">' + entry.label + '</td>'\n                );\n            }\n\n            if (rowStarted)\n                fragments.push('</tr>');\n\n            if (fragments.length == 0)\n                return;\n\n            var table = '<table style=\"font-size:smaller;color:' + options.grid.color + '\">' + fragments.join(\"\") + '</table>';\n            if (options.legend.container != null)\n                $(options.legend.container).html(table);\n            else {\n                var pos = \"\",\n                    p = options.legend.position,\n                    m = options.legend.margin;\n                if (m[0] == null)\n                    m = [m, m];\n                if (p.charAt(0) == \"n\")\n                    pos += 'top:' + (m[1] + plotOffset.top) + 'px;';\n                else if (p.charAt(0) == \"s\")\n                    pos += 'bottom:' + (m[1] + plotOffset.bottom) + 'px;';\n                if (p.charAt(1) == \"e\")\n                    pos += 'right:' + (m[0] + plotOffset.right) + 'px;';\n                else if (p.charAt(1) == \"w\")\n                    pos += 'left:' + (m[0] + plotOffset.left) + 'px;';\n                var legend = $('<div class=\"legend\">' + table.replace('style=\"', 'style=\"position:absolute;' + pos +';') + '</div>').appendTo(placeholder);\n                if (options.legend.backgroundOpacity != 0.0) {\n                    // put in the transparent background\n                    // separately to avoid blended labels and\n                    // label boxes\n                    var c = options.legend.backgroundColor;\n                    if (c == null) {\n                        c = options.grid.backgroundColor;\n                        if (c && typeof c == \"string\")\n                            c = $.color.parse(c);\n                        else\n                            c = $.color.extract(legend, 'background-color');\n                        c.a = 1;\n                        c = c.toString();\n                    }\n                    var div = legend.children();\n                    $('<div style=\"position:absolute;width:' + div.width() + 'px;height:' + div.height() + 'px;' + pos +'background-color:' + c + ';\"> </div>').prependTo(legend).css('opacity', options.legend.backgroundOpacity);\n                }\n            }\n        }\n\n\n        // interactive features\n\n        var highlights = [],\n            redrawTimeout = null;\n\n        // returns the data item the mouse is over, or null if none is found\n        function findNearbyItem(mouseX, mouseY, seriesFilter) {\n            var maxDistance = options.grid.mouseActiveRadius,\n                smallestDistance = maxDistance * maxDistance + 1,\n                item = null, foundPoint = false, i, j, ps;\n\n            for (i = series.length - 1; i >= 0; --i) {\n                if (!seriesFilter(series[i]))\n                    continue;\n\n                var s = series[i],\n                    axisx = s.xaxis,\n                    axisy = s.yaxis,\n                    points = s.datapoints.points,\n                    mx = axisx.c2p(mouseX), // precompute some stuff to make the loop faster\n                    my = axisy.c2p(mouseY),\n                    maxx = maxDistance / axisx.scale,\n                    maxy = maxDistance / axisy.scale;\n\n                ps = s.datapoints.pointsize;\n                // with inverse transforms, we can't use the maxx/maxy\n                // optimization, sadly\n                if (axisx.options.inverseTransform)\n                    maxx = Number.MAX_VALUE;\n                if (axisy.options.inverseTransform)\n                    maxy = Number.MAX_VALUE;\n\n                if (s.lines.show || s.points.show) {\n                    for (j = 0; j < points.length; j += ps) {\n                        var x = points[j], y = points[j + 1];\n                        if (x == null)\n                            continue;\n\n                        // For points and lines, the cursor must be within a\n                        // certain distance to the data point\n                        if (x - mx > maxx || x - mx < -maxx ||\n                            y - my > maxy || y - my < -maxy)\n                            continue;\n\n                        // We have to calculate distances in pixels, not in\n                        // data units, because the scales of the axes may be different\n                        var dx = Math.abs(axisx.p2c(x) - mouseX),\n                            dy = Math.abs(axisy.p2c(y) - mouseY),\n                            dist = dx * dx + dy * dy; // we save the sqrt\n\n                        // use <= to ensure last point takes precedence\n                        // (last generally means on top of)\n                        if (dist < smallestDistance) {\n                            smallestDistance = dist;\n                            item = [i, j / ps];\n                        }\n                    }\n                }\n\n                if (s.bars.show && !item) { // no other point can be nearby\n\n                    var barLeft, barRight;\n\n                    switch (s.bars.align) {\n                        case \"left\":\n                            barLeft = 0;\n                            break;\n                        case \"right\":\n                            barLeft = -s.bars.barWidth;\n                            break;\n                        default:\n                            barLeft = -s.bars.barWidth / 2;\n                    }\n\n                    barRight = barLeft + s.bars.barWidth;\n\n                    for (j = 0; j < points.length; j += ps) {\n                        var x = points[j], y = points[j + 1], b = points[j + 2];\n                        if (x == null)\n                            continue;\n\n                        // for a bar graph, the cursor must be inside the bar\n                        if (series[i].bars.horizontal ?\n                            (mx <= Math.max(b, x) && mx >= Math.min(b, x) &&\n                             my >= y + barLeft && my <= y + barRight) :\n                            (mx >= x + barLeft && mx <= x + barRight &&\n                             my >= Math.min(b, y) && my <= Math.max(b, y)))\n                                item = [i, j / ps];\n                    }\n                }\n            }\n\n            if (item) {\n                i = item[0];\n                j = item[1];\n                ps = series[i].datapoints.pointsize;\n\n                return { datapoint: series[i].datapoints.points.slice(j * ps, (j + 1) * ps),\n                         dataIndex: j,\n                         series: series[i],\n                         seriesIndex: i };\n            }\n\n            return null;\n        }\n\n        function onMouseMove(e) {\n            if (options.grid.hoverable)\n                triggerClickHoverEvent(\"plothover\", e,\n                                       function (s) { return s[\"hoverable\"] != false; });\n        }\n\n        function onMouseLeave(e) {\n            if (options.grid.hoverable)\n                triggerClickHoverEvent(\"plothover\", e,\n                                       function (s) { return false; });\n        }\n\n        function onClick(e) {\n            triggerClickHoverEvent(\"plotclick\", e,\n                                   function (s) { return s[\"clickable\"] != false; });\n        }\n\n        // trigger click or hover event (they send the same parameters\n        // so we share their code)\n        function triggerClickHoverEvent(eventname, event, seriesFilter) {\n            var offset = eventHolder.offset(),\n                canvasX = event.pageX - offset.left - plotOffset.left,\n                canvasY = event.pageY - offset.top - plotOffset.top,\n            pos = canvasToAxisCoords({ left: canvasX, top: canvasY });\n\n            pos.pageX = event.pageX;\n            pos.pageY = event.pageY;\n\n            var item = findNearbyItem(canvasX, canvasY, seriesFilter);\n\n            if (item) {\n                // fill in mouse pos for any listeners out there\n                item.pageX = parseInt(item.series.xaxis.p2c(item.datapoint[0]) + offset.left + plotOffset.left, 10);\n                item.pageY = parseInt(item.series.yaxis.p2c(item.datapoint[1]) + offset.top + plotOffset.top, 10);\n            }\n\n            if (options.grid.autoHighlight) {\n                // clear auto-highlights\n                for (var i = 0; i < highlights.length; ++i) {\n                    var h = highlights[i];\n                    if (h.auto == eventname &&\n                        !(item && h.series == item.series &&\n                          h.point[0] == item.datapoint[0] &&\n                          h.point[1] == item.datapoint[1]))\n                        unhighlight(h.series, h.point);\n                }\n\n                if (item)\n                    highlight(item.series, item.datapoint, eventname);\n            }\n\n            placeholder.trigger(eventname, [ pos, item ]);\n        }\n\n        function triggerRedrawOverlay() {\n            var t = options.interaction.redrawOverlayInterval;\n            if (t == -1) {      // skip event queue\n                drawOverlay();\n                return;\n            }\n\n            if (!redrawTimeout)\n                redrawTimeout = setTimeout(drawOverlay, t);\n        }\n\n        function drawOverlay() {\n            redrawTimeout = null;\n\n            // draw highlights\n            octx.save();\n            overlay.clear();\n            octx.translate(plotOffset.left, plotOffset.top);\n\n            var i, hi;\n            for (i = 0; i < highlights.length; ++i) {\n                hi = highlights[i];\n\n                if (hi.series.bars.show)\n                    drawBarHighlight(hi.series, hi.point);\n                else\n                    drawPointHighlight(hi.series, hi.point);\n            }\n            octx.restore();\n\n            executeHooks(hooks.drawOverlay, [octx]);\n        }\n\n        function highlight(s, point, auto) {\n            if (typeof s == \"number\")\n                s = series[s];\n\n            if (typeof point == \"number\") {\n                var ps = s.datapoints.pointsize;\n                point = s.datapoints.points.slice(ps * point, ps * (point + 1));\n            }\n\n            var i = indexOfHighlight(s, point);\n            if (i == -1) {\n                highlights.push({ series: s, point: point, auto: auto });\n\n                triggerRedrawOverlay();\n            }\n            else if (!auto)\n                highlights[i].auto = false;\n        }\n\n        function unhighlight(s, point) {\n            if (s == null && point == null) {\n                highlights = [];\n                triggerRedrawOverlay();\n                return;\n            }\n\n            if (typeof s == \"number\")\n                s = series[s];\n\n            if (typeof point == \"number\") {\n                var ps = s.datapoints.pointsize;\n                point = s.datapoints.points.slice(ps * point, ps * (point + 1));\n            }\n\n            var i = indexOfHighlight(s, point);\n            if (i != -1) {\n                highlights.splice(i, 1);\n\n                triggerRedrawOverlay();\n            }\n        }\n\n        function indexOfHighlight(s, p) {\n            for (var i = 0; i < highlights.length; ++i) {\n                var h = highlights[i];\n                if (h.series == s && h.point[0] == p[0]\n                    && h.point[1] == p[1])\n                    return i;\n            }\n            return -1;\n        }\n\n        function drawPointHighlight(series, point) {\n            var x = point[0], y = point[1],\n                axisx = series.xaxis, axisy = series.yaxis,\n                highlightColor = (typeof series.highlightColor === \"string\") ? series.highlightColor : $.color.parse(series.color).scale('a', 0.5).toString();\n\n            if (x < axisx.min || x > axisx.max || y < axisy.min || y > axisy.max)\n                return;\n\n            var pointRadius = series.points.radius + series.points.lineWidth / 2;\n            octx.lineWidth = pointRadius;\n            octx.strokeStyle = highlightColor;\n            var radius = 1.5 * pointRadius;\n            x = axisx.p2c(x);\n            y = axisy.p2c(y);\n\n            octx.beginPath();\n            if (series.points.symbol == \"circle\")\n                octx.arc(x, y, radius, 0, 2 * Math.PI, false);\n            else\n                series.points.symbol(octx, x, y, radius, false);\n            octx.closePath();\n            octx.stroke();\n        }\n\n        function drawBarHighlight(series, point) {\n            var highlightColor = (typeof series.highlightColor === \"string\") ? series.highlightColor : $.color.parse(series.color).scale('a', 0.5).toString(),\n                fillStyle = highlightColor,\n                barLeft;\n\n            switch (series.bars.align) {\n                case \"left\":\n                    barLeft = 0;\n                    break;\n                case \"right\":\n                    barLeft = -series.bars.barWidth;\n                    break;\n                default:\n                    barLeft = -series.bars.barWidth / 2;\n            }\n\n            octx.lineWidth = series.bars.lineWidth;\n            octx.strokeStyle = highlightColor;\n\n            drawBar(point[0], point[1], point[2] || 0, barLeft, barLeft + series.bars.barWidth,\n                    function () { return fillStyle; }, series.xaxis, series.yaxis, octx, series.bars.horizontal, series.bars.lineWidth);\n        }\n\n        function getColorOrGradient(spec, bottom, top, defaultColor) {\n            if (typeof spec == \"string\")\n                return spec;\n            else {\n                // assume this is a gradient spec; IE currently only\n                // supports a simple vertical gradient properly, so that's\n                // what we support too\n                var gradient = ctx.createLinearGradient(0, top, 0, bottom);\n\n                for (var i = 0, l = spec.colors.length; i < l; ++i) {\n                    var c = spec.colors[i];\n                    if (typeof c != \"string\") {\n                        var co = $.color.parse(defaultColor);\n                        if (c.brightness != null)\n                            co = co.scale('rgb', c.brightness);\n                        if (c.opacity != null)\n                            co.a *= c.opacity;\n                        c = co.toString();\n                    }\n                    gradient.addColorStop(i / (l - 1), c);\n                }\n\n                return gradient;\n            }\n        }\n    }\n\n    // Add the plot function to the top level of the jQuery object\n\n    $.plot = function(placeholder, data, options) {\n        //var t0 = new Date();\n        var plot = new Plot($(placeholder), data, options, $.plot.plugins);\n        //(window.console ? console.log : alert)(\"time used (msecs): \" + ((new Date()).getTime() - t0.getTime()));\n        return plot;\n    };\n\n    $.plot.version = \"0.8.3\";\n\n    $.plot.plugins = [];\n\n    // Also add the plot function as a chainable property\n\n    $.fn.plot = function(data, options) {\n        return this.each(function() {\n            $.plot(this, data, options);\n        });\n    };\n\n    // round to nearby lower multiple of base\n    function floorInBase(n, base) {\n        return base * Math.floor(n / base);\n    }\n\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/flot/jquery.flot.pie.js",
    "content": "/* Flot plugin for rendering pie charts.\n\nCopyright (c) 2007-2014 IOLA and Ole Laursen.\nLicensed under the MIT license.\n\nThe plugin assumes that each series has a single data value, and that each\nvalue is a positive integer or zero.  Negative numbers don't make sense for a\npie chart, and have unpredictable results.  The values do NOT need to be\npassed in as percentages; the plugin will calculate the total and per-slice\npercentages internally.\n\n* Created by Brian Medendorp\n\n* Updated with contributions from btburnett3, Anthony Aragues and Xavi Ivars\n\nThe plugin supports these options:\n\n\tseries: {\n\t\tpie: {\n\t\t\tshow: true/false\n\t\t\tradius: 0-1 for percentage of fullsize, or a specified pixel length, or 'auto'\n\t\t\tinnerRadius: 0-1 for percentage of fullsize or a specified pixel length, for creating a donut effect\n\t\t\tstartAngle: 0-2 factor of PI used for starting angle (in radians) i.e 3/2 starts at the top, 0 and 2 have the same result\n\t\t\ttilt: 0-1 for percentage to tilt the pie, where 1 is no tilt, and 0 is completely flat (nothing will show)\n\t\t\toffset: {\n\t\t\t\ttop: integer value to move the pie up or down\n\t\t\t\tleft: integer value to move the pie left or right, or 'auto'\n\t\t\t},\n\t\t\tstroke: {\n\t\t\t\tcolor: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#FFF')\n\t\t\t\twidth: integer pixel width of the stroke\n\t\t\t},\n\t\t\tlabel: {\n\t\t\t\tshow: true/false, or 'auto'\n\t\t\t\tformatter:  a user-defined function that modifies the text/style of the label text\n\t\t\t\tradius: 0-1 for percentage of fullsize, or a specified pixel length\n\t\t\t\tbackground: {\n\t\t\t\t\tcolor: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#000')\n\t\t\t\t\topacity: 0-1\n\t\t\t\t},\n\t\t\t\tthreshold: 0-1 for the percentage value at which to hide labels (if they're too small)\n\t\t\t},\n\t\t\tcombine: {\n\t\t\t\tthreshold: 0-1 for the percentage value at which to combine slices (if they're too small)\n\t\t\t\tcolor: any hexidecimal color value (other formats may or may not work, so best to stick with something like '#CCC'), if null, the plugin will automatically use the color of the first slice to be combined\n\t\t\t\tlabel: any text value of what the combined slice should be labeled\n\t\t\t}\n\t\t\thighlight: {\n\t\t\t\topacity: 0-1\n\t\t\t}\n\t\t}\n\t}\n\nMore detail and specific examples can be found in the included HTML file.\n\n*/\n\n(function($) {\n\n\t// Maximum redraw attempts when fitting labels within the plot\n\n\tvar REDRAW_ATTEMPTS = 10;\n\n\t// Factor by which to shrink the pie when fitting labels within the plot\n\n\tvar REDRAW_SHRINK = 0.95;\n\n\tfunction init(plot) {\n\n\t\tvar canvas = null,\n\t\t\ttarget = null,\n\t\t\toptions = null,\n\t\t\tmaxRadius = null,\n\t\t\tcenterLeft = null,\n\t\t\tcenterTop = null,\n\t\t\tprocessed = false,\n\t\t\tctx = null;\n\n\t\t// interactive variables\n\n\t\tvar highlights = [];\n\n\t\t// add hook to determine if pie plugin in enabled, and then perform necessary operations\n\n\t\tplot.hooks.processOptions.push(function(plot, options) {\n\t\t\tif (options.series.pie.show) {\n\n\t\t\t\toptions.grid.show = false;\n\n\t\t\t\t// set labels.show\n\n\t\t\t\tif (options.series.pie.label.show == \"auto\") {\n\t\t\t\t\tif (options.legend.show) {\n\t\t\t\t\t\toptions.series.pie.label.show = false;\n\t\t\t\t\t} else {\n\t\t\t\t\t\toptions.series.pie.label.show = true;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// set radius\n\n\t\t\t\tif (options.series.pie.radius == \"auto\") {\n\t\t\t\t\tif (options.series.pie.label.show) {\n\t\t\t\t\t\toptions.series.pie.radius = 3/4;\n\t\t\t\t\t} else {\n\t\t\t\t\t\toptions.series.pie.radius = 1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// ensure sane tilt\n\n\t\t\t\tif (options.series.pie.tilt > 1) {\n\t\t\t\t\toptions.series.pie.tilt = 1;\n\t\t\t\t} else if (options.series.pie.tilt < 0) {\n\t\t\t\t\toptions.series.pie.tilt = 0;\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tplot.hooks.bindEvents.push(function(plot, eventHolder) {\n\t\t\tvar options = plot.getOptions();\n\t\t\tif (options.series.pie.show) {\n\t\t\t\tif (options.grid.hoverable) {\n\t\t\t\t\teventHolder.unbind(\"mousemove\").mousemove(onMouseMove);\n\t\t\t\t}\n\t\t\t\tif (options.grid.clickable) {\n\t\t\t\t\teventHolder.unbind(\"click\").click(onClick);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tplot.hooks.processDatapoints.push(function(plot, series, data, datapoints) {\n\t\t\tvar options = plot.getOptions();\n\t\t\tif (options.series.pie.show) {\n\t\t\t\tprocessDatapoints(plot, series, data, datapoints);\n\t\t\t}\n\t\t});\n\n\t\tplot.hooks.drawOverlay.push(function(plot, octx) {\n\t\t\tvar options = plot.getOptions();\n\t\t\tif (options.series.pie.show) {\n\t\t\t\tdrawOverlay(plot, octx);\n\t\t\t}\n\t\t});\n\n\t\tplot.hooks.draw.push(function(plot, newCtx) {\n\t\t\tvar options = plot.getOptions();\n\t\t\tif (options.series.pie.show) {\n\t\t\t\tdraw(plot, newCtx);\n\t\t\t}\n\t\t});\n\n\t\tfunction processDatapoints(plot, series, datapoints) {\n\t\t\tif (!processed)\t{\n\t\t\t\tprocessed = true;\n\t\t\t\tcanvas = plot.getCanvas();\n\t\t\t\ttarget = $(canvas).parent();\n\t\t\t\toptions = plot.getOptions();\n\t\t\t\tplot.setData(combine(plot.getData()));\n\t\t\t}\n\t\t}\n\n\t\tfunction combine(data) {\n\n\t\t\tvar total = 0,\n\t\t\t\tcombined = 0,\n\t\t\t\tnumCombined = 0,\n\t\t\t\tcolor = options.series.pie.combine.color,\n\t\t\t\tnewdata = [];\n\n\t\t\t// Fix up the raw data from Flot, ensuring the data is numeric\n\n\t\t\tfor (var i = 0; i < data.length; ++i) {\n\n\t\t\t\tvar value = data[i].data;\n\n\t\t\t\t// If the data is an array, we'll assume that it's a standard\n\t\t\t\t// Flot x-y pair, and are concerned only with the second value.\n\n\t\t\t\t// Note how we use the original array, rather than creating a\n\t\t\t\t// new one; this is more efficient and preserves any extra data\n\t\t\t\t// that the user may have stored in higher indexes.\n\n\t\t\t\tif ($.isArray(value) && value.length == 1) {\n    \t\t\t\tvalue = value[0];\n\t\t\t\t}\n\n\t\t\t\tif ($.isArray(value)) {\n\t\t\t\t\t// Equivalent to $.isNumeric() but compatible with jQuery < 1.7\n\t\t\t\t\tif (!isNaN(parseFloat(value[1])) && isFinite(value[1])) {\n\t\t\t\t\t\tvalue[1] = +value[1];\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvalue[1] = 0;\n\t\t\t\t\t}\n\t\t\t\t} else if (!isNaN(parseFloat(value)) && isFinite(value)) {\n\t\t\t\t\tvalue = [1, +value];\n\t\t\t\t} else {\n\t\t\t\t\tvalue = [1, 0];\n\t\t\t\t}\n\n\t\t\t\tdata[i].data = [value];\n\t\t\t}\n\n\t\t\t// Sum up all the slices, so we can calculate percentages for each\n\n\t\t\tfor (var i = 0; i < data.length; ++i) {\n\t\t\t\ttotal += data[i].data[0][1];\n\t\t\t}\n\n\t\t\t// Count the number of slices with percentages below the combine\n\t\t\t// threshold; if it turns out to be just one, we won't combine.\n\n\t\t\tfor (var i = 0; i < data.length; ++i) {\n\t\t\t\tvar value = data[i].data[0][1];\n\t\t\t\tif (value / total <= options.series.pie.combine.threshold) {\n\t\t\t\t\tcombined += value;\n\t\t\t\t\tnumCombined++;\n\t\t\t\t\tif (!color) {\n\t\t\t\t\t\tcolor = data[i].color;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor (var i = 0; i < data.length; ++i) {\n\t\t\t\tvar value = data[i].data[0][1];\n\t\t\t\tif (numCombined < 2 || value / total > options.series.pie.combine.threshold) {\n\t\t\t\t\tnewdata.push(\n\t\t\t\t\t\t$.extend(data[i], {     /* extend to allow keeping all other original data values\n\t\t\t\t\t\t                           and using them e.g. in labelFormatter. */\n\t\t\t\t\t\t\tdata: [[1, value]],\n\t\t\t\t\t\t\tcolor: data[i].color,\n\t\t\t\t\t\t\tlabel: data[i].label,\n\t\t\t\t\t\t\tangle: value * Math.PI * 2 / total,\n\t\t\t\t\t\t\tpercent: value / (total / 100)\n\t\t\t\t\t\t})\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (numCombined > 1) {\n\t\t\t\tnewdata.push({\n\t\t\t\t\tdata: [[1, combined]],\n\t\t\t\t\tcolor: color,\n\t\t\t\t\tlabel: options.series.pie.combine.label,\n\t\t\t\t\tangle: combined * Math.PI * 2 / total,\n\t\t\t\t\tpercent: combined / (total / 100)\n\t\t\t\t});\n\t\t\t}\n\n\t\t\treturn newdata;\n\t\t}\n\n\t\tfunction draw(plot, newCtx) {\n\n\t\t\tif (!target) {\n\t\t\t\treturn; // if no series were passed\n\t\t\t}\n\n\t\t\tvar canvasWidth = plot.getPlaceholder().width(),\n\t\t\t\tcanvasHeight = plot.getPlaceholder().height(),\n\t\t\t\tlegendWidth = target.children().filter(\".legend\").children().width() || 0;\n\n\t\t\tctx = newCtx;\n\n\t\t\t// WARNING: HACK! REWRITE THIS CODE AS SOON AS POSSIBLE!\n\n\t\t\t// When combining smaller slices into an 'other' slice, we need to\n\t\t\t// add a new series.  Since Flot gives plugins no way to modify the\n\t\t\t// list of series, the pie plugin uses a hack where the first call\n\t\t\t// to processDatapoints results in a call to setData with the new\n\t\t\t// list of series, then subsequent processDatapoints do nothing.\n\n\t\t\t// The plugin-global 'processed' flag is used to control this hack;\n\t\t\t// it starts out false, and is set to true after the first call to\n\t\t\t// processDatapoints.\n\n\t\t\t// Unfortunately this turns future setData calls into no-ops; they\n\t\t\t// call processDatapoints, the flag is true, and nothing happens.\n\n\t\t\t// To fix this we'll set the flag back to false here in draw, when\n\t\t\t// all series have been processed, so the next sequence of calls to\n\t\t\t// processDatapoints once again starts out with a slice-combine.\n\t\t\t// This is really a hack; in 0.9 we need to give plugins a proper\n\t\t\t// way to modify series before any processing begins.\n\n\t\t\tprocessed = false;\n\n\t\t\t// calculate maximum radius and center point\n\n\t\t\tmaxRadius =  Math.min(canvasWidth, canvasHeight / options.series.pie.tilt) / 2;\n\t\t\tcenterTop = canvasHeight / 2 + options.series.pie.offset.top;\n\t\t\tcenterLeft = canvasWidth / 2;\n\n\t\t\tif (options.series.pie.offset.left == \"auto\") {\n\t\t\t\tif (options.legend.position.match(\"w\")) {\n\t\t\t\t\tcenterLeft += legendWidth / 2;\n\t\t\t\t} else {\n\t\t\t\t\tcenterLeft -= legendWidth / 2;\n\t\t\t\t}\n\t\t\t\tif (centerLeft < maxRadius) {\n\t\t\t\t\tcenterLeft = maxRadius;\n\t\t\t\t} else if (centerLeft > canvasWidth - maxRadius) {\n\t\t\t\t\tcenterLeft = canvasWidth - maxRadius;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcenterLeft += options.series.pie.offset.left;\n\t\t\t}\n\n\t\t\tvar slices = plot.getData(),\n\t\t\t\tattempts = 0;\n\n\t\t\t// Keep shrinking the pie's radius until drawPie returns true,\n\t\t\t// indicating that all the labels fit, or we try too many times.\n\n\t\t\tdo {\n\t\t\t\tif (attempts > 0) {\n\t\t\t\t\tmaxRadius *= REDRAW_SHRINK;\n\t\t\t\t}\n\t\t\t\tattempts += 1;\n\t\t\t\tclear();\n\t\t\t\tif (options.series.pie.tilt <= 0.8) {\n\t\t\t\t\tdrawShadow();\n\t\t\t\t}\n\t\t\t} while (!drawPie() && attempts < REDRAW_ATTEMPTS)\n\n\t\t\tif (attempts >= REDRAW_ATTEMPTS) {\n\t\t\t\tclear();\n\t\t\t\ttarget.prepend(\"<div class='error'>Could not draw pie with labels contained inside canvas</div>\");\n\t\t\t}\n\n\t\t\tif (plot.setSeries && plot.insertLegend) {\n\t\t\t\tplot.setSeries(slices);\n\t\t\t\tplot.insertLegend();\n\t\t\t}\n\n\t\t\t// we're actually done at this point, just defining internal functions at this point\n\n\t\t\tfunction clear() {\n\t\t\t\tctx.clearRect(0, 0, canvasWidth, canvasHeight);\n\t\t\t\ttarget.children().filter(\".pieLabel, .pieLabelBackground\").remove();\n\t\t\t}\n\n\t\t\tfunction drawShadow() {\n\n\t\t\t\tvar shadowLeft = options.series.pie.shadow.left;\n\t\t\t\tvar shadowTop = options.series.pie.shadow.top;\n\t\t\t\tvar edge = 10;\n\t\t\t\tvar alpha = options.series.pie.shadow.alpha;\n\t\t\t\tvar radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius;\n\n\t\t\t\tif (radius >= canvasWidth / 2 - shadowLeft || radius * options.series.pie.tilt >= canvasHeight / 2 - shadowTop || radius <= edge) {\n\t\t\t\t\treturn;\t// shadow would be outside canvas, so don't draw it\n\t\t\t\t}\n\n\t\t\t\tctx.save();\n\t\t\t\tctx.translate(shadowLeft,shadowTop);\n\t\t\t\tctx.globalAlpha = alpha;\n\t\t\t\tctx.fillStyle = \"#000\";\n\n\t\t\t\t// center and rotate to starting position\n\n\t\t\t\tctx.translate(centerLeft,centerTop);\n\t\t\t\tctx.scale(1, options.series.pie.tilt);\n\n\t\t\t\t//radius -= edge;\n\n\t\t\t\tfor (var i = 1; i <= edge; i++) {\n\t\t\t\t\tctx.beginPath();\n\t\t\t\t\tctx.arc(0, 0, radius, 0, Math.PI * 2, false);\n\t\t\t\t\tctx.fill();\n\t\t\t\t\tradius -= i;\n\t\t\t\t}\n\n\t\t\t\tctx.restore();\n\t\t\t}\n\n\t\t\tfunction drawPie() {\n\n\t\t\t\tvar startAngle = Math.PI * options.series.pie.startAngle;\n\t\t\t\tvar radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius;\n\n\t\t\t\t// center and rotate to starting position\n\n\t\t\t\tctx.save();\n\t\t\t\tctx.translate(centerLeft,centerTop);\n\t\t\t\tctx.scale(1, options.series.pie.tilt);\n\t\t\t\t//ctx.rotate(startAngle); // start at top; -- This doesn't work properly in Opera\n\n\t\t\t\t// draw slices\n\n\t\t\t\tctx.save();\n\t\t\t\tvar currentAngle = startAngle;\n\t\t\t\tfor (var i = 0; i < slices.length; ++i) {\n\t\t\t\t\tslices[i].startAngle = currentAngle;\n\t\t\t\t\tdrawSlice(slices[i].angle, slices[i].color, true);\n\t\t\t\t}\n\t\t\t\tctx.restore();\n\n\t\t\t\t// draw slice outlines\n\n\t\t\t\tif (options.series.pie.stroke.width > 0) {\n\t\t\t\t\tctx.save();\n\t\t\t\t\tctx.lineWidth = options.series.pie.stroke.width;\n\t\t\t\t\tcurrentAngle = startAngle;\n\t\t\t\t\tfor (var i = 0; i < slices.length; ++i) {\n\t\t\t\t\t\tdrawSlice(slices[i].angle, options.series.pie.stroke.color, false);\n\t\t\t\t\t}\n\t\t\t\t\tctx.restore();\n\t\t\t\t}\n\n\t\t\t\t// draw donut hole\n\n\t\t\t\tdrawDonutHole(ctx);\n\n\t\t\t\tctx.restore();\n\n\t\t\t\t// Draw the labels, returning true if they fit within the plot\n\n\t\t\t\tif (options.series.pie.label.show) {\n\t\t\t\t\treturn drawLabels();\n\t\t\t\t} else return true;\n\n\t\t\t\tfunction drawSlice(angle, color, fill) {\n\n\t\t\t\t\tif (angle <= 0 || isNaN(angle)) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (fill) {\n\t\t\t\t\t\tctx.fillStyle = color;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tctx.strokeStyle = color;\n\t\t\t\t\t\tctx.lineJoin = \"round\";\n\t\t\t\t\t}\n\n\t\t\t\t\tctx.beginPath();\n\t\t\t\t\tif (Math.abs(angle - Math.PI * 2) > 0.000000001) {\n\t\t\t\t\t\tctx.moveTo(0, 0); // Center of the pie\n\t\t\t\t\t}\n\n\t\t\t\t\t//ctx.arc(0, 0, radius, 0, angle, false); // This doesn't work properly in Opera\n\t\t\t\t\tctx.arc(0, 0, radius,currentAngle, currentAngle + angle / 2, false);\n\t\t\t\t\tctx.arc(0, 0, radius,currentAngle + angle / 2, currentAngle + angle, false);\n\t\t\t\t\tctx.closePath();\n\t\t\t\t\t//ctx.rotate(angle); // This doesn't work properly in Opera\n\t\t\t\t\tcurrentAngle += angle;\n\n\t\t\t\t\tif (fill) {\n\t\t\t\t\t\tctx.fill();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tctx.stroke();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tfunction drawLabels() {\n\n\t\t\t\t\tvar currentAngle = startAngle;\n\t\t\t\t\tvar radius = options.series.pie.label.radius > 1 ? options.series.pie.label.radius : maxRadius * options.series.pie.label.radius;\n\n\t\t\t\t\tfor (var i = 0; i < slices.length; ++i) {\n\t\t\t\t\t\tif (slices[i].percent >= options.series.pie.label.threshold * 100) {\n\t\t\t\t\t\t\tif (!drawLabel(slices[i], currentAngle, i)) {\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcurrentAngle += slices[i].angle;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn true;\n\n\t\t\t\t\tfunction drawLabel(slice, startAngle, index) {\n\n\t\t\t\t\t\tif (slice.data[0][1] == 0) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// format label text\n\n\t\t\t\t\t\tvar lf = options.legend.labelFormatter, text, plf = options.series.pie.label.formatter;\n\n\t\t\t\t\t\tif (lf) {\n\t\t\t\t\t\t\ttext = lf(slice.label, slice);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\ttext = slice.label;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (plf) {\n\t\t\t\t\t\t\ttext = plf(text, slice);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvar halfAngle = ((startAngle + slice.angle) + startAngle) / 2;\n\t\t\t\t\t\tvar x = centerLeft + Math.round(Math.cos(halfAngle) * radius);\n\t\t\t\t\t\tvar y = centerTop + Math.round(Math.sin(halfAngle) * radius) * options.series.pie.tilt;\n\n\t\t\t\t\t\tvar html = \"<span class='pieLabel' id='pieLabel\" + index + \"' style='position:absolute;top:\" + y + \"px;left:\" + x + \"px;'>\" + text + \"</span>\";\n\t\t\t\t\t\ttarget.append(html);\n\n\t\t\t\t\t\tvar label = target.children(\"#pieLabel\" + index);\n\t\t\t\t\t\tvar labelTop = (y - label.height() / 2);\n\t\t\t\t\t\tvar labelLeft = (x - label.width() / 2);\n\n\t\t\t\t\t\tlabel.css(\"top\", labelTop);\n\t\t\t\t\t\tlabel.css(\"left\", labelLeft);\n\n\t\t\t\t\t\t// check to make sure that the label is not outside the canvas\n\n\t\t\t\t\t\tif (0 - labelTop > 0 || 0 - labelLeft > 0 || canvasHeight - (labelTop + label.height()) < 0 || canvasWidth - (labelLeft + label.width()) < 0) {\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif (options.series.pie.label.background.opacity != 0) {\n\n\t\t\t\t\t\t\t// put in the transparent background separately to avoid blended labels and label boxes\n\n\t\t\t\t\t\t\tvar c = options.series.pie.label.background.color;\n\n\t\t\t\t\t\t\tif (c == null) {\n\t\t\t\t\t\t\t\tc = slice.color;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tvar pos = \"top:\" + labelTop + \"px;left:\" + labelLeft + \"px;\";\n\t\t\t\t\t\t\t$(\"<div class='pieLabelBackground' style='position:absolute;width:\" + label.width() + \"px;height:\" + label.height() + \"px;\" + pos + \"background-color:\" + c + \";'></div>\")\n\t\t\t\t\t\t\t\t.css(\"opacity\", options.series.pie.label.background.opacity)\n\t\t\t\t\t\t\t\t.insertBefore(label);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t} // end individual label function\n\t\t\t\t} // end drawLabels function\n\t\t\t} // end drawPie function\n\t\t} // end draw function\n\n\t\t// Placed here because it needs to be accessed from multiple locations\n\n\t\tfunction drawDonutHole(layer) {\n\t\t\tif (options.series.pie.innerRadius > 0) {\n\n\t\t\t\t// subtract the center\n\n\t\t\t\tlayer.save();\n\t\t\t\tvar innerRadius = options.series.pie.innerRadius > 1 ? options.series.pie.innerRadius : maxRadius * options.series.pie.innerRadius;\n\t\t\t\tlayer.globalCompositeOperation = \"destination-out\"; // this does not work with excanvas, but it will fall back to using the stroke color\n\t\t\t\tlayer.beginPath();\n\t\t\t\tlayer.fillStyle = options.series.pie.stroke.color;\n\t\t\t\tlayer.arc(0, 0, innerRadius, 0, Math.PI * 2, false);\n\t\t\t\tlayer.fill();\n\t\t\t\tlayer.closePath();\n\t\t\t\tlayer.restore();\n\n\t\t\t\t// add inner stroke\n\n\t\t\t\tlayer.save();\n\t\t\t\tlayer.beginPath();\n\t\t\t\tlayer.strokeStyle = options.series.pie.stroke.color;\n\t\t\t\tlayer.arc(0, 0, innerRadius, 0, Math.PI * 2, false);\n\t\t\t\tlayer.stroke();\n\t\t\t\tlayer.closePath();\n\t\t\t\tlayer.restore();\n\n\t\t\t\t// TODO: add extra shadow inside hole (with a mask) if the pie is tilted.\n\t\t\t}\n\t\t}\n\n\t\t//-- Additional Interactive related functions --\n\n\t\tfunction isPointInPoly(poly, pt) {\n\t\t\tfor(var c = false, i = -1, l = poly.length, j = l - 1; ++i < l; j = i)\n\t\t\t\t((poly[i][1] <= pt[1] && pt[1] < poly[j][1]) || (poly[j][1] <= pt[1] && pt[1]< poly[i][1]))\n\t\t\t\t&& (pt[0] < (poly[j][0] - poly[i][0]) * (pt[1] - poly[i][1]) / (poly[j][1] - poly[i][1]) + poly[i][0])\n\t\t\t\t&& (c = !c);\n\t\t\treturn c;\n\t\t}\n\n\t\tfunction findNearbySlice(mouseX, mouseY) {\n\n\t\t\tvar slices = plot.getData(),\n\t\t\t\toptions = plot.getOptions(),\n\t\t\t\tradius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius,\n\t\t\t\tx, y;\n\n\t\t\tfor (var i = 0; i < slices.length; ++i) {\n\n\t\t\t\tvar s = slices[i];\n\n\t\t\t\tif (s.pie.show) {\n\n\t\t\t\t\tctx.save();\n\t\t\t\t\tctx.beginPath();\n\t\t\t\t\tctx.moveTo(0, 0); // Center of the pie\n\t\t\t\t\t//ctx.scale(1, options.series.pie.tilt);\t// this actually seems to break everything when here.\n\t\t\t\t\tctx.arc(0, 0, radius, s.startAngle, s.startAngle + s.angle / 2, false);\n\t\t\t\t\tctx.arc(0, 0, radius, s.startAngle + s.angle / 2, s.startAngle + s.angle, false);\n\t\t\t\t\tctx.closePath();\n\t\t\t\t\tx = mouseX - centerLeft;\n\t\t\t\t\ty = mouseY - centerTop;\n\n\t\t\t\t\tif (ctx.isPointInPath) {\n\t\t\t\t\t\tif (ctx.isPointInPath(mouseX - centerLeft, mouseY - centerTop)) {\n\t\t\t\t\t\t\tctx.restore();\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tdatapoint: [s.percent, s.data],\n\t\t\t\t\t\t\t\tdataIndex: 0,\n\t\t\t\t\t\t\t\tseries: s,\n\t\t\t\t\t\t\t\tseriesIndex: i\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// excanvas for IE doesn;t support isPointInPath, this is a workaround.\n\n\t\t\t\t\t\tvar p1X = radius * Math.cos(s.startAngle),\n\t\t\t\t\t\t\tp1Y = radius * Math.sin(s.startAngle),\n\t\t\t\t\t\t\tp2X = radius * Math.cos(s.startAngle + s.angle / 4),\n\t\t\t\t\t\t\tp2Y = radius * Math.sin(s.startAngle + s.angle / 4),\n\t\t\t\t\t\t\tp3X = radius * Math.cos(s.startAngle + s.angle / 2),\n\t\t\t\t\t\t\tp3Y = radius * Math.sin(s.startAngle + s.angle / 2),\n\t\t\t\t\t\t\tp4X = radius * Math.cos(s.startAngle + s.angle / 1.5),\n\t\t\t\t\t\t\tp4Y = radius * Math.sin(s.startAngle + s.angle / 1.5),\n\t\t\t\t\t\t\tp5X = radius * Math.cos(s.startAngle + s.angle),\n\t\t\t\t\t\t\tp5Y = radius * Math.sin(s.startAngle + s.angle),\n\t\t\t\t\t\t\tarrPoly = [[0, 0], [p1X, p1Y], [p2X, p2Y], [p3X, p3Y], [p4X, p4Y], [p5X, p5Y]],\n\t\t\t\t\t\t\tarrPoint = [x, y];\n\n\t\t\t\t\t\t// TODO: perhaps do some mathmatical trickery here with the Y-coordinate to compensate for pie tilt?\n\n\t\t\t\t\t\tif (isPointInPoly(arrPoly, arrPoint)) {\n\t\t\t\t\t\t\tctx.restore();\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tdatapoint: [s.percent, s.data],\n\t\t\t\t\t\t\t\tdataIndex: 0,\n\t\t\t\t\t\t\t\tseries: s,\n\t\t\t\t\t\t\t\tseriesIndex: i\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tctx.restore();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn null;\n\t\t}\n\n\t\tfunction onMouseMove(e) {\n\t\t\ttriggerClickHoverEvent(\"plothover\", e);\n\t\t}\n\n\t\tfunction onClick(e) {\n\t\t\ttriggerClickHoverEvent(\"plotclick\", e);\n\t\t}\n\n\t\t// trigger click or hover event (they send the same parameters so we share their code)\n\n\t\tfunction triggerClickHoverEvent(eventname, e) {\n\n\t\t\tvar offset = plot.offset();\n\t\t\tvar canvasX = parseInt(e.pageX - offset.left);\n\t\t\tvar canvasY =  parseInt(e.pageY - offset.top);\n\t\t\tvar item = findNearbySlice(canvasX, canvasY);\n\n\t\t\tif (options.grid.autoHighlight) {\n\n\t\t\t\t// clear auto-highlights\n\n\t\t\t\tfor (var i = 0; i < highlights.length; ++i) {\n\t\t\t\t\tvar h = highlights[i];\n\t\t\t\t\tif (h.auto == eventname && !(item && h.series == item.series)) {\n\t\t\t\t\t\tunhighlight(h.series);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// highlight the slice\n\n\t\t\tif (item) {\n\t\t\t\thighlight(item.series, eventname);\n\t\t\t}\n\n\t\t\t// trigger any hover bind events\n\n\t\t\tvar pos = { pageX: e.pageX, pageY: e.pageY };\n\t\t\ttarget.trigger(eventname, [pos, item]);\n\t\t}\n\n\t\tfunction highlight(s, auto) {\n\t\t\t//if (typeof s == \"number\") {\n\t\t\t//\ts = series[s];\n\t\t\t//}\n\n\t\t\tvar i = indexOfHighlight(s);\n\n\t\t\tif (i == -1) {\n\t\t\t\thighlights.push({ series: s, auto: auto });\n\t\t\t\tplot.triggerRedrawOverlay();\n\t\t\t} else if (!auto) {\n\t\t\t\thighlights[i].auto = false;\n\t\t\t}\n\t\t}\n\n\t\tfunction unhighlight(s) {\n\t\t\tif (s == null) {\n\t\t\t\thighlights = [];\n\t\t\t\tplot.triggerRedrawOverlay();\n\t\t\t}\n\n\t\t\t//if (typeof s == \"number\") {\n\t\t\t//\ts = series[s];\n\t\t\t//}\n\n\t\t\tvar i = indexOfHighlight(s);\n\n\t\t\tif (i != -1) {\n\t\t\t\thighlights.splice(i, 1);\n\t\t\t\tplot.triggerRedrawOverlay();\n\t\t\t}\n\t\t}\n\n\t\tfunction indexOfHighlight(s) {\n\t\t\tfor (var i = 0; i < highlights.length; ++i) {\n\t\t\t\tvar h = highlights[i];\n\t\t\t\tif (h.series == s)\n\t\t\t\t\treturn i;\n\t\t\t}\n\t\t\treturn -1;\n\t\t}\n\n\t\tfunction drawOverlay(plot, octx) {\n\n\t\t\tvar options = plot.getOptions();\n\n\t\t\tvar radius = options.series.pie.radius > 1 ? options.series.pie.radius : maxRadius * options.series.pie.radius;\n\n\t\t\toctx.save();\n\t\t\toctx.translate(centerLeft, centerTop);\n\t\t\toctx.scale(1, options.series.pie.tilt);\n\n\t\t\tfor (var i = 0; i < highlights.length; ++i) {\n\t\t\t\tdrawHighlight(highlights[i].series);\n\t\t\t}\n\n\t\t\tdrawDonutHole(octx);\n\n\t\t\toctx.restore();\n\n\t\t\tfunction drawHighlight(series) {\n\n\t\t\t\tif (series.angle <= 0 || isNaN(series.angle)) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t//octx.fillStyle = parseColor(options.series.pie.highlight.color).scale(null, null, null, options.series.pie.highlight.opacity).toString();\n\t\t\t\toctx.fillStyle = \"rgba(255, 255, 255, \" + options.series.pie.highlight.opacity + \")\"; // this is temporary until we have access to parseColor\n\t\t\t\toctx.beginPath();\n\t\t\t\tif (Math.abs(series.angle - Math.PI * 2) > 0.000000001) {\n\t\t\t\t\toctx.moveTo(0, 0); // Center of the pie\n\t\t\t\t}\n\t\t\t\toctx.arc(0, 0, radius, series.startAngle, series.startAngle + series.angle / 2, false);\n\t\t\t\toctx.arc(0, 0, radius, series.startAngle + series.angle / 2, series.startAngle + series.angle, false);\n\t\t\t\toctx.closePath();\n\t\t\t\toctx.fill();\n\t\t\t}\n\t\t}\n\t} // end init (plugin body)\n\n\t// define pie specific options and their default values\n\n\tvar options = {\n\t\tseries: {\n\t\t\tpie: {\n\t\t\t\tshow: false,\n\t\t\t\tradius: \"auto\",\t// actual radius of the visible pie (based on full calculated radius if <=1, or hard pixel value)\n\t\t\t\tinnerRadius: 0, /* for donut */\n\t\t\t\tstartAngle: 3/2,\n\t\t\t\ttilt: 1,\n\t\t\t\tshadow: {\n\t\t\t\t\tleft: 5,\t// shadow left offset\n\t\t\t\t\ttop: 15,\t// shadow top offset\n\t\t\t\t\talpha: 0.02\t// shadow alpha\n\t\t\t\t},\n\t\t\t\toffset: {\n\t\t\t\t\ttop: 0,\n\t\t\t\t\tleft: \"auto\"\n\t\t\t\t},\n\t\t\t\tstroke: {\n\t\t\t\t\tcolor: \"#fff\",\n\t\t\t\t\twidth: 1\n\t\t\t\t},\n\t\t\t\tlabel: {\n\t\t\t\t\tshow: \"auto\",\n\t\t\t\t\tformatter: function(label, slice) {\n\t\t\t\t\t\treturn \"<div style='font-size:x-small;text-align:center;padding:2px;color:\" + slice.color + \";'>\" + label + \"<br/>\" + Math.round(slice.percent) + \"%</div>\";\n\t\t\t\t\t},\t// formatter function\n\t\t\t\t\tradius: 1,\t// radius at which to place the labels (based on full calculated radius if <=1, or hard pixel value)\n\t\t\t\t\tbackground: {\n\t\t\t\t\t\tcolor: null,\n\t\t\t\t\t\topacity: 0\n\t\t\t\t\t},\n\t\t\t\t\tthreshold: 0\t// percentage at which to hide the label (i.e. the slice is too narrow)\n\t\t\t\t},\n\t\t\t\tcombine: {\n\t\t\t\t\tthreshold: -1,\t// percentage at which to combine little slices into one larger slice\n\t\t\t\t\tcolor: null,\t// color to give the new slice (auto-generated if null)\n\t\t\t\t\tlabel: \"Other\"\t// label to give the new slice\n\t\t\t\t},\n\t\t\t\thighlight: {\n\t\t\t\t\t//color: \"#fff\",\t\t// will add this functionality once parseColor is available\n\t\t\t\t\topacity: 0.5\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\t$.plot.plugins.push({\n\t\tinit: init,\n\t\toptions: options,\n\t\tname: \"pie\",\n\t\tversion: \"1.1\"\n\t});\n\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/flot/jquery.flot.resize.js",
    "content": "/* Flot plugin for automatically redrawing plots as the placeholder resizes.\n\nCopyright (c) 2007-2014 IOLA and Ole Laursen.\nLicensed under the MIT license.\n\nIt works by listening for changes on the placeholder div (through the jQuery\nresize event plugin) - if the size changes, it will redraw the plot.\n\nThere are no options. If you need to disable the plugin for some plots, you\ncan just fix the size of their placeholders.\n\n*/\n\n/* Inline dependency:\n * jQuery resize event - v1.1 - 3/14/2010\n * http://benalman.com/projects/jquery-resize-plugin/\n *\n * Copyright (c) 2010 \"Cowboy\" Ben Alman\n * Dual licensed under the MIT and GPL licenses.\n * http://benalman.com/about/license/\n */\n(function($,e,t){\"$:nomunge\";var i=[],n=$.resize=$.extend($.resize,{}),a,r=false,s=\"setTimeout\",u=\"resize\",m=u+\"-special-event\",o=\"pendingDelay\",l=\"activeDelay\",f=\"throttleWindow\";n[o]=200;n[l]=20;n[f]=true;$.event.special[u]={setup:function(){if(!n[f]&&this[s]){return false}var e=$(this);i.push(this);e.data(m,{w:e.width(),h:e.height()});if(i.length===1){a=t;h()}},teardown:function(){if(!n[f]&&this[s]){return false}var e=$(this);for(var t=i.length-1;t>=0;t--){if(i[t]==this){i.splice(t,1);break}}e.removeData(m);if(!i.length){if(r){cancelAnimationFrame(a)}else{clearTimeout(a)}a=null}},add:function(e){if(!n[f]&&this[s]){return false}var i;function a(e,n,a){var r=$(this),s=r.data(m)||{};s.w=n!==t?n:r.width();s.h=a!==t?a:r.height();i.apply(this,arguments)}if($.isFunction(e)){i=e;return a}else{i=e.handler;e.handler=a}}};function h(t){if(r===true){r=t||1}for(var s=i.length-1;s>=0;s--){var l=$(i[s]);if(l[0]==e||l.is(\":visible\")){var f=l.width(),c=l.height(),d=l.data(m);if(d&&(f!==d.w||c!==d.h)){l.trigger(u,[d.w=f,d.h=c]);r=t||true}}else{d=l.data(m);d.w=0;d.h=0}}if(a!==null){if(r&&(t==null||t-r<1e3)){a=e.requestAnimationFrame(h)}else{a=setTimeout(h,n[o]);r=false}}}if(!e.requestAnimationFrame){e.requestAnimationFrame=function(){return e.webkitRequestAnimationFrame||e.mozRequestAnimationFrame||e.oRequestAnimationFrame||e.msRequestAnimationFrame||function(t,i){return e.setTimeout(function(){t((new Date).getTime())},n[l])}}()}if(!e.cancelAnimationFrame){e.cancelAnimationFrame=function(){return e.webkitCancelRequestAnimationFrame||e.mozCancelRequestAnimationFrame||e.oCancelRequestAnimationFrame||e.msCancelRequestAnimationFrame||clearTimeout}()}})(jQuery,this);\n\n(function ($) {\n    var options = { }; // no options\n\n    function init(plot) {\n        function onResize() {\n            var placeholder = plot.getPlaceholder();\n\n            // somebody might have hidden us and we can't plot\n            // when we don't have the dimensions\n            if (placeholder.width() == 0 || placeholder.height() == 0)\n                return;\n\n            plot.resize();\n            plot.setupGrid();\n            plot.draw();\n        }\n        \n        function bindEvents(plot, eventHolder) {\n            plot.getPlaceholder().resize(onResize);\n        }\n\n        function shutdown(plot, eventHolder) {\n            plot.getPlaceholder().unbind(\"resize\", onResize);\n        }\n        \n        plot.hooks.bindEvents.push(bindEvents);\n        plot.hooks.shutdown.push(shutdown);\n    }\n    \n    $.plot.plugins.push({\n        init: init,\n        options: options,\n        name: 'resize',\n        version: '1.0'\n    });\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/flot/jquery.flot.spline.js",
    "content": "/**\n * Flot plugin that provides spline interpolation for line graphs\n * author: Alex Bardas < alex.bardas@gmail.com >\n * modified by: Avi Kohn https://github.com/AMKohn\n * based on the spline interpolation described at:\n *\t\t http://scaledinnovation.com/analytics/splines/aboutSplines.html\n *\n * Example usage: (add in plot options series object)\n *\t\tfor linespline:\n *\t\t\tseries: {\n *\t\t\t\t...\n *\t\t\t\tlines: {\n *\t\t\t\t\tshow: false\n *\t\t\t\t},\n *\t\t\t\tsplines: {\n *\t\t\t\t\tshow: true,\n *\t\t\t\t\ttension: x, (float between 0 and 1, defaults to 0.5),\n *\t\t\t\t\tlineWidth: y (number, defaults to 2),\n *\t\t\t\t\tfill: z (float between 0 .. 1 or false, as in flot documentation)\n *\t\t\t\t},\n *\t\t\t\t...\n *\t\t\t}\n *\t\tareaspline:\n *\t\t\tseries: {\n *\t\t\t\t...\n *\t\t\t\tlines: {\n *\t\t\t\t\tshow: true,\n *\t\t\t\t\tlineWidth: 0, (line drawing will not execute)\n *\t\t\t\t\tfill: x, (float between 0 .. 1, as in flot documentation)\n *\t\t\t\t\t...\n *\t\t\t\t},\n *\t\t\t\tsplines: {\n *\t\t\t\t\tshow: true,\n *\t\t\t\t\ttension: 0.5 (float between 0 and 1)\n *\t\t\t\t},\n *\t\t\t\t...\n *\t\t\t}\n *\n */\n\n(function($) {\n    'use strict'\n\n    /**\n     * @param {Number} x0, y0, x1, y1: coordinates of the end (knot) points of the segment\n     * @param {Number} x2, y2: the next knot (not connected, but needed to calculate p2)\n     * @param {Number} tension: control how far the control points spread\n     * @return {Array}: p1 -> control point, from x1 back toward x0\n     * \t\t\t\t\tp2 -> the next control point, returned to become the next segment's p1\n     *\n     * @api private\n     */\n    function getControlPoints(x0, y0, x1, y1, x2, y2, tension) {\n\n        var pow = Math.pow,\n            sqrt = Math.sqrt,\n            d01, d12, fa, fb, p1x, p1y, p2x, p2y;\n\n        //  Scaling factors: distances from this knot to the previous and following knots.\n        d01 = sqrt(pow(x1 - x0, 2) + pow(y1 - y0, 2));\n        d12 = sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2));\n\n        fa = tension * d01 / (d01 + d12);\n        fb = tension - fa;\n\n        p1x = x1 + fa * (x0 - x2);\n        p1y = y1 + fa * (y0 - y2);\n\n        p2x = x1 - fb * (x0 - x2);\n        p2y = y1 - fb * (y0 - y2);\n\n        return [p1x, p1y, p2x, p2y];\n    }\n\n    var line = [];\n\n    function drawLine(points, ctx, height, fill, seriesColor) {\n        var c = $.color.parse(seriesColor);\n\n        c.a = typeof fill == \"number\" ? fill : .3;\n        c.normalize();\n        c = c.toString();\n\n        ctx.beginPath();\n        ctx.moveTo(points[0][0], points[0][1]);\n\n        var plength = points.length;\n\n        for (var i = 0; i < plength; i++) {\n            ctx[points[i][3]].apply(ctx, points[i][2]);\n        }\n\n        ctx.stroke();\n\n        ctx.lineWidth = 0;\n        ctx.lineTo(points[plength - 1][0], height);\n        ctx.lineTo(points[0][0], height);\n\n        ctx.closePath();\n\n        if (fill !== false) {\n            ctx.fillStyle = c;\n            ctx.fill();\n        }\n    }\n\n    /**\n     * @param {Object} ctx: canvas context\n     * @param {String} type: accepted strings: 'bezier' or 'quadratic' (defaults to quadratic)\n     * @param {Array} points: 2 points for which to draw the interpolation\n     * @param {Array} cpoints: control points for those segment points\n     *\n     * @api private\n     */\n    function queue(ctx, type, points, cpoints) {\n        if (type === void 0 || (type !== 'bezier' && type !== 'quadratic')) {\n            type = 'quadratic';\n        }\n        type = type + 'CurveTo';\n\n        if (line.length == 0) line.push([points[0], points[1], cpoints.concat(points.slice(2)), type]);\n        else if (type == \"quadraticCurveTo\" && points.length == 2) {\n            cpoints = cpoints.slice(0, 2).concat(points);\n\n            line.push([points[0], points[1], cpoints, type]);\n        }\n        else line.push([points[2], points[3], cpoints.concat(points.slice(2)), type]);\n    }\n\n    /**\n     * @param {Object} plot\n     * @param {Object} ctx: canvas context\n     * @param {Object} series\n     *\n     * @api private\n     */\n\n    function drawSpline(plot, ctx, series) {\n        // Not interested if spline is not requested\n        if (series.splines.show !== true) {\n            return;\n        }\n\n        var cp = [],\n        // array of control points\n            tension = series.splines.tension || 0.5,\n            idx, x, y, points = series.datapoints.points,\n            ps = series.datapoints.pointsize,\n            plotOffset = plot.getPlotOffset(),\n            len = points.length,\n            pts = [];\n\n        line = [];\n\n        // Cannot display a linespline/areaspline if there are less than 3 points\n        if (len / ps < 4) {\n            $.extend(series.lines, series.splines);\n            return;\n        }\n\n        for (idx = 0; idx < len; idx += ps) {\n            x = points[idx];\n            y = points[idx + 1];\n            if (x == null || x < series.xaxis.min || x > series.xaxis.max || y < series.yaxis.min || y > series.yaxis.max) {\n                continue;\n            }\n\n            pts.push(series.xaxis.p2c(x) + plotOffset.left, series.yaxis.p2c(y) + plotOffset.top);\n        }\n\n        len = pts.length;\n\n        // Draw an open curve, not connected at the ends\n        for (idx = 0; idx < len - 2; idx += 2) {\n            cp = cp.concat(getControlPoints.apply(this, pts.slice(idx, idx + 6).concat([tension])));\n        }\n\n        ctx.save();\n        ctx.strokeStyle = series.color;\n        ctx.lineWidth = series.splines.lineWidth;\n\n        queue(ctx, 'quadratic', pts.slice(0, 4), cp.slice(0, 2));\n\n        for (idx = 2; idx < len - 3; idx += 2) {\n            queue(ctx, 'bezier', pts.slice(idx, idx + 4), cp.slice(2 * idx - 2, 2 * idx + 2));\n        }\n\n        queue(ctx, 'quadratic', pts.slice(len - 2, len), [cp[2 * len - 10], cp[2 * len - 9], pts[len - 4], pts[len - 3]]);\n\n        drawLine(line, ctx, plot.height() + 10, series.splines.fill, series.color);\n\n        ctx.restore();\n    }\n\n    $.plot.plugins.push({\n        init: function(plot) {\n            plot.hooks.drawSeries.push(drawSpline);\n        },\n        options: {\n            series: {\n                splines: {\n                    show: false,\n                    lineWidth: 2,\n                    tension: 0.5,\n                    fill: false\n                }\n            }\n        },\n        name: 'spline',\n        version: '0.8.2'\n    });\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/flot/jquery.flot.symbol.js",
    "content": "/* Flot plugin that adds some extra symbols for plotting points.\n\nCopyright (c) 2007-2014 IOLA and Ole Laursen.\nLicensed under the MIT license.\n\nThe symbols are accessed as strings through the standard symbol options:\n\n\tseries: {\n\t\tpoints: {\n\t\t\tsymbol: \"square\" // or \"diamond\", \"triangle\", \"cross\"\n\t\t}\n\t}\n\n*/\n\n(function ($) {\n    function processRawData(plot, series, datapoints) {\n        // we normalize the area of each symbol so it is approximately the\n        // same as a circle of the given radius\n\n        var handlers = {\n            square: function (ctx, x, y, radius, shadow) {\n                // pi * r^2 = (2s)^2  =>  s = r * sqrt(pi)/2\n                var size = radius * Math.sqrt(Math.PI) / 2;\n                ctx.rect(x - size, y - size, size + size, size + size);\n            },\n            diamond: function (ctx, x, y, radius, shadow) {\n                // pi * r^2 = 2s^2  =>  s = r * sqrt(pi/2)\n                var size = radius * Math.sqrt(Math.PI / 2);\n                ctx.moveTo(x - size, y);\n                ctx.lineTo(x, y - size);\n                ctx.lineTo(x + size, y);\n                ctx.lineTo(x, y + size);\n                ctx.lineTo(x - size, y);\n            },\n            triangle: function (ctx, x, y, radius, shadow) {\n                // pi * r^2 = 1/2 * s^2 * sin (pi / 3)  =>  s = r * sqrt(2 * pi / sin(pi / 3))\n                var size = radius * Math.sqrt(2 * Math.PI / Math.sin(Math.PI / 3));\n                var height = size * Math.sin(Math.PI / 3);\n                ctx.moveTo(x - size/2, y + height/2);\n                ctx.lineTo(x + size/2, y + height/2);\n                if (!shadow) {\n                    ctx.lineTo(x, y - height/2);\n                    ctx.lineTo(x - size/2, y + height/2);\n                }\n            },\n            cross: function (ctx, x, y, radius, shadow) {\n                // pi * r^2 = (2s)^2  =>  s = r * sqrt(pi)/2\n                var size = radius * Math.sqrt(Math.PI) / 2;\n                ctx.moveTo(x - size, y - size);\n                ctx.lineTo(x + size, y + size);\n                ctx.moveTo(x - size, y + size);\n                ctx.lineTo(x + size, y - size);\n            }\n        };\n\n        var s = series.points.symbol;\n        if (handlers[s])\n            series.points.symbol = handlers[s];\n    }\n    \n    function init(plot) {\n        plot.hooks.processDatapoints.push(processRawData);\n    }\n    \n    $.plot.plugins.push({\n        init: init,\n        name: 'symbols',\n        version: '1.0'\n    });\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/flot/jquery.flot.time.js",
    "content": "/* Pretty handling of time axes.\n\nCopyright (c) 2007-2014 IOLA and Ole Laursen.\nLicensed under the MIT license.\n\nSet axis.mode to \"time\" to enable. See the section \"Time series data\" in\nAPI.txt for details.\n\n*/\n\n(function($) {\n\n\tvar options = {\n\t\txaxis: {\n\t\t\ttimezone: null,\t\t// \"browser\" for local to the client or timezone for timezone-js\n\t\t\ttimeformat: null,\t// format string to use\n\t\t\ttwelveHourClock: false,\t// 12 or 24 time in time mode\n\t\t\tmonthNames: null\t// list of names of months\n\t\t}\n\t};\n\n\t// round to nearby lower multiple of base\n\n\tfunction floorInBase(n, base) {\n\t\treturn base * Math.floor(n / base);\n\t}\n\n\t// Returns a string with the date d formatted according to fmt.\n\t// A subset of the Open Group's strftime format is supported.\n\n\tfunction formatDate(d, fmt, monthNames, dayNames) {\n\n\t\tif (typeof d.strftime == \"function\") {\n\t\t\treturn d.strftime(fmt);\n\t\t}\n\n\t\tvar leftPad = function(n, pad) {\n\t\t\tn = \"\" + n;\n\t\t\tpad = \"\" + (pad == null ? \"0\" : pad);\n\t\t\treturn n.length == 1 ? pad + n : n;\n\t\t};\n\n\t\tvar r = [];\n\t\tvar escape = false;\n\t\tvar hours = d.getHours();\n\t\tvar isAM = hours < 12;\n\n\t\tif (monthNames == null) {\n\t\t\tmonthNames = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"];\n\t\t}\n\n\t\tif (dayNames == null) {\n\t\t\tdayNames = [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"];\n\t\t}\n\n\t\tvar hours12;\n\n\t\tif (hours > 12) {\n\t\t\thours12 = hours - 12;\n\t\t} else if (hours == 0) {\n\t\t\thours12 = 12;\n\t\t} else {\n\t\t\thours12 = hours;\n\t\t}\n\n\t\tfor (var i = 0; i < fmt.length; ++i) {\n\n\t\t\tvar c = fmt.charAt(i);\n\n\t\t\tif (escape) {\n\t\t\t\tswitch (c) {\n\t\t\t\t\tcase 'a': c = \"\" + dayNames[d.getDay()]; break;\n\t\t\t\t\tcase 'b': c = \"\" + monthNames[d.getMonth()]; break;\n\t\t\t\t\tcase 'd': c = leftPad(d.getDate()); break;\n\t\t\t\t\tcase 'e': c = leftPad(d.getDate(), \" \"); break;\n\t\t\t\t\tcase 'h':\t// For back-compat with 0.7; remove in 1.0\n\t\t\t\t\tcase 'H': c = leftPad(hours); break;\n\t\t\t\t\tcase 'I': c = leftPad(hours12); break;\n\t\t\t\t\tcase 'l': c = leftPad(hours12, \" \"); break;\n\t\t\t\t\tcase 'm': c = leftPad(d.getMonth() + 1); break;\n\t\t\t\t\tcase 'M': c = leftPad(d.getMinutes()); break;\n\t\t\t\t\t// quarters not in Open Group's strftime specification\n\t\t\t\t\tcase 'q':\n\t\t\t\t\t\tc = \"\" + (Math.floor(d.getMonth() / 3) + 1); break;\n\t\t\t\t\tcase 'S': c = leftPad(d.getSeconds()); break;\n\t\t\t\t\tcase 'y': c = leftPad(d.getFullYear() % 100); break;\n\t\t\t\t\tcase 'Y': c = \"\" + d.getFullYear(); break;\n\t\t\t\t\tcase 'p': c = (isAM) ? (\"\" + \"am\") : (\"\" + \"pm\"); break;\n\t\t\t\t\tcase 'P': c = (isAM) ? (\"\" + \"AM\") : (\"\" + \"PM\"); break;\n\t\t\t\t\tcase 'w': c = \"\" + d.getDay(); break;\n\t\t\t\t}\n\t\t\t\tr.push(c);\n\t\t\t\tescape = false;\n\t\t\t} else {\n\t\t\t\tif (c == \"%\") {\n\t\t\t\t\tescape = true;\n\t\t\t\t} else {\n\t\t\t\t\tr.push(c);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn r.join(\"\");\n\t}\n\n\t// To have a consistent view of time-based data independent of which time\n\t// zone the client happens to be in we need a date-like object independent\n\t// of time zones.  This is done through a wrapper that only calls the UTC\n\t// versions of the accessor methods.\n\n\tfunction makeUtcWrapper(d) {\n\n\t\tfunction addProxyMethod(sourceObj, sourceMethod, targetObj, targetMethod) {\n\t\t\tsourceObj[sourceMethod] = function() {\n\t\t\t\treturn targetObj[targetMethod].apply(targetObj, arguments);\n\t\t\t};\n\t\t};\n\n\t\tvar utc = {\n\t\t\tdate: d\n\t\t};\n\n\t\t// support strftime, if found\n\n\t\tif (d.strftime != undefined) {\n\t\t\taddProxyMethod(utc, \"strftime\", d, \"strftime\");\n\t\t}\n\n\t\taddProxyMethod(utc, \"getTime\", d, \"getTime\");\n\t\taddProxyMethod(utc, \"setTime\", d, \"setTime\");\n\n\t\tvar props = [\"Date\", \"Day\", \"FullYear\", \"Hours\", \"Milliseconds\", \"Minutes\", \"Month\", \"Seconds\"];\n\n\t\tfor (var p = 0; p < props.length; p++) {\n\t\t\taddProxyMethod(utc, \"get\" + props[p], d, \"getUTC\" + props[p]);\n\t\t\taddProxyMethod(utc, \"set\" + props[p], d, \"setUTC\" + props[p]);\n\t\t}\n\n\t\treturn utc;\n\t};\n\n\t// select time zone strategy.  This returns a date-like object tied to the\n\t// desired timezone\n\n\tfunction dateGenerator(ts, opts) {\n\t\tif (opts.timezone == \"browser\") {\n\t\t\treturn new Date(ts);\n\t\t} else if (!opts.timezone || opts.timezone == \"utc\") {\n\t\t\treturn makeUtcWrapper(new Date(ts));\n\t\t} else if (typeof timezoneJS != \"undefined\" && typeof timezoneJS.Date != \"undefined\") {\n\t\t\tvar d = new timezoneJS.Date();\n\t\t\t// timezone-js is fickle, so be sure to set the time zone before\n\t\t\t// setting the time.\n\t\t\td.setTimezone(opts.timezone);\n\t\t\td.setTime(ts);\n\t\t\treturn d;\n\t\t} else {\n\t\t\treturn makeUtcWrapper(new Date(ts));\n\t\t}\n\t}\n\t\n\t// map of app. size of time units in milliseconds\n\n\tvar timeUnitSize = {\n\t\t\"second\": 1000,\n\t\t\"minute\": 60 * 1000,\n\t\t\"hour\": 60 * 60 * 1000,\n\t\t\"day\": 24 * 60 * 60 * 1000,\n\t\t\"month\": 30 * 24 * 60 * 60 * 1000,\n\t\t\"quarter\": 3 * 30 * 24 * 60 * 60 * 1000,\n\t\t\"year\": 365.2425 * 24 * 60 * 60 * 1000\n\t};\n\n\t// the allowed tick sizes, after 1 year we use\n\t// an integer algorithm\n\n\tvar baseSpec = [\n\t\t[1, \"second\"], [2, \"second\"], [5, \"second\"], [10, \"second\"],\n\t\t[30, \"second\"], \n\t\t[1, \"minute\"], [2, \"minute\"], [5, \"minute\"], [10, \"minute\"],\n\t\t[30, \"minute\"], \n\t\t[1, \"hour\"], [2, \"hour\"], [4, \"hour\"],\n\t\t[8, \"hour\"], [12, \"hour\"],\n\t\t[1, \"day\"], [2, \"day\"], [3, \"day\"],\n\t\t[0.25, \"month\"], [0.5, \"month\"], [1, \"month\"],\n\t\t[2, \"month\"]\n\t];\n\n\t// we don't know which variant(s) we'll need yet, but generating both is\n\t// cheap\n\n\tvar specMonths = baseSpec.concat([[3, \"month\"], [6, \"month\"],\n\t\t[1, \"year\"]]);\n\tvar specQuarters = baseSpec.concat([[1, \"quarter\"], [2, \"quarter\"],\n\t\t[1, \"year\"]]);\n\n\tfunction init(plot) {\n\t\tplot.hooks.processOptions.push(function (plot, options) {\n\t\t\t$.each(plot.getAxes(), function(axisName, axis) {\n\n\t\t\t\tvar opts = axis.options;\n\n\t\t\t\tif (opts.mode == \"time\") {\n\t\t\t\t\taxis.tickGenerator = function(axis) {\n\n\t\t\t\t\t\tvar ticks = [];\n\t\t\t\t\t\tvar d = dateGenerator(axis.min, opts);\n\t\t\t\t\t\tvar minSize = 0;\n\n\t\t\t\t\t\t// make quarter use a possibility if quarters are\n\t\t\t\t\t\t// mentioned in either of these options\n\n\t\t\t\t\t\tvar spec = (opts.tickSize && opts.tickSize[1] ===\n\t\t\t\t\t\t\t\"quarter\") ||\n\t\t\t\t\t\t\t(opts.minTickSize && opts.minTickSize[1] ===\n\t\t\t\t\t\t\t\"quarter\") ? specQuarters : specMonths;\n\n\t\t\t\t\t\tif (opts.minTickSize != null) {\n\t\t\t\t\t\t\tif (typeof opts.tickSize == \"number\") {\n\t\t\t\t\t\t\t\tminSize = opts.tickSize;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tminSize = opts.minTickSize[0] * timeUnitSize[opts.minTickSize[1]];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tfor (var i = 0; i < spec.length - 1; ++i) {\n\t\t\t\t\t\t\tif (axis.delta < (spec[i][0] * timeUnitSize[spec[i][1]]\n\t\t\t\t\t\t\t\t\t\t\t  + spec[i + 1][0] * timeUnitSize[spec[i + 1][1]]) / 2\n\t\t\t\t\t\t\t\t&& spec[i][0] * timeUnitSize[spec[i][1]] >= minSize) {\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvar size = spec[i][0];\n\t\t\t\t\t\tvar unit = spec[i][1];\n\n\t\t\t\t\t\t// special-case the possibility of several years\n\n\t\t\t\t\t\tif (unit == \"year\") {\n\n\t\t\t\t\t\t\t// if given a minTickSize in years, just use it,\n\t\t\t\t\t\t\t// ensuring that it's an integer\n\n\t\t\t\t\t\t\tif (opts.minTickSize != null && opts.minTickSize[1] == \"year\") {\n\t\t\t\t\t\t\t\tsize = Math.floor(opts.minTickSize[0]);\n\t\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t\tvar magn = Math.pow(10, Math.floor(Math.log(axis.delta / timeUnitSize.year) / Math.LN10));\n\t\t\t\t\t\t\t\tvar norm = (axis.delta / timeUnitSize.year) / magn;\n\n\t\t\t\t\t\t\t\tif (norm < 1.5) {\n\t\t\t\t\t\t\t\t\tsize = 1;\n\t\t\t\t\t\t\t\t} else if (norm < 3) {\n\t\t\t\t\t\t\t\t\tsize = 2;\n\t\t\t\t\t\t\t\t} else if (norm < 7.5) {\n\t\t\t\t\t\t\t\t\tsize = 5;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsize = 10;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tsize *= magn;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// minimum size for years is 1\n\n\t\t\t\t\t\t\tif (size < 1) {\n\t\t\t\t\t\t\t\tsize = 1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\taxis.tickSize = opts.tickSize || [size, unit];\n\t\t\t\t\t\tvar tickSize = axis.tickSize[0];\n\t\t\t\t\t\tunit = axis.tickSize[1];\n\n\t\t\t\t\t\tvar step = tickSize * timeUnitSize[unit];\n\n\t\t\t\t\t\tif (unit == \"second\") {\n\t\t\t\t\t\t\td.setSeconds(floorInBase(d.getSeconds(), tickSize));\n\t\t\t\t\t\t} else if (unit == \"minute\") {\n\t\t\t\t\t\t\td.setMinutes(floorInBase(d.getMinutes(), tickSize));\n\t\t\t\t\t\t} else if (unit == \"hour\") {\n\t\t\t\t\t\t\td.setHours(floorInBase(d.getHours(), tickSize));\n\t\t\t\t\t\t} else if (unit == \"month\") {\n\t\t\t\t\t\t\td.setMonth(floorInBase(d.getMonth(), tickSize));\n\t\t\t\t\t\t} else if (unit == \"quarter\") {\n\t\t\t\t\t\t\td.setMonth(3 * floorInBase(d.getMonth() / 3,\n\t\t\t\t\t\t\t\ttickSize));\n\t\t\t\t\t\t} else if (unit == \"year\") {\n\t\t\t\t\t\t\td.setFullYear(floorInBase(d.getFullYear(), tickSize));\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// reset smaller components\n\n\t\t\t\t\t\td.setMilliseconds(0);\n\n\t\t\t\t\t\tif (step >= timeUnitSize.minute) {\n\t\t\t\t\t\t\td.setSeconds(0);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (step >= timeUnitSize.hour) {\n\t\t\t\t\t\t\td.setMinutes(0);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (step >= timeUnitSize.day) {\n\t\t\t\t\t\t\td.setHours(0);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (step >= timeUnitSize.day * 4) {\n\t\t\t\t\t\t\td.setDate(1);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (step >= timeUnitSize.month * 2) {\n\t\t\t\t\t\t\td.setMonth(floorInBase(d.getMonth(), 3));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (step >= timeUnitSize.quarter * 2) {\n\t\t\t\t\t\t\td.setMonth(floorInBase(d.getMonth(), 6));\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif (step >= timeUnitSize.year) {\n\t\t\t\t\t\t\td.setMonth(0);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvar carry = 0;\n\t\t\t\t\t\tvar v = Number.NaN;\n\t\t\t\t\t\tvar prev;\n\n\t\t\t\t\t\tdo {\n\n\t\t\t\t\t\t\tprev = v;\n\t\t\t\t\t\t\tv = d.getTime();\n\t\t\t\t\t\t\tticks.push(v);\n\n\t\t\t\t\t\t\tif (unit == \"month\" || unit == \"quarter\") {\n\t\t\t\t\t\t\t\tif (tickSize < 1) {\n\n\t\t\t\t\t\t\t\t\t// a bit complicated - we'll divide the\n\t\t\t\t\t\t\t\t\t// month/quarter up but we need to take\n\t\t\t\t\t\t\t\t\t// care of fractions so we don't end up in\n\t\t\t\t\t\t\t\t\t// the middle of a day\n\n\t\t\t\t\t\t\t\t\td.setDate(1);\n\t\t\t\t\t\t\t\t\tvar start = d.getTime();\n\t\t\t\t\t\t\t\t\td.setMonth(d.getMonth() +\n\t\t\t\t\t\t\t\t\t\t(unit == \"quarter\" ? 3 : 1));\n\t\t\t\t\t\t\t\t\tvar end = d.getTime();\n\t\t\t\t\t\t\t\t\td.setTime(v + carry * timeUnitSize.hour + (end - start) * tickSize);\n\t\t\t\t\t\t\t\t\tcarry = d.getHours();\n\t\t\t\t\t\t\t\t\td.setHours(0);\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\td.setMonth(d.getMonth() +\n\t\t\t\t\t\t\t\t\t\ttickSize * (unit == \"quarter\" ? 3 : 1));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if (unit == \"year\") {\n\t\t\t\t\t\t\t\td.setFullYear(d.getFullYear() + tickSize);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\td.setTime(v + step);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} while (v < axis.max && v != prev);\n\n\t\t\t\t\t\treturn ticks;\n\t\t\t\t\t};\n\n\t\t\t\t\taxis.tickFormatter = function (v, axis) {\n\n\t\t\t\t\t\tvar d = dateGenerator(v, axis.options);\n\n\t\t\t\t\t\t// first check global format\n\n\t\t\t\t\t\tif (opts.timeformat != null) {\n\t\t\t\t\t\t\treturn formatDate(d, opts.timeformat, opts.monthNames, opts.dayNames);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// possibly use quarters if quarters are mentioned in\n\t\t\t\t\t\t// any of these places\n\n\t\t\t\t\t\tvar useQuarters = (axis.options.tickSize &&\n\t\t\t\t\t\t\t\taxis.options.tickSize[1] == \"quarter\") ||\n\t\t\t\t\t\t\t(axis.options.minTickSize &&\n\t\t\t\t\t\t\t\taxis.options.minTickSize[1] == \"quarter\");\n\n\t\t\t\t\t\tvar t = axis.tickSize[0] * timeUnitSize[axis.tickSize[1]];\n\t\t\t\t\t\tvar span = axis.max - axis.min;\n\t\t\t\t\t\tvar suffix = (opts.twelveHourClock) ? \" %p\" : \"\";\n\t\t\t\t\t\tvar hourCode = (opts.twelveHourClock) ? \"%I\" : \"%H\";\n\t\t\t\t\t\tvar fmt;\n\n\t\t\t\t\t\tif (t < timeUnitSize.minute) {\n\t\t\t\t\t\t\tfmt = hourCode + \":%M:%S\" + suffix;\n\t\t\t\t\t\t} else if (t < timeUnitSize.day) {\n\t\t\t\t\t\t\tif (span < 2 * timeUnitSize.day) {\n\t\t\t\t\t\t\t\tfmt = hourCode + \":%M\" + suffix;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tfmt = \"%b %d \" + hourCode + \":%M\" + suffix;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if (t < timeUnitSize.month) {\n\t\t\t\t\t\t\tfmt = \"%b %d\";\n\t\t\t\t\t\t} else if ((useQuarters && t < timeUnitSize.quarter) ||\n\t\t\t\t\t\t\t(!useQuarters && t < timeUnitSize.year)) {\n\t\t\t\t\t\t\tif (span < timeUnitSize.year) {\n\t\t\t\t\t\t\t\tfmt = \"%b\";\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tfmt = \"%b %Y\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else if (useQuarters && t < timeUnitSize.year) {\n\t\t\t\t\t\t\tif (span < timeUnitSize.year) {\n\t\t\t\t\t\t\t\tfmt = \"Q%q\";\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tfmt = \"Q%q %Y\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tfmt = \"%Y\";\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvar rt = formatDate(d, fmt, opts.monthNames, opts.dayNames);\n\n\t\t\t\t\t\treturn rt;\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t$.plot.plugins.push({\n\t\tinit: init,\n\t\toptions: options,\n\t\tname: 'time',\n\t\tversion: '1.0'\n\t});\n\n\t// Time-axis support used to be in Flot core, which exposed the\n\t// formatDate function on the plot object.  Various plugins depend\n\t// on the function, so we need to re-expose it here.\n\n\t$.plot.formatDate = formatDate;\n\t$.plot.dateGenerator = dateGenerator;\n\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/gritter/jquery.gritter.css",
    "content": "/* the norm */\n#gritter-notice-wrapper {\n\tposition:fixed;\n\ttop:40px;\n\tright:20px;\n\twidth:301px;\n\tz-index:9999;\n\n    -webkit-animation-duration: 1s;\n    animation-duration: 1s;\n    -webkit-animation-fill-mode: both;\n    animation-fill-mode: both;\n\n    -webkit-animation-name: bounceIn;\n    animation-name: bounceIn;\n}\n@keyframes bounceIn {\n    0% {\n        opacity: 0;\n        -webkit-transform: scale(.3);\n        -ms-transform: scale(.3);\n        transform: scale(.3);\n    }\n\n    50% {\n        opacity: 1;\n        -webkit-transform: scale(1.05);\n        -ms-transform: scale(1.05);\n        transform: scale(1.05);\n    }\n\n    70% {\n        -webkit-transform: scale(.9);\n        -ms-transform: scale(.9);\n        transform: scale(.9);\n    }\n\n    100% {\n        opacity: 1;\n        -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n        transform: scale(1);\n    }\n}\n#gritter-notice-wrapper.top-left {\n    left: 20px;\n    right: auto;\n}\n#gritter-notice-wrapper.bottom-right {\n    top: auto;\n    left: auto;\n    bottom: 20px;\n    right: 20px;\n}\n#gritter-notice-wrapper.bottom-left {\n    top: auto;\n    right: auto;\n    bottom: 20px;\n    left: 20px;\n}\n.gritter-item-wrapper {\n\tposition:relative;\n\tmargin:0 0 10px 0;\n\tbackground:url('images/ie-spacer.gif'); /* ie7/8 fix */\n}\n\n.hover .gritter-top {\n\t/*background-position:right -30px;*/\n}\n.gritter-bottom {\n\theight:8px;\n\tmargin:0;\n}\n\n.gritter-item {\n\tdisplay:block;\n\tbackground-color: rgba(39,58,75,0.8);\n    border-radius: 4px;\n\tcolor:#eee;\n\tpadding:10px 11px 10px 11px;\n\tfont-size: 11px;\n}\n.hover .gritter-item {\n\tbackground-position:right -40px;\n}\n.gritter-item p {\n\tpadding:0;\n\tmargin:0;\n\tword-wrap:break-word;\n}\n\n.gritter-item a:hover {\n    color: #f8ac59;\n    text-decoration: underline;\n}\n.gritter-close {\n\tdisplay:none;\n\tposition:absolute;\n\ttop:5px;\n\tright:3px;\n\tbackground:url(images/gritter.png) no-repeat left top;\n\tcursor:pointer;\n\twidth:30px;\n\theight:30px;\n\ttext-indent:-9999em;\n}\n.gritter-title {\n\tfont-size:12px;\n\tfont-weight:bold;\n\tpadding:0 0 7px 0;\n\tdisplay:block;\n    text-transform: uppercase;\n}\n.gritter-image {\n\twidth:48px;\n\theight:48px;\n\tfloat:left;\n}\n.gritter-with-image,\n.gritter-without-image {\n\tpadding:0;\n}\n.gritter-with-image {\n\twidth:220px;\n\tfloat:right;\n}\n/* for the light (white) version of the gritter notice */\n.gritter-light .gritter-item,\n.gritter-light .gritter-bottom,\n.gritter-light .gritter-top,\n.gritter-light .gritter-close {\n    background-image: url(images/gritter-light.png);\n    color: #222;\n}\n.gritter-light .gritter-title {\n    text-shadow: none;\n}\n"
  },
  {
    "path": "public/admin/js/plugins/jeditable/jquery.jeditable.js",
    "content": "/*\n * Jeditable - jQuery in place edit plugin\n *\n * Copyright (c) 2006-2009 Mika Tuupola, Dylan Verheul\n *\n * Licensed under the MIT license:\n *   http://www.opensource.org/licenses/mit-license.php\n *\n * Project home:\n *   http://www.appelsiini.net/projects/jeditable\n *\n * Based on editable by Dylan Verheul <dylan_at_dyve.net>:\n *    http://www.dyve.net/jquery/?editable\n *\n */\n\n/**\n * Version 1.7.1\n *\n * ** means there is basic unit tests for this parameter.\n *\n * @name  Jeditable\n * @type  jQuery\n * @param String  target             (POST) URL or function to send edited content to **\n * @param Hash    options            additional options\n * @param String  options[method]    method to use to send edited content (POST or PUT) **\n * @param Function options[callback] Function to run after submitting edited content **\n * @param String  options[name]      POST parameter name of edited content\n * @param String  options[id]        POST parameter name of edited div id\n * @param Hash    options[submitdata] Extra parameters to send when submitting edited content.\n * @param String  options[type]      text, textarea or select (or any 3rd party input type) **\n * @param Integer options[rows]      number of rows if using textarea **\n * @param Integer options[cols]      number of columns if using textarea **\n * @param Mixed   options[height]    'auto', 'none' or height in pixels **\n * @param Mixed   options[width]     'auto', 'none' or width in pixels **\n * @param String  options[loadurl]   URL to fetch input content before editing **\n * @param String  options[loadtype]  Request type for load url. Should be GET or POST.\n * @param String  options[loadtext]  Text to display while loading external content.\n * @param Mixed   options[loaddata]  Extra parameters to pass when fetching content before editing.\n * @param Mixed   options[data]      Or content given as paramameter. String or function.**\n * @param String  options[indicator] indicator html to show when saving\n * @param String  options[tooltip]   optional tooltip text via title attribute **\n * @param String  options[event]     jQuery event such as 'click' of 'dblclick' **\n * @param String  options[submit]    submit button value, empty means no button **\n * @param String  options[cancel]    cancel button value, empty means no button **\n * @param String  options[cssclass]  CSS class to apply to input form. 'inherit' to copy from parent. **\n * @param String  options[style]     Style to apply to input form 'inherit' to copy from parent. **\n * @param String  options[select]    true or false, when true text is highlighted ??\n * @param String  options[placeholder] Placeholder text or html to insert when element is empty. **\n * @param String  options[onblur]    'cancel', 'submit', 'ignore' or function ??\n *\n * @param Function options[onsubmit] function(settings, original) { ... } called before submit\n * @param Function options[onreset]  function(settings, original) { ... } called before reset\n * @param Function options[onerror]  function(settings, original, xhr) { ... } called on error\n *\n * @param Hash    options[ajaxoptions]  jQuery Ajax options. See docs.jquery.com.\n *\n */\n\n(function($) {\n\n    $.fn.editable = function(target, options) {\n\n        if ('disable' == target) {\n            $(this).data('disabled.editable', true);\n            return;\n        }\n        if ('enable' == target) {\n            $(this).data('disabled.editable', false);\n            return;\n        }\n        if ('destroy' == target) {\n            $(this)\n                .unbind($(this).data('event.editable'))\n                .removeData('disabled.editable')\n                .removeData('event.editable');\n            return;\n        }\n\n        var settings = $.extend({}, $.fn.editable.defaults, {target:target}, options);\n\n        /* setup some functions */\n        var plugin   = $.editable.types[settings.type].plugin || function() { };\n        var submit   = $.editable.types[settings.type].submit || function() { };\n        var buttons  = $.editable.types[settings.type].buttons\n            || $.editable.types['defaults'].buttons;\n        var content  = $.editable.types[settings.type].content\n            || $.editable.types['defaults'].content;\n        var element  = $.editable.types[settings.type].element\n            || $.editable.types['defaults'].element;\n        var reset    = $.editable.types[settings.type].reset\n            || $.editable.types['defaults'].reset;\n        var callback = settings.callback || function() { };\n        var onedit   = settings.onedit   || function() { };\n        var onsubmit = settings.onsubmit || function() { };\n        var onreset  = settings.onreset  || function() { };\n        var onerror  = settings.onerror  || reset;\n\n        /* show tooltip */\n        if (settings.tooltip) {\n            $(this).attr('title', settings.tooltip);\n        }\n\n        settings.autowidth  = 'auto' == settings.width;\n        settings.autoheight = 'auto' == settings.height;\n\n        return this.each(function() {\n\n            /* save this to self because this changes when scope changes */\n            var self = this;\n\n            /* inlined block elements lose their width and height after first edit */\n            /* save them for later use as workaround */\n            var savedwidth  = $(self).width();\n            var savedheight = $(self).height();\n\n            /* save so it can be later used by $.editable('destroy') */\n            $(this).data('event.editable', settings.event);\n\n            /* if element is empty add something clickable (if requested) */\n            if (!$.trim($(this).html())) {\n                $(this).html(settings.placeholder);\n            }\n\n            $(this).bind(settings.event, function(e) {\n\n                /* abort if disabled for this element */\n                if (true === $(this).data('disabled.editable')) {\n                    return;\n                }\n\n                /* prevent throwing an exeption if edit field is clicked again */\n                if (self.editing) {\n                    return;\n                }\n\n                /* abort if onedit hook returns false */\n                if (false === onedit.apply(this, [settings, self])) {\n                    return;\n                }\n\n                /* prevent default action and bubbling */\n                e.preventDefault();\n                e.stopPropagation();\n\n                /* remove tooltip */\n                if (settings.tooltip) {\n                    $(self).removeAttr('title');\n                }\n\n                /* figure out how wide and tall we are, saved width and height */\n                /* are workaround for http://dev.jquery.com/ticket/2190 */\n                if (0 == $(self).width()) {\n                    //$(self).css('visibility', 'hidden');\n                    settings.width  = savedwidth;\n                    settings.height = savedheight;\n                } else {\n                    if (settings.width != 'none') {\n                        settings.width =\n                            settings.autowidth ? $(self).width()  : settings.width;\n                    }\n                    if (settings.height != 'none') {\n                        settings.height =\n                            settings.autoheight ? $(self).height() : settings.height;\n                    }\n                }\n                //$(this).css('visibility', '');\n\n                /* remove placeholder text, replace is here because of IE */\n                if ($(this).html().toLowerCase().replace(/(;|\")/g, '') ==\n                    settings.placeholder.toLowerCase().replace(/(;|\")/g, '')) {\n                    $(this).html('');\n                }\n\n                self.editing    = true;\n                self.revert     = $(self).html();\n                $(self).html('');\n\n                /* create the form object */\n                var form = $('<form />');\n\n                /* apply css or style or both */\n                if (settings.cssclass) {\n                    if ('inherit' == settings.cssclass) {\n                        form.attr('class', $(self).attr('class'));\n                    } else {\n                        form.attr('class', settings.cssclass);\n                    }\n                }\n\n                if (settings.style) {\n                    if ('inherit' == settings.style) {\n                        form.attr('style', $(self).attr('style'));\n                        /* IE needs the second line or display wont be inherited */\n                        form.css('display', $(self).css('display'));\n                    } else {\n                        form.attr('style', settings.style);\n                    }\n                }\n\n                /* add main input element to form and store it in input */\n                var input = element.apply(form, [settings, self]);\n\n                /* set input content via POST, GET, given data or existing value */\n                var input_content;\n\n                if (settings.loadurl) {\n                    var t = setTimeout(function() {\n                        input.disabled = true;\n                        content.apply(form, [settings.loadtext, settings, self]);\n                    }, 100);\n\n                    var loaddata = {};\n                    loaddata[settings.id] = self.id;\n                    if ($.isFunction(settings.loaddata)) {\n                        $.extend(loaddata, settings.loaddata.apply(self, [self.revert, settings]));\n                    } else {\n                        $.extend(loaddata, settings.loaddata);\n                    }\n                    $.ajax({\n                        type : settings.loadtype,\n                        url  : settings.loadurl,\n                        data : loaddata,\n                        async : false,\n                        success: function(result) {\n                            window.clearTimeout(t);\n                            input_content = result;\n                            input.disabled = false;\n                        }\n                    });\n                } else if (settings.data) {\n                    input_content = settings.data;\n                    if ($.isFunction(settings.data)) {\n                        input_content = settings.data.apply(self, [self.revert, settings]);\n                    }\n                } else {\n                    input_content = self.revert;\n                }\n                content.apply(form, [input_content, settings, self]);\n\n                input.attr('name', settings.name);\n\n                /* add buttons to the form */\n                buttons.apply(form, [settings, self]);\n\n                /* add created form to self */\n                $(self).append(form);\n\n                /* attach 3rd party plugin if requested */\n                plugin.apply(form, [settings, self]);\n\n                /* focus to first visible form element */\n                $(':input:visible:enabled:first', form).focus();\n\n                /* highlight input contents when requested */\n                if (settings.select) {\n                    input.select();\n                }\n\n                /* discard changes if pressing esc */\n                input.keydown(function(e) {\n                    if (e.keyCode == 27) {\n                        e.preventDefault();\n                        //self.reset();\n                        reset.apply(form, [settings, self]);\n                    }\n                });\n\n                /* discard, submit or nothing with changes when clicking outside */\n                /* do nothing is usable when navigating with tab */\n                var t;\n                if ('cancel' == settings.onblur) {\n                    input.blur(function(e) {\n                        /* prevent canceling if submit was clicked */\n                        t = setTimeout(function() {\n                            reset.apply(form, [settings, self]);\n                        }, 500);\n                    });\n                } else if ('submit' == settings.onblur) {\n                    input.blur(function(e) {\n                        /* prevent double submit if submit was clicked */\n                        t = setTimeout(function() {\n                            form.submit();\n                        }, 200);\n                    });\n                } else if ($.isFunction(settings.onblur)) {\n                    input.blur(function(e) {\n                        settings.onblur.apply(self, [input.val(), settings]);\n                    });\n                } else {\n                    input.blur(function(e) {\n                        /* TODO: maybe something here */\n                    });\n                }\n\n                form.submit(function(e) {\n\n                    if (t) {\n                        clearTimeout(t);\n                    }\n\n                    /* do no submit */\n                    e.preventDefault();\n\n                    /* call before submit hook. */\n                    /* if it returns false abort submitting */\n                    if (false !== onsubmit.apply(form, [settings, self])) {\n                        /* custom inputs call before submit hook. */\n                        /* if it returns false abort submitting */\n                        if (false !== submit.apply(form, [settings, self])) {\n\n                            /* check if given target is function */\n                            if ($.isFunction(settings.target)) {\n                                var str = settings.target.apply(self, [input.val(), settings]);\n                                $(self).html(str);\n                                self.editing = false;\n                                callback.apply(self, [self.innerHTML, settings]);\n                                /* TODO: this is not dry */\n                                if (!$.trim($(self).html())) {\n                                    $(self).html(settings.placeholder);\n                                }\n                            } else {\n                                /* add edited content and id of edited element to POST */\n                                var submitdata = {};\n                                submitdata[settings.name] = input.val();\n                                submitdata[settings.id] = self.id;\n                                /* add extra data to be POST:ed */\n                                if ($.isFunction(settings.submitdata)) {\n                                    $.extend(submitdata, settings.submitdata.apply(self, [self.revert, settings]));\n                                } else {\n                                    $.extend(submitdata, settings.submitdata);\n                                }\n\n                                /* quick and dirty PUT support */\n                                if ('PUT' == settings.method) {\n                                    submitdata['_method'] = 'put';\n                                }\n\n                                /* show the saving indicator */\n                                $(self).html(settings.indicator);\n\n                                /* defaults for ajaxoptions */\n                                var ajaxoptions = {\n                                    type    : 'POST',\n                                    data    : submitdata,\n                                    dataType: 'html',\n                                    url     : settings.target,\n                                    success : function(result, status) {\n                                        if (ajaxoptions.dataType == 'html') {\n                                            $(self).html(result);\n                                        }\n                                        self.editing = false;\n                                        callback.apply(self, [result, settings]);\n                                        if (!$.trim($(self).html())) {\n                                            $(self).html(settings.placeholder);\n                                        }\n                                    },\n                                    error   : function(xhr, status, error) {\n                                        onerror.apply(form, [settings, self, xhr]);\n                                    }\n                                };\n\n                                /* override with what is given in settings.ajaxoptions */\n                                $.extend(ajaxoptions, settings.ajaxoptions);\n                                $.ajax(ajaxoptions);\n\n                            }\n                        }\n                    }\n\n                    /* show tooltip again */\n                    $(self).attr('title', settings.tooltip);\n\n                    return false;\n                });\n            });\n\n            /* privileged methods */\n            this.reset = function(form) {\n                /* prevent calling reset twice when blurring */\n                if (this.editing) {\n                    /* before reset hook, if it returns false abort reseting */\n                    if (false !== onreset.apply(form, [settings, self])) {\n                        $(self).html(self.revert);\n                        self.editing   = false;\n                        if (!$.trim($(self).html())) {\n                            $(self).html(settings.placeholder);\n                        }\n                        /* show tooltip again */\n                        if (settings.tooltip) {\n                            $(self).attr('title', settings.tooltip);\n                        }\n                    }\n                }\n            };\n        });\n\n    };\n\n\n    $.editable = {\n        types: {\n            defaults: {\n                element : function(settings, original) {\n                    var input = $('<input type=\"hidden\"></input>');\n                    $(this).append(input);\n                    return(input);\n                },\n                content : function(string, settings, original) {\n                    $(':input:first', this).val(string);\n                },\n                reset : function(settings, original) {\n                    original.reset(this);\n                },\n                buttons : function(settings, original) {\n                    var form = this;\n                    if (settings.submit) {\n                        /* if given html string use that */\n                        if (settings.submit.match(/>$/)) {\n                            var submit = $(settings.submit).click(function() {\n                                if (submit.attr(\"type\") != \"submit\") {\n                                    form.submit();\n                                }\n                            });\n                            /* otherwise use button with given string as text */\n                        } else {\n                            var submit = $('<button type=\"submit\" />');\n                            submit.html(settings.submit);\n                        }\n                        $(this).append(submit);\n                    }\n                    if (settings.cancel) {\n                        /* if given html string use that */\n                        if (settings.cancel.match(/>$/)) {\n                            var cancel = $(settings.cancel);\n                            /* otherwise use button with given string as text */\n                        } else {\n                            var cancel = $('<button type=\"cancel\" />');\n                            cancel.html(settings.cancel);\n                        }\n                        $(this).append(cancel);\n\n                        $(cancel).click(function(event) {\n                            //original.reset();\n                            if ($.isFunction($.editable.types[settings.type].reset)) {\n                                var reset = $.editable.types[settings.type].reset;\n                            } else {\n                                var reset = $.editable.types['defaults'].reset;\n                            }\n                            reset.apply(form, [settings, original]);\n                            return false;\n                        });\n                    }\n                }\n            },\n            text: {\n                element : function(settings, original) {\n                    var input = $('<input />');\n                    if (settings.width  != 'none') { input.width(settings.width);  }\n                    if (settings.height != 'none') { input.height(settings.height); }\n                    /* https://bugzilla.mozilla.org/show_bug.cgi?id=236791 */\n                    //input[0].setAttribute('autocomplete','off');\n                    input.attr('autocomplete','off');\n                    $(this).append(input);\n                    return(input);\n                }\n            },\n            textarea: {\n                element : function(settings, original) {\n                    var textarea = $('<textarea />');\n                    if (settings.rows) {\n                        textarea.attr('rows', settings.rows);\n                    } else if (settings.height != \"none\") {\n                        textarea.height(settings.height);\n                    }\n                    if (settings.cols) {\n                        textarea.attr('cols', settings.cols);\n                    } else if (settings.width != \"none\") {\n                        textarea.width(settings.width);\n                    }\n                    $(this).append(textarea);\n                    return(textarea);\n                }\n            },\n            select: {\n                element : function(settings, original) {\n                    var select = $('<select />');\n                    $(this).append(select);\n                    return(select);\n                },\n                content : function(data, settings, original) {\n                    /* If it is string assume it is json. */\n                    if (String == data.constructor) {\n                        eval ('var json = ' + data);\n                    } else {\n                        /* Otherwise assume it is a hash already. */\n                        var json = data;\n                    }\n                    for (var key in json) {\n                        if (!json.hasOwnProperty(key)) {\n                            continue;\n                        }\n                        if ('selected' == key) {\n                            continue;\n                        }\n                        var option = $('<option />').val(key).append(json[key]);\n                        $('select', this).append(option);\n                    }\n                    /* Loop option again to set selected. IE needed this... */\n                    $('select', this).children().each(function() {\n                        if ($(this).val() == json['selected'] ||\n                            $(this).text() == $.trim(original.revert)) {\n                            $(this).attr('selected', 'selected');\n                        }\n                    });\n                }\n            }\n        },\n\n        /* Add new input type */\n        addInputType: function(name, input) {\n            $.editable.types[name] = input;\n        }\n    };\n\n    // publicly accessible defaults\n    $.fn.editable.defaults = {\n        name       : 'value',\n        id         : 'id',\n        type       : 'text',\n        width      : 'auto',\n        height     : 'auto',\n        event      : 'click.editable',\n        onblur     : 'cancel',\n        loadtype   : 'GET',\n        loadtext   : 'Loading...',\n        placeholder: 'Click to edit',\n        loaddata   : {},\n        submitdata : {},\n        ajaxoptions: {}\n    };\n\n})(jQuery);"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-ar.js",
    "content": ";(function($){\n/**\n * jqGrid Arabic Translation\n * \n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"تسجيل {0} - {1} على {2}\",\n\t\temptyrecords: \"لا يوجد تسجيل\",\n\t\tloadtext: \"تحميل...\",\n\t\tpgtext : \"صفحة {0} على {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"بحث...\",\n\t\tFind: \"بحث\",\n\t\tReset: \"إلغاء\",\n\t\todata: [{ oper:'eq', text:\"يساوي\"},{ oper:'ne', text:\"يختلف\"},{ oper:'lt', text:\"أقل\"},{ oper:'le', text:\"أقل أو يساوي\"},{ oper:'gt', text:\"أكبر\"},{ oper:'ge', text:\"أكبر أو يساوي\"},{ oper:'bw', text:\"يبدأ بـ\"},{ oper:'bn', text:\"لا يبدأ بـ\"},{ oper:'in', text:\"est dans\"},{ oper:'ni', text:\"n'est pas dans\"},{ oper:'ew', text:\"ينته بـ\"},{ oper:'en', text:\"لا ينته بـ\"},{ oper:'cn', text:\"يحتوي\"},{ oper:'nc', text:\"لا يحتوي\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"مع\", text: \"الكل\" },\t{ op: \"أو\",  text: \"لا أحد\" }],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n},\n\tedit : {\n\t\taddCaption: \"اضافة\",\n\t\teditCaption: \"تحديث\",\n\t\tbSubmit: \"تثبيث\",\n\t\tbCancel: \"إلغاء\",\n\t\tbClose: \"غلق\",\n\t\tsaveData: \"تغيرت المعطيات هل تريد التسجيل ?\",\n\t\tbYes: \"نعم\",\n\t\tbNo: \"لا\",\n\t\tbExit: \"إلغاء\",\n\t\tmsg: {\n\t\t\trequired: \"خانة إجبارية\",\n\t\t\tnumber: \"سجل رقم صحيح\",\n\t\t\tminValue: \"يجب أن تكون القيمة أكبر أو تساوي 0\",\n\t\t\tmaxValue: \"يجب أن تكون القيمة أقل أو تساوي 0\",\n\t\t\temail: \"بريد غير صحيح\",\n\t\t\tinteger: \"سجل عدد طبييعي صحيح\",\n\t\t\turl: \"ليس عنوانا صحيحا. البداية الصحيحة ('http://' أو 'https://')\",\n\t\t\tnodefined : \" ليس محدد!\",\n\t\t\tnovalue : \" قيمة الرجوع مطلوبة!\",\n\t\t\tcustomarray : \"يجب على الدالة الشخصية أن تنتج جدولا\",\n\t\t\tcustomfcheck : \"الدالة الشخصية مطلوبة في حالة التحقق الشخصي\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"رأيت التسجيلات\",\n\t\tbClose: \"غلق\"\n\t},\n\tdel : {\n\t\tcaption: \"حذف\",\n\t\tmsg: \"حذف التسجيلات المختارة ?\",\n\t\tbSubmit: \"حذف\",\n\t\tbCancel: \"إلغاء\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"تغيير التسجيل المختار\",\n\t\taddtext:\" \",\n\t\taddtitle: \"إضافة تسجيل\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"حذف التسجيل المختار\",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"بحث عن تسجيل\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"تحديث الجدول\",\n\t\talertcap: \"تحذير\",\n\t\talerttext: \"يرجى إختيار السطر\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"إظهار السطر المختار\"\n\t},\n\tcol : {\n\t\tcaption: \"إظهار/إخفاء الأعمدة\",\n\t\tbSubmit: \"تثبيث\",\n\t\tbCancel: \"إلغاء\"\n\t},\n\terrors : {\n\t\terrcap : \"خطأ\",\n\t\tnourl : \"لا يوجد عنوان محدد\",\n\t\tnorecords: \"لا يوجد تسجيل للمعالجة\",\n\t\tmodel : \"عدد العناوين (colNames) <> عدد التسجيلات (colModel)!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"الأحد\", \"الإثنين\", \"الثلاثاء\", \"الأربعاء\", \"الخميس\", \"الجمعة\", \"السبت\",\n\t\t\t\t\"الأحد\", \"الإثنين\", \"الثلاثاء\", \"الأربعاء\", \"الخميس\", \"الجمعة\", \"السبت\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"جانفي\", \"فيفري\", \"مارس\", \"أفريل\", \"ماي\", \"جوان\", \"جويلية\", \"أوت\", \"سبتمبر\", \"أكتوبر\", \"نوفمبر\", \"ديسمبر\",\n\t\t\t\t\"جانفي\", \"فيفري\", \"مارس\", \"أفريل\", \"ماي\", \"جوان\", \"جويلية\", \"أوت\", \"سبتمبر\", \"أكتوبر\", \"نوفمبر\", \"ديسمبر\"\n\t\t\t],\n\t\t\tAmPm : [\"صباحا\",\"مساءا\",\"صباحا\",\"مساءا\"],\n\t\t\tS: function (j) {return j == 1 ? 'er' : 'e';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-bg.js",
    "content": ";(function($){\n/**\n * jqGrid Bulgarian Translation \n * Tony Tomov tony@trirand.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"{0} - {1} от {2}\",\n\t\temptyrecords: \"Няма запис(и)\",\n\t\tloadtext: \"Зареждам...\",\n\t\tpgtext : \"Стр. {0} от {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Търсене...\",\n\t\tFind: \"Намери\",\n\t\tReset: \"Изчисти\",\n\t\todata: [{ oper:'eq', text:\"равно\"},{ oper:'ne', text:\"различно\"},{ oper:'lt', text:\"по-малко\"},{ oper:'le', text:\"по-малко или=\"},{ oper:'gt', text:\"по-голямо\"},{ oper:'ge', text:\"по-голямо или =\"},{ oper:'bw', text:\"започва с\"},{ oper:'bn', text:\"не започва с\"},{ oper:'in', text:\"се намира в\"},{ oper:'ni', text:\"не се намира в\"},{ oper:'ew', text:\"завършва с\"},{ oper:'en', text:\"не завършава с\"},{ oper:'cn', text:\"съдържа\"},{ oper:'nc', text:\"не съдържа\"},{ oper:'nu', text:'е NULL'},{ oper:'nn', text:'не е NULL'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"&nbsp;И \" },\t{ op: \"OR\",  text: \"ИЛИ\" }\t],\n\t\toperandTitle : \"Натисни за избор на операнд.\",\n\t\tresetTitle : \"Изчисти стойността\"\n\t},\n\tedit : {\n\t\taddCaption: \"Нов Запис\",\n\t\teditCaption: \"Редакция Запис\",\n\t\tbSubmit: \"Запиши\",\n\t\tbCancel: \"Изход\",\n\t\tbClose: \"Затвори\",\n\t\tsaveData: \"Данните са променени! Да съхраня ли промените?\",\n\t\tbYes : \"Да\",\n\t\tbNo : \"Не\",\n\t\tbExit : \"Отказ\",\n\t\tmsg: {\n\t\t\trequired:\"Полето е задължително\",\n\t\t\tnumber:\"Въведете валидно число!\",\n\t\t\tminValue:\"стойността трябва да е по-голяма или равна от\",\n\t\t\tmaxValue:\"стойността трябва да е по-малка или равна от\",\n\t\t\temail: \"не е валиден ел. адрес\",\n\t\t\tinteger: \"Въведете валидно цяло число\",\n\t\t\tdate: \"Въведете валидна дата\",\n\t\t\turl: \"e невалиден URL. Изискава се префикс('http://' или 'https://')\",\n\t\t\tnodefined : \" е недефинирана!\",\n\t\t\tnovalue : \" изисква връщане на стойност!\",\n\t\t\tcustomarray : \"Потреб. Функция трябва да върне масив!\",\n\t\t\tcustomfcheck : \"Потребителска функция е задължителна при този тип елемент!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Преглед запис\",\n\t\tbClose: \"Затвори\"\n\t},\n\tdel : {\n\t\tcaption: \"Изтриване\",\n\t\tmsg: \"Да изтрия ли избраният запис?\",\n\t\tbSubmit: \"Изтрий\",\n\t\tbCancel: \"Отказ\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"Редакция избран запис\",\n\t\taddtext:\" \",\n\t\taddtitle: \"Добавяне нов запис\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"Изтриване избран запис\",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"Търсене запис(и)\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Обнови таблица\",\n\t\talertcap: \"Предупреждение\",\n\t\talerttext: \"Моля, изберете запис\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Преглед избран запис\"\n\t},\n\tcol : {\n\t\tcaption: \"Избери колони\",\n\t\tbSubmit: \"Ок\",\n\t\tbCancel: \"Изход\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Грешка\",\n\t\tnourl : \"Няма посочен url адрес\",\n\t\tnorecords: \"Няма запис за обработка\",\n\t\tmodel : \"Модела не съответства на имената!\"\t\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\" лв.\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Нед\", \"Пон\", \"Вт\", \"Ср\", \"Чет\", \"Пет\", \"Съб\",\n\t\t\t\t\"Неделя\", \"Понеделник\", \"Вторник\", \"Сряда\", \"Четвъртък\", \"Петък\", \"Събота\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Яну\", \"Фев\", \"Мар\", \"Апр\", \"Май\", \"Юни\", \"Юли\", \"Авг\", \"Сеп\", \"Окт\", \"Нов\", \"Дек\",\n\t\t\t\t\"Януари\", \"Февруари\", \"Март\", \"Април\", \"Май\", \"Юни\", \"Юли\", \"Август\", \"Септември\", \"Октомври\", \"Ноември\", \"Декември\"\n\t\t\t],\n\t\t\tAmPm : [\"\",\"\",\"\",\"\"],\n\t\t\tS: function (j) {\n\t\t\t\tif(j==7 || j==8 || j== 27 || j== 28) {\n\t\t\t\t\treturn 'ми';\n\t\t\t\t}\n\t\t\t\treturn ['ви', 'ри', 'ти'][Math.min((j - 1) % 10, 2)];\n\t\t\t},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-bg1251.js",
    "content": ";(function($){\n/**\n * jqGrid Bulgarian Translation \n * Tony Tomov tony@trirand.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"{0} - {1} �� {2}\",\n\t\temptyrecords: \"���� �����(�)\",\n\t\tloadtext: \"��������...\",\n\t\tpgtext : \"���. {0} �� {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"�������...\",\n\t\tFind: \"������\",\n\t\tReset: \"�������\",\n\t\todata : [{ oper:'eq', text:'�����'}, { oper:'ne', text:'��������'}, { oper:'lt', text:'��-�����'}, { oper:'le', text:'��-����� ���='},{ oper:'gt', text:'��-������'},{ oper:'ge', text:'��-������ ��� ='}, { oper:'bw', text:'������� �'},{ oper:'bn', text:'�� ������� �'},{ oper:'in', text:'�� ������ �'},{ oper:'ni', text:'�� �� ������ �'},{ oper:'ew', text:'�������� �'},{ oper:'en', text:'�� ��������� �'},,{ oper:'cn', text:'�������'}, ,{ oper:'nc', text:'�� �������'} ],\n\t    groupOps: [\t{ op: \"AND\", text: \" � \" },\t{ op: \"OR\",  text: \"���\" }\t]\n\t},\n\tedit : {\n\t\taddCaption: \"��� �����\",\n\t\teditCaption: \"�������� �����\",\n\t\tbSubmit: \"������\",\n\t\tbCancel: \"�����\",\n\t\tbClose: \"�������\",\n\t\tsaveData: \"������� �� ���������! �� ������� �� ���������?\",\n\t\tbYes : \"��\",\n\t\tbNo : \"��\",\n\t\tbExit : \"�����\",\n\t\tmsg: {\n\t\t    required:\"������ � ������������\",\n\t\t    number:\"�������� ������� �����!\",\n\t\t    minValue:\"���������� ������ �� � ��-������ ��� ����� ��\",\n\t\t    maxValue:\"���������� ������ �� � ��-����� ��� ����� ��\",\n\t\t    email: \"�� � ������� ��. �����\",\n\t\t    integer: \"�������� ������� ���� �����\",\n\t\t\tdate: \"�������� ������� ����\",\n\t\t\turl: \"e ��������� URL. �������� �� �������('http://' ��� 'https://')\",\n\t\t\tnodefined : \" � ������������!\",\n\t\t\tnovalue : \" ������� ������� �� ��������!\",\n\t\t\tcustomarray : \"������. ������� ������ �� ����� �����!\",\n\t\t\tcustomfcheck : \"������������� ������� � ������������ ��� ���� ��� �������!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"������� �����\",\n\t    bClose: \"�������\"\n\t},\n\tdel : {\n\t\tcaption: \"���������\",\n\t\tmsg: \"�� ������ �� ��������� �����?\",\n\t\tbSubmit: \"������\",\n\t\tbCancel: \"�����\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"�������� ������ �����\",\n\t\taddtext:\" \",\n\t\taddtitle: \"�������� ��� �����\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"��������� ������ �����\",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"������� �����(�)\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"������ �������\",\n\t\talertcap: \"��������������\",\n\t\talerttext: \"����, �������� �����\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"������� ������ �����\"\n\t},\n\tcol : {\n\t\tcaption: \"����� ������\",\n\t\tbSubmit: \"��\",\n\t\tbCancel: \"�����\"\t\n\t},\n\terrors : {\n\t\terrcap : \"������\",\n\t\tnourl : \"���� ������� url �����\",\n\t\tnorecords: \"���� ����� �� ���������\",\n\t\tmodel : \"������ �� ����������� �� �������!\"\t\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\" ��.\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"���\", \"���\", \"��\", \"��\", \"���\", \"���\", \"���\",\n\t\t\t\t\"������\", \"����������\", \"�������\", \"�����\", \"���������\", \"�����\", \"������\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"���\", \"���\", \"���\", \"���\", \"���\", \"���\", \"���\", \"���\", \"���\", \"���\", \"���\", \"���\",\n\t\t\t\t\"������\", \"��������\", \"����\", \"�����\", \"���\", \"���\", \"���\", \"������\", \"���������\", \"��������\", \"�������\", \"��������\"\n\t\t\t],\n\t\t\tAmPm : [\"\",\"\",\"\",\"\"],\n\t\t\tS: function (j) {\n\t\t\t\tif(j==7 || j==8 || j== 27 || j== 28) {\n\t\t\t\t\treturn '��';\n\t\t\t\t}\n\t\t\t\treturn ['��', '��', '��'][Math.min((j - 1) % 10, 2)];\n\t\t\t},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t        ISO8601Long:\"Y-m-d H:i:s\",\n\t\t        ISO8601Short:\"Y-m-d\",\n\t\t        ShortDate: \"n/j/Y\",\n\t\t        LongDate: \"l, F d, Y\",\n\t\t        FullDateTime: \"l, F d, Y g:i:s A\",\n\t\t        MonthDay: \"F d\",\n\t\t        ShortTime: \"g:i A\",\n\t\t        LongTime: \"g:i:s A\",\n\t\t        SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t        UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t        YearMonth: \"F, Y\"\n\t\t    },\n\t\t    reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-cat.js",
    "content": ";(function($){\n/**\n * jqGrid Catalan Translation\n * Traducció jqGrid en Catatà per Faserline, S.L.\n * http://www.faserline.com\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Mostrant {0} - {1} de {2}\",\n\t    emptyrecords: \"Sense registres que mostrar\",\n\t\tloadtext: \"Carregant...\",\n\t\tpgtext : \"Pàgina {0} de {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Cerca...\",\n\t\tFind: \"Cercar\",\n\t\tReset: \"Buidar\",\n\t    odata: [{ oper:'eq', text:\"equal\"},{ oper:'ne', text:\"not equal\"},{ oper:'lt', text:\"less\"},{ oper:'le', text:\"less or equal\"},{ oper:'gt', text:\"greater\"},{ oper:'ge', text:\"greater or equal\"},{ oper:'bw', text:\"begins with\"},{ oper:'bn', text:\"does not begin with\"},{ oper:'in', text:\"is in\"},{ oper:'ni', text:\"is not in\"},{ oper:'ew', text:\"ends with\"},{ oper:'en', text:\"does not end with\"},{ oper:'cn', text:\"contains\"},{ oper:'nc', text:\"does not contain\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"tot\" },\t{ op: \"OR\",  text: \"qualsevol\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Afegir registre\",\n\t\teditCaption: \"Modificar registre\",\n\t\tbSubmit: \"Guardar\",\n\t\tbCancel: \"Cancelar\",\n\t\tbClose: \"Tancar\",\n\t\tsaveData: \"Les dades han canviat. Guardar canvis?\",\n\t\tbYes : \"Yes\",\n\t\tbNo : \"No\",\n\t\tbExit : \"Cancel\",\n\t\tmsg: {\n\t\t    required:\"Camp obligatori\",\n\t\t    number:\"Introdueixi un nombre\",\n\t\t    minValue:\"El valor ha de ser major o igual que \",\n\t\t    maxValue:\"El valor ha de ser menor o igual a \",\n\t\t    email: \"no és una direcció de correu vàlida\",\n\t\t    integer: \"Introdueixi un valor enter\",\n\t\t\tdate: \"Introdueixi una data correcta \",\n\t\t\turl: \"no és una URL vàlida. Prefix requerit ('http://' or 'https://')\",\n\t\t\tnodefined : \" is not defined!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Veure registre\",\n\t\tbClose: \"Tancar\"\n\t},\n\tdel : {\n\t\tcaption: \"Eliminar\",\n\t\tmsg: \"¿Desitja eliminar els registres seleccionats?\",\n\t\tbSubmit: \"Eliminar\",\n\t\tbCancel: \"Cancelar\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"Modificar fila seleccionada\",\n\t\taddtext:\" \",\n\t\taddtitle: \"Agregar nova fila\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"Eliminar fila seleccionada\",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"Cercar informació\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Refrescar taula\",\n\t\talertcap: \"Avís\",\n\t\talerttext: \"Seleccioni una fila\",\n\t\tviewtext: \" \",\n\t\tviewtitle: \"Veure fila seleccionada\"\n\t},\n// setcolumns module\n\tcol : {\n\t\tcaption: \"Mostrar/ocultar columnes\",\n\t\tbSubmit: \"Enviar\",\n\t\tbCancel: \"Cancelar\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Error\",\n\t\tnourl : \"No s'ha especificat una URL\",\n\t\tnorecords: \"No hi ha dades per processar\",\n\t\tmodel : \"Les columnes de noms són diferents de les columnes del model\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \".\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Dg\", \"Dl\", \"Dt\", \"Dc\", \"Dj\", \"Dv\", \"Ds\",\n\t\t\t\t\"Diumenge\", \"Dilluns\", \"Dimarts\", \"Dimecres\", \"Dijous\", \"Divendres\", \"Dissabte\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Gen\", \"Febr\", \"Març\", \"Abr\", \"Maig\", \"Juny\", \"Jul\", \"Ag\", \"Set\", \"Oct\", \"Nov\", \"Des\",\n\t\t\t\t\"Gener\", \"Febrer\", \"Març\", \"Abril\", \"Maig\", \"Juny\", \"Juliol\", \"Agost\", \"Setembre\", \"Octubre\", \"Novembre\", \"Desembre\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd-m-Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t        ISO8601Long:\"Y-m-d H:i:s\",\n\t\t        ISO8601Short:\"Y-m-d\",\n\t\t        ShortDate: \"n/j/Y\",\n\t\t        LongDate: \"l, F d, Y\",\n\t\t        FullDateTime: \"l, F d, Y g:i:s A\",\n\t\t        MonthDay: \"F d\",\n\t\t        ShortTime: \"g:i A\",\n\t\t        LongTime: \"g:i:s A\",\n\t\t        SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t        UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t        YearMonth: \"F, Y\"\n\t\t    },\n\t\t    reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: 'show',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-cn.js",
    "content": ";(function($){\n/**\n * jqGrid Chinese Translation\n * 咖啡兔 yanhonglei@gmail.com\n * http://www.kafeitu.me \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n    defaults : {\n        recordtext: \"{0} - {1}\\u3000共 {2} 条\", // 共字前是全角空格\n        emptyrecords: \"无数据显示\",\n        loadtext: \"读取中...\",\n        pgtext : \" {0} 共 {1} 页\"\n    },\n    search : {\n        caption: \"搜索...\",\n        Find: \"查找\",\n        Reset: \"重置\",\n        odata: [{ oper:'eq', text:'等于\\u3000\\u3000'},{ oper:'ne', text:'不等\\u3000\\u3000'},{ oper:'lt', text:'小于\\u3000\\u3000'},{ oper:'le', text:'小于等于'},{ oper:'gt', text:'大于\\u3000\\u3000'},{ oper:'ge', text:'大于等于'},{ oper:'bw', text:'开始于'},{ oper:'bn', text:'不开始于'},{ oper:'in', text:'属于\\u3000\\u3000'},{ oper:'ni', text:'不属于'},{ oper:'ew', text:'结束于'},{ oper:'en', text:'不结束于'},{ oper:'cn', text:'包含\\u3000\\u3000'},{ oper:'nc', text:'不包含'},{ oper:'nu', text:'不存在'},{ oper:'nn', text:'存在'}],\n        groupOps: [ { op: \"AND\", text: \"所有\" },    { op: \"OR\",  text: \"任一\" } ],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n    },\n    edit : {\n        addCaption: \"添加记录\",\n        editCaption: \"编辑记录\",\n        bSubmit: \"提交\",\n        bCancel: \"取消\",\n        bClose: \"关闭\",\n        saveData: \"数据已改变，是否保存？\",\n        bYes : \"是\",\n        bNo : \"否\",\n        bExit : \"取消\",\n        msg: {\n            required:\"此字段必需\",\n            number:\"请输入有效数字\",\n            minValue:\"输值必须大于等于 \",\n            maxValue:\"输值必须小于等于 \",\n            email: \"这不是有效的e-mail地址\",\n            integer: \"请输入有效整数\",\n            date: \"请输入有效时间\",\n            url: \"无效网址。前缀必须为 ('http://' 或 'https://')\",\n            nodefined : \" 未定义！\",\n            novalue : \" 需要返回值！\",\n            customarray : \"自定义函数需要返回数组！\",\n            customfcheck : \"必须有自定义函数!\"\n        }\n    },\n    view : {\n        caption: \"查看记录\",\n        bClose: \"关闭\"\n    },\n    del : {\n        caption: \"删除\",\n        msg: \"删除所选记录？\",\n        bSubmit: \"删除\",\n        bCancel: \"取消\"\n    },\n    nav : {\n        edittext: \"\",\n        edittitle: \"编辑所选记录\",\n        addtext:\"\",\n        addtitle: \"添加新记录\",\n        deltext: \"\",\n        deltitle: \"删除所选记录\",\n        searchtext: \"\",\n        searchtitle: \"查找\",\n        refreshtext: \"\",\n        refreshtitle: \"刷新表格\",\n        alertcap: \"注意\",\n        alerttext: \"请选择记录\",\n        viewtext: \"\",\n        viewtitle: \"查看所选记录\"\n    },\n    col : {\n        caption: \"选择列\",\n        bSubmit: \"确定\",\n        bCancel: \"取消\"\n    },\n    errors : {\n        errcap : \"错误\",\n        nourl : \"没有设置url\",\n        norecords: \"没有要处理的记录\",\n        model : \"colNames 和 colModel 长度不等！\"\n    },\n    formatter : {\n        integer : {thousandsSeparator: \",\", defaultValue: '0'},\n        number : {decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2, defaultValue: '0.00'},\n        currency : {decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n        date : {\n            dayNames:   [\n                \"日\", \"一\", \"二\", \"三\", \"四\", \"五\", \"六\",\n                \"星期日\", \"星期一\", \"星期二\", \"星期三\", \"星期四\", \"星期五\", \"星期六\",\n            ],\n            monthNames: [\n                \"一\", \"二\", \"三\", \"四\", \"五\", \"六\", \"七\", \"八\", \"九\", \"十\", \"十一\", \"十二\",\n                \"一月\", \"二月\", \"三月\", \"四月\", \"五月\", \"六月\", \"七月\", \"八月\", \"九月\", \"十月\", \"十一月\", \"十二月\"\n            ],\n            AmPm : [\"am\",\"pm\",\"上午\",\"下午\"],\n            S: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th';},\n            srcformat: 'Y-m-d',\n            newformat: 'Y-m-d',\n            parseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n            masks : {\n                // see http://php.net/manual/en/function.date.php for PHP format used in jqGrid\n                // and see http://docs.jquery.com/UI/Datepicker/formatDate\n                // and https://github.com/jquery/globalize#dates for alternative formats used frequently\n                // one can find on https://github.com/jquery/globalize/tree/master/lib/cultures many\n                // information about date, time, numbers and currency formats used in different countries\n                // one should just convert the information in PHP format\n                ISO8601Long:\"Y-m-d H:i:s\",\n                ISO8601Short:\"Y-m-d\",\n                // short date:\n                //    n - Numeric representation of a month, without leading zeros\n                //    j - Day of the month without leading zeros\n                //    Y - A full numeric representation of a year, 4 digits\n                // example: 3/1/2012 which means 1 March 2012\n                ShortDate: \"n/j/Y\", // in jQuery UI Datepicker: \"M/d/yyyy\"\n                // long date:\n                //    l - A full textual representation of the day of the week\n                //    F - A full textual representation of a month\n                //    d - Day of the month, 2 digits with leading zeros\n                //    Y - A full numeric representation of a year, 4 digits\n                LongDate: \"l, F d, Y\", // in jQuery UI Datepicker: \"dddd, MMMM dd, yyyy\"\n                // long date with long time:\n                //    l - A full textual representation of the day of the week\n                //    F - A full textual representation of a month\n                //    d - Day of the month, 2 digits with leading zeros\n                //    Y - A full numeric representation of a year, 4 digits\n                //    g - 12-hour format of an hour without leading zeros\n                //    i - Minutes with leading zeros\n                //    s - Seconds, with leading zeros\n                //    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n                FullDateTime: \"l, F d, Y g:i:s A\", // in jQuery UI Datepicker: \"dddd, MMMM dd, yyyy h:mm:ss tt\"\n                // month day:\n                //    F - A full textual representation of a month\n                //    d - Day of the month, 2 digits with leading zeros\n                MonthDay: \"F d\", // in jQuery UI Datepicker: \"MMMM dd\"\n                // short time (without seconds)\n                //    g - 12-hour format of an hour without leading zeros\n                //    i - Minutes with leading zeros\n                //    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n                ShortTime: \"g:i A\", // in jQuery UI Datepicker: \"h:mm tt\"\n                // long time (with seconds)\n                //    g - 12-hour format of an hour without leading zeros\n                //    i - Minutes with leading zeros\n                //    s - Seconds, with leading zeros\n                //    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n                LongTime: \"g:i:s A\", // in jQuery UI Datepicker: \"h:mm:ss tt\"\n                SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n                UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n                // month with year\n                //    Y - A full numeric representation of a year, 4 digits\n                //    F - A full textual representation of a month\n                YearMonth: \"F, Y\" // in jQuery UI Datepicker: \"MMMM, yyyy\"\n            },\n            reformatAfterEdit : false\n        },\n        baseLinkUrl: '',\n        showAction: '',\n        target: '',\n        checkbox : {disabled:true},\n        idName : 'id'\n    }\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-cs.js",
    "content": ";(function($){\n/**\n * jqGrid Czech Translation\n * Pavel Jirak pavel.jirak@jipas.cz\n * doplnil Thomas Wagner xwagne01@stud.fit.vutbr.cz\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Zobrazeno {0} - {1} z {2} záznamů\",\n\t    emptyrecords: \"Nenalezeny žádné záznamy\",\n\t\tloadtext: \"Načítám...\",\n\t\tpgtext : \"Strana {0} z {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Vyhledávám...\",\n\t\tFind: \"Hledat\",\n\t\tReset: \"Reset\",\n\t    odata: [{ oper:'eq', text:\"rovno\"},{ oper:'ne', text:\"nerovno\"},{ oper:'lt', text:\"menší\"},{ oper:'le', text:\"menší nebo rovno\"},{ oper:'gt', text:\"větší\"},{ oper:'ge', text:\"větší nebo rovno\"},{ oper:'bw', text:\"začíná s\"},{ oper:'bn', text:\"nezačíná s\"},{ oper:'in', text:\"je v\"},{ oper:'ni', text:\"není v\"},{ oper:'ew', text:\"končí s\"},{ oper:'en', text:\"nekončí s\"},{ oper:'cn', text:\"obsahuje\"},{ oper:'nc', text:\"neobsahuje\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"všech\" },\t{ op: \"OR\",  text: \"některého z\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Přidat záznam\",\n\t\teditCaption: \"Editace záznamu\",\n\t\tbSubmit: \"Uložit\",\n\t\tbCancel: \"Storno\",\n\t\tbClose: \"Zavřít\",\n\t\tsaveData: \"Data byla změněna! Uložit změny?\",\n\t\tbYes : \"Ano\",\n\t\tbNo : \"Ne\",\n\t\tbExit : \"Zrušit\",\n\t\tmsg: {\n\t\t    required:\"Pole je vyžadováno\",\n\t\t    number:\"Prosím, vložte validní číslo\",\n\t\t    minValue:\"hodnota musí být větší než nebo rovná \",\n\t\t    maxValue:\"hodnota musí být menší než nebo rovná \",\n\t\t    email: \"není validní e-mail\",\n\t\t    integer: \"Prosím, vložte celé číslo\",\n\t\t\tdate: \"Prosím, vložte validní datum\",\n\t\t\turl: \"není platnou URL. Vyžadován prefix ('http://' or 'https://')\",\n\t\t\tnodefined : \" není definován!\",\n\t\t\tnovalue : \" je vyžadována návratová hodnota!\",\n\t\t\tcustomarray : \"Custom function mělá vrátit pole!\",\n\t\t\tcustomfcheck : \"Custom function by měla být přítomna v případě custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Zobrazit záznam\",\n\t    bClose: \"Zavřít\"\n\t},\n\tdel : {\n\t\tcaption: \"Smazat\",\n\t\tmsg: \"Smazat vybraný(é) záznam(y)?\",\n\t\tbSubmit: \"Smazat\",\n\t\tbCancel: \"Storno\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"Editovat vybraný řádek\",\n\t\taddtext:\" \",\n\t\taddtitle: \"Přidat nový řádek\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"Smazat vybraný záznam \",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"Najít záznamy\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Obnovit tabulku\",\n\t\talertcap: \"Varování\",\n\t\talerttext: \"Prosím, vyberte řádek\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Zobrazit vybraný řádek\"\n\t},\n\tcol : {\n\t\tcaption: \"Zobrazit/Skrýt sloupce\",\n\t\tbSubmit: \"Uložit\",\n\t\tbCancel: \"Storno\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Chyba\",\n\t\tnourl : \"Není nastavena url\",\n\t\tnorecords: \"Žádné záznamy ke zpracování\",\n\t\tmodel : \"Délka colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Ne\", \"Po\", \"Út\", \"St\", \"Čt\", \"Pá\", \"So\",\n\t\t\t\t\"Neděle\", \"Pondělí\", \"Úterý\", \"Středa\", \"Čtvrtek\", \"Pátek\", \"Sobota\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Led\", \"Úno\", \"Bře\", \"Dub\", \"Kvě\", \"Čer\", \"Čvc\", \"Srp\", \"Zář\", \"Říj\", \"Lis\", \"Pro\",\n\t\t\t\t\"Leden\", \"Únor\", \"Březen\", \"Duben\", \"Květen\", \"Červen\", \"Červenec\", \"Srpen\", \"Září\", \"Říjen\", \"Listopad\", \"Prosinec\"\n\t\t\t],\n\t\t\tAmPm : [\"do\",\"od\",\"DO\",\"OD\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t        ISO8601Long:\"Y-m-d H:i:s\",\n\t\t        ISO8601Short:\"Y-m-d\",\n\t\t        ShortDate: \"n/j/Y\",\n\t\t        LongDate: \"l, F d, Y\",\n\t\t        FullDateTime: \"l, F d, Y g:i:s A\",\n\t\t        MonthDay: \"F d\",\n\t\t        ShortTime: \"g:i A\",\n\t\t        LongTime: \"g:i:s A\",\n\t\t        SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t        UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t        YearMonth: \"F, Y\"\n\t\t    },\n\t\t    reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-da.js",
    "content": ";(function($){\n/**\n * jqGrid Danish Translation\n * Aesiras A/S\n * http://www.aesiras.dk\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Vis {0} - {1} of {2}\",\n\t    emptyrecords: \"Ingen linjer fundet\",\n\t\tloadtext: \"Henter...\",\n\t\tpgtext : \"Side {0} af {1}\"\n\t},\n\tsearch : {\n\t    caption: \"Søg...\",\n\t    Find: \"Find\",\n\t    Reset: \"Nulstil\",\n\t    odata: [{ oper:'eq', text:\"lig\"},{ oper:'ne', text:\"forskellige fra\"},{ oper:'lt', text:\"mindre\"},{ oper:'le', text:\"mindre eller lig\"},{ oper:'gt', text:\"større\"},{ oper:'ge', text:\"større eller lig\"},{ oper:'bw', text:\"begynder med\"},{ oper:'bn', text:\"begynder ikke med\"},{ oper:'in', text:\"findes i\"},{ oper:'ni', text:\"findes ikke i\"},{ oper:'ew', text:\"ender med\"},{ oper:'en', text:\"ender ikke med\"},{ oper:'cn', text:\"indeholder\"},{ oper:'nc', text:\"indeholder ikke\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"all\" },\t{ op: \"OR\",  text: \"any\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Tilføj\",\n\t    editCaption: \"Ret\",\n\t    bSubmit: \"Send\",\n\t    bCancel: \"Annuller\",\n\t\tbClose: \"Luk\",\n\t\tsaveData: \"Data er ændret. Gem data?\",\n\t\tbYes : \"Ja\",\n\t\tbNo : \"Nej\",\n\t\tbExit : \"Fortryd\",\n\t    msg: {\n\t        required:\"Felt er nødvendigt\",\n\t        number:\"Indtast venligst et validt tal\",\n\t        minValue:\"værdi skal være større end eller lig med\",\n\t        maxValue:\"værdi skal være mindre end eller lig med\",\n\t        email: \"er ikke en gyldig email\",\n\t        integer: \"Indtast venligst et gyldigt heltal\",\n\t\t\tdate: \"Indtast venligst en gyldig datoværdi\",\n\t\t\turl: \"er ugyldig URL. Prefix mangler ('http://' or 'https://')\",\n\t\t\tnodefined : \" er ikke defineret!\",\n\t\t\tnovalue : \" returværdi kræves!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Vis linje\",\n\t    bClose: \"Luk\"\n\t},\n\tdel : {\n\t    caption: \"Slet\",\n\t    msg: \"Slet valgte linje(r)?\",\n\t    bSubmit: \"Slet\",\n\t    bCancel: \"Fortryd\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Rediger valgte linje\",\n\t\taddtext:\" \",\n\t    addtitle: \"Tilføj ny linje\",\n\t    deltext: \" \",\n\t    deltitle: \"Slet valgte linje\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Find linjer\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Indlæs igen\",\n\t    alertcap: \"Advarsel\",\n\t    alerttext: \"Vælg venligst linje\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Vis valgte linje\"\n\t},\n\tcol : {\n\t    caption: \"Vis/skjul kolonner\",\n\t    bSubmit: \"Opdatere\",\n\t    bCancel: \"Fortryd\"\n\t},\n\terrors : {\n\t\terrcap : \"Fejl\",\n\t\tnourl : \"Ingen url valgt\",\n\t\tnorecords: \"Ingen linjer at behandle\",\n\t    model : \"colNames og colModel har ikke samme længde!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Søn\", \"Man\", \"Tir\", \"Ons\", \"Tor\", \"Fre\", \"Lør\",\n\t\t\t\t\"Søndag\", \"Mandag\", \"Tirsdag\", \"Onsdag\", \"Torsdag\", \"Fredag\", \"Lørdag\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Maj\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Okt\", \"Nov\", \"Dec\",\n\t\t\t\t\"Januar\", \"Februar\", \"Marts\", \"April\", \"Maj\", \"Juni\", \"Juli\", \"August\", \"September\", \"Oktober\", \"November\", \"December\"\n\t\t\t],\n\t\t\tAmPm : [\"\",\"\",\"\",\"\"],\n\t\t\tS: function (j) {return '.'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"j/n/Y\",\n\t            LongDate: \"l d. F Y\",\n\t            FullDateTime: \"l d F Y G:i:s\",\n\t            MonthDay: \"d. F\",\n\t            ShortTime: \"G:i\",\n\t            LongTime: \"G:i:s\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n// DA\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-de.js",
    "content": ";(function($){\n/**\n * jqGrid German Translation\n * Version 1.0.0 (developed for jQuery Grid 3.3.1)\n * Olaf Klöppel opensource@blue-hit.de\n * http://blue-hit.de/ \n *\n * Updated for jqGrid 3.8\n * Andreas Flack\n * http://www.contentcontrol-berlin.de\n *\n * Updated for jQuery 4.4\n * Oleg Kiriljuk oleg.kiriljuk@ok-soft-gmbh.com\n * the format corresponds now the format from\n * https://github.com/jquery/globalize/blob/master/lib/cultures/globalize.culture.de.js\n *\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Zeige {0} - {1} von {2}\",\n\t\temptyrecords: \"Keine Datensätze vorhanden\",\n\t\tloadtext: \"Lädt...\",\n\t\tpgtext : \"Seite {0} von {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Suche...\",\n\t\tFind: \"Suchen\",\n\t\tReset: \"Zurücksetzen\",\n\t\todata: [{ oper:'eq', text:\"gleich\"},{ oper:'ne', text:\"ungleich\"},{ oper:'lt', text:\"kleiner\"},{ oper:'le', text:\"kleiner gleich\"},{ oper:'gt', text:\"größer\"},{ oper:'ge', text:\"größer gleich\"},{ oper:'bw', text:\"beginnt mit\"},{ oper:'bn', text:\"beginnt nicht mit\"},{ oper:'in', text:\"ist in\"},{ oper:'ni', text:\"ist nicht in\"},{ oper:'ew', text:\"endet mit\"},{ oper:'en', text:\"endet nicht mit\"},{ oper:'cn', text:\"enthält\"},{ oper:'nc', text:\"enthält nicht\"}, { oper:'nu', text:\"ist Null\" }, { oper:'nn', text:\"ist nicht Null\" }],\n\t\tgroupOps: [{ op: \"AND\", text: \"alle\" },{ op: \"OR\", text: \"mindestens eine\" }],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Datensatz hinzufügen\",\n\t\teditCaption: \"Datensatz bearbeiten\",\n\t\tbSubmit: \"Speichern\",\n\t\tbCancel: \"Abbrechen\",\n\t\tbClose: \"Schließen\",\n\t\tsaveData: \"Daten wurden geändert! Änderungen speichern?\",\n\t\tbYes : \"ja\",\n\t\tbNo : \"nein\",\n\t\tbExit : \"abbrechen\",\n\t\tmsg: {\n\t\t\trequired:\"Feld ist erforderlich\",\n\t\t\tnumber: \"Bitte geben Sie eine Zahl ein\",\n\t\t\tminValue:\"Wert muss größer oder gleich sein, als \",\n\t\t\tmaxValue:\"Wert muss kleiner oder gleich sein, als \",\n\t\t\temail: \"ist keine gültige E-Mail-Adresse\",\n\t\t\tinteger: \"Bitte geben Sie eine Ganzzahl ein\",\n\t\t\tdate: \"Bitte geben Sie ein gültiges Datum ein\",\n\t\t\turl: \"ist keine gültige URL. Präfix muss eingegeben werden ('http://' oder 'https://')\",\n\t\t\tnodefined : \" ist nicht definiert!\",\n\t\t\tnovalue : \" Rückgabewert ist erforderlich!\",\n\t\t\tcustomarray : \"Benutzerdefinierte Funktion sollte ein Array zurückgeben!\",\n\t\t\tcustomfcheck : \"Benutzerdefinierte Funktion sollte im Falle der benutzerdefinierten Überprüfung vorhanden sein!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Datensatz anzeigen\",\n\t\tbClose: \"Schließen\"\n\t},\n\tdel : {\n\t\tcaption: \"Löschen\",\n\t\tmsg: \"Ausgewählte Datensätze löschen?\",\n\t\tbSubmit: \"Löschen\",\n\t\tbCancel: \"Abbrechen\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"Ausgewählte Zeile editieren\",\n\t\taddtext:\" \",\n\t\taddtitle: \"Neue Zeile einfügen\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"Ausgewählte Zeile löschen\",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"Datensatz suchen\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Tabelle neu laden\",\n\t\talertcap: \"Warnung\",\n\t\talerttext: \"Bitte Zeile auswählen\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Ausgewählte Zeile anzeigen\"\n\t},\n\tcol : {\n\t\tcaption: \"Spalten auswählen\",\n\t\tbSubmit: \"Speichern\",\n\t\tbCancel: \"Abbrechen\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Fehler\",\n\t\tnourl : \"Keine URL angegeben\",\n\t\tnorecords: \"Keine Datensätze zu bearbeiten\",\n\t\tmodel : \"colNames und colModel sind unterschiedlich lang!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \".\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"\", suffix:\" €\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"So\", \"Mo\", \"Di\", \"Mi\", \"Do\", \"Fr\", \"Sa\",\n\t\t\t\t\"Sonntag\", \"Montag\", \"Dienstag\", \"Mittwoch\", \"Donnerstag\", \"Freitag\", \"Samstag\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Mai\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Okt\", \"Nov\", \"Dez\",\n\t\t\t\t\"Januar\", \"Februar\", \"März\", \"April\", \"Mai\", \"Juni\", \"Juli\", \"August\", \"September\", \"Oktober\", \"November\", \"Dezember\"\n\t\t\t],\n\t\t\tAmPm : [\"\",\"\",\"\",\"\"],\n\t\t\tS: function () {return '.';}, // one can also use 'er' instead of '.' but one have to use additional word like 'der' or 'den' before\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd.m.Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\t// see http://php.net/manual/en/function.date.php for PHP format used in jqGrid\n\t\t\t\t// and see http://docs.jquery.com/UI/Datepicker/formatDate\n\t\t\t\t// and https://github.com/jquery/globalize#dates for alternative formats used frequently\n\t\t\t\tISO8601Long: \"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short: \"Y-m-d\",\n\t\t\t\t// short date:\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    m - Numeric representation of a month, with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tShortDate: \"d.m.Y\",\t// in jQuery UI Datepicker: \"dd.MM.yyyy\"\n\t\t\t\t// long date:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tLongDate: \"l, j. F Y\", // in jQuery UI Datepicker: \"dddd, d. MMMM yyyy\"\n\t\t\t\t// long date with long time:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\tFullDateTime: \"l, j. F Y H:i:s\", // in jQuery UI Datepicker: \"dddd, d. MMMM yyyy HH:mm:ss\"\n\t\t\t\t// month day:\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\tMonthDay: \"d F\", // in jQuery UI Datepicker: \"dd MMMM\"\n\t\t\t\t// short time (without seconds)\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\tShortTime: \"H:i\", // in jQuery UI Datepicker: \"HH:mm\"\n\t\t\t\t// long time (with seconds)\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\tLongTime: \"H:i:s\", // in jQuery UI Datepicker: \"HH:mm:ss\"\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\t// month with year\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tYearMonth: \"F Y\" // in jQuery UI Datepicker: \"MMMM yyyy\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-dk.js",
    "content": ";(function($){\n/**\n * jqGrid Danish Translation\n * Kaare Rasmussen kjs@jasonic.dk\n * http://jasonic.dk/blog \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = {\n\tdefaults : {\n\t\trecordtext: \"View {0} - {1} of {2}\",\n\t    emptyrecords: \"No records to view\",\n\t\tloadtext: \"Loading...\",\n\t\tpgtext : \"Page {0} of {1}\"\n\t},\n\tsearch : {\n\t    caption: \"Søg...\",\n\t    Find: \"Find\",\n\t    Reset: \"Nulstil\",\n\t    odata: [{ oper:'eq', text:'equal'},{ oper:'ne', text:'not equal'},{ oper:'lt', text:'less'},{ oper:'le', text:'less or equal'},{ oper:'gt', text:'greater'},{ oper:'ge', text:'greater or equal'},{ oper:'bw', text:'begins with'},{ oper:'bn', text:'does not begin with'},{ oper:'in', text:'is in'},{ oper:'ni', text:'is not in'},{ oper:'ew', text:'ends with'},{ oper:'en', text:'does not end with'},{ oper:'cn', text:'contains'},{ oper:'nc', text:'does not contain'},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"all\" },\t{ op: \"OR\",  text: \"any\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Tilføj\",\n\t    editCaption: \"Ret\",\n\t    bSubmit: \"Send\",\n\t    bCancel: \"Annuller\",\n\t\tbClose: \"Luk\",\n\t\tsaveData: \"Data has been changed! Save changes?\",\n\t\tbYes : \"Yes\",\n\t\tbNo : \"No\",\n\t\tbExit : \"Cancel\",\n\t    msg: {\n\t        required:\"Felt er nødvendigt\",\n\t        number:\"Indtast venligst et validt tal\",\n\t        minValue:\"værdi skal være større end eller lig med\",\n\t        maxValue:\"værdi skal være mindre end eller lig med\",\n\t        email: \"er ikke en valid email\",\n\t        integer: \"Indtast venligst et validt heltalt\",\n\t\t\tdate: \"Indtast venligst en valid datoværdi\",\n\t\t\turl: \"is not a valid URL. Prefix required ('http://' or 'https://')\",\n\t\t\tnodefined : \" is not defined!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"View Record\",\n\t    bClose: \"Close\"\n\t},\n\tdel : {\n\t    caption: \"Slet\",\n\t    msg: \"Slet valgte række(r)?\",\n\t    bSubmit: \"Slet\",\n\t    bCancel: \"Annuller\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Rediger valgte række\",\n\t\taddtext:\" \",\n\t    addtitle: \"Tilføj ny række\",\n\t    deltext: \" \",\n\t    deltitle: \"Slet valgte række\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Find poster\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Indlæs igen\",\n\t    alertcap: \"Advarsel\",\n\t    alerttext: \"Vælg venligst række\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"View selected row\"\n\t},\n\tcol : {\n\t    caption: \"Vis/skjul kolonner\",\n\t    bSubmit: \"Send\",\n\t    bCancel: \"Annuller\"\n\t},\n\terrors : {\n\t\terrcap : \"Fejl\",\n\t\tnourl : \"Ingel url valgt\",\n\t\tnorecords: \"Ingen poster at behandle\",\n\t    model : \"colNames og colModel har ikke samme længde!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Søn\", \"Man\", \"Tirs\", \"Ons\", \"Tors\", \"Fre\", \"Lør\",\n\t\t\t\t\"Søndag\", \"Mandag\", \"Tirsdag\", \"Onsdag\", \"Torsdag\", \"Fredag\", \"Lørdag\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Maj\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Okt\", \"Nov\", \"Dec\",\n\t\t\t\t\"Januar\", \"Februar\", \"Marts\", \"April\", \"Maj\", \"Juni\", \"Juli\", \"August\", \"September\", \"Oktober\", \"November\", \"December\"\n\t\t\t],\n\t\t\tAmPm : [\"\",\"\",\"\",\"\"],\n\t\t\tS: function (j) {return '.'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"j/n/Y\",\n\t            LongDate: \"l d. F Y\",\n\t            FullDateTime: \"l d F Y G:i:s\",\n\t            MonthDay: \"d. F\",\n\t            ShortTime: \"G:i\",\n\t            LongTime: \"G:i:s\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n};\n// DK\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-el.js",
    "content": ";(function($){\n/**\n * jqGrid Greek (el) Translation\n * Alex Cicovic\n * http://www.alexcicovic.com\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"View {0} - {1} of {2}\",\n\t    emptyrecords: \"No records to view\",\n\t\tloadtext: \"Φόρτωση...\",\n\t\tpgtext : \"Page {0} of {1}\"\n\t},\n\tsearch : {\n\t    caption: \"Αναζήτηση...\",\n\t    Find: \"Εύρεση\",\n\t    Reset: \"Επαναφορά\",\n\t    odata: [{ oper:'eq', text:'equal'},{ oper:'ne', text:'not equal'},{ oper:'lt', text:'less'},{ oper:'le', text:'less or equal'},{ oper:'gt', text:'greater'},{ oper:'ge', text:'greater or equal'},{ oper:'bw', text:'begins with'},{ oper:'bn', text:'does not begin with'},{ oper:'in', text:'is in'},{ oper:'ni', text:'is not in'},{ oper:'ew', text:'ends with'},{ oper:'en', text:'does not end with'},{ oper:'cn', text:'contains'},{ oper:'nc', text:'does not contain'},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"all\" },\t{ op: \"OR\",  text: \"any\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Εισαγωγή Εγγραφής\",\n\t    editCaption: \"Επεξεργασία Εγγραφής\",\n\t    bSubmit: \"Καταχώρηση\",\n\t    bCancel: \"Άκυρο\",\n\t\tbClose: \"Κλείσιμο\",\n\t\tsaveData: \"Data has been changed! Save changes?\",\n\t\tbYes : \"Yes\",\n\t\tbNo : \"No\",\n\t\tbExit : \"Cancel\",\n\t    msg: {\n\t        required:\"Το πεδίο είναι απαραίτητο\",\n\t        number:\"Το πεδίο δέχεται μόνο αριθμούς\",\n\t        minValue:\"Η τιμή πρέπει να είναι μεγαλύτερη ή ίση του \",\n\t        maxValue:\"Η τιμή πρέπει να είναι μικρότερη ή ίση του \",\n\t        email: \"Η διεύθυνση e-mail δεν είναι έγκυρη\",\n\t        integer: \"Το πεδίο δέχεται μόνο ακέραιους αριθμούς\",\n\t\t\turl: \"is not a valid URL. Prefix required ('http://' or 'https://')\",\n\t\t\tnodefined : \" is not defined!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"View Record\",\n\t    bClose: \"Close\"\n\t},\n\tdel : {\n\t    caption: \"Διαγραφή\",\n\t    msg: \"Διαγραφή των επιλεγμένων εγγραφών;\",\n\t    bSubmit: \"Ναι\",\n\t    bCancel: \"Άκυρο\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Επεξεργασία επιλεγμένης εγγραφής\",\n\t\taddtext:\" \",\n\t    addtitle: \"Εισαγωγή νέας εγγραφής\",\n\t    deltext: \" \",\n\t    deltitle: \"Διαγραφή επιλεγμένης εγγραφής\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Εύρεση Εγγραφών\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Ανανέωση Πίνακα\",\n\t    alertcap: \"Προσοχή\",\n\t    alerttext: \"Δεν έχετε επιλέξει εγγραφή\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"View selected row\"\n\t},\n\tcol : {\n\t    caption: \"Εμφάνιση / Απόκρυψη Στηλών\",\n\t    bSubmit: \"ΟΚ\",\n\t    bCancel: \"Άκυρο\"\n\t},\n\terrors : {\n\t\terrcap : \"Σφάλμα\",\n\t\tnourl : \"Δεν έχει δοθεί διεύθυνση χειρισμού για τη συγκεκριμένη ενέργεια\",\n\t\tnorecords: \"Δεν υπάρχουν εγγραφές προς επεξεργασία\",\n\t\tmodel : \"Άνισος αριθμός πεδίων colNames/colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Κυρ\", \"Δευ\", \"Τρι\", \"Τετ\", \"Πεμ\", \"Παρ\", \"Σαβ\",\n\t\t\t\t\"Κυριακή\", \"Δευτέρα\", \"Τρίτη\", \"Τετάρτη\", \"Πέμπτη\", \"Παρασκευή\", \"Σάββατο\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Ιαν\", \"Φεβ\", \"Μαρ\", \"Απρ\", \"Μαι\", \"Ιουν\", \"Ιουλ\", \"Αυγ\", \"Σεπ\", \"Οκτ\", \"Νοε\", \"Δεκ\",\n\t\t\t\t\"Ιανουάριος\", \"Φεβρουάριος\", \"Μάρτιος\", \"Απρίλιος\", \"Μάιος\", \"Ιούνιος\", \"Ιούλιος\", \"Αύγουστος\", \"Σεπτέμβριος\", \"Οκτώβριος\", \"Νοέμβριος\", \"Δεκέμβριος\"\n\t\t\t],\n\t\t\tAmPm : [\"πμ\",\"μμ\",\"ΠΜ\",\"ΜΜ\"],\n\t\t\tS: function (j) {return j == 1 || j > 1 ? ['η'][Math.min((j - 1) % 10, 3)] : ''},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-en.js",
    "content": ";(function($){\n/**\n * jqGrid English Translation\n * Tony Tomov tony@trirand.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"View {0} - {1} of {2}\",\n\t\temptyrecords: \"No records to view\",\n\t\tloadtext: \"Loading...\",\n\t\tpgtext : \"Page {0} of {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Search...\",\n\t\tFind: \"Find\",\n\t\tReset: \"Reset\",\n\t\todata: [{ oper:'eq', text:'equal'},{ oper:'ne', text:'not equal'},{ oper:'lt', text:'less'},{ oper:'le', text:'less or equal'},{ oper:'gt', text:'greater'},{ oper:'ge', text:'greater or equal'},{ oper:'bw', text:'begins with'},{ oper:'bn', text:'does not begin with'},{ oper:'in', text:'is in'},{ oper:'ni', text:'is not in'},{ oper:'ew', text:'ends with'},{ oper:'en', text:'does not end with'},{ oper:'cn', text:'contains'},{ oper:'nc', text:'does not contain'},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [{ op: \"AND\", text: \"all\" },{ op: \"OR\",  text: \"any\" }],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Add Record\",\n\t\teditCaption: \"Edit Record\",\n\t\tbSubmit: \"Submit\",\n\t\tbCancel: \"Cancel\",\n\t\tbClose: \"Close\",\n\t\tsaveData: \"Data has been changed! Save changes?\",\n\t\tbYes : \"Yes\",\n\t\tbNo : \"No\",\n\t\tbExit : \"Cancel\",\n\t\tmsg: {\n\t\t\trequired:\"Field is required\",\n\t\t\tnumber:\"Please, enter valid number\",\n\t\t\tminValue:\"value must be greater than or equal to \",\n\t\t\tmaxValue:\"value must be less than or equal to\",\n\t\t\temail: \"is not a valid e-mail\",\n\t\t\tinteger: \"Please, enter valid integer value\",\n\t\t\tdate: \"Please, enter valid date value\",\n\t\t\turl: \"is not a valid URL. Prefix required ('http://' or 'https://')\",\n\t\t\tnodefined : \" is not defined!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"View Record\",\n\t\tbClose: \"Close\"\n\t},\n\tdel : {\n\t\tcaption: \"Delete\",\n\t\tmsg: \"Delete selected record(s)?\",\n\t\tbSubmit: \"Delete\",\n\t\tbCancel: \"Cancel\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Edit selected row\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Add new row\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Delete selected row\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Find records\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Reload Grid\",\n\t\talertcap: \"Warning\",\n\t\talerttext: \"Please, select row\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"View selected row\"\n\t},\n\tcol : {\n\t\tcaption: \"Select columns\",\n\t\tbSubmit: \"Ok\",\n\t\tbCancel: \"Cancel\"\n\t},\n\terrors : {\n\t\terrcap : \"Error\",\n\t\tnourl : \"No url is set\",\n\t\tnorecords: \"No records to process\",\n\t\tmodel : \"Length of colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \",\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thr\", \"Fri\", \"Sat\",\n\t\t\t\t\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\",\n\t\t\t\t\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'n/j/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\t// see http://php.net/manual/en/function.date.php for PHP format used in jqGrid\n\t\t\t\t// and see http://docs.jquery.com/UI/Datepicker/formatDate\n\t\t\t\t// and https://github.com/jquery/globalize#dates for alternative formats used frequently\n\t\t\t\t// one can find on https://github.com/jquery/globalize/tree/master/lib/cultures many\n\t\t\t\t// information about date, time, numbers and currency formats used in different countries\n\t\t\t\t// one should just convert the information in PHP format\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\t// short date:\n\t\t\t\t//    n - Numeric representation of a month, without leading zeros\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t// example: 3/1/2012 which means 1 March 2012\n\t\t\t\tShortDate: \"n/j/Y\", // in jQuery UI Datepicker: \"M/d/yyyy\"\n\t\t\t\t// long date:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tLongDate: \"l, F d, Y\", // in jQuery UI Datepicker: \"dddd, MMMM dd, yyyy\"\n\t\t\t\t// long date with long time:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\", // in jQuery UI Datepicker: \"dddd, MMMM dd, yyyy h:mm:ss tt\"\n\t\t\t\t// month day:\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\tMonthDay: \"F d\", // in jQuery UI Datepicker: \"MMMM dd\"\n\t\t\t\t// short time (without seconds)\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tShortTime: \"g:i A\", // in jQuery UI Datepicker: \"h:mm tt\"\n\t\t\t\t// long time (with seconds)\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tLongTime: \"g:i:s A\", // in jQuery UI Datepicker: \"h:mm:ss tt\"\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\t// month with year\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\tYearMonth: \"F, Y\" // in jQuery UI Datepicker: \"MMMM, yyyy\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-es.js",
    "content": ";(function($){\n/**\n * jqGrid Spanish Translation\n * Traduccion jqGrid en Español por Yamil Bracho\n * Traduccion corregida y ampliada por Faserline, S.L. \n * http://www.faserline.com\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Mostrando {0} - {1} de {2}\",\n\t    emptyrecords: \"Sin registros que mostrar\",\n\t\tloadtext: \"Cargando...\",\n\t\tpgtext : \"Página {0} de {1}\"\n\t},\n\tsearch : {\n\t    caption: \"Búsqueda...\",\n\t    Find: \"Buscar\",\n\t    Reset: \"Limpiar\",\n\t    odata: [{ oper:'eq', text:\"igual \"},{ oper:'ne', text:\"no igual a\"},{ oper:'lt', text:\"menor que\"},{ oper:'le', text:\"menor o igual que\"},{ oper:'gt', text:\"mayor que\"},{ oper:'ge', text:\"mayor o igual a\"},{ oper:'bw', text:\"empiece por\"},{ oper:'bn', text:\"no empiece por\"},{ oper:'in', text:\"está en\"},{ oper:'ni', text:\"no está en\"},{ oper:'ew', text:\"termina por\"},{ oper:'en', text:\"no termina por\"},{ oper:'cn', text:\"contiene\"},{ oper:'nc', text:\"no contiene\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"todo\" },\t{ op: \"OR\",  text: \"cualquier\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Agregar registro\",\n\t    editCaption: \"Modificar registro\",\n\t    bSubmit: \"Guardar\",\n\t    bCancel: \"Cancelar\",\n\t\tbClose: \"Cerrar\",\n\t\tsaveData: \"Se han modificado los datos, ¿guardar cambios?\",\n\t\tbYes : \"Si\",\n\t\tbNo : \"No\",\n\t\tbExit : \"Cancelar\",\n\t    msg: {\n\t        required:\"Campo obligatorio\",\n\t        number:\"Introduzca un número\",\n\t        minValue:\"El valor debe ser mayor o igual a \",\n\t        maxValue:\"El valor debe ser menor o igual a \",\n\t        email: \"no es una dirección de correo válida\",\n\t        integer: \"Introduzca un valor entero\",\n\t\t\tdate: \"Introduza una fecha correcta \",\n\t\t\turl: \"no es una URL válida. Prefijo requerido ('http://' or 'https://')\",\n\t\t\tnodefined : \" no está definido.\",\n\t\t\tnovalue : \" valor de retorno es requerido.\",\n\t\t\tcustomarray : \"La función personalizada debe devolver un array.\",\n\t\t\tcustomfcheck : \"La función personalizada debe estar presente en el caso de validación personalizada.\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Consultar registro\",\n\t    bClose: \"Cerrar\"\n\t},\n\tdel : {\n\t    caption: \"Eliminar\",\n\t    msg: \"¿Desea eliminar los registros seleccionados?\",\n\t    bSubmit: \"Eliminar\",\n\t    bCancel: \"Cancelar\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Modificar fila seleccionada\",\n\t\taddtext:\" \",\n\t    addtitle: \"Agregar nueva fila\",\n\t    deltext: \" \",\n\t    deltitle: \"Eliminar fila seleccionada\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Buscar información\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Recargar datos\",\n\t    alertcap: \"Aviso\",\n\t    alerttext: \"Seleccione una fila\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Ver fila seleccionada\"\n\t},\n\tcol : {\n\t    caption: \"Mostrar/ocultar columnas\",\n\t    bSubmit: \"Enviar\",\n\t    bCancel: \"Cancelar\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Error\",\n\t\tnourl : \"No se ha especificado una URL\",\n\t\tnorecords: \"No hay datos para procesar\",\n\t    model : \"Las columnas de nombres son diferentes de las columnas de modelo\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \".\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Do\", \"Lu\", \"Ma\", \"Mi\", \"Ju\", \"Vi\", \"Sa\",\n\t\t\t\t\"Domingo\", \"Lunes\", \"Martes\", \"Miercoles\", \"Jueves\", \"Viernes\", \"Sabado\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Ene\", \"Feb\", \"Mar\", \"Abr\", \"May\", \"Jun\", \"Jul\", \"Ago\", \"Sep\", \"Oct\", \"Nov\", \"Dic\",\n\t\t\t\t\"Enero\", \"Febrero\", \"Marzo\", \"Abril\", \"Mayo\", \"Junio\", \"Julio\", \"Agosto\", \"Septiembre\", \"Octubre\", \"Noviembre\", \"Diciembre\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd-m-Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-fa.js",
    "content": ";(function ($) {\n/**\n * jqGrid Persian Translation\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n\t$.jgrid = $.jgrid || {};\n\t$.extend($.jgrid,{\n        defaults: {\n            recordtext: \"نمابش {0} - {1} از {2}\",\n            emptyrecords: \"رکوردی یافت نشد\",\n            loadtext: \"بارگزاري...\",\n            pgtext: \"صفحه {0} از {1}\"\n        },\n        search: {\n            caption: \"جستجو...\",\n            Find: \"يافته ها\",\n            Reset: \"از نو\",\n            odata: [{ oper:'eq', text:\"برابر\"},{ oper:'ne', text:\"نا برابر\"},{ oper:'lt', text:\"به\"},{ oper:'le', text:\"کوچکتر\"},{ oper:'gt', text:\"از\"},{ oper:'ge', text:\"بزرگتر\"},{ oper:'bw', text:\"شروع با\"},{ oper:'bn', text:\"شروع نشود با\"},{ oper:'in', text:\"نباشد\"},{ oper:'ni', text:\"عضو این نباشد\"},{ oper:'ew', text:\"اتمام با\"},{ oper:'en', text:\"تمام نشود با\"},{ oper:'cn', text:\"حاوی\"},{ oper:'nc', text:\"نباشد حاوی\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n            groupOps: [{\n                op: \"AND\",\n                text: \"کل\"\n            },\n            {\n                op: \"OR\",\n                text: \"مجموع\"\n            }],\n\t\t\toperandTitle : \"Click to select search operation.\",\n\t\t\tresetTitle : \"Reset Search Value\"\n        },\n        edit: {\n            addCaption: \"اضافه کردن رکورد\",\n            editCaption: \"ويرايش رکورد\",\n            bSubmit: \"ثبت\",\n            bCancel: \"انصراف\",\n            bClose: \"بستن\",\n            saveData: \"دیتا تعییر کرد! ذخیره شود؟\",\n            bYes: \"بله\",\n            bNo: \"خیر\",\n            bExit: \"انصراف\",\n            msg: {\n                required: \"فيلدها بايد ختما پر شوند\",\n                number: \"لطفا عدد وعتبر وارد کنيد\",\n                minValue: \"مقدار وارد شده بايد بزرگتر يا مساوي با\",\n                maxValue: \"مقدار وارد شده بايد کوچکتر يا مساوي\",\n                email: \"پست الکترونيک وارد شده معتبر نيست\",\n                integer: \"لطفا يک عدد صحيح وارد کنيد\",\n                date: \"لطفا يک تاريخ معتبر وارد کنيد\",\n                url: \"این آدرس صحیح نمی باشد. پیشوند نیاز است ('http://' یا 'https://')\",\n                nodefined: \" تعریف نشده!\",\n                novalue: \" مقدار برگشتی اجباری است!\",\n                customarray: \"تابع شما باید مقدار آرایه داشته باشد!\",\n                customfcheck: \"برای داشتن متد دلخواه شما باید سطون با چکینگ دلخواه داشته باشید!\"\n            }\n        },\n        view: {\n            caption: \"نمایش رکورد\",\n            bClose: \"بستن\"\n        },\n        del: {\n            caption: \"حذف\",\n            msg: \"از حذف گزينه هاي انتخاب شده مطمئن هستيد؟\",\n            bSubmit: \"حذف\",\n            bCancel: \"ابطال\"\n        },\n        nav: {\n            edittext: \" \",\n            edittitle: \"ويرايش رديف هاي انتخاب شده\",\n            addtext: \" \",\n            addtitle: \"افزودن رديف جديد\",\n            deltext: \" \",\n            deltitle: \"حذف ردبف هاي انتیاب شده\",\n            searchtext: \" \",\n            searchtitle: \"جستجوي رديف\",\n            refreshtext: \"\",\n            refreshtitle: \"بازيابي مجدد صفحه\",\n            alertcap: \"اخطار\",\n            alerttext: \"لطفا يک رديف انتخاب کنيد\",\n            viewtext: \"\",\n            viewtitle: \"نمایش رکورد های انتخاب شده\"\n        },\n        col: {\n            caption: \"نمايش/عدم نمايش ستون\",\n            bSubmit: \"ثبت\",\n            bCancel: \"انصراف\"\n        },\n        errors: {\n            errcap: \"خطا\",\n            nourl: \"هيچ آدرسي تنظيم نشده است\",\n            norecords: \"هيچ رکوردي براي پردازش موجود نيست\",\n            model: \"طول نام ستون ها محالف ستون هاي مدل مي باشد!\"\n        },\n        formatter: {\n            integer: {\n                thousandsSeparator: \" \",\n                defaultValue: \"0\"\n            },\n            number: {\n                decimalSeparator: \".\",\n                thousandsSeparator: \" \",\n                decimalPlaces: 2,\n                defaultValue: \"0.00\"\n            },\n            currency: {\n                decimalSeparator: \".\",\n                thousandsSeparator: \" \",\n                decimalPlaces: 2,\n                prefix: \"\",\n                suffix: \"\",\n                defaultValue: \"0\"\n            },\n            date: {\n                dayNames: [\"يک\", \"دو\", \"سه\", \"چهار\", \"پنج\", \"جمع\", \"شنب\", \"يکشنبه\", \"دوشنبه\", \"سه شنبه\", \"چهارشنبه\", \"پنجشنبه\", \"جمعه\", \"شنبه\"],\n                monthNames: [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\", \"ژانويه\", \"فوريه\", \"مارس\", \"آوريل\", \"مه\", \"ژوئن\", \"ژوئيه\", \"اوت\", \"سپتامبر\", \"اکتبر\", \"نوامبر\", \"December\"],\n                AmPm: [\"ب.ظ\", \"ب.ظ\", \"ق.ظ\", \"ق.ظ\"],\n                S: function (b) {\n                    return b < 11 || b > 13 ? [\"st\", \"nd\", \"rd\", \"th\"][Math.min((b - 1) % 10, 3)] : \"th\"\n                },\n                srcformat: \"Y-m-d\",\n                newformat: \"d/m/Y\",\n\t\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n                masks: {\n                    ISO8601Long: \"Y-m-d H:i:s\",\n                    ISO8601Short: \"Y-m-d\",\n                    ShortDate: \"n/j/Y\",\n                    LongDate: \"l, F d, Y\",\n                    FullDateTime: \"l, F d, Y g:i:s A\",\n                    MonthDay: \"F d\",\n                    ShortTime: \"g:i A\",\n                    LongTime: \"g:i:s A\",\n                    SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n                    UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n                    YearMonth: \"F, Y\"\n                },\n                reformatAfterEdit: false\n            },\n            baseLinkUrl: \"\",\n            showAction: \"نمايش\",\n            target: \"\",\n            checkbox: {\n                disabled: true\n            },\n            idName: \"id\"\n        }\n    });\n})(jQuery);"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-fi.js",
    "content": ";(function($){\n/**\n * jqGrid (fi) Finnish Translation\n * Jukka Inkeri  awot.fi  2010-05-19\n * Alex Grönholm  alex.gronholm@nextday.fi  2011-05-18\n * http://awot.fi\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults: {\n\t\trecordtext: \"Rivit {0} - {1} / {2}\",\n\t    emptyrecords: \"Ei n&auml;ytett&auml;vi&auml;\",\n\t\tloadtext: \"Haetaan...\",\n\t\tpgtext: \"Sivu {0} / {1}\"\n\t},\n\tsearch: {\n\t    caption: \"Etsi...\",\n\t    Find: \"Etsi\",\n\t    Reset: \"Tyhjenn&auml;\",\n\t    odata: [{ oper:'eq', text:\"on\"},{ oper:'ne', text:\"ei ole\"},{ oper:'lt', text:\"pienempi\"},{ oper:'le', text:\"pienempi tai yht&auml;suuri\"},{ oper:'gt', text:\"suurempi\"},{ oper:'ge', text:\"suurempi tai yht&auml;suuri\"},{ oper:'bw', text:\"alkaa\"},{ oper:'bn', text:\"ei ala\"},{ oper:'in', text:\"joukossa\"},{ oper:'ni', text:\"ei joukossa\"},{ oper:'ew', text:\"loppuu\"},{ oper:'en', text:\"ei lopu\"},{ oper:'cn', text:\"sis&auml;lt&auml;&auml;\"},{ oper:'nc', text:\"ei sis&auml;ll&auml;\"},{ oper:'nu', text:\"on tyhj&auml;\"},{ oper:'nn', text:\"ei ole tyhj&auml;\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"kaikki\" }, { op: \"OR\", text: \"mik&auml; tahansa\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\t\t\n\t},\n\tedit: {\n\t    addCaption: \"Uusi rivi\",\n\t    editCaption: \"Muokkaa rivi&auml;\",\n\t    bSubmit: \"OK\",\n\t    bCancel: \"Peru\",\n\t\tbClose: \"Sulje\",\n\t\tsaveData: \"Tietoja muutettu! Tallennetaanko?\",\n\t\tbYes: \"Kyll&auml;\",\n\t\tbNo: \"Ei\",\n\t\tbExit: \"Peru\",\n\t    msg: {\n\t        required: \"pakollinen\",\n\t        number: \"Anna kelvollinen nro\",\n\t        minValue: \"arvon oltava suurempi tai yht&auml;suuri kuin \",\n\t        maxValue: \"arvon oltava pienempi tai yht&auml;suuri kuin \",\n\t        email: \"ei ole kelvollinen s&auml;postiosoite\",\n\t        integer: \"Anna kelvollinen kokonaisluku\",\n\t\t\tdate: \"Anna kelvollinen pvm\",\n\t\t\turl: \"Ei ole kelvollinen linkki(URL). Alku oltava ('http://' tai 'https://')\",\n\t\t\tnodefined: \" ei ole m&auml;&auml;ritelty!\",\n\t\t\tnovalue: \" paluuarvo vaaditaan!\",\n\t\t\tcustomarray: \"Oman funktion tulee palauttaa jono!\",\n\t\t\tcustomfcheck: \"Oma funktio on m&auml;&auml;ritelt&auml;v&auml; r&auml;&auml;t&auml;l&ouml;ity&auml; tarkastusta varten!\"\n\t\t}\n\t},\n\tview: {\n\t    caption: \"N&auml;yt&auml; rivi\",\n\t    bClose: \"Sulje\"\n\t},\n\tdel: {\n\t    caption: \"Poista\",\n\t    msg: \"Poista valitut rivit?\",\n\t    bSubmit: \"Poista\",\n\t    bCancel: \"Peru\"\n\t},\n\tnav: {\n\t\tedittext: \"\",\n\t    edittitle: \"Muokkaa valittua rivi&auml;\",\n\t\taddtext: \"\",\n\t    addtitle: \"Uusi rivi\",\n\t    deltext: \"\",\n\t    deltitle: \"Poista valittu rivi\",\n\t    searchtext: \"\",\n\t    searchtitle: \"Etsi tietoja\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Lataa uudelleen\",\n\t    alertcap: \"Varoitus\",\n\t    alerttext: \"Valitse rivi\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"N&auml;yta valitut rivit\"\n\t},\n\tcol: {\n\t    caption: \"Valitse sarakkeet\",\n\t    bSubmit: \"OK\",\n\t    bCancel: \"Peru\"\t\n\t},\n\terrors : {\n\t\terrcap: \"Virhe\",\n\t\tnourl: \"URL on asettamatta\",\n\t\tnorecords: \"Ei muokattavia tietoja\",\n\t    model: \"Pituus colNames <> colModel!\"\n\t},\n\tformatter: {\n\t\tinteger: {thousandsSeparator: \"\", defaultValue: '0'},\n\t\tnumber: {decimalSeparator:\",\", thousandsSeparator: \"\", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency: {decimalSeparator:\",\", thousandsSeparator: \"\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate: {\n\t\t\tdayNames:   [\n\t\t\t\t\"Su\", \"Ma\", \"Ti\", \"Ke\", \"To\", \"Pe\", \"La\",\n\t\t\t\t\"Sunnuntai\", \"Maanantai\", \"Tiistai\", \"Keskiviikko\", \"Torstai\", \"Perjantai\", \"Lauantai\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Tam\", \"Hel\", \"Maa\", \"Huh\", \"Tou\", \"Kes\", \"Hei\", \"Elo\", \"Syy\", \"Lok\", \"Mar\", \"Jou\",\n\t\t\t\t\"Tammikuu\", \"Helmikuu\", \"Maaliskuu\", \"Huhtikuu\", \"Toukokuu\", \"Kes&auml;kuu\", \"Hein&auml;kuu\", \"Elokuu\", \"Syyskuu\", \"Lokakuu\", \"Marraskuu\", \"Joulukuu\"\n\t\t\t],\n\t\t\tAmPm: [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd.m.Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks: {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"d.m.Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox: {disabled:true},\n\t\tidName: 'id'\n\t}\n});\n// FI\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-fr.js",
    "content": ";(function($){\n/**\n * jqGrid French Translation\n * Tony Tomov tony@trirand.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Enregistrements {0} - {1} sur {2}\",\n\t\temptyrecords: \"Aucun enregistrement à afficher\",\n\t\tloadtext: \"Chargement...\",\n\t\tpgtext : \"Page {0} sur {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Recherche...\",\n\t\tFind: \"Chercher\",\n\t\tReset: \"Réinitialiser\",\n\t\todata: [{ oper:'eq', text:\"égal\"},{ oper:'ne', text:\"différent\"},{ oper:'lt', text:\"inférieur\"},{ oper:'le', text:\"inférieur ou égal\"},{ oper:'gt', text:\"supérieur\"},{ oper:'ge', text:\"supérieur ou égal\"},{ oper:'bw', text:\"commence par\"},{ oper:'bn', text:\"ne commence pas par\"},{ oper:'in', text:\"est dans\"},{ oper:'ni', text:\"n'est pas dans\"},{ oper:'ew', text:\"finit par\"},{ oper:'en', text:\"ne finit pas par\"},{ oper:'cn', text:\"contient\"},{ oper:'nc', text:\"ne contient pas\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"tous\" },\t{ op: \"OR\",  text: \"au moins un\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Ajouter\",\n\t\teditCaption: \"Editer\",\n\t\tbSubmit: \"Valider\",\n\t\tbCancel: \"Annuler\",\n\t\tbClose: \"Fermer\",\n\t\tsaveData: \"Les données ont changé ! Enregistrer les modifications ?\",\n\t\tbYes: \"Oui\",\n\t\tbNo: \"Non\",\n\t\tbExit: \"Annuler\",\n\t\tmsg: {\n\t\t\trequired: \"Champ obligatoire\",\n\t\t\tnumber: \"Saisissez un nombre correct\",\n\t\t\tminValue: \"La valeur doit être supérieure ou égale à\",\n\t\t\tmaxValue: \"La valeur doit être inférieure ou égale à\",\n\t\t\temail: \"n'est pas un email correct\",\n\t\t\tinteger: \"Saisissez un entier correct\",\n\t\t\turl: \"n'est pas une adresse correcte. Préfixe requis ('http://' or 'https://')\",\n\t\t\tnodefined : \" n'est pas défini!\",\n\t\t\tnovalue : \" la valeur de retour est requise!\",\n\t\t\tcustomarray : \"Une fonction personnalisée devrait retourner un tableau (array)!\",\n\t\t\tcustomfcheck : \"Une fonction personnalisée devrait être présente dans le cas d'une vérification personnalisée!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Voir les enregistrement\",\n\t\tbClose: \"Fermer\"\n\t},\n\tdel : {\n\t\tcaption: \"Supprimer\",\n\t\tmsg: \"Supprimer les enregistrements sélectionnés ?\",\n\t\tbSubmit: \"Supprimer\",\n\t\tbCancel: \"Annuler\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"Editer la ligne sélectionnée\",\n\t\taddtext:\" \",\n\t\taddtitle: \"Ajouter une ligne\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"Supprimer la ligne sélectionnée\",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"Chercher un enregistrement\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Recharger le tableau\",\n\t\talertcap: \"Avertissement\",\n\t\talerttext: \"Veuillez sélectionner une ligne\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Afficher la ligne sélectionnée\"\n\t},\n\tcol : {\n\t\tcaption: \"Afficher/Masquer les colonnes\",\n\t\tbSubmit: \"Valider\",\n\t\tbCancel: \"Annuler\"\n\t},\n\terrors : {\n\t\terrcap : \"Erreur\",\n\t\tnourl : \"Aucune adresse n'est paramétrée\",\n\t\tnorecords: \"Aucun enregistrement à traiter\",\n\t\tmodel : \"Nombre de titres (colNames) <> Nombre de données (colModel)!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Dim\", \"Lun\", \"Mar\", \"Mer\", \"Jeu\", \"Ven\", \"Sam\",\n\t\t\t\t\"Dimanche\", \"Lundi\", \"Mardi\", \"Mercredi\", \"Jeudi\", \"Vendredi\", \"Samedi\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Fév\", \"Mar\", \"Avr\", \"Mai\", \"Jui\", \"Jul\", \"Aou\", \"Sep\", \"Oct\", \"Nov\", \"Déc\",\n\t\t\t\t\"Janvier\", \"Février\", \"Mars\", \"Avril\", \"Mai\", \"Juin\", \"Juillet\", \"Aout\", \"Septembre\", \"Octobre\", \"Novembre\", \"Décembre\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j == 1 ? 'er' : 'e';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-gl.js",
    "content": ";(function($){\n/**\n * jqGrid Galician Translation\n * Translated by Jorge Barreiro <yortx.barry@gmail.com>\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Amosando {0} - {1} de {2}\",\n\t    emptyrecords: \"Sen rexistros que amosar\",\n\t\tloadtext: \"Cargando...\",\n\t\tpgtext : \"Páxina {0} de {1}\"\n\t},\n\tsearch : {\n\t    caption: \"Búsqueda...\",\n\t    Find: \"Buscar\",\n\t    Reset: \"Limpar\",\n\t    odata: [{ oper:'eq', text:\"igual \"},{ oper:'ne', text:\"diferente a\"},{ oper:'lt', text:\"menor que\"},{ oper:'le', text:\"menor ou igual que\"},{ oper:'gt', text:\"maior que\"},{ oper:'ge', text:\"maior ou igual a\"},{ oper:'bw', text:\"empece por\"},{ oper:'bn', text:\"non empece por\"},{ oper:'in', text:\"está en\"},{ oper:'ni', text:\"non está en\"},{ oper:'ew', text:\"termina por\"},{ oper:'en', text:\"non termina por\"},{ oper:'cn', text:\"contén\"},{ oper:'nc', text:\"non contén\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"todo\" },\t{ op: \"OR\",  text: \"calquera\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Engadir rexistro\",\n\t    editCaption: \"Modificar rexistro\",\n\t    bSubmit: \"Gardar\",\n\t    bCancel: \"Cancelar\",\n\t\tbClose: \"Pechar\",\n\t\tsaveData: \"Modificáronse os datos, quere gardar os cambios?\",\n\t\tbYes : \"Si\",\n\t\tbNo : \"Non\",\n\t\tbExit : \"Cancelar\",\n\t    msg: {\n\t        required:\"Campo obrigatorio\",\n\t        number:\"Introduza un número\",\n\t        minValue:\"O valor debe ser maior ou igual a \",\n\t        maxValue:\"O valor debe ser menor ou igual a \",\n\t        email: \"non é un enderezo de correo válido\",\n\t        integer: \"Introduza un valor enteiro\",\n\t\t\tdate: \"Introduza unha data correcta \",\n\t\t\turl: \"non é unha URL válida. Prefixo requerido ('http://' ou 'https://')\",\n\t\t\tnodefined : \" non está definido.\",\n\t\t\tnovalue : \" o valor de retorno é obrigatorio.\",\n\t\t\tcustomarray : \"A función persoalizada debe devolver un array.\",\n\t\t\tcustomfcheck : \"A función persoalizada debe estar presente no caso de ter validación persoalizada.\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Consultar rexistro\",\n\t    bClose: \"Pechar\"\n\t},\n\tdel : {\n\t    caption: \"Eliminar\",\n\t    msg: \"Desexa eliminar os rexistros seleccionados?\",\n\t    bSubmit: \"Eliminar\",\n\t    bCancel: \"Cancelar\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Modificar a fila seleccionada\",\n\t\taddtext:\" \",\n\t    addtitle: \"Engadir unha nova fila\",\n\t    deltext: \" \",\n\t    deltitle: \"Eliminar a fila seleccionada\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Buscar información\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Recargar datos\",\n\t    alertcap: \"Aviso\",\n\t    alerttext: \"Seleccione unha fila\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Ver fila seleccionada\"\n\t},\n\tcol : {\n\t    caption: \"Mostrar/ocultar columnas\",\n\t    bSubmit: \"Enviar\",\n\t    bCancel: \"Cancelar\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Erro\",\n\t\tnourl : \"Non especificou unha URL\",\n\t\tnorecords: \"Non hai datos para procesar\",\n\t    model : \"As columnas de nomes son diferentes das columnas de modelo\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \".\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Do\", \"Lu\", \"Ma\", \"Me\", \"Xo\", \"Ve\", \"Sa\",\n\t\t\t\t\"Domingo\", \"Luns\", \"Martes\", \"Mércoles\", \"Xoves\", \"Vernes\", \"Sábado\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Xan\", \"Feb\", \"Mar\", \"Abr\", \"Mai\", \"Xuñ\", \"Xul\", \"Ago\", \"Set\", \"Out\", \"Nov\", \"Dec\",\n\t\t\t\t\"Xaneiro\", \"Febreiro\", \"Marzo\", \"Abril\", \"Maio\", \"Xuño\", \"Xullo\", \"Agosto\", \"Setembro\", \"Outubro\", \"Novembro\", \"Decembro\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd-m-Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-he.js",
    "content": ";(function($){\n/**\n * jqGrid Hebrew Translation\n * Shuki Shukrun shukrun.shuki@gmail.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"מציג {0} - {1} מתוך {2}\",\n\t\temptyrecords: \"אין רשומות להציג\",\n\t\tloadtext: \"טוען...\",\n\t\tpgtext : \"דף {0} מתוך {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"מחפש...\",\n\t\tFind: \"חפש\",\n\t\tReset: \"התחל\",\n\t\todata: [{ oper:'eq', text:\"שווה\"},{ oper:'ne', text:\"לא שווה\"},{ oper:'lt', text:\"קטן\"},{ oper:'le', text:\"קטן או שווה\"},{ oper:'gt', text:\"גדול\"},{ oper:'ge', text:\"גדול או שווה\"},{ oper:'bw', text:\"מתחיל ב\"},{ oper:'bn', text:\"לא מתחיל ב\"},{ oper:'in', text:\"נמצא ב\"},{ oper:'ni', text:\"לא נמצא ב\"},{ oper:'ew', text:\"מסתיים ב\"},{ oper:'en', text:\"לא מסתיים ב\"},{ oper:'cn', text:\"מכיל\"},{ oper:'nc', text:\"לא מכיל\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"הכל\" },\t{ op: \"OR\",  text: \"אחד מ\" }],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"הוסף רשומה\",\n\t\teditCaption: \"ערוך רשומה\",\n\t\tbSubmit: \"שלח\",\n\t\tbCancel: \"בטל\",\n\t\tbClose: \"סגור\",\n\t\tsaveData: \"נתונים השתנו! לשמור?\",\n\t\tbYes : \"כן\",\n\t\tbNo : \"לא\",\n\t\tbExit : \"בטל\",\n\t\tmsg: {\n\t\t\trequired:\"שדה חובה\",\n\t\t\tnumber:\"אנא, הכנס מספר תקין\",\n\t\t\tminValue:\"ערך צריך להיות גדול או שווה ל \",\n\t\t\tmaxValue:\"ערך צריך להיות קטן או שווה ל \",\n\t\t\temail: \"היא לא כתובת איימל תקינה\",\n\t\t\tinteger: \"אנא, הכנס מספר שלם\",\n\t\t\tdate: \"אנא, הכנס תאריך תקין\",\n\t\t\turl: \"הכתובת אינה תקינה. דרושה תחילית ('http://' או 'https://')\",\n\t\t\tnodefined : \" is not defined!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"הצג רשומה\",\n\t\tbClose: \"סגור\"\n\t},\n\tdel : {\n\t\tcaption: \"מחק\",\n\t\tmsg: \"האם למחוק את הרשומה/ות המסומנות?\",\n\t\tbSubmit: \"מחק\",\n\t\tbCancel: \"בטל\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"ערוך שורה מסומנת\",\n\t\taddtext:\"\",\n\t\taddtitle: \"הוסף שורה חדשה\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"מחק שורה מסומנת\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"חפש רשומות\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"טען גריד מחדש\",\n\t\talertcap: \"אזהרה\",\n\t\talerttext: \"אנא, בחר שורה\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"הצג שורה מסומנת\"\n\t},\n\tcol : {\n\t\tcaption: \"הצג/הסתר עמודות\",\n\t\tbSubmit: \"שלח\",\n\t\tbCancel: \"בטל\"\n\t},\n\terrors : {\n\t\terrcap : \"שגיאה\",\n\t\tnourl : \"לא הוגדרה כתובת url\",\n\t\tnorecords: \"אין רשומות לעבד\",\n\t\tmodel : \"אורך של colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"א\", \"ב\", \"ג\", \"ד\", \"ה\", \"ו\", \"ש\",\n\t\t\t\t\"ראשון\", \"שני\", \"שלישי\", \"רביעי\", \"חמישי\", \"שישי\", \"שבת\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"ינו\", \"פבר\", \"מרץ\", \"אפר\", \"מאי\", \"יונ\", \"יול\", \"אוג\", \"ספט\", \"אוק\", \"נוב\", \"דצמ\",\n\t\t\t\t\"ינואר\", \"פברואר\", \"מרץ\", \"אפריל\", \"מאי\", \"יוני\", \"יולי\", \"אוגוסט\", \"ספטמבר\", \"אוקטובר\", \"נובמבר\", \"דצמבר\"\n\t\t\t],\n\t\t\tAmPm : [\"לפני הצהרים\",\"אחר הצהרים\",\"לפני הצהרים\",\"אחר הצהרים\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['', '', '', ''][Math.min((j - 1) % 10, 3)] : ''},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-hr.js",
    "content": ";(function($){\n/**\n * jqGrid Croatian Translation\n * Version 1.0.1 (developed for jQuery Grid 4.4)\n * msajko@gmail.com\n * \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Pregled {0} - {1} od {2}\",\n\t\temptyrecords: \"Nema zapisa\",\n\t\tloadtext: \"Učitavam...\",\n\t\tpgtext : \"Stranica {0} od {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Traži...\",\n\t\tFind: \"Pretraživanje\",\n\t\tReset: \"Poništi\",\n\t\todata: [{ oper:'eq', text:\"jednak\"},{ oper:'ne', text:\"nije identičan\"},{ oper:'lt', text:\"manje\"},{ oper:'le', text:\"manje ili identično\"},{ oper:'gt', text:\"veće\"},{ oper:'ge', text:\"veće ili identično\"},{ oper:'bw', text:\"počinje sa\"},{ oper:'bn', text:\"ne počinje sa \"},{ oper:'in', text:\"je u\"},{ oper:'ni', text:\"nije u\"},{ oper:'ew', text:\"završava sa\"},{ oper:'en', text:\"ne završava sa\"},{ oper:'cn', text:\"sadrži\"},{ oper:'nc', text:\"ne sadrži\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"I\", text: \"sve\" },\t{ op: \"ILI\",  text: \"bilo koji\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Dodaj zapis\",\n\t\teditCaption: \"Promijeni zapis\",\n\t\tbSubmit: \"Preuzmi\",\n\t\tbCancel: \"Odustani\",\n\t\tbClose: \"Zatvri\",\n\t\tsaveData: \"Podaci su promijenjeni! Preuzmi promijene?\",\n\t\tbYes : \"Da\",\n\t\tbNo : \"Ne\",\n\t\tbExit : \"Odustani\",\n\t\tmsg: {\n\t\t\trequired:\"Polje je obavezno\",\n\t\t\tnumber:\"Molim, unesite ispravan broj\",\n\t\t\tminValue:\"Vrijednost mora biti veća ili identična \",\n\t\t\tmaxValue:\"Vrijednost mora biti manja ili identična\",\n\t\t\temail: \"neispravan e-mail\",\n\t\t\tinteger: \"Molim, unjeti ispravan cijeli broj (integer)\",\n\t\t\tdate: \"Molim, unjeti ispravan datum \",\n\t\t\turl: \"neispravan URL. Prefiks je obavezan ('http://' or 'https://')\",\n\t\t\tnodefined : \" nije definiran!\",\n\t\t\tnovalue : \" zahtjevan podatak je obavezan!\",\n\t\t\tcustomarray : \"Opcionalna funkcija trebala bi bili polje (array)!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Otvori zapis\",\n\t\tbClose: \"Zatvori\"\n\t},\n\tdel : {\n\t\tcaption: \"Obriši\",\n\t\tmsg: \"Obriši označen zapis ili više njih?\",\n\t\tbSubmit: \"Obriši\",\n\t\tbCancel: \"Odustani\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Promijeni obilježeni red\",\n\t\taddtext: \"\",\n\t\taddtitle: \"Dodaj novi red\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Obriši obilježeni red\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Potraži zapise\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Ponovo preuzmi podatke\",\n\t\talertcap: \"Upozorenje\",\n\t\talerttext: \"Molim, odaberi red\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Pregled obilježenog reda\"\n\t},\n\tcol : {\n\t\tcaption: \"Obilježi kolonu\",\n\t\tbSubmit: \"Uredu\",\n\t\tbCancel: \"Odustani\"\n\t},\n\terrors : {\n\t\terrcap : \"Greška\",\n\t\tnourl : \"Nedostaje URL\",\n\t\tnorecords: \"Bez zapisa za obradu\",\n\t\tmodel : \"colNames i colModel imaju različitu duljinu!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \".\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Ned\", \"Pon\", \"Uto\", \"Sri\", \"Čet\", \"Pet\", \"Sub\",\n\t\t\t\t\"Nedjelja\", \"Ponedjeljak\", \"Utorak\", \"Srijeda\", \"Četvrtak\", \"Petak\", \"Subota\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Sij\", \"Velj\", \"Ožu\", \"Tra\", \"Svi\", \"Lip\", \"Srp\", \"Kol\", \"Ruj\", \"Lis\", \"Stu\", \"Pro\",\n\t\t\t\t\"Siječanj\", \"Veljača\", \"Ožujak\", \"Travanj\", \"Svibanj\", \"Lipanj\", \"Srpanj\", \"Kolovoz\", \"Rujan\", \"Listopad\", \"Studeni\", \"Prosinac\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return ''},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd.m.Y.',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\t// see http://php.net/manual/en/function.date.php for PHP format used in jqGrid\n\t\t\t\t// and see http://docs.jquery.com/UI/Datepicker/formatDate\n\t\t\t\t// and https://github.com/jquery/globalize#dates for alternative formats used frequently\n\t\t\t\tISO8601Long: \"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short: \"Y-m-d\",\n\t\t\t\t// short date:\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    m - Numeric representation of a month, with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tShortDate: \"d.m.Y.\",\t// in jQuery UI Datepicker: \"dd.mm.yy.\"\n\t\t\t\t// long date:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tLongDate: \"l, j. F Y\", // in jQuery UI Datepicker: \"dddd, d. MMMM yyyy\"\n\t\t\t\t// long date with long time:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\tFullDateTime: \"l, j. F Y H:i:s\", // in jQuery UI Datepicker: \"dddd, d. MMMM yyyy HH:mm:ss\"\n\t\t\t\t// month day:\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\tMonthDay: \"d F\", // in jQuery UI Datepicker: \"dd MMMM\"\n\t\t\t\t// short time (without seconds)\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\tShortTime: \"H:i\", // in jQuery UI Datepicker: \"HH:mm\"\n\t\t\t\t// long time (with seconds)\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\tLongTime: \"H:i:s\", // in jQuery UI Datepicker: \"HH:mm:ss\"\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\t// month with year\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tYearMonth: \"F Y\" // in jQuery UI Datepicker: \"MMMM yyyy\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-hr1250.js",
    "content": ";(function($){\n/**\n * jqGrid Croatian Translation (charset windows-1250)\n * Version 1.0.1 (developed for jQuery Grid 4.4)\n * msajko@gmail.com\n * \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Pregled {0} - {1} od {2}\",\n\t\temptyrecords: \"Nema zapisa\",\n\t\tloadtext: \"U�itavam...\",\n\t\tpgtext : \"Stranica {0} od {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Tra�i...\",\n\t\tFind: \"Pretra�ivanje\",\n\t\tReset: \"Poni�ti\",\n\t\todata : [{ oper:'eq', text:'jednak'}, { oper:'ne', text:'nije identi�an'}, { oper:'lt', text:'manje'}, { oper:'le', text:'manje ili identi�no'},{ oper:'gt', text:'ve�e'},{ oper:'ge', text:'ve�e ili identi�no'}, { oper:'bw', text:'po�inje sa'},{ oper:'bn', text:'ne po�inje sa '},{ oper:'in', text:'je u'},{ oper:'ni', text:'nije u'},{ oper:'ew', text:'zavr�ava sa'},{ oper:'en', text:'ne zavr�ava sa'},{ oper:'cn', text:'sadr�i'},{ oper:'nc', text:'ne sadr�i'},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"I\", text: \"sve\" },\t{ op: \"ILI\",  text: \"bilo koji\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Dodaj zapis\",\n\t\teditCaption: \"Promijeni zapis\",\n\t\tbSubmit: \"Preuzmi\",\n\t\tbCancel: \"Odustani\",\n\t\tbClose: \"Zatvri\",\n\t\tsaveData: \"Podaci su promijenjeni! Preuzmi promijene?\",\n\t\tbYes : \"Da\",\n\t\tbNo : \"Ne\",\n\t\tbExit : \"Odustani\",\n\t\tmsg: {\n\t\t\trequired:\"Polje je obavezno\",\n\t\t\tnumber:\"Molim, unesite ispravan broj\",\n\t\t\tminValue:\"Vrijednost mora biti ve�a ili identi�na \",\n\t\t\tmaxValue:\"Vrijednost mora biti manja ili identi�na\",\n\t\t\temail: \"neispravan e-mail\",\n\t\t\tinteger: \"Molim, unjeti ispravan cijeli broj (integer)\",\n\t\t\tdate: \"Molim, unjeti ispravan datum \",\n\t\t\turl: \"neispravan URL. Prefiks je obavezan ('http://' or 'https://')\",\n\t\t\tnodefined : \" nije definiran!\",\n\t\t\tnovalue : \" zahtjevan podatak je obavezan!\",\n\t\t\tcustomarray : \"Opcionalna funkcija trebala bi bili polje (array)!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Otvori zapis\",\n\t\tbClose: \"Zatvori\"\n\t},\n\tdel : {\n\t\tcaption: \"Obri�i\",\n\t\tmsg: \"Obri�i ozna�en zapis ili vi�e njih?\",\n\t\tbSubmit: \"Obri�i\",\n\t\tbCancel: \"Odustani\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Promijeni obilje�eni red\",\n\t\taddtext: \"\",\n\t\taddtitle: \"Dodaj novi red\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Obri�i obilje�eni red\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Potra�i zapise\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Ponovo preuzmi podatke\",\n\t\talertcap: \"Upozorenje\",\n\t\talerttext: \"Molim, odaberi red\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Pregled obilje�enog reda\"\n\t},\n\tcol : {\n\t\tcaption: \"Obilje�i kolonu\",\n\t\tbSubmit: \"Uredu\",\n\t\tbCancel: \"Odustani\"\n\t},\n\terrors : {\n\t\terrcap : \"Gre�ka\",\n\t\tnourl : \"Nedostaje URL\",\n\t\tnorecords: \"Bez zapisa za obradu\",\n\t\tmodel : \"colNames i colModel imaju razli�itu duljinu!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \".\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Ned\", \"Pon\", \"Uto\", \"Sri\", \"�et\", \"Pet\", \"Sub\",\n\t\t\t\t\"Nedjelja\", \"Ponedjeljak\", \"Utorak\", \"Srijeda\", \"�etvrtak\", \"Petak\", \"Subota\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Sij\", \"Velj\", \"O�u\", \"Tra\", \"Svi\", \"Lip\", \"Srp\", \"Kol\", \"Ruj\", \"Lis\", \"Stu\", \"Pro\",\n\t\t\t\t\"Sije�anj\", \"Velja�a\", \"O�ujak\", \"Travanj\", \"Svibanj\", \"Lipanj\", \"Srpanj\", \"Kolovoz\", \"Rujan\", \"Listopad\", \"Studeni\", \"Prosinac\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return ''},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd.m.Y.',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\t// see http://php.net/manual/en/function.date.php for PHP format used in jqGrid\n\t\t\t\t// and see http://docs.jquery.com/UI/Datepicker/formatDate\n\t\t\t\t// and https://github.com/jquery/globalize#dates for alternative formats used frequently\n\t\t\t\tISO8601Long: \"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short: \"Y-m-d\",\n\t\t\t\t// short date:\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    m - Numeric representation of a month, with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tShortDate: \"d.m.Y.\",\t// in jQuery UI Datepicker: \"dd.mm.yy.\"\n\t\t\t\t// long date:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tLongDate: \"l, j. F Y\", // in jQuery UI Datepicker: \"dddd, d. MMMM yyyy\"\n\t\t\t\t// long date with long time:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\tFullDateTime: \"l, j. F Y H:i:s\", // in jQuery UI Datepicker: \"dddd, d. MMMM yyyy HH:mm:ss\"\n\t\t\t\t// month day:\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\tMonthDay: \"d F\", // in jQuery UI Datepicker: \"dd MMMM\"\n\t\t\t\t// short time (without seconds)\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\tShortTime: \"H:i\", // in jQuery UI Datepicker: \"HH:mm\"\n\t\t\t\t// long time (with seconds)\n\t\t\t\t//    H - 24-hour format of an hour with leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\tLongTime: \"H:i:s\", // in jQuery UI Datepicker: \"HH:mm:ss\"\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\t// month with year\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tYearMonth: \"F Y\" // in jQuery UI Datepicker: \"MMMM yyyy\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-hu.js",
    "content": ";(function($){\n/**\n * jqGrid Hungarian Translation\n * Őrszigety Ádám udx6bs@freemail.hu\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Oldal {0} - {1} / {2}\",\n\t\temptyrecords: \"Nincs találat\",\n\t\tloadtext: \"Betöltés...\",\n\t\tpgtext : \"Oldal {0} / {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Keresés...\",\n\t\tFind: \"Keres\",\n\t\tReset: \"Alapértelmezett\",\n\t\todata: [{ oper:'eq', text:\"egyenlő\"},{ oper:'ne', text:\"nem egyenlő\"},{ oper:'lt', text:\"kevesebb\"},{ oper:'le', text:\"kevesebb vagy egyenlő\"},{ oper:'gt', text:\"nagyobb\"},{ oper:'ge', text:\"nagyobb vagy egyenlő\"},{ oper:'bw', text:\"ezzel kezdődik\"},{ oper:'bn', text:\"nem ezzel kezdődik\"},{ oper:'in', text:\"tartalmaz\"},{ oper:'ni', text:\"nem tartalmaz\"},{ oper:'ew', text:\"végződik\"},{ oper:'en', text:\"nem végződik\"},{ oper:'cn', text:\"tartalmaz\"},{ oper:'nc', text:\"nem tartalmaz\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"all\" },\t{ op: \"OR\",  text: \"any\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Új tétel\",\n\t\teditCaption: \"Tétel szerkesztése\",\n\t\tbSubmit: \"Mentés\",\n\t\tbCancel: \"Mégse\",\n\t\tbClose: \"Bezárás\",\n\t\tsaveData: \"A tétel megváltozott! Tétel mentése?\",\n\t\tbYes : \"Igen\",\n\t\tbNo : \"Nem\",\n\t\tbExit : \"Mégse\",\n\t\tmsg: {\n\t\t\trequired:\"Kötelező mező\",\n\t\t\tnumber:\"Kérjük, adjon meg egy helyes számot\",\n\t\t\tminValue:\"Nagyobb vagy egyenlőnek kell lenni mint \",\n\t\t\tmaxValue:\"Kisebb vagy egyenlőnek kell lennie mint\",\n\t\t\temail: \"hibás emailcím\",\n\t\t\tinteger: \"Kérjük adjon meg egy helyes egész számot\",\n\t\t\tdate: \"Kérjük adjon meg egy helyes dátumot\",\n\t\t\turl: \"nem helyes cím. Előtag kötelező ('http://' vagy 'https://')\",\n\t\t\tnodefined : \" nem definiált!\",\n\t\t\tnovalue : \" visszatérési érték kötelező!!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Tétel megtekintése\",\n\t\tbClose: \"Bezárás\"\n\t},\n\tdel : {\n\t\tcaption: \"Törlés\",\n\t\tmsg: \"Kiválaztott tétel(ek) törlése?\",\n\t\tbSubmit: \"Törlés\",\n\t\tbCancel: \"Mégse\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Tétel szerkesztése\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Új tétel hozzáadása\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Tétel törlése\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Keresés\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Frissítés\",\n\t\talertcap: \"Figyelmeztetés\",\n\t\talerttext: \"Kérem válasszon tételt.\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Tétel megtekintése\"\n\t},\n\tcol : {\n\t\tcaption: \"Oszlopok kiválasztása\",\n\t\tbSubmit: \"Ok\",\n\t\tbCancel: \"Mégse\"\n\t},\n\terrors : {\n\t\terrcap : \"Hiba\",\n\t\tnourl : \"Nincs URL beállítva\",\n\t\tnorecords: \"Nincs feldolgozásra váró tétel\",\n\t\tmodel : \"colNames és colModel hossza nem egyenlő!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Va\", \"Hé\", \"Ke\", \"Sze\", \"Csü\", \"Pé\", \"Szo\",\n\t\t\t\t\"Vasárnap\", \"Hétfő\", \"Kedd\", \"Szerda\", \"Csütörtök\", \"Péntek\", \"Szombat\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Már\", \"Ápr\", \"Máj\", \"Jún\", \"Júl\", \"Aug\", \"Szep\", \"Okt\", \"Nov\", \"Dec\",\n\t\t\t\t\"Január\", \"Február\", \"Március\", \"Áprili\", \"Május\", \"Június\", \"Július\", \"Augusztus\", \"Szeptember\", \"Október\", \"November\", \"December\"\n\t\t\t],\n\t\t\tAmPm : [\"de\",\"du\",\"DE\",\"DU\"],\n\t\t\tS: function (j) {return '.-ik';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'Y/m/d',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"Y/j/n\",\n\t\t\t\tLongDate: \"Y. F hó d., l\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"a g:i\",\n\t\t\t\tLongTime: \"a g:i:s\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"Y, F\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-id.js",
    "content": ";(function($){\n/**\n * jqGrid English Translation\n * Tony Tomov tony@trirand.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Data {0} - {1} dari {2}\",\n\t\temptyrecords: \"Tidak ada data\",\n\t\tloadtext: \"Memuat...\",\n\t\tpgtext : \"Halaman {0} dari {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Pencarian\",\n\t\tFind: \"Cari !\",\n\t\tReset: \"Segarkan\",\n\t\todata: [{ oper:'eq', text:\"sama dengan\"},{ oper:'ne', text:\"tidak sama dengan\"},{ oper:'lt', text:\"kurang dari\"},{ oper:'le', text:\"kurang dari atau sama dengan\"},{ oper:'gt', text:\"lebih besar\"},{ oper:'ge', text:\"lebih besar atau sama dengan\"},{ oper:'bw', text:\"dimulai dengan\"},{ oper:'bn', text:\"tidak dimulai dengan\"},{ oper:'in', text:\"di dalam\"},{ oper:'ni', text:\"tidak di dalam\"},{ oper:'ew', text:\"diakhiri dengan\"},{ oper:'en', text:\"tidak diakhiri dengan\"},{ oper:'cn', text:\"mengandung\"},{ oper:'nc', text:\"tidak mengandung\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"all\" },\t{ op: \"OR\",  text: \"any\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Tambah Data\",\n\t\teditCaption: \"Sunting Data\",\n\t\tbSubmit: \"Submit\",\n\t\tbCancel: \"Tutup\",\n\t\tbClose: \"Tutup\",\n\t\tsaveData: \"Data telah berubah! Simpan perubahan?\",\n\t\tbYes : \"Ya\",\n\t\tbNo : \"Tidak\",\n\t\tbExit : \"Tutup\",\n\t\tmsg: {\n\t\t\trequired:\"kolom wajib diisi\",\n\t\t\tnumber:\"hanya nomer yang diperbolehkan\",\n\t\t\tminValue:\"kolom harus lebih besar dari atau sama dengan\",\n\t\t\tmaxValue:\"kolom harus lebih kecil atau sama dengan\",\n\t\t\temail: \"alamat e-mail tidak valid\",\n\t\t\tinteger: \"hanya nilai integer yang diperbolehkan\",\n\t\t\tdate: \"nilai tanggal tidak valid\",\n\t\t\turl: \"Bukan URL yang valid. Harap gunakan ('http://' or 'https://')\",\n\t\t\tnodefined : \" belum didefinisikan!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Menampilkan data\",\n\t\tbClose: \"Tutup\"\n\t},\n\tdel : {\n\t\tcaption: \"Hapus\",\n\t\tmsg: \"Hapus data terpilih?\",\n\t\tbSubmit: \"Hapus\",\n\t\tbCancel: \"Batalkan\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Sunting data terpilih\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Tambah baris baru\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Hapus baris terpilih\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Temukan data\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Segarkan Grid\",\n\t\talertcap: \"Warning\",\n\t\talerttext: \"Harap pilih baris\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Tampilkan baris terpilih\"\n\t},\n\tcol : {\n\t\tcaption: \"Pilih Kolom\",\n\t\tbSubmit: \"Ok\",\n\t\tbCancel: \"Batal\"\n\t},\n\terrors : {\n\t\terrcap : \"Error\",\n\t\tnourl : \"Tidak ada url yang diset\",\n\t\tnorecords: \"Tidak ada data untuk diproses\",\n\t\tmodel : \"Lebar dari colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \".\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, defaultValue: '0'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"Rp. \", suffix:\"\", defaultValue: '0'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Ming\", \"Sen\", \"Sel\", \"Rab\", \"Kam\", \"Jum\", \"Sab\",\n\t\t\t\t\"Minggu\", \"Senin\", \"Selasa\", \"Rabu\", \"Kamis\", \"Jumat\", \"Sabtu\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Mei\", \"Jun\", \"Jul\", \"Agu\", \"Sep\", \"Okt\", \"Nov\", \"Des\",\n\t\t\t\t\"Januari\", \"Februari\", \"Maret\", \"April\", \"Mei\", \"Juni\", \"Juli\", \"Agustus\", \"September\", \"Oktober\", \"November\", \"Desember\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'n/j/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\t// see http://php.net/manual/en/function.date.php for PHP format used in jqGrid\n\t\t\t\t// and see http://docs.jquery.com/UI/Datepicker/formatDate\n\t\t\t\t// and https://github.com/jquery/globalize#dates for alternative formats used frequently\n\t\t\t\t// one can find on https://github.com/jquery/globalize/tree/master/lib/cultures many\n\t\t\t\t// information about date, time, numbers and currency formats used in different countries\n\t\t\t\t// one should just convert the information in PHP format\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\t// short date:\n\t\t\t\t//    n - Numeric representation of a month, without leading zeros\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t// example: 3/1/2012 which means 1 March 2012\n\t\t\t\tShortDate: \"n/j/Y\", // in jQuery UI Datepicker: \"M/d/yyyy\"\n\t\t\t\t// long date:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tLongDate: \"l, F d, Y\", // in jQuery UI Datepicker: \"dddd, MMMM dd, yyyy\"\n\t\t\t\t// long date with long time:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\", // in jQuery UI Datepicker: \"dddd, MMMM dd, yyyy h:mm:ss tt\"\n\t\t\t\t// month day:\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\tMonthDay: \"F d\", // in jQuery UI Datepicker: \"MMMM dd\"\n\t\t\t\t// short time (without seconds)\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tShortTime: \"g:i A\", // in jQuery UI Datepicker: \"h:mm tt\"\n\t\t\t\t// long time (with seconds)\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tLongTime: \"g:i:s A\", // in jQuery UI Datepicker: \"h:mm:ss tt\"\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\t// month with year\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\tYearMonth: \"F, Y\" // in jQuery UI Datepicker: \"MMMM, yyyy\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-is.js",
    "content": ";(function($){\n/**\n * jqGrid Icelandic Translation\n * jtm@hi.is Univercity of Iceland\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Skoða {0} - {1} af {2}\",\n\t    emptyrecords: \"Engar færslur\",\n\t\tloadtext: \"Hleður...\",\n\t\tpgtext : \"Síða {0} af {1}\"\n\t},\n\tsearch : {\n\t    caption: \"Leita...\",\n\t    Find: \"Leita\",\n\t    Reset: \"Endursetja\",\n\t    odata: [{ oper:'eq', text:\"sama og\"},{ oper:'ne', text:\"ekki sama og\"},{ oper:'lt', text:\"minna en\"},{ oper:'le', text:\"minna eða jafnt og\"},{ oper:'gt', text:\"stærra en\"},{ oper:'ge', text:\"stærra eða jafnt og\"},{ oper:'bw', text:\"byrjar á\"},{ oper:'bn', text:\"byrjar ekki á\"},{ oper:'in', text:\"er í\"},{ oper:'ni', text:\"er ekki í\"},{ oper:'ew', text:\"endar á\"},{ oper:'en', text:\"endar ekki á\"},{ oper:'cn', text:\"inniheldur\"},{ oper:'nc', text:\"inniheldur ekki\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"allt\" },\t{ op: \"OR\",  text: \"eða\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Bæta við færslu\",\n\t    editCaption: \"Breyta færslu\",\n\t    bSubmit: \"Vista\",\n\t    bCancel: \"Hætta við\",\n\t\tbClose: \"Loka\",\n\t\tsaveData: \"Gögn hafa breyst! Vista breytingar?\",\n\t\tbYes : \"Já\",\n\t\tbNo : \"Nei\",\n\t\tbExit : \"Hætta við\",\n\t    msg: {\n\t        required:\"Reitur er nauðsynlegur\",\n\t        number:\"Vinsamlega settu inn tölu\",\n\t        minValue:\"gildi verður að vera meira en eða jafnt og \",\n\t        maxValue:\"gildi verður að vera minna en eða jafnt og \",\n\t        email: \"er ekki löglegt email\",\n\t        integer: \"Vinsamlega settu inn tölu\",\n\t\t\tdate: \"Vinsamlega setti inn dagsetningu\",\n\t\t\turl: \"er ekki löglegt URL. Vantar ('http://' eða 'https://')\",\n\t\t\tnodefined : \" er ekki skilgreint!\",\n\t\t\tnovalue : \" skilagildi nauðsynlegt!\",\n\t\t\tcustomarray : \"Fall skal skila fylki!\",\n\t\t\tcustomfcheck : \"Fall skal vera skilgreint!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Skoða færslu\",\n\t    bClose: \"Loka\"\n\t},\n\tdel : {\n\t    caption: \"Eyða\",\n\t    msg: \"Eyða völdum færslum ?\",\n\t    bSubmit: \"Eyða\",\n\t    bCancel: \"Hætta við\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Breyta færslu\",\n\t\taddtext:\" \",\n\t    addtitle: \"Ný færsla\",\n\t    deltext: \" \",\n\t    deltitle: \"Eyða færslu\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Leita\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Endurhlaða\",\n\t    alertcap: \"Viðvörun\",\n\t    alerttext: \"Vinsamlega veldu færslu\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Skoða valda færslu\"\n\t},\n\tcol : {\n\t    caption: \"Sýna / fela dálka\",\n\t    bSubmit: \"Vista\",\n\t    bCancel: \"Hætta við\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Villa\",\n\t\tnourl : \"Vantar slóð\",\n\t\tnorecords: \"Engar færslur valdar\",\n\t    model : \"Lengd colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Sun\", \"Mán\", \"Þri\", \"Mið\", \"Fim\", \"Fös\", \"Lau\",\n\t\t\t\t\"Sunnudagur\", \"Mánudagur\", \"Þriðjudagur\", \"Miðvikudagur\", \"Fimmtudagur\", \"Föstudagur\", \"Laugardagur\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Maí\", \"Jún\", \"Júl\", \"Ágú\", \"Sep\", \"Oct\", \"Nóv\", \"Des\",\n\t\t\t\t\"Janúar\", \"Febrúar\", \"Mars\", \"Apríl\", \"Maí\", \"Júný\", \"Júlý\", \"Ágúst\", \"September\", \"Október\", \"Nóvember\", \"Desember\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-it.js",
    "content": "(function(a){a.jgrid = a.jgrid || {};a.extend(a.jgrid,{ defaults:{recordtext:\"Visualizzati {0} - {1} di {2}\",emptyrecords:\"Nessun record da visualizzare\",loadtext:\"Caricamento...\",pgtext:\"Pagina {0} di {1}\"},search:{caption:\"Ricerca...\",Find:\"Cerca\",Reset:\"Pulisci\",\t\t\todata: [{ oper:'eq', text:\"uguale\"},{ oper:'ne', text:\"diverso\"},{ oper:'lt', text:\"minore\"},{ oper:'le', text:\"minore o uguale\"},{ oper:'gt', text:\"maggiore\"},{ oper:'ge', text:\"maggiore o uguale\"},{ oper:'bw', text:\"inizia con\"},{ oper:'bn', text:\"non inizia con\"},{ oper:'in', text:\"in\"},{ oper:'ni', text:\"non in\"},{ oper:'ew', text:\"termina con\"},{ oper:'en', text:\"non termina con\"},{ oper:'cn', text:\"contiene\"},{ oper:'nc', text:\"non contiene\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],groupOps:[{op:\"AND\",text:\"tutto\"},{op:\"OR\",text:\"almeno uno\"}],\toperandTitle : \"Click to select search operation.\",resetTitle : \"Reset Search Value\"},edit:{addCaption:\"Aggiungi Record\",editCaption:\"Modifica Record\",bSubmit:\"Invia\",bCancel:\"Chiudi\",bClose:\"Chiudi\",saveData:\"Alcuni dati modificati! Salvare i cambiamenti?\",bYes:\"Si\",bNo:\"No\",bExit:\"Esci\",msg:{required:\"Campo richiesto\",number:\"Per favore, inserisci un valore valido\",minValue:\"il valore deve essere maggiore o uguale a \",maxValue:\"il valore deve essere minore o uguale a\",email:\"e-mail non corretta\",integer:\"Per favore, inserisci un numero intero valido\",date:\"Per favore, inserisci una data valida\",url:\"URL non valido. Prefisso richiesto ('http://' or 'https://')\",nodefined:\" non � definito!\",novalue:\" valore di ritorno richiesto!\",customarray:\"La function custon deve tornare un array!\",customfcheck:\"La function custom deve esistere per il custom checking!\"}},view:{caption:\"Visualizzazione Record\",bClose:\"Chiudi\"},del:{caption:\"Cancella\",msg:\"Cancellare record selezionato/i?\",bSubmit:\"Cancella\",bCancel:\"Annulla\"},nav:{edittext:\" \",edittitle:\"Modifica record selezionato\",addtext:\" \",addtitle:\"Aggiungi nuovo record\",deltext:\" \",deltitle:\"Cancella record selezionato\",searchtext:\" \",searchtitle:\"Ricerca record\",refreshtext:\"\",refreshtitle:\"Aggiorna griglia\",alertcap:\"Attenzione\",alerttext:\"Per favore, seleziona un record\",viewtext:\"\",viewtitle:\"Visualizza riga selezionata\"},col:{caption:\"Mostra/Nascondi Colonne\",bSubmit:\"Invia\",bCancel:\"Annulla\"},errors:{errcap:\"Errore\",nourl:\"Url non settata\",norecords:\"Nessun record da elaborare\",model:\"Lunghezza di colNames &lt;&gt; colModel!\"},formatter:{integer:{thousandsSeparator:\" \",defaultValue:\"0\"},number:{decimalSeparator:\",\",thousandsSeparator:\" \",decimalPlaces:2,defaultValue:\"0,00\"},currency:{decimalSeparator:\",\",thousandsSeparator:\" \",decimalPlaces:2,prefix:\"\",suffix:\"\",defaultValue:\"0,00\"},date:{dayNames:[\"Dom\",\"Lun\",\"Mar\",\"Mer\",\"Gio\",\"Ven\",\"Sab\",\"Domenica\",\"Luned�\",\"Marted�\",\"Mercoled�\",\"Gioved�\",\"Venerd�\",\"Sabato\"],monthNames:[\"Gen\",\"Feb\",\"Mar\",\"Apr\",\"Mag\",\"Gui\",\"Lug\",\"Ago\",\"Set\",\"Ott\",\"Nov\",\"Dic\",\"Genneio\",\"Febbraio\",\"Marzo\",\"Aprile\",\"Maggio\",\"Giugno\",\"Luglio\",\"Agosto\",\"Settembre\",\"Ottobre\",\"Movembre\",\"Dicembre\"],AmPm:[\"am\",\"pm\",\"AM\",\"PM\"],S:function(b){return b<11||b>13?[\"st\",\"nd\",\"rd\",\"th\"][Math.min((b-1)%10,3)]:\"th\"},srcformat:\"Y-m-d\",newformat:\"d/m/Y\",parseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,masks:{ISO8601Long:\"Y-m-d H:i:s\",ISO8601Short:\"Y-m-d\",ShortDate:\"n/j/Y\",LongDate:\"l, F d, Y\",FullDateTime:\"l, F d, Y g:i:s A\",MonthDay:\"F d\",ShortTime:\"g:i A\",LongTime:\"g:i:s A\",SortableDateTime:\"Y-m-d\\\\TH:i:s\",UniversalSortableDateTime:\"Y-m-d H:i:sO\",YearMonth:\"F, Y\"},reformatAfterEdit:false},baseLinkUrl:\"\",showAction:\"\",target:\"\",checkbox:{disabled:true},idName:\"id\"}});})(jQuery);"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-ja.js",
    "content": ";(function($){\n/**\n * jqGrid Japanese Translation\n * OKADA Yoshitada okada.dev@sth.jp\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"{2} \\u4EF6\\u4E2D {0} - {1} \\u3092\\u8868\\u793A \",\n\t    emptyrecords: \"\\u8868\\u793A\\u3059\\u308B\\u30EC\\u30B3\\u30FC\\u30C9\\u304C\\u3042\\u308A\\u307E\\u305B\\u3093\",\n\t\tloadtext: \"\\u8aad\\u307f\\u8fbc\\u307f\\u4e2d...\",\n\t\tpgtext : \"{1} \\u30DA\\u30FC\\u30B8\\u4E2D {0} \\u30DA\\u30FC\\u30B8\\u76EE \"\n\t},\n\tsearch : {\n\t    caption: \"\\u691c\\u7d22...\",\n\t    Find: \"\\u691c\\u7d22\",\n\t    Reset: \"\\u30ea\\u30bb\\u30c3\\u30c8\",\n\t    odata: [{ oper:'eq', text:\"\\u6B21\\u306B\\u7B49\\u3057\\u3044\"}, { oper:'ne', text:\"\\u6B21\\u306B\\u7B49\\u3057\\u304F\\u306A\\u3044\"},\n            { oper:'lt', text:\"\\u6B21\\u3088\\u308A\\u5C0F\\u3055\\u3044\"}, { oper:'le', text:\"\\u6B21\\u306B\\u7B49\\u3057\\u3044\\u304B\\u5C0F\\u3055\\u3044\"},\n            { oper:'gt', text:\"\\u6B21\\u3088\\u308A\\u5927\\u304D\\u3044\"}, { oper:'ge', text:\"\\u6B21\\u306B\\u7B49\\u3057\\u3044\\u304B\\u5927\\u304D\\u3044\"},\n            { oper:'bw', text:\"\\u6B21\\u3067\\u59CB\\u307E\\u308B\"}, { oper:'bn', text:\"\\u6B21\\u3067\\u59CB\\u307E\\u3089\\u306A\\u3044\"},\n            { oper:'in', text:\"\\u6B21\\u306B\\u542B\\u307E\\u308C\\u308B\"}, { oper:'ni', text:\"\\u6B21\\u306B\\u542B\\u307E\\u308C\\u306A\\u3044\"},\n            { oper:'ew', text:\"\\u6B21\\u3067\\u7D42\\u308F\\u308B\"}, { oper:'en', text:\"\\u6B21\\u3067\\u7D42\\u308F\\u3089\\u306A\\u3044\"},\n            { oper:'cn', text:\"\\u6B21\\u3092\\u542B\\u3080\"}, { oper:'nc', text:\"\\u6B21\\u3092\\u542B\\u307E\\u306A\\u3044\"},\n\t\t\t{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [{\n                op: \"AND\",\n                text: \"\\u3059\\u3079\\u3066\\u306E\"\n            },\n            {\n                op: \"OR\",\n                text: \"\\u3044\\u305A\\u308C\\u304B\\u306E\"\n            }],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"\\u30ec\\u30b3\\u30fc\\u30c9\\u8ffd\\u52a0\",\n\t    editCaption: \"\\u30ec\\u30b3\\u30fc\\u30c9\\u7de8\\u96c6\",\n\t    bSubmit: \"\\u9001\\u4fe1\",\n\t    bCancel: \"\\u30ad\\u30e3\\u30f3\\u30bb\\u30eb\",\n  \t\tbClose: \"\\u9589\\u3058\\u308b\",\n      saveData: \"\\u30C7\\u30FC\\u30BF\\u304C\\u5909\\u66F4\\u3055\\u308C\\u3066\\u3044\\u307E\\u3059\\u3002\\u4FDD\\u5B58\\u3057\\u307E\\u3059\\u304B\\uFF1F\",\n      bYes: \"\\u306F\\u3044\",\n      bNo: \"\\u3044\\u3044\\u3048\",\n      bExit: \"\\u30AD\\u30E3\\u30F3\\u30BB\\u30EB\",\n\t    msg: {\n\t        required:\"\\u3053\\u306e\\u9805\\u76ee\\u306f\\u5fc5\\u9808\\u3067\\u3059\\u3002\",\n\t        number:\"\\u6b63\\u3057\\u3044\\u6570\\u5024\\u3092\\u5165\\u529b\\u3057\\u3066\\u4e0b\\u3055\\u3044\\u3002\",\n\t        minValue:\"\\u6b21\\u306e\\u5024\\u4ee5\\u4e0a\\u3067\\u5165\\u529b\\u3057\\u3066\\u4e0b\\u3055\\u3044\\u3002\",\n\t        maxValue:\"\\u6b21\\u306e\\u5024\\u4ee5\\u4e0b\\u3067\\u5165\\u529b\\u3057\\u3066\\u4e0b\\u3055\\u3044\\u3002\",\n\t        email: \"e-mail\\u304c\\u6b63\\u3057\\u304f\\u3042\\u308a\\u307e\\u305b\\u3093\\u3002\",\n\t        integer: \"\\u6b63\\u3057\\u3044\\u6574\\u6570\\u5024\\u3092\\u5165\\u529b\\u3057\\u3066\\u4e0b\\u3055\\u3044\\u3002\",\n    \t\t\tdate: \"\\u6b63\\u3057\\u3044\\u5024\\u3092\\u5165\\u529b\\u3057\\u3066\\u4e0b\\u3055\\u3044\\u3002\",\n          url: \"\\u306F\\u6709\\u52B9\\u306AURL\\u3067\\u306F\\u3042\\u308A\\u307E\\u305B\\u3093\\u3002\\20\\u30D7\\u30EC\\u30D5\\u30A3\\u30C3\\u30AF\\u30B9\\u304C\\u5FC5\\u8981\\u3067\\u3059\\u3002 ('http://' \\u307E\\u305F\\u306F 'https://')\",\n          nodefined: \" \\u304C\\u5B9A\\u7FA9\\u3055\\u308C\\u3066\\u3044\\u307E\\u305B\\u3093\",\n          novalue: \" \\u623B\\u308A\\u5024\\u304C\\u5FC5\\u8981\\u3067\\u3059\",\n          customarray: \"\\u30AB\\u30B9\\u30BF\\u30E0\\u95A2\\u6570\\u306F\\u914D\\u5217\\u3092\\u8FD4\\u3059\\u5FC5\\u8981\\u304C\\u3042\\u308A\\u307E\\u3059\",\n          customfcheck: \"\\u30AB\\u30B9\\u30BF\\u30E0\\u691C\\u8A3C\\u306B\\u306F\\u30AB\\u30B9\\u30BF\\u30E0\\u95A2\\u6570\\u304C\\u5FC5\\u8981\\u3067\\u3059\"\n\t\t}\n\t},\n\tview : {\n      caption: \"\\u30EC\\u30B3\\u30FC\\u30C9\\u3092\\u8868\\u793A\",\n      bClose: \"\\u9589\\u3058\\u308B\"\n\t},\n\tdel : {\n\t    caption: \"\\u524a\\u9664\",\n\t    msg: \"\\u9078\\u629e\\u3057\\u305f\\u30ec\\u30b3\\u30fc\\u30c9\\u3092\\u524a\\u9664\\u3057\\u307e\\u3059\\u304b\\uff1f\",\n\t    bSubmit: \"\\u524a\\u9664\",\n\t    bCancel: \"\\u30ad\\u30e3\\u30f3\\u30bb\\u30eb\"\n\t},\n\tnav : {\n    \tedittext: \" \",\n\t    edittitle: \"\\u9078\\u629e\\u3057\\u305f\\u884c\\u3092\\u7de8\\u96c6\",\n      addtext:\" \",\n\t    addtitle: \"\\u884c\\u3092\\u65b0\\u898f\\u8ffd\\u52a0\",\n\t    deltext: \" \",\n\t    deltitle: \"\\u9078\\u629e\\u3057\\u305f\\u884c\\u3092\\u524a\\u9664\",\n\t    searchtext: \" \",\n\t    searchtitle: \"\\u30ec\\u30b3\\u30fc\\u30c9\\u691c\\u7d22\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"\\u30b0\\u30ea\\u30c3\\u30c9\\u3092\\u30ea\\u30ed\\u30fc\\u30c9\",\n\t    alertcap: \"\\u8b66\\u544a\",\n\t    alerttext: \"\\u884c\\u3092\\u9078\\u629e\\u3057\\u3066\\u4e0b\\u3055\\u3044\\u3002\",\n      viewtext: \"\",\n      viewtitle: \"\\u9078\\u629E\\u3057\\u305F\\u884C\\u3092\\u8868\\u793A\"\n\t},\n\tcol : {\n\t    caption: \"\\u5217\\u3092\\u8868\\u793a\\uff0f\\u96a0\\u3059\",\n\t    bSubmit: \"\\u9001\\u4fe1\",\n\t    bCancel: \"\\u30ad\\u30e3\\u30f3\\u30bb\\u30eb\"\t\n\t},\n\terrors : {\n\t\terrcap : \"\\u30a8\\u30e9\\u30fc\",\n\t\tnourl : \"URL\\u304c\\u8a2d\\u5b9a\\u3055\\u308c\\u3066\\u3044\\u307e\\u305b\\u3093\\u3002\",\n\t\tnorecords: \"\\u51e6\\u7406\\u5bfe\\u8c61\\u306e\\u30ec\\u30b3\\u30fc\\u30c9\\u304c\\u3042\\u308a\\u307e\\u305b\\u3093\\u3002\",\n\t    model : \"colNames\\u306e\\u9577\\u3055\\u304ccolModel\\u3068\\u4e00\\u81f4\\u3057\\u307e\\u305b\\u3093\\u3002\"\n\t},\n\tformatter : {\n            integer: {\n                thousandsSeparator: \",\",\n                defaultValue: '0'\n            },\n            number: {\n                decimalSeparator: \".\",\n                thousandsSeparator: \",\",\n                decimalPlaces: 2,\n                defaultValue: '0.00'\n            },\n            currency: {\n                decimalSeparator: \".\",\n                thousandsSeparator: \",\",\n                decimalPlaces: 0,\n                prefix: \"\",\n                suffix: \"\",\n                defaultValue: '0'\n            },\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"\\u65e5\", \"\\u6708\", \"\\u706b\", \"\\u6c34\", \"\\u6728\", \"\\u91d1\", \"\\u571f\",\n\t\t\t\t\"\\u65e5\", \"\\u6708\", \"\\u706b\", \"\\u6c34\", \"\\u6728\", \"\\u91d1\", \"\\u571f\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"1\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \"8\", \"9\", \"10\", \"11\", \"12\",\n\t\t\t\t\"1\\u6708\", \"2\\u6708\", \"3\\u6708\", \"4\\u6708\", \"5\\u6708\", \"6\\u6708\", \"7\\u6708\", \"8\\u6708\", \"9\\u6708\", \"10\\u6708\", \"11\\u6708\", \"12\\u6708\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) { return \"\\u756a\\u76ee\"; },\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-kr.js",
    "content": ";(function($){\n/**\n * jqGrid English Translation\n * Tony Tomov tony@trirand.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"보기 {0} - {1} / {2}\",\n\t\temptyrecords: \"표시할 행이 없습니다\",\n\t\tloadtext: \"조회중...\",\n\t\tpgtext : \"페이지 {0} / {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"검색...\",\n\t\tFind: \"찾기\",\n\t\tReset: \"초기화\",\n\t\todata: [{ oper:'eq', text:\"같다\"},{ oper:'ne', text:\"같지 않다\"},{ oper:'lt', text:\"작다\"},{ oper:'le', text:\"작거나 같다\"},{ oper:'gt', text:\"크다\"},{ oper:'ge', text:\"크거나 같다\"},{ oper:'bw', text:\"로 시작한다\"},{ oper:'bn', text:\"로 시작하지 않는다\"},{ oper:'in', text:\"내에 있다\"},{ oper:'ni', text:\"내에 있지 않다\"},{ oper:'ew', text:\"로 끝난다\"},{ oper:'en', text:\"로 끝나지 않는다\"},{ oper:'cn', text:\"내에 존재한다\"},{ oper:'nc', text:\"내에 존재하지 않는다\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"전부\" },\t{ op: \"OR\",  text: \"임의\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"행 추가\",\n\t\teditCaption: \"행 수정\",\n\t\tbSubmit: \"전송\",\n\t\tbCancel: \"취소\",\n\t\tbClose: \"닫기\",\n\t\tsaveData: \"자료가 변경되었습니다! 저장하시겠습니까?\",\n\t\tbYes : \"예\",\n\t\tbNo : \"아니오\",\n\t\tbExit : \"취소\",\n\t\tmsg: {\n\t\t\trequired:\"필수항목입니다\",\n\t\t\tnumber:\"유효한 번호를 입력해 주세요\",\n\t\t\tminValue:\"입력값은 크거나 같아야 합니다\",\n\t\t\tmaxValue:\"입력값은 작거나 같아야 합니다\",\n\t\t\temail: \"유효하지 않은 이메일주소입니다\",\n\t\t\tinteger: \"유효한 숫자를 입력하세요\",\n\t\t\tdate: \"유효한 날짜를 입력하세요\",\n\t\t\turl: \"은 유효하지 않은 URL입니다. 문장앞에 다음단어가 필요합니다('http://' or 'https://')\",\n\t\t\tnodefined : \" 은 정의도지 않았습니다!\",\n\t\t\tnovalue : \" 반환값이 필요합니다!\",\n\t\t\tcustomarray : \"사용자정의 함수는 배열을 반환해야 합니다!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"행 조회\",\n\t\tbClose: \"닫기\"\n\t},\n\tdel : {\n\t\tcaption: \"삭제\",\n\t\tmsg: \"선택된 행을 삭제하시겠습니까?\",\n\t\tbSubmit: \"삭제\",\n\t\tbCancel: \"취소\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"선택된 행 편집\",\n\t\taddtext:\"\",\n\t\taddtitle: \"행 삽입\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"선택된 행 삭제\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"행 찾기\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"그리드 갱신\",\n\t\talertcap: \"경고\",\n\t\talerttext: \"행을 선택하세요\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"선택된 행 조회\"\n\t},\n\tcol : {\n\t\tcaption: \"열을 선택하세요\",\n\t\tbSubmit: \"확인\",\n\t\tbCancel: \"취소\"\n\t},\n\terrors : {\n\t\terrcap : \"오류\",\n\t\tnourl : \"설정된 url이 없습니다\",\n\t\tnorecords: \"처리할 행이 없습니다\",\n\t\tmodel : \"colNames의 길이가 colModel과 일치하지 않습니다!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \",\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \",\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thr\", \"Fri\", \"Sat\",\n\t\t\t\t\"일\", \"월\", \"화\", \"수\", \"목\", \"금\", \"토\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\",\n\t\t\t\t\"1월\", \"2월\", \"3월\", \"4월\", \"5월\", \"6월\", \"7월\", \"8월\", \"9월\", \"10월\", \"11월\", \"12월\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'm-d-Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"Y/j/n\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-lt.js",
    "content": ";(function($){\n/**\n * jqGrid Lithuanian Translation\n * aur1mas aur1mas@devnet.lt\n * http://aur1mas.devnet.lt\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Peržiūrima {0} - {1} iš {2}\",\n\t\temptyrecords: \"Įrašų nėra\",\n\t\tloadtext: \"Kraunama...\",\n\t\tpgtext : \"Puslapis {0} iš {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Paieška...\",\n\t\tFind: \"Ieškoti\",\n\t\tReset: \"Atstatyti\",\n\t\todata: [{ oper:'eq', text:\"lygu\"},{ oper:'ne', text:\"nelygu\"},{ oper:'lt', text:\"mažiau\"},{ oper:'le', text:\"mažiau arba lygu\"},{ oper:'gt', text:\"daugiau\"},{ oper:'ge', text:\"daugiau arba lygu\"},{ oper:'bw', text:\"prasideda\"},{ oper:'bn', text:\"neprasideda\"},{ oper:'in', text:\"reikšmė yra\"},{ oper:'ni', text:\"reikšmės nėra\"},{ oper:'ew', text:\"baigiasi\"},{ oper:'en', text:\"nesibaigia\"},{ oper:'cn', text:\"yra sudarytas\"},{ oper:'nc', text:\"nėra sudarytas\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"visi\" },\t{ op: \"OR\",  text: \"bet kuris\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Sukurti įrašą\",\n\t\teditCaption: \"Redaguoti įrašą\",\n\t\tbSubmit: \"Išsaugoti\",\n\t\tbCancel: \"Atšaukti\",\n\t\tbClose: \"Uždaryti\",\n\t\tsaveData: \"Duomenys buvo pakeisti! Išsaugoti pakeitimus?\",\n\t\tbYes : \"Taip\",\n\t\tbNo : \"Ne\",\n\t\tbExit : \"Atšaukti\",\n\t\tmsg: {\n\t\t\trequired:\"Privalomas laukas\",\n\t\t\tnumber:\"Įveskite tinkamą numerį\",\n\t\t\tminValue:\"reikšmė turi būti didesnė arba lygi \",\n\t\t\tmaxValue:\"reikšmė turi būti mažesnė arba lygi\",\n\t\t\temail: \"neteisingas el. pašto adresas\",\n\t\t\tinteger: \"Įveskite teisingą sveikąjį skaičių\",\n\t\t\tdate: \"Įveskite teisingą datą\",\n\t\t\turl: \"blogas adresas. Nepamirškite pridėti ('http://' arba 'https://')\",\n\t\t\tnodefined : \" nėra apibrėžta!\",\n\t\t\tnovalue : \" turi būti gražinama kokia nors reikšmė!\",\n\t\t\tcustomarray : \"Custom f-ja turi grąžinti masyvą!\",\n\t\t\tcustomfcheck : \"Custom f-ja tūrėtų būti sukurta, prieš bandant ją naudoti!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Peržiūrėti įrašus\",\n\t\tbClose: \"Uždaryti\"\n\t},\n\tdel : {\n\t\tcaption: \"Ištrinti\",\n\t\tmsg: \"Ištrinti pažymėtus įrašus(-ą)?\",\n\t\tbSubmit: \"Ištrinti\",\n\t\tbCancel: \"Atšaukti\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Redaguoti pažymėtą eilutę\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Pridėti naują eilutę\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Ištrinti pažymėtą eilutę\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Rasti įrašus\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Perkrauti lentelę\",\n\t\talertcap: \"Įspėjimas\",\n\t\talerttext: \"Pasirinkite eilutę\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Peržiūrėti pasirinktą eilutę\"\n\t},\n\tcol : {\n\t\tcaption: \"Pasirinkti stulpelius\",\n\t\tbSubmit: \"Gerai\",\n\t\tbCancel: \"Atšaukti\"\n\t},\n\terrors : {\n\t\terrcap : \"Klaida\",\n\t\tnourl : \"Url reikšmė turi būti perduota\",\n\t\tnorecords: \"Nėra įrašų, kuriuos būtų galima apdoroti\",\n\t\tmodel : \"colNames skaičius <> colModel skaičiui!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \"\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \"\", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \"\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Sek\", \"Pir\", \"Ant\", \"Tre\", \"Ket\", \"Pen\", \"Šeš\",\n\t\t\t\t\"Sekmadienis\", \"Pirmadienis\", \"Antradienis\", \"Trečiadienis\", \"Ketvirtadienis\", \"Penktadienis\", \"Šeštadienis\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Sau\", \"Vas\", \"Kov\", \"Bal\", \"Geg\", \"Bir\", \"Lie\", \"Rugj\", \"Rugs\", \"Spa\", \"Lap\", \"Gru\",\n\t\t\t\t\"Sausis\", \"Vasaris\", \"Kovas\", \"Balandis\", \"Gegužė\", \"Birželis\", \"Liepa\", \"Rugpjūtis\", \"Rugsėjis\", \"Spalis\", \"Lapkritis\", \"Gruodis\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-mne.js",
    "content": ";(function($){\n/**\n * jqGrid Montenegrian Translation\n * Bild Studio info@bild-studio.net\n * http://www.bild-studio.com\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Pregled {0} - {1} od {2}\",\n\t\temptyrecords: \"Ne postoji nijedan zapis\",\n\t\tloadtext: \"Učitivanje...\",\n\t\tpgtext : \"Strana {0} od {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Traženje...\",\n\t\tFind: \"Traži\",\n\t\tReset: \"Resetuj\",\n\t\todata: [{ oper:'eq', text:\"jednako\"},{ oper:'ne', text:\"nije jednako\"},{ oper:'lt', text:\"manje\"},{ oper:'le', text:\"manje ili jednako\"},{ oper:'gt', text:\"veće\"},{ oper:'ge', text:\"veće ili jednako\"},{ oper:'bw', text:\"počinje sa\"},{ oper:'bn', text:\"ne počinje sa\"},{ oper:'in', text:\"je u\"},{ oper:'ni', text:\"nije u\"},{ oper:'ew', text:\"završava sa\"},{ oper:'en', text:\"ne završava sa\"},{ oper:'cn', text:\"sadrži\"},{ oper:'nc', text:\"ne sadrži\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"sva\" },\t{ op: \"OR\",  text: \"bilo koje\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Dodaj zapis\",\n\t\teditCaption: \"Izmjeni zapis\",\n\t\tbSubmit: \"Pošalji\",\n\t\tbCancel: \"Odustani\",\n\t\tbClose: \"Zatvori\",\n\t\tsaveData: \"Podatak je izmjenjen! Sačuvaj izmjene?\",\n\t\tbYes : \"Da\",\n\t\tbNo : \"Ne\",\n\t\tbExit : \"Odustani\",\n\t\tmsg: {\n\t\t\trequired:\"Polje je obavezno\",\n\t\t\tnumber:\"Unesite ispravan broj\",\n\t\t\tminValue:\"vrijednost mora biti veća od ili jednaka sa \",\n\t\t\tmaxValue:\"vrijednost mora biti manja ili jednaka sa\",\n\t\t\temail: \"nije ispravna email adresa, nije valjda da ne umiješ ukucati mail!?\",\n\t\t\tinteger: \"Ne zajebaji se unesi cjelobrojnu vrijednost \",\n\t\t\tdate: \"Unesite ispravan datum\",\n\t\t\turl: \"nije ispravan URL. Potreban je prefiks ('http://' or 'https://')\",\n\t\t\tnodefined : \" nije definisan!\",\n\t\t\tnovalue : \" zahtjevana je povratna vrijednost!\",\n\t\t\tcustomarray : \"Prilagođena funkcija treba da vrati niz!\",\n\t\t\tcustomfcheck : \"Prilagođena funkcija treba da bude prisutana u slučaju prilagođene provjere!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Pogledaj zapis\",\n\t\tbClose: \"Zatvori\"\n\t},\n\tdel : {\n\t\tcaption: \"Izbrisi\",\n\t\tmsg: \"Izbrisi izabran(e) zapise(e)?\",\n\t\tbSubmit: \"Izbriši\",\n\t\tbCancel: \"Odbaci\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Izmjeni izabrani red\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Dodaj novi red\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Izbriši izabran red\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Nađi zapise\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Ponovo učitaj podatke\",\n\t\talertcap: \"Upozorenje\",\n\t\talerttext: \"Izaberite red\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Pogledaj izabrani red\"\n\t},\n\tcol : {\n\t\tcaption: \"Izaberi kolone\",\n\t\tbSubmit: \"OK\",\n\t\tbCancel: \"Odbaci\"\n\t},\n\terrors : {\n\t\terrcap : \"Greška\",\n\t\tnourl : \"Nije postavljen URL\",\n\t\tnorecords: \"Nema zapisa za obradu\",\n\t\tmodel : \"Dužina modela colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Ned\", \"Pon\", \"Uto\", \"Sre\", \"Čet\", \"Pet\", \"Sub\",\n\t\t\t\t\"Nedelja\", \"Ponedeljak\", \"Utorak\", \"Srijeda\", \"Četvrtak\", \"Petak\", \"Subota\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Maj\", \"Jun\", \"Jul\", \"Avg\", \"Sep\", \"Okt\", \"Nov\", \"Dec\",\n\t\t\t\t\"Januar\", \"Februar\", \"Mart\", \"April\", \"Maj\", \"Jun\", \"Jul\", \"Avgust\", \"Septembar\", \"Oktobar\", \"Novembar\", \"Decembar\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-nl.js",
    "content": "(function(a) {\na.jgrid = a.jgrid || {};\na.extend(a.jgrid,{\n        defaults:\n        {\n            recordtext: \"regels {0} - {1} van {2}\",\n            emptyrecords: \"Geen data gevonden.\",\n            loadtext: \"laden...\",\n            pgtext: \"pagina  {0}  van {1}\"\n        },\n        search:\n        {\n            caption: \"Zoeken...\",\n            Find: \"Zoek\",\n            Reset: \"Herstellen\",\n            odata: [{ oper:'eq', text:\"gelijk aan\"},{ oper:'ne', text:\"niet gelijk aan\"},{ oper:'lt', text:\"kleiner dan\"},{ oper:'le', text:\"kleiner dan of gelijk aan\"},{ oper:'gt', text:\"groter dan\"},{ oper:'ge', text:\"groter dan of gelijk aan\"},{ oper:'bw', text:\"begint met\"},{ oper:'bn', text:\"begint niet met\"},{ oper:'in', text:\"is in\"},{ oper:'ni', text:\"is niet in\"},{ oper:'ew', text:\"eindigd met\"},{ oper:'en', text:\"eindigd niet met\"},{ oper:'cn', text:\"bevat\"},{ oper:'nc', text:\"bevat niet\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n            groupOps: [{ op: \"AND\", text: \"alle\" }, { op: \"OR\", text: \"een van de\"}],\n\t\t\toperandTitle : \"Click to select search operation.\",\n\t\t\tresetTitle : \"Reset Search Value\"\n        },\n        edit:\n        {\n            addCaption: \"Nieuw\",\n            editCaption: \"Bewerken\",\n            bSubmit: \"Opslaan\",\n            bCancel: \"Annuleren\",\n            bClose: \"Sluiten\",\n            saveData: \"Er is data aangepast! Wijzigingen opslaan?\",\n            bYes: \"Ja\",\n            bNo: \"Nee\",\n            bExit: \"Sluiten\",\n            msg:\n            {\n                required: \"Veld is verplicht\",\n                number: \"Voer a.u.b. geldig nummer in\",\n                minValue: \"Waarde moet groter of gelijk zijn aan \",\n                maxValue: \"Waarde moet kleiner of gelijks zijn aan\",\n                email: \"is geen geldig e-mailadres\",\n                integer: \"Voer a.u.b. een geldig getal in\",\n                date: \"Voer a.u.b. een geldige waarde in\",\n                url: \"is geen geldige URL. Prefix is verplicht ('http://' or 'https://')\",\n                nodefined : \" is not defined!\",\n                novalue : \" return value is required!\",\n                customarray : \"Custom function should return array!\",\n                customfcheck : \"Custom function should be present in case of custom checking!\"\n            }\n        },\n        view:\n        {\n            caption: \"Tonen\",\n            bClose: \"Sluiten\"\n        },\n        del:\n        {\n            caption: \"Verwijderen\",\n            msg: \"Verwijder geselecteerde regel(s)?\",\n            bSubmit: \"Verwijderen\",\n            bCancel: \"Annuleren\"\n        },\n        nav:\n        {\n            edittext: \"\",\n            edittitle: \"Bewerken\",\n            addtext: \"\",\n            addtitle: \"Nieuw\",\n            deltext: \"\",\n            deltitle: \"Verwijderen\",\n            searchtext: \"\",\n            searchtitle: \"Zoeken\",\n            refreshtext: \"\",\n            refreshtitle: \"Vernieuwen\",\n            alertcap: \"Waarschuwing\",\n            alerttext: \"Selecteer a.u.b. een regel\",\n            viewtext: \"\",\n            viewtitle: \"Openen\"\n        },\n        col:\n        {\n            caption: \"Tonen/verbergen kolommen\",\n            bSubmit: \"OK\",\n            bCancel: \"Annuleren\"\n        },\n        errors:\n        {\n            errcap: \"Fout\",\n            nourl: \"Er is geen URL gedefinieerd\",\n            norecords: \"Geen data om te verwerken\",\n            model: \"Lengte van 'colNames' is niet gelijk aan 'colModel'!\"\n        },\n        formatter:\n        {\n            integer:\n            {\n                thousandsSeparator: \".\",\n                defaultValue: \"0\"\n            },\n            number:\n            {\n                decimalSeparator: \",\",\n                thousandsSeparator: \".\",\n                decimalPlaces: 2,\n                defaultValue: \"0.00\"\n            },\n            currency:\n            {\n                decimalSeparator: \",\",\n                thousandsSeparator: \".\",\n                decimalPlaces: 2,\n                prefix: \"EUR \",\n                suffix: \"\",\n                defaultValue: \"0.00\"\n            },\n            date:\n            {\n                dayNames: [\"Zo\", \"Ma\", \"Di\", \"Wo\", \"Do\", \"Vr\", \"Za\", \"Zondag\", \"Maandag\", \"Dinsdag\", \"Woensdag\", \"Donderdag\", \"Vrijdag\", \"Zaterdag\"],\n                monthNames: [\"Jan\", \"Feb\", \"Maa\", \"Apr\", \"Mei\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\", \"Januari\", \"Februari\", \"Maart\", \"April\", \"Mei\", \"Juni\", \"Juli\", \"Augustus\", \"September\", \"October\", \"November\", \"December\"],\n                AmPm: [\"am\", \"pm\", \"AM\", \"PM\"],\n                S: function(b) {\n                    return b < 11 || b > 13 ? [\"st\", \"nd\", \"rd\", \"th\"][Math.min((b - 1) % 10, 3)] : \"th\"\n                },\n                srcformat: \"Y-m-d\",\n                newformat: \"d/m/Y\",\n\t\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n                masks:\n                {\n                    ISO8601Long: \"Y-m-d H:i:s\",\n                    ISO8601Short: \"Y-m-d\",\n                    ShortDate: \"n/j/Y\",\n                    LongDate: \"l, F d, Y\",\n                    FullDateTime: \"l d F Y G:i:s\",\n                    MonthDay: \"d F\",\n                    ShortTime: \"G:i\",\n                    LongTime: \"G:i:s\",\n                    SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n                    UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n                    YearMonth: \"F, Y\"\n                },\n                reformatAfterEdit: false\n            },\n            baseLinkUrl: \"\",\n            showAction: \"\",\n            target: \"\",\n            checkbox:\n            {\n                disabled: true\n            },\n            idName: \"id\"\n        }\n    });\n})(jQuery);"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-no.js",
    "content": "(function(a){a.jgrid= a.jgrid || {};a.jgrid.defaults={recordtext:\"Rad {0} - {1}, totalt {2}\",loadtext:\"Laster...\",pgtext:\"Side {0} av {1}\"};a.jgrid.search={caption:\"S�k...\",Find:\"Finn\",Reset:\"Nullstill\",odata:[{oper:'eq', text:\"lik\"},{oper:'ne', text:\"forskjellig fra\"},{oper:'lt', text:\"mindre enn\"},{oper:'le', text:\"mindre eller lik\"},{oper:'gt', text:\"st�rre enn\"},{oper:'ge', text:\" st�rre eller lik\"},{oper:'bw', text:\"starter med\"},{oper:'ew', text:\"slutter med\"},{oper:'cn', text:\"inneholder\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],operandTitle : \"Click to select search operation.\",resetTitle : \"Reset Search Value\"};a.jgrid.edit={addCaption:\"Ny rad\",editCaption:\"Rediger\",bSubmit:\"Send\",bCancel:\"Avbryt\",bClose:\"Lukk\",processData:\"Laster...\",msg:{required:\"Felt er obligatorisk\",number:\"Legg inn et gyldig tall\",minValue:\"verdi m� v�re st�rre enn eller lik\",maxValue:\"verdi m� v�re mindre enn eller lik\",email:\"er ikke en gyldig e-post adresse\",integer:\"Legg inn et gyldig heltall\",date:\"Legg inn en gyldig dato\",url:\"er ikke en gyldig URL. Prefiks p�krevd ('http://' eller 'https://')\",nodefined:\" er ikke definert!\",novalue:\" returverdi er p�krevd!\",customarray:\"Tilpasset funksjon m� returnere en tabell!\",customfcheck:\"Tilpasset funksjon m� eksistere!\"}};a.jgrid.view={caption:\"�pne post\",bClose:\"Lukk\"};a.jgrid.del={caption:\"Slett\",msg:\"Slett valgte rad(er)?\",bSubmit:\"Slett\",bCancel:\"Avbryt\",processData:\"Behandler...\"};a.jgrid.nav={edittext:\" \",edittitle:\"Rediger valgte rad(er)\",addtext:\" \",addtitle:\"Legg til ny rad\",deltext:\" \",deltitle:\"Slett valgte rad(er)\",searchtext:\" \",searchtitle:\"S�k\",refreshtext:\"\",refreshtitle:\"Oppdater tabell\",alertcap:\"Advarsel\",alerttext:\"Velg rad\",viewtext:\" \",viewtitle:\"�pne valgt rad\"};a.jgrid.col={caption:\"Vis/skjul kolonner\",bSubmit:\"Utf�r\",bCancel:\"Avbryt\"};a.jgrid.errors={errcap:\"Feil\",nourl:\"Ingen url er satt\",norecords:\"Ingen poster � behandle\",model:\"colNames og colModel har forskjellig lengde!\"};a.jgrid.formatter={integer:{thousandsSeparator:\" \",defaultValue:0},number:{decimalSeparator:\",\",thousandsSeparator:\" \",decimalPlaces:2,defaulValue:0},currency:{decimalSeparator:\",\",thousandsSeparator:\" \",decimalPlaces:2,prefix:\"\",suffix:\"\",defaulValue:0},date:{dayNames:[\"s�.\",\"ma.\",\"ti.\",\"on.\",\"to.\",\"fr.\",\"l�.\",\"S�ndag\",\"Mandag\",\"Tirsdag\",\"Onsdag\",\"Torsdag\",\"Fredag\",\"L�rdag\"],monthNames:[\"jan.\",\"feb.\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"aug.\",\"sep.\",\"okt.\",\"nov.\",\"des.\",\"januar\",\"februar\",\"mars\",\"april\",\"mai\",\"juni\",\"juli\",\"august\",\"september\",\"oktober\",\"november\",\"desember\"],AmPm:[\"\",\"\",\"\",\"\"],S:function(b){return\".\"},srcformat:\"Y-m-d H:i:s\",newformat:\"Y-m-d H:i:s\",parseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,masks:{ISO8601Long:\"Y-m-d H:i:s\",ISO8601Short:\"Y-m-d\",ShortDate:\"j.n.Y\",LongDate:\"l j. F Y\",FullDateTime:\"l j. F Y kl. G.i.s\",MonthDay:\"j. F\",ShortTime:\"H:i\",LongTime:\"H:i:s\",SortableDateTime:\"Y-m-d\\\\TH:i:s\",UniversalSortableDateTime:\"Y-m-d H:i:sO\",YearMonth:\"F Y\"},reformatAfterEdit:false},baseLinkUrl:\"\",showAction:\"show\",addParam:\"\",checkbox:{disabled:true}}})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-pl.js",
    "content": ";(function($){\n/**\n * jqGrid Polish Translation\n * Łukasz Schab lukasz@freetree.pl\n * http://FreeTree.pl\n *\n * Updated names, abbreviations, currency and date/time formats for Polish norms (also corresponding with CLDR v21.0.1 --> http://cldr.unicode.org/index) \n * Tomasz Pęczek tpeczek@gmail.com\n * http://tpeczek.blogspot.com; http://tpeczek.codeplex.com\n *\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Pokaż {0} - {1} z {2}\",\n\t\temptyrecords: \"Brak rekordów do pokazania\",\n\t\tloadtext: \"Ładowanie...\",\n\t\tpgtext : \"Strona {0} z {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Wyszukiwanie...\",\n\t\tFind: \"Szukaj\",\n\t\tReset: \"Czyść\",\n\t\todata: [{ oper:'eq', text:\"dokładnie\"},{ oper:'ne', text:\"różne od\"},{ oper:'lt', text:\"mniejsze od\"},{ oper:'le', text:\"mniejsze lub równe\"},{ oper:'gt', text:\"większe od\"},{ oper:'ge', text:\"większe lub równe\"},{ oper:'bw', text:\"zaczyna się od\"},{ oper:'bn', text:\"nie zaczyna się od\"},{ oper:'in', text:\"jest w\"},{ oper:'ni', text:\"nie jest w\"},{ oper:'ew', text:\"kończy się na\"},{ oper:'en', text:\"nie kończy się na\"},{ oper:'cn', text:\"zawiera\"},{ oper:'nc', text:\"nie zawiera\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"oraz\" },\t{ op: \"OR\",  text: \"lub\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Dodaj rekord\",\n\t\teditCaption: \"Edytuj rekord\",\n\t\tbSubmit: \"Zapisz\",\n\t\tbCancel: \"Anuluj\",\n\t\tbClose: \"Zamknij\",\n\t\tsaveData: \"Dane zostały zmienione! Zapisać zmiany?\",\n\t\tbYes: \"Tak\",\n\t\tbNo: \"Nie\",\n\t\tbExit: \"Anuluj\",\n\t\tmsg: {\n\t\t\trequired: \"Pole jest wymagane\",\n\t\t\tnumber: \"Proszę wpisać poprawną liczbę\",\n\t\t\tminValue: \"wartość musi być większa lub równa od\",\n\t\t\tmaxValue: \"wartość musi być mniejsza lub równa od\",\n\t\t\temail: \"nie jest poprawnym adresem e-mail\",\n\t\t\tinteger: \"Proszę wpisać poprawną liczbę\",\n\t\t\tdate: \"Proszę podaj poprawną datę\",\n\t\t\turl: \"jest niewłaściwym adresem URL. Pamiętaj o prefiksie ('http://' lub 'https://')\",\n\t\t\tnodefined: \" niezdefiniowane!\",\n\t\t\tnovalue: \" wymagana jest wartość zwracana!\",\n\t\t\tcustomarray: \"Funkcja niestandardowa powinna zwracać tablicę!\",\n\t\t\tcustomfcheck: \"Funkcja niestandardowa powinna być obecna w przypadku niestandardowego sprawdzania!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Pokaż rekord\",\n\t\tbClose: \"Zamknij\"\n\t},\n\tdel : {\n\t\tcaption: \"Usuń\",\n\t\tmsg: \"Czy usunąć wybrany rekord(y)?\",\n\t\tbSubmit: \"Usuń\",\n\t\tbCancel: \"Anuluj\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Edytuj wybrany wiersz\",\n\t\taddtext: \"\",\n\t\taddtitle: \"Dodaj nowy wiersz\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Usuń wybrany wiersz\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Wyszukaj rekord\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Przeładuj\",\n\t\talertcap: \"Uwaga\",\n\t\talerttext: \"Proszę wybrać wiersz\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Pokaż wybrany wiersz\"\n\t},\n\tcol : {\n\t\tcaption: \"Pokaż/Ukryj kolumny\",\n\t\tbSubmit: \"Zatwierdź\",\n\t\tbCancel: \"Anuluj\"\n\t},\n\terrors : {\n\t\terrcap: \"Błąd\",\n\t\tnourl: \"Brak adresu url\",\n\t\tnorecords: \"Brak danych\",\n\t\tmodel : \"Długość colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\" zł\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"niedz.\", \"pon.\", \"wt.\", \"śr.\", \"czw.\", \"pt.\", \"sob.\",\n\t\t\t\t\"niedziela\", \"poniedziałek\", \"wtorek\", \"środa\", \"czwartek\", \"piątek\", \"sobota\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"sty\", \"lut\", \"mar\", \"kwi\", \"maj\", \"cze\", \"lip\", \"sie\", \"wrz\", \"paź\", \"lis\", \"gru\",\n\t\t\t\t\"styczeń\", \"luty\", \"marzec\", \"kwiecień\", \"maj\", \"czerwiec\", \"lipiec\", \"sierpień\", \"wrzesień\", \"październik\", \"listopad\", \"grudzień\"\n\t\t\t\t],\n\t\t\tAmPm : [\"\",\"\",\"\",\"\"],\n\t\t\tS: function (j) {return '';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd.m.Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long: \"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short: \"Y-m-d\",\n\t\t\t\tShortDate: \"d.m.y\",\n\t\t\t\tLongDate: \"l, j F Y\",\n\t\t\t\tFullDateTime: \"l, j F Y H:i:s\",\n\t\t\t\tMonthDay: \"j F\",\n\t\t\t\tShortTime: \"H:i\",\n\t\t\t\tLongTime: \"H:i:s\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-pt-br.js",
    "content": ";(function($){\n/**\n * jqGrid Brazilian-Portuguese Translation\n * Sergio Righi sergio.righi@gmail.com\n * http://curve.com.br\n * \n * Updated by Jonnas Fonini\n * http://fonini.net\n *\n *\n * Updated by Fabio Ferreira da Silva fabio_ferreiradasilva@yahoo.com.br\n * \n *\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Ver {0} - {1} de {2}\",\n\t    emptyrecords: \"Nenhum registro para visualizar\",\n\t\tloadtext: \"Carregando...\",\n\t\tpgtext : \"Página {0} de {1}\"\n\t},\n\tsearch : {\n\t    caption: \"Procurar...\",\n\t    Find: \"Procurar\",\n\t    Reset: \"Resetar\",\n\t    odata: [{ oper:'eq', text:\"igual\"},{ oper:'ne', text:\"diferente\"},{ oper:'lt', text:\"menor\"},{ oper:'le', text:\"menor ou igual\"},{ oper:'gt', text:\"maior\"},{ oper:'ge', text:\"maior ou igual\"},{ oper:'bw', text:\"inicia com\"},{ oper:'bn', text:\"não inicia com\"},{ oper:'in', text:\"está em\"},{ oper:'ni', text:\"não está em\"},{ oper:'ew', text:\"termina com\"},{ oper:'en', text:\"não termina com\"},{ oper:'cn', text:\"contém\"},{ oper:'nc', text:\"não contém\"},{ oper:'nu', text:\"nulo\"},{ oper:'nn', text:\"não nulo\"}],\n\t    groupOps: [\t{ op: \"AND\", text: \"todos\" },{ op: \"OR\",  text: \"qualquer um\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Incluir\",\n\t    editCaption: \"Alterar\",\n\t    bSubmit: \"Enviar\",\n\t    bCancel: \"Cancelar\",\n\t\tbClose: \"Fechar\",\n\t\tsaveData: \"Os dados foram alterados! Salvar alterações?\",\n\t\tbYes : \"Sim\",\n\t\tbNo : \"Não\",\n\t\tbExit : \"Cancelar\",\n\t    msg: {\n\t        required:\"Campo obrigatório\",\n\t        number:\"Por favor, informe um número válido\",\n\t        minValue:\"valor deve ser igual ou maior que \",\n\t        maxValue:\"valor deve ser menor ou igual a\",\n\t        email: \"este e-mail não é válido\",\n\t        integer: \"Por favor, informe um valor inteiro\",\n\t\t\tdate: \"Por favor, informe uma data válida\",\n\t\t\turl: \"não é uma URL válida. Prefixo obrigatório ('http://' or 'https://')\",\n\t\t\tnodefined : \" não está definido!\",\n\t\t\tnovalue : \" um valor de retorno é obrigatório!\",\n\t\t\tcustomarray : \"Função customizada deve retornar um array!\",\n\t\t\tcustomfcheck : \"Função customizada deve estar presente em caso de validação customizada!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Ver Registro\",\n\t    bClose: \"Fechar\"\n\t},\n\tdel : {\n    caption: \"Apagar\",\n\t    msg: \"Apagar registro(s) selecionado(s)?\",\n\t    bSubmit: \"Apagar\",\n\t    bCancel: \"Cancelar\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Alterar registro selecionado\",\n\t\taddtext:\" \",\n\t    addtitle: \"Incluir novo registro\",\n\t    deltext: \" \",\n\t    deltitle: \"Apagar registro selecionado\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Procurar registros\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Recarregando tabela\",\n\t    alertcap: \"Aviso\",\n\t    alerttext: \"Por favor, selecione um registro\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Ver linha selecionada\"\n\t},\n\tcol : {\n\t    caption: \"Mostrar/Esconder Colunas\",\n\t    bSubmit: \"Enviar\",\n\t    bCancel: \"Cancelar\"\n\t},\n\terrors : {\n\t\terrcap : \"Erro\",\n\t\tnourl : \"Nenhuma URL definida\",\n\t\tnorecords: \"Sem registros para exibir\",\n\t    model : \"Comprimento de colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"R$ \", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Dom\", \"Seg\", \"Ter\", \"Qua\", \"Qui\", \"Sex\", \"Sáb\",\n\t\t\t\t\"Domingo\", \"Segunda\", \"Terça\", \"Quarta\", \"Quinta\", \"Sexta\", \"Sábado\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Fev\", \"Mar\", \"Abr\", \"Mai\", \"Jun\", \"Jul\", \"Ago\", \"Set\", \"Out\", \"Nov\", \"Dez\",\n\t\t\t\t\"Janeiro\", \"Fevereiro\", \"Março\", \"Abril\", \"Maio\", \"Junho\", \"Julho\", \"Agosto\", \"Setembro\", \"Outubro\", \"Novembro\", \"Dezembro\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['º', 'º', 'º', 'º'][Math.min((j - 1) % 10, 3)] : 'º'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-pt.js",
    "content": ";(function($){\n/**\n * jqGrid Portuguese Translation\n* Tradu��o da jqGrid em Portugues por Frederico Carvalho, http://www.eyeviewdesign.pt\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"View {0} - {1} of {2}\",\n\t    emptyrecords: \"No records to view\",\n\t\tloadtext: \"A carregar...\",\n\t\tpgtext : \"Página {0} de {1}\"\n\t},\n\tsearch : {\n\t    caption: \"Busca...\",\n\t    Find: \"Procurar\",\n\t    Reset: \"Limpar\",\n\t    odata: [{ oper:'eq', text:'equal'},{ oper:'ne', text:'not equal'},{ oper:'lt', text:'less'},{ oper:'le', text:'less or equal'},{ oper:'gt', text:'greater'},{ oper:'ge', text:'greater or equal'},{ oper:'bw', text:'begins with'},{ oper:'bn', text:'does not begin with'},{ oper:'in', text:'is in'},{ oper:'ni', text:'is not in'},{ oper:'ew', text:'ends with'},{ oper:'en', text:'does not end with'},{ oper:'cn', text:'contains'},{ oper:'nc', text:'does not contain'},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"all\" },\t{ op: \"OR\",  text: \"any\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Adicionar Registo\",\n\t    editCaption: \"Modificar Registo\",\n\t    bSubmit: \"Submeter\",\n\t    bCancel: \"Cancelar\",\n\t\tbClose: \"Fechar\",\n\t\tsaveData: \"Data has been changed! Save changes?\",\n\t\tbYes : \"Yes\",\n\t\tbNo : \"No\",\n\t\tbExit : \"Cancel\",\n\t    msg: {\n\t        required:\"Campo obrigat�rio\",\n\t        number:\"Por favor, introduza um numero\",\n\t        minValue:\"O valor deve ser maior ou igual que\",\n\t        maxValue:\"O valor deve ser menor ou igual a\",\n\t        email: \"N�o � um endere�o de email v�lido\",\n\t        integer: \"Por favor, introduza um numero inteiro\",\n\t\t\turl: \"is not a valid URL. Prefix required ('http://' or 'https://')\",\n\t\t\tnodefined : \" is not defined!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"View Record\",\n\t    bClose: \"Close\"\n\t},\n\tdel : {\n\t    caption: \"Eliminar\",\n\t    msg: \"Deseja eliminar o(s) registo(s) seleccionado(s)?\",\n\t    bSubmit: \"Eliminar\",\n\t    bCancel: \"Cancelar\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Modificar registo seleccionado\",\n\t\taddtext:\" \",\n\t    addtitle: \"Adicionar novo registo\",\n\t    deltext: \" \",\n\t    deltitle: \"Eliminar registo seleccionado\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Procurar\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Actualizar\",\n\t    alertcap: \"Aviso\",\n\t    alerttext: \"Por favor, seleccione um registo\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"View selected row\"\n\t},\n\tcol : {\n\t    caption: \"Mostrar/Ocultar Colunas\",\n\t    bSubmit: \"Enviar\",\n\t    bCancel: \"Cancelar\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Erro\",\n\t\tnourl : \"N�o especificou um url\",\n\t\tnorecords: \"N�o existem dados para processar\",\n\t    model : \"Tamanho do colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Dom\", \"Seg\", \"Ter\", \"Qua\", \"Qui\", \"Sex\", \"Sab\",\n\t\t\t\t\"Domingo\", \"Segunda-Feira\", \"Ter�a-Feira\", \"Quarta-Feira\", \"Quinta-Feira\", \"Sexta-Feira\", \"S�bado\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Fev\", \"Mar\", \"Abr\", \"Mai\", \"Jun\", \"Jul\", \"Ago\", \"Set\", \"Out\", \"Nov\", \"Dez\",\n\t\t\t\t\"Janeiro\", \"Fevereiro\", \"Mar�o\", \"Abril\", \"Maio\", \"Junho\", \"Julho\", \"Agosto\", \"Setembro\", \"Outubro\", \"Novembro\", \"Dezembro\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['�', '�', '�', '�'][Math.min((j - 1) % 10, 3)] : '�'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-ro.js",
    "content": ";(function($){\n/**\n * jqGrid Romanian Translation\n * Alexandru Emil Lupu contact@alecslupu.ro\n * http://www.alecslupu.ro/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Vizualizare {0} - {1} din {2}\",\n\t\temptyrecords: \"Nu există înregistrări de vizualizat\",\n\t\tloadtext: \"Încărcare...\",\n\t\tpgtext : \"Pagina {0} din {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Caută...\",\n\t\tFind: \"Caută\",\n\t\tReset: \"Resetare\",\n\t\todata: [{ oper:'eq', text:\"egal\"},{ oper:'ne', text:\"diferit\"},{ oper:'lt', text:\"mai mic\"},{ oper:'le', text:\"mai mic sau egal\"},{ oper:'gt', text:\"mai mare\"},{ oper:'ge', text:\"mai mare sau egal\"},{ oper:'bw', text:\"începe cu\"},{ oper:'bn', text:\"nu începe cu\"},{ oper:'in', text:\"se găsește în\"},{ oper:'ni', text:\"nu se găsește în\"},{ oper:'ew', text:\"se termină cu\"},{ oper:'en', text:\"nu se termină cu\"},{ oper:'cn', text:\"conține\"},{ oper:'nc', text:\"\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"toate\" },\t{ op: \"OR\",  text: \"oricare\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Adăugare înregistrare\",\n\t\teditCaption: \"Modificare înregistrare\",\n\t\tbSubmit: \"Salvează\",\n\t\tbCancel: \"Anulare\",\n\t\tbClose: \"Închide\",\n\t\tsaveData: \"Informațiile au fost modificate! Salvați modificările?\",\n\t\tbYes : \"Da\",\n\t\tbNo : \"Nu\",\n\t\tbExit : \"Anulare\",\n\t\tmsg: {\n\t\t\trequired:\"Câmpul este obligatoriu\",\n\t\t\tnumber:\"Vă rugăm introduceți un număr valid\",\n\t\t\tminValue:\"valoarea trebuie sa fie mai mare sau egală cu\",\n\t\t\tmaxValue:\"valoarea trebuie sa fie mai mică sau egală cu\",\n\t\t\temail: \"nu este o adresă de e-mail validă\",\n\t\t\tinteger: \"Vă rugăm introduceți un număr valid\",\n\t\t\tdate: \"Vă rugăm să introduceți o dată validă\",\n\t\t\turl: \"Nu este un URL valid. Prefixul  este necesar('http://' or 'https://')\",\n\t\t\tnodefined : \" is not defined!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Vizualizare înregistrare\",\n\t\tbClose: \"Închidere\"\n\t},\n\tdel : {\n\t\tcaption: \"Ștegere\",\n\t\tmsg: \"Ștergeți înregistrarea (înregistrările) selectate?\",\n\t\tbSubmit: \"Șterge\",\n\t\tbCancel: \"Anulare\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Modifică rândul selectat\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Adaugă rând nou\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Șterge rândul selectat\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Căutare înregistrări\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Reîncarcare Grid\",\n\t\talertcap: \"Avertisment\",\n\t\talerttext: \"Vă rugăm să selectați un rând\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Vizualizează rândul selectat\"\n\t},\n\tcol : {\n\t\tcaption: \"Arată/Ascunde coloanele\",\n\t\tbSubmit: \"Salvează\",\n\t\tbCancel: \"Anulare\"\n\t},\n\terrors : {\n\t\terrcap : \"Eroare\",\n\t\tnourl : \"Niciun url nu este setat\",\n\t\tnorecords: \"Nu sunt înregistrări de procesat\",\n\t\tmodel : \"Lungimea colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Dum\", \"Lun\", \"Mar\", \"Mie\", \"Joi\", \"Vin\", \"Sâm\",\n\t\t\t\t\"Duminică\", \"Luni\", \"Marți\", \"Miercuri\", \"Joi\", \"Vineri\", \"Sâmbătă\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Ian\", \"Feb\", \"Mar\", \"Apr\", \"Mai\", \"Iun\", \"Iul\", \"Aug\", \"Sep\", \"Oct\", \"Noi\", \"Dec\",\n\t\t\t\t\"Ianuarie\", \"Februarie\", \"Martie\", \"Aprilie\", \"Mai\", \"Iunie\", \"Iulie\", \"August\", \"Septembrie\", \"Octombrie\", \"Noiembrie\", \"Decembrie\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\t/*\n\t\t\t Here is a problem in romanian: \n\t\t\t\t\tM\t/\tF\n\t\t\t 1st = primul / prima\n\t\t\t 2nd = Al doilea / A doua\n\t\t\t 3rd = Al treilea / A treia \n\t\t\t 4th = Al patrulea/ A patra\n\t\t\t 5th = Al cincilea / A cincea \n\t\t\t 6th = Al șaselea / A șasea\n\t\t\t 7th = Al șaptelea / A șaptea\n\t\t\t .... \n\t\t\t */\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-ru.js",
    "content": ";(function($){\n/**\n * jqGrid Russian Translation v1.0 02.07.2009 (based on translation by Alexey Kanaev v1.1 21.01.2009, http://softcore.com.ru)\n * Sergey Dyagovchenko\n * http://d.sumy.ua\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Просмотр {0} - {1} из {2}\",\n\t\temptyrecords: \"Нет записей для просмотра\",\n\t\tloadtext: \"Загрузка...\",\n\t\tpgtext : \"Стр. {0} из {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Поиск...\",\n\t\tFind: \"Найти\",\n\t\tReset: \"Сброс\",\n\t\todata: [{ oper:'eq', text:\"равно\"},{ oper:'ne', text:\"не равно\"},{ oper:'lt', text:\"меньше\"},{ oper:'le', text:\"меньше или равно\"},{ oper:'gt', text:\"больше\"},{ oper:'ge', text:\"больше или равно\"},{ oper:'bw', text:\"начинается с\"},{ oper:'bn', text:\"не начинается с\"},{ oper:'in', text:\"находится в\"},{ oper:'ni', text:\"не находится в\"},{ oper:'ew', text:\"заканчивается на\"},{ oper:'en', text:\"не заканчивается на\"},{ oper:'cn', text:\"содержит\"},{ oper:'nc', text:\"не содержит\"},{ oper:'nu', text:\"равно NULL\"},{ oper:'nn', text:\"не равно NULL\"}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"все\" }, { op: \"OR\", text: \"любой\" }],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Добавить запись\",\n\t\teditCaption: \"Редактировать запись\",\n\t\tbSubmit: \"Сохранить\",\n\t\tbCancel: \"Отмена\",\n\t\tbClose: \"Закрыть\",\n\t\tsaveData: \"Данные были измененны! Сохранить изменения?\",\n\t\tbYes : \"Да\",\n\t\tbNo : \"Нет\",\n\t\tbExit : \"Отмена\",\n\t\tmsg: {\n\t\t\trequired:\"Поле является обязательным\",\n\t\t\tnumber:\"Пожалуйста, введите правильное число\",\n\t\t\tminValue:\"значение должно быть больше либо равно\",\n\t\t\tmaxValue:\"значение должно быть меньше либо равно\",\n\t\t\temail: \"некорректное значение e-mail\",\n\t\t\tinteger: \"Пожалуйста, введите целое число\",\n\t\t\tdate: \"Пожалуйста, введите правильную дату\",\n\t\t\turl: \"неверная ссылка. Необходимо ввести префикс ('http://' или 'https://')\",\n\t\t\tnodefined : \" не определено!\",\n\t\t\tnovalue : \" возвращаемое значение обязательно!\",\n\t\t\tcustomarray : \"Пользовательская функция должна возвращать массив!\",\n\t\t\tcustomfcheck : \"Пользовательская функция должна присутствовать в случаи пользовательской проверки!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Просмотр записи\",\n\t\tbClose: \"Закрыть\"\n\t},\n\tdel : {\n\t\tcaption: \"Удалить\",\n\t\tmsg: \"Удалить выбранную запись(и)?\",\n\t\tbSubmit: \"Удалить\",\n\t\tbCancel: \"Отмена\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"Редактировать выбранную запись\",\n\t\taddtext:\" \",\n\t\taddtitle: \"Добавить новую запись\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"Удалить выбранную запись\",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"Найти записи\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Обновить таблицу\",\n\t\talertcap: \"Внимание\",\n\t\talerttext: \"Пожалуйста, выберите запись\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Просмотреть выбранную запись\"\n\t},\n\tcol : {\n\t\tcaption: \"Показать/скрыть столбцы\",\n\t\tbSubmit: \"Сохранить\",\n\t\tbCancel: \"Отмена\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Ошибка\",\n\t\tnourl : \"URL не установлен\",\n\t\tnorecords: \"Нет записей для обработки\",\n\t\tmodel : \"Число полей не соответствует числу столбцов таблицы!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Вс\", \"Пн\", \"Вт\", \"Ср\", \"Чт\", \"Пт\", \"Сб\",\n\t\t\t\t\"Воскресение\", \"Понедельник\", \"Вторник\", \"Среда\", \"Четверг\", \"Пятница\", \"Суббота\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Янв\", \"Фев\", \"Мар\", \"Апр\", \"Май\", \"Июн\", \"Июл\", \"Авг\", \"Сен\", \"Окт\", \"Ноя\", \"Дек\",\n\t\t\t\t\"Январь\", \"Февраль\", \"Март\", \"Апрель\", \"Май\", \"Июнь\", \"Июль\", \"Август\", \"Сентябрь\", \"Октябрь\", \"Ноябрь\", \"Декабрь\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd.m.Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n.j.Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y G:i:s\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"G:i\",\n\t\t\t\tLongTime: \"G:i:s\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-sk.js",
    "content": ";(function($){\n/**\n * jqGrid Slovak Translation\n * Milan Cibulka\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Zobrazených {0} - {1} z {2} záznamov\",\n\t    emptyrecords: \"Neboli nájdené žiadne záznamy\",\n\t\tloadtext: \"Načítám...\",\n\t\tpgtext : \"Strana {0} z {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Vyhľadávam...\",\n\t\tFind: \"Hľadať\",\n\t\tReset: \"Reset\",\n\t    odata: [{ oper:'eq', text:\"rovná sa\"},{ oper:'ne', text:\"nerovná sa\"},{ oper:'lt', text:\"menšie\"},{ oper:'le', text:\"menšie alebo rovnajúce sa\"},{ oper:'gt', text:\"väčšie\"},{ oper:'ge', text:\"väčšie alebo rovnajúce sa\"},{ oper:'bw', text:\"začína s\"},{ oper:'bn', text:\"nezačína s\"},{ oper:'in', text:\"je v\"},{ oper:'ni', text:\"nie je v\"},{ oper:'ew', text:\"končí s\"},{ oper:'en', text:\"nekončí s\"},{ oper:'cn', text:\"obahuje\"},{ oper:'nc', text:\"neobsahuje\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"AND\", text: \"všetkých\" },\t{ op: \"OR\",  text: \"niektorého z\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Pridať záznam\",\n\t\teditCaption: \"Editácia záznamov\",\n\t\tbSubmit: \"Uložiť\",\n\t\tbCancel: \"Storno\",\n\t\tbClose: \"Zavrieť\",\n\t\tsaveData: \"Údaje boli zmenené! Uložiť zmeny?\",\n\t\tbYes : \"Ano\",\n\t\tbNo : \"Nie\",\n\t\tbExit : \"Zrušiť\",\n\t\tmsg: {\n\t\t    required:\"Pole je požadované\",\n\t\t    number:\"Prosím, vložte valídne číslo\",\n\t\t    minValue:\"hodnota musí býť väčšia ako alebo rovná \",\n\t\t    maxValue:\"hodnota musí býť menšia ako alebo rovná \",\n\t\t    email: \"nie je valídny e-mail\",\n\t\t    integer: \"Prosím, vložte celé číslo\",\n\t\t\tdate: \"Prosím, vložte valídny dátum\",\n\t\t\turl: \"nie je platnou URL. Požadovaný prefix ('http://' alebo 'https://')\",\n\t\t\tnodefined : \" nie je definovaný!\",\n\t\t\tnovalue : \" je vyžadovaná návratová hodnota!\",\n\t\t\tcustomarray : \"Custom function mala vrátiť pole!\",\n\t\t\tcustomfcheck : \"Custom function by mala byť prítomná v prípade custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Zobraziť záznam\",\n\t    bClose: \"Zavrieť\"\n\t},\n\tdel : {\n\t\tcaption: \"Zmazať\",\n\t\tmsg: \"Zmazať vybraný(é) záznam(y)?\",\n\t\tbSubmit: \"Zmazať\",\n\t\tbCancel: \"Storno\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t\tedittitle: \"Editovať vybraný riadok\",\n\t\taddtext:\" \",\n\t\taddtitle: \"Pridať nový riadek\",\n\t\tdeltext: \" \",\n\t\tdeltitle: \"Zmazať vybraný záznam \",\n\t\tsearchtext: \" \",\n\t\tsearchtitle: \"Nájsť záznamy\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Obnoviť tabuľku\",\n\t\talertcap: \"Varovanie\",\n\t\talerttext: \"Prosím, vyberte riadok\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Zobraziť vybraný riadok\"\n\t},\n\tcol : {\n\t\tcaption: \"Zobrazit/Skrýť stĺpce\",\n\t\tbSubmit: \"Uložiť\",\n\t\tbCancel: \"Storno\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Chyba\",\n\t\tnourl : \"Nie je nastavená url\",\n\t\tnorecords: \"Žiadne záznamy k spracovaniu\",\n\t\tmodel : \"Dĺžka colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Ne\", \"Po\", \"Ut\", \"St\", \"Št\", \"Pi\", \"So\",\n\t\t\t\t\"Nedela\", \"Pondelok\", \"Utorok\", \"Streda\", \"Štvrtok\", \"Piatek\", \"Sobota\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Máj\", \"Jún\", \"Júl\", \"Aug\", \"Sep\", \"Okt\", \"Nov\", \"Dec\",\n\t\t\t\t\"Január\", \"Február\", \"Marec\", \"Apríl\", \"Máj\", \"Jún\", \"Júl\", \"August\", \"September\", \"Október\", \"November\", \"December\"\n\t\t\t],\n\t\t\tAmPm : [\"do\",\"od\",\"DO\",\"OD\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t        ISO8601Long:\"Y-m-d H:i:s\",\n\t\t        ISO8601Short:\"Y-m-d\",\n\t\t        ShortDate: \"n/j/Y\",\n\t\t        LongDate: \"l, F d, Y\",\n\t\t        FullDateTime: \"l, F d, Y g:i:s A\",\n\t\t        MonthDay: \"F d\",\n\t\t        ShortTime: \"g:i A\",\n\t\t        LongTime: \"g:i:s A\",\n\t\t        SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t        UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t        YearMonth: \"F, Y\"\n\t\t    },\n\t\t    reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-sr-latin.js",
    "content": ";(function($){\n/**\n * jqGrid Serbian latin Translation\n * Bild Studio info@bild-studio.net\n * http://www.bild-studio.com\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Pregled {0} - {1} od {2}\",\n\t\temptyrecords: \"Ne postoji nijedan zapis\",\n\t\tloadtext: \"Učitavanje…\",\n\t\tpgtext : \"Strana {0} od {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Traženje...\",\n\t\tFind: \"Traži\",\n\t\tReset: \"Resetuj\",\n\t\todata: [{ oper:'eq', text:\"jednako\"},{ oper:'ne', text:\"nije jednako\"},{ oper:'lt', text:\"manje\"},{ oper:'le', text:\"manje ili jednako\"},{ oper:'gt', text:\"veće\"},{ oper:'ge', text:\"veće ili jednako\"},{ oper:'bw', text:\"počinje sa\"},{ oper:'bn', text:\"ne počinje sa\"},{ oper:'in', text:\"je u\"},{ oper:'ni', text:\"nije u\"},{ oper:'ew', text:\"završava sa\"},{ oper:'en', text:\"ne završava sa\"},{ oper:'cn', text:\"sadrži\"},{ oper:'nc', text:\"ne sadrži\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"sva\" },\t{ op: \"OR\",  text: \"bilo koje\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Dodaj zapis\",\n\t\teditCaption: \"Izmeni zapis\",\n\t\tbSubmit: \"Pošalji\",\n\t\tbCancel: \"Odustani\",\n\t\tbClose: \"Zatvori\",\n\t\tsaveData: \"Podatak je izmenjen! Sačuvaj izmene?\",\n\t\tbYes : \"Da\",\n\t\tbNo : \"Ne\",\n\t\tbExit : \"Odustani\",\n\t\tmsg: {\n\t\t\trequired: \"Polje je obavezno\",\n\t\t\tnumber: \"Unesite ispravan broj\",\n\t\t\tminValue: \"vrednost mora biti veća od ili jednaka sa \",\n\t\t\tmaxValue: \"vrednost mora biti manja ili jednaka sa\",\n\t\t\temail: \"nije ispravna email adresa, nije valjda da ne umeš ukucati mail!?\",\n\t\t\tinteger: \"Unesi celobrojnu vrednost \",\n\t\t\tdate: \"Unesite ispravan datum\",\n\t\t\turl: \"nije ispravan URL. Potreban je prefiks ('http://' or 'https://')\",\n\t\t\tnodefined : \" nije definisan!\",\n\t\t\tnovalue : \" zahtevana je povratna vrednost!\",\n\t\t\tcustomarray : \"Prilagođena funkcija treba da vrati niz!\",\n\t\t\tcustomfcheck : \"Prilagođena funkcija treba da bude prisutana u slučaju prilagođene provere!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Pogledaj zapis\",\n\t\tbClose: \"Zatvori\"\n\t},\n\tdel : {\n\t\tcaption: \"Izbrisi\",\n\t\tmsg: \"Izbrisi izabran(e) zapise(e)?\",\n\t\tbSubmit: \"Izbriši\",\n\t\tbCancel: \"Odbaci\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Izmeni izabrani red\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Dodaj novi red\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Izbriši izabran red\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Nađi zapise\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Ponovo učitaj podatke\",\n\t\talertcap: \"Upozorenje\",\n\t\talerttext: \"Izaberite red\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Pogledaj izabrani red\"\n\t},\n\tcol : {\n\t\tcaption: \"Izaberi kolone\",\n\t\tbSubmit: \"OK\",\n\t\tbCancel: \"Odbaci\"\n\t},\n\terrors : {\n\t\terrcap : \"Greška\",\n\t\tnourl : \"Nije postavljen URL\",\n\t\tnorecords: \"Nema zapisa za obradu\",\n\t\tmodel : \"Dužina modela colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Ned\", \"Pon\", \"Uto\", \"Sre\", \"Čet\", \"Pet\", \"Sub\",\n\t\t\t\t\"Nedelja\", \"Ponedeljak\", \"Utorak\", \"Srijeda\", \"Četvrtak\", \"Petak\", \"Subota\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Maj\", \"Jun\", \"Jul\", \"Avg\", \"Sep\", \"Okt\", \"Nov\", \"Dec\",\n\t\t\t\t\"Januar\", \"Februar\", \"Mart\", \"April\", \"Maj\", \"Jun\", \"Jul\", \"Avgust\", \"Septembar\", \"Oktobar\", \"Novembar\", \"Decembar\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-sr.js",
    "content": "﻿;(function($){\n/**\n * jqGrid Serbian Translation\n * Александар Миловац(Aleksandar Milovac) aleksandar.milovac@gmail.com\n * http://trirand.com/blog/\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Преглед {0} - {1} од {2}\",\n\t\temptyrecords: \"Не постоји ниједан запис\",\n\t\tloadtext: \"Учитавање...\",\n\t\tpgtext : \"Страна {0} од {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Тражење...\",\n\t\tFind: \"Тражи\",\n\t\tReset: \"Ресетуј\",\n\t\todata: [{ oper:'eq', text:\"једнако\"},{ oper:'ne', text:\"није једнако\"},{ oper:'lt', text:\"мање\"},{ oper:'le', text:\"мање или једнако\"},{ oper:'gt', text:\"веће\"},{ oper:'ge', text:\"веће или једнако\"},{ oper:'bw', text:\"почиње са\"},{ oper:'bn', text:\"не почиње са\"},{ oper:'in', text:\"је у\"},{ oper:'ni', text:\"није у\"},{ oper:'ew', text:\"завршава са\"},{ oper:'en', text:\"не завршава са\"},{ oper:'cn', text:\"садржи\"},{ oper:'nc', text:\"не садржи\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"И\", text: \"сви\" },\t{ op: \"ИЛИ\",  text: \"сваки\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Додај запис\",\n\t\teditCaption: \"Измени запис\",\n\t\tbSubmit: \"Пошаљи\",\n\t\tbCancel: \"Одустани\",\n\t\tbClose: \"Затвори\",\n\t\tsaveData: \"Податак је измењен! Сачувај измене?\",\n\t\tbYes : \"Да\",\n\t\tbNo : \"Не\",\n\t\tbExit : \"Одустани\",\n\t\tmsg: {\n\t\t\trequired:\"Поље је обавезно\",\n\t\t\tnumber:\"Молим, унесите исправан број\",\n\t\t\tminValue:\"вредност мора бити већа од или једнака са \",\n\t\t\tmaxValue:\"вредност мора бити мања од или једнака са\",\n\t\t\temail: \"није исправна имејл адреса\",\n\t\t\tinteger: \"Молим, унесите исправну целобројну вредност \",\n\t\t\tdate: \"Молим, унесите исправан датум\",\n\t\t\turl: \"није исправан УРЛ. Потребан је префикс ('http://' or 'https://')\",\n\t\t\tnodefined : \" није дефинисан!\",\n\t\t\tnovalue : \" захтевана је повратна вредност!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Погледај запис\",\n\t\tbClose: \"Затвори\"\n\t},\n\tdel : {\n\t\tcaption: \"Избриши\",\n\t\tmsg: \"Избриши изабран(е) запис(е)?\",\n\t\tbSubmit: \"Ибриши\",\n\t\tbCancel: \"Одбаци\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Измени изабрани ред\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Додај нови ред\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Избриши изабран ред\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Нађи записе\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Поново учитај податке\",\n\t\talertcap: \"Упозорење\",\n\t\talerttext: \"Молим, изаберите ред\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Погледај изабрани ред\"\n\t},\n\tcol : {\n\t\tcaption: \"Изабери колоне\",\n\t\tbSubmit: \"ОК\",\n\t\tbCancel: \"Одбаци\"\n\t},\n\terrors : {\n\t\terrcap : \"Грешка\",\n\t\tnourl : \"Није постављен URL\",\n\t\tnorecords: \"Нема записа за обраду\",\n\t\tmodel : \"Дужина модела colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Нед\", \"Пон\", \"Уто\", \"Сре\", \"Чет\", \"Пет\", \"Суб\",\n\t\t\t\t\"Недеља\", \"Понедељак\", \"Уторак\", \"Среда\", \"Четвртак\", \"Петак\", \"Субота\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Јан\", \"Феб\", \"Мар\", \"Апр\", \"Мај\", \"Јун\", \"Јул\", \"Авг\", \"Сеп\", \"Окт\", \"Нов\", \"Дец\",\n\t\t\t\t\"Јануар\", \"Фебруар\", \"Март\", \"Април\", \"Мај\", \"Јун\", \"Јул\", \"Август\", \"Септембар\", \"Октобар\", \"Новембар\", \"Децембар\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-sv.js",
    "content": ";(function($){\n/**\n * jqGrid Swedish Translation\n * Harald Normann harald.normann@wts.se, harald.normann@gmail.com\n * http://www.worldteamsoftware.com \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Visar {0} - {1} av {2}\",\n\t\temptyrecords: \"Det finns inga poster att visa\",\n\t\tloadtext: \"Laddar...\",\n\t\tpgtext : \"Sida {0} av {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Sök Poster - Ange sökvillkor\",\n\t\tFind: \"Sök\",\n\t\tReset: \"Nollställ Villkor\",\n\t\todata: [{ oper:'eq', text:\"lika\"},{ oper:'ne', text:\"ej lika\"},{ oper:'lt', text:\"mindre\"},{ oper:'le', text:\"mindre eller lika\"},{ oper:'gt', text:\"större\"},{ oper:'ge', text:\"större eller lika\"},{ oper:'bw', text:\"börjar med\"},{ oper:'bn', text:\"börjar inte med\"},{ oper:'in', text:\"tillhör\"},{ oper:'ni', text:\"tillhör inte\"},{ oper:'ew', text:\"slutar med\"},{ oper:'en', text:\"slutar inte med\"},{ oper:'cn', text:\"innehåller\"},{ oper:'nc', text:\"innehåller inte\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"alla\" },\t{ op: \"OR\",  text: \"eller\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Ny Post\",\n\t\teditCaption: \"Redigera Post\",\n\t\tbSubmit: \"Spara\",\n\t\tbCancel: \"Avbryt\",\n\t\tbClose: \"Stäng\",\n\t\tsaveData: \"Data har ändrats! Spara förändringar?\",\n\t\tbYes : \"Ja\",\n\t\tbNo : \"Nej\",\n\t\tbExit : \"Avbryt\",\n\t\tmsg: {\n\t        required:\"Fältet är obligatoriskt\",\n\t        number:\"Välj korrekt nummer\",\n\t        minValue:\"värdet måste vara större än eller lika med\",\n\t        maxValue:\"värdet måste vara mindre än eller lika med\",\n\t        email: \"är inte korrekt e-post adress\",\n\t        integer: \"Var god ange korrekt heltal\",\n\t        date: \"Var god ange korrekt datum\",\n\t        url: \"är inte en korrekt URL. Prefix måste anges ('http://' or 'https://')\",\n\t        nodefined : \" är inte definierad!\",\n\t        novalue : \" returvärde måste anges!\",\n\t        customarray : \"Custom funktion måste returnera en vektor!\",\n\t\t\tcustomfcheck : \"Custom funktion måste finnas om Custom kontroll sker!\"\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Visa Post\",\n\t\tbClose: \"Stäng\"\n\t},\n\tdel : {\n\t\tcaption: \"Radera\",\n\t\tmsg: \"Radera markerad(e) post(er)?\",\n\t\tbSubmit: \"Radera\",\n\t\tbCancel: \"Avbryt\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Redigera markerad rad\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Skapa ny post\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Radera markerad rad\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Sök poster\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Uppdatera data\",\n\t\talertcap: \"Varning\",\n\t\talerttext: \"Ingen rad är markerad\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Visa markerad rad\"\n\t},\n\tcol : {\n\t\tcaption: \"Välj Kolumner\",\n\t\tbSubmit: \"OK\",\n\t\tbCancel: \"Avbryt\"\n\t},\n\terrors : {\n\t\terrcap : \"Fel\",\n\t\tnourl : \"URL saknas\",\n\t\tnorecords: \"Det finns inga poster att bearbeta\",\n\t\tmodel : \"Antal colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"Kr\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Sön\", \"Mån\", \"Tis\", \"Ons\", \"Tor\", \"Fre\", \"Lör\",\n\t\t\t\t\"Söndag\", \"Måndag\", \"Tisdag\", \"Onsdag\", \"Torsdag\", \"Fredag\", \"Lördag\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"Maj\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Okt\", \"Nov\", \"Dec\",\n\t\t\t\t\"Januari\", \"Februari\", \"Mars\", \"April\", \"Maj\", \"Juni\", \"Juli\", \"Augusti\", \"September\", \"Oktober\", \"November\", \"December\"\n\t\t\t],\n\t\t\tAmPm : [\"fm\",\"em\",\"FM\",\"EM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'Y-m-d',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate:  \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-th.js",
    "content": ";(function($){\n/**\n * jqGrid Thai Translation\n * Kittituch Manakul m.kittituch@Gmail.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"แสดง {0} - {1} จาก {2}\",\n\t\temptyrecords: \"ไม่พบข้อมูล\",\n\t\tloadtext: \"กำลังร้องขอข้อมูล...\",\n\t\tpgtext : \"หน้า {0} จาก {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"กำลังค้นหา...\",\n\t\tFind: \"ค้นหา\",\n\t\tReset: \"คืนค่ากลับ\",\n\t\todata: [{ oper:'eq', text:\"เท่ากับ\"},{ oper:'ne', text:\"ไม่เท่ากับ\"},{ oper:'lt', text:\"น้อยกว่า\"},{ oper:'le', text:\"ไม่มากกว่า\"},{ oper:'gt', text:\"มากกกว่า\"},{ oper:'ge', text:\"ไม่น้อยกว่า\"},{ oper:'bw', text:\"ขึ้นต้นด้วย\"},{ oper:'bn', text:\"ไม่ขึ้นต้นด้วย\"},{ oper:'in', text:\"มีคำใดคำหนึ่งใน\"},{ oper:'ni', text:\"ไม่มีคำใดคำหนึ่งใน\"},{ oper:'ew', text:\"ลงท้ายด้วย\"},{ oper:'en', text:\"ไม่ลงท้ายด้วย\"},{ oper:'cn', text:\"มีคำว่า\"},{ oper:'nc', text:\"ไม่มีคำว่า\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"และ\", text: \"ทั้งหมด\" },\t{ op: \"หรือ\",  text: \"ใดๆ\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"เพิ่มข้อมูล\",\n\t\teditCaption: \"แก้ไขข้อมูล\",\n\t\tbSubmit: \"บันทึก\",\n\t\tbCancel: \"ยกเลิก\",\n\t\tbClose: \"ปิด\",\n\t\tsaveData: \"คุณต้องการบันทึการแก้ไข ใช่หรือไม่?\",\n\t\tbYes : \"บันทึก\",\n\t\tbNo : \"ละทิ้งการแก้ไข\",\n\t\tbExit : \"ยกเลิก\",\n\t\tmsg: {\n\t\t\trequired:\"ข้อมูลนี้จำเป็น\",\n\t\t\tnumber:\"กรุณากรอกหมายเลขให้ถูกต้อง\",\n\t\t\tminValue:\"ค่าของข้อมูลนี้ต้องไม่น้อยกว่า\",\n\t\t\tmaxValue:\"ค่าของข้อมูลนี้ต้องไม่มากกว่า\",\n\t\t\temail: \"อีเมลล์นี้ไม่ถูกต้อง\",\n\t\t\tinteger: \"กรุณากรอกเป็นจำนวนเต็ม\",\n\t\t\tdate: \"กรุณากรอกวันที่ให้ถูกต้อง\",\n\t\t\turl: \"URL ไม่ถูกต้อง URL จำเป็นต้องขึ้นต้นด้วย 'http://' หรือ 'https://'\",\n\t\t\tnodefined : \"ไม่ได้ถูกกำหนดค่า!\",\n\t\t\tnovalue : \"ต้องการการคืนค่า!\",\n\t\t\tcustomarray : \"ฟังก์ชันที่สร้างขึ้นต้องส่งค่ากลับเป็นแบบแอเรย์\",\n\t\t\tcustomfcheck : \"ระบบต้องการฟังก์ชันที่สร้างขึ้นสำหรับการตรวจสอบ!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"เรียกดูข้อมูล\",\n\t\tbClose: \"ปิด\"\n\t},\n\tdel : {\n\t\tcaption: \"ลบข้อมูล\",\n\t\tmsg: \"คุณต้องการลบข้อมูลที่ถูกเลือก ใช่หรือไม่?\",\n\t\tbSubmit: \"ต้องการลบ\",\n\t\tbCancel: \"ยกเลิก\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"แก้ไขข้อมูล\",\n\t\taddtext:\"\",\n\t\taddtitle: \"เพิ่มข้อมูล\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"ลบข้อมูล\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"ค้นหาข้อมูล\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"รีเฟรช\",\n\t\talertcap: \"คำเตือน\",\n\t\talerttext: \"กรุณาเลือกข้อมูล\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"ดูรายละเอียดข้อมูล\"\n\t},\n\tcol : {\n\t\tcaption: \"กรุณาเลือกคอลัมน์\",\n\t\tbSubmit: \"ตกลง\",\n\t\tbCancel: \"ยกเลิก\"\n\t},\n\terrors : {\n\t\terrcap : \"เกิดความผิดพลาด\",\n\t\tnourl : \"ไม่ได้กำหนด URL\",\n\t\tnorecords: \"ไม่มีข้อมูลให้ดำเนินการ\",\n\t\tmodel : \"จำนวนคอลัมน์ไม่เท่ากับจำนวนคอลัมน์โมเดล!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"อา\", \"จ\", \"อ\", \"พ\", \"พฤ\", \"ศ\", \"ส\",\n\t\t\t\t\"อาทิตย์\", \"จันทร์\", \"อังคาร\", \"พุธ\", \"พฤหัสบดี\", \"ศูกร์\", \"เสาร์\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"ม.ค.\", \"ก.พ.\", \"มี.ค.\", \"เม.ย.\", \"พ.ค.\", \"มิ.ย.\", \"ก.ค.\", \"ส.ค.\", \"ก.ย.\", \"ต.ค.\", \"พ.ย.\", \"ธ.ค.\",\n\t\t\t\t\"มกราคม\", \"กุมภาพันธ์\", \"มีนาคม\", \"เมษายน\", \"พฤษภาคม\", \"มิถุนายน\", \"กรกฏาคม\", \"สิงหาคม\", \"กันยายน\", \"ตุลาคม\", \"พฤศจิกายน\", \"ธันวาคม\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return ''},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"n/j/Y\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-tr.js",
    "content": ";(function($){\n/**\n * jqGrid Turkish Translation\n * Erhan Gündoğan (erhan@trposta.net)\n * http://blog.zakkum.com\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"{0}-{1} listeleniyor. Toplam:{2}\",\n\t    emptyrecords: \"Kayıt bulunamadı\",\n\t\tloadtext: \"Yükleniyor...\",\n\t\tpgtext : \"{0}/{1}. Sayfa\"\n\t},\n\tsearch : {\n\t    caption: \"Arama...\",\n\t    Find: \"Bul\",\n\t    Reset: \"Temizle\",\t    \n\t    odata: [{ oper:'eq', text:\"eşit\"},{ oper:'ne', text:\"eşit değil\"},{ oper:'lt', text:\"daha az\"},{ oper:'le', text:\"daha az veya eşit\"},{ oper:'gt', text:\"daha fazla\"},{ oper:'ge', text:\"daha fazla veya eşit\"},{ oper:'bw', text:\"ile başlayan\"},{ oper:'bn', text:\"ile başlamayan\"},{ oper:'in', text:\"içinde\"},{ oper:'ni', text:\"içinde değil\"},{ oper:'ew', text:\"ile biten\"},{ oper:'en', text:\"ile bitmeyen\"},{ oper:'cn', text:\"içeren\"},{ oper:'nc', text:\"içermeyen\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t    groupOps: [\t{ op: \"VE\", text: \"tüm\" },\t{ op: \"VEYA\",  text: \"herhangi\" }],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t    addCaption: \"Kayıt Ekle\",\n\t    editCaption: \"Kayıt Düzenle\",\n\t    bSubmit: \"Gönder\",\n\t    bCancel: \"İptal\",\n\t\tbClose: \"Kapat\",\n\t\tsaveData: \"Veriler değişti! Kayıt edilsin mi?\",\n\t\tbYes : \"Evet\",\n\t\tbNo : \"Hayıt\",\n\t\tbExit : \"İptal\",\n\t    msg: {\n\t        required:\"Alan gerekli\",\n\t        number:\"Lütfen bir numara giriniz\",\n\t        minValue:\"girilen değer daha büyük ya da buna eşit olmalıdır\",\n\t        maxValue:\"girilen değer daha küçük ya da buna eşit olmalıdır\",\n\t        email: \"geçerli bir e-posta adresi değildir\",\n\t        integer: \"Lütfen bir tamsayı giriniz\",\n\t\t\turl: \"Geçerli bir URL değil. ('http://' or 'https://') ön eki gerekli.\",\n\t\t\tnodefined : \" is not defined!\",\n\t\t\tnovalue : \" return value is required!\",\n\t\t\tcustomarray : \"Custom function should return array!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Kayıt Görüntüle\",\n\t    bClose: \"Kapat\"\n\t},\n\tdel : {\n\t    caption: \"Sil\",\n\t    msg: \"Seçilen kayıtlar silinsin mi?\",\n\t    bSubmit: \"Sil\",\n\t    bCancel: \"İptal\"\n\t},\n\tnav : {\n\t\tedittext: \" \",\n\t    edittitle: \"Seçili satırı düzenle\",\n\t\taddtext:\" \",\n\t    addtitle: \"Yeni satır ekle\",\n\t    deltext: \" \",\n\t    deltitle: \"Seçili satırı sil\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Kayıtları bul\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Tabloyu yenile\",\n\t    alertcap: \"Uyarı\",\n\t    alerttext: \"Lütfen bir satır seçiniz\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Seçilen satırı görüntüle\"\n\t},\n\tcol : {\n\t    caption: \"Sütunları göster/gizle\",\n\t    bSubmit: \"Gönder\",\n\t    bCancel: \"İptal\"\t\n\t},\n\terrors : {\n\t\terrcap : \"Hata\",\n\t\tnourl : \"Bir url yapılandırılmamış\",\n\t\tnorecords: \"İşlem yapılacak bir kayıt yok\",\n\t    model : \"colNames uzunluğu <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Paz\", \"Pts\", \"Sal\", \"Çar\", \"Per\", \"Cum\", \"Cts\",\n\t\t\t\t\"Pazar\", \"Pazartesi\", \"Salı\", \"Çarşamba\", \"Perşembe\", \"Cuma\", \"Cumartesi\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Oca\", \"Şub\", \"Mar\", \"Nis\", \"May\", \"Haz\", \"Tem\", \"Ağu\", \"Eyl\", \"Eki\", \"Kas\", \"Ara\",\n\t\t\t\t\"Ocak\", \"Şubat\", \"Mart\", \"Nisan\", \"Mayıs\", \"Haziran\", \"Temmuz\", \"Ağustos\", \"Eylül\", \"Ekim\", \"Kasım\", \"Aralık\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd/m/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n/j/Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y g:i:s A\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"g:i A\",\n\t            LongTime: \"g:i:s A\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t    target: '',\n\t    checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-tw.js",
    "content": ";(function($){\n/**\n * jqGrid Chinese (Taiwan) Translation for v4.2\n * linquize\n * https://github.com/linquize/jqGrid\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n * \n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"{0} - {1} 共 {2} 條\",\n\t\temptyrecords: \"沒有記錄\",\n\t\tloadtext: \"載入中...\",\n\t\tpgtext : \" {0} 共 {1} 頁\"\n\t},\n\tsearch : {\n\t\tcaption: \"搜尋...\",\n\t\tFind: \"搜尋\",\n\t\tReset: \"重設\",\n\t\todata: [{ oper:'eq', text:\"等於 \"},{ oper:'ne', text:\"不等於 \"},{ oper:'lt', text:\"小於 \"},{ oper:'le', text:\"小於等於 \"},{ oper:'gt', text:\"大於 \"},{ oper:'ge', text:\"大於等於 \"},{ oper:'bw', text:\"開始於 \"},{ oper:'bn', text:\"不開始於 \"},{ oper:'in', text:\"在其中 \"},{ oper:'ni', text:\"不在其中 \"},{ oper:'ew', text:\"結束於 \"},{ oper:'en', text:\"不結束於 \"},{ oper:'cn', text:\"包含 \"},{ oper:'nc', text:\"不包含 \"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"AND\", text: \"所有\" },\t{ op: \"OR\",  text: \"任一\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"新增記錄\",\n\t\teditCaption: \"編輯記錄\",\n\t\tbSubmit: \"提交\",\n\t\tbCancel: \"取消\",\n\t\tbClose: \"關閉\",\n\t\tsaveData: \"資料已改變，是否儲存？\",\n\t\tbYes : \"是\",\n\t\tbNo : \"否\",\n\t\tbExit : \"取消\",\n\t\tmsg: {\n\t\t\trequired:\"此欄必要\",\n\t\t\tnumber:\"請輸入有效的數字\",\n\t\t\tminValue:\"值必須大於等於 \",\n\t\t\tmaxValue:\"值必須小於等於 \",\n\t\t\temail: \"不是有效的e-mail地址\",\n\t\t\tinteger: \"請輸入有效整数\",\n\t\t\tdate: \"請輸入有效時間\",\n\t\t\turl: \"網址無效。前綴必須為 ('http://' 或 'https://')\",\n\t\t\tnodefined : \" 未定義！\",\n\t\t\tnovalue : \" 需要傳回值！\",\n\t\t\tcustomarray : \"自訂函數應傳回陣列！\",\n\t\t\tcustomfcheck : \"自訂檢查應有自訂函數！\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"查看記錄\",\n\t\tbClose: \"關閉\"\n\t},\n\tdel : {\n\t\tcaption: \"刪除\",\n\t\tmsg: \"刪除已選記錄？\",\n\t\tbSubmit: \"刪除\",\n\t\tbCancel: \"取消\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"編輯已選列\",\n\t\taddtext:\"\",\n\t\taddtitle: \"新增列\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"刪除已選列\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"搜尋記錄\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"重新整理表格\",\n\t\talertcap: \"警告\",\n\t\talerttext: \"請選擇列\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"檢視已選列\"\n\t},\n\tcol : {\n\t\tcaption: \"選擇欄\",\n\t\tbSubmit: \"確定\",\n\t\tbCancel: \"取消\"\n\t},\n\terrors : {\n\t\terrcap : \"錯誤\",\n\t\tnourl : \"未設定URL\",\n\t\tnorecords: \"無需要處理的記錄\",\n\t\tmodel : \"colNames 和 colModel 長度不同！\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0.00'},\n\t\tcurrency : {decimalSeparator:\".\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0.00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"日\", \"一\", \"二\", \"三\", \"四\", \"五\", \"六\",\n\t\t         \"星期日\", \"星期一\", \"星期二\", \"星期三\", \"星期四\", \"星期五\", \"星期六\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"一\", \"二\", \"三\", \"四\", \"五\", \"六\", \"七\", \"八\", \"九\", \"十\", \"十一\", \"十二\",\n\t\t\t\t\"一月\", \"二月\", \"三月\", \"四月\", \"五月\", \"六月\", \"七月\", \"八月\", \"九月\", \"十月\", \"十一月\", \"十二月\"\n\t\t\t],\n\t\t\tAmPm : [\"上午\",\"下午\",\"上午\",\"下午\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'm-d-Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\tShortDate: \"Y/j/n\",\n\t\t\t\tLongDate: \"l, F d, Y\",\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\",\n\t\t\t\tMonthDay: \"F d\",\n\t\t\t\tShortTime: \"g:i A\",\n\t\t\t\tLongTime: \"g:i:s A\",\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\tYearMonth: \"F, Y\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-ua.js",
    "content": ";(function($){\n/**\n * jqGrid Ukrainian Translation v1.0 02.07.2009\n * Sergey Dyagovchenko\n * http://d.sumy.ua\n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"Перегляд {0} - {1} з {2}\",\n\t  emptyrecords: \"Немає записів для перегляду\",\n\t\tloadtext: \"Завантаження...\",\n\t\tpgtext : \"Стор. {0} з {1}\"\n\t},\n\tsearch : {\n    caption: \"Пошук...\",\n    Find: \"Знайти\",\n    Reset: \"Скидання\",\n    odata: [{ oper:'eq', text:\"рівно\"},{ oper:'ne', text:\"не рівно\"},{ oper:'lt', text:\"менше\"},{ oper:'le', text:\"менше або рівне\"},{ oper:'gt', text:\"більше\"},{ oper:'ge', text:\"більше або рівне\"},{ oper:'bw', text:\"починається з\"},{ oper:'bn', text:\"не починається з\"},{ oper:'in', text:\"знаходиться в\"},{ oper:'ni', text:\"не знаходиться в\"},{ oper:'ew', text:\"закінчується на\"},{ oper:'en', text:\"не закінчується на\"},{ oper:'cn', text:\"містить\"},{ oper:'nc', text:\"не містить\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n    groupOps: [\t{ op: \"AND\", text: \"все\" },\t{ op: \"OR\",  text: \"будь-який\" }],\n\toperandTitle : \"Click to select search operation.\",\n\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n    addCaption: \"Додати запис\",\n    editCaption: \"Змінити запис\",\n    bSubmit: \"Зберегти\",\n    bCancel: \"Відміна\",\n\t\tbClose: \"Закрити\",\n\t\tsaveData: \"До данних були внесені зміни! Зберегти зміни?\",\n\t\tbYes : \"Так\",\n\t\tbNo : \"Ні\",\n\t\tbExit : \"Відміна\",\n\t    msg: {\n        required:\"Поле є обов'язковим\",\n        number:\"Будь ласка, введіть правильне число\",\n        minValue:\"значення повинне бути більше або дорівнює\",\n        maxValue:\"значення повинно бути менше або дорівнює\",\n        email: \"некоректна адреса електронної пошти\",\n        integer: \"Будь ласка, введення дійсне ціле значення\",\n        date: \"Будь ласка, введення дійсне значення дати\",\n        url: \"не дійсний URL. Необхідна приставка ('http://' or 'https://')\",\n\t\tnodefined : \" is not defined!\",\n\t\tnovalue : \" return value is required!\",\n\t\tcustomarray : \"Custom function should return array!\",\n\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t}\n\t},\n\tview : {\n\t    caption: \"Переглянути запис\",\n\t    bClose: \"Закрити\"\n\t},\n\tdel : {\n\t    caption: \"Видалити\",\n\t    msg: \"Видалити обраний запис(и)?\",\n\t    bSubmit: \"Видалити\",\n\t    bCancel: \"Відміна\"\n\t},\n\tnav : {\n  \t\tedittext: \" \",\n\t    edittitle: \"Змінити вибраний запис\",\n  \t\taddtext:\" \",\n\t    addtitle: \"Додати новий запис\",\n\t    deltext: \" \",\n\t    deltitle: \"Видалити вибраний запис\",\n\t    searchtext: \" \",\n\t    searchtitle: \"Знайти записи\",\n\t    refreshtext: \"\",\n\t    refreshtitle: \"Оновити таблицю\",\n\t    alertcap: \"Попередження\",\n\t    alerttext: \"Будь ласка, виберіть запис\",\n  \t\tviewtext: \"\",\n  \t\tviewtitle: \"Переглянути обраний запис\"\n\t},\n\tcol : {\n\t    caption: \"Показати/Приховати стовпці\",\n\t    bSubmit: \"Зберегти\",\n\t    bCancel: \"Відміна\"\n\t},\n\terrors : {\n\t\terrcap : \"Помилка\",\n\t\tnourl : \"URL не задан\",\n\t\tnorecords: \"Немає записів для обробки\",\n    model : \"Число полів не відповідає числу стовпців таблиці!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \" \", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, defaultValue: '0,00'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \" \", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0,00'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"Нд\", \"Пн\", \"Вт\", \"Ср\", \"Чт\", \"Пт\", \"Сб\",\n\t\t\t\t\"Неділя\", \"Понеділок\", \"Вівторок\", \"Середа\", \"Четвер\", \"П'ятниця\", \"Субота\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Січ\", \"Лют\", \"Бер\", \"Кві\", \"Тра\", \"Чер\", \"Лип\", \"Сер\", \"Вер\", \"Жов\", \"Лис\", \"Гру\",\n\t\t\t\t\"Січень\", \"Лютий\", \"Березень\", \"Квітень\", \"Травень\", \"Червень\", \"Липень\", \"Серпень\", \"Вересень\", \"Жовтень\", \"Листопад\", \"Грудень\"\n\t\t\t],\n\t\t\tAmPm : [\"am\",\"pm\",\"AM\",\"PM\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th'},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'd.m.Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t            ISO8601Long:\"Y-m-d H:i:s\",\n\t            ISO8601Short:\"Y-m-d\",\n\t            ShortDate: \"n.j.Y\",\n\t            LongDate: \"l, F d, Y\",\n\t            FullDateTime: \"l, F d, Y G:i:s\",\n\t            MonthDay: \"F d\",\n\t            ShortTime: \"G:i\",\n\t            LongTime: \"G:i:s\",\n\t            SortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t            UniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t            YearMonth: \"F, Y\"\n\t        },\n\t        reformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t  target: '',\n\t  checkbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jqGrid/i18n/grid.locale-vi.js",
    "content": ";(function($){\n/**\n * jqGrid Vietnamese Translation\n * Lê Đình Dũng dungtdc@gmail.com\n * http://trirand.com/blog/ \n * Dual licensed under the MIT and GPL licenses:\n * http://www.opensource.org/licenses/mit-license.php\n * http://www.gnu.org/licenses/gpl.html\n**/\n$.jgrid = $.jgrid || {};\n$.extend($.jgrid,{\n\tdefaults : {\n\t\trecordtext: \"View {0} - {1} of {2}\",\n\t\temptyrecords: \"Không có dữ liệu\",\n\t\tloadtext: \"Đang nạp dữ liệu...\",\n\t\tpgtext : \"Trang {0} trong tổng số {1}\"\n\t},\n\tsearch : {\n\t\tcaption: \"Tìm kiếm...\",\n\t\tFind: \"Tìm\",\n\t\tReset: \"Khởi tạo lại\",\n\t\todata: [{ oper:'eq', text:\"bằng\"},{ oper:'ne', text:\"không bằng\"},{ oper:'lt', text:\"bé hơn\"},{ oper:'le', text:\"bé hơn hoặc bằng\"},{ oper:'gt', text:\"lớn hơn\"},{ oper:'ge', text:\"lớn hơn hoặc bằng\"},{ oper:'bw', text:\"bắt đầu với\"},{ oper:'bn', text:\"không bắt đầu với\"},{ oper:'in', text:\"trong\"},{ oper:'ni', text:\"không nằm trong\"},{ oper:'ew', text:\"kết thúc với\"},{ oper:'en', text:\"không kết thúc với\"},{ oper:'cn', text:\"chứa\"},{ oper:'nc', text:\"không chứa\"},{ oper:'nu', text:'is null'},{ oper:'nn', text:'is not null'}],\n\t\tgroupOps: [\t{ op: \"VÀ\", text: \"tất cả\" },\t{ op: \"HOẶC\",  text: \"bất kỳ\" }\t],\n\t\toperandTitle : \"Click to select search operation.\",\n\t\tresetTitle : \"Reset Search Value\"\n\t},\n\tedit : {\n\t\taddCaption: \"Thêm bản ghi\",\n\t\teditCaption: \"Sửa bản ghi\",\n\t\tbSubmit: \"Gửi\",\n\t\tbCancel: \"Hủy bỏ\",\n\t\tbClose: \"Đóng\",\n\t\tsaveData: \"Dữ liệu đã thay đổi! Có lưu thay đổi không?\",\n\t\tbYes : \"Có\",\n\t\tbNo : \"Không\",\n\t\tbExit : \"Hủy bỏ\",\n\t\tmsg: {\n\t\t\trequired:\"Trường dữ liệu bắt buộc có\",\n\t\t\tnumber:\"Hãy điền đúng số\",\n\t\t\tminValue:\"giá trị phải lớn hơn hoặc bằng với \",\n\t\t\tmaxValue:\"giá trị phải bé hơn hoặc bằng\",\n\t\t\temail: \"không phải là một email đúng\",\n\t\t\tinteger: \"Hãy điền đúng số nguyên\",\n\t\t\tdate: \"Hãy điền đúng ngày tháng\",\n\t\t\turl: \"không phải là URL. Khởi đầu bắt buộc là ('http://' hoặc 'https://')\",\n\t\t\tnodefined : \" chưa được định nghĩa!\",\n\t\t\tnovalue : \" giá trị trả về bắt buộc phải có!\",\n\t\t\tcustomarray : \"Hàm nên trả về một mảng!\",\n\t\t\tcustomfcheck : \"Custom function should be present in case of custom checking!\"\n\t\t\t\n\t\t}\n\t},\n\tview : {\n\t\tcaption: \"Xem bản ghi\",\n\t\tbClose: \"Đóng\"\n\t},\n\tdel : {\n\t\tcaption: \"Xóa\",\n\t\tmsg: \"Xóa bản ghi đã chọn?\",\n\t\tbSubmit: \"Xóa\",\n\t\tbCancel: \"Hủy bỏ\"\n\t},\n\tnav : {\n\t\tedittext: \"\",\n\t\tedittitle: \"Sửa dòng đã chọn\",\n\t\taddtext:\"\",\n\t\taddtitle: \"Thêm mới 1 dòng\",\n\t\tdeltext: \"\",\n\t\tdeltitle: \"Xóa dòng đã chọn\",\n\t\tsearchtext: \"\",\n\t\tsearchtitle: \"Tìm bản ghi\",\n\t\trefreshtext: \"\",\n\t\trefreshtitle: \"Nạp lại lưới\",\n\t\talertcap: \"Cảnh báo\",\n\t\talerttext: \"Hãy chọn một dòng\",\n\t\tviewtext: \"\",\n\t\tviewtitle: \"Xem dòng đã chọn\"\n\t},\n\tcol : {\n\t\tcaption: \"Chọn cột\",\n\t\tbSubmit: \"OK\",\n\t\tbCancel: \"Hủy bỏ\"\n\t},\n\terrors : {\n\t\terrcap : \"Lỗi\",\n\t\tnourl : \"không url được đặt\",\n\t\tnorecords: \"Không có bản ghi để xử lý\",\n\t\tmodel : \"Chiều dài của colNames <> colModel!\"\n\t},\n\tformatter : {\n\t\tinteger : {thousandsSeparator: \".\", defaultValue: '0'},\n\t\tnumber : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, defaultValue: '0'},\n\t\tcurrency : {decimalSeparator:\",\", thousandsSeparator: \".\", decimalPlaces: 2, prefix: \"\", suffix:\"\", defaultValue: '0'},\n\t\tdate : {\n\t\t\tdayNames:   [\n\t\t\t\t\"CN\", \"T2\", \"T3\", \"T4\", \"T5\", \"T6\", \"T7\",\n\t\t\t\t\"Chủ nhật\", \"Thứ hai\", \"Thứ ba\", \"Thứ tư\", \"Thứ năm\", \"Thứ sáu\", \"Thứ bảy\"\n\t\t\t],\n\t\t\tmonthNames: [\n\t\t\t\t\"Th1\", \"Th2\", \"Th3\", \"Th4\", \"Th5\", \"Th6\", \"Th7\", \"Th8\", \"Th9\", \"Th10\", \"Th11\", \"Th12\",\n\t\t\t\t\"Tháng một\", \"Tháng hai\", \"Tháng ba\", \"Tháng tư\", \"Tháng năm\", \"Tháng sáu\", \"Tháng bảy\", \"Tháng tám\", \"Tháng chín\", \"Tháng mười\", \"Tháng mười một\", \"Tháng mười hai\"\n\t\t\t],\n\t\t\tAmPm : [\"sáng\",\"chiều\",\"SÁNG\",\"CHIỀU\"],\n\t\t\tS: function (j) {return j < 11 || j > 13 ? ['st', 'nd', 'rd', 'th'][Math.min((j - 1) % 10, 3)] : 'th';},\n\t\t\tsrcformat: 'Y-m-d',\n\t\t\tnewformat: 'n/j/Y',\n\t\t\tparseRe : /[#%\\\\\\/:_;.,\\t\\s-]/,\n\t\t\tmasks : {\n\t\t\t\t// see http://php.net/manual/en/function.date.php for PHP format used in jqGrid\n\t\t\t\t// and see http://docs.jquery.com/UI/Datepicker/formatDate\n\t\t\t\t// and https://github.com/jquery/globalize#dates for alternative formats used frequently\n\t\t\t\t// one can find on https://github.com/jquery/globalize/tree/master/lib/cultures many\n\t\t\t\t// information about date, time, numbers and currency formats used in different countries\n\t\t\t\t// one should just convert the information in PHP format\n\t\t\t\tISO8601Long:\"Y-m-d H:i:s\",\n\t\t\t\tISO8601Short:\"Y-m-d\",\n\t\t\t\t// short date:\n\t\t\t\t//    n - Numeric representation of a month, without leading zeros\n\t\t\t\t//    j - Day of the month without leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t// example: 3/1/2012 which means 1 March 2012\n\t\t\t\tShortDate: \"n/j/Y\", // in jQuery UI Datepicker: \"M/d/yyyy\"\n\t\t\t\t// long date:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\tLongDate: \"l, F d, Y\", // in jQuery UI Datepicker: \"dddd, MMMM dd, yyyy\"\n\t\t\t\t// long date with long time:\n\t\t\t\t//    l - A full textual representation of the day of the week\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tFullDateTime: \"l, F d, Y g:i:s A\", // in jQuery UI Datepicker: \"dddd, MMMM dd, yyyy h:mm:ss tt\"\n\t\t\t\t// month day:\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\t//    d - Day of the month, 2 digits with leading zeros\n\t\t\t\tMonthDay: \"F d\", // in jQuery UI Datepicker: \"MMMM dd\"\n\t\t\t\t// short time (without seconds)\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tShortTime: \"g:i A\", // in jQuery UI Datepicker: \"h:mm tt\"\n\t\t\t\t// long time (with seconds)\n\t\t\t\t//    g - 12-hour format of an hour without leading zeros\n\t\t\t\t//    i - Minutes with leading zeros\n\t\t\t\t//    s - Seconds, with leading zeros\n\t\t\t\t//    A - Uppercase Ante meridiem and Post meridiem (AM or PM)\n\t\t\t\tLongTime: \"g:i:s A\", // in jQuery UI Datepicker: \"h:mm:ss tt\"\n\t\t\t\tSortableDateTime: \"Y-m-d\\\\TH:i:s\",\n\t\t\t\tUniversalSortableDateTime: \"Y-m-d H:i:sO\",\n\t\t\t\t// month with year\n\t\t\t\t//    Y - A full numeric representation of a year, 4 digits\n\t\t\t\t//    F - A full textual representation of a month\n\t\t\t\tYearMonth: \"F, Y\" // in jQuery UI Datepicker: \"MMMM, yyyy\"\n\t\t\t},\n\t\t\treformatAfterEdit : false\n\t\t},\n\t\tbaseLinkUrl: '',\n\t\tshowAction: '',\n\t\ttarget: '',\n\t\tcheckbox : {disabled:true},\n\t\tidName : 'id'\n\t}\n});\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/jquery-ui/jquery-ui.css",
    "content": "/*! jQuery UI - v1.10.4 - 2014-01-17\n* http://jqueryui.com\n* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css\n* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n.ui-helper-clearfix {\n\tmin-height: 0; /* support: IE7 */\n}\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter:Alpha(Opacity=0);\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n}\n\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n\n.ui-accordion .ui-accordion-header {\n\tdisplay: block;\n\tcursor: pointer;\n\tposition: relative;\n\tmargin-top: 2px;\n\tpadding: .5em .5em .5em .7em;\n\tmin-height: 0; /* support: IE7 */\n}\n.ui-accordion .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n.ui-accordion .ui-accordion-noicons {\n\tpadding-left: .7em;\n}\n.ui-accordion .ui-accordion-icons .ui-accordion-icons {\n\tpadding-left: 2.2em;\n}\n.ui-accordion .ui-accordion-header .ui-accordion-header-icon {\n\tposition: absolute;\n\tleft: .5em;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n.ui-accordion .ui-accordion-content {\n\tpadding: 1em 2.2em;\n\tborder-top: 0;\n\toverflow: auto;\n}\n\n.ui-autocomplete {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tcursor: default;\n}\n\n.ui-button {\n\tdisplay: inline-block;\n\tposition: relative;\n\tpadding: 0;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\toverflow: visible; /* removes extra width in IE */\n}\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2.2em;\n}\n/* button elements seem to need a little more width */\nbutton.ui-button-icon-only {\n\twidth: 2.4em;\n}\n.ui-button-icons-only {\n\twidth: 3.4em;\n}\nbutton.ui-button-icons-only {\n\twidth: 3.7em;\n}\n\n/* button text element */\n.ui-button .ui-button-text {\n\tdisplay: block;\n\tline-height: normal;\n}\n.ui-button-text-only .ui-button-text {\n\tpadding: .4em 1em;\n}\n.ui-button-icon-only .ui-button-text,\n.ui-button-icons-only .ui-button-text {\n\tpadding: .4em;\n\ttext-indent: -9999999px;\n}\n.ui-button-text-icon-primary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 1em .4em 2.1em;\n}\n.ui-button-text-icon-secondary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 2.1em .4em 1em;\n}\n.ui-button-text-icons .ui-button-text {\n\tpadding-left: 2.1em;\n\tpadding-right: 2.1em;\n}\n/* no icon support for input elements, provide padding by default */\ninput.ui-button {\n\tpadding: .4em 1em;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon,\n.ui-button-text-icon-primary .ui-icon,\n.ui-button-text-icon-secondary .ui-icon,\n.ui-button-text-icons .ui-icon,\n.ui-button-icons-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n.ui-button-icon-only .ui-icon {\n\tleft: 50%;\n\tmargin-left: -8px;\n}\n.ui-button-text-icon-primary .ui-button-icon-primary,\n.ui-button-text-icons .ui-button-icon-primary,\n.ui-button-icons-only .ui-button-icon-primary {\n\tleft: .5em;\n}\n.ui-button-text-icon-secondary .ui-button-icon-secondary,\n.ui-button-text-icons .ui-button-icon-secondary,\n.ui-button-icons-only .ui-button-icon-secondary {\n\tright: .5em;\n}\n\n/* button sets */\n.ui-buttonset {\n\tmargin-right: 7px;\n}\n.ui-buttonset .ui-button {\n\tmargin-left: 0;\n\tmargin-right: -.3em;\n}\n\n/* workarounds */\n/* reset extra padding in Firefox, see h5bp.com/l */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n\n.ui-datepicker {\n\twidth: 17em;\n\tpadding: .2em .2em 0;\n\tdisplay: none;\n}\n.ui-datepicker .ui-datepicker-header {\n\tposition: relative;\n\tpadding: .2em 0;\n}\n.ui-datepicker .ui-datepicker-prev,\n.ui-datepicker .ui-datepicker-next {\n\tposition: absolute;\n\ttop: 2px;\n\twidth: 1.8em;\n\theight: 1.8em;\n}\n.ui-datepicker .ui-datepicker-prev-hover,\n.ui-datepicker .ui-datepicker-next-hover {\n\ttop: 1px;\n}\n.ui-datepicker .ui-datepicker-prev {\n\tleft: 2px;\n}\n.ui-datepicker .ui-datepicker-next {\n\tright: 2px;\n}\n.ui-datepicker .ui-datepicker-prev-hover {\n\tleft: 1px;\n}\n.ui-datepicker .ui-datepicker-next-hover {\n\tright: 1px;\n}\n.ui-datepicker .ui-datepicker-prev span,\n.ui-datepicker .ui-datepicker-next span {\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 50%;\n\tmargin-left: -8px;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n.ui-datepicker .ui-datepicker-title {\n\tmargin: 0 2.3em;\n\tline-height: 1.8em;\n\ttext-align: center;\n}\n.ui-datepicker .ui-datepicker-title select {\n\tfont-size: 1em;\n\tmargin: 1px 0;\n}\n.ui-datepicker select.ui-datepicker-month,\n.ui-datepicker select.ui-datepicker-year {\n\twidth: 49%;\n}\n.ui-datepicker table {\n\twidth: 100%;\n\tfont-size: .9em;\n\tborder-collapse: collapse;\n\tmargin: 0 0 .4em;\n}\n.ui-datepicker th {\n\tpadding: .7em .3em;\n\ttext-align: center;\n\tfont-weight: bold;\n\tborder: 0;\n}\n.ui-datepicker td {\n\tborder: 0;\n\tpadding: 1px;\n}\n.ui-datepicker td span,\n.ui-datepicker td a {\n\tdisplay: block;\n\tpadding: .2em;\n\ttext-align: right;\n\ttext-decoration: none;\n}\n.ui-datepicker .ui-datepicker-buttonpane {\n\tbackground-image: none;\n\tmargin: .7em 0 0 0;\n\tpadding: 0 .2em;\n\tborder-left: 0;\n\tborder-right: 0;\n\tborder-bottom: 0;\n}\n.ui-datepicker .ui-datepicker-buttonpane button {\n\tfloat: right;\n\tmargin: .5em .2em .4em;\n\tcursor: pointer;\n\tpadding: .2em .6em .3em .6em;\n\twidth: auto;\n\toverflow: visible;\n}\n.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {\n\tfloat: left;\n}\n\n/* with multiple calendars */\n.ui-datepicker.ui-datepicker-multi {\n\twidth: auto;\n}\n.ui-datepicker-multi .ui-datepicker-group {\n\tfloat: left;\n}\n.ui-datepicker-multi .ui-datepicker-group table {\n\twidth: 95%;\n\tmargin: 0 auto .4em;\n}\n.ui-datepicker-multi-2 .ui-datepicker-group {\n\twidth: 50%;\n}\n.ui-datepicker-multi-3 .ui-datepicker-group {\n\twidth: 33.3%;\n}\n.ui-datepicker-multi-4 .ui-datepicker-group {\n\twidth: 25%;\n}\n.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-left-width: 0;\n}\n.ui-datepicker-multi .ui-datepicker-buttonpane {\n\tclear: left;\n}\n.ui-datepicker-row-break {\n\tclear: both;\n\twidth: 100%;\n\tfont-size: 0;\n}\n\n/* RTL support */\n.ui-datepicker-rtl {\n\tdirection: rtl;\n}\n.ui-datepicker-rtl .ui-datepicker-prev {\n\tright: 2px;\n\tleft: auto;\n}\n.ui-datepicker-rtl .ui-datepicker-next {\n\tleft: 2px;\n\tright: auto;\n}\n.ui-datepicker-rtl .ui-datepicker-prev:hover {\n\tright: 1px;\n\tleft: auto;\n}\n.ui-datepicker-rtl .ui-datepicker-next:hover {\n\tleft: 1px;\n\tright: auto;\n}\n.ui-datepicker-rtl .ui-datepicker-buttonpane {\n\tclear: right;\n}\n.ui-datepicker-rtl .ui-datepicker-buttonpane button {\n\tfloat: left;\n}\n.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,\n.ui-datepicker-rtl .ui-datepicker-group {\n\tfloat: right;\n}\n.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,\n.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {\n\tborder-right-width: 0;\n\tborder-left-width: 1px;\n}\n\n.ui-dialog {\n\toverflow: hidden;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\tpadding: .2em;\n\toutline: 0;\n}\n.ui-dialog .ui-dialog-titlebar {\n\tpadding: .4em 1em;\n\tposition: relative;\n}\n.ui-dialog .ui-dialog-title {\n\tfloat: left;\n\tmargin: .1em 0;\n\twhite-space: nowrap;\n\twidth: 90%;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n.ui-dialog .ui-dialog-titlebar-close {\n\tposition: absolute;\n\tright: .3em;\n\ttop: 50%;\n\twidth: 20px;\n\tmargin: -10px 0 0 0;\n\tpadding: 1px;\n\theight: 20px;\n}\n.ui-dialog .ui-dialog-content {\n\tposition: relative;\n\tborder: 0;\n\tpadding: .5em 1em;\n\tbackground: none;\n\toverflow: auto;\n}\n.ui-dialog .ui-dialog-buttonpane {\n\ttext-align: left;\n\tborder-width: 1px 0 0 0;\n\tbackground-image: none;\n\tmargin-top: .5em;\n\tpadding: .3em 1em .5em .4em;\n}\n.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {\n\tfloat: right;\n}\n.ui-dialog .ui-dialog-buttonpane button {\n\tmargin: .5em .4em .5em 0;\n\tcursor: pointer;\n}\n.ui-dialog .ui-resizable-se {\n\twidth: 12px;\n\theight: 12px;\n\tright: -5px;\n\tbottom: -5px;\n\tbackground-position: 16px 16px;\n}\n.ui-draggable .ui-dialog-titlebar {\n\tcursor: move;\n}\n\n.ui-menu {\n\tlist-style: none;\n\tpadding: 2px;\n\tmargin: 0;\n\tdisplay: block;\n\toutline: none;\n}\n.ui-menu .ui-menu {\n\tmargin-top: -3px;\n\tposition: absolute;\n}\n.ui-menu .ui-menu-item {\n\tmargin: 0;\n\tpadding: 0;\n\twidth: 100%;\n\t/* support: IE10, see #8844 */\n\tlist-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);\n}\n.ui-menu .ui-menu-divider {\n\tmargin: 5px -2px 5px -2px;\n\theight: 0;\n\tfont-size: 0;\n\tline-height: 0;\n\tborder-width: 1px 0 0 0;\n}\n.ui-menu .ui-menu-item a {\n\ttext-decoration: none;\n\tdisplay: block;\n\tpadding: 2px .4em;\n\tline-height: 1.5;\n\tmin-height: 0; /* support: IE7 */\n\tfont-weight: normal;\n}\n.ui-menu .ui-menu-item a.ui-state-focus,\n.ui-menu .ui-menu-item a.ui-state-active {\n\tfont-weight: normal;\n\tmargin: -1px;\n}\n\n.ui-menu .ui-state-disabled {\n\tfont-weight: normal;\n\tmargin: .4em 0 .2em;\n\tline-height: 1.5;\n}\n.ui-menu .ui-state-disabled a {\n\tcursor: default;\n}\n\n/* icon support */\n.ui-menu-icons {\n\tposition: relative;\n}\n.ui-menu-icons .ui-menu-item a {\n\tposition: relative;\n\tpadding-left: 2em;\n}\n\n/* left-aligned */\n.ui-menu .ui-icon {\n\tposition: absolute;\n\ttop: .2em;\n\tleft: .2em;\n}\n\n/* right-aligned */\n.ui-menu .ui-menu-icon {\n\tposition: static;\n\tfloat: right;\n}\n\n.ui-progressbar {\n\theight: 2em;\n\ttext-align: left;\n\toverflow: hidden;\n}\n.ui-progressbar .ui-progressbar-value {\n\tmargin: -1px;\n\theight: 100%;\n}\n.ui-progressbar .ui-progressbar-overlay {\n\tbackground: url(\"images/animated-overlay.gif\");\n\theight: 100%;\n\tfilter: alpha(opacity=25);\n\topacity: 0.25;\n}\n.ui-progressbar-indeterminate .ui-progressbar-value {\n\tbackground-image: none;\n}\n\n.ui-resizable {\n\tposition: relative;\n}\n.ui-resizable-handle {\n\tposition: absolute;\n\tfont-size: 0.1px;\n\tdisplay: block;\n}\n.ui-resizable-disabled .ui-resizable-handle,\n.ui-resizable-autohide .ui-resizable-handle {\n\tdisplay: none;\n}\n.ui-resizable-n {\n\tcursor: n-resize;\n\theight: 7px;\n\twidth: 100%;\n\ttop: -5px;\n\tleft: 0;\n}\n.ui-resizable-s {\n\tcursor: s-resize;\n\theight: 7px;\n\twidth: 100%;\n\tbottom: -5px;\n\tleft: 0;\n}\n.ui-resizable-e {\n\tcursor: e-resize;\n\twidth: 7px;\n\tright: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n.ui-resizable-w {\n\tcursor: w-resize;\n\twidth: 7px;\n\tleft: -5px;\n\ttop: 0;\n\theight: 100%;\n}\n.ui-resizable-se {\n\tcursor: se-resize;\n\twidth: 12px;\n\theight: 12px;\n\tright: 1px;\n\tbottom: 1px;\n}\n.ui-resizable-sw {\n\tcursor: sw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\tbottom: -5px;\n}\n.ui-resizable-nw {\n\tcursor: nw-resize;\n\twidth: 9px;\n\theight: 9px;\n\tleft: -5px;\n\ttop: -5px;\n}\n.ui-resizable-ne {\n\tcursor: ne-resize;\n\twidth: 9px;\n\theight: 9px;\n\tright: -5px;\n\ttop: -5px;\n}\n\n.ui-selectable-helper {\n\tposition: absolute;\n\tz-index: 100;\n\tborder: 1px dotted black;\n}\n\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n}\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* For IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n\n.ui-spinner {\n\tposition: relative;\n\tdisplay: inline-block;\n\toverflow: hidden;\n\tpadding: 0;\n\tvertical-align: middle;\n}\n.ui-spinner-input {\n\tborder: none;\n\tbackground: none;\n\tcolor: inherit;\n\tpadding: 0;\n\tmargin: .2em 0;\n\tvertical-align: middle;\n\tmargin-left: .4em;\n\tmargin-right: 22px;\n}\n.ui-spinner-button {\n\twidth: 16px;\n\theight: 50%;\n\tfont-size: .5em;\n\tpadding: 0;\n\tmargin: 0;\n\ttext-align: center;\n\tposition: absolute;\n\tcursor: default;\n\tdisplay: block;\n\toverflow: hidden;\n\tright: 0;\n}\n/* more specificity required here to override default borders */\n.ui-spinner a.ui-spinner-button {\n\tborder-top: none;\n\tborder-bottom: none;\n\tborder-right: none;\n}\n/* vertically center icon */\n.ui-spinner .ui-icon {\n\tposition: absolute;\n\tmargin-top: -8px;\n\ttop: 50%;\n\tleft: 0;\n}\n.ui-spinner-up {\n\ttop: 0;\n}\n.ui-spinner-down {\n\tbottom: 0;\n}\n\n/* TR overrides */\n.ui-spinner .ui-icon-triangle-1-s {\n\t/* need to fix icons sprite */\n\tbackground-position: -65px -16px;\n}\n\n.ui-tabs {\n\tposition: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as \"fixed\") */\n\tpadding: .2em;\n}\n.ui-tabs .ui-tabs-nav {\n\tmargin: 0;\n\tpadding: .2em .2em 0;\n}\n.ui-tabs .ui-tabs-nav li {\n\tlist-style: none;\n\tfloat: left;\n\tposition: relative;\n\ttop: 0;\n\tmargin: 1px .2em 0 0;\n\tborder-bottom-width: 0;\n\tpadding: 0;\n\twhite-space: nowrap;\n}\n.ui-tabs .ui-tabs-nav .ui-tabs-anchor {\n\tfloat: left;\n\tpadding: .5em 1em;\n\ttext-decoration: none;\n}\n.ui-tabs .ui-tabs-nav li.ui-tabs-active {\n\tmargin-bottom: -1px;\n\tpadding-bottom: 1px;\n}\n.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,\n.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {\n\tcursor: text;\n}\n.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {\n\tcursor: pointer;\n}\n.ui-tabs .ui-tabs-panel {\n\tdisplay: block;\n\tborder-width: 0;\n\tpadding: 1em 1.4em;\n\tbackground: none;\n}\n\n.ui-tooltip {\n\tpadding: 8px;\n\tposition: absolute;\n\tz-index: 9999;\n\tmax-width: 300px;\n\t-webkit-box-shadow: 0 0 5px #aaa;\n\tbox-shadow: 0 0 5px #aaa;\n}\nbody .ui-tooltip {\n\tborder-width: 2px;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: Verdana,Arial,sans-serif/*{ffDefault}*/;\n\tfont-size: 1.1em/*{fsDefault}*/;\n}\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: Verdana,Arial,sans-serif/*{ffDefault}*/;\n\tfont-size: 1em;\n}\n.ui-widget-content {\n\tborder: 1px solid #aaaaaa/*{borderColorContent}*/;\n\tbackground: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/;\n\tcolor: #222222/*{fcContent}*/;\n}\n.ui-widget-content a {\n\tcolor: #222222/*{fcContent}*/;\n}\n.ui-widget-header {\n\tborder: 1px solid #aaaaaa/*{borderColorHeader}*/;\n\tbackground: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/;\n\tcolor: #222222/*{fcHeader}*/;\n\tfont-weight: bold;\n}\n.ui-widget-header a {\n\tcolor: #222222/*{fcHeader}*/;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n\tborder: 1px solid #d3d3d3/*{borderColorDefault}*/;\n\tbackground: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/;\n\tfont-weight: normal/*{fwDefault}*/;\n\tcolor: #555555/*{fcDefault}*/;\n}\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited {\n\tcolor: #555555/*{fcDefault}*/;\n\ttext-decoration: none;\n}\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n\tborder: 1px solid #999999/*{borderColorHover}*/;\n\tbackground: #dadada/*{bgColorHover}*/ url(images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/;\n\tfont-weight: normal/*{fwDefault}*/;\n\tcolor: #212121/*{fcHover}*/;\n}\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited {\n\tcolor: #212121/*{fcHover}*/;\n\ttext-decoration: none;\n}\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n\tborder: 1px solid #aaaaaa/*{borderColorActive}*/;\n\tbackground: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/;\n\tfont-weight: normal/*{fwDefault}*/;\n\tcolor: #212121/*{fcActive}*/;\n}\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #212121/*{fcActive}*/;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #fcefa1/*{borderColorHighlight}*/;\n\tbackground: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/;\n\tcolor: #363636/*{fcHighlight}*/;\n}\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #363636/*{fcHighlight}*/;\n}\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #cd0a0a/*{borderColorError}*/;\n\tbackground: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/;\n\tcolor: #cd0a0a/*{fcError}*/;\n}\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #cd0a0a/*{fcError}*/;\n}\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #cd0a0a/*{fcError}*/;\n}\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: .7;\n\tfilter:Alpha(Opacity=70);\n\tfont-weight: normal;\n}\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: .35;\n\tfilter:Alpha(Opacity=35);\n\tbackground-image: none;\n}\n.ui-state-disabled .ui-icon {\n\tfilter:Alpha(Opacity=35); /* For IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/;\n}\n.ui-widget-header .ui-icon {\n\tbackground-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/;\n}\n.ui-state-default .ui-icon {\n\tbackground-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/;\n}\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon {\n\tbackground-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/;\n}\n.ui-state-active .ui-icon {\n\tbackground-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/;\n}\n.ui-state-highlight .ui-icon {\n\tbackground-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/;\n}\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/;\n}\n\n/* positioning */\n.ui-icon-blank { background-position: 16px 16px; }\n.ui-icon-carat-1-n { background-position: 0 0; }\n.ui-icon-carat-1-ne { background-position: -16px 0; }\n.ui-icon-carat-1-e { background-position: -32px 0; }\n.ui-icon-carat-1-se { background-position: -48px 0; }\n.ui-icon-carat-1-s { background-position: -64px 0; }\n.ui-icon-carat-1-sw { background-position: -80px 0; }\n.ui-icon-carat-1-w { background-position: -96px 0; }\n.ui-icon-carat-1-nw { background-position: -112px 0; }\n.ui-icon-carat-2-n-s { background-position: -128px 0; }\n.ui-icon-carat-2-e-w { background-position: -144px 0; }\n.ui-icon-triangle-1-n { background-position: 0 -16px; }\n.ui-icon-triangle-1-ne { background-position: -16px -16px; }\n.ui-icon-triangle-1-e { background-position: -32px -16px; }\n.ui-icon-triangle-1-se { background-position: -48px -16px; }\n.ui-icon-triangle-1-s { background-position: -64px -16px; }\n.ui-icon-triangle-1-sw { background-position: -80px -16px; }\n.ui-icon-triangle-1-w { background-position: -96px -16px; }\n.ui-icon-triangle-1-nw { background-position: -112px -16px; }\n.ui-icon-triangle-2-n-s { background-position: -128px -16px; }\n.ui-icon-triangle-2-e-w { background-position: -144px -16px; }\n.ui-icon-arrow-1-n { background-position: 0 -32px; }\n.ui-icon-arrow-1-ne { background-position: -16px -32px; }\n.ui-icon-arrow-1-e { background-position: -32px -32px; }\n.ui-icon-arrow-1-se { background-position: -48px -32px; }\n.ui-icon-arrow-1-s { background-position: -64px -32px; }\n.ui-icon-arrow-1-sw { background-position: -80px -32px; }\n.ui-icon-arrow-1-w { background-position: -96px -32px; }\n.ui-icon-arrow-1-nw { background-position: -112px -32px; }\n.ui-icon-arrow-2-n-s { background-position: -128px -32px; }\n.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }\n.ui-icon-arrow-2-e-w { background-position: -160px -32px; }\n.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }\n.ui-icon-arrowstop-1-n { background-position: -192px -32px; }\n.ui-icon-arrowstop-1-e { background-position: -208px -32px; }\n.ui-icon-arrowstop-1-s { background-position: -224px -32px; }\n.ui-icon-arrowstop-1-w { background-position: -240px -32px; }\n.ui-icon-arrowthick-1-n { background-position: 0 -48px; }\n.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }\n.ui-icon-arrowthick-1-e { background-position: -32px -48px; }\n.ui-icon-arrowthick-1-se { background-position: -48px -48px; }\n.ui-icon-arrowthick-1-s { background-position: -64px -48px; }\n.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }\n.ui-icon-arrowthick-1-w { background-position: -96px -48px; }\n.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }\n.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }\n.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }\n.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }\n.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }\n.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }\n.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }\n.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }\n.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }\n.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }\n.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }\n.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }\n.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }\n.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }\n.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }\n.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }\n.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }\n.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }\n.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }\n.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }\n.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }\n.ui-icon-arrow-4 { background-position: 0 -80px; }\n.ui-icon-arrow-4-diag { background-position: -16px -80px; }\n.ui-icon-extlink { background-position: -32px -80px; }\n.ui-icon-newwin { background-position: -48px -80px; }\n.ui-icon-refresh { background-position: -64px -80px; }\n.ui-icon-shuffle { background-position: -80px -80px; }\n.ui-icon-transfer-e-w { background-position: -96px -80px; }\n.ui-icon-transferthick-e-w { background-position: -112px -80px; }\n.ui-icon-folder-collapsed { background-position: 0 -96px; }\n.ui-icon-folder-open { background-position: -16px -96px; }\n.ui-icon-document { background-position: -32px -96px; }\n.ui-icon-document-b { background-position: -48px -96px; }\n.ui-icon-note { background-position: -64px -96px; }\n.ui-icon-mail-closed { background-position: -80px -96px; }\n.ui-icon-mail-open { background-position: -96px -96px; }\n.ui-icon-suitcase { background-position: -112px -96px; }\n.ui-icon-comment { background-position: -128px -96px; }\n.ui-icon-person { background-position: -144px -96px; }\n.ui-icon-print { background-position: -160px -96px; }\n.ui-icon-trash { background-position: -176px -96px; }\n.ui-icon-locked { background-position: -192px -96px; }\n.ui-icon-unlocked { background-position: -208px -96px; }\n.ui-icon-bookmark { background-position: -224px -96px; }\n.ui-icon-tag { background-position: -240px -96px; }\n.ui-icon-home { background-position: 0 -112px; }\n.ui-icon-flag { background-position: -16px -112px; }\n.ui-icon-calendar { background-position: -32px -112px; }\n.ui-icon-cart { background-position: -48px -112px; }\n.ui-icon-pencil { background-position: -64px -112px; }\n.ui-icon-clock { background-position: -80px -112px; }\n.ui-icon-disk { background-position: -96px -112px; }\n.ui-icon-calculator { background-position: -112px -112px; }\n.ui-icon-zoomin { background-position: -128px -112px; }\n.ui-icon-zoomout { background-position: -144px -112px; }\n.ui-icon-search { background-position: -160px -112px; }\n.ui-icon-wrench { background-position: -176px -112px; }\n.ui-icon-gear { background-position: -192px -112px; }\n.ui-icon-heart { background-position: -208px -112px; }\n.ui-icon-star { background-position: -224px -112px; }\n.ui-icon-link { background-position: -240px -112px; }\n.ui-icon-cancel { background-position: 0 -128px; }\n.ui-icon-plus { background-position: -16px -128px; }\n.ui-icon-plusthick { background-position: -32px -128px; }\n.ui-icon-minus { background-position: -48px -128px; }\n.ui-icon-minusthick { background-position: -64px -128px; }\n.ui-icon-close { background-position: -80px -128px; }\n.ui-icon-closethick { background-position: -96px -128px; }\n.ui-icon-key { background-position: -112px -128px; }\n.ui-icon-lightbulb { background-position: -128px -128px; }\n.ui-icon-scissors { background-position: -144px -128px; }\n.ui-icon-clipboard { background-position: -160px -128px; }\n.ui-icon-copy { background-position: -176px -128px; }\n.ui-icon-contact { background-position: -192px -128px; }\n.ui-icon-image { background-position: -208px -128px; }\n.ui-icon-video { background-position: -224px -128px; }\n.ui-icon-script { background-position: -240px -128px; }\n.ui-icon-alert { background-position: 0 -144px; }\n.ui-icon-info { background-position: -16px -144px; }\n.ui-icon-notice { background-position: -32px -144px; }\n.ui-icon-help { background-position: -48px -144px; }\n.ui-icon-check { background-position: -64px -144px; }\n.ui-icon-bullet { background-position: -80px -144px; }\n.ui-icon-radio-on { background-position: -96px -144px; }\n.ui-icon-radio-off { background-position: -112px -144px; }\n.ui-icon-pin-w { background-position: -128px -144px; }\n.ui-icon-pin-s { background-position: -144px -144px; }\n.ui-icon-play { background-position: 0 -160px; }\n.ui-icon-pause { background-position: -16px -160px; }\n.ui-icon-seek-next { background-position: -32px -160px; }\n.ui-icon-seek-prev { background-position: -48px -160px; }\n.ui-icon-seek-end { background-position: -64px -160px; }\n.ui-icon-seek-start { background-position: -80px -160px; }\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first { background-position: -80px -160px; }\n.ui-icon-stop { background-position: -96px -160px; }\n.ui-icon-eject { background-position: -112px -160px; }\n.ui-icon-volume-off { background-position: -128px -160px; }\n.ui-icon-volume-on { background-position: -144px -160px; }\n.ui-icon-power { background-position: 0 -176px; }\n.ui-icon-signal-diag { background-position: -16px -176px; }\n.ui-icon-signal { background-position: -32px -176px; }\n.ui-icon-battery-0 { background-position: -48px -176px; }\n.ui-icon-battery-1 { background-position: -64px -176px; }\n.ui-icon-battery-2 { background-position: -80px -176px; }\n.ui-icon-battery-3 { background-position: -96px -176px; }\n.ui-icon-circle-plus { background-position: 0 -192px; }\n.ui-icon-circle-minus { background-position: -16px -192px; }\n.ui-icon-circle-close { background-position: -32px -192px; }\n.ui-icon-circle-triangle-e { background-position: -48px -192px; }\n.ui-icon-circle-triangle-s { background-position: -64px -192px; }\n.ui-icon-circle-triangle-w { background-position: -80px -192px; }\n.ui-icon-circle-triangle-n { background-position: -96px -192px; }\n.ui-icon-circle-arrow-e { background-position: -112px -192px; }\n.ui-icon-circle-arrow-s { background-position: -128px -192px; }\n.ui-icon-circle-arrow-w { background-position: -144px -192px; }\n.ui-icon-circle-arrow-n { background-position: -160px -192px; }\n.ui-icon-circle-zoomin { background-position: -176px -192px; }\n.ui-icon-circle-zoomout { background-position: -192px -192px; }\n.ui-icon-circle-check { background-position: -208px -192px; }\n.ui-icon-circlesmall-plus { background-position: 0 -208px; }\n.ui-icon-circlesmall-minus { background-position: -16px -208px; }\n.ui-icon-circlesmall-close { background-position: -32px -208px; }\n.ui-icon-squaresmall-plus { background-position: -48px -208px; }\n.ui-icon-squaresmall-minus { background-position: -64px -208px; }\n.ui-icon-squaresmall-close { background-position: -80px -208px; }\n.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }\n.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }\n.ui-icon-grip-solid-vertical { background-position: -32px -224px; }\n.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }\n.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }\n.ui-icon-grip-diagonal-se { background-position: -80px -224px; }\n\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 4px/*{cornerRadius}*/;\n}\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 4px/*{cornerRadius}*/;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 4px/*{cornerRadius}*/;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 4px/*{cornerRadius}*/;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/;\n\topacity: .3/*{opacityOverlay}*/;\n\tfilter: Alpha(Opacity=30)/*{opacityFilterOverlay}*/;\n}\n.ui-widget-shadow {\n\tmargin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/;\n\tpadding: 8px/*{thicknessShadow}*/;\n\tbackground: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/;\n\topacity: .3/*{opacityShadow}*/;\n\tfilter: Alpha(Opacity=30)/*{opacityFilterShadow}*/;\n\tborder-radius: 8px/*{cornerRadiusShadow}*/;\n}\n"
  },
  {
    "path": "public/admin/js/plugins/jquery-ui/jquery-ui.js",
    "content": "/*! jQuery UI - v1.10.4 - 2014-01-17\n* http://jqueryui.com\n* Includes: jquery.ui.core.js, jquery.ui.widget.js, jquery.ui.mouse.js, jquery.ui.draggable.js, jquery.ui.droppable.js, jquery.ui.resizable.js, jquery.ui.selectable.js, jquery.ui.sortable.js, jquery.ui.effect.js, jquery.ui.accordion.js, jquery.ui.autocomplete.js, jquery.ui.button.js, jquery.ui.datepicker.js, jquery.ui.dialog.js, jquery.ui.effect-blind.js, jquery.ui.effect-bounce.js, jquery.ui.effect-clip.js, jquery.ui.effect-drop.js, jquery.ui.effect-explode.js, jquery.ui.effect-fade.js, jquery.ui.effect-fold.js, jquery.ui.effect-highlight.js, jquery.ui.effect-pulsate.js, jquery.ui.effect-scale.js, jquery.ui.effect-shake.js, jquery.ui.effect-slide.js, jquery.ui.effect-transfer.js, jquery.ui.menu.js, jquery.ui.position.js, jquery.ui.progressbar.js, jquery.ui.slider.js, jquery.ui.spinner.js, jquery.ui.tabs.js, jquery.ui.tooltip.js\n* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */\n(function( $, undefined ) {\n\nvar uuid = 0,\n\truniqueId = /^ui-id-\\d+$/;\n\n// $.ui might exist from components with no dependencies, e.g., $.ui.position\n$.ui = $.ui || {};\n\n$.extend( $.ui, {\n\tversion: \"1.10.4\",\n\n\tkeyCode: {\n\t\tBACKSPACE: 8,\n\t\tCOMMA: 188,\n\t\tDELETE: 46,\n\t\tDOWN: 40,\n\t\tEND: 35,\n\t\tENTER: 13,\n\t\tESCAPE: 27,\n\t\tHOME: 36,\n\t\tLEFT: 37,\n\t\tNUMPAD_ADD: 107,\n\t\tNUMPAD_DECIMAL: 110,\n\t\tNUMPAD_DIVIDE: 111,\n\t\tNUMPAD_ENTER: 108,\n\t\tNUMPAD_MULTIPLY: 106,\n\t\tNUMPAD_SUBTRACT: 109,\n\t\tPAGE_DOWN: 34,\n\t\tPAGE_UP: 33,\n\t\tPERIOD: 190,\n\t\tRIGHT: 39,\n\t\tSPACE: 32,\n\t\tTAB: 9,\n\t\tUP: 38\n\t}\n});\n\n// plugins\n$.fn.extend({\n\tfocus: (function( orig ) {\n\t\treturn function( delay, fn ) {\n\t\t\treturn typeof delay === \"number\" ?\n\t\t\t\tthis.each(function() {\n\t\t\t\t\tvar elem = this;\n\t\t\t\t\tsetTimeout(function() {\n\t\t\t\t\t\t$( elem ).focus();\n\t\t\t\t\t\tif ( fn ) {\n\t\t\t\t\t\t\tfn.call( elem );\n\t\t\t\t\t\t}\n\t\t\t\t\t}, delay );\n\t\t\t\t}) :\n\t\t\t\torig.apply( this, arguments );\n\t\t};\n\t})( $.fn.focus ),\n\n\tscrollParent: function() {\n\t\tvar scrollParent;\n\t\tif (($.ui.ie && (/(static|relative)/).test(this.css(\"position\"))) || (/absolute/).test(this.css(\"position\"))) {\n\t\t\tscrollParent = this.parents().filter(function() {\n\t\t\t\treturn (/(relative|absolute|fixed)/).test($.css(this,\"position\")) && (/(auto|scroll)/).test($.css(this,\"overflow\")+$.css(this,\"overflow-y\")+$.css(this,\"overflow-x\"));\n\t\t\t}).eq(0);\n\t\t} else {\n\t\t\tscrollParent = this.parents().filter(function() {\n\t\t\t\treturn (/(auto|scroll)/).test($.css(this,\"overflow\")+$.css(this,\"overflow-y\")+$.css(this,\"overflow-x\"));\n\t\t\t}).eq(0);\n\t\t}\n\n\t\treturn (/fixed/).test(this.css(\"position\")) || !scrollParent.length ? $(document) : scrollParent;\n\t},\n\n\tzIndex: function( zIndex ) {\n\t\tif ( zIndex !== undefined ) {\n\t\t\treturn this.css( \"zIndex\", zIndex );\n\t\t}\n\n\t\tif ( this.length ) {\n\t\t\tvar elem = $( this[ 0 ] ), position, value;\n\t\t\twhile ( elem.length && elem[ 0 ] !== document ) {\n\t\t\t\t// Ignore z-index if position is set to a value where z-index is ignored by the browser\n\t\t\t\t// This makes behavior of this function consistent across browsers\n\t\t\t\t// WebKit always returns auto if the element is positioned\n\t\t\t\tposition = elem.css( \"position\" );\n\t\t\t\tif ( position === \"absolute\" || position === \"relative\" || position === \"fixed\" ) {\n\t\t\t\t\t// IE returns 0 when zIndex is not specified\n\t\t\t\t\t// other browsers return a string\n\t\t\t\t\t// we ignore the case of nested elements with an explicit value of 0\n\t\t\t\t\t// <div style=\"z-index: -10;\"><div style=\"z-index: 0;\"></div></div>\n\t\t\t\t\tvalue = parseInt( elem.css( \"zIndex\" ), 10 );\n\t\t\t\t\tif ( !isNaN( value ) && value !== 0 ) {\n\t\t\t\t\t\treturn value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telem = elem.parent();\n\t\t\t}\n\t\t}\n\n\t\treturn 0;\n\t},\n\n\tuniqueId: function() {\n\t\treturn this.each(function() {\n\t\t\tif ( !this.id ) {\n\t\t\t\tthis.id = \"ui-id-\" + (++uuid);\n\t\t\t}\n\t\t});\n\t},\n\n\tremoveUniqueId: function() {\n\t\treturn this.each(function() {\n\t\t\tif ( runiqueId.test( this.id ) ) {\n\t\t\t\t$( this ).removeAttr( \"id\" );\n\t\t\t}\n\t\t});\n\t}\n});\n\n// selectors\nfunction focusable( element, isTabIndexNotNaN ) {\n\tvar map, mapName, img,\n\t\tnodeName = element.nodeName.toLowerCase();\n\tif ( \"area\" === nodeName ) {\n\t\tmap = element.parentNode;\n\t\tmapName = map.name;\n\t\tif ( !element.href || !mapName || map.nodeName.toLowerCase() !== \"map\" ) {\n\t\t\treturn false;\n\t\t}\n\t\timg = $( \"img[usemap=#\" + mapName + \"]\" )[0];\n\t\treturn !!img && visible( img );\n\t}\n\treturn ( /input|select|textarea|button|object/.test( nodeName ) ?\n\t\t!element.disabled :\n\t\t\"a\" === nodeName ?\n\t\t\telement.href || isTabIndexNotNaN :\n\t\t\tisTabIndexNotNaN) &&\n\t\t// the element and all of its ancestors must be visible\n\t\tvisible( element );\n}\n\nfunction visible( element ) {\n\treturn $.expr.filters.visible( element ) &&\n\t\t!$( element ).parents().addBack().filter(function() {\n\t\t\treturn $.css( this, \"visibility\" ) === \"hidden\";\n\t\t}).length;\n}\n\n$.extend( $.expr[ \":\" ], {\n\tdata: $.expr.createPseudo ?\n\t\t$.expr.createPseudo(function( dataName ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn !!$.data( elem, dataName );\n\t\t\t};\n\t\t}) :\n\t\t// support: jQuery <1.8\n\t\tfunction( elem, i, match ) {\n\t\t\treturn !!$.data( elem, match[ 3 ] );\n\t\t},\n\n\tfocusable: function( element ) {\n\t\treturn focusable( element, !isNaN( $.attr( element, \"tabindex\" ) ) );\n\t},\n\n\ttabbable: function( element ) {\n\t\tvar tabIndex = $.attr( element, \"tabindex\" ),\n\t\t\tisTabIndexNaN = isNaN( tabIndex );\n\t\treturn ( isTabIndexNaN || tabIndex >= 0 ) && focusable( element, !isTabIndexNaN );\n\t}\n});\n\n// support: jQuery <1.8\nif ( !$( \"<a>\" ).outerWidth( 1 ).jquery ) {\n\t$.each( [ \"Width\", \"Height\" ], function( i, name ) {\n\t\tvar side = name === \"Width\" ? [ \"Left\", \"Right\" ] : [ \"Top\", \"Bottom\" ],\n\t\t\ttype = name.toLowerCase(),\n\t\t\torig = {\n\t\t\t\tinnerWidth: $.fn.innerWidth,\n\t\t\t\tinnerHeight: $.fn.innerHeight,\n\t\t\t\touterWidth: $.fn.outerWidth,\n\t\t\t\touterHeight: $.fn.outerHeight\n\t\t\t};\n\n\t\tfunction reduce( elem, size, border, margin ) {\n\t\t\t$.each( side, function() {\n\t\t\t\tsize -= parseFloat( $.css( elem, \"padding\" + this ) ) || 0;\n\t\t\t\tif ( border ) {\n\t\t\t\t\tsize -= parseFloat( $.css( elem, \"border\" + this + \"Width\" ) ) || 0;\n\t\t\t\t}\n\t\t\t\tif ( margin ) {\n\t\t\t\t\tsize -= parseFloat( $.css( elem, \"margin\" + this ) ) || 0;\n\t\t\t\t}\n\t\t\t});\n\t\t\treturn size;\n\t\t}\n\n\t\t$.fn[ \"inner\" + name ] = function( size ) {\n\t\t\tif ( size === undefined ) {\n\t\t\t\treturn orig[ \"inner\" + name ].call( this );\n\t\t\t}\n\n\t\t\treturn this.each(function() {\n\t\t\t\t$( this ).css( type, reduce( this, size ) + \"px\" );\n\t\t\t});\n\t\t};\n\n\t\t$.fn[ \"outer\" + name] = function( size, margin ) {\n\t\t\tif ( typeof size !== \"number\" ) {\n\t\t\t\treturn orig[ \"outer\" + name ].call( this, size );\n\t\t\t}\n\n\t\t\treturn this.each(function() {\n\t\t\t\t$( this).css( type, reduce( this, size, true, margin ) + \"px\" );\n\t\t\t});\n\t\t};\n\t});\n}\n\n// support: jQuery <1.8\nif ( !$.fn.addBack ) {\n\t$.fn.addBack = function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t};\n}\n\n// support: jQuery 1.6.1, 1.6.2 (http://bugs.jquery.com/ticket/9413)\nif ( $( \"<a>\" ).data( \"a-b\", \"a\" ).removeData( \"a-b\" ).data( \"a-b\" ) ) {\n\t$.fn.removeData = (function( removeData ) {\n\t\treturn function( key ) {\n\t\t\tif ( arguments.length ) {\n\t\t\t\treturn removeData.call( this, $.camelCase( key ) );\n\t\t\t} else {\n\t\t\t\treturn removeData.call( this );\n\t\t\t}\n\t\t};\n\t})( $.fn.removeData );\n}\n\n\n\n\n\n// deprecated\n$.ui.ie = !!/msie [\\w.]+/.exec( navigator.userAgent.toLowerCase() );\n\n$.support.selectstart = \"onselectstart\" in document.createElement( \"div\" );\n$.fn.extend({\n\tdisableSelection: function() {\n\t\treturn this.bind( ( $.support.selectstart ? \"selectstart\" : \"mousedown\" ) +\n\t\t\t\".ui-disableSelection\", function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t});\n\t},\n\n\tenableSelection: function() {\n\t\treturn this.unbind( \".ui-disableSelection\" );\n\t}\n});\n\n$.extend( $.ui, {\n\t// $.ui.plugin is deprecated. Use $.widget() extensions instead.\n\tplugin: {\n\t\tadd: function( module, option, set ) {\n\t\t\tvar i,\n\t\t\t\tproto = $.ui[ module ].prototype;\n\t\t\tfor ( i in set ) {\n\t\t\t\tproto.plugins[ i ] = proto.plugins[ i ] || [];\n\t\t\t\tproto.plugins[ i ].push( [ option, set[ i ] ] );\n\t\t\t}\n\t\t},\n\t\tcall: function( instance, name, args ) {\n\t\t\tvar i,\n\t\t\t\tset = instance.plugins[ name ];\n\t\t\tif ( !set || !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tfor ( i = 0; i < set.length; i++ ) {\n\t\t\t\tif ( instance.options[ set[ i ][ 0 ] ] ) {\n\t\t\t\t\tset[ i ][ 1 ].apply( instance.element, args );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// only used by resizable\n\thasScroll: function( el, a ) {\n\n\t\t//If overflow is hidden, the element might have extra content, but the user wants to hide it\n\t\tif ( $( el ).css( \"overflow\" ) === \"hidden\") {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar scroll = ( a && a === \"left\" ) ? \"scrollLeft\" : \"scrollTop\",\n\t\t\thas = false;\n\n\t\tif ( el[ scroll ] > 0 ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// TODO: determine which cases actually cause this to happen\n\t\t// if the element doesn't have the scroll set, see if it's possible to\n\t\t// set the scroll\n\t\tel[ scroll ] = 1;\n\t\thas = ( el[ scroll ] > 0 );\n\t\tel[ scroll ] = 0;\n\t\treturn has;\n\t}\n});\n\n})( jQuery );\n\n(function( $, undefined ) {\n\nvar uuid = 0,\n\tslice = Array.prototype.slice,\n\t_cleanData = $.cleanData;\n$.cleanData = function( elems ) {\n\tfor ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {\n\t\ttry {\n\t\t\t$( elem ).triggerHandler( \"remove\" );\n\t\t// http://bugs.jquery.com/ticket/8235\n\t\t} catch( e ) {}\n\t}\n\t_cleanData( elems );\n};\n\n$.widget = function( name, base, prototype ) {\n\tvar fullName, existingConstructor, constructor, basePrototype,\n\t\t// proxiedPrototype allows the provided prototype to remain unmodified\n\t\t// so that it can be used as a mixin for multiple widgets (#8876)\n\t\tproxiedPrototype = {},\n\t\tnamespace = name.split( \".\" )[ 0 ];\n\n\tname = name.split( \".\" )[ 1 ];\n\tfullName = namespace + \"-\" + name;\n\n\tif ( !prototype ) {\n\t\tprototype = base;\n\t\tbase = $.Widget;\n\t}\n\n\t// create selector for plugin\n\t$.expr[ \":\" ][ fullName.toLowerCase() ] = function( elem ) {\n\t\treturn !!$.data( elem, fullName );\n\t};\n\n\t$[ namespace ] = $[ namespace ] || {};\n\texistingConstructor = $[ namespace ][ name ];\n\tconstructor = $[ namespace ][ name ] = function( options, element ) {\n\t\t// allow instantiation without \"new\" keyword\n\t\tif ( !this._createWidget ) {\n\t\t\treturn new constructor( options, element );\n\t\t}\n\n\t\t// allow instantiation without initializing for simple inheritance\n\t\t// must use \"new\" keyword (the code above always passes args)\n\t\tif ( arguments.length ) {\n\t\t\tthis._createWidget( options, element );\n\t\t}\n\t};\n\t// extend with the existing constructor to carry over any static properties\n\t$.extend( constructor, existingConstructor, {\n\t\tversion: prototype.version,\n\t\t// copy the object used to create the prototype in case we need to\n\t\t// redefine the widget later\n\t\t_proto: $.extend( {}, prototype ),\n\t\t// track widgets that inherit from this widget in case this widget is\n\t\t// redefined after a widget inherits from it\n\t\t_childConstructors: []\n\t});\n\n\tbasePrototype = new base();\n\t// we need to make the options hash a property directly on the new instance\n\t// otherwise we'll modify the options hash on the prototype that we're\n\t// inheriting from\n\tbasePrototype.options = $.widget.extend( {}, basePrototype.options );\n\t$.each( prototype, function( prop, value ) {\n\t\tif ( !$.isFunction( value ) ) {\n\t\t\tproxiedPrototype[ prop ] = value;\n\t\t\treturn;\n\t\t}\n\t\tproxiedPrototype[ prop ] = (function() {\n\t\t\tvar _super = function() {\n\t\t\t\t\treturn base.prototype[ prop ].apply( this, arguments );\n\t\t\t\t},\n\t\t\t\t_superApply = function( args ) {\n\t\t\t\t\treturn base.prototype[ prop ].apply( this, args );\n\t\t\t\t};\n\t\t\treturn function() {\n\t\t\t\tvar __super = this._super,\n\t\t\t\t\t__superApply = this._superApply,\n\t\t\t\t\treturnValue;\n\n\t\t\t\tthis._super = _super;\n\t\t\t\tthis._superApply = _superApply;\n\n\t\t\t\treturnValue = value.apply( this, arguments );\n\n\t\t\t\tthis._super = __super;\n\t\t\t\tthis._superApply = __superApply;\n\n\t\t\t\treturn returnValue;\n\t\t\t};\n\t\t})();\n\t});\n\tconstructor.prototype = $.widget.extend( basePrototype, {\n\t\t// TODO: remove support for widgetEventPrefix\n\t\t// always use the name + a colon as the prefix, e.g., draggable:start\n\t\t// don't prefix for widgets that aren't DOM-based\n\t\twidgetEventPrefix: existingConstructor ? (basePrototype.widgetEventPrefix || name) : name\n\t}, proxiedPrototype, {\n\t\tconstructor: constructor,\n\t\tnamespace: namespace,\n\t\twidgetName: name,\n\t\twidgetFullName: fullName\n\t});\n\n\t// If this widget is being redefined then we need to find all widgets that\n\t// are inheriting from it and redefine all of them so that they inherit from\n\t// the new version of this widget. We're essentially trying to replace one\n\t// level in the prototype chain.\n\tif ( existingConstructor ) {\n\t\t$.each( existingConstructor._childConstructors, function( i, child ) {\n\t\t\tvar childPrototype = child.prototype;\n\n\t\t\t// redefine the child widget using the same prototype that was\n\t\t\t// originally used, but inherit from the new version of the base\n\t\t\t$.widget( childPrototype.namespace + \".\" + childPrototype.widgetName, constructor, child._proto );\n\t\t});\n\t\t// remove the list of existing child constructors from the old constructor\n\t\t// so the old child constructors can be garbage collected\n\t\tdelete existingConstructor._childConstructors;\n\t} else {\n\t\tbase._childConstructors.push( constructor );\n\t}\n\n\t$.widget.bridge( name, constructor );\n};\n\n$.widget.extend = function( target ) {\n\tvar input = slice.call( arguments, 1 ),\n\t\tinputIndex = 0,\n\t\tinputLength = input.length,\n\t\tkey,\n\t\tvalue;\n\tfor ( ; inputIndex < inputLength; inputIndex++ ) {\n\t\tfor ( key in input[ inputIndex ] ) {\n\t\t\tvalue = input[ inputIndex ][ key ];\n\t\t\tif ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {\n\t\t\t\t// Clone objects\n\t\t\t\tif ( $.isPlainObject( value ) ) {\n\t\t\t\t\ttarget[ key ] = $.isPlainObject( target[ key ] ) ?\n\t\t\t\t\t\t$.widget.extend( {}, target[ key ], value ) :\n\t\t\t\t\t\t// Don't extend strings, arrays, etc. with objects\n\t\t\t\t\t\t$.widget.extend( {}, value );\n\t\t\t\t// Copy everything else by reference\n\t\t\t\t} else {\n\t\t\t\t\ttarget[ key ] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn target;\n};\n\n$.widget.bridge = function( name, object ) {\n\tvar fullName = object.prototype.widgetFullName || name;\n\t$.fn[ name ] = function( options ) {\n\t\tvar isMethodCall = typeof options === \"string\",\n\t\t\targs = slice.call( arguments, 1 ),\n\t\t\treturnValue = this;\n\n\t\t// allow multiple hashes to be passed on init\n\t\toptions = !isMethodCall && args.length ?\n\t\t\t$.widget.extend.apply( null, [ options ].concat(args) ) :\n\t\t\toptions;\n\n\t\tif ( isMethodCall ) {\n\t\t\tthis.each(function() {\n\t\t\t\tvar methodValue,\n\t\t\t\t\tinstance = $.data( this, fullName );\n\t\t\t\tif ( !instance ) {\n\t\t\t\t\treturn $.error( \"cannot call methods on \" + name + \" prior to initialization; \" +\n\t\t\t\t\t\t\"attempted to call method '\" + options + \"'\" );\n\t\t\t\t}\n\t\t\t\tif ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === \"_\" ) {\n\t\t\t\t\treturn $.error( \"no such method '\" + options + \"' for \" + name + \" widget instance\" );\n\t\t\t\t}\n\t\t\t\tmethodValue = instance[ options ].apply( instance, args );\n\t\t\t\tif ( methodValue !== instance && methodValue !== undefined ) {\n\t\t\t\t\treturnValue = methodValue && methodValue.jquery ?\n\t\t\t\t\t\treturnValue.pushStack( methodValue.get() ) :\n\t\t\t\t\t\tmethodValue;\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tthis.each(function() {\n\t\t\t\tvar instance = $.data( this, fullName );\n\t\t\t\tif ( instance ) {\n\t\t\t\t\tinstance.option( options || {} )._init();\n\t\t\t\t} else {\n\t\t\t\t\t$.data( this, fullName, new object( options, this ) );\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\treturn returnValue;\n\t};\n};\n\n$.Widget = function( /* options, element */ ) {};\n$.Widget._childConstructors = [];\n\n$.Widget.prototype = {\n\twidgetName: \"widget\",\n\twidgetEventPrefix: \"\",\n\tdefaultElement: \"<div>\",\n\toptions: {\n\t\tdisabled: false,\n\n\t\t// callbacks\n\t\tcreate: null\n\t},\n\t_createWidget: function( options, element ) {\n\t\telement = $( element || this.defaultElement || this )[ 0 ];\n\t\tthis.element = $( element );\n\t\tthis.uuid = uuid++;\n\t\tthis.eventNamespace = \".\" + this.widgetName + this.uuid;\n\t\tthis.options = $.widget.extend( {},\n\t\t\tthis.options,\n\t\t\tthis._getCreateOptions(),\n\t\t\toptions );\n\n\t\tthis.bindings = $();\n\t\tthis.hoverable = $();\n\t\tthis.focusable = $();\n\n\t\tif ( element !== this ) {\n\t\t\t$.data( element, this.widgetFullName, this );\n\t\t\tthis._on( true, this.element, {\n\t\t\t\tremove: function( event ) {\n\t\t\t\t\tif ( event.target === element ) {\n\t\t\t\t\t\tthis.destroy();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t\t\tthis.document = $( element.style ?\n\t\t\t\t// element within the document\n\t\t\t\telement.ownerDocument :\n\t\t\t\t// element is window or document\n\t\t\t\telement.document || element );\n\t\t\tthis.window = $( this.document[0].defaultView || this.document[0].parentWindow );\n\t\t}\n\n\t\tthis._create();\n\t\tthis._trigger( \"create\", null, this._getCreateEventData() );\n\t\tthis._init();\n\t},\n\t_getCreateOptions: $.noop,\n\t_getCreateEventData: $.noop,\n\t_create: $.noop,\n\t_init: $.noop,\n\n\tdestroy: function() {\n\t\tthis._destroy();\n\t\t// we can probably remove the unbind calls in 2.0\n\t\t// all event bindings should go through this._on()\n\t\tthis.element\n\t\t\t.unbind( this.eventNamespace )\n\t\t\t// 1.9 BC for #7810\n\t\t\t// TODO remove dual storage\n\t\t\t.removeData( this.widgetName )\n\t\t\t.removeData( this.widgetFullName )\n\t\t\t// support: jquery <1.6.3\n\t\t\t// http://bugs.jquery.com/ticket/9413\n\t\t\t.removeData( $.camelCase( this.widgetFullName ) );\n\t\tthis.widget()\n\t\t\t.unbind( this.eventNamespace )\n\t\t\t.removeAttr( \"aria-disabled\" )\n\t\t\t.removeClass(\n\t\t\t\tthis.widgetFullName + \"-disabled \" +\n\t\t\t\t\"ui-state-disabled\" );\n\n\t\t// clean up events and states\n\t\tthis.bindings.unbind( this.eventNamespace );\n\t\tthis.hoverable.removeClass( \"ui-state-hover\" );\n\t\tthis.focusable.removeClass( \"ui-state-focus\" );\n\t},\n\t_destroy: $.noop,\n\n\twidget: function() {\n\t\treturn this.element;\n\t},\n\n\toption: function( key, value ) {\n\t\tvar options = key,\n\t\t\tparts,\n\t\t\tcurOption,\n\t\t\ti;\n\n\t\tif ( arguments.length === 0 ) {\n\t\t\t// don't return a reference to the internal hash\n\t\t\treturn $.widget.extend( {}, this.options );\n\t\t}\n\n\t\tif ( typeof key === \"string\" ) {\n\t\t\t// handle nested keys, e.g., \"foo.bar\" => { foo: { bar: ___ } }\n\t\t\toptions = {};\n\t\t\tparts = key.split( \".\" );\n\t\t\tkey = parts.shift();\n\t\t\tif ( parts.length ) {\n\t\t\t\tcurOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );\n\t\t\t\tfor ( i = 0; i < parts.length - 1; i++ ) {\n\t\t\t\t\tcurOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};\n\t\t\t\t\tcurOption = curOption[ parts[ i ] ];\n\t\t\t\t}\n\t\t\t\tkey = parts.pop();\n\t\t\t\tif ( arguments.length === 1 ) {\n\t\t\t\t\treturn curOption[ key ] === undefined ? null : curOption[ key ];\n\t\t\t\t}\n\t\t\t\tcurOption[ key ] = value;\n\t\t\t} else {\n\t\t\t\tif ( arguments.length === 1 ) {\n\t\t\t\t\treturn this.options[ key ] === undefined ? null : this.options[ key ];\n\t\t\t\t}\n\t\t\t\toptions[ key ] = value;\n\t\t\t}\n\t\t}\n\n\t\tthis._setOptions( options );\n\n\t\treturn this;\n\t},\n\t_setOptions: function( options ) {\n\t\tvar key;\n\n\t\tfor ( key in options ) {\n\t\t\tthis._setOption( key, options[ key ] );\n\t\t}\n\n\t\treturn this;\n\t},\n\t_setOption: function( key, value ) {\n\t\tthis.options[ key ] = value;\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.widget()\n\t\t\t\t.toggleClass( this.widgetFullName + \"-disabled ui-state-disabled\", !!value )\n\t\t\t\t.attr( \"aria-disabled\", value );\n\t\t\tthis.hoverable.removeClass( \"ui-state-hover\" );\n\t\t\tthis.focusable.removeClass( \"ui-state-focus\" );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tenable: function() {\n\t\treturn this._setOption( \"disabled\", false );\n\t},\n\tdisable: function() {\n\t\treturn this._setOption( \"disabled\", true );\n\t},\n\n\t_on: function( suppressDisabledCheck, element, handlers ) {\n\t\tvar delegateElement,\n\t\t\tinstance = this;\n\n\t\t// no suppressDisabledCheck flag, shuffle arguments\n\t\tif ( typeof suppressDisabledCheck !== \"boolean\" ) {\n\t\t\thandlers = element;\n\t\t\telement = suppressDisabledCheck;\n\t\t\tsuppressDisabledCheck = false;\n\t\t}\n\n\t\t// no element argument, shuffle and use this.element\n\t\tif ( !handlers ) {\n\t\t\thandlers = element;\n\t\t\telement = this.element;\n\t\t\tdelegateElement = this.widget();\n\t\t} else {\n\t\t\t// accept selectors, DOM elements\n\t\t\telement = delegateElement = $( element );\n\t\t\tthis.bindings = this.bindings.add( element );\n\t\t}\n\n\t\t$.each( handlers, function( event, handler ) {\n\t\t\tfunction handlerProxy() {\n\t\t\t\t// allow widgets to customize the disabled handling\n\t\t\t\t// - disabled as an array instead of boolean\n\t\t\t\t// - disabled class as method for disabling individual parts\n\t\t\t\tif ( !suppressDisabledCheck &&\n\t\t\t\t\t\t( instance.options.disabled === true ||\n\t\t\t\t\t\t\t$( this ).hasClass( \"ui-state-disabled\" ) ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\treturn ( typeof handler === \"string\" ? instance[ handler ] : handler )\n\t\t\t\t\t.apply( instance, arguments );\n\t\t\t}\n\n\t\t\t// copy the guid so direct unbinding works\n\t\t\tif ( typeof handler !== \"string\" ) {\n\t\t\t\thandlerProxy.guid = handler.guid =\n\t\t\t\t\thandler.guid || handlerProxy.guid || $.guid++;\n\t\t\t}\n\n\t\t\tvar match = event.match( /^(\\w+)\\s*(.*)$/ ),\n\t\t\t\teventName = match[1] + instance.eventNamespace,\n\t\t\t\tselector = match[2];\n\t\t\tif ( selector ) {\n\t\t\t\tdelegateElement.delegate( selector, eventName, handlerProxy );\n\t\t\t} else {\n\t\t\t\telement.bind( eventName, handlerProxy );\n\t\t\t}\n\t\t});\n\t},\n\n\t_off: function( element, eventName ) {\n\t\teventName = (eventName || \"\").split( \" \" ).join( this.eventNamespace + \" \" ) + this.eventNamespace;\n\t\telement.unbind( eventName ).undelegate( eventName );\n\t},\n\n\t_delay: function( handler, delay ) {\n\t\tfunction handlerProxy() {\n\t\t\treturn ( typeof handler === \"string\" ? instance[ handler ] : handler )\n\t\t\t\t.apply( instance, arguments );\n\t\t}\n\t\tvar instance = this;\n\t\treturn setTimeout( handlerProxy, delay || 0 );\n\t},\n\n\t_hoverable: function( element ) {\n\t\tthis.hoverable = this.hoverable.add( element );\n\t\tthis._on( element, {\n\t\t\tmouseenter: function( event ) {\n\t\t\t\t$( event.currentTarget ).addClass( \"ui-state-hover\" );\n\t\t\t},\n\t\t\tmouseleave: function( event ) {\n\t\t\t\t$( event.currentTarget ).removeClass( \"ui-state-hover\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_focusable: function( element ) {\n\t\tthis.focusable = this.focusable.add( element );\n\t\tthis._on( element, {\n\t\t\tfocusin: function( event ) {\n\t\t\t\t$( event.currentTarget ).addClass( \"ui-state-focus\" );\n\t\t\t},\n\t\t\tfocusout: function( event ) {\n\t\t\t\t$( event.currentTarget ).removeClass( \"ui-state-focus\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_trigger: function( type, event, data ) {\n\t\tvar prop, orig,\n\t\t\tcallback = this.options[ type ];\n\n\t\tdata = data || {};\n\t\tevent = $.Event( event );\n\t\tevent.type = ( type === this.widgetEventPrefix ?\n\t\t\ttype :\n\t\t\tthis.widgetEventPrefix + type ).toLowerCase();\n\t\t// the original event may come from any element\n\t\t// so we need to reset the target on the new event\n\t\tevent.target = this.element[ 0 ];\n\n\t\t// copy original event properties over to the new event\n\t\torig = event.originalEvent;\n\t\tif ( orig ) {\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tif ( !( prop in event ) ) {\n\t\t\t\t\tevent[ prop ] = orig[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.element.trigger( event, data );\n\t\treturn !( $.isFunction( callback ) &&\n\t\t\tcallback.apply( this.element[0], [ event ].concat( data ) ) === false ||\n\t\t\tevent.isDefaultPrevented() );\n\t}\n};\n\n$.each( { show: \"fadeIn\", hide: \"fadeOut\" }, function( method, defaultEffect ) {\n\t$.Widget.prototype[ \"_\" + method ] = function( element, options, callback ) {\n\t\tif ( typeof options === \"string\" ) {\n\t\t\toptions = { effect: options };\n\t\t}\n\t\tvar hasOptions,\n\t\t\teffectName = !options ?\n\t\t\t\tmethod :\n\t\t\t\toptions === true || typeof options === \"number\" ?\n\t\t\t\t\tdefaultEffect :\n\t\t\t\t\toptions.effect || defaultEffect;\n\t\toptions = options || {};\n\t\tif ( typeof options === \"number\" ) {\n\t\t\toptions = { duration: options };\n\t\t}\n\t\thasOptions = !$.isEmptyObject( options );\n\t\toptions.complete = callback;\n\t\tif ( options.delay ) {\n\t\t\telement.delay( options.delay );\n\t\t}\n\t\tif ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {\n\t\t\telement[ method ]( options );\n\t\t} else if ( effectName !== method && element[ effectName ] ) {\n\t\t\telement[ effectName ]( options.duration, options.easing, callback );\n\t\t} else {\n\t\t\telement.queue(function( next ) {\n\t\t\t\t$( this )[ method ]();\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback.call( element[ 0 ] );\n\t\t\t\t}\n\t\t\t\tnext();\n\t\t\t});\n\t\t}\n\t};\n});\n\n})( jQuery );\n\n(function( $, undefined ) {\n\nvar mouseHandled = false;\n$( document ).mouseup( function() {\n\tmouseHandled = false;\n});\n\n$.widget(\"ui.mouse\", {\n\tversion: \"1.10.4\",\n\toptions: {\n\t\tcancel: \"input,textarea,button,select,option\",\n\t\tdistance: 1,\n\t\tdelay: 0\n\t},\n\t_mouseInit: function() {\n\t\tvar that = this;\n\n\t\tthis.element\n\t\t\t.bind(\"mousedown.\"+this.widgetName, function(event) {\n\t\t\t\treturn that._mouseDown(event);\n\t\t\t})\n\t\t\t.bind(\"click.\"+this.widgetName, function(event) {\n\t\t\t\tif (true === $.data(event.target, that.widgetName + \".preventClickEvent\")) {\n\t\t\t\t\t$.removeData(event.target, that.widgetName + \".preventClickEvent\");\n\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t});\n\n\t\tthis.started = false;\n\t},\n\n\t// TODO: make sure destroying one instance of mouse doesn't mess with\n\t// other instances of mouse\n\t_mouseDestroy: function() {\n\t\tthis.element.unbind(\".\"+this.widgetName);\n\t\tif ( this._mouseMoveDelegate ) {\n\t\t\t$(document)\n\t\t\t\t.unbind(\"mousemove.\"+this.widgetName, this._mouseMoveDelegate)\n\t\t\t\t.unbind(\"mouseup.\"+this.widgetName, this._mouseUpDelegate);\n\t\t}\n\t},\n\n\t_mouseDown: function(event) {\n\t\t// don't let more than one widget handle mouseStart\n\t\tif( mouseHandled ) { return; }\n\n\t\t// we may have missed mouseup (out of window)\n\t\t(this._mouseStarted && this._mouseUp(event));\n\n\t\tthis._mouseDownEvent = event;\n\n\t\tvar that = this,\n\t\t\tbtnIsLeft = (event.which === 1),\n\t\t\t// event.target.nodeName works around a bug in IE 8 with\n\t\t\t// disabled inputs (#7620)\n\t\t\telIsCancel = (typeof this.options.cancel === \"string\" && event.target.nodeName ? $(event.target).closest(this.options.cancel).length : false);\n\t\tif (!btnIsLeft || elIsCancel || !this._mouseCapture(event)) {\n\t\t\treturn true;\n\t\t}\n\n\t\tthis.mouseDelayMet = !this.options.delay;\n\t\tif (!this.mouseDelayMet) {\n\t\t\tthis._mouseDelayTimer = setTimeout(function() {\n\t\t\t\tthat.mouseDelayMet = true;\n\t\t\t}, this.options.delay);\n\t\t}\n\n\t\tif (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) {\n\t\t\tthis._mouseStarted = (this._mouseStart(event) !== false);\n\t\t\tif (!this._mouseStarted) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t// Click event may never have fired (Gecko & Opera)\n\t\tif (true === $.data(event.target, this.widgetName + \".preventClickEvent\")) {\n\t\t\t$.removeData(event.target, this.widgetName + \".preventClickEvent\");\n\t\t}\n\n\t\t// these delegates are required to keep context\n\t\tthis._mouseMoveDelegate = function(event) {\n\t\t\treturn that._mouseMove(event);\n\t\t};\n\t\tthis._mouseUpDelegate = function(event) {\n\t\t\treturn that._mouseUp(event);\n\t\t};\n\t\t$(document)\n\t\t\t.bind(\"mousemove.\"+this.widgetName, this._mouseMoveDelegate)\n\t\t\t.bind(\"mouseup.\"+this.widgetName, this._mouseUpDelegate);\n\n\t\tevent.preventDefault();\n\n\t\tmouseHandled = true;\n\t\treturn true;\n\t},\n\n\t_mouseMove: function(event) {\n\t\t// IE mouseup check - mouseup happened when mouse was out of window\n\t\tif ($.ui.ie && ( !document.documentMode || document.documentMode < 9 ) && !event.button) {\n\t\t\treturn this._mouseUp(event);\n\t\t}\n\n\t\tif (this._mouseStarted) {\n\t\t\tthis._mouseDrag(event);\n\t\t\treturn event.preventDefault();\n\t\t}\n\n\t\tif (this._mouseDistanceMet(event) && this._mouseDelayMet(event)) {\n\t\t\tthis._mouseStarted =\n\t\t\t\t(this._mouseStart(this._mouseDownEvent, event) !== false);\n\t\t\t(this._mouseStarted ? this._mouseDrag(event) : this._mouseUp(event));\n\t\t}\n\n\t\treturn !this._mouseStarted;\n\t},\n\n\t_mouseUp: function(event) {\n\t\t$(document)\n\t\t\t.unbind(\"mousemove.\"+this.widgetName, this._mouseMoveDelegate)\n\t\t\t.unbind(\"mouseup.\"+this.widgetName, this._mouseUpDelegate);\n\n\t\tif (this._mouseStarted) {\n\t\t\tthis._mouseStarted = false;\n\n\t\t\tif (event.target === this._mouseDownEvent.target) {\n\t\t\t\t$.data(event.target, this.widgetName + \".preventClickEvent\", true);\n\t\t\t}\n\n\t\t\tthis._mouseStop(event);\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_mouseDistanceMet: function(event) {\n\t\treturn (Math.max(\n\t\t\t\tMath.abs(this._mouseDownEvent.pageX - event.pageX),\n\t\t\t\tMath.abs(this._mouseDownEvent.pageY - event.pageY)\n\t\t\t) >= this.options.distance\n\t\t);\n\t},\n\n\t_mouseDelayMet: function(/* event */) {\n\t\treturn this.mouseDelayMet;\n\t},\n\n\t// These are placeholder methods, to be overriden by extending plugin\n\t_mouseStart: function(/* event */) {},\n\t_mouseDrag: function(/* event */) {},\n\t_mouseStop: function(/* event */) {},\n\t_mouseCapture: function(/* event */) { return true; }\n});\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.widget(\"ui.draggable\", $.ui.mouse, {\n\tversion: \"1.10.4\",\n\twidgetEventPrefix: \"drag\",\n\toptions: {\n\t\taddClasses: true,\n\t\tappendTo: \"parent\",\n\t\taxis: false,\n\t\tconnectToSortable: false,\n\t\tcontainment: false,\n\t\tcursor: \"auto\",\n\t\tcursorAt: false,\n\t\tgrid: false,\n\t\thandle: false,\n\t\thelper: \"original\",\n\t\tiframeFix: false,\n\t\topacity: false,\n\t\trefreshPositions: false,\n\t\trevert: false,\n\t\trevertDuration: 500,\n\t\tscope: \"default\",\n\t\tscroll: true,\n\t\tscrollSensitivity: 20,\n\t\tscrollSpeed: 20,\n\t\tsnap: false,\n\t\tsnapMode: \"both\",\n\t\tsnapTolerance: 20,\n\t\tstack: false,\n\t\tzIndex: false,\n\n\t\t// callbacks\n\t\tdrag: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\t_create: function() {\n\n\t\tif (this.options.helper === \"original\" && !(/^(?:r|a|f)/).test(this.element.css(\"position\"))) {\n\t\t\tthis.element[0].style.position = \"relative\";\n\t\t}\n\t\tif (this.options.addClasses){\n\t\t\tthis.element.addClass(\"ui-draggable\");\n\t\t}\n\t\tif (this.options.disabled){\n\t\t\tthis.element.addClass(\"ui-draggable-disabled\");\n\t\t}\n\n\t\tthis._mouseInit();\n\n\t},\n\n\t_destroy: function() {\n\t\tthis.element.removeClass( \"ui-draggable ui-draggable-dragging ui-draggable-disabled\" );\n\t\tthis._mouseDestroy();\n\t},\n\n\t_mouseCapture: function(event) {\n\n\t\tvar o = this.options;\n\n\t\t// among others, prevent a drag on a resizable-handle\n\t\tif (this.helper || o.disabled || $(event.target).closest(\".ui-resizable-handle\").length > 0) {\n\t\t\treturn false;\n\t\t}\n\n\t\t//Quit if we're not on a valid handle\n\t\tthis.handle = this._getHandle(event);\n\t\tif (!this.handle) {\n\t\t\treturn false;\n\t\t}\n\n\t\t$(o.iframeFix === true ? \"iframe\" : o.iframeFix).each(function() {\n\t\t\t$(\"<div class='ui-draggable-iframeFix' style='background: #fff;'></div>\")\n\t\t\t.css({\n\t\t\t\twidth: this.offsetWidth+\"px\", height: this.offsetHeight+\"px\",\n\t\t\t\tposition: \"absolute\", opacity: \"0.001\", zIndex: 1000\n\t\t\t})\n\t\t\t.css($(this).offset())\n\t\t\t.appendTo(\"body\");\n\t\t});\n\n\t\treturn true;\n\n\t},\n\n\t_mouseStart: function(event) {\n\n\t\tvar o = this.options;\n\n\t\t//Create and append the visible helper\n\t\tthis.helper = this._createHelper(event);\n\n\t\tthis.helper.addClass(\"ui-draggable-dragging\");\n\n\t\t//Cache the helper size\n\t\tthis._cacheHelperProportions();\n\n\t\t//If ddmanager is used for droppables, set the global draggable\n\t\tif($.ui.ddmanager) {\n\t\t\t$.ui.ddmanager.current = this;\n\t\t}\n\n\t\t/*\n\t\t * - Position generation -\n\t\t * This block generates everything position related - it's the core of draggables.\n\t\t */\n\n\t\t//Cache the margins of the original element\n\t\tthis._cacheMargins();\n\n\t\t//Store the helper's css position\n\t\tthis.cssPosition = this.helper.css( \"position\" );\n\t\tthis.scrollParent = this.helper.scrollParent();\n\t\tthis.offsetParent = this.helper.offsetParent();\n\t\tthis.offsetParentCssPosition = this.offsetParent.css( \"position\" );\n\n\t\t//The element's absolute position on the page minus margins\n\t\tthis.offset = this.positionAbs = this.element.offset();\n\t\tthis.offset = {\n\t\t\ttop: this.offset.top - this.margins.top,\n\t\t\tleft: this.offset.left - this.margins.left\n\t\t};\n\n\t\t//Reset scroll cache\n\t\tthis.offset.scroll = false;\n\n\t\t$.extend(this.offset, {\n\t\t\tclick: { //Where the click happened, relative to the element\n\t\t\t\tleft: event.pageX - this.offset.left,\n\t\t\t\ttop: event.pageY - this.offset.top\n\t\t\t},\n\t\t\tparent: this._getParentOffset(),\n\t\t\trelative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper\n\t\t});\n\n\t\t//Generate the original position\n\t\tthis.originalPosition = this.position = this._generatePosition(event);\n\t\tthis.originalPageX = event.pageX;\n\t\tthis.originalPageY = event.pageY;\n\n\t\t//Adjust the mouse offset relative to the helper if \"cursorAt\" is supplied\n\t\t(o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt));\n\n\t\t//Set a containment if given in the options\n\t\tthis._setContainment();\n\n\t\t//Trigger event + callbacks\n\t\tif(this._trigger(\"start\", event) === false) {\n\t\t\tthis._clear();\n\t\t\treturn false;\n\t\t}\n\n\t\t//Recache the helper size\n\t\tthis._cacheHelperProportions();\n\n\t\t//Prepare the droppable offsets\n\t\tif ($.ui.ddmanager && !o.dropBehaviour) {\n\t\t\t$.ui.ddmanager.prepareOffsets(this, event);\n\t\t}\n\n\n\t\tthis._mouseDrag(event, true); //Execute the drag once - this causes the helper not to be visible before getting its correct position\n\n\t\t//If the ddmanager is used for droppables, inform the manager that dragging has started (see #5003)\n\t\tif ( $.ui.ddmanager ) {\n\t\t\t$.ui.ddmanager.dragStart(this, event);\n\t\t}\n\n\t\treturn true;\n\t},\n\n\t_mouseDrag: function(event, noPropagation) {\n\t\t// reset any necessary cached properties (see #5009)\n\t\tif ( this.offsetParentCssPosition === \"fixed\" ) {\n\t\t\tthis.offset.parent = this._getParentOffset();\n\t\t}\n\n\t\t//Compute the helpers position\n\t\tthis.position = this._generatePosition(event);\n\t\tthis.positionAbs = this._convertPositionTo(\"absolute\");\n\n\t\t//Call plugins and callbacks and use the resulting position if something is returned\n\t\tif (!noPropagation) {\n\t\t\tvar ui = this._uiHash();\n\t\t\tif(this._trigger(\"drag\", event, ui) === false) {\n\t\t\t\tthis._mouseUp({});\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tthis.position = ui.position;\n\t\t}\n\n\t\tif(!this.options.axis || this.options.axis !== \"y\") {\n\t\t\tthis.helper[0].style.left = this.position.left+\"px\";\n\t\t}\n\t\tif(!this.options.axis || this.options.axis !== \"x\") {\n\t\t\tthis.helper[0].style.top = this.position.top+\"px\";\n\t\t}\n\t\tif($.ui.ddmanager) {\n\t\t\t$.ui.ddmanager.drag(this, event);\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function(event) {\n\n\t\t//If we are using droppables, inform the manager about the drop\n\t\tvar that = this,\n\t\t\tdropped = false;\n\t\tif ($.ui.ddmanager && !this.options.dropBehaviour) {\n\t\t\tdropped = $.ui.ddmanager.drop(this, event);\n\t\t}\n\n\t\t//if a drop comes from outside (a sortable)\n\t\tif(this.dropped) {\n\t\t\tdropped = this.dropped;\n\t\t\tthis.dropped = false;\n\t\t}\n\n\t\t//if the original element is no longer in the DOM don't bother to continue (see #8269)\n\t\tif ( this.options.helper === \"original\" && !$.contains( this.element[ 0 ].ownerDocument, this.element[ 0 ] ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif((this.options.revert === \"invalid\" && !dropped) || (this.options.revert === \"valid\" && dropped) || this.options.revert === true || ($.isFunction(this.options.revert) && this.options.revert.call(this.element, dropped))) {\n\t\t\t$(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10), function() {\n\t\t\t\tif(that._trigger(\"stop\", event) !== false) {\n\t\t\t\t\tthat._clear();\n\t\t\t\t}\n\t\t\t});\n\t\t} else {\n\t\t\tif(this._trigger(\"stop\", event) !== false) {\n\t\t\t\tthis._clear();\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_mouseUp: function(event) {\n\t\t//Remove frame helpers\n\t\t$(\"div.ui-draggable-iframeFix\").each(function() {\n\t\t\tthis.parentNode.removeChild(this);\n\t\t});\n\n\t\t//If the ddmanager is used for droppables, inform the manager that dragging has stopped (see #5003)\n\t\tif( $.ui.ddmanager ) {\n\t\t\t$.ui.ddmanager.dragStop(this, event);\n\t\t}\n\n\t\treturn $.ui.mouse.prototype._mouseUp.call(this, event);\n\t},\n\n\tcancel: function() {\n\n\t\tif(this.helper.is(\".ui-draggable-dragging\")) {\n\t\t\tthis._mouseUp({});\n\t\t} else {\n\t\t\tthis._clear();\n\t\t}\n\n\t\treturn this;\n\n\t},\n\n\t_getHandle: function(event) {\n\t\treturn this.options.handle ?\n\t\t\t!!$( event.target ).closest( this.element.find( this.options.handle ) ).length :\n\t\t\ttrue;\n\t},\n\n\t_createHelper: function(event) {\n\n\t\tvar o = this.options,\n\t\t\thelper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event])) : (o.helper === \"clone\" ? this.element.clone().removeAttr(\"id\") : this.element);\n\n\t\tif(!helper.parents(\"body\").length) {\n\t\t\thelper.appendTo((o.appendTo === \"parent\" ? this.element[0].parentNode : o.appendTo));\n\t\t}\n\n\t\tif(helper[0] !== this.element[0] && !(/(fixed|absolute)/).test(helper.css(\"position\"))) {\n\t\t\thelper.css(\"position\", \"absolute\");\n\t\t}\n\n\t\treturn helper;\n\n\t},\n\n\t_adjustOffsetFromHelper: function(obj) {\n\t\tif (typeof obj === \"string\") {\n\t\t\tobj = obj.split(\" \");\n\t\t}\n\t\tif ($.isArray(obj)) {\n\t\t\tobj = {left: +obj[0], top: +obj[1] || 0};\n\t\t}\n\t\tif (\"left\" in obj) {\n\t\t\tthis.offset.click.left = obj.left + this.margins.left;\n\t\t}\n\t\tif (\"right\" in obj) {\n\t\t\tthis.offset.click.left = this.helperProportions.width - obj.right + this.margins.left;\n\t\t}\n\t\tif (\"top\" in obj) {\n\t\t\tthis.offset.click.top = obj.top + this.margins.top;\n\t\t}\n\t\tif (\"bottom\" in obj) {\n\t\t\tthis.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top;\n\t\t}\n\t},\n\n\t_getParentOffset: function() {\n\n\t\t//Get the offsetParent and cache its position\n\t\tvar po = this.offsetParent.offset();\n\n\t\t// This is a special case where we need to modify a offset calculated on start, since the following happened:\n\t\t// 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent\n\t\t// 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that\n\t\t//    the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag\n\t\tif(this.cssPosition === \"absolute\" && this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) {\n\t\t\tpo.left += this.scrollParent.scrollLeft();\n\t\t\tpo.top += this.scrollParent.scrollTop();\n\t\t}\n\n\t\t//This needs to be actually done for all browsers, since pageX/pageY includes this information\n\t\t//Ugly IE fix\n\t\tif((this.offsetParent[0] === document.body) ||\n\t\t\t(this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() === \"html\" && $.ui.ie)) {\n\t\t\tpo = { top: 0, left: 0 };\n\t\t}\n\n\t\treturn {\n\t\t\ttop: po.top + (parseInt(this.offsetParent.css(\"borderTopWidth\"),10) || 0),\n\t\t\tleft: po.left + (parseInt(this.offsetParent.css(\"borderLeftWidth\"),10) || 0)\n\t\t};\n\n\t},\n\n\t_getRelativeOffset: function() {\n\n\t\tif(this.cssPosition === \"relative\") {\n\t\t\tvar p = this.element.position();\n\t\t\treturn {\n\t\t\t\ttop: p.top - (parseInt(this.helper.css(\"top\"),10) || 0) + this.scrollParent.scrollTop(),\n\t\t\t\tleft: p.left - (parseInt(this.helper.css(\"left\"),10) || 0) + this.scrollParent.scrollLeft()\n\t\t\t};\n\t\t} else {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t},\n\n\t_cacheMargins: function() {\n\t\tthis.margins = {\n\t\t\tleft: (parseInt(this.element.css(\"marginLeft\"),10) || 0),\n\t\t\ttop: (parseInt(this.element.css(\"marginTop\"),10) || 0),\n\t\t\tright: (parseInt(this.element.css(\"marginRight\"),10) || 0),\n\t\t\tbottom: (parseInt(this.element.css(\"marginBottom\"),10) || 0)\n\t\t};\n\t},\n\n\t_cacheHelperProportions: function() {\n\t\tthis.helperProportions = {\n\t\t\twidth: this.helper.outerWidth(),\n\t\t\theight: this.helper.outerHeight()\n\t\t};\n\t},\n\n\t_setContainment: function() {\n\n\t\tvar over, c, ce,\n\t\t\to = this.options;\n\n\t\tif ( !o.containment ) {\n\t\t\tthis.containment = null;\n\t\t\treturn;\n\t\t}\n\n\t\tif ( o.containment === \"window\" ) {\n\t\t\tthis.containment = [\n\t\t\t\t$( window ).scrollLeft() - this.offset.relative.left - this.offset.parent.left,\n\t\t\t\t$( window ).scrollTop() - this.offset.relative.top - this.offset.parent.top,\n\t\t\t\t$( window ).scrollLeft() + $( window ).width() - this.helperProportions.width - this.margins.left,\n\t\t\t\t$( window ).scrollTop() + ( $( window ).height() || document.body.parentNode.scrollHeight ) - this.helperProportions.height - this.margins.top\n\t\t\t];\n\t\t\treturn;\n\t\t}\n\n\t\tif ( o.containment === \"document\") {\n\t\t\tthis.containment = [\n\t\t\t\t0,\n\t\t\t\t0,\n\t\t\t\t$( document ).width() - this.helperProportions.width - this.margins.left,\n\t\t\t\t( $( document ).height() || document.body.parentNode.scrollHeight ) - this.helperProportions.height - this.margins.top\n\t\t\t];\n\t\t\treturn;\n\t\t}\n\n\t\tif ( o.containment.constructor === Array ) {\n\t\t\tthis.containment = o.containment;\n\t\t\treturn;\n\t\t}\n\n\t\tif ( o.containment === \"parent\" ) {\n\t\t\to.containment = this.helper[ 0 ].parentNode;\n\t\t}\n\n\t\tc = $( o.containment );\n\t\tce = c[ 0 ];\n\n\t\tif( !ce ) {\n\t\t\treturn;\n\t\t}\n\n\t\tover = c.css( \"overflow\" ) !== \"hidden\";\n\n\t\tthis.containment = [\n\t\t\t( parseInt( c.css( \"borderLeftWidth\" ), 10 ) || 0 ) + ( parseInt( c.css( \"paddingLeft\" ), 10 ) || 0 ),\n\t\t\t( parseInt( c.css( \"borderTopWidth\" ), 10 ) || 0 ) + ( parseInt( c.css( \"paddingTop\" ), 10 ) || 0 ) ,\n\t\t\t( over ? Math.max( ce.scrollWidth, ce.offsetWidth ) : ce.offsetWidth ) - ( parseInt( c.css( \"borderRightWidth\" ), 10 ) || 0 ) - ( parseInt( c.css( \"paddingRight\" ), 10 ) || 0 ) - this.helperProportions.width - this.margins.left - this.margins.right,\n\t\t\t( over ? Math.max( ce.scrollHeight, ce.offsetHeight ) : ce.offsetHeight ) - ( parseInt( c.css( \"borderBottomWidth\" ), 10 ) || 0 ) - ( parseInt( c.css( \"paddingBottom\" ), 10 ) || 0 ) - this.helperProportions.height - this.margins.top  - this.margins.bottom\n\t\t];\n\t\tthis.relative_container = c;\n\t},\n\n\t_convertPositionTo: function(d, pos) {\n\n\t\tif(!pos) {\n\t\t\tpos = this.position;\n\t\t}\n\n\t\tvar mod = d === \"absolute\" ? 1 : -1,\n\t\t\tscroll = this.cssPosition === \"absolute\" && !( this.scrollParent[ 0 ] !== document && $.contains( this.scrollParent[ 0 ], this.offsetParent[ 0 ] ) ) ? this.offsetParent : this.scrollParent;\n\n\t\t//Cache the scroll\n\t\tif (!this.offset.scroll) {\n\t\t\tthis.offset.scroll = {top : scroll.scrollTop(), left : scroll.scrollLeft()};\n\t\t}\n\n\t\treturn {\n\t\t\ttop: (\n\t\t\t\tpos.top\t+\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.relative.top * mod +\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.top * mod -\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollTop() : this.offset.scroll.top ) * mod )\n\t\t\t),\n\t\t\tleft: (\n\t\t\t\tpos.left +\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.relative.left * mod +\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.left * mod\t-\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollLeft() : this.offset.scroll.left ) * mod )\n\t\t\t)\n\t\t};\n\n\t},\n\n\t_generatePosition: function(event) {\n\n\t\tvar containment, co, top, left,\n\t\t\to = this.options,\n\t\t\tscroll = this.cssPosition === \"absolute\" && !( this.scrollParent[ 0 ] !== document && $.contains( this.scrollParent[ 0 ], this.offsetParent[ 0 ] ) ) ? this.offsetParent : this.scrollParent,\n\t\t\tpageX = event.pageX,\n\t\t\tpageY = event.pageY;\n\n\t\t//Cache the scroll\n\t\tif (!this.offset.scroll) {\n\t\t\tthis.offset.scroll = {top : scroll.scrollTop(), left : scroll.scrollLeft()};\n\t\t}\n\n\t\t/*\n\t\t * - Position constraining -\n\t\t * Constrain the position to a mix of grid, containment.\n\t\t */\n\n\t\t// If we are not dragging yet, we won't check for options\n\t\tif ( this.originalPosition ) {\n\t\t\tif ( this.containment ) {\n\t\t\t\tif ( this.relative_container ){\n\t\t\t\t\tco = this.relative_container.offset();\n\t\t\t\t\tcontainment = [\n\t\t\t\t\t\tthis.containment[ 0 ] + co.left,\n\t\t\t\t\t\tthis.containment[ 1 ] + co.top,\n\t\t\t\t\t\tthis.containment[ 2 ] + co.left,\n\t\t\t\t\t\tthis.containment[ 3 ] + co.top\n\t\t\t\t\t];\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tcontainment = this.containment;\n\t\t\t\t}\n\n\t\t\t\tif(event.pageX - this.offset.click.left < containment[0]) {\n\t\t\t\t\tpageX = containment[0] + this.offset.click.left;\n\t\t\t\t}\n\t\t\t\tif(event.pageY - this.offset.click.top < containment[1]) {\n\t\t\t\t\tpageY = containment[1] + this.offset.click.top;\n\t\t\t\t}\n\t\t\t\tif(event.pageX - this.offset.click.left > containment[2]) {\n\t\t\t\t\tpageX = containment[2] + this.offset.click.left;\n\t\t\t\t}\n\t\t\t\tif(event.pageY - this.offset.click.top > containment[3]) {\n\t\t\t\t\tpageY = containment[3] + this.offset.click.top;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(o.grid) {\n\t\t\t\t//Check for grid elements set to 0 to prevent divide by 0 error causing invalid argument errors in IE (see ticket #6950)\n\t\t\t\ttop = o.grid[1] ? this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1] : this.originalPageY;\n\t\t\t\tpageY = containment ? ((top - this.offset.click.top >= containment[1] || top - this.offset.click.top > containment[3]) ? top : ((top - this.offset.click.top >= containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top;\n\n\t\t\t\tleft = o.grid[0] ? this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0] : this.originalPageX;\n\t\t\t\tpageX = containment ? ((left - this.offset.click.left >= containment[0] || left - this.offset.click.left > containment[2]) ? left : ((left - this.offset.click.left >= containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left;\n\t\t\t}\n\n\t\t}\n\n\t\treturn {\n\t\t\ttop: (\n\t\t\t\tpageY -\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.click.top\t-\t\t\t\t\t\t\t\t\t\t\t\t// Click offset (relative to the element)\n\t\t\t\tthis.offset.relative.top -\t\t\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.top +\t\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollTop() : this.offset.scroll.top )\n\t\t\t),\n\t\t\tleft: (\n\t\t\t\tpageX -\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.click.left -\t\t\t\t\t\t\t\t\t\t\t\t// Click offset (relative to the element)\n\t\t\t\tthis.offset.relative.left -\t\t\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.left +\t\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollLeft() : this.offset.scroll.left )\n\t\t\t)\n\t\t};\n\n\t},\n\n\t_clear: function() {\n\t\tthis.helper.removeClass(\"ui-draggable-dragging\");\n\t\tif(this.helper[0] !== this.element[0] && !this.cancelHelperRemoval) {\n\t\t\tthis.helper.remove();\n\t\t}\n\t\tthis.helper = null;\n\t\tthis.cancelHelperRemoval = false;\n\t},\n\n\t// From now on bulk stuff - mainly helpers\n\n\t_trigger: function(type, event, ui) {\n\t\tui = ui || this._uiHash();\n\t\t$.ui.plugin.call(this, type, [event, ui]);\n\t\t//The absolute position has to be recalculated after plugins\n\t\tif(type === \"drag\") {\n\t\t\tthis.positionAbs = this._convertPositionTo(\"absolute\");\n\t\t}\n\t\treturn $.Widget.prototype._trigger.call(this, type, event, ui);\n\t},\n\n\tplugins: {},\n\n\t_uiHash: function() {\n\t\treturn {\n\t\t\thelper: this.helper,\n\t\t\tposition: this.position,\n\t\t\toriginalPosition: this.originalPosition,\n\t\t\toffset: this.positionAbs\n\t\t};\n\t}\n\n});\n\n$.ui.plugin.add(\"draggable\", \"connectToSortable\", {\n\tstart: function(event, ui) {\n\n\t\tvar inst = $(this).data(\"ui-draggable\"), o = inst.options,\n\t\t\tuiSortable = $.extend({}, ui, { item: inst.element });\n\t\tinst.sortables = [];\n\t\t$(o.connectToSortable).each(function() {\n\t\t\tvar sortable = $.data(this, \"ui-sortable\");\n\t\t\tif (sortable && !sortable.options.disabled) {\n\t\t\t\tinst.sortables.push({\n\t\t\t\t\tinstance: sortable,\n\t\t\t\t\tshouldRevert: sortable.options.revert\n\t\t\t\t});\n\t\t\t\tsortable.refreshPositions();\t// Call the sortable's refreshPositions at drag start to refresh the containerCache since the sortable container cache is used in drag and needs to be up to date (this will ensure it's initialised as well as being kept in step with any changes that might have happened on the page).\n\t\t\t\tsortable._trigger(\"activate\", event, uiSortable);\n\t\t\t}\n\t\t});\n\n\t},\n\tstop: function(event, ui) {\n\n\t\t//If we are still over the sortable, we fake the stop event of the sortable, but also remove helper\n\t\tvar inst = $(this).data(\"ui-draggable\"),\n\t\t\tuiSortable = $.extend({}, ui, { item: inst.element });\n\n\t\t$.each(inst.sortables, function() {\n\t\t\tif(this.instance.isOver) {\n\n\t\t\t\tthis.instance.isOver = 0;\n\n\t\t\t\tinst.cancelHelperRemoval = true; //Don't remove the helper in the draggable instance\n\t\t\t\tthis.instance.cancelHelperRemoval = false; //Remove it in the sortable instance (so sortable plugins like revert still work)\n\n\t\t\t\t//The sortable revert is supported, and we have to set a temporary dropped variable on the draggable to support revert: \"valid/invalid\"\n\t\t\t\tif(this.shouldRevert) {\n\t\t\t\t\tthis.instance.options.revert = this.shouldRevert;\n\t\t\t\t}\n\n\t\t\t\t//Trigger the stop of the sortable\n\t\t\t\tthis.instance._mouseStop(event);\n\n\t\t\t\tthis.instance.options.helper = this.instance.options._helper;\n\n\t\t\t\t//If the helper has been the original item, restore properties in the sortable\n\t\t\t\tif(inst.options.helper === \"original\") {\n\t\t\t\t\tthis.instance.currentItem.css({ top: \"auto\", left: \"auto\" });\n\t\t\t\t}\n\n\t\t\t} else {\n\t\t\t\tthis.instance.cancelHelperRemoval = false; //Remove the helper in the sortable instance\n\t\t\t\tthis.instance._trigger(\"deactivate\", event, uiSortable);\n\t\t\t}\n\n\t\t});\n\n\t},\n\tdrag: function(event, ui) {\n\n\t\tvar inst = $(this).data(\"ui-draggable\"), that = this;\n\n\t\t$.each(inst.sortables, function() {\n\n\t\t\tvar innermostIntersecting = false,\n\t\t\t\tthisSortable = this;\n\n\t\t\t//Copy over some variables to allow calling the sortable's native _intersectsWith\n\t\t\tthis.instance.positionAbs = inst.positionAbs;\n\t\t\tthis.instance.helperProportions = inst.helperProportions;\n\t\t\tthis.instance.offset.click = inst.offset.click;\n\n\t\t\tif(this.instance._intersectsWith(this.instance.containerCache)) {\n\t\t\t\tinnermostIntersecting = true;\n\t\t\t\t$.each(inst.sortables, function () {\n\t\t\t\t\tthis.instance.positionAbs = inst.positionAbs;\n\t\t\t\t\tthis.instance.helperProportions = inst.helperProportions;\n\t\t\t\t\tthis.instance.offset.click = inst.offset.click;\n\t\t\t\t\tif (this !== thisSortable &&\n\t\t\t\t\t\tthis.instance._intersectsWith(this.instance.containerCache) &&\n\t\t\t\t\t\t$.contains(thisSortable.instance.element[0], this.instance.element[0])\n\t\t\t\t\t) {\n\t\t\t\t\t\tinnermostIntersecting = false;\n\t\t\t\t\t}\n\t\t\t\t\treturn innermostIntersecting;\n\t\t\t\t});\n\t\t\t}\n\n\n\t\t\tif(innermostIntersecting) {\n\t\t\t\t//If it intersects, we use a little isOver variable and set it once, so our move-in stuff gets fired only once\n\t\t\t\tif(!this.instance.isOver) {\n\n\t\t\t\t\tthis.instance.isOver = 1;\n\t\t\t\t\t//Now we fake the start of dragging for the sortable instance,\n\t\t\t\t\t//by cloning the list group item, appending it to the sortable and using it as inst.currentItem\n\t\t\t\t\t//We can then fire the start event of the sortable with our passed browser event, and our own helper (so it doesn't create a new one)\n\t\t\t\t\tthis.instance.currentItem = $(that).clone().removeAttr(\"id\").appendTo(this.instance.element).data(\"ui-sortable-item\", true);\n\t\t\t\t\tthis.instance.options._helper = this.instance.options.helper; //Store helper option to later restore it\n\t\t\t\t\tthis.instance.options.helper = function() { return ui.helper[0]; };\n\n\t\t\t\t\tevent.target = this.instance.currentItem[0];\n\t\t\t\t\tthis.instance._mouseCapture(event, true);\n\t\t\t\t\tthis.instance._mouseStart(event, true, true);\n\n\t\t\t\t\t//Because the browser event is way off the new appended portlet, we modify a couple of variables to reflect the changes\n\t\t\t\t\tthis.instance.offset.click.top = inst.offset.click.top;\n\t\t\t\t\tthis.instance.offset.click.left = inst.offset.click.left;\n\t\t\t\t\tthis.instance.offset.parent.left -= inst.offset.parent.left - this.instance.offset.parent.left;\n\t\t\t\t\tthis.instance.offset.parent.top -= inst.offset.parent.top - this.instance.offset.parent.top;\n\n\t\t\t\t\tinst._trigger(\"toSortable\", event);\n\t\t\t\t\tinst.dropped = this.instance.element; //draggable revert needs that\n\t\t\t\t\t//hack so receive/update callbacks work (mostly)\n\t\t\t\t\tinst.currentItem = inst.element;\n\t\t\t\t\tthis.instance.fromOutside = inst;\n\n\t\t\t\t}\n\n\t\t\t\t//Provided we did all the previous steps, we can fire the drag event of the sortable on every draggable drag, when it intersects with the sortable\n\t\t\t\tif(this.instance.currentItem) {\n\t\t\t\t\tthis.instance._mouseDrag(event);\n\t\t\t\t}\n\n\t\t\t} else {\n\n\t\t\t\t//If it doesn't intersect with the sortable, and it intersected before,\n\t\t\t\t//we fake the drag stop of the sortable, but make sure it doesn't remove the helper by using cancelHelperRemoval\n\t\t\t\tif(this.instance.isOver) {\n\n\t\t\t\t\tthis.instance.isOver = 0;\n\t\t\t\t\tthis.instance.cancelHelperRemoval = true;\n\n\t\t\t\t\t//Prevent reverting on this forced stop\n\t\t\t\t\tthis.instance.options.revert = false;\n\n\t\t\t\t\t// The out event needs to be triggered independently\n\t\t\t\t\tthis.instance._trigger(\"out\", event, this.instance._uiHash(this.instance));\n\n\t\t\t\t\tthis.instance._mouseStop(event, true);\n\t\t\t\t\tthis.instance.options.helper = this.instance.options._helper;\n\n\t\t\t\t\t//Now we remove our currentItem, the list group clone again, and the placeholder, and animate the helper back to it's original size\n\t\t\t\t\tthis.instance.currentItem.remove();\n\t\t\t\t\tif(this.instance.placeholder) {\n\t\t\t\t\t\tthis.instance.placeholder.remove();\n\t\t\t\t\t}\n\n\t\t\t\t\tinst._trigger(\"fromSortable\", event);\n\t\t\t\t\tinst.dropped = false; //draggable revert needs that\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t});\n\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"cursor\", {\n\tstart: function() {\n\t\tvar t = $(\"body\"), o = $(this).data(\"ui-draggable\").options;\n\t\tif (t.css(\"cursor\")) {\n\t\t\to._cursor = t.css(\"cursor\");\n\t\t}\n\t\tt.css(\"cursor\", o.cursor);\n\t},\n\tstop: function() {\n\t\tvar o = $(this).data(\"ui-draggable\").options;\n\t\tif (o._cursor) {\n\t\t\t$(\"body\").css(\"cursor\", o._cursor);\n\t\t}\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"opacity\", {\n\tstart: function(event, ui) {\n\t\tvar t = $(ui.helper), o = $(this).data(\"ui-draggable\").options;\n\t\tif(t.css(\"opacity\")) {\n\t\t\to._opacity = t.css(\"opacity\");\n\t\t}\n\t\tt.css(\"opacity\", o.opacity);\n\t},\n\tstop: function(event, ui) {\n\t\tvar o = $(this).data(\"ui-draggable\").options;\n\t\tif(o._opacity) {\n\t\t\t$(ui.helper).css(\"opacity\", o._opacity);\n\t\t}\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"scroll\", {\n\tstart: function() {\n\t\tvar i = $(this).data(\"ui-draggable\");\n\t\tif(i.scrollParent[0] !== document && i.scrollParent[0].tagName !== \"HTML\") {\n\t\t\ti.overflowOffset = i.scrollParent.offset();\n\t\t}\n\t},\n\tdrag: function( event ) {\n\n\t\tvar i = $(this).data(\"ui-draggable\"), o = i.options, scrolled = false;\n\n\t\tif(i.scrollParent[0] !== document && i.scrollParent[0].tagName !== \"HTML\") {\n\n\t\t\tif(!o.axis || o.axis !== \"x\") {\n\t\t\t\tif((i.overflowOffset.top + i.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) {\n\t\t\t\t\ti.scrollParent[0].scrollTop = scrolled = i.scrollParent[0].scrollTop + o.scrollSpeed;\n\t\t\t\t} else if(event.pageY - i.overflowOffset.top < o.scrollSensitivity) {\n\t\t\t\t\ti.scrollParent[0].scrollTop = scrolled = i.scrollParent[0].scrollTop - o.scrollSpeed;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(!o.axis || o.axis !== \"y\") {\n\t\t\t\tif((i.overflowOffset.left + i.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) {\n\t\t\t\t\ti.scrollParent[0].scrollLeft = scrolled = i.scrollParent[0].scrollLeft + o.scrollSpeed;\n\t\t\t\t} else if(event.pageX - i.overflowOffset.left < o.scrollSensitivity) {\n\t\t\t\t\ti.scrollParent[0].scrollLeft = scrolled = i.scrollParent[0].scrollLeft - o.scrollSpeed;\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else {\n\n\t\t\tif(!o.axis || o.axis !== \"x\") {\n\t\t\t\tif(event.pageY - $(document).scrollTop() < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed);\n\t\t\t\t} else if($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(!o.axis || o.axis !== \"y\") {\n\t\t\t\tif(event.pageX - $(document).scrollLeft() < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed);\n\t\t\t\t} else if($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tif(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) {\n\t\t\t$.ui.ddmanager.prepareOffsets(i, event);\n\t\t}\n\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"snap\", {\n\tstart: function() {\n\n\t\tvar i = $(this).data(\"ui-draggable\"),\n\t\t\to = i.options;\n\n\t\ti.snapElements = [];\n\n\t\t$(o.snap.constructor !== String ? ( o.snap.items || \":data(ui-draggable)\" ) : o.snap).each(function() {\n\t\t\tvar $t = $(this),\n\t\t\t\t$o = $t.offset();\n\t\t\tif(this !== i.element[0]) {\n\t\t\t\ti.snapElements.push({\n\t\t\t\t\titem: this,\n\t\t\t\t\twidth: $t.outerWidth(), height: $t.outerHeight(),\n\t\t\t\t\ttop: $o.top, left: $o.left\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t},\n\tdrag: function(event, ui) {\n\n\t\tvar ts, bs, ls, rs, l, r, t, b, i, first,\n\t\t\tinst = $(this).data(\"ui-draggable\"),\n\t\t\to = inst.options,\n\t\t\td = o.snapTolerance,\n\t\t\tx1 = ui.offset.left, x2 = x1 + inst.helperProportions.width,\n\t\t\ty1 = ui.offset.top, y2 = y1 + inst.helperProportions.height;\n\n\t\tfor (i = inst.snapElements.length - 1; i >= 0; i--){\n\n\t\t\tl = inst.snapElements[i].left;\n\t\t\tr = l + inst.snapElements[i].width;\n\t\t\tt = inst.snapElements[i].top;\n\t\t\tb = t + inst.snapElements[i].height;\n\n\t\t\tif ( x2 < l - d || x1 > r + d || y2 < t - d || y1 > b + d || !$.contains( inst.snapElements[ i ].item.ownerDocument, inst.snapElements[ i ].item ) ) {\n\t\t\t\tif(inst.snapElements[i].snapping) {\n\t\t\t\t\t(inst.options.snap.release && inst.options.snap.release.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item })));\n\t\t\t\t}\n\t\t\t\tinst.snapElements[i].snapping = false;\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif(o.snapMode !== \"inner\") {\n\t\t\t\tts = Math.abs(t - y2) <= d;\n\t\t\t\tbs = Math.abs(b - y1) <= d;\n\t\t\t\tls = Math.abs(l - x2) <= d;\n\t\t\t\trs = Math.abs(r - x1) <= d;\n\t\t\t\tif(ts) {\n\t\t\t\t\tui.position.top = inst._convertPositionTo(\"relative\", { top: t - inst.helperProportions.height, left: 0 }).top - inst.margins.top;\n\t\t\t\t}\n\t\t\t\tif(bs) {\n\t\t\t\t\tui.position.top = inst._convertPositionTo(\"relative\", { top: b, left: 0 }).top - inst.margins.top;\n\t\t\t\t}\n\t\t\t\tif(ls) {\n\t\t\t\t\tui.position.left = inst._convertPositionTo(\"relative\", { top: 0, left: l - inst.helperProportions.width }).left - inst.margins.left;\n\t\t\t\t}\n\t\t\t\tif(rs) {\n\t\t\t\t\tui.position.left = inst._convertPositionTo(\"relative\", { top: 0, left: r }).left - inst.margins.left;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfirst = (ts || bs || ls || rs);\n\n\t\t\tif(o.snapMode !== \"outer\") {\n\t\t\t\tts = Math.abs(t - y1) <= d;\n\t\t\t\tbs = Math.abs(b - y2) <= d;\n\t\t\t\tls = Math.abs(l - x1) <= d;\n\t\t\t\trs = Math.abs(r - x2) <= d;\n\t\t\t\tif(ts) {\n\t\t\t\t\tui.position.top = inst._convertPositionTo(\"relative\", { top: t, left: 0 }).top - inst.margins.top;\n\t\t\t\t}\n\t\t\t\tif(bs) {\n\t\t\t\t\tui.position.top = inst._convertPositionTo(\"relative\", { top: b - inst.helperProportions.height, left: 0 }).top - inst.margins.top;\n\t\t\t\t}\n\t\t\t\tif(ls) {\n\t\t\t\t\tui.position.left = inst._convertPositionTo(\"relative\", { top: 0, left: l }).left - inst.margins.left;\n\t\t\t\t}\n\t\t\t\tif(rs) {\n\t\t\t\t\tui.position.left = inst._convertPositionTo(\"relative\", { top: 0, left: r - inst.helperProportions.width }).left - inst.margins.left;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(!inst.snapElements[i].snapping && (ts || bs || ls || rs || first)) {\n\t\t\t\t(inst.options.snap.snap && inst.options.snap.snap.call(inst.element, event, $.extend(inst._uiHash(), { snapItem: inst.snapElements[i].item })));\n\t\t\t}\n\t\t\tinst.snapElements[i].snapping = (ts || bs || ls || rs || first);\n\n\t\t}\n\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"stack\", {\n\tstart: function() {\n\t\tvar min,\n\t\t\to = this.data(\"ui-draggable\").options,\n\t\t\tgroup = $.makeArray($(o.stack)).sort(function(a,b) {\n\t\t\t\treturn (parseInt($(a).css(\"zIndex\"),10) || 0) - (parseInt($(b).css(\"zIndex\"),10) || 0);\n\t\t\t});\n\n\t\tif (!group.length) { return; }\n\n\t\tmin = parseInt($(group[0]).css(\"zIndex\"), 10) || 0;\n\t\t$(group).each(function(i) {\n\t\t\t$(this).css(\"zIndex\", min + i);\n\t\t});\n\t\tthis.css(\"zIndex\", (min + group.length));\n\t}\n});\n\n$.ui.plugin.add(\"draggable\", \"zIndex\", {\n\tstart: function(event, ui) {\n\t\tvar t = $(ui.helper), o = $(this).data(\"ui-draggable\").options;\n\t\tif(t.css(\"zIndex\")) {\n\t\t\to._zIndex = t.css(\"zIndex\");\n\t\t}\n\t\tt.css(\"zIndex\", o.zIndex);\n\t},\n\tstop: function(event, ui) {\n\t\tvar o = $(this).data(\"ui-draggable\").options;\n\t\tif(o._zIndex) {\n\t\t\t$(ui.helper).css(\"zIndex\", o._zIndex);\n\t\t}\n\t}\n});\n\n})(jQuery);\n\n(function( $, undefined ) {\n\nfunction isOverAxis( x, reference, size ) {\n\treturn ( x > reference ) && ( x < ( reference + size ) );\n}\n\n$.widget(\"ui.droppable\", {\n\tversion: \"1.10.4\",\n\twidgetEventPrefix: \"drop\",\n\toptions: {\n\t\taccept: \"*\",\n\t\tactiveClass: false,\n\t\taddClasses: true,\n\t\tgreedy: false,\n\t\thoverClass: false,\n\t\tscope: \"default\",\n\t\ttolerance: \"intersect\",\n\n\t\t// callbacks\n\t\tactivate: null,\n\t\tdeactivate: null,\n\t\tdrop: null,\n\t\tout: null,\n\t\tover: null\n\t},\n\t_create: function() {\n\n\t\tvar proportions,\n\t\t\to = this.options,\n\t\t\taccept = o.accept;\n\n\t\tthis.isover = false;\n\t\tthis.isout = true;\n\n\t\tthis.accept = $.isFunction(accept) ? accept : function(d) {\n\t\t\treturn d.is(accept);\n\t\t};\n\n\t\tthis.proportions = function( /* valueToWrite */ ) {\n\t\t\tif ( arguments.length ) {\n\t\t\t\t// Store the droppable's proportions\n\t\t\t\tproportions = arguments[ 0 ];\n\t\t\t} else {\n\t\t\t\t// Retrieve or derive the droppable's proportions\n\t\t\t\treturn proportions ?\n\t\t\t\t\tproportions :\n\t\t\t\t\tproportions = {\n\t\t\t\t\t\twidth: this.element[ 0 ].offsetWidth,\n\t\t\t\t\t\theight: this.element[ 0 ].offsetHeight\n\t\t\t\t\t};\n\t\t\t}\n\t\t};\n\n\t\t// Add the reference and positions to the manager\n\t\t$.ui.ddmanager.droppables[o.scope] = $.ui.ddmanager.droppables[o.scope] || [];\n\t\t$.ui.ddmanager.droppables[o.scope].push(this);\n\n\t\t(o.addClasses && this.element.addClass(\"ui-droppable\"));\n\n\t},\n\n\t_destroy: function() {\n\t\tvar i = 0,\n\t\t\tdrop = $.ui.ddmanager.droppables[this.options.scope];\n\n\t\tfor ( ; i < drop.length; i++ ) {\n\t\t\tif ( drop[i] === this ) {\n\t\t\t\tdrop.splice(i, 1);\n\t\t\t}\n\t\t}\n\n\t\tthis.element.removeClass(\"ui-droppable ui-droppable-disabled\");\n\t},\n\n\t_setOption: function(key, value) {\n\n\t\tif(key === \"accept\") {\n\t\t\tthis.accept = $.isFunction(value) ? value : function(d) {\n\t\t\t\treturn d.is(value);\n\t\t\t};\n\t\t}\n\t\t$.Widget.prototype._setOption.apply(this, arguments);\n\t},\n\n\t_activate: function(event) {\n\t\tvar draggable = $.ui.ddmanager.current;\n\t\tif(this.options.activeClass) {\n\t\t\tthis.element.addClass(this.options.activeClass);\n\t\t}\n\t\tif(draggable){\n\t\t\tthis._trigger(\"activate\", event, this.ui(draggable));\n\t\t}\n\t},\n\n\t_deactivate: function(event) {\n\t\tvar draggable = $.ui.ddmanager.current;\n\t\tif(this.options.activeClass) {\n\t\t\tthis.element.removeClass(this.options.activeClass);\n\t\t}\n\t\tif(draggable){\n\t\t\tthis._trigger(\"deactivate\", event, this.ui(draggable));\n\t\t}\n\t},\n\n\t_over: function(event) {\n\n\t\tvar draggable = $.ui.ddmanager.current;\n\n\t\t// Bail if draggable and droppable are same element\n\t\tif (!draggable || (draggable.currentItem || draggable.element)[0] === this.element[0]) {\n\t\t\treturn;\n\t\t}\n\n\t\tif (this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) {\n\t\t\tif(this.options.hoverClass) {\n\t\t\t\tthis.element.addClass(this.options.hoverClass);\n\t\t\t}\n\t\t\tthis._trigger(\"over\", event, this.ui(draggable));\n\t\t}\n\n\t},\n\n\t_out: function(event) {\n\n\t\tvar draggable = $.ui.ddmanager.current;\n\n\t\t// Bail if draggable and droppable are same element\n\t\tif (!draggable || (draggable.currentItem || draggable.element)[0] === this.element[0]) {\n\t\t\treturn;\n\t\t}\n\n\t\tif (this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) {\n\t\t\tif(this.options.hoverClass) {\n\t\t\t\tthis.element.removeClass(this.options.hoverClass);\n\t\t\t}\n\t\t\tthis._trigger(\"out\", event, this.ui(draggable));\n\t\t}\n\n\t},\n\n\t_drop: function(event,custom) {\n\n\t\tvar draggable = custom || $.ui.ddmanager.current,\n\t\t\tchildrenIntersection = false;\n\n\t\t// Bail if draggable and droppable are same element\n\t\tif (!draggable || (draggable.currentItem || draggable.element)[0] === this.element[0]) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthis.element.find(\":data(ui-droppable)\").not(\".ui-draggable-dragging\").each(function() {\n\t\t\tvar inst = $.data(this, \"ui-droppable\");\n\t\t\tif(\n\t\t\t\tinst.options.greedy &&\n\t\t\t\t!inst.options.disabled &&\n\t\t\t\tinst.options.scope === draggable.options.scope &&\n\t\t\t\tinst.accept.call(inst.element[0], (draggable.currentItem || draggable.element)) &&\n\t\t\t\t$.ui.intersect(draggable, $.extend(inst, { offset: inst.element.offset() }), inst.options.tolerance)\n\t\t\t) { childrenIntersection = true; return false; }\n\t\t});\n\t\tif(childrenIntersection) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif(this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) {\n\t\t\tif(this.options.activeClass) {\n\t\t\t\tthis.element.removeClass(this.options.activeClass);\n\t\t\t}\n\t\t\tif(this.options.hoverClass) {\n\t\t\t\tthis.element.removeClass(this.options.hoverClass);\n\t\t\t}\n\t\t\tthis._trigger(\"drop\", event, this.ui(draggable));\n\t\t\treturn this.element;\n\t\t}\n\n\t\treturn false;\n\n\t},\n\n\tui: function(c) {\n\t\treturn {\n\t\t\tdraggable: (c.currentItem || c.element),\n\t\t\thelper: c.helper,\n\t\t\tposition: c.position,\n\t\t\toffset: c.positionAbs\n\t\t};\n\t}\n\n});\n\n$.ui.intersect = function(draggable, droppable, toleranceMode) {\n\n\tif (!droppable.offset) {\n\t\treturn false;\n\t}\n\n\tvar draggableLeft, draggableTop,\n\t\tx1 = (draggable.positionAbs || draggable.position.absolute).left,\n\t\ty1 = (draggable.positionAbs || draggable.position.absolute).top,\n\t\tx2 = x1 + draggable.helperProportions.width,\n\t\ty2 = y1 + draggable.helperProportions.height,\n\t\tl = droppable.offset.left,\n\t\tt = droppable.offset.top,\n\t\tr = l + droppable.proportions().width,\n\t\tb = t + droppable.proportions().height;\n\n\tswitch (toleranceMode) {\n\t\tcase \"fit\":\n\t\t\treturn (l <= x1 && x2 <= r && t <= y1 && y2 <= b);\n\t\tcase \"intersect\":\n\t\t\treturn (l < x1 + (draggable.helperProportions.width / 2) && // Right Half\n\t\t\t\tx2 - (draggable.helperProportions.width / 2) < r && // Left Half\n\t\t\t\tt < y1 + (draggable.helperProportions.height / 2) && // Bottom Half\n\t\t\t\ty2 - (draggable.helperProportions.height / 2) < b ); // Top Half\n\t\tcase \"pointer\":\n\t\t\tdraggableLeft = ((draggable.positionAbs || draggable.position.absolute).left + (draggable.clickOffset || draggable.offset.click).left);\n\t\t\tdraggableTop = ((draggable.positionAbs || draggable.position.absolute).top + (draggable.clickOffset || draggable.offset.click).top);\n\t\t\treturn isOverAxis( draggableTop, t, droppable.proportions().height ) && isOverAxis( draggableLeft, l, droppable.proportions().width );\n\t\tcase \"touch\":\n\t\t\treturn (\n\t\t\t\t(y1 >= t && y1 <= b) ||\t// Top edge touching\n\t\t\t\t(y2 >= t && y2 <= b) ||\t// Bottom edge touching\n\t\t\t\t(y1 < t && y2 > b)\t\t// Surrounded vertically\n\t\t\t) && (\n\t\t\t\t(x1 >= l && x1 <= r) ||\t// Left edge touching\n\t\t\t\t(x2 >= l && x2 <= r) ||\t// Right edge touching\n\t\t\t\t(x1 < l && x2 > r)\t\t// Surrounded horizontally\n\t\t\t);\n\t\tdefault:\n\t\t\treturn false;\n\t\t}\n\n};\n\n/*\n\tThis manager tracks offsets of draggables and droppables\n*/\n$.ui.ddmanager = {\n\tcurrent: null,\n\tdroppables: { \"default\": [] },\n\tprepareOffsets: function(t, event) {\n\n\t\tvar i, j,\n\t\t\tm = $.ui.ddmanager.droppables[t.options.scope] || [],\n\t\t\ttype = event ? event.type : null, // workaround for #2317\n\t\t\tlist = (t.currentItem || t.element).find(\":data(ui-droppable)\").addBack();\n\n\t\tdroppablesLoop: for (i = 0; i < m.length; i++) {\n\n\t\t\t//No disabled and non-accepted\n\t\t\tif(m[i].options.disabled || (t && !m[i].accept.call(m[i].element[0],(t.currentItem || t.element)))) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Filter out elements in the current dragged item\n\t\t\tfor (j=0; j < list.length; j++) {\n\t\t\t\tif(list[j] === m[i].element[0]) {\n\t\t\t\t\tm[i].proportions().height = 0;\n\t\t\t\t\tcontinue droppablesLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tm[i].visible = m[i].element.css(\"display\") !== \"none\";\n\t\t\tif(!m[i].visible) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t//Activate the droppable if used directly from draggables\n\t\t\tif(type === \"mousedown\") {\n\t\t\t\tm[i]._activate.call(m[i], event);\n\t\t\t}\n\n\t\t\tm[ i ].offset = m[ i ].element.offset();\n\t\t\tm[ i ].proportions({ width: m[ i ].element[ 0 ].offsetWidth, height: m[ i ].element[ 0 ].offsetHeight });\n\n\t\t}\n\n\t},\n\tdrop: function(draggable, event) {\n\n\t\tvar dropped = false;\n\t\t// Create a copy of the droppables in case the list changes during the drop (#9116)\n\t\t$.each(($.ui.ddmanager.droppables[draggable.options.scope] || []).slice(), function() {\n\n\t\t\tif(!this.options) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (!this.options.disabled && this.visible && $.ui.intersect(draggable, this, this.options.tolerance)) {\n\t\t\t\tdropped = this._drop.call(this, event) || dropped;\n\t\t\t}\n\n\t\t\tif (!this.options.disabled && this.visible && this.accept.call(this.element[0],(draggable.currentItem || draggable.element))) {\n\t\t\t\tthis.isout = true;\n\t\t\t\tthis.isover = false;\n\t\t\t\tthis._deactivate.call(this, event);\n\t\t\t}\n\n\t\t});\n\t\treturn dropped;\n\n\t},\n\tdragStart: function( draggable, event ) {\n\t\t//Listen for scrolling so that if the dragging causes scrolling the position of the droppables can be recalculated (see #5003)\n\t\tdraggable.element.parentsUntil( \"body\" ).bind( \"scroll.droppable\", function() {\n\t\t\tif( !draggable.options.refreshPositions ) {\n\t\t\t\t$.ui.ddmanager.prepareOffsets( draggable, event );\n\t\t\t}\n\t\t});\n\t},\n\tdrag: function(draggable, event) {\n\n\t\t//If you have a highly dynamic page, you might try this option. It renders positions every time you move the mouse.\n\t\tif(draggable.options.refreshPositions) {\n\t\t\t$.ui.ddmanager.prepareOffsets(draggable, event);\n\t\t}\n\n\t\t//Run through all droppables and check their positions based on specific tolerance options\n\t\t$.each($.ui.ddmanager.droppables[draggable.options.scope] || [], function() {\n\n\t\t\tif(this.options.disabled || this.greedyChild || !this.visible) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar parentInstance, scope, parent,\n\t\t\t\tintersects = $.ui.intersect(draggable, this, this.options.tolerance),\n\t\t\t\tc = !intersects && this.isover ? \"isout\" : (intersects && !this.isover ? \"isover\" : null);\n\t\t\tif(!c) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (this.options.greedy) {\n\t\t\t\t// find droppable parents with same scope\n\t\t\t\tscope = this.options.scope;\n\t\t\t\tparent = this.element.parents(\":data(ui-droppable)\").filter(function () {\n\t\t\t\t\treturn $.data(this, \"ui-droppable\").options.scope === scope;\n\t\t\t\t});\n\n\t\t\t\tif (parent.length) {\n\t\t\t\t\tparentInstance = $.data(parent[0], \"ui-droppable\");\n\t\t\t\t\tparentInstance.greedyChild = (c === \"isover\");\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// we just moved into a greedy child\n\t\t\tif (parentInstance && c === \"isover\") {\n\t\t\t\tparentInstance.isover = false;\n\t\t\t\tparentInstance.isout = true;\n\t\t\t\tparentInstance._out.call(parentInstance, event);\n\t\t\t}\n\n\t\t\tthis[c] = true;\n\t\t\tthis[c === \"isout\" ? \"isover\" : \"isout\"] = false;\n\t\t\tthis[c === \"isover\" ? \"_over\" : \"_out\"].call(this, event);\n\n\t\t\t// we just moved out of a greedy child\n\t\t\tif (parentInstance && c === \"isout\") {\n\t\t\t\tparentInstance.isout = false;\n\t\t\t\tparentInstance.isover = true;\n\t\t\t\tparentInstance._over.call(parentInstance, event);\n\t\t\t}\n\t\t});\n\n\t},\n\tdragStop: function( draggable, event ) {\n\t\tdraggable.element.parentsUntil( \"body\" ).unbind( \"scroll.droppable\" );\n\t\t//Call prepareOffsets one final time since IE does not fire return scroll events when overflow was caused by drag (see #5003)\n\t\tif( !draggable.options.refreshPositions ) {\n\t\t\t$.ui.ddmanager.prepareOffsets( draggable, event );\n\t\t}\n\t}\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\nfunction num(v) {\n\treturn parseInt(v, 10) || 0;\n}\n\nfunction isNumber(value) {\n\treturn !isNaN(parseInt(value, 10));\n}\n\n$.widget(\"ui.resizable\", $.ui.mouse, {\n\tversion: \"1.10.4\",\n\twidgetEventPrefix: \"resize\",\n\toptions: {\n\t\talsoResize: false,\n\t\tanimate: false,\n\t\tanimateDuration: \"slow\",\n\t\tanimateEasing: \"swing\",\n\t\taspectRatio: false,\n\t\tautoHide: false,\n\t\tcontainment: false,\n\t\tghost: false,\n\t\tgrid: false,\n\t\thandles: \"e,s,se\",\n\t\thelper: false,\n\t\tmaxHeight: null,\n\t\tmaxWidth: null,\n\t\tminHeight: 10,\n\t\tminWidth: 10,\n\t\t// See #7960\n\t\tzIndex: 90,\n\n\t\t// callbacks\n\t\tresize: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\t_create: function() {\n\n\t\tvar n, i, handle, axis, hname,\n\t\t\tthat = this,\n\t\t\to = this.options;\n\t\tthis.element.addClass(\"ui-resizable\");\n\n\t\t$.extend(this, {\n\t\t\t_aspectRatio: !!(o.aspectRatio),\n\t\t\taspectRatio: o.aspectRatio,\n\t\t\toriginalElement: this.element,\n\t\t\t_proportionallyResizeElements: [],\n\t\t\t_helper: o.helper || o.ghost || o.animate ? o.helper || \"ui-resizable-helper\" : null\n\t\t});\n\n\t\t//Wrap the element if it cannot hold child nodes\n\t\tif(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)) {\n\n\t\t\t//Create a wrapper element and set the wrapper to the new current internal element\n\t\t\tthis.element.wrap(\n\t\t\t\t$(\"<div class='ui-wrapper' style='overflow: hidden;'></div>\").css({\n\t\t\t\t\tposition: this.element.css(\"position\"),\n\t\t\t\t\twidth: this.element.outerWidth(),\n\t\t\t\t\theight: this.element.outerHeight(),\n\t\t\t\t\ttop: this.element.css(\"top\"),\n\t\t\t\t\tleft: this.element.css(\"left\")\n\t\t\t\t})\n\t\t\t);\n\n\t\t\t//Overwrite the original this.element\n\t\t\tthis.element = this.element.parent().data(\n\t\t\t\t\"ui-resizable\", this.element.data(\"ui-resizable\")\n\t\t\t);\n\n\t\t\tthis.elementIsWrapper = true;\n\n\t\t\t//Move margins to the wrapper\n\t\t\tthis.element.css({ marginLeft: this.originalElement.css(\"marginLeft\"), marginTop: this.originalElement.css(\"marginTop\"), marginRight: this.originalElement.css(\"marginRight\"), marginBottom: this.originalElement.css(\"marginBottom\") });\n\t\t\tthis.originalElement.css({ marginLeft: 0, marginTop: 0, marginRight: 0, marginBottom: 0});\n\n\t\t\t//Prevent Safari textarea resize\n\t\t\tthis.originalResizeStyle = this.originalElement.css(\"resize\");\n\t\t\tthis.originalElement.css(\"resize\", \"none\");\n\n\t\t\t//Push the actual element to our proportionallyResize internal array\n\t\t\tthis._proportionallyResizeElements.push(this.originalElement.css({ position: \"static\", zoom: 1, display: \"block\" }));\n\n\t\t\t// avoid IE jump (hard set the margin)\n\t\t\tthis.originalElement.css({ margin: this.originalElement.css(\"margin\") });\n\n\t\t\t// fix handlers offset\n\t\t\tthis._proportionallyResize();\n\n\t\t}\n\n\t\tthis.handles = o.handles || (!$(\".ui-resizable-handle\", this.element).length ? \"e,s,se\" : { n: \".ui-resizable-n\", e: \".ui-resizable-e\", s: \".ui-resizable-s\", w: \".ui-resizable-w\", se: \".ui-resizable-se\", sw: \".ui-resizable-sw\", ne: \".ui-resizable-ne\", nw: \".ui-resizable-nw\" });\n\t\tif(this.handles.constructor === String) {\n\n\t\t\tif ( this.handles === \"all\") {\n\t\t\t\tthis.handles = \"n,e,s,w,se,sw,ne,nw\";\n\t\t\t}\n\n\t\t\tn = this.handles.split(\",\");\n\t\t\tthis.handles = {};\n\n\t\t\tfor(i = 0; i < n.length; i++) {\n\n\t\t\t\thandle = $.trim(n[i]);\n\t\t\t\thname = \"ui-resizable-\"+handle;\n\t\t\t\taxis = $(\"<div class='ui-resizable-handle \" + hname + \"'></div>\");\n\n\t\t\t\t// Apply zIndex to all handles - see #7960\n\t\t\t\taxis.css({ zIndex: o.zIndex });\n\n\t\t\t\t//TODO : What's going on here?\n\t\t\t\tif (\"se\" === handle) {\n\t\t\t\t\taxis.addClass(\"ui-icon ui-icon-gripsmall-diagonal-se\");\n\t\t\t\t}\n\n\t\t\t\t//Insert into internal handles object and append to element\n\t\t\t\tthis.handles[handle] = \".ui-resizable-\"+handle;\n\t\t\t\tthis.element.append(axis);\n\t\t\t}\n\n\t\t}\n\n\t\tthis._renderAxis = function(target) {\n\n\t\t\tvar i, axis, padPos, padWrapper;\n\n\t\t\ttarget = target || this.element;\n\n\t\t\tfor(i in this.handles) {\n\n\t\t\t\tif(this.handles[i].constructor === String) {\n\t\t\t\t\tthis.handles[i] = $(this.handles[i], this.element).show();\n\t\t\t\t}\n\n\t\t\t\t//Apply pad to wrapper element, needed to fix axis position (textarea, inputs, scrolls)\n\t\t\t\tif (this.elementIsWrapper && this.originalElement[0].nodeName.match(/textarea|input|select|button/i)) {\n\n\t\t\t\t\taxis = $(this.handles[i], this.element);\n\n\t\t\t\t\t//Checking the correct pad and border\n\t\t\t\t\tpadWrapper = /sw|ne|nw|se|n|s/.test(i) ? axis.outerHeight() : axis.outerWidth();\n\n\t\t\t\t\t//The padding type i have to apply...\n\t\t\t\t\tpadPos = [ \"padding\",\n\t\t\t\t\t\t/ne|nw|n/.test(i) ? \"Top\" :\n\t\t\t\t\t\t/se|sw|s/.test(i) ? \"Bottom\" :\n\t\t\t\t\t\t/^e$/.test(i) ? \"Right\" : \"Left\" ].join(\"\");\n\n\t\t\t\t\ttarget.css(padPos, padWrapper);\n\n\t\t\t\t\tthis._proportionallyResize();\n\n\t\t\t\t}\n\n\t\t\t\t//TODO: What's that good for? There's not anything to be executed left\n\t\t\t\tif(!$(this.handles[i]).length) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t//TODO: make renderAxis a prototype function\n\t\tthis._renderAxis(this.element);\n\n\t\tthis._handles = $(\".ui-resizable-handle\", this.element)\n\t\t\t.disableSelection();\n\n\t\t//Matching axis name\n\t\tthis._handles.mouseover(function() {\n\t\t\tif (!that.resizing) {\n\t\t\t\tif (this.className) {\n\t\t\t\t\taxis = this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);\n\t\t\t\t}\n\t\t\t\t//Axis, default = se\n\t\t\t\tthat.axis = axis && axis[1] ? axis[1] : \"se\";\n\t\t\t}\n\t\t});\n\n\t\t//If we want to auto hide the elements\n\t\tif (o.autoHide) {\n\t\t\tthis._handles.hide();\n\t\t\t$(this.element)\n\t\t\t\t.addClass(\"ui-resizable-autohide\")\n\t\t\t\t.mouseenter(function() {\n\t\t\t\t\tif (o.disabled) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t$(this).removeClass(\"ui-resizable-autohide\");\n\t\t\t\t\tthat._handles.show();\n\t\t\t\t})\n\t\t\t\t.mouseleave(function(){\n\t\t\t\t\tif (o.disabled) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tif (!that.resizing) {\n\t\t\t\t\t\t$(this).addClass(\"ui-resizable-autohide\");\n\t\t\t\t\t\tthat._handles.hide();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t}\n\n\t\t//Initialize the mouse interaction\n\t\tthis._mouseInit();\n\n\t},\n\n\t_destroy: function() {\n\n\t\tthis._mouseDestroy();\n\n\t\tvar wrapper,\n\t\t\t_destroy = function(exp) {\n\t\t\t\t$(exp).removeClass(\"ui-resizable ui-resizable-disabled ui-resizable-resizing\")\n\t\t\t\t\t.removeData(\"resizable\").removeData(\"ui-resizable\").unbind(\".resizable\").find(\".ui-resizable-handle\").remove();\n\t\t\t};\n\n\t\t//TODO: Unwrap at same DOM position\n\t\tif (this.elementIsWrapper) {\n\t\t\t_destroy(this.element);\n\t\t\twrapper = this.element;\n\t\t\tthis.originalElement.css({\n\t\t\t\tposition: wrapper.css(\"position\"),\n\t\t\t\twidth: wrapper.outerWidth(),\n\t\t\t\theight: wrapper.outerHeight(),\n\t\t\t\ttop: wrapper.css(\"top\"),\n\t\t\t\tleft: wrapper.css(\"left\")\n\t\t\t}).insertAfter( wrapper );\n\t\t\twrapper.remove();\n\t\t}\n\n\t\tthis.originalElement.css(\"resize\", this.originalResizeStyle);\n\t\t_destroy(this.originalElement);\n\n\t\treturn this;\n\t},\n\n\t_mouseCapture: function(event) {\n\t\tvar i, handle,\n\t\t\tcapture = false;\n\n\t\tfor (i in this.handles) {\n\t\t\thandle = $(this.handles[i])[0];\n\t\t\tif (handle === event.target || $.contains(handle, event.target)) {\n\t\t\t\tcapture = true;\n\t\t\t}\n\t\t}\n\n\t\treturn !this.options.disabled && capture;\n\t},\n\n\t_mouseStart: function(event) {\n\n\t\tvar curleft, curtop, cursor,\n\t\t\to = this.options,\n\t\t\tiniPos = this.element.position(),\n\t\t\tel = this.element;\n\n\t\tthis.resizing = true;\n\n\t\t// bugfix for http://dev.jquery.com/ticket/1749\n\t\tif ( (/absolute/).test( el.css(\"position\") ) ) {\n\t\t\tel.css({ position: \"absolute\", top: el.css(\"top\"), left: el.css(\"left\") });\n\t\t} else if (el.is(\".ui-draggable\")) {\n\t\t\tel.css({ position: \"absolute\", top: iniPos.top, left: iniPos.left });\n\t\t}\n\n\t\tthis._renderProxy();\n\n\t\tcurleft = num(this.helper.css(\"left\"));\n\t\tcurtop = num(this.helper.css(\"top\"));\n\n\t\tif (o.containment) {\n\t\t\tcurleft += $(o.containment).scrollLeft() || 0;\n\t\t\tcurtop += $(o.containment).scrollTop() || 0;\n\t\t}\n\n\t\t//Store needed variables\n\t\tthis.offset = this.helper.offset();\n\t\tthis.position = { left: curleft, top: curtop };\n\t\tthis.size = this._helper ? { width: this.helper.width(), height: this.helper.height() } : { width: el.width(), height: el.height() };\n\t\tthis.originalSize = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() };\n\t\tthis.originalPosition = { left: curleft, top: curtop };\n\t\tthis.sizeDiff = { width: el.outerWidth() - el.width(), height: el.outerHeight() - el.height() };\n\t\tthis.originalMousePosition = { left: event.pageX, top: event.pageY };\n\n\t\t//Aspect Ratio\n\t\tthis.aspectRatio = (typeof o.aspectRatio === \"number\") ? o.aspectRatio : ((this.originalSize.width / this.originalSize.height) || 1);\n\n\t\tcursor = $(\".ui-resizable-\" + this.axis).css(\"cursor\");\n\t\t$(\"body\").css(\"cursor\", cursor === \"auto\" ? this.axis + \"-resize\" : cursor);\n\n\t\tel.addClass(\"ui-resizable-resizing\");\n\t\tthis._propagate(\"start\", event);\n\t\treturn true;\n\t},\n\n\t_mouseDrag: function(event) {\n\n\t\t//Increase performance, avoid regex\n\t\tvar data,\n\t\t\tel = this.helper, props = {},\n\t\t\tsmp = this.originalMousePosition,\n\t\t\ta = this.axis,\n\t\t\tprevTop = this.position.top,\n\t\t\tprevLeft = this.position.left,\n\t\t\tprevWidth = this.size.width,\n\t\t\tprevHeight = this.size.height,\n\t\t\tdx = (event.pageX-smp.left)||0,\n\t\t\tdy = (event.pageY-smp.top)||0,\n\t\t\ttrigger = this._change[a];\n\n\t\tif (!trigger) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Calculate the attrs that will be change\n\t\tdata = trigger.apply(this, [event, dx, dy]);\n\n\t\t// Put this in the mouseDrag handler since the user can start pressing shift while resizing\n\t\tthis._updateVirtualBoundaries(event.shiftKey);\n\t\tif (this._aspectRatio || event.shiftKey) {\n\t\t\tdata = this._updateRatio(data, event);\n\t\t}\n\n\t\tdata = this._respectSize(data, event);\n\n\t\tthis._updateCache(data);\n\n\t\t// plugins callbacks need to be called first\n\t\tthis._propagate(\"resize\", event);\n\n\t\tif (this.position.top !== prevTop) {\n\t\t\tprops.top = this.position.top + \"px\";\n\t\t}\n\t\tif (this.position.left !== prevLeft) {\n\t\t\tprops.left = this.position.left + \"px\";\n\t\t}\n\t\tif (this.size.width !== prevWidth) {\n\t\t\tprops.width = this.size.width + \"px\";\n\t\t}\n\t\tif (this.size.height !== prevHeight) {\n\t\t\tprops.height = this.size.height + \"px\";\n\t\t}\n\t\tel.css(props);\n\n\t\tif (!this._helper && this._proportionallyResizeElements.length) {\n\t\t\tthis._proportionallyResize();\n\t\t}\n\n\t\t// Call the user callback if the element was resized\n\t\tif ( ! $.isEmptyObject(props) ) {\n\t\t\tthis._trigger(\"resize\", event, this.ui());\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function(event) {\n\n\t\tthis.resizing = false;\n\t\tvar pr, ista, soffseth, soffsetw, s, left, top,\n\t\t\to = this.options, that = this;\n\n\t\tif(this._helper) {\n\n\t\t\tpr = this._proportionallyResizeElements;\n\t\t\tista = pr.length && (/textarea/i).test(pr[0].nodeName);\n\t\t\tsoffseth = ista && $.ui.hasScroll(pr[0], \"left\") /* TODO - jump height */ ? 0 : that.sizeDiff.height;\n\t\t\tsoffsetw = ista ? 0 : that.sizeDiff.width;\n\n\t\t\ts = { width: (that.helper.width()  - soffsetw), height: (that.helper.height() - soffseth) };\n\t\t\tleft = (parseInt(that.element.css(\"left\"), 10) + (that.position.left - that.originalPosition.left)) || null;\n\t\t\ttop = (parseInt(that.element.css(\"top\"), 10) + (that.position.top - that.originalPosition.top)) || null;\n\n\t\t\tif (!o.animate) {\n\t\t\t\tthis.element.css($.extend(s, { top: top, left: left }));\n\t\t\t}\n\n\t\t\tthat.helper.height(that.size.height);\n\t\t\tthat.helper.width(that.size.width);\n\n\t\t\tif (this._helper && !o.animate) {\n\t\t\t\tthis._proportionallyResize();\n\t\t\t}\n\t\t}\n\n\t\t$(\"body\").css(\"cursor\", \"auto\");\n\n\t\tthis.element.removeClass(\"ui-resizable-resizing\");\n\n\t\tthis._propagate(\"stop\", event);\n\n\t\tif (this._helper) {\n\t\t\tthis.helper.remove();\n\t\t}\n\n\t\treturn false;\n\n\t},\n\n\t_updateVirtualBoundaries: function(forceAspectRatio) {\n\t\tvar pMinWidth, pMaxWidth, pMinHeight, pMaxHeight, b,\n\t\t\to = this.options;\n\n\t\tb = {\n\t\t\tminWidth: isNumber(o.minWidth) ? o.minWidth : 0,\n\t\t\tmaxWidth: isNumber(o.maxWidth) ? o.maxWidth : Infinity,\n\t\t\tminHeight: isNumber(o.minHeight) ? o.minHeight : 0,\n\t\t\tmaxHeight: isNumber(o.maxHeight) ? o.maxHeight : Infinity\n\t\t};\n\n\t\tif(this._aspectRatio || forceAspectRatio) {\n\t\t\t// We want to create an enclosing box whose aspect ration is the requested one\n\t\t\t// First, compute the \"projected\" size for each dimension based on the aspect ratio and other dimension\n\t\t\tpMinWidth = b.minHeight * this.aspectRatio;\n\t\t\tpMinHeight = b.minWidth / this.aspectRatio;\n\t\t\tpMaxWidth = b.maxHeight * this.aspectRatio;\n\t\t\tpMaxHeight = b.maxWidth / this.aspectRatio;\n\n\t\t\tif(pMinWidth > b.minWidth) {\n\t\t\t\tb.minWidth = pMinWidth;\n\t\t\t}\n\t\t\tif(pMinHeight > b.minHeight) {\n\t\t\t\tb.minHeight = pMinHeight;\n\t\t\t}\n\t\t\tif(pMaxWidth < b.maxWidth) {\n\t\t\t\tb.maxWidth = pMaxWidth;\n\t\t\t}\n\t\t\tif(pMaxHeight < b.maxHeight) {\n\t\t\t\tb.maxHeight = pMaxHeight;\n\t\t\t}\n\t\t}\n\t\tthis._vBoundaries = b;\n\t},\n\n\t_updateCache: function(data) {\n\t\tthis.offset = this.helper.offset();\n\t\tif (isNumber(data.left)) {\n\t\t\tthis.position.left = data.left;\n\t\t}\n\t\tif (isNumber(data.top)) {\n\t\t\tthis.position.top = data.top;\n\t\t}\n\t\tif (isNumber(data.height)) {\n\t\t\tthis.size.height = data.height;\n\t\t}\n\t\tif (isNumber(data.width)) {\n\t\t\tthis.size.width = data.width;\n\t\t}\n\t},\n\n\t_updateRatio: function( data ) {\n\n\t\tvar cpos = this.position,\n\t\t\tcsize = this.size,\n\t\t\ta = this.axis;\n\n\t\tif (isNumber(data.height)) {\n\t\t\tdata.width = (data.height * this.aspectRatio);\n\t\t} else if (isNumber(data.width)) {\n\t\t\tdata.height = (data.width / this.aspectRatio);\n\t\t}\n\n\t\tif (a === \"sw\") {\n\t\t\tdata.left = cpos.left + (csize.width - data.width);\n\t\t\tdata.top = null;\n\t\t}\n\t\tif (a === \"nw\") {\n\t\t\tdata.top = cpos.top + (csize.height - data.height);\n\t\t\tdata.left = cpos.left + (csize.width - data.width);\n\t\t}\n\n\t\treturn data;\n\t},\n\n\t_respectSize: function( data ) {\n\n\t\tvar o = this._vBoundaries,\n\t\t\ta = this.axis,\n\t\t\tismaxw = isNumber(data.width) && o.maxWidth && (o.maxWidth < data.width), ismaxh = isNumber(data.height) && o.maxHeight && (o.maxHeight < data.height),\n\t\t\tisminw = isNumber(data.width) && o.minWidth && (o.minWidth > data.width), isminh = isNumber(data.height) && o.minHeight && (o.minHeight > data.height),\n\t\t\tdw = this.originalPosition.left + this.originalSize.width,\n\t\t\tdh = this.position.top + this.size.height,\n\t\t\tcw = /sw|nw|w/.test(a), ch = /nw|ne|n/.test(a);\n\t\tif (isminw) {\n\t\t\tdata.width = o.minWidth;\n\t\t}\n\t\tif (isminh) {\n\t\t\tdata.height = o.minHeight;\n\t\t}\n\t\tif (ismaxw) {\n\t\t\tdata.width = o.maxWidth;\n\t\t}\n\t\tif (ismaxh) {\n\t\t\tdata.height = o.maxHeight;\n\t\t}\n\n\t\tif (isminw && cw) {\n\t\t\tdata.left = dw - o.minWidth;\n\t\t}\n\t\tif (ismaxw && cw) {\n\t\t\tdata.left = dw - o.maxWidth;\n\t\t}\n\t\tif (isminh && ch) {\n\t\t\tdata.top = dh - o.minHeight;\n\t\t}\n\t\tif (ismaxh && ch) {\n\t\t\tdata.top = dh - o.maxHeight;\n\t\t}\n\n\t\t// fixing jump error on top/left - bug #2330\n\t\tif (!data.width && !data.height && !data.left && data.top) {\n\t\t\tdata.top = null;\n\t\t} else if (!data.width && !data.height && !data.top && data.left) {\n\t\t\tdata.left = null;\n\t\t}\n\n\t\treturn data;\n\t},\n\n\t_proportionallyResize: function() {\n\n\t\tif (!this._proportionallyResizeElements.length) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar i, j, borders, paddings, prel,\n\t\t\telement = this.helper || this.element;\n\n\t\tfor ( i=0; i < this._proportionallyResizeElements.length; i++) {\n\n\t\t\tprel = this._proportionallyResizeElements[i];\n\n\t\t\tif (!this.borderDif) {\n\t\t\t\tthis.borderDif = [];\n\t\t\t\tborders = [prel.css(\"borderTopWidth\"), prel.css(\"borderRightWidth\"), prel.css(\"borderBottomWidth\"), prel.css(\"borderLeftWidth\")];\n\t\t\t\tpaddings = [prel.css(\"paddingTop\"), prel.css(\"paddingRight\"), prel.css(\"paddingBottom\"), prel.css(\"paddingLeft\")];\n\n\t\t\t\tfor ( j = 0; j < borders.length; j++ ) {\n\t\t\t\t\tthis.borderDif[ j ] = ( parseInt( borders[ j ], 10 ) || 0 ) + ( parseInt( paddings[ j ], 10 ) || 0 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tprel.css({\n\t\t\t\theight: (element.height() - this.borderDif[0] - this.borderDif[2]) || 0,\n\t\t\t\twidth: (element.width() - this.borderDif[1] - this.borderDif[3]) || 0\n\t\t\t});\n\n\t\t}\n\n\t},\n\n\t_renderProxy: function() {\n\n\t\tvar el = this.element, o = this.options;\n\t\tthis.elementOffset = el.offset();\n\n\t\tif(this._helper) {\n\n\t\t\tthis.helper = this.helper || $(\"<div style='overflow:hidden;'></div>\");\n\n\t\t\tthis.helper.addClass(this._helper).css({\n\t\t\t\twidth: this.element.outerWidth() - 1,\n\t\t\t\theight: this.element.outerHeight() - 1,\n\t\t\t\tposition: \"absolute\",\n\t\t\t\tleft: this.elementOffset.left +\"px\",\n\t\t\t\ttop: this.elementOffset.top +\"px\",\n\t\t\t\tzIndex: ++o.zIndex //TODO: Don't modify option\n\t\t\t});\n\n\t\t\tthis.helper\n\t\t\t\t.appendTo(\"body\")\n\t\t\t\t.disableSelection();\n\n\t\t} else {\n\t\t\tthis.helper = this.element;\n\t\t}\n\n\t},\n\n\t_change: {\n\t\te: function(event, dx) {\n\t\t\treturn { width: this.originalSize.width + dx };\n\t\t},\n\t\tw: function(event, dx) {\n\t\t\tvar cs = this.originalSize, sp = this.originalPosition;\n\t\t\treturn { left: sp.left + dx, width: cs.width - dx };\n\t\t},\n\t\tn: function(event, dx, dy) {\n\t\t\tvar cs = this.originalSize, sp = this.originalPosition;\n\t\t\treturn { top: sp.top + dy, height: cs.height - dy };\n\t\t},\n\t\ts: function(event, dx, dy) {\n\t\t\treturn { height: this.originalSize.height + dy };\n\t\t},\n\t\tse: function(event, dx, dy) {\n\t\t\treturn $.extend(this._change.s.apply(this, arguments), this._change.e.apply(this, [event, dx, dy]));\n\t\t},\n\t\tsw: function(event, dx, dy) {\n\t\t\treturn $.extend(this._change.s.apply(this, arguments), this._change.w.apply(this, [event, dx, dy]));\n\t\t},\n\t\tne: function(event, dx, dy) {\n\t\t\treturn $.extend(this._change.n.apply(this, arguments), this._change.e.apply(this, [event, dx, dy]));\n\t\t},\n\t\tnw: function(event, dx, dy) {\n\t\t\treturn $.extend(this._change.n.apply(this, arguments), this._change.w.apply(this, [event, dx, dy]));\n\t\t}\n\t},\n\n\t_propagate: function(n, event) {\n\t\t$.ui.plugin.call(this, n, [event, this.ui()]);\n\t\t(n !== \"resize\" && this._trigger(n, event, this.ui()));\n\t},\n\n\tplugins: {},\n\n\tui: function() {\n\t\treturn {\n\t\t\toriginalElement: this.originalElement,\n\t\t\telement: this.element,\n\t\t\thelper: this.helper,\n\t\t\tposition: this.position,\n\t\t\tsize: this.size,\n\t\t\toriginalSize: this.originalSize,\n\t\t\toriginalPosition: this.originalPosition\n\t\t};\n\t}\n\n});\n\n/*\n * Resizable Extensions\n */\n\n$.ui.plugin.add(\"resizable\", \"animate\", {\n\n\tstop: function( event ) {\n\t\tvar that = $(this).data(\"ui-resizable\"),\n\t\t\to = that.options,\n\t\t\tpr = that._proportionallyResizeElements,\n\t\t\tista = pr.length && (/textarea/i).test(pr[0].nodeName),\n\t\t\tsoffseth = ista && $.ui.hasScroll(pr[0], \"left\") /* TODO - jump height */ ? 0 : that.sizeDiff.height,\n\t\t\tsoffsetw = ista ? 0 : that.sizeDiff.width,\n\t\t\tstyle = { width: (that.size.width - soffsetw), height: (that.size.height - soffseth) },\n\t\t\tleft = (parseInt(that.element.css(\"left\"), 10) + (that.position.left - that.originalPosition.left)) || null,\n\t\t\ttop = (parseInt(that.element.css(\"top\"), 10) + (that.position.top - that.originalPosition.top)) || null;\n\n\t\tthat.element.animate(\n\t\t\t$.extend(style, top && left ? { top: top, left: left } : {}), {\n\t\t\t\tduration: o.animateDuration,\n\t\t\t\teasing: o.animateEasing,\n\t\t\t\tstep: function() {\n\n\t\t\t\t\tvar data = {\n\t\t\t\t\t\twidth: parseInt(that.element.css(\"width\"), 10),\n\t\t\t\t\t\theight: parseInt(that.element.css(\"height\"), 10),\n\t\t\t\t\t\ttop: parseInt(that.element.css(\"top\"), 10),\n\t\t\t\t\t\tleft: parseInt(that.element.css(\"left\"), 10)\n\t\t\t\t\t};\n\n\t\t\t\t\tif (pr && pr.length) {\n\t\t\t\t\t\t$(pr[0]).css({ width: data.width, height: data.height });\n\t\t\t\t\t}\n\n\t\t\t\t\t// propagating resize, and updating values for each animation step\n\t\t\t\t\tthat._updateCache(data);\n\t\t\t\t\tthat._propagate(\"resize\", event);\n\n\t\t\t\t}\n\t\t\t}\n\t\t);\n\t}\n\n});\n\n$.ui.plugin.add(\"resizable\", \"containment\", {\n\n\tstart: function() {\n\t\tvar element, p, co, ch, cw, width, height,\n\t\t\tthat = $(this).data(\"ui-resizable\"),\n\t\t\to = that.options,\n\t\t\tel = that.element,\n\t\t\toc = o.containment,\n\t\t\tce = (oc instanceof $) ? oc.get(0) : (/parent/.test(oc)) ? el.parent().get(0) : oc;\n\n\t\tif (!ce) {\n\t\t\treturn;\n\t\t}\n\n\t\tthat.containerElement = $(ce);\n\n\t\tif (/document/.test(oc) || oc === document) {\n\t\t\tthat.containerOffset = { left: 0, top: 0 };\n\t\t\tthat.containerPosition = { left: 0, top: 0 };\n\n\t\t\tthat.parentData = {\n\t\t\t\telement: $(document), left: 0, top: 0,\n\t\t\t\twidth: $(document).width(), height: $(document).height() || document.body.parentNode.scrollHeight\n\t\t\t};\n\t\t}\n\n\t\t// i'm a node, so compute top, left, right, bottom\n\t\telse {\n\t\t\telement = $(ce);\n\t\t\tp = [];\n\t\t\t$([ \"Top\", \"Right\", \"Left\", \"Bottom\" ]).each(function(i, name) { p[i] = num(element.css(\"padding\" + name)); });\n\n\t\t\tthat.containerOffset = element.offset();\n\t\t\tthat.containerPosition = element.position();\n\t\t\tthat.containerSize = { height: (element.innerHeight() - p[3]), width: (element.innerWidth() - p[1]) };\n\n\t\t\tco = that.containerOffset;\n\t\t\tch = that.containerSize.height;\n\t\t\tcw = that.containerSize.width;\n\t\t\twidth = ($.ui.hasScroll(ce, \"left\") ? ce.scrollWidth : cw );\n\t\t\theight = ($.ui.hasScroll(ce) ? ce.scrollHeight : ch);\n\n\t\t\tthat.parentData = {\n\t\t\t\telement: ce, left: co.left, top: co.top, width: width, height: height\n\t\t\t};\n\t\t}\n\t},\n\n\tresize: function( event ) {\n\t\tvar woset, hoset, isParent, isOffsetRelative,\n\t\t\tthat = $(this).data(\"ui-resizable\"),\n\t\t\to = that.options,\n\t\t\tco = that.containerOffset, cp = that.position,\n\t\t\tpRatio = that._aspectRatio || event.shiftKey,\n\t\t\tcop = { top:0, left:0 }, ce = that.containerElement;\n\n\t\tif (ce[0] !== document && (/static/).test(ce.css(\"position\"))) {\n\t\t\tcop = co;\n\t\t}\n\n\t\tif (cp.left < (that._helper ? co.left : 0)) {\n\t\t\tthat.size.width = that.size.width + (that._helper ? (that.position.left - co.left) : (that.position.left - cop.left));\n\t\t\tif (pRatio) {\n\t\t\t\tthat.size.height = that.size.width / that.aspectRatio;\n\t\t\t}\n\t\t\tthat.position.left = o.helper ? co.left : 0;\n\t\t}\n\n\t\tif (cp.top < (that._helper ? co.top : 0)) {\n\t\t\tthat.size.height = that.size.height + (that._helper ? (that.position.top - co.top) : that.position.top);\n\t\t\tif (pRatio) {\n\t\t\t\tthat.size.width = that.size.height * that.aspectRatio;\n\t\t\t}\n\t\t\tthat.position.top = that._helper ? co.top : 0;\n\t\t}\n\n\t\tthat.offset.left = that.parentData.left+that.position.left;\n\t\tthat.offset.top = that.parentData.top+that.position.top;\n\n\t\twoset = Math.abs( (that._helper ? that.offset.left - cop.left : (that.offset.left - cop.left)) + that.sizeDiff.width );\n\t\thoset = Math.abs( (that._helper ? that.offset.top - cop.top : (that.offset.top - co.top)) + that.sizeDiff.height );\n\n\t\tisParent = that.containerElement.get(0) === that.element.parent().get(0);\n\t\tisOffsetRelative = /relative|absolute/.test(that.containerElement.css(\"position\"));\n\n\t\tif ( isParent && isOffsetRelative ) {\n\t\t\twoset -= Math.abs( that.parentData.left );\n\t\t}\n\n\t\tif (woset + that.size.width >= that.parentData.width) {\n\t\t\tthat.size.width = that.parentData.width - woset;\n\t\t\tif (pRatio) {\n\t\t\t\tthat.size.height = that.size.width / that.aspectRatio;\n\t\t\t}\n\t\t}\n\n\t\tif (hoset + that.size.height >= that.parentData.height) {\n\t\t\tthat.size.height = that.parentData.height - hoset;\n\t\t\tif (pRatio) {\n\t\t\t\tthat.size.width = that.size.height * that.aspectRatio;\n\t\t\t}\n\t\t}\n\t},\n\n\tstop: function(){\n\t\tvar that = $(this).data(\"ui-resizable\"),\n\t\t\to = that.options,\n\t\t\tco = that.containerOffset,\n\t\t\tcop = that.containerPosition,\n\t\t\tce = that.containerElement,\n\t\t\thelper = $(that.helper),\n\t\t\tho = helper.offset(),\n\t\t\tw = helper.outerWidth() - that.sizeDiff.width,\n\t\t\th = helper.outerHeight() - that.sizeDiff.height;\n\n\t\tif (that._helper && !o.animate && (/relative/).test(ce.css(\"position\"))) {\n\t\t\t$(this).css({ left: ho.left - cop.left - co.left, width: w, height: h });\n\t\t}\n\n\t\tif (that._helper && !o.animate && (/static/).test(ce.css(\"position\"))) {\n\t\t\t$(this).css({ left: ho.left - cop.left - co.left, width: w, height: h });\n\t\t}\n\n\t}\n});\n\n$.ui.plugin.add(\"resizable\", \"alsoResize\", {\n\n\tstart: function () {\n\t\tvar that = $(this).data(\"ui-resizable\"),\n\t\t\to = that.options,\n\t\t\t_store = function (exp) {\n\t\t\t\t$(exp).each(function() {\n\t\t\t\t\tvar el = $(this);\n\t\t\t\t\tel.data(\"ui-resizable-alsoresize\", {\n\t\t\t\t\t\twidth: parseInt(el.width(), 10), height: parseInt(el.height(), 10),\n\t\t\t\t\t\tleft: parseInt(el.css(\"left\"), 10), top: parseInt(el.css(\"top\"), 10)\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t};\n\n\t\tif (typeof(o.alsoResize) === \"object\" && !o.alsoResize.parentNode) {\n\t\t\tif (o.alsoResize.length) { o.alsoResize = o.alsoResize[0]; _store(o.alsoResize); }\n\t\t\telse { $.each(o.alsoResize, function (exp) { _store(exp); }); }\n\t\t}else{\n\t\t\t_store(o.alsoResize);\n\t\t}\n\t},\n\n\tresize: function (event, ui) {\n\t\tvar that = $(this).data(\"ui-resizable\"),\n\t\t\to = that.options,\n\t\t\tos = that.originalSize,\n\t\t\top = that.originalPosition,\n\t\t\tdelta = {\n\t\t\t\theight: (that.size.height - os.height) || 0, width: (that.size.width - os.width) || 0,\n\t\t\t\ttop: (that.position.top - op.top) || 0, left: (that.position.left - op.left) || 0\n\t\t\t},\n\n\t\t\t_alsoResize = function (exp, c) {\n\t\t\t\t$(exp).each(function() {\n\t\t\t\t\tvar el = $(this), start = $(this).data(\"ui-resizable-alsoresize\"), style = {},\n\t\t\t\t\t\tcss = c && c.length ? c : el.parents(ui.originalElement[0]).length ? [\"width\", \"height\"] : [\"width\", \"height\", \"top\", \"left\"];\n\n\t\t\t\t\t$.each(css, function (i, prop) {\n\t\t\t\t\t\tvar sum = (start[prop]||0) + (delta[prop]||0);\n\t\t\t\t\t\tif (sum && sum >= 0) {\n\t\t\t\t\t\t\tstyle[prop] = sum || null;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\n\t\t\t\t\tel.css(style);\n\t\t\t\t});\n\t\t\t};\n\n\t\tif (typeof(o.alsoResize) === \"object\" && !o.alsoResize.nodeType) {\n\t\t\t$.each(o.alsoResize, function (exp, c) { _alsoResize(exp, c); });\n\t\t}else{\n\t\t\t_alsoResize(o.alsoResize);\n\t\t}\n\t},\n\n\tstop: function () {\n\t\t$(this).removeData(\"resizable-alsoresize\");\n\t}\n});\n\n$.ui.plugin.add(\"resizable\", \"ghost\", {\n\n\tstart: function() {\n\n\t\tvar that = $(this).data(\"ui-resizable\"), o = that.options, cs = that.size;\n\n\t\tthat.ghost = that.originalElement.clone();\n\t\tthat.ghost\n\t\t\t.css({ opacity: 0.25, display: \"block\", position: \"relative\", height: cs.height, width: cs.width, margin: 0, left: 0, top: 0 })\n\t\t\t.addClass(\"ui-resizable-ghost\")\n\t\t\t.addClass(typeof o.ghost === \"string\" ? o.ghost : \"\");\n\n\t\tthat.ghost.appendTo(that.helper);\n\n\t},\n\n\tresize: function(){\n\t\tvar that = $(this).data(\"ui-resizable\");\n\t\tif (that.ghost) {\n\t\t\tthat.ghost.css({ position: \"relative\", height: that.size.height, width: that.size.width });\n\t\t}\n\t},\n\n\tstop: function() {\n\t\tvar that = $(this).data(\"ui-resizable\");\n\t\tif (that.ghost && that.helper) {\n\t\t\tthat.helper.get(0).removeChild(that.ghost.get(0));\n\t\t}\n\t}\n\n});\n\n$.ui.plugin.add(\"resizable\", \"grid\", {\n\n\tresize: function() {\n\t\tvar that = $(this).data(\"ui-resizable\"),\n\t\t\to = that.options,\n\t\t\tcs = that.size,\n\t\t\tos = that.originalSize,\n\t\t\top = that.originalPosition,\n\t\t\ta = that.axis,\n\t\t\tgrid = typeof o.grid === \"number\" ? [o.grid, o.grid] : o.grid,\n\t\t\tgridX = (grid[0]||1),\n\t\t\tgridY = (grid[1]||1),\n\t\t\tox = Math.round((cs.width - os.width) / gridX) * gridX,\n\t\t\toy = Math.round((cs.height - os.height) / gridY) * gridY,\n\t\t\tnewWidth = os.width + ox,\n\t\t\tnewHeight = os.height + oy,\n\t\t\tisMaxWidth = o.maxWidth && (o.maxWidth < newWidth),\n\t\t\tisMaxHeight = o.maxHeight && (o.maxHeight < newHeight),\n\t\t\tisMinWidth = o.minWidth && (o.minWidth > newWidth),\n\t\t\tisMinHeight = o.minHeight && (o.minHeight > newHeight);\n\n\t\to.grid = grid;\n\n\t\tif (isMinWidth) {\n\t\t\tnewWidth = newWidth + gridX;\n\t\t}\n\t\tif (isMinHeight) {\n\t\t\tnewHeight = newHeight + gridY;\n\t\t}\n\t\tif (isMaxWidth) {\n\t\t\tnewWidth = newWidth - gridX;\n\t\t}\n\t\tif (isMaxHeight) {\n\t\t\tnewHeight = newHeight - gridY;\n\t\t}\n\n\t\tif (/^(se|s|e)$/.test(a)) {\n\t\t\tthat.size.width = newWidth;\n\t\t\tthat.size.height = newHeight;\n\t\t} else if (/^(ne)$/.test(a)) {\n\t\t\tthat.size.width = newWidth;\n\t\t\tthat.size.height = newHeight;\n\t\t\tthat.position.top = op.top - oy;\n\t\t} else if (/^(sw)$/.test(a)) {\n\t\t\tthat.size.width = newWidth;\n\t\t\tthat.size.height = newHeight;\n\t\t\tthat.position.left = op.left - ox;\n\t\t} else {\n\t\t\tif ( newHeight - gridY > 0 ) {\n\t\t\t\tthat.size.height = newHeight;\n\t\t\t\tthat.position.top = op.top - oy;\n\t\t\t} else {\n\t\t\t\tthat.size.height = gridY;\n\t\t\t\tthat.position.top = op.top + os.height - gridY;\n\t\t\t}\n\t\t\tif ( newWidth - gridX > 0 ) {\n\t\t\t\tthat.size.width = newWidth;\n\t\t\t\tthat.position.left = op.left - ox;\n\t\t\t} else {\n\t\t\t\tthat.size.width = gridX;\n\t\t\t\tthat.position.left = op.left + os.width - gridX;\n\t\t\t}\n\t\t}\n\t}\n\n});\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.widget(\"ui.selectable\", $.ui.mouse, {\n\tversion: \"1.10.4\",\n\toptions: {\n\t\tappendTo: \"body\",\n\t\tautoRefresh: true,\n\t\tdistance: 0,\n\t\tfilter: \"*\",\n\t\ttolerance: \"touch\",\n\n\t\t// callbacks\n\t\tselected: null,\n\t\tselecting: null,\n\t\tstart: null,\n\t\tstop: null,\n\t\tunselected: null,\n\t\tunselecting: null\n\t},\n\t_create: function() {\n\t\tvar selectees,\n\t\t\tthat = this;\n\n\t\tthis.element.addClass(\"ui-selectable\");\n\n\t\tthis.dragged = false;\n\n\t\t// cache selectee children based on filter\n\t\tthis.refresh = function() {\n\t\t\tselectees = $(that.options.filter, that.element[0]);\n\t\t\tselectees.addClass(\"ui-selectee\");\n\t\t\tselectees.each(function() {\n\t\t\t\tvar $this = $(this),\n\t\t\t\t\tpos = $this.offset();\n\t\t\t\t$.data(this, \"selectable-item\", {\n\t\t\t\t\telement: this,\n\t\t\t\t\t$element: $this,\n\t\t\t\t\tleft: pos.left,\n\t\t\t\t\ttop: pos.top,\n\t\t\t\t\tright: pos.left + $this.outerWidth(),\n\t\t\t\t\tbottom: pos.top + $this.outerHeight(),\n\t\t\t\t\tstartselected: false,\n\t\t\t\t\tselected: $this.hasClass(\"ui-selected\"),\n\t\t\t\t\tselecting: $this.hasClass(\"ui-selecting\"),\n\t\t\t\t\tunselecting: $this.hasClass(\"ui-unselecting\")\n\t\t\t\t});\n\t\t\t});\n\t\t};\n\t\tthis.refresh();\n\n\t\tthis.selectees = selectees.addClass(\"ui-selectee\");\n\n\t\tthis._mouseInit();\n\n\t\tthis.helper = $(\"<div class='ui-selectable-helper'></div>\");\n\t},\n\n\t_destroy: function() {\n\t\tthis.selectees\n\t\t\t.removeClass(\"ui-selectee\")\n\t\t\t.removeData(\"selectable-item\");\n\t\tthis.element\n\t\t\t.removeClass(\"ui-selectable ui-selectable-disabled\");\n\t\tthis._mouseDestroy();\n\t},\n\n\t_mouseStart: function(event) {\n\t\tvar that = this,\n\t\t\toptions = this.options;\n\n\t\tthis.opos = [event.pageX, event.pageY];\n\n\t\tif (this.options.disabled) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.selectees = $(options.filter, this.element[0]);\n\n\t\tthis._trigger(\"start\", event);\n\n\t\t$(options.appendTo).append(this.helper);\n\t\t// position helper (lasso)\n\t\tthis.helper.css({\n\t\t\t\"left\": event.pageX,\n\t\t\t\"top\": event.pageY,\n\t\t\t\"width\": 0,\n\t\t\t\"height\": 0\n\t\t});\n\n\t\tif (options.autoRefresh) {\n\t\t\tthis.refresh();\n\t\t}\n\n\t\tthis.selectees.filter(\".ui-selected\").each(function() {\n\t\t\tvar selectee = $.data(this, \"selectable-item\");\n\t\t\tselectee.startselected = true;\n\t\t\tif (!event.metaKey && !event.ctrlKey) {\n\t\t\t\tselectee.$element.removeClass(\"ui-selected\");\n\t\t\t\tselectee.selected = false;\n\t\t\t\tselectee.$element.addClass(\"ui-unselecting\");\n\t\t\t\tselectee.unselecting = true;\n\t\t\t\t// selectable UNSELECTING callback\n\t\t\t\tthat._trigger(\"unselecting\", event, {\n\t\t\t\t\tunselecting: selectee.element\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\t$(event.target).parents().addBack().each(function() {\n\t\t\tvar doSelect,\n\t\t\t\tselectee = $.data(this, \"selectable-item\");\n\t\t\tif (selectee) {\n\t\t\t\tdoSelect = (!event.metaKey && !event.ctrlKey) || !selectee.$element.hasClass(\"ui-selected\");\n\t\t\t\tselectee.$element\n\t\t\t\t\t.removeClass(doSelect ? \"ui-unselecting\" : \"ui-selected\")\n\t\t\t\t\t.addClass(doSelect ? \"ui-selecting\" : \"ui-unselecting\");\n\t\t\t\tselectee.unselecting = !doSelect;\n\t\t\t\tselectee.selecting = doSelect;\n\t\t\t\tselectee.selected = doSelect;\n\t\t\t\t// selectable (UN)SELECTING callback\n\t\t\t\tif (doSelect) {\n\t\t\t\t\tthat._trigger(\"selecting\", event, {\n\t\t\t\t\t\tselecting: selectee.element\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\tthat._trigger(\"unselecting\", event, {\n\t\t\t\t\t\tunselecting: selectee.element\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t}\n\t\t});\n\n\t},\n\n\t_mouseDrag: function(event) {\n\n\t\tthis.dragged = true;\n\n\t\tif (this.options.disabled) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar tmp,\n\t\t\tthat = this,\n\t\t\toptions = this.options,\n\t\t\tx1 = this.opos[0],\n\t\t\ty1 = this.opos[1],\n\t\t\tx2 = event.pageX,\n\t\t\ty2 = event.pageY;\n\n\t\tif (x1 > x2) { tmp = x2; x2 = x1; x1 = tmp; }\n\t\tif (y1 > y2) { tmp = y2; y2 = y1; y1 = tmp; }\n\t\tthis.helper.css({left: x1, top: y1, width: x2-x1, height: y2-y1});\n\n\t\tthis.selectees.each(function() {\n\t\t\tvar selectee = $.data(this, \"selectable-item\"),\n\t\t\t\thit = false;\n\n\t\t\t//prevent helper from being selected if appendTo: selectable\n\t\t\tif (!selectee || selectee.element === that.element[0]) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif (options.tolerance === \"touch\") {\n\t\t\t\thit = ( !(selectee.left > x2 || selectee.right < x1 || selectee.top > y2 || selectee.bottom < y1) );\n\t\t\t} else if (options.tolerance === \"fit\") {\n\t\t\t\thit = (selectee.left > x1 && selectee.right < x2 && selectee.top > y1 && selectee.bottom < y2);\n\t\t\t}\n\n\t\t\tif (hit) {\n\t\t\t\t// SELECT\n\t\t\t\tif (selectee.selected) {\n\t\t\t\t\tselectee.$element.removeClass(\"ui-selected\");\n\t\t\t\t\tselectee.selected = false;\n\t\t\t\t}\n\t\t\t\tif (selectee.unselecting) {\n\t\t\t\t\tselectee.$element.removeClass(\"ui-unselecting\");\n\t\t\t\t\tselectee.unselecting = false;\n\t\t\t\t}\n\t\t\t\tif (!selectee.selecting) {\n\t\t\t\t\tselectee.$element.addClass(\"ui-selecting\");\n\t\t\t\t\tselectee.selecting = true;\n\t\t\t\t\t// selectable SELECTING callback\n\t\t\t\t\tthat._trigger(\"selecting\", event, {\n\t\t\t\t\t\tselecting: selectee.element\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// UNSELECT\n\t\t\t\tif (selectee.selecting) {\n\t\t\t\t\tif ((event.metaKey || event.ctrlKey) && selectee.startselected) {\n\t\t\t\t\t\tselectee.$element.removeClass(\"ui-selecting\");\n\t\t\t\t\t\tselectee.selecting = false;\n\t\t\t\t\t\tselectee.$element.addClass(\"ui-selected\");\n\t\t\t\t\t\tselectee.selected = true;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tselectee.$element.removeClass(\"ui-selecting\");\n\t\t\t\t\t\tselectee.selecting = false;\n\t\t\t\t\t\tif (selectee.startselected) {\n\t\t\t\t\t\t\tselectee.$element.addClass(\"ui-unselecting\");\n\t\t\t\t\t\t\tselectee.unselecting = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// selectable UNSELECTING callback\n\t\t\t\t\t\tthat._trigger(\"unselecting\", event, {\n\t\t\t\t\t\t\tunselecting: selectee.element\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (selectee.selected) {\n\t\t\t\t\tif (!event.metaKey && !event.ctrlKey && !selectee.startselected) {\n\t\t\t\t\t\tselectee.$element.removeClass(\"ui-selected\");\n\t\t\t\t\t\tselectee.selected = false;\n\n\t\t\t\t\t\tselectee.$element.addClass(\"ui-unselecting\");\n\t\t\t\t\t\tselectee.unselecting = true;\n\t\t\t\t\t\t// selectable UNSELECTING callback\n\t\t\t\t\t\tthat._trigger(\"unselecting\", event, {\n\t\t\t\t\t\t\tunselecting: selectee.element\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function(event) {\n\t\tvar that = this;\n\n\t\tthis.dragged = false;\n\n\t\t$(\".ui-unselecting\", this.element[0]).each(function() {\n\t\t\tvar selectee = $.data(this, \"selectable-item\");\n\t\t\tselectee.$element.removeClass(\"ui-unselecting\");\n\t\t\tselectee.unselecting = false;\n\t\t\tselectee.startselected = false;\n\t\t\tthat._trigger(\"unselected\", event, {\n\t\t\t\tunselected: selectee.element\n\t\t\t});\n\t\t});\n\t\t$(\".ui-selecting\", this.element[0]).each(function() {\n\t\t\tvar selectee = $.data(this, \"selectable-item\");\n\t\t\tselectee.$element.removeClass(\"ui-selecting\").addClass(\"ui-selected\");\n\t\t\tselectee.selecting = false;\n\t\t\tselectee.selected = true;\n\t\t\tselectee.startselected = true;\n\t\t\tthat._trigger(\"selected\", event, {\n\t\t\t\tselected: selectee.element\n\t\t\t});\n\t\t});\n\t\tthis._trigger(\"stop\", event);\n\n\t\tthis.helper.remove();\n\n\t\treturn false;\n\t}\n\n});\n\n})(jQuery);\n\n(function( $, undefined ) {\n\nfunction isOverAxis( x, reference, size ) {\n\treturn ( x > reference ) && ( x < ( reference + size ) );\n}\n\nfunction isFloating(item) {\n\treturn (/left|right/).test(item.css(\"float\")) || (/inline|table-cell/).test(item.css(\"display\"));\n}\n\n$.widget(\"ui.sortable\", $.ui.mouse, {\n\tversion: \"1.10.4\",\n\twidgetEventPrefix: \"sort\",\n\tready: false,\n\toptions: {\n\t\tappendTo: \"parent\",\n\t\taxis: false,\n\t\tconnectWith: false,\n\t\tcontainment: false,\n\t\tcursor: \"auto\",\n\t\tcursorAt: false,\n\t\tdropOnEmpty: true,\n\t\tforcePlaceholderSize: false,\n\t\tforceHelperSize: false,\n\t\tgrid: false,\n\t\thandle: false,\n\t\thelper: \"original\",\n\t\titems: \"> *\",\n\t\topacity: false,\n\t\tplaceholder: false,\n\t\trevert: false,\n\t\tscroll: true,\n\t\tscrollSensitivity: 20,\n\t\tscrollSpeed: 20,\n\t\tscope: \"default\",\n\t\ttolerance: \"intersect\",\n\t\tzIndex: 1000,\n\n\t\t// callbacks\n\t\tactivate: null,\n\t\tbeforeStop: null,\n\t\tchange: null,\n\t\tdeactivate: null,\n\t\tout: null,\n\t\tover: null,\n\t\treceive: null,\n\t\tremove: null,\n\t\tsort: null,\n\t\tstart: null,\n\t\tstop: null,\n\t\tupdate: null\n\t},\n\t_create: function() {\n\n\t\tvar o = this.options;\n\t\tthis.containerCache = {};\n\t\tthis.element.addClass(\"ui-sortable\");\n\n\t\t//Get the items\n\t\tthis.refresh();\n\n\t\t//Let's determine if the items are being displayed horizontally\n\t\tthis.floating = this.items.length ? o.axis === \"x\" || isFloating(this.items[0].item) : false;\n\n\t\t//Let's determine the parent's offset\n\t\tthis.offset = this.element.offset();\n\n\t\t//Initialize mouse events for interaction\n\t\tthis._mouseInit();\n\n\t\t//We're ready to go\n\t\tthis.ready = true;\n\n\t},\n\n\t_destroy: function() {\n\t\tthis.element\n\t\t\t.removeClass(\"ui-sortable ui-sortable-disabled\");\n\t\tthis._mouseDestroy();\n\n\t\tfor ( var i = this.items.length - 1; i >= 0; i-- ) {\n\t\t\tthis.items[i].item.removeData(this.widgetName + \"-item\");\n\t\t}\n\n\t\treturn this;\n\t},\n\n\t_setOption: function(key, value){\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.options[ key ] = value;\n\n\t\t\tthis.widget().toggleClass( \"ui-sortable-disabled\", !!value );\n\t\t} else {\n\t\t\t// Don't call widget base _setOption for disable as it adds ui-state-disabled class\n\t\t\t$.Widget.prototype._setOption.apply(this, arguments);\n\t\t}\n\t},\n\n\t_mouseCapture: function(event, overrideHandle) {\n\t\tvar currentItem = null,\n\t\t\tvalidHandle = false,\n\t\t\tthat = this;\n\n\t\tif (this.reverting) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif(this.options.disabled || this.options.type === \"static\") {\n\t\t\treturn false;\n\t\t}\n\n\t\t//We have to refresh the items data once first\n\t\tthis._refreshItems(event);\n\n\t\t//Find out if the clicked node (or one of its parents) is a actual item in this.items\n\t\t$(event.target).parents().each(function() {\n\t\t\tif($.data(this, that.widgetName + \"-item\") === that) {\n\t\t\t\tcurrentItem = $(this);\n\t\t\t\treturn false;\n\t\t\t}\n\t\t});\n\t\tif($.data(event.target, that.widgetName + \"-item\") === that) {\n\t\t\tcurrentItem = $(event.target);\n\t\t}\n\n\t\tif(!currentItem) {\n\t\t\treturn false;\n\t\t}\n\t\tif(this.options.handle && !overrideHandle) {\n\t\t\t$(this.options.handle, currentItem).find(\"*\").addBack().each(function() {\n\t\t\t\tif(this === event.target) {\n\t\t\t\t\tvalidHandle = true;\n\t\t\t\t}\n\t\t\t});\n\t\t\tif(!validHandle) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\n\t\tthis.currentItem = currentItem;\n\t\tthis._removeCurrentsFromItems();\n\t\treturn true;\n\n\t},\n\n\t_mouseStart: function(event, overrideHandle, noActivation) {\n\n\t\tvar i, body,\n\t\t\to = this.options;\n\n\t\tthis.currentContainer = this;\n\n\t\t//We only need to call refreshPositions, because the refreshItems call has been moved to mouseCapture\n\t\tthis.refreshPositions();\n\n\t\t//Create and append the visible helper\n\t\tthis.helper = this._createHelper(event);\n\n\t\t//Cache the helper size\n\t\tthis._cacheHelperProportions();\n\n\t\t/*\n\t\t * - Position generation -\n\t\t * This block generates everything position related - it's the core of draggables.\n\t\t */\n\n\t\t//Cache the margins of the original element\n\t\tthis._cacheMargins();\n\n\t\t//Get the next scrolling parent\n\t\tthis.scrollParent = this.helper.scrollParent();\n\n\t\t//The element's absolute position on the page minus margins\n\t\tthis.offset = this.currentItem.offset();\n\t\tthis.offset = {\n\t\t\ttop: this.offset.top - this.margins.top,\n\t\t\tleft: this.offset.left - this.margins.left\n\t\t};\n\n\t\t$.extend(this.offset, {\n\t\t\tclick: { //Where the click happened, relative to the element\n\t\t\t\tleft: event.pageX - this.offset.left,\n\t\t\t\ttop: event.pageY - this.offset.top\n\t\t\t},\n\t\t\tparent: this._getParentOffset(),\n\t\t\trelative: this._getRelativeOffset() //This is a relative to absolute position minus the actual position calculation - only used for relative positioned helper\n\t\t});\n\n\t\t// Only after we got the offset, we can change the helper's position to absolute\n\t\t// TODO: Still need to figure out a way to make relative sorting possible\n\t\tthis.helper.css(\"position\", \"absolute\");\n\t\tthis.cssPosition = this.helper.css(\"position\");\n\n\t\t//Generate the original position\n\t\tthis.originalPosition = this._generatePosition(event);\n\t\tthis.originalPageX = event.pageX;\n\t\tthis.originalPageY = event.pageY;\n\n\t\t//Adjust the mouse offset relative to the helper if \"cursorAt\" is supplied\n\t\t(o.cursorAt && this._adjustOffsetFromHelper(o.cursorAt));\n\n\t\t//Cache the former DOM position\n\t\tthis.domPosition = { prev: this.currentItem.prev()[0], parent: this.currentItem.parent()[0] };\n\n\t\t//If the helper is not the original, hide the original so it's not playing any role during the drag, won't cause anything bad this way\n\t\tif(this.helper[0] !== this.currentItem[0]) {\n\t\t\tthis.currentItem.hide();\n\t\t}\n\n\t\t//Create the placeholder\n\t\tthis._createPlaceholder();\n\n\t\t//Set a containment if given in the options\n\t\tif(o.containment) {\n\t\t\tthis._setContainment();\n\t\t}\n\n\t\tif( o.cursor && o.cursor !== \"auto\" ) { // cursor option\n\t\t\tbody = this.document.find( \"body\" );\n\n\t\t\t// support: IE\n\t\t\tthis.storedCursor = body.css( \"cursor\" );\n\t\t\tbody.css( \"cursor\", o.cursor );\n\n\t\t\tthis.storedStylesheet = $( \"<style>*{ cursor: \"+o.cursor+\" !important; }</style>\" ).appendTo( body );\n\t\t}\n\n\t\tif(o.opacity) { // opacity option\n\t\t\tif (this.helper.css(\"opacity\")) {\n\t\t\t\tthis._storedOpacity = this.helper.css(\"opacity\");\n\t\t\t}\n\t\t\tthis.helper.css(\"opacity\", o.opacity);\n\t\t}\n\n\t\tif(o.zIndex) { // zIndex option\n\t\t\tif (this.helper.css(\"zIndex\")) {\n\t\t\t\tthis._storedZIndex = this.helper.css(\"zIndex\");\n\t\t\t}\n\t\t\tthis.helper.css(\"zIndex\", o.zIndex);\n\t\t}\n\n\t\t//Prepare scrolling\n\t\tif(this.scrollParent[0] !== document && this.scrollParent[0].tagName !== \"HTML\") {\n\t\t\tthis.overflowOffset = this.scrollParent.offset();\n\t\t}\n\n\t\t//Call callbacks\n\t\tthis._trigger(\"start\", event, this._uiHash());\n\n\t\t//Recache the helper size\n\t\tif(!this._preserveHelperProportions) {\n\t\t\tthis._cacheHelperProportions();\n\t\t}\n\n\n\t\t//Post \"activate\" events to possible containers\n\t\tif( !noActivation ) {\n\t\t\tfor ( i = this.containers.length - 1; i >= 0; i-- ) {\n\t\t\t\tthis.containers[ i ]._trigger( \"activate\", event, this._uiHash( this ) );\n\t\t\t}\n\t\t}\n\n\t\t//Prepare possible droppables\n\t\tif($.ui.ddmanager) {\n\t\t\t$.ui.ddmanager.current = this;\n\t\t}\n\n\t\tif ($.ui.ddmanager && !o.dropBehaviour) {\n\t\t\t$.ui.ddmanager.prepareOffsets(this, event);\n\t\t}\n\n\t\tthis.dragging = true;\n\n\t\tthis.helper.addClass(\"ui-sortable-helper\");\n\t\tthis._mouseDrag(event); //Execute the drag once - this causes the helper not to be visible before getting its correct position\n\t\treturn true;\n\n\t},\n\n\t_mouseDrag: function(event) {\n\t\tvar i, item, itemElement, intersection,\n\t\t\to = this.options,\n\t\t\tscrolled = false;\n\n\t\t//Compute the helpers position\n\t\tthis.position = this._generatePosition(event);\n\t\tthis.positionAbs = this._convertPositionTo(\"absolute\");\n\n\t\tif (!this.lastPositionAbs) {\n\t\t\tthis.lastPositionAbs = this.positionAbs;\n\t\t}\n\n\t\t//Do scrolling\n\t\tif(this.options.scroll) {\n\t\t\tif(this.scrollParent[0] !== document && this.scrollParent[0].tagName !== \"HTML\") {\n\n\t\t\t\tif((this.overflowOffset.top + this.scrollParent[0].offsetHeight) - event.pageY < o.scrollSensitivity) {\n\t\t\t\t\tthis.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop + o.scrollSpeed;\n\t\t\t\t} else if(event.pageY - this.overflowOffset.top < o.scrollSensitivity) {\n\t\t\t\t\tthis.scrollParent[0].scrollTop = scrolled = this.scrollParent[0].scrollTop - o.scrollSpeed;\n\t\t\t\t}\n\n\t\t\t\tif((this.overflowOffset.left + this.scrollParent[0].offsetWidth) - event.pageX < o.scrollSensitivity) {\n\t\t\t\t\tthis.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft + o.scrollSpeed;\n\t\t\t\t} else if(event.pageX - this.overflowOffset.left < o.scrollSensitivity) {\n\t\t\t\t\tthis.scrollParent[0].scrollLeft = scrolled = this.scrollParent[0].scrollLeft - o.scrollSpeed;\n\t\t\t\t}\n\n\t\t\t} else {\n\n\t\t\t\tif(event.pageY - $(document).scrollTop() < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollTop($(document).scrollTop() - o.scrollSpeed);\n\t\t\t\t} else if($(window).height() - (event.pageY - $(document).scrollTop()) < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollTop($(document).scrollTop() + o.scrollSpeed);\n\t\t\t\t}\n\n\t\t\t\tif(event.pageX - $(document).scrollLeft() < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollLeft($(document).scrollLeft() - o.scrollSpeed);\n\t\t\t\t} else if($(window).width() - (event.pageX - $(document).scrollLeft()) < o.scrollSensitivity) {\n\t\t\t\t\tscrolled = $(document).scrollLeft($(document).scrollLeft() + o.scrollSpeed);\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tif(scrolled !== false && $.ui.ddmanager && !o.dropBehaviour) {\n\t\t\t\t$.ui.ddmanager.prepareOffsets(this, event);\n\t\t\t}\n\t\t}\n\n\t\t//Regenerate the absolute position used for position checks\n\t\tthis.positionAbs = this._convertPositionTo(\"absolute\");\n\n\t\t//Set the helper position\n\t\tif(!this.options.axis || this.options.axis !== \"y\") {\n\t\t\tthis.helper[0].style.left = this.position.left+\"px\";\n\t\t}\n\t\tif(!this.options.axis || this.options.axis !== \"x\") {\n\t\t\tthis.helper[0].style.top = this.position.top+\"px\";\n\t\t}\n\n\t\t//Rearrange\n\t\tfor (i = this.items.length - 1; i >= 0; i--) {\n\n\t\t\t//Cache variables and intersection, continue if no intersection\n\t\t\titem = this.items[i];\n\t\t\titemElement = item.item[0];\n\t\t\tintersection = this._intersectsWithPointer(item);\n\t\t\tif (!intersection) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// Only put the placeholder inside the current Container, skip all\n\t\t\t// items from other containers. This works because when moving\n\t\t\t// an item from one container to another the\n\t\t\t// currentContainer is switched before the placeholder is moved.\n\t\t\t//\n\t\t\t// Without this, moving items in \"sub-sortables\" can cause\n\t\t\t// the placeholder to jitter beetween the outer and inner container.\n\t\t\tif (item.instance !== this.currentContainer) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// cannot intersect with itself\n\t\t\t// no useless actions that have been done before\n\t\t\t// no action if the item moved is the parent of the item checked\n\t\t\tif (itemElement !== this.currentItem[0] &&\n\t\t\t\tthis.placeholder[intersection === 1 ? \"next\" : \"prev\"]()[0] !== itemElement &&\n\t\t\t\t!$.contains(this.placeholder[0], itemElement) &&\n\t\t\t\t(this.options.type === \"semi-dynamic\" ? !$.contains(this.element[0], itemElement) : true)\n\t\t\t) {\n\n\t\t\t\tthis.direction = intersection === 1 ? \"down\" : \"up\";\n\n\t\t\t\tif (this.options.tolerance === \"pointer\" || this._intersectsWithSides(item)) {\n\t\t\t\t\tthis._rearrange(event, item);\n\t\t\t\t} else {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\tthis._trigger(\"change\", event, this._uiHash());\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\n\t\t//Post events to containers\n\t\tthis._contactContainers(event);\n\n\t\t//Interconnect with droppables\n\t\tif($.ui.ddmanager) {\n\t\t\t$.ui.ddmanager.drag(this, event);\n\t\t}\n\n\t\t//Call callbacks\n\t\tthis._trigger(\"sort\", event, this._uiHash());\n\n\t\tthis.lastPositionAbs = this.positionAbs;\n\t\treturn false;\n\n\t},\n\n\t_mouseStop: function(event, noPropagation) {\n\n\t\tif(!event) {\n\t\t\treturn;\n\t\t}\n\n\t\t//If we are using droppables, inform the manager about the drop\n\t\tif ($.ui.ddmanager && !this.options.dropBehaviour) {\n\t\t\t$.ui.ddmanager.drop(this, event);\n\t\t}\n\n\t\tif(this.options.revert) {\n\t\t\tvar that = this,\n\t\t\t\tcur = this.placeholder.offset(),\n\t\t\t\taxis = this.options.axis,\n\t\t\t\tanimation = {};\n\n\t\t\tif ( !axis || axis === \"x\" ) {\n\t\t\t\tanimation.left = cur.left - this.offset.parent.left - this.margins.left + (this.offsetParent[0] === document.body ? 0 : this.offsetParent[0].scrollLeft);\n\t\t\t}\n\t\t\tif ( !axis || axis === \"y\" ) {\n\t\t\t\tanimation.top = cur.top - this.offset.parent.top - this.margins.top + (this.offsetParent[0] === document.body ? 0 : this.offsetParent[0].scrollTop);\n\t\t\t}\n\t\t\tthis.reverting = true;\n\t\t\t$(this.helper).animate( animation, parseInt(this.options.revert, 10) || 500, function() {\n\t\t\t\tthat._clear(event);\n\t\t\t});\n\t\t} else {\n\t\t\tthis._clear(event, noPropagation);\n\t\t}\n\n\t\treturn false;\n\n\t},\n\n\tcancel: function() {\n\n\t\tif(this.dragging) {\n\n\t\t\tthis._mouseUp({ target: null });\n\n\t\t\tif(this.options.helper === \"original\") {\n\t\t\t\tthis.currentItem.css(this._storedCSS).removeClass(\"ui-sortable-helper\");\n\t\t\t} else {\n\t\t\t\tthis.currentItem.show();\n\t\t\t}\n\n\t\t\t//Post deactivating events to containers\n\t\t\tfor (var i = this.containers.length - 1; i >= 0; i--){\n\t\t\t\tthis.containers[i]._trigger(\"deactivate\", null, this._uiHash(this));\n\t\t\t\tif(this.containers[i].containerCache.over) {\n\t\t\t\t\tthis.containers[i]._trigger(\"out\", null, this._uiHash(this));\n\t\t\t\t\tthis.containers[i].containerCache.over = 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\tif (this.placeholder) {\n\t\t\t//$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node!\n\t\t\tif(this.placeholder[0].parentNode) {\n\t\t\t\tthis.placeholder[0].parentNode.removeChild(this.placeholder[0]);\n\t\t\t}\n\t\t\tif(this.options.helper !== \"original\" && this.helper && this.helper[0].parentNode) {\n\t\t\t\tthis.helper.remove();\n\t\t\t}\n\n\t\t\t$.extend(this, {\n\t\t\t\thelper: null,\n\t\t\t\tdragging: false,\n\t\t\t\treverting: false,\n\t\t\t\t_noFinalSort: null\n\t\t\t});\n\n\t\t\tif(this.domPosition.prev) {\n\t\t\t\t$(this.domPosition.prev).after(this.currentItem);\n\t\t\t} else {\n\t\t\t\t$(this.domPosition.parent).prepend(this.currentItem);\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\n\t},\n\n\tserialize: function(o) {\n\n\t\tvar items = this._getItemsAsjQuery(o && o.connected),\n\t\t\tstr = [];\n\t\to = o || {};\n\n\t\t$(items).each(function() {\n\t\t\tvar res = ($(o.item || this).attr(o.attribute || \"id\") || \"\").match(o.expression || (/(.+)[\\-=_](.+)/));\n\t\t\tif (res) {\n\t\t\t\tstr.push((o.key || res[1]+\"[]\")+\"=\"+(o.key && o.expression ? res[1] : res[2]));\n\t\t\t}\n\t\t});\n\n\t\tif(!str.length && o.key) {\n\t\t\tstr.push(o.key + \"=\");\n\t\t}\n\n\t\treturn str.join(\"&\");\n\n\t},\n\n\ttoArray: function(o) {\n\n\t\tvar items = this._getItemsAsjQuery(o && o.connected),\n\t\t\tret = [];\n\n\t\to = o || {};\n\n\t\titems.each(function() { ret.push($(o.item || this).attr(o.attribute || \"id\") || \"\"); });\n\t\treturn ret;\n\n\t},\n\n\t/* Be careful with the following core functions */\n\t_intersectsWith: function(item) {\n\n\t\tvar x1 = this.positionAbs.left,\n\t\t\tx2 = x1 + this.helperProportions.width,\n\t\t\ty1 = this.positionAbs.top,\n\t\t\ty2 = y1 + this.helperProportions.height,\n\t\t\tl = item.left,\n\t\t\tr = l + item.width,\n\t\t\tt = item.top,\n\t\t\tb = t + item.height,\n\t\t\tdyClick = this.offset.click.top,\n\t\t\tdxClick = this.offset.click.left,\n\t\t\tisOverElementHeight = ( this.options.axis === \"x\" ) || ( ( y1 + dyClick ) > t && ( y1 + dyClick ) < b ),\n\t\t\tisOverElementWidth = ( this.options.axis === \"y\" ) || ( ( x1 + dxClick ) > l && ( x1 + dxClick ) < r ),\n\t\t\tisOverElement = isOverElementHeight && isOverElementWidth;\n\n\t\tif ( this.options.tolerance === \"pointer\" ||\n\t\t\tthis.options.forcePointerForContainers ||\n\t\t\t(this.options.tolerance !== \"pointer\" && this.helperProportions[this.floating ? \"width\" : \"height\"] > item[this.floating ? \"width\" : \"height\"])\n\t\t) {\n\t\t\treturn isOverElement;\n\t\t} else {\n\n\t\t\treturn (l < x1 + (this.helperProportions.width / 2) && // Right Half\n\t\t\t\tx2 - (this.helperProportions.width / 2) < r && // Left Half\n\t\t\t\tt < y1 + (this.helperProportions.height / 2) && // Bottom Half\n\t\t\t\ty2 - (this.helperProportions.height / 2) < b ); // Top Half\n\n\t\t}\n\t},\n\n\t_intersectsWithPointer: function(item) {\n\n\t\tvar isOverElementHeight = (this.options.axis === \"x\") || isOverAxis(this.positionAbs.top + this.offset.click.top, item.top, item.height),\n\t\t\tisOverElementWidth = (this.options.axis === \"y\") || isOverAxis(this.positionAbs.left + this.offset.click.left, item.left, item.width),\n\t\t\tisOverElement = isOverElementHeight && isOverElementWidth,\n\t\t\tverticalDirection = this._getDragVerticalDirection(),\n\t\t\thorizontalDirection = this._getDragHorizontalDirection();\n\n\t\tif (!isOverElement) {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn this.floating ?\n\t\t\t( ((horizontalDirection && horizontalDirection === \"right\") || verticalDirection === \"down\") ? 2 : 1 )\n\t\t\t: ( verticalDirection && (verticalDirection === \"down\" ? 2 : 1) );\n\n\t},\n\n\t_intersectsWithSides: function(item) {\n\n\t\tvar isOverBottomHalf = isOverAxis(this.positionAbs.top + this.offset.click.top, item.top + (item.height/2), item.height),\n\t\t\tisOverRightHalf = isOverAxis(this.positionAbs.left + this.offset.click.left, item.left + (item.width/2), item.width),\n\t\t\tverticalDirection = this._getDragVerticalDirection(),\n\t\t\thorizontalDirection = this._getDragHorizontalDirection();\n\n\t\tif (this.floating && horizontalDirection) {\n\t\t\treturn ((horizontalDirection === \"right\" && isOverRightHalf) || (horizontalDirection === \"left\" && !isOverRightHalf));\n\t\t} else {\n\t\t\treturn verticalDirection && ((verticalDirection === \"down\" && isOverBottomHalf) || (verticalDirection === \"up\" && !isOverBottomHalf));\n\t\t}\n\n\t},\n\n\t_getDragVerticalDirection: function() {\n\t\tvar delta = this.positionAbs.top - this.lastPositionAbs.top;\n\t\treturn delta !== 0 && (delta > 0 ? \"down\" : \"up\");\n\t},\n\n\t_getDragHorizontalDirection: function() {\n\t\tvar delta = this.positionAbs.left - this.lastPositionAbs.left;\n\t\treturn delta !== 0 && (delta > 0 ? \"right\" : \"left\");\n\t},\n\n\trefresh: function(event) {\n\t\tthis._refreshItems(event);\n\t\tthis.refreshPositions();\n\t\treturn this;\n\t},\n\n\t_connectWith: function() {\n\t\tvar options = this.options;\n\t\treturn options.connectWith.constructor === String ? [options.connectWith] : options.connectWith;\n\t},\n\n\t_getItemsAsjQuery: function(connected) {\n\n\t\tvar i, j, cur, inst,\n\t\t\titems = [],\n\t\t\tqueries = [],\n\t\t\tconnectWith = this._connectWith();\n\n\t\tif(connectWith && connected) {\n\t\t\tfor (i = connectWith.length - 1; i >= 0; i--){\n\t\t\t\tcur = $(connectWith[i]);\n\t\t\t\tfor ( j = cur.length - 1; j >= 0; j--){\n\t\t\t\t\tinst = $.data(cur[j], this.widgetFullName);\n\t\t\t\t\tif(inst && inst !== this && !inst.options.disabled) {\n\t\t\t\t\t\tqueries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element) : $(inst.options.items, inst.element).not(\".ui-sortable-helper\").not(\".ui-sortable-placeholder\"), inst]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tqueries.push([$.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : $(this.options.items, this.element).not(\".ui-sortable-helper\").not(\".ui-sortable-placeholder\"), this]);\n\n\t\tfunction addItems() {\n\t\t\titems.push( this );\n\t\t}\n\t\tfor (i = queries.length - 1; i >= 0; i--){\n\t\t\tqueries[i][0].each( addItems );\n\t\t}\n\n\t\treturn $(items);\n\n\t},\n\n\t_removeCurrentsFromItems: function() {\n\n\t\tvar list = this.currentItem.find(\":data(\" + this.widgetName + \"-item)\");\n\n\t\tthis.items = $.grep(this.items, function (item) {\n\t\t\tfor (var j=0; j < list.length; j++) {\n\t\t\t\tif(list[j] === item.item[0]) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t});\n\n\t},\n\n\t_refreshItems: function(event) {\n\n\t\tthis.items = [];\n\t\tthis.containers = [this];\n\n\t\tvar i, j, cur, inst, targetData, _queries, item, queriesLength,\n\t\t\titems = this.items,\n\t\t\tqueries = [[$.isFunction(this.options.items) ? this.options.items.call(this.element[0], event, { item: this.currentItem }) : $(this.options.items, this.element), this]],\n\t\t\tconnectWith = this._connectWith();\n\n\t\tif(connectWith && this.ready) { //Shouldn't be run the first time through due to massive slow-down\n\t\t\tfor (i = connectWith.length - 1; i >= 0; i--){\n\t\t\t\tcur = $(connectWith[i]);\n\t\t\t\tfor (j = cur.length - 1; j >= 0; j--){\n\t\t\t\t\tinst = $.data(cur[j], this.widgetFullName);\n\t\t\t\t\tif(inst && inst !== this && !inst.options.disabled) {\n\t\t\t\t\t\tqueries.push([$.isFunction(inst.options.items) ? inst.options.items.call(inst.element[0], event, { item: this.currentItem }) : $(inst.options.items, inst.element), inst]);\n\t\t\t\t\t\tthis.containers.push(inst);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor (i = queries.length - 1; i >= 0; i--) {\n\t\t\ttargetData = queries[i][1];\n\t\t\t_queries = queries[i][0];\n\n\t\t\tfor (j=0, queriesLength = _queries.length; j < queriesLength; j++) {\n\t\t\t\titem = $(_queries[j]);\n\n\t\t\t\titem.data(this.widgetName + \"-item\", targetData); // Data for target checking (mouse manager)\n\n\t\t\t\titems.push({\n\t\t\t\t\titem: item,\n\t\t\t\t\tinstance: targetData,\n\t\t\t\t\twidth: 0, height: 0,\n\t\t\t\t\tleft: 0, top: 0\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t},\n\n\trefreshPositions: function(fast) {\n\n\t\t//This has to be redone because due to the item being moved out/into the offsetParent, the offsetParent's position will change\n\t\tif(this.offsetParent && this.helper) {\n\t\t\tthis.offset.parent = this._getParentOffset();\n\t\t}\n\n\t\tvar i, item, t, p;\n\n\t\tfor (i = this.items.length - 1; i >= 0; i--){\n\t\t\titem = this.items[i];\n\n\t\t\t//We ignore calculating positions of all connected containers when we're not over them\n\t\t\tif(item.instance !== this.currentContainer && this.currentContainer && item.item[0] !== this.currentItem[0]) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tt = this.options.toleranceElement ? $(this.options.toleranceElement, item.item) : item.item;\n\n\t\t\tif (!fast) {\n\t\t\t\titem.width = t.outerWidth();\n\t\t\t\titem.height = t.outerHeight();\n\t\t\t}\n\n\t\t\tp = t.offset();\n\t\t\titem.left = p.left;\n\t\t\titem.top = p.top;\n\t\t}\n\n\t\tif(this.options.custom && this.options.custom.refreshContainers) {\n\t\t\tthis.options.custom.refreshContainers.call(this);\n\t\t} else {\n\t\t\tfor (i = this.containers.length - 1; i >= 0; i--){\n\t\t\t\tp = this.containers[i].element.offset();\n\t\t\t\tthis.containers[i].containerCache.left = p.left;\n\t\t\t\tthis.containers[i].containerCache.top = p.top;\n\t\t\t\tthis.containers[i].containerCache.width\t= this.containers[i].element.outerWidth();\n\t\t\t\tthis.containers[i].containerCache.height = this.containers[i].element.outerHeight();\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\t_createPlaceholder: function(that) {\n\t\tthat = that || this;\n\t\tvar className,\n\t\t\to = that.options;\n\n\t\tif(!o.placeholder || o.placeholder.constructor === String) {\n\t\t\tclassName = o.placeholder;\n\t\t\to.placeholder = {\n\t\t\t\telement: function() {\n\n\t\t\t\t\tvar nodeName = that.currentItem[0].nodeName.toLowerCase(),\n\t\t\t\t\t\telement = $( \"<\" + nodeName + \">\", that.document[0] )\n\t\t\t\t\t\t\t.addClass(className || that.currentItem[0].className+\" ui-sortable-placeholder\")\n\t\t\t\t\t\t\t.removeClass(\"ui-sortable-helper\");\n\n\t\t\t\t\tif ( nodeName === \"tr\" ) {\n\t\t\t\t\t\tthat.currentItem.children().each(function() {\n\t\t\t\t\t\t\t$( \"<td>&#160;</td>\", that.document[0] )\n\t\t\t\t\t\t\t\t.attr( \"colspan\", $( this ).attr( \"colspan\" ) || 1 )\n\t\t\t\t\t\t\t\t.appendTo( element );\n\t\t\t\t\t\t});\n\t\t\t\t\t} else if ( nodeName === \"img\" ) {\n\t\t\t\t\t\telement.attr( \"src\", that.currentItem.attr( \"src\" ) );\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( !className ) {\n\t\t\t\t\t\telement.css( \"visibility\", \"hidden\" );\n\t\t\t\t\t}\n\n\t\t\t\t\treturn element;\n\t\t\t\t},\n\t\t\t\tupdate: function(container, p) {\n\n\t\t\t\t\t// 1. If a className is set as 'placeholder option, we don't force sizes - the class is responsible for that\n\t\t\t\t\t// 2. The option 'forcePlaceholderSize can be enabled to force it even if a class name is specified\n\t\t\t\t\tif(className && !o.forcePlaceholderSize) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t//If the element doesn't have a actual height by itself (without styles coming from a stylesheet), it receives the inline height from the dragged item\n\t\t\t\t\tif(!p.height()) { p.height(that.currentItem.innerHeight() - parseInt(that.currentItem.css(\"paddingTop\")||0, 10) - parseInt(that.currentItem.css(\"paddingBottom\")||0, 10)); }\n\t\t\t\t\tif(!p.width()) { p.width(that.currentItem.innerWidth() - parseInt(that.currentItem.css(\"paddingLeft\")||0, 10) - parseInt(that.currentItem.css(\"paddingRight\")||0, 10)); }\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\n\t\t//Create the placeholder\n\t\tthat.placeholder = $(o.placeholder.element.call(that.element, that.currentItem));\n\n\t\t//Append it after the actual current item\n\t\tthat.currentItem.after(that.placeholder);\n\n\t\t//Update the size of the placeholder (TODO: Logic to fuzzy, see line 316/317)\n\t\to.placeholder.update(that, that.placeholder);\n\n\t},\n\n\t_contactContainers: function(event) {\n\t\tvar i, j, dist, itemWithLeastDistance, posProperty, sizeProperty, base, cur, nearBottom, floating,\n\t\t\tinnermostContainer = null,\n\t\t\tinnermostIndex = null;\n\n\t\t// get innermost container that intersects with item\n\t\tfor (i = this.containers.length - 1; i >= 0; i--) {\n\n\t\t\t// never consider a container that's located within the item itself\n\t\t\tif($.contains(this.currentItem[0], this.containers[i].element[0])) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tif(this._intersectsWith(this.containers[i].containerCache)) {\n\n\t\t\t\t// if we've already found a container and it's more \"inner\" than this, then continue\n\t\t\t\tif(innermostContainer && $.contains(this.containers[i].element[0], innermostContainer.element[0])) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tinnermostContainer = this.containers[i];\n\t\t\t\tinnermostIndex = i;\n\n\t\t\t} else {\n\t\t\t\t// container doesn't intersect. trigger \"out\" event if necessary\n\t\t\t\tif(this.containers[i].containerCache.over) {\n\t\t\t\t\tthis.containers[i]._trigger(\"out\", event, this._uiHash(this));\n\t\t\t\t\tthis.containers[i].containerCache.over = 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t// if no intersecting containers found, return\n\t\tif(!innermostContainer) {\n\t\t\treturn;\n\t\t}\n\n\t\t// move the item into the container if it's not there already\n\t\tif(this.containers.length === 1) {\n\t\t\tif (!this.containers[innermostIndex].containerCache.over) {\n\t\t\t\tthis.containers[innermostIndex]._trigger(\"over\", event, this._uiHash(this));\n\t\t\t\tthis.containers[innermostIndex].containerCache.over = 1;\n\t\t\t}\n\t\t} else {\n\n\t\t\t//When entering a new container, we will find the item with the least distance and append our item near it\n\t\t\tdist = 10000;\n\t\t\titemWithLeastDistance = null;\n\t\t\tfloating = innermostContainer.floating || isFloating(this.currentItem);\n\t\t\tposProperty = floating ? \"left\" : \"top\";\n\t\t\tsizeProperty = floating ? \"width\" : \"height\";\n\t\t\tbase = this.positionAbs[posProperty] + this.offset.click[posProperty];\n\t\t\tfor (j = this.items.length - 1; j >= 0; j--) {\n\t\t\t\tif(!$.contains(this.containers[innermostIndex].element[0], this.items[j].item[0])) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif(this.items[j].item[0] === this.currentItem[0]) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif (floating && !isOverAxis(this.positionAbs.top + this.offset.click.top, this.items[j].top, this.items[j].height)) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tcur = this.items[j].item.offset()[posProperty];\n\t\t\t\tnearBottom = false;\n\t\t\t\tif(Math.abs(cur - base) > Math.abs(cur + this.items[j][sizeProperty] - base)){\n\t\t\t\t\tnearBottom = true;\n\t\t\t\t\tcur += this.items[j][sizeProperty];\n\t\t\t\t}\n\n\t\t\t\tif(Math.abs(cur - base) < dist) {\n\t\t\t\t\tdist = Math.abs(cur - base); itemWithLeastDistance = this.items[j];\n\t\t\t\t\tthis.direction = nearBottom ? \"up\": \"down\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t//Check if dropOnEmpty is enabled\n\t\t\tif(!itemWithLeastDistance && !this.options.dropOnEmpty) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif(this.currentContainer === this.containers[innermostIndex]) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\titemWithLeastDistance ? this._rearrange(event, itemWithLeastDistance, null, true) : this._rearrange(event, null, this.containers[innermostIndex].element, true);\n\t\t\tthis._trigger(\"change\", event, this._uiHash());\n\t\t\tthis.containers[innermostIndex]._trigger(\"change\", event, this._uiHash(this));\n\t\t\tthis.currentContainer = this.containers[innermostIndex];\n\n\t\t\t//Update the placeholder\n\t\t\tthis.options.placeholder.update(this.currentContainer, this.placeholder);\n\n\t\t\tthis.containers[innermostIndex]._trigger(\"over\", event, this._uiHash(this));\n\t\t\tthis.containers[innermostIndex].containerCache.over = 1;\n\t\t}\n\n\n\t},\n\n\t_createHelper: function(event) {\n\n\t\tvar o = this.options,\n\t\t\thelper = $.isFunction(o.helper) ? $(o.helper.apply(this.element[0], [event, this.currentItem])) : (o.helper === \"clone\" ? this.currentItem.clone() : this.currentItem);\n\n\t\t//Add the helper to the DOM if that didn't happen already\n\t\tif(!helper.parents(\"body\").length) {\n\t\t\t$(o.appendTo !== \"parent\" ? o.appendTo : this.currentItem[0].parentNode)[0].appendChild(helper[0]);\n\t\t}\n\n\t\tif(helper[0] === this.currentItem[0]) {\n\t\t\tthis._storedCSS = { width: this.currentItem[0].style.width, height: this.currentItem[0].style.height, position: this.currentItem.css(\"position\"), top: this.currentItem.css(\"top\"), left: this.currentItem.css(\"left\") };\n\t\t}\n\n\t\tif(!helper[0].style.width || o.forceHelperSize) {\n\t\t\thelper.width(this.currentItem.width());\n\t\t}\n\t\tif(!helper[0].style.height || o.forceHelperSize) {\n\t\t\thelper.height(this.currentItem.height());\n\t\t}\n\n\t\treturn helper;\n\n\t},\n\n\t_adjustOffsetFromHelper: function(obj) {\n\t\tif (typeof obj === \"string\") {\n\t\t\tobj = obj.split(\" \");\n\t\t}\n\t\tif ($.isArray(obj)) {\n\t\t\tobj = {left: +obj[0], top: +obj[1] || 0};\n\t\t}\n\t\tif (\"left\" in obj) {\n\t\t\tthis.offset.click.left = obj.left + this.margins.left;\n\t\t}\n\t\tif (\"right\" in obj) {\n\t\t\tthis.offset.click.left = this.helperProportions.width - obj.right + this.margins.left;\n\t\t}\n\t\tif (\"top\" in obj) {\n\t\t\tthis.offset.click.top = obj.top + this.margins.top;\n\t\t}\n\t\tif (\"bottom\" in obj) {\n\t\t\tthis.offset.click.top = this.helperProportions.height - obj.bottom + this.margins.top;\n\t\t}\n\t},\n\n\t_getParentOffset: function() {\n\n\n\t\t//Get the offsetParent and cache its position\n\t\tthis.offsetParent = this.helper.offsetParent();\n\t\tvar po = this.offsetParent.offset();\n\n\t\t// This is a special case where we need to modify a offset calculated on start, since the following happened:\n\t\t// 1. The position of the helper is absolute, so it's position is calculated based on the next positioned parent\n\t\t// 2. The actual offset parent is a child of the scroll parent, and the scroll parent isn't the document, which means that\n\t\t//    the scroll is included in the initial calculation of the offset of the parent, and never recalculated upon drag\n\t\tif(this.cssPosition === \"absolute\" && this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) {\n\t\t\tpo.left += this.scrollParent.scrollLeft();\n\t\t\tpo.top += this.scrollParent.scrollTop();\n\t\t}\n\n\t\t// This needs to be actually done for all browsers, since pageX/pageY includes this information\n\t\t// with an ugly IE fix\n\t\tif( this.offsetParent[0] === document.body || (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() === \"html\" && $.ui.ie)) {\n\t\t\tpo = { top: 0, left: 0 };\n\t\t}\n\n\t\treturn {\n\t\t\ttop: po.top + (parseInt(this.offsetParent.css(\"borderTopWidth\"),10) || 0),\n\t\t\tleft: po.left + (parseInt(this.offsetParent.css(\"borderLeftWidth\"),10) || 0)\n\t\t};\n\n\t},\n\n\t_getRelativeOffset: function() {\n\n\t\tif(this.cssPosition === \"relative\") {\n\t\t\tvar p = this.currentItem.position();\n\t\t\treturn {\n\t\t\t\ttop: p.top - (parseInt(this.helper.css(\"top\"),10) || 0) + this.scrollParent.scrollTop(),\n\t\t\t\tleft: p.left - (parseInt(this.helper.css(\"left\"),10) || 0) + this.scrollParent.scrollLeft()\n\t\t\t};\n\t\t} else {\n\t\t\treturn { top: 0, left: 0 };\n\t\t}\n\n\t},\n\n\t_cacheMargins: function() {\n\t\tthis.margins = {\n\t\t\tleft: (parseInt(this.currentItem.css(\"marginLeft\"),10) || 0),\n\t\t\ttop: (parseInt(this.currentItem.css(\"marginTop\"),10) || 0)\n\t\t};\n\t},\n\n\t_cacheHelperProportions: function() {\n\t\tthis.helperProportions = {\n\t\t\twidth: this.helper.outerWidth(),\n\t\t\theight: this.helper.outerHeight()\n\t\t};\n\t},\n\n\t_setContainment: function() {\n\n\t\tvar ce, co, over,\n\t\t\to = this.options;\n\t\tif(o.containment === \"parent\") {\n\t\t\to.containment = this.helper[0].parentNode;\n\t\t}\n\t\tif(o.containment === \"document\" || o.containment === \"window\") {\n\t\t\tthis.containment = [\n\t\t\t\t0 - this.offset.relative.left - this.offset.parent.left,\n\t\t\t\t0 - this.offset.relative.top - this.offset.parent.top,\n\t\t\t\t$(o.containment === \"document\" ? document : window).width() - this.helperProportions.width - this.margins.left,\n\t\t\t\t($(o.containment === \"document\" ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top\n\t\t\t];\n\t\t}\n\n\t\tif(!(/^(document|window|parent)$/).test(o.containment)) {\n\t\t\tce = $(o.containment)[0];\n\t\t\tco = $(o.containment).offset();\n\t\t\tover = ($(ce).css(\"overflow\") !== \"hidden\");\n\n\t\t\tthis.containment = [\n\t\t\t\tco.left + (parseInt($(ce).css(\"borderLeftWidth\"),10) || 0) + (parseInt($(ce).css(\"paddingLeft\"),10) || 0) - this.margins.left,\n\t\t\t\tco.top + (parseInt($(ce).css(\"borderTopWidth\"),10) || 0) + (parseInt($(ce).css(\"paddingTop\"),10) || 0) - this.margins.top,\n\t\t\t\tco.left+(over ? Math.max(ce.scrollWidth,ce.offsetWidth) : ce.offsetWidth) - (parseInt($(ce).css(\"borderLeftWidth\"),10) || 0) - (parseInt($(ce).css(\"paddingRight\"),10) || 0) - this.helperProportions.width - this.margins.left,\n\t\t\t\tco.top+(over ? Math.max(ce.scrollHeight,ce.offsetHeight) : ce.offsetHeight) - (parseInt($(ce).css(\"borderTopWidth\"),10) || 0) - (parseInt($(ce).css(\"paddingBottom\"),10) || 0) - this.helperProportions.height - this.margins.top\n\t\t\t];\n\t\t}\n\n\t},\n\n\t_convertPositionTo: function(d, pos) {\n\n\t\tif(!pos) {\n\t\t\tpos = this.position;\n\t\t}\n\t\tvar mod = d === \"absolute\" ? 1 : -1,\n\t\t\tscroll = this.cssPosition === \"absolute\" && !(this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent,\n\t\t\tscrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);\n\n\t\treturn {\n\t\t\ttop: (\n\t\t\t\tpos.top\t+\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.relative.top * mod +\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.top * mod -\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ) * mod)\n\t\t\t),\n\t\t\tleft: (\n\t\t\t\tpos.left +\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.relative.left * mod +\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.left * mod\t-\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ) * mod)\n\t\t\t)\n\t\t};\n\n\t},\n\n\t_generatePosition: function(event) {\n\n\t\tvar top, left,\n\t\t\to = this.options,\n\t\t\tpageX = event.pageX,\n\t\t\tpageY = event.pageY,\n\t\t\tscroll = this.cssPosition === \"absolute\" && !(this.scrollParent[0] !== document && $.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, scrollIsRootNode = (/(html|body)/i).test(scroll[0].tagName);\n\n\t\t// This is another very weird special case that only happens for relative elements:\n\t\t// 1. If the css position is relative\n\t\t// 2. and the scroll parent is the document or similar to the offset parent\n\t\t// we have to refresh the relative offset during the scroll so there are no jumps\n\t\tif(this.cssPosition === \"relative\" && !(this.scrollParent[0] !== document && this.scrollParent[0] !== this.offsetParent[0])) {\n\t\t\tthis.offset.relative = this._getRelativeOffset();\n\t\t}\n\n\t\t/*\n\t\t * - Position constraining -\n\t\t * Constrain the position to a mix of grid, containment.\n\t\t */\n\n\t\tif(this.originalPosition) { //If we are not dragging yet, we won't check for options\n\n\t\t\tif(this.containment) {\n\t\t\t\tif(event.pageX - this.offset.click.left < this.containment[0]) {\n\t\t\t\t\tpageX = this.containment[0] + this.offset.click.left;\n\t\t\t\t}\n\t\t\t\tif(event.pageY - this.offset.click.top < this.containment[1]) {\n\t\t\t\t\tpageY = this.containment[1] + this.offset.click.top;\n\t\t\t\t}\n\t\t\t\tif(event.pageX - this.offset.click.left > this.containment[2]) {\n\t\t\t\t\tpageX = this.containment[2] + this.offset.click.left;\n\t\t\t\t}\n\t\t\t\tif(event.pageY - this.offset.click.top > this.containment[3]) {\n\t\t\t\t\tpageY = this.containment[3] + this.offset.click.top;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif(o.grid) {\n\t\t\t\ttop = this.originalPageY + Math.round((pageY - this.originalPageY) / o.grid[1]) * o.grid[1];\n\t\t\t\tpageY = this.containment ? ( (top - this.offset.click.top >= this.containment[1] && top - this.offset.click.top <= this.containment[3]) ? top : ((top - this.offset.click.top >= this.containment[1]) ? top - o.grid[1] : top + o.grid[1])) : top;\n\n\t\t\t\tleft = this.originalPageX + Math.round((pageX - this.originalPageX) / o.grid[0]) * o.grid[0];\n\t\t\t\tpageX = this.containment ? ( (left - this.offset.click.left >= this.containment[0] && left - this.offset.click.left <= this.containment[2]) ? left : ((left - this.offset.click.left >= this.containment[0]) ? left - o.grid[0] : left + o.grid[0])) : left;\n\t\t\t}\n\n\t\t}\n\n\t\treturn {\n\t\t\ttop: (\n\t\t\t\tpageY -\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.click.top -\t\t\t\t\t\t\t\t\t\t\t\t\t// Click offset (relative to the element)\n\t\t\t\tthis.offset.relative.top\t-\t\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.top +\t\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollTop() : ( scrollIsRootNode ? 0 : scroll.scrollTop() ) ))\n\t\t\t),\n\t\t\tleft: (\n\t\t\t\tpageX -\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t// The absolute mouse position\n\t\t\t\tthis.offset.click.left -\t\t\t\t\t\t\t\t\t\t\t\t// Click offset (relative to the element)\n\t\t\t\tthis.offset.relative.left\t-\t\t\t\t\t\t\t\t\t\t\t// Only for relative positioned nodes: Relative offset from element to offset parent\n\t\t\t\tthis.offset.parent.left +\t\t\t\t\t\t\t\t\t\t\t\t// The offsetParent's offset without borders (offset + border)\n\t\t\t\t( ( this.cssPosition === \"fixed\" ? -this.scrollParent.scrollLeft() : scrollIsRootNode ? 0 : scroll.scrollLeft() ))\n\t\t\t)\n\t\t};\n\n\t},\n\n\t_rearrange: function(event, i, a, hardRefresh) {\n\n\t\ta ? a[0].appendChild(this.placeholder[0]) : i.item[0].parentNode.insertBefore(this.placeholder[0], (this.direction === \"down\" ? i.item[0] : i.item[0].nextSibling));\n\n\t\t//Various things done here to improve the performance:\n\t\t// 1. we create a setTimeout, that calls refreshPositions\n\t\t// 2. on the instance, we have a counter variable, that get's higher after every append\n\t\t// 3. on the local scope, we copy the counter variable, and check in the timeout, if it's still the same\n\t\t// 4. this lets only the last addition to the timeout stack through\n\t\tthis.counter = this.counter ? ++this.counter : 1;\n\t\tvar counter = this.counter;\n\n\t\tthis._delay(function() {\n\t\t\tif(counter === this.counter) {\n\t\t\t\tthis.refreshPositions(!hardRefresh); //Precompute after each DOM insertion, NOT on mousemove\n\t\t\t}\n\t\t});\n\n\t},\n\n\t_clear: function(event, noPropagation) {\n\n\t\tthis.reverting = false;\n\t\t// We delay all events that have to be triggered to after the point where the placeholder has been removed and\n\t\t// everything else normalized again\n\t\tvar i,\n\t\t\tdelayedTriggers = [];\n\n\t\t// We first have to update the dom position of the actual currentItem\n\t\t// Note: don't do it if the current item is already removed (by a user), or it gets reappended (see #4088)\n\t\tif(!this._noFinalSort && this.currentItem.parent().length) {\n\t\t\tthis.placeholder.before(this.currentItem);\n\t\t}\n\t\tthis._noFinalSort = null;\n\n\t\tif(this.helper[0] === this.currentItem[0]) {\n\t\t\tfor(i in this._storedCSS) {\n\t\t\t\tif(this._storedCSS[i] === \"auto\" || this._storedCSS[i] === \"static\") {\n\t\t\t\t\tthis._storedCSS[i] = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.currentItem.css(this._storedCSS).removeClass(\"ui-sortable-helper\");\n\t\t} else {\n\t\t\tthis.currentItem.show();\n\t\t}\n\n\t\tif(this.fromOutside && !noPropagation) {\n\t\t\tdelayedTriggers.push(function(event) { this._trigger(\"receive\", event, this._uiHash(this.fromOutside)); });\n\t\t}\n\t\tif((this.fromOutside || this.domPosition.prev !== this.currentItem.prev().not(\".ui-sortable-helper\")[0] || this.domPosition.parent !== this.currentItem.parent()[0]) && !noPropagation) {\n\t\t\tdelayedTriggers.push(function(event) { this._trigger(\"update\", event, this._uiHash()); }); //Trigger update callback if the DOM position has changed\n\t\t}\n\n\t\t// Check if the items Container has Changed and trigger appropriate\n\t\t// events.\n\t\tif (this !== this.currentContainer) {\n\t\t\tif(!noPropagation) {\n\t\t\t\tdelayedTriggers.push(function(event) { this._trigger(\"remove\", event, this._uiHash()); });\n\t\t\t\tdelayedTriggers.push((function(c) { return function(event) { c._trigger(\"receive\", event, this._uiHash(this)); };  }).call(this, this.currentContainer));\n\t\t\t\tdelayedTriggers.push((function(c) { return function(event) { c._trigger(\"update\", event, this._uiHash(this));  }; }).call(this, this.currentContainer));\n\t\t\t}\n\t\t}\n\n\n\t\t//Post events to containers\n\t\tfunction delayEvent( type, instance, container ) {\n\t\t\treturn function( event ) {\n\t\t\t\tcontainer._trigger( type, event, instance._uiHash( instance ) );\n\t\t\t};\n\t\t}\n\t\tfor (i = this.containers.length - 1; i >= 0; i--){\n\t\t\tif (!noPropagation) {\n\t\t\t\tdelayedTriggers.push( delayEvent( \"deactivate\", this, this.containers[ i ] ) );\n\t\t\t}\n\t\t\tif(this.containers[i].containerCache.over) {\n\t\t\t\tdelayedTriggers.push( delayEvent( \"out\", this, this.containers[ i ] ) );\n\t\t\t\tthis.containers[i].containerCache.over = 0;\n\t\t\t}\n\t\t}\n\n\t\t//Do what was originally in plugins\n\t\tif ( this.storedCursor ) {\n\t\t\tthis.document.find( \"body\" ).css( \"cursor\", this.storedCursor );\n\t\t\tthis.storedStylesheet.remove();\n\t\t}\n\t\tif(this._storedOpacity) {\n\t\t\tthis.helper.css(\"opacity\", this._storedOpacity);\n\t\t}\n\t\tif(this._storedZIndex) {\n\t\t\tthis.helper.css(\"zIndex\", this._storedZIndex === \"auto\" ? \"\" : this._storedZIndex);\n\t\t}\n\n\t\tthis.dragging = false;\n\t\tif(this.cancelHelperRemoval) {\n\t\t\tif(!noPropagation) {\n\t\t\t\tthis._trigger(\"beforeStop\", event, this._uiHash());\n\t\t\t\tfor (i=0; i < delayedTriggers.length; i++) {\n\t\t\t\t\tdelayedTriggers[i].call(this, event);\n\t\t\t\t} //Trigger all delayed events\n\t\t\t\tthis._trigger(\"stop\", event, this._uiHash());\n\t\t\t}\n\n\t\t\tthis.fromOutside = false;\n\t\t\treturn false;\n\t\t}\n\n\t\tif(!noPropagation) {\n\t\t\tthis._trigger(\"beforeStop\", event, this._uiHash());\n\t\t}\n\n\t\t//$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately, it unbinds ALL events from the original node!\n\t\tthis.placeholder[0].parentNode.removeChild(this.placeholder[0]);\n\n\t\tif(this.helper[0] !== this.currentItem[0]) {\n\t\t\tthis.helper.remove();\n\t\t}\n\t\tthis.helper = null;\n\n\t\tif(!noPropagation) {\n\t\t\tfor (i=0; i < delayedTriggers.length; i++) {\n\t\t\t\tdelayedTriggers[i].call(this, event);\n\t\t\t} //Trigger all delayed events\n\t\t\tthis._trigger(\"stop\", event, this._uiHash());\n\t\t}\n\n\t\tthis.fromOutside = false;\n\t\treturn true;\n\n\t},\n\n\t_trigger: function() {\n\t\tif ($.Widget.prototype._trigger.apply(this, arguments) === false) {\n\t\t\tthis.cancel();\n\t\t}\n\t},\n\n\t_uiHash: function(_inst) {\n\t\tvar inst = _inst || this;\n\t\treturn {\n\t\t\thelper: inst.helper,\n\t\t\tplaceholder: inst.placeholder || $([]),\n\t\t\tposition: inst.position,\n\t\t\toriginalPosition: inst.originalPosition,\n\t\t\toffset: inst.positionAbs,\n\t\t\titem: inst.currentItem,\n\t\t\tsender: _inst ? _inst.element : null\n\t\t};\n\t}\n\n});\n\n})(jQuery);\n\n(function($, undefined) {\n\nvar dataSpace = \"ui-effects-\";\n\n$.effects = {\n\teffect: {}\n};\n\n/*!\n * jQuery Color Animations v2.1.2\n * https://github.com/jquery/jquery-color\n *\n * Copyright 2013 jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n *\n * Date: Wed Jan 16 08:47:09 2013 -0600\n */\n(function( jQuery, undefined ) {\n\n\tvar stepHooks = \"backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor\",\n\n\t// plusequals test for += 100 -= 100\n\trplusequals = /^([\\-+])=\\s*(\\d+\\.?\\d*)/,\n\t// a set of RE's that can match strings and generate color tuples.\n\tstringParsers = [{\n\t\t\tre: /rgba?\\(\\s*(\\d{1,3})\\s*,\\s*(\\d{1,3})\\s*,\\s*(\\d{1,3})\\s*(?:,\\s*(\\d?(?:\\.\\d+)?)\\s*)?\\)/,\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\texecResult[ 1 ],\n\t\t\t\t\texecResult[ 2 ],\n\t\t\t\t\texecResult[ 3 ],\n\t\t\t\t\texecResult[ 4 ]\n\t\t\t\t];\n\t\t\t}\n\t\t}, {\n\t\t\tre: /rgba?\\(\\s*(\\d+(?:\\.\\d+)?)\\%\\s*,\\s*(\\d+(?:\\.\\d+)?)\\%\\s*,\\s*(\\d+(?:\\.\\d+)?)\\%\\s*(?:,\\s*(\\d?(?:\\.\\d+)?)\\s*)?\\)/,\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\texecResult[ 1 ] * 2.55,\n\t\t\t\t\texecResult[ 2 ] * 2.55,\n\t\t\t\t\texecResult[ 3 ] * 2.55,\n\t\t\t\t\texecResult[ 4 ]\n\t\t\t\t];\n\t\t\t}\n\t\t}, {\n\t\t\t// this regex ignores A-F because it's compared against an already lowercased string\n\t\t\tre: /#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\tparseInt( execResult[ 1 ], 16 ),\n\t\t\t\t\tparseInt( execResult[ 2 ], 16 ),\n\t\t\t\t\tparseInt( execResult[ 3 ], 16 )\n\t\t\t\t];\n\t\t\t}\n\t\t}, {\n\t\t\t// this regex ignores A-F because it's compared against an already lowercased string\n\t\t\tre: /#([a-f0-9])([a-f0-9])([a-f0-9])/,\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\tparseInt( execResult[ 1 ] + execResult[ 1 ], 16 ),\n\t\t\t\t\tparseInt( execResult[ 2 ] + execResult[ 2 ], 16 ),\n\t\t\t\t\tparseInt( execResult[ 3 ] + execResult[ 3 ], 16 )\n\t\t\t\t];\n\t\t\t}\n\t\t}, {\n\t\t\tre: /hsla?\\(\\s*(\\d+(?:\\.\\d+)?)\\s*,\\s*(\\d+(?:\\.\\d+)?)\\%\\s*,\\s*(\\d+(?:\\.\\d+)?)\\%\\s*(?:,\\s*(\\d?(?:\\.\\d+)?)\\s*)?\\)/,\n\t\t\tspace: \"hsla\",\n\t\t\tparse: function( execResult ) {\n\t\t\t\treturn [\n\t\t\t\t\texecResult[ 1 ],\n\t\t\t\t\texecResult[ 2 ] / 100,\n\t\t\t\t\texecResult[ 3 ] / 100,\n\t\t\t\t\texecResult[ 4 ]\n\t\t\t\t];\n\t\t\t}\n\t\t}],\n\n\t// jQuery.Color( )\n\tcolor = jQuery.Color = function( color, green, blue, alpha ) {\n\t\treturn new jQuery.Color.fn.parse( color, green, blue, alpha );\n\t},\n\tspaces = {\n\t\trgba: {\n\t\t\tprops: {\n\t\t\t\tred: {\n\t\t\t\t\tidx: 0,\n\t\t\t\t\ttype: \"byte\"\n\t\t\t\t},\n\t\t\t\tgreen: {\n\t\t\t\t\tidx: 1,\n\t\t\t\t\ttype: \"byte\"\n\t\t\t\t},\n\t\t\t\tblue: {\n\t\t\t\t\tidx: 2,\n\t\t\t\t\ttype: \"byte\"\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\thsla: {\n\t\t\tprops: {\n\t\t\t\thue: {\n\t\t\t\t\tidx: 0,\n\t\t\t\t\ttype: \"degrees\"\n\t\t\t\t},\n\t\t\t\tsaturation: {\n\t\t\t\t\tidx: 1,\n\t\t\t\t\ttype: \"percent\"\n\t\t\t\t},\n\t\t\t\tlightness: {\n\t\t\t\t\tidx: 2,\n\t\t\t\t\ttype: \"percent\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\tpropTypes = {\n\t\t\"byte\": {\n\t\t\tfloor: true,\n\t\t\tmax: 255\n\t\t},\n\t\t\"percent\": {\n\t\t\tmax: 1\n\t\t},\n\t\t\"degrees\": {\n\t\t\tmod: 360,\n\t\t\tfloor: true\n\t\t}\n\t},\n\tsupport = color.support = {},\n\n\t// element for support tests\n\tsupportElem = jQuery( \"<p>\" )[ 0 ],\n\n\t// colors = jQuery.Color.names\n\tcolors,\n\n\t// local aliases of functions called often\n\teach = jQuery.each;\n\n// determine rgba support immediately\nsupportElem.style.cssText = \"background-color:rgba(1,1,1,.5)\";\nsupport.rgba = supportElem.style.backgroundColor.indexOf( \"rgba\" ) > -1;\n\n// define cache name and alpha properties\n// for rgba and hsla spaces\neach( spaces, function( spaceName, space ) {\n\tspace.cache = \"_\" + spaceName;\n\tspace.props.alpha = {\n\t\tidx: 3,\n\t\ttype: \"percent\",\n\t\tdef: 1\n\t};\n});\n\nfunction clamp( value, prop, allowEmpty ) {\n\tvar type = propTypes[ prop.type ] || {};\n\n\tif ( value == null ) {\n\t\treturn (allowEmpty || !prop.def) ? null : prop.def;\n\t}\n\n\t// ~~ is an short way of doing floor for positive numbers\n\tvalue = type.floor ? ~~value : parseFloat( value );\n\n\t// IE will pass in empty strings as value for alpha,\n\t// which will hit this case\n\tif ( isNaN( value ) ) {\n\t\treturn prop.def;\n\t}\n\n\tif ( type.mod ) {\n\t\t// we add mod before modding to make sure that negatives values\n\t\t// get converted properly: -10 -> 350\n\t\treturn (value + type.mod) % type.mod;\n\t}\n\n\t// for now all property types without mod have min and max\n\treturn 0 > value ? 0 : type.max < value ? type.max : value;\n}\n\nfunction stringParse( string ) {\n\tvar inst = color(),\n\t\trgba = inst._rgba = [];\n\n\tstring = string.toLowerCase();\n\n\teach( stringParsers, function( i, parser ) {\n\t\tvar parsed,\n\t\t\tmatch = parser.re.exec( string ),\n\t\t\tvalues = match && parser.parse( match ),\n\t\t\tspaceName = parser.space || \"rgba\";\n\n\t\tif ( values ) {\n\t\t\tparsed = inst[ spaceName ]( values );\n\n\t\t\t// if this was an rgba parse the assignment might happen twice\n\t\t\t// oh well....\n\t\t\tinst[ spaces[ spaceName ].cache ] = parsed[ spaces[ spaceName ].cache ];\n\t\t\trgba = inst._rgba = parsed._rgba;\n\n\t\t\t// exit each( stringParsers ) here because we matched\n\t\t\treturn false;\n\t\t}\n\t});\n\n\t// Found a stringParser that handled it\n\tif ( rgba.length ) {\n\n\t\t// if this came from a parsed string, force \"transparent\" when alpha is 0\n\t\t// chrome, (and maybe others) return \"transparent\" as rgba(0,0,0,0)\n\t\tif ( rgba.join() === \"0,0,0,0\" ) {\n\t\t\tjQuery.extend( rgba, colors.transparent );\n\t\t}\n\t\treturn inst;\n\t}\n\n\t// named colors\n\treturn colors[ string ];\n}\n\ncolor.fn = jQuery.extend( color.prototype, {\n\tparse: function( red, green, blue, alpha ) {\n\t\tif ( red === undefined ) {\n\t\t\tthis._rgba = [ null, null, null, null ];\n\t\t\treturn this;\n\t\t}\n\t\tif ( red.jquery || red.nodeType ) {\n\t\t\tred = jQuery( red ).css( green );\n\t\t\tgreen = undefined;\n\t\t}\n\n\t\tvar inst = this,\n\t\t\ttype = jQuery.type( red ),\n\t\t\trgba = this._rgba = [];\n\n\t\t// more than 1 argument specified - assume ( red, green, blue, alpha )\n\t\tif ( green !== undefined ) {\n\t\t\tred = [ red, green, blue, alpha ];\n\t\t\ttype = \"array\";\n\t\t}\n\n\t\tif ( type === \"string\" ) {\n\t\t\treturn this.parse( stringParse( red ) || colors._default );\n\t\t}\n\n\t\tif ( type === \"array\" ) {\n\t\t\teach( spaces.rgba.props, function( key, prop ) {\n\t\t\t\trgba[ prop.idx ] = clamp( red[ prop.idx ], prop );\n\t\t\t});\n\t\t\treturn this;\n\t\t}\n\n\t\tif ( type === \"object\" ) {\n\t\t\tif ( red instanceof color ) {\n\t\t\t\teach( spaces, function( spaceName, space ) {\n\t\t\t\t\tif ( red[ space.cache ] ) {\n\t\t\t\t\t\tinst[ space.cache ] = red[ space.cache ].slice();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\teach( spaces, function( spaceName, space ) {\n\t\t\t\t\tvar cache = space.cache;\n\t\t\t\t\teach( space.props, function( key, prop ) {\n\n\t\t\t\t\t\t// if the cache doesn't exist, and we know how to convert\n\t\t\t\t\t\tif ( !inst[ cache ] && space.to ) {\n\n\t\t\t\t\t\t\t// if the value was null, we don't need to copy it\n\t\t\t\t\t\t\t// if the key was alpha, we don't need to copy it either\n\t\t\t\t\t\t\tif ( key === \"alpha\" || red[ key ] == null ) {\n\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tinst[ cache ] = space.to( inst._rgba );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// this is the only case where we allow nulls for ALL properties.\n\t\t\t\t\t\t// call clamp with alwaysAllowEmpty\n\t\t\t\t\t\tinst[ cache ][ prop.idx ] = clamp( red[ key ], prop, true );\n\t\t\t\t\t});\n\n\t\t\t\t\t// everything defined but alpha?\n\t\t\t\t\tif ( inst[ cache ] && jQuery.inArray( null, inst[ cache ].slice( 0, 3 ) ) < 0 ) {\n\t\t\t\t\t\t// use the default of 1\n\t\t\t\t\t\tinst[ cache ][ 3 ] = 1;\n\t\t\t\t\t\tif ( space.from ) {\n\t\t\t\t\t\t\tinst._rgba = space.from( inst[ cache ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t},\n\tis: function( compare ) {\n\t\tvar is = color( compare ),\n\t\t\tsame = true,\n\t\t\tinst = this;\n\n\t\teach( spaces, function( _, space ) {\n\t\t\tvar localCache,\n\t\t\t\tisCache = is[ space.cache ];\n\t\t\tif (isCache) {\n\t\t\t\tlocalCache = inst[ space.cache ] || space.to && space.to( inst._rgba ) || [];\n\t\t\t\teach( space.props, function( _, prop ) {\n\t\t\t\t\tif ( isCache[ prop.idx ] != null ) {\n\t\t\t\t\t\tsame = ( isCache[ prop.idx ] === localCache[ prop.idx ] );\n\t\t\t\t\t\treturn same;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn same;\n\t\t});\n\t\treturn same;\n\t},\n\t_space: function() {\n\t\tvar used = [],\n\t\t\tinst = this;\n\t\teach( spaces, function( spaceName, space ) {\n\t\t\tif ( inst[ space.cache ] ) {\n\t\t\t\tused.push( spaceName );\n\t\t\t}\n\t\t});\n\t\treturn used.pop();\n\t},\n\ttransition: function( other, distance ) {\n\t\tvar end = color( other ),\n\t\t\tspaceName = end._space(),\n\t\t\tspace = spaces[ spaceName ],\n\t\t\tstartColor = this.alpha() === 0 ? color( \"transparent\" ) : this,\n\t\t\tstart = startColor[ space.cache ] || space.to( startColor._rgba ),\n\t\t\tresult = start.slice();\n\n\t\tend = end[ space.cache ];\n\t\teach( space.props, function( key, prop ) {\n\t\t\tvar index = prop.idx,\n\t\t\t\tstartValue = start[ index ],\n\t\t\t\tendValue = end[ index ],\n\t\t\t\ttype = propTypes[ prop.type ] || {};\n\n\t\t\t// if null, don't override start value\n\t\t\tif ( endValue === null ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// if null - use end\n\t\t\tif ( startValue === null ) {\n\t\t\t\tresult[ index ] = endValue;\n\t\t\t} else {\n\t\t\t\tif ( type.mod ) {\n\t\t\t\t\tif ( endValue - startValue > type.mod / 2 ) {\n\t\t\t\t\t\tstartValue += type.mod;\n\t\t\t\t\t} else if ( startValue - endValue > type.mod / 2 ) {\n\t\t\t\t\t\tstartValue -= type.mod;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tresult[ index ] = clamp( ( endValue - startValue ) * distance + startValue, prop );\n\t\t\t}\n\t\t});\n\t\treturn this[ spaceName ]( result );\n\t},\n\tblend: function( opaque ) {\n\t\t// if we are already opaque - return ourself\n\t\tif ( this._rgba[ 3 ] === 1 ) {\n\t\t\treturn this;\n\t\t}\n\n\t\tvar rgb = this._rgba.slice(),\n\t\t\ta = rgb.pop(),\n\t\t\tblend = color( opaque )._rgba;\n\n\t\treturn color( jQuery.map( rgb, function( v, i ) {\n\t\t\treturn ( 1 - a ) * blend[ i ] + a * v;\n\t\t}));\n\t},\n\ttoRgbaString: function() {\n\t\tvar prefix = \"rgba(\",\n\t\t\trgba = jQuery.map( this._rgba, function( v, i ) {\n\t\t\t\treturn v == null ? ( i > 2 ? 1 : 0 ) : v;\n\t\t\t});\n\n\t\tif ( rgba[ 3 ] === 1 ) {\n\t\t\trgba.pop();\n\t\t\tprefix = \"rgb(\";\n\t\t}\n\n\t\treturn prefix + rgba.join() + \")\";\n\t},\n\ttoHslaString: function() {\n\t\tvar prefix = \"hsla(\",\n\t\t\thsla = jQuery.map( this.hsla(), function( v, i ) {\n\t\t\t\tif ( v == null ) {\n\t\t\t\t\tv = i > 2 ? 1 : 0;\n\t\t\t\t}\n\n\t\t\t\t// catch 1 and 2\n\t\t\t\tif ( i && i < 3 ) {\n\t\t\t\t\tv = Math.round( v * 100 ) + \"%\";\n\t\t\t\t}\n\t\t\t\treturn v;\n\t\t\t});\n\n\t\tif ( hsla[ 3 ] === 1 ) {\n\t\t\thsla.pop();\n\t\t\tprefix = \"hsl(\";\n\t\t}\n\t\treturn prefix + hsla.join() + \")\";\n\t},\n\ttoHexString: function( includeAlpha ) {\n\t\tvar rgba = this._rgba.slice(),\n\t\t\talpha = rgba.pop();\n\n\t\tif ( includeAlpha ) {\n\t\t\trgba.push( ~~( alpha * 255 ) );\n\t\t}\n\n\t\treturn \"#\" + jQuery.map( rgba, function( v ) {\n\n\t\t\t// default to 0 when nulls exist\n\t\t\tv = ( v || 0 ).toString( 16 );\n\t\t\treturn v.length === 1 ? \"0\" + v : v;\n\t\t}).join(\"\");\n\t},\n\ttoString: function() {\n\t\treturn this._rgba[ 3 ] === 0 ? \"transparent\" : this.toRgbaString();\n\t}\n});\ncolor.fn.parse.prototype = color.fn;\n\n// hsla conversions adapted from:\n// https://code.google.com/p/maashaack/source/browse/packages/graphics/trunk/src/graphics/colors/HUE2RGB.as?r=5021\n\nfunction hue2rgb( p, q, h ) {\n\th = ( h + 1 ) % 1;\n\tif ( h * 6 < 1 ) {\n\t\treturn p + (q - p) * h * 6;\n\t}\n\tif ( h * 2 < 1) {\n\t\treturn q;\n\t}\n\tif ( h * 3 < 2 ) {\n\t\treturn p + (q - p) * ((2/3) - h) * 6;\n\t}\n\treturn p;\n}\n\nspaces.hsla.to = function ( rgba ) {\n\tif ( rgba[ 0 ] == null || rgba[ 1 ] == null || rgba[ 2 ] == null ) {\n\t\treturn [ null, null, null, rgba[ 3 ] ];\n\t}\n\tvar r = rgba[ 0 ] / 255,\n\t\tg = rgba[ 1 ] / 255,\n\t\tb = rgba[ 2 ] / 255,\n\t\ta = rgba[ 3 ],\n\t\tmax = Math.max( r, g, b ),\n\t\tmin = Math.min( r, g, b ),\n\t\tdiff = max - min,\n\t\tadd = max + min,\n\t\tl = add * 0.5,\n\t\th, s;\n\n\tif ( min === max ) {\n\t\th = 0;\n\t} else if ( r === max ) {\n\t\th = ( 60 * ( g - b ) / diff ) + 360;\n\t} else if ( g === max ) {\n\t\th = ( 60 * ( b - r ) / diff ) + 120;\n\t} else {\n\t\th = ( 60 * ( r - g ) / diff ) + 240;\n\t}\n\n\t// chroma (diff) == 0 means greyscale which, by definition, saturation = 0%\n\t// otherwise, saturation is based on the ratio of chroma (diff) to lightness (add)\n\tif ( diff === 0 ) {\n\t\ts = 0;\n\t} else if ( l <= 0.5 ) {\n\t\ts = diff / add;\n\t} else {\n\t\ts = diff / ( 2 - add );\n\t}\n\treturn [ Math.round(h) % 360, s, l, a == null ? 1 : a ];\n};\n\nspaces.hsla.from = function ( hsla ) {\n\tif ( hsla[ 0 ] == null || hsla[ 1 ] == null || hsla[ 2 ] == null ) {\n\t\treturn [ null, null, null, hsla[ 3 ] ];\n\t}\n\tvar h = hsla[ 0 ] / 360,\n\t\ts = hsla[ 1 ],\n\t\tl = hsla[ 2 ],\n\t\ta = hsla[ 3 ],\n\t\tq = l <= 0.5 ? l * ( 1 + s ) : l + s - l * s,\n\t\tp = 2 * l - q;\n\n\treturn [\n\t\tMath.round( hue2rgb( p, q, h + ( 1 / 3 ) ) * 255 ),\n\t\tMath.round( hue2rgb( p, q, h ) * 255 ),\n\t\tMath.round( hue2rgb( p, q, h - ( 1 / 3 ) ) * 255 ),\n\t\ta\n\t];\n};\n\n\neach( spaces, function( spaceName, space ) {\n\tvar props = space.props,\n\t\tcache = space.cache,\n\t\tto = space.to,\n\t\tfrom = space.from;\n\n\t// makes rgba() and hsla()\n\tcolor.fn[ spaceName ] = function( value ) {\n\n\t\t// generate a cache for this space if it doesn't exist\n\t\tif ( to && !this[ cache ] ) {\n\t\t\tthis[ cache ] = to( this._rgba );\n\t\t}\n\t\tif ( value === undefined ) {\n\t\t\treturn this[ cache ].slice();\n\t\t}\n\n\t\tvar ret,\n\t\t\ttype = jQuery.type( value ),\n\t\t\tarr = ( type === \"array\" || type === \"object\" ) ? value : arguments,\n\t\t\tlocal = this[ cache ].slice();\n\n\t\teach( props, function( key, prop ) {\n\t\t\tvar val = arr[ type === \"object\" ? key : prop.idx ];\n\t\t\tif ( val == null ) {\n\t\t\t\tval = local[ prop.idx ];\n\t\t\t}\n\t\t\tlocal[ prop.idx ] = clamp( val, prop );\n\t\t});\n\n\t\tif ( from ) {\n\t\t\tret = color( from( local ) );\n\t\t\tret[ cache ] = local;\n\t\t\treturn ret;\n\t\t} else {\n\t\t\treturn color( local );\n\t\t}\n\t};\n\n\t// makes red() green() blue() alpha() hue() saturation() lightness()\n\teach( props, function( key, prop ) {\n\t\t// alpha is included in more than one space\n\t\tif ( color.fn[ key ] ) {\n\t\t\treturn;\n\t\t}\n\t\tcolor.fn[ key ] = function( value ) {\n\t\t\tvar vtype = jQuery.type( value ),\n\t\t\t\tfn = ( key === \"alpha\" ? ( this._hsla ? \"hsla\" : \"rgba\" ) : spaceName ),\n\t\t\t\tlocal = this[ fn ](),\n\t\t\t\tcur = local[ prop.idx ],\n\t\t\t\tmatch;\n\n\t\t\tif ( vtype === \"undefined\" ) {\n\t\t\t\treturn cur;\n\t\t\t}\n\n\t\t\tif ( vtype === \"function\" ) {\n\t\t\t\tvalue = value.call( this, cur );\n\t\t\t\tvtype = jQuery.type( value );\n\t\t\t}\n\t\t\tif ( value == null && prop.empty ) {\n\t\t\t\treturn this;\n\t\t\t}\n\t\t\tif ( vtype === \"string\" ) {\n\t\t\t\tmatch = rplusequals.exec( value );\n\t\t\t\tif ( match ) {\n\t\t\t\t\tvalue = cur + parseFloat( match[ 2 ] ) * ( match[ 1 ] === \"+\" ? 1 : -1 );\n\t\t\t\t}\n\t\t\t}\n\t\t\tlocal[ prop.idx ] = value;\n\t\t\treturn this[ fn ]( local );\n\t\t};\n\t});\n});\n\n// add cssHook and .fx.step function for each named hook.\n// accept a space separated string of properties\ncolor.hook = function( hook ) {\n\tvar hooks = hook.split( \" \" );\n\teach( hooks, function( i, hook ) {\n\t\tjQuery.cssHooks[ hook ] = {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar parsed, curElem,\n\t\t\t\t\tbackgroundColor = \"\";\n\n\t\t\t\tif ( value !== \"transparent\" && ( jQuery.type( value ) !== \"string\" || ( parsed = stringParse( value ) ) ) ) {\n\t\t\t\t\tvalue = color( parsed || value );\n\t\t\t\t\tif ( !support.rgba && value._rgba[ 3 ] !== 1 ) {\n\t\t\t\t\t\tcurElem = hook === \"backgroundColor\" ? elem.parentNode : elem;\n\t\t\t\t\t\twhile (\n\t\t\t\t\t\t\t(backgroundColor === \"\" || backgroundColor === \"transparent\") &&\n\t\t\t\t\t\t\tcurElem && curElem.style\n\t\t\t\t\t\t) {\n\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\tbackgroundColor = jQuery.css( curElem, \"backgroundColor\" );\n\t\t\t\t\t\t\t\tcurElem = curElem.parentNode;\n\t\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tvalue = value.blend( backgroundColor && backgroundColor !== \"transparent\" ?\n\t\t\t\t\t\t\tbackgroundColor :\n\t\t\t\t\t\t\t\"_default\" );\n\t\t\t\t\t}\n\n\t\t\t\t\tvalue = value.toRgbaString();\n\t\t\t\t}\n\t\t\t\ttry {\n\t\t\t\t\telem.style[ hook ] = value;\n\t\t\t\t} catch( e ) {\n\t\t\t\t\t// wrapped to prevent IE from throwing errors on \"invalid\" values like 'auto' or 'inherit'\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t\tjQuery.fx.step[ hook ] = function( fx ) {\n\t\t\tif ( !fx.colorInit ) {\n\t\t\t\tfx.start = color( fx.elem, hook );\n\t\t\t\tfx.end = color( fx.end );\n\t\t\t\tfx.colorInit = true;\n\t\t\t}\n\t\t\tjQuery.cssHooks[ hook ].set( fx.elem, fx.start.transition( fx.end, fx.pos ) );\n\t\t};\n\t});\n\n};\n\ncolor.hook( stepHooks );\n\njQuery.cssHooks.borderColor = {\n\texpand: function( value ) {\n\t\tvar expanded = {};\n\n\t\teach( [ \"Top\", \"Right\", \"Bottom\", \"Left\" ], function( i, part ) {\n\t\t\texpanded[ \"border\" + part + \"Color\" ] = value;\n\t\t});\n\t\treturn expanded;\n\t}\n};\n\n// Basic color names only.\n// Usage of any of the other color names requires adding yourself or including\n// jquery.color.svg-names.js.\ncolors = jQuery.Color.names = {\n\t// 4.1. Basic color keywords\n\taqua: \"#00ffff\",\n\tblack: \"#000000\",\n\tblue: \"#0000ff\",\n\tfuchsia: \"#ff00ff\",\n\tgray: \"#808080\",\n\tgreen: \"#008000\",\n\tlime: \"#00ff00\",\n\tmaroon: \"#800000\",\n\tnavy: \"#000080\",\n\tolive: \"#808000\",\n\tpurple: \"#800080\",\n\tred: \"#ff0000\",\n\tsilver: \"#c0c0c0\",\n\tteal: \"#008080\",\n\twhite: \"#ffffff\",\n\tyellow: \"#ffff00\",\n\n\t// 4.2.3. \"transparent\" color keyword\n\ttransparent: [ null, null, null, 0 ],\n\n\t_default: \"#ffffff\"\n};\n\n})( jQuery );\n\n\n/******************************************************************************/\n/****************************** CLASS ANIMATIONS ******************************/\n/******************************************************************************/\n(function() {\n\nvar classAnimationActions = [ \"add\", \"remove\", \"toggle\" ],\n\tshorthandStyles = {\n\t\tborder: 1,\n\t\tborderBottom: 1,\n\t\tborderColor: 1,\n\t\tborderLeft: 1,\n\t\tborderRight: 1,\n\t\tborderTop: 1,\n\t\tborderWidth: 1,\n\t\tmargin: 1,\n\t\tpadding: 1\n\t};\n\n$.each([ \"borderLeftStyle\", \"borderRightStyle\", \"borderBottomStyle\", \"borderTopStyle\" ], function( _, prop ) {\n\t$.fx.step[ prop ] = function( fx ) {\n\t\tif ( fx.end !== \"none\" && !fx.setAttr || fx.pos === 1 && !fx.setAttr ) {\n\t\t\tjQuery.style( fx.elem, prop, fx.end );\n\t\t\tfx.setAttr = true;\n\t\t}\n\t};\n});\n\nfunction getElementStyles( elem ) {\n\tvar key, len,\n\t\tstyle = elem.ownerDocument.defaultView ?\n\t\t\telem.ownerDocument.defaultView.getComputedStyle( elem, null ) :\n\t\t\telem.currentStyle,\n\t\tstyles = {};\n\n\tif ( style && style.length && style[ 0 ] && style[ style[ 0 ] ] ) {\n\t\tlen = style.length;\n\t\twhile ( len-- ) {\n\t\t\tkey = style[ len ];\n\t\t\tif ( typeof style[ key ] === \"string\" ) {\n\t\t\t\tstyles[ $.camelCase( key ) ] = style[ key ];\n\t\t\t}\n\t\t}\n\t// support: Opera, IE <9\n\t} else {\n\t\tfor ( key in style ) {\n\t\t\tif ( typeof style[ key ] === \"string\" ) {\n\t\t\t\tstyles[ key ] = style[ key ];\n\t\t\t}\n\t\t}\n\t}\n\n\treturn styles;\n}\n\n\nfunction styleDifference( oldStyle, newStyle ) {\n\tvar diff = {},\n\t\tname, value;\n\n\tfor ( name in newStyle ) {\n\t\tvalue = newStyle[ name ];\n\t\tif ( oldStyle[ name ] !== value ) {\n\t\t\tif ( !shorthandStyles[ name ] ) {\n\t\t\t\tif ( $.fx.step[ name ] || !isNaN( parseFloat( value ) ) ) {\n\t\t\t\t\tdiff[ name ] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn diff;\n}\n\n// support: jQuery <1.8\nif ( !$.fn.addBack ) {\n\t$.fn.addBack = function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t};\n}\n\n$.effects.animateClass = function( value, duration, easing, callback ) {\n\tvar o = $.speed( duration, easing, callback );\n\n\treturn this.queue( function() {\n\t\tvar animated = $( this ),\n\t\t\tbaseClass = animated.attr( \"class\" ) || \"\",\n\t\t\tapplyClassChange,\n\t\t\tallAnimations = o.children ? animated.find( \"*\" ).addBack() : animated;\n\n\t\t// map the animated objects to store the original styles.\n\t\tallAnimations = allAnimations.map(function() {\n\t\t\tvar el = $( this );\n\t\t\treturn {\n\t\t\t\tel: el,\n\t\t\t\tstart: getElementStyles( this )\n\t\t\t};\n\t\t});\n\n\t\t// apply class change\n\t\tapplyClassChange = function() {\n\t\t\t$.each( classAnimationActions, function(i, action) {\n\t\t\t\tif ( value[ action ] ) {\n\t\t\t\t\tanimated[ action + \"Class\" ]( value[ action ] );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\t\tapplyClassChange();\n\n\t\t// map all animated objects again - calculate new styles and diff\n\t\tallAnimations = allAnimations.map(function() {\n\t\t\tthis.end = getElementStyles( this.el[ 0 ] );\n\t\t\tthis.diff = styleDifference( this.start, this.end );\n\t\t\treturn this;\n\t\t});\n\n\t\t// apply original class\n\t\tanimated.attr( \"class\", baseClass );\n\n\t\t// map all animated objects again - this time collecting a promise\n\t\tallAnimations = allAnimations.map(function() {\n\t\t\tvar styleInfo = this,\n\t\t\t\tdfd = $.Deferred(),\n\t\t\t\topts = $.extend({}, o, {\n\t\t\t\t\tqueue: false,\n\t\t\t\t\tcomplete: function() {\n\t\t\t\t\t\tdfd.resolve( styleInfo );\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\tthis.el.animate( this.diff, opts );\n\t\t\treturn dfd.promise();\n\t\t});\n\n\t\t// once all animations have completed:\n\t\t$.when.apply( $, allAnimations.get() ).done(function() {\n\n\t\t\t// set the final class\n\t\t\tapplyClassChange();\n\n\t\t\t// for each animated element,\n\t\t\t// clear all css properties that were animated\n\t\t\t$.each( arguments, function() {\n\t\t\t\tvar el = this.el;\n\t\t\t\t$.each( this.diff, function(key) {\n\t\t\t\t\tel.css( key, \"\" );\n\t\t\t\t});\n\t\t\t});\n\n\t\t\t// this is guarnteed to be there if you use jQuery.speed()\n\t\t\t// it also handles dequeuing the next anim...\n\t\t\to.complete.call( animated[ 0 ] );\n\t\t});\n\t});\n};\n\n$.fn.extend({\n\taddClass: (function( orig ) {\n\t\treturn function( classNames, speed, easing, callback ) {\n\t\t\treturn speed ?\n\t\t\t\t$.effects.animateClass.call( this,\n\t\t\t\t\t{ add: classNames }, speed, easing, callback ) :\n\t\t\t\torig.apply( this, arguments );\n\t\t};\n\t})( $.fn.addClass ),\n\n\tremoveClass: (function( orig ) {\n\t\treturn function( classNames, speed, easing, callback ) {\n\t\t\treturn arguments.length > 1 ?\n\t\t\t\t$.effects.animateClass.call( this,\n\t\t\t\t\t{ remove: classNames }, speed, easing, callback ) :\n\t\t\t\torig.apply( this, arguments );\n\t\t};\n\t})( $.fn.removeClass ),\n\n\ttoggleClass: (function( orig ) {\n\t\treturn function( classNames, force, speed, easing, callback ) {\n\t\t\tif ( typeof force === \"boolean\" || force === undefined ) {\n\t\t\t\tif ( !speed ) {\n\t\t\t\t\t// without speed parameter\n\t\t\t\t\treturn orig.apply( this, arguments );\n\t\t\t\t} else {\n\t\t\t\t\treturn $.effects.animateClass.call( this,\n\t\t\t\t\t\t(force ? { add: classNames } : { remove: classNames }),\n\t\t\t\t\t\tspeed, easing, callback );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\t// without force parameter\n\t\t\t\treturn $.effects.animateClass.call( this,\n\t\t\t\t\t{ toggle: classNames }, force, speed, easing );\n\t\t\t}\n\t\t};\n\t})( $.fn.toggleClass ),\n\n\tswitchClass: function( remove, add, speed, easing, callback) {\n\t\treturn $.effects.animateClass.call( this, {\n\t\t\tadd: add,\n\t\t\tremove: remove\n\t\t}, speed, easing, callback );\n\t}\n});\n\n})();\n\n/******************************************************************************/\n/*********************************** EFFECTS **********************************/\n/******************************************************************************/\n\n(function() {\n\n$.extend( $.effects, {\n\tversion: \"1.10.4\",\n\n\t// Saves a set of properties in a data storage\n\tsave: function( element, set ) {\n\t\tfor( var i=0; i < set.length; i++ ) {\n\t\t\tif ( set[ i ] !== null ) {\n\t\t\t\telement.data( dataSpace + set[ i ], element[ 0 ].style[ set[ i ] ] );\n\t\t\t}\n\t\t}\n\t},\n\n\t// Restores a set of previously saved properties from a data storage\n\trestore: function( element, set ) {\n\t\tvar val, i;\n\t\tfor( i=0; i < set.length; i++ ) {\n\t\t\tif ( set[ i ] !== null ) {\n\t\t\t\tval = element.data( dataSpace + set[ i ] );\n\t\t\t\t// support: jQuery 1.6.2\n\t\t\t\t// http://bugs.jquery.com/ticket/9917\n\t\t\t\t// jQuery 1.6.2 incorrectly returns undefined for any falsy value.\n\t\t\t\t// We can't differentiate between \"\" and 0 here, so we just assume\n\t\t\t\t// empty string since it's likely to be a more common value...\n\t\t\t\tif ( val === undefined ) {\n\t\t\t\t\tval = \"\";\n\t\t\t\t}\n\t\t\t\telement.css( set[ i ], val );\n\t\t\t}\n\t\t}\n\t},\n\n\tsetMode: function( el, mode ) {\n\t\tif (mode === \"toggle\") {\n\t\t\tmode = el.is( \":hidden\" ) ? \"show\" : \"hide\";\n\t\t}\n\t\treturn mode;\n\t},\n\n\t// Translates a [top,left] array into a baseline value\n\t// this should be a little more flexible in the future to handle a string & hash\n\tgetBaseline: function( origin, original ) {\n\t\tvar y, x;\n\t\tswitch ( origin[ 0 ] ) {\n\t\t\tcase \"top\": y = 0; break;\n\t\t\tcase \"middle\": y = 0.5; break;\n\t\t\tcase \"bottom\": y = 1; break;\n\t\t\tdefault: y = origin[ 0 ] / original.height;\n\t\t}\n\t\tswitch ( origin[ 1 ] ) {\n\t\t\tcase \"left\": x = 0; break;\n\t\t\tcase \"center\": x = 0.5; break;\n\t\t\tcase \"right\": x = 1; break;\n\t\t\tdefault: x = origin[ 1 ] / original.width;\n\t\t}\n\t\treturn {\n\t\t\tx: x,\n\t\t\ty: y\n\t\t};\n\t},\n\n\t// Wraps the element around a wrapper that copies position properties\n\tcreateWrapper: function( element ) {\n\n\t\t// if the element is already wrapped, return it\n\t\tif ( element.parent().is( \".ui-effects-wrapper\" )) {\n\t\t\treturn element.parent();\n\t\t}\n\n\t\t// wrap the element\n\t\tvar props = {\n\t\t\t\twidth: element.outerWidth(true),\n\t\t\t\theight: element.outerHeight(true),\n\t\t\t\t\"float\": element.css( \"float\" )\n\t\t\t},\n\t\t\twrapper = $( \"<div></div>\" )\n\t\t\t\t.addClass( \"ui-effects-wrapper\" )\n\t\t\t\t.css({\n\t\t\t\t\tfontSize: \"100%\",\n\t\t\t\t\tbackground: \"transparent\",\n\t\t\t\t\tborder: \"none\",\n\t\t\t\t\tmargin: 0,\n\t\t\t\t\tpadding: 0\n\t\t\t\t}),\n\t\t\t// Store the size in case width/height are defined in % - Fixes #5245\n\t\t\tsize = {\n\t\t\t\twidth: element.width(),\n\t\t\t\theight: element.height()\n\t\t\t},\n\t\t\tactive = document.activeElement;\n\n\t\t// support: Firefox\n\t\t// Firefox incorrectly exposes anonymous content\n\t\t// https://bugzilla.mozilla.org/show_bug.cgi?id=561664\n\t\ttry {\n\t\t\tactive.id;\n\t\t} catch( e ) {\n\t\t\tactive = document.body;\n\t\t}\n\n\t\telement.wrap( wrapper );\n\n\t\t// Fixes #7595 - Elements lose focus when wrapped.\n\t\tif ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {\n\t\t\t$( active ).focus();\n\t\t}\n\n\t\twrapper = element.parent(); //Hotfix for jQuery 1.4 since some change in wrap() seems to actually lose the reference to the wrapped element\n\n\t\t// transfer positioning properties to the wrapper\n\t\tif ( element.css( \"position\" ) === \"static\" ) {\n\t\t\twrapper.css({ position: \"relative\" });\n\t\t\telement.css({ position: \"relative\" });\n\t\t} else {\n\t\t\t$.extend( props, {\n\t\t\t\tposition: element.css( \"position\" ),\n\t\t\t\tzIndex: element.css( \"z-index\" )\n\t\t\t});\n\t\t\t$.each([ \"top\", \"left\", \"bottom\", \"right\" ], function(i, pos) {\n\t\t\t\tprops[ pos ] = element.css( pos );\n\t\t\t\tif ( isNaN( parseInt( props[ pos ], 10 ) ) ) {\n\t\t\t\t\tprops[ pos ] = \"auto\";\n\t\t\t\t}\n\t\t\t});\n\t\t\telement.css({\n\t\t\t\tposition: \"relative\",\n\t\t\t\ttop: 0,\n\t\t\t\tleft: 0,\n\t\t\t\tright: \"auto\",\n\t\t\t\tbottom: \"auto\"\n\t\t\t});\n\t\t}\n\t\telement.css(size);\n\n\t\treturn wrapper.css( props ).show();\n\t},\n\n\tremoveWrapper: function( element ) {\n\t\tvar active = document.activeElement;\n\n\t\tif ( element.parent().is( \".ui-effects-wrapper\" ) ) {\n\t\t\telement.parent().replaceWith( element );\n\n\t\t\t// Fixes #7595 - Elements lose focus when wrapped.\n\t\t\tif ( element[ 0 ] === active || $.contains( element[ 0 ], active ) ) {\n\t\t\t\t$( active ).focus();\n\t\t\t}\n\t\t}\n\n\n\t\treturn element;\n\t},\n\n\tsetTransition: function( element, list, factor, value ) {\n\t\tvalue = value || {};\n\t\t$.each( list, function( i, x ) {\n\t\t\tvar unit = element.cssUnit( x );\n\t\t\tif ( unit[ 0 ] > 0 ) {\n\t\t\t\tvalue[ x ] = unit[ 0 ] * factor + unit[ 1 ];\n\t\t\t}\n\t\t});\n\t\treturn value;\n\t}\n});\n\n// return an effect options object for the given parameters:\nfunction _normalizeArguments( effect, options, speed, callback ) {\n\n\t// allow passing all options as the first parameter\n\tif ( $.isPlainObject( effect ) ) {\n\t\toptions = effect;\n\t\teffect = effect.effect;\n\t}\n\n\t// convert to an object\n\teffect = { effect: effect };\n\n\t// catch (effect, null, ...)\n\tif ( options == null ) {\n\t\toptions = {};\n\t}\n\n\t// catch (effect, callback)\n\tif ( $.isFunction( options ) ) {\n\t\tcallback = options;\n\t\tspeed = null;\n\t\toptions = {};\n\t}\n\n\t// catch (effect, speed, ?)\n\tif ( typeof options === \"number\" || $.fx.speeds[ options ] ) {\n\t\tcallback = speed;\n\t\tspeed = options;\n\t\toptions = {};\n\t}\n\n\t// catch (effect, options, callback)\n\tif ( $.isFunction( speed ) ) {\n\t\tcallback = speed;\n\t\tspeed = null;\n\t}\n\n\t// add options to effect\n\tif ( options ) {\n\t\t$.extend( effect, options );\n\t}\n\n\tspeed = speed || options.duration;\n\teffect.duration = $.fx.off ? 0 :\n\t\ttypeof speed === \"number\" ? speed :\n\t\tspeed in $.fx.speeds ? $.fx.speeds[ speed ] :\n\t\t$.fx.speeds._default;\n\n\teffect.complete = callback || options.complete;\n\n\treturn effect;\n}\n\nfunction standardAnimationOption( option ) {\n\t// Valid standard speeds (nothing, number, named speed)\n\tif ( !option || typeof option === \"number\" || $.fx.speeds[ option ] ) {\n\t\treturn true;\n\t}\n\n\t// Invalid strings - treat as \"normal\" speed\n\tif ( typeof option === \"string\" && !$.effects.effect[ option ] ) {\n\t\treturn true;\n\t}\n\n\t// Complete callback\n\tif ( $.isFunction( option ) ) {\n\t\treturn true;\n\t}\n\n\t// Options hash (but not naming an effect)\n\tif ( typeof option === \"object\" && !option.effect ) {\n\t\treturn true;\n\t}\n\n\t// Didn't match any standard API\n\treturn false;\n}\n\n$.fn.extend({\n\teffect: function( /* effect, options, speed, callback */ ) {\n\t\tvar args = _normalizeArguments.apply( this, arguments ),\n\t\t\tmode = args.mode,\n\t\t\tqueue = args.queue,\n\t\t\teffectMethod = $.effects.effect[ args.effect ];\n\n\t\tif ( $.fx.off || !effectMethod ) {\n\t\t\t// delegate to the original method (e.g., .show()) if possible\n\t\t\tif ( mode ) {\n\t\t\t\treturn this[ mode ]( args.duration, args.complete );\n\t\t\t} else {\n\t\t\t\treturn this.each( function() {\n\t\t\t\t\tif ( args.complete ) {\n\t\t\t\t\t\targs.complete.call( this );\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\tfunction run( next ) {\n\t\t\tvar elem = $( this ),\n\t\t\t\tcomplete = args.complete,\n\t\t\t\tmode = args.mode;\n\n\t\t\tfunction done() {\n\t\t\t\tif ( $.isFunction( complete ) ) {\n\t\t\t\t\tcomplete.call( elem[0] );\n\t\t\t\t}\n\t\t\t\tif ( $.isFunction( next ) ) {\n\t\t\t\t\tnext();\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the element already has the correct final state, delegate to\n\t\t\t// the core methods so the internal tracking of \"olddisplay\" works.\n\t\t\tif ( elem.is( \":hidden\" ) ? mode === \"hide\" : mode === \"show\" ) {\n\t\t\t\telem[ mode ]();\n\t\t\t\tdone();\n\t\t\t} else {\n\t\t\t\teffectMethod.call( elem[0], args, done );\n\t\t\t}\n\t\t}\n\n\t\treturn queue === false ? this.each( run ) : this.queue( queue || \"fx\", run );\n\t},\n\n\tshow: (function( orig ) {\n\t\treturn function( option ) {\n\t\t\tif ( standardAnimationOption( option ) ) {\n\t\t\t\treturn orig.apply( this, arguments );\n\t\t\t} else {\n\t\t\t\tvar args = _normalizeArguments.apply( this, arguments );\n\t\t\t\targs.mode = \"show\";\n\t\t\t\treturn this.effect.call( this, args );\n\t\t\t}\n\t\t};\n\t})( $.fn.show ),\n\n\thide: (function( orig ) {\n\t\treturn function( option ) {\n\t\t\tif ( standardAnimationOption( option ) ) {\n\t\t\t\treturn orig.apply( this, arguments );\n\t\t\t} else {\n\t\t\t\tvar args = _normalizeArguments.apply( this, arguments );\n\t\t\t\targs.mode = \"hide\";\n\t\t\t\treturn this.effect.call( this, args );\n\t\t\t}\n\t\t};\n\t})( $.fn.hide ),\n\n\ttoggle: (function( orig ) {\n\t\treturn function( option ) {\n\t\t\tif ( standardAnimationOption( option ) || typeof option === \"boolean\" ) {\n\t\t\t\treturn orig.apply( this, arguments );\n\t\t\t} else {\n\t\t\t\tvar args = _normalizeArguments.apply( this, arguments );\n\t\t\t\targs.mode = \"toggle\";\n\t\t\t\treturn this.effect.call( this, args );\n\t\t\t}\n\t\t};\n\t})( $.fn.toggle ),\n\n\t// helper functions\n\tcssUnit: function(key) {\n\t\tvar style = this.css( key ),\n\t\t\tval = [];\n\n\t\t$.each( [ \"em\", \"px\", \"%\", \"pt\" ], function( i, unit ) {\n\t\t\tif ( style.indexOf( unit ) > 0 ) {\n\t\t\t\tval = [ parseFloat( style ), unit ];\n\t\t\t}\n\t\t});\n\t\treturn val;\n\t}\n});\n\n})();\n\n/******************************************************************************/\n/*********************************** EASING ***********************************/\n/******************************************************************************/\n\n(function() {\n\n// based on easing equations from Robert Penner (http://www.robertpenner.com/easing)\n\nvar baseEasings = {};\n\n$.each( [ \"Quad\", \"Cubic\", \"Quart\", \"Quint\", \"Expo\" ], function( i, name ) {\n\tbaseEasings[ name ] = function( p ) {\n\t\treturn Math.pow( p, i + 2 );\n\t};\n});\n\n$.extend( baseEasings, {\n\tSine: function ( p ) {\n\t\treturn 1 - Math.cos( p * Math.PI / 2 );\n\t},\n\tCirc: function ( p ) {\n\t\treturn 1 - Math.sqrt( 1 - p * p );\n\t},\n\tElastic: function( p ) {\n\t\treturn p === 0 || p === 1 ? p :\n\t\t\t-Math.pow( 2, 8 * (p - 1) ) * Math.sin( ( (p - 1) * 80 - 7.5 ) * Math.PI / 15 );\n\t},\n\tBack: function( p ) {\n\t\treturn p * p * ( 3 * p - 2 );\n\t},\n\tBounce: function ( p ) {\n\t\tvar pow2,\n\t\t\tbounce = 4;\n\n\t\twhile ( p < ( ( pow2 = Math.pow( 2, --bounce ) ) - 1 ) / 11 ) {}\n\t\treturn 1 / Math.pow( 4, 3 - bounce ) - 7.5625 * Math.pow( ( pow2 * 3 - 2 ) / 22 - p, 2 );\n\t}\n});\n\n$.each( baseEasings, function( name, easeIn ) {\n\t$.easing[ \"easeIn\" + name ] = easeIn;\n\t$.easing[ \"easeOut\" + name ] = function( p ) {\n\t\treturn 1 - easeIn( 1 - p );\n\t};\n\t$.easing[ \"easeInOut\" + name ] = function( p ) {\n\t\treturn p < 0.5 ?\n\t\t\teaseIn( p * 2 ) / 2 :\n\t\t\t1 - easeIn( p * -2 + 2 ) / 2;\n\t};\n});\n\n})();\n\n})(jQuery);\n\n(function( $, undefined ) {\n\nvar uid = 0,\n\thideProps = {},\n\tshowProps = {};\n\nhideProps.height = hideProps.paddingTop = hideProps.paddingBottom =\n\thideProps.borderTopWidth = hideProps.borderBottomWidth = \"hide\";\nshowProps.height = showProps.paddingTop = showProps.paddingBottom =\n\tshowProps.borderTopWidth = showProps.borderBottomWidth = \"show\";\n\n$.widget( \"ui.accordion\", {\n\tversion: \"1.10.4\",\n\toptions: {\n\t\tactive: 0,\n\t\tanimate: {},\n\t\tcollapsible: false,\n\t\tevent: \"click\",\n\t\theader: \"> li > :first-child,> :not(li):even\",\n\t\theightStyle: \"auto\",\n\t\ticons: {\n\t\t\tactiveHeader: \"ui-icon-triangle-1-s\",\n\t\t\theader: \"ui-icon-triangle-1-e\"\n\t\t},\n\n\t\t// callbacks\n\t\tactivate: null,\n\t\tbeforeActivate: null\n\t},\n\n\t_create: function() {\n\t\tvar options = this.options;\n\t\tthis.prevShow = this.prevHide = $();\n\t\tthis.element.addClass( \"ui-accordion ui-widget ui-helper-reset\" )\n\t\t\t// ARIA\n\t\t\t.attr( \"role\", \"tablist\" );\n\n\t\t// don't allow collapsible: false and active: false / null\n\t\tif ( !options.collapsible && (options.active === false || options.active == null) ) {\n\t\t\toptions.active = 0;\n\t\t}\n\n\t\tthis._processPanels();\n\t\t// handle negative values\n\t\tif ( options.active < 0 ) {\n\t\t\toptions.active += this.headers.length;\n\t\t}\n\t\tthis._refresh();\n\t},\n\n\t_getCreateEventData: function() {\n\t\treturn {\n\t\t\theader: this.active,\n\t\t\tpanel: !this.active.length ? $() : this.active.next(),\n\t\t\tcontent: !this.active.length ? $() : this.active.next()\n\t\t};\n\t},\n\n\t_createIcons: function() {\n\t\tvar icons = this.options.icons;\n\t\tif ( icons ) {\n\t\t\t$( \"<span>\" )\n\t\t\t\t.addClass( \"ui-accordion-header-icon ui-icon \" + icons.header )\n\t\t\t\t.prependTo( this.headers );\n\t\t\tthis.active.children( \".ui-accordion-header-icon\" )\n\t\t\t\t.removeClass( icons.header )\n\t\t\t\t.addClass( icons.activeHeader );\n\t\t\tthis.headers.addClass( \"ui-accordion-icons\" );\n\t\t}\n\t},\n\n\t_destroyIcons: function() {\n\t\tthis.headers\n\t\t\t.removeClass( \"ui-accordion-icons\" )\n\t\t\t.children( \".ui-accordion-header-icon\" )\n\t\t\t\t.remove();\n\t},\n\n\t_destroy: function() {\n\t\tvar contents;\n\n\t\t// clean up main element\n\t\tthis.element\n\t\t\t.removeClass( \"ui-accordion ui-widget ui-helper-reset\" )\n\t\t\t.removeAttr( \"role\" );\n\n\t\t// clean up headers\n\t\tthis.headers\n\t\t\t.removeClass( \"ui-accordion-header ui-accordion-header-active ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-expanded\" )\n\t\t\t.removeAttr( \"aria-selected\" )\n\t\t\t.removeAttr( \"aria-controls\" )\n\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t.each(function() {\n\t\t\t\tif ( /^ui-accordion/.test( this.id ) ) {\n\t\t\t\t\tthis.removeAttribute( \"id\" );\n\t\t\t\t}\n\t\t\t});\n\t\tthis._destroyIcons();\n\n\t\t// clean up content panels\n\t\tcontents = this.headers.next()\n\t\t\t.css( \"display\", \"\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-hidden\" )\n\t\t\t.removeAttr( \"aria-labelledby\" )\n\t\t\t.removeClass( \"ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-state-disabled\" )\n\t\t\t.each(function() {\n\t\t\t\tif ( /^ui-accordion/.test( this.id ) ) {\n\t\t\t\t\tthis.removeAttribute( \"id\" );\n\t\t\t\t}\n\t\t\t});\n\t\tif ( this.options.heightStyle !== \"content\" ) {\n\t\t\tcontents.css( \"height\", \"\" );\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"active\" ) {\n\t\t\t// _activate() will handle invalid values and update this.options\n\t\t\tthis._activate( value );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === \"event\" ) {\n\t\t\tif ( this.options.event ) {\n\t\t\t\tthis._off( this.headers, this.options.event );\n\t\t\t}\n\t\t\tthis._setupEvents( value );\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\t// setting collapsible: false while collapsed; open first panel\n\t\tif ( key === \"collapsible\" && !value && this.options.active === false ) {\n\t\t\tthis._activate( 0 );\n\t\t}\n\n\t\tif ( key === \"icons\" ) {\n\t\t\tthis._destroyIcons();\n\t\t\tif ( value ) {\n\t\t\t\tthis._createIcons();\n\t\t\t}\n\t\t}\n\n\t\t// #5332 - opacity doesn't cascade to positioned elements in IE\n\t\t// so we need to add the disabled class to the headers and panels\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.headers.add( this.headers.next() )\n\t\t\t\t.toggleClass( \"ui-state-disabled\", !!value );\n\t\t}\n\t},\n\n\t_keydown: function( event ) {\n\t\tif ( event.altKey || event.ctrlKey ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar keyCode = $.ui.keyCode,\n\t\t\tlength = this.headers.length,\n\t\t\tcurrentIndex = this.headers.index( event.target ),\n\t\t\ttoFocus = false;\n\n\t\tswitch ( event.keyCode ) {\n\t\t\tcase keyCode.RIGHT:\n\t\t\tcase keyCode.DOWN:\n\t\t\t\ttoFocus = this.headers[ ( currentIndex + 1 ) % length ];\n\t\t\t\tbreak;\n\t\t\tcase keyCode.LEFT:\n\t\t\tcase keyCode.UP:\n\t\t\t\ttoFocus = this.headers[ ( currentIndex - 1 + length ) % length ];\n\t\t\t\tbreak;\n\t\t\tcase keyCode.SPACE:\n\t\t\tcase keyCode.ENTER:\n\t\t\t\tthis._eventHandler( event );\n\t\t\t\tbreak;\n\t\t\tcase keyCode.HOME:\n\t\t\t\ttoFocus = this.headers[ 0 ];\n\t\t\t\tbreak;\n\t\t\tcase keyCode.END:\n\t\t\t\ttoFocus = this.headers[ length - 1 ];\n\t\t\t\tbreak;\n\t\t}\n\n\t\tif ( toFocus ) {\n\t\t\t$( event.target ).attr( \"tabIndex\", -1 );\n\t\t\t$( toFocus ).attr( \"tabIndex\", 0 );\n\t\t\ttoFocus.focus();\n\t\t\tevent.preventDefault();\n\t\t}\n\t},\n\n\t_panelKeyDown : function( event ) {\n\t\tif ( event.keyCode === $.ui.keyCode.UP && event.ctrlKey ) {\n\t\t\t$( event.currentTarget ).prev().focus();\n\t\t}\n\t},\n\n\trefresh: function() {\n\t\tvar options = this.options;\n\t\tthis._processPanels();\n\n\t\t// was collapsed or no panel\n\t\tif ( ( options.active === false && options.collapsible === true ) || !this.headers.length ) {\n\t\t\toptions.active = false;\n\t\t\tthis.active = $();\n\t\t// active false only when collapsible is true\n\t\t} else if ( options.active === false ) {\n\t\t\tthis._activate( 0 );\n\t\t// was active, but active panel is gone\n\t\t} else if ( this.active.length && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {\n\t\t\t// all remaining panel are disabled\n\t\t\tif ( this.headers.length === this.headers.find(\".ui-state-disabled\").length ) {\n\t\t\t\toptions.active = false;\n\t\t\t\tthis.active = $();\n\t\t\t// activate previous panel\n\t\t\t} else {\n\t\t\t\tthis._activate( Math.max( 0, options.active - 1 ) );\n\t\t\t}\n\t\t// was active, active panel still exists\n\t\t} else {\n\t\t\t// make sure active index is correct\n\t\t\toptions.active = this.headers.index( this.active );\n\t\t}\n\n\t\tthis._destroyIcons();\n\n\t\tthis._refresh();\n\t},\n\n\t_processPanels: function() {\n\t\tthis.headers = this.element.find( this.options.header )\n\t\t\t.addClass( \"ui-accordion-header ui-helper-reset ui-state-default ui-corner-all\" );\n\n\t\tthis.headers.next()\n\t\t\t.addClass( \"ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom\" )\n\t\t\t.filter(\":not(.ui-accordion-content-active)\")\n\t\t\t.hide();\n\t},\n\n\t_refresh: function() {\n\t\tvar maxHeight,\n\t\t\toptions = this.options,\n\t\t\theightStyle = options.heightStyle,\n\t\t\tparent = this.element.parent(),\n\t\t\taccordionId = this.accordionId = \"ui-accordion-\" +\n\t\t\t\t(this.element.attr( \"id\" ) || ++uid);\n\n\t\tthis.active = this._findActive( options.active )\n\t\t\t.addClass( \"ui-accordion-header-active ui-state-active ui-corner-top\" )\n\t\t\t.removeClass( \"ui-corner-all\" );\n\t\tthis.active.next()\n\t\t\t.addClass( \"ui-accordion-content-active\" )\n\t\t\t.show();\n\n\t\tthis.headers\n\t\t\t.attr( \"role\", \"tab\" )\n\t\t\t.each(function( i ) {\n\t\t\t\tvar header = $( this ),\n\t\t\t\t\theaderId = header.attr( \"id\" ),\n\t\t\t\t\tpanel = header.next(),\n\t\t\t\t\tpanelId = panel.attr( \"id\" );\n\t\t\t\tif ( !headerId ) {\n\t\t\t\t\theaderId = accordionId + \"-header-\" + i;\n\t\t\t\t\theader.attr( \"id\", headerId );\n\t\t\t\t}\n\t\t\t\tif ( !panelId ) {\n\t\t\t\t\tpanelId = accordionId + \"-panel-\" + i;\n\t\t\t\t\tpanel.attr( \"id\", panelId );\n\t\t\t\t}\n\t\t\t\theader.attr( \"aria-controls\", panelId );\n\t\t\t\tpanel.attr( \"aria-labelledby\", headerId );\n\t\t\t})\n\t\t\t.next()\n\t\t\t\t.attr( \"role\", \"tabpanel\" );\n\n\t\tthis.headers\n\t\t\t.not( this.active )\n\t\t\t.attr({\n\t\t\t\t\"aria-selected\": \"false\",\n\t\t\t\t\"aria-expanded\": \"false\",\n\t\t\t\ttabIndex: -1\n\t\t\t})\n\t\t\t.next()\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-hidden\": \"true\"\n\t\t\t\t})\n\t\t\t\t.hide();\n\n\t\t// make sure at least one header is in the tab order\n\t\tif ( !this.active.length ) {\n\t\t\tthis.headers.eq( 0 ).attr( \"tabIndex\", 0 );\n\t\t} else {\n\t\t\tthis.active.attr({\n\t\t\t\t\"aria-selected\": \"true\",\n\t\t\t\t\"aria-expanded\": \"true\",\n\t\t\t\ttabIndex: 0\n\t\t\t})\n\t\t\t.next()\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-hidden\": \"false\"\n\t\t\t\t});\n\t\t}\n\n\t\tthis._createIcons();\n\n\t\tthis._setupEvents( options.event );\n\n\t\tif ( heightStyle === \"fill\" ) {\n\t\t\tmaxHeight = parent.height();\n\t\t\tthis.element.siblings( \":visible\" ).each(function() {\n\t\t\t\tvar elem = $( this ),\n\t\t\t\t\tposition = elem.css( \"position\" );\n\n\t\t\t\tif ( position === \"absolute\" || position === \"fixed\" ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tmaxHeight -= elem.outerHeight( true );\n\t\t\t});\n\n\t\t\tthis.headers.each(function() {\n\t\t\t\tmaxHeight -= $( this ).outerHeight( true );\n\t\t\t});\n\n\t\t\tthis.headers.next()\n\t\t\t\t.each(function() {\n\t\t\t\t\t$( this ).height( Math.max( 0, maxHeight -\n\t\t\t\t\t\t$( this ).innerHeight() + $( this ).height() ) );\n\t\t\t\t})\n\t\t\t\t.css( \"overflow\", \"auto\" );\n\t\t} else if ( heightStyle === \"auto\" ) {\n\t\t\tmaxHeight = 0;\n\t\t\tthis.headers.next()\n\t\t\t\t.each(function() {\n\t\t\t\t\tmaxHeight = Math.max( maxHeight, $( this ).css( \"height\", \"\" ).height() );\n\t\t\t\t})\n\t\t\t\t.height( maxHeight );\n\t\t}\n\t},\n\n\t_activate: function( index ) {\n\t\tvar active = this._findActive( index )[ 0 ];\n\n\t\t// trying to activate the already active panel\n\t\tif ( active === this.active[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// trying to collapse, simulate a click on the currently active header\n\t\tactive = active || this.active[ 0 ];\n\n\t\tthis._eventHandler({\n\t\t\ttarget: active,\n\t\t\tcurrentTarget: active,\n\t\t\tpreventDefault: $.noop\n\t\t});\n\t},\n\n\t_findActive: function( selector ) {\n\t\treturn typeof selector === \"number\" ? this.headers.eq( selector ) : $();\n\t},\n\n\t_setupEvents: function( event ) {\n\t\tvar events = {\n\t\t\tkeydown: \"_keydown\"\n\t\t};\n\t\tif ( event ) {\n\t\t\t$.each( event.split(\" \"), function( index, eventName ) {\n\t\t\t\tevents[ eventName ] = \"_eventHandler\";\n\t\t\t});\n\t\t}\n\n\t\tthis._off( this.headers.add( this.headers.next() ) );\n\t\tthis._on( this.headers, events );\n\t\tthis._on( this.headers.next(), { keydown: \"_panelKeyDown\" });\n\t\tthis._hoverable( this.headers );\n\t\tthis._focusable( this.headers );\n\t},\n\n\t_eventHandler: function( event ) {\n\t\tvar options = this.options,\n\t\t\tactive = this.active,\n\t\t\tclicked = $( event.currentTarget ),\n\t\t\tclickedIsActive = clicked[ 0 ] === active[ 0 ],\n\t\t\tcollapsing = clickedIsActive && options.collapsible,\n\t\t\ttoShow = collapsing ? $() : clicked.next(),\n\t\t\ttoHide = active.next(),\n\t\t\teventData = {\n\t\t\t\toldHeader: active,\n\t\t\t\toldPanel: toHide,\n\t\t\t\tnewHeader: collapsing ? $() : clicked,\n\t\t\t\tnewPanel: toShow\n\t\t\t};\n\n\t\tevent.preventDefault();\n\n\t\tif (\n\t\t\t\t// click on active header, but not collapsible\n\t\t\t\t( clickedIsActive && !options.collapsible ) ||\n\t\t\t\t// allow canceling activation\n\t\t\t\t( this._trigger( \"beforeActivate\", event, eventData ) === false ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\toptions.active = collapsing ? false : this.headers.index( clicked );\n\n\t\t// when the call to ._toggle() comes after the class changes\n\t\t// it causes a very odd bug in IE 8 (see #6720)\n\t\tthis.active = clickedIsActive ? $() : clicked;\n\t\tthis._toggle( eventData );\n\n\t\t// switch classes\n\t\t// corner classes on the previously active header stay after the animation\n\t\tactive.removeClass( \"ui-accordion-header-active ui-state-active\" );\n\t\tif ( options.icons ) {\n\t\t\tactive.children( \".ui-accordion-header-icon\" )\n\t\t\t\t.removeClass( options.icons.activeHeader )\n\t\t\t\t.addClass( options.icons.header );\n\t\t}\n\n\t\tif ( !clickedIsActive ) {\n\t\t\tclicked\n\t\t\t\t.removeClass( \"ui-corner-all\" )\n\t\t\t\t.addClass( \"ui-accordion-header-active ui-state-active ui-corner-top\" );\n\t\t\tif ( options.icons ) {\n\t\t\t\tclicked.children( \".ui-accordion-header-icon\" )\n\t\t\t\t\t.removeClass( options.icons.header )\n\t\t\t\t\t.addClass( options.icons.activeHeader );\n\t\t\t}\n\n\t\t\tclicked\n\t\t\t\t.next()\n\t\t\t\t.addClass( \"ui-accordion-content-active\" );\n\t\t}\n\t},\n\n\t_toggle: function( data ) {\n\t\tvar toShow = data.newPanel,\n\t\t\ttoHide = this.prevShow.length ? this.prevShow : data.oldPanel;\n\n\t\t// handle activating a panel during the animation for another activation\n\t\tthis.prevShow.add( this.prevHide ).stop( true, true );\n\t\tthis.prevShow = toShow;\n\t\tthis.prevHide = toHide;\n\n\t\tif ( this.options.animate ) {\n\t\t\tthis._animate( toShow, toHide, data );\n\t\t} else {\n\t\t\ttoHide.hide();\n\t\t\ttoShow.show();\n\t\t\tthis._toggleComplete( data );\n\t\t}\n\n\t\ttoHide.attr({\n\t\t\t\"aria-hidden\": \"true\"\n\t\t});\n\t\ttoHide.prev().attr( \"aria-selected\", \"false\" );\n\t\t// if we're switching panels, remove the old header from the tab order\n\t\t// if we're opening from collapsed state, remove the previous header from the tab order\n\t\t// if we're collapsing, then keep the collapsing header in the tab order\n\t\tif ( toShow.length && toHide.length ) {\n\t\t\ttoHide.prev().attr({\n\t\t\t\t\"tabIndex\": -1,\n\t\t\t\t\"aria-expanded\": \"false\"\n\t\t\t});\n\t\t} else if ( toShow.length ) {\n\t\t\tthis.headers.filter(function() {\n\t\t\t\treturn $( this ).attr( \"tabIndex\" ) === 0;\n\t\t\t})\n\t\t\t.attr( \"tabIndex\", -1 );\n\t\t}\n\n\t\ttoShow\n\t\t\t.attr( \"aria-hidden\", \"false\" )\n\t\t\t.prev()\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-selected\": \"true\",\n\t\t\t\t\ttabIndex: 0,\n\t\t\t\t\t\"aria-expanded\": \"true\"\n\t\t\t\t});\n\t},\n\n\t_animate: function( toShow, toHide, data ) {\n\t\tvar total, easing, duration,\n\t\t\tthat = this,\n\t\t\tadjust = 0,\n\t\t\tdown = toShow.length &&\n\t\t\t\t( !toHide.length || ( toShow.index() < toHide.index() ) ),\n\t\t\tanimate = this.options.animate || {},\n\t\t\toptions = down && animate.down || animate,\n\t\t\tcomplete = function() {\n\t\t\t\tthat._toggleComplete( data );\n\t\t\t};\n\n\t\tif ( typeof options === \"number\" ) {\n\t\t\tduration = options;\n\t\t}\n\t\tif ( typeof options === \"string\" ) {\n\t\t\teasing = options;\n\t\t}\n\t\t// fall back from options to animation in case of partial down settings\n\t\teasing = easing || options.easing || animate.easing;\n\t\tduration = duration || options.duration || animate.duration;\n\n\t\tif ( !toHide.length ) {\n\t\t\treturn toShow.animate( showProps, duration, easing, complete );\n\t\t}\n\t\tif ( !toShow.length ) {\n\t\t\treturn toHide.animate( hideProps, duration, easing, complete );\n\t\t}\n\n\t\ttotal = toShow.show().outerHeight();\n\t\ttoHide.animate( hideProps, {\n\t\t\tduration: duration,\n\t\t\teasing: easing,\n\t\t\tstep: function( now, fx ) {\n\t\t\t\tfx.now = Math.round( now );\n\t\t\t}\n\t\t});\n\t\ttoShow\n\t\t\t.hide()\n\t\t\t.animate( showProps, {\n\t\t\t\tduration: duration,\n\t\t\t\teasing: easing,\n\t\t\t\tcomplete: complete,\n\t\t\t\tstep: function( now, fx ) {\n\t\t\t\t\tfx.now = Math.round( now );\n\t\t\t\t\tif ( fx.prop !== \"height\" ) {\n\t\t\t\t\t\tadjust += fx.now;\n\t\t\t\t\t} else if ( that.options.heightStyle !== \"content\" ) {\n\t\t\t\t\t\tfx.now = Math.round( total - toHide.outerHeight() - adjust );\n\t\t\t\t\t\tadjust = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t});\n\t},\n\n\t_toggleComplete: function( data ) {\n\t\tvar toHide = data.oldPanel;\n\n\t\ttoHide\n\t\t\t.removeClass( \"ui-accordion-content-active\" )\n\t\t\t.prev()\n\t\t\t\t.removeClass( \"ui-corner-top\" )\n\t\t\t\t.addClass( \"ui-corner-all\" );\n\n\t\t// Work around for rendering bug in IE (#5421)\n\t\tif ( toHide.length ) {\n\t\t\ttoHide.parent()[0].className = toHide.parent()[0].className;\n\t\t}\n\t\tthis._trigger( \"activate\", null, data );\n\t}\n});\n\n})( jQuery );\n\n(function( $, undefined ) {\n\n$.widget( \"ui.autocomplete\", {\n\tversion: \"1.10.4\",\n\tdefaultElement: \"<input>\",\n\toptions: {\n\t\tappendTo: null,\n\t\tautoFocus: false,\n\t\tdelay: 300,\n\t\tminLength: 1,\n\t\tposition: {\n\t\t\tmy: \"left top\",\n\t\t\tat: \"left bottom\",\n\t\t\tcollision: \"none\"\n\t\t},\n\t\tsource: null,\n\n\t\t// callbacks\n\t\tchange: null,\n\t\tclose: null,\n\t\tfocus: null,\n\t\topen: null,\n\t\tresponse: null,\n\t\tsearch: null,\n\t\tselect: null\n\t},\n\n\trequestIndex: 0,\n\tpending: 0,\n\n\t_create: function() {\n\t\t// Some browsers only repeat keydown events, not keypress events,\n\t\t// so we use the suppressKeyPress flag to determine if we've already\n\t\t// handled the keydown event. #7269\n\t\t// Unfortunately the code for & in keypress is the same as the up arrow,\n\t\t// so we use the suppressKeyPressRepeat flag to avoid handling keypress\n\t\t// events when we know the keydown event was used to modify the\n\t\t// search term. #7799\n\t\tvar suppressKeyPress, suppressKeyPressRepeat, suppressInput,\n\t\t\tnodeName = this.element[0].nodeName.toLowerCase(),\n\t\t\tisTextarea = nodeName === \"textarea\",\n\t\t\tisInput = nodeName === \"input\";\n\n\t\tthis.isMultiLine =\n\t\t\t// Textareas are always multi-line\n\t\t\tisTextarea ? true :\n\t\t\t// Inputs are always single-line, even if inside a contentEditable element\n\t\t\t// IE also treats inputs as contentEditable\n\t\t\tisInput ? false :\n\t\t\t// All other element types are determined by whether or not they're contentEditable\n\t\t\tthis.element.prop( \"isContentEditable\" );\n\n\t\tthis.valueMethod = this.element[ isTextarea || isInput ? \"val\" : \"text\" ];\n\t\tthis.isNewMenu = true;\n\n\t\tthis.element\n\t\t\t.addClass( \"ui-autocomplete-input\" )\n\t\t\t.attr( \"autocomplete\", \"off\" );\n\n\t\tthis._on( this.element, {\n\t\t\tkeydown: function( event ) {\n\t\t\t\tif ( this.element.prop( \"readOnly\" ) ) {\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tsuppressInput = true;\n\t\t\t\t\tsuppressKeyPressRepeat = true;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tsuppressKeyPress = false;\n\t\t\t\tsuppressInput = false;\n\t\t\t\tsuppressKeyPressRepeat = false;\n\t\t\t\tvar keyCode = $.ui.keyCode;\n\t\t\t\tswitch( event.keyCode ) {\n\t\t\t\tcase keyCode.PAGE_UP:\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tthis._move( \"previousPage\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.PAGE_DOWN:\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tthis._move( \"nextPage\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.UP:\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tthis._keyEvent( \"previous\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.DOWN:\n\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\tthis._keyEvent( \"next\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.ENTER:\n\t\t\t\tcase keyCode.NUMPAD_ENTER:\n\t\t\t\t\t// when menu is open and has focus\n\t\t\t\t\tif ( this.menu.active ) {\n\t\t\t\t\t\t// #6055 - Opera still allows the keypress to occur\n\t\t\t\t\t\t// which causes forms to submit\n\t\t\t\t\t\tsuppressKeyPress = true;\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\tthis.menu.select( event );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.TAB:\n\t\t\t\t\tif ( this.menu.active ) {\n\t\t\t\t\t\tthis.menu.select( event );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.ESCAPE:\n\t\t\t\t\tif ( this.menu.element.is( \":visible\" ) ) {\n\t\t\t\t\t\tthis._value( this.term );\n\t\t\t\t\t\tthis.close( event );\n\t\t\t\t\t\t// Different browsers have different default behavior for escape\n\t\t\t\t\t\t// Single press can mean undo or clear\n\t\t\t\t\t\t// Double press in IE means clear the whole form\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tsuppressKeyPressRepeat = true;\n\t\t\t\t\t// search timeout should be triggered before the input value is changed\n\t\t\t\t\tthis._searchTimeout( event );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\tkeypress: function( event ) {\n\t\t\t\tif ( suppressKeyPress ) {\n\t\t\t\t\tsuppressKeyPress = false;\n\t\t\t\t\tif ( !this.isMultiLine || this.menu.element.is( \":visible\" ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( suppressKeyPressRepeat ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// replicate some key handlers to allow them to repeat in Firefox and Opera\n\t\t\t\tvar keyCode = $.ui.keyCode;\n\t\t\t\tswitch( event.keyCode ) {\n\t\t\t\tcase keyCode.PAGE_UP:\n\t\t\t\t\tthis._move( \"previousPage\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.PAGE_DOWN:\n\t\t\t\t\tthis._move( \"nextPage\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.UP:\n\t\t\t\t\tthis._keyEvent( \"previous\", event );\n\t\t\t\t\tbreak;\n\t\t\t\tcase keyCode.DOWN:\n\t\t\t\t\tthis._keyEvent( \"next\", event );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t},\n\t\t\tinput: function( event ) {\n\t\t\t\tif ( suppressInput ) {\n\t\t\t\t\tsuppressInput = false;\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tthis._searchTimeout( event );\n\t\t\t},\n\t\t\tfocus: function() {\n\t\t\t\tthis.selectedItem = null;\n\t\t\t\tthis.previous = this._value();\n\t\t\t},\n\t\t\tblur: function( event ) {\n\t\t\t\tif ( this.cancelBlur ) {\n\t\t\t\t\tdelete this.cancelBlur;\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tclearTimeout( this.searching );\n\t\t\t\tthis.close( event );\n\t\t\t\tthis._change( event );\n\t\t\t}\n\t\t});\n\n\t\tthis._initSource();\n\t\tthis.menu = $( \"<ul>\" )\n\t\t\t.addClass( \"ui-autocomplete ui-front\" )\n\t\t\t.appendTo( this._appendTo() )\n\t\t\t.menu({\n\t\t\t\t// disable ARIA support, the live region takes care of that\n\t\t\t\trole: null\n\t\t\t})\n\t\t\t.hide()\n\t\t\t.data( \"ui-menu\" );\n\n\t\tthis._on( this.menu.element, {\n\t\t\tmousedown: function( event ) {\n\t\t\t\t// prevent moving focus out of the text field\n\t\t\t\tevent.preventDefault();\n\n\t\t\t\t// IE doesn't prevent moving focus even with event.preventDefault()\n\t\t\t\t// so we set a flag to know when we should ignore the blur event\n\t\t\t\tthis.cancelBlur = true;\n\t\t\t\tthis._delay(function() {\n\t\t\t\t\tdelete this.cancelBlur;\n\t\t\t\t});\n\n\t\t\t\t// clicking on the scrollbar causes focus to shift to the body\n\t\t\t\t// but we can't detect a mouseup or a click immediately afterward\n\t\t\t\t// so we have to track the next mousedown and close the menu if\n\t\t\t\t// the user clicks somewhere outside of the autocomplete\n\t\t\t\tvar menuElement = this.menu.element[ 0 ];\n\t\t\t\tif ( !$( event.target ).closest( \".ui-menu-item\" ).length ) {\n\t\t\t\t\tthis._delay(function() {\n\t\t\t\t\t\tvar that = this;\n\t\t\t\t\t\tthis.document.one( \"mousedown\", function( event ) {\n\t\t\t\t\t\t\tif ( event.target !== that.element[ 0 ] &&\n\t\t\t\t\t\t\t\t\tevent.target !== menuElement &&\n\t\t\t\t\t\t\t\t\t!$.contains( menuElement, event.target ) ) {\n\t\t\t\t\t\t\t\tthat.close();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t},\n\t\t\tmenufocus: function( event, ui ) {\n\t\t\t\t// support: Firefox\n\t\t\t\t// Prevent accidental activation of menu items in Firefox (#7024 #9118)\n\t\t\t\tif ( this.isNewMenu ) {\n\t\t\t\t\tthis.isNewMenu = false;\n\t\t\t\t\tif ( event.originalEvent && /^mouse/.test( event.originalEvent.type ) ) {\n\t\t\t\t\t\tthis.menu.blur();\n\n\t\t\t\t\t\tthis.document.one( \"mousemove\", function() {\n\t\t\t\t\t\t\t$( event.target ).trigger( event.originalEvent );\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tvar item = ui.item.data( \"ui-autocomplete-item\" );\n\t\t\t\tif ( false !== this._trigger( \"focus\", event, { item: item } ) ) {\n\t\t\t\t\t// use value to match what will end up in the input, if it was a key event\n\t\t\t\t\tif ( event.originalEvent && /^key/.test( event.originalEvent.type ) ) {\n\t\t\t\t\t\tthis._value( item.value );\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t// Normally the input is populated with the item's value as the\n\t\t\t\t\t// menu is navigated, causing screen readers to notice a change and\n\t\t\t\t\t// announce the item. Since the focus event was canceled, this doesn't\n\t\t\t\t\t// happen, so we update the live region so that screen readers can\n\t\t\t\t\t// still notice the change and announce it.\n\t\t\t\t\tthis.liveRegion.text( item.value );\n\t\t\t\t}\n\t\t\t},\n\t\t\tmenuselect: function( event, ui ) {\n\t\t\t\tvar item = ui.item.data( \"ui-autocomplete-item\" ),\n\t\t\t\t\tprevious = this.previous;\n\n\t\t\t\t// only trigger when focus was lost (click on menu)\n\t\t\t\tif ( this.element[0] !== this.document[0].activeElement ) {\n\t\t\t\t\tthis.element.focus();\n\t\t\t\t\tthis.previous = previous;\n\t\t\t\t\t// #6109 - IE triggers two focus events and the second\n\t\t\t\t\t// is asynchronous, so we need to reset the previous\n\t\t\t\t\t// term synchronously and asynchronously :-(\n\t\t\t\t\tthis._delay(function() {\n\t\t\t\t\t\tthis.previous = previous;\n\t\t\t\t\t\tthis.selectedItem = item;\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif ( false !== this._trigger( \"select\", event, { item: item } ) ) {\n\t\t\t\t\tthis._value( item.value );\n\t\t\t\t}\n\t\t\t\t// reset the term after the select event\n\t\t\t\t// this allows custom select handling to work properly\n\t\t\t\tthis.term = this._value();\n\n\t\t\t\tthis.close( event );\n\t\t\t\tthis.selectedItem = item;\n\t\t\t}\n\t\t});\n\n\t\tthis.liveRegion = $( \"<span>\", {\n\t\t\t\trole: \"status\",\n\t\t\t\t\"aria-live\": \"polite\"\n\t\t\t})\n\t\t\t.addClass( \"ui-helper-hidden-accessible\" )\n\t\t\t.insertBefore( this.element );\n\n\t\t// turning off autocomplete prevents the browser from remembering the\n\t\t// value when navigating through history, so we re-enable autocomplete\n\t\t// if the page is unloaded before the widget is destroyed. #7790\n\t\tthis._on( this.window, {\n\t\t\tbeforeunload: function() {\n\t\t\t\tthis.element.removeAttr( \"autocomplete\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_destroy: function() {\n\t\tclearTimeout( this.searching );\n\t\tthis.element\n\t\t\t.removeClass( \"ui-autocomplete-input\" )\n\t\t\t.removeAttr( \"autocomplete\" );\n\t\tthis.menu.element.remove();\n\t\tthis.liveRegion.remove();\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tthis._super( key, value );\n\t\tif ( key === \"source\" ) {\n\t\t\tthis._initSource();\n\t\t}\n\t\tif ( key === \"appendTo\" ) {\n\t\t\tthis.menu.element.appendTo( this._appendTo() );\n\t\t}\n\t\tif ( key === \"disabled\" && value && this.xhr ) {\n\t\t\tthis.xhr.abort();\n\t\t}\n\t},\n\n\t_appendTo: function() {\n\t\tvar element = this.options.appendTo;\n\n\t\tif ( element ) {\n\t\t\telement = element.jquery || element.nodeType ?\n\t\t\t\t$( element ) :\n\t\t\t\tthis.document.find( element ).eq( 0 );\n\t\t}\n\n\t\tif ( !element ) {\n\t\t\telement = this.element.closest( \".ui-front\" );\n\t\t}\n\n\t\tif ( !element.length ) {\n\t\t\telement = this.document[0].body;\n\t\t}\n\n\t\treturn element;\n\t},\n\n\t_initSource: function() {\n\t\tvar array, url,\n\t\t\tthat = this;\n\t\tif ( $.isArray(this.options.source) ) {\n\t\t\tarray = this.options.source;\n\t\t\tthis.source = function( request, response ) {\n\t\t\t\tresponse( $.ui.autocomplete.filter( array, request.term ) );\n\t\t\t};\n\t\t} else if ( typeof this.options.source === \"string\" ) {\n\t\t\turl = this.options.source;\n\t\t\tthis.source = function( request, response ) {\n\t\t\t\tif ( that.xhr ) {\n\t\t\t\t\tthat.xhr.abort();\n\t\t\t\t}\n\t\t\t\tthat.xhr = $.ajax({\n\t\t\t\t\turl: url,\n\t\t\t\t\tdata: request,\n\t\t\t\t\tdataType: \"json\",\n\t\t\t\t\tsuccess: function( data ) {\n\t\t\t\t\t\tresponse( data );\n\t\t\t\t\t},\n\t\t\t\t\terror: function() {\n\t\t\t\t\t\tresponse( [] );\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t};\n\t\t} else {\n\t\t\tthis.source = this.options.source;\n\t\t}\n\t},\n\n\t_searchTimeout: function( event ) {\n\t\tclearTimeout( this.searching );\n\t\tthis.searching = this._delay(function() {\n\t\t\t// only search if the value has changed\n\t\t\tif ( this.term !== this._value() ) {\n\t\t\t\tthis.selectedItem = null;\n\t\t\t\tthis.search( null, event );\n\t\t\t}\n\t\t}, this.options.delay );\n\t},\n\n\tsearch: function( value, event ) {\n\t\tvalue = value != null ? value : this._value();\n\n\t\t// always save the actual value, not the one passed as an argument\n\t\tthis.term = this._value();\n\n\t\tif ( value.length < this.options.minLength ) {\n\t\t\treturn this.close( event );\n\t\t}\n\n\t\tif ( this._trigger( \"search\", event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\treturn this._search( value );\n\t},\n\n\t_search: function( value ) {\n\t\tthis.pending++;\n\t\tthis.element.addClass( \"ui-autocomplete-loading\" );\n\t\tthis.cancelSearch = false;\n\n\t\tthis.source( { term: value }, this._response() );\n\t},\n\n\t_response: function() {\n\t\tvar index = ++this.requestIndex;\n\n\t\treturn $.proxy(function( content ) {\n\t\t\tif ( index === this.requestIndex ) {\n\t\t\t\tthis.__response( content );\n\t\t\t}\n\n\t\t\tthis.pending--;\n\t\t\tif ( !this.pending ) {\n\t\t\t\tthis.element.removeClass( \"ui-autocomplete-loading\" );\n\t\t\t}\n\t\t}, this );\n\t},\n\n\t__response: function( content ) {\n\t\tif ( content ) {\n\t\t\tcontent = this._normalize( content );\n\t\t}\n\t\tthis._trigger( \"response\", null, { content: content } );\n\t\tif ( !this.options.disabled && content && content.length && !this.cancelSearch ) {\n\t\t\tthis._suggest( content );\n\t\t\tthis._trigger( \"open\" );\n\t\t} else {\n\t\t\t// use ._close() instead of .close() so we don't cancel future searches\n\t\t\tthis._close();\n\t\t}\n\t},\n\n\tclose: function( event ) {\n\t\tthis.cancelSearch = true;\n\t\tthis._close( event );\n\t},\n\n\t_close: function( event ) {\n\t\tif ( this.menu.element.is( \":visible\" ) ) {\n\t\t\tthis.menu.element.hide();\n\t\t\tthis.menu.blur();\n\t\t\tthis.isNewMenu = true;\n\t\t\tthis._trigger( \"close\", event );\n\t\t}\n\t},\n\n\t_change: function( event ) {\n\t\tif ( this.previous !== this._value() ) {\n\t\t\tthis._trigger( \"change\", event, { item: this.selectedItem } );\n\t\t}\n\t},\n\n\t_normalize: function( items ) {\n\t\t// assume all items have the right format when the first item is complete\n\t\tif ( items.length && items[0].label && items[0].value ) {\n\t\t\treturn items;\n\t\t}\n\t\treturn $.map( items, function( item ) {\n\t\t\tif ( typeof item === \"string\" ) {\n\t\t\t\treturn {\n\t\t\t\t\tlabel: item,\n\t\t\t\t\tvalue: item\n\t\t\t\t};\n\t\t\t}\n\t\t\treturn $.extend({\n\t\t\t\tlabel: item.label || item.value,\n\t\t\t\tvalue: item.value || item.label\n\t\t\t}, item );\n\t\t});\n\t},\n\n\t_suggest: function( items ) {\n\t\tvar ul = this.menu.element.empty();\n\t\tthis._renderMenu( ul, items );\n\t\tthis.isNewMenu = true;\n\t\tthis.menu.refresh();\n\n\t\t// size and position menu\n\t\tul.show();\n\t\tthis._resizeMenu();\n\t\tul.position( $.extend({\n\t\t\tof: this.element\n\t\t}, this.options.position ));\n\n\t\tif ( this.options.autoFocus ) {\n\t\t\tthis.menu.next();\n\t\t}\n\t},\n\n\t_resizeMenu: function() {\n\t\tvar ul = this.menu.element;\n\t\tul.outerWidth( Math.max(\n\t\t\t// Firefox wraps long text (possibly a rounding bug)\n\t\t\t// so we add 1px to avoid the wrapping (#7513)\n\t\t\tul.width( \"\" ).outerWidth() + 1,\n\t\t\tthis.element.outerWidth()\n\t\t) );\n\t},\n\n\t_renderMenu: function( ul, items ) {\n\t\tvar that = this;\n\t\t$.each( items, function( index, item ) {\n\t\t\tthat._renderItemData( ul, item );\n\t\t});\n\t},\n\n\t_renderItemData: function( ul, item ) {\n\t\treturn this._renderItem( ul, item ).data( \"ui-autocomplete-item\", item );\n\t},\n\n\t_renderItem: function( ul, item ) {\n\t\treturn $( \"<li>\" )\n\t\t\t.append( $( \"<a>\" ).text( item.label ) )\n\t\t\t.appendTo( ul );\n\t},\n\n\t_move: function( direction, event ) {\n\t\tif ( !this.menu.element.is( \":visible\" ) ) {\n\t\t\tthis.search( null, event );\n\t\t\treturn;\n\t\t}\n\t\tif ( this.menu.isFirstItem() && /^previous/.test( direction ) ||\n\t\t\t\tthis.menu.isLastItem() && /^next/.test( direction ) ) {\n\t\t\tthis._value( this.term );\n\t\t\tthis.menu.blur();\n\t\t\treturn;\n\t\t}\n\t\tthis.menu[ direction ]( event );\n\t},\n\n\twidget: function() {\n\t\treturn this.menu.element;\n\t},\n\n\t_value: function() {\n\t\treturn this.valueMethod.apply( this.element, arguments );\n\t},\n\n\t_keyEvent: function( keyEvent, event ) {\n\t\tif ( !this.isMultiLine || this.menu.element.is( \":visible\" ) ) {\n\t\t\tthis._move( keyEvent, event );\n\n\t\t\t// prevents moving cursor to beginning/end of the text field in some browsers\n\t\t\tevent.preventDefault();\n\t\t}\n\t}\n});\n\n$.extend( $.ui.autocomplete, {\n\tescapeRegex: function( value ) {\n\t\treturn value.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^$|#\\s]/g, \"\\\\$&\");\n\t},\n\tfilter: function(array, term) {\n\t\tvar matcher = new RegExp( $.ui.autocomplete.escapeRegex(term), \"i\" );\n\t\treturn $.grep( array, function(value) {\n\t\t\treturn matcher.test( value.label || value.value || value );\n\t\t});\n\t}\n});\n\n\n// live region extension, adding a `messages` option\n// NOTE: This is an experimental API. We are still investigating\n// a full solution for string manipulation and internationalization.\n$.widget( \"ui.autocomplete\", $.ui.autocomplete, {\n\toptions: {\n\t\tmessages: {\n\t\t\tnoResults: \"No search results.\",\n\t\t\tresults: function( amount ) {\n\t\t\t\treturn amount + ( amount > 1 ? \" results are\" : \" result is\" ) +\n\t\t\t\t\t\" available, use up and down arrow keys to navigate.\";\n\t\t\t}\n\t\t}\n\t},\n\n\t__response: function( content ) {\n\t\tvar message;\n\t\tthis._superApply( arguments );\n\t\tif ( this.options.disabled || this.cancelSearch ) {\n\t\t\treturn;\n\t\t}\n\t\tif ( content && content.length ) {\n\t\t\tmessage = this.options.messages.results( content.length );\n\t\t} else {\n\t\t\tmessage = this.options.messages.noResults;\n\t\t}\n\t\tthis.liveRegion.text( message );\n\t}\n});\n\n}( jQuery ));\n\n(function( $, undefined ) {\n\nvar lastActive,\n\tbaseClasses = \"ui-button ui-widget ui-state-default ui-corner-all\",\n\ttypeClasses = \"ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only\",\n\tformResetHandler = function() {\n\t\tvar form = $( this );\n\t\tsetTimeout(function() {\n\t\t\tform.find( \":ui-button\" ).button( \"refresh\" );\n\t\t}, 1 );\n\t},\n\tradioGroup = function( radio ) {\n\t\tvar name = radio.name,\n\t\t\tform = radio.form,\n\t\t\tradios = $( [] );\n\t\tif ( name ) {\n\t\t\tname = name.replace( /'/g, \"\\\\'\" );\n\t\t\tif ( form ) {\n\t\t\t\tradios = $( form ).find( \"[name='\" + name + \"']\" );\n\t\t\t} else {\n\t\t\t\tradios = $( \"[name='\" + name + \"']\", radio.ownerDocument )\n\t\t\t\t\t.filter(function() {\n\t\t\t\t\t\treturn !this.form;\n\t\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\treturn radios;\n\t};\n\n$.widget( \"ui.button\", {\n\tversion: \"1.10.4\",\n\tdefaultElement: \"<button>\",\n\toptions: {\n\t\tdisabled: null,\n\t\ttext: true,\n\t\tlabel: null,\n\t\ticons: {\n\t\t\tprimary: null,\n\t\t\tsecondary: null\n\t\t}\n\t},\n\t_create: function() {\n\t\tthis.element.closest( \"form\" )\n\t\t\t.unbind( \"reset\" + this.eventNamespace )\n\t\t\t.bind( \"reset\" + this.eventNamespace, formResetHandler );\n\n\t\tif ( typeof this.options.disabled !== \"boolean\" ) {\n\t\t\tthis.options.disabled = !!this.element.prop( \"disabled\" );\n\t\t} else {\n\t\t\tthis.element.prop( \"disabled\", this.options.disabled );\n\t\t}\n\n\t\tthis._determineButtonType();\n\t\tthis.hasTitle = !!this.buttonElement.attr( \"title\" );\n\n\t\tvar that = this,\n\t\t\toptions = this.options,\n\t\t\ttoggleButton = this.type === \"checkbox\" || this.type === \"radio\",\n\t\t\tactiveClass = !toggleButton ? \"ui-state-active\" : \"\";\n\n\t\tif ( options.label === null ) {\n\t\t\toptions.label = (this.type === \"input\" ? this.buttonElement.val() : this.buttonElement.html());\n\t\t}\n\n\t\tthis._hoverable( this.buttonElement );\n\n\t\tthis.buttonElement\n\t\t\t.addClass( baseClasses )\n\t\t\t.attr( \"role\", \"button\" )\n\t\t\t.bind( \"mouseenter\" + this.eventNamespace, function() {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( this === lastActive ) {\n\t\t\t\t\t$( this ).addClass( \"ui-state-active\" );\n\t\t\t\t}\n\t\t\t})\n\t\t\t.bind( \"mouseleave\" + this.eventNamespace, function() {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\t$( this ).removeClass( activeClass );\n\t\t\t})\n\t\t\t.bind( \"click\" + this.eventNamespace, function( event ) {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t}\n\t\t\t});\n\n\t\t// Can't use _focusable() because the element that receives focus\n\t\t// and the element that gets the ui-state-focus class are different\n\t\tthis._on({\n\t\t\tfocus: function() {\n\t\t\t\tthis.buttonElement.addClass( \"ui-state-focus\" );\n\t\t\t},\n\t\t\tblur: function() {\n\t\t\t\tthis.buttonElement.removeClass( \"ui-state-focus\" );\n\t\t\t}\n\t\t});\n\n\t\tif ( toggleButton ) {\n\t\t\tthis.element.bind( \"change\" + this.eventNamespace, function() {\n\t\t\t\tthat.refresh();\n\t\t\t});\n\t\t}\n\n\t\tif ( this.type === \"checkbox\" ) {\n\t\t\tthis.buttonElement.bind( \"click\" + this.eventNamespace, function() {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t});\n\t\t} else if ( this.type === \"radio\" ) {\n\t\t\tthis.buttonElement.bind( \"click\" + this.eventNamespace, function() {\n\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t\t$( this ).addClass( \"ui-state-active\" );\n\t\t\t\tthat.buttonElement.attr( \"aria-pressed\", \"true\" );\n\n\t\t\t\tvar radio = that.element[ 0 ];\n\t\t\t\tradioGroup( radio )\n\t\t\t\t\t.not( radio )\n\t\t\t\t\t.map(function() {\n\t\t\t\t\t\treturn $( this ).button( \"widget\" )[ 0 ];\n\t\t\t\t\t})\n\t\t\t\t\t.removeClass( \"ui-state-active\" )\n\t\t\t\t\t.attr( \"aria-pressed\", \"false\" );\n\t\t\t});\n\t\t} else {\n\t\t\tthis.buttonElement\n\t\t\t\t.bind( \"mousedown\" + this.eventNamespace, function() {\n\t\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\t$( this ).addClass( \"ui-state-active\" );\n\t\t\t\t\tlastActive = this;\n\t\t\t\t\tthat.document.one( \"mouseup\", function() {\n\t\t\t\t\t\tlastActive = null;\n\t\t\t\t\t});\n\t\t\t\t})\n\t\t\t\t.bind( \"mouseup\" + this.eventNamespace, function() {\n\t\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\t$( this ).removeClass( \"ui-state-active\" );\n\t\t\t\t})\n\t\t\t\t.bind( \"keydown\" + this.eventNamespace, function(event) {\n\t\t\t\t\tif ( options.disabled ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t\tif ( event.keyCode === $.ui.keyCode.SPACE || event.keyCode === $.ui.keyCode.ENTER ) {\n\t\t\t\t\t\t$( this ).addClass( \"ui-state-active\" );\n\t\t\t\t\t}\n\t\t\t\t})\n\t\t\t\t// see #8559, we bind to blur here in case the button element loses\n\t\t\t\t// focus between keydown and keyup, it would be left in an \"active\" state\n\t\t\t\t.bind( \"keyup\" + this.eventNamespace + \" blur\" + this.eventNamespace, function() {\n\t\t\t\t\t$( this ).removeClass( \"ui-state-active\" );\n\t\t\t\t});\n\n\t\t\tif ( this.buttonElement.is(\"a\") ) {\n\t\t\t\tthis.buttonElement.keyup(function(event) {\n\t\t\t\t\tif ( event.keyCode === $.ui.keyCode.SPACE ) {\n\t\t\t\t\t\t// TODO pass through original event correctly (just as 2nd argument doesn't work)\n\t\t\t\t\t\t$( this ).click();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\n\t\t// TODO: pull out $.Widget's handling for the disabled option into\n\t\t// $.Widget.prototype._setOptionDisabled so it's easy to proxy and can\n\t\t// be overridden by individual plugins\n\t\tthis._setOption( \"disabled\", options.disabled );\n\t\tthis._resetButton();\n\t},\n\n\t_determineButtonType: function() {\n\t\tvar ancestor, labelSelector, checked;\n\n\t\tif ( this.element.is(\"[type=checkbox]\") ) {\n\t\t\tthis.type = \"checkbox\";\n\t\t} else if ( this.element.is(\"[type=radio]\") ) {\n\t\t\tthis.type = \"radio\";\n\t\t} else if ( this.element.is(\"input\") ) {\n\t\t\tthis.type = \"input\";\n\t\t} else {\n\t\t\tthis.type = \"button\";\n\t\t}\n\n\t\tif ( this.type === \"checkbox\" || this.type === \"radio\" ) {\n\t\t\t// we don't search against the document in case the element\n\t\t\t// is disconnected from the DOM\n\t\t\tancestor = this.element.parents().last();\n\t\t\tlabelSelector = \"label[for='\" + this.element.attr(\"id\") + \"']\";\n\t\t\tthis.buttonElement = ancestor.find( labelSelector );\n\t\t\tif ( !this.buttonElement.length ) {\n\t\t\t\tancestor = ancestor.length ? ancestor.siblings() : this.element.siblings();\n\t\t\t\tthis.buttonElement = ancestor.filter( labelSelector );\n\t\t\t\tif ( !this.buttonElement.length ) {\n\t\t\t\t\tthis.buttonElement = ancestor.find( labelSelector );\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.element.addClass( \"ui-helper-hidden-accessible\" );\n\n\t\t\tchecked = this.element.is( \":checked\" );\n\t\t\tif ( checked ) {\n\t\t\t\tthis.buttonElement.addClass( \"ui-state-active\" );\n\t\t\t}\n\t\t\tthis.buttonElement.prop( \"aria-pressed\", checked );\n\t\t} else {\n\t\t\tthis.buttonElement = this.element;\n\t\t}\n\t},\n\n\twidget: function() {\n\t\treturn this.buttonElement;\n\t},\n\n\t_destroy: function() {\n\t\tthis.element\n\t\t\t.removeClass( \"ui-helper-hidden-accessible\" );\n\t\tthis.buttonElement\n\t\t\t.removeClass( baseClasses + \" ui-state-active \" + typeClasses )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-pressed\" )\n\t\t\t.html( this.buttonElement.find(\".ui-button-text\").html() );\n\n\t\tif ( !this.hasTitle ) {\n\t\t\tthis.buttonElement.removeAttr( \"title\" );\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tthis._super( key, value );\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.element.prop( \"disabled\", !!value );\n\t\t\tif ( value ) {\n\t\t\t\tthis.buttonElement.removeClass( \"ui-state-focus\" );\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tthis._resetButton();\n\t},\n\n\trefresh: function() {\n\t\t//See #8237 & #8828\n\t\tvar isDisabled = this.element.is( \"input, button\" ) ? this.element.is( \":disabled\" ) : this.element.hasClass( \"ui-button-disabled\" );\n\n\t\tif ( isDisabled !== this.options.disabled ) {\n\t\t\tthis._setOption( \"disabled\", isDisabled );\n\t\t}\n\t\tif ( this.type === \"radio\" ) {\n\t\t\tradioGroup( this.element[0] ).each(function() {\n\t\t\t\tif ( $( this ).is( \":checked\" ) ) {\n\t\t\t\t\t$( this ).button( \"widget\" )\n\t\t\t\t\t\t.addClass( \"ui-state-active\" )\n\t\t\t\t\t\t.attr( \"aria-pressed\", \"true\" );\n\t\t\t\t} else {\n\t\t\t\t\t$( this ).button( \"widget\" )\n\t\t\t\t\t\t.removeClass( \"ui-state-active\" )\n\t\t\t\t\t\t.attr( \"aria-pressed\", \"false\" );\n\t\t\t\t}\n\t\t\t});\n\t\t} else if ( this.type === \"checkbox\" ) {\n\t\t\tif ( this.element.is( \":checked\" ) ) {\n\t\t\t\tthis.buttonElement\n\t\t\t\t\t.addClass( \"ui-state-active\" )\n\t\t\t\t\t.attr( \"aria-pressed\", \"true\" );\n\t\t\t} else {\n\t\t\t\tthis.buttonElement\n\t\t\t\t\t.removeClass( \"ui-state-active\" )\n\t\t\t\t\t.attr( \"aria-pressed\", \"false\" );\n\t\t\t}\n\t\t}\n\t},\n\n\t_resetButton: function() {\n\t\tif ( this.type === \"input\" ) {\n\t\t\tif ( this.options.label ) {\n\t\t\t\tthis.element.val( this.options.label );\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tvar buttonElement = this.buttonElement.removeClass( typeClasses ),\n\t\t\tbuttonText = $( \"<span></span>\", this.document[0] )\n\t\t\t\t.addClass( \"ui-button-text\" )\n\t\t\t\t.html( this.options.label )\n\t\t\t\t.appendTo( buttonElement.empty() )\n\t\t\t\t.text(),\n\t\t\ticons = this.options.icons,\n\t\t\tmultipleIcons = icons.primary && icons.secondary,\n\t\t\tbuttonClasses = [];\n\n\t\tif ( icons.primary || icons.secondary ) {\n\t\t\tif ( this.options.text ) {\n\t\t\t\tbuttonClasses.push( \"ui-button-text-icon\" + ( multipleIcons ? \"s\" : ( icons.primary ? \"-primary\" : \"-secondary\" ) ) );\n\t\t\t}\n\n\t\t\tif ( icons.primary ) {\n\t\t\t\tbuttonElement.prepend( \"<span class='ui-button-icon-primary ui-icon \" + icons.primary + \"'></span>\" );\n\t\t\t}\n\n\t\t\tif ( icons.secondary ) {\n\t\t\t\tbuttonElement.append( \"<span class='ui-button-icon-secondary ui-icon \" + icons.secondary + \"'></span>\" );\n\t\t\t}\n\n\t\t\tif ( !this.options.text ) {\n\t\t\t\tbuttonClasses.push( multipleIcons ? \"ui-button-icons-only\" : \"ui-button-icon-only\" );\n\n\t\t\t\tif ( !this.hasTitle ) {\n\t\t\t\t\tbuttonElement.attr( \"title\", $.trim( buttonText ) );\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tbuttonClasses.push( \"ui-button-text-only\" );\n\t\t}\n\t\tbuttonElement.addClass( buttonClasses.join( \" \" ) );\n\t}\n});\n\n$.widget( \"ui.buttonset\", {\n\tversion: \"1.10.4\",\n\toptions: {\n\t\titems: \"button, input[type=button], input[type=submit], input[type=reset], input[type=checkbox], input[type=radio], a, :data(ui-button)\"\n\t},\n\n\t_create: function() {\n\t\tthis.element.addClass( \"ui-buttonset\" );\n\t},\n\n\t_init: function() {\n\t\tthis.refresh();\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis.buttons.button( \"option\", key, value );\n\t\t}\n\n\t\tthis._super( key, value );\n\t},\n\n\trefresh: function() {\n\t\tvar rtl = this.element.css( \"direction\" ) === \"rtl\";\n\n\t\tthis.buttons = this.element.find( this.options.items )\n\t\t\t.filter( \":ui-button\" )\n\t\t\t\t.button( \"refresh\" )\n\t\t\t.end()\n\t\t\t.not( \":ui-button\" )\n\t\t\t\t.button()\n\t\t\t.end()\n\t\t\t.map(function() {\n\t\t\t\treturn $( this ).button( \"widget\" )[ 0 ];\n\t\t\t})\n\t\t\t\t.removeClass( \"ui-corner-all ui-corner-left ui-corner-right\" )\n\t\t\t\t.filter( \":first\" )\n\t\t\t\t\t.addClass( rtl ? \"ui-corner-right\" : \"ui-corner-left\" )\n\t\t\t\t.end()\n\t\t\t\t.filter( \":last\" )\n\t\t\t\t\t.addClass( rtl ? \"ui-corner-left\" : \"ui-corner-right\" )\n\t\t\t\t.end()\n\t\t\t.end();\n\t},\n\n\t_destroy: function() {\n\t\tthis.element.removeClass( \"ui-buttonset\" );\n\t\tthis.buttons\n\t\t\t.map(function() {\n\t\t\t\treturn $( this ).button( \"widget\" )[ 0 ];\n\t\t\t})\n\t\t\t\t.removeClass( \"ui-corner-left ui-corner-right\" )\n\t\t\t.end()\n\t\t\t.button( \"destroy\" );\n\t}\n});\n\n}( jQuery ) );\n\n(function( $, undefined ) {\n\n$.extend($.ui, { datepicker: { version: \"1.10.4\" } });\n\nvar PROP_NAME = \"datepicker\",\n\tinstActive;\n\n/* Date picker manager.\n   Use the singleton instance of this class, $.datepicker, to interact with the date picker.\n   Settings for (groups of) date pickers are maintained in an instance object,\n   allowing multiple different settings on the same page. */\n\nfunction Datepicker() {\n\tthis._curInst = null; // The current instance in use\n\tthis._keyEvent = false; // If the last event was a key event\n\tthis._disabledInputs = []; // List of date picker inputs that have been disabled\n\tthis._datepickerShowing = false; // True if the popup picker is showing , false if not\n\tthis._inDialog = false; // True if showing within a \"dialog\", false if not\n\tthis._mainDivId = \"ui-datepicker-div\"; // The ID of the main datepicker division\n\tthis._inlineClass = \"ui-datepicker-inline\"; // The name of the inline marker class\n\tthis._appendClass = \"ui-datepicker-append\"; // The name of the append marker class\n\tthis._triggerClass = \"ui-datepicker-trigger\"; // The name of the trigger marker class\n\tthis._dialogClass = \"ui-datepicker-dialog\"; // The name of the dialog marker class\n\tthis._disableClass = \"ui-datepicker-disabled\"; // The name of the disabled covering marker class\n\tthis._unselectableClass = \"ui-datepicker-unselectable\"; // The name of the unselectable cell marker class\n\tthis._currentClass = \"ui-datepicker-current-day\"; // The name of the current day marker class\n\tthis._dayOverClass = \"ui-datepicker-days-cell-over\"; // The name of the day hover marker class\n\tthis.regional = []; // Available regional settings, indexed by language code\n\tthis.regional[\"\"] = { // Default regional settings\n\t\tcloseText: \"Done\", // Display text for close link\n\t\tprevText: \"Prev\", // Display text for previous month link\n\t\tnextText: \"Next\", // Display text for next month link\n\t\tcurrentText: \"Today\", // Display text for current month link\n\t\tmonthNames: [\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\n\t\t\t\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"], // Names of months for drop-down and formatting\n\t\tmonthNamesShort: [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"], // For formatting\n\t\tdayNames: [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"], // For formatting\n\t\tdayNamesShort: [\"Sun\", \"Mon\", \"Tue\", \"Wed\", \"Thu\", \"Fri\", \"Sat\"], // For formatting\n\t\tdayNamesMin: [\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"], // Column headings for days starting at Sunday\n\t\tweekHeader: \"Wk\", // Column header for week of the year\n\t\tdateFormat: \"mm/dd/yy\", // See format options on parseDate\n\t\tfirstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ...\n\t\tisRTL: false, // True if right-to-left language, false if left-to-right\n\t\tshowMonthAfterYear: false, // True if the year select precedes month, false for month then year\n\t\tyearSuffix: \"\" // Additional text to append to the year in the month headers\n\t};\n\tthis._defaults = { // Global defaults for all the date picker instances\n\t\tshowOn: \"focus\", // \"focus\" for popup on focus,\n\t\t\t// \"button\" for trigger button, or \"both\" for either\n\t\tshowAnim: \"fadeIn\", // Name of jQuery animation for popup\n\t\tshowOptions: {}, // Options for enhanced animations\n\t\tdefaultDate: null, // Used when field is blank: actual date,\n\t\t\t// +/-number for offset from today, null for today\n\t\tappendText: \"\", // Display text following the input box, e.g. showing the format\n\t\tbuttonText: \"...\", // Text for trigger button\n\t\tbuttonImage: \"\", // URL for trigger button image\n\t\tbuttonImageOnly: false, // True if the image appears alone, false if it appears on a button\n\t\thideIfNoPrevNext: false, // True to hide next/previous month links\n\t\t\t// if not applicable, false to just disable them\n\t\tnavigationAsDateFormat: false, // True if date formatting applied to prev/today/next links\n\t\tgotoCurrent: false, // True if today link goes back to current selection instead\n\t\tchangeMonth: false, // True if month can be selected directly, false if only prev/next\n\t\tchangeYear: false, // True if year can be selected directly, false if only prev/next\n\t\tyearRange: \"c-10:c+10\", // Range of years to display in drop-down,\n\t\t\t// either relative to today's year (-nn:+nn), relative to currently displayed year\n\t\t\t// (c-nn:c+nn), absolute (nnnn:nnnn), or a combination of the above (nnnn:-n)\n\t\tshowOtherMonths: false, // True to show dates in other months, false to leave blank\n\t\tselectOtherMonths: false, // True to allow selection of dates in other months, false for unselectable\n\t\tshowWeek: false, // True to show week of the year, false to not show it\n\t\tcalculateWeek: this.iso8601Week, // How to calculate the week of the year,\n\t\t\t// takes a Date and returns the number of the week for it\n\t\tshortYearCutoff: \"+10\", // Short year values < this are in the current century,\n\t\t\t// > this are in the previous century,\n\t\t\t// string value starting with \"+\" for current year + value\n\t\tminDate: null, // The earliest selectable date, or null for no limit\n\t\tmaxDate: null, // The latest selectable date, or null for no limit\n\t\tduration: \"fast\", // Duration of display/closure\n\t\tbeforeShowDay: null, // Function that takes a date and returns an array with\n\t\t\t// [0] = true if selectable, false if not, [1] = custom CSS class name(s) or \"\",\n\t\t\t// [2] = cell title (optional), e.g. $.datepicker.noWeekends\n\t\tbeforeShow: null, // Function that takes an input field and\n\t\t\t// returns a set of custom settings for the date picker\n\t\tonSelect: null, // Define a callback function when a date is selected\n\t\tonChangeMonthYear: null, // Define a callback function when the month or year is changed\n\t\tonClose: null, // Define a callback function when the datepicker is closed\n\t\tnumberOfMonths: 1, // Number of months to show at a time\n\t\tshowCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0)\n\t\tstepMonths: 1, // Number of months to step back/forward\n\t\tstepBigMonths: 12, // Number of months to step back/forward for the big links\n\t\taltField: \"\", // Selector for an alternate field to store selected dates into\n\t\taltFormat: \"\", // The date format to use for the alternate field\n\t\tconstrainInput: true, // The input is constrained by the current date format\n\t\tshowButtonPanel: false, // True to show button panel, false to not show it\n\t\tautoSize: false, // True to size the input for the date format, false to leave as is\n\t\tdisabled: false // The initial disabled state\n\t};\n\t$.extend(this._defaults, this.regional[\"\"]);\n\tthis.dpDiv = bindHover($(\"<div id='\" + this._mainDivId + \"' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>\"));\n}\n\n$.extend(Datepicker.prototype, {\n\t/* Class name added to elements to indicate already configured with a date picker. */\n\tmarkerClassName: \"hasDatepicker\",\n\n\t//Keep track of the maximum number of rows displayed (see #7043)\n\tmaxRows: 4,\n\n\t// TODO rename to \"widget\" when switching to widget factory\n\t_widgetDatepicker: function() {\n\t\treturn this.dpDiv;\n\t},\n\n\t/* Override the default settings for all instances of the date picker.\n\t * @param  settings  object - the new settings to use as defaults (anonymous object)\n\t * @return the manager object\n\t */\n\tsetDefaults: function(settings) {\n\t\textendRemove(this._defaults, settings || {});\n\t\treturn this;\n\t},\n\n\t/* Attach the date picker to a jQuery selection.\n\t * @param  target\telement - the target input field or division or span\n\t * @param  settings  object - the new settings to use for this date picker instance (anonymous)\n\t */\n\t_attachDatepicker: function(target, settings) {\n\t\tvar nodeName, inline, inst;\n\t\tnodeName = target.nodeName.toLowerCase();\n\t\tinline = (nodeName === \"div\" || nodeName === \"span\");\n\t\tif (!target.id) {\n\t\t\tthis.uuid += 1;\n\t\t\ttarget.id = \"dp\" + this.uuid;\n\t\t}\n\t\tinst = this._newInst($(target), inline);\n\t\tinst.settings = $.extend({}, settings || {});\n\t\tif (nodeName === \"input\") {\n\t\t\tthis._connectDatepicker(target, inst);\n\t\t} else if (inline) {\n\t\t\tthis._inlineDatepicker(target, inst);\n\t\t}\n\t},\n\n\t/* Create a new instance object. */\n\t_newInst: function(target, inline) {\n\t\tvar id = target[0].id.replace(/([^A-Za-z0-9_\\-])/g, \"\\\\\\\\$1\"); // escape jQuery meta chars\n\t\treturn {id: id, input: target, // associated target\n\t\t\tselectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection\n\t\t\tdrawMonth: 0, drawYear: 0, // month being drawn\n\t\t\tinline: inline, // is datepicker inline or not\n\t\t\tdpDiv: (!inline ? this.dpDiv : // presentation div\n\t\t\tbindHover($(\"<div class='\" + this._inlineClass + \" ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>\")))};\n\t},\n\n\t/* Attach the date picker to an input field. */\n\t_connectDatepicker: function(target, inst) {\n\t\tvar input = $(target);\n\t\tinst.append = $([]);\n\t\tinst.trigger = $([]);\n\t\tif (input.hasClass(this.markerClassName)) {\n\t\t\treturn;\n\t\t}\n\t\tthis._attachments(input, inst);\n\t\tinput.addClass(this.markerClassName).keydown(this._doKeyDown).\n\t\t\tkeypress(this._doKeyPress).keyup(this._doKeyUp);\n\t\tthis._autoSize(inst);\n\t\t$.data(target, PROP_NAME, inst);\n\t\t//If disabled option is true, disable the datepicker once it has been attached to the input (see ticket #5665)\n\t\tif( inst.settings.disabled ) {\n\t\t\tthis._disableDatepicker( target );\n\t\t}\n\t},\n\n\t/* Make attachments based on settings. */\n\t_attachments: function(input, inst) {\n\t\tvar showOn, buttonText, buttonImage,\n\t\t\tappendText = this._get(inst, \"appendText\"),\n\t\t\tisRTL = this._get(inst, \"isRTL\");\n\n\t\tif (inst.append) {\n\t\t\tinst.append.remove();\n\t\t}\n\t\tif (appendText) {\n\t\t\tinst.append = $(\"<span class='\" + this._appendClass + \"'>\" + appendText + \"</span>\");\n\t\t\tinput[isRTL ? \"before\" : \"after\"](inst.append);\n\t\t}\n\n\t\tinput.unbind(\"focus\", this._showDatepicker);\n\n\t\tif (inst.trigger) {\n\t\t\tinst.trigger.remove();\n\t\t}\n\n\t\tshowOn = this._get(inst, \"showOn\");\n\t\tif (showOn === \"focus\" || showOn === \"both\") { // pop-up date picker when in the marked field\n\t\t\tinput.focus(this._showDatepicker);\n\t\t}\n\t\tif (showOn === \"button\" || showOn === \"both\") { // pop-up date picker when button clicked\n\t\t\tbuttonText = this._get(inst, \"buttonText\");\n\t\t\tbuttonImage = this._get(inst, \"buttonImage\");\n\t\t\tinst.trigger = $(this._get(inst, \"buttonImageOnly\") ?\n\t\t\t\t$(\"<img/>\").addClass(this._triggerClass).\n\t\t\t\t\tattr({ src: buttonImage, alt: buttonText, title: buttonText }) :\n\t\t\t\t$(\"<button type='button'></button>\").addClass(this._triggerClass).\n\t\t\t\t\thtml(!buttonImage ? buttonText : $(\"<img/>\").attr(\n\t\t\t\t\t{ src:buttonImage, alt:buttonText, title:buttonText })));\n\t\t\tinput[isRTL ? \"before\" : \"after\"](inst.trigger);\n\t\t\tinst.trigger.click(function() {\n\t\t\t\tif ($.datepicker._datepickerShowing && $.datepicker._lastInput === input[0]) {\n\t\t\t\t\t$.datepicker._hideDatepicker();\n\t\t\t\t} else if ($.datepicker._datepickerShowing && $.datepicker._lastInput !== input[0]) {\n\t\t\t\t\t$.datepicker._hideDatepicker();\n\t\t\t\t\t$.datepicker._showDatepicker(input[0]);\n\t\t\t\t} else {\n\t\t\t\t\t$.datepicker._showDatepicker(input[0]);\n\t\t\t\t}\n\t\t\t\treturn false;\n\t\t\t});\n\t\t}\n\t},\n\n\t/* Apply the maximum length for the date format. */\n\t_autoSize: function(inst) {\n\t\tif (this._get(inst, \"autoSize\") && !inst.inline) {\n\t\t\tvar findMax, max, maxI, i,\n\t\t\t\tdate = new Date(2009, 12 - 1, 20), // Ensure double digits\n\t\t\t\tdateFormat = this._get(inst, \"dateFormat\");\n\n\t\t\tif (dateFormat.match(/[DM]/)) {\n\t\t\t\tfindMax = function(names) {\n\t\t\t\t\tmax = 0;\n\t\t\t\t\tmaxI = 0;\n\t\t\t\t\tfor (i = 0; i < names.length; i++) {\n\t\t\t\t\t\tif (names[i].length > max) {\n\t\t\t\t\t\t\tmax = names[i].length;\n\t\t\t\t\t\t\tmaxI = i;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn maxI;\n\t\t\t\t};\n\t\t\t\tdate.setMonth(findMax(this._get(inst, (dateFormat.match(/MM/) ?\n\t\t\t\t\t\"monthNames\" : \"monthNamesShort\"))));\n\t\t\t\tdate.setDate(findMax(this._get(inst, (dateFormat.match(/DD/) ?\n\t\t\t\t\t\"dayNames\" : \"dayNamesShort\"))) + 20 - date.getDay());\n\t\t\t}\n\t\t\tinst.input.attr(\"size\", this._formatDate(inst, date).length);\n\t\t}\n\t},\n\n\t/* Attach an inline date picker to a div. */\n\t_inlineDatepicker: function(target, inst) {\n\t\tvar divSpan = $(target);\n\t\tif (divSpan.hasClass(this.markerClassName)) {\n\t\t\treturn;\n\t\t}\n\t\tdivSpan.addClass(this.markerClassName).append(inst.dpDiv);\n\t\t$.data(target, PROP_NAME, inst);\n\t\tthis._setDate(inst, this._getDefaultDate(inst), true);\n\t\tthis._updateDatepicker(inst);\n\t\tthis._updateAlternate(inst);\n\t\t//If disabled option is true, disable the datepicker before showing it (see ticket #5665)\n\t\tif( inst.settings.disabled ) {\n\t\t\tthis._disableDatepicker( target );\n\t\t}\n\t\t// Set display:block in place of inst.dpDiv.show() which won't work on disconnected elements\n\t\t// http://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height\n\t\tinst.dpDiv.css( \"display\", \"block\" );\n\t},\n\n\t/* Pop-up the date picker in a \"dialog\" box.\n\t * @param  input element - ignored\n\t * @param  date\tstring or Date - the initial date to display\n\t * @param  onSelect  function - the function to call when a date is selected\n\t * @param  settings  object - update the dialog date picker instance's settings (anonymous object)\n\t * @param  pos int[2] - coordinates for the dialog's position within the screen or\n\t *\t\t\t\t\tevent - with x/y coordinates or\n\t *\t\t\t\t\tleave empty for default (screen centre)\n\t * @return the manager object\n\t */\n\t_dialogDatepicker: function(input, date, onSelect, settings, pos) {\n\t\tvar id, browserWidth, browserHeight, scrollX, scrollY,\n\t\t\tinst = this._dialogInst; // internal instance\n\n\t\tif (!inst) {\n\t\t\tthis.uuid += 1;\n\t\t\tid = \"dp\" + this.uuid;\n\t\t\tthis._dialogInput = $(\"<input type='text' id='\" + id +\n\t\t\t\t\"' style='position: absolute; top: -100px; width: 0px;'/>\");\n\t\t\tthis._dialogInput.keydown(this._doKeyDown);\n\t\t\t$(\"body\").append(this._dialogInput);\n\t\t\tinst = this._dialogInst = this._newInst(this._dialogInput, false);\n\t\t\tinst.settings = {};\n\t\t\t$.data(this._dialogInput[0], PROP_NAME, inst);\n\t\t}\n\t\textendRemove(inst.settings, settings || {});\n\t\tdate = (date && date.constructor === Date ? this._formatDate(inst, date) : date);\n\t\tthis._dialogInput.val(date);\n\n\t\tthis._pos = (pos ? (pos.length ? pos : [pos.pageX, pos.pageY]) : null);\n\t\tif (!this._pos) {\n\t\t\tbrowserWidth = document.documentElement.clientWidth;\n\t\t\tbrowserHeight = document.documentElement.clientHeight;\n\t\t\tscrollX = document.documentElement.scrollLeft || document.body.scrollLeft;\n\t\t\tscrollY = document.documentElement.scrollTop || document.body.scrollTop;\n\t\t\tthis._pos = // should use actual width/height below\n\t\t\t\t[(browserWidth / 2) - 100 + scrollX, (browserHeight / 2) - 150 + scrollY];\n\t\t}\n\n\t\t// move input on screen for focus, but hidden behind dialog\n\t\tthis._dialogInput.css(\"left\", (this._pos[0] + 20) + \"px\").css(\"top\", this._pos[1] + \"px\");\n\t\tinst.settings.onSelect = onSelect;\n\t\tthis._inDialog = true;\n\t\tthis.dpDiv.addClass(this._dialogClass);\n\t\tthis._showDatepicker(this._dialogInput[0]);\n\t\tif ($.blockUI) {\n\t\t\t$.blockUI(this.dpDiv);\n\t\t}\n\t\t$.data(this._dialogInput[0], PROP_NAME, inst);\n\t\treturn this;\n\t},\n\n\t/* Detach a datepicker from its control.\n\t * @param  target\telement - the target input field or division or span\n\t */\n\t_destroyDatepicker: function(target) {\n\t\tvar nodeName,\n\t\t\t$target = $(target),\n\t\t\tinst = $.data(target, PROP_NAME);\n\n\t\tif (!$target.hasClass(this.markerClassName)) {\n\t\t\treturn;\n\t\t}\n\n\t\tnodeName = target.nodeName.toLowerCase();\n\t\t$.removeData(target, PROP_NAME);\n\t\tif (nodeName === \"input\") {\n\t\t\tinst.append.remove();\n\t\t\tinst.trigger.remove();\n\t\t\t$target.removeClass(this.markerClassName).\n\t\t\t\tunbind(\"focus\", this._showDatepicker).\n\t\t\t\tunbind(\"keydown\", this._doKeyDown).\n\t\t\t\tunbind(\"keypress\", this._doKeyPress).\n\t\t\t\tunbind(\"keyup\", this._doKeyUp);\n\t\t} else if (nodeName === \"div\" || nodeName === \"span\") {\n\t\t\t$target.removeClass(this.markerClassName).empty();\n\t\t}\n\t},\n\n\t/* Enable the date picker to a jQuery selection.\n\t * @param  target\telement - the target input field or division or span\n\t */\n\t_enableDatepicker: function(target) {\n\t\tvar nodeName, inline,\n\t\t\t$target = $(target),\n\t\t\tinst = $.data(target, PROP_NAME);\n\n\t\tif (!$target.hasClass(this.markerClassName)) {\n\t\t\treturn;\n\t\t}\n\n\t\tnodeName = target.nodeName.toLowerCase();\n\t\tif (nodeName === \"input\") {\n\t\t\ttarget.disabled = false;\n\t\t\tinst.trigger.filter(\"button\").\n\t\t\t\teach(function() { this.disabled = false; }).end().\n\t\t\t\tfilter(\"img\").css({opacity: \"1.0\", cursor: \"\"});\n\t\t} else if (nodeName === \"div\" || nodeName === \"span\") {\n\t\t\tinline = $target.children(\".\" + this._inlineClass);\n\t\t\tinline.children().removeClass(\"ui-state-disabled\");\n\t\t\tinline.find(\"select.ui-datepicker-month, select.ui-datepicker-year\").\n\t\t\t\tprop(\"disabled\", false);\n\t\t}\n\t\tthis._disabledInputs = $.map(this._disabledInputs,\n\t\t\tfunction(value) { return (value === target ? null : value); }); // delete entry\n\t},\n\n\t/* Disable the date picker to a jQuery selection.\n\t * @param  target\telement - the target input field or division or span\n\t */\n\t_disableDatepicker: function(target) {\n\t\tvar nodeName, inline,\n\t\t\t$target = $(target),\n\t\t\tinst = $.data(target, PROP_NAME);\n\n\t\tif (!$target.hasClass(this.markerClassName)) {\n\t\t\treturn;\n\t\t}\n\n\t\tnodeName = target.nodeName.toLowerCase();\n\t\tif (nodeName === \"input\") {\n\t\t\ttarget.disabled = true;\n\t\t\tinst.trigger.filter(\"button\").\n\t\t\t\teach(function() { this.disabled = true; }).end().\n\t\t\t\tfilter(\"img\").css({opacity: \"0.5\", cursor: \"default\"});\n\t\t} else if (nodeName === \"div\" || nodeName === \"span\") {\n\t\t\tinline = $target.children(\".\" + this._inlineClass);\n\t\t\tinline.children().addClass(\"ui-state-disabled\");\n\t\t\tinline.find(\"select.ui-datepicker-month, select.ui-datepicker-year\").\n\t\t\t\tprop(\"disabled\", true);\n\t\t}\n\t\tthis._disabledInputs = $.map(this._disabledInputs,\n\t\t\tfunction(value) { return (value === target ? null : value); }); // delete entry\n\t\tthis._disabledInputs[this._disabledInputs.length] = target;\n\t},\n\n\t/* Is the first field in a jQuery collection disabled as a datepicker?\n\t * @param  target\telement - the target input field or division or span\n\t * @return boolean - true if disabled, false if enabled\n\t */\n\t_isDisabledDatepicker: function(target) {\n\t\tif (!target) {\n\t\t\treturn false;\n\t\t}\n\t\tfor (var i = 0; i < this._disabledInputs.length; i++) {\n\t\t\tif (this._disabledInputs[i] === target) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\t\treturn false;\n\t},\n\n\t/* Retrieve the instance data for the target control.\n\t * @param  target  element - the target input field or division or span\n\t * @return  object - the associated instance data\n\t * @throws  error if a jQuery problem getting data\n\t */\n\t_getInst: function(target) {\n\t\ttry {\n\t\t\treturn $.data(target, PROP_NAME);\n\t\t}\n\t\tcatch (err) {\n\t\t\tthrow \"Missing instance data for this datepicker\";\n\t\t}\n\t},\n\n\t/* Update or retrieve the settings for a date picker attached to an input field or division.\n\t * @param  target  element - the target input field or division or span\n\t * @param  name\tobject - the new settings to update or\n\t *\t\t\t\tstring - the name of the setting to change or retrieve,\n\t *\t\t\t\twhen retrieving also \"all\" for all instance settings or\n\t *\t\t\t\t\"defaults\" for all global defaults\n\t * @param  value   any - the new value for the setting\n\t *\t\t\t\t(omit if above is an object or to retrieve a value)\n\t */\n\t_optionDatepicker: function(target, name, value) {\n\t\tvar settings, date, minDate, maxDate,\n\t\t\tinst = this._getInst(target);\n\n\t\tif (arguments.length === 2 && typeof name === \"string\") {\n\t\t\treturn (name === \"defaults\" ? $.extend({}, $.datepicker._defaults) :\n\t\t\t\t(inst ? (name === \"all\" ? $.extend({}, inst.settings) :\n\t\t\t\tthis._get(inst, name)) : null));\n\t\t}\n\n\t\tsettings = name || {};\n\t\tif (typeof name === \"string\") {\n\t\t\tsettings = {};\n\t\t\tsettings[name] = value;\n\t\t}\n\n\t\tif (inst) {\n\t\t\tif (this._curInst === inst) {\n\t\t\t\tthis._hideDatepicker();\n\t\t\t}\n\n\t\t\tdate = this._getDateDatepicker(target, true);\n\t\t\tminDate = this._getMinMaxDate(inst, \"min\");\n\t\t\tmaxDate = this._getMinMaxDate(inst, \"max\");\n\t\t\textendRemove(inst.settings, settings);\n\t\t\t// reformat the old minDate/maxDate values if dateFormat changes and a new minDate/maxDate isn't provided\n\t\t\tif (minDate !== null && settings.dateFormat !== undefined && settings.minDate === undefined) {\n\t\t\t\tinst.settings.minDate = this._formatDate(inst, minDate);\n\t\t\t}\n\t\t\tif (maxDate !== null && settings.dateFormat !== undefined && settings.maxDate === undefined) {\n\t\t\t\tinst.settings.maxDate = this._formatDate(inst, maxDate);\n\t\t\t}\n\t\t\tif ( \"disabled\" in settings ) {\n\t\t\t\tif ( settings.disabled ) {\n\t\t\t\t\tthis._disableDatepicker(target);\n\t\t\t\t} else {\n\t\t\t\t\tthis._enableDatepicker(target);\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis._attachments($(target), inst);\n\t\t\tthis._autoSize(inst);\n\t\t\tthis._setDate(inst, date);\n\t\t\tthis._updateAlternate(inst);\n\t\t\tthis._updateDatepicker(inst);\n\t\t}\n\t},\n\n\t// change method deprecated\n\t_changeDatepicker: function(target, name, value) {\n\t\tthis._optionDatepicker(target, name, value);\n\t},\n\n\t/* Redraw the date picker attached to an input field or division.\n\t * @param  target  element - the target input field or division or span\n\t */\n\t_refreshDatepicker: function(target) {\n\t\tvar inst = this._getInst(target);\n\t\tif (inst) {\n\t\t\tthis._updateDatepicker(inst);\n\t\t}\n\t},\n\n\t/* Set the dates for a jQuery selection.\n\t * @param  target element - the target input field or division or span\n\t * @param  date\tDate - the new date\n\t */\n\t_setDateDatepicker: function(target, date) {\n\t\tvar inst = this._getInst(target);\n\t\tif (inst) {\n\t\t\tthis._setDate(inst, date);\n\t\t\tthis._updateDatepicker(inst);\n\t\t\tthis._updateAlternate(inst);\n\t\t}\n\t},\n\n\t/* Get the date(s) for the first entry in a jQuery selection.\n\t * @param  target element - the target input field or division or span\n\t * @param  noDefault boolean - true if no default date is to be used\n\t * @return Date - the current date\n\t */\n\t_getDateDatepicker: function(target, noDefault) {\n\t\tvar inst = this._getInst(target);\n\t\tif (inst && !inst.inline) {\n\t\t\tthis._setDateFromField(inst, noDefault);\n\t\t}\n\t\treturn (inst ? this._getDate(inst) : null);\n\t},\n\n\t/* Handle keystrokes. */\n\t_doKeyDown: function(event) {\n\t\tvar onSelect, dateStr, sel,\n\t\t\tinst = $.datepicker._getInst(event.target),\n\t\t\thandled = true,\n\t\t\tisRTL = inst.dpDiv.is(\".ui-datepicker-rtl\");\n\n\t\tinst._keyEvent = true;\n\t\tif ($.datepicker._datepickerShowing) {\n\t\t\tswitch (event.keyCode) {\n\t\t\t\tcase 9: $.datepicker._hideDatepicker();\n\t\t\t\t\t\thandled = false;\n\t\t\t\t\t\tbreak; // hide on tab out\n\t\t\t\tcase 13: sel = $(\"td.\" + $.datepicker._dayOverClass + \":not(.\" +\n\t\t\t\t\t\t\t\t\t$.datepicker._currentClass + \")\", inst.dpDiv);\n\t\t\t\t\t\tif (sel[0]) {\n\t\t\t\t\t\t\t$.datepicker._selectDay(event.target, inst.selectedMonth, inst.selectedYear, sel[0]);\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tonSelect = $.datepicker._get(inst, \"onSelect\");\n\t\t\t\t\t\tif (onSelect) {\n\t\t\t\t\t\t\tdateStr = $.datepicker._formatDate(inst);\n\n\t\t\t\t\t\t\t// trigger custom callback\n\t\t\t\t\t\t\tonSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$.datepicker._hideDatepicker();\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\treturn false; // don't submit the form\n\t\t\t\tcase 27: $.datepicker._hideDatepicker();\n\t\t\t\t\t\tbreak; // hide on escape\n\t\t\t\tcase 33: $.datepicker._adjustDate(event.target, (event.ctrlKey ?\n\t\t\t\t\t\t\t-$.datepicker._get(inst, \"stepBigMonths\") :\n\t\t\t\t\t\t\t-$.datepicker._get(inst, \"stepMonths\")), \"M\");\n\t\t\t\t\t\tbreak; // previous month/year on page up/+ ctrl\n\t\t\t\tcase 34: $.datepicker._adjustDate(event.target, (event.ctrlKey ?\n\t\t\t\t\t\t\t+$.datepicker._get(inst, \"stepBigMonths\") :\n\t\t\t\t\t\t\t+$.datepicker._get(inst, \"stepMonths\")), \"M\");\n\t\t\t\t\t\tbreak; // next month/year on page down/+ ctrl\n\t\t\t\tcase 35: if (event.ctrlKey || event.metaKey) {\n\t\t\t\t\t\t\t$.datepicker._clearDate(event.target);\n\t\t\t\t\t\t}\n\t\t\t\t\t\thandled = event.ctrlKey || event.metaKey;\n\t\t\t\t\t\tbreak; // clear on ctrl or command +end\n\t\t\t\tcase 36: if (event.ctrlKey || event.metaKey) {\n\t\t\t\t\t\t\t$.datepicker._gotoToday(event.target);\n\t\t\t\t\t\t}\n\t\t\t\t\t\thandled = event.ctrlKey || event.metaKey;\n\t\t\t\t\t\tbreak; // current on ctrl or command +home\n\t\t\t\tcase 37: if (event.ctrlKey || event.metaKey) {\n\t\t\t\t\t\t\t$.datepicker._adjustDate(event.target, (isRTL ? +1 : -1), \"D\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\thandled = event.ctrlKey || event.metaKey;\n\t\t\t\t\t\t// -1 day on ctrl or command +left\n\t\t\t\t\t\tif (event.originalEvent.altKey) {\n\t\t\t\t\t\t\t$.datepicker._adjustDate(event.target, (event.ctrlKey ?\n\t\t\t\t\t\t\t\t-$.datepicker._get(inst, \"stepBigMonths\") :\n\t\t\t\t\t\t\t\t-$.datepicker._get(inst, \"stepMonths\")), \"M\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// next month/year on alt +left on Mac\n\t\t\t\t\t\tbreak;\n\t\t\t\tcase 38: if (event.ctrlKey || event.metaKey) {\n\t\t\t\t\t\t\t$.datepicker._adjustDate(event.target, -7, \"D\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\thandled = event.ctrlKey || event.metaKey;\n\t\t\t\t\t\tbreak; // -1 week on ctrl or command +up\n\t\t\t\tcase 39: if (event.ctrlKey || event.metaKey) {\n\t\t\t\t\t\t\t$.datepicker._adjustDate(event.target, (isRTL ? -1 : +1), \"D\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\thandled = event.ctrlKey || event.metaKey;\n\t\t\t\t\t\t// +1 day on ctrl or command +right\n\t\t\t\t\t\tif (event.originalEvent.altKey) {\n\t\t\t\t\t\t\t$.datepicker._adjustDate(event.target, (event.ctrlKey ?\n\t\t\t\t\t\t\t\t+$.datepicker._get(inst, \"stepBigMonths\") :\n\t\t\t\t\t\t\t\t+$.datepicker._get(inst, \"stepMonths\")), \"M\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// next month/year on alt +right\n\t\t\t\t\t\tbreak;\n\t\t\t\tcase 40: if (event.ctrlKey || event.metaKey) {\n\t\t\t\t\t\t\t$.datepicker._adjustDate(event.target, +7, \"D\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\thandled = event.ctrlKey || event.metaKey;\n\t\t\t\t\t\tbreak; // +1 week on ctrl or command +down\n\t\t\t\tdefault: handled = false;\n\t\t\t}\n\t\t} else if (event.keyCode === 36 && event.ctrlKey) { // display the date picker on ctrl+home\n\t\t\t$.datepicker._showDatepicker(this);\n\t\t} else {\n\t\t\thandled = false;\n\t\t}\n\n\t\tif (handled) {\n\t\t\tevent.preventDefault();\n\t\t\tevent.stopPropagation();\n\t\t}\n\t},\n\n\t/* Filter entered characters - based on date format. */\n\t_doKeyPress: function(event) {\n\t\tvar chars, chr,\n\t\t\tinst = $.datepicker._getInst(event.target);\n\n\t\tif ($.datepicker._get(inst, \"constrainInput\")) {\n\t\t\tchars = $.datepicker._possibleChars($.datepicker._get(inst, \"dateFormat\"));\n\t\t\tchr = String.fromCharCode(event.charCode == null ? event.keyCode : event.charCode);\n\t\t\treturn event.ctrlKey || event.metaKey || (chr < \" \" || !chars || chars.indexOf(chr) > -1);\n\t\t}\n\t},\n\n\t/* Synchronise manual entry and field/alternate field. */\n\t_doKeyUp: function(event) {\n\t\tvar date,\n\t\t\tinst = $.datepicker._getInst(event.target);\n\n\t\tif (inst.input.val() !== inst.lastVal) {\n\t\t\ttry {\n\t\t\t\tdate = $.datepicker.parseDate($.datepicker._get(inst, \"dateFormat\"),\n\t\t\t\t\t(inst.input ? inst.input.val() : null),\n\t\t\t\t\t$.datepicker._getFormatConfig(inst));\n\n\t\t\t\tif (date) { // only if valid\n\t\t\t\t\t$.datepicker._setDateFromField(inst);\n\t\t\t\t\t$.datepicker._updateAlternate(inst);\n\t\t\t\t\t$.datepicker._updateDatepicker(inst);\n\t\t\t\t}\n\t\t\t}\n\t\t\tcatch (err) {\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t},\n\n\t/* Pop-up the date picker for a given input field.\n\t * If false returned from beforeShow event handler do not show.\n\t * @param  input  element - the input field attached to the date picker or\n\t *\t\t\t\t\tevent - if triggered by focus\n\t */\n\t_showDatepicker: function(input) {\n\t\tinput = input.target || input;\n\t\tif (input.nodeName.toLowerCase() !== \"input\") { // find from button/image trigger\n\t\t\tinput = $(\"input\", input.parentNode)[0];\n\t\t}\n\n\t\tif ($.datepicker._isDisabledDatepicker(input) || $.datepicker._lastInput === input) { // already here\n\t\t\treturn;\n\t\t}\n\n\t\tvar inst, beforeShow, beforeShowSettings, isFixed,\n\t\t\toffset, showAnim, duration;\n\n\t\tinst = $.datepicker._getInst(input);\n\t\tif ($.datepicker._curInst && $.datepicker._curInst !== inst) {\n\t\t\t$.datepicker._curInst.dpDiv.stop(true, true);\n\t\t\tif ( inst && $.datepicker._datepickerShowing ) {\n\t\t\t\t$.datepicker._hideDatepicker( $.datepicker._curInst.input[0] );\n\t\t\t}\n\t\t}\n\n\t\tbeforeShow = $.datepicker._get(inst, \"beforeShow\");\n\t\tbeforeShowSettings = beforeShow ? beforeShow.apply(input, [input, inst]) : {};\n\t\tif(beforeShowSettings === false){\n\t\t\treturn;\n\t\t}\n\t\textendRemove(inst.settings, beforeShowSettings);\n\n\t\tinst.lastVal = null;\n\t\t$.datepicker._lastInput = input;\n\t\t$.datepicker._setDateFromField(inst);\n\n\t\tif ($.datepicker._inDialog) { // hide cursor\n\t\t\tinput.value = \"\";\n\t\t}\n\t\tif (!$.datepicker._pos) { // position below input\n\t\t\t$.datepicker._pos = $.datepicker._findPos(input);\n\t\t\t$.datepicker._pos[1] += input.offsetHeight; // add the height\n\t\t}\n\n\t\tisFixed = false;\n\t\t$(input).parents().each(function() {\n\t\t\tisFixed |= $(this).css(\"position\") === \"fixed\";\n\t\t\treturn !isFixed;\n\t\t});\n\n\t\toffset = {left: $.datepicker._pos[0], top: $.datepicker._pos[1]};\n\t\t$.datepicker._pos = null;\n\t\t//to avoid flashes on Firefox\n\t\tinst.dpDiv.empty();\n\t\t// determine sizing offscreen\n\t\tinst.dpDiv.css({position: \"absolute\", display: \"block\", top: \"-1000px\"});\n\t\t$.datepicker._updateDatepicker(inst);\n\t\t// fix width for dynamic number of date pickers\n\t\t// and adjust position before showing\n\t\toffset = $.datepicker._checkOffset(inst, offset, isFixed);\n\t\tinst.dpDiv.css({position: ($.datepicker._inDialog && $.blockUI ?\n\t\t\t\"static\" : (isFixed ? \"fixed\" : \"absolute\")), display: \"none\",\n\t\t\tleft: offset.left + \"px\", top: offset.top + \"px\"});\n\n\t\tif (!inst.inline) {\n\t\t\tshowAnim = $.datepicker._get(inst, \"showAnim\");\n\t\t\tduration = $.datepicker._get(inst, \"duration\");\n\t\t\tinst.dpDiv.zIndex($(input).zIndex()+1);\n\t\t\t$.datepicker._datepickerShowing = true;\n\n\t\t\tif ( $.effects && $.effects.effect[ showAnim ] ) {\n\t\t\t\tinst.dpDiv.show(showAnim, $.datepicker._get(inst, \"showOptions\"), duration);\n\t\t\t} else {\n\t\t\t\tinst.dpDiv[showAnim || \"show\"](showAnim ? duration : null);\n\t\t\t}\n\n\t\t\tif ( $.datepicker._shouldFocusInput( inst ) ) {\n\t\t\t\tinst.input.focus();\n\t\t\t}\n\n\t\t\t$.datepicker._curInst = inst;\n\t\t}\n\t},\n\n\t/* Generate the date picker content. */\n\t_updateDatepicker: function(inst) {\n\t\tthis.maxRows = 4; //Reset the max number of rows being displayed (see #7043)\n\t\tinstActive = inst; // for delegate hover events\n\t\tinst.dpDiv.empty().append(this._generateHTML(inst));\n\t\tthis._attachHandlers(inst);\n\t\tinst.dpDiv.find(\".\" + this._dayOverClass + \" a\").mouseover();\n\n\t\tvar origyearshtml,\n\t\t\tnumMonths = this._getNumberOfMonths(inst),\n\t\t\tcols = numMonths[1],\n\t\t\twidth = 17;\n\n\t\tinst.dpDiv.removeClass(\"ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4\").width(\"\");\n\t\tif (cols > 1) {\n\t\t\tinst.dpDiv.addClass(\"ui-datepicker-multi-\" + cols).css(\"width\", (width * cols) + \"em\");\n\t\t}\n\t\tinst.dpDiv[(numMonths[0] !== 1 || numMonths[1] !== 1 ? \"add\" : \"remove\") +\n\t\t\t\"Class\"](\"ui-datepicker-multi\");\n\t\tinst.dpDiv[(this._get(inst, \"isRTL\") ? \"add\" : \"remove\") +\n\t\t\t\"Class\"](\"ui-datepicker-rtl\");\n\n\t\tif (inst === $.datepicker._curInst && $.datepicker._datepickerShowing && $.datepicker._shouldFocusInput( inst ) ) {\n\t\t\tinst.input.focus();\n\t\t}\n\n\t\t// deffered render of the years select (to avoid flashes on Firefox)\n\t\tif( inst.yearshtml ){\n\t\t\torigyearshtml = inst.yearshtml;\n\t\t\tsetTimeout(function(){\n\t\t\t\t//assure that inst.yearshtml didn't change.\n\t\t\t\tif( origyearshtml === inst.yearshtml && inst.yearshtml ){\n\t\t\t\t\tinst.dpDiv.find(\"select.ui-datepicker-year:first\").replaceWith(inst.yearshtml);\n\t\t\t\t}\n\t\t\t\torigyearshtml = inst.yearshtml = null;\n\t\t\t}, 0);\n\t\t}\n\t},\n\n\t// #6694 - don't focus the input if it's already focused\n\t// this breaks the change event in IE\n\t// Support: IE and jQuery <1.9\n\t_shouldFocusInput: function( inst ) {\n\t\treturn inst.input && inst.input.is( \":visible\" ) && !inst.input.is( \":disabled\" ) && !inst.input.is( \":focus\" );\n\t},\n\n\t/* Check positioning to remain on screen. */\n\t_checkOffset: function(inst, offset, isFixed) {\n\t\tvar dpWidth = inst.dpDiv.outerWidth(),\n\t\t\tdpHeight = inst.dpDiv.outerHeight(),\n\t\t\tinputWidth = inst.input ? inst.input.outerWidth() : 0,\n\t\t\tinputHeight = inst.input ? inst.input.outerHeight() : 0,\n\t\t\tviewWidth = document.documentElement.clientWidth + (isFixed ? 0 : $(document).scrollLeft()),\n\t\t\tviewHeight = document.documentElement.clientHeight + (isFixed ? 0 : $(document).scrollTop());\n\n\t\toffset.left -= (this._get(inst, \"isRTL\") ? (dpWidth - inputWidth) : 0);\n\t\toffset.left -= (isFixed && offset.left === inst.input.offset().left) ? $(document).scrollLeft() : 0;\n\t\toffset.top -= (isFixed && offset.top === (inst.input.offset().top + inputHeight)) ? $(document).scrollTop() : 0;\n\n\t\t// now check if datepicker is showing outside window viewport - move to a better place if so.\n\t\toffset.left -= Math.min(offset.left, (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ?\n\t\t\tMath.abs(offset.left + dpWidth - viewWidth) : 0);\n\t\toffset.top -= Math.min(offset.top, (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ?\n\t\t\tMath.abs(dpHeight + inputHeight) : 0);\n\n\t\treturn offset;\n\t},\n\n\t/* Find an object's position on the screen. */\n\t_findPos: function(obj) {\n\t\tvar position,\n\t\t\tinst = this._getInst(obj),\n\t\t\tisRTL = this._get(inst, \"isRTL\");\n\n\t\twhile (obj && (obj.type === \"hidden\" || obj.nodeType !== 1 || $.expr.filters.hidden(obj))) {\n\t\t\tobj = obj[isRTL ? \"previousSibling\" : \"nextSibling\"];\n\t\t}\n\n\t\tposition = $(obj).offset();\n\t\treturn [position.left, position.top];\n\t},\n\n\t/* Hide the date picker from view.\n\t * @param  input  element - the input field attached to the date picker\n\t */\n\t_hideDatepicker: function(input) {\n\t\tvar showAnim, duration, postProcess, onClose,\n\t\t\tinst = this._curInst;\n\n\t\tif (!inst || (input && inst !== $.data(input, PROP_NAME))) {\n\t\t\treturn;\n\t\t}\n\n\t\tif (this._datepickerShowing) {\n\t\t\tshowAnim = this._get(inst, \"showAnim\");\n\t\t\tduration = this._get(inst, \"duration\");\n\t\t\tpostProcess = function() {\n\t\t\t\t$.datepicker._tidyDialog(inst);\n\t\t\t};\n\n\t\t\t// DEPRECATED: after BC for 1.8.x $.effects[ showAnim ] is not needed\n\t\t\tif ( $.effects && ( $.effects.effect[ showAnim ] || $.effects[ showAnim ] ) ) {\n\t\t\t\tinst.dpDiv.hide(showAnim, $.datepicker._get(inst, \"showOptions\"), duration, postProcess);\n\t\t\t} else {\n\t\t\t\tinst.dpDiv[(showAnim === \"slideDown\" ? \"slideUp\" :\n\t\t\t\t\t(showAnim === \"fadeIn\" ? \"fadeOut\" : \"hide\"))]((showAnim ? duration : null), postProcess);\n\t\t\t}\n\n\t\t\tif (!showAnim) {\n\t\t\t\tpostProcess();\n\t\t\t}\n\t\t\tthis._datepickerShowing = false;\n\n\t\t\tonClose = this._get(inst, \"onClose\");\n\t\t\tif (onClose) {\n\t\t\t\tonClose.apply((inst.input ? inst.input[0] : null), [(inst.input ? inst.input.val() : \"\"), inst]);\n\t\t\t}\n\n\t\t\tthis._lastInput = null;\n\t\t\tif (this._inDialog) {\n\t\t\t\tthis._dialogInput.css({ position: \"absolute\", left: \"0\", top: \"-100px\" });\n\t\t\t\tif ($.blockUI) {\n\t\t\t\t\t$.unblockUI();\n\t\t\t\t\t$(\"body\").append(this.dpDiv);\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis._inDialog = false;\n\t\t}\n\t},\n\n\t/* Tidy up after a dialog display. */\n\t_tidyDialog: function(inst) {\n\t\tinst.dpDiv.removeClass(this._dialogClass).unbind(\".ui-datepicker-calendar\");\n\t},\n\n\t/* Close date picker if clicked elsewhere. */\n\t_checkExternalClick: function(event) {\n\t\tif (!$.datepicker._curInst) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar $target = $(event.target),\n\t\t\tinst = $.datepicker._getInst($target[0]);\n\n\t\tif ( ( ( $target[0].id !== $.datepicker._mainDivId &&\n\t\t\t\t$target.parents(\"#\" + $.datepicker._mainDivId).length === 0 &&\n\t\t\t\t!$target.hasClass($.datepicker.markerClassName) &&\n\t\t\t\t!$target.closest(\".\" + $.datepicker._triggerClass).length &&\n\t\t\t\t$.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI) ) ) ||\n\t\t\t( $target.hasClass($.datepicker.markerClassName) && $.datepicker._curInst !== inst ) ) {\n\t\t\t\t$.datepicker._hideDatepicker();\n\t\t}\n\t},\n\n\t/* Adjust one of the date sub-fields. */\n\t_adjustDate: function(id, offset, period) {\n\t\tvar target = $(id),\n\t\t\tinst = this._getInst(target[0]);\n\n\t\tif (this._isDisabledDatepicker(target[0])) {\n\t\t\treturn;\n\t\t}\n\t\tthis._adjustInstDate(inst, offset +\n\t\t\t(period === \"M\" ? this._get(inst, \"showCurrentAtPos\") : 0), // undo positioning\n\t\t\tperiod);\n\t\tthis._updateDatepicker(inst);\n\t},\n\n\t/* Action for current link. */\n\t_gotoToday: function(id) {\n\t\tvar date,\n\t\t\ttarget = $(id),\n\t\t\tinst = this._getInst(target[0]);\n\n\t\tif (this._get(inst, \"gotoCurrent\") && inst.currentDay) {\n\t\t\tinst.selectedDay = inst.currentDay;\n\t\t\tinst.drawMonth = inst.selectedMonth = inst.currentMonth;\n\t\t\tinst.drawYear = inst.selectedYear = inst.currentYear;\n\t\t} else {\n\t\t\tdate = new Date();\n\t\t\tinst.selectedDay = date.getDate();\n\t\t\tinst.drawMonth = inst.selectedMonth = date.getMonth();\n\t\t\tinst.drawYear = inst.selectedYear = date.getFullYear();\n\t\t}\n\t\tthis._notifyChange(inst);\n\t\tthis._adjustDate(target);\n\t},\n\n\t/* Action for selecting a new month/year. */\n\t_selectMonthYear: function(id, select, period) {\n\t\tvar target = $(id),\n\t\t\tinst = this._getInst(target[0]);\n\n\t\tinst[\"selected\" + (period === \"M\" ? \"Month\" : \"Year\")] =\n\t\tinst[\"draw\" + (period === \"M\" ? \"Month\" : \"Year\")] =\n\t\t\tparseInt(select.options[select.selectedIndex].value,10);\n\n\t\tthis._notifyChange(inst);\n\t\tthis._adjustDate(target);\n\t},\n\n\t/* Action for selecting a day. */\n\t_selectDay: function(id, month, year, td) {\n\t\tvar inst,\n\t\t\ttarget = $(id);\n\n\t\tif ($(td).hasClass(this._unselectableClass) || this._isDisabledDatepicker(target[0])) {\n\t\t\treturn;\n\t\t}\n\n\t\tinst = this._getInst(target[0]);\n\t\tinst.selectedDay = inst.currentDay = $(\"a\", td).html();\n\t\tinst.selectedMonth = inst.currentMonth = month;\n\t\tinst.selectedYear = inst.currentYear = year;\n\t\tthis._selectDate(id, this._formatDate(inst,\n\t\t\tinst.currentDay, inst.currentMonth, inst.currentYear));\n\t},\n\n\t/* Erase the input field and hide the date picker. */\n\t_clearDate: function(id) {\n\t\tvar target = $(id);\n\t\tthis._selectDate(target, \"\");\n\t},\n\n\t/* Update the input field with the selected date. */\n\t_selectDate: function(id, dateStr) {\n\t\tvar onSelect,\n\t\t\ttarget = $(id),\n\t\t\tinst = this._getInst(target[0]);\n\n\t\tdateStr = (dateStr != null ? dateStr : this._formatDate(inst));\n\t\tif (inst.input) {\n\t\t\tinst.input.val(dateStr);\n\t\t}\n\t\tthis._updateAlternate(inst);\n\n\t\tonSelect = this._get(inst, \"onSelect\");\n\t\tif (onSelect) {\n\t\t\tonSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]);  // trigger custom callback\n\t\t} else if (inst.input) {\n\t\t\tinst.input.trigger(\"change\"); // fire the change event\n\t\t}\n\n\t\tif (inst.inline){\n\t\t\tthis._updateDatepicker(inst);\n\t\t} else {\n\t\t\tthis._hideDatepicker();\n\t\t\tthis._lastInput = inst.input[0];\n\t\t\tif (typeof(inst.input[0]) !== \"object\") {\n\t\t\t\tinst.input.focus(); // restore focus\n\t\t\t}\n\t\t\tthis._lastInput = null;\n\t\t}\n\t},\n\n\t/* Update any alternate field to synchronise with the main field. */\n\t_updateAlternate: function(inst) {\n\t\tvar altFormat, date, dateStr,\n\t\t\taltField = this._get(inst, \"altField\");\n\n\t\tif (altField) { // update alternate field too\n\t\t\taltFormat = this._get(inst, \"altFormat\") || this._get(inst, \"dateFormat\");\n\t\t\tdate = this._getDate(inst);\n\t\t\tdateStr = this.formatDate(altFormat, date, this._getFormatConfig(inst));\n\t\t\t$(altField).each(function() { $(this).val(dateStr); });\n\t\t}\n\t},\n\n\t/* Set as beforeShowDay function to prevent selection of weekends.\n\t * @param  date  Date - the date to customise\n\t * @return [boolean, string] - is this date selectable?, what is its CSS class?\n\t */\n\tnoWeekends: function(date) {\n\t\tvar day = date.getDay();\n\t\treturn [(day > 0 && day < 6), \"\"];\n\t},\n\n\t/* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition.\n\t * @param  date  Date - the date to get the week for\n\t * @return  number - the number of the week within the year that contains this date\n\t */\n\tiso8601Week: function(date) {\n\t\tvar time,\n\t\t\tcheckDate = new Date(date.getTime());\n\n\t\t// Find Thursday of this week starting on Monday\n\t\tcheckDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7));\n\n\t\ttime = checkDate.getTime();\n\t\tcheckDate.setMonth(0); // Compare with Jan 1\n\t\tcheckDate.setDate(1);\n\t\treturn Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1;\n\t},\n\n\t/* Parse a string value into a date object.\n\t * See formatDate below for the possible formats.\n\t *\n\t * @param  format string - the expected format of the date\n\t * @param  value string - the date in the above format\n\t * @param  settings Object - attributes include:\n\t *\t\t\t\t\tshortYearCutoff  number - the cutoff year for determining the century (optional)\n\t *\t\t\t\t\tdayNamesShort\tstring[7] - abbreviated names of the days from Sunday (optional)\n\t *\t\t\t\t\tdayNames\t\tstring[7] - names of the days from Sunday (optional)\n\t *\t\t\t\t\tmonthNamesShort string[12] - abbreviated names of the months (optional)\n\t *\t\t\t\t\tmonthNames\t\tstring[12] - names of the months (optional)\n\t * @return  Date - the extracted date value or null if value is blank\n\t */\n\tparseDate: function (format, value, settings) {\n\t\tif (format == null || value == null) {\n\t\t\tthrow \"Invalid arguments\";\n\t\t}\n\n\t\tvalue = (typeof value === \"object\" ? value.toString() : value + \"\");\n\t\tif (value === \"\") {\n\t\t\treturn null;\n\t\t}\n\n\t\tvar iFormat, dim, extra,\n\t\t\tiValue = 0,\n\t\t\tshortYearCutoffTemp = (settings ? settings.shortYearCutoff : null) || this._defaults.shortYearCutoff,\n\t\t\tshortYearCutoff = (typeof shortYearCutoffTemp !== \"string\" ? shortYearCutoffTemp :\n\t\t\t\tnew Date().getFullYear() % 100 + parseInt(shortYearCutoffTemp, 10)),\n\t\t\tdayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort,\n\t\t\tdayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames,\n\t\t\tmonthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort,\n\t\t\tmonthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames,\n\t\t\tyear = -1,\n\t\t\tmonth = -1,\n\t\t\tday = -1,\n\t\t\tdoy = -1,\n\t\t\tliteral = false,\n\t\t\tdate,\n\t\t\t// Check whether a format character is doubled\n\t\t\tlookAhead = function(match) {\n\t\t\t\tvar matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);\n\t\t\t\tif (matches) {\n\t\t\t\t\tiFormat++;\n\t\t\t\t}\n\t\t\t\treturn matches;\n\t\t\t},\n\t\t\t// Extract a number from the string value\n\t\t\tgetNumber = function(match) {\n\t\t\t\tvar isDoubled = lookAhead(match),\n\t\t\t\t\tsize = (match === \"@\" ? 14 : (match === \"!\" ? 20 :\n\t\t\t\t\t(match === \"y\" && isDoubled ? 4 : (match === \"o\" ? 3 : 2)))),\n\t\t\t\t\tdigits = new RegExp(\"^\\\\d{1,\" + size + \"}\"),\n\t\t\t\t\tnum = value.substring(iValue).match(digits);\n\t\t\t\tif (!num) {\n\t\t\t\t\tthrow \"Missing number at position \" + iValue;\n\t\t\t\t}\n\t\t\t\tiValue += num[0].length;\n\t\t\t\treturn parseInt(num[0], 10);\n\t\t\t},\n\t\t\t// Extract a name from the string value and convert to an index\n\t\t\tgetName = function(match, shortNames, longNames) {\n\t\t\t\tvar index = -1,\n\t\t\t\t\tnames = $.map(lookAhead(match) ? longNames : shortNames, function (v, k) {\n\t\t\t\t\t\treturn [ [k, v] ];\n\t\t\t\t\t}).sort(function (a, b) {\n\t\t\t\t\t\treturn -(a[1].length - b[1].length);\n\t\t\t\t\t});\n\n\t\t\t\t$.each(names, function (i, pair) {\n\t\t\t\t\tvar name = pair[1];\n\t\t\t\t\tif (value.substr(iValue, name.length).toLowerCase() === name.toLowerCase()) {\n\t\t\t\t\t\tindex = pair[0];\n\t\t\t\t\t\tiValue += name.length;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\tif (index !== -1) {\n\t\t\t\t\treturn index + 1;\n\t\t\t\t} else {\n\t\t\t\t\tthrow \"Unknown name at position \" + iValue;\n\t\t\t\t}\n\t\t\t},\n\t\t\t// Confirm that a literal character matches the string value\n\t\t\tcheckLiteral = function() {\n\t\t\t\tif (value.charAt(iValue) !== format.charAt(iFormat)) {\n\t\t\t\t\tthrow \"Unexpected literal at position \" + iValue;\n\t\t\t\t}\n\t\t\t\tiValue++;\n\t\t\t};\n\n\t\tfor (iFormat = 0; iFormat < format.length; iFormat++) {\n\t\t\tif (literal) {\n\t\t\t\tif (format.charAt(iFormat) === \"'\" && !lookAhead(\"'\")) {\n\t\t\t\t\tliteral = false;\n\t\t\t\t} else {\n\t\t\t\t\tcheckLiteral();\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tswitch (format.charAt(iFormat)) {\n\t\t\t\t\tcase \"d\":\n\t\t\t\t\t\tday = getNumber(\"d\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"D\":\n\t\t\t\t\t\tgetName(\"D\", dayNamesShort, dayNames);\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"o\":\n\t\t\t\t\t\tdoy = getNumber(\"o\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"m\":\n\t\t\t\t\t\tmonth = getNumber(\"m\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"M\":\n\t\t\t\t\t\tmonth = getName(\"M\", monthNamesShort, monthNames);\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"y\":\n\t\t\t\t\t\tyear = getNumber(\"y\");\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"@\":\n\t\t\t\t\t\tdate = new Date(getNumber(\"@\"));\n\t\t\t\t\t\tyear = date.getFullYear();\n\t\t\t\t\t\tmonth = date.getMonth() + 1;\n\t\t\t\t\t\tday = date.getDate();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"!\":\n\t\t\t\t\t\tdate = new Date((getNumber(\"!\") - this._ticksTo1970) / 10000);\n\t\t\t\t\t\tyear = date.getFullYear();\n\t\t\t\t\t\tmonth = date.getMonth() + 1;\n\t\t\t\t\t\tday = date.getDate();\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"'\":\n\t\t\t\t\t\tif (lookAhead(\"'\")){\n\t\t\t\t\t\t\tcheckLiteral();\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tliteral = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tcheckLiteral();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif (iValue < value.length){\n\t\t\textra = value.substr(iValue);\n\t\t\tif (!/^\\s+/.test(extra)) {\n\t\t\t\tthrow \"Extra/unparsed characters found in date: \" + extra;\n\t\t\t}\n\t\t}\n\n\t\tif (year === -1) {\n\t\t\tyear = new Date().getFullYear();\n\t\t} else if (year < 100) {\n\t\t\tyear += new Date().getFullYear() - new Date().getFullYear() % 100 +\n\t\t\t\t(year <= shortYearCutoff ? 0 : -100);\n\t\t}\n\n\t\tif (doy > -1) {\n\t\t\tmonth = 1;\n\t\t\tday = doy;\n\t\t\tdo {\n\t\t\t\tdim = this._getDaysInMonth(year, month - 1);\n\t\t\t\tif (day <= dim) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tmonth++;\n\t\t\t\tday -= dim;\n\t\t\t} while (true);\n\t\t}\n\n\t\tdate = this._daylightSavingAdjust(new Date(year, month - 1, day));\n\t\tif (date.getFullYear() !== year || date.getMonth() + 1 !== month || date.getDate() !== day) {\n\t\t\tthrow \"Invalid date\"; // E.g. 31/02/00\n\t\t}\n\t\treturn date;\n\t},\n\n\t/* Standard date formats. */\n\tATOM: \"yy-mm-dd\", // RFC 3339 (ISO 8601)\n\tCOOKIE: \"D, dd M yy\",\n\tISO_8601: \"yy-mm-dd\",\n\tRFC_822: \"D, d M y\",\n\tRFC_850: \"DD, dd-M-y\",\n\tRFC_1036: \"D, d M y\",\n\tRFC_1123: \"D, d M yy\",\n\tRFC_2822: \"D, d M yy\",\n\tRSS: \"D, d M y\", // RFC 822\n\tTICKS: \"!\",\n\tTIMESTAMP: \"@\",\n\tW3C: \"yy-mm-dd\", // ISO 8601\n\n\t_ticksTo1970: (((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) +\n\t\tMath.floor(1970 / 400)) * 24 * 60 * 60 * 10000000),\n\n\t/* Format a date object into a string value.\n\t * The format can be combinations of the following:\n\t * d  - day of month (no leading zero)\n\t * dd - day of month (two digit)\n\t * o  - day of year (no leading zeros)\n\t * oo - day of year (three digit)\n\t * D  - day name short\n\t * DD - day name long\n\t * m  - month of year (no leading zero)\n\t * mm - month of year (two digit)\n\t * M  - month name short\n\t * MM - month name long\n\t * y  - year (two digit)\n\t * yy - year (four digit)\n\t * @ - Unix timestamp (ms since 01/01/1970)\n\t * ! - Windows ticks (100ns since 01/01/0001)\n\t * \"...\" - literal text\n\t * '' - single quote\n\t *\n\t * @param  format string - the desired format of the date\n\t * @param  date Date - the date value to format\n\t * @param  settings Object - attributes include:\n\t *\t\t\t\t\tdayNamesShort\tstring[7] - abbreviated names of the days from Sunday (optional)\n\t *\t\t\t\t\tdayNames\t\tstring[7] - names of the days from Sunday (optional)\n\t *\t\t\t\t\tmonthNamesShort string[12] - abbreviated names of the months (optional)\n\t *\t\t\t\t\tmonthNames\t\tstring[12] - names of the months (optional)\n\t * @return  string - the date in the above format\n\t */\n\tformatDate: function (format, date, settings) {\n\t\tif (!date) {\n\t\t\treturn \"\";\n\t\t}\n\n\t\tvar iFormat,\n\t\t\tdayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort,\n\t\t\tdayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames,\n\t\t\tmonthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort,\n\t\t\tmonthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames,\n\t\t\t// Check whether a format character is doubled\n\t\t\tlookAhead = function(match) {\n\t\t\t\tvar matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);\n\t\t\t\tif (matches) {\n\t\t\t\t\tiFormat++;\n\t\t\t\t}\n\t\t\t\treturn matches;\n\t\t\t},\n\t\t\t// Format a number, with leading zero if necessary\n\t\t\tformatNumber = function(match, value, len) {\n\t\t\t\tvar num = \"\" + value;\n\t\t\t\tif (lookAhead(match)) {\n\t\t\t\t\twhile (num.length < len) {\n\t\t\t\t\t\tnum = \"0\" + num;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn num;\n\t\t\t},\n\t\t\t// Format a name, short or long as requested\n\t\t\tformatName = function(match, value, shortNames, longNames) {\n\t\t\t\treturn (lookAhead(match) ? longNames[value] : shortNames[value]);\n\t\t\t},\n\t\t\toutput = \"\",\n\t\t\tliteral = false;\n\n\t\tif (date) {\n\t\t\tfor (iFormat = 0; iFormat < format.length; iFormat++) {\n\t\t\t\tif (literal) {\n\t\t\t\t\tif (format.charAt(iFormat) === \"'\" && !lookAhead(\"'\")) {\n\t\t\t\t\t\tliteral = false;\n\t\t\t\t\t} else {\n\t\t\t\t\t\toutput += format.charAt(iFormat);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tswitch (format.charAt(iFormat)) {\n\t\t\t\t\t\tcase \"d\":\n\t\t\t\t\t\t\toutput += formatNumber(\"d\", date.getDate(), 2);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"D\":\n\t\t\t\t\t\t\toutput += formatName(\"D\", date.getDay(), dayNamesShort, dayNames);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"o\":\n\t\t\t\t\t\t\toutput += formatNumber(\"o\",\n\t\t\t\t\t\t\t\tMath.round((new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000), 3);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"m\":\n\t\t\t\t\t\t\toutput += formatNumber(\"m\", date.getMonth() + 1, 2);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"M\":\n\t\t\t\t\t\t\toutput += formatName(\"M\", date.getMonth(), monthNamesShort, monthNames);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"y\":\n\t\t\t\t\t\t\toutput += (lookAhead(\"y\") ? date.getFullYear() :\n\t\t\t\t\t\t\t\t(date.getYear() % 100 < 10 ? \"0\" : \"\") + date.getYear() % 100);\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"@\":\n\t\t\t\t\t\t\toutput += date.getTime();\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"!\":\n\t\t\t\t\t\t\toutput += date.getTime() * 10000 + this._ticksTo1970;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"'\":\n\t\t\t\t\t\t\tif (lookAhead(\"'\")) {\n\t\t\t\t\t\t\t\toutput += \"'\";\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tliteral = true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\toutput += format.charAt(iFormat);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn output;\n\t},\n\n\t/* Extract all possible characters from the date format. */\n\t_possibleChars: function (format) {\n\t\tvar iFormat,\n\t\t\tchars = \"\",\n\t\t\tliteral = false,\n\t\t\t// Check whether a format character is doubled\n\t\t\tlookAhead = function(match) {\n\t\t\t\tvar matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match);\n\t\t\t\tif (matches) {\n\t\t\t\t\tiFormat++;\n\t\t\t\t}\n\t\t\t\treturn matches;\n\t\t\t};\n\n\t\tfor (iFormat = 0; iFormat < format.length; iFormat++) {\n\t\t\tif (literal) {\n\t\t\t\tif (format.charAt(iFormat) === \"'\" && !lookAhead(\"'\")) {\n\t\t\t\t\tliteral = false;\n\t\t\t\t} else {\n\t\t\t\t\tchars += format.charAt(iFormat);\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tswitch (format.charAt(iFormat)) {\n\t\t\t\t\tcase \"d\": case \"m\": case \"y\": case \"@\":\n\t\t\t\t\t\tchars += \"0123456789\";\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase \"D\": case \"M\":\n\t\t\t\t\t\treturn null; // Accept anything\n\t\t\t\t\tcase \"'\":\n\t\t\t\t\t\tif (lookAhead(\"'\")) {\n\t\t\t\t\t\t\tchars += \"'\";\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tliteral = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tdefault:\n\t\t\t\t\t\tchars += format.charAt(iFormat);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn chars;\n\t},\n\n\t/* Get a setting value, defaulting if necessary. */\n\t_get: function(inst, name) {\n\t\treturn inst.settings[name] !== undefined ?\n\t\t\tinst.settings[name] : this._defaults[name];\n\t},\n\n\t/* Parse existing date and initialise date picker. */\n\t_setDateFromField: function(inst, noDefault) {\n\t\tif (inst.input.val() === inst.lastVal) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar dateFormat = this._get(inst, \"dateFormat\"),\n\t\t\tdates = inst.lastVal = inst.input ? inst.input.val() : null,\n\t\t\tdefaultDate = this._getDefaultDate(inst),\n\t\t\tdate = defaultDate,\n\t\t\tsettings = this._getFormatConfig(inst);\n\n\t\ttry {\n\t\t\tdate = this.parseDate(dateFormat, dates, settings) || defaultDate;\n\t\t} catch (event) {\n\t\t\tdates = (noDefault ? \"\" : dates);\n\t\t}\n\t\tinst.selectedDay = date.getDate();\n\t\tinst.drawMonth = inst.selectedMonth = date.getMonth();\n\t\tinst.drawYear = inst.selectedYear = date.getFullYear();\n\t\tinst.currentDay = (dates ? date.getDate() : 0);\n\t\tinst.currentMonth = (dates ? date.getMonth() : 0);\n\t\tinst.currentYear = (dates ? date.getFullYear() : 0);\n\t\tthis._adjustInstDate(inst);\n\t},\n\n\t/* Retrieve the default date shown on opening. */\n\t_getDefaultDate: function(inst) {\n\t\treturn this._restrictMinMax(inst,\n\t\t\tthis._determineDate(inst, this._get(inst, \"defaultDate\"), new Date()));\n\t},\n\n\t/* A date may be specified as an exact value or a relative one. */\n\t_determineDate: function(inst, date, defaultDate) {\n\t\tvar offsetNumeric = function(offset) {\n\t\t\t\tvar date = new Date();\n\t\t\t\tdate.setDate(date.getDate() + offset);\n\t\t\t\treturn date;\n\t\t\t},\n\t\t\toffsetString = function(offset) {\n\t\t\t\ttry {\n\t\t\t\t\treturn $.datepicker.parseDate($.datepicker._get(inst, \"dateFormat\"),\n\t\t\t\t\t\toffset, $.datepicker._getFormatConfig(inst));\n\t\t\t\t}\n\t\t\t\tcatch (e) {\n\t\t\t\t\t// Ignore\n\t\t\t\t}\n\n\t\t\t\tvar date = (offset.toLowerCase().match(/^c/) ?\n\t\t\t\t\t$.datepicker._getDate(inst) : null) || new Date(),\n\t\t\t\t\tyear = date.getFullYear(),\n\t\t\t\t\tmonth = date.getMonth(),\n\t\t\t\t\tday = date.getDate(),\n\t\t\t\t\tpattern = /([+\\-]?[0-9]+)\\s*(d|D|w|W|m|M|y|Y)?/g,\n\t\t\t\t\tmatches = pattern.exec(offset);\n\n\t\t\t\twhile (matches) {\n\t\t\t\t\tswitch (matches[2] || \"d\") {\n\t\t\t\t\t\tcase \"d\" : case \"D\" :\n\t\t\t\t\t\t\tday += parseInt(matches[1],10); break;\n\t\t\t\t\t\tcase \"w\" : case \"W\" :\n\t\t\t\t\t\t\tday += parseInt(matches[1],10) * 7; break;\n\t\t\t\t\t\tcase \"m\" : case \"M\" :\n\t\t\t\t\t\t\tmonth += parseInt(matches[1],10);\n\t\t\t\t\t\t\tday = Math.min(day, $.datepicker._getDaysInMonth(year, month));\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase \"y\": case \"Y\" :\n\t\t\t\t\t\t\tyear += parseInt(matches[1],10);\n\t\t\t\t\t\t\tday = Math.min(day, $.datepicker._getDaysInMonth(year, month));\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t\tmatches = pattern.exec(offset);\n\t\t\t\t}\n\t\t\t\treturn new Date(year, month, day);\n\t\t\t},\n\t\t\tnewDate = (date == null || date === \"\" ? defaultDate : (typeof date === \"string\" ? offsetString(date) :\n\t\t\t\t(typeof date === \"number\" ? (isNaN(date) ? defaultDate : offsetNumeric(date)) : new Date(date.getTime()))));\n\n\t\tnewDate = (newDate && newDate.toString() === \"Invalid Date\" ? defaultDate : newDate);\n\t\tif (newDate) {\n\t\t\tnewDate.setHours(0);\n\t\t\tnewDate.setMinutes(0);\n\t\t\tnewDate.setSeconds(0);\n\t\t\tnewDate.setMilliseconds(0);\n\t\t}\n\t\treturn this._daylightSavingAdjust(newDate);\n\t},\n\n\t/* Handle switch to/from daylight saving.\n\t * Hours may be non-zero on daylight saving cut-over:\n\t * > 12 when midnight changeover, but then cannot generate\n\t * midnight datetime, so jump to 1AM, otherwise reset.\n\t * @param  date  (Date) the date to check\n\t * @return  (Date) the corrected date\n\t */\n\t_daylightSavingAdjust: function(date) {\n\t\tif (!date) {\n\t\t\treturn null;\n\t\t}\n\t\tdate.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0);\n\t\treturn date;\n\t},\n\n\t/* Set the date(s) directly. */\n\t_setDate: function(inst, date, noChange) {\n\t\tvar clear = !date,\n\t\t\torigMonth = inst.selectedMonth,\n\t\t\torigYear = inst.selectedYear,\n\t\t\tnewDate = this._restrictMinMax(inst, this._determineDate(inst, date, new Date()));\n\n\t\tinst.selectedDay = inst.currentDay = newDate.getDate();\n\t\tinst.drawMonth = inst.selectedMonth = inst.currentMonth = newDate.getMonth();\n\t\tinst.drawYear = inst.selectedYear = inst.currentYear = newDate.getFullYear();\n\t\tif ((origMonth !== inst.selectedMonth || origYear !== inst.selectedYear) && !noChange) {\n\t\t\tthis._notifyChange(inst);\n\t\t}\n\t\tthis._adjustInstDate(inst);\n\t\tif (inst.input) {\n\t\t\tinst.input.val(clear ? \"\" : this._formatDate(inst));\n\t\t}\n\t},\n\n\t/* Retrieve the date(s) directly. */\n\t_getDate: function(inst) {\n\t\tvar startDate = (!inst.currentYear || (inst.input && inst.input.val() === \"\") ? null :\n\t\t\tthis._daylightSavingAdjust(new Date(\n\t\t\tinst.currentYear, inst.currentMonth, inst.currentDay)));\n\t\t\treturn startDate;\n\t},\n\n\t/* Attach the onxxx handlers.  These are declared statically so\n\t * they work with static code transformers like Caja.\n\t */\n\t_attachHandlers: function(inst) {\n\t\tvar stepMonths = this._get(inst, \"stepMonths\"),\n\t\t\tid = \"#\" + inst.id.replace( /\\\\\\\\/g, \"\\\\\" );\n\t\tinst.dpDiv.find(\"[data-handler]\").map(function () {\n\t\t\tvar handler = {\n\t\t\t\tprev: function () {\n\t\t\t\t\t$.datepicker._adjustDate(id, -stepMonths, \"M\");\n\t\t\t\t},\n\t\t\t\tnext: function () {\n\t\t\t\t\t$.datepicker._adjustDate(id, +stepMonths, \"M\");\n\t\t\t\t},\n\t\t\t\thide: function () {\n\t\t\t\t\t$.datepicker._hideDatepicker();\n\t\t\t\t},\n\t\t\t\ttoday: function () {\n\t\t\t\t\t$.datepicker._gotoToday(id);\n\t\t\t\t},\n\t\t\t\tselectDay: function () {\n\t\t\t\t\t$.datepicker._selectDay(id, +this.getAttribute(\"data-month\"), +this.getAttribute(\"data-year\"), this);\n\t\t\t\t\treturn false;\n\t\t\t\t},\n\t\t\t\tselectMonth: function () {\n\t\t\t\t\t$.datepicker._selectMonthYear(id, this, \"M\");\n\t\t\t\t\treturn false;\n\t\t\t\t},\n\t\t\t\tselectYear: function () {\n\t\t\t\t\t$.datepicker._selectMonthYear(id, this, \"Y\");\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t};\n\t\t\t$(this).bind(this.getAttribute(\"data-event\"), handler[this.getAttribute(\"data-handler\")]);\n\t\t});\n\t},\n\n\t/* Generate the HTML for the current state of the date picker. */\n\t_generateHTML: function(inst) {\n\t\tvar maxDraw, prevText, prev, nextText, next, currentText, gotoDate,\n\t\t\tcontrols, buttonPanel, firstDay, showWeek, dayNames, dayNamesMin,\n\t\t\tmonthNames, monthNamesShort, beforeShowDay, showOtherMonths,\n\t\t\tselectOtherMonths, defaultDate, html, dow, row, group, col, selectedDate,\n\t\t\tcornerClass, calender, thead, day, daysInMonth, leadDays, curRows, numRows,\n\t\t\tprintDate, dRow, tbody, daySettings, otherMonth, unselectable,\n\t\t\ttempDate = new Date(),\n\t\t\ttoday = this._daylightSavingAdjust(\n\t\t\t\tnew Date(tempDate.getFullYear(), tempDate.getMonth(), tempDate.getDate())), // clear time\n\t\t\tisRTL = this._get(inst, \"isRTL\"),\n\t\t\tshowButtonPanel = this._get(inst, \"showButtonPanel\"),\n\t\t\thideIfNoPrevNext = this._get(inst, \"hideIfNoPrevNext\"),\n\t\t\tnavigationAsDateFormat = this._get(inst, \"navigationAsDateFormat\"),\n\t\t\tnumMonths = this._getNumberOfMonths(inst),\n\t\t\tshowCurrentAtPos = this._get(inst, \"showCurrentAtPos\"),\n\t\t\tstepMonths = this._get(inst, \"stepMonths\"),\n\t\t\tisMultiMonth = (numMonths[0] !== 1 || numMonths[1] !== 1),\n\t\t\tcurrentDate = this._daylightSavingAdjust((!inst.currentDay ? new Date(9999, 9, 9) :\n\t\t\t\tnew Date(inst.currentYear, inst.currentMonth, inst.currentDay))),\n\t\t\tminDate = this._getMinMaxDate(inst, \"min\"),\n\t\t\tmaxDate = this._getMinMaxDate(inst, \"max\"),\n\t\t\tdrawMonth = inst.drawMonth - showCurrentAtPos,\n\t\t\tdrawYear = inst.drawYear;\n\n\t\tif (drawMonth < 0) {\n\t\t\tdrawMonth += 12;\n\t\t\tdrawYear--;\n\t\t}\n\t\tif (maxDate) {\n\t\t\tmaxDraw = this._daylightSavingAdjust(new Date(maxDate.getFullYear(),\n\t\t\t\tmaxDate.getMonth() - (numMonths[0] * numMonths[1]) + 1, maxDate.getDate()));\n\t\t\tmaxDraw = (minDate && maxDraw < minDate ? minDate : maxDraw);\n\t\t\twhile (this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1)) > maxDraw) {\n\t\t\t\tdrawMonth--;\n\t\t\t\tif (drawMonth < 0) {\n\t\t\t\t\tdrawMonth = 11;\n\t\t\t\t\tdrawYear--;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tinst.drawMonth = drawMonth;\n\t\tinst.drawYear = drawYear;\n\n\t\tprevText = this._get(inst, \"prevText\");\n\t\tprevText = (!navigationAsDateFormat ? prevText : this.formatDate(prevText,\n\t\t\tthis._daylightSavingAdjust(new Date(drawYear, drawMonth - stepMonths, 1)),\n\t\t\tthis._getFormatConfig(inst)));\n\n\t\tprev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ?\n\t\t\t\"<a class='ui-datepicker-prev ui-corner-all' data-handler='prev' data-event='click'\" +\n\t\t\t\" title='\" + prevText + \"'><span class='ui-icon ui-icon-circle-triangle-\" + ( isRTL ? \"e\" : \"w\") + \"'>\" + prevText + \"</span></a>\" :\n\t\t\t(hideIfNoPrevNext ? \"\" : \"<a class='ui-datepicker-prev ui-corner-all ui-state-disabled' title='\"+ prevText +\"'><span class='ui-icon ui-icon-circle-triangle-\" + ( isRTL ? \"e\" : \"w\") + \"'>\" + prevText + \"</span></a>\"));\n\n\t\tnextText = this._get(inst, \"nextText\");\n\t\tnextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText,\n\t\t\tthis._daylightSavingAdjust(new Date(drawYear, drawMonth + stepMonths, 1)),\n\t\t\tthis._getFormatConfig(inst)));\n\n\t\tnext = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ?\n\t\t\t\"<a class='ui-datepicker-next ui-corner-all' data-handler='next' data-event='click'\" +\n\t\t\t\" title='\" + nextText + \"'><span class='ui-icon ui-icon-circle-triangle-\" + ( isRTL ? \"w\" : \"e\") + \"'>\" + nextText + \"</span></a>\" :\n\t\t\t(hideIfNoPrevNext ? \"\" : \"<a class='ui-datepicker-next ui-corner-all ui-state-disabled' title='\"+ nextText + \"'><span class='ui-icon ui-icon-circle-triangle-\" + ( isRTL ? \"w\" : \"e\") + \"'>\" + nextText + \"</span></a>\"));\n\n\t\tcurrentText = this._get(inst, \"currentText\");\n\t\tgotoDate = (this._get(inst, \"gotoCurrent\") && inst.currentDay ? currentDate : today);\n\t\tcurrentText = (!navigationAsDateFormat ? currentText :\n\t\t\tthis.formatDate(currentText, gotoDate, this._getFormatConfig(inst)));\n\n\t\tcontrols = (!inst.inline ? \"<button type='button' class='ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all' data-handler='hide' data-event='click'>\" +\n\t\t\tthis._get(inst, \"closeText\") + \"</button>\" : \"\");\n\n\t\tbuttonPanel = (showButtonPanel) ? \"<div class='ui-datepicker-buttonpane ui-widget-content'>\" + (isRTL ? controls : \"\") +\n\t\t\t(this._isInRange(inst, gotoDate) ? \"<button type='button' class='ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all' data-handler='today' data-event='click'\" +\n\t\t\t\">\" + currentText + \"</button>\" : \"\") + (isRTL ? \"\" : controls) + \"</div>\" : \"\";\n\n\t\tfirstDay = parseInt(this._get(inst, \"firstDay\"),10);\n\t\tfirstDay = (isNaN(firstDay) ? 0 : firstDay);\n\n\t\tshowWeek = this._get(inst, \"showWeek\");\n\t\tdayNames = this._get(inst, \"dayNames\");\n\t\tdayNamesMin = this._get(inst, \"dayNamesMin\");\n\t\tmonthNames = this._get(inst, \"monthNames\");\n\t\tmonthNamesShort = this._get(inst, \"monthNamesShort\");\n\t\tbeforeShowDay = this._get(inst, \"beforeShowDay\");\n\t\tshowOtherMonths = this._get(inst, \"showOtherMonths\");\n\t\tselectOtherMonths = this._get(inst, \"selectOtherMonths\");\n\t\tdefaultDate = this._getDefaultDate(inst);\n\t\thtml = \"\";\n\t\tdow;\n\t\tfor (row = 0; row < numMonths[0]; row++) {\n\t\t\tgroup = \"\";\n\t\t\tthis.maxRows = 4;\n\t\t\tfor (col = 0; col < numMonths[1]; col++) {\n\t\t\t\tselectedDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, inst.selectedDay));\n\t\t\t\tcornerClass = \" ui-corner-all\";\n\t\t\t\tcalender = \"\";\n\t\t\t\tif (isMultiMonth) {\n\t\t\t\t\tcalender += \"<div class='ui-datepicker-group\";\n\t\t\t\t\tif (numMonths[1] > 1) {\n\t\t\t\t\t\tswitch (col) {\n\t\t\t\t\t\t\tcase 0: calender += \" ui-datepicker-group-first\";\n\t\t\t\t\t\t\t\tcornerClass = \" ui-corner-\" + (isRTL ? \"right\" : \"left\"); break;\n\t\t\t\t\t\t\tcase numMonths[1]-1: calender += \" ui-datepicker-group-last\";\n\t\t\t\t\t\t\t\tcornerClass = \" ui-corner-\" + (isRTL ? \"left\" : \"right\"); break;\n\t\t\t\t\t\t\tdefault: calender += \" ui-datepicker-group-middle\"; cornerClass = \"\"; break;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tcalender += \"'>\";\n\t\t\t\t}\n\t\t\t\tcalender += \"<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix\" + cornerClass + \"'>\" +\n\t\t\t\t\t(/all|left/.test(cornerClass) && row === 0 ? (isRTL ? next : prev) : \"\") +\n\t\t\t\t\t(/all|right/.test(cornerClass) && row === 0 ? (isRTL ? prev : next) : \"\") +\n\t\t\t\t\tthis._generateMonthYearHeader(inst, drawMonth, drawYear, minDate, maxDate,\n\t\t\t\t\trow > 0 || col > 0, monthNames, monthNamesShort) + // draw month headers\n\t\t\t\t\t\"</div><table class='ui-datepicker-calendar'><thead>\" +\n\t\t\t\t\t\"<tr>\";\n\t\t\t\tthead = (showWeek ? \"<th class='ui-datepicker-week-col'>\" + this._get(inst, \"weekHeader\") + \"</th>\" : \"\");\n\t\t\t\tfor (dow = 0; dow < 7; dow++) { // days of the week\n\t\t\t\t\tday = (dow + firstDay) % 7;\n\t\t\t\t\tthead += \"<th\" + ((dow + firstDay + 6) % 7 >= 5 ? \" class='ui-datepicker-week-end'\" : \"\") + \">\" +\n\t\t\t\t\t\t\"<span title='\" + dayNames[day] + \"'>\" + dayNamesMin[day] + \"</span></th>\";\n\t\t\t\t}\n\t\t\t\tcalender += thead + \"</tr></thead><tbody>\";\n\t\t\t\tdaysInMonth = this._getDaysInMonth(drawYear, drawMonth);\n\t\t\t\tif (drawYear === inst.selectedYear && drawMonth === inst.selectedMonth) {\n\t\t\t\t\tinst.selectedDay = Math.min(inst.selectedDay, daysInMonth);\n\t\t\t\t}\n\t\t\t\tleadDays = (this._getFirstDayOfMonth(drawYear, drawMonth) - firstDay + 7) % 7;\n\t\t\t\tcurRows = Math.ceil((leadDays + daysInMonth) / 7); // calculate the number of rows to generate\n\t\t\t\tnumRows = (isMultiMonth ? this.maxRows > curRows ? this.maxRows : curRows : curRows); //If multiple months, use the higher number of rows (see #7043)\n\t\t\t\tthis.maxRows = numRows;\n\t\t\t\tprintDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1 - leadDays));\n\t\t\t\tfor (dRow = 0; dRow < numRows; dRow++) { // create date picker rows\n\t\t\t\t\tcalender += \"<tr>\";\n\t\t\t\t\ttbody = (!showWeek ? \"\" : \"<td class='ui-datepicker-week-col'>\" +\n\t\t\t\t\t\tthis._get(inst, \"calculateWeek\")(printDate) + \"</td>\");\n\t\t\t\t\tfor (dow = 0; dow < 7; dow++) { // create date picker days\n\t\t\t\t\t\tdaySettings = (beforeShowDay ?\n\t\t\t\t\t\t\tbeforeShowDay.apply((inst.input ? inst.input[0] : null), [printDate]) : [true, \"\"]);\n\t\t\t\t\t\totherMonth = (printDate.getMonth() !== drawMonth);\n\t\t\t\t\t\tunselectable = (otherMonth && !selectOtherMonths) || !daySettings[0] ||\n\t\t\t\t\t\t\t(minDate && printDate < minDate) || (maxDate && printDate > maxDate);\n\t\t\t\t\t\ttbody += \"<td class='\" +\n\t\t\t\t\t\t\t((dow + firstDay + 6) % 7 >= 5 ? \" ui-datepicker-week-end\" : \"\") + // highlight weekends\n\t\t\t\t\t\t\t(otherMonth ? \" ui-datepicker-other-month\" : \"\") + // highlight days from other months\n\t\t\t\t\t\t\t((printDate.getTime() === selectedDate.getTime() && drawMonth === inst.selectedMonth && inst._keyEvent) || // user pressed key\n\t\t\t\t\t\t\t(defaultDate.getTime() === printDate.getTime() && defaultDate.getTime() === selectedDate.getTime()) ?\n\t\t\t\t\t\t\t// or defaultDate is current printedDate and defaultDate is selectedDate\n\t\t\t\t\t\t\t\" \" + this._dayOverClass : \"\") + // highlight selected day\n\t\t\t\t\t\t\t(unselectable ? \" \" + this._unselectableClass + \" ui-state-disabled\": \"\") +  // highlight unselectable days\n\t\t\t\t\t\t\t(otherMonth && !showOtherMonths ? \"\" : \" \" + daySettings[1] + // highlight custom dates\n\t\t\t\t\t\t\t(printDate.getTime() === currentDate.getTime() ? \" \" + this._currentClass : \"\") + // highlight selected day\n\t\t\t\t\t\t\t(printDate.getTime() === today.getTime() ? \" ui-datepicker-today\" : \"\")) + \"'\" + // highlight today (if different)\n\t\t\t\t\t\t\t((!otherMonth || showOtherMonths) && daySettings[2] ? \" title='\" + daySettings[2].replace(/'/g, \"&#39;\") + \"'\" : \"\") + // cell title\n\t\t\t\t\t\t\t(unselectable ? \"\" : \" data-handler='selectDay' data-event='click' data-month='\" + printDate.getMonth() + \"' data-year='\" + printDate.getFullYear() + \"'\") + \">\" + // actions\n\t\t\t\t\t\t\t(otherMonth && !showOtherMonths ? \"&#xa0;\" : // display for other months\n\t\t\t\t\t\t\t(unselectable ? \"<span class='ui-state-default'>\" + printDate.getDate() + \"</span>\" : \"<a class='ui-state-default\" +\n\t\t\t\t\t\t\t(printDate.getTime() === today.getTime() ? \" ui-state-highlight\" : \"\") +\n\t\t\t\t\t\t\t(printDate.getTime() === currentDate.getTime() ? \" ui-state-active\" : \"\") + // highlight selected day\n\t\t\t\t\t\t\t(otherMonth ? \" ui-priority-secondary\" : \"\") + // distinguish dates from other months\n\t\t\t\t\t\t\t\"' href='#'>\" + printDate.getDate() + \"</a>\")) + \"</td>\"; // display selectable date\n\t\t\t\t\t\tprintDate.setDate(printDate.getDate() + 1);\n\t\t\t\t\t\tprintDate = this._daylightSavingAdjust(printDate);\n\t\t\t\t\t}\n\t\t\t\t\tcalender += tbody + \"</tr>\";\n\t\t\t\t}\n\t\t\t\tdrawMonth++;\n\t\t\t\tif (drawMonth > 11) {\n\t\t\t\t\tdrawMonth = 0;\n\t\t\t\t\tdrawYear++;\n\t\t\t\t}\n\t\t\t\tcalender += \"</tbody></table>\" + (isMultiMonth ? \"</div>\" +\n\t\t\t\t\t\t\t((numMonths[0] > 0 && col === numMonths[1]-1) ? \"<div class='ui-datepicker-row-break'></div>\" : \"\") : \"\");\n\t\t\t\tgroup += calender;\n\t\t\t}\n\t\t\thtml += group;\n\t\t}\n\t\thtml += buttonPanel;\n\t\tinst._keyEvent = false;\n\t\treturn html;\n\t},\n\n\t/* Generate the month and year header. */\n\t_generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate,\n\t\t\tsecondary, monthNames, monthNamesShort) {\n\n\t\tvar inMinYear, inMaxYear, month, years, thisYear, determineYear, year, endYear,\n\t\t\tchangeMonth = this._get(inst, \"changeMonth\"),\n\t\t\tchangeYear = this._get(inst, \"changeYear\"),\n\t\t\tshowMonthAfterYear = this._get(inst, \"showMonthAfterYear\"),\n\t\t\thtml = \"<div class='ui-datepicker-title'>\",\n\t\t\tmonthHtml = \"\";\n\n\t\t// month selection\n\t\tif (secondary || !changeMonth) {\n\t\t\tmonthHtml += \"<span class='ui-datepicker-month'>\" + monthNames[drawMonth] + \"</span>\";\n\t\t} else {\n\t\t\tinMinYear = (minDate && minDate.getFullYear() === drawYear);\n\t\t\tinMaxYear = (maxDate && maxDate.getFullYear() === drawYear);\n\t\t\tmonthHtml += \"<select class='ui-datepicker-month' data-handler='selectMonth' data-event='change'>\";\n\t\t\tfor ( month = 0; month < 12; month++) {\n\t\t\t\tif ((!inMinYear || month >= minDate.getMonth()) && (!inMaxYear || month <= maxDate.getMonth())) {\n\t\t\t\t\tmonthHtml += \"<option value='\" + month + \"'\" +\n\t\t\t\t\t\t(month === drawMonth ? \" selected='selected'\" : \"\") +\n\t\t\t\t\t\t\">\" + monthNamesShort[month] + \"</option>\";\n\t\t\t\t}\n\t\t\t}\n\t\t\tmonthHtml += \"</select>\";\n\t\t}\n\n\t\tif (!showMonthAfterYear) {\n\t\t\thtml += monthHtml + (secondary || !(changeMonth && changeYear) ? \"&#xa0;\" : \"\");\n\t\t}\n\n\t\t// year selection\n\t\tif ( !inst.yearshtml ) {\n\t\t\tinst.yearshtml = \"\";\n\t\t\tif (secondary || !changeYear) {\n\t\t\t\thtml += \"<span class='ui-datepicker-year'>\" + drawYear + \"</span>\";\n\t\t\t} else {\n\t\t\t\t// determine range of years to display\n\t\t\t\tyears = this._get(inst, \"yearRange\").split(\":\");\n\t\t\t\tthisYear = new Date().getFullYear();\n\t\t\t\tdetermineYear = function(value) {\n\t\t\t\t\tvar year = (value.match(/c[+\\-].*/) ? drawYear + parseInt(value.substring(1), 10) :\n\t\t\t\t\t\t(value.match(/[+\\-].*/) ? thisYear + parseInt(value, 10) :\n\t\t\t\t\t\tparseInt(value, 10)));\n\t\t\t\t\treturn (isNaN(year) ? thisYear : year);\n\t\t\t\t};\n\t\t\t\tyear = determineYear(years[0]);\n\t\t\t\tendYear = Math.max(year, determineYear(years[1] || \"\"));\n\t\t\t\tyear = (minDate ? Math.max(year, minDate.getFullYear()) : year);\n\t\t\t\tendYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear);\n\t\t\t\tinst.yearshtml += \"<select class='ui-datepicker-year' data-handler='selectYear' data-event='change'>\";\n\t\t\t\tfor (; year <= endYear; year++) {\n\t\t\t\t\tinst.yearshtml += \"<option value='\" + year + \"'\" +\n\t\t\t\t\t\t(year === drawYear ? \" selected='selected'\" : \"\") +\n\t\t\t\t\t\t\">\" + year + \"</option>\";\n\t\t\t\t}\n\t\t\t\tinst.yearshtml += \"</select>\";\n\n\t\t\t\thtml += inst.yearshtml;\n\t\t\t\tinst.yearshtml = null;\n\t\t\t}\n\t\t}\n\n\t\thtml += this._get(inst, \"yearSuffix\");\n\t\tif (showMonthAfterYear) {\n\t\t\thtml += (secondary || !(changeMonth && changeYear) ? \"&#xa0;\" : \"\") + monthHtml;\n\t\t}\n\t\thtml += \"</div>\"; // Close datepicker_header\n\t\treturn html;\n\t},\n\n\t/* Adjust one of the date sub-fields. */\n\t_adjustInstDate: function(inst, offset, period) {\n\t\tvar year = inst.drawYear + (period === \"Y\" ? offset : 0),\n\t\t\tmonth = inst.drawMonth + (period === \"M\" ? offset : 0),\n\t\t\tday = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) + (period === \"D\" ? offset : 0),\n\t\t\tdate = this._restrictMinMax(inst, this._daylightSavingAdjust(new Date(year, month, day)));\n\n\t\tinst.selectedDay = date.getDate();\n\t\tinst.drawMonth = inst.selectedMonth = date.getMonth();\n\t\tinst.drawYear = inst.selectedYear = date.getFullYear();\n\t\tif (period === \"M\" || period === \"Y\") {\n\t\t\tthis._notifyChange(inst);\n\t\t}\n\t},\n\n\t/* Ensure a date is within any min/max bounds. */\n\t_restrictMinMax: function(inst, date) {\n\t\tvar minDate = this._getMinMaxDate(inst, \"min\"),\n\t\t\tmaxDate = this._getMinMaxDate(inst, \"max\"),\n\t\t\tnewDate = (minDate && date < minDate ? minDate : date);\n\t\treturn (maxDate && newDate > maxDate ? maxDate : newDate);\n\t},\n\n\t/* Notify change of month/year. */\n\t_notifyChange: function(inst) {\n\t\tvar onChange = this._get(inst, \"onChangeMonthYear\");\n\t\tif (onChange) {\n\t\t\tonChange.apply((inst.input ? inst.input[0] : null),\n\t\t\t\t[inst.selectedYear, inst.selectedMonth + 1, inst]);\n\t\t}\n\t},\n\n\t/* Determine the number of months to show. */\n\t_getNumberOfMonths: function(inst) {\n\t\tvar numMonths = this._get(inst, \"numberOfMonths\");\n\t\treturn (numMonths == null ? [1, 1] : (typeof numMonths === \"number\" ? [1, numMonths] : numMonths));\n\t},\n\n\t/* Determine the current maximum date - ensure no time components are set. */\n\t_getMinMaxDate: function(inst, minMax) {\n\t\treturn this._determineDate(inst, this._get(inst, minMax + \"Date\"), null);\n\t},\n\n\t/* Find the number of days in a given month. */\n\t_getDaysInMonth: function(year, month) {\n\t\treturn 32 - this._daylightSavingAdjust(new Date(year, month, 32)).getDate();\n\t},\n\n\t/* Find the day of the week of the first of a month. */\n\t_getFirstDayOfMonth: function(year, month) {\n\t\treturn new Date(year, month, 1).getDay();\n\t},\n\n\t/* Determines if we should allow a \"next/prev\" month display change. */\n\t_canAdjustMonth: function(inst, offset, curYear, curMonth) {\n\t\tvar numMonths = this._getNumberOfMonths(inst),\n\t\t\tdate = this._daylightSavingAdjust(new Date(curYear,\n\t\t\tcurMonth + (offset < 0 ? offset : numMonths[0] * numMonths[1]), 1));\n\n\t\tif (offset < 0) {\n\t\t\tdate.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth()));\n\t\t}\n\t\treturn this._isInRange(inst, date);\n\t},\n\n\t/* Is the given date in the accepted range? */\n\t_isInRange: function(inst, date) {\n\t\tvar yearSplit, currentYear,\n\t\t\tminDate = this._getMinMaxDate(inst, \"min\"),\n\t\t\tmaxDate = this._getMinMaxDate(inst, \"max\"),\n\t\t\tminYear = null,\n\t\t\tmaxYear = null,\n\t\t\tyears = this._get(inst, \"yearRange\");\n\t\t\tif (years){\n\t\t\t\tyearSplit = years.split(\":\");\n\t\t\t\tcurrentYear = new Date().getFullYear();\n\t\t\t\tminYear = parseInt(yearSplit[0], 10);\n\t\t\t\tmaxYear = parseInt(yearSplit[1], 10);\n\t\t\t\tif ( yearSplit[0].match(/[+\\-].*/) ) {\n\t\t\t\t\tminYear += currentYear;\n\t\t\t\t}\n\t\t\t\tif ( yearSplit[1].match(/[+\\-].*/) ) {\n\t\t\t\t\tmaxYear += currentYear;\n\t\t\t\t}\n\t\t\t}\n\n\t\treturn ((!minDate || date.getTime() >= minDate.getTime()) &&\n\t\t\t(!maxDate || date.getTime() <= maxDate.getTime()) &&\n\t\t\t(!minYear || date.getFullYear() >= minYear) &&\n\t\t\t(!maxYear || date.getFullYear() <= maxYear));\n\t},\n\n\t/* Provide the configuration settings for formatting/parsing. */\n\t_getFormatConfig: function(inst) {\n\t\tvar shortYearCutoff = this._get(inst, \"shortYearCutoff\");\n\t\tshortYearCutoff = (typeof shortYearCutoff !== \"string\" ? shortYearCutoff :\n\t\t\tnew Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10));\n\t\treturn {shortYearCutoff: shortYearCutoff,\n\t\t\tdayNamesShort: this._get(inst, \"dayNamesShort\"), dayNames: this._get(inst, \"dayNames\"),\n\t\t\tmonthNamesShort: this._get(inst, \"monthNamesShort\"), monthNames: this._get(inst, \"monthNames\")};\n\t},\n\n\t/* Format the given date for display. */\n\t_formatDate: function(inst, day, month, year) {\n\t\tif (!day) {\n\t\t\tinst.currentDay = inst.selectedDay;\n\t\t\tinst.currentMonth = inst.selectedMonth;\n\t\t\tinst.currentYear = inst.selectedYear;\n\t\t}\n\t\tvar date = (day ? (typeof day === \"object\" ? day :\n\t\t\tthis._daylightSavingAdjust(new Date(year, month, day))) :\n\t\t\tthis._daylightSavingAdjust(new Date(inst.currentYear, inst.currentMonth, inst.currentDay)));\n\t\treturn this.formatDate(this._get(inst, \"dateFormat\"), date, this._getFormatConfig(inst));\n\t}\n});\n\n/*\n * Bind hover events for datepicker elements.\n * Done via delegate so the binding only occurs once in the lifetime of the parent div.\n * Global instActive, set by _updateDatepicker allows the handlers to find their way back to the active picker.\n */\nfunction bindHover(dpDiv) {\n\tvar selector = \"button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a\";\n\treturn dpDiv.delegate(selector, \"mouseout\", function() {\n\t\t\t$(this).removeClass(\"ui-state-hover\");\n\t\t\tif (this.className.indexOf(\"ui-datepicker-prev\") !== -1) {\n\t\t\t\t$(this).removeClass(\"ui-datepicker-prev-hover\");\n\t\t\t}\n\t\t\tif (this.className.indexOf(\"ui-datepicker-next\") !== -1) {\n\t\t\t\t$(this).removeClass(\"ui-datepicker-next-hover\");\n\t\t\t}\n\t\t})\n\t\t.delegate(selector, \"mouseover\", function(){\n\t\t\tif (!$.datepicker._isDisabledDatepicker( instActive.inline ? dpDiv.parent()[0] : instActive.input[0])) {\n\t\t\t\t$(this).parents(\".ui-datepicker-calendar\").find(\"a\").removeClass(\"ui-state-hover\");\n\t\t\t\t$(this).addClass(\"ui-state-hover\");\n\t\t\t\tif (this.className.indexOf(\"ui-datepicker-prev\") !== -1) {\n\t\t\t\t\t$(this).addClass(\"ui-datepicker-prev-hover\");\n\t\t\t\t}\n\t\t\t\tif (this.className.indexOf(\"ui-datepicker-next\") !== -1) {\n\t\t\t\t\t$(this).addClass(\"ui-datepicker-next-hover\");\n\t\t\t\t}\n\t\t\t}\n\t\t});\n}\n\n/* jQuery extend now ignores nulls! */\nfunction extendRemove(target, props) {\n\t$.extend(target, props);\n\tfor (var name in props) {\n\t\tif (props[name] == null) {\n\t\t\ttarget[name] = props[name];\n\t\t}\n\t}\n\treturn target;\n}\n\n/* Invoke the datepicker functionality.\n   @param  options  string - a command, optionally followed by additional parameters or\n\t\t\t\t\tObject - settings for attaching new datepicker functionality\n   @return  jQuery object */\n$.fn.datepicker = function(options){\n\n\t/* Verify an empty collection wasn't passed - Fixes #6976 */\n\tif ( !this.length ) {\n\t\treturn this;\n\t}\n\n\t/* Initialise the date picker. */\n\tif (!$.datepicker.initialized) {\n\t\t$(document).mousedown($.datepicker._checkExternalClick);\n\t\t$.datepicker.initialized = true;\n\t}\n\n\t/* Append datepicker main container to body if not exist. */\n\tif ($(\"#\"+$.datepicker._mainDivId).length === 0) {\n\t\t$(\"body\").append($.datepicker.dpDiv);\n\t}\n\n\tvar otherArgs = Array.prototype.slice.call(arguments, 1);\n\tif (typeof options === \"string\" && (options === \"isDisabled\" || options === \"getDate\" || options === \"widget\")) {\n\t\treturn $.datepicker[\"_\" + options + \"Datepicker\"].\n\t\t\tapply($.datepicker, [this[0]].concat(otherArgs));\n\t}\n\tif (options === \"option\" && arguments.length === 2 && typeof arguments[1] === \"string\") {\n\t\treturn $.datepicker[\"_\" + options + \"Datepicker\"].\n\t\t\tapply($.datepicker, [this[0]].concat(otherArgs));\n\t}\n\treturn this.each(function() {\n\t\ttypeof options === \"string\" ?\n\t\t\t$.datepicker[\"_\" + options + \"Datepicker\"].\n\t\t\t\tapply($.datepicker, [this].concat(otherArgs)) :\n\t\t\t$.datepicker._attachDatepicker(this, options);\n\t});\n};\n\n$.datepicker = new Datepicker(); // singleton instance\n$.datepicker.initialized = false;\n$.datepicker.uuid = new Date().getTime();\n$.datepicker.version = \"1.10.4\";\n\n})(jQuery);\n\n(function( $, undefined ) {\n\nvar sizeRelatedOptions = {\n\t\tbuttons: true,\n\t\theight: true,\n\t\tmaxHeight: true,\n\t\tmaxWidth: true,\n\t\tminHeight: true,\n\t\tminWidth: true,\n\t\twidth: true\n\t},\n\tresizableRelatedOptions = {\n\t\tmaxHeight: true,\n\t\tmaxWidth: true,\n\t\tminHeight: true,\n\t\tminWidth: true\n\t};\n\n$.widget( \"ui.dialog\", {\n\tversion: \"1.10.4\",\n\toptions: {\n\t\tappendTo: \"body\",\n\t\tautoOpen: true,\n\t\tbuttons: [],\n\t\tcloseOnEscape: true,\n\t\tcloseText: \"close\",\n\t\tdialogClass: \"\",\n\t\tdraggable: true,\n\t\thide: null,\n\t\theight: \"auto\",\n\t\tmaxHeight: null,\n\t\tmaxWidth: null,\n\t\tminHeight: 150,\n\t\tminWidth: 150,\n\t\tmodal: false,\n\t\tposition: {\n\t\t\tmy: \"center\",\n\t\t\tat: \"center\",\n\t\t\tof: window,\n\t\t\tcollision: \"fit\",\n\t\t\t// Ensure the titlebar is always visible\n\t\t\tusing: function( pos ) {\n\t\t\t\tvar topOffset = $( this ).css( pos ).offset().top;\n\t\t\t\tif ( topOffset < 0 ) {\n\t\t\t\t\t$( this ).css( \"top\", pos.top - topOffset );\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tresizable: true,\n\t\tshow: null,\n\t\ttitle: null,\n\t\twidth: 300,\n\n\t\t// callbacks\n\t\tbeforeClose: null,\n\t\tclose: null,\n\t\tdrag: null,\n\t\tdragStart: null,\n\t\tdragStop: null,\n\t\tfocus: null,\n\t\topen: null,\n\t\tresize: null,\n\t\tresizeStart: null,\n\t\tresizeStop: null\n\t},\n\n\t_create: function() {\n\t\tthis.originalCss = {\n\t\t\tdisplay: this.element[0].style.display,\n\t\t\twidth: this.element[0].style.width,\n\t\t\tminHeight: this.element[0].style.minHeight,\n\t\t\tmaxHeight: this.element[0].style.maxHeight,\n\t\t\theight: this.element[0].style.height\n\t\t};\n\t\tthis.originalPosition = {\n\t\t\tparent: this.element.parent(),\n\t\t\tindex: this.element.parent().children().index( this.element )\n\t\t};\n\t\tthis.originalTitle = this.element.attr(\"title\");\n\t\tthis.options.title = this.options.title || this.originalTitle;\n\n\t\tthis._createWrapper();\n\n\t\tthis.element\n\t\t\t.show()\n\t\t\t.removeAttr(\"title\")\n\t\t\t.addClass(\"ui-dialog-content ui-widget-content\")\n\t\t\t.appendTo( this.uiDialog );\n\n\t\tthis._createTitlebar();\n\t\tthis._createButtonPane();\n\n\t\tif ( this.options.draggable && $.fn.draggable ) {\n\t\t\tthis._makeDraggable();\n\t\t}\n\t\tif ( this.options.resizable && $.fn.resizable ) {\n\t\t\tthis._makeResizable();\n\t\t}\n\n\t\tthis._isOpen = false;\n\t},\n\n\t_init: function() {\n\t\tif ( this.options.autoOpen ) {\n\t\t\tthis.open();\n\t\t}\n\t},\n\n\t_appendTo: function() {\n\t\tvar element = this.options.appendTo;\n\t\tif ( element && (element.jquery || element.nodeType) ) {\n\t\t\treturn $( element );\n\t\t}\n\t\treturn this.document.find( element || \"body\" ).eq( 0 );\n\t},\n\n\t_destroy: function() {\n\t\tvar next,\n\t\t\toriginalPosition = this.originalPosition;\n\n\t\tthis._destroyOverlay();\n\n\t\tthis.element\n\t\t\t.removeUniqueId()\n\t\t\t.removeClass(\"ui-dialog-content ui-widget-content\")\n\t\t\t.css( this.originalCss )\n\t\t\t// Without detaching first, the following becomes really slow\n\t\t\t.detach();\n\n\t\tthis.uiDialog.stop( true, true ).remove();\n\n\t\tif ( this.originalTitle ) {\n\t\t\tthis.element.attr( \"title\", this.originalTitle );\n\t\t}\n\n\t\tnext = originalPosition.parent.children().eq( originalPosition.index );\n\t\t// Don't try to place the dialog next to itself (#8613)\n\t\tif ( next.length && next[0] !== this.element[0] ) {\n\t\t\tnext.before( this.element );\n\t\t} else {\n\t\t\toriginalPosition.parent.append( this.element );\n\t\t}\n\t},\n\n\twidget: function() {\n\t\treturn this.uiDialog;\n\t},\n\n\tdisable: $.noop,\n\tenable: $.noop,\n\n\tclose: function( event ) {\n\t\tvar activeElement,\n\t\t\tthat = this;\n\n\t\tif ( !this._isOpen || this._trigger( \"beforeClose\", event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._isOpen = false;\n\t\tthis._destroyOverlay();\n\n\t\tif ( !this.opener.filter(\":focusable\").focus().length ) {\n\n\t\t\t// support: IE9\n\t\t\t// IE9 throws an \"Unspecified error\" accessing document.activeElement from an <iframe>\n\t\t\ttry {\n\t\t\t\tactiveElement = this.document[ 0 ].activeElement;\n\n\t\t\t\t// Support: IE9, IE10\n\t\t\t\t// If the <body> is blurred, IE will switch windows, see #4520\n\t\t\t\tif ( activeElement && activeElement.nodeName.toLowerCase() !== \"body\" ) {\n\n\t\t\t\t\t// Hiding a focused element doesn't trigger blur in WebKit\n\t\t\t\t\t// so in case we have nothing to focus on, explicitly blur the active element\n\t\t\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=47182\n\t\t\t\t\t$( activeElement ).blur();\n\t\t\t\t}\n\t\t\t} catch ( error ) {}\n\t\t}\n\n\t\tthis._hide( this.uiDialog, this.options.hide, function() {\n\t\t\tthat._trigger( \"close\", event );\n\t\t});\n\t},\n\n\tisOpen: function() {\n\t\treturn this._isOpen;\n\t},\n\n\tmoveToTop: function() {\n\t\tthis._moveToTop();\n\t},\n\n\t_moveToTop: function( event, silent ) {\n\t\tvar moved = !!this.uiDialog.nextAll(\":visible\").insertBefore( this.uiDialog ).length;\n\t\tif ( moved && !silent ) {\n\t\t\tthis._trigger( \"focus\", event );\n\t\t}\n\t\treturn moved;\n\t},\n\n\topen: function() {\n\t\tvar that = this;\n\t\tif ( this._isOpen ) {\n\t\t\tif ( this._moveToTop() ) {\n\t\t\t\tthis._focusTabbable();\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\n\t\tthis._isOpen = true;\n\t\tthis.opener = $( this.document[0].activeElement );\n\n\t\tthis._size();\n\t\tthis._position();\n\t\tthis._createOverlay();\n\t\tthis._moveToTop( null, true );\n\t\tthis._show( this.uiDialog, this.options.show, function() {\n\t\t\tthat._focusTabbable();\n\t\t\tthat._trigger(\"focus\");\n\t\t});\n\n\t\tthis._trigger(\"open\");\n\t},\n\n\t_focusTabbable: function() {\n\t\t// Set focus to the first match:\n\t\t// 1. First element inside the dialog matching [autofocus]\n\t\t// 2. Tabbable element inside the content element\n\t\t// 3. Tabbable element inside the buttonpane\n\t\t// 4. The close button\n\t\t// 5. The dialog itself\n\t\tvar hasFocus = this.element.find(\"[autofocus]\");\n\t\tif ( !hasFocus.length ) {\n\t\t\thasFocus = this.element.find(\":tabbable\");\n\t\t}\n\t\tif ( !hasFocus.length ) {\n\t\t\thasFocus = this.uiDialogButtonPane.find(\":tabbable\");\n\t\t}\n\t\tif ( !hasFocus.length ) {\n\t\t\thasFocus = this.uiDialogTitlebarClose.filter(\":tabbable\");\n\t\t}\n\t\tif ( !hasFocus.length ) {\n\t\t\thasFocus = this.uiDialog;\n\t\t}\n\t\thasFocus.eq( 0 ).focus();\n\t},\n\n\t_keepFocus: function( event ) {\n\t\tfunction checkFocus() {\n\t\t\tvar activeElement = this.document[0].activeElement,\n\t\t\t\tisActive = this.uiDialog[0] === activeElement ||\n\t\t\t\t\t$.contains( this.uiDialog[0], activeElement );\n\t\t\tif ( !isActive ) {\n\t\t\t\tthis._focusTabbable();\n\t\t\t}\n\t\t}\n\t\tevent.preventDefault();\n\t\tcheckFocus.call( this );\n\t\t// support: IE\n\t\t// IE <= 8 doesn't prevent moving focus even with event.preventDefault()\n\t\t// so we check again later\n\t\tthis._delay( checkFocus );\n\t},\n\n\t_createWrapper: function() {\n\t\tthis.uiDialog = $(\"<div>\")\n\t\t\t.addClass( \"ui-dialog ui-widget ui-widget-content ui-corner-all ui-front \" +\n\t\t\t\tthis.options.dialogClass )\n\t\t\t.hide()\n\t\t\t.attr({\n\t\t\t\t// Setting tabIndex makes the div focusable\n\t\t\t\ttabIndex: -1,\n\t\t\t\trole: \"dialog\"\n\t\t\t})\n\t\t\t.appendTo( this._appendTo() );\n\n\t\tthis._on( this.uiDialog, {\n\t\t\tkeydown: function( event ) {\n\t\t\t\tif ( this.options.closeOnEscape && !event.isDefaultPrevented() && event.keyCode &&\n\t\t\t\t\t\tevent.keyCode === $.ui.keyCode.ESCAPE ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tthis.close( event );\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// prevent tabbing out of dialogs\n\t\t\t\tif ( event.keyCode !== $.ui.keyCode.TAB ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tvar tabbables = this.uiDialog.find(\":tabbable\"),\n\t\t\t\t\tfirst = tabbables.filter(\":first\"),\n\t\t\t\t\tlast  = tabbables.filter(\":last\");\n\n\t\t\t\tif ( ( event.target === last[0] || event.target === this.uiDialog[0] ) && !event.shiftKey ) {\n\t\t\t\t\tfirst.focus( 1 );\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t} else if ( ( event.target === first[0] || event.target === this.uiDialog[0] ) && event.shiftKey ) {\n\t\t\t\t\tlast.focus( 1 );\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t},\n\t\t\tmousedown: function( event ) {\n\t\t\t\tif ( this._moveToTop( event ) ) {\n\t\t\t\t\tthis._focusTabbable();\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// We assume that any existing aria-describedby attribute means\n\t\t// that the dialog content is marked up properly\n\t\t// otherwise we brute force the content as the description\n\t\tif ( !this.element.find(\"[aria-describedby]\").length ) {\n\t\t\tthis.uiDialog.attr({\n\t\t\t\t\"aria-describedby\": this.element.uniqueId().attr(\"id\")\n\t\t\t});\n\t\t}\n\t},\n\n\t_createTitlebar: function() {\n\t\tvar uiDialogTitle;\n\n\t\tthis.uiDialogTitlebar = $(\"<div>\")\n\t\t\t.addClass(\"ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix\")\n\t\t\t.prependTo( this.uiDialog );\n\t\tthis._on( this.uiDialogTitlebar, {\n\t\t\tmousedown: function( event ) {\n\t\t\t\t// Don't prevent click on close button (#8838)\n\t\t\t\t// Focusing a dialog that is partially scrolled out of view\n\t\t\t\t// causes the browser to scroll it into view, preventing the click event\n\t\t\t\tif ( !$( event.target ).closest(\".ui-dialog-titlebar-close\") ) {\n\t\t\t\t\t// Dialog isn't getting focus when dragging (#8063)\n\t\t\t\t\tthis.uiDialog.focus();\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\t// support: IE\n\t\t// Use type=\"button\" to prevent enter keypresses in textboxes from closing the\n\t\t// dialog in IE (#9312)\n\t\tthis.uiDialogTitlebarClose = $( \"<button type='button'></button>\" )\n\t\t\t.button({\n\t\t\t\tlabel: this.options.closeText,\n\t\t\t\ticons: {\n\t\t\t\t\tprimary: \"ui-icon-closethick\"\n\t\t\t\t},\n\t\t\t\ttext: false\n\t\t\t})\n\t\t\t.addClass(\"ui-dialog-titlebar-close\")\n\t\t\t.appendTo( this.uiDialogTitlebar );\n\t\tthis._on( this.uiDialogTitlebarClose, {\n\t\t\tclick: function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\tthis.close( event );\n\t\t\t}\n\t\t});\n\n\t\tuiDialogTitle = $(\"<span>\")\n\t\t\t.uniqueId()\n\t\t\t.addClass(\"ui-dialog-title\")\n\t\t\t.prependTo( this.uiDialogTitlebar );\n\t\tthis._title( uiDialogTitle );\n\n\t\tthis.uiDialog.attr({\n\t\t\t\"aria-labelledby\": uiDialogTitle.attr(\"id\")\n\t\t});\n\t},\n\n\t_title: function( title ) {\n\t\tif ( !this.options.title ) {\n\t\t\ttitle.html(\"&#160;\");\n\t\t}\n\t\ttitle.text( this.options.title );\n\t},\n\n\t_createButtonPane: function() {\n\t\tthis.uiDialogButtonPane = $(\"<div>\")\n\t\t\t.addClass(\"ui-dialog-buttonpane ui-widget-content ui-helper-clearfix\");\n\n\t\tthis.uiButtonSet = $(\"<div>\")\n\t\t\t.addClass(\"ui-dialog-buttonset\")\n\t\t\t.appendTo( this.uiDialogButtonPane );\n\n\t\tthis._createButtons();\n\t},\n\n\t_createButtons: function() {\n\t\tvar that = this,\n\t\t\tbuttons = this.options.buttons;\n\n\t\t// if we already have a button pane, remove it\n\t\tthis.uiDialogButtonPane.remove();\n\t\tthis.uiButtonSet.empty();\n\n\t\tif ( $.isEmptyObject( buttons ) || ($.isArray( buttons ) && !buttons.length) ) {\n\t\t\tthis.uiDialog.removeClass(\"ui-dialog-buttons\");\n\t\t\treturn;\n\t\t}\n\n\t\t$.each( buttons, function( name, props ) {\n\t\t\tvar click, buttonOptions;\n\t\t\tprops = $.isFunction( props ) ?\n\t\t\t\t{ click: props, text: name } :\n\t\t\t\tprops;\n\t\t\t// Default to a non-submitting button\n\t\t\tprops = $.extend( { type: \"button\" }, props );\n\t\t\t// Change the context for the click callback to be the main element\n\t\t\tclick = props.click;\n\t\t\tprops.click = function() {\n\t\t\t\tclick.apply( that.element[0], arguments );\n\t\t\t};\n\t\t\tbuttonOptions = {\n\t\t\t\ticons: props.icons,\n\t\t\t\ttext: props.showText\n\t\t\t};\n\t\t\tdelete props.icons;\n\t\t\tdelete props.showText;\n\t\t\t$( \"<button></button>\", props )\n\t\t\t\t.button( buttonOptions )\n\t\t\t\t.appendTo( that.uiButtonSet );\n\t\t});\n\t\tthis.uiDialog.addClass(\"ui-dialog-buttons\");\n\t\tthis.uiDialogButtonPane.appendTo( this.uiDialog );\n\t},\n\n\t_makeDraggable: function() {\n\t\tvar that = this,\n\t\t\toptions = this.options;\n\n\t\tfunction filteredUi( ui ) {\n\t\t\treturn {\n\t\t\t\tposition: ui.position,\n\t\t\t\toffset: ui.offset\n\t\t\t};\n\t\t}\n\n\t\tthis.uiDialog.draggable({\n\t\t\tcancel: \".ui-dialog-content, .ui-dialog-titlebar-close\",\n\t\t\thandle: \".ui-dialog-titlebar\",\n\t\t\tcontainment: \"document\",\n\t\t\tstart: function( event, ui ) {\n\t\t\t\t$( this ).addClass(\"ui-dialog-dragging\");\n\t\t\t\tthat._blockFrames();\n\t\t\t\tthat._trigger( \"dragStart\", event, filteredUi( ui ) );\n\t\t\t},\n\t\t\tdrag: function( event, ui ) {\n\t\t\t\tthat._trigger( \"drag\", event, filteredUi( ui ) );\n\t\t\t},\n\t\t\tstop: function( event, ui ) {\n\t\t\t\toptions.position = [\n\t\t\t\t\tui.position.left - that.document.scrollLeft(),\n\t\t\t\t\tui.position.top - that.document.scrollTop()\n\t\t\t\t];\n\t\t\t\t$( this ).removeClass(\"ui-dialog-dragging\");\n\t\t\t\tthat._unblockFrames();\n\t\t\t\tthat._trigger( \"dragStop\", event, filteredUi( ui ) );\n\t\t\t}\n\t\t});\n\t},\n\n\t_makeResizable: function() {\n\t\tvar that = this,\n\t\t\toptions = this.options,\n\t\t\thandles = options.resizable,\n\t\t\t// .ui-resizable has position: relative defined in the stylesheet\n\t\t\t// but dialogs have to use absolute or fixed positioning\n\t\t\tposition = this.uiDialog.css(\"position\"),\n\t\t\tresizeHandles = typeof handles === \"string\" ?\n\t\t\t\thandles\t:\n\t\t\t\t\"n,e,s,w,se,sw,ne,nw\";\n\n\t\tfunction filteredUi( ui ) {\n\t\t\treturn {\n\t\t\t\toriginalPosition: ui.originalPosition,\n\t\t\t\toriginalSize: ui.originalSize,\n\t\t\t\tposition: ui.position,\n\t\t\t\tsize: ui.size\n\t\t\t};\n\t\t}\n\n\t\tthis.uiDialog.resizable({\n\t\t\tcancel: \".ui-dialog-content\",\n\t\t\tcontainment: \"document\",\n\t\t\talsoResize: this.element,\n\t\t\tmaxWidth: options.maxWidth,\n\t\t\tmaxHeight: options.maxHeight,\n\t\t\tminWidth: options.minWidth,\n\t\t\tminHeight: this._minHeight(),\n\t\t\thandles: resizeHandles,\n\t\t\tstart: function( event, ui ) {\n\t\t\t\t$( this ).addClass(\"ui-dialog-resizing\");\n\t\t\t\tthat._blockFrames();\n\t\t\t\tthat._trigger( \"resizeStart\", event, filteredUi( ui ) );\n\t\t\t},\n\t\t\tresize: function( event, ui ) {\n\t\t\t\tthat._trigger( \"resize\", event, filteredUi( ui ) );\n\t\t\t},\n\t\t\tstop: function( event, ui ) {\n\t\t\t\toptions.height = $( this ).height();\n\t\t\t\toptions.width = $( this ).width();\n\t\t\t\t$( this ).removeClass(\"ui-dialog-resizing\");\n\t\t\t\tthat._unblockFrames();\n\t\t\t\tthat._trigger( \"resizeStop\", event, filteredUi( ui ) );\n\t\t\t}\n\t\t})\n\t\t.css( \"position\", position );\n\t},\n\n\t_minHeight: function() {\n\t\tvar options = this.options;\n\n\t\treturn options.height === \"auto\" ?\n\t\t\toptions.minHeight :\n\t\t\tMath.min( options.minHeight, options.height );\n\t},\n\n\t_position: function() {\n\t\t// Need to show the dialog to get the actual offset in the position plugin\n\t\tvar isVisible = this.uiDialog.is(\":visible\");\n\t\tif ( !isVisible ) {\n\t\t\tthis.uiDialog.show();\n\t\t}\n\t\tthis.uiDialog.position( this.options.position );\n\t\tif ( !isVisible ) {\n\t\t\tthis.uiDialog.hide();\n\t\t}\n\t},\n\n\t_setOptions: function( options ) {\n\t\tvar that = this,\n\t\t\tresize = false,\n\t\t\tresizableOptions = {};\n\n\t\t$.each( options, function( key, value ) {\n\t\t\tthat._setOption( key, value );\n\n\t\t\tif ( key in sizeRelatedOptions ) {\n\t\t\t\tresize = true;\n\t\t\t}\n\t\t\tif ( key in resizableRelatedOptions ) {\n\t\t\t\tresizableOptions[ key ] = value;\n\t\t\t}\n\t\t});\n\n\t\tif ( resize ) {\n\t\t\tthis._size();\n\t\t\tthis._position();\n\t\t}\n\t\tif ( this.uiDialog.is(\":data(ui-resizable)\") ) {\n\t\t\tthis.uiDialog.resizable( \"option\", resizableOptions );\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tvar isDraggable, isResizable,\n\t\t\tuiDialog = this.uiDialog;\n\n\t\tif ( key === \"dialogClass\" ) {\n\t\t\tuiDialog\n\t\t\t\t.removeClass( this.options.dialogClass )\n\t\t\t\t.addClass( value );\n\t\t}\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tif ( key === \"appendTo\" ) {\n\t\t\tthis.uiDialog.appendTo( this._appendTo() );\n\t\t}\n\n\t\tif ( key === \"buttons\" ) {\n\t\t\tthis._createButtons();\n\t\t}\n\n\t\tif ( key === \"closeText\" ) {\n\t\t\tthis.uiDialogTitlebarClose.button({\n\t\t\t\t// Ensure that we always pass a string\n\t\t\t\tlabel: \"\" + value\n\t\t\t});\n\t\t}\n\n\t\tif ( key === \"draggable\" ) {\n\t\t\tisDraggable = uiDialog.is(\":data(ui-draggable)\");\n\t\t\tif ( isDraggable && !value ) {\n\t\t\t\tuiDialog.draggable(\"destroy\");\n\t\t\t}\n\n\t\t\tif ( !isDraggable && value ) {\n\t\t\t\tthis._makeDraggable();\n\t\t\t}\n\t\t}\n\n\t\tif ( key === \"position\" ) {\n\t\t\tthis._position();\n\t\t}\n\n\t\tif ( key === \"resizable\" ) {\n\t\t\t// currently resizable, becoming non-resizable\n\t\t\tisResizable = uiDialog.is(\":data(ui-resizable)\");\n\t\t\tif ( isResizable && !value ) {\n\t\t\t\tuiDialog.resizable(\"destroy\");\n\t\t\t}\n\n\t\t\t// currently resizable, changing handles\n\t\t\tif ( isResizable && typeof value === \"string\" ) {\n\t\t\t\tuiDialog.resizable( \"option\", \"handles\", value );\n\t\t\t}\n\n\t\t\t// currently non-resizable, becoming resizable\n\t\t\tif ( !isResizable && value !== false ) {\n\t\t\t\tthis._makeResizable();\n\t\t\t}\n\t\t}\n\n\t\tif ( key === \"title\" ) {\n\t\t\tthis._title( this.uiDialogTitlebar.find(\".ui-dialog-title\") );\n\t\t}\n\t},\n\n\t_size: function() {\n\t\t// If the user has resized the dialog, the .ui-dialog and .ui-dialog-content\n\t\t// divs will both have width and height set, so we need to reset them\n\t\tvar nonContentHeight, minContentHeight, maxContentHeight,\n\t\t\toptions = this.options;\n\n\t\t// Reset content sizing\n\t\tthis.element.show().css({\n\t\t\twidth: \"auto\",\n\t\t\tminHeight: 0,\n\t\t\tmaxHeight: \"none\",\n\t\t\theight: 0\n\t\t});\n\n\t\tif ( options.minWidth > options.width ) {\n\t\t\toptions.width = options.minWidth;\n\t\t}\n\n\t\t// reset wrapper sizing\n\t\t// determine the height of all the non-content elements\n\t\tnonContentHeight = this.uiDialog.css({\n\t\t\t\theight: \"auto\",\n\t\t\t\twidth: options.width\n\t\t\t})\n\t\t\t.outerHeight();\n\t\tminContentHeight = Math.max( 0, options.minHeight - nonContentHeight );\n\t\tmaxContentHeight = typeof options.maxHeight === \"number\" ?\n\t\t\tMath.max( 0, options.maxHeight - nonContentHeight ) :\n\t\t\t\"none\";\n\n\t\tif ( options.height === \"auto\" ) {\n\t\t\tthis.element.css({\n\t\t\t\tminHeight: minContentHeight,\n\t\t\t\tmaxHeight: maxContentHeight,\n\t\t\t\theight: \"auto\"\n\t\t\t});\n\t\t} else {\n\t\t\tthis.element.height( Math.max( 0, options.height - nonContentHeight ) );\n\t\t}\n\n\t\tif (this.uiDialog.is(\":data(ui-resizable)\") ) {\n\t\t\tthis.uiDialog.resizable( \"option\", \"minHeight\", this._minHeight() );\n\t\t}\n\t},\n\n\t_blockFrames: function() {\n\t\tthis.iframeBlocks = this.document.find( \"iframe\" ).map(function() {\n\t\t\tvar iframe = $( this );\n\n\t\t\treturn $( \"<div>\" )\n\t\t\t\t.css({\n\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\twidth: iframe.outerWidth(),\n\t\t\t\t\theight: iframe.outerHeight()\n\t\t\t\t})\n\t\t\t\t.appendTo( iframe.parent() )\n\t\t\t\t.offset( iframe.offset() )[0];\n\t\t});\n\t},\n\n\t_unblockFrames: function() {\n\t\tif ( this.iframeBlocks ) {\n\t\t\tthis.iframeBlocks.remove();\n\t\t\tdelete this.iframeBlocks;\n\t\t}\n\t},\n\n\t_allowInteraction: function( event ) {\n\t\tif ( $( event.target ).closest(\".ui-dialog\").length ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// TODO: Remove hack when datepicker implements\n\t\t// the .ui-front logic (#8989)\n\t\treturn !!$( event.target ).closest(\".ui-datepicker\").length;\n\t},\n\n\t_createOverlay: function() {\n\t\tif ( !this.options.modal ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar that = this,\n\t\t\twidgetFullName = this.widgetFullName;\n\t\tif ( !$.ui.dialog.overlayInstances ) {\n\t\t\t// Prevent use of anchors and inputs.\n\t\t\t// We use a delay in case the overlay is created from an\n\t\t\t// event that we're going to be cancelling. (#2804)\n\t\t\tthis._delay(function() {\n\t\t\t\t// Handle .dialog().dialog(\"close\") (#4065)\n\t\t\t\tif ( $.ui.dialog.overlayInstances ) {\n\t\t\t\t\tthis.document.bind( \"focusin.dialog\", function( event ) {\n\t\t\t\t\t\tif ( !that._allowInteraction( event ) ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\t$(\".ui-dialog:visible:last .ui-dialog-content\")\n\t\t\t\t\t\t\t\t.data( widgetFullName )._focusTabbable();\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tthis.overlay = $(\"<div>\")\n\t\t\t.addClass(\"ui-widget-overlay ui-front\")\n\t\t\t.appendTo( this._appendTo() );\n\t\tthis._on( this.overlay, {\n\t\t\tmousedown: \"_keepFocus\"\n\t\t});\n\t\t$.ui.dialog.overlayInstances++;\n\t},\n\n\t_destroyOverlay: function() {\n\t\tif ( !this.options.modal ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( this.overlay ) {\n\t\t\t$.ui.dialog.overlayInstances--;\n\n\t\t\tif ( !$.ui.dialog.overlayInstances ) {\n\t\t\t\tthis.document.unbind( \"focusin.dialog\" );\n\t\t\t}\n\t\t\tthis.overlay.remove();\n\t\t\tthis.overlay = null;\n\t\t}\n\t}\n});\n\n$.ui.dialog.overlayInstances = 0;\n\n// DEPRECATED\nif ( $.uiBackCompat !== false ) {\n\t// position option with array notation\n\t// just override with old implementation\n\t$.widget( \"ui.dialog\", $.ui.dialog, {\n\t\t_position: function() {\n\t\t\tvar position = this.options.position,\n\t\t\t\tmyAt = [],\n\t\t\t\toffset = [ 0, 0 ],\n\t\t\t\tisVisible;\n\n\t\t\tif ( position ) {\n\t\t\t\tif ( typeof position === \"string\" || (typeof position === \"object\" && \"0\" in position ) ) {\n\t\t\t\t\tmyAt = position.split ? position.split(\" \") : [ position[0], position[1] ];\n\t\t\t\t\tif ( myAt.length === 1 ) {\n\t\t\t\t\t\tmyAt[1] = myAt[0];\n\t\t\t\t\t}\n\n\t\t\t\t\t$.each( [ \"left\", \"top\" ], function( i, offsetPosition ) {\n\t\t\t\t\t\tif ( +myAt[ i ] === myAt[ i ] ) {\n\t\t\t\t\t\t\toffset[ i ] = myAt[ i ];\n\t\t\t\t\t\t\tmyAt[ i ] = offsetPosition;\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\n\t\t\t\t\tposition = {\n\t\t\t\t\t\tmy: myAt[0] + (offset[0] < 0 ? offset[0] : \"+\" + offset[0]) + \" \" +\n\t\t\t\t\t\t\tmyAt[1] + (offset[1] < 0 ? offset[1] : \"+\" + offset[1]),\n\t\t\t\t\t\tat: myAt.join(\" \")\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\tposition = $.extend( {}, $.ui.dialog.prototype.options.position, position );\n\t\t\t} else {\n\t\t\t\tposition = $.ui.dialog.prototype.options.position;\n\t\t\t}\n\n\t\t\t// need to show the dialog to get the actual offset in the position plugin\n\t\t\tisVisible = this.uiDialog.is(\":visible\");\n\t\t\tif ( !isVisible ) {\n\t\t\t\tthis.uiDialog.show();\n\t\t\t}\n\t\t\tthis.uiDialog.position( position );\n\t\t\tif ( !isVisible ) {\n\t\t\t\tthis.uiDialog.hide();\n\t\t\t}\n\t\t}\n\t});\n}\n\n}( jQuery ) );\n\n(function( $, undefined ) {\n\nvar rvertical = /up|down|vertical/,\n\trpositivemotion = /up|left|vertical|horizontal/;\n\n$.effects.effect.blind = function( o, done ) {\n\t// Create element\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tdirection = o.direction || \"up\",\n\t\tvertical = rvertical.test( direction ),\n\t\tref = vertical ? \"height\" : \"width\",\n\t\tref2 = vertical ? \"top\" : \"left\",\n\t\tmotion = rpositivemotion.test( direction ),\n\t\tanimation = {},\n\t\tshow = mode === \"show\",\n\t\twrapper, distance, margin;\n\n\t// if already wrapped, the wrapper's properties are my property. #6245\n\tif ( el.parent().is( \".ui-effects-wrapper\" ) ) {\n\t\t$.effects.save( el.parent(), props );\n\t} else {\n\t\t$.effects.save( el, props );\n\t}\n\tel.show();\n\twrapper = $.effects.createWrapper( el ).css({\n\t\toverflow: \"hidden\"\n\t});\n\n\tdistance = wrapper[ ref ]();\n\tmargin = parseFloat( wrapper.css( ref2 ) ) || 0;\n\n\tanimation[ ref ] = show ? distance : 0;\n\tif ( !motion ) {\n\t\tel\n\t\t\t.css( vertical ? \"bottom\" : \"right\", 0 )\n\t\t\t.css( vertical ? \"top\" : \"left\", \"auto\" )\n\t\t\t.css({ position: \"absolute\" });\n\n\t\tanimation[ ref2 ] = show ? margin : distance + margin;\n\t}\n\n\t// start at 0 if we are showing\n\tif ( show ) {\n\t\twrapper.css( ref, 0 );\n\t\tif ( ! motion ) {\n\t\t\twrapper.css( ref2, margin + distance );\n\t\t}\n\t}\n\n\t// Animate\n\twrapper.animate( animation, {\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tqueue: false,\n\t\tcomplete: function() {\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.bounce = function( o, done ) {\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\n\t\t// defaults:\n\t\tmode = $.effects.setMode( el, o.mode || \"effect\" ),\n\t\thide = mode === \"hide\",\n\t\tshow = mode === \"show\",\n\t\tdirection = o.direction || \"up\",\n\t\tdistance = o.distance,\n\t\ttimes = o.times || 5,\n\n\t\t// number of internal animations\n\t\tanims = times * 2 + ( show || hide ? 1 : 0 ),\n\t\tspeed = o.duration / anims,\n\t\teasing = o.easing,\n\n\t\t// utility:\n\t\tref = ( direction === \"up\" || direction === \"down\" ) ? \"top\" : \"left\",\n\t\tmotion = ( direction === \"up\" || direction === \"left\" ),\n\t\ti,\n\t\tupAnim,\n\t\tdownAnim,\n\n\t\t// we will need to re-assemble the queue to stack our animations in place\n\t\tqueue = el.queue(),\n\t\tqueuelen = queue.length;\n\n\t// Avoid touching opacity to prevent clearType and PNG issues in IE\n\tif ( show || hide ) {\n\t\tprops.push( \"opacity\" );\n\t}\n\n\t$.effects.save( el, props );\n\tel.show();\n\t$.effects.createWrapper( el ); // Create Wrapper\n\n\t// default distance for the BIGGEST bounce is the outer Distance / 3\n\tif ( !distance ) {\n\t\tdistance = el[ ref === \"top\" ? \"outerHeight\" : \"outerWidth\" ]() / 3;\n\t}\n\n\tif ( show ) {\n\t\tdownAnim = { opacity: 1 };\n\t\tdownAnim[ ref ] = 0;\n\n\t\t// if we are showing, force opacity 0 and set the initial position\n\t\t// then do the \"first\" animation\n\t\tel.css( \"opacity\", 0 )\n\t\t\t.css( ref, motion ? -distance * 2 : distance * 2 )\n\t\t\t.animate( downAnim, speed, easing );\n\t}\n\n\t// start at the smallest distance if we are hiding\n\tif ( hide ) {\n\t\tdistance = distance / Math.pow( 2, times - 1 );\n\t}\n\n\tdownAnim = {};\n\tdownAnim[ ref ] = 0;\n\t// Bounces up/down/left/right then back to 0 -- times * 2 animations happen here\n\tfor ( i = 0; i < times; i++ ) {\n\t\tupAnim = {};\n\t\tupAnim[ ref ] = ( motion ? \"-=\" : \"+=\" ) + distance;\n\n\t\tel.animate( upAnim, speed, easing )\n\t\t\t.animate( downAnim, speed, easing );\n\n\t\tdistance = hide ? distance * 2 : distance / 2;\n\t}\n\n\t// Last Bounce when Hiding\n\tif ( hide ) {\n\t\tupAnim = { opacity: 0 };\n\t\tupAnim[ ref ] = ( motion ? \"-=\" : \"+=\" ) + distance;\n\n\t\tel.animate( upAnim, speed, easing );\n\t}\n\n\tel.queue(function() {\n\t\tif ( hide ) {\n\t\t\tel.hide();\n\t\t}\n\t\t$.effects.restore( el, props );\n\t\t$.effects.removeWrapper( el );\n\t\tdone();\n\t});\n\n\t// inject all the animations we just queued to be first in line (after \"inprogress\")\n\tif ( queuelen > 1) {\n\t\tqueue.splice.apply( queue,\n\t\t\t[ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );\n\t}\n\tel.dequeue();\n\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.clip = function( o, done ) {\n\t// Create element\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tshow = mode === \"show\",\n\t\tdirection = o.direction || \"vertical\",\n\t\tvert = direction === \"vertical\",\n\t\tsize = vert ? \"height\" : \"width\",\n\t\tposition = vert ? \"top\" : \"left\",\n\t\tanimation = {},\n\t\twrapper, animate, distance;\n\n\t// Save & Show\n\t$.effects.save( el, props );\n\tel.show();\n\n\t// Create Wrapper\n\twrapper = $.effects.createWrapper( el ).css({\n\t\toverflow: \"hidden\"\n\t});\n\tanimate = ( el[0].tagName === \"IMG\" ) ? wrapper : el;\n\tdistance = animate[ size ]();\n\n\t// Shift\n\tif ( show ) {\n\t\tanimate.css( size, 0 );\n\t\tanimate.css( position, distance / 2 );\n\t}\n\n\t// Create Animation Object:\n\tanimation[ size ] = show ? distance : 0;\n\tanimation[ position ] = show ? 0 : distance / 2;\n\n\t// Animate\n\tanimate.animate( animation, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: function() {\n\t\t\tif ( !show ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.drop = function( o, done ) {\n\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"opacity\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tshow = mode === \"show\",\n\t\tdirection = o.direction || \"left\",\n\t\tref = ( direction === \"up\" || direction === \"down\" ) ? \"top\" : \"left\",\n\t\tmotion = ( direction === \"up\" || direction === \"left\" ) ? \"pos\" : \"neg\",\n\t\tanimation = {\n\t\t\topacity: show ? 1 : 0\n\t\t},\n\t\tdistance;\n\n\t// Adjust\n\t$.effects.save( el, props );\n\tel.show();\n\t$.effects.createWrapper( el );\n\n\tdistance = o.distance || el[ ref === \"top\" ? \"outerHeight\": \"outerWidth\" ]( true ) / 2;\n\n\tif ( show ) {\n\t\tel\n\t\t\t.css( \"opacity\", 0 )\n\t\t\t.css( ref, motion === \"pos\" ? -distance : distance );\n\t}\n\n\t// Animation\n\tanimation[ ref ] = ( show ?\n\t\t( motion === \"pos\" ? \"+=\" : \"-=\" ) :\n\t\t( motion === \"pos\" ? \"-=\" : \"+=\" ) ) +\n\t\tdistance;\n\n\t// Animate\n\tel.animate( animation, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: function() {\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.explode = function( o, done ) {\n\n\tvar rows = o.pieces ? Math.round( Math.sqrt( o.pieces ) ) : 3,\n\t\tcells = rows,\n\t\tel = $( this ),\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tshow = mode === \"show\",\n\n\t\t// show and then visibility:hidden the element before calculating offset\n\t\toffset = el.show().css( \"visibility\", \"hidden\" ).offset(),\n\n\t\t// width and height of a piece\n\t\twidth = Math.ceil( el.outerWidth() / cells ),\n\t\theight = Math.ceil( el.outerHeight() / rows ),\n\t\tpieces = [],\n\n\t\t// loop\n\t\ti, j, left, top, mx, my;\n\n\t// children animate complete:\n\tfunction childComplete() {\n\t\tpieces.push( this );\n\t\tif ( pieces.length === rows * cells ) {\n\t\t\tanimComplete();\n\t\t}\n\t}\n\n\t// clone the element for each row and cell.\n\tfor( i = 0; i < rows ; i++ ) { // ===>\n\t\ttop = offset.top + i * height;\n\t\tmy = i - ( rows - 1 ) / 2 ;\n\n\t\tfor( j = 0; j < cells ; j++ ) { // |||\n\t\t\tleft = offset.left + j * width;\n\t\t\tmx = j - ( cells - 1 ) / 2 ;\n\n\t\t\t// Create a clone of the now hidden main element that will be absolute positioned\n\t\t\t// within a wrapper div off the -left and -top equal to size of our pieces\n\t\t\tel\n\t\t\t\t.clone()\n\t\t\t\t.appendTo( \"body\" )\n\t\t\t\t.wrap( \"<div></div>\" )\n\t\t\t\t.css({\n\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\tvisibility: \"visible\",\n\t\t\t\t\tleft: -j * width,\n\t\t\t\t\ttop: -i * height\n\t\t\t\t})\n\n\t\t\t// select the wrapper - make it overflow: hidden and absolute positioned based on\n\t\t\t// where the original was located +left and +top equal to the size of pieces\n\t\t\t\t.parent()\n\t\t\t\t.addClass( \"ui-effects-explode\" )\n\t\t\t\t.css({\n\t\t\t\t\tposition: \"absolute\",\n\t\t\t\t\toverflow: \"hidden\",\n\t\t\t\t\twidth: width,\n\t\t\t\t\theight: height,\n\t\t\t\t\tleft: left + ( show ? mx * width : 0 ),\n\t\t\t\t\ttop: top + ( show ? my * height : 0 ),\n\t\t\t\t\topacity: show ? 0 : 1\n\t\t\t\t}).animate({\n\t\t\t\t\tleft: left + ( show ? 0 : mx * width ),\n\t\t\t\t\ttop: top + ( show ? 0 : my * height ),\n\t\t\t\t\topacity: show ? 1 : 0\n\t\t\t\t}, o.duration || 500, o.easing, childComplete );\n\t\t}\n\t}\n\n\tfunction animComplete() {\n\t\tel.css({\n\t\t\tvisibility: \"visible\"\n\t\t});\n\t\t$( pieces ).remove();\n\t\tif ( !show ) {\n\t\t\tel.hide();\n\t\t}\n\t\tdone();\n\t}\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.fade = function( o, done ) {\n\tvar el = $( this ),\n\t\tmode = $.effects.setMode( el, o.mode || \"toggle\" );\n\n\tel.animate({\n\t\topacity: mode\n\t}, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: done\n\t});\n};\n\n})( jQuery );\n\n(function( $, undefined ) {\n\n$.effects.effect.fold = function( o, done ) {\n\n\t// Create element\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"hide\" ),\n\t\tshow = mode === \"show\",\n\t\thide = mode === \"hide\",\n\t\tsize = o.size || 15,\n\t\tpercent = /([0-9]+)%/.exec( size ),\n\t\thorizFirst = !!o.horizFirst,\n\t\twidthFirst = show !== horizFirst,\n\t\tref = widthFirst ? [ \"width\", \"height\" ] : [ \"height\", \"width\" ],\n\t\tduration = o.duration / 2,\n\t\twrapper, distance,\n\t\tanimation1 = {},\n\t\tanimation2 = {};\n\n\t$.effects.save( el, props );\n\tel.show();\n\n\t// Create Wrapper\n\twrapper = $.effects.createWrapper( el ).css({\n\t\toverflow: \"hidden\"\n\t});\n\tdistance = widthFirst ?\n\t\t[ wrapper.width(), wrapper.height() ] :\n\t\t[ wrapper.height(), wrapper.width() ];\n\n\tif ( percent ) {\n\t\tsize = parseInt( percent[ 1 ], 10 ) / 100 * distance[ hide ? 0 : 1 ];\n\t}\n\tif ( show ) {\n\t\twrapper.css( horizFirst ? {\n\t\t\theight: 0,\n\t\t\twidth: size\n\t\t} : {\n\t\t\theight: size,\n\t\t\twidth: 0\n\t\t});\n\t}\n\n\t// Animation\n\tanimation1[ ref[ 0 ] ] = show ? distance[ 0 ] : size;\n\tanimation2[ ref[ 1 ] ] = show ? distance[ 1 ] : 0;\n\n\t// Animate\n\twrapper\n\t\t.animate( animation1, duration, o.easing )\n\t\t.animate( animation2, duration, o.easing, function() {\n\t\t\tif ( hide ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t});\n\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.highlight = function( o, done ) {\n\tvar elem = $( this ),\n\t\tprops = [ \"backgroundImage\", \"backgroundColor\", \"opacity\" ],\n\t\tmode = $.effects.setMode( elem, o.mode || \"show\" ),\n\t\tanimation = {\n\t\t\tbackgroundColor: elem.css( \"backgroundColor\" )\n\t\t};\n\n\tif (mode === \"hide\") {\n\t\tanimation.opacity = 0;\n\t}\n\n\t$.effects.save( elem, props );\n\n\telem\n\t\t.show()\n\t\t.css({\n\t\t\tbackgroundImage: \"none\",\n\t\t\tbackgroundColor: o.color || \"#ffff99\"\n\t\t})\n\t\t.animate( animation, {\n\t\t\tqueue: false,\n\t\t\tduration: o.duration,\n\t\t\teasing: o.easing,\n\t\t\tcomplete: function() {\n\t\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\t\telem.hide();\n\t\t\t\t}\n\t\t\t\t$.effects.restore( elem, props );\n\t\t\t\tdone();\n\t\t\t}\n\t\t});\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.pulsate = function( o, done ) {\n\tvar elem = $( this ),\n\t\tmode = $.effects.setMode( elem, o.mode || \"show\" ),\n\t\tshow = mode === \"show\",\n\t\thide = mode === \"hide\",\n\t\tshowhide = ( show || mode === \"hide\" ),\n\n\t\t// showing or hiding leaves of the \"last\" animation\n\t\tanims = ( ( o.times || 5 ) * 2 ) + ( showhide ? 1 : 0 ),\n\t\tduration = o.duration / anims,\n\t\tanimateTo = 0,\n\t\tqueue = elem.queue(),\n\t\tqueuelen = queue.length,\n\t\ti;\n\n\tif ( show || !elem.is(\":visible\")) {\n\t\telem.css( \"opacity\", 0 ).show();\n\t\tanimateTo = 1;\n\t}\n\n\t// anims - 1 opacity \"toggles\"\n\tfor ( i = 1; i < anims; i++ ) {\n\t\telem.animate({\n\t\t\topacity: animateTo\n\t\t}, duration, o.easing );\n\t\tanimateTo = 1 - animateTo;\n\t}\n\n\telem.animate({\n\t\topacity: animateTo\n\t}, duration, o.easing);\n\n\telem.queue(function() {\n\t\tif ( hide ) {\n\t\t\telem.hide();\n\t\t}\n\t\tdone();\n\t});\n\n\t// We just queued up \"anims\" animations, we need to put them next in the queue\n\tif ( queuelen > 1 ) {\n\t\tqueue.splice.apply( queue,\n\t\t\t[ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );\n\t}\n\telem.dequeue();\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.puff = function( o, done ) {\n\tvar elem = $( this ),\n\t\tmode = $.effects.setMode( elem, o.mode || \"hide\" ),\n\t\thide = mode === \"hide\",\n\t\tpercent = parseInt( o.percent, 10 ) || 150,\n\t\tfactor = percent / 100,\n\t\toriginal = {\n\t\t\theight: elem.height(),\n\t\t\twidth: elem.width(),\n\t\t\touterHeight: elem.outerHeight(),\n\t\t\touterWidth: elem.outerWidth()\n\t\t};\n\n\t$.extend( o, {\n\t\teffect: \"scale\",\n\t\tqueue: false,\n\t\tfade: true,\n\t\tmode: mode,\n\t\tcomplete: done,\n\t\tpercent: hide ? percent : 100,\n\t\tfrom: hide ?\n\t\t\toriginal :\n\t\t\t{\n\t\t\t\theight: original.height * factor,\n\t\t\t\twidth: original.width * factor,\n\t\t\t\touterHeight: original.outerHeight * factor,\n\t\t\t\touterWidth: original.outerWidth * factor\n\t\t\t}\n\t});\n\n\telem.effect( o );\n};\n\n$.effects.effect.scale = function( o, done ) {\n\n\t// Create element\n\tvar el = $( this ),\n\t\toptions = $.extend( true, {}, o ),\n\t\tmode = $.effects.setMode( el, o.mode || \"effect\" ),\n\t\tpercent = parseInt( o.percent, 10 ) ||\n\t\t\t( parseInt( o.percent, 10 ) === 0 ? 0 : ( mode === \"hide\" ? 0 : 100 ) ),\n\t\tdirection = o.direction || \"both\",\n\t\torigin = o.origin,\n\t\toriginal = {\n\t\t\theight: el.height(),\n\t\t\twidth: el.width(),\n\t\t\touterHeight: el.outerHeight(),\n\t\t\touterWidth: el.outerWidth()\n\t\t},\n\t\tfactor = {\n\t\t\ty: direction !== \"horizontal\" ? (percent / 100) : 1,\n\t\t\tx: direction !== \"vertical\" ? (percent / 100) : 1\n\t\t};\n\n\t// We are going to pass this effect to the size effect:\n\toptions.effect = \"size\";\n\toptions.queue = false;\n\toptions.complete = done;\n\n\t// Set default origin and restore for show/hide\n\tif ( mode !== \"effect\" ) {\n\t\toptions.origin = origin || [\"middle\",\"center\"];\n\t\toptions.restore = true;\n\t}\n\n\toptions.from = o.from || ( mode === \"show\" ? {\n\t\theight: 0,\n\t\twidth: 0,\n\t\touterHeight: 0,\n\t\touterWidth: 0\n\t} : original );\n\toptions.to = {\n\t\theight: original.height * factor.y,\n\t\twidth: original.width * factor.x,\n\t\touterHeight: original.outerHeight * factor.y,\n\t\touterWidth: original.outerWidth * factor.x\n\t};\n\n\t// Fade option to support puff\n\tif ( options.fade ) {\n\t\tif ( mode === \"show\" ) {\n\t\t\toptions.from.opacity = 0;\n\t\t\toptions.to.opacity = 1;\n\t\t}\n\t\tif ( mode === \"hide\" ) {\n\t\t\toptions.from.opacity = 1;\n\t\t\toptions.to.opacity = 0;\n\t\t}\n\t}\n\n\t// Animate\n\tel.effect( options );\n\n};\n\n$.effects.effect.size = function( o, done ) {\n\n\t// Create element\n\tvar original, baseline, factor,\n\t\tel = $( this ),\n\t\tprops0 = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"width\", \"height\", \"overflow\", \"opacity\" ],\n\n\t\t// Always restore\n\t\tprops1 = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"overflow\", \"opacity\" ],\n\n\t\t// Copy for children\n\t\tprops2 = [ \"width\", \"height\", \"overflow\" ],\n\t\tcProps = [ \"fontSize\" ],\n\t\tvProps = [ \"borderTopWidth\", \"borderBottomWidth\", \"paddingTop\", \"paddingBottom\" ],\n\t\thProps = [ \"borderLeftWidth\", \"borderRightWidth\", \"paddingLeft\", \"paddingRight\" ],\n\n\t\t// Set options\n\t\tmode = $.effects.setMode( el, o.mode || \"effect\" ),\n\t\trestore = o.restore || mode !== \"effect\",\n\t\tscale = o.scale || \"both\",\n\t\torigin = o.origin || [ \"middle\", \"center\" ],\n\t\tposition = el.css( \"position\" ),\n\t\tprops = restore ? props0 : props1,\n\t\tzero = {\n\t\t\theight: 0,\n\t\t\twidth: 0,\n\t\t\touterHeight: 0,\n\t\t\touterWidth: 0\n\t\t};\n\n\tif ( mode === \"show\" ) {\n\t\tel.show();\n\t}\n\toriginal = {\n\t\theight: el.height(),\n\t\twidth: el.width(),\n\t\touterHeight: el.outerHeight(),\n\t\touterWidth: el.outerWidth()\n\t};\n\n\tif ( o.mode === \"toggle\" && mode === \"show\" ) {\n\t\tel.from = o.to || zero;\n\t\tel.to = o.from || original;\n\t} else {\n\t\tel.from = o.from || ( mode === \"show\" ? zero : original );\n\t\tel.to = o.to || ( mode === \"hide\" ? zero : original );\n\t}\n\n\t// Set scaling factor\n\tfactor = {\n\t\tfrom: {\n\t\t\ty: el.from.height / original.height,\n\t\t\tx: el.from.width / original.width\n\t\t},\n\t\tto: {\n\t\t\ty: el.to.height / original.height,\n\t\t\tx: el.to.width / original.width\n\t\t}\n\t};\n\n\t// Scale the css box\n\tif ( scale === \"box\" || scale === \"both\" ) {\n\n\t\t// Vertical props scaling\n\t\tif ( factor.from.y !== factor.to.y ) {\n\t\t\tprops = props.concat( vProps );\n\t\t\tel.from = $.effects.setTransition( el, vProps, factor.from.y, el.from );\n\t\t\tel.to = $.effects.setTransition( el, vProps, factor.to.y, el.to );\n\t\t}\n\n\t\t// Horizontal props scaling\n\t\tif ( factor.from.x !== factor.to.x ) {\n\t\t\tprops = props.concat( hProps );\n\t\t\tel.from = $.effects.setTransition( el, hProps, factor.from.x, el.from );\n\t\t\tel.to = $.effects.setTransition( el, hProps, factor.to.x, el.to );\n\t\t}\n\t}\n\n\t// Scale the content\n\tif ( scale === \"content\" || scale === \"both\" ) {\n\n\t\t// Vertical props scaling\n\t\tif ( factor.from.y !== factor.to.y ) {\n\t\t\tprops = props.concat( cProps ).concat( props2 );\n\t\t\tel.from = $.effects.setTransition( el, cProps, factor.from.y, el.from );\n\t\t\tel.to = $.effects.setTransition( el, cProps, factor.to.y, el.to );\n\t\t}\n\t}\n\n\t$.effects.save( el, props );\n\tel.show();\n\t$.effects.createWrapper( el );\n\tel.css( \"overflow\", \"hidden\" ).css( el.from );\n\n\t// Adjust\n\tif (origin) { // Calculate baseline shifts\n\t\tbaseline = $.effects.getBaseline( origin, original );\n\t\tel.from.top = ( original.outerHeight - el.outerHeight() ) * baseline.y;\n\t\tel.from.left = ( original.outerWidth - el.outerWidth() ) * baseline.x;\n\t\tel.to.top = ( original.outerHeight - el.to.outerHeight ) * baseline.y;\n\t\tel.to.left = ( original.outerWidth - el.to.outerWidth ) * baseline.x;\n\t}\n\tel.css( el.from ); // set top & left\n\n\t// Animate\n\tif ( scale === \"content\" || scale === \"both\" ) { // Scale the children\n\n\t\t// Add margins/font-size\n\t\tvProps = vProps.concat([ \"marginTop\", \"marginBottom\" ]).concat(cProps);\n\t\thProps = hProps.concat([ \"marginLeft\", \"marginRight\" ]);\n\t\tprops2 = props0.concat(vProps).concat(hProps);\n\n\t\tel.find( \"*[width]\" ).each( function(){\n\t\t\tvar child = $( this ),\n\t\t\t\tc_original = {\n\t\t\t\t\theight: child.height(),\n\t\t\t\t\twidth: child.width(),\n\t\t\t\t\touterHeight: child.outerHeight(),\n\t\t\t\t\touterWidth: child.outerWidth()\n\t\t\t\t};\n\t\t\tif (restore) {\n\t\t\t\t$.effects.save(child, props2);\n\t\t\t}\n\n\t\t\tchild.from = {\n\t\t\t\theight: c_original.height * factor.from.y,\n\t\t\t\twidth: c_original.width * factor.from.x,\n\t\t\t\touterHeight: c_original.outerHeight * factor.from.y,\n\t\t\t\touterWidth: c_original.outerWidth * factor.from.x\n\t\t\t};\n\t\t\tchild.to = {\n\t\t\t\theight: c_original.height * factor.to.y,\n\t\t\t\twidth: c_original.width * factor.to.x,\n\t\t\t\touterHeight: c_original.height * factor.to.y,\n\t\t\t\touterWidth: c_original.width * factor.to.x\n\t\t\t};\n\n\t\t\t// Vertical props scaling\n\t\t\tif ( factor.from.y !== factor.to.y ) {\n\t\t\t\tchild.from = $.effects.setTransition( child, vProps, factor.from.y, child.from );\n\t\t\t\tchild.to = $.effects.setTransition( child, vProps, factor.to.y, child.to );\n\t\t\t}\n\n\t\t\t// Horizontal props scaling\n\t\t\tif ( factor.from.x !== factor.to.x ) {\n\t\t\t\tchild.from = $.effects.setTransition( child, hProps, factor.from.x, child.from );\n\t\t\t\tchild.to = $.effects.setTransition( child, hProps, factor.to.x, child.to );\n\t\t\t}\n\n\t\t\t// Animate children\n\t\t\tchild.css( child.from );\n\t\t\tchild.animate( child.to, o.duration, o.easing, function() {\n\n\t\t\t\t// Restore children\n\t\t\t\tif ( restore ) {\n\t\t\t\t\t$.effects.restore( child, props2 );\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t}\n\n\t// Animate\n\tel.animate( el.to, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: function() {\n\t\t\tif ( el.to.opacity === 0 ) {\n\t\t\t\tel.css( \"opacity\", el.from.opacity );\n\t\t\t}\n\t\t\tif( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\tif ( !restore ) {\n\n\t\t\t\t// we need to calculate our new positioning based on the scaling\n\t\t\t\tif ( position === \"static\" ) {\n\t\t\t\t\tel.css({\n\t\t\t\t\t\tposition: \"relative\",\n\t\t\t\t\t\ttop: el.to.top,\n\t\t\t\t\t\tleft: el.to.left\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t$.each([ \"top\", \"left\" ], function( idx, pos ) {\n\t\t\t\t\t\tel.css( pos, function( _, str ) {\n\t\t\t\t\t\t\tvar val = parseInt( str, 10 ),\n\t\t\t\t\t\t\t\ttoRef = idx ? el.to.left : el.to.top;\n\n\t\t\t\t\t\t\t// if original was \"auto\", recalculate the new value from wrapper\n\t\t\t\t\t\t\tif ( str === \"auto\" ) {\n\t\t\t\t\t\t\t\treturn toRef + \"px\";\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\treturn val + toRef + \"px\";\n\t\t\t\t\t\t});\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.shake = function( o, done ) {\n\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"height\", \"width\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"effect\" ),\n\t\tdirection = o.direction || \"left\",\n\t\tdistance = o.distance || 20,\n\t\ttimes = o.times || 3,\n\t\tanims = times * 2 + 1,\n\t\tspeed = Math.round(o.duration/anims),\n\t\tref = (direction === \"up\" || direction === \"down\") ? \"top\" : \"left\",\n\t\tpositiveMotion = (direction === \"up\" || direction === \"left\"),\n\t\tanimation = {},\n\t\tanimation1 = {},\n\t\tanimation2 = {},\n\t\ti,\n\n\t\t// we will need to re-assemble the queue to stack our animations in place\n\t\tqueue = el.queue(),\n\t\tqueuelen = queue.length;\n\n\t$.effects.save( el, props );\n\tel.show();\n\t$.effects.createWrapper( el );\n\n\t// Animation\n\tanimation[ ref ] = ( positiveMotion ? \"-=\" : \"+=\" ) + distance;\n\tanimation1[ ref ] = ( positiveMotion ? \"+=\" : \"-=\" ) + distance * 2;\n\tanimation2[ ref ] = ( positiveMotion ? \"-=\" : \"+=\" ) + distance * 2;\n\n\t// Animate\n\tel.animate( animation, speed, o.easing );\n\n\t// Shakes\n\tfor ( i = 1; i < times; i++ ) {\n\t\tel.animate( animation1, speed, o.easing ).animate( animation2, speed, o.easing );\n\t}\n\tel\n\t\t.animate( animation1, speed, o.easing )\n\t\t.animate( animation, speed / 2, o.easing )\n\t\t.queue(function() {\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t});\n\n\t// inject all the animations we just queued to be first in line (after \"inprogress\")\n\tif ( queuelen > 1) {\n\t\tqueue.splice.apply( queue,\n\t\t\t[ 1, 0 ].concat( queue.splice( queuelen, anims + 1 ) ) );\n\t}\n\tel.dequeue();\n\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.slide = function( o, done ) {\n\n\t// Create element\n\tvar el = $( this ),\n\t\tprops = [ \"position\", \"top\", \"bottom\", \"left\", \"right\", \"width\", \"height\" ],\n\t\tmode = $.effects.setMode( el, o.mode || \"show\" ),\n\t\tshow = mode === \"show\",\n\t\tdirection = o.direction || \"left\",\n\t\tref = (direction === \"up\" || direction === \"down\") ? \"top\" : \"left\",\n\t\tpositiveMotion = (direction === \"up\" || direction === \"left\"),\n\t\tdistance,\n\t\tanimation = {};\n\n\t// Adjust\n\t$.effects.save( el, props );\n\tel.show();\n\tdistance = o.distance || el[ ref === \"top\" ? \"outerHeight\" : \"outerWidth\" ]( true );\n\n\t$.effects.createWrapper( el ).css({\n\t\toverflow: \"hidden\"\n\t});\n\n\tif ( show ) {\n\t\tel.css( ref, positiveMotion ? (isNaN(distance) ? \"-\" + distance : -distance) : distance );\n\t}\n\n\t// Animation\n\tanimation[ ref ] = ( show ?\n\t\t( positiveMotion ? \"+=\" : \"-=\") :\n\t\t( positiveMotion ? \"-=\" : \"+=\")) +\n\t\tdistance;\n\n\t// Animate\n\tel.animate( animation, {\n\t\tqueue: false,\n\t\tduration: o.duration,\n\t\teasing: o.easing,\n\t\tcomplete: function() {\n\t\t\tif ( mode === \"hide\" ) {\n\t\t\t\tel.hide();\n\t\t\t}\n\t\t\t$.effects.restore( el, props );\n\t\t\t$.effects.removeWrapper( el );\n\t\t\tdone();\n\t\t}\n\t});\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.effects.effect.transfer = function( o, done ) {\n\tvar elem = $( this ),\n\t\ttarget = $( o.to ),\n\t\ttargetFixed = target.css( \"position\" ) === \"fixed\",\n\t\tbody = $(\"body\"),\n\t\tfixTop = targetFixed ? body.scrollTop() : 0,\n\t\tfixLeft = targetFixed ? body.scrollLeft() : 0,\n\t\tendPosition = target.offset(),\n\t\tanimation = {\n\t\t\ttop: endPosition.top - fixTop ,\n\t\t\tleft: endPosition.left - fixLeft ,\n\t\t\theight: target.innerHeight(),\n\t\t\twidth: target.innerWidth()\n\t\t},\n\t\tstartPosition = elem.offset(),\n\t\ttransfer = $( \"<div class='ui-effects-transfer'></div>\" )\n\t\t\t.appendTo( document.body )\n\t\t\t.addClass( o.className )\n\t\t\t.css({\n\t\t\t\ttop: startPosition.top - fixTop ,\n\t\t\t\tleft: startPosition.left - fixLeft ,\n\t\t\t\theight: elem.innerHeight(),\n\t\t\t\twidth: elem.innerWidth(),\n\t\t\t\tposition: targetFixed ? \"fixed\" : \"absolute\"\n\t\t\t})\n\t\t\t.animate( animation, o.duration, o.easing, function() {\n\t\t\t\ttransfer.remove();\n\t\t\t\tdone();\n\t\t\t});\n};\n\n})(jQuery);\n\n(function( $, undefined ) {\n\n$.widget( \"ui.menu\", {\n\tversion: \"1.10.4\",\n\tdefaultElement: \"<ul>\",\n\tdelay: 300,\n\toptions: {\n\t\ticons: {\n\t\t\tsubmenu: \"ui-icon-carat-1-e\"\n\t\t},\n\t\tmenus: \"ul\",\n\t\tposition: {\n\t\t\tmy: \"left top\",\n\t\t\tat: \"right top\"\n\t\t},\n\t\trole: \"menu\",\n\n\t\t// callbacks\n\t\tblur: null,\n\t\tfocus: null,\n\t\tselect: null\n\t},\n\n\t_create: function() {\n\t\tthis.activeMenu = this.element;\n\t\t// flag used to prevent firing of the click handler\n\t\t// as the event bubbles up through nested menus\n\t\tthis.mouseHandled = false;\n\t\tthis.element\n\t\t\t.uniqueId()\n\t\t\t.addClass( \"ui-menu ui-widget ui-widget-content ui-corner-all\" )\n\t\t\t.toggleClass( \"ui-menu-icons\", !!this.element.find( \".ui-icon\" ).length )\n\t\t\t.attr({\n\t\t\t\trole: this.options.role,\n\t\t\t\ttabIndex: 0\n\t\t\t})\n\t\t\t// need to catch all clicks on disabled menu\n\t\t\t// not possible through _on\n\t\t\t.bind( \"click\" + this.eventNamespace, $.proxy(function( event ) {\n\t\t\t\tif ( this.options.disabled ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}, this ));\n\n\t\tif ( this.options.disabled ) {\n\t\t\tthis.element\n\t\t\t\t.addClass( \"ui-state-disabled\" )\n\t\t\t\t.attr( \"aria-disabled\", \"true\" );\n\t\t}\n\n\t\tthis._on({\n\t\t\t// Prevent focus from sticking to links inside menu after clicking\n\t\t\t// them (focus should always stay on UL during navigation).\n\t\t\t\"mousedown .ui-menu-item > a\": function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t},\n\t\t\t\"click .ui-state-disabled > a\": function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t},\n\t\t\t\"click .ui-menu-item:has(a)\": function( event ) {\n\t\t\t\tvar target = $( event.target ).closest( \".ui-menu-item\" );\n\t\t\t\tif ( !this.mouseHandled && target.not( \".ui-state-disabled\" ).length ) {\n\t\t\t\t\tthis.select( event );\n\n\t\t\t\t\t// Only set the mouseHandled flag if the event will bubble, see #9469.\n\t\t\t\t\tif ( !event.isPropagationStopped() ) {\n\t\t\t\t\t\tthis.mouseHandled = true;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Open submenu on click\n\t\t\t\t\tif ( target.has( \".ui-menu\" ).length ) {\n\t\t\t\t\t\tthis.expand( event );\n\t\t\t\t\t} else if ( !this.element.is( \":focus\" ) && $( this.document[ 0 ].activeElement ).closest( \".ui-menu\" ).length ) {\n\n\t\t\t\t\t\t// Redirect focus to the menu\n\t\t\t\t\t\tthis.element.trigger( \"focus\", [ true ] );\n\n\t\t\t\t\t\t// If the active item is on the top level, let it stay active.\n\t\t\t\t\t\t// Otherwise, blur the active item since it is no longer visible.\n\t\t\t\t\t\tif ( this.active && this.active.parents( \".ui-menu\" ).length === 1 ) {\n\t\t\t\t\t\t\tclearTimeout( this.timer );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"mouseenter .ui-menu-item\": function( event ) {\n\t\t\t\tvar target = $( event.currentTarget );\n\t\t\t\t// Remove ui-state-active class from siblings of the newly focused menu item\n\t\t\t\t// to avoid a jump caused by adjacent elements both having a class with a border\n\t\t\t\ttarget.siblings().children( \".ui-state-active\" ).removeClass( \"ui-state-active\" );\n\t\t\t\tthis.focus( event, target );\n\t\t\t},\n\t\t\tmouseleave: \"collapseAll\",\n\t\t\t\"mouseleave .ui-menu\": \"collapseAll\",\n\t\t\tfocus: function( event, keepActiveItem ) {\n\t\t\t\t// If there's already an active item, keep it active\n\t\t\t\t// If not, activate the first item\n\t\t\t\tvar item = this.active || this.element.children( \".ui-menu-item\" ).eq( 0 );\n\n\t\t\t\tif ( !keepActiveItem ) {\n\t\t\t\t\tthis.focus( event, item );\n\t\t\t\t}\n\t\t\t},\n\t\t\tblur: function( event ) {\n\t\t\t\tthis._delay(function() {\n\t\t\t\t\tif ( !$.contains( this.element[0], this.document[0].activeElement ) ) {\n\t\t\t\t\t\tthis.collapseAll( event );\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\t\t\tkeydown: \"_keydown\"\n\t\t});\n\n\t\tthis.refresh();\n\n\t\t// Clicks outside of a menu collapse any open menus\n\t\tthis._on( this.document, {\n\t\t\tclick: function( event ) {\n\t\t\t\tif ( !$( event.target ).closest( \".ui-menu\" ).length ) {\n\t\t\t\t\tthis.collapseAll( event );\n\t\t\t\t}\n\n\t\t\t\t// Reset the mouseHandled flag\n\t\t\t\tthis.mouseHandled = false;\n\t\t\t}\n\t\t});\n\t},\n\n\t_destroy: function() {\n\t\t// Destroy (sub)menus\n\t\tthis.element\n\t\t\t.removeAttr( \"aria-activedescendant\" )\n\t\t\t.find( \".ui-menu\" ).addBack()\n\t\t\t\t.removeClass( \"ui-menu ui-widget ui-widget-content ui-corner-all ui-menu-icons\" )\n\t\t\t\t.removeAttr( \"role\" )\n\t\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t\t.removeAttr( \"aria-labelledby\" )\n\t\t\t\t.removeAttr( \"aria-expanded\" )\n\t\t\t\t.removeAttr( \"aria-hidden\" )\n\t\t\t\t.removeAttr( \"aria-disabled\" )\n\t\t\t\t.removeUniqueId()\n\t\t\t\t.show();\n\n\t\t// Destroy menu items\n\t\tthis.element.find( \".ui-menu-item\" )\n\t\t\t.removeClass( \"ui-menu-item\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-disabled\" )\n\t\t\t.children( \"a\" )\n\t\t\t\t.removeUniqueId()\n\t\t\t\t.removeClass( \"ui-corner-all ui-state-hover\" )\n\t\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t\t.removeAttr( \"role\" )\n\t\t\t\t.removeAttr( \"aria-haspopup\" )\n\t\t\t\t.children().each( function() {\n\t\t\t\t\tvar elem = $( this );\n\t\t\t\t\tif ( elem.data( \"ui-menu-submenu-carat\" ) ) {\n\t\t\t\t\t\telem.remove();\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t// Destroy menu dividers\n\t\tthis.element.find( \".ui-menu-divider\" ).removeClass( \"ui-menu-divider ui-widget-content\" );\n\t},\n\n\t_keydown: function( event ) {\n\t\tvar match, prev, character, skip, regex,\n\t\t\tpreventDefault = true;\n\n\t\tfunction escape( value ) {\n\t\t\treturn value.replace( /[\\-\\[\\]{}()*+?.,\\\\\\^$|#\\s]/g, \"\\\\$&\" );\n\t\t}\n\n\t\tswitch ( event.keyCode ) {\n\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\tthis.previousPage( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\tthis.nextPage( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.HOME:\n\t\t\tthis._move( \"first\", \"first\", event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.END:\n\t\t\tthis._move( \"last\", \"last\", event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.UP:\n\t\t\tthis.previous( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.DOWN:\n\t\t\tthis.next( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.LEFT:\n\t\t\tthis.collapse( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.RIGHT:\n\t\t\tif ( this.active && !this.active.is( \".ui-state-disabled\" ) ) {\n\t\t\t\tthis.expand( event );\n\t\t\t}\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.ENTER:\n\t\tcase $.ui.keyCode.SPACE:\n\t\t\tthis._activate( event );\n\t\t\tbreak;\n\t\tcase $.ui.keyCode.ESCAPE:\n\t\t\tthis.collapse( event );\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tpreventDefault = false;\n\t\t\tprev = this.previousFilter || \"\";\n\t\t\tcharacter = String.fromCharCode( event.keyCode );\n\t\t\tskip = false;\n\n\t\t\tclearTimeout( this.filterTimer );\n\n\t\t\tif ( character === prev ) {\n\t\t\t\tskip = true;\n\t\t\t} else {\n\t\t\t\tcharacter = prev + character;\n\t\t\t}\n\n\t\t\tregex = new RegExp( \"^\" + escape( character ), \"i\" );\n\t\t\tmatch = this.activeMenu.children( \".ui-menu-item\" ).filter(function() {\n\t\t\t\treturn regex.test( $( this ).children( \"a\" ).text() );\n\t\t\t});\n\t\t\tmatch = skip && match.index( this.active.next() ) !== -1 ?\n\t\t\t\tthis.active.nextAll( \".ui-menu-item\" ) :\n\t\t\t\tmatch;\n\n\t\t\t// If no matches on the current filter, reset to the last character pressed\n\t\t\t// to move down the menu to the first item that starts with that character\n\t\t\tif ( !match.length ) {\n\t\t\t\tcharacter = String.fromCharCode( event.keyCode );\n\t\t\t\tregex = new RegExp( \"^\" + escape( character ), \"i\" );\n\t\t\t\tmatch = this.activeMenu.children( \".ui-menu-item\" ).filter(function() {\n\t\t\t\t\treturn regex.test( $( this ).children( \"a\" ).text() );\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tif ( match.length ) {\n\t\t\t\tthis.focus( event, match );\n\t\t\t\tif ( match.length > 1 ) {\n\t\t\t\t\tthis.previousFilter = character;\n\t\t\t\t\tthis.filterTimer = this._delay(function() {\n\t\t\t\t\t\tdelete this.previousFilter;\n\t\t\t\t\t}, 1000 );\n\t\t\t\t} else {\n\t\t\t\t\tdelete this.previousFilter;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tdelete this.previousFilter;\n\t\t\t}\n\t\t}\n\n\t\tif ( preventDefault ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\t},\n\n\t_activate: function( event ) {\n\t\tif ( !this.active.is( \".ui-state-disabled\" ) ) {\n\t\t\tif ( this.active.children( \"a[aria-haspopup='true']\" ).length ) {\n\t\t\t\tthis.expand( event );\n\t\t\t} else {\n\t\t\t\tthis.select( event );\n\t\t\t}\n\t\t}\n\t},\n\n\trefresh: function() {\n\t\tvar menus,\n\t\t\ticon = this.options.icons.submenu,\n\t\t\tsubmenus = this.element.find( this.options.menus );\n\n\t\tthis.element.toggleClass( \"ui-menu-icons\", !!this.element.find( \".ui-icon\" ).length );\n\n\t\t// Initialize nested menus\n\t\tsubmenus.filter( \":not(.ui-menu)\" )\n\t\t\t.addClass( \"ui-menu ui-widget ui-widget-content ui-corner-all\" )\n\t\t\t.hide()\n\t\t\t.attr({\n\t\t\t\trole: this.options.role,\n\t\t\t\t\"aria-hidden\": \"true\",\n\t\t\t\t\"aria-expanded\": \"false\"\n\t\t\t})\n\t\t\t.each(function() {\n\t\t\t\tvar menu = $( this ),\n\t\t\t\t\titem = menu.prev( \"a\" ),\n\t\t\t\t\tsubmenuCarat = $( \"<span>\" )\n\t\t\t\t\t\t.addClass( \"ui-menu-icon ui-icon \" + icon )\n\t\t\t\t\t\t.data( \"ui-menu-submenu-carat\", true );\n\n\t\t\t\titem\n\t\t\t\t\t.attr( \"aria-haspopup\", \"true\" )\n\t\t\t\t\t.prepend( submenuCarat );\n\t\t\t\tmenu.attr( \"aria-labelledby\", item.attr( \"id\" ) );\n\t\t\t});\n\n\t\tmenus = submenus.add( this.element );\n\n\t\t// Don't refresh list items that are already adapted\n\t\tmenus.children( \":not(.ui-menu-item):has(a)\" )\n\t\t\t.addClass( \"ui-menu-item\" )\n\t\t\t.attr( \"role\", \"presentation\" )\n\t\t\t.children( \"a\" )\n\t\t\t\t.uniqueId()\n\t\t\t\t.addClass( \"ui-corner-all\" )\n\t\t\t\t.attr({\n\t\t\t\t\ttabIndex: -1,\n\t\t\t\t\trole: this._itemRole()\n\t\t\t\t});\n\n\t\t// Initialize unlinked menu-items containing spaces and/or dashes only as dividers\n\t\tmenus.children( \":not(.ui-menu-item)\" ).each(function() {\n\t\t\tvar item = $( this );\n\t\t\t// hyphen, em dash, en dash\n\t\t\tif ( !/[^\\-\\u2014\\u2013\\s]/.test( item.text() ) ) {\n\t\t\t\titem.addClass( \"ui-widget-content ui-menu-divider\" );\n\t\t\t}\n\t\t});\n\n\t\t// Add aria-disabled attribute to any disabled menu item\n\t\tmenus.children( \".ui-state-disabled\" ).attr( \"aria-disabled\", \"true\" );\n\n\t\t// If the active item has been removed, blur the menu\n\t\tif ( this.active && !$.contains( this.element[ 0 ], this.active[ 0 ] ) ) {\n\t\t\tthis.blur();\n\t\t}\n\t},\n\n\t_itemRole: function() {\n\t\treturn {\n\t\t\tmenu: \"menuitem\",\n\t\t\tlistbox: \"option\"\n\t\t}[ this.options.role ];\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"icons\" ) {\n\t\t\tthis.element.find( \".ui-menu-icon\" )\n\t\t\t\t.removeClass( this.options.icons.submenu )\n\t\t\t\t.addClass( value.submenu );\n\t\t}\n\t\tthis._super( key, value );\n\t},\n\n\tfocus: function( event, item ) {\n\t\tvar nested, focused;\n\t\tthis.blur( event, event && event.type === \"focus\" );\n\n\t\tthis._scrollIntoView( item );\n\n\t\tthis.active = item.first();\n\t\tfocused = this.active.children( \"a\" ).addClass( \"ui-state-focus\" );\n\t\t// Only update aria-activedescendant if there's a role\n\t\t// otherwise we assume focus is managed elsewhere\n\t\tif ( this.options.role ) {\n\t\t\tthis.element.attr( \"aria-activedescendant\", focused.attr( \"id\" ) );\n\t\t}\n\n\t\t// Highlight active parent menu item, if any\n\t\tthis.active\n\t\t\t.parent()\n\t\t\t.closest( \".ui-menu-item\" )\n\t\t\t.children( \"a:first\" )\n\t\t\t.addClass( \"ui-state-active\" );\n\n\t\tif ( event && event.type === \"keydown\" ) {\n\t\t\tthis._close();\n\t\t} else {\n\t\t\tthis.timer = this._delay(function() {\n\t\t\t\tthis._close();\n\t\t\t}, this.delay );\n\t\t}\n\n\t\tnested = item.children( \".ui-menu\" );\n\t\tif ( nested.length && event && ( /^mouse/.test( event.type ) ) ) {\n\t\t\tthis._startOpening(nested);\n\t\t}\n\t\tthis.activeMenu = item.parent();\n\n\t\tthis._trigger( \"focus\", event, { item: item } );\n\t},\n\n\t_scrollIntoView: function( item ) {\n\t\tvar borderTop, paddingTop, offset, scroll, elementHeight, itemHeight;\n\t\tif ( this._hasScroll() ) {\n\t\t\tborderTop = parseFloat( $.css( this.activeMenu[0], \"borderTopWidth\" ) ) || 0;\n\t\t\tpaddingTop = parseFloat( $.css( this.activeMenu[0], \"paddingTop\" ) ) || 0;\n\t\t\toffset = item.offset().top - this.activeMenu.offset().top - borderTop - paddingTop;\n\t\t\tscroll = this.activeMenu.scrollTop();\n\t\t\telementHeight = this.activeMenu.height();\n\t\t\titemHeight = item.height();\n\n\t\t\tif ( offset < 0 ) {\n\t\t\t\tthis.activeMenu.scrollTop( scroll + offset );\n\t\t\t} else if ( offset + itemHeight > elementHeight ) {\n\t\t\t\tthis.activeMenu.scrollTop( scroll + offset - elementHeight + itemHeight );\n\t\t\t}\n\t\t}\n\t},\n\n\tblur: function( event, fromFocus ) {\n\t\tif ( !fromFocus ) {\n\t\t\tclearTimeout( this.timer );\n\t\t}\n\n\t\tif ( !this.active ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.active.children( \"a\" ).removeClass( \"ui-state-focus\" );\n\t\tthis.active = null;\n\n\t\tthis._trigger( \"blur\", event, { item: this.active } );\n\t},\n\n\t_startOpening: function( submenu ) {\n\t\tclearTimeout( this.timer );\n\n\t\t// Don't open if already open fixes a Firefox bug that caused a .5 pixel\n\t\t// shift in the submenu position when mousing over the carat icon\n\t\tif ( submenu.attr( \"aria-hidden\" ) !== \"true\" ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.timer = this._delay(function() {\n\t\t\tthis._close();\n\t\t\tthis._open( submenu );\n\t\t}, this.delay );\n\t},\n\n\t_open: function( submenu ) {\n\t\tvar position = $.extend({\n\t\t\tof: this.active\n\t\t}, this.options.position );\n\n\t\tclearTimeout( this.timer );\n\t\tthis.element.find( \".ui-menu\" ).not( submenu.parents( \".ui-menu\" ) )\n\t\t\t.hide()\n\t\t\t.attr( \"aria-hidden\", \"true\" );\n\n\t\tsubmenu\n\t\t\t.show()\n\t\t\t.removeAttr( \"aria-hidden\" )\n\t\t\t.attr( \"aria-expanded\", \"true\" )\n\t\t\t.position( position );\n\t},\n\n\tcollapseAll: function( event, all ) {\n\t\tclearTimeout( this.timer );\n\t\tthis.timer = this._delay(function() {\n\t\t\t// If we were passed an event, look for the submenu that contains the event\n\t\t\tvar currentMenu = all ? this.element :\n\t\t\t\t$( event && event.target ).closest( this.element.find( \".ui-menu\" ) );\n\n\t\t\t// If we found no valid submenu ancestor, use the main menu to close all sub menus anyway\n\t\t\tif ( !currentMenu.length ) {\n\t\t\t\tcurrentMenu = this.element;\n\t\t\t}\n\n\t\t\tthis._close( currentMenu );\n\n\t\t\tthis.blur( event );\n\t\t\tthis.activeMenu = currentMenu;\n\t\t}, this.delay );\n\t},\n\n\t// With no arguments, closes the currently active menu - if nothing is active\n\t// it closes all menus.  If passed an argument, it will search for menus BELOW\n\t_close: function( startMenu ) {\n\t\tif ( !startMenu ) {\n\t\t\tstartMenu = this.active ? this.active.parent() : this.element;\n\t\t}\n\n\t\tstartMenu\n\t\t\t.find( \".ui-menu\" )\n\t\t\t\t.hide()\n\t\t\t\t.attr( \"aria-hidden\", \"true\" )\n\t\t\t\t.attr( \"aria-expanded\", \"false\" )\n\t\t\t.end()\n\t\t\t.find( \"a.ui-state-active\" )\n\t\t\t\t.removeClass( \"ui-state-active\" );\n\t},\n\n\tcollapse: function( event ) {\n\t\tvar newItem = this.active &&\n\t\t\tthis.active.parent().closest( \".ui-menu-item\", this.element );\n\t\tif ( newItem && newItem.length ) {\n\t\t\tthis._close();\n\t\t\tthis.focus( event, newItem );\n\t\t}\n\t},\n\n\texpand: function( event ) {\n\t\tvar newItem = this.active &&\n\t\t\tthis.active\n\t\t\t\t.children( \".ui-menu \" )\n\t\t\t\t.children( \".ui-menu-item\" )\n\t\t\t\t.first();\n\n\t\tif ( newItem && newItem.length ) {\n\t\t\tthis._open( newItem.parent() );\n\n\t\t\t// Delay so Firefox will not hide activedescendant change in expanding submenu from AT\n\t\t\tthis._delay(function() {\n\t\t\t\tthis.focus( event, newItem );\n\t\t\t});\n\t\t}\n\t},\n\n\tnext: function( event ) {\n\t\tthis._move( \"next\", \"first\", event );\n\t},\n\n\tprevious: function( event ) {\n\t\tthis._move( \"prev\", \"last\", event );\n\t},\n\n\tisFirstItem: function() {\n\t\treturn this.active && !this.active.prevAll( \".ui-menu-item\" ).length;\n\t},\n\n\tisLastItem: function() {\n\t\treturn this.active && !this.active.nextAll( \".ui-menu-item\" ).length;\n\t},\n\n\t_move: function( direction, filter, event ) {\n\t\tvar next;\n\t\tif ( this.active ) {\n\t\t\tif ( direction === \"first\" || direction === \"last\" ) {\n\t\t\t\tnext = this.active\n\t\t\t\t\t[ direction === \"first\" ? \"prevAll\" : \"nextAll\" ]( \".ui-menu-item\" )\n\t\t\t\t\t.eq( -1 );\n\t\t\t} else {\n\t\t\t\tnext = this.active\n\t\t\t\t\t[ direction + \"All\" ]( \".ui-menu-item\" )\n\t\t\t\t\t.eq( 0 );\n\t\t\t}\n\t\t}\n\t\tif ( !next || !next.length || !this.active ) {\n\t\t\tnext = this.activeMenu.children( \".ui-menu-item\" )[ filter ]();\n\t\t}\n\n\t\tthis.focus( event, next );\n\t},\n\n\tnextPage: function( event ) {\n\t\tvar item, base, height;\n\n\t\tif ( !this.active ) {\n\t\t\tthis.next( event );\n\t\t\treturn;\n\t\t}\n\t\tif ( this.isLastItem() ) {\n\t\t\treturn;\n\t\t}\n\t\tif ( this._hasScroll() ) {\n\t\t\tbase = this.active.offset().top;\n\t\t\theight = this.element.height();\n\t\t\tthis.active.nextAll( \".ui-menu-item\" ).each(function() {\n\t\t\t\titem = $( this );\n\t\t\t\treturn item.offset().top - base - height < 0;\n\t\t\t});\n\n\t\t\tthis.focus( event, item );\n\t\t} else {\n\t\t\tthis.focus( event, this.activeMenu.children( \".ui-menu-item\" )\n\t\t\t\t[ !this.active ? \"first\" : \"last\" ]() );\n\t\t}\n\t},\n\n\tpreviousPage: function( event ) {\n\t\tvar item, base, height;\n\t\tif ( !this.active ) {\n\t\t\tthis.next( event );\n\t\t\treturn;\n\t\t}\n\t\tif ( this.isFirstItem() ) {\n\t\t\treturn;\n\t\t}\n\t\tif ( this._hasScroll() ) {\n\t\t\tbase = this.active.offset().top;\n\t\t\theight = this.element.height();\n\t\t\tthis.active.prevAll( \".ui-menu-item\" ).each(function() {\n\t\t\t\titem = $( this );\n\t\t\t\treturn item.offset().top - base + height > 0;\n\t\t\t});\n\n\t\t\tthis.focus( event, item );\n\t\t} else {\n\t\t\tthis.focus( event, this.activeMenu.children( \".ui-menu-item\" ).first() );\n\t\t}\n\t},\n\n\t_hasScroll: function() {\n\t\treturn this.element.outerHeight() < this.element.prop( \"scrollHeight\" );\n\t},\n\n\tselect: function( event ) {\n\t\t// TODO: It should never be possible to not have an active item at this\n\t\t// point, but the tests don't trigger mouseenter before click.\n\t\tthis.active = this.active || $( event.target ).closest( \".ui-menu-item\" );\n\t\tvar ui = { item: this.active };\n\t\tif ( !this.active.has( \".ui-menu\" ).length ) {\n\t\t\tthis.collapseAll( event, true );\n\t\t}\n\t\tthis._trigger( \"select\", event, ui );\n\t}\n});\n\n}( jQuery ));\n\n(function( $, undefined ) {\n\n$.ui = $.ui || {};\n\nvar cachedScrollbarWidth,\n\tmax = Math.max,\n\tabs = Math.abs,\n\tround = Math.round,\n\trhorizontal = /left|center|right/,\n\trvertical = /top|center|bottom/,\n\troffset = /[\\+\\-]\\d+(\\.[\\d]+)?%?/,\n\trposition = /^\\w+/,\n\trpercent = /%$/,\n\t_position = $.fn.position;\n\nfunction getOffsets( offsets, width, height ) {\n\treturn [\n\t\tparseFloat( offsets[ 0 ] ) * ( rpercent.test( offsets[ 0 ] ) ? width / 100 : 1 ),\n\t\tparseFloat( offsets[ 1 ] ) * ( rpercent.test( offsets[ 1 ] ) ? height / 100 : 1 )\n\t];\n}\n\nfunction parseCss( element, property ) {\n\treturn parseInt( $.css( element, property ), 10 ) || 0;\n}\n\nfunction getDimensions( elem ) {\n\tvar raw = elem[0];\n\tif ( raw.nodeType === 9 ) {\n\t\treturn {\n\t\t\twidth: elem.width(),\n\t\t\theight: elem.height(),\n\t\t\toffset: { top: 0, left: 0 }\n\t\t};\n\t}\n\tif ( $.isWindow( raw ) ) {\n\t\treturn {\n\t\t\twidth: elem.width(),\n\t\t\theight: elem.height(),\n\t\t\toffset: { top: elem.scrollTop(), left: elem.scrollLeft() }\n\t\t};\n\t}\n\tif ( raw.preventDefault ) {\n\t\treturn {\n\t\t\twidth: 0,\n\t\t\theight: 0,\n\t\t\toffset: { top: raw.pageY, left: raw.pageX }\n\t\t};\n\t}\n\treturn {\n\t\twidth: elem.outerWidth(),\n\t\theight: elem.outerHeight(),\n\t\toffset: elem.offset()\n\t};\n}\n\n$.position = {\n\tscrollbarWidth: function() {\n\t\tif ( cachedScrollbarWidth !== undefined ) {\n\t\t\treturn cachedScrollbarWidth;\n\t\t}\n\t\tvar w1, w2,\n\t\t\tdiv = $( \"<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>\" ),\n\t\t\tinnerDiv = div.children()[0];\n\n\t\t$( \"body\" ).append( div );\n\t\tw1 = innerDiv.offsetWidth;\n\t\tdiv.css( \"overflow\", \"scroll\" );\n\n\t\tw2 = innerDiv.offsetWidth;\n\n\t\tif ( w1 === w2 ) {\n\t\t\tw2 = div[0].clientWidth;\n\t\t}\n\n\t\tdiv.remove();\n\n\t\treturn (cachedScrollbarWidth = w1 - w2);\n\t},\n\tgetScrollInfo: function( within ) {\n\t\tvar overflowX = within.isWindow || within.isDocument ? \"\" :\n\t\t\t\twithin.element.css( \"overflow-x\" ),\n\t\t\toverflowY = within.isWindow || within.isDocument ? \"\" :\n\t\t\t\twithin.element.css( \"overflow-y\" ),\n\t\t\thasOverflowX = overflowX === \"scroll\" ||\n\t\t\t\t( overflowX === \"auto\" && within.width < within.element[0].scrollWidth ),\n\t\t\thasOverflowY = overflowY === \"scroll\" ||\n\t\t\t\t( overflowY === \"auto\" && within.height < within.element[0].scrollHeight );\n\t\treturn {\n\t\t\twidth: hasOverflowY ? $.position.scrollbarWidth() : 0,\n\t\t\theight: hasOverflowX ? $.position.scrollbarWidth() : 0\n\t\t};\n\t},\n\tgetWithinInfo: function( element ) {\n\t\tvar withinElement = $( element || window ),\n\t\t\tisWindow = $.isWindow( withinElement[0] ),\n\t\t\tisDocument = !!withinElement[ 0 ] && withinElement[ 0 ].nodeType === 9;\n\t\treturn {\n\t\t\telement: withinElement,\n\t\t\tisWindow: isWindow,\n\t\t\tisDocument: isDocument,\n\t\t\toffset: withinElement.offset() || { left: 0, top: 0 },\n\t\t\tscrollLeft: withinElement.scrollLeft(),\n\t\t\tscrollTop: withinElement.scrollTop(),\n\t\t\twidth: isWindow ? withinElement.width() : withinElement.outerWidth(),\n\t\t\theight: isWindow ? withinElement.height() : withinElement.outerHeight()\n\t\t};\n\t}\n};\n\n$.fn.position = function( options ) {\n\tif ( !options || !options.of ) {\n\t\treturn _position.apply( this, arguments );\n\t}\n\n\t// make a copy, we don't want to modify arguments\n\toptions = $.extend( {}, options );\n\n\tvar atOffset, targetWidth, targetHeight, targetOffset, basePosition, dimensions,\n\t\ttarget = $( options.of ),\n\t\twithin = $.position.getWithinInfo( options.within ),\n\t\tscrollInfo = $.position.getScrollInfo( within ),\n\t\tcollision = ( options.collision || \"flip\" ).split( \" \" ),\n\t\toffsets = {};\n\n\tdimensions = getDimensions( target );\n\tif ( target[0].preventDefault ) {\n\t\t// force left top to allow flipping\n\t\toptions.at = \"left top\";\n\t}\n\ttargetWidth = dimensions.width;\n\ttargetHeight = dimensions.height;\n\ttargetOffset = dimensions.offset;\n\t// clone to reuse original targetOffset later\n\tbasePosition = $.extend( {}, targetOffset );\n\n\t// force my and at to have valid horizontal and vertical positions\n\t// if a value is missing or invalid, it will be converted to center\n\t$.each( [ \"my\", \"at\" ], function() {\n\t\tvar pos = ( options[ this ] || \"\" ).split( \" \" ),\n\t\t\thorizontalOffset,\n\t\t\tverticalOffset;\n\n\t\tif ( pos.length === 1) {\n\t\t\tpos = rhorizontal.test( pos[ 0 ] ) ?\n\t\t\t\tpos.concat( [ \"center\" ] ) :\n\t\t\t\trvertical.test( pos[ 0 ] ) ?\n\t\t\t\t\t[ \"center\" ].concat( pos ) :\n\t\t\t\t\t[ \"center\", \"center\" ];\n\t\t}\n\t\tpos[ 0 ] = rhorizontal.test( pos[ 0 ] ) ? pos[ 0 ] : \"center\";\n\t\tpos[ 1 ] = rvertical.test( pos[ 1 ] ) ? pos[ 1 ] : \"center\";\n\n\t\t// calculate offsets\n\t\thorizontalOffset = roffset.exec( pos[ 0 ] );\n\t\tverticalOffset = roffset.exec( pos[ 1 ] );\n\t\toffsets[ this ] = [\n\t\t\thorizontalOffset ? horizontalOffset[ 0 ] : 0,\n\t\t\tverticalOffset ? verticalOffset[ 0 ] : 0\n\t\t];\n\n\t\t// reduce to just the positions without the offsets\n\t\toptions[ this ] = [\n\t\t\trposition.exec( pos[ 0 ] )[ 0 ],\n\t\t\trposition.exec( pos[ 1 ] )[ 0 ]\n\t\t];\n\t});\n\n\t// normalize collision option\n\tif ( collision.length === 1 ) {\n\t\tcollision[ 1 ] = collision[ 0 ];\n\t}\n\n\tif ( options.at[ 0 ] === \"right\" ) {\n\t\tbasePosition.left += targetWidth;\n\t} else if ( options.at[ 0 ] === \"center\" ) {\n\t\tbasePosition.left += targetWidth / 2;\n\t}\n\n\tif ( options.at[ 1 ] === \"bottom\" ) {\n\t\tbasePosition.top += targetHeight;\n\t} else if ( options.at[ 1 ] === \"center\" ) {\n\t\tbasePosition.top += targetHeight / 2;\n\t}\n\n\tatOffset = getOffsets( offsets.at, targetWidth, targetHeight );\n\tbasePosition.left += atOffset[ 0 ];\n\tbasePosition.top += atOffset[ 1 ];\n\n\treturn this.each(function() {\n\t\tvar collisionPosition, using,\n\t\t\telem = $( this ),\n\t\t\telemWidth = elem.outerWidth(),\n\t\t\telemHeight = elem.outerHeight(),\n\t\t\tmarginLeft = parseCss( this, \"marginLeft\" ),\n\t\t\tmarginTop = parseCss( this, \"marginTop\" ),\n\t\t\tcollisionWidth = elemWidth + marginLeft + parseCss( this, \"marginRight\" ) + scrollInfo.width,\n\t\t\tcollisionHeight = elemHeight + marginTop + parseCss( this, \"marginBottom\" ) + scrollInfo.height,\n\t\t\tposition = $.extend( {}, basePosition ),\n\t\t\tmyOffset = getOffsets( offsets.my, elem.outerWidth(), elem.outerHeight() );\n\n\t\tif ( options.my[ 0 ] === \"right\" ) {\n\t\t\tposition.left -= elemWidth;\n\t\t} else if ( options.my[ 0 ] === \"center\" ) {\n\t\t\tposition.left -= elemWidth / 2;\n\t\t}\n\n\t\tif ( options.my[ 1 ] === \"bottom\" ) {\n\t\t\tposition.top -= elemHeight;\n\t\t} else if ( options.my[ 1 ] === \"center\" ) {\n\t\t\tposition.top -= elemHeight / 2;\n\t\t}\n\n\t\tposition.left += myOffset[ 0 ];\n\t\tposition.top += myOffset[ 1 ];\n\n\t\t// if the browser doesn't support fractions, then round for consistent results\n\t\tif ( !$.support.offsetFractions ) {\n\t\t\tposition.left = round( position.left );\n\t\t\tposition.top = round( position.top );\n\t\t}\n\n\t\tcollisionPosition = {\n\t\t\tmarginLeft: marginLeft,\n\t\t\tmarginTop: marginTop\n\t\t};\n\n\t\t$.each( [ \"left\", \"top\" ], function( i, dir ) {\n\t\t\tif ( $.ui.position[ collision[ i ] ] ) {\n\t\t\t\t$.ui.position[ collision[ i ] ][ dir ]( position, {\n\t\t\t\t\ttargetWidth: targetWidth,\n\t\t\t\t\ttargetHeight: targetHeight,\n\t\t\t\t\telemWidth: elemWidth,\n\t\t\t\t\telemHeight: elemHeight,\n\t\t\t\t\tcollisionPosition: collisionPosition,\n\t\t\t\t\tcollisionWidth: collisionWidth,\n\t\t\t\t\tcollisionHeight: collisionHeight,\n\t\t\t\t\toffset: [ atOffset[ 0 ] + myOffset[ 0 ], atOffset [ 1 ] + myOffset[ 1 ] ],\n\t\t\t\t\tmy: options.my,\n\t\t\t\t\tat: options.at,\n\t\t\t\t\twithin: within,\n\t\t\t\t\telem : elem\n\t\t\t\t});\n\t\t\t}\n\t\t});\n\n\t\tif ( options.using ) {\n\t\t\t// adds feedback as second argument to using callback, if present\n\t\t\tusing = function( props ) {\n\t\t\t\tvar left = targetOffset.left - position.left,\n\t\t\t\t\tright = left + targetWidth - elemWidth,\n\t\t\t\t\ttop = targetOffset.top - position.top,\n\t\t\t\t\tbottom = top + targetHeight - elemHeight,\n\t\t\t\t\tfeedback = {\n\t\t\t\t\t\ttarget: {\n\t\t\t\t\t\t\telement: target,\n\t\t\t\t\t\t\tleft: targetOffset.left,\n\t\t\t\t\t\t\ttop: targetOffset.top,\n\t\t\t\t\t\t\twidth: targetWidth,\n\t\t\t\t\t\t\theight: targetHeight\n\t\t\t\t\t\t},\n\t\t\t\t\t\telement: {\n\t\t\t\t\t\t\telement: elem,\n\t\t\t\t\t\t\tleft: position.left,\n\t\t\t\t\t\t\ttop: position.top,\n\t\t\t\t\t\t\twidth: elemWidth,\n\t\t\t\t\t\t\theight: elemHeight\n\t\t\t\t\t\t},\n\t\t\t\t\t\thorizontal: right < 0 ? \"left\" : left > 0 ? \"right\" : \"center\",\n\t\t\t\t\t\tvertical: bottom < 0 ? \"top\" : top > 0 ? \"bottom\" : \"middle\"\n\t\t\t\t\t};\n\t\t\t\tif ( targetWidth < elemWidth && abs( left + right ) < targetWidth ) {\n\t\t\t\t\tfeedback.horizontal = \"center\";\n\t\t\t\t}\n\t\t\t\tif ( targetHeight < elemHeight && abs( top + bottom ) < targetHeight ) {\n\t\t\t\t\tfeedback.vertical = \"middle\";\n\t\t\t\t}\n\t\t\t\tif ( max( abs( left ), abs( right ) ) > max( abs( top ), abs( bottom ) ) ) {\n\t\t\t\t\tfeedback.important = \"horizontal\";\n\t\t\t\t} else {\n\t\t\t\t\tfeedback.important = \"vertical\";\n\t\t\t\t}\n\t\t\t\toptions.using.call( this, props, feedback );\n\t\t\t};\n\t\t}\n\n\t\telem.offset( $.extend( position, { using: using } ) );\n\t});\n};\n\n$.ui.position = {\n\tfit: {\n\t\tleft: function( position, data ) {\n\t\t\tvar within = data.within,\n\t\t\t\twithinOffset = within.isWindow ? within.scrollLeft : within.offset.left,\n\t\t\t\touterWidth = within.width,\n\t\t\t\tcollisionPosLeft = position.left - data.collisionPosition.marginLeft,\n\t\t\t\toverLeft = withinOffset - collisionPosLeft,\n\t\t\t\toverRight = collisionPosLeft + data.collisionWidth - outerWidth - withinOffset,\n\t\t\t\tnewOverRight;\n\n\t\t\t// element is wider than within\n\t\t\tif ( data.collisionWidth > outerWidth ) {\n\t\t\t\t// element is initially over the left side of within\n\t\t\t\tif ( overLeft > 0 && overRight <= 0 ) {\n\t\t\t\t\tnewOverRight = position.left + overLeft + data.collisionWidth - outerWidth - withinOffset;\n\t\t\t\t\tposition.left += overLeft - newOverRight;\n\t\t\t\t// element is initially over right side of within\n\t\t\t\t} else if ( overRight > 0 && overLeft <= 0 ) {\n\t\t\t\t\tposition.left = withinOffset;\n\t\t\t\t// element is initially over both left and right sides of within\n\t\t\t\t} else {\n\t\t\t\t\tif ( overLeft > overRight ) {\n\t\t\t\t\t\tposition.left = withinOffset + outerWidth - data.collisionWidth;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tposition.left = withinOffset;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t// too far left -> align with left edge\n\t\t\t} else if ( overLeft > 0 ) {\n\t\t\t\tposition.left += overLeft;\n\t\t\t// too far right -> align with right edge\n\t\t\t} else if ( overRight > 0 ) {\n\t\t\t\tposition.left -= overRight;\n\t\t\t// adjust based on position and margin\n\t\t\t} else {\n\t\t\t\tposition.left = max( position.left - collisionPosLeft, position.left );\n\t\t\t}\n\t\t},\n\t\ttop: function( position, data ) {\n\t\t\tvar within = data.within,\n\t\t\t\twithinOffset = within.isWindow ? within.scrollTop : within.offset.top,\n\t\t\t\touterHeight = data.within.height,\n\t\t\t\tcollisionPosTop = position.top - data.collisionPosition.marginTop,\n\t\t\t\toverTop = withinOffset - collisionPosTop,\n\t\t\t\toverBottom = collisionPosTop + data.collisionHeight - outerHeight - withinOffset,\n\t\t\t\tnewOverBottom;\n\n\t\t\t// element is taller than within\n\t\t\tif ( data.collisionHeight > outerHeight ) {\n\t\t\t\t// element is initially over the top of within\n\t\t\t\tif ( overTop > 0 && overBottom <= 0 ) {\n\t\t\t\t\tnewOverBottom = position.top + overTop + data.collisionHeight - outerHeight - withinOffset;\n\t\t\t\t\tposition.top += overTop - newOverBottom;\n\t\t\t\t// element is initially over bottom of within\n\t\t\t\t} else if ( overBottom > 0 && overTop <= 0 ) {\n\t\t\t\t\tposition.top = withinOffset;\n\t\t\t\t// element is initially over both top and bottom of within\n\t\t\t\t} else {\n\t\t\t\t\tif ( overTop > overBottom ) {\n\t\t\t\t\t\tposition.top = withinOffset + outerHeight - data.collisionHeight;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tposition.top = withinOffset;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t// too far up -> align with top\n\t\t\t} else if ( overTop > 0 ) {\n\t\t\t\tposition.top += overTop;\n\t\t\t// too far down -> align with bottom edge\n\t\t\t} else if ( overBottom > 0 ) {\n\t\t\t\tposition.top -= overBottom;\n\t\t\t// adjust based on position and margin\n\t\t\t} else {\n\t\t\t\tposition.top = max( position.top - collisionPosTop, position.top );\n\t\t\t}\n\t\t}\n\t},\n\tflip: {\n\t\tleft: function( position, data ) {\n\t\t\tvar within = data.within,\n\t\t\t\twithinOffset = within.offset.left + within.scrollLeft,\n\t\t\t\touterWidth = within.width,\n\t\t\t\toffsetLeft = within.isWindow ? within.scrollLeft : within.offset.left,\n\t\t\t\tcollisionPosLeft = position.left - data.collisionPosition.marginLeft,\n\t\t\t\toverLeft = collisionPosLeft - offsetLeft,\n\t\t\t\toverRight = collisionPosLeft + data.collisionWidth - outerWidth - offsetLeft,\n\t\t\t\tmyOffset = data.my[ 0 ] === \"left\" ?\n\t\t\t\t\t-data.elemWidth :\n\t\t\t\t\tdata.my[ 0 ] === \"right\" ?\n\t\t\t\t\t\tdata.elemWidth :\n\t\t\t\t\t\t0,\n\t\t\t\tatOffset = data.at[ 0 ] === \"left\" ?\n\t\t\t\t\tdata.targetWidth :\n\t\t\t\t\tdata.at[ 0 ] === \"right\" ?\n\t\t\t\t\t\t-data.targetWidth :\n\t\t\t\t\t\t0,\n\t\t\t\toffset = -2 * data.offset[ 0 ],\n\t\t\t\tnewOverRight,\n\t\t\t\tnewOverLeft;\n\n\t\t\tif ( overLeft < 0 ) {\n\t\t\t\tnewOverRight = position.left + myOffset + atOffset + offset + data.collisionWidth - outerWidth - withinOffset;\n\t\t\t\tif ( newOverRight < 0 || newOverRight < abs( overLeft ) ) {\n\t\t\t\t\tposition.left += myOffset + atOffset + offset;\n\t\t\t\t}\n\t\t\t}\n\t\t\telse if ( overRight > 0 ) {\n\t\t\t\tnewOverLeft = position.left - data.collisionPosition.marginLeft + myOffset + atOffset + offset - offsetLeft;\n\t\t\t\tif ( newOverLeft > 0 || abs( newOverLeft ) < overRight ) {\n\t\t\t\t\tposition.left += myOffset + atOffset + offset;\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\ttop: function( position, data ) {\n\t\t\tvar within = data.within,\n\t\t\t\twithinOffset = within.offset.top + within.scrollTop,\n\t\t\t\touterHeight = within.height,\n\t\t\t\toffsetTop = within.isWindow ? within.scrollTop : within.offset.top,\n\t\t\t\tcollisionPosTop = position.top - data.collisionPosition.marginTop,\n\t\t\t\toverTop = collisionPosTop - offsetTop,\n\t\t\t\toverBottom = collisionPosTop + data.collisionHeight - outerHeight - offsetTop,\n\t\t\t\ttop = data.my[ 1 ] === \"top\",\n\t\t\t\tmyOffset = top ?\n\t\t\t\t\t-data.elemHeight :\n\t\t\t\t\tdata.my[ 1 ] === \"bottom\" ?\n\t\t\t\t\t\tdata.elemHeight :\n\t\t\t\t\t\t0,\n\t\t\t\tatOffset = data.at[ 1 ] === \"top\" ?\n\t\t\t\t\tdata.targetHeight :\n\t\t\t\t\tdata.at[ 1 ] === \"bottom\" ?\n\t\t\t\t\t\t-data.targetHeight :\n\t\t\t\t\t\t0,\n\t\t\t\toffset = -2 * data.offset[ 1 ],\n\t\t\t\tnewOverTop,\n\t\t\t\tnewOverBottom;\n\t\t\tif ( overTop < 0 ) {\n\t\t\t\tnewOverBottom = position.top + myOffset + atOffset + offset + data.collisionHeight - outerHeight - withinOffset;\n\t\t\t\tif ( ( position.top + myOffset + atOffset + offset) > overTop && ( newOverBottom < 0 || newOverBottom < abs( overTop ) ) ) {\n\t\t\t\t\tposition.top += myOffset + atOffset + offset;\n\t\t\t\t}\n\t\t\t}\n\t\t\telse if ( overBottom > 0 ) {\n\t\t\t\tnewOverTop = position.top - data.collisionPosition.marginTop + myOffset + atOffset + offset - offsetTop;\n\t\t\t\tif ( ( position.top + myOffset + atOffset + offset) > overBottom && ( newOverTop > 0 || abs( newOverTop ) < overBottom ) ) {\n\t\t\t\t\tposition.top += myOffset + atOffset + offset;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\tflipfit: {\n\t\tleft: function() {\n\t\t\t$.ui.position.flip.left.apply( this, arguments );\n\t\t\t$.ui.position.fit.left.apply( this, arguments );\n\t\t},\n\t\ttop: function() {\n\t\t\t$.ui.position.flip.top.apply( this, arguments );\n\t\t\t$.ui.position.fit.top.apply( this, arguments );\n\t\t}\n\t}\n};\n\n// fraction support test\n(function () {\n\tvar testElement, testElementParent, testElementStyle, offsetLeft, i,\n\t\tbody = document.getElementsByTagName( \"body\" )[ 0 ],\n\t\tdiv = document.createElement( \"div\" );\n\n\t//Create a \"fake body\" for testing based on method used in jQuery.support\n\ttestElement = document.createElement( body ? \"div\" : \"body\" );\n\ttestElementStyle = {\n\t\tvisibility: \"hidden\",\n\t\twidth: 0,\n\t\theight: 0,\n\t\tborder: 0,\n\t\tmargin: 0,\n\t\tbackground: \"none\"\n\t};\n\tif ( body ) {\n\t\t$.extend( testElementStyle, {\n\t\t\tposition: \"absolute\",\n\t\t\tleft: \"-1000px\",\n\t\t\ttop: \"-1000px\"\n\t\t});\n\t}\n\tfor ( i in testElementStyle ) {\n\t\ttestElement.style[ i ] = testElementStyle[ i ];\n\t}\n\ttestElement.appendChild( div );\n\ttestElementParent = body || document.documentElement;\n\ttestElementParent.insertBefore( testElement, testElementParent.firstChild );\n\n\tdiv.style.cssText = \"position: absolute; left: 10.7432222px;\";\n\n\toffsetLeft = $( div ).offset().left;\n\t$.support.offsetFractions = offsetLeft > 10 && offsetLeft < 11;\n\n\ttestElement.innerHTML = \"\";\n\ttestElementParent.removeChild( testElement );\n})();\n\n}( jQuery ) );\n\n(function( $, undefined ) {\n\n$.widget( \"ui.progressbar\", {\n\tversion: \"1.10.4\",\n\toptions: {\n\t\tmax: 100,\n\t\tvalue: 0,\n\n\t\tchange: null,\n\t\tcomplete: null\n\t},\n\n\tmin: 0,\n\n\t_create: function() {\n\t\t// Constrain initial value\n\t\tthis.oldValue = this.options.value = this._constrainedValue();\n\n\t\tthis.element\n\t\t\t.addClass( \"ui-progressbar ui-widget ui-widget-content ui-corner-all\" )\n\t\t\t.attr({\n\t\t\t\t// Only set static values, aria-valuenow and aria-valuemax are\n\t\t\t\t// set inside _refreshValue()\n\t\t\t\trole: \"progressbar\",\n\t\t\t\t\"aria-valuemin\": this.min\n\t\t\t});\n\n\t\tthis.valueDiv = $( \"<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>\" )\n\t\t\t.appendTo( this.element );\n\n\t\tthis._refreshValue();\n\t},\n\n\t_destroy: function() {\n\t\tthis.element\n\t\t\t.removeClass( \"ui-progressbar ui-widget ui-widget-content ui-corner-all\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-valuemin\" )\n\t\t\t.removeAttr( \"aria-valuemax\" )\n\t\t\t.removeAttr( \"aria-valuenow\" );\n\n\t\tthis.valueDiv.remove();\n\t},\n\n\tvalue: function( newValue ) {\n\t\tif ( newValue === undefined ) {\n\t\t\treturn this.options.value;\n\t\t}\n\n\t\tthis.options.value = this._constrainedValue( newValue );\n\t\tthis._refreshValue();\n\t},\n\n\t_constrainedValue: function( newValue ) {\n\t\tif ( newValue === undefined ) {\n\t\t\tnewValue = this.options.value;\n\t\t}\n\n\t\tthis.indeterminate = newValue === false;\n\n\t\t// sanitize value\n\t\tif ( typeof newValue !== \"number\" ) {\n\t\t\tnewValue = 0;\n\t\t}\n\n\t\treturn this.indeterminate ? false :\n\t\t\tMath.min( this.options.max, Math.max( this.min, newValue ) );\n\t},\n\n\t_setOptions: function( options ) {\n\t\t// Ensure \"value\" option is set after other values (like max)\n\t\tvar value = options.value;\n\t\tdelete options.value;\n\n\t\tthis._super( options );\n\n\t\tthis.options.value = this._constrainedValue( value );\n\t\tthis._refreshValue();\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"max\" ) {\n\t\t\t// Don't allow a max less than min\n\t\t\tvalue = Math.max( this.min, value );\n\t\t}\n\n\t\tthis._super( key, value );\n\t},\n\n\t_percentage: function() {\n\t\treturn this.indeterminate ? 100 : 100 * ( this.options.value - this.min ) / ( this.options.max - this.min );\n\t},\n\n\t_refreshValue: function() {\n\t\tvar value = this.options.value,\n\t\t\tpercentage = this._percentage();\n\n\t\tthis.valueDiv\n\t\t\t.toggle( this.indeterminate || value > this.min )\n\t\t\t.toggleClass( \"ui-corner-right\", value === this.options.max )\n\t\t\t.width( percentage.toFixed(0) + \"%\" );\n\n\t\tthis.element.toggleClass( \"ui-progressbar-indeterminate\", this.indeterminate );\n\n\t\tif ( this.indeterminate ) {\n\t\t\tthis.element.removeAttr( \"aria-valuenow\" );\n\t\t\tif ( !this.overlayDiv ) {\n\t\t\t\tthis.overlayDiv = $( \"<div class='ui-progressbar-overlay'></div>\" ).appendTo( this.valueDiv );\n\t\t\t}\n\t\t} else {\n\t\t\tthis.element.attr({\n\t\t\t\t\"aria-valuemax\": this.options.max,\n\t\t\t\t\"aria-valuenow\": value\n\t\t\t});\n\t\t\tif ( this.overlayDiv ) {\n\t\t\t\tthis.overlayDiv.remove();\n\t\t\t\tthis.overlayDiv = null;\n\t\t\t}\n\t\t}\n\n\t\tif ( this.oldValue !== value ) {\n\t\t\tthis.oldValue = value;\n\t\t\tthis._trigger( \"change\" );\n\t\t}\n\t\tif ( value === this.options.max ) {\n\t\t\tthis._trigger( \"complete\" );\n\t\t}\n\t}\n});\n\n})( jQuery );\n\n(function( $, undefined ) {\n\n// number of pages in a slider\n// (how many times can you page up/down to go through the whole range)\nvar numPages = 5;\n\n$.widget( \"ui.slider\", $.ui.mouse, {\n\tversion: \"1.10.4\",\n\twidgetEventPrefix: \"slide\",\n\n\toptions: {\n\t\tanimate: false,\n\t\tdistance: 0,\n\t\tmax: 100,\n\t\tmin: 0,\n\t\torientation: \"horizontal\",\n\t\trange: false,\n\t\tstep: 1,\n\t\tvalue: 0,\n\t\tvalues: null,\n\n\t\t// callbacks\n\t\tchange: null,\n\t\tslide: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\n\t_create: function() {\n\t\tthis._keySliding = false;\n\t\tthis._mouseSliding = false;\n\t\tthis._animateOff = true;\n\t\tthis._handleIndex = null;\n\t\tthis._detectOrientation();\n\t\tthis._mouseInit();\n\n\t\tthis.element\n\t\t\t.addClass( \"ui-slider\" +\n\t\t\t\t\" ui-slider-\" + this.orientation +\n\t\t\t\t\" ui-widget\" +\n\t\t\t\t\" ui-widget-content\" +\n\t\t\t\t\" ui-corner-all\");\n\n\t\tthis._refresh();\n\t\tthis._setOption( \"disabled\", this.options.disabled );\n\n\t\tthis._animateOff = false;\n\t},\n\n\t_refresh: function() {\n\t\tthis._createRange();\n\t\tthis._createHandles();\n\t\tthis._setupEvents();\n\t\tthis._refreshValue();\n\t},\n\n\t_createHandles: function() {\n\t\tvar i, handleCount,\n\t\t\toptions = this.options,\n\t\t\texistingHandles = this.element.find( \".ui-slider-handle\" ).addClass( \"ui-state-default ui-corner-all\" ),\n\t\t\thandle = \"<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>\",\n\t\t\thandles = [];\n\n\t\thandleCount = ( options.values && options.values.length ) || 1;\n\n\t\tif ( existingHandles.length > handleCount ) {\n\t\t\texistingHandles.slice( handleCount ).remove();\n\t\t\texistingHandles = existingHandles.slice( 0, handleCount );\n\t\t}\n\n\t\tfor ( i = existingHandles.length; i < handleCount; i++ ) {\n\t\t\thandles.push( handle );\n\t\t}\n\n\t\tthis.handles = existingHandles.add( $( handles.join( \"\" ) ).appendTo( this.element ) );\n\n\t\tthis.handle = this.handles.eq( 0 );\n\n\t\tthis.handles.each(function( i ) {\n\t\t\t$( this ).data( \"ui-slider-handle-index\", i );\n\t\t});\n\t},\n\n\t_createRange: function() {\n\t\tvar options = this.options,\n\t\t\tclasses = \"\";\n\n\t\tif ( options.range ) {\n\t\t\tif ( options.range === true ) {\n\t\t\t\tif ( !options.values ) {\n\t\t\t\t\toptions.values = [ this._valueMin(), this._valueMin() ];\n\t\t\t\t} else if ( options.values.length && options.values.length !== 2 ) {\n\t\t\t\t\toptions.values = [ options.values[0], options.values[0] ];\n\t\t\t\t} else if ( $.isArray( options.values ) ) {\n\t\t\t\t\toptions.values = options.values.slice(0);\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( !this.range || !this.range.length ) {\n\t\t\t\tthis.range = $( \"<div></div>\" )\n\t\t\t\t\t.appendTo( this.element );\n\n\t\t\t\tclasses = \"ui-slider-range\" +\n\t\t\t\t// note: this isn't the most fittingly semantic framework class for this element,\n\t\t\t\t// but worked best visually with a variety of themes\n\t\t\t\t\" ui-widget-header ui-corner-all\";\n\t\t\t} else {\n\t\t\t\tthis.range.removeClass( \"ui-slider-range-min ui-slider-range-max\" )\n\t\t\t\t\t// Handle range switching from true to min/max\n\t\t\t\t\t.css({\n\t\t\t\t\t\t\"left\": \"\",\n\t\t\t\t\t\t\"bottom\": \"\"\n\t\t\t\t\t});\n\t\t\t}\n\n\t\t\tthis.range.addClass( classes +\n\t\t\t\t( ( options.range === \"min\" || options.range === \"max\" ) ? \" ui-slider-range-\" + options.range : \"\" ) );\n\t\t} else {\n\t\t\tif ( this.range ) {\n\t\t\t\tthis.range.remove();\n\t\t\t}\n\t\t\tthis.range = null;\n\t\t}\n\t},\n\n\t_setupEvents: function() {\n\t\tvar elements = this.handles.add( this.range ).filter( \"a\" );\n\t\tthis._off( elements );\n\t\tthis._on( elements, this._handleEvents );\n\t\tthis._hoverable( elements );\n\t\tthis._focusable( elements );\n\t},\n\n\t_destroy: function() {\n\t\tthis.handles.remove();\n\t\tif ( this.range ) {\n\t\t\tthis.range.remove();\n\t\t}\n\n\t\tthis.element\n\t\t\t.removeClass( \"ui-slider\" +\n\t\t\t\t\" ui-slider-horizontal\" +\n\t\t\t\t\" ui-slider-vertical\" +\n\t\t\t\t\" ui-widget\" +\n\t\t\t\t\" ui-widget-content\" +\n\t\t\t\t\" ui-corner-all\" );\n\n\t\tthis._mouseDestroy();\n\t},\n\n\t_mouseCapture: function( event ) {\n\t\tvar position, normValue, distance, closestHandle, index, allowed, offset, mouseOverHandle,\n\t\t\tthat = this,\n\t\t\to = this.options;\n\n\t\tif ( o.disabled ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthis.elementSize = {\n\t\t\twidth: this.element.outerWidth(),\n\t\t\theight: this.element.outerHeight()\n\t\t};\n\t\tthis.elementOffset = this.element.offset();\n\n\t\tposition = { x: event.pageX, y: event.pageY };\n\t\tnormValue = this._normValueFromMouse( position );\n\t\tdistance = this._valueMax() - this._valueMin() + 1;\n\t\tthis.handles.each(function( i ) {\n\t\t\tvar thisDistance = Math.abs( normValue - that.values(i) );\n\t\t\tif (( distance > thisDistance ) ||\n\t\t\t\t( distance === thisDistance &&\n\t\t\t\t\t(i === that._lastChangedValue || that.values(i) === o.min ))) {\n\t\t\t\tdistance = thisDistance;\n\t\t\t\tclosestHandle = $( this );\n\t\t\t\tindex = i;\n\t\t\t}\n\t\t});\n\n\t\tallowed = this._start( event, index );\n\t\tif ( allowed === false ) {\n\t\t\treturn false;\n\t\t}\n\t\tthis._mouseSliding = true;\n\n\t\tthis._handleIndex = index;\n\n\t\tclosestHandle\n\t\t\t.addClass( \"ui-state-active\" )\n\t\t\t.focus();\n\n\t\toffset = closestHandle.offset();\n\t\tmouseOverHandle = !$( event.target ).parents().addBack().is( \".ui-slider-handle\" );\n\t\tthis._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : {\n\t\t\tleft: event.pageX - offset.left - ( closestHandle.width() / 2 ),\n\t\t\ttop: event.pageY - offset.top -\n\t\t\t\t( closestHandle.height() / 2 ) -\n\t\t\t\t( parseInt( closestHandle.css(\"borderTopWidth\"), 10 ) || 0 ) -\n\t\t\t\t( parseInt( closestHandle.css(\"borderBottomWidth\"), 10 ) || 0) +\n\t\t\t\t( parseInt( closestHandle.css(\"marginTop\"), 10 ) || 0)\n\t\t};\n\n\t\tif ( !this.handles.hasClass( \"ui-state-hover\" ) ) {\n\t\t\tthis._slide( event, index, normValue );\n\t\t}\n\t\tthis._animateOff = true;\n\t\treturn true;\n\t},\n\n\t_mouseStart: function() {\n\t\treturn true;\n\t},\n\n\t_mouseDrag: function( event ) {\n\t\tvar position = { x: event.pageX, y: event.pageY },\n\t\t\tnormValue = this._normValueFromMouse( position );\n\n\t\tthis._slide( event, this._handleIndex, normValue );\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function( event ) {\n\t\tthis.handles.removeClass( \"ui-state-active\" );\n\t\tthis._mouseSliding = false;\n\n\t\tthis._stop( event, this._handleIndex );\n\t\tthis._change( event, this._handleIndex );\n\n\t\tthis._handleIndex = null;\n\t\tthis._clickOffset = null;\n\t\tthis._animateOff = false;\n\n\t\treturn false;\n\t},\n\n\t_detectOrientation: function() {\n\t\tthis.orientation = ( this.options.orientation === \"vertical\" ) ? \"vertical\" : \"horizontal\";\n\t},\n\n\t_normValueFromMouse: function( position ) {\n\t\tvar pixelTotal,\n\t\t\tpixelMouse,\n\t\t\tpercentMouse,\n\t\t\tvalueTotal,\n\t\t\tvalueMouse;\n\n\t\tif ( this.orientation === \"horizontal\" ) {\n\t\t\tpixelTotal = this.elementSize.width;\n\t\t\tpixelMouse = position.x - this.elementOffset.left - ( this._clickOffset ? this._clickOffset.left : 0 );\n\t\t} else {\n\t\t\tpixelTotal = this.elementSize.height;\n\t\t\tpixelMouse = position.y - this.elementOffset.top - ( this._clickOffset ? this._clickOffset.top : 0 );\n\t\t}\n\n\t\tpercentMouse = ( pixelMouse / pixelTotal );\n\t\tif ( percentMouse > 1 ) {\n\t\t\tpercentMouse = 1;\n\t\t}\n\t\tif ( percentMouse < 0 ) {\n\t\t\tpercentMouse = 0;\n\t\t}\n\t\tif ( this.orientation === \"vertical\" ) {\n\t\t\tpercentMouse = 1 - percentMouse;\n\t\t}\n\n\t\tvalueTotal = this._valueMax() - this._valueMin();\n\t\tvalueMouse = this._valueMin() + percentMouse * valueTotal;\n\n\t\treturn this._trimAlignValue( valueMouse );\n\t},\n\n\t_start: function( event, index ) {\n\t\tvar uiHash = {\n\t\t\thandle: this.handles[ index ],\n\t\t\tvalue: this.value()\n\t\t};\n\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\tuiHash.value = this.values( index );\n\t\t\tuiHash.values = this.values();\n\t\t}\n\t\treturn this._trigger( \"start\", event, uiHash );\n\t},\n\n\t_slide: function( event, index, newVal ) {\n\t\tvar otherVal,\n\t\t\tnewValues,\n\t\t\tallowed;\n\n\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\totherVal = this.values( index ? 0 : 1 );\n\n\t\t\tif ( ( this.options.values.length === 2 && this.options.range === true ) &&\n\t\t\t\t\t( ( index === 0 && newVal > otherVal) || ( index === 1 && newVal < otherVal ) )\n\t\t\t\t) {\n\t\t\t\tnewVal = otherVal;\n\t\t\t}\n\n\t\t\tif ( newVal !== this.values( index ) ) {\n\t\t\t\tnewValues = this.values();\n\t\t\t\tnewValues[ index ] = newVal;\n\t\t\t\t// A slide can be canceled by returning false from the slide callback\n\t\t\t\tallowed = this._trigger( \"slide\", event, {\n\t\t\t\t\thandle: this.handles[ index ],\n\t\t\t\t\tvalue: newVal,\n\t\t\t\t\tvalues: newValues\n\t\t\t\t} );\n\t\t\t\totherVal = this.values( index ? 0 : 1 );\n\t\t\t\tif ( allowed !== false ) {\n\t\t\t\t\tthis.values( index, newVal );\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tif ( newVal !== this.value() ) {\n\t\t\t\t// A slide can be canceled by returning false from the slide callback\n\t\t\t\tallowed = this._trigger( \"slide\", event, {\n\t\t\t\t\thandle: this.handles[ index ],\n\t\t\t\t\tvalue: newVal\n\t\t\t\t} );\n\t\t\t\tif ( allowed !== false ) {\n\t\t\t\t\tthis.value( newVal );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t_stop: function( event, index ) {\n\t\tvar uiHash = {\n\t\t\thandle: this.handles[ index ],\n\t\t\tvalue: this.value()\n\t\t};\n\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\tuiHash.value = this.values( index );\n\t\t\tuiHash.values = this.values();\n\t\t}\n\n\t\tthis._trigger( \"stop\", event, uiHash );\n\t},\n\n\t_change: function( event, index ) {\n\t\tif ( !this._keySliding && !this._mouseSliding ) {\n\t\t\tvar uiHash = {\n\t\t\t\thandle: this.handles[ index ],\n\t\t\t\tvalue: this.value()\n\t\t\t};\n\t\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\t\tuiHash.value = this.values( index );\n\t\t\t\tuiHash.values = this.values();\n\t\t\t}\n\n\t\t\t//store the last changed value index for reference when handles overlap\n\t\t\tthis._lastChangedValue = index;\n\n\t\t\tthis._trigger( \"change\", event, uiHash );\n\t\t}\n\t},\n\n\tvalue: function( newValue ) {\n\t\tif ( arguments.length ) {\n\t\t\tthis.options.value = this._trimAlignValue( newValue );\n\t\t\tthis._refreshValue();\n\t\t\tthis._change( null, 0 );\n\t\t\treturn;\n\t\t}\n\n\t\treturn this._value();\n\t},\n\n\tvalues: function( index, newValue ) {\n\t\tvar vals,\n\t\t\tnewValues,\n\t\t\ti;\n\n\t\tif ( arguments.length > 1 ) {\n\t\t\tthis.options.values[ index ] = this._trimAlignValue( newValue );\n\t\t\tthis._refreshValue();\n\t\t\tthis._change( null, index );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( arguments.length ) {\n\t\t\tif ( $.isArray( arguments[ 0 ] ) ) {\n\t\t\t\tvals = this.options.values;\n\t\t\t\tnewValues = arguments[ 0 ];\n\t\t\t\tfor ( i = 0; i < vals.length; i += 1 ) {\n\t\t\t\t\tvals[ i ] = this._trimAlignValue( newValues[ i ] );\n\t\t\t\t\tthis._change( null, i );\n\t\t\t\t}\n\t\t\t\tthis._refreshValue();\n\t\t\t} else {\n\t\t\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\t\t\treturn this._values( index );\n\t\t\t\t} else {\n\t\t\t\t\treturn this.value();\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\treturn this._values();\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tvar i,\n\t\t\tvalsLength = 0;\n\n\t\tif ( key === \"range\" && this.options.range === true ) {\n\t\t\tif ( value === \"min\" ) {\n\t\t\t\tthis.options.value = this._values( 0 );\n\t\t\t\tthis.options.values = null;\n\t\t\t} else if ( value === \"max\" ) {\n\t\t\t\tthis.options.value = this._values( this.options.values.length-1 );\n\t\t\t\tthis.options.values = null;\n\t\t\t}\n\t\t}\n\n\t\tif ( $.isArray( this.options.values ) ) {\n\t\t\tvalsLength = this.options.values.length;\n\t\t}\n\n\t\t$.Widget.prototype._setOption.apply( this, arguments );\n\n\t\tswitch ( key ) {\n\t\t\tcase \"orientation\":\n\t\t\t\tthis._detectOrientation();\n\t\t\t\tthis.element\n\t\t\t\t\t.removeClass( \"ui-slider-horizontal ui-slider-vertical\" )\n\t\t\t\t\t.addClass( \"ui-slider-\" + this.orientation );\n\t\t\t\tthis._refreshValue();\n\t\t\t\tbreak;\n\t\t\tcase \"value\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refreshValue();\n\t\t\t\tthis._change( null, 0 );\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"values\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refreshValue();\n\t\t\t\tfor ( i = 0; i < valsLength; i += 1 ) {\n\t\t\t\t\tthis._change( null, i );\n\t\t\t\t}\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"min\":\n\t\t\tcase \"max\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refreshValue();\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"range\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refresh();\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t}\n\t},\n\n\t//internal value getter\n\t// _value() returns value trimmed by min and max, aligned by step\n\t_value: function() {\n\t\tvar val = this.options.value;\n\t\tval = this._trimAlignValue( val );\n\n\t\treturn val;\n\t},\n\n\t//internal values getter\n\t// _values() returns array of values trimmed by min and max, aligned by step\n\t// _values( index ) returns single value trimmed by min and max, aligned by step\n\t_values: function( index ) {\n\t\tvar val,\n\t\t\tvals,\n\t\t\ti;\n\n\t\tif ( arguments.length ) {\n\t\t\tval = this.options.values[ index ];\n\t\t\tval = this._trimAlignValue( val );\n\n\t\t\treturn val;\n\t\t} else if ( this.options.values && this.options.values.length ) {\n\t\t\t// .slice() creates a copy of the array\n\t\t\t// this copy gets trimmed by min and max and then returned\n\t\t\tvals = this.options.values.slice();\n\t\t\tfor ( i = 0; i < vals.length; i+= 1) {\n\t\t\t\tvals[ i ] = this._trimAlignValue( vals[ i ] );\n\t\t\t}\n\n\t\t\treturn vals;\n\t\t} else {\n\t\t\treturn [];\n\t\t}\n\t},\n\n\t// returns the step-aligned value that val is closest to, between (inclusive) min and max\n\t_trimAlignValue: function( val ) {\n\t\tif ( val <= this._valueMin() ) {\n\t\t\treturn this._valueMin();\n\t\t}\n\t\tif ( val >= this._valueMax() ) {\n\t\t\treturn this._valueMax();\n\t\t}\n\t\tvar step = ( this.options.step > 0 ) ? this.options.step : 1,\n\t\t\tvalModStep = (val - this._valueMin()) % step,\n\t\t\talignValue = val - valModStep;\n\n\t\tif ( Math.abs(valModStep) * 2 >= step ) {\n\t\t\talignValue += ( valModStep > 0 ) ? step : ( -step );\n\t\t}\n\n\t\t// Since JavaScript has problems with large floats, round\n\t\t// the final value to 5 digits after the decimal point (see #4124)\n\t\treturn parseFloat( alignValue.toFixed(5) );\n\t},\n\n\t_valueMin: function() {\n\t\treturn this.options.min;\n\t},\n\n\t_valueMax: function() {\n\t\treturn this.options.max;\n\t},\n\n\t_refreshValue: function() {\n\t\tvar lastValPercent, valPercent, value, valueMin, valueMax,\n\t\t\toRange = this.options.range,\n\t\t\to = this.options,\n\t\t\tthat = this,\n\t\t\tanimate = ( !this._animateOff ) ? o.animate : false,\n\t\t\t_set = {};\n\n\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\tthis.handles.each(function( i ) {\n\t\t\t\tvalPercent = ( that.values(i) - that._valueMin() ) / ( that._valueMax() - that._valueMin() ) * 100;\n\t\t\t\t_set[ that.orientation === \"horizontal\" ? \"left\" : \"bottom\" ] = valPercent + \"%\";\n\t\t\t\t$( this ).stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( _set, o.animate );\n\t\t\t\tif ( that.options.range === true ) {\n\t\t\t\t\tif ( that.orientation === \"horizontal\" ) {\n\t\t\t\t\t\tif ( i === 0 ) {\n\t\t\t\t\t\t\tthat.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( { left: valPercent + \"%\" }, o.animate );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( i === 1 ) {\n\t\t\t\t\t\t\tthat.range[ animate ? \"animate\" : \"css\" ]( { width: ( valPercent - lastValPercent ) + \"%\" }, { queue: false, duration: o.animate } );\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif ( i === 0 ) {\n\t\t\t\t\t\t\tthat.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( { bottom: ( valPercent ) + \"%\" }, o.animate );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( i === 1 ) {\n\t\t\t\t\t\t\tthat.range[ animate ? \"animate\" : \"css\" ]( { height: ( valPercent - lastValPercent ) + \"%\" }, { queue: false, duration: o.animate } );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tlastValPercent = valPercent;\n\t\t\t});\n\t\t} else {\n\t\t\tvalue = this.value();\n\t\t\tvalueMin = this._valueMin();\n\t\t\tvalueMax = this._valueMax();\n\t\t\tvalPercent = ( valueMax !== valueMin ) ?\n\t\t\t\t\t( value - valueMin ) / ( valueMax - valueMin ) * 100 :\n\t\t\t\t\t0;\n\t\t\t_set[ this.orientation === \"horizontal\" ? \"left\" : \"bottom\" ] = valPercent + \"%\";\n\t\t\tthis.handle.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( _set, o.animate );\n\n\t\t\tif ( oRange === \"min\" && this.orientation === \"horizontal\" ) {\n\t\t\t\tthis.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( { width: valPercent + \"%\" }, o.animate );\n\t\t\t}\n\t\t\tif ( oRange === \"max\" && this.orientation === \"horizontal\" ) {\n\t\t\t\tthis.range[ animate ? \"animate\" : \"css\" ]( { width: ( 100 - valPercent ) + \"%\" }, { queue: false, duration: o.animate } );\n\t\t\t}\n\t\t\tif ( oRange === \"min\" && this.orientation === \"vertical\" ) {\n\t\t\t\tthis.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( { height: valPercent + \"%\" }, o.animate );\n\t\t\t}\n\t\t\tif ( oRange === \"max\" && this.orientation === \"vertical\" ) {\n\t\t\t\tthis.range[ animate ? \"animate\" : \"css\" ]( { height: ( 100 - valPercent ) + \"%\" }, { queue: false, duration: o.animate } );\n\t\t\t}\n\t\t}\n\t},\n\n\t_handleEvents: {\n\t\tkeydown: function( event ) {\n\t\t\tvar allowed, curVal, newVal, step,\n\t\t\t\tindex = $( event.target ).data( \"ui-slider-handle-index\" );\n\n\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\tcase $.ui.keyCode.END:\n\t\t\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\t\tcase $.ui.keyCode.UP:\n\t\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tif ( !this._keySliding ) {\n\t\t\t\t\t\tthis._keySliding = true;\n\t\t\t\t\t\t$( event.target ).addClass( \"ui-state-active\" );\n\t\t\t\t\t\tallowed = this._start( event, index );\n\t\t\t\t\t\tif ( allowed === false ) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tstep = this.options.step;\n\t\t\tif ( this.options.values && this.options.values.length ) {\n\t\t\t\tcurVal = newVal = this.values( index );\n\t\t\t} else {\n\t\t\t\tcurVal = newVal = this.value();\n\t\t\t}\n\n\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\t\tnewVal = this._valueMin();\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.END:\n\t\t\t\t\tnewVal = this._valueMax();\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\t\t\tnewVal = this._trimAlignValue( curVal + ( (this._valueMax() - this._valueMin()) / numPages ) );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\t\t\tnewVal = this._trimAlignValue( curVal - ( (this._valueMax() - this._valueMin()) / numPages ) );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.UP:\n\t\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\t\t\tif ( curVal === this._valueMax() ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tnewVal = this._trimAlignValue( curVal + step );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\t\tif ( curVal === this._valueMin() ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tnewVal = this._trimAlignValue( curVal - step );\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tthis._slide( event, index, newVal );\n\t\t},\n\t\tclick: function( event ) {\n\t\t\tevent.preventDefault();\n\t\t},\n\t\tkeyup: function( event ) {\n\t\t\tvar index = $( event.target ).data( \"ui-slider-handle-index\" );\n\n\t\t\tif ( this._keySliding ) {\n\t\t\t\tthis._keySliding = false;\n\t\t\t\tthis._stop( event, index );\n\t\t\t\tthis._change( event, index );\n\t\t\t\t$( event.target ).removeClass( \"ui-state-active\" );\n\t\t\t}\n\t\t}\n\t}\n\n});\n\n}(jQuery));\n\n(function( $ ) {\n\nfunction modifier( fn ) {\n\treturn function() {\n\t\tvar previous = this.element.val();\n\t\tfn.apply( this, arguments );\n\t\tthis._refresh();\n\t\tif ( previous !== this.element.val() ) {\n\t\t\tthis._trigger( \"change\" );\n\t\t}\n\t};\n}\n\n$.widget( \"ui.spinner\", {\n\tversion: \"1.10.4\",\n\tdefaultElement: \"<input>\",\n\twidgetEventPrefix: \"spin\",\n\toptions: {\n\t\tculture: null,\n\t\ticons: {\n\t\t\tdown: \"ui-icon-triangle-1-s\",\n\t\t\tup: \"ui-icon-triangle-1-n\"\n\t\t},\n\t\tincremental: true,\n\t\tmax: null,\n\t\tmin: null,\n\t\tnumberFormat: null,\n\t\tpage: 10,\n\t\tstep: 1,\n\n\t\tchange: null,\n\t\tspin: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\n\t_create: function() {\n\t\t// handle string values that need to be parsed\n\t\tthis._setOption( \"max\", this.options.max );\n\t\tthis._setOption( \"min\", this.options.min );\n\t\tthis._setOption( \"step\", this.options.step );\n\n\t\t// Only format if there is a value, prevents the field from being marked\n\t\t// as invalid in Firefox, see #9573.\n\t\tif ( this.value() !== \"\" ) {\n\t\t\t// Format the value, but don't constrain.\n\t\t\tthis._value( this.element.val(), true );\n\t\t}\n\n\t\tthis._draw();\n\t\tthis._on( this._events );\n\t\tthis._refresh();\n\n\t\t// turning off autocomplete prevents the browser from remembering the\n\t\t// value when navigating through history, so we re-enable autocomplete\n\t\t// if the page is unloaded before the widget is destroyed. #7790\n\t\tthis._on( this.window, {\n\t\t\tbeforeunload: function() {\n\t\t\t\tthis.element.removeAttr( \"autocomplete\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_getCreateOptions: function() {\n\t\tvar options = {},\n\t\t\telement = this.element;\n\n\t\t$.each( [ \"min\", \"max\", \"step\" ], function( i, option ) {\n\t\t\tvar value = element.attr( option );\n\t\t\tif ( value !== undefined && value.length ) {\n\t\t\t\toptions[ option ] = value;\n\t\t\t}\n\t\t});\n\n\t\treturn options;\n\t},\n\n\t_events: {\n\t\tkeydown: function( event ) {\n\t\t\tif ( this._start( event ) && this._keydown( event ) ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t},\n\t\tkeyup: \"_stop\",\n\t\tfocus: function() {\n\t\t\tthis.previous = this.element.val();\n\t\t},\n\t\tblur: function( event ) {\n\t\t\tif ( this.cancelBlur ) {\n\t\t\t\tdelete this.cancelBlur;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis._stop();\n\t\t\tthis._refresh();\n\t\t\tif ( this.previous !== this.element.val() ) {\n\t\t\t\tthis._trigger( \"change\", event );\n\t\t\t}\n\t\t},\n\t\tmousewheel: function( event, delta ) {\n\t\t\tif ( !delta ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif ( !this.spinning && !this._start( event ) ) {\n\t\t\t\treturn false;\n\t\t\t}\n\n\t\t\tthis._spin( (delta > 0 ? 1 : -1) * this.options.step, event );\n\t\t\tclearTimeout( this.mousewheelTimer );\n\t\t\tthis.mousewheelTimer = this._delay(function() {\n\t\t\t\tif ( this.spinning ) {\n\t\t\t\t\tthis._stop( event );\n\t\t\t\t}\n\t\t\t}, 100 );\n\t\t\tevent.preventDefault();\n\t\t},\n\t\t\"mousedown .ui-spinner-button\": function( event ) {\n\t\t\tvar previous;\n\n\t\t\t// We never want the buttons to have focus; whenever the user is\n\t\t\t// interacting with the spinner, the focus should be on the input.\n\t\t\t// If the input is focused then this.previous is properly set from\n\t\t\t// when the input first received focus. If the input is not focused\n\t\t\t// then we need to set this.previous based on the value before spinning.\n\t\t\tprevious = this.element[0] === this.document[0].activeElement ?\n\t\t\t\tthis.previous : this.element.val();\n\t\t\tfunction checkFocus() {\n\t\t\t\tvar isActive = this.element[0] === this.document[0].activeElement;\n\t\t\t\tif ( !isActive ) {\n\t\t\t\t\tthis.element.focus();\n\t\t\t\t\tthis.previous = previous;\n\t\t\t\t\t// support: IE\n\t\t\t\t\t// IE sets focus asynchronously, so we need to check if focus\n\t\t\t\t\t// moved off of the input because the user clicked on the button.\n\t\t\t\t\tthis._delay(function() {\n\t\t\t\t\t\tthis.previous = previous;\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// ensure focus is on (or stays on) the text field\n\t\t\tevent.preventDefault();\n\t\t\tcheckFocus.call( this );\n\n\t\t\t// support: IE\n\t\t\t// IE doesn't prevent moving focus even with event.preventDefault()\n\t\t\t// so we set a flag to know when we should ignore the blur event\n\t\t\t// and check (again) if focus moved off of the input.\n\t\t\tthis.cancelBlur = true;\n\t\t\tthis._delay(function() {\n\t\t\t\tdelete this.cancelBlur;\n\t\t\t\tcheckFocus.call( this );\n\t\t\t});\n\n\t\t\tif ( this._start( event ) === false ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tthis._repeat( null, $( event.currentTarget ).hasClass( \"ui-spinner-up\" ) ? 1 : -1, event );\n\t\t},\n\t\t\"mouseup .ui-spinner-button\": \"_stop\",\n\t\t\"mouseenter .ui-spinner-button\": function( event ) {\n\t\t\t// button will add ui-state-active if mouse was down while mouseleave and kept down\n\t\t\tif ( !$( event.currentTarget ).hasClass( \"ui-state-active\" ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( this._start( event ) === false ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tthis._repeat( null, $( event.currentTarget ).hasClass( \"ui-spinner-up\" ) ? 1 : -1, event );\n\t\t},\n\t\t// TODO: do we really want to consider this a stop?\n\t\t// shouldn't we just stop the repeater and wait until mouseup before\n\t\t// we trigger the stop event?\n\t\t\"mouseleave .ui-spinner-button\": \"_stop\"\n\t},\n\n\t_draw: function() {\n\t\tvar uiSpinner = this.uiSpinner = this.element\n\t\t\t.addClass( \"ui-spinner-input\" )\n\t\t\t.attr( \"autocomplete\", \"off\" )\n\t\t\t.wrap( this._uiSpinnerHtml() )\n\t\t\t.parent()\n\t\t\t\t// add buttons\n\t\t\t\t.append( this._buttonHtml() );\n\n\t\tthis.element.attr( \"role\", \"spinbutton\" );\n\n\t\t// button bindings\n\t\tthis.buttons = uiSpinner.find( \".ui-spinner-button\" )\n\t\t\t.attr( \"tabIndex\", -1 )\n\t\t\t.button()\n\t\t\t.removeClass( \"ui-corner-all\" );\n\n\t\t// IE 6 doesn't understand height: 50% for the buttons\n\t\t// unless the wrapper has an explicit height\n\t\tif ( this.buttons.height() > Math.ceil( uiSpinner.height() * 0.5 ) &&\n\t\t\t\tuiSpinner.height() > 0 ) {\n\t\t\tuiSpinner.height( uiSpinner.height() );\n\t\t}\n\n\t\t// disable spinner if element was already disabled\n\t\tif ( this.options.disabled ) {\n\t\t\tthis.disable();\n\t\t}\n\t},\n\n\t_keydown: function( event ) {\n\t\tvar options = this.options,\n\t\t\tkeyCode = $.ui.keyCode;\n\n\t\tswitch ( event.keyCode ) {\n\t\tcase keyCode.UP:\n\t\t\tthis._repeat( null, 1, event );\n\t\t\treturn true;\n\t\tcase keyCode.DOWN:\n\t\t\tthis._repeat( null, -1, event );\n\t\t\treturn true;\n\t\tcase keyCode.PAGE_UP:\n\t\t\tthis._repeat( null, options.page, event );\n\t\t\treturn true;\n\t\tcase keyCode.PAGE_DOWN:\n\t\t\tthis._repeat( null, -options.page, event );\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t},\n\n\t_uiSpinnerHtml: function() {\n\t\treturn \"<span class='ui-spinner ui-widget ui-widget-content ui-corner-all'></span>\";\n\t},\n\n\t_buttonHtml: function() {\n\t\treturn \"\" +\n\t\t\t\"<a class='ui-spinner-button ui-spinner-up ui-corner-tr'>\" +\n\t\t\t\t\"<span class='ui-icon \" + this.options.icons.up + \"'>&#9650;</span>\" +\n\t\t\t\"</a>\" +\n\t\t\t\"<a class='ui-spinner-button ui-spinner-down ui-corner-br'>\" +\n\t\t\t\t\"<span class='ui-icon \" + this.options.icons.down + \"'>&#9660;</span>\" +\n\t\t\t\"</a>\";\n\t},\n\n\t_start: function( event ) {\n\t\tif ( !this.spinning && this._trigger( \"start\", event ) === false ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif ( !this.counter ) {\n\t\t\tthis.counter = 1;\n\t\t}\n\t\tthis.spinning = true;\n\t\treturn true;\n\t},\n\n\t_repeat: function( i, steps, event ) {\n\t\ti = i || 500;\n\n\t\tclearTimeout( this.timer );\n\t\tthis.timer = this._delay(function() {\n\t\t\tthis._repeat( 40, steps, event );\n\t\t}, i );\n\n\t\tthis._spin( steps * this.options.step, event );\n\t},\n\n\t_spin: function( step, event ) {\n\t\tvar value = this.value() || 0;\n\n\t\tif ( !this.counter ) {\n\t\t\tthis.counter = 1;\n\t\t}\n\n\t\tvalue = this._adjustValue( value + step * this._increment( this.counter ) );\n\n\t\tif ( !this.spinning || this._trigger( \"spin\", event, { value: value } ) !== false) {\n\t\t\tthis._value( value );\n\t\t\tthis.counter++;\n\t\t}\n\t},\n\n\t_increment: function( i ) {\n\t\tvar incremental = this.options.incremental;\n\n\t\tif ( incremental ) {\n\t\t\treturn $.isFunction( incremental ) ?\n\t\t\t\tincremental( i ) :\n\t\t\t\tMath.floor( i*i*i/50000 - i*i/500 + 17*i/200 + 1 );\n\t\t}\n\n\t\treturn 1;\n\t},\n\n\t_precision: function() {\n\t\tvar precision = this._precisionOf( this.options.step );\n\t\tif ( this.options.min !== null ) {\n\t\t\tprecision = Math.max( precision, this._precisionOf( this.options.min ) );\n\t\t}\n\t\treturn precision;\n\t},\n\n\t_precisionOf: function( num ) {\n\t\tvar str = num.toString(),\n\t\t\tdecimal = str.indexOf( \".\" );\n\t\treturn decimal === -1 ? 0 : str.length - decimal - 1;\n\t},\n\n\t_adjustValue: function( value ) {\n\t\tvar base, aboveMin,\n\t\t\toptions = this.options;\n\n\t\t// make sure we're at a valid step\n\t\t// - find out where we are relative to the base (min or 0)\n\t\tbase = options.min !== null ? options.min : 0;\n\t\taboveMin = value - base;\n\t\t// - round to the nearest step\n\t\taboveMin = Math.round(aboveMin / options.step) * options.step;\n\t\t// - rounding is based on 0, so adjust back to our base\n\t\tvalue = base + aboveMin;\n\n\t\t// fix precision from bad JS floating point math\n\t\tvalue = parseFloat( value.toFixed( this._precision() ) );\n\n\t\t// clamp the value\n\t\tif ( options.max !== null && value > options.max) {\n\t\t\treturn options.max;\n\t\t}\n\t\tif ( options.min !== null && value < options.min ) {\n\t\t\treturn options.min;\n\t\t}\n\n\t\treturn value;\n\t},\n\n\t_stop: function( event ) {\n\t\tif ( !this.spinning ) {\n\t\t\treturn;\n\t\t}\n\n\t\tclearTimeout( this.timer );\n\t\tclearTimeout( this.mousewheelTimer );\n\t\tthis.counter = 0;\n\t\tthis.spinning = false;\n\t\tthis._trigger( \"stop\", event );\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"culture\" || key === \"numberFormat\" ) {\n\t\t\tvar prevValue = this._parse( this.element.val() );\n\t\t\tthis.options[ key ] = value;\n\t\t\tthis.element.val( this._format( prevValue ) );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === \"max\" || key === \"min\" || key === \"step\" ) {\n\t\t\tif ( typeof value === \"string\" ) {\n\t\t\t\tvalue = this._parse( value );\n\t\t\t}\n\t\t}\n\t\tif ( key === \"icons\" ) {\n\t\t\tthis.buttons.first().find( \".ui-icon\" )\n\t\t\t\t.removeClass( this.options.icons.up )\n\t\t\t\t.addClass( value.up );\n\t\t\tthis.buttons.last().find( \".ui-icon\" )\n\t\t\t\t.removeClass( this.options.icons.down )\n\t\t\t\t.addClass( value.down );\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tif ( value ) {\n\t\t\t\tthis.element.prop( \"disabled\", true );\n\t\t\t\tthis.buttons.button( \"disable\" );\n\t\t\t} else {\n\t\t\t\tthis.element.prop( \"disabled\", false );\n\t\t\t\tthis.buttons.button( \"enable\" );\n\t\t\t}\n\t\t}\n\t},\n\n\t_setOptions: modifier(function( options ) {\n\t\tthis._super( options );\n\t\tthis._value( this.element.val() );\n\t}),\n\n\t_parse: function( val ) {\n\t\tif ( typeof val === \"string\" && val !== \"\" ) {\n\t\t\tval = window.Globalize && this.options.numberFormat ?\n\t\t\t\tGlobalize.parseFloat( val, 10, this.options.culture ) : +val;\n\t\t}\n\t\treturn val === \"\" || isNaN( val ) ? null : val;\n\t},\n\n\t_format: function( value ) {\n\t\tif ( value === \"\" ) {\n\t\t\treturn \"\";\n\t\t}\n\t\treturn window.Globalize && this.options.numberFormat ?\n\t\t\tGlobalize.format( value, this.options.numberFormat, this.options.culture ) :\n\t\t\tvalue;\n\t},\n\n\t_refresh: function() {\n\t\tthis.element.attr({\n\t\t\t\"aria-valuemin\": this.options.min,\n\t\t\t\"aria-valuemax\": this.options.max,\n\t\t\t// TODO: what should we do with values that can't be parsed?\n\t\t\t\"aria-valuenow\": this._parse( this.element.val() )\n\t\t});\n\t},\n\n\t// update the value without triggering change\n\t_value: function( value, allowAny ) {\n\t\tvar parsed;\n\t\tif ( value !== \"\" ) {\n\t\t\tparsed = this._parse( value );\n\t\t\tif ( parsed !== null ) {\n\t\t\t\tif ( !allowAny ) {\n\t\t\t\t\tparsed = this._adjustValue( parsed );\n\t\t\t\t}\n\t\t\t\tvalue = this._format( parsed );\n\t\t\t}\n\t\t}\n\t\tthis.element.val( value );\n\t\tthis._refresh();\n\t},\n\n\t_destroy: function() {\n\t\tthis.element\n\t\t\t.removeClass( \"ui-spinner-input\" )\n\t\t\t.prop( \"disabled\", false )\n\t\t\t.removeAttr( \"autocomplete\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"aria-valuemin\" )\n\t\t\t.removeAttr( \"aria-valuemax\" )\n\t\t\t.removeAttr( \"aria-valuenow\" );\n\t\tthis.uiSpinner.replaceWith( this.element );\n\t},\n\n\tstepUp: modifier(function( steps ) {\n\t\tthis._stepUp( steps );\n\t}),\n\t_stepUp: function( steps ) {\n\t\tif ( this._start() ) {\n\t\t\tthis._spin( (steps || 1) * this.options.step );\n\t\t\tthis._stop();\n\t\t}\n\t},\n\n\tstepDown: modifier(function( steps ) {\n\t\tthis._stepDown( steps );\n\t}),\n\t_stepDown: function( steps ) {\n\t\tif ( this._start() ) {\n\t\t\tthis._spin( (steps || 1) * -this.options.step );\n\t\t\tthis._stop();\n\t\t}\n\t},\n\n\tpageUp: modifier(function( pages ) {\n\t\tthis._stepUp( (pages || 1) * this.options.page );\n\t}),\n\n\tpageDown: modifier(function( pages ) {\n\t\tthis._stepDown( (pages || 1) * this.options.page );\n\t}),\n\n\tvalue: function( newVal ) {\n\t\tif ( !arguments.length ) {\n\t\t\treturn this._parse( this.element.val() );\n\t\t}\n\t\tmodifier( this._value ).call( this, newVal );\n\t},\n\n\twidget: function() {\n\t\treturn this.uiSpinner;\n\t}\n});\n\n}( jQuery ) );\n\n(function( $, undefined ) {\n\nvar tabId = 0,\n\trhash = /#.*$/;\n\nfunction getNextTabId() {\n\treturn ++tabId;\n}\n\nfunction isLocal( anchor ) {\n\t// support: IE7\n\t// IE7 doesn't normalize the href property when set via script (#9317)\n\tanchor = anchor.cloneNode( false );\n\n\treturn anchor.hash.length > 1 &&\n\t\tdecodeURIComponent( anchor.href.replace( rhash, \"\" ) ) ===\n\t\t\tdecodeURIComponent( location.href.replace( rhash, \"\" ) );\n}\n\n$.widget( \"ui.tabs\", {\n\tversion: \"1.10.4\",\n\tdelay: 300,\n\toptions: {\n\t\tactive: null,\n\t\tcollapsible: false,\n\t\tevent: \"click\",\n\t\theightStyle: \"content\",\n\t\thide: null,\n\t\tshow: null,\n\n\t\t// callbacks\n\t\tactivate: null,\n\t\tbeforeActivate: null,\n\t\tbeforeLoad: null,\n\t\tload: null\n\t},\n\n\t_create: function() {\n\t\tvar that = this,\n\t\t\toptions = this.options;\n\n\t\tthis.running = false;\n\n\t\tthis.element\n\t\t\t.addClass( \"ui-tabs ui-widget ui-widget-content ui-corner-all\" )\n\t\t\t.toggleClass( \"ui-tabs-collapsible\", options.collapsible )\n\t\t\t// Prevent users from focusing disabled tabs via click\n\t\t\t.delegate( \".ui-tabs-nav > li\", \"mousedown\" + this.eventNamespace, function( event ) {\n\t\t\t\tif ( $( this ).is( \".ui-state-disabled\" ) ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t})\n\t\t\t// support: IE <9\n\t\t\t// Preventing the default action in mousedown doesn't prevent IE\n\t\t\t// from focusing the element, so if the anchor gets focused, blur.\n\t\t\t// We don't have to worry about focusing the previously focused\n\t\t\t// element since clicking on a non-focusable element should focus\n\t\t\t// the body anyway.\n\t\t\t.delegate( \".ui-tabs-anchor\", \"focus\" + this.eventNamespace, function() {\n\t\t\t\tif ( $( this ).closest( \"li\" ).is( \".ui-state-disabled\" ) ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t}\n\t\t\t});\n\n\t\tthis._processTabs();\n\t\toptions.active = this._initialActive();\n\n\t\t// Take disabling tabs via class attribute from HTML\n\t\t// into account and update option properly.\n\t\tif ( $.isArray( options.disabled ) ) {\n\t\t\toptions.disabled = $.unique( options.disabled.concat(\n\t\t\t\t$.map( this.tabs.filter( \".ui-state-disabled\" ), function( li ) {\n\t\t\t\t\treturn that.tabs.index( li );\n\t\t\t\t})\n\t\t\t) ).sort();\n\t\t}\n\n\t\t// check for length avoids error when initializing empty list\n\t\tif ( this.options.active !== false && this.anchors.length ) {\n\t\t\tthis.active = this._findActive( options.active );\n\t\t} else {\n\t\t\tthis.active = $();\n\t\t}\n\n\t\tthis._refresh();\n\n\t\tif ( this.active.length ) {\n\t\t\tthis.load( options.active );\n\t\t}\n\t},\n\n\t_initialActive: function() {\n\t\tvar active = this.options.active,\n\t\t\tcollapsible = this.options.collapsible,\n\t\t\tlocationHash = location.hash.substring( 1 );\n\n\t\tif ( active === null ) {\n\t\t\t// check the fragment identifier in the URL\n\t\t\tif ( locationHash ) {\n\t\t\t\tthis.tabs.each(function( i, tab ) {\n\t\t\t\t\tif ( $( tab ).attr( \"aria-controls\" ) === locationHash ) {\n\t\t\t\t\t\tactive = i;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// check for a tab marked active via a class\n\t\t\tif ( active === null ) {\n\t\t\t\tactive = this.tabs.index( this.tabs.filter( \".ui-tabs-active\" ) );\n\t\t\t}\n\n\t\t\t// no active tab, set to false\n\t\t\tif ( active === null || active === -1 ) {\n\t\t\t\tactive = this.tabs.length ? 0 : false;\n\t\t\t}\n\t\t}\n\n\t\t// handle numbers: negative, out of range\n\t\tif ( active !== false ) {\n\t\t\tactive = this.tabs.index( this.tabs.eq( active ) );\n\t\t\tif ( active === -1 ) {\n\t\t\t\tactive = collapsible ? false : 0;\n\t\t\t}\n\t\t}\n\n\t\t// don't allow collapsible: false and active: false\n\t\tif ( !collapsible && active === false && this.anchors.length ) {\n\t\t\tactive = 0;\n\t\t}\n\n\t\treturn active;\n\t},\n\n\t_getCreateEventData: function() {\n\t\treturn {\n\t\t\ttab: this.active,\n\t\t\tpanel: !this.active.length ? $() : this._getPanelForTab( this.active )\n\t\t};\n\t},\n\n\t_tabKeydown: function( event ) {\n\t\tvar focusedTab = $( this.document[0].activeElement ).closest( \"li\" ),\n\t\t\tselectedIndex = this.tabs.index( focusedTab ),\n\t\t\tgoingForward = true;\n\n\t\tif ( this._handlePageNav( event ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tswitch ( event.keyCode ) {\n\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\tselectedIndex++;\n\t\t\t\tbreak;\n\t\t\tcase $.ui.keyCode.UP:\n\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\tgoingForward = false;\n\t\t\t\tselectedIndex--;\n\t\t\t\tbreak;\n\t\t\tcase $.ui.keyCode.END:\n\t\t\t\tselectedIndex = this.anchors.length - 1;\n\t\t\t\tbreak;\n\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\tselectedIndex = 0;\n\t\t\t\tbreak;\n\t\t\tcase $.ui.keyCode.SPACE:\n\t\t\t\t// Activate only, no collapsing\n\t\t\t\tevent.preventDefault();\n\t\t\t\tclearTimeout( this.activating );\n\t\t\t\tthis._activate( selectedIndex );\n\t\t\t\treturn;\n\t\t\tcase $.ui.keyCode.ENTER:\n\t\t\t\t// Toggle (cancel delayed activation, allow collapsing)\n\t\t\t\tevent.preventDefault();\n\t\t\t\tclearTimeout( this.activating );\n\t\t\t\t// Determine if we should collapse or activate\n\t\t\t\tthis._activate( selectedIndex === this.options.active ? false : selectedIndex );\n\t\t\t\treturn;\n\t\t\tdefault:\n\t\t\t\treturn;\n\t\t}\n\n\t\t// Focus the appropriate tab, based on which key was pressed\n\t\tevent.preventDefault();\n\t\tclearTimeout( this.activating );\n\t\tselectedIndex = this._focusNextTab( selectedIndex, goingForward );\n\n\t\t// Navigating with control key will prevent automatic activation\n\t\tif ( !event.ctrlKey ) {\n\t\t\t// Update aria-selected immediately so that AT think the tab is already selected.\n\t\t\t// Otherwise AT may confuse the user by stating that they need to activate the tab,\n\t\t\t// but the tab will already be activated by the time the announcement finishes.\n\t\t\tfocusedTab.attr( \"aria-selected\", \"false\" );\n\t\t\tthis.tabs.eq( selectedIndex ).attr( \"aria-selected\", \"true\" );\n\n\t\t\tthis.activating = this._delay(function() {\n\t\t\t\tthis.option( \"active\", selectedIndex );\n\t\t\t}, this.delay );\n\t\t}\n\t},\n\n\t_panelKeydown: function( event ) {\n\t\tif ( this._handlePageNav( event ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Ctrl+up moves focus to the current tab\n\t\tif ( event.ctrlKey && event.keyCode === $.ui.keyCode.UP ) {\n\t\t\tevent.preventDefault();\n\t\t\tthis.active.focus();\n\t\t}\n\t},\n\n\t// Alt+page up/down moves focus to the previous/next tab (and activates)\n\t_handlePageNav: function( event ) {\n\t\tif ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_UP ) {\n\t\t\tthis._activate( this._focusNextTab( this.options.active - 1, false ) );\n\t\t\treturn true;\n\t\t}\n\t\tif ( event.altKey && event.keyCode === $.ui.keyCode.PAGE_DOWN ) {\n\t\t\tthis._activate( this._focusNextTab( this.options.active + 1, true ) );\n\t\t\treturn true;\n\t\t}\n\t},\n\n\t_findNextTab: function( index, goingForward ) {\n\t\tvar lastTabIndex = this.tabs.length - 1;\n\n\t\tfunction constrain() {\n\t\t\tif ( index > lastTabIndex ) {\n\t\t\t\tindex = 0;\n\t\t\t}\n\t\t\tif ( index < 0 ) {\n\t\t\t\tindex = lastTabIndex;\n\t\t\t}\n\t\t\treturn index;\n\t\t}\n\n\t\twhile ( $.inArray( constrain(), this.options.disabled ) !== -1 ) {\n\t\t\tindex = goingForward ? index + 1 : index - 1;\n\t\t}\n\n\t\treturn index;\n\t},\n\n\t_focusNextTab: function( index, goingForward ) {\n\t\tindex = this._findNextTab( index, goingForward );\n\t\tthis.tabs.eq( index ).focus();\n\t\treturn index;\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"active\" ) {\n\t\t\t// _activate() will handle invalid values and update this.options\n\t\t\tthis._activate( value );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\t// don't use the widget factory's disabled handling\n\t\t\tthis._setupDisabled( value );\n\t\t\treturn;\n\t\t}\n\n\t\tthis._super( key, value);\n\n\t\tif ( key === \"collapsible\" ) {\n\t\t\tthis.element.toggleClass( \"ui-tabs-collapsible\", value );\n\t\t\t// Setting collapsible: false while collapsed; open first panel\n\t\t\tif ( !value && this.options.active === false ) {\n\t\t\t\tthis._activate( 0 );\n\t\t\t}\n\t\t}\n\n\t\tif ( key === \"event\" ) {\n\t\t\tthis._setupEvents( value );\n\t\t}\n\n\t\tif ( key === \"heightStyle\" ) {\n\t\t\tthis._setupHeightStyle( value );\n\t\t}\n\t},\n\n\t_tabId: function( tab ) {\n\t\treturn tab.attr( \"aria-controls\" ) || \"ui-tabs-\" + getNextTabId();\n\t},\n\n\t_sanitizeSelector: function( hash ) {\n\t\treturn hash ? hash.replace( /[!\"$%&'()*+,.\\/:;<=>?@\\[\\]\\^`{|}~]/g, \"\\\\$&\" ) : \"\";\n\t},\n\n\trefresh: function() {\n\t\tvar options = this.options,\n\t\t\tlis = this.tablist.children( \":has(a[href])\" );\n\n\t\t// get disabled tabs from class attribute from HTML\n\t\t// this will get converted to a boolean if needed in _refresh()\n\t\toptions.disabled = $.map( lis.filter( \".ui-state-disabled\" ), function( tab ) {\n\t\t\treturn lis.index( tab );\n\t\t});\n\n\t\tthis._processTabs();\n\n\t\t// was collapsed or no tabs\n\t\tif ( options.active === false || !this.anchors.length ) {\n\t\t\toptions.active = false;\n\t\t\tthis.active = $();\n\t\t// was active, but active tab is gone\n\t\t} else if ( this.active.length && !$.contains( this.tablist[ 0 ], this.active[ 0 ] ) ) {\n\t\t\t// all remaining tabs are disabled\n\t\t\tif ( this.tabs.length === options.disabled.length ) {\n\t\t\t\toptions.active = false;\n\t\t\t\tthis.active = $();\n\t\t\t// activate previous tab\n\t\t\t} else {\n\t\t\t\tthis._activate( this._findNextTab( Math.max( 0, options.active - 1 ), false ) );\n\t\t\t}\n\t\t// was active, active tab still exists\n\t\t} else {\n\t\t\t// make sure active index is correct\n\t\t\toptions.active = this.tabs.index( this.active );\n\t\t}\n\n\t\tthis._refresh();\n\t},\n\n\t_refresh: function() {\n\t\tthis._setupDisabled( this.options.disabled );\n\t\tthis._setupEvents( this.options.event );\n\t\tthis._setupHeightStyle( this.options.heightStyle );\n\n\t\tthis.tabs.not( this.active ).attr({\n\t\t\t\"aria-selected\": \"false\",\n\t\t\ttabIndex: -1\n\t\t});\n\t\tthis.panels.not( this._getPanelForTab( this.active ) )\n\t\t\t.hide()\n\t\t\t.attr({\n\t\t\t\t\"aria-expanded\": \"false\",\n\t\t\t\t\"aria-hidden\": \"true\"\n\t\t\t});\n\n\t\t// Make sure one tab is in the tab order\n\t\tif ( !this.active.length ) {\n\t\t\tthis.tabs.eq( 0 ).attr( \"tabIndex\", 0 );\n\t\t} else {\n\t\t\tthis.active\n\t\t\t\t.addClass( \"ui-tabs-active ui-state-active\" )\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-selected\": \"true\",\n\t\t\t\t\ttabIndex: 0\n\t\t\t\t});\n\t\t\tthis._getPanelForTab( this.active )\n\t\t\t\t.show()\n\t\t\t\t.attr({\n\t\t\t\t\t\"aria-expanded\": \"true\",\n\t\t\t\t\t\"aria-hidden\": \"false\"\n\t\t\t\t});\n\t\t}\n\t},\n\n\t_processTabs: function() {\n\t\tvar that = this;\n\n\t\tthis.tablist = this._getList()\n\t\t\t.addClass( \"ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all\" )\n\t\t\t.attr( \"role\", \"tablist\" );\n\n\t\tthis.tabs = this.tablist.find( \"> li:has(a[href])\" )\n\t\t\t.addClass( \"ui-state-default ui-corner-top\" )\n\t\t\t.attr({\n\t\t\t\trole: \"tab\",\n\t\t\t\ttabIndex: -1\n\t\t\t});\n\n\t\tthis.anchors = this.tabs.map(function() {\n\t\t\t\treturn $( \"a\", this )[ 0 ];\n\t\t\t})\n\t\t\t.addClass( \"ui-tabs-anchor\" )\n\t\t\t.attr({\n\t\t\t\trole: \"presentation\",\n\t\t\t\ttabIndex: -1\n\t\t\t});\n\n\t\tthis.panels = $();\n\n\t\tthis.anchors.each(function( i, anchor ) {\n\t\t\tvar selector, panel, panelId,\n\t\t\t\tanchorId = $( anchor ).uniqueId().attr( \"id\" ),\n\t\t\t\ttab = $( anchor ).closest( \"li\" ),\n\t\t\t\toriginalAriaControls = tab.attr( \"aria-controls\" );\n\n\t\t\t// inline tab\n\t\t\tif ( isLocal( anchor ) ) {\n\t\t\t\tselector = anchor.hash;\n\t\t\t\tpanel = that.element.find( that._sanitizeSelector( selector ) );\n\t\t\t// remote tab\n\t\t\t} else {\n\t\t\t\tpanelId = that._tabId( tab );\n\t\t\t\tselector = \"#\" + panelId;\n\t\t\t\tpanel = that.element.find( selector );\n\t\t\t\tif ( !panel.length ) {\n\t\t\t\t\tpanel = that._createPanel( panelId );\n\t\t\t\t\tpanel.insertAfter( that.panels[ i - 1 ] || that.tablist );\n\t\t\t\t}\n\t\t\t\tpanel.attr( \"aria-live\", \"polite\" );\n\t\t\t}\n\n\t\t\tif ( panel.length) {\n\t\t\t\tthat.panels = that.panels.add( panel );\n\t\t\t}\n\t\t\tif ( originalAriaControls ) {\n\t\t\t\ttab.data( \"ui-tabs-aria-controls\", originalAriaControls );\n\t\t\t}\n\t\t\ttab.attr({\n\t\t\t\t\"aria-controls\": selector.substring( 1 ),\n\t\t\t\t\"aria-labelledby\": anchorId\n\t\t\t});\n\t\t\tpanel.attr( \"aria-labelledby\", anchorId );\n\t\t});\n\n\t\tthis.panels\n\t\t\t.addClass( \"ui-tabs-panel ui-widget-content ui-corner-bottom\" )\n\t\t\t.attr( \"role\", \"tabpanel\" );\n\t},\n\n\t// allow overriding how to find the list for rare usage scenarios (#7715)\n\t_getList: function() {\n\t\treturn this.tablist || this.element.find( \"ol,ul\" ).eq( 0 );\n\t},\n\n\t_createPanel: function( id ) {\n\t\treturn $( \"<div>\" )\n\t\t\t.attr( \"id\", id )\n\t\t\t.addClass( \"ui-tabs-panel ui-widget-content ui-corner-bottom\" )\n\t\t\t.data( \"ui-tabs-destroy\", true );\n\t},\n\n\t_setupDisabled: function( disabled ) {\n\t\tif ( $.isArray( disabled ) ) {\n\t\t\tif ( !disabled.length ) {\n\t\t\t\tdisabled = false;\n\t\t\t} else if ( disabled.length === this.anchors.length ) {\n\t\t\t\tdisabled = true;\n\t\t\t}\n\t\t}\n\n\t\t// disable tabs\n\t\tfor ( var i = 0, li; ( li = this.tabs[ i ] ); i++ ) {\n\t\t\tif ( disabled === true || $.inArray( i, disabled ) !== -1 ) {\n\t\t\t\t$( li )\n\t\t\t\t\t.addClass( \"ui-state-disabled\" )\n\t\t\t\t\t.attr( \"aria-disabled\", \"true\" );\n\t\t\t} else {\n\t\t\t\t$( li )\n\t\t\t\t\t.removeClass( \"ui-state-disabled\" )\n\t\t\t\t\t.removeAttr( \"aria-disabled\" );\n\t\t\t}\n\t\t}\n\n\t\tthis.options.disabled = disabled;\n\t},\n\n\t_setupEvents: function( event ) {\n\t\tvar events = {\n\t\t\tclick: function( event ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t};\n\t\tif ( event ) {\n\t\t\t$.each( event.split(\" \"), function( index, eventName ) {\n\t\t\t\tevents[ eventName ] = \"_eventHandler\";\n\t\t\t});\n\t\t}\n\n\t\tthis._off( this.anchors.add( this.tabs ).add( this.panels ) );\n\t\tthis._on( this.anchors, events );\n\t\tthis._on( this.tabs, { keydown: \"_tabKeydown\" } );\n\t\tthis._on( this.panels, { keydown: \"_panelKeydown\" } );\n\n\t\tthis._focusable( this.tabs );\n\t\tthis._hoverable( this.tabs );\n\t},\n\n\t_setupHeightStyle: function( heightStyle ) {\n\t\tvar maxHeight,\n\t\t\tparent = this.element.parent();\n\n\t\tif ( heightStyle === \"fill\" ) {\n\t\t\tmaxHeight = parent.height();\n\t\t\tmaxHeight -= this.element.outerHeight() - this.element.height();\n\n\t\t\tthis.element.siblings( \":visible\" ).each(function() {\n\t\t\t\tvar elem = $( this ),\n\t\t\t\t\tposition = elem.css( \"position\" );\n\n\t\t\t\tif ( position === \"absolute\" || position === \"fixed\" ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tmaxHeight -= elem.outerHeight( true );\n\t\t\t});\n\n\t\t\tthis.element.children().not( this.panels ).each(function() {\n\t\t\t\tmaxHeight -= $( this ).outerHeight( true );\n\t\t\t});\n\n\t\t\tthis.panels.each(function() {\n\t\t\t\t$( this ).height( Math.max( 0, maxHeight -\n\t\t\t\t\t$( this ).innerHeight() + $( this ).height() ) );\n\t\t\t})\n\t\t\t.css( \"overflow\", \"auto\" );\n\t\t} else if ( heightStyle === \"auto\" ) {\n\t\t\tmaxHeight = 0;\n\t\t\tthis.panels.each(function() {\n\t\t\t\tmaxHeight = Math.max( maxHeight, $( this ).height( \"\" ).height() );\n\t\t\t}).height( maxHeight );\n\t\t}\n\t},\n\n\t_eventHandler: function( event ) {\n\t\tvar options = this.options,\n\t\t\tactive = this.active,\n\t\t\tanchor = $( event.currentTarget ),\n\t\t\ttab = anchor.closest( \"li\" ),\n\t\t\tclickedIsActive = tab[ 0 ] === active[ 0 ],\n\t\t\tcollapsing = clickedIsActive && options.collapsible,\n\t\t\ttoShow = collapsing ? $() : this._getPanelForTab( tab ),\n\t\t\ttoHide = !active.length ? $() : this._getPanelForTab( active ),\n\t\t\teventData = {\n\t\t\t\toldTab: active,\n\t\t\t\toldPanel: toHide,\n\t\t\t\tnewTab: collapsing ? $() : tab,\n\t\t\t\tnewPanel: toShow\n\t\t\t};\n\n\t\tevent.preventDefault();\n\n\t\tif ( tab.hasClass( \"ui-state-disabled\" ) ||\n\t\t\t\t// tab is already loading\n\t\t\t\ttab.hasClass( \"ui-tabs-loading\" ) ||\n\t\t\t\t// can't switch durning an animation\n\t\t\t\tthis.running ||\n\t\t\t\t// click on active header, but not collapsible\n\t\t\t\t( clickedIsActive && !options.collapsible ) ||\n\t\t\t\t// allow canceling activation\n\t\t\t\t( this._trigger( \"beforeActivate\", event, eventData ) === false ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\toptions.active = collapsing ? false : this.tabs.index( tab );\n\n\t\tthis.active = clickedIsActive ? $() : tab;\n\t\tif ( this.xhr ) {\n\t\t\tthis.xhr.abort();\n\t\t}\n\n\t\tif ( !toHide.length && !toShow.length ) {\n\t\t\t$.error( \"jQuery UI Tabs: Mismatching fragment identifier.\" );\n\t\t}\n\n\t\tif ( toShow.length ) {\n\t\t\tthis.load( this.tabs.index( tab ), event );\n\t\t}\n\t\tthis._toggle( event, eventData );\n\t},\n\n\t// handles show/hide for selecting tabs\n\t_toggle: function( event, eventData ) {\n\t\tvar that = this,\n\t\t\ttoShow = eventData.newPanel,\n\t\t\ttoHide = eventData.oldPanel;\n\n\t\tthis.running = true;\n\n\t\tfunction complete() {\n\t\t\tthat.running = false;\n\t\t\tthat._trigger( \"activate\", event, eventData );\n\t\t}\n\n\t\tfunction show() {\n\t\t\teventData.newTab.closest( \"li\" ).addClass( \"ui-tabs-active ui-state-active\" );\n\n\t\t\tif ( toShow.length && that.options.show ) {\n\t\t\t\tthat._show( toShow, that.options.show, complete );\n\t\t\t} else {\n\t\t\t\ttoShow.show();\n\t\t\t\tcomplete();\n\t\t\t}\n\t\t}\n\n\t\t// start out by hiding, then showing, then completing\n\t\tif ( toHide.length && this.options.hide ) {\n\t\t\tthis._hide( toHide, this.options.hide, function() {\n\t\t\t\teventData.oldTab.closest( \"li\" ).removeClass( \"ui-tabs-active ui-state-active\" );\n\t\t\t\tshow();\n\t\t\t});\n\t\t} else {\n\t\t\teventData.oldTab.closest( \"li\" ).removeClass( \"ui-tabs-active ui-state-active\" );\n\t\t\ttoHide.hide();\n\t\t\tshow();\n\t\t}\n\n\t\ttoHide.attr({\n\t\t\t\"aria-expanded\": \"false\",\n\t\t\t\"aria-hidden\": \"true\"\n\t\t});\n\t\teventData.oldTab.attr( \"aria-selected\", \"false\" );\n\t\t// If we're switching tabs, remove the old tab from the tab order.\n\t\t// If we're opening from collapsed state, remove the previous tab from the tab order.\n\t\t// If we're collapsing, then keep the collapsing tab in the tab order.\n\t\tif ( toShow.length && toHide.length ) {\n\t\t\teventData.oldTab.attr( \"tabIndex\", -1 );\n\t\t} else if ( toShow.length ) {\n\t\t\tthis.tabs.filter(function() {\n\t\t\t\treturn $( this ).attr( \"tabIndex\" ) === 0;\n\t\t\t})\n\t\t\t.attr( \"tabIndex\", -1 );\n\t\t}\n\n\t\ttoShow.attr({\n\t\t\t\"aria-expanded\": \"true\",\n\t\t\t\"aria-hidden\": \"false\"\n\t\t});\n\t\teventData.newTab.attr({\n\t\t\t\"aria-selected\": \"true\",\n\t\t\ttabIndex: 0\n\t\t});\n\t},\n\n\t_activate: function( index ) {\n\t\tvar anchor,\n\t\t\tactive = this._findActive( index );\n\n\t\t// trying to activate the already active panel\n\t\tif ( active[ 0 ] === this.active[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// trying to collapse, simulate a click on the current active header\n\t\tif ( !active.length ) {\n\t\t\tactive = this.active;\n\t\t}\n\n\t\tanchor = active.find( \".ui-tabs-anchor\" )[ 0 ];\n\t\tthis._eventHandler({\n\t\t\ttarget: anchor,\n\t\t\tcurrentTarget: anchor,\n\t\t\tpreventDefault: $.noop\n\t\t});\n\t},\n\n\t_findActive: function( index ) {\n\t\treturn index === false ? $() : this.tabs.eq( index );\n\t},\n\n\t_getIndex: function( index ) {\n\t\t// meta-function to give users option to provide a href string instead of a numerical index.\n\t\tif ( typeof index === \"string\" ) {\n\t\t\tindex = this.anchors.index( this.anchors.filter( \"[href$='\" + index + \"']\" ) );\n\t\t}\n\n\t\treturn index;\n\t},\n\n\t_destroy: function() {\n\t\tif ( this.xhr ) {\n\t\t\tthis.xhr.abort();\n\t\t}\n\n\t\tthis.element.removeClass( \"ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible\" );\n\n\t\tthis.tablist\n\t\t\t.removeClass( \"ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all\" )\n\t\t\t.removeAttr( \"role\" );\n\n\t\tthis.anchors\n\t\t\t.removeClass( \"ui-tabs-anchor\" )\n\t\t\t.removeAttr( \"role\" )\n\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t.removeUniqueId();\n\n\t\tthis.tabs.add( this.panels ).each(function() {\n\t\t\tif ( $.data( this, \"ui-tabs-destroy\" ) ) {\n\t\t\t\t$( this ).remove();\n\t\t\t} else {\n\t\t\t\t$( this )\n\t\t\t\t\t.removeClass( \"ui-state-default ui-state-active ui-state-disabled \" +\n\t\t\t\t\t\t\"ui-corner-top ui-corner-bottom ui-widget-content ui-tabs-active ui-tabs-panel\" )\n\t\t\t\t\t.removeAttr( \"tabIndex\" )\n\t\t\t\t\t.removeAttr( \"aria-live\" )\n\t\t\t\t\t.removeAttr( \"aria-busy\" )\n\t\t\t\t\t.removeAttr( \"aria-selected\" )\n\t\t\t\t\t.removeAttr( \"aria-labelledby\" )\n\t\t\t\t\t.removeAttr( \"aria-hidden\" )\n\t\t\t\t\t.removeAttr( \"aria-expanded\" )\n\t\t\t\t\t.removeAttr( \"role\" );\n\t\t\t}\n\t\t});\n\n\t\tthis.tabs.each(function() {\n\t\t\tvar li = $( this ),\n\t\t\t\tprev = li.data( \"ui-tabs-aria-controls\" );\n\t\t\tif ( prev ) {\n\t\t\t\tli\n\t\t\t\t\t.attr( \"aria-controls\", prev )\n\t\t\t\t\t.removeData( \"ui-tabs-aria-controls\" );\n\t\t\t} else {\n\t\t\t\tli.removeAttr( \"aria-controls\" );\n\t\t\t}\n\t\t});\n\n\t\tthis.panels.show();\n\n\t\tif ( this.options.heightStyle !== \"content\" ) {\n\t\t\tthis.panels.css( \"height\", \"\" );\n\t\t}\n\t},\n\n\tenable: function( index ) {\n\t\tvar disabled = this.options.disabled;\n\t\tif ( disabled === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( index === undefined ) {\n\t\t\tdisabled = false;\n\t\t} else {\n\t\t\tindex = this._getIndex( index );\n\t\t\tif ( $.isArray( disabled ) ) {\n\t\t\t\tdisabled = $.map( disabled, function( num ) {\n\t\t\t\t\treturn num !== index ? num : null;\n\t\t\t\t});\n\t\t\t} else {\n\t\t\t\tdisabled = $.map( this.tabs, function( li, num ) {\n\t\t\t\t\treturn num !== index ? num : null;\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\tthis._setupDisabled( disabled );\n\t},\n\n\tdisable: function( index ) {\n\t\tvar disabled = this.options.disabled;\n\t\tif ( disabled === true ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( index === undefined ) {\n\t\t\tdisabled = true;\n\t\t} else {\n\t\t\tindex = this._getIndex( index );\n\t\t\tif ( $.inArray( index, disabled ) !== -1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif ( $.isArray( disabled ) ) {\n\t\t\t\tdisabled = $.merge( [ index ], disabled ).sort();\n\t\t\t} else {\n\t\t\t\tdisabled = [ index ];\n\t\t\t}\n\t\t}\n\t\tthis._setupDisabled( disabled );\n\t},\n\n\tload: function( index, event ) {\n\t\tindex = this._getIndex( index );\n\t\tvar that = this,\n\t\t\ttab = this.tabs.eq( index ),\n\t\t\tanchor = tab.find( \".ui-tabs-anchor\" ),\n\t\t\tpanel = this._getPanelForTab( tab ),\n\t\t\teventData = {\n\t\t\t\ttab: tab,\n\t\t\t\tpanel: panel\n\t\t\t};\n\n\t\t// not remote\n\t\tif ( isLocal( anchor[ 0 ] ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.xhr = $.ajax( this._ajaxSettings( anchor, event, eventData ) );\n\n\t\t// support: jQuery <1.8\n\t\t// jQuery <1.8 returns false if the request is canceled in beforeSend,\n\t\t// but as of 1.8, $.ajax() always returns a jqXHR object.\n\t\tif ( this.xhr && this.xhr.statusText !== \"canceled\" ) {\n\t\t\ttab.addClass( \"ui-tabs-loading\" );\n\t\t\tpanel.attr( \"aria-busy\", \"true\" );\n\n\t\t\tthis.xhr\n\t\t\t\t.success(function( response ) {\n\t\t\t\t\t// support: jQuery <1.8\n\t\t\t\t\t// http://bugs.jquery.com/ticket/11778\n\t\t\t\t\tsetTimeout(function() {\n\t\t\t\t\t\tpanel.html( response );\n\t\t\t\t\t\tthat._trigger( \"load\", event, eventData );\n\t\t\t\t\t}, 1 );\n\t\t\t\t})\n\t\t\t\t.complete(function( jqXHR, status ) {\n\t\t\t\t\t// support: jQuery <1.8\n\t\t\t\t\t// http://bugs.jquery.com/ticket/11778\n\t\t\t\t\tsetTimeout(function() {\n\t\t\t\t\t\tif ( status === \"abort\" ) {\n\t\t\t\t\t\t\tthat.panels.stop( false, true );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\ttab.removeClass( \"ui-tabs-loading\" );\n\t\t\t\t\t\tpanel.removeAttr( \"aria-busy\" );\n\n\t\t\t\t\t\tif ( jqXHR === that.xhr ) {\n\t\t\t\t\t\t\tdelete that.xhr;\n\t\t\t\t\t\t}\n\t\t\t\t\t}, 1 );\n\t\t\t\t});\n\t\t}\n\t},\n\n\t_ajaxSettings: function( anchor, event, eventData ) {\n\t\tvar that = this;\n\t\treturn {\n\t\t\turl: anchor.attr( \"href\" ),\n\t\t\tbeforeSend: function( jqXHR, settings ) {\n\t\t\t\treturn that._trigger( \"beforeLoad\", event,\n\t\t\t\t\t$.extend( { jqXHR : jqXHR, ajaxSettings: settings }, eventData ) );\n\t\t\t}\n\t\t};\n\t},\n\n\t_getPanelForTab: function( tab ) {\n\t\tvar id = $( tab ).attr( \"aria-controls\" );\n\t\treturn this.element.find( this._sanitizeSelector( \"#\" + id ) );\n\t}\n});\n\n})( jQuery );\n\n(function( $ ) {\n\nvar increments = 0;\n\nfunction addDescribedBy( elem, id ) {\n\tvar describedby = (elem.attr( \"aria-describedby\" ) || \"\").split( /\\s+/ );\n\tdescribedby.push( id );\n\telem\n\t\t.data( \"ui-tooltip-id\", id )\n\t\t.attr( \"aria-describedby\", $.trim( describedby.join( \" \" ) ) );\n}\n\nfunction removeDescribedBy( elem ) {\n\tvar id = elem.data( \"ui-tooltip-id\" ),\n\t\tdescribedby = (elem.attr( \"aria-describedby\" ) || \"\").split( /\\s+/ ),\n\t\tindex = $.inArray( id, describedby );\n\tif ( index !== -1 ) {\n\t\tdescribedby.splice( index, 1 );\n\t}\n\n\telem.removeData( \"ui-tooltip-id\" );\n\tdescribedby = $.trim( describedby.join( \" \" ) );\n\tif ( describedby ) {\n\t\telem.attr( \"aria-describedby\", describedby );\n\t} else {\n\t\telem.removeAttr( \"aria-describedby\" );\n\t}\n}\n\n$.widget( \"ui.tooltip\", {\n\tversion: \"1.10.4\",\n\toptions: {\n\t\tcontent: function() {\n\t\t\t// support: IE<9, Opera in jQuery <1.7\n\t\t\t// .text() can't accept undefined, so coerce to a string\n\t\t\tvar title = $( this ).attr( \"title\" ) || \"\";\n\t\t\t// Escape title, since we're going from an attribute to raw HTML\n\t\t\treturn $( \"<a>\" ).text( title ).html();\n\t\t},\n\t\thide: true,\n\t\t// Disabled elements have inconsistent behavior across browsers (#8661)\n\t\titems: \"[title]:not([disabled])\",\n\t\tposition: {\n\t\t\tmy: \"left top+15\",\n\t\t\tat: \"left bottom\",\n\t\t\tcollision: \"flipfit flip\"\n\t\t},\n\t\tshow: true,\n\t\ttooltipClass: null,\n\t\ttrack: false,\n\n\t\t// callbacks\n\t\tclose: null,\n\t\topen: null\n\t},\n\n\t_create: function() {\n\t\tthis._on({\n\t\t\tmouseover: \"open\",\n\t\t\tfocusin: \"open\"\n\t\t});\n\n\t\t// IDs of generated tooltips, needed for destroy\n\t\tthis.tooltips = {};\n\t\t// IDs of parent tooltips where we removed the title attribute\n\t\tthis.parents = {};\n\n\t\tif ( this.options.disabled ) {\n\t\t\tthis._disable();\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tvar that = this;\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis[ value ? \"_disable\" : \"_enable\" ]();\n\t\t\tthis.options[ key ] = value;\n\t\t\t// disable element style changes\n\t\t\treturn;\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tif ( key === \"content\" ) {\n\t\t\t$.each( this.tooltips, function( id, element ) {\n\t\t\t\tthat._updateContent( element );\n\t\t\t});\n\t\t}\n\t},\n\n\t_disable: function() {\n\t\tvar that = this;\n\n\t\t// close open tooltips\n\t\t$.each( this.tooltips, function( id, element ) {\n\t\t\tvar event = $.Event( \"blur\" );\n\t\t\tevent.target = event.currentTarget = element[0];\n\t\t\tthat.close( event, true );\n\t\t});\n\n\t\t// remove title attributes to prevent native tooltips\n\t\tthis.element.find( this.options.items ).addBack().each(function() {\n\t\t\tvar element = $( this );\n\t\t\tif ( element.is( \"[title]\" ) ) {\n\t\t\t\telement\n\t\t\t\t\t.data( \"ui-tooltip-title\", element.attr( \"title\" ) )\n\t\t\t\t\t.attr( \"title\", \"\" );\n\t\t\t}\n\t\t});\n\t},\n\n\t_enable: function() {\n\t\t// restore title attributes\n\t\tthis.element.find( this.options.items ).addBack().each(function() {\n\t\t\tvar element = $( this );\n\t\t\tif ( element.data( \"ui-tooltip-title\" ) ) {\n\t\t\t\telement.attr( \"title\", element.data( \"ui-tooltip-title\" ) );\n\t\t\t}\n\t\t});\n\t},\n\n\topen: function( event ) {\n\t\tvar that = this,\n\t\t\ttarget = $( event ? event.target : this.element )\n\t\t\t\t// we need closest here due to mouseover bubbling,\n\t\t\t\t// but always pointing at the same event target\n\t\t\t\t.closest( this.options.items );\n\n\t\t// No element to show a tooltip for or the tooltip is already open\n\t\tif ( !target.length || target.data( \"ui-tooltip-id\" ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( target.attr( \"title\" ) ) {\n\t\t\ttarget.data( \"ui-tooltip-title\", target.attr( \"title\" ) );\n\t\t}\n\n\t\ttarget.data( \"ui-tooltip-open\", true );\n\n\t\t// kill parent tooltips, custom or native, for hover\n\t\tif ( event && event.type === \"mouseover\" ) {\n\t\t\ttarget.parents().each(function() {\n\t\t\t\tvar parent = $( this ),\n\t\t\t\t\tblurEvent;\n\t\t\t\tif ( parent.data( \"ui-tooltip-open\" ) ) {\n\t\t\t\t\tblurEvent = $.Event( \"blur\" );\n\t\t\t\t\tblurEvent.target = blurEvent.currentTarget = this;\n\t\t\t\t\tthat.close( blurEvent, true );\n\t\t\t\t}\n\t\t\t\tif ( parent.attr( \"title\" ) ) {\n\t\t\t\t\tparent.uniqueId();\n\t\t\t\t\tthat.parents[ this.id ] = {\n\t\t\t\t\t\telement: this,\n\t\t\t\t\t\ttitle: parent.attr( \"title\" )\n\t\t\t\t\t};\n\t\t\t\t\tparent.attr( \"title\", \"\" );\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tthis._updateContent( target, event );\n\t},\n\n\t_updateContent: function( target, event ) {\n\t\tvar content,\n\t\t\tcontentOption = this.options.content,\n\t\t\tthat = this,\n\t\t\teventType = event ? event.type : null;\n\n\t\tif ( typeof contentOption === \"string\" ) {\n\t\t\treturn this._open( event, target, contentOption );\n\t\t}\n\n\t\tcontent = contentOption.call( target[0], function( response ) {\n\t\t\t// ignore async response if tooltip was closed already\n\t\t\tif ( !target.data( \"ui-tooltip-open\" ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\t// IE may instantly serve a cached response for ajax requests\n\t\t\t// delay this call to _open so the other call to _open runs first\n\t\t\tthat._delay(function() {\n\t\t\t\t// jQuery creates a special event for focusin when it doesn't\n\t\t\t\t// exist natively. To improve performance, the native event\n\t\t\t\t// object is reused and the type is changed. Therefore, we can't\n\t\t\t\t// rely on the type being correct after the event finished\n\t\t\t\t// bubbling, so we set it back to the previous value. (#8740)\n\t\t\t\tif ( event ) {\n\t\t\t\t\tevent.type = eventType;\n\t\t\t\t}\n\t\t\t\tthis._open( event, target, response );\n\t\t\t});\n\t\t});\n\t\tif ( content ) {\n\t\t\tthis._open( event, target, content );\n\t\t}\n\t},\n\n\t_open: function( event, target, content ) {\n\t\tvar tooltip, events, delayedShow,\n\t\t\tpositionOption = $.extend( {}, this.options.position );\n\n\t\tif ( !content ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Content can be updated multiple times. If the tooltip already\n\t\t// exists, then just update the content and bail.\n\t\ttooltip = this._find( target );\n\t\tif ( tooltip.length ) {\n\t\t\ttooltip.find( \".ui-tooltip-content\" ).html( content );\n\t\t\treturn;\n\t\t}\n\n\t\t// if we have a title, clear it to prevent the native tooltip\n\t\t// we have to check first to avoid defining a title if none exists\n\t\t// (we don't want to cause an element to start matching [title])\n\t\t//\n\t\t// We use removeAttr only for key events, to allow IE to export the correct\n\t\t// accessible attributes. For mouse events, set to empty string to avoid\n\t\t// native tooltip showing up (happens only when removing inside mouseover).\n\t\tif ( target.is( \"[title]\" ) ) {\n\t\t\tif ( event && event.type === \"mouseover\" ) {\n\t\t\t\ttarget.attr( \"title\", \"\" );\n\t\t\t} else {\n\t\t\t\ttarget.removeAttr( \"title\" );\n\t\t\t}\n\t\t}\n\n\t\ttooltip = this._tooltip( target );\n\t\taddDescribedBy( target, tooltip.attr( \"id\" ) );\n\t\ttooltip.find( \".ui-tooltip-content\" ).html( content );\n\n\t\tfunction position( event ) {\n\t\t\tpositionOption.of = event;\n\t\t\tif ( tooltip.is( \":hidden\" ) ) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\ttooltip.position( positionOption );\n\t\t}\n\t\tif ( this.options.track && event && /^mouse/.test( event.type ) ) {\n\t\t\tthis._on( this.document, {\n\t\t\t\tmousemove: position\n\t\t\t});\n\t\t\t// trigger once to override element-relative positioning\n\t\t\tposition( event );\n\t\t} else {\n\t\t\ttooltip.position( $.extend({\n\t\t\t\tof: target\n\t\t\t}, this.options.position ) );\n\t\t}\n\n\t\ttooltip.hide();\n\n\t\tthis._show( tooltip, this.options.show );\n\t\t// Handle tracking tooltips that are shown with a delay (#8644). As soon\n\t\t// as the tooltip is visible, position the tooltip using the most recent\n\t\t// event.\n\t\tif ( this.options.show && this.options.show.delay ) {\n\t\t\tdelayedShow = this.delayedShow = setInterval(function() {\n\t\t\t\tif ( tooltip.is( \":visible\" ) ) {\n\t\t\t\t\tposition( positionOption.of );\n\t\t\t\t\tclearInterval( delayedShow );\n\t\t\t\t}\n\t\t\t}, $.fx.interval );\n\t\t}\n\n\t\tthis._trigger( \"open\", event, { tooltip: tooltip } );\n\n\t\tevents = {\n\t\t\tkeyup: function( event ) {\n\t\t\t\tif ( event.keyCode === $.ui.keyCode.ESCAPE ) {\n\t\t\t\t\tvar fakeEvent = $.Event(event);\n\t\t\t\t\tfakeEvent.currentTarget = target[0];\n\t\t\t\t\tthis.close( fakeEvent, true );\n\t\t\t\t}\n\t\t\t},\n\t\t\tremove: function() {\n\t\t\t\tthis._removeTooltip( tooltip );\n\t\t\t}\n\t\t};\n\t\tif ( !event || event.type === \"mouseover\" ) {\n\t\t\tevents.mouseleave = \"close\";\n\t\t}\n\t\tif ( !event || event.type === \"focusin\" ) {\n\t\t\tevents.focusout = \"close\";\n\t\t}\n\t\tthis._on( true, target, events );\n\t},\n\n\tclose: function( event ) {\n\t\tvar that = this,\n\t\t\ttarget = $( event ? event.currentTarget : this.element ),\n\t\t\ttooltip = this._find( target );\n\n\t\t// disabling closes the tooltip, so we need to track when we're closing\n\t\t// to avoid an infinite loop in case the tooltip becomes disabled on close\n\t\tif ( this.closing ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Clear the interval for delayed tracking tooltips\n\t\tclearInterval( this.delayedShow );\n\n\t\t// only set title if we had one before (see comment in _open())\n\t\tif ( target.data( \"ui-tooltip-title\" ) ) {\n\t\t\ttarget.attr( \"title\", target.data( \"ui-tooltip-title\" ) );\n\t\t}\n\n\t\tremoveDescribedBy( target );\n\n\t\ttooltip.stop( true );\n\t\tthis._hide( tooltip, this.options.hide, function() {\n\t\t\tthat._removeTooltip( $( this ) );\n\t\t});\n\n\t\ttarget.removeData( \"ui-tooltip-open\" );\n\t\tthis._off( target, \"mouseleave focusout keyup\" );\n\t\t// Remove 'remove' binding only on delegated targets\n\t\tif ( target[0] !== this.element[0] ) {\n\t\t\tthis._off( target, \"remove\" );\n\t\t}\n\t\tthis._off( this.document, \"mousemove\" );\n\n\t\tif ( event && event.type === \"mouseleave\" ) {\n\t\t\t$.each( this.parents, function( id, parent ) {\n\t\t\t\t$( parent.element ).attr( \"title\", parent.title );\n\t\t\t\tdelete that.parents[ id ];\n\t\t\t});\n\t\t}\n\n\t\tthis.closing = true;\n\t\tthis._trigger( \"close\", event, { tooltip: tooltip } );\n\t\tthis.closing = false;\n\t},\n\n\t_tooltip: function( element ) {\n\t\tvar id = \"ui-tooltip-\" + increments++,\n\t\t\ttooltip = $( \"<div>\" )\n\t\t\t\t.attr({\n\t\t\t\t\tid: id,\n\t\t\t\t\trole: \"tooltip\"\n\t\t\t\t})\n\t\t\t\t.addClass( \"ui-tooltip ui-widget ui-corner-all ui-widget-content \" +\n\t\t\t\t\t( this.options.tooltipClass || \"\" ) );\n\t\t$( \"<div>\" )\n\t\t\t.addClass( \"ui-tooltip-content\" )\n\t\t\t.appendTo( tooltip );\n\t\ttooltip.appendTo( this.document[0].body );\n\t\tthis.tooltips[ id ] = element;\n\t\treturn tooltip;\n\t},\n\n\t_find: function( target ) {\n\t\tvar id = target.data( \"ui-tooltip-id\" );\n\t\treturn id ? $( \"#\" + id ) : $();\n\t},\n\n\t_removeTooltip: function( tooltip ) {\n\t\ttooltip.remove();\n\t\tdelete this.tooltips[ tooltip.attr( \"id\" ) ];\n\t},\n\n\t_destroy: function() {\n\t\tvar that = this;\n\n\t\t// close open tooltips\n\t\t$.each( this.tooltips, function( id, element ) {\n\t\t\t// Delegate to close method to handle common cleanup\n\t\t\tvar event = $.Event( \"blur\" );\n\t\t\tevent.target = event.currentTarget = element[0];\n\t\t\tthat.close( event, true );\n\n\t\t\t// Remove immediately; destroying an open tooltip doesn't use the\n\t\t\t// hide animation\n\t\t\t$( \"#\" + id ).remove();\n\n\t\t\t// Restore the title\n\t\t\tif ( element.data( \"ui-tooltip-title\" ) ) {\n\t\t\t\telement.attr( \"title\", element.data( \"ui-tooltip-title\" ) );\n\t\t\t\telement.removeData( \"ui-tooltip-title\" );\n\t\t\t}\n\t\t});\n\t}\n});\n\n}( jQuery ) );\n"
  },
  {
    "path": "public/admin/js/plugins/jsKnob/jquery.knob.js",
    "content": "/*!jQuery Knob*/\n/**\n * Downward compatible, touchable dial\n *\n * Version: 1.2.8\n * Requires: jQuery v1.7+\n *\n * Copyright (c) 2012 Anthony Terrien\n * Under MIT License (http://www.opensource.org/licenses/mit-license.php)\n *\n * Thanks to vor, eskimoblood, spiffistan, FabrizioC\n */\n(function($) {\n\n    /**\n     * Kontrol library\n     */\n    \"use strict\";\n\n    /**\n     * Definition of globals and core\n     */\n    var k = {}, // kontrol\n        max = Math.max,\n        min = Math.min;\n\n    k.c = {};\n    k.c.d = $(document);\n    k.c.t = function (e) {\n        return e.originalEvent.touches.length - 1;\n    };\n\n    /**\n     * Kontrol Object\n     *\n     * Definition of an abstract UI control\n     *\n     * Each concrete component must call this one.\n     * <code>\n     * k.o.call(this);\n     * </code>\n     */\n    k.o = function () {\n        var s = this;\n\n        this.o = null; // array of options\n        this.$ = null; // jQuery wrapped element\n        this.i = null; // mixed HTMLInputElement or array of HTMLInputElement\n        this.g = null; // deprecated 2D graphics context for 'pre-rendering'\n        this.v = null; // value ; mixed array or integer\n        this.cv = null; // change value ; not commited value\n        this.x = 0; // canvas x position\n        this.y = 0; // canvas y position\n        this.w = 0; // canvas width\n        this.h = 0; // canvas height\n        this.$c = null; // jQuery canvas element\n        this.c = null; // rendered canvas context\n        this.t = 0; // touches index\n        this.isInit = false;\n        this.fgColor = null; // main color\n        this.pColor = null; // previous color\n        this.dH = null; // draw hook\n        this.cH = null; // change hook\n        this.eH = null; // cancel hook\n        this.rH = null; // release hook\n        this.scale = 1; // scale factor\n        this.relative = false;\n        this.relativeWidth = false;\n        this.relativeHeight = false;\n        this.$div = null; // component div\n\n        this.run = function () {\n            var cf = function (e, conf) {\n                var k;\n                for (k in conf) {\n                    s.o[k] = conf[k];\n                }\n                s._carve().init();\n                s._configure()\n                    ._draw();\n            };\n\n            if(this.$.data('kontroled')) return;\n            this.$.data('kontroled', true);\n\n            this.extend();\n            this.o = $.extend(\n                {\n                    // Config\n                    min : this.$.data('min') !== undefined ? this.$.data('min') : 0,\n                    max : this.$.data('max') !== undefined ? this.$.data('max') : 100,\n                    stopper : true,\n                    readOnly : this.$.data('readonly') || (this.$.attr('readonly') === 'readonly'),\n\n                    // UI\n                    cursor : (this.$.data('cursor') === true && 30) ||\n                        this.$.data('cursor') || 0,\n                    thickness : (\n                        this.$.data('thickness') &&\n                            Math.max(Math.min(this.$.data('thickness'), 1), 0.01)\n                        ) || 0.35,\n                    lineCap : this.$.data('linecap') || 'butt',\n                    width : this.$.data('width') || 200,\n                    height : this.$.data('height') || 200,\n                    displayInput : this.$.data('displayinput') == null || this.$.data('displayinput'),\n                    displayPrevious : this.$.data('displayprevious'),\n                    fgColor : this.$.data('fgcolor') || '#87CEEB',\n                    inputColor: this.$.data('inputcolor'),\n                    font: this.$.data('font') || 'Arial',\n                    fontWeight: this.$.data('font-weight') || 'bold',\n                    inline : false,\n                    step : this.$.data('step') || 1,\n                    rotation: this.$.data('rotation'),\n\n                    // Hooks\n                    draw : null, // function () {}\n                    change : null, // function (value) {}\n                    cancel : null, // function () {}\n                    release : null, // function (value) {}\n\n                    // Output formatting, allows to add unit: %, ms ...\n                    format: function(v) {\n                        return v;\n                    },\n                    parse: function (v) {\n                        return parseFloat(v);\n                    }\n                }, this.o\n            );\n\n            // finalize options\n            this.o.flip = this.o.rotation === 'anticlockwise' || this.o.rotation === 'acw';\n            if(!this.o.inputColor) {\n                this.o.inputColor = this.o.fgColor;\n            }\n\n            // routing value\n            if(this.$.is('fieldset')) {\n\n                // fieldset = array of integer\n                this.v = {};\n                this.i = this.$.find('input');\n                this.i.each(function(k) {\n                    var $this = $(this);\n                    s.i[k] = $this;\n                    s.v[k] = s.o.parse($this.val());\n\n                    $this.bind(\n                        'change blur'\n                        , function () {\n                            var val = {};\n                            val[k] = $this.val();\n                            s.val(val);\n                        }\n                    );\n                });\n                this.$.find('legend').remove();\n\n            } else {\n\n                // input = integer\n                this.i = this.$;\n                this.v = this.o.parse(this.$.val());\n                (this.v === '') && (this.v = this.o.min);\n\n                this.$.bind(\n                    'change blur'\n                    , function () {\n                        s.val(s._validate(s.o.parse(s.$.val())));\n                    }\n                );\n\n            }\n\n            (!this.o.displayInput) && this.$.hide();\n\n            // adds needed DOM elements (canvas, div)\n            this.$c = $(document.createElement('canvas')).attr({\n                width: this.o.width,\n                height: this.o.height\n            });\n\n            // wraps all elements in a div\n            // add to DOM before Canvas init is triggered\n            this.$div = $('<div style=\"'\n                + (this.o.inline ? 'display:inline;' : '')\n                + 'width:' + this.o.width + 'px;height:' + this.o.height + 'px;'\n                + '\"></div>');\n\n            this.$.wrap(this.$div).before(this.$c);\n            this.$div = this.$.parent();\n\n            if (typeof G_vmlCanvasManager !== 'undefined') {\n                G_vmlCanvasManager.initElement(this.$c[0]);\n            }\n\n            this.c = this.$c[0].getContext ? this.$c[0].getContext('2d') : null;\n\n            if (!this.c) {\n                throw {\n                    name:        \"CanvasNotSupportedException\",\n                    message:     \"Canvas not supported. Please use excanvas on IE8.0.\",\n                    toString:    function(){return this.name + \": \" + this.message}\n                }\n            }\n\n            // hdpi support\n            this.scale = (window.devicePixelRatio || 1) /\n                (\n                    this.c.webkitBackingStorePixelRatio ||\n                        this.c.mozBackingStorePixelRatio ||\n                        this.c.msBackingStorePixelRatio ||\n                        this.c.oBackingStorePixelRatio ||\n                        this.c.backingStorePixelRatio || 1\n                    );\n\n            // detects relative width / height\n            this.relativeWidth = ((this.o.width % 1 !== 0) &&\n                this.o.width.indexOf('%'));\n            this.relativeHeight = ((this.o.height % 1 !== 0) &&\n                this.o.height.indexOf('%'));\n            this.relative = (this.relativeWidth || this.relativeHeight);\n\n            // computes size and carves the component\n            this._carve();\n\n            // prepares props for transaction\n            if (this.v instanceof Object) {\n                this.cv = {};\n                this.copy(this.v, this.cv);\n            } else {\n                this.cv = this.v;\n            }\n\n            // binds configure event\n            this.$\n                .bind(\"configure\", cf)\n                .parent()\n                .bind(\"configure\", cf);\n\n            // finalize init\n            this._listen()\n                ._configure()\n                ._xy()\n                .init();\n\n            this.isInit = true;\n\n            this.$.val(this.o.format(this.v));\n            this._draw();\n\n            return this;\n        };\n\n        this._carve = function() {\n            if(this.relative) {\n                var w = this.relativeWidth ?\n                        this.$div.parent().width() *\n                            parseInt(this.o.width) / 100 :\n                        this.$div.parent().width(),\n                    h = this.relativeHeight ?\n                        this.$div.parent().height() *\n                            parseInt(this.o.height) / 100 :\n                        this.$div.parent().height();\n\n                // apply relative\n                this.w = this.h = Math.min(w, h);\n            } else {\n                this.w = this.o.width;\n                this.h = this.o.height;\n            }\n\n            // finalize div\n            this.$div.css({\n                'width': this.w + 'px',\n                'height': this.h + 'px'\n            });\n\n            // finalize canvas with computed width\n            this.$c.attr({\n                width: this.w,\n                height: this.h\n            });\n\n            // scaling\n            if (this.scale !== 1) {\n                this.$c[0].width = this.$c[0].width * this.scale;\n                this.$c[0].height = this.$c[0].height * this.scale;\n                this.$c.width(this.w);\n                this.$c.height(this.h);\n            }\n\n            return this;\n        }\n\n        this._draw = function () {\n\n            // canvas pre-rendering\n            var d = true;\n\n            s.g = s.c;\n\n            s.clear();\n\n            s.dH\n            && (d = s.dH());\n\n            (d !== false) && s.draw();\n\n        };\n\n        this._touch = function (e) {\n\n            var touchMove = function (e) {\n\n                var v = s.xy2val(\n                    e.originalEvent.touches[s.t].pageX,\n                    e.originalEvent.touches[s.t].pageY\n                );\n\n                if (v == s.cv) return;\n\n                if (s.cH && (s.cH(v) === false)) return;\n\n                s.change(s._validate(v));\n                s._draw();\n            };\n\n            // get touches index\n            this.t = k.c.t(e);\n\n            // First touch\n            touchMove(e);\n\n            // Touch events listeners\n            k.c.d\n                .bind(\"touchmove.k\", touchMove)\n                .bind(\n                \"touchend.k\"\n                , function () {\n                    k.c.d.unbind('touchmove.k touchend.k');\n                    s.val(s.cv);\n                }\n            );\n\n            return this;\n        };\n\n        this._mouse = function (e) {\n\n            var mouseMove = function (e) {\n                var v = s.xy2val(e.pageX, e.pageY);\n\n                if (v == s.cv) return;\n\n                if (s.cH && (s.cH(v) === false)) return;\n\n                s.change(s._validate(v));\n                s._draw();\n            };\n\n            // First click\n            mouseMove(e);\n\n            // Mouse events listeners\n            k.c.d\n                .bind(\"mousemove.k\", mouseMove)\n                .bind(\n                // Escape key cancel current change\n                \"keyup.k\"\n                , function (e) {\n                    if (e.keyCode === 27) {\n                        k.c.d.unbind(\"mouseup.k mousemove.k keyup.k\");\n\n                        if (\n                            s.eH\n                                && (s.eH() === false)\n                            ) return;\n\n                        s.cancel();\n                    }\n                }\n            )\n                .bind(\n                \"mouseup.k\"\n                , function (e) {\n                    k.c.d.unbind('mousemove.k mouseup.k keyup.k');\n                    s.val(s.cv);\n                }\n            );\n\n            return this;\n        };\n\n        this._xy = function () {\n            var o = this.$c.offset();\n            this.x = o.left;\n            this.y = o.top;\n            return this;\n        };\n\n        this._listen = function () {\n\n            if (!this.o.readOnly) {\n                this.$c\n                    .bind(\n                    \"mousedown\"\n                    , function (e) {\n                        e.preventDefault();\n                        s._xy()._mouse(e);\n                    }\n                )\n                    .bind(\n                    \"touchstart\"\n                    , function (e) {\n                        e.preventDefault();\n                        s._xy()._touch(e);\n                    }\n                );\n\n                this.listen();\n            } else {\n                this.$.attr('readonly', 'readonly');\n            }\n\n            if(this.relative) {\n                $(window).resize(function() {\n                    s._carve()\n                        .init();\n                    s._draw();\n                });\n            }\n\n            return this;\n        };\n\n        this._configure = function () {\n\n            // Hooks\n            if (this.o.draw) this.dH = this.o.draw;\n            if (this.o.change) this.cH = this.o.change;\n            if (this.o.cancel) this.eH = this.o.cancel;\n            if (this.o.release) this.rH = this.o.release;\n\n            if (this.o.displayPrevious) {\n                this.pColor = this.h2rgba(this.o.fgColor, \"0.4\");\n                this.fgColor = this.h2rgba(this.o.fgColor, \"0.6\");\n            } else {\n                this.fgColor = this.o.fgColor;\n            }\n\n            return this;\n        };\n\n        this._clear = function () {\n            this.$c[0].width = this.$c[0].width;\n        };\n\n        this._validate = function(v) {\n            return (~~ (((v < 0) ? -0.5 : 0.5) + (v/this.o.step))) * this.o.step;\n        };\n\n        // Abstract methods\n        this.listen = function () {}; // on start, one time\n        this.extend = function () {}; // each time configure triggered\n        this.init = function () {}; // each time configure triggered\n        this.change = function (v) {}; // on change\n        this.val = function (v) {}; // on release\n        this.xy2val = function (x, y) {}; //\n        this.draw = function () {}; // on change / on release\n        this.clear = function () { this._clear(); };\n\n        // Utils\n        this.h2rgba = function (h, a) {\n            var rgb;\n            h = h.substring(1,7)\n            rgb = [parseInt(h.substring(0,2),16)\n                ,parseInt(h.substring(2,4),16)\n                ,parseInt(h.substring(4,6),16)];\n            return \"rgba(\" + rgb[0] + \",\" + rgb[1] + \",\" + rgb[2] + \",\" + a + \")\";\n        };\n\n        this.copy = function (f, t) {\n            for (var i in f) { t[i] = f[i]; }\n        };\n    };\n\n\n    /**\n     * k.Dial\n     */\n    k.Dial = function () {\n        k.o.call(this);\n\n        this.startAngle = null;\n        this.xy = null;\n        this.radius = null;\n        this.lineWidth = null;\n        this.cursorExt = null;\n        this.w2 = null;\n        this.PI2 = 2*Math.PI;\n\n        this.extend = function () {\n            this.o = $.extend(\n                {\n                    bgColor : this.$.data('bgcolor') || '#EEEEEE',\n                    angleOffset : this.$.data('angleoffset') || 0,\n                    angleArc : this.$.data('anglearc') || 360,\n                    inline : true\n                }, this.o\n            );\n        };\n\n        this.val = function (v, triggerRelease) {\n            if (null != v) {\n\n                // reverse format\n                v = this.o.parse(v);\n\n                if (\n                    triggerRelease !== false && (v != this.v) && this.rH &&\n                        (this.rH(v) === false)\n                    ) return;\n\n                this.cv = this.o.stopper ? max(min(v, this.o.max), this.o.min) : v;\n                this.v = this.cv;\n                this.$.val(this.o.format(this.v));\n                this._draw();\n            } else {\n                return this.v;\n            }\n        };\n\n        this.xy2val = function (x, y) {\n            var a, ret;\n\n            a = Math.atan2(\n                x - (this.x + this.w2)\n                , - (y - this.y - this.w2)\n            ) - this.angleOffset;\n\n            if (this.o.flip) {\n                a = this.angleArc - a - this.PI2;\n            }\n\n            if(this.angleArc != this.PI2 && (a < 0) && (a > -0.5)) {\n                // if isset angleArc option, set to min if .5 under min\n                a = 0;\n            } else if (a < 0) {\n                a += this.PI2;\n            }\n\n            ret = ~~ (0.5 + (a * (this.o.max - this.o.min) / this.angleArc))\n                + this.o.min;\n\n            this.o.stopper && (ret = max(min(ret, this.o.max), this.o.min));\n\n            return ret;\n        };\n\n        this.listen = function () {\n            // bind MouseWheel\n            var s = this, mwTimerStop, mwTimerRelease,\n                mw = function (e) {\n                    e.preventDefault();\n\n                    var ori = e.originalEvent\n                        ,deltaX = ori.detail || ori.wheelDeltaX\n                        ,deltaY = ori.detail || ori.wheelDeltaY\n                        ,v = s._validate(s.o.parse(s.$.val()))\n                            + (deltaX>0 || deltaY>0 ? s.o.step : deltaX<0 || deltaY<0 ? -s.o.step : 0);\n\n                    v = max(min(v, s.o.max), s.o.min);\n\n                    s.val(v, false);\n\n                    if(s.rH) {\n                        // Handle mousewheel stop\n                        clearTimeout(mwTimerStop);\n                        mwTimerStop = setTimeout(function() {\n                            s.rH(v);\n                            mwTimerStop = null;\n                        }, 100);\n\n                        // Handle mousewheel releases\n                        if(!mwTimerRelease) {\n                            mwTimerRelease = setTimeout(function() {\n                                if(mwTimerStop) s.rH(v);\n                                mwTimerRelease = null;\n                            }, 200);\n                        }\n                    }\n                }\n                , kval, to, m = 1, kv = {37:-s.o.step, 38:s.o.step, 39:s.o.step, 40:-s.o.step};\n\n            this.$\n                .bind(\n                \"keydown\"\n                ,function (e) {\n                    var kc = e.keyCode;\n\n                    // numpad support\n                    if(kc >= 96 && kc <= 105) {\n                        kc = e.keyCode = kc - 48;\n                    }\n\n                    kval = parseInt(String.fromCharCode(kc));\n\n                    if (isNaN(kval)) {\n\n                        (kc !== 13)         // enter\n                            && (kc !== 8)       // bs\n                            && (kc !== 9)       // tab\n                            && (kc !== 189)     // -\n                            && (kc !== 190 || s.$.val().match(/\\./))     // . only allowed once\n                        && e.preventDefault();\n\n                        // arrows\n                        if ($.inArray(kc,[37,38,39,40]) > -1) {\n                            e.preventDefault();\n\n                            var v = s.o.parse(s.$.val()) + kv[kc] * m;\n                            s.o.stopper && (v = max(min(v, s.o.max), s.o.min));\n\n                            s.change(v);\n                            s._draw();\n\n                            // long time keydown speed-up\n                            to = window.setTimeout(\n                                function () { m *= 2; }, 30\n                            );\n                        }\n                    }\n                }\n            )\n                .bind(\n                \"keyup\"\n                ,function (e) {\n                    if (isNaN(kval)) {\n                        if (to) {\n                            window.clearTimeout(to);\n                            to = null;\n                            m = 1;\n                            s.val(s.$.val());\n                        }\n                    } else {\n                        // kval postcond\n                        (s.$.val() > s.o.max && s.$.val(s.o.max))\n                        || (s.$.val() < s.o.min && s.$.val(s.o.min));\n                    }\n\n                }\n            );\n\n            this.$c.bind(\"mousewheel DOMMouseScroll\", mw);\n            this.$.bind(\"mousewheel DOMMouseScroll\", mw)\n        };\n\n        this.init = function () {\n\n            if (\n                this.v < this.o.min\n                    || this.v > this.o.max\n                ) this.v = this.o.min;\n\n            this.$.val(this.v);\n            this.w2 = this.w / 2;\n            this.cursorExt = this.o.cursor / 100;\n            this.xy = this.w2 * this.scale;\n            this.lineWidth = this.xy * this.o.thickness;\n            this.lineCap = this.o.lineCap;\n            this.radius = this.xy - this.lineWidth / 2;\n\n            this.o.angleOffset\n            && (this.o.angleOffset = isNaN(this.o.angleOffset) ? 0 : this.o.angleOffset);\n\n            this.o.angleArc\n            && (this.o.angleArc = isNaN(this.o.angleArc) ? this.PI2 : this.o.angleArc);\n\n            // deg to rad\n            this.angleOffset = this.o.angleOffset * Math.PI / 180;\n            this.angleArc = this.o.angleArc * Math.PI / 180;\n\n            // compute start and end angles\n            this.startAngle = 1.5 * Math.PI + this.angleOffset;\n            this.endAngle = 1.5 * Math.PI + this.angleOffset + this.angleArc;\n\n            var s = max(\n                String(Math.abs(this.o.max)).length\n                , String(Math.abs(this.o.min)).length\n                , 2\n            ) + 2;\n\n            this.o.displayInput\n                && this.i.css({\n                'width' : ((this.w / 2 + 4) >> 0) + 'px'\n                ,'height' : ((this.w / 3) >> 0) + 'px'\n                ,'position' : 'absolute'\n                ,'vertical-align' : 'middle'\n                ,'margin-top' : ((this.w / 3) >> 0) + 'px'\n                ,'margin-left' : '-' + ((this.w * 3 / 4 + 2) >> 0) + 'px'\n                ,'border' : 0\n                ,'background' : 'none'\n                ,'font' : this.o.fontWeight + ' ' + ((this.w / s) >> 0) + 'px ' + this.o.font\n                ,'text-align' : 'center'\n                ,'color' : this.o.inputColor || this.o.fgColor\n                ,'padding' : '0px'\n                ,'-webkit-appearance': 'none'\n            })\n            || this.i.css({\n                'width' : '0px'\n                ,'visibility' : 'hidden'\n            });\n        };\n\n        this.change = function (v) {\n            this.cv = v;\n            this.$.val(this.o.format(v));\n        };\n\n        this.angle = function (v) {\n            return (v - this.o.min) * this.angleArc / (this.o.max - this.o.min);\n        };\n\n        this.arc = function (v) {\n            var sa, ea;\n            v = this.angle(v);\n            if (this.o.flip) {\n                sa = this.endAngle + 0.00001;\n                ea = sa - v - 0.00001;\n            } else {\n                sa = this.startAngle - 0.00001;\n                ea = sa + v + 0.00001;\n            }\n            this.o.cursor\n                && (sa = ea - this.cursorExt)\n            && (ea = ea + this.cursorExt);\n            return {\n                s: sa,\n                e: ea,\n                d: this.o.flip && !this.o.cursor\n            };\n        };\n\n        this.draw = function () {\n\n            var c = this.g,                 // context\n                a = this.arc(this.cv)       // Arc\n                , pa                        // Previous arc\n                , r = 1;\n\n            c.lineWidth = this.lineWidth;\n            c.lineCap = this.lineCap;\n\n            c.beginPath();\n            c.strokeStyle = this.o.bgColor;\n            c.arc(this.xy, this.xy, this.radius, this.endAngle - 0.00001, this.startAngle + 0.00001, true);\n            c.stroke();\n\n            if (this.o.displayPrevious) {\n                pa = this.arc(this.v);\n                c.beginPath();\n                c.strokeStyle = this.pColor;\n                c.arc(this.xy, this.xy, this.radius, pa.s, pa.e, pa.d);\n                c.stroke();\n                r = (this.cv == this.v);\n            }\n\n            c.beginPath();\n            c.strokeStyle = r ? this.o.fgColor : this.fgColor ;\n            c.arc(this.xy, this.xy, this.radius, a.s, a.e, a.d);\n            c.stroke();\n        };\n\n        this.cancel = function () {\n            this.val(this.v);\n        };\n    };\n\n    $.fn.dial = $.fn.knob = function (o) {\n        return this.each(\n            function () {\n                var d = new k.Dial();\n                d.o = o;\n                d.$ = $(this);\n                d.run();\n            }\n        ).parent();\n    };\n\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/justified-gallery/README.md",
    "content": "<div align=\"center\">\n  <a href=\"http://miromannino.com/projects/justified-gallery/\" target=\"_blank\">\n    <img alt=\"image\" src=\"https://raw.github.com/miromannino/Justified-Gallery/gh-imgs/jgcover.png\" />\n  </a>\n</div>\n\nThis is a JQuery plugin that allows you to create an high quality justified gallery of images. \n\nA common problem, for people who create sites, is to create an elegant image gallery that manages \nthe various sizes of images. Flickr and Google+ manage this situation in an excellent way, \nthe purpose of this plugin is to give you the power of this solutions, with a new fast algorithm.\n\nYou can read the entire description of this project \nin the <a href=\"http://miromannino.com/projects/justified-gallery/\">official project page</a>.\n"
  },
  {
    "path": "public/admin/js/plugins/justified-gallery/jquery.justifiedgallery.css",
    "content": "/* \nJustified Gallery\nVersion: 2.1\nAuthor: Miro Mannino\nAuthor URI: http://miromannino.it\n\nCopyright 2012 Miro Mannino (miro.mannino@gmail.com)\n\nThis file is part of Justified Gallery.\n\nThis work is licensed under the Creative Commons Attribution 3.0 Unported License. \n\nTo view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ \nor send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.\n*/\n\nhtml { overflow-y: scroll; } /*to prevent the loop when the scrollbar appear and disappear*/\n\n.justifiedGallery { width: 100%; margin-bottom: 10px; }\n.justifiedGallery .jg-image {\n    position: absolute;\n    display: inline-block;\n    vertical-align: top;\n    margin-left: 0px;\n}\n.justifiedGallery .jg-image img {\n    border: none;\n    margin: 0;\n    padding: 0;\n    display: none;\n}\n.justifiedGallery .jg-image a { text-decoration: none; }\n.justifiedGallery .jg-image-label {\n    white-space: normal;\n    font: normal 12px arial;\n    background: #000;\n    color: #fff;\n    position: absolute;\n    left: 0;\n    right: 0;\n    padding: 5px 5px 10px 8px;\n    text-align: left;\n    opacity: 0;\n    filter:alpha(opacity=0); /* IE8 or Earlier */\n}\n.justifiedGallery .jg-loading-img{\n    margin: auto;\n    width: 50px;\n    height: 50px;\n    background:url(loading.gif) no-repeat center center;\n}\n.justifiedGallery .jg-loading{\n    margin: auto;\n    width: 50px;\n    height: 50px;\n    -webkit-border-radius: 3px;\n    -moz-border-radius: 3px;\n    border-radius: 3px;\n}\n.justifiedGallery .jg-row {\n    position: relative;\n    white-space: nowrap;    \n    overflow:hidden;\n    margin-bottom: 4px;\n}\n\n.justifiedGallery .jg-error {\n    font-size: 12px; \n    border: 1px solid red; \n    background-color: #faa; \n    margin: 10px 0px 10px 0px; \n    padding: 5px 0px 5px 5px;\n}"
  },
  {
    "path": "public/admin/js/plugins/justified-gallery/jquery.justifiedgallery.js",
    "content": "/* \nJustified Gallery\nVersion: 2.1\nAuthor: Miro Mannino\nAuthor URI: http://miromannino.it\n\nCopyright 2012 Miro Mannino (miro.mannino@gmail.com)\n\nThis file is part of Justified Gallery.\n\nThis work is licensed under the Creative Commons Attribution 3.0 Unported License. \n\nTo view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ \nor send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.\n*/\n\n(function($){\n \n   $.fn.justifiedGallery = function(options){\n\n   \t\t//TODO fare impostazione 'rel' che sostituisce tutti i link con il rel specificato\n\n\t\tvar settings = $.extend( {\n\t\t\t'sizeRangeSuffixes' : {'lt100':'_t', 'lt240':'_m', 'lt320':'_n', 'lt500':'', 'lt640':'_z', 'lt1024':'_b'},\n\t\t\t'rowHeight' : 120,\n\t\t\t'margins' : 1,\n\t\t\t'justifyLastRow' : true,\n\t\t\t'fixedHeight' : false,\n\t\t\t'captions' : true,\n\t\t\t'rel' : null, //rewrite the rel of each analyzed links\n\t\t\t'target' : null, //rewrite the target of all links\n\t\t\t'extension' : /\\.[^.]+$/,\n\t\t\t'refreshTime' : 500,\n\t\t\t'onComplete' : null\n\t\t}, options);\n\n\t\tfunction getErrorHtml(message, classOfError){\n\t\t\treturn \"<div class=\\\"jg-error \" + classOfError + \"\\\"style=\\\"\\\">\" + message + \"</div>\";\n\t\t}\n\n\t\treturn this.each(function(index, cont){\n\t\t\t$(cont).addClass(\"justifiedGallery\");\n\n\t\t\tvar loaded = 0;\n\t\t\tvar images = new Array($(cont).find(\"img\").length);\n\n\t\t\tif(images.length == 0) return;\n\t\t\t\n\t\t\t$(cont).append(\"<div class=\\\"jg-loading\\\"><div class=\\\"jg-loading-img\\\"></div></div>\");\n\n\t\t\t$(cont).find(\"a\").each(function(index, entry){\n\t\t\t\tvar imgEntry = $(entry).find(\"img\");\n\n\t\t\t\timages[index] = new Array(5);\n\t\t\t\timages[index][\"src\"] = (typeof $(imgEntry).data(\"safe-src\") != 'undefined') ? $(imgEntry).data(\"safe-src\") : $(imgEntry).attr(\"src\");\n\t\t\t\timages[index][\"alt\"] = $(imgEntry).attr(\"alt\");\n\t\t\t\timages[index][\"href\"] = $(entry).attr(\"href\");\n\t\t\t\timages[index][\"title\"] = $(entry).attr(\"title\");\n\t\t\t\timages[index][\"rel\"] = (settings.rel != null) ? settings.rel : $(entry).attr(\"rel\");\n\t\t\t\timages[index][\"target\"] = (settings.target != null) ? settings.target : $(entry).attr(\"target\");\n\t\t\t\timages[index][\"extension\"] = images[index][\"src\"].match(settings.extension)[0];\n\t\t\t\t\n\t\t\t\t$(entry).remove(); //remove the image, we have its data\n\t\t\t\t\n\t\t\t\tvar img = new Image();\n  \n\t\t\t\t$(img).load(function() {\n\t\t\t\t\tif(images[index][\"height\"] != settings.rowHeight)\n\t\t\t\t\t\timages[index][\"width\"] = Math.ceil(this.width / (this.height / settings.rowHeight));\n\t\t\t\t\telse\n\t\t\t\t\t\timages[index][\"width\"] = this.width;\n\t\t\t\t\timages[index][\"height\"] = settings.rowHeight;\n\n\t\t\t\t\tvar usedSizeRangeRegExp = new RegExp(\"(\" + settings.sizeRangeSuffixes.lt100 + \"|\" \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t + settings.sizeRangeSuffixes.lt240 + \"|\"  \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t + settings.sizeRangeSuffixes.lt320 + \"|\" \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t + settings.sizeRangeSuffixes.lt500 + \"|\" \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t + settings.sizeRangeSuffixes.lt640 + \"|\" \n\t\t\t\t\t\t\t\t\t\t\t\t\t\t + settings.sizeRangeSuffixes.lt1024 + \")$\");\n\t\t\t\t\t\n\t\t\t\t\timages[index][\"src\"] = images[index][\"src\"].replace(settings.extension, \"\").replace(usedSizeRangeRegExp, \"\");\n\n\t\t    \t\tif(++loaded == images.length) startProcess(cont, images, settings);\n\t\t\t\t});\n\t\t\t\t\n\t\t\t\t$(img).error(function() {\n\t\t\t\t\t$(cont).prepend(getErrorHtml(\"The image can't be loaded: \\\"\" + images[index][\"src\"] +\"\\\"\", \"jg-usedPrefixImageNotFound\"));\n\t\t\t\t\timages[index] = null;\n\t\t\t\t\tif(++loaded == images.length) startProcess(cont, images, settings);\n\t\t\t\t});\n\t\t\t\t\n\t\t\t\t$(img).attr('src', images[index][\"src\"]);\n\n\t\t\t});\n\t\t});\n\t\t\n\t\tfunction startProcess(cont, images, settings){\n\t\t\t//FadeOut the loading image and FadeIn the images after their loading\n\t\t\t$(cont).find(\".jg-loading\").fadeOut(500, function(){\n\t\t\t\t$(this).remove(); //remove the loading image\n\t\t\t\tprocessesImages($, cont, images, 0, settings);\n\t\t\t\tif($.isFunction(settings.onComplete)) settings.onComplete.call(this, cont);\n\t\t\t});\n\t\t}\n\n\t\tfunction buildImage(image, suffix, nw, nh, l, minRowHeight, settings){\n\t\t\tvar ris;\n\t\t\tris =  \"<div class=\\\"jg-image\\\" style=\\\"left:\" + l + \"px\\\">\";\n\t\t\tris += \" <a href=\\\"\" + image[\"href\"] + \"\\\" \";\n\n\t\t\tif (typeof image[\"rel\"] != 'undefined') ris += \"rel=\\\"\" + image[\"rel\"] + \"\\\"\";\n\t\t\tif (typeof image[\"target\"] != 'undefined') ris += \"target=\\\"\" + image[\"target\"] + \"\\\"\";\n\n\t\t\tris +=     \"title=\\\"\" + image[\"title\"] + \"\\\">\";\n\t\t\tris += \"  <img alt=\\\"\" + image[\"alt\"] + \"\\\" src=\\\"\" + image[\"src\"] + suffix + image.extension + \"\\\"\";\n\t\t\tris +=        \"style=\\\"width: \" + nw + \"px; height: \" + nh + \"px;\\\">\";\n\t\t\t\n\t\t\tif(settings.captions)\n\t\t\t\tris += \"  <div style=\\\"bottom:\" + (nh - minRowHeight) + \"px;\\\" class=\\\"jg-image-label\\\">\" + image[\"alt\"] + \"</div>\";\n\n\t\t\tris += \" </a></div>\";\n\t\t\treturn ris;\n\t\t}\n\n\t\tfunction buildContRow(row, images, extraW, settings){\n\t\t\tvar j, l = 0;\n\t\t\tvar minRowHeight;\n\t\t\tfor(var j = 0; j < row.length; j++){\n\t\t\t\trow[j][\"nh\"] = Math.ceil(images[row[j][\"indx\"]][\"height\"] * \n\t\t\t\t\t            ((images[row[j][\"indx\"]][\"width\"] + extraW) / \n\t\t\t\t\t\t\t \timages[row[j][\"indx\"]][\"width\"]));\n\t\t\t\t\n\t\t\t\trow[j][\"nw\"] = images[row[j][\"indx\"]][\"width\"] + extraW;\n\n\t\t\t\trow[j][\"suffix\"] = getSuffix(row[j][\"nw\"], row[j][\"nh\"], settings);\n\n\t\t\t\trow[j][\"l\"] = l;\n\n\t\t\t\tif(!settings.fixedHeight){\n\t\t\t\t\tif(j == 0) \n\t\t\t\t\t\tminRowHeight = row[j][\"nh\"];\n\t\t\t\t\telse\n\t\t\t\t\t\tif(minRowHeight > row[j][\"nh\"]) minRowHeight = row[j][\"nh\"];\n\t\t\t\t}\n\t\t\t\t \n\t\t\t\tl += row[j][\"nw\"] + settings.margins;\n\t\t\t}\n\n\t\t\tif(settings.fixedHeight) minRowHeight = settings.rowHeight;\n\t\t\t\n\t\t\tvar rowCont = \"\";\n\t\t\tfor(var j = 0; j < row.length; j++){\n\t\t\t\trowCont += buildImage(images[row[j][\"indx\"]], row[j][\"suffix\"], \n\t\t\t\t\t                  row[j][\"nw\"], row[j][\"nh\"], row[j][\"l\"], minRowHeight, settings);\n\t\t\t}\n\t\t\t\n\t\t\treturn \"<div class=\\\"jg-row\\\" style=\\\"height: \" + minRowHeight + \"px; margin-bottom:\" + settings.margins + \"px;\\\">\" + rowCont + \"</div>\";\n\t\t}\n\n\t\tfunction getSuffix(nw, nh, settings){\n\t\t\tvar n;\n\t\t\tif(nw > nh) n = nw; else n = nh;\n\t\t\tif(n <= 100){\n\t\t\t\treturn settings.sizeRangeSuffixes.lt100; //thumbnail (longest side:100)\n\t\t\t}else if(n <= 240){\n\t\t\t\treturn settings.sizeRangeSuffixes.lt240; //small (longest side:240)\n\t\t\t}else if(n <= 320){\n\t\t\t\treturn settings.sizeRangeSuffixes.lt320; //small (longest side:320)\n\t\t\t}else if(n <= 500){\n\t\t\t\treturn settings.sizeRangeSuffixes.lt500; //small (longest side:320)\n\t\t\t}else if(n <= 640){\n\t\t\t\treturn settings.sizeRangeSuffixes.lt640; //medium (longest side:640)\n\t\t\t}else{\n\t\t\t\treturn settings.sizeRangeSuffixes.lt1024; //large (longest side:1024)\n\t\t\t}\n\t\t}\n\n\t\tfunction processesImages($, cont, images, lastRowWidth, settings){\t\n\t\t\tvar row = new Array();\n\t\t\tvar row_i, i;\n\t\t\tvar partialRowWidth = 0;\n\t\t\tvar extraW;\n\t\t\tvar rowWidth = $(cont).width();\n\n\t\t\tfor(i = 0, row_i = 0; i < images.length; i++){\n\t\t\t\tif(images[i] == null) continue;\n\t\t\t\tif(partialRowWidth + images[i][\"width\"] + settings.margins <= rowWidth){\n\t\t\t\t\t//we can add the image\n\t\t\t\t\tpartialRowWidth += images[i][\"width\"] + settings.margins;\n\t\t\t\t\trow[row_i] = new Array(5);\n\t\t\t\t\trow[row_i][\"indx\"] = i;\n\t\t\t\t\trow_i++;\n\t\t\t\t}else{\n\t\t\t\t\t//the row is full\n\t\t\t\t\textraW = Math.ceil((rowWidth - partialRowWidth + 1) / row.length); \n\t\t\t\t\t$(cont).append(buildContRow(row, images, extraW, settings));\n\n\t\t\t\t\trow = new Array();\n\t\t\t\t\trow[0] = new Array(5);\n\t\t\t\t\trow[0][\"indx\"] = i;\n\t\t\t\t\trow_i = 1;\n\t\t\t\t\tpartialRowWidth = images[i][\"width\"] + settings.margins;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t//last row----------------------\n\t\t\t//now we have all the images index loaded in the row arra\n\t\t\tif(settings.justifyLastRow){\n\t\t\t\textraW = Math.ceil((rowWidth - partialRowWidth + 1) / row.length);\t\n\t\t\t}else{\n\t\t\t\textraW = 0;\n\t\t\t}\n\t\t\t$(cont).append(buildContRow(row, images, extraW, settings));\n\t\t\t//---------------------------\n\n\t\t\t//Captions---------------------\n\t\t\tif(settings.captions){\n\t\t\t\t$(cont).find(\".jg-image\").mouseenter(function(sender){\n\t\t\t\t\t$(sender.currentTarget).find(\".jg-image-label\").stop();\n\t\t\t\t\t$(sender.currentTarget).find(\".jg-image-label\").fadeTo(500, 0.7);\n\t\t\t\t});\n\t\t\t\t$(cont).find(\".jg-image\").mouseleave(function(sender){\n\t\t\t\t\t$(sender.currentTarget).find(\".jg-image-label\").stop();\n\t\t\t\t\t$(sender.currentTarget).find(\".jg-image-label\").fadeTo(500, 0);\n\t\t\t\t});\n\t\t\t}\n\t\t\t\n\t\t\t$(cont).find(\".jg-resizedImageNotFound\").remove();\n\t\t\t\n\t\t\t//fade in the images that we have changed and need to be reloaded\n\t\t\t$(cont).find(\".jg-image img\").load(function(){\n\t\t\t\t\t$(this).fadeTo(500, 1);\n\t\t\t}).error(function(){\n\t\t\t\t$(cont).prepend(getErrorHtml(\"The image can't be loaded: \\\"\" +  $(this).attr(\"src\") +\"\\\"\", \"jg-resizedImageNotFound\"));\n\t\t\t}).each(function(){\n\t\t\t\t\tif(this.complete) $(this).load();\n\t\t\t});\n\n\t\t\tcheckWidth($, cont, images, rowWidth, settings);\t\n\t\t\t\n\t\t}\n\n\t\tfunction checkWidth($, cont, images, lastRowWidth, settings){\n\t\t\tvar id = setInterval(function(){\n\n\t\t\t\tif(lastRowWidth != $(cont).width()){\n\t\t\t\t\t$(cont).find(\".jg-row\").remove();\n\t\t\t\t\tclearInterval(id);\n\t\t\t\t\tprocessesImages($, cont, images, lastRowWidth, settings);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t}, settings.refreshTime);\n\t\t}\n\n   }\n \n})(jQuery);"
  },
  {
    "path": "public/admin/js/plugins/jvectormap/jquery-jvectormap-world-mill-en.js",
    "content": "$.fn.vectorMap('addMap', 'world_mill_en',{\"insets\": [{\"width\": 900.0, \"top\": 0, \"height\": 440.7063107441331, \"bbox\": [{\"y\": -12671671.123330014, \"x\": -20004297.151525836}, {\"y\": 6930392.02513512, \"x\": 20026572.394749384}], \"left\": 0}], \"paths\": {\"BD\": {\"path\": \"M652.71,228.85l-0.04,1.38l-0.46,-0.21l-0.42,0.3l0.05,0.65l-0.17,-1.37l-0.48,-1.26l-1.08,-1.6l-0.23,-0.13l-2.31,-0.11l-0.31,0.36l0.21,0.98l-0.6,1.11l-0.8,-0.4l-0.37,0.09l-0.23,0.3l-0.54,-0.21l-0.78,-0.19l-0.38,-2.04l-0.83,-1.89l0.4,-1.5l-0.16,-0.35l-1.24,-0.57l0.36,-0.62l1.5,-0.95l0.02,-0.49l-1.62,-1.26l0.64,-1.31l1.7,1.0l0.12,0.04l0.96,0.11l0.19,1.62l0.25,0.26l2.38,0.37l2.32,-0.04l1.06,0.33l-0.92,1.79l-0.97,0.13l-0.23,0.16l-0.77,1.51l0.05,0.35l1.37,1.37l0.5,-0.14l0.35,-1.46l0.24,-0.0l1.24,3.92Z\", \"name\": \"Bangladesh\"}, \"BE\": {\"path\": \"M429.28,143.95l1.76,0.25l0.13,-0.01l2.16,-0.64l1.46,1.34l1.26,0.71l-0.23,1.8l-0.44,0.08l-0.24,0.25l-0.2,1.36l-1.8,-1.22l-0.23,-0.05l-1.14,0.23l-1.62,-1.43l-1.15,-1.31l-0.21,-0.1l-0.95,-0.04l-0.21,-0.68l1.66,-0.54Z\", \"name\": \"Belgium\"}, \"BF\": {\"path\": \"M413.48,260.21l-1.22,-0.46l-0.13,-0.02l-1.17,0.1l-0.15,0.06l-0.73,0.53l-0.87,-0.41l-0.39,-0.75l-0.13,-0.13l-0.98,-0.48l-0.14,-1.2l0.63,-0.99l0.05,-0.18l-0.05,-0.73l1.9,-2.01l0.08,-0.14l0.35,-1.65l0.49,-0.44l1.05,0.3l0.21,-0.02l1.05,-0.52l0.13,-0.13l0.3,-0.58l1.87,-1.1l0.11,-0.1l0.43,-0.72l2.23,-1.01l1.21,-0.32l0.51,0.4l0.19,0.06l1.25,-0.01l-0.14,0.89l0.01,0.13l0.34,1.16l0.06,0.11l1.35,1.59l0.07,1.13l0.24,0.28l2.64,0.53l-0.05,1.39l-0.42,0.59l-1.11,0.21l-0.22,0.17l-0.46,0.99l-0.69,0.23l-2.12,-0.05l-1.14,-0.2l-0.19,0.03l-0.72,0.36l-1.07,-0.17l-4.35,0.12l-0.29,0.29l-0.06,1.44l0.25,1.45Z\", \"name\": \"Burkina Faso\"}, \"BG\": {\"path\": \"M477.63,166.84l0.51,0.9l0.33,0.14l0.9,-0.21l1.91,0.47l3.68,0.16l0.17,-0.05l1.2,-0.75l2.78,-0.67l1.72,1.05l1.02,0.24l-0.97,0.97l-0.91,2.17l0.0,0.24l0.56,1.19l-1.58,-0.3l-0.16,0.01l-2.55,0.95l-0.2,0.28l-0.02,1.23l-1.92,0.24l-1.68,-0.99l-0.27,-0.02l-1.94,0.8l-1.52,-0.07l-0.15,-1.72l-0.12,-0.21l-0.99,-0.76l0.18,-0.18l0.02,-0.39l-0.17,-0.22l0.33,-0.75l0.91,-0.91l0.01,-0.42l-1.16,-1.25l-0.18,-0.89l0.24,-0.27Z\", \"name\": \"Bulgaria\"}, \"BA\": {\"path\": \"M468.39,164.66l0.16,0.04l0.43,-0.0l-0.43,0.93l0.06,0.34l1.08,1.06l-0.28,1.09l-0.5,0.13l-0.47,0.28l-0.86,0.74l-0.1,0.16l-0.28,1.29l-1.81,-0.94l-0.9,-1.22l-1.0,-0.73l-1.1,-1.1l-0.55,-0.96l-1.11,-1.3l0.3,-0.75l0.59,0.46l0.42,-0.04l0.46,-0.54l1.0,-0.06l2.11,0.5l1.72,-0.03l1.06,0.64Z\", \"name\": \"Bosnia and Herzegovina\"}, \"BN\": {\"path\": \"M707.34,273.57l0.76,-0.72l1.59,-1.03l-0.18,1.93l-0.9,-0.06l-0.28,0.14l-0.31,0.51l-0.68,-0.78Z\", \"name\": \"Brunei\"}, \"BO\": {\"path\": \"M263.83,340.79l-0.23,-0.12l-2.86,-0.11l-0.28,0.17l-0.77,1.67l-1.17,-1.51l-0.18,-0.11l-3.28,-0.64l-0.28,0.1l-2.02,2.3l-1.43,0.29l-0.91,-3.35l-1.31,-2.88l0.75,-2.41l-0.09,-0.32l-1.23,-1.03l-0.31,-1.76l-0.05,-0.12l-1.12,-1.6l1.49,-2.62l0.01,-0.28l-1.0,-2.0l0.48,-0.72l0.02,-0.29l-0.37,-0.78l0.87,-1.13l0.06,-0.18l0.05,-2.17l0.12,-1.71l0.5,-0.8l0.01,-0.3l-1.9,-3.58l1.3,0.15l1.34,-0.05l0.23,-0.12l0.51,-0.7l2.12,-0.99l1.31,-0.93l2.81,-0.37l-0.21,1.51l0.01,0.13l0.29,0.91l-0.19,1.64l0.11,0.27l2.72,2.27l0.15,0.07l2.71,0.41l0.92,0.88l0.12,0.07l1.64,0.49l1.0,0.71l0.18,0.06l1.5,-0.02l1.24,0.64l0.1,1.31l0.05,0.14l0.44,0.68l0.02,0.73l-0.44,0.03l-0.27,0.39l0.96,2.99l0.28,0.21l4.43,0.1l-0.28,1.12l0.0,0.15l0.27,1.02l0.15,0.19l1.27,0.67l0.52,1.42l-0.42,1.91l-0.66,1.1l-0.04,0.2l0.21,1.3l-0.19,0.13l-0.01,-0.27l-0.15,-0.24l-2.33,-1.33l-0.14,-0.04l-2.38,-0.03l-4.36,0.76l-0.21,0.16l-1.2,2.29l-0.03,0.13l-0.06,1.37l-0.79,2.53l-0.05,-0.08Z\", \"name\": \"Bolivia\"}, \"JP\": {\"path\": \"M781.17,166.78l1.8,0.67l0.28,-0.04l1.38,-1.01l0.43,2.67l-3.44,0.77l-0.18,0.12l-2.04,2.79l-3.71,-1.94l-0.42,0.15l-1.29,3.11l-2.32,0.04l-0.3,-2.63l1.12,-2.1l2.51,-0.16l0.28,-0.25l0.73,-4.22l0.58,-1.9l2.59,2.84l2.0,1.1ZM773.66,187.36l-0.92,2.24l-0.01,0.2l0.4,1.3l-1.18,1.81l-3.06,1.28l-4.35,0.17l-0.19,0.08l-3.4,3.06l-1.36,-0.87l-0.1,-1.95l-0.34,-0.28l-4.35,0.62l-2.99,1.33l-2.87,0.05l-0.28,0.2l0.09,0.33l2.37,1.93l-1.57,4.44l-1.35,0.97l-0.9,-0.79l0.57,-2.32l-0.15,-0.34l-1.5,-0.77l-0.81,-1.53l2.04,-0.75l0.14,-0.1l1.28,-1.72l2.47,-1.43l1.84,-1.92l4.83,-0.82l2.62,0.57l0.33,-0.16l2.45,-4.77l1.38,1.14l0.38,0.0l5.1,-4.02l0.09,-0.11l1.57,-3.57l0.02,-0.16l-0.42,-3.22l0.94,-1.67l2.27,-0.47l1.26,3.82l-0.07,2.23l-2.26,2.86l-0.06,0.19l0.04,2.93ZM757.85,196.18l0.22,0.66l-1.11,1.33l-0.8,-0.7l-0.33,-0.04l-1.28,0.65l-0.14,0.15l-0.54,1.34l-1.17,-0.57l0.02,-1.03l1.2,-1.45l1.24,0.28l0.29,-0.1l0.9,-1.03l1.51,0.5Z\", \"name\": \"Japan\"}, \"BI\": {\"path\": \"M494.7,295.83l-0.14,-2.71l-0.04,-0.13l-0.34,-0.62l0.93,0.12l0.3,-0.16l0.67,-1.25l0.9,0.11l0.11,0.76l0.08,0.16l0.46,0.48l0.02,0.56l-0.55,0.48l-0.96,1.29l-0.82,0.82l-0.61,0.07Z\", \"name\": \"Burundi\"}, \"BJ\": {\"path\": \"M427.4,268.94l-1.58,0.22l-0.52,-1.45l0.11,-5.73l-0.08,-0.21l-0.43,-0.44l-0.09,-1.13l-0.09,-0.19l-1.52,-1.52l0.24,-1.01l0.7,-0.23l0.18,-0.16l0.45,-0.97l1.07,-0.21l0.19,-0.12l0.53,-0.73l0.73,-0.65l0.68,-0.0l1.69,1.3l-0.08,0.67l0.02,0.14l0.52,1.38l-0.44,0.9l-0.01,0.24l0.2,0.52l-1.1,1.42l-0.76,0.76l-0.08,0.13l-0.47,1.59l0.05,1.69l-0.13,3.79Z\", \"name\": \"Benin\"}, \"BT\": {\"path\": \"M650.38,213.78l0.88,0.75l-0.13,1.24l-1.77,0.07l-2.1,-0.18l-1.57,0.4l-2.02,-0.91l-0.02,-0.24l1.54,-1.87l1.18,-0.6l1.67,0.59l1.32,0.08l1.01,0.67Z\", \"name\": \"Bhutan\"}, \"JM\": {\"path\": \"M226.67,238.37l1.64,0.23l1.2,0.56l0.11,0.19l-1.25,0.03l-0.14,0.04l-0.65,0.37l-1.24,-0.37l-1.17,-0.77l0.11,-0.22l0.86,-0.15l0.52,0.08Z\", \"name\": \"Jamaica\"}, \"BW\": {\"path\": \"M484.91,331.96l0.53,0.52l0.82,1.53l2.83,2.86l0.14,0.08l0.85,0.22l0.03,0.81l0.74,1.66l0.21,0.17l1.87,0.39l1.17,0.87l-3.13,1.71l-2.3,2.01l-0.07,0.1l-0.82,1.74l-0.66,0.88l-1.24,0.19l-0.24,0.2l-0.65,1.98l-1.4,0.55l-1.9,-0.12l-1.2,-0.74l-1.06,-0.32l-0.22,0.02l-1.22,0.62l-0.14,0.14l-0.58,1.21l-1.16,0.79l-1.18,1.13l-1.5,0.23l-0.4,-0.68l0.22,-1.53l-0.04,-0.19l-1.48,-2.54l-0.11,-0.11l-0.53,-0.31l-0.0,-7.25l2.18,-0.08l0.29,-0.3l0.07,-9.0l1.63,-0.08l3.69,-0.86l0.84,0.93l0.38,0.05l1.53,-0.97l0.79,-0.03l1.3,-0.53l0.23,0.1l0.92,1.96Z\", \"name\": \"Botswana\"}, \"BR\": {\"path\": \"M259.49,274.87l1.42,0.25l1.97,0.62l0.28,-0.05l0.67,-0.55l1.76,-0.38l2.8,-0.94l0.12,-0.08l0.92,-0.96l0.05,-0.33l-0.15,-0.32l0.73,-0.06l0.36,0.35l-0.27,0.93l0.17,0.36l0.76,0.34l0.44,0.9l-0.58,0.73l-0.06,0.13l-0.4,2.13l0.03,0.19l0.62,1.22l0.17,1.11l0.11,0.19l1.54,1.18l0.15,0.06l1.23,0.12l0.29,-0.15l0.2,-0.36l0.71,-0.11l1.13,-0.44l0.79,-0.63l1.25,0.19l0.65,-0.08l1.32,0.2l0.32,-0.18l0.23,-0.51l-0.05,-0.31l-0.31,-0.37l0.11,-0.31l0.75,0.17l0.13,0.0l1.1,-0.24l1.34,0.5l1.08,0.51l0.33,-0.05l0.67,-0.58l0.27,0.05l0.28,0.57l0.31,0.17l1.2,-0.18l0.17,-0.08l1.03,-1.05l0.76,-1.82l1.39,-2.16l0.49,-0.07l0.52,1.17l1.4,4.37l0.2,0.2l1.14,0.35l0.05,1.39l-1.8,1.97l0.01,0.42l0.78,0.75l0.18,0.08l4.16,0.37l0.08,2.25l0.5,0.22l1.78,-1.54l2.98,0.85l4.07,1.5l1.07,1.28l-0.37,1.23l0.36,0.38l2.83,-0.75l4.8,1.3l3.75,-0.09l3.6,2.02l3.27,2.84l1.93,0.72l2.13,0.11l0.76,0.66l1.22,4.56l-0.96,4.03l-1.22,1.58l-3.52,3.51l-1.63,2.91l-1.75,2.09l-0.5,0.04l-0.26,0.19l-0.72,1.99l0.18,4.76l-0.95,5.56l-0.74,0.96l-0.06,0.15l-0.43,3.39l-2.49,3.34l-0.06,0.13l-0.4,2.56l-1.9,1.07l-0.13,0.16l-0.51,1.38l-2.59,0.0l-3.94,1.01l-1.82,1.19l-2.85,0.81l-3.01,2.17l-2.12,2.65l-0.06,0.13l-0.36,2.0l0.01,0.13l0.4,1.42l-0.45,2.63l-0.53,1.23l-1.76,1.53l-2.76,4.79l-2.16,2.15l-1.69,1.29l-0.09,0.12l-1.12,2.6l-1.3,1.26l-0.45,-1.02l0.99,-1.18l0.01,-0.37l-1.5,-1.95l-1.98,-1.54l-2.58,-1.77l-0.2,-0.05l-0.81,0.07l-2.42,-2.05l-0.25,-0.07l-0.77,0.14l2.75,-3.07l2.8,-2.61l1.67,-1.09l2.11,-1.49l0.13,-0.24l0.05,-2.15l-0.07,-0.2l-1.26,-1.54l-0.35,-0.09l-0.64,0.27l0.3,-0.95l0.34,-1.57l0.01,-1.52l-0.16,-0.26l-0.9,-0.48l-0.27,-0.01l-0.86,0.39l-0.65,-0.08l-0.23,-0.8l-0.23,-2.39l-0.04,-0.12l-0.47,-0.79l-0.14,-0.12l-1.69,-0.71l-0.25,0.01l-0.93,0.47l-2.29,-0.44l0.15,-3.3l-0.03,-0.15l-0.62,-1.22l0.57,-0.39l0.13,-0.3l-0.22,-1.37l0.67,-1.13l0.44,-2.04l-0.01,-0.17l-0.59,-1.61l-0.14,-0.16l-1.25,-0.66l-0.22,-0.82l0.35,-1.41l-0.28,-0.37l-4.59,-0.1l-0.78,-2.41l0.34,-0.02l0.28,-0.31l-0.03,-1.1l-0.05,-0.16l-0.45,-0.68l-0.1,-1.4l-0.16,-0.24l-1.45,-0.76l-0.14,-0.03l-1.48,0.02l-1.04,-0.73l-1.62,-0.48l-0.93,-0.9l-0.16,-0.08l-2.72,-0.41l-2.53,-2.12l0.18,-1.54l-0.01,-0.13l-0.29,-0.91l0.26,-1.83l-0.34,-0.34l-3.28,0.43l-0.14,0.05l-1.3,0.93l-2.16,1.01l-0.12,0.09l-0.47,0.65l-1.12,0.05l-1.84,-0.21l-0.12,0.01l-1.33,0.41l-0.82,-0.21l0.16,-3.6l-0.48,-0.26l-1.97,1.43l-1.96,-0.06l-0.86,-1.23l-0.22,-0.13l-1.23,-0.11l0.34,-0.69l-0.05,-0.33l-1.36,-1.5l-0.92,-2.0l0.45,-0.32l0.13,-0.25l-0.0,-0.87l1.34,-0.64l0.17,-0.32l-0.23,-1.23l0.56,-0.77l0.05,-0.13l0.16,-1.03l2.7,-1.61l2.01,-0.47l0.16,-0.09l0.24,-0.27l2.11,0.11l0.31,-0.25l1.13,-6.87l0.06,-1.12l-0.4,-1.53l-0.1,-0.15l-1.0,-0.82l0.01,-1.45l1.08,-0.32l0.39,0.2l0.44,-0.24l0.08,-0.96l-0.25,-0.32l-1.22,-0.22l-0.02,-1.01l4.57,0.05l0.22,-0.09l0.6,-0.63l0.44,0.5l0.47,1.42l0.45,0.16l0.27,-0.18l1.21,1.16l0.23,0.08l1.95,-0.16l0.23,-0.14l0.43,-0.67l1.76,-0.55l1.05,-0.42l0.18,-0.2l0.25,-0.92l1.65,-0.66l0.18,-0.35l-0.14,-0.53l-0.26,-0.22l-1.91,-0.19l-0.29,-1.33l0.1,-1.64l-0.15,-0.28l-0.44,-0.25Z\", \"name\": \"Brazil\"}, \"BS\": {\"path\": \"M227.51,216.69l0.3,0.18l-0.24,1.07l0.03,-1.04l-0.09,-0.21ZM226.5,224.03l-0.13,0.03l-0.54,-1.3l-0.09,-0.12l-0.78,-0.64l0.4,-1.26l0.33,0.05l0.79,2.0l0.01,1.24ZM225.76,216.5l-2.16,0.34l-0.07,-0.41l0.85,-0.16l1.36,0.07l0.02,0.16Z\", \"name\": \"The Bahamas\"}, \"BY\": {\"path\": \"M480.08,135.28l2.09,0.02l0.13,-0.03l2.72,-1.3l0.16,-0.19l0.55,-1.83l1.94,-1.06l0.15,-0.31l-0.2,-1.33l1.33,-0.52l2.58,-1.3l2.39,0.8l0.3,0.75l0.37,0.17l1.22,-0.39l2.18,0.75l0.2,1.36l-0.48,0.85l0.01,0.32l1.57,2.26l0.92,0.6l-0.1,0.41l0.19,0.35l1.61,0.57l0.48,0.6l-0.64,0.49l-1.91,-0.11l-0.18,0.05l-0.48,0.32l-0.1,0.39l0.57,1.1l0.51,1.78l-1.79,0.17l-0.18,0.08l-0.77,0.73l-0.09,0.19l-0.13,1.31l-0.75,-0.22l-2.11,0.15l-0.56,-0.66l-0.39,-0.06l-0.8,0.49l-0.79,-0.4l-0.13,-0.03l-1.94,-0.07l-2.76,-0.79l-2.58,-0.27l-1.98,0.07l-0.15,0.05l-1.31,0.86l-0.8,0.09l-0.04,-1.16l-0.03,-0.12l-0.63,-1.28l1.22,-0.56l0.17,-0.27l0.01,-1.35l-0.04,-0.15l-0.66,-1.24l-0.08,-1.12Z\", \"name\": \"Belarus\"}, \"BZ\": {\"path\": \"M198.03,239.7l0.28,0.19l0.43,-0.1l0.82,-1.42l0.0,0.07l0.29,0.29l0.16,0.0l-0.02,0.35l-0.39,1.08l0.02,0.25l0.16,0.29l-0.23,0.8l0.04,0.24l0.09,0.14l-0.25,1.12l-0.38,0.53l-0.33,0.06l-0.21,0.15l-0.41,0.74l-0.25,0.0l0.17,-2.58l0.01,-2.2Z\", \"name\": \"Belize\"}, \"RU\": {\"path\": \"M688.57,38.85l0.63,2.39l0.44,0.19l2.22,-1.23l7.18,0.07l5.54,2.49l1.85,1.77l-0.55,2.34l-2.64,1.42l-6.57,2.76l-1.95,1.5l0.12,0.53l3.09,0.68l3.69,1.23l0.21,-0.01l1.98,-0.81l1.16,2.84l0.5,0.08l1.03,-1.18l3.86,-0.74l7.79,0.78l0.56,2.05l0.27,0.22l10.47,0.71l0.32,-0.29l0.13,-3.34l4.98,0.8l3.96,-0.02l3.88,2.43l1.06,2.79l-1.38,1.83l0.01,0.38l3.15,3.64l0.1,0.08l3.94,1.86l0.4,-0.14l2.28,-4.56l3.75,1.94l0.22,0.02l4.18,-1.22l4.76,1.4l0.26,-0.04l1.74,-1.23l3.98,0.63l0.32,-0.41l-1.71,-4.1l3.0,-1.86l22.39,3.04l2.06,2.67l0.1,0.08l6.55,3.51l0.17,0.03l10.08,-0.86l4.86,0.73l1.91,1.72l-0.29,3.13l0.18,0.31l3.08,1.26l0.19,0.01l3.32,-0.9l4.37,-0.11l4.78,0.87l4.61,-0.48l4.26,3.82l0.32,0.05l3.1,-1.4l0.12,-0.45l-1.91,-2.67l0.92,-1.64l7.78,1.22l5.22,-0.26l7.12,2.1l9.6,5.22l6.4,4.15l-0.2,2.44l0.14,0.28l1.69,1.04l0.45,-0.31l-0.51,-2.66l6.31,0.58l4.52,3.61l-2.1,1.52l-4.02,0.42l-0.27,0.29l-0.06,3.83l-0.81,0.67l-2.14,-0.11l-1.91,-1.39l-3.19,-1.13l-0.51,-1.63l-0.21,-0.2l-2.54,-0.67l-0.13,-0.0l-2.69,0.5l-1.12,-1.19l0.48,-1.36l-0.38,-0.39l-3.0,0.98l-0.17,0.44l1.02,1.76l-1.27,1.55l-3.09,1.71l-3.15,-0.29l-0.3,0.18l0.07,0.34l2.22,2.1l1.47,3.22l1.15,1.09l0.25,1.41l-0.48,0.76l-4.47,-0.81l-0.17,0.02l-6.97,2.9l-2.2,0.44l-0.11,0.05l-3.83,2.68l-3.63,2.32l-0.1,0.11l-0.76,1.4l-3.3,-2.4l-0.3,-0.03l-6.31,2.85l-0.99,-1.21l-0.4,-0.06l-2.32,1.54l-3.23,-0.49l-0.33,0.2l-0.79,2.39l-2.97,3.51l-0.07,0.21l0.09,1.47l0.22,0.27l2.62,0.74l-0.3,4.7l-2.06,0.12l-0.26,0.2l-1.07,2.94l0.04,0.27l0.83,1.19l-4.03,1.63l-0.18,0.21l-0.83,3.72l-3.55,0.79l-0.23,0.23l-0.73,3.32l-3.22,2.76l-0.76,-1.88l-1.07,-4.88l-1.39,-7.59l1.17,-4.76l2.05,-2.08l0.09,-0.19l0.11,-1.46l3.67,-0.77l0.15,-0.08l4.47,-4.61l4.29,-3.82l4.48,-3.01l0.11,-0.14l2.01,-5.43l-0.31,-0.4l-3.04,0.33l-0.24,0.17l-1.47,3.11l-5.98,3.94l-1.91,-4.36l-0.33,-0.17l-6.46,1.3l-0.15,0.08l-6.27,6.33l-0.01,0.41l1.7,1.87l-5.04,0.87l-3.51,0.34l0.16,-2.32l-0.26,-0.32l-3.89,-0.56l-0.19,0.04l-3.02,1.77l-7.63,-0.63l-8.24,1.1l-0.16,0.07l-8.11,7.09l-9.6,8.31l0.16,0.52l3.79,0.42l1.16,2.03l0.17,0.14l2.43,0.76l0.31,-0.08l1.5,-1.61l2.49,0.2l3.46,3.6l0.08,2.67l-1.91,3.26l-0.04,0.14l-0.21,3.91l-1.11,5.09l-3.73,4.55l-0.87,2.21l-6.73,7.14l-1.59,1.77l-3.23,1.72l-1.38,0.03l-1.48,-1.39l-0.37,-0.03l-3.36,2.22l-0.11,0.14l-0.16,0.42l-0.01,-1.09l1.0,-0.06l0.28,-0.27l0.36,-3.6l-0.61,-2.51l1.85,-0.94l2.94,0.53l0.32,-0.15l1.71,-3.1l0.84,-3.38l0.97,-1.18l1.32,-2.88l-0.34,-0.42l-4.14,0.95l-2.18,1.25l-3.51,-0.0l-0.95,-2.81l-0.1,-0.14l-2.97,-2.3l-0.11,-0.05l-4.19,-1.0l-0.89,-3.08l-0.87,-2.03l-0.95,-1.46l-1.54,-3.37l-0.12,-0.14l-2.27,-1.28l-3.83,-1.02l-3.37,0.1l-3.11,0.61l-0.13,0.06l-2.07,1.69l0.04,0.49l1.23,0.72l0.03,1.53l-1.34,1.05l-2.26,3.51l-0.05,0.17l0.02,1.27l-3.25,1.9l-2.87,-1.17l-0.14,-0.02l-2.86,0.26l-1.22,-1.02l-0.12,-0.06l-1.5,-0.35l-0.23,0.04l-3.62,2.27l-3.24,0.53l-2.28,0.79l-3.08,-0.51l-2.24,0.03l-1.49,-1.61l-2.45,-1.57l-0.11,-0.04l-2.6,-0.43l-3.17,0.43l-2.31,0.59l-3.31,-1.28l-0.45,-2.31l-0.21,-0.23l-2.94,-0.85l-2.26,-0.39l-2.77,-1.36l-0.37,0.09l-2.59,3.45l-0.03,0.32l0.91,1.74l-2.15,2.01l-3.47,-0.79l-2.44,-0.12l-1.59,-1.46l-0.2,-0.08l-2.55,-0.05l-2.12,-0.98l-0.24,-0.01l-3.85,1.57l-4.74,2.79l-2.59,0.55l-0.79,0.21l-1.21,-1.81l-0.29,-0.13l-3.05,0.41l-0.96,-1.25l-0.14,-0.1l-1.65,-0.6l-1.15,-1.82l-0.13,-0.12l-1.38,-0.6l-0.19,-0.02l-3.49,0.82l-3.35,-1.85l-0.38,0.08l-1.08,1.4l-5.36,-8.17l-3.02,-2.52l0.72,-0.85l0.01,-0.38l-0.37,-0.08l-6.22,3.21l-1.98,0.16l0.17,-1.51l-0.2,-0.31l-3.22,-1.17l-0.19,-0.0l-2.3,0.74l-0.72,-3.27l-0.24,-0.23l-4.5,-0.75l-0.21,0.04l-2.2,1.42l-6.21,1.27l-0.11,0.05l-1.16,0.81l-9.3,1.19l-0.18,0.09l-1.15,1.17l-0.02,0.39l1.56,2.01l-2.02,0.74l-0.16,0.42l0.35,0.68l-2.18,1.49l0.02,0.51l3.83,2.16l-0.45,1.13l-3.31,-0.13l-0.25,0.12l-0.57,0.77l-2.97,-1.59l-0.15,-0.04l-3.97,0.07l-0.13,0.03l-2.53,1.32l-2.84,-1.28l-5.52,-2.3l-0.12,-0.02l-3.91,0.09l-0.16,0.05l-5.17,3.6l-0.13,0.21l-0.25,1.89l-2.17,-1.6l-0.44,0.1l-2.0,3.59l0.06,0.37l0.55,0.5l-1.32,2.23l0.04,0.36l2.13,2.17l0.23,0.09l1.7,-0.08l1.42,1.89l-0.23,1.5l0.19,0.32l0.94,0.38l-0.89,1.44l-2.3,0.49l-0.17,0.11l-2.49,3.2l0.0,0.37l2.2,2.81l-0.23,1.93l0.06,0.22l2.56,3.32l-1.27,1.02l-0.4,0.66l-0.8,-0.15l-1.65,-1.75l-0.18,-0.09l-0.66,-0.09l-1.45,-0.64l-0.72,-1.16l-0.18,-0.13l-2.34,-0.63l-0.17,0.0l-1.32,0.41l-0.31,-0.4l-0.12,-0.09l-3.49,-1.48l-3.67,-0.49l-2.1,-0.52l-0.3,0.1l-0.12,0.14l-2.96,-2.4l-2.89,-1.19l-1.69,-1.42l1.27,-0.35l0.16,-0.1l2.08,-2.61l-0.04,-0.41l-1.02,-0.9l3.21,-1.12l0.2,-0.31l-0.07,-0.69l-0.37,-0.26l-1.86,0.42l0.05,-0.86l1.11,-0.76l2.35,-0.23l0.25,-0.19l0.39,-1.07l0.0,-0.19l-0.51,-1.64l0.95,-1.58l0.04,-0.16l-0.03,-0.95l-0.22,-0.28l-3.69,-1.06l-1.43,0.02l-1.45,-1.44l-0.29,-0.08l-1.83,0.49l-2.88,-1.04l0.04,-0.42l-0.04,-0.18l-0.89,-1.43l-0.23,-0.14l-1.77,-0.14l-0.13,-0.66l0.52,-0.56l0.01,-0.4l-1.6,-1.9l-0.27,-0.1l-2.55,0.32l-0.71,-0.16l-0.3,0.1l-0.53,0.63l-0.58,-0.08l-0.56,-1.97l-0.48,-0.94l0.17,-0.11l1.92,0.11l0.2,-0.06l0.97,-0.74l0.05,-0.42l-0.72,-0.91l-0.13,-0.1l-1.43,-0.51l0.09,-0.36l-0.13,-0.33l-0.97,-0.59l-1.43,-2.06l0.44,-0.77l0.04,-0.19l-0.25,-1.64l-0.2,-0.24l-2.45,-0.84l-0.19,-0.0l-1.05,0.34l-0.25,-0.62l-0.18,-0.17l-2.5,-0.84l-0.74,-1.93l-0.21,-1.7l-0.13,-0.21l-0.92,-0.63l0.83,-0.89l0.07,-0.27l-0.71,-3.26l1.69,-2.01l0.03,-0.34l-0.24,-0.41l2.63,-1.9l-0.01,-0.49l-2.31,-1.57l5.08,-4.61l2.33,-2.24l1.01,-2.08l-0.09,-0.37l-3.52,-2.56l0.94,-2.38l-0.04,-0.29l-2.14,-2.86l1.61,-3.35l-0.01,-0.29l-2.81,-4.58l2.19,-3.04l-0.06,-0.42l-3.7,-2.76l0.32,-2.67l1.87,-0.38l4.26,-1.77l2.46,-1.47l3.96,2.58l0.12,0.05l6.81,1.04l9.37,4.87l1.81,1.92l0.15,2.55l-2.61,2.06l-3.95,1.07l-11.1,-3.15l-0.17,0.0l-1.84,0.53l-0.1,0.53l3.97,2.97l0.15,1.77l0.16,4.14l0.19,0.27l3.21,1.22l1.94,1.03l0.44,-0.22l0.32,-1.94l-0.07,-0.25l-1.32,-1.52l1.25,-1.2l5.87,2.45l0.24,-0.01l2.11,-0.98l0.13,-0.42l-1.55,-2.75l5.52,-3.84l2.13,0.22l2.28,1.42l0.43,-0.12l1.46,-2.87l-0.04,-0.33l-1.97,-2.37l1.14,-2.38l-0.02,-0.3l-1.42,-2.07l6.15,1.22l1.14,1.92l-2.74,0.46l-0.25,0.3l0.02,2.36l0.12,0.24l1.97,1.44l0.25,0.05l3.87,-0.91l0.22,-0.23l0.58,-2.55l5.09,-1.98l8.67,-3.69l1.22,0.14l-2.06,2.2l0.18,0.5l3.11,0.45l0.23,-0.07l1.71,-1.41l4.59,-0.12l0.12,-0.03l3.53,-1.72l2.7,2.48l0.42,-0.01l2.85,-2.88l-0.0,-0.43l-2.42,-2.35l1.0,-1.13l7.2,1.31l3.42,1.36l9.06,4.97l0.39,-0.08l1.67,-2.27l-0.04,-0.4l-2.46,-2.23l-0.06,-0.82l-0.26,-0.27l-2.64,-0.38l0.69,-1.76l0.0,-0.22l-1.32,-3.47l-0.07,-1.27l4.52,-4.09l0.08,-0.11l1.6,-4.18l1.67,-0.84l6.33,1.2l0.46,2.31l-2.31,3.67l0.05,0.38l1.49,1.41l0.77,3.04l-0.56,6.05l0.09,0.24l2.62,2.54l-0.99,2.65l-4.87,5.96l0.17,0.48l2.86,0.61l0.31,-0.13l0.94,-1.42l2.67,-1.04l0.18,-0.19l0.64,-2.01l2.11,-1.98l0.05,-0.37l-1.38,-2.32l1.11,-2.74l-0.24,-0.41l-2.53,-0.33l-0.53,-2.16l1.96,-4.42l-0.05,-0.32l-3.03,-3.48l4.21,-2.94l0.12,-0.3l-0.52,-3.04l0.72,-0.06l1.18,2.35l-0.97,4.39l0.2,0.35l2.68,0.84l0.37,-0.38l-1.05,-3.07l3.89,-1.71l5.05,-0.24l4.55,2.62l0.36,-0.05l0.05,-0.36l-2.19,-3.84l-0.23,-4.78l4.07,-0.92l5.98,0.21l5.47,-0.64l0.2,-0.48l-1.88,-2.37l2.65,-2.99l2.75,-0.13l0.12,-0.03l4.82,-2.48l6.56,-0.67l0.23,-0.14l0.76,-1.27l6.33,-0.46l1.97,1.11l0.28,0.01l5.55,-2.71l4.53,0.08l0.29,-0.21l0.67,-2.18l2.29,-2.15l5.75,-2.13l3.48,1.4l-2.7,1.03l-0.19,0.31l0.26,0.26l5.47,0.78ZM871.83,65.73l0.25,-0.15l1.99,0.01l3.3,1.2l-0.08,0.22l-2.41,1.03l-5.73,0.49l-0.31,-1.0l2.99,-1.8ZM797.64,48.44l-2.22,1.51l-3.85,-0.43l-4.35,-1.85l0.42,-1.13l4.42,0.72l5.59,1.17ZM783.82,46.06l-1.71,3.25l-9.05,-0.14l-4.11,1.15l-4.64,-3.04l1.21,-3.13l3.11,-0.91l6.53,0.22l8.66,2.59ZM780.37,145.71l2.28,5.23l-3.09,-0.89l-0.37,0.19l-1.54,4.65l0.04,0.27l2.38,3.17l-0.05,1.4l-1.41,-1.41l-0.46,0.04l-1.23,1.81l-0.33,-1.86l0.28,-3.1l-0.28,-3.41l0.58,-2.46l0.11,-4.39l-0.03,-0.13l-1.44,-3.2l0.21,-4.39l2.19,-1.49l0.09,-0.41l-0.81,-1.3l0.48,-0.21l0.56,1.94l0.86,3.23l-0.05,3.36l1.03,3.35ZM780.16,57.18l-3.4,0.03l-5.06,-0.53l1.97,-1.59l2.95,-0.42l3.35,1.75l0.18,0.77ZM683.84,31.18l-13.29,1.97l4.16,-6.56l1.88,-0.58l1.77,0.34l6.08,3.02l-0.6,1.8ZM670.94,28.02l-5.18,0.65l-6.89,-1.58l-4.03,-2.07l-1.88,-3.98l-0.18,-0.16l-2.8,-0.93l5.91,-3.62l5.25,-1.29l4.73,2.88l5.63,5.44l-0.57,4.66ZM564.37,68.98l-0.85,0.23l-7.93,-0.57l-0.6,-1.84l-0.21,-0.2l-4.34,-1.18l-0.3,-2.08l2.34,-0.92l0.19,-0.29l-0.08,-2.43l4.85,-4.0l-0.12,-0.52l-1.68,-0.43l5.47,-3.94l0.11,-0.33l-0.6,-2.02l5.36,-2.55l8.22,-3.27l8.29,-0.96l4.34,-1.94l4.67,-0.65l1.45,1.72l-1.43,1.37l-8.8,2.52l-7.65,2.42l-7.92,4.84l-3.73,4.75l-3.92,4.58l-0.07,0.23l0.51,3.88l0.11,0.2l4.32,3.39ZM548.86,18.57l-3.28,0.75l-2.25,0.44l-0.22,0.19l-0.3,0.81l-2.67,0.86l-2.27,-1.14l1.2,-1.51l-0.23,-0.49l-3.14,-0.1l2.48,-0.54l3.55,-0.07l0.44,1.36l0.49,0.12l1.4,-1.35l2.2,-0.9l3.13,1.08l-0.54,0.49ZM477.5,133.25l-4.21,0.05l-2.69,-0.34l0.39,-1.03l3.24,-1.06l2.51,0.58l0.85,0.43l-0.2,0.71l-0.0,0.15l0.12,0.52Z\", \"name\": \"Russia\"}, \"RW\": {\"path\": \"M497.03,288.12l0.78,1.11l-0.12,1.19l-0.49,0.21l-1.25,-0.15l-0.3,0.16l-0.67,1.24l-1.01,-0.13l0.16,-0.92l0.22,-0.12l0.15,-0.24l0.09,-1.37l0.49,-0.48l0.42,0.18l0.25,-0.01l1.26,-0.65Z\", \"name\": \"Rwanda\"}, \"RS\": {\"path\": \"M469.75,168.65l0.21,-0.21l0.36,-1.44l-0.08,-0.29l-1.06,-1.03l0.54,-1.16l-0.28,-0.43l-0.26,0.0l0.55,-0.67l-0.01,-0.39l-0.77,-0.86l-0.45,-0.89l1.56,-0.67l1.39,0.12l1.22,1.1l0.26,0.91l0.16,0.19l1.38,0.66l0.17,1.12l0.14,0.21l1.46,0.9l0.35,-0.03l0.62,-0.54l0.09,0.06l-0.28,0.25l-0.03,0.42l0.29,0.34l-0.44,0.5l-0.07,0.26l0.22,1.12l0.07,0.14l1.02,1.1l-0.81,0.84l-0.42,0.96l0.04,0.3l0.12,0.15l-0.15,0.16l-1.04,0.04l-0.39,0.08l0.33,-0.81l-0.29,-0.41l-0.21,0.01l-0.39,-0.45l-0.13,-0.09l-0.32,-0.11l-0.27,-0.4l-0.14,-0.11l-0.4,-0.16l-0.31,-0.37l-0.34,-0.09l-0.45,0.17l-0.18,0.18l-0.29,0.84l-0.96,-0.65l-0.81,-0.33l-0.32,-0.37l-0.22,-0.18Z\", \"name\": \"Republic of Serbia\"}, \"LT\": {\"path\": \"M478.13,133.31l-0.14,-0.63l0.25,-0.88l-0.15,-0.35l-1.17,-0.58l-2.43,-0.57l-0.45,-2.51l2.58,-0.97l4.14,0.22l2.3,-0.32l0.26,0.54l0.22,0.17l1.26,0.22l2.25,1.6l0.19,1.23l-1.87,1.01l-0.14,0.18l-0.54,1.83l-2.54,1.21l-2.18,-0.02l-0.52,-0.91l-0.18,-0.14l-1.11,-0.32Z\", \"name\": \"Lithuania\"}, \"LU\": {\"path\": \"M435.95,147.99l0.33,0.49l-0.11,1.07l-0.39,0.04l-0.29,-0.15l0.21,-1.4l0.25,-0.05Z\", \"name\": \"Luxembourg\"}, \"LR\": {\"path\": \"M401.37,273.67l-0.32,0.01l-2.48,-1.15l-2.24,-1.89l-2.14,-1.38l-1.47,-1.42l0.44,-0.59l0.05,-0.13l0.12,-0.65l1.07,-1.3l1.08,-1.09l0.52,-0.07l0.43,-0.18l0.84,1.24l-0.15,0.89l0.07,0.25l0.49,0.54l0.22,0.1l0.71,0.01l0.27,-0.16l0.42,-0.83l0.19,0.02l-0.06,0.52l0.23,1.12l-0.5,1.03l0.06,0.35l0.73,0.69l0.14,0.08l0.71,0.15l0.92,0.91l0.06,0.76l-0.17,0.22l-0.06,0.15l-0.17,1.8Z\", \"name\": \"Liberia\"}, \"RO\": {\"path\": \"M477.94,155.19l1.02,-0.64l1.49,0.33l1.52,0.01l1.09,0.73l0.32,0.01l0.81,-0.46l1.8,-0.3l0.18,-0.1l0.54,-0.64l0.86,0.0l0.64,0.26l0.71,0.87l0.8,1.35l1.39,1.81l0.07,1.25l-0.26,1.3l0.01,0.15l0.45,1.42l0.15,0.18l1.12,0.57l0.25,0.01l1.05,-0.45l0.86,0.4l0.03,0.43l-0.92,0.51l-0.63,-0.24l-0.4,0.22l-0.64,3.41l-1.12,-0.24l-1.78,-1.09l-0.23,-0.04l-2.95,0.71l-1.25,0.77l-3.55,-0.16l-1.89,-0.47l-0.14,-0.0l-0.75,0.17l-0.61,-1.07l-0.3,-0.36l0.36,-0.32l-0.04,-0.48l-0.62,-0.38l-0.36,0.03l-0.62,0.54l-1.15,-0.71l-0.18,-1.14l-0.17,-0.22l-1.4,-0.67l-0.24,-0.86l-0.09,-0.14l-0.96,-0.87l1.49,-0.44l0.16,-0.11l1.51,-2.14l1.15,-2.09l1.44,-0.63Z\", \"name\": \"Romania\"}, \"GW\": {\"path\": \"M383.03,256.73l-1.12,-0.88l-0.14,-0.06l-0.94,-0.15l-0.43,-0.54l0.01,-0.27l-0.13,-0.26l-0.68,-0.48l-0.05,-0.16l0.99,-0.31l0.77,0.08l0.15,-0.02l0.61,-0.26l4.25,0.1l-0.02,0.44l-0.19,0.18l-0.08,0.29l0.17,0.66l-0.17,0.14l-0.44,0.0l-0.16,0.05l-0.57,0.37l-0.66,-0.04l-0.24,0.1l-0.92,1.03Z\", \"name\": \"Guinea Bissau\"}, \"GT\": {\"path\": \"M195.13,249.89l-1.05,-0.35l-1.5,-0.04l-1.06,-0.47l-1.19,-0.93l0.04,-0.53l0.27,-0.55l-0.03,-0.31l-0.24,-0.32l1.02,-1.77l3.04,-0.01l0.3,-0.28l0.06,-0.88l-0.19,-0.3l-0.3,-0.11l-0.23,-0.45l-0.11,-0.12l-0.9,-0.58l-0.35,-0.33l0.37,-0.0l0.3,-0.3l0.0,-1.15l4.05,0.02l-0.02,1.74l-0.2,2.89l0.3,0.32l0.67,-0.0l0.75,0.42l0.4,-0.11l-0.62,0.53l-1.17,0.7l-0.13,0.16l-0.18,0.49l0.0,0.21l0.14,0.34l-0.35,0.44l-0.49,0.13l-0.2,0.41l0.03,0.06l-0.27,0.16l-0.86,0.64l-0.12,0.22ZM199.35,245.38l0.07,-0.13l0.05,0.02l-0.13,0.11Z\", \"name\": \"Guatemala\"}, \"GR\": {\"path\": \"M487.2,174.55l-0.64,1.54l-0.43,0.24l-1.41,-0.08l-1.28,-0.28l-0.14,0.0l-3.03,0.77l-0.13,0.51l1.39,1.34l-0.78,0.29l-1.2,0.0l-1.23,-1.42l-0.47,0.02l-0.47,0.65l-0.04,0.27l0.56,1.76l0.06,0.11l1.02,1.12l-0.66,0.45l-0.04,0.46l1.39,1.35l1.15,0.79l0.02,1.06l-1.91,-0.63l-0.36,0.42l0.56,1.12l-1.2,0.23l-0.22,0.4l0.8,2.14l-1.15,0.02l-1.89,-1.15l-0.89,-2.19l-0.43,-1.91l-0.05,-0.11l-0.98,-1.35l-1.24,-1.62l-0.13,-0.63l1.07,-1.32l0.06,-0.14l0.13,-0.81l0.68,-0.36l0.16,-0.25l0.03,-0.54l1.4,-0.23l0.12,-0.05l0.87,-0.6l1.26,0.05l0.25,-0.11l0.34,-0.43l0.33,-0.07l1.81,0.08l0.13,-0.02l1.87,-0.77l1.64,0.97l0.19,0.04l2.28,-0.28l0.26,-0.29l0.02,-0.95l0.56,0.36ZM480.44,192.0l1.05,0.74l0.01,0.0l-1.26,-0.23l0.2,-0.51ZM481.76,192.79l1.86,-0.15l1.53,0.17l-0.02,0.19l0.34,0.3l-2.28,0.15l0.01,-0.13l-0.25,-0.31l-1.19,-0.22ZM485.65,193.28l0.65,-0.16l-0.05,0.12l-0.6,0.04Z\", \"name\": \"Greece\"}, \"GQ\": {\"path\": \"M444.81,282.04l-0.21,-0.17l0.74,-2.4l3.56,0.05l0.02,2.42l-3.34,-0.02l-0.76,0.13Z\", \"name\": \"Equatorial Guinea\"}, \"GY\": {\"path\": \"M271.34,264.25l1.43,0.81l1.44,1.53l0.06,1.19l0.28,0.28l0.84,0.05l2.13,1.92l-0.34,1.93l-1.37,0.59l-0.17,0.34l0.12,0.51l-0.43,1.21l0.03,0.26l1.11,1.82l0.26,0.14l0.56,0.0l0.32,1.29l1.25,1.78l-0.08,0.01l-1.34,-0.21l-0.24,0.06l-0.78,0.64l-1.06,0.41l-0.76,0.1l-0.22,0.15l-0.18,0.32l-0.95,-0.1l-1.38,-1.05l-0.19,-1.13l-0.6,-1.18l0.37,-1.96l0.65,-0.83l0.03,-0.32l-0.57,-1.17l-0.15,-0.14l-0.62,-0.27l0.25,-0.85l-0.08,-0.3l-0.58,-0.58l-0.24,-0.09l-1.15,0.1l-1.41,-1.58l0.48,-0.49l0.09,-0.22l-0.04,-0.92l1.31,-0.34l0.73,-0.52l0.04,-0.44l-0.75,-0.82l0.16,-0.66l1.74,-1.3Z\", \"name\": \"Guyana\"}, \"GE\": {\"path\": \"M525.41,174.19l0.26,-0.88l-0.0,-0.17l-0.63,-2.06l-0.1,-0.15l-1.45,-1.12l-0.11,-0.05l-1.31,-0.33l-0.66,-0.69l1.97,0.48l3.65,0.49l3.3,1.41l0.39,0.5l0.33,0.1l1.43,-0.45l2.14,0.58l0.7,1.14l0.13,0.12l1.06,0.47l-0.18,0.11l-0.08,0.43l1.08,1.41l-0.06,0.06l-1.16,-0.15l-1.82,-0.84l-0.31,0.04l-0.55,0.44l-3.29,0.44l-2.32,-1.41l-0.17,-0.04l-2.25,0.12Z\", \"name\": \"Georgia\"}, \"GB\": {\"path\": \"M412.82,118.6l-2.31,3.4l-0.0,0.33l0.31,0.13l2.52,-0.49l2.34,0.02l-0.56,2.51l-2.22,3.13l0.22,0.47l2.43,0.21l2.35,4.35l0.17,0.14l1.58,0.51l1.49,3.78l0.73,1.37l0.2,0.15l2.76,0.59l-0.25,1.75l-1.18,0.91l-0.08,0.39l0.87,1.49l-1.96,1.51l-3.31,-0.02l-4.15,0.88l-1.07,-0.59l-0.35,0.04l-1.55,1.44l-2.17,-0.35l-0.22,0.05l-1.61,1.15l-0.78,-0.38l3.31,-3.12l2.18,-0.7l0.21,-0.31l-0.26,-0.27l-3.78,-0.54l-0.48,-0.9l2.3,-0.92l0.13,-0.46l-1.29,-1.71l0.39,-1.83l3.46,0.29l0.32,-0.24l0.37,-1.99l-0.06,-0.24l-1.71,-2.17l-0.18,-0.11l-2.91,-0.58l-0.43,-0.68l0.82,-1.4l-0.03,-0.35l-0.82,-0.97l-0.46,0.01l-0.85,1.05l-0.11,-2.6l-0.05,-0.16l-1.19,-1.7l0.86,-3.53l1.81,-2.75l1.88,0.26l2.38,-0.24ZM406.39,132.84l-1.09,1.92l-1.65,-0.62l-1.26,0.02l0.41,-1.46l0.0,-0.16l-0.42,-1.51l1.62,-0.11l2.39,1.92Z\", \"name\": \"United Kingdom\"}, \"GA\": {\"path\": \"M448.76,294.47l-2.38,-2.34l-1.63,-2.04l-1.46,-2.48l0.06,-0.66l0.54,-0.81l0.61,-1.82l0.46,-1.69l0.63,-0.11l3.62,0.03l0.3,-0.3l-0.02,-2.75l0.88,-0.12l1.47,0.32l0.13,0.0l1.39,-0.3l-0.13,0.87l0.03,0.19l0.7,1.29l0.3,0.16l1.74,-0.19l0.36,0.29l-1.01,2.7l0.05,0.29l1.13,1.42l0.25,1.82l-0.3,1.56l-0.64,0.99l-1.93,-0.09l-1.26,-1.13l-0.5,0.17l-0.16,0.91l-1.48,0.27l-0.12,0.05l-0.86,0.63l-0.08,0.39l0.81,1.42l-1.48,1.08Z\", \"name\": \"Gabon\"}, \"GN\": {\"path\": \"M399.83,265.31l-0.69,-0.06l-0.3,0.16l-0.43,0.85l-0.39,-0.01l-0.3,-0.33l0.14,-0.87l-0.05,-0.22l-1.05,-1.54l-0.37,-0.11l-0.61,0.27l-0.84,0.12l0.02,-0.54l-0.04,-0.17l-0.35,-0.57l0.07,-0.63l-0.03,-0.17l-0.57,-1.11l-0.7,-0.9l-0.24,-0.12l-2.0,-0.0l-0.19,0.07l-0.51,0.42l-0.6,0.05l-0.21,0.11l-0.43,0.55l-0.3,0.7l-1.04,0.86l-0.91,-1.24l-1.0,-1.02l-0.69,-0.37l-0.52,-0.42l-0.3,-1.11l-0.37,-0.56l-0.1,-0.1l-0.4,-0.23l0.77,-0.85l0.62,0.04l0.18,-0.05l0.58,-0.38l0.46,-0.0l0.19,-0.07l0.39,-0.34l0.1,-0.3l-0.17,-0.67l0.15,-0.14l0.09,-0.2l0.03,-0.57l0.87,0.02l1.76,0.6l0.13,0.01l0.55,-0.06l0.22,-0.13l0.08,-0.12l1.18,0.17l0.17,-0.02l0.09,0.56l0.3,0.25l0.4,-0.0l0.14,-0.03l0.56,-0.29l0.23,0.05l0.63,0.59l0.15,0.07l1.07,0.2l0.24,-0.06l0.65,-0.52l0.77,-0.32l0.55,-0.32l0.3,0.04l0.44,0.45l0.34,0.74l0.84,0.87l-0.35,0.45l-0.06,0.15l-0.1,0.82l0.42,0.31l0.35,-0.16l0.05,0.04l-0.1,0.59l0.09,0.27l0.42,0.4l-0.06,0.02l-0.18,0.21l-0.2,0.86l0.03,0.21l0.56,1.02l0.52,1.71l-0.65,0.21l-0.15,0.12l-0.24,0.35l-0.03,0.28l0.16,0.41l-0.1,0.76l-0.12,0.0Z\", \"name\": \"Guinea\"}, \"GM\": {\"path\": \"M379.18,251.48l0.15,-0.55l2.51,-0.07l0.21,-0.09l0.48,-0.52l0.58,-0.03l0.91,0.58l0.16,0.05l0.78,0.01l0.14,-0.03l0.59,-0.31l0.16,0.24l-0.71,0.38l-0.94,-0.04l-1.02,-0.51l-0.3,0.01l-0.86,0.55l-0.37,0.02l-0.14,0.04l-0.53,0.31l-1.81,-0.04Z\", \"name\": \"Gambia\"}, \"GL\": {\"path\": \"M304.13,6.6l8.19,-3.63l8.72,0.28l0.19,-0.06l3.12,-2.28l8.75,-0.61l19.94,0.8l14.93,4.75l-3.92,2.01l-9.52,0.27l-13.48,0.6l-0.27,0.2l0.09,0.33l1.26,1.09l0.22,0.07l8.81,-0.67l7.49,2.07l0.19,-0.01l4.68,-1.78l1.76,1.84l-2.59,3.26l-0.01,0.36l0.34,0.11l6.35,-2.2l12.09,-2.32l7.31,1.14l1.17,2.13l-9.9,4.05l-1.43,1.32l-7.91,0.98l-0.26,0.31l0.29,0.29l5.25,0.25l-2.63,3.72l-2.02,3.61l-0.04,0.15l0.08,6.05l0.07,0.19l2.61,3.0l-3.4,0.2l-4.12,1.66l-0.04,0.54l4.5,2.67l0.53,3.9l-2.39,0.42l-0.19,0.48l2.91,3.83l-5.0,0.32l-0.27,0.22l0.12,0.33l2.69,1.84l-0.65,1.35l-3.36,0.71l-3.46,0.01l-0.21,0.51l3.05,3.15l0.02,1.53l-4.54,-1.79l-0.32,0.06l-1.29,1.26l0.11,0.5l3.33,1.15l3.17,2.74l0.85,3.29l-4.0,0.78l-1.83,-1.66l-3.1,-2.64l-0.36,-0.02l-0.13,0.33l0.8,2.92l-2.76,2.26l-0.09,0.33l0.28,0.2l6.59,0.19l2.47,0.18l-5.86,3.38l-6.76,3.43l-7.26,1.48l-2.73,0.02l-0.16,0.05l-2.67,1.72l-3.44,4.42l-5.28,2.86l-1.73,0.18l-3.33,1.01l-3.59,0.96l-0.15,0.1l-2.15,2.52l-0.07,0.19l-0.03,2.76l-1.21,2.49l-4.03,3.1l-0.1,0.33l0.98,2.94l-2.31,6.57l-3.21,0.21l-3.6,-3.0l-0.19,-0.07l-4.9,-0.02l-2.29,-1.97l-1.69,-3.78l-4.31,-4.86l-1.23,-2.52l-0.34,-3.58l-0.08,-0.17l-3.35,-3.67l0.85,-2.92l-0.09,-0.31l-1.5,-1.34l2.33,-4.7l3.67,-1.57l0.15,-0.13l1.02,-1.93l0.52,-3.47l-0.44,-0.31l-2.85,1.57l-1.33,0.64l-2.12,0.59l-2.81,-1.32l-0.15,-2.79l0.88,-2.17l2.09,-0.06l5.07,1.2l0.34,-0.17l-0.11,-0.37l-4.3,-2.9l-2.24,-1.58l-0.25,-0.05l-2.38,0.62l-1.7,-0.93l2.62,-4.1l-0.03,-0.36l-1.51,-1.75l-1.97,-3.3l-3.01,-5.21l-0.1,-0.11l-3.04,-1.85l0.03,-1.94l-0.18,-0.28l-6.82,-3.01l-5.35,-0.38l-6.69,0.21l-6.03,0.37l-2.81,-1.59l-3.84,-2.9l5.94,-1.5l5.01,-0.28l0.28,-0.29l-0.26,-0.31l-10.68,-1.38l-5.38,-2.1l0.27,-1.68l9.3,-2.6l9.18,-2.68l0.19,-0.16l0.97,-2.05l-0.18,-0.42l-6.29,-1.91l1.81,-1.9l8.58,-4.05l3.6,-0.63l0.23,-0.4l-0.92,-2.37l5.59,-1.5l7.66,-0.95l7.58,-0.05l2.65,1.84l0.31,0.02l6.52,-3.29l5.85,2.24l3.55,0.49l5.17,1.95l0.38,-0.16l-0.13,-0.39l-5.77,-3.16l0.29,-2.26Z\", \"name\": \"Greenland\"}, \"KW\": {\"path\": \"M540.87,207.81l0.41,0.94l-0.18,0.51l0.0,0.21l0.65,1.66l-1.15,0.05l-0.54,-1.12l-0.24,-0.17l-1.73,-0.2l1.44,-2.06l1.33,0.18Z\", \"name\": \"Kuwait\"}, \"GH\": {\"path\": \"M423.16,269.88l-3.58,1.34l-1.41,0.87l-2.13,0.69l-1.91,-0.61l0.09,-0.75l-0.03,-0.17l-1.04,-2.07l0.62,-2.7l1.04,-2.08l0.03,-0.19l-1.0,-5.46l0.05,-1.12l4.04,-0.11l1.08,0.18l0.18,-0.03l0.72,-0.36l0.75,0.13l-0.11,0.48l0.06,0.26l0.98,1.22l-0.0,1.77l0.24,1.99l0.05,0.13l0.55,0.81l-0.52,2.14l0.19,1.37l0.69,1.66l0.38,0.62Z\", \"name\": \"Ghana\"}, \"OM\": {\"path\": \"M568.16,231.0l-0.08,0.1l-0.84,1.61l-0.93,-0.11l-0.27,0.11l-0.58,0.73l-0.4,1.32l-0.01,0.14l0.29,1.61l-0.07,0.09l-1.0,-0.01l-0.16,0.04l-1.56,0.97l-0.14,0.2l-0.23,1.17l-0.41,0.4l-1.44,-0.02l-0.17,0.05l-0.98,0.65l-0.13,0.25l0.01,0.87l-0.97,0.57l-1.27,-0.22l-0.19,0.03l-1.63,0.84l-0.88,0.11l-2.55,-5.57l7.2,-2.49l0.19,-0.19l1.67,-5.23l-0.03,-0.25l-1.1,-1.78l0.05,-0.89l0.68,-1.03l0.05,-0.16l0.01,-0.89l0.96,-0.44l0.07,-0.5l-0.32,-0.26l0.16,-1.31l0.85,-0.01l1.03,1.67l0.09,0.09l1.4,0.96l0.11,0.05l1.82,0.34l1.37,0.45l1.75,2.32l0.13,0.1l0.7,0.26l-0.0,0.3l-1.25,2.19l-1.01,0.8ZM561.88,218.47l-0.01,0.02l-0.15,-0.29l0.3,-0.38l-0.14,0.65Z\", \"name\": \"Oman\"}, \"_3\": {\"path\": \"M543.2,261.06l-1.07,1.46l-1.65,1.99l-1.91,0.01l-8.08,-2.95l-0.89,-0.84l-0.9,-1.19l-0.81,-1.23l0.44,-0.73l0.76,-1.12l0.49,0.28l0.52,1.05l1.13,1.06l0.2,0.08l1.24,0.01l2.42,-0.65l2.77,-0.31l2.17,-0.78l1.31,-0.19l0.84,-0.43l1.03,-0.06l-0.01,4.54Z\", \"name\": \"Somaliland\"}, \"_2\": {\"path\": \"M384.23,230.37l0.07,-0.06l0.28,-0.89l0.99,-1.13l0.07,-0.13l0.8,-3.54l3.4,-2.8l0.09,-0.13l0.76,-2.17l0.07,5.5l-2.07,0.21l-0.24,0.17l-0.61,1.36l-0.02,0.16l0.43,3.46l-4.01,-0.01ZM391.82,218.2l0.07,-0.06l0.75,-1.93l1.86,-0.25l0.94,0.34l1.14,0.0l0.18,-0.06l0.73,-0.56l1.41,-0.08l-0.0,2.72l-7.08,-0.12Z\", \"name\": \"Western Sahara\"}, \"_1\": {\"path\": \"M472.71,172.84l-0.07,-0.43l-0.16,-0.22l-0.53,-0.27l-0.38,-0.58l0.3,-0.43l0.51,-0.19l0.18,-0.18l0.3,-0.87l0.12,-0.04l0.22,0.26l0.12,0.09l0.38,0.15l0.28,0.41l0.15,0.12l0.34,0.12l0.43,0.5l0.15,0.07l-0.12,0.3l-0.27,0.32l-0.03,0.18l-0.31,0.06l-1.48,0.47l-0.15,0.17Z\", \"name\": \"Kosovo\"}, \"_0\": {\"path\": \"M503.54,192.92l0.09,-0.17l0.41,0.01l-0.08,0.01l-0.42,0.15ZM504.23,192.76l1.02,0.02l0.4,-0.13l-0.09,0.29l0.03,0.08l-0.35,0.16l-0.24,-0.04l-0.06,-0.1l-0.18,-0.17l-0.19,-0.08l-0.33,-0.02Z\", \"name\": \"Northern Cyprus\"}, \"JO\": {\"path\": \"M510.26,200.93l0.28,-0.57l2.53,1.0l0.27,-0.02l4.57,-2.77l0.84,2.84l-0.28,0.25l-4.95,1.37l-0.14,0.49l2.24,2.48l-0.5,0.28l-0.13,0.14l-0.35,0.78l-1.76,0.35l-0.2,0.14l-0.57,0.94l-0.94,0.73l-2.45,-0.38l-0.03,-0.12l1.23,-4.32l-0.04,-1.1l0.34,-0.75l0.03,-0.12l0.0,-1.63Z\", \"name\": \"Jordan\"}, \"HR\": {\"path\": \"M455.49,162.73l1.53,0.09l0.24,-0.1l0.29,-0.34l0.64,0.38l0.14,0.04l0.98,0.06l0.32,-0.3l-0.01,-0.66l0.67,-0.25l0.19,-0.22l0.21,-1.11l1.72,-0.72l0.65,0.32l1.94,1.37l2.07,0.6l0.22,-0.02l0.67,-0.33l0.47,0.94l0.67,0.76l-0.63,0.77l-0.91,-0.55l-0.16,-0.04l-1.69,0.04l-2.2,-0.51l-1.17,0.07l-0.21,0.11l-0.36,0.42l-0.67,-0.53l-0.46,0.12l-0.52,1.29l0.05,0.31l1.21,1.42l0.58,0.99l1.15,1.14l0.95,0.68l0.92,1.23l0.1,0.09l1.75,0.91l-1.87,-0.89l-1.5,-1.11l-2.23,-0.88l-1.77,-1.9l0.12,-0.06l0.1,-0.47l-1.07,-1.22l-0.04,-0.94l-0.21,-0.27l-1.61,-0.49l-0.35,0.14l-0.53,0.93l-0.41,-0.57l0.04,-0.73Z\", \"name\": \"Croatia\"}, \"HT\": {\"path\": \"M237.82,234.68l1.35,0.1l1.95,0.37l0.18,1.15l-0.16,0.83l-0.51,0.37l-0.06,0.44l0.57,0.68l-0.02,0.22l-1.31,-0.35l-1.26,0.17l-1.49,-0.18l-0.15,0.02l-1.03,0.43l-1.02,-0.61l0.09,-0.36l2.04,0.32l1.9,0.21l0.19,-0.05l0.9,-0.58l0.05,-0.47l-1.05,-1.03l0.02,-0.86l-0.23,-0.3l-1.13,-0.29l0.18,-0.23Z\", \"name\": \"Haiti\"}, \"HU\": {\"path\": \"M461.96,157.92l0.68,-1.66l-0.03,-0.29l-0.15,-0.22l0.84,-0.0l0.3,-0.26l0.12,-0.84l0.88,0.57l0.98,0.38l0.16,0.01l2.1,-0.39l0.23,-0.21l0.14,-0.45l0.88,-0.1l1.06,-0.43l0.13,0.1l0.28,0.04l1.18,-0.4l0.14,-0.1l0.52,-0.67l0.63,-0.15l2.6,0.95l0.26,-0.03l0.38,-0.23l1.12,0.7l0.1,0.49l-1.31,0.57l-0.14,0.13l-1.18,2.14l-1.44,2.04l-1.85,0.55l-1.51,-0.13l-0.14,0.02l-1.92,0.82l-0.85,0.42l-1.91,-0.55l-1.83,-1.31l-0.74,-0.37l-0.44,-0.97l-0.26,-0.18Z\", \"name\": \"Hungary\"}, \"HN\": {\"path\": \"M202.48,251.87l-0.33,-0.62l-0.18,-0.14l-0.5,-0.15l0.13,-0.76l-0.11,-0.28l-0.34,-0.28l-0.6,-0.23l-0.18,-0.01l-0.81,0.22l-0.16,-0.24l-0.72,-0.39l-0.51,-0.48l-0.12,-0.07l-0.31,-0.09l0.24,-0.3l0.04,-0.3l-0.16,-0.4l0.1,-0.28l1.14,-0.69l1.0,-0.86l0.09,0.04l0.3,-0.05l0.47,-0.39l0.49,-0.03l0.14,0.13l0.29,0.06l0.31,-0.1l1.16,0.22l1.24,-0.08l0.81,-0.28l0.29,-0.25l0.63,0.1l0.69,0.18l0.65,-0.06l0.49,-0.2l1.04,0.32l0.38,0.06l0.7,0.44l0.71,0.56l0.92,0.41l0.1,0.11l-0.11,-0.01l-0.23,0.09l-0.3,0.3l-0.76,0.29l-0.58,0.0l-0.15,0.04l-0.45,0.26l-0.31,-0.07l-0.37,-0.34l-0.28,-0.07l-0.26,0.07l-0.18,0.15l-0.23,0.43l-0.04,-0.0l-0.33,0.28l-0.03,0.4l-0.76,0.61l-0.45,0.3l-0.15,0.16l-0.51,-0.36l-0.41,0.06l-0.45,0.56l-0.41,-0.01l-0.59,0.06l-0.27,0.31l0.04,0.96l-0.07,0.0l-0.25,0.16l-0.24,0.45l-0.42,0.06Z\", \"name\": \"Honduras\"}, \"PR\": {\"path\": \"M254.95,238.31l1.15,0.21l0.2,0.23l-0.36,0.36l-1.76,-0.01l-1.2,0.07l-0.09,-0.69l0.17,-0.18l1.89,0.01Z\", \"name\": \"Puerto Rico\"}, \"PS\": {\"path\": \"M509.66,201.06l-0.0,1.44l-0.29,0.63l-0.59,0.19l0.02,-0.11l0.52,-0.31l-0.02,-0.53l-0.41,-0.2l0.36,-1.28l0.41,0.17Z\", \"name\": \"West Bank\"}, \"PT\": {\"path\": \"M398.65,173.6l0.75,-0.63l0.7,-0.3l0.51,1.2l0.28,0.18l1.48,-0.0l0.2,-0.08l0.33,-0.3l1.16,0.08l0.52,1.11l-0.95,0.66l-0.13,0.24l-0.03,2.2l-0.33,0.35l-0.08,0.18l-0.08,1.17l-0.86,0.19l-0.2,0.44l0.93,1.64l-0.64,1.79l0.07,0.31l0.72,0.72l-0.24,0.56l-0.9,1.05l-0.07,0.26l0.17,0.77l-0.73,0.54l-1.18,-0.36l-0.16,-0.0l-0.85,0.21l0.31,-1.81l-0.23,-1.87l-0.23,-0.25l-0.99,-0.24l-0.49,-0.91l0.18,-1.72l0.93,-0.99l0.08,-0.16l0.17,-1.17l0.52,-1.76l-0.04,-1.36l-0.51,-1.14l-0.09,-0.8Z\", \"name\": \"Portugal\"}, \"PY\": {\"path\": \"M264.33,341.43l0.93,-2.96l0.07,-1.42l1.1,-2.1l4.19,-0.73l2.22,0.04l2.12,1.21l0.07,0.76l0.7,1.38l-0.16,3.48l0.24,0.31l2.64,0.5l0.19,-0.03l0.9,-0.45l1.47,0.62l0.38,0.64l0.23,2.35l0.3,1.07l0.25,0.21l0.93,0.12l0.16,-0.02l0.8,-0.37l0.61,0.33l-0.0,1.25l-0.33,1.53l-0.5,1.57l-0.39,2.26l-2.14,1.94l-1.85,0.4l-2.74,-0.4l-2.13,-0.62l2.26,-3.75l0.03,-0.24l-0.36,-1.18l-0.17,-0.19l-2.55,-1.03l-3.04,-1.95l-2.07,-0.43l-4.4,-4.12Z\", \"name\": \"Paraguay\"}, \"PA\": {\"path\": \"M213.65,263.79l0.18,-0.43l0.02,-0.18l-0.06,-0.28l0.23,-0.18l-0.01,-0.48l-0.4,-0.29l-0.01,-0.62l0.57,-0.13l0.68,0.69l-0.04,0.39l0.26,0.33l1.0,0.11l0.27,-0.1l0.49,0.44l0.24,0.07l1.34,-0.22l1.04,-0.62l1.49,-0.5l0.86,-0.73l0.99,0.11l0.18,0.28l1.35,0.08l1.02,0.4l0.78,0.72l0.71,0.53l-0.1,0.12l-0.05,0.3l0.53,1.34l-0.28,0.44l-0.6,-0.13l-0.36,0.22l-0.2,0.76l-0.41,-0.36l-0.44,-1.12l0.49,-0.53l-0.14,-0.49l-0.51,-0.14l-0.41,-0.72l-0.11,-0.11l-1.25,-0.7l-0.19,-0.04l-1.1,0.16l-0.22,0.15l-0.47,0.81l-0.9,0.56l-0.49,0.08l-0.22,0.17l-0.25,0.52l0.05,0.32l0.93,1.07l-0.41,0.21l-0.29,0.3l-0.81,0.09l-0.36,-1.26l-0.53,-0.1l-0.21,0.28l-0.5,-0.09l-0.44,-0.88l-0.22,-0.16l-0.99,-0.16l-0.61,-0.28l-0.13,-0.03l-1.0,0.0Z\", \"name\": \"Panama\"}, \"PG\": {\"path\": \"M808.4,298.6l0.62,0.46l1.19,1.56l1.04,0.77l-0.18,0.37l-0.42,0.15l-0.92,-0.82l-1.05,-1.53l-0.27,-0.96ZM804.09,296.06l-0.3,0.26l-0.36,-1.11l-0.66,-1.06l-2.55,-1.89l-1.42,-0.59l0.17,-0.15l1.16,0.6l0.85,0.55l1.01,0.58l0.97,1.02l0.9,0.76l0.24,1.03ZM796.71,297.99l0.15,0.82l0.34,0.24l1.43,-0.19l0.19,-0.11l0.68,-0.82l1.36,-0.87l0.13,-0.31l-0.21,-1.13l1.04,-0.03l0.3,0.25l-0.04,1.17l-0.74,1.34l-1.17,0.18l-0.22,0.15l-0.35,0.62l-2.51,1.13l-1.21,-0.0l-1.99,-0.71l-1.19,-0.58l0.07,-0.28l1.98,0.32l1.46,-0.2l0.24,-0.21l0.25,-0.79ZM789.24,303.52l0.11,0.15l2.19,1.62l1.6,2.62l0.27,0.14l1.09,-0.06l-0.07,0.77l0.23,0.32l1.23,0.27l-0.14,0.09l0.05,0.53l2.39,0.95l-0.11,0.28l-1.33,0.14l-0.51,-0.55l-0.18,-0.09l-4.59,-0.65l-1.87,-1.55l-1.38,-1.35l-1.28,-2.17l-0.16,-0.13l-3.27,-1.1l-0.19,0.0l-2.12,0.72l-1.58,0.85l-0.15,0.31l0.28,1.63l-1.65,0.73l-1.37,-0.4l-2.3,-0.09l-0.08,-15.65l3.95,1.57l4.58,1.42l1.67,1.25l1.32,1.19l0.36,1.39l0.19,0.21l4.06,1.51l0.39,0.85l-1.9,0.22l-0.25,0.39l0.55,1.68Z\", \"name\": \"Papua New Guinea\"}, \"PE\": {\"path\": \"M246.44,329.21l-0.63,1.25l-1.05,0.54l-2.25,-1.33l-0.19,-0.93l-0.16,-0.21l-4.95,-2.58l-4.46,-2.79l-1.87,-1.52l-0.94,-1.91l0.33,-0.6l-0.01,-0.31l-2.11,-3.33l-2.46,-4.66l-2.36,-5.02l-1.04,-1.18l-0.77,-1.81l-0.08,-0.11l-1.95,-1.64l-1.54,-0.88l0.61,-0.85l0.02,-0.31l-1.15,-2.27l0.69,-1.56l1.59,-1.26l0.12,0.42l-0.56,0.47l-0.11,0.25l0.07,0.92l0.36,0.27l0.97,-0.19l0.85,0.23l0.99,1.19l0.41,0.05l1.42,-1.03l0.11,-0.16l0.46,-1.64l1.45,-2.06l2.92,-0.96l0.11,-0.07l2.73,-2.62l0.84,-1.72l0.02,-0.18l-0.3,-1.65l0.28,-0.1l1.49,1.06l0.77,1.14l0.1,0.09l1.08,0.6l1.43,2.55l0.21,0.15l1.86,0.31l0.18,-0.03l1.25,-0.6l0.77,0.37l0.17,0.03l1.4,-0.2l1.57,0.96l-1.45,2.29l0.23,0.46l0.63,0.05l0.66,0.7l-1.51,-0.08l-0.24,0.1l-0.27,0.31l-1.96,0.46l-2.95,1.74l-0.14,0.21l-0.17,1.1l-0.6,0.82l-0.05,0.23l0.21,1.13l-1.31,0.63l-0.17,0.27l0.0,0.91l-0.53,0.37l-0.1,0.37l1.04,2.27l1.31,1.46l-0.44,0.9l0.24,0.43l1.52,0.13l0.87,1.23l0.24,0.13l2.21,0.07l0.18,-0.06l1.55,-1.13l-0.14,3.22l0.23,0.3l1.14,0.29l0.16,-0.0l1.18,-0.36l1.97,3.71l-0.45,0.71l-0.04,0.14l-0.12,1.8l-0.05,2.07l-0.92,1.2l-0.03,0.31l0.38,0.8l-0.48,0.72l-0.02,0.3l1.01,2.02l-1.5,2.64Z\", \"name\": \"Peru\"}, \"PK\": {\"path\": \"M609.08,187.76l1.66,1.21l0.71,2.11l0.2,0.19l3.62,1.01l-1.98,1.95l-2.65,0.4l-3.75,-0.68l-0.26,0.08l-1.23,1.22l-0.07,0.31l0.89,2.46l0.88,1.92l0.1,0.12l1.67,1.14l-1.8,1.35l-0.12,0.25l0.04,1.85l-2.35,2.67l-1.59,2.79l-2.5,2.72l-2.76,-0.2l-0.24,0.09l-2.76,2.83l0.04,0.45l1.54,1.13l0.27,1.94l0.09,0.17l1.34,1.29l0.4,1.83l-5.14,-0.01l-0.22,0.09l-1.53,1.63l-1.52,-0.56l-0.76,-1.88l-1.93,-2.03l-0.25,-0.09l-4.6,0.5l-4.05,0.05l-3.1,0.33l0.77,-2.53l3.48,-1.33l0.19,-0.33l-0.21,-1.24l-0.19,-0.23l-1.01,-0.37l-0.06,-2.18l-0.17,-0.26l-2.32,-1.16l-0.96,-1.57l-0.56,-0.65l3.16,1.05l0.14,0.01l2.45,-0.4l1.44,0.33l0.3,-0.1l0.4,-0.47l1.58,0.22l0.14,-0.01l3.25,-1.14l0.2,-0.27l0.08,-2.23l1.23,-1.38l1.73,0.0l0.28,-0.2l0.22,-0.61l1.68,-0.32l0.86,0.24l0.27,-0.05l0.98,-0.78l0.11,-0.26l-0.13,-1.57l0.96,-1.52l1.51,-0.67l0.14,-0.41l-0.74,-1.4l1.86,0.07l0.26,-0.13l0.69,-1.01l0.05,-0.2l-0.09,-0.94l1.14,-1.09l0.09,-0.28l-0.29,-1.41l-0.51,-1.07l1.23,-1.05l2.6,-0.58l2.86,-0.33l1.33,-0.54l1.3,-0.29Z\", \"name\": \"Pakistan\"}, \"PH\": {\"path\": \"M737.11,263.82l0.25,1.66l0.14,1.34l-0.54,1.46l-0.64,-1.79l-0.5,-0.1l-1.17,1.28l-0.05,0.32l0.74,1.71l-0.49,0.81l-2.6,-1.28l-0.61,-1.57l0.68,-1.07l-0.07,-0.4l-1.59,-1.19l-0.42,0.06l-0.69,0.91l-1.01,-0.08l-0.21,0.06l-1.58,1.2l-0.17,-0.3l0.87,-1.88l1.48,-0.66l1.18,-0.81l0.71,0.92l0.34,0.1l1.9,-0.69l0.18,-0.18l0.34,-0.94l1.57,-0.06l0.29,-0.32l-0.1,-1.38l1.41,0.83l0.36,2.06ZM734.94,254.42l0.56,2.24l-1.41,-0.49l-0.4,0.3l0.07,0.94l0.51,1.3l-0.54,0.26l-0.08,-1.34l-0.25,-0.28l-0.56,-0.1l-0.23,-0.91l1.03,0.14l0.34,-0.31l-0.03,-0.96l-0.06,-0.18l-1.14,-1.44l1.62,0.04l0.57,0.78ZM724.68,238.33l1.48,0.71l0.33,-0.04l0.44,-0.38l0.05,0.13l-0.37,0.97l0.01,0.23l0.81,1.75l-0.59,1.92l-1.37,0.79l-0.14,0.2l-0.39,2.07l0.01,0.14l0.56,2.04l0.23,0.21l1.33,0.28l0.14,-0.0l1.0,-0.27l2.82,1.28l-0.2,1.16l0.12,0.29l0.66,0.5l-0.13,0.56l-1.54,-0.99l-0.89,-1.29l-0.49,0.0l-0.44,0.65l-1.34,-1.28l-0.26,-0.08l-2.18,0.36l-0.96,-0.44l0.09,-0.72l0.69,-0.57l-0.01,-0.47l-0.75,-0.59l-0.47,0.14l-0.15,0.43l-0.86,-1.02l-0.34,-1.02l-0.07,-1.74l0.49,0.41l0.49,-0.21l0.26,-3.99l0.73,-2.1l1.23,0.0ZM731.12,258.92l-0.82,0.75l-0.83,1.64l-0.52,0.5l-1.17,-1.33l0.36,-0.47l0.62,-0.7l0.07,-0.15l0.24,-1.35l0.73,-0.08l-0.31,1.29l0.16,0.34l0.37,-0.09l1.21,-1.6l-0.12,1.24ZM726.66,255.58l0.85,0.45l0.14,0.03l1.28,-0.0l-0.03,0.62l-1.04,0.96l-1.15,0.55l-0.05,-0.71l0.17,-1.26l-0.01,-0.13l-0.16,-0.51ZM724.92,252.06l-0.45,1.5l-0.7,-0.83l-0.95,-1.43l1.44,0.06l0.67,0.7ZM717.48,261.28l-1.87,1.35l0.21,-0.3l1.81,-1.57l1.5,-1.75l0.97,-1.84l0.23,1.08l-1.56,1.33l-1.29,1.7Z\", \"name\": \"Philippines\"}, \"PL\": {\"path\": \"M458.8,144.25l-0.96,-1.98l0.18,-1.06l-0.01,-0.15l-0.62,-1.8l-0.82,-1.11l0.56,-0.73l0.05,-0.28l-0.51,-1.51l1.48,-0.87l3.88,-1.58l3.06,-1.14l2.23,0.52l0.15,0.66l0.29,0.23l2.4,0.04l3.11,0.39l4.56,-0.05l1.12,0.32l0.51,0.89l0.1,1.45l0.03,0.12l0.66,1.23l-0.01,1.08l-1.33,0.61l-0.14,0.41l0.74,1.5l0.07,1.53l1.22,2.79l-0.19,0.66l-1.09,0.33l-0.14,0.09l-2.27,2.72l-0.04,0.31l0.35,0.8l-2.22,-1.16l-0.21,-0.02l-1.72,0.44l-1.1,-0.31l-0.21,0.02l-1.3,0.61l-1.11,-1.02l-0.32,-0.05l-0.81,0.35l-1.15,-1.61l-0.21,-0.12l-1.65,-0.17l-0.19,-0.82l-0.23,-0.23l-1.72,-0.37l-0.34,0.17l-0.25,0.56l-0.88,-0.44l0.12,-0.69l-0.25,-0.35l-1.78,-0.27l-1.08,-0.97Z\", \"name\": \"Poland\"}, \"ZM\": {\"path\": \"M502.81,308.32l1.09,1.04l0.58,1.94l-0.39,0.66l-0.5,2.05l-0.0,0.14l0.45,1.95l-0.69,0.77l-0.06,0.11l-0.76,2.37l0.15,0.36l0.62,0.31l-6.85,1.9l-0.22,0.33l0.2,1.54l-1.62,0.3l-0.12,0.05l-1.43,1.02l-0.11,0.15l-0.25,0.73l-0.73,0.17l-0.14,0.08l-2.18,2.12l-1.33,1.6l-0.65,0.05l-0.83,-0.29l-2.75,-0.28l-0.24,-0.1l-0.15,-0.27l-0.99,-0.58l-0.12,-0.04l-1.73,-0.14l-1.88,0.54l-1.5,-1.48l-1.61,-2.01l0.11,-7.73l4.92,0.03l0.29,-0.37l-0.19,-0.79l0.34,-0.86l0.0,-0.21l-0.41,-1.11l0.26,-1.14l-0.01,-0.16l-0.12,-0.36l0.18,0.01l0.1,0.56l0.31,0.25l1.14,-0.06l1.44,0.21l0.76,1.05l0.19,0.12l2.01,0.35l0.19,-0.03l1.24,-0.65l0.44,1.03l0.22,0.18l1.81,0.34l0.85,0.99l1.02,1.39l0.24,0.12l1.92,0.02l0.3,-0.32l-0.21,-2.74l-0.47,-0.23l-0.53,0.36l-1.58,-0.89l-0.51,-0.34l0.29,-2.36l0.44,-2.99l-0.03,-0.18l-0.5,-0.99l0.61,-1.38l0.53,-0.24l3.26,-0.41l0.89,0.23l1.01,0.62l1.04,0.44l1.6,0.43l1.35,0.72Z\", \"name\": \"Zambia\"}, \"EE\": {\"path\": \"M482.19,120.88l0.23,-1.68l-0.43,-0.31l-0.75,0.37l-1.34,-1.1l-0.18,-1.75l2.92,-0.95l3.07,-0.53l2.66,0.6l2.48,-0.1l0.18,0.31l-1.65,1.96l-0.06,0.26l0.71,3.25l-0.88,0.94l-1.85,-0.01l-2.08,-1.3l-1.14,-0.47l-0.2,-0.01l-1.69,0.51Z\", \"name\": \"Estonia\"}, \"EG\": {\"path\": \"M508.07,208.8l-0.66,1.06l-0.53,2.03l-0.64,1.32l-0.32,0.26l-1.74,-1.85l-1.77,-3.86l-0.48,-0.09l-0.26,0.25l-0.07,0.32l1.04,2.88l1.55,2.76l1.89,4.18l0.94,1.48l0.83,1.54l2.08,2.73l-0.3,0.28l-0.1,0.23l0.08,1.72l0.11,0.22l2.91,2.37l-28.78,0.0l0.0,-19.06l-0.73,-2.2l0.61,-1.59l0.0,-0.2l-0.34,-1.04l0.73,-1.08l3.13,-0.04l2.36,0.72l2.48,0.81l1.15,0.43l0.23,-0.01l1.93,-0.87l1.02,-0.78l2.08,-0.21l1.59,0.31l0.62,1.24l0.52,0.03l0.46,-0.71l1.86,0.59l1.95,0.16l0.17,-0.04l0.92,-0.52l1.48,4.24Z\", \"name\": \"Egypt\"}, \"ZA\": {\"path\": \"M467.06,373.27l-0.13,-0.29l0.01,-1.58l-0.02,-0.12l-0.71,-1.64l0.59,-0.37l0.14,-0.26l-0.07,-2.13l-0.05,-0.15l-1.63,-2.58l-1.25,-2.31l-1.71,-3.37l0.88,-0.98l0.7,0.52l0.39,1.08l0.23,0.19l1.1,0.19l1.55,0.51l0.14,0.01l1.35,-0.2l0.11,-0.04l2.24,-1.39l0.14,-0.25l0.0,-9.4l0.16,0.09l1.39,2.38l-0.22,1.53l0.04,0.19l0.56,0.94l0.3,0.14l1.79,-0.27l0.16,-0.08l1.23,-1.18l1.17,-0.79l0.1,-0.12l0.57,-1.19l1.02,-0.52l0.9,0.28l1.16,0.73l0.14,0.05l2.04,0.13l0.13,-0.02l1.6,-0.62l0.18,-0.19l0.63,-1.93l1.18,-0.19l0.19,-0.12l0.78,-1.05l0.81,-1.71l2.18,-1.91l3.44,-1.88l0.89,0.02l1.17,0.43l0.21,-0.0l0.76,-0.29l1.07,0.21l1.15,3.55l0.63,1.82l-0.44,2.9l0.1,0.52l-0.74,-0.29l-0.18,-0.01l-0.72,0.19l-0.21,0.2l-0.22,0.74l-0.66,0.97l-0.05,0.18l0.02,0.93l0.09,0.21l1.49,1.46l0.27,0.08l1.47,-0.29l0.22,-0.18l0.43,-1.01l1.29,0.02l-0.51,1.63l-0.29,2.2l-0.59,1.12l-2.2,1.78l-1.06,1.39l-0.72,1.44l-1.39,1.93l-2.81,2.84l-1.75,1.65l-1.85,1.24l-2.55,1.06l-1.23,0.14l-0.24,0.18l-0.22,0.54l-1.27,-0.35l-0.2,0.01l-1.15,0.5l-2.62,-0.52l-0.12,0.0l-1.46,0.33l-0.98,-0.14l-0.16,0.02l-2.55,1.1l-2.11,0.44l-1.59,1.07l-0.93,0.06l-0.97,-0.92l-0.19,-0.08l-0.72,-0.04l-1.0,-1.16l-0.25,0.05ZM493.72,359.24l-1.12,-0.86l-0.31,-0.03l-1.23,0.59l-1.36,1.07l-1.39,1.78l0.01,0.38l1.88,2.11l0.31,0.09l0.9,-0.27l0.18,-0.15l0.4,-0.77l1.28,-0.39l0.18,-0.16l0.42,-0.88l0.76,-1.32l-0.05,-0.37l-0.87,-0.82Z\", \"name\": \"South Africa\"}, \"EC\": {\"path\": \"M220.2,293.48l1.25,-1.76l0.02,-0.31l-0.54,-1.09l-0.5,-0.06l-0.78,0.94l-1.03,-0.75l0.33,-0.46l0.05,-0.23l-0.38,-2.04l0.66,-0.28l0.17,-0.19l0.45,-1.52l0.93,-1.58l0.04,-0.2l-0.13,-0.78l1.19,-0.47l1.57,-0.91l2.35,1.34l0.17,0.04l0.28,-0.02l0.52,0.91l0.21,0.15l2.12,0.35l0.2,-0.03l0.55,-0.31l1.08,0.73l0.97,0.54l0.31,1.67l-0.71,1.49l-2.64,2.54l-2.95,0.97l-0.15,0.11l-1.53,2.18l-0.49,1.68l-1.1,0.8l-0.87,-1.05l-0.15,-0.1l-1.01,-0.27l-0.13,-0.0l-0.7,0.14l-0.03,-0.43l0.6,-0.5l0.1,-0.31l-0.26,-0.91Z\", \"name\": \"Ecuador\"}, \"AL\": {\"path\": \"M470.27,171.7l0.38,0.19l0.45,-0.18l0.4,0.61l0.11,0.1l0.46,0.24l0.13,0.87l-0.3,0.95l-0.0,0.17l0.36,1.28l0.12,0.17l0.9,0.63l-0.03,0.44l-0.67,0.35l-0.16,0.22l-0.14,0.88l-0.96,1.18l-0.06,-0.03l-0.04,-0.48l-0.12,-0.22l-1.28,-0.92l-0.19,-1.25l0.2,-1.96l0.33,-0.89l-0.06,-0.3l-0.36,-0.41l-0.13,-0.75l0.66,-0.9Z\", \"name\": \"Albania\"}, \"AO\": {\"path\": \"M461.62,299.93l0.55,1.67l0.73,1.54l1.56,2.18l0.28,0.12l1.66,-0.2l0.81,-0.34l1.28,0.33l0.33,-0.14l0.39,-0.67l0.56,-1.3l1.37,-0.09l0.27,-0.21l0.07,-0.23l0.67,-0.01l-0.13,0.53l0.29,0.37l2.74,-0.02l0.04,1.29l0.03,0.13l0.46,0.87l-0.35,1.52l0.18,1.55l0.07,0.16l0.75,0.85l-0.13,2.89l0.41,0.29l0.56,-0.21l1.11,0.05l1.5,-0.37l0.9,0.12l0.18,0.53l-0.27,1.15l0.01,0.17l0.4,1.08l-0.33,0.85l-0.01,0.18l0.12,0.51l-4.83,-0.03l-0.3,0.3l-0.12,8.13l0.07,0.19l1.69,2.1l1.27,1.25l-4.03,0.92l-5.93,-0.36l-1.66,-1.19l-0.18,-0.06l-10.15,0.11l-0.34,0.13l-1.35,-1.05l-0.17,-0.06l-1.62,-0.08l-1.6,0.45l-0.88,0.36l-0.17,-1.2l0.34,-2.19l0.85,-2.32l0.14,-1.13l0.79,-2.24l0.57,-1.0l1.42,-1.64l0.82,-1.15l0.05,-0.13l0.26,-1.88l-0.13,-1.51l-0.07,-0.16l-0.72,-0.87l-1.23,-2.91l0.09,-0.37l0.73,-0.95l0.05,-0.27l-1.27,-4.12l-1.19,-1.54l0.1,-0.2l0.86,-0.28l0.78,0.03l0.83,-0.29l7.12,0.03ZM451.81,298.94l-0.17,0.07l-0.5,-1.42l0.85,-0.92l0.53,-0.29l0.48,0.44l-0.56,0.32l-0.1,0.1l-0.41,0.65l-0.05,0.14l-0.07,0.91Z\", \"name\": \"Angola\"}, \"KZ\": {\"path\": \"M598.42,172.08l-1.37,0.54l-3.3,2.09l-0.11,0.12l-1.01,1.97l-0.56,0.01l-0.6,-1.24l-0.26,-0.17l-2.95,-0.09l-0.46,-2.22l-0.29,-0.24l-0.91,-0.02l0.17,-2.72l-0.12,-0.26l-3.0,-2.22l-0.2,-0.06l-4.29,0.24l-2.8,0.42l-2.36,-2.7l-6.4,-3.65l-0.23,-0.03l-6.45,1.83l-0.22,0.29l0.1,10.94l-0.84,0.1l-1.65,-2.21l-0.11,-0.09l-1.69,-0.84l-0.2,-0.02l-2.84,0.63l-0.14,0.07l-0.71,0.64l-0.02,-0.11l0.57,-1.17l0.0,-0.26l-0.48,-1.05l-0.17,-0.16l-2.78,-0.99l-1.08,-2.62l-0.13,-0.15l-1.24,-0.7l-0.04,-0.48l2.07,0.25l0.34,-0.29l0.09,-2.03l1.84,-0.44l2.12,0.45l0.36,-0.25l0.45,-3.04l-0.45,-2.06l-0.31,-0.23l-2.44,0.15l-2.07,-0.75l-0.23,0.01l-2.88,1.38l-2.21,0.62l-0.96,-0.38l0.22,-1.39l-0.06,-0.23l-1.6,-2.12l-0.25,-0.12l-1.72,0.08l-1.87,-1.91l1.33,-2.24l-0.06,-0.38l-0.55,-0.5l1.72,-3.08l2.3,1.7l0.48,-0.2l0.29,-2.26l4.99,-3.48l3.76,-0.08l5.46,2.27l2.96,1.33l0.26,-0.01l2.59,-1.36l3.82,-0.06l3.13,1.67l0.38,-0.09l0.63,-0.85l3.36,0.14l0.29,-0.19l0.63,-1.57l-0.13,-0.37l-3.64,-2.05l2.0,-1.36l0.1,-0.38l-0.32,-0.62l2.09,-0.76l0.13,-0.47l-1.65,-2.13l0.89,-0.91l9.27,-1.18l0.13,-0.05l1.17,-0.82l6.2,-1.27l2.26,-1.43l4.19,0.7l0.74,3.39l0.38,0.22l2.52,-0.81l2.9,1.06l-0.18,1.63l0.32,0.33l2.52,-0.23l5.0,-2.58l0.03,0.39l3.16,2.62l5.57,8.48l0.49,0.02l1.18,-1.53l3.22,1.78l0.21,0.03l3.5,-0.83l1.21,0.52l1.16,1.82l0.15,0.12l1.67,0.61l1.01,1.32l0.28,0.11l3.04,-0.41l1.1,1.64l-1.68,1.89l-1.97,0.28l-0.26,0.29l-0.12,3.09l-1.2,1.23l-4.81,-1.01l-0.35,0.2l-1.77,5.51l-1.14,0.62l-4.92,1.23l-0.2,0.41l2.14,5.06l-1.45,0.67l-0.17,0.31l0.15,1.28l-1.05,-0.3l-1.21,-1.04l-0.17,-0.07l-3.73,-0.32l-4.15,-0.08l-0.92,0.31l-3.46,-1.24l-0.22,0.01l-1.42,0.63l-0.17,0.21l-0.32,1.49l-3.82,-0.97l-0.15,0.0l-1.65,0.43l-0.2,0.17l-0.51,1.21Z\", \"name\": \"Kazakhstan\"}, \"ET\": {\"path\": \"M516.0,247.63l1.21,0.92l0.3,0.04l1.3,-0.53l0.46,0.41l0.19,0.08l1.65,0.03l2.05,0.96l0.67,0.88l1.07,0.79l1.0,1.45l0.7,0.68l-0.72,0.92l-0.85,1.19l-0.04,0.25l0.19,0.67l0.04,0.74l0.29,0.28l1.4,0.04l0.55,-0.15l0.23,0.19l-0.41,0.67l0.01,0.32l0.92,1.39l0.93,1.23l0.99,0.94l0.1,0.06l8.19,2.99l1.51,0.01l-6.51,6.95l-3.14,0.11l-0.18,0.06l-2.15,1.71l-1.51,0.04l-0.22,0.1l-0.6,0.69l-1.46,-0.0l-0.93,-0.78l-0.32,-0.04l-2.29,1.05l-0.12,0.1l-0.64,0.9l-1.44,-0.17l-0.51,-0.26l-0.17,-0.03l-0.56,0.07l-0.68,-0.02l-3.1,-2.08l-0.17,-0.05l-1.62,0.0l-0.68,-0.65l0.0,-1.28l-0.21,-0.29l-1.19,-0.38l-1.42,-2.63l-0.13,-0.12l-1.05,-0.53l-0.46,-1.0l-1.27,-1.23l-0.17,-0.08l-1.08,-0.13l0.53,-0.9l1.17,-0.05l0.26,-0.17l0.37,-0.77l0.03,-0.14l-0.03,-2.23l0.7,-2.49l1.08,-0.65l0.14,-0.19l0.24,-1.0l1.03,-1.85l1.47,-1.22l0.09,-0.12l1.02,-2.51l0.36,-1.96l2.62,0.48l0.33,-0.18l0.63,-1.55Z\", \"name\": \"Ethiopia\"}, \"ZW\": {\"path\": \"M498.95,341.2l-1.16,-0.23l-0.16,0.01l-0.74,0.28l-1.11,-0.41l-1.02,-0.04l-1.52,-1.13l-0.12,-0.05l-1.79,-0.37l-0.65,-1.46l-0.01,-0.86l-0.22,-0.29l-0.99,-0.26l-2.74,-2.77l-0.77,-1.46l-0.52,-0.5l-0.72,-1.54l2.24,0.23l0.78,0.28l0.12,0.02l0.85,-0.06l0.21,-0.11l1.38,-1.66l2.11,-2.05l0.81,-0.18l0.22,-0.2l0.27,-0.8l1.29,-0.93l1.53,-0.28l0.11,0.66l0.3,0.25l2.02,-0.05l1.04,0.48l0.5,0.59l0.18,0.1l1.13,0.18l1.11,0.7l0.01,3.06l-0.49,1.82l-0.11,1.94l0.03,0.16l0.35,0.68l-0.24,1.3l-0.27,0.17l-0.12,0.15l-0.64,1.83l-2.49,2.8Z\", \"name\": \"Zimbabwe\"}, \"ES\": {\"path\": \"M398.67,172.8l0.09,-1.45l-0.06,-0.2l-0.82,-1.05l3.16,-1.96l3.01,0.54l3.33,-0.02l2.64,0.52l2.14,-0.15l3.9,0.1l0.91,1.08l0.14,0.09l4.61,1.38l0.26,-0.04l0.77,-0.55l2.66,1.29l0.17,0.03l2.59,-0.35l0.1,1.28l-2.2,1.85l-3.13,0.62l-0.23,0.23l-0.21,0.92l-1.54,1.68l-0.97,2.4l0.02,0.26l0.85,1.46l-1.27,1.14l-0.09,0.14l-0.5,1.73l-1.73,0.53l-0.15,0.1l-1.68,2.1l-3.03,0.04l-2.38,-0.05l-0.17,0.05l-1.57,1.01l-0.9,1.01l-0.96,-0.19l-0.82,-0.86l-0.69,-1.6l-0.22,-0.18l-2.14,-0.41l-0.13,-0.62l0.83,-0.97l0.39,-0.86l-0.06,-0.33l-0.73,-0.73l0.63,-1.74l-0.02,-0.25l-0.8,-1.41l0.69,-0.15l0.23,-0.27l0.09,-1.29l0.33,-0.36l0.08,-0.2l0.03,-2.16l1.03,-0.72l0.1,-0.37l-0.7,-1.5l-0.25,-0.17l-1.46,-0.11l-0.22,0.07l-0.34,0.3l-1.17,0.0l-0.55,-1.29l-0.39,-0.16l-1.02,0.44l-0.45,0.36Z\", \"name\": \"Spain\"}, \"ER\": {\"path\": \"M527.15,253.05l-0.77,-0.74l-1.01,-1.47l-1.14,-0.86l-0.62,-0.84l-0.11,-0.09l-2.18,-1.02l-0.12,-0.03l-1.61,-0.03l-0.52,-0.46l-0.31,-0.05l-1.31,0.54l-1.38,-1.06l-0.46,0.12l-0.69,1.68l-2.49,-0.46l-0.2,-0.76l1.06,-3.69l0.24,-1.65l0.66,-0.66l1.76,-0.4l0.16,-0.1l0.97,-1.13l1.24,2.55l0.68,2.34l0.09,0.14l1.4,1.27l3.39,2.4l1.37,1.43l2.14,2.34l0.94,0.6l-0.32,0.26l-0.85,-0.17Z\", \"name\": \"Eritrea\"}, \"ME\": {\"path\": \"M469.05,172.9l-0.57,-0.8l-0.1,-0.09l-0.82,-0.46l0.16,-0.33l0.35,-1.57l0.72,-0.62l0.27,-0.16l0.48,0.38l0.35,0.4l0.12,0.08l0.79,0.32l0.66,0.43l-0.43,0.62l-0.28,0.11l-0.07,-0.25l-0.53,-0.1l-1.09,1.49l-0.05,0.23l0.06,0.32Z\", \"name\": \"Montenegro\"}, \"MD\": {\"path\": \"M488.2,153.75l0.14,-0.11l1.49,-0.28l1.75,0.95l1.06,0.14l0.92,0.7l-0.15,0.9l0.15,0.31l0.8,0.46l0.33,1.2l0.09,0.14l0.72,0.66l-0.11,0.28l0.1,0.33l-0.06,0.02l-1.25,-0.08l-0.17,-0.29l-0.39,-0.12l-0.52,0.25l-0.16,0.36l0.13,0.42l-0.6,0.88l-0.43,1.03l-0.22,0.12l-0.32,-1.0l0.25,-1.34l-0.08,-1.38l-0.06,-0.17l-1.43,-1.87l-0.81,-1.36l-0.78,-0.95l-0.12,-0.09l-0.29,-0.12Z\", \"name\": \"Moldova\"}, \"MG\": {\"path\": \"M544.77,316.45l0.64,1.04l0.6,1.62l0.4,3.04l0.63,1.21l-0.22,1.07l-0.15,0.26l-0.59,-1.05l-0.52,-0.01l-0.47,0.76l-0.04,0.23l0.46,1.84l-0.19,0.92l-0.61,0.53l-0.1,0.21l-0.16,2.15l-0.97,2.98l-1.24,3.59l-1.55,4.97l-0.96,3.67l-1.08,2.93l-1.94,0.61l-2.05,1.06l-3.2,-1.53l-0.62,-1.26l-0.18,-2.39l-0.87,-2.07l-0.22,-1.8l0.4,-1.69l1.01,-0.4l0.19,-0.28l0.01,-0.79l1.15,-1.91l0.04,-0.11l0.23,-1.66l-0.03,-0.17l-0.57,-1.21l-0.46,-1.58l-0.19,-2.25l0.82,-1.36l0.33,-1.51l1.11,-0.1l1.4,-0.53l0.9,-0.45l1.03,-0.03l0.21,-0.09l1.41,-1.45l2.12,-1.65l0.75,-1.29l0.03,-0.24l-0.17,-0.56l0.53,0.15l0.32,-0.1l1.38,-1.77l0.06,-0.18l0.04,-1.44l0.54,-0.74l0.62,0.77Z\", \"name\": \"Madagascar\"}, \"MA\": {\"path\": \"M378.66,230.13l0.07,-0.75l0.93,-0.72l0.82,-1.37l0.04,-0.21l-0.14,-0.8l0.8,-1.74l1.33,-1.61l0.79,-0.4l0.14,-0.15l0.66,-1.55l0.08,-1.46l0.83,-1.52l1.6,-0.94l0.11,-0.11l1.56,-2.71l1.2,-0.99l2.24,-0.29l0.17,-0.08l1.95,-1.83l1.3,-0.77l2.09,-2.28l0.07,-0.26l-0.61,-3.34l0.92,-2.3l0.33,-1.44l1.52,-1.79l2.48,-1.27l1.86,-1.16l0.1,-0.11l1.67,-2.93l0.72,-1.59l1.54,0.01l1.43,1.14l0.21,0.06l2.33,-0.19l2.55,0.62l0.97,0.03l0.83,1.6l0.15,1.71l0.86,2.96l0.09,0.14l0.5,0.45l-0.31,0.73l-3.11,0.44l-0.16,0.07l-1.07,0.97l-1.36,0.23l-0.25,0.28l-0.1,1.85l-2.74,1.02l-0.14,0.11l-0.9,1.3l-1.93,0.69l-2.56,0.44l-4.04,2.01l-0.17,0.27l0.02,2.91l-0.08,0.0l-0.3,0.31l0.05,1.15l-1.25,0.07l-0.16,0.06l-0.73,0.55l-0.98,0.0l-0.85,-0.33l-0.15,-0.02l-2.11,0.29l-0.24,0.19l-0.76,1.95l-0.63,0.16l-0.21,0.19l-1.15,3.29l-3.42,2.81l-0.1,0.17l-0.81,3.57l-0.98,1.12l-0.3,0.85l-5.13,0.19Z\", \"name\": \"Morocco\"}, \"UZ\": {\"path\": \"M587.83,186.48l0.06,-1.46l-0.19,-0.29l-3.31,-1.24l-2.57,-1.4l-1.63,-1.38l-2.79,-1.98l-1.2,-2.98l-0.12,-0.14l-0.84,-0.54l-0.18,-0.05l-2.61,0.13l-0.76,-0.48l-0.25,-2.25l-0.17,-0.24l-3.37,-1.6l-0.32,0.04l-2.08,1.73l-2.11,1.02l-0.16,0.35l0.31,1.14l-2.14,0.03l-0.09,-10.68l6.1,-1.74l6.25,3.57l2.36,2.72l0.27,0.1l2.92,-0.44l4.17,-0.23l2.78,2.06l-0.18,2.87l0.29,0.32l0.98,0.02l0.46,2.22l0.28,0.24l3.0,0.09l0.61,1.25l0.28,0.17l0.93,-0.02l0.26,-0.16l1.06,-2.06l3.21,-2.03l1.3,-0.5l0.19,0.08l-1.75,1.62l0.05,0.48l1.85,1.12l0.27,0.02l1.65,-0.69l2.4,1.27l-2.69,1.79l-1.79,-0.27l-0.89,0.06l-0.22,-0.52l0.48,-1.26l-0.34,-0.4l-3.35,0.69l-0.22,0.18l-0.78,1.87l-1.07,1.47l-1.93,-0.13l-0.29,0.16l-0.65,1.29l0.16,0.42l1.69,0.64l0.48,1.91l-1.25,2.6l-1.64,-0.53l-1.18,-0.03Z\", \"name\": \"Uzbekistan\"}, \"MM\": {\"path\": \"M670.1,233.39l-1.46,1.11l-1.68,0.11l-0.26,0.19l-1.1,2.7l-0.95,0.42l-0.14,0.42l1.21,2.27l1.61,1.92l0.94,1.55l-0.82,1.99l-0.77,0.42l-0.13,0.39l0.64,1.35l1.62,1.97l0.26,1.32l-0.04,1.15l0.02,0.13l0.92,2.18l-1.3,2.23l-0.79,1.69l-0.1,-0.77l0.74,-1.87l-0.02,-0.26l-0.8,-1.42l0.2,-2.68l-0.06,-0.2l-0.98,-1.27l-0.8,-2.98l-0.45,-3.22l-1.11,-2.22l-0.45,-0.1l-1.64,1.28l-2.74,1.76l-1.26,-0.2l-1.27,-0.49l0.79,-2.93l0.0,-0.14l-0.52,-2.42l-1.93,-2.97l0.26,-0.8l-0.22,-0.39l-1.37,-0.31l-1.65,-1.98l-0.12,-1.5l0.41,0.19l0.42,-0.26l0.05,-1.7l1.08,-0.54l0.16,-0.34l-0.24,-1.0l0.5,-0.79l0.05,-0.15l0.08,-2.35l1.58,0.49l0.36,-0.15l1.12,-2.19l0.15,-1.34l1.35,-2.18l0.04,-0.17l-0.07,-1.35l2.97,-1.71l1.67,0.45l0.38,-0.33l-0.18,-1.46l0.7,-0.4l0.15,-0.32l-0.13,-0.72l0.94,-0.13l0.74,1.41l0.11,0.12l0.95,0.56l0.07,1.89l-0.09,2.08l-2.28,2.15l-0.09,0.19l-0.3,3.15l0.35,0.32l2.37,-0.39l0.53,2.17l0.2,0.21l1.3,0.42l-0.63,1.9l0.14,0.36l1.86,0.99l1.1,0.49l0.24,0.0l1.45,-0.6l0.04,0.51l-2.01,1.6l-0.56,0.96l-1.34,0.56Z\", \"name\": \"Myanmar\"}, \"ML\": {\"path\": \"M390.79,248.2l0.67,-0.37l0.14,-0.18l0.36,-1.31l0.51,-0.04l1.68,0.69l0.21,0.0l1.34,-0.48l0.89,0.16l0.3,-0.13l0.29,-0.44l9.89,-0.04l0.29,-0.21l0.56,-1.8l-0.11,-0.33l-0.33,-0.24l-2.37,-22.1l3.41,-0.04l8.37,5.73l8.38,5.68l0.56,1.15l0.14,0.14l1.56,0.75l0.99,0.36l0.03,1.45l0.33,0.29l2.45,-0.22l0.01,5.52l-1.3,1.64l-0.06,0.15l-0.18,1.37l-1.99,0.36l-3.4,0.22l-0.19,0.09l-0.85,0.83l-1.48,0.09l-1.49,0.01l-0.54,-0.43l-0.26,-0.05l-1.38,0.36l-2.39,1.08l-0.13,0.12l-0.44,0.73l-1.88,1.11l-0.11,0.12l-0.3,0.57l-0.86,0.42l-1.1,-0.31l-0.28,0.07l-0.69,0.62l-0.09,0.16l-0.35,1.66l-1.93,2.04l-0.08,0.23l0.05,0.76l-0.63,0.99l-0.04,0.19l0.14,1.23l-0.81,0.29l-0.32,0.17l-0.27,-0.75l-0.39,-0.18l-0.65,0.26l-0.36,-0.04l-0.29,0.14l-0.37,0.6l-1.69,-0.02l-0.63,-0.34l-0.32,0.02l-0.12,0.09l-0.47,-0.45l0.1,-0.6l-0.09,-0.27l-0.31,-0.3l-0.33,-0.05l-0.05,0.02l0.02,-0.21l0.46,-0.59l-0.02,-0.39l-0.99,-1.02l-0.34,-0.74l-0.56,-0.56l-0.17,-0.09l-0.5,-0.07l-0.19,0.04l-0.58,0.35l-0.79,0.33l-0.65,0.51l-0.85,-0.16l-0.63,-0.59l-0.14,-0.07l-0.41,-0.08l-0.2,0.03l-0.59,0.31l-0.07,0.0l-0.1,-0.63l0.11,-0.85l-0.21,-0.98l-0.11,-0.17l-0.86,-0.66l-0.45,-1.34l-0.1,-1.36Z\", \"name\": \"Mali\"}, \"MN\": {\"path\": \"M641.06,150.59l2.41,-0.53l4.76,-2.8l3.67,-1.49l2.06,0.96l0.12,0.03l2.5,0.05l1.59,1.45l0.19,0.08l2.47,0.12l3.59,0.81l0.27,-0.07l2.43,-2.28l0.06,-0.36l-0.93,-1.77l2.33,-3.1l2.66,1.3l2.26,0.39l2.75,0.8l0.44,2.3l0.19,0.22l3.56,1.38l0.18,0.01l2.35,-0.6l3.1,-0.42l2.4,0.41l2.37,1.52l1.49,1.63l0.23,0.1l2.29,-0.03l3.13,0.52l0.15,-0.01l2.28,-0.79l3.27,-0.53l0.11,-0.04l3.56,-2.23l1.31,0.31l1.26,1.05l0.22,0.07l2.45,-0.22l-0.98,1.96l-1.77,3.21l-0.01,0.28l0.64,1.31l0.35,0.16l1.35,-0.38l2.4,0.48l0.22,-0.04l1.78,-1.09l1.82,0.92l2.11,2.07l-0.17,0.68l-1.79,-0.31l-3.74,0.45l-1.85,0.96l-1.78,2.01l-3.74,1.18l-2.46,1.61l-2.45,-0.6l-1.42,-0.28l-0.31,0.13l-1.31,1.99l0.0,0.33l0.78,1.15l0.3,0.74l-1.58,0.93l-1.75,1.59l-2.83,1.03l-3.77,0.12l-4.05,1.05l-2.81,1.54l-0.95,-0.8l-0.19,-0.07l-2.96,0.0l-3.64,-1.8l-2.55,-0.48l-3.38,0.41l-5.13,-0.67l-2.66,0.06l-1.35,-1.65l-1.12,-2.78l-0.21,-0.18l-1.5,-0.33l-2.98,-1.89l-0.12,-0.04l-3.37,-0.43l-2.84,-0.51l-0.75,-1.13l0.93,-3.54l-0.04,-0.24l-1.73,-2.55l-0.15,-0.12l-3.52,-1.18l-1.99,-1.61l-0.54,-1.85Z\", \"name\": \"Mongolia\"}, \"MK\": {\"path\": \"M472.73,173.87l0.08,0.01l0.32,-0.25l0.08,-0.44l1.29,-0.41l1.37,-0.28l1.03,-0.04l1.06,0.82l0.14,1.59l-0.22,0.04l-0.17,0.11l-0.32,0.4l-1.2,-0.05l-0.18,0.05l-0.9,0.61l-1.45,0.23l-0.85,-0.59l-0.3,-1.09l0.22,-0.71Z\", \"name\": \"Macedonia\"}, \"MW\": {\"path\": \"M507.18,313.84l-0.67,1.85l-0.01,0.16l0.7,3.31l0.31,0.24l0.75,-0.03l0.78,0.71l0.99,1.75l0.2,3.03l-0.91,0.45l-0.14,0.15l-0.59,1.38l-1.24,-1.21l-0.17,-1.62l0.49,-1.12l0.02,-0.16l-0.15,-1.03l-0.13,-0.21l-0.99,-0.65l-0.26,-0.03l-0.53,0.18l-1.31,-1.12l-1.15,-0.59l0.66,-2.06l0.75,-0.84l0.07,-0.27l-0.47,-2.04l0.48,-1.94l0.4,-0.65l0.03,-0.24l-0.64,-2.15l-0.08,-0.13l-0.44,-0.42l1.34,0.26l1.25,1.73l0.67,3.3Z\", \"name\": \"Malawi\"}, \"MR\": {\"path\": \"M390.54,247.66l-1.48,-1.58l-1.51,-1.88l-0.12,-0.09l-1.64,-0.67l-1.17,-0.74l-0.17,-0.05l-1.4,0.03l-0.12,0.03l-1.14,0.52l-1.15,-0.21l-0.26,0.08l-0.44,0.43l-0.11,-0.72l0.68,-1.29l0.31,-2.43l-0.28,-2.63l-0.29,-1.27l0.24,-1.24l-0.03,-0.2l-0.65,-1.24l-1.19,-1.05l0.32,-0.51l9.64,0.02l0.3,-0.34l-0.46,-3.71l0.51,-1.12l2.17,-0.22l0.27,-0.3l-0.08,-6.5l7.91,0.13l0.31,-0.3l0.01,-3.5l8.17,5.63l-2.89,0.04l-0.29,0.33l2.42,22.56l0.12,0.21l0.26,0.19l-0.43,1.38l-9.83,0.04l-0.25,0.13l-0.27,0.41l-0.77,-0.14l-0.15,0.01l-1.3,0.47l-1.64,-0.67l-0.14,-0.02l-0.79,0.06l-0.27,0.22l-0.39,1.39l-0.53,0.29Z\", \"name\": \"Mauritania\"}, \"UG\": {\"path\": \"M500.74,287.17l-2.84,-0.02l-0.92,0.32l-1.37,0.71l-0.29,-0.12l0.02,-1.6l0.54,-0.89l0.04,-0.13l0.14,-1.96l0.49,-1.09l0.91,-1.24l0.97,-0.68l0.8,-0.89l-0.13,-0.49l-0.79,-0.27l0.13,-2.55l0.78,-0.52l1.45,0.51l0.18,0.01l1.97,-0.57l1.72,0.01l0.18,-0.06l1.29,-0.97l0.98,1.44l0.29,1.24l1.05,2.75l-0.84,1.68l-1.94,2.66l-0.06,0.18l0.02,2.36l-4.8,0.18Z\", \"name\": \"Uganda\"}, \"MY\": {\"path\": \"M717.6,273.52l-1.51,0.7l-2.13,-0.41l-2.88,-0.0l-0.29,0.21l-0.84,2.77l-0.9,0.82l-0.08,0.12l-1.23,3.34l-1.81,0.47l-2.29,-0.68l-0.14,-0.01l-1.2,0.22l-0.14,0.07l-1.36,1.18l-1.47,-0.17l-0.12,0.01l-1.46,0.46l-1.51,-1.25l-0.24,-0.97l1.26,0.59l0.2,0.02l1.93,-0.47l0.22,-0.22l0.47,-1.98l0.9,-0.4l2.97,-0.54l0.17,-0.09l1.8,-1.98l1.02,-1.32l0.9,1.03l0.48,-0.04l0.43,-0.7l1.02,0.07l0.32,-0.27l0.25,-2.72l1.84,-1.67l1.23,-1.89l0.73,-0.01l1.12,1.11l0.1,0.99l0.18,0.24l1.66,0.71l1.85,0.67l-0.09,0.51l-1.45,0.11l-0.26,0.4l0.35,0.97ZM673.78,269.53l0.17,1.14l0.35,0.25l1.65,-0.3l0.18,-0.11l0.68,-0.86l0.31,0.13l1.41,1.45l0.99,1.59l0.13,1.57l-0.26,1.09l0.0,0.15l0.24,0.84l0.18,1.46l0.11,0.2l0.82,0.64l0.92,2.08l-0.03,0.52l-1.4,0.13l-2.29,-1.79l-2.86,-1.92l-0.27,-1.16l-0.07,-0.13l-1.39,-1.61l-0.33,-1.99l-0.05,-0.12l-0.84,-1.27l0.26,-1.72l-0.03,-0.18l-0.45,-0.87l0.13,-0.13l1.71,0.92Z\", \"name\": \"Malaysia\"}, \"MX\": {\"path\": \"M133.41,213.83l0.61,0.09l0.27,-0.09l0.93,-1.01l0.08,-0.18l0.09,-1.22l-0.09,-0.23l-1.93,-1.94l-1.46,-0.77l-2.96,-5.62l-0.86,-2.1l2.44,-0.18l2.68,-0.25l-0.03,0.08l0.17,0.4l3.79,1.35l5.81,1.97l6.96,-0.02l0.3,-0.3l0.0,-0.84l3.91,0.0l0.87,0.93l1.27,0.87l1.44,1.17l0.79,1.37l0.62,1.49l0.12,0.14l1.35,0.85l2.08,0.82l0.35,-0.1l1.49,-2.04l1.81,-0.05l1.63,1.01l1.21,1.8l0.86,1.58l1.47,1.55l0.53,1.82l0.73,1.32l0.14,0.13l1.98,0.84l1.78,0.59l0.61,-0.03l-0.78,1.89l-0.45,1.96l-0.19,3.58l-0.24,1.27l0.01,0.14l0.43,1.43l0.78,1.31l0.49,1.98l0.06,0.12l1.63,1.9l0.61,1.51l0.98,1.28l0.16,0.11l2.58,0.67l0.98,1.02l0.31,0.08l2.17,-0.71l1.91,-0.26l1.87,-0.47l1.67,-0.49l1.59,-1.06l0.11,-0.14l0.6,-1.52l0.22,-2.21l0.35,-0.62l1.58,-0.64l2.59,-0.59l2.18,0.09l1.43,-0.2l0.39,0.36l-0.07,1.02l-1.28,1.48l-0.65,1.68l0.07,0.32l0.33,0.32l-0.79,2.49l-0.28,-0.3l-0.24,-0.09l-1.0,0.08l-0.24,0.15l-0.74,1.28l-0.19,-0.13l-0.28,-0.03l-0.3,0.12l-0.19,0.29l0.0,0.06l-4.34,-0.02l-0.3,0.3l-0.0,1.16l-0.83,0.0l-0.28,0.19l0.08,0.33l0.93,0.86l0.9,0.58l0.24,0.48l0.16,0.15l0.2,0.08l-0.03,0.38l-2.94,0.01l-0.26,0.15l-1.21,2.09l0.02,0.33l0.25,0.33l-0.21,0.44l-0.04,0.22l-2.42,-2.35l-1.36,-0.87l-2.04,-0.67l-0.13,-0.01l-1.4,0.19l-2.07,0.98l-1.14,0.23l-1.72,-0.66l-1.85,-0.48l-2.31,-1.16l-1.92,-0.38l-2.79,-1.18l-2.04,-1.2l-0.6,-0.66l-0.19,-0.1l-1.37,-0.15l-2.45,-0.78l-1.07,-1.18l-2.63,-1.44l-1.2,-1.56l-0.44,-0.93l0.5,-0.15l0.2,-0.39l-0.2,-0.58l0.46,-0.55l0.07,-0.19l0.01,-0.91l-0.06,-0.18l-0.81,-1.13l-0.25,-1.08l-0.86,-1.36l-2.21,-2.63l-2.53,-2.09l-1.2,-1.63l-0.11,-0.09l-2.08,-1.06l-0.34,-0.48l0.35,-1.53l-0.16,-0.34l-1.24,-0.61l-1.39,-1.23l-0.6,-1.81l-0.24,-0.2l-1.25,-0.2l-1.38,-1.35l-1.11,-1.25l-0.1,-0.76l-0.05,-0.13l-1.33,-2.04l-0.85,-2.02l0.04,-0.99l-0.14,-0.27l-1.81,-1.1l-0.2,-0.04l-0.74,0.11l-1.34,-0.72l-0.42,0.16l-0.4,1.12l-0.0,0.19l0.41,1.3l0.24,2.04l0.06,0.15l0.88,1.16l1.84,1.86l0.4,0.61l0.12,0.1l0.27,0.14l0.29,0.82l0.31,0.2l0.2,-0.02l0.43,1.51l0.09,0.14l0.72,0.65l0.51,0.91l1.58,1.4l0.8,2.42l0.77,1.23l0.66,1.19l0.13,1.34l0.28,0.27l1.08,0.08l0.92,1.1l0.83,1.08l-0.03,0.24l-0.88,0.81l-0.13,-0.0l-0.59,-1.42l-0.07,-0.11l-1.67,-1.53l-1.81,-1.28l-1.15,-0.61l0.07,-1.85l-0.38,-1.45l-0.12,-0.17l-2.91,-2.03l-0.39,0.04l-0.11,0.11l-0.42,-0.46l-0.11,-0.08l-1.49,-0.63l-1.09,-1.16Z\", \"name\": \"Mexico\"}, \"VU\": {\"path\": \"M839.92,325.66l0.78,0.73l-0.18,0.07l-0.6,-0.8ZM839.13,322.74l0.27,1.36l-0.13,-0.06l-0.21,-0.02l-0.29,0.08l-0.22,-0.43l-0.03,-1.32l0.61,0.4Z\", \"name\": \"Vanuatu\"}, \"FR\": {\"path\": \"M444.58,172.63l-0.68,1.92l-0.72,-0.38l-0.51,-1.79l0.43,-0.95l1.15,-0.83l0.33,2.04ZM429.71,147.03l1.77,1.57l0.26,0.07l1.16,-0.23l2.12,1.44l0.56,0.28l0.16,0.03l0.61,-0.06l1.09,0.78l0.13,0.05l3.18,0.53l-1.09,1.94l-0.3,2.16l-0.48,0.38l-1.0,-0.26l-0.37,0.32l0.07,0.66l-1.73,1.68l-0.09,0.21l-0.04,1.42l0.41,0.29l0.96,-0.4l0.67,1.07l-0.09,0.78l0.04,0.19l0.61,0.97l-0.71,0.78l-0.07,0.28l0.65,2.39l0.21,0.21l1.09,0.31l-0.2,0.95l-2.08,1.58l-4.81,-0.8l-0.13,0.01l-3.65,0.99l-0.22,0.24l-0.25,1.6l-2.59,0.35l-2.74,-1.33l-0.31,0.03l-0.79,0.57l-4.38,-1.31l-0.79,-0.94l1.16,-1.64l0.05,-0.15l0.48,-6.17l-0.06,-0.21l-2.58,-3.3l-1.89,-1.65l-0.11,-0.06l-3.64,-1.17l-0.2,-1.88l2.92,-0.63l4.14,0.82l0.35,-0.36l-0.65,-3.0l1.77,1.05l0.27,0.02l5.83,-2.54l0.17,-0.19l0.71,-2.54l1.75,-0.53l0.27,0.88l0.27,0.21l1.04,0.05l1.08,1.23ZM289.1,278.45l-0.85,0.84l-0.88,0.13l-0.25,-0.51l-0.21,-0.16l-0.56,-0.1l-0.25,0.07l-0.63,0.55l-0.62,-0.29l0.5,-0.88l0.21,-1.11l0.42,-1.05l-0.03,-0.28l-0.93,-1.42l-0.18,-1.54l1.13,-1.87l2.42,0.78l2.55,2.04l0.33,0.81l-1.4,2.16l-0.77,1.84Z\", \"name\": \"France\"}, \"FI\": {\"path\": \"M492.26,76.42l-0.38,3.12l0.12,0.28l3.6,2.69l-2.14,2.96l-0.01,0.33l2.83,4.61l-1.61,3.36l0.03,0.31l2.15,2.87l-0.96,2.44l0.1,0.35l3.51,2.55l-0.81,1.72l-2.28,2.19l-5.28,4.79l-4.51,0.31l-4.39,1.37l-3.87,0.75l-1.34,-1.89l-0.11,-0.09l-2.23,-1.14l0.53,-3.54l-0.01,-0.14l-1.17,-3.37l1.12,-2.13l2.23,-2.44l5.69,-4.33l1.65,-0.84l0.16,-0.31l-0.26,-1.73l-0.15,-0.22l-3.4,-1.91l-0.77,-1.47l-0.07,-6.45l-0.12,-0.24l-3.91,-2.94l-3.0,-1.92l0.97,-0.76l2.6,2.17l0.21,0.07l3.2,-0.21l2.63,1.03l0.3,-0.05l2.39,-1.94l0.09,-0.13l1.18,-3.12l3.63,-1.42l2.87,1.59l-0.98,2.87Z\", \"name\": \"Finland\"}, \"FJ\": {\"path\": \"M869.98,327.07l-1.31,0.44l-0.14,-0.41l0.96,-0.41l0.85,-0.17l1.43,-0.78l-0.16,0.65l-1.64,0.67ZM867.58,329.12l0.54,0.47l-0.31,1.0l-1.32,0.3l-1.13,-0.26l-0.17,-0.78l0.72,-0.66l0.98,0.27l0.25,-0.04l0.43,-0.29Z\", \"name\": \"Fiji\"}, \"FK\": {\"path\": \"M268.15,427.89l2.6,-1.73l1.98,0.77l0.31,-0.05l1.32,-1.17l1.58,1.18l-0.54,0.84l-3.1,0.92l-1.0,-1.04l-0.39,-0.04l-1.9,1.35l-0.86,-1.04Z\", \"name\": \"Falkland Islands\"}, \"NI\": {\"path\": \"M202.1,252.6l0.23,-0.0l0.12,-0.11l0.68,-0.09l0.22,-0.15l0.23,-0.43l0.2,-0.01l0.28,-0.31l-0.04,-0.97l0.29,-0.03l0.5,0.02l0.25,-0.11l0.37,-0.46l0.51,0.35l0.4,-0.06l0.23,-0.28l0.45,-0.29l0.87,-0.7l0.11,-0.21l0.02,-0.26l0.23,-0.12l0.25,-0.48l0.29,0.27l0.14,0.07l0.5,0.12l0.22,-0.03l0.48,-0.28l0.66,-0.02l0.87,-0.33l0.36,-0.32l0.21,0.01l-0.11,0.48l0.0,0.14l0.22,0.8l-0.54,0.85l-0.27,1.03l-0.09,1.18l0.14,0.72l0.05,0.95l-0.24,0.15l-0.13,0.19l-0.23,1.09l0.0,0.14l0.14,0.53l-0.42,0.53l-0.06,0.24l0.12,0.69l0.08,0.15l0.18,0.19l-0.26,0.23l-0.49,-0.11l-0.35,-0.44l-0.16,-0.1l-0.79,-0.21l-0.23,0.03l-0.45,0.26l-1.51,-0.62l-0.31,0.05l-0.17,0.15l-1.81,-1.62l-0.6,-0.9l-1.04,-0.79l-0.77,-0.71Z\", \"name\": \"Nicaragua\"}, \"NL\": {\"path\": \"M436.22,136.65l1.82,0.08l0.36,0.89l-0.6,2.96l-0.53,1.06l-1.32,0.0l-0.3,0.34l0.35,2.89l-0.83,-0.47l-1.56,-1.43l-0.29,-0.07l-2.26,0.67l-1.02,-0.15l0.68,-0.48l0.1,-0.12l2.14,-4.84l3.25,-1.35Z\", \"name\": \"Netherlands\"}, \"NO\": {\"path\": \"M491.45,67.31l7.06,3.0l-2.52,0.94l-0.11,0.49l2.43,2.49l-3.82,1.59l-1.48,0.3l0.89,-2.61l-0.14,-0.36l-3.21,-1.78l-0.25,-0.02l-3.89,1.52l-0.17,0.17l-1.2,3.17l-2.19,1.78l-2.53,-0.99l-0.13,-0.02l-3.15,0.21l-2.69,-2.25l-0.38,-0.01l-1.43,1.11l-1.47,0.17l-0.26,0.26l-0.33,2.57l-4.42,-0.65l-0.33,0.22l-0.6,2.19l-2.17,-0.01l-0.27,0.16l-4.15,7.68l-3.88,5.76l-0.0,0.33l0.81,1.23l-0.7,1.27l-2.3,-0.06l-0.28,0.18l-1.63,3.72l-0.02,0.13l0.15,5.17l0.07,0.18l1.51,1.84l-0.79,4.24l-2.04,2.5l-0.92,1.75l-1.39,-1.88l-0.44,-0.05l-4.89,4.21l-3.16,0.81l-3.24,-1.74l-0.86,-3.82l-0.78,-8.6l2.18,-2.36l6.56,-3.28l5.0,-4.16l4.63,-5.74l5.99,-8.09l4.17,-3.23l6.84,-5.49l5.39,-1.92l4.06,0.24l0.23,-0.09l3.72,-3.67l4.51,0.19l4.4,-0.89ZM484.58,19.95l4.42,1.82l-3.25,2.68l-7.14,0.65l-7.16,-0.91l-0.39,-1.37l-0.28,-0.22l-3.48,-0.1l-2.25,-2.15l7.09,-1.48l3.55,1.36l0.28,-0.03l2.42,-1.66l6.18,1.41ZM481.99,33.92l-4.73,1.85l-3.76,-1.06l1.27,-1.02l0.04,-0.43l-1.18,-1.35l4.46,-0.94l0.89,1.83l0.17,0.15l2.83,0.96ZM466.5,23.95l7.64,3.87l-5.63,1.94l-0.19,0.19l-1.35,3.88l-2.08,0.96l-0.16,0.19l-1.14,4.18l-2.71,0.18l-4.94,-2.95l1.95,-1.63l-0.08,-0.51l-3.7,-1.54l-4.79,-4.54l-1.78,-4.01l6.29,-1.88l1.25,1.81l0.25,0.13l3.57,-0.08l0.26,-0.17l0.87,-1.79l3.41,-0.18l3.08,1.94Z\", \"name\": \"Norway\"}, \"NA\": {\"path\": \"M461.88,357.98l-1.61,-1.77l-0.94,-1.9l-0.54,-2.58l-0.62,-1.95l-0.83,-4.05l-0.06,-3.13l-0.33,-1.5l-0.07,-0.14l-0.95,-1.06l-1.27,-2.12l-1.3,-3.1l-0.59,-1.71l-1.98,-2.46l-0.13,-1.67l0.99,-0.4l1.44,-0.42l1.48,0.07l1.42,1.11l0.31,0.03l0.32,-0.15l9.99,-0.11l1.66,1.18l0.16,0.06l6.06,0.37l4.69,-1.06l2.01,-0.57l1.5,0.14l0.63,0.37l-1.0,0.41l-0.7,0.01l-0.16,0.05l-1.38,0.88l-0.79,-0.88l-0.29,-0.09l-3.83,0.9l-1.84,0.08l-0.29,0.3l-0.07,8.99l-2.18,0.08l-0.29,0.3l-0.0,17.47l-2.04,1.27l-1.21,0.18l-1.51,-0.49l-0.99,-0.18l-0.36,-1.0l-0.1,-0.14l-0.99,-0.74l-0.4,0.04l-0.98,1.09Z\", \"name\": \"Namibia\"}, \"NC\": {\"path\": \"M835.87,338.68l2.06,1.63l1.01,0.94l-0.49,0.32l-1.21,-0.62l-1.76,-1.16l-1.58,-1.36l-1.61,-1.79l-0.16,-0.41l0.54,0.02l1.32,0.83l1.08,0.87l0.79,0.73Z\", \"name\": \"New Caledonia\"}, \"NE\": {\"path\": \"M426.67,254.17l0.03,-1.04l-0.24,-0.3l-2.66,-0.53l-0.06,-1.0l-0.07,-0.17l-1.37,-1.62l-0.3,-1.04l0.15,-0.94l1.37,-0.09l0.19,-0.09l0.85,-0.83l3.34,-0.22l2.22,-0.41l0.24,-0.26l0.2,-1.5l1.32,-1.65l0.07,-0.19l-0.01,-5.74l3.4,-1.13l7.24,-5.12l8.46,-4.95l3.76,1.08l1.35,1.39l0.36,0.05l1.39,-0.77l0.55,3.66l0.12,0.2l0.82,0.6l0.03,0.69l0.1,0.21l0.87,0.74l-0.47,0.99l-0.96,5.26l-0.13,3.25l-3.08,2.34l-0.1,0.15l-1.08,3.37l0.08,0.31l0.94,0.86l-0.01,1.51l0.29,0.3l1.25,0.05l-0.14,0.66l-0.51,0.11l-0.24,0.26l-0.06,0.57l-0.04,0.0l-1.59,-2.62l-0.21,-0.14l-0.59,-0.1l-0.23,0.05l-1.83,1.33l-1.79,-0.68l-1.42,-0.17l-0.17,0.03l-0.65,0.32l-1.39,-0.07l-0.19,0.06l-1.4,1.03l-1.12,0.05l-2.97,-1.29l-0.26,0.01l-1.12,0.59l-1.08,-0.04l-0.85,-0.88l-0.11,-0.07l-2.51,-0.95l-0.14,-0.02l-2.69,0.3l-0.16,0.07l-0.65,0.55l-0.1,0.16l-0.34,1.41l-0.69,0.98l-0.05,0.15l-0.13,1.72l-1.47,-1.13l-0.18,-0.06l-0.9,0.01l-0.2,0.08l-0.32,0.28Z\", \"name\": \"Niger\"}, \"NG\": {\"path\": \"M442.0,272.7l-2.4,0.83l-0.88,-0.12l-0.19,0.04l-0.89,0.52l-1.78,-0.05l-1.23,-1.44l-0.88,-1.87l-1.77,-1.66l-0.21,-0.08l-3.78,0.03l0.13,-3.75l-0.06,-1.58l0.44,-1.47l0.74,-0.75l1.21,-1.56l0.04,-0.29l-0.22,-0.56l0.44,-0.9l0.01,-0.24l-0.54,-1.44l0.26,-2.97l0.72,-1.06l0.33,-1.37l0.51,-0.43l2.53,-0.28l2.38,0.9l0.89,0.91l0.2,0.09l1.28,0.04l0.15,-0.03l1.06,-0.56l2.9,1.26l0.13,0.02l1.28,-0.06l0.16,-0.06l1.39,-1.02l1.36,0.07l0.15,-0.03l0.64,-0.32l1.22,0.13l1.9,0.73l0.28,-0.04l1.86,-1.35l0.33,0.06l1.62,2.67l0.29,0.14l0.32,-0.04l0.73,0.74l-0.19,0.37l-0.12,0.74l-2.03,1.89l-0.07,0.11l-0.66,1.62l-0.35,1.28l-0.48,0.51l-0.07,0.12l-0.48,1.67l-1.26,0.98l-0.1,0.15l-0.38,1.24l-0.58,1.07l-0.2,0.91l-1.43,0.7l-1.26,-0.93l-0.19,-0.06l-0.95,0.04l-0.2,0.09l-1.41,1.39l-0.61,0.02l-0.26,0.17l-1.19,2.42l-0.61,1.67Z\", \"name\": \"Nigeria\"}, \"NZ\": {\"path\": \"M857.9,379.62l1.85,3.1l0.33,0.14l0.22,-0.28l0.04,-1.41l0.57,0.4l0.35,2.06l0.17,0.22l2.02,0.94l1.78,0.26l0.22,-0.06l1.31,-1.01l0.84,0.22l-0.53,2.27l-0.67,1.5l-1.71,-0.05l-0.25,0.12l-0.67,0.89l-0.05,0.23l0.21,1.15l-0.31,0.46l-2.15,3.57l-1.6,0.99l-0.28,-0.51l-0.15,-0.13l-0.72,-0.3l1.27,-2.15l0.01,-0.29l-0.82,-1.63l-0.15,-0.14l-2.5,-1.09l0.05,-0.69l1.67,-0.94l0.15,-0.21l0.42,-2.24l-0.11,-1.95l-0.03,-0.12l-0.97,-1.85l0.05,-0.41l-0.09,-0.25l-1.18,-1.17l-1.94,-2.49l-0.86,-1.64l0.38,-0.09l1.24,1.43l0.12,0.08l1.81,0.68l0.67,2.39ZM853.93,393.55l0.57,1.24l0.44,0.12l1.51,-1.03l0.52,0.91l0.0,1.09l-0.88,1.31l-1.62,2.2l-1.26,1.2l-0.05,0.38l0.64,1.02l-1.4,0.03l-0.14,0.04l-2.14,1.16l-0.14,0.17l-0.67,2.0l-1.38,3.06l-3.07,2.19l-2.12,-0.06l-1.55,-0.99l-0.14,-0.05l-2.53,-0.2l-0.31,-0.84l1.25,-2.15l3.07,-2.97l1.62,-0.59l1.81,-1.17l2.18,-1.63l1.55,-1.65l1.08,-2.18l0.9,-0.72l0.11,-0.17l0.35,-1.56l1.37,-1.07l0.4,0.91Z\", \"name\": \"New Zealand\"}, \"NP\": {\"path\": \"M641.26,213.53l-0.14,0.95l0.32,1.64l-0.21,0.78l-1.83,0.04l-2.98,-0.62l-1.86,-0.25l-1.37,-1.3l-0.18,-0.08l-3.38,-0.34l-3.21,-1.49l-2.38,-1.34l-2.16,-0.92l0.84,-2.2l1.51,-1.18l0.89,-0.57l1.83,0.77l2.5,1.76l1.39,0.41l0.78,1.21l0.17,0.13l1.91,0.53l2.0,1.17l2.92,0.66l2.63,0.24Z\", \"name\": \"Nepal\"}, \"CI\": {\"path\": \"M413.53,272.08l-0.83,0.02l-1.79,-0.49l-1.64,0.03l-3.04,0.46l-1.73,0.72l-2.4,0.89l-0.12,-0.02l0.16,-1.7l0.19,-0.25l0.06,-0.2l-0.08,-0.99l-0.09,-0.19l-1.06,-1.05l-0.15,-0.08l-0.71,-0.15l-0.51,-0.48l0.45,-0.92l0.02,-0.19l-0.24,-1.16l0.07,-0.43l0.14,-0.0l0.3,-0.26l0.15,-1.1l-0.02,-0.15l-0.13,-0.34l0.09,-0.13l0.83,-0.27l0.19,-0.37l-0.62,-2.02l-0.55,-1.0l0.14,-0.59l0.35,-0.14l0.24,-0.16l0.53,0.29l0.14,0.04l1.93,0.02l0.26,-0.14l0.36,-0.58l0.39,0.01l0.43,-0.17l0.28,0.79l0.43,0.16l0.56,-0.31l0.89,-0.32l0.92,0.45l0.39,0.75l0.14,0.13l1.13,0.53l0.3,-0.03l0.81,-0.59l1.02,-0.08l1.49,0.57l0.62,3.33l-1.03,2.09l-0.65,2.84l0.02,0.2l1.05,2.08l-0.07,0.64Z\", \"name\": \"Ivory Coast\"}, \"CH\": {\"path\": \"M444.71,156.27l0.05,0.3l-0.34,0.69l0.13,0.4l1.13,0.58l1.07,0.1l-0.12,0.81l-0.87,0.42l-1.75,-0.37l-0.34,0.18l-0.47,1.1l-0.86,0.07l-0.33,-0.38l-0.41,-0.04l-1.34,1.01l-1.02,0.13l-0.93,-0.58l-0.82,-1.32l-0.37,-0.12l-0.77,0.32l0.02,-0.84l1.74,-1.69l0.09,-0.25l-0.04,-0.38l0.73,0.19l0.26,-0.06l0.6,-0.48l2.02,0.02l0.24,-0.12l0.38,-0.51l2.31,0.84Z\", \"name\": \"Switzerland\"}, \"CO\": {\"path\": \"M232.24,284.95l-0.94,-0.52l-1.22,-0.82l-0.31,-0.01l-0.62,0.35l-1.88,-0.31l-0.54,-0.95l-0.29,-0.15l-0.37,0.03l-2.34,-1.33l-0.15,-0.35l0.57,-0.11l0.24,-0.32l-0.1,-1.15l0.46,-0.71l1.11,-0.15l0.21,-0.13l1.05,-1.57l0.95,-1.31l-0.08,-0.43l-0.73,-0.47l0.4,-1.24l0.01,-0.16l-0.53,-2.15l0.44,-0.54l0.06,-0.24l-0.4,-2.13l-0.06,-0.13l-0.93,-1.22l0.21,-0.8l0.52,0.12l0.32,-0.13l0.47,-0.75l0.03,-0.27l-0.52,-1.32l0.09,-0.11l1.14,0.07l0.22,-0.08l1.82,-1.71l0.96,-0.25l0.22,-0.28l0.02,-0.81l0.43,-2.01l1.28,-1.04l1.48,-0.05l0.27,-0.19l0.12,-0.31l1.73,0.19l0.2,-0.05l1.96,-1.28l0.97,-0.56l1.16,-1.16l0.64,0.11l0.43,0.44l-0.31,0.55l-1.49,0.39l-0.19,0.16l-0.6,1.2l-0.97,0.74l-0.73,0.94l-0.06,0.13l-0.3,1.76l-0.68,1.44l0.23,0.43l1.1,0.14l0.27,0.97l0.08,0.13l0.49,0.49l0.17,0.85l-0.27,0.86l-0.01,0.14l0.09,0.53l0.2,0.23l0.52,0.18l0.54,0.79l0.27,0.13l3.18,-0.24l1.31,0.29l1.7,2.08l0.31,0.1l0.96,-0.26l1.75,0.13l1.41,-0.27l0.56,0.27l-0.36,1.07l-0.54,0.81l-0.05,0.13l-0.2,1.8l0.51,1.79l0.07,0.12l0.65,0.68l0.05,0.32l-1.16,1.14l0.05,0.47l0.86,0.52l0.6,0.79l0.31,1.01l-0.7,-0.81l-0.44,-0.01l-0.74,0.77l-4.75,-0.05l-0.3,0.31l0.03,1.57l0.25,0.29l1.2,0.21l-0.02,0.24l-0.1,-0.05l-0.22,-0.02l-1.41,0.41l-0.22,0.29l-0.01,1.82l0.11,0.23l1.04,0.85l0.35,1.3l-0.06,1.02l-1.02,6.26l-0.84,-0.89l-0.19,-0.09l-0.25,-0.02l1.35,-2.13l-0.1,-0.42l-1.92,-1.17l-0.2,-0.04l-1.41,0.2l-0.82,-0.39l-0.26,0.0l-1.29,0.62l-1.63,-0.27l-1.4,-2.5l-0.12,-0.12l-1.1,-0.61l-0.83,-1.2l-1.67,-1.19l-0.27,-0.04l-0.54,0.19Z\", \"name\": \"Colombia\"}, \"CN\": {\"path\": \"M740.32,148.94l0.22,0.21l4.3,1.03l2.84,2.2l0.99,2.92l0.28,0.2l3.8,0.0l0.15,-0.04l2.13,-1.24l3.5,-0.8l-1.05,2.29l-0.95,1.13l-0.06,0.12l-0.85,3.41l-1.56,2.81l-2.83,-0.51l-0.19,0.03l-2.15,1.09l-0.15,0.34l0.65,2.59l-0.33,3.3l-1.03,0.07l-0.28,0.3l0.01,0.75l-1.09,-1.2l-0.48,0.05l-0.94,1.6l-3.76,1.26l-0.2,0.36l0.29,1.19l-1.67,-0.08l-1.11,-0.88l-0.42,0.05l-1.69,2.08l-2.71,1.57l-2.04,1.88l-3.42,0.84l-0.11,0.05l-1.8,1.34l-1.54,0.46l0.52,-0.53l0.06,-0.33l-0.44,-0.96l1.84,-1.84l0.02,-0.41l-1.32,-1.56l-0.36,-0.08l-2.23,1.08l-2.83,2.06l-1.52,1.85l-2.32,0.13l-0.2,0.09l-1.28,1.37l-0.03,0.37l1.32,1.97l0.18,0.13l1.83,0.43l0.07,1.08l0.18,0.26l1.98,0.84l0.3,-0.03l2.66,-1.96l2.06,1.04l0.12,0.03l1.4,0.07l0.27,1.0l-3.24,0.73l-0.17,0.11l-1.13,1.5l-2.38,1.4l-0.1,0.1l-1.29,1.99l0.1,0.42l2.6,1.5l0.97,2.72l1.52,2.56l1.66,2.08l-0.03,1.76l-1.4,0.67l-0.15,0.38l0.6,1.47l0.13,0.15l1.29,0.75l-0.35,2.0l-0.58,1.96l-1.22,0.21l-0.2,0.14l-1.83,2.93l-2.02,3.51l-2.29,3.13l-3.4,2.42l-3.42,2.18l-2.75,0.3l-0.15,0.06l-1.32,1.01l-0.68,-0.67l-0.41,-0.01l-1.37,1.27l-3.42,1.28l-2.62,0.4l-0.24,0.21l-0.8,2.57l-0.95,0.11l-0.53,-1.54l0.52,-0.89l-0.19,-0.44l-3.36,-0.84l-0.17,0.01l-1.09,0.4l-2.36,-0.64l-1.0,-0.9l0.35,-1.34l-0.23,-0.37l-2.22,-0.47l-1.15,-0.94l-0.36,-0.02l-2.08,1.37l-2.35,0.29l-1.98,-0.01l-0.13,0.03l-1.32,0.63l-1.28,0.38l-0.21,0.33l0.33,2.65l-0.78,-0.04l-0.14,-0.39l-0.07,-1.04l-0.41,-0.26l-1.72,0.71l-0.96,-0.43l-1.63,-0.86l0.65,-1.95l-0.19,-0.38l-1.43,-0.46l-0.56,-2.27l-0.34,-0.22l-2.26,0.38l0.25,-2.65l2.29,-2.15l0.09,-0.2l0.1,-2.21l-0.07,-2.09l-0.15,-0.25l-1.02,-0.6l-0.8,-1.52l-0.31,-0.16l-1.42,0.2l-2.16,-0.32l0.55,-0.74l0.01,-0.35l-1.17,-1.7l-0.41,-0.08l-1.67,1.07l-1.97,-0.63l-0.25,0.03l-2.89,1.73l-2.26,1.99l-1.82,0.3l-1.0,-0.66l-0.15,-0.05l-1.28,-0.06l-1.75,-0.61l-0.24,0.02l-1.35,0.69l-0.1,0.08l-1.2,1.45l-0.14,-1.41l-0.4,-0.25l-1.46,0.55l-2.83,-0.26l-2.77,-0.61l-1.99,-1.17l-1.91,-0.54l-0.78,-1.21l-0.17,-0.13l-1.36,-0.38l-2.54,-1.79l-2.01,-0.84l-0.28,0.02l-0.89,0.56l-3.31,-1.83l-2.35,-1.67l-0.57,-2.49l1.34,0.28l0.36,-0.28l0.08,-1.42l-0.05,-0.19l-0.93,-1.34l0.24,-2.18l-0.07,-0.22l-2.69,-3.32l-0.15,-0.1l-3.97,-1.11l-0.69,-2.05l-0.11,-0.15l-1.79,-1.3l-0.39,-0.73l-0.36,-1.57l0.08,-1.09l-0.18,-0.3l-1.52,-0.66l-0.22,-0.01l-0.51,0.18l-0.52,-2.21l0.59,-0.55l0.06,-0.35l-0.22,-0.44l2.12,-1.24l1.63,-0.55l2.58,0.39l0.31,-0.16l0.87,-1.75l3.05,-0.34l0.21,-0.12l0.84,-1.12l3.87,-1.59l0.15,-0.14l0.35,-0.68l0.03,-0.17l-0.17,-1.51l1.52,-0.7l0.15,-0.39l-2.12,-5.0l4.62,-1.15l1.35,-0.72l0.14,-0.17l1.72,-5.37l4.7,0.99l0.28,-0.08l1.39,-1.43l0.08,-0.2l0.11,-2.95l1.83,-0.26l0.18,-0.1l1.85,-2.08l0.61,-0.17l0.57,1.97l0.1,0.15l2.2,1.75l3.48,1.17l1.59,2.36l-0.93,3.53l0.04,0.24l0.9,1.35l0.2,0.13l2.98,0.53l3.32,0.43l2.97,1.89l1.49,0.35l1.08,2.67l1.52,1.88l0.24,0.11l2.74,-0.07l5.15,0.67l3.36,-0.41l2.39,0.43l3.67,1.81l0.13,0.03l2.92,-0.0l1.02,0.86l0.34,0.03l2.88,-1.59l3.98,-1.03l3.81,-0.13l3.02,-1.12l1.77,-1.61l1.73,-1.01l0.13,-0.37l-0.41,-1.01l-0.72,-1.07l1.09,-1.66l1.21,0.24l2.57,0.63l0.24,-0.04l2.46,-1.62l3.78,-1.19l0.13,-0.09l1.8,-2.03l1.66,-0.84l3.54,-0.41l1.93,0.35l0.34,-0.22l0.27,-1.12l-0.08,-0.29l-2.27,-2.22l-2.08,-1.07l-0.29,0.01l-1.82,1.12l-2.36,-0.47l-0.14,0.01l-1.18,0.34l-0.46,-0.94l1.69,-3.08l1.1,-2.21l2.75,1.12l0.26,-0.02l3.53,-2.06l0.15,-0.26l-0.02,-1.35l2.18,-3.39l1.35,-1.04l0.12,-0.24l-0.03,-1.85l-0.15,-0.25l-1.0,-0.58l1.68,-1.37l3.01,-0.59l3.25,-0.09l3.67,0.99l2.08,1.18l1.51,3.3l0.95,1.45l0.85,1.99l0.92,3.19ZM697.0,237.37l-1.95,1.12l-1.74,-0.68l-0.06,-1.9l1.08,-1.03l2.62,-0.7l1.23,0.05l0.37,0.65l-1.01,1.08l-0.54,1.4Z\", \"name\": \"China\"}, \"CM\": {\"path\": \"M453.76,278.92l-0.26,-0.11l-0.18,-0.02l-1.42,0.31l-1.56,-0.33l-1.17,0.16l-3.7,-0.05l0.3,-1.63l-0.04,-0.21l-0.98,-1.66l-0.15,-0.13l-1.03,-0.38l-0.46,-1.01l-0.13,-0.14l-0.48,-0.27l0.02,-0.46l0.62,-1.72l1.1,-2.25l0.54,-0.02l0.2,-0.09l1.41,-1.39l0.73,-0.03l1.32,0.97l0.31,0.03l1.72,-0.85l0.16,-0.2l0.22,-1.0l0.57,-1.03l0.36,-1.18l1.26,-0.98l0.1,-0.15l0.49,-1.7l0.48,-0.51l0.07,-0.13l0.35,-1.3l0.63,-1.54l2.06,-1.92l0.09,-0.17l0.12,-0.79l0.24,-0.41l-0.04,-0.36l-0.89,-0.91l0.04,-0.45l0.28,-0.06l0.85,1.39l0.16,1.59l-0.09,1.66l0.04,0.17l1.09,1.84l-0.86,-0.02l-0.72,0.17l-1.07,-0.24l-0.34,0.17l-0.54,1.19l0.06,0.34l1.48,1.47l1.06,0.44l0.32,0.94l0.73,1.6l-0.32,0.57l-1.23,2.49l-0.54,0.41l-0.12,0.21l-0.19,1.95l0.24,1.08l-0.18,0.67l0.07,0.28l1.13,1.25l0.24,0.93l0.92,1.29l1.1,0.8l0.1,1.01l0.26,0.73l-0.12,0.93l-1.65,-0.49l-2.02,-0.66l-3.19,-0.11Z\", \"name\": \"Cameroon\"}, \"CL\": {\"path\": \"M246.8,429.1l-1.14,0.78l-2.25,1.21l-0.16,0.23l-0.37,2.94l-0.75,0.06l-2.72,-1.07l-2.83,-2.34l-3.06,-1.9l-0.71,-1.92l0.67,-1.84l-0.02,-0.25l-1.22,-2.13l-0.31,-5.41l1.02,-2.95l2.59,-2.4l-0.13,-0.51l-3.32,-0.8l2.06,-2.4l0.07,-0.15l0.79,-4.77l2.44,0.95l0.4,-0.22l1.31,-6.31l-0.16,-0.33l-1.68,-0.8l-0.42,0.21l-0.72,3.47l-1.01,-0.27l0.74,-4.06l0.85,-5.46l1.12,-1.96l0.03,-0.22l-0.71,-2.82l-0.19,-2.94l0.76,-0.07l0.26,-0.2l1.53,-4.62l1.73,-4.52l1.07,-4.2l-0.56,-4.2l0.73,-2.2l0.01,-0.12l-0.29,-3.3l1.46,-3.34l0.45,-5.19l0.8,-5.52l0.78,-5.89l-0.18,-4.33l-0.49,-3.47l1.1,-0.56l0.13,-0.13l0.44,-0.88l0.9,1.29l0.32,1.8l0.1,0.18l1.16,0.97l-0.73,2.33l0.01,0.21l1.33,2.91l0.97,3.6l0.35,0.22l1.57,-0.31l0.16,0.34l-0.79,2.51l-2.61,1.25l-0.17,0.28l0.08,4.36l-0.48,0.79l0.01,0.33l0.6,0.84l-1.62,1.55l-1.67,2.6l-0.89,2.47l-0.02,0.13l0.23,2.56l-1.5,2.76l-0.03,0.21l1.15,4.8l0.11,0.17l0.54,0.42l-0.01,2.37l-1.4,2.7l-0.03,0.15l0.06,2.25l-1.8,1.78l-0.09,0.21l0.02,2.73l0.71,2.63l-1.33,0.94l-0.12,0.17l-0.67,2.64l-0.59,3.03l0.4,3.55l-0.84,0.51l-0.14,0.31l0.58,3.5l0.08,0.16l0.96,0.99l-0.7,1.08l0.11,0.43l1.04,0.55l0.19,0.8l-0.89,0.48l-0.16,0.31l0.26,1.77l-0.89,4.06l-1.31,2.67l-0.03,0.19l0.28,1.53l-0.73,1.88l-1.85,1.37l-0.12,0.26l0.22,3.46l0.06,0.16l0.88,1.19l0.28,0.12l1.32,-0.17l-0.04,2.13l0.04,0.15l1.04,1.95l0.24,0.16l5.94,0.44ZM248.79,430.71l0.0,7.41l0.3,0.3l2.67,0.0l1.01,0.06l-0.54,0.91l-1.99,1.01l-1.13,-0.1l-1.42,-0.27l-1.87,-1.06l-2.57,-0.49l-3.09,-1.9l-2.52,-1.83l-2.65,-2.93l0.93,0.32l3.54,2.29l3.32,1.23l0.34,-0.09l1.29,-1.57l0.83,-2.32l2.11,-1.28l1.43,0.32Z\", \"name\": \"Chile\"}, \"CA\": {\"path\": \"M280.14,145.66l-1.66,2.88l0.06,0.37l0.37,0.03l1.5,-1.01l1.17,0.49l-0.64,0.83l0.13,0.46l2.22,0.89l0.28,-0.03l1.02,-0.7l2.09,0.83l-0.69,2.1l0.37,0.38l1.43,-0.45l0.27,1.43l0.74,1.88l-0.95,2.5l-0.88,0.09l-1.34,-0.48l0.49,-2.34l-0.14,-0.32l-0.7,-0.4l-0.36,0.04l-2.81,2.66l-0.63,-0.05l1.2,-1.01l-0.1,-0.52l-2.4,-0.77l-2.79,0.18l-4.65,-0.09l-0.22,-0.54l1.37,-0.99l0.01,-0.48l-0.82,-0.65l1.91,-1.79l2.57,-5.17l1.49,-1.81l2.04,-1.07l0.63,0.08l-0.27,0.51l-1.33,2.07ZM193.92,74.85l-0.01,4.24l0.19,0.28l0.33,-0.07l3.14,-3.22l2.65,2.5l-0.71,3.04l0.06,0.26l2.42,2.88l0.46,0.0l2.66,-3.14l1.83,-3.74l0.03,-0.12l0.13,-4.53l3.23,0.31l3.63,0.64l3.18,2.08l0.13,1.91l-1.79,2.22l-0.0,0.37l1.69,2.2l-0.28,1.8l-4.74,2.84l-3.33,0.62l-2.5,-1.21l-0.41,0.17l-0.73,2.05l-2.39,3.44l-0.74,1.78l-2.78,2.61l-3.48,0.26l-0.17,0.07l-1.98,1.68l-0.1,0.21l-0.15,2.33l-2.68,0.45l-0.17,0.09l-3.1,3.2l-2.75,4.38l-0.99,3.06l-0.14,4.31l0.25,0.31l3.5,0.58l1.07,3.24l1.18,2.76l0.34,0.18l3.43,-0.69l4.55,1.52l2.45,1.32l1.76,1.65l0.12,0.07l3.11,0.96l2.63,1.46l0.13,0.04l4.12,0.2l2.41,0.3l-0.36,2.81l0.8,3.51l1.81,3.78l0.08,0.1l3.73,3.17l0.34,0.03l1.93,-1.08l0.13,-0.15l1.35,-3.44l0.01,-0.18l-1.31,-5.38l-0.08,-0.14l-1.46,-1.5l3.68,-1.51l2.84,-2.46l1.45,-2.55l0.04,-0.17l-0.2,-2.39l-0.04,-0.12l-1.7,-3.07l-2.9,-2.64l2.79,-3.66l0.05,-0.27l-1.08,-3.38l-0.8,-5.75l1.45,-0.75l4.18,1.03l2.6,0.38l0.18,-0.03l1.93,-0.95l2.18,1.23l3.01,2.18l0.73,1.42l0.25,0.16l4.18,0.27l-0.06,2.95l0.83,4.7l0.22,0.24l2.19,0.55l1.75,2.08l0.38,0.07l3.63,-2.03l0.11,-0.11l2.38,-4.06l1.36,-1.43l1.76,3.01l3.26,4.68l2.68,4.19l-0.94,2.09l0.12,0.38l3.31,1.98l2.23,1.98l0.13,0.07l3.94,0.89l1.48,1.02l0.96,2.82l0.22,0.2l1.85,0.43l0.88,1.13l0.17,3.53l-1.68,1.16l-1.76,1.14l-4.08,1.17l-0.11,0.06l-3.08,2.65l-4.11,0.52l-5.35,-0.69l-3.76,-0.02l-2.62,0.23l-0.2,0.1l-2.05,2.29l-3.13,1.41l-0.11,0.08l-3.6,4.24l-2.87,2.92l-0.05,0.36l0.33,0.14l2.13,-0.52l0.15,-0.08l3.98,-4.15l5.16,-2.63l3.58,-0.31l1.82,1.3l-2.09,1.91l-0.09,0.29l0.8,3.46l0.82,2.37l0.15,0.17l3.25,1.56l0.16,0.03l4.14,-0.45l0.21,-0.12l2.03,-2.86l0.11,1.46l0.13,0.22l1.26,0.88l-2.7,1.78l-5.51,1.83l-2.52,1.26l-2.75,2.16l-1.52,-0.18l-0.08,-2.16l4.19,-2.47l0.14,-0.34l-0.3,-0.22l-4.01,0.1l-2.66,0.36l-1.45,-1.56l0.0,-4.16l-0.11,-0.23l-1.11,-0.91l-0.28,-0.05l-1.5,0.48l-0.7,-0.7l-0.45,0.02l-1.91,2.39l-0.8,2.5l-0.82,1.31l-0.95,0.43l-0.77,0.15l-0.23,0.2l-0.18,0.56l-8.2,0.02l-0.13,0.03l-1.19,0.61l-2.95,2.45l-0.78,1.13l-4.6,0.01l-0.12,0.02l-1.13,0.48l-0.13,0.44l0.37,0.55l0.2,0.82l-0.01,0.09l-3.1,1.42l-2.63,0.5l-2.84,1.57l-0.47,0.0l-0.72,-0.4l-0.18,-0.27l0.03,-0.15l0.52,-1.0l1.2,-1.71l0.73,-1.8l0.02,-0.17l-1.03,-5.47l-0.15,-0.21l-2.35,-1.32l0.16,-0.29l-0.05,-0.35l-0.37,-0.38l-0.22,-0.09l-0.56,0.0l-0.35,-0.34l-0.11,-0.65l-0.46,-0.2l-0.39,0.26l-0.2,-0.03l-0.11,-0.33l-0.48,-0.25l-0.21,-0.71l-0.15,-0.18l-3.97,-2.07l-4.8,-2.39l-0.25,-0.01l-2.19,0.89l-0.72,0.03l-3.04,-0.82l-0.14,-0.0l-1.94,0.4l-2.4,-0.98l-2.56,-0.51l-1.7,-0.19l-0.62,-0.44l-0.42,-1.67l-0.3,-0.23l-0.85,0.02l-0.29,0.3l-0.01,0.95l-69.26,-0.01l-4.77,-3.14l-1.78,-1.41l-4.51,-1.38l-1.3,-2.73l0.34,-1.96l-0.17,-0.33l-3.06,-1.37l-0.41,-2.58l-0.11,-0.18l-2.92,-2.4l-0.05,-1.53l1.32,-1.59l0.07,-0.2l-0.07,-2.21l-0.16,-0.26l-4.19,-2.22l-2.52,-4.02l-1.56,-2.6l-0.08,-0.09l-2.28,-1.64l-1.65,-1.48l-1.31,-1.89l-0.38,-0.1l-2.51,1.21l-2.28,1.92l-2.03,-2.22l-1.85,-1.71l-2.44,-1.04l-2.28,-0.12l0.03,-37.72l4.27,0.98l4.0,2.13l2.61,0.4l0.24,-0.07l2.17,-1.81l2.92,-1.33l3.63,0.53l0.18,-0.03l3.72,-1.94l3.89,-1.06l1.6,1.72l0.37,0.06l1.87,-1.04l0.14,-0.19l0.48,-1.83l1.37,0.38l4.18,3.96l0.41,0.0l2.89,-2.62l0.28,2.79l0.37,0.26l3.08,-0.73l0.17,-0.12l0.85,-1.16l2.81,0.24l3.83,1.86l5.86,1.61l3.46,0.75l2.44,-0.26l2.89,1.89l-3.12,1.89l-0.14,0.31l0.24,0.24l4.53,0.92l6.84,-0.5l2.04,-0.71l2.54,2.44l0.39,0.02l2.72,-2.16l-0.01,-0.48l-2.26,-1.61l1.27,-1.16l2.94,-0.19l1.94,-0.42l1.89,0.97l2.49,2.32l0.24,0.08l2.71,-0.33l4.35,1.9l0.17,0.02l3.86,-0.67l3.62,0.1l0.31,-0.33l-0.26,-2.44l1.9,-0.65l3.58,1.36l-0.01,3.84l0.23,0.29l0.34,-0.17l1.51,-3.23l1.81,0.1l0.31,-0.22l1.13,-4.37l-0.08,-0.29l-2.68,-2.73l-2.83,-1.76l0.19,-4.73l2.77,-3.15l3.06,0.69l2.44,1.97l3.24,4.88l-2.05,2.02l0.15,0.51l4.41,0.85ZM265.85,150.7l-0.84,0.04l-3.15,-0.99l-1.77,-1.17l0.19,-0.06l3.17,0.79l2.39,1.27l0.01,0.12ZM249.41,3.71l6.68,0.49l5.34,0.79l4.34,1.6l-0.08,1.24l-5.91,2.56l-6.03,1.21l-2.36,1.38l-0.14,0.34l0.29,0.22l4.37,-0.02l-4.96,3.01l-4.06,1.64l-0.11,0.08l-4.21,4.62l-5.07,0.92l-0.12,0.05l-1.53,1.1l-7.5,0.59l-0.28,0.28l0.24,0.31l2.67,0.54l-1.04,0.6l-0.09,0.44l1.89,2.49l-2.11,1.66l-3.83,1.52l-0.15,0.13l-1.14,2.01l-3.41,1.55l-0.16,0.36l0.35,1.19l0.3,0.22l3.98,-0.19l0.03,0.78l-6.42,2.99l-6.44,-1.41l-7.41,0.79l-3.72,-0.62l-4.48,-0.26l-0.25,-2.0l4.37,-1.13l0.21,-0.38l-1.14,-3.55l1.13,-0.28l6.61,2.29l0.35,-0.12l-0.04,-0.37l-3.41,-3.45l-0.14,-0.08l-3.57,-0.92l1.62,-1.7l4.36,-1.3l0.2,-0.18l0.71,-1.94l-0.12,-0.36l-3.45,-2.15l-0.88,-2.43l6.36,0.23l1.94,0.61l0.23,-0.02l3.91,-2.1l0.15,-0.32l-0.26,-0.24l-5.69,-0.67l-8.69,0.37l-4.3,-1.92l-2.12,-2.39l-2.82,-1.68l-0.44,-1.65l3.41,-1.06l2.93,-0.2l4.91,-0.99l3.69,-2.28l2.93,0.31l2.64,1.68l0.42,-0.1l1.84,-3.23l3.17,-0.96l4.45,-0.69l7.56,-0.26l1.26,0.64l0.18,0.03l7.2,-1.06l10.81,0.8ZM203.94,57.59l0.01,0.32l1.97,2.97l0.51,-0.01l2.26,-3.75l6.05,-1.89l4.08,4.72l-0.36,2.95l0.38,0.33l4.95,-1.36l0.11,-0.05l2.23,-1.77l5.37,2.31l3.32,2.14l0.3,1.89l0.36,0.25l4.48,-1.01l2.49,2.8l0.14,0.09l5.99,1.78l2.09,1.74l2.18,3.83l-4.29,1.91l-0.01,0.54l5.9,2.83l3.95,0.94l3.54,3.84l0.2,0.1l3.58,0.25l-0.67,2.51l-4.18,4.54l-2.84,-1.61l-3.91,-3.95l-0.26,-0.09l-3.24,0.52l-0.25,0.26l-0.32,2.37l0.1,0.26l2.63,2.38l3.42,1.89l0.96,1.0l1.57,3.8l-0.74,2.43l-2.85,-0.96l-6.26,-3.15l-0.38,0.09l0.04,0.39l3.54,3.4l2.55,2.31l0.23,0.78l-6.26,-1.43l-5.33,-2.25l-2.73,-1.73l0.67,-0.86l-0.09,-0.45l-7.38,-4.01l-0.44,0.27l0.03,0.89l-6.85,0.61l-1.8,-1.17l1.43,-2.6l4.56,-0.07l5.15,-0.52l0.23,-0.45l-0.76,-1.34l0.8,-1.89l3.21,-4.06l0.05,-0.29l-0.72,-1.95l-0.97,-1.47l-0.11,-0.1l-3.84,-2.1l-4.53,-1.33l1.09,-0.75l0.05,-0.45l-2.65,-2.75l-0.18,-0.09l-2.12,-0.24l-1.91,-1.47l-0.39,0.02l-1.27,1.25l-4.4,0.56l-9.06,-0.99l-5.28,-1.31l-4.01,-0.67l-1.72,-1.31l2.32,-1.85l0.1,-0.33l-0.28,-0.2l-3.3,-0.02l-0.74,-4.36l1.86,-4.09l2.46,-1.88l5.74,-1.15l-1.5,2.55ZM261.28,159.28l0.19,0.14l1.82,0.42l1.66,-0.05l-0.66,0.68l-0.75,0.16l-3.0,-1.25l-0.46,-0.77l0.51,-0.52l0.68,1.19ZM230.87,84.48l-2.48,0.19l-0.52,-1.74l0.96,-2.17l2.03,-0.53l1.71,1.04l0.02,1.6l-0.22,0.46l-1.5,1.16ZM229.52,58.19l0.14,0.82l-4.99,-0.22l-2.73,0.63l-0.59,-0.23l-2.61,-2.4l0.08,-1.38l0.94,-0.25l5.61,0.51l4.14,2.54ZM222.12,105.0l-0.79,1.63l-0.75,-0.22l-0.52,-0.91l0.04,-0.09l0.84,-1.01l0.74,0.06l0.44,0.55ZM183.77,38.22l2.72,1.65l0.16,0.04l4.83,-0.01l1.92,1.52l-0.51,1.75l0.18,0.36l2.84,1.14l1.56,1.19l0.16,0.06l3.37,0.22l3.65,0.42l4.07,-1.1l5.05,-0.43l3.96,0.35l2.53,1.8l0.48,1.79l-1.37,1.16l-3.6,1.03l-3.22,-0.59l-7.17,0.76l-5.1,0.09l-4.0,-0.6l-6.48,-1.56l-0.81,-2.57l-0.3,-2.49l-0.1,-0.19l-2.51,-2.25l-0.16,-0.07l-5.12,-0.63l-2.61,-1.45l0.75,-1.71l4.88,0.32ZM207.46,91.26l0.42,1.62l0.42,0.19l1.12,-0.55l1.35,0.99l2.74,1.39l2.73,1.2l0.2,1.74l0.35,0.26l1.72,-0.29l1.31,0.97l-1.72,0.96l-3.68,-0.9l-1.34,-1.71l-0.43,-0.04l-2.46,2.1l-3.23,1.85l-0.74,-1.98l-0.31,-0.19l-2.47,0.28l1.49,-1.34l0.1,-0.19l0.32,-3.15l0.79,-3.45l1.34,0.25ZM215.59,102.66l-2.73,2.0l-1.49,-0.08l-0.37,-0.7l1.61,-1.56l3.0,0.03l-0.02,0.3ZM202.79,24.07l0.11,0.12l2.54,1.53l-3.01,1.47l-4.55,4.07l-4.3,0.38l-5.07,-0.68l-2.51,-2.09l0.03,-1.72l1.86,-1.4l0.1,-0.34l-0.29,-0.2l-4.49,0.04l-2.63,-1.79l-1.45,-2.36l1.61,-2.38l1.65,-1.69l2.47,-0.4l0.19,-0.48l-0.72,-0.89l5.1,-0.26l3.1,3.05l0.13,0.07l4.21,1.25l3.99,1.06l1.92,3.65ZM187.5,59.3l-0.15,0.1l-2.59,3.4l-2.5,-0.15l-1.47,-3.92l0.04,-2.24l1.22,-1.92l2.34,-1.26l5.11,0.17l4.28,1.06l-3.36,3.86l-2.9,0.9ZM186.19,48.8l-1.15,1.63l-3.42,-0.35l-2.68,-1.15l1.11,-1.88l3.34,-1.27l2.01,1.63l0.79,1.38ZM185.78,35.41l-0.95,0.13l-4.48,-0.33l-0.4,-0.91l4.5,0.07l1.45,0.82l-0.1,0.21ZM180.76,32.56l-3.43,1.03l-1.85,-1.14l-1.01,-1.92l-0.16,-1.87l2.87,0.2l1.39,0.35l2.75,1.75l-0.55,1.6ZM181.03,76.32l-1.21,1.2l-3.19,-1.26l-0.18,-0.01l-1.92,0.45l-2.88,-1.67l1.84,-1.16l1.6,-1.77l2.45,1.17l1.45,0.77l2.05,2.28ZM169.72,54.76l2.83,0.97l0.14,0.01l4.25,-0.58l0.47,1.01l-2.19,2.16l0.07,0.48l3.61,1.95l-0.41,3.84l-3.87,1.68l-2.23,-0.36l-1.73,-1.75l-6.07,-3.53l0.03,-1.01l4.79,0.55l0.3,-0.16l-0.04,-0.34l-2.55,-2.89l2.59,-2.05ZM174.44,40.56l1.49,1.87l0.07,2.48l-1.07,3.52l-3.87,0.48l-2.41,-0.72l0.05,-2.72l-0.33,-0.3l-3.79,0.36l-0.13,-3.31l2.36,0.14l0.15,-0.03l3.7,-1.74l3.44,0.29l0.31,-0.22l0.03,-0.12ZM170.14,31.5l0.75,1.74l-3.52,-0.52l-4.19,-1.77l-4.65,-0.17l1.65,-1.11l-0.05,-0.52l-2.86,-1.26l-0.13,-1.58l4.52,0.7l6.66,1.99l1.84,2.5ZM134.64,58.08l-1.08,1.93l0.34,0.44l5.44,-1.41l3.37,2.32l0.37,-0.02l2.66,-2.28l2.03,1.38l2.01,4.53l0.53,0.04l1.26,-1.93l0.03,-0.27l-1.67,-4.55l1.82,-0.58l2.36,0.73l2.69,1.84l1.53,4.46l0.77,3.24l0.15,0.19l4.22,2.26l4.32,2.04l-0.21,1.51l-3.87,0.34l-0.19,0.5l1.45,1.54l-0.65,1.23l-4.3,-0.65l-4.4,-1.19l-2.97,0.28l-4.67,1.48l-6.31,0.65l-4.27,0.39l-1.26,-1.91l-0.15,-0.12l-3.42,-1.2l-0.16,-0.01l-2.05,0.45l-2.66,-3.02l1.2,-0.34l3.82,-0.76l3.58,0.19l3.27,-0.78l0.23,-0.29l-0.24,-0.29l-4.84,-1.06l-5.42,0.35l-3.4,-0.09l-0.97,-1.22l5.39,-1.7l0.21,-0.33l-0.3,-0.25l-3.82,0.06l-3.95,-1.1l1.88,-3.13l1.68,-1.81l6.54,-2.84l2.11,0.77ZM158.85,56.58l-1.82,2.62l-3.38,-2.9l0.49,-0.39l3.17,-0.18l1.54,0.86ZM149.71,42.7l1.0,1.87l0.37,0.14l2.17,-0.83l2.33,0.2l0.38,2.16l-1.38,2.17l-8.33,0.76l-6.34,2.15l-3.51,0.1l-0.22,-1.13l4.98,-2.12l0.17,-0.34l-0.31,-0.23l-11.27,0.6l-3.04,-0.78l3.14,-4.57l2.2,-1.35l6.87,1.7l4.4,3.0l0.14,0.05l4.37,0.39l0.27,-0.48l-3.41,-4.68l1.96,-1.62l2.28,0.53l0.79,2.32ZM145.44,29.83l-2.18,0.77l-3.79,-0.0l0.02,-0.31l2.34,-1.5l1.2,0.23l2.42,0.83ZM144.83,34.5l-4.44,1.46l-3.18,-1.48l1.6,-1.36l3.51,-0.53l3.1,0.75l-0.6,1.16ZM119.02,65.87l-6.17,2.07l-1.19,-1.82l-0.13,-0.11l-5.48,-2.32l0.92,-1.7l1.73,-3.44l2.16,-3.15l-0.02,-0.36l-2.09,-2.56l7.84,-0.71l3.59,1.02l6.32,0.27l2.35,1.37l2.25,1.71l-2.68,1.04l-6.21,3.41l-3.1,3.28l-0.08,0.21l0.0,1.81ZM129.66,35.4l-0.3,3.55l-1.77,1.67l-2.34,0.27l-4.62,2.2l-3.89,0.76l-2.83,-0.93l3.85,-3.52l5.04,-3.36l3.75,0.07l3.11,-0.7ZM111.24,152.74l-0.82,0.29l-3.92,-1.39l-0.7,-1.06l-0.12,-0.1l-2.15,-1.09l-0.41,-0.84l-0.2,-0.16l-2.44,-0.56l-0.84,-1.56l0.1,-0.36l2.34,0.64l1.53,0.5l2.28,0.34l0.78,1.04l1.24,1.55l0.09,0.08l2.42,1.3l0.81,1.39ZM88.54,134.82l0.14,0.02l2.0,-0.23l-0.67,3.48l0.06,0.24l1.78,2.22l-0.24,-0.0l-1.4,-1.42l-0.91,-1.53l-1.26,-1.08l-0.42,-1.35l0.09,-0.66l0.82,0.31Z\", \"name\": \"Canada\"}, \"CG\": {\"path\": \"M453.66,296.61l-0.9,-0.82l-0.35,-0.04l-0.83,0.48l-0.77,0.83l-1.65,-2.13l1.66,-1.2l0.08,-0.39l-0.81,-1.43l0.59,-0.43l1.62,-0.29l0.24,-0.24l0.1,-0.58l0.94,0.84l0.19,0.08l2.21,0.11l0.27,-0.14l0.81,-1.29l0.32,-1.76l-0.27,-1.96l-0.06,-0.15l-1.08,-1.35l1.02,-2.74l-0.09,-0.34l-0.62,-0.5l-0.22,-0.06l-1.66,0.18l-0.55,-1.03l0.12,-0.73l2.85,0.09l1.98,0.65l2.0,0.59l0.38,-0.25l0.17,-1.3l1.26,-2.24l1.34,-1.19l1.54,0.38l1.35,0.12l-0.11,1.15l-0.74,1.34l-0.5,1.61l-0.31,2.22l0.12,1.41l-0.4,0.9l-0.06,0.88l-0.24,0.67l-1.57,1.15l-1.24,1.41l-1.09,2.43l-0.03,0.13l0.08,1.95l-0.55,0.69l-1.46,1.23l-1.32,1.41l-0.61,-0.29l-0.13,-0.57l-0.29,-0.23l-1.36,-0.02l-0.23,0.1l-0.72,0.81l-0.41,-0.16Z\", \"name\": \"Republic of the Congo\"}, \"CF\": {\"path\": \"M459.41,266.56l1.9,-0.17l0.22,-0.12l0.36,-0.5l0.14,0.02l0.55,0.51l0.29,0.07l3.15,-0.96l0.12,-0.07l1.05,-0.97l1.29,-0.87l0.12,-0.33l-0.17,-0.61l0.38,-0.12l2.36,0.15l0.15,-0.03l2.36,-1.17l0.12,-0.1l1.78,-2.72l1.18,-0.96l1.23,-0.34l0.21,0.79l0.07,0.13l1.37,1.5l0.01,0.86l-0.39,1.0l-0.01,0.17l0.16,0.78l0.1,0.17l0.91,0.76l1.89,1.09l1.24,0.92l0.02,0.67l0.12,0.23l1.67,1.3l0.99,1.03l0.61,1.46l0.14,0.15l1.79,0.95l0.2,0.4l-0.44,0.14l-1.54,-0.06l-1.98,-0.26l-0.93,0.22l-0.19,0.14l-0.3,0.48l-0.57,0.05l-0.91,-0.49l-0.26,-0.01l-2.7,1.21l-1.04,-0.23l-0.21,0.03l-0.34,0.19l-0.12,0.13l-0.64,1.3l-1.67,-0.43l-1.77,-0.24l-1.58,-0.91l-2.06,-0.85l-0.27,0.02l-1.42,0.88l-0.97,1.27l-0.06,0.14l-0.19,1.46l-1.3,-0.11l-1.67,-0.42l-0.27,0.07l-1.55,1.41l-0.99,1.76l-0.14,-1.18l-0.13,-0.22l-1.1,-0.78l-0.86,-1.2l-0.2,-0.84l-0.07,-0.13l-1.07,-1.19l0.16,-0.59l0.0,-0.15l-0.24,-1.01l0.18,-1.77l0.5,-0.38l0.09,-0.11l1.18,-2.4Z\", \"name\": \"Central African Republic\"}, \"CD\": {\"path\": \"M497.85,276.25l-0.14,2.77l0.2,0.3l0.57,0.19l-0.47,0.52l-1.0,0.71l-0.96,1.31l-0.56,1.22l-0.16,2.04l-0.54,0.89l-0.04,0.15l-0.02,1.76l-0.63,0.61l-0.09,0.2l-0.08,1.33l-0.2,0.11l-0.15,0.21l-0.23,1.37l0.03,0.2l0.6,1.08l0.16,2.96l0.44,2.29l-0.24,1.25l0.01,0.15l0.5,1.46l0.07,0.12l1.41,1.37l1.09,2.56l-0.51,-0.11l-3.45,0.45l-0.67,0.3l-0.15,0.15l-0.71,1.61l0.01,0.26l0.52,1.03l-0.43,2.9l-0.31,2.55l0.13,0.29l0.7,0.46l1.75,0.99l0.31,-0.01l0.26,-0.17l0.15,1.9l-1.44,-0.02l-0.94,-1.28l-0.94,-1.1l-0.17,-0.1l-1.76,-0.33l-0.5,-1.18l-0.42,-0.15l-1.44,0.75l-1.79,-0.32l-0.77,-1.05l-0.2,-0.12l-1.59,-0.23l-0.97,0.04l-0.1,-0.53l-0.27,-0.25l-0.86,-0.06l-1.13,-0.15l-1.62,0.37l-1.04,-0.06l-0.32,0.09l0.11,-2.56l-0.08,-0.21l-0.77,-0.87l-0.17,-1.41l0.36,-1.47l-0.03,-0.21l-0.48,-0.91l-0.04,-1.52l-0.3,-0.29l-2.65,0.02l0.13,-0.53l-0.29,-0.37l-1.28,0.01l-0.28,0.21l-0.07,0.24l-1.35,0.09l-0.26,0.18l-0.62,1.45l-0.25,0.42l-1.17,-0.3l-0.19,0.01l-0.79,0.34l-1.44,0.18l-1.41,-1.96l-0.7,-1.47l-0.61,-1.86l-0.28,-0.21l-7.39,-0.03l-0.92,0.3l-0.78,-0.03l-0.78,0.25l-0.11,-0.25l0.35,-0.15l0.18,-0.26l0.07,-1.02l0.33,-0.52l0.72,-0.42l0.52,0.2l0.33,-0.08l0.76,-0.86l0.99,0.02l0.11,0.48l0.16,0.2l0.94,0.44l0.35,-0.07l1.46,-1.56l1.44,-1.21l0.68,-0.85l0.06,-0.2l-0.08,-1.99l1.04,-2.33l1.1,-1.23l1.62,-1.19l0.11,-0.14l0.29,-0.8l0.08,-0.94l0.38,-0.82l0.03,-0.16l-0.13,-1.38l0.3,-2.16l0.47,-1.51l0.73,-1.31l0.04,-0.12l0.15,-1.51l0.21,-1.66l0.89,-1.16l1.16,-0.7l1.9,0.79l1.69,0.95l1.81,0.24l1.85,0.48l0.35,-0.16l0.71,-1.43l0.16,-0.09l1.03,0.23l0.19,-0.02l2.65,-1.19l0.86,0.46l0.17,0.03l0.81,-0.08l0.23,-0.14l0.31,-0.5l0.75,-0.17l1.83,0.26l1.64,0.06l0.72,-0.21l1.39,1.9l0.16,0.11l1.12,0.3l0.24,-0.04l0.58,-0.36l1.05,0.15l0.15,-0.02l1.15,-0.44l0.47,0.84l0.08,0.09l2.08,1.57Z\", \"name\": \"Democratic Republic of the Congo\"}, \"CZ\": {\"path\": \"M463.29,152.22l-0.88,-0.47l-0.18,-0.03l-1.08,0.15l-1.86,-0.94l-0.21,-0.02l-0.88,0.24l-0.13,0.07l-1.25,1.17l-1.63,-0.91l-1.38,-1.36l-1.22,-0.75l-0.24,-1.24l-0.33,-0.75l1.53,-0.6l0.98,-0.84l1.74,-0.62l0.11,-0.07l0.47,-0.47l0.46,0.27l0.24,0.03l0.96,-0.3l1.06,0.95l0.15,0.07l1.57,0.24l-0.1,0.6l0.16,0.32l1.36,0.68l0.41,-0.15l0.28,-0.62l1.29,0.28l0.19,0.84l0.26,0.23l1.73,0.18l0.74,1.02l-0.17,0.0l-0.25,0.13l-0.32,0.49l-0.46,0.11l-0.22,0.23l-0.13,0.57l-0.32,0.1l-0.2,0.22l-0.03,0.14l-0.65,0.25l-1.05,-0.05l-0.28,0.17l-0.22,0.43Z\", \"name\": \"Czech Republic\"}, \"CY\": {\"path\": \"M505.03,193.75l-1.51,0.68l-1.0,-0.3l-0.32,-0.63l0.69,-0.06l0.41,0.13l0.19,-0.0l0.62,-0.22l0.31,0.02l0.06,0.22l0.49,0.17l0.06,-0.01Z\", \"name\": \"Cyprus\"}, \"CR\": {\"path\": \"M213.0,263.84l-0.98,-0.4l-0.3,-0.31l0.16,-0.24l0.05,-0.21l-0.09,-0.56l-0.1,-0.18l-0.76,-0.65l-0.99,-0.5l-0.74,-0.28l-0.13,-0.58l-0.12,-0.18l-0.66,-0.45l-0.34,-0.0l-0.13,0.31l0.13,0.59l-0.17,0.21l-0.34,-0.42l-0.14,-0.1l-0.7,-0.22l-0.23,-0.34l0.01,-0.62l0.31,-0.74l-0.14,-0.38l-0.3,-0.15l0.47,-0.4l1.48,0.6l0.26,-0.02l0.47,-0.27l0.58,0.15l0.35,0.44l0.17,0.11l0.74,0.17l0.27,-0.07l0.3,-0.27l0.52,1.09l0.97,1.02l0.77,0.71l-0.41,0.1l-0.23,0.3l0.01,1.02l0.12,0.24l0.2,0.14l-0.07,0.05l-0.11,0.3l0.08,0.37l-0.23,0.63Z\", \"name\": \"Costa Rica\"}, \"CU\": {\"path\": \"M215.01,226.09l2.08,0.18l1.94,0.03l2.24,0.86l0.95,0.92l0.25,0.08l2.22,-0.28l0.79,0.55l3.68,2.81l0.19,0.06l0.77,-0.03l1.18,0.42l-0.12,0.47l0.27,0.37l1.78,0.1l1.59,0.9l-0.11,0.22l-1.5,0.3l-1.64,0.13l-1.75,-0.2l-2.69,0.19l1.0,-0.86l-0.03,-0.48l-1.02,-0.68l-0.13,-0.05l-1.52,-0.16l-0.74,-0.64l-0.57,-1.42l-0.3,-0.19l-1.36,0.1l-2.23,-0.67l-0.71,-0.52l-0.14,-0.06l-3.2,-0.4l-0.42,-0.25l0.56,-0.39l0.12,-0.33l-0.27,-0.22l-2.46,-0.13l-0.2,0.06l-1.72,1.31l-0.94,0.03l-0.25,0.15l-0.29,0.53l-1.04,0.24l-0.29,-0.07l0.7,-0.43l0.1,-0.11l0.5,-0.87l1.04,-0.54l1.23,-0.49l1.86,-0.25l0.62,-0.28Z\", \"name\": \"Cuba\"}, \"SZ\": {\"path\": \"M500.95,353.41l-0.41,0.97l-1.16,0.23l-1.29,-1.26l-0.02,-0.71l0.63,-0.93l0.23,-0.7l0.47,-0.12l1.04,0.4l0.32,1.05l0.2,1.08Z\", \"name\": \"Swaziland\"}, \"SY\": {\"path\": \"M510.84,199.83l0.09,-0.11l0.07,-0.2l-0.04,-1.08l0.56,-1.4l1.3,-1.01l0.1,-0.34l-0.41,-1.11l-0.24,-0.19l-0.89,-0.11l-0.2,-1.84l0.55,-1.05l1.3,-1.22l0.09,-0.19l0.09,-1.09l0.39,0.27l0.25,0.04l2.66,-0.77l1.35,0.52l2.06,-0.01l2.93,-1.08l1.35,0.04l2.14,-0.34l-0.83,1.16l-1.31,0.68l-0.16,0.3l0.23,2.03l-0.9,3.25l-5.43,2.87l-4.79,2.91l-2.32,-0.92Z\", \"name\": \"Syria\"}, \"KG\": {\"path\": \"M599.04,172.15l0.38,-0.9l1.43,-0.37l4.04,1.02l0.37,-0.23l0.36,-1.64l1.17,-0.52l3.45,1.24l0.2,-0.0l0.86,-0.31l4.09,0.08l3.61,0.31l1.18,1.02l0.11,0.06l1.19,0.34l-0.13,0.26l-3.84,1.58l-0.13,0.1l-0.81,1.08l-3.08,0.34l-0.24,0.16l-0.85,1.7l-2.43,-0.37l-0.14,0.01l-1.79,0.61l-2.39,1.4l-0.12,0.39l0.25,0.49l-0.48,0.45l-4.57,0.43l-3.04,-0.94l-2.45,0.18l0.14,-1.02l2.42,0.44l0.27,-0.08l0.81,-0.81l1.76,0.27l0.21,-0.05l3.21,-2.14l-0.03,-0.51l-2.97,-1.57l-0.26,-0.01l-1.64,0.69l-1.38,-0.84l1.81,-1.67l-0.09,-0.5l-0.46,-0.18Z\", \"name\": \"Kyrgyzstan\"}, \"KE\": {\"path\": \"M523.3,287.04l0.06,0.17l1.29,1.8l-1.46,0.84l-0.11,0.11l-0.55,0.93l-0.81,0.16l-0.24,0.24l-0.34,1.69l-0.81,1.06l-0.46,1.58l-0.76,0.63l-3.3,-2.3l-0.16,-1.32l-0.15,-0.23l-9.35,-5.28l-0.02,-2.4l1.92,-2.63l0.91,-1.83l0.01,-0.24l-1.09,-2.86l-0.29,-1.24l-1.09,-1.63l2.93,-2.85l0.92,0.3l0.0,1.19l0.09,0.22l0.86,0.83l0.21,0.08l1.65,0.0l3.09,2.08l0.16,0.05l0.79,0.03l0.54,-0.06l0.58,0.28l1.67,0.2l0.28,-0.12l0.69,-0.98l2.04,-0.94l0.86,0.73l0.19,0.07l1.1,0.0l-1.82,2.36l-0.06,0.18l0.03,9.12Z\", \"name\": \"Kenya\"}, \"SS\": {\"path\": \"M505.7,261.39l0.02,1.64l-0.27,0.55l-1.15,0.05l-0.24,0.15l-0.85,1.44l0.22,0.45l1.44,0.17l1.15,1.12l0.42,0.95l0.14,0.15l1.06,0.54l1.33,2.45l-3.06,2.98l-1.44,1.08l-1.75,0.01l-1.92,0.56l-1.5,-0.53l-0.27,0.03l-0.85,0.57l-1.98,-1.5l-0.56,-1.02l-0.37,-0.13l-1.32,0.5l-1.08,-0.15l-0.2,0.04l-0.56,0.35l-0.9,-0.24l-1.44,-1.97l-0.39,-0.77l-0.13,-0.13l-1.78,-0.94l-0.65,-1.5l-1.08,-1.12l-1.57,-1.22l-0.02,-0.68l-0.12,-0.23l-1.37,-1.02l-1.17,-0.68l0.2,-0.08l0.86,-0.48l0.14,-0.18l0.63,-2.22l0.6,-1.02l1.47,-0.28l0.35,0.56l1.29,1.48l0.14,0.09l0.69,0.22l0.22,-0.02l0.83,-0.4l1.58,0.08l0.26,0.39l0.25,0.13l2.49,0.0l0.3,-0.25l0.06,-0.35l1.13,-0.42l0.18,-0.18l0.22,-0.63l0.68,-0.38l1.95,1.37l0.23,0.05l1.29,-0.26l0.19,-0.12l1.23,-1.8l1.36,-1.37l0.08,-0.25l-0.21,-1.52l-0.06,-0.15l-0.25,-0.3l0.94,-0.08l0.26,-0.21l0.1,-0.32l0.6,0.09l-0.25,1.67l0.3,1.83l0.11,0.19l1.22,0.94l0.25,0.73l-0.04,1.2l0.26,0.31l0.09,0.01Z\", \"name\": \"South Sudan\"}, \"SR\": {\"path\": \"M278.1,270.26l2.71,0.45l0.31,-0.14l0.19,-0.32l1.82,-0.16l2.25,0.56l-1.09,1.81l-0.04,0.19l0.2,1.72l0.05,0.13l0.9,1.35l-0.39,0.99l-0.21,1.09l-0.48,0.8l-1.2,-0.44l-0.17,-0.01l-1.12,0.24l-0.95,-0.21l-0.35,0.2l-0.25,0.73l0.05,0.29l0.3,0.35l-0.06,0.13l-1.01,-0.15l-1.42,-2.03l-0.32,-1.36l-0.29,-0.23l-0.63,-0.0l-0.95,-1.56l0.41,-1.16l0.01,-0.17l-0.08,-0.35l1.29,-0.56l0.18,-0.22l0.35,-1.97Z\", \"name\": \"Suriname\"}, \"KH\": {\"path\": \"M680.28,257.89l-0.93,-1.2l-1.24,-2.56l-0.56,-2.9l1.45,-1.92l3.07,-0.46l2.26,0.35l2.03,0.98l0.38,-0.11l1.0,-1.55l1.86,0.79l0.52,1.51l-0.28,2.82l-4.05,1.88l-0.12,0.45l0.79,1.1l-2.2,0.17l-2.08,0.98l-1.89,-0.33Z\", \"name\": \"Cambodia\"}, \"SV\": {\"path\": \"M197.02,248.89l0.18,-0.05l0.59,0.17l0.55,0.51l0.64,0.35l0.06,0.22l0.37,0.21l1.01,-0.28l0.38,0.13l0.16,0.13l-0.14,0.81l-0.18,0.38l-1.22,-0.03l-0.84,-0.23l-1.11,-0.52l-1.31,-0.15l-0.49,-0.38l0.02,-0.08l0.76,-0.57l0.46,-0.27l0.11,-0.35Z\", \"name\": \"El Salvador\"}, \"SK\": {\"path\": \"M468.01,150.02l0.05,0.07l0.36,0.1l0.85,-0.37l1.12,1.02l0.33,0.05l1.38,-0.65l1.07,0.3l0.16,0.0l1.69,-0.43l1.95,1.02l-0.51,0.64l-0.45,1.2l-0.32,0.2l-2.55,-0.93l-0.17,-0.01l-0.82,0.2l-0.17,0.11l-0.53,0.68l-0.94,0.32l-0.14,-0.11l-0.29,-0.04l-1.18,0.48l-0.95,0.09l-0.26,0.21l-0.15,0.47l-1.84,0.34l-0.82,-0.31l-1.14,-0.73l-0.2,-0.89l0.42,-0.84l0.91,0.05l0.12,-0.02l0.86,-0.33l0.18,-0.21l0.03,-0.13l0.32,-0.1l0.2,-0.22l0.12,-0.55l0.39,-0.1l0.18,-0.13l0.3,-0.45l0.43,-0.0Z\", \"name\": \"Slovakia\"}, \"KR\": {\"path\": \"M737.31,185.72l0.84,0.08l0.27,-0.12l0.89,-1.2l1.63,-0.13l1.1,-0.2l0.21,-0.16l0.12,-0.24l1.86,2.95l0.59,1.79l0.02,3.17l-0.84,1.38l-2.23,0.55l-1.95,1.14l-1.91,0.21l-0.22,-1.21l0.45,-2.07l-0.01,-0.17l-0.99,-2.67l1.54,-0.4l0.17,-0.46l-1.55,-2.24Z\", \"name\": \"South Korea\"}, \"SI\": {\"path\": \"M455.77,159.59l1.79,0.21l0.18,-0.04l1.2,-0.68l2.12,-0.08l0.21,-0.1l0.38,-0.42l0.1,0.01l0.28,0.62l-1.71,0.71l-0.18,0.22l-0.21,1.1l-0.71,0.26l-0.2,0.28l0.01,0.55l-0.59,-0.04l-0.79,-0.47l-0.38,0.06l-0.36,0.41l-0.84,-0.05l0.05,-0.15l-0.56,-1.24l0.21,-1.17Z\", \"name\": \"Slovenia\"}, \"KP\": {\"path\": \"M747.76,172.02l-0.23,-0.04l-0.26,0.08l-1.09,1.02l-0.78,1.06l-0.06,0.19l0.09,1.95l-1.12,0.57l-0.53,0.58l-0.88,0.82l-1.69,0.51l-1.09,0.79l-0.12,0.22l-0.07,1.17l-0.22,0.25l0.09,0.47l0.96,0.46l1.22,1.1l-0.19,0.37l-0.91,0.16l-1.75,0.14l-0.22,0.12l-0.87,1.18l-0.95,-0.09l-0.3,0.18l-0.97,-0.44l-0.39,0.13l-0.25,0.44l-0.29,0.09l-0.03,-0.2l-0.18,-0.23l-0.62,-0.25l-0.43,-0.29l0.52,-0.97l0.52,-0.3l0.13,-0.38l-0.18,-0.42l0.59,-1.47l0.01,-0.21l-0.16,-0.48l-0.22,-0.2l-1.41,-0.31l-0.82,-0.55l1.74,-1.62l2.73,-1.58l1.62,-1.96l0.96,0.76l0.17,0.06l2.17,0.11l0.31,-0.37l-0.32,-1.31l3.61,-1.21l0.16,-0.13l0.79,-1.34l1.25,1.38Z\", \"name\": \"North Korea\"}, \"SO\": {\"path\": \"M543.8,256.48l0.61,-0.05l1.14,-0.37l1.31,-0.25l0.12,-0.05l1.11,-0.81l0.57,-0.0l0.03,0.39l-0.23,1.49l0.01,1.25l-0.52,0.92l-0.7,2.71l-1.19,2.79l-1.54,3.2l-2.13,3.66l-2.12,2.79l-2.92,3.39l-2.47,2.0l-3.76,2.5l-2.33,1.9l-2.77,3.06l-0.61,1.35l-0.28,0.29l-1.22,-1.69l-0.03,-8.92l2.12,-2.76l0.59,-0.68l1.47,-0.04l0.18,-0.06l2.15,-1.71l3.16,-0.11l0.21,-0.09l7.08,-7.55l1.76,-2.12l1.14,-1.57l0.06,-0.18l0.01,-4.67Z\", \"name\": \"Somalia\"}, \"SN\": {\"path\": \"M379.28,250.34l-0.95,-1.82l-0.09,-0.1l-0.83,-0.6l0.62,-0.28l0.13,-0.11l1.21,-1.8l0.6,-1.31l0.71,-0.68l1.09,0.2l0.18,-0.02l1.17,-0.53l1.25,-0.03l1.17,0.73l1.59,0.65l1.47,1.83l1.59,1.7l0.12,1.56l0.49,1.46l0.1,0.14l0.85,0.65l0.18,0.82l-0.08,0.57l-0.13,0.05l-1.29,-0.19l-0.29,0.13l-0.11,0.16l-0.35,0.04l-1.83,-0.61l-5.84,-0.13l-0.12,0.02l-0.6,0.26l-0.87,-0.06l-1.01,0.32l-0.26,-1.26l1.9,0.04l0.16,-0.04l0.54,-0.32l0.37,-0.02l0.15,-0.05l0.78,-0.5l0.92,0.46l0.12,0.03l1.09,0.04l0.15,-0.03l1.08,-0.57l0.11,-0.44l-0.51,-0.74l-0.39,-0.1l-0.76,0.39l-0.62,-0.01l-0.92,-0.58l-0.18,-0.05l-0.79,0.04l-0.2,0.09l-0.48,0.51l-2.41,0.06Z\", \"name\": \"Senegal\"}, \"SL\": {\"path\": \"M392.19,267.53l-0.44,-0.12l-1.73,-0.97l-1.24,-1.28l-0.4,-0.84l-0.27,-1.65l1.21,-1.0l0.09,-0.12l0.27,-0.66l0.32,-0.41l0.56,-0.05l0.16,-0.07l0.5,-0.41l1.75,0.0l0.59,0.77l0.49,0.96l-0.07,0.64l0.04,0.19l0.36,0.58l-0.03,0.84l0.24,0.2l-0.64,0.65l-1.13,1.37l-0.06,0.14l-0.12,0.66l-0.43,0.58Z\", \"name\": \"Sierra Leone\"}, \"SB\": {\"path\": \"M826.74,311.51l0.23,0.29l-0.95,-0.01l-0.39,-0.63l0.65,0.27l0.45,0.09ZM825.01,308.52l-1.18,-1.39l-0.37,-1.06l0.24,0.0l0.82,1.84l0.49,0.6ZM823.21,309.42l-0.44,0.03l-1.43,-0.24l-0.32,-0.24l0.08,-0.5l1.29,0.31l0.72,0.47l0.11,0.18ZM817.9,303.81l2.59,1.44l0.3,0.41l-1.21,-0.66l-1.34,-0.89l-0.34,-0.3ZM813.77,302.4l0.48,0.34l0.1,0.08l-0.33,-0.17l-0.25,-0.25Z\", \"name\": \"Solomon Islands\"}, \"SA\": {\"path\": \"M528.24,243.1l-0.2,-0.69l-0.07,-0.12l-0.69,-0.71l-0.18,-0.94l-0.12,-0.19l-1.24,-0.89l-1.28,-2.09l-0.7,-2.08l-0.07,-0.11l-1.73,-1.79l-0.11,-0.07l-1.03,-0.39l-1.57,-2.36l-0.27,-1.72l0.1,-1.53l-0.03,-0.15l-1.44,-2.93l-1.25,-1.13l-1.34,-0.56l-0.72,-1.33l0.11,-0.49l-0.02,-0.2l-0.7,-1.38l-0.08,-0.1l-0.68,-0.56l-0.97,-1.98l-2.8,-4.03l-0.25,-0.13l-0.85,0.01l0.29,-1.11l0.12,-0.97l0.23,-0.81l2.52,0.39l0.23,-0.06l1.08,-0.84l0.6,-0.95l1.78,-0.35l0.22,-0.17l0.37,-0.83l0.74,-0.42l0.08,-0.46l-2.17,-2.4l4.55,-1.26l0.12,-0.06l0.36,-0.32l2.83,0.71l3.67,1.91l7.04,5.5l0.17,0.06l4.64,0.22l2.06,0.24l0.55,1.15l0.28,0.17l1.56,-0.06l0.9,2.15l0.14,0.15l1.14,0.57l0.39,0.85l0.11,0.13l1.59,1.06l0.12,0.91l-0.23,0.83l0.01,0.18l0.32,0.9l0.07,0.11l0.68,0.7l0.33,0.86l0.37,0.65l0.09,0.1l0.76,0.53l0.25,0.04l0.45,-0.12l0.35,0.75l0.1,0.63l0.96,2.68l0.23,0.19l7.53,1.33l0.27,-0.09l0.24,-0.26l0.87,1.41l-1.58,4.96l-7.34,2.54l-7.28,1.02l-2.34,1.17l-0.12,0.1l-1.74,2.63l-0.86,0.32l-0.49,-0.68l-0.28,-0.12l-0.92,0.12l-2.32,-0.25l-0.41,-0.23l-0.15,-0.04l-2.89,0.06l-0.63,0.2l-0.91,-0.59l-0.43,0.11l-0.66,1.27l-0.03,0.21l0.21,0.89l-0.6,0.45Z\", \"name\": \"Saudi Arabia\"}, \"SE\": {\"path\": \"M476.42,90.44l-0.15,0.1l-2.43,2.86l-0.07,0.24l0.36,2.31l-3.84,3.1l-4.83,3.38l-0.11,0.15l-1.82,5.45l0.03,0.26l1.78,2.68l2.27,1.99l-2.13,3.88l-2.49,0.82l-0.2,0.24l-0.95,6.05l-1.32,3.09l-2.82,-0.32l-0.3,0.16l-1.34,2.64l-2.48,0.14l-0.76,-3.15l-2.09,-4.04l-1.85,-5.01l1.03,-1.98l2.06,-2.53l0.06,-0.13l0.83,-4.45l-0.06,-0.25l-1.54,-1.86l-0.15,-5.0l1.52,-3.48l2.28,0.06l0.27,-0.16l0.87,-1.59l-0.01,-0.31l-0.8,-1.21l3.79,-5.63l4.07,-7.54l2.23,0.01l0.29,-0.22l0.59,-2.15l4.46,0.66l0.34,-0.26l0.34,-2.64l1.21,-0.14l3.24,2.08l3.78,2.85l0.06,6.37l0.03,0.14l0.67,1.29l-3.95,1.07Z\", \"name\": \"Sweden\"}, \"SD\": {\"path\": \"M505.98,259.75l-0.31,-0.9l-0.1,-0.14l-1.2,-0.93l-0.27,-1.66l0.29,-1.83l-0.25,-0.34l-1.16,-0.17l-0.33,0.21l-0.11,0.37l-1.3,0.11l-0.21,0.49l0.55,0.68l0.18,1.29l-1.31,1.33l-1.18,1.72l-1.04,0.21l-2.0,-1.4l-0.32,-0.02l-0.95,0.52l-0.14,0.16l-0.21,0.6l-1.16,0.43l-0.19,0.23l-0.04,0.27l-2.08,0.0l-0.25,-0.39l-0.24,-0.13l-1.81,-0.09l-0.14,0.03l-0.8,0.38l-0.49,-0.16l-1.22,-1.39l-0.42,-0.67l-0.31,-0.14l-1.81,0.35l-0.2,0.14l-0.72,1.24l-0.61,2.14l-0.73,0.4l-0.62,0.22l-0.83,-0.68l-0.12,-0.6l0.38,-0.97l0.01,-1.14l-0.08,-0.2l-1.39,-1.53l-0.25,-0.97l0.03,-0.57l-0.11,-0.25l-0.81,-0.66l-0.03,-1.34l-0.04,-0.14l-0.52,-0.98l-0.31,-0.15l-0.42,0.07l0.12,-0.44l0.63,-1.03l0.03,-0.23l-0.24,-0.88l0.69,-0.66l0.02,-0.41l-0.4,-0.46l0.58,-1.39l1.04,-1.71l1.97,0.16l0.32,-0.3l-0.12,-10.24l0.02,-0.8l2.59,-0.01l0.3,-0.3l0.0,-4.92l29.19,0.0l0.68,2.17l-0.4,0.35l-0.1,0.27l0.36,2.69l0.93,3.15l0.12,0.16l2.05,1.4l-0.99,1.15l-1.75,0.4l-0.15,0.08l-0.79,0.79l-0.08,0.17l-0.24,1.69l-1.07,3.75l-0.0,0.16l0.25,0.96l-0.38,2.1l-0.98,2.41l-1.52,1.3l-1.07,1.94l-0.25,0.99l-1.08,0.64l-0.13,0.18l-0.46,1.65Z\", \"name\": \"Sudan\"}, \"DO\": {\"path\": \"M241.7,234.97l0.15,-0.22l1.73,0.01l1.43,0.64l0.15,0.03l0.45,-0.04l0.36,0.74l0.28,0.17l1.02,-0.04l-0.04,0.43l0.27,0.33l1.03,0.09l0.91,0.7l-0.57,0.64l-0.99,-0.47l-0.16,-0.03l-1.11,0.11l-0.79,-0.12l-0.26,0.09l-0.38,0.4l-0.66,0.11l-0.28,-0.45l-0.38,-0.12l-0.83,0.37l-0.14,0.13l-0.85,1.49l-0.27,-0.17l-0.1,-0.58l0.05,-0.67l-0.07,-0.21l-0.44,-0.53l0.35,-0.25l0.12,-0.19l0.19,-1.0l-0.2,-1.4Z\", \"name\": \"Dominican Republic\"}, \"DJ\": {\"path\": \"M528.78,253.36l0.34,0.45l-0.06,0.76l-1.26,0.54l-0.05,0.53l0.82,0.53l-0.57,0.83l-0.3,-0.25l-0.27,-0.05l-0.56,0.17l-1.07,-0.03l-0.04,-0.56l-0.16,-0.56l0.76,-1.07l0.76,-0.97l0.89,0.18l0.25,-0.06l0.51,-0.42Z\", \"name\": \"Djibouti\"}, \"DK\": {\"path\": \"M452.4,129.07l-1.27,2.39l-2.25,-1.69l-0.26,-1.08l3.15,-1.0l0.63,1.39ZM447.87,126.25l-0.35,0.76l-0.47,-0.24l-0.38,0.09l-1.8,2.53l-0.03,0.29l0.56,1.4l-1.22,0.4l-1.68,-0.41l-0.92,-1.76l-0.07,-3.47l0.38,-0.88l0.62,-0.93l2.07,-0.21l0.19,-0.1l0.84,-0.95l1.5,-0.76l-0.06,1.26l-0.7,1.1l-0.03,0.25l0.3,1.0l0.18,0.19l1.06,0.42Z\", \"name\": \"Denmark\"}, \"DE\": {\"path\": \"M445.51,131.69l0.03,0.94l0.21,0.28l2.32,0.74l-0.02,1.0l0.37,0.3l2.55,-0.65l1.36,-0.89l2.63,1.27l1.09,1.01l0.51,1.51l-0.6,0.78l-0.0,0.36l0.88,1.17l0.58,1.68l-0.18,1.08l0.03,0.18l0.87,1.81l-0.66,0.2l-0.55,-0.32l-0.36,0.05l-0.58,0.58l-1.73,0.62l-0.99,0.84l-1.77,0.7l-0.16,0.4l0.42,0.94l0.26,1.34l0.14,0.2l1.25,0.76l1.22,1.2l-0.71,1.2l-0.81,0.37l-0.17,0.32l0.34,1.99l-0.04,0.09l-0.47,-0.39l-0.17,-0.07l-1.2,-0.1l-1.85,0.57l-2.15,-0.13l-0.29,0.18l-0.21,0.5l-0.96,-0.67l-0.24,-0.05l-0.67,0.16l-2.6,-0.94l-0.34,0.1l-0.42,0.57l-1.64,-0.02l0.26,-1.88l1.24,-2.15l-0.21,-0.45l-3.54,-0.58l-0.98,-0.71l0.12,-1.26l-0.05,-0.2l-0.44,-0.64l0.27,-2.18l-0.38,-3.14l1.17,-0.0l0.27,-0.17l0.63,-1.26l0.65,-3.17l-0.02,-0.17l-0.41,-1.0l0.32,-0.47l1.77,-0.16l0.37,0.6l0.47,0.06l1.7,-1.69l0.06,-0.33l-0.55,-1.24l-0.09,-1.51l1.5,0.36l0.16,-0.01l1.22,-0.4Z\", \"name\": \"Germany\"}, \"YE\": {\"path\": \"M553.53,242.65l-1.51,0.58l-0.17,0.16l-0.48,1.14l-0.07,0.79l-2.31,1.0l-3.98,1.19l-2.28,1.8l-0.97,0.12l-0.7,-0.14l-0.23,0.05l-1.42,1.03l-1.51,0.47l-2.07,0.13l-0.68,0.15l-0.17,0.1l-0.49,0.6l-0.57,0.16l-0.18,0.13l-0.3,0.49l-1.06,-0.05l-0.13,0.02l-0.73,0.32l-1.48,-0.11l-0.55,-1.26l0.07,-1.32l-0.04,-0.16l-0.39,-0.72l-0.48,-1.85l-0.52,-0.79l0.08,-0.02l0.22,-0.36l-0.23,-1.05l0.24,-0.39l0.04,-0.19l-0.09,-0.95l0.96,-0.72l0.11,-0.31l-0.23,-0.98l0.46,-0.88l0.75,0.49l0.26,0.03l0.63,-0.22l2.76,-0.06l0.5,0.25l2.42,0.26l0.85,-0.11l0.52,0.71l0.35,0.1l1.17,-0.43l0.15,-0.12l1.75,-2.64l2.22,-1.11l6.95,-0.96l2.55,5.58Z\", \"name\": \"Yemen\"}, \"AT\": {\"path\": \"M463.17,154.15l-0.14,0.99l-1.15,0.01l-0.24,0.47l0.39,0.56l-0.75,1.84l-0.36,0.4l-2.06,0.07l-0.14,0.04l-1.18,0.67l-1.96,-0.23l-3.43,-0.78l-0.5,-0.97l-0.33,-0.16l-2.47,0.55l-0.2,0.16l-0.18,0.37l-1.27,-0.38l-1.28,-0.09l-0.81,-0.41l0.25,-0.51l0.03,-0.18l-0.05,-0.28l0.35,-0.08l1.16,0.81l0.45,-0.13l0.27,-0.64l2.0,0.12l1.84,-0.57l1.05,0.09l0.71,0.59l0.47,-0.11l0.23,-0.54l0.02,-0.17l-0.32,-1.85l0.69,-0.31l0.13,-0.12l0.73,-1.23l1.61,0.89l0.35,-0.04l1.35,-1.27l0.7,-0.19l1.84,0.93l0.18,0.03l1.08,-0.15l0.81,0.43l-0.07,0.15l-0.02,0.2l0.24,1.06Z\", \"name\": \"Austria\"}, \"DZ\": {\"path\": \"M450.58,224.94l-8.31,4.86l-7.23,5.12l-3.46,1.13l-2.42,0.22l-0.02,-1.33l-0.2,-0.28l-1.15,-0.42l-1.45,-0.69l-0.55,-1.13l-0.1,-0.12l-8.45,-5.72l-17.72,-12.17l0.03,-0.38l-0.02,-3.21l3.84,-1.91l2.46,-0.41l2.1,-0.75l0.14,-0.11l0.9,-1.3l2.84,-1.06l0.19,-0.27l0.09,-1.81l1.21,-0.2l0.15,-0.07l1.06,-0.96l3.19,-0.46l0.23,-0.18l0.46,-1.08l-0.08,-0.34l-0.6,-0.54l-0.83,-2.85l-0.18,-1.8l-0.82,-1.57l2.13,-1.37l2.65,-0.49l0.13,-0.05l1.55,-1.15l2.34,-0.85l4.2,-0.51l4.07,-0.23l1.21,0.41l0.23,-0.01l2.3,-1.11l2.52,-0.02l0.94,0.62l0.2,0.05l1.25,-0.13l-0.36,1.03l-0.01,0.14l0.39,2.66l-0.56,2.2l-1.49,1.52l-0.08,0.24l0.22,2.12l0.11,0.2l1.94,1.58l0.02,0.54l0.12,0.23l1.45,1.06l1.04,4.85l0.81,2.42l0.13,1.19l-0.43,2.17l0.17,1.28l-0.31,1.53l0.2,1.56l-0.9,1.02l-0.01,0.38l1.43,1.88l0.09,1.06l0.04,0.13l0.89,1.48l0.37,0.12l1.03,-0.43l1.79,1.12l0.89,1.34Z\", \"name\": \"Algeria\"}, \"US\": {\"path\": \"M892.64,99.05l1.16,0.57l0.21,0.02l1.45,-0.38l1.92,0.99l2.17,0.47l-1.65,0.72l-1.75,-0.79l-0.93,-0.7l-0.21,-0.06l-2.11,0.22l-0.35,-0.2l0.09,-0.87ZM183.29,150.37l0.39,1.54l0.12,0.17l0.78,0.55l0.14,0.05l1.74,0.2l2.52,0.5l2.4,0.98l0.17,0.02l1.96,-0.4l3.01,0.81l0.91,-0.02l2.22,-0.88l4.67,2.33l3.86,2.01l0.21,0.71l0.15,0.18l0.33,0.17l-0.02,0.05l0.23,0.43l0.67,0.1l0.21,-0.05l0.1,-0.07l0.05,0.29l0.09,0.16l0.5,0.5l0.21,0.09l0.56,0.0l0.13,0.13l-0.2,0.36l0.12,0.41l2.49,1.39l0.99,5.24l-0.69,1.68l-1.16,1.64l-0.6,1.18l-0.06,0.31l0.04,0.22l0.28,0.43l0.11,0.1l0.85,0.47l0.15,0.04l0.63,0.0l0.14,-0.04l2.87,-1.58l2.6,-0.49l3.28,-1.5l0.17,-0.23l0.04,-0.43l-0.23,-0.93l-0.24,-0.39l0.74,-0.32l4.7,-0.01l0.25,-0.13l0.77,-1.15l2.9,-2.41l1.04,-0.52l8.35,-0.02l0.28,-0.21l0.2,-0.6l0.7,-0.14l1.06,-0.48l0.13,-0.11l0.92,-1.49l0.75,-2.39l1.67,-2.08l0.59,0.6l0.3,0.07l1.52,-0.49l0.88,0.72l-0.0,4.14l0.08,0.2l1.6,1.72l0.31,0.72l-2.42,1.35l-2.55,1.05l-2.64,0.9l-0.14,0.11l-1.33,1.81l-0.44,0.7l-0.05,0.15l-0.03,1.6l0.03,0.14l0.83,1.59l0.24,0.16l0.78,0.06l-1.15,0.33l-1.25,-0.04l-1.83,0.52l-2.51,0.29l-2.17,0.88l-0.17,0.36l0.33,0.22l3.55,-0.54l0.15,0.11l-2.87,0.73l-1.19,0.0l-0.16,-0.33l-0.36,0.06l-0.76,0.82l0.17,0.5l0.42,0.08l-0.45,1.75l-1.4,1.74l-0.04,-0.17l-0.21,-0.22l-0.48,-0.13l-0.77,-0.69l-0.36,-0.03l-0.12,0.34l0.52,1.58l0.09,0.14l0.52,0.43l0.03,0.87l-0.74,1.05l-0.39,0.63l0.05,-0.12l-0.08,-0.34l-1.19,-1.03l-0.28,-2.31l-0.26,-0.26l-0.32,0.19l-0.48,1.27l-0.01,0.19l0.39,1.33l-1.14,-0.31l-0.36,0.18l0.14,0.38l1.57,0.85l0.1,2.58l0.22,0.28l0.55,0.15l0.21,0.81l0.33,2.72l-1.46,1.94l-2.5,0.81l-0.12,0.07l-1.58,1.58l-1.15,0.17l-0.15,0.06l-1.27,1.03l-0.09,0.13l-0.32,0.85l-2.71,1.79l-1.45,1.37l-1.18,1.64l-0.05,0.12l-0.39,1.96l0.0,0.13l0.44,1.91l0.85,2.37l1.1,1.91l0.03,1.2l1.16,3.07l-0.08,1.74l-0.1,0.99l-0.57,1.48l-0.54,0.24l-0.97,-0.26l-0.34,-1.02l-0.12,-0.16l-0.89,-0.58l-2.44,-4.28l-0.34,-0.94l0.49,-1.71l-0.02,-0.21l-0.7,-1.5l-2.0,-2.35l-0.11,-0.08l-0.98,-0.42l-0.25,0.01l-2.42,1.19l-0.26,-0.08l-1.26,-1.29l-1.57,-0.68l-0.16,-0.02l-2.79,0.34l-2.18,-0.3l-1.98,0.19l-1.12,0.45l-0.14,0.44l0.4,0.65l-0.04,1.02l0.09,0.22l0.29,0.3l-0.06,0.05l-0.77,-0.33l-0.26,0.01l-0.87,0.48l-1.64,-0.08l-1.79,-1.39l-0.23,-0.06l-2.11,0.33l-1.75,-0.61l-0.14,-0.01l-1.61,0.2l-2.11,0.64l-0.11,0.06l-2.25,1.99l-2.53,1.21l-1.43,1.38l-0.58,1.22l-0.03,0.12l-0.03,1.86l0.13,1.32l0.3,0.62l-0.46,0.04l-1.71,-0.57l-1.85,-0.79l-0.63,-1.14l-0.54,-1.85l-0.07,-0.12l-1.45,-1.51l-0.86,-1.58l-1.26,-1.87l-0.09,-0.09l-1.76,-1.09l-0.17,-0.04l-2.05,0.05l-0.23,0.12l-1.44,1.97l-1.84,-0.72l-1.19,-0.76l-0.6,-1.45l-0.9,-1.52l-1.49,-1.21l-1.27,-0.87l-0.89,-0.96l-0.22,-0.1l-4.34,-0.0l-0.3,0.3l-0.0,0.84l-6.62,0.02l-5.66,-1.93l-3.48,-1.24l0.11,-0.25l-0.3,-0.42l-3.18,0.3l-2.6,0.2l-0.35,-1.19l-0.08,-0.13l-1.62,-1.61l-0.13,-0.08l-1.02,-0.29l-0.22,-0.66l-0.25,-0.2l-1.31,-0.13l-0.82,-0.7l-0.16,-0.07l-2.25,-0.27l-0.48,-0.34l-0.28,-1.44l-0.07,-0.14l-2.41,-2.84l-2.03,-3.89l0.08,-0.58l-0.1,-0.27l-1.08,-0.94l-1.87,-2.36l-0.33,-2.31l-0.07,-0.15l-1.24,-1.5l0.52,-2.4l-0.09,-2.57l-0.78,-2.3l0.96,-2.83l0.61,-5.66l-0.46,-4.26l-0.79,-2.71l-0.68,-1.4l0.13,-0.26l3.24,0.97l1.28,2.88l0.52,0.06l0.62,-0.84l0.06,-0.22l-0.4,-2.61l-0.74,-2.29l68.9,-0.0l0.3,-0.3l0.01,-0.95l0.32,-0.01ZM32.5,67.43l1.75,1.99l0.41,0.04l1.02,-0.81l3.79,0.25l-0.1,0.72l0.24,0.34l3.83,0.77l2.6,-0.44l5.21,1.41l4.84,0.43l1.9,0.57l0.15,0.01l3.25,-0.71l3.72,1.32l2.52,0.58l-0.03,38.14l0.29,0.3l2.41,0.11l2.34,1.0l1.7,1.59l2.22,2.42l0.42,0.03l2.41,-2.04l2.25,-1.08l1.23,1.76l1.71,1.53l2.24,1.62l1.54,2.56l2.56,4.09l0.11,0.11l4.1,2.17l0.06,1.93l-1.12,1.35l-1.22,-1.14l-2.08,-1.05l-0.68,-2.94l-0.09,-0.16l-3.18,-2.84l-1.32,-3.35l-0.25,-0.19l-2.43,-0.24l-3.93,-0.09l-2.85,-1.02l-5.24,-3.85l-6.77,-2.04l-3.52,0.3l-4.84,-1.7l-2.96,-1.6l-0.23,-0.02l-2.78,0.8l-0.21,0.35l0.46,2.31l-1.11,0.19l-2.9,0.78l-2.24,1.26l-2.42,0.68l-0.29,-1.79l1.07,-3.49l2.54,-1.11l0.12,-0.45l-0.69,-0.96l-0.41,-0.07l-3.19,2.12l-1.76,2.54l-3.57,2.62l-0.03,0.46l1.63,1.59l-2.14,2.38l-2.64,1.49l-2.49,1.09l-0.16,0.17l-0.58,1.48l-3.8,1.79l-0.14,0.14l-0.75,1.57l-2.75,1.41l-1.62,-0.25l-0.16,0.02l-2.35,0.98l-2.54,1.19l-2.06,1.15l-4.05,0.93l-0.1,-0.15l2.45,-1.45l2.49,-1.1l2.61,-1.88l3.03,-0.39l0.19,-0.1l1.2,-1.41l3.43,-2.11l0.61,-0.75l1.81,-1.24l0.13,-0.2l0.42,-2.7l1.24,-2.12l-0.03,-0.35l-0.34,-0.09l-2.73,1.05l-0.67,-0.53l-0.39,0.02l-1.13,1.11l-1.43,-1.62l-0.49,0.06l-0.41,0.8l-0.67,-1.31l-0.42,-0.12l-2.43,1.43l-1.18,-0.0l-0.18,-1.86l0.43,-1.3l-0.09,-0.33l-1.61,-1.33l-0.26,-0.06l-3.11,0.68l-2.0,-1.66l-1.61,-0.85l-0.01,-1.97l-0.11,-0.23l-1.76,-1.48l0.86,-1.96l2.01,-2.13l0.88,-1.94l1.79,-0.25l1.65,0.6l0.31,-0.06l1.91,-1.8l1.67,0.31l0.22,-0.04l1.91,-1.23l0.13,-0.33l-0.47,-1.82l-0.15,-0.19l-1.0,-0.52l1.51,-1.27l0.09,-0.34l-0.29,-0.19l-1.62,0.06l-2.66,0.88l-0.13,0.09l-0.62,0.72l-1.77,-0.8l-0.16,-0.02l-3.48,0.44l-3.5,-0.92l-1.06,-1.61l-2.78,-2.09l3.07,-1.51l5.52,-2.01l1.65,0.0l-0.28,1.73l0.31,0.35l5.29,-0.16l0.23,-0.49l-2.03,-2.59l-0.1,-0.08l-3.03,-1.58l-1.79,-2.12l-2.4,-1.83l-3.18,-1.27l1.13,-1.84l4.28,-0.14l0.15,-0.05l3.16,-2.0l0.13,-0.17l0.57,-2.07l2.43,-2.02l2.42,-0.52l4.67,-1.98l2.22,0.29l0.2,-0.04l3.74,-2.37l3.57,0.91ZM37.66,123.49l-2.31,1.26l-1.04,-0.75l-0.31,-1.35l2.06,-1.16l1.24,-0.51l1.48,0.22l0.76,0.81l-1.89,1.49ZM30.89,233.84l1.2,0.57l0.35,0.3l0.48,0.69l-1.6,0.86l-0.3,0.31l-0.24,-0.14l0.05,-0.54l-0.02,-0.15l-0.36,-0.83l0.05,-0.12l0.39,-0.38l0.07,-0.31l-0.09,-0.27ZM29.06,231.89l0.5,0.14l0.31,0.19l-0.46,0.1l-0.34,-0.43ZM25.02,230.13l0.2,-0.11l0.4,0.47l-0.43,-0.05l-0.17,-0.31ZM21.29,228.68l0.1,-0.07l0.22,0.02l0.02,0.21l-0.02,0.02l-0.32,-0.18ZM6.0,113.33l-1.19,0.45l-1.5,-0.64l-0.94,-0.63l1.76,-0.46l1.71,0.29l0.16,0.98Z\", \"name\": \"United States of America\"}, \"LV\": {\"path\": \"M473.99,127.16l0.07,-2.15l1.15,-2.11l2.05,-1.07l1.84,2.48l0.25,0.12l2.01,-0.07l0.29,-0.25l0.45,-2.58l1.85,-0.56l0.98,0.4l2.13,1.33l0.16,0.05l1.97,0.01l1.02,0.7l0.21,1.67l0.71,1.84l-2.44,1.23l-1.36,0.53l-2.28,-1.62l-0.12,-0.05l-1.18,-0.2l-0.28,-0.6l-0.31,-0.17l-2.43,0.35l-4.17,-0.23l-0.12,0.02l-2.45,0.93Z\", \"name\": \"Latvia\"}, \"UY\": {\"path\": \"M276.9,363.17l1.3,-0.23l2.4,2.04l0.22,0.07l0.82,-0.07l2.48,1.7l1.93,1.5l1.28,1.67l-0.95,1.14l-0.04,0.31l0.63,1.45l-0.96,1.57l-2.65,1.47l-1.73,-0.53l-0.15,-0.01l-1.25,0.28l-2.22,-1.16l-0.16,-0.03l-1.56,0.08l-1.33,-1.36l0.17,-1.58l0.48,-0.55l0.07,-0.2l-0.02,-2.74l0.66,-2.8l0.57,-2.02Z\", \"name\": \"Uruguay\"}, \"LB\": {\"path\": \"M510.44,198.11l-0.48,0.03l-0.26,0.17l-0.15,0.32l-0.21,-0.0l0.72,-1.85l1.19,-1.9l0.74,0.09l0.27,0.73l-1.19,0.93l-0.09,0.13l-0.54,1.36Z\", \"name\": \"Lebanon\"}, \"LA\": {\"path\": \"M684.87,248.8l0.61,-0.86l0.05,-0.16l0.11,-2.17l-0.08,-0.22l-1.96,-2.16l-0.15,-2.44l-0.08,-0.18l-1.9,-2.1l-0.19,-0.1l-1.89,-0.18l-0.29,0.15l-0.42,0.76l-1.21,0.06l-0.67,-0.41l-0.31,-0.0l-2.2,1.29l-0.05,-1.77l0.61,-2.7l-0.27,-0.37l-1.44,-0.1l-0.12,-1.31l-0.12,-0.21l-0.87,-0.65l0.38,-0.68l1.76,-1.41l0.08,0.22l0.27,0.2l1.33,0.07l0.31,-0.34l-0.35,-2.75l0.85,-0.25l1.32,1.88l1.11,2.36l0.27,0.17l2.89,0.02l0.78,1.82l-1.32,0.56l-0.12,0.09l-0.72,0.93l0.1,0.45l2.93,1.52l3.62,5.27l1.88,1.78l0.58,1.67l-0.38,2.11l-1.87,-0.79l-0.37,0.11l-0.99,1.54l-1.51,-0.73Z\", \"name\": \"Laos\"}, \"TW\": {\"path\": \"M725.6,222.5l-1.5,4.22l-0.82,1.65l-1.01,-1.7l-0.26,-1.8l1.4,-2.48l1.8,-1.81l0.76,0.53l-0.38,1.39Z\", \"name\": \"Taiwan\"}, \"TT\": {\"path\": \"M266.35,259.46l0.41,-0.39l0.09,-0.23l-0.04,-0.75l1.14,-0.26l0.2,0.03l-0.07,1.37l-1.73,0.23Z\", \"name\": \"Trinidad and Tobago\"}, \"TR\": {\"path\": \"M513.25,175.38l3.63,1.17l0.14,0.01l2.88,-0.45l2.11,0.26l0.18,-0.03l2.9,-1.53l2.51,-0.13l2.25,1.37l0.36,0.88l-0.23,1.36l0.19,0.33l1.81,0.72l0.61,0.53l-1.31,0.64l-0.16,0.34l0.76,3.24l-0.44,0.8l0.01,0.3l1.19,2.02l-0.71,0.29l-0.74,-0.62l-0.15,-0.07l-2.91,-0.37l-0.15,0.02l-1.04,0.43l-2.78,0.44l-1.44,-0.03l-2.83,1.06l-1.95,0.01l-1.28,-0.52l-0.2,-0.01l-2.62,0.76l-0.7,-0.48l-0.47,0.22l-0.13,1.49l-1.01,0.94l-0.58,-0.82l0.79,-0.9l0.04,-0.34l-0.31,-0.15l-1.46,0.23l-2.03,-0.64l-0.3,0.07l-1.65,1.58l-3.58,0.3l-1.94,-1.47l-0.17,-0.06l-2.7,-0.1l-0.28,0.17l-0.51,1.06l-1.47,0.29l-2.32,-1.46l-0.17,-0.05l-2.55,0.05l-1.4,-2.7l-1.72,-1.54l1.11,-2.06l-0.07,-0.37l-1.35,-1.19l2.47,-2.51l3.74,-0.11l0.26,-0.17l0.96,-2.07l4.56,0.38l0.19,-0.05l2.97,-1.92l2.84,-0.83l4.03,-0.06l4.31,2.08ZM488.85,176.8l-1.81,1.38l-0.57,-1.01l0.02,-0.36l0.45,-0.25l0.13,-0.15l0.78,-1.87l-0.11,-0.37l-0.72,-0.47l1.91,-0.71l1.89,0.35l0.25,0.97l0.17,0.2l1.87,0.83l-0.19,0.31l-2.82,0.16l-0.18,0.07l-1.06,0.91Z\", \"name\": \"Turkey\"}, \"LK\": {\"path\": \"M625.44,266.07l-0.35,2.4l-0.9,0.61l-1.91,0.5l-1.04,-1.75l-0.43,-3.5l1.0,-3.6l1.34,1.09l1.13,1.72l1.16,2.52Z\", \"name\": \"Sri Lanka\"}, \"TN\": {\"path\": \"M444.91,206.18l-0.99,-4.57l-0.12,-0.18l-1.43,-1.04l-0.02,-0.53l-0.11,-0.22l-1.95,-1.59l-0.19,-1.85l1.44,-1.47l0.08,-0.14l0.59,-2.34l-0.38,-2.77l0.44,-1.28l2.52,-1.08l1.41,0.28l-0.06,1.2l0.43,0.28l1.81,-0.9l0.02,0.06l-1.14,1.28l-0.08,0.2l-0.02,1.32l0.11,0.24l0.74,0.6l-0.29,2.18l-1.56,1.35l-0.09,0.32l0.48,1.54l0.28,0.21l1.11,0.04l0.55,1.17l0.15,0.14l0.76,0.35l-0.12,1.79l-1.1,0.72l-0.8,0.91l-1.68,1.04l-0.13,0.32l0.25,1.08l-0.18,0.96l-0.74,0.39Z\", \"name\": \"Tunisia\"}, \"TL\": {\"path\": \"M734.21,307.22l0.17,-0.34l1.99,-0.52l1.72,-0.08l0.78,-0.3l0.29,0.1l-0.43,0.32l-2.57,1.09l-1.71,0.59l-0.05,-0.49l-0.19,-0.36Z\", \"name\": \"East Timor\"}, \"TM\": {\"path\": \"M553.16,173.51l-0.12,1.0l-0.26,-0.65l0.38,-0.34ZM553.54,173.16l0.13,-0.12l0.43,-0.09l-0.56,0.21ZM555.68,172.6l0.65,-0.14l1.53,0.76l1.71,2.29l0.27,0.12l1.27,-0.14l2.81,-0.04l0.29,-0.38l-0.35,-1.27l1.98,-0.97l1.96,-1.63l3.05,1.44l0.25,2.23l0.14,0.22l0.96,0.61l0.18,0.05l2.61,-0.13l0.68,0.44l1.2,2.97l0.1,0.13l2.85,2.03l1.67,1.41l2.66,1.45l3.13,1.17l-0.05,1.23l-0.36,-0.04l-1.12,-0.73l-0.44,0.14l-0.34,0.89l-1.96,0.52l-0.22,0.23l-0.47,2.17l-1.26,0.78l-1.93,0.42l-0.21,0.18l-0.46,1.14l-1.64,0.33l-2.3,-0.97l-0.2,-2.23l-0.28,-0.27l-1.76,-0.1l-2.78,-2.48l-0.15,-0.07l-1.95,-0.31l-2.82,-1.48l-1.78,-0.27l-0.18,0.03l-1.03,0.51l-1.6,-0.08l-0.22,0.08l-1.72,1.6l-1.83,0.46l-0.39,-1.7l0.36,-3.0l-0.16,-0.3l-1.73,-0.88l0.57,-1.77l-0.25,-0.39l-1.33,-0.14l0.41,-1.85l2.05,0.63l0.21,-0.01l2.2,-0.95l0.09,-0.49l-1.78,-1.75l-0.69,-1.66l-0.07,-0.03Z\", \"name\": \"Turkmenistan\"}, \"TJ\": {\"path\": \"M597.99,178.71l-0.23,0.23l-2.57,-0.47l-0.35,0.25l-0.24,1.7l0.32,0.34l2.66,-0.22l3.15,0.95l4.47,-0.42l0.58,2.45l0.39,0.21l0.71,-0.25l1.22,0.53l-0.06,1.01l0.29,1.28l-2.19,-0.0l-1.71,-0.21l-0.23,0.07l-1.51,1.25l-1.05,0.27l-0.77,0.51l-0.71,-0.67l0.22,-2.28l-0.24,-0.32l-0.43,-0.08l0.17,-0.57l-0.16,-0.36l-1.36,-0.66l-0.34,0.05l-1.08,1.01l-0.09,0.15l-0.25,1.09l-0.24,0.26l-1.36,-0.05l-0.27,0.14l-0.65,1.06l-0.58,-0.39l-0.3,-0.02l-1.68,0.86l-0.36,-0.16l1.28,-2.65l0.02,-0.2l-0.54,-2.17l-0.18,-0.21l-1.53,-0.58l0.41,-0.82l1.89,0.13l0.26,-0.12l1.19,-1.63l0.77,-1.82l2.66,-0.55l-0.33,0.87l0.01,0.23l0.36,0.82l0.3,0.18l0.23,-0.02Z\", \"name\": \"Tajikistan\"}, \"LS\": {\"path\": \"M493.32,359.69l0.69,0.65l-0.65,1.12l-0.38,0.8l-1.27,0.39l-0.18,0.15l-0.4,0.77l-0.59,0.18l-1.59,-1.78l1.16,-1.5l1.3,-1.02l0.97,-0.46l0.94,0.72Z\", \"name\": \"Lesotho\"}, \"TH\": {\"path\": \"M677.42,253.68l-1.7,-0.88l-0.14,-0.03l-1.77,0.04l0.3,-1.64l-0.3,-0.35l-2.21,0.01l-0.3,0.28l-0.2,2.76l-2.15,5.9l-0.02,0.13l0.17,1.83l0.28,0.27l1.45,0.07l0.93,2.1l0.44,2.15l0.08,0.15l1.4,1.44l0.16,0.09l1.43,0.27l1.04,1.05l-0.58,0.73l-1.24,0.22l-0.15,-0.99l-0.15,-0.22l-2.04,-1.1l-0.36,0.06l-0.23,0.23l-0.72,-0.71l-0.41,-1.18l-0.06,-0.11l-1.33,-1.42l-1.22,-1.2l-0.5,0.13l-0.15,0.54l-0.14,-0.41l0.26,-1.48l0.73,-2.38l1.2,-2.57l1.37,-2.35l0.02,-0.27l-0.95,-2.26l0.03,-1.19l-0.29,-1.42l-0.06,-0.13l-1.65,-2.0l-0.46,-0.99l0.62,-0.34l0.13,-0.15l0.92,-2.23l-0.02,-0.27l-1.05,-1.74l-1.57,-1.86l-1.04,-1.96l0.76,-0.34l0.16,-0.16l1.07,-2.63l1.58,-0.1l0.16,-0.06l1.43,-1.11l1.24,-0.52l0.84,0.62l0.13,1.43l0.28,0.27l1.34,0.09l-0.54,2.39l0.05,2.39l0.45,0.25l2.48,-1.45l0.6,0.36l0.17,0.04l1.47,-0.07l0.25,-0.15l0.41,-0.73l1.58,0.15l1.76,1.93l0.15,2.44l0.08,0.18l1.94,2.15l-0.1,1.96l-0.66,0.93l-2.25,-0.34l-3.24,0.49l-0.19,0.12l-1.6,2.12l-0.06,0.24l0.48,2.46Z\", \"name\": \"Thailand\"}, \"TF\": {\"path\": \"M593.76,417.73l1.38,0.84l2.15,0.37l0.04,0.31l-0.59,1.24l-3.36,0.19l-0.05,-1.38l0.43,-1.56Z\", \"name\": \"French Southern and Antarctic Lands\"}, \"TG\": {\"path\": \"M425.23,269.29l-1.49,0.4l-0.43,-0.68l-0.64,-1.54l-0.18,-1.16l0.54,-2.21l-0.04,-0.24l-0.59,-0.86l-0.23,-1.9l0.0,-1.82l-0.07,-0.19l-0.95,-1.19l0.1,-0.41l1.58,0.04l-0.23,0.97l0.08,0.28l1.55,1.55l0.09,1.13l0.08,0.19l0.42,0.43l-0.11,5.66l0.52,1.53Z\", \"name\": \"Togo\"}, \"TD\": {\"path\": \"M457.57,252.46l0.23,-1.08l-0.28,-0.36l-1.32,-0.05l0.0,-1.35l-0.1,-0.22l-0.9,-0.82l0.99,-3.1l3.12,-2.37l0.12,-0.23l0.13,-3.33l0.95,-5.2l0.53,-1.09l-0.07,-0.36l-0.94,-0.81l-0.03,-0.7l-0.12,-0.23l-0.84,-0.61l-0.57,-3.76l2.21,-1.26l19.67,9.88l0.12,9.74l-1.83,-0.15l-0.28,0.14l-1.14,1.89l-0.68,1.62l0.05,0.31l0.33,0.38l-0.61,0.58l-0.08,0.3l0.25,0.93l-0.58,0.95l-0.29,1.01l0.34,0.37l0.67,-0.11l0.39,0.73l0.03,1.4l0.11,0.23l0.8,0.65l-0.01,0.24l-1.38,0.37l-0.11,0.06l-1.27,1.03l-1.83,2.76l-2.21,1.1l-2.34,-0.15l-0.82,0.25l-0.2,0.37l0.19,0.68l-1.16,0.79l-1.01,0.94l-2.92,0.89l-0.5,-0.46l-0.17,-0.08l-0.41,-0.05l-0.28,0.12l-0.38,0.54l-1.36,0.12l0.1,-0.18l0.01,-0.27l-0.78,-1.72l-0.35,-1.03l-0.17,-0.18l-1.03,-0.41l-1.29,-1.28l0.36,-0.78l0.9,0.2l0.14,-0.0l0.67,-0.17l1.36,0.02l0.26,-0.45l-1.32,-2.22l0.09,-1.64l-0.17,-1.68l-0.04,-0.13l-0.93,-1.53Z\", \"name\": \"Chad\"}, \"LY\": {\"path\": \"M457.99,226.38l-1.57,0.87l-1.25,-1.28l-0.13,-0.08l-3.85,-1.11l-1.04,-1.57l-0.09,-0.09l-1.98,-1.23l-0.27,-0.02l-0.93,0.39l-0.72,-1.2l-0.09,-1.07l-0.06,-0.16l-1.33,-1.75l0.83,-0.94l0.07,-0.24l-0.21,-1.64l0.31,-1.43l-0.17,-1.29l0.43,-2.26l-0.15,-1.33l-0.73,-2.18l0.99,-0.52l0.16,-0.21l0.22,-1.16l-0.22,-1.06l1.54,-0.95l0.81,-0.92l1.19,-0.78l0.14,-0.23l0.12,-1.76l2.57,0.84l0.16,0.01l0.99,-0.23l2.01,0.45l3.19,1.2l1.12,2.36l0.2,0.16l2.24,0.53l3.5,1.14l2.65,1.36l0.29,-0.01l1.22,-0.71l1.27,-1.32l0.07,-0.29l-0.55,-2.0l0.69,-1.19l1.7,-1.23l1.61,-0.35l3.2,0.54l0.78,1.14l0.24,0.13l0.85,0.01l0.84,0.47l2.35,0.31l0.42,0.63l-0.79,1.16l-0.04,0.26l0.35,1.08l-0.61,1.6l-0.0,0.2l0.73,2.16l0.0,24.24l-2.58,0.01l-0.3,0.29l-0.02,0.62l-19.55,-9.83l-0.28,0.01l-2.53,1.44Z\", \"name\": \"Libya\"}, \"AE\": {\"path\": \"M550.59,223.8l0.12,0.08l1.92,-0.41l3.54,0.15l0.23,-0.09l1.71,-1.79l1.86,-1.7l1.31,-1.36l0.26,0.5l0.28,1.72l-0.93,0.01l-0.3,0.26l-0.21,1.73l0.11,0.27l0.08,0.06l-0.7,0.32l-0.17,0.27l-0.01,0.99l-0.68,1.02l-0.05,0.15l-0.06,0.96l-0.32,0.36l-7.19,-1.27l-0.79,-2.22Z\", \"name\": \"United Arab Emirates\"}, \"VE\": {\"path\": \"M240.66,256.5l0.65,0.91l-0.03,1.13l-1.05,1.39l-0.03,0.31l0.95,2.0l0.32,0.17l1.08,-0.16l0.24,-0.21l0.56,-1.83l-0.06,-0.29l-0.71,-0.81l-0.1,-1.58l2.9,-0.96l0.19,-0.37l-0.29,-1.02l0.45,-0.41l0.72,1.43l0.26,0.16l1.65,0.04l1.46,1.27l0.08,0.72l0.3,0.27l2.28,0.02l2.55,-0.25l1.34,1.06l0.14,0.06l1.92,0.31l0.2,-0.03l1.4,-0.79l0.15,-0.25l0.02,-0.36l2.82,-0.14l1.17,-0.01l-0.41,0.14l-0.14,0.46l0.86,1.19l0.22,0.12l1.93,0.18l1.73,1.13l0.37,1.9l0.31,0.24l1.21,-0.05l0.52,0.32l-1.63,1.21l-0.11,0.17l-0.22,0.92l0.07,0.27l0.63,0.69l-0.31,0.24l-1.48,0.39l-0.22,0.3l0.04,1.03l-0.59,0.6l-0.01,0.41l1.67,1.87l0.23,0.48l-0.72,0.76l-2.71,0.91l-1.78,0.39l-0.13,0.06l-0.6,0.49l-1.84,-0.58l-1.89,-0.33l-0.18,0.03l-0.47,0.23l-0.02,0.53l0.96,0.56l-0.08,1.58l0.35,1.58l0.26,0.23l1.91,0.19l0.02,0.07l-1.54,0.62l-0.18,0.2l-0.25,0.92l-0.88,0.35l-1.85,0.58l-0.16,0.13l-0.4,0.64l-1.66,0.14l-1.22,-1.18l-0.79,-2.52l-0.67,-0.88l-0.66,-0.43l0.99,-0.98l0.09,-0.26l-0.09,-0.56l-0.08,-0.16l-0.66,-0.69l-0.47,-1.54l0.18,-1.67l0.55,-0.85l0.45,-1.35l-0.15,-0.36l-0.89,-0.43l-0.19,-0.02l-1.39,0.28l-1.76,-0.13l-0.92,0.23l-1.64,-2.01l-0.17,-0.1l-1.54,-0.33l-3.05,0.23l-0.5,-0.73l-0.15,-0.12l-0.45,-0.15l-0.05,-0.28l0.28,-0.86l0.01,-0.15l-0.2,-1.01l-0.08,-0.15l-0.5,-0.5l-0.3,-1.08l-0.25,-0.22l-0.89,-0.12l0.54,-1.18l0.29,-1.73l0.66,-0.85l0.94,-0.7l0.09,-0.11l0.3,-0.6Z\", \"name\": \"Venezuela\"}, \"AF\": {\"path\": \"M574.42,192.1l2.24,0.95l0.18,0.02l1.89,-0.38l0.22,-0.18l0.46,-1.14l1.82,-0.4l1.5,-0.91l0.14,-0.19l0.46,-2.12l1.93,-0.51l0.2,-0.18l0.26,-0.68l0.87,0.57l0.13,0.05l0.79,0.09l1.35,0.02l1.83,0.59l0.75,0.34l0.26,-0.01l1.66,-0.85l0.7,0.46l0.42,-0.09l0.72,-1.17l1.32,0.05l0.23,-0.1l0.39,-0.43l0.07,-0.14l0.24,-1.08l0.86,-0.81l0.94,0.46l-0.2,0.64l0.23,0.38l0.49,0.09l-0.21,2.15l0.09,0.25l0.99,0.94l0.38,0.03l0.83,-0.57l1.06,-0.27l0.12,-0.06l1.46,-1.21l1.63,0.2l2.4,0.0l0.17,0.32l-1.12,0.25l-1.23,0.52l-2.86,0.33l-2.69,0.6l-0.13,0.06l-1.46,1.25l-0.07,0.36l0.58,1.18l0.25,1.21l-1.13,1.08l-0.09,0.25l0.09,0.98l-0.53,0.79l-2.22,-0.08l-0.28,0.44l0.83,1.57l-1.3,0.58l-0.13,0.11l-1.06,1.69l-0.05,0.18l0.13,1.51l-0.73,0.58l-0.78,-0.22l-0.14,-0.01l-1.91,0.36l-0.23,0.19l-0.2,0.57l-1.65,-0.0l-0.22,0.1l-1.4,1.56l-0.08,0.19l-0.08,2.13l-2.99,1.05l-1.67,-0.23l-0.27,0.1l-0.39,0.46l-1.43,-0.31l-2.43,0.4l-3.69,-1.23l1.96,-2.15l0.08,-0.24l-0.21,-1.78l-0.23,-0.26l-1.69,-0.42l-0.19,-1.62l-0.77,-2.08l0.98,-1.41l-0.14,-0.45l-0.82,-0.31l0.6,-1.79l0.93,-3.21Z\", \"name\": \"Afghanistan\"}, \"IQ\": {\"path\": \"M534.42,190.89l0.13,0.14l1.5,0.78l0.15,1.34l-1.13,0.87l-0.11,0.16l-0.58,2.2l0.04,0.24l1.73,2.67l0.12,0.1l2.99,1.49l1.18,1.94l-0.39,1.89l0.29,0.36l0.5,-0.0l0.02,1.17l0.08,0.2l0.83,0.86l-2.36,-0.29l-0.29,0.13l-1.74,2.49l-4.4,-0.21l-7.03,-5.49l-3.73,-1.94l-2.92,-0.74l-0.89,-3.0l5.33,-2.81l0.15,-0.19l0.95,-3.43l-0.2,-2.0l1.19,-0.61l0.11,-0.09l1.23,-1.73l0.92,-0.38l2.75,0.35l0.81,0.68l0.31,0.05l0.94,-0.38l1.5,3.17Z\", \"name\": \"Iraq\"}, \"IS\": {\"path\": \"M384.26,87.96l-0.51,2.35l0.08,0.28l2.61,2.58l-2.99,2.83l-7.16,2.72l-2.08,0.7l-9.51,-1.71l1.89,-1.36l-0.07,-0.53l-4.4,-1.59l3.33,-0.59l0.25,-0.32l-0.11,-1.2l-0.25,-0.27l-4.82,-0.88l1.38,-2.2l3.54,-0.57l3.8,2.74l0.33,0.01l3.68,-2.18l3.02,1.12l0.25,-0.02l4.01,-2.18l3.72,0.27Z\", \"name\": \"Iceland\"}, \"IR\": {\"path\": \"M556.2,187.5l2.05,-0.52l0.13,-0.07l1.69,-1.57l1.55,0.08l0.15,-0.03l1.02,-0.5l1.64,0.25l2.82,1.48l1.91,0.3l2.8,2.49l0.18,0.08l1.61,0.09l0.19,2.09l-1.0,3.47l-0.69,2.04l0.18,0.38l0.73,0.28l-0.85,1.22l-0.04,0.28l0.81,2.19l0.19,1.72l0.23,0.26l1.69,0.42l0.17,1.43l-2.18,2.39l-0.01,0.4l1.22,1.42l1.0,1.62l0.12,0.11l2.23,1.11l0.06,2.2l0.2,0.27l1.03,0.38l0.14,0.83l-3.38,1.3l-0.18,0.19l-0.87,2.85l-4.44,-0.76l-2.75,-0.62l-2.64,-0.32l-1.01,-3.11l-0.17,-0.19l-1.2,-0.48l-0.18,-0.01l-1.99,0.51l-2.42,1.25l-2.89,-0.84l-2.48,-2.03l-2.41,-0.79l-1.61,-2.47l-1.84,-3.63l-0.36,-0.15l-1.22,0.4l-1.48,-0.84l-0.37,0.06l-0.72,0.82l-1.08,-1.12l-0.02,-1.35l-0.3,-0.29l-0.43,0.0l0.34,-1.64l-0.04,-0.22l-1.29,-2.11l-0.12,-0.11l-3.0,-1.49l-1.62,-2.49l0.52,-1.98l1.18,-0.92l0.11,-0.27l-0.19,-1.66l-0.16,-0.23l-1.55,-0.81l-1.58,-3.33l-1.3,-2.2l0.41,-0.75l0.03,-0.21l-0.73,-3.12l1.2,-0.59l0.35,0.9l1.26,1.35l0.15,0.09l1.81,0.39l0.91,-0.09l0.15,-0.06l2.9,-2.13l0.7,-0.16l0.48,0.56l-0.75,1.26l0.05,0.37l1.56,1.53l0.28,0.08l0.37,-0.09l0.7,1.89l0.21,0.19l2.31,0.59l1.69,1.4l0.15,0.07l3.66,0.49l3.91,-0.76l0.23,-0.19l0.19,-0.52Z\", \"name\": \"Iran\"}, \"AM\": {\"path\": \"M530.51,176.08l2.91,-0.39l0.41,0.63l0.11,0.1l0.66,0.36l-0.32,0.47l0.07,0.41l1.1,0.84l-0.53,0.7l0.06,0.42l1.06,0.8l1.01,0.44l0.04,1.56l-0.44,0.04l-0.88,-1.46l0.01,-0.37l-0.3,-0.31l-0.98,0.01l-0.65,-0.69l-0.26,-0.09l-0.38,0.06l-0.97,-0.82l-1.64,-0.65l0.2,-1.2l-0.02,-0.16l-0.28,-0.69Z\", \"name\": \"Armenia\"}, \"IT\": {\"path\": \"M451.68,158.58l0.2,0.16l3.3,0.75l-0.22,1.26l0.02,0.18l0.35,0.78l-1.4,-0.32l-0.21,0.03l-2.04,1.1l-0.16,0.29l0.13,1.47l-0.29,0.82l0.02,0.24l0.82,1.57l0.1,0.11l2.28,1.5l1.29,2.53l2.79,2.43l0.2,0.07l1.83,-0.02l0.31,0.34l-0.46,0.39l0.06,0.5l4.06,1.97l2.06,1.49l0.17,0.36l-0.24,0.53l-1.08,-1.07l-0.15,-0.08l-2.18,-0.49l-0.33,0.15l-1.05,1.91l0.11,0.4l1.63,0.98l-0.22,1.12l-0.84,0.14l-0.22,0.15l-1.27,2.38l-0.54,0.12l0.01,-0.47l0.48,-1.46l0.5,-0.58l0.03,-0.35l-0.97,-1.69l-0.76,-1.48l-0.17,-0.15l-0.94,-0.33l-0.68,-1.18l-0.16,-0.13l-1.53,-0.52l-1.03,-1.14l-0.19,-0.1l-1.78,-0.19l-1.88,-1.3l-2.27,-1.94l-1.64,-1.68l-0.76,-2.94l-0.21,-0.21l-1.22,-0.35l-2.01,-1.0l-0.24,-0.01l-1.15,0.42l-0.11,0.07l-1.38,1.36l-0.5,0.11l0.19,-0.87l-0.21,-0.35l-1.19,-0.34l-0.56,-2.06l0.76,-0.82l0.03,-0.36l-0.68,-1.08l0.04,-0.31l0.68,0.42l0.19,0.04l1.21,-0.15l0.14,-0.06l1.18,-0.89l0.25,0.29l0.25,0.1l1.19,-0.1l0.25,-0.18l0.45,-1.04l1.61,0.34l0.19,-0.02l1.1,-0.53l0.17,-0.22l0.15,-0.95l1.19,0.35l0.35,-0.16l0.23,-0.47l2.11,-0.47l0.45,0.89ZM459.35,184.63l-0.71,1.81l0.0,0.23l0.33,0.79l-0.37,1.03l-1.6,-0.91l-1.33,-0.34l-3.24,-1.36l0.23,-0.99l2.73,0.24l3.95,-0.5ZM443.95,175.91l1.26,1.77l-0.31,3.47l-0.82,-0.13l-0.26,0.08l-0.83,0.79l-0.64,-0.52l-0.1,-3.42l-0.44,-1.34l0.91,0.1l0.21,-0.06l1.01,-0.74Z\", \"name\": \"Italy\"}, \"VN\": {\"path\": \"M690.8,230.21l-2.86,1.93l-2.09,2.46l-0.06,0.11l-0.55,1.8l0.04,0.26l4.26,6.1l2.31,1.63l1.46,1.97l1.12,4.62l-0.32,4.3l-1.97,1.57l-2.85,1.62l-2.09,2.14l-2.83,2.13l-0.67,-1.19l0.65,-1.58l-0.09,-0.35l-1.47,-1.14l1.67,-0.79l2.57,-0.18l0.22,-0.47l-0.89,-1.24l3.88,-1.8l0.17,-0.24l0.31,-3.05l-0.01,-0.13l-0.56,-1.63l0.44,-2.48l-0.01,-0.15l-0.63,-1.81l-0.08,-0.12l-1.87,-1.77l-3.64,-5.3l-0.11,-0.1l-2.68,-1.39l0.45,-0.59l1.53,-0.65l0.16,-0.39l-0.97,-2.27l-0.27,-0.18l-2.89,-0.02l-1.04,-2.21l-1.28,-1.83l0.96,-0.46l1.97,0.01l2.43,-0.3l0.13,-0.05l1.95,-1.29l1.04,0.85l0.13,0.06l1.98,0.42l-0.32,1.21l0.09,0.3l1.19,1.07l0.12,0.07l1.88,0.51Z\", \"name\": \"Vietnam\"}, \"AR\": {\"path\": \"M258.11,341.34l1.4,1.81l0.51,-0.06l0.89,-1.94l2.51,0.1l0.36,0.49l4.6,4.31l0.15,0.08l1.99,0.39l3.01,1.93l2.5,1.01l0.28,0.91l-2.4,3.97l0.17,0.44l2.57,0.74l2.81,0.41l2.09,-0.44l0.14,-0.07l2.27,-2.06l0.09,-0.17l0.38,-2.2l0.88,-0.36l1.05,1.29l-0.04,1.88l-1.98,1.4l-1.72,1.13l-2.84,2.65l-3.34,3.73l-0.07,0.12l-0.63,2.22l-0.67,2.85l0.02,2.73l-0.47,0.54l-0.07,0.17l-0.36,3.28l0.12,0.27l3.03,2.32l-0.31,1.78l0.11,0.29l1.44,1.15l-0.11,1.17l-2.32,3.57l-3.59,1.51l-4.95,0.6l-2.72,-0.29l-0.32,0.38l0.5,1.67l-0.49,2.13l0.01,0.16l0.4,1.29l-1.27,0.88l-2.41,0.39l-2.33,-1.05l-0.31,0.04l-0.97,0.78l-0.11,0.27l0.35,2.98l0.16,0.23l1.69,0.91l0.31,-0.02l1.08,-0.75l0.46,0.96l-2.1,0.88l-2.01,1.89l-0.09,0.18l-0.36,3.05l-0.51,1.42l-2.16,0.01l-0.19,0.07l-1.96,1.59l-0.1,0.15l-0.72,2.34l0.08,0.31l2.46,2.31l0.13,0.07l2.09,0.56l-0.74,2.45l-2.86,1.75l-0.12,0.14l-1.59,3.71l-2.2,1.24l-0.1,0.09l-1.03,1.54l-0.04,0.23l0.81,3.45l0.06,0.13l1.13,1.32l-2.59,-0.57l-5.89,-0.44l-0.92,-1.73l0.05,-2.4l-0.34,-0.3l-1.49,0.19l-0.72,-0.98l-0.2,-3.21l1.79,-1.33l0.1,-0.13l0.79,-2.04l0.02,-0.16l-0.27,-1.52l1.31,-2.69l0.91,-4.15l-0.23,-1.72l0.91,-0.49l0.15,-0.33l-0.27,-1.16l-0.15,-0.2l-0.87,-0.46l0.65,-1.01l-0.04,-0.37l-1.06,-1.09l-0.54,-3.2l0.83,-0.51l0.14,-0.29l-0.42,-3.6l0.58,-2.98l0.64,-2.5l1.41,-1.0l0.12,-0.32l-0.75,-2.8l-0.01,-2.48l1.81,-1.78l0.09,-0.22l-0.06,-2.3l1.39,-2.69l0.03,-0.14l0.01,-2.58l-0.11,-0.24l-0.57,-0.45l-1.1,-4.59l1.49,-2.73l0.04,-0.17l-0.23,-2.59l0.86,-2.38l1.6,-2.48l1.74,-1.65l0.04,-0.39l-0.64,-0.89l0.42,-0.7l0.04,-0.16l-0.08,-4.26l2.55,-1.23l0.16,-0.18l0.86,-2.75l-0.01,-0.22l-0.22,-0.48l1.84,-2.1l3.0,0.59ZM256.77,438.98l-2.1,0.15l-1.18,-1.14l-0.19,-0.08l-1.53,-0.09l-2.38,-0.0l-0.0,-6.28l0.4,0.65l1.25,2.55l0.11,0.12l3.26,2.07l3.19,0.8l-0.82,1.26Z\", \"name\": \"Argentina\"}, \"AU\": {\"path\": \"M705.55,353.06l0.09,0.09l0.37,0.05l0.13,-0.35l-0.57,-1.69l0.48,0.3l0.71,0.99l0.34,0.11l0.2,-0.29l-0.04,-1.37l-0.04,-0.14l-1.22,-2.07l-0.28,-0.9l-0.51,-0.69l0.24,-1.33l0.52,-0.7l0.34,-1.32l0.01,-0.13l-0.25,-1.44l0.51,-0.94l0.1,1.03l0.23,0.26l0.32,-0.14l1.01,-1.72l1.94,-0.84l1.27,-1.14l1.84,-0.92l1.0,-0.18l0.6,0.28l0.26,-0.0l1.94,-0.96l1.48,-0.28l0.19,-0.13l0.32,-0.49l0.51,-0.18l1.42,0.05l2.63,-0.76l0.11,-0.06l1.36,-1.15l0.08,-0.1l0.61,-1.33l1.42,-1.27l0.1,-0.19l0.11,-1.03l0.06,-1.32l1.39,-1.74l0.85,1.79l0.4,0.14l1.07,-0.51l0.11,-0.45l-0.77,-1.05l0.53,-0.84l0.86,0.43l0.43,-0.22l0.29,-1.85l1.29,-1.19l0.6,-0.98l1.16,-0.4l0.2,-0.27l0.02,-0.34l0.74,0.2l0.38,-0.27l0.03,-0.44l1.98,-0.61l1.7,1.08l1.36,1.48l0.22,0.1l1.55,0.02l1.57,0.24l0.33,-0.4l-0.48,-1.27l1.09,-1.86l1.06,-0.63l0.1,-0.42l-0.28,-0.46l0.93,-1.24l1.36,-0.8l1.16,0.27l0.14,0.0l2.1,-0.48l0.23,-0.3l-0.05,-1.3l-0.18,-0.26l-1.08,-0.49l0.44,-0.12l1.52,0.58l1.39,1.06l2.11,0.65l0.19,-0.0l0.59,-0.21l1.44,0.72l0.27,0.0l1.37,-0.68l0.84,0.2l0.26,-0.06l0.37,-0.3l0.82,0.89l-0.56,1.14l-0.84,0.91l-0.75,0.07l-0.26,0.38l0.26,0.9l-0.67,1.15l-0.88,1.24l-0.05,0.25l0.18,0.72l0.12,0.17l1.99,1.42l1.96,0.84l1.25,0.86l1.8,1.51l0.19,0.07l0.63,-0.0l1.15,0.58l0.34,0.7l0.17,0.15l2.39,0.88l0.24,-0.02l1.65,-0.88l0.14,-0.16l0.49,-1.37l0.52,-1.19l0.31,-1.39l0.75,-2.02l0.01,-0.19l-0.33,-1.16l0.16,-0.67l0.0,-0.13l-0.28,-1.41l0.3,-1.78l0.42,-0.45l0.05,-0.33l-0.33,-0.73l0.56,-1.25l0.48,-1.39l0.07,-0.69l0.58,-0.59l0.48,0.84l0.17,1.53l0.17,0.24l0.47,0.23l0.09,0.9l0.05,0.14l0.87,1.23l0.17,1.33l-0.09,0.89l0.03,0.15l0.9,2.0l0.43,0.13l1.38,-0.83l0.71,0.92l1.06,0.88l-0.22,0.96l0.0,0.14l0.53,2.2l0.38,1.3l0.15,0.18l0.52,0.26l0.62,2.01l-0.23,1.27l0.02,0.18l0.81,1.76l0.14,0.14l2.69,1.35l3.21,2.21l-0.2,0.4l0.04,0.34l1.39,1.6l0.95,2.78l0.43,0.16l0.79,-0.46l0.85,0.96l0.39,0.05l0.22,-0.15l0.36,2.33l0.09,0.18l1.78,1.63l1.16,1.01l1.9,2.1l0.67,2.05l0.06,1.47l-0.17,1.64l0.03,0.17l1.16,2.22l-0.14,2.28l-0.43,1.24l-0.68,2.44l0.04,1.63l-0.48,1.92l-1.06,2.43l-1.79,1.32l-0.1,0.12l-0.91,2.15l-0.82,1.37l-0.76,2.47l-0.98,1.46l-0.63,2.14l-0.33,2.02l0.1,0.82l-1.21,0.85l-2.71,0.1l-0.13,0.03l-2.31,1.19l-1.21,1.17l-1.34,1.11l-1.89,-1.18l-1.33,-0.46l0.32,-1.24l-0.4,-0.35l-1.46,0.61l-2.06,1.98l-1.99,-0.73l-1.43,-0.46l-1.45,-0.22l-2.32,-0.81l-1.51,-1.67l-0.45,-2.11l-0.6,-1.5l-0.07,-0.11l-1.23,-1.16l-0.16,-0.08l-1.96,-0.28l0.59,-0.99l0.03,-0.24l-0.61,-2.1l-0.54,-0.08l-1.16,1.85l-1.23,0.29l0.73,-0.88l0.06,-0.12l0.37,-1.57l0.93,-1.33l0.05,-0.2l-0.2,-2.07l-0.53,-0.17l-2.01,2.35l-1.52,0.94l-0.12,0.14l-0.82,1.93l-1.5,-0.9l0.07,-1.32l-0.06,-0.2l-1.57,-2.04l-1.15,-0.92l0.3,-0.41l-0.1,-0.44l-3.21,-1.69l-0.13,-0.03l-1.69,-0.08l-2.35,-1.31l-0.16,-0.04l-4.55,0.27l-3.24,0.99l-2.8,0.91l-2.33,-0.18l-0.17,0.03l-2.63,1.41l-2.14,0.64l-0.2,0.19l-0.47,1.42l-0.8,0.99l-1.99,0.06l-1.55,0.24l-2.27,-0.5l-1.79,0.3l-1.71,0.13l-0.19,0.09l-1.38,1.39l-0.58,-0.1l-0.21,0.04l-1.26,0.8l-1.13,0.85l-1.72,-0.1l-1.6,-0.0l-2.58,-1.76l-1.21,-0.49l0.04,-1.19l1.04,-0.32l0.16,-0.12l0.42,-0.64l0.05,-0.19l-0.09,-0.97l0.3,-2.0l-0.28,-1.64l-1.34,-2.84l-0.39,-1.49l0.1,-1.51l-0.04,-0.17l-0.96,-1.72l-0.06,-0.73l-0.09,-0.19l-1.04,-1.01l-0.3,-2.02l-0.05,-0.12l-1.23,-1.83ZM784.95,393.35l2.39,1.01l0.2,0.01l3.26,-0.96l1.19,0.16l0.16,3.19l-0.78,0.95l-0.07,0.16l-0.19,1.83l-0.43,-0.41l-0.44,0.03l-1.61,1.96l-0.4,-0.12l-1.38,-0.09l-1.43,-2.42l-0.37,-2.03l-1.4,-2.53l0.04,-0.94l1.27,0.2Z\", \"name\": \"Australia\"}, \"IL\": {\"path\": \"M509.04,199.22l0.71,0.0l0.27,-0.17l0.15,-0.33l0.19,-0.01l0.02,0.73l-0.27,0.34l0.02,0.08l-0.32,0.62l-0.65,-0.27l-0.41,0.19l-0.52,1.85l0.16,0.35l0.14,0.07l-0.17,0.1l-0.14,0.21l-0.11,0.73l0.39,0.33l0.81,-0.26l0.03,0.64l-0.97,3.43l-1.28,-3.67l0.62,-0.78l-0.03,-0.41l0.58,-1.16l0.5,-2.07l0.27,-0.54Z\", \"name\": \"Israel\"}, \"IN\": {\"path\": \"M615.84,192.58l2.4,2.97l-0.24,2.17l0.05,0.2l0.94,1.35l-0.06,0.97l-1.46,-0.3l-0.35,0.36l0.7,3.06l0.12,0.18l2.46,1.75l3.11,1.72l-1.23,0.96l-0.1,0.13l-0.97,2.55l0.16,0.38l2.41,1.02l2.37,1.33l3.27,1.52l3.43,0.37l1.37,1.3l0.17,0.08l1.92,0.25l3.0,0.62l2.15,-0.04l0.28,-0.22l0.29,-1.06l0.0,-0.13l-0.32,-1.66l0.16,-0.94l1.0,-0.37l0.23,2.28l0.18,0.24l2.28,1.02l0.2,0.02l1.52,-0.41l2.06,0.18l2.08,-0.08l0.29,-0.27l0.18,-1.66l-0.1,-0.26l-0.53,-0.44l1.38,-0.23l0.15,-0.07l2.26,-2.0l2.75,-1.65l1.97,0.63l0.25,-0.03l1.54,-0.99l0.89,1.28l-0.72,0.97l0.2,0.48l2.49,0.37l0.11,0.61l-0.69,0.39l-0.15,0.3l0.15,1.22l-1.36,-0.37l-0.23,0.03l-3.24,1.86l-0.15,0.28l0.07,1.44l-1.33,2.16l-0.04,0.13l-0.12,1.24l-0.98,1.91l-1.72,-0.53l-0.39,0.28l-0.09,2.66l-0.52,0.83l-0.04,0.23l0.21,0.89l-0.71,0.36l-1.21,-3.85l-0.29,-0.21l-0.69,0.01l-0.29,0.23l-0.28,1.17l-0.84,-0.84l0.6,-1.17l0.97,-0.13l0.23,-0.16l1.15,-2.25l-0.18,-0.42l-1.54,-0.47l-2.3,0.04l-2.13,-0.33l-0.19,-1.63l-0.26,-0.26l-1.13,-0.13l-1.93,-1.13l-0.42,0.13l-0.88,1.82l0.08,0.37l1.47,1.15l-1.21,0.77l-0.1,0.1l-0.56,0.97l0.13,0.42l1.31,0.61l-0.36,1.35l0.01,0.2l0.85,1.95l0.37,2.05l-0.26,0.68l-1.55,-0.02l-3.09,0.54l-0.25,0.32l0.13,1.84l-1.21,1.4l-3.64,1.79l-2.79,3.04l-1.86,1.61l-2.48,1.68l-0.13,0.25l-0.0,1.0l-1.07,0.55l-2.21,0.9l-1.13,0.13l-0.25,0.19l-0.75,1.96l-0.02,0.15l0.52,3.31l0.13,2.03l-1.03,2.35l-0.03,0.12l-0.01,4.03l-1.02,0.1l-0.23,0.15l-1.14,1.93l0.04,0.36l0.44,0.48l-1.83,0.57l-0.18,0.15l-0.81,1.65l-0.74,0.53l-2.14,-2.12l-1.14,-3.47l-0.96,-2.57l-0.9,-1.26l-1.3,-2.38l-0.61,-3.14l-0.44,-1.62l-2.29,-3.56l-1.03,-4.94l-0.74,-3.29l0.01,-3.12l-0.49,-2.51l-0.41,-0.22l-3.56,1.53l-1.59,-0.28l-2.96,-2.87l0.94,-0.74l0.06,-0.41l-0.74,-1.03l-2.73,-2.1l1.35,-1.43l5.38,0.01l0.29,-0.36l-0.5,-2.29l-0.09,-0.15l-1.33,-1.28l-0.27,-1.96l-0.12,-0.2l-1.36,-1.0l2.42,-2.48l2.77,0.2l0.24,-0.1l2.62,-2.85l1.59,-2.8l2.41,-2.74l0.07,-0.2l-0.04,-1.82l2.01,-1.51l-0.01,-0.49l-1.95,-1.33l-0.83,-1.81l-0.82,-2.27l0.98,-0.97l3.64,0.66l2.89,-0.42l0.17,-0.08l2.18,-2.15Z\", \"name\": \"India\"}, \"TZ\": {\"path\": \"M505.77,287.58l0.36,0.23l8.95,5.03l0.15,1.3l0.13,0.21l3.4,2.37l-1.07,2.88l-0.02,0.14l0.15,1.42l0.15,0.23l1.47,0.84l0.05,0.42l-0.66,1.44l-0.02,0.18l0.13,0.72l-0.16,1.16l0.03,0.19l0.87,1.57l1.03,2.48l0.12,0.14l0.53,0.32l-1.59,1.18l-2.64,0.95l-1.45,-0.04l-0.2,0.07l-0.81,0.69l-1.64,0.06l-0.68,0.3l-2.9,-0.69l-1.71,0.17l-0.65,-3.18l-0.05,-0.12l-1.35,-1.88l-0.19,-0.12l-2.41,-0.46l-1.38,-0.74l-1.63,-0.44l-0.96,-0.41l-0.95,-0.58l-1.31,-3.09l-1.47,-1.46l-0.45,-1.31l0.24,-1.34l-0.39,-1.99l0.71,-0.08l0.18,-0.09l0.91,-0.91l0.98,-1.31l0.59,-0.5l0.11,-0.24l-0.02,-0.81l-0.08,-0.2l-0.47,-0.5l-0.1,-0.67l0.51,-0.23l0.18,-0.25l0.14,-1.47l-0.05,-0.2l-0.76,-1.09l0.45,-0.15l2.71,0.03l5.01,-0.19Z\", \"name\": \"Tanzania\"}, \"AZ\": {\"path\": \"M539.36,175.66l0.16,0.09l1.11,0.2l0.32,-0.15l0.4,-0.71l1.22,-0.99l1.11,1.33l1.26,2.09l0.22,0.14l1.06,0.13l0.28,0.29l-1.46,0.17l-0.26,0.24l-0.43,2.26l-0.39,0.92l-0.85,0.63l-0.12,0.25l0.06,1.2l-0.22,0.05l-1.28,-1.25l0.74,-1.25l-0.03,-0.35l-0.74,-0.86l-0.3,-0.1l-1.05,0.27l-2.49,1.82l-0.04,-1.46l-0.18,-0.27l-1.09,-0.47l-0.8,-0.6l0.53,-0.7l-0.06,-0.42l-1.11,-0.84l0.34,-0.51l-0.11,-0.43l-0.89,-0.48l-0.33,-0.49l0.25,-0.2l1.78,0.81l1.35,0.18l0.25,-0.09l0.34,-0.35l0.02,-0.39l-1.04,-1.36l0.28,-0.18l0.49,0.07l1.65,1.74ZM533.53,180.16l0.63,0.67l0.22,0.09l0.8,-0.0l0.04,0.31l0.66,1.09l-0.94,-0.21l-1.16,-1.24l-0.25,-0.71Z\", \"name\": \"Azerbaijan\"}, \"IE\": {\"path\": \"M405.17,135.35l0.36,2.16l-1.78,2.84l-4.28,1.91l-3.02,-0.43l1.81,-3.13l0.02,-0.26l-1.23,-3.26l3.24,-2.56l1.54,-1.32l0.37,1.33l-0.49,1.77l0.3,0.38l1.49,-0.05l1.68,0.63Z\", \"name\": \"Ireland\"}, \"ID\": {\"path\": \"M756.56,287.86l0.69,4.02l0.15,0.21l2.59,1.5l0.39,-0.07l2.05,-2.61l2.75,-1.45l2.09,-0.0l2.08,0.85l1.85,0.89l2.52,0.46l0.08,15.44l-1.72,-1.6l-0.15,-0.07l-2.54,-0.51l-0.29,0.1l-0.53,0.62l-2.53,0.06l0.78,-1.51l1.48,-0.66l0.17,-0.34l-0.65,-2.74l-1.23,-2.19l-0.14,-0.13l-4.85,-2.13l-2.09,-0.23l-3.7,-2.28l-0.41,0.1l-0.67,1.11l-0.63,0.14l-0.41,-0.67l-0.01,-1.01l-0.14,-0.25l-1.39,-0.89l2.05,-0.69l1.73,0.05l0.29,-0.39l-0.21,-0.66l-0.29,-0.21l-3.5,-0.0l-0.9,-1.36l-0.19,-0.13l-2.14,-0.44l-0.65,-0.76l2.86,-0.51l1.28,-0.79l3.75,0.96l0.32,0.76ZM758.01,300.37l-0.79,1.04l-0.14,-1.07l0.4,-0.81l0.29,-0.47l0.24,0.31l-0.0,1.0ZM747.45,292.9l0.48,1.02l-1.45,-0.69l-2.09,-0.21l-1.45,0.16l-1.28,-0.07l0.35,-0.81l2.86,-0.1l2.58,0.68ZM741.15,285.69l-0.16,-0.25l-0.72,-3.08l0.47,-1.86l0.35,-0.38l0.1,0.73l0.25,0.26l1.28,0.19l0.18,0.78l-0.11,1.8l-0.96,-0.18l-0.35,0.22l-0.38,1.52l0.05,0.24ZM741.19,285.75l0.76,0.97l-0.11,0.05l-0.65,-1.02ZM739.18,293.52l-0.61,0.54l-1.44,-0.38l-0.25,-0.55l1.93,-0.09l0.36,0.48ZM728.4,295.87l-0.27,-0.07l-2.26,0.89l-0.37,-0.41l0.27,-0.8l-0.09,-0.33l-1.68,-1.37l0.17,-2.29l-0.42,-0.3l-1.67,0.76l-0.17,0.29l0.21,2.92l0.09,3.34l-1.22,0.28l-0.78,-0.54l0.65,-2.1l0.01,-0.14l-0.39,-2.42l-0.29,-0.25l-0.86,-0.02l-0.63,-1.4l0.99,-1.61l0.35,-1.97l1.24,-3.73l0.49,-0.96l1.95,-1.7l1.86,0.69l3.16,0.35l2.92,-0.1l0.17,-0.06l2.24,-1.65l0.11,0.14l-1.8,2.22l-1.72,0.44l-2.41,-0.48l-4.21,0.13l-2.19,0.36l-0.25,0.24l-0.36,1.9l0.08,0.27l2.24,2.23l0.4,0.02l1.29,-1.08l3.19,-0.58l-0.19,0.06l-1.04,1.4l-2.13,0.94l-0.12,0.45l2.26,3.06l-0.37,0.69l0.03,0.32l1.51,1.95ZM728.48,295.97l0.59,0.76l-0.02,1.37l-1.0,0.55l-0.64,-0.58l1.09,-1.84l-0.02,-0.26ZM728.64,286.95l0.79,-0.14l-0.07,0.39l-0.72,-0.24ZM732.38,310.1l-1.89,0.49l-0.06,-0.06l0.17,-0.64l1.0,-1.42l2.14,-0.87l0.1,0.2l0.04,0.58l-1.49,1.72ZM728.26,305.71l-0.17,0.63l-3.53,0.67l-3.02,-0.28l-0.0,-0.42l1.66,-0.44l1.47,0.71l0.16,0.03l1.75,-0.21l1.69,-0.69ZM722.98,310.33l-0.74,0.03l-2.52,-1.35l1.42,-0.3l1.19,0.7l0.72,0.63l-0.06,0.28ZM716.24,305.63l0.66,0.49l0.22,0.06l1.35,-0.18l0.31,0.53l-4.18,0.77l-0.8,-0.01l0.51,-0.86l1.2,-0.02l0.24,-0.12l0.49,-0.65ZM715.84,280.21l0.09,0.34l2.25,1.86l-2.25,0.22l-0.24,0.17l-0.84,1.71l-0.03,0.15l0.1,2.11l-2.27,1.62l-0.13,0.24l-0.06,2.46l-0.74,2.92l-0.02,-0.05l-0.39,-0.16l-2.62,1.04l-0.86,-1.33l-0.23,-0.14l-1.71,-0.14l-1.19,-0.76l-0.25,-0.03l-2.78,0.84l-0.79,-1.05l-0.26,-0.12l-1.61,0.13l-1.8,-0.25l-0.36,-3.13l-0.15,-0.23l-1.18,-0.65l-1.13,-2.02l-0.33,-2.1l0.27,-2.19l1.05,-1.17l0.28,1.12l0.1,0.16l1.71,1.41l0.28,0.05l1.55,-0.49l1.54,0.17l0.23,-0.07l1.4,-1.21l1.05,-0.19l2.3,0.68l0.16,0.0l2.04,-0.53l0.21,-0.19l1.26,-3.41l0.91,-0.82l0.09,-0.14l0.8,-2.64l2.63,0.0l1.71,0.33l-1.19,1.89l0.02,0.34l1.74,2.24l-0.37,1.0ZM692.67,302.0l0.26,0.19l4.8,0.25l0.28,-0.16l0.44,-0.83l4.29,1.12l0.85,1.52l0.23,0.15l3.71,0.45l2.37,1.15l-2.06,0.69l-2.77,-1.0l-2.25,0.07l-2.57,-0.18l-2.31,-0.45l-2.94,-0.97l-1.84,-0.25l-0.13,0.01l-0.97,0.29l-4.34,-0.98l-0.38,-0.94l-0.25,-0.19l-1.76,-0.14l1.31,-1.84l2.81,0.14l1.97,0.96l0.95,0.19l0.28,0.74ZM685.63,299.27l-2.36,0.04l-2.07,-2.05l-3.17,-2.02l-1.06,-1.5l-1.88,-2.02l-1.22,-1.85l-1.9,-3.49l-2.2,-2.11l-0.71,-2.08l-0.94,-1.99l-0.1,-0.12l-2.21,-1.54l-1.35,-2.17l-1.86,-1.39l-2.53,-2.68l-0.14,-0.81l1.22,0.08l3.76,0.47l2.16,2.4l1.94,1.7l1.37,1.04l2.35,2.67l0.22,0.1l2.44,0.04l1.99,1.62l1.42,2.06l0.09,0.09l1.67,1.0l-0.88,1.8l0.11,0.39l1.44,0.87l0.13,0.04l0.68,0.05l0.41,1.62l0.87,1.4l0.22,0.14l1.71,0.21l1.06,1.38l-0.61,3.04l-0.09,3.6Z\", \"name\": \"Indonesia\"}, \"UA\": {\"path\": \"M500.54,141.42l0.9,0.13l0.27,-0.11l0.52,-0.62l0.68,0.13l2.43,-0.3l1.32,1.57l-0.45,0.48l-0.07,0.26l0.21,1.03l0.27,0.24l1.85,0.15l0.76,1.22l-0.05,0.55l0.2,0.31l3.18,1.15l0.18,0.01l1.75,-0.47l1.42,1.41l0.22,0.09l1.42,-0.03l3.44,0.99l0.02,0.65l-0.97,1.62l-0.03,0.24l0.52,1.67l-0.29,0.79l-2.24,0.22l-0.14,0.05l-1.29,0.89l-0.13,0.23l-0.07,1.16l-1.75,0.22l-0.12,0.04l-1.6,0.98l-2.27,0.16l-0.12,0.04l-2.16,1.17l-0.16,0.29l0.15,1.94l0.14,0.23l1.23,0.75l0.18,0.04l2.06,-0.15l-0.22,0.51l-2.67,0.54l-3.27,1.72l-1.0,-0.45l0.45,-1.19l-0.19,-0.39l-2.34,-0.78l0.15,-0.2l2.32,-1.0l0.09,-0.49l-0.73,-0.72l-0.15,-0.08l-3.69,-0.75l-0.14,-0.96l-0.35,-0.25l-2.32,0.39l-0.21,0.15l-0.91,1.7l-1.77,2.1l-0.93,-0.44l-0.24,-0.0l-1.05,0.45l-0.48,-0.25l0.13,-0.07l0.14,-0.15l0.43,-1.04l0.67,-0.97l0.04,-0.26l-0.1,-0.31l0.04,-0.02l0.11,0.19l0.24,0.15l1.48,0.09l0.78,-0.25l0.07,-0.53l-0.27,-0.19l0.09,-0.25l-0.08,-0.33l-0.81,-0.74l-0.34,-1.24l-0.14,-0.18l-0.73,-0.42l0.15,-0.87l-0.11,-0.29l-1.13,-0.86l-0.15,-0.06l-0.97,-0.11l-1.79,-0.97l-0.2,-0.03l-1.66,0.32l-0.13,0.06l-0.52,0.41l-0.95,-0.0l-0.23,0.11l-0.56,0.66l-1.74,0.29l-0.79,0.43l-1.01,-0.68l-0.16,-0.05l-1.57,-0.01l-1.52,-0.35l-0.23,0.04l-0.71,0.45l-0.09,-0.43l-0.13,-0.19l-1.18,-0.74l0.38,-1.02l0.53,-0.64l0.35,0.12l0.37,-0.41l-0.57,-1.29l2.1,-2.5l1.16,-0.36l0.2,-0.2l0.27,-0.92l-0.01,-0.2l-1.1,-2.52l0.79,-0.09l0.13,-0.05l1.3,-0.86l1.83,-0.07l2.48,0.26l2.84,0.8l1.91,0.06l0.88,0.45l0.29,-0.01l0.72,-0.44l0.49,0.58l0.25,0.11l2.2,-0.16l0.94,0.3l0.39,-0.26l0.15,-1.57l0.61,-0.59l2.01,-0.19Z\", \"name\": \"Ukraine\"}, \"QA\": {\"path\": \"M548.47,221.47l-0.15,-1.72l0.59,-1.23l0.38,-0.16l0.54,0.6l0.04,1.4l-0.47,1.37l-0.41,0.11l-0.53,-0.37Z\", \"name\": \"Qatar\"}, \"MZ\": {\"path\": \"M507.71,314.14l1.65,-0.18l2.96,0.7l0.2,-0.02l0.6,-0.29l1.68,-0.06l0.18,-0.07l0.8,-0.69l1.5,0.02l2.74,-0.98l1.74,-1.27l0.25,0.7l-0.1,2.47l0.31,2.27l0.1,3.97l0.42,1.24l-0.7,1.71l-0.94,1.73l-1.52,1.52l-5.06,2.21l-2.88,2.8l-1.01,0.51l-1.72,1.81l-0.99,0.58l-0.15,0.23l-0.21,1.86l0.04,0.19l1.17,1.95l0.47,1.47l0.03,0.74l0.39,0.28l0.05,-0.01l-0.06,2.13l-0.39,1.19l0.1,0.33l0.42,0.32l-0.28,0.83l-0.95,0.86l-2.03,0.88l-3.08,1.49l-1.1,0.99l-0.09,0.28l0.21,1.13l0.21,0.23l0.38,0.11l-0.14,0.89l-1.39,-0.02l-0.17,-0.94l-0.38,-1.23l-0.2,-0.89l0.44,-2.91l-0.01,-0.14l-0.65,-1.88l-1.15,-3.55l2.52,-2.85l0.68,-1.89l0.29,-0.18l0.14,-0.2l0.28,-1.53l-0.03,-0.19l-0.36,-0.7l0.1,-1.83l0.49,-1.84l-0.01,-3.26l-0.14,-0.25l-1.3,-0.83l-0.11,-0.04l-1.08,-0.17l-0.47,-0.55l-0.1,-0.08l-1.16,-0.54l-0.13,-0.03l-1.83,0.04l-0.32,-2.25l7.19,-1.99l1.32,1.12l0.29,0.06l0.55,-0.19l0.75,0.49l0.11,0.81l-0.49,1.11l-0.02,0.15l0.19,1.81l0.09,0.18l1.63,1.59l0.48,-0.1l0.72,-1.68l0.99,-0.49l0.17,-0.29l-0.21,-3.29l-0.04,-0.13l-1.11,-1.92l-0.9,-0.82l-0.21,-0.08l-0.62,0.03l-0.63,-2.98l0.61,-1.67Z\", \"name\": \"Mozambique\"}}, \"height\": 440.7063107441331, \"projection\": {\"type\": \"mill\", \"centralMeridian\": 11.5}, \"width\": 900.0});"
  },
  {
    "path": "public/admin/js/plugins/metisMenu/jquery.metisMenu.js",
    "content": "/*\n * metismenu - v1.1.3\n * Easy menu jQuery plugin for Twitter Bootstrap 3\n * https://github.com/onokumus/metisMenu\n *\n * Made by Osman Nuri Okumus\n * Under MIT License\n */\n;(function($, window, document, undefined) {\n\n    var pluginName = \"metisMenu\",\n        defaults = {\n            toggle: true,\n            doubleTapToGo: false\n        };\n\n    function Plugin(element, options) {\n        this.element = $(element);\n        this.settings = $.extend({}, defaults, options);\n        this._defaults = defaults;\n        this._name = pluginName;\n        this.init();\n    }\n\n    Plugin.prototype = {\n        init: function() {\n\n            var $this = this.element,\n                $toggle = this.settings.toggle,\n                obj = this;\n\n            if (this.isIE() <= 9) {\n                $this.find(\"li.active\").has(\"ul\").children(\"ul\").collapse(\"show\");\n                $this.find(\"li\").not(\".active\").has(\"ul\").children(\"ul\").collapse(\"hide\");\n            } else {\n                $this.find(\"li.active\").has(\"ul\").children(\"ul\").addClass(\"collapse in\");\n                $this.find(\"li\").not(\".active\").has(\"ul\").children(\"ul\").addClass(\"collapse\");\n            }\n\n            //add the \"doubleTapToGo\" class to active items if needed\n            if (obj.settings.doubleTapToGo) {\n                $this.find(\"li.active\").has(\"ul\").children(\"a\").addClass(\"doubleTapToGo\");\n            }\n\n            $this.find(\"li\").has(\"ul\").children(\"a\").on(\"click\" + \".\" + pluginName, function(e) {\n                e.preventDefault();\n\n                //Do we need to enable the double tap\n                if (obj.settings.doubleTapToGo) {\n\n                    //if we hit a second time on the link and the href is valid, navigate to that url\n                    if (obj.doubleTapToGo($(this)) && $(this).attr(\"href\") !== \"#\" && $(this).attr(\"href\") !== \"\") {\n                        e.stopPropagation();\n                        document.location = $(this).attr(\"href\");\n                        return;\n                    }\n                }\n\n                $(this).parent(\"li\").toggleClass(\"active\").children(\"ul\").collapse(\"toggle\");\n\n                if ($toggle) {\n                    $(this).parent(\"li\").siblings().removeClass(\"active\").children(\"ul.in\").collapse(\"hide\");\n                }\n\n            });\n        },\n\n        isIE: function() { //https://gist.github.com/padolsey/527683\n            var undef,\n                v = 3,\n                div = document.createElement(\"div\"),\n                all = div.getElementsByTagName(\"i\");\n\n            while (\n                div.innerHTML = \"<!--[if gt IE \" + (++v) + \"]><i></i><![endif]-->\",\n                    all[0]\n                ) {\n                return v > 4 ? v : undef;\n            }\n        },\n\n        //Enable the link on the second click.\n        doubleTapToGo: function(elem) {\n            var $this = this.element;\n\n            //if the class \"doubleTapToGo\" exists, remove it and return\n            if (elem.hasClass(\"doubleTapToGo\")) {\n                elem.removeClass(\"doubleTapToGo\");\n                return true;\n            }\n\n            //does not exists, add a new class and return false\n            if (elem.parent().children(\"ul\").length) {\n                //first remove all other class\n                $this.find(\".doubleTapToGo\").removeClass(\"doubleTapToGo\");\n                //add the class on the current element\n                elem.addClass(\"doubleTapToGo\");\n                return false;\n            }\n        },\n\n        remove: function() {\n            this.element.off(\".\" + pluginName);\n            this.element.removeData(pluginName);\n        }\n\n    };\n\n    $.fn[pluginName] = function(options) {\n        this.each(function () {\n            var el = $(this);\n            if (el.data(pluginName)) {\n                el.data(pluginName).remove();\n            }\n            el.data(pluginName, new Plugin(this, options));\n        });\n        return this;\n    };\n\n})(jQuery, window, document);"
  },
  {
    "path": "public/admin/js/plugins/morris/morris.js",
    "content": "(function() {\n  var $, Morris, minutesSpecHelper, secondsSpecHelper,\n    __slice = [].slice,\n    __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; },\n    __hasProp = {}.hasOwnProperty,\n    __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },\n    __indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };\n\n  Morris = window.Morris = {};\n\n  $ = jQuery;\n\n  Morris.EventEmitter = (function() {\n    function EventEmitter() {}\n\n    EventEmitter.prototype.on = function(name, handler) {\n      if (this.handlers == null) {\n        this.handlers = {};\n      }\n      if (this.handlers[name] == null) {\n        this.handlers[name] = [];\n      }\n      this.handlers[name].push(handler);\n      return this;\n    };\n\n    EventEmitter.prototype.fire = function() {\n      var args, handler, name, _i, _len, _ref, _results;\n      name = arguments[0], args = 2 <= arguments.length ? __slice.call(arguments, 1) : [];\n      if ((this.handlers != null) && (this.handlers[name] != null)) {\n        _ref = this.handlers[name];\n        _results = [];\n        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n          handler = _ref[_i];\n          _results.push(handler.apply(null, args));\n        }\n        return _results;\n      }\n    };\n\n    return EventEmitter;\n\n  })();\n\n  Morris.commas = function(num) {\n    var absnum, intnum, ret, strabsnum;\n    if (num != null) {\n      ret = num < 0 ? \"-\" : \"\";\n      absnum = Math.abs(num);\n      intnum = Math.floor(absnum).toFixed(0);\n      ret += intnum.replace(/(?=(?:\\d{3})+$)(?!^)/g, ',');\n      strabsnum = absnum.toString();\n      if (strabsnum.length > intnum.length) {\n        ret += strabsnum.slice(intnum.length);\n      }\n      return ret;\n    } else {\n      return '-';\n    }\n  };\n\n  Morris.pad2 = function(number) {\n    return (number < 10 ? '0' : '') + number;\n  };\n\n  Morris.Grid = (function(_super) {\n    __extends(Grid, _super);\n\n    function Grid(options) {\n      this.resizeHandler = __bind(this.resizeHandler, this);\n      var _this = this;\n      if (typeof options.element === 'string') {\n        this.el = $(document.getElementById(options.element));\n      } else {\n        this.el = $(options.element);\n      }\n      if ((this.el == null) || this.el.length === 0) {\n        throw new Error(\"Graph container element not found\");\n      }\n      if (this.el.css('position') === 'static') {\n        this.el.css('position', 'relative');\n      }\n      this.options = $.extend({}, this.gridDefaults, this.defaults || {}, options);\n      if (typeof this.options.units === 'string') {\n        this.options.postUnits = options.units;\n      }\n      this.raphael = new Raphael(this.el[0]);\n      this.elementWidth = null;\n      this.elementHeight = null;\n      this.dirty = false;\n      this.selectFrom = null;\n      if (this.init) {\n        this.init();\n      }\n      this.setData(this.options.data);\n      this.el.bind('mousemove', function(evt) {\n        var left, offset, right, width, x;\n        offset = _this.el.offset();\n        x = evt.pageX - offset.left;\n        if (_this.selectFrom) {\n          left = _this.data[_this.hitTest(Math.min(x, _this.selectFrom))]._x;\n          right = _this.data[_this.hitTest(Math.max(x, _this.selectFrom))]._x;\n          width = right - left;\n          return _this.selectionRect.attr({\n            x: left,\n            width: width\n          });\n        } else {\n          return _this.fire('hovermove', x, evt.pageY - offset.top);\n        }\n      });\n      this.el.bind('mouseleave', function(evt) {\n        if (_this.selectFrom) {\n          _this.selectionRect.hide();\n          _this.selectFrom = null;\n        }\n        return _this.fire('hoverout');\n      });\n      this.el.bind('touchstart touchmove touchend', function(evt) {\n        var offset, touch;\n        touch = evt.originalEvent.touches[0] || evt.originalEvent.changedTouches[0];\n        offset = _this.el.offset();\n        _this.fire('hover', touch.pageX - offset.left, touch.pageY - offset.top);\n        return touch;\n      });\n      this.el.bind('click', function(evt) {\n        var offset;\n        offset = _this.el.offset();\n        return _this.fire('gridclick', evt.pageX - offset.left, evt.pageY - offset.top);\n      });\n      if (this.options.rangeSelect) {\n        this.selectionRect = this.raphael.rect(0, 0, 0, this.el.innerHeight()).attr({\n          fill: this.options.rangeSelectColor,\n          stroke: false\n        }).toBack().hide();\n        this.el.bind('mousedown', function(evt) {\n          var offset;\n          offset = _this.el.offset();\n          return _this.startRange(evt.pageX - offset.left);\n        });\n        this.el.bind('mouseup', function(evt) {\n          var offset;\n          offset = _this.el.offset();\n          _this.endRange(evt.pageX - offset.left);\n          return _this.fire('hovermove', evt.pageX - offset.left, evt.pageY - offset.top);\n        });\n      }\n      if (this.options.resize) {\n        $(window).bind('resize', function(evt) {\n          if (_this.timeoutId != null) {\n            window.clearTimeout(_this.timeoutId);\n          }\n          return _this.timeoutId = window.setTimeout(_this.resizeHandler, 100);\n        });\n      }\n      if (this.postInit) {\n        this.postInit();\n      }\n    }\n\n    Grid.prototype.gridDefaults = {\n      dateFormat: null,\n      axes: true,\n      grid: true,\n      gridLineColor: '#aaa',\n      gridStrokeWidth: 0.5,\n      gridTextColor: '#888',\n      gridTextSize: 12,\n      gridTextFamily: 'sans-serif',\n      gridTextWeight: 'normal',\n      hideHover: false,\n      yLabelFormat: null,\n      xLabelAngle: 0,\n      numLines: 5,\n      padding: 25,\n      parseTime: true,\n      postUnits: '',\n      preUnits: '',\n      ymax: 'auto',\n      ymin: 'auto 0',\n      goals: [],\n      goalStrokeWidth: 1.0,\n      goalLineColors: ['#666633', '#999966', '#cc6666', '#663333'],\n      events: [],\n      eventStrokeWidth: 1.0,\n      eventLineColors: ['#005a04', '#ccffbb', '#3a5f0b', '#005502'],\n      rangeSelect: null,\n      rangeSelectColor: '#eef',\n      resize: false\n    };\n\n    Grid.prototype.setData = function(data, redraw) {\n      var e, idx, index, maxGoal, minGoal, ret, row, step, total, y, ykey, ymax, ymin, yval, _ref;\n      if (redraw == null) {\n        redraw = true;\n      }\n      this.options.data = data;\n      if ((data == null) || data.length === 0) {\n        this.data = [];\n        this.raphael.clear();\n        if (this.hover != null) {\n          this.hover.hide();\n        }\n        return;\n      }\n      ymax = this.cumulative ? 0 : null;\n      ymin = this.cumulative ? 0 : null;\n      if (this.options.goals.length > 0) {\n        minGoal = Math.min.apply(Math, this.options.goals);\n        maxGoal = Math.max.apply(Math, this.options.goals);\n        ymin = ymin != null ? Math.min(ymin, minGoal) : minGoal;\n        ymax = ymax != null ? Math.max(ymax, maxGoal) : maxGoal;\n      }\n      this.data = (function() {\n        var _i, _len, _results;\n        _results = [];\n        for (index = _i = 0, _len = data.length; _i < _len; index = ++_i) {\n          row = data[index];\n          ret = {\n            src: row\n          };\n          ret.label = row[this.options.xkey];\n          if (this.options.parseTime) {\n            ret.x = Morris.parseDate(ret.label);\n            if (this.options.dateFormat) {\n              ret.label = this.options.dateFormat(ret.x);\n            } else if (typeof ret.label === 'number') {\n              ret.label = new Date(ret.label).toString();\n            }\n          } else {\n            ret.x = index;\n            if (this.options.xLabelFormat) {\n              ret.label = this.options.xLabelFormat(ret);\n            }\n          }\n          total = 0;\n          ret.y = (function() {\n            var _j, _len1, _ref, _results1;\n            _ref = this.options.ykeys;\n            _results1 = [];\n            for (idx = _j = 0, _len1 = _ref.length; _j < _len1; idx = ++_j) {\n              ykey = _ref[idx];\n              yval = row[ykey];\n              if (typeof yval === 'string') {\n                yval = parseFloat(yval);\n              }\n              if ((yval != null) && typeof yval !== 'number') {\n                yval = null;\n              }\n              if (yval != null) {\n                if (this.cumulative) {\n                  total += yval;\n                } else {\n                  if (ymax != null) {\n                    ymax = Math.max(yval, ymax);\n                    ymin = Math.min(yval, ymin);\n                  } else {\n                    ymax = ymin = yval;\n                  }\n                }\n              }\n              if (this.cumulative && (total != null)) {\n                ymax = Math.max(total, ymax);\n                ymin = Math.min(total, ymin);\n              }\n              _results1.push(yval);\n            }\n            return _results1;\n          }).call(this);\n          _results.push(ret);\n        }\n        return _results;\n      }).call(this);\n      if (this.options.parseTime) {\n        this.data = this.data.sort(function(a, b) {\n          return (a.x > b.x) - (b.x > a.x);\n        });\n      }\n      this.xmin = this.data[0].x;\n      this.xmax = this.data[this.data.length - 1].x;\n      this.events = [];\n      if (this.options.events.length > 0) {\n        if (this.options.parseTime) {\n          this.events = (function() {\n            var _i, _len, _ref, _results;\n            _ref = this.options.events;\n            _results = [];\n            for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n              e = _ref[_i];\n              _results.push(Morris.parseDate(e));\n            }\n            return _results;\n          }).call(this);\n        } else {\n          this.events = this.options.events;\n        }\n        this.xmax = Math.max(this.xmax, Math.max.apply(Math, this.events));\n        this.xmin = Math.min(this.xmin, Math.min.apply(Math, this.events));\n      }\n      if (this.xmin === this.xmax) {\n        this.xmin -= 1;\n        this.xmax += 1;\n      }\n      this.ymin = this.yboundary('min', ymin);\n      this.ymax = this.yboundary('max', ymax);\n      if (this.ymin === this.ymax) {\n        if (ymin) {\n          this.ymin -= 1;\n        }\n        this.ymax += 1;\n      }\n      if (((_ref = this.options.axes) === true || _ref === 'both' || _ref === 'y') || this.options.grid === true) {\n        if (this.options.ymax === this.gridDefaults.ymax && this.options.ymin === this.gridDefaults.ymin) {\n          this.grid = this.autoGridLines(this.ymin, this.ymax, this.options.numLines);\n          this.ymin = Math.min(this.ymin, this.grid[0]);\n          this.ymax = Math.max(this.ymax, this.grid[this.grid.length - 1]);\n        } else {\n          step = (this.ymax - this.ymin) / (this.options.numLines - 1);\n          this.grid = (function() {\n            var _i, _ref1, _ref2, _results;\n            _results = [];\n            for (y = _i = _ref1 = this.ymin, _ref2 = this.ymax; step > 0 ? _i <= _ref2 : _i >= _ref2; y = _i += step) {\n              _results.push(y);\n            }\n            return _results;\n          }).call(this);\n        }\n      }\n      this.dirty = true;\n      if (redraw) {\n        return this.redraw();\n      }\n    };\n\n    Grid.prototype.yboundary = function(boundaryType, currentValue) {\n      var boundaryOption, suggestedValue;\n      boundaryOption = this.options[\"y\" + boundaryType];\n      if (typeof boundaryOption === 'string') {\n        if (boundaryOption.slice(0, 4) === 'auto') {\n          if (boundaryOption.length > 5) {\n            suggestedValue = parseInt(boundaryOption.slice(5), 10);\n            if (currentValue == null) {\n              return suggestedValue;\n            }\n            return Math[boundaryType](currentValue, suggestedValue);\n          } else {\n            if (currentValue != null) {\n              return currentValue;\n            } else {\n              return 0;\n            }\n          }\n        } else {\n          return parseInt(boundaryOption, 10);\n        }\n      } else {\n        return boundaryOption;\n      }\n    };\n\n    Grid.prototype.autoGridLines = function(ymin, ymax, nlines) {\n      var gmax, gmin, grid, smag, span, step, unit, y, ymag;\n      span = ymax - ymin;\n      ymag = Math.floor(Math.log(span) / Math.log(10));\n      unit = Math.pow(10, ymag);\n      gmin = Math.floor(ymin / unit) * unit;\n      gmax = Math.ceil(ymax / unit) * unit;\n      step = (gmax - gmin) / (nlines - 1);\n      if (unit === 1 && step > 1 && Math.ceil(step) !== step) {\n        step = Math.ceil(step);\n        gmax = gmin + step * (nlines - 1);\n      }\n      if (gmin < 0 && gmax > 0) {\n        gmin = Math.floor(ymin / step) * step;\n        gmax = Math.ceil(ymax / step) * step;\n      }\n      if (step < 1) {\n        smag = Math.floor(Math.log(step) / Math.log(10));\n        grid = (function() {\n          var _i, _results;\n          _results = [];\n          for (y = _i = gmin; step > 0 ? _i <= gmax : _i >= gmax; y = _i += step) {\n            _results.push(parseFloat(y.toFixed(1 - smag)));\n          }\n          return _results;\n        })();\n      } else {\n        grid = (function() {\n          var _i, _results;\n          _results = [];\n          for (y = _i = gmin; step > 0 ? _i <= gmax : _i >= gmax; y = _i += step) {\n            _results.push(y);\n          }\n          return _results;\n        })();\n      }\n      return grid;\n    };\n\n    Grid.prototype._calc = function() {\n      var bottomOffsets, gridLine, h, i, w, yLabelWidths, _ref, _ref1;\n      w = this.el.width();\n      h = this.el.height();\n      if (this.elementWidth !== w || this.elementHeight !== h || this.dirty) {\n        this.elementWidth = w;\n        this.elementHeight = h;\n        this.dirty = false;\n        this.left = this.options.padding;\n        this.right = this.elementWidth - this.options.padding;\n        this.top = this.options.padding;\n        this.bottom = this.elementHeight - this.options.padding;\n        if ((_ref = this.options.axes) === true || _ref === 'both' || _ref === 'y') {\n          yLabelWidths = (function() {\n            var _i, _len, _ref1, _results;\n            _ref1 = this.grid;\n            _results = [];\n            for (_i = 0, _len = _ref1.length; _i < _len; _i++) {\n              gridLine = _ref1[_i];\n              _results.push(this.measureText(this.yAxisFormat(gridLine)).width);\n            }\n            return _results;\n          }).call(this);\n          this.left += Math.max.apply(Math, yLabelWidths);\n        }\n        if ((_ref1 = this.options.axes) === true || _ref1 === 'both' || _ref1 === 'x') {\n          bottomOffsets = (function() {\n            var _i, _ref2, _results;\n            _results = [];\n            for (i = _i = 0, _ref2 = this.data.length; 0 <= _ref2 ? _i < _ref2 : _i > _ref2; i = 0 <= _ref2 ? ++_i : --_i) {\n              _results.push(this.measureText(this.data[i].text, -this.options.xLabelAngle).height);\n            }\n            return _results;\n          }).call(this);\n          this.bottom -= Math.max.apply(Math, bottomOffsets);\n        }\n        this.width = Math.max(1, this.right - this.left);\n        this.height = Math.max(1, this.bottom - this.top);\n        this.dx = this.width / (this.xmax - this.xmin);\n        this.dy = this.height / (this.ymax - this.ymin);\n        if (this.calc) {\n          return this.calc();\n        }\n      }\n    };\n\n    Grid.prototype.transY = function(y) {\n      return this.bottom - (y - this.ymin) * this.dy;\n    };\n\n    Grid.prototype.transX = function(x) {\n      if (this.data.length === 1) {\n        return (this.left + this.right) / 2;\n      } else {\n        return this.left + (x - this.xmin) * this.dx;\n      }\n    };\n\n    Grid.prototype.redraw = function() {\n      this.raphael.clear();\n      this._calc();\n      this.drawGrid();\n      this.drawGoals();\n      this.drawEvents();\n      if (this.draw) {\n        return this.draw();\n      }\n    };\n\n    Grid.prototype.measureText = function(text, angle) {\n      var ret, tt;\n      if (angle == null) {\n        angle = 0;\n      }\n      tt = this.raphael.text(100, 100, text).attr('font-size', this.options.gridTextSize).attr('font-family', this.options.gridTextFamily).attr('font-weight', this.options.gridTextWeight).rotate(angle);\n      ret = tt.getBBox();\n      tt.remove();\n      return ret;\n    };\n\n    Grid.prototype.yAxisFormat = function(label) {\n      return this.yLabelFormat(label);\n    };\n\n    Grid.prototype.yLabelFormat = function(label) {\n      if (typeof this.options.yLabelFormat === 'function') {\n        return this.options.yLabelFormat(label);\n      } else {\n        return \"\" + this.options.preUnits + (Morris.commas(label)) + this.options.postUnits;\n      }\n    };\n\n    Grid.prototype.drawGrid = function() {\n      var lineY, y, _i, _len, _ref, _ref1, _ref2, _results;\n      if (this.options.grid === false && ((_ref = this.options.axes) !== true && _ref !== 'both' && _ref !== 'y')) {\n        return;\n      }\n      _ref1 = this.grid;\n      _results = [];\n      for (_i = 0, _len = _ref1.length; _i < _len; _i++) {\n        lineY = _ref1[_i];\n        y = this.transY(lineY);\n        if ((_ref2 = this.options.axes) === true || _ref2 === 'both' || _ref2 === 'y') {\n          this.drawYAxisLabel(this.left - this.options.padding / 2, y, this.yAxisFormat(lineY));\n        }\n        if (this.options.grid) {\n          _results.push(this.drawGridLine(\"M\" + this.left + \",\" + y + \"H\" + (this.left + this.width)));\n        } else {\n          _results.push(void 0);\n        }\n      }\n      return _results;\n    };\n\n    Grid.prototype.drawGoals = function() {\n      var color, goal, i, _i, _len, _ref, _results;\n      _ref = this.options.goals;\n      _results = [];\n      for (i = _i = 0, _len = _ref.length; _i < _len; i = ++_i) {\n        goal = _ref[i];\n        color = this.options.goalLineColors[i % this.options.goalLineColors.length];\n        _results.push(this.drawGoal(goal, color));\n      }\n      return _results;\n    };\n\n    Grid.prototype.drawEvents = function() {\n      var color, event, i, _i, _len, _ref, _results;\n      _ref = this.events;\n      _results = [];\n      for (i = _i = 0, _len = _ref.length; _i < _len; i = ++_i) {\n        event = _ref[i];\n        color = this.options.eventLineColors[i % this.options.eventLineColors.length];\n        _results.push(this.drawEvent(event, color));\n      }\n      return _results;\n    };\n\n    Grid.prototype.drawGoal = function(goal, color) {\n      return this.raphael.path(\"M\" + this.left + \",\" + (this.transY(goal)) + \"H\" + this.right).attr('stroke', color).attr('stroke-width', this.options.goalStrokeWidth);\n    };\n\n    Grid.prototype.drawEvent = function(event, color) {\n      return this.raphael.path(\"M\" + (this.transX(event)) + \",\" + this.bottom + \"V\" + this.top).attr('stroke', color).attr('stroke-width', this.options.eventStrokeWidth);\n    };\n\n    Grid.prototype.drawYAxisLabel = function(xPos, yPos, text) {\n      return this.raphael.text(xPos, yPos, text).attr('font-size', this.options.gridTextSize).attr('font-family', this.options.gridTextFamily).attr('font-weight', this.options.gridTextWeight).attr('fill', this.options.gridTextColor).attr('text-anchor', 'end');\n    };\n\n    Grid.prototype.drawGridLine = function(path) {\n      return this.raphael.path(path).attr('stroke', this.options.gridLineColor).attr('stroke-width', this.options.gridStrokeWidth);\n    };\n\n    Grid.prototype.startRange = function(x) {\n      this.hover.hide();\n      this.selectFrom = x;\n      return this.selectionRect.attr({\n        x: x,\n        width: 0\n      }).show();\n    };\n\n    Grid.prototype.endRange = function(x) {\n      var end, start;\n      if (this.selectFrom) {\n        start = Math.min(this.selectFrom, x);\n        end = Math.max(this.selectFrom, x);\n        this.options.rangeSelect.call(this.el, {\n          start: this.data[this.hitTest(start)].x,\n          end: this.data[this.hitTest(end)].x\n        });\n        return this.selectFrom = null;\n      }\n    };\n\n    Grid.prototype.resizeHandler = function() {\n      this.timeoutId = null;\n      this.raphael.setSize(this.el.width(), this.el.height());\n      return this.redraw();\n    };\n\n    return Grid;\n\n  })(Morris.EventEmitter);\n\n  Morris.parseDate = function(date) {\n    var isecs, m, msecs, n, o, offsetmins, p, q, r, ret, secs;\n    if (typeof date === 'number') {\n      return date;\n    }\n    m = date.match(/^(\\d+) Q(\\d)$/);\n    n = date.match(/^(\\d+)-(\\d+)$/);\n    o = date.match(/^(\\d+)-(\\d+)-(\\d+)$/);\n    p = date.match(/^(\\d+) W(\\d+)$/);\n    q = date.match(/^(\\d+)-(\\d+)-(\\d+)[ T](\\d+):(\\d+)(Z|([+-])(\\d\\d):?(\\d\\d))?$/);\n    r = date.match(/^(\\d+)-(\\d+)-(\\d+)[ T](\\d+):(\\d+):(\\d+(\\.\\d+)?)(Z|([+-])(\\d\\d):?(\\d\\d))?$/);\n    if (m) {\n      return new Date(parseInt(m[1], 10), parseInt(m[2], 10) * 3 - 1, 1).getTime();\n    } else if (n) {\n      return new Date(parseInt(n[1], 10), parseInt(n[2], 10) - 1, 1).getTime();\n    } else if (o) {\n      return new Date(parseInt(o[1], 10), parseInt(o[2], 10) - 1, parseInt(o[3], 10)).getTime();\n    } else if (p) {\n      ret = new Date(parseInt(p[1], 10), 0, 1);\n      if (ret.getDay() !== 4) {\n        ret.setMonth(0, 1 + ((4 - ret.getDay()) + 7) % 7);\n      }\n      return ret.getTime() + parseInt(p[2], 10) * 604800000;\n    } else if (q) {\n      if (!q[6]) {\n        return new Date(parseInt(q[1], 10), parseInt(q[2], 10) - 1, parseInt(q[3], 10), parseInt(q[4], 10), parseInt(q[5], 10)).getTime();\n      } else {\n        offsetmins = 0;\n        if (q[6] !== 'Z') {\n          offsetmins = parseInt(q[8], 10) * 60 + parseInt(q[9], 10);\n          if (q[7] === '+') {\n            offsetmins = 0 - offsetmins;\n          }\n        }\n        return Date.UTC(parseInt(q[1], 10), parseInt(q[2], 10) - 1, parseInt(q[3], 10), parseInt(q[4], 10), parseInt(q[5], 10) + offsetmins);\n      }\n    } else if (r) {\n      secs = parseFloat(r[6]);\n      isecs = Math.floor(secs);\n      msecs = Math.round((secs - isecs) * 1000);\n      if (!r[8]) {\n        return new Date(parseInt(r[1], 10), parseInt(r[2], 10) - 1, parseInt(r[3], 10), parseInt(r[4], 10), parseInt(r[5], 10), isecs, msecs).getTime();\n      } else {\n        offsetmins = 0;\n        if (r[8] !== 'Z') {\n          offsetmins = parseInt(r[10], 10) * 60 + parseInt(r[11], 10);\n          if (r[9] === '+') {\n            offsetmins = 0 - offsetmins;\n          }\n        }\n        return Date.UTC(parseInt(r[1], 10), parseInt(r[2], 10) - 1, parseInt(r[3], 10), parseInt(r[4], 10), parseInt(r[5], 10) + offsetmins, isecs, msecs);\n      }\n    } else {\n      return new Date(parseInt(date, 10), 0, 1).getTime();\n    }\n  };\n\n  Morris.Hover = (function() {\n    Hover.defaults = {\n      \"class\": 'morris-hover morris-default-style'\n    };\n\n    function Hover(options) {\n      if (options == null) {\n        options = {};\n      }\n      this.options = $.extend({}, Morris.Hover.defaults, options);\n      this.el = $(\"<div class='\" + this.options[\"class\"] + \"'></div>\");\n      this.el.hide();\n      this.options.parent.append(this.el);\n    }\n\n    Hover.prototype.update = function(html, x, y) {\n      this.html;\n      this.show();\n      return this.moveTo(x, y);\n    };\n\n    Hover.prototype.html = function(content) {\n      return this.el.html(content);\n    };\n\n    Hover.prototype.moveTo = function(x, y) {\n      var hoverHeight, hoverWidth, left, parentHeight, parentWidth, top;\n      parentWidth = this.options.parent.innerWidth();\n      parentHeight = this.options.parent.innerHeight();\n      hoverWidth = this.el.outerWidth();\n      hoverHeight = this.el.outerHeight();\n      left = Math.min(Math.max(0, x - hoverWidth / 2), parentWidth - hoverWidth);\n      if (y != null) {\n        top = y - hoverHeight - 10;\n        if (top < 0) {\n          top = y + 10;\n          if (top + hoverHeight > parentHeight) {\n            top = parentHeight / 2 - hoverHeight / 2;\n          }\n        }\n      } else {\n        top = parentHeight / 2 - hoverHeight / 2;\n      }\n      return this.el.css({\n        left: left + \"px\",\n        top: parseInt(top) + \"px\"\n      });\n    };\n\n    Hover.prototype.show = function() {\n      return this.el.show();\n    };\n\n    Hover.prototype.hide = function() {\n      return this.el.hide();\n    };\n\n    return Hover;\n\n  })();\n\n  Morris.Line = (function(_super) {\n    __extends(Line, _super);\n\n    function Line(options) {\n      this.hilight = __bind(this.hilight, this);\n      this.onHoverOut = __bind(this.onHoverOut, this);\n      this.onHoverMove = __bind(this.onHoverMove, this);\n      this.onGridClick = __bind(this.onGridClick, this);\n      if (!(this instanceof Morris.Line)) {\n        return new Morris.Line(options);\n      }\n      Line.__super__.constructor.call(this, options);\n    }\n\n    Line.prototype.init = function() {\n      if (this.options.hideHover !== 'always') {\n        this.hover = new Morris.Hover({\n          parent: this.el\n        });\n        this.on('hovermove', this.onHoverMove);\n        this.on('hoverout', this.onHoverOut);\n        return this.on('gridclick', this.onGridClick);\n      }\n    };\n\n    Line.prototype.defaults = {\n      lineWidth: 3,\n      pointSize: 4,\n      lineColors: ['#0b62a4', '#7A92A3', '#4da74d', '#afd8f8', '#edc240', '#cb4b4b', '#9440ed'],\n      pointStrokeWidths: [1],\n      pointStrokeColors: ['#ffffff'],\n      pointFillColors: [],\n      smooth: true,\n      xLabels: 'auto',\n      xLabelFormat: null,\n      xLabelMargin: 24,\n      continuousLine: true,\n      hideHover: false\n    };\n\n    Line.prototype.calc = function() {\n      this.calcPoints();\n      return this.generatePaths();\n    };\n\n    Line.prototype.calcPoints = function() {\n      var row, y, _i, _len, _ref, _results;\n      _ref = this.data;\n      _results = [];\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        row = _ref[_i];\n        row._x = this.transX(row.x);\n        row._y = (function() {\n          var _j, _len1, _ref1, _results1;\n          _ref1 = row.y;\n          _results1 = [];\n          for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) {\n            y = _ref1[_j];\n            if (y != null) {\n              _results1.push(this.transY(y));\n            } else {\n              _results1.push(y);\n            }\n          }\n          return _results1;\n        }).call(this);\n        _results.push(row._ymax = Math.min.apply(Math, [this.bottom].concat((function() {\n          var _j, _len1, _ref1, _results1;\n          _ref1 = row._y;\n          _results1 = [];\n          for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) {\n            y = _ref1[_j];\n            if (y != null) {\n              _results1.push(y);\n            }\n          }\n          return _results1;\n        })())));\n      }\n      return _results;\n    };\n\n    Line.prototype.hitTest = function(x) {\n      var index, r, _i, _len, _ref;\n      if (this.data.length === 0) {\n        return null;\n      }\n      _ref = this.data.slice(1);\n      for (index = _i = 0, _len = _ref.length; _i < _len; index = ++_i) {\n        r = _ref[index];\n        if (x < (r._x + this.data[index]._x) / 2) {\n          break;\n        }\n      }\n      return index;\n    };\n\n    Line.prototype.onGridClick = function(x, y) {\n      var index;\n      index = this.hitTest(x);\n      return this.fire('click', index, this.data[index].src, x, y);\n    };\n\n    Line.prototype.onHoverMove = function(x, y) {\n      var index;\n      index = this.hitTest(x);\n      return this.displayHoverForRow(index);\n    };\n\n    Line.prototype.onHoverOut = function() {\n      if (this.options.hideHover !== false) {\n        return this.displayHoverForRow(null);\n      }\n    };\n\n    Line.prototype.displayHoverForRow = function(index) {\n      var _ref;\n      if (index != null) {\n        (_ref = this.hover).update.apply(_ref, this.hoverContentForRow(index));\n        return this.hilight(index);\n      } else {\n        this.hover.hide();\n        return this.hilight();\n      }\n    };\n\n    Line.prototype.hoverContentForRow = function(index) {\n      var content, j, row, y, _i, _len, _ref;\n      row = this.data[index];\n      content = \"<div class='morris-hover-row-label'>\" + row.label + \"</div>\";\n      _ref = row.y;\n      for (j = _i = 0, _len = _ref.length; _i < _len; j = ++_i) {\n        y = _ref[j];\n        content += \"<div class='morris-hover-point' style='color: \" + (this.colorFor(row, j, 'label')) + \"'>\\n  \" + this.options.labels[j] + \":\\n  \" + (this.yLabelFormat(y)) + \"\\n</div>\";\n      }\n      if (typeof this.options.hoverCallback === 'function') {\n        content = this.options.hoverCallback(index, this.options, content, row.src);\n      }\n      return [content, row._x, row._ymax];\n    };\n\n    Line.prototype.generatePaths = function() {\n      var c, coords, i, r, smooth;\n      return this.paths = (function() {\n        var _i, _ref, _ref1, _results;\n        _results = [];\n        for (i = _i = 0, _ref = this.options.ykeys.length; 0 <= _ref ? _i < _ref : _i > _ref; i = 0 <= _ref ? ++_i : --_i) {\n          smooth = typeof this.options.smooth === \"boolean\" ? this.options.smooth : (_ref1 = this.options.ykeys[i], __indexOf.call(this.options.smooth, _ref1) >= 0);\n          coords = (function() {\n            var _j, _len, _ref2, _results1;\n            _ref2 = this.data;\n            _results1 = [];\n            for (_j = 0, _len = _ref2.length; _j < _len; _j++) {\n              r = _ref2[_j];\n              if (r._y[i] !== void 0) {\n                _results1.push({\n                  x: r._x,\n                  y: r._y[i]\n                });\n              }\n            }\n            return _results1;\n          }).call(this);\n          if (this.options.continuousLine) {\n            coords = (function() {\n              var _j, _len, _results1;\n              _results1 = [];\n              for (_j = 0, _len = coords.length; _j < _len; _j++) {\n                c = coords[_j];\n                if (c.y !== null) {\n                  _results1.push(c);\n                }\n              }\n              return _results1;\n            })();\n          }\n          if (coords.length > 1) {\n            _results.push(Morris.Line.createPath(coords, smooth, this.bottom));\n          } else {\n            _results.push(null);\n          }\n        }\n        return _results;\n      }).call(this);\n    };\n\n    Line.prototype.draw = function() {\n      var _ref;\n      if ((_ref = this.options.axes) === true || _ref === 'both' || _ref === 'x') {\n        this.drawXAxis();\n      }\n      this.drawSeries();\n      if (this.options.hideHover === false) {\n        return this.displayHoverForRow(this.data.length - 1);\n      }\n    };\n\n    Line.prototype.drawXAxis = function() {\n      var drawLabel, l, labels, prevAngleMargin, prevLabelMargin, row, ypos, _i, _len, _results,\n        _this = this;\n      ypos = this.bottom + this.options.padding / 2;\n      prevLabelMargin = null;\n      prevAngleMargin = null;\n      drawLabel = function(labelText, xpos) {\n        var label, labelBox, margin, offset, textBox;\n        label = _this.drawXAxisLabel(_this.transX(xpos), ypos, labelText);\n        textBox = label.getBBox();\n        label.transform(\"r\" + (-_this.options.xLabelAngle));\n        labelBox = label.getBBox();\n        label.transform(\"t0,\" + (labelBox.height / 2) + \"...\");\n        if (_this.options.xLabelAngle !== 0) {\n          offset = -0.5 * textBox.width * Math.cos(_this.options.xLabelAngle * Math.PI / 180.0);\n          label.transform(\"t\" + offset + \",0...\");\n        }\n        labelBox = label.getBBox();\n        if (((prevLabelMargin == null) || prevLabelMargin >= labelBox.x + labelBox.width || (prevAngleMargin != null) && prevAngleMargin >= labelBox.x) && labelBox.x >= 0 && (labelBox.x + labelBox.width) < _this.el.width()) {\n          if (_this.options.xLabelAngle !== 0) {\n            margin = 1.25 * _this.options.gridTextSize / Math.sin(_this.options.xLabelAngle * Math.PI / 180.0);\n            prevAngleMargin = labelBox.x - margin;\n          }\n          return prevLabelMargin = labelBox.x - _this.options.xLabelMargin;\n        } else {\n          return label.remove();\n        }\n      };\n      if (this.options.parseTime) {\n        if (this.data.length === 1 && this.options.xLabels === 'auto') {\n          labels = [[this.data[0].label, this.data[0].x]];\n        } else {\n          labels = Morris.labelSeries(this.xmin, this.xmax, this.width, this.options.xLabels, this.options.xLabelFormat);\n        }\n      } else {\n        labels = (function() {\n          var _i, _len, _ref, _results;\n          _ref = this.data;\n          _results = [];\n          for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n            row = _ref[_i];\n            _results.push([row.label, row.x]);\n          }\n          return _results;\n        }).call(this);\n      }\n      labels.reverse();\n      _results = [];\n      for (_i = 0, _len = labels.length; _i < _len; _i++) {\n        l = labels[_i];\n        _results.push(drawLabel(l[0], l[1]));\n      }\n      return _results;\n    };\n\n    Line.prototype.drawSeries = function() {\n      var i, _i, _j, _ref, _ref1, _results;\n      this.seriesPoints = [];\n      for (i = _i = _ref = this.options.ykeys.length - 1; _ref <= 0 ? _i <= 0 : _i >= 0; i = _ref <= 0 ? ++_i : --_i) {\n        this._drawLineFor(i);\n      }\n      _results = [];\n      for (i = _j = _ref1 = this.options.ykeys.length - 1; _ref1 <= 0 ? _j <= 0 : _j >= 0; i = _ref1 <= 0 ? ++_j : --_j) {\n        _results.push(this._drawPointFor(i));\n      }\n      return _results;\n    };\n\n    Line.prototype._drawPointFor = function(index) {\n      var circle, row, _i, _len, _ref, _results;\n      this.seriesPoints[index] = [];\n      _ref = this.data;\n      _results = [];\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        row = _ref[_i];\n        circle = null;\n        if (row._y[index] != null) {\n          circle = this.drawLinePoint(row._x, row._y[index], this.colorFor(row, index, 'point'), index);\n        }\n        _results.push(this.seriesPoints[index].push(circle));\n      }\n      return _results;\n    };\n\n    Line.prototype._drawLineFor = function(index) {\n      var path;\n      path = this.paths[index];\n      if (path !== null) {\n        return this.drawLinePath(path, this.colorFor(null, index, 'line'), index);\n      }\n    };\n\n    Line.createPath = function(coords, smooth, bottom) {\n      var coord, g, grads, i, ix, lg, path, prevCoord, x1, x2, y1, y2, _i, _len;\n      path = \"\";\n      if (smooth) {\n        grads = Morris.Line.gradients(coords);\n      }\n      prevCoord = {\n        y: null\n      };\n      for (i = _i = 0, _len = coords.length; _i < _len; i = ++_i) {\n        coord = coords[i];\n        if (coord.y != null) {\n          if (prevCoord.y != null) {\n            if (smooth) {\n              g = grads[i];\n              lg = grads[i - 1];\n              ix = (coord.x - prevCoord.x) / 4;\n              x1 = prevCoord.x + ix;\n              y1 = Math.min(bottom, prevCoord.y + ix * lg);\n              x2 = coord.x - ix;\n              y2 = Math.min(bottom, coord.y - ix * g);\n              path += \"C\" + x1 + \",\" + y1 + \",\" + x2 + \",\" + y2 + \",\" + coord.x + \",\" + coord.y;\n            } else {\n              path += \"L\" + coord.x + \",\" + coord.y;\n            }\n          } else {\n            if (!smooth || (grads[i] != null)) {\n              path += \"M\" + coord.x + \",\" + coord.y;\n            }\n          }\n        }\n        prevCoord = coord;\n      }\n      return path;\n    };\n\n    Line.gradients = function(coords) {\n      var coord, grad, i, nextCoord, prevCoord, _i, _len, _results;\n      grad = function(a, b) {\n        return (a.y - b.y) / (a.x - b.x);\n      };\n      _results = [];\n      for (i = _i = 0, _len = coords.length; _i < _len; i = ++_i) {\n        coord = coords[i];\n        if (coord.y != null) {\n          nextCoord = coords[i + 1] || {\n            y: null\n          };\n          prevCoord = coords[i - 1] || {\n            y: null\n          };\n          if ((prevCoord.y != null) && (nextCoord.y != null)) {\n            _results.push(grad(prevCoord, nextCoord));\n          } else if (prevCoord.y != null) {\n            _results.push(grad(prevCoord, coord));\n          } else if (nextCoord.y != null) {\n            _results.push(grad(coord, nextCoord));\n          } else {\n            _results.push(null);\n          }\n        } else {\n          _results.push(null);\n        }\n      }\n      return _results;\n    };\n\n    Line.prototype.hilight = function(index) {\n      var i, _i, _j, _ref, _ref1;\n      if (this.prevHilight !== null && this.prevHilight !== index) {\n        for (i = _i = 0, _ref = this.seriesPoints.length - 1; 0 <= _ref ? _i <= _ref : _i >= _ref; i = 0 <= _ref ? ++_i : --_i) {\n          if (this.seriesPoints[i][this.prevHilight]) {\n            this.seriesPoints[i][this.prevHilight].animate(this.pointShrinkSeries(i));\n          }\n        }\n      }\n      if (index !== null && this.prevHilight !== index) {\n        for (i = _j = 0, _ref1 = this.seriesPoints.length - 1; 0 <= _ref1 ? _j <= _ref1 : _j >= _ref1; i = 0 <= _ref1 ? ++_j : --_j) {\n          if (this.seriesPoints[i][index]) {\n            this.seriesPoints[i][index].animate(this.pointGrowSeries(i));\n          }\n        }\n      }\n      return this.prevHilight = index;\n    };\n\n    Line.prototype.colorFor = function(row, sidx, type) {\n      if (typeof this.options.lineColors === 'function') {\n        return this.options.lineColors.call(this, row, sidx, type);\n      } else if (type === 'point') {\n        return this.options.pointFillColors[sidx % this.options.pointFillColors.length] || this.options.lineColors[sidx % this.options.lineColors.length];\n      } else {\n        return this.options.lineColors[sidx % this.options.lineColors.length];\n      }\n    };\n\n    Line.prototype.drawXAxisLabel = function(xPos, yPos, text) {\n      return this.raphael.text(xPos, yPos, text).attr('font-size', this.options.gridTextSize).attr('font-family', this.options.gridTextFamily).attr('font-weight', this.options.gridTextWeight).attr('fill', this.options.gridTextColor);\n    };\n\n    Line.prototype.drawLinePath = function(path, lineColor, lineIndex) {\n      return this.raphael.path(path).attr('stroke', lineColor).attr('stroke-width', this.lineWidthForSeries(lineIndex));\n    };\n\n    Line.prototype.drawLinePoint = function(xPos, yPos, pointColor, lineIndex) {\n      return this.raphael.circle(xPos, yPos, this.pointSizeForSeries(lineIndex)).attr('fill', pointColor).attr('stroke-width', this.pointStrokeWidthForSeries(lineIndex)).attr('stroke', this.pointStrokeColorForSeries(lineIndex));\n    };\n\n    Line.prototype.pointStrokeWidthForSeries = function(index) {\n      return this.options.pointStrokeWidths[index % this.options.pointStrokeWidths.length];\n    };\n\n    Line.prototype.pointStrokeColorForSeries = function(index) {\n      return this.options.pointStrokeColors[index % this.options.pointStrokeColors.length];\n    };\n\n    Line.prototype.lineWidthForSeries = function(index) {\n      if (this.options.lineWidth instanceof Array) {\n        return this.options.lineWidth[index % this.options.lineWidth.length];\n      } else {\n        return this.options.lineWidth;\n      }\n    };\n\n    Line.prototype.pointSizeForSeries = function(index) {\n      if (this.options.pointSize instanceof Array) {\n        return this.options.pointSize[index % this.options.pointSize.length];\n      } else {\n        return this.options.pointSize;\n      }\n    };\n\n    Line.prototype.pointGrowSeries = function(index) {\n      return Raphael.animation({\n        r: this.pointSizeForSeries(index) + 3\n      }, 25, 'linear');\n    };\n\n    Line.prototype.pointShrinkSeries = function(index) {\n      return Raphael.animation({\n        r: this.pointSizeForSeries(index)\n      }, 25, 'linear');\n    };\n\n    return Line;\n\n  })(Morris.Grid);\n\n  Morris.labelSeries = function(dmin, dmax, pxwidth, specName, xLabelFormat) {\n    var d, d0, ddensity, name, ret, s, spec, t, _i, _len, _ref;\n    ddensity = 200 * (dmax - dmin) / pxwidth;\n    d0 = new Date(dmin);\n    spec = Morris.LABEL_SPECS[specName];\n    if (spec === void 0) {\n      _ref = Morris.AUTO_LABEL_ORDER;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        name = _ref[_i];\n        s = Morris.LABEL_SPECS[name];\n        if (ddensity >= s.span) {\n          spec = s;\n          break;\n        }\n      }\n    }\n    if (spec === void 0) {\n      spec = Morris.LABEL_SPECS[\"second\"];\n    }\n    if (xLabelFormat) {\n      spec = $.extend({}, spec, {\n        fmt: xLabelFormat\n      });\n    }\n    d = spec.start(d0);\n    ret = [];\n    while ((t = d.getTime()) <= dmax) {\n      if (t >= dmin) {\n        ret.push([spec.fmt(d), t]);\n      }\n      spec.incr(d);\n    }\n    return ret;\n  };\n\n  minutesSpecHelper = function(interval) {\n    return {\n      span: interval * 60 * 1000,\n      start: function(d) {\n        return new Date(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours());\n      },\n      fmt: function(d) {\n        return \"\" + (Morris.pad2(d.getHours())) + \":\" + (Morris.pad2(d.getMinutes()));\n      },\n      incr: function(d) {\n        return d.setUTCMinutes(d.getUTCMinutes() + interval);\n      }\n    };\n  };\n\n  secondsSpecHelper = function(interval) {\n    return {\n      span: interval * 1000,\n      start: function(d) {\n        return new Date(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours(), d.getMinutes());\n      },\n      fmt: function(d) {\n        return \"\" + (Morris.pad2(d.getHours())) + \":\" + (Morris.pad2(d.getMinutes())) + \":\" + (Morris.pad2(d.getSeconds()));\n      },\n      incr: function(d) {\n        return d.setUTCSeconds(d.getUTCSeconds() + interval);\n      }\n    };\n  };\n\n  Morris.LABEL_SPECS = {\n    \"decade\": {\n      span: 172800000000,\n      start: function(d) {\n        return new Date(d.getFullYear() - d.getFullYear() % 10, 0, 1);\n      },\n      fmt: function(d) {\n        return \"\" + (d.getFullYear());\n      },\n      incr: function(d) {\n        return d.setFullYear(d.getFullYear() + 10);\n      }\n    },\n    \"year\": {\n      span: 17280000000,\n      start: function(d) {\n        return new Date(d.getFullYear(), 0, 1);\n      },\n      fmt: function(d) {\n        return \"\" + (d.getFullYear());\n      },\n      incr: function(d) {\n        return d.setFullYear(d.getFullYear() + 1);\n      }\n    },\n    \"month\": {\n      span: 2419200000,\n      start: function(d) {\n        return new Date(d.getFullYear(), d.getMonth(), 1);\n      },\n      fmt: function(d) {\n        return \"\" + (d.getFullYear()) + \"-\" + (Morris.pad2(d.getMonth() + 1));\n      },\n      incr: function(d) {\n        return d.setMonth(d.getMonth() + 1);\n      }\n    },\n    \"week\": {\n      span: 604800000,\n      start: function(d) {\n        return new Date(d.getFullYear(), d.getMonth(), d.getDate());\n      },\n      fmt: function(d) {\n        return \"\" + (d.getFullYear()) + \"-\" + (Morris.pad2(d.getMonth() + 1)) + \"-\" + (Morris.pad2(d.getDate()));\n      },\n      incr: function(d) {\n        return d.setDate(d.getDate() + 7);\n      }\n    },\n    \"day\": {\n      span: 86400000,\n      start: function(d) {\n        return new Date(d.getFullYear(), d.getMonth(), d.getDate());\n      },\n      fmt: function(d) {\n        return \"\" + (d.getFullYear()) + \"-\" + (Morris.pad2(d.getMonth() + 1)) + \"-\" + (Morris.pad2(d.getDate()));\n      },\n      incr: function(d) {\n        return d.setDate(d.getDate() + 1);\n      }\n    },\n    \"hour\": minutesSpecHelper(60),\n    \"30min\": minutesSpecHelper(30),\n    \"15min\": minutesSpecHelper(15),\n    \"10min\": minutesSpecHelper(10),\n    \"5min\": minutesSpecHelper(5),\n    \"minute\": minutesSpecHelper(1),\n    \"30sec\": secondsSpecHelper(30),\n    \"15sec\": secondsSpecHelper(15),\n    \"10sec\": secondsSpecHelper(10),\n    \"5sec\": secondsSpecHelper(5),\n    \"second\": secondsSpecHelper(1)\n  };\n\n  Morris.AUTO_LABEL_ORDER = [\"decade\", \"year\", \"month\", \"week\", \"day\", \"hour\", \"30min\", \"15min\", \"10min\", \"5min\", \"minute\", \"30sec\", \"15sec\", \"10sec\", \"5sec\", \"second\"];\n\n  Morris.Area = (function(_super) {\n    var areaDefaults;\n\n    __extends(Area, _super);\n\n    areaDefaults = {\n      fillOpacity: 'auto',\n      behaveLikeLine: false\n    };\n\n    function Area(options) {\n      var areaOptions;\n      if (!(this instanceof Morris.Area)) {\n        return new Morris.Area(options);\n      }\n      areaOptions = $.extend({}, areaDefaults, options);\n      this.cumulative = !areaOptions.behaveLikeLine;\n      if (areaOptions.fillOpacity === 'auto') {\n        areaOptions.fillOpacity = areaOptions.behaveLikeLine ? .8 : 1;\n      }\n      Area.__super__.constructor.call(this, areaOptions);\n    }\n\n    Area.prototype.calcPoints = function() {\n      var row, total, y, _i, _len, _ref, _results;\n      _ref = this.data;\n      _results = [];\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        row = _ref[_i];\n        row._x = this.transX(row.x);\n        total = 0;\n        row._y = (function() {\n          var _j, _len1, _ref1, _results1;\n          _ref1 = row.y;\n          _results1 = [];\n          for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) {\n            y = _ref1[_j];\n            if (this.options.behaveLikeLine) {\n              _results1.push(this.transY(y));\n            } else {\n              total += y || 0;\n              _results1.push(this.transY(total));\n            }\n          }\n          return _results1;\n        }).call(this);\n        _results.push(row._ymax = Math.max.apply(Math, row._y));\n      }\n      return _results;\n    };\n\n    Area.prototype.drawSeries = function() {\n      var i, range, _i, _j, _k, _len, _ref, _ref1, _results, _results1, _results2;\n      this.seriesPoints = [];\n      if (this.options.behaveLikeLine) {\n        range = (function() {\n          _results = [];\n          for (var _i = 0, _ref = this.options.ykeys.length - 1; 0 <= _ref ? _i <= _ref : _i >= _ref; 0 <= _ref ? _i++ : _i--){ _results.push(_i); }\n          return _results;\n        }).apply(this);\n      } else {\n        range = (function() {\n          _results1 = [];\n          for (var _j = _ref1 = this.options.ykeys.length - 1; _ref1 <= 0 ? _j <= 0 : _j >= 0; _ref1 <= 0 ? _j++ : _j--){ _results1.push(_j); }\n          return _results1;\n        }).apply(this);\n      }\n      _results2 = [];\n      for (_k = 0, _len = range.length; _k < _len; _k++) {\n        i = range[_k];\n        this._drawFillFor(i);\n        this._drawLineFor(i);\n        _results2.push(this._drawPointFor(i));\n      }\n      return _results2;\n    };\n\n    Area.prototype._drawFillFor = function(index) {\n      var path;\n      path = this.paths[index];\n      if (path !== null) {\n        path = path + (\"L\" + (this.transX(this.xmax)) + \",\" + this.bottom + \"L\" + (this.transX(this.xmin)) + \",\" + this.bottom + \"Z\");\n        return this.drawFilledPath(path, this.fillForSeries(index));\n      }\n    };\n\n    Area.prototype.fillForSeries = function(i) {\n      var color;\n      color = Raphael.rgb2hsl(this.colorFor(this.data[i], i, 'line'));\n      return Raphael.hsl(color.h, this.options.behaveLikeLine ? color.s * 0.9 : color.s * 0.75, Math.min(0.98, this.options.behaveLikeLine ? color.l * 1.2 : color.l * 1.25));\n    };\n\n    Area.prototype.drawFilledPath = function(path, fill) {\n      return this.raphael.path(path).attr('fill', fill).attr('fill-opacity', this.options.fillOpacity).attr('stroke', 'none');\n    };\n\n    return Area;\n\n  })(Morris.Line);\n\n  Morris.Bar = (function(_super) {\n    __extends(Bar, _super);\n\n    function Bar(options) {\n      this.onHoverOut = __bind(this.onHoverOut, this);\n      this.onHoverMove = __bind(this.onHoverMove, this);\n      this.onGridClick = __bind(this.onGridClick, this);\n      if (!(this instanceof Morris.Bar)) {\n        return new Morris.Bar(options);\n      }\n      Bar.__super__.constructor.call(this, $.extend({}, options, {\n        parseTime: false\n      }));\n    }\n\n    Bar.prototype.init = function() {\n      this.cumulative = this.options.stacked;\n      if (this.options.hideHover !== 'always') {\n        this.hover = new Morris.Hover({\n          parent: this.el\n        });\n        this.on('hovermove', this.onHoverMove);\n        this.on('hoverout', this.onHoverOut);\n        return this.on('gridclick', this.onGridClick);\n      }\n    };\n\n    Bar.prototype.defaults = {\n      barSizeRatio: 0.75,\n      barGap: 3,\n      barColors: ['#0b62a4', '#7a92a3', '#4da74d', '#afd8f8', '#edc240', '#cb4b4b', '#9440ed'],\n      barOpacity: 1.0,\n      barRadius: [0, 0, 0, 0],\n      xLabelMargin: 50\n    };\n\n    Bar.prototype.calc = function() {\n      var _ref;\n      this.calcBars();\n      if (this.options.hideHover === false) {\n        return (_ref = this.hover).update.apply(_ref, this.hoverContentForRow(this.data.length - 1));\n      }\n    };\n\n    Bar.prototype.calcBars = function() {\n      var idx, row, y, _i, _len, _ref, _results;\n      _ref = this.data;\n      _results = [];\n      for (idx = _i = 0, _len = _ref.length; _i < _len; idx = ++_i) {\n        row = _ref[idx];\n        row._x = this.left + this.width * (idx + 0.5) / this.data.length;\n        _results.push(row._y = (function() {\n          var _j, _len1, _ref1, _results1;\n          _ref1 = row.y;\n          _results1 = [];\n          for (_j = 0, _len1 = _ref1.length; _j < _len1; _j++) {\n            y = _ref1[_j];\n            if (y != null) {\n              _results1.push(this.transY(y));\n            } else {\n              _results1.push(null);\n            }\n          }\n          return _results1;\n        }).call(this));\n      }\n      return _results;\n    };\n\n    Bar.prototype.draw = function() {\n      var _ref;\n      if ((_ref = this.options.axes) === true || _ref === 'both' || _ref === 'x') {\n        this.drawXAxis();\n      }\n      return this.drawSeries();\n    };\n\n    Bar.prototype.drawXAxis = function() {\n      var i, label, labelBox, margin, offset, prevAngleMargin, prevLabelMargin, row, textBox, ypos, _i, _ref, _results;\n      ypos = this.bottom + (this.options.xAxisLabelTopPadding || this.options.padding / 2);\n      prevLabelMargin = null;\n      prevAngleMargin = null;\n      _results = [];\n      for (i = _i = 0, _ref = this.data.length; 0 <= _ref ? _i < _ref : _i > _ref; i = 0 <= _ref ? ++_i : --_i) {\n        row = this.data[this.data.length - 1 - i];\n        label = this.drawXAxisLabel(row._x, ypos, row.label);\n        textBox = label.getBBox();\n        label.transform(\"r\" + (-this.options.xLabelAngle));\n        labelBox = label.getBBox();\n        label.transform(\"t0,\" + (labelBox.height / 2) + \"...\");\n        if (this.options.xLabelAngle !== 0) {\n          offset = -0.5 * textBox.width * Math.cos(this.options.xLabelAngle * Math.PI / 180.0);\n          label.transform(\"t\" + offset + \",0...\");\n        }\n        if (((prevLabelMargin == null) || prevLabelMargin >= labelBox.x + labelBox.width || (prevAngleMargin != null) && prevAngleMargin >= labelBox.x) && labelBox.x >= 0 && (labelBox.x + labelBox.width) < this.el.width()) {\n          if (this.options.xLabelAngle !== 0) {\n            margin = 1.25 * this.options.gridTextSize / Math.sin(this.options.xLabelAngle * Math.PI / 180.0);\n            prevAngleMargin = labelBox.x - margin;\n          }\n          _results.push(prevLabelMargin = labelBox.x - this.options.xLabelMargin);\n        } else {\n          _results.push(label.remove());\n        }\n      }\n      return _results;\n    };\n\n    Bar.prototype.drawSeries = function() {\n      var barWidth, bottom, groupWidth, idx, lastTop, left, leftPadding, numBars, row, sidx, size, top, ypos, zeroPos;\n      groupWidth = this.width / this.options.data.length;\n      numBars = this.options.stacked != null ? 1 : this.options.ykeys.length;\n      barWidth = (groupWidth * this.options.barSizeRatio - this.options.barGap * (numBars - 1)) / numBars;\n      leftPadding = groupWidth * (1 - this.options.barSizeRatio) / 2;\n      zeroPos = this.ymin <= 0 && this.ymax >= 0 ? this.transY(0) : null;\n      return this.bars = (function() {\n        var _i, _len, _ref, _results;\n        _ref = this.data;\n        _results = [];\n        for (idx = _i = 0, _len = _ref.length; _i < _len; idx = ++_i) {\n          row = _ref[idx];\n          lastTop = 0;\n          _results.push((function() {\n            var _j, _len1, _ref1, _results1;\n            _ref1 = row._y;\n            _results1 = [];\n            for (sidx = _j = 0, _len1 = _ref1.length; _j < _len1; sidx = ++_j) {\n              ypos = _ref1[sidx];\n              if (ypos !== null) {\n                if (zeroPos) {\n                  top = Math.min(ypos, zeroPos);\n                  bottom = Math.max(ypos, zeroPos);\n                } else {\n                  top = ypos;\n                  bottom = this.bottom;\n                }\n                left = this.left + idx * groupWidth + leftPadding;\n                if (!this.options.stacked) {\n                  left += sidx * (barWidth + this.options.barGap);\n                }\n                size = bottom - top;\n                if (this.options.stacked) {\n                  top -= lastTop;\n                }\n                this.drawBar(left, top, barWidth, size, this.colorFor(row, sidx, 'bar'), this.options.barOpacity, this.options.barRadius);\n                _results1.push(lastTop += size);\n              } else {\n                _results1.push(null);\n              }\n            }\n            return _results1;\n          }).call(this));\n        }\n        return _results;\n      }).call(this);\n    };\n\n    Bar.prototype.colorFor = function(row, sidx, type) {\n      var r, s;\n      if (typeof this.options.barColors === 'function') {\n        r = {\n          x: row.x,\n          y: row.y[sidx],\n          label: row.label\n        };\n        s = {\n          index: sidx,\n          key: this.options.ykeys[sidx],\n          label: this.options.labels[sidx]\n        };\n        return this.options.barColors.call(this, r, s, type);\n      } else {\n        return this.options.barColors[sidx % this.options.barColors.length];\n      }\n    };\n\n    Bar.prototype.hitTest = function(x) {\n      if (this.data.length === 0) {\n        return null;\n      }\n      x = Math.max(Math.min(x, this.right), this.left);\n      return Math.min(this.data.length - 1, Math.floor((x - this.left) / (this.width / this.data.length)));\n    };\n\n    Bar.prototype.onGridClick = function(x, y) {\n      var index;\n      index = this.hitTest(x);\n      return this.fire('click', index, this.data[index].src, x, y);\n    };\n\n    Bar.prototype.onHoverMove = function(x, y) {\n      var index, _ref;\n      index = this.hitTest(x);\n      return (_ref = this.hover).update.apply(_ref, this.hoverContentForRow(index));\n    };\n\n    Bar.prototype.onHoverOut = function() {\n      if (this.options.hideHover !== false) {\n        return this.hover.hide();\n      }\n    };\n\n    Bar.prototype.hoverContentForRow = function(index) {\n      var content, j, row, x, y, _i, _len, _ref;\n      row = this.data[index];\n      content = \"<div class='morris-hover-row-label'>\" + row.label + \"</div>\";\n      _ref = row.y;\n      for (j = _i = 0, _len = _ref.length; _i < _len; j = ++_i) {\n        y = _ref[j];\n        content += \"<div class='morris-hover-point' style='color: \" + (this.colorFor(row, j, 'label')) + \"'>\\n  \" + this.options.labels[j] + \":\\n  \" + (this.yLabelFormat(y)) + \"\\n</div>\";\n      }\n      if (typeof this.options.hoverCallback === 'function') {\n        content = this.options.hoverCallback(index, this.options, content, row.src);\n      }\n      x = this.left + (index + 0.5) * this.width / this.data.length;\n      return [content, x];\n    };\n\n    Bar.prototype.drawXAxisLabel = function(xPos, yPos, text) {\n      var label;\n      return label = this.raphael.text(xPos, yPos, text).attr('font-size', this.options.gridTextSize).attr('font-family', this.options.gridTextFamily).attr('font-weight', this.options.gridTextWeight).attr('fill', this.options.gridTextColor);\n    };\n\n    Bar.prototype.drawBar = function(xPos, yPos, width, height, barColor, opacity, radiusArray) {\n      var maxRadius, path;\n      maxRadius = Math.max.apply(Math, radiusArray);\n      if (maxRadius === 0 || maxRadius > height) {\n        path = this.raphael.rect(xPos, yPos, width, height);\n      } else {\n        path = this.raphael.path(this.roundedRect(xPos, yPos, width, height, radiusArray));\n      }\n      return path.attr('fill', barColor).attr('fill-opacity', opacity).attr('stroke', 'none');\n    };\n\n    Bar.prototype.roundedRect = function(x, y, w, h, r) {\n      if (r == null) {\n        r = [0, 0, 0, 0];\n      }\n      return [\"M\", x, r[0] + y, \"Q\", x, y, x + r[0], y, \"L\", x + w - r[1], y, \"Q\", x + w, y, x + w, y + r[1], \"L\", x + w, y + h - r[2], \"Q\", x + w, y + h, x + w - r[2], y + h, \"L\", x + r[3], y + h, \"Q\", x, y + h, x, y + h - r[3], \"Z\"];\n    };\n\n    return Bar;\n\n  })(Morris.Grid);\n\n  Morris.Donut = (function(_super) {\n    __extends(Donut, _super);\n\n    Donut.prototype.defaults = {\n      colors: ['#0B62A4', '#3980B5', '#679DC6', '#95BBD7', '#B0CCE1', '#095791', '#095085', '#083E67', '#052C48', '#042135'],\n      backgroundColor: '#FFFFFF',\n      labelColor: '#000000',\n      formatter: Morris.commas,\n      resize: false\n    };\n\n    function Donut(options) {\n      this.resizeHandler = __bind(this.resizeHandler, this);\n      this.select = __bind(this.select, this);\n      this.click = __bind(this.click, this);\n      var _this = this;\n      if (!(this instanceof Morris.Donut)) {\n        return new Morris.Donut(options);\n      }\n      this.options = $.extend({}, this.defaults, options);\n      if (typeof options.element === 'string') {\n        this.el = $(document.getElementById(options.element));\n      } else {\n        this.el = $(options.element);\n      }\n      if (this.el === null || this.el.length === 0) {\n        throw new Error(\"Graph placeholder not found.\");\n      }\n      if (options.data === void 0 || options.data.length === 0) {\n        return;\n      }\n      this.raphael = new Raphael(this.el[0]);\n      if (this.options.resize) {\n        $(window).bind('resize', function(evt) {\n          if (_this.timeoutId != null) {\n            window.clearTimeout(_this.timeoutId);\n          }\n          return _this.timeoutId = window.setTimeout(_this.resizeHandler, 100);\n        });\n      }\n      this.setData(options.data);\n    }\n\n    Donut.prototype.redraw = function() {\n      var C, cx, cy, i, idx, last, max_value, min, next, seg, total, value, w, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _results;\n      this.raphael.clear();\n      cx = this.el.width() / 2;\n      cy = this.el.height() / 2;\n      w = (Math.min(cx, cy) - 10) / 3;\n      total = 0;\n      _ref = this.values;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        value = _ref[_i];\n        total += value;\n      }\n      min = 5 / (2 * w);\n      C = 1.9999 * Math.PI - min * this.data.length;\n      last = 0;\n      idx = 0;\n      this.segments = [];\n      _ref1 = this.values;\n      for (i = _j = 0, _len1 = _ref1.length; _j < _len1; i = ++_j) {\n        value = _ref1[i];\n        next = last + min + C * (value / total);\n        seg = new Morris.DonutSegment(cx, cy, w * 2, w, last, next, this.data[i].color || this.options.colors[idx % this.options.colors.length], this.options.backgroundColor, idx, this.raphael);\n        seg.render();\n        this.segments.push(seg);\n        seg.on('hover', this.select);\n        seg.on('click', this.click);\n        last = next;\n        idx += 1;\n      }\n      this.text1 = this.drawEmptyDonutLabel(cx, cy - 10, this.options.labelColor, 15, 800);\n      this.text2 = this.drawEmptyDonutLabel(cx, cy + 10, this.options.labelColor, 14);\n      max_value = Math.max.apply(Math, this.values);\n      idx = 0;\n      _ref2 = this.values;\n      _results = [];\n      for (_k = 0, _len2 = _ref2.length; _k < _len2; _k++) {\n        value = _ref2[_k];\n        if (value === max_value) {\n          this.select(idx);\n          break;\n        }\n        _results.push(idx += 1);\n      }\n      return _results;\n    };\n\n    Donut.prototype.setData = function(data) {\n      var row;\n      this.data = data;\n      this.values = (function() {\n        var _i, _len, _ref, _results;\n        _ref = this.data;\n        _results = [];\n        for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n          row = _ref[_i];\n          _results.push(parseFloat(row.value));\n        }\n        return _results;\n      }).call(this);\n      return this.redraw();\n    };\n\n    Donut.prototype.click = function(idx) {\n      return this.fire('click', idx, this.data[idx]);\n    };\n\n    Donut.prototype.select = function(idx) {\n      var row, s, segment, _i, _len, _ref;\n      _ref = this.segments;\n      for (_i = 0, _len = _ref.length; _i < _len; _i++) {\n        s = _ref[_i];\n        s.deselect();\n      }\n      segment = this.segments[idx];\n      segment.select();\n      row = this.data[idx];\n      return this.setLabels(row.label, this.options.formatter(row.value, row));\n    };\n\n    Donut.prototype.setLabels = function(label1, label2) {\n      var inner, maxHeightBottom, maxHeightTop, maxWidth, text1bbox, text1scale, text2bbox, text2scale;\n      inner = (Math.min(this.el.width() / 2, this.el.height() / 2) - 10) * 2 / 3;\n      maxWidth = 1.8 * inner;\n      maxHeightTop = inner / 2;\n      maxHeightBottom = inner / 3;\n      this.text1.attr({\n        text: label1,\n        transform: ''\n      });\n      text1bbox = this.text1.getBBox();\n      text1scale = Math.min(maxWidth / text1bbox.width, maxHeightTop / text1bbox.height);\n      this.text1.attr({\n        transform: \"S\" + text1scale + \",\" + text1scale + \",\" + (text1bbox.x + text1bbox.width / 2) + \",\" + (text1bbox.y + text1bbox.height)\n      });\n      this.text2.attr({\n        text: label2,\n        transform: ''\n      });\n      text2bbox = this.text2.getBBox();\n      text2scale = Math.min(maxWidth / text2bbox.width, maxHeightBottom / text2bbox.height);\n      return this.text2.attr({\n        transform: \"S\" + text2scale + \",\" + text2scale + \",\" + (text2bbox.x + text2bbox.width / 2) + \",\" + text2bbox.y\n      });\n    };\n\n    Donut.prototype.drawEmptyDonutLabel = function(xPos, yPos, color, fontSize, fontWeight) {\n      var text;\n      text = this.raphael.text(xPos, yPos, '').attr('font-size', fontSize).attr('fill', color);\n      if (fontWeight != null) {\n        text.attr('font-weight', fontWeight);\n      }\n      return text;\n    };\n\n    Donut.prototype.resizeHandler = function() {\n      this.timeoutId = null;\n      this.raphael.setSize(this.el.width(), this.el.height());\n      return this.redraw();\n    };\n\n    return Donut;\n\n  })(Morris.EventEmitter);\n\n  Morris.DonutSegment = (function(_super) {\n    __extends(DonutSegment, _super);\n\n    function DonutSegment(cx, cy, inner, outer, p0, p1, color, backgroundColor, index, raphael) {\n      this.cx = cx;\n      this.cy = cy;\n      this.inner = inner;\n      this.outer = outer;\n      this.color = color;\n      this.backgroundColor = backgroundColor;\n      this.index = index;\n      this.raphael = raphael;\n      this.deselect = __bind(this.deselect, this);\n      this.select = __bind(this.select, this);\n      this.sin_p0 = Math.sin(p0);\n      this.cos_p0 = Math.cos(p0);\n      this.sin_p1 = Math.sin(p1);\n      this.cos_p1 = Math.cos(p1);\n      this.is_long = (p1 - p0) > Math.PI ? 1 : 0;\n      this.path = this.calcSegment(this.inner + 3, this.inner + this.outer - 5);\n      this.selectedPath = this.calcSegment(this.inner + 3, this.inner + this.outer);\n      this.hilight = this.calcArc(this.inner);\n    }\n\n    DonutSegment.prototype.calcArcPoints = function(r) {\n      return [this.cx + r * this.sin_p0, this.cy + r * this.cos_p0, this.cx + r * this.sin_p1, this.cy + r * this.cos_p1];\n    };\n\n    DonutSegment.prototype.calcSegment = function(r1, r2) {\n      var ix0, ix1, iy0, iy1, ox0, ox1, oy0, oy1, _ref, _ref1;\n      _ref = this.calcArcPoints(r1), ix0 = _ref[0], iy0 = _ref[1], ix1 = _ref[2], iy1 = _ref[3];\n      _ref1 = this.calcArcPoints(r2), ox0 = _ref1[0], oy0 = _ref1[1], ox1 = _ref1[2], oy1 = _ref1[3];\n      return (\"M\" + ix0 + \",\" + iy0) + (\"A\" + r1 + \",\" + r1 + \",0,\" + this.is_long + \",0,\" + ix1 + \",\" + iy1) + (\"L\" + ox1 + \",\" + oy1) + (\"A\" + r2 + \",\" + r2 + \",0,\" + this.is_long + \",1,\" + ox0 + \",\" + oy0) + \"Z\";\n    };\n\n    DonutSegment.prototype.calcArc = function(r) {\n      var ix0, ix1, iy0, iy1, _ref;\n      _ref = this.calcArcPoints(r), ix0 = _ref[0], iy0 = _ref[1], ix1 = _ref[2], iy1 = _ref[3];\n      return (\"M\" + ix0 + \",\" + iy0) + (\"A\" + r + \",\" + r + \",0,\" + this.is_long + \",0,\" + ix1 + \",\" + iy1);\n    };\n\n    DonutSegment.prototype.render = function() {\n      var _this = this;\n      this.arc = this.drawDonutArc(this.hilight, this.color);\n      return this.seg = this.drawDonutSegment(this.path, this.color, this.backgroundColor, function() {\n        return _this.fire('hover', _this.index);\n      }, function() {\n        return _this.fire('click', _this.index);\n      });\n    };\n\n    DonutSegment.prototype.drawDonutArc = function(path, color) {\n      return this.raphael.path(path).attr({\n        stroke: color,\n        'stroke-width': 2,\n        opacity: 0\n      });\n    };\n\n    DonutSegment.prototype.drawDonutSegment = function(path, fillColor, strokeColor, hoverFunction, clickFunction) {\n      return this.raphael.path(path).attr({\n        fill: fillColor,\n        stroke: strokeColor,\n        'stroke-width': 3\n      }).hover(hoverFunction).click(clickFunction);\n    };\n\n    DonutSegment.prototype.select = function() {\n      if (!this.selected) {\n        this.seg.animate({\n          path: this.selectedPath\n        }, 150, '<>');\n        this.arc.animate({\n          opacity: 1\n        }, 150, '<>');\n        return this.selected = true;\n      }\n    };\n\n    DonutSegment.prototype.deselect = function() {\n      if (this.selected) {\n        this.seg.animate({\n          path: this.path\n        }, 150, '<>');\n        this.arc.animate({\n          opacity: 0\n        }, 150, '<>');\n        return this.selected = false;\n      }\n    };\n\n    return DonutSegment;\n\n  })(Morris.EventEmitter);\n\n}).call(this);\n"
  },
  {
    "path": "public/admin/js/plugins/nestable/jquery.nestable.js",
    "content": "/*!\n * Nestable jQuery Plugin - Copyright (c) 2012 David Bushell - http://dbushell.com/\n * Dual-licensed under the BSD or MIT licenses\n */\n;(function($, window, document, undefined)\n{\n    var hasTouch = 'ontouchstart' in document;\n\n    /**\n     * Detect CSS pointer-events property\n     * events are normally disabled on the dragging element to avoid conflicts\n     * https://github.com/ausi/Feature-detection-technique-for-pointer-events/blob/master/modernizr-pointerevents.js\n     */\n    var hasPointerEvents = (function()\n    {\n        var el    = document.createElement('div'),\n            docEl = document.documentElement;\n        if (!('pointerEvents' in el.style)) {\n            return false;\n        }\n        el.style.pointerEvents = 'auto';\n        el.style.pointerEvents = 'x';\n        docEl.appendChild(el);\n        var supports = window.getComputedStyle && window.getComputedStyle(el, '').pointerEvents === 'auto';\n        docEl.removeChild(el);\n        return !!supports;\n    })();\n\n    var defaults = {\n        listNodeName    : 'ol',\n        itemNodeName    : 'li',\n        rootClass       : 'dd',\n        listClass       : 'dd-list',\n        itemClass       : 'dd-item',\n        dragClass       : 'dd-dragel',\n        handleClass     : 'dd-handle',\n        collapsedClass  : 'dd-collapsed',\n        placeClass      : 'dd-placeholder',\n        noDragClass     : 'dd-nodrag',\n        emptyClass      : 'dd-empty',\n        expandBtnHTML   : '<button data-action=\"expand\" type=\"button\">Expand</button>',\n        collapseBtnHTML : '<button data-action=\"collapse\" type=\"button\">Collapse</button>',\n        group           : 0,\n        maxDepth        : 5,\n        threshold       : 20\n    };\n\n    function Plugin(element, options)\n    {\n        this.w  = $(document);\n        this.el = $(element);\n        this.options = $.extend({}, defaults, options);\n        this.init();\n    }\n\n    Plugin.prototype = {\n\n        init: function()\n        {\n            var list = this;\n\n            list.reset();\n\n            list.el.data('nestable-group', this.options.group);\n\n            list.placeEl = $('<div class=\"' + list.options.placeClass + '\"/>');\n\n            $.each(this.el.find(list.options.itemNodeName), function(k, el) {\n                list.setParent($(el));\n            });\n\n            list.el.on('click', 'button', function(e) {\n                if (list.dragEl) {\n                    return;\n                }\n                var target = $(e.currentTarget),\n                    action = target.data('action'),\n                    item   = target.parent(list.options.itemNodeName);\n                if (action === 'collapse') {\n                    list.collapseItem(item);\n                }\n                if (action === 'expand') {\n                    list.expandItem(item);\n                }\n            });\n\n            var onStartEvent = function(e)\n            {\n                var handle = $(e.target);\n                if (!handle.hasClass(list.options.handleClass)) {\n                    if (handle.closest('.' + list.options.noDragClass).length) {\n                        return;\n                    }\n                    handle = handle.closest('.' + list.options.handleClass);\n                }\n\n                if (!handle.length || list.dragEl) {\n                    return;\n                }\n\n                list.isTouch = /^touch/.test(e.type);\n                if (list.isTouch && e.touches.length !== 1) {\n                    return;\n                }\n\n                e.preventDefault();\n                list.dragStart(e.touches ? e.touches[0] : e);\n            };\n\n            var onMoveEvent = function(e)\n            {\n                if (list.dragEl) {\n                    e.preventDefault();\n                    list.dragMove(e.touches ? e.touches[0] : e);\n                }\n            };\n\n            var onEndEvent = function(e)\n            {\n                if (list.dragEl) {\n                    e.preventDefault();\n                    list.dragStop(e.touches ? e.touches[0] : e);\n                }\n            };\n\n            if (hasTouch) {\n                list.el[0].addEventListener('touchstart', onStartEvent, false);\n                window.addEventListener('touchmove', onMoveEvent, false);\n                window.addEventListener('touchend', onEndEvent, false);\n                window.addEventListener('touchcancel', onEndEvent, false);\n            }\n\n            list.el.on('mousedown', onStartEvent);\n            list.w.on('mousemove', onMoveEvent);\n            list.w.on('mouseup', onEndEvent);\n\n        },\n\n        serialize: function()\n        {\n            var data,\n                depth = 0,\n                list  = this;\n            step  = function(level, depth)\n            {\n                var array = [ ],\n                    items = level.children(list.options.itemNodeName);\n                items.each(function()\n                {\n                    var li   = $(this),\n                        item = $.extend({}, li.data()),\n                        sub  = li.children(list.options.listNodeName);\n                    if (sub.length) {\n                        item.children = step(sub, depth + 1);\n                    }\n                    array.push(item);\n                });\n                return array;\n            };\n            data = step(list.el.find(list.options.listNodeName).first(), depth);\n            return data;\n        },\n\n        serialise: function()\n        {\n            return this.serialize();\n        },\n\n        reset: function()\n        {\n            this.mouse = {\n                offsetX   : 0,\n                offsetY   : 0,\n                startX    : 0,\n                startY    : 0,\n                lastX     : 0,\n                lastY     : 0,\n                nowX      : 0,\n                nowY      : 0,\n                distX     : 0,\n                distY     : 0,\n                dirAx     : 0,\n                dirX      : 0,\n                dirY      : 0,\n                lastDirX  : 0,\n                lastDirY  : 0,\n                distAxX   : 0,\n                distAxY   : 0\n            };\n            this.isTouch    = false;\n            this.moving     = false;\n            this.dragEl     = null;\n            this.dragRootEl = null;\n            this.dragDepth  = 0;\n            this.hasNewRoot = false;\n            this.pointEl    = null;\n        },\n\n        expandItem: function(li)\n        {\n            li.removeClass(this.options.collapsedClass);\n            li.children('[data-action=\"expand\"]').hide();\n            li.children('[data-action=\"collapse\"]').show();\n            li.children(this.options.listNodeName).show();\n        },\n\n        collapseItem: function(li)\n        {\n            var lists = li.children(this.options.listNodeName);\n            if (lists.length) {\n                li.addClass(this.options.collapsedClass);\n                li.children('[data-action=\"collapse\"]').hide();\n                li.children('[data-action=\"expand\"]').show();\n                li.children(this.options.listNodeName).hide();\n            }\n        },\n\n        expandAll: function()\n        {\n            var list = this;\n            list.el.find(list.options.itemNodeName).each(function() {\n                list.expandItem($(this));\n            });\n        },\n\n        collapseAll: function()\n        {\n            var list = this;\n            list.el.find(list.options.itemNodeName).each(function() {\n                list.collapseItem($(this));\n            });\n        },\n\n        setParent: function(li)\n        {\n            if (li.children(this.options.listNodeName).length) {\n                li.prepend($(this.options.expandBtnHTML));\n                li.prepend($(this.options.collapseBtnHTML));\n            }\n            li.children('[data-action=\"expand\"]').hide();\n        },\n\n        unsetParent: function(li)\n        {\n            li.removeClass(this.options.collapsedClass);\n            li.children('[data-action]').remove();\n            li.children(this.options.listNodeName).remove();\n        },\n\n        dragStart: function(e)\n        {\n            var mouse    = this.mouse,\n                target   = $(e.target),\n                dragItem = target.closest(this.options.itemNodeName);\n\n            this.placeEl.css('height', dragItem.height());\n\n            mouse.offsetX = e.offsetX !== undefined ? e.offsetX : e.pageX - target.offset().left;\n            mouse.offsetY = e.offsetY !== undefined ? e.offsetY : e.pageY - target.offset().top;\n            mouse.startX = mouse.lastX = e.pageX;\n            mouse.startY = mouse.lastY = e.pageY;\n\n            this.dragRootEl = this.el;\n\n            this.dragEl = $(document.createElement(this.options.listNodeName)).addClass(this.options.listClass + ' ' + this.options.dragClass);\n            this.dragEl.css('width', dragItem.width());\n\n            dragItem.after(this.placeEl);\n            dragItem[0].parentNode.removeChild(dragItem[0]);\n            dragItem.appendTo(this.dragEl);\n\n            $(document.body).append(this.dragEl);\n            this.dragEl.css({\n                'left' : e.pageX - mouse.offsetX,\n                'top'  : e.pageY - mouse.offsetY\n            });\n            // total depth of dragging item\n            var i, depth,\n                items = this.dragEl.find(this.options.itemNodeName);\n            for (i = 0; i < items.length; i++) {\n                depth = $(items[i]).parents(this.options.listNodeName).length;\n                if (depth > this.dragDepth) {\n                    this.dragDepth = depth;\n                }\n            }\n        },\n\n        dragStop: function(e)\n        {\n            var el = this.dragEl.children(this.options.itemNodeName).first();\n            el[0].parentNode.removeChild(el[0]);\n            this.placeEl.replaceWith(el);\n\n            this.dragEl.remove();\n            this.el.trigger('change');\n            if (this.hasNewRoot) {\n                this.dragRootEl.trigger('change');\n            }\n            this.reset();\n        },\n\n        dragMove: function(e)\n        {\n            var list, parent, prev, next, depth,\n                opt   = this.options,\n                mouse = this.mouse;\n\n            this.dragEl.css({\n                'left' : e.pageX - mouse.offsetX,\n                'top'  : e.pageY - mouse.offsetY\n            });\n\n            // mouse position last events\n            mouse.lastX = mouse.nowX;\n            mouse.lastY = mouse.nowY;\n            // mouse position this events\n            mouse.nowX  = e.pageX;\n            mouse.nowY  = e.pageY;\n            // distance mouse moved between events\n            mouse.distX = mouse.nowX - mouse.lastX;\n            mouse.distY = mouse.nowY - mouse.lastY;\n            // direction mouse was moving\n            mouse.lastDirX = mouse.dirX;\n            mouse.lastDirY = mouse.dirY;\n            // direction mouse is now moving (on both axis)\n            mouse.dirX = mouse.distX === 0 ? 0 : mouse.distX > 0 ? 1 : -1;\n            mouse.dirY = mouse.distY === 0 ? 0 : mouse.distY > 0 ? 1 : -1;\n            // axis mouse is now moving on\n            var newAx   = Math.abs(mouse.distX) > Math.abs(mouse.distY) ? 1 : 0;\n\n            // do nothing on first move\n            if (!mouse.moving) {\n                mouse.dirAx  = newAx;\n                mouse.moving = true;\n                return;\n            }\n\n            // calc distance moved on this axis (and direction)\n            if (mouse.dirAx !== newAx) {\n                mouse.distAxX = 0;\n                mouse.distAxY = 0;\n            } else {\n                mouse.distAxX += Math.abs(mouse.distX);\n                if (mouse.dirX !== 0 && mouse.dirX !== mouse.lastDirX) {\n                    mouse.distAxX = 0;\n                }\n                mouse.distAxY += Math.abs(mouse.distY);\n                if (mouse.dirY !== 0 && mouse.dirY !== mouse.lastDirY) {\n                    mouse.distAxY = 0;\n                }\n            }\n            mouse.dirAx = newAx;\n\n            /**\n             * move horizontal\n             */\n            if (mouse.dirAx && mouse.distAxX >= opt.threshold) {\n                // reset move distance on x-axis for new phase\n                mouse.distAxX = 0;\n                prev = this.placeEl.prev(opt.itemNodeName);\n                // increase horizontal level if previous sibling exists and is not collapsed\n                if (mouse.distX > 0 && prev.length && !prev.hasClass(opt.collapsedClass)) {\n                    // cannot increase level when item above is collapsed\n                    list = prev.find(opt.listNodeName).last();\n                    // check if depth limit has reached\n                    depth = this.placeEl.parents(opt.listNodeName).length;\n                    if (depth + this.dragDepth <= opt.maxDepth) {\n                        // create new sub-level if one doesn't exist\n                        if (!list.length) {\n                            list = $('<' + opt.listNodeName + '/>').addClass(opt.listClass);\n                            list.append(this.placeEl);\n                            prev.append(list);\n                            this.setParent(prev);\n                        } else {\n                            // else append to next level up\n                            list = prev.children(opt.listNodeName).last();\n                            list.append(this.placeEl);\n                        }\n                    }\n                }\n                // decrease horizontal level\n                if (mouse.distX < 0) {\n                    // we can't decrease a level if an item preceeds the current one\n                    next = this.placeEl.next(opt.itemNodeName);\n                    if (!next.length) {\n                        parent = this.placeEl.parent();\n                        this.placeEl.closest(opt.itemNodeName).after(this.placeEl);\n                        if (!parent.children().length) {\n                            this.unsetParent(parent.parent());\n                        }\n                    }\n                }\n            }\n\n            var isEmpty = false;\n\n            // find list item under cursor\n            if (!hasPointerEvents) {\n                this.dragEl[0].style.visibility = 'hidden';\n            }\n            this.pointEl = $(document.elementFromPoint(e.pageX - document.body.scrollLeft, e.pageY - (window.pageYOffset || document.documentElement.scrollTop)));\n            if (!hasPointerEvents) {\n                this.dragEl[0].style.visibility = 'visible';\n            }\n            if (this.pointEl.hasClass(opt.handleClass)) {\n                this.pointEl = this.pointEl.parent(opt.itemNodeName);\n            }\n            if (this.pointEl.hasClass(opt.emptyClass)) {\n                isEmpty = true;\n            }\n            else if (!this.pointEl.length || !this.pointEl.hasClass(opt.itemClass)) {\n                return;\n            }\n\n            // find parent list of item under cursor\n            var pointElRoot = this.pointEl.closest('.' + opt.rootClass),\n                isNewRoot   = this.dragRootEl.data('nestable-id') !== pointElRoot.data('nestable-id');\n\n            /**\n             * move vertical\n             */\n            if (!mouse.dirAx || isNewRoot || isEmpty) {\n                // check if groups match if dragging over new root\n                if (isNewRoot && opt.group !== pointElRoot.data('nestable-group')) {\n                    return;\n                }\n                // check depth limit\n                depth = this.dragDepth - 1 + this.pointEl.parents(opt.listNodeName).length;\n                if (depth > opt.maxDepth) {\n                    return;\n                }\n                var before = e.pageY < (this.pointEl.offset().top + this.pointEl.height() / 2);\n                parent = this.placeEl.parent();\n                // if empty create new list to replace empty placeholder\n                if (isEmpty) {\n                    list = $(document.createElement(opt.listNodeName)).addClass(opt.listClass);\n                    list.append(this.placeEl);\n                    this.pointEl.replaceWith(list);\n                }\n                else if (before) {\n                    this.pointEl.before(this.placeEl);\n                }\n                else {\n                    this.pointEl.after(this.placeEl);\n                }\n                if (!parent.children().length) {\n                    this.unsetParent(parent.parent());\n                }\n                if (!this.dragRootEl.find(opt.itemNodeName).length) {\n                    this.dragRootEl.append('<div class=\"' + opt.emptyClass + '\"/>');\n                }\n                // parent root list has changed\n                if (isNewRoot) {\n                    this.dragRootEl = pointElRoot;\n                    this.hasNewRoot = this.el[0] !== this.dragRootEl[0];\n                }\n            }\n        }\n\n    };\n\n    $.fn.nestable = function(params)\n    {\n        var lists  = this,\n            retval = this;\n\n        lists.each(function()\n        {\n            var plugin = $(this).data(\"nestable\");\n\n            if (!plugin) {\n                $(this).data(\"nestable\", new Plugin(this, params));\n                $(this).data(\"nestable-id\", new Date().getTime());\n            } else {\n                if (typeof params === 'string' && typeof plugin[params] === 'function') {\n                    retval = plugin[params]();\n                }\n            }\n        });\n\n        return retval || lists;\n    };\n\n})(window.jQuery || window.Zepto, window, document);\n"
  },
  {
    "path": "public/admin/js/plugins/rickshaw/vendor/d3.v3.js",
    "content": "d3=function(){function n(n){return null!=n&&!isNaN(n)}function t(n){return n.length}function e(n){for(var t=1;n*t%1;)t*=10;return t}function r(n,t){try{for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}catch(r){n.prototype=t}}function u(){}function i(){}function o(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function a(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.substring(1);for(var e=0,r=Do.length;r>e;++e){var u=Do[e]+t;if(u in n)return u}}function c(){}function l(){}function s(n){function t(){for(var t,r=e,u=-1,i=r.length;++u<i;)(t=r[u].on)&&t.apply(this,arguments);return n}var e=[],r=new u;return t.on=function(t,u){var i,o=r.get(t);return arguments.length<2?o&&o.on:(o&&(o.on=null,e=e.slice(0,i=e.indexOf(o)).concat(e.slice(i+1)),r.remove(t)),u&&e.push(r.set(t,{on:u})),n)},t}function f(){mo.event.preventDefault()}function h(){for(var n,t=mo.event;n=t.sourceEvent;)t=n;return t}function g(n){for(var t=new l,e=0,r=arguments.length;++e<r;)t[arguments[e]]=s(t);return t.of=function(e,r){return function(u){try{var i=u.sourceEvent=mo.event;u.target=n,mo.event=u,t[u.type].apply(e,r)}finally{mo.event=i}}},t}function p(n){return Lo(n,Ro),n}function d(n){return\"function\"==typeof n?n:function(){return Ho(n,this)}}function v(n){return\"function\"==typeof n?n:function(){return Fo(n,this)}}function m(n,t){function e(){this.removeAttribute(n)}function r(){this.removeAttributeNS(n.space,n.local)}function u(){this.setAttribute(n,t)}function i(){this.setAttributeNS(n.space,n.local,t)}function o(){var e=t.apply(this,arguments);null==e?this.removeAttribute(n):this.setAttribute(n,e)}function a(){var e=t.apply(this,arguments);null==e?this.removeAttributeNS(n.space,n.local):this.setAttributeNS(n.space,n.local,e)}return n=mo.ns.qualify(n),null==t?n.local?r:e:\"function\"==typeof t?n.local?a:o:n.local?i:u}function y(n){return n.trim().replace(/\\s+/g,\" \")}function M(n){return new RegExp(\"(?:^|\\\\s+)\"+mo.requote(n)+\"(?:\\\\s+|$)\",\"g\")}function x(n,t){function e(){for(var e=-1;++e<u;)n[e](this,t)}function r(){for(var e=-1,r=t.apply(this,arguments);++e<u;)n[e](this,r)}n=n.trim().split(/\\s+/).map(b);var u=n.length;return\"function\"==typeof t?r:e}function b(n){var t=M(n);return function(e,r){if(u=e.classList)return r?u.add(n):u.remove(n);var u=e.getAttribute(\"class\")||\"\";r?(t.lastIndex=0,t.test(u)||e.setAttribute(\"class\",y(u+\" \"+n))):e.setAttribute(\"class\",y(u.replace(t,\" \")))}}function _(n,t,e){function r(){this.style.removeProperty(n)}function u(){this.style.setProperty(n,t,e)}function i(){var r=t.apply(this,arguments);null==r?this.style.removeProperty(n):this.style.setProperty(n,r,e)}return null==t?r:\"function\"==typeof t?i:u}function w(n,t){function e(){delete this[n]}function r(){this[n]=t}function u(){var e=t.apply(this,arguments);null==e?delete this[n]:this[n]=e}return null==t?e:\"function\"==typeof t?u:r}function S(n){return\"function\"==typeof n?n:(n=mo.ns.qualify(n)).local?function(){return xo.createElementNS(n.space,n.local)}:function(){return xo.createElementNS(this.namespaceURI,n)}}function E(n){return{__data__:n}}function k(n){return function(){return Oo(this,n)}}function A(n){return arguments.length||(n=mo.ascending),function(t,e){return t&&e?n(t.__data__,e.__data__):!t-!e}}function N(n,t){for(var e=0,r=n.length;r>e;e++)for(var u,i=n[e],o=0,a=i.length;a>o;o++)(u=i[o])&&t(u,o,e);return n}function T(n){return Lo(n,Io),n}function q(n){var t,e;return function(r,u,i){var o,a=n[i].update,c=a.length;for(i!=e&&(e=i,t=0),u>=t&&(t=u+1);!(o=a[t])&&++t<c;);return o}}function z(){var n=this.__transition__;n&&++n.active}function C(n,t,e){function r(){var t=this[o];t&&(this.removeEventListener(n,t,t.$),delete this[o])}function u(){var u=l(t,Mo(arguments));r.call(this),this.addEventListener(n,this[o]=u,u.$=e),u._=t}function i(){var t,e=new RegExp(\"^__on([^.]+)\"+mo.requote(n)+\"$\");for(var r in this)if(t=r.match(e)){var u=this[r];this.removeEventListener(t[1],u,u.$),delete this[r]}}var o=\"__on\"+n,a=n.indexOf(\".\"),l=D;a>0&&(n=n.substring(0,a));var s=Zo.get(n);return s&&(n=s,l=j),a?t?u:r:t?c:i}function D(n,t){return function(e){var r=mo.event;mo.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{mo.event=r}}}function j(n,t){var e=D(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function L(){var n=\".dragsuppress-\"+ ++Xo,t=\"touchmove\"+n,e=\"selectstart\"+n,r=\"dragstart\"+n,u=\"click\"+n,i=mo.select(_o).on(t,f).on(e,f).on(r,f),o=bo.style,a=o[Vo];return o[Vo]=\"none\",function(t){function e(){i.on(u,null)}i.on(n,null),o[Vo]=a,t&&(i.on(u,function(){f(),e()},!0),setTimeout(e,0))}}function H(n,t){t.changedTouches&&(t=t.changedTouches[0]);var e=n.ownerSVGElement||n;if(e.createSVGPoint){var r=e.createSVGPoint();if(0>$o&&(_o.scrollX||_o.scrollY)){e=mo.select(\"body\").append(\"svg\").style({position:\"absolute\",top:0,left:0,margin:0,padding:0,border:\"none\"},\"important\");var u=e[0][0].getScreenCTM();$o=!(u.f||u.e),e.remove()}return $o?(r.x=t.pageX,r.y=t.pageY):(r.x=t.clientX,r.y=t.clientY),r=r.matrixTransform(n.getScreenCTM().inverse()),[r.x,r.y]}var i=n.getBoundingClientRect();return[t.clientX-i.left-n.clientLeft,t.clientY-i.top-n.clientTop]}function F(n){return n>0?1:0>n?-1:0}function P(n){return n>1?0:-1>n?Bo:Math.acos(n)}function O(n){return n>1?Jo:-1>n?-Jo:Math.asin(n)}function R(n){return((n=Math.exp(n))-1/n)/2}function Y(n){return((n=Math.exp(n))+1/n)/2}function I(n){return((n=Math.exp(2*n))-1)/(n+1)}function U(n){return(n=Math.sin(n/2))*n}function Z(){}function V(n,t,e){return new X(n,t,e)}function X(n,t,e){this.h=n,this.s=t,this.l=e}function $(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?i+(o-i)*n/60:180>n?o:240>n?i+(o-i)*(240-n)/60:i}function u(n){return Math.round(255*r(n))}var i,o;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,o=.5>=e?e*(1+t):e+t-e*t,i=2*e-o,ot(u(n+120),u(n),u(n-120))}function B(n,t,e){return new W(n,t,e)}function W(n,t,e){this.h=n,this.c=t,this.l=e}function J(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),G(e,Math.cos(n*=Qo)*t,Math.sin(n)*t)}function G(n,t,e){return new K(n,t,e)}function K(n,t,e){this.l=n,this.a=t,this.b=e}function Q(n,t,e){var r=(n+16)/116,u=r+t/500,i=r-e/200;return u=tt(u)*sa,r=tt(r)*fa,i=tt(i)*ha,ot(rt(3.2404542*u-1.5371385*r-.4985314*i),rt(-.969266*u+1.8760108*r+.041556*i),rt(.0556434*u-.2040259*r+1.0572252*i))}function nt(n,t,e){return n>0?B(Math.atan2(e,t)*na,Math.sqrt(t*t+e*e),n):B(0/0,0/0,n)}function tt(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function et(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function rt(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function ut(n){return ot(n>>16,255&n>>8,255&n)}function it(n){return ut(n)+\"\"}function ot(n,t,e){return new at(n,t,e)}function at(n,t,e){this.r=n,this.g=t,this.b=e}function ct(n){return 16>n?\"0\"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function lt(n,t,e){var r,u,i,o=0,a=0,c=0;if(r=/([a-z]+)\\((.*)\\)/i.exec(n))switch(u=r[2].split(\",\"),r[1]){case\"hsl\":return e(parseFloat(u[0]),parseFloat(u[1])/100,parseFloat(u[2])/100);case\"rgb\":return t(gt(u[0]),gt(u[1]),gt(u[2]))}return(i=da.get(n))?t(i.r,i.g,i.b):(null!=n&&\"#\"===n.charAt(0)&&(4===n.length?(o=n.charAt(1),o+=o,a=n.charAt(2),a+=a,c=n.charAt(3),c+=c):7===n.length&&(o=n.substring(1,3),a=n.substring(3,5),c=n.substring(5,7)),o=parseInt(o,16),a=parseInt(a,16),c=parseInt(c,16)),t(o,a,c))}function st(n,t,e){var r,u,i=Math.min(n/=255,t/=255,e/=255),o=Math.max(n,t,e),a=o-i,c=(o+i)/2;return a?(u=.5>c?a/(o+i):a/(2-o-i),r=n==o?(t-e)/a+(e>t?6:0):t==o?(e-n)/a+2:(n-t)/a+4,r*=60):(r=0/0,u=c>0&&1>c?0:r),V(r,u,c)}function ft(n,t,e){n=ht(n),t=ht(t),e=ht(e);var r=et((.4124564*n+.3575761*t+.1804375*e)/sa),u=et((.2126729*n+.7151522*t+.072175*e)/fa),i=et((.0193339*n+.119192*t+.9503041*e)/ha);return G(116*u-16,500*(r-u),200*(u-i))}function ht(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function gt(n){var t=parseFloat(n);return\"%\"===n.charAt(n.length-1)?Math.round(2.55*t):t}function pt(n){return\"function\"==typeof n?n:function(){return n}}function dt(n){return n}function vt(n){return function(t,e,r){return 2===arguments.length&&\"function\"==typeof e&&(r=e,e=null),mt(t,e,n,r)}}function mt(n,t,e,r){function u(){var n,t=c.status;if(!t&&c.responseText||t>=200&&300>t||304===t){try{n=e.call(i,c)}catch(r){return o.error.call(i,r),void 0}o.load.call(i,n)}else o.error.call(i,c)}var i={},o=mo.dispatch(\"beforesend\",\"progress\",\"load\",\"error\"),a={},c=new XMLHttpRequest,l=null;return!_o.XDomainRequest||\"withCredentials\"in c||!/^(http(s)?:)?\\/\\//.test(n)||(c=new XDomainRequest),\"onload\"in c?c.onload=c.onerror=u:c.onreadystatechange=function(){c.readyState>3&&u()},c.onprogress=function(n){var t=mo.event;mo.event=n;try{o.progress.call(i,c)}finally{mo.event=t}},i.header=function(n,t){return n=(n+\"\").toLowerCase(),arguments.length<2?a[n]:(null==t?delete a[n]:a[n]=t+\"\",i)},i.mimeType=function(n){return arguments.length?(t=null==n?null:n+\"\",i):t},i.responseType=function(n){return arguments.length?(l=n,i):l},i.response=function(n){return e=n,i},[\"get\",\"post\"].forEach(function(n){i[n]=function(){return i.send.apply(i,[n].concat(Mo(arguments)))}}),i.send=function(e,r,u){if(2===arguments.length&&\"function\"==typeof r&&(u=r,r=null),c.open(e,n,!0),null==t||\"accept\"in a||(a.accept=t+\",*/*\"),c.setRequestHeader)for(var s in a)c.setRequestHeader(s,a[s]);return null!=t&&c.overrideMimeType&&c.overrideMimeType(t),null!=l&&(c.responseType=l),null!=u&&i.on(\"error\",u).on(\"load\",function(n){u(null,n)}),o.beforesend.call(i,c),c.send(null==r?null:r),i},i.abort=function(){return c.abort(),i},mo.rebind(i,o,\"on\"),null==r?i:i.get(yt(r))}function yt(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Mt(){var n=bt(),t=_t()-n;t>24?(isFinite(t)&&(clearTimeout(Ma),Ma=setTimeout(Mt,t)),ya=0):(ya=1,ba(Mt))}function xt(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now()),xa.callback=n,xa.time=e+t}function bt(){var n=Date.now();for(xa=va;xa;)n>=xa.time&&(xa.flush=xa.callback(n-xa.time)),xa=xa.next;return n}function _t(){for(var n,t=va,e=1/0;t;)t.flush?t=n?n.next=t.next:va=t.next:(t.time<e&&(e=t.time),t=(n=t).next);return ma=n,e}function wt(n,t){var e=Math.pow(10,3*Math.abs(8-t));return{scale:t>8?function(n){return n/e}:function(n){return n*e},symbol:n}}function St(n,t){return t-(n?Math.ceil(Math.log(n)/Math.LN10):1)}function Et(n){return n+\"\"}function kt(){}function At(n,t,e){var r=e.s=n+t,u=r-n,i=r-u;e.t=n-i+(t-u)}function Nt(n,t){n&&Da.hasOwnProperty(n.type)&&Da[n.type](n,t)}function Tt(n,t,e){var r,u=-1,i=n.length-e;for(t.lineStart();++u<i;)r=n[u],t.point(r[0],r[1],r[2]);t.lineEnd()}function qt(n,t){var e=-1,r=n.length;for(t.polygonStart();++e<r;)Tt(n[e],t,1);t.polygonEnd()}function zt(){function n(n,t){n*=Qo,t=t*Qo/2+Bo/4;var e=n-r,o=Math.cos(t),a=Math.sin(t),c=i*a,l=u*o+c*Math.cos(e),s=c*Math.sin(e);La.add(Math.atan2(s,l)),r=n,u=o,i=a}var t,e,r,u,i;Ha.point=function(o,a){Ha.point=n,r=(t=o)*Qo,u=Math.cos(a=(e=a)*Qo/2+Bo/4),i=Math.sin(a)},Ha.lineEnd=function(){n(t,e)}}function Ct(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function Dt(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function jt(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function Lt(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function Ht(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function Ft(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function Pt(n){return[Math.atan2(n[1],n[0]),O(n[2])]}function Ot(n,t){return Math.abs(n[0]-t[0])<Go&&Math.abs(n[1]-t[1])<Go}function Rt(n,t){n*=Qo;var e=Math.cos(t*=Qo);Yt(e*Math.cos(n),e*Math.sin(n),Math.sin(t))}function Yt(n,t,e){++Fa,Oa+=(n-Oa)/Fa,Ra+=(t-Ra)/Fa,Ya+=(e-Ya)/Fa}function It(){function n(n,u){n*=Qo;var i=Math.cos(u*=Qo),o=i*Math.cos(n),a=i*Math.sin(n),c=Math.sin(u),l=Math.atan2(Math.sqrt((l=e*c-r*a)*l+(l=r*o-t*c)*l+(l=t*a-e*o)*l),t*o+e*a+r*c);Pa+=l,Ia+=l*(t+(t=o)),Ua+=l*(e+(e=a)),Za+=l*(r+(r=c)),Yt(t,e,r)}var t,e,r;Ba.point=function(u,i){u*=Qo;var o=Math.cos(i*=Qo);t=o*Math.cos(u),e=o*Math.sin(u),r=Math.sin(i),Ba.point=n,Yt(t,e,r)}}function Ut(){Ba.point=Rt}function Zt(){function n(n,t){n*=Qo;var e=Math.cos(t*=Qo),o=e*Math.cos(n),a=e*Math.sin(n),c=Math.sin(t),l=u*c-i*a,s=i*o-r*c,f=r*a-u*o,h=Math.sqrt(l*l+s*s+f*f),g=r*o+u*a+i*c,p=h&&-P(g)/h,d=Math.atan2(h,g);Va+=p*l,Xa+=p*s,$a+=p*f,Pa+=d,Ia+=d*(r+(r=o)),Ua+=d*(u+(u=a)),Za+=d*(i+(i=c)),Yt(r,u,i)}var t,e,r,u,i;Ba.point=function(o,a){t=o,e=a,Ba.point=n,o*=Qo;var c=Math.cos(a*=Qo);r=c*Math.cos(o),u=c*Math.sin(o),i=Math.sin(a),Yt(r,u,i)},Ba.lineEnd=function(){n(t,e),Ba.lineEnd=Ut,Ba.point=Rt}}function Vt(){return!0}function Xt(n,t,e,r,u){var i=[],o=[];if(n.forEach(function(n){if(!((t=n.length-1)<=0)){var t,e=n[0],r=n[t];if(Ot(e,r)){u.lineStart();for(var a=0;t>a;++a)u.point((e=n[a])[0],e[1]);return u.lineEnd(),void 0}var c={point:e,points:n,other:null,visited:!1,entry:!0,subject:!0},l={point:e,points:[e],other:c,visited:!1,entry:!1,subject:!1};c.other=l,i.push(c),o.push(l),c={point:r,points:[r],other:null,visited:!1,entry:!1,subject:!0},l={point:r,points:[r],other:c,visited:!1,entry:!0,subject:!1},c.other=l,i.push(c),o.push(l)}}),o.sort(t),$t(i),$t(o),i.length){for(var a=0,c=e,l=o.length;l>a;++a)o[a].entry=c=!c;for(var s,f,h,g=i[0];;){for(s=g;s.visited;)if((s=s.next)===g)return;f=s.points,u.lineStart();do{if(s.visited=s.other.visited=!0,s.entry){if(s.subject)for(var a=0;a<f.length;a++)u.point((h=f[a])[0],h[1]);else r(s.point,s.next.point,1,u);s=s.next}else{if(s.subject){f=s.prev.points;for(var a=f.length;--a>=0;)u.point((h=f[a])[0],h[1])}else r(s.point,s.prev.point,-1,u);s=s.prev}s=s.other,f=s.points}while(!s.visited);u.lineEnd()}}}function $t(n){if(t=n.length){for(var t,e,r=0,u=n[0];++r<t;)u.next=e=n[r],e.prev=u,u=e;u.next=e=n[0],e.prev=u}}function Bt(n,t,e,r){return function(u,i){function o(t,e){var r=u(t,e);n(t=r[0],e=r[1])&&i.point(t,e)}function a(n,t){var e=u(n,t);v.point(e[0],e[1])}function c(){y.point=a,v.lineStart()}function l(){y.point=o,v.lineEnd()}function s(n,t){d.push([n,t]);var e=u(n,t);x.point(e[0],e[1])}function f(){x.lineStart(),d=[]}function h(){s(d[0][0],d[0][1]),x.lineEnd();var n,t=x.clean(),e=M.buffer(),r=e.length;if(d.pop(),p.push(d),d=null,r){if(1&t){n=e[0];var u,r=n.length-1,o=-1;for(i.lineStart();++o<r;)i.point((u=n[o])[0],u[1]);return i.lineEnd(),void 0}r>1&&2&t&&e.push(e.pop().concat(e.shift())),g.push(e.filter(Wt))}}var g,p,d,v=t(i),m=u.invert(r[0],r[1]),y={point:o,lineStart:c,lineEnd:l,polygonStart:function(){y.point=s,y.lineStart=f,y.lineEnd=h,g=[],p=[],i.polygonStart()},polygonEnd:function(){y.point=o,y.lineStart=c,y.lineEnd=l,g=mo.merge(g);var n=Kt(m,p);g.length?Xt(g,Gt,n,e,i):n&&(i.lineStart(),e(null,null,1,i),i.lineEnd()),i.polygonEnd(),g=p=null},sphere:function(){i.polygonStart(),i.lineStart(),e(null,null,1,i),i.lineEnd(),i.polygonEnd()}},M=Jt(),x=t(M);return y}}function Wt(n){return n.length>1}function Jt(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:c,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function Gt(n,t){return((n=n.point)[0]<0?n[1]-Jo-Go:Jo-n[1])-((t=t.point)[0]<0?t[1]-Jo-Go:Jo-t[1])}function Kt(n,t){var e=n[0],r=n[1],u=[Math.sin(e),-Math.cos(e),0],i=0,o=0;La.reset();for(var a=0,c=t.length;c>a;++a){var l=t[a],s=l.length;if(s)for(var f=l[0],h=f[0],g=f[1]/2+Bo/4,p=Math.sin(g),d=Math.cos(g),v=1;;){v===s&&(v=0),n=l[v];var m=n[0],y=n[1]/2+Bo/4,M=Math.sin(y),x=Math.cos(y),b=m-h,_=Math.abs(b)>Bo,w=p*M;if(La.add(Math.atan2(w*Math.sin(b),d*x+w*Math.cos(b))),i+=_?b+(b>=0?2:-2)*Bo:b,_^h>=e^m>=e){var S=jt(Ct(f),Ct(n));Ft(S);var E=jt(u,S);Ft(E);var k=(_^b>=0?-1:1)*O(E[2]);(r>k||r===k&&(S[0]||S[1]))&&(o+=_^b>=0?1:-1)}if(!v++)break;h=m,p=M,d=x,f=n}}return(-Go>i||Go>i&&0>La)^1&o}function Qt(n){var t,e=0/0,r=0/0,u=0/0;return{lineStart:function(){n.lineStart(),t=1},point:function(i,o){var a=i>0?Bo:-Bo,c=Math.abs(i-e);Math.abs(c-Bo)<Go?(n.point(e,r=(r+o)/2>0?Jo:-Jo),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),n.point(i,r),t=0):u!==a&&c>=Bo&&(Math.abs(e-u)<Go&&(e-=u*Go),Math.abs(i-a)<Go&&(i-=a*Go),r=ne(e,r,i,o),n.point(u,r),n.lineEnd(),n.lineStart(),n.point(a,r),t=0),n.point(e=i,r=o),u=a},lineEnd:function(){n.lineEnd(),e=r=0/0},clean:function(){return 2-t}}}function ne(n,t,e,r){var u,i,o=Math.sin(n-e);return Math.abs(o)>Go?Math.atan((Math.sin(t)*(i=Math.cos(r))*Math.sin(e)-Math.sin(r)*(u=Math.cos(t))*Math.sin(n))/(u*i*o)):(t+r)/2}function te(n,t,e,r){var u;if(null==n)u=e*Jo,r.point(-Bo,u),r.point(0,u),r.point(Bo,u),r.point(Bo,0),r.point(Bo,-u),r.point(0,-u),r.point(-Bo,-u),r.point(-Bo,0),r.point(-Bo,u);else if(Math.abs(n[0]-t[0])>Go){var i=(n[0]<t[0]?1:-1)*Bo;u=e*i/2,r.point(-i,u),r.point(0,u),r.point(i,u)}else r.point(t[0],t[1])}function ee(n){function t(n,t){return Math.cos(n)*Math.cos(t)>i}function e(n){var e,i,c,l,s;return{lineStart:function(){l=c=!1,s=1},point:function(f,h){var g,p=[f,h],d=t(f,h),v=o?d?0:u(f,h):d?u(f+(0>f?Bo:-Bo),h):0;if(!e&&(l=c=d)&&n.lineStart(),d!==c&&(g=r(e,p),(Ot(e,g)||Ot(p,g))&&(p[0]+=Go,p[1]+=Go,d=t(p[0],p[1]))),d!==c)s=0,d?(n.lineStart(),g=r(p,e),n.point(g[0],g[1])):(g=r(e,p),n.point(g[0],g[1]),n.lineEnd()),e=g;else if(a&&e&&o^d){var m;v&i||!(m=r(p,e,!0))||(s=0,o?(n.lineStart(),n.point(m[0][0],m[0][1]),n.point(m[1][0],m[1][1]),n.lineEnd()):(n.point(m[1][0],m[1][1]),n.lineEnd(),n.lineStart(),n.point(m[0][0],m[0][1])))}!d||e&&Ot(e,p)||n.point(p[0],p[1]),e=p,c=d,i=v},lineEnd:function(){c&&n.lineEnd(),e=null},clean:function(){return s|(l&&c)<<1}}}function r(n,t,e){var r=Ct(n),u=Ct(t),o=[1,0,0],a=jt(r,u),c=Dt(a,a),l=a[0],s=c-l*l;if(!s)return!e&&n;var f=i*c/s,h=-i*l/s,g=jt(o,a),p=Ht(o,f),d=Ht(a,h);Lt(p,d);var v=g,m=Dt(p,v),y=Dt(v,v),M=m*m-y*(Dt(p,p)-1);if(!(0>M)){var x=Math.sqrt(M),b=Ht(v,(-m-x)/y);if(Lt(b,p),b=Pt(b),!e)return b;var _,w=n[0],S=t[0],E=n[1],k=t[1];w>S&&(_=w,w=S,S=_);var A=S-w,N=Math.abs(A-Bo)<Go,T=N||Go>A;if(!N&&E>k&&(_=E,E=k,k=_),T?N?E+k>0^b[1]<(Math.abs(b[0]-w)<Go?E:k):E<=b[1]&&b[1]<=k:A>Bo^(w<=b[0]&&b[0]<=S)){var q=Ht(v,(-m+x)/y);return Lt(q,p),[b,Pt(q)]}}}function u(t,e){var r=o?n:Bo-n,u=0;return-r>t?u|=1:t>r&&(u|=2),-r>e?u|=4:e>r&&(u|=8),u}var i=Math.cos(n),o=i>0,a=Math.abs(i)>Go,c=Te(n,6*Qo);return Bt(t,e,c,o?[0,-n]:[-Bo,n-Bo])}function re(n,t,e,r){function u(r,u){return Math.abs(r[0]-n)<Go?u>0?0:3:Math.abs(r[0]-e)<Go?u>0?2:1:Math.abs(r[1]-t)<Go?u>0?1:0:u>0?3:2}function i(n,t){return o(n.point,t.point)}function o(n,t){var e=u(n,1),r=u(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}function a(u,i){var o=i[0]-u[0],a=i[1]-u[1],c=[0,1];return Math.abs(o)<Go&&Math.abs(a)<Go?n<=u[0]&&u[0]<=e&&t<=u[1]&&u[1]<=r:ue(n-u[0],o,c)&&ue(u[0]-e,-o,c)&&ue(t-u[1],a,c)&&ue(u[1]-r,-a,c)?(c[1]<1&&(i[0]=u[0]+c[1]*o,i[1]=u[1]+c[1]*a),c[0]>0&&(u[0]+=c[0]*o,u[1]+=c[0]*a),!0):!1}return function(c){function l(n){for(var t=0,e=y.length,r=n[1],u=0;e>u;++u)for(var i,o=1,a=y[u],c=a.length,l=a[0];c>o;++o)i=a[o],l[1]<=r?i[1]>r&&s(l,i,n)>0&&++t:i[1]<=r&&s(l,i,n)<0&&--t,l=i;return 0!==t}function s(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(e[0]-n[0])*(t[1]-n[1])}function f(i,a,c,l){var s=0,f=0;if(null==i||(s=u(i,c))!==(f=u(a,c))||o(i,a)<0^c>0){do l.point(0===s||3===s?n:e,s>1?r:t);while((s=(s+c+4)%4)!==f)}else l.point(a[0],a[1])}function h(u,i){return u>=n&&e>=u&&i>=t&&r>=i}function g(n,t){h(n,t)&&c.point(n,t)}function p(){q.point=v,y&&y.push(M=[]),k=!0,E=!1,w=S=0/0}function d(){m&&(v(x,b),_&&E&&T.rejoin(),m.push(T.buffer())),q.point=g,E&&c.lineEnd()}function v(n,t){n=Math.max(-Ja,Math.min(Ja,n)),t=Math.max(-Ja,Math.min(Ja,t));var e=h(n,t);if(y&&M.push([n,t]),k)x=n,b=t,_=e,k=!1,e&&(c.lineStart(),c.point(n,t));else if(e&&E)c.point(n,t);else{var r=[w,S],u=[n,t];a(r,u)?(E||(c.lineStart(),c.point(r[0],r[1])),c.point(u[0],u[1]),e||c.lineEnd(),A=!1):e&&(c.lineStart(),c.point(n,t),A=!1)}w=n,S=t,E=e}var m,y,M,x,b,_,w,S,E,k,A,N=c,T=Jt(),q={point:g,lineStart:p,lineEnd:d,polygonStart:function(){c=T,m=[],y=[],A=!0},polygonEnd:function(){c=N,m=mo.merge(m);var t=l([n,r]),e=A&&t,u=m.length;(e||u)&&(c.polygonStart(),e&&(c.lineStart(),f(null,null,1,c),c.lineEnd()),u&&Xt(m,i,t,f,c),c.polygonEnd()),m=y=M=null}};return q}}function ue(n,t,e){if(Math.abs(t)<Go)return 0>=n;var r=n/t;if(t>0){if(r>e[1])return!1;r>e[0]&&(e[0]=r)}else{if(r<e[0])return!1;r<e[1]&&(e[1]=r)}return!0}function ie(n,t){function e(e,r){return e=n(e,r),t(e[0],e[1])}return n.invert&&t.invert&&(e.invert=function(e,r){return e=t.invert(e,r),e&&n.invert(e[0],e[1])}),e}function oe(n){var t=0,e=Bo/3,r=be(n),u=r(t,e);return u.parallels=function(n){return arguments.length?r(t=n[0]*Bo/180,e=n[1]*Bo/180):[180*(t/Bo),180*(e/Bo)]},u}function ae(n,t){function e(n,t){var e=Math.sqrt(i-2*u*Math.sin(t))/u;return[e*Math.sin(n*=u),o-e*Math.cos(n)]}var r=Math.sin(n),u=(r+Math.sin(t))/2,i=1+r*(2*u-r),o=Math.sqrt(i)/u;return e.invert=function(n,t){var e=o-t;return[Math.atan2(n,e)/u,O((i-(n*n+e*e)*u*u)/(2*u))]},e}function ce(){function n(n,t){Ka+=u*n-r*t,r=n,u=t}var t,e,r,u;rc.point=function(i,o){rc.point=n,t=r=i,e=u=o},rc.lineEnd=function(){n(t,e)}}function le(n,t){Qa>n&&(Qa=n),n>tc&&(tc=n),nc>t&&(nc=t),t>ec&&(ec=t)}function se(){function n(n,t){o.push(\"M\",n,\",\",t,i)}function t(n,t){o.push(\"M\",n,\",\",t),a.point=e}function e(n,t){o.push(\"L\",n,\",\",t)}function r(){a.point=n}function u(){o.push(\"Z\")}var i=fe(4.5),o=[],a={point:n,lineStart:function(){a.point=t},lineEnd:r,polygonStart:function(){a.lineEnd=u},polygonEnd:function(){a.lineEnd=r,a.point=n},pointRadius:function(n){return i=fe(n),a},result:function(){if(o.length){var n=o.join(\"\");return o=[],n}}};return a}function fe(n){return\"m0,\"+n+\"a\"+n+\",\"+n+\" 0 1,1 0,\"+-2*n+\"a\"+n+\",\"+n+\" 0 1,1 0,\"+2*n+\"z\"}function he(n,t){Oa+=n,Ra+=t,++Ya}function ge(){function n(n,r){var u=n-t,i=r-e,o=Math.sqrt(u*u+i*i);Ia+=o*(t+n)/2,Ua+=o*(e+r)/2,Za+=o,he(t=n,e=r)}var t,e;ic.point=function(r,u){ic.point=n,he(t=r,e=u)}}function pe(){ic.point=he}function de(){function n(n,t){var e=n-r,i=t-u,o=Math.sqrt(e*e+i*i);Ia+=o*(r+n)/2,Ua+=o*(u+t)/2,Za+=o,o=u*n-r*t,Va+=o*(r+n),Xa+=o*(u+t),$a+=3*o,he(r=n,u=t)}var t,e,r,u;ic.point=function(i,o){ic.point=n,he(t=r=i,e=u=o)},ic.lineEnd=function(){n(t,e)}}function ve(n){function t(t,e){n.moveTo(t,e),n.arc(t,e,o,0,Wo)}function e(t,e){n.moveTo(t,e),a.point=r}function r(t,e){n.lineTo(t,e)}function u(){a.point=t}function i(){n.closePath()}var o=4.5,a={point:t,lineStart:function(){a.point=e},lineEnd:u,polygonStart:function(){a.lineEnd=i},polygonEnd:function(){a.lineEnd=u,a.point=t},pointRadius:function(n){return o=n,a},result:c};return a}function me(n){function t(t){function r(e,r){e=n(e,r),t.point(e[0],e[1])}function u(){M=0/0,S.point=o,t.lineStart()}function o(r,u){var o=Ct([r,u]),a=n(r,u);e(M,x,y,b,_,w,M=a[0],x=a[1],y=r,b=o[0],_=o[1],w=o[2],i,t),t.point(M,x)}function a(){S.point=r,t.lineEnd()}function c(){u(),S.point=l,S.lineEnd=s}function l(n,t){o(f=n,h=t),g=M,p=x,d=b,v=_,m=w,S.point=o}function s(){e(M,x,y,b,_,w,g,p,f,d,v,m,i,t),S.lineEnd=a,a()}var f,h,g,p,d,v,m,y,M,x,b,_,w,S={point:r,lineStart:u,lineEnd:a,polygonStart:function(){t.polygonStart(),S.lineStart=c},polygonEnd:function(){t.polygonEnd(),S.lineStart=u}};return S}function e(t,i,o,a,c,l,s,f,h,g,p,d,v,m){var y=s-t,M=f-i,x=y*y+M*M;if(x>4*r&&v--){var b=a+g,_=c+p,w=l+d,S=Math.sqrt(b*b+_*_+w*w),E=Math.asin(w/=S),k=Math.abs(Math.abs(w)-1)<Go?(o+h)/2:Math.atan2(_,b),A=n(k,E),N=A[0],T=A[1],q=N-t,z=T-i,C=M*q-y*z;(C*C/x>r||Math.abs((y*q+M*z)/x-.5)>.3||u>a*g+c*p+l*d)&&(e(t,i,o,a,c,l,N,T,k,b/=S,_/=S,w,v,m),m.point(N,T),e(N,T,k,b,_,w,s,f,h,g,p,d,v,m))}}var r=.5,u=Math.cos(30*Qo),i=16;return t.precision=function(n){return arguments.length?(i=(r=n*n)>0&&16,t):Math.sqrt(r)},t}function ye(n){this.stream=n}function Me(n){var t=me(function(t,e){return n([t*na,e*na])});return function(n){var e=new ye(n=t(n));return e.point=function(t,e){n.point(t*Qo,e*Qo)},e}}function xe(n){return be(function(){return n})()}function be(n){function t(n){return n=a(n[0]*Qo,n[1]*Qo),[n[0]*h+c,l-n[1]*h]}function e(n){return n=a.invert((n[0]-c)/h,(l-n[1])/h),n&&[n[0]*na,n[1]*na]}function r(){a=ie(o=Ee(m,y,M),i);var n=i(d,v);return c=g-n[0]*h,l=p+n[1]*h,u()}function u(){return s&&(s.valid=!1,s=null),t}var i,o,a,c,l,s,f=me(function(n,t){return n=i(n,t),[n[0]*h+c,l-n[1]*h]}),h=150,g=480,p=250,d=0,v=0,m=0,y=0,M=0,x=Wa,b=dt,_=null,w=null;return t.stream=function(n){return s&&(s.valid=!1),s=_e(x(o,f(b(n)))),s.valid=!0,s},t.clipAngle=function(n){return arguments.length?(x=null==n?(_=n,Wa):ee((_=+n)*Qo),u()):_},t.clipExtent=function(n){return arguments.length?(w=n,b=n?re(n[0][0],n[0][1],n[1][0],n[1][1]):dt,u()):w},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(g=+n[0],p=+n[1],r()):[g,p]},t.center=function(n){return arguments.length?(d=n[0]%360*Qo,v=n[1]%360*Qo,r()):[d*na,v*na]},t.rotate=function(n){return arguments.length?(m=n[0]%360*Qo,y=n[1]%360*Qo,M=n.length>2?n[2]%360*Qo:0,r()):[m*na,y*na,M*na]},mo.rebind(t,f,\"precision\"),function(){return i=n.apply(this,arguments),t.invert=i.invert&&e,r()}}function _e(n){var t=new ye(n);return t.point=function(t,e){n.point(t*Qo,e*Qo)},t}function we(n,t){return[n,t]}function Se(n,t){return[n>Bo?n-Wo:-Bo>n?n+Wo:n,t]}function Ee(n,t,e){return n?t||e?ie(Ae(n),Ne(t,e)):Ae(n):t||e?Ne(t,e):Se}function ke(n){return function(t,e){return t+=n,[t>Bo?t-Wo:-Bo>t?t+Wo:t,e]}}function Ae(n){var t=ke(n);return t.invert=ke(-n),t}function Ne(n,t){function e(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,l=Math.sin(t),s=l*r+a*u;return[Math.atan2(c*i-s*o,a*r-l*u),O(s*i+c*o)]}var r=Math.cos(n),u=Math.sin(n),i=Math.cos(t),o=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),a=Math.cos(n)*e,c=Math.sin(n)*e,l=Math.sin(t),s=l*i-c*o;return[Math.atan2(c*i+l*o,a*r+s*u),O(s*r-a*u)]},e}function Te(n,t){var e=Math.cos(n),r=Math.sin(n);return function(u,i,o,a){var c=o*t;null!=u?(u=qe(e,u),i=qe(e,i),(o>0?i>u:u>i)&&(u+=o*Wo)):(u=n+o*Wo,i=n-.5*c);for(var l,s=u;o>0?s>i:i>s;s-=c)a.point((l=Pt([e,-r*Math.cos(s),-r*Math.sin(s)]))[0],l[1])}}function qe(n,t){var e=Ct(t);e[0]-=n,Ft(e);var r=P(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-Go)%(2*Math.PI)}function ze(n,t,e){var r=mo.range(n,t-Go,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function Ce(n,t,e){var r=mo.range(n,t-Go,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function De(n){return n.source}function je(n){return n.target}function Le(n,t,e,r){var u=Math.cos(t),i=Math.sin(t),o=Math.cos(r),a=Math.sin(r),c=u*Math.cos(n),l=u*Math.sin(n),s=o*Math.cos(e),f=o*Math.sin(e),h=2*Math.asin(Math.sqrt(U(r-t)+u*o*U(e-n))),g=1/Math.sin(h),p=h?function(n){var t=Math.sin(n*=h)*g,e=Math.sin(h-n)*g,r=e*c+t*s,u=e*l+t*f,o=e*i+t*a;return[Math.atan2(u,r)*na,Math.atan2(o,Math.sqrt(r*r+u*u))*na]}:function(){return[n*na,t*na]};return p.distance=h,p}function He(){function n(n,u){var i=Math.sin(u*=Qo),o=Math.cos(u),a=Math.abs((n*=Qo)-t),c=Math.cos(a);oc+=Math.atan2(Math.sqrt((a=o*Math.sin(a))*a+(a=r*i-e*o*c)*a),e*i+r*o*c),t=n,e=i,r=o}var t,e,r;ac.point=function(u,i){t=u*Qo,e=Math.sin(i*=Qo),r=Math.cos(i),ac.point=n},ac.lineEnd=function(){ac.point=ac.lineEnd=c}}function Fe(n,t){function e(t,e){var r=Math.cos(t),u=Math.cos(e),i=n(r*u);return[i*u*Math.sin(t),i*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),u=t(r),i=Math.sin(u),o=Math.cos(u);return[Math.atan2(n*i,r*o),Math.asin(r&&e*i/r)]},e}function Pe(n,t){function e(n,t){var e=Math.abs(Math.abs(t)-Jo)<Go?0:o/Math.pow(u(t),i);return[e*Math.sin(i*n),o-e*Math.cos(i*n)]}var r=Math.cos(n),u=function(n){return Math.tan(Bo/4+n/2)},i=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(u(t)/u(n)),o=r*Math.pow(u(n),i)/i;return i?(e.invert=function(n,t){var e=o-t,r=F(i)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/i,2*Math.atan(Math.pow(o/r,1/i))-Jo]},e):Re}function Oe(n,t){function e(n,t){var e=i-t;return[e*Math.sin(u*n),i-e*Math.cos(u*n)]}var r=Math.cos(n),u=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),i=r/u+n;return Math.abs(u)<Go?we:(e.invert=function(n,t){var e=i-t;return[Math.atan2(n,e)/u,i-F(u)*Math.sqrt(n*n+e*e)]},e)}function Re(n,t){return[n,Math.log(Math.tan(Bo/4+t/2))]}function Ye(n){var t,e=xe(n),r=e.scale,u=e.translate,i=e.clipExtent;return e.scale=function(){var n=r.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.translate=function(){var n=u.apply(e,arguments);return n===e?t?e.clipExtent(null):e:n},e.clipExtent=function(n){var o=i.apply(e,arguments);if(o===e){if(t=null==n){var a=Bo*r(),c=u();i([[c[0]-a,c[1]-a],[c[0]+a,c[1]+a]])}}else t&&(o=null);return o},e.clipExtent(null)}function Ie(n,t){var e=Math.cos(t)*Math.sin(n);return[Math.log((1+e)/(1-e))/2,Math.atan2(Math.tan(t),Math.cos(n))]}function Ue(n){function t(t){function o(){l.push(\"M\",i(n(s),a))}for(var c,l=[],s=[],f=-1,h=t.length,g=pt(e),p=pt(r);++f<h;)u.call(this,c=t[f],f)?s.push([+g.call(this,c,f),+p.call(this,c,f)]):s.length&&(o(),s=[]);return s.length&&o(),l.length?l.join(\"\"):null}var e=Ze,r=Ve,u=Vt,i=Xe,o=i.key,a=.7;return t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.defined=function(n){return arguments.length?(u=n,t):u},t.interpolate=function(n){return arguments.length?(o=\"function\"==typeof n?i=n:(i=gc.get(n)||Xe).key,t):o},t.tension=function(n){return arguments.length?(a=n,t):a},t}function Ze(n){return n[0]}function Ve(n){return n[1]}function Xe(n){return n.join(\"L\")}function $e(n){return Xe(n)+\"Z\"}function Be(n){for(var t=0,e=n.length,r=n[0],u=[r[0],\",\",r[1]];++t<e;)u.push(\"H\",(r[0]+(r=n[t])[0])/2,\"V\",r[1]);return e>1&&u.push(\"H\",r[0]),u.join(\"\")}function We(n){for(var t=0,e=n.length,r=n[0],u=[r[0],\",\",r[1]];++t<e;)u.push(\"V\",(r=n[t])[1],\"H\",r[0]);return u.join(\"\")}function Je(n){for(var t=0,e=n.length,r=n[0],u=[r[0],\",\",r[1]];++t<e;)u.push(\"H\",(r=n[t])[0],\"V\",r[1]);return u.join(\"\")}function Ge(n,t){return n.length<4?Xe(n):n[1]+nr(n.slice(1,n.length-1),tr(n,t))}function Ke(n,t){return n.length<3?Xe(n):n[0]+nr((n.push(n[0]),n),tr([n[n.length-2]].concat(n,[n[1]]),t))}function Qe(n,t){return n.length<3?Xe(n):n[0]+nr(n,tr(n,t))}function nr(n,t){if(t.length<1||n.length!=t.length&&n.length!=t.length+2)return Xe(n);var e=n.length!=t.length,r=\"\",u=n[0],i=n[1],o=t[0],a=o,c=1;if(e&&(r+=\"Q\"+(i[0]-2*o[0]/3)+\",\"+(i[1]-2*o[1]/3)+\",\"+i[0]+\",\"+i[1],u=n[1],c=2),t.length>1){a=t[1],i=n[c],c++,r+=\"C\"+(u[0]+o[0])+\",\"+(u[1]+o[1])+\",\"+(i[0]-a[0])+\",\"+(i[1]-a[1])+\",\"+i[0]+\",\"+i[1];for(var l=2;l<t.length;l++,c++)i=n[c],a=t[l],r+=\"S\"+(i[0]-a[0])+\",\"+(i[1]-a[1])+\",\"+i[0]+\",\"+i[1]}if(e){var s=n[c];r+=\"Q\"+(i[0]+2*a[0]/3)+\",\"+(i[1]+2*a[1]/3)+\",\"+s[0]+\",\"+s[1]}return r}function tr(n,t){for(var e,r=[],u=(1-t)/2,i=n[0],o=n[1],a=1,c=n.length;++a<c;)e=i,i=o,o=n[a],r.push([u*(o[0]-e[0]),u*(o[1]-e[1])]);return r}function er(n){if(n.length<3)return Xe(n);var t=1,e=n.length,r=n[0],u=r[0],i=r[1],o=[u,u,u,(r=n[1])[0]],a=[i,i,i,r[1]],c=[u,\",\",i,\"L\",or(vc,o),\",\",or(vc,a)];for(n.push(n[e-1]);++t<=e;)r=n[t],o.shift(),o.push(r[0]),a.shift(),a.push(r[1]),ar(c,o,a);return n.pop(),c.push(\"L\",r),c.join(\"\")}function rr(n){if(n.length<4)return Xe(n);for(var t,e=[],r=-1,u=n.length,i=[0],o=[0];++r<3;)t=n[r],i.push(t[0]),o.push(t[1]);for(e.push(or(vc,i)+\",\"+or(vc,o)),--r;++r<u;)t=n[r],i.shift(),i.push(t[0]),o.shift(),o.push(t[1]),ar(e,i,o);return e.join(\"\")}function ur(n){for(var t,e,r=-1,u=n.length,i=u+4,o=[],a=[];++r<4;)e=n[r%u],o.push(e[0]),a.push(e[1]);for(t=[or(vc,o),\",\",or(vc,a)],--r;++r<i;)e=n[r%u],o.shift(),o.push(e[0]),a.shift(),a.push(e[1]),ar(t,o,a);return t.join(\"\")}function ir(n,t){var e=n.length-1;if(e)for(var r,u,i=n[0][0],o=n[0][1],a=n[e][0]-i,c=n[e][1]-o,l=-1;++l<=e;)r=n[l],u=l/e,r[0]=t*r[0]+(1-t)*(i+u*a),r[1]=t*r[1]+(1-t)*(o+u*c);return er(n)}function or(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]+n[3]*t[3]}function ar(n,t,e){n.push(\"C\",or(pc,t),\",\",or(pc,e),\",\",or(dc,t),\",\",or(dc,e),\",\",or(vc,t),\",\",or(vc,e))}function cr(n,t){return(t[1]-n[1])/(t[0]-n[0])}function lr(n){for(var t=0,e=n.length-1,r=[],u=n[0],i=n[1],o=r[0]=cr(u,i);++t<e;)r[t]=(o+(o=cr(u=i,i=n[t+1])))/2;return r[t]=o,r\n}function sr(n){for(var t,e,r,u,i=[],o=lr(n),a=-1,c=n.length-1;++a<c;)t=cr(n[a],n[a+1]),Math.abs(t)<Go?o[a]=o[a+1]=0:(e=o[a]/t,r=o[a+1]/t,u=e*e+r*r,u>9&&(u=3*t/Math.sqrt(u),o[a]=u*e,o[a+1]=u*r));for(a=-1;++a<=c;)u=(n[Math.min(c,a+1)][0]-n[Math.max(0,a-1)][0])/(6*(1+o[a]*o[a])),i.push([u||0,o[a]*u||0]);return i}function fr(n){return n.length<3?Xe(n):n[0]+nr(n,sr(n))}function hr(n,t,e,r){var u,i,o,a,c,l,s;return u=r[n],i=u[0],o=u[1],u=r[t],a=u[0],c=u[1],u=r[e],l=u[0],s=u[1],(s-o)*(a-i)-(c-o)*(l-i)>0}function gr(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function pr(n,t,e,r){var u=n[0],i=e[0],o=t[0]-u,a=r[0]-i,c=n[1],l=e[1],s=t[1]-c,f=r[1]-l,h=(a*(c-l)-f*(u-i))/(f*o-a*s);return[u+h*o,c+h*s]}function dr(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function vr(n,t){var e={list:n.map(function(n,t){return{index:t,x:n[0],y:n[1]}}).sort(function(n,t){return n.y<t.y?-1:n.y>t.y?1:n.x<t.x?-1:n.x>t.x?1:0}),bottomSite:null},r={list:[],leftEnd:null,rightEnd:null,init:function(){r.leftEnd=r.createHalfEdge(null,\"l\"),r.rightEnd=r.createHalfEdge(null,\"l\"),r.leftEnd.r=r.rightEnd,r.rightEnd.l=r.leftEnd,r.list.unshift(r.leftEnd,r.rightEnd)},createHalfEdge:function(n,t){return{edge:n,side:t,vertex:null,l:null,r:null}},insert:function(n,t){t.l=n,t.r=n.r,n.r.l=t,n.r=t},leftBound:function(n){var t=r.leftEnd;do t=t.r;while(t!=r.rightEnd&&u.rightOf(t,n));return t=t.l},del:function(n){n.l.r=n.r,n.r.l=n.l,n.edge=null},right:function(n){return n.r},left:function(n){return n.l},leftRegion:function(n){return null==n.edge?e.bottomSite:n.edge.region[n.side]},rightRegion:function(n){return null==n.edge?e.bottomSite:n.edge.region[yc[n.side]]}},u={bisect:function(n,t){var e={region:{l:n,r:t},ep:{l:null,r:null}},r=t.x-n.x,u=t.y-n.y,i=r>0?r:-r,o=u>0?u:-u;return e.c=n.x*r+n.y*u+.5*(r*r+u*u),i>o?(e.a=1,e.b=u/r,e.c/=r):(e.b=1,e.a=r/u,e.c/=u),e},intersect:function(n,t){var e=n.edge,r=t.edge;if(!e||!r||e.region.r==r.region.r)return null;var u=e.a*r.b-e.b*r.a;if(Math.abs(u)<1e-10)return null;var i,o,a=(e.c*r.b-r.c*e.b)/u,c=(r.c*e.a-e.c*r.a)/u,l=e.region.r,s=r.region.r;l.y<s.y||l.y==s.y&&l.x<s.x?(i=n,o=e):(i=t,o=r);var f=a>=o.region.r.x;return f&&\"l\"===i.side||!f&&\"r\"===i.side?null:{x:a,y:c}},rightOf:function(n,t){var e=n.edge,r=e.region.r,u=t.x>r.x;if(u&&\"l\"===n.side)return 1;if(!u&&\"r\"===n.side)return 0;if(1===e.a){var i=t.y-r.y,o=t.x-r.x,a=0,c=0;if(!u&&e.b<0||u&&e.b>=0?c=a=i>=e.b*o:(c=t.x+t.y*e.b>e.c,e.b<0&&(c=!c),c||(a=1)),!a){var l=r.x-e.region.l.x;c=e.b*(o*o-i*i)<l*i*(1+2*o/l+e.b*e.b),e.b<0&&(c=!c)}}else{var s=e.c-e.a*t.x,f=t.y-s,h=t.x-r.x,g=s-r.y;c=f*f>h*h+g*g}return\"l\"===n.side?c:!c},endPoint:function(n,e,r){n.ep[e]=r,n.ep[yc[e]]&&t(n)},distance:function(n,t){var e=n.x-t.x,r=n.y-t.y;return Math.sqrt(e*e+r*r)}},i={list:[],insert:function(n,t,e){n.vertex=t,n.ystar=t.y+e;for(var r=0,u=i.list,o=u.length;o>r;r++){var a=u[r];if(!(n.ystar>a.ystar||n.ystar==a.ystar&&t.x>a.vertex.x))break}u.splice(r,0,n)},del:function(n){for(var t=0,e=i.list,r=e.length;r>t&&e[t]!=n;++t);e.splice(t,1)},empty:function(){return 0===i.list.length},nextEvent:function(n){for(var t=0,e=i.list,r=e.length;r>t;++t)if(e[t]==n)return e[t+1];return null},min:function(){var n=i.list[0];return{x:n.vertex.x,y:n.ystar}},extractMin:function(){return i.list.shift()}};r.init(),e.bottomSite=e.list.shift();for(var o,a,c,l,s,f,h,g,p,d,v,m,y,M=e.list.shift();;)if(i.empty()||(o=i.min()),M&&(i.empty()||M.y<o.y||M.y==o.y&&M.x<o.x))a=r.leftBound(M),c=r.right(a),h=r.rightRegion(a),m=u.bisect(h,M),f=r.createHalfEdge(m,\"l\"),r.insert(a,f),d=u.intersect(a,f),d&&(i.del(a),i.insert(a,d,u.distance(d,M))),a=f,f=r.createHalfEdge(m,\"r\"),r.insert(a,f),d=u.intersect(f,c),d&&i.insert(f,d,u.distance(d,M)),M=e.list.shift();else{if(i.empty())break;a=i.extractMin(),l=r.left(a),c=r.right(a),s=r.right(c),h=r.leftRegion(a),g=r.rightRegion(c),v=a.vertex,u.endPoint(a.edge,a.side,v),u.endPoint(c.edge,c.side,v),r.del(a),i.del(c),r.del(c),y=\"l\",h.y>g.y&&(p=h,h=g,g=p,y=\"r\"),m=u.bisect(h,g),f=r.createHalfEdge(m,y),r.insert(l,f),u.endPoint(m,yc[y],v),d=u.intersect(l,f),d&&(i.del(l),i.insert(l,d,u.distance(d,h))),d=u.intersect(f,s),d&&i.insert(f,d,u.distance(d,h))}for(a=r.right(r.leftEnd);a!=r.rightEnd;a=r.right(a))t(a.edge)}function mr(n){return n.x}function yr(n){return n.y}function Mr(){return{leaf:!0,nodes:[],point:null,x:null,y:null}}function xr(n,t,e,r,u,i){if(!n(t,e,r,u,i)){var o=.5*(e+u),a=.5*(r+i),c=t.nodes;c[0]&&xr(n,c[0],e,r,o,a),c[1]&&xr(n,c[1],o,r,u,a),c[2]&&xr(n,c[2],e,a,o,i),c[3]&&xr(n,c[3],o,a,u,i)}}function br(n,t){n=mo.rgb(n),t=mo.rgb(t);var e=n.r,r=n.g,u=n.b,i=t.r-e,o=t.g-r,a=t.b-u;return function(n){return\"#\"+ct(Math.round(e+i*n))+ct(Math.round(r+o*n))+ct(Math.round(u+a*n))}}function _r(n,t){var e,r={},u={};for(e in n)e in t?r[e]=Er(n[e],t[e]):u[e]=n[e];for(e in t)e in n||(u[e]=t[e]);return function(n){for(e in r)u[e]=r[e](n);return u}}function wr(n,t){return t-=n=+n,function(e){return n+t*e}}function Sr(n,t){var e,r,u,i,o,a=0,c=0,l=[],s=[];for(n+=\"\",t+=\"\",Mc.lastIndex=0,r=0;e=Mc.exec(t);++r)e.index&&l.push(t.substring(a,c=e.index)),s.push({i:l.length,x:e[0]}),l.push(null),a=Mc.lastIndex;for(a<t.length&&l.push(t.substring(a)),r=0,i=s.length;(e=Mc.exec(n))&&i>r;++r)if(o=s[r],o.x==e[0]){if(o.i)if(null==l[o.i+1])for(l[o.i-1]+=o.x,l.splice(o.i,1),u=r+1;i>u;++u)s[u].i--;else for(l[o.i-1]+=o.x+l[o.i+1],l.splice(o.i,2),u=r+1;i>u;++u)s[u].i-=2;else if(null==l[o.i+1])l[o.i]=o.x;else for(l[o.i]=o.x+l[o.i+1],l.splice(o.i+1,1),u=r+1;i>u;++u)s[u].i--;s.splice(r,1),i--,r--}else o.x=wr(parseFloat(e[0]),parseFloat(o.x));for(;i>r;)o=s.pop(),null==l[o.i+1]?l[o.i]=o.x:(l[o.i]=o.x+l[o.i+1],l.splice(o.i+1,1)),i--;return 1===l.length?null==l[0]?(o=s[0].x,function(n){return o(n)+\"\"}):function(){return t}:function(n){for(r=0;i>r;++r)l[(o=s[r]).i]=o.x(n);return l.join(\"\")}}function Er(n,t){for(var e,r=mo.interpolators.length;--r>=0&&!(e=mo.interpolators[r](n,t)););return e}function kr(n,t){var e,r=[],u=[],i=n.length,o=t.length,a=Math.min(n.length,t.length);for(e=0;a>e;++e)r.push(Er(n[e],t[e]));for(;i>e;++e)u[e]=n[e];for(;o>e;++e)u[e]=t[e];return function(n){for(e=0;a>e;++e)u[e]=r[e](n);return u}}function Ar(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function Nr(n){return function(t){return 1-n(1-t)}}function Tr(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function qr(n){return n*n}function zr(n){return n*n*n}function Cr(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function Dr(n){return function(t){return Math.pow(t,n)}}function jr(n){return 1-Math.cos(n*Jo)}function Lr(n){return Math.pow(2,10*(n-1))}function Hr(n){return 1-Math.sqrt(1-n*n)}function Fr(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/Wo*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,-10*r)*Math.sin((r-e)*Wo/t)}}function Pr(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function Or(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Rr(n,t){n=mo.hcl(n),t=mo.hcl(t);var e=n.h,r=n.c,u=n.l,i=t.h-e,o=t.c-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.c:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return J(e+i*n,r+o*n,u+a*n)+\"\"}}function Yr(n,t){n=mo.hsl(n),t=mo.hsl(t);var e=n.h,r=n.s,u=n.l,i=t.h-e,o=t.s-r,a=t.l-u;return isNaN(o)&&(o=0,r=isNaN(r)?t.s:r),isNaN(i)?(i=0,e=isNaN(e)?t.h:e):i>180?i-=360:-180>i&&(i+=360),function(n){return $(e+i*n,r+o*n,u+a*n)+\"\"}}function Ir(n,t){n=mo.lab(n),t=mo.lab(t);var e=n.l,r=n.a,u=n.b,i=t.l-e,o=t.a-r,a=t.b-u;return function(n){return Q(e+i*n,r+o*n,u+a*n)+\"\"}}function Ur(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function Zr(n){var t=[n.a,n.b],e=[n.c,n.d],r=Xr(t),u=Vr(t,e),i=Xr($r(e,t,-u))||0;t[0]*e[1]<e[0]*t[1]&&(t[0]*=-1,t[1]*=-1,r*=-1,u*=-1),this.rotate=(r?Math.atan2(t[1],t[0]):Math.atan2(-e[0],e[1]))*na,this.translate=[n.e,n.f],this.scale=[r,i],this.skew=i?Math.atan2(u,i)*na:0}function Vr(n,t){return n[0]*t[0]+n[1]*t[1]}function Xr(n){var t=Math.sqrt(Vr(n,n));return t&&(n[0]/=t,n[1]/=t),t}function $r(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function Br(n,t){var e,r=[],u=[],i=mo.transform(n),o=mo.transform(t),a=i.translate,c=o.translate,l=i.rotate,s=o.rotate,f=i.skew,h=o.skew,g=i.scale,p=o.scale;return a[0]!=c[0]||a[1]!=c[1]?(r.push(\"translate(\",null,\",\",null,\")\"),u.push({i:1,x:wr(a[0],c[0])},{i:3,x:wr(a[1],c[1])})):c[0]||c[1]?r.push(\"translate(\"+c+\")\"):r.push(\"\"),l!=s?(l-s>180?s+=360:s-l>180&&(l+=360),u.push({i:r.push(r.pop()+\"rotate(\",null,\")\")-2,x:wr(l,s)})):s&&r.push(r.pop()+\"rotate(\"+s+\")\"),f!=h?u.push({i:r.push(r.pop()+\"skewX(\",null,\")\")-2,x:wr(f,h)}):h&&r.push(r.pop()+\"skewX(\"+h+\")\"),g[0]!=p[0]||g[1]!=p[1]?(e=r.push(r.pop()+\"scale(\",null,\",\",null,\")\"),u.push({i:e-4,x:wr(g[0],p[0])},{i:e-2,x:wr(g[1],p[1])})):(1!=p[0]||1!=p[1])&&r.push(r.pop()+\"scale(\"+p+\")\"),e=u.length,function(n){for(var t,i=-1;++i<e;)r[(t=u[i]).i]=t.x(n);return r.join(\"\")}}function Wr(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return(e-n)*t}}function Jr(n,t){return t=t-(n=+n)?1/(t-n):0,function(e){return Math.max(0,Math.min(1,(e-n)*t))}}function Gr(n){for(var t=n.source,e=n.target,r=Qr(t,e),u=[t];t!==r;)t=t.parent,u.push(t);for(var i=u.length;e!==r;)u.splice(i,0,e),e=e.parent;return u}function Kr(n){for(var t=[],e=n.parent;null!=e;)t.push(n),n=e,e=e.parent;return t.push(n),t}function Qr(n,t){if(n===t)return n;for(var e=Kr(n),r=Kr(t),u=e.pop(),i=r.pop(),o=null;u===i;)o=u,u=e.pop(),i=r.pop();return o}function nu(n){n.fixed|=2}function tu(n){n.fixed&=-7}function eu(n){n.fixed|=4,n.px=n.x,n.py=n.y}function ru(n){n.fixed&=-5}function uu(n,t,e){var r=0,u=0;if(n.charge=0,!n.leaf)for(var i,o=n.nodes,a=o.length,c=-1;++c<a;)i=o[c],null!=i&&(uu(i,t,e),n.charge+=i.charge,r+=i.charge*i.cx,u+=i.charge*i.cy);if(n.point){n.leaf||(n.point.x+=Math.random()-.5,n.point.y+=Math.random()-.5);var l=t*e[n.point.index];n.charge+=n.pointCharge=l,r+=l*n.point.x,u+=l*n.point.y}n.cx=r/n.charge,n.cy=u/n.charge}function iu(n,t){return mo.rebind(n,t,\"sort\",\"children\",\"value\"),n.nodes=n,n.links=lu,n}function ou(n){return n.children}function au(n){return n.value}function cu(n,t){return t.value-n.value}function lu(n){return mo.merge(n.map(function(n){return(n.children||[]).map(function(t){return{source:n,target:t}})}))}function su(n){return n.x}function fu(n){return n.y}function hu(n,t,e){n.y0=t,n.y=e}function gu(n){return mo.range(n.length)}function pu(n){for(var t=-1,e=n[0].length,r=[];++t<e;)r[t]=0;return r}function du(n){for(var t,e=1,r=0,u=n[0][1],i=n.length;i>e;++e)(t=n[e][1])>u&&(r=e,u=t);return r}function vu(n){return n.reduce(mu,0)}function mu(n,t){return n+t[1]}function yu(n,t){return Mu(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function Mu(n,t){for(var e=-1,r=+n[0],u=(n[1]-r)/t,i=[];++e<=t;)i[e]=u*e+r;return i}function xu(n){return[mo.min(n),mo.max(n)]}function bu(n,t){return n.parent==t.parent?1:2}function _u(n){var t=n.children;return t&&t.length?t[0]:n._tree.thread}function wu(n){var t,e=n.children;return e&&(t=e.length)?e[t-1]:n._tree.thread}function Su(n,t){var e=n.children;if(e&&(u=e.length))for(var r,u,i=-1;++i<u;)t(r=Su(e[i],t),n)>0&&(n=r);return n}function Eu(n,t){return n.x-t.x}function ku(n,t){return t.x-n.x}function Au(n,t){return n.depth-t.depth}function Nu(n,t){function e(n,r){var u=n.children;if(u&&(o=u.length))for(var i,o,a=null,c=-1;++c<o;)i=u[c],e(i,a),a=i;t(n,r)}e(n,null)}function Tu(n){for(var t,e=0,r=0,u=n.children,i=u.length;--i>=0;)t=u[i]._tree,t.prelim+=e,t.mod+=e,e+=t.shift+(r+=t.change)}function qu(n,t,e){n=n._tree,t=t._tree;var r=e/(t.number-n.number);n.change+=r,t.change-=r,t.shift+=e,t.prelim+=e,t.mod+=e}function zu(n,t,e){return n._tree.ancestor.parent==t.parent?n._tree.ancestor:e}function Cu(n,t){return n.value-t.value}function Du(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function ju(n,t){n._pack_next=t,t._pack_prev=n}function Lu(n,t){var e=t.x-n.x,r=t.y-n.y,u=n.r+t.r;return.999*u*u>e*e+r*r}function Hu(n){function t(n){s=Math.min(n.x-n.r,s),f=Math.max(n.x+n.r,f),h=Math.min(n.y-n.r,h),g=Math.max(n.y+n.r,g)}if((e=n.children)&&(l=e.length)){var e,r,u,i,o,a,c,l,s=1/0,f=-1/0,h=1/0,g=-1/0;if(e.forEach(Fu),r=e[0],r.x=-r.r,r.y=0,t(r),l>1&&(u=e[1],u.x=u.r,u.y=0,t(u),l>2))for(i=e[2],Ru(r,u,i),t(i),Du(r,i),r._pack_prev=i,Du(i,u),u=r._pack_next,o=3;l>o;o++){Ru(r,u,i=e[o]);var p=0,d=1,v=1;for(a=u._pack_next;a!==u;a=a._pack_next,d++)if(Lu(a,i)){p=1;break}if(1==p)for(c=r._pack_prev;c!==a._pack_prev&&!Lu(c,i);c=c._pack_prev,v++);p?(v>d||d==v&&u.r<r.r?ju(r,u=a):ju(r=c,u),o--):(Du(r,i),u=i,t(i))}var m=(s+f)/2,y=(h+g)/2,M=0;for(o=0;l>o;o++)i=e[o],i.x-=m,i.y-=y,M=Math.max(M,i.r+Math.sqrt(i.x*i.x+i.y*i.y));n.r=M,e.forEach(Pu)}}function Fu(n){n._pack_next=n._pack_prev=n}function Pu(n){delete n._pack_next,delete n._pack_prev}function Ou(n,t,e,r){var u=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,u)for(var i=-1,o=u.length;++i<o;)Ou(u[i],t,e,r)}function Ru(n,t,e){var r=n.r+e.r,u=t.x-n.x,i=t.y-n.y;if(r&&(u||i)){var o=t.r+e.r,a=u*u+i*i;o*=o,r*=r;var c=.5+(r-o)/(2*a),l=Math.sqrt(Math.max(0,2*o*(r+a)-(r-=a)*r-o*o))/(2*a);e.x=n.x+c*u+l*i,e.y=n.y+c*i-l*u}else e.x=n.x+r,e.y=n.y}function Yu(n){return 1+mo.max(n,function(n){return n.y})}function Iu(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Uu(n){var t=n.children;return t&&t.length?Uu(t[0]):n}function Zu(n){var t,e=n.children;return e&&(t=e.length)?Zu(e[t-1]):n}function Vu(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function Xu(n,t){var e=n.x+t[3],r=n.y+t[0],u=n.dx-t[1]-t[3],i=n.dy-t[0]-t[2];return 0>u&&(e+=u/2,u=0),0>i&&(r+=i/2,i=0),{x:e,y:r,dx:u,dy:i}}function $u(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Bu(n){return n.rangeExtent?n.rangeExtent():$u(n.range())}function Wu(n,t,e,r){var u=e(n[0],n[1]),i=r(t[0],t[1]);return function(n){return i(u(n))}}function Ju(n,t){var e,r=0,u=n.length-1,i=n[r],o=n[u];return i>o&&(e=r,r=u,u=e,e=i,i=o,o=e),n[r]=t.floor(i),n[u]=t.ceil(o),n}function Gu(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:Tc}function Ku(n,t,e,r){var u=[],i=[],o=0,a=Math.min(n.length,t.length)-1;for(n[a]<n[0]&&(n=n.slice().reverse(),t=t.slice().reverse());++o<=a;)u.push(e(n[o-1],n[o])),i.push(r(t[o-1],t[o]));return function(t){var e=mo.bisect(n,t,1,a)-1;return i[e](u[e](t))}}function Qu(n,t,e,r){function u(){var u=Math.min(n.length,t.length)>2?Ku:Wu,c=r?Jr:Wr;return o=u(n,t,c,e),a=u(t,n,c,Er),i}function i(n){return o(n)}var o,a;return i.invert=function(n){return a(n)},i.domain=function(t){return arguments.length?(n=t.map(Number),u()):n},i.range=function(n){return arguments.length?(t=n,u()):t},i.rangeRound=function(n){return i.range(n).interpolate(Ur)},i.clamp=function(n){return arguments.length?(r=n,u()):r},i.interpolate=function(n){return arguments.length?(e=n,u()):e},i.ticks=function(t){return ri(n,t)},i.tickFormat=function(t,e){return ui(n,t,e)},i.nice=function(t){return ti(n,t),u()},i.copy=function(){return Qu(n,t,e,r)},u()}function ni(n,t){return mo.rebind(n,t,\"range\",\"rangeRound\",\"interpolate\",\"clamp\")}function ti(n,t){return Ju(n,Gu(ei(n,t)[2]))}function ei(n,t){null==t&&(t=10);var e=$u(n),r=e[1]-e[0],u=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),i=t/r*u;return.15>=i?u*=10:.35>=i?u*=5:.75>=i&&(u*=2),e[0]=Math.ceil(e[0]/u)*u,e[1]=Math.floor(e[1]/u)*u+.5*u,e[2]=u,e}function ri(n,t){return mo.range.apply(mo,ei(n,t))}function ui(n,t,e){var r=-Math.floor(Math.log(ei(n,t)[2])/Math.LN10+.01);return mo.format(e?e.replace(Aa,function(n,t,e,u,i,o,a,c,l,s){return[t,e,u,i,o,a,c,l||\".\"+(r-2*(\"%\"===s)),s].join(\"\")}):\",.\"+r+\"f\")}function ii(n,t,e,r){function u(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function i(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function o(t){return n(u(t))}return o.invert=function(t){return i(n.invert(t))},o.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(u)),o):r},o.base=function(e){return arguments.length?(t=+e,n.domain(r.map(u)),o):t},o.nice=function(){var t=Ju(r.map(u),e?Math:zc);return n.domain(t),r=t.map(i),o},o.ticks=function(){var n=$u(r),o=[],a=n[0],c=n[1],l=Math.floor(u(a)),s=Math.ceil(u(c)),f=t%1?2:t;if(isFinite(s-l)){if(e){for(;s>l;l++)for(var h=1;f>h;h++)o.push(i(l)*h);o.push(i(l))}else for(o.push(i(l));l++<s;)for(var h=f-1;h>0;h--)o.push(i(l)*h);for(l=0;o[l]<a;l++);for(s=o.length;o[s-1]>c;s--);o=o.slice(l,s)}return o},o.tickFormat=function(n,t){if(!arguments.length)return qc;arguments.length<2?t=qc:\"function\"!=typeof t&&(t=mo.format(t));var r,a=Math.max(.1,n/o.ticks().length),c=e?(r=1e-12,Math.ceil):(r=-1e-12,Math.floor);return function(n){return n/i(c(u(n)+r))<=a?t(n):\"\"}},o.copy=function(){return ii(n.copy(),t,e,r)},ni(o,n)}function oi(n,t,e){function r(t){return n(u(t))}var u=ai(t),i=ai(1/t);return r.invert=function(t){return i(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(u)),r):e},r.ticks=function(n){return ri(e,n)},r.tickFormat=function(n,t){return ui(e,n,t)},r.nice=function(n){return r.domain(ti(e,n))},r.exponent=function(o){return arguments.length?(u=ai(t=o),i=ai(1/t),n.domain(e.map(u)),r):t},r.copy=function(){return oi(n.copy(),t,e)},ni(r,n)}function ai(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function ci(n,t){function e(e){return o[((i.get(e)||\"range\"===t.t&&i.set(e,n.push(e)))-1)%o.length]}function r(t,e){return mo.range(n.length).map(function(n){return t+e*n})}var i,o,a;return e.domain=function(r){if(!arguments.length)return n;n=[],i=new u;for(var o,a=-1,c=r.length;++a<c;)i.has(o=r[a])||i.set(o,n.push(o));return e[t.t].apply(e,t.a)},e.range=function(n){return arguments.length?(o=n,a=0,t={t:\"range\",a:arguments},e):o},e.rangePoints=function(u,i){arguments.length<2&&(i=0);var c=u[0],l=u[1],s=(l-c)/(Math.max(1,n.length-1)+i);return o=r(n.length<2?(c+l)/2:c+s*i/2,s),a=0,t={t:\"rangePoints\",a:arguments},e},e.rangeBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var l=u[1]<u[0],s=u[l-0],f=u[1-l],h=(f-s)/(n.length-i+2*c);return o=r(s+h*c,h),l&&o.reverse(),a=h*(1-i),t={t:\"rangeBands\",a:arguments},e},e.rangeRoundBands=function(u,i,c){arguments.length<2&&(i=0),arguments.length<3&&(c=i);var l=u[1]<u[0],s=u[l-0],f=u[1-l],h=Math.floor((f-s)/(n.length-i+2*c)),g=f-s-(n.length-i)*h;return o=r(s+Math.round(g/2),h),l&&o.reverse(),a=Math.round(h*(1-i)),t={t:\"rangeRoundBands\",a:arguments},e},e.rangeBand=function(){return a},e.rangeExtent=function(){return $u(t.a[0])},e.copy=function(){return ci(n,t)},e.domain(n)}function li(n,t){function e(){var e=0,i=t.length;for(u=[];++e<i;)u[e-1]=mo.quantile(n,e/i);return r}function r(n){return isNaN(n=+n)?void 0:t[mo.bisect(u,n)]}var u;return r.domain=function(t){return arguments.length?(n=t.filter(function(n){return!isNaN(n)}).sort(mo.ascending),e()):n},r.range=function(n){return arguments.length?(t=n,e()):t},r.quantiles=function(){return u},r.invertExtent=function(e){return e=t.indexOf(e),0>e?[0/0,0/0]:[e>0?u[e-1]:n[0],e<u.length?u[e]:n[n.length-1]]},r.copy=function(){return li(n,t)},e()}function si(n,t,e){function r(t){return e[Math.max(0,Math.min(o,Math.floor(i*(t-n))))]}function u(){return i=e.length/(t-n),o=e.length-1,r}var i,o;return r.domain=function(e){return arguments.length?(n=+e[0],t=+e[e.length-1],u()):[n,t]},r.range=function(n){return arguments.length?(e=n,u()):e},r.invertExtent=function(t){return t=e.indexOf(t),t=0>t?0/0:t/i+n,[t,t+1/i]},r.copy=function(){return si(n,t,e)},u()}function fi(n,t){function e(e){return e>=e?t[mo.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return fi(n,t)},e}function hi(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return ri(n,t)},t.tickFormat=function(t,e){return ui(n,t,e)},t.copy=function(){return hi(n)},t}function gi(n){return n.innerRadius}function pi(n){return n.outerRadius}function di(n){return n.startAngle}function vi(n){return n.endAngle}function mi(n){for(var t,e,r,u=-1,i=n.length;++u<i;)t=n[u],e=t[0],r=t[1]+Hc,t[0]=e*Math.cos(r),t[1]=e*Math.sin(r);return n}function yi(n){function t(t){function c(){d.push(\"M\",a(n(m),f),s,l(n(v.reverse()),f),\"Z\")}for(var h,g,p,d=[],v=[],m=[],y=-1,M=t.length,x=pt(e),b=pt(u),_=e===r?function(){return g}:pt(r),w=u===i?function(){return p}:pt(i);++y<M;)o.call(this,h=t[y],y)?(v.push([g=+x.call(this,h,y),p=+b.call(this,h,y)]),m.push([+_.call(this,h,y),+w.call(this,h,y)])):v.length&&(c(),v=[],m=[]);return v.length&&c(),d.length?d.join(\"\"):null}var e=Ze,r=Ze,u=0,i=Ve,o=Vt,a=Xe,c=a.key,l=a,s=\"L\",f=.7;return t.x=function(n){return arguments.length?(e=r=n,t):r},t.x0=function(n){return arguments.length?(e=n,t):e},t.x1=function(n){return arguments.length?(r=n,t):r},t.y=function(n){return arguments.length?(u=i=n,t):i},t.y0=function(n){return arguments.length?(u=n,t):u},t.y1=function(n){return arguments.length?(i=n,t):i},t.defined=function(n){return arguments.length?(o=n,t):o},t.interpolate=function(n){return arguments.length?(c=\"function\"==typeof n?a=n:(a=gc.get(n)||Xe).key,l=a.reverse||a,s=a.closed?\"M\":\"L\",t):c},t.tension=function(n){return arguments.length?(f=n,t):f},t}function Mi(n){return n.radius}function xi(n){return[n.x,n.y]}function bi(n){return function(){var t=n.apply(this,arguments),e=t[0],r=t[1]+Hc;return[e*Math.cos(r),e*Math.sin(r)]}}function _i(){return 64}function wi(){return\"circle\"}function Si(n){var t=Math.sqrt(n/Bo);return\"M0,\"+t+\"A\"+t+\",\"+t+\" 0 1,1 0,\"+-t+\"A\"+t+\",\"+t+\" 0 1,1 0,\"+t+\"Z\"}function Ei(n,t){return Lo(n,Uc),n.id=t,n}function ki(n,t,e,r){var u=n.id;return N(n,\"function\"==typeof e?function(n,i,o){n.__transition__[u].tween.set(t,r(e.call(n,n.__data__,i,o)))}:(e=r(e),function(n){n.__transition__[u].tween.set(t,e)}))}function Ai(n){return null==n&&(n=\"\"),function(){this.textContent=n}}function Ni(n,t,e,r){var i=n.__transition__||(n.__transition__={active:0,count:0}),o=i[e];if(!o){var a=r.time;o=i[e]={tween:new u,time:a,ease:r.ease,delay:r.delay,duration:r.duration},++i.count,mo.timer(function(r){function u(r){return i.active>e?l():(i.active=e,o.event&&o.event.start.call(n,s,t),o.tween.forEach(function(e,r){(r=r.call(n,s,t))&&p.push(r)}),c(r||1)?1:(xt(c,h,a),void 0))}function c(r){if(i.active!==e)return l();for(var u=r/g,a=f(u),c=p.length;c>0;)p[--c].call(n,a);return u>=1?(o.event&&o.event.end.call(n,s,t),l()):void 0}function l(){return--i.count?delete i[e]:delete n.__transition__,1}var s=n.__data__,f=o.ease,h=o.delay,g=o.duration,p=[];return r>=h?u(r-h):(xt(u,h,a),void 0)},0,a)}}function Ti(n,t){n.attr(\"transform\",function(n){return\"translate(\"+t(n)+\",0)\"})}function qi(n,t){n.attr(\"transform\",function(n){return\"translate(0,\"+t(n)+\")\"})}function zi(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function Ci(n,t,e){function r(t){var e=n(t),r=i(e,1);return r-t>t-e?e:r}function u(e){return t(e=n(new Jc(e-1)),1),e}function i(n,e){return t(n=new Jc(+n),e),n}function o(n,r,i){var o=u(n),a=[];if(i>1)for(;r>o;)e(o)%i||a.push(new Date(+o)),t(o,1);else for(;r>o;)a.push(new Date(+o)),t(o,1);return a}function a(n,t,e){try{Jc=zi;var r=new zi;return r._=n,o(r,t,e)}finally{Jc=Date}}n.floor=n,n.round=r,n.ceil=u,n.offset=i,n.range=o;var c=n.utc=Di(n);return c.floor=c,c.round=Di(r),c.ceil=Di(u),c.offset=Di(i),c.range=a,n}function Di(n){return function(t,e){try{Jc=zi;var r=new zi;return r._=t,n(r,e)._}finally{Jc=Date}}}function ji(n){function t(t){for(var r,u,i,o=[],a=-1,c=0;++a<e;)37===n.charCodeAt(a)&&(o.push(n.substring(c,a)),null!=(u=dl[r=n.charAt(++a)])&&(r=n.charAt(++a)),(i=vl[r])&&(r=i(t,null==u?\"e\"===r?\" \":\"0\":u)),o.push(r),c=a+1);return o.push(n.substring(c,a)),o.join(\"\")}var e=n.length;return t.parse=function(t){var e={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null},r=Li(e,n,t,0);if(r!=t.length)return null;\"p\"in e&&(e.H=e.H%12+12*e.p);var u=null!=e.Z&&Jc!==zi,i=new(u?zi:Jc);return\"j\"in e?i.setFullYear(e.y,0,e.j):\"w\"in e&&(\"W\"in e||\"U\"in e)?(i.setFullYear(e.y,0,1),i.setFullYear(e.y,0,\"W\"in e?(e.w+6)%7+7*e.W-(i.getDay()+5)%7:e.w+7*e.U-(i.getDay()+6)%7)):i.setFullYear(e.y,e.m,e.d),i.setHours(e.H+Math.floor(e.Z/100),e.M+e.Z%100,e.S,e.L),u?i._:i},t.toString=function(){return n},t}function Li(n,t,e,r){for(var u,i,o,a=0,c=t.length,l=e.length;c>a;){if(r>=l)return-1;if(u=t.charCodeAt(a++),37===u){if(o=t.charAt(a++),i=ml[o in dl?t.charAt(a++):o],!i||(r=i(n,e,r))<0)return-1}else if(u!=e.charCodeAt(r++))return-1}return r}function Hi(n){return new RegExp(\"^(?:\"+n.map(mo.requote).join(\"|\")+\")\",\"i\")}function Fi(n){for(var t=new u,e=-1,r=n.length;++e<r;)t.set(n[e].toLowerCase(),e);return t}function Pi(n,t,e){var r=0>n?\"-\":\"\",u=(r?-n:n)+\"\",i=u.length;return r+(e>i?new Array(e-i+1).join(t)+u:u)}function Oi(n,t,e){cl.lastIndex=0;var r=cl.exec(t.substring(e));return r?(n.w=ll.get(r[0].toLowerCase()),e+r[0].length):-1}function Ri(n,t,e){ol.lastIndex=0;var r=ol.exec(t.substring(e));return r?(n.w=al.get(r[0].toLowerCase()),e+r[0].length):-1}function Yi(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+1));return r?(n.w=+r[0],e+r[0].length):-1}function Ii(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e));return r?(n.U=+r[0],e+r[0].length):-1}function Ui(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e));return r?(n.W=+r[0],e+r[0].length):-1}function Zi(n,t,e){hl.lastIndex=0;var r=hl.exec(t.substring(e));return r?(n.m=gl.get(r[0].toLowerCase()),e+r[0].length):-1}function Vi(n,t,e){sl.lastIndex=0;var r=sl.exec(t.substring(e));return r?(n.m=fl.get(r[0].toLowerCase()),e+r[0].length):-1}function Xi(n,t,e){return Li(n,vl.c.toString(),t,e)}function $i(n,t,e){return Li(n,vl.x.toString(),t,e)}function Bi(n,t,e){return Li(n,vl.X.toString(),t,e)}function Wi(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+4));return r?(n.y=+r[0],e+r[0].length):-1}function Ji(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+2));return r?(n.y=Ki(+r[0]),e+r[0].length):-1}function Gi(n,t,e){return/^[+-]\\d{4}$/.test(t=t.substring(e,e+5))?(n.Z=+t,e+5):-1}function Ki(n){return n+(n>68?1900:2e3)}function Qi(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function no(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function to(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function eo(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function ro(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function uo(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function io(n,t,e){yl.lastIndex=0;var r=yl.exec(t.substring(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function oo(n,t,e){var r=Ml.get(t.substring(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}function ao(n){var t=n.getTimezoneOffset(),e=t>0?\"-\":\"+\",r=~~(Math.abs(t)/60),u=Math.abs(t)%60;return e+Pi(r,\"0\",2)+Pi(u,\"0\",2)}function co(n,t,e){pl.lastIndex=0;var r=pl.exec(t.substring(e,e+1));return r?e+r[0].length:-1}function lo(n){function t(n){try{Jc=zi;var t=new Jc;return t._=n,e(t)}finally{Jc=Date}}var e=ji(n);return t.parse=function(n){try{Jc=zi;var t=e.parse(n);return t&&t._}finally{Jc=Date}},t.toString=e.toString,t}function so(n){return n.toISOString()}function fo(n,t,e){function r(t){return n(t)}function u(n,e){var r=n[1]-n[0],u=r/e,i=mo.bisect(bl,u);return i==bl.length?[t.year,ei(n.map(function(n){return n/31536e6}),e)[2]]:i?t[u/bl[i-1]<bl[i]/u?i-1:i]:[El,ei(n,e)[2]]}return r.invert=function(t){return ho(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain(t),r):n.domain().map(ho)},r.nice=function(n,t){function e(e){return!isNaN(e)&&!n.range(e,ho(+e+1),t).length}var i=r.domain(),o=$u(i),a=null==n?u(o,10):\"number\"==typeof n&&u(o,n);return a&&(n=a[0],t=a[1]),r.domain(Ju(i,t>1?{floor:function(t){for(;e(t=n.floor(t));)t=ho(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=ho(+t+1);return t}}:n))},r.ticks=function(n,t){var e=$u(r.domain()),i=null==n?u(e,10):\"number\"==typeof n?u(e,n):!n.range&&[{range:n},t];return i&&(n=i[0],t=i[1]),n.range(e[0],ho(+e[1]+1),1>t?1:t)},r.tickFormat=function(){return e},r.copy=function(){return fo(n.copy(),t,e)},ni(r,n)}function ho(n){return new Date(n)}function go(n){return function(t){for(var e=n.length-1,r=n[e];!r[1](t);)r=n[--e];return r[0](t)}}function po(n){return JSON.parse(n.responseText)}function vo(n){var t=xo.createRange();return t.selectNode(xo.body),t.createContextualFragment(n.responseText)}var mo={version:\"3.3.6\"};Date.now||(Date.now=function(){return+new Date});var yo=[].slice,Mo=function(n){return yo.call(n)},xo=document,bo=xo.documentElement,_o=window;try{Mo(bo.childNodes)[0].nodeType}catch(wo){Mo=function(n){for(var t=n.length,e=new Array(t);t--;)e[t]=n[t];return e}}try{xo.createElement(\"div\").style.setProperty(\"opacity\",0,\"\")}catch(So){var Eo=_o.Element.prototype,ko=Eo.setAttribute,Ao=Eo.setAttributeNS,No=_o.CSSStyleDeclaration.prototype,To=No.setProperty;Eo.setAttribute=function(n,t){ko.call(this,n,t+\"\")},Eo.setAttributeNS=function(n,t,e){Ao.call(this,n,t,e+\"\")},No.setProperty=function(n,t,e){To.call(this,n,t+\"\",e)}}mo.ascending=function(n,t){return t>n?-1:n>t?1:n>=t?0:0/0},mo.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:0/0},mo.min=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&e>r&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&e>r&&(e=r)}return e},mo.max=function(n,t){var e,r,u=-1,i=n.length;if(1===arguments.length){for(;++u<i&&!(null!=(e=n[u])&&e>=e);)e=void 0;for(;++u<i;)null!=(r=n[u])&&r>e&&(e=r)}else{for(;++u<i&&!(null!=(e=t.call(n,n[u],u))&&e>=e);)e=void 0;for(;++u<i;)null!=(r=t.call(n,n[u],u))&&r>e&&(e=r)}return e},mo.extent=function(n,t){var e,r,u,i=-1,o=n.length;if(1===arguments.length){for(;++i<o&&!(null!=(e=u=n[i])&&e>=e);)e=u=void 0;for(;++i<o;)null!=(r=n[i])&&(e>r&&(e=r),r>u&&(u=r))}else{for(;++i<o&&!(null!=(e=u=t.call(n,n[i],i))&&e>=e);)e=void 0;for(;++i<o;)null!=(r=t.call(n,n[i],i))&&(e>r&&(e=r),r>u&&(u=r))}return[e,u]},mo.sum=function(n,t){var e,r=0,u=n.length,i=-1;if(1===arguments.length)for(;++i<u;)isNaN(e=+n[i])||(r+=e);else for(;++i<u;)isNaN(e=+t.call(n,n[i],i))||(r+=e);return r},mo.mean=function(t,e){var r,u=t.length,i=0,o=-1,a=0;if(1===arguments.length)for(;++o<u;)n(r=t[o])&&(i+=(r-i)/++a);else for(;++o<u;)n(r=e.call(t,t[o],o))&&(i+=(r-i)/++a);return a?i:void 0},mo.quantile=function(n,t){var e=(n.length-1)*t+1,r=Math.floor(e),u=+n[r-1],i=e-r;return i?u+i*(n[r]-u):u},mo.median=function(t,e){return arguments.length>1&&(t=t.map(e)),t=t.filter(n),t.length?mo.quantile(t.sort(mo.ascending),.5):void 0},mo.bisector=function(n){return{left:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;n.call(t,t[i],i)<e?r=i+1:u=i}return r},right:function(t,e,r,u){for(arguments.length<3&&(r=0),arguments.length<4&&(u=t.length);u>r;){var i=r+u>>>1;e<n.call(t,t[i],i)?u=i:r=i+1}return r}}};var qo=mo.bisector(function(n){return n});mo.bisectLeft=qo.left,mo.bisect=mo.bisectRight=qo.right,mo.shuffle=function(n){for(var t,e,r=n.length;r;)e=0|Math.random()*r--,t=n[r],n[r]=n[e],n[e]=t;return n},mo.permute=function(n,t){for(var e=t.length,r=new Array(e);e--;)r[e]=n[t[e]];return r},mo.pairs=function(n){for(var t,e=0,r=n.length-1,u=n[0],i=new Array(0>r?0:r);r>e;)i[e]=[t=u,u=n[++e]];return i},mo.zip=function(){if(!(u=arguments.length))return[];for(var n=-1,e=mo.min(arguments,t),r=new Array(e);++n<e;)for(var u,i=-1,o=r[n]=new Array(u);++i<u;)o[i]=arguments[i][n];return r},mo.transpose=function(n){return mo.zip.apply(mo,n)},mo.keys=function(n){var t=[];for(var e in n)t.push(e);return t},mo.values=function(n){var t=[];for(var e in n)t.push(n[e]);return t},mo.entries=function(n){var t=[];\n    for(var e in n)t.push({key:e,value:n[e]});return t},mo.merge=function(n){return Array.prototype.concat.apply([],n)},mo.range=function(n,t,r){if(arguments.length<3&&(r=1,arguments.length<2&&(t=n,n=0)),1/0===(t-n)/r)throw new Error(\"infinite range\");var u,i=[],o=e(Math.abs(r)),a=-1;if(n*=o,t*=o,r*=o,0>r)for(;(u=n+r*++a)>t;)i.push(u/o);else for(;(u=n+r*++a)<t;)i.push(u/o);return i},mo.map=function(n){var t=new u;if(n instanceof u)n.forEach(function(n,e){t.set(n,e)});else for(var e in n)t.set(e,n[e]);return t},r(u,{has:function(n){return zo+n in this},get:function(n){return this[zo+n]},set:function(n,t){return this[zo+n]=t},remove:function(n){return n=zo+n,n in this&&delete this[n]},keys:function(){var n=[];return this.forEach(function(t){n.push(t)}),n},values:function(){var n=[];return this.forEach(function(t,e){n.push(e)}),n},entries:function(){var n=[];return this.forEach(function(t,e){n.push({key:t,value:e})}),n},forEach:function(n){for(var t in this)t.charCodeAt(0)===Co&&n.call(this,t.substring(1),this[t])}});var zo=\"\\x00\",Co=zo.charCodeAt(0);mo.nest=function(){function n(t,a,c){if(c>=o.length)return r?r.call(i,a):e?a.sort(e):a;for(var l,s,f,h,g=-1,p=a.length,d=o[c++],v=new u;++g<p;)(h=v.get(l=d(s=a[g])))?h.push(s):v.set(l,[s]);return t?(s=t(),f=function(e,r){s.set(e,n(t,r,c))}):(s={},f=function(e,r){s[e]=n(t,r,c)}),v.forEach(f),s}function t(n,e){if(e>=o.length)return n;var r=[],u=a[e++];return n.forEach(function(n,u){r.push({key:n,values:t(u,e)})}),u?r.sort(function(n,t){return u(n.key,t.key)}):r}var e,r,i={},o=[],a=[];return i.map=function(t,e){return n(e,t,0)},i.entries=function(e){return t(n(mo.map,e,0),0)},i.key=function(n){return o.push(n),i},i.sortKeys=function(n){return a[o.length-1]=n,i},i.sortValues=function(n){return e=n,i},i.rollup=function(n){return r=n,i},i},mo.set=function(n){var t=new i;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},r(i,{has:function(n){return zo+n in this},add:function(n){return this[zo+n]=!0,n},remove:function(n){return n=zo+n,n in this&&delete this[n]},values:function(){var n=[];return this.forEach(function(t){n.push(t)}),n},forEach:function(n){for(var t in this)t.charCodeAt(0)===Co&&n.call(this,t.substring(1))}}),mo.behavior={},mo.rebind=function(n,t){for(var e,r=1,u=arguments.length;++r<u;)n[e=arguments[r]]=o(n,t,t[e]);return n};var Do=[\"webkit\",\"ms\",\"moz\",\"Moz\",\"o\",\"O\"];mo.dispatch=function(){for(var n=new l,t=-1,e=arguments.length;++t<e;)n[arguments[t]]=s(n);return n},l.prototype.on=function(n,t){var e=n.indexOf(\".\"),r=\"\";if(e>=0&&(r=n.substring(e+1),n=n.substring(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},mo.event=null,mo.requote=function(n){return n.replace(jo,\"\\\\$&\")};var jo=/[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g,Lo={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},Ho=function(n,t){return t.querySelector(n)},Fo=function(n,t){return t.querySelectorAll(n)},Po=bo[a(bo,\"matchesSelector\")],Oo=function(n,t){return Po.call(n,t)};\"function\"==typeof Sizzle&&(Ho=function(n,t){return Sizzle(n,t)[0]||null},Fo=function(n,t){return Sizzle.uniqueSort(Sizzle(n,t))},Oo=Sizzle.matchesSelector),mo.selection=function(){return Uo};var Ro=mo.selection.prototype=[];Ro.select=function(n){var t,e,r,u,i=[];n=d(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]),t.parentNode=(r=this[o]).parentNode;for(var c=-1,l=r.length;++c<l;)(u=r[c])?(t.push(e=n.call(u,u.__data__,c,o)),e&&\"__data__\"in u&&(e.__data__=u.__data__)):t.push(null)}return p(i)},Ro.selectAll=function(n){var t,e,r=[];n=v(n);for(var u=-1,i=this.length;++u<i;)for(var o=this[u],a=-1,c=o.length;++a<c;)(e=o[a])&&(r.push(t=Mo(n.call(e,e.__data__,a,u))),t.parentNode=e);return p(r)};var Yo={svg:\"http://www.w3.org/2000/svg\",xhtml:\"http://www.w3.org/1999/xhtml\",xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"};mo.ns={prefix:Yo,qualify:function(n){var t=n.indexOf(\":\"),e=n;return t>=0&&(e=n.substring(0,t),n=n.substring(t+1)),Yo.hasOwnProperty(e)?{space:Yo[e],local:n}:n}},Ro.attr=function(n,t){if(arguments.length<2){if(\"string\"==typeof n){var e=this.node();return n=mo.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(m(t,n[t]));return this}return this.each(m(n,t))},Ro.classed=function(n,t){if(arguments.length<2){if(\"string\"==typeof n){var e=this.node(),r=(n=n.trim().split(/^|\\s+/g)).length,u=-1;if(t=e.classList){for(;++u<r;)if(!t.contains(n[u]))return!1}else for(t=e.getAttribute(\"class\");++u<r;)if(!M(n[u]).test(t))return!1;return!0}for(t in n)this.each(x(t,n[t]));return this}return this.each(x(n,t))},Ro.style=function(n,t,e){var r=arguments.length;if(3>r){if(\"string\"!=typeof n){2>r&&(t=\"\");for(e in n)this.each(_(e,n[e],t));return this}if(2>r)return _o.getComputedStyle(this.node(),null).getPropertyValue(n);e=\"\"}return this.each(_(n,t,e))},Ro.property=function(n,t){if(arguments.length<2){if(\"string\"==typeof n)return this.node()[n];for(t in n)this.each(w(t,n[t]));return this}return this.each(w(n,t))},Ro.text=function(n){return arguments.length?this.each(\"function\"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?\"\":t}:null==n?function(){this.textContent=\"\"}:function(){this.textContent=n}):this.node().textContent},Ro.html=function(n){return arguments.length?this.each(\"function\"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?\"\":t}:null==n?function(){this.innerHTML=\"\"}:function(){this.innerHTML=n}):this.node().innerHTML},Ro.append=function(n){return n=S(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},Ro.insert=function(n,t){return n=S(n),t=d(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments))})},Ro.remove=function(){return this.each(function(){var n=this.parentNode;n&&n.removeChild(this)})},Ro.data=function(n,t){function e(n,e){var r,i,o,a=n.length,f=e.length,h=Math.min(a,f),g=new Array(f),p=new Array(f),d=new Array(a);if(t){var v,m=new u,y=new u,M=[];for(r=-1;++r<a;)v=t.call(i=n[r],i.__data__,r),m.has(v)?d[r]=i:m.set(v,i),M.push(v);for(r=-1;++r<f;)v=t.call(e,o=e[r],r),(i=m.get(v))?(g[r]=i,i.__data__=o):y.has(v)||(p[r]=E(o)),y.set(v,o),m.remove(v);for(r=-1;++r<a;)m.has(M[r])&&(d[r]=n[r])}else{for(r=-1;++r<h;)i=n[r],o=e[r],i?(i.__data__=o,g[r]=i):p[r]=E(o);for(;f>r;++r)p[r]=E(e[r]);for(;a>r;++r)d[r]=n[r]}p.update=g,p.parentNode=g.parentNode=d.parentNode=n.parentNode,c.push(p),l.push(g),s.push(d)}var r,i,o=-1,a=this.length;if(!arguments.length){for(n=new Array(a=(r=this[0]).length);++o<a;)(i=r[o])&&(n[o]=i.__data__);return n}var c=T([]),l=p([]),s=p([]);if(\"function\"==typeof n)for(;++o<a;)e(r=this[o],n.call(r,r.parentNode.__data__,o));else for(;++o<a;)e(r=this[o],n);return l.enter=function(){return c},l.exit=function(){return s},l},Ro.datum=function(n){return arguments.length?this.property(\"__data__\",n):this.property(\"__data__\")},Ro.filter=function(n){var t,e,r,u=[];\"function\"!=typeof n&&(n=k(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]),t.parentNode=(e=this[i]).parentNode;for(var a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a)&&t.push(r)}return p(u)},Ro.order=function(){for(var n=-1,t=this.length;++n<t;)for(var e,r=this[n],u=r.length-1,i=r[u];--u>=0;)(e=r[u])&&(i&&i!==e.nextSibling&&i.parentNode.insertBefore(e,i),i=e);return this},Ro.sort=function(n){n=A.apply(this,arguments);for(var t=-1,e=this.length;++t<e;)this[t].sort(n);return this.order()},Ro.each=function(n){return N(this,function(t,e,r){n.call(t,t.__data__,e,r)})},Ro.call=function(n){var t=Mo(arguments);return n.apply(t[0]=this,t),this},Ro.empty=function(){return!this.node()},Ro.node=function(){for(var n=0,t=this.length;t>n;n++)for(var e=this[n],r=0,u=e.length;u>r;r++){var i=e[r];if(i)return i}return null},Ro.size=function(){var n=0;return this.each(function(){++n}),n};var Io=[];mo.selection.enter=T,mo.selection.enter.prototype=Io,Io.append=Ro.append,Io.empty=Ro.empty,Io.node=Ro.node,Io.call=Ro.call,Io.size=Ro.size,Io.select=function(n){for(var t,e,r,u,i,o=[],a=-1,c=this.length;++a<c;){r=(u=this[a]).update,o.push(t=[]),t.parentNode=u.parentNode;for(var l=-1,s=u.length;++l<s;)(i=u[l])?(t.push(r[l]=e=n.call(u.parentNode,i.__data__,l,a)),e.__data__=i.__data__):t.push(null)}return p(o)},Io.insert=function(n,t){return arguments.length<2&&(t=q(this)),Ro.insert.call(this,n,t)},Ro.transition=function(){for(var n,t,e=Oc||++Zc,r=[],u=Rc||{time:Date.now(),ease:Cr,delay:0,duration:250},i=-1,o=this.length;++i<o;){r.push(n=[]);for(var a=this[i],c=-1,l=a.length;++c<l;)(t=a[c])&&Ni(t,c,e,u),n.push(t)}return Ei(r,e)},Ro.interrupt=function(){return this.each(z)},mo.select=function(n){var t=[\"string\"==typeof n?Ho(n,xo):n];return t.parentNode=bo,p([t])},mo.selectAll=function(n){var t=Mo(\"string\"==typeof n?Fo(n,xo):n);return t.parentNode=bo,p([t])};var Uo=mo.select(bo);Ro.on=function(n,t,e){var r=arguments.length;if(3>r){if(\"string\"!=typeof n){2>r&&(t=!1);for(e in n)this.each(C(e,n[e],t));return this}if(2>r)return(r=this.node()[\"__on\"+n])&&r._;e=!1}return this.each(C(n,t,e))};var Zo=mo.map({mouseenter:\"mouseover\",mouseleave:\"mouseout\"});Zo.forEach(function(n){\"on\"+n in xo&&Zo.remove(n)});var Vo=a(bo.style,\"userSelect\"),Xo=0;mo.mouse=function(n){return H(n,h())};var $o=/WebKit/.test(_o.navigator.userAgent)?-1:0;mo.touches=function(n,t){return arguments.length<2&&(t=h().touches),t?Mo(t).map(function(t){var e=H(n,t);return e.identifier=t.identifier,e}):[]},mo.behavior.drag=function(){function n(){this.on(\"mousedown.drag\",o).on(\"touchstart.drag\",a)}function t(){return mo.event.changedTouches[0].identifier}function e(n,t){return mo.touches(n).filter(function(n){return n.identifier===t})[0]}function r(n,t,e,r){return function(){function o(){var n=t(s,g),e=n[0]-d[0],r=n[1]-d[1];v|=e|r,d=n,f({type:\"drag\",x:n[0]+c[0],y:n[1]+c[1],dx:e,dy:r})}function a(){m.on(e+\".\"+p,null).on(r+\".\"+p,null),y(v&&mo.event.target===h),f({type:\"dragend\"})}var c,l=this,s=l.parentNode,f=u.of(l,arguments),h=mo.event.target,g=n(),p=null==g?\"drag\":\"drag-\"+g,d=t(s,g),v=0,m=mo.select(_o).on(e+\".\"+p,o).on(r+\".\"+p,a),y=L();i?(c=i.apply(l,arguments),c=[c.x-d[0],c.y-d[1]]):c=[0,0],f({type:\"dragstart\"})}}var u=g(n,\"drag\",\"dragstart\",\"dragend\"),i=null,o=r(c,mo.mouse,\"mousemove\",\"mouseup\"),a=r(t,e,\"touchmove\",\"touchend\");return n.origin=function(t){return arguments.length?(i=t,n):i},mo.rebind(n,u,\"on\")};var Bo=Math.PI,Wo=2*Bo,Jo=Bo/2,Go=1e-6,Ko=Go*Go,Qo=Bo/180,na=180/Bo,ta=Math.SQRT2,ea=2,ra=4;mo.interpolateZoom=function(n,t){function e(n){var t=n*y;if(m){var e=Y(d),o=i/(ea*h)*(e*I(ta*t+d)-R(d));return[r+o*l,u+o*s,i*e/Y(ta*t+d)]}return[r+n*l,u+n*s,i*Math.exp(ta*t)]}var r=n[0],u=n[1],i=n[2],o=t[0],a=t[1],c=t[2],l=o-r,s=a-u,f=l*l+s*s,h=Math.sqrt(f),g=(c*c-i*i+ra*f)/(2*i*ea*h),p=(c*c-i*i-ra*f)/(2*c*ea*h),d=Math.log(Math.sqrt(g*g+1)-g),v=Math.log(Math.sqrt(p*p+1)-p),m=v-d,y=(m||Math.log(c/i))/ta;return e.duration=1e3*y,e},mo.behavior.zoom=function(){function n(n){n.on(A,l).on(oa+\".zoom\",h).on(N,p).on(\"dblclick.zoom\",d).on(q,s)}function t(n){return[(n[0]-S.x)/S.k,(n[1]-S.y)/S.k]}function e(n){return[n[0]*S.k+S.x,n[1]*S.k+S.y]}function r(n){S.k=Math.max(k[0],Math.min(k[1],n))}function u(n,t){t=e(t),S.x+=n[0]-t[0],S.y+=n[1]-t[1]}function i(){b&&b.domain(x.range().map(function(n){return(n-S.x)/S.k}).map(x.invert)),w&&w.domain(_.range().map(function(n){return(n-S.y)/S.k}).map(_.invert))}function o(n){n({type:\"zoomstart\"})}function a(n){i(),n({type:\"zoom\",scale:S.k,translate:[S.x,S.y]})}function c(n){n({type:\"zoomend\"})}function l(){function n(){s=1,u(mo.mouse(r),h),a(i)}function e(){f.on(N,_o===r?p:null).on(T,null),g(s&&mo.event.target===l),c(i)}var r=this,i=C.of(r,arguments),l=mo.event.target,s=0,f=mo.select(_o).on(N,n).on(T,e),h=t(mo.mouse(r)),g=L();z.call(r),o(i)}function s(){function n(){var n=mo.touches(p);return g=S.k,n.forEach(function(n){n.identifier in v&&(v[n.identifier]=t(n))}),n}function e(){for(var t=mo.event.changedTouches,e=0,i=t.length;i>e;++e)v[t[e].identifier]=null;var o=n(),c=Date.now();if(1===o.length){if(500>c-M){var l=o[0],s=v[l.identifier];r(2*S.k),u(l,s),f(),a(d)}M=c}else if(o.length>1){var l=o[0],h=o[1],g=l[0]-h[0],p=l[1]-h[1];m=g*g+p*p}}function i(){for(var n,t,e,i,o=mo.touches(p),c=0,l=o.length;l>c;++c,i=null)if(e=o[c],i=v[e.identifier]){if(t)break;n=e,t=i}if(i){var s=(s=e[0]-n[0])*s+(s=e[1]-n[1])*s,f=m&&Math.sqrt(s/m);n=[(n[0]+e[0])/2,(n[1]+e[1])/2],t=[(t[0]+i[0])/2,(t[1]+i[1])/2],r(f*g)}M=null,u(n,t),a(d)}function h(){if(mo.event.touches.length){for(var t=mo.event.changedTouches,e=0,r=t.length;r>e;++e)delete v[t[e].identifier];for(var u in v)return void n()}_.on(x,null).on(b,null),w.on(A,l).on(q,s),E(),c(d)}var g,p=this,d=C.of(p,arguments),v={},m=0,y=mo.event.changedTouches[0].identifier,x=\"touchmove.zoom-\"+y,b=\"touchend.zoom-\"+y,_=mo.select(_o).on(x,i).on(b,h),w=mo.select(p).on(A,null).on(q,e),E=L();z.call(p),e(),o(d)}function h(){var n=C.of(this,arguments);y?clearTimeout(y):(z.call(this),o(n)),y=setTimeout(function(){y=null,c(n)},50),f();var e=m||mo.mouse(this);v||(v=t(e)),r(Math.pow(2,.002*ua())*S.k),u(e,v),a(n)}function p(){v=null}function d(){var n=C.of(this,arguments),e=mo.mouse(this),i=t(e),l=Math.log(S.k)/Math.LN2;o(n),r(Math.pow(2,mo.event.shiftKey?Math.ceil(l)-1:Math.floor(l)+1)),u(e,i),a(n),c(n)}var v,m,y,M,x,b,_,w,S={x:0,y:0,k:1},E=[960,500],k=ia,A=\"mousedown.zoom\",N=\"mousemove.zoom\",T=\"mouseup.zoom\",q=\"touchstart.zoom\",C=g(n,\"zoomstart\",\"zoom\",\"zoomend\");return n.event=function(n){n.each(function(){var n=C.of(this,arguments),t=S;Oc?mo.select(this).transition().each(\"start.zoom\",function(){S=this.__chart__||{x:0,y:0,k:1},o(n)}).tween(\"zoom:zoom\",function(){var e=E[0],r=E[1],u=e/2,i=r/2,o=mo.interpolateZoom([(u-S.x)/S.k,(i-S.y)/S.k,e/S.k],[(u-t.x)/t.k,(i-t.y)/t.k,e/t.k]);return function(t){var r=o(t),c=e/r[2];this.__chart__=S={x:u-r[0]*c,y:i-r[1]*c,k:c},a(n)}}).each(\"end.zoom\",function(){c(n)}):(this.__chart__=S,o(n),a(n),c(n))})},n.translate=function(t){return arguments.length?(S={x:+t[0],y:+t[1],k:S.k},i(),n):[S.x,S.y]},n.scale=function(t){return arguments.length?(S={x:S.x,y:S.y,k:+t},i(),n):S.k},n.scaleExtent=function(t){return arguments.length?(k=null==t?ia:[+t[0],+t[1]],n):k},n.center=function(t){return arguments.length?(m=t&&[+t[0],+t[1]],n):m},n.size=function(t){return arguments.length?(E=t&&[+t[0],+t[1]],n):E},n.x=function(t){return arguments.length?(b=t,x=t.copy(),S={x:0,y:0,k:1},n):b},n.y=function(t){return arguments.length?(w=t,_=t.copy(),S={x:0,y:0,k:1},n):w},mo.rebind(n,C,\"on\")};var ua,ia=[0,1/0],oa=\"onwheel\"in xo?(ua=function(){return-mo.event.deltaY*(mo.event.deltaMode?120:1)},\"wheel\"):\"onmousewheel\"in xo?(ua=function(){return mo.event.wheelDelta},\"mousewheel\"):(ua=function(){return-mo.event.detail},\"MozMousePixelScroll\");Z.prototype.toString=function(){return this.rgb()+\"\"},mo.hsl=function(n,t,e){return 1===arguments.length?n instanceof X?V(n.h,n.s,n.l):lt(\"\"+n,st,V):V(+n,+t,+e)};var aa=X.prototype=new Z;aa.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),V(this.h,this.s,this.l/n)},aa.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),V(this.h,this.s,n*this.l)},aa.rgb=function(){return $(this.h,this.s,this.l)},mo.hcl=function(n,t,e){return 1===arguments.length?n instanceof W?B(n.h,n.c,n.l):n instanceof K?nt(n.l,n.a,n.b):nt((n=ft((n=mo.rgb(n)).r,n.g,n.b)).l,n.a,n.b):B(+n,+t,+e)};var ca=W.prototype=new Z;ca.brighter=function(n){return B(this.h,this.c,Math.min(100,this.l+la*(arguments.length?n:1)))},ca.darker=function(n){return B(this.h,this.c,Math.max(0,this.l-la*(arguments.length?n:1)))},ca.rgb=function(){return J(this.h,this.c,this.l).rgb()},mo.lab=function(n,t,e){return 1===arguments.length?n instanceof K?G(n.l,n.a,n.b):n instanceof W?J(n.l,n.c,n.h):ft((n=mo.rgb(n)).r,n.g,n.b):G(+n,+t,+e)};var la=18,sa=.95047,fa=1,ha=1.08883,ga=K.prototype=new Z;ga.brighter=function(n){return G(Math.min(100,this.l+la*(arguments.length?n:1)),this.a,this.b)},ga.darker=function(n){return G(Math.max(0,this.l-la*(arguments.length?n:1)),this.a,this.b)},ga.rgb=function(){return Q(this.l,this.a,this.b)},mo.rgb=function(n,t,e){return 1===arguments.length?n instanceof at?ot(n.r,n.g,n.b):lt(\"\"+n,ot,$):ot(~~n,~~t,~~e)};var pa=at.prototype=new Z;pa.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,u=30;return t||e||r?(t&&u>t&&(t=u),e&&u>e&&(e=u),r&&u>r&&(r=u),ot(Math.min(255,~~(t/n)),Math.min(255,~~(e/n)),Math.min(255,~~(r/n)))):ot(u,u,u)},pa.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),ot(~~(n*this.r),~~(n*this.g),~~(n*this.b))},pa.hsl=function(){return st(this.r,this.g,this.b)},pa.toString=function(){return\"#\"+ct(this.r)+ct(this.g)+ct(this.b)};var da=mo.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});da.forEach(function(n,t){da.set(n,ut(t))}),mo.functor=pt,mo.xhr=vt(dt),mo.dsv=function(n,t){function e(n,e,i){arguments.length<3&&(i=e,e=null);var o=mo.xhr(n,t,i);return o.row=function(n){return arguments.length?o.response(null==(e=n)?r:u(n)):e},o.row(e)}function r(n){return e.parse(n.responseText)}function u(n){return function(t){return e.parse(t.responseText,n)}}function o(t){return t.map(a).join(n)}function a(n){return c.test(n)?'\"'+n.replace(/\\\"/g,'\"\"')+'\"':n}var c=new RegExp('[\"'+n+\"\\n]\"),l=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var u=new Function(\"d\",\"return {\"+n.map(function(n,t){return JSON.stringify(n)+\": d[\"+t+\"]\"}).join(\",\")+\"}\");r=t?function(n,e){return t(u(n),e)}:u})},e.parseRows=function(n,t){function e(){if(s>=c)return o;if(u)return u=!1,i;var t=s;if(34===n.charCodeAt(t)){for(var e=t;e++<c;)if(34===n.charCodeAt(e)){if(34!==n.charCodeAt(e+1))break;++e}s=e+2;var r=n.charCodeAt(e+1);return 13===r?(u=!0,10===n.charCodeAt(e+2)&&++s):10===r&&(u=!0),n.substring(t+1,e).replace(/\"\"/g,'\"')}for(;c>s;){var r=n.charCodeAt(s++),a=1;if(10===r)u=!0;else if(13===r)u=!0,10===n.charCodeAt(s)&&(++s,++a);else if(r!==l)continue;return n.substring(t,s-a)}return n.substring(t)}for(var r,u,i={},o={},a=[],c=n.length,s=0,f=0;(r=e())!==o;){for(var h=[];r!==i&&r!==o;)h.push(r),r=e();(!t||(h=t(h,f++)))&&a.push(h)}return a},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new i,u=[];return t.forEach(function(n){for(var t in n)r.has(t)||u.push(r.add(t))}),[u.map(a).join(n)].concat(t.map(function(t){return u.map(function(n){return a(t[n])}).join(n)})).join(\"\\n\")},e.formatRows=function(n){return n.map(o).join(\"\\n\")},e},mo.csv=mo.dsv(\",\",\"text/csv\"),mo.tsv=mo.dsv(\"\t\",\"text/tab-separated-values\");var va,ma,ya,Ma,xa,ba=_o[a(_o,\"requestAnimationFrame\")]||function(n){setTimeout(n,17)};mo.timer=function(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var u=e+t,i={callback:n,time:u,next:null};ma?ma.next=i:va=i,ma=i,ya||(Ma=clearTimeout(Ma),ya=1,ba(Mt))},mo.timer.flush=function(){bt(),_t()};var _a=\".\",wa=\",\",Sa=[3,3],Ea=\"$\",ka=[\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"\\xb5\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map(wt);mo.formatPrefix=function(n,t){var e=0;return n&&(0>n&&(n*=-1),t&&(n=mo.round(n,St(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((0>=e?e+1:e-1)/3)))),ka[8+e/3]},mo.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)},mo.format=function(n){var t=Aa.exec(n),e=t[1]||\" \",r=t[2]||\">\",u=t[3]||\"\",i=t[4]||\"\",o=t[5],a=+t[6],c=t[7],l=t[8],s=t[9],f=1,h=\"\",g=!1;switch(l&&(l=+l.substring(1)),(o||\"0\"===e&&\"=\"===r)&&(o=e=\"0\",r=\"=\",c&&(a-=Math.floor((a-1)/4))),s){case\"n\":c=!0,s=\"g\";break;case\"%\":f=100,h=\"%\",s=\"f\";break;case\"p\":f=100,h=\"%\",s=\"r\";break;case\"b\":case\"o\":case\"x\":case\"X\":\"#\"===i&&(i=\"0\"+s.toLowerCase());case\"c\":case\"d\":g=!0,l=0;break;case\"s\":f=-1,s=\"r\"}\"#\"===i?i=\"\":\"$\"===i&&(i=Ea),\"r\"!=s||l||(s=\"g\"),null!=l&&(\"g\"==s?l=Math.max(1,Math.min(21,l)):(\"e\"==s||\"f\"==s)&&(l=Math.max(0,Math.min(20,l)))),s=Na.get(s)||Et;var p=o&&c;return function(n){if(g&&n%1)return\"\";var t=0>n||0===n&&0>1/n?(n=-n,\"-\"):u;if(0>f){var d=mo.formatPrefix(n,l);n=d.scale(n),h=d.symbol}else n*=f;n=s(n,l);var v=n.lastIndexOf(\".\"),m=0>v?n:n.substring(0,v),y=0>v?\"\":_a+n.substring(v+1);!o&&c&&(m=Ta(m));var M=i.length+m.length+y.length+(p?0:t.length),x=a>M?new Array(M=a-M+1).join(e):\"\";return p&&(m=Ta(x+m)),t+=i,n=m+y,(\"<\"===r?t+n+x:\">\"===r?x+t+n:\"^\"===r?x.substring(0,M>>=1)+t+n+x.substring(M):t+(p?n:x+n))+h}};var Aa=/(?:([^{])?([<>=^]))?([+\\- ])?([$#])?(0)?(\\d+)?(,)?(\\.-?\\d+)?([a-z%])?/i,Na=mo.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=mo.round(n,St(n,t))).toFixed(Math.max(0,Math.min(20,St(n*(1+1e-15),t))))}}),Ta=dt;if(Sa){var qa=Sa.length;Ta=function(n){for(var t=n.length,e=[],r=0,u=Sa[0];t>0&&u>0;)e.push(n.substring(t-=u,t+u)),u=Sa[r=(r+1)%qa];return e.reverse().join(wa)}}mo.geo={},kt.prototype={s:0,t:0,add:function(n){At(n,this.t,za),At(za.s,this.s,this),this.s?this.t+=za.t:this.s=za.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var za=new kt;mo.geo.stream=function(n,t){n&&Ca.hasOwnProperty(n.type)?Ca[n.type](n,t):Nt(n,t)};var Ca={Feature:function(n,t){Nt(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,u=e.length;++r<u;)Nt(e[r].geometry,t)}},Da={Sphere:function(n,t){t.sphere()},Point:function(n,t){n=n.coordinates,t.point(n[0],n[1],n[2])},MultiPoint:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)n=e[r],t.point(n[0],n[1],n[2])},LineString:function(n,t){Tt(n.coordinates,t,0)},MultiLineString:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)Tt(e[r],t,0)},Polygon:function(n,t){qt(n.coordinates,t)},MultiPolygon:function(n,t){for(var e=n.coordinates,r=-1,u=e.length;++r<u;)qt(e[r],t)},GeometryCollection:function(n,t){for(var e=n.geometries,r=-1,u=e.length;++r<u;)Nt(e[r],t)}};mo.geo.area=function(n){return ja=0,mo.geo.stream(n,Ha),ja};var ja,La=new kt,Ha={sphere:function(){ja+=4*Bo},point:c,lineStart:c,lineEnd:c,polygonStart:function(){La.reset(),Ha.lineStart=zt},polygonEnd:function(){var n=2*La;ja+=0>n?4*Bo+n:n,Ha.lineStart=Ha.lineEnd=Ha.point=c}};mo.geo.bounds=function(){function n(n,t){M.push(x=[s=n,h=n]),f>t&&(f=t),t>g&&(g=t)}function t(t,e){var r=Ct([t*Qo,e*Qo]);if(m){var u=jt(m,r),i=[u[1],-u[0],0],o=jt(i,u);Ft(o),o=Pt(o);var c=t-p,l=c>0?1:-1,d=o[0]*na*l,v=Math.abs(c)>180;if(v^(d>l*p&&l*t>d)){var y=o[1]*na;y>g&&(g=y)}else if(d=(d+360)%360-180,v^(d>l*p&&l*t>d)){var y=-o[1]*na;f>y&&(f=y)}else f>e&&(f=e),e>g&&(g=e);v?p>t?a(s,t)>a(s,h)&&(h=t):a(t,h)>a(s,h)&&(s=t):h>=s?(s>t&&(s=t),t>h&&(h=t)):t>p?a(s,t)>a(s,h)&&(h=t):a(t,h)>a(s,h)&&(s=t)}else n(t,e);m=r,p=t}function e(){b.point=t}function r(){x[0]=s,x[1]=h,b.point=n,m=null}function u(n,e){if(m){var r=n-p;y+=Math.abs(r)>180?r+(r>0?360:-360):r}else d=n,v=e;Ha.point(n,e),t(n,e)}function i(){Ha.lineStart()}function o(){u(d,v),Ha.lineEnd(),Math.abs(y)>Go&&(s=-(h=180)),x[0]=s,x[1]=h,m=null}function a(n,t){return(t-=n)<0?t+360:t}function c(n,t){return n[0]-t[0]}function l(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:n<t[0]||t[1]<n}var s,f,h,g,p,d,v,m,y,M,x,b={point:n,lineStart:e,lineEnd:r,polygonStart:function(){b.point=u,b.lineStart=i,b.lineEnd=o,y=0,Ha.polygonStart()},polygonEnd:function(){Ha.polygonEnd(),b.point=n,b.lineStart=e,b.lineEnd=r,0>La?(s=-(h=180),f=-(g=90)):y>Go?g=90:-Go>y&&(f=-90),x[0]=s,x[1]=h}};return function(n){g=h=-(s=f=1/0),M=[],mo.geo.stream(n,b);var t=M.length;if(t){M.sort(c);for(var e,r=1,u=M[0],i=[u];t>r;++r)e=M[r],l(e[0],u)||l(e[1],u)?(a(u[0],e[1])>a(u[0],u[1])&&(u[1]=e[1]),a(e[0],u[1])>a(u[0],u[1])&&(u[0]=e[0])):i.push(u=e);for(var o,e,p=-1/0,t=i.length-1,r=0,u=i[t];t>=r;u=e,++r)e=i[r],(o=a(u[1],e[0]))>p&&(p=o,s=e[0],h=u[1])}return M=x=null,1/0===s||1/0===f?[[0/0,0/0],[0/0,0/0]]:[[s,f],[h,g]]}}(),mo.geo.centroid=function(n){Fa=Pa=Oa=Ra=Ya=Ia=Ua=Za=Va=Xa=$a=0,mo.geo.stream(n,Ba);var t=Va,e=Xa,r=$a,u=t*t+e*e+r*r;return Ko>u&&(t=Ia,e=Ua,r=Za,Go>Pa&&(t=Oa,e=Ra,r=Ya),u=t*t+e*e+r*r,Ko>u)?[0/0,0/0]:[Math.atan2(e,t)*na,O(r/Math.sqrt(u))*na]};var Fa,Pa,Oa,Ra,Ya,Ia,Ua,Za,Va,Xa,$a,Ba={sphere:c,point:Rt,lineStart:It,lineEnd:Ut,polygonStart:function(){Ba.lineStart=Zt},polygonEnd:function(){Ba.lineStart=It}},Wa=Bt(Vt,Qt,te,[-Bo,-Bo/2]),Ja=1e9;mo.geo.clipExtent=function(){var n,t,e,r,u,i,o={stream:function(n){return u&&(u.valid=!1),u=i(n),u.valid=!0,u},extent:function(a){return arguments.length?(i=re(n=+a[0][0],t=+a[0][1],e=+a[1][0],r=+a[1][1]),u&&(u.valid=!1,u=null),o):[[n,t],[e,r]]}};return o.extent([[0,0],[960,500]])},(mo.geo.conicEqualArea=function(){return oe(ae)}).raw=ae,mo.geo.albers=function(){return mo.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},mo.geo.albersUsa=function(){function n(n){var i=n[0],o=n[1];return t=null,e(i,o),t||(r(i,o),t)||u(i,o),t}var t,e,r,u,i=mo.geo.albers(),o=mo.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),a=mo.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),c={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=i.scale(),e=i.translate(),r=(n[0]-e[0])/t,u=(n[1]-e[1])/t;return(u>=.12&&.234>u&&r>=-.425&&-.214>r?o:u>=.166&&.234>u&&r>=-.214&&-.115>r?a:i).invert(n)},n.stream=function(n){var t=i.stream(n),e=o.stream(n),r=a.stream(n);return{point:function(n,u){t.point(n,u),e.point(n,u),r.point(n,u)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(i.precision(t),o.precision(t),a.precision(t),n):i.precision()},n.scale=function(t){return arguments.length?(i.scale(t),o.scale(.35*t),a.scale(t),n.translate(i.translate())):i.scale()},n.translate=function(t){if(!arguments.length)return i.translate();var l=i.scale(),s=+t[0],f=+t[1];return e=i.translate(t).clipExtent([[s-.455*l,f-.238*l],[s+.455*l,f+.238*l]]).stream(c).point,r=o.translate([s-.307*l,f+.201*l]).clipExtent([[s-.425*l+Go,f+.12*l+Go],[s-.214*l-Go,f+.234*l-Go]]).stream(c).point,u=a.translate([s-.205*l,f+.212*l]).clipExtent([[s-.214*l+Go,f+.166*l+Go],[s-.115*l-Go,f+.234*l-Go]]).stream(c).point,n},n.scale(1070)};var Ga,Ka,Qa,nc,tc,ec,rc={point:c,lineStart:c,lineEnd:c,polygonStart:function(){Ka=0,rc.lineStart=ce},polygonEnd:function(){rc.lineStart=rc.lineEnd=rc.point=c,Ga+=Math.abs(Ka/2)}},uc={point:le,lineStart:c,lineEnd:c,polygonStart:c,polygonEnd:c},ic={point:he,lineStart:ge,lineEnd:pe,polygonStart:function(){ic.lineStart=de},polygonEnd:function(){ic.point=he,ic.lineStart=ge,ic.lineEnd=pe}};mo.geo.transform=function(n){return{stream:function(t){var e=new ye(t);for(var r in n)e[r]=n[r];return e}}},ye.prototype={point:function(n,t){this.stream.point(n,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},mo.geo.path=function(){function n(n){return n&&(\"function\"==typeof a&&i.pointRadius(+a.apply(this,arguments)),o&&o.valid||(o=u(i)),mo.geo.stream(n,o)),i.result()}function t(){return o=null,n}var e,r,u,i,o,a=4.5;return n.area=function(n){return Ga=0,mo.geo.stream(n,u(rc)),Ga},n.centroid=function(n){return Oa=Ra=Ya=Ia=Ua=Za=Va=Xa=$a=0,mo.geo.stream(n,u(ic)),$a?[Va/$a,Xa/$a]:Za?[Ia/Za,Ua/Za]:Ya?[Oa/Ya,Ra/Ya]:[0/0,0/0]},n.bounds=function(n){return tc=ec=-(Qa=nc=1/0),mo.geo.stream(n,u(uc)),[[Qa,nc],[tc,ec]]},n.projection=function(n){return arguments.length?(u=(e=n)?n.stream||Me(n):dt,t()):e},n.context=function(n){return arguments.length?(i=null==(r=n)?new se:new ve(n),\"function\"!=typeof a&&i.pointRadius(a),t()):r},n.pointRadius=function(t){return arguments.length?(a=\"function\"==typeof t?t:(i.pointRadius(+t),+t),n):a},n.projection(mo.geo.albersUsa()).context(null)},mo.geo.projection=xe,mo.geo.projectionMutator=be,(mo.geo.equirectangular=function(){return xe(we)}).raw=we.invert=we,mo.geo.rotation=function(n){function t(t){return t=n(t[0]*Qo,t[1]*Qo),t[0]*=na,t[1]*=na,t}return n=Ee(n[0]%360*Qo,n[1]*Qo,n.length>2?n[2]*Qo:0),t.invert=function(t){return t=n.invert(t[0]*Qo,t[1]*Qo),t[0]*=na,t[1]*=na,t},t},Se.invert=we,mo.geo.circle=function(){function n(){var n=\"function\"==typeof r?r.apply(this,arguments):r,t=Ee(-n[0]*Qo,-n[1]*Qo,0).invert,u=[];return e(null,null,1,{point:function(n,e){u.push(n=t(n,e)),n[0]*=na,n[1]*=na}}),{type:\"Polygon\",coordinates:[u]}}var t,e,r=[0,0],u=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=Te((t=+r)*Qo,u*Qo),n):t},n.precision=function(r){return arguments.length?(e=Te(t*Qo,(u=+r)*Qo),n):u},n.angle(90)},mo.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Qo,u=n[1]*Qo,i=t[1]*Qo,o=Math.sin(r),a=Math.cos(r),c=Math.sin(u),l=Math.cos(u),s=Math.sin(i),f=Math.cos(i);return Math.atan2(Math.sqrt((e=f*o)*e+(e=l*s-c*f*a)*e),c*s+l*f*a)},mo.geo.graticule=function(){function n(){return{type:\"MultiLineString\",coordinates:t()}}function t(){return mo.range(Math.ceil(i/v)*v,u,v).map(h).concat(mo.range(Math.ceil(l/m)*m,c,m).map(g)).concat(mo.range(Math.ceil(r/p)*p,e,p).filter(function(n){return Math.abs(n%v)>Go\n}).map(s)).concat(mo.range(Math.ceil(a/d)*d,o,d).filter(function(n){return Math.abs(n%m)>Go}).map(f))}var e,r,u,i,o,a,c,l,s,f,h,g,p=10,d=p,v=90,m=360,y=2.5;return n.lines=function(){return t().map(function(n){return{type:\"LineString\",coordinates:n}})},n.outline=function(){return{type:\"Polygon\",coordinates:[h(i).concat(g(c).slice(1),h(u).reverse().slice(1),g(l).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(i=+t[0][0],u=+t[1][0],l=+t[0][1],c=+t[1][1],i>u&&(t=i,i=u,u=t),l>c&&(t=l,l=c,c=t),n.precision(y)):[[i,l],[u,c]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],a=+t[0][1],o=+t[1][1],r>e&&(t=r,r=e,e=t),a>o&&(t=a,a=o,o=t),n.precision(y)):[[r,a],[e,o]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(v=+t[0],m=+t[1],n):[v,m]},n.minorStep=function(t){return arguments.length?(p=+t[0],d=+t[1],n):[p,d]},n.precision=function(t){return arguments.length?(y=+t,s=ze(a,o,90),f=Ce(r,e,y),h=ze(l,c,90),g=Ce(i,u,y),n):y},n.majorExtent([[-180,-90+Go],[180,90-Go]]).minorExtent([[-180,-80-Go],[180,80+Go]])},mo.geo.greatArc=function(){function n(){return{type:\"LineString\",coordinates:[t||r.apply(this,arguments),e||u.apply(this,arguments)]}}var t,e,r=De,u=je;return n.distance=function(){return mo.geo.distance(t||r.apply(this,arguments),e||u.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t=\"function\"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(u=t,e=\"function\"==typeof t?null:t,n):u},n.precision=function(){return arguments.length?n:0},n},mo.geo.interpolate=function(n,t){return Le(n[0]*Qo,n[1]*Qo,t[0]*Qo,t[1]*Qo)},mo.geo.length=function(n){return oc=0,mo.geo.stream(n,ac),oc};var oc,ac={sphere:c,point:c,lineStart:He,lineEnd:c,polygonStart:c,polygonEnd:c},cc=Fe(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(mo.geo.azimuthalEqualArea=function(){return xe(cc)}).raw=cc;var lc=Fe(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},dt);(mo.geo.azimuthalEquidistant=function(){return xe(lc)}).raw=lc,(mo.geo.conicConformal=function(){return oe(Pe)}).raw=Pe,(mo.geo.conicEquidistant=function(){return oe(Oe)}).raw=Oe;var sc=Fe(function(n){return 1/n},Math.atan);(mo.geo.gnomonic=function(){return xe(sc)}).raw=sc,Re.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Jo]},(mo.geo.mercator=function(){return Ye(Re)}).raw=Re;var fc=Fe(function(){return 1},Math.asin);(mo.geo.orthographic=function(){return xe(fc)}).raw=fc;var hc=Fe(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(mo.geo.stereographic=function(){return xe(hc)}).raw=hc,Ie.invert=function(n,t){return[Math.atan2(R(n),Math.cos(t)),O(Math.sin(t)/Y(n))]},(mo.geo.transverseMercator=function(){return Ye(Ie)}).raw=Ie,mo.geom={},mo.svg={},mo.svg.line=function(){return Ue(dt)};var gc=mo.map({linear:Xe,\"linear-closed\":$e,step:Be,\"step-before\":We,\"step-after\":Je,basis:er,\"basis-open\":rr,\"basis-closed\":ur,bundle:ir,cardinal:Qe,\"cardinal-open\":Ge,\"cardinal-closed\":Ke,monotone:fr});gc.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var pc=[0,2/3,1/3,0],dc=[0,1/3,2/3,0],vc=[0,1/6,2/3,1/6];mo.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,u,i,o,a,c,l,s,f,h,g,p,d=pt(e),v=pt(r),m=n.length,y=m-1,M=[],x=[],b=0;if(d===Ze&&r===Ve)t=n;else for(i=0,t=[];m>i;++i)t.push([+d.call(this,u=n[i],i),+v.call(this,u,i)]);for(i=1;m>i;++i)(t[i][1]<t[b][1]||t[i][1]==t[b][1]&&t[i][0]<t[b][0])&&(b=i);for(i=0;m>i;++i)i!==b&&(c=t[i][1]-t[b][1],a=t[i][0]-t[b][0],M.push({angle:Math.atan2(c,a),index:i}));for(M.sort(function(n,t){return n.angle-t.angle}),g=M[0].angle,h=M[0].index,f=0,i=1;y>i;++i){if(o=M[i].index,g==M[i].angle){if(a=t[h][0]-t[b][0],c=t[h][1]-t[b][1],l=t[o][0]-t[b][0],s=t[o][1]-t[b][1],a*a+c*c>=l*l+s*s){M[i].index=-1;continue}M[f].index=-1}g=M[i].angle,f=i,h=o}for(x.push(b),i=0,o=0;2>i;++o)M[o].index>-1&&(x.push(M[o].index),i++);for(p=x.length;y>o;++o)if(!(M[o].index<0)){for(;!hr(x[p-2],x[p-1],M[o].index,t);)--p;x[p++]=M[o].index}var _=[];for(i=p-1;i>=0;--i)_.push(n[x[i]]);return _}var e=Ze,r=Ve;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t)},mo.geom.polygon=function(n){return Lo(n,mc),n};var mc=mo.geom.polygon.prototype=[];mc.area=function(){for(var n,t=-1,e=this.length,r=this[e-1],u=0;++t<e;)n=r,r=this[t],u+=n[1]*r[0]-n[0]*r[1];return.5*u},mc.centroid=function(n){var t,e,r=-1,u=this.length,i=0,o=0,a=this[u-1];for(arguments.length||(n=-1/(6*this.area()));++r<u;)t=a,a=this[r],e=t[0]*a[1]-a[0]*t[1],i+=(t[0]+a[0])*e,o+=(t[1]+a[1])*e;return[i*n,o*n]},mc.clip=function(n){for(var t,e,r,u,i,o,a=dr(n),c=-1,l=this.length-dr(this),s=this[l-1];++c<l;){for(t=n.slice(),n.length=0,u=this[c],i=t[(r=t.length-a)-1],e=-1;++e<r;)o=t[e],gr(o,s,u)?(gr(i,s,u)||n.push(pr(i,o,s,u)),n.push(o)):gr(i,s,u)&&n.push(pr(i,o,s,u)),i=o;a&&n.push(n[0]),s=u}return n},mo.geom.delaunay=function(n){var t=n.map(function(){return[]}),e=[];return vr(n,function(e){t[e.region.l.index].push(n[e.region.r.index])}),t.forEach(function(t,r){var u=n[r],i=u[0],o=u[1];t.forEach(function(n){n.angle=Math.atan2(n[0]-i,n[1]-o)}),t.sort(function(n,t){return n.angle-t.angle});for(var a=0,c=t.length-1;c>a;a++)e.push([u,t[a],t[a+1]])}),e},mo.geom.voronoi=function(n){function t(n){var t,i,o,a=n.map(function(){return[]}),c=pt(e),l=pt(r),s=n.length,f=1e6;if(c===Ze&&l===Ve)t=n;else for(t=new Array(s),o=0;s>o;++o)t[o]=[+c.call(this,i=n[o],o),+l.call(this,i,o)];if(vr(t,function(n){var t,e,r,u,i,o;1===n.a&&n.b>=0?(t=n.ep.r,e=n.ep.l):(t=n.ep.l,e=n.ep.r),1===n.a?(i=t?t.y:-f,r=n.c-n.b*i,o=e?e.y:f,u=n.c-n.b*o):(r=t?t.x:-f,i=n.c-n.a*r,u=e?e.x:f,o=n.c-n.a*u);var c=[r,i],l=[u,o];a[n.region.l.index].push(c,l),a[n.region.r.index].push(c,l)}),a=a.map(function(n,e){var r=t[e][0],u=t[e][1],i=n.map(function(n){return Math.atan2(n[0]-r,n[1]-u)}),o=mo.range(n.length).sort(function(n,t){return i[n]-i[t]});return o.filter(function(n,t){return!t||i[n]-i[o[t-1]]>Go}).map(function(t){return n[t]})}),a.forEach(function(n,e){var r=n.length;if(!r)return n.push([-f,-f],[-f,f],[f,f],[f,-f]);if(!(r>2)){var u=t[e],i=n[0],o=n[1],a=u[0],c=u[1],l=i[0],s=i[1],h=o[0],g=o[1],p=Math.abs(h-l),d=g-s;if(Math.abs(d)<Go){var v=s>c?-f:f;n.push([-f,v],[f,v])}else if(Go>p){var m=l>a?-f:f;n.push([m,-f],[m,f])}else{var v=(l-a)*(g-s)>(h-l)*(s-c)?f:-f,y=Math.abs(d)-p;Math.abs(y)<Go?n.push([0>d?v:-v,v]):(y>0&&(v*=-1),n.push([-f,v],[f,v]))}}}),u)for(o=0;s>o;++o)u.clip(a[o]);for(o=0;s>o;++o)a[o].point=n[o];return a}var e=Ze,r=Ve,u=null;return arguments.length?t(n):(t.x=function(n){return arguments.length?(e=n,t):e},t.y=function(n){return arguments.length?(r=n,t):r},t.clipExtent=function(n){if(!arguments.length)return u&&[u[0],u[2]];if(null==n)u=null;else{var e=+n[0][0],r=+n[0][1],i=+n[1][0],o=+n[1][1];u=mo.geom.polygon([[e,r],[e,o],[i,o],[i,r]])}return t},t.size=function(n){return arguments.length?t.clipExtent(n&&[[0,0],n]):u&&u[2]},t.links=function(n){var t,u,i,o=n.map(function(){return[]}),a=[],c=pt(e),l=pt(r),s=n.length;if(c===Ze&&l===Ve)t=n;else for(t=new Array(s),i=0;s>i;++i)t[i]=[+c.call(this,u=n[i],i),+l.call(this,u,i)];return vr(t,function(t){var e=t.region.l.index,r=t.region.r.index;o[e][r]||(o[e][r]=o[r][e]=!0,a.push({source:n[e],target:n[r]}))}),a},t.triangles=function(n){if(e===Ze&&r===Ve)return mo.geom.delaunay(n);for(var t,u=new Array(c),i=pt(e),o=pt(r),a=-1,c=n.length;++a<c;)(u[a]=[+i.call(this,t=n[a],a),+o.call(this,t,a)]).data=t;return mo.geom.delaunay(u).map(function(n){return n.map(function(n){return n.data})})},t)};var yc={l:\"r\",r:\"l\"};mo.geom.quadtree=function(n,t,e,r,u){function i(n){function i(n,t,e,r,u,i,o,a){if(!isNaN(e)&&!isNaN(r))if(n.leaf){var c=n.x,s=n.y;if(null!=c)if(Math.abs(c-e)+Math.abs(s-r)<.01)l(n,t,e,r,u,i,o,a);else{var f=n.point;n.x=n.y=n.point=null,l(n,f,c,s,u,i,o,a),l(n,t,e,r,u,i,o,a)}else n.x=e,n.y=r,n.point=t}else l(n,t,e,r,u,i,o,a)}function l(n,t,e,r,u,o,a,c){var l=.5*(u+a),s=.5*(o+c),f=e>=l,h=r>=s,g=(h<<1)+f;n.leaf=!1,n=n.nodes[g]||(n.nodes[g]=Mr()),f?u=l:a=l,h?o=s:c=s,i(n,t,e,r,u,o,a,c)}var s,f,h,g,p,d,v,m,y,M=pt(a),x=pt(c);if(null!=t)d=t,v=e,m=r,y=u;else if(m=y=-(d=v=1/0),f=[],h=[],p=n.length,o)for(g=0;p>g;++g)s=n[g],s.x<d&&(d=s.x),s.y<v&&(v=s.y),s.x>m&&(m=s.x),s.y>y&&(y=s.y),f.push(s.x),h.push(s.y);else for(g=0;p>g;++g){var b=+M(s=n[g],g),_=+x(s,g);d>b&&(d=b),v>_&&(v=_),b>m&&(m=b),_>y&&(y=_),f.push(b),h.push(_)}var w=m-d,S=y-v;w>S?y=v+w:m=d+S;var E=Mr();if(E.add=function(n){i(E,n,+M(n,++g),+x(n,g),d,v,m,y)},E.visit=function(n){xr(n,E,d,v,m,y)},g=-1,null==t){for(;++g<p;)i(E,n[g],f[g],h[g],d,v,m,y);--g}else n.forEach(E.add);return f=h=n=s=null,E}var o,a=Ze,c=Ve;return(o=arguments.length)?(a=mr,c=yr,3===o&&(u=e,r=t,e=t=0),i(n)):(i.x=function(n){return arguments.length?(a=n,i):a},i.y=function(n){return arguments.length?(c=n,i):c},i.extent=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=+n[0][0],e=+n[0][1],r=+n[1][0],u=+n[1][1]),i):null==t?null:[[t,e],[r,u]]},i.size=function(n){return arguments.length?(null==n?t=e=r=u=null:(t=e=0,r=+n[0],u=+n[1]),i):null==t?null:[r-t,u-e]},i)},mo.interpolateRgb=br,mo.interpolateObject=_r,mo.interpolateNumber=wr,mo.interpolateString=Sr;var Mc=/[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g;mo.interpolate=Er,mo.interpolators=[function(n,t){var e=typeof t;return(\"string\"===e?da.has(t)||/^(#|rgb\\(|hsl\\()/.test(t)?br:Sr:t instanceof Z?br:\"object\"===e?Array.isArray(t)?kr:_r:wr)(n,t)}],mo.interpolateArray=kr;var xc=function(){return dt},bc=mo.map({linear:xc,poly:Dr,quad:function(){return qr},cubic:function(){return zr},sin:function(){return jr},exp:function(){return Lr},circle:function(){return Hr},elastic:Fr,back:Pr,bounce:function(){return Or}}),_c=mo.map({\"in\":dt,out:Nr,\"in-out\":Tr,\"out-in\":function(n){return Tr(Nr(n))}});mo.ease=function(n){var t=n.indexOf(\"-\"),e=t>=0?n.substring(0,t):n,r=t>=0?n.substring(t+1):\"in\";return e=bc.get(e)||xc,r=_c.get(r)||dt,Ar(r(e.apply(null,Array.prototype.slice.call(arguments,1))))},mo.interpolateHcl=Rr,mo.interpolateHsl=Yr,mo.interpolateLab=Ir,mo.interpolateRound=Ur,mo.transform=function(n){var t=xo.createElementNS(mo.ns.prefix.svg,\"g\");return(mo.transform=function(n){if(null!=n){t.setAttribute(\"transform\",n);var e=t.transform.baseVal.consolidate()}return new Zr(e?e.matrix:wc)})(n)},Zr.prototype.toString=function(){return\"translate(\"+this.translate+\")rotate(\"+this.rotate+\")skewX(\"+this.skew+\")scale(\"+this.scale+\")\"};var wc={a:1,b:0,c:0,d:1,e:0,f:0};mo.interpolateTransform=Br,mo.layout={},mo.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++e<r;)t.push(Gr(n[e]));return t}},mo.layout.chord=function(){function n(){var n,l,f,h,g,p={},d=[],v=mo.range(i),m=[];for(e=[],r=[],n=0,h=-1;++h<i;){for(l=0,g=-1;++g<i;)l+=u[h][g];d.push(l),m.push(mo.range(i)),n+=l}for(o&&v.sort(function(n,t){return o(d[n],d[t])}),a&&m.forEach(function(n,t){n.sort(function(n,e){return a(u[t][n],u[t][e])})}),n=(Wo-s*i)/n,l=0,h=-1;++h<i;){for(f=l,g=-1;++g<i;){var y=v[h],M=m[y][g],x=u[y][M],b=l,_=l+=x*n;p[y+\"-\"+M]={index:y,subindex:M,startAngle:b,endAngle:_,value:x}}r[y]={index:y,startAngle:f,endAngle:l,value:(l-f)/n},l+=s}for(h=-1;++h<i;)for(g=h-1;++g<i;){var w=p[h+\"-\"+g],S=p[g+\"-\"+h];(w.value||S.value)&&e.push(w.value<S.value?{source:S,target:w}:{source:w,target:S})}c&&t()}function t(){e.sort(function(n,t){return c((n.source.value+n.target.value)/2,(t.source.value+t.target.value)/2)})}var e,r,u,i,o,a,c,l={},s=0;return l.matrix=function(n){return arguments.length?(i=(u=n)&&u.length,e=r=null,l):u},l.padding=function(n){return arguments.length?(s=n,e=r=null,l):s},l.sortGroups=function(n){return arguments.length?(o=n,e=r=null,l):o},l.sortSubgroups=function(n){return arguments.length?(a=n,e=null,l):a},l.sortChords=function(n){return arguments.length?(c=n,e&&t(),l):c},l.chords=function(){return e||n(),e},l.groups=function(){return r||n(),r},l},mo.layout.force=function(){function n(n){return function(t,e,r,u){if(t.point!==n){var i=t.cx-n.x,o=t.cy-n.y,a=1/Math.sqrt(i*i+o*o);if(d>(u-e)*a){var c=t.charge*a*a;return n.px-=i*c,n.py-=o*c,!0}if(t.point&&isFinite(a)){var c=t.pointCharge*a*a;n.px-=i*c,n.py-=o*c}}return!t.charge}}function t(n){n.px=mo.event.x,n.py=mo.event.y,a.resume()}var e,r,u,i,o,a={},c=mo.dispatch(\"start\",\"tick\",\"end\"),l=[1,1],s=.9,f=Sc,h=Ec,g=-30,p=.1,d=.8,v=[],m=[];return a.tick=function(){if((r*=.99)<.005)return c.end({type:\"end\",alpha:r=0}),!0;var t,e,a,f,h,d,y,M,x,b=v.length,_=m.length;for(e=0;_>e;++e)a=m[e],f=a.source,h=a.target,M=h.x-f.x,x=h.y-f.y,(d=M*M+x*x)&&(d=r*i[e]*((d=Math.sqrt(d))-u[e])/d,M*=d,x*=d,h.x-=M*(y=f.weight/(h.weight+f.weight)),h.y-=x*y,f.x+=M*(y=1-y),f.y+=x*y);if((y=r*p)&&(M=l[0]/2,x=l[1]/2,e=-1,y))for(;++e<b;)a=v[e],a.x+=(M-a.x)*y,a.y+=(x-a.y)*y;if(g)for(uu(t=mo.geom.quadtree(v),r,o),e=-1;++e<b;)(a=v[e]).fixed||t.visit(n(a));for(e=-1;++e<b;)a=v[e],a.fixed?(a.x=a.px,a.y=a.py):(a.x-=(a.px-(a.px=a.x))*s,a.y-=(a.py-(a.py=a.y))*s);c.tick({type:\"tick\",alpha:r})},a.nodes=function(n){return arguments.length?(v=n,a):v},a.links=function(n){return arguments.length?(m=n,a):m},a.size=function(n){return arguments.length?(l=n,a):l},a.linkDistance=function(n){return arguments.length?(f=\"function\"==typeof n?n:+n,a):f},a.distance=a.linkDistance,a.linkStrength=function(n){return arguments.length?(h=\"function\"==typeof n?n:+n,a):h},a.friction=function(n){return arguments.length?(s=+n,a):s},a.charge=function(n){return arguments.length?(g=\"function\"==typeof n?n:+n,a):g},a.gravity=function(n){return arguments.length?(p=+n,a):p},a.theta=function(n){return arguments.length?(d=+n,a):d},a.alpha=function(n){return arguments.length?(n=+n,r?r=n>0?n:0:n>0&&(c.start({type:\"start\",alpha:r=n}),mo.timer(a.tick)),a):r},a.start=function(){function n(n,r){for(var u,i=t(e),o=-1,a=i.length;++o<a;)if(!isNaN(u=i[o][n]))return u;return Math.random()*r}function t(){if(!c){for(c=[],r=0;p>r;++r)c[r]=[];for(r=0;d>r;++r){var n=m[r];c[n.source.index].push(n.target),c[n.target.index].push(n.source)}}return c[e]}var e,r,c,s,p=v.length,d=m.length,y=l[0],M=l[1];for(e=0;p>e;++e)(s=v[e]).index=e,s.weight=0;for(e=0;d>e;++e)s=m[e],\"number\"==typeof s.source&&(s.source=v[s.source]),\"number\"==typeof s.target&&(s.target=v[s.target]),++s.source.weight,++s.target.weight;for(e=0;p>e;++e)s=v[e],isNaN(s.x)&&(s.x=n(\"x\",y)),isNaN(s.y)&&(s.y=n(\"y\",M)),isNaN(s.px)&&(s.px=s.x),isNaN(s.py)&&(s.py=s.y);if(u=[],\"function\"==typeof f)for(e=0;d>e;++e)u[e]=+f.call(this,m[e],e);else for(e=0;d>e;++e)u[e]=f;if(i=[],\"function\"==typeof h)for(e=0;d>e;++e)i[e]=+h.call(this,m[e],e);else for(e=0;d>e;++e)i[e]=h;if(o=[],\"function\"==typeof g)for(e=0;p>e;++e)o[e]=+g.call(this,v[e],e);else for(e=0;p>e;++e)o[e]=g;return a.resume()},a.resume=function(){return a.alpha(.1)},a.stop=function(){return a.alpha(0)},a.drag=function(){return e||(e=mo.behavior.drag().origin(dt).on(\"dragstart.force\",nu).on(\"drag.force\",t).on(\"dragend.force\",tu)),arguments.length?(this.on(\"mouseover.force\",eu).on(\"mouseout.force\",ru).call(e),void 0):e},mo.rebind(a,c,\"on\")};var Sc=20,Ec=1;mo.layout.hierarchy=function(){function n(t,o,a){var c=u.call(e,t,o);if(t.depth=o,a.push(t),c&&(l=c.length)){for(var l,s,f=-1,h=t.children=[],g=0,p=o+1;++f<l;)s=n(c[f],p,a),s.parent=t,h.push(s),g+=s.value;r&&h.sort(r),i&&(t.value=g)}else i&&(t.value=+i.call(e,t,o)||0);return t}function t(n,r){var u=n.children,o=0;if(u&&(a=u.length))for(var a,c=-1,l=r+1;++c<a;)o+=t(u[c],l);else i&&(o=+i.call(e,n,r)||0);return i&&(n.value=o),o}function e(t){var e=[];return n(t,0,e),e}var r=cu,u=ou,i=au;return e.sort=function(n){return arguments.length?(r=n,e):r},e.children=function(n){return arguments.length?(u=n,e):u},e.value=function(n){return arguments.length?(i=n,e):i},e.revalue=function(n){return t(n,0),n},e},mo.layout.partition=function(){function n(t,e,r,u){var i=t.children;if(t.x=e,t.y=t.depth*u,t.dx=r,t.dy=u,i&&(o=i.length)){var o,a,c,l=-1;for(r=t.value?r/t.value:0;++l<o;)n(a=i[l],e,c=a.value*r,u),e+=c}}function t(n){var e=n.children,r=0;if(e&&(u=e.length))for(var u,i=-1;++i<u;)r=Math.max(r,t(e[i]));return 1+r}function e(e,i){var o=r.call(this,e,i);return n(o[0],0,u[0],u[1]/t(o[0])),o}var r=mo.layout.hierarchy(),u=[1,1];return e.size=function(n){return arguments.length?(u=n,e):u},iu(e,r)},mo.layout.pie=function(){function n(i){var o=i.map(function(e,r){return+t.call(n,e,r)}),a=+(\"function\"==typeof r?r.apply(this,arguments):r),c=((\"function\"==typeof u?u.apply(this,arguments):u)-a)/mo.sum(o),l=mo.range(i.length);null!=e&&l.sort(e===kc?function(n,t){return o[t]-o[n]}:function(n,t){return e(i[n],i[t])});var s=[];return l.forEach(function(n){var t;s[n]={data:i[n],value:t=o[n],startAngle:a,endAngle:a+=t*c}}),s}var t=Number,e=kc,r=0,u=Wo;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(u=t,n):u},n};var kc={};mo.layout.stack=function(){function n(a,c){var l=a.map(function(e,r){return t.call(n,e,r)}),s=l.map(function(t){return t.map(function(t,e){return[i.call(n,t,e),o.call(n,t,e)]})}),f=e.call(n,s,c);l=mo.permute(l,f),s=mo.permute(s,f);var h,g,p,d=r.call(n,s,c),v=l.length,m=l[0].length;for(g=0;m>g;++g)for(u.call(n,l[0][g],p=d[g],s[0][g][1]),h=1;v>h;++h)u.call(n,l[h][g],p+=s[h-1][g][1],s[h][g][1]);return a}var t=dt,e=gu,r=pu,u=hu,i=su,o=fu;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e=\"function\"==typeof t?t:Ac.get(t)||gu,n):e},n.offset=function(t){return arguments.length?(r=\"function\"==typeof t?t:Nc.get(t)||pu,n):r},n.x=function(t){return arguments.length?(i=t,n):i},n.y=function(t){return arguments.length?(o=t,n):o},n.out=function(t){return arguments.length?(u=t,n):u},n};var Ac=mo.map({\"inside-out\":function(n){var t,e,r=n.length,u=n.map(du),i=n.map(vu),o=mo.range(r).sort(function(n,t){return u[n]-u[t]}),a=0,c=0,l=[],s=[];for(t=0;r>t;++t)e=o[t],c>a?(a+=i[e],l.push(e)):(c+=i[e],s.push(e));return s.reverse().concat(l)},reverse:function(n){return mo.range(n.length).reverse()},\"default\":gu}),Nc=mo.map({silhouette:function(n){var t,e,r,u=n.length,i=n[0].length,o=[],a=0,c=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;i>e;++e)c[e]=(a-o[e])/2;return c},wiggle:function(n){var t,e,r,u,i,o,a,c,l,s=n.length,f=n[0],h=f.length,g=[];for(g[0]=c=l=0,e=1;h>e;++e){for(t=0,u=0;s>t;++t)u+=n[t][e][1];for(t=0,i=0,a=f[e][0]-f[e-1][0];s>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;i+=o*n[t][e][1]}g[e]=c-=u?i/u*a:0,l>c&&(l=c)}for(e=0;h>e;++e)g[e]-=l;return g},expand:function(n){var t,e,r,u=n.length,i=n[0].length,o=1/u,a=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];if(r)for(t=0;u>t;t++)n[t][e][1]/=r;else for(t=0;u>t;t++)n[t][e][1]=o}for(e=0;i>e;++e)a[e]=0;return a},zero:pu});mo.layout.histogram=function(){function n(n,i){for(var o,a,c=[],l=n.map(e,this),s=r.call(this,l,i),f=u.call(this,s,l,i),i=-1,h=l.length,g=f.length-1,p=t?1:1/h;++i<g;)o=c[i]=[],o.dx=f[i+1]-(o.x=f[i]),o.y=0;if(g>0)for(i=-1;++i<h;)a=l[i],a>=s[0]&&a<=s[1]&&(o=c[mo.bisect(f,a,1,g)-1],o.y+=p,o.push(n[i]));return c}var t=!0,e=Number,r=xu,u=yu;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=pt(t),n):r},n.bins=function(t){return arguments.length?(u=\"number\"==typeof t?function(n){return Mu(n,t)}:pt(t),n):u},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},mo.layout.tree=function(){function n(n,i){function o(n,t){var r=n.children,u=n._tree;if(r&&(i=r.length)){for(var i,a,l,s=r[0],f=s,h=-1;++h<i;)l=r[h],o(l,a),f=c(l,a,f),a=l;Tu(n);var g=.5*(s._tree.prelim+l._tree.prelim);t?(u.prelim=t._tree.prelim+e(n,t),u.mod=u.prelim-g):u.prelim=g}else t&&(u.prelim=t._tree.prelim+e(n,t))}function a(n,t){n.x=n._tree.prelim+t;var e=n.children;if(e&&(r=e.length)){var r,u=-1;for(t+=n._tree.mod;++u<r;)a(e[u],t)}}function c(n,t,r){if(t){for(var u,i=n,o=n,a=t,c=n.parent.children[0],l=i._tree.mod,s=o._tree.mod,f=a._tree.mod,h=c._tree.mod;a=wu(a),i=_u(i),a&&i;)c=_u(c),o=wu(o),o._tree.ancestor=n,u=a._tree.prelim+f-i._tree.prelim-l+e(a,i),u>0&&(qu(zu(a,n,r),n,u),l+=u,s+=u),f+=a._tree.mod,l+=i._tree.mod,h+=c._tree.mod,s+=o._tree.mod;a&&!wu(o)&&(o._tree.thread=a,o._tree.mod+=f-s),i&&!_u(c)&&(c._tree.thread=i,c._tree.mod+=l-h,r=n)}return r}var l=t.call(this,n,i),s=l[0];Nu(s,function(n,t){n._tree={ancestor:n,prelim:0,mod:0,change:0,shift:0,number:t?t._tree.number+1:0}}),o(s),a(s,-s._tree.prelim);var f=Su(s,ku),h=Su(s,Eu),g=Su(s,Au),p=f.x-e(f,h)/2,d=h.x+e(h,f)/2,v=g.depth||1;return Nu(s,u?function(n){n.x*=r[0],n.y=n.depth*r[1],delete n._tree}:function(n){n.x=(n.x-p)/(d-p)*r[0],n.y=n.depth/v*r[1],delete n._tree}),l}var t=mo.layout.hierarchy().sort(null).value(null),e=bu,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},iu(n,t)},mo.layout.pack=function(){function n(n,i){var o=e.call(this,n,i),a=o[0],c=u[0],l=u[1],s=null==t?Math.sqrt:\"function\"==typeof t?t:function(){return t};if(a.x=a.y=0,Nu(a,function(n){n.r=+s(n.value)}),Nu(a,Hu),r){var f=r*(t?1:Math.max(2*a.r/c,2*a.r/l))/2;Nu(a,function(n){n.r+=f}),Nu(a,Hu),Nu(a,function(n){n.r-=f})}return Ou(a,c/2,l/2,t?1:1/Math.max(2*a.r/c,2*a.r/l)),o}var t,e=mo.layout.hierarchy().sort(Cu),r=0,u=[1,1];return n.size=function(t){return arguments.length?(u=t,n):u},n.radius=function(e){return arguments.length?(t=null==e||\"function\"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},iu(n,e)},mo.layout.cluster=function(){function n(n,i){var o,a=t.call(this,n,i),c=a[0],l=0;Nu(c,function(n){var t=n.children;t&&t.length?(n.x=Iu(t),n.y=Yu(t)):(n.x=o?l+=e(n,o):0,n.y=0,o=n)});var s=Uu(c),f=Zu(c),h=s.x-e(s,f)/2,g=f.x+e(f,s)/2;return Nu(c,u?function(n){n.x=(n.x-c.x)*r[0],n.y=(c.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(g-h)*r[0],n.y=(1-(c.y?n.y/c.y:1))*r[1]}),a}var t=mo.layout.hierarchy().sort(null).value(null),e=bu,r=[1,1],u=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(u=null==(r=t),n):u?null:r},n.nodeSize=function(t){return arguments.length?(u=null!=(r=t),n):u?r:null},iu(n,t)},mo.layout.treemap=function(){function n(n,t){for(var e,r,u=-1,i=n.length;++u<i;)r=(e=n[u]).value*(0>t?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var i=e.children;if(i&&i.length){var o,a,c,l=f(e),s=[],h=i.slice(),p=1/0,d=\"slice\"===g?l.dx:\"dice\"===g?l.dy:\"slice-dice\"===g?1&e.depth?l.dy:l.dx:Math.min(l.dx,l.dy);for(n(h,l.dx*l.dy/e.value),s.area=0;(c=h.length)>0;)s.push(o=h[c-1]),s.area+=o.area,\"squarify\"!==g||(a=r(s,d))<=p?(h.pop(),p=a):(s.area-=s.pop().area,u(s,d,l,!1),d=Math.min(l.dx,l.dy),s.length=s.area=0,p=1/0);s.length&&(u(s,d,l,!0),s.length=s.area=0),i.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var i,o=f(t),a=r.slice(),c=[];for(n(a,o.dx*o.dy/t.value),c.area=0;i=a.pop();)c.push(i),c.area+=i.area,null!=i.z&&(u(c,i.z?o.dx:o.dy,o,!a.length),c.length=c.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,u=0,i=1/0,o=-1,a=n.length;++o<a;)(e=n[o].area)&&(i>e&&(i=e),e>u&&(u=e));return r*=r,t*=t,r?Math.max(t*u*p/r,r/(t*i*p)):1/0}function u(n,t,e,r){var u,i=-1,o=n.length,a=e.x,l=e.y,s=t?c(n.area/t):0;if(t==e.dx){for((r||s>e.dy)&&(s=e.dy);++i<o;)u=n[i],u.x=a,u.y=l,u.dy=s,a+=u.dx=Math.min(e.x+e.dx-a,s?c(u.area/s):0);u.z=!0,u.dx+=e.x+e.dx-a,e.y+=s,e.dy-=s}else{for((r||s>e.dx)&&(s=e.dx);++i<o;)u=n[i],u.x=a,u.y=l,u.dx=s,l+=u.dy=Math.min(e.y+e.dy-l,s?c(u.area/s):0);u.z=!1,u.dy+=e.y+e.dy-l,e.x+=s,e.dx-=s}}function i(r){var u=o||a(r),i=u[0];return i.x=0,i.y=0,i.dx=l[0],i.dy=l[1],o&&a.revalue(i),n([i],i.dx*i.dy/i.value),(o?e:t)(i),h&&(o=u),u}var o,a=mo.layout.hierarchy(),c=Math.round,l=[1,1],s=null,f=Vu,h=!1,g=\"squarify\",p=.5*(1+Math.sqrt(5));return i.size=function(n){return arguments.length?(l=n,i):l},i.padding=function(n){function t(t){var e=n.call(i,t,t.depth);return null==e?Vu(t):Xu(t,\"number\"==typeof e?[e,e,e,e]:e)}function e(t){return Xu(t,n)}if(!arguments.length)return s;var r;return f=null==(s=n)?Vu:\"function\"==(r=typeof n)?t:\"number\"===r?(n=[n,n,n,n],e):e,i},i.round=function(n){return arguments.length?(c=n?Math.round:Number,i):c!=Number},i.sticky=function(n){return arguments.length?(h=n,o=null,i):h},i.ratio=function(n){return arguments.length?(p=n,i):p},i.mode=function(n){return arguments.length?(g=n+\"\",i):g},iu(i,a)},mo.random={normal:function(n,t){var e=arguments.length;return 2>e&&(t=1),1>e&&(n=0),function(){var e,r,u;do e=2*Math.random()-1,r=2*Math.random()-1,u=e*e+r*r;while(!u||u>1);return n+t*e*Math.sqrt(-2*Math.log(u)/u)}},logNormal:function(){var n=mo.random.normal.apply(mo,arguments);return function(){return Math.exp(n())}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t/n}}},mo.scale={};var Tc={floor:dt,ceil:dt};mo.scale.linear=function(){return Qu([0,1],[0,1],Er,!1)},mo.scale.log=function(){return ii(mo.scale.linear().domain([0,1]),10,!0,[1,10])};var qc=mo.format(\".0e\"),zc={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};mo.scale.pow=function(){return oi(mo.scale.linear(),1,[0,1])},mo.scale.sqrt=function(){return mo.scale.pow().exponent(.5)},mo.scale.ordinal=function(){return ci([],{t:\"range\",a:[[]]})},mo.scale.category10=function(){return mo.scale.ordinal().range(Cc)},mo.scale.category20=function(){return mo.scale.ordinal().range(Dc)},mo.scale.category20b=function(){return mo.scale.ordinal().range(jc)},mo.scale.category20c=function(){return mo.scale.ordinal().range(Lc)};var Cc=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(it),Dc=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(it),jc=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(it),Lc=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(it);mo.scale.quantile=function(){return li([],[])},mo.scale.quantize=function(){return si(0,1,[0,1])},mo.scale.threshold=function(){return fi([.5],[0,1])},mo.scale.identity=function(){return hi([0,1])},mo.svg.arc=function(){function n(){var n=t.apply(this,arguments),i=e.apply(this,arguments),o=r.apply(this,arguments)+Hc,a=u.apply(this,arguments)+Hc,c=(o>a&&(c=o,o=a,a=c),a-o),l=Bo>c?\"0\":\"1\",s=Math.cos(o),f=Math.sin(o),h=Math.cos(a),g=Math.sin(a);return c>=Fc?n?\"M0,\"+i+\"A\"+i+\",\"+i+\" 0 1,1 0,\"+-i+\"A\"+i+\",\"+i+\" 0 1,1 0,\"+i+\"M0,\"+n+\"A\"+n+\",\"+n+\" 0 1,0 0,\"+-n+\"A\"+n+\",\"+n+\" 0 1,0 0,\"+n+\"Z\":\"M0,\"+i+\"A\"+i+\",\"+i+\" 0 1,1 0,\"+-i+\"A\"+i+\",\"+i+\" 0 1,1 0,\"+i+\"Z\":n?\"M\"+i*s+\",\"+i*f+\"A\"+i+\",\"+i+\" 0 \"+l+\",1 \"+i*h+\",\"+i*g+\"L\"+n*h+\",\"+n*g+\"A\"+n+\",\"+n+\" 0 \"+l+\",0 \"+n*s+\",\"+n*f+\"Z\":\"M\"+i*s+\",\"+i*f+\"A\"+i+\",\"+i+\" 0 \"+l+\",1 \"+i*h+\",\"+i*g+\"L0,0\"+\"Z\"}var t=gi,e=pi,r=di,u=vi;return n.innerRadius=function(e){return arguments.length?(t=pt(e),n):t},n.outerRadius=function(t){return arguments.length?(e=pt(t),n):e},n.startAngle=function(t){return arguments.length?(r=pt(t),n):r},n.endAngle=function(t){return arguments.length?(u=pt(t),n):u},n.centroid=function(){var n=(t.apply(this,arguments)+e.apply(this,arguments))/2,i=(r.apply(this,arguments)+u.apply(this,arguments))/2+Hc;return[Math.cos(i)*n,Math.sin(i)*n]},n};var Hc=-Jo,Fc=Wo-Go;mo.svg.line.radial=function(){var n=Ue(mi);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},We.reverse=Je,Je.reverse=We,mo.svg.area=function(){return yi(dt)},mo.svg.area.radial=function(){var n=yi(mi);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},mo.svg.chord=function(){function n(n,a){var c=t(this,i,n,a),l=t(this,o,n,a);return\"M\"+c.p0+r(c.r,c.p1,c.a1-c.a0)+(e(c,l)?u(c.r,c.p1,c.r,c.p0):u(c.r,c.p1,l.r,l.p0)+r(l.r,l.p1,l.a1-l.a0)+u(l.r,l.p1,c.r,c.p0))+\"Z\"}function t(n,t,e,r){var u=t.call(n,e,r),i=a.call(n,u,r),o=c.call(n,u,r)+Hc,s=l.call(n,u,r)+Hc;return{r:i,a0:o,a1:s,p0:[i*Math.cos(o),i*Math.sin(o)],p1:[i*Math.cos(s),i*Math.sin(s)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return\"A\"+n+\",\"+n+\" 0 \"+ +(e>Bo)+\",1 \"+t}function u(n,t,e,r){return\"Q 0,0 \"+r}var i=De,o=je,a=Mi,c=di,l=vi;return n.radius=function(t){return arguments.length?(a=pt(t),n):a},n.source=function(t){return arguments.length?(i=pt(t),n):i},n.target=function(t){return arguments.length?(o=pt(t),n):o},n.startAngle=function(t){return arguments.length?(c=pt(t),n):c},n.endAngle=function(t){return arguments.length?(l=pt(t),n):l},n},mo.svg.diagonal=function(){function n(n,u){var i=t.call(this,n,u),o=e.call(this,n,u),a=(i.y+o.y)/2,c=[i,{x:i.x,y:a},{x:o.x,y:a},o];return c=c.map(r),\"M\"+c[0]+\"C\"+c[1]+\" \"+c[2]+\" \"+c[3]}var t=De,e=je,r=xi;return n.source=function(e){return arguments.length?(t=pt(e),n):t},n.target=function(t){return arguments.length?(e=pt(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},mo.svg.diagonal.radial=function(){var n=mo.svg.diagonal(),t=xi,e=n.projection;return n.projection=function(n){return arguments.length?e(bi(t=n)):t},n},mo.svg.symbol=function(){function n(n,r){return(Pc.get(t.call(this,n,r))||Si)(e.call(this,n,r))}var t=wi,e=_i;return n.type=function(e){return arguments.length?(t=pt(e),n):t},n.size=function(t){return arguments.length?(e=pt(t),n):e},n};var Pc=mo.map({circle:Si,cross:function(n){var t=Math.sqrt(n/5)/2;return\"M\"+-3*t+\",\"+-t+\"H\"+-t+\"V\"+-3*t+\"H\"+t+\"V\"+-t+\"H\"+3*t+\"V\"+t+\"H\"+t+\"V\"+3*t+\"H\"+-t+\"V\"+t+\"H\"+-3*t+\"Z\"},diamond:function(n){var t=Math.sqrt(n/(2*Ic)),e=t*Ic;return\"M0,\"+-t+\"L\"+e+\",0\"+\" 0,\"+t+\" \"+-e+\",0\"+\"Z\"},square:function(n){var t=Math.sqrt(n)/2;return\"M\"+-t+\",\"+-t+\"L\"+t+\",\"+-t+\" \"+t+\",\"+t+\" \"+-t+\",\"+t+\"Z\"},\"triangle-down\":function(n){var t=Math.sqrt(n/Yc),e=t*Yc/2;return\"M0,\"+e+\"L\"+t+\",\"+-e+\" \"+-t+\",\"+-e+\"Z\"},\"triangle-up\":function(n){var t=Math.sqrt(n/Yc),e=t*Yc/2;return\"M0,\"+-e+\"L\"+t+\",\"+e+\" \"+-t+\",\"+e+\"Z\"}});mo.svg.symbolTypes=Pc.keys();var Oc,Rc,Yc=Math.sqrt(3),Ic=Math.tan(30*Qo),Uc=[],Zc=0;Uc.call=Ro.call,Uc.empty=Ro.empty,Uc.node=Ro.node,Uc.size=Ro.size,mo.transition=function(n){return arguments.length?Oc?n.transition():n:Uo.transition()},mo.transition.prototype=Uc,Uc.select=function(n){var t,e,r,u=this.id,i=[];n=d(n);for(var o=-1,a=this.length;++o<a;){i.push(t=[]);for(var c=this[o],l=-1,s=c.length;++l<s;)(r=c[l])&&(e=n.call(r,r.__data__,l,o))?(\"__data__\"in r&&(e.__data__=r.__data__),Ni(e,l,u,r.__transition__[u]),t.push(e)):t.push(null)}return Ei(i,u)},Uc.selectAll=function(n){var t,e,r,u,i,o=this.id,a=[];n=v(n);for(var c=-1,l=this.length;++c<l;)for(var s=this[c],f=-1,h=s.length;++f<h;)if(r=s[f]){i=r.__transition__[o],e=n.call(r,r.__data__,f,c),a.push(t=[]);for(var g=-1,p=e.length;++g<p;)(u=e[g])&&Ni(u,g,o,i),t.push(u)}return Ei(a,o)},Uc.filter=function(n){var t,e,r,u=[];\"function\"!=typeof n&&(n=k(n));for(var i=0,o=this.length;o>i;i++){u.push(t=[]);for(var e=this[i],a=0,c=e.length;c>a;a++)(r=e[a])&&n.call(r,r.__data__,a)&&t.push(r)}return Ei(u,this.id)},Uc.tween=function(n,t){var e=this.id;return arguments.length<2?this.node().__transition__[e].tween.get(n):N(this,null==t?function(t){t.__transition__[e].tween.remove(n)}:function(r){r.__transition__[e].tween.set(n,t)})},Uc.attr=function(n,t){function e(){this.removeAttribute(a)}function r(){this.removeAttributeNS(a.space,a.local)}function u(n){return null==n?e:(n+=\"\",function(){var t,e=this.getAttribute(a);return e!==n&&(t=o(e,n),function(n){this.setAttribute(a,t(n))})})}function i(n){return null==n?r:(n+=\"\",function(){var t,e=this.getAttributeNS(a.space,a.local);return e!==n&&(t=o(e,n),function(n){this.setAttributeNS(a.space,a.local,t(n))\n})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var o=\"transform\"==n?Br:Er,a=mo.ns.qualify(n);return ki(this,\"attr.\"+n,t,a.local?i:u)},Uc.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(u));return r&&function(n){this.setAttribute(u,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(u.space,u.local));return r&&function(n){this.setAttributeNS(u.space,u.local,r(n))}}var u=mo.ns.qualify(n);return this.tween(\"attr.\"+n,u.local?r:e)},Uc.style=function(n,t,e){function r(){this.style.removeProperty(n)}function u(t){return null==t?r:(t+=\"\",function(){var r,u=_o.getComputedStyle(this,null).getPropertyValue(n);return u!==t&&(r=Er(u,t),function(t){this.style.setProperty(n,r(t),e)})})}var i=arguments.length;if(3>i){if(\"string\"!=typeof n){2>i&&(t=\"\");for(e in n)this.style(e,n[e],t);return this}e=\"\"}return ki(this,\"style.\"+n,t,u)},Uc.styleTween=function(n,t,e){function r(r,u){var i=t.call(this,r,u,_o.getComputedStyle(this,null).getPropertyValue(n));return i&&function(t){this.style.setProperty(n,i(t),e)}}return arguments.length<3&&(e=\"\"),this.tween(\"style.\"+n,r)},Uc.text=function(n){return ki(this,\"text\",n,Ai)},Uc.remove=function(){return this.each(\"end.transition\",function(){var n;this.__transition__.count<2&&(n=this.parentNode)&&n.removeChild(this)})},Uc.ease=function(n){var t=this.id;return arguments.length<1?this.node().__transition__[t].ease:(\"function\"!=typeof n&&(n=mo.ease.apply(mo,arguments)),N(this,function(e){e.__transition__[t].ease=n}))},Uc.delay=function(n){var t=this.id;return N(this,\"function\"==typeof n?function(e,r,u){e.__transition__[t].delay=+n.call(e,e.__data__,r,u)}:(n=+n,function(e){e.__transition__[t].delay=n}))},Uc.duration=function(n){var t=this.id;return N(this,\"function\"==typeof n?function(e,r,u){e.__transition__[t].duration=Math.max(1,n.call(e,e.__data__,r,u))}:(n=Math.max(1,n),function(e){e.__transition__[t].duration=n}))},Uc.each=function(n,t){var e=this.id;if(arguments.length<2){var r=Rc,u=Oc;Oc=e,N(this,function(t,r,u){Rc=t.__transition__[e],n.call(t,t.__data__,r,u)}),Rc=r,Oc=u}else N(this,function(r){var u=r.__transition__[e];(u.event||(u.event=mo.dispatch(\"start\",\"end\"))).on(n,t)});return this},Uc.transition=function(){for(var n,t,e,r,u=this.id,i=++Zc,o=[],a=0,c=this.length;c>a;a++){o.push(n=[]);for(var t=this[a],l=0,s=t.length;s>l;l++)(e=t[l])&&(r=Object.create(e.__transition__[u]),r.delay+=r.duration,Ni(e,l,i,r)),n.push(e)}return Ei(o,i)},mo.svg.axis=function(){function n(n){n.each(function(){var n,l=mo.select(this),s=this.__chart__||e,f=this.__chart__=e.copy(),h=null==c?f.ticks?f.ticks.apply(f,a):f.domain():c,g=null==t?f.tickFormat?f.tickFormat.apply(f,a):dt:t,p=l.selectAll(\".tick\").data(h,f),d=p.enter().insert(\"g\",\".domain\").attr(\"class\",\"tick\").style(\"opacity\",Go),v=mo.transition(p.exit()).style(\"opacity\",Go).remove(),m=mo.transition(p).style(\"opacity\",1),y=Bu(f),M=l.selectAll(\".domain\").data([0]),x=(M.enter().append(\"path\").attr(\"class\",\"domain\"),mo.transition(M));d.append(\"line\"),d.append(\"text\");var b=d.select(\"line\"),_=m.select(\"line\"),w=p.select(\"text\").text(g),S=d.select(\"text\"),E=m.select(\"text\");switch(r){case\"bottom\":n=Ti,b.attr(\"y2\",u),S.attr(\"y\",Math.max(u,0)+o),_.attr(\"x2\",0).attr(\"y2\",u),E.attr(\"x\",0).attr(\"y\",Math.max(u,0)+o),w.attr(\"dy\",\".71em\").style(\"text-anchor\",\"middle\"),x.attr(\"d\",\"M\"+y[0]+\",\"+i+\"V0H\"+y[1]+\"V\"+i);break;case\"top\":n=Ti,b.attr(\"y2\",-u),S.attr(\"y\",-(Math.max(u,0)+o)),_.attr(\"x2\",0).attr(\"y2\",-u),E.attr(\"x\",0).attr(\"y\",-(Math.max(u,0)+o)),w.attr(\"dy\",\"0em\").style(\"text-anchor\",\"middle\"),x.attr(\"d\",\"M\"+y[0]+\",\"+-i+\"V0H\"+y[1]+\"V\"+-i);break;case\"left\":n=qi,b.attr(\"x2\",-u),S.attr(\"x\",-(Math.max(u,0)+o)),_.attr(\"x2\",-u).attr(\"y2\",0),E.attr(\"x\",-(Math.max(u,0)+o)).attr(\"y\",0),w.attr(\"dy\",\".32em\").style(\"text-anchor\",\"end\"),x.attr(\"d\",\"M\"+-i+\",\"+y[0]+\"H0V\"+y[1]+\"H\"+-i);break;case\"right\":n=qi,b.attr(\"x2\",u),S.attr(\"x\",Math.max(u,0)+o),_.attr(\"x2\",u).attr(\"y2\",0),E.attr(\"x\",Math.max(u,0)+o).attr(\"y\",0),w.attr(\"dy\",\".32em\").style(\"text-anchor\",\"start\"),x.attr(\"d\",\"M\"+i+\",\"+y[0]+\"H0V\"+y[1]+\"H\"+i)}if(f.rangeBand){var k=f.rangeBand()/2,A=function(n){return f(n)+k};d.call(n,A),m.call(n,A)}else d.call(n,s),m.call(n,f),v.call(n,f)})}var t,e=mo.scale.linear(),r=Vc,u=6,i=6,o=3,a=[10],c=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in Xc?t+\"\":Vc,n):r},n.ticks=function(){return arguments.length?(a=arguments,n):a},n.tickValues=function(t){return arguments.length?(c=t,n):c},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(u=+t,i=+arguments[e-1],n):u},n.innerTickSize=function(t){return arguments.length?(u=+t,n):u},n.outerTickSize=function(t){return arguments.length?(i=+t,n):i},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(){return arguments.length&&n},n};var Vc=\"bottom\",Xc={top:1,right:1,bottom:1,left:1};mo.svg.brush=function(){function n(i){i.each(function(){var i=mo.select(this).style(\"pointer-events\",\"all\").style(\"-webkit-tap-highlight-color\",\"rgba(0,0,0,0)\").on(\"mousedown.brush\",u).on(\"touchstart.brush\",u),o=i.selectAll(\".background\").data([0]);o.enter().append(\"rect\").attr(\"class\",\"background\").style(\"visibility\",\"hidden\").style(\"cursor\",\"crosshair\"),i.selectAll(\".extent\").data([0]).enter().append(\"rect\").attr(\"class\",\"extent\").style(\"cursor\",\"move\");var a=i.selectAll(\".resize\").data(v,dt);a.exit().remove(),a.enter().append(\"g\").attr(\"class\",function(n){return\"resize \"+n}).style(\"cursor\",function(n){return $c[n]}).append(\"rect\").attr(\"x\",function(n){return/[ew]$/.test(n)?-3:null}).attr(\"y\",function(n){return/^[ns]/.test(n)?-3:null}).attr(\"width\",6).attr(\"height\",6).style(\"visibility\",\"hidden\"),a.style(\"display\",n.empty()?\"none\":null);var s,f=mo.transition(i),h=mo.transition(o);c&&(s=Bu(c),h.attr(\"x\",s[0]).attr(\"width\",s[1]-s[0]),e(f)),l&&(s=Bu(l),h.attr(\"y\",s[0]).attr(\"height\",s[1]-s[0]),r(f)),t(f)})}function t(n){n.selectAll(\".resize\").attr(\"transform\",function(n){return\"translate(\"+s[+/e$/.test(n)]+\",\"+h[+/^s/.test(n)]+\")\"})}function e(n){n.select(\".extent\").attr(\"x\",s[0]),n.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\",s[1]-s[0])}function r(n){n.select(\".extent\").attr(\"y\",h[0]),n.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\",h[1]-h[0])}function u(){function u(){32==mo.event.keyCode&&(N||(M=null,q[0]-=s[1],q[1]-=h[1],N=2),f())}function g(){32==mo.event.keyCode&&2==N&&(q[0]+=s[1],q[1]+=h[1],N=0,f())}function v(){var n=mo.mouse(b),u=!1;x&&(n[0]+=x[0],n[1]+=x[1]),N||(mo.event.altKey?(M||(M=[(s[0]+s[1])/2,(h[0]+h[1])/2]),q[0]=s[+(n[0]<M[0])],q[1]=h[+(n[1]<M[1])]):M=null),k&&m(n,c,0)&&(e(S),u=!0),A&&m(n,l,1)&&(r(S),u=!0),u&&(t(S),w({type:\"brush\",mode:N?\"move\":\"resize\"}))}function m(n,t,e){var r,u,a=Bu(t),c=a[0],l=a[1],f=q[e],g=e?h:s,v=g[1]-g[0];return N&&(c-=f,l-=v+f),r=(e?d:p)?Math.max(c,Math.min(l,n[e])):n[e],N?u=(r+=f)+v:(M&&(f=Math.max(c,Math.min(l,2*M[e]-r))),r>f?(u=r,r=f):u=f),g[0]!=r||g[1]!=u?(e?o=null:i=null,g[0]=r,g[1]=u,!0):void 0}function y(){v(),S.style(\"pointer-events\",\"all\").selectAll(\".resize\").style(\"display\",n.empty()?\"none\":null),mo.select(\"body\").style(\"cursor\",null),z.on(\"mousemove.brush\",null).on(\"mouseup.brush\",null).on(\"touchmove.brush\",null).on(\"touchend.brush\",null).on(\"keydown.brush\",null).on(\"keyup.brush\",null),T(),w({type:\"brushend\"})}var M,x,b=this,_=mo.select(mo.event.target),w=a.of(b,arguments),S=mo.select(b),E=_.datum(),k=!/^(n|s)$/.test(E)&&c,A=!/^(e|w)$/.test(E)&&l,N=_.classed(\"extent\"),T=L(),q=mo.mouse(b),z=mo.select(_o).on(\"keydown.brush\",u).on(\"keyup.brush\",g);if(mo.event.changedTouches?z.on(\"touchmove.brush\",v).on(\"touchend.brush\",y):z.on(\"mousemove.brush\",v).on(\"mouseup.brush\",y),S.interrupt().selectAll(\"*\").interrupt(),N)q[0]=s[0]-q[0],q[1]=h[0]-q[1];else if(E){var C=+/w$/.test(E),D=+/^n/.test(E);x=[s[1-C]-q[0],h[1-D]-q[1]],q[0]=s[C],q[1]=h[D]}else mo.event.altKey&&(M=q.slice());S.style(\"pointer-events\",\"none\").selectAll(\".resize\").style(\"display\",null),mo.select(\"body\").style(\"cursor\",_.style(\"cursor\")),w({type:\"brushstart\"}),v()}var i,o,a=g(n,\"brushstart\",\"brush\",\"brushend\"),c=null,l=null,s=[0,0],h=[0,0],p=!0,d=!0,v=Bc[0];return n.event=function(n){n.each(function(){var n=a.of(this,arguments),t={x:s,y:h,i:i,j:o},e=this.__chart__||t;this.__chart__=t,Oc?mo.select(this).transition().each(\"start.brush\",function(){i=e.i,o=e.j,s=e.x,h=e.y,n({type:\"brushstart\"})}).tween(\"brush:brush\",function(){var e=kr(s,t.x),r=kr(h,t.y);return i=o=null,function(u){s=t.x=e(u),h=t.y=r(u),n({type:\"brush\",mode:\"resize\"})}}).each(\"end.brush\",function(){i=t.i,o=t.j,n({type:\"brush\",mode:\"resize\"}),n({type:\"brushend\"})}):(n({type:\"brushstart\"}),n({type:\"brush\",mode:\"resize\"}),n({type:\"brushend\"}))})},n.x=function(t){return arguments.length?(c=t,v=Bc[!c<<1|!l],n):c},n.y=function(t){return arguments.length?(l=t,v=Bc[!c<<1|!l],n):l},n.clamp=function(t){return arguments.length?(c&&l?(p=!!t[0],d=!!t[1]):c?p=!!t:l&&(d=!!t),n):c&&l?[p,d]:c?p:l?d:null},n.extent=function(t){var e,r,u,a,f;return arguments.length?(c&&(e=t[0],r=t[1],l&&(e=e[0],r=r[0]),i=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(f=e,e=r,r=f),(e!=s[0]||r!=s[1])&&(s=[e,r])),l&&(u=t[0],a=t[1],c&&(u=u[1],a=a[1]),o=[u,a],l.invert&&(u=l(u),a=l(a)),u>a&&(f=u,u=a,a=f),(u!=h[0]||a!=h[1])&&(h=[u,a])),n):(c&&(i?(e=i[0],r=i[1]):(e=s[0],r=s[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(f=e,e=r,r=f))),l&&(o?(u=o[0],a=o[1]):(u=h[0],a=h[1],l.invert&&(u=l.invert(u),a=l.invert(a)),u>a&&(f=u,u=a,a=f))),c&&l?[[e,u],[r,a]]:c?[e,r]:l&&[u,a])},n.clear=function(){return n.empty()||(s=[0,0],h=[0,0],i=o=null),n},n.empty=function(){return!!c&&s[0]==s[1]||!!l&&h[0]==h[1]},mo.rebind(n,a,\"on\")};var $c={n:\"ns-resize\",e:\"ew-resize\",s:\"ns-resize\",w:\"ew-resize\",nw:\"nwse-resize\",ne:\"nesw-resize\",se:\"nwse-resize\",sw:\"nesw-resize\"},Bc=[[\"n\",\"e\",\"s\",\"w\",\"nw\",\"ne\",\"se\",\"sw\"],[\"e\",\"w\"],[\"n\",\"s\"],[]],Wc=mo.time={},Jc=Date,Gc=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"];zi.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){Kc.setUTCDate.apply(this._,arguments)},setDay:function(){Kc.setUTCDay.apply(this._,arguments)},setFullYear:function(){Kc.setUTCFullYear.apply(this._,arguments)},setHours:function(){Kc.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){Kc.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){Kc.setUTCMinutes.apply(this._,arguments)},setMonth:function(){Kc.setUTCMonth.apply(this._,arguments)},setSeconds:function(){Kc.setUTCSeconds.apply(this._,arguments)},setTime:function(){Kc.setTime.apply(this._,arguments)}};var Kc=Date.prototype,Qc=\"%a %b %e %X %Y\",nl=\"%m/%d/%Y\",tl=\"%H:%M:%S\",el=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],rl=[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],ul=[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],il=[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"];Wc.year=Ci(function(n){return n=Wc.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),Wc.years=Wc.year.range,Wc.years.utc=Wc.year.utc.range,Wc.day=Ci(function(n){var t=new Jc(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),Wc.days=Wc.day.range,Wc.days.utc=Wc.day.utc.range,Wc.dayOfYear=function(n){var t=Wc.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},Gc.forEach(function(n,t){n=n.toLowerCase(),t=7-t;var e=Wc[n]=Ci(function(n){return(n=Wc.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=Wc.year(n).getDay();return Math.floor((Wc.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});Wc[n+\"s\"]=e.range,Wc[n+\"s\"].utc=e.utc.range,Wc[n+\"OfYear\"]=function(n){var e=Wc.year(n).getDay();return Math.floor((Wc.dayOfYear(n)+(e+t)%7)/7)}}),Wc.week=Wc.sunday,Wc.weeks=Wc.sunday.range,Wc.weeks.utc=Wc.sunday.utc.range,Wc.weekOfYear=Wc.sundayOfYear,Wc.format=ji;var ol=Hi(el),al=Fi(el),cl=Hi(rl),ll=Fi(rl),sl=Hi(ul),fl=Fi(ul),hl=Hi(il),gl=Fi(il),pl=/^%/,dl={\"-\":\"\",_:\" \",0:\"0\"},vl={a:function(n){return rl[n.getDay()]},A:function(n){return el[n.getDay()]},b:function(n){return il[n.getMonth()]},B:function(n){return ul[n.getMonth()]},c:ji(Qc),d:function(n,t){return Pi(n.getDate(),t,2)},e:function(n,t){return Pi(n.getDate(),t,2)},H:function(n,t){return Pi(n.getHours(),t,2)},I:function(n,t){return Pi(n.getHours()%12||12,t,2)},j:function(n,t){return Pi(1+Wc.dayOfYear(n),t,3)},L:function(n,t){return Pi(n.getMilliseconds(),t,3)},m:function(n,t){return Pi(n.getMonth()+1,t,2)},M:function(n,t){return Pi(n.getMinutes(),t,2)},p:function(n){return n.getHours()>=12?\"PM\":\"AM\"},S:function(n,t){return Pi(n.getSeconds(),t,2)},U:function(n,t){return Pi(Wc.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Pi(Wc.mondayOfYear(n),t,2)},x:ji(nl),X:ji(tl),y:function(n,t){return Pi(n.getFullYear()%100,t,2)},Y:function(n,t){return Pi(n.getFullYear()%1e4,t,4)},Z:ao,\"%\":function(){return\"%\"}},ml={a:Oi,A:Ri,b:Zi,B:Vi,c:Xi,d:no,e:no,H:eo,I:eo,j:to,L:io,m:Qi,M:ro,p:oo,S:uo,U:Ii,w:Yi,W:Ui,x:$i,X:Bi,y:Ji,Y:Wi,Z:Gi,\"%\":co},yl=/^\\s*\\d+/,Ml=mo.map({am:0,pm:1});ji.utc=lo;var xl=lo(\"%Y-%m-%dT%H:%M:%S.%LZ\");ji.iso=Date.prototype.toISOString&&+new Date(\"2000-01-01T00:00:00.000Z\")?so:xl,so.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},so.toString=xl.toString,Wc.second=Ci(function(n){return new Jc(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),Wc.seconds=Wc.second.range,Wc.seconds.utc=Wc.second.utc.range,Wc.minute=Ci(function(n){return new Jc(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),Wc.minutes=Wc.minute.range,Wc.minutes.utc=Wc.minute.utc.range,Wc.hour=Ci(function(n){var t=n.getTimezoneOffset()/60;return new Jc(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),Wc.hours=Wc.hour.range,Wc.hours.utc=Wc.hour.utc.range,Wc.month=Ci(function(n){return n=Wc.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),Wc.months=Wc.month.range,Wc.months.utc=Wc.month.utc.range;var bl=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],_l=[[Wc.second,1],[Wc.second,5],[Wc.second,15],[Wc.second,30],[Wc.minute,1],[Wc.minute,5],[Wc.minute,15],[Wc.minute,30],[Wc.hour,1],[Wc.hour,3],[Wc.hour,6],[Wc.hour,12],[Wc.day,1],[Wc.day,2],[Wc.week,1],[Wc.month,1],[Wc.month,3],[Wc.year,1]],wl=[[ji(\"%Y\"),Vt],[ji(\"%B\"),function(n){return n.getMonth()}],[ji(\"%b %d\"),function(n){return 1!=n.getDate()}],[ji(\"%a %d\"),function(n){return n.getDay()&&1!=n.getDate()}],[ji(\"%I %p\"),function(n){return n.getHours()}],[ji(\"%I:%M\"),function(n){return n.getMinutes()}],[ji(\":%S\"),function(n){return n.getSeconds()}],[ji(\".%L\"),function(n){return n.getMilliseconds()}]],Sl=go(wl);_l.year=Wc.year,Wc.scale=function(){return fo(mo.scale.linear(),_l,Sl)};var El={range:function(n,t,e){return mo.range(+n,+t,e).map(ho)}},kl=_l.map(function(n){return[n[0].utc,n[1]]}),Al=[[lo(\"%Y\"),Vt],[lo(\"%B\"),function(n){return n.getUTCMonth()}],[lo(\"%b %d\"),function(n){return 1!=n.getUTCDate()}],[lo(\"%a %d\"),function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],[lo(\"%I %p\"),function(n){return n.getUTCHours()}],[lo(\"%I:%M\"),function(n){return n.getUTCMinutes()}],[lo(\":%S\"),function(n){return n.getUTCSeconds()}],[lo(\".%L\"),function(n){return n.getUTCMilliseconds()}]],Nl=go(Al);return kl.year=Wc.year.utc,Wc.scale.utc=function(){return fo(mo.scale.linear(),kl,Nl)},mo.text=vt(function(n){return n.responseText}),mo.json=function(n,t){return mt(n,\"application/json\",po,t)},mo.html=function(n,t){return mt(n,\"text/html\",vo,t)},mo.xml=vt(function(n){return n.responseXML}),mo}();"
  },
  {
    "path": "public/admin/js/plugins/slimscroll/jquery.slimscroll.js",
    "content": "/*! Copyright (c) 2011 Piotr Rochala (http://rocha.la)\n * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)\n * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.\n *\n * Version: 1.3.0\n *\n */\n(function($) {\n\n  jQuery.fn.extend({\n    slimScroll: function(options) {\n\n      var defaults = {\n\n        // width in pixels of the visible scroll area\n        width : 'auto',\n\n        // height in pixels of the visible scroll area\n        height : '250px',\n\n        // width in pixels of the scrollbar and rail\n        size : '7px',\n\n        // scrollbar color, accepts any hex/color value\n        color: '#000',\n\n        // scrollbar position - left/right\n        position : 'right',\n\n        // distance in pixels between the side edge and the scrollbar\n        distance : '1px',\n\n        // default scroll position on load - top / bottom / $('selector')\n        start : 'top',\n\n        // sets scrollbar opacity\n        opacity : .4,\n\n        // enables always-on mode for the scrollbar\n        alwaysVisible : false,\n\n        // check if we should hide the scrollbar when user is hovering over\n        disableFadeOut : false,\n\n        // sets visibility of the rail\n        railVisible : false,\n\n        // sets rail color\n        railColor : '#333',\n\n        // sets rail opacity\n        railOpacity : .2,\n\n        // whether  we should use jQuery UI Draggable to enable bar dragging\n        railDraggable : true,\n\n        // defautlt CSS class of the slimscroll rail\n        railClass : 'slimScrollRail',\n\n        // defautlt CSS class of the slimscroll bar\n        barClass : 'slimScrollBar',\n\n        // defautlt CSS class of the slimscroll wrapper\n        wrapperClass : 'slimScrollDiv',\n\n        // check if mousewheel should scroll the window if we reach top/bottom\n        allowPageScroll : false,\n\n        // scroll amount applied to each mouse wheel step\n        wheelStep : 20,\n\n        // scroll amount applied when user is using gestures\n        touchScrollStep : 200,\n\n        // sets border radius\n        borderRadius: '7px',\n\n        // sets border radius of the rail\n        railBorderRadius : '7px'\n      };\n\n      var o = $.extend(defaults, options);\n\n      // do it for every element that matches selector\n      this.each(function(){\n\n      var isOverPanel, isOverBar, isDragg, queueHide, touchDif,\n        barHeight, percentScroll, lastScroll,\n        divS = '<div></div>',\n        minBarHeight = 30,\n        releaseScroll = false;\n\n        // used in event handlers and for better minification\n        var me = $(this);\n\n        // ensure we are not binding it again\n        if (me.parent().hasClass(o.wrapperClass))\n        {\n            // start from last bar position\n            var offset = me.scrollTop();\n\n            // find bar and rail\n            bar = me.parent().find('.' + o.barClass);\n            rail = me.parent().find('.' + o.railClass);\n\n            getBarHeight();\n\n            // check if we should scroll existing instance\n            if ($.isPlainObject(options))\n            {\n              // Pass height: auto to an existing slimscroll object to force a resize after contents have changed\n              if ( 'height' in options && options.height == 'auto' ) {\n                me.parent().css('height', 'auto');\n                me.css('height', 'auto');\n                var height = me.parent().parent().height();\n                me.parent().css('height', height);\n                me.css('height', height);\n              }\n\n              if ('scrollTo' in options)\n              {\n                // jump to a static point\n                offset = parseInt(o.scrollTo);\n              }\n              else if ('scrollBy' in options)\n              {\n                // jump by value pixels\n                offset += parseInt(o.scrollBy);\n              }\n              else if ('destroy' in options)\n              {\n                // remove slimscroll elements\n                bar.remove();\n                rail.remove();\n                me.unwrap();\n                return;\n              }\n\n              // scroll content by the given offset\n              scrollContent(offset, false, true);\n            }\n\n            return;\n        }\n\n        // optionally set height to the parent's height\n        o.height = (o.height == 'auto') ? me.parent().height() : o.height;\n\n        // wrap content\n        var wrapper = $(divS)\n          .addClass(o.wrapperClass)\n          .css({\n            position: 'relative',\n            overflow: 'hidden',\n            width: o.width,\n            height: o.height\n          });\n\n        // update style for the div\n        me.css({\n          overflow: 'hidden',\n          width: o.width,\n          height: o.height\n        });\n\n        // create scrollbar rail\n        var rail = $(divS)\n          .addClass(o.railClass)\n          .css({\n            width: o.size,\n            height: '100%',\n            position: 'absolute',\n            top: 0,\n            display: (o.alwaysVisible && o.railVisible) ? 'block' : 'none',\n            'border-radius': o.railBorderRadius,\n            background: o.railColor,\n            opacity: o.railOpacity,\n            zIndex: 90\n          });\n\n        // create scrollbar\n        var bar = $(divS)\n          .addClass(o.barClass)\n          .css({\n            background: o.color,\n            width: o.size,\n            position: 'absolute',\n            top: 0,\n            opacity: o.opacity,\n            display: o.alwaysVisible ? 'block' : 'none',\n            'border-radius' : o.borderRadius,\n            BorderRadius: o.borderRadius,\n            MozBorderRadius: o.borderRadius,\n            WebkitBorderRadius: o.borderRadius,\n            zIndex: 99\n          });\n\n        // set position\n        var posCss = (o.position == 'right') ? { right: o.distance } : { left: o.distance };\n        rail.css(posCss);\n        bar.css(posCss);\n\n        // wrap it\n        me.wrap(wrapper);\n\n        // append to parent div\n        me.parent().append(bar);\n        me.parent().append(rail);\n\n        // make it draggable and no longer dependent on the jqueryUI\n        if (o.railDraggable){\n          bar.bind(\"mousedown\", function(e) {\n            var $doc = $(document);\n            isDragg = true;\n            t = parseFloat(bar.css('top'));\n            pageY = e.pageY;\n\n            $doc.bind(\"mousemove.slimscroll\", function(e){\n              currTop = t + e.pageY - pageY;\n              bar.css('top', currTop);\n              scrollContent(0, bar.position().top, false);// scroll content\n            });\n\n            $doc.bind(\"mouseup.slimscroll\", function(e) {\n              isDragg = false;hideBar();\n              $doc.unbind('.slimscroll');\n            });\n            return false;\n          }).bind(\"selectstart.slimscroll\", function(e){\n            e.stopPropagation();\n            e.preventDefault();\n            return false;\n          });\n        }\n\n        // on rail over\n        rail.hover(function(){\n          showBar();\n        }, function(){\n          hideBar();\n        });\n\n        // on bar over\n        bar.hover(function(){\n          isOverBar = true;\n        }, function(){\n          isOverBar = false;\n        });\n\n        // show on parent mouseover\n        me.hover(function(){\n          isOverPanel = true;\n          showBar();\n          hideBar();\n        }, function(){\n          isOverPanel = false;\n          hideBar();\n        });\n\n        // support for mobile\n        me.bind('touchstart', function(e,b){\n          if (e.originalEvent.touches.length)\n          {\n            // record where touch started\n            touchDif = e.originalEvent.touches[0].pageY;\n          }\n        });\n\n        me.bind('touchmove', function(e){\n          // prevent scrolling the page if necessary\n          if(!releaseScroll)\n          {\n  \t\t      e.originalEvent.preventDefault();\n\t\t      }\n          if (e.originalEvent.touches.length)\n          {\n            // see how far user swiped\n            var diff = (touchDif - e.originalEvent.touches[0].pageY) / o.touchScrollStep;\n            // scroll content\n            scrollContent(diff, true);\n            touchDif = e.originalEvent.touches[0].pageY;\n          }\n        });\n\n        // set up initial height\n        getBarHeight();\n\n        // check start position\n        if (o.start === 'bottom')\n        {\n          // scroll content to bottom\n          bar.css({ top: me.outerHeight() - bar.outerHeight() });\n          scrollContent(0, true);\n        }\n        else if (o.start !== 'top')\n        {\n          // assume jQuery selector\n          scrollContent($(o.start).position().top, null, true);\n\n          // make sure bar stays hidden\n          if (!o.alwaysVisible) { bar.hide(); }\n        }\n\n        // attach scroll events\n        attachWheel();\n\n        function _onWheel(e)\n        {\n          // use mouse wheel only when mouse is over\n          if (!isOverPanel) { return; }\n\n          var e = e || window.event;\n\n          var delta = 0;\n          if (e.wheelDelta) { delta = -e.wheelDelta/120; }\n          if (e.detail) { delta = e.detail / 3; }\n\n          var target = e.target || e.srcTarget || e.srcElement;\n          if ($(target).closest('.' + o.wrapperClass).is(me.parent())) {\n            // scroll content\n            scrollContent(delta, true);\n          }\n\n          // stop window scroll\n          if (e.preventDefault && !releaseScroll) { e.preventDefault(); }\n          if (!releaseScroll) { e.returnValue = false; }\n        }\n\n        function scrollContent(y, isWheel, isJump)\n        {\n          releaseScroll = false;\n          var delta = y;\n          var maxTop = me.outerHeight() - bar.outerHeight();\n\n          if (isWheel)\n          {\n            // move bar with mouse wheel\n            delta = parseInt(bar.css('top')) + y * parseInt(o.wheelStep) / 100 * bar.outerHeight();\n\n            // move bar, make sure it doesn't go out\n            delta = Math.min(Math.max(delta, 0), maxTop);\n\n            // if scrolling down, make sure a fractional change to the\n            // scroll position isn't rounded away when the scrollbar's CSS is set\n            // this flooring of delta would happened automatically when\n            // bar.css is set below, but we floor here for clarity\n            delta = (y > 0) ? Math.ceil(delta) : Math.floor(delta);\n\n            // scroll the scrollbar\n            bar.css({ top: delta + 'px' });\n          }\n\n          // calculate actual scroll amount\n          percentScroll = parseInt(bar.css('top')) / (me.outerHeight() - bar.outerHeight());\n          delta = percentScroll * (me[0].scrollHeight - me.outerHeight());\n\n          if (isJump)\n          {\n            delta = y;\n            var offsetTop = delta / me[0].scrollHeight * me.outerHeight();\n            offsetTop = Math.min(Math.max(offsetTop, 0), maxTop);\n            bar.css({ top: offsetTop + 'px' });\n          }\n\n          // scroll content\n          me.scrollTop(delta);\n\n          // fire scrolling event\n          me.trigger('slimscrolling', ~~delta);\n\n          // ensure bar is visible\n          showBar();\n\n          // trigger hide when scroll is stopped\n          hideBar();\n        }\n\n        function attachWheel()\n        {\n          if (window.addEventListener)\n          {\n            this.addEventListener('DOMMouseScroll', _onWheel, false );\n            this.addEventListener('mousewheel', _onWheel, false );\n            this.addEventListener('MozMousePixelScroll', _onWheel, false );\n          }\n          else\n          {\n            document.attachEvent(\"onmousewheel\", _onWheel)\n          }\n        }\n\n        function getBarHeight()\n        {\n          // calculate scrollbar height and make sure it is not too small\n          barHeight = Math.max((me.outerHeight() / me[0].scrollHeight) * me.outerHeight(), minBarHeight);\n          bar.css({ height: barHeight + 'px' });\n\n          // hide scrollbar if content is not long enough\n          var display = barHeight == me.outerHeight() ? 'none' : 'block';\n          bar.css({ display: display });\n        }\n\n        function showBar()\n        {\n          // recalculate bar height\n          getBarHeight();\n          clearTimeout(queueHide);\n\n          // when bar reached top or bottom\n          if (percentScroll == ~~percentScroll)\n          {\n            //release wheel\n            releaseScroll = o.allowPageScroll;\n\n            // publish approporiate event\n            if (lastScroll != percentScroll)\n            {\n                var msg = (~~percentScroll == 0) ? 'top' : 'bottom';\n                me.trigger('slimscroll', msg);\n            }\n          }\n          else\n          {\n            releaseScroll = false;\n          }\n          lastScroll = percentScroll;\n\n          // show only when required\n          if(barHeight >= me.outerHeight()) {\n            //allow window scroll\n            releaseScroll = true;\n            return;\n          }\n          bar.stop(true,true).fadeIn('fast');\n          if (o.railVisible) { rail.stop(true,true).fadeIn('fast'); }\n        }\n\n        function hideBar()\n        {\n          // only hide when options allow it\n          if (!o.alwaysVisible)\n          {\n            queueHide = setTimeout(function(){\n              if (!(o.disableFadeOut && isOverPanel) && !isOverBar && !isDragg)\n              {\n                bar.fadeOut('slow');\n                rail.fadeOut('slow');\n              }\n            }, 1000);\n          }\n        }\n\n      });\n\n      // maintain chainability\n      return this;\n    }\n  });\n\n  jQuery.fn.extend({\n    slimscroll: jQuery.fn.slimScroll\n  });\n\n})(jQuery);\n"
  },
  {
    "path": "public/admin/js/plugins/switchery/switchery.js",
    "content": "(function(){function require(path,parent,orig){var resolved=require.resolve(path);if(null==resolved){orig=orig||path;parent=parent||\"root\";var err=new Error('Failed to require \"'+orig+'\" from \"'+parent+'\"');err.path=orig;err.parent=parent;err.require=true;throw err}var module=require.modules[resolved];if(!module._resolving&&!module.exports){var mod={};mod.exports={};mod.client=mod.component=true;module._resolving=true;module.call(this,mod.exports,require.relative(resolved),mod);delete module._resolving;module.exports=mod.exports}return module.exports}require.modules={};require.aliases={};require.resolve=function(path){if(path.charAt(0)===\"/\")path=path.slice(1);var paths=[path,path+\".js\",path+\".json\",path+\"/index.js\",path+\"/index.json\"];for(var i=0;i<paths.length;i++){var path=paths[i];if(require.modules.hasOwnProperty(path))return path;if(require.aliases.hasOwnProperty(path))return require.aliases[path]}};require.normalize=function(curr,path){var segs=[];if(\".\"!=path.charAt(0))return path;curr=curr.split(\"/\");path=path.split(\"/\");for(var i=0;i<path.length;++i){if(\"..\"==path[i]){curr.pop()}else if(\".\"!=path[i]&&\"\"!=path[i]){segs.push(path[i])}}return curr.concat(segs).join(\"/\")};require.register=function(path,definition){require.modules[path]=definition};require.alias=function(from,to){if(!require.modules.hasOwnProperty(from)){throw new Error('Failed to alias \"'+from+'\", it does not exist')}require.aliases[to]=from};require.relative=function(parent){var p=require.normalize(parent,\"..\");function lastIndexOf(arr,obj){var i=arr.length;while(i--){if(arr[i]===obj)return i}return-1}function localRequire(path){var resolved=localRequire.resolve(path);return require(resolved,parent,path)}localRequire.resolve=function(path){var c=path.charAt(0);if(\"/\"==c)return path.slice(1);if(\".\"==c)return require.normalize(p,path);var segs=parent.split(\"/\");var i=lastIndexOf(segs,\"deps\")+1;if(!i)i=0;path=segs.slice(0,i+1).join(\"/\")+\"/deps/\"+path;return path};localRequire.exists=function(path){return require.modules.hasOwnProperty(localRequire.resolve(path))};return localRequire};require.register(\"abpetkov-transitionize/transitionize.js\",function(exports,require,module){module.exports=Transitionize;function Transitionize(element,props){if(!(this instanceof Transitionize))return new Transitionize(element,props);this.element=element;this.props=props||{};this.init()}Transitionize.prototype.isSafari=function(){return/Safari/.test(navigator.userAgent)&&/Apple Computer/.test(navigator.vendor)};Transitionize.prototype.init=function(){var transitions=[];for(var key in this.props){transitions.push(key+\" \"+this.props[key])}this.element.style.transition=transitions.join(\", \");if(this.isSafari())this.element.style.webkitTransition=transitions.join(\", \")}});require.register(\"ftlabs-fastclick/lib/fastclick.js\",function(exports,require,module){function FastClick(layer){\"use strict\";var oldOnClick,self=this;this.trackingClick=false;this.trackingClickStart=0;this.targetElement=null;this.touchStartX=0;this.touchStartY=0;this.lastTouchIdentifier=0;this.touchBoundary=10;this.layer=layer;if(!layer||!layer.nodeType){throw new TypeError(\"Layer must be a document node\")}this.onClick=function(){return FastClick.prototype.onClick.apply(self,arguments)};this.onMouse=function(){return FastClick.prototype.onMouse.apply(self,arguments)};this.onTouchStart=function(){return FastClick.prototype.onTouchStart.apply(self,arguments)};this.onTouchMove=function(){return FastClick.prototype.onTouchMove.apply(self,arguments)};this.onTouchEnd=function(){return FastClick.prototype.onTouchEnd.apply(self,arguments)};this.onTouchCancel=function(){return FastClick.prototype.onTouchCancel.apply(self,arguments)};if(FastClick.notNeeded(layer)){return}if(this.deviceIsAndroid){layer.addEventListener(\"mouseover\",this.onMouse,true);layer.addEventListener(\"mousedown\",this.onMouse,true);layer.addEventListener(\"mouseup\",this.onMouse,true)}layer.addEventListener(\"click\",this.onClick,true);layer.addEventListener(\"touchstart\",this.onTouchStart,false);layer.addEventListener(\"touchmove\",this.onTouchMove,false);layer.addEventListener(\"touchend\",this.onTouchEnd,false);layer.addEventListener(\"touchcancel\",this.onTouchCancel,false);if(!Event.prototype.stopImmediatePropagation){layer.removeEventListener=function(type,callback,capture){var rmv=Node.prototype.removeEventListener;if(type===\"click\"){rmv.call(layer,type,callback.hijacked||callback,capture)}else{rmv.call(layer,type,callback,capture)}};layer.addEventListener=function(type,callback,capture){var adv=Node.prototype.addEventListener;if(type===\"click\"){adv.call(layer,type,callback.hijacked||(callback.hijacked=function(event){if(!event.propagationStopped){callback(event)}}),capture)}else{adv.call(layer,type,callback,capture)}}}if(typeof layer.onclick===\"function\"){oldOnClick=layer.onclick;layer.addEventListener(\"click\",function(event){oldOnClick(event)},false);layer.onclick=null}}FastClick.prototype.deviceIsAndroid=navigator.userAgent.indexOf(\"Android\")>0;FastClick.prototype.deviceIsIOS=/iP(ad|hone|od)/.test(navigator.userAgent);FastClick.prototype.deviceIsIOS4=FastClick.prototype.deviceIsIOS&&/OS 4_\\d(_\\d)?/.test(navigator.userAgent);FastClick.prototype.deviceIsIOSWithBadTarget=FastClick.prototype.deviceIsIOS&&/OS ([6-9]|\\d{2})_\\d/.test(navigator.userAgent);FastClick.prototype.needsClick=function(target){\"use strict\";switch(target.nodeName.toLowerCase()){case\"button\":case\"select\":case\"textarea\":if(target.disabled){return true}break;case\"input\":if(this.deviceIsIOS&&target.type===\"file\"||target.disabled){return true}break;case\"label\":case\"video\":return true}return/\\bneedsclick\\b/.test(target.className)};FastClick.prototype.needsFocus=function(target){\"use strict\";switch(target.nodeName.toLowerCase()){case\"textarea\":return true;case\"select\":return!this.deviceIsAndroid;case\"input\":switch(target.type){case\"button\":case\"checkbox\":case\"file\":case\"image\":case\"radio\":case\"submit\":return false}return!target.disabled&&!target.readOnly;default:return/\\bneedsfocus\\b/.test(target.className)}};FastClick.prototype.sendClick=function(targetElement,event){\"use strict\";var clickEvent,touch;if(document.activeElement&&document.activeElement!==targetElement){document.activeElement.blur()}touch=event.changedTouches[0];clickEvent=document.createEvent(\"MouseEvents\");clickEvent.initMouseEvent(this.determineEventType(targetElement),true,true,window,1,touch.screenX,touch.screenY,touch.clientX,touch.clientY,false,false,false,false,0,null);clickEvent.forwardedTouchEvent=true;targetElement.dispatchEvent(clickEvent)};FastClick.prototype.determineEventType=function(targetElement){\"use strict\";if(this.deviceIsAndroid&&targetElement.tagName.toLowerCase()===\"select\"){return\"mousedown\"}return\"click\"};FastClick.prototype.focus=function(targetElement){\"use strict\";var length;if(this.deviceIsIOS&&targetElement.setSelectionRange&&targetElement.type.indexOf(\"date\")!==0&&targetElement.type!==\"time\"){length=targetElement.value.length;targetElement.setSelectionRange(length,length)}else{targetElement.focus()}};FastClick.prototype.updateScrollParent=function(targetElement){\"use strict\";var scrollParent,parentElement;scrollParent=targetElement.fastClickScrollParent;if(!scrollParent||!scrollParent.contains(targetElement)){parentElement=targetElement;do{if(parentElement.scrollHeight>parentElement.offsetHeight){scrollParent=parentElement;targetElement.fastClickScrollParent=parentElement;break}parentElement=parentElement.parentElement}while(parentElement)}if(scrollParent){scrollParent.fastClickLastScrollTop=scrollParent.scrollTop}};FastClick.prototype.getTargetElementFromEventTarget=function(eventTarget){\"use strict\";if(eventTarget.nodeType===Node.TEXT_NODE){return eventTarget.parentNode}return eventTarget};FastClick.prototype.onTouchStart=function(event){\"use strict\";var targetElement,touch,selection;if(event.targetTouches.length>1){return true}targetElement=this.getTargetElementFromEventTarget(event.target);touch=event.targetTouches[0];if(this.deviceIsIOS){selection=window.getSelection();if(selection.rangeCount&&!selection.isCollapsed){return true}if(!this.deviceIsIOS4){if(touch.identifier===this.lastTouchIdentifier){event.preventDefault();return false}this.lastTouchIdentifier=touch.identifier;this.updateScrollParent(targetElement)}}this.trackingClick=true;this.trackingClickStart=event.timeStamp;this.targetElement=targetElement;this.touchStartX=touch.pageX;this.touchStartY=touch.pageY;if(event.timeStamp-this.lastClickTime<200){event.preventDefault()}return true};FastClick.prototype.touchHasMoved=function(event){\"use strict\";var touch=event.changedTouches[0],boundary=this.touchBoundary;if(Math.abs(touch.pageX-this.touchStartX)>boundary||Math.abs(touch.pageY-this.touchStartY)>boundary){return true}return false};FastClick.prototype.onTouchMove=function(event){\"use strict\";if(!this.trackingClick){return true}if(this.targetElement!==this.getTargetElementFromEventTarget(event.target)||this.touchHasMoved(event)){this.trackingClick=false;this.targetElement=null}return true};FastClick.prototype.findControl=function(labelElement){\"use strict\";if(labelElement.control!==undefined){return labelElement.control}if(labelElement.htmlFor){return document.getElementById(labelElement.htmlFor)}return labelElement.querySelector(\"button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea\")};FastClick.prototype.onTouchEnd=function(event){\"use strict\";var forElement,trackingClickStart,targetTagName,scrollParent,touch,targetElement=this.targetElement;if(!this.trackingClick){return true}if(event.timeStamp-this.lastClickTime<200){this.cancelNextClick=true;return true}this.cancelNextClick=false;this.lastClickTime=event.timeStamp;trackingClickStart=this.trackingClickStart;this.trackingClick=false;this.trackingClickStart=0;if(this.deviceIsIOSWithBadTarget){touch=event.changedTouches[0];targetElement=document.elementFromPoint(touch.pageX-window.pageXOffset,touch.pageY-window.pageYOffset)||targetElement;targetElement.fastClickScrollParent=this.targetElement.fastClickScrollParent}targetTagName=targetElement.tagName.toLowerCase();if(targetTagName===\"label\"){forElement=this.findControl(targetElement);if(forElement){this.focus(targetElement);if(this.deviceIsAndroid){return false}targetElement=forElement}}else if(this.needsFocus(targetElement)){if(event.timeStamp-trackingClickStart>100||this.deviceIsIOS&&window.top!==window&&targetTagName===\"input\"){this.targetElement=null;return false}this.focus(targetElement);if(!this.deviceIsIOS4||targetTagName!==\"select\"){this.targetElement=null;event.preventDefault()}return false}if(this.deviceIsIOS&&!this.deviceIsIOS4){scrollParent=targetElement.fastClickScrollParent;if(scrollParent&&scrollParent.fastClickLastScrollTop!==scrollParent.scrollTop){return true}}if(!this.needsClick(targetElement)){event.preventDefault();this.sendClick(targetElement,event)}return false};FastClick.prototype.onTouchCancel=function(){\"use strict\";this.trackingClick=false;this.targetElement=null};FastClick.prototype.onMouse=function(event){\"use strict\";if(!this.targetElement){return true}if(event.forwardedTouchEvent){return true}if(!event.cancelable){return true}if(!this.needsClick(this.targetElement)||this.cancelNextClick){if(event.stopImmediatePropagation){event.stopImmediatePropagation()}else{event.propagationStopped=true}event.stopPropagation();event.preventDefault();return false}return true};FastClick.prototype.onClick=function(event){\"use strict\";var permitted;if(this.trackingClick){this.targetElement=null;this.trackingClick=false;return true}if(event.target.type===\"submit\"&&event.detail===0){return true}permitted=this.onMouse(event);if(!permitted){this.targetElement=null}return permitted};FastClick.prototype.destroy=function(){\"use strict\";var layer=this.layer;if(this.deviceIsAndroid){layer.removeEventListener(\"mouseover\",this.onMouse,true);layer.removeEventListener(\"mousedown\",this.onMouse,true);layer.removeEventListener(\"mouseup\",this.onMouse,true)}layer.removeEventListener(\"click\",this.onClick,true);layer.removeEventListener(\"touchstart\",this.onTouchStart,false);layer.removeEventListener(\"touchmove\",this.onTouchMove,false);layer.removeEventListener(\"touchend\",this.onTouchEnd,false);layer.removeEventListener(\"touchcancel\",this.onTouchCancel,false)};FastClick.notNeeded=function(layer){\"use strict\";var metaViewport;var chromeVersion;if(typeof window.ontouchstart===\"undefined\"){return true}chromeVersion=+(/Chrome\\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1];if(chromeVersion){if(FastClick.prototype.deviceIsAndroid){metaViewport=document.querySelector(\"meta[name=viewport]\");if(metaViewport){if(metaViewport.content.indexOf(\"user-scalable=no\")!==-1){return true}if(chromeVersion>31&&window.innerWidth<=window.screen.width){return true}}}else{return true}}if(layer.style.msTouchAction===\"none\"){return true}return false};FastClick.attach=function(layer){\"use strict\";return new FastClick(layer)};if(typeof define!==\"undefined\"&&define.amd){define(function(){\"use strict\";return FastClick})}else if(typeof module!==\"undefined\"&&module.exports){module.exports=FastClick.attach;module.exports.FastClick=FastClick}else{window.FastClick=FastClick}});require.register(\"switchery/switchery.js\",function(exports,require,module){var transitionize=require(\"transitionize\"),fastclick=require(\"fastclick\");module.exports=Switchery;var defaults={color:\"#64bd63\",secondaryColor:\"#dfdfdf\",className:\"switchery\",disabled:false,disabledOpacity:.5,speed:\"0.4s\"};function Switchery(element,options){if(!(this instanceof Switchery))return new Switchery(element,options);this.element=element;this.options=options||{};for(var i in defaults){if(this.options[i]==null){this.options[i]=defaults[i]}}if(this.element!=null&&this.element.type==\"checkbox\")this.init()}Switchery.prototype.hide=function(){this.element.style.display=\"none\"};Switchery.prototype.show=function(){var switcher=this.create();this.insertAfter(this.element,switcher)};Switchery.prototype.create=function(){this.switcher=document.createElement(\"span\");this.jack=document.createElement(\"small\");this.switcher.appendChild(this.jack);this.switcher.className=this.options.className;return this.switcher};Switchery.prototype.insertAfter=function(reference,target){reference.parentNode.insertBefore(target,reference.nextSibling)};Switchery.prototype.isChecked=function(){return this.element.checked};Switchery.prototype.isDisabled=function(){return this.options.disabled||this.element.disabled};Switchery.prototype.setPosition=function(clicked){var checked=this.isChecked(),switcher=this.switcher,jack=this.jack;if(clicked&&checked)checked=false;else if(clicked&&!checked)checked=true;if(checked===true){this.element.checked=true;if(window.getComputedStyle)jack.style.left=parseInt(window.getComputedStyle(switcher).width)-parseInt(window.getComputedStyle(jack).width)+\"px\";else jack.style.left=parseInt(switcher.currentStyle[\"width\"])-parseInt(jack.currentStyle[\"width\"])+\"px\";if(this.options.color)this.colorize();this.setSpeed()}else{jack.style.left=0;this.element.checked=false;this.switcher.style.boxShadow=\"inset 0 0 0 0 \"+this.options.secondaryColor;this.switcher.style.borderColor=this.options.secondaryColor;this.switcher.style.backgroundColor=\"\";this.setSpeed()}};Switchery.prototype.setSpeed=function(){var switcherProp={},jackProp={left:this.options.speed.replace(/[a-z]/,\"\")/2+\"s\"};if(this.isChecked()){switcherProp={border:this.options.speed,\"box-shadow\":this.options.speed,\"background-color\":this.options.speed.replace(/[a-z]/,\"\")*3+\"s\"}}else{switcherProp={border:this.options.speed,\"box-shadow\":this.options.speed}}transitionize(this.switcher,switcherProp);transitionize(this.jack,jackProp)};Switchery.prototype.setAttributes=function(){var id=this.element.getAttribute(\"id\"),name=this.element.getAttribute(\"name\");if(id)this.switcher.setAttribute(\"id\",id);if(name)this.switcher.setAttribute(\"name\",name)};Switchery.prototype.colorize=function(){this.switcher.style.backgroundColor=this.options.color;this.switcher.style.borderColor=this.options.color;this.switcher.style.boxShadow=\"inset 0 0 0 16px \"+this.options.color};Switchery.prototype.handleOnchange=function(state){if(typeof Event===\"function\"||!document.fireEvent){var event=document.createEvent(\"HTMLEvents\");event.initEvent(\"change\",true,true);this.element.dispatchEvent(event)}else{this.element.fireEvent(\"onchange\")}};Switchery.prototype.handleChange=function(){var self=this,el=this.element;if(el.addEventListener){el.addEventListener(\"change\",function(){self.setPosition()})}else{el.attachEvent(\"onchange\",function(){self.setPosition()})}};Switchery.prototype.handleClick=function(){var self=this,switcher=this.switcher;if(this.isDisabled()===false){fastclick(switcher);if(switcher.addEventListener){switcher.addEventListener(\"click\",function(){self.setPosition(true);self.handleOnchange(self.element.checked)})}else{switcher.attachEvent(\"onclick\",function(){self.setPosition(true);self.handleOnchange(self.element.checked)})}}else{this.element.disabled=true;this.switcher.style.opacity=this.options.disabledOpacity}};Switchery.prototype.disableLabel=function(){var parent=this.element.parentNode,labels=document.getElementsByTagName(\"label\"),attached=null;for(var i=0;i<labels.length;i++){if(labels[i].getAttribute(\"for\")===this.element.id){attached=true}}if(attached===true||parent.tagName.toLowerCase()===\"label\"){if(parent.addEventListener){parent.addEventListener(\"click\",function(e){e.preventDefault()})}else{parent.attachEvent(\"onclick\",function(e){e.returnValue=false})}}};Switchery.prototype.markAsSwitched=function(){this.element.setAttribute(\"data-switchery\",true)};Switchery.prototype.markedAsSwitched=function(){return this.element.getAttribute(\"data-switchery\")};Switchery.prototype.init=function(){this.hide();this.show();this.setPosition();this.setAttributes();this.markAsSwitched();this.disableLabel();this.handleChange();this.handleClick()}});require.alias(\"abpetkov-transitionize/transitionize.js\",\"switchery/deps/transitionize/transitionize.js\");require.alias(\"abpetkov-transitionize/transitionize.js\",\"switchery/deps/transitionize/index.js\");require.alias(\"abpetkov-transitionize/transitionize.js\",\"transitionize/index.js\");require.alias(\"abpetkov-transitionize/transitionize.js\",\"abpetkov-transitionize/index.js\");require.alias(\"ftlabs-fastclick/lib/fastclick.js\",\"switchery/deps/fastclick/lib/fastclick.js\");require.alias(\"ftlabs-fastclick/lib/fastclick.js\",\"switchery/deps/fastclick/index.js\");require.alias(\"ftlabs-fastclick/lib/fastclick.js\",\"fastclick/index.js\");require.alias(\"ftlabs-fastclick/lib/fastclick.js\",\"ftlabs-fastclick/index.js\");require.alias(\"switchery/switchery.js\",\"switchery/index.js\");if(typeof exports==\"object\"){module.exports=require(\"switchery\")}else if(typeof define==\"function\"&&define.amd){define(function(){return require(\"switchery\")})}else{this[\"Switchery\"]=require(\"switchery\")}})();"
  },
  {
    "path": "public/admin/js/plugins/video/responsible-video.js",
    "content": "$(function() {\n    var $allVideos = $(\"iframe[src^='http://player.vimeo.com'], iframe[src^='http://www.youtube.com'], object, embed\"),\n        $fluidEl = $(\"figure\");\n\n    $allVideos.each(function() {\n        $(this)\n            // jQuery .data does not work on object/embed elements\n            .attr('data-aspectRatio', this.height / this.width)\n            .removeAttr('height')\n            .removeAttr('width');\n    });\n    $(window).resize(function() {\n        var newWidth = $fluidEl.width();\n        $allVideos.each(function() {\n            var $el = $(this);\n            $el\n                .width(newWidth)\n                .height(newWidth * $el.attr('data-aspectRatio'));\n        });\n    }).resize();\n});"
  },
  {
    "path": "public/admin/scss/badgets_labels.scss",
    "content": ".label {\n  background-color: $light-gray;\n  color: $label-badget-color;\n  font-family: \"Open Sans\";\n  font-size: 10px;\n  font-weight: 600;\n  padding: 3px 8px;\n  text-shadow: none;\n  }\n\n.badge {\n  background-color: $light-gray;\n  color: $label-badget-color;\n  font-family: \"Open Sans\";\n  font-size: 11px;\n  font-weight: 600;\n  padding-bottom: 4px;\n  padding-left: 6px;\n  padding-right: 6px;\n  text-shadow: none;\n  }\n\n.label-primary, .badge-primary {\n  background-color: $navy;\n  color: white;\n  }\n\n.label-success, .badge-success {\n  background-color: $blue;\n  color: white;\n  }\n\n.label-warning, .badge-warning {\n  background-color: $yellow;\n  color: white;\n  }\n\n.label-warning-light, .badge-warning-light {\n  background-color: $yellow;\n  color: white;\n  }\n\n.label-danger, .badge-danger {\n  background-color: $red;\n  color: white;\n  }\n\n.label-info, .badge-info {\n  background-color: $lazur;\n  color: white;\n  }\n\n.label-inverse, .badge-inverse {\n  background-color: #262626;\n  color: white;\n  }\n\n.label-white, .badge-white {\n  background-color: white;\n  color: #5e5e5e;\n  }\n\n.label-white, .badge-disable {\n  background-color: #2a2e36;\n  color: #8b91a0;\n  }\n"
  },
  {
    "path": "public/admin/scss/base.scss",
    "content": "body {\n  font-family: $font-stack;\n  background-color: #2f4050;\n  font-size: 13px;\n  color: $text-color;\n  overflow-x: hidden;\n}\n\nbody.boxed-layout {\n  background: $boxed-backgound;\n}\n\nbody.boxed-layout #wrapper {\n  background-color: #2f4050;\n  max-width: $boxed-width;\n  margin: 0 auto;\n  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);\n  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);\n  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);\n}\n\n.top-navigation.boxed-layout #wrapper,\n.boxed-layout #wrapper.top-navigation {\n  max-width: 1300px !important;\n}\n\n.block {\n  display: block;\n}\n\n.clear {\n  display: block;\n  overflow: hidden;\n}\n\na {\n  cursor: pointer;\n}\n\na:hover, a:focus {\n  text-decoration: none;\n}\n\n.border-bottom {\n  border-bottom: 1px solid $border-color !important;\n}\n\n.font-bold {\n  font-weight: 600;\n}\n\n.font-noraml {\n  font-weight: 400;\n}\n\n.text-uppercase {\n  text-transform: uppercase;\n}\n\n.b-r {\n  border-right: 1px solid $border-color;\n}\n\n.hr-line-dashed {\n  border-top: 1px dashed $border-color;\n  color: white;\n  background-color: white;\n  height: 1px;\n  margin: 20px 0;\n}\n\n.hr-line-solid {\n  border-bottom: 1px solid $border-color;\n  background-color: rgba(0, 0, 0, 0);\n  border-style: solid !important;\n  margin-top: 15px;\n  margin-bottom: 15px;\n}\n\nvideo {\n  width: 100% !important;\n  height: auto !important;\n}\n\n/* GALLERY */\n.gallery > .row > div {\n  margin-bottom: 15px;\n}\n\n.fancybox img {\n  margin-bottom: 5px;\n  /* Only for demo */\n  width: 24%;\n}\n\n/* Summernote text editor  */\n.note-editor {\n  height: auto;\n  min-height: 300px;\n}\n\n/* MODAL */\n.modal-content {\n  background-clip: padding-box;\n  background-color: white;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 4px;\n  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n  outline: 0 none;\n  position: relative;\n}\n\n.modal-dialog {\n  z-index: 1200;\n}\n\n.modal-body {\n  padding: 20px 30px 30px 30px;\n}\n\n.inmodal .modal-body {\n  background: #f8fafb;\n}\n\n.inmodal .modal-header {\n  padding: 30px 15px;\n  text-align: center;\n}\n\n.animated.modal.fade .modal-dialog {\n  -webkit-transform: none;\n  -ms-transform: none;\n  -o-transform: none;\n  transform: none;\n}\n\n.inmodal .modal-title {\n  font-size: 26px;\n}\n\n.inmodal .modal-icon {\n  font-size: 84px;\n  color: #e2e3e3;\n}\n\n.modal-footer {\n  margin-top: 0;\n}\n\n/* WRAPPERS */\n\n#wrapper {\n  width: 100%;\n}\n\n.wrapper {\n  padding: 0 20px;\n}\n\n.wrapper-content {\n  padding: 20px 10px 40px;\n}\n\n#page-wrapper {\n  padding: 0 15px;\n  min-height: 568px;\n  position: relative !important;\n}\n\n@media (min-width: 768px) {\n  #page-wrapper {\n    position: inherit;\n    margin: 0 0 0 240px;\n    min-height: 1000px;\n  }\n}\n\n.title-action {\n  text-align: right;\n  padding-top: 30px;\n}\n\n.ibox-content h1, .ibox-content h2, .ibox-content h3, .ibox-content h4, .ibox-content h5,\n.ibox-title h1, .ibox-title h2, .ibox-title h3, .ibox-title h4, .ibox-title h5 {\n  margin-top: 5px;\n}\n\nul.unstyled, ol.unstyled {\n  list-style: none outside none;\n  margin-left: 0;\n}\n\n.big-icon {\n  font-size: 160px;\n  color: #e5e6e7;\n}\n\n/* FOOTER */\n\n.footer {\n  background: none repeat scroll 0 0 white;\n  border-top: 1px solid $border-color;\n  bottom: 0;\n  left: 0;\n  padding: 10px 20px;\n  position: absolute;\n  right: 0;\n}\n\n.footer.fixed_full {\n  position: fixed;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  z-index: 1000;\n  padding: 10px 20px;\n  background: white;\n  border-top: 1px solid $border-color;\n}\n\n.footer.fixed {\n  position: fixed;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  z-index: 1000;\n  padding: 10px 20px;\n  background: white;\n  border-top: 1px solid $border-color;\n  margin-left: $sidebar-width;\n}\n\nbody.mini-navbar .footer.fixed, body.body-small.mini-navbar .footer.fixed {\n  margin: 0 0 0 70px;\n}\n\nbody.fixed-sidebar.body-small.mini-navbar .footer.fixed {\n  margin: 0 0 0 $sidebar-width;\n}\n\nbody.body-small .footer.fixed {\n  margin-left: 0px;\n}\n\n/* PANELS */\n\n.page-heading {\n  border-top: 0;\n  padding: 0px 10px 20px 10px;\n}\n\n.panel-heading h1, .panel-heading h2 {\n  margin-bottom: 5px;\n}\n\n/* TABLES */\n\n.table-bordered {\n  border: 1px solid #ebebeb;\n}\n\n.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {\n  background-color: #f5f5f6;\n  border-bottom-width: 1px;\n}\n\n.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {\n  border: 1px solid #e7e7e7;\n}\n\n.table > thead > tr > th {\n  border-bottom: 1px solid #dddddd;\n  vertical-align: bottom;\n}\n\n.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {\n  border-top: 1px solid $border-color;\n  line-height: 1.42857;\n  padding: 8px;\n  vertical-align: top;\n}\n\n/* PANELS */\n\n.panel.blank-panel {\n  background: none;\n  margin: 0;\n}\n\n.blank-panel .panel-heading {\n  padding-bottom: 0;\n}\n\n.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {\n  -moz-border-bottom-colors: none;\n  -moz-border-left-colors: none;\n  -moz-border-right-colors: none;\n  -moz-border-top-colors: none;\n  background: none;\n  border-color: #dddddd #dddddd rgba(0, 0, 0, 0);\n  border-bottom: $gray;\n  border-image: none;\n  border-style: solid;\n  border-width: 1px;\n  color: #555555;\n  cursor: default;\n}\n\n.nav.nav-tabs li {\n  background: none;\n  border: none;\n}\n\n.nav-tabs > li > a {\n  color: #a7b1c2;\n  font-weight: 600;\n  padding: 10px 20px 10px 25px;\n}\n\n.nav-tabs > li > a:hover, .nav-tabs > li > a:focus {\n  background-color: #e6e6e6;\n  color: $text-color;\n}\n\n.ui-tab .tab-content {\n  padding: 20px 0px;\n}\n\n/* GLOBAL  */\n\n.no-padding {\n  padding: 0 !important;\n}\n\n.no-borders {\n  border: none !important;\n}\n\n.no-margins {\n  margin: 0 !important;\n}\n\n.no-top-border {\n  border-top: 0 !important;\n}\n\n.ibox-content.text-box {\n  padding-bottom: 0px;\n  padding-top: 15px;\n}\n\n.border-left-right {\n  border-left: 1px solid $border-color;\n  border-right: 1px solid $border-color;\n  border-top: none;\n  border-bottom: none;\n}\n\n.full-width {\n  width: 100% !important;\n}\n\n.link-block {\n  font-size: 12px;\n  padding: 10px;\n}\n\n.nav.navbar-top-links .link-block a {\n  font-size: 12px;\n}\n\n.link-block a {\n  font-size: 10px;\n  color: inherit;\n}\n\nbody.mini-navbar .branding {\n  display: none;\n}\n\nimg.circle-border {\n  border: 6px solid white;\n  border-radius: 50%;\n}\n\n.branding {\n  float: left;\n  color: white;\n  font-size: 18px;\n  font-weight: 600;\n  padding: 17px 20px;\n  text-align: center;\n  background-color: $navy;\n}\n\n.login-panel {\n  margin-top: 25%;\n}\n\n.icons-box h3 {\n  margin-top: 10px;\n  margin-bottom: 10px;\n}\n\n.icons-box .infont a i {\n  font-size: 25px;\n  display: block;\n  color: $text-color;\n}\n\n.icons-box .infont a {\n  color: #a6a8a9;\n}\n\n.icons-box .infont a {\n  padding: 10px;\n  margin: 1px;\n  display: block;\n}\n\n.ui-draggable .ibox-title {\n  cursor: move;\n}\n\n.breadcrumb {\n  background-color: white;\n  padding: 0;\n  margin-bottom: 0;\n}\n\n.breadcrumb > li a {\n  color: inherit;\n}\n\n.breadcrumb > .active {\n  color: inherit;\n}\n\ncode {\n  background-color: #f9f2f4;\n  border-radius: 4px;\n  color: #ca4440;\n  font-size: 90%;\n  padding: 2px 4px;\n  white-space: nowrap;\n}\n\n.ibox {\n  clear: both;\n  margin-bottom: 25px;\n  margin-top: 0;\n  padding: 0;\n}\n\n.ibox:after, .ibox:before {\n  display: table;\n}\n\n.ibox-title {\n  -moz-border-bottom-colors: none;\n  -moz-border-left-colors: none;\n  -moz-border-right-colors: none;\n  -moz-border-top-colors: none;\n  background-color: $ibox-title-bg;\n  border-color: $border-color;\n  border-image: none;\n  border-style: solid solid none;\n  border-width: 4px 0px 0;\n  color: inherit;\n  margin-bottom: 0;\n  padding: 14px 15px 7px;\n  height: 48px;\n}\n\n.ibox-content {\n  background-color: $ibox-content-bg;\n  color: inherit;\n  padding: 15px 20px 20px 20px;\n  border-color: $border-color;\n  border-image: none;\n  border-style: solid solid none;\n  border-width: 1px 0px;\n}\n\ntable.table-mail tr td {\n  padding: 12px;\n}\n\n.table-mail .check-mail {\n  padding-left: 20px;\n}\n\n.table-mail .mail-date {\n  padding-right: 20px;\n}\n\n.star-mail, .check-mail {\n  width: 40px;\n}\n\n.unread td a, .unread td {\n  font-weight: 600;\n  color: inherit;\n}\n\n.read td a, .read td {\n  font-weight: normal;\n  color: inherit;\n}\n\n.unread td {\n  background-color: #f9f8f8;\n}\n\n.ibox-content {\n  clear: both;\n}\n\n.ibox-heading {\n  background-color: #f3f6fb;\n  border-bottom: none;\n}\n\n.ibox-heading h3 {\n  font-weight: 200;\n  font-size: 24px;\n}\n\n.ibox-title h5 {\n  display: inline-block;\n  font-size: 14px;\n  margin: 0 0 7px;\n  padding: 0;\n  text-overflow: ellipsis;\n  float: left;\n}\n\n.ibox-title .label {\n  float: left;\n  margin-left: 4px;\n}\n\n.ibox-tools {\n  display: inline-block;\n  float: right;\n  margin-top: 0;\n  position: relative;\n  padding: 0;\n}\n\n.ibox-tools a {\n  cursor: pointer;\n  margin-left: 5px;\n  color: #c4c4c4;\n}\n\n.ibox-tools a.btn-primary {\n  color: white;\n}\n\n.ibox-tools .dropdown-menu > li > a {\n  padding: 4px 10px;\n  font-size: 12px;\n}\n\n.ibox .open > .dropdown-menu {\n  left: auto;\n  right: 0;\n}\n\n/* BACKGROUNDS */\n\n.gray-bg {\n  background-color: $gray;\n}\n\n.white-bg {\n  background-color: white;\n}\n\n.navy-bg {\n  background-color: $navy;\n  color: white;\n}\n\n.blue-bg {\n  background-color: $blue;\n  color: white;\n}\n\n.lazur-bg {\n  background-color: $lazur;\n  color: white;\n}\n\n.yellow-bg {\n  background-color: $yellow;\n  color: white;\n}\n\n.red-bg {\n  background-color: $red;\n  color: white;\n}\n\n.black-bg {\n  background-color: #262626;\n}\n\n.panel-primary {\n  border-color: $navy;\n}\n\n.panel-primary > .panel-heading {\n  background-color: $navy;\n  border-color: $navy;\n}\n\n.panel-success {\n  border-color: $blue;\n}\n\n.panel-success > .panel-heading {\n  background-color: $blue;\n  border-color: $blue;\n  color: white;\n}\n\n.panel-info {\n  border-color: $lazur;\n}\n\n.panel-info > .panel-heading {\n  background-color: $lazur;\n  border-color: $lazur;\n  color: white;\n}\n\n.panel-warning {\n  border-color: $yellow;\n}\n\n.panel-warning > .panel-heading {\n  background-color: $yellow;\n  border-color: $yellow;\n  color: white;\n}\n\n.panel-danger {\n  border-color: $red;\n}\n\n.panel-danger > .panel-heading {\n  background-color: $red;\n  border-color: $red;\n  color: white;\n}\n\n.progress-bar {\n  background-color: $navy;\n}\n\n.progress-small, .progress-small .progress-bar {\n  height: 10px;\n}\n\n.progress-small, .progress-mini {\n  margin-top: 5px;\n}\n\n.progress-mini, .progress-mini .progress-bar {\n  height: 5px;\n  margin-bottom: 0px;\n}\n\n.progress-bar-navy-light {\n  background-color: #3dc7ab;\n}\n\n.progress-bar-success {\n  background-color: $blue;\n}\n\n.progress-bar-info {\n  background-color: $lazur;\n}\n\n.progress-bar-warning {\n  background-color: $yellow;\n}\n\n.progress-bar-danger {\n  background-color: $red;\n}\n\n.panel-title {\n  font-size: inherit;\n}\n\n.jumbotron {\n  border-radius: 6px;\n  padding: 40px;\n}\n\n.jumbotron h1 {\n  margin-top: 0;\n}\n\n/* COLORS */\n\n.text-navy {\n  color: $navy;\n}\n\n.text-primary {\n  color: inherit;\n}\n\n.text-success {\n  color: $blue;\n}\n\n.text-info {\n  color: $lazur;\n}\n\n.text-warning {\n  color: $yellow;\n}\n\n.text-danger {\n  color: $red;\n}\n\n.text-muted {\n  color: #888888;\n}\n\n.simple_tag {\n  background-color: #f3f3f4;\n  border: 1px solid #e7eaec;\n  border-radius: 2px;\n  color: inherit;\n  font-size: 10px;\n  margin-right: 5px;\n  margin-top: 5px;\n  padding: 5px 12px;\n  display: inline-block;\n}\n\n.img-shadow {\n  -webkit-box-shadow: 0px 0px 3px 0px rgba(145,145,145,1);\n  -moz-box-shadow: 0px 0px 3px 0px rgba(145,145,145,1);\n  box-shadow: 0px 0px 3px 0px rgba(145,145,145,1);\n}\n\n/* For handle diferent bg color in AngularJS version */\n.dashboards\\.dashboard_2 nav.navbar,\n.dashboards\\.dashboard_3 nav.navbar,\n.mailbox\\.inbox nav.navbar,\n.mailbox\\.email_view nav.navbar,\n.mailbox\\.email_compose nav.navbar,\n.dashboards\\.dashboard_4_1 nav.navbar\n{\n  background: #fff;\n}\n\n/* For handle diferent bg color in MVC version */\n.Dashboard_2 .navbar.navbar-static-top,\n.Dashboard_3 .navbar.navbar-static-top,\n.Dashboard_4_1 .navbar.navbar-static-top,\n.ComposeEmail .navbar.navbar-static-top,\n.EmailView .navbar.navbar-static-top,\n.Inbox .navbar.navbar-static-top {\n  background: #fff;\n}\n\n/* MARGINS & PADDINGS */\n\n.p-xxs {\n  padding: 5px;\n}\n\n.p-xs {\n  padding: 10px;\n}\n\n.p-sm {\n  padding: 15px;\n}\n\n.p-m {\n  padding: 20px;\n}\n\n.p-md {\n  padding: 25px;\n}\n\n.p-lg {\n  padding: 30px;\n}\n\n.p-xl {\n  padding: 40px;\n}\n\n.m-xxs {\n  margin: 2px 4px;\n}\n\n.m-xs {\n  margin: 5px;\n}\n\n.m-sm {\n  margin: 10px;\n}\n\n.m {\n  margin: 15px;\n}\n\n.m-md {\n  margin: 20px;\n}\n\n.m-lg {\n  margin: 30px;\n}\n\n.m-xl {\n  margin: 50px;\n}\n\n.m-n {\n  margin: 0 !important;\n}\n\n.m-l-none {\n  margin-left: 0;\n}\n\n.m-l-xs {\n  margin-left: 5px;\n}\n\n.m-l-sm {\n  margin-left: 10px;\n}\n\n.m-l {\n  margin-left: 15px;\n}\n\n.m-l-md {\n  margin-left: 20px;\n}\n\n.m-l-lg {\n  margin-left: 30px;\n}\n\n.m-l-xl {\n  margin-left: 40px;\n}\n\n.m-l-n-xxs {\n  margin-left: -1px;\n}\n\n.m-l-n-xs {\n  margin-left: -5px;\n}\n\n.m-l-n-sm {\n  margin-left: -10px;\n}\n\n.m-l-n {\n  margin-left: -15px;\n}\n\n.m-l-n-md {\n  margin-left: -20px;\n}\n\n.m-l-n-lg {\n  margin-left: -30px;\n}\n\n.m-l-n-xl {\n  margin-left: -40px;\n}\n\n.m-t-none {\n  margin-top: 0;\n}\n\n.m-t-xxs {\n  margin-top: 1px;\n}\n\n.m-t-xs {\n  margin-top: 5px;\n}\n\n.m-t-sm {\n  margin-top: 10px;\n}\n\n.m-t {\n  margin-top: 15px;\n}\n\n.m-t-md {\n  margin-top: 20px;\n}\n\n.m-t-lg {\n  margin-top: 30px;\n}\n\n.m-t-xl {\n  margin-top: 40px;\n}\n\n.m-t-n-xxs {\n  margin-top: -1px;\n}\n\n.m-t-n-xs {\n  margin-top: -5px;\n}\n\n.m-t-n-sm {\n  margin-top: -10px;\n}\n\n.m-t-n {\n  margin-top: -15px;\n}\n\n.m-t-n-md {\n  margin-top: -20px;\n}\n\n.m-t-n-lg {\n  margin-top: -30px;\n}\n\n.m-t-n-xl {\n  margin-top: -40px;\n}\n\n.m-r-none {\n  margin-right: 0;\n}\n\n.m-r-xxs {\n  margin-right: 1px;\n}\n\n.m-r-xs {\n  margin-right: 5px;\n}\n\n.m-r-sm {\n  margin-right: 10px;\n}\n\n.m-r {\n  margin-right: 15px;\n}\n\n.m-r-md {\n  margin-right: 20px;\n}\n\n.m-r-lg {\n  margin-right: 30px;\n}\n\n.m-r-xl {\n  margin-right: 40px;\n}\n\n.m-r-n-xxs {\n  margin-right: -1px;\n}\n\n.m-r-n-xs {\n  margin-right: -5px;\n}\n\n.m-r-n-sm {\n  margin-right: -10px;\n}\n\n.m-r-n {\n  margin-right: -15px;\n}\n\n.m-r-n-md {\n  margin-right: -20px;\n}\n\n.m-r-n-lg {\n  margin-right: -30px;\n}\n\n.m-r-n-xl {\n  margin-right: -40px;\n}\n\n.m-b-none {\n  margin-bottom: 0;\n}\n\n.m-b-xxs {\n  margin-bottom: 1px;\n}\n\n.m-b-xs {\n  margin-bottom: 5px;\n}\n\n.m-b-sm {\n  margin-bottom: 10px;\n}\n\n.m-b {\n  margin-bottom: 15px;\n}\n\n.m-b-md {\n  margin-bottom: 20px;\n}\n\n.m-b-lg {\n  margin-bottom: 30px;\n}\n\n.m-b-xl {\n  margin-bottom: 40px;\n}\n\n.m-b-n-xxs {\n  margin-bottom: -1px;\n}\n\n.m-b-n-xs {\n  margin-bottom: -5px;\n}\n\n.m-b-n-sm {\n  margin-bottom: -10px;\n}\n\n.m-b-n {\n  margin-bottom: -15px;\n}\n\n.m-b-n-md {\n  margin-bottom: -20px;\n}\n\n.m-b-n-lg {\n  margin-bottom: -30px;\n}\n\n.m-b-n-xl {\n  margin-bottom: -40px;\n}\n\n.space-15 {\n  margin: 15px 0;\n}\n\n.space-20 {\n  margin: 20px 0;\n}\n\n.space-25 {\n  margin: 25px 0;\n}\n\n.space-30 {\n  margin: 30px 0;\n}\n\n// Bootstrap issue in 3.3.0 with modal https://github.com/twbs/bootstrap/issues/9855\n// Fix\nbody.modal-open {\n  padding-right: inherit !important;\n}\n"
  },
  {
    "path": "public/admin/scss/buttons.scss",
    "content": ".btn {\n  border-radius: $btn-border-radius;\n}\n\n.float-e-margins .btn {\n  margin-bottom: 5px;\n}\n\n.btn-w-m {\n  min-width: 120px;\n}\n\n.btn-primary.btn-outline {\n  color: $navy;\n}\n\n.btn-success.btn-outline {\n  color: $blue;\n}\n\n.btn-info.btn-outline {\n  color: $lazur;\n}\n\n.btn-warning.btn-outline {\n  color: $yellow;\n}\n\n.btn-danger.btn-outline {\n  color: $red;\n}\n\n.btn-primary.btn-outline:hover,\n.btn-success.btn-outline:hover,\n.btn-info.btn-outline:hover,\n.btn-warning.btn-outline:hover,\n.btn-danger.btn-outline:hover {\n  color: white;\n}\n\n.btn-primary {\n  background-color: $navy;\n  border-color: $navy;\n  color: white;\n}\n\n.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {\n  background-color: darken($navy, 3%);\n  border-color: darken($navy, 3%);\n  color: white;\n}\n\n.btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {\n  background-image: none;\n}\n\n.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary.active[disabled], fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {\n  background-color: lighten($navy, 4%);\n  border-color: lighten($navy, 4%);\n}\n\n.btn-success {\n  background-color: $blue;\n  border-color: $blue;\n  color: white;\n}\n\n.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {\n  background-color: darken($blue, 3%);\n  border-color: darken($blue, 3%);\n  color: white;\n}\n\n.btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {\n  background-image: none;\n}\n\n.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success.active[disabled], fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {\n  background-color: lighten($blue, 4%);\n  border-color: lighten($blue, 4%);\n}\n\n.btn-info {\n  background-color: $lazur;\n  border-color: $lazur;\n  color: white;\n}\n\n.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {\n  background-color: darken($lazur, 3%);\n  border-color: darken($lazur, 3%);\n  color: white;\n}\n\n.btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {\n  background-image: none;\n}\n\n.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info.active[disabled], fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {\n  background-color: lighten($lazur, 4%);\n  border-color: lighten($lazur, 4%);\n}\n\n.btn-default {\n  background-color: $dark-gray;\n  border-color: $dark-gray;\n  color: white;\n}\n\n.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {\n  background-color: darken($dark-gray, 3%);\n  border-color: darken($dark-gray, 3%);\n  color: white;\n}\n\n.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {\n  background-image: none;\n}\n\n.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default.active[disabled], fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {\n  background-color: lighten($dark-gray, 4%);\n  border-color: lighten($dark-gray, 4%);\n}\n\n.btn-warning {\n  background-color: $yellow;\n  border-color: $yellow;\n  color: white;\n}\n\n.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {\n  background-color: darken($yellow, 3%);\n  border-color: darken($yellow, 3%);\n  color: white;\n}\n\n.btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {\n  background-image: none;\n}\n\n.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning.active[disabled], fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {\n  background-color: lighten($yellow, 4%);\n  border-color: lighten($yellow, 4%);\n}\n\n.btn-danger {\n  background-color: $red;\n  border-color: $red;\n  color: white;\n}\n\n.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {\n  background-color: darken($red, 3%);\n  border-color: darken($red, 3%);\n  color: white;\n}\n\n.btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {\n  background-image: none;\n}\n\n.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger.active[disabled], fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {\n  background-color: lighten($red, 4%);\n  border-color: lighten($red, 4%);\n}\n\n.btn-link {\n  color: inherit;\n}\n\n.btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .open .dropdown-toggle.btn-link {\n  color: $blue;\n}\n\n.btn-link:active, .btn-link.active, .open .dropdown-toggle.btn-link {\n  background-image: none;\n}\n\n.btn-link.disabled, .btn-link.disabled:hover, .btn-link.disabled:focus, .btn-link.disabled:active, .btn-link.disabled.active, .btn-link[disabled], .btn-link[disabled]:hover, .btn-link[disabled]:focus, .btn-link[disabled]:active, .btn-link.active[disabled], fieldset[disabled] .btn-link, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:active, fieldset[disabled] .btn-link.active {\n  color: #cacaca;\n}\n\n.btn-white {\n  color: inherit;\n  background: white;\n  border: 1px solid $border-color;\n}\n\n.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white {\n  color: inherit;\n  border: 1px solid #d2d2d2;\n}\n\n.btn-white:active, .btn-white.active {\n  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) inset;\n}\n\n.btn-white:active, .btn-white.active, .open .dropdown-toggle.btn-white {\n  background-image: none;\n}\n\n.btn-white.disabled, .btn-white.disabled:hover, .btn-white.disabled:focus, .btn-white.disabled:active, .btn-white.disabled.active, .btn-white[disabled], .btn-white[disabled]:hover, .btn-white[disabled]:focus, .btn-white[disabled]:active, .btn-white.active[disabled], fieldset[disabled] .btn-white, fieldset[disabled] .btn-white:hover, fieldset[disabled] .btn-white:focus, fieldset[disabled] .btn-white:active, fieldset[disabled] .btn-white.active {\n  color: #cacaca;\n}\n\n.form-control, .form-control:focus, .has-error .form-control:focus, .has-success .form-control:focus, .has-warning .form-control:focus, .navbar-collapse, .navbar-form, .navbar-form-custom .form-control:focus, .navbar-form-custom .form-control:hover, .open .btn.dropdown-toggle, .panel, .popover, .progress, .progress-bar {\n  box-shadow: none;\n}\n\n.btn-outline {\n  color: inherit;\n  background-color: transparent;\n  transition: all 0.5s;\n}\n\n.btn-rounded {\n  border-radius: 50px;\n}\n\n.btn-large-dim {\n  width: 90px;\n  height: 90px;\n  font-size: 42px;\n}\n\nbutton.dim {\n  display: inline-block;\n  color: white;\n  text-decoration: none;\n  text-transform: uppercase;\n  text-align: center;\n  padding-top: 6px;\n  margin-right: 10px;\n  position: relative;\n  cursor: pointer;\n  border-radius: 5px;\n  font-weight: 600;\n  margin-bottom: 20px !important;\n}\n\nbutton.dim:active {\n  top: 3px;\n}\n\nbutton.btn-primary.dim {\n  box-shadow: inset 0px 0px 0px darken($navy, 6%), 0px 5px 0px 0px darken($navy, 6%), 0px 10px 5px #999999;\n}\n\nbutton.btn-primary.dim:active {\n  box-shadow: inset 0px 0px 0px darken($navy, 6%), 0px 2px 0px 0px darken($navy, 6%), 0px 5px 3px #999999;\n}\n\nbutton.btn-default.dim {\n  box-shadow: inset 0px 0px 0px darken($dark-gray, 6%), 0px 5px 0px 0px darken($dark-gray, 6%), 0px 10px 5px #999999;\n}\n\nbutton.btn-default.dim:active {\n  box-shadow: inset 0px 0px 0px darken($dark-gray, 6%), 0px 2px 0px 0px darken($dark-gray, 6%), 0px 5px 3px #999999;\n}\n\nbutton.btn-warning.dim {\n  box-shadow: inset 0px 0px 0px darken($yellow, 6%), 0px 5px 0px 0px darken($yellow, 6%), 0px 10px 5px #999999;\n}\n\nbutton.btn-warning.dim:active {\n  box-shadow: inset 0px 0px 0px darken($yellow, 6%), 0px 2px 0px 0px darken($yellow, 6%), 0px 5px 3px #999999;\n}\n\nbutton.btn-info.dim {\n  box-shadow: inset 0px 0px 0px darken($lazur, 6%), 0px 5px 0px 0px darken($lazur, 6%), 0px 10px 5px #999999;\n}\n\nbutton.btn-info.dim:active {\n  box-shadow: inset 0px 0px 0px darken($lazur, 6%), 0px 2px 0px 0px darken($lazur, 6%), 0px 5px 3px #999999;\n}\n\nbutton.btn-success.dim {\n  box-shadow: inset 0px 0px 0px darken($blue, 6%), 0px 5px 0px 0px darken($blue, 6%), 0px 10px 5px #999999;\n}\n\nbutton.btn-success.dim:active {\n  box-shadow: inset 0px 0px 0px darken($blue, 6%), 0px 2px 0px 0px darken($blue, 6%), 0px 5px 3px #999999;\n}\n\nbutton.btn-danger.dim {\n  box-shadow: inset 0px 0px 0px darken($red, 6%), 0px 5px 0px 0px darken($red, 6%), 0px 10px 5px #999999;\n}\n\nbutton.btn-danger.dim:active {\n  box-shadow: inset 0px 0px 0px darken($red, 6%), 0px 2px 0px 0px darken($red, 6%), 0px 5px 3px #999999;\n}\n\nbutton.dim:before {\n  font-size: 50px;\n  line-height: 1em;\n  font-weight: normal;\n  color: white;\n  display: block;\n  padding-top: 10px;\n}\n\nbutton.dim:active:before {\n  top: 7px;\n  font-size: 50px;\n}\n"
  },
  {
    "path": "public/admin/scss/custom.scss",
    "content": "/* Only demo */\n@media (max-width: 1000px) {\n  .welcome-message {\n    display: none;\n  }\n}\n"
  },
  {
    "path": "public/admin/scss/elements.scss",
    "content": "/* TOOGLE SWICH */\n\n.onoffswitch {\n  position: relative;\n  width: 64px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n}\n\n.onoffswitch-checkbox {\n  display: none;\n}\n\n.onoffswitch-label {\n  display: block;\n  overflow: hidden;\n  cursor: pointer;\n  border: 2px solid $navy;\n  border-radius: 2px;\n}\n\n.onoffswitch-inner {\n  width: 200%;\n  margin-left: -100%;\n  -moz-transition: margin 0.3s ease-in 0s;\n  -webkit-transition: margin 0.3s ease-in 0s;\n  -o-transition: margin 0.3s ease-in 0s;\n  transition: margin 0.3s ease-in 0s;\n}\n\n.onoffswitch-inner:before, .onoffswitch-inner:after {\n  float: left;\n  width: 50%;\n  height: 20px;\n  padding: 0;\n  line-height: 20px;\n  font-size: 12px;\n  color: white;\n  font-family: Trebuchet, Arial, sans-serif;\n  font-weight: bold;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n}\n\n.onoffswitch-inner:before {\n  content: \"ON\";\n  padding-left: 10px;\n  background-color: $navy;\n  color: white;\n}\n\n.onoffswitch-inner:after {\n  content: \"OFF\";\n  padding-right: 10px;\n  background-color: white;\n  color: #999999;\n  text-align: right;\n}\n\n.onoffswitch-switch {\n  width: 20px;\n  margin: 0px;\n  background: white;\n  border: 2px solid $navy;\n  border-radius: 2px;\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  right: 44px;\n  -moz-transition: all 0.3s ease-in 0s;\n  -webkit-transition: all 0.3s ease-in 0s;\n  -o-transition: all 0.3s ease-in 0s;\n  transition: all 0.3s ease-in 0s;\n}\n\n.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {\n  margin-left: 0;\n}\n\n.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {\n  right: 0px;\n}\n\n/* CHOSEN PLUGIN */\n\n.chosen-container-single .chosen-single {\n  background: white;\n  box-shadow: none;\n  -moz-box-sizing: border-box;\n  background-color: white;\n  border: 1px solid #cbd5dd;\n  border-radius: 2px;\n  cursor: text;\n  height: auto !important;\n  margin: 0;\n  min-height: 30px;\n  overflow: hidden;\n  padding: 4px 12px;\n  position: relative;\n  width: 100%;\n}\n\n.chosen-container-multi .chosen-choices li.search-choice {\n  background: #f1f1f1;\n  border: 1px solid #ededed;\n  border-radius: 2px;\n  box-shadow: none;\n  color: #333333;\n  cursor: default;\n  line-height: 13px;\n  margin: 3px 0 3px 5px;\n  padding: 3px 20px 3px 5px;\n  position: relative;\n}\n\n/* PAGINATIN */\n\n.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {\n  background-color: #f4f4f4;\n  border-color: #dddddd;\n  color: inherit;\n  cursor: default;\n  z-index: 2;\n}\n\n.pagination > li > a, .pagination > li > span {\n  background-color: white;\n  border: 1px solid #dddddd;\n  color: inherit;\n  float: left;\n  line-height: 1.42857;\n  margin-left: -1px;\n  padding: 4px 10px;\n  position: relative;\n  text-decoration: none;\n}\n\n/* TOOLTIPS */\n\n.tooltip-inner {\n  background-color: #2f4050;\n}\n\n.tooltip.top .tooltip-arrow {\n  border-top-color: #2f4050;\n}\n\n.tooltip.right .tooltip-arrow {\n  border-right-color: #2f4050;\n}\n\n.tooltip.bottom .tooltip-arrow {\n  border-bottom-color: #2f4050;\n}\n\n.tooltip.left .tooltip-arrow {\n  border-left-color: #2f4050;\n}\n\n/* EASY PIE CHART */\n\n.easypiechart {\n  position: relative;\n  text-align: center;\n}\n\n.easypiechart .h2 {\n  margin-left: 10px;\n  margin-top: 10px;\n  display: inline-block;\n}\n\n.easypiechart canvas {\n  top: 0;\n  left: 0;\n}\n\n.easypiechart .easypie-text {\n  line-height: 1;\n  position: absolute;\n  top: 33px;\n  width: 100%;\n  z-index: 1;\n}\n\n.easypiechart img {\n  margin-top: -4px;\n}\n\n.jqstooltip {\n  -webkit-box-sizing: content-box;\n  -moz-box-sizing: content-box;\n  box-sizing: content-box;\n}\n\n/* FULLCALENDAR */\n\n.fc-state-default {\n  background-color: white;\n  background-image: none;\n  background-repeat: repeat-x;\n  box-shadow: none;\n  color: #333333;\n  text-shadow: none;\n}\n\n.fc-state-default {\n  border: 1px solid;\n}\n\n.fc-button {\n  color: inherit;\n  border: 1px solid $border-color;\n  cursor: pointer;\n  display: inline-block;\n  height: 1.9em;\n  line-height: 1.9em;\n  overflow: hidden;\n  padding: 0 0.6em;\n  position: relative;\n  white-space: nowrap;\n}\n\n.fc-state-active {\n  background-color: $navy;\n  border-color: $navy;\n  color: white;\n}\n\n.fc-header-title h2 {\n  font-size: 16px;\n  font-weight: 600;\n  color: inherit;\n}\n\n.fc-content .fc-widget-header, .fc-content .fc-widget-content {\n  border-color: $border-color;\n  font-weight: normal;\n}\n\n.fc-border-separate tbody {\n  background-color: #f8f8f8;\n}\n\n.fc-state-highlight {\n  background: none repeat scroll 0 0 #fcf8e3;\n}\n\n.external-event {\n  padding: 5px 10px;\n  border-radius: 2px;\n  cursor: pointer;\n  margin-bottom: 5px;\n}\n\n.fc-ltr .fc-event-hori.fc-event-end, .fc-rtl .fc-event-hori.fc-event-start {\n  border-radius: 2px;\n}\n\n.fc-event,\n.fc-agenda .fc-event-time,\n.fc-event a {\n  padding: 4px 6px;\n  background-color: $navy;\n  border-color: $navy;\n}\n\n.fc-event-time, .fc-event-title {\n  color: #717171;\n  padding: 0 1px;\n}\n\n.ui-calendar .fc-event-time, .ui-calendar .fc-event-title {\n  color: white;\n}\n\n/* Chat */\n.chat-activity-list .chat-element {\n  border-bottom: 1px solid $border-color;\n}\n\n.chat-element:first-child {\n  margin-top: 0;\n}\n\n.chat-element {\n  padding-bottom: 15px;\n}\n\n.chat-element, .chat-element .media {\n  margin-top: 15px;\n}\n\n.chat-element, .media-body {\n  overflow: hidden;\n}\n\n.media-body {\n  display: block;\n}\n\n.chat-element > .pull-left {\n  margin-right: 10px;\n}\n\n.chat-element img.img-circle, .dropdown-messages-box img.img-circle {\n  width: 38px;\n  height: 38px;\n}\n\n.chat-element .well {\n  border: 1px solid $border-color;\n  box-shadow: none;\n  margin-top: 10px;\n  margin-bottom: 5px;\n  padding: 10px 20px;\n  font-size: 11px;\n  line-height: 16px;\n}\n\n.chat-element .actions {\n  margin-top: 10px;\n}\n\n.chat-element .photos {\n  margin: 10px 0;\n}\n\n.right.chat-element > .pull-right {\n  margin-left: 10px;\n}\n\n.chat-photo {\n  max-height: 180px;\n  border-radius: 4px;\n  overflow: hidden;\n  margin-right: 10px;\n  margin-bottom: 10px;\n}\n\n.chat {\n  margin: 0;\n  padding: 0;\n  list-style: none;\n}\n\n.chat li {\n  margin-bottom: 10px;\n  padding-bottom: 5px;\n  border-bottom: 1px dotted #b3a9a9;\n}\n\n.chat li.left .chat-body {\n  margin-left: 60px;\n}\n\n.chat li.right .chat-body {\n  margin-right: 60px;\n}\n\n.chat li .chat-body p {\n  margin: 0;\n  color: #777777;\n}\n\n.panel .slidedown .glyphicon,\n.chat .glyphicon {\n  margin-right: 5px;\n}\n\n.chat-panel .panel-body {\n  height: 350px;\n  overflow-y: scroll;\n}\n\n/* LIST GROUP */\n\na.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus {\n  background-color: $navy;\n  border-color: $navy;\n  color: white;\n  z-index: 2;\n}\n\n.list-group-item-heading {\n  margin-top: 10px;\n}\n\n.list-group-item-text {\n  margin: 0 0 10px;\n  color: inherit;\n  font-size: 12px;\n  line-height: inherit;\n}\n\n.no-padding .list-group-item {\n  border-left: none;\n  border-right: none;\n  border-bottom: none;\n}\n\n.no-padding .list-group-item:first-child {\n  border-left: none;\n  border-right: none;\n  border-bottom: none;\n  border-top: none;\n}\n\n.no-padding .list-group {\n  margin-bottom: 0;\n}\n\n.list-group-item {\n  background-color: inherit;\n  border: 1px solid $border-color;\n  display: block;\n  margin-bottom: -1px;\n  padding: 10px 15px;\n  position: relative;\n}\n\n/* FLOT CHART  */\n\n.flot-chart {\n  display: block;\n  height: 200px;\n}\n\n.widget .flot-chart.dashboard-chart {\n  display: block;\n  height: 120px;\n  margin-top: 40px;\n}\n\n.flot-chart.dashboard-chart {\n  display: block;\n  height: 180px;\n  margin-top: 40px;\n}\n\n.flot-chart-content {\n  width: 100%;\n  height: 100%;\n}\n\n.flot-chart-pie-content {\n  width: 200px;\n  height: 200px;\n  margin: auto;\n}\n\n.jqstooltip {\n  position: absolute;\n  display: block;\n  left: 0px;\n  top: 0px;\n  visibility: hidden;\n  background: rgb(43, 48, 58);\n  background-color: rgba(43, 48, 58, 0.8);\n  color: white;\n  text-align: left;\n  white-space: nowrap;\n  z-index: 10000;\n  padding: 5px 5px 5px 5px;\n  min-height: 22px;\n  border-radius: 3px;\n}\n\n.jqsfield {\n  color: white;\n  text-align: left;\n}\n\n.h-200 {\n  min-height: 200px;\n}\n\n.legendLabel {\n  padding-left: 5px;\n}\n\n.stat-list li:first-child {\n  margin-top: 0;\n}\n\n.stat-list {\n  list-style: none;\n  padding: 0;\n  margin: 0;\n}\n\n.stat-percent {\n  float: right;\n}\n\n.stat-list li {\n  margin-top: 15px;\n  position: relative;\n}\n\n/* DATATABLES */\n\ntable.dataTable thead .sorting,\ntable.dataTable thead .sorting_asc:after,\ntable.dataTable thead .sorting_desc,\ntable.dataTable thead .sorting_asc_disabled,\ntable.dataTable thead .sorting_desc_disabled {\n  background: transparent;\n}\n\ntable.dataTable thead .sorting_asc:after {\n  float: right;\n  font-family: fontawesome;\n}\n\ntable.dataTable thead .sorting_desc:after {\n  content: \"\\f0dd\";\n  float: right;\n  font-family: fontawesome;\n}\n\ntable.dataTable thead .sorting:after {\n  content: \"\\f0dc\";\n  float: right;\n  font-family: fontawesome;\n  color: rgba(50, 50, 50, 0.5);\n}\n\n.dataTables_wrapper {\n  padding-bottom: 30px;\n}\n\n/* CIRCLE */\n\n.img-circle {\n  border-radius: 50%;\n}\n\n.btn-circle {\n  width: 30px;\n  height: 30px;\n  padding: 6px 0;\n  border-radius: 15px;\n  text-align: center;\n  font-size: 12px;\n  line-height: 1.42857;\n}\n\n.btn-circle.btn-lg {\n  width: 50px;\n  height: 50px;\n  padding: 10px 16px;\n  border-radius: 25px;\n  font-size: 18px;\n  line-height: 1.33;\n}\n\n.btn-circle.btn-xl {\n  width: 70px;\n  height: 70px;\n  padding: 10px 16px;\n  border-radius: 35px;\n  font-size: 24px;\n  line-height: 1.33;\n}\n\n.show-grid [class^=\"col-\"] {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  border: 1px solid #dddddd;\n  background-color: #eeeeee !important;\n}\n\n.show-grid {\n  margin: 15px 0;\n}\n\n/* ANIMATION */\n\n.css-animation-box h1 {\n  font-size: 44px;\n}\n\n.animation-efect-links a {\n  padding: 4px 6px;\n  font-size: 12px;\n}\n\n#animation_box {\n  background-color: #f9f8f8;\n  border-radius: 16px;\n  width: 80%;\n  margin: 0 auto;\n  padding-top: 80px;\n}\n\n.animation-text-box {\n  position: absolute;\n  margin-top: 40px;\n  left: 50%;\n  margin-left: -100px;\n  width: 200px;\n}\n\n.animation-text-info {\n  position: absolute;\n  margin-top: -60px;\n  left: 50%;\n  margin-left: -100px;\n  width: 200px;\n  font-size: 10px;\n}\n\n.animation-text-box h2 {\n  font-size: 54px;\n  font-weight: 600;\n  margin-bottom: 5px;\n}\n\n.animation-text-box p {\n  font-size: 12px;\n  text-transform: uppercase;\n}\n\n/* PEACE */\n\n.pace .pace-progress {\n  background: $navy;\n  position: fixed;\n  z-index: 2000;\n  top: 0px;\n  left: $sidebar-width;\n  height: 2px;\n  -webkit-transition: width 1s;\n  -moz-transition: width 1s;\n  -o-transition: width 1s;\n  transition: width 1s;\n}\n\n.body-small .pace .pace-progress {\n  left: 0px;\n}\n\n.pace-inactive {\n  display: none;\n}\n\n/* WIDGETS */\n\n.widget {\n  border-radius: 5px;\n  padding: 15px 20px;\n  margin-bottom: 10px;\n  margin-top: 10px;\n}\n\n.widget.style1 h2 {\n  font-size: 30px;\n}\n\n.widget h2, .widget h3 {\n  margin-top: 5px;\n  margin-bottom: 0;\n}\n\n.widget-text-box {\n  padding: 20px;\n  border: 1px solid $border-color;\n  background: white;\n}\n\n.widget-head-color-box {\n  border-radius: 5px 5px 0px 0px;\n  margin-top: 10px;\n}\n\n.widget .flot-chart {\n  height: 100px;\n}\n\n.vertical-align div {\n  display: inline-block;\n  vertical-align: middle;\n}\n\n.vertical-align h2, .vertical-align h3 {\n  margin: 0;\n}\n\n.todo-list {\n  list-style: none outside none;\n  margin: 0;\n  padding: 0;\n  font-size: 14px;\n}\n\n.todo-list.small-list {\n  font-size: 12px;\n}\n\n.todo-list.small-list > li {\n  background: $gray;\n  border-left: none;\n  border-right: none;\n  border-radius: 4px;\n  color: inherit;\n  margin-bottom: 2px;\n  padding: 6px 6px 6px 12px;\n}\n\n.todo-list.small-list .btn-xs, .todo-list.small-list .btn-group-xs > .btn {\n  border-radius: 5px;\n  font-size: 10px;\n  line-height: 1.5;\n  padding: 1px 2px 1px 5px;\n}\n\n.todo-list > li {\n  background: $gray;\n  border-left: 6px solid $border-color;\n  border-right: 6px solid $border-color;\n  border-radius: 4px;\n  color: inherit;\n  margin-bottom: 2px;\n  padding: 10px;\n}\n\n.todo-list .handle {\n  cursor: move;\n  display: inline-block;\n  font-size: 16px;\n  margin: 0 5px;\n}\n\n.todo-list > li .label {\n  font-size: 9px;\n  margin-left: 10px;\n}\n\n.check-link {\n  font-size: 16px;\n}\n\n.todo-completed {\n  text-decoration: line-through;\n}\n\n.geo-statistic h1 {\n  font-size: 36px;\n  margin-bottom: 0;\n}\n\n.glyphicon.fa {\n  font-family: \"FontAwesome\";\n}\n\n/* INPUTS */\n.inline {\n  display: inline-block !important;\n}\n\n.input-s-sm {\n  width: 120px;\n}\n\n.input-s {\n  width: 200px;\n}\n\n.input-s-lg {\n  width: 250px;\n}\n\n.i-checks {\n  padding-left: 0;\n}\n\n.form-control, .single-line {\n  background-color: white;\n  background-image: none;\n  border: 1px solid #e5e6e7;\n  border-radius: 1px;\n  color: inherit;\n  display: block;\n  padding: 6px 12px;\n  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;\n  width: 100%;\n}\n\n.form-control:focus, .single-line:focus {\n  border-color: $navy;\n}\n\n.has-success .form-control {\n  border-color: $navy;\n}\n\n.has-warning .form-control {\n  border-color: $yellow;\n}\n\n.has-error .form-control {\n  border-color: $red;\n}\n\n.has-success .control-label {\n  color: $navy;\n}\n\n.has-warning .control-label {\n  color: $yellow;\n}\n\n.has-error .control-label {\n  color: $red;\n}\n\n.input-group-addon {\n  background-color: white;\n  border: 1px solid #e5e6e7;\n  border-radius: 1px;\n  color: inherit;\n  font-size: 14px;\n  font-weight: 400;\n  line-height: 1;\n  padding: 6px 12px;\n  text-align: center;\n}\n\n.spinner-buttons.input-group-btn .btn-xs {\n  line-height: 1.13;\n}\n\n.spinner-buttons.input-group-btn {\n  width: 20%;\n}\n\n.noUi-connect {\n  background: none repeat scroll 0 0 $navy;\n  box-shadow: none;\n}\n\n.slider_red .noUi-connect {\n  background: none repeat scroll 0 0 $red;\n  box-shadow: none;\n}\n\n/* UI Sortable */\n\n.ui-sortable .ibox-title {\n  cursor: move;\n}\n\n.ui-sortable-placeholder {\n  border: 1px dashed #cecece !important;\n  visibility: visible !important;\n  background: #e7eaec;\n}\n\n.ibox.ui-sortable-placeholder {\n  margin: 0px 0px 23px !important;\n}\n\n/* SWITCHES */\n.onoffswitch {\n  position: relative;\n  width: 54px;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n}\n\n.onoffswitch-checkbox {\n  display: none;\n}\n\n.onoffswitch-label {\n  display: block;\n  overflow: hidden;\n  cursor: pointer;\n  border: 2px solid #1ab394;\n  border-radius: 3px;\n}\n\n.onoffswitch-inner {\n  display: block;\n  width: 200%;\n  margin-left: -100%;\n  -moz-transition: margin 0.3s ease-in 0s;\n  -webkit-transition: margin 0.3s ease-in 0s;\n  -o-transition: margin 0.3s ease-in 0s;\n  transition: margin 0.3s ease-in 0s;\n}\n\n.onoffswitch-inner:before, .onoffswitch-inner:after {\n  display: block;\n  float: left;\n  width: 50%;\n  height: 16px;\n  padding: 0;\n  line-height: 16px;\n  font-size: 10px;\n  color: white;\n  font-family: Trebuchet, Arial, sans-serif;\n  font-weight: bold;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n}\n\n.onoffswitch-inner:before {\n  content: \"ON\";\n  padding-left: 7px;\n  background-color: #1ab394;\n  color: white;\n}\n\n.onoffswitch-inner:after {\n  content: \"OFF\";\n  padding-right: 7px;\n  background-color: white;\n  color: #919191;\n  text-align: right;\n}\n\n.onoffswitch-switch {\n  display: block;\n  width: 18px;\n  margin: 0px;\n  background: white;\n  border: 2px solid #1ab394;\n  border-radius: 3px;\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  right: 36px;\n  -moz-transition: all 0.3s ease-in 0s;\n  -webkit-transition: all 0.3s ease-in 0s;\n  -o-transition: all 0.3s ease-in 0s;\n  transition: all 0.3s ease-in 0s;\n}\n\n.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {\n  margin-left: 0;\n}\n\n.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {\n  right: 0px;\n}\n\n/* jqGrid */\n\n.ui-jqgrid {\n  -moz-box-sizing: content-box;\n}\n\n.ui-jqgrid-btable {\n  border-collapse: separate;\n}\n\n.ui-jqgrid-htable {\n  border-collapse: separate;\n}\n\n.ui-jqgrid-titlebar {\n  height: 40px;\n  line-height: 15px;\n  color: #676a6c;\n  background-color: #f9f9f9;\n  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);\n}\n\n.ui-jqgrid .ui-jqgrid-title {\n  float: left;\n  margin: 1.1em 1em 0.2em;\n}\n\n.ui-jqgrid .ui-jqgrid-titlebar {\n  position: relative;\n  border-left: 0px solid;\n  border-right: 0px solid;\n  border-top: 0px solid;\n}\n\n.ui-widget-header {\n  background: none;\n  background-image: none;\n  background-color: #f5f5f6;\n  text-transform: uppercase;\n  border-top-left-radius: 0px;\n  border-top-right-radius: 0px;\n}\n\n.ui-jqgrid tr.ui-row-ltr td {\n  border-right-color: inherit;\n  border-right-style: solid;\n  border-right-width: 1px;\n  text-align: left;\n  border-color: #dddddd;\n  background-color: inherit;\n}\n\n.ui-search-toolbar input[type=\"text\"] {\n  font-size: 12px;\n  height: 15px;\n  border: 1px solid #cccccc;\n  border-radius: 0px;\n}\n\n.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {\n  background: #f9f9f9;\n  border: 1px solid #dddddd;\n  line-height: 15px;\n  font-weight: bold;\n  color: #676a6c;\n  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);\n}\n\n.ui-widget-content {\n  box-sizing: content-box;\n}\n\n.ui-icon-triangle-1-n {\n  background-position: 1px -16px;\n}\n\n.ui-jqgrid tr.ui-search-toolbar th {\n  border-top-width: 0px !important;\n  border-top-color: inherit !important;\n  border-top-style: ridge !important;\n}\n\n.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {\n  background: whitesmoke;\n  border-collapse: separate;\n}\n\n.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {\n  background: #f2fbff;\n}\n\n.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {\n  border: 1px solid #dddddd;\n  background: white;\n  font-weight: normal;\n  color: #212121;\n}\n\n.ui-jqgrid .ui-pg-input {\n  font-size: inherit;\n  width: 50px;\n  border: 1px solid #cccccc;\n  height: 15px;\n}\n\n.ui-jqgrid .ui-pg-selbox {\n  display: block;\n  font-size: 1em;\n  height: 25px;\n  line-height: 18px;\n  margin: 0;\n  width: auto;\n}\n\n.ui-jqgrid .ui-pager-control {\n  position: relative;\n}\n\n.ui-jqgrid .ui-jqgrid-pager {\n  height: 32px;\n  position: relative;\n}\n\n.ui-pg-table .navtable .ui-corner-all {\n  border-radius: 0px;\n}\n\n.ui-jqgrid .ui-pg-button:hover {\n  padding: 1px;\n  border: 0px;\n}\n\n.ui-jqgrid .loading {\n  position: absolute;\n  top: 45%;\n  left: 45%;\n  width: auto;\n  height: auto;\n  z-index: 101;\n  padding: 6px;\n  margin: 5px;\n  text-align: center;\n  font-weight: bold;\n  display: none;\n  border-width: 2px !important;\n  font-size: 11px;\n}\n\n.ui-jqgrid .form-control {\n  height: 10px;\n  width: auto;\n  display: inline;\n  padding: 10px 12px;\n}\n\n.ui-jqgrid-pager {\n  height: 32px;\n}\n\n.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {\n  border-top-left-radius: 0;\n}\n\n.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {\n  border-top-right-radius: 0;\n}\n\n.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {\n  border-bottom-left-radius: 0;\n}\n\n.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {\n  border-bottom-right-radius: 0;\n}\n\n.ui-widget-content {\n  border: 1px solid #dddddd;\n}\n\n.ui-jqgrid .ui-jqgrid-titlebar {\n  padding: 0;\n}\n\n.ui-jqgrid .ui-jqgrid-titlebar {\n  border-bottom: 1px solid #dddddd;\n}\n\n.ui-jqgrid tr.jqgrow td {\n  padding: 6px;\n}\n\n.ui-jqdialog .ui-jqdialog-titlebar {\n  padding: 10px 10px;\n}\n\n.ui-jqdialog .ui-jqdialog-title {\n  float: none !important;\n}\n\n.ui-jqdialog > .ui-resizable-se {\n  position: absolute;\n}\n\n/* Nestable list */\n\n.dd {\n  position: relative;\n  display: block;\n  margin: 0;\n  padding: 0;\n  list-style: none;\n  font-size: 13px;\n  line-height: 20px;\n}\n\n.dd-list {\n  display: block;\n  position: relative;\n  margin: 0;\n  padding: 0;\n  list-style: none;\n}\n\n.dd-list .dd-list {\n  padding-left: 30px;\n}\n\n.dd-collapsed .dd-list {\n  display: none;\n}\n\n.dd-item,\n.dd-empty,\n.dd-placeholder {\n  display: block;\n  position: relative;\n  margin: 0;\n  padding: 0;\n  min-height: 20px;\n  font-size: 13px;\n  line-height: 20px;\n}\n\n.dd-handle {\n  display: block;\n  margin: 5px 0;\n  padding: 5px 10px;\n  color: #333333;\n  text-decoration: none;\n  border: 1px solid #e7eaec;\n  background: whitesmoke;\n  -webkit-border-radius: 3px;\n  border-radius: 3px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n}\n\n.dd-handle span {\n  font-weight: bold;\n}\n\n.dd-handle:hover {\n  background: #f0f0f0;\n  cursor: pointer;\n  font-weight: bold;\n}\n\n.dd-item > button {\n  display: block;\n  position: relative;\n  cursor: pointer;\n  float: left;\n  width: 25px;\n  height: 20px;\n  margin: 5px 0;\n  padding: 0;\n  text-indent: 100%;\n  white-space: nowrap;\n  overflow: hidden;\n  border: 0;\n  background: transparent;\n  font-size: 12px;\n  line-height: 1;\n  text-align: center;\n  font-weight: bold;\n}\n\n.dd-item > button:before {\n  content: \"+\";\n  display: block;\n  position: absolute;\n  width: 100%;\n  text-align: center;\n  text-indent: 0;\n}\n\n.dd-item > button[data-action=\"collapse\"]:before {\n  content: \"-\";\n}\n\n#nestable2 .dd-item > button {\n  font-family: FontAwesome;\n  height: 34px;\n  width: 33px;\n  color: #c1c1c1;\n}\n\n#nestable2 .dd-item > button:before {\n  content: \"\\f067\";\n}\n\n#nestable2 .dd-item > button[data-action=\"collapse\"]:before {\n  content: \"\\f068\";\n}\n\n.dd-placeholder,\n.dd-empty {\n  margin: 5px 0;\n  padding: 0;\n  min-height: 30px;\n  background: #f2fbff;\n  border: 1px dashed #b6bcbf;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n}\n\n.dd-empty {\n  border: 1px dashed #bbbbbb;\n  min-height: 100px;\n  background-color: #e5e5e5;\n  background-image: -webkit-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), -webkit-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);\n  background-image: -moz-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), -moz-linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);\n  background-image: linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white), linear-gradient(45deg, white 25%, transparent 25%, transparent 75%, white 75%, white);\n  background-size: 60px 60px;\n  background-position: 0 0, 30px 30px;\n}\n\n.dd-dragel {\n  position: absolute;\n  z-index: 9999;\n  pointer-events: none;\n}\n\n.dd-dragel > .dd-item .dd-handle {\n  margin-top: 0;\n}\n\n.dd-dragel .dd-handle {\n  -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);\n  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);\n}\n\n/* Nestable List */\n.nestable-lists {\n  display: block;\n  clear: both;\n  padding: 30px 0;\n  width: 100%;\n  border: 0;\n  border-top: 2px solid #dddddd;\n  border-bottom: 2px solid #dddddd;\n}\n\n#nestable-menu {\n  padding: 0;\n  margin: 10px 0 20px 0;\n}\n\n#nestable-output,\n#nestable2-output {\n  width: 100%;\n  font-size: 0.75em;\n  line-height: 1.33333em;\n  font-family: open sans, lucida grande, lucida sans unicode, helvetica, arial, sans-serif;\n  padding: 5px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n}\n\n#nestable2 .dd-handle {\n  color: inherit;\n  border: 1px dashed #e7eaec;\n  background: #f3f3f4;\n  padding: 10px;\n}\n\n#nestable2 span.label {\n  margin-right: 10px;\n}\n\n#nestable-output,\n#nestable2-output {\n  font-size: 12px;\n  padding: 25px;\n  box-sizing: border-box;\n  -moz-box-sizing: border-box;\n}\n\n/* CodeMirror */\n.CodeMirror {\n  border: 1px solid #eeeeee;\n  height: auto;\n}\n\n.CodeMirror-scroll {\n  overflow-y: hidden;\n  overflow-x: auto;\n}\n\n/* Google Maps */\n.google-map {\n  height: 300px;\n}\n\n/* Validation */\nlabel.error {\n  color: #cc5965;\n  display: inline-block;\n  margin-left: 5px;\n}\n\n.form-control.error {\n  border: 1px dotted #cc5965;\n}\n\n/* ngGrid */\n.gridStyle {\n  border: 1px solid rgb(212, 212, 212);\n  width: 100%;\n  height: 400px;\n}\n\n.gridStyle2 {\n  border: 1px solid rgb(212, 212, 212);\n  width: 500px;\n  height: 300px;\n}\n\n.ngH eaderCell {\n  border-right: none;\n  border-bottom: 1px solid #e7eaec;\n}\n\n.ngCell {\n  border-right: none;\n}\n\n.ngTopPanel {\n  background: #f5f5f6;\n}\n\n.ngRow.even {\n  background: #f9f9f9;\n}\n\n.ngRow.selected {\n  background: #ebf2f1;\n}\n\n.ngRow {\n  border-bottom: 1px solid #e7eaec;\n}\n\n.ngCell {\n  background-color: transparent;\n}\n\n.ngHeaderCell {\n  border-right: none;\n}\n\n/* Toastr custom style */\n\n#toast-container > .toast {\n  background-image: none !important;\n}\n\n#toast-container > .toast:before {\n  position: fixed;\n  font-family: FontAwesome;\n  font-size: 24px;\n  line-height: 24px;\n  float: left;\n  color: #FFF;\n  padding-right: 0.5em;\n  margin: auto 0.5em auto -1.5em;\n}\n#toast-container > .toast-warning:before {\n  content: \"\\f003\";\n}\n#toast-container > .toast-error:before {\n  content: \"\\f001\";\n}\n#toast-container > .toast-info:before {\n  content: \"\\f005\";\n}\n#toast-container > .toast-success:before {\n  content: \"\\f00C\";\n}\n\n#toast-container > div {\n  -moz-box-shadow: 0 0 3px #999;\n  -webkit-box-shadow: 0 0 3px #999;\n  box-shadow: 0 0 3px #999;\n  opacity: .9;\n  -ms-filter: alpha(Opacity=90);\n  filter: alpha(opacity=90)\n}\n\n#toast-container > :hover {\n  -moz-box-shadow: 0 0 4px #999;\n  -webkit-box-shadow: 0 0 4px #999;\n  box-shadow: 0 0 4px #999;\n  opacity: 1;\n  -ms-filter: alpha(Opacity=100);\n  filter: alpha(opacity=100);\n  cursor: pointer\n}\n\n.toast {\n  background-color: $navy\n}\n\n.toast-success {\n  background-color: $navy\n}\n\n.toast-error {\n  background-color: $red\n}\n\n.toast-info {\n  background-color: $lazur\n}\n\n.toast-warning {\n  background-color: $yellow\n}\n\n.toast-top-full-width {\n  margin-top: 20px;\n}\n\n.toast-bottom-full-width {\n  margin-bottom: 20px;\n}\n\n/* Notifie */\n.cg-notify-message.inspinia-notify {\n  background: #fff;\n  padding: 0;\n  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.2);\n  -webkit-box-shadow : 0 0 1 px rgba(0, 0, 0, 0.1), 0 2 px 4 px rgba(0, 0, 0, 0.2);\n  -moz-box-shadow : 0 0 1 px rgba(0, 0, 0, 0.1), 0 2 px 4 px rgba(0, 0, 0, 0.2);\n  border:none ;\n  margin-top: 30px;\n  color: inherit;\n}\n\n.inspinia-notify.alert-warning {\n  border-left: 6px solid $yellow;\n}\n.inspinia-notify.alert-success {\n  border-left: 6px solid $blue;\n}\n\n.inspinia-notify.alert-danger {\n  border-left: 6px solid $red;\n}\n\n.inspinia-notify.alert-info {\n  border-left: 6px solid $navy;\n}\n\n/* Image cropper style */\n.img-container, .img-preview {\n  overflow: hidden;\n  text-align: center;\n  width: 100%;\n}\n.img-preview-sm {\n  height: 130px;\n  width: 200px;\n}\n\n/* Forum styles  */\n.forum-post-container .media {\n  margin: 10px 10px 10px 10px;\n  padding: 20px 10px 20px 10px;\n  border-bottom: 1px solid #f1f1f1;\n}\n\n.forum-avatar {\n  float: left;\n  margin-right: 20px;\n  text-align: center;\n  width: 110px;\n}\n\n.forum-avatar .img-circle {\n  height: 48px;\n  width: 48px;\n}\n\n.author-info {\n  color: #676a6c;\n  font-size: 11px;\n  margin-top: 5px;\n  text-align: center;\n}\n\n.forum-post-info {\n  padding: 9px 12px 6px 12px;\n  background: #f9f9f9;\n  border: 1px solid #f1f1f1;\n}\n\n.media-body > .media {\n  background: #f9f9f9;\n  border-radius: 3px;\n  border: 1px solid #f1f1f1;\n}\n\n.forum-post-container .media-body .photos {\n  margin: 10px 0;\n}\n\n.forum-photo {\n  max-width: 140px;\n  border-radius: 3px;\n\n}\n\n.media-body > .media .forum-avatar {\n  width: 70px;\n  margin-right: 10px;\n}\n.media-body > .media .forum-avatar .img-circle {\n  height: 38px;\n  width: 38px;\n}\n\n.mid-icon {\n  font-size: 66px;\n}\n\n.forum-item {\n  margin: 10px 0;\n  padding: 10px 0 20px;\n  border-bottom: 1px solid #f1f1f1;\n}\n\n.views-number {\n  font-size: 24px;\n  line-height: 18px;\n  font-weight: 400;\n}\n\n.forum-container, .forum-post-container {\n  padding: 30px !important;\n}\n\n.forum-item small {\n  color: #999;\n}\n\n.forum-item .forum-sub-title{\n  color: #999;\n  margin-left: 50px;\n}\n\n.forum-title {\n  margin: 15px 0 15px 0;\n}\n\n.forum-info {\n  text-align: center;\n}\n\n.forum-desc {\n  color: #999;\n}\n\n.forum-icon {\n  float: left;\n  width: 30px;\n  margin-right: 20px;\n  text-align: center;\n}\n\na.forum-item-title {\n  color: inherit;\n  display: block;\n  font-size: 18px;\n  font-weight: 600;\n}\n\na.forum-item-title:hover {\n  color: inherit;\n}\n\n.forum-icon .fa {\n\n  font-size: 30px;\n  margin-top: 8px;\n  color: #9b9b9b;\n}\n.forum-item.active .fa {\n  color: $navy;\n}\n\n.forum-item.active a.forum-item-title {\n  color: $navy;\n}\n\n@media (max-width: 992px) {\n\n  .forum-info {\n    margin: 15px 0 10px 0px;\n\n    /* Comment this is you want to show forum info in small devices */\n    display: none;\n  }\n\n  .forum-desc {\n    float: none !important;\n  }\n\n}\n\n/* New Timeline style */\n\n.vertical-container {\n  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */\n  width: 90%;\n  max-width: 1170px;\n  margin: 0 auto;\n}\n.vertical-container::after {\n  /* clearfix */\n  content: '';\n  display: table;\n  clear: both;\n}\n\n#vertical-timeline {\n  position: relative;\n  padding: 0;\n  margin-top: 2em;\n  margin-bottom: 2em;\n}\n#vertical-timeline::before {\n  content: '';\n  position: absolute;\n  top: 0;\n  left: 18px;\n  height: 100%;\n  width: 4px;\n  background: #f1f1f1;\n}\n\n\n.vertical-timeline-content .btn {\n  float: right;\n}\n\n#vertical-timeline.light-timeline:before {\n  background: #e7eaec;\n}\n\n\n.dark-timeline .vertical-timeline-content:before\n{\n  border-color: transparent #f5f5f5 transparent transparent ;\n}\n\n.dark-timeline.center-orientation .vertical-timeline-content:before\n{\n  border-color: transparent  transparent transparent #f5f5f5;\n}\n\n.dark-timeline .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before,\n.dark-timeline.center-orientation .vertical-timeline-block:nth-child(2n) .vertical-timeline-content:before\n{\n  border-color: transparent #f5f5f5 transparent transparent;\n}\n\n.dark-timeline .vertical-timeline-content,\n.dark-timeline.center-orientation .vertical-timeline-content\n{\n  background: #f5f5f5;\n}\n\n@media only screen and (min-width: 1170px) {\n  #vertical-timeline.center-orientation {\n    margin-top: 3em;\n    margin-bottom: 3em;\n  }\n  #vertical-timeline.center-orientation:before {\n    left: 50%;\n    margin-left: -2px;\n  }\n}\n\n@media only screen and (max-width: 1170px) {\n  .center-orientation.dark-timeline .vertical-timeline-content:before {\n    border-color: transparent #f5f5f5 transparent transparent;\n  }\n}\n\n.vertical-timeline-block {\n  position: relative;\n  margin: 2em 0;\n}\n.vertical-timeline-block:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n.vertical-timeline-block:first-child {\n  margin-top: 0;\n}\n.vertical-timeline-block:last-child {\n  margin-bottom: 0;\n}\n@media only screen and (min-width: 1170px) {\n  .center-orientation .vertical-timeline-block {\n    margin: 4em 0;\n  }\n  .center-orientation .vertical-timeline-block:first-child {\n    margin-top: 0;\n  }\n  .center-orientation .vertical-timeline-block:last-child {\n    margin-bottom: 0;\n  }\n}\n\n.vertical-timeline-icon {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 40px;\n  height: 40px;\n  border-radius: 50%;\n  font-size: 16px;\n  border: 3px solid #f1f1f1;\n  text-align: center;\n}\n.vertical-timeline-icon i {\n  display: block;\n  width: 24px;\n  height: 24px;\n  position: relative;\n  left: 50%;\n  top: 50%;\n  margin-left: -12px;\n  margin-top: -9px;\n}\n\n@media only screen and (min-width: 1170px) {\n  .center-orientation .vertical-timeline-icon {\n    width: 50px;\n    height: 50px;\n    left: 50%;\n    margin-left: -25px;\n    -webkit-transform: translateZ(0);\n    -webkit-backface-visibility: hidden;\n    font-size: 19px;\n  }\n  .center-orientation .vertical-timeline-icon i {\n    margin-left: -12px;\n    margin-top: -10px;\n  }\n  .center-orientation .cssanimations .vertical-timeline-icon.is-hidden {\n    visibility: hidden;\n  }\n}\n\n\n.vertical-timeline-content {\n  position: relative;\n  margin-left: 60px;\n  background: white;\n  border-radius: 0.25em;\n  padding: 1em;\n}\n.vertical-timeline-content:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n.vertical-timeline-content h2 {\n  font-weight: 400;\n  margin-top: 4px;\n}\n\n\n.vertical-timeline-content p {\n  margin: 1em 0;\n  line-height: 1.6;\n}\n\n\n.vertical-timeline-content .vertical-date {\n  float: left;\n  font-weight: 500;\n}\n\n.vertical-date small {\n  color: $navy;\n  font-weight: 400;\n}\n\n.vertical-timeline-content::before {\n  content: '';\n  position: absolute;\n  top: 16px;\n  right: 100%;\n  height: 0;\n  width: 0;\n  border: 7px solid transparent;\n  border-right: 7px solid white;\n}\n@media only screen and (min-width: 768px) {\n  .vertical-timeline-content h2 {\n    font-size: 18px;\n  }\n  .vertical-timeline-content p {\n    font-size: 13px;\n  }\n\n}\n@media only screen and (min-width: 1170px) {\n  .center-orientation .vertical-timeline-content {\n    margin-left: 0;\n    padding: 1.6em;\n    width: 45%;\n  }\n  .center-orientation .vertical-timeline-content::before {\n    top: 24px;\n    left: 100%;\n    border-color: transparent;\n    border-left-color: white;\n  }\n\n  .center-orientation .vertical-timeline-content .btn {\n    float: left;\n  }\n  .center-orientation .vertical-timeline-content .vertical-date {\n    position: absolute;\n    width: 100%;\n    left: 122%;\n    top: 2px;\n    font-size: 14px;\n  }\n  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content {\n    float: right;\n  }\n  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content::before {\n    top: 24px;\n    left: auto;\n    right: 100%;\n    border-color: transparent;\n    border-right-color: white;\n  }\n  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .btn {\n    float: right;\n  }\n  .center-orientation .vertical-timeline-block:nth-child(even) .vertical-timeline-content .vertical-date {\n    left: auto;\n    right: 122%;\n    text-align: right;\n  }\n  .center-orientation .cssanimations .vertical-timeline-content.is-hidden {\n    visibility: hidden;\n  }\n}\n"
  },
  {
    "path": "public/admin/scss/media.scss",
    "content": "@media (min-width: 768px) {\n  #page-wrapper {\n    position: inherit;\n    margin: 0 0 0 $sidebar-width;\n    min-height: 1200px;\n  }\n  .navbar-static-side {\n    z-index: 101;\n    position: absolute;\n    width: $sidebar-width;\n  }\n  .navbar-top-links .dropdown-messages,\n  .navbar-top-links .dropdown-tasks,\n  .navbar-top-links .dropdown-alerts {\n    margin-left: auto;\n  }\n}\n\n@media (max-width: 768px) {\n  #page-wrapper {\n    position: inherit;\n    margin: 0 0 0 0px;\n    min-height: 1000px;\n  }\n  .body-small .navbar-static-side {\n    display: none;\n    z-index: 101;\n    position: absolute;\n    width: 70px;\n  }\n  .body-small.mini-navbar .navbar-static-side {\n    display: block;\n  }\n  .lock-word {\n    display: none;\n  }\n  .navbar-form-custom {\n    display: none;\n  }\n  .navbar-header {\n    display: inline;\n    float: left;\n  }\n  .sidebard-panel {\n    z-index: 2;\n    position: relative;\n    width: auto;\n    min-height: 100% !important;\n  }\n  .sidebar-content .wrapper {\n    padding-right: 0px;\n    z-index: 1;\n  }\n  .fixed-sidebar.body-small .navbar-static-side {\n    display: none;\n    z-index: 101;\n    position: fixed;\n    width: $sidebar-width;\n  }\n  .fixed-sidebar.body-small.mini-navbar .navbar-static-side {\n    display: block;\n  }\n}\n\n@media (max-width: 350px) {\n  .timeline-item .date {\n    text-align: left;\n    width: 110px;\n    position: relative;\n    padding-top: 30px;\n  }\n  .timeline-item .date i {\n    position: absolute;\n    top: 0;\n    left: 15px;\n    padding: 5px;\n    width: 30px;\n    text-align: center;\n    border: 1px solid $border-color;\n    background: #f8f8f8;\n  }\n  .timeline-item .content {\n    border-left: none;\n    border-top: 1px solid $border-color;\n    padding-top: 10px;\n    min-height: 100px;\n  }\n  .nav.navbar-top-links li.dropdown {\n    display: none;\n  }\n}\n"
  },
  {
    "path": "public/admin/scss/mixins.scss",
    "content": ""
  },
  {
    "path": "public/admin/scss/navigation.scss",
    "content": ".nav > li > a {\n  color: $nav-text-color;\n  font-weight: 600;\n  padding: 14px 20px 14px 25px;\n}\n\n.nav.navbar-right > li > a {\n  color: #999c9e;\n}\n\n.nav > li.active > a {\n  color: white;\n}\n\n.navbar-default .nav > li > a:hover, .navbar-default .nav > li > a:focus {\n  background-color: darken($nav-bg, 3%);\n  color: white;\n}\n\n.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {\n  background: #fff;\n}\n\n.nav.navbar-top-links > li > a:hover, .nav.navbar-top-links > li > a:focus {\n  background-color: transparent;\n}\n\n.nav > li > a i {\n  margin-right: 6px;\n}\n\n.navbar {\n  border: 0;\n}\n\n.navbar-default {\n  background-color: transparent;\n  border-color: $nav-bg;\n}\n\n.navbar-top-links li {\n  display: inline-block;\n}\n\n.navbar-top-links li:last-child {\n  margin-right: 40px;\n}\n\n.navbar-top-links li a {\n  padding: 20px 10px;\n  min-height: 50px;\n}\n\n.dropdown-menu {\n  border: medium none;\n  border-radius: 3px;\n  box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);\n  display: none;\n  float: left;\n  font-size: 12px;\n  left: 0;\n  list-style: none outside none;\n  padding: 0;\n  position: absolute;\n  text-shadow: none;\n  top: 100%;\n  z-index: 1000;\n  border-radius: 2px;\n}\n\n.dropdown-menu > li > a {\n  border-radius: 3px;\n  color: inherit;\n  line-height: 25px;\n  margin: 4px;\n  text-align: left;\n  font-weight: normal;\n}\n\n.dropdown-menu > li > a.font-bold {\n  font-weight: 600;\n}\n\n.navbar-top-links .dropdown-menu li {\n  display: block;\n}\n\n.navbar-top-links .dropdown-menu li:last-child {\n  margin-right: 0;\n}\n\n.navbar-top-links .dropdown-menu li a {\n  padding: 3px 20px;\n  min-height: 0;\n}\n\n.navbar-top-links .dropdown-menu li a div {\n  white-space: normal;\n}\n\n.navbar-top-links .dropdown-messages,\n.navbar-top-links .dropdown-tasks,\n.navbar-top-links .dropdown-alerts {\n  width: 310px;\n  min-width: 0;\n}\n\n.navbar-top-links .dropdown-messages {\n  margin-left: 5px;\n}\n\n.navbar-top-links .dropdown-tasks {\n  margin-left: -59px;\n}\n\n.navbar-top-links .dropdown-alerts {\n  margin-left: -123px;\n}\n\n.navbar-top-links .dropdown-user {\n  right: 0;\n  left: auto;\n}\n\n.dropdown-messages, .dropdown-alerts {\n  padding: 10px 10px 10px 10px;\n}\n\n.dropdown-messages li a, .dropdown-alerts li a {\n  font-size: 12px;\n}\n\n.dropdown-messages li em, .dropdown-alerts li em {\n  font-size: 10px;\n}\n\n.nav.navbar-top-links .dropdown-alerts a {\n  font-size: 12px;\n}\n\n.nav-header {\n  padding: 33px 25px;\n  background: $nav-profil-pattern;\n}\n\n.pace-done .nav-header {\n  transition-duration: 0.5s;\n}\n\n.nav > li.active {\n  border-left: 4px solid darken($navy, 2%);\n  background: darken($nav-bg, 3%);\n}\n\n.nav.nav-second-level > li.active {\n  border: none;\n}\n\n.nav.nav-second-level.collapse[style] {\n  height: auto !important;\n}\n\n.nav-header a {\n  color: #dfe4ed;\n}\n\n.nav-header .text-muted {\n  color: #8095a8;\n}\n\n.minimalize-styl-2 {\n  padding: 4px 12px;\n  margin: 14px 5px 5px 20px;\n  font-size: 14px;\n  float: left;\n}\n\n.navbar-form-custom {\n  float: left;\n  height: 50px;\n  padding: 0;\n  width: 200px;\n  display: inline-table;\n}\n\n.navbar-form-custom .form-group {\n  margin-bottom: 0;\n}\n\n.nav.navbar-top-links a {\n  font-size: 14px;\n}\n\n.navbar-form-custom .form-control {\n  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);\n  border: medium none;\n  font-size: 14px;\n  height: 60px;\n  margin: 0;\n  z-index: 2000;\n}\n\n.count-info .label {\n  line-height: 12px;\n  padding: 2px 5px;\n  position: absolute;\n  right: 6px;\n  top: 12px;\n}\n\n.arrow {\n  float: right;\n}\n\n.fa.arrow:before {\n  content: \"\\f104\";\n}\n\n.active > a > .fa.arrow:before {\n  content: \"\\f107\";\n}\n\n.nav-second-level li,\n.nav-third-level li {\n  border-bottom: none !important;\n}\n\n.nav-second-level li a {\n  padding: 7px 10px 7px 10px;\n  padding-left: 52px;\n}\n\n.nav-third-level li a {\n  padding-left: 62px;\n}\n\n.nav-second-level li:last-child {\n  margin-bottom: 10px;\n}\n\nbody:not(.fixed-sidebar).mini-navbar .nav li:hover > .nav-second-level, .mini-navbar .nav li:focus > .nav-second-level {\n  display: block;\n  border-radius: 0 2px 2px 0;\n  min-width: 140px;\n  height: auto;\n}\n\nbody.mini-navbar .navbar-default .nav > li > .nav-second-level li a {\n  font-size: 12px;\n  border-radius: 3px;\n}\n\n.fixed-nav .slimScrollDiv #side-menu {\n  padding-bottom: 60px;\n}\n\n.mini-navbar .nav-second-level li a {\n  padding: 10px 10px 10px 15px;\n}\n\n.mini-navbar .nav-second-level {\n  position: absolute;\n  left: 70px;\n  top: 0px;\n  background-color: $nav-bg;\n  padding: 10px 10px 10px 10px;\n  font-size: 12px;\n}\n\n.mini-navbar li.active .nav-second-level {\n  left: 65px;\n}\n\n.navbar-default .special_link a {\n  background: $navy;\n  color: white;\n}\n\n.navbar-default .special_link a:hover {\n  background: #17987e !important;\n  color: white;\n}\n\n.navbar-default .special_link a span.label {\n  background: white;\n  color: $navy;\n}\n\n.navbar-default .landing_link a {\n  background: lighten($navy, 3%);\n  color: white;\n}\n\n.navbar-default .landing_link a:hover {\n  background: $navy !important;\n  color: white;\n}\n\n.navbar-default .landing_link a span.label {\n  background: white;\n  color: lighten($navy, 3%);\n}\n\n.logo-element {\n  text-align: center;\n  font-size: 18px;\n  font-weight: 600;\n  color: white;\n  display: none;\n  padding: 18px 0;\n}\n\n.pace-done .navbar-static-side, .pace-done .nav-header, .pace-done li.active, .pace-done #page-wrapper, .pace-done .footer {\n  -webkit-transition: all 0.5s;\n  -moz-transition: all 0.5s;\n  -o-transition: all 0.5s;\n  transition: all 0.5s;\n}\n\n.navbar-fixed-top {\n  background: white;\n  transition-duration: 0.5s;\n  border-bottom: 1px solid #e7eaec !important;\n}\n\n.navbar-fixed-top, .navbar-static-top {\n  background: $gray;\n}\n\n.fixed-nav #wrapper {\n  margin-top: 60px;\n}\n\n.fixed-nav .minimalize-styl-2 {\n  margin: 14px 5px 5px 15px;\n}\n\n.body-small .navbar-fixed-top {\n  margin-left: 0px;\n}\n\nbody.mini-navbar .navbar-static-side {\n  width: 70px;\n}\n\nbody.mini-navbar .profile-element, body.mini-navbar .nav-label, body.mini-navbar .navbar-default .nav li a span {\n  display: none;\n}\n\nbody:not(.fixed-sidebar).mini-navbar .nav-second-level {\n  display: none;\n}\n\nbody.mini-navbar .navbar-default .nav > li > a {\n  font-size: 16px;\n}\n\nbody.mini-navbar .logo-element {\n  display: block;\n}\n\nbody.mini-navbar .nav-header {\n  padding: 0;\n  background-color: $navy;\n}\n\nbody.mini-navbar #page-wrapper {\n  margin: 0 0 0 70px;\n}\n\nbody.fixed-sidebar.mini-navbar .footer {\n  margin: 0 0 0 0px;\n}\n\nbody.mini-navbar #page-wrapper {\n  margin: 0 0 0 70px;\n}\n\nbody.fixed-sidebar .navbar-static-side {\n  position: fixed;\n  width: $sidebar-width;\n  z-index: 101;\n  height: 100%;\n}\n\nbody.fixed-sidebar.mini-navbar .navbar-static-side {\n  width: 0px;\n}\n\nbody.fixed-sidebar.mini-navbar #page-wrapper {\n  margin: 0 0 0 0px;\n}\n\nbody.body-small.fixed-sidebar.mini-navbar #page-wrapper {\n  margin: 0 0 0 $sidebar-width;\n}\n\nbody.body-small.fixed-sidebar.mini-navbar .navbar-static-side {\n  width: $sidebar-width;\n}\n\n.fixed-sidebar.mini-navbar .nav li:focus > .nav-second-level {\n  display: block;\n  height: auto;\n}\n\nbody.fixed-sidebar.mini-navbar .navbar-default .nav > li > .nav-second-level li a {\n  font-size: 12px;\n  border-radius: 3px;\n}\n\n.fixed-sidebar.mini-navbar .nav-second-level li a {\n  padding: 10px 10px 10px 15px;\n}\n\n.fixed-sidebar.mini-navbar .nav-second-level {\n  position: relative;\n  padding: 0;\n  font-size: 13px;\n}\n\n.fixed-sidebar.mini-navbar li.active .nav-second-level {\n  left: 0px;\n}\n\nbody.fixed-sidebar.mini-navbar .navbar-default .nav > li > a {\n  font-size: 13px;\n}\n\nbody.fixed-sidebar.mini-navbar .nav-label,\nbody.fixed-sidebar.mini-navbar .navbar-default .nav li a span {\n  display: inline;\n}\n\n.fixed-sidebar.mini-navbar .nav-second-level li a {\n  padding: 7px 10px 7px 52px;\n}\n\n.fixed-sidebar.mini-navbar .nav-second-level {\n  left: 0px;\n}\n"
  },
  {
    "path": "public/admin/scss/pages.scss",
    "content": "/* SEARCH PAGE */\n\n.search-form {\n  margin-top: 10px;\n}\n\n.search-result h3 {\n  margin-bottom: 0;\n  color: #1e0fbe;\n}\n\n.search-result .search-link {\n  color: #006621;\n}\n\n.search-result p {\n  font-size: 12px;\n  margin-top: 5px;\n}\n\n/* CONTACTS */\n\n.contact-box {\n  background-color: white;\n  border: 1px solid $border-color;\n  padding: 20px;\n  margin-bottom: 20px;\n}\n\n.contact-box a {\n  color: inherit;\n}\n\n/* INVOICE */\n\n.invoice-table tbody > tr > td:last-child, .invoice-table tbody > tr > td:nth-child(4), .invoice-table tbody > tr > td:nth-child(3), .invoice-table tbody > tr > td:nth-child(2) {\n  text-align: right;\n}\n\n.invoice-table thead > tr > th:last-child, .invoice-table thead > tr > th:nth-child(4), .invoice-table thead > tr > th:nth-child(3), .invoice-table thead > tr > th:nth-child(2) {\n  text-align: right;\n}\n\n.invoice-total > tbody > tr > td:first-child {\n  text-align: right;\n}\n\n.invoice-total > tbody > tr > td {\n  border: 0 none;\n}\n\n.invoice-total > tbody > tr > td:last-child {\n  border-bottom: 1px solid #dddddd;\n  text-align: right;\n  width: 15%;\n}\n\n/* ERROR & LOGIN & LOCKSCREEN */\n\n.middle-box {\n  height: 400px;\n  width: 400px;\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  margin-top: -250px;\n  margin-left: -200px;\n  z-index: 100;\n}\n\n.lockscreen.middle-box {\n  width: 200px;\n  margin-left: -100px;\n  margin-top: -190px;\n}\n\n.loginscreen.middle-box {\n  width: 300px;\n  margin-left: -150px;\n  margin-top: -330px;\n}\n\n.loginColumns {\n  width: 760px;\n  margin: 8% auto 0;\n}\n\n.logo-name {\n  color: #e6e6e6;\n  font-size: 180px;\n  font-weight: 800;\n  letter-spacing: -10px;\n  margin-bottom: 0px;\n}\n\n.middle-box h1 {\n  font-size: 170px;\n}\n\n.wrapper .middle-box {\n  margin-top: 140px;\n}\n\n.lock-word {\n  z-index: 10;\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  margin-top: -180px;\n  margin-left: -470px;\n}\n\n.lock-word span {\n  font-size: 100px;\n  font-weight: 600;\n  color: #e9e9e9;\n  display: inline-block;\n}\n\n.lock-word .first-word {\n  margin-right: 160px;\n}\n\n/* DASBOARD */\n\n.dashboard-header {\n  border-top: 0;\n  padding: 20px 20px 20px 20px;\n}\n\n.dashboard-header h2 {\n  margin-top: 10px;\n  font-size: 26px;\n}\n\n.fist-item {\n  border-top: none !important;\n}\n\n.statistic-box {\n  margin-top: 40px;\n}\n\n.dashboard-header .list-group-item span.label {\n  margin-right: 10px;\n}\n\n.list-group.clear-list .list-group-item {\n  border-top: 1px solid $border-color;\n  border-bottom: 0;\n  border-right: 0;\n  border-left: 0;\n  padding: 10px 0;\n}\n\nul.clear-list:first-child {\n  border-top: none !important;\n}\n\n/* Intimeline */\n\n.timeline-item .date i {\n  position: absolute;\n  top: 0;\n  right: 0;\n  padding: 5px;\n  width: 30px;\n  text-align: center;\n  border-top: 1px solid $border-color;\n  border-bottom: 1px solid $border-color;\n  border-left: 1px solid $border-color;\n  background: #f8f8f8;\n}\n\n.timeline-item .date {\n  text-align: right;\n  width: 110px;\n  position: relative;\n  padding-top: 30px;\n}\n\n.timeline-item .content {\n  border-left: 1px solid $border-color;\n  border-top: 1px solid $border-color;\n  padding-top: 10px;\n  min-height: 100px;\n}\n\n.timeline-item .content:hover {\n  background: #f6f6f6;\n}\n\n/* PIN BOARD */\nul.notes li, ul.tag-list li {\n  list-style: none;\n}\n\nul.notes li h4 {\n  margin-top: 20px;\n  font-size: 16px;\n}\n\nul.notes li div {\n  text-decoration: none;\n  color: black;\n  background: #ffffcc;\n  display: block;\n  height: 140px;\n  width: 140px;\n  padding: 1em;\n  position: relative;\n}\n\nul.notes li div small {\n  position: absolute;\n  top: 5px;\n  right: 5px;\n  font-size: 10px;\n}\n\nul.notes li div a {\n  position: absolute;\n  right: 10px;\n  bottom: 10px;\n  color: inherit;\n}\n\nul.notes li {\n  margin: 10px 40px 50px 0px;\n  float: left;\n}\n\nul.notes li div p {\n  font-size: 12px;\n}\n\nul.notes li div {\n  text-decoration: none;\n  color: black;\n  background: #ffffcc;\n  display: block;\n  height: 140px;\n  width: 140px;\n  padding: 1em;\n  /* Firefox */\n  -moz-box-shadow: 5px 5px 2px rgba(33, 33, 33, 1);\n  /* Safari+Chrome */\n  -webkit-box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);\n  /* Opera */\n  box-shadow: 5px 5px 2px rgba(33, 33, 33, 0.7);\n}\n\nul.notes li div {\n  -webkit-transform: rotate(-6deg);\n  -o-transform: rotate(-6deg);\n  -moz-transform: rotate(-6deg);\n}\n\nul.notes li:nth-child(even) div {\n  -o-transform: rotate(4deg);\n  -webkit-transform: rotate(4deg);\n  -moz-transform: rotate(4deg);\n  position: relative;\n  top: 5px;\n}\n\nul.notes li:nth-child(3n) div {\n  -o-transform: rotate(-3deg);\n  -webkit-transform: rotate(-3deg);\n  -moz-transform: rotate(-3deg);\n  position: relative;\n  top: -5px;\n}\n\nul.notes li:nth-child(5n) div {\n  -o-transform: rotate(5deg);\n  -webkit-transform: rotate(5deg);\n  -moz-transform: rotate(5deg);\n  position: relative;\n  top: -10px;\n}\n\nul.notes li div:hover, ul.notes li div:focus {\n  -webkit-transform: scale(1.1);\n  -moz-transform: scale(1.1);\n  -o-transform: scale(1.1);\n  position: relative;\n  z-index: 5;\n}\n\nul.notes li div {\n  text-decoration: none;\n  color: black;\n  background: #ffffcc;\n  display: block;\n  height: 210px;\n  width: 210px;\n  padding: 1em;\n  -moz-box-shadow: 5px 5px 7px rgba(33, 33, 33, 1);\n  -webkit-box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);\n  box-shadow: 5px 5px 7px rgba(33, 33, 33, 0.7);\n  -moz-transition: -moz-transform 0.15s linear;\n  -o-transition: -o-transform 0.15s linear;\n  -webkit-transition: -webkit-transform 0.15s linear;\n}\n\n/* FILE MANAGER */\n\n.file-box {\n  float: left;\n  width: 220px;\n}\n\n.file-manager h5 {\n  text-transform: uppercase;\n}\n\n.file-manager {\n  list-style: none outside none;\n  margin: 0;\n  padding: 0;\n}\n\n.folder-list li a {\n  color: #666666;\n  display: block;\n  padding: 5px 0;\n}\n\n.folder-list li {\n  border-bottom: 1px solid $border-color;\n  display: block;\n}\n\n.folder-list li i {\n  margin-right: 8px;\n  color: #3d4d5d;\n}\n\n.category-list li a {\n  color: #666666;\n  display: block;\n  padding: 5px 0;\n}\n\n.category-list li {\n  display: block;\n}\n\n.category-list li i {\n  margin-right: 8px;\n  color: #3d4d5d;\n}\n\n.category-list li a .text-navy {\n  color: $navy;\n}\n\n.category-list li a .text-primary {\n  color: $blue;\n}\n\n.category-list li a .text-info {\n  color: $lazur;\n}\n\n.category-list li a .text-danger {\n  color: #ef5352;\n}\n\n.category-list li a .text-warning {\n  color: #f8ac59;\n}\n\n.file-manager h5.tag-title {\n  margin-top: 20px;\n}\n\n.tag-list li {\n  float: left;\n}\n\n.tag-list li a {\n  font-size: 10px;\n  background-color: $gray;\n  padding: 5px 12px;\n  color: inherit;\n  border-radius: 2px;\n  border: 1px solid $border-color;\n  margin-right: 5px;\n  margin-top: 5px;\n  display: block;\n}\n\n.file {\n  border: 1px solid $border-color;\n  padding: 0;\n  background-color: white;\n  position: relative;\n  margin-bottom: 20px;\n  margin-right: 20px;\n}\n\n.file-manager .hr-line-dashed {\n  margin: 15px 0;\n}\n\n.file .icon, .file .image {\n  height: 100px;\n  overflow: hidden;\n}\n\n.file .icon {\n  padding: 15px 10px;\n  text-align: center;\n}\n\n.file-control {\n  color: inherit;\n  font-size: 11px;\n  margin-right: 10px;\n}\n\n.file-control.active {\n  text-decoration: underline;\n}\n\n.file .icon i {\n  font-size: 70px;\n  color: #dadada;\n}\n\n.file .file-name {\n  padding: 10px;\n  background-color: #f8f8f8;\n  border-top: 1px solid $border-color;\n}\n\n.file-name small {\n  color: $text-color;\n}\n\n.corner {\n  position: absolute;\n  display: inline-block;\n  width: 0;\n  height: 0;\n  line-height: 0;\n  border: 0.6em solid transparent;\n  border-right: 0.6em solid #f1f1f1;\n  border-bottom: 0.6em solid #f1f1f1;\n  right: 0em;\n  bottom: 0em;\n}\n\na.compose-mail {\n  padding: 8px 10px;\n}\n\n.mail-search {\n  max-width: 300px;\n}\n\n/* PROFILE */\n\n.profile-content {\n  border-top: none !important;\n}\n\n.feed-activity-list .feed-element {\n  border-bottom: 1px solid $border-color;\n}\n\n.feed-element:first-child {\n  margin-top: 0;\n}\n\n.feed-element {\n  padding-bottom: 15px;\n}\n\n.feed-element, .feed-element .media {\n  margin-top: 15px;\n}\n\n.feed-element, .media-body {\n  overflow: hidden;\n}\n\n.feed-element > .pull-left {\n  margin-right: 10px;\n}\n\n.feed-element img.img-circle, .dropdown-messages-box img.img-circle {\n  width: 38px;\n  height: 38px;\n}\n\n.feed-element .well {\n  border: 1px solid $border-color;\n  box-shadow: none;\n  margin-top: 10px;\n  margin-bottom: 5px;\n  padding: 10px 20px;\n  font-size: 11px;\n  line-height: 16px;\n}\n\n.feed-element .actions {\n  margin-top: 10px;\n}\n\n.feed-element .photos {\n  margin: 10px 0;\n}\n\n.feed-photo {\n  max-height: 180px;\n  border-radius: 4px;\n  overflow: hidden;\n  margin-right: 10px;\n  margin-bottom: 10px;\n}\n\n/* MAILBOX */\n\n.mail-box {\n  background-color: white;\n  border: 1px solid $border-color;\n  border-top: 0;\n  padding: 0px;\n  margin-bottom: 20px;\n}\n\n.mail-box-header {\n  background-color: white;\n  border: 1px solid $border-color;\n  border-bottom: 0;\n  padding: 30px 20px 20px 20px;\n}\n\n.mail-box-header h2 {\n  margin-top: 0px;\n}\n\n.mailbox-content .tag-list li a {\n  background: white;\n}\n\n.mail-body {\n  border-top: 1px solid $border-color;\n  padding: 20px;\n}\n\n.mail-text {\n  border-top: 1px solid $border-color;\n}\n\n.mail-text .note-toolbar {\n  padding: 10px 15px;\n}\n\n.mail-body .form-group {\n  margin-bottom: 5px;\n}\n\n.mail-text .note-editor .note-toolbar {\n  background-color: #f9f8f8;\n}\n\n.mail-attachment {\n  border-top: 1px solid $border-color;\n  padding: 20px;\n  font-size: 12px;\n}\n\n.mailbox-content {\n  background: none;\n  border: none;\n  padding: 10px;\n}\n\n.mail-ontact {\n  width: 23%;\n}\n\n/* PROJECTS */\n.project-people, .project-actions {\n  text-align: right;\n  vertical-align: middle;\n}\n\ndd.project-people {\n  text-align: left;\n  margin-top: 5px;\n}\n\n.project-people img {\n  width: 32px;\n  height: 32px;\n}\n\n.project-title a {\n  font-size: 14px;\n  color: $text-color;\n  font-weight: 600;\n}\n\n.project-list table tr td {\n  border-top: none;\n  border-bottom: 1px solid $border-color;\n  padding: 15px 10px;\n  vertical-align: middle;\n}\n\n.project-manager .tag-list li a {\n  font-size: 10px;\n  background-color: white;\n  padding: 5px 12px;\n  color: inherit;\n  border-radius: 2px;\n  border: 1px solid $border-color;\n  margin-right: 5px;\n  margin-top: 5px;\n  display: block;\n}\n\n.project-files li a {\n  font-size: 11px;\n  color: $text-color;\n  margin-left: 10px;\n  line-height: 22px;\n}\n\n/* FAQ */\n\n.faq-item {\n  padding: 20px;\n  margin-bottom: 2px;\n  background: white;\n}\n\n.faq-question {\n  font-size: 18px;\n  font-weight: 600;\n  color: $navy;\n  display: block;\n}\n\n.faq-question:hover {\n  color: darken($navy, 5%);\n}\n\n.faq-answer {\n  margin-top: 10px;\n  background: $gray;\n  border: 1px solid $border-color;\n  border-radius: 3px;\n  padding: 15px;\n}\n\n.faq-item .tag-item {\n  background: $gray;\n  padding: 2px 6px;\n  font-size: 10px;\n  text-transform: uppercase;\n}\n\n\n/* Chat view */\n.message-input {\n  height: 90px !important;\n}\n\n.chat-avatar {\n  white: 36px;\n  height: 36px;\n  float: left;\n  margin-right: 10px;\n}\n\n.chat-user-name {\n  padding: 10px;\n}\n\n.chat-user {\n  padding: 8px 10px;\n  border-bottom: 1px solid #e7eaec;\n}\n\n.chat-user a {\n  color: inherit;\n}\n\n.chat-view {\n  z-index: 20012;\n}\n\n.chat-users, .chat-statistic {\n  margin-left: -30px;\n}\n\n@media (max-width: 992px) {\n  .chat-users,.chat-statistic {\n    margin-left: 0px;\n  }\n}\n.chat-view .ibox-content {\n  padding: 0;\n}\n\n.chat-message {\n  padding: 10px 20px;\n}\n\n.message-avatar {\n  height: 48px;\n  width: 48px;\n  border: 1px solid #e7eaec;\n  border-radius: 4px;\n  margin-top: 1px;\n}\n\n.chat-discussion .chat-message:nth-child(2n+1) .message-avatar {\n  float: left;\n  margin-right: 10px;\n}\n\n.chat-discussion .chat-message:nth-child(2n) .message-avatar {\n  float: right;\n  margin-left: 10px;\n}\n\n.message {\n  background-color: #fff;\n  border: 1px solid #e7eaec;\n  text-align: left;\n  display: block;\n  padding: 10px 20px;\n  position: relative;\n  border-radius: 4px;\n}\n\n.chat-discussion .chat-message:nth-child(2n+1) .message-date {\n  float: right;\n}\n\n.chat-discussion .chat-message:nth-child(2n) .message-date {\n  float: left;\n}\n\n.chat-discussion .chat-message:nth-child(2n+1) .message {\n  text-align: left;\n  margin-left: 55px;\n}\n\n.chat-discussion .chat-message:nth-child(2n) .message {\n  text-align: right;\n  margin-right: 55px;\n}\n\n.message-date {\n  font-size: 10px;\n  color: #888888;\n}\n\n.message-content {\n  display: block;\n}\n\n.chat-discussion {\n  background: #eee;\n  padding: 15px;\n  height: 400px;\n  overflow-y: auto;\n}\n\n.chat-users {\n  overflow-y: auto;\n  height: 400px;\n}\n\n.chat-message-form .form-group {\n  margin-bottom: 0;\n}\n\n/* jsTree */\n.jstree-open > .jstree-anchor > .fa-folder:before {\n  content: \"\\f07c\";\n}\n\n.jstree-default .jstree-icon.none {\n  width: 0;\n}\n"
  },
  {
    "path": "public/admin/scss/rtl.scss",
    "content": "//RTL Support\nbody.rtls {\n\n  #page-wrapper {\n    margin: 0 220px 0 0;\n  }\n\n  .nav-second-level li a {\n    padding: 7px 35px 7px 10px;\n  }\n\n  .ibox-title h5 {\n    float: right;\n  }\n\n  .pull-right {\n    float: left !important;\n  }\n\n  .pull-left {\n    float: right !important;\n  }\n\n  .ibox-tools {\n    float: left;\n  }\n\n  .stat-percent {\n    float: left;\n  }\n\n  .navbar-right {\n    float: left !important;\n  }\n\n  .navbar-top-links li:last-child {\n    margin-left: 40px;\n    margin-right: 0;\n  }\n\n  .minimalize-styl-2 {\n    float: right;\n    margin: 14px 20px 5px 5px;\n  }\n\n  .feed-element > .pull-left {\n    margin-left: 10px;\n    margin-right: 0;\n  }\n\n  .timeline-item .date {\n    text-align: left;\n  }\n\n  .timeline-item .date i {\n    left: 0;\n    right: auto;\n  }\n\n  .timeline-item .content {\n    border-right: 1px solid #e7eaec;\n    border-left: none;\n  }\n\n  .theme-config {\n    left: 0;\n    right: auto;\n  }\n\n  .spin-icon {\n    border-radius: 0 20px 20px 0;\n  }\n\n  .toast-close-button {\n    float: left;\n  }\n\n  #toast-container > .toast:before {\n    margin: auto -1.5em auto 0.5em;\n  }\n\n  #toast-container > div {\n    padding: 15px 50px 15px 15px;\n  }\n\n  .center-orientation .vertical-timeline-icon i {\n    margin-left: 0;\n    margin-right: -12px;\n  }\n\n  .vertical-timeline-icon i {\n    right: 50%;\n    left: auto;\n    margin-left: auto;\n    margin-right: -12px;\n  }\n\n  .file-box {\n    float: right;\n  }\n\n  ul.notes li {\n    float: right;\n  }\n\n  .chat-users, .chat-statistic {\n    margin-right: -30px;\n    margin-left: auto;\n  }\n\n  .dropdown-menu > li > a {\n    text-align: right;\n  }\n\n  .b-r {\n    border-left: 1px solid #e7eaec;\n    border-right: none;\n  }\n\n  .dd-list .dd-list {\n    padding-right: 30px;\n    padding-left: 0;\n  }\n\n  .dd-item > button {\n    float: right\n  }\n\n  /* Theme config */\n  .theme-config-box {\n    margin-left: -220px;\n    margin-right: 0;\n  }\n\n  .theme-config-box.show {\n    margin-left: 0;\n    margin-right: 0;\n  }\n\n  .spin-icon {\n    right: 0;\n    left: auto;\n  }\n\n  .skin-setttings {\n    margin-right: 40px;\n    margin-left: 0;\n  }\n\n  .skin-setttings {\n    direction: ltr;\n  }\n\n  .footer.fixed {\n    margin-right: 220px;\n    margin-left: 0;\n  }\n\n}\n\n@media (max-width: 992px) {\n  body.rtls {\n    .chat-users,.chat-statistic {\n      margin-right: 0px;\n    }\n  }\n}\n\nbody.rtls.mini-navbar .footer.fixed, body.body-small.mini-navbar .footer.fixed {\n  margin: 0 70px 0 0;\n}\n\nbody.rtls.mini-navbar.fixed-sidebar .footer.fixed, body.body-small.mini-navbar .footer.fixed {\n  margin: 0 0 0 0;\n}\n\n\nbody.rtls.top-navigation .navbar-toggle {\n  float: right;\n  margin-left: 15px;\n  margin-right: 15px;\n}\n\n.body-small.rtls.top-navigation .navbar-header {\n  float: none;\n}\n\nbody.rtls.top-navigation #page-wrapper {\n  margin: 0;\n}\n\nbody.rtls.mini-navbar #page-wrapper {\n  margin: 0 70px 0 0;\n}\n\nbody.rtls.mini-navbar.fixed-sidebar #page-wrapper {\n  margin: 0 0 0 0;\n}\n\nbody.rtls.body-small.fixed-sidebar.mini-navbar #page-wrapper {\n  margin: 0 $sidebar-width 0 0;\n}\n\nbody.rtls.body-small.fixed-sidebar.mini-navbar .navbar-static-side {\n  width: $sidebar-width;\n}\n\n.body-small.rtls .navbar-fixed-top {\n  margin-right: 0px;\n}\n\n.body-small.rtls .navbar-header {\n  float: right;\n}\n\nbody.rtls .navbar-top-links li:last-child {\n  margin-left: 20px;\n}\n\nbody.rtls .top-navigation #page-wrapper, body.rtls.mini-navbar .top-navigation #page-wrapper, body.rtls.mini-navbar.top-navigation #page-wrapper {\n  margin: 0;\n}\n\nbody.rtls .top-navigation .footer.fixed, body.rtls.top-navigation .footer.fixed {\n  margin: 0;\n}\n\n@media (max-width: 768px) {\n\n  body.rtls .navbar-top-links li:last-child {\n    margin-left: 20px;\n  }\n\n  .body-small.rtls #page-wrapper {\n    position: inherit;\n    margin: 0 0 0 0px;\n    min-height: 1000px;\n  }\n\n  .body-small.rtls .navbar-static-side {\n    display: none;\n    z-index: 101;\n    position: absolute;\n    width: 70px;\n  }\n\n  .body-small.rtls.mini-navbar .navbar-static-side {\n    display: block;\n  }\n\n  .rtls.fixed-sidebar.body-small .navbar-static-side {\n    display: none;\n    z-index: 101;\n    position: fixed;\n    width: $sidebar-width;\n  }\n\n  .rtls.fixed-sidebar.body-small.mini-navbar .navbar-static-side {\n    display: block;\n  }\n\n}\n\n// For special ltr supporting plugin\n.rtls .ltr-support {\n  direction: ltr;\n}\n"
  },
  {
    "path": "public/admin/scss/sidebar.scss",
    "content": ".sidebard-panel {\n  width: 220px;\n  background: darken($gray, 3%);\n  padding: 10px 20px;\n  position: absolute;\n  right: 0;\n}\n\n.sidebard-panel .feed-element img.img-circle {\n  width: 32px;\n  height: 32px;\n}\n\n.sidebard-panel .feed-element, .media-body, .sidebard-panel p {\n  font-size: 12px;\n}\n\n.sidebard-panel .feed-element {\n  margin-top: 20px;\n  padding-bottom: 0;\n}\n\n.sidebard-panel .list-group {\n  margin-bottom: 10px;\n}\n\n.sidebard-panel .list-group .list-group-item {\n  padding: 5px 0;\n  font-size: 12px;\n  border: 0;\n}\n\n.sidebar-content .wrapper {\n  padding-right: 230px;\n}\n\n.sidebar-content .wrapper, .wrapper.sidebar-content {\n  padding-right: 230px !important;\n}\n\n.body-small .sidebar-content .wrapper, .body-small .wrapper.sidebar-content {\n  padding-right: 20px !important;\n}\n"
  },
  {
    "path": "public/admin/scss/skins.scss",
    "content": "/*\n *   SKIN 1 - INSPINIA - Responsive Admin Theme\n *   NAME - Blue light\n */\n\n// Main colors\n$skin-1-color: #0e9aef;\n$skin-1-nav-bg: #3e495f;\n$skin-1-a-color: #9ea6b9;\n$skin-1-page-bg: #f4f6fa;\n\n// Custom style\n.skin-1 .minimalize-styl-2 {\n  margin: 14px 5px 5px 30px;\n}\n\n.skin-1 .navbar-top-links li:last-child {\n  margin-right: 30px;\n}\n\n.skin-1.fixed-nav .minimalize-styl-2 {\n  margin: 14px 5px 5px 15px;\n}\n\n.skin-1 .spin-icon {\n  background: $skin-1-color !important;\n}\n\n.skin-1 .nav-header {\n  background: $skin-1-color;\n  background: url(\"patterns/header-profile-skin-1.png\");\n}\n\n.skin-1.mini-navbar .nav-second-level {\n  background: $skin-1-nav-bg;\n}\n\n.skin-1 .breadcrumb {\n  background: transparent;\n}\n\n.skin-1 .page-heading {\n  border: none;\n}\n\n.skin-1 .nav > li.active {\n  background: darken($skin-1-nav-bg, 2%);\n}\n\n.skin-1 .nav > li > a {\n  color: $skin-1-a-color;\n}\n\n.skin-1 .nav > li.active > a {\n  color: white;\n}\n\n.skin-1 .navbar-minimalize {\n  background: $skin-1-color;\n  border-color: $skin-1-color;\n}\n\nbody.skin-1 {\n  background: $skin-1-nav-bg;\n}\n\n.skin-1 .navbar-static-top {\n  background: white;\n}\n\n.skin-1 .dashboard-header {\n  background: transparent;\n  border-bottom: none !important;\n  border-top: none;\n  padding: 20px 30px 10px 30px;\n}\n\n.fixed-nav.skin-1 .navbar-fixed-top {\n  background: white;\n}\n\n.skin-1 .wrapper-content {\n  padding: 30px 15px;\n}\n\n.skin-1 #page-wrapper {\n  background: $skin-1-page-bg;\n}\n\n.skin-1 .ibox-title, .skin-1 .ibox-content {\n  border-width: 1px;\n}\n\n.skin-1 .ibox-content:last-child {\n  border-style: solid solid solid solid;\n}\n\n.skin-1 .nav > li.active {\n  border: none;\n}\n\n.skin-1 .nav-header {\n  padding: 35px 25px 25px 25px;\n}\n\n.skin-1 .nav-header a.dropdown-toggle {\n  color: white;\n  margin-top: 10px;\n}\n\n.skin-1 .nav-header a.dropdown-toggle .text-muted {\n  color: white;\n  opacity: 0.8;\n}\n\n.skin-1 .profile-element {\n  text-align: center;\n}\n\n.skin-1 .img-circle {\n  border-radius: 5px;\n}\n\n.skin-1 .navbar-default .nav > li > a:hover, .skin-1 .navbar-default .nav > li > a:focus {\n  background: darken($skin-1-nav-bg, 2%);\n  color: white;\n}\n\n.skin-1 .nav.nav-tabs > li.active > a {\n  color: #555;\n}\n.skin-1 .nav.nav-tabs > li.active {\n  background: transparent;\n}\n\n/*\n *   SKIN 2 - INSPINIA - Responsive Admin Theme\n *   NAME - Inspinia Ultra\n */\n\n// Main colors\n$skin-2-color: #23c6c8;\n$skin-2-nav-bg: #ededed;\n$skin-2-nav-top-bg: #213a53;\n\n// Custom style\n\nbody.skin-2 {\n  color: #565758 !important;\n}\n\n.skin-2 .minimalize-styl-2 {\n  margin: 14px 5px 5px 25px;\n}\n\n.skin-2 .navbar-top-links li:last-child {\n  margin-right: 25px;\n}\n\n.skin-2 .spin-icon {\n  background: $skin-2-color !important;\n}\n\n.skin-2 .nav-header {\n  background: $skin-2-color;\n  background: url(\"patterns/header-profile-skin-2.png\");\n}\n\n.skin-2.mini-navbar .nav-second-level {\n  background: $skin-2-nav-bg;\n}\n\n.skin-2 .breadcrumb {\n  background: transparent;\n}\n\n.skin-2.fixed-nav .minimalize-styl-2 {\n  margin: 14px 5px 5px 15px;\n}\n\n.skin-2 .page-heading {\n  border: none;\n  background: rgba(255, 255, 255, 0.7);\n}\n\n.skin-2 .nav > li.active {\n  background: #e0e0e0;\n}\n\n.skin-2 .logo-element {\n  padding: 17px 0;\n}\n\n.skin-2 .nav > li > a, .skin-2 .welcome-message {\n  color: #edf6ff;\n}\n\n.skin-2 #top-search::-moz-placeholder {\n  color: #edf6ff;\n  opacity: 0.5;\n}\n\n.skin-2 #side-menu > li > a, .skin-2 .nav.nav-second-level > li > a {\n  color: #586b7d;\n}\n\n.skin-2 .nav > li.active > a {\n  color: $skin-2-nav-top-bg;\n}\n\n.skin-2.mini-navbar .nav-header {\n  background: $skin-2-nav-top-bg;\n}\n\n.skin-2 .navbar-minimalize {\n  background: $skin-2-color;\n  border-color: $skin-2-color;\n}\n\n.skin-2 .border-bottom {\n  border-bottom: none !important;\n}\n\n.skin-2 #top-search {\n  color: white;\n}\n\nbody.skin-2 #wrapper {\n  background-color: $skin-2-nav-bg;\n}\n\n.skin-2 .navbar-static-top {\n  background: $skin-2-nav-top-bg;\n}\n\n.fixed-nav.skin-2 .navbar-fixed-top {\n  background: $skin-2-nav-top-bg;\n  border-bottom: none !important;\n}\n\n.skin-2 .nav-header {\n  padding: 30px 25px 30px 25px;\n}\n\n.skin-2 .dashboard-header {\n  background: rgba(255, 255, 255, 0.4);\n  border-bottom: none !important;\n  border-top: none;\n  padding: 20px 30px 20px 30px;\n}\n\n.skin-2 .wrapper-content {\n  padding: 30px 15px;\n}\n\n.skin-2 .dashoard-1 .wrapper-content {\n  padding: 0px 30px 25px 30px;\n}\n\n.skin-2 .ibox-title {\n  background: rgba(255, 255, 255, 0.7);\n  border: none;\n  margin-bottom: 1px;\n}\n\n.skin-2 .ibox-content {\n  background: rgba(255, 255, 255, 0.4);\n  border: none !important;\n}\n\n.skin-2 #page-wrapper {\n  background: rgba(246, 246, 246, 1);\n  background: -webkit-radial-gradient(center, ellipse cover, rgba(246, 246, 246, 1) 20%, rgba(213, 213, 213, 1) 100%);\n  background: -o-radial-gradient(center, ellipse cover, rgba(246, 246, 246, 1) 20%, rgba(213, 213, 213, 1) 100%);\n  background: -ms-radial-gradient(center, ellipse cover, rgba(246, 246, 246, 1) 20%, rgba(213, 213, 213, 1) 100%);\n  background: radial-gradient(ellipse at center, rgba(246, 246, 246, 1) 20%, rgba(213, 213, 213, 1) 100%);\n  -ms-filter: \"progid:DXImageTransform.Microsoft.gradient(startColorstr=#f6f6f6, endColorstr=#d5d5d5)\";\n}\n\n.skin-2 .ibox-title, .skin-2 .ibox-content {\n  border-width: 1px;\n}\n\n.skin-2 .ibox-content:last-child {\n  border-style: solid solid solid solid;\n}\n\n.skin-2 .nav > li.active {\n  border: none;\n}\n\n.skin-2 .nav-header a.dropdown-toggle {\n  color: #edf6ff;\n  margin-top: 10px;\n}\n\n.skin-2 .nav-header a.dropdown-toggle .text-muted {\n  color: #edf6ff;\n  opacity: 0.8;\n}\n\n.skin-2 .img-circle {\n  border-radius: 10px;\n}\n\n.skin-2 .nav.navbar-top-links > li > a:hover, .skin-2 .nav.navbar-top-links > li > a:focus {\n  background: darken($skin-2-nav-top-bg, 5%);\n}\n\n.skin-2 .navbar-default .nav > li > a:hover, .skin-2 .navbar-default .nav > li > a:focus {\n  background: #e0e0e0;\n  color: #213a53;\n}\n\n.skin-2 .nav.nav-tabs > li.active > a {\n  color: #555;\n}\n.skin-2 .nav.nav-tabs > li.active {\n  background: transparent;\n}\n\n/*\n *   SKIN 3 - INSPINIA - Responsive Admin Theme\n *   NAME - Yellow/purple\n */\n\n// Main colors\n$skin-3-color: #ecba52;\n$skin-3-nav-bg: #3e2c42;\n$skin-3-a-color: #948b96;\n$skin-3-page-bg: #f4f6fa;\n\n// Custom style\n.skin-3 .minimalize-styl-2 {\n  margin: 14px 5px 5px 30px;\n}\n\n.skin-3 .navbar-top-links li:last-child {\n  margin-right: 30px;\n}\n\n.skin-3.fixed-nav .minimalize-styl-2 {\n  margin: 14px 5px 5px 15px;\n}\n\n.skin-3 .spin-icon {\n  background: $skin-3-color !important;\n}\n\nbody.boxed-layout.skin-3 #wrapper {\n  background: $skin-3-nav-bg;\n}\n\n.skin-3 .nav-header {\n  background: $skin-3-color;\n  background: url(\"patterns/header-profile-skin-3.png\");\n}\n\n.skin-3.mini-navbar .nav-second-level {\n  background: $skin-3-nav-bg;\n}\n\n.skin-3 .breadcrumb {\n  background: transparent;\n}\n\n.skin-3 .page-heading {\n  border: none;\n}\n\n.skin-3 .nav > li.active {\n  background: darken($skin-3-nav-bg, 2%);\n}\n\n.fixed-nav.skin-3 .navbar-fixed-top {\n  background: white;\n}\n\n.skin-3 .nav > li > a {\n  color: $skin-3-a-color;\n}\n\n.skin-3 .nav > li.active > a {\n  color: white;\n}\n\n.skin-3 .navbar-minimalize {\n  background: $skin-3-color;\n  border-color: $skin-3-color;\n}\n\nbody.skin-3 {\n  background: $skin-3-nav-bg;\n}\n\n.skin-3 .navbar-static-top {\n  background: white;\n}\n\n.skin-3 .dashboard-header {\n  background: transparent;\n  border-bottom: none !important;\n  border-top: none;\n  padding: 20px 30px 10px 30px;\n}\n\n.skin-3 .wrapper-content {\n  padding: 30px 15px;\n}\n\n.skin-3 #page-wrapper {\n  background: $skin-3-page-bg;\n}\n\n.skin-3 .ibox-title, .skin-3 .ibox-content {\n  border-width: 1px;\n}\n\n.skin-3 .ibox-content:last-child {\n  border-style: solid solid solid solid;\n}\n\n.skin-3 .nav > li.active {\n  border: none;\n}\n\n.skin-3 .nav-header {\n  padding: 35px 25px 25px 25px;\n}\n\n.skin-3 .nav-header a.dropdown-toggle {\n  color: white;\n  margin-top: 10px;\n}\n\n.skin-3 .nav-header a.dropdown-toggle .text-muted {\n  color: white;\n  opacity: 0.8;\n}\n\n.skin-3 .profile-element {\n  text-align: center;\n}\n\n.skin-3 .img-circle {\n  border-radius: 5px;\n}\n\n.skin-3 .navbar-default .nav > li > a:hover, .skin-3 .navbar-default .nav > li > a:focus {\n  background: darken($skin-3-nav-bg, 2%);\n  color: white;\n}\n\n\n.skin-3 .nav.nav-tabs > li.active > a {\n  color: #555;\n}\n.skin-3 .nav.nav-tabs > li.active {\n  background: transparent;\n}"
  },
  {
    "path": "public/admin/scss/style.scss",
    "content": "/*\n *   INSPINIA - Responsive Admin Theme\n *   Copyright 2014 Webapplayers.com\n */\n\n// Google Fonts\n@import url(\"//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&amplang=en\");\n\n// Variables, Mixins\n@import \"variables\";\n@import \"mixins\";\n\n// INSPINIA Theme Elements\n@import \"typography\";\n@import \"navigation\";\n@import \"top_navigation\";\n@import \"buttons\";\n@import \"badgets_labels\";\n@import \"elements\";\n@import \"sidebar\";\n@import \"base\";\n@import \"pages\";\n\n// RTL Support\n@import \"rtl\";\n\n// For demo only - config box style\n@import \"theme-config\";\n\n// INSPINIA Skins\n@import \"skins\";\n\n// Media query style\n@import \"media\";\n\n// Custom style\n// Your custom style to override base style\n@import \"custom\";\n\n\n\n"
  },
  {
    "path": "public/admin/scss/theme-config.scss",
    "content": "/*\n *   This is style for skin config\n *   Use only in demo theme\n */\n\n.theme-config {\n  position: absolute;\n  top: 90px;\n  right: 0px;\n  overflow: hidden;\n}\n\n.theme-config-box {\n  margin-right: -220px;\n  position: relative;\n  z-index: 2000;\n  transition-duration: 0.8s;\n}\n\n.theme-config-box.show {\n  margin-right: 0px;\n}\n\n.spin-icon {\n  background: $navy;\n  position: absolute;\n  padding: 7px 10px 7px 13px;\n  border-radius: 20px 0px 0px 20px;\n  font-size: 16px;\n  top: 0;\n  left: 0px;\n  width: 40px;\n  color: white;\n  cursor: pointer;\n}\n\n.skin-setttings {\n  width: 220px;\n  margin-left: 40px;\n  background: $gray;\n}\n\n.skin-setttings .title {\n  background: #efefef;\n  text-align: center;\n  text-transform: uppercase;\n  font-weight: 600;\n  display: block;\n  padding: 10px 15px;\n  font-size: 12px;\n}\n\n.setings-item {\n  padding: 10px 30px;\n}\n\n.setings-item.skin {\n  text-align: center;\n}\n\n.setings-item .switch {\n  float: right;\n}\n\n.skin-name a {\n  text-transform: uppercase;\n}\n\n.setings-item a {\n  color: white;\n}\n\n.default-skin, .blue-skin, .ultra-skin, .yellow-skin {\n  text-align: center;\n}\n\n.default-skin {\n  font-weight: 600;\n  background: #1ab394;\n}\n\n.default-skin:hover {\n  background: #199d82;\n}\n\n.blue-skin {\n  font-weight: 600;\n  background: url(\"patterns/header-profile-skin-1.png\") repeat scroll 0 0;\n}\n\n.blue-skin:hover {\n  background: #0d8ddb;\n}\n\n.yellow-skin {\n  font-weight: 600;\n  background: url(\"patterns/header-profile-skin-3.png\") repeat scroll 0 100%;\n}\n\n.yellow-skin:hover {\n  background: #ce8735;\n}\n\n.ultra-skin {\n  font-weight: 600;\n  background: url(\"patterns/header-profile-skin-2.png\") repeat scroll 0 0;\n}\n\n.ultra-skin:hover {\n  background: #1a2d40;\n}\n"
  },
  {
    "path": "public/admin/scss/top_navigation.scss",
    "content": ".top-navigation #page-wrapper {\n  margin-left: 0;\n}\n\n.top-navigation .pace .pace-progress {\n  left: 0;\n}\n\n.top-navigation .navbar-nav .dropdown-menu > .active > a {\n  background: white;\n  color: $navy;\n  font-weight: bold;\n}\n\n.white-bg .navbar-fixed-top, .white-bg .navbar-static-top {\n  background: #fff;\n}\n\n.top-navigation .navbar {\n  margin-bottom: 0;\n}\n\n.top-navigation .nav > li > a {\n  padding: 15px 20px;\n  color: #676a6c;\n}\n\n.top-navigation .nav > li a:hover, .top-navigation .nav > li a:focus {\n  background: #fff;\n  color: $navy;\n}\n\n.top-navigation .nav > li.active {\n  background: #fff;\n  border: none;\n}\n.top-navigation .nav > li.active > a {\n  color: $navy;\n}\n.top-navigation .navbar-right {\n  margin-right: 10px;\n}\n\n.top-navigation .navbar-nav .dropdown-menu {\n  box-shadow: none;\n  border: 1px solid #e7eaec;\n}\n\n.top-navigation .dropdown-menu > li > a {\n  margin: 0;\n  padding: 7px 20px;\n}\n\n.navbar .dropdown-menu {\n  margin-top: 0px;\n}\n\n.top-navigation .navbar-brand {\n  background: $navy;\n  color: #fff;\n  padding: 15px 25px;\n}\n\n.top-navigation .navbar-top-links li:last-child {\n  margin-right: 0;\n}\n\n.top-navigation.mini-navbar #page-wrapper, .top-navigation.body-small.fixed-sidebar.mini-navbar #page-wrapper, .mini-navbar .top-navigation #page-wrapper, body-small.fixed-sidebar.mini-navbar .top-navigation #page-wrapper {\n  margin: 0;\n}\n\n.top-navigation.fixed-nav #wrapper, .fixed-nav #wrapper.top-navigation {\n  margin-top: 50px;\n}\n\n.top-navigation .footer.fixed {\n  margin-left: 0 !important;\n}\n\n.top-navigation .wrapper.wrapper-content {\n  padding: 40px;\n}\n.top-navigation.body-small .wrapper.wrapper-content, .body-small  .top-navigation .wrapper.wrapper-content {\n  padding: 40px 0px 40px 0px;\n}\n\n.navbar-toggle {\n  background-color: $navy;\n  color: #fff;\n  padding: 6px 12px;\n  font-size: 14px;\n}\n\n.top-navigation .navbar-nav .open .dropdown-menu > li > a, .top-navigation .navbar-nav .open .dropdown-menu .dropdown-header {\n  padding: 10px 15px 10px 20px;\n}\n\n@media (max-width: 768px) {\n  .top-navigation .navbar-header {\n    display: block;\n    float: none;\n  }\n}\n\n.menu-visible-lg, .menu-visible-md {\n  display: none !important;\n}\n\n@media (min-width: 1200px) {\n  .menu-visible-lg {\n    display: block !important;\n  }\n}\n@media (min-width: 992px) {\n  .menu-visible-md {\n    display: block !important;\n  }\n}\n\n@media (max-width: 767px) {\n  .menu-visible-md {\n    display: block !important;\n  }\n  .menu-visible-lg {\n    display: block !important;\n  }\n}"
  },
  {
    "path": "public/admin/scss/typography.scss",
    "content": "h1, h2, h3, h4, h5, h6 {\n  font-weight: 100;\n}\n\nh1 {\n  font-size: 30px;\n}\n\nh2 {\n  font-size: 24px;\n}\n\nh3 {\n  font-size: 16px;\n}\n\nh4 {\n  font-size: 14px;\n}\n\nh5 {\n  font-size: 12px;\n}\n\nh6 {\n  font-size: 10px;\n}\n\nh3, h4, h5 {\n  margin-top: 5px;\n  font-weight: 600;\n}\n"
  },
  {
    "path": "public/admin/scss/variables.scss",
    "content": "// Font\n$font-stack: \"open sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n\n// Basic Colors\n$navy: #1ab394;           // Primary color\n$dark-gray: #c2c2c2;      // Default color\n$blue: #1c84c6;           // Success color\n$lazur: #23c6c8;          // Info color\n$yellow: #f8ac59;         // Warrning color\n$red: #ed5565;            // Danger color\n\n// Various colors\n$text-color: #676a6c;           // Body text\n$gray: #f3f3f4;                 // Background wrapper color\n$light-gray: #d1dade;           // Default label, badget\n$label-badget-color: #5e5e5e;\n\n// IBOX colors ( default panel colors)\n$border-color: #e7eaec;   // IBox border\n$ibox-title-bg: white;    // IBox Background header\n$ibox-content-bg: white;  // IBox Background content\n\n//Sidebar width\n$sidebar-width: 220px;\n\n// Boxed layout width\n$boxed-width: 1200px;\n$boxed-backgound: url(\"patterns/shattered.png\");\n\n//Border radius for buttons\n$btn-border-radius: 3px;\n\n//Navigation\n$nav-bg: #2f4050;\n$nav-profil-pattern: url(\"patterns/header-profile.png\") no-repeat;\n$nav-text-color: #a7b1c2;\n"
  },
  {
    "path": "public/index.php",
    "content": "<?php\n\nuse Illuminate\\Contracts\\Http\\Kernel;\nuse Illuminate\\Http\\Request;\n\ndefine('LARAVEL_START', microtime(true));\n\n/*\n|--------------------------------------------------------------------------\n| Check If The Application Is Under Maintenance\n|--------------------------------------------------------------------------\n|\n| If the application is in maintenance / demo mode via the \"down\" command\n| we will load this file so that any pre-rendered content can be shown\n| instead of starting the framework, which could cause an exception.\n|\n*/\n\nif (file_exists(__DIR__.'/../storage/framework/maintenance.php')) {\n    require __DIR__.'/../storage/framework/maintenance.php';\n}\n\n/*\n|--------------------------------------------------------------------------\n| Register The Auto Loader\n|--------------------------------------------------------------------------\n|\n| Composer provides a convenient, automatically generated class loader for\n| this application. We just need to utilize it! We'll simply require it\n| into the script here so we don't need to manually load our classes.\n|\n*/\n\nrequire __DIR__.'/../vendor/autoload.php';\n\n/*\n|--------------------------------------------------------------------------\n| Run The Application\n|--------------------------------------------------------------------------\n|\n| Once we have the application, we can handle the incoming request using\n| the application's HTTP kernel. Then, we will send the response back\n| to this client's browser, allowing them to enjoy our application.\n|\n*/\n\n$app = require_once __DIR__.'/../bootstrap/app.php';\n\n$kernel = $app->make(Kernel::class);\n\n$response = tap($kernel->handle(\n    $request = Request::capture()\n))->send();\n\n$kernel->terminate($request, $response);\n"
  },
  {
    "path": "public/landing/css/aos.css",
    "content": "[data-aos][data-aos][data-aos-duration=\"50\"],body[data-aos-duration=\"50\"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay=\"50\"],body[data-aos-delay=\"50\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"50\"].aos-animate,body[data-aos-delay=\"50\"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration=\"100\"],body[data-aos-duration=\"100\"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay=\"100\"],body[data-aos-delay=\"100\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"100\"].aos-animate,body[data-aos-delay=\"100\"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration=\"150\"],body[data-aos-duration=\"150\"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay=\"150\"],body[data-aos-delay=\"150\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"150\"].aos-animate,body[data-aos-delay=\"150\"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration=\"200\"],body[data-aos-duration=\"200\"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay=\"200\"],body[data-aos-delay=\"200\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"200\"].aos-animate,body[data-aos-delay=\"200\"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration=\"250\"],body[data-aos-duration=\"250\"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay=\"250\"],body[data-aos-delay=\"250\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"250\"].aos-animate,body[data-aos-delay=\"250\"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration=\"300\"],body[data-aos-duration=\"300\"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay=\"300\"],body[data-aos-delay=\"300\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"300\"].aos-animate,body[data-aos-delay=\"300\"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration=\"350\"],body[data-aos-duration=\"350\"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay=\"350\"],body[data-aos-delay=\"350\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"350\"].aos-animate,body[data-aos-delay=\"350\"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration=\"400\"],body[data-aos-duration=\"400\"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay=\"400\"],body[data-aos-delay=\"400\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"400\"].aos-animate,body[data-aos-delay=\"400\"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration=\"450\"],body[data-aos-duration=\"450\"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay=\"450\"],body[data-aos-delay=\"450\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"450\"].aos-animate,body[data-aos-delay=\"450\"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration=\"500\"],body[data-aos-duration=\"500\"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay=\"500\"],body[data-aos-delay=\"500\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"500\"].aos-animate,body[data-aos-delay=\"500\"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration=\"550\"],body[data-aos-duration=\"550\"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay=\"550\"],body[data-aos-delay=\"550\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"550\"].aos-animate,body[data-aos-delay=\"550\"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration=\"600\"],body[data-aos-duration=\"600\"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay=\"600\"],body[data-aos-delay=\"600\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"600\"].aos-animate,body[data-aos-delay=\"600\"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration=\"650\"],body[data-aos-duration=\"650\"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay=\"650\"],body[data-aos-delay=\"650\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"650\"].aos-animate,body[data-aos-delay=\"650\"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration=\"700\"],body[data-aos-duration=\"700\"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay=\"700\"],body[data-aos-delay=\"700\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"700\"].aos-animate,body[data-aos-delay=\"700\"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration=\"750\"],body[data-aos-duration=\"750\"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay=\"750\"],body[data-aos-delay=\"750\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"750\"].aos-animate,body[data-aos-delay=\"750\"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration=\"800\"],body[data-aos-duration=\"800\"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay=\"800\"],body[data-aos-delay=\"800\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"800\"].aos-animate,body[data-aos-delay=\"800\"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration=\"850\"],body[data-aos-duration=\"850\"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay=\"850\"],body[data-aos-delay=\"850\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"850\"].aos-animate,body[data-aos-delay=\"850\"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration=\"900\"],body[data-aos-duration=\"900\"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay=\"900\"],body[data-aos-delay=\"900\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"900\"].aos-animate,body[data-aos-delay=\"900\"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration=\"950\"],body[data-aos-duration=\"950\"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay=\"950\"],body[data-aos-delay=\"950\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"950\"].aos-animate,body[data-aos-delay=\"950\"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration=\"1000\"],body[data-aos-duration=\"1000\"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay=\"1000\"],body[data-aos-delay=\"1000\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1000\"].aos-animate,body[data-aos-delay=\"1000\"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration=\"1050\"],body[data-aos-duration=\"1050\"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay=\"1050\"],body[data-aos-delay=\"1050\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1050\"].aos-animate,body[data-aos-delay=\"1050\"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration=\"1100\"],body[data-aos-duration=\"1100\"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay=\"1100\"],body[data-aos-delay=\"1100\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1100\"].aos-animate,body[data-aos-delay=\"1100\"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration=\"1150\"],body[data-aos-duration=\"1150\"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay=\"1150\"],body[data-aos-delay=\"1150\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1150\"].aos-animate,body[data-aos-delay=\"1150\"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration=\"1200\"],body[data-aos-duration=\"1200\"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay=\"1200\"],body[data-aos-delay=\"1200\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1200\"].aos-animate,body[data-aos-delay=\"1200\"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration=\"1250\"],body[data-aos-duration=\"1250\"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay=\"1250\"],body[data-aos-delay=\"1250\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1250\"].aos-animate,body[data-aos-delay=\"1250\"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration=\"1300\"],body[data-aos-duration=\"1300\"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay=\"1300\"],body[data-aos-delay=\"1300\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1300\"].aos-animate,body[data-aos-delay=\"1300\"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration=\"1350\"],body[data-aos-duration=\"1350\"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay=\"1350\"],body[data-aos-delay=\"1350\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1350\"].aos-animate,body[data-aos-delay=\"1350\"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration=\"1400\"],body[data-aos-duration=\"1400\"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay=\"1400\"],body[data-aos-delay=\"1400\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1400\"].aos-animate,body[data-aos-delay=\"1400\"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration=\"1450\"],body[data-aos-duration=\"1450\"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay=\"1450\"],body[data-aos-delay=\"1450\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1450\"].aos-animate,body[data-aos-delay=\"1450\"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration=\"1500\"],body[data-aos-duration=\"1500\"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay=\"1500\"],body[data-aos-delay=\"1500\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1500\"].aos-animate,body[data-aos-delay=\"1500\"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration=\"1550\"],body[data-aos-duration=\"1550\"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay=\"1550\"],body[data-aos-delay=\"1550\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1550\"].aos-animate,body[data-aos-delay=\"1550\"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration=\"1600\"],body[data-aos-duration=\"1600\"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay=\"1600\"],body[data-aos-delay=\"1600\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1600\"].aos-animate,body[data-aos-delay=\"1600\"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration=\"1650\"],body[data-aos-duration=\"1650\"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay=\"1650\"],body[data-aos-delay=\"1650\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1650\"].aos-animate,body[data-aos-delay=\"1650\"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration=\"1700\"],body[data-aos-duration=\"1700\"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay=\"1700\"],body[data-aos-delay=\"1700\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1700\"].aos-animate,body[data-aos-delay=\"1700\"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration=\"1750\"],body[data-aos-duration=\"1750\"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay=\"1750\"],body[data-aos-delay=\"1750\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1750\"].aos-animate,body[data-aos-delay=\"1750\"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration=\"1800\"],body[data-aos-duration=\"1800\"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay=\"1800\"],body[data-aos-delay=\"1800\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1800\"].aos-animate,body[data-aos-delay=\"1800\"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration=\"1850\"],body[data-aos-duration=\"1850\"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay=\"1850\"],body[data-aos-delay=\"1850\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1850\"].aos-animate,body[data-aos-delay=\"1850\"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration=\"1900\"],body[data-aos-duration=\"1900\"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay=\"1900\"],body[data-aos-delay=\"1900\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1900\"].aos-animate,body[data-aos-delay=\"1900\"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration=\"1950\"],body[data-aos-duration=\"1950\"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay=\"1950\"],body[data-aos-delay=\"1950\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"1950\"].aos-animate,body[data-aos-delay=\"1950\"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration=\"2000\"],body[data-aos-duration=\"2000\"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay=\"2000\"],body[data-aos-delay=\"2000\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2000\"].aos-animate,body[data-aos-delay=\"2000\"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration=\"2050\"],body[data-aos-duration=\"2050\"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay=\"2050\"],body[data-aos-delay=\"2050\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2050\"].aos-animate,body[data-aos-delay=\"2050\"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration=\"2100\"],body[data-aos-duration=\"2100\"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay=\"2100\"],body[data-aos-delay=\"2100\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2100\"].aos-animate,body[data-aos-delay=\"2100\"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration=\"2150\"],body[data-aos-duration=\"2150\"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay=\"2150\"],body[data-aos-delay=\"2150\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2150\"].aos-animate,body[data-aos-delay=\"2150\"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration=\"2200\"],body[data-aos-duration=\"2200\"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay=\"2200\"],body[data-aos-delay=\"2200\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2200\"].aos-animate,body[data-aos-delay=\"2200\"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration=\"2250\"],body[data-aos-duration=\"2250\"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay=\"2250\"],body[data-aos-delay=\"2250\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2250\"].aos-animate,body[data-aos-delay=\"2250\"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration=\"2300\"],body[data-aos-duration=\"2300\"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay=\"2300\"],body[data-aos-delay=\"2300\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2300\"].aos-animate,body[data-aos-delay=\"2300\"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration=\"2350\"],body[data-aos-duration=\"2350\"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay=\"2350\"],body[data-aos-delay=\"2350\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2350\"].aos-animate,body[data-aos-delay=\"2350\"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration=\"2400\"],body[data-aos-duration=\"2400\"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay=\"2400\"],body[data-aos-delay=\"2400\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2400\"].aos-animate,body[data-aos-delay=\"2400\"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration=\"2450\"],body[data-aos-duration=\"2450\"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay=\"2450\"],body[data-aos-delay=\"2450\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2450\"].aos-animate,body[data-aos-delay=\"2450\"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration=\"2500\"],body[data-aos-duration=\"2500\"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay=\"2500\"],body[data-aos-delay=\"2500\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2500\"].aos-animate,body[data-aos-delay=\"2500\"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration=\"2550\"],body[data-aos-duration=\"2550\"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay=\"2550\"],body[data-aos-delay=\"2550\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2550\"].aos-animate,body[data-aos-delay=\"2550\"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration=\"2600\"],body[data-aos-duration=\"2600\"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay=\"2600\"],body[data-aos-delay=\"2600\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2600\"].aos-animate,body[data-aos-delay=\"2600\"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration=\"2650\"],body[data-aos-duration=\"2650\"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay=\"2650\"],body[data-aos-delay=\"2650\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2650\"].aos-animate,body[data-aos-delay=\"2650\"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration=\"2700\"],body[data-aos-duration=\"2700\"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay=\"2700\"],body[data-aos-delay=\"2700\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2700\"].aos-animate,body[data-aos-delay=\"2700\"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration=\"2750\"],body[data-aos-duration=\"2750\"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay=\"2750\"],body[data-aos-delay=\"2750\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2750\"].aos-animate,body[data-aos-delay=\"2750\"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration=\"2800\"],body[data-aos-duration=\"2800\"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay=\"2800\"],body[data-aos-delay=\"2800\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2800\"].aos-animate,body[data-aos-delay=\"2800\"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration=\"2850\"],body[data-aos-duration=\"2850\"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay=\"2850\"],body[data-aos-delay=\"2850\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2850\"].aos-animate,body[data-aos-delay=\"2850\"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration=\"2900\"],body[data-aos-duration=\"2900\"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay=\"2900\"],body[data-aos-delay=\"2900\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2900\"].aos-animate,body[data-aos-delay=\"2900\"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration=\"2950\"],body[data-aos-duration=\"2950\"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay=\"2950\"],body[data-aos-delay=\"2950\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"2950\"].aos-animate,body[data-aos-delay=\"2950\"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration=\"3000\"],body[data-aos-duration=\"3000\"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay=\"3000\"],body[data-aos-delay=\"3000\"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay=\"3000\"].aos-animate,body[data-aos-delay=\"3000\"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translate(0)}[data-aos=fade-up]{transform:translateY(100px)}[data-aos=fade-down]{transform:translateY(-100px)}[data-aos=fade-right]{transform:translate(-100px)}[data-aos=fade-left]{transform:translate(100px)}[data-aos=fade-up-right]{transform:translate(-100px,100px)}[data-aos=fade-up-left]{transform:translate(100px,100px)}[data-aos=fade-down-right]{transform:translate(-100px,-100px)}[data-aos=fade-down-left]{transform:translate(100px,-100px)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translate(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translateY(100px) scale(.6)}[data-aos=zoom-in-down]{transform:translateY(-100px) scale(.6)}[data-aos=zoom-in-right]{transform:translate(-100px) scale(.6)}[data-aos=zoom-in-left]{transform:translate(100px) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translateY(100px) scale(1.2)}[data-aos=zoom-out-down]{transform:translateY(-100px) scale(1.2)}[data-aos=zoom-out-right]{transform:translate(-100px) scale(1.2)}[data-aos=zoom-out-left]{transform:translate(100px) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translate(0)}[data-aos=slide-up]{transform:translateY(100%)}[data-aos=slide-down]{transform:translateY(-100%)}[data-aos=slide-right]{transform:translateX(-100%)}[data-aos=slide-left]{transform:translateX(100%)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}\n/*# sourceMappingURL=aos.css.map*/"
  },
  {
    "path": "public/landing/css/bootstrap/bootstrap-grid.css",
    "content": "/*!\n * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n@-ms-viewport {\n  width: device-width; }\n\nhtml {\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n  -ms-overflow-style: scrollbar; }\n\n*,\n*::before,\n*::after {\n  -webkit-box-sizing: inherit;\n  box-sizing: inherit; }\n\n.container {\n  width: 100%;\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto; }\n  @media (min-width: 576px) {\n    .container {\n      max-width: 540px; } }\n  @media (min-width: 768px) {\n    .container {\n      max-width: 720px; } }\n  @media (min-width: 992px) {\n    .container {\n      max-width: 960px; } }\n  @media (min-width: 1200px) {\n    .container {\n      max-width: 1140px; } }\n\n.container-fluid {\n  width: 100%;\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto; }\n\n.row {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  margin-right: -15px;\n  margin-left: -15px; }\n\n.no-gutters {\n  margin-right: 0;\n  margin-left: 0; }\n  .no-gutters > .col,\n  .no-gutters > [class*=\"col-\"] {\n    padding-right: 0;\n    padding-left: 0; }\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n  position: relative;\n  width: 100%;\n  min-height: 1px;\n  padding-right: 15px;\n  padding-left: 15px; }\n\n.col {\n  -ms-flex-preferred-size: 0;\n  flex-basis: 0;\n  -webkit-box-flex: 1;\n  -ms-flex-positive: 1;\n  flex-grow: 1;\n  max-width: 100%; }\n\n.col-auto {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 auto;\n  flex: 0 0 auto;\n  width: auto;\n  max-width: none; }\n\n.col-1 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 8.33333%;\n  flex: 0 0 8.33333%;\n  max-width: 8.33333%; }\n\n.col-2 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 16.66667%;\n  flex: 0 0 16.66667%;\n  max-width: 16.66667%; }\n\n.col-3 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 25%;\n  flex: 0 0 25%;\n  max-width: 25%; }\n\n.col-4 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 33.33333%;\n  flex: 0 0 33.33333%;\n  max-width: 33.33333%; }\n\n.col-5 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 41.66667%;\n  flex: 0 0 41.66667%;\n  max-width: 41.66667%; }\n\n.col-6 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 50%;\n  flex: 0 0 50%;\n  max-width: 50%; }\n\n.col-7 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 58.33333%;\n  flex: 0 0 58.33333%;\n  max-width: 58.33333%; }\n\n.col-8 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 66.66667%;\n  flex: 0 0 66.66667%;\n  max-width: 66.66667%; }\n\n.col-9 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 75%;\n  flex: 0 0 75%;\n  max-width: 75%; }\n\n.col-10 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 83.33333%;\n  flex: 0 0 83.33333%;\n  max-width: 83.33333%; }\n\n.col-11 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 91.66667%;\n  flex: 0 0 91.66667%;\n  max-width: 91.66667%; }\n\n.col-12 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 100%;\n  flex: 0 0 100%;\n  max-width: 100%; }\n\n.order-first {\n  -webkit-box-ordinal-group: 0;\n  -ms-flex-order: -1;\n  order: -1; }\n\n.order-last {\n  -webkit-box-ordinal-group: 14;\n  -ms-flex-order: 13;\n  order: 13; }\n\n.order-0 {\n  -webkit-box-ordinal-group: 1;\n  -ms-flex-order: 0;\n  order: 0; }\n\n.order-1 {\n  -webkit-box-ordinal-group: 2;\n  -ms-flex-order: 1;\n  order: 1; }\n\n.order-2 {\n  -webkit-box-ordinal-group: 3;\n  -ms-flex-order: 2;\n  order: 2; }\n\n.order-3 {\n  -webkit-box-ordinal-group: 4;\n  -ms-flex-order: 3;\n  order: 3; }\n\n.order-4 {\n  -webkit-box-ordinal-group: 5;\n  -ms-flex-order: 4;\n  order: 4; }\n\n.order-5 {\n  -webkit-box-ordinal-group: 6;\n  -ms-flex-order: 5;\n  order: 5; }\n\n.order-6 {\n  -webkit-box-ordinal-group: 7;\n  -ms-flex-order: 6;\n  order: 6; }\n\n.order-7 {\n  -webkit-box-ordinal-group: 8;\n  -ms-flex-order: 7;\n  order: 7; }\n\n.order-8 {\n  -webkit-box-ordinal-group: 9;\n  -ms-flex-order: 8;\n  order: 8; }\n\n.order-9 {\n  -webkit-box-ordinal-group: 10;\n  -ms-flex-order: 9;\n  order: 9; }\n\n.order-10 {\n  -webkit-box-ordinal-group: 11;\n  -ms-flex-order: 10;\n  order: 10; }\n\n.order-11 {\n  -webkit-box-ordinal-group: 12;\n  -ms-flex-order: 11;\n  order: 11; }\n\n.order-12 {\n  -webkit-box-ordinal-group: 13;\n  -ms-flex-order: 12;\n  order: 12; }\n\n.offset-1 {\n  margin-left: 8.33333%; }\n\n.offset-2 {\n  margin-left: 16.66667%; }\n\n.offset-3 {\n  margin-left: 25%; }\n\n.offset-4 {\n  margin-left: 33.33333%; }\n\n.offset-5 {\n  margin-left: 41.66667%; }\n\n.offset-6 {\n  margin-left: 50%; }\n\n.offset-7 {\n  margin-left: 58.33333%; }\n\n.offset-8 {\n  margin-left: 66.66667%; }\n\n.offset-9 {\n  margin-left: 75%; }\n\n.offset-10 {\n  margin-left: 83.33333%; }\n\n.offset-11 {\n  margin-left: 91.66667%; }\n\n@media (min-width: 576px) {\n  .col-sm {\n    -ms-flex-preferred-size: 0;\n    flex-basis: 0;\n    -webkit-box-flex: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    max-width: 100%; }\n  .col-sm-auto {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 auto;\n    flex: 0 0 auto;\n    width: auto;\n    max-width: none; }\n  .col-sm-1 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 8.33333%;\n    flex: 0 0 8.33333%;\n    max-width: 8.33333%; }\n  .col-sm-2 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 16.66667%;\n    flex: 0 0 16.66667%;\n    max-width: 16.66667%; }\n  .col-sm-3 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 25%;\n    flex: 0 0 25%;\n    max-width: 25%; }\n  .col-sm-4 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 33.33333%;\n    flex: 0 0 33.33333%;\n    max-width: 33.33333%; }\n  .col-sm-5 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 41.66667%;\n    flex: 0 0 41.66667%;\n    max-width: 41.66667%; }\n  .col-sm-6 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 50%;\n    flex: 0 0 50%;\n    max-width: 50%; }\n  .col-sm-7 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 58.33333%;\n    flex: 0 0 58.33333%;\n    max-width: 58.33333%; }\n  .col-sm-8 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 66.66667%;\n    flex: 0 0 66.66667%;\n    max-width: 66.66667%; }\n  .col-sm-9 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 75%;\n    flex: 0 0 75%;\n    max-width: 75%; }\n  .col-sm-10 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 83.33333%;\n    flex: 0 0 83.33333%;\n    max-width: 83.33333%; }\n  .col-sm-11 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 91.66667%;\n    flex: 0 0 91.66667%;\n    max-width: 91.66667%; }\n  .col-sm-12 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 100%;\n    flex: 0 0 100%;\n    max-width: 100%; }\n  .order-sm-first {\n    -webkit-box-ordinal-group: 0;\n    -ms-flex-order: -1;\n    order: -1; }\n  .order-sm-last {\n    -webkit-box-ordinal-group: 14;\n    -ms-flex-order: 13;\n    order: 13; }\n  .order-sm-0 {\n    -webkit-box-ordinal-group: 1;\n    -ms-flex-order: 0;\n    order: 0; }\n  .order-sm-1 {\n    -webkit-box-ordinal-group: 2;\n    -ms-flex-order: 1;\n    order: 1; }\n  .order-sm-2 {\n    -webkit-box-ordinal-group: 3;\n    -ms-flex-order: 2;\n    order: 2; }\n  .order-sm-3 {\n    -webkit-box-ordinal-group: 4;\n    -ms-flex-order: 3;\n    order: 3; }\n  .order-sm-4 {\n    -webkit-box-ordinal-group: 5;\n    -ms-flex-order: 4;\n    order: 4; }\n  .order-sm-5 {\n    -webkit-box-ordinal-group: 6;\n    -ms-flex-order: 5;\n    order: 5; }\n  .order-sm-6 {\n    -webkit-box-ordinal-group: 7;\n    -ms-flex-order: 6;\n    order: 6; }\n  .order-sm-7 {\n    -webkit-box-ordinal-group: 8;\n    -ms-flex-order: 7;\n    order: 7; }\n  .order-sm-8 {\n    -webkit-box-ordinal-group: 9;\n    -ms-flex-order: 8;\n    order: 8; }\n  .order-sm-9 {\n    -webkit-box-ordinal-group: 10;\n    -ms-flex-order: 9;\n    order: 9; }\n  .order-sm-10 {\n    -webkit-box-ordinal-group: 11;\n    -ms-flex-order: 10;\n    order: 10; }\n  .order-sm-11 {\n    -webkit-box-ordinal-group: 12;\n    -ms-flex-order: 11;\n    order: 11; }\n  .order-sm-12 {\n    -webkit-box-ordinal-group: 13;\n    -ms-flex-order: 12;\n    order: 12; }\n  .offset-sm-0 {\n    margin-left: 0; }\n  .offset-sm-1 {\n    margin-left: 8.33333%; }\n  .offset-sm-2 {\n    margin-left: 16.66667%; }\n  .offset-sm-3 {\n    margin-left: 25%; }\n  .offset-sm-4 {\n    margin-left: 33.33333%; }\n  .offset-sm-5 {\n    margin-left: 41.66667%; }\n  .offset-sm-6 {\n    margin-left: 50%; }\n  .offset-sm-7 {\n    margin-left: 58.33333%; }\n  .offset-sm-8 {\n    margin-left: 66.66667%; }\n  .offset-sm-9 {\n    margin-left: 75%; }\n  .offset-sm-10 {\n    margin-left: 83.33333%; }\n  .offset-sm-11 {\n    margin-left: 91.66667%; } }\n\n@media (min-width: 768px) {\n  .col-md {\n    -ms-flex-preferred-size: 0;\n    flex-basis: 0;\n    -webkit-box-flex: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    max-width: 100%; }\n  .col-md-auto {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 auto;\n    flex: 0 0 auto;\n    width: auto;\n    max-width: none; }\n  .col-md-1 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 8.33333%;\n    flex: 0 0 8.33333%;\n    max-width: 8.33333%; }\n  .col-md-2 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 16.66667%;\n    flex: 0 0 16.66667%;\n    max-width: 16.66667%; }\n  .col-md-3 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 25%;\n    flex: 0 0 25%;\n    max-width: 25%; }\n  .col-md-4 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 33.33333%;\n    flex: 0 0 33.33333%;\n    max-width: 33.33333%; }\n  .col-md-5 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 41.66667%;\n    flex: 0 0 41.66667%;\n    max-width: 41.66667%; }\n  .col-md-6 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 50%;\n    flex: 0 0 50%;\n    max-width: 50%; }\n  .col-md-7 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 58.33333%;\n    flex: 0 0 58.33333%;\n    max-width: 58.33333%; }\n  .col-md-8 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 66.66667%;\n    flex: 0 0 66.66667%;\n    max-width: 66.66667%; }\n  .col-md-9 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 75%;\n    flex: 0 0 75%;\n    max-width: 75%; }\n  .col-md-10 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 83.33333%;\n    flex: 0 0 83.33333%;\n    max-width: 83.33333%; }\n  .col-md-11 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 91.66667%;\n    flex: 0 0 91.66667%;\n    max-width: 91.66667%; }\n  .col-md-12 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 100%;\n    flex: 0 0 100%;\n    max-width: 100%; }\n  .order-md-first {\n    -webkit-box-ordinal-group: 0;\n    -ms-flex-order: -1;\n    order: -1; }\n  .order-md-last {\n    -webkit-box-ordinal-group: 14;\n    -ms-flex-order: 13;\n    order: 13; }\n  .order-md-0 {\n    -webkit-box-ordinal-group: 1;\n    -ms-flex-order: 0;\n    order: 0; }\n  .order-md-1 {\n    -webkit-box-ordinal-group: 2;\n    -ms-flex-order: 1;\n    order: 1; }\n  .order-md-2 {\n    -webkit-box-ordinal-group: 3;\n    -ms-flex-order: 2;\n    order: 2; }\n  .order-md-3 {\n    -webkit-box-ordinal-group: 4;\n    -ms-flex-order: 3;\n    order: 3; }\n  .order-md-4 {\n    -webkit-box-ordinal-group: 5;\n    -ms-flex-order: 4;\n    order: 4; }\n  .order-md-5 {\n    -webkit-box-ordinal-group: 6;\n    -ms-flex-order: 5;\n    order: 5; }\n  .order-md-6 {\n    -webkit-box-ordinal-group: 7;\n    -ms-flex-order: 6;\n    order: 6; }\n  .order-md-7 {\n    -webkit-box-ordinal-group: 8;\n    -ms-flex-order: 7;\n    order: 7; }\n  .order-md-8 {\n    -webkit-box-ordinal-group: 9;\n    -ms-flex-order: 8;\n    order: 8; }\n  .order-md-9 {\n    -webkit-box-ordinal-group: 10;\n    -ms-flex-order: 9;\n    order: 9; }\n  .order-md-10 {\n    -webkit-box-ordinal-group: 11;\n    -ms-flex-order: 10;\n    order: 10; }\n  .order-md-11 {\n    -webkit-box-ordinal-group: 12;\n    -ms-flex-order: 11;\n    order: 11; }\n  .order-md-12 {\n    -webkit-box-ordinal-group: 13;\n    -ms-flex-order: 12;\n    order: 12; }\n  .offset-md-0 {\n    margin-left: 0; }\n  .offset-md-1 {\n    margin-left: 8.33333%; }\n  .offset-md-2 {\n    margin-left: 16.66667%; }\n  .offset-md-3 {\n    margin-left: 25%; }\n  .offset-md-4 {\n    margin-left: 33.33333%; }\n  .offset-md-5 {\n    margin-left: 41.66667%; }\n  .offset-md-6 {\n    margin-left: 50%; }\n  .offset-md-7 {\n    margin-left: 58.33333%; }\n  .offset-md-8 {\n    margin-left: 66.66667%; }\n  .offset-md-9 {\n    margin-left: 75%; }\n  .offset-md-10 {\n    margin-left: 83.33333%; }\n  .offset-md-11 {\n    margin-left: 91.66667%; } }\n\n@media (min-width: 992px) {\n  .col-lg {\n    -ms-flex-preferred-size: 0;\n    flex-basis: 0;\n    -webkit-box-flex: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    max-width: 100%; }\n  .col-lg-auto {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 auto;\n    flex: 0 0 auto;\n    width: auto;\n    max-width: none; }\n  .col-lg-1 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 8.33333%;\n    flex: 0 0 8.33333%;\n    max-width: 8.33333%; }\n  .col-lg-2 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 16.66667%;\n    flex: 0 0 16.66667%;\n    max-width: 16.66667%; }\n  .col-lg-3 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 25%;\n    flex: 0 0 25%;\n    max-width: 25%; }\n  .col-lg-4 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 33.33333%;\n    flex: 0 0 33.33333%;\n    max-width: 33.33333%; }\n  .col-lg-5 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 41.66667%;\n    flex: 0 0 41.66667%;\n    max-width: 41.66667%; }\n  .col-lg-6 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 50%;\n    flex: 0 0 50%;\n    max-width: 50%; }\n  .col-lg-7 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 58.33333%;\n    flex: 0 0 58.33333%;\n    max-width: 58.33333%; }\n  .col-lg-8 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 66.66667%;\n    flex: 0 0 66.66667%;\n    max-width: 66.66667%; }\n  .col-lg-9 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 75%;\n    flex: 0 0 75%;\n    max-width: 75%; }\n  .col-lg-10 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 83.33333%;\n    flex: 0 0 83.33333%;\n    max-width: 83.33333%; }\n  .col-lg-11 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 91.66667%;\n    flex: 0 0 91.66667%;\n    max-width: 91.66667%; }\n  .col-lg-12 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 100%;\n    flex: 0 0 100%;\n    max-width: 100%; }\n  .order-lg-first {\n    -webkit-box-ordinal-group: 0;\n    -ms-flex-order: -1;\n    order: -1; }\n  .order-lg-last {\n    -webkit-box-ordinal-group: 14;\n    -ms-flex-order: 13;\n    order: 13; }\n  .order-lg-0 {\n    -webkit-box-ordinal-group: 1;\n    -ms-flex-order: 0;\n    order: 0; }\n  .order-lg-1 {\n    -webkit-box-ordinal-group: 2;\n    -ms-flex-order: 1;\n    order: 1; }\n  .order-lg-2 {\n    -webkit-box-ordinal-group: 3;\n    -ms-flex-order: 2;\n    order: 2; }\n  .order-lg-3 {\n    -webkit-box-ordinal-group: 4;\n    -ms-flex-order: 3;\n    order: 3; }\n  .order-lg-4 {\n    -webkit-box-ordinal-group: 5;\n    -ms-flex-order: 4;\n    order: 4; }\n  .order-lg-5 {\n    -webkit-box-ordinal-group: 6;\n    -ms-flex-order: 5;\n    order: 5; }\n  .order-lg-6 {\n    -webkit-box-ordinal-group: 7;\n    -ms-flex-order: 6;\n    order: 6; }\n  .order-lg-7 {\n    -webkit-box-ordinal-group: 8;\n    -ms-flex-order: 7;\n    order: 7; }\n  .order-lg-8 {\n    -webkit-box-ordinal-group: 9;\n    -ms-flex-order: 8;\n    order: 8; }\n  .order-lg-9 {\n    -webkit-box-ordinal-group: 10;\n    -ms-flex-order: 9;\n    order: 9; }\n  .order-lg-10 {\n    -webkit-box-ordinal-group: 11;\n    -ms-flex-order: 10;\n    order: 10; }\n  .order-lg-11 {\n    -webkit-box-ordinal-group: 12;\n    -ms-flex-order: 11;\n    order: 11; }\n  .order-lg-12 {\n    -webkit-box-ordinal-group: 13;\n    -ms-flex-order: 12;\n    order: 12; }\n  .offset-lg-0 {\n    margin-left: 0; }\n  .offset-lg-1 {\n    margin-left: 8.33333%; }\n  .offset-lg-2 {\n    margin-left: 16.66667%; }\n  .offset-lg-3 {\n    margin-left: 25%; }\n  .offset-lg-4 {\n    margin-left: 33.33333%; }\n  .offset-lg-5 {\n    margin-left: 41.66667%; }\n  .offset-lg-6 {\n    margin-left: 50%; }\n  .offset-lg-7 {\n    margin-left: 58.33333%; }\n  .offset-lg-8 {\n    margin-left: 66.66667%; }\n  .offset-lg-9 {\n    margin-left: 75%; }\n  .offset-lg-10 {\n    margin-left: 83.33333%; }\n  .offset-lg-11 {\n    margin-left: 91.66667%; } }\n\n@media (min-width: 1200px) {\n  .col-xl {\n    -ms-flex-preferred-size: 0;\n    flex-basis: 0;\n    -webkit-box-flex: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    max-width: 100%; }\n  .col-xl-auto {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 auto;\n    flex: 0 0 auto;\n    width: auto;\n    max-width: none; }\n  .col-xl-1 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 8.33333%;\n    flex: 0 0 8.33333%;\n    max-width: 8.33333%; }\n  .col-xl-2 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 16.66667%;\n    flex: 0 0 16.66667%;\n    max-width: 16.66667%; }\n  .col-xl-3 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 25%;\n    flex: 0 0 25%;\n    max-width: 25%; }\n  .col-xl-4 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 33.33333%;\n    flex: 0 0 33.33333%;\n    max-width: 33.33333%; }\n  .col-xl-5 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 41.66667%;\n    flex: 0 0 41.66667%;\n    max-width: 41.66667%; }\n  .col-xl-6 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 50%;\n    flex: 0 0 50%;\n    max-width: 50%; }\n  .col-xl-7 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 58.33333%;\n    flex: 0 0 58.33333%;\n    max-width: 58.33333%; }\n  .col-xl-8 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 66.66667%;\n    flex: 0 0 66.66667%;\n    max-width: 66.66667%; }\n  .col-xl-9 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 75%;\n    flex: 0 0 75%;\n    max-width: 75%; }\n  .col-xl-10 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 83.33333%;\n    flex: 0 0 83.33333%;\n    max-width: 83.33333%; }\n  .col-xl-11 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 91.66667%;\n    flex: 0 0 91.66667%;\n    max-width: 91.66667%; }\n  .col-xl-12 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 100%;\n    flex: 0 0 100%;\n    max-width: 100%; }\n  .order-xl-first {\n    -webkit-box-ordinal-group: 0;\n    -ms-flex-order: -1;\n    order: -1; }\n  .order-xl-last {\n    -webkit-box-ordinal-group: 14;\n    -ms-flex-order: 13;\n    order: 13; }\n  .order-xl-0 {\n    -webkit-box-ordinal-group: 1;\n    -ms-flex-order: 0;\n    order: 0; }\n  .order-xl-1 {\n    -webkit-box-ordinal-group: 2;\n    -ms-flex-order: 1;\n    order: 1; }\n  .order-xl-2 {\n    -webkit-box-ordinal-group: 3;\n    -ms-flex-order: 2;\n    order: 2; }\n  .order-xl-3 {\n    -webkit-box-ordinal-group: 4;\n    -ms-flex-order: 3;\n    order: 3; }\n  .order-xl-4 {\n    -webkit-box-ordinal-group: 5;\n    -ms-flex-order: 4;\n    order: 4; }\n  .order-xl-5 {\n    -webkit-box-ordinal-group: 6;\n    -ms-flex-order: 5;\n    order: 5; }\n  .order-xl-6 {\n    -webkit-box-ordinal-group: 7;\n    -ms-flex-order: 6;\n    order: 6; }\n  .order-xl-7 {\n    -webkit-box-ordinal-group: 8;\n    -ms-flex-order: 7;\n    order: 7; }\n  .order-xl-8 {\n    -webkit-box-ordinal-group: 9;\n    -ms-flex-order: 8;\n    order: 8; }\n  .order-xl-9 {\n    -webkit-box-ordinal-group: 10;\n    -ms-flex-order: 9;\n    order: 9; }\n  .order-xl-10 {\n    -webkit-box-ordinal-group: 11;\n    -ms-flex-order: 10;\n    order: 10; }\n  .order-xl-11 {\n    -webkit-box-ordinal-group: 12;\n    -ms-flex-order: 11;\n    order: 11; }\n  .order-xl-12 {\n    -webkit-box-ordinal-group: 13;\n    -ms-flex-order: 12;\n    order: 12; }\n  .offset-xl-0 {\n    margin-left: 0; }\n  .offset-xl-1 {\n    margin-left: 8.33333%; }\n  .offset-xl-2 {\n    margin-left: 16.66667%; }\n  .offset-xl-3 {\n    margin-left: 25%; }\n  .offset-xl-4 {\n    margin-left: 33.33333%; }\n  .offset-xl-5 {\n    margin-left: 41.66667%; }\n  .offset-xl-6 {\n    margin-left: 50%; }\n  .offset-xl-7 {\n    margin-left: 58.33333%; }\n  .offset-xl-8 {\n    margin-left: 66.66667%; }\n  .offset-xl-9 {\n    margin-left: 75%; }\n  .offset-xl-10 {\n    margin-left: 83.33333%; }\n  .offset-xl-11 {\n    margin-left: 91.66667%; } }\n\n.d-none {\n  display: none !important; }\n\n.d-inline {\n  display: inline !important; }\n\n.d-inline-block {\n  display: inline-block !important; }\n\n.d-block {\n  display: block !important; }\n\n.d-table {\n  display: table !important; }\n\n.d-table-row {\n  display: table-row !important; }\n\n.d-table-cell {\n  display: table-cell !important; }\n\n.d-flex {\n  display: -webkit-box !important;\n  display: -ms-flexbox !important;\n  display: flex !important; }\n\n.d-inline-flex {\n  display: -webkit-inline-box !important;\n  display: -ms-inline-flexbox !important;\n  display: inline-flex !important; }\n\n@media (min-width: 576px) {\n  .d-sm-none {\n    display: none !important; }\n  .d-sm-inline {\n    display: inline !important; }\n  .d-sm-inline-block {\n    display: inline-block !important; }\n  .d-sm-block {\n    display: block !important; }\n  .d-sm-table {\n    display: table !important; }\n  .d-sm-table-row {\n    display: table-row !important; }\n  .d-sm-table-cell {\n    display: table-cell !important; }\n  .d-sm-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-sm-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n@media (min-width: 768px) {\n  .d-md-none {\n    display: none !important; }\n  .d-md-inline {\n    display: inline !important; }\n  .d-md-inline-block {\n    display: inline-block !important; }\n  .d-md-block {\n    display: block !important; }\n  .d-md-table {\n    display: table !important; }\n  .d-md-table-row {\n    display: table-row !important; }\n  .d-md-table-cell {\n    display: table-cell !important; }\n  .d-md-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-md-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n@media (min-width: 992px) {\n  .d-lg-none {\n    display: none !important; }\n  .d-lg-inline {\n    display: inline !important; }\n  .d-lg-inline-block {\n    display: inline-block !important; }\n  .d-lg-block {\n    display: block !important; }\n  .d-lg-table {\n    display: table !important; }\n  .d-lg-table-row {\n    display: table-row !important; }\n  .d-lg-table-cell {\n    display: table-cell !important; }\n  .d-lg-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-lg-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n@media (min-width: 1200px) {\n  .d-xl-none {\n    display: none !important; }\n  .d-xl-inline {\n    display: inline !important; }\n  .d-xl-inline-block {\n    display: inline-block !important; }\n  .d-xl-block {\n    display: block !important; }\n  .d-xl-table {\n    display: table !important; }\n  .d-xl-table-row {\n    display: table-row !important; }\n  .d-xl-table-cell {\n    display: table-cell !important; }\n  .d-xl-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-xl-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n@media print {\n  .d-print-none {\n    display: none !important; }\n  .d-print-inline {\n    display: inline !important; }\n  .d-print-inline-block {\n    display: inline-block !important; }\n  .d-print-block {\n    display: block !important; }\n  .d-print-table {\n    display: table !important; }\n  .d-print-table-row {\n    display: table-row !important; }\n  .d-print-table-cell {\n    display: table-cell !important; }\n  .d-print-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-print-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n.flex-row {\n  -webkit-box-orient: horizontal !important;\n  -webkit-box-direction: normal !important;\n  -ms-flex-direction: row !important;\n  flex-direction: row !important; }\n\n.flex-column {\n  -webkit-box-orient: vertical !important;\n  -webkit-box-direction: normal !important;\n  -ms-flex-direction: column !important;\n  flex-direction: column !important; }\n\n.flex-row-reverse {\n  -webkit-box-orient: horizontal !important;\n  -webkit-box-direction: reverse !important;\n  -ms-flex-direction: row-reverse !important;\n  flex-direction: row-reverse !important; }\n\n.flex-column-reverse {\n  -webkit-box-orient: vertical !important;\n  -webkit-box-direction: reverse !important;\n  -ms-flex-direction: column-reverse !important;\n  flex-direction: column-reverse !important; }\n\n.flex-wrap {\n  -ms-flex-wrap: wrap !important;\n  flex-wrap: wrap !important; }\n\n.flex-nowrap {\n  -ms-flex-wrap: nowrap !important;\n  flex-wrap: nowrap !important; }\n\n.flex-wrap-reverse {\n  -ms-flex-wrap: wrap-reverse !important;\n  flex-wrap: wrap-reverse !important; }\n\n.flex-fill {\n  -webkit-box-flex: 1 !important;\n  -ms-flex: 1 1 auto !important;\n  flex: 1 1 auto !important; }\n\n.flex-grow-0 {\n  -webkit-box-flex: 0 !important;\n  -ms-flex-positive: 0 !important;\n  flex-grow: 0 !important; }\n\n.flex-grow-1 {\n  -webkit-box-flex: 1 !important;\n  -ms-flex-positive: 1 !important;\n  flex-grow: 1 !important; }\n\n.flex-shrink-0 {\n  -ms-flex-negative: 0 !important;\n  flex-shrink: 0 !important; }\n\n.flex-shrink-1 {\n  -ms-flex-negative: 1 !important;\n  flex-shrink: 1 !important; }\n\n.justify-content-start {\n  -webkit-box-pack: start !important;\n  -ms-flex-pack: start !important;\n  justify-content: flex-start !important; }\n\n.justify-content-end {\n  -webkit-box-pack: end !important;\n  -ms-flex-pack: end !important;\n  justify-content: flex-end !important; }\n\n.justify-content-center {\n  -webkit-box-pack: center !important;\n  -ms-flex-pack: center !important;\n  justify-content: center !important; }\n\n.justify-content-between {\n  -webkit-box-pack: justify !important;\n  -ms-flex-pack: justify !important;\n  justify-content: space-between !important; }\n\n.justify-content-around {\n  -ms-flex-pack: distribute !important;\n  justify-content: space-around !important; }\n\n.align-items-start {\n  -webkit-box-align: start !important;\n  -ms-flex-align: start !important;\n  align-items: flex-start !important; }\n\n.align-items-end {\n  -webkit-box-align: end !important;\n  -ms-flex-align: end !important;\n  align-items: flex-end !important; }\n\n.align-items-center {\n  -webkit-box-align: center !important;\n  -ms-flex-align: center !important;\n  align-items: center !important; }\n\n.align-items-baseline {\n  -webkit-box-align: baseline !important;\n  -ms-flex-align: baseline !important;\n  align-items: baseline !important; }\n\n.align-items-stretch {\n  -webkit-box-align: stretch !important;\n  -ms-flex-align: stretch !important;\n  align-items: stretch !important; }\n\n.align-content-start {\n  -ms-flex-line-pack: start !important;\n  align-content: flex-start !important; }\n\n.align-content-end {\n  -ms-flex-line-pack: end !important;\n  align-content: flex-end !important; }\n\n.align-content-center {\n  -ms-flex-line-pack: center !important;\n  align-content: center !important; }\n\n.align-content-between {\n  -ms-flex-line-pack: justify !important;\n  align-content: space-between !important; }\n\n.align-content-around {\n  -ms-flex-line-pack: distribute !important;\n  align-content: space-around !important; }\n\n.align-content-stretch {\n  -ms-flex-line-pack: stretch !important;\n  align-content: stretch !important; }\n\n.align-self-auto {\n  -ms-flex-item-align: auto !important;\n  align-self: auto !important; }\n\n.align-self-start {\n  -ms-flex-item-align: start !important;\n  align-self: flex-start !important; }\n\n.align-self-end {\n  -ms-flex-item-align: end !important;\n  align-self: flex-end !important; }\n\n.align-self-center {\n  -ms-flex-item-align: center !important;\n  align-self: center !important; }\n\n.align-self-baseline {\n  -ms-flex-item-align: baseline !important;\n  align-self: baseline !important; }\n\n.align-self-stretch {\n  -ms-flex-item-align: stretch !important;\n  align-self: stretch !important; }\n\n@media (min-width: 576px) {\n  .flex-sm-row {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: row !important;\n    flex-direction: row !important; }\n  .flex-sm-column {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: column !important;\n    flex-direction: column !important; }\n  .flex-sm-row-reverse {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: row-reverse !important;\n    flex-direction: row-reverse !important; }\n  .flex-sm-column-reverse {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: column-reverse !important;\n    flex-direction: column-reverse !important; }\n  .flex-sm-wrap {\n    -ms-flex-wrap: wrap !important;\n    flex-wrap: wrap !important; }\n  .flex-sm-nowrap {\n    -ms-flex-wrap: nowrap !important;\n    flex-wrap: nowrap !important; }\n  .flex-sm-wrap-reverse {\n    -ms-flex-wrap: wrap-reverse !important;\n    flex-wrap: wrap-reverse !important; }\n  .flex-sm-fill {\n    -webkit-box-flex: 1 !important;\n    -ms-flex: 1 1 auto !important;\n    flex: 1 1 auto !important; }\n  .flex-sm-grow-0 {\n    -webkit-box-flex: 0 !important;\n    -ms-flex-positive: 0 !important;\n    flex-grow: 0 !important; }\n  .flex-sm-grow-1 {\n    -webkit-box-flex: 1 !important;\n    -ms-flex-positive: 1 !important;\n    flex-grow: 1 !important; }\n  .flex-sm-shrink-0 {\n    -ms-flex-negative: 0 !important;\n    flex-shrink: 0 !important; }\n  .flex-sm-shrink-1 {\n    -ms-flex-negative: 1 !important;\n    flex-shrink: 1 !important; }\n  .justify-content-sm-start {\n    -webkit-box-pack: start !important;\n    -ms-flex-pack: start !important;\n    justify-content: flex-start !important; }\n  .justify-content-sm-end {\n    -webkit-box-pack: end !important;\n    -ms-flex-pack: end !important;\n    justify-content: flex-end !important; }\n  .justify-content-sm-center {\n    -webkit-box-pack: center !important;\n    -ms-flex-pack: center !important;\n    justify-content: center !important; }\n  .justify-content-sm-between {\n    -webkit-box-pack: justify !important;\n    -ms-flex-pack: justify !important;\n    justify-content: space-between !important; }\n  .justify-content-sm-around {\n    -ms-flex-pack: distribute !important;\n    justify-content: space-around !important; }\n  .align-items-sm-start {\n    -webkit-box-align: start !important;\n    -ms-flex-align: start !important;\n    align-items: flex-start !important; }\n  .align-items-sm-end {\n    -webkit-box-align: end !important;\n    -ms-flex-align: end !important;\n    align-items: flex-end !important; }\n  .align-items-sm-center {\n    -webkit-box-align: center !important;\n    -ms-flex-align: center !important;\n    align-items: center !important; }\n  .align-items-sm-baseline {\n    -webkit-box-align: baseline !important;\n    -ms-flex-align: baseline !important;\n    align-items: baseline !important; }\n  .align-items-sm-stretch {\n    -webkit-box-align: stretch !important;\n    -ms-flex-align: stretch !important;\n    align-items: stretch !important; }\n  .align-content-sm-start {\n    -ms-flex-line-pack: start !important;\n    align-content: flex-start !important; }\n  .align-content-sm-end {\n    -ms-flex-line-pack: end !important;\n    align-content: flex-end !important; }\n  .align-content-sm-center {\n    -ms-flex-line-pack: center !important;\n    align-content: center !important; }\n  .align-content-sm-between {\n    -ms-flex-line-pack: justify !important;\n    align-content: space-between !important; }\n  .align-content-sm-around {\n    -ms-flex-line-pack: distribute !important;\n    align-content: space-around !important; }\n  .align-content-sm-stretch {\n    -ms-flex-line-pack: stretch !important;\n    align-content: stretch !important; }\n  .align-self-sm-auto {\n    -ms-flex-item-align: auto !important;\n    align-self: auto !important; }\n  .align-self-sm-start {\n    -ms-flex-item-align: start !important;\n    align-self: flex-start !important; }\n  .align-self-sm-end {\n    -ms-flex-item-align: end !important;\n    align-self: flex-end !important; }\n  .align-self-sm-center {\n    -ms-flex-item-align: center !important;\n    align-self: center !important; }\n  .align-self-sm-baseline {\n    -ms-flex-item-align: baseline !important;\n    align-self: baseline !important; }\n  .align-self-sm-stretch {\n    -ms-flex-item-align: stretch !important;\n    align-self: stretch !important; } }\n\n@media (min-width: 768px) {\n  .flex-md-row {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: row !important;\n    flex-direction: row !important; }\n  .flex-md-column {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: column !important;\n    flex-direction: column !important; }\n  .flex-md-row-reverse {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: row-reverse !important;\n    flex-direction: row-reverse !important; }\n  .flex-md-column-reverse {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: column-reverse !important;\n    flex-direction: column-reverse !important; }\n  .flex-md-wrap {\n    -ms-flex-wrap: wrap !important;\n    flex-wrap: wrap !important; }\n  .flex-md-nowrap {\n    -ms-flex-wrap: nowrap !important;\n    flex-wrap: nowrap !important; }\n  .flex-md-wrap-reverse {\n    -ms-flex-wrap: wrap-reverse !important;\n    flex-wrap: wrap-reverse !important; }\n  .flex-md-fill {\n    -webkit-box-flex: 1 !important;\n    -ms-flex: 1 1 auto !important;\n    flex: 1 1 auto !important; }\n  .flex-md-grow-0 {\n    -webkit-box-flex: 0 !important;\n    -ms-flex-positive: 0 !important;\n    flex-grow: 0 !important; }\n  .flex-md-grow-1 {\n    -webkit-box-flex: 1 !important;\n    -ms-flex-positive: 1 !important;\n    flex-grow: 1 !important; }\n  .flex-md-shrink-0 {\n    -ms-flex-negative: 0 !important;\n    flex-shrink: 0 !important; }\n  .flex-md-shrink-1 {\n    -ms-flex-negative: 1 !important;\n    flex-shrink: 1 !important; }\n  .justify-content-md-start {\n    -webkit-box-pack: start !important;\n    -ms-flex-pack: start !important;\n    justify-content: flex-start !important; }\n  .justify-content-md-end {\n    -webkit-box-pack: end !important;\n    -ms-flex-pack: end !important;\n    justify-content: flex-end !important; }\n  .justify-content-md-center {\n    -webkit-box-pack: center !important;\n    -ms-flex-pack: center !important;\n    justify-content: center !important; }\n  .justify-content-md-between {\n    -webkit-box-pack: justify !important;\n    -ms-flex-pack: justify !important;\n    justify-content: space-between !important; }\n  .justify-content-md-around {\n    -ms-flex-pack: distribute !important;\n    justify-content: space-around !important; }\n  .align-items-md-start {\n    -webkit-box-align: start !important;\n    -ms-flex-align: start !important;\n    align-items: flex-start !important; }\n  .align-items-md-end {\n    -webkit-box-align: end !important;\n    -ms-flex-align: end !important;\n    align-items: flex-end !important; }\n  .align-items-md-center {\n    -webkit-box-align: center !important;\n    -ms-flex-align: center !important;\n    align-items: center !important; }\n  .align-items-md-baseline {\n    -webkit-box-align: baseline !important;\n    -ms-flex-align: baseline !important;\n    align-items: baseline !important; }\n  .align-items-md-stretch {\n    -webkit-box-align: stretch !important;\n    -ms-flex-align: stretch !important;\n    align-items: stretch !important; }\n  .align-content-md-start {\n    -ms-flex-line-pack: start !important;\n    align-content: flex-start !important; }\n  .align-content-md-end {\n    -ms-flex-line-pack: end !important;\n    align-content: flex-end !important; }\n  .align-content-md-center {\n    -ms-flex-line-pack: center !important;\n    align-content: center !important; }\n  .align-content-md-between {\n    -ms-flex-line-pack: justify !important;\n    align-content: space-between !important; }\n  .align-content-md-around {\n    -ms-flex-line-pack: distribute !important;\n    align-content: space-around !important; }\n  .align-content-md-stretch {\n    -ms-flex-line-pack: stretch !important;\n    align-content: stretch !important; }\n  .align-self-md-auto {\n    -ms-flex-item-align: auto !important;\n    align-self: auto !important; }\n  .align-self-md-start {\n    -ms-flex-item-align: start !important;\n    align-self: flex-start !important; }\n  .align-self-md-end {\n    -ms-flex-item-align: end !important;\n    align-self: flex-end !important; }\n  .align-self-md-center {\n    -ms-flex-item-align: center !important;\n    align-self: center !important; }\n  .align-self-md-baseline {\n    -ms-flex-item-align: baseline !important;\n    align-self: baseline !important; }\n  .align-self-md-stretch {\n    -ms-flex-item-align: stretch !important;\n    align-self: stretch !important; } }\n\n@media (min-width: 992px) {\n  .flex-lg-row {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: row !important;\n    flex-direction: row !important; }\n  .flex-lg-column {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: column !important;\n    flex-direction: column !important; }\n  .flex-lg-row-reverse {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: row-reverse !important;\n    flex-direction: row-reverse !important; }\n  .flex-lg-column-reverse {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: column-reverse !important;\n    flex-direction: column-reverse !important; }\n  .flex-lg-wrap {\n    -ms-flex-wrap: wrap !important;\n    flex-wrap: wrap !important; }\n  .flex-lg-nowrap {\n    -ms-flex-wrap: nowrap !important;\n    flex-wrap: nowrap !important; }\n  .flex-lg-wrap-reverse {\n    -ms-flex-wrap: wrap-reverse !important;\n    flex-wrap: wrap-reverse !important; }\n  .flex-lg-fill {\n    -webkit-box-flex: 1 !important;\n    -ms-flex: 1 1 auto !important;\n    flex: 1 1 auto !important; }\n  .flex-lg-grow-0 {\n    -webkit-box-flex: 0 !important;\n    -ms-flex-positive: 0 !important;\n    flex-grow: 0 !important; }\n  .flex-lg-grow-1 {\n    -webkit-box-flex: 1 !important;\n    -ms-flex-positive: 1 !important;\n    flex-grow: 1 !important; }\n  .flex-lg-shrink-0 {\n    -ms-flex-negative: 0 !important;\n    flex-shrink: 0 !important; }\n  .flex-lg-shrink-1 {\n    -ms-flex-negative: 1 !important;\n    flex-shrink: 1 !important; }\n  .justify-content-lg-start {\n    -webkit-box-pack: start !important;\n    -ms-flex-pack: start !important;\n    justify-content: flex-start !important; }\n  .justify-content-lg-end {\n    -webkit-box-pack: end !important;\n    -ms-flex-pack: end !important;\n    justify-content: flex-end !important; }\n  .justify-content-lg-center {\n    -webkit-box-pack: center !important;\n    -ms-flex-pack: center !important;\n    justify-content: center !important; }\n  .justify-content-lg-between {\n    -webkit-box-pack: justify !important;\n    -ms-flex-pack: justify !important;\n    justify-content: space-between !important; }\n  .justify-content-lg-around {\n    -ms-flex-pack: distribute !important;\n    justify-content: space-around !important; }\n  .align-items-lg-start {\n    -webkit-box-align: start !important;\n    -ms-flex-align: start !important;\n    align-items: flex-start !important; }\n  .align-items-lg-end {\n    -webkit-box-align: end !important;\n    -ms-flex-align: end !important;\n    align-items: flex-end !important; }\n  .align-items-lg-center {\n    -webkit-box-align: center !important;\n    -ms-flex-align: center !important;\n    align-items: center !important; }\n  .align-items-lg-baseline {\n    -webkit-box-align: baseline !important;\n    -ms-flex-align: baseline !important;\n    align-items: baseline !important; }\n  .align-items-lg-stretch {\n    -webkit-box-align: stretch !important;\n    -ms-flex-align: stretch !important;\n    align-items: stretch !important; }\n  .align-content-lg-start {\n    -ms-flex-line-pack: start !important;\n    align-content: flex-start !important; }\n  .align-content-lg-end {\n    -ms-flex-line-pack: end !important;\n    align-content: flex-end !important; }\n  .align-content-lg-center {\n    -ms-flex-line-pack: center !important;\n    align-content: center !important; }\n  .align-content-lg-between {\n    -ms-flex-line-pack: justify !important;\n    align-content: space-between !important; }\n  .align-content-lg-around {\n    -ms-flex-line-pack: distribute !important;\n    align-content: space-around !important; }\n  .align-content-lg-stretch {\n    -ms-flex-line-pack: stretch !important;\n    align-content: stretch !important; }\n  .align-self-lg-auto {\n    -ms-flex-item-align: auto !important;\n    align-self: auto !important; }\n  .align-self-lg-start {\n    -ms-flex-item-align: start !important;\n    align-self: flex-start !important; }\n  .align-self-lg-end {\n    -ms-flex-item-align: end !important;\n    align-self: flex-end !important; }\n  .align-self-lg-center {\n    -ms-flex-item-align: center !important;\n    align-self: center !important; }\n  .align-self-lg-baseline {\n    -ms-flex-item-align: baseline !important;\n    align-self: baseline !important; }\n  .align-self-lg-stretch {\n    -ms-flex-item-align: stretch !important;\n    align-self: stretch !important; } }\n\n@media (min-width: 1200px) {\n  .flex-xl-row {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: row !important;\n    flex-direction: row !important; }\n  .flex-xl-column {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: column !important;\n    flex-direction: column !important; }\n  .flex-xl-row-reverse {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: row-reverse !important;\n    flex-direction: row-reverse !important; }\n  .flex-xl-column-reverse {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: column-reverse !important;\n    flex-direction: column-reverse !important; }\n  .flex-xl-wrap {\n    -ms-flex-wrap: wrap !important;\n    flex-wrap: wrap !important; }\n  .flex-xl-nowrap {\n    -ms-flex-wrap: nowrap !important;\n    flex-wrap: nowrap !important; }\n  .flex-xl-wrap-reverse {\n    -ms-flex-wrap: wrap-reverse !important;\n    flex-wrap: wrap-reverse !important; }\n  .flex-xl-fill {\n    -webkit-box-flex: 1 !important;\n    -ms-flex: 1 1 auto !important;\n    flex: 1 1 auto !important; }\n  .flex-xl-grow-0 {\n    -webkit-box-flex: 0 !important;\n    -ms-flex-positive: 0 !important;\n    flex-grow: 0 !important; }\n  .flex-xl-grow-1 {\n    -webkit-box-flex: 1 !important;\n    -ms-flex-positive: 1 !important;\n    flex-grow: 1 !important; }\n  .flex-xl-shrink-0 {\n    -ms-flex-negative: 0 !important;\n    flex-shrink: 0 !important; }\n  .flex-xl-shrink-1 {\n    -ms-flex-negative: 1 !important;\n    flex-shrink: 1 !important; }\n  .justify-content-xl-start {\n    -webkit-box-pack: start !important;\n    -ms-flex-pack: start !important;\n    justify-content: flex-start !important; }\n  .justify-content-xl-end {\n    -webkit-box-pack: end !important;\n    -ms-flex-pack: end !important;\n    justify-content: flex-end !important; }\n  .justify-content-xl-center {\n    -webkit-box-pack: center !important;\n    -ms-flex-pack: center !important;\n    justify-content: center !important; }\n  .justify-content-xl-between {\n    -webkit-box-pack: justify !important;\n    -ms-flex-pack: justify !important;\n    justify-content: space-between !important; }\n  .justify-content-xl-around {\n    -ms-flex-pack: distribute !important;\n    justify-content: space-around !important; }\n  .align-items-xl-start {\n    -webkit-box-align: start !important;\n    -ms-flex-align: start !important;\n    align-items: flex-start !important; }\n  .align-items-xl-end {\n    -webkit-box-align: end !important;\n    -ms-flex-align: end !important;\n    align-items: flex-end !important; }\n  .align-items-xl-center {\n    -webkit-box-align: center !important;\n    -ms-flex-align: center !important;\n    align-items: center !important; }\n  .align-items-xl-baseline {\n    -webkit-box-align: baseline !important;\n    -ms-flex-align: baseline !important;\n    align-items: baseline !important; }\n  .align-items-xl-stretch {\n    -webkit-box-align: stretch !important;\n    -ms-flex-align: stretch !important;\n    align-items: stretch !important; }\n  .align-content-xl-start {\n    -ms-flex-line-pack: start !important;\n    align-content: flex-start !important; }\n  .align-content-xl-end {\n    -ms-flex-line-pack: end !important;\n    align-content: flex-end !important; }\n  .align-content-xl-center {\n    -ms-flex-line-pack: center !important;\n    align-content: center !important; }\n  .align-content-xl-between {\n    -ms-flex-line-pack: justify !important;\n    align-content: space-between !important; }\n  .align-content-xl-around {\n    -ms-flex-line-pack: distribute !important;\n    align-content: space-around !important; }\n  .align-content-xl-stretch {\n    -ms-flex-line-pack: stretch !important;\n    align-content: stretch !important; }\n  .align-self-xl-auto {\n    -ms-flex-item-align: auto !important;\n    align-self: auto !important; }\n  .align-self-xl-start {\n    -ms-flex-item-align: start !important;\n    align-self: flex-start !important; }\n  .align-self-xl-end {\n    -ms-flex-item-align: end !important;\n    align-self: flex-end !important; }\n  .align-self-xl-center {\n    -ms-flex-item-align: center !important;\n    align-self: center !important; }\n  .align-self-xl-baseline {\n    -ms-flex-item-align: baseline !important;\n    align-self: baseline !important; }\n  .align-self-xl-stretch {\n    -ms-flex-item-align: stretch !important;\n    align-self: stretch !important; } }\n"
  },
  {
    "path": "public/landing/css/bootstrap/bootstrap-reboot.css",
    "content": "/*!\n * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n*,\n*::before,\n*::after {\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box; }\n\nhtml {\n  font-family: sans-serif;\n  line-height: 1.15;\n  -webkit-text-size-adjust: 100%;\n  -ms-text-size-adjust: 100%;\n  -ms-overflow-style: scrollbar;\n  -webkit-tap-highlight-color: transparent; }\n\n@-ms-viewport {\n  width: device-width; }\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n  display: block; }\n\nbody {\n  margin: 0;\n  font-family: \"Muli\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n  font-size: 1rem;\n  font-weight: 400;\n  line-height: 1.5;\n  color: #212529;\n  text-align: left;\n  background-color: #fff; }\n\n[tabindex=\"-1\"]:focus {\n  outline: 0 !important; }\n\nhr {\n  -webkit-box-sizing: content-box;\n  box-sizing: content-box;\n  height: 0;\n  overflow: visible; }\n\nh1, h2, h3, h4, h5, h6 {\n  margin-top: 0;\n  margin-bottom: 0.5rem; }\n\np {\n  margin-top: 0;\n  margin-bottom: 1rem; }\n\nabbr[title],\nabbr[data-original-title] {\n  text-decoration: underline;\n  -webkit-text-decoration: underline dotted;\n  text-decoration: underline dotted;\n  cursor: help;\n  border-bottom: 0; }\n\naddress {\n  margin-bottom: 1rem;\n  font-style: normal;\n  line-height: inherit; }\n\nol,\nul,\ndl {\n  margin-top: 0;\n  margin-bottom: 1rem; }\n\nol ol,\nul ul,\nol ul,\nul ol {\n  margin-bottom: 0; }\n\ndt {\n  font-weight: 700; }\n\ndd {\n  margin-bottom: .5rem;\n  margin-left: 0; }\n\nblockquote {\n  margin: 0 0 1rem; }\n\ndfn {\n  font-style: italic; }\n\nb,\nstrong {\n  font-weight: bolder; }\n\nsmall {\n  font-size: 80%; }\n\nsub,\nsup {\n  position: relative;\n  font-size: 75%;\n  line-height: 0;\n  vertical-align: baseline; }\n\nsub {\n  bottom: -.25em; }\n\nsup {\n  top: -.5em; }\n\na {\n  color: #7971ea;\n  text-decoration: none;\n  background-color: transparent;\n  -webkit-text-decoration-skip: objects; }\n  a:hover {\n    color: #3a2ee0;\n    text-decoration: underline; }\n\na:not([href]):not([tabindex]) {\n  color: inherit;\n  text-decoration: none; }\n  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n    color: inherit;\n    text-decoration: none; }\n  a:not([href]):not([tabindex]):focus {\n    outline: 0; }\n\npre,\ncode,\nkbd,\nsamp {\n  font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n  font-size: 1em; }\n\npre {\n  margin-top: 0;\n  margin-bottom: 1rem;\n  overflow: auto;\n  -ms-overflow-style: scrollbar; }\n\nfigure {\n  margin: 0 0 1rem; }\n\nimg {\n  vertical-align: middle;\n  border-style: none; }\n\nsvg {\n  overflow: hidden;\n  vertical-align: middle; }\n\ntable {\n  border-collapse: collapse; }\n\ncaption {\n  padding-top: 0.75rem;\n  padding-bottom: 0.75rem;\n  color: #6c757d;\n  text-align: left;\n  caption-side: bottom; }\n\nth {\n  text-align: inherit; }\n\nlabel {\n  display: inline-block;\n  margin-bottom: 0.5rem; }\n\nbutton {\n  border-radius: 0; }\n\nbutton:focus {\n  outline: 1px dotted;\n  outline: 5px auto -webkit-focus-ring-color; }\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n  margin: 0;\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit; }\n\nbutton,\ninput {\n  overflow: visible; }\n\nbutton,\nselect {\n  text-transform: none; }\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button; }\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n  padding: 0;\n  border-style: none; }\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n  padding: 0; }\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n  -webkit-appearance: listbox; }\n\ntextarea {\n  overflow: auto;\n  resize: vertical; }\n\nfieldset {\n  min-width: 0;\n  padding: 0;\n  margin: 0;\n  border: 0; }\n\nlegend {\n  display: block;\n  width: 100%;\n  max-width: 100%;\n  padding: 0;\n  margin-bottom: .5rem;\n  font-size: 1.5rem;\n  line-height: inherit;\n  color: inherit;\n  white-space: normal; }\n\nprogress {\n  vertical-align: baseline; }\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto; }\n\n[type=\"search\"] {\n  outline-offset: -2px;\n  -webkit-appearance: none; }\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none; }\n\n::-webkit-file-upload-button {\n  font: inherit;\n  -webkit-appearance: button; }\n\noutput {\n  display: inline-block; }\n\nsummary {\n  display: list-item;\n  cursor: pointer; }\n\ntemplate {\n  display: none; }\n\n[hidden] {\n  display: none !important; }\n"
  },
  {
    "path": "public/landing/css/bootstrap/bootstrap.css",
    "content": "/*!\n * Bootstrap v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n:root {\n  --blue: #007bff;\n  --indigo: #0d0cb5;\n  --purple: #7971ea;\n  --pink: #e83e8c;\n  --red: #f23a2e;\n  --orange: #ef6c57;\n  --yellow: #f89d13;\n  --green: #8bc34a;\n  --teal: #46ddb0;\n  --cyan: #17a2b8;\n  --white: #fff;\n  --gray: #6c757d;\n  --gray-dark: #343a40;\n  --primary: #46ddb0;\n  --secondary: #6c757d;\n  --success: #8bc34a;\n  --info: #17a2b8;\n  --warning: #f89d13;\n  --danger: #f23a2e;\n  --light: #f8f9fa;\n  --dark: #343a40;\n  --breakpoint-xs: 0;\n  --breakpoint-sm: 576px;\n  --breakpoint-md: 768px;\n  --breakpoint-lg: 992px;\n  --breakpoint-xl: 1200px;\n  --font-family-sans-serif: \"Raleway\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace; }\n\n*,\n*::before,\n*::after {\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box; }\n\nhtml {\n  font-family: sans-serif;\n  line-height: 1.15;\n  -webkit-text-size-adjust: 100%;\n  -ms-text-size-adjust: 100%;\n  -ms-overflow-style: scrollbar;\n  -webkit-tap-highlight-color: transparent; }\n\n@-ms-viewport {\n  width: device-width; }\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n  display: block; }\n\nbody {\n  margin: 0;\n  font-family: \"Raleway\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n  font-size: 1rem;\n  font-weight: 400;\n  line-height: 1.5;\n  color: #212529;\n  text-align: left;\n  background-color: #fff; }\n\n[tabindex=\"-1\"]:focus {\n  outline: 0 !important; }\n\nhr {\n  -webkit-box-sizing: content-box;\n  box-sizing: content-box;\n  height: 0;\n  overflow: visible; }\n\nh1, h2, h3, h4, h5, h6 {\n  margin-top: 0;\n  margin-bottom: 0.5rem; }\n\np {\n  margin-top: 0;\n  margin-bottom: 1rem; }\n\nabbr[title],\nabbr[data-original-title] {\n  text-decoration: underline;\n  -webkit-text-decoration: underline dotted;\n  text-decoration: underline dotted;\n  cursor: help;\n  border-bottom: 0; }\n\naddress {\n  margin-bottom: 1rem;\n  font-style: normal;\n  line-height: inherit; }\n\nol,\nul,\ndl {\n  margin-top: 0;\n  margin-bottom: 1rem; }\n\nol ol,\nul ul,\nol ul,\nul ol {\n  margin-bottom: 0; }\n\ndt {\n  font-weight: 700; }\n\ndd {\n  margin-bottom: .5rem;\n  margin-left: 0; }\n\nblockquote {\n  margin: 0 0 1rem; }\n\ndfn {\n  font-style: italic; }\n\nb,\nstrong {\n  font-weight: bolder; }\n\nsmall {\n  font-size: 80%; }\n\nsub,\nsup {\n  position: relative;\n  font-size: 75%;\n  line-height: 0;\n  vertical-align: baseline; }\n\nsub {\n  bottom: -.25em; }\n\nsup {\n  top: -.5em; }\n\na {\n  color: #46ddb0;\n  text-decoration: none;\n  background-color: transparent;\n  -webkit-text-decoration-skip: objects; }\n  a:hover {\n    color: #21b589;\n    text-decoration: underline; }\n\na:not([href]):not([tabindex]) {\n  color: inherit;\n  text-decoration: none; }\n  a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {\n    color: inherit;\n    text-decoration: none; }\n  a:not([href]):not([tabindex]):focus {\n    outline: 0; }\n\npre,\ncode,\nkbd,\nsamp {\n  font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n  font-size: 1em; }\n\npre {\n  margin-top: 0;\n  margin-bottom: 1rem;\n  overflow: auto;\n  -ms-overflow-style: scrollbar; }\n\nfigure {\n  margin: 0 0 1rem; }\n\nimg {\n  vertical-align: middle;\n  border-style: none; }\n\nsvg {\n  overflow: hidden;\n  vertical-align: middle; }\n\ntable {\n  border-collapse: collapse; }\n\ncaption {\n  padding-top: 0.75rem;\n  padding-bottom: 0.75rem;\n  color: #6c757d;\n  text-align: left;\n  caption-side: bottom; }\n\nth {\n  text-align: inherit; }\n\nlabel {\n  display: inline-block;\n  margin-bottom: 0.5rem; }\n\nbutton {\n  border-radius: 0; }\n\nbutton:focus {\n  outline: 1px dotted;\n  outline: 5px auto -webkit-focus-ring-color; }\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n  margin: 0;\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit; }\n\nbutton,\ninput {\n  overflow: visible; }\n\nbutton,\nselect {\n  text-transform: none; }\n\nbutton,\nhtml [type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button; }\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n  padding: 0;\n  border-style: none; }\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n  padding: 0; }\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n  -webkit-appearance: listbox; }\n\ntextarea {\n  overflow: auto;\n  resize: vertical; }\n\nfieldset {\n  min-width: 0;\n  padding: 0;\n  margin: 0;\n  border: 0; }\n\nlegend {\n  display: block;\n  width: 100%;\n  max-width: 100%;\n  padding: 0;\n  margin-bottom: .5rem;\n  font-size: 1.5rem;\n  line-height: inherit;\n  color: inherit;\n  white-space: normal; }\n\nprogress {\n  vertical-align: baseline; }\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto; }\n\n[type=\"search\"] {\n  outline-offset: -2px;\n  -webkit-appearance: none; }\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none; }\n\n::-webkit-file-upload-button {\n  font: inherit;\n  -webkit-appearance: button; }\n\noutput {\n  display: inline-block; }\n\nsummary {\n  display: list-item;\n  cursor: pointer; }\n\ntemplate {\n  display: none; }\n\n[hidden] {\n  display: none !important; }\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  margin-bottom: 0.5rem;\n  font-family: inherit;\n  font-weight: 500;\n  line-height: 1.2;\n  color: inherit; }\n\nh1, .h1 {\n  font-size: 2.5rem; }\n\nh2, .h2 {\n  font-size: 2rem; }\n\nh3, .h3 {\n  font-size: 1.75rem; }\n\nh4, .h4 {\n  font-size: 1.5rem; }\n\nh5, .h5 {\n  font-size: 1.25rem; }\n\nh6, .h6 {\n  font-size: 1rem; }\n\n.lead {\n  font-size: 1.25rem;\n  font-weight: 300; }\n\n.display-1 {\n  font-size: 6rem;\n  font-weight: 300;\n  line-height: 1.2; }\n\n.display-2 {\n  font-size: 5.5rem;\n  font-weight: 300;\n  line-height: 1.2; }\n\n.display-3 {\n  font-size: 4.5rem;\n  font-weight: 300;\n  line-height: 1.2; }\n\n.display-4 {\n  font-size: 3.5rem;\n  font-weight: 300;\n  line-height: 1.2; }\n\nhr {\n  margin-top: 1rem;\n  margin-bottom: 1rem;\n  border: 0;\n  border-top: 1px solid rgba(0, 0, 0, 0.1); }\n\nsmall,\n.small {\n  font-size: 80%;\n  font-weight: 400; }\n\nmark,\n.mark {\n  padding: 0.2em;\n  background-color: #fcf8e3; }\n\n.list-unstyled {\n  padding-left: 0;\n  list-style: none; }\n\n.list-inline {\n  padding-left: 0;\n  list-style: none; }\n\n.list-inline-item {\n  display: inline-block; }\n  .list-inline-item:not(:last-child) {\n    margin-right: 0.5rem; }\n\n.initialism {\n  font-size: 90%;\n  text-transform: uppercase; }\n\n.blockquote {\n  margin-bottom: 1rem;\n  font-size: 1.25rem; }\n\n.blockquote-footer {\n  display: block;\n  font-size: 80%;\n  color: #6c757d; }\n  .blockquote-footer::before {\n    content: \"\\2014 \\00A0\"; }\n\n.img-fluid {\n  max-width: 100%;\n  height: auto; }\n\n.img-thumbnail {\n  padding: 0.25rem;\n  background-color: #fff;\n  border: 1px solid #dee2e6;\n  border-radius: 0.25rem;\n  max-width: 100%;\n  height: auto; }\n\n.figure {\n  display: inline-block; }\n\n.figure-img {\n  margin-bottom: 0.5rem;\n  line-height: 1; }\n\n.figure-caption {\n  font-size: 90%;\n  color: #6c757d; }\n\ncode {\n  font-size: 87.5%;\n  color: #e83e8c;\n  word-break: break-word; }\n  a > code {\n    color: inherit; }\n\nkbd {\n  padding: 0.2rem 0.4rem;\n  font-size: 87.5%;\n  color: #fff;\n  background-color: #212529;\n  border-radius: 0.2rem; }\n  kbd kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: 700; }\n\npre {\n  display: block;\n  font-size: 87.5%;\n  color: #212529; }\n  pre code {\n    font-size: inherit;\n    color: inherit;\n    word-break: normal; }\n\n.pre-scrollable {\n  max-height: 340px;\n  overflow-y: scroll; }\n\n.container {\n  width: 100%;\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto; }\n  @media (min-width: 576px) {\n    .container {\n      max-width: 540px; } }\n  @media (min-width: 768px) {\n    .container {\n      max-width: 720px; } }\n  @media (min-width: 992px) {\n    .container {\n      max-width: 960px; } }\n  @media (min-width: 1200px) {\n    .container {\n      max-width: 1140px; } }\n\n.container-fluid {\n  width: 100%;\n  padding-right: 15px;\n  padding-left: 15px;\n  margin-right: auto;\n  margin-left: auto; }\n\n.row {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  margin-right: -15px;\n  margin-left: -15px; }\n\n.no-gutters {\n  margin-right: 0;\n  margin-left: 0; }\n  .no-gutters > .col,\n  .no-gutters > [class*=\"col-\"] {\n    padding-right: 0;\n    padding-left: 0; }\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n  position: relative;\n  width: 100%;\n  min-height: 1px;\n  padding-right: 15px;\n  padding-left: 15px; }\n\n.col {\n  -ms-flex-preferred-size: 0;\n  flex-basis: 0;\n  -webkit-box-flex: 1;\n  -ms-flex-positive: 1;\n  flex-grow: 1;\n  max-width: 100%; }\n\n.col-auto {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 auto;\n  flex: 0 0 auto;\n  width: auto;\n  max-width: none; }\n\n.col-1 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 8.33333%;\n  flex: 0 0 8.33333%;\n  max-width: 8.33333%; }\n\n.col-2 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 16.66667%;\n  flex: 0 0 16.66667%;\n  max-width: 16.66667%; }\n\n.col-3 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 25%;\n  flex: 0 0 25%;\n  max-width: 25%; }\n\n.col-4 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 33.33333%;\n  flex: 0 0 33.33333%;\n  max-width: 33.33333%; }\n\n.col-5 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 41.66667%;\n  flex: 0 0 41.66667%;\n  max-width: 41.66667%; }\n\n.col-6 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 50%;\n  flex: 0 0 50%;\n  max-width: 50%; }\n\n.col-7 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 58.33333%;\n  flex: 0 0 58.33333%;\n  max-width: 58.33333%; }\n\n.col-8 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 66.66667%;\n  flex: 0 0 66.66667%;\n  max-width: 66.66667%; }\n\n.col-9 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 75%;\n  flex: 0 0 75%;\n  max-width: 75%; }\n\n.col-10 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 83.33333%;\n  flex: 0 0 83.33333%;\n  max-width: 83.33333%; }\n\n.col-11 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 91.66667%;\n  flex: 0 0 91.66667%;\n  max-width: 91.66667%; }\n\n.col-12 {\n  -webkit-box-flex: 0;\n  -ms-flex: 0 0 100%;\n  flex: 0 0 100%;\n  max-width: 100%; }\n\n.order-first {\n  -webkit-box-ordinal-group: 0;\n  -ms-flex-order: -1;\n  order: -1; }\n\n.order-last {\n  -webkit-box-ordinal-group: 14;\n  -ms-flex-order: 13;\n  order: 13; }\n\n.order-0 {\n  -webkit-box-ordinal-group: 1;\n  -ms-flex-order: 0;\n  order: 0; }\n\n.order-1 {\n  -webkit-box-ordinal-group: 2;\n  -ms-flex-order: 1;\n  order: 1; }\n\n.order-2 {\n  -webkit-box-ordinal-group: 3;\n  -ms-flex-order: 2;\n  order: 2; }\n\n.order-3 {\n  -webkit-box-ordinal-group: 4;\n  -ms-flex-order: 3;\n  order: 3; }\n\n.order-4 {\n  -webkit-box-ordinal-group: 5;\n  -ms-flex-order: 4;\n  order: 4; }\n\n.order-5 {\n  -webkit-box-ordinal-group: 6;\n  -ms-flex-order: 5;\n  order: 5; }\n\n.order-6 {\n  -webkit-box-ordinal-group: 7;\n  -ms-flex-order: 6;\n  order: 6; }\n\n.order-7 {\n  -webkit-box-ordinal-group: 8;\n  -ms-flex-order: 7;\n  order: 7; }\n\n.order-8 {\n  -webkit-box-ordinal-group: 9;\n  -ms-flex-order: 8;\n  order: 8; }\n\n.order-9 {\n  -webkit-box-ordinal-group: 10;\n  -ms-flex-order: 9;\n  order: 9; }\n\n.order-10 {\n  -webkit-box-ordinal-group: 11;\n  -ms-flex-order: 10;\n  order: 10; }\n\n.order-11 {\n  -webkit-box-ordinal-group: 12;\n  -ms-flex-order: 11;\n  order: 11; }\n\n.order-12 {\n  -webkit-box-ordinal-group: 13;\n  -ms-flex-order: 12;\n  order: 12; }\n\n.offset-1 {\n  margin-left: 8.33333%; }\n\n.offset-2 {\n  margin-left: 16.66667%; }\n\n.offset-3 {\n  margin-left: 25%; }\n\n.offset-4 {\n  margin-left: 33.33333%; }\n\n.offset-5 {\n  margin-left: 41.66667%; }\n\n.offset-6 {\n  margin-left: 50%; }\n\n.offset-7 {\n  margin-left: 58.33333%; }\n\n.offset-8 {\n  margin-left: 66.66667%; }\n\n.offset-9 {\n  margin-left: 75%; }\n\n.offset-10 {\n  margin-left: 83.33333%; }\n\n.offset-11 {\n  margin-left: 91.66667%; }\n\n@media (min-width: 576px) {\n  .col-sm {\n    -ms-flex-preferred-size: 0;\n    flex-basis: 0;\n    -webkit-box-flex: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    max-width: 100%; }\n  .col-sm-auto {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 auto;\n    flex: 0 0 auto;\n    width: auto;\n    max-width: none; }\n  .col-sm-1 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 8.33333%;\n    flex: 0 0 8.33333%;\n    max-width: 8.33333%; }\n  .col-sm-2 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 16.66667%;\n    flex: 0 0 16.66667%;\n    max-width: 16.66667%; }\n  .col-sm-3 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 25%;\n    flex: 0 0 25%;\n    max-width: 25%; }\n  .col-sm-4 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 33.33333%;\n    flex: 0 0 33.33333%;\n    max-width: 33.33333%; }\n  .col-sm-5 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 41.66667%;\n    flex: 0 0 41.66667%;\n    max-width: 41.66667%; }\n  .col-sm-6 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 50%;\n    flex: 0 0 50%;\n    max-width: 50%; }\n  .col-sm-7 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 58.33333%;\n    flex: 0 0 58.33333%;\n    max-width: 58.33333%; }\n  .col-sm-8 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 66.66667%;\n    flex: 0 0 66.66667%;\n    max-width: 66.66667%; }\n  .col-sm-9 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 75%;\n    flex: 0 0 75%;\n    max-width: 75%; }\n  .col-sm-10 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 83.33333%;\n    flex: 0 0 83.33333%;\n    max-width: 83.33333%; }\n  .col-sm-11 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 91.66667%;\n    flex: 0 0 91.66667%;\n    max-width: 91.66667%; }\n  .col-sm-12 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 100%;\n    flex: 0 0 100%;\n    max-width: 100%; }\n  .order-sm-first {\n    -webkit-box-ordinal-group: 0;\n    -ms-flex-order: -1;\n    order: -1; }\n  .order-sm-last {\n    -webkit-box-ordinal-group: 14;\n    -ms-flex-order: 13;\n    order: 13; }\n  .order-sm-0 {\n    -webkit-box-ordinal-group: 1;\n    -ms-flex-order: 0;\n    order: 0; }\n  .order-sm-1 {\n    -webkit-box-ordinal-group: 2;\n    -ms-flex-order: 1;\n    order: 1; }\n  .order-sm-2 {\n    -webkit-box-ordinal-group: 3;\n    -ms-flex-order: 2;\n    order: 2; }\n  .order-sm-3 {\n    -webkit-box-ordinal-group: 4;\n    -ms-flex-order: 3;\n    order: 3; }\n  .order-sm-4 {\n    -webkit-box-ordinal-group: 5;\n    -ms-flex-order: 4;\n    order: 4; }\n  .order-sm-5 {\n    -webkit-box-ordinal-group: 6;\n    -ms-flex-order: 5;\n    order: 5; }\n  .order-sm-6 {\n    -webkit-box-ordinal-group: 7;\n    -ms-flex-order: 6;\n    order: 6; }\n  .order-sm-7 {\n    -webkit-box-ordinal-group: 8;\n    -ms-flex-order: 7;\n    order: 7; }\n  .order-sm-8 {\n    -webkit-box-ordinal-group: 9;\n    -ms-flex-order: 8;\n    order: 8; }\n  .order-sm-9 {\n    -webkit-box-ordinal-group: 10;\n    -ms-flex-order: 9;\n    order: 9; }\n  .order-sm-10 {\n    -webkit-box-ordinal-group: 11;\n    -ms-flex-order: 10;\n    order: 10; }\n  .order-sm-11 {\n    -webkit-box-ordinal-group: 12;\n    -ms-flex-order: 11;\n    order: 11; }\n  .order-sm-12 {\n    -webkit-box-ordinal-group: 13;\n    -ms-flex-order: 12;\n    order: 12; }\n  .offset-sm-0 {\n    margin-left: 0; }\n  .offset-sm-1 {\n    margin-left: 8.33333%; }\n  .offset-sm-2 {\n    margin-left: 16.66667%; }\n  .offset-sm-3 {\n    margin-left: 25%; }\n  .offset-sm-4 {\n    margin-left: 33.33333%; }\n  .offset-sm-5 {\n    margin-left: 41.66667%; }\n  .offset-sm-6 {\n    margin-left: 50%; }\n  .offset-sm-7 {\n    margin-left: 58.33333%; }\n  .offset-sm-8 {\n    margin-left: 66.66667%; }\n  .offset-sm-9 {\n    margin-left: 75%; }\n  .offset-sm-10 {\n    margin-left: 83.33333%; }\n  .offset-sm-11 {\n    margin-left: 91.66667%; } }\n\n@media (min-width: 768px) {\n  .col-md {\n    -ms-flex-preferred-size: 0;\n    flex-basis: 0;\n    -webkit-box-flex: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    max-width: 100%; }\n  .col-md-auto {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 auto;\n    flex: 0 0 auto;\n    width: auto;\n    max-width: none; }\n  .col-md-1 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 8.33333%;\n    flex: 0 0 8.33333%;\n    max-width: 8.33333%; }\n  .col-md-2 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 16.66667%;\n    flex: 0 0 16.66667%;\n    max-width: 16.66667%; }\n  .col-md-3 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 25%;\n    flex: 0 0 25%;\n    max-width: 25%; }\n  .col-md-4 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 33.33333%;\n    flex: 0 0 33.33333%;\n    max-width: 33.33333%; }\n  .col-md-5 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 41.66667%;\n    flex: 0 0 41.66667%;\n    max-width: 41.66667%; }\n  .col-md-6 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 50%;\n    flex: 0 0 50%;\n    max-width: 50%; }\n  .col-md-7 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 58.33333%;\n    flex: 0 0 58.33333%;\n    max-width: 58.33333%; }\n  .col-md-8 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 66.66667%;\n    flex: 0 0 66.66667%;\n    max-width: 66.66667%; }\n  .col-md-9 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 75%;\n    flex: 0 0 75%;\n    max-width: 75%; }\n  .col-md-10 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 83.33333%;\n    flex: 0 0 83.33333%;\n    max-width: 83.33333%; }\n  .col-md-11 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 91.66667%;\n    flex: 0 0 91.66667%;\n    max-width: 91.66667%; }\n  .col-md-12 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 100%;\n    flex: 0 0 100%;\n    max-width: 100%; }\n  .order-md-first {\n    -webkit-box-ordinal-group: 0;\n    -ms-flex-order: -1;\n    order: -1; }\n  .order-md-last {\n    -webkit-box-ordinal-group: 14;\n    -ms-flex-order: 13;\n    order: 13; }\n  .order-md-0 {\n    -webkit-box-ordinal-group: 1;\n    -ms-flex-order: 0;\n    order: 0; }\n  .order-md-1 {\n    -webkit-box-ordinal-group: 2;\n    -ms-flex-order: 1;\n    order: 1; }\n  .order-md-2 {\n    -webkit-box-ordinal-group: 3;\n    -ms-flex-order: 2;\n    order: 2; }\n  .order-md-3 {\n    -webkit-box-ordinal-group: 4;\n    -ms-flex-order: 3;\n    order: 3; }\n  .order-md-4 {\n    -webkit-box-ordinal-group: 5;\n    -ms-flex-order: 4;\n    order: 4; }\n  .order-md-5 {\n    -webkit-box-ordinal-group: 6;\n    -ms-flex-order: 5;\n    order: 5; }\n  .order-md-6 {\n    -webkit-box-ordinal-group: 7;\n    -ms-flex-order: 6;\n    order: 6; }\n  .order-md-7 {\n    -webkit-box-ordinal-group: 8;\n    -ms-flex-order: 7;\n    order: 7; }\n  .order-md-8 {\n    -webkit-box-ordinal-group: 9;\n    -ms-flex-order: 8;\n    order: 8; }\n  .order-md-9 {\n    -webkit-box-ordinal-group: 10;\n    -ms-flex-order: 9;\n    order: 9; }\n  .order-md-10 {\n    -webkit-box-ordinal-group: 11;\n    -ms-flex-order: 10;\n    order: 10; }\n  .order-md-11 {\n    -webkit-box-ordinal-group: 12;\n    -ms-flex-order: 11;\n    order: 11; }\n  .order-md-12 {\n    -webkit-box-ordinal-group: 13;\n    -ms-flex-order: 12;\n    order: 12; }\n  .offset-md-0 {\n    margin-left: 0; }\n  .offset-md-1 {\n    margin-left: 8.33333%; }\n  .offset-md-2 {\n    margin-left: 16.66667%; }\n  .offset-md-3 {\n    margin-left: 25%; }\n  .offset-md-4 {\n    margin-left: 33.33333%; }\n  .offset-md-5 {\n    margin-left: 41.66667%; }\n  .offset-md-6 {\n    margin-left: 50%; }\n  .offset-md-7 {\n    margin-left: 58.33333%; }\n  .offset-md-8 {\n    margin-left: 66.66667%; }\n  .offset-md-9 {\n    margin-left: 75%; }\n  .offset-md-10 {\n    margin-left: 83.33333%; }\n  .offset-md-11 {\n    margin-left: 91.66667%; } }\n\n@media (min-width: 992px) {\n  .col-lg {\n    -ms-flex-preferred-size: 0;\n    flex-basis: 0;\n    -webkit-box-flex: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    max-width: 100%; }\n  .col-lg-auto {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 auto;\n    flex: 0 0 auto;\n    width: auto;\n    max-width: none; }\n  .col-lg-1 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 8.33333%;\n    flex: 0 0 8.33333%;\n    max-width: 8.33333%; }\n  .col-lg-2 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 16.66667%;\n    flex: 0 0 16.66667%;\n    max-width: 16.66667%; }\n  .col-lg-3 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 25%;\n    flex: 0 0 25%;\n    max-width: 25%; }\n  .col-lg-4 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 33.33333%;\n    flex: 0 0 33.33333%;\n    max-width: 33.33333%; }\n  .col-lg-5 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 41.66667%;\n    flex: 0 0 41.66667%;\n    max-width: 41.66667%; }\n  .col-lg-6 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 50%;\n    flex: 0 0 50%;\n    max-width: 50%; }\n  .col-lg-7 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 58.33333%;\n    flex: 0 0 58.33333%;\n    max-width: 58.33333%; }\n  .col-lg-8 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 66.66667%;\n    flex: 0 0 66.66667%;\n    max-width: 66.66667%; }\n  .col-lg-9 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 75%;\n    flex: 0 0 75%;\n    max-width: 75%; }\n  .col-lg-10 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 83.33333%;\n    flex: 0 0 83.33333%;\n    max-width: 83.33333%; }\n  .col-lg-11 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 91.66667%;\n    flex: 0 0 91.66667%;\n    max-width: 91.66667%; }\n  .col-lg-12 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 100%;\n    flex: 0 0 100%;\n    max-width: 100%; }\n  .order-lg-first {\n    -webkit-box-ordinal-group: 0;\n    -ms-flex-order: -1;\n    order: -1; }\n  .order-lg-last {\n    -webkit-box-ordinal-group: 14;\n    -ms-flex-order: 13;\n    order: 13; }\n  .order-lg-0 {\n    -webkit-box-ordinal-group: 1;\n    -ms-flex-order: 0;\n    order: 0; }\n  .order-lg-1 {\n    -webkit-box-ordinal-group: 2;\n    -ms-flex-order: 1;\n    order: 1; }\n  .order-lg-2 {\n    -webkit-box-ordinal-group: 3;\n    -ms-flex-order: 2;\n    order: 2; }\n  .order-lg-3 {\n    -webkit-box-ordinal-group: 4;\n    -ms-flex-order: 3;\n    order: 3; }\n  .order-lg-4 {\n    -webkit-box-ordinal-group: 5;\n    -ms-flex-order: 4;\n    order: 4; }\n  .order-lg-5 {\n    -webkit-box-ordinal-group: 6;\n    -ms-flex-order: 5;\n    order: 5; }\n  .order-lg-6 {\n    -webkit-box-ordinal-group: 7;\n    -ms-flex-order: 6;\n    order: 6; }\n  .order-lg-7 {\n    -webkit-box-ordinal-group: 8;\n    -ms-flex-order: 7;\n    order: 7; }\n  .order-lg-8 {\n    -webkit-box-ordinal-group: 9;\n    -ms-flex-order: 8;\n    order: 8; }\n  .order-lg-9 {\n    -webkit-box-ordinal-group: 10;\n    -ms-flex-order: 9;\n    order: 9; }\n  .order-lg-10 {\n    -webkit-box-ordinal-group: 11;\n    -ms-flex-order: 10;\n    order: 10; }\n  .order-lg-11 {\n    -webkit-box-ordinal-group: 12;\n    -ms-flex-order: 11;\n    order: 11; }\n  .order-lg-12 {\n    -webkit-box-ordinal-group: 13;\n    -ms-flex-order: 12;\n    order: 12; }\n  .offset-lg-0 {\n    margin-left: 0; }\n  .offset-lg-1 {\n    margin-left: 8.33333%; }\n  .offset-lg-2 {\n    margin-left: 16.66667%; }\n  .offset-lg-3 {\n    margin-left: 25%; }\n  .offset-lg-4 {\n    margin-left: 33.33333%; }\n  .offset-lg-5 {\n    margin-left: 41.66667%; }\n  .offset-lg-6 {\n    margin-left: 50%; }\n  .offset-lg-7 {\n    margin-left: 58.33333%; }\n  .offset-lg-8 {\n    margin-left: 66.66667%; }\n  .offset-lg-9 {\n    margin-left: 75%; }\n  .offset-lg-10 {\n    margin-left: 83.33333%; }\n  .offset-lg-11 {\n    margin-left: 91.66667%; } }\n\n@media (min-width: 1200px) {\n  .col-xl {\n    -ms-flex-preferred-size: 0;\n    flex-basis: 0;\n    -webkit-box-flex: 1;\n    -ms-flex-positive: 1;\n    flex-grow: 1;\n    max-width: 100%; }\n  .col-xl-auto {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 auto;\n    flex: 0 0 auto;\n    width: auto;\n    max-width: none; }\n  .col-xl-1 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 8.33333%;\n    flex: 0 0 8.33333%;\n    max-width: 8.33333%; }\n  .col-xl-2 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 16.66667%;\n    flex: 0 0 16.66667%;\n    max-width: 16.66667%; }\n  .col-xl-3 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 25%;\n    flex: 0 0 25%;\n    max-width: 25%; }\n  .col-xl-4 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 33.33333%;\n    flex: 0 0 33.33333%;\n    max-width: 33.33333%; }\n  .col-xl-5 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 41.66667%;\n    flex: 0 0 41.66667%;\n    max-width: 41.66667%; }\n  .col-xl-6 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 50%;\n    flex: 0 0 50%;\n    max-width: 50%; }\n  .col-xl-7 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 58.33333%;\n    flex: 0 0 58.33333%;\n    max-width: 58.33333%; }\n  .col-xl-8 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 66.66667%;\n    flex: 0 0 66.66667%;\n    max-width: 66.66667%; }\n  .col-xl-9 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 75%;\n    flex: 0 0 75%;\n    max-width: 75%; }\n  .col-xl-10 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 83.33333%;\n    flex: 0 0 83.33333%;\n    max-width: 83.33333%; }\n  .col-xl-11 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 91.66667%;\n    flex: 0 0 91.66667%;\n    max-width: 91.66667%; }\n  .col-xl-12 {\n    -webkit-box-flex: 0;\n    -ms-flex: 0 0 100%;\n    flex: 0 0 100%;\n    max-width: 100%; }\n  .order-xl-first {\n    -webkit-box-ordinal-group: 0;\n    -ms-flex-order: -1;\n    order: -1; }\n  .order-xl-last {\n    -webkit-box-ordinal-group: 14;\n    -ms-flex-order: 13;\n    order: 13; }\n  .order-xl-0 {\n    -webkit-box-ordinal-group: 1;\n    -ms-flex-order: 0;\n    order: 0; }\n  .order-xl-1 {\n    -webkit-box-ordinal-group: 2;\n    -ms-flex-order: 1;\n    order: 1; }\n  .order-xl-2 {\n    -webkit-box-ordinal-group: 3;\n    -ms-flex-order: 2;\n    order: 2; }\n  .order-xl-3 {\n    -webkit-box-ordinal-group: 4;\n    -ms-flex-order: 3;\n    order: 3; }\n  .order-xl-4 {\n    -webkit-box-ordinal-group: 5;\n    -ms-flex-order: 4;\n    order: 4; }\n  .order-xl-5 {\n    -webkit-box-ordinal-group: 6;\n    -ms-flex-order: 5;\n    order: 5; }\n  .order-xl-6 {\n    -webkit-box-ordinal-group: 7;\n    -ms-flex-order: 6;\n    order: 6; }\n  .order-xl-7 {\n    -webkit-box-ordinal-group: 8;\n    -ms-flex-order: 7;\n    order: 7; }\n  .order-xl-8 {\n    -webkit-box-ordinal-group: 9;\n    -ms-flex-order: 8;\n    order: 8; }\n  .order-xl-9 {\n    -webkit-box-ordinal-group: 10;\n    -ms-flex-order: 9;\n    order: 9; }\n  .order-xl-10 {\n    -webkit-box-ordinal-group: 11;\n    -ms-flex-order: 10;\n    order: 10; }\n  .order-xl-11 {\n    -webkit-box-ordinal-group: 12;\n    -ms-flex-order: 11;\n    order: 11; }\n  .order-xl-12 {\n    -webkit-box-ordinal-group: 13;\n    -ms-flex-order: 12;\n    order: 12; }\n  .offset-xl-0 {\n    margin-left: 0; }\n  .offset-xl-1 {\n    margin-left: 8.33333%; }\n  .offset-xl-2 {\n    margin-left: 16.66667%; }\n  .offset-xl-3 {\n    margin-left: 25%; }\n  .offset-xl-4 {\n    margin-left: 33.33333%; }\n  .offset-xl-5 {\n    margin-left: 41.66667%; }\n  .offset-xl-6 {\n    margin-left: 50%; }\n  .offset-xl-7 {\n    margin-left: 58.33333%; }\n  .offset-xl-8 {\n    margin-left: 66.66667%; }\n  .offset-xl-9 {\n    margin-left: 75%; }\n  .offset-xl-10 {\n    margin-left: 83.33333%; }\n  .offset-xl-11 {\n    margin-left: 91.66667%; } }\n\n.table {\n  width: 100%;\n  margin-bottom: 1rem;\n  background-color: transparent; }\n  .table th,\n  .table td {\n    padding: 0.75rem;\n    vertical-align: top;\n    border-top: 1px solid #dee2e6; }\n  .table thead th {\n    vertical-align: bottom;\n    border-bottom: 2px solid #dee2e6; }\n  .table tbody + tbody {\n    border-top: 2px solid #dee2e6; }\n  .table .table {\n    background-color: #fff; }\n\n.table-sm th,\n.table-sm td {\n  padding: 0.3rem; }\n\n.table-bordered {\n  border: 1px solid #dee2e6; }\n  .table-bordered th,\n  .table-bordered td {\n    border: 1px solid #dee2e6; }\n  .table-bordered thead th,\n  .table-bordered thead td {\n    border-bottom-width: 2px; }\n\n.table-borderless th,\n.table-borderless td,\n.table-borderless thead th,\n.table-borderless tbody + tbody {\n  border: 0; }\n\n.table-striped tbody tr:nth-of-type(odd) {\n  background-color: rgba(0, 0, 0, 0.05); }\n\n.table-hover tbody tr:hover {\n  background-color: rgba(0, 0, 0, 0.075); }\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n  background-color: #cbf5e9; }\n\n.table-hover .table-primary:hover {\n  background-color: #b6f1e0; }\n  .table-hover .table-primary:hover > td,\n  .table-hover .table-primary:hover > th {\n    background-color: #b6f1e0; }\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n  background-color: #d6d8db; }\n\n.table-hover .table-secondary:hover {\n  background-color: #c8cbcf; }\n  .table-hover .table-secondary:hover > td,\n  .table-hover .table-secondary:hover > th {\n    background-color: #c8cbcf; }\n\n.table-success,\n.table-success > th,\n.table-success > td {\n  background-color: #dfeecc; }\n\n.table-hover .table-success:hover {\n  background-color: #d3e8b9; }\n  .table-hover .table-success:hover > td,\n  .table-hover .table-success:hover > th {\n    background-color: #d3e8b9; }\n\n.table-info,\n.table-info > th,\n.table-info > td {\n  background-color: #bee5eb; }\n\n.table-hover .table-info:hover {\n  background-color: #abdde5; }\n  .table-hover .table-info:hover > td,\n  .table-hover .table-info:hover > th {\n    background-color: #abdde5; }\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n  background-color: #fde4bd; }\n\n.table-hover .table-warning:hover {\n  background-color: #fcdaa4; }\n  .table-hover .table-warning:hover > td,\n  .table-hover .table-warning:hover > th {\n    background-color: #fcdaa4; }\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n  background-color: #fbc8c4; }\n\n.table-hover .table-danger:hover {\n  background-color: #f9b2ac; }\n  .table-hover .table-danger:hover > td,\n  .table-hover .table-danger:hover > th {\n    background-color: #f9b2ac; }\n\n.table-light,\n.table-light > th,\n.table-light > td {\n  background-color: #fdfdfe; }\n\n.table-hover .table-light:hover {\n  background-color: #ececf6; }\n  .table-hover .table-light:hover > td,\n  .table-hover .table-light:hover > th {\n    background-color: #ececf6; }\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n  background-color: #c6c8ca; }\n\n.table-hover .table-dark:hover {\n  background-color: #b9bbbe; }\n  .table-hover .table-dark:hover > td,\n  .table-hover .table-dark:hover > th {\n    background-color: #b9bbbe; }\n\n.table-active,\n.table-active > th,\n.table-active > td {\n  background-color: rgba(0, 0, 0, 0.075); }\n\n.table-hover .table-active:hover {\n  background-color: rgba(0, 0, 0, 0.075); }\n  .table-hover .table-active:hover > td,\n  .table-hover .table-active:hover > th {\n    background-color: rgba(0, 0, 0, 0.075); }\n\n.table .thead-dark th {\n  color: #fff;\n  background-color: #212529;\n  border-color: #32383e; }\n\n.table .thead-light th {\n  color: #495057;\n  background-color: #e9ecef;\n  border-color: #dee2e6; }\n\n.table-dark {\n  color: #fff;\n  background-color: #212529; }\n  .table-dark th,\n  .table-dark td,\n  .table-dark thead th {\n    border-color: #32383e; }\n  .table-dark.table-bordered {\n    border: 0; }\n  .table-dark.table-striped tbody tr:nth-of-type(odd) {\n    background-color: rgba(255, 255, 255, 0.05); }\n  .table-dark.table-hover tbody tr:hover {\n    background-color: rgba(255, 255, 255, 0.075); }\n\n@media (max-width: 575.98px) {\n  .table-responsive-sm {\n    display: block;\n    width: 100%;\n    overflow-x: auto;\n    -webkit-overflow-scrolling: touch;\n    -ms-overflow-style: -ms-autohiding-scrollbar; }\n    .table-responsive-sm > .table-bordered {\n      border: 0; } }\n\n@media (max-width: 767.98px) {\n  .table-responsive-md {\n    display: block;\n    width: 100%;\n    overflow-x: auto;\n    -webkit-overflow-scrolling: touch;\n    -ms-overflow-style: -ms-autohiding-scrollbar; }\n    .table-responsive-md > .table-bordered {\n      border: 0; } }\n\n@media (max-width: 991.98px) {\n  .table-responsive-lg {\n    display: block;\n    width: 100%;\n    overflow-x: auto;\n    -webkit-overflow-scrolling: touch;\n    -ms-overflow-style: -ms-autohiding-scrollbar; }\n    .table-responsive-lg > .table-bordered {\n      border: 0; } }\n\n@media (max-width: 1199.98px) {\n  .table-responsive-xl {\n    display: block;\n    width: 100%;\n    overflow-x: auto;\n    -webkit-overflow-scrolling: touch;\n    -ms-overflow-style: -ms-autohiding-scrollbar; }\n    .table-responsive-xl > .table-bordered {\n      border: 0; } }\n\n.table-responsive {\n  display: block;\n  width: 100%;\n  overflow-x: auto;\n  -webkit-overflow-scrolling: touch;\n  -ms-overflow-style: -ms-autohiding-scrollbar; }\n  .table-responsive > .table-bordered {\n    border: 0; }\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: calc(2.25rem + 2px);\n  padding: 0.375rem 0.75rem;\n  font-size: 1rem;\n  line-height: 1.5;\n  color: #495057;\n  background-color: #fff;\n  background-clip: padding-box;\n  border: 1px solid #ced4da;\n  border-radius: 0.25rem;\n  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }\n  @media screen and (prefers-reduced-motion: reduce) {\n    .form-control {\n      -webkit-transition: none;\n      -o-transition: none;\n      transition: none; } }\n  .form-control::-ms-expand {\n    background-color: transparent;\n    border: 0; }\n  .form-control:focus {\n    color: #495057;\n    background-color: #fff;\n    border-color: #b2f1de;\n    outline: 0;\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.25);\n    box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.25); }\n  .form-control::-webkit-input-placeholder {\n    color: #6c757d;\n    opacity: 1; }\n  .form-control:-ms-input-placeholder {\n    color: #6c757d;\n    opacity: 1; }\n  .form-control::-ms-input-placeholder {\n    color: #6c757d;\n    opacity: 1; }\n  .form-control::placeholder {\n    color: #6c757d;\n    opacity: 1; }\n  .form-control:disabled, .form-control[readonly] {\n    background-color: #e9ecef;\n    opacity: 1; }\n\nselect.form-control:focus::-ms-value {\n  color: #495057;\n  background-color: #fff; }\n\n.form-control-file,\n.form-control-range {\n  display: block;\n  width: 100%; }\n\n.col-form-label {\n  padding-top: calc(0.375rem + 1px);\n  padding-bottom: calc(0.375rem + 1px);\n  margin-bottom: 0;\n  font-size: inherit;\n  line-height: 1.5; }\n\n.col-form-label-lg {\n  padding-top: calc(0.5rem + 1px);\n  padding-bottom: calc(0.5rem + 1px);\n  font-size: 1.25rem;\n  line-height: 1.5; }\n\n.col-form-label-sm {\n  padding-top: calc(0.25rem + 1px);\n  padding-bottom: calc(0.25rem + 1px);\n  font-size: 0.875rem;\n  line-height: 1.5; }\n\n.form-control-plaintext {\n  display: block;\n  width: 100%;\n  padding-top: 0.375rem;\n  padding-bottom: 0.375rem;\n  margin-bottom: 0;\n  line-height: 1.5;\n  color: #212529;\n  background-color: transparent;\n  border: solid transparent;\n  border-width: 1px 0; }\n  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n    padding-right: 0;\n    padding-left: 0; }\n\n.form-control-sm {\n  height: calc(1.8125rem + 2px);\n  padding: 0.25rem 0.5rem;\n  font-size: 0.875rem;\n  line-height: 1.5;\n  border-radius: 0.2rem; }\n\n.form-control-lg {\n  height: calc(2.875rem + 2px);\n  padding: 0.5rem 1rem;\n  font-size: 1.25rem;\n  line-height: 1.5;\n  border-radius: 0.3rem; }\n\nselect.form-control[size], select.form-control[multiple] {\n  height: auto; }\n\ntextarea.form-control {\n  height: auto; }\n\n.form-group {\n  margin-bottom: 1rem; }\n\n.form-text {\n  display: block;\n  margin-top: 0.25rem; }\n\n.form-row {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  margin-right: -5px;\n  margin-left: -5px; }\n  .form-row > .col,\n  .form-row > [class*=\"col-\"] {\n    padding-right: 5px;\n    padding-left: 5px; }\n\n.form-check {\n  position: relative;\n  display: block;\n  padding-left: 1.25rem; }\n\n.form-check-input {\n  position: absolute;\n  margin-top: 0.3rem;\n  margin-left: -1.25rem; }\n  .form-check-input:disabled ~ .form-check-label {\n    color: #6c757d; }\n\n.form-check-label {\n  margin-bottom: 0; }\n\n.form-check-inline {\n  display: -webkit-inline-box;\n  display: -ms-inline-flexbox;\n  display: inline-flex;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center;\n  padding-left: 0;\n  margin-right: 0.75rem; }\n  .form-check-inline .form-check-input {\n    position: static;\n    margin-top: 0;\n    margin-right: 0.3125rem;\n    margin-left: 0; }\n\n.valid-feedback {\n  display: none;\n  width: 100%;\n  margin-top: 0.25rem;\n  font-size: 80%;\n  color: #8bc34a; }\n\n.valid-tooltip {\n  position: absolute;\n  top: 100%;\n  z-index: 5;\n  display: none;\n  max-width: 100%;\n  padding: 0.25rem 0.5rem;\n  margin-top: .1rem;\n  font-size: 0.875rem;\n  line-height: 1.5;\n  color: #212529;\n  background-color: rgba(139, 195, 74, 0.9);\n  border-radius: 0.25rem; }\n\n.was-validated .form-control:valid, .form-control.is-valid, .was-validated\n.custom-select:valid,\n.custom-select.is-valid {\n  border-color: #8bc34a; }\n  .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated\n  .custom-select:valid:focus,\n  .custom-select.is-valid:focus {\n    border-color: #8bc34a;\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.25);\n    box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.25); }\n  .was-validated .form-control:valid ~ .valid-feedback,\n  .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,\n  .form-control.is-valid ~ .valid-tooltip, .was-validated\n  .custom-select:valid ~ .valid-feedback,\n  .was-validated\n  .custom-select:valid ~ .valid-tooltip,\n  .custom-select.is-valid ~ .valid-feedback,\n  .custom-select.is-valid ~ .valid-tooltip {\n    display: block; }\n\n.was-validated .form-control-file:valid ~ .valid-feedback,\n.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,\n.form-control-file.is-valid ~ .valid-tooltip {\n  display: block; }\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n  color: #8bc34a; }\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n  display: block; }\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n  color: #8bc34a; }\n  .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n    background-color: #c8e3aa; }\n\n.was-validated .custom-control-input:valid ~ .valid-feedback,\n.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,\n.custom-control-input.is-valid ~ .valid-tooltip {\n  display: block; }\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n  background-color: #a4d070; }\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(139, 195, 74, 0.25);\n  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(139, 195, 74, 0.25); }\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n  border-color: #8bc34a; }\n  .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {\n    border-color: inherit; }\n\n.was-validated .custom-file-input:valid ~ .valid-feedback,\n.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,\n.custom-file-input.is-valid ~ .valid-tooltip {\n  display: block; }\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n  -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.25);\n  box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.25); }\n\n.invalid-feedback {\n  display: none;\n  width: 100%;\n  margin-top: 0.25rem;\n  font-size: 80%;\n  color: #f23a2e; }\n\n.invalid-tooltip {\n  position: absolute;\n  top: 100%;\n  z-index: 5;\n  display: none;\n  max-width: 100%;\n  padding: 0.25rem 0.5rem;\n  margin-top: .1rem;\n  font-size: 0.875rem;\n  line-height: 1.5;\n  color: #fff;\n  background-color: rgba(242, 58, 46, 0.9);\n  border-radius: 0.25rem; }\n\n.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated\n.custom-select:invalid,\n.custom-select.is-invalid {\n  border-color: #f23a2e; }\n  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated\n  .custom-select:invalid:focus,\n  .custom-select.is-invalid:focus {\n    border-color: #f23a2e;\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.25);\n    box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.25); }\n  .was-validated .form-control:invalid ~ .invalid-feedback,\n  .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,\n  .form-control.is-invalid ~ .invalid-tooltip, .was-validated\n  .custom-select:invalid ~ .invalid-feedback,\n  .was-validated\n  .custom-select:invalid ~ .invalid-tooltip,\n  .custom-select.is-invalid ~ .invalid-feedback,\n  .custom-select.is-invalid ~ .invalid-tooltip {\n    display: block; }\n\n.was-validated .form-control-file:invalid ~ .invalid-feedback,\n.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,\n.form-control-file.is-invalid ~ .invalid-tooltip {\n  display: block; }\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n  color: #f23a2e; }\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n  display: block; }\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n  color: #f23a2e; }\n  .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n    background-color: #f9aba6; }\n\n.was-validated .custom-control-input:invalid ~ .invalid-feedback,\n.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,\n.custom-control-input.is-invalid ~ .invalid-tooltip {\n  display: block; }\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n  background-color: #f5675e; }\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(242, 58, 46, 0.25);\n  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(242, 58, 46, 0.25); }\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n  border-color: #f23a2e; }\n  .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {\n    border-color: inherit; }\n\n.was-validated .custom-file-input:invalid ~ .invalid-feedback,\n.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,\n.custom-file-input.is-invalid ~ .invalid-tooltip {\n  display: block; }\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n  -webkit-box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.25);\n  box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.25); }\n\n.form-inline {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: horizontal;\n  -webkit-box-direction: normal;\n  -ms-flex-flow: row wrap;\n  flex-flow: row wrap;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center; }\n  .form-inline .form-check {\n    width: 100%; }\n  @media (min-width: 576px) {\n    .form-inline label {\n      display: -webkit-box;\n      display: -ms-flexbox;\n      display: flex;\n      -webkit-box-align: center;\n      -ms-flex-align: center;\n      align-items: center;\n      -webkit-box-pack: center;\n      -ms-flex-pack: center;\n      justify-content: center;\n      margin-bottom: 0; }\n    .form-inline .form-group {\n      display: -webkit-box;\n      display: -ms-flexbox;\n      display: flex;\n      -webkit-box-flex: 0;\n      -ms-flex: 0 0 auto;\n      flex: 0 0 auto;\n      -webkit-box-orient: horizontal;\n      -webkit-box-direction: normal;\n      -ms-flex-flow: row wrap;\n      flex-flow: row wrap;\n      -webkit-box-align: center;\n      -ms-flex-align: center;\n      align-items: center;\n      margin-bottom: 0; }\n    .form-inline .form-control {\n      display: inline-block;\n      width: auto;\n      vertical-align: middle; }\n    .form-inline .form-control-plaintext {\n      display: inline-block; }\n    .form-inline .input-group,\n    .form-inline .custom-select {\n      width: auto; }\n    .form-inline .form-check {\n      display: -webkit-box;\n      display: -ms-flexbox;\n      display: flex;\n      -webkit-box-align: center;\n      -ms-flex-align: center;\n      align-items: center;\n      -webkit-box-pack: center;\n      -ms-flex-pack: center;\n      justify-content: center;\n      width: auto;\n      padding-left: 0; }\n    .form-inline .form-check-input {\n      position: relative;\n      margin-top: 0;\n      margin-right: 0.25rem;\n      margin-left: 0; }\n    .form-inline .custom-control {\n      -webkit-box-align: center;\n      -ms-flex-align: center;\n      align-items: center;\n      -webkit-box-pack: center;\n      -ms-flex-pack: center;\n      justify-content: center; }\n    .form-inline .custom-control-label {\n      margin-bottom: 0; } }\n\n.btn {\n  display: inline-block;\n  font-weight: 400;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: middle;\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n  border: 1px solid transparent;\n  padding: 0.375rem 0.75rem;\n  font-size: 1rem;\n  line-height: 1.5;\n  border-radius: 0.25rem;\n  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }\n  @media screen and (prefers-reduced-motion: reduce) {\n    .btn {\n      -webkit-transition: none;\n      -o-transition: none;\n      transition: none; } }\n  .btn:hover, .btn:focus {\n    text-decoration: none; }\n  .btn:focus, .btn.focus {\n    outline: 0;\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.25);\n    box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.25); }\n  .btn.disabled, .btn:disabled {\n    opacity: 0.65; }\n  .btn:not(:disabled):not(.disabled) {\n    cursor: pointer; }\n\na.btn.disabled,\nfieldset:disabled a.btn {\n  pointer-events: none; }\n\n.btn-primary {\n  color: #212529;\n  background-color: #46ddb0;\n  border-color: #46ddb0; }\n  .btn-primary:hover {\n    color: #212529;\n    background-color: #27d6a2;\n    border-color: #25cb99; }\n  .btn-primary:focus, .btn-primary.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.5); }\n  .btn-primary.disabled, .btn-primary:disabled {\n    color: #212529;\n    background-color: #46ddb0;\n    border-color: #46ddb0; }\n  .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,\n  .show > .btn-primary.dropdown-toggle {\n    color: #fff;\n    background-color: #25cb99;\n    border-color: #23c091; }\n    .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-primary.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.5); }\n\n.btn-secondary {\n  color: #fff;\n  background-color: #6c757d;\n  border-color: #6c757d; }\n  .btn-secondary:hover {\n    color: #fff;\n    background-color: #5a6268;\n    border-color: #545b62; }\n  .btn-secondary:focus, .btn-secondary.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }\n  .btn-secondary.disabled, .btn-secondary:disabled {\n    color: #fff;\n    background-color: #6c757d;\n    border-color: #6c757d; }\n  .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,\n  .show > .btn-secondary.dropdown-toggle {\n    color: #fff;\n    background-color: #545b62;\n    border-color: #4e555b; }\n    .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-secondary.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }\n\n.btn-success {\n  color: #212529;\n  background-color: #8bc34a;\n  border-color: #8bc34a; }\n  .btn-success:hover {\n    color: #fff;\n    background-color: #78ad39;\n    border-color: #71a436; }\n  .btn-success:focus, .btn-success.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.5); }\n  .btn-success.disabled, .btn-success:disabled {\n    color: #212529;\n    background-color: #8bc34a;\n    border-color: #8bc34a; }\n  .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n  .show > .btn-success.dropdown-toggle {\n    color: #fff;\n    background-color: #71a436;\n    border-color: #6a9a33; }\n    .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-success.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.5); }\n\n.btn-info {\n  color: #fff;\n  background-color: #17a2b8;\n  border-color: #17a2b8; }\n  .btn-info:hover {\n    color: #fff;\n    background-color: #138496;\n    border-color: #117a8b; }\n  .btn-info:focus, .btn-info.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }\n  .btn-info.disabled, .btn-info:disabled {\n    color: #fff;\n    background-color: #17a2b8;\n    border-color: #17a2b8; }\n  .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,\n  .show > .btn-info.dropdown-toggle {\n    color: #fff;\n    background-color: #117a8b;\n    border-color: #10707f; }\n    .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-info.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }\n\n.btn-warning {\n  color: #212529;\n  background-color: #f89d13;\n  border-color: #f89d13; }\n  .btn-warning:hover {\n    color: #fff;\n    background-color: #de8807;\n    border-color: #d28106; }\n  .btn-warning:focus, .btn-warning.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 157, 19, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(248, 157, 19, 0.5); }\n  .btn-warning.disabled, .btn-warning:disabled {\n    color: #212529;\n    background-color: #f89d13;\n    border-color: #f89d13; }\n  .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n  .show > .btn-warning.dropdown-toggle {\n    color: #fff;\n    background-color: #d28106;\n    border-color: #c57906; }\n    .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-warning.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 157, 19, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(248, 157, 19, 0.5); }\n\n.btn-danger {\n  color: #fff;\n  background-color: #f23a2e;\n  border-color: #f23a2e; }\n  .btn-danger:hover {\n    color: #fff;\n    background-color: #eb1c0f;\n    border-color: #df1b0e; }\n  .btn-danger:focus, .btn-danger.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.5); }\n  .btn-danger.disabled, .btn-danger:disabled {\n    color: #fff;\n    background-color: #f23a2e;\n    border-color: #f23a2e; }\n  .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n  .show > .btn-danger.dropdown-toggle {\n    color: #fff;\n    background-color: #df1b0e;\n    border-color: #d3190d; }\n    .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-danger.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.5); }\n\n.btn-light {\n  color: #212529;\n  background-color: #f8f9fa;\n  border-color: #f8f9fa; }\n  .btn-light:hover {\n    color: #212529;\n    background-color: #e2e6ea;\n    border-color: #dae0e5; }\n  .btn-light:focus, .btn-light.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }\n  .btn-light.disabled, .btn-light:disabled {\n    color: #212529;\n    background-color: #f8f9fa;\n    border-color: #f8f9fa; }\n  .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n  .show > .btn-light.dropdown-toggle {\n    color: #212529;\n    background-color: #dae0e5;\n    border-color: #d3d9df; }\n    .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-light.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }\n\n.btn-dark {\n  color: #fff;\n  background-color: #343a40;\n  border-color: #343a40; }\n  .btn-dark:hover {\n    color: #fff;\n    background-color: #23272b;\n    border-color: #1d2124; }\n  .btn-dark:focus, .btn-dark.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }\n  .btn-dark.disabled, .btn-dark:disabled {\n    color: #fff;\n    background-color: #343a40;\n    border-color: #343a40; }\n  .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n  .show > .btn-dark.dropdown-toggle {\n    color: #fff;\n    background-color: #1d2124;\n    border-color: #171a1d; }\n    .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-dark.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }\n\n.btn-outline-primary {\n  color: #46ddb0;\n  background-color: transparent;\n  background-image: none;\n  border-color: #46ddb0; }\n  .btn-outline-primary:hover {\n    color: #212529;\n    background-color: #46ddb0;\n    border-color: #46ddb0; }\n  .btn-outline-primary:focus, .btn-outline-primary.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.5); }\n  .btn-outline-primary.disabled, .btn-outline-primary:disabled {\n    color: #46ddb0;\n    background-color: transparent; }\n  .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,\n  .show > .btn-outline-primary.dropdown-toggle {\n    color: #212529;\n    background-color: #46ddb0;\n    border-color: #46ddb0; }\n    .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-outline-primary.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.5); }\n\n.btn-outline-secondary {\n  color: #6c757d;\n  background-color: transparent;\n  background-image: none;\n  border-color: #6c757d; }\n  .btn-outline-secondary:hover {\n    color: #fff;\n    background-color: #6c757d;\n    border-color: #6c757d; }\n  .btn-outline-secondary:focus, .btn-outline-secondary.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }\n  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n    color: #6c757d;\n    background-color: transparent; }\n  .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n  .show > .btn-outline-secondary.dropdown-toggle {\n    color: #fff;\n    background-color: #6c757d;\n    border-color: #6c757d; }\n    .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-outline-secondary.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }\n\n.btn-outline-success {\n  color: #8bc34a;\n  background-color: transparent;\n  background-image: none;\n  border-color: #8bc34a; }\n  .btn-outline-success:hover {\n    color: #212529;\n    background-color: #8bc34a;\n    border-color: #8bc34a; }\n  .btn-outline-success:focus, .btn-outline-success.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.5); }\n  .btn-outline-success.disabled, .btn-outline-success:disabled {\n    color: #8bc34a;\n    background-color: transparent; }\n  .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n  .show > .btn-outline-success.dropdown-toggle {\n    color: #212529;\n    background-color: #8bc34a;\n    border-color: #8bc34a; }\n    .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-outline-success.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(139, 195, 74, 0.5); }\n\n.btn-outline-info {\n  color: #17a2b8;\n  background-color: transparent;\n  background-image: none;\n  border-color: #17a2b8; }\n  .btn-outline-info:hover {\n    color: #fff;\n    background-color: #17a2b8;\n    border-color: #17a2b8; }\n  .btn-outline-info:focus, .btn-outline-info.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }\n  .btn-outline-info.disabled, .btn-outline-info:disabled {\n    color: #17a2b8;\n    background-color: transparent; }\n  .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n  .show > .btn-outline-info.dropdown-toggle {\n    color: #fff;\n    background-color: #17a2b8;\n    border-color: #17a2b8; }\n    .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-outline-info.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }\n\n.btn-outline-warning {\n  color: #f89d13;\n  background-color: transparent;\n  background-image: none;\n  border-color: #f89d13; }\n  .btn-outline-warning:hover {\n    color: #212529;\n    background-color: #f89d13;\n    border-color: #f89d13; }\n  .btn-outline-warning:focus, .btn-outline-warning.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 157, 19, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(248, 157, 19, 0.5); }\n  .btn-outline-warning.disabled, .btn-outline-warning:disabled {\n    color: #f89d13;\n    background-color: transparent; }\n  .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n  .show > .btn-outline-warning.dropdown-toggle {\n    color: #212529;\n    background-color: #f89d13;\n    border-color: #f89d13; }\n    .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-outline-warning.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 157, 19, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(248, 157, 19, 0.5); }\n\n.btn-outline-danger {\n  color: #f23a2e;\n  background-color: transparent;\n  background-image: none;\n  border-color: #f23a2e; }\n  .btn-outline-danger:hover {\n    color: #fff;\n    background-color: #f23a2e;\n    border-color: #f23a2e; }\n  .btn-outline-danger:focus, .btn-outline-danger.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.5); }\n  .btn-outline-danger.disabled, .btn-outline-danger:disabled {\n    color: #f23a2e;\n    background-color: transparent; }\n  .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n  .show > .btn-outline-danger.dropdown-toggle {\n    color: #fff;\n    background-color: #f23a2e;\n    border-color: #f23a2e; }\n    .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-outline-danger.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(242, 58, 46, 0.5); }\n\n.btn-outline-light {\n  color: #f8f9fa;\n  background-color: transparent;\n  background-image: none;\n  border-color: #f8f9fa; }\n  .btn-outline-light:hover {\n    color: #212529;\n    background-color: #f8f9fa;\n    border-color: #f8f9fa; }\n  .btn-outline-light:focus, .btn-outline-light.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }\n  .btn-outline-light.disabled, .btn-outline-light:disabled {\n    color: #f8f9fa;\n    background-color: transparent; }\n  .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n  .show > .btn-outline-light.dropdown-toggle {\n    color: #212529;\n    background-color: #f8f9fa;\n    border-color: #f8f9fa; }\n    .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-outline-light.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }\n\n.btn-outline-dark {\n  color: #343a40;\n  background-color: transparent;\n  background-image: none;\n  border-color: #343a40; }\n  .btn-outline-dark:hover {\n    color: #fff;\n    background-color: #343a40;\n    border-color: #343a40; }\n  .btn-outline-dark:focus, .btn-outline-dark.focus {\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }\n  .btn-outline-dark.disabled, .btn-outline-dark:disabled {\n    color: #343a40;\n    background-color: transparent; }\n  .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n  .show > .btn-outline-dark.dropdown-toggle {\n    color: #fff;\n    background-color: #343a40;\n    border-color: #343a40; }\n    .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n    .show > .btn-outline-dark.dropdown-toggle:focus {\n      -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);\n      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }\n\n.btn-link {\n  font-weight: 400;\n  color: #46ddb0;\n  background-color: transparent; }\n  .btn-link:hover {\n    color: #21b589;\n    text-decoration: underline;\n    background-color: transparent;\n    border-color: transparent; }\n  .btn-link:focus, .btn-link.focus {\n    text-decoration: underline;\n    border-color: transparent;\n    -webkit-box-shadow: none;\n    box-shadow: none; }\n  .btn-link:disabled, .btn-link.disabled {\n    color: #6c757d;\n    pointer-events: none; }\n\n.btn-lg, .btn-group-lg > .btn {\n  padding: 0.5rem 1rem;\n  font-size: 1.25rem;\n  line-height: 1.5;\n  border-radius: 0.3rem; }\n\n.btn-sm, .btn-group-sm > .btn {\n  padding: 0.25rem 0.5rem;\n  font-size: 0.875rem;\n  line-height: 1.5;\n  border-radius: 0.2rem; }\n\n.btn-block {\n  display: block;\n  width: 100%; }\n  .btn-block + .btn-block {\n    margin-top: 0.5rem; }\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n  width: 100%; }\n\n.fade {\n  -webkit-transition: opacity 0.15s linear;\n  -o-transition: opacity 0.15s linear;\n  transition: opacity 0.15s linear; }\n  @media screen and (prefers-reduced-motion: reduce) {\n    .fade {\n      -webkit-transition: none;\n      -o-transition: none;\n      transition: none; } }\n  .fade:not(.show) {\n    opacity: 0; }\n\n.collapse:not(.show) {\n  display: none; }\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  -webkit-transition: height 0.35s ease;\n  -o-transition: height 0.35s ease;\n  transition: height 0.35s ease; }\n  @media screen and (prefers-reduced-motion: reduce) {\n    .collapsing {\n      -webkit-transition: none;\n      -o-transition: none;\n      transition: none; } }\n\n.dropup,\n.dropright,\n.dropdown,\n.dropleft {\n  position: relative; }\n\n.dropdown-toggle::after {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 0.255em;\n  vertical-align: 0.255em;\n  content: \"\";\n  border-top: 0.3em solid;\n  border-right: 0.3em solid transparent;\n  border-bottom: 0;\n  border-left: 0.3em solid transparent; }\n\n.dropdown-toggle:empty::after {\n  margin-left: 0; }\n\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: 1000;\n  display: none;\n  float: left;\n  min-width: 10rem;\n  padding: 0.5rem 0;\n  margin: 0.125rem 0 0;\n  font-size: 1rem;\n  color: #212529;\n  text-align: left;\n  list-style: none;\n  background-color: #fff;\n  background-clip: padding-box;\n  border: 1px solid rgba(0, 0, 0, 0.15);\n  border-radius: 0.25rem; }\n\n.dropdown-menu-right {\n  right: 0;\n  left: auto; }\n\n.dropup .dropdown-menu {\n  top: auto;\n  bottom: 100%;\n  margin-top: 0;\n  margin-bottom: 0.125rem; }\n\n.dropup .dropdown-toggle::after {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 0.255em;\n  vertical-align: 0.255em;\n  content: \"\";\n  border-top: 0;\n  border-right: 0.3em solid transparent;\n  border-bottom: 0.3em solid;\n  border-left: 0.3em solid transparent; }\n\n.dropup .dropdown-toggle:empty::after {\n  margin-left: 0; }\n\n.dropright .dropdown-menu {\n  top: 0;\n  right: auto;\n  left: 100%;\n  margin-top: 0;\n  margin-left: 0.125rem; }\n\n.dropright .dropdown-toggle::after {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 0.255em;\n  vertical-align: 0.255em;\n  content: \"\";\n  border-top: 0.3em solid transparent;\n  border-right: 0;\n  border-bottom: 0.3em solid transparent;\n  border-left: 0.3em solid; }\n\n.dropright .dropdown-toggle:empty::after {\n  margin-left: 0; }\n\n.dropright .dropdown-toggle::after {\n  vertical-align: 0; }\n\n.dropleft .dropdown-menu {\n  top: 0;\n  right: 100%;\n  left: auto;\n  margin-top: 0;\n  margin-right: 0.125rem; }\n\n.dropleft .dropdown-toggle::after {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 0.255em;\n  vertical-align: 0.255em;\n  content: \"\"; }\n\n.dropleft .dropdown-toggle::after {\n  display: none; }\n\n.dropleft .dropdown-toggle::before {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-right: 0.255em;\n  vertical-align: 0.255em;\n  content: \"\";\n  border-top: 0.3em solid transparent;\n  border-right: 0.3em solid;\n  border-bottom: 0.3em solid transparent; }\n\n.dropleft .dropdown-toggle:empty::after {\n  margin-left: 0; }\n\n.dropleft .dropdown-toggle::before {\n  vertical-align: 0; }\n\n.dropdown-menu[x-placement^=\"top\"], .dropdown-menu[x-placement^=\"right\"], .dropdown-menu[x-placement^=\"bottom\"], .dropdown-menu[x-placement^=\"left\"] {\n  right: auto;\n  bottom: auto; }\n\n.dropdown-divider {\n  height: 0;\n  margin: 0.5rem 0;\n  overflow: hidden;\n  border-top: 1px solid #e9ecef; }\n\n.dropdown-item {\n  display: block;\n  width: 100%;\n  padding: 0.25rem 1.5rem;\n  clear: both;\n  font-weight: 400;\n  color: #212529;\n  text-align: inherit;\n  white-space: nowrap;\n  background-color: transparent;\n  border: 0; }\n  .dropdown-item:hover, .dropdown-item:focus {\n    color: #16181b;\n    text-decoration: none;\n    background-color: #f8f9fa; }\n  .dropdown-item.active, .dropdown-item:active {\n    color: #fff;\n    text-decoration: none;\n    background-color: #46ddb0; }\n  .dropdown-item.disabled, .dropdown-item:disabled {\n    color: #6c757d;\n    background-color: transparent; }\n\n.dropdown-menu.show {\n  display: block; }\n\n.dropdown-header {\n  display: block;\n  padding: 0.5rem 1.5rem;\n  margin-bottom: 0;\n  font-size: 0.875rem;\n  color: #6c757d;\n  white-space: nowrap; }\n\n.dropdown-item-text {\n  display: block;\n  padding: 0.25rem 1.5rem;\n  color: #212529; }\n\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: -webkit-inline-box;\n  display: -ms-inline-flexbox;\n  display: inline-flex;\n  vertical-align: middle; }\n  .btn-group > .btn,\n  .btn-group-vertical > .btn {\n    position: relative;\n    -webkit-box-flex: 0;\n    -ms-flex: 0 1 auto;\n    flex: 0 1 auto; }\n    .btn-group > .btn:hover,\n    .btn-group-vertical > .btn:hover {\n      z-index: 1; }\n    .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n    .btn-group-vertical > .btn:focus,\n    .btn-group-vertical > .btn:active,\n    .btn-group-vertical > .btn.active {\n      z-index: 1; }\n  .btn-group .btn + .btn,\n  .btn-group .btn + .btn-group,\n  .btn-group .btn-group + .btn,\n  .btn-group .btn-group + .btn-group,\n  .btn-group-vertical .btn + .btn,\n  .btn-group-vertical .btn + .btn-group,\n  .btn-group-vertical .btn-group + .btn,\n  .btn-group-vertical .btn-group + .btn-group {\n    margin-left: -1px; }\n\n.btn-toolbar {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  -webkit-box-pack: start;\n  -ms-flex-pack: start;\n  justify-content: flex-start; }\n  .btn-toolbar .input-group {\n    width: auto; }\n\n.btn-group > .btn:first-child {\n  margin-left: 0; }\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0; }\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0; }\n\n.dropdown-toggle-split {\n  padding-right: 0.5625rem;\n  padding-left: 0.5625rem; }\n  .dropdown-toggle-split::after,\n  .dropup .dropdown-toggle-split::after,\n  .dropright .dropdown-toggle-split::after {\n    margin-left: 0; }\n  .dropleft .dropdown-toggle-split::before {\n    margin-right: 0; }\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n  padding-right: 0.375rem;\n  padding-left: 0.375rem; }\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n  padding-right: 0.75rem;\n  padding-left: 0.75rem; }\n\n.btn-group-vertical {\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n  -ms-flex-direction: column;\n  flex-direction: column;\n  -webkit-box-align: start;\n  -ms-flex-align: start;\n  align-items: flex-start;\n  -webkit-box-pack: center;\n  -ms-flex-pack: center;\n  justify-content: center; }\n  .btn-group-vertical .btn,\n  .btn-group-vertical .btn-group {\n    width: 100%; }\n  .btn-group-vertical > .btn + .btn,\n  .btn-group-vertical > .btn + .btn-group,\n  .btn-group-vertical > .btn-group + .btn,\n  .btn-group-vertical > .btn-group + .btn-group {\n    margin-top: -1px;\n    margin-left: 0; }\n  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n  .btn-group-vertical > .btn-group:not(:last-child) > .btn {\n    border-bottom-right-radius: 0;\n    border-bottom-left-radius: 0; }\n  .btn-group-vertical > .btn:not(:first-child),\n  .btn-group-vertical > .btn-group:not(:first-child) > .btn {\n    border-top-left-radius: 0;\n    border-top-right-radius: 0; }\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n  margin-bottom: 0; }\n  .btn-group-toggle > .btn input[type=\"radio\"],\n  .btn-group-toggle > .btn input[type=\"checkbox\"],\n  .btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n  .btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n    position: absolute;\n    clip: rect(0, 0, 0, 0);\n    pointer-events: none; }\n\n.input-group {\n  position: relative;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  -webkit-box-align: stretch;\n  -ms-flex-align: stretch;\n  align-items: stretch;\n  width: 100%; }\n  .input-group > .form-control,\n  .input-group > .custom-select,\n  .input-group > .custom-file {\n    position: relative;\n    -webkit-box-flex: 1;\n    -ms-flex: 1 1 auto;\n    flex: 1 1 auto;\n    width: 1%;\n    margin-bottom: 0; }\n    .input-group > .form-control + .form-control,\n    .input-group > .form-control + .custom-select,\n    .input-group > .form-control + .custom-file,\n    .input-group > .custom-select + .form-control,\n    .input-group > .custom-select + .custom-select,\n    .input-group > .custom-select + .custom-file,\n    .input-group > .custom-file + .form-control,\n    .input-group > .custom-file + .custom-select,\n    .input-group > .custom-file + .custom-file {\n      margin-left: -1px; }\n  .input-group > .form-control:focus,\n  .input-group > .custom-select:focus,\n  .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {\n    z-index: 3; }\n  .input-group > .custom-file .custom-file-input:focus {\n    z-index: 4; }\n  .input-group > .form-control:not(:last-child),\n  .input-group > .custom-select:not(:last-child) {\n    border-top-right-radius: 0;\n    border-bottom-right-radius: 0; }\n  .input-group > .form-control:not(:first-child),\n  .input-group > .custom-select:not(:first-child) {\n    border-top-left-radius: 0;\n    border-bottom-left-radius: 0; }\n  .input-group > .custom-file {\n    display: -webkit-box;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-box-align: center;\n    -ms-flex-align: center;\n    align-items: center; }\n    .input-group > .custom-file:not(:last-child) .custom-file-label,\n    .input-group > .custom-file:not(:last-child) .custom-file-label::after {\n      border-top-right-radius: 0;\n      border-bottom-right-radius: 0; }\n    .input-group > .custom-file:not(:first-child) .custom-file-label {\n      border-top-left-radius: 0;\n      border-bottom-left-radius: 0; }\n\n.input-group-prepend,\n.input-group-append {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex; }\n  .input-group-prepend .btn,\n  .input-group-append .btn {\n    position: relative;\n    z-index: 2; }\n  .input-group-prepend .btn + .btn,\n  .input-group-prepend .btn + .input-group-text,\n  .input-group-prepend .input-group-text + .input-group-text,\n  .input-group-prepend .input-group-text + .btn,\n  .input-group-append .btn + .btn,\n  .input-group-append .btn + .input-group-text,\n  .input-group-append .input-group-text + .input-group-text,\n  .input-group-append .input-group-text + .btn {\n    margin-left: -1px; }\n\n.input-group-prepend {\n  margin-right: -1px; }\n\n.input-group-append {\n  margin-left: -1px; }\n\n.input-group-text {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center;\n  padding: 0.375rem 0.75rem;\n  margin-bottom: 0;\n  font-size: 1rem;\n  font-weight: 400;\n  line-height: 1.5;\n  color: #495057;\n  text-align: center;\n  white-space: nowrap;\n  background-color: #e9ecef;\n  border: 1px solid #ced4da;\n  border-radius: 0.25rem; }\n  .input-group-text input[type=\"radio\"],\n  .input-group-text input[type=\"checkbox\"] {\n    margin-top: 0; }\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n  height: calc(2.875rem + 2px);\n  padding: 0.5rem 1rem;\n  font-size: 1.25rem;\n  line-height: 1.5;\n  border-radius: 0.3rem; }\n\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n  height: calc(1.8125rem + 2px);\n  padding: 0.25rem 0.5rem;\n  font-size: 0.875rem;\n  line-height: 1.5;\n  border-radius: 0.2rem; }\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n  border-top-right-radius: 0;\n  border-bottom-right-radius: 0; }\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n  border-top-left-radius: 0;\n  border-bottom-left-radius: 0; }\n\n.custom-control {\n  position: relative;\n  display: block;\n  min-height: 1.5rem;\n  padding-left: 1.5rem; }\n\n.custom-control-inline {\n  display: -webkit-inline-box;\n  display: -ms-inline-flexbox;\n  display: inline-flex;\n  margin-right: 1rem; }\n\n.custom-control-input {\n  position: absolute;\n  z-index: -1;\n  opacity: 0; }\n  .custom-control-input:checked ~ .custom-control-label::before {\n    color: #fff;\n    background-color: #46ddb0; }\n  .custom-control-input:focus ~ .custom-control-label::before {\n    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(70, 221, 176, 0.25);\n    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(70, 221, 176, 0.25); }\n  .custom-control-input:active ~ .custom-control-label::before {\n    color: #fff;\n    background-color: #ddf9f0; }\n  .custom-control-input:disabled ~ .custom-control-label {\n    color: #6c757d; }\n    .custom-control-input:disabled ~ .custom-control-label::before {\n      background-color: #e9ecef; }\n\n.custom-control-label {\n  position: relative;\n  margin-bottom: 0; }\n  .custom-control-label::before {\n    position: absolute;\n    top: 0.25rem;\n    left: -1.5rem;\n    display: block;\n    width: 1rem;\n    height: 1rem;\n    pointer-events: none;\n    content: \"\";\n    -webkit-user-select: none;\n    -moz-user-select: none;\n    -ms-user-select: none;\n    user-select: none;\n    background-color: #dee2e6; }\n  .custom-control-label::after {\n    position: absolute;\n    top: 0.25rem;\n    left: -1.5rem;\n    display: block;\n    width: 1rem;\n    height: 1rem;\n    content: \"\";\n    background-repeat: no-repeat;\n    background-position: center center;\n    background-size: 50% 50%; }\n\n.custom-checkbox .custom-control-label::before {\n  border-radius: 0.25rem; }\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {\n  background-color: #46ddb0; }\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n  background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"); }\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n  background-color: #46ddb0; }\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n  background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E\"); }\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n  background-color: rgba(70, 221, 176, 0.5); }\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n  background-color: rgba(70, 221, 176, 0.5); }\n\n.custom-radio .custom-control-label::before {\n  border-radius: 50%; }\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::before {\n  background-color: #46ddb0; }\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n  background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E\"); }\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n  background-color: rgba(70, 221, 176, 0.5); }\n\n.custom-select {\n  display: inline-block;\n  width: 100%;\n  height: calc(2.25rem + 2px);\n  padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n  line-height: 1.5;\n  color: #495057;\n  vertical-align: middle;\n  background: #fff url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\") no-repeat right 0.75rem center;\n  background-size: 8px 10px;\n  border: 1px solid #ced4da;\n  border-radius: 0.25rem;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  appearance: none; }\n  .custom-select:focus {\n    border-color: #b2f1de;\n    outline: 0;\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(178, 241, 222, 0.5);\n    box-shadow: 0 0 0 0.2rem rgba(178, 241, 222, 0.5); }\n    .custom-select:focus::-ms-value {\n      color: #495057;\n      background-color: #fff; }\n  .custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n    height: auto;\n    padding-right: 0.75rem;\n    background-image: none; }\n  .custom-select:disabled {\n    color: #6c757d;\n    background-color: #e9ecef; }\n  .custom-select::-ms-expand {\n    opacity: 0; }\n\n.custom-select-sm {\n  height: calc(1.8125rem + 2px);\n  padding-top: 0.375rem;\n  padding-bottom: 0.375rem;\n  font-size: 75%; }\n\n.custom-select-lg {\n  height: calc(2.875rem + 2px);\n  padding-top: 0.375rem;\n  padding-bottom: 0.375rem;\n  font-size: 125%; }\n\n.custom-file {\n  position: relative;\n  display: inline-block;\n  width: 100%;\n  height: calc(2.25rem + 2px);\n  margin-bottom: 0; }\n\n.custom-file-input {\n  position: relative;\n  z-index: 2;\n  width: 100%;\n  height: calc(2.25rem + 2px);\n  margin: 0;\n  opacity: 0; }\n  .custom-file-input:focus ~ .custom-file-label {\n    border-color: #b2f1de;\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.25);\n    box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.25); }\n    .custom-file-input:focus ~ .custom-file-label::after {\n      border-color: #b2f1de; }\n  .custom-file-input:disabled ~ .custom-file-label {\n    background-color: #e9ecef; }\n  .custom-file-input:lang(en) ~ .custom-file-label::after {\n    content: \"Browse\"; }\n\n.custom-file-label {\n  position: absolute;\n  top: 0;\n  right: 0;\n  left: 0;\n  z-index: 1;\n  height: calc(2.25rem + 2px);\n  padding: 0.375rem 0.75rem;\n  line-height: 1.5;\n  color: #495057;\n  background-color: #fff;\n  border: 1px solid #ced4da;\n  border-radius: 0.25rem; }\n  .custom-file-label::after {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    z-index: 3;\n    display: block;\n    height: 2.25rem;\n    padding: 0.375rem 0.75rem;\n    line-height: 1.5;\n    color: #495057;\n    content: \"Browse\";\n    background-color: #e9ecef;\n    border-left: 1px solid #ced4da;\n    border-radius: 0 0.25rem 0.25rem 0; }\n\n.custom-range {\n  width: 100%;\n  padding-left: 0;\n  background-color: transparent;\n  -webkit-appearance: none;\n  -moz-appearance: none;\n  appearance: none; }\n  .custom-range:focus {\n    outline: none; }\n    .custom-range:focus::-webkit-slider-thumb {\n      -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(70, 221, 176, 0.25);\n      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(70, 221, 176, 0.25); }\n    .custom-range:focus::-moz-range-thumb {\n      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(70, 221, 176, 0.25); }\n    .custom-range:focus::-ms-thumb {\n      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(70, 221, 176, 0.25); }\n  .custom-range::-moz-focus-outer {\n    border: 0; }\n  .custom-range::-webkit-slider-thumb {\n    width: 1rem;\n    height: 1rem;\n    margin-top: -0.25rem;\n    background-color: #46ddb0;\n    border: 0;\n    border-radius: 1rem;\n    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    -webkit-appearance: none;\n    appearance: none; }\n    @media screen and (prefers-reduced-motion: reduce) {\n      .custom-range::-webkit-slider-thumb {\n        -webkit-transition: none;\n        -o-transition: none;\n        transition: none; } }\n    .custom-range::-webkit-slider-thumb:active {\n      background-color: #ddf9f0; }\n  .custom-range::-webkit-slider-runnable-track {\n    width: 100%;\n    height: 0.5rem;\n    color: transparent;\n    cursor: pointer;\n    background-color: #dee2e6;\n    border-color: transparent;\n    border-radius: 1rem; }\n  .custom-range::-moz-range-thumb {\n    width: 1rem;\n    height: 1rem;\n    background-color: #46ddb0;\n    border: 0;\n    border-radius: 1rem;\n    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    -moz-appearance: none;\n    appearance: none; }\n    @media screen and (prefers-reduced-motion: reduce) {\n      .custom-range::-moz-range-thumb {\n        -webkit-transition: none;\n        -o-transition: none;\n        transition: none; } }\n    .custom-range::-moz-range-thumb:active {\n      background-color: #ddf9f0; }\n  .custom-range::-moz-range-track {\n    width: 100%;\n    height: 0.5rem;\n    color: transparent;\n    cursor: pointer;\n    background-color: #dee2e6;\n    border-color: transparent;\n    border-radius: 1rem; }\n  .custom-range::-ms-thumb {\n    width: 1rem;\n    height: 1rem;\n    margin-top: 0;\n    margin-right: 0.2rem;\n    margin-left: 0.2rem;\n    background-color: #46ddb0;\n    border: 0;\n    border-radius: 1rem;\n    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n    appearance: none; }\n    @media screen and (prefers-reduced-motion: reduce) {\n      .custom-range::-ms-thumb {\n        -webkit-transition: none;\n        -o-transition: none;\n        transition: none; } }\n    .custom-range::-ms-thumb:active {\n      background-color: #ddf9f0; }\n  .custom-range::-ms-track {\n    width: 100%;\n    height: 0.5rem;\n    color: transparent;\n    cursor: pointer;\n    background-color: transparent;\n    border-color: transparent;\n    border-width: 0.5rem; }\n  .custom-range::-ms-fill-lower {\n    background-color: #dee2e6;\n    border-radius: 1rem; }\n  .custom-range::-ms-fill-upper {\n    margin-right: 15px;\n    background-color: #dee2e6;\n    border-radius: 1rem; }\n\n.custom-control-label::before,\n.custom-file-label,\n.custom-select {\n  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;\n  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }\n  @media screen and (prefers-reduced-motion: reduce) {\n    .custom-control-label::before,\n    .custom-file-label,\n    .custom-select {\n      -webkit-transition: none;\n      -o-transition: none;\n      transition: none; } }\n\n.nav {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  padding-left: 0;\n  margin-bottom: 0;\n  list-style: none; }\n\n.nav-link {\n  display: block;\n  padding: 0.5rem 1rem; }\n  .nav-link:hover, .nav-link:focus {\n    text-decoration: none; }\n  .nav-link.disabled {\n    color: #6c757d; }\n\n.nav-tabs {\n  border-bottom: 1px solid #dee2e6; }\n  .nav-tabs .nav-item {\n    margin-bottom: -1px; }\n  .nav-tabs .nav-link {\n    border: 1px solid transparent;\n    border-top-left-radius: 0.25rem;\n    border-top-right-radius: 0.25rem; }\n    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n      border-color: #e9ecef #e9ecef #dee2e6; }\n    .nav-tabs .nav-link.disabled {\n      color: #6c757d;\n      background-color: transparent;\n      border-color: transparent; }\n  .nav-tabs .nav-link.active,\n  .nav-tabs .nav-item.show .nav-link {\n    color: #495057;\n    background-color: #fff;\n    border-color: #dee2e6 #dee2e6 #fff; }\n  .nav-tabs .dropdown-menu {\n    margin-top: -1px;\n    border-top-left-radius: 0;\n    border-top-right-radius: 0; }\n\n.nav-pills .nav-link {\n  border-radius: 0.25rem; }\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n  color: #fff;\n  background-color: #46ddb0; }\n\n.nav-fill .nav-item {\n  -webkit-box-flex: 1;\n  -ms-flex: 1 1 auto;\n  flex: 1 1 auto;\n  text-align: center; }\n\n.nav-justified .nav-item {\n  -ms-flex-preferred-size: 0;\n  flex-basis: 0;\n  -webkit-box-flex: 1;\n  -ms-flex-positive: 1;\n  flex-grow: 1;\n  text-align: center; }\n\n.tab-content > .tab-pane {\n  display: none; }\n\n.tab-content > .active {\n  display: block; }\n\n.navbar {\n  position: relative;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center;\n  -webkit-box-pack: justify;\n  -ms-flex-pack: justify;\n  justify-content: space-between;\n  padding: 0.5rem 1rem; }\n  .navbar > .container,\n  .navbar > .container-fluid {\n    display: -webkit-box;\n    display: -ms-flexbox;\n    display: flex;\n    -ms-flex-wrap: wrap;\n    flex-wrap: wrap;\n    -webkit-box-align: center;\n    -ms-flex-align: center;\n    align-items: center;\n    -webkit-box-pack: justify;\n    -ms-flex-pack: justify;\n    justify-content: space-between; }\n\n.navbar-brand {\n  display: inline-block;\n  padding-top: 0.3125rem;\n  padding-bottom: 0.3125rem;\n  margin-right: 1rem;\n  font-size: 1.25rem;\n  line-height: inherit;\n  white-space: nowrap; }\n  .navbar-brand:hover, .navbar-brand:focus {\n    text-decoration: none; }\n\n.navbar-nav {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n  -ms-flex-direction: column;\n  flex-direction: column;\n  padding-left: 0;\n  margin-bottom: 0;\n  list-style: none; }\n  .navbar-nav .nav-link {\n    padding-right: 0;\n    padding-left: 0; }\n  .navbar-nav .dropdown-menu {\n    position: static;\n    float: none; }\n\n.navbar-text {\n  display: inline-block;\n  padding-top: 0.5rem;\n  padding-bottom: 0.5rem; }\n\n.navbar-collapse {\n  -ms-flex-preferred-size: 100%;\n  flex-basis: 100%;\n  -webkit-box-flex: 1;\n  -ms-flex-positive: 1;\n  flex-grow: 1;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center; }\n\n.navbar-toggler {\n  padding: 0.25rem 0.75rem;\n  font-size: 1.25rem;\n  line-height: 1;\n  background-color: transparent;\n  border: 1px solid transparent;\n  border-radius: 0.25rem; }\n  .navbar-toggler:hover, .navbar-toggler:focus {\n    text-decoration: none; }\n  .navbar-toggler:not(:disabled):not(.disabled) {\n    cursor: pointer; }\n\n.navbar-toggler-icon {\n  display: inline-block;\n  width: 1.5em;\n  height: 1.5em;\n  vertical-align: middle;\n  content: \"\";\n  background: no-repeat center center;\n  background-size: 100% 100%; }\n\n@media (max-width: 575.98px) {\n  .navbar-expand-sm > .container,\n  .navbar-expand-sm > .container-fluid {\n    padding-right: 0;\n    padding-left: 0; } }\n\n@media (min-width: 576px) {\n  .navbar-expand-sm {\n    -webkit-box-orient: horizontal;\n    -webkit-box-direction: normal;\n    -ms-flex-flow: row nowrap;\n    flex-flow: row nowrap;\n    -webkit-box-pack: start;\n    -ms-flex-pack: start;\n    justify-content: flex-start; }\n    .navbar-expand-sm .navbar-nav {\n      -webkit-box-orient: horizontal;\n      -webkit-box-direction: normal;\n      -ms-flex-direction: row;\n      flex-direction: row; }\n      .navbar-expand-sm .navbar-nav .dropdown-menu {\n        position: absolute; }\n      .navbar-expand-sm .navbar-nav .nav-link {\n        padding-right: 0.5rem;\n        padding-left: 0.5rem; }\n    .navbar-expand-sm > .container,\n    .navbar-expand-sm > .container-fluid {\n      -ms-flex-wrap: nowrap;\n      flex-wrap: nowrap; }\n    .navbar-expand-sm .navbar-collapse {\n      display: -webkit-box !important;\n      display: -ms-flexbox !important;\n      display: flex !important;\n      -ms-flex-preferred-size: auto;\n      flex-basis: auto; }\n    .navbar-expand-sm .navbar-toggler {\n      display: none; } }\n\n@media (max-width: 767.98px) {\n  .navbar-expand-md > .container,\n  .navbar-expand-md > .container-fluid {\n    padding-right: 0;\n    padding-left: 0; } }\n\n@media (min-width: 768px) {\n  .navbar-expand-md {\n    -webkit-box-orient: horizontal;\n    -webkit-box-direction: normal;\n    -ms-flex-flow: row nowrap;\n    flex-flow: row nowrap;\n    -webkit-box-pack: start;\n    -ms-flex-pack: start;\n    justify-content: flex-start; }\n    .navbar-expand-md .navbar-nav {\n      -webkit-box-orient: horizontal;\n      -webkit-box-direction: normal;\n      -ms-flex-direction: row;\n      flex-direction: row; }\n      .navbar-expand-md .navbar-nav .dropdown-menu {\n        position: absolute; }\n      .navbar-expand-md .navbar-nav .nav-link {\n        padding-right: 0.5rem;\n        padding-left: 0.5rem; }\n    .navbar-expand-md > .container,\n    .navbar-expand-md > .container-fluid {\n      -ms-flex-wrap: nowrap;\n      flex-wrap: nowrap; }\n    .navbar-expand-md .navbar-collapse {\n      display: -webkit-box !important;\n      display: -ms-flexbox !important;\n      display: flex !important;\n      -ms-flex-preferred-size: auto;\n      flex-basis: auto; }\n    .navbar-expand-md .navbar-toggler {\n      display: none; } }\n\n@media (max-width: 991.98px) {\n  .navbar-expand-lg > .container,\n  .navbar-expand-lg > .container-fluid {\n    padding-right: 0;\n    padding-left: 0; } }\n\n@media (min-width: 992px) {\n  .navbar-expand-lg {\n    -webkit-box-orient: horizontal;\n    -webkit-box-direction: normal;\n    -ms-flex-flow: row nowrap;\n    flex-flow: row nowrap;\n    -webkit-box-pack: start;\n    -ms-flex-pack: start;\n    justify-content: flex-start; }\n    .navbar-expand-lg .navbar-nav {\n      -webkit-box-orient: horizontal;\n      -webkit-box-direction: normal;\n      -ms-flex-direction: row;\n      flex-direction: row; }\n      .navbar-expand-lg .navbar-nav .dropdown-menu {\n        position: absolute; }\n      .navbar-expand-lg .navbar-nav .nav-link {\n        padding-right: 0.5rem;\n        padding-left: 0.5rem; }\n    .navbar-expand-lg > .container,\n    .navbar-expand-lg > .container-fluid {\n      -ms-flex-wrap: nowrap;\n      flex-wrap: nowrap; }\n    .navbar-expand-lg .navbar-collapse {\n      display: -webkit-box !important;\n      display: -ms-flexbox !important;\n      display: flex !important;\n      -ms-flex-preferred-size: auto;\n      flex-basis: auto; }\n    .navbar-expand-lg .navbar-toggler {\n      display: none; } }\n\n@media (max-width: 1199.98px) {\n  .navbar-expand-xl > .container,\n  .navbar-expand-xl > .container-fluid {\n    padding-right: 0;\n    padding-left: 0; } }\n\n@media (min-width: 1200px) {\n  .navbar-expand-xl {\n    -webkit-box-orient: horizontal;\n    -webkit-box-direction: normal;\n    -ms-flex-flow: row nowrap;\n    flex-flow: row nowrap;\n    -webkit-box-pack: start;\n    -ms-flex-pack: start;\n    justify-content: flex-start; }\n    .navbar-expand-xl .navbar-nav {\n      -webkit-box-orient: horizontal;\n      -webkit-box-direction: normal;\n      -ms-flex-direction: row;\n      flex-direction: row; }\n      .navbar-expand-xl .navbar-nav .dropdown-menu {\n        position: absolute; }\n      .navbar-expand-xl .navbar-nav .nav-link {\n        padding-right: 0.5rem;\n        padding-left: 0.5rem; }\n    .navbar-expand-xl > .container,\n    .navbar-expand-xl > .container-fluid {\n      -ms-flex-wrap: nowrap;\n      flex-wrap: nowrap; }\n    .navbar-expand-xl .navbar-collapse {\n      display: -webkit-box !important;\n      display: -ms-flexbox !important;\n      display: flex !important;\n      -ms-flex-preferred-size: auto;\n      flex-basis: auto; }\n    .navbar-expand-xl .navbar-toggler {\n      display: none; } }\n\n.navbar-expand {\n  -webkit-box-orient: horizontal;\n  -webkit-box-direction: normal;\n  -ms-flex-flow: row nowrap;\n  flex-flow: row nowrap;\n  -webkit-box-pack: start;\n  -ms-flex-pack: start;\n  justify-content: flex-start; }\n  .navbar-expand > .container,\n  .navbar-expand > .container-fluid {\n    padding-right: 0;\n    padding-left: 0; }\n  .navbar-expand .navbar-nav {\n    -webkit-box-orient: horizontal;\n    -webkit-box-direction: normal;\n    -ms-flex-direction: row;\n    flex-direction: row; }\n    .navbar-expand .navbar-nav .dropdown-menu {\n      position: absolute; }\n    .navbar-expand .navbar-nav .nav-link {\n      padding-right: 0.5rem;\n      padding-left: 0.5rem; }\n  .navbar-expand > .container,\n  .navbar-expand > .container-fluid {\n    -ms-flex-wrap: nowrap;\n    flex-wrap: nowrap; }\n  .navbar-expand .navbar-collapse {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important;\n    -ms-flex-preferred-size: auto;\n    flex-basis: auto; }\n  .navbar-expand .navbar-toggler {\n    display: none; }\n\n.navbar-light .navbar-brand {\n  color: rgba(0, 0, 0, 0.9); }\n  .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n    color: rgba(0, 0, 0, 0.9); }\n\n.navbar-light .navbar-nav .nav-link {\n  color: rgba(0, 0, 0, 0.5); }\n  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n    color: rgba(0, 0, 0, 0.7); }\n  .navbar-light .navbar-nav .nav-link.disabled {\n    color: rgba(0, 0, 0, 0.3); }\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n  color: rgba(0, 0, 0, 0.9); }\n\n.navbar-light .navbar-toggler {\n  color: rgba(0, 0, 0, 0.5);\n  border-color: rgba(0, 0, 0, 0.1); }\n\n.navbar-light .navbar-toggler-icon {\n  background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"); }\n\n.navbar-light .navbar-text {\n  color: rgba(0, 0, 0, 0.5); }\n  .navbar-light .navbar-text a {\n    color: rgba(0, 0, 0, 0.9); }\n    .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n      color: rgba(0, 0, 0, 0.9); }\n\n.navbar-dark .navbar-brand {\n  color: #fff; }\n  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n    color: #fff; }\n\n.navbar-dark .navbar-nav .nav-link {\n  color: rgba(255, 255, 255, 0.5); }\n  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n    color: rgba(255, 255, 255, 0.75); }\n  .navbar-dark .navbar-nav .nav-link.disabled {\n    color: rgba(255, 255, 255, 0.25); }\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n  color: #fff; }\n\n.navbar-dark .navbar-toggler {\n  color: rgba(255, 255, 255, 0.5);\n  border-color: rgba(255, 255, 255, 0.1); }\n\n.navbar-dark .navbar-toggler-icon {\n  background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"); }\n\n.navbar-dark .navbar-text {\n  color: rgba(255, 255, 255, 0.5); }\n  .navbar-dark .navbar-text a {\n    color: #fff; }\n    .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {\n      color: #fff; }\n\n.card {\n  position: relative;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n  -ms-flex-direction: column;\n  flex-direction: column;\n  min-width: 0;\n  word-wrap: break-word;\n  background-color: #fff;\n  background-clip: border-box;\n  border: 1px solid rgba(0, 0, 0, 0.125);\n  border-radius: 0.25rem; }\n  .card > hr {\n    margin-right: 0;\n    margin-left: 0; }\n  .card > .list-group:first-child .list-group-item:first-child {\n    border-top-left-radius: 0.25rem;\n    border-top-right-radius: 0.25rem; }\n  .card > .list-group:last-child .list-group-item:last-child {\n    border-bottom-right-radius: 0.25rem;\n    border-bottom-left-radius: 0.25rem; }\n\n.card-body {\n  -webkit-box-flex: 1;\n  -ms-flex: 1 1 auto;\n  flex: 1 1 auto;\n  padding: 1.25rem; }\n\n.card-title {\n  margin-bottom: 0.75rem; }\n\n.card-subtitle {\n  margin-top: -0.375rem;\n  margin-bottom: 0; }\n\n.card-text:last-child {\n  margin-bottom: 0; }\n\n.card-link:hover {\n  text-decoration: none; }\n\n.card-link + .card-link {\n  margin-left: 1.25rem; }\n\n.card-header {\n  padding: 0.75rem 1.25rem;\n  margin-bottom: 0;\n  background-color: rgba(0, 0, 0, 0.03);\n  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }\n  .card-header:first-child {\n    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }\n  .card-header + .list-group .list-group-item:first-child {\n    border-top: 0; }\n\n.card-footer {\n  padding: 0.75rem 1.25rem;\n  background-color: rgba(0, 0, 0, 0.03);\n  border-top: 1px solid rgba(0, 0, 0, 0.125); }\n  .card-footer:last-child {\n    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }\n\n.card-header-tabs {\n  margin-right: -0.625rem;\n  margin-bottom: -0.75rem;\n  margin-left: -0.625rem;\n  border-bottom: 0; }\n\n.card-header-pills {\n  margin-right: -0.625rem;\n  margin-left: -0.625rem; }\n\n.card-img-overlay {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  padding: 1.25rem; }\n\n.card-img {\n  width: 100%;\n  border-radius: calc(0.25rem - 1px); }\n\n.card-img-top {\n  width: 100%;\n  border-top-left-radius: calc(0.25rem - 1px);\n  border-top-right-radius: calc(0.25rem - 1px); }\n\n.card-img-bottom {\n  width: 100%;\n  border-bottom-right-radius: calc(0.25rem - 1px);\n  border-bottom-left-radius: calc(0.25rem - 1px); }\n\n.card-deck {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n  -ms-flex-direction: column;\n  flex-direction: column; }\n  .card-deck .card {\n    margin-bottom: 15px; }\n  @media (min-width: 576px) {\n    .card-deck {\n      -webkit-box-orient: horizontal;\n      -webkit-box-direction: normal;\n      -ms-flex-flow: row wrap;\n      flex-flow: row wrap;\n      margin-right: -15px;\n      margin-left: -15px; }\n      .card-deck .card {\n        display: -webkit-box;\n        display: -ms-flexbox;\n        display: flex;\n        -webkit-box-flex: 1;\n        -ms-flex: 1 0 0%;\n        flex: 1 0 0%;\n        -webkit-box-orient: vertical;\n        -webkit-box-direction: normal;\n        -ms-flex-direction: column;\n        flex-direction: column;\n        margin-right: 15px;\n        margin-bottom: 0;\n        margin-left: 15px; } }\n\n.card-group {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n  -ms-flex-direction: column;\n  flex-direction: column; }\n  .card-group > .card {\n    margin-bottom: 15px; }\n  @media (min-width: 576px) {\n    .card-group {\n      -webkit-box-orient: horizontal;\n      -webkit-box-direction: normal;\n      -ms-flex-flow: row wrap;\n      flex-flow: row wrap; }\n      .card-group > .card {\n        -webkit-box-flex: 1;\n        -ms-flex: 1 0 0%;\n        flex: 1 0 0%;\n        margin-bottom: 0; }\n        .card-group > .card + .card {\n          margin-left: 0;\n          border-left: 0; }\n        .card-group > .card:first-child {\n          border-top-right-radius: 0;\n          border-bottom-right-radius: 0; }\n          .card-group > .card:first-child .card-img-top,\n          .card-group > .card:first-child .card-header {\n            border-top-right-radius: 0; }\n          .card-group > .card:first-child .card-img-bottom,\n          .card-group > .card:first-child .card-footer {\n            border-bottom-right-radius: 0; }\n        .card-group > .card:last-child {\n          border-top-left-radius: 0;\n          border-bottom-left-radius: 0; }\n          .card-group > .card:last-child .card-img-top,\n          .card-group > .card:last-child .card-header {\n            border-top-left-radius: 0; }\n          .card-group > .card:last-child .card-img-bottom,\n          .card-group > .card:last-child .card-footer {\n            border-bottom-left-radius: 0; }\n        .card-group > .card:only-child {\n          border-radius: 0.25rem; }\n          .card-group > .card:only-child .card-img-top,\n          .card-group > .card:only-child .card-header {\n            border-top-left-radius: 0.25rem;\n            border-top-right-radius: 0.25rem; }\n          .card-group > .card:only-child .card-img-bottom,\n          .card-group > .card:only-child .card-footer {\n            border-bottom-right-radius: 0.25rem;\n            border-bottom-left-radius: 0.25rem; }\n        .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {\n          border-radius: 0; }\n          .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,\n          .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,\n          .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,\n          .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {\n            border-radius: 0; } }\n\n.card-columns .card {\n  margin-bottom: 0.75rem; }\n\n@media (min-width: 576px) {\n  .card-columns {\n    -webkit-column-count: 3;\n    column-count: 3;\n    -webkit-column-gap: 1.25rem;\n    column-gap: 1.25rem;\n    orphans: 1;\n    widows: 1; }\n    .card-columns .card {\n      display: inline-block;\n      width: 100%; } }\n\n.accordion .card:not(:first-of-type):not(:last-of-type) {\n  border-bottom: 0;\n  border-radius: 0; }\n\n.accordion .card:not(:first-of-type) .card-header:first-child {\n  border-radius: 0; }\n\n.accordion .card:first-of-type {\n  border-bottom: 0;\n  border-bottom-right-radius: 0;\n  border-bottom-left-radius: 0; }\n\n.accordion .card:last-of-type {\n  border-top-left-radius: 0;\n  border-top-right-radius: 0; }\n\n.breadcrumb {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -ms-flex-wrap: wrap;\n  flex-wrap: wrap;\n  padding: 0.75rem 1rem;\n  margin-bottom: 1rem;\n  list-style: none;\n  background-color: #e9ecef;\n  border-radius: 0.25rem; }\n\n.breadcrumb-item + .breadcrumb-item {\n  padding-left: 0.5rem; }\n  .breadcrumb-item + .breadcrumb-item::before {\n    display: inline-block;\n    padding-right: 0.5rem;\n    color: #6c757d;\n    content: \"/\"; }\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n  text-decoration: underline; }\n\n.breadcrumb-item + .breadcrumb-item:hover::before {\n  text-decoration: none; }\n\n.breadcrumb-item.active {\n  color: #6c757d; }\n\n.pagination {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  padding-left: 0;\n  list-style: none;\n  border-radius: 0.25rem; }\n\n.page-link {\n  position: relative;\n  display: block;\n  padding: 0.5rem 0.75rem;\n  margin-left: -1px;\n  line-height: 1.25;\n  color: #46ddb0;\n  background-color: #fff;\n  border: 1px solid #dee2e6; }\n  .page-link:hover {\n    z-index: 2;\n    color: #21b589;\n    text-decoration: none;\n    background-color: #e9ecef;\n    border-color: #dee2e6; }\n  .page-link:focus {\n    z-index: 2;\n    outline: 0;\n    -webkit-box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.25);\n    box-shadow: 0 0 0 0.2rem rgba(70, 221, 176, 0.25); }\n  .page-link:not(:disabled):not(.disabled) {\n    cursor: pointer; }\n\n.page-item:first-child .page-link {\n  margin-left: 0;\n  border-top-left-radius: 0.25rem;\n  border-bottom-left-radius: 0.25rem; }\n\n.page-item:last-child .page-link {\n  border-top-right-radius: 0.25rem;\n  border-bottom-right-radius: 0.25rem; }\n\n.page-item.active .page-link {\n  z-index: 1;\n  color: #fff;\n  background-color: #46ddb0;\n  border-color: #46ddb0; }\n\n.page-item.disabled .page-link {\n  color: #6c757d;\n  pointer-events: none;\n  cursor: auto;\n  background-color: #fff;\n  border-color: #dee2e6; }\n\n.pagination-lg .page-link {\n  padding: 0.75rem 1.5rem;\n  font-size: 1.25rem;\n  line-height: 1.5; }\n\n.pagination-lg .page-item:first-child .page-link {\n  border-top-left-radius: 0.3rem;\n  border-bottom-left-radius: 0.3rem; }\n\n.pagination-lg .page-item:last-child .page-link {\n  border-top-right-radius: 0.3rem;\n  border-bottom-right-radius: 0.3rem; }\n\n.pagination-sm .page-link {\n  padding: 0.25rem 0.5rem;\n  font-size: 0.875rem;\n  line-height: 1.5; }\n\n.pagination-sm .page-item:first-child .page-link {\n  border-top-left-radius: 0.2rem;\n  border-bottom-left-radius: 0.2rem; }\n\n.pagination-sm .page-item:last-child .page-link {\n  border-top-right-radius: 0.2rem;\n  border-bottom-right-radius: 0.2rem; }\n\n.badge {\n  display: inline-block;\n  padding: 0.25em 0.4em;\n  font-size: 75%;\n  font-weight: 700;\n  line-height: 1;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: 0.25rem; }\n  .badge:empty {\n    display: none; }\n\n.btn .badge {\n  position: relative;\n  top: -1px; }\n\n.badge-pill {\n  padding-right: 0.6em;\n  padding-left: 0.6em;\n  border-radius: 10rem; }\n\n.badge-primary {\n  color: #212529;\n  background-color: #46ddb0; }\n  .badge-primary[href]:hover, .badge-primary[href]:focus {\n    color: #212529;\n    text-decoration: none;\n    background-color: #25cb99; }\n\n.badge-secondary {\n  color: #fff;\n  background-color: #6c757d; }\n  .badge-secondary[href]:hover, .badge-secondary[href]:focus {\n    color: #fff;\n    text-decoration: none;\n    background-color: #545b62; }\n\n.badge-success {\n  color: #212529;\n  background-color: #8bc34a; }\n  .badge-success[href]:hover, .badge-success[href]:focus {\n    color: #212529;\n    text-decoration: none;\n    background-color: #71a436; }\n\n.badge-info {\n  color: #fff;\n  background-color: #17a2b8; }\n  .badge-info[href]:hover, .badge-info[href]:focus {\n    color: #fff;\n    text-decoration: none;\n    background-color: #117a8b; }\n\n.badge-warning {\n  color: #212529;\n  background-color: #f89d13; }\n  .badge-warning[href]:hover, .badge-warning[href]:focus {\n    color: #212529;\n    text-decoration: none;\n    background-color: #d28106; }\n\n.badge-danger {\n  color: #fff;\n  background-color: #f23a2e; }\n  .badge-danger[href]:hover, .badge-danger[href]:focus {\n    color: #fff;\n    text-decoration: none;\n    background-color: #df1b0e; }\n\n.badge-light {\n  color: #212529;\n  background-color: #f8f9fa; }\n  .badge-light[href]:hover, .badge-light[href]:focus {\n    color: #212529;\n    text-decoration: none;\n    background-color: #dae0e5; }\n\n.badge-dark {\n  color: #fff;\n  background-color: #343a40; }\n  .badge-dark[href]:hover, .badge-dark[href]:focus {\n    color: #fff;\n    text-decoration: none;\n    background-color: #1d2124; }\n\n.jumbotron {\n  padding: 2rem 1rem;\n  margin-bottom: 2rem;\n  background-color: #e9ecef;\n  border-radius: 0.3rem; }\n  @media (min-width: 576px) {\n    .jumbotron {\n      padding: 4rem 2rem; } }\n\n.jumbotron-fluid {\n  padding-right: 0;\n  padding-left: 0;\n  border-radius: 0; }\n\n.alert {\n  position: relative;\n  padding: 0.75rem 1.25rem;\n  margin-bottom: 1rem;\n  border: 1px solid transparent;\n  border-radius: 0.25rem; }\n\n.alert-heading {\n  color: inherit; }\n\n.alert-link {\n  font-weight: 700; }\n\n.alert-dismissible {\n  padding-right: 4rem; }\n  .alert-dismissible .close {\n    position: absolute;\n    top: 0;\n    right: 0;\n    padding: 0.75rem 1.25rem;\n    color: inherit; }\n\n.alert-primary {\n  color: #24735c;\n  background-color: #daf8ef;\n  border-color: #cbf5e9; }\n  .alert-primary hr {\n    border-top-color: #b6f1e0; }\n  .alert-primary .alert-link {\n    color: #184c3d; }\n\n.alert-secondary {\n  color: #383d41;\n  background-color: #e2e3e5;\n  border-color: #d6d8db; }\n  .alert-secondary hr {\n    border-top-color: #c8cbcf; }\n  .alert-secondary .alert-link {\n    color: #202326; }\n\n.alert-success {\n  color: #486526;\n  background-color: #e8f3db;\n  border-color: #dfeecc; }\n  .alert-success hr {\n    border-top-color: #d3e8b9; }\n  .alert-success .alert-link {\n    color: #2e4018; }\n\n.alert-info {\n  color: #0c5460;\n  background-color: #d1ecf1;\n  border-color: #bee5eb; }\n  .alert-info hr {\n    border-top-color: #abdde5; }\n  .alert-info .alert-link {\n    color: #062c33; }\n\n.alert-warning {\n  color: #81520a;\n  background-color: #feebd0;\n  border-color: #fde4bd; }\n  .alert-warning hr {\n    border-top-color: #fcdaa4; }\n  .alert-warning .alert-link {\n    color: #523406; }\n\n.alert-danger {\n  color: #7e1e18;\n  background-color: #fcd8d5;\n  border-color: #fbc8c4; }\n  .alert-danger hr {\n    border-top-color: #f9b2ac; }\n  .alert-danger .alert-link {\n    color: #531410; }\n\n.alert-light {\n  color: #818182;\n  background-color: #fefefe;\n  border-color: #fdfdfe; }\n  .alert-light hr {\n    border-top-color: #ececf6; }\n  .alert-light .alert-link {\n    color: #686868; }\n\n.alert-dark {\n  color: #1b1e21;\n  background-color: #d6d8d9;\n  border-color: #c6c8ca; }\n  .alert-dark hr {\n    border-top-color: #b9bbbe; }\n  .alert-dark .alert-link {\n    color: #040505; }\n\n@-webkit-keyframes progress-bar-stripes {\n  from {\n    background-position: 1rem 0; }\n  to {\n    background-position: 0 0; } }\n\n@keyframes progress-bar-stripes {\n  from {\n    background-position: 1rem 0; }\n  to {\n    background-position: 0 0; } }\n\n.progress {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  height: 1rem;\n  overflow: hidden;\n  font-size: 0.75rem;\n  background-color: #e9ecef;\n  border-radius: 0.25rem; }\n\n.progress-bar {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n  -ms-flex-direction: column;\n  flex-direction: column;\n  -webkit-box-pack: center;\n  -ms-flex-pack: center;\n  justify-content: center;\n  color: #fff;\n  text-align: center;\n  white-space: nowrap;\n  background-color: #46ddb0;\n  -webkit-transition: width 0.6s ease;\n  -o-transition: width 0.6s ease;\n  transition: width 0.6s ease; }\n  @media screen and (prefers-reduced-motion: reduce) {\n    .progress-bar {\n      -webkit-transition: none;\n      -o-transition: none;\n      transition: none; } }\n\n.progress-bar-striped {\n  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n  background-size: 1rem 1rem; }\n\n.progress-bar-animated {\n  -webkit-animation: progress-bar-stripes 1s linear infinite;\n  animation: progress-bar-stripes 1s linear infinite; }\n\n.media {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: start;\n  -ms-flex-align: start;\n  align-items: flex-start; }\n\n.media-body {\n  -webkit-box-flex: 1;\n  -ms-flex: 1;\n  flex: 1; }\n\n.list-group {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n  -ms-flex-direction: column;\n  flex-direction: column;\n  padding-left: 0;\n  margin-bottom: 0; }\n\n.list-group-item-action {\n  width: 100%;\n  color: #495057;\n  text-align: inherit; }\n  .list-group-item-action:hover, .list-group-item-action:focus {\n    color: #495057;\n    text-decoration: none;\n    background-color: #f8f9fa; }\n  .list-group-item-action:active {\n    color: #212529;\n    background-color: #e9ecef; }\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 0.75rem 1.25rem;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid rgba(0, 0, 0, 0.125); }\n  .list-group-item:first-child {\n    border-top-left-radius: 0.25rem;\n    border-top-right-radius: 0.25rem; }\n  .list-group-item:last-child {\n    margin-bottom: 0;\n    border-bottom-right-radius: 0.25rem;\n    border-bottom-left-radius: 0.25rem; }\n  .list-group-item:hover, .list-group-item:focus {\n    z-index: 1;\n    text-decoration: none; }\n  .list-group-item.disabled, .list-group-item:disabled {\n    color: #6c757d;\n    background-color: #fff; }\n  .list-group-item.active {\n    z-index: 2;\n    color: #fff;\n    background-color: #46ddb0;\n    border-color: #46ddb0; }\n\n.list-group-flush .list-group-item {\n  border-right: 0;\n  border-left: 0;\n  border-radius: 0; }\n\n.list-group-flush:first-child .list-group-item:first-child {\n  border-top: 0; }\n\n.list-group-flush:last-child .list-group-item:last-child {\n  border-bottom: 0; }\n\n.list-group-item-primary {\n  color: #24735c;\n  background-color: #cbf5e9; }\n  .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n    color: #24735c;\n    background-color: #b6f1e0; }\n  .list-group-item-primary.list-group-item-action.active {\n    color: #fff;\n    background-color: #24735c;\n    border-color: #24735c; }\n\n.list-group-item-secondary {\n  color: #383d41;\n  background-color: #d6d8db; }\n  .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n    color: #383d41;\n    background-color: #c8cbcf; }\n  .list-group-item-secondary.list-group-item-action.active {\n    color: #fff;\n    background-color: #383d41;\n    border-color: #383d41; }\n\n.list-group-item-success {\n  color: #486526;\n  background-color: #dfeecc; }\n  .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n    color: #486526;\n    background-color: #d3e8b9; }\n  .list-group-item-success.list-group-item-action.active {\n    color: #fff;\n    background-color: #486526;\n    border-color: #486526; }\n\n.list-group-item-info {\n  color: #0c5460;\n  background-color: #bee5eb; }\n  .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n    color: #0c5460;\n    background-color: #abdde5; }\n  .list-group-item-info.list-group-item-action.active {\n    color: #fff;\n    background-color: #0c5460;\n    border-color: #0c5460; }\n\n.list-group-item-warning {\n  color: #81520a;\n  background-color: #fde4bd; }\n  .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n    color: #81520a;\n    background-color: #fcdaa4; }\n  .list-group-item-warning.list-group-item-action.active {\n    color: #fff;\n    background-color: #81520a;\n    border-color: #81520a; }\n\n.list-group-item-danger {\n  color: #7e1e18;\n  background-color: #fbc8c4; }\n  .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n    color: #7e1e18;\n    background-color: #f9b2ac; }\n  .list-group-item-danger.list-group-item-action.active {\n    color: #fff;\n    background-color: #7e1e18;\n    border-color: #7e1e18; }\n\n.list-group-item-light {\n  color: #818182;\n  background-color: #fdfdfe; }\n  .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n    color: #818182;\n    background-color: #ececf6; }\n  .list-group-item-light.list-group-item-action.active {\n    color: #fff;\n    background-color: #818182;\n    border-color: #818182; }\n\n.list-group-item-dark {\n  color: #1b1e21;\n  background-color: #c6c8ca; }\n  .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n    color: #1b1e21;\n    background-color: #b9bbbe; }\n  .list-group-item-dark.list-group-item-action.active {\n    color: #fff;\n    background-color: #1b1e21;\n    border-color: #1b1e21; }\n\n.close {\n  float: right;\n  font-size: 1.5rem;\n  font-weight: 700;\n  line-height: 1;\n  color: #000;\n  text-shadow: 0 1px 0 #fff;\n  opacity: .5; }\n  .close:not(:disabled):not(.disabled) {\n    cursor: pointer; }\n    .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {\n      color: #000;\n      text-decoration: none;\n      opacity: .75; }\n\nbutton.close {\n  padding: 0;\n  background-color: transparent;\n  border: 0;\n  -webkit-appearance: none; }\n\n.modal-open {\n  overflow: hidden; }\n  .modal-open .modal {\n    overflow-x: hidden;\n    overflow-y: auto; }\n\n.modal {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1050;\n  display: none;\n  overflow: hidden;\n  outline: 0; }\n\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 0.5rem;\n  pointer-events: none; }\n  .modal.fade .modal-dialog {\n    -webkit-transition: -webkit-transform 0.3s ease-out;\n    transition: -webkit-transform 0.3s ease-out;\n    -o-transition: transform 0.3s ease-out;\n    transition: transform 0.3s ease-out;\n    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;\n    -webkit-transform: translate(0, -25%);\n    -ms-transform: translate(0, -25%);\n    transform: translate(0, -25%); }\n    @media screen and (prefers-reduced-motion: reduce) {\n      .modal.fade .modal-dialog {\n        -webkit-transition: none;\n        -o-transition: none;\n        transition: none; } }\n  .modal.show .modal-dialog {\n    -webkit-transform: translate(0, 0);\n    -ms-transform: translate(0, 0);\n    transform: translate(0, 0); }\n\n.modal-dialog-centered {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center;\n  min-height: calc(100% - (0.5rem * 2)); }\n  .modal-dialog-centered::before {\n    display: block;\n    height: calc(100vh - (0.5rem * 2));\n    content: \"\"; }\n\n.modal-content {\n  position: relative;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-orient: vertical;\n  -webkit-box-direction: normal;\n  -ms-flex-direction: column;\n  flex-direction: column;\n  width: 100%;\n  pointer-events: auto;\n  background-color: #fff;\n  background-clip: padding-box;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 0.3rem;\n  outline: 0; }\n\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1040;\n  background-color: #000; }\n  .modal-backdrop.fade {\n    opacity: 0; }\n  .modal-backdrop.show {\n    opacity: 0.5; }\n\n.modal-header {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: start;\n  -ms-flex-align: start;\n  align-items: flex-start;\n  -webkit-box-pack: justify;\n  -ms-flex-pack: justify;\n  justify-content: space-between;\n  padding: 1rem;\n  border-bottom: 1px solid #e9ecef;\n  border-top-left-radius: 0.3rem;\n  border-top-right-radius: 0.3rem; }\n  .modal-header .close {\n    padding: 1rem;\n    margin: -1rem -1rem -1rem auto; }\n\n.modal-title {\n  margin-bottom: 0;\n  line-height: 1.5; }\n\n.modal-body {\n  position: relative;\n  -webkit-box-flex: 1;\n  -ms-flex: 1 1 auto;\n  flex: 1 1 auto;\n  padding: 1rem; }\n\n.modal-footer {\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center;\n  -webkit-box-pack: end;\n  -ms-flex-pack: end;\n  justify-content: flex-end;\n  padding: 1rem;\n  border-top: 1px solid #e9ecef; }\n  .modal-footer > :not(:first-child) {\n    margin-left: .25rem; }\n  .modal-footer > :not(:last-child) {\n    margin-right: .25rem; }\n\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll; }\n\n@media (min-width: 576px) {\n  .modal-dialog {\n    max-width: 500px;\n    margin: 1.75rem auto; }\n  .modal-dialog-centered {\n    min-height: calc(100% - (1.75rem * 2)); }\n    .modal-dialog-centered::before {\n      height: calc(100vh - (1.75rem * 2)); }\n  .modal-sm {\n    max-width: 300px; } }\n\n@media (min-width: 992px) {\n  .modal-lg {\n    max-width: 800px; } }\n\n.tooltip {\n  position: absolute;\n  z-index: 1070;\n  display: block;\n  margin: 0;\n  font-family: \"Raleway\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n  font-style: normal;\n  font-weight: 400;\n  line-height: 1.5;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  letter-spacing: normal;\n  word-break: normal;\n  word-spacing: normal;\n  white-space: normal;\n  line-break: auto;\n  font-size: 0.875rem;\n  word-wrap: break-word;\n  opacity: 0; }\n  .tooltip.show {\n    opacity: 0.9; }\n  .tooltip .arrow {\n    position: absolute;\n    display: block;\n    width: 0.8rem;\n    height: 0.4rem; }\n    .tooltip .arrow::before {\n      position: absolute;\n      content: \"\";\n      border-color: transparent;\n      border-style: solid; }\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n  padding: 0.4rem 0; }\n  .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n    bottom: 0; }\n    .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n      top: 0;\n      border-width: 0.4rem 0.4rem 0;\n      border-top-color: #000; }\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n  padding: 0 0.4rem; }\n  .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n    left: 0;\n    width: 0.4rem;\n    height: 0.8rem; }\n    .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n      right: 0;\n      border-width: 0.4rem 0.4rem 0.4rem 0;\n      border-right-color: #000; }\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n  padding: 0.4rem 0; }\n  .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n    top: 0; }\n    .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n      bottom: 0;\n      border-width: 0 0.4rem 0.4rem;\n      border-bottom-color: #000; }\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n  padding: 0 0.4rem; }\n  .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n    right: 0;\n    width: 0.4rem;\n    height: 0.8rem; }\n    .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n      left: 0;\n      border-width: 0.4rem 0 0.4rem 0.4rem;\n      border-left-color: #000; }\n\n.tooltip-inner {\n  max-width: 200px;\n  padding: 0.25rem 0.5rem;\n  color: #fff;\n  text-align: center;\n  background-color: #000;\n  border-radius: 0.25rem; }\n\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: 1060;\n  display: block;\n  max-width: 276px;\n  font-family: \"Raleway\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n  font-style: normal;\n  font-weight: 400;\n  line-height: 1.5;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  letter-spacing: normal;\n  word-break: normal;\n  word-spacing: normal;\n  white-space: normal;\n  line-break: auto;\n  font-size: 0.875rem;\n  word-wrap: break-word;\n  background-color: #fff;\n  background-clip: padding-box;\n  border: 1px solid rgba(0, 0, 0, 0.2);\n  border-radius: 0.3rem; }\n  .popover .arrow {\n    position: absolute;\n    display: block;\n    width: 1rem;\n    height: 0.5rem;\n    margin: 0 0.3rem; }\n    .popover .arrow::before, .popover .arrow::after {\n      position: absolute;\n      display: block;\n      content: \"\";\n      border-color: transparent;\n      border-style: solid; }\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n  margin-bottom: 0.5rem; }\n  .bs-popover-top .arrow, .bs-popover-auto[x-placement^=\"top\"] .arrow {\n    bottom: calc((0.5rem + 1px) * -1); }\n  .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before,\n  .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n    border-width: 0.5rem 0.5rem 0; }\n  .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=\"top\"] .arrow::before {\n    bottom: 0;\n    border-top-color: rgba(0, 0, 0, 0.25); }\n  .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=\"top\"] .arrow::after {\n    bottom: 1px;\n    border-top-color: #fff; }\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n  margin-left: 0.5rem; }\n  .bs-popover-right .arrow, .bs-popover-auto[x-placement^=\"right\"] .arrow {\n    left: calc((0.5rem + 1px) * -1);\n    width: 0.5rem;\n    height: 1rem;\n    margin: 0.3rem 0; }\n  .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before,\n  .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n    border-width: 0.5rem 0.5rem 0.5rem 0; }\n  .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=\"right\"] .arrow::before {\n    left: 0;\n    border-right-color: rgba(0, 0, 0, 0.25); }\n  .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=\"right\"] .arrow::after {\n    left: 1px;\n    border-right-color: #fff; }\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n  margin-top: 0.5rem; }\n  .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=\"bottom\"] .arrow {\n    top: calc((0.5rem + 1px) * -1); }\n  .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before,\n  .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n    border-width: 0 0.5rem 0.5rem 0.5rem; }\n  .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::before {\n    top: 0;\n    border-bottom-color: rgba(0, 0, 0, 0.25); }\n  .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] .arrow::after {\n    top: 1px;\n    border-bottom-color: #fff; }\n  .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n    position: absolute;\n    top: 0;\n    left: 50%;\n    display: block;\n    width: 1rem;\n    margin-left: -0.5rem;\n    content: \"\";\n    border-bottom: 1px solid #f7f7f7; }\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n  margin-right: 0.5rem; }\n  .bs-popover-left .arrow, .bs-popover-auto[x-placement^=\"left\"] .arrow {\n    right: calc((0.5rem + 1px) * -1);\n    width: 0.5rem;\n    height: 1rem;\n    margin: 0.3rem 0; }\n  .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before,\n  .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n    border-width: 0.5rem 0 0.5rem 0.5rem; }\n  .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=\"left\"] .arrow::before {\n    right: 0;\n    border-left-color: rgba(0, 0, 0, 0.25); }\n  .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=\"left\"] .arrow::after {\n    right: 1px;\n    border-left-color: #fff; }\n\n.popover-header {\n  padding: 0.5rem 0.75rem;\n  margin-bottom: 0;\n  font-size: 1rem;\n  color: inherit;\n  background-color: #f7f7f7;\n  border-bottom: 1px solid #ebebeb;\n  border-top-left-radius: calc(0.3rem - 1px);\n  border-top-right-radius: calc(0.3rem - 1px); }\n  .popover-header:empty {\n    display: none; }\n\n.popover-body {\n  padding: 0.5rem 0.75rem;\n  color: #212529; }\n\n.carousel {\n  position: relative; }\n\n.carousel-inner {\n  position: relative;\n  width: 100%;\n  overflow: hidden; }\n\n.carousel-item {\n  position: relative;\n  display: none;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center;\n  width: 100%;\n  -webkit-backface-visibility: hidden;\n  backface-visibility: hidden;\n  -webkit-perspective: 1000px;\n  perspective: 1000px; }\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n  display: block;\n  -webkit-transition: -webkit-transform 0.6s ease;\n  transition: -webkit-transform 0.6s ease;\n  -o-transition: transform 0.6s ease;\n  transition: transform 0.6s ease;\n  transition: transform 0.6s ease, -webkit-transform 0.6s ease; }\n  @media screen and (prefers-reduced-motion: reduce) {\n    .carousel-item.active,\n    .carousel-item-next,\n    .carousel-item-prev {\n      -webkit-transition: none;\n      -o-transition: none;\n      transition: none; } }\n\n.carousel-item-next,\n.carousel-item-prev {\n  position: absolute;\n  top: 0; }\n\n.carousel-item-next.carousel-item-left,\n.carousel-item-prev.carousel-item-right {\n  -webkit-transform: translateX(0);\n  -ms-transform: translateX(0);\n  transform: translateX(0); }\n  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {\n    .carousel-item-next.carousel-item-left,\n    .carousel-item-prev.carousel-item-right {\n      -webkit-transform: translate3d(0, 0, 0);\n      transform: translate3d(0, 0, 0); } }\n\n.carousel-item-next,\n.active.carousel-item-right {\n  -webkit-transform: translateX(100%);\n  -ms-transform: translateX(100%);\n  transform: translateX(100%); }\n  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {\n    .carousel-item-next,\n    .active.carousel-item-right {\n      -webkit-transform: translate3d(100%, 0, 0);\n      transform: translate3d(100%, 0, 0); } }\n\n.carousel-item-prev,\n.active.carousel-item-left {\n  -webkit-transform: translateX(-100%);\n  -ms-transform: translateX(-100%);\n  transform: translateX(-100%); }\n  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {\n    .carousel-item-prev,\n    .active.carousel-item-left {\n      -webkit-transform: translate3d(-100%, 0, 0);\n      transform: translate3d(-100%, 0, 0); } }\n\n.carousel-fade .carousel-item {\n  opacity: 0;\n  -webkit-transition-duration: .6s;\n  -o-transition-duration: .6s;\n  transition-duration: .6s;\n  -webkit-transition-property: opacity;\n  -o-transition-property: opacity;\n  transition-property: opacity; }\n\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-left,\n.carousel-fade .carousel-item-prev.carousel-item-right {\n  opacity: 1; }\n\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-right {\n  opacity: 0; }\n\n.carousel-fade .carousel-item-next,\n.carousel-fade .carousel-item-prev,\n.carousel-fade .carousel-item.active,\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-prev {\n  -webkit-transform: translateX(0);\n  -ms-transform: translateX(0);\n  transform: translateX(0); }\n  @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {\n    .carousel-fade .carousel-item-next,\n    .carousel-fade .carousel-item-prev,\n    .carousel-fade .carousel-item.active,\n    .carousel-fade .active.carousel-item-left,\n    .carousel-fade .active.carousel-item-prev {\n      -webkit-transform: translate3d(0, 0, 0);\n      transform: translate3d(0, 0, 0); } }\n\n.carousel-control-prev,\n.carousel-control-next {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-align: center;\n  -ms-flex-align: center;\n  align-items: center;\n  -webkit-box-pack: center;\n  -ms-flex-pack: center;\n  justify-content: center;\n  width: 15%;\n  color: #fff;\n  text-align: center;\n  opacity: 0.5; }\n  .carousel-control-prev:hover, .carousel-control-prev:focus,\n  .carousel-control-next:hover,\n  .carousel-control-next:focus {\n    color: #fff;\n    text-decoration: none;\n    outline: 0;\n    opacity: .9; }\n\n.carousel-control-prev {\n  left: 0; }\n\n.carousel-control-next {\n  right: 0; }\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n  display: inline-block;\n  width: 20px;\n  height: 20px;\n  background: transparent no-repeat center center;\n  background-size: 100% 100%; }\n\n.carousel-control-prev-icon {\n  background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"); }\n\n.carousel-control-next-icon {\n  background-image: url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"); }\n\n.carousel-indicators {\n  position: absolute;\n  right: 0;\n  bottom: 10px;\n  left: 0;\n  z-index: 15;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  -webkit-box-pack: center;\n  -ms-flex-pack: center;\n  justify-content: center;\n  padding-left: 0;\n  margin-right: 15%;\n  margin-left: 15%;\n  list-style: none; }\n  .carousel-indicators li {\n    position: relative;\n    -webkit-box-flex: 0;\n    -ms-flex: 0 1 auto;\n    flex: 0 1 auto;\n    width: 30px;\n    height: 3px;\n    margin-right: 3px;\n    margin-left: 3px;\n    text-indent: -999px;\n    cursor: pointer;\n    background-color: rgba(255, 255, 255, 0.5); }\n    .carousel-indicators li::before {\n      position: absolute;\n      top: -10px;\n      left: 0;\n      display: inline-block;\n      width: 100%;\n      height: 10px;\n      content: \"\"; }\n    .carousel-indicators li::after {\n      position: absolute;\n      bottom: -10px;\n      left: 0;\n      display: inline-block;\n      width: 100%;\n      height: 10px;\n      content: \"\"; }\n  .carousel-indicators .active {\n    background-color: #fff; }\n\n.carousel-caption {\n  position: absolute;\n  right: 15%;\n  bottom: 20px;\n  left: 15%;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: #fff;\n  text-align: center; }\n\n.align-baseline {\n  vertical-align: baseline !important; }\n\n.align-top {\n  vertical-align: top !important; }\n\n.align-middle {\n  vertical-align: middle !important; }\n\n.align-bottom {\n  vertical-align: bottom !important; }\n\n.align-text-bottom {\n  vertical-align: text-bottom !important; }\n\n.align-text-top {\n  vertical-align: text-top !important; }\n\n.bg-primary {\n  background-color: #46ddb0 !important; }\n\na.bg-primary:hover, a.bg-primary:focus,\nbutton.bg-primary:hover,\nbutton.bg-primary:focus {\n  background-color: #25cb99 !important; }\n\n.bg-secondary {\n  background-color: #6c757d !important; }\n\na.bg-secondary:hover, a.bg-secondary:focus,\nbutton.bg-secondary:hover,\nbutton.bg-secondary:focus {\n  background-color: #545b62 !important; }\n\n.bg-success {\n  background-color: #8bc34a !important; }\n\na.bg-success:hover, a.bg-success:focus,\nbutton.bg-success:hover,\nbutton.bg-success:focus {\n  background-color: #71a436 !important; }\n\n.bg-info {\n  background-color: #17a2b8 !important; }\n\na.bg-info:hover, a.bg-info:focus,\nbutton.bg-info:hover,\nbutton.bg-info:focus {\n  background-color: #117a8b !important; }\n\n.bg-warning {\n  background-color: #f89d13 !important; }\n\na.bg-warning:hover, a.bg-warning:focus,\nbutton.bg-warning:hover,\nbutton.bg-warning:focus {\n  background-color: #d28106 !important; }\n\n.bg-danger {\n  background-color: #f23a2e !important; }\n\na.bg-danger:hover, a.bg-danger:focus,\nbutton.bg-danger:hover,\nbutton.bg-danger:focus {\n  background-color: #df1b0e !important; }\n\n.bg-light {\n  background-color: #f8f9fa !important; }\n\na.bg-light:hover, a.bg-light:focus,\nbutton.bg-light:hover,\nbutton.bg-light:focus {\n  background-color: #dae0e5 !important; }\n\n.bg-dark {\n  background-color: #343a40 !important; }\n\na.bg-dark:hover, a.bg-dark:focus,\nbutton.bg-dark:hover,\nbutton.bg-dark:focus {\n  background-color: #1d2124 !important; }\n\n.bg-white {\n  background-color: #fff !important; }\n\n.bg-transparent {\n  background-color: transparent !important; }\n\n.border {\n  border: 1px solid #dee2e6 !important; }\n\n.border-top {\n  border-top: 1px solid #dee2e6 !important; }\n\n.border-right {\n  border-right: 1px solid #dee2e6 !important; }\n\n.border-bottom {\n  border-bottom: 1px solid #dee2e6 !important; }\n\n.border-left {\n  border-left: 1px solid #dee2e6 !important; }\n\n.border-0 {\n  border: 0 !important; }\n\n.border-top-0 {\n  border-top: 0 !important; }\n\n.border-right-0 {\n  border-right: 0 !important; }\n\n.border-bottom-0 {\n  border-bottom: 0 !important; }\n\n.border-left-0 {\n  border-left: 0 !important; }\n\n.border-primary {\n  border-color: #46ddb0 !important; }\n\n.border-secondary {\n  border-color: #6c757d !important; }\n\n.border-success {\n  border-color: #8bc34a !important; }\n\n.border-info {\n  border-color: #17a2b8 !important; }\n\n.border-warning {\n  border-color: #f89d13 !important; }\n\n.border-danger {\n  border-color: #f23a2e !important; }\n\n.border-light {\n  border-color: #f8f9fa !important; }\n\n.border-dark {\n  border-color: #343a40 !important; }\n\n.border-white {\n  border-color: #fff !important; }\n\n.rounded {\n  border-radius: 0.25rem !important; }\n\n.rounded-top {\n  border-top-left-radius: 0.25rem !important;\n  border-top-right-radius: 0.25rem !important; }\n\n.rounded-right {\n  border-top-right-radius: 0.25rem !important;\n  border-bottom-right-radius: 0.25rem !important; }\n\n.rounded-bottom {\n  border-bottom-right-radius: 0.25rem !important;\n  border-bottom-left-radius: 0.25rem !important; }\n\n.rounded-left {\n  border-top-left-radius: 0.25rem !important;\n  border-bottom-left-radius: 0.25rem !important; }\n\n.rounded-circle {\n  border-radius: 50% !important; }\n\n.rounded-0 {\n  border-radius: 0 !important; }\n\n.clearfix::after {\n  display: block;\n  clear: both;\n  content: \"\"; }\n\n.d-none {\n  display: none !important; }\n\n.d-inline {\n  display: inline !important; }\n\n.d-inline-block {\n  display: inline-block !important; }\n\n.d-block {\n  display: block !important; }\n\n.d-table {\n  display: table !important; }\n\n.d-table-row {\n  display: table-row !important; }\n\n.d-table-cell {\n  display: table-cell !important; }\n\n.d-flex {\n  display: -webkit-box !important;\n  display: -ms-flexbox !important;\n  display: flex !important; }\n\n.d-inline-flex {\n  display: -webkit-inline-box !important;\n  display: -ms-inline-flexbox !important;\n  display: inline-flex !important; }\n\n@media (min-width: 576px) {\n  .d-sm-none {\n    display: none !important; }\n  .d-sm-inline {\n    display: inline !important; }\n  .d-sm-inline-block {\n    display: inline-block !important; }\n  .d-sm-block {\n    display: block !important; }\n  .d-sm-table {\n    display: table !important; }\n  .d-sm-table-row {\n    display: table-row !important; }\n  .d-sm-table-cell {\n    display: table-cell !important; }\n  .d-sm-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-sm-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n@media (min-width: 768px) {\n  .d-md-none {\n    display: none !important; }\n  .d-md-inline {\n    display: inline !important; }\n  .d-md-inline-block {\n    display: inline-block !important; }\n  .d-md-block {\n    display: block !important; }\n  .d-md-table {\n    display: table !important; }\n  .d-md-table-row {\n    display: table-row !important; }\n  .d-md-table-cell {\n    display: table-cell !important; }\n  .d-md-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-md-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n@media (min-width: 992px) {\n  .d-lg-none {\n    display: none !important; }\n  .d-lg-inline {\n    display: inline !important; }\n  .d-lg-inline-block {\n    display: inline-block !important; }\n  .d-lg-block {\n    display: block !important; }\n  .d-lg-table {\n    display: table !important; }\n  .d-lg-table-row {\n    display: table-row !important; }\n  .d-lg-table-cell {\n    display: table-cell !important; }\n  .d-lg-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-lg-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n@media (min-width: 1200px) {\n  .d-xl-none {\n    display: none !important; }\n  .d-xl-inline {\n    display: inline !important; }\n  .d-xl-inline-block {\n    display: inline-block !important; }\n  .d-xl-block {\n    display: block !important; }\n  .d-xl-table {\n    display: table !important; }\n  .d-xl-table-row {\n    display: table-row !important; }\n  .d-xl-table-cell {\n    display: table-cell !important; }\n  .d-xl-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-xl-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n@media print {\n  .d-print-none {\n    display: none !important; }\n  .d-print-inline {\n    display: inline !important; }\n  .d-print-inline-block {\n    display: inline-block !important; }\n  .d-print-block {\n    display: block !important; }\n  .d-print-table {\n    display: table !important; }\n  .d-print-table-row {\n    display: table-row !important; }\n  .d-print-table-cell {\n    display: table-cell !important; }\n  .d-print-flex {\n    display: -webkit-box !important;\n    display: -ms-flexbox !important;\n    display: flex !important; }\n  .d-print-inline-flex {\n    display: -webkit-inline-box !important;\n    display: -ms-inline-flexbox !important;\n    display: inline-flex !important; } }\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  width: 100%;\n  padding: 0;\n  overflow: hidden; }\n  .embed-responsive::before {\n    display: block;\n    content: \"\"; }\n  .embed-responsive .embed-responsive-item,\n  .embed-responsive iframe,\n  .embed-responsive embed,\n  .embed-responsive object,\n  .embed-responsive video {\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    border: 0; }\n\n.embed-responsive-21by9::before {\n  padding-top: 42.85714%; }\n\n.embed-responsive-16by9::before {\n  padding-top: 56.25%; }\n\n.embed-responsive-4by3::before {\n  padding-top: 75%; }\n\n.embed-responsive-1by1::before {\n  padding-top: 100%; }\n\n.flex-row {\n  -webkit-box-orient: horizontal !important;\n  -webkit-box-direction: normal !important;\n  -ms-flex-direction: row !important;\n  flex-direction: row !important; }\n\n.flex-column {\n  -webkit-box-orient: vertical !important;\n  -webkit-box-direction: normal !important;\n  -ms-flex-direction: column !important;\n  flex-direction: column !important; }\n\n.flex-row-reverse {\n  -webkit-box-orient: horizontal !important;\n  -webkit-box-direction: reverse !important;\n  -ms-flex-direction: row-reverse !important;\n  flex-direction: row-reverse !important; }\n\n.flex-column-reverse {\n  -webkit-box-orient: vertical !important;\n  -webkit-box-direction: reverse !important;\n  -ms-flex-direction: column-reverse !important;\n  flex-direction: column-reverse !important; }\n\n.flex-wrap {\n  -ms-flex-wrap: wrap !important;\n  flex-wrap: wrap !important; }\n\n.flex-nowrap {\n  -ms-flex-wrap: nowrap !important;\n  flex-wrap: nowrap !important; }\n\n.flex-wrap-reverse {\n  -ms-flex-wrap: wrap-reverse !important;\n  flex-wrap: wrap-reverse !important; }\n\n.flex-fill {\n  -webkit-box-flex: 1 !important;\n  -ms-flex: 1 1 auto !important;\n  flex: 1 1 auto !important; }\n\n.flex-grow-0 {\n  -webkit-box-flex: 0 !important;\n  -ms-flex-positive: 0 !important;\n  flex-grow: 0 !important; }\n\n.flex-grow-1 {\n  -webkit-box-flex: 1 !important;\n  -ms-flex-positive: 1 !important;\n  flex-grow: 1 !important; }\n\n.flex-shrink-0 {\n  -ms-flex-negative: 0 !important;\n  flex-shrink: 0 !important; }\n\n.flex-shrink-1 {\n  -ms-flex-negative: 1 !important;\n  flex-shrink: 1 !important; }\n\n.justify-content-start {\n  -webkit-box-pack: start !important;\n  -ms-flex-pack: start !important;\n  justify-content: flex-start !important; }\n\n.justify-content-end {\n  -webkit-box-pack: end !important;\n  -ms-flex-pack: end !important;\n  justify-content: flex-end !important; }\n\n.justify-content-center {\n  -webkit-box-pack: center !important;\n  -ms-flex-pack: center !important;\n  justify-content: center !important; }\n\n.justify-content-between {\n  -webkit-box-pack: justify !important;\n  -ms-flex-pack: justify !important;\n  justify-content: space-between !important; }\n\n.justify-content-around {\n  -ms-flex-pack: distribute !important;\n  justify-content: space-around !important; }\n\n.align-items-start {\n  -webkit-box-align: start !important;\n  -ms-flex-align: start !important;\n  align-items: flex-start !important; }\n\n.align-items-end {\n  -webkit-box-align: end !important;\n  -ms-flex-align: end !important;\n  align-items: flex-end !important; }\n\n.align-items-center {\n  -webkit-box-align: center !important;\n  -ms-flex-align: center !important;\n  align-items: center !important; }\n\n.align-items-baseline {\n  -webkit-box-align: baseline !important;\n  -ms-flex-align: baseline !important;\n  align-items: baseline !important; }\n\n.align-items-stretch {\n  -webkit-box-align: stretch !important;\n  -ms-flex-align: stretch !important;\n  align-items: stretch !important; }\n\n.align-content-start {\n  -ms-flex-line-pack: start !important;\n  align-content: flex-start !important; }\n\n.align-content-end {\n  -ms-flex-line-pack: end !important;\n  align-content: flex-end !important; }\n\n.align-content-center {\n  -ms-flex-line-pack: center !important;\n  align-content: center !important; }\n\n.align-content-between {\n  -ms-flex-line-pack: justify !important;\n  align-content: space-between !important; }\n\n.align-content-around {\n  -ms-flex-line-pack: distribute !important;\n  align-content: space-around !important; }\n\n.align-content-stretch {\n  -ms-flex-line-pack: stretch !important;\n  align-content: stretch !important; }\n\n.align-self-auto {\n  -ms-flex-item-align: auto !important;\n  align-self: auto !important; }\n\n.align-self-start {\n  -ms-flex-item-align: start !important;\n  align-self: flex-start !important; }\n\n.align-self-end {\n  -ms-flex-item-align: end !important;\n  align-self: flex-end !important; }\n\n.align-self-center {\n  -ms-flex-item-align: center !important;\n  align-self: center !important; }\n\n.align-self-baseline {\n  -ms-flex-item-align: baseline !important;\n  align-self: baseline !important; }\n\n.align-self-stretch {\n  -ms-flex-item-align: stretch !important;\n  align-self: stretch !important; }\n\n@media (min-width: 576px) {\n  .flex-sm-row {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: row !important;\n    flex-direction: row !important; }\n  .flex-sm-column {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: column !important;\n    flex-direction: column !important; }\n  .flex-sm-row-reverse {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: row-reverse !important;\n    flex-direction: row-reverse !important; }\n  .flex-sm-column-reverse {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: column-reverse !important;\n    flex-direction: column-reverse !important; }\n  .flex-sm-wrap {\n    -ms-flex-wrap: wrap !important;\n    flex-wrap: wrap !important; }\n  .flex-sm-nowrap {\n    -ms-flex-wrap: nowrap !important;\n    flex-wrap: nowrap !important; }\n  .flex-sm-wrap-reverse {\n    -ms-flex-wrap: wrap-reverse !important;\n    flex-wrap: wrap-reverse !important; }\n  .flex-sm-fill {\n    -webkit-box-flex: 1 !important;\n    -ms-flex: 1 1 auto !important;\n    flex: 1 1 auto !important; }\n  .flex-sm-grow-0 {\n    -webkit-box-flex: 0 !important;\n    -ms-flex-positive: 0 !important;\n    flex-grow: 0 !important; }\n  .flex-sm-grow-1 {\n    -webkit-box-flex: 1 !important;\n    -ms-flex-positive: 1 !important;\n    flex-grow: 1 !important; }\n  .flex-sm-shrink-0 {\n    -ms-flex-negative: 0 !important;\n    flex-shrink: 0 !important; }\n  .flex-sm-shrink-1 {\n    -ms-flex-negative: 1 !important;\n    flex-shrink: 1 !important; }\n  .justify-content-sm-start {\n    -webkit-box-pack: start !important;\n    -ms-flex-pack: start !important;\n    justify-content: flex-start !important; }\n  .justify-content-sm-end {\n    -webkit-box-pack: end !important;\n    -ms-flex-pack: end !important;\n    justify-content: flex-end !important; }\n  .justify-content-sm-center {\n    -webkit-box-pack: center !important;\n    -ms-flex-pack: center !important;\n    justify-content: center !important; }\n  .justify-content-sm-between {\n    -webkit-box-pack: justify !important;\n    -ms-flex-pack: justify !important;\n    justify-content: space-between !important; }\n  .justify-content-sm-around {\n    -ms-flex-pack: distribute !important;\n    justify-content: space-around !important; }\n  .align-items-sm-start {\n    -webkit-box-align: start !important;\n    -ms-flex-align: start !important;\n    align-items: flex-start !important; }\n  .align-items-sm-end {\n    -webkit-box-align: end !important;\n    -ms-flex-align: end !important;\n    align-items: flex-end !important; }\n  .align-items-sm-center {\n    -webkit-box-align: center !important;\n    -ms-flex-align: center !important;\n    align-items: center !important; }\n  .align-items-sm-baseline {\n    -webkit-box-align: baseline !important;\n    -ms-flex-align: baseline !important;\n    align-items: baseline !important; }\n  .align-items-sm-stretch {\n    -webkit-box-align: stretch !important;\n    -ms-flex-align: stretch !important;\n    align-items: stretch !important; }\n  .align-content-sm-start {\n    -ms-flex-line-pack: start !important;\n    align-content: flex-start !important; }\n  .align-content-sm-end {\n    -ms-flex-line-pack: end !important;\n    align-content: flex-end !important; }\n  .align-content-sm-center {\n    -ms-flex-line-pack: center !important;\n    align-content: center !important; }\n  .align-content-sm-between {\n    -ms-flex-line-pack: justify !important;\n    align-content: space-between !important; }\n  .align-content-sm-around {\n    -ms-flex-line-pack: distribute !important;\n    align-content: space-around !important; }\n  .align-content-sm-stretch {\n    -ms-flex-line-pack: stretch !important;\n    align-content: stretch !important; }\n  .align-self-sm-auto {\n    -ms-flex-item-align: auto !important;\n    align-self: auto !important; }\n  .align-self-sm-start {\n    -ms-flex-item-align: start !important;\n    align-self: flex-start !important; }\n  .align-self-sm-end {\n    -ms-flex-item-align: end !important;\n    align-self: flex-end !important; }\n  .align-self-sm-center {\n    -ms-flex-item-align: center !important;\n    align-self: center !important; }\n  .align-self-sm-baseline {\n    -ms-flex-item-align: baseline !important;\n    align-self: baseline !important; }\n  .align-self-sm-stretch {\n    -ms-flex-item-align: stretch !important;\n    align-self: stretch !important; } }\n\n@media (min-width: 768px) {\n  .flex-md-row {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: row !important;\n    flex-direction: row !important; }\n  .flex-md-column {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: column !important;\n    flex-direction: column !important; }\n  .flex-md-row-reverse {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: row-reverse !important;\n    flex-direction: row-reverse !important; }\n  .flex-md-column-reverse {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: column-reverse !important;\n    flex-direction: column-reverse !important; }\n  .flex-md-wrap {\n    -ms-flex-wrap: wrap !important;\n    flex-wrap: wrap !important; }\n  .flex-md-nowrap {\n    -ms-flex-wrap: nowrap !important;\n    flex-wrap: nowrap !important; }\n  .flex-md-wrap-reverse {\n    -ms-flex-wrap: wrap-reverse !important;\n    flex-wrap: wrap-reverse !important; }\n  .flex-md-fill {\n    -webkit-box-flex: 1 !important;\n    -ms-flex: 1 1 auto !important;\n    flex: 1 1 auto !important; }\n  .flex-md-grow-0 {\n    -webkit-box-flex: 0 !important;\n    -ms-flex-positive: 0 !important;\n    flex-grow: 0 !important; }\n  .flex-md-grow-1 {\n    -webkit-box-flex: 1 !important;\n    -ms-flex-positive: 1 !important;\n    flex-grow: 1 !important; }\n  .flex-md-shrink-0 {\n    -ms-flex-negative: 0 !important;\n    flex-shrink: 0 !important; }\n  .flex-md-shrink-1 {\n    -ms-flex-negative: 1 !important;\n    flex-shrink: 1 !important; }\n  .justify-content-md-start {\n    -webkit-box-pack: start !important;\n    -ms-flex-pack: start !important;\n    justify-content: flex-start !important; }\n  .justify-content-md-end {\n    -webkit-box-pack: end !important;\n    -ms-flex-pack: end !important;\n    justify-content: flex-end !important; }\n  .justify-content-md-center {\n    -webkit-box-pack: center !important;\n    -ms-flex-pack: center !important;\n    justify-content: center !important; }\n  .justify-content-md-between {\n    -webkit-box-pack: justify !important;\n    -ms-flex-pack: justify !important;\n    justify-content: space-between !important; }\n  .justify-content-md-around {\n    -ms-flex-pack: distribute !important;\n    justify-content: space-around !important; }\n  .align-items-md-start {\n    -webkit-box-align: start !important;\n    -ms-flex-align: start !important;\n    align-items: flex-start !important; }\n  .align-items-md-end {\n    -webkit-box-align: end !important;\n    -ms-flex-align: end !important;\n    align-items: flex-end !important; }\n  .align-items-md-center {\n    -webkit-box-align: center !important;\n    -ms-flex-align: center !important;\n    align-items: center !important; }\n  .align-items-md-baseline {\n    -webkit-box-align: baseline !important;\n    -ms-flex-align: baseline !important;\n    align-items: baseline !important; }\n  .align-items-md-stretch {\n    -webkit-box-align: stretch !important;\n    -ms-flex-align: stretch !important;\n    align-items: stretch !important; }\n  .align-content-md-start {\n    -ms-flex-line-pack: start !important;\n    align-content: flex-start !important; }\n  .align-content-md-end {\n    -ms-flex-line-pack: end !important;\n    align-content: flex-end !important; }\n  .align-content-md-center {\n    -ms-flex-line-pack: center !important;\n    align-content: center !important; }\n  .align-content-md-between {\n    -ms-flex-line-pack: justify !important;\n    align-content: space-between !important; }\n  .align-content-md-around {\n    -ms-flex-line-pack: distribute !important;\n    align-content: space-around !important; }\n  .align-content-md-stretch {\n    -ms-flex-line-pack: stretch !important;\n    align-content: stretch !important; }\n  .align-self-md-auto {\n    -ms-flex-item-align: auto !important;\n    align-self: auto !important; }\n  .align-self-md-start {\n    -ms-flex-item-align: start !important;\n    align-self: flex-start !important; }\n  .align-self-md-end {\n    -ms-flex-item-align: end !important;\n    align-self: flex-end !important; }\n  .align-self-md-center {\n    -ms-flex-item-align: center !important;\n    align-self: center !important; }\n  .align-self-md-baseline {\n    -ms-flex-item-align: baseline !important;\n    align-self: baseline !important; }\n  .align-self-md-stretch {\n    -ms-flex-item-align: stretch !important;\n    align-self: stretch !important; } }\n\n@media (min-width: 992px) {\n  .flex-lg-row {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: row !important;\n    flex-direction: row !important; }\n  .flex-lg-column {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: column !important;\n    flex-direction: column !important; }\n  .flex-lg-row-reverse {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: row-reverse !important;\n    flex-direction: row-reverse !important; }\n  .flex-lg-column-reverse {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: column-reverse !important;\n    flex-direction: column-reverse !important; }\n  .flex-lg-wrap {\n    -ms-flex-wrap: wrap !important;\n    flex-wrap: wrap !important; }\n  .flex-lg-nowrap {\n    -ms-flex-wrap: nowrap !important;\n    flex-wrap: nowrap !important; }\n  .flex-lg-wrap-reverse {\n    -ms-flex-wrap: wrap-reverse !important;\n    flex-wrap: wrap-reverse !important; }\n  .flex-lg-fill {\n    -webkit-box-flex: 1 !important;\n    -ms-flex: 1 1 auto !important;\n    flex: 1 1 auto !important; }\n  .flex-lg-grow-0 {\n    -webkit-box-flex: 0 !important;\n    -ms-flex-positive: 0 !important;\n    flex-grow: 0 !important; }\n  .flex-lg-grow-1 {\n    -webkit-box-flex: 1 !important;\n    -ms-flex-positive: 1 !important;\n    flex-grow: 1 !important; }\n  .flex-lg-shrink-0 {\n    -ms-flex-negative: 0 !important;\n    flex-shrink: 0 !important; }\n  .flex-lg-shrink-1 {\n    -ms-flex-negative: 1 !important;\n    flex-shrink: 1 !important; }\n  .justify-content-lg-start {\n    -webkit-box-pack: start !important;\n    -ms-flex-pack: start !important;\n    justify-content: flex-start !important; }\n  .justify-content-lg-end {\n    -webkit-box-pack: end !important;\n    -ms-flex-pack: end !important;\n    justify-content: flex-end !important; }\n  .justify-content-lg-center {\n    -webkit-box-pack: center !important;\n    -ms-flex-pack: center !important;\n    justify-content: center !important; }\n  .justify-content-lg-between {\n    -webkit-box-pack: justify !important;\n    -ms-flex-pack: justify !important;\n    justify-content: space-between !important; }\n  .justify-content-lg-around {\n    -ms-flex-pack: distribute !important;\n    justify-content: space-around !important; }\n  .align-items-lg-start {\n    -webkit-box-align: start !important;\n    -ms-flex-align: start !important;\n    align-items: flex-start !important; }\n  .align-items-lg-end {\n    -webkit-box-align: end !important;\n    -ms-flex-align: end !important;\n    align-items: flex-end !important; }\n  .align-items-lg-center {\n    -webkit-box-align: center !important;\n    -ms-flex-align: center !important;\n    align-items: center !important; }\n  .align-items-lg-baseline {\n    -webkit-box-align: baseline !important;\n    -ms-flex-align: baseline !important;\n    align-items: baseline !important; }\n  .align-items-lg-stretch {\n    -webkit-box-align: stretch !important;\n    -ms-flex-align: stretch !important;\n    align-items: stretch !important; }\n  .align-content-lg-start {\n    -ms-flex-line-pack: start !important;\n    align-content: flex-start !important; }\n  .align-content-lg-end {\n    -ms-flex-line-pack: end !important;\n    align-content: flex-end !important; }\n  .align-content-lg-center {\n    -ms-flex-line-pack: center !important;\n    align-content: center !important; }\n  .align-content-lg-between {\n    -ms-flex-line-pack: justify !important;\n    align-content: space-between !important; }\n  .align-content-lg-around {\n    -ms-flex-line-pack: distribute !important;\n    align-content: space-around !important; }\n  .align-content-lg-stretch {\n    -ms-flex-line-pack: stretch !important;\n    align-content: stretch !important; }\n  .align-self-lg-auto {\n    -ms-flex-item-align: auto !important;\n    align-self: auto !important; }\n  .align-self-lg-start {\n    -ms-flex-item-align: start !important;\n    align-self: flex-start !important; }\n  .align-self-lg-end {\n    -ms-flex-item-align: end !important;\n    align-self: flex-end !important; }\n  .align-self-lg-center {\n    -ms-flex-item-align: center !important;\n    align-self: center !important; }\n  .align-self-lg-baseline {\n    -ms-flex-item-align: baseline !important;\n    align-self: baseline !important; }\n  .align-self-lg-stretch {\n    -ms-flex-item-align: stretch !important;\n    align-self: stretch !important; } }\n\n@media (min-width: 1200px) {\n  .flex-xl-row {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: row !important;\n    flex-direction: row !important; }\n  .flex-xl-column {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: normal !important;\n    -ms-flex-direction: column !important;\n    flex-direction: column !important; }\n  .flex-xl-row-reverse {\n    -webkit-box-orient: horizontal !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: row-reverse !important;\n    flex-direction: row-reverse !important; }\n  .flex-xl-column-reverse {\n    -webkit-box-orient: vertical !important;\n    -webkit-box-direction: reverse !important;\n    -ms-flex-direction: column-reverse !important;\n    flex-direction: column-reverse !important; }\n  .flex-xl-wrap {\n    -ms-flex-wrap: wrap !important;\n    flex-wrap: wrap !important; }\n  .flex-xl-nowrap {\n    -ms-flex-wrap: nowrap !important;\n    flex-wrap: nowrap !important; }\n  .flex-xl-wrap-reverse {\n    -ms-flex-wrap: wrap-reverse !important;\n    flex-wrap: wrap-reverse !important; }\n  .flex-xl-fill {\n    -webkit-box-flex: 1 !important;\n    -ms-flex: 1 1 auto !important;\n    flex: 1 1 auto !important; }\n  .flex-xl-grow-0 {\n    -webkit-box-flex: 0 !important;\n    -ms-flex-positive: 0 !important;\n    flex-grow: 0 !important; }\n  .flex-xl-grow-1 {\n    -webkit-box-flex: 1 !important;\n    -ms-flex-positive: 1 !important;\n    flex-grow: 1 !important; }\n  .flex-xl-shrink-0 {\n    -ms-flex-negative: 0 !important;\n    flex-shrink: 0 !important; }\n  .flex-xl-shrink-1 {\n    -ms-flex-negative: 1 !important;\n    flex-shrink: 1 !important; }\n  .justify-content-xl-start {\n    -webkit-box-pack: start !important;\n    -ms-flex-pack: start !important;\n    justify-content: flex-start !important; }\n  .justify-content-xl-end {\n    -webkit-box-pack: end !important;\n    -ms-flex-pack: end !important;\n    justify-content: flex-end !important; }\n  .justify-content-xl-center {\n    -webkit-box-pack: center !important;\n    -ms-flex-pack: center !important;\n    justify-content: center !important; }\n  .justify-content-xl-between {\n    -webkit-box-pack: justify !important;\n    -ms-flex-pack: justify !important;\n    justify-content: space-between !important; }\n  .justify-content-xl-around {\n    -ms-flex-pack: distribute !important;\n    justify-content: space-around !important; }\n  .align-items-xl-start {\n    -webkit-box-align: start !important;\n    -ms-flex-align: start !important;\n    align-items: flex-start !important; }\n  .align-items-xl-end {\n    -webkit-box-align: end !important;\n    -ms-flex-align: end !important;\n    align-items: flex-end !important; }\n  .align-items-xl-center {\n    -webkit-box-align: center !important;\n    -ms-flex-align: center !important;\n    align-items: center !important; }\n  .align-items-xl-baseline {\n    -webkit-box-align: baseline !important;\n    -ms-flex-align: baseline !important;\n    align-items: baseline !important; }\n  .align-items-xl-stretch {\n    -webkit-box-align: stretch !important;\n    -ms-flex-align: stretch !important;\n    align-items: stretch !important; }\n  .align-content-xl-start {\n    -ms-flex-line-pack: start !important;\n    align-content: flex-start !important; }\n  .align-content-xl-end {\n    -ms-flex-line-pack: end !important;\n    align-content: flex-end !important; }\n  .align-content-xl-center {\n    -ms-flex-line-pack: center !important;\n    align-content: center !important; }\n  .align-content-xl-between {\n    -ms-flex-line-pack: justify !important;\n    align-content: space-between !important; }\n  .align-content-xl-around {\n    -ms-flex-line-pack: distribute !important;\n    align-content: space-around !important; }\n  .align-content-xl-stretch {\n    -ms-flex-line-pack: stretch !important;\n    align-content: stretch !important; }\n  .align-self-xl-auto {\n    -ms-flex-item-align: auto !important;\n    align-self: auto !important; }\n  .align-self-xl-start {\n    -ms-flex-item-align: start !important;\n    align-self: flex-start !important; }\n  .align-self-xl-end {\n    -ms-flex-item-align: end !important;\n    align-self: flex-end !important; }\n  .align-self-xl-center {\n    -ms-flex-item-align: center !important;\n    align-self: center !important; }\n  .align-self-xl-baseline {\n    -ms-flex-item-align: baseline !important;\n    align-self: baseline !important; }\n  .align-self-xl-stretch {\n    -ms-flex-item-align: stretch !important;\n    align-self: stretch !important; } }\n\n.float-left {\n  float: left !important; }\n\n.float-right {\n  float: right !important; }\n\n.float-none {\n  float: none !important; }\n\n@media (min-width: 576px) {\n  .float-sm-left {\n    float: left !important; }\n  .float-sm-right {\n    float: right !important; }\n  .float-sm-none {\n    float: none !important; } }\n\n@media (min-width: 768px) {\n  .float-md-left {\n    float: left !important; }\n  .float-md-right {\n    float: right !important; }\n  .float-md-none {\n    float: none !important; } }\n\n@media (min-width: 992px) {\n  .float-lg-left {\n    float: left !important; }\n  .float-lg-right {\n    float: right !important; }\n  .float-lg-none {\n    float: none !important; } }\n\n@media (min-width: 1200px) {\n  .float-xl-left {\n    float: left !important; }\n  .float-xl-right {\n    float: right !important; }\n  .float-xl-none {\n    float: none !important; } }\n\n.position-static {\n  position: static !important; }\n\n.position-relative {\n  position: relative !important; }\n\n.position-absolute {\n  position: absolute !important; }\n\n.position-fixed {\n  position: fixed !important; }\n\n.position-sticky {\n  position: -webkit-sticky !important;\n  position: sticky !important; }\n\n.fixed-top {\n  position: fixed;\n  top: 0;\n  right: 0;\n  left: 0;\n  z-index: 1030; }\n\n.fixed-bottom {\n  position: fixed;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1030; }\n\n@supports ((position: -webkit-sticky) or (position: sticky)) {\n  .sticky-top {\n    position: -webkit-sticky;\n    position: sticky;\n    top: 0;\n    z-index: 1020; } }\n\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border: 0; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  overflow: visible;\n  clip: auto;\n  white-space: normal; }\n\n.shadow-sm {\n  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;\n  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }\n\n.shadow {\n  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;\n  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }\n\n.shadow-lg {\n  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;\n  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }\n\n.shadow-none {\n  -webkit-box-shadow: none !important;\n  box-shadow: none !important; }\n\n.w-25 {\n  width: 25% !important; }\n\n.w-50 {\n  width: 50% !important; }\n\n.w-75 {\n  width: 75% !important; }\n\n.w-100 {\n  width: 100% !important; }\n\n.w-auto {\n  width: auto !important; }\n\n.h-25 {\n  height: 25% !important; }\n\n.h-50 {\n  height: 50% !important; }\n\n.h-75 {\n  height: 75% !important; }\n\n.h-100 {\n  height: 100% !important; }\n\n.h-auto {\n  height: auto !important; }\n\n.mw-100 {\n  max-width: 100% !important; }\n\n.mh-100 {\n  max-height: 100% !important; }\n\n.m-0 {\n  margin: 0 !important; }\n\n.mt-0,\n.my-0 {\n  margin-top: 0 !important; }\n\n.mr-0,\n.mx-0 {\n  margin-right: 0 !important; }\n\n.mb-0,\n.my-0 {\n  margin-bottom: 0 !important; }\n\n.ml-0,\n.mx-0 {\n  margin-left: 0 !important; }\n\n.m-1 {\n  margin: 0.25rem !important; }\n\n.mt-1,\n.my-1 {\n  margin-top: 0.25rem !important; }\n\n.mr-1,\n.mx-1 {\n  margin-right: 0.25rem !important; }\n\n.mb-1,\n.my-1 {\n  margin-bottom: 0.25rem !important; }\n\n.ml-1,\n.mx-1 {\n  margin-left: 0.25rem !important; }\n\n.m-2 {\n  margin: 0.5rem !important; }\n\n.mt-2,\n.my-2 {\n  margin-top: 0.5rem !important; }\n\n.mr-2,\n.mx-2 {\n  margin-right: 0.5rem !important; }\n\n.mb-2,\n.my-2 {\n  margin-bottom: 0.5rem !important; }\n\n.ml-2,\n.mx-2 {\n  margin-left: 0.5rem !important; }\n\n.m-3 {\n  margin: 1rem !important; }\n\n.mt-3,\n.my-3 {\n  margin-top: 1rem !important; }\n\n.mr-3,\n.mx-3 {\n  margin-right: 1rem !important; }\n\n.mb-3,\n.my-3 {\n  margin-bottom: 1rem !important; }\n\n.ml-3,\n.mx-3 {\n  margin-left: 1rem !important; }\n\n.m-4 {\n  margin: 1.5rem !important; }\n\n.mt-4,\n.my-4 {\n  margin-top: 1.5rem !important; }\n\n.mr-4,\n.mx-4 {\n  margin-right: 1.5rem !important; }\n\n.mb-4,\n.my-4 {\n  margin-bottom: 1.5rem !important; }\n\n.ml-4,\n.mx-4 {\n  margin-left: 1.5rem !important; }\n\n.m-5 {\n  margin: 3rem !important; }\n\n.mt-5,\n.my-5 {\n  margin-top: 3rem !important; }\n\n.mr-5,\n.mx-5 {\n  margin-right: 3rem !important; }\n\n.mb-5,\n.my-5 {\n  margin-bottom: 3rem !important; }\n\n.ml-5,\n.mx-5 {\n  margin-left: 3rem !important; }\n\n.p-0 {\n  padding: 0 !important; }\n\n.pt-0,\n.py-0 {\n  padding-top: 0 !important; }\n\n.pr-0,\n.px-0 {\n  padding-right: 0 !important; }\n\n.pb-0,\n.py-0 {\n  padding-bottom: 0 !important; }\n\n.pl-0,\n.px-0 {\n  padding-left: 0 !important; }\n\n.p-1 {\n  padding: 0.25rem !important; }\n\n.pt-1,\n.py-1 {\n  padding-top: 0.25rem !important; }\n\n.pr-1,\n.px-1 {\n  padding-right: 0.25rem !important; }\n\n.pb-1,\n.py-1 {\n  padding-bottom: 0.25rem !important; }\n\n.pl-1,\n.px-1 {\n  padding-left: 0.25rem !important; }\n\n.p-2 {\n  padding: 0.5rem !important; }\n\n.pt-2,\n.py-2 {\n  padding-top: 0.5rem !important; }\n\n.pr-2,\n.px-2 {\n  padding-right: 0.5rem !important; }\n\n.pb-2,\n.py-2 {\n  padding-bottom: 0.5rem !important; }\n\n.pl-2,\n.px-2 {\n  padding-left: 0.5rem !important; }\n\n.p-3 {\n  padding: 1rem !important; }\n\n.pt-3,\n.py-3 {\n  padding-top: 1rem !important; }\n\n.pr-3,\n.px-3 {\n  padding-right: 1rem !important; }\n\n.pb-3,\n.py-3 {\n  padding-bottom: 1rem !important; }\n\n.pl-3,\n.px-3 {\n  padding-left: 1rem !important; }\n\n.p-4 {\n  padding: 1.5rem !important; }\n\n.pt-4,\n.py-4 {\n  padding-top: 1.5rem !important; }\n\n.pr-4,\n.px-4 {\n  padding-right: 1.5rem !important; }\n\n.pb-4,\n.py-4 {\n  padding-bottom: 1.5rem !important; }\n\n.pl-4,\n.px-4 {\n  padding-left: 1.5rem !important; }\n\n.p-5 {\n  padding: 3rem !important; }\n\n.pt-5,\n.py-5 {\n  padding-top: 3rem !important; }\n\n.pr-5,\n.px-5 {\n  padding-right: 3rem !important; }\n\n.pb-5,\n.py-5 {\n  padding-bottom: 3rem !important; }\n\n.pl-5,\n.px-5 {\n  padding-left: 3rem !important; }\n\n.m-auto {\n  margin: auto !important; }\n\n.mt-auto,\n.my-auto {\n  margin-top: auto !important; }\n\n.mr-auto,\n.mx-auto {\n  margin-right: auto !important; }\n\n.mb-auto,\n.my-auto {\n  margin-bottom: auto !important; }\n\n.ml-auto,\n.mx-auto {\n  margin-left: auto !important; }\n\n@media (min-width: 576px) {\n  .m-sm-0 {\n    margin: 0 !important; }\n  .mt-sm-0,\n  .my-sm-0 {\n    margin-top: 0 !important; }\n  .mr-sm-0,\n  .mx-sm-0 {\n    margin-right: 0 !important; }\n  .mb-sm-0,\n  .my-sm-0 {\n    margin-bottom: 0 !important; }\n  .ml-sm-0,\n  .mx-sm-0 {\n    margin-left: 0 !important; }\n  .m-sm-1 {\n    margin: 0.25rem !important; }\n  .mt-sm-1,\n  .my-sm-1 {\n    margin-top: 0.25rem !important; }\n  .mr-sm-1,\n  .mx-sm-1 {\n    margin-right: 0.25rem !important; }\n  .mb-sm-1,\n  .my-sm-1 {\n    margin-bottom: 0.25rem !important; }\n  .ml-sm-1,\n  .mx-sm-1 {\n    margin-left: 0.25rem !important; }\n  .m-sm-2 {\n    margin: 0.5rem !important; }\n  .mt-sm-2,\n  .my-sm-2 {\n    margin-top: 0.5rem !important; }\n  .mr-sm-2,\n  .mx-sm-2 {\n    margin-right: 0.5rem !important; }\n  .mb-sm-2,\n  .my-sm-2 {\n    margin-bottom: 0.5rem !important; }\n  .ml-sm-2,\n  .mx-sm-2 {\n    margin-left: 0.5rem !important; }\n  .m-sm-3 {\n    margin: 1rem !important; }\n  .mt-sm-3,\n  .my-sm-3 {\n    margin-top: 1rem !important; }\n  .mr-sm-3,\n  .mx-sm-3 {\n    margin-right: 1rem !important; }\n  .mb-sm-3,\n  .my-sm-3 {\n    margin-bottom: 1rem !important; }\n  .ml-sm-3,\n  .mx-sm-3 {\n    margin-left: 1rem !important; }\n  .m-sm-4 {\n    margin: 1.5rem !important; }\n  .mt-sm-4,\n  .my-sm-4 {\n    margin-top: 1.5rem !important; }\n  .mr-sm-4,\n  .mx-sm-4 {\n    margin-right: 1.5rem !important; }\n  .mb-sm-4,\n  .my-sm-4 {\n    margin-bottom: 1.5rem !important; }\n  .ml-sm-4,\n  .mx-sm-4 {\n    margin-left: 1.5rem !important; }\n  .m-sm-5 {\n    margin: 3rem !important; }\n  .mt-sm-5,\n  .my-sm-5 {\n    margin-top: 3rem !important; }\n  .mr-sm-5,\n  .mx-sm-5 {\n    margin-right: 3rem !important; }\n  .mb-sm-5,\n  .my-sm-5 {\n    margin-bottom: 3rem !important; }\n  .ml-sm-5,\n  .mx-sm-5 {\n    margin-left: 3rem !important; }\n  .p-sm-0 {\n    padding: 0 !important; }\n  .pt-sm-0,\n  .py-sm-0 {\n    padding-top: 0 !important; }\n  .pr-sm-0,\n  .px-sm-0 {\n    padding-right: 0 !important; }\n  .pb-sm-0,\n  .py-sm-0 {\n    padding-bottom: 0 !important; }\n  .pl-sm-0,\n  .px-sm-0 {\n    padding-left: 0 !important; }\n  .p-sm-1 {\n    padding: 0.25rem !important; }\n  .pt-sm-1,\n  .py-sm-1 {\n    padding-top: 0.25rem !important; }\n  .pr-sm-1,\n  .px-sm-1 {\n    padding-right: 0.25rem !important; }\n  .pb-sm-1,\n  .py-sm-1 {\n    padding-bottom: 0.25rem !important; }\n  .pl-sm-1,\n  .px-sm-1 {\n    padding-left: 0.25rem !important; }\n  .p-sm-2 {\n    padding: 0.5rem !important; }\n  .pt-sm-2,\n  .py-sm-2 {\n    padding-top: 0.5rem !important; }\n  .pr-sm-2,\n  .px-sm-2 {\n    padding-right: 0.5rem !important; }\n  .pb-sm-2,\n  .py-sm-2 {\n    padding-bottom: 0.5rem !important; }\n  .pl-sm-2,\n  .px-sm-2 {\n    padding-left: 0.5rem !important; }\n  .p-sm-3 {\n    padding: 1rem !important; }\n  .pt-sm-3,\n  .py-sm-3 {\n    padding-top: 1rem !important; }\n  .pr-sm-3,\n  .px-sm-3 {\n    padding-right: 1rem !important; }\n  .pb-sm-3,\n  .py-sm-3 {\n    padding-bottom: 1rem !important; }\n  .pl-sm-3,\n  .px-sm-3 {\n    padding-left: 1rem !important; }\n  .p-sm-4 {\n    padding: 1.5rem !important; }\n  .pt-sm-4,\n  .py-sm-4 {\n    padding-top: 1.5rem !important; }\n  .pr-sm-4,\n  .px-sm-4 {\n    padding-right: 1.5rem !important; }\n  .pb-sm-4,\n  .py-sm-4 {\n    padding-bottom: 1.5rem !important; }\n  .pl-sm-4,\n  .px-sm-4 {\n    padding-left: 1.5rem !important; }\n  .p-sm-5 {\n    padding: 3rem !important; }\n  .pt-sm-5,\n  .py-sm-5 {\n    padding-top: 3rem !important; }\n  .pr-sm-5,\n  .px-sm-5 {\n    padding-right: 3rem !important; }\n  .pb-sm-5,\n  .py-sm-5 {\n    padding-bottom: 3rem !important; }\n  .pl-sm-5,\n  .px-sm-5 {\n    padding-left: 3rem !important; }\n  .m-sm-auto {\n    margin: auto !important; }\n  .mt-sm-auto,\n  .my-sm-auto {\n    margin-top: auto !important; }\n  .mr-sm-auto,\n  .mx-sm-auto {\n    margin-right: auto !important; }\n  .mb-sm-auto,\n  .my-sm-auto {\n    margin-bottom: auto !important; }\n  .ml-sm-auto,\n  .mx-sm-auto {\n    margin-left: auto !important; } }\n\n@media (min-width: 768px) {\n  .m-md-0 {\n    margin: 0 !important; }\n  .mt-md-0,\n  .my-md-0 {\n    margin-top: 0 !important; }\n  .mr-md-0,\n  .mx-md-0 {\n    margin-right: 0 !important; }\n  .mb-md-0,\n  .my-md-0 {\n    margin-bottom: 0 !important; }\n  .ml-md-0,\n  .mx-md-0 {\n    margin-left: 0 !important; }\n  .m-md-1 {\n    margin: 0.25rem !important; }\n  .mt-md-1,\n  .my-md-1 {\n    margin-top: 0.25rem !important; }\n  .mr-md-1,\n  .mx-md-1 {\n    margin-right: 0.25rem !important; }\n  .mb-md-1,\n  .my-md-1 {\n    margin-bottom: 0.25rem !important; }\n  .ml-md-1,\n  .mx-md-1 {\n    margin-left: 0.25rem !important; }\n  .m-md-2 {\n    margin: 0.5rem !important; }\n  .mt-md-2,\n  .my-md-2 {\n    margin-top: 0.5rem !important; }\n  .mr-md-2,\n  .mx-md-2 {\n    margin-right: 0.5rem !important; }\n  .mb-md-2,\n  .my-md-2 {\n    margin-bottom: 0.5rem !important; }\n  .ml-md-2,\n  .mx-md-2 {\n    margin-left: 0.5rem !important; }\n  .m-md-3 {\n    margin: 1rem !important; }\n  .mt-md-3,\n  .my-md-3 {\n    margin-top: 1rem !important; }\n  .mr-md-3,\n  .mx-md-3 {\n    margin-right: 1rem !important; }\n  .mb-md-3,\n  .my-md-3 {\n    margin-bottom: 1rem !important; }\n  .ml-md-3,\n  .mx-md-3 {\n    margin-left: 1rem !important; }\n  .m-md-4 {\n    margin: 1.5rem !important; }\n  .mt-md-4,\n  .my-md-4 {\n    margin-top: 1.5rem !important; }\n  .mr-md-4,\n  .mx-md-4 {\n    margin-right: 1.5rem !important; }\n  .mb-md-4,\n  .my-md-4 {\n    margin-bottom: 1.5rem !important; }\n  .ml-md-4,\n  .mx-md-4 {\n    margin-left: 1.5rem !important; }\n  .m-md-5 {\n    margin: 3rem !important; }\n  .mt-md-5,\n  .my-md-5 {\n    margin-top: 3rem !important; }\n  .mr-md-5,\n  .mx-md-5 {\n    margin-right: 3rem !important; }\n  .mb-md-5,\n  .my-md-5 {\n    margin-bottom: 3rem !important; }\n  .ml-md-5,\n  .mx-md-5 {\n    margin-left: 3rem !important; }\n  .p-md-0 {\n    padding: 0 !important; }\n  .pt-md-0,\n  .py-md-0 {\n    padding-top: 0 !important; }\n  .pr-md-0,\n  .px-md-0 {\n    padding-right: 0 !important; }\n  .pb-md-0,\n  .py-md-0 {\n    padding-bottom: 0 !important; }\n  .pl-md-0,\n  .px-md-0 {\n    padding-left: 0 !important; }\n  .p-md-1 {\n    padding: 0.25rem !important; }\n  .pt-md-1,\n  .py-md-1 {\n    padding-top: 0.25rem !important; }\n  .pr-md-1,\n  .px-md-1 {\n    padding-right: 0.25rem !important; }\n  .pb-md-1,\n  .py-md-1 {\n    padding-bottom: 0.25rem !important; }\n  .pl-md-1,\n  .px-md-1 {\n    padding-left: 0.25rem !important; }\n  .p-md-2 {\n    padding: 0.5rem !important; }\n  .pt-md-2,\n  .py-md-2 {\n    padding-top: 0.5rem !important; }\n  .pr-md-2,\n  .px-md-2 {\n    padding-right: 0.5rem !important; }\n  .pb-md-2,\n  .py-md-2 {\n    padding-bottom: 0.5rem !important; }\n  .pl-md-2,\n  .px-md-2 {\n    padding-left: 0.5rem !important; }\n  .p-md-3 {\n    padding: 1rem !important; }\n  .pt-md-3,\n  .py-md-3 {\n    padding-top: 1rem !important; }\n  .pr-md-3,\n  .px-md-3 {\n    padding-right: 1rem !important; }\n  .pb-md-3,\n  .py-md-3 {\n    padding-bottom: 1rem !important; }\n  .pl-md-3,\n  .px-md-3 {\n    padding-left: 1rem !important; }\n  .p-md-4 {\n    padding: 1.5rem !important; }\n  .pt-md-4,\n  .py-md-4 {\n    padding-top: 1.5rem !important; }\n  .pr-md-4,\n  .px-md-4 {\n    padding-right: 1.5rem !important; }\n  .pb-md-4,\n  .py-md-4 {\n    padding-bottom: 1.5rem !important; }\n  .pl-md-4,\n  .px-md-4 {\n    padding-left: 1.5rem !important; }\n  .p-md-5 {\n    padding: 3rem !important; }\n  .pt-md-5,\n  .py-md-5 {\n    padding-top: 3rem !important; }\n  .pr-md-5,\n  .px-md-5 {\n    padding-right: 3rem !important; }\n  .pb-md-5,\n  .py-md-5 {\n    padding-bottom: 3rem !important; }\n  .pl-md-5,\n  .px-md-5 {\n    padding-left: 3rem !important; }\n  .m-md-auto {\n    margin: auto !important; }\n  .mt-md-auto,\n  .my-md-auto {\n    margin-top: auto !important; }\n  .mr-md-auto,\n  .mx-md-auto {\n    margin-right: auto !important; }\n  .mb-md-auto,\n  .my-md-auto {\n    margin-bottom: auto !important; }\n  .ml-md-auto,\n  .mx-md-auto {\n    margin-left: auto !important; } }\n\n@media (min-width: 992px) {\n  .m-lg-0 {\n    margin: 0 !important; }\n  .mt-lg-0,\n  .my-lg-0 {\n    margin-top: 0 !important; }\n  .mr-lg-0,\n  .mx-lg-0 {\n    margin-right: 0 !important; }\n  .mb-lg-0,\n  .my-lg-0 {\n    margin-bottom: 0 !important; }\n  .ml-lg-0,\n  .mx-lg-0 {\n    margin-left: 0 !important; }\n  .m-lg-1 {\n    margin: 0.25rem !important; }\n  .mt-lg-1,\n  .my-lg-1 {\n    margin-top: 0.25rem !important; }\n  .mr-lg-1,\n  .mx-lg-1 {\n    margin-right: 0.25rem !important; }\n  .mb-lg-1,\n  .my-lg-1 {\n    margin-bottom: 0.25rem !important; }\n  .ml-lg-1,\n  .mx-lg-1 {\n    margin-left: 0.25rem !important; }\n  .m-lg-2 {\n    margin: 0.5rem !important; }\n  .mt-lg-2,\n  .my-lg-2 {\n    margin-top: 0.5rem !important; }\n  .mr-lg-2,\n  .mx-lg-2 {\n    margin-right: 0.5rem !important; }\n  .mb-lg-2,\n  .my-lg-2 {\n    margin-bottom: 0.5rem !important; }\n  .ml-lg-2,\n  .mx-lg-2 {\n    margin-left: 0.5rem !important; }\n  .m-lg-3 {\n    margin: 1rem !important; }\n  .mt-lg-3,\n  .my-lg-3 {\n    margin-top: 1rem !important; }\n  .mr-lg-3,\n  .mx-lg-3 {\n    margin-right: 1rem !important; }\n  .mb-lg-3,\n  .my-lg-3 {\n    margin-bottom: 1rem !important; }\n  .ml-lg-3,\n  .mx-lg-3 {\n    margin-left: 1rem !important; }\n  .m-lg-4 {\n    margin: 1.5rem !important; }\n  .mt-lg-4,\n  .my-lg-4 {\n    margin-top: 1.5rem !important; }\n  .mr-lg-4,\n  .mx-lg-4 {\n    margin-right: 1.5rem !important; }\n  .mb-lg-4,\n  .my-lg-4 {\n    margin-bottom: 1.5rem !important; }\n  .ml-lg-4,\n  .mx-lg-4 {\n    margin-left: 1.5rem !important; }\n  .m-lg-5 {\n    margin: 3rem !important; }\n  .mt-lg-5,\n  .my-lg-5 {\n    margin-top: 3rem !important; }\n  .mr-lg-5,\n  .mx-lg-5 {\n    margin-right: 3rem !important; }\n  .mb-lg-5,\n  .my-lg-5 {\n    margin-bottom: 3rem !important; }\n  .ml-lg-5,\n  .mx-lg-5 {\n    margin-left: 3rem !important; }\n  .p-lg-0 {\n    padding: 0 !important; }\n  .pt-lg-0,\n  .py-lg-0 {\n    padding-top: 0 !important; }\n  .pr-lg-0,\n  .px-lg-0 {\n    padding-right: 0 !important; }\n  .pb-lg-0,\n  .py-lg-0 {\n    padding-bottom: 0 !important; }\n  .pl-lg-0,\n  .px-lg-0 {\n    padding-left: 0 !important; }\n  .p-lg-1 {\n    padding: 0.25rem !important; }\n  .pt-lg-1,\n  .py-lg-1 {\n    padding-top: 0.25rem !important; }\n  .pr-lg-1,\n  .px-lg-1 {\n    padding-right: 0.25rem !important; }\n  .pb-lg-1,\n  .py-lg-1 {\n    padding-bottom: 0.25rem !important; }\n  .pl-lg-1,\n  .px-lg-1 {\n    padding-left: 0.25rem !important; }\n  .p-lg-2 {\n    padding: 0.5rem !important; }\n  .pt-lg-2,\n  .py-lg-2 {\n    padding-top: 0.5rem !important; }\n  .pr-lg-2,\n  .px-lg-2 {\n    padding-right: 0.5rem !important; }\n  .pb-lg-2,\n  .py-lg-2 {\n    padding-bottom: 0.5rem !important; }\n  .pl-lg-2,\n  .px-lg-2 {\n    padding-left: 0.5rem !important; }\n  .p-lg-3 {\n    padding: 1rem !important; }\n  .pt-lg-3,\n  .py-lg-3 {\n    padding-top: 1rem !important; }\n  .pr-lg-3,\n  .px-lg-3 {\n    padding-right: 1rem !important; }\n  .pb-lg-3,\n  .py-lg-3 {\n    padding-bottom: 1rem !important; }\n  .pl-lg-3,\n  .px-lg-3 {\n    padding-left: 1rem !important; }\n  .p-lg-4 {\n    padding: 1.5rem !important; }\n  .pt-lg-4,\n  .py-lg-4 {\n    padding-top: 1.5rem !important; }\n  .pr-lg-4,\n  .px-lg-4 {\n    padding-right: 1.5rem !important; }\n  .pb-lg-4,\n  .py-lg-4 {\n    padding-bottom: 1.5rem !important; }\n  .pl-lg-4,\n  .px-lg-4 {\n    padding-left: 1.5rem !important; }\n  .p-lg-5 {\n    padding: 3rem !important; }\n  .pt-lg-5,\n  .py-lg-5 {\n    padding-top: 3rem !important; }\n  .pr-lg-5,\n  .px-lg-5 {\n    padding-right: 3rem !important; }\n  .pb-lg-5,\n  .py-lg-5 {\n    padding-bottom: 3rem !important; }\n  .pl-lg-5,\n  .px-lg-5 {\n    padding-left: 3rem !important; }\n  .m-lg-auto {\n    margin: auto !important; }\n  .mt-lg-auto,\n  .my-lg-auto {\n    margin-top: auto !important; }\n  .mr-lg-auto,\n  .mx-lg-auto {\n    margin-right: auto !important; }\n  .mb-lg-auto,\n  .my-lg-auto {\n    margin-bottom: auto !important; }\n  .ml-lg-auto,\n  .mx-lg-auto {\n    margin-left: auto !important; } }\n\n@media (min-width: 1200px) {\n  .m-xl-0 {\n    margin: 0 !important; }\n  .mt-xl-0,\n  .my-xl-0 {\n    margin-top: 0 !important; }\n  .mr-xl-0,\n  .mx-xl-0 {\n    margin-right: 0 !important; }\n  .mb-xl-0,\n  .my-xl-0 {\n    margin-bottom: 0 !important; }\n  .ml-xl-0,\n  .mx-xl-0 {\n    margin-left: 0 !important; }\n  .m-xl-1 {\n    margin: 0.25rem !important; }\n  .mt-xl-1,\n  .my-xl-1 {\n    margin-top: 0.25rem !important; }\n  .mr-xl-1,\n  .mx-xl-1 {\n    margin-right: 0.25rem !important; }\n  .mb-xl-1,\n  .my-xl-1 {\n    margin-bottom: 0.25rem !important; }\n  .ml-xl-1,\n  .mx-xl-1 {\n    margin-left: 0.25rem !important; }\n  .m-xl-2 {\n    margin: 0.5rem !important; }\n  .mt-xl-2,\n  .my-xl-2 {\n    margin-top: 0.5rem !important; }\n  .mr-xl-2,\n  .mx-xl-2 {\n    margin-right: 0.5rem !important; }\n  .mb-xl-2,\n  .my-xl-2 {\n    margin-bottom: 0.5rem !important; }\n  .ml-xl-2,\n  .mx-xl-2 {\n    margin-left: 0.5rem !important; }\n  .m-xl-3 {\n    margin: 1rem !important; }\n  .mt-xl-3,\n  .my-xl-3 {\n    margin-top: 1rem !important; }\n  .mr-xl-3,\n  .mx-xl-3 {\n    margin-right: 1rem !important; }\n  .mb-xl-3,\n  .my-xl-3 {\n    margin-bottom: 1rem !important; }\n  .ml-xl-3,\n  .mx-xl-3 {\n    margin-left: 1rem !important; }\n  .m-xl-4 {\n    margin: 1.5rem !important; }\n  .mt-xl-4,\n  .my-xl-4 {\n    margin-top: 1.5rem !important; }\n  .mr-xl-4,\n  .mx-xl-4 {\n    margin-right: 1.5rem !important; }\n  .mb-xl-4,\n  .my-xl-4 {\n    margin-bottom: 1.5rem !important; }\n  .ml-xl-4,\n  .mx-xl-4 {\n    margin-left: 1.5rem !important; }\n  .m-xl-5 {\n    margin: 3rem !important; }\n  .mt-xl-5,\n  .my-xl-5 {\n    margin-top: 3rem !important; }\n  .mr-xl-5,\n  .mx-xl-5 {\n    margin-right: 3rem !important; }\n  .mb-xl-5,\n  .my-xl-5 {\n    margin-bottom: 3rem !important; }\n  .ml-xl-5,\n  .mx-xl-5 {\n    margin-left: 3rem !important; }\n  .p-xl-0 {\n    padding: 0 !important; }\n  .pt-xl-0,\n  .py-xl-0 {\n    padding-top: 0 !important; }\n  .pr-xl-0,\n  .px-xl-0 {\n    padding-right: 0 !important; }\n  .pb-xl-0,\n  .py-xl-0 {\n    padding-bottom: 0 !important; }\n  .pl-xl-0,\n  .px-xl-0 {\n    padding-left: 0 !important; }\n  .p-xl-1 {\n    padding: 0.25rem !important; }\n  .pt-xl-1,\n  .py-xl-1 {\n    padding-top: 0.25rem !important; }\n  .pr-xl-1,\n  .px-xl-1 {\n    padding-right: 0.25rem !important; }\n  .pb-xl-1,\n  .py-xl-1 {\n    padding-bottom: 0.25rem !important; }\n  .pl-xl-1,\n  .px-xl-1 {\n    padding-left: 0.25rem !important; }\n  .p-xl-2 {\n    padding: 0.5rem !important; }\n  .pt-xl-2,\n  .py-xl-2 {\n    padding-top: 0.5rem !important; }\n  .pr-xl-2,\n  .px-xl-2 {\n    padding-right: 0.5rem !important; }\n  .pb-xl-2,\n  .py-xl-2 {\n    padding-bottom: 0.5rem !important; }\n  .pl-xl-2,\n  .px-xl-2 {\n    padding-left: 0.5rem !important; }\n  .p-xl-3 {\n    padding: 1rem !important; }\n  .pt-xl-3,\n  .py-xl-3 {\n    padding-top: 1rem !important; }\n  .pr-xl-3,\n  .px-xl-3 {\n    padding-right: 1rem !important; }\n  .pb-xl-3,\n  .py-xl-3 {\n    padding-bottom: 1rem !important; }\n  .pl-xl-3,\n  .px-xl-3 {\n    padding-left: 1rem !important; }\n  .p-xl-4 {\n    padding: 1.5rem !important; }\n  .pt-xl-4,\n  .py-xl-4 {\n    padding-top: 1.5rem !important; }\n  .pr-xl-4,\n  .px-xl-4 {\n    padding-right: 1.5rem !important; }\n  .pb-xl-4,\n  .py-xl-4 {\n    padding-bottom: 1.5rem !important; }\n  .pl-xl-4,\n  .px-xl-4 {\n    padding-left: 1.5rem !important; }\n  .p-xl-5 {\n    padding: 3rem !important; }\n  .pt-xl-5,\n  .py-xl-5 {\n    padding-top: 3rem !important; }\n  .pr-xl-5,\n  .px-xl-5 {\n    padding-right: 3rem !important; }\n  .pb-xl-5,\n  .py-xl-5 {\n    padding-bottom: 3rem !important; }\n  .pl-xl-5,\n  .px-xl-5 {\n    padding-left: 3rem !important; }\n  .m-xl-auto {\n    margin: auto !important; }\n  .mt-xl-auto,\n  .my-xl-auto {\n    margin-top: auto !important; }\n  .mr-xl-auto,\n  .mx-xl-auto {\n    margin-right: auto !important; }\n  .mb-xl-auto,\n  .my-xl-auto {\n    margin-bottom: auto !important; }\n  .ml-xl-auto,\n  .mx-xl-auto {\n    margin-left: auto !important; } }\n\n.text-monospace {\n  font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace; }\n\n.text-justify {\n  text-align: justify !important; }\n\n.text-nowrap {\n  white-space: nowrap !important; }\n\n.text-truncate {\n  overflow: hidden;\n  -o-text-overflow: ellipsis;\n  text-overflow: ellipsis;\n  white-space: nowrap; }\n\n.text-left {\n  text-align: left !important; }\n\n.text-right {\n  text-align: right !important; }\n\n.text-center {\n  text-align: center !important; }\n\n@media (min-width: 576px) {\n  .text-sm-left {\n    text-align: left !important; }\n  .text-sm-right {\n    text-align: right !important; }\n  .text-sm-center {\n    text-align: center !important; } }\n\n@media (min-width: 768px) {\n  .text-md-left {\n    text-align: left !important; }\n  .text-md-right {\n    text-align: right !important; }\n  .text-md-center {\n    text-align: center !important; } }\n\n@media (min-width: 992px) {\n  .text-lg-left {\n    text-align: left !important; }\n  .text-lg-right {\n    text-align: right !important; }\n  .text-lg-center {\n    text-align: center !important; } }\n\n@media (min-width: 1200px) {\n  .text-xl-left {\n    text-align: left !important; }\n  .text-xl-right {\n    text-align: right !important; }\n  .text-xl-center {\n    text-align: center !important; } }\n\n.text-lowercase {\n  text-transform: lowercase !important; }\n\n.text-uppercase {\n  text-transform: uppercase !important; }\n\n.text-capitalize {\n  text-transform: capitalize !important; }\n\n.font-weight-light {\n  font-weight: 300 !important; }\n\n.font-weight-normal {\n  font-weight: 400 !important; }\n\n.font-weight-bold {\n  font-weight: 700 !important; }\n\n.font-italic {\n  font-style: italic !important; }\n\n.text-white {\n  color: #fff !important; }\n\n.text-primary {\n  color: #46ddb0 !important; }\n\na.text-primary:hover, a.text-primary:focus {\n  color: #25cb99 !important; }\n\n.text-secondary {\n  color: #6c757d !important; }\n\na.text-secondary:hover, a.text-secondary:focus {\n  color: #545b62 !important; }\n\n.text-success {\n  color: #8bc34a !important; }\n\na.text-success:hover, a.text-success:focus {\n  color: #71a436 !important; }\n\n.text-info {\n  color: #17a2b8 !important; }\n\na.text-info:hover, a.text-info:focus {\n  color: #117a8b !important; }\n\n.text-warning {\n  color: #f89d13 !important; }\n\na.text-warning:hover, a.text-warning:focus {\n  color: #d28106 !important; }\n\n.text-danger {\n  color: #f23a2e !important; }\n\na.text-danger:hover, a.text-danger:focus {\n  color: #df1b0e !important; }\n\n.text-light {\n  color: #f8f9fa !important; }\n\na.text-light:hover, a.text-light:focus {\n  color: #dae0e5 !important; }\n\n.text-dark {\n  color: #343a40 !important; }\n\na.text-dark:hover, a.text-dark:focus {\n  color: #1d2124 !important; }\n\n.text-body {\n  color: #212529 !important; }\n\n.text-muted {\n  color: #6c757d !important; }\n\n.text-black-50 {\n  color: rgba(0, 0, 0, 0.5) !important; }\n\n.text-white-50 {\n  color: rgba(255, 255, 255, 0.5) !important; }\n\n.text-hide {\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0; }\n\n.visible {\n  visibility: visible !important; }\n\n.invisible {\n  visibility: hidden !important; }\n\n@media print {\n  *,\n  *::before,\n  *::after {\n    text-shadow: none !important;\n    -webkit-box-shadow: none !important;\n    box-shadow: none !important; }\n  a:not(.btn) {\n    text-decoration: underline; }\n  abbr[title]::after {\n    content: \" (\" attr(title) \")\"; }\n  pre {\n    white-space: pre-wrap !important; }\n  pre,\n  blockquote {\n    border: 1px solid #adb5bd;\n    page-break-inside: avoid; }\n  thead {\n    display: table-header-group; }\n  tr,\n  img {\n    page-break-inside: avoid; }\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3; }\n  h2,\n  h3 {\n    page-break-after: avoid; }\n  @page {\n    size: a3; }\n  body {\n    min-width: 992px !important; }\n  .container {\n    min-width: 992px !important; }\n  .navbar {\n    display: none; }\n  .badge {\n    border: 1px solid #000; }\n  .table {\n    border-collapse: collapse !important; }\n    .table td,\n    .table th {\n      background-color: #fff !important; }\n  .table-bordered th,\n  .table-bordered td {\n    border: 1px solid #dee2e6 !important; }\n  .table-dark {\n    color: inherit; }\n    .table-dark th,\n    .table-dark td,\n    .table-dark thead th,\n    .table-dark tbody + tbody {\n      border-color: #dee2e6; }\n  .table .thead-dark th {\n    color: inherit;\n    border-color: #dee2e6; } }\n\n/* Custom CSS */\n.error-message{\n    /*font-size: 10px;*/\n    color: red;\n}\n"
  },
  {
    "path": "public/landing/css/bootstrap-datepicker.css",
    "content": "/*!\n * Datepicker for Bootstrap v1.6.4 (https://github.com/eternicode/bootstrap-datepicker)\n *\n * Copyright 2012 Stefan Petre\n * Improvements by Andrew Rowls\n * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)\n */\n.datepicker {\n  padding: 4px;\n  -webkit-border-radius: 4px;\n  -moz-border-radius: 4px;\n  border-radius: 4px;\n  direction: ltr;\n}\n.datepicker-inline {\n  width: 220px;\n}\n.datepicker.datepicker-rtl {\n  direction: rtl;\n}\n.datepicker.datepicker-rtl table tr td span {\n  float: right;\n}\n.datepicker-dropdown {\n  top: 0;\n  left: 0;\n}\n.datepicker-dropdown:before {\n  content: '';\n  display: inline-block;\n  border-left: 7px solid transparent;\n  border-right: 7px solid transparent;\n  border-bottom: 7px solid #999;\n  border-top: 0;\n  border-bottom-color: rgba(0, 0, 0, 0.2);\n  position: absolute;\n}\n.datepicker-dropdown:after {\n  content: '';\n  display: inline-block;\n  border-left: 6px solid transparent;\n  border-right: 6px solid transparent;\n  border-bottom: 6px solid #fff;\n  border-top: 0;\n  position: absolute;\n}\n.datepicker-dropdown.datepicker-orient-left:before {\n  left: 6px;\n}\n.datepicker-dropdown.datepicker-orient-left:after {\n  left: 7px;\n}\n.datepicker-dropdown.datepicker-orient-right:before {\n  right: 6px;\n}\n.datepicker-dropdown.datepicker-orient-right:after {\n  right: 7px;\n}\n.datepicker-dropdown.datepicker-orient-bottom:before {\n  top: -7px;\n}\n.datepicker-dropdown.datepicker-orient-bottom:after {\n  top: -6px;\n}\n.datepicker-dropdown.datepicker-orient-top:before {\n  bottom: -7px;\n  border-bottom: 0;\n  border-top: 7px solid #999;\n}\n.datepicker-dropdown.datepicker-orient-top:after {\n  bottom: -6px;\n  border-bottom: 0;\n  border-top: 6px solid #fff;\n}\n.datepicker table {\n  margin: 0;\n  -webkit-touch-callout: none;\n  -webkit-user-select: none;\n  -khtml-user-select: none;\n  -moz-user-select: none;\n  -ms-user-select: none;\n  user-select: none;\n}\n.datepicker td,\n.datepicker th {\n  text-align: center;\n  width: 20px;\n  height: 20px;\n  -webkit-border-radius: 4px;\n  -moz-border-radius: 4px;\n  border-radius: 4px;\n  border: none;\n}\n.table-striped .datepicker table tr td,\n.table-striped .datepicker table tr th {\n  background-color: transparent;\n}\n.datepicker table tr td.day:hover,\n.datepicker table tr td.day.focused {\n  background: #eee;\n  cursor: pointer;\n}\n.datepicker table tr td.old,\n.datepicker table tr td.new {\n  color: #999;\n}\n.datepicker table tr td.disabled,\n.datepicker table tr td.disabled:hover {\n  background: none;\n  color: #999;\n  cursor: default;\n}\n.datepicker table tr td.highlighted {\n  background: #d9edf7;\n  border-radius: 0;\n}\n.datepicker table tr td.today,\n.datepicker table tr td.today:hover,\n.datepicker table tr td.today.disabled,\n.datepicker table tr td.today.disabled:hover {\n  background-color: #fde19a;\n  background-image: -moz-linear-gradient(to bottom, #fdd49a, #fdf59a);\n  background-image: -ms-linear-gradient(to bottom, #fdd49a, #fdf59a);\n  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));\n  background-image: -webkit-linear-gradient(to bottom, #fdd49a, #fdf59a);\n  background-image: -o-linear-gradient(to bottom, #fdd49a, #fdf59a);\n  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);\n  border-color: #fdf59a #fdf59a #fbed50;\n  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);\n  color: #000;\n}\n.datepicker table tr td.today:hover,\n.datepicker table tr td.today:hover:hover,\n.datepicker table tr td.today.disabled:hover,\n.datepicker table tr td.today.disabled:hover:hover,\n.datepicker table tr td.today:active,\n.datepicker table tr td.today:hover:active,\n.datepicker table tr td.today.disabled:active,\n.datepicker table tr td.today.disabled:hover:active,\n.datepicker table tr td.today.active,\n.datepicker table tr td.today:hover.active,\n.datepicker table tr td.today.disabled.active,\n.datepicker table tr td.today.disabled:hover.active,\n.datepicker table tr td.today.disabled,\n.datepicker table tr td.today:hover.disabled,\n.datepicker table tr td.today.disabled.disabled,\n.datepicker table tr td.today.disabled:hover.disabled,\n.datepicker table tr td.today[disabled],\n.datepicker table tr td.today:hover[disabled],\n.datepicker table tr td.today.disabled[disabled],\n.datepicker table tr td.today.disabled:hover[disabled] {\n  background-color: #fdf59a;\n}\n.datepicker table tr td.today:active,\n.datepicker table tr td.today:hover:active,\n.datepicker table tr td.today.disabled:active,\n.datepicker table tr td.today.disabled:hover:active,\n.datepicker table tr td.today.active,\n.datepicker table tr td.today:hover.active,\n.datepicker table tr td.today.disabled.active,\n.datepicker table tr td.today.disabled:hover.active {\n  background-color: #fbf069 \\9;\n}\n.datepicker table tr td.today:hover:hover {\n  color: #000;\n}\n.datepicker table tr td.today.active:hover {\n  color: #fff;\n}\n.datepicker table tr td.range,\n.datepicker table tr td.range:hover,\n.datepicker table tr td.range.disabled,\n.datepicker table tr td.range.disabled:hover {\n  background: #eee;\n  -webkit-border-radius: 0;\n  -moz-border-radius: 0;\n  border-radius: 0;\n}\n.datepicker table tr td.range.today,\n.datepicker table tr td.range.today:hover,\n.datepicker table tr td.range.today.disabled,\n.datepicker table tr td.range.today.disabled:hover {\n  background-color: #f3d17a;\n  background-image: -moz-linear-gradient(to bottom, #f3c17a, #f3e97a);\n  background-image: -ms-linear-gradient(to bottom, #f3c17a, #f3e97a);\n  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));\n  background-image: -webkit-linear-gradient(to bottom, #f3c17a, #f3e97a);\n  background-image: -o-linear-gradient(to bottom, #f3c17a, #f3e97a);\n  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);\n  border-color: #f3e97a #f3e97a #edde34;\n  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);\n  -webkit-border-radius: 0;\n  -moz-border-radius: 0;\n  border-radius: 0;\n}\n.datepicker table tr td.range.today:hover,\n.datepicker table tr td.range.today:hover:hover,\n.datepicker table tr td.range.today.disabled:hover,\n.datepicker table tr td.range.today.disabled:hover:hover,\n.datepicker table tr td.range.today:active,\n.datepicker table tr td.range.today:hover:active,\n.datepicker table tr td.range.today.disabled:active,\n.datepicker table tr td.range.today.disabled:hover:active,\n.datepicker table tr td.range.today.active,\n.datepicker table tr td.range.today:hover.active,\n.datepicker table tr td.range.today.disabled.active,\n.datepicker table tr td.range.today.disabled:hover.active,\n.datepicker table tr td.range.today.disabled,\n.datepicker table tr td.range.today:hover.disabled,\n.datepicker table tr td.range.today.disabled.disabled,\n.datepicker table tr td.range.today.disabled:hover.disabled,\n.datepicker table tr td.range.today[disabled],\n.datepicker table tr td.range.today:hover[disabled],\n.datepicker table tr td.range.today.disabled[disabled],\n.datepicker table tr td.range.today.disabled:hover[disabled] {\n  background-color: #f3e97a;\n}\n.datepicker table tr td.range.today:active,\n.datepicker table tr td.range.today:hover:active,\n.datepicker table tr td.range.today.disabled:active,\n.datepicker table tr td.range.today.disabled:hover:active,\n.datepicker table tr td.range.today.active,\n.datepicker table tr td.range.today:hover.active,\n.datepicker table tr td.range.today.disabled.active,\n.datepicker table tr td.range.today.disabled:hover.active {\n  background-color: #efe24b \\9;\n}\n.datepicker table tr td.selected,\n.datepicker table tr td.selected:hover,\n.datepicker table tr td.selected.disabled,\n.datepicker table tr td.selected.disabled:hover {\n  background-color: #9e9e9e;\n  background-image: -moz-linear-gradient(to bottom, #b3b3b3, #808080);\n  background-image: -ms-linear-gradient(to bottom, #b3b3b3, #808080);\n  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));\n  background-image: -webkit-linear-gradient(to bottom, #b3b3b3, #808080);\n  background-image: -o-linear-gradient(to bottom, #b3b3b3, #808080);\n  background-image: linear-gradient(to bottom, #b3b3b3, #808080);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);\n  border-color: #808080 #808080 #595959;\n  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);\n  color: #fff;\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td.selected:hover,\n.datepicker table tr td.selected:hover:hover,\n.datepicker table tr td.selected.disabled:hover,\n.datepicker table tr td.selected.disabled:hover:hover,\n.datepicker table tr td.selected:active,\n.datepicker table tr td.selected:hover:active,\n.datepicker table tr td.selected.disabled:active,\n.datepicker table tr td.selected.disabled:hover:active,\n.datepicker table tr td.selected.active,\n.datepicker table tr td.selected:hover.active,\n.datepicker table tr td.selected.disabled.active,\n.datepicker table tr td.selected.disabled:hover.active,\n.datepicker table tr td.selected.disabled,\n.datepicker table tr td.selected:hover.disabled,\n.datepicker table tr td.selected.disabled.disabled,\n.datepicker table tr td.selected.disabled:hover.disabled,\n.datepicker table tr td.selected[disabled],\n.datepicker table tr td.selected:hover[disabled],\n.datepicker table tr td.selected.disabled[disabled],\n.datepicker table tr td.selected.disabled:hover[disabled] {\n  background-color: #808080;\n}\n.datepicker table tr td.selected:active,\n.datepicker table tr td.selected:hover:active,\n.datepicker table tr td.selected.disabled:active,\n.datepicker table tr td.selected.disabled:hover:active,\n.datepicker table tr td.selected.active,\n.datepicker table tr td.selected:hover.active,\n.datepicker table tr td.selected.disabled.active,\n.datepicker table tr td.selected.disabled:hover.active {\n  background-color: #666666 \\9;\n}\n.datepicker table tr td.active,\n.datepicker table tr td.active:hover,\n.datepicker table tr td.active.disabled,\n.datepicker table tr td.active.disabled:hover {\n  background-color: #006dcc;\n  background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);\n  background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);\n  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));\n  background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);\n  background-image: -o-linear-gradient(to bottom, #08c, #0044cc);\n  background-image: linear-gradient(to bottom, #08c, #0044cc);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);\n  border-color: #0044cc #0044cc #002a80;\n  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);\n  color: #fff;\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td.active:hover,\n.datepicker table tr td.active:hover:hover,\n.datepicker table tr td.active.disabled:hover,\n.datepicker table tr td.active.disabled:hover:hover,\n.datepicker table tr td.active:active,\n.datepicker table tr td.active:hover:active,\n.datepicker table tr td.active.disabled:active,\n.datepicker table tr td.active.disabled:hover:active,\n.datepicker table tr td.active.active,\n.datepicker table tr td.active:hover.active,\n.datepicker table tr td.active.disabled.active,\n.datepicker table tr td.active.disabled:hover.active,\n.datepicker table tr td.active.disabled,\n.datepicker table tr td.active:hover.disabled,\n.datepicker table tr td.active.disabled.disabled,\n.datepicker table tr td.active.disabled:hover.disabled,\n.datepicker table tr td.active[disabled],\n.datepicker table tr td.active:hover[disabled],\n.datepicker table tr td.active.disabled[disabled],\n.datepicker table tr td.active.disabled:hover[disabled] {\n  background-color: #0044cc;\n}\n.datepicker table tr td.active:active,\n.datepicker table tr td.active:hover:active,\n.datepicker table tr td.active.disabled:active,\n.datepicker table tr td.active.disabled:hover:active,\n.datepicker table tr td.active.active,\n.datepicker table tr td.active:hover.active,\n.datepicker table tr td.active.disabled.active,\n.datepicker table tr td.active.disabled:hover.active {\n  background-color: #003399 \\9;\n}\n.datepicker table tr td span {\n  display: block;\n  width: 23%;\n  height: 54px;\n  line-height: 54px;\n  float: left;\n  margin: 1%;\n  cursor: pointer;\n  -webkit-border-radius: 4px;\n  -moz-border-radius: 4px;\n  border-radius: 4px;\n}\n.datepicker table tr td span:hover,\n.datepicker table tr td span.focused {\n  background: #eee;\n}\n.datepicker table tr td span.disabled,\n.datepicker table tr td span.disabled:hover {\n  background: none;\n  color: #999;\n  cursor: default;\n}\n.datepicker table tr td span.active,\n.datepicker table tr td span.active:hover,\n.datepicker table tr td span.active.disabled,\n.datepicker table tr td span.active.disabled:hover {\n  background-color: #006dcc;\n  background-image: -moz-linear-gradient(to bottom, #08c, #0044cc);\n  background-image: -ms-linear-gradient(to bottom, #08c, #0044cc);\n  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#0044cc));\n  background-image: -webkit-linear-gradient(to bottom, #08c, #0044cc);\n  background-image: -o-linear-gradient(to bottom, #08c, #0044cc);\n  background-image: linear-gradient(to bottom, #08c, #0044cc);\n  background-repeat: repeat-x;\n  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);\n  border-color: #0044cc #0044cc #002a80;\n  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);\n  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);\n  color: #fff;\n  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.datepicker table tr td span.active:hover,\n.datepicker table tr td span.active:hover:hover,\n.datepicker table tr td span.active.disabled:hover,\n.datepicker table tr td span.active.disabled:hover:hover,\n.datepicker table tr td span.active:active,\n.datepicker table tr td span.active:hover:active,\n.datepicker table tr td span.active.disabled:active,\n.datepicker table tr td span.active.disabled:hover:active,\n.datepicker table tr td span.active.active,\n.datepicker table tr td span.active:hover.active,\n.datepicker table tr td span.active.disabled.active,\n.datepicker table tr td span.active.disabled:hover.active,\n.datepicker table tr td span.active.disabled,\n.datepicker table tr td span.active:hover.disabled,\n.datepicker table tr td span.active.disabled.disabled,\n.datepicker table tr td span.active.disabled:hover.disabled,\n.datepicker table tr td span.active[disabled],\n.datepicker table tr td span.active:hover[disabled],\n.datepicker table tr td span.active.disabled[disabled],\n.datepicker table tr td span.active.disabled:hover[disabled] {\n  background-color: #0044cc;\n}\n.datepicker table tr td span.active:active,\n.datepicker table tr td span.active:hover:active,\n.datepicker table tr td span.active.disabled:active,\n.datepicker table tr td span.active.disabled:hover:active,\n.datepicker table tr td span.active.active,\n.datepicker table tr td span.active:hover.active,\n.datepicker table tr td span.active.disabled.active,\n.datepicker table tr td span.active.disabled:hover.active {\n  background-color: #003399 \\9;\n}\n.datepicker table tr td span.old,\n.datepicker table tr td span.new {\n  color: #999;\n}\n.datepicker .datepicker-switch {\n  width: 145px;\n}\n.datepicker .datepicker-switch,\n.datepicker .prev,\n.datepicker .next,\n.datepicker tfoot tr th {\n  cursor: pointer;\n}\n.datepicker .datepicker-switch:hover,\n.datepicker .prev:hover,\n.datepicker .next:hover,\n.datepicker tfoot tr th:hover {\n  background: #eee;\n}\n.datepicker .cw {\n  font-size: 10px;\n  width: 12px;\n  padding: 0 2px 0 5px;\n  vertical-align: middle;\n}\n.input-append.date .add-on,\n.input-prepend.date .add-on {\n  cursor: pointer;\n}\n.input-append.date .add-on i,\n.input-prepend.date .add-on i {\n  margin-top: 3px;\n}\n.input-daterange input {\n  text-align: center;\n}\n.input-daterange input:first-child {\n  -webkit-border-radius: 3px 0 0 3px;\n  -moz-border-radius: 3px 0 0 3px;\n  border-radius: 3px 0 0 3px;\n}\n.input-daterange input:last-child {\n  -webkit-border-radius: 0 3px 3px 0;\n  -moz-border-radius: 0 3px 3px 0;\n  border-radius: 0 3px 3px 0;\n}\n.input-daterange .add-on {\n  display: inline-block;\n  width: auto;\n  min-width: 16px;\n  height: 18px;\n  padding: 4px 5px;\n  font-weight: normal;\n  line-height: 18px;\n  text-align: center;\n  text-shadow: 0 1px 0 #fff;\n  vertical-align: middle;\n  background-color: #eee;\n  border: 1px solid #ccc;\n  margin-left: -5px;\n  margin-right: -5px;\n}\n/*# sourceMappingURL=bootstrap-datepicker.css.map */"
  },
  {
    "path": "public/landing/css/jquery-ui.css",
    "content": "/*! jQuery UI - v1.11.4 - 2015-12-03\n* http://jqueryui.com\n* Includes: core.css, button.css, slider.css, theme.css\n* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande%2CLucida%20Sans%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=5c9ccc&bgTextureHeader=gloss_wave&bgImgOpacityHeader=55&borderColorHeader=4297d7&fcHeader=ffffff&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=inset_hard&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=469bdd&bgColorDefault=dfeffc&bgTextureDefault=glass&bgImgOpacityDefault=85&borderColorDefault=c5dbec&fcDefault=2e6e9e&iconColorDefault=6da8d5&bgColorHover=d0e5f5&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=79b7e7&fcHover=1d5987&iconColorHover=217bc0&bgColorActive=f5f8f9&bgTextureActive=inset_hard&bgImgOpacityActive=100&borderColorActive=79b7e7&fcActive=e17009&iconColorActive=f9bd01&bgColorHighlight=fbec88&bgTextureHighlight=flat&bgImgOpacityHighlight=55&borderColorHighlight=fad42e&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n/* Layout helpers\n----------------------------------*/\n.ui-helper-hidden {\n\tdisplay: none;\n}\n.ui-helper-hidden-accessible {\n\tborder: 0;\n\tclip: rect(0 0 0 0);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute;\n\twidth: 1px;\n}\n.ui-helper-reset {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\toutline: 0;\n\tline-height: 1.3;\n\ttext-decoration: none;\n\tfont-size: 100%;\n\tlist-style: none;\n}\n.ui-helper-clearfix:before,\n.ui-helper-clearfix:after {\n\tcontent: \"\";\n\tdisplay: table;\n\tborder-collapse: collapse;\n}\n.ui-helper-clearfix:after {\n\tclear: both;\n}\n.ui-helper-clearfix {\n\tmin-height: 0; /* support: IE7 */\n}\n.ui-helper-zfix {\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tposition: absolute;\n\topacity: 0;\n\tfilter:Alpha(Opacity=0); /* support: IE8 */\n}\n\n.ui-front {\n\tz-index: 100;\n}\n\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-disabled {\n\tcursor: default !important;\n}\n\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\tdisplay: block;\n\ttext-indent: -99999px;\n\toverflow: hidden;\n\tbackground-repeat: no-repeat;\n}\n\n\n/* Misc visuals\n----------------------------------*/\n\n/* Overlays */\n.ui-widget-overlay {\n\tposition: fixed;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n}\n.ui-button {\n\tdisplay: inline-block;\n\tposition: relative;\n\tpadding: 0;\n\tline-height: normal;\n\tmargin-right: .1em;\n\tcursor: pointer;\n\tvertical-align: middle;\n\ttext-align: center;\n\toverflow: visible; /* removes extra width in IE */\n}\n.ui-button,\n.ui-button:link,\n.ui-button:visited,\n.ui-button:hover,\n.ui-button:active {\n\ttext-decoration: none;\n}\n/* to make room for the icon, a width needs to be set here */\n.ui-button-icon-only {\n\twidth: 2.2em;\n}\n/* button elements seem to need a little more width */\nbutton.ui-button-icon-only {\n\twidth: 2.4em;\n}\n.ui-button-icons-only {\n\twidth: 3.4em;\n}\nbutton.ui-button-icons-only {\n\twidth: 3.7em;\n}\n\n/* button text element */\n.ui-button .ui-button-text {\n\tdisplay: block;\n\tline-height: normal;\n}\n.ui-button-text-only .ui-button-text {\n\tpadding: .4em 1em;\n}\n.ui-button-icon-only .ui-button-text,\n.ui-button-icons-only .ui-button-text {\n\tpadding: .4em;\n\ttext-indent: -9999999px;\n}\n.ui-button-text-icon-primary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 1em .4em 2.1em;\n}\n.ui-button-text-icon-secondary .ui-button-text,\n.ui-button-text-icons .ui-button-text {\n\tpadding: .4em 2.1em .4em 1em;\n}\n.ui-button-text-icons .ui-button-text {\n\tpadding-left: 2.1em;\n\tpadding-right: 2.1em;\n}\n/* no icon support for input elements, provide padding by default */\ninput.ui-button {\n\tpadding: .4em 1em;\n}\n\n/* button icon element(s) */\n.ui-button-icon-only .ui-icon,\n.ui-button-text-icon-primary .ui-icon,\n.ui-button-text-icon-secondary .ui-icon,\n.ui-button-text-icons .ui-icon,\n.ui-button-icons-only .ui-icon {\n\tposition: absolute;\n\ttop: 50%;\n\tmargin-top: -8px;\n}\n.ui-button-icon-only .ui-icon {\n\tleft: 50%;\n\tmargin-left: -8px;\n}\n.ui-button-text-icon-primary .ui-button-icon-primary,\n.ui-button-text-icons .ui-button-icon-primary,\n.ui-button-icons-only .ui-button-icon-primary {\n\tleft: .5em;\n}\n.ui-button-text-icon-secondary .ui-button-icon-secondary,\n.ui-button-text-icons .ui-button-icon-secondary,\n.ui-button-icons-only .ui-button-icon-secondary {\n\tright: .5em;\n}\n\n/* button sets */\n.ui-buttonset {\n\tmargin-right: 7px;\n}\n.ui-buttonset .ui-button {\n\tmargin-left: 0;\n\tmargin-right: -.3em;\n}\n\n/* workarounds */\n/* reset extra padding in Firefox, see h5bp.com/l */\ninput.ui-button::-moz-focus-inner,\nbutton.ui-button::-moz-focus-inner {\n\tborder: 0;\n\tpadding: 0;\n}\n.ui-slider {\n\tposition: relative;\n\ttext-align: left;\n}\n.ui-slider .ui-slider-handle {\n\tposition: absolute;\n\tz-index: 2;\n\twidth: 1.2em;\n\theight: 1.2em;\n\tcursor: default;\n\t-ms-touch-action: none;\n\ttouch-action: none;\n}\n.ui-slider .ui-slider-range {\n\tposition: absolute;\n\tz-index: 1;\n\tfont-size: .7em;\n\tdisplay: block;\n\tborder: 0;\n\tbackground-position: 0 0;\n}\n\n/* support: IE8 - See #6727 */\n.ui-slider.ui-state-disabled .ui-slider-handle,\n.ui-slider.ui-state-disabled .ui-slider-range {\n\t-webkit-filter: inherit;\n\tfilter: inherit;\n}\n\n.ui-slider-horizontal {\n\theight: .8em;\n}\n.ui-slider-horizontal .ui-slider-handle {\n\ttop: -.3em;\n\tmargin-left: -.6em;\n}\n.ui-slider-horizontal .ui-slider-range {\n\ttop: 0;\n\theight: 100%;\n}\n.ui-slider-horizontal .ui-slider-range-min {\n\tleft: 0;\n}\n.ui-slider-horizontal .ui-slider-range-max {\n\tright: 0;\n}\n\n.ui-slider-vertical {\n\twidth: .8em;\n\theight: 100px;\n}\n.ui-slider-vertical .ui-slider-handle {\n\tleft: -.3em;\n\tmargin-left: 0;\n\tmargin-bottom: -.6em;\n}\n.ui-slider-vertical .ui-slider-range {\n\tleft: 0;\n\twidth: 100%;\n}\n.ui-slider-vertical .ui-slider-range-min {\n\tbottom: 0;\n}\n.ui-slider-vertical .ui-slider-range-max {\n\ttop: 0;\n}\n\n/* Component containers\n----------------------------------*/\n.ui-widget {\n\tfont-family: Lucida Grande,Lucida Sans,Arial,sans-serif;\n\tfont-size: 1.1em;\n}\n.ui-widget .ui-widget {\n\tfont-size: 1em;\n}\n.ui-widget input,\n.ui-widget select,\n.ui-widget textarea,\n.ui-widget button {\n\tfont-family: Lucida Grande,Lucida Sans,Arial,sans-serif;\n\tfont-size: 1em;\n}\n.ui-widget-content {\n\tborder: 1px solid #a6c9e2;\n\tcolor: #222222;\n}\n.ui-widget-content a {\n\tcolor: #222222;\n}\n.ui-widget-header {\n\tborder: 1px solid #4297d7;\n\tbackground: #5c9ccc url(\"images/ui-bg_gloss-wave_55_5c9ccc_500x100.png\") 50% 50% repeat-x;\n\tcolor: #ffffff;\n\tfont-weight: bold;\n}\n.ui-widget-header a {\n\tcolor: #ffffff;\n}\n\n/* Interaction states\n----------------------------------*/\n.ui-state-default,\n.ui-widget-content .ui-state-default,\n.ui-widget-header .ui-state-default {\n\tborder: 1px solid #c5dbec;\n\tbackground: #dfeffc url(\"images/ui-bg_glass_85_dfeffc_1x400.png\") 50% 50% repeat-x;\n\tfont-weight: bold;\n\tcolor: #2e6e9e;\n}\n.ui-state-default a,\n.ui-state-default a:link,\n.ui-state-default a:visited {\n\tcolor: #2e6e9e;\n\ttext-decoration: none;\n}\n.ui-state-hover,\n.ui-widget-content .ui-state-hover,\n.ui-widget-header .ui-state-hover,\n.ui-state-focus,\n.ui-widget-content .ui-state-focus,\n.ui-widget-header .ui-state-focus {\n\tborder: 1px solid #79b7e7;\n\tbackground: #d0e5f5 url(\"images/ui-bg_glass_75_d0e5f5_1x400.png\") 50% 50% repeat-x;\n\tfont-weight: bold;\n\tcolor: #1d5987;\n}\n.ui-state-hover a,\n.ui-state-hover a:hover,\n.ui-state-hover a:link,\n.ui-state-hover a:visited,\n.ui-state-focus a,\n.ui-state-focus a:hover,\n.ui-state-focus a:link,\n.ui-state-focus a:visited {\n\tcolor: #1d5987;\n\ttext-decoration: none;\n}\n.ui-state-active,\n.ui-widget-content .ui-state-active,\n.ui-widget-header .ui-state-active {\n\tborder: 1px solid #79b7e7;\n\tbackground: #f5f8f9 url(\"images/ui-bg_inset-hard_100_f5f8f9_1x100.png\") 50% 50% repeat-x;\n\tfont-weight: bold;\n\tcolor: #e17009;\n}\n.ui-state-active a,\n.ui-state-active a:link,\n.ui-state-active a:visited {\n\tcolor: #e17009;\n\ttext-decoration: none;\n}\n\n/* Interaction Cues\n----------------------------------*/\n.ui-state-highlight,\n.ui-widget-content .ui-state-highlight,\n.ui-widget-header .ui-state-highlight {\n\tborder: 1px solid #fad42e;\n\tbackground: #fbec88;\n\tcolor: #363636;\n}\n.ui-state-highlight a,\n.ui-widget-content .ui-state-highlight a,\n.ui-widget-header .ui-state-highlight a {\n\tcolor: #363636;\n}\n.ui-state-error,\n.ui-widget-content .ui-state-error,\n.ui-widget-header .ui-state-error {\n\tborder: 1px solid #cd0a0a;\n\tbackground: #fef1ec url(\"images/ui-bg_glass_95_fef1ec_1x400.png\") 50% 50% repeat-x;\n\tcolor: #cd0a0a;\n}\n.ui-state-error a,\n.ui-widget-content .ui-state-error a,\n.ui-widget-header .ui-state-error a {\n\tcolor: #cd0a0a;\n}\n.ui-state-error-text,\n.ui-widget-content .ui-state-error-text,\n.ui-widget-header .ui-state-error-text {\n\tcolor: #cd0a0a;\n}\n.ui-priority-primary,\n.ui-widget-content .ui-priority-primary,\n.ui-widget-header .ui-priority-primary {\n\tfont-weight: bold;\n}\n.ui-priority-secondary,\n.ui-widget-content .ui-priority-secondary,\n.ui-widget-header .ui-priority-secondary {\n\topacity: .7;\n\tfilter:Alpha(Opacity=70); /* support: IE8 */\n\tfont-weight: normal;\n}\n.ui-state-disabled,\n.ui-widget-content .ui-state-disabled,\n.ui-widget-header .ui-state-disabled {\n\topacity: .35;\n\tfilter:Alpha(Opacity=35); /* support: IE8 */\n\tbackground-image: none;\n}\n.ui-state-disabled .ui-icon {\n\tfilter:Alpha(Opacity=35); /* support: IE8 - See #6059 */\n}\n\n/* Icons\n----------------------------------*/\n\n/* states and images */\n.ui-icon {\n\twidth: 16px;\n\theight: 16px;\n}\n.ui-icon,\n.ui-widget-content .ui-icon {\n\tbackground-image: url(\"images/ui-icons_469bdd_256x240.png\");\n}\n.ui-widget-header .ui-icon {\n\tbackground-image: url(\"images/ui-icons_d8e7f3_256x240.png\");\n}\n.ui-state-default .ui-icon {\n\tbackground-image: url(\"images/ui-icons_6da8d5_256x240.png\");\n}\n.ui-state-hover .ui-icon,\n.ui-state-focus .ui-icon {\n\tbackground-image: url(\"images/ui-icons_217bc0_256x240.png\");\n}\n.ui-state-active .ui-icon {\n\tbackground-image: url(\"images/ui-icons_f9bd01_256x240.png\");\n}\n.ui-state-highlight .ui-icon {\n\tbackground-image: url(\"images/ui-icons_2e83ff_256x240.png\");\n}\n.ui-state-error .ui-icon,\n.ui-state-error-text .ui-icon {\n\tbackground-image: url(\"images/ui-icons_cd0a0a_256x240.png\");\n}\n\n/* positioning */\n.ui-icon-blank { background-position: 16px 16px; }\n.ui-icon-carat-1-n { background-position: 0 0; }\n.ui-icon-carat-1-ne { background-position: -16px 0; }\n.ui-icon-carat-1-e { background-position: -32px 0; }\n.ui-icon-carat-1-se { background-position: -48px 0; }\n.ui-icon-carat-1-s { background-position: -64px 0; }\n.ui-icon-carat-1-sw { background-position: -80px 0; }\n.ui-icon-carat-1-w { background-position: -96px 0; }\n.ui-icon-carat-1-nw { background-position: -112px 0; }\n.ui-icon-carat-2-n-s { background-position: -128px 0; }\n.ui-icon-carat-2-e-w { background-position: -144px 0; }\n.ui-icon-triangle-1-n { background-position: 0 -16px; }\n.ui-icon-triangle-1-ne { background-position: -16px -16px; }\n.ui-icon-triangle-1-e { background-position: -32px -16px; }\n.ui-icon-triangle-1-se { background-position: -48px -16px; }\n.ui-icon-triangle-1-s { background-position: -64px -16px; }\n.ui-icon-triangle-1-sw { background-position: -80px -16px; }\n.ui-icon-triangle-1-w { background-position: -96px -16px; }\n.ui-icon-triangle-1-nw { background-position: -112px -16px; }\n.ui-icon-triangle-2-n-s { background-position: -128px -16px; }\n.ui-icon-triangle-2-e-w { background-position: -144px -16px; }\n.ui-icon-arrow-1-n { background-position: 0 -32px; }\n.ui-icon-arrow-1-ne { background-position: -16px -32px; }\n.ui-icon-arrow-1-e { background-position: -32px -32px; }\n.ui-icon-arrow-1-se { background-position: -48px -32px; }\n.ui-icon-arrow-1-s { background-position: -64px -32px; }\n.ui-icon-arrow-1-sw { background-position: -80px -32px; }\n.ui-icon-arrow-1-w { background-position: -96px -32px; }\n.ui-icon-arrow-1-nw { background-position: -112px -32px; }\n.ui-icon-arrow-2-n-s { background-position: -128px -32px; }\n.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }\n.ui-icon-arrow-2-e-w { background-position: -160px -32px; }\n.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }\n.ui-icon-arrowstop-1-n { background-position: -192px -32px; }\n.ui-icon-arrowstop-1-e { background-position: -208px -32px; }\n.ui-icon-arrowstop-1-s { background-position: -224px -32px; }\n.ui-icon-arrowstop-1-w { background-position: -240px -32px; }\n.ui-icon-arrowthick-1-n { background-position: 0 -48px; }\n.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }\n.ui-icon-arrowthick-1-e { background-position: -32px -48px; }\n.ui-icon-arrowthick-1-se { background-position: -48px -48px; }\n.ui-icon-arrowthick-1-s { background-position: -64px -48px; }\n.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }\n.ui-icon-arrowthick-1-w { background-position: -96px -48px; }\n.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }\n.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }\n.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }\n.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }\n.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }\n.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }\n.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }\n.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }\n.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }\n.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }\n.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }\n.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }\n.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }\n.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }\n.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }\n.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }\n.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }\n.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }\n.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }\n.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }\n.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }\n.ui-icon-arrow-4 { background-position: 0 -80px; }\n.ui-icon-arrow-4-diag { background-position: -16px -80px; }\n.ui-icon-extlink { background-position: -32px -80px; }\n.ui-icon-newwin { background-position: -48px -80px; }\n.ui-icon-refresh { background-position: -64px -80px; }\n.ui-icon-shuffle { background-position: -80px -80px; }\n.ui-icon-transfer-e-w { background-position: -96px -80px; }\n.ui-icon-transferthick-e-w { background-position: -112px -80px; }\n.ui-icon-folder-collapsed { background-position: 0 -96px; }\n.ui-icon-folder-open { background-position: -16px -96px; }\n.ui-icon-document { background-position: -32px -96px; }\n.ui-icon-document-b { background-position: -48px -96px; }\n.ui-icon-note { background-position: -64px -96px; }\n.ui-icon-mail-closed { background-position: -80px -96px; }\n.ui-icon-mail-open { background-position: -96px -96px; }\n.ui-icon-suitcase { background-position: -112px -96px; }\n.ui-icon-comment { background-position: -128px -96px; }\n.ui-icon-person { background-position: -144px -96px; }\n.ui-icon-print { background-position: -160px -96px; }\n.ui-icon-trash { background-position: -176px -96px; }\n.ui-icon-locked { background-position: -192px -96px; }\n.ui-icon-unlocked { background-position: -208px -96px; }\n.ui-icon-bookmark { background-position: -224px -96px; }\n.ui-icon-tag { background-position: -240px -96px; }\n.ui-icon-home { background-position: 0 -112px; }\n.ui-icon-flag { background-position: -16px -112px; }\n.ui-icon-calendar { background-position: -32px -112px; }\n.ui-icon-cart { background-position: -48px -112px; }\n.ui-icon-pencil { background-position: -64px -112px; }\n.ui-icon-clock { background-position: -80px -112px; }\n.ui-icon-disk { background-position: -96px -112px; }\n.ui-icon-calculator { background-position: -112px -112px; }\n.ui-icon-zoomin { background-position: -128px -112px; }\n.ui-icon-zoomout { background-position: -144px -112px; }\n.ui-icon-search { background-position: -160px -112px; }\n.ui-icon-wrench { background-position: -176px -112px; }\n.ui-icon-gear { background-position: -192px -112px; }\n.ui-icon-heart { background-position: -208px -112px; }\n.ui-icon-star { background-position: -224px -112px; }\n.ui-icon-link { background-position: -240px -112px; }\n.ui-icon-cancel { background-position: 0 -128px; }\n.ui-icon-plus { background-position: -16px -128px; }\n.ui-icon-plusthick { background-position: -32px -128px; }\n.ui-icon-minus { background-position: -48px -128px; }\n.ui-icon-minusthick { background-position: -64px -128px; }\n.ui-icon-close { background-position: -80px -128px; }\n.ui-icon-closethick { background-position: -96px -128px; }\n.ui-icon-key { background-position: -112px -128px; }\n.ui-icon-lightbulb { background-position: -128px -128px; }\n.ui-icon-scissors { background-position: -144px -128px; }\n.ui-icon-clipboard { background-position: -160px -128px; }\n.ui-icon-copy { background-position: -176px -128px; }\n.ui-icon-contact { background-position: -192px -128px; }\n.ui-icon-image { background-position: -208px -128px; }\n.ui-icon-video { background-position: -224px -128px; }\n.ui-icon-script { background-position: -240px -128px; }\n.ui-icon-alert { background-position: 0 -144px; }\n.ui-icon-info { background-position: -16px -144px; }\n.ui-icon-notice { background-position: -32px -144px; }\n.ui-icon-help { background-position: -48px -144px; }\n.ui-icon-check { background-position: -64px -144px; }\n.ui-icon-bullet { background-position: -80px -144px; }\n.ui-icon-radio-on { background-position: -96px -144px; }\n.ui-icon-radio-off { background-position: -112px -144px; }\n.ui-icon-pin-w { background-position: -128px -144px; }\n.ui-icon-pin-s { background-position: -144px -144px; }\n.ui-icon-play { background-position: 0 -160px; }\n.ui-icon-pause { background-position: -16px -160px; }\n.ui-icon-seek-next { background-position: -32px -160px; }\n.ui-icon-seek-prev { background-position: -48px -160px; }\n.ui-icon-seek-end { background-position: -64px -160px; }\n.ui-icon-seek-start { background-position: -80px -160px; }\n/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */\n.ui-icon-seek-first { background-position: -80px -160px; }\n.ui-icon-stop { background-position: -96px -160px; }\n.ui-icon-eject { background-position: -112px -160px; }\n.ui-icon-volume-off { background-position: -128px -160px; }\n.ui-icon-volume-on { background-position: -144px -160px; }\n.ui-icon-power { background-position: 0 -176px; }\n.ui-icon-signal-diag { background-position: -16px -176px; }\n.ui-icon-signal { background-position: -32px -176px; }\n.ui-icon-battery-0 { background-position: -48px -176px; }\n.ui-icon-battery-1 { background-position: -64px -176px; }\n.ui-icon-battery-2 { background-position: -80px -176px; }\n.ui-icon-battery-3 { background-position: -96px -176px; }\n.ui-icon-circle-plus { background-position: 0 -192px; }\n.ui-icon-circle-minus { background-position: -16px -192px; }\n.ui-icon-circle-close { background-position: -32px -192px; }\n.ui-icon-circle-triangle-e { background-position: -48px -192px; }\n.ui-icon-circle-triangle-s { background-position: -64px -192px; }\n.ui-icon-circle-triangle-w { background-position: -80px -192px; }\n.ui-icon-circle-triangle-n { background-position: -96px -192px; }\n.ui-icon-circle-arrow-e { background-position: -112px -192px; }\n.ui-icon-circle-arrow-s { background-position: -128px -192px; }\n.ui-icon-circle-arrow-w { background-position: -144px -192px; }\n.ui-icon-circle-arrow-n { background-position: -160px -192px; }\n.ui-icon-circle-zoomin { background-position: -176px -192px; }\n.ui-icon-circle-zoomout { background-position: -192px -192px; }\n.ui-icon-circle-check { background-position: -208px -192px; }\n.ui-icon-circlesmall-plus { background-position: 0 -208px; }\n.ui-icon-circlesmall-minus { background-position: -16px -208px; }\n.ui-icon-circlesmall-close { background-position: -32px -208px; }\n.ui-icon-squaresmall-plus { background-position: -48px -208px; }\n.ui-icon-squaresmall-minus { background-position: -64px -208px; }\n.ui-icon-squaresmall-close { background-position: -80px -208px; }\n.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }\n.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }\n.ui-icon-grip-solid-vertical { background-position: -32px -224px; }\n.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }\n.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }\n.ui-icon-grip-diagonal-se { background-position: -80px -224px; }\n\n\n/* Misc visuals\n----------------------------------*/\n\n/* Corner radius */\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-left,\n.ui-corner-tl {\n\tborder-top-left-radius: 5px;\n}\n.ui-corner-all,\n.ui-corner-top,\n.ui-corner-right,\n.ui-corner-tr {\n\tborder-top-right-radius: 5px;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-left,\n.ui-corner-bl {\n\tborder-bottom-left-radius: 5px;\n}\n.ui-corner-all,\n.ui-corner-bottom,\n.ui-corner-right,\n.ui-corner-br {\n\tborder-bottom-right-radius: 5px;\n}\n\n/* Overlays */\n.ui-widget-overlay {\n\tbackground: #aaaaaa;\n\topacity: .3;\n\tfilter: Alpha(Opacity=30); /* support: IE8 */\n}\n.ui-widget-shadow {\n\tmargin: -8px 0 0 -8px;\n\tpadding: 8px;\n\tbackground: #aaaaaa;\n\topacity: .3;\n\tfilter: Alpha(Opacity=30); /* support: IE8 */\n\tborder-radius: 8px;\n}"
  },
  {
    "path": "public/landing/css/magnific-popup.css",
    "content": "/* Magnific Popup CSS */\n.mfp-bg {\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 2042;\n  overflow: hidden;\n  position: fixed;\n  background: #0b0b0b;\n  opacity: 0.8; }\n\n.mfp-wrap {\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 2043;\n  position: fixed;\n  outline: none !important;\n  -webkit-backface-visibility: hidden; }\n\n.mfp-container {\n  text-align: center;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  padding: 0 8px;\n  box-sizing: border-box; }\n\n.mfp-container:before {\n  content: '';\n  display: inline-block;\n  height: 100%;\n  vertical-align: middle; }\n\n.mfp-align-top .mfp-container:before {\n  display: none; }\n\n.mfp-content {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle;\n  margin: 0 auto;\n  text-align: left;\n  z-index: 2045; }\n\n.mfp-inline-holder .mfp-content,\n.mfp-ajax-holder .mfp-content {\n  width: 100%;\n  cursor: auto; }\n\n.mfp-ajax-cur {\n  cursor: progress; }\n\n.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {\n  cursor: -moz-zoom-out;\n  cursor: -webkit-zoom-out;\n  cursor: zoom-out; }\n\n.mfp-zoom {\n  cursor: pointer;\n  cursor: -webkit-zoom-in;\n  cursor: -moz-zoom-in;\n  cursor: zoom-in; }\n\n.mfp-auto-cursor .mfp-content {\n  cursor: auto; }\n\n.mfp-close,\n.mfp-arrow,\n.mfp-preloader,\n.mfp-counter {\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  user-select: none; }\n\n.mfp-loading.mfp-figure {\n  display: none; }\n\n.mfp-hide {\n  display: none !important; }\n\n.mfp-preloader {\n  color: #CCC;\n  position: absolute;\n  top: 50%;\n  width: auto;\n  text-align: center;\n  margin-top: -0.8em;\n  left: 8px;\n  right: 8px;\n  z-index: 2044; }\n  .mfp-preloader a {\n    color: #CCC; }\n    .mfp-preloader a:hover {\n      color: #FFF; }\n\n.mfp-s-ready .mfp-preloader {\n  display: none; }\n\n.mfp-s-error .mfp-content {\n  display: none; }\n\nbutton.mfp-close,\nbutton.mfp-arrow {\n  overflow: visible;\n  cursor: pointer;\n  background: transparent;\n  border: 0;\n  -webkit-appearance: none;\n  display: block;\n  outline: none;\n  padding: 0;\n  z-index: 2046;\n  box-shadow: none;\n  touch-action: manipulation; }\n\nbutton::-moz-focus-inner {\n  padding: 0;\n  border: 0; }\n\n.mfp-close {\n  width: 44px;\n  height: 44px;\n  line-height: 44px;\n  position: absolute;\n  right: 0;\n  top: 0;\n  text-decoration: none;\n  text-align: center;\n  opacity: 0.65;\n  padding: 0 0 18px 10px;\n  color: #FFF;\n  font-style: normal;\n  font-size: 28px;\n  font-family: Arial, Baskerville, monospace; }\n  .mfp-close:hover,\n  .mfp-close:focus {\n    opacity: 1; }\n  .mfp-close:active {\n    top: 1px; }\n\n.mfp-close-btn-in .mfp-close {\n  color: #333; }\n\n.mfp-image-holder .mfp-close,\n.mfp-iframe-holder .mfp-close {\n  color: #FFF;\n  right: -6px;\n  text-align: right;\n  padding-right: 6px;\n  width: 100%; }\n\n.mfp-counter {\n  position: absolute;\n  top: 0;\n  right: 0;\n  color: #CCC;\n  font-size: 12px;\n  line-height: 18px;\n  white-space: nowrap; }\n\n.mfp-arrow {\n  position: absolute;\n  opacity: 0.65;\n  margin: 0;\n  top: 50%;\n  margin-top: -55px;\n  padding: 0;\n  width: 90px;\n  height: 110px;\n  -webkit-tap-highlight-color: transparent; }\n  .mfp-arrow:active {\n    margin-top: -54px; }\n  .mfp-arrow:hover,\n  .mfp-arrow:focus {\n    opacity: 1; }\n  .mfp-arrow:before,\n  .mfp-arrow:after {\n    content: '';\n    display: block;\n    width: 0;\n    height: 0;\n    position: absolute;\n    left: 0;\n    top: 0;\n    margin-top: 35px;\n    margin-left: 35px;\n    border: medium inset transparent; }\n  .mfp-arrow:after {\n    border-top-width: 13px;\n    border-bottom-width: 13px;\n    top: 8px; }\n  .mfp-arrow:before {\n    border-top-width: 21px;\n    border-bottom-width: 21px;\n    opacity: 0.7; }\n\n.mfp-arrow-left {\n  left: 0; }\n  .mfp-arrow-left:after {\n    border-right: 17px solid #FFF;\n    margin-left: 31px; }\n  .mfp-arrow-left:before {\n    margin-left: 25px;\n    border-right: 27px solid #3F3F3F; }\n\n.mfp-arrow-right {\n  right: 0; }\n  .mfp-arrow-right:after {\n    border-left: 17px solid #FFF;\n    margin-left: 39px; }\n  .mfp-arrow-right:before {\n    border-left: 27px solid #3F3F3F; }\n\n.mfp-iframe-holder {\n  padding-top: 40px;\n  padding-bottom: 40px; }\n  .mfp-iframe-holder .mfp-content {\n    line-height: 0;\n    width: 100%;\n    max-width: 900px; }\n  .mfp-iframe-holder .mfp-close {\n    top: -40px; }\n\n.mfp-iframe-scaler {\n  width: 100%;\n  height: 0;\n  overflow: hidden;\n  padding-top: 56.25%; }\n  .mfp-iframe-scaler iframe {\n    position: absolute;\n    display: block;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);\n    background: #000; }\n\n/* Main image in popup */\nimg.mfp-img {\n  width: auto;\n  max-width: 100%;\n  height: auto;\n  display: block;\n  line-height: 0;\n  box-sizing: border-box;\n  padding: 40px 0 40px;\n  margin: 0 auto; }\n\n/* The shadow behind the image */\n.mfp-figure {\n  line-height: 0; }\n  .mfp-figure:after {\n    content: '';\n    position: absolute;\n    left: 0;\n    top: 40px;\n    bottom: 40px;\n    display: block;\n    right: 0;\n    width: auto;\n    height: auto;\n    z-index: -1;\n    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);\n    background: #444; }\n  .mfp-figure small {\n    color: #BDBDBD;\n    display: block;\n    font-size: 12px;\n    line-height: 14px; }\n  .mfp-figure figure {\n    margin: 0; }\n\n.mfp-bottom-bar {\n  margin-top: -36px;\n  position: absolute;\n  top: 100%;\n  left: 0;\n  width: 100%;\n  cursor: auto; }\n\n.mfp-title {\n  text-align: left;\n  line-height: 18px;\n  color: #F3F3F3;\n  word-wrap: break-word;\n  padding-right: 36px; }\n\n.mfp-image-holder .mfp-content {\n  max-width: 100%; }\n\n.mfp-gallery .mfp-image-holder .mfp-figure {\n  cursor: pointer; }\n\n@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {\n  /**\n       * Remove all paddings around the image on small screen\n       */\n  .mfp-img-mobile .mfp-image-holder {\n    padding-left: 0;\n    padding-right: 0; }\n  .mfp-img-mobile img.mfp-img {\n    padding: 0; }\n  .mfp-img-mobile .mfp-figure:after {\n    top: 0;\n    bottom: 0; }\n  .mfp-img-mobile .mfp-figure small {\n    display: inline;\n    margin-left: 5px; }\n  .mfp-img-mobile .mfp-bottom-bar {\n    background: rgba(0, 0, 0, 0.6);\n    bottom: 0;\n    margin: 0;\n    top: auto;\n    padding: 3px 5px;\n    position: fixed;\n    box-sizing: border-box; }\n    .mfp-img-mobile .mfp-bottom-bar:empty {\n      padding: 0; }\n  .mfp-img-mobile .mfp-counter {\n    right: 5px;\n    top: 3px; }\n  .mfp-img-mobile .mfp-close {\n    top: 0;\n    right: 0;\n    width: 35px;\n    height: 35px;\n    line-height: 35px;\n    background: rgba(0, 0, 0, 0.6);\n    position: fixed;\n    text-align: center;\n    padding: 0; } }\n\n@media all and (max-width: 900px) {\n  .mfp-arrow {\n    -webkit-transform: scale(0.75);\n    transform: scale(0.75); }\n  .mfp-arrow-left {\n    -webkit-transform-origin: 0;\n    transform-origin: 0; }\n  .mfp-arrow-right {\n    -webkit-transform-origin: 100%;\n    transform-origin: 100%; }\n  .mfp-container {\n    padding-left: 6px;\n    padding-right: 6px; } }"
  },
  {
    "path": "public/landing/css/mediaelementplayer.css",
    "content": "/* Accessibility: hide screen reader texts (and prefer \"top\" for RTL languages).\nReference: http://blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */\n.mejs__offscreen {\n    border: 0;\n    clip: rect( 1px, 1px, 1px, 1px );\n    -webkit-clip-path: inset( 50% );\n            clip-path: inset( 50% );\n    height: 1px;\n    margin: -1px;\n    overflow: hidden;\n    padding: 0;\n    position: absolute;\n    width: 1px;\n    word-wrap: normal;\n}\n\n.mejs__container {\n    background: #000;\n    box-sizing: border-box;\n    font-family: 'Helvetica', Arial, serif;\n    position: relative;\n    text-align: left;\n    text-indent: 0;\n    vertical-align: top;\n}\n\n.mejs__container * {\n    box-sizing: border-box;\n}\n\n/* Hide native play button and control bar from iOS to favor plugin button */\n.mejs__container video::-webkit-media-controls,\n.mejs__container video::-webkit-media-controls-panel,\n.mejs__container video::-webkit-media-controls-panel-container,\n.mejs__container video::-webkit-media-controls-start-playback-button {\n    -webkit-appearance: none;\n    display: none !important;\n}\n\n.mejs__fill-container,\n.mejs__fill-container .mejs__container {\n    height: 100%;\n    width: 100%;\n}\n\n.mejs__fill-container {\n    background: transparent;\n    margin: 0 auto;\n    overflow: hidden;\n    position: relative;\n}\n\n.mejs__container:focus {\n    outline: none;\n}\n\n.mejs__iframe-overlay {\n    height: 100%;\n    position: absolute;\n    width: 100%;\n}\n\n.mejs__embed,\n.mejs__embed body {\n    background: #000;\n    height: 100%;\n    margin: 0;\n    overflow: hidden;\n    padding: 0;\n    width: 100%;\n}\n\n.mejs__fullscreen {\n    overflow: hidden !important;\n}\n\n.mejs__container-fullscreen {\n    bottom: 0;\n    left: 0;\n    overflow: hidden;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: 1000;\n}\n\n.mejs__container-fullscreen .mejs__mediaelement,\n.mejs__container-fullscreen video {\n    height: 100% !important;\n    width: 100% !important;\n}\n\n/* Start: LAYERS */\n.mejs__background {\n    left: 0;\n    position: absolute;\n    top: 0;\n}\n\n.mejs__mediaelement {\n    height: 100%;\n    left: 0;\n    position: absolute;\n    top: 0;\n    width: 100%;\n    z-index: 0;\n}\n\n.mejs__poster {\n    background-position: 50% 50%;\n    background-repeat: no-repeat;\n    background-size: cover;\n    left: 0;\n    position: absolute;\n    top: 0;\n    z-index: 1;\n}\n\n:root .mejs__poster-img {\n    display: none;\n}\n\n.mejs__poster-img {\n    border: 0;\n    padding: 0;\n}\n\n.mejs__overlay {\n    -webkit-box-align: center;\n    -webkit-align-items: center;\n        -ms-flex-align: center;\n            align-items: center;\n    display: -webkit-box;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    -webkit-box-pack: center;\n    -webkit-justify-content: center;\n        -ms-flex-pack: center;\n            justify-content: center;\n    left: 0;\n    position: absolute;\n    top: 0;\n}\n\n.mejs__layer {\n    z-index: 1;\n}\n\n.mejs__overlay-play {\n    cursor: pointer;\n}\n\n.mejs__overlay-button {\n    background: url('mejs-controls.svg') no-repeat;\n    background-position: 0 -39px;\n    height: 80px;\n    width: 80px;\n}\n\n.mejs__overlay:hover > .mejs__overlay-button {\n    background-position: -80px -39px;\n}\n\n.mejs__overlay-loading {\n    height: 80px;\n    width: 80px;\n}\n\n.mejs__overlay-loading-bg-img {\n    -webkit-animation: mejs__loading-spinner 1s linear infinite;\n            animation: mejs__loading-spinner 1s linear infinite;\n    background: transparent url('mejs-controls.svg') -160px -40px no-repeat;\n    display: block;\n    height: 80px;\n    width: 80px;\n    z-index: 1;\n}\n\n@-webkit-keyframes mejs__loading-spinner {\n    100% {\n        -webkit-transform: rotate(360deg);\n                transform: rotate(360deg);\n    }\n}\n\n@keyframes mejs__loading-spinner {\n    100% {\n        -webkit-transform: rotate(360deg);\n                transform: rotate(360deg);\n    }\n}\n\n/* End: LAYERS */\n\n/* Start: CONTROL BAR */\n.mejs__controls {\n    bottom: 0;\n    display: -webkit-box;\n    display: -webkit-flex;\n    display: -ms-flexbox;\n    display: flex;\n    height: 40px;\n    left: 0;\n    list-style-type: none;\n    margin: 0;\n    padding: 0 10px;\n    position: absolute;\n    width: 100%;\n    z-index: 3;\n}\n\n.mejs__controls:not([style*='display: none']) {\n    background: rgba(255, 0, 0, 0.7);\n    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.35));\n    background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));\n}\n\n.mejs__button,\n.mejs__time,\n.mejs__time-rail {\n    font-size: 10px;\n    height: 40px;\n    line-height: 10px;\n    margin: 0;\n    width: 32px;\n}\n\n.mejs__button > button {\n    background: transparent url('mejs-controls.svg');\n    border: 0;\n    cursor: pointer;\n    display: block;\n    font-size: 0;\n    height: 20px;\n    line-height: 0;\n    margin: 10px 6px;\n    overflow: hidden;\n    padding: 0;\n    position: absolute;\n    text-decoration: none;\n    width: 20px;\n}\n\n/* :focus for accessibility */\n.mejs__button > button:focus {\n    outline: dotted 1px #999;\n}\n\n.mejs__container-keyboard-inactive a,\n.mejs__container-keyboard-inactive a:focus,\n.mejs__container-keyboard-inactive button,\n.mejs__container-keyboard-inactive button:focus,\n.mejs__container-keyboard-inactive [role=slider],\n.mejs__container-keyboard-inactive [role=slider]:focus {\n    outline: 0;\n}\n\n/* End: CONTROL BAR */\n\n/* Start: Time (Current / Duration) */\n.mejs__time {\n    box-sizing: content-box;\n    color: #fff;\n    font-size: 11px;\n    font-weight: bold;\n    height: 24px;\n    overflow: hidden;\n    padding: 16px 6px 0;\n    text-align: center;\n    width: auto;\n}\n\n/* End: Time (Current / Duration) */\n\n/* Start: Play/Pause/Stop */\n.mejs__play > button {\n    background-position: 0 0;\n}\n\n.mejs__pause > button {\n    background-position: -20px 0;\n}\n\n.mejs__replay > button {\n    background-position: -160px 0;\n}\n\n/* End: Play/Pause/Stop */\n\n/* Start: Progress Bar */\n.mejs__time-rail {\n    direction: ltr;\n    -webkit-box-flex: 1;\n    -webkit-flex-grow: 1;\n        -ms-flex-positive: 1;\n            flex-grow: 1;\n    height: 40px;\n    margin: 0 10px;\n    padding-top: 10px;\n    position: relative;\n}\n\n.mejs__time-total,\n.mejs__time-buffering,\n.mejs__time-loaded,\n.mejs__time-current,\n.mejs__time-float,\n.mejs__time-hovered,\n.mejs__time-float-current,\n.mejs__time-float-corner,\n.mejs__time-marker {\n    border-radius: 2px;\n    cursor: pointer;\n    display: block;\n    height: 10px;\n    position: absolute;\n}\n\n.mejs__time-total {\n    background: rgba(255, 255, 255, 0.3);\n    margin: 5px 0 0;\n    width: 100%;\n}\n\n.mejs__time-buffering {\n    -webkit-animation: buffering-stripes 2s linear infinite;\n            animation: buffering-stripes 2s linear infinite;\n    background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);\n    background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);\n    background-size: 15px 15px;\n    width: 100%;\n}\n\n@-webkit-keyframes buffering-stripes {\n    from {\n        background-position: 0 0;\n    }\n    to {\n        background-position: 30px 0;\n    }\n}\n\n@keyframes buffering-stripes {\n    from {\n        background-position: 0 0;\n    }\n    to {\n        background-position: 30px 0;\n    }\n}\n\n.mejs__time-loaded {\n    background: rgba(255, 255, 255, 0.3);\n}\n\n.mejs__time-current,\n.mejs__time-handle-content {\n    background: rgba(255, 255, 255, 0.9);\n}\n\n.mejs__time-hovered {\n    background: rgba(255, 255, 255, 0.5);\n    z-index: 10;\n}\n\n.mejs__time-hovered.negative {\n    background: rgba(0, 0, 0, 0.2);\n}\n\n.mejs__time-current,\n.mejs__time-buffering,\n.mejs__time-loaded,\n.mejs__time-hovered {\n    left: 0;\n    -webkit-transform: scaleX(0);\n        -ms-transform: scaleX(0);\n            transform: scaleX(0);\n    -webkit-transform-origin: 0 0;\n        -ms-transform-origin: 0 0;\n            transform-origin: 0 0;\n    -webkit-transition: 0.15s ease-in all;\n    transition: 0.15s ease-in all;\n    width: 100%;\n}\n\n.mejs__time-buffering {\n    -webkit-transform: scaleX(1);\n        -ms-transform: scaleX(1);\n            transform: scaleX(1);\n}\n\n.mejs__time-hovered {\n    -webkit-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);\n    transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);\n}\n\n.mejs__time-hovered.no-hover {\n    -webkit-transform: scaleX(0) !important;\n        -ms-transform: scaleX(0) !important;\n            transform: scaleX(0) !important;\n}\n\n.mejs__time-handle,\n.mejs__time-handle-content {\n    border: 4px solid transparent;\n    cursor: pointer;\n    left: 0;\n    position: absolute;\n    -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n            transform: translateX(0);\n    z-index: 11;\n}\n\n.mejs__time-handle-content {\n    border: 4px solid rgba(255, 255, 255, 0.9);\n    border-radius: 50%;\n    height: 10px;\n    left: -7px;\n    top: -4px;\n    -webkit-transform: scale(0);\n        -ms-transform: scale(0);\n            transform: scale(0);\n    width: 10px;\n}\n\n.mejs__time-rail:hover .mejs__time-handle-content,\n.mejs__time-rail .mejs__time-handle-content:focus,\n.mejs__time-rail .mejs__time-handle-content:active {\n    -webkit-transform: scale(1);\n        -ms-transform: scale(1);\n            transform: scale(1);\n}\n\n.mejs__time-float {\n    background: #eee;\n    border: solid 1px #333;\n    bottom: 100%;\n    color: #111;\n    display: none;\n    height: 17px;\n    margin-bottom: 9px;\n    position: absolute;\n    text-align: center;\n    -webkit-transform: translateX(-50%);\n        -ms-transform: translateX(-50%);\n            transform: translateX(-50%);\n    width: 36px;\n}\n\n.mejs__time-float-current {\n    display: block;\n    left: 0;\n    margin: 2px;\n    text-align: center;\n    width: 30px;\n}\n\n.mejs__time-float-corner {\n    border: solid 5px #eee;\n    border-color: #eee transparent transparent;\n    border-radius: 0;\n    display: block;\n    height: 0;\n    left: 50%;\n    line-height: 0;\n    position: absolute;\n    top: 100%;\n    -webkit-transform: translateX(-50%);\n        -ms-transform: translateX(-50%);\n            transform: translateX(-50%);\n    width: 0;\n}\n\n.mejs__long-video .mejs__time-float {\n    margin-left: -23px;\n    width: 64px;\n}\n\n.mejs__long-video .mejs__time-float-current {\n    width: 60px;\n}\n\n.mejs__broadcast {\n    color: #fff;\n    height: 10px;\n    position: absolute;\n    top: 15px;\n    width: 100%;\n}\n\n/* End: Progress Bar */\n\n/* Start: Fullscreen */\n.mejs__fullscreen-button > button {\n    background-position: -80px 0;\n}\n\n.mejs__unfullscreen > button {\n    background-position: -100px 0;\n}\n\n/* End: Fullscreen */\n\n/* Start: Mute/Volume */\n.mejs__mute > button {\n    background-position: -60px 0;\n}\n\n.mejs__unmute > button {\n    background-position: -40px 0;\n}\n\n.mejs__volume-button {\n    position: relative;\n}\n\n.mejs__volume-button > .mejs__volume-slider {\n    -webkit-backface-visibility: hidden;\n    background: rgba(50, 50, 50, 0.7);\n    border-radius: 0;\n    bottom: 100%;\n    display: none;\n    height: 115px;\n    left: 50%;\n    margin: 0;\n    position: absolute;\n    -webkit-transform: translateX(-50%);\n        -ms-transform: translateX(-50%);\n            transform: translateX(-50%);\n    width: 25px;\n    z-index: 1;\n}\n\n.mejs__volume-button:hover {\n    border-radius: 0 0 4px 4px;\n}\n\n.mejs__volume-total {\n    background: rgba(255, 255, 255, 0.5);\n    height: 100px;\n    left: 50%;\n    margin: 0;\n    position: absolute;\n    top: 8px;\n    -webkit-transform: translateX(-50%);\n        -ms-transform: translateX(-50%);\n            transform: translateX(-50%);\n    width: 2px;\n}\n\n.mejs__volume-current {\n    background: rgba(255, 255, 255, 0.9);\n    left: 0;\n    margin: 0;\n    position: absolute;\n    width: 100%;\n}\n\n.mejs__volume-handle {\n    background: rgba(255, 255, 255, 0.9);\n    border-radius: 1px;\n    cursor: ns-resize;\n    height: 6px;\n    left: 50%;\n    position: absolute;\n    -webkit-transform: translateX(-50%);\n        -ms-transform: translateX(-50%);\n            transform: translateX(-50%);\n    width: 16px;\n}\n\n.mejs__horizontal-volume-slider {\n    display: block;\n    height: 36px;\n    position: relative;\n    vertical-align: middle;\n    width: 56px;\n}\n\n.mejs__horizontal-volume-total {\n    background: rgba(50, 50, 50, 0.8);\n    border-radius: 2px;\n    font-size: 1px;\n    height: 8px;\n    left: 0;\n    margin: 0;\n    padding: 0;\n    position: absolute;\n    top: 16px;\n    width: 50px;\n}\n\n.mejs__horizontal-volume-current {\n    background: rgba(255, 255, 255, 0.8);\n    border-radius: 2px;\n    font-size: 1px;\n    height: 100%;\n    left: 0;\n    margin: 0;\n    padding: 0;\n    position: absolute;\n    top: 0;\n    width: 100%;\n}\n\n.mejs__horizontal-volume-handle {\n    display: none;\n}\n\n/* End: Mute/Volume */\n\n/* Start: Track (Captions and Chapters) */\n.mejs__captions-button,\n.mejs__chapters-button {\n    position: relative;\n}\n\n.mejs__captions-button > button {\n    background-position: -140px 0;\n}\n\n.mejs__chapters-button > button {\n    background-position: -180px 0;\n}\n\n.mejs__captions-button > .mejs__captions-selector,\n.mejs__chapters-button > .mejs__chapters-selector {\n    background: rgba(50, 50, 50, 0.7);\n    border: solid 1px transparent;\n    border-radius: 0;\n    bottom: 100%;\n    margin-right: -43px;\n    overflow: hidden;\n    padding: 0;\n    position: absolute;\n    right: 50%;\n    visibility: visible;\n    width: 86px;\n}\n\n.mejs__chapters-button > .mejs__chapters-selector {\n    margin-right: -55px;\n    width: 110px;\n}\n\n.mejs__captions-selector-list,\n.mejs__chapters-selector-list {\n    list-style-type: none !important;\n    margin: 0;\n    overflow: hidden;\n    padding: 0;\n}\n\n.mejs__captions-selector-list-item,\n.mejs__chapters-selector-list-item {\n    color: #fff;\n    cursor: pointer;\n    display: block;\n    list-style-type: none !important;\n    margin: 0 0 6px;\n    overflow: hidden;\n    padding: 0;\n}\n\n.mejs__captions-selector-list-item:hover,\n.mejs__chapters-selector-list-item:hover {\n    background-color: rgb(200, 200, 200) !important;\n    background-color: rgba(255, 255, 255, 0.4) !important;\n}\n\n.mejs__captions-selector-input,\n.mejs__chapters-selector-input {\n    clear: both;\n    float: left;\n    left: -1000px;\n    margin: 3px 3px 0 5px;\n    position: absolute;\n}\n\n.mejs__captions-selector-label,\n.mejs__chapters-selector-label {\n    cursor: pointer;\n    float: left;\n    font-size: 10px;\n    line-height: 15px;\n    padding: 4px 10px 0;\n    width: 100%;\n}\n\n.mejs__captions-selected,\n.mejs__chapters-selected {\n    color: rgba(33, 248, 248, 1);\n}\n\n.mejs__captions-translations {\n    font-size: 10px;\n    margin: 0 0 5px;\n}\n\n.mejs__captions-layer {\n    bottom: 0;\n    color: #fff;\n    font-size: 16px;\n    left: 0;\n    line-height: 20px;\n    position: absolute;\n    text-align: center;\n}\n\n.mejs__captions-layer a {\n    color: #fff;\n    text-decoration: underline;\n}\n\n.mejs__captions-layer[lang=ar] {\n    font-size: 20px;\n    font-weight: normal;\n}\n\n.mejs__captions-position {\n    bottom: 15px;\n    left: 0;\n    position: absolute;\n    width: 100%;\n}\n\n.mejs__captions-position-hover {\n    bottom: 35px;\n}\n\n.mejs__captions-text,\n.mejs__captions-text * {\n    background: rgba(20, 20, 20, 0.5);\n    box-shadow: 5px 0 0 rgba(20, 20, 20, 0.5), -5px 0 0 rgba(20, 20, 20, 0.5);\n    padding: 0;\n    white-space: pre-wrap;\n}\n\n.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {\n    display: none;\n}\n\n/* End: Track (Captions and Chapters) */\n\n/* Start: Error */\n.mejs__overlay-error {\n    position: relative;\n}\n.mejs__overlay-error > img {\n    left: 0;\n    position: absolute;\n    top: 0;\n    z-index: -1;\n}\n.mejs__cannotplay,\n.mejs__cannotplay a {\n    color: #fff;\n    font-size: 0.8em;\n}\n\n.mejs__cannotplay {\n    position: relative;\n}\n\n.mejs__cannotplay p,\n.mejs__cannotplay a {\n    display: inline-block;\n    padding: 0 15px;\n    width: 100%;\n}\n/* End: Error */"
  },
  {
    "path": "public/landing/css/style.css",
    "content": "/* Base */\nbody {\n  line-height: 1.7;\n  color: gray;\n  font-weight: 300;\n  font-size: 1.1rem; }\n\n::-moz-selection {\n  background: #000;\n  color: #fff; }\n\n::selection {\n  background: #000;\n  color: #fff; }\n\na {\n  -webkit-transition: .3s all ease;\n  -o-transition: .3s all ease;\n  transition: .3s all ease; }\n  a:hover {\n    text-decoration: none; }\n\nh1, h2, h3, h4, h5,\n.h1, .h2, .h3, .h4, .h5 {\n  font-family: \"Muli\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; }\n\n.border-2 {\n  border-width: 2px; }\n\n.text-black {\n  color: #000 !important; }\n\n.bg-black {\n  background: #000 !important; }\n\n.color-black-opacity-5 {\n  color: rgba(0, 0, 0, 0.5); }\n\n.color-white-opacity-5 {\n  color: rgba(255, 255, 255, 0.5); }\n\n.site-wrap:before {\n  display: none;\n  -webkit-transition: .3s all ease-in-out;\n  -o-transition: .3s all ease-in-out;\n  transition: .3s all ease-in-out;\n  background: rgba(0, 0, 0, 0.6);\n  content: \"\";\n  position: absolute;\n  z-index: 2000;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  opacity: 0;\n  visibility: hidden; }\n\n.offcanvas-menu .site-wrap {\n  height: 100%;\n  width: 100%;\n  z-index: 2; }\n  .offcanvas-menu .site-wrap:before {\n    opacity: 1;\n    visibility: visible; }\n\n.btn {\n  text-transform: uppercase;\n  font-size: 12px;\n  font-weight: 900;\n  padding: 14px 30px; }\n  .btn:hover, .btn:active, .btn:focus {\n    outline: none;\n    -webkit-box-shadow: none !important;\n    box-shadow: none !important; }\n  .btn.btn-black {\n    border-width: 2px;\n    border-color: #000;\n    background: #000;\n    color: #fff; }\n    .btn.btn-black:hover {\n      color: #000;\n      background-color: transparent; }\n    .btn.btn-black.btn-outline-black {\n      color: #000;\n      background-color: transparent; }\n      .btn.btn-black.btn-outline-black:hover {\n        border-color: #000;\n        background: #000;\n        color: #fff; }\n  .btn.btn-white {\n    border-width: 2px;\n    border-color: #fff;\n    background: #fff;\n    color: #000; }\n    .btn.btn-white:hover {\n      color: #fff;\n      background-color: transparent; }\n    .btn.btn-white.btn-outline-white {\n      color: #fff;\n      background-color: transparent; }\n      .btn.btn-white.btn-outline-white:hover {\n        border-color: #fff;\n        background: #fff;\n        color: #000; }\n  .btn.btn-pill {\n    border-radius: 30px; }\n\n.line-height-1 {\n  line-height: 1 !important; }\n\n.bg-black {\n  background: #000; }\n\n.form-control {\n  height: 48px;\n  font-family: \"Muli\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"; }\n  .form-control:active, .form-control:focus {\n    border-color: #FF6600; }\n  .form-control:hover, .form-control:active, .form-control:focus {\n    -webkit-box-shadow: none !important;\n    box-shadow: none !important; }\n\n.site-section {\n  padding: 2.5em 0; }\n  @media (min-width: 768px) {\n    .site-section {\n      padding: 5em 0; } }\n  .site-section.site-section-sm {\n    padding: 4em 0; }\n\n.site-section-heading {\n  padding-bottom: 20px;\n  margin-bottom: 0px;\n  position: relative;\n  font-size: 2.5rem; }\n  @media (min-width: 768px) {\n    .site-section-heading {\n      font-size: 3rem; } }\n\n.border-top {\n  border-top: 1px solid #edf0f5 !important; }\n\n.site-footer {\n  padding: 4em 0;\n  background: #333333; }\n  @media (min-width: 768px) {\n    .site-footer {\n      padding: 8em 0; } }\n  .site-footer .border-top {\n    border-top: 1px solid rgba(255, 255, 255, 0.1) !important; }\n  .site-footer p {\n    color: #737373; }\n  .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {\n    color: #000; }\n  .site-footer a {\n    color: #999999; }\n    .site-footer a:hover {\n      color: black; }\n  .site-footer ul li {\n    margin-bottom: 10px; }\n  .site-footer .footer-heading {\n    font-size: 16px;\n    color: #000;\n    text-transform: uppercase;\n    font-weight: 900; }\n\n.bg-text-line {\n  display: inline;\n  background: #000;\n  -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;\n  box-shadow: 20px 0 0 #000, -20px 0 0 #000; }\n\n.text-white-opacity-05 {\n  color: rgba(255, 255, 255, 0.5); }\n\n.text-black-opacity-05 {\n  color: rgba(0, 0, 0, 0.5); }\n\n.hover-bg-enlarge {\n  overflow: hidden;\n  position: relative; }\n  @media (max-width: 991.98px) {\n    .hover-bg-enlarge {\n      height: auto !important; } }\n  .hover-bg-enlarge > div {\n    -webkit-transform: scale(1);\n    -ms-transform: scale(1);\n    transform: scale(1);\n    -webkit-transition: .8s all ease-in-out;\n    -o-transition: .8s all ease-in-out;\n    transition: .8s all ease-in-out; }\n  .hover-bg-enlarge:hover > div, .hover-bg-enlarge:focus > div, .hover-bg-enlarge:active > div {\n    -webkit-transform: scale(1.2);\n    -ms-transform: scale(1.2);\n    transform: scale(1.2); }\n  @media (max-width: 991.98px) {\n    .hover-bg-enlarge .bg-image-md-height {\n      height: 300px !important; } }\n\n.bg-image-2 {\n  background-attachment: fixed;\n  background-repeat: no-repeat;\n  background-size: cover;\n  background-position: center center; }\n\n.bg-image {\n  background-size: cover;\n  background-position: center center;\n  background-repeat: no-repeat;\n  background-attachment: fixed; }\n  .bg-image.overlay {\n    position: relative; }\n    .bg-image.overlay:after {\n      position: absolute;\n      content: \"\";\n      top: 0;\n      left: 0;\n      right: 0;\n      bottom: 0;\n      z-index: 0;\n      width: 100%;\n      background: rgba(0, 0, 0, 0.7); }\n  .bg-image > .container {\n    position: relative;\n    z-index: 1; }\n\n@media (max-width: 991.98px) {\n  .img-md-fluid {\n    max-width: 100%; } }\n\n@media (max-width: 991.98px) {\n  .display-1, .display-3 {\n    font-size: 3rem; } }\n\n.play-single-big {\n  width: 90px;\n  height: 90px;\n  display: inline-block;\n  border: 2px solid #fff;\n  color: #fff !important;\n  border-radius: 50%;\n  position: relative;\n  -webkit-transition: .3s all ease-in-out;\n  -o-transition: .3s all ease-in-out;\n  transition: .3s all ease-in-out; }\n  .play-single-big > span {\n    font-size: 50px;\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    -webkit-transform: translate(-40%, -50%);\n    -ms-transform: translate(-40%, -50%);\n    transform: translate(-40%, -50%); }\n  .play-single-big:hover {\n    width: 120px;\n    height: 120px; }\n\n.overlap-to-top {\n  margin-top: -150px; }\n\n.ul-check {\n  margin-bottom: 50px; }\n  .ul-check li {\n    position: relative;\n    padding-left: 35px;\n    margin-bottom: 15px;\n    line-height: 1.5; }\n    .ul-check li:before {\n      left: 0;\n      font-size: 20px;\n      top: -.3rem;\n      font-family: \"icomoon\";\n      content: \"\\e5ca\";\n      position: absolute; }\n  .ul-check.white li:before {\n    color: #fff; }\n  .ul-check.success li:before {\n    color: #8bc34a; }\n  .ul-check.primary li:before {\n    color: #FF6600; }\n\n.select-wrap, .wrap-icon {\n  position: relative; }\n  .select-wrap .icon, .wrap-icon .icon {\n    position: absolute;\n    right: 10px;\n    top: 50%;\n    -webkit-transform: translateY(-50%);\n    -ms-transform: translateY(-50%);\n    transform: translateY(-50%);\n    font-size: 22px; }\n  .select-wrap select, .wrap-icon select {\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    width: 100%; }\n\n/* Navbar */\n.site-logo {\n  position: relative;\n  font-weight: 900;\n  font-size: 1.3rem; }\n  .site-logo a {\n    color: #fff; }\n\n.site-navbar {\n  margin-bottom: 0px;\n  z-index: 1999;\n  position: absolute;\n  width: 100%; }\n  .site-navbar .container-fluid {\n    padding-left: 7rem;\n    padding-right: 7rem; }\n    @media (max-width: 1199.98px) {\n      .site-navbar .container-fluid {\n        padding-left: 15px;\n        padding-right: 15px; } }\n  .site-navbar .site-navigation.border-bottom {\n    border-bottom: 1px solid #f3f3f4 !important; }\n  .site-navbar .site-navigation .site-menu {\n    margin-bottom: 0; }\n    .site-navbar .site-navigation .site-menu .active {\n      color: #FF6600;\n      display: inline-block;\n      padding: 5px 20px; }\n    .site-navbar .site-navigation .site-menu a {\n      text-decoration: none !important;\n      display: inline-block; }\n    .site-navbar .site-navigation .site-menu > li {\n      display: inline-block; }\n      .site-navbar .site-navigation .site-menu > li > a {\n        padding: 5px 20px;\n        color: #fff;\n        display: inline-block;\n        text-decoration: none !important; }\n        .site-navbar .site-navigation .site-menu > li > a:hover {\n          color: #fff; }\n    .site-navbar .site-navigation .site-menu .has-children {\n      position: relative; }\n      .site-navbar .site-navigation .site-menu .has-children > a {\n        position: relative;\n        padding-right: 20px; }\n        .site-navbar .site-navigation .site-menu .has-children > a:before {\n          position: absolute;\n          content: \"\\e313\";\n          font-size: 16px;\n          top: 50%;\n          right: 0;\n          -webkit-transform: translateY(-50%);\n          -ms-transform: translateY(-50%);\n          transform: translateY(-50%);\n          font-family: 'icomoon'; }\n      .site-navbar .site-navigation .site-menu .has-children .dropdown {\n        visibility: hidden;\n        opacity: 0;\n        top: 100%;\n        position: absolute;\n        text-align: left;\n        border-top: 2px solid #FF6600;\n        -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);\n        box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);\n        border-left: 1px solid #edf0f5;\n        border-right: 1px solid #edf0f5;\n        border-bottom: 1px solid #edf0f5;\n        padding: 0px 0;\n        margin-top: 20px;\n        margin-left: 0px;\n        background: #fff;\n        -webkit-transition: 0.2s 0s;\n        -o-transition: 0.2s 0s;\n        transition: 0.2s 0s; }\n        .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {\n          position: absolute; }\n          .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {\n            bottom: 100%;\n            left: 20%;\n            border: solid transparent;\n            content: \" \";\n            height: 0;\n            width: 0;\n            position: absolute;\n            pointer-events: none; }\n          .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {\n            border-color: rgba(136, 183, 213, 0);\n            border-bottom-color: #fff;\n            border-width: 10px;\n            margin-left: -10px; }\n        .site-navbar .site-navigation .site-menu .has-children .dropdown a {\n          text-transform: none;\n          letter-spacing: normal;\n          -webkit-transition: 0s all;\n          -o-transition: 0s all;\n          transition: 0s all;\n          color: #343a40; }\n        .site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {\n          color: #FF6600 !important; }\n        .site-navbar .site-navigation .site-menu .has-children .dropdown > li {\n          list-style: none;\n          padding: 0;\n          margin: 0;\n          min-width: 200px; }\n          .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {\n            padding: 9px 20px;\n            display: block; }\n            .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {\n              background: #f4f5f9;\n              color: #25262a; }\n          .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {\n            content: \"\\e315\";\n            right: 20px; }\n          .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {\n            left: 100%;\n            top: 0; }\n          .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {\n            background: #f4f5f9;\n            color: #25262a; }\n      .site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {\n        color: #FF6600; }\n      .site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {\n        cursor: pointer; }\n        .site-navbar .site-navigation .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {\n          -webkit-transition-delay: 0s;\n          -o-transition-delay: 0s;\n          transition-delay: 0s;\n          margin-top: 0px;\n          visibility: visible;\n          opacity: 1; }\n    .site-navbar .site-navigation .site-menu.site-menu-dark > li > a {\n      color: #000; }\n\n.site-mobile-menu {\n  width: 300px;\n  position: fixed;\n  right: 0;\n  z-index: 2000;\n  padding-top: 20px;\n  background: #fff;\n  height: calc(100vh);\n  -webkit-transform: translateX(110%);\n  -ms-transform: translateX(110%);\n  transform: translateX(110%);\n  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);\n  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);\n  -webkit-transition: .3s all ease-in-out;\n  -o-transition: .3s all ease-in-out;\n  transition: .3s all ease-in-out; }\n  .offcanvas-menu .site-mobile-menu {\n    -webkit-transform: translateX(0%);\n    -ms-transform: translateX(0%);\n    transform: translateX(0%); }\n  .site-mobile-menu .site-mobile-menu-header {\n    width: 100%;\n    float: left;\n    padding-left: 20px;\n    padding-right: 20px; }\n    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {\n      float: right;\n      margin-top: 8px; }\n      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {\n        font-size: 30px;\n        display: inline-block;\n        padding-left: 10px;\n        padding-right: 0px;\n        line-height: 1;\n        cursor: pointer;\n        -webkit-transition: .3s all ease;\n        -o-transition: .3s all ease;\n        transition: .3s all ease; }\n        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {\n          color: #25262a; }\n    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {\n      float: left;\n      margin-top: 10px;\n      margin-left: 0px; }\n      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {\n        display: inline-block;\n        text-transform: uppercase; }\n        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {\n          max-width: 70px; }\n        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {\n          text-decoration: none; }\n  .site-mobile-menu .site-mobile-menu-body {\n    overflow-y: scroll;\n    -webkit-overflow-scrolling: touch;\n    position: relative;\n    padding: 0 20px 20px 20px;\n    height: calc(100vh - 52px);\n    padding-bottom: 150px; }\n  .site-mobile-menu .site-nav-wrap {\n    padding: 0;\n    margin: 0;\n    list-style: none;\n    position: relative; }\n    .site-mobile-menu .site-nav-wrap a {\n      padding: 10px 20px;\n      display: block;\n      position: relative;\n      color: #212529; }\n      .site-mobile-menu .site-nav-wrap a:hover {\n        color: #FF6600; }\n    .site-mobile-menu .site-nav-wrap li {\n      position: relative;\n      display: block; }\n      .site-mobile-menu .site-nav-wrap li .active {\n        color: #FF6600; }\n    .site-mobile-menu .site-nav-wrap .arrow-collapse {\n      position: absolute;\n      right: 0px;\n      top: 10px;\n      z-index: 20;\n      width: 36px;\n      height: 36px;\n      text-align: center;\n      cursor: pointer;\n      border-radius: 50%; }\n      .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {\n        background: #f8f9fa; }\n      .site-mobile-menu .site-nav-wrap .arrow-collapse:before {\n        font-size: 12px;\n        z-index: 20;\n        font-family: \"icomoon\";\n        content: \"\\f078\";\n        position: absolute;\n        top: 50%;\n        left: 50%;\n        -webkit-transform: translate(-50%, -50%) rotate(-180deg);\n        -ms-transform: translate(-50%, -50%) rotate(-180deg);\n        transform: translate(-50%, -50%) rotate(-180deg);\n        -webkit-transition: .3s all ease;\n        -o-transition: .3s all ease;\n        transition: .3s all ease; }\n      .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {\n        -webkit-transform: translate(-50%, -50%);\n        -ms-transform: translate(-50%, -50%);\n        transform: translate(-50%, -50%); }\n    .site-mobile-menu .site-nav-wrap > li {\n      display: block;\n      position: relative;\n      float: left;\n      width: 100%; }\n      .site-mobile-menu .site-nav-wrap > li > a {\n        padding-left: 20px;\n        font-size: 20px; }\n      .site-mobile-menu .site-nav-wrap > li > ul {\n        padding: 0;\n        margin: 0;\n        list-style: none; }\n        .site-mobile-menu .site-nav-wrap > li > ul > li {\n          display: block; }\n          .site-mobile-menu .site-nav-wrap > li > ul > li > a {\n            padding-left: 40px;\n            font-size: 16px; }\n          .site-mobile-menu .site-nav-wrap > li > ul > li > ul {\n            padding: 0;\n            margin: 0; }\n            .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {\n              display: block; }\n              .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {\n                font-size: 16px;\n                padding-left: 60px; }\n    .site-mobile-menu .site-nav-wrap[data-class=\"social\"] {\n      float: left;\n      width: 100%;\n      margin-top: 30px;\n      padding-bottom: 5em; }\n      .site-mobile-menu .site-nav-wrap[data-class=\"social\"] > li {\n        width: auto; }\n        .site-mobile-menu .site-nav-wrap[data-class=\"social\"] > li:first-child a {\n          padding-left: 15px !important; }\n\n.sticky-wrapper {\n  position: absolute;\n  z-index: 100;\n  width: 100%; }\n  .sticky-wrapper + .site-blocks-cover {\n    margin-top: 96px; }\n  .sticky-wrapper .site-navbar {\n    -webkit-transition: .3s all ease;\n    -o-transition: .3s all ease;\n    transition: .3s all ease; }\n    .sticky-wrapper .site-navbar .site-menu > li {\n      display: inline-block; }\n      .sticky-wrapper .site-navbar .site-menu > li > a.active {\n        color: #fff;\n        position: relative; }\n        .sticky-wrapper .site-navbar .site-menu > li > a.active:after {\n          height: 2px;\n          background: #fff;\n          content: \"\";\n          position: absolute;\n          bottom: 0;\n          left: 20px;\n          right: 20px; }\n  .sticky-wrapper.is-sticky .site-navbar {\n    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);\n    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);\n    background: #fff; }\n    .sticky-wrapper.is-sticky .site-navbar .site-logo a {\n      color: #000; }\n    .sticky-wrapper.is-sticky .site-navbar .site-menu > li {\n      display: inline-block; }\n      .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {\n        padding: 5px 20px;\n        color: #000;\n        display: inline-block;\n        text-decoration: none !important; }\n        .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover {\n          color: #FF6600; }\n        .sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active:after {\n          background: #FF6600; }\n  .sticky-wrapper .shrink {\n    padding-top: 10px !important;\n    padding-bottom: 10px !important; }\n\n/* Blocks */\n.intro-section {\n  position: relative; }\n  .intro-section, .intro-section .container > .row {\n    height: 100vh;\n    min-height: 900px; }\n  .intro-section.single-cover, .intro-section.single-cover .container > .row {\n    height: 50vh;\n    min-height: 400px; }\n  .intro-section h1 {\n    font-size: 2.5rem;\n    font-weight: 700;\n    color: #fff;\n    margin-bottom: 1.5rem; }\n  .intro-section p {\n    color: rgba(255, 255, 255, 0.5);\n    font-size: 1.1rem; }\n\n.img-absolute {\n  position: absolute;\n  right: 10%;\n  top: 50%;\n  -webkit-transform: translateY(-50%);\n  -ms-transform: translateY(-50%);\n  transform: translateY(-50%); }\n  .img-absolute img {\n    max-width: 600px;\n    -webkit-box-shadow: 0 10px 50px -5px rgba(0, 0, 0, 0.4);\n    box-shadow: 0 10px 50px -5px rgba(0, 0, 0, 0.4); }\n    @media (max-width: 991.98px) {\n      .img-absolute img {\n        max-width: 100%; } }\n\n.slide-1 {\n  background-size: cover;\n  background-position: center; }\n  .slide-1:before {\n    content: \"\";\n    position: absolute;\n    height: 100%;\n    width: 100%;\n    background: #343a40;\n    opacity: .9;\n    border-bottom-right-radius: 0px; }\n    @media (max-width: 991.98px) {\n      .slide-1:before {\n        width: 100%; } }\n  .slide-1 .slide-text {\n    opacity: 0;\n    visibility: hidden;\n    margin-top: 50px;\n    -webkit-transition: .3s all ease-in-out;\n    -o-transition: .3s all ease-in-out;\n    transition: .3s all ease-in-out; }\n    .slide-1 .slide-text.active {\n      opacity: 1;\n      visibility: visible;\n      margin-top: 0px; }\n\n.form-box {\n  padding: 40px;\n  background: #fff;\n  border-radius: 7px; }\n\n.site-section {\n  padding: 4em 0;\n  position: relative; }\n  @media (max-width: 991.98px) {\n    .site-section {\n      padding: 4em 0; } }\n\n.cta a span {\n  border-color: #FF6600;\n  padding: 14px 20px;\n  color: #fff;\n  background: #FF6600;\n  border-radius: 30px;\n  font-size: .7rem;\n  font-weight: 900;\n  text-transform: uppercase;\n  -webkit-transition: .3s all ease;\n  -o-transition: .3s all ease;\n  transition: .3s all ease; }\n  .is-sticky .cta a span {\n    color: #fff; }\n\n.cta a:hover span {\n  background: #4f45e3;\n  color: #fff; }\n\n.cta a.active {\n  border-bottom: none; }\n  .cta a.active > span {\n    background-color: #1c4b82;\n    color: #fff; }\n\n.section-sub-title {\n  color: #FF6600;\n  text-transform: uppercase;\n  font-size: .7rem;\n  font-weight: 900;\n  display: block;\n  margin-bottom: 1.5rem; }\n\n.section-title {\n  font-size: 3rem;\n  color: #000;\n  margin-bottom: 1.8rem;\n  font-weight: 900; }\n  @media (max-width: 991.98px) {\n    .section-title {\n      font-size: 1.5rem; } }\n\n.counter .icon-wrap {\n  margin-right: 1.5rem; }\n  .counter .icon-wrap > span {\n    position: relative;\n    top: -.2em;\n    font-size: 2rem; }\n\n.counter .counter-text strong {\n  line-height: .5;\n  font-size: 3.5rem;\n  display: block;\n  font-weight: 700;\n  color: #000;\n  margin-bottom: 1rem; }\n\n.counter .counter-text span {\n  font-size: 1rem;\n  line-height: 1; }\n\n.image-absolute-box {\n  position: relative; }\n  .image-absolute-box .box {\n    position: absolute;\n    background: #FF6600;\n    padding: 30px;\n    max-width: 300px;\n    top: -20%;\n    right: -20%; }\n    @media (max-width: 991.98px) {\n      .image-absolute-box .box {\n        top: auto;\n        right: auto;\n        position: relative;\n        width: 100%;\n        max-width: 100%; } }\n    .image-absolute-box .box .icon-wrap {\n      color: #fff;\n      margin-bottom: 1.5rem; }\n      .image-absolute-box .box .icon-wrap span {\n        font-size: 2rem; }\n    .image-absolute-box .box h3 {\n      font-size: 1.2rem;\n      color: #fff;\n      margin-bottom: 1.5rem; }\n    .image-absolute-box .box p {\n      color: rgba(255, 255, 255, 0.55); }\n\n.section-1 {\n  margin-top: 10rem; }\n\n.work-thumb {\n  position: relative;\n  display: block;\n  cursor: pointer; }\n  .work-thumb:after {\n    position: absolute;\n    top: 0;\n    left: 0;\n    right: 0;\n    bottom: 0;\n    content: \"\";\n    background: rgba(121, 113, 234, 0.8);\n    z-index: 1;\n    opacity: 0;\n    visibility: hidden;\n    -webkit-transition: .3s all ease;\n    -o-transition: .3s all ease;\n    transition: .3s all ease; }\n  .work-thumb .work-text {\n    position: absolute;\n    top: 10%;\n    left: 10%;\n    z-index: 2;\n    opacity: 0;\n    visibility: hidden;\n    -webkit-transition: .3s all ease;\n    -o-transition: .3s all ease;\n    transition: .3s all ease;\n    margin-top: 20px; }\n    .work-thumb .work-text h3 {\n      font-size: 1rem;\n      font-weight: 900;\n      color: #fff;\n      margin: 0;\n      padding: 0; }\n    .work-thumb .work-text .category {\n      font-size: .8rem;\n      color: rgba(255, 255, 255, 0.7); }\n  .work-thumb:hover {\n    z-index: 3;\n    -webkit-transform: scale(1.07);\n    -ms-transform: scale(1.07);\n    transform: scale(1.07); }\n    .work-thumb:hover:after {\n      opacity: 1;\n      visibility: visible; }\n    .work-thumb:hover .work-text {\n      -webkit-transition-delay: .2s;\n      -o-transition-delay: .2s;\n      transition-delay: .2s;\n      opacity: 1;\n      visibility: visible;\n      margin-top: 0px; }\n\n.nonloop-block-13 .owl-nav {\n  display: none; }\n\n.nonloop-block-13 .owl-dots {\n  margin-top: 30px;\n  width: 100%;\n  text-align: center; }\n  .nonloop-block-13 .owl-dots .owl-dot {\n    display: inline-block;\n    margin: 5px; }\n    .nonloop-block-13 .owl-dots .owl-dot span {\n      display: inline-block;\n      width: 10px;\n      height: 10px;\n      border-radius: 50%;\n      background-color: #e6e6e6; }\n    .nonloop-block-13 .owl-dots .owl-dot.active span {\n      background-color: #FF6600; }\n\n.nonloop-block-14 .owl-nav {\n  display: none; }\n\n.nonloop-block-14 .owl-dots {\n  margin-top: 30px;\n  width: 100%;\n  text-align: center; }\n  .nonloop-block-14 .owl-dots .owl-dot {\n    display: inline-block;\n    margin: 5px; }\n    .nonloop-block-14 .owl-dots .owl-dot span {\n      display: inline-block;\n      width: 10px;\n      height: 10px;\n      border-radius: 50%;\n      background-color: #e6e6e6; }\n    .nonloop-block-14 .owl-dots .owl-dot.active span {\n      background-color: #FF6600; }\n\n.footer-section {\n  padding: 7em 0;\n  background-color: #fafafa; }\n  .footer-section p {\n    font-size: 1rem; }\n  .footer-section h3 {\n    font-size: .9rem;\n    letter-spacing: .1rem;\n    text-transform: uppercase;\n    color: #000;\n    margin-bottom: 1.5rem;\n    font-weight: 900; }\n  .footer-section .footer-links li {\n    margin-bottom: 10px; }\n\n.footer-subscribe .btn {\n  height: 43px;\n  line-height: 1; }\n\n.testimony h3 {\n  color: #fff;\n  font-size: 1.2rem; }\n\n.testimony blockquote {\n  font-size: 1.2rem;\n  font-style: italic;\n  color: #fff; }\n\n.process, .service {\n  position: relative; }\n  .process .number, .service .number {\n    position: absolute;\n    top: 50px;\n    left: -30px;\n    line-height: 0;\n    z-index: -1;\n    font-size: 10rem;\n    color: whitesmoke;\n    font-weight: 900; }\n  .process h3, .service h3 {\n    font-size: 1.5rem;\n    color: #000;\n    font-weight: 700;\n    margin-bottom: 1.5rem; }\n\n.service {\n  padding: 4rem;\n  background: #fff; }\n  @media (max-width: 991.98px) {\n    .service {\n      padding: 2rem; } }\n\n.owl-hero {\n  position: relative; }\n  .owl-hero .owl-nav .owl-prev, .owl-hero .owl-nav .owl-next {\n    color: #fff;\n    font-size: 3rem;\n    top: 50%;\n    position: absolute; }\n  .owl-hero .owl-nav .owl-prev {\n    left: 0; }\n  .owl-hero .owl-nav .owl-next {\n    right: 0; }\n  .owl-hero .owl-dots {\n    position: absolute;\n    text-align: center;\n    bottom: 50px;\n    z-index: 9;\n    left: 50%;\n    -webkit-transform: translateX(-50%);\n    -ms-transform: translateX(-50%);\n    transform: translateX(-50%); }\n    .owl-hero .owl-dots .owl-dot {\n      position: relative;\n      display: inline-block;\n      margin: 2px;\n      position: relative; }\n      .owl-hero .owl-dots .owl-dot > span {\n        width: 7px;\n        height: 7px;\n        border-radius: 30px;\n        display: inline-block;\n        background: rgba(255, 255, 255, 0.4);\n        -webkit-transition: .3s all ease;\n        -o-transition: .3s all ease;\n        transition: .3s all ease; }\n      .owl-hero .owl-dots .owl-dot.active > span {\n        width: 25px;\n        background: #fff; }\n\n.why-choose-us-box {\n  -webkit-box-shadow: 0 5px 50px -10px rgba(0, 0, 0, 0.2);\n  box-shadow: 0 5px 50px -10px rgba(0, 0, 0, 0.2); }\n\n.custom-icon-wrap .custom-icon-inner {\n  display: inline-block;\n  position: relative;\n  width: 35px;\n  height: 35px;\n  border-radius: 50%;\n  background: #FF6600; }\n  .custom-icon-wrap .custom-icon-inner .icon {\n    display: inline-block;\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    -webkit-transform: translate(-50%, -50%);\n    -ms-transform: translate(-50%, -50%);\n    transform: translate(-50%, -50%);\n    color: #fff;\n    font-size: .8rem; }\n\n.custom-icon-wrap h3 {\n  font-size: 1.05rem;\n  color: #FF6600; }\n\n.custom-icon-wrap.custom-icon-light .custom-icon-inner {\n  background: #615dc2;\n  width: 45px;\n  height: 45px; }\n\n.custom-icon-wrap.custom-icon-light h3 {\n  color: #343a40;\n  font-size: 1rem; }\n\n.courses-title {\n  padding-bottom: 13rem;\n  background: #FF6600; }\n  .courses-title .section-title {\n    color: #fff; }\n\n.courses-entry-wrap {\n  margin-top: -282px; }\n  @media (max-width: 1199.98px) {\n    .courses-entry-wrap {\n      margin-top: -246px; } }\n\n.nonloop-block-14 .owl-stage {\n  padding-top: 5rem;\n  padding-bottom: 5rem; }\n\n.course {\n  -webkit-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.3);\n  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.3);\n  -webkit-transition: .3s all ease-in-out;\n  -o-transition: .3s all ease-in-out;\n  transition: .3s all ease-in-out;\n  top: 0;\n  position: relative; }\n  .course .course-inner-text {\n    position: relative;\n    padding-top: 35px !important; }\n  .course .course-price {\n    position: absolute;\n    padding: 10px 15px;\n    background: #FF6600;\n    color: #fff;\n    top: -20px;\n    right: 0;\n    border-top-left-radius: 4px;\n    border-bottom-left-radius: 4px; }\n  .course .meta {\n    font-size: .9rem;\n    display: block;\n    margin-bottom: .9rem; }\n    .course .meta span {\n      margin-right: .5rem; }\n  .course h3 {\n    font-size: 1.15rem;\n    color: #000; }\n  .course .stats {\n    font-size: .9rem; }\n  .course:hover {\n    top: -10px;\n    -webkit-box-shadow: 0 2px 22px -1px rgba(0, 0, 0, 0.3);\n    box-shadow: 0 2px 22px -1px rgba(0, 0, 0, 0.3); }\n\n.future-blobs {\n  overflow: hidden;\n  display: -webkit-box;\n  display: -ms-flexbox;\n  display: flex;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  z-index: -1;\n  top: 0;\n  pointer-events: none; }\n  .future-blobs .blob_1 {\n    top: 0;\n    right: -10rem;\n    position: absolute; }\n  .future-blobs .blob_2 {\n    bottom: 0;\n    left: -10rem;\n    position: absolute; }\n\n.teacher {\n  border: 1px solid #e9ecef;\n  padding: 30px;\n  margin-bottom: 5rem; }\n  .teacher img {\n    position: relative;\n    margin-top: -100px; }\n  .teacher h3 {\n    font-size: 1.2rem; }\n  .teacher .position {\n    color: #adb5bd; }\n\n.course-instructor {\n  padding: 30px; }\n  .course-instructor p {\n    font-size: 1rem; }\n\n.comment-form-wrap {\n  clear: both; }\n\n.comment-list {\n  padding: 0;\n  margin: 0; }\n  .comment-list .children {\n    padding: 50px 0 0 40px;\n    margin: 0;\n    float: left;\n    width: 100%; }\n  .comment-list li {\n    padding: 0;\n    margin: 0 0 30px 0;\n    float: left;\n    width: 100%;\n    clear: both;\n    list-style: none; }\n    .comment-list li .vcard {\n      width: 80px;\n      float: left; }\n      .comment-list li .vcard img {\n        width: 50px;\n        border-radius: 50%; }\n    .comment-list li .comment-body {\n      float: right;\n      width: calc(100% - 80px); }\n      .comment-list li .comment-body h3 {\n        font-size: 20px; }\n      .comment-list li .comment-body .meta {\n        text-transform: uppercase;\n        font-size: 13px;\n        letter-spacing: .1em;\n        color: #ccc; }\n      .comment-list li .comment-body .reply {\n        padding: 5px 10px;\n        background: #e6e6e6;\n        color: #000;\n        text-transform: uppercase;\n        font-size: 14px; }\n        .comment-list li .comment-body .reply:hover {\n          color: #000;\n          background: #e3e3e3; }\n"
  },
  {
    "path": "public/landing/fonts/flaticon/backup.txt",
    "content": "eyIxIjp7IklEIjoxLCJuYW1lIjoiTXkgaWNvbnMgY29sbGVjdGlvbiIsImJvb2ttYXJrX2lkIjoiNTlubzF0aGdpeTkwMDAwMCIsImNyZWF0ZWQiOm51bGwsInVwZGF0ZWQiOjE1NTMxNjg3ODgsImFjdGl2ZSI6MSwic291cmNlIjoibG9jYWwiLCJvcmRlciI6MCwiY29sb3IiOiIwMDAwMDAiLCJzdGF0dXMiOjF9LCI1OW5vMXRoZ2l5OTAwMDAwIjpbeyJpZCI6MTI2NDg4LCJ0ZWFtIjowLCJuYW1lIjoiZG93bmxvYWQiLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0IjoyfSx7ImlkIjoxMjY1MTIsInRlYW0iOjAsIm5hbWUiOiJtb25pdG9yIiwiY29sb3IiOiIjMDAwMDAwIiwicHJlbWl1bSI6MCwic29ydCI6M30seyJpZCI6MTI2NTAwLCJ0ZWFtIjowLCJuYW1lIjoiY2hhdCIsImNvbG9yIjoiIzAwMDAwMCIsInByZW1pdW0iOjAsInNvcnQiOjR9LHsiaWQiOjEyNjUxNCwidGVhbSI6MCwibmFtZSI6ImdsYXNzZXMiLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0Ijo1fSx7ImlkIjoxMjY1MDcsInRlYW0iOjAsIm5hbWUiOiJ2ZWN0b3IiLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0Ijo2fSx7ImlkIjoxMjY1MDIsInRlYW0iOjAsIm5hbWUiOiJyZWxvYWQiLCJjb2xvciI6IiMwMDAwMDAiLCJwcmVtaXVtIjowLCJzb3J0IjoxfV19"
  },
  {
    "path": "public/landing/fonts/flaticon/font/_flaticon.scss",
    "content": "    /*\n    Flaticon icon font: Flaticon\n    Creation date: 21/03/2019 11:46\n    */\n\n    @font-face {\n  font-family: \"Flaticon\";\n  src: url(\"./Flaticon.eot\");\n  src: url(\"./Flaticon.eot?#iefix\") format(\"embedded-opentype\"),\n       url(\"./Flaticon.woff2\") format(\"woff2\"),\n       url(\"./Flaticon.woff\") format(\"woff\"),\n       url(\"./Flaticon.ttf\") format(\"truetype\"),\n       url(\"./Flaticon.svg#Flaticon\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n@media screen and (-webkit-min-device-pixel-ratio:0) {\n  @font-face {\n    font-family: \"Flaticon\";\n    src: url(\"./Flaticon.svg#Flaticon\") format(\"svg\");\n  }\n}\n\n    .fi:before{\n        display: inline-block;\n  font-family: \"Flaticon\";\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  line-height: 1;\n  text-decoration: inherit;\n  text-rendering: optimizeLegibility;\n  text-transform: none;\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  font-smoothing: antialiased;\n    }\n\n    .flaticon-reload:before { content: \"\\f100\"; }\n.flaticon-download:before { content: \"\\f101\"; }\n.flaticon-monitor:before { content: \"\\f102\"; }\n.flaticon-chat:before { content: \"\\f103\"; }\n.flaticon-glasses:before { content: \"\\f104\"; }\n.flaticon-vector:before { content: \"\\f105\"; }\n    \n    $font-Flaticon-reload: \"\\f100\";\n    $font-Flaticon-download: \"\\f101\";\n    $font-Flaticon-monitor: \"\\f102\";\n    $font-Flaticon-chat: \"\\f103\";\n    $font-Flaticon-glasses: \"\\f104\";\n    $font-Flaticon-vector: \"\\f105\";"
  },
  {
    "path": "public/landing/fonts/flaticon/font/flaticon.css",
    "content": "\t/*\n  \tFlaticon icon font: Flaticon\n  \tCreation date: 21/03/2019 11:46\n  \t*/\n\n@font-face {\n  font-family: \"Flaticon\";\n  src: url(\"./Flaticon.eot\");\n  src: url(\"./Flaticon.eot?#iefix\") format(\"embedded-opentype\"),\n       url(\"./Flaticon.woff2\") format(\"woff2\"),\n       url(\"./Flaticon.woff\") format(\"woff\"),\n       url(\"./Flaticon.ttf\") format(\"truetype\"),\n       url(\"./Flaticon.svg#Flaticon\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n@media screen and (-webkit-min-device-pixel-ratio:0) {\n  @font-face {\n    font-family: \"Flaticon\";\n    src: url(\"./Flaticon.svg#Flaticon\") format(\"svg\");\n  }\n}\n\n[class^=\"flaticon-\"]:before, [class*=\" flaticon-\"]:before,\n[class^=\"flaticon-\"]:after, [class*=\" flaticon-\"]:after {   \n  font-family: \"Flaticon\";\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  line-height: 1;\n  text-decoration: inherit;\n  text-rendering: optimizeLegibility;\n  text-transform: none;\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  font-smoothing: antialiased;\n}\n\n.flaticon-reload:before { content: \"\\f100\"; }\n.flaticon-download:before { content: \"\\f101\"; }\n.flaticon-monitor:before { content: \"\\f102\"; }\n.flaticon-chat:before { content: \"\\f103\"; }\n.flaticon-glasses:before { content: \"\\f104\"; }\n.flaticon-vector:before { content: \"\\f105\"; }"
  },
  {
    "path": "public/landing/fonts/flaticon/font/flaticon.html",
    "content": "<!DOCTYPE html>\n<!--\n  Flaticon icon font: Flaticon\n  Creation date: 21/03/2019 11:46\n-->\n<html>\n<!DOCTYPE html>\n<html>\n\n<head>\n    <title>Flaticon WebFont</title>\n    <link href=\"http://fonts.googleapis.com/css?family=Varela+Round\" rel=\"stylesheet\" type=\"text/css\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"flaticon.css\">\n    <meta charset=\"UTF-8\">\n    <style>\n    html, body, div, span, applet, object, iframe,\n    h1, h2, h3, h4, h5, h6, p, blockquote, pre,\n    a, abbr, acronym, address, big, cite, code,\n    del, dfn, em, img, ins, kbd, q, s, samp,\n    small, strike, strong, sub, sup, tt, var,\n    b, u, i, center,\n    dl, dt, dd, ol, ul, li,\n    fieldset, form, label, legend,\n    table, caption, tbody, tfoot, thead, tr, th, td,\n    article, aside, canvas, details, embed, \n    figure, figcaption, footer, header, hgroup, \n    menu, nav, output, ruby, section, summary,\n    time, mark, audio, video {\n        margin: 0;\n        padding: 0;\n        border: 0;\n        font-size: 100%;\n        font: inherit;\n        vertical-align: baseline;\n    }\n    /* HTML5 display-role reset for older browsers */\n    article, aside, details, figcaption, figure, \n    footer, header, hgroup, menu, nav, section {\n        display: block;\n    }\n    body {\n        line-height: 1;\n    }\n    ol, ul {\n        list-style: none;\n    }\n    blockquote, q {\n        quotes: none;\n    }\n    blockquote:before, blockquote:after,\n    q:before, q:after {\n        content: '';\n        content: none;\n    }\n    table {\n        border-collapse: collapse;\n        border-spacing: 0;\n    }\n    body {\n        font-family: 'Varela Round', Helvetica, Arial, sans-serif;\n        font-size: 16px;\n        color: #222;\n    }\n    a {\n        color: #333;\n        border-bottom: 1px solid #a9fd00;\n        font-weight: bold;\n        text-decoration: none;\n    }\n    * {\n        -moz-box-sizing: border-box;\n        -webkit-box-sizing: border-box;\n        box-sizing: border-box;\n        margin: 0;\n        padding: 0;\n    }\n    [class^=\"flaticon-\"]:before, [class*=\" flaticon-\"]:before, [class^=\"flaticon-\"]:after, [class*=\" flaticon-\"]:after {\n        font-family: Flaticon;\n        font-size: 30px;\n        font-style: normal;\n        margin-left: 20px;\n        color: #333;\n    }\n    .wrapper {\n        max-width: 600px;\n        margin: auto;\n        padding: 0 1em;\n    }\n    .title {\n        font-size: 1.25em;\n        text-align: center;\n        margin-bottom: 1em;\n        text-transform: uppercase;\n    }\n    header {\n        text-align: center;\n        background-color: #222;\n        color: #fff;\n        padding: 1em;\n    }\n    header .logo {\n        width: 210px;\n        height: 38px;\n        display: inline-block;\n        vertical-align: middle;\n        margin-right: 1em;\n        border: none;\n    }\n    header strong {\n        font-size: 1.95em;\n        font-weight: bold;\n        vertical-align: middle;\n        margin-top: 5px;\n        display: inline-block;\n    }\n    .demo {\n        margin: 2em auto;\n        line-height: 1.25em;\n    }\n    .demo ul li {\n        margin-bottom: 1em;\n    }\n    .demo ul li .num {\n        color: #222;\n        border-radius: 20px;\n        display: inline-block;\n        width: 26px;\n        padding: 3px;\n        height: 26px;\n        text-align: center;\n        margin-right: 0.5em;\n        border: 1px solid #222;\n    }\n    .demo ul li code {\n        background-color: #222;\n        border-radius: 4px;\n        padding: 0.25em 0.5em;\n        display: inline-block;\n        color: #fff;\n        font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;\n        font-weight: lighter;\n        margin-top: 1em;\n        font-size: 0.8em;\n        word-break: break-all;\n    }\n    .demo ul li code.big {\n        padding: 1em;\n        font-size: 0.9em;\n    }\n    .demo ul li code .red {\n        color: #EF3159;\n    }\n    .demo ul li code .green {\n        color: #ACFF65;\n    }\n    .demo ul li code .yellow {\n        color: #FFFF99;\n    }\n    .demo ul li code .blue {\n        color: #99D3FF;\n    }\n    .demo ul li code .purple {\n        color: #A295FF;\n    }\n    .demo ul li code .dots {\n        margin-top: 0.5em;\n        display: block;\n    }\n    #glyphs {\n        border-bottom: 1px solid #ccc;\n        padding: 2em 0;\n        text-align: center;\n    }\n    .glyph {\n        display: inline-block;\n        width: 9em;\n        margin: 1em;\n        text-align: center;\n        vertical-align: top;\n        background: #FFF;\n    }\n    .glyph .glyph-icon {\n        padding: 10px;\n        display: block;\n        font-family:\"Flaticon\";\n        font-size: 64px;\n        line-height: 1;\n    }\n    .glyph .glyph-icon:before {\n        font-size: 64px;\n        color: #222;\n        margin-left: 0;\n    }\n    .class-name {\n        font-size: 0.65em;\n        background-color: #222;\n        color: #fff;\n        border-radius: 4px 4px 0 0;\n        padding: 0.5em;\n        color: #FFFF99;\n        font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;\n    }\n    .author-name {\n        font-size: 0.6em;\n        background-color: #fcfcfd;\n        border: 1px solid #DEDEE4;\n        border-top: 0;\n        border-radius: 0 0 4px 4px;\n        padding: 0.5em;\n    }\n    .class-name:last-child {\n        font-size: 10px;\n        color:#888;\n    }\n    .class-name:last-child a {\n        font-size: 10px;\n        color:#555;\n    }\n    .class-name:last-child a:hover {\n        color:#a9fd00;\n    }\n    .glyph > input {\n        display: block;\n        width: 100px;\n        margin: 5px auto;\n        text-align: center;\n        font-size: 12px;\n        cursor: text;\n    }\n    .glyph > input.icon-input {\n        font-family:\"Flaticon\";\n        font-size: 16px;\n        margin-bottom: 10px;\n    }\n    .attribution .title {\n        margin-top: 2em;\n    }\n    .attribution textarea {\n        background-color: #fcfcfd;\n        padding: 1em;\n        border: none;\n        box-shadow: none;\n        border: 1px solid #DEDEE4;\n        border-radius: 4px;\n        resize: none;\n        width: 100%;\n        height: 150px;\n        font-size: 0.8em;\n        font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;\n        -webkit-appearance: none;\n    }\n    .iconsuse {\n        margin: 2em auto;\n        text-align: center;\n        max-width: 1200px;\n    }\n    .iconsuse:after {\n        content: '';\n        display: table;\n        clear: both;\n    }\n    .iconsuse .image {\n        float: left;\n        width: 25%;\n        padding: 0 1em;\n    }\n    .iconsuse .image p {\n        margin-bottom: 1em;\n    }\n    .iconsuse .image span {\n        display: block;\n        font-size: 0.65em;\n        background-color: #222;\n        color: #fff;\n        border-radius: 4px;\n        padding: 0.5em;\n        color: #FFFF99;\n        margin-top: 1em;\n        font-family: Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace;\n    }\n    #footer {\n        text-align: center;\n        background-color: #4C5B5C;\n        color: #7c9192;\n        padding: 1em;\n    }\n    #footer a {\n        border: none;\n        color: #a9fd00;\n        font-weight: normal;\n    }\n    @media (max-width: 960px) {\n        .iconsuse .image {\n            width: 50%;\n        }\n    }\n    @media (max-width: 560px) {\n        .iconsuse .image {\n            width: 100%;\n        }\n    }\n    </style>\n</head>\n\n<body class=\"characters-off\">\n\n    <header>\n        <a href=\"https://www.flaticon.com\" target=\"_blank\" class=\"logo\">\n            <svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns:a=\"http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/\" viewBox=\"0 0 560.875 102.036\" enable-background=\"new 0 0 560.875 102.036\" xml:space=\"preserve\">\n                <defs>\n                </defs>\n                <g>\n                    <g class=\"letters\">\n                        <path fill=\"#ffffff\" d=\"M141.596,29.675c0-3.777,2.985-6.767,6.764-6.767h34.438c3.426,0,6.15,2.728,6.15,6.15\n                        c0,3.43-2.724,6.149-6.15,6.149h-27.674v13.091h23.719c3.429,0,6.151,2.724,6.151,6.15c0,3.43-2.723,6.149-6.151,6.149h-23.719\n                        v17.574c0,3.773-2.986,6.761-6.764,6.761c-3.779,0-6.764-2.989-6.764-6.761V29.675z\"></path>\n                        <path fill=\"#ffffff\" d=\"M193.844,29.149c0-3.781,2.985-6.767,6.764-6.767c3.776,0,6.763,2.985,6.763,6.767v42.957h25.039\n                        c3.426,0,6.149,2.726,6.149,6.153c0,3.425-2.723,6.15-6.149,6.15h-31.802c-3.779,0-6.764-2.986-6.764-6.768V29.149z\"></path>\n                        <path fill=\"#ffffff\" d=\"M241.891,75.71l21.438-48.407c1.492-3.341,4.215-5.357,7.906-5.357h0.792\n                        c3.686,0,6.323,2.017,7.815,5.357l21.439,48.407c0.436,0.967,0.701,1.845,0.701,2.723c0,3.602-2.809,6.501-6.414,6.501\n                        c-3.161,0-5.269-1.845-6.499-4.655l-4.132-9.661h-27.059l-4.301,10.102c-1.144,2.631-3.426,4.214-6.237,4.214\n                        c-3.517,0-6.24-2.81-6.24-6.325C241.1,77.64,241.451,76.677,241.891,75.71z M279.932,58.666l-8.521-20.297l-8.526,20.297H279.932\n                        z\"></path>\n                        <path fill=\"#ffffff\" d=\"M314.864,35.387H301.86c-3.429,0-6.239-2.813-6.239-6.238c0-3.429,2.811-6.24,6.239-6.24h39.533\n                        c3.426,0,6.237,2.811,6.237,6.24c0,3.425-2.811,6.238-6.237,6.238h-13.001v42.785c0,3.773-2.99,6.761-6.764,6.761\n                        c-3.779,0-6.764-2.989-6.764-6.761V35.387z\"></path>\n                        <path fill=\"#A9FD00\" d=\"M352.615,29.149c0-3.781,2.985-6.767,6.767-6.767c3.774,0,6.761,2.985,6.761,6.767v49.024\n                        c0,3.773-2.987,6.761-6.761,6.761c-3.781,0-6.767-2.989-6.767-6.761V29.149z\"></path>\n                        <path fill=\"#A9FD00\" d=\"M374.132,53.836v-0.179c0-17.481,13.178-31.801,32.065-31.801c9.22,0,15.459,2.458,20.557,6.238\n                        c1.402,1.054,2.637,2.985,2.637,5.357c0,3.692-2.985,6.59-6.681,6.59c-1.845,0-3.071-0.702-4.044-1.319\n                        c-3.776-2.813-7.729-4.393-12.562-4.393c-10.364,0-17.831,8.611-17.831,19.154v0.173c0,10.542,7.291,19.329,17.831,19.329\n                        c5.715,0,9.492-1.756,13.359-4.834c1.049-0.874,2.458-1.491,4.039-1.491c3.429,0,6.325,2.813,6.325,6.236\n                        c0,2.106-1.056,3.78-2.282,4.834c-5.539,4.834-12.036,7.733-21.878,7.733C387.572,85.464,374.132,71.493,374.132,53.836z\"></path>\n                        <path fill=\"#A9FD00\" d=\"M433.009,53.836v-0.179c0-17.481,13.79-31.801,32.766-31.801c18.981,0,32.592,14.143,32.592,31.628v0.173\n                        c0,17.483-13.785,31.807-32.769,31.807C446.625,85.464,433.009,71.32,433.009,53.836z M484.224,53.836v-0.179\n                        c0-10.539-7.725-19.326-18.626-19.326c-10.893,0-18.449,8.611-18.449,19.154v0.173c0,10.542,7.73,19.329,18.626,19.329\n                        C476.676,72.986,484.224,64.378,484.224,53.836z\"></path>\n                        <path fill=\"#A9FD00\" d=\"M506.233,29.321c0-3.774,2.99-6.763,6.767-6.763h1.401c3.252,0,5.183,1.583,7.029,3.953l26.093,34.265\n                        V29.059c0-3.692,2.99-6.677,6.681-6.677c3.683,0,6.671,2.985,6.671,6.677v48.934c0,3.78-2.987,6.765-6.764,6.765h-0.436\n                        c-3.257,0-5.188-1.581-7.034-3.953l-27.056-35.492v32.944c0,3.687-2.985,6.676-6.678,6.676c-3.683,0-6.673-2.989-6.673-6.676\n                        V29.321z\"></path>\n                    </g>\n                    <g class=\"insignia\">\n                        <path fill=\"#ffffff\" d=\"M48.372,56.137h12.517l11.156-18.537H37.186L25.688,18.539h57.825L94.668,0H9.271\n                        C5.925,0,2.842,1.801,1.198,4.716c-1.644,2.907-1.593,6.482,0.134,9.343l50.38,83.501c1.678,2.781,4.689,4.476,7.938,4.476\n                        c3.246,0,6.257-1.695,7.935-4.476l2.898-4.804L48.372,56.137z\"></path>\n                        <g class=\"i\">\n                            <path fill=\"#A9FD00\" d=\"M93.575,18.539h0.031v0.004l21.652,0.004l2.705-4.488c1.727-2.861,1.778-6.436,0.133-9.343\n                            C116.454,1.801,113.371,0,110.026,0h-5.294L93.575,18.539z\"></path>\n                            <polygon fill=\"#A9FD00\" points=\"88.291,27.356 64.725,66.486 75.519,84.404 109.942,27.356\"></polygon>\n                        </g>\n                    </g>\n                </g>\n            </svg>\n        </a>\n        <strong>Font Demo</strong>\n    </header>\n\n\n    <section class=\"demo wrapper\">\n\n        <p class=\"title\">Instructions</p>\n\n        <ul>\n            <li>\n                <span class=\"num\">1</span>Copy the \"Fonts\" files and CSS files to your website CSS folder.\n            </li>\n            <li>\n                <span class=\"num\">2</span>Add the CSS link to your website source code on header.\n                <code class=\"big\">\n                    &lt;<span class=\"red\">head</span>&gt;\n                    <br/><span class=\"dots\">...</span>\n                    <br/>&lt;<span class=\"red\">link</span> <span class=\"green\">rel</span>=<span class=\"yellow\">\"stylesheet\"</span> <span class=\"green\">type</span>=<span class=\"yellow\">\"text/css\"</span> <span class=\"green\">href</span>=<span class=\"yellow\">\"your_website_domain/css_root/flaticon.css\"</span>&gt;\n                    <br/><span class=\"dots\">...</span>\n                    <br/>&lt;/<span class=\"red\">head</span>&gt;\n                </code>\n            </li>\n\n            <li>\n                <p>\n                    <span class=\"num\">3</span>Use the icon class on <code>\"<span class=\"blue\">display</span>:<span class=\"purple\"> inline</span>\"</code> elements:\n                    <br />\n                    Use example: <code>&lt;<span class=\"red\">i</span> <span class=\"green\">class</span>=<span class=\"yellow\">&quot;flaticon-airplane49&quot;</span>&gt;&lt;/<span class=\"red\">i</span>&gt;</code> or <code>&lt;<span class=\"red\">span</span> <span class=\"green\">class</span>=<span class=\"yellow\">&quot;flaticon-airplane49&quot;</span>&gt;&lt;/<span class=\"red\">span</span>&gt;</code>\n            </li>\n        </ul>\n\n    </section>\n\n\n\n\n   <section id=\"glyphs\">          \n    \n      \n        <div class=\"glyph\"><div class=\"glyph-icon flaticon-reload\"></div>\n            <div class=\"class-name\">.flaticon-reload</div>\n            <div class=\"author-name\">Author: <a data-file=\"001-reload\" href=\"https://www.flaticon.com/authors/gregor-cresnar\">Gregor Cresnar</a> </div> \n        </div>        \n        \n        <div class=\"glyph\"><div class=\"glyph-icon flaticon-download\"></div>\n            <div class=\"class-name\">.flaticon-download</div>\n            <div class=\"author-name\">Author: <a data-file=\"002-download\" href=\"https://www.flaticon.com/authors/gregor-cresnar\">Gregor Cresnar</a> </div> \n        </div>        \n        \n        <div class=\"glyph\"><div class=\"glyph-icon flaticon-monitor\"></div>\n            <div class=\"class-name\">.flaticon-monitor</div>\n            <div class=\"author-name\">Author: <a data-file=\"003-monitor\" href=\"https://www.flaticon.com/authors/gregor-cresnar\">Gregor Cresnar</a> </div> \n        </div>        \n        \n        <div class=\"glyph\"><div class=\"glyph-icon flaticon-chat\"></div>\n            <div class=\"class-name\">.flaticon-chat</div>\n            <div class=\"author-name\">Author: <a data-file=\"004-chat\" href=\"https://www.flaticon.com/authors/gregor-cresnar\">Gregor Cresnar</a> </div> \n        </div>        \n        \n        <div class=\"glyph\"><div class=\"glyph-icon flaticon-glasses\"></div>\n            <div class=\"class-name\">.flaticon-glasses</div>\n            <div class=\"author-name\">Author: <a data-file=\"005-glasses\" href=\"https://www.flaticon.com/authors/gregor-cresnar\">Gregor Cresnar</a> </div> \n        </div>        \n        \n        <div class=\"glyph\"><div class=\"glyph-icon flaticon-vector\"></div>\n            <div class=\"class-name\">.flaticon-vector</div>\n            <div class=\"author-name\">Author: <a data-file=\"006-vector\" href=\"https://www.flaticon.com/authors/gregor-cresnar\">Gregor Cresnar</a> </div> \n        </div>        \n        \n\n    </section>\n\n\n\n    <section class=\"attribution wrapper\"   style=\"text-align:center;\">\n\n      <div class=\"title\">License and attribution:</div><div class=\"attrDiv\">Font generated by <a href=\"https://www.flaticon.com\">flaticon.com</a>. <div><p>Under <a href=\"http://creativecommons.org/licenses/by/3.0/\">CC</a>: <a data-file=\"001-reload\" href=\"https://www.flaticon.com/authors/gregor-cresnar\">Gregor Cresnar</a></p>  </div>\n      </div>\n      <div class=\"title\">Copy the Attribution License:</div>\n\n    <textarea onclick=\"this.focus();this.select();\">Font generated by &lt;a href=&quot;https://www.flaticon.com&quot;&gt;flaticon.com&lt;/a&gt;. <p>Under <a href=\"http://creativecommons.org/licenses/by/3.0/\">CC</a>: <a data-file=\"001-reload\" href=\"https://www.flaticon.com/authors/gregor-cresnar\">Gregor Cresnar</a></p>  \n     </textarea>\n\n    </section>\n\n    <section class=\"iconsuse\">\n\n          <div class=\"title\">Examples:</div>            \n             \n            <div class=\"image\">\n                <p>\n                    <i class=\"glyph-icon flaticon-reload\"></i> \n                    <span>&lt;i class=&quot;flaticon-reload&quot;&gt;&lt;/i&gt;</span>\n                </p>\n            </div>\n            \n            <div class=\"image\">\n                <p>\n                    <i class=\"glyph-icon flaticon-download\"></i> \n                    <span>&lt;i class=&quot;flaticon-download&quot;&gt;&lt;/i&gt;</span>\n                </p>\n            </div>\n            \n            <div class=\"image\">\n                <p>\n                    <i class=\"glyph-icon flaticon-monitor\"></i> \n                    <span>&lt;i class=&quot;flaticon-monitor&quot;&gt;&lt;/i&gt;</span>\n                </p>\n            </div>\n            \n            <div class=\"image\">\n                <p>\n                    <i class=\"glyph-icon flaticon-chat\"></i> \n                    <span>&lt;i class=&quot;flaticon-chat&quot;&gt;&lt;/i&gt;</span>\n                </p>\n            </div>\n                       \n        </div>\n                            \n    </section>\n\n<div id=\"footer\">\n    <div>Generated by <a href=\"https://www.flaticon.com\">flaticon.com</a>\n    </div>\n</div>\n\n\n\n</body>\n</html>"
  },
  {
    "path": "public/landing/fonts/icomoon/Read Me.txt",
    "content": "Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.\n\nTo use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts\n\nYou won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.\n\nYou can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.\n"
  },
  {
    "path": "public/landing/fonts/icomoon/demo-files/demo.css",
    "content": "body {\n  padding: 0;\n  margin: 0;\n  font-family: sans-serif;\n  font-size: 1em;\n  line-height: 1.5;\n  color: #555;\n  background: #fff;\n}\nh1 {\n  font-size: 1.5em;\n  font-weight: normal;\n}\nsmall {\n  font-size: .66666667em;\n}\na {\n  color: #e74c3c;\n  text-decoration: none;\n}\na:hover, a:focus {\n  box-shadow: 0 1px #e74c3c;\n}\n.bshadow0, input {\n  box-shadow: inset 0 -2px #e7e7e7;\n}\ninput:hover {\n  box-shadow: inset 0 -2px #ccc;\n}\ninput, fieldset {\n  font-family: sans-serif;\n  font-size: 1em;\n  margin: 0;\n  padding: 0;\n  border: 0;\n}\ninput {\n  color: inherit;\n  line-height: 1.5;\n  height: 1.5em;\n  padding: .25em 0;\n}\ninput:focus {\n  outline: none;\n  box-shadow: inset 0 -2px #449fdb;\n}\n.glyph {\n  font-size: 16px;\n  width: 15em;\n  padding-bottom: 1em;\n  margin-right: 4em;\n  margin-bottom: 1em;\n  float: left;\n  overflow: hidden;\n}\n.liga {\n  width: 80%;\n  width: calc(100% - 2.5em);\n}\n.talign-right {\n  text-align: right;\n}\n.talign-center {\n  text-align: center;\n}\n.bgc1 {\n  background: #f1f1f1;\n}\n.fgc1 {\n  color: #999;\n}\n.fgc0 {\n  color: #000;\n}\np {\n  margin-top: 1em;\n  margin-bottom: 1em;\n}\n.mvm {\n  margin-top: .75em;\n  margin-bottom: .75em;\n}\n.mtn {\n  margin-top: 0;\n}\n.mtl, .mal {\n  margin-top: 1.5em;\n}\n.mbl, .mal {\n  margin-bottom: 1.5em;\n}\n.mal, .mhl {\n  margin-left: 1.5em;\n  margin-right: 1.5em;\n}\n.mhmm {\n  margin-left: 1em;\n  margin-right: 1em;\n}\n.mls {\n  margin-left: .25em;\n}\n.ptl {\n  padding-top: 1.5em;\n}\n.pbs, .pvs {\n  padding-bottom: .25em;\n}\n.pvs, .pts {\n  padding-top: .25em;\n}\n.unit {\n  float: left;\n}\n.unitRight {\n  float: right;\n}\n.size1of2 {\n  width: 50%;\n}\n.size1of1 {\n  width: 100%;\n}\n.clearfix:before, .clearfix:after {\n  content: \" \";\n  display: table;\n}\n.clearfix:after {\n  clear: both;\n}\n.hidden-true {\n  display: none;\n}\n.textbox0 {\n  width: 3em;\n  background: #f1f1f1;\n  padding: .25em .5em;\n  line-height: 1.5;\n  height: 1.5em;\n}\n#testDrive {\n  display: block;\n  padding-top: 24px;\n  line-height: 1.5;\n}\n.fs0 {\n  font-size: 16px;\n}\n.fs1 {\n  font-size: 28px;\n}\n.fs2 {\n  font-size: 24px;\n}\n\n"
  },
  {
    "path": "public/landing/fonts/icomoon/demo-files/demo.js",
    "content": "if (!('boxShadow' in document.body.style)) {\n    document.body.setAttribute('class', 'noBoxShadow');\n}\n\ndocument.body.addEventListener(\"click\", function(e) {\n    var target = e.target;\n    if (target.tagName === \"INPUT\" &&\n        target.getAttribute('class').indexOf('liga') === -1) {\n        target.select();\n    }\n});\n\n(function() {\n    var fontSize = document.getElementById('fontSize'),\n        testDrive = document.getElementById('testDrive'),\n        testText = document.getElementById('testText');\n    function updateTest() {\n        testDrive.innerHTML = testText.value || String.fromCharCode(160);\n        if (window.icomoonLiga) {\n            window.icomoonLiga(testDrive);\n        }\n    }\n    function updateSize() {\n        testDrive.style.fontSize = fontSize.value + 'px';\n    }\n    fontSize.addEventListener('change', updateSize, false);\n    testText.addEventListener('input', updateTest, false);\n    testText.addEventListener('change', updateTest, false);\n    updateSize();\n}());\n"
  },
  {
    "path": "public/landing/fonts/icomoon/demo.html",
    "content": "<!doctype html>\n<html>\n<head>\n    <meta charset=\"utf-8\">\n    <title>IcoMoon Demo</title>\n    <meta name=\"description\" content=\"An Icon Font Generated By IcoMoon.io\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link rel=\"stylesheet\" href=\"demo-files/demo.css\">\n    <link rel=\"stylesheet\" href=\"style.css\"></head>\n<body>\n    <div class=\"bgc1 clearfix\">\n        <h1 class=\"mhmm mvm\"><span class=\"fgc1\">Font Name:</span> icomoon <small class=\"fgc1\">(Glyphs:&nbsp;1520)</small></h1>\n    </div>\n    <div class=\"clearfix mhl ptl\">\n        <h1 class=\"mvm mtn fgc1\">Grid Size: 14</h1>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-asterisk\">\n                \n                </span>\n                <span class=\"mls\"> icon-asterisk</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f069\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf069;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-plus\">\n                \n                </span>\n                <span class=\"mls\"> icon-plus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f067\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf067;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-question\">\n                \n                </span>\n                <span class=\"mls\"> icon-question</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f128\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf128;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-minus\">\n                \n                </span>\n                <span class=\"mls\"> icon-minus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f068\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf068;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-glass\">\n                \n                </span>\n                <span class=\"mls\"> icon-glass</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f000\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf000;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-music\">\n                \n                </span>\n                <span class=\"mls\"> icon-music</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f001\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf001;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-search\">\n                \n                </span>\n                <span class=\"mls\"> icon-search</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f002\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf002;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-envelope-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-envelope-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f003\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf003;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-heart\">\n                \n                </span>\n                <span class=\"mls\"> icon-heart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f004\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf004;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star\">\n                \n                </span>\n                <span class=\"mls\"> icon-star</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f005\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf005;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-star-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f006\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf006;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-user\">\n                \n                </span>\n                <span class=\"mls\"> icon-user</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f007\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf007;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-film\">\n                \n                </span>\n                <span class=\"mls\"> icon-film</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f008\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf008;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-th-large\">\n                \n                </span>\n                <span class=\"mls\"> icon-th-large</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f009\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf009;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-th\">\n                \n                </span>\n                <span class=\"mls\"> icon-th</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f00a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf00a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-th-list\">\n                \n                </span>\n                <span class=\"mls\"> icon-th-list</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f00b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf00b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check\">\n                \n                </span>\n                <span class=\"mls\"> icon-check</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f00c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf00c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-close\">\n                \n                </span>\n                <span class=\"mls\"> icon-close</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f00d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf00d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-remove\">\n                \n                </span>\n                <span class=\"mls\"> icon-remove</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f00d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf00d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-times\">\n                \n                </span>\n                <span class=\"mls\"> icon-times</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f00d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf00d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-search-plus\">\n                \n                </span>\n                <span class=\"mls\"> icon-search-plus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f00e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf00e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-search-minus\">\n                \n                </span>\n                <span class=\"mls\"> icon-search-minus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f010\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf010;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-power-off\">\n                \n                </span>\n                <span class=\"mls\"> icon-power-off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f011\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf011;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f012\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf012;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cog\">\n                \n                </span>\n                <span class=\"mls\"> icon-cog</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f013\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf013;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gear\">\n                \n                </span>\n                <span class=\"mls\"> icon-gear</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f013\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf013;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-trash-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-trash-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f014\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf014;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-home\">\n                \n                </span>\n                <span class=\"mls\"> icon-home</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f015\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf015;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f016\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf016;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-clock-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-clock-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f017\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf017;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-road\">\n                \n                </span>\n                <span class=\"mls\"> icon-road</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f018\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf018;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-download\">\n                \n                </span>\n                <span class=\"mls\"> icon-download</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f019\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf019;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-circle-o-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-circle-o-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f01a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf01a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-circle-o-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-circle-o-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f01b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf01b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-inbox\">\n                \n                </span>\n                <span class=\"mls\"> icon-inbox</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f01c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf01c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-play-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-play-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f01d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf01d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-repeat\">\n                \n                </span>\n                <span class=\"mls\"> icon-repeat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f01e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf01e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rotate-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-rotate-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f01e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf01e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-refresh\">\n                \n                </span>\n                <span class=\"mls\"> icon-refresh</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f021\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf021;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-list-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-list-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f022\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf022;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lock\">\n                \n                </span>\n                <span class=\"mls\"> icon-lock</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f023\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf023;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flag\">\n                \n                </span>\n                <span class=\"mls\"> icon-flag</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f024\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf024;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-headphones\">\n                \n                </span>\n                <span class=\"mls\"> icon-headphones</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f025\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf025;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-volume-off\">\n                \n                </span>\n                <span class=\"mls\"> icon-volume-off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f026\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf026;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-volume-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-volume-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f027\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf027;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-volume-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-volume-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f028\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf028;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-qrcode\">\n                \n                </span>\n                <span class=\"mls\"> icon-qrcode</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f029\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf029;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-barcode\">\n                \n                </span>\n                <span class=\"mls\"> icon-barcode</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f02a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf02a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tag\">\n                \n                </span>\n                <span class=\"mls\"> icon-tag</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f02b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf02b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tags\">\n                \n                </span>\n                <span class=\"mls\"> icon-tags</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f02c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf02c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-book\">\n                \n                </span>\n                <span class=\"mls\"> icon-book</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f02d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf02d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bookmark\">\n                \n                </span>\n                <span class=\"mls\"> icon-bookmark</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f02e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf02e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-print\">\n                \n                </span>\n                <span class=\"mls\"> icon-print</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f02f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf02f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-camera\">\n                \n                </span>\n                <span class=\"mls\"> icon-camera</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f030\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf030;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-font\">\n                \n                </span>\n                <span class=\"mls\"> icon-font</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f031\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf031;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bold\">\n                \n                </span>\n                <span class=\"mls\"> icon-bold</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f032\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf032;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-italic\">\n                \n                </span>\n                <span class=\"mls\"> icon-italic</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f033\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf033;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-text-height\">\n                \n                </span>\n                <span class=\"mls\"> icon-text-height</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f034\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf034;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-text-width\">\n                \n                </span>\n                <span class=\"mls\"> icon-text-width</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f035\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf035;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-align-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-align-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f036\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf036;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-align-center\">\n                \n                </span>\n                <span class=\"mls\"> icon-align-center</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f037\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf037;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-align-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-align-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f038\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf038;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-align-justify\">\n                \n                </span>\n                <span class=\"mls\"> icon-align-justify</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f039\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf039;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-list\">\n                \n                </span>\n                <span class=\"mls\"> icon-list</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f03a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf03a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dedent\">\n                \n                </span>\n                <span class=\"mls\"> icon-dedent</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f03b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf03b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-outdent\">\n                \n                </span>\n                <span class=\"mls\"> icon-outdent</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f03b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf03b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-indent\">\n                \n                </span>\n                <span class=\"mls\"> icon-indent</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f03c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf03c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-video-camera\">\n                \n                </span>\n                <span class=\"mls\"> icon-video-camera</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f03d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf03d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-image\">\n                \n                </span>\n                <span class=\"mls\"> icon-image</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f03e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf03e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f03e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf03e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-picture-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-picture-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f03e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf03e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pencil\">\n                \n                </span>\n                <span class=\"mls\"> icon-pencil</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f040\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf040;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-map-marker\">\n                \n                </span>\n                <span class=\"mls\"> icon-map-marker</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f041\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf041;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-adjust\">\n                \n                </span>\n                <span class=\"mls\"> icon-adjust</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f042\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf042;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tint\">\n                \n                </span>\n                <span class=\"mls\"> icon-tint</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f043\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf043;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-edit\">\n                \n                </span>\n                <span class=\"mls\"> icon-edit</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f044\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf044;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pencil-square-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-pencil-square-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f044\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf044;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-share-square-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-share-square-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f045\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf045;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check-square-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-check-square-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f046\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf046;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrows\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrows</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f047\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf047;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-step-backward\">\n                \n                </span>\n                <span class=\"mls\"> icon-step-backward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f048\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf048;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fast-backward\">\n                \n                </span>\n                <span class=\"mls\"> icon-fast-backward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f049\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf049;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-backward\">\n                \n                </span>\n                <span class=\"mls\"> icon-backward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f04a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf04a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-play\">\n                \n                </span>\n                <span class=\"mls\"> icon-play</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f04b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf04b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pause\">\n                \n                </span>\n                <span class=\"mls\"> icon-pause</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f04c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf04c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stop\">\n                \n                </span>\n                <span class=\"mls\"> icon-stop</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f04d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf04d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-forward\">\n                \n                </span>\n                <span class=\"mls\"> icon-forward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f04e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf04e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fast-forward\">\n                \n                </span>\n                <span class=\"mls\"> icon-fast-forward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f050\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf050;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-step-forward\">\n                \n                </span>\n                <span class=\"mls\"> icon-step-forward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f051\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf051;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-eject\">\n                \n                </span>\n                <span class=\"mls\"> icon-eject</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f052\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf052;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chevron-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-chevron-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f053\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf053;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chevron-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-chevron-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f054\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf054;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-plus-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-plus-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f055\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf055;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-minus-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-minus-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f056\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf056;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-times-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-times-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f057\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf057;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-check-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f058\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf058;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-question-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-question-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f059\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf059;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-info-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-info-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f05a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf05a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crosshairs\">\n                \n                </span>\n                <span class=\"mls\"> icon-crosshairs</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f05b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf05b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-times-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-times-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f05c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf05c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-check-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f05d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf05d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ban\">\n                \n                </span>\n                <span class=\"mls\"> icon-ban</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f05e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf05e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f060\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf060;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f061\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf061;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f062\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf062;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f063\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf063;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mail-forward\">\n                \n                </span>\n                <span class=\"mls\"> icon-mail-forward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f064\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf064;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-share\">\n                \n                </span>\n                <span class=\"mls\"> icon-share</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f064\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf064;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-expand\">\n                \n                </span>\n                <span class=\"mls\"> icon-expand</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f065\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf065;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-compress\">\n                \n                </span>\n                <span class=\"mls\"> icon-compress</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f066\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf066;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exclamation-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-exclamation-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f06a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf06a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gift\">\n                \n                </span>\n                <span class=\"mls\"> icon-gift</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f06b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf06b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-leaf\">\n                \n                </span>\n                <span class=\"mls\"> icon-leaf</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f06c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf06c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fire\">\n                \n                </span>\n                <span class=\"mls\"> icon-fire</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f06d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf06d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-eye\">\n                \n                </span>\n                <span class=\"mls\"> icon-eye</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f06e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf06e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-eye-slash\">\n                \n                </span>\n                <span class=\"mls\"> icon-eye-slash</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f070\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf070;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exclamation-triangle\">\n                \n                </span>\n                <span class=\"mls\"> icon-exclamation-triangle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f071\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf071;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-warning\">\n                \n                </span>\n                <span class=\"mls\"> icon-warning</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f071\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf071;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-plane\">\n                \n                </span>\n                <span class=\"mls\"> icon-plane</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f072\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf072;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-calendar\">\n                \n                </span>\n                <span class=\"mls\"> icon-calendar</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f073\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf073;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-random\">\n                \n                </span>\n                <span class=\"mls\"> icon-random</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f074\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf074;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-comment\">\n                \n                </span>\n                <span class=\"mls\"> icon-comment</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f075\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf075;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-magnet\">\n                \n                </span>\n                <span class=\"mls\"> icon-magnet</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f076\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf076;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chevron-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-chevron-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f077\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf077;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chevron-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-chevron-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f078\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf078;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-retweet\">\n                \n                </span>\n                <span class=\"mls\"> icon-retweet</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f079\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf079;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shopping-cart\">\n                \n                </span>\n                <span class=\"mls\"> icon-shopping-cart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f07a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf07a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-folder\">\n                \n                </span>\n                <span class=\"mls\"> icon-folder</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f07b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf07b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-folder-open\">\n                \n                </span>\n                <span class=\"mls\"> icon-folder-open</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f07c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf07c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrows-v\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrows-v</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f07d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf07d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrows-h\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrows-h</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f07e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf07e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bar-chart\">\n                \n                </span>\n                <span class=\"mls\"> icon-bar-chart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f080\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf080;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bar-chart-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-bar-chart-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f080\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf080;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-twitter-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-twitter-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f081\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf081;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-facebook-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-facebook-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f082\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf082;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-camera-retro\">\n                \n                </span>\n                <span class=\"mls\"> icon-camera-retro</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f083\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf083;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-key\">\n                \n                </span>\n                <span class=\"mls\"> icon-key</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f084\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf084;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cogs\">\n                \n                </span>\n                <span class=\"mls\"> icon-cogs</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f085\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf085;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gears\">\n                \n                </span>\n                <span class=\"mls\"> icon-gears</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f085\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf085;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-comments\">\n                \n                </span>\n                <span class=\"mls\"> icon-comments</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f086\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf086;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thumbs-o-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-thumbs-o-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f087\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf087;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thumbs-o-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-thumbs-o-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f088\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf088;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star-half\">\n                \n                </span>\n                <span class=\"mls\"> icon-star-half</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f089\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf089;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-heart-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-heart-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f08a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf08a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sign-out\">\n                \n                </span>\n                <span class=\"mls\"> icon-sign-out</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f08b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf08b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-linkedin-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-linkedin-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f08c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf08c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thumb-tack\">\n                \n                </span>\n                <span class=\"mls\"> icon-thumb-tack</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f08d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf08d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-external-link\">\n                \n                </span>\n                <span class=\"mls\"> icon-external-link</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f08e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf08e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sign-in\">\n                \n                </span>\n                <span class=\"mls\"> icon-sign-in</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f090\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf090;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-trophy\">\n                \n                </span>\n                <span class=\"mls\"> icon-trophy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f091\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf091;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-github-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-github-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f092\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf092;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-upload\">\n                \n                </span>\n                <span class=\"mls\"> icon-upload</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f093\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf093;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lemon-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-lemon-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f094\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf094;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f095\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf095;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-square-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-square-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f096\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf096;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bookmark-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-bookmark-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f097\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf097;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f098\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf098;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-twitter\">\n                \n                </span>\n                <span class=\"mls\"> icon-twitter</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f099\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf099;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-facebook\">\n                \n                </span>\n                <span class=\"mls\"> icon-facebook</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f09a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf09a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-facebook-f\">\n                \n                </span>\n                <span class=\"mls\"> icon-facebook-f</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f09a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf09a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-github\">\n                \n                </span>\n                <span class=\"mls\"> icon-github</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f09b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf09b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-unlock\">\n                \n                </span>\n                <span class=\"mls\"> icon-unlock</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f09c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf09c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-credit-card\">\n                \n                </span>\n                <span class=\"mls\"> icon-credit-card</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f09d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf09d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-feed\">\n                \n                </span>\n                <span class=\"mls\"> icon-feed</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f09e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf09e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rss\">\n                \n                </span>\n                <span class=\"mls\"> icon-rss</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f09e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf09e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hdd-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hdd-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bullhorn\">\n                \n                </span>\n                <span class=\"mls\"> icon-bullhorn</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bell-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-bell-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-certificate\">\n                \n                </span>\n                <span class=\"mls\"> icon-certificate</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-o-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-o-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-o-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-o-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-o-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-o-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-o-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-o-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-circle-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-circle-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-circle-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-circle-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0a9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0a9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-circle-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-circle-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0aa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0aa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-circle-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-circle-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ab\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ab;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-globe\">\n                \n                </span>\n                <span class=\"mls\"> icon-globe</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ac\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ac;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wrench\">\n                \n                </span>\n                <span class=\"mls\"> icon-wrench</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ad\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ad;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tasks\">\n                \n                </span>\n                <span class=\"mls\"> icon-tasks</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ae\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ae;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0b0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0b0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-briefcase\">\n                \n                </span>\n                <span class=\"mls\"> icon-briefcase</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0b1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0b1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrows-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrows-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0b2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0b2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-group\">\n                \n                </span>\n                <span class=\"mls\"> icon-group</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-users\">\n                \n                </span>\n                <span class=\"mls\"> icon-users</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chain\">\n                \n                </span>\n                <span class=\"mls\"> icon-chain</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-link\">\n                \n                </span>\n                <span class=\"mls\"> icon-link</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flask\">\n                \n                </span>\n                <span class=\"mls\"> icon-flask</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cut\">\n                \n                </span>\n                <span class=\"mls\"> icon-cut</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-scissors\">\n                \n                </span>\n                <span class=\"mls\"> icon-scissors</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-copy\">\n                \n                </span>\n                <span class=\"mls\"> icon-copy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-files-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-files-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-paperclip\">\n                \n                </span>\n                <span class=\"mls\"> icon-paperclip</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-floppy-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-floppy-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-save\">\n                \n                </span>\n                <span class=\"mls\"> icon-save</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bars\">\n                \n                </span>\n                <span class=\"mls\"> icon-bars</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-navicon\">\n                \n                </span>\n                <span class=\"mls\"> icon-navicon</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reorder\">\n                \n                </span>\n                <span class=\"mls\"> icon-reorder</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-list-ul\">\n                \n                </span>\n                <span class=\"mls\"> icon-list-ul</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ca\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ca;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-list-ol\">\n                \n                </span>\n                <span class=\"mls\"> icon-list-ol</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0cb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0cb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-strikethrough\">\n                \n                </span>\n                <span class=\"mls\"> icon-strikethrough</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0cc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0cc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-underline\">\n                \n                </span>\n                <span class=\"mls\"> icon-underline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-table\">\n                \n                </span>\n                <span class=\"mls\"> icon-table</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ce\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ce;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-magic\">\n                \n                </span>\n                <span class=\"mls\"> icon-magic</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-truck\">\n                \n                </span>\n                <span class=\"mls\"> icon-truck</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pinterest\">\n                \n                </span>\n                <span class=\"mls\"> icon-pinterest</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pinterest-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-pinterest-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-google-plus-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-google-plus-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-google-plus\">\n                \n                </span>\n                <span class=\"mls\"> icon-google-plus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-money\">\n                \n                </span>\n                <span class=\"mls\"> icon-money</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-caret-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-caret-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-caret-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-caret-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-caret-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-caret-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-caret-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-caret-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0da\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0da;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-columns\">\n                \n                </span>\n                <span class=\"mls\"> icon-columns</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0db\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0db;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0dc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0dc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-unsorted\">\n                \n                </span>\n                <span class=\"mls\"> icon-unsorted</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0dc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0dc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-desc\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-desc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-asc\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-asc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0de\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0de;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0de\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0de;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-envelope\">\n                \n                </span>\n                <span class=\"mls\"> icon-envelope</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-linkedin\">\n                \n                </span>\n                <span class=\"mls\"> icon-linkedin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rotate-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-rotate-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-undo\">\n                \n                </span>\n                <span class=\"mls\"> icon-undo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gavel\">\n                \n                </span>\n                <span class=\"mls\"> icon-gavel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-legal\">\n                \n                </span>\n                <span class=\"mls\"> icon-legal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dashboard\">\n                \n                </span>\n                <span class=\"mls\"> icon-dashboard</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tachometer\">\n                \n                </span>\n                <span class=\"mls\"> icon-tachometer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-comment-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-comment-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-comments-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-comments-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bolt\">\n                \n                </span>\n                <span class=\"mls\"> icon-bolt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flash\">\n                \n                </span>\n                <span class=\"mls\"> icon-flash</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sitemap\">\n                \n                </span>\n                <span class=\"mls\"> icon-sitemap</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-umbrella\">\n                \n                </span>\n                <span class=\"mls\"> icon-umbrella</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0e9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0e9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-clipboard\">\n                \n                </span>\n                <span class=\"mls\"> icon-clipboard</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ea\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ea;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-paste\">\n                \n                </span>\n                <span class=\"mls\"> icon-paste</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ea\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ea;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lightbulb-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-lightbulb-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0eb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0eb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exchange\">\n                \n                </span>\n                <span class=\"mls\"> icon-exchange</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ec\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ec;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud-download\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud-download</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ed\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ed;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud-upload\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud-upload</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0ee\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0ee;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-user-md\">\n                \n                </span>\n                <span class=\"mls\"> icon-user-md</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stethoscope\">\n                \n                </span>\n                <span class=\"mls\"> icon-stethoscope</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-suitcase\">\n                \n                </span>\n                <span class=\"mls\"> icon-suitcase</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bell\">\n                \n                </span>\n                <span class=\"mls\"> icon-bell</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-coffee\">\n                \n                </span>\n                <span class=\"mls\"> icon-coffee</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cutlery\">\n                \n                </span>\n                <span class=\"mls\"> icon-cutlery</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-text-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-text-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-building-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-building-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hospital-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hospital-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ambulance\">\n                \n                </span>\n                <span class=\"mls\"> icon-ambulance</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0f9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0f9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-medkit\">\n                \n                </span>\n                <span class=\"mls\"> icon-medkit</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0fa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0fa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fighter-jet\">\n                \n                </span>\n                <span class=\"mls\"> icon-fighter-jet</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0fb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0fb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-beer\">\n                \n                </span>\n                <span class=\"mls\"> icon-beer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0fc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0fc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-h-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-h-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0fd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0fd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-plus-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-plus-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f0fe\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf0fe;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angle-double-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-angle-double-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f100\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf100;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angle-double-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-angle-double-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f101\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf101;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angle-double-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-angle-double-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f102\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf102;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angle-double-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-angle-double-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f103\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf103;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angle-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-angle-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f104\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf104;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angle-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-angle-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f105\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf105;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angle-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-angle-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f106\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf106;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angle-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-angle-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f107\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf107;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-desktop\">\n                \n                </span>\n                <span class=\"mls\"> icon-desktop</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f108\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf108;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-laptop\">\n                \n                </span>\n                <span class=\"mls\"> icon-laptop</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f109\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf109;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tablet\">\n                \n                </span>\n                <span class=\"mls\"> icon-tablet</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f10a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf10a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mobile\">\n                \n                </span>\n                <span class=\"mls\"> icon-mobile</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f10b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf10b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mobile-phone\">\n                \n                </span>\n                <span class=\"mls\"> icon-mobile-phone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f10b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf10b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f10c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf10c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-quote-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-quote-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f10d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf10d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-quote-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-quote-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f10e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf10e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-spinner\">\n                \n                </span>\n                <span class=\"mls\"> icon-spinner</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f110\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf110;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f111\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf111;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mail-reply\">\n                \n                </span>\n                <span class=\"mls\"> icon-mail-reply</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f112\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf112;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reply\">\n                \n                </span>\n                <span class=\"mls\"> icon-reply</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f112\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf112;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-github-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-github-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f113\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf113;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-folder-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-folder-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f114\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf114;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-folder-open-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-folder-open-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f115\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf115;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-smile-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-smile-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f118\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf118;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-frown-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-frown-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f119\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf119;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-meh-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-meh-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f11a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf11a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gamepad\">\n                \n                </span>\n                <span class=\"mls\"> icon-gamepad</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f11b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf11b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f11c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf11c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flag-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-flag-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f11d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf11d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flag-checkered\">\n                \n                </span>\n                <span class=\"mls\"> icon-flag-checkered</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f11e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf11e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-terminal\">\n                \n                </span>\n                <span class=\"mls\"> icon-terminal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f120\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf120;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-code\">\n                \n                </span>\n                <span class=\"mls\"> icon-code</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f121\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf121;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mail-reply-all\">\n                \n                </span>\n                <span class=\"mls\"> icon-mail-reply-all</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f122\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf122;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reply-all\">\n                \n                </span>\n                <span class=\"mls\"> icon-reply-all</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f122\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf122;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star-half-empty\">\n                \n                </span>\n                <span class=\"mls\"> icon-star-half-empty</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f123\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf123;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star-half-full\">\n                \n                </span>\n                <span class=\"mls\"> icon-star-half-full</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f123\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf123;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star-half-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-star-half-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f123\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf123;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-location-arrow\">\n                \n                </span>\n                <span class=\"mls\"> icon-location-arrow</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f124\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf124;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f125\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf125;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-code-fork\">\n                \n                </span>\n                <span class=\"mls\"> icon-code-fork</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f126\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf126;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chain-broken\">\n                \n                </span>\n                <span class=\"mls\"> icon-chain-broken</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f127\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf127;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-unlink\">\n                \n                </span>\n                <span class=\"mls\"> icon-unlink</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f127\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf127;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-info\">\n                \n                </span>\n                <span class=\"mls\"> icon-info</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f129\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf129;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exclamation\">\n                \n                </span>\n                <span class=\"mls\"> icon-exclamation</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f12a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf12a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-superscript\">\n                \n                </span>\n                <span class=\"mls\"> icon-superscript</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f12b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf12b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-subscript\">\n                \n                </span>\n                <span class=\"mls\"> icon-subscript</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f12c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf12c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-eraser\">\n                \n                </span>\n                <span class=\"mls\"> icon-eraser</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f12d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf12d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-puzzle-piece\">\n                \n                </span>\n                <span class=\"mls\"> icon-puzzle-piece</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f12e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf12e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-microphone\">\n                \n                </span>\n                <span class=\"mls\"> icon-microphone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f130\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf130;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-microphone-slash\">\n                \n                </span>\n                <span class=\"mls\"> icon-microphone-slash</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f131\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf131;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shield\">\n                \n                </span>\n                <span class=\"mls\"> icon-shield</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f132\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf132;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-calendar-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-calendar-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f133\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf133;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fire-extinguisher\">\n                \n                </span>\n                <span class=\"mls\"> icon-fire-extinguisher</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f134\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf134;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rocket\">\n                \n                </span>\n                <span class=\"mls\"> icon-rocket</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f135\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf135;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-maxcdn\">\n                \n                </span>\n                <span class=\"mls\"> icon-maxcdn</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f136\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf136;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chevron-circle-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-chevron-circle-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f137\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf137;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chevron-circle-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-chevron-circle-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f138\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf138;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chevron-circle-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-chevron-circle-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f139\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf139;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chevron-circle-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-chevron-circle-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f13a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf13a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-html5\">\n                \n                </span>\n                <span class=\"mls\"> icon-html5</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f13b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf13b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-css3\">\n                \n                </span>\n                <span class=\"mls\"> icon-css3</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f13c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf13c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-anchor\">\n                \n                </span>\n                <span class=\"mls\"> icon-anchor</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f13d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf13d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-unlock-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-unlock-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f13e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf13e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bullseye\">\n                \n                </span>\n                <span class=\"mls\"> icon-bullseye</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f140\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf140;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ellipsis-h\">\n                \n                </span>\n                <span class=\"mls\"> icon-ellipsis-h</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f141\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf141;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ellipsis-v\">\n                \n                </span>\n                <span class=\"mls\"> icon-ellipsis-v</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f142\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf142;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rss-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-rss-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f143\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf143;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-play-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-play-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f144\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf144;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ticket\">\n                \n                </span>\n                <span class=\"mls\"> icon-ticket</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f145\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf145;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-minus-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-minus-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f146\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf146;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-minus-square-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-minus-square-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f147\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf147;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-level-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-level-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f148\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf148;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-level-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-level-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f149\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf149;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-check-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f14a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf14a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pencil-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-pencil-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f14b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf14b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-external-link-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-external-link-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f14c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf14c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-share-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-share-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f14d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf14d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-compass\">\n                \n                </span>\n                <span class=\"mls\"> icon-compass</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f14e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf14e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-caret-square-o-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-caret-square-o-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f150\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf150;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toggle-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-toggle-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f150\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf150;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-caret-square-o-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-caret-square-o-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f151\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf151;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toggle-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-toggle-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f151\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf151;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-caret-square-o-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-caret-square-o-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f152\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf152;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toggle-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-toggle-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f152\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf152;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-eur\">\n                \n                </span>\n                <span class=\"mls\"> icon-eur</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f153\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf153;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-euro\">\n                \n                </span>\n                <span class=\"mls\"> icon-euro</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f153\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf153;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gbp\">\n                \n                </span>\n                <span class=\"mls\"> icon-gbp</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f154\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf154;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dollar\">\n                \n                </span>\n                <span class=\"mls\"> icon-dollar</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f155\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf155;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-usd\">\n                \n                </span>\n                <span class=\"mls\"> icon-usd</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f155\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf155;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-inr\">\n                \n                </span>\n                <span class=\"mls\"> icon-inr</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f156\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf156;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rupee\">\n                \n                </span>\n                <span class=\"mls\"> icon-rupee</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f156\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf156;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cny\">\n                \n                </span>\n                <span class=\"mls\"> icon-cny</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f157\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf157;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-jpy\">\n                \n                </span>\n                <span class=\"mls\"> icon-jpy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f157\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf157;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rmb\">\n                \n                </span>\n                <span class=\"mls\"> icon-rmb</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f157\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf157;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-yen\">\n                \n                </span>\n                <span class=\"mls\"> icon-yen</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f157\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf157;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rouble\">\n                \n                </span>\n                <span class=\"mls\"> icon-rouble</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f158\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf158;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rub\">\n                \n                </span>\n                <span class=\"mls\"> icon-rub</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f158\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf158;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ruble\">\n                \n                </span>\n                <span class=\"mls\"> icon-ruble</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f158\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf158;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-krw\">\n                \n                </span>\n                <span class=\"mls\"> icon-krw</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f159\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf159;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-won\">\n                \n                </span>\n                <span class=\"mls\"> icon-won</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f159\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf159;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bitcoin\">\n                \n                </span>\n                <span class=\"mls\"> icon-bitcoin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f15a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf15a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-btc\">\n                \n                </span>\n                <span class=\"mls\"> icon-btc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f15a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf15a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file\">\n                \n                </span>\n                <span class=\"mls\"> icon-file</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f15b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf15b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-text\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-text</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f15c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf15c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-alpha-asc\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-alpha-asc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f15d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf15d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-alpha-desc\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-alpha-desc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f15e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf15e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-amount-asc\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-amount-asc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f160\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf160;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-amount-desc\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-amount-desc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f161\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf161;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-numeric-asc\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-numeric-asc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f162\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf162;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort-numeric-desc\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort-numeric-desc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f163\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf163;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thumbs-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-thumbs-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f164\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf164;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thumbs-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-thumbs-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f165\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf165;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-youtube-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-youtube-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f166\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf166;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-youtube\">\n                \n                </span>\n                <span class=\"mls\"> icon-youtube</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f167\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf167;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-xing\">\n                \n                </span>\n                <span class=\"mls\"> icon-xing</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f168\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf168;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-xing-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-xing-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f169\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf169;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-youtube-play\">\n                \n                </span>\n                <span class=\"mls\"> icon-youtube-play</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f16a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf16a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dropbox\">\n                \n                </span>\n                <span class=\"mls\"> icon-dropbox</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f16b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf16b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stack-overflow\">\n                \n                </span>\n                <span class=\"mls\"> icon-stack-overflow</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f16c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf16c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-instagram\">\n                \n                </span>\n                <span class=\"mls\"> icon-instagram</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f16d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf16d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flickr\">\n                \n                </span>\n                <span class=\"mls\"> icon-flickr</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f16e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf16e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-adn\">\n                \n                </span>\n                <span class=\"mls\"> icon-adn</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f170\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf170;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bitbucket\">\n                \n                </span>\n                <span class=\"mls\"> icon-bitbucket</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f171\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf171;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bitbucket-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-bitbucket-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f172\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf172;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tumblr\">\n                \n                </span>\n                <span class=\"mls\"> icon-tumblr</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f173\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf173;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tumblr-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-tumblr-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f174\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf174;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-long-arrow-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-long-arrow-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f175\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf175;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-long-arrow-up\">\n                \n                </span>\n                <span class=\"mls\"> icon-long-arrow-up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f176\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf176;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-long-arrow-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-long-arrow-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f177\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf177;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-long-arrow-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-long-arrow-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f178\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf178;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-apple\">\n                \n                </span>\n                <span class=\"mls\"> icon-apple</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f179\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf179;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-windows\">\n                \n                </span>\n                <span class=\"mls\"> icon-windows</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f17a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf17a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-android\">\n                \n                </span>\n                <span class=\"mls\"> icon-android</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f17b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf17b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-linux\">\n                \n                </span>\n                <span class=\"mls\"> icon-linux</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f17c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf17c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dribbble\">\n                \n                </span>\n                <span class=\"mls\"> icon-dribbble</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f17d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf17d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-skype\">\n                \n                </span>\n                <span class=\"mls\"> icon-skype</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f17e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf17e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-foursquare\">\n                \n                </span>\n                <span class=\"mls\"> icon-foursquare</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f180\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf180;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-trello\">\n                \n                </span>\n                <span class=\"mls\"> icon-trello</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f181\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf181;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-female\">\n                \n                </span>\n                <span class=\"mls\"> icon-female</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f182\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf182;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-male\">\n                \n                </span>\n                <span class=\"mls\"> icon-male</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f183\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf183;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gittip\">\n                \n                </span>\n                <span class=\"mls\"> icon-gittip</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f184\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf184;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gratipay\">\n                \n                </span>\n                <span class=\"mls\"> icon-gratipay</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f184\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf184;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sun-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-sun-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f185\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf185;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-moon-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-moon-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f186\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf186;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-archive\">\n                \n                </span>\n                <span class=\"mls\"> icon-archive</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f187\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf187;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bug\">\n                \n                </span>\n                <span class=\"mls\"> icon-bug</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f188\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf188;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vk\">\n                \n                </span>\n                <span class=\"mls\"> icon-vk</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f189\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf189;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-weibo\">\n                \n                </span>\n                <span class=\"mls\"> icon-weibo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f18a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf18a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-renren\">\n                \n                </span>\n                <span class=\"mls\"> icon-renren</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f18b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf18b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pagelines\">\n                \n                </span>\n                <span class=\"mls\"> icon-pagelines</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f18c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf18c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stack-exchange\">\n                \n                </span>\n                <span class=\"mls\"> icon-stack-exchange</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f18d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf18d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-circle-o-right\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-circle-o-right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f18e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf18e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow-circle-o-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow-circle-o-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f190\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf190;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-caret-square-o-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-caret-square-o-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f191\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf191;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toggle-left\">\n                \n                </span>\n                <span class=\"mls\"> icon-toggle-left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f191\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf191;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dot-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-dot-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f192\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf192;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wheelchair\">\n                \n                </span>\n                <span class=\"mls\"> icon-wheelchair</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f193\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf193;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vimeo-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-vimeo-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f194\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf194;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-try\">\n                \n                </span>\n                <span class=\"mls\"> icon-try</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f195\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf195;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-turkish-lira\">\n                \n                </span>\n                <span class=\"mls\"> icon-turkish-lira</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f195\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf195;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-plus-square-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-plus-square-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f196\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf196;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-space-shuttle\">\n                \n                </span>\n                <span class=\"mls\"> icon-space-shuttle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f197\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf197;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-slack\">\n                \n                </span>\n                <span class=\"mls\"> icon-slack</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f198\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf198;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-envelope-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-envelope-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f199\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf199;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wordpress\">\n                \n                </span>\n                <span class=\"mls\"> icon-wordpress</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f19a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf19a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-openid\">\n                \n                </span>\n                <span class=\"mls\"> icon-openid</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f19b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf19b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bank\">\n                \n                </span>\n                <span class=\"mls\"> icon-bank</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f19c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf19c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-institution\">\n                \n                </span>\n                <span class=\"mls\"> icon-institution</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f19c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf19c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-university\">\n                \n                </span>\n                <span class=\"mls\"> icon-university</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f19c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf19c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-graduation-cap\">\n                \n                </span>\n                <span class=\"mls\"> icon-graduation-cap</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f19d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf19d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mortar-board\">\n                \n                </span>\n                <span class=\"mls\"> icon-mortar-board</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f19d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf19d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-yahoo\">\n                \n                </span>\n                <span class=\"mls\"> icon-yahoo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f19e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf19e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-google\">\n                \n                </span>\n                <span class=\"mls\"> icon-google</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reddit\">\n                \n                </span>\n                <span class=\"mls\"> icon-reddit</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reddit-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-reddit-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stumbleupon-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-stumbleupon-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stumbleupon\">\n                \n                </span>\n                <span class=\"mls\"> icon-stumbleupon</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-delicious\">\n                \n                </span>\n                <span class=\"mls\"> icon-delicious</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-digg\">\n                \n                </span>\n                <span class=\"mls\"> icon-digg</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pied-piper-pp\">\n                \n                </span>\n                <span class=\"mls\"> icon-pied-piper-pp</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pied-piper-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-pied-piper-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-drupal\">\n                \n                </span>\n                <span class=\"mls\"> icon-drupal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1a9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1a9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-joomla\">\n                \n                </span>\n                <span class=\"mls\"> icon-joomla</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1aa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1aa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-language\">\n                \n                </span>\n                <span class=\"mls\"> icon-language</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ab\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ab;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fax\">\n                \n                </span>\n                <span class=\"mls\"> icon-fax</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ac\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ac;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-building\">\n                \n                </span>\n                <span class=\"mls\"> icon-building</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ad\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ad;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-child\">\n                \n                </span>\n                <span class=\"mls\"> icon-child</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ae\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ae;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-paw\">\n                \n                </span>\n                <span class=\"mls\"> icon-paw</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-spoon\">\n                \n                </span>\n                <span class=\"mls\"> icon-spoon</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cube\">\n                \n                </span>\n                <span class=\"mls\"> icon-cube</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cubes\">\n                \n                </span>\n                <span class=\"mls\"> icon-cubes</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-behance\">\n                \n                </span>\n                <span class=\"mls\"> icon-behance</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-behance-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-behance-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-steam\">\n                \n                </span>\n                <span class=\"mls\"> icon-steam</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-steam-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-steam-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-recycle\">\n                \n                </span>\n                <span class=\"mls\"> icon-recycle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-automobile\">\n                \n                </span>\n                <span class=\"mls\"> icon-automobile</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-car\">\n                \n                </span>\n                <span class=\"mls\"> icon-car</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1b9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1b9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cab\">\n                \n                </span>\n                <span class=\"mls\"> icon-cab</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ba\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ba;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-taxi\">\n                \n                </span>\n                <span class=\"mls\"> icon-taxi</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ba\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ba;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tree\">\n                \n                </span>\n                <span class=\"mls\"> icon-tree</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1bb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1bb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-spotify\">\n                \n                </span>\n                <span class=\"mls\"> icon-spotify</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1bc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1bc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-deviantart\">\n                \n                </span>\n                <span class=\"mls\"> icon-deviantart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1bd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1bd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-soundcloud\">\n                \n                </span>\n                <span class=\"mls\"> icon-soundcloud</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1be\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1be;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-database\">\n                \n                </span>\n                <span class=\"mls\"> icon-database</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-pdf-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-pdf-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-word-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-word-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-excel-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-excel-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-powerpoint-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-powerpoint-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-image-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-image-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-photo-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-photo-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-picture-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-picture-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-archive-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-archive-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-zip-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-zip-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-audio-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-audio-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-sound-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-sound-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-movie-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-movie-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-video-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-video-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file-code-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-file-code-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vine\">\n                \n                </span>\n                <span class=\"mls\"> icon-vine</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ca\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ca;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-codepen\">\n                \n                </span>\n                <span class=\"mls\"> icon-codepen</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1cb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1cb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-jsfiddle\">\n                \n                </span>\n                <span class=\"mls\"> icon-jsfiddle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1cc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1cc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-life-bouy\">\n                \n                </span>\n                <span class=\"mls\"> icon-life-bouy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-life-buoy\">\n                \n                </span>\n                <span class=\"mls\"> icon-life-buoy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-life-ring\">\n                \n                </span>\n                <span class=\"mls\"> icon-life-ring</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-life-saver\">\n                \n                </span>\n                <span class=\"mls\"> icon-life-saver</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-support\">\n                \n                </span>\n                <span class=\"mls\"> icon-support</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-circle-o-notch\">\n                \n                </span>\n                <span class=\"mls\"> icon-circle-o-notch</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ce\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ce;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ra\">\n                \n                </span>\n                <span class=\"mls\"> icon-ra</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rebel\">\n                \n                </span>\n                <span class=\"mls\"> icon-rebel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-resistance\">\n                \n                </span>\n                <span class=\"mls\"> icon-resistance</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-empire\">\n                \n                </span>\n                <span class=\"mls\"> icon-empire</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ge\">\n                \n                </span>\n                <span class=\"mls\"> icon-ge</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-git-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-git-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-git\">\n                \n                </span>\n                <span class=\"mls\"> icon-git</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hacker-news\">\n                \n                </span>\n                <span class=\"mls\"> icon-hacker-news</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-y-combinator-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-y-combinator-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-yc-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-yc-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tencent-weibo\">\n                \n                </span>\n                <span class=\"mls\"> icon-tencent-weibo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-qq\">\n                \n                </span>\n                <span class=\"mls\"> icon-qq</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wechat\">\n                \n                </span>\n                <span class=\"mls\"> icon-wechat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-weixin\">\n                \n                </span>\n                <span class=\"mls\"> icon-weixin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-paper-plane\">\n                \n                </span>\n                <span class=\"mls\"> icon-paper-plane</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-send\">\n                \n                </span>\n                <span class=\"mls\"> icon-send</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-paper-plane-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-paper-plane-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-send-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-send-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-history\">\n                \n                </span>\n                <span class=\"mls\"> icon-history</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1da\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1da;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-circle-thin\">\n                \n                </span>\n                <span class=\"mls\"> icon-circle-thin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1db\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1db;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-header\">\n                \n                </span>\n                <span class=\"mls\"> icon-header</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1dc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1dc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-paragraph\">\n                \n                </span>\n                <span class=\"mls\"> icon-paragraph</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sliders\">\n                \n                </span>\n                <span class=\"mls\"> icon-sliders</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1de\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1de;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-share-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-share-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-share-alt-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-share-alt-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bomb\">\n                \n                </span>\n                <span class=\"mls\"> icon-bomb</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-futbol-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-futbol-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-soccer-ball-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-soccer-ball-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tty\">\n                \n                </span>\n                <span class=\"mls\"> icon-tty</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-binoculars\">\n                \n                </span>\n                <span class=\"mls\"> icon-binoculars</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-plug\">\n                \n                </span>\n                <span class=\"mls\"> icon-plug</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-slideshare\">\n                \n                </span>\n                <span class=\"mls\"> icon-slideshare</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-twitch\">\n                \n                </span>\n                <span class=\"mls\"> icon-twitch</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-yelp\">\n                \n                </span>\n                <span class=\"mls\"> icon-yelp</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1e9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1e9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-newspaper-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-newspaper-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ea\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ea;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wifi\">\n                \n                </span>\n                <span class=\"mls\"> icon-wifi</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1eb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1eb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-calculator\">\n                \n                </span>\n                <span class=\"mls\"> icon-calculator</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ec\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ec;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-paypal\">\n                \n                </span>\n                <span class=\"mls\"> icon-paypal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ed\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ed;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-google-wallet\">\n                \n                </span>\n                <span class=\"mls\"> icon-google-wallet</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1ee\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1ee;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc-visa\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc-visa</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc-mastercard\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc-mastercard</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc-discover\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc-discover</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc-amex\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc-amex</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc-paypal\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc-paypal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc-stripe\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc-stripe</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bell-slash\">\n                \n                </span>\n                <span class=\"mls\"> icon-bell-slash</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bell-slash-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-bell-slash-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-trash\">\n                \n                </span>\n                <span class=\"mls\"> icon-trash</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-copyright\">\n                \n                </span>\n                <span class=\"mls\"> icon-copyright</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1f9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1f9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-at\">\n                \n                </span>\n                <span class=\"mls\"> icon-at</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1fa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1fa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-eyedropper\">\n                \n                </span>\n                <span class=\"mls\"> icon-eyedropper</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1fb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1fb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-paint-brush\">\n                \n                </span>\n                <span class=\"mls\"> icon-paint-brush</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1fc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1fc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-birthday-cake\">\n                \n                </span>\n                <span class=\"mls\"> icon-birthday-cake</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1fd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1fd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-area-chart\">\n                \n                </span>\n                <span class=\"mls\"> icon-area-chart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f1fe\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf1fe;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pie-chart\">\n                \n                </span>\n                <span class=\"mls\"> icon-pie-chart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f200\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf200;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-line-chart\">\n                \n                </span>\n                <span class=\"mls\"> icon-line-chart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f201\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf201;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lastfm\">\n                \n                </span>\n                <span class=\"mls\"> icon-lastfm</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f202\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf202;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lastfm-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-lastfm-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f203\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf203;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toggle-off\">\n                \n                </span>\n                <span class=\"mls\"> icon-toggle-off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f204\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf204;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toggle-on\">\n                \n                </span>\n                <span class=\"mls\"> icon-toggle-on</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f205\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf205;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bicycle\">\n                \n                </span>\n                <span class=\"mls\"> icon-bicycle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f206\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf206;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bus\">\n                \n                </span>\n                <span class=\"mls\"> icon-bus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f207\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf207;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ioxhost\">\n                \n                </span>\n                <span class=\"mls\"> icon-ioxhost</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f208\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf208;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-angellist\">\n                \n                </span>\n                <span class=\"mls\"> icon-angellist</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f209\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf209;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f20a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf20a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ils\">\n                \n                </span>\n                <span class=\"mls\"> icon-ils</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f20b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf20b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shekel\">\n                \n                </span>\n                <span class=\"mls\"> icon-shekel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f20b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf20b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sheqel\">\n                \n                </span>\n                <span class=\"mls\"> icon-sheqel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f20b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf20b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-meanpath\">\n                \n                </span>\n                <span class=\"mls\"> icon-meanpath</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f20c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf20c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-buysellads\">\n                \n                </span>\n                <span class=\"mls\"> icon-buysellads</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f20d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf20d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-connectdevelop\">\n                \n                </span>\n                <span class=\"mls\"> icon-connectdevelop</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f20e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf20e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dashcube\">\n                \n                </span>\n                <span class=\"mls\"> icon-dashcube</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f210\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf210;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-forumbee\">\n                \n                </span>\n                <span class=\"mls\"> icon-forumbee</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f211\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf211;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-leanpub\">\n                \n                </span>\n                <span class=\"mls\"> icon-leanpub</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f212\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf212;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sellsy\">\n                \n                </span>\n                <span class=\"mls\"> icon-sellsy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f213\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf213;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shirtsinbulk\">\n                \n                </span>\n                <span class=\"mls\"> icon-shirtsinbulk</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f214\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf214;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-simplybuilt\">\n                \n                </span>\n                <span class=\"mls\"> icon-simplybuilt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f215\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf215;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-skyatlas\">\n                \n                </span>\n                <span class=\"mls\"> icon-skyatlas</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f216\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf216;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cart-plus\">\n                \n                </span>\n                <span class=\"mls\"> icon-cart-plus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f217\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf217;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cart-arrow-down\">\n                \n                </span>\n                <span class=\"mls\"> icon-cart-arrow-down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f218\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf218;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-diamond\">\n                \n                </span>\n                <span class=\"mls\"> icon-diamond</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f219\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf219;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ship\">\n                \n                </span>\n                <span class=\"mls\"> icon-ship</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f21a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf21a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-user-secret\">\n                \n                </span>\n                <span class=\"mls\"> icon-user-secret</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f21b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf21b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-motorcycle\">\n                \n                </span>\n                <span class=\"mls\"> icon-motorcycle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f21c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf21c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-street-view\">\n                \n                </span>\n                <span class=\"mls\"> icon-street-view</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f21d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf21d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-heartbeat\">\n                \n                </span>\n                <span class=\"mls\"> icon-heartbeat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f21e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf21e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-venus\">\n                \n                </span>\n                <span class=\"mls\"> icon-venus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f221\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf221;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mars\">\n                \n                </span>\n                <span class=\"mls\"> icon-mars</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f222\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf222;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mercury\">\n                \n                </span>\n                <span class=\"mls\"> icon-mercury</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f223\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf223;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-intersex\">\n                \n                </span>\n                <span class=\"mls\"> icon-intersex</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f224\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf224;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-transgender\">\n                \n                </span>\n                <span class=\"mls\"> icon-transgender</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f224\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf224;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-transgender-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-transgender-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f225\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf225;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-venus-double\">\n                \n                </span>\n                <span class=\"mls\"> icon-venus-double</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f226\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf226;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mars-double\">\n                \n                </span>\n                <span class=\"mls\"> icon-mars-double</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f227\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf227;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-venus-mars\">\n                \n                </span>\n                <span class=\"mls\"> icon-venus-mars</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f228\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf228;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mars-stroke\">\n                \n                </span>\n                <span class=\"mls\"> icon-mars-stroke</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f229\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf229;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mars-stroke-v\">\n                \n                </span>\n                <span class=\"mls\"> icon-mars-stroke-v</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f22a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf22a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mars-stroke-h\">\n                \n                </span>\n                <span class=\"mls\"> icon-mars-stroke-h</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f22b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf22b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-neuter\">\n                \n                </span>\n                <span class=\"mls\"> icon-neuter</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f22c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf22c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-genderless\">\n                \n                </span>\n                <span class=\"mls\"> icon-genderless</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f22d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf22d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-facebook-official\">\n                \n                </span>\n                <span class=\"mls\"> icon-facebook-official</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f230\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf230;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pinterest-p\">\n                \n                </span>\n                <span class=\"mls\"> icon-pinterest-p</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f231\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf231;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-whatsapp\">\n                \n                </span>\n                <span class=\"mls\"> icon-whatsapp</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f232\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf232;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-server\">\n                \n                </span>\n                <span class=\"mls\"> icon-server</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f233\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf233;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-user-plus\">\n                \n                </span>\n                <span class=\"mls\"> icon-user-plus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f234\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf234;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-user-times\">\n                \n                </span>\n                <span class=\"mls\"> icon-user-times</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f235\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf235;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bed\">\n                \n                </span>\n                <span class=\"mls\"> icon-bed</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f236\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf236;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hotel\">\n                \n                </span>\n                <span class=\"mls\"> icon-hotel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f236\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf236;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-viacoin\">\n                \n                </span>\n                <span class=\"mls\"> icon-viacoin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f237\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf237;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-train\">\n                \n                </span>\n                <span class=\"mls\"> icon-train</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f238\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf238;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-subway\">\n                \n                </span>\n                <span class=\"mls\"> icon-subway</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f239\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf239;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-medium\">\n                \n                </span>\n                <span class=\"mls\"> icon-medium</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f23a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf23a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-y-combinator\">\n                \n                </span>\n                <span class=\"mls\"> icon-y-combinator</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f23b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf23b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-yc\">\n                \n                </span>\n                <span class=\"mls\"> icon-yc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f23b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf23b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-optin-monster\">\n                \n                </span>\n                <span class=\"mls\"> icon-optin-monster</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f23c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf23c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-opencart\">\n                \n                </span>\n                <span class=\"mls\"> icon-opencart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f23d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf23d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-expeditedssl\">\n                \n                </span>\n                <span class=\"mls\"> icon-expeditedssl</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f23e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf23e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f240\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf240;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-4\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-4</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f240\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf240;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-full\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-full</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f240\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf240;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-3\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-3</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f241\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf241;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-three-quarters\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-three-quarters</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f241\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf241;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-2\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f242\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf242;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-half\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-half</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f242\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf242;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-1\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-1</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f243\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf243;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-quarter\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-quarter</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f243\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf243;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-0\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-0</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f244\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf244;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery-empty\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery-empty</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f244\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf244;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mouse-pointer\">\n                \n                </span>\n                <span class=\"mls\"> icon-mouse-pointer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f245\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf245;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-i-cursor\">\n                \n                </span>\n                <span class=\"mls\"> icon-i-cursor</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f246\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf246;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-object-group\">\n                \n                </span>\n                <span class=\"mls\"> icon-object-group</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f247\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf247;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-object-ungroup\">\n                \n                </span>\n                <span class=\"mls\"> icon-object-ungroup</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f248\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf248;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sticky-note\">\n                \n                </span>\n                <span class=\"mls\"> icon-sticky-note</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f249\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf249;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sticky-note-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-sticky-note-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f24a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf24a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc-jcb\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc-jcb</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f24b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf24b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cc-diners-club\">\n                \n                </span>\n                <span class=\"mls\"> icon-cc-diners-club</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f24c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf24c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-clone\">\n                \n                </span>\n                <span class=\"mls\"> icon-clone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f24d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf24d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-balance-scale\">\n                \n                </span>\n                <span class=\"mls\"> icon-balance-scale</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f24e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf24e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f250\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf250;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass-1\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass-1</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f251\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf251;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass-start\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass-start</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f251\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf251;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass-2\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass-2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f252\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf252;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass-half\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass-half</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f252\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf252;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass-3\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass-3</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f253\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf253;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass-end\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass-end</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f253\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf253;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f254\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf254;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-grab-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-grab-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f255\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf255;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-rock-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-rock-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f255\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf255;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-paper-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-paper-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f256\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf256;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-stop-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-stop-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f256\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf256;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-scissors-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-scissors-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f257\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf257;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-lizard-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-lizard-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f258\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf258;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-spock-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-spock-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f259\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf259;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-pointer-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-pointer-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f25a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf25a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hand-peace-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-hand-peace-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f25b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf25b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-trademark\">\n                \n                </span>\n                <span class=\"mls\"> icon-trademark</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f25c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf25c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-registered\">\n                \n                </span>\n                <span class=\"mls\"> icon-registered</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f25d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf25d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-creative-commons\">\n                \n                </span>\n                <span class=\"mls\"> icon-creative-commons</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f25e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf25e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gg\">\n                \n                </span>\n                <span class=\"mls\"> icon-gg</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f260\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf260;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gg-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-gg-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f261\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf261;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tripadvisor\">\n                \n                </span>\n                <span class=\"mls\"> icon-tripadvisor</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f262\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf262;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-odnoklassniki\">\n                \n                </span>\n                <span class=\"mls\"> icon-odnoklassniki</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f263\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf263;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-odnoklassniki-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-odnoklassniki-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f264\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf264;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-get-pocket\">\n                \n                </span>\n                <span class=\"mls\"> icon-get-pocket</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f265\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf265;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wikipedia-w\">\n                \n                </span>\n                <span class=\"mls\"> icon-wikipedia-w</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f266\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf266;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-safari\">\n                \n                </span>\n                <span class=\"mls\"> icon-safari</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f267\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf267;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chrome\">\n                \n                </span>\n                <span class=\"mls\"> icon-chrome</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f268\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf268;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-firefox\">\n                \n                </span>\n                <span class=\"mls\"> icon-firefox</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f269\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf269;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-opera\">\n                \n                </span>\n                <span class=\"mls\"> icon-opera</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f26a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf26a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-internet-explorer\">\n                \n                </span>\n                <span class=\"mls\"> icon-internet-explorer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f26b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf26b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-television\">\n                \n                </span>\n                <span class=\"mls\"> icon-television</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f26c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf26c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tv\">\n                \n                </span>\n                <span class=\"mls\"> icon-tv</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f26c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf26c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-contao\">\n                \n                </span>\n                <span class=\"mls\"> icon-contao</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f26d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf26d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-500px\">\n                \n                </span>\n                <span class=\"mls\"> icon-500px</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f26e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf26e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-amazon\">\n                \n                </span>\n                <span class=\"mls\"> icon-amazon</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f270\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf270;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-calendar-plus-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-calendar-plus-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f271\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf271;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-calendar-minus-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-calendar-minus-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f272\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf272;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-calendar-times-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-calendar-times-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f273\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf273;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-calendar-check-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-calendar-check-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f274\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf274;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-industry\">\n                \n                </span>\n                <span class=\"mls\"> icon-industry</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f275\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf275;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-map-pin\">\n                \n                </span>\n                <span class=\"mls\"> icon-map-pin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f276\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf276;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-map-signs\">\n                \n                </span>\n                <span class=\"mls\"> icon-map-signs</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f277\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf277;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-map-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-map-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f278\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf278;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-map\">\n                \n                </span>\n                <span class=\"mls\"> icon-map</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f279\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf279;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-commenting\">\n                \n                </span>\n                <span class=\"mls\"> icon-commenting</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f27a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf27a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-commenting-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-commenting-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f27b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf27b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-houzz\">\n                \n                </span>\n                <span class=\"mls\"> icon-houzz</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f27c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf27c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vimeo\">\n                \n                </span>\n                <span class=\"mls\"> icon-vimeo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f27d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf27d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-black-tie\">\n                \n                </span>\n                <span class=\"mls\"> icon-black-tie</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f27e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf27e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fonticons\">\n                \n                </span>\n                <span class=\"mls\"> icon-fonticons</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f280\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf280;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reddit-alien\">\n                \n                </span>\n                <span class=\"mls\"> icon-reddit-alien</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f281\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf281;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-edge\">\n                \n                </span>\n                <span class=\"mls\"> icon-edge</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f282\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf282;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-credit-card-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-credit-card-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f283\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf283;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-codiepie\">\n                \n                </span>\n                <span class=\"mls\"> icon-codiepie</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f284\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf284;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-modx\">\n                \n                </span>\n                <span class=\"mls\"> icon-modx</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f285\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf285;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fort-awesome\">\n                \n                </span>\n                <span class=\"mls\"> icon-fort-awesome</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f286\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf286;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-usb\">\n                \n                </span>\n                <span class=\"mls\"> icon-usb</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f287\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf287;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-product-hunt\">\n                \n                </span>\n                <span class=\"mls\"> icon-product-hunt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f288\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf288;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mixcloud\">\n                \n                </span>\n                <span class=\"mls\"> icon-mixcloud</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f289\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf289;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-scribd\">\n                \n                </span>\n                <span class=\"mls\"> icon-scribd</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f28a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf28a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pause-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-pause-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f28b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf28b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pause-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-pause-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f28c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf28c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stop-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-stop-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f28d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf28d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stop-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-stop-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f28e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf28e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shopping-bag\">\n                \n                </span>\n                <span class=\"mls\"> icon-shopping-bag</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f290\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf290;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shopping-basket\">\n                \n                </span>\n                <span class=\"mls\"> icon-shopping-basket</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f291\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf291;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hashtag\">\n                \n                </span>\n                <span class=\"mls\"> icon-hashtag</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f292\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf292;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bluetooth\">\n                \n                </span>\n                <span class=\"mls\"> icon-bluetooth</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f293\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf293;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bluetooth-b\">\n                \n                </span>\n                <span class=\"mls\"> icon-bluetooth-b</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f294\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf294;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-percent\">\n                \n                </span>\n                <span class=\"mls\"> icon-percent</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f295\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf295;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gitlab\">\n                \n                </span>\n                <span class=\"mls\"> icon-gitlab</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f296\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf296;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wpbeginner\">\n                \n                </span>\n                <span class=\"mls\"> icon-wpbeginner</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f297\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf297;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wpforms\">\n                \n                </span>\n                <span class=\"mls\"> icon-wpforms</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f298\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf298;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-envira\">\n                \n                </span>\n                <span class=\"mls\"> icon-envira</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f299\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf299;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-universal-access\">\n                \n                </span>\n                <span class=\"mls\"> icon-universal-access</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f29a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf29a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wheelchair-alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-wheelchair-alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f29b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf29b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-question-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-question-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f29c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf29c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-blind\">\n                \n                </span>\n                <span class=\"mls\"> icon-blind</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f29d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf29d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-audio-description\">\n                \n                </span>\n                <span class=\"mls\"> icon-audio-description</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f29e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf29e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-volume-control-phone\">\n                \n                </span>\n                <span class=\"mls\"> icon-volume-control-phone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-braille\">\n                \n                </span>\n                <span class=\"mls\"> icon-braille</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-assistive-listening-systems\">\n                \n                </span>\n                <span class=\"mls\"> icon-assistive-listening-systems</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-american-sign-language-interpreting\">\n                \n                </span>\n                <span class=\"mls\"> icon-american-sign-language-interpreting</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-asl-interpreting\">\n                \n                </span>\n                <span class=\"mls\"> icon-asl-interpreting</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-deaf\">\n                \n                </span>\n                <span class=\"mls\"> icon-deaf</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-deafness\">\n                \n                </span>\n                <span class=\"mls\"> icon-deafness</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hard-of-hearing\">\n                \n                </span>\n                <span class=\"mls\"> icon-hard-of-hearing</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-glide\">\n                \n                </span>\n                <span class=\"mls\"> icon-glide</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-glide-g\">\n                \n                </span>\n                <span class=\"mls\"> icon-glide-g</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sign-language\">\n                \n                </span>\n                <span class=\"mls\"> icon-sign-language</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signing\">\n                \n                </span>\n                <span class=\"mls\"> icon-signing</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-low-vision\">\n                \n                </span>\n                <span class=\"mls\"> icon-low-vision</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-viadeo\">\n                \n                </span>\n                <span class=\"mls\"> icon-viadeo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2a9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2a9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-viadeo-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-viadeo-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2aa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2aa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-snapchat\">\n                \n                </span>\n                <span class=\"mls\"> icon-snapchat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2ab\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2ab;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-snapchat-ghost\">\n                \n                </span>\n                <span class=\"mls\"> icon-snapchat-ghost</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2ac\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2ac;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-snapchat-square\">\n                \n                </span>\n                <span class=\"mls\"> icon-snapchat-square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2ad\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2ad;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pied-piper\">\n                \n                </span>\n                <span class=\"mls\"> icon-pied-piper</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2ae\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2ae;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-first-order\">\n                \n                </span>\n                <span class=\"mls\"> icon-first-order</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-yoast\">\n                \n                </span>\n                <span class=\"mls\"> icon-yoast</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-themeisle\">\n                \n                </span>\n                <span class=\"mls\"> icon-themeisle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-google-plus-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-google-plus-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-google-plus-official\">\n                \n                </span>\n                <span class=\"mls\"> icon-google-plus-official</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fa\">\n                \n                </span>\n                <span class=\"mls\"> icon-fa</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-font-awesome\">\n                \n                </span>\n                <span class=\"mls\"> icon-font-awesome</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-handshake-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-handshake-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-envelope-open\">\n                \n                </span>\n                <span class=\"mls\"> icon-envelope-open</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-envelope-open-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-envelope-open-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-linode\">\n                \n                </span>\n                <span class=\"mls\"> icon-linode</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-address-book\">\n                \n                </span>\n                <span class=\"mls\"> icon-address-book</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2b9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2b9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-address-book-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-address-book-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2ba\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2ba;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-address-card\">\n                \n                </span>\n                <span class=\"mls\"> icon-address-card</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2bb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2bb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vcard\">\n                \n                </span>\n                <span class=\"mls\"> icon-vcard</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2bb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2bb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-address-card-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-address-card-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2bc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2bc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vcard-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-vcard-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2bc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2bc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-user-circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-user-circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2bd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2bd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-user-circle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-user-circle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2be\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2be;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-user-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-user-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-id-badge\">\n                \n                </span>\n                <span class=\"mls\"> icon-id-badge</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-drivers-license\">\n                \n                </span>\n                <span class=\"mls\"> icon-drivers-license</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-id-card\">\n                \n                </span>\n                <span class=\"mls\"> icon-id-card</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-drivers-license-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-drivers-license-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-id-card-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-id-card-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-quora\">\n                \n                </span>\n                <span class=\"mls\"> icon-quora</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-free-code-camp\">\n                \n                </span>\n                <span class=\"mls\"> icon-free-code-camp</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-telegram\">\n                \n                </span>\n                <span class=\"mls\"> icon-telegram</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-4\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-4</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-full\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-full</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-3\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-3</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-three-quarters\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-three-quarters</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-2\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-half\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-half</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-1\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-1</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2ca\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2ca;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-quarter\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-quarter</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2ca\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2ca;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-0\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-0</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2cb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2cb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thermometer-empty\">\n                \n                </span>\n                <span class=\"mls\"> icon-thermometer-empty</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2cb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2cb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shower\">\n                \n                </span>\n                <span class=\"mls\"> icon-shower</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2cc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2cc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bath\">\n                \n                </span>\n                <span class=\"mls\"> icon-bath</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bathtub\">\n                \n                </span>\n                <span class=\"mls\"> icon-bathtub</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-s15\">\n                \n                </span>\n                <span class=\"mls\"> icon-s15</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-podcast\">\n                \n                </span>\n                <span class=\"mls\"> icon-podcast</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2ce\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2ce;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-window-maximize\">\n                \n                </span>\n                <span class=\"mls\"> icon-window-maximize</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-window-minimize\">\n                \n                </span>\n                <span class=\"mls\"> icon-window-minimize</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-window-restore\">\n                \n                </span>\n                <span class=\"mls\"> icon-window-restore</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-times-rectangle\">\n                \n                </span>\n                <span class=\"mls\"> icon-times-rectangle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-window-close\">\n                \n                </span>\n                <span class=\"mls\"> icon-window-close</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-times-rectangle-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-times-rectangle-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-window-close-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-window-close-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bandcamp\">\n                \n                </span>\n                <span class=\"mls\"> icon-bandcamp</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-grav\">\n                \n                </span>\n                <span class=\"mls\"> icon-grav</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-etsy\">\n                \n                </span>\n                <span class=\"mls\"> icon-etsy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-imdb\">\n                \n                </span>\n                <span class=\"mls\"> icon-imdb</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ravelry\">\n                \n                </span>\n                <span class=\"mls\"> icon-ravelry</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-eercast\">\n                \n                </span>\n                <span class=\"mls\"> icon-eercast</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2da\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2da;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-microchip\">\n                \n                </span>\n                <span class=\"mls\"> icon-microchip</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2db\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2db;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-snowflake-o\">\n                \n                </span>\n                <span class=\"mls\"> icon-snowflake-o</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2dc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2dc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-superpowers\">\n                \n                </span>\n                <span class=\"mls\"> icon-superpowers</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wpexplorer\">\n                \n                </span>\n                <span class=\"mls\"> icon-wpexplorer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2de\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2de;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs1\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-meetup\">\n                \n                </span>\n                <span class=\"mls\"> icon-meetup</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"f2e0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xf2e0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"\" class=\"liga unitRight\" />\n            </div>\n        </div>\n    </div>\n    <div class=\"clearfix mhl ptl\">\n        <h1 class=\"mvm mtn fgc1\">Grid Size: 24</h1>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-3d_rotation\">\n                \n                </span>\n                <span class=\"mls\"> icon-3d_rotation</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e84d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe84d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"3d_rotation\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ac_unit\">\n                \n                </span>\n                <span class=\"mls\"> icon-ac_unit</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb3b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb3b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"ac_unit\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-alarm\">\n                \n                </span>\n                <span class=\"mls\"> icon-alarm</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e855\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe855;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"access_alarm, alarm\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-access_alarms\">\n                \n                </span>\n                <span class=\"mls\"> icon-access_alarms</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e191\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe191;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"access_alarms\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-schedule\">\n                \n                </span>\n                <span class=\"mls\"> icon-schedule</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8b5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8b5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"access_time, query_builder, schedule\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-accessibility\">\n                \n                </span>\n                <span class=\"mls\"> icon-accessibility</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e84e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe84e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"accessibility\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-accessible\">\n                \n                </span>\n                <span class=\"mls\"> icon-accessible</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e914\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe914;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"accessible\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-account_balance\">\n                \n                </span>\n                <span class=\"mls\"> icon-account_balance</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e84f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe84f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"account_balance\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-account_balance_wallet\">\n                \n                </span>\n                <span class=\"mls\"> icon-account_balance_wallet</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e850\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe850;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"account_balance_wallet\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-account_box\">\n                \n                </span>\n                <span class=\"mls\"> icon-account_box</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e851\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe851;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"account_box\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-account_circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-account_circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e853\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe853;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"account_circle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-adb\">\n                \n                </span>\n                <span class=\"mls\"> icon-adb</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e60e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe60e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"adb\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-add\">\n                \n                </span>\n                <span class=\"mls\"> icon-add</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e145\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe145;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-add_a_photo\">\n                \n                </span>\n                <span class=\"mls\"> icon-add_a_photo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e439\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe439;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_a_photo\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-alarm_add\">\n                \n                </span>\n                <span class=\"mls\"> icon-alarm_add</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e856\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe856;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_alarm, alarm_add\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-add_alert\">\n                \n                </span>\n                <span class=\"mls\"> icon-add_alert</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e003\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe003;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_alert\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-add_box\">\n                \n                </span>\n                <span class=\"mls\"> icon-add_box</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e146\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe146;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_box\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-add_circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-add_circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e147\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe147;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_circle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-control_point\">\n                \n                </span>\n                <span class=\"mls\"> icon-control_point</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ba\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ba;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_circle_outline, control_point\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-add_location\">\n                \n                </span>\n                <span class=\"mls\"> icon-add_location</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e567\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe567;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_location\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-add_shopping_cart\">\n                \n                </span>\n                <span class=\"mls\"> icon-add_shopping_cart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e854\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe854;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_shopping_cart\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-queue\">\n                \n                </span>\n                <span class=\"mls\"> icon-queue</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e03c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe03c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_to_photos, library_add, queue\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-add_to_queue\">\n                \n                </span>\n                <span class=\"mls\"> icon-add_to_queue</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e05c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe05c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"add_to_queue\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-adjust2\">\n                \n                </span>\n                <span class=\"mls\"> icon-adjust2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e39e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe39e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"adjust\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airline_seat_flat\">\n                \n                </span>\n                <span class=\"mls\"> icon-airline_seat_flat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e630\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe630;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airline_seat_flat\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airline_seat_flat_angled\">\n                \n                </span>\n                <span class=\"mls\"> icon-airline_seat_flat_angled</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e631\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe631;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airline_seat_flat_angled\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airline_seat_individual_suite\">\n                \n                </span>\n                <span class=\"mls\"> icon-airline_seat_individual_suite</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e632\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe632;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airline_seat_individual_suite\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airline_seat_legroom_extra\">\n                \n                </span>\n                <span class=\"mls\"> icon-airline_seat_legroom_extra</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e633\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe633;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airline_seat_legroom_extra\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airline_seat_legroom_normal\">\n                \n                </span>\n                <span class=\"mls\"> icon-airline_seat_legroom_normal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e634\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe634;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airline_seat_legroom_normal\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airline_seat_legroom_reduced\">\n                \n                </span>\n                <span class=\"mls\"> icon-airline_seat_legroom_reduced</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e635\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe635;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airline_seat_legroom_reduced\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airline_seat_recline_extra\">\n                \n                </span>\n                <span class=\"mls\"> icon-airline_seat_recline_extra</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e636\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe636;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airline_seat_recline_extra\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airline_seat_recline_normal\">\n                \n                </span>\n                <span class=\"mls\"> icon-airline_seat_recline_normal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e637\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe637;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airline_seat_recline_normal\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flight\">\n                \n                </span>\n                <span class=\"mls\"> icon-flight</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e539\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe539;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airplanemode_active, flight\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airplanemode_inactive\">\n                \n                </span>\n                <span class=\"mls\"> icon-airplanemode_inactive</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e194\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe194;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airplanemode_inactive\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airplay\">\n                \n                </span>\n                <span class=\"mls\"> icon-airplay</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e055\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe055;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airplay\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-airport_shuttle\">\n                \n                </span>\n                <span class=\"mls\"> icon-airport_shuttle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb3c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb3c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"airport_shuttle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-alarm_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-alarm_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e857\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe857;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"alarm_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-alarm_on\">\n                \n                </span>\n                <span class=\"mls\"> icon-alarm_on</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e858\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe858;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"alarm_on\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-album\">\n                \n                </span>\n                <span class=\"mls\"> icon-album</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e019\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe019;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"album\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-all_inclusive\">\n                \n                </span>\n                <span class=\"mls\"> icon-all_inclusive</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb3d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb3d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"all_inclusive\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-all_out\">\n                \n                </span>\n                <span class=\"mls\"> icon-all_out</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e90b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe90b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"all_out\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-android2\">\n                \n                </span>\n                <span class=\"mls\"> icon-android2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e859\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe859;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"android\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-announcement\">\n                \n                </span>\n                <span class=\"mls\"> icon-announcement</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e85a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe85a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"announcement\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-apps\">\n                \n                </span>\n                <span class=\"mls\"> icon-apps</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"apps\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-archive2\">\n                \n                </span>\n                <span class=\"mls\"> icon-archive2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e149\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe149;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"archive\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow_back\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow_back</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"arrow_back\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow_downward\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow_downward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5db\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5db;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"arrow_downward\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow_drop_down\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow_drop_down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"arrow_drop_down\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow_drop_down_circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow_drop_down_circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"arrow_drop_down_circle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow_drop_up\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow_drop_up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"arrow_drop_up\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow_forward\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow_forward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"arrow_forward\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-arrow_upward\">\n                \n                </span>\n                <span class=\"mls\"> icon-arrow_upward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"arrow_upward\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-art_track\">\n                \n                </span>\n                <span class=\"mls\"> icon-art_track</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e060\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe060;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"art_track\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-aspect_ratio\">\n                \n                </span>\n                <span class=\"mls\"> icon-aspect_ratio</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e85b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe85b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"aspect_ratio\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-poll\">\n                \n                </span>\n                <span class=\"mls\"> icon-poll</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e801\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe801;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assessment, insert_chart, poll\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-assignment\">\n                \n                </span>\n                <span class=\"mls\"> icon-assignment</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e85d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe85d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assignment\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-assignment_ind\">\n                \n                </span>\n                <span class=\"mls\"> icon-assignment_ind</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e85e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe85e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assignment_ind\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-assignment_late\">\n                \n                </span>\n                <span class=\"mls\"> icon-assignment_late</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e85f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe85f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assignment_late\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-assignment_return\">\n                \n                </span>\n                <span class=\"mls\"> icon-assignment_return</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e860\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe860;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assignment_return\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-assignment_returned\">\n                \n                </span>\n                <span class=\"mls\"> icon-assignment_returned</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e861\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe861;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assignment_returned\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-assignment_turned_in\">\n                \n                </span>\n                <span class=\"mls\"> icon-assignment_turned_in</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e862\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe862;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assignment_turned_in\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-assistant\">\n                \n                </span>\n                <span class=\"mls\"> icon-assistant</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e39f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe39f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assistant\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flag2\">\n                \n                </span>\n                <span class=\"mls\"> icon-flag2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e153\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe153;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"assistant_photo, flag\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-attach_file\">\n                \n                </span>\n                <span class=\"mls\"> icon-attach_file</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e226\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe226;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"attach_file\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-attach_money\">\n                \n                </span>\n                <span class=\"mls\"> icon-attach_money</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e227\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe227;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"attach_money\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-attachment\">\n                \n                </span>\n                <span class=\"mls\"> icon-attachment</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2bc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2bc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"attachment\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-audiotrack\">\n                \n                </span>\n                <span class=\"mls\"> icon-audiotrack</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"audiotrack\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-autorenew\">\n                \n                </span>\n                <span class=\"mls\"> icon-autorenew</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e863\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe863;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"autorenew\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-av_timer\">\n                \n                </span>\n                <span class=\"mls\"> icon-av_timer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e01b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe01b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"av_timer\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-backspace\">\n                \n                </span>\n                <span class=\"mls\"> icon-backspace</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e14a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe14a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"backspace\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud_upload\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud_upload</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"backup, cloud_upload\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery_alert\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery_alert</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e19c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe19c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"battery_alert\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery_charging_full\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery_charging_full</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1a3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1a3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"battery_charging_full\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery_std\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery_std</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1a5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1a5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"battery_full, battery_std\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-battery_unknown\">\n                \n                </span>\n                <span class=\"mls\"> icon-battery_unknown</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1a6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1a6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"battery_unknown\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-beach_access\">\n                \n                </span>\n                <span class=\"mls\"> icon-beach_access</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb3e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb3e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"beach_access\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-beenhere\">\n                \n                </span>\n                <span class=\"mls\"> icon-beenhere</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e52d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe52d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"beenhere\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-block\">\n                \n                </span>\n                <span class=\"mls\"> icon-block</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e14b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe14b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"block\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bluetooth2\">\n                \n                </span>\n                <span class=\"mls\"> icon-bluetooth2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1a7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1a7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"bluetooth\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bluetooth_searching\">\n                \n                </span>\n                <span class=\"mls\"> icon-bluetooth_searching</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1aa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1aa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"bluetooth_audio, bluetooth_searching\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bluetooth_connected\">\n                \n                </span>\n                <span class=\"mls\"> icon-bluetooth_connected</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1a8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1a8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"bluetooth_connected\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bluetooth_disabled\">\n                \n                </span>\n                <span class=\"mls\"> icon-bluetooth_disabled</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1a9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1a9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"bluetooth_disabled\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-blur_circular\">\n                \n                </span>\n                <span class=\"mls\"> icon-blur_circular</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"blur_circular\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-blur_linear\">\n                \n                </span>\n                <span class=\"mls\"> icon-blur_linear</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"blur_linear\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-blur_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-blur_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"blur_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-blur_on\">\n                \n                </span>\n                <span class=\"mls\"> icon-blur_on</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"blur_on\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-class\">\n                \n                </span>\n                <span class=\"mls\"> icon-class</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e86e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe86e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"book, class\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-turned_in\">\n                \n                </span>\n                <span class=\"mls\"> icon-turned_in</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"bookmark, turned_in\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-turned_in_not\">\n                \n                </span>\n                <span class=\"mls\"> icon-turned_in_not</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"bookmark_border, turned_in_not\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_all\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_all</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e228\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe228;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_all\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_bottom\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_bottom</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e229\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe229;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_bottom\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_clear\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_clear</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e22a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe22a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_clear\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_color\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_color</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e22b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe22b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_color\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_horizontal\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_horizontal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e22c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe22c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_horizontal\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_inner\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_inner</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e22d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe22d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_inner\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_left\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e22e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe22e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_left\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_outer\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_outer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e22f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe22f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_outer\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_right\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e230\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe230;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_right\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_style\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_style</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e231\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe231;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_style\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_top\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_top</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e232\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe232;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_top\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-border_vertical\">\n                \n                </span>\n                <span class=\"mls\"> icon-border_vertical</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e233\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe233;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"border_vertical\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-branding_watermark\">\n                \n                </span>\n                <span class=\"mls\"> icon-branding_watermark</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e06b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe06b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"branding_watermark\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brightness_1\">\n                \n                </span>\n                <span class=\"mls\"> icon-brightness_1</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brightness_1\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brightness_2\">\n                \n                </span>\n                <span class=\"mls\"> icon-brightness_2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brightness_2\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brightness_3\">\n                \n                </span>\n                <span class=\"mls\"> icon-brightness_3</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brightness_3\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brightness_4\">\n                \n                </span>\n                <span class=\"mls\"> icon-brightness_4</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3a9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3a9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brightness_4\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brightness_low\">\n                \n                </span>\n                <span class=\"mls\"> icon-brightness_low</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1ad\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1ad;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brightness_5, brightness_low\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brightness_medium\">\n                \n                </span>\n                <span class=\"mls\"> icon-brightness_medium</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1ae\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1ae;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brightness_6, brightness_medium\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brightness_high\">\n                \n                </span>\n                <span class=\"mls\"> icon-brightness_high</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1ac\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1ac;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brightness_7, brightness_high\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brightness_auto\">\n                \n                </span>\n                <span class=\"mls\"> icon-brightness_auto</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1ab\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1ab;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brightness_auto\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-broken_image\">\n                \n                </span>\n                <span class=\"mls\"> icon-broken_image</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ad\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ad;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"broken_image\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-brush\">\n                \n                </span>\n                <span class=\"mls\"> icon-brush</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ae\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ae;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"brush\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bubble_chart\">\n                \n                </span>\n                <span class=\"mls\"> icon-bubble_chart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e6dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe6dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"bubble_chart\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-bug_report\">\n                \n                </span>\n                <span class=\"mls\"> icon-bug_report</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e868\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe868;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"bug_report\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-build\">\n                \n                </span>\n                <span class=\"mls\"> icon-build</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e869\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe869;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"build\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-burst_mode\">\n                \n                </span>\n                <span class=\"mls\"> icon-burst_mode</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e43c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe43c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"burst_mode\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-domain\">\n                \n                </span>\n                <span class=\"mls\"> icon-domain</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7ee\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7ee;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"business, domain\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-business_center\">\n                \n                </span>\n                <span class=\"mls\"> icon-business_center</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb3f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb3f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"business_center\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cached\">\n                \n                </span>\n                <span class=\"mls\"> icon-cached</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e86a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe86a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cached\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cake\">\n                \n                </span>\n                <span class=\"mls\"> icon-cake</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7e9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7e9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cake\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone2\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call, local_phone, phone\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-call_end\">\n                \n                </span>\n                <span class=\"mls\"> icon-call_end</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0b1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0b1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call_end\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-call_made\">\n                \n                </span>\n                <span class=\"mls\"> icon-call_made</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0b2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0b2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call_made\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-merge_type\">\n                \n                </span>\n                <span class=\"mls\"> icon-merge_type</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e252\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe252;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call_merge, merge_type\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-call_missed\">\n                \n                </span>\n                <span class=\"mls\"> icon-call_missed</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0b4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0b4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call_missed\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-call_missed_outgoing\">\n                \n                </span>\n                <span class=\"mls\"> icon-call_missed_outgoing</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0e4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0e4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call_missed_outgoing\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-call_received\">\n                \n                </span>\n                <span class=\"mls\"> icon-call_received</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0b5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0b5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call_received\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-call_split\">\n                \n                </span>\n                <span class=\"mls\"> icon-call_split</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0b6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0b6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call_split\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-call_to_action\">\n                \n                </span>\n                <span class=\"mls\"> icon-call_to_action</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e06c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe06c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"call_to_action\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-camera2\">\n                \n                </span>\n                <span class=\"mls\"> icon-camera2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3af\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3af;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"camera\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo_camera\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo_camera</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e412\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe412;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"camera_alt, local_see, photo_camera\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-camera_enhance\">\n                \n                </span>\n                <span class=\"mls\"> icon-camera_enhance</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8fc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8fc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"camera_enhance\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-camera_front\">\n                \n                </span>\n                <span class=\"mls\"> icon-camera_front</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3b1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3b1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"camera_front\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-camera_rear\">\n                \n                </span>\n                <span class=\"mls\"> icon-camera_rear</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3b2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3b2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"camera_rear\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-camera_roll\">\n                \n                </span>\n                <span class=\"mls\"> icon-camera_roll</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3b3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3b3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"camera_roll\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cancel\">\n                \n                </span>\n                <span class=\"mls\"> icon-cancel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cancel\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-redeem\">\n                \n                </span>\n                <span class=\"mls\"> icon-redeem</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8b1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8b1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"card_giftcard, redeem\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-card_membership\">\n                \n                </span>\n                <span class=\"mls\"> icon-card_membership</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"card_membership\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-card_travel\">\n                \n                </span>\n                <span class=\"mls\"> icon-card_travel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"card_travel\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-casino\">\n                \n                </span>\n                <span class=\"mls\"> icon-casino</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb40\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb40;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"casino\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cast\">\n                \n                </span>\n                <span class=\"mls\"> icon-cast</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e307\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe307;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cast\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cast_connected\">\n                \n                </span>\n                <span class=\"mls\"> icon-cast_connected</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e308\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe308;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cast_connected\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-center_focus_strong\">\n                \n                </span>\n                <span class=\"mls\"> icon-center_focus_strong</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3b4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3b4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"center_focus_strong\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-center_focus_weak\">\n                \n                </span>\n                <span class=\"mls\"> icon-center_focus_weak</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3b5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3b5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"center_focus_weak\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-change_history\">\n                \n                </span>\n                <span class=\"mls\"> icon-change_history</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e86b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe86b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"change_history\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chat\">\n                \n                </span>\n                <span class=\"mls\"> icon-chat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0b7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0b7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"chat\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chat_bubble\">\n                \n                </span>\n                <span class=\"mls\"> icon-chat_bubble</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0ca\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0ca;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"chat_bubble\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chat_bubble_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-chat_bubble_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0cb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0cb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"chat_bubble_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check2\">\n                \n                </span>\n                <span class=\"mls\"> icon-check2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5ca\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5ca;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"check\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check_box\">\n                \n                </span>\n                <span class=\"mls\"> icon-check_box</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e834\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe834;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"check_box\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check_box_outline_blank\">\n                \n                </span>\n                <span class=\"mls\"> icon-check_box_outline_blank</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e835\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe835;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"check_box_outline_blank\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-check_circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-check_circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e86c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe86c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"check_circle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-navigate_before\">\n                \n                </span>\n                <span class=\"mls\"> icon-navigate_before</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e408\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe408;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"chevron_left, navigate_before\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-navigate_next\">\n                \n                </span>\n                <span class=\"mls\"> icon-navigate_next</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e409\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe409;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"chevron_right, navigate_next\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-child_care\">\n                \n                </span>\n                <span class=\"mls\"> icon-child_care</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb41\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb41;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"child_care\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-child_friendly\">\n                \n                </span>\n                <span class=\"mls\"> icon-child_friendly</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb42\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb42;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"child_friendly\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-chrome_reader_mode\">\n                \n                </span>\n                <span class=\"mls\"> icon-chrome_reader_mode</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e86d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe86d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"chrome_reader_mode\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-close2\">\n                \n                </span>\n                <span class=\"mls\"> icon-close2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"clear, close\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-clear_all\">\n                \n                </span>\n                <span class=\"mls\"> icon-clear_all</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0b8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0b8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"clear_all\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-closed_caption\">\n                \n                </span>\n                <span class=\"mls\"> icon-closed_caption</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e01c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe01c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"closed_caption\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wb_cloudy\">\n                \n                </span>\n                <span class=\"mls\"> icon-wb_cloudy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e42d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe42d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cloud, wb_cloudy\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud_circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud_circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2be\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2be;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cloud_circle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud_done\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud_done</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2bf\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2bf;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cloud_done\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud_download\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud_download</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2c0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2c0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cloud_download\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2c1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2c1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cloud_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-cloud_queue\">\n                \n                </span>\n                <span class=\"mls\"> icon-cloud_queue</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2c2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2c2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"cloud_queue\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-code2\">\n                \n                </span>\n                <span class=\"mls\"> icon-code2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e86f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe86f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"code\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo_library\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo_library</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e413\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe413;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"collections, photo_library\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-collections_bookmark\">\n                \n                </span>\n                <span class=\"mls\"> icon-collections_bookmark</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e431\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe431;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"collections_bookmark\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-palette\">\n                \n                </span>\n                <span class=\"mls\"> icon-palette</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e40a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe40a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"color_lens, palette\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-colorize\">\n                \n                </span>\n                <span class=\"mls\"> icon-colorize</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3b8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3b8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"colorize\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-comment2\">\n                \n                </span>\n                <span class=\"mls\"> icon-comment2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0b9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0b9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"comment\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-compare\">\n                \n                </span>\n                <span class=\"mls\"> icon-compare</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3b9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3b9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"compare\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-compare_arrows\">\n                \n                </span>\n                <span class=\"mls\"> icon-compare_arrows</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e915\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe915;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"compare_arrows\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-laptop2\">\n                \n                </span>\n                <span class=\"mls\"> icon-laptop2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e31e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe31e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"computer, laptop\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-confirmation_number\">\n                \n                </span>\n                <span class=\"mls\"> icon-confirmation_number</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e638\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe638;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"confirmation_number\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-contact_mail\">\n                \n                </span>\n                <span class=\"mls\"> icon-contact_mail</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"contact_mail\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-contact_phone\">\n                \n                </span>\n                <span class=\"mls\"> icon-contact_phone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0cf\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0cf;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"contact_phone\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-contacts\">\n                \n                </span>\n                <span class=\"mls\"> icon-contacts</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0ba\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0ba;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"contacts\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-content_copy\">\n                \n                </span>\n                <span class=\"mls\"> icon-content_copy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e14d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe14d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"content_copy\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-content_cut\">\n                \n                </span>\n                <span class=\"mls\"> icon-content_cut</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e14e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe14e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"content_cut\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-content_paste\">\n                \n                </span>\n                <span class=\"mls\"> icon-content_paste</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e14f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe14f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"content_paste\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-control_point_duplicate\">\n                \n                </span>\n                <span class=\"mls\"> icon-control_point_duplicate</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3bb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3bb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"control_point_duplicate\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-copyright2\">\n                \n                </span>\n                <span class=\"mls\"> icon-copyright2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e90c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe90c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"copyright\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mode_edit\">\n                \n                </span>\n                <span class=\"mls\"> icon-mode_edit</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e254\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe254;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"create, edit, mode_edit\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-create_new_folder\">\n                \n                </span>\n                <span class=\"mls\"> icon-create_new_folder</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2cc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2cc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"create_new_folder\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-payment\">\n                \n                </span>\n                <span class=\"mls\"> icon-payment</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"credit_card, payment\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop2\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3be\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3be;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_16_9\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_16_9</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3bc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3bc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_16_9\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_3_2\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_3_2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3bd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3bd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_3_2\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_landscape\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_landscape</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_5_4, crop_landscape\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_7_5\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_7_5</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_7_5\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_din\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_din</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_din\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_free\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_free</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_free\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_original\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_original</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_original\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_portrait\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_portrait</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_portrait\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_rotate\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_rotate</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e437\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe437;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_rotate\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-crop_square\">\n                \n                </span>\n                <span class=\"mls\"> icon-crop_square</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"crop_square\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dashboard2\">\n                \n                </span>\n                <span class=\"mls\"> icon-dashboard2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e871\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe871;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"dashboard\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-data_usage\">\n                \n                </span>\n                <span class=\"mls\"> icon-data_usage</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1af\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1af;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"data_usage\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-date_range\">\n                \n                </span>\n                <span class=\"mls\"> icon-date_range</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e916\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe916;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"date_range\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dehaze\">\n                \n                </span>\n                <span class=\"mls\"> icon-dehaze</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"dehaze\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-delete\">\n                \n                </span>\n                <span class=\"mls\"> icon-delete</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e872\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe872;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"delete\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-delete_forever\">\n                \n                </span>\n                <span class=\"mls\"> icon-delete_forever</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e92b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe92b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"delete_forever\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-delete_sweep\">\n                \n                </span>\n                <span class=\"mls\"> icon-delete_sweep</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e16c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe16c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"delete_sweep\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-description\">\n                \n                </span>\n                <span class=\"mls\"> icon-description</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e873\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe873;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"description\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-desktop_mac\">\n                \n                </span>\n                <span class=\"mls\"> icon-desktop_mac</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e30b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe30b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"desktop_mac\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-desktop_windows\">\n                \n                </span>\n                <span class=\"mls\"> icon-desktop_windows</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e30c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe30c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"desktop_windows\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-details\">\n                \n                </span>\n                <span class=\"mls\"> icon-details</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"details\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-developer_board\">\n                \n                </span>\n                <span class=\"mls\"> icon-developer_board</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e30d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe30d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"developer_board\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-developer_mode\">\n                \n                </span>\n                <span class=\"mls\"> icon-developer_mode</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1b0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1b0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"developer_mode\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-device_hub\">\n                \n                </span>\n                <span class=\"mls\"> icon-device_hub</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e335\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe335;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"device_hub\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phonelink\">\n                \n                </span>\n                <span class=\"mls\"> icon-phonelink</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e326\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe326;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"devices, phonelink\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-devices_other\">\n                \n                </span>\n                <span class=\"mls\"> icon-devices_other</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e337\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe337;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"devices_other\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dialer_sip\">\n                \n                </span>\n                <span class=\"mls\"> icon-dialer_sip</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0bb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0bb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"dialer_sip\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dialpad\">\n                \n                </span>\n                <span class=\"mls\"> icon-dialpad</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0bc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0bc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"dialpad\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e52e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe52e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions_bike\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions_bike</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e52f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe52f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions_bike\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions_boat\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions_boat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e532\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe532;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions_boat\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions_bus\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions_bus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e530\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe530;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions_bus\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions_car\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions_car</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e531\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe531;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions_car\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions_railway\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions_railway</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e534\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe534;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions_railway\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions_run\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions_run</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e566\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe566;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions_run\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions_transit\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions_transit</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e535\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe535;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions_subway, directions_transit\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-directions_walk\">\n                \n                </span>\n                <span class=\"mls\"> icon-directions_walk</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e536\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe536;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"directions_walk\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-disc_full\">\n                \n                </span>\n                <span class=\"mls\"> icon-disc_full</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e610\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe610;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"disc_full\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dns\">\n                \n                </span>\n                <span class=\"mls\"> icon-dns</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e875\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe875;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"dns\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-not_interested\">\n                \n                </span>\n                <span class=\"mls\"> icon-not_interested</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e033\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe033;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"do_not_disturb, not_interested\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-do_not_disturb_alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-do_not_disturb_alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e611\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe611;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"do_not_disturb_alt\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-do_not_disturb_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-do_not_disturb_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e643\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe643;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"do_not_disturb_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-remove_circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-remove_circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e15c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe15c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"do_not_disturb_on, remove_circle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dock\">\n                \n                </span>\n                <span class=\"mls\"> icon-dock</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e30e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe30e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"dock\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-done\">\n                \n                </span>\n                <span class=\"mls\"> icon-done</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e876\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe876;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"done\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-done_all\">\n                \n                </span>\n                <span class=\"mls\"> icon-done_all</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e877\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe877;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"done_all\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-donut_large\">\n                \n                </span>\n                <span class=\"mls\"> icon-donut_large</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e917\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe917;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"donut_large\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-donut_small\">\n                \n                </span>\n                <span class=\"mls\"> icon-donut_small</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e918\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe918;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"donut_small\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-drafts\">\n                \n                </span>\n                <span class=\"mls\"> icon-drafts</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e151\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe151;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"drafts\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-drag_handle\">\n                \n                </span>\n                <span class=\"mls\"> icon-drag_handle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e25d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe25d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"drag_handle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-time_to_leave\">\n                \n                </span>\n                <span class=\"mls\"> icon-time_to_leave</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e62c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe62c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"drive_eta, time_to_leave\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-dvr\">\n                \n                </span>\n                <span class=\"mls\"> icon-dvr</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1b2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1b2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"dvr\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-edit_location\">\n                \n                </span>\n                <span class=\"mls\"> icon-edit_location</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e568\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe568;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"edit_location\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-eject2\">\n                \n                </span>\n                <span class=\"mls\"> icon-eject2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8fb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8fb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"eject\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-markunread\">\n                \n                </span>\n                <span class=\"mls\"> icon-markunread</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e159\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe159;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"email, local_post_office, mail, markunread\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-enhanced_encryption\">\n                \n                </span>\n                <span class=\"mls\"> icon-enhanced_encryption</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e63f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe63f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"enhanced_encryption\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-equalizer\">\n                \n                </span>\n                <span class=\"mls\"> icon-equalizer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e01d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe01d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"equalizer\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-error\">\n                \n                </span>\n                <span class=\"mls\"> icon-error</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e000\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe000;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"error\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-error_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-error_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e001\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe001;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"error_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-euro_symbol\">\n                \n                </span>\n                <span class=\"mls\"> icon-euro_symbol</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e926\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe926;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"euro_symbol\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ev_station\">\n                \n                </span>\n                <span class=\"mls\"> icon-ev_station</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e56d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe56d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"ev_station\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-insert_invitation\">\n                \n                </span>\n                <span class=\"mls\"> icon-insert_invitation</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e24f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe24f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"event, insert_invitation\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-event_available\">\n                \n                </span>\n                <span class=\"mls\"> icon-event_available</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e614\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe614;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"event_available\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-event_busy\">\n                \n                </span>\n                <span class=\"mls\"> icon-event_busy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e615\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe615;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"event_busy\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-event_note\">\n                \n                </span>\n                <span class=\"mls\"> icon-event_note</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e616\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe616;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"event_note\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-event_seat\">\n                \n                </span>\n                <span class=\"mls\"> icon-event_seat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e903\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe903;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"event_seat\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exit_to_app\">\n                \n                </span>\n                <span class=\"mls\"> icon-exit_to_app</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e879\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe879;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"exit_to_app\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-expand_less\">\n                \n                </span>\n                <span class=\"mls\"> icon-expand_less</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5ce\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5ce;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"expand_less\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-expand_more\">\n                \n                </span>\n                <span class=\"mls\"> icon-expand_more</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5cf\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5cf;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"expand_more\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-explicit\">\n                \n                </span>\n                <span class=\"mls\"> icon-explicit</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e01e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe01e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"explicit\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-explore\">\n                \n                </span>\n                <span class=\"mls\"> icon-explore</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e87a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe87a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"explore\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exposure\">\n                \n                </span>\n                <span class=\"mls\"> icon-exposure</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ca\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ca;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"exposure\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exposure_neg_1\">\n                \n                </span>\n                <span class=\"mls\"> icon-exposure_neg_1</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3cb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3cb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"exposure_neg_1\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exposure_neg_2\">\n                \n                </span>\n                <span class=\"mls\"> icon-exposure_neg_2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3cc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3cc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"exposure_neg_2\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exposure_plus_1\">\n                \n                </span>\n                <span class=\"mls\"> icon-exposure_plus_1</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"exposure_plus_1\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exposure_plus_2\">\n                \n                </span>\n                <span class=\"mls\"> icon-exposure_plus_2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ce\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ce;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"exposure_plus_2\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-exposure_zero\">\n                \n                </span>\n                <span class=\"mls\"> icon-exposure_zero</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3cf\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3cf;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"exposure_zero\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-extension\">\n                \n                </span>\n                <span class=\"mls\"> icon-extension</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e87b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe87b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"extension\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-face\">\n                \n                </span>\n                <span class=\"mls\"> icon-face</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e87c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe87c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"face\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fast_forward\">\n                \n                </span>\n                <span class=\"mls\"> icon-fast_forward</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e01f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe01f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fast_forward\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fast_rewind\">\n                \n                </span>\n                <span class=\"mls\"> icon-fast_rewind</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e020\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe020;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fast_rewind\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-favorite\">\n                \n                </span>\n                <span class=\"mls\"> icon-favorite</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e87d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe87d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"favorite\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-favorite_border\">\n                \n                </span>\n                <span class=\"mls\"> icon-favorite_border</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e87e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe87e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"favorite_border\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-featured_play_list\">\n                \n                </span>\n                <span class=\"mls\"> icon-featured_play_list</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e06d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe06d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"featured_play_list\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-featured_video\">\n                \n                </span>\n                <span class=\"mls\"> icon-featured_video</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e06e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe06e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"featured_video\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sms_failed\">\n                \n                </span>\n                <span class=\"mls\"> icon-sms_failed</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e626\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe626;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"feedback, sms_failed\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fiber_dvr\">\n                \n                </span>\n                <span class=\"mls\"> icon-fiber_dvr</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e05d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe05d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fiber_dvr\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fiber_manual_record\">\n                \n                </span>\n                <span class=\"mls\"> icon-fiber_manual_record</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e061\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe061;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fiber_manual_record\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fiber_new\">\n                \n                </span>\n                <span class=\"mls\"> icon-fiber_new</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e05e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe05e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fiber_new\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fiber_pin\">\n                \n                </span>\n                <span class=\"mls\"> icon-fiber_pin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e06a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe06a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fiber_pin\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fiber_smart_record\">\n                \n                </span>\n                <span class=\"mls\"> icon-fiber_smart_record</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e062\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe062;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fiber_smart_record\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-get_app\">\n                \n                </span>\n                <span class=\"mls\"> icon-get_app</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e884\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe884;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"file_download, get_app\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-file_upload\">\n                \n                </span>\n                <span class=\"mls\"> icon-file_upload</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"file_upload\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter2\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_1\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_1</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_1\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_2\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_2\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_3\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_3</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_3\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_4\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_4</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_4\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_5\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_5</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_5\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_6\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_6</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_6\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_7\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_7</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_7\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_8\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_8</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_8\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_9\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_9</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_9\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_9_plus\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_9_plus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3da\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3da;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_9_plus\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_b_and_w\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_b_and_w</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3db\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3db;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_b_and_w\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_center_focus\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_center_focus</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3dc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3dc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_center_focus\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_drama\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_drama</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_drama\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_frames\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_frames</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3de\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3de;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_frames\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-terrain\">\n                \n                </span>\n                <span class=\"mls\"> icon-terrain</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e564\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe564;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_hdr, landscape, terrain\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_list\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_list</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e152\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe152;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_list\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_none\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_none</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_none\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_tilt_shift\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_tilt_shift</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_tilt_shift\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-filter_vintage\">\n                \n                </span>\n                <span class=\"mls\"> icon-filter_vintage</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"filter_vintage\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-find_in_page\">\n                \n                </span>\n                <span class=\"mls\"> icon-find_in_page</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e880\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe880;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"find_in_page\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-find_replace\">\n                \n                </span>\n                <span class=\"mls\"> icon-find_replace</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e881\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe881;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"find_replace\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fingerprint\">\n                \n                </span>\n                <span class=\"mls\"> icon-fingerprint</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e90d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe90d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fingerprint\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-first_page\">\n                \n                </span>\n                <span class=\"mls\"> icon-first_page</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5dc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5dc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"first_page\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fitness_center\">\n                \n                </span>\n                <span class=\"mls\"> icon-fitness_center</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb43\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb43;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fitness_center\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flare\">\n                \n                </span>\n                <span class=\"mls\"> icon-flare</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flare\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flash_auto\">\n                \n                </span>\n                <span class=\"mls\"> icon-flash_auto</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flash_auto\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flash_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-flash_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flash_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flash_on\">\n                \n                </span>\n                <span class=\"mls\"> icon-flash_on</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flash_on\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flight_land\">\n                \n                </span>\n                <span class=\"mls\"> icon-flight_land</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e904\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe904;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flight_land\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flight_takeoff\">\n                \n                </span>\n                <span class=\"mls\"> icon-flight_takeoff</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e905\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe905;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flight_takeoff\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flip\">\n                \n                </span>\n                <span class=\"mls\"> icon-flip</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flip\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flip_to_back\">\n                \n                </span>\n                <span class=\"mls\"> icon-flip_to_back</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e882\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe882;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flip_to_back\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-flip_to_front\">\n                \n                </span>\n                <span class=\"mls\"> icon-flip_to_front</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e883\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe883;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"flip_to_front\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-folder2\">\n                \n                </span>\n                <span class=\"mls\"> icon-folder2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"folder\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-folder_open\">\n                \n                </span>\n                <span class=\"mls\"> icon-folder_open</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"folder_open\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-folder_shared\">\n                \n                </span>\n                <span class=\"mls\"> icon-folder_shared</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e2c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe2c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"folder_shared\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-folder_special\">\n                \n                </span>\n                <span class=\"mls\"> icon-folder_special</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e617\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe617;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"folder_special\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-font_download\">\n                \n                </span>\n                <span class=\"mls\"> icon-font_download</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e167\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe167;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"font_download\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_align_center\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_align_center</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e234\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe234;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_align_center\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_align_justify\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_align_justify</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e235\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe235;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_align_justify\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_align_left\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_align_left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e236\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe236;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_align_left\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_align_right\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_align_right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e237\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe237;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_align_right\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_bold\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_bold</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e238\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe238;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_bold\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_clear\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_clear</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e239\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe239;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_clear\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_color_fill\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_color_fill</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e23a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe23a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_color_fill\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_color_reset\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_color_reset</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e23b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe23b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_color_reset\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_color_text\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_color_text</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e23c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe23c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_color_text\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_indent_decrease\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_indent_decrease</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e23d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe23d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_indent_decrease\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_indent_increase\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_indent_increase</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e23e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe23e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_indent_increase\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_italic\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_italic</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e23f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe23f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_italic\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_line_spacing\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_line_spacing</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e240\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe240;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_line_spacing\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_list_bulleted\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_list_bulleted</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e241\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe241;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_list_bulleted\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_list_numbered\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_list_numbered</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e242\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe242;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_list_numbered\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_paint\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_paint</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e243\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe243;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_paint\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_quote\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_quote</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e244\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe244;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_quote\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_shapes\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_shapes</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e25e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe25e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_shapes\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_size\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_size</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e245\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe245;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_size\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_strikethrough\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_strikethrough</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e246\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe246;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_strikethrough\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_textdirection_l_to_r\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_textdirection_l_to_r</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e247\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe247;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_textdirection_l_to_r\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_textdirection_r_to_l\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_textdirection_r_to_l</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e248\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe248;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_textdirection_r_to_l\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-format_underlined\">\n                \n                </span>\n                <span class=\"mls\"> icon-format_underlined</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e249\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe249;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"format_underlined\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-question_answer\">\n                \n                </span>\n                <span class=\"mls\"> icon-question_answer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8af\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8af;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"forum, question_answer\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-forward2\">\n                \n                </span>\n                <span class=\"mls\"> icon-forward2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e154\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe154;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"forward\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-forward_10\">\n                \n                </span>\n                <span class=\"mls\"> icon-forward_10</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e056\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe056;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"forward_10\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-forward_30\">\n                \n                </span>\n                <span class=\"mls\"> icon-forward_30</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e057\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe057;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"forward_30\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-forward_5\">\n                \n                </span>\n                <span class=\"mls\"> icon-forward_5</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e058\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe058;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"forward_5\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-free_breakfast\">\n                \n                </span>\n                <span class=\"mls\"> icon-free_breakfast</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb44\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb44;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"free_breakfast\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fullscreen\">\n                \n                </span>\n                <span class=\"mls\"> icon-fullscreen</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fullscreen\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-fullscreen_exit\">\n                \n                </span>\n                <span class=\"mls\"> icon-fullscreen_exit</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"fullscreen_exit\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-functions\">\n                \n                </span>\n                <span class=\"mls\"> icon-functions</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e24a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe24a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"functions\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-g_translate\">\n                \n                </span>\n                <span class=\"mls\"> icon-g_translate</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e927\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe927;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"g_translate\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-games\">\n                \n                </span>\n                <span class=\"mls\"> icon-games</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e021\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe021;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"gamepad, games\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gavel2\">\n                \n                </span>\n                <span class=\"mls\"> icon-gavel2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e90e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe90e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"gavel\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gesture\">\n                \n                </span>\n                <span class=\"mls\"> icon-gesture</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e155\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe155;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"gesture\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gif\">\n                \n                </span>\n                <span class=\"mls\"> icon-gif</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e908\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe908;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"gif\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-goat\">\n                \n                </span>\n                <span class=\"mls\"> icon-goat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e900\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe900;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"goat\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-golf_course\">\n                \n                </span>\n                <span class=\"mls\"> icon-golf_course</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb45\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb45;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"golf_course\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-my_location\">\n                \n                </span>\n                <span class=\"mls\"> icon-my_location</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e55c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe55c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"gps_fixed, my_location\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-location_searching\">\n                \n                </span>\n                <span class=\"mls\"> icon-location_searching</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1b7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1b7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"gps_not_fixed, location_searching\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-location_disabled\">\n                \n                </span>\n                <span class=\"mls\"> icon-location_disabled</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1b6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1b6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"gps_off, location_disabled\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star2\">\n                \n                </span>\n                <span class=\"mls\"> icon-star2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e838\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe838;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"grade, star\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-gradient\">\n                \n                </span>\n                <span class=\"mls\"> icon-gradient</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3e9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3e9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"gradient\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-grain\">\n                \n                </span>\n                <span class=\"mls\"> icon-grain</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ea\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ea;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"grain\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-graphic_eq\">\n                \n                </span>\n                <span class=\"mls\"> icon-graphic_eq</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1b8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1b8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"graphic_eq\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-grid_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-grid_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3eb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3eb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"grid_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-grid_on\">\n                \n                </span>\n                <span class=\"mls\"> icon-grid_on</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ec\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ec;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"grid_on\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-people\">\n                \n                </span>\n                <span class=\"mls\"> icon-people</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7fb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7fb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"group, people\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-group_add\">\n                \n                </span>\n                <span class=\"mls\"> icon-group_add</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"group_add\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-group_work\">\n                \n                </span>\n                <span class=\"mls\"> icon-group_work</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e886\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe886;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"group_work\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hd\">\n                \n                </span>\n                <span class=\"mls\"> icon-hd</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e052\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe052;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hd\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hdr_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-hdr_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ed\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ed;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hdr_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hdr_on\">\n                \n                </span>\n                <span class=\"mls\"> icon-hdr_on</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ee\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ee;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hdr_on\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hdr_strong\">\n                \n                </span>\n                <span class=\"mls\"> icon-hdr_strong</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3f1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3f1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hdr_strong\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hdr_weak\">\n                \n                </span>\n                <span class=\"mls\"> icon-hdr_weak</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3f2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3f2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hdr_weak\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-headset\">\n                \n                </span>\n                <span class=\"mls\"> icon-headset</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e310\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe310;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"headset\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-headset_mic\">\n                \n                </span>\n                <span class=\"mls\"> icon-headset_mic</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e311\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe311;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"headset_mic\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-healing\">\n                \n                </span>\n                <span class=\"mls\"> icon-healing</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3f3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3f3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"healing\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hearing\">\n                \n                </span>\n                <span class=\"mls\"> icon-hearing</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e023\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe023;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hearing\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-help\">\n                \n                </span>\n                <span class=\"mls\"> icon-help</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e887\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe887;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"help\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-help_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-help_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8fd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8fd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"help_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-high_quality\">\n                \n                </span>\n                <span class=\"mls\"> icon-high_quality</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e024\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe024;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"high_quality\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-highlight\">\n                \n                </span>\n                <span class=\"mls\"> icon-highlight</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e25f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe25f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"highlight\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-highlight_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-highlight_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e888\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe888;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"highlight_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-restore\">\n                \n                </span>\n                <span class=\"mls\"> icon-restore</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8b3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8b3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"history, restore\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-home2\">\n                \n                </span>\n                <span class=\"mls\"> icon-home2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e88a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe88a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"home\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hot_tub\">\n                \n                </span>\n                <span class=\"mls\"> icon-hot_tub</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb46\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb46;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hot_tub\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_hotel\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_hotel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e549\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe549;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hotel, local_hotel\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass_empty\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass_empty</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e88b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe88b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hourglass_empty\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-hourglass_full\">\n                \n                </span>\n                <span class=\"mls\"> icon-hourglass_full</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e88c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe88c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"hourglass_full\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-http\">\n                \n                </span>\n                <span class=\"mls\"> icon-http</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e902\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe902;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"http\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lock2\">\n                \n                </span>\n                <span class=\"mls\"> icon-lock2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e897\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe897;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"https, lock\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo2\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e410\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe410;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"image, insert_photo, photo\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-image_aspect_ratio\">\n                \n                </span>\n                <span class=\"mls\"> icon-image_aspect_ratio</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3f5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3f5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"image_aspect_ratio\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-import_contacts\">\n                \n                </span>\n                <span class=\"mls\"> icon-import_contacts</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0e0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0e0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"import_contacts\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-import_export\">\n                \n                </span>\n                <span class=\"mls\"> icon-import_export</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"import_export\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-important_devices\">\n                \n                </span>\n                <span class=\"mls\"> icon-important_devices</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e912\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe912;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"important_devices\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-inbox2\">\n                \n                </span>\n                <span class=\"mls\"> icon-inbox2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e156\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe156;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"inbox\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-indeterminate_check_box\">\n                \n                </span>\n                <span class=\"mls\"> icon-indeterminate_check_box</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e909\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe909;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"indeterminate_check_box\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-info2\">\n                \n                </span>\n                <span class=\"mls\"> icon-info2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e88e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe88e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"info\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-info_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-info_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e88f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe88f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"info_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-input\">\n                \n                </span>\n                <span class=\"mls\"> icon-input</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e890\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe890;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"input\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-insert_comment\">\n                \n                </span>\n                <span class=\"mls\"> icon-insert_comment</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e24c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe24c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"insert_comment\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-insert_drive_file\">\n                \n                </span>\n                <span class=\"mls\"> icon-insert_drive_file</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e24d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe24d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"insert_drive_file\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tag_faces\">\n                \n                </span>\n                <span class=\"mls\"> icon-tag_faces</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e420\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe420;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"insert_emoticon, mood, tag_faces\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-link2\">\n                \n                </span>\n                <span class=\"mls\"> icon-link2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e157\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe157;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"insert_link, link\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-invert_colors\">\n                \n                </span>\n                <span class=\"mls\"> icon-invert_colors</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e891\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe891;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"invert_colors\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-invert_colors_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-invert_colors_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"invert_colors_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-iso\">\n                \n                </span>\n                <span class=\"mls\"> icon-iso</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3f6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3f6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"iso\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e312\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe312;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_arrow_down\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_arrow_down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e313\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe313;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_arrow_down\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_arrow_left\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_arrow_left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e314\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe314;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_arrow_left\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_arrow_right\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_arrow_right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e315\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe315;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_arrow_right\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_arrow_up\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_arrow_up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e316\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe316;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_arrow_up\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_backspace\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_backspace</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e317\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe317;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_backspace\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_capslock\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_capslock</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e318\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe318;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_capslock\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_hide\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_hide</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e31a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe31a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_hide\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_return\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_return</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e31b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe31b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_return\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_tab\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_tab</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e31c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe31c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_tab\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-keyboard_voice\">\n                \n                </span>\n                <span class=\"mls\"> icon-keyboard_voice</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e31d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe31d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"keyboard_voice\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-kitchen\">\n                \n                </span>\n                <span class=\"mls\"> icon-kitchen</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb47\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb47;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"kitchen\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-label\">\n                \n                </span>\n                <span class=\"mls\"> icon-label</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e892\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe892;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"label\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-label_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-label_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e893\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe893;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"label_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-language2\">\n                \n                </span>\n                <span class=\"mls\"> icon-language2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e894\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe894;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"language\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-laptop_chromebook\">\n                \n                </span>\n                <span class=\"mls\"> icon-laptop_chromebook</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e31f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe31f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"laptop_chromebook\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-laptop_mac\">\n                \n                </span>\n                <span class=\"mls\"> icon-laptop_mac</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e320\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe320;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"laptop_mac\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-laptop_windows\">\n                \n                </span>\n                <span class=\"mls\"> icon-laptop_windows</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e321\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe321;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"laptop_windows\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-last_page\">\n                \n                </span>\n                <span class=\"mls\"> icon-last_page</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"last_page\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-open_in_new\">\n                \n                </span>\n                <span class=\"mls\"> icon-open_in_new</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e89e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe89e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"launch, open_in_new\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-layers\">\n                \n                </span>\n                <span class=\"mls\"> icon-layers</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e53b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe53b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"layers\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-layers_clear\">\n                \n                </span>\n                <span class=\"mls\"> icon-layers_clear</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e53c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe53c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"layers_clear\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-leak_add\">\n                \n                </span>\n                <span class=\"mls\"> icon-leak_add</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3f8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3f8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"leak_add\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-leak_remove\">\n                \n                </span>\n                <span class=\"mls\"> icon-leak_remove</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3f9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3f9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"leak_remove\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lens\">\n                \n                </span>\n                <span class=\"mls\"> icon-lens</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3fa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3fa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"lens\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-library_books\">\n                \n                </span>\n                <span class=\"mls\"> icon-library_books</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e02f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe02f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"library_books\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-library_music\">\n                \n                </span>\n                <span class=\"mls\"> icon-library_music</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e030\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe030;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"library_music\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lightbulb_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-lightbulb_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e90f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe90f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"lightbulb_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-line_style\">\n                \n                </span>\n                <span class=\"mls\"> icon-line_style</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e919\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe919;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"line_style\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-line_weight\">\n                \n                </span>\n                <span class=\"mls\"> icon-line_weight</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e91a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe91a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"line_weight\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-linear_scale\">\n                \n                </span>\n                <span class=\"mls\"> icon-linear_scale</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e260\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe260;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"linear_scale\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-linked_camera\">\n                \n                </span>\n                <span class=\"mls\"> icon-linked_camera</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e438\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe438;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"linked_camera\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-list2\">\n                \n                </span>\n                <span class=\"mls\"> icon-list2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e896\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe896;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"list\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-live_help\">\n                \n                </span>\n                <span class=\"mls\"> icon-live_help</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"live_help\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-live_tv\">\n                \n                </span>\n                <span class=\"mls\"> icon-live_tv</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e639\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe639;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"live_tv\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_play\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_play</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e553\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe553;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_activity, local_play\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_airport\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_airport</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e53d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe53d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_airport\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_atm\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_atm</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e53e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe53e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_atm\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_bar\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_bar</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e540\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe540;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_bar\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_cafe\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_cafe</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e541\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe541;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_cafe\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_car_wash\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_car_wash</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e542\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe542;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_car_wash\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_convenience_store\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_convenience_store</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e543\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe543;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_convenience_store\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-restaurant_menu\">\n                \n                </span>\n                <span class=\"mls\"> icon-restaurant_menu</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e561\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe561;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_dining, restaurant_menu\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_drink\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_drink</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e544\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe544;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_drink\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_florist\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_florist</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e545\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe545;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_florist\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_gas_station\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_gas_station</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e546\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe546;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_gas_station\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shopping_cart\">\n                \n                </span>\n                <span class=\"mls\"> icon-shopping_cart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8cc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8cc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_grocery_store, shopping_cart\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_hospital\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_hospital</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e548\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe548;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_hospital\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_laundry_service\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_laundry_service</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e54a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe54a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_laundry_service\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_library\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_library</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e54b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe54b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_library\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_mall\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_mall</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e54c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe54c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_mall\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-theaters\">\n                \n                </span>\n                <span class=\"mls\"> icon-theaters</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8da\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8da;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_movies, theaters\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_offer\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_offer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e54e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe54e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_offer\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_parking\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_parking</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e54f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe54f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_parking\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_pharmacy\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_pharmacy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e550\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe550;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_pharmacy\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_pizza\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_pizza</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e552\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe552;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_pizza\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-print2\">\n                \n                </span>\n                <span class=\"mls\"> icon-print2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ad\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ad;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_printshop, print\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_shipping\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_shipping</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e558\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe558;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_shipping\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-local_taxi\">\n                \n                </span>\n                <span class=\"mls\"> icon-local_taxi</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e559\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe559;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"local_taxi\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-location_city\">\n                \n                </span>\n                <span class=\"mls\"> icon-location_city</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"location_city\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-location_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-location_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"location_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-room\">\n                \n                </span>\n                <span class=\"mls\"> icon-room</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8b4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8b4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"location_on, place, room\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lock_open\">\n                \n                </span>\n                <span class=\"mls\"> icon-lock_open</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e898\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe898;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"lock_open\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-lock_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-lock_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e899\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe899;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"lock_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-looks\">\n                \n                </span>\n                <span class=\"mls\"> icon-looks</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3fc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3fc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"looks\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-looks_3\">\n                \n                </span>\n                <span class=\"mls\"> icon-looks_3</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3fb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3fb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"looks_3\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-looks_4\">\n                \n                </span>\n                <span class=\"mls\"> icon-looks_4</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3fd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3fd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"looks_4\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-looks_5\">\n                \n                </span>\n                <span class=\"mls\"> icon-looks_5</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3fe\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3fe;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"looks_5\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-looks_6\">\n                \n                </span>\n                <span class=\"mls\"> icon-looks_6</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e3ff\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe3ff;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"looks_6\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-looks_one\">\n                \n                </span>\n                <span class=\"mls\"> icon-looks_one</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e400\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe400;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"looks_one\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-looks_two\">\n                \n                </span>\n                <span class=\"mls\"> icon-looks_two</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e401\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe401;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"looks_two\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sync\">\n                \n                </span>\n                <span class=\"mls\"> icon-sync</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e627\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe627;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"loop, sync\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-loupe\">\n                \n                </span>\n                <span class=\"mls\"> icon-loupe</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e402\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe402;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"loupe\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-low_priority\">\n                \n                </span>\n                <span class=\"mls\"> icon-low_priority</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e16d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe16d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"low_priority\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-loyalty\">\n                \n                </span>\n                <span class=\"mls\"> icon-loyalty</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e89a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe89a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"loyalty\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mail_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-mail_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0e1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0e1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"mail_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-map2\">\n                \n                </span>\n                <span class=\"mls\"> icon-map2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e55b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe55b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"map\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-markunread_mailbox\">\n                \n                </span>\n                <span class=\"mls\"> icon-markunread_mailbox</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e89b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe89b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"markunread_mailbox\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-memory\">\n                \n                </span>\n                <span class=\"mls\"> icon-memory</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e322\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe322;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"memory\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-menu\">\n                \n                </span>\n                <span class=\"mls\"> icon-menu</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"menu\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-message\">\n                \n                </span>\n                <span class=\"mls\"> icon-message</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"message\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mic\">\n                \n                </span>\n                <span class=\"mls\"> icon-mic</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e029\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe029;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"mic\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mic_none\">\n                \n                </span>\n                <span class=\"mls\"> icon-mic_none</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e02a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe02a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"mic_none\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mic_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-mic_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e02b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe02b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"mic_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mms\">\n                \n                </span>\n                <span class=\"mls\"> icon-mms</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e618\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe618;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"mms\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mode_comment\">\n                \n                </span>\n                <span class=\"mls\"> icon-mode_comment</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e253\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe253;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"mode_comment\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-monetization_on\">\n                \n                </span>\n                <span class=\"mls\"> icon-monetization_on</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e263\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe263;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"monetization_on\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-money_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-money_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e25c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe25c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"money_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-monochrome_photos\">\n                \n                </span>\n                <span class=\"mls\"> icon-monochrome_photos</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e403\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe403;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"monochrome_photos\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mood_bad\">\n                \n                </span>\n                <span class=\"mls\"> icon-mood_bad</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"mood_bad\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-more\">\n                \n                </span>\n                <span class=\"mls\"> icon-more</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e619\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe619;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"more\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-more_horiz\">\n                \n                </span>\n                <span class=\"mls\"> icon-more_horiz</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"more_horiz\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-more_vert\">\n                \n                </span>\n                <span class=\"mls\"> icon-more_vert</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"more_vert\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-motorcycle2\">\n                \n                </span>\n                <span class=\"mls\"> icon-motorcycle2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e91b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe91b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"motorcycle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-mouse\">\n                \n                </span>\n                <span class=\"mls\"> icon-mouse</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e323\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe323;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"mouse\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-move_to_inbox\">\n                \n                </span>\n                <span class=\"mls\"> icon-move_to_inbox</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e168\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe168;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"move_to_inbox\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-movie_creation\">\n                \n                </span>\n                <span class=\"mls\"> icon-movie_creation</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e404\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe404;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"movie, movie_creation\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-movie_filter\">\n                \n                </span>\n                <span class=\"mls\"> icon-movie_filter</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e43a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe43a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"movie_filter\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-multiline_chart\">\n                \n                </span>\n                <span class=\"mls\"> icon-multiline_chart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e6df\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe6df;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"multiline_chart\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-music_note\">\n                \n                </span>\n                <span class=\"mls\"> icon-music_note</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e405\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe405;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"music_note\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-music_video\">\n                \n                </span>\n                <span class=\"mls\"> icon-music_video</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e063\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe063;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"music_video\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-nature\">\n                \n                </span>\n                <span class=\"mls\"> icon-nature</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e406\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe406;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"nature\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-nature_people\">\n                \n                </span>\n                <span class=\"mls\"> icon-nature_people</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e407\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe407;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"nature_people\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-navigation\">\n                \n                </span>\n                <span class=\"mls\"> icon-navigation</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e55d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe55d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"navigation\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-near_me\">\n                \n                </span>\n                <span class=\"mls\"> icon-near_me</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e569\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe569;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"near_me\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-network_cell\">\n                \n                </span>\n                <span class=\"mls\"> icon-network_cell</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1b9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1b9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"network_cell\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-network_check\">\n                \n                </span>\n                <span class=\"mls\"> icon-network_check</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e640\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe640;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"network_check\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-network_locked\">\n                \n                </span>\n                <span class=\"mls\"> icon-network_locked</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e61a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe61a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"network_locked\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-network_wifi\">\n                \n                </span>\n                <span class=\"mls\"> icon-network_wifi</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1ba\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1ba;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"network_wifi\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-new_releases\">\n                \n                </span>\n                <span class=\"mls\"> icon-new_releases</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e031\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe031;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"new_releases\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-next_week\">\n                \n                </span>\n                <span class=\"mls\"> icon-next_week</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e16a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe16a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"next_week\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-nfc\">\n                \n                </span>\n                <span class=\"mls\"> icon-nfc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1bb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1bb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"nfc\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-no_encryption\">\n                \n                </span>\n                <span class=\"mls\"> icon-no_encryption</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e641\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe641;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"no_encryption\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal_cellular_no_sim\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal_cellular_no_sim</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1ce\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1ce;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"no_sim, signal_cellular_no_sim\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-note\">\n                \n                </span>\n                <span class=\"mls\"> icon-note</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e06f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe06f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"note\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-note_add\">\n                \n                </span>\n                <span class=\"mls\"> icon-note_add</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e89c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe89c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"note_add\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-notifications\">\n                \n                </span>\n                <span class=\"mls\"> icon-notifications</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"notifications\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-notifications_active\">\n                \n                </span>\n                <span class=\"mls\"> icon-notifications_active</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"notifications_active\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-notifications_none\">\n                \n                </span>\n                <span class=\"mls\"> icon-notifications_none</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"notifications_none\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-notifications_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-notifications_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"notifications_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-notifications_paused\">\n                \n                </span>\n                <span class=\"mls\"> icon-notifications_paused</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"notifications_paused\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-offline_pin\">\n                \n                </span>\n                <span class=\"mls\"> icon-offline_pin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e90a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe90a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"offline_pin\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ondemand_video\">\n                \n                </span>\n                <span class=\"mls\"> icon-ondemand_video</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e63a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe63a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"ondemand_video\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-opacity\">\n                \n                </span>\n                <span class=\"mls\"> icon-opacity</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e91c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe91c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"opacity\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-open_in_browser\">\n                \n                </span>\n                <span class=\"mls\"> icon-open_in_browser</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e89d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe89d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"open_in_browser\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-open_with\">\n                \n                </span>\n                <span class=\"mls\"> icon-open_with</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e89f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe89f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"open_with\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pages\">\n                \n                </span>\n                <span class=\"mls\"> icon-pages</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7f9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7f9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pages\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pageview\">\n                \n                </span>\n                <span class=\"mls\"> icon-pageview</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pageview\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pan_tool\">\n                \n                </span>\n                <span class=\"mls\"> icon-pan_tool</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e925\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe925;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pan_tool\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-panorama\">\n                \n                </span>\n                <span class=\"mls\"> icon-panorama</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e40b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe40b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"panorama\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-radio_button_unchecked\">\n                \n                </span>\n                <span class=\"mls\"> icon-radio_button_unchecked</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e836\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe836;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"panorama_fish_eye, radio_button_unchecked\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-panorama_horizontal\">\n                \n                </span>\n                <span class=\"mls\"> icon-panorama_horizontal</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e40d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe40d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"panorama_horizontal\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-panorama_vertical\">\n                \n                </span>\n                <span class=\"mls\"> icon-panorama_vertical</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e40e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe40e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"panorama_vertical\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-panorama_wide_angle\">\n                \n                </span>\n                <span class=\"mls\"> icon-panorama_wide_angle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e40f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe40f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"panorama_wide_angle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-party_mode\">\n                \n                </span>\n                <span class=\"mls\"> icon-party_mode</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7fa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7fa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"party_mode\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pause2\">\n                \n                </span>\n                <span class=\"mls\"> icon-pause2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e034\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe034;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pause\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pause_circle_filled\">\n                \n                </span>\n                <span class=\"mls\"> icon-pause_circle_filled</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e035\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe035;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pause_circle_filled\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pause_circle_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-pause_circle_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e036\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe036;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pause_circle_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-people_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-people_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7fc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7fc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"people_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-perm_camera_mic\">\n                \n                </span>\n                <span class=\"mls\"> icon-perm_camera_mic</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"perm_camera_mic\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-perm_contact_calendar\">\n                \n                </span>\n                <span class=\"mls\"> icon-perm_contact_calendar</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"perm_contact_calendar\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-perm_data_setting\">\n                \n                </span>\n                <span class=\"mls\"> icon-perm_data_setting</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"perm_data_setting\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-perm_device_information\">\n                \n                </span>\n                <span class=\"mls\"> icon-perm_device_information</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"perm_device_information\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-person_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-person_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7ff\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7ff;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"perm_identity, person_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-perm_media\">\n                \n                </span>\n                <span class=\"mls\"> icon-perm_media</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"perm_media\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-perm_phone_msg\">\n                \n                </span>\n                <span class=\"mls\"> icon-perm_phone_msg</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"perm_phone_msg\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-perm_scan_wifi\">\n                \n                </span>\n                <span class=\"mls\"> icon-perm_scan_wifi</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8a9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8a9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"perm_scan_wifi\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-person\">\n                \n                </span>\n                <span class=\"mls\"> icon-person</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7fd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7fd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"person\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-person_add\">\n                \n                </span>\n                <span class=\"mls\"> icon-person_add</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e7fe\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe7fe;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"person_add\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-person_pin\">\n                \n                </span>\n                <span class=\"mls\"> icon-person_pin</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e55a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe55a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"person_pin\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-person_pin_circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-person_pin_circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e56a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe56a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"person_pin_circle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-personal_video\">\n                \n                </span>\n                <span class=\"mls\"> icon-personal_video</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e63b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe63b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"personal_video\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pets\">\n                \n                </span>\n                <span class=\"mls\"> icon-pets</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e91d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe91d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pets\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone_android\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone_android</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e324\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe324;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phone_android\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone_bluetooth_speaker\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone_bluetooth_speaker</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e61b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe61b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phone_bluetooth_speaker\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone_forwarded\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone_forwarded</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e61c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe61c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phone_forwarded\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone_in_talk\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone_in_talk</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e61d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe61d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phone_in_talk\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone_iphone\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone_iphone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e325\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe325;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phone_iphone\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone_locked\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone_locked</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e61e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe61e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phone_locked\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone_missed\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone_missed</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e61f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe61f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phone_missed\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phone_paused\">\n                \n                </span>\n                <span class=\"mls\"> icon-phone_paused</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e620\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe620;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phone_paused\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phonelink_erase\">\n                \n                </span>\n                <span class=\"mls\"> icon-phonelink_erase</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0db\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0db;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phonelink_erase\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phonelink_lock\">\n                \n                </span>\n                <span class=\"mls\"> icon-phonelink_lock</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0dc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0dc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phonelink_lock\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phonelink_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-phonelink_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e327\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe327;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phonelink_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phonelink_ring\">\n                \n                </span>\n                <span class=\"mls\"> icon-phonelink_ring</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phonelink_ring\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-phonelink_setup\">\n                \n                </span>\n                <span class=\"mls\"> icon-phonelink_setup</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0de\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0de;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"phonelink_setup\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo_album\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo_album</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e411\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe411;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"photo_album\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo_filter\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo_filter</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e43b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe43b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"photo_filter\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo_size_select_actual\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo_size_select_actual</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e432\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe432;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"photo_size_select_actual\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo_size_select_large\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo_size_select_large</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e433\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe433;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"photo_size_select_large\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-photo_size_select_small\">\n                \n                </span>\n                <span class=\"mls\"> icon-photo_size_select_small</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e434\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe434;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"photo_size_select_small\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-picture_as_pdf\">\n                \n                </span>\n                <span class=\"mls\"> icon-picture_as_pdf</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e415\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe415;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"picture_as_pdf\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-picture_in_picture\">\n                \n                </span>\n                <span class=\"mls\"> icon-picture_in_picture</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8aa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8aa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"picture_in_picture\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-picture_in_picture_alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-picture_in_picture_alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e911\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe911;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"picture_in_picture_alt\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pie_chart\">\n                \n                </span>\n                <span class=\"mls\"> icon-pie_chart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e6c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe6c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pie_chart\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pie_chart_outlined\">\n                \n                </span>\n                <span class=\"mls\"> icon-pie_chart_outlined</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e6c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe6c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pie_chart_outlined\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pin_drop\">\n                \n                </span>\n                <span class=\"mls\"> icon-pin_drop</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e55e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe55e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pin_drop\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-play_arrow\">\n                \n                </span>\n                <span class=\"mls\"> icon-play_arrow</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e037\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe037;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"play_arrow\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-play_circle_filled\">\n                \n                </span>\n                <span class=\"mls\"> icon-play_circle_filled</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e038\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe038;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"play_circle_filled\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-play_circle_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-play_circle_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e039\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe039;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"play_circle_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-play_for_work\">\n                \n                </span>\n                <span class=\"mls\"> icon-play_for_work</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e906\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe906;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"play_for_work\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-playlist_add\">\n                \n                </span>\n                <span class=\"mls\"> icon-playlist_add</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e03b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe03b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"playlist_add\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-playlist_add_check\">\n                \n                </span>\n                <span class=\"mls\"> icon-playlist_add_check</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e065\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe065;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"playlist_add_check\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-playlist_play\">\n                \n                </span>\n                <span class=\"mls\"> icon-playlist_play</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e05f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe05f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"playlist_play\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-plus_one\">\n                \n                </span>\n                <span class=\"mls\"> icon-plus_one</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e800\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe800;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"plus_one\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-polymer\">\n                \n                </span>\n                <span class=\"mls\"> icon-polymer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ab\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ab;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"polymer\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pool\">\n                \n                </span>\n                <span class=\"mls\"> icon-pool</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb48\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb48;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pool\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-portable_wifi_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-portable_wifi_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0ce\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0ce;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"portable_wifi_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-portrait\">\n                \n                </span>\n                <span class=\"mls\"> icon-portrait</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e416\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe416;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"portrait\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-power\">\n                \n                </span>\n                <span class=\"mls\"> icon-power</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e63c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe63c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"power\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-power_input\">\n                \n                </span>\n                <span class=\"mls\"> icon-power_input</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e336\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe336;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"power_input\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-power_settings_new\">\n                \n                </span>\n                <span class=\"mls\"> icon-power_settings_new</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ac\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ac;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"power_settings_new\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-pregnant_woman\">\n                \n                </span>\n                <span class=\"mls\"> icon-pregnant_woman</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e91e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe91e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"pregnant_woman\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-present_to_all\">\n                \n                </span>\n                <span class=\"mls\"> icon-present_to_all</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0df\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0df;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"present_to_all\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-priority_high\">\n                \n                </span>\n                <span class=\"mls\"> icon-priority_high</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e645\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe645;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"priority_high\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-public\">\n                \n                </span>\n                <span class=\"mls\"> icon-public</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e80b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe80b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"public\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-publish\">\n                \n                </span>\n                <span class=\"mls\"> icon-publish</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e255\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe255;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"publish\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-queue_music\">\n                \n                </span>\n                <span class=\"mls\"> icon-queue_music</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e03d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe03d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"queue_music\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-queue_play_next\">\n                \n                </span>\n                <span class=\"mls\"> icon-queue_play_next</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e066\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe066;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"queue_play_next\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-radio\">\n                \n                </span>\n                <span class=\"mls\"> icon-radio</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e03e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe03e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"radio\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-radio_button_checked\">\n                \n                </span>\n                <span class=\"mls\"> icon-radio_button_checked</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e837\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe837;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"radio_button_checked\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rate_review\">\n                \n                </span>\n                <span class=\"mls\"> icon-rate_review</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e560\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe560;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"rate_review\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-receipt\">\n                \n                </span>\n                <span class=\"mls\"> icon-receipt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8b0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8b0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"receipt\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-recent_actors\">\n                \n                </span>\n                <span class=\"mls\"> icon-recent_actors</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e03f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe03f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"recent_actors\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-record_voice_over\">\n                \n                </span>\n                <span class=\"mls\"> icon-record_voice_over</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e91f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe91f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"record_voice_over\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-redo\">\n                \n                </span>\n                <span class=\"mls\"> icon-redo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e15a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe15a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"redo\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-refresh2\">\n                \n                </span>\n                <span class=\"mls\"> icon-refresh2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"refresh\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-remove2\">\n                \n                </span>\n                <span class=\"mls\"> icon-remove2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e15b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe15b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"remove\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-remove_circle_outline\">\n                \n                </span>\n                <span class=\"mls\"> icon-remove_circle_outline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e15d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe15d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"remove_circle_outline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-remove_from_queue\">\n                \n                </span>\n                <span class=\"mls\"> icon-remove_from_queue</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e067\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe067;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"remove_from_queue\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-visibility\">\n                \n                </span>\n                <span class=\"mls\"> icon-visibility</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"remove_red_eye, visibility\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-remove_shopping_cart\">\n                \n                </span>\n                <span class=\"mls\"> icon-remove_shopping_cart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e928\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe928;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"remove_shopping_cart\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reorder2\">\n                \n                </span>\n                <span class=\"mls\"> icon-reorder2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8fe\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8fe;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"reorder\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-repeat2\">\n                \n                </span>\n                <span class=\"mls\"> icon-repeat2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e040\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe040;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"repeat\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-repeat_one\">\n                \n                </span>\n                <span class=\"mls\"> icon-repeat_one</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e041\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe041;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"repeat_one\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-replay\">\n                \n                </span>\n                <span class=\"mls\"> icon-replay</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e042\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe042;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"replay\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-replay_10\">\n                \n                </span>\n                <span class=\"mls\"> icon-replay_10</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e059\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe059;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"replay_10\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-replay_30\">\n                \n                </span>\n                <span class=\"mls\"> icon-replay_30</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e05a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe05a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"replay_30\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-replay_5\">\n                \n                </span>\n                <span class=\"mls\"> icon-replay_5</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e05b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe05b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"replay_5\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reply2\">\n                \n                </span>\n                <span class=\"mls\"> icon-reply2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e15e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe15e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"reply\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-reply_all\">\n                \n                </span>\n                <span class=\"mls\"> icon-reply_all</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e15f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe15f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"reply_all\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-report\">\n                \n                </span>\n                <span class=\"mls\"> icon-report</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e160\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe160;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"report\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-warning2\">\n                \n                </span>\n                <span class=\"mls\"> icon-warning2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e002\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe002;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"report_problem, warning\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-restaurant\">\n                \n                </span>\n                <span class=\"mls\"> icon-restaurant</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e56c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe56c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"restaurant\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-restore_page\">\n                \n                </span>\n                <span class=\"mls\"> icon-restore_page</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e929\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe929;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"restore_page\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-ring_volume\">\n                \n                </span>\n                <span class=\"mls\"> icon-ring_volume</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0d1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0d1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"ring_volume\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-room_service\">\n                \n                </span>\n                <span class=\"mls\"> icon-room_service</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb49\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb49;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"room_service\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rotate_90_degrees_ccw\">\n                \n                </span>\n                <span class=\"mls\"> icon-rotate_90_degrees_ccw</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e418\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe418;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"rotate_90_degrees_ccw\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rotate_left\">\n                \n                </span>\n                <span class=\"mls\"> icon-rotate_left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e419\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe419;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"rotate_left\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rotate_right\">\n                \n                </span>\n                <span class=\"mls\"> icon-rotate_right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e41a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe41a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"rotate_right\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rounded_corner\">\n                \n                </span>\n                <span class=\"mls\"> icon-rounded_corner</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e920\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe920;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"rounded_corner\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-router\">\n                \n                </span>\n                <span class=\"mls\"> icon-router</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e328\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe328;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"router\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rowing\">\n                \n                </span>\n                <span class=\"mls\"> icon-rowing</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e921\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe921;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"rowing\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rss_feed\">\n                \n                </span>\n                <span class=\"mls\"> icon-rss_feed</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0e5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0e5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"rss_feed\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-rv_hookup\">\n                \n                </span>\n                <span class=\"mls\"> icon-rv_hookup</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e642\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe642;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"rv_hookup\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-satellite\">\n                \n                </span>\n                <span class=\"mls\"> icon-satellite</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e562\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe562;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"satellite\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-save2\">\n                \n                </span>\n                <span class=\"mls\"> icon-save2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e161\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe161;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"save\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-scanner\">\n                \n                </span>\n                <span class=\"mls\"> icon-scanner</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e329\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe329;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"scanner\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-school\">\n                \n                </span>\n                <span class=\"mls\"> icon-school</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e80c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe80c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"school\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-screen_lock_landscape\">\n                \n                </span>\n                <span class=\"mls\"> icon-screen_lock_landscape</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1be\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1be;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"screen_lock_landscape\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-screen_lock_portrait\">\n                \n                </span>\n                <span class=\"mls\"> icon-screen_lock_portrait</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1bf\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1bf;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"screen_lock_portrait\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-screen_lock_rotation\">\n                \n                </span>\n                <span class=\"mls\"> icon-screen_lock_rotation</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1c0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1c0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"screen_lock_rotation\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-screen_rotation\">\n                \n                </span>\n                <span class=\"mls\"> icon-screen_rotation</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1c1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1c1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"screen_rotation\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-screen_share\">\n                \n                </span>\n                <span class=\"mls\"> icon-screen_share</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0e2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0e2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"screen_share\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sd_storage\">\n                \n                </span>\n                <span class=\"mls\"> icon-sd_storage</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1c2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1c2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sd_card, sd_storage\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-search2\">\n                \n                </span>\n                <span class=\"mls\"> icon-search2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8b6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8b6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"search\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-security\">\n                \n                </span>\n                <span class=\"mls\"> icon-security</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e32a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe32a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"security\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-select_all\">\n                \n                </span>\n                <span class=\"mls\"> icon-select_all</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e162\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe162;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"select_all\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-send2\">\n                \n                </span>\n                <span class=\"mls\"> icon-send2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e163\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe163;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"send\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sentiment_dissatisfied\">\n                \n                </span>\n                <span class=\"mls\"> icon-sentiment_dissatisfied</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e811\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe811;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sentiment_dissatisfied\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sentiment_neutral\">\n                \n                </span>\n                <span class=\"mls\"> icon-sentiment_neutral</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e812\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe812;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sentiment_neutral\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sentiment_satisfied\">\n                \n                </span>\n                <span class=\"mls\"> icon-sentiment_satisfied</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e813\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe813;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sentiment_satisfied\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sentiment_very_dissatisfied\">\n                \n                </span>\n                <span class=\"mls\"> icon-sentiment_very_dissatisfied</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e814\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe814;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sentiment_very_dissatisfied\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sentiment_very_satisfied\">\n                \n                </span>\n                <span class=\"mls\"> icon-sentiment_very_satisfied</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e815\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe815;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sentiment_very_satisfied\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8b8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8b8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_applications\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_applications</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8b9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8b9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_applications\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_backup_restore\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_backup_restore</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ba\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ba;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_backup_restore\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_bluetooth\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_bluetooth</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8bb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8bb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_bluetooth\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_brightness\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_brightness</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8bd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8bd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_brightness\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_cell\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_cell</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8bc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8bc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_cell\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_ethernet\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_ethernet</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8be\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8be;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_ethernet\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_input_antenna\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_input_antenna</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8bf\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8bf;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_input_antenna\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_input_composite\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_input_composite</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_input_component, settings_input_composite\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_input_hdmi\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_input_hdmi</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_input_hdmi\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_input_svideo\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_input_svideo</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_input_svideo\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_overscan\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_overscan</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_overscan\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_phone\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_phone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_phone\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_power\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_power</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_power\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_remote\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_remote</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_remote\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_system_daydream\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_system_daydream</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1c3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1c3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_system_daydream\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-settings_voice\">\n                \n                </span>\n                <span class=\"mls\"> icon-settings_voice</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"settings_voice\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-share2\">\n                \n                </span>\n                <span class=\"mls\"> icon-share2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e80d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe80d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"share\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shop\">\n                \n                </span>\n                <span class=\"mls\"> icon-shop</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8c9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8c9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"shop\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shop_two\">\n                \n                </span>\n                <span class=\"mls\"> icon-shop_two</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ca\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ca;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"shop_two\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shopping_basket\">\n                \n                </span>\n                <span class=\"mls\"> icon-shopping_basket</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8cb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8cb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"shopping_basket\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-short_text\">\n                \n                </span>\n                <span class=\"mls\"> icon-short_text</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e261\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe261;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"short_text\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-show_chart\">\n                \n                </span>\n                <span class=\"mls\"> icon-show_chart</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e6e1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe6e1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"show_chart\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-shuffle\">\n                \n                </span>\n                <span class=\"mls\"> icon-shuffle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e043\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe043;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"shuffle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal_cellular_4_bar\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal_cellular_4_bar</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1c8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1c8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"signal_cellular_4_bar\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal_cellular_connected_no_internet_4_bar\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal_cellular_connected_no_internet_4_bar</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"signal_cellular_connected_no_internet_4_bar\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal_cellular_null\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal_cellular_null</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1cf\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1cf;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"signal_cellular_null\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal_cellular_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal_cellular_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"signal_cellular_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal_wifi_4_bar\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal_wifi_4_bar</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"signal_wifi_4_bar\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal_wifi_4_bar_lock\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal_wifi_4_bar_lock</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"signal_wifi_4_bar_lock\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-signal_wifi_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-signal_wifi_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1da\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1da;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"signal_wifi_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sim_card\">\n                \n                </span>\n                <span class=\"mls\"> icon-sim_card</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e32b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe32b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sim_card\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sim_card_alert\">\n                \n                </span>\n                <span class=\"mls\"> icon-sim_card_alert</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e624\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe624;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sim_card_alert\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-skip_next\">\n                \n                </span>\n                <span class=\"mls\"> icon-skip_next</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e044\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe044;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"skip_next\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-skip_previous\">\n                \n                </span>\n                <span class=\"mls\"> icon-skip_previous</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e045\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe045;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"skip_previous\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-slideshow\">\n                \n                </span>\n                <span class=\"mls\"> icon-slideshow</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e41b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe41b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"slideshow\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-slow_motion_video\">\n                \n                </span>\n                <span class=\"mls\"> icon-slow_motion_video</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e068\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe068;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"slow_motion_video\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stay_primary_portrait\">\n                \n                </span>\n                <span class=\"mls\"> icon-stay_primary_portrait</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0d6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0d6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"smartphone, stay_current_portrait, stay_primary_portrait\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-smoke_free\">\n                \n                </span>\n                <span class=\"mls\"> icon-smoke_free</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb4a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb4a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"smoke_free\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-smoking_rooms\">\n                \n                </span>\n                <span class=\"mls\"> icon-smoking_rooms</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb4b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb4b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"smoking_rooms\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-textsms\">\n                \n                </span>\n                <span class=\"mls\"> icon-textsms</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sms, textsms\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-snooze\">\n                \n                </span>\n                <span class=\"mls\"> icon-snooze</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e046\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe046;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"snooze\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort2\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e164\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe164;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sort\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sort_by_alpha\">\n                \n                </span>\n                <span class=\"mls\"> icon-sort_by_alpha</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e053\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe053;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sort_by_alpha\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-spa\">\n                \n                </span>\n                <span class=\"mls\"> icon-spa</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"eb4c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xeb4c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"spa\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-space_bar\">\n                \n                </span>\n                <span class=\"mls\"> icon-space_bar</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e256\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe256;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"space_bar\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-speaker\">\n                \n                </span>\n                <span class=\"mls\"> icon-speaker</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e32d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe32d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"speaker\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-speaker_group\">\n                \n                </span>\n                <span class=\"mls\"> icon-speaker_group</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e32e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe32e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"speaker_group\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-speaker_notes\">\n                \n                </span>\n                <span class=\"mls\"> icon-speaker_notes</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8cd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8cd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"speaker_notes\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-speaker_notes_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-speaker_notes_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e92a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe92a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"speaker_notes_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-speaker_phone\">\n                \n                </span>\n                <span class=\"mls\"> icon-speaker_phone</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0d2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0d2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"speaker_phone\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-spellcheck\">\n                \n                </span>\n                <span class=\"mls\"> icon-spellcheck</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ce\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ce;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"spellcheck\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star_border\">\n                \n                </span>\n                <span class=\"mls\"> icon-star_border</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e83a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe83a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"star_border\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-star_half\">\n                \n                </span>\n                <span class=\"mls\"> icon-star_half</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e839\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe839;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"star_half\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stars\">\n                \n                </span>\n                <span class=\"mls\"> icon-stars</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"stars\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stay_primary_landscape\">\n                \n                </span>\n                <span class=\"mls\"> icon-stay_primary_landscape</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0d5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0d5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"stay_current_landscape, stay_primary_landscape\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stop2\">\n                \n                </span>\n                <span class=\"mls\"> icon-stop2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e047\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe047;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"stop\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-stop_screen_share\">\n                \n                </span>\n                <span class=\"mls\"> icon-stop_screen_share</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0e3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0e3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"stop_screen_share\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-storage\">\n                \n                </span>\n                <span class=\"mls\"> icon-storage</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1db\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1db;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"storage\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-store_mall_directory\">\n                \n                </span>\n                <span class=\"mls\"> icon-store_mall_directory</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e563\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe563;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"store, store_mall_directory\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-straighten\">\n                \n                </span>\n                <span class=\"mls\"> icon-straighten</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e41c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe41c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"straighten\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-streetview\">\n                \n                </span>\n                <span class=\"mls\"> icon-streetview</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e56e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe56e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"streetview\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-strikethrough_s\">\n                \n                </span>\n                <span class=\"mls\"> icon-strikethrough_s</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e257\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe257;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"strikethrough_s\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-style\">\n                \n                </span>\n                <span class=\"mls\"> icon-style</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e41d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe41d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"style\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-subdirectory_arrow_left\">\n                \n                </span>\n                <span class=\"mls\"> icon-subdirectory_arrow_left</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"subdirectory_arrow_left\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-subdirectory_arrow_right\">\n                \n                </span>\n                <span class=\"mls\"> icon-subdirectory_arrow_right</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5da\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5da;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"subdirectory_arrow_right\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-subject\">\n                \n                </span>\n                <span class=\"mls\"> icon-subject</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"subject\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-subscriptions\">\n                \n                </span>\n                <span class=\"mls\"> icon-subscriptions</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e064\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe064;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"subscriptions\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-subtitles\">\n                \n                </span>\n                <span class=\"mls\"> icon-subtitles</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e048\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe048;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"subtitles\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-subway2\">\n                \n                </span>\n                <span class=\"mls\"> icon-subway2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e56f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe56f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"subway\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-supervisor_account\">\n                \n                </span>\n                <span class=\"mls\"> icon-supervisor_account</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"supervisor_account\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-surround_sound\">\n                \n                </span>\n                <span class=\"mls\"> icon-surround_sound</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e049\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe049;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"surround_sound\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-swap_calls\">\n                \n                </span>\n                <span class=\"mls\"> icon-swap_calls</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0d7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0d7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"swap_calls\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-swap_horiz\">\n                \n                </span>\n                <span class=\"mls\"> icon-swap_horiz</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"swap_horiz\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-swap_vert\">\n                \n                </span>\n                <span class=\"mls\"> icon-swap_vert</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"swap_vert\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-swap_vertical_circle\">\n                \n                </span>\n                <span class=\"mls\"> icon-swap_vertical_circle</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"swap_vertical_circle\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-switch_camera\">\n                \n                </span>\n                <span class=\"mls\"> icon-switch_camera</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e41e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe41e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"switch_camera\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-switch_video\">\n                \n                </span>\n                <span class=\"mls\"> icon-switch_video</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e41f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe41f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"switch_video\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sync_disabled\">\n                \n                </span>\n                <span class=\"mls\"> icon-sync_disabled</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e628\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe628;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sync_disabled\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-sync_problem\">\n                \n                </span>\n                <span class=\"mls\"> icon-sync_problem</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e629\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe629;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"sync_problem\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-system_update\">\n                \n                </span>\n                <span class=\"mls\"> icon-system_update</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e62a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe62a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"system_update\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-system_update_alt\">\n                \n                </span>\n                <span class=\"mls\"> icon-system_update_alt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"system_update_alt\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tab\">\n                \n                </span>\n                <span class=\"mls\"> icon-tab</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tab\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tab_unselected\">\n                \n                </span>\n                <span class=\"mls\"> icon-tab_unselected</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tab_unselected\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tablet2\">\n                \n                </span>\n                <span class=\"mls\"> icon-tablet2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e32f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe32f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tablet\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tablet_android\">\n                \n                </span>\n                <span class=\"mls\"> icon-tablet_android</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e330\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe330;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tablet_android\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tablet_mac\">\n                \n                </span>\n                <span class=\"mls\"> icon-tablet_mac</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e331\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe331;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tablet_mac\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tap_and_play\">\n                \n                </span>\n                <span class=\"mls\"> icon-tap_and_play</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e62b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe62b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tap_and_play\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-text_fields\">\n                \n                </span>\n                <span class=\"mls\"> icon-text_fields</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e262\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe262;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"text_fields\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-text_format\">\n                \n                </span>\n                <span class=\"mls\"> icon-text_format</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e165\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe165;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"text_format\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-texture\">\n                \n                </span>\n                <span class=\"mls\"> icon-texture</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e421\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe421;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"texture\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thumb_down\">\n                \n                </span>\n                <span class=\"mls\"> icon-thumb_down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8db\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8db;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"thumb_down\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thumb_up\">\n                \n                </span>\n                <span class=\"mls\"> icon-thumb_up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8dc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8dc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"thumb_up\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-thumbs_up_down\">\n                \n                </span>\n                <span class=\"mls\"> icon-thumbs_up_down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8dd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8dd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"thumbs_up_down\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-timelapse\">\n                \n                </span>\n                <span class=\"mls\"> icon-timelapse</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e422\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe422;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"timelapse\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-timeline\">\n                \n                </span>\n                <span class=\"mls\"> icon-timeline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e922\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe922;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"timeline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-timer\">\n                \n                </span>\n                <span class=\"mls\"> icon-timer</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e425\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe425;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"timer\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-timer_10\">\n                \n                </span>\n                <span class=\"mls\"> icon-timer_10</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e423\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe423;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"timer_10\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-timer_3\">\n                \n                </span>\n                <span class=\"mls\"> icon-timer_3</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e424\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe424;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"timer_3\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-timer_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-timer_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e426\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe426;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"timer_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-title\">\n                \n                </span>\n                <span class=\"mls\"> icon-title</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e264\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe264;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"title\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toc\">\n                \n                </span>\n                <span class=\"mls\"> icon-toc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8de\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8de;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"toc\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-today\">\n                \n                </span>\n                <span class=\"mls\"> icon-today</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8df\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8df;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"today\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toll\">\n                \n                </span>\n                <span class=\"mls\"> icon-toll</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"toll\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tonality\">\n                \n                </span>\n                <span class=\"mls\"> icon-tonality</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e427\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe427;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tonality\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-touch_app\">\n                \n                </span>\n                <span class=\"mls\"> icon-touch_app</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e913\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe913;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"touch_app\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-toys\">\n                \n                </span>\n                <span class=\"mls\"> icon-toys</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e332\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe332;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"toys\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-track_changes\">\n                \n                </span>\n                <span class=\"mls\"> icon-track_changes</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"track_changes\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-traffic\">\n                \n                </span>\n                <span class=\"mls\"> icon-traffic</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e565\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe565;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"traffic\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-train2\">\n                \n                </span>\n                <span class=\"mls\"> icon-train2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e570\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe570;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"train\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tram\">\n                \n                </span>\n                <span class=\"mls\"> icon-tram</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e571\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe571;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tram\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-transfer_within_a_station\">\n                \n                </span>\n                <span class=\"mls\"> icon-transfer_within_a_station</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e572\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe572;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"transfer_within_a_station\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-transform\">\n                \n                </span>\n                <span class=\"mls\"> icon-transform</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e428\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe428;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"transform\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-translate\">\n                \n                </span>\n                <span class=\"mls\"> icon-translate</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"translate\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-trending_down\">\n                \n                </span>\n                <span class=\"mls\"> icon-trending_down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"trending_down\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-trending_flat\">\n                \n                </span>\n                <span class=\"mls\"> icon-trending_flat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e4\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e4;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"trending_flat\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-trending_up\">\n                \n                </span>\n                <span class=\"mls\"> icon-trending_up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"trending_up\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tune\">\n                \n                </span>\n                <span class=\"mls\"> icon-tune</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e429\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe429;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tune\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-tv2\">\n                \n                </span>\n                <span class=\"mls\"> icon-tv2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e333\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe333;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"tv\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-unarchive\">\n                \n                </span>\n                <span class=\"mls\"> icon-unarchive</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e169\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe169;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"unarchive\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-undo2\">\n                \n                </span>\n                <span class=\"mls\"> icon-undo2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e166\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe166;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"undo\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-unfold_less\">\n                \n                </span>\n                <span class=\"mls\"> icon-unfold_less</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d6\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d6;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"unfold_less\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-unfold_more\">\n                \n                </span>\n                <span class=\"mls\"> icon-unfold_more</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e5d7\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe5d7;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"unfold_more\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-update\">\n                \n                </span>\n                <span class=\"mls\"> icon-update</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e923\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe923;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"update\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-usb2\">\n                \n                </span>\n                <span class=\"mls\"> icon-usb2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1e0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1e0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"usb\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-verified_user\">\n                \n                </span>\n                <span class=\"mls\"> icon-verified_user</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e8\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e8;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"verified_user\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vertical_align_bottom\">\n                \n                </span>\n                <span class=\"mls\"> icon-vertical_align_bottom</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e258\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe258;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"vertical_align_bottom\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vertical_align_center\">\n                \n                </span>\n                <span class=\"mls\"> icon-vertical_align_center</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e259\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe259;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"vertical_align_center\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vertical_align_top\">\n                \n                </span>\n                <span class=\"mls\"> icon-vertical_align_top</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e25a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe25a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"vertical_align_top\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vibration\">\n                \n                </span>\n                <span class=\"mls\"> icon-vibration</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e62d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe62d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"vibration\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-video_call\">\n                \n                </span>\n                <span class=\"mls\"> icon-video_call</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e070\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe070;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"video_call\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-video_label\">\n                \n                </span>\n                <span class=\"mls\"> icon-video_label</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e071\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe071;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"video_label\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-video_library\">\n                \n                </span>\n                <span class=\"mls\"> icon-video_library</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e04a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe04a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"video_library\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-videocam\">\n                \n                </span>\n                <span class=\"mls\"> icon-videocam</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e04b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe04b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"videocam\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-videocam_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-videocam_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e04c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe04c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"videocam_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-videogame_asset\">\n                \n                </span>\n                <span class=\"mls\"> icon-videogame_asset</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e338\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe338;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"videogame_asset\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_agenda\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_agenda</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8e9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8e9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_agenda\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_array\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_array</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ea\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ea;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_array\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_carousel\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_carousel</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8eb\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8eb;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_carousel\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_column\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_column</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ec\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ec;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_column\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_comfy\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_comfy</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e42a\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe42a;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_comfy\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_compact\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_compact</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e42b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe42b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_compact\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_day\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_day</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ed\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ed;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_day\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_headline\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_headline</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ee\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ee;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_headline\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_list\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_list</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ef\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ef;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_list\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_module\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_module</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f0\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f0;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_module\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_quilt\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_quilt</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_quilt\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_stream\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_stream</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_stream\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-view_week\">\n                \n                </span>\n                <span class=\"mls\"> icon-view_week</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f3\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f3;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"view_week\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vignette\">\n                \n                </span>\n                <span class=\"mls\"> icon-vignette</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e435\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe435;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"vignette\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-visibility_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-visibility_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f5\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f5;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"visibility_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-voice_chat\">\n                \n                </span>\n                <span class=\"mls\"> icon-voice_chat</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e62e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe62e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"voice_chat\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-voicemail\">\n                \n                </span>\n                <span class=\"mls\"> icon-voicemail</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0d9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0d9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"voicemail\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-volume_down\">\n                \n                </span>\n                <span class=\"mls\"> icon-volume_down</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e04d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe04d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"volume_down\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-volume_mute\">\n                \n                </span>\n                <span class=\"mls\"> icon-volume_mute</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e04e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe04e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"volume_mute\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-volume_off\">\n                \n                </span>\n                <span class=\"mls\"> icon-volume_off</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e04f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe04f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"volume_off\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-volume_up\">\n                \n                </span>\n                <span class=\"mls\"> icon-volume_up</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e050\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe050;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"volume_up\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vpn_key\">\n                \n                </span>\n                <span class=\"mls\"> icon-vpn_key</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e0da\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe0da;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"vpn_key\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-vpn_lock\">\n                \n                </span>\n                <span class=\"mls\"> icon-vpn_lock</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e62f\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe62f;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"vpn_lock\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wallpaper\">\n                \n                </span>\n                <span class=\"mls\"> icon-wallpaper</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1bc\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1bc;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wallpaper\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-watch\">\n                \n                </span>\n                <span class=\"mls\"> icon-watch</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e334\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe334;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"watch\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-watch_later\">\n                \n                </span>\n                <span class=\"mls\"> icon-watch_later</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e924\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe924;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"watch_later\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wb_auto\">\n                \n                </span>\n                <span class=\"mls\"> icon-wb_auto</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e42c\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe42c;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wb_auto\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wb_incandescent\">\n                \n                </span>\n                <span class=\"mls\"> icon-wb_incandescent</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e42e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe42e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wb_incandescent\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wb_iridescent\">\n                \n                </span>\n                <span class=\"mls\"> icon-wb_iridescent</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e436\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe436;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wb_iridescent\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wb_sunny\">\n                \n                </span>\n                <span class=\"mls\"> icon-wb_sunny</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e430\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe430;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wb_sunny\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wc\">\n                \n                </span>\n                <span class=\"mls\"> icon-wc</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e63d\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe63d;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wc\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-web\">\n                \n                </span>\n                <span class=\"mls\"> icon-web</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e051\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe051;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"web\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-web_asset\">\n                \n                </span>\n                <span class=\"mls\"> icon-web_asset</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e069\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe069;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"web_asset\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-weekend\">\n                \n                </span>\n                <span class=\"mls\"> icon-weekend</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e16b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe16b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"weekend\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-whatshot\">\n                \n                </span>\n                <span class=\"mls\"> icon-whatshot</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e80e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe80e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"whatshot\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-widgets\">\n                \n                </span>\n                <span class=\"mls\"> icon-widgets</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1bd\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1bd;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"widgets\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wifi2\">\n                \n                </span>\n                <span class=\"mls\"> icon-wifi2</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e63e\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe63e;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wifi\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wifi_lock\">\n                \n                </span>\n                <span class=\"mls\"> icon-wifi_lock</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1e1\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1e1;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wifi_lock\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wifi_tethering\">\n                \n                </span>\n                <span class=\"mls\"> icon-wifi_tethering</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e1e2\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe1e2;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wifi_tethering\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-work\">\n                \n                </span>\n                <span class=\"mls\"> icon-work</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8f9\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8f9;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"work\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-wrap_text\">\n                \n                </span>\n                <span class=\"mls\"> icon-wrap_text</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e25b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe25b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"wrap_text\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-youtube_searched_for\">\n                \n                </span>\n                <span class=\"mls\"> icon-youtube_searched_for</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8fa\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8fa;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"youtube_searched_for\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-zoom_in\">\n                \n                </span>\n                <span class=\"mls\"> icon-zoom_in</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e8ff\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe8ff;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"zoom_in\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-zoom_out\">\n                \n                </span>\n                <span class=\"mls\"> icon-zoom_out</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e901\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe901;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"zoom_out\" class=\"liga unitRight\" />\n            </div>\n        </div>\n        <div class=\"glyph fs2\">\n            <div class=\"clearfix bshadow0 pbs\">\n                <span class=\"icon-zoom_out_map\">\n                \n                </span>\n                <span class=\"mls\"> icon-zoom_out_map</span>\n            </div>\n            <fieldset class=\"fs0 size1of1 clearfix hidden-false\">\n                <input type=\"text\" readonly value=\"e56b\" class=\"unit size1of2\" />\n                <input type=\"text\" maxlength=\"1\" readonly value=\"&#xe56b;\" class=\"unitRight size1of2 talign-right\" />\n            </fieldset>\n            <div class=\"fs0 bshadow0 clearfix hidden-true\">\n                <span class=\"unit pvs fgc1\">liga: </span>\n                <input type=\"text\" readonly value=\"zoom_out_map\" class=\"liga unitRight\" />\n            </div>\n        </div>\n    </div>\n\n    <!--[if gt IE 8]><!-->\n    <div class=\"mhl clearfix mbl\">\n        <h1>Font Test Drive</h1>\n        <label>\n            Font Size: <input id=\"fontSize\" type=\"number\" class=\"textbox0 mbm\"\n            min=\"8\" value=\"48\" />\n            px\n        </label>\n        <input id=\"testText\" type=\"text\" class=\"phl size1of1 mvl\"\n        placeholder=\"Type some text to test...\" value=\"\"/>\n        <div id=\"testDrive\" class=\"icon-\">&nbsp;\n        </div>\n    </div>\n    <!--<![endif]-->\n    <div class=\"bgc1 clearfix\">\n        <p class=\"mhl\">Generated by <a href=\"https://icomoon.io/app\">IcoMoon</a></p>\n    </div>\n\n    <script src=\"demo-files/demo.js\"></script>\n</body>\n</html>\n"
  },
  {
    "path": "public/landing/fonts/icomoon/selection.json",
    "content": "{\n  \"IcoMoonType\": \"selection\",\n  \"icons\": [\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M846.857 600c34.857 20 46.857 65.143 26.857 100l-36.571 62.857c-20 34.857-65.143 46.857-100 26.857l-152-87.429v175.429c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-175.429l-152 87.429c-34.857 20-80 8-100-26.857l-36.571-62.857c-20-34.857-8-80 26.857-100l152-88-152-88c-34.857-20-46.857-65.143-26.857-100l36.571-62.857c20-34.857 65.143-46.857 100-26.857l152 87.429v-175.429c0-40 33.143-73.143 73.143-73.143h73.143c40 0 73.143 33.143 73.143 73.143v175.429l152-87.429c34.857-20 80-8 100 26.857l36.571 62.857c20 34.857 8 80-26.857 100l-152 88z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"asterisk\"\n        ],\n        \"defaultCode\": 61545,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"asterisk\",\n        \"id\": 0,\n        \"order\": 856,\n        \"prevSize\": 28,\n        \"code\": 61545\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 0\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v237.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h237.714v-237.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857v237.714h237.714c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"plus\"\n        ],\n        \"defaultCode\": 61543,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"plus\",\n        \"id\": 1,\n        \"order\": 857,\n        \"prevSize\": 28,\n        \"code\": 61543\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 1\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 717.714v137.143c0 12.571-10.286 22.857-22.857 22.857h-137.143c-12.571 0-22.857-10.286-22.857-22.857v-137.143c0-12.571 10.286-22.857 22.857-22.857h137.143c12.571 0 22.857 10.286 22.857 22.857zM582.857 374.857c0 108.571-73.714 150.286-128 180.571-33.714 19.429-54.857 58.857-54.857 75.429v0c0 12.571-9.714 27.429-22.857 27.429h-137.143c-12.571 0-20.571-19.429-20.571-32v-25.714c0-69.143 68.571-128.571 118.857-151.429 44-20 62.286-38.857 62.286-75.429 0-32-41.714-60.571-88-60.571-25.714 0-49.143 8-61.714 16.571-13.714 9.714-27.429 23.429-61.143 65.714-4.571 5.714-11.429 9.143-17.714 9.143-5.143 0-9.714-1.714-14.286-4.571l-93.714-71.429c-9.714-7.429-12-20-5.714-30.286 61.714-102.286 148.571-152 265.143-152 122.286 0 259.429 97.714 259.429 228.571z\"\n        ],\n        \"width\": 634.88,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"question\"\n        ],\n        \"defaultCode\": 61736,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"question\",\n        \"id\": 2,\n        \"order\": 858,\n        \"prevSize\": 28,\n        \"code\": 61736\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 2\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-694.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h694.857c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"minus\"\n        ],\n        \"defaultCode\": 61544,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"minus\",\n        \"id\": 3,\n        \"order\": 859,\n        \"prevSize\": 28,\n        \"code\": 61544\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 3\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M970.857 106.286c0 16.571-13.143 33.143-24.571 44.571l-361.143 361.143v438.857h182.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h182.857v-438.857l-361.143-361.143c-11.429-11.429-24.571-28-24.571-44.571 0-28 35.429-33.143 56.571-33.143h804.571c21.143 0 56.571 5.143 56.571 33.143z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"glass\"\n        ],\n        \"defaultCode\": 61440,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"glass\",\n        \"id\": 4,\n        \"order\": 860,\n        \"prevSize\": 28,\n        \"code\": 61440\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 4\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 128v640c0 80.571-120.571 109.714-182.857 109.714s-182.857-29.143-182.857-109.714 120.571-109.714 182.857-109.714c37.714 0 75.429 6.857 109.714 22.286v-306.857l-438.857 135.429v405.143c0 80.571-120.571 109.714-182.857 109.714s-182.857-29.143-182.857-109.714 120.571-109.714 182.857-109.714c37.714 0 75.429 6.857 109.714 22.286v-552.571c0-24 16-45.143 38.857-52.571l475.429-146.286c5.143-1.714 10.286-2.286 16-2.286 30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"music\"\n        ],\n        \"defaultCode\": 61441,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"music\",\n        \"id\": 5,\n        \"order\": 861,\n        \"prevSize\": 28,\n        \"code\": 61441\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 5\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40-33.143 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"search\"\n        ],\n        \"defaultCode\": 61442,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"search\",\n        \"id\": 6,\n        \"order\": 862,\n        \"prevSize\": 28,\n        \"code\": 61442\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 6\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 859.429v-438.857c-12 13.714-25.143 26.286-39.429 37.714-81.714 62.857-164 126.857-243.429 193.143-42.857 36-96 80-155.429 80h-1.143c-59.429 0-112.571-44-155.429-80-79.429-66.286-161.714-130.286-243.429-193.143-14.286-11.429-27.429-24-39.429-37.714v438.857c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM950.857 258.857c0-14.286 3.429-39.429-18.286-39.429h-841.143c-9.714 0-18.286 8.571-18.286 18.286 0 65.143 32.571 121.714 84 162.286 76.571 60 153.143 120.571 229.143 181.143 30.286 24.571 85.143 77.143 125.143 77.143h1.143c40 0 94.857-52.571 125.143-77.143 76-60.571 152.571-121.143 229.143-181.143 37.143-29.143 84-92.571 84-141.143zM1024 237.714v621.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"envelope-o\"\n        ],\n        \"defaultCode\": 61443,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"envelope-o\",\n        \"id\": 7,\n        \"order\": 863,\n        \"prevSize\": 28,\n        \"code\": 61443\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 7\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 950.857c-9.143 0-18.286-3.429-25.143-10.286l-356.571-344c-4.571-4-130.286-118.857-130.286-256 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429 0 137.143-125.714 252-130.857 257.143l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"heart\"\n        ],\n        \"defaultCode\": 61444,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"heart\",\n        \"id\": 8,\n        \"order\": 864,\n        \"prevSize\": 28,\n        \"code\": 61444\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 8\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 369.714c0 10.286-7.429 20-14.857 27.429l-207.429 202.286 49.143 285.714c0.571 4 0.571 7.429 0.571 11.429 0 14.857-6.857 28.571-23.429 28.571-8 0-16-2.857-22.857-6.857l-256.571-134.857-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429s22.857 12.571 28 23.429l128.571 260 286.857 41.714c13.714 2.286 32 9.143 32 26.286z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"star\"\n        ],\n        \"defaultCode\": 61445,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"star\",\n        \"id\": 9,\n        \"order\": 865,\n        \"prevSize\": 28,\n        \"code\": 61445\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 9\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M649.714 573.714l174.857-169.714-241.143-35.429-108-218.286-108 218.286-241.143 35.429 174.857 169.714-41.714 240.571 216-113.714 215.429 113.714zM950.857 369.714c0 10.286-7.429 20-14.857 27.429l-207.429 202.286 49.143 285.714c0.571 4 0.571 7.429 0.571 11.429 0 15.429-6.857 28.571-23.429 28.571-8 0-16-2.857-22.857-6.857l-256.571-134.857-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429s22.857 12.571 28 23.429l128.571 260 286.857 41.714c13.714 2.286 32 9.143 32 26.286z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"star-o\"\n        ],\n        \"defaultCode\": 61446,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"star-o\",\n        \"id\": 10,\n        \"order\": 866,\n        \"prevSize\": 28,\n        \"code\": 61446\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 10\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 799.429c0 83.429-54.857 151.429-121.714 151.429h-488c-66.857 0-121.714-68-121.714-151.429 0-150.286 37.143-324 186.857-324 46.286 45.143 109.143 73.143 178.857 73.143s132.571-28 178.857-73.143c149.714 0 186.857 173.714 186.857 324zM585.143 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"user\"\n        ],\n        \"defaultCode\": 61447,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"user\",\n        \"id\": 11,\n        \"order\": 867,\n        \"prevSize\": 28,\n        \"code\": 61447\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 11\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 914.286v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM219.429 694.857v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM219.429 475.429v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM804.571 914.286v-292.571c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM219.429 256v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 914.286v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM804.571 475.429v-292.571c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM1024 694.857v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 475.429v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1024 256v-73.143c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM1097.143 164.571v768c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-768c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"film\"\n        ],\n        \"defaultCode\": 61448,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"film\",\n        \"id\": 12,\n        \"order\": 868,\n        \"prevSize\": 28,\n        \"code\": 61448\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 12\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 585.143v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM438.857 146.286v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM950.857 585.143v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143zM950.857 146.286v219.429c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"th-large\"\n        ],\n        \"defaultCode\": 61449,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"th-large\",\n        \"id\": 13,\n        \"order\": 869,\n        \"prevSize\": 28,\n        \"code\": 61449\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 13\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM658.286 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"th\"\n        ],\n        \"defaultCode\": 61450,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"th\",\n        \"id\": 14,\n        \"order\": 870,\n        \"prevSize\": 28,\n        \"code\": 61450\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 14\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM292.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857zM292.571 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857zM1024 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857zM1024 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h548.571c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"th-list\"\n        ],\n        \"defaultCode\": 61451,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"th-list\",\n        \"id\": 15,\n        \"order\": 871,\n        \"prevSize\": 28,\n        \"code\": 61451\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 15\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M954.857 323.429c0 14.286-5.714 28.571-16 38.857l-491.429 491.429c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-284.571-284.571c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l77.714-77.714c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l168 168.571 374.857-375.429c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l77.714 77.714c10.286 10.286 16 24.571 16 38.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check\"\n        ],\n        \"defaultCode\": 61452,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"check\",\n        \"id\": 16,\n        \"order\": 872,\n        \"prevSize\": 28,\n        \"code\": 61452\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 16\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M741.714 755.429c0 14.286-5.714 28.571-16 38.857l-77.714 77.714c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-168-168-168 168c-10.286 10.286-24.571 16-38.857 16s-28.571-5.714-38.857-16l-77.714-77.714c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l168-168-168-168c-10.286-10.286-16-24.571-16-38.857s5.714-28.571 16-38.857l77.714-77.714c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l168 168 168-168c10.286-10.286 24.571-16 38.857-16s28.571 5.714 38.857 16l77.714 77.714c10.286 10.286 16 24.571 16 38.857s-5.714 28.571-16 38.857l-168 168 168 168c10.286 10.286 16 24.571 16 38.857z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"close\",\n          \"remove\",\n          \"times\"\n        ],\n        \"defaultCode\": 61453,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"close, remove, times\",\n        \"id\": 17,\n        \"order\": 873,\n        \"prevSize\": 28,\n        \"code\": 61453\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 17\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-128v128c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-128h-128c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h128v-128c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286v128h128c9.714 0 18.286 8.571 18.286 18.286zM658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40.571-32.571 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"search-plus\"\n        ],\n        \"defaultCode\": 61454,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"search-plus\",\n        \"id\": 18,\n        \"order\": 874,\n        \"prevSize\": 28,\n        \"code\": 61454\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 18\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-329.143c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h329.143c9.714 0 18.286 8.571 18.286 18.286zM658.286 475.429c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM950.857 950.857c0 40.571-32.571 73.143-73.143 73.143-19.429 0-38.286-8-51.429-21.714l-196-195.429c-66.857 46.286-146.857 70.857-228 70.857-222.286 0-402.286-180-402.286-402.286s180-402.286 402.286-402.286 402.286 180 402.286 402.286c0 81.143-24.571 161.143-70.857 228l196 196c13.143 13.143 21.143 32 21.143 51.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"search-minus\"\n        ],\n        \"defaultCode\": 61456,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"search-minus\",\n        \"id\": 19,\n        \"order\": 875,\n        \"prevSize\": 28,\n        \"code\": 61456\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 19\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 512c0 241.714-197.143 438.857-438.857 438.857s-438.857-197.143-438.857-438.857c0-138.857 64-266.857 175.429-350.286 32.571-24.571 78.286-18.286 102.286 14.286 24.571 32 17.714 78.286-14.286 102.286-74.286 56-117.143 141.143-117.143 233.714 0 161.143 131.429 292.571 292.571 292.571s292.571-131.429 292.571-292.571c0-92.571-42.857-177.714-117.143-233.714-32-24-38.857-70.286-14.286-102.286 24-32.571 70.286-38.857 102.286-14.286 111.429 83.429 175.429 211.429 175.429 350.286zM512 73.143v365.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143v-365.714c0-40 33.143-73.143 73.143-73.143s73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"power-off\"\n        ],\n        \"defaultCode\": 61457,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"power-off\",\n        \"id\": 20,\n        \"order\": 876,\n        \"prevSize\": 28,\n        \"code\": 61457\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 20\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 822.857v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM365.714 749.714v182.857c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM585.143 603.429v329.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 384v548.571c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 91.429v841.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-841.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal\"\n        ],\n        \"defaultCode\": 61458,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"signal\",\n        \"id\": 21,\n        \"order\": 877,\n        \"prevSize\": 28,\n        \"code\": 61458\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 21\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM877.714 449.714v126.857c0 8.571-6.857 18.857-16 20.571l-105.714 16c-6.286 18.286-13.143 35.429-22.286 52 19.429 28 40 53.143 61.143 78.857 3.429 4 5.714 9.143 5.714 14.286s-1.714 9.143-5.143 13.143c-13.714 18.286-90.857 102.286-110.286 102.286-5.143 0-10.286-2.286-14.857-5.143l-78.857-61.714c-16.571 8.571-34.286 16-52 21.714-4 34.857-7.429 72-16.571 106.286-2.286 9.143-10.286 16-20.571 16h-126.857c-10.286 0-19.429-7.429-20.571-17.143l-16-105.143c-17.714-5.714-34.857-12.571-51.429-21.143l-80.571 61.143c-4 3.429-9.143 5.143-14.286 5.143s-10.286-2.286-14.286-6.286c-30.286-27.429-70.286-62.857-94.286-96-2.857-4-4-8.571-4-13.143 0-5.143 1.714-9.143 4.571-13.143 19.429-26.286 40.571-51.429 60-78.286-9.714-18.286-17.714-37.143-23.429-56.571l-104.571-15.429c-9.714-1.714-16.571-10.857-16.571-20.571v-126.857c0-8.571 6.857-18.857 15.429-20.571l106.286-16c5.714-18.286 13.143-35.429 22.286-52.571-19.429-27.429-40-53.143-61.143-78.857-3.429-4-5.714-8.571-5.714-13.714s2.286-9.143 5.143-13.143c13.714-18.857 90.857-102.286 110.286-102.286 5.143 0 10.286 2.286 14.857 5.714l78.857 61.143c16.571-8.571 34.286-16 52-21.714 4-34.857 7.429-72 16.571-106.286 2.286-9.143 10.286-16 20.571-16h126.857c10.286 0 19.429 7.429 20.571 17.143l16 105.143c17.714 5.714 34.857 12.571 51.429 21.143l81.143-61.143c3.429-3.429 8.571-5.143 13.714-5.143s10.286 2.286 14.286 5.714c30.286 28 70.286 63.429 94.286 97.143 2.857 3.429 4 8 4 12.571 0 5.143-1.714 9.143-4.571 13.143-19.429 26.286-40.571 51.429-60 78.286 9.714 18.286 17.714 37.143 23.429 56l104.571 16c9.714 1.714 16.571 10.857 16.571 20.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cog\",\n          \"gear\"\n        ],\n        \"defaultCode\": 61459,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cog, gear\",\n        \"id\": 22,\n        \"order\": 878,\n        \"prevSize\": 28,\n        \"code\": 61459\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 22\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM438.857 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM585.143 420.571v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM658.286 834.286v-541.714h-512v541.714c0 27.429 15.429 43.429 18.286 43.429h475.429c2.857 0 18.286-16 18.286-43.429zM274.286 219.429h256l-27.429-66.857c-1.714-2.286-6.857-5.714-9.714-6.286h-181.143c-3.429 0.571-8 4-9.714 6.286zM804.571 237.714v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v541.714c0 62.857-41.143 116.571-91.429 116.571h-475.429c-50.286 0-91.429-51.429-91.429-114.286v-544h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h176.571l40-95.429c11.429-28 45.714-50.857 76-50.857h182.857c30.286 0 64.571 22.857 76 50.857l40 95.429h176.571c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"trash-o\"\n        ],\n        \"defaultCode\": 61460,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"trash-o\",\n        \"id\": 23,\n        \"order\": 879,\n        \"prevSize\": 28,\n        \"code\": 61460\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 23\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 566.857v274.286c0 20-16.571 36.571-36.571 36.571h-219.429v-219.429h-146.286v219.429h-219.429c-20 0-36.571-16.571-36.571-36.571v-274.286c0-1.143 0.571-2.286 0.571-3.429l328.571-270.857 328.571 270.857c0.571 1.143 0.571 2.286 0.571 3.429zM932 527.429l-35.429 42.286c-2.857 3.429-7.429 5.714-12 6.286h-1.714c-4.571 0-8.571-1.143-12-4l-395.429-329.714-395.429 329.714c-4 2.857-8.571 4.571-13.714 4-4.571-0.571-9.143-2.857-12-6.286l-35.429-42.286c-6.286-7.429-5.143-19.429 2.286-25.714l410.857-342.286c24-20 62.857-20 86.857 0l139.429 116.571v-111.429c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v233.143l125.143 104c7.429 6.286 8.571 18.286 2.286 25.714z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"home\"\n        ],\n        \"defaultCode\": 61461,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"home\",\n        \"id\": 24,\n        \"order\": 880,\n        \"prevSize\": 28,\n        \"code\": 61461\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 24\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-o\"\n        ],\n        \"defaultCode\": 61462,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-o\",\n        \"id\": 25,\n        \"order\": 881,\n        \"prevSize\": 28,\n        \"code\": 61462\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 25\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 310.857v256c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"clock-o\"\n        ],\n        \"defaultCode\": 61463,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"clock-o\",\n        \"id\": 26,\n        \"order\": 882,\n        \"prevSize\": 28,\n        \"code\": 61463\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 26\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M634.857 569.143v-2.286l-13.714-182.857c-0.571-10.286-9.714-18.286-19.429-18.286h-106.286c-9.714 0-18.857 8-19.429 18.286l-13.714 182.857v2.286c-0.571 9.143 8 16 16.571 16h139.429c8.571 0 17.143-6.857 16.571-16zM1068.571 836c0 16.571-4.571 41.714-26.286 41.714h-402.286c9.714 0 17.714-8 17.143-18.286l-11.429-146.286c-0.571-10.286-9.714-18.286-19.429-18.286h-155.429c-9.714 0-18.857 8-19.429 18.286l-11.429 146.286c-0.571 10.286 7.429 18.286 17.143 18.286h-402.286c-21.714 0-26.286-25.143-26.286-41.714 0-22.857 6.286-45.714 14.857-66.286l238.286-596.571c5.714-14.286 21.143-26.857 36.571-26.857h193.714c-9.714 0-18.857 8-19.429 18.286l-8.571 109.714c-0.571 10.286 6.857 18.286 17.143 18.286h94.857c10.286 0 17.714-8 17.143-18.286l-8.571-109.714c-0.571-10.286-9.714-18.286-19.429-18.286h193.714c15.429 0 30.857 12.571 36.571 26.857l238.286 596.571c8.571 20.571 14.857 43.429 14.857 66.286z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"road\"\n        ],\n        \"defaultCode\": 61464,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"road\",\n        \"id\": 27,\n        \"order\": 883,\n        \"prevSize\": 28,\n        \"code\": 61464\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 27\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 640v182.857c0 30.286-24.571 54.857-54.857 54.857h-841.143c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h265.714l77.143 77.714c21.143 20.571 48.571 32 77.714 32s56.571-11.429 77.714-32l77.714-77.714h265.143c30.286 0 54.857 24.571 54.857 54.857zM765.143 314.857c5.714 13.714 2.857 29.714-8 40l-256 256c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-256-256c-10.857-10.286-13.714-26.286-8-40 5.714-13.143 18.857-22.286 33.714-22.286h146.286v-256c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571v256h146.286c14.857 0 28 9.143 33.714 22.286z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"download\"\n        ],\n        \"defaultCode\": 61465,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"download\",\n        \"id\": 28,\n        \"order\": 884,\n        \"prevSize\": 28,\n        \"code\": 61465\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 28\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 530.286c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-201.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v201.143h109.714c10.286 0 18.286 8 18.286 18.286zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-circle-o-down\"\n        ],\n        \"defaultCode\": 61466,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-circle-o-down\",\n        \"id\": 29,\n        \"order\": 885,\n        \"prevSize\": 28,\n        \"code\": 61466\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 29\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M638.857 500.571c-2.857 6.857-9.714 11.429-17.143 11.429h-109.714v201.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-201.143h-109.714c-10.286 0-18.286-8-18.286-18.286 0-5.143 2.286-9.714 5.714-13.714l182.286-182.286c4-3.429 8.571-5.143 13.143-5.143s9.143 1.714 13.143 5.143l182.857 182.857c5.143 5.714 6.857 13.143 4 20zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-circle-o-up\"\n        ],\n        \"defaultCode\": 61467,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-circle-o-up\",\n        \"id\": 30,\n        \"order\": 886,\n        \"prevSize\": 28,\n        \"code\": 61467\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 30\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M584.571 548.571h180.571c-1.143-2.857-1.714-6.286-2.857-9.143l-121.143-283.429h-404.571l-121.143 283.429c-1.143 2.857-1.714 6.286-2.857 9.143h180.571l54.286 109.714h182.857zM877.714 565.714v275.429c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-275.429c0-20.571 6.286-50.857 14.286-70.286l136-315.429c8-18.857 30.857-33.714 50.857-33.714h475.429c20 0 42.857 14.857 50.857 33.714l136 315.429c8 19.429 14.286 49.714 14.286 70.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"inbox\"\n        ],\n        \"defaultCode\": 61468,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"inbox\",\n        \"id\": 31,\n        \"order\": 887,\n        \"prevSize\": 28,\n        \"code\": 61468\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 31\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M676.571 512c0 13.143-6.857 25.143-18.286 31.429l-310.857 182.857c-5.714 3.429-12 5.143-18.286 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-365.714c0-13.143 6.857-25.143 18.286-32 11.429-6.286 25.714-6.286 36.571 0.571l310.857 182.857c11.429 6.286 18.286 18.286 18.286 31.429zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"play-circle-o\"\n        ],\n        \"defaultCode\": 61469,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"play-circle-o\",\n        \"id\": 32,\n        \"order\": 888,\n        \"prevSize\": 28,\n        \"code\": 61469\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 32\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 146.286v256c0 20-16.571 36.571-36.571 36.571h-256c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l78.857-78.857c-53.714-49.714-124.571-78.286-199.429-78.286-161.143 0-292.571 131.429-292.571 292.571s131.429 292.571 292.571 292.571c90.857 0 174.857-41.143 230.857-113.714 2.857-4 8-6.286 13.143-6.857 5.143 0 10.286 1.714 14.286 5.143l78.286 78.857c6.857 6.286 6.857 17.143 1.143 24.571-83.429 100.571-206.857 158.286-337.714 158.286-241.714 0-438.857-197.143-438.857-438.857s197.143-438.857 438.857-438.857c112.571 0 221.714 45.143 302.286 121.143l74.286-73.714c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"repeat\",\n          \"rotate-right\"\n        ],\n        \"defaultCode\": 61470,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"repeat, rotate-right\",\n        \"id\": 33,\n        \"order\": 889,\n        \"prevSize\": 28,\n        \"code\": 61470\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 33\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M863.429 603.429c0 1.143 0 2.857-0.571 4-48.571 202.286-215.429 343.429-426.286 343.429-111.429 0-219.429-44-300.571-121.143l-73.714 73.714c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-78.286 78.286c53.714 50.286 125.143 78.857 198.857 78.857 101.714 0 196-52.571 249.143-139.429 13.714-22.286 20.571-44 30.286-66.857 2.857-8 8.571-13.143 17.143-13.143h109.714c10.286 0 18.286 8.571 18.286 18.286zM877.714 146.286v256c0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l78.857-78.857c-54.286-50.286-125.714-78.286-199.429-78.286-101.714 0-196 52.571-249.143 139.429-13.714 22.286-20.571 44-30.286 66.857-2.857 8-8.571 13.143-17.143 13.143h-113.714c-10.286 0-18.286-8.571-18.286-18.286v-4c49.143-202.857 217.714-343.429 428.571-343.429 112 0 221.143 44.571 302.286 121.143l74.286-73.714c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"refresh\"\n        ],\n        \"defaultCode\": 61473,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"refresh\",\n        \"id\": 34,\n        \"order\": 890,\n        \"prevSize\": 28,\n        \"code\": 61473\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 34\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 676.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 530.286v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 384v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 676.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 530.286v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM877.714 384v36.571c0 9.714-8.571 18.286-18.286 18.286h-548.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h548.571c9.714 0 18.286 8.571 18.286 18.286zM950.857 786.286v-475.429c0-9.714-8.571-18.286-18.286-18.286h-841.143c-9.714 0-18.286 8.571-18.286 18.286v475.429c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM1024 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"list-alt\"\n        ],\n        \"defaultCode\": 61474,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"list-alt\",\n        \"id\": 35,\n        \"order\": 891,\n        \"prevSize\": 28,\n        \"code\": 61474\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 35\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M182.857 438.857h292.571v-109.714c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v109.714zM658.286 493.714v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h18.286v-109.714c0-140.571 115.429-256 256-256s256 115.429 256 256v109.714h18.286c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lock\"\n        ],\n        \"defaultCode\": 61475,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"lock\",\n        \"id\": 36,\n        \"order\": 892,\n        \"prevSize\": 28,\n        \"code\": 61475\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 36\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M182.857 146.286c0 26.286-14.286 49.714-36.571 62.857v723.429c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-723.429c-22.286-13.143-36.571-36.571-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 21.143-13.143 29.143-29.714 37.714-64.571 34.857-136 66.286-210.857 66.286-105.143 0-155.429-80-280-80-90.857 0-186.286 41.143-265.143 83.429-6.286 3.429-12 5.143-18.857 5.143-20 0-36.571-16.571-36.571-36.571v-424c0-13.714 6.857-23.429 17.714-31.429 13.714-9.143 30.286-17.143 45.143-24.571 72-36.571 159.429-68.571 240.571-68.571 89.714 0 160 29.714 239.429 66.857 16 8 32.571 10.857 50.286 10.857 89.714 0 186.286-77.714 211.429-77.714 20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1060.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flag\"\n        ],\n        \"defaultCode\": 61476,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"flag\",\n        \"id\": 37,\n        \"order\": 893,\n        \"prevSize\": 28,\n        \"code\": 61476\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 37\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 506.286c0 62.286-11.429 122.857-34.286 179.429l-11.429 28-105.714 18.857c-16.571 62.286-73.143 108.571-141.143 108.571v18.286c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v18.286c54.857 0 102.286 30.286 127.429 74.857l38.857-6.857c10.857-35.429 16.571-72 16.571-110.286 0-172.571-170.857-323.429-365.714-323.429s-365.714 150.857-365.714 323.429c0 38.286 5.714 74.857 16.571 110.286l38.857 6.857c25.143-44.571 72.571-74.857 127.429-74.857v-18.286c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-18.286c-68 0-124.571-46.286-141.143-108.571l-105.714-18.857-11.429-28c-22.857-56.571-34.286-117.143-34.286-179.429 0-234.857 217.714-433.143 475.429-433.143s475.429 198.286 475.429 433.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"headphones\"\n        ],\n        \"defaultCode\": 61477,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"headphones\",\n        \"id\": 38,\n        \"order\": 894,\n        \"prevSize\": 28,\n        \"code\": 61477\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 38\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 438.85714285714283,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"volume-off\"\n        ],\n        \"defaultCode\": 61478,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"volume-off\",\n        \"id\": 39,\n        \"order\": 895,\n        \"prevSize\": 28,\n        \"code\": 61478\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 39\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571zM658.286 512c0 57.143-34.857 112.571-88.571 134.286-4.571 2.286-9.714 2.857-14.286 2.857-20 0-36.571-16-36.571-36.571 0-43.429 66.286-31.429 66.286-100.571s-66.286-57.143-66.286-100.571c0-20.571 16.571-36.571 36.571-36.571 4.571 0 9.714 0.571 14.286 2.857 53.714 21.143 88.571 77.143 88.571 134.286z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"volume-down\"\n        ],\n        \"defaultCode\": 61479,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"volume-down\",\n        \"id\": 40,\n        \"order\": 896,\n        \"prevSize\": 28,\n        \"code\": 61479\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 40\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 201.143v621.714c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-190.286-190.286h-149.714c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h149.714l190.286-190.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571zM658.286 512c0 57.143-34.857 112.571-88.571 134.286-4.571 2.286-9.714 2.857-14.286 2.857-20 0-36.571-16-36.571-36.571 0-43.429 66.286-31.429 66.286-100.571s-66.286-57.143-66.286-100.571c0-20.571 16.571-36.571 36.571-36.571 4.571 0 9.714 0.571 14.286 2.857 53.714 21.143 88.571 77.143 88.571 134.286zM804.571 512c0 116-69.714 224-177.143 269.143-4.571 1.714-9.714 2.857-14.286 2.857-20.571 0-37.143-16.571-37.143-36.571 0-16 9.143-26.857 22.286-33.714 15.429-8 29.714-14.857 43.429-25.143 56.571-41.143 89.714-106.857 89.714-176.571s-33.143-135.429-89.714-176.571c-13.714-10.286-28-17.143-43.429-25.143-13.143-6.857-22.286-17.714-22.286-33.714 0-20 16.571-36.571 36.571-36.571 5.143 0 10.286 1.143 14.857 2.857 107.429 45.143 177.143 153.143 177.143 269.143zM950.857 512c0 175.429-104.571 334.286-265.714 403.429-4.571 1.714-9.714 2.857-14.857 2.857-20 0-36.571-16.571-36.571-36.571 0-16.571 8.571-25.714 22.286-33.714 8-4.571 17.143-7.429 25.714-12 16-8.571 32-18.286 46.857-29.143 93.714-69.143 149.143-178.286 149.143-294.857s-55.429-225.714-149.143-294.857c-14.857-10.857-30.857-20.571-46.857-29.143-8.571-4.571-17.714-7.429-25.714-12-13.714-8-22.286-17.143-22.286-33.714 0-20 16.571-36.571 36.571-36.571 5.143 0 10.286 1.143 14.857 2.857 161.143 69.143 265.714 228 265.714 403.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"volume-up\"\n        ],\n        \"defaultCode\": 61480,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"volume-up\",\n        \"id\": 41,\n        \"order\": 897,\n        \"prevSize\": 28,\n        \"code\": 61480\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 41\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 658.286v73.143h-73.143v-73.143h73.143zM219.429 219.429v73.143h-73.143v-73.143h73.143zM658.286 219.429v73.143h-73.143v-73.143h73.143zM73.143 804h219.429v-218.857h-219.429v218.857zM73.143 365.714h219.429v-219.429h-219.429v219.429zM512 365.714h219.429v-219.429h-219.429v219.429zM365.714 512v365.714h-365.714v-365.714h365.714zM658.286 804.571v73.143h-73.143v-73.143h73.143zM804.571 804.571v73.143h-73.143v-73.143h73.143zM804.571 512v219.429h-219.429v-73.143h-73.143v219.429h-73.143v-365.714h219.429v73.143h73.143v-73.143h73.143zM365.714 73.143v365.714h-365.714v-365.714h365.714zM804.571 73.143v365.714h-365.714v-365.714h365.714z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"qrcode\"\n        ],\n        \"defaultCode\": 61481,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"qrcode\",\n        \"id\": 42,\n        \"order\": 898,\n        \"prevSize\": 28,\n        \"code\": 61481\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 42\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M36 877.714h-36v-804.571h36v804.571zM72 877.143h-18.286v-804h18.286v804zM125.714 877.143h-17.714v-804h17.714v804zM215.429 877.143h-17.714v-804h17.714v804zM305.143 877.143h-35.429v-804h35.429v804zM377.143 877.143h-17.714v-804h17.714v804zM413.143 877.143h-17.714v-804h17.714v804zM449.143 877.143h-17.714v-804h17.714v804zM538.857 877.143h-36v-804h36v804zM628.571 877.143h-36v-804h36v804zM700.571 877.143h-36v-804h36v804zM772.571 877.143h-36v-804h36v804zM826.286 877.143h-36v-804h36v804zM934.286 877.143h-53.714v-804h53.714v804zM970.286 877.143h-18.286v-804h18.286v804zM1024 877.714h-36v-804.571h36v804.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"barcode\"\n        ],\n        \"defaultCode\": 61482,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"barcode\",\n        \"id\": 43,\n        \"order\": 899,\n        \"prevSize\": 28,\n        \"code\": 61482\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 43\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 256c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM865.714 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-408.571-409.143c-29.143-28.571-52-84-52-124.571v-237.714c0-40 33.143-73.143 73.143-73.143h237.714c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52z\"\n        ],\n        \"width\": 865.7188571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tag\"\n        ],\n        \"defaultCode\": 61483,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tag\",\n        \"id\": 44,\n        \"order\": 900,\n        \"prevSize\": 28,\n        \"code\": 61483\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 44\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 256c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM865.714 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-408.571-409.143c-29.143-28.571-52-84-52-124.571v-237.714c0-40 33.143-73.143 73.143-73.143h237.714c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52zM1085.143 585.143c0 19.429-8 38.286-21.143 51.429l-280.571 281.143c-13.714 13.143-32.571 21.143-52 21.143-29.714 0-44.571-13.714-64-33.714l268.571-268.571c13.143-13.143 21.143-32 21.143-51.429s-8-38.286-21.143-52l-408.571-408c-29.143-29.143-84.571-52-125.143-52h128c40.571 0 96 22.857 125.143 52l408.571 408c13.143 13.714 21.143 32.571 21.143 52z\"\n        ],\n        \"width\": 1085.1474285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tags\"\n        ],\n        \"defaultCode\": 61484,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tags\",\n        \"id\": 45,\n        \"order\": 901,\n        \"prevSize\": 28,\n        \"code\": 61484\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 45\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M936.571 273.143c14.286 20.571 18.286 47.429 10.286 73.714l-157.143 517.714c-14.286 48.571-64.571 86.286-113.714 86.286h-527.429c-58.286 0-120.571-46.286-141.714-105.714-9.143-25.714-9.143-50.857-1.143-72.571 1.143-11.429 3.429-22.857 4-36.571 0.571-9.143-4.571-16.571-3.429-23.429 2.286-13.714 14.286-23.429 23.429-38.857 17.143-28.571 36.571-74.857 42.857-104.571 2.857-10.857-2.857-23.429 0-33.143 2.857-10.857 13.714-18.857 19.429-29.143 15.429-26.286 35.429-77.143 38.286-104 1.143-12-4.571-25.143-1.143-34.286 4-13.143 16.571-18.857 25.143-30.286 13.714-18.857 36.571-73.143 40-103.429 1.143-9.714-4.571-19.429-2.857-29.714 2.286-10.857 16-22.286 25.143-35.429 24-35.429 28.571-113.714 101.143-93.143l-0.571 1.714c9.714-2.286 19.429-5.143 29.143-5.143h434.857c26.857 0 50.857 12 65.143 32 14.857 20.571 18.286 47.429 10.286 74.286l-156.571 517.714c-26.857 88-41.714 107.429-114.286 107.429h-496.571c-7.429 0-16.571 1.714-21.714 8.571-4.571 6.857-5.143 12-0.571 24.571 11.429 33.143 50.857 40 82.286 40h527.429c21.143 0 45.714-12 52-32.571l171.429-564c3.429-10.857 3.429-22.286 2.857-32.571 13.143 5.143 25.143 13.143 33.714 24.571zM328.571 274.286c-3.429 10.286 2.286 18.286 12.571 18.286h347.429c9.714 0 20.571-8 24-18.286l12-36.571c3.429-10.286-2.286-18.286-12.571-18.286h-347.429c-9.714 0-20.571 8-24 18.286zM281.143 420.571c-3.429 10.286 2.286 18.286 12.571 18.286h347.429c9.714 0 20.571-8 24-18.286l12-36.571c3.429-10.286-2.286-18.286-12.571-18.286h-347.429c-9.714 0-20.571 8-24 18.286z\"\n        ],\n        \"width\": 952.5394285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"book\"\n        ],\n        \"defaultCode\": 61485,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"book\",\n        \"id\": 46,\n        \"order\": 902,\n        \"prevSize\": 28,\n        \"code\": 61485\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 46\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M665.143 73.143c8.571 0 17.143 1.714 25.143 5.143 25.143 9.714 41.143 33.143 41.143 58.857v736.571c0 25.714-16 49.143-41.143 58.857-8 3.429-16.571 4.571-25.143 4.571-17.714 0-34.286-6.286-47.429-18.286l-252-242.286-252 242.286c-13.143 12-29.714 18.857-47.429 18.857-8.571 0-17.143-1.714-25.143-5.143-25.143-9.714-41.143-33.143-41.143-58.857v-736.571c0-25.714 16-49.143 41.143-58.857 8-3.429 16.571-5.143 25.143-5.143h598.857z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bookmark\"\n        ],\n        \"defaultCode\": 61486,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bookmark\",\n        \"id\": 47,\n        \"order\": 903,\n        \"prevSize\": 28,\n        \"code\": 61486\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 47\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 877.714h512v-146.286h-512v146.286zM219.429 512h512v-219.429h-91.429c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-365.714v365.714zM877.714 548.571c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 548.571v237.714c0 9.714-8.571 18.286-18.286 18.286h-128v91.429c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-128c-9.714 0-18.286-8.571-18.286-18.286v-237.714c0-60 49.714-109.714 109.714-109.714h36.571v-310.857c0-30.286 24.571-54.857 54.857-54.857h384c30.286 0 72 17.143 93.714 38.857l86.857 86.857c21.714 21.714 38.857 63.429 38.857 93.714v146.286h36.571c60 0 109.714 49.714 109.714 109.714z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"print\"\n        ],\n        \"defaultCode\": 61487,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"print\",\n        \"id\": 48,\n        \"order\": 904,\n        \"prevSize\": 28,\n        \"code\": 61487\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 48\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M548.571 384c90.857 0 164.571 73.714 164.571 164.571s-73.714 164.571-164.571 164.571-164.571-73.714-164.571-164.571 73.714-164.571 164.571-164.571zM950.857 146.286c80.571 0 146.286 65.714 146.286 146.286v512c0 80.571-65.714 146.286-146.286 146.286h-804.571c-80.571 0-146.286-65.714-146.286-146.286v-512c0-80.571 65.714-146.286 146.286-146.286h128l29.143-77.714c14.286-37.714 58.857-68.571 98.857-68.571h292.571c40 0 84.571 30.857 98.857 68.571l29.143 77.714h128zM548.571 804.571c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"camera\"\n        ],\n        \"defaultCode\": 61488,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"camera\",\n        \"id\": 49,\n        \"order\": 905,\n        \"prevSize\": 28,\n        \"code\": 61488\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 49\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M414.286 319.429l-97.143 257.143c56.571 0.571 113.143 2.286 169.714 2.286 10.857 0 21.714-0.571 32.571-1.143-29.714-86.857-64.571-175.429-105.143-258.286zM0 950.857l1.143-45.143c53.714-16.571 112-5.143 136-66.857l135.429-352 160-413.714h73.143c2.286 4 4.571 8 6.286 12l117.143 274.286c42.857 101.143 82.286 203.429 125.714 304 25.714 59.429 45.714 120.571 74.286 178.857 4 9.143 12 26.286 20 32.571 18.857 14.857 71.429 18.286 98.286 28.571 1.714 10.857 3.429 21.714 3.429 32.571 0 5.143-0.571 9.714-0.571 14.857-72.571 0-145.143-9.143-217.714-9.143-74.857 0-149.714 6.286-224.571 8.571 0-14.857 0.571-29.714 2.286-44.571l74.857-16c15.429-3.429 45.714-7.429 45.714-28.571 0-20.571-73.714-190.286-82.857-213.714l-257.143-1.143c-14.857 33.143-72.571 182.857-72.571 204.571 0 44 84 45.714 116.571 50.286 0.571 10.857 0.571 21.714 0.571 33.143 0 5.143-0.571 10.286-1.143 15.429-66.286 0-133.143-11.429-199.429-11.429-8 0-19.429 3.429-27.429 4.571-36 6.286-71.429 8-107.429 8z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"font\"\n        ],\n        \"defaultCode\": 61489,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"font\",\n        \"id\": 50,\n        \"order\": 906,\n        \"prevSize\": 28,\n        \"code\": 61489\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 50\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M317.143 869.143c25.143 10.857 52.571 18.286 80 18.286 130.286 0 214.857-52 214.857-191.429 0-35.429-4.571-72.571-23.429-102.857-53.143-85.714-129.714-90.286-221.714-90.286-17.143 0-41.714 0-57.714 5.714 0 60.571-0.571 121.143-0.571 181.143 0 39.429-5.143 146.286 8.571 179.429zM309.143 442.857c20.571 3.429 41.714 4 62.286 4 117.714 0 201.714-33.143 201.714-165.143 0-111.429-98.857-149.714-194.286-149.714-25.143 0-49.714 3.429-74.286 7.429 0 57.714 4.571 115.429 4.571 173.143 0 30.286-0.571 60.571-0.571 90.857 0 13.143 0 26.286 0.571 39.429zM0 950.857l1.143-53.714c36.571-9.143 73.714-9.714 109.143-24.571 20-33.714 17.143-93.143 17.143-131.429 0-12.571 1.143-558.857-12.571-585.714-8.571-16.571-92.571-20.571-111.429-22.857l-2.286-47.429c136-2.286 272-12 407.429-12 25.714 0 52 0.571 77.714 0.571 129.143 0 271.429 61.714 271.429 210.286 0 102.286-77.714 140.571-158.286 177.143 108.571 24.571 205.143 98.286 205.143 218.286 0 196.571-178.857 261.714-346.286 261.714-50.286 0-100.571-3.429-150.857-3.429-102.286 0-205.714 9.143-307.429 13.143z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bold\"\n        ],\n        \"defaultCode\": 61490,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bold\",\n        \"id\": 51,\n        \"order\": 907,\n        \"prevSize\": 28,\n        \"code\": 61490\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 51\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 949.714l9.714-48.571c36.571-11.429 76-16 110.286-33.714 13.143-16.571 19.429-37.714 23.429-57.714 7.429-38.857 132-599.429 130.286-645.143v-14.286c-31.429-17.143-69.714-12.571-104-18.286l10.857-58.857c73.714 3.429 148.571 9.143 222.857 9.143 60.571 0 121.143-5.714 181.714-9.143-2.286 17.143-6.286 34.286-10.857 50.857-39.429 13.714-81.143 20-120 35.429-12.571 30.857-15.429 64.571-21.143 97.143-27.429 148-64 296-94.286 442.857-5.714 27.429-33.714 141.143-31.429 165.143l0.571 10.286c34.857 8 70.286 12 105.714 17.714-1.143 18.857-4.571 37.714-9.143 56.571-12.571 0-24.571 1.714-37.143 1.714-32.571 0-66.286-10.857-98.857-11.429-39.429-0.571-78.857-1.143-117.714-1.143-50.857 0-100.571 8.571-150.857 11.429z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"italic\"\n        ],\n        \"defaultCode\": 61491,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"italic\",\n        \"id\": 52,\n        \"order\": 908,\n        \"prevSize\": 28,\n        \"code\": 61491\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 52\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M996.571 804.571c25.143 0 33.143 16 17.714 36l-72 92.571c-15.429 20-40.571 20-56 0l-72-92.571c-15.429-20-7.429-36 17.714-36h45.714v-585.143h-45.714c-25.143 0-33.143-16-17.714-36l72-92.571c15.429-20 40.571-20 56 0l72 92.571c15.429 20 7.429 36-17.714 36h-45.714v585.143h45.714zM46.286 73.714l30.857 15.429c4 1.714 108.571 2.857 120.571 2.857 50.286 0 100.571-2.286 150.857-2.286 41.143 0 81.714 0.571 122.857 0.571h167.429c22.857 0 36 5.143 51.429-16.571l24-0.571c5.143 0 10.857 0.571 16 0.571 1.143 64 1.143 128 1.143 192 0 20 0.571 42.286-2.857 62.286-12.571 4.571-25.714 8.571-38.857 10.286-13.143-22.857-22.286-48-30.857-73.143-4-11.429-17.714-88.571-18.857-89.714-12-14.857-25.143-12-42.857-12-52 0-106.286-2.286-157.714 4-2.857 25.143-5.143 52-4.571 77.714 0.571 160.571 2.286 321.143 2.286 481.714 0 44-6.857 90.286 5.714 132.571 43.429 22.286 94.857 25.714 139.429 45.714 1.143 9.143 2.857 18.857 2.857 28.571 0 5.143-0.571 10.857-1.714 16.571l-19.429 0.571c-81.143 2.286-161.143-10.286-242.857-10.286-57.714 0-115.429 10.286-173.143 10.286-0.571-9.714-1.714-20-1.714-29.714v-5.143c21.714-34.857 100-35.429 136-56.571 12.571-28 10.857-182.857 10.857-218.857 0-115.429-3.429-230.857-3.429-346.286v-66.857c0-10.286 2.286-51.429-4.571-59.429-8-8.571-82.857-6.857-92.571-6.857-21.143 0-82.286 9.714-98.857 21.714-27.429 18.857-27.429 133.143-61.714 135.429-10.286-6.286-24.571-15.429-32-25.143v-218.857z\"\n        ],\n        \"width\": 1029.7051428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"text-height\"\n        ],\n        \"defaultCode\": 61492,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"text-height\",\n        \"id\": 53,\n        \"order\": 909,\n        \"prevSize\": 28,\n        \"code\": 61492\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 53\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M46.286 73.714l30.857 15.429c4 1.714 108.571 2.857 120.571 2.857 50.286 0 100.571-2.286 150.857-2.286 151.429 0 304.571-3.429 456 1.714 12.571 0.571 24.571-7.429 32-17.714l24-0.571c5.143 0 10.857 0.571 16 0.571 1.143 64 1.143 128 1.143 192 0 20.571 0.571 42.286-2.857 62.286-12.571 4.571-25.714 8.571-38.857 10.286-13.143-22.857-22.286-48-30.857-73.143-4-11.429-18.286-88.571-18.857-89.714-4-5.143-9.143-8.571-15.429-10.857-4.571-1.714-32-1.143-37.714-1.143-70.286 0-151.429-4-220.571 4-2.857 25.143-5.143 52-4.571 77.714l0.571 86.857v-29.714c0.571 93.143 1.714 185.714 1.714 278.286 0 44-6.857 90.286 5.714 132.571 43.429 22.286 94.857 25.714 139.429 45.714 1.143 9.143 2.857 18.857 2.857 28.571 0 5.143-0.571 10.857-1.714 16.571l-19.429 0.571c-81.143 2.286-161.143-10.286-242.857-10.286-57.714 0-115.429 10.286-173.143 10.286-0.571-9.714-1.714-20-1.714-29.714v-5.143c21.714-34.857 100-35.429 136-56.571 14.286-32 10.286-302.286 10.286-352.571 0-8-2.857-16.571-2.857-25.143 0-23.429 4-157.714-4.571-167.429-8-8.571-82.857-6.857-92.571-6.857-24 0-158.286 12.571-172 21.714-26.857 17.714-27.429 132.571-61.714 135.429-10.286-6.286-24.571-15.429-32-25.143v-218.857zM748.571 806.286c20 0 96 68 111.429 80 8.571 6.857 14.857 16.571 14.857 28s-6.286 21.143-14.857 28c-15.429 12-91.429 80-111.429 80-26.286 0-17.143-61.143-17.143-71.429h-585.143c0 10.286 9.143 71.429-17.143 71.429-20 0-96-68-111.429-80-8.571-6.857-14.857-16.571-14.857-28s6.286-21.143 14.857-28c15.429-12 91.429-80 111.429-80 26.286 0 17.143 61.143 17.143 71.429h585.143c0-10.286-9.143-71.429 17.143-71.429z\"\n        ],\n        \"width\": 878.2994285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"text-width\"\n        ],\n        \"defaultCode\": 61493,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"text-width\",\n        \"id\": 54,\n        \"order\": 910,\n        \"prevSize\": 28,\n        \"code\": 61493\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 54\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM804.571 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571zM950.857 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571zM731.429 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-658.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"align-left\"\n        ],\n        \"defaultCode\": 61494,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"align-left\",\n        \"id\": 55,\n        \"order\": 911,\n        \"prevSize\": 28,\n        \"code\": 61494\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 55\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM804.571 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571zM950.857 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM731.429 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h365.714c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"align-center\"\n        ],\n        \"defaultCode\": 61495,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"align-center\",\n        \"id\": 56,\n        \"order\": 912,\n        \"prevSize\": 28,\n        \"code\": 61495\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 56\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571zM1024 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571zM1024 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-658.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"align-right\"\n        ],\n        \"defaultCode\": 61496,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"align-right\",\n        \"id\": 57,\n        \"order\": 913,\n        \"prevSize\": 28,\n        \"code\": 61496\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 57\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 768v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 548.571v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 329.143v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 109.714v73.143c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"align-justify\"\n        ],\n        \"defaultCode\": 61497,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"align-justify\",\n        \"id\": 58,\n        \"order\": 914,\n        \"prevSize\": 28,\n        \"code\": 61497\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 58\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM146.286 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM146.286 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM146.286 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"list\"\n        ],\n        \"defaultCode\": 61498,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"list\",\n        \"id\": 59,\n        \"order\": 915,\n        \"prevSize\": 28,\n        \"code\": 61498\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 59\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 310.857v329.143c0 9.714-8.571 18.286-18.286 18.286-4.571 0-9.714-1.714-13.143-5.143l-164.571-164.571c-3.429-3.429-5.143-8.571-5.143-13.143s1.714-9.714 5.143-13.143l164.571-164.571c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8.571 18.286 18.286zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dedent\",\n          \"outdent\"\n        ],\n        \"defaultCode\": 61499,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"dedent, outdent\",\n        \"id\": 60,\n        \"order\": 916,\n        \"prevSize\": 28,\n        \"code\": 61499\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 60\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M201.143 475.429c0 4.571-1.714 9.714-5.143 13.143l-164.571 164.571c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-329.143c0-9.714 8.571-18.286 18.286-18.286 4.571 0 9.714 1.714 13.143 5.143l164.571 164.571c3.429 3.429 5.143 8.571 5.143 13.143zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286zM1024 530.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 310.857v109.714c0 9.714-8.571 18.286-18.286 18.286h-621.714c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h621.714c9.714 0 18.286 8.571 18.286 18.286zM1024 91.429v109.714c0 9.714-8.571 18.286-18.286 18.286h-987.429c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h987.429c9.714 0 18.286 8.571 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"indent\"\n        ],\n        \"defaultCode\": 61500,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"indent\",\n        \"id\": 61,\n        \"order\": 917,\n        \"prevSize\": 28,\n        \"code\": 61500\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 61\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 201.143v621.714c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-230.286-230.286v94.857c0 90.857-73.714 164.571-164.571 164.571h-402.286c-90.857 0-164.571-73.714-164.571-164.571v-402.286c0-90.857 73.714-164.571 164.571-164.571h402.286c90.857 0 164.571 73.714 164.571 164.571v94.286l230.286-229.714c6.857-7.429 16-10.857 25.714-10.857 4.571 0 9.714 1.143 14.286 2.857 13.143 5.714 22.286 18.857 22.286 33.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"video-camera\"\n        ],\n        \"defaultCode\": 61501,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"video-camera\",\n        \"id\": 62,\n        \"order\": 918,\n        \"prevSize\": 28,\n        \"code\": 61501\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 62\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 329.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM950.857 548.571v256h-804.571v-109.714l182.857-182.857 91.429 91.429 292.571-292.571zM1005.714 146.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v694.857c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286v-694.857c0-9.714-8.571-18.286-18.286-18.286zM1097.143 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"image\",\n          \"photo\",\n          \"picture-o\"\n        ],\n        \"defaultCode\": 61502,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"image, photo, picture-o\",\n        \"id\": 63,\n        \"order\": 919,\n        \"prevSize\": 28,\n        \"code\": 61502\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 63\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M207.429 877.714l52-52-134.286-134.286-52 52v61.143h73.143v73.143h61.143zM506.286 347.429c0-7.429-5.143-12.571-12.571-12.571-3.429 0-6.857 1.143-9.714 4l-309.714 309.714c-2.857 2.857-4 6.286-4 9.714 0 7.429 5.143 12.571 12.571 12.571 3.429 0 6.857-1.143 9.714-4l309.714-309.714c2.857-2.857 4-6.286 4-9.714zM475.429 237.714l237.714 237.714-475.429 475.429h-237.714v-237.714zM865.714 292.571c0 19.429-8 38.286-21.143 51.429l-94.857 94.857-237.714-237.714 94.857-94.286c13.143-13.714 32-21.714 51.429-21.714s38.286 8 52 21.714l134.286 133.714c13.143 13.714 21.143 32.571 21.143 52z\"\n        ],\n        \"width\": 865.7188571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pencil\"\n        ],\n        \"defaultCode\": 61504,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pencil\",\n        \"id\": 64,\n        \"order\": 920,\n        \"prevSize\": 28,\n        \"code\": 61504\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 64\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 365.714c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM585.143 365.714c0 34.857-4 70.857-18.857 102.286l-208 442.286c-12 25.143-38.286 40.571-65.714 40.571s-53.714-15.429-65.143-40.571l-208.571-442.286c-14.857-31.429-18.857-67.429-18.857-102.286 0-161.714 130.857-292.571 292.571-292.571s292.571 130.857 292.571 292.571z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"map-marker\"\n        ],\n        \"defaultCode\": 61505,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"map-marker\",\n        \"id\": 65,\n        \"order\": 921,\n        \"prevSize\": 28,\n        \"code\": 61505\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 65\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 822.857v-621.714c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"adjust\"\n        ],\n        \"defaultCode\": 61506,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"adjust\",\n        \"id\": 66,\n        \"order\": 922,\n        \"prevSize\": 28,\n        \"code\": 61506\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 66\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 658.286c0-14.286-4.571-28-11.429-39.429-7.429-11.429-37.714-50.286-49.714-88.571-1.714-6.286-7.429-9.143-12-9.143s-10.286 2.857-12 9.143c-12 38.286-42.286 77.143-49.714 88.571-6.857 11.429-11.429 25.143-11.429 39.429 0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143zM585.143 585.143c0 161.714-130.857 292.571-292.571 292.571s-292.571-130.857-292.571-292.571c0-57.714 17.714-111.429 46.286-157.143 29.143-45.714 151.429-200.571 197.714-354.857 7.429-24.571 30.286-36.571 48.571-36.571s41.714 12 48.571 36.571c46.286 154.286 168.571 309.143 197.714 354.857s46.286 99.429 46.286 157.143z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tint\"\n        ],\n        \"defaultCode\": 61507,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tint\",\n        \"id\": 67,\n        \"order\": 923,\n        \"prevSize\": 28,\n        \"code\": 61507\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 67\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M507.429 676.571l66.286-66.286-86.857-86.857-66.286 66.286v32h54.857v54.857h32zM758.857 265.143c-5.143-5.143-13.714-4.571-18.857 0.571l-200 200c-5.143 5.143-5.714 13.714-0.571 18.857s13.714 4.571 18.857-0.571l200-200c5.143-5.143 5.714-13.714 0.571-18.857zM804.571 604.571v108.571c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c22.857 0 45.714 4.571 66.857 14.286 5.143 2.286 9.143 7.429 10.286 13.143 1.143 6.286-0.571 12-5.143 16.571l-28 28c-5.143 5.143-12 6.857-18.286 4.571-8.571-2.286-17.143-3.429-25.714-3.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-72c0-4.571 1.714-9.143 5.143-12.571l36.571-36.571c5.714-5.714 13.143-6.857 20-4s11.429 9.143 11.429 16.571zM749.714 182.857l164.571 164.571-384 384h-164.571v-164.571zM1003.429 258.286l-52.571 52.571-164.571-164.571 52.571-52.571c21.143-21.143 56.571-21.143 77.714 0l86.857 86.857c21.143 21.143 21.143 56.571 0 77.714z\"\n        ],\n        \"width\": 1024.5851428571427,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"edit\",\n          \"pencil-square-o\"\n        ],\n        \"defaultCode\": 61508,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"edit, pencil-square-o\",\n        \"id\": 68,\n        \"order\": 924,\n        \"prevSize\": 28,\n        \"code\": 61508\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 68\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 565.143v148c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h145.714c9.714 0 18.286 8 18.286 18.286 0 9.143-6.286 16.571-14.857 18.286-28.571 9.714-54.286 21.143-76 34.286-2.857 1.143-5.714 2.286-9.143 2.286h-64c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-122.286c0-6.857 4-13.143 10.286-16.571 11.429-5.143 21.714-12.571 30.857-21.143 5.143-5.143 13.143-7.429 20-4.571s12 9.143 12 16.571zM940 281.714l-219.429 219.429c-6.857 7.429-16 10.857-25.714 10.857-4.571 0-9.714-1.143-14.286-2.857-13.143-5.714-22.286-18.857-22.286-33.714v-109.714h-91.429c-125.714 0-205.714 24-250.286 74.857-46.286 53.143-60 138.857-42.286 270.286 1.143 8-4 16-11.429 19.429-2.286 0.571-4.571 1.143-6.857 1.143-5.714 0-11.429-2.857-14.857-7.429-4-5.714-94.857-134.286-94.857-248.571 0-153.143 48-329.143 420.571-329.143h91.429v-109.714c0-14.857 9.143-28 22.286-33.714 4.571-1.714 9.714-2.857 14.286-2.857 9.714 0 18.857 4 25.714 10.857l219.429 219.429c14.286 14.286 14.286 37.143 0 51.429z\"\n        ],\n        \"width\": 954.2948571428572,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"share-square-o\"\n        ],\n        \"defaultCode\": 61509,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"share-square-o\",\n        \"id\": 69,\n        \"order\": 925,\n        \"prevSize\": 28,\n        \"code\": 61509\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 69\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 531.429v181.714c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c22.857 0 45.714 4.571 66.857 14.286 5.143 2.286 9.143 7.429 10.286 13.143 1.143 6.286-0.571 12-5.143 16.571l-28 28c-3.429 3.429-8.571 5.714-13.143 5.714-1.714 0-3.429-0.571-5.143-1.143-8.571-2.286-17.143-3.429-25.714-3.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-145.143c0-4.571 1.714-9.143 5.143-12.571l36.571-36.571c4-4 8.571-5.714 13.143-5.714 2.286 0 4.571 0.571 6.857 1.714 6.857 2.857 11.429 9.143 11.429 16.571zM936.571 252l-465.143 465.143c-18.286 18.286-46.857 18.286-65.143 0l-245.714-245.714c-18.286-18.286-18.286-46.857 0-65.143l62.857-62.857c18.286-18.286 46.857-18.286 65.143 0l150.286 150.286 369.714-369.714c18.286-18.286 46.857-18.286 65.143 0l62.857 62.857c18.286 18.286 18.286 46.857 0 65.143z\"\n        ],\n        \"width\": 954.8799999999999,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check-square-o\"\n        ],\n        \"defaultCode\": 61510,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"check-square-o\",\n        \"id\": 70,\n        \"order\": 926,\n        \"prevSize\": 28,\n        \"code\": 61510\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 70\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 512c0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-73.143h-219.429v219.429h73.143c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h73.143v-219.429h-219.429v73.143c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v73.143h219.429v-219.429h-73.143c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-73.143v219.429h219.429v-73.143c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrows\"\n        ],\n        \"defaultCode\": 61511,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrows\",\n        \"id\": 71,\n        \"order\": 927,\n        \"prevSize\": 28,\n        \"code\": 61511\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 71\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M559.429 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v387.429c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v387.429c1.714-4 4-7.429 7.429-10.857z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"step-backward\"\n        ],\n        \"defaultCode\": 61512,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"step-backward\",\n        \"id\": 72,\n        \"order\": 928,\n        \"prevSize\": 28,\n        \"code\": 61512\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 72\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M998.286 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v405.714c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v387.429c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v387.429c1.714-4 4-7.429 7.429-10.857l405.714-405.714c14.286-14.286 25.714-9.143 25.714 10.857v405.714c1.714-4 4-7.429 7.429-10.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fast-backward\"\n        ],\n        \"defaultCode\": 61513,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fast-backward\",\n        \"id\": 73,\n        \"order\": 929,\n        \"prevSize\": 28,\n        \"code\": 61513\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 73\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M925.143 80.571c14.286-14.286 25.714-9.143 25.714 10.857v841.143c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-3.429-3.429-5.714-6.857-7.429-10.857v405.714c0 20-11.429 25.143-25.714 10.857l-405.714-405.714c-14.286-14.286-14.286-37.143 0-51.429l405.714-405.714c14.286-14.286 25.714-9.143 25.714 10.857v405.714c1.714-4 4-7.429 7.429-10.857z\"\n        ],\n        \"width\": 1017.1245714285715,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"backward\"\n        ],\n        \"defaultCode\": 61514,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"backward\",\n        \"id\": 74,\n        \"order\": 930,\n        \"prevSize\": 28,\n        \"code\": 61514\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 74\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M790.857 529.714l-758.857 421.714c-17.714 9.714-32 1.143-32-18.857v-841.143c0-20 14.286-28.571 32-18.857l758.857 421.714c17.714 9.714 17.714 25.714 0 35.429z\"\n        ],\n        \"width\": 808.5942857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"play\"\n        ],\n        \"defaultCode\": 61515,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"play\",\n        \"id\": 75,\n        \"order\": 931,\n        \"prevSize\": 28,\n        \"code\": 61515\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 75\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571zM365.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pause\"\n        ],\n        \"defaultCode\": 61516,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pause\",\n        \"id\": 76,\n        \"order\": 932,\n        \"prevSize\": 28,\n        \"code\": 61516\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 76\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stop\"\n        ],\n        \"defaultCode\": 61517,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"stop\",\n        \"id\": 77,\n        \"order\": 933,\n        \"prevSize\": 28,\n        \"code\": 61517\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 77\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-405.714c0-20 11.429-25.143 25.714-10.857l405.714 405.714c14.286 14.286 14.286 37.143 0 51.429l-405.714 405.714c-14.286 14.286-25.714 9.143-25.714-10.857v-405.714c-1.714 4-4 7.429-7.429 10.857z\"\n        ],\n        \"width\": 884.5897142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"forward\"\n        ],\n        \"defaultCode\": 61518,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"forward\",\n        \"id\": 78,\n        \"order\": 934,\n        \"prevSize\": 28,\n        \"code\": 61518\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 78\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-405.714c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-387.429c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v804.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-387.429c-1.714 4-4 7.429-7.429 10.857l-405.714 405.714c-14.286 14.286-25.714 9.143-25.714-10.857v-405.714c-1.714 4-4 7.429-7.429 10.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fast-forward\"\n        ],\n        \"defaultCode\": 61520,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fast-forward\",\n        \"id\": 79,\n        \"order\": 935,\n        \"prevSize\": 28,\n        \"code\": 61520\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 79\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M25.714 943.429c-14.286 14.286-25.714 9.143-25.714-10.857v-841.143c0-20 11.429-25.143 25.714-10.857l405.714 405.714c3.429 3.429 5.714 6.857 7.429 10.857v-387.429c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v804.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-387.429c-1.714 4-4 7.429-7.429 10.857z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"step-forward\"\n        ],\n        \"defaultCode\": 61521,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"step-forward\",\n        \"id\": 80,\n        \"order\": 936,\n        \"prevSize\": 28,\n        \"code\": 61521\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 80\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M8 559.429l405.714-405.714c14.286-14.286 37.143-14.286 51.429 0l405.714 405.714c14.286 14.286 9.143 25.714-10.857 25.714h-841.143c-20 0-25.143-11.429-10.857-25.714zM841.714 877.714h-804.571c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571z\"\n        ],\n        \"width\": 878.8845714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"eject\"\n        ],\n        \"defaultCode\": 61522,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"eject\",\n        \"id\": 81,\n        \"order\": 937,\n        \"prevSize\": 28,\n        \"code\": 61522\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 81\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M669.143 172l-303.429 303.429 303.429 303.429c14.286 14.286 14.286 37.143 0 51.429l-94.857 94.857c-14.286 14.286-37.143 14.286-51.429 0l-424-424c-14.286-14.286-14.286-37.143 0-51.429l424-424c14.286-14.286 37.143-14.286 51.429 0l94.857 94.857c14.286 14.286 14.286 37.143 0 51.429z\"\n        ],\n        \"width\": 768,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chevron-left\"\n        ],\n        \"defaultCode\": 61523,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chevron-left\",\n        \"id\": 82,\n        \"order\": 938,\n        \"prevSize\": 28,\n        \"code\": 61523\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 82\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M632.571 501.143l-424 424c-14.286 14.286-37.143 14.286-51.429 0l-94.857-94.857c-14.286-14.286-14.286-37.143 0-51.429l303.429-303.429-303.429-303.429c-14.286-14.286-14.286-37.143 0-51.429l94.857-94.857c14.286-14.286 37.143-14.286 51.429 0l424 424c14.286 14.286 14.286 37.143 0 51.429z\"\n        ],\n        \"width\": 694.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chevron-right\"\n        ],\n        \"defaultCode\": 61524,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chevron-right\",\n        \"id\": 83,\n        \"order\": 939,\n        \"prevSize\": 28,\n        \"code\": 61524\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 83\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M694.857 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-146.286v-146.286c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v146.286h-146.286c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h146.286v146.286c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-146.286h146.286c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"plus-circle\"\n        ],\n        \"defaultCode\": 61525,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"plus-circle\",\n        \"id\": 84,\n        \"order\": 940,\n        \"prevSize\": 28,\n        \"code\": 61525\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 84\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M694.857 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-438.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h438.857c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"minus-circle\"\n        ],\n        \"defaultCode\": 61526,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"minus-circle\",\n        \"id\": 85,\n        \"order\": 941,\n        \"prevSize\": 28,\n        \"code\": 61526\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 85\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M656.571 641.143c0-9.714-4-18.857-10.857-25.714l-103.429-103.429 103.429-103.429c6.857-6.857 10.857-16 10.857-25.714s-4-19.429-10.857-26.286l-51.429-51.429c-6.857-6.857-16.571-10.857-26.286-10.857s-18.857 4-25.714 10.857l-103.429 103.429-103.429-103.429c-6.857-6.857-16-10.857-25.714-10.857s-19.429 4-26.286 10.857l-51.429 51.429c-6.857 6.857-10.857 16.571-10.857 26.286s4 18.857 10.857 25.714l103.429 103.429-103.429 103.429c-6.857 6.857-10.857 16-10.857 25.714s4 19.429 10.857 26.286l51.429 51.429c6.857 6.857 16.571 10.857 26.286 10.857s18.857-4 25.714-10.857l103.429-103.429 103.429 103.429c6.857 6.857 16 10.857 25.714 10.857s19.429-4 26.286-10.857l51.429-51.429c6.857-6.857 10.857-16.571 10.857-26.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"times-circle\"\n        ],\n        \"defaultCode\": 61527,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"times-circle\",\n        \"id\": 86,\n        \"order\": 942,\n        \"prevSize\": 28,\n        \"code\": 61527\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 86\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M733.714 419.429c0-9.714-3.429-19.429-10.286-26.286l-52-51.429c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-233.143 232.571-129.143-129.143c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-52 51.429c-6.857 6.857-10.286 16.571-10.286 26.286s3.429 18.857 10.286 25.714l206.857 206.857c6.857 6.857 16.571 10.857 25.714 10.857 9.714 0 19.429-4 26.286-10.857l310.286-310.286c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check-circle\"\n        ],\n        \"defaultCode\": 61528,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"check-circle\",\n        \"id\": 87,\n        \"order\": 943,\n        \"prevSize\": 28,\n        \"code\": 61528\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 87\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM658.286 402.286c0-104.571-109.714-182.857-208-182.857-93.143 0-162.857 40-212 121.714-5.143 8-2.857 18.286 4.571 24l75.429 57.143c2.857 2.286 6.857 3.429 10.857 3.429 5.143 0 10.857-2.286 14.286-6.857 26.857-34.286 38.286-44.571 49.143-52.571 9.714-6.857 28.571-13.714 49.143-13.714 36.571 0 70.286 23.429 70.286 48.571 0 29.714-15.429 44.571-50.286 60.571-40.571 18.286-96 65.714-96 121.143v20.571c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v0c0-13.143 16.571-41.143 43.429-56.571 43.429-24.571 102.857-57.714 102.857-144.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"question-circle\"\n        ],\n        \"defaultCode\": 61529,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"question-circle\",\n        \"id\": 88,\n        \"order\": 944,\n        \"prevSize\": 28,\n        \"code\": 61529\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 88\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 786.286v-91.429c0-10.286-8-18.286-18.286-18.286h-54.857v-292.571c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h54.857v182.857h-54.857c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h256c10.286 0 18.286-8 18.286-18.286zM512 274.286v-91.429c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v91.429c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"info-circle\"\n        ],\n        \"defaultCode\": 61530,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"info-circle\",\n        \"id\": 89,\n        \"order\": 945,\n        \"prevSize\": 28,\n        \"code\": 61530\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 89\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M684 585.143h-62.286c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h62.286c-24.571-82.286-89.714-147.429-172-172v62.286c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-62.286c-82.286 24.571-147.429 89.714-172 172h62.286c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-62.286c24.571 82.286 89.714 147.429 172 172v-62.286c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v62.286c82.286-24.571 147.429-89.714 172-172zM877.714 475.429v73.143c0 20-16.571 36.571-36.571 36.571h-81.714c-28 122.857-124.571 219.429-247.429 247.429v81.714c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-81.714c-122.857-28-219.429-124.571-247.429-247.429h-81.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h81.714c28-122.857 124.571-219.429 247.429-247.429v-81.714c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v81.714c122.857 28 219.429 124.571 247.429 247.429h81.714c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crosshairs\"\n        ],\n        \"defaultCode\": 61531,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"crosshairs\",\n        \"id\": 90,\n        \"order\": 946,\n        \"prevSize\": 28,\n        \"code\": 61531\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 90\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M626.857 616.571l-83.429 83.429c-7.429 7.429-18.857 7.429-26.286 0l-78.286-78.286-78.286 78.286c-7.429 7.429-18.857 7.429-26.286 0l-83.429-83.429c-7.429-7.429-7.429-18.857 0-26.286l78.286-78.286-78.286-78.286c-7.429-7.429-7.429-18.857 0-26.286l83.429-83.429c7.429-7.429 18.857-7.429 26.286 0l78.286 78.286 78.286-78.286c7.429-7.429 18.857-7.429 26.286 0l83.429 83.429c7.429 7.429 7.429 18.857 0 26.286l-78.286 78.286 78.286 78.286c7.429 7.429 7.429 18.857 0 26.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"times-circle-o\"\n        ],\n        \"defaultCode\": 61532,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"times-circle-o\",\n        \"id\": 91,\n        \"order\": 947,\n        \"prevSize\": 28,\n        \"code\": 61532\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 91\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M669.143 464.571l-241.143 241.143c-14.286 14.286-37.143 14.286-51.429 0l-168-168c-14.286-14.286-14.286-37.143 0-51.429l58.286-58.286c14.286-14.286 37.143-14.286 51.429 0l84 84 157.143-157.143c14.286-14.286 37.143-14.286 51.429 0l58.286 58.286c14.286 14.286 14.286 37.143 0 51.429zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check-circle-o\"\n        ],\n        \"defaultCode\": 61533,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"check-circle-o\",\n        \"id\": 92,\n        \"order\": 948,\n        \"prevSize\": 28,\n        \"code\": 61533\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 92\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M749.714 510.286c0-62.286-18.286-120-49.714-168.571l-430.857 430.286c49.143 32 107.429 50.857 169.714 50.857 171.429 0 310.857-140 310.857-312.571zM178.857 681.143l431.429-430.857c-49.143-33.143-108-52-171.429-52-171.429 0-310.857 140-310.857 312 0 63.429 18.857 121.714 50.857 170.857zM877.714 510.286c0 243.429-196.571 440.571-438.857 440.571s-438.857-197.143-438.857-440.571c0-242.857 196.571-440 438.857-440s438.857 197.143 438.857 440z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ban\"\n        ],\n        \"defaultCode\": 61534,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ban\",\n        \"id\": 93,\n        \"order\": 949,\n        \"prevSize\": 28,\n        \"code\": 61534\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 93\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 512v73.143c0 38.857-25.714 73.143-66.857 73.143h-402.286l167.429 168c13.714 13.143 21.714 32 21.714 51.429s-8 38.286-21.714 51.429l-42.857 43.429c-13.143 13.143-32 21.143-51.429 21.143s-38.286-8-52-21.143l-372-372.571c-13.143-13.143-21.143-32-21.143-51.429s8-38.286 21.143-52l372-371.429c13.714-13.714 32.571-21.714 52-21.714s37.714 8 51.429 21.714l42.857 42.286c13.714 13.714 21.714 32.571 21.714 52s-8 38.286-21.714 52l-167.429 167.429h402.286c41.143 0 66.857 34.286 66.857 73.143z\"\n        ],\n        \"width\": 914.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-left\"\n        ],\n        \"defaultCode\": 61536,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-left\",\n        \"id\": 94,\n        \"order\": 950,\n        \"prevSize\": 28,\n        \"code\": 61536\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 94\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M841.143 548.571c0 19.429-7.429 38.286-21.143 52l-372 372c-13.714 13.143-32.571 21.143-52 21.143s-37.714-8-51.429-21.143l-42.857-42.857c-13.714-13.714-21.714-32.571-21.714-52s8-38.286 21.714-52l167.429-167.429h-402.286c-41.143 0-66.857-34.286-66.857-73.143v-73.143c0-38.857 25.714-73.143 66.857-73.143h402.286l-167.429-168c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-51.429l42.857-42.857c13.714-13.714 32-21.714 51.429-21.714s38.286 8 52 21.714l372 372c13.714 13.143 21.143 32 21.143 51.429z\"\n        ],\n        \"width\": 841.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-right\"\n        ],\n        \"defaultCode\": 61537,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-right\",\n        \"id\": 95,\n        \"order\": 951,\n        \"prevSize\": 28,\n        \"code\": 61537\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 95\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M920.571 554.857c0 19.429-8 37.714-21.143 51.429l-42.857 42.857c-13.714 13.714-32.571 21.714-52 21.714s-38.286-8-51.429-21.714l-168-167.429v402.286c0 41.143-34.286 66.857-73.143 66.857h-73.143c-38.857 0-73.143-25.714-73.143-66.857v-402.286l-168 167.429c-13.143 13.714-32 21.714-51.429 21.714s-38.286-8-51.429-21.714l-42.857-42.857c-13.714-13.714-21.714-32-21.714-51.429s8-38.286 21.714-52l372-372c13.143-13.714 32-21.143 51.429-21.143s38.286 7.429 52 21.143l372 372c13.143 13.714 21.143 32.571 21.143 52z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-up\"\n        ],\n        \"defaultCode\": 61538,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-up\",\n        \"id\": 96,\n        \"order\": 952,\n        \"prevSize\": 28,\n        \"code\": 61538\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 96\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M920.571 475.429c0 19.429-8 38.286-21.143 51.429l-372 372.571c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-372-372.571c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-52l42.286-42.857c13.714-13.143 32.571-21.143 52-21.143s38.286 8 51.429 21.143l168 168v-402.286c0-40 33.143-73.143 73.143-73.143h73.143c40 0 73.143 33.143 73.143 73.143v402.286l168-168c13.143-13.143 32-21.143 51.429-21.143s38.286 8 52 21.143l42.857 42.857c13.143 13.714 21.143 32.571 21.143 52z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-down\"\n        ],\n        \"defaultCode\": 61539,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-down\",\n        \"id\": 97,\n        \"order\": 953,\n        \"prevSize\": 28,\n        \"code\": 61539\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 97\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 365.714c0 9.714-4 18.857-10.857 25.714l-292.571 292.571c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-146.286h-128c-246.286 0-408 47.429-408 320 0 23.429 1.143 46.857 2.857 70.286 0.571 9.143 2.857 19.429 2.857 28.571 0 10.857-6.857 20-18.286 20-8 0-12-4-16-9.714-8.571-12-14.857-30.286-21.143-43.429-32.571-73.143-72.571-177.714-72.571-257.714 0-64 6.286-129.714 30.286-190.286 79.429-197.143 312.571-230.286 500-230.286h128v-146.286c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l292.571 292.571c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mail-forward\",\n          \"share\"\n        ],\n        \"defaultCode\": 61540,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mail-forward, share\",\n        \"id\": 98,\n        \"order\": 954,\n        \"prevSize\": 28,\n        \"code\": 61540\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 98\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M431.429 603.429c0 4.571-2.286 9.714-5.714 13.143l-189.714 189.714 82.286 82.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l82.286 82.286 189.714-189.714c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l65.143 65.143c3.429 3.429 5.714 8.571 5.714 13.143zM877.714 109.714v256c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-82.286-82.286-189.714 189.714c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-65.143-65.143c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l189.714-189.714-82.286-82.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"expand\"\n        ],\n        \"defaultCode\": 61541,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"expand\",\n        \"id\": 99,\n        \"order\": 955,\n        \"prevSize\": 28,\n        \"code\": 61541\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 99\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 548.571v256c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-82.286-82.286-189.714 189.714c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-65.143-65.143c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l189.714-189.714-82.286-82.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h256c20 0 36.571 16.571 36.571 36.571zM870.286 164.571c0 4.571-2.286 9.714-5.714 13.143l-189.714 189.714 82.286 82.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l82.286 82.286 189.714-189.714c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l65.143 65.143c3.429 3.429 5.714 8.571 5.714 13.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"compress\"\n        ],\n        \"defaultCode\": 61542,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"compress\",\n        \"id\": 100,\n        \"order\": 956,\n        \"prevSize\": 28,\n        \"code\": 61542\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 100\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM512 785.714v-108.571c0-10.286-8-18.857-17.714-18.857h-109.714c-10.286 0-18.857 8.571-18.857 18.857v108.571c0 10.286 8.571 18.857 18.857 18.857h109.714c9.714 0 17.714-8.571 17.714-18.857zM510.857 589.143l10.286-354.857c0-4-1.714-8-5.714-10.286-3.429-2.857-8.571-4.571-13.714-4.571h-125.714c-5.143 0-10.286 1.714-13.714 4.571-4 2.286-5.714 6.286-5.714 10.286l9.714 354.857c0 8 8.571 14.286 19.429 14.286h105.714c10.286 0 18.857-6.286 19.429-14.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exclamation-circle\"\n        ],\n        \"defaultCode\": 61546,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"exclamation-circle\",\n        \"id\": 101,\n        \"order\": 957,\n        \"prevSize\": 28,\n        \"code\": 61546\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 101\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M530.286 774.857v-409.143h-182.857v409.143c0 20 16.571 29.714 36.571 29.714h109.714c20 0 36.571-9.714 36.571-29.714zM269.714 292.571h111.429l-72-92c-6.286-7.429-20-17.714-39.429-17.714-30.286 0-54.857 24.571-54.857 54.857s24.571 54.857 54.857 54.857zM662.857 237.714c0-30.286-24.571-54.857-54.857-54.857-19.429 0-33.143 10.286-39.429 17.714l-71.429 92h110.857c30.286 0 54.857-24.571 54.857-54.857zM877.714 384v182.857c0 10.286-8 18.286-18.286 18.286h-54.857v237.714c0 30.286-24.571 54.857-54.857 54.857h-621.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-54.857c-10.286 0-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286h251.429c-70.857 0-128-57.143-128-128s57.143-128 128-128c38.286 0 73.714 16 96 44l73.143 94.286 73.143-94.286c22.286-28 57.714-44 96-44 70.857 0 128 57.143 128 128s-57.143 128-128 128h251.429c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gift\"\n        ],\n        \"defaultCode\": 61547,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"gift\",\n        \"id\": 102,\n        \"order\": 958,\n        \"prevSize\": 28,\n        \"code\": 61547\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 102\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 402.286c0-20-16.571-36.571-36.571-36.571-202.286 0-332.571 84.571-464.571 230.286-6.857 7.429-10.857 15.429-10.857 25.714 0 20 16.571 36.571 36.571 36.571 10.286 0 18.286-4 25.714-10.857 28-25.143 53.143-52.571 80.571-78.286 103.429-93.143 192-130.286 332.571-130.286 20 0 36.571-16.571 36.571-36.571zM1024 289.143c0 36.571-4 73.714-11.429 110.286-36.571 177.714-150.857 293.143-309.714 372-77.143 38.857-163.429 61.714-250.286 61.714-54.857 0-111.429-9.143-163.429-26.857-27.429-9.143-82.286-45.143-105.143-45.143-28.571 0-62.857 116.571-112.571 116.571-36 0-46.857-17.714-62.286-44-5.143-9.714-9.143-13.143-9.143-25.143 0-59.429 113.143-105.714 113.143-138.857 0-5.143-14.857-35.429-17.143-46.857-3.429-19.429-5.143-39.429-5.143-59.429 0-181.714 144.571-311.429 306.857-365.143 117.143-38.857 366.286 6.286 445.714-69.143 31.429-29.143 46.857-56 94.857-56 64.571 0 85.714 167.429 85.714 216z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"leaf\"\n        ],\n        \"defaultCode\": 61548,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"leaf\",\n        \"id\": 103,\n        \"order\": 959,\n        \"prevSize\": 28,\n        \"code\": 61548\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 103\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 969.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-768c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h768c9.714 0 18.286 8.571 18.286 18.286zM658.286 365.714c0 218.857-256 238.286-256 384 0 40 20 93.143 38.286 128l-2.286-0.571 0.571 0.571c-157.714-72.571-292.571-172.571-292.571-365.714 0-218.857 256-238.286 256-384 0-40-20-93.143-37.714-128l1.714 0.571-0.571-0.571c157.714 72.571 292.571 172.571 292.571 365.714z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fire\"\n        ],\n        \"defaultCode\": 61549,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fire\",\n        \"id\": 104,\n        \"order\": 960,\n        \"prevSize\": 28,\n        \"code\": 61549\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 104\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 548.571c-54.286-84-128.571-156-217.714-201.714 22.857 38.857 34.857 83.429 34.857 128.571 0 141.143-114.857 256-256 256s-256-114.857-256-256c0-45.143 12-89.714 34.857-128.571-89.143 45.714-163.429 117.714-217.714 201.714 97.714 150.857 255.429 256 438.857 256s341.143-105.143 438.857-256zM539.429 329.143c0-14.857-12.571-27.429-27.429-27.429-95.429 0-173.714 78.286-173.714 173.714 0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-65.143 53.714-118.857 118.857-118.857 14.857 0 27.429-12.571 27.429-27.429zM1024 548.571c0 14.286-4.571 27.429-11.429 39.429-105.143 173.143-297.714 289.714-500.571 289.714s-395.429-117.143-500.571-289.714c-6.857-12-11.429-25.143-11.429-39.429s4.571-27.429 11.429-39.429c105.143-172.571 297.714-289.714 500.571-289.714s395.429 117.143 500.571 289.714c6.857 12 11.429 25.143 11.429 39.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"eye\"\n        ],\n        \"defaultCode\": 61550,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"eye\",\n        \"id\": 105,\n        \"order\": 961,\n        \"prevSize\": 28,\n        \"code\": 61550\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 105\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M317.143 762.857l44.571-80.571c-66.286-48-105.714-125.143-105.714-206.857 0-45.143 12-89.714 34.857-128.571-89.143 45.714-163.429 117.714-217.714 201.714 59.429 92 143.429 169.143 244 214.286zM539.429 329.143c0-14.857-12.571-27.429-27.429-27.429-95.429 0-173.714 78.286-173.714 173.714 0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-65.714 53.714-118.857 118.857-118.857 14.857 0 27.429-12.571 27.429-27.429zM746.857 220c0 1.143 0 4-0.571 5.143-120.571 215.429-240 432-360.571 647.429l-28 50.857c-3.429 5.714-9.714 9.143-16 9.143-10.286 0-64.571-33.143-76.571-40-5.714-3.429-9.143-9.143-9.143-16 0-9.143 19.429-40 25.143-49.714-110.857-50.286-204-136-269.714-238.857-7.429-11.429-11.429-25.143-11.429-39.429 0-13.714 4-28 11.429-39.429 113.143-173.714 289.714-289.714 500.571-289.714 34.286 0 69.143 3.429 102.857 9.714l30.857-55.429c3.429-5.714 9.143-9.143 16-9.143 10.286 0 64 33.143 76 40 5.714 3.429 9.143 9.143 9.143 15.429zM768 475.429c0 106.286-65.714 201.143-164.571 238.857l160-286.857c2.857 16 4.571 32 4.571 48zM1024 548.571c0 14.857-4 26.857-11.429 39.429-17.714 29.143-40 57.143-62.286 82.857-112 128.571-266.286 206.857-438.286 206.857l42.286-75.429c166.286-14.286 307.429-115.429 396.571-253.714-42.286-65.714-96.571-123.429-161.143-168l36-64c70.857 47.429 142.286 118.857 186.857 192.571 7.429 12.571 11.429 24.571 11.429 39.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"eye-slash\"\n        ],\n        \"defaultCode\": 61552,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"eye-slash\",\n        \"id\": 106,\n        \"order\": 962,\n        \"prevSize\": 28,\n        \"code\": 61552\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 106\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 785.714v-108.571c0-10.286-8-18.857-18.286-18.857h-109.714c-10.286 0-18.286 8.571-18.286 18.857v108.571c0 10.286 8 18.857 18.286 18.857h109.714c10.286 0 18.286-8.571 18.286-18.857zM584 572l10.286-262.286c0-3.429-1.714-8-5.714-10.857-3.429-2.857-8.571-6.286-13.714-6.286h-125.714c-5.143 0-10.286 3.429-13.714 6.286-4 2.857-5.714 8.571-5.714 12l9.714 261.143c0 7.429 8.571 13.143 19.429 13.143h105.714c10.286 0 18.857-5.714 19.429-13.143zM576 38.286l438.857 804.571c12.571 22.286 12 49.714-1.143 72s-37.143 36-62.857 36h-877.714c-25.714 0-49.714-13.714-62.857-36s-13.714-49.714-1.143-72l438.857-804.571c12.571-23.429 37.143-38.286 64-38.286s51.429 14.857 64 38.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exclamation-triangle\",\n          \"warning\"\n        ],\n        \"defaultCode\": 61553,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"exclamation-triangle, warning\",\n        \"id\": 107,\n        \"order\": 963,\n        \"prevSize\": 28,\n        \"code\": 61553\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 107\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M786.286 91.429c36.571 36.571 0 128-54.857 182.857l-92 92 91.429 397.714c1.714 6.857-1.143 14.286-6.857 18.857l-73.143 54.857c-2.857 2.286-6.857 3.429-10.857 3.429-1.143 0-2.286 0-4-0.571-5.143-1.143-9.714-4-12-9.143l-159.429-290.286-148 148 30.286 110.857c1.714 6.286 0 12.571-4.571 17.714l-54.857 54.857c-3.429 3.429-8.571 5.143-13.143 5.143h-1.143c-5.714-0.571-10.286-2.857-13.714-7.429l-108-144-144-108c-4.571-2.857-6.857-8-7.429-13.143s1.714-10.286 5.143-14.286l54.857-55.429c3.429-3.429 8.571-5.143 13.143-5.143 1.714 0 3.429 0 4.571 0.571l110.857 30.286 148-148-290.286-159.429c-5.143-2.857-8.571-8-9.714-13.714-0.571-5.143 1.143-11.429 5.143-15.429l73.143-73.143c4.571-4 11.429-6.286 17.143-4.571l380 90.857 91.429-91.429c54.857-54.857 146.286-91.429 182.857-54.857z\"\n        ],\n        \"width\": 822.272,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"plane\"\n        ],\n        \"defaultCode\": 61554,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"plane\",\n        \"id\": 108,\n        \"order\": 964,\n        \"prevSize\": 28,\n        \"code\": 61554\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 108\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M73.143 950.857h164.571v-164.571h-164.571v164.571zM274.286 950.857h182.857v-164.571h-182.857v164.571zM73.143 749.714h164.571v-182.857h-164.571v182.857zM274.286 749.714h182.857v-182.857h-182.857v182.857zM73.143 530.286h164.571v-164.571h-164.571v164.571zM493.714 950.857h182.857v-164.571h-182.857v164.571zM274.286 530.286h182.857v-164.571h-182.857v164.571zM713.143 950.857h164.571v-164.571h-164.571v164.571zM493.714 749.714h182.857v-182.857h-182.857v182.857zM292.571 256v-164.571c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v164.571c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM713.143 749.714h164.571v-182.857h-164.571v182.857zM493.714 530.286h182.857v-164.571h-182.857v164.571zM713.143 530.286h164.571v-164.571h-164.571v164.571zM731.429 256v-164.571c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v164.571c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"calendar\"\n        ],\n        \"defaultCode\": 61555,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"calendar\",\n        \"id\": 109,\n        \"order\": 965,\n        \"prevSize\": 28,\n        \"code\": 61555\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 109\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M380.571 274.857c-32 49.143-55.429 102.286-78.286 156-33.143-69.143-69.714-138.286-156-138.286h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128c101.714 0 176.571 47.429 234.286 128.571zM1024 731.429c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714c-169.714 0-274.286 20-380-128.571 31.429-49.143 54.857-102.286 77.714-156 33.143 69.143 69.714 138.286 156 138.286h146.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143zM1024 219.429c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8-18.286-18.286v-109.714h-146.286c-76 0-112 52-144 113.714-16.571 32-30.857 65.143-44.571 97.714-63.429 147.429-137.714 300.571-323.429 300.571h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128c76 0 112-52 144-113.714 16.571-32 30.857-65.143 44.571-97.714 63.429-147.429 137.714-300.571 323.429-300.571h146.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"random\"\n        ],\n        \"defaultCode\": 61556,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"random\",\n        \"id\": 110,\n        \"order\": 966,\n        \"prevSize\": 28,\n        \"code\": 61556\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 110\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571-12.571 1.143-24.571-8-27.429-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-201.714 229.143-365.714 512-365.714s512 163.429 512 365.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"comment\"\n        ],\n        \"defaultCode\": 61557,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"comment\",\n        \"id\": 111,\n        \"order\": 967,\n        \"prevSize\": 28,\n        \"code\": 61557\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 111\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 475.429v73.143c0 233.143-184.571 402.286-438.857 402.286s-438.857-169.143-438.857-402.286v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571v73.143c0 104.571 121.714 109.714 146.286 109.714s146.286-5.143 146.286-109.714v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571zM292.571 109.714v219.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571zM877.714 109.714v219.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"magnet\"\n        ],\n        \"defaultCode\": 61558,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"magnet\",\n        \"id\": 112,\n        \"order\": 968,\n        \"prevSize\": 28,\n        \"code\": 61558\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 112\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M961.714 760.571l-94.857 94.286c-14.286 14.286-37.143 14.286-51.429 0l-303.429-303.429-303.429 303.429c-14.286 14.286-37.143 14.286-51.429 0l-94.857-94.286c-14.286-14.286-14.286-37.714 0-52l424-423.429c14.286-14.286 37.143-14.286 51.429 0l424 423.429c14.286 14.286 14.286 37.714 0 52z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chevron-up\"\n        ],\n        \"defaultCode\": 61559,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chevron-up\",\n        \"id\": 113,\n        \"order\": 969,\n        \"prevSize\": 28,\n        \"code\": 61559\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 113\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M961.714 461.714l-424 423.429c-14.286 14.286-37.143 14.286-51.429 0l-424-423.429c-14.286-14.286-14.286-37.714 0-52l94.857-94.286c14.286-14.286 37.143-14.286 51.429 0l303.429 303.429 303.429-303.429c14.286-14.286 37.143-14.286 51.429 0l94.857 94.286c14.286 14.286 14.286 37.714 0 52z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chevron-down\"\n        ],\n        \"defaultCode\": 61560,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chevron-down\",\n        \"id\": 114,\n        \"order\": 970,\n        \"prevSize\": 28,\n        \"code\": 61560\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 114\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 859.429c0 9.714-8.571 18.286-18.286 18.286h-548.571c-21.143 0-18.286-22.286-18.286-36.571v-329.143h-109.714c-20 0-36.571-16.571-36.571-36.571 0-8.571 2.857-17.143 8.571-23.429l182.857-219.429c6.857-8 17.143-12.571 28-12.571s21.143 4.571 28 12.571l182.857 219.429c5.714 6.286 8.571 14.857 8.571 23.429 0 20-16.571 36.571-36.571 36.571h-109.714v219.429h329.143c5.143 0 10.857 2.286 14.286 6.286l91.429 109.714c2.286 3.429 4 8 4 12zM1097.143 621.714c0 8.571-2.857 17.143-8.571 23.429l-182.857 219.429c-6.857 8-17.143 13.143-28 13.143s-21.143-5.143-28-13.143l-182.857-219.429c-5.714-6.286-8.571-14.857-8.571-23.429 0-20 16.571-36.571 36.571-36.571h109.714v-219.429h-329.143c-5.143 0-10.857-2.286-14.286-6.857l-91.429-109.714c-2.286-2.857-4-7.429-4-11.429 0-9.714 8.571-18.286 18.286-18.286h548.571c21.143 0 18.286 22.286 18.286 36.571v329.143h109.714c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"retweet\"\n        ],\n        \"defaultCode\": 61561,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"retweet\",\n        \"id\": 115,\n        \"order\": 971,\n        \"prevSize\": 28,\n        \"code\": 61561\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 115\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 877.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143 33.143-73.143 73.143-73.143 73.143 33.143 73.143 73.143zM877.714 877.714c0 40-33.143 73.143-73.143 73.143s-73.143-33.143-73.143-73.143 33.143-73.143 73.143-73.143 73.143 33.143 73.143 73.143zM950.857 256v292.571c0 18.286-14.286 34.286-32.571 36.571l-596.571 69.714c2.857 13.143 7.429 26.286 7.429 40 0 13.143-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 25.714-60.571 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.286 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shopping-cart\"\n        ],\n        \"defaultCode\": 61562,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"shopping-cart\",\n        \"id\": 116,\n        \"order\": 972,\n        \"prevSize\": 28,\n        \"code\": 61562\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 116\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 347.429v402.286c0 70.286-57.714 128-128 128h-694.857c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h384c70.286 0 128 57.714 128 128z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"folder\"\n        ],\n        \"defaultCode\": 61563,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"folder\",\n        \"id\": 117,\n        \"order\": 973,\n        \"prevSize\": 28,\n        \"code\": 61563\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 117\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1073.714 544c0 13.714-8.571 27.429-17.714 37.714l-192 226.286c-33.143 38.857-100.571 69.714-150.857 69.714h-621.714c-20.571 0-49.714-6.286-49.714-32 0-13.714 8.571-27.429 17.714-37.714l192-226.286c33.143-38.857 100.571-69.714 150.857-69.714h621.714c20.571 0 49.714 6.286 49.714 32zM877.714 347.429v91.429h-475.429c-71.429 0-160 40.571-206.286 95.429l-195.429 229.714c0-4.571-0.571-9.714-0.571-14.286v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h310.857c70.286 0 128 57.714 128 128z\"\n        ],\n        \"width\": 1073.7371428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"folder-open\"\n        ],\n        \"defaultCode\": 61564,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"folder-open\",\n        \"id\": 118,\n        \"order\": 974,\n        \"prevSize\": 28,\n        \"code\": 61564\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 118\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 182.857c0 20-16.571 36.571-36.571 36.571h-73.143v585.143h73.143c20 0 36.571 16.571 36.571 36.571 0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h73.143v-585.143h-73.143c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 438.85714285714283,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrows-v\"\n        ],\n        \"defaultCode\": 61565,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrows-v\",\n        \"id\": 119,\n        \"order\": 975,\n        \"prevSize\": 28,\n        \"code\": 61565\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 119\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 512c0 9.714-4 18.857-10.857 25.714l-146.286 146.286c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-73.143h-585.143v73.143c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l146.286-146.286c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v73.143h585.143v-73.143c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l146.286 146.286c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrows-h\"\n        ],\n        \"defaultCode\": 61566,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrows-h\",\n        \"id\": 120,\n        \"order\": 976,\n        \"prevSize\": 28,\n        \"code\": 61566\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 120\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 512v292.571h-146.286v-292.571h146.286zM585.143 219.429v585.143h-146.286v-585.143h146.286zM1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM804.571 365.714v438.857h-146.286v-438.857h146.286zM1024 146.286v658.286h-146.286v-658.286h146.286z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bar-chart\",\n          \"bar-chart-o\"\n        ],\n        \"defaultCode\": 61568,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bar-chart, bar-chart-o\",\n        \"id\": 121,\n        \"order\": 977,\n        \"prevSize\": 28,\n        \"code\": 61568\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 121\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 348.571c-21.714 9.714-44.571 16-69.143 19.429 25.143-14.857 44-38.857 53.143-66.857-23.429 13.714-49.143 24-76.571 29.143-21.714-23.429-53.143-37.714-87.429-37.714-66.286 0-120 53.714-120 120 0 9.143 0.571 18.857 2.857 27.429-100-5.143-188.571-52.571-248-125.714-10.286 17.714-16.571 38.857-16.571 60.571 0 41.714 19.429 78.286 52 100-20-0.571-38.857-6.286-57.143-14.857v1.143c0 58.286 44 106.857 98.857 117.714-10.286 2.857-18.286 4.571-29.143 4.571-7.429 0-14.857-1.143-22.286-2.286 15.429 47.429 59.429 82.286 112 83.429-41.143 32-92.571 51.429-149.143 51.429-9.714 0-19.429-0.571-28.571-1.714 53.143 33.714 116 53.714 184 53.714 220.571 0 341.714-182.857 341.714-341.714 0-5.143 0-10.286-0.571-15.429 23.429-16.571 44-37.714 60-62.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"twitter-square\"\n        ],\n        \"defaultCode\": 61569,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"twitter-square\",\n        \"id\": 122,\n        \"order\": 978,\n        \"prevSize\": 28,\n        \"code\": 61569\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 122\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-107.429v-340h113.714l17.143-132.571h-130.857v-84.571c0-38.286 10.286-64 65.714-64l69.714-0.571v-118.286c-12-1.714-53.714-5.143-101.714-5.143-101.143 0-170.857 61.714-170.857 174.857v97.714h-114.286v132.571h114.286v340h-304c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"facebook-square\"\n        ],\n        \"defaultCode\": 61570,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"facebook-square\",\n        \"id\": 123,\n        \"order\": 979,\n        \"prevSize\": 28,\n        \"code\": 61570\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 123\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M530.286 475.429c0-10.286-8-18.286-18.286-18.286-50.286 0-91.429 41.143-91.429 91.429 0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286c0-30.286 24.571-54.857 54.857-54.857 10.286 0 18.286-8 18.286-18.286zM658.286 549.714c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM73.143 877.714h877.714v-73.143h-877.714v73.143zM731.429 549.714c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM146.286 182.857h219.429v-73.143h-219.429v73.143zM73.143 292.571h877.714v-146.286h-473.143l-36.571 73.143h-368v73.143zM1024 146.286v731.429c0 40.571-32.571 73.143-73.143 73.143h-877.714c-40.571 0-73.143-32.571-73.143-73.143v-731.429c0-40.571 32.571-73.143 73.143-73.143h877.714c40.571 0 73.143 32.571 73.143 73.143z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"camera-retro\"\n        ],\n        \"defaultCode\": 61571,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"camera-retro\",\n        \"id\": 124,\n        \"order\": 980,\n        \"prevSize\": 28,\n        \"code\": 61571\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 124\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M475.429 292.571c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714c0 16.571 4 32.571 10.857 47.429-14.857-6.857-30.857-10.857-47.429-10.857-60.571 0-109.714 49.143-109.714 109.714s49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714c0-16.571-4-32.571-10.857-47.429 14.857 6.857 30.857 10.857 47.429 10.857 60.571 0 109.714-49.143 109.714-109.714zM961.714 694.857c0 13.143-52.571 65.714-65.714 65.714-14.857 0-61.143-53.714-73.143-65.714l-54.857 54.857 125.714 125.714c10.286 10.286 16 24.571 16 38.857 0 32-36.571 68.571-68.571 68.571-14.286 0-28.571-5.714-38.857-16l-383.429-383.429c-60 44.571-133.143 74.857-208.571 74.857-124.571 0-210.286-86.286-210.286-210.286 0-187.429 187.429-374.857 374.857-374.857 124 0 210.286 85.714 210.286 210.286 0 75.429-30.286 148.571-74.857 208.571l202.857 202.857 54.857-54.857c-12-12-65.714-58.286-65.714-73.143 0-13.143 52.571-65.714 65.714-65.714 4.571 0 9.714 2.286 13.143 5.714 21.143 21.143 180.571 171.429 180.571 188z\"\n        ],\n        \"width\": 961.6822857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"key\"\n        ],\n        \"defaultCode\": 61572,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"key\",\n        \"id\": 125,\n        \"order\": 981,\n        \"prevSize\": 28,\n        \"code\": 61572\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 125\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM950.857 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143c0 40.571 33.143 73.143 73.143 73.143 40.571 0 73.143-33.143 73.143-73.143zM950.857 219.429c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143c0 40.571 33.143 73.143 73.143 73.143 40.571 0 73.143-33.143 73.143-73.143zM731.429 460v105.714c0 7.429-5.714 16-13.143 17.143l-88.571 13.714c-4.571 14.857-10.857 29.143-18.286 43.429 16 22.857 33.143 44 51.429 65.714 2.286 3.429 4 6.857 4 11.429 0 4-1.143 8-4 10.857-11.429 15.429-75.429 85.143-92 85.143-4.571 0-8.571-1.714-12-4l-65.714-51.429c-14.286 7.429-28.571 13.143-44 17.714-2.857 29.143-5.714 60.571-13.143 88.571-2.286 8-9.143 13.714-17.143 13.714h-106.286c-8 0-16-6.286-17.143-14.286l-13.143-87.429c-14.857-4.571-29.143-10.857-42.857-17.714l-67.429 50.857c-2.857 2.857-7.429 4-11.429 4-4.571 0-8.571-1.714-12-4.571-14.857-13.714-82.286-74.857-82.286-91.429 0-4 1.714-7.429 4-10.857 16.571-21.714 33.714-42.857 50.286-65.143-8-15.429-14.857-30.857-20-46.857l-86.857-13.714c-8-1.143-13.714-8.571-13.714-16.571v-105.714c0-7.429 5.714-16 13.143-17.143l88.571-13.714c4.571-14.857 10.857-29.143 18.286-43.429-16-22.857-33.143-44-51.429-65.714-2.286-3.429-4-7.429-4-11.429s1.143-8 4-11.429c11.429-15.429 75.429-84.571 92-84.571 4.571 0 8.571 1.714 12 4l65.714 51.429c14.286-7.429 28.571-13.143 44-18.286 2.857-28.571 5.714-60 13.143-88 2.286-8 9.143-13.714 17.143-13.714h106.286c8 0 16 6.286 17.143 14.286l13.143 87.429c14.857 4.571 29.143 10.857 42.857 17.714l67.429-50.857c3.429-2.857 7.429-4 11.429-4 4.571 0 8.571 1.714 12 4.571 14.857 13.714 82.286 75.429 82.286 91.429 0 4-1.714 7.429-4 10.857-16.571 22.286-33.714 42.857-49.714 65.143 7.429 15.429 14.286 30.857 19.429 46.857l86.857 13.143c8 1.714 13.714 9.143 13.714 17.143zM1097.143 764.571v80c0 8.571-73.714 16.571-85.143 17.714-4.571 10.857-10.286 20.571-17.143 29.714 5.143 11.429 29.143 68.571 29.143 78.857 0 1.714-0.571 2.857-2.286 4-6.857 4-68 40.571-70.857 40.571-7.429 0-50.286-57.143-56-65.714-5.714 0.571-11.429 1.143-17.143 1.143s-11.429-0.571-17.143-1.143c-5.714 8.571-48.571 65.714-56 65.714-2.857 0-64-36.571-70.857-40.571-1.714-1.143-2.286-2.857-2.286-4 0-9.714 24-67.429 29.143-78.857-6.857-9.143-12.571-18.857-17.143-29.714-11.429-1.143-85.143-9.143-85.143-17.714v-80c0-8.571 73.714-16.571 85.143-17.714 4.571-10.286 10.286-20.571 17.143-29.714-5.143-11.429-29.143-69.143-29.143-78.857 0-1.143 0.571-2.857 2.286-4 6.857-3.429 68-40 70.857-40 7.429 0 50.286 56.571 56 65.143 5.714-0.571 11.429-1.143 17.143-1.143s11.429 0.571 17.143 1.143c16-22.286 33.143-44.571 52.571-64l3.429-1.143c2.857 0 64 36 70.857 40 1.714 1.143 2.286 2.857 2.286 4 0 10.286-24 67.429-29.143 78.857 6.857 9.143 12.571 19.429 17.143 29.714 11.429 1.143 85.143 9.143 85.143 17.714zM1097.143 179.429v80c0 8.571-73.714 16.571-85.143 17.714-4.571 10.857-10.286 20.571-17.143 29.714 5.143 11.429 29.143 68.571 29.143 78.857 0 1.714-0.571 2.857-2.286 4-6.857 4-68 40.571-70.857 40.571-7.429 0-50.286-57.143-56-65.714-5.714 0.571-11.429 1.143-17.143 1.143s-11.429-0.571-17.143-1.143c-5.714 8.571-48.571 65.714-56 65.714-2.857 0-64-36.571-70.857-40.571-1.714-1.143-2.286-2.857-2.286-4 0-9.714 24-67.429 29.143-78.857-6.857-9.143-12.571-18.857-17.143-29.714-11.429-1.143-85.143-9.143-85.143-17.714v-80c0-8.571 73.714-16.571 85.143-17.714 4.571-10.286 10.286-20.571 17.143-29.714-5.143-11.429-29.143-69.143-29.143-78.857 0-1.143 0.571-2.857 2.286-4 6.857-3.429 68-40 70.857-40 7.429 0 50.286 56.571 56 65.143 5.714-0.571 11.429-1.143 17.143-1.143s11.429 0.571 17.143 1.143c16-22.286 33.143-44.571 52.571-64l3.429-1.143c2.857 0 64 36 70.857 40 1.714 1.143 2.286 2.857 2.286 4 0 10.286-24 67.429-29.143 78.857 6.857 9.143 12.571 19.429 17.143 29.714 11.429 1.143 85.143 9.143 85.143 17.714z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cogs\",\n          \"gears\"\n        ],\n        \"defaultCode\": 61573,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cogs, gears\",\n        \"id\": 126,\n        \"order\": 982,\n        \"prevSize\": 28,\n        \"code\": 61573\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 126\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 438.857c0 161.714-180 292.571-402.286 292.571-34.857 0-68.571-3.429-100.571-9.143-47.429 33.714-101.143 58.286-158.857 73.143-15.429 4-32 6.857-49.143 9.143h-1.714c-8.571 0-16.571-6.857-18.286-16.571v0c-2.286-10.857 5.143-17.714 11.429-25.143 22.286-25.143 47.429-47.429 66.857-94.857-92.571-53.714-152-136.571-152-229.143 0-161.714 180-292.571 402.286-292.571s402.286 130.857 402.286 292.571zM1024 585.143c0 93.143-59.429 175.429-152 229.143 19.429 47.429 44.571 69.714 66.857 94.857 6.286 7.429 13.714 14.286 11.429 25.143v0c-2.286 10.286-10.857 17.714-20 16.571-17.143-2.286-33.714-5.143-49.143-9.143-57.714-14.857-111.429-39.429-158.857-73.143-32 5.714-65.714 9.143-100.571 9.143-103.429 0-198.286-28.571-269.714-75.429 16.571 1.143 33.714 2.286 50.286 2.286 122.857 0 238.857-35.429 327.429-99.429 95.429-69.714 148-164 148-266.286 0-29.714-4.571-58.857-13.143-86.857 96.571 53.143 159.429 137.714 159.429 233.143z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"comments\"\n        ],\n        \"defaultCode\": 61574,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"comments\",\n        \"id\": 127,\n        \"order\": 983,\n        \"prevSize\": 28,\n        \"code\": 61574\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 127\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 438.857c0-38.857-34.857-73.143-73.143-73.143h-201.143c0-66.857 54.857-115.429 54.857-182.857 0-66.857-13.143-109.714-91.429-109.714-36.571 37.143-17.714 124.571-73.143 182.857-16 16.571-29.714 34.286-44 52-25.714 33.143-93.714 130.857-138.857 130.857h-18.286v365.714h18.286c32 0 84.571 20.571 115.429 31.429 62.857 21.714 128 41.714 195.429 41.714h69.143c64.571 0 109.714-25.714 109.714-95.429 0-10.857-1.143-21.714-2.857-32 24-13.143 37.143-45.714 37.143-72 0-13.714-3.429-27.429-10.286-39.429 19.429-18.286 30.286-41.143 30.286-68 0-18.286-8-45.143-20-58.857 26.857-0.571 42.857-52 42.857-73.143zM877.714 438.286c0 33.143-9.714 65.714-28 93.143 3.429 12.571 5.143 26.286 5.143 39.429 0 28.571-7.429 57.143-21.714 82.286 1.143 8 1.714 16.571 1.714 24.571 0 36.571-12 73.143-34.286 101.714 1.143 108-72.571 171.429-178.286 171.429h-73.714c-81.143 0-156.571-24-232-50.286-16.571-5.714-62.857-22.857-78.857-22.857h-164.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h156.571c22.286-14.857 61.143-66.286 78.286-88.571 19.429-25.143 39.429-49.714 61.143-73.143 34.286-36.571 16-126.857 73.143-182.857 13.714-13.143 32-21.143 51.429-21.143 59.429 0 116.571 21.143 144.571 76.571 17.714 34.857 20 68 20 106.286 0 40-10.286 74.286-27.429 109.714h100.571c78.857 0 146.286 66.857 146.286 145.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thumbs-o-up\"\n        ],\n        \"defaultCode\": 61575,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thumbs-o-up\",\n        \"id\": 128,\n        \"order\": 984,\n        \"prevSize\": 28,\n        \"code\": 61575\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 128\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 256c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 585.143c0-21.143-16-72.571-42.857-73.143 12-13.714 20-40.571 20-58.857 0-26.857-10.857-49.714-30.286-68 6.857-12 10.286-25.714 10.286-39.429 0-26.286-13.143-58.857-37.143-72 1.714-10.286 2.857-21.143 2.857-32 0-66.857-42.286-95.429-105.714-95.429h-73.143c-67.429 0-132.571 20-195.429 41.714-30.857 10.857-83.429 31.429-115.429 31.429h-18.286v365.714h18.286c45.143 0 113.143 97.714 138.857 130.857 14.286 17.714 28 35.429 44 52 55.429 58.286 36.571 145.714 73.143 182.857 78.286 0 91.429-42.857 91.429-109.714 0-67.429-54.857-116-54.857-182.857h201.143c38.286 0 73.143-34.286 73.143-73.143zM877.714 585.714c0 78.857-67.429 145.714-146.286 145.714h-100.571c17.143 35.429 27.429 69.714 27.429 109.714 0 37.714-2.286 72-20 106.286-28 55.429-85.143 76.571-144.571 76.571-19.429 0-37.714-8-51.429-21.143-57.143-56-39.429-146.286-73.143-183.429-21.714-22.857-41.714-47.429-61.143-72.571-17.143-22.286-56-73.714-78.286-88.571h-156.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h164.571c16 0 62.286-17.143 78.857-22.857 82.286-28.571 153.714-50.286 241.714-50.286h64c104 0 178.857 61.714 178.286 168.571v2.857c22.286 28.571 34.286 65.143 34.286 101.714 0 8-0.571 16.571-1.714 24.571 14.286 25.143 21.714 53.714 21.714 82.286 0 13.143-1.714 26.857-5.143 39.429 18.286 27.429 28 60 28 93.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thumbs-o-down\"\n        ],\n        \"defaultCode\": 61576,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thumbs-o-down\",\n        \"id\": 129,\n        \"order\": 985,\n        \"prevSize\": 28,\n        \"code\": 61576\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 129\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M475.429 18.286v765.143l-256.571 134.857c-7.429 4-14.857 6.857-22.857 6.857-16.571 0-24-13.714-24-28.571 0-4 0.571-7.429 1.143-11.429l49.143-285.714-208-202.286c-6.857-7.429-14.286-17.143-14.286-27.429 0-17.143 17.714-24 32-26.286l286.857-41.714 128.571-260c5.143-10.857 14.857-23.429 28-23.429v0z\"\n        ],\n        \"width\": 475.4285714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"star-half\"\n        ],\n        \"defaultCode\": 61577,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"star-half\",\n        \"id\": 130,\n        \"order\": 986,\n        \"prevSize\": 28,\n        \"code\": 61577\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 130\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 340.571c0-160.571-108.571-194.286-200-194.286-85.143 0-181.143 92-210.857 127.429-13.714 16.571-42.286 16.571-56 0-29.714-35.429-125.714-127.429-210.857-127.429-91.429 0-200 33.714-200 194.286 0 104.571 105.714 201.714 106.857 202.857l332 320 331.429-319.429c1.714-1.714 107.429-98.857 107.429-203.429zM1024 340.571c0 137.143-125.714 252-130.857 257.143l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286s-18.286-3.429-25.143-10.286l-356.571-344c-4.571-4-130.286-118.857-130.286-256 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"heart-o\"\n        ],\n        \"defaultCode\": 61578,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"heart-o\",\n        \"id\": 131,\n        \"order\": 987,\n        \"prevSize\": 28,\n        \"code\": 61578\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 131\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 822.857c0 16 7.429 54.857-18.286 54.857h-182.857c-90.857 0-164.571-73.714-164.571-164.571v-402.286c0-90.857 73.714-164.571 164.571-164.571h182.857c9.714 0 18.286 8.571 18.286 18.286 0 16 7.429 54.857-18.286 54.857h-182.857c-50.286 0-91.429 41.143-91.429 91.429v402.286c0 50.286 41.143 91.429 91.429 91.429h164.571c14.286 0 36.571-2.857 36.571 18.286zM896 512c0 9.714-4 18.857-10.857 25.714l-310.857 310.857c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-164.571h-256c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h256v-164.571c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l310.857 310.857c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 896,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sign-out\"\n        ],\n        \"defaultCode\": 61579,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sign-out\",\n        \"id\": 132,\n        \"order\": 988,\n        \"prevSize\": 28,\n        \"code\": 61579\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 132\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M135.429 808h132v-396.571h-132v396.571zM276 289.143c-0.571-38.857-28.571-68.571-73.714-68.571s-74.857 29.714-74.857 68.571c0 37.714 28.571 68.571 73.143 68.571h0.571c46.286 0 74.857-30.857 74.857-68.571zM610.286 808h132v-227.429c0-121.714-65.143-178.286-152-178.286-70.857 0-102.286 39.429-119.429 66.857h1.143v-57.714h-132s1.714 37.143 0 396.571v0h132v-221.714c0-11.429 0.571-23.429 4-32 9.714-23.429 31.429-48 68-48 47.429 0 66.286 36 66.286 89.714v212zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"linkedin-square\"\n        ],\n        \"defaultCode\": 61580,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"linkedin-square\",\n        \"id\": 133,\n        \"order\": 989,\n        \"prevSize\": 28,\n        \"code\": 61580\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 133\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M274.286 493.714v-256c0-10.286-8-18.286-18.286-18.286s-18.286 8-18.286 18.286v256c0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286zM658.286 694.857c0 20-16.571 36.571-36.571 36.571h-245.143l-29.143 276c-1.143 9.143-8.571 16.571-17.714 16.571h-0.571c-9.143 0-16.571-6.286-18.286-15.429l-43.429-277.143h-230.857c-20 0-36.571-16.571-36.571-36.571 0-93.714 70.857-182.857 146.286-182.857v-292.571c-40 0-73.143-33.143-73.143-73.143s33.143-73.143 73.143-73.143h365.714c40 0 73.143 33.143 73.143 73.143s-33.143 73.143-73.143 73.143v292.571c75.429 0 146.286 89.143 146.286 182.857z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thumb-tack\"\n        ],\n        \"defaultCode\": 61581,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thumb-tack\",\n        \"id\": 134,\n        \"order\": 990,\n        \"prevSize\": 28,\n        \"code\": 61581\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 134\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 530.286v182.857c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h402.286c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-182.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286zM1024 36.571v292.571c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-100.571-100.571-372.571 372.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-65.143-65.143c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l372.571-372.571-100.571-100.571c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"external-link\"\n        ],\n        \"defaultCode\": 61582,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"external-link\",\n        \"id\": 135,\n        \"order\": 991,\n        \"prevSize\": 28,\n        \"code\": 61582\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 135\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M676.571 512c0 9.714-4 18.857-10.857 25.714l-310.857 310.857c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-164.571h-256c-20 0-36.571-16.571-36.571-36.571v-219.429c0-20 16.571-36.571 36.571-36.571h256v-164.571c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l310.857 310.857c6.857 6.857 10.857 16 10.857 25.714zM877.714 310.857v402.286c0 90.857-73.714 164.571-164.571 164.571h-182.857c-9.714 0-18.286-8.571-18.286-18.286 0-16-7.429-54.857 18.286-54.857h182.857c50.286 0 91.429-41.143 91.429-91.429v-402.286c0-50.286-41.143-91.429-91.429-91.429h-164.571c-14.286 0-36.571 2.857-36.571-18.286 0-16-7.429-54.857 18.286-54.857h182.857c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sign-in\"\n        ],\n        \"defaultCode\": 61584,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sign-in\",\n        \"id\": 136,\n        \"order\": 992,\n        \"prevSize\": 28,\n        \"code\": 61584\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 136\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M261.714 504.571c-24-52.571-42.286-122.286-42.286-212h-146.286v54.857c0 56 76 133.714 188.571 157.143zM877.714 347.429v-54.857h-146.286c0 89.714-18.286 159.429-42.286 212 112.571-23.429 188.571-101.143 188.571-157.143zM950.857 274.286v73.143c0 108.571-131.429 228.571-309.714 237.143-22.857 29.143-44 46.286-54.286 54.286-30.286 27.429-38.286 56-38.286 92.571s18.286 73.143 73.143 73.143 109.714 36.571 109.714 91.429v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-54.857 54.857-91.429 109.714-91.429s73.143-36.571 73.143-73.143-8-65.143-38.286-92.571c-10.286-8-31.429-25.143-54.286-54.286-178.286-8.571-309.714-128.571-309.714-237.143v-73.143c0-30.286 24.571-54.857 54.857-54.857h164.571v-54.857c0-50.286 41.143-91.429 91.429-91.429h329.143c50.286 0 91.429 41.143 91.429 91.429v54.857h164.571c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"trophy\"\n        ],\n        \"defaultCode\": 61585,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"trophy\",\n        \"id\": 137,\n        \"order\": 993,\n        \"prevSize\": 28,\n        \"code\": 61585\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 137\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M296.571 685.714v0c1.143-1.714 0.571-5.143-1.714-7.429-2.857-2.286-6.286-2.857-8-1.143-1.143 1.714-0.571 5.143 1.714 7.429 2.857 2.286 6.286 2.857 8 1.143zM280.571 662.286c-1.714-2.286-4.571-3.429-6.857-2.286-1.714 1.143-1.714 4.571 0 6.857 2.286 2.857 5.143 4 6.857 2.857v0c1.714-1.143 1.714-4.571 0-7.429zM257.143 639.429v0c0.571-1.143-0.571-3.429-2.857-4.571-1.714-0.571-4-0.571-4.571 1.143-1.143 1.714 0 3.429 2.286 4.571 2.286 0.571 4.571 0.571 5.143-1.143zM269.143 652.571v0c1.143-1.143 1.143-4-1.143-5.714-1.714-2.286-4.571-2.857-5.714-1.714-1.714 1.714-1.143 4 0.571 6.286 1.714 1.714 4.571 2.857 6.286 1.143zM318.286 695.429v0c0.571-2.286-1.714-5.143-5.143-6.286s-6.286 0-7.429 2.286c-0.571 2.286 1.714 5.143 5.143 6.286s6.286 0 7.429-2.286zM342.286 697.143v0c0-2.286-2.857-4.571-6.857-4.571-3.429 0-5.714 2.286-5.714 4.571s2.857 4.571 6.286 4.571 6.286-2.286 6.286-4.571zM364.571 693.143v0c-0.571-2.286-4-3.429-7.429-2.857s-5.714 2.857-5.143 5.143 3.429 4 6.857 3.429 5.714-3.429 5.714-5.714zM731.429 512c0-161.714-130.857-292.571-292.571-292.571s-292.571 130.857-292.571 292.571c0 129.143 84 238.857 200 277.714 14.857 2.857 20-6.286 20-14.286 0-6.857 0-29.714-0.571-54.286 0 0-81.143 17.714-98.286-34.857 0 0-13.143-33.714-32.571-42.286 0 0-26.286-18.286 2.286-18.286 0 0 28.571 2.286 44.571 30.286 25.714 45.143 68.571 32 85.143 24.571 2.857-18.857 10.286-32 18.857-39.429-65.143-7.429-133.714-32.571-133.714-144.571 0-32 11.429-57.714 30.286-78.286-2.857-7.429-13.143-37.143 2.857-77.714 24.571-7.429 80.571 30.286 80.571 30.286 23.429-6.857 48-9.714 73.143-9.714s49.714 2.857 73.143 9.714c0 0 56-37.714 80.571-30.286 16 40.571 5.714 70.286 2.857 77.714 18.857 20.571 30.286 46.286 30.286 78.286 0 112.571-68.571 137.143-133.714 144.571 10.286 9.143 20 26.857 20 54.286 0 38.857-0.571 70.286-0.571 80 0 8 5.143 17.143 20 14.286 116-38.857 200-148.571 200-277.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"github-square\"\n        ],\n        \"defaultCode\": 61586,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"github-square\",\n        \"id\": 138,\n        \"order\": 994,\n        \"prevSize\": 28,\n        \"code\": 61586\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 138\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 713.143v182.857c0 30.286-24.571 54.857-54.857 54.857h-841.143c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h244c15.429 42.286 56 73.143 103.429 73.143h146.286c47.429 0 88-30.857 103.429-73.143h244c30.286 0 54.857 24.571 54.857 54.857zM765.143 342.857c-5.714 13.714-18.857 22.857-33.714 22.857h-146.286v256c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-256h-146.286c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l256-256c6.857-7.429 16.571-10.857 25.714-10.857s18.857 3.429 25.714 10.857l256 256c10.857 10.286 13.714 26.286 8 39.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"upload\"\n        ],\n        \"defaultCode\": 61587,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"upload\",\n        \"id\": 139,\n        \"order\": 995,\n        \"prevSize\": 28,\n        \"code\": 61587\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 139\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804 472c0-26.857-5.143-97.143-14.286-120-10.857-27.429-17.143-42.857-17.143-73.714 0-26.286 5.714-52 5.714-77.714 0-10.857-0.571-22.286-5.714-31.429-2.286-0.571-5.143-0.571-7.429-0.571-22.286 0-44.571 5.143-66.857 5.143-68 0-132.571-27.429-200.571-27.429-53.143 0-104.571 20-153.714 39.429-38.857 15.429-81.714 33.714-115.429 58.857-115.429 87.429-155.429 247.429-155.429 385.143 0 46.286 14.286 91.429 14.286 137.714 0 26.286-12.571 50.286-12.571 75.429 0 16 9.143 29.143 26.286 29.143 28 0 54.857-12.571 83.429-12.571 65.143 0 128.571 17.714 193.714 17.714 50.857 0 114.857-4 162.286-20.571 150.286-53.143 263.429-226.857 263.429-384.571zM877.143 470.857c0 190.286-132 390.857-312.571 454.857-56.571 20-126.857 25.143-186.286 25.143-65.143 0-129.143-16.571-193.714-16.571-27.429 0-54.857 16.571-83.429 16.571-56.571 0-99.429-50.857-99.429-105.143 0-26.857 12.571-50.857 12.571-77.143 0-46.286-14.286-91.429-14.286-138.286 0-162.286 49.714-341.714 184.571-444 38.857-29.714 87.429-50.857 132.571-68.571 58.286-23.429 117.143-44.571 180.571-44.571 68 0 132.571 27.429 199.429 27.429 21.714 0 43.429-5.714 65.714-5.714 65.143 0 88.571 46.286 88.571 105.714 0 25.714-5.714 52-5.714 77.714 0 20.571 5.143 28.571 12 46.857 13.143 33.143 19.429 109.143 19.429 145.714z\"\n        ],\n        \"width\": 877.1291428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lemon-o\"\n        ],\n        \"defaultCode\": 61588,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"lemon-o\",\n        \"id\": 140,\n        \"order\": 996,\n        \"prevSize\": 28,\n        \"code\": 61588\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 140\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 708.571c0 20.571-9.143 60.571-17.714 79.429-12 28-44 46.286-69.714 60.571-33.714 18.286-68 29.143-106.286 29.143-53.143 0-101.143-21.714-149.714-39.429-34.857-12.571-68.571-28-100-47.429-97.143-60-214.286-177.143-274.286-274.286-19.429-31.429-34.857-65.143-47.429-100-17.714-48.571-39.429-96.571-39.429-149.714 0-38.286 10.857-72.571 29.143-106.286 14.286-25.714 32.571-57.714 60.571-69.714 18.857-8.571 58.857-17.714 79.429-17.714 4 0 8 0 12 1.714 12 4 24.571 32 30.286 43.429 18.286 32.571 36 65.714 54.857 97.714 9.143 14.857 26.286 33.143 26.286 50.857 0 34.857-103.429 85.714-103.429 116.571 0 15.429 14.286 35.429 22.286 49.143 57.714 104 129.714 176 233.714 233.714 13.714 8 33.714 22.286 49.143 22.286 30.857 0 81.714-103.429 116.571-103.429 17.714 0 36 17.143 50.857 26.286 32 18.857 65.143 36.571 97.714 54.857 11.429 5.714 39.429 18.286 43.429 30.286 1.714 4 1.714 8 1.714 12z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone\"\n        ],\n        \"defaultCode\": 61589,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"phone\",\n        \"id\": 141,\n        \"order\": 997,\n        \"prevSize\": 28,\n        \"code\": 61589\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 141\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 146.286h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429v-475.429c0-50.286-41.143-91.429-91.429-91.429zM804.571 237.714v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"square-o\"\n        ],\n        \"defaultCode\": 61590,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"square-o\",\n        \"id\": 142,\n        \"order\": 998,\n        \"prevSize\": 28,\n        \"code\": 61590\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 142\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 146.286h-585.143v709.714l292.571-280.571 50.857 48.571 241.714 232v-709.714zM665.143 73.143c8.571 0 17.143 1.714 25.143 5.143 25.143 9.714 41.143 33.143 41.143 58.857v736.571c0 25.714-16 49.143-41.143 58.857-8 3.429-16.571 4.571-25.143 4.571-17.714 0-34.286-6.286-47.429-18.286l-252-242.286-252 242.286c-13.143 12-29.714 18.857-47.429 18.857-8.571 0-17.143-1.714-25.143-5.143-25.143-9.714-41.143-33.143-41.143-58.857v-736.571c0-25.714 16-49.143 41.143-58.857 8-3.429 16.571-5.143 25.143-5.143h598.857z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bookmark-o\"\n        ],\n        \"defaultCode\": 61591,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bookmark-o\",\n        \"id\": 143,\n        \"order\": 999,\n        \"prevSize\": 28,\n        \"code\": 61591\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 143\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 681.714c0-2.857 0-6.286-1.143-9.143-3.429-10.286-86.857-52.571-102.857-61.714-10.857-6.286-24-18.857-37.143-18.857-25.143 0-62.286 74.857-84.571 74.857-11.429 0-25.714-10.286-36-16-75.429-42.286-127.429-94.286-169.714-169.714-5.714-10.286-16-24.571-16-36 0-22.286 74.857-59.429 74.857-84.571 0-13.143-12.571-26.286-18.857-37.143-9.143-16-51.429-99.429-61.714-102.857-2.857-1.143-6.286-1.143-9.143-1.143-14.857 0-44 6.857-57.714 12.571-37.714 17.143-65.143 89.143-65.143 128.571 0 38.286 15.429 73.143 28.571 108.571 45.714 125.143 181.714 261.143 306.857 306.857 35.429 13.143 70.286 28.571 108.571 28.571 39.429 0 111.429-27.429 128.571-65.143 5.714-13.714 12.571-42.857 12.571-57.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone-square\"\n        ],\n        \"defaultCode\": 61592,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"phone-square\",\n        \"id\": 144,\n        \"order\": 1000,\n        \"prevSize\": 28,\n        \"code\": 61592\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 144\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M925.714 233.143c-25.143 36.571-56.571 69.143-92.571 95.429 0.571 8 0.571 16 0.571 24 0 244-185.714 525.143-525.143 525.143-104.571 0-201.714-30.286-283.429-82.857 14.857 1.714 29.143 2.286 44.571 2.286 86.286 0 165.714-29.143 229.143-78.857-81.143-1.714-149.143-54.857-172.571-128 11.429 1.714 22.857 2.857 34.857 2.857 16.571 0 33.143-2.286 48.571-6.286-84.571-17.143-148-91.429-148-181.143v-2.286c24.571 13.714 53.143 22.286 83.429 23.429-49.714-33.143-82.286-89.714-82.286-153.714 0-34.286 9.143-65.714 25.143-93.143 90.857 112 227.429 185.143 380.571 193.143-2.857-13.714-4.571-28-4.571-42.286 0-101.714 82.286-184.571 184.571-184.571 53.143 0 101.143 22.286 134.857 58.286 41.714-8 81.714-23.429 117.143-44.571-13.714 42.857-42.857 78.857-81.143 101.714 37.143-4 73.143-14.286 106.286-28.571z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"twitter\"\n        ],\n        \"defaultCode\": 61593,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"twitter\",\n        \"id\": 145,\n        \"order\": 1001,\n        \"prevSize\": 28,\n        \"code\": 61593\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 145\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M548 6.857v150.857h-89.714c-70.286 0-83.429 33.714-83.429 82.286v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571c0-144.571 88.571-223.429 217.714-223.429 61.714 0 114.857 4.571 130.286 6.857z\"\n        ],\n        \"width\": 602.2582857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"facebook\",\n          \"facebook-f\"\n        ],\n        \"defaultCode\": 61594,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"facebook, facebook-f\",\n        \"id\": 146,\n        \"order\": 1002,\n        \"prevSize\": 28,\n        \"code\": 61594\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 146\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857 0 193.714-125.714 358.286-300 416.571-22.286 4-30.286-9.714-30.286-21.143 0-14.286 0.571-61.714 0.571-120.571 0-41.143-13.714-67.429-29.714-81.143 97.714-10.857 200.571-48 200.571-216.571 0-48-17.143-86.857-45.143-117.714 4.571-11.429 19.429-56-4.571-116.571-36.571-11.429-120.571 45.143-120.571 45.143-34.857-9.714-72.571-14.857-109.714-14.857s-74.857 5.143-109.714 14.857c0 0-84-56.571-120.571-45.143-24 60.571-9.143 105.143-4.571 116.571-28 30.857-45.143 69.714-45.143 117.714 0 168 102.286 205.714 200 216.571-12.571 11.429-24 30.857-28 58.857-25.143 11.429-89.143 30.857-127.429-36.571-24-41.714-67.429-45.143-67.429-45.143-42.857-0.571-2.857 26.857-2.857 26.857 28.571 13.143 48.571 64 48.571 64 25.714 78.286 148 52 148 52 0 36.571 0.571 70.857 0.571 81.714 0 11.429-8 25.143-30.286 21.143-174.286-58.286-300-222.857-300-416.571 0-242.286 196.571-438.857 438.857-438.857zM166.286 703.429c1.143-2.286-0.571-5.143-4-6.857-3.429-1.143-6.286-0.571-7.429 1.143-1.143 2.286 0.571 5.143 4 6.857 2.857 1.714 6.286 1.143 7.429-1.143zM184 722.857c2.286-1.714 1.714-5.714-1.143-9.143-2.857-2.857-6.857-4-9.143-1.714-2.286 1.714-1.714 5.714 1.143 9.143 2.857 2.857 6.857 4 9.143 1.714zM201.143 748.571c2.857-2.286 2.857-6.857 0-10.857-2.286-4-6.857-5.714-9.714-3.429-2.857 1.714-2.857 6.286 0 10.286s7.429 5.714 9.714 4zM225.143 772.571c2.286-2.286 1.143-7.429-2.286-10.857-4-4-9.143-4.571-11.429-1.714-2.857 2.286-1.714 7.429 2.286 10.857 4 4 9.143 4.571 11.429 1.714zM257.714 786.857c1.143-3.429-2.286-7.429-7.429-9.143-4.571-1.143-9.714 0.571-10.857 4s2.286 7.429 7.429 8.571c4.571 1.714 9.714 0 10.857-3.429zM293.714 789.714c0-4-4.571-6.857-9.714-6.286-5.143 0-9.143 2.857-9.143 6.286 0 4 4 6.857 9.714 6.286 5.143 0 9.143-2.857 9.143-6.286zM326.857 784c-0.571-3.429-5.143-5.714-10.286-5.143-5.143 1.143-8.571 4.571-8 8.571 0.571 3.429 5.143 5.714 10.286 4.571s8.571-4.571 8-8z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"github\"\n        ],\n        \"defaultCode\": 61595,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"github\",\n        \"id\": 147,\n        \"order\": 1003,\n        \"prevSize\": 28,\n        \"code\": 61595\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 147\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 329.143v146.286c0 20-16.571 36.571-36.571 36.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-146.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h384v-109.714c0-141.143 114.857-256 256-256s256 114.857 256 256z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"unlock\"\n        ],\n        \"defaultCode\": 61596,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"unlock\",\n        \"id\": 148,\n        \"order\": 1004,\n        \"prevSize\": 28,\n        \"code\": 61596\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 148\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1005.714 73.143c50.286 0 91.429 41.143 91.429 91.429v694.857c0 50.286-41.143 91.429-91.429 91.429h-914.286c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h914.286zM91.429 146.286c-9.714 0-18.286 8.571-18.286 18.286v128h950.857v-128c0-9.714-8.571-18.286-18.286-18.286h-914.286zM1005.714 877.714c9.714 0 18.286-8.571 18.286-18.286v-347.429h-950.857v347.429c0 9.714 8.571 18.286 18.286 18.286h914.286zM146.286 804.571v-73.143h146.286v73.143h-146.286zM365.714 804.571v-73.143h219.429v73.143h-219.429z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"credit-card\"\n        ],\n        \"defaultCode\": 61597,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"credit-card\",\n        \"id\": 149,\n        \"order\": 1005,\n        \"prevSize\": 28,\n        \"code\": 61597\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 149\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM512 838.286c0.571 10.286-2.857 20-9.714 27.429-6.857 8-16.571 12-26.857 12h-77.143c-18.857 0-34.286-14.286-36-33.143-16.571-174.286-154.857-312.571-329.143-329.143-18.857-1.714-33.143-17.143-33.143-36v-77.143c0-10.286 4-20 12-26.857 6.286-6.286 15.429-9.714 24.571-9.714h2.857c121.714 9.714 236.571 62.857 322.857 149.714 86.857 86.286 140 201.143 149.714 322.857zM804.571 839.429c0.571 9.714-2.857 19.429-10.286 26.857-6.857 7.429-16 11.429-26.286 11.429h-81.714c-19.429 0-35.429-14.857-36.571-34.286-18.857-332-283.429-596.571-615.429-616-19.429-1.143-34.286-17.143-34.286-36v-81.714c0-10.286 4-19.429 11.429-26.286 6.857-6.857 16-10.286 25.143-10.286h1.714c200 10.286 388 94.286 529.714 236.571 142.286 141.714 226.286 329.714 236.571 529.714z\"\n        ],\n        \"width\": 805.1565714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"feed\",\n          \"rss\"\n        ],\n        \"defaultCode\": 61598,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"feed, rss\",\n        \"id\": 150,\n        \"order\": 1006,\n        \"prevSize\": 28,\n        \"code\": 61598\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 150\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M594.286 694.857c0 25.143-20.571 45.714-45.714 45.714s-45.714-20.571-45.714-45.714 20.571-45.714 45.714-45.714 45.714 20.571 45.714 45.714zM740.571 694.857c0 25.143-20.571 45.714-45.714 45.714s-45.714-20.571-45.714-45.714 20.571-45.714 45.714-45.714 45.714 20.571 45.714 45.714zM804.571 786.286v-182.857c0-9.714-8.571-18.286-18.286-18.286h-694.857c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h694.857c9.714 0 18.286-8.571 18.286-18.286zM101.714 512h674.286l-89.714-275.429c-2.857-9.714-13.714-17.143-24-17.143h-446.857c-10.286 0-21.143 7.429-24 17.143zM877.714 603.429v182.857c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-182.857c0-15.429 4.571-28.571 9.143-42.857l112.571-346.286c13.143-40 51.429-68 93.714-68h446.857c42.286 0 80.571 28 93.714 68l112.571 346.286c4.571 14.286 9.143 27.429 9.143 42.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hdd-o\"\n        ],\n        \"defaultCode\": 61600,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hdd-o\",\n        \"id\": 151,\n        \"order\": 1007,\n        \"prevSize\": 28,\n        \"code\": 61600\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 151\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 365.714c40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143v219.429c0 40-33.143 73.143-73.143 73.143-101.714-84.571-265.714-200.571-464-217.143-68 22.857-91.429 102.286-46.857 148-40 65.714 11.429 112 72 159.429-35.429 69.714-182.857 70.857-235.429 22.286-33.143-101.714-82.286-203.429-42.286-332h-69.714c-50.286 0-91.429-41.143-91.429-91.429v-109.714c0-50.286 41.143-91.429 91.429-91.429h274.286c219.429 0 402.286-128 512-219.429 40 0 73.143 33.143 73.143 73.143v219.429zM877.714 710.857v-545.143c-149.143 114.286-293.714 180-438.857 196v154.286c145.143 16 289.714 80.571 438.857 194.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bullhorn\"\n        ],\n        \"defaultCode\": 61601,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bullhorn\",\n        \"id\": 152,\n        \"order\": 1008,\n        \"prevSize\": 28,\n        \"code\": 61601\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 152\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M521.143 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM140.571 804.571h742.857c-102.286-115.429-152-272-152-475.429 0-73.714-69.714-182.857-219.429-182.857s-219.429 109.143-219.429 182.857c0 203.429-49.714 360-152 475.429zM987.429 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-256c-40 0-73.143-33.143-73.143-73.143 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 151.429 22.286 242.286 142.286 242.286 252 0 276 98.286 404 182.857 475.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bell-o\"\n        ],\n        \"defaultCode\": 61602,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bell-o\",\n        \"id\": 153,\n        \"order\": 1009,\n        \"prevSize\": 28,\n        \"code\": 61602\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 153\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M786.286 512l78.857 77.143c10.857 10.286 14.857 25.714 11.429 40-4 14.286-15.429 25.714-29.714 29.143l-107.429 27.429 30.286 106.286c4 14.286 0 29.714-10.857 40-10.286 10.857-25.714 14.857-40 10.857l-106.286-30.286-27.429 107.429c-3.429 14.286-14.857 25.714-29.143 29.714-3.429 0.571-7.429 1.143-10.857 1.143-10.857 0-21.714-4.571-29.143-12.571l-77.143-78.857-77.143 78.857c-10.286 10.857-25.714 14.857-40 11.429-14.857-4-25.714-15.429-29.143-29.714l-27.429-107.429-106.286 30.286c-14.286 4-29.714 0-40-10.857-10.857-10.286-14.857-25.714-10.857-40l30.286-106.286-107.429-27.429c-14.286-3.429-25.714-14.857-29.714-29.143-3.429-14.286 0.571-29.714 11.429-40l78.857-77.143-78.857-77.143c-10.857-10.286-14.857-25.714-11.429-40 4-14.286 15.429-25.714 29.714-29.143l107.429-27.429-30.286-106.286c-4-14.286 0-29.714 10.857-40 10.286-10.857 25.714-14.857 40-10.857l106.286 30.286 27.429-107.429c3.429-14.286 14.857-25.714 29.143-29.143 14.286-4 29.714 0 40 10.857l77.143 79.429 77.143-79.429c10.286-10.857 25.143-14.857 40-10.857 14.286 3.429 25.714 14.857 29.143 29.143l27.429 107.429 106.286-30.286c14.286-4 29.714 0 40 10.857 10.857 10.286 14.857 25.714 10.857 40l-30.286 106.286 107.429 27.429c14.286 3.429 25.714 14.857 29.714 29.143 3.429 14.286-0.571 29.714-11.429 40z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"certificate\"\n        ],\n        \"defaultCode\": 61603,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"certificate\",\n        \"id\": 154,\n        \"order\": 1010,\n        \"prevSize\": 28,\n        \"code\": 61603\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 154\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM950.857 438.857c0-38.857-34.857-73.143-73.143-73.143h-329.143c0-36 54.857-73.143 54.857-146.286 0-54.857-42.857-73.143-91.429-73.143-16 0-45.143 66.286-51.429 79.429-6.857 12.571-13.714 25.143-21.143 37.143-18.857 30.286-40.571 56.571-64 82.857-36.571 41.714-77.143 93.143-137.714 93.143h-18.286v365.714h18.286c100 0 197.714 73.143 308.571 73.143 64 0 108-26.857 108-95.429 0-10.857-1.143-21.714-2.857-32 24-13.143 37.143-45.714 37.143-72 0-13.714-3.429-27.429-10.286-39.429 19.429-18.286 30.286-41.143 30.286-68 0-18.286-8-45.143-20-58.857h189.143c39.429 0 73.143-33.714 73.143-73.143zM1024 438.286c0 80-66.286 146.857-146.286 146.857h-96.571c-1.714 24-9.143 46.857-21.143 68 1.143 8 1.714 16.571 1.714 24.571 0 36.571-12 73.143-34.286 101.714 1.143 108-72.571 171.429-178.286 171.429-64 0-124.571-17.714-184-39.429-34.857-12.571-91.429-33.714-127.429-33.714h-164.571c-40.571 0-73.143-32.571-73.143-73.143v-365.714c0-40.571 32.571-73.143 73.143-73.143h164.571c27.429 0 66.286-49.143 82.857-68 20.571-23.429 40-46.857 57.143-73.714 33.143-53.143 57.714-150.857 134.286-150.857 90.857 0 164.571 49.714 164.571 146.286 0 25.143-4 49.714-12.571 73.143h213.714c78.857 0 146.286 66.857 146.286 145.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-o-right\"\n        ],\n        \"defaultCode\": 61604,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-o-right\",\n        \"id\": 155,\n        \"order\": 1011,\n        \"prevSize\": 28,\n        \"code\": 61604\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 155\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M786.286 804.571h18.286v-365.714h-18.286c-60.571 0-101.143-51.429-137.714-93.143-23.429-26.286-45.143-52.571-64-82.857-8-12.571-14.857-25.714-21.714-38.857s-35.429-77.714-50.857-77.714c-48.571 0-91.429 18.286-91.429 73.143 0 73.143 54.857 110.286 54.857 146.286h-329.143c-38.286 0-73.143 34.286-73.143 73.143 0 39.429 33.714 73.143 73.143 73.143h189.143c-12 13.714-20 40.571-20 58.857 0 26.857 10.857 49.714 30.286 68-6.857 12-10.286 25.714-10.286 39.429 0 26.286 13.143 58.857 37.143 72-1.714 10.286-2.286 21.143-2.286 32 0 67.429 41.714 95.429 105.143 95.429 113.714 0 210.857-73.143 310.857-73.143zM950.857 768c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM1024 438.857v365.714c0 40.571-32.571 73.143-73.143 73.143h-164.571c-36 0-92.571 21.143-127.429 33.714-58.286 21.143-118.286 39.429-181.143 39.429-105.143 0-181.714-59.429-181.143-168.571l0.571-2.857c-22.857-28.571-34.857-65.143-34.857-101.714 0-8 0.571-16.571 1.714-24.571-12-21.143-19.429-44-21.143-68h-96.571c-80 0-146.286-66.857-146.286-146.857 0-78.857 67.429-145.714 146.286-145.714h213.714c-8.571-23.429-12.571-48-12.571-73.143 0-96.571 73.714-146.286 164.571-146.286 76.571 0 101.143 97.714 134.286 150.857 17.143 26.857 36.571 50.286 57.143 73.714 16.571 18.857 55.429 68 82.857 68h164.571c40.571 0 73.143 32.571 73.143 73.143z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-o-left\"\n        ],\n        \"defaultCode\": 61605,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-o-left\",\n        \"id\": 156,\n        \"order\": 1012,\n        \"prevSize\": 28,\n        \"code\": 61605\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 156\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 914.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 477.714c0-64.571-26.286-108-95.429-108-10.857 0-21.714 1.143-32 2.857-13.143-24-45.714-37.143-72-37.143-13.714 0-27.429 3.429-39.429 10.286-18.286-19.429-41.143-30.286-68-30.286-18.286 0-45.143 8-58.857 20v-189.143c0-39.429-33.714-73.143-73.143-73.143-38.857 0-73.143 34.857-73.143 73.143v329.143c-36 0-73.143-54.857-146.286-54.857-54.857 0-73.143 42.857-73.143 91.429 0 16 66.286 45.143 79.429 51.429 12.571 6.857 25.143 13.714 37.143 21.143 30.286 18.857 56.571 40.571 82.857 64 41.714 36.571 93.143 77.143 93.143 137.714v18.286h365.714v-18.286c0-100 73.143-197.714 73.143-308.571zM877.714 474.857c0 64-17.714 124.571-39.429 184-12.571 34.857-33.714 91.429-33.714 127.429v164.571c0 40.571-32.571 73.143-73.143 73.143h-365.714c-40.571 0-73.143-32.571-73.143-73.143v-164.571c0-27.429-49.143-66.286-68-82.857-23.429-20.571-46.857-40-73.714-57.143-53.143-33.143-150.857-57.714-150.857-134.286 0-90.857 49.714-164.571 146.286-164.571 25.143 0 49.714 4 73.143 12.571v-213.714c0-78.857 66.857-146.286 145.714-146.286 80 0 146.857 66.286 146.857 146.286v96.571c24 1.714 46.857 9.143 68 21.143 8-1.143 16.571-1.714 24.571-1.714 36.571 0 73.143 12 101.714 34.286 108-1.143 171.429 72.571 171.429 178.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-o-up\"\n        ],\n        \"defaultCode\": 61606,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-o-up\",\n        \"id\": 157,\n        \"order\": 1013,\n        \"prevSize\": 28,\n        \"code\": 61606\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 157\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 548.571c0-113.714-73.143-210.857-73.143-310.857v-18.286h-365.714v18.286c0 60.571-51.429 101.143-93.143 137.714-26.286 23.429-52.571 45.143-82.857 64-12.571 8-25.714 14.857-38.857 21.714s-77.714 35.429-77.714 50.857c0 48.571 18.286 91.429 73.143 91.429 73.143 0 110.286-54.857 146.286-54.857v329.143c0 38.286 34.286 73.143 73.143 73.143 39.429 0 73.143-33.714 73.143-73.143v-189.143c14.857 11.429 40 20 58.857 20 26.857 0 49.714-10.857 68-30.286 12 6.857 25.714 10.286 39.429 10.286 26.286 0 58.857-13.143 72-37.143 10.286 1.714 21.143 2.286 32 2.286 67.429 0 95.429-41.714 95.429-105.143zM731.429 109.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM877.714 546.286c0 105.143-59.429 181.714-168.571 181.143l-2.857-0.571c-28.571 22.857-65.143 34.857-101.714 34.857-8 0-16.571-0.571-24.571-1.714-19.429 10.857-45.714 18.857-68 21.143v96.571c0 80-66.857 146.286-146.857 146.286-78.857 0-145.714-67.429-145.714-146.286v-213.714c-22.286 9.143-49.143 12.571-73.143 12.571-96 0-146.286-73.714-146.286-164.571 0-76.571 97.714-101.143 150.857-134.286 26.857-17.143 50.286-36.571 73.714-57.143 18.857-16.571 68-55.429 68-82.857v-164.571c0-40.571 32.571-73.143 73.143-73.143h365.714c40.571 0 73.143 32.571 73.143 73.143v164.571c0 36 21.143 92.571 33.714 127.429 21.143 58.286 39.429 118.286 39.429 181.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-o-down\"\n        ],\n        \"defaultCode\": 61607,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-o-down\",\n        \"id\": 158,\n        \"order\": 1014,\n        \"prevSize\": 28,\n        \"code\": 61607\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 158\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-286.857l108-108c6.857-6.857 10.857-16 10.857-25.714s-4-18.857-10.857-25.714l-52-52c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-258.857 258.857c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l258.857 258.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l52-52c6.857-6.857 10.286-16 10.286-25.714s-3.429-18.857-10.286-25.714l-108-108h286.857c20 0 36.571-16.571 36.571-36.571zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-circle-left\"\n        ],\n        \"defaultCode\": 61608,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-circle-left\",\n        \"id\": 159,\n        \"order\": 1015,\n        \"prevSize\": 28,\n        \"code\": 61608\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 159\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M734.286 512c0-9.714-3.429-18.857-10.286-25.714l-258.857-258.857c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-52 52c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l108 108h-286.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h286.857l-108 108c-6.857 6.857-10.857 16-10.857 25.714s4 18.857 10.857 25.714l52 52c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l258.857-258.857c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-circle-right\"\n        ],\n        \"defaultCode\": 61609,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-circle-right\",\n        \"id\": 160,\n        \"order\": 1016,\n        \"prevSize\": 28,\n        \"code\": 61609\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 160\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M733.714 511.429c0-9.714-3.429-18.857-10.286-25.714l-258.857-258.857c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-258.857 258.857c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l52 52c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l108-108v286.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-286.857l108 108c6.857 6.857 16 10.857 25.714 10.857s18.857-4 25.714-10.857l52-52c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-circle-up\"\n        ],\n        \"defaultCode\": 61610,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-circle-up\",\n        \"id\": 161,\n        \"order\": 1017,\n        \"prevSize\": 28,\n        \"code\": 61610\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 161\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M733.714 512.571c0-9.714-3.429-18.857-10.286-25.714l-52-52c-6.857-6.857-16-10.286-25.714-10.286s-18.857 3.429-25.714 10.286l-108 108v-286.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v286.857l-108-108c-6.857-6.857-16-10.857-25.714-10.857s-18.857 4-25.714 10.857l-52 52c-6.857 6.857-10.286 16-10.286 25.714s3.429 18.857 10.286 25.714l258.857 258.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286l258.857-258.857c6.857-6.857 10.286-16 10.286-25.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-circle-down\"\n        ],\n        \"defaultCode\": 61611,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-circle-down\",\n        \"id\": 162,\n        \"order\": 1018,\n        \"prevSize\": 28,\n        \"code\": 61611\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 162\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM595.429 370.857c-4.571 3.429-7.429 9.714-13.143 10.857 2.857-0.571 5.714-10.857 7.429-13.143 3.429-4 8-6.286 12.571-8.571 9.714-4 19.429-5.143 29.714-6.857 9.714-2.286 21.714-2.286 29.143 6.286-1.714-1.714 12-13.714 13.714-14.286 5.143-2.857 13.714-1.714 17.143-6.857 1.143-1.714 1.143-12.571 1.143-12.571-9.714 1.143-13.143-8-13.714-16 0 0.571-1.143 2.286-3.429 4.571 0.571-8.571-10.286-2.286-14.286-3.429-13.143-3.429-11.429-12.571-15.429-22.286-2.286-5.143-8.571-6.857-10.857-12-2.286-3.429-3.429-10.857-8.571-11.429-3.429-0.571-9.714 12-10.857 11.429-5.143-2.857-7.429 1.143-11.429 3.429-3.429 2.286-6.286 1.143-9.714 2.857 10.286-3.429-4.571-9.143-9.714-8 8-2.286 4-10.857-0.571-14.857h2.857c-1.143-5.143-17.143-9.714-22.286-13.143s-32.571-9.143-38.286-5.714c-6.857 4 1.714 15.429 1.714 21.143 0.571 6.857-6.857 8.571-6.857 14.286 0 9.714 18.286 8 13.714 21.143-2.857 8-13.714 9.714-18.286 16-4.571 5.714 0.571 16 5.143 20 4.571 3.429-8 9.143-9.714 10.286-9.714 4.571-17.143-9.714-19.429-18.286-1.714-6.286-2.286-13.714-9.143-17.143-3.429-1.143-14.286-2.857-16.571 0.571-3.429-8.571-15.429-12-23.429-14.857-11.429-4-21.143-4-33.143-2.286 4-0.571-1.143-18.286-10.857-15.429 2.857-5.714 1.714-12 2.857-17.714 1.143-4.571 3.429-9.143 6.857-13.143 1.143-2.286 13.714-15.429 9.714-16 9.714 1.143 20.571 1.714 28.571-6.286 5.143-5.143 7.429-13.714 12.571-19.429 7.429-8.571 16.571 2.286 24.571 2.857 11.429 0.571 10.857-12 4.571-17.714 7.429 0.571 1.143-13.143-2.857-14.857-5.143-1.714-24.571 3.429-14.286 7.429-2.286-1.143-16 27.429-24 13.143-2.286-2.857-3.429-14.857-8.571-15.429-4.571 0-7.429 5.143-9.143 8.571 2.857-7.429-16-12.571-20-13.143 8.571-5.714 1.714-12-4.571-15.429-4.571-2.857-18.857-5.143-22.857-0.571-10.857 13.143 11.429 14.857 17.143 18.286 1.714 1.143 8.571 5.143 4.571 8-3.429 1.714-13.714 4.571-14.857 6.857-3.429 5.143 4 10.857-1.143 16-5.143-5.143-5.143-13.714-9.143-19.429 5.143 6.286-20.571 2.857-20 2.857-8.571 0-22.286 5.714-28.571-2.857-1.143-2.286-1.143-15.429 2.286-12.571-5.143-4-8.571-8-12-10.286-18.857 6.286-36.571 14.286-53.714 23.429 2.286 0.571 4 0.571 6.857-0.571 4.571-1.714 8.571-4.571 13.143-6.857 5.714-2.286 17.714-9.143 24-4 0.571-1.143 2.286-2.286 2.857-2.857 4 4.571 8 9.143 11.429 14.286-4.571-2.286-12-1.143-17.143-0.571-4 1.143-10.857 2.286-12.571 6.857 1.714 2.857 4 7.429 2.857 10.286-7.429-5.143-13.143-13.714-23.429-14.857-4.571 0-9.143 0-12.571 0.571-54.857 30.286-101.143 74.286-134.286 126.857 2.286 2.286 4.571 4 6.857 4.571 5.714 1.714 0 18.286 10.857 9.714 3.429 2.857 4 6.857 1.714 10.857 0.571-0.571 23.429 14.286 25.143 15.429 4 3.429 10.286 7.429 12 12 1.143 4-2.286 8.571-5.714 10.286-0.571-1.143-9.143-9.714-10.286-7.429-1.714 2.857 0 18.286 6.286 17.714-9.143 0.571-5.143 36-7.429 42.857 0 0.571 1.143 0.571 1.143 0.571-1.714 6.857 4 33.714 15.429 30.857-7.429 1.714 13.143 28 16 29.714 7.429 5.143 16 8.571 21.143 16 5.714 8 5.714 20 13.714 26.286-2.286 6.857 12 14.857 11.429 24.571-1.143 0.571-1.714 0.571-2.857 1.143 2.857 8 13.714 8 17.714 15.429 2.286 4.571 0 15.429 7.429 13.143 1.143-12.571-7.429-25.143-13.714-35.429-3.429-5.714-6.857-10.857-9.714-16.571-2.857-5.143-3.429-11.429-5.714-17.143 2.286 0.571 14.857 5.143 13.714 6.857-4.571 11.429 18.286 31.429 24.571 38.857 1.714 1.714 14.857 18.857 8 18.857 7.429 0 17.714 11.429 21.143 17.143 5.143 8.571 4 19.429 7.429 28.571 3.429 11.429 19.429 16.571 28.571 21.714 8 4 14.857 9.714 22.857 12.571 12 4.571 14.857 0.571 25.143-1.143 14.857-2.286 16.571 14.286 28.571 20.571 7.429 4 23.429 9.714 31.429 6.286-3.429 1.143 12 24.571 13.143 26.286 5.143 6.857 14.857 10.286 20.571 17.143 1.714-1.143 3.429-2.857 4-5.143-2.286 6.286 8.571 18.286 14.286 17.143 6.286-1.143 8-13.714 8-18.286-11.429 5.714-21.714 1.143-28-10.286-1.143-2.857-10.286-18.857-2.286-18.857 10.857 0 3.429-8.571 2.286-16.571s-9.143-13.143-13.143-20c-3.429 6.857-14.857 5.143-18.286-0.571 0 1.714-1.714 4.571-1.714 6.857-2.857 0-5.714 0.571-8.571-0.571 1.143-6.857 1.714-15.429 3.429-22.857 2.857-10.286 21.714-30.286-2.857-29.143-8.571 0.571-12 4-14.857 11.429-2.857 6.857-1.714 13.143-9.714 16.571-5.143 2.286-22.286 1.143-27.429-1.714-10.857-6.286-18.286-26.286-18.286-37.714-0.571-15.429 7.429-29.143 0-43.429 3.429-2.857 6.857-8.571 10.857-11.429 3.429-2.286 7.429 1.714 9.143-5.143-1.714-1.143-4-3.429-4.571-3.429 8.571 4 24.571-5.714 32 0 4.571 3.429 9.714 4.571 12.571-1.143 0.571-1.714-4-8.571-1.714-13.143 1.714 9.714 8 11.429 16.571 5.143 3.429 3.429 12.571 2.286 18.857 5.714 6.286 4 7.429 10.286 14.857 1.714 4.571 6.857 5.143 6.857 6.857 13.714 1.714 6.286 5.143 22.286 10.857 25.143 12 7.429 9.143-12.571 8-19.429-0.571-0.571-0.571-19.429-1.143-19.429-18.286-4-11.429-18.286-1.143-28 1.714-1.143 14.857-5.714 20.571-10.286 5.143-4.571 11.429-12.571 8.571-20 2.857 0 5.143-2.286 6.286-5.143-1.714-0.571-8.571-6.286-9.714-5.714 4-2.286 3.429-5.714 1.143-9.143 5.714-3.429 2.857-9.714 8.571-12 6.286 8.571 18.857-1.143 12.571-8 5.714-8 18.857-4 22.286-11.429 8.571 2.286 2.286-8.571 6.857-14.857 4-5.143 10.857-5.143 16-8 0 0.571 14.286-8 9.714-8.571 9.714 1.143 29.143-9.143 14.286-17.714 2.286-5.143-5.143-7.429-10.286-8.571 4-1.143 9.143 1.143 12.571-1.143 7.429-5.143 2.286-7.429-4-9.143-8-2.286-18.286 2.857-24.571 6.857zM502.286 872c78.286-13.714 148-52.571 200.571-108-3.429-3.429-9.714-2.286-14.286-4.571-4.571-1.714-8-3.429-13.714-4.571 1.143-11.429-11.429-15.429-19.429-21.143-7.429-5.714-12-12-22.857-9.714-1.143 0.571-12.571 4.571-10.286 6.857-7.429-6.286-10.857-9.714-20.571-12.571-9.143-2.857-15.429-14.286-24.571-4-4.571 4.571-2.286 11.429-4.571 16-7.429-6.286 6.857-13.714 1.143-20.571-6.857-8-18.857 5.143-24.571 8.571-3.429 2.857-7.429 4-9.714 7.429-2.857 4-4 9.143-6.286 13.143-1.714-4.571-11.429-3.429-12-6.857 2.286 13.714 2.286 28 5.143 41.714 1.714 8 0 21.143-6.857 27.429s-15.429 13.143-16.571 22.857c-1.143 6.857 0.571 13.143 6.857 14.857 0.571 8.571-9.143 14.857-8.571 24 0 0.571 0.571 6.286 1.143 9.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"globe\"\n        ],\n        \"defaultCode\": 61612,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"globe\",\n        \"id\": 163,\n        \"order\": 1019,\n        \"prevSize\": 28,\n        \"code\": 61612\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 163\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 841.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM587.429 601.143l-389.714 389.714c-13.143 13.143-32 21.143-51.429 21.143s-38.286-8-52-21.143l-60.571-61.714c-13.714-13.143-21.714-32-21.714-51.429s8-38.286 21.714-52l389.143-389.143c29.714 74.857 89.714 134.857 164.571 164.571zM949.714 352.571c0 18.857-6.857 42.286-13.143 60.571-36 101.714-133.714 172-241.714 172-141.143 0-256-114.857-256-256s114.857-256 256-256c41.714 0 96 12.571 130.857 36 5.714 4 9.143 9.143 9.143 16 0 6.286-4 12.571-9.143 16l-167.429 96.571v128l110.286 61.143c18.857-10.857 151.429-94.286 162.857-94.286s18.286 8.571 18.286 20z\"\n        ],\n        \"width\": 961.6822857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wrench\"\n        ],\n        \"defaultCode\": 61613,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wrench\",\n        \"id\": 164,\n        \"order\": 1020,\n        \"prevSize\": 28,\n        \"code\": 61613\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 164\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 804.571h365.714v-73.143h-365.714v73.143zM365.714 512h585.143v-73.143h-585.143v73.143zM731.429 219.429h219.429v-73.143h-219.429v73.143zM1024 694.857v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 402.286v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571zM1024 109.714v146.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h950.857c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tasks\"\n        ],\n        \"defaultCode\": 61614,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tasks\",\n        \"id\": 165,\n        \"order\": 1021,\n        \"prevSize\": 28,\n        \"code\": 61614\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 165\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M801.714 168.571c5.714 13.714 2.857 29.714-8 40l-281.714 281.714v424c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-146.286-146.286c-6.857-6.857-10.857-16-10.857-25.714v-277.714l-281.714-281.714c-10.857-10.286-13.714-26.286-8-40 5.714-13.143 18.857-22.286 33.714-22.286h731.429c14.857 0 28 9.143 33.714 22.286z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter\"\n        ],\n        \"defaultCode\": 61616,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"filter\",\n        \"id\": 166,\n        \"order\": 1022,\n        \"prevSize\": 28,\n        \"code\": 61616\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 166\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 146.286h292.571v-73.143h-292.571v73.143zM1024 512v274.286c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-274.286h384v91.429c0 20 16.571 36.571 36.571 36.571h182.857c20 0 36.571-16.571 36.571-36.571v-91.429h384zM585.143 512v73.143h-146.286v-73.143h146.286zM1024 237.714v219.429h-1024v-219.429c0-50.286 41.143-91.429 91.429-91.429h201.143v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h201.143c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"briefcase\"\n        ],\n        \"defaultCode\": 61617,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"briefcase\",\n        \"id\": 167,\n        \"order\": 1023,\n        \"prevSize\": 28,\n        \"code\": 61617\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 167\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M733.143 309.143l-202.857 202.857 202.857 202.857 82.286-82.286c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v256c0 20-16.571 36.571-36.571 36.571h-256c-14.857 0-28-9.143-33.714-22.857-5.714-13.143-2.857-29.143 8-39.429l82.286-82.286-202.857-202.857-202.857 202.857 82.286 82.286c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l82.286 82.286 202.857-202.857-202.857-202.857-82.286 82.286c-6.857 6.857-16 10.857-25.714 10.857-4.571 0-9.714-1.143-13.714-2.857-13.714-5.714-22.857-18.857-22.857-33.714v-256c0-20 16.571-36.571 36.571-36.571h256c14.857 0 28 9.143 33.714 22.857 5.714 13.143 2.857 29.143-8 39.429l-82.286 82.286 202.857 202.857 202.857-202.857-82.286-82.286c-10.857-10.286-13.714-26.286-8-39.429 5.714-13.714 18.857-22.857 33.714-22.857h256c20 0 36.571 16.571 36.571 36.571v256c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-4-25.714-10.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrows-alt\"\n        ],\n        \"defaultCode\": 61618,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrows-alt\",\n        \"id\": 168,\n        \"order\": 1024,\n        \"prevSize\": 28,\n        \"code\": 61618\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 168\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M338.857 512c-59.429 1.714-113.143 27.429-151.429 73.143h-76.571c-57.143 0-110.857-27.429-110.857-90.857 0-46.286-1.714-201.714 70.857-201.714 12 0 71.429 48.571 148.571 48.571 26.286 0 51.429-4.571 76-13.143-1.714 12.571-2.857 25.143-2.857 37.714 0 52 16.571 103.429 46.286 146.286zM950.857 876c0 92.571-61.143 148-152.571 148h-499.429c-91.429 0-152.571-55.429-152.571-148 0-129.143 30.286-327.429 197.714-327.429 19.429 0 90.286 79.429 204.571 79.429s185.143-79.429 204.571-79.429c167.429 0 197.714 198.286 197.714 327.429zM365.714 146.286c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM768 365.714c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429zM1097.143 494.286c0 63.429-53.714 90.857-110.857 90.857h-76.571c-38.286-45.714-92-71.429-151.429-73.143 29.714-42.857 46.286-94.286 46.286-146.286 0-12.571-1.143-25.143-2.857-37.714 24.571 8.571 49.714 13.143 76 13.143 77.143 0 136.571-48.571 148.571-48.571 72.571 0 70.857 155.429 70.857 201.714zM1024 146.286c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"group\",\n          \"users\"\n        ],\n        \"defaultCode\": 61632,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"group, users\",\n        \"id\": 169,\n        \"order\": 1025,\n        \"prevSize\": 28,\n        \"code\": 61632\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 169\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M832 694.857c0-14.857-5.714-28.571-16-38.857l-118.857-118.857c-10.286-10.286-24.571-16-38.857-16-16.571 0-29.714 6.286-41.143 18.286 18.857 18.857 41.143 34.857 41.143 64 0 30.286-24.571 54.857-54.857 54.857-29.143 0-45.143-22.286-64-41.143-12 11.429-18.857 24.571-18.857 41.714 0 14.286 5.714 28.571 16 38.857l117.714 118.286c10.286 10.286 24.571 15.429 38.857 15.429s28.571-5.143 38.857-14.857l84-83.429c10.286-10.286 16-24 16-38.286zM430.286 292c0-14.286-5.714-28.571-16-38.857l-117.714-118.286c-10.286-10.286-24.571-16-38.857-16s-28.571 5.714-38.857 15.429l-84 83.429c-10.286 10.286-16 24-16 38.286 0 14.857 5.714 28.571 16 38.857l118.857 118.857c10.286 10.286 24.571 15.429 38.857 15.429 16.571 0 29.714-5.714 41.143-17.714-18.857-18.857-41.143-34.857-41.143-64 0-30.286 24.571-54.857 54.857-54.857 29.143 0 45.143 22.286 64 41.143 12-11.429 18.857-24.571 18.857-41.714zM941.714 694.857c0 43.429-17.714 85.714-48.571 116l-84 83.429c-30.857 30.857-72.571 47.429-116 47.429-44 0-85.714-17.143-116.571-48.571l-117.714-118.286c-30.857-30.857-47.429-72.571-47.429-116 0-45.143 18.286-88 50.286-119.429l-50.286-50.286c-31.429 32-73.714 50.286-118.857 50.286-43.429 0-85.714-17.143-116.571-48l-118.857-118.857c-31.429-31.429-48-72.571-48-116.571 0-43.429 17.714-85.714 48.571-116l84-83.429c30.857-30.857 72.571-47.429 116-47.429 44 0 85.714 17.143 116.571 48.571l117.714 118.286c30.857 30.857 47.429 72.571 47.429 116 0 45.143-18.286 88-50.286 119.429l50.286 50.286c31.429-32 73.714-50.286 118.857-50.286 43.429 0 85.714 17.143 116.571 48l118.857 118.857c31.429 31.429 48 72.571 48 116.571z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chain\",\n          \"link\"\n        ],\n        \"defaultCode\": 61633,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chain, link\",\n        \"id\": 170,\n        \"order\": 1026,\n        \"prevSize\": 28,\n        \"code\": 61633\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 170\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-102.286 60.571-190.857 147.429-231.429-0.571-8-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 122.286 0 226.857 74.857 270.857 181.714 25.143-22.286 58.286-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 29.143-8.571 56-23.429 78.857 97.143 22.857 169.714 109.714 169.714 213.714z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud\"\n        ],\n        \"defaultCode\": 61634,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cloud\",\n        \"id\": 171,\n        \"order\": 1027,\n        \"prevSize\": 28,\n        \"code\": 61634\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 171\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M872.571 827.429c42.857 68 12.571 123.429-68 123.429h-658.286c-80.571 0-110.857-55.429-68-123.429l287.429-453.143v-228h-36.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-36.571v228zM427.429 413.143l-155.429 245.143h406.857l-155.429-245.143-11.429-17.714v-249.143h-73.143v249.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flask\"\n        ],\n        \"defaultCode\": 61635,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"flask\",\n        \"id\": 172,\n        \"order\": 1028,\n        \"prevSize\": 28,\n        \"code\": 61635\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 172\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M548.571 512c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM720 548.571l289.714 227.429c10.286 7.429 15.429 20 14.286 32-1.714 12.571-9.143 23.429-20 29.143l-73.143 36.571c-5.143 2.857-10.857 4-16.571 4-6.286 0-12.571-1.714-17.714-4.571l-394.286-221.143-62.857 37.714c-2.286 1.143-4.571 2.286-6.857 2.857 5.143 17.714 7.429 36.571 5.714 55.429-5.143 58.857-44.571 114.857-107.429 154.857-48.571 30.857-104.571 48-158.286 48-51.429 0-94.857-15.429-126.857-44.571-32.571-30.286-49.143-73.714-45.143-118.286 5.143-58.286 44.571-114.857 106.857-154.857 48.571-30.857 105.143-48 158.857-48 32 0 61.143 6.286 86.286 17.714 3.429-5.143 7.429-9.143 12.571-12.571l69.714-41.714-69.714-41.714c-5.143-3.429-9.143-7.429-12.571-12.571-25.143 11.429-54.286 17.714-86.286 17.714-53.714 0-110.286-17.143-158.857-48-62.286-40-101.714-96.571-106.857-154.857-4-44.571 12.571-88 45.143-117.714 32-29.714 75.429-45.143 126.857-45.143 53.714 0 109.714 17.143 158.286 48 62.857 39.429 102.286 96 107.429 154.857 1.714 18.857-0.571 37.714-5.714 55.429 2.286 0.571 4.571 1.714 6.857 2.857l62.857 37.714 394.286-221.143c5.143-2.857 11.429-4.571 17.714-4.571 5.714 0 11.429 1.143 16.571 4l73.143 36.571c10.857 5.714 18.286 16.571 20 29.143 1.143 12-4 24.571-14.286 32zM330.857 400c34.857-32 13.143-89.714-48.571-128.571-34.857-22.286-75.429-33.714-109.714-33.714-26.286 0-49.714 6.857-64.571 20.571-34.857 32-13.143 89.714 48.571 128.571 34.857 22.286 74.857 33.714 109.714 33.714 26.286 0 49.714-6.857 64.571-20.571zM282.286 825.714c61.714-38.857 83.429-96.571 48.571-128.571-14.857-13.714-38.286-20.571-64.571-20.571-34.857 0-74.857 11.429-109.714 33.714-61.714 38.857-83.429 96.571-48.571 128.571 14.857 13.714 38.286 20.571 64.571 20.571 34.286 0 74.857-11.429 109.714-33.714zM384 475.429l54.857 33.143v-6.286c0-13.143 7.429-25.143 18.857-32l8-4.571-45.143-26.857-14.857 14.857c-4.571 4.571-8 9.143-12.571 13.143-1.714 1.714-2.857 2.286-4 3.429zM512 603.429l54.857 18.286 420.571-329.143-73.143-36.571-438.857 246.286v64.571l-91.429 54.857 5.143 4.571c1.143 1.714 2.286 2.286 4 3.429 4.571 4.571 8 9.143 12.571 13.714l14.857 14.857zM914.286 841.143l73.143-36.571-297.143-233.143-101.143 78.857c-1.714 2.286-4.571 2.857-7.429 4z\"\n        ],\n        \"width\": 1021.7325714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cut\",\n          \"scissors\"\n        ],\n        \"defaultCode\": 61636,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cut, scissors\",\n        \"id\": 173,\n        \"order\": 1029,\n        \"prevSize\": 28,\n        \"code\": 61636\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 173\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M969.143 219.429c30.286 0 54.857 24.571 54.857 54.857v694.857c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-164.571h-310.857c-30.286 0-54.857-24.571-54.857-54.857v-384c0-30.286 17.714-72.571 38.857-93.714l233.143-233.143c21.143-21.143 63.429-38.857 93.714-38.857h237.714c30.286 0 54.857 24.571 54.857 54.857v187.429c22.286-13.143 50.857-22.857 73.143-22.857h237.714zM658.286 341.143l-170.857 170.857h170.857v-170.857zM292.571 121.714l-170.857 170.857h170.857v-170.857zM404.571 491.429l180.571-180.571v-237.714h-219.429v237.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v365.714h292.571v-146.286c0-30.286 17.714-72.571 38.857-93.714zM950.857 950.857v-658.286h-219.429v237.714c0 30.286-24.571 54.857-54.857 54.857h-237.714v365.714h512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"copy\",\n          \"files-o\"\n        ],\n        \"defaultCode\": 61637,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"copy, files-o\",\n        \"id\": 174,\n        \"order\": 1030,\n        \"prevSize\": 28,\n        \"code\": 61637\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 174\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M802.286 791.429c0 89.143-68 157.143-157.143 157.143-50.286 0-98.857-21.714-134.286-57.143l-444-443.429c-40.571-41.143-64.571-97.143-64.571-154.857 0-121.143 95.429-217.714 216.571-217.714 58.286 0 114.286 23.429 156 64.571l345.714 346.286c3.429 3.429 5.714 8 5.714 12.571 0 12-32 44-44 44-5.143 0-9.714-2.286-13.143-5.714l-346.286-346.857c-27.429-26.857-64.571-44-103.429-44-81.143 0-144 65.714-144 146.286 0 38.857 16 76 43.429 103.429l443.429 444c21.714 21.714 52 36 82.857 36 48.571 0 84.571-36 84.571-84.571 0-31.429-14.286-61.143-36-82.857l-332-332c-9.143-8.571-21.714-13.714-34.286-13.714-21.714 0-38.286 16-38.286 38.286 0 12.571 5.714 24.571 14.286 33.714l234.286 234.286c3.429 3.429 5.714 8 5.714 12.571 0 12-32.571 44.571-44.571 44.571-4.571 0-9.143-2.286-12.571-5.714l-234.286-234.286c-22.857-22.286-36-53.714-36-85.143 0-62.857 49.143-112 112-112 32 0 62.857 13.143 85.143 36l332 332c36 35.429 57.143 84 57.143 134.286z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"paperclip\"\n        ],\n        \"defaultCode\": 61638,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"paperclip\",\n        \"id\": 175,\n        \"order\": 1031,\n        \"prevSize\": 28,\n        \"code\": 61638\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 175\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 877.714h438.857v-219.429h-438.857v219.429zM731.429 877.714h73.143v-512c0-10.857-9.714-34.286-17.143-41.714l-160.571-160.571c-8-8-30.286-17.143-41.714-17.143v237.714c0 30.286-24.571 54.857-54.857 54.857h-329.143c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-73.143v731.429h73.143v-237.714c0-30.286 24.571-54.857 54.857-54.857h475.429c30.286 0 54.857 24.571 54.857 54.857v237.714zM512 347.429v-182.857c0-9.714-8.571-18.286-18.286-18.286h-109.714c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h109.714c9.714 0 18.286-8.571 18.286-18.286zM877.714 365.714v530.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h530.286c30.286 0 72 17.143 93.714 38.857l160 160c21.714 21.714 38.857 63.429 38.857 93.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"floppy-o\",\n          \"save\"\n        ],\n        \"defaultCode\": 61639,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"floppy-o, save\",\n        \"id\": 176,\n        \"order\": 1032,\n        \"prevSize\": 28,\n        \"code\": 61639\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 176\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"square\"\n        ],\n        \"defaultCode\": 61640,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"square\",\n        \"id\": 177,\n        \"order\": 1033,\n        \"prevSize\": 28,\n        \"code\": 61640\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 177\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 768v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM877.714 475.429v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM877.714 182.857v73.143c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bars\",\n          \"navicon\",\n          \"reorder\"\n        ],\n        \"defaultCode\": 61641,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bars, navicon, reorder\",\n        \"id\": 178,\n        \"order\": 1034,\n        \"prevSize\": 28,\n        \"code\": 61641\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 178\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 804.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM219.429 512c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286zM219.429 219.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286zM1024 164.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"list-ul\"\n        ],\n        \"defaultCode\": 61642,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"list-ul\",\n        \"id\": 179,\n        \"order\": 1035,\n        \"prevSize\": 28,\n        \"code\": 61642\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 179\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M217.714 925.714c0 62.857-49.143 98.286-108.571 98.286-36 0-72.571-12-98.286-37.714l32.571-50.286c15.429 14.286 38.857 25.714 60.571 25.714 20 0 41.143-9.714 41.143-32.571 0-32-36.571-33.714-60-32l-14.857-32c20.571-26.286 39.429-55.429 64-77.714v-0.571c-18.286 0-37.143 1.143-55.429 1.143v30.286h-60.571v-86.857h190.286v50.286l-54.286 65.714c38.286 9.143 63.429 38.857 63.429 78.286zM218.857 567.429v90.857h-206.857c-1.714-10.286-3.429-20.571-3.429-30.857 0-105.714 129.143-121.714 129.143-169.714 0-19.429-12-29.714-30.857-29.714-20 0-36.571 17.143-46.286 33.143l-48.571-33.714c18.857-39.429 57.714-61.714 101.143-61.714 53.143 0 98.857 31.429 98.857 88 0 84.571-124 103.429-125.714 148h72.571v-34.286h60zM1024 749.714v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8 18.286 18.286zM219.429 236v56.571h-191.429v-56.571h61.143c0-46.286 0.571-92.571 0.571-138.857v-6.857h-1.143c-6.286 12.571-17.714 21.143-28.571 30.857l-40.571-43.429 77.714-72.571h60.571v230.857h61.714zM1024 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8 18.286 18.286zM1024 164.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-694.857c-10.286 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8-18.286 18.286-18.286h694.857c9.714 0 18.286 8.571 18.286 18.286z\"\n        ],\n        \"width\": 1032.5577142857144,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"list-ol\"\n        ],\n        \"defaultCode\": 61643,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"list-ol\",\n        \"id\": 180,\n        \"order\": 1036,\n        \"prevSize\": 28,\n        \"code\": 61643\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 180\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1005.714 512c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-987.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h987.429zM276 475.429c-10.857-13.714-20.571-29.143-29.143-45.714-18.286-37.143-27.429-73.143-27.429-107.429 0-69.714 25.714-128 76.571-176.571s125.714-72.571 224.571-72.571c21.714 0 53.143 4 95.429 10.857 25.143 4.571 58.857 13.714 101.143 27.429 4 14.857 8 37.714 12 67.429 5.143 45.143 8 80 8 104.571 0 8-1.143 16.571-2.857 25.714l-6.857 1.714-48-3.429-8-1.143c-19.429-57.714-39.429-96.571-58.857-117.143-33.714-34.857-74.286-52-120-52-43.429 0-78.286 11.429-104 33.714s-38.286 50.286-38.286 83.429c0 28 12.571 54.286 37.714 80s78.286 50.286 159.429 73.714c27.429 8 60 20.571 98.857 37.714 20.571 9.714 38.857 19.429 54.286 29.714h-424.571zM565.714 621.714h234.857c2.857 16 4 33.714 4 52.571 0 41.143-7.429 81.714-23.429 121.143-8.571 21.143-21.714 40.571-40.571 59.429-13.714 13.143-34.286 28.571-62.286 46.286-28.571 17.143-57.143 30.286-87.429 37.714-30.286 8-68.571 12-116 12-31.429 0-69.143-1.143-111.429-13.143l-80-22.857c-22.286-6.286-35.429-11.429-41.143-16-2.286-2.286-4.571-6.286-4.571-12.571v-7.429c0-4.571 1.143-34.286-1.143-89.143-1.143-28.571 1.143-48.571 1.143-60v-25.143l58.286-1.143c21.143 48.571 30.857 77.714 37.143 88 13.714 22.286 29.143 40 45.714 53.714s36.571 24.571 60 32.571c22.857 8.571 48.571 12.571 75.429 12.571 24 0 50.857-5.143 79.429-15.429 29.143-9.714 52.571-26.286 69.714-49.143 17.714-22.857 26.857-47.429 26.857-73.714 0-32-15.429-61.714-46.286-89.714-12.571-10.857-38.857-24.571-78.286-40.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"strikethrough\"\n        ],\n        \"defaultCode\": 61644,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"strikethrough\",\n        \"id\": 181,\n        \"order\": 1037,\n        \"prevSize\": 28,\n        \"code\": 61644\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 181\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M27.429 127.429c-10.286-0.571-18.857-0.571-25.714-2.286l-1.714-50.286c7.429-0.571 14.857-0.571 22.857-0.571 20 0 41.714 0.571 64 2.286 53.714 2.857 85.714 4 94.857 4 32.571 0 64.571-0.571 96-1.714 30.857-1.143 58.857-2.286 83.429-2.857 24 0 40.571-0.571 49.143-1.143l-0.571 8 1.143 36.571v5.143c-22.857 3.429-46.286 5.143-70.857 5.143-22.857 0-37.714 4.571-45.143 14.286-5.143 5.714-7.429 30.857-7.429 75.429 0 13.714 0.571 24.571 0.571 33.143l0.571 130.857 8 160c2.286 46.286 11.429 84.571 29.143 115.429 13.143 22.286 31.429 40 54.857 52.571 34.286 18.286 68 26.857 101.143 26.857 38.857 0 75.429-5.143 109.143-16 20-6.286 38.857-15.429 56.571-29.143 17.714-13.143 30.286-25.143 37.143-36.571 14.857-22.857 24.571-45.143 30.286-65.143 8-28 12-71.429 12-130.857 0-102.286-7.429-105.143-16-234.286l-2.286-33.714c-1.714-24.571-5.714-41.714-13.714-50.286-12.571-13.143-27.429-20-44-19.429l-57.143 1.143-8-1.714 1.143-49.143h48l117.143 5.714c38.857 1.714 76-1.714 112-5.714l10.286 1.143c2.286 14.286 3.429 24 3.429 29.143s-1.143 10.857-2.286 17.714c-15.429 4-31.429 6.857-48 7.429-26.857 4-42.286 6.857-45.143 9.714-5.143 5.143-8.571 12.571-8.571 23.429 0 7.429 1.143 18.857 1.714 33.143 0 0 4.571 10.286 12.571 226.286 2.857 86.286-2.857 144.571-8.571 173.714s-13.714 52.571-23.429 69.714c-14.857 25.143-36.571 48.571-64 70.286-28 21.143-62.286 38.286-104 50.857s-90.286 18.857-145.714 18.857c-62.857 0-117.143-8.571-162.286-26.286s-79.429-41.143-102.286-69.714-38.857-65.714-47.429-111.429c-6.286-31.429-9.143-76.571-9.143-135.429v-190.286c0-72-3.429-112.571-9.714-121.714-9.143-13.143-37.143-21.143-84-22.286zM877.714 932.571v-36.571c0-10.286-8-18.286-18.286-18.286h-841.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h841.143c10.286 0 18.286-8 18.286-18.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"underline\"\n        ],\n        \"defaultCode\": 61645,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"underline\",\n        \"id\": 182,\n        \"order\": 1038,\n        \"prevSize\": 28,\n        \"code\": 61645\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 182\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM292.571 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM292.571 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 786.286v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM585.143 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 566.857v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM877.714 347.429v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM950.857 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-768c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h768c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"table\"\n        ],\n        \"defaultCode\": 61646,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"table\",\n        \"id\": 183,\n        \"order\": 1039,\n        \"prevSize\": 28,\n        \"code\": 61646\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 183\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M680 332l167.429-167.429-61.143-61.143-167.429 167.429zM935.429 164.571c0 9.714-3.429 18.857-10.286 25.714l-734.857 734.857c-6.857 6.857-16 10.286-25.714 10.286s-18.857-3.429-25.714-10.286l-113.143-113.143c-6.857-6.857-10.286-16-10.286-25.714s3.429-18.857 10.286-25.714l734.857-734.857c6.857-6.857 16-10.286 25.714-10.286s18.857 3.429 25.714 10.286l113.143 113.143c6.857 6.857 10.286 16 10.286 25.714zM163.429 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM363.429 148.571l112 34.286-112 34.286-34.286 112-34.286-112-112-34.286 112-34.286 34.286-112zM894.857 421.714l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56zM529.143 56l56 17.143-56 17.143-17.143 56-17.143-56-56-17.143 56-17.143 17.143-56z\"\n        ],\n        \"width\": 966.2902857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"magic\"\n        ],\n        \"defaultCode\": 61648,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"magic\",\n        \"id\": 184,\n        \"order\": 1040,\n        \"prevSize\": 28,\n        \"code\": 61648\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 184\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM146.286 512h219.429v-146.286h-90.286c-2.286 0-10.857 3.429-12.571 5.143l-111.429 111.429c-1.714 1.714-5.143 10.286-5.143 12.571v17.143zM877.714 804.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM1024 182.857v585.143c0 42.286-44.571 36.571-73.143 36.571 0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-219.429c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-36.571c-28.571 0-73.143 5.714-73.143-36.571 0-20 16.571-36.571 36.571-36.571v-182.857c0-40.571-5.714-85.714 25.714-117.143l113.143-113.143c14.286-14.286 41.714-25.714 62.286-25.714h91.429v-109.714c0-20 16.571-36.571 36.571-36.571h585.143c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1060.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"truck\"\n        ],\n        \"defaultCode\": 61649,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"truck\",\n        \"id\": 185,\n        \"order\": 1041,\n        \"prevSize\": 28,\n        \"code\": 61649\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 185\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 512c0 242.286-196.571 438.857-438.857 438.857-43.429 0-84.571-6.286-124.571-18.286 16.571-26.286 35.429-60 44.571-93.714 0 0 5.143-19.429 30.857-120.571 14.857 29.143 59.429 54.857 106.857 54.857 141.143 0 237.143-128.571 237.143-301.143 0-129.714-110.286-251.429-278.286-251.429-208 0-313.143 149.714-313.143 274.286 0 75.429 28.571 142.857 89.714 168 9.714 4 18.857 0 21.714-11.429 2.286-7.429 6.857-26.857 9.143-34.857 2.857-11.429 1.714-14.857-6.286-24.571-17.714-21.143-29.143-48-29.143-86.286 0-110.857 82.857-210.286 216-210.286 117.714 0 182.857 72 182.857 168.571 0 126.286-56 233.143-139.429 233.143-45.714 0-80-37.714-69.143-84.571 13.143-55.429 38.857-115.429 38.857-155.429 0-36-19.429-66.286-59.429-66.286-46.857 0-84.571 48.571-84.571 113.714 0 0 0 41.714 14.286 69.714-48 203.429-56.571 238.857-56.571 238.857-8 33.143-8.571 70.286-7.429 101.143-154.857-68-262.857-222.286-262.857-402.286 0-242.286 196.571-438.857 438.857-438.857s438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pinterest\"\n        ],\n        \"defaultCode\": 61650,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pinterest\",\n        \"id\": 186,\n        \"order\": 1042,\n        \"prevSize\": 28,\n        \"code\": 61650\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 186\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-414.286c18.857-26.857 49.714-73.143 61.714-120 0 0 5.143-19.429 30.286-119.429 15.429 29.143 59.429 54.286 106.286 54.286 139.429 0 234.286-127.429 234.286-297.714 0-128.571-109.143-248.571-274.857-248.571-206.286 0-310.286 148-310.286 271.429 0 74.286 28.571 140.571 89.143 165.714 9.714 4 18.857 0 21.714-10.857 1.714-7.429 6.286-26.857 8.571-34.857 2.857-10.857 1.714-14.857-6.286-24-17.143-21.143-28.571-47.429-28.571-85.714 0-109.714 82.286-207.429 213.714-207.429 116.571 0 180.571 70.857 180.571 166.286 0 125.143-55.429 230.857-137.714 230.857-45.143 0-79.429-37.714-68.571-84 13.143-54.857 38.286-114.286 38.286-153.714 0-35.429-18.857-65.143-58.286-65.143-46.286 0-83.429 48-83.429 112 0 0 0 41.143 13.714 69.143-47.429 201.143-56 236.571-56 236.571-12.571 52.571-7.429 113.714-4 145.143h-104.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pinterest-square\"\n        ],\n        \"defaultCode\": 61651,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pinterest-square\",\n        \"id\": 187,\n        \"order\": 1043,\n        \"prevSize\": 28,\n        \"code\": 61651\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 187\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M524 517.143c0-14.286-1.714-25.714-3.429-36.571h-206.857v75.429h124c-4.571 32-37.143 94.286-124 94.286-75.429 0-136.571-61.714-136.571-138.286s61.143-138.286 136.571-138.286c42.286 0 70.857 17.714 87.429 33.714l59.429-57.714c-38.286-35.429-88-57.143-146.857-57.143-121.714 0-219.429 98.286-219.429 219.429s97.714 219.429 219.429 219.429c126.286 0 210.286-89.143 210.286-214.286zM721.143 543.429h62.286v-62.857h-62.286v-62.857h-62.857v62.857h-62.857v62.857h62.857v62.857h62.857v-62.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"google-plus-square\"\n        ],\n        \"defaultCode\": 61652,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"google-plus-square\",\n        \"id\": 188,\n        \"order\": 1044,\n        \"prevSize\": 28,\n        \"code\": 61652\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 188\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M821.143 521.714c0 239.429-160.571 409.143-402.286 409.143-231.429 0-418.857-187.429-418.857-418.857s187.429-418.857 418.857-418.857c113.143 0 207.429 41.143 280.571 109.714l-113.714 109.143c-30.857-29.714-85.143-64.571-166.857-64.571-142.857 0-259.429 118.286-259.429 264.571s116.571 264.571 259.429 264.571c165.714 0 228-119.429 237.714-180.571h-237.714v-144h395.429c4 21.143 6.857 42.286 6.857 69.714zM1316.571 452v120h-119.429v119.429h-120v-119.429h-119.429v-120h119.429v-119.429h120v119.429h119.429z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"google-plus\"\n        ],\n        \"defaultCode\": 61653,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"google-plus\",\n        \"id\": 189,\n        \"order\": 1045,\n        \"prevSize\": 28,\n        \"code\": 61653\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 189\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 658.286h219.429v-54.857h-73.143v-256h-65.143l-84.571 78.286 44 45.714c13.714-12 22.286-18.286 31.429-32.571h1.143v164.571h-73.143v54.857zM731.429 512c0 104-62.857 237.714-182.857 237.714s-182.857-133.714-182.857-237.714 62.857-237.714 182.857-237.714 182.857 133.714 182.857 237.714zM1024 658.286v-292.571c-80.571 0-146.286-65.714-146.286-146.286h-658.286c0 80.571-65.714 146.286-146.286 146.286v292.571c80.571 0 146.286 65.714 146.286 146.286h658.286c0-80.571 65.714-146.286 146.286-146.286zM1097.143 182.857v658.286c0 20-16.571 36.571-36.571 36.571h-1024c-20 0-36.571-16.571-36.571-36.571v-658.286c0-20 16.571-36.571 36.571-36.571h1024c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"money\"\n        ],\n        \"defaultCode\": 61654,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"money\",\n        \"id\": 190,\n        \"order\": 1046,\n        \"prevSize\": 28,\n        \"code\": 61654\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 190\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 402.286c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"caret-down\"\n        ],\n        \"defaultCode\": 61655,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"caret-down\",\n        \"id\": 191,\n        \"order\": 1047,\n        \"prevSize\": 28,\n        \"code\": 61655\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 191\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 694.857c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"caret-up\"\n        ],\n        \"defaultCode\": 61656,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"caret-up\",\n        \"id\": 192,\n        \"order\": 1048,\n        \"prevSize\": 28,\n        \"code\": 61656\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 192\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 256v512c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 402.2857142857143,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"caret-left\"\n        ],\n        \"defaultCode\": 61657,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"caret-left\",\n        \"id\": 193,\n        \"order\": 1049,\n        \"prevSize\": 28,\n        \"code\": 61657\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 193\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M329.143 512c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857-20 0-36.571-16.571-36.571-36.571v-512c0-20 16.571-36.571 36.571-36.571 9.714 0 18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 329.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"caret-right\"\n        ],\n        \"defaultCode\": 61658,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"caret-right\",\n        \"id\": 194,\n        \"order\": 1050,\n        \"prevSize\": 28,\n        \"code\": 61658\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 194\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M91.429 877.714h347.429v-658.286h-365.714v640c0 9.714 8.571 18.286 18.286 18.286zM877.714 859.429v-640h-365.714v658.286h347.429c9.714 0 18.286-8.571 18.286-18.286zM950.857 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-768c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h768c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"columns\"\n        ],\n        \"defaultCode\": 61659,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"columns\",\n        \"id\": 195,\n        \"order\": 1051,\n        \"prevSize\": 28,\n        \"code\": 61659\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 195\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 621.714c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571zM585.143 402.286c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort\",\n          \"unsorted\"\n        ],\n        \"defaultCode\": 61660,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort, unsorted\",\n        \"id\": 196,\n        \"order\": 1052,\n        \"prevSize\": 28,\n        \"code\": 61660\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 196\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 621.714c0 9.714-4 18.857-10.857 25.714l-256 256c-6.857 6.857-16 10.857-25.714 10.857s-18.857-4-25.714-10.857l-256-256c-6.857-6.857-10.857-16-10.857-25.714 0-20 16.571-36.571 36.571-36.571h512c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort-desc\",\n          \"sort-down\"\n        ],\n        \"defaultCode\": 61661,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort-desc, sort-down\",\n        \"id\": 197,\n        \"order\": 1053,\n        \"prevSize\": 28,\n        \"code\": 61661\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 197\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 402.286c0 20-16.571 36.571-36.571 36.571h-512c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l256-256c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l256 256c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort-asc\",\n          \"sort-up\"\n        ],\n        \"defaultCode\": 61662,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort-asc, sort-up\",\n        \"id\": 198,\n        \"order\": 1054,\n        \"prevSize\": 28,\n        \"code\": 61662\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 198\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 405.714v453.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-453.714c17.143 18.857 36.571 35.429 57.714 49.714 94.857 64.571 190.857 129.143 284 197.143 48 35.429 107.429 78.857 169.714 78.857h1.143c62.286 0 121.714-43.429 169.714-78.857 93.143-67.429 189.143-132.571 284.571-197.143 20.571-14.286 40-30.857 57.143-49.714zM1024 237.714c0 64-47.429 121.714-97.714 156.571-89.143 61.714-178.857 123.429-267.429 185.714-37.143 25.714-100 78.286-146.286 78.286h-1.143c-46.286 0-109.143-52.571-146.286-78.286-88.571-62.286-178.286-124-266.857-185.714-40.571-27.429-98.286-92-98.286-144 0-56 30.286-104 91.429-104h841.143c49.714 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"envelope\"\n        ],\n        \"defaultCode\": 61664,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"envelope\",\n        \"id\": 199,\n        \"order\": 1055,\n        \"prevSize\": 28,\n        \"code\": 61664\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 199\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M199.429 357.143v566.286h-188.571v-566.286h188.571zM211.429 182.286c0.571 54.286-40.571 97.714-106.286 97.714v0h-1.143c-63.429 0-104-43.429-104-97.714 0-55.429 42.286-97.714 106.286-97.714 64.571 0 104.571 42.286 105.143 97.714zM877.714 598.857v324.571h-188v-302.857c0-76-27.429-128-95.429-128-52 0-82.857 34.857-96.571 68.571-4.571 12.571-6.286 29.143-6.286 46.286v316h-188c2.286-513.143 0-566.286 0-566.286h188v82.286h-1.143c24.571-38.857 69.143-95.429 170.857-95.429 124 0 216.571 81.143 216.571 254.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"linkedin\"\n        ],\n        \"defaultCode\": 61665,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"linkedin\",\n        \"id\": 200,\n        \"order\": 1056,\n        \"prevSize\": 28,\n        \"code\": 61665\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 200\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 512c0 241.714-197.143 438.857-438.857 438.857-130.857 0-254.286-57.714-337.714-158.286-5.714-7.429-5.143-18.286 1.143-24.571l78.286-78.857c4-3.429 9.143-5.143 14.286-5.143 5.143 0.571 10.286 2.857 13.143 6.857 56 72.571 140 113.714 230.857 113.714 161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571c-74.857 0-145.714 28.571-198.857 78.286l78.286 78.857c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l74.286 73.714c80.571-76 189.714-121.143 302.286-121.143 241.714 0 438.857 197.143 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rotate-left\",\n          \"undo\"\n        ],\n        \"defaultCode\": 61666,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"rotate-left, undo\",\n        \"id\": 201,\n        \"order\": 1057,\n        \"prevSize\": 28,\n        \"code\": 61666\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 201\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1012 877.714c0 19.429-8 38.286-21.143 51.429l-61.143 61.714c-13.714 13.143-32.571 21.143-52 21.143s-38.286-8-51.429-21.143l-207.429-208c-13.714-13.143-21.714-32-21.714-51.429 0-21.714 9.143-39.429 24.571-54.857l-146.286-146.286-72 72c-5.143 5.143-12 8-19.429 8s-14.286-2.857-19.429-8c17.143 17.143 33.143 29.714 33.143 56 0 14.857-5.714 28-16 38.857-19.429 20.571-40 48-70.857 48-14.286 0-28.571-5.714-38.857-16l-233.143-233.143c-10.286-10.286-16-24.571-16-38.857 0-30.857 27.429-51.429 48-70.857 10.857-10.286 24-16 38.857-16 26.286 0 38.857 16 56 33.143-5.143-5.143-8-12-8-19.429s2.857-14.286 8-19.429l198.857-198.857c5.143-5.143 12-8 19.429-8s14.286 2.857 19.429 8c-17.143-17.143-33.143-29.714-33.143-56 0-14.857 5.714-28 16-38.857 19.429-20.571 40-48 70.857-48 14.286 0 28.571 5.714 38.857 16l233.143 233.143c10.286 10.286 16 24.571 16 38.857 0 30.857-27.429 51.429-48 70.857-10.857 10.286-24 16-38.857 16-26.286 0-38.857-16-56-33.143 5.143 5.143 8 12 8 19.429s-2.857 14.286-8 19.429l-72 72 146.286 146.286c15.429-15.429 33.143-24.571 54.857-24.571 19.429 0 38.286 8 52 21.143l207.429 207.429c13.143 13.714 21.143 32.571 21.143 52z\"\n        ],\n        \"width\": 1034.8251428571427,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gavel\",\n          \"legal\"\n        ],\n        \"defaultCode\": 61667,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"gavel, legal\",\n        \"id\": 202,\n        \"order\": 1058,\n        \"prevSize\": 28,\n        \"code\": 61667\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 202\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM329.143 402.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM573.714 677.143l57.714-218.286c4.571-19.429-6.857-39.429-26.286-44.571v0c-19.429-5.143-39.429 6.857-44.571 26.286l-57.714 218.286c-45.143 3.429-84.571 34.857-97.143 81.143-15.429 58.857 20 118.857 78.286 134.286 58.857 15.429 118.857-20 134.286-78.286 12-46.286-7.429-93.143-44.571-118.857zM950.857 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM585.143 292.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM841.143 402.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1024 658.286c0 98.286-28 193.143-80.571 276-6.857 10.286-18.286 16.571-30.857 16.571h-801.143c-12.571 0-24-6.286-30.857-16.571-52.571-82.286-80.571-177.714-80.571-276 0-282.286 229.714-512 512-512s512 229.714 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dashboard\",\n          \"tachometer\"\n        ],\n        \"defaultCode\": 61668,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"dashboard, tachometer\",\n        \"id\": 203,\n        \"order\": 1059,\n        \"prevSize\": 28,\n        \"code\": 61668\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 203\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 219.429c-237.714 0-438.857 133.714-438.857 292.571 0 85.143 57.143 166.286 156 222.286l49.714 28.571-15.429 54.857c-10.857 40.571-25.143 72-40 98.286 57.714-24 110.286-56.571 157.143-97.714l24.571-21.714 32.571 3.429c24.571 2.857 49.714 4.571 74.286 4.571 237.714 0 438.857-133.714 438.857-292.571s-201.143-292.571-438.857-292.571zM1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571h-2.857c-11.429 0-21.714-9.143-24.571-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-202.286 229.143-365.714 512-365.714v0c282.857 0 512 163.429 512 365.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"comment-o\"\n        ],\n        \"defaultCode\": 61669,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"comment-o\",\n        \"id\": 204,\n        \"order\": 1060,\n        \"prevSize\": 28,\n        \"code\": 61669\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 204\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 219.429c-178.286 0-329.143 100.571-329.143 219.429 0 62.857 42.286 123.429 115.429 165.714l55.429 32-20 48c12-6.857 24-14.286 35.429-22.286l25.143-17.714 30.286 5.714c28.571 5.143 57.714 8 87.429 8 178.286 0 329.143-100.571 329.143-219.429s-150.857-219.429-329.143-219.429zM402.286 146.286c222.286 0 402.286 130.857 402.286 292.571s-180 292.571-402.286 292.571c-34.857 0-68.571-3.429-100.571-9.143-47.429 33.714-101.143 58.286-158.857 73.143-15.429 4-32 6.857-49.143 9.143h-1.714c-8.571 0-16.571-6.857-18.286-16.571v0c-2.286-10.857 5.143-17.714 11.429-25.143 22.286-25.143 47.429-47.429 66.857-94.857-92.571-53.714-152-136.571-152-229.143 0-161.714 180-292.571 402.286-292.571zM872 814.286c19.429 47.429 44.571 69.714 66.857 94.857 6.286 7.429 13.714 14.286 11.429 25.143v0c-2.286 10.286-10.857 17.714-20 16.571-17.143-2.286-33.714-5.143-49.143-9.143-57.714-14.857-111.429-39.429-158.857-73.143-32 5.714-65.714 9.143-100.571 9.143-103.429 0-198.286-28.571-269.714-75.429 16.571 1.143 33.714 2.286 50.286 2.286 122.857 0 238.857-35.429 327.429-99.429 95.429-69.714 148-164 148-266.286 0-29.714-4.571-58.857-13.143-86.857 96.571 53.143 159.429 137.714 159.429 233.143 0 93.143-59.429 175.429-152 229.143z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"comments-o\"\n        ],\n        \"defaultCode\": 61670,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"comments-o\",\n        \"id\": 205,\n        \"order\": 1061,\n        \"prevSize\": 28,\n        \"code\": 61670\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 205\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M505.714 323.429c6.286 6.857 8 16.571 4 25.143l-308.571 661.143c-4.571 8.571-13.714 14.286-24 14.286-2.286 0-5.143-0.571-8-1.143-12.571-4-20-16-17.143-28l112.571-461.714-232 57.714c-2.286 0.571-4.571 0.571-6.857 0.571-6.286 0-13.143-2.286-17.714-6.286-6.857-5.714-9.143-14.286-7.429-22.286l114.857-471.429c2.857-10.857 13.143-18.286 25.143-18.286h187.429c14.286 0 25.714 10.857 25.714 24 0 3.429-1.143 6.857-2.857 10.286l-97.714 264.571 226.286-56c2.286-0.571 4.571-1.143 6.857-1.143 7.429 0 14.286 3.429 19.429 8.571z\"\n        ],\n        \"width\": 512.5851428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bolt\",\n          \"flash\"\n        ],\n        \"defaultCode\": 61671,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bolt, flash\",\n        \"id\": 206,\n        \"order\": 1062,\n        \"prevSize\": 28,\n        \"code\": 61671\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 206\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 713.143v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714h-292.571v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714h-292.571v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-182.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h54.857v-109.714c0-40 33.143-73.143 73.143-73.143h292.571v-109.714h-54.857c-30.286 0-54.857-24.571-54.857-54.857v-182.857c0-30.286 24.571-54.857 54.857-54.857h182.857c30.286 0 54.857 24.571 54.857 54.857v182.857c0 30.286-24.571 54.857-54.857 54.857h-54.857v109.714h292.571c40 0 73.143 33.143 73.143 73.143v109.714h54.857c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sitemap\"\n        ],\n        \"defaultCode\": 61672,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sitemap\",\n        \"id\": 207,\n        \"order\": 1063,\n        \"prevSize\": 28,\n        \"code\": 61672\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 207\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 473.143v331.429c0 79.429-66.857 146.286-146.286 146.286s-146.286-66.857-146.286-146.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571c0 38.286 34.857 73.143 73.143 73.143s73.143-34.857 73.143-73.143v-331.429c12-4 24-6.286 36.571-6.286s24.571 2.286 36.571 6.286zM950.857 488.571c0 9.714-8.571 18.286-18.286 18.286-5.143 0-9.143-2.286-13.143-5.714-33.143-30.857-64-52.571-111.429-52.571-54.286 0-101.143 33.714-132 76.571-6.857 9.714-12 20-18.286 29.714-4 6.286-8.571 9.714-16 9.714-8 0-12.571-3.429-16.571-9.714-6.286-9.714-11.429-20-18.286-29.714-30.857-42.857-77.143-76.571-131.429-76.571s-100.571 33.714-131.429 76.571c-6.857 9.714-12 20-18.286 29.714-4 6.286-8.571 9.714-16.571 9.714-7.429 0-12-3.429-16-9.714-6.286-9.714-11.429-20-18.286-29.714-30.857-42.857-77.714-76.571-132-76.571-47.429 0-78.286 21.714-111.429 52.571-4 3.429-8 5.714-13.143 5.714-9.714 0-18.286-8.571-18.286-18.286 0-1.714 0-2.857 0.571-4 52.571-216 261.143-338.286 474.857-338.286 212.571 0 423.429 122.286 474.857 338.286 0.571 1.143 0.571 2.286 0.571 4zM512 73.143v56c-12-0.571-24.571-1.143-36.571-1.143s-24.571 0.571-36.571 1.143v-56c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"umbrella\"\n        ],\n        \"defaultCode\": 61673,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"umbrella\",\n        \"id\": 208,\n        \"order\": 1064,\n        \"prevSize\": 28,\n        \"code\": 61673\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 208\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 950.857h512v-365.714h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-219.429v658.286zM585.143 128v-36.571c0-9.714-8.571-18.286-18.286-18.286h-402.286c-9.714 0-18.286 8.571-18.286 18.286v36.571c0 9.714 8.571 18.286 18.286 18.286h402.286c9.714 0 18.286-8.571 18.286-18.286zM731.429 512h170.857l-170.857-170.857v170.857zM1024 585.143v384c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-310.857c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h621.714c30.286 0 54.857 24.571 54.857 54.857v187.429c7.429 4.571 14.286 9.714 20.571 16l233.143 233.143c21.714 21.714 38.857 63.429 38.857 93.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"clipboard\",\n          \"paste\"\n        ],\n        \"defaultCode\": 61674,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"clipboard, paste\",\n        \"id\": 209,\n        \"order\": 1065,\n        \"prevSize\": 28,\n        \"code\": 61674\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 209\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M420.571 329.143c0 9.714-8.571 18.286-18.286 18.286s-18.286-8.571-18.286-18.286c0-39.429-61.143-54.857-91.429-54.857-9.714 0-18.286-8.571-18.286-18.286s8.571-18.286 18.286-18.286c53.143 0 128 28 128 91.429zM512 329.143c0-114.286-116-182.857-219.429-182.857s-219.429 68.571-219.429 182.857c0 36.571 14.857 74.857 38.857 102.857 10.857 12.571 23.429 24.571 34.857 37.714 40.571 48.571 74.857 105.714 80.571 170.286h130.286c5.714-64.571 40-121.714 80.571-170.286 11.429-13.143 24-25.143 34.857-37.714 24-28 38.857-66.286 38.857-102.857zM585.143 329.143c0 58.857-19.429 109.714-58.857 153.143s-91.429 104.571-96 165.714c16.571 9.714 26.857 28 26.857 46.857 0 13.714-5.143 26.857-14.286 36.571 9.143 9.714 14.286 22.857 14.286 36.571 0 18.857-9.714 36-25.714 46.286 4.571 8 7.429 17.714 7.429 26.857 0 37.143-29.143 54.857-62.286 54.857-14.857 33.143-48 54.857-84 54.857s-69.143-21.714-84-54.857c-33.143 0-62.286-17.714-62.286-54.857 0-9.143 2.857-18.857 7.429-26.857-16-10.286-25.714-27.429-25.714-46.286 0-13.714 5.143-26.857 14.286-36.571-9.143-9.714-14.286-22.857-14.286-36.571 0-18.857 10.286-37.143 26.857-46.857-4.571-61.143-56.571-122.286-96-165.714s-58.857-94.286-58.857-153.143c0-155.429 148-256 292.571-256s292.571 100.571 292.571 256z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lightbulb-o\"\n        ],\n        \"defaultCode\": 61675,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"lightbulb-o\",\n        \"id\": 210,\n        \"order\": 1066,\n        \"prevSize\": 28,\n        \"code\": 61675\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 210\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 676.571v109.714c0 9.714-8.571 18.286-18.286 18.286h-786.286v109.714c0 9.714-8 18.286-18.286 18.286-5.143 0-9.714-2.286-13.714-5.714l-182.286-182.857c-3.429-3.429-5.143-8-5.143-12.571 0-5.143 1.714-9.714 5.143-13.143l182.857-182.857c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8 18.286 18.286v109.714h786.286c9.714 0 18.286 8 18.286 18.286zM1024 365.714c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714h-786.286c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h786.286v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exchange\"\n        ],\n        \"defaultCode\": 61676,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"exchange\",\n        \"id\": 211,\n        \"order\": 1067,\n        \"prevSize\": 28,\n        \"code\": 61676\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 211\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 530.286c0-10.286-8-18.286-18.286-18.286h-128v-201.143c0-9.714-8.571-18.286-18.286-18.286h-109.714c-9.714 0-18.286 8.571-18.286 18.286v201.143h-128c-10.286 0-18.286 8.571-18.286 18.286 0 4.571 1.714 9.714 5.143 13.143l201.143 201.143c3.429 3.429 8 5.143 13.143 5.143 4.571 0 9.714-1.714 13.143-5.143l200.571-200.571c3.429-4 5.714-8.571 5.714-13.714zM1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-99.429 57.714-189.714 147.429-231.429-0.571-8.571-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 118.857 0 225.714 72 270.857 181.714 26.286-22.857 60-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 28-8 55.429-23.429 78.857 99.429 23.429 169.714 112 169.714 213.714z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud-download\"\n        ],\n        \"defaultCode\": 61677,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cloud-download\",\n        \"id\": 212,\n        \"order\": 1068,\n        \"prevSize\": 28,\n        \"code\": 61677\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 212\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 493.714c0-4.571-1.714-9.714-5.143-13.143l-201.143-201.143c-3.429-3.429-8-5.143-13.143-5.143-4.571 0-9.714 1.714-13.143 5.143l-200.571 200.571c-3.429 4-5.714 8.571-5.714 13.714 0 10.286 8 18.286 18.286 18.286h128v201.143c0 9.714 8.571 18.286 18.286 18.286h109.714c9.714 0 18.286-8.571 18.286-18.286v-201.143h128c10.286 0 18.286-8.571 18.286-18.286zM1097.143 658.286c0 121.143-98.286 219.429-219.429 219.429h-621.714c-141.143 0-256-114.857-256-256 0-99.429 57.714-189.714 147.429-231.429-0.571-8.571-1.143-16.571-1.143-24.571 0-161.714 130.857-292.571 292.571-292.571 118.857 0 225.714 72 270.857 181.714 26.286-22.857 60-35.429 94.857-35.429 80.571 0 146.286 65.714 146.286 146.286 0 28-8 55.429-23.429 78.857 99.429 23.429 169.714 112 169.714 213.714z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud-upload\"\n        ],\n        \"defaultCode\": 61678,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cloud-upload\",\n        \"id\": 213,\n        \"order\": 1069,\n        \"prevSize\": 28,\n        \"code\": 61678\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 213\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 768c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM804.571 802.857c0 93.143-61.143 148-152.571 148h-499.429c-91.429 0-152.571-54.857-152.571-148 0-113.714 22.857-293.143 158.857-322.857-9.143 21.714-12.571 45.143-12.571 68.571v116c-44 15.429-73.143 57.143-73.143 103.429 0 60.571 49.143 109.714 109.714 109.714s109.714-49.143 109.714-109.714c0-46.286-29.714-88-73.143-103.429v-116c0-18.857 1.714-37.714 14.286-53.143 48 37.714 107.429 59.429 168.571 59.429s120.571-21.714 168.571-59.429c12.571 15.429 14.286 34.286 14.286 53.143v36.571c-80.571 0-146.286 65.714-146.286 146.286v50.857c-11.429 10.286-18.286 25.143-18.286 40.571 0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857c0-15.429-6.857-30.286-18.286-40.571v-50.857c0-40 33.143-73.143 73.143-73.143s73.143 33.143 73.143 73.143v50.857c-11.429 10.286-18.286 25.143-18.286 40.571 0 30.286 24.571 54.857 54.857 54.857s54.857-24.571 54.857-54.857c0-15.429-6.857-30.286-18.286-40.571v-50.857c0-52-28-100.571-73.143-126.286 0-41.714 4-86.286-12.571-125.143 136 29.714 158.857 209.143 158.857 322.857zM621.714 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"user-md\"\n        ],\n        \"defaultCode\": 61680,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"user-md\",\n        \"id\": 214,\n        \"order\": 1070,\n        \"prevSize\": 28,\n        \"code\": 61680\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 214\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 402.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 402.286c0 48-30.286 88-73.143 103.429v225.714c0 121.143-114.857 219.429-256 219.429s-256-98.286-256-219.429v-75.429c-124-15.429-219.429-106.857-219.429-217.143v-292.571c0-20 16.571-36.571 36.571-36.571 3.429 0 6.286 0.571 9.143 1.143 12.571-22.286 36.571-37.714 64-37.714 40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143c-13.143 0-25.714-4-36.571-10.286v229.714c0 80.571 82.286 146.286 182.857 146.286s182.857-65.714 182.857-146.286v-229.714c-10.857 6.286-23.429 10.286-36.571 10.286-40.571 0-73.143-32.571-73.143-73.143s32.571-73.143 73.143-73.143c27.429 0 51.429 15.429 64 37.714 2.857-0.571 5.714-1.143 9.143-1.143 20 0 36.571 16.571 36.571 36.571v292.571c0 110.286-95.429 201.714-219.429 217.143v75.429c0 80.571 82.286 146.286 182.857 146.286s182.857-65.714 182.857-146.286v-225.714c-42.857-15.429-73.143-55.429-73.143-103.429 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stethoscope\"\n        ],\n        \"defaultCode\": 61681,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"stethoscope\",\n        \"id\": 215,\n        \"order\": 1071,\n        \"prevSize\": 28,\n        \"code\": 61681\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 215\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 219.429h292.571v-73.143h-292.571v73.143zM164.571 219.429v731.429h-36.571c-70.286 0-128-57.714-128-128v-475.429c0-70.286 57.714-128 128-128h36.571zM804.571 219.429v731.429h-585.143v-731.429h73.143v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h73.143zM1024 347.429v475.429c0 70.286-57.714 128-128 128h-36.571v-731.429h36.571c70.286 0 128 57.714 128 128z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"suitcase\"\n        ],\n        \"defaultCode\": 61682,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"suitcase\",\n        \"id\": 216,\n        \"order\": 1072,\n        \"prevSize\": 28,\n        \"code\": 61682\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 216\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M521.143 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM987.429 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-256c-40 0-73.143-33.143-73.143-73.143 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 151.429 22.286 242.286 142.286 242.286 252 0 276 98.286 404 182.857 475.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bell\"\n        ],\n        \"defaultCode\": 61683,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bell\",\n        \"id\": 217,\n        \"order\": 1073,\n        \"prevSize\": 28,\n        \"code\": 61683\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 217\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 365.714c0-60.571-49.143-109.714-109.714-109.714h-36.571v219.429h36.571c60.571 0 109.714-49.143 109.714-109.714zM0 804.571h1024c0 80.571-65.714 146.286-146.286 146.286h-731.429c-80.571 0-146.286-65.714-146.286-146.286zM1060.571 365.714c0 121.143-98.286 219.429-219.429 219.429h-36.571v18.286c0 70.286-57.714 128-128 128h-402.286c-70.286 0-128-57.714-128-128v-420.571c0-20 16.571-36.571 36.571-36.571h658.286c121.143 0 219.429 98.286 219.429 219.429z\"\n        ],\n        \"width\": 1060.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"coffee\"\n        ],\n        \"defaultCode\": 61684,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"coffee\",\n        \"id\": 218,\n        \"order\": 1074,\n        \"prevSize\": 28,\n        \"code\": 61684\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 218\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 36.571v365.714c0 46.286-29.714 88-73.143 103.429v445.143c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-445.143c-43.429-15.429-73.143-57.143-73.143-103.429v-365.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-237.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-237.714c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571zM804.571 36.571v914.286c0 40-33.143 73.143-73.143 73.143h-73.143c-40 0-73.143-33.143-73.143-73.143v-292.571h-128c-9.714 0-18.286-8.571-18.286-18.286v-457.143c0-100.571 82.286-182.857 182.857-182.857h146.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cutlery\"\n        ],\n        \"defaultCode\": 61685,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cutlery\",\n        \"id\": 219,\n        \"order\": 1075,\n        \"prevSize\": 28,\n        \"code\": 61685\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 219\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM219.429 457.143c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571zM640 585.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286zM640 731.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-text-o\"\n        ],\n        \"defaultCode\": 61686,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-text-o\",\n        \"id\": 220,\n        \"order\": 1076,\n        \"prevSize\": 28,\n        \"code\": 61686\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 220\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 310.857v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 164.571v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 950.857h219.429v-877.714h-658.286v877.714h219.429v-128c0-9.714 8.571-18.286 18.286-18.286h182.857c9.714 0 18.286 8.571 18.286 18.286v128zM804.571 36.571v950.857c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h731.429c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"building-o\"\n        ],\n        \"defaultCode\": 61687,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"building-o\",\n        \"id\": 221,\n        \"order\": 1077,\n        \"prevSize\": 28,\n        \"code\": 61687\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 221\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM219.429 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 749.714v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM365.714 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 603.429v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM658.286 457.143v36.571c0 9.714-8.571 18.286-18.286 18.286h-36.571c-9.714 0-18.286-8.571-18.286-18.286v-36.571c0-9.714 8.571-18.286 18.286-18.286h36.571c9.714 0 18.286 8.571 18.286 18.286zM512 950.857h219.429v-658.286h-146.286v18.286c0 30.286-24.571 54.857-54.857 54.857h-256c-30.286 0-54.857-24.571-54.857-54.857v-18.286h-146.286v658.286h219.429v-128c0-9.714 8.571-18.286 18.286-18.286h182.857c9.714 0 18.286 8.571 18.286 18.286v128zM512 274.286v-182.857c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v54.857h-73.143v-54.857c0-9.714-8.571-18.286-18.286-18.286h-36.571c-9.714 0-18.286 8.571-18.286 18.286v182.857c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286v-54.857h73.143v54.857c0 9.714 8.571 18.286 18.286 18.286h36.571c9.714 0 18.286-8.571 18.286-18.286zM804.571 256v731.429c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-731.429c0-20 16.571-36.571 36.571-36.571h182.857v-164.571c0-30.286 24.571-54.857 54.857-54.857h256c30.286 0 54.857 24.571 54.857 54.857v164.571h182.857c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hospital-o\"\n        ],\n        \"defaultCode\": 61688,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hospital-o\",\n        \"id\": 222,\n        \"order\": 1078,\n        \"prevSize\": 28,\n        \"code\": 61688\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 222\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 804.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM146.286 512h219.429v-146.286h-90.286c-3.429 0.571-9.714 2.857-12.571 5.143l-111.429 111.429c-1.714 2.857-4.571 9.143-5.143 12.571v17.143zM877.714 804.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 420.571v-109.714c0-10.286-8-18.286-18.286-18.286h-128v-128c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v128h-128c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h128v128c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-128h128c10.286 0 18.286-8 18.286-18.286zM1097.143 109.714v658.286c0 20-16.571 36.571-36.571 36.571h-109.714c0 80.571-65.143 146.286-146.286 146.286-80.571 0-146.286-65.714-146.286-146.286h-219.429c0 80.571-65.143 146.286-146.286 146.286s-146.286-65.714-146.286-146.286h-73.143c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571v-237.714c0-20 11.429-48 25.714-62.286l113.143-113.143c14.286-14.286 42.286-25.714 62.286-25.714h91.429v-182.857c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1133.7142857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ambulance\"\n        ],\n        \"defaultCode\": 61689,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ambulance\",\n        \"id\": 223,\n        \"order\": 1079,\n        \"prevSize\": 28,\n        \"code\": 61689\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 223\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 640v-109.714c0-10.286-8-18.286-18.286-18.286h-128v-128c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v128h-128c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h128v128c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-128h128c10.286 0 18.286-8 18.286-18.286zM365.714 219.429h292.571v-73.143h-292.571v73.143zM146.286 219.429v731.429h-18.286c-70.286 0-128-57.714-128-128v-475.429c0-70.286 57.714-128 128-128h18.286zM822.857 219.429v731.429h-621.714v-731.429h91.429v-91.429c0-30.286 24.571-54.857 54.857-54.857h329.143c30.286 0 54.857 24.571 54.857 54.857v91.429h91.429zM1024 347.429v475.429c0 70.286-57.714 128-128 128h-18.286v-731.429h18.286c70.286 0 128 57.714 128 128z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"medkit\"\n        ],\n        \"defaultCode\": 61690,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"medkit\",\n        \"id\": 224,\n        \"order\": 1080,\n        \"prevSize\": 28,\n        \"code\": 61690\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 224\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1097.143 548.571c0 0 0 18.286-164.571 54.857l-201.143 18.286-128 36.571h-36.571l-167.429 201.143h39.429c20 0 36.571 4 36.571 9.143s-16.571 9.143-36.571 9.143h-182.857v-18.286h36.571v-237.714h-91.429l-109.714 128h-54.857l-18.286-18.286v-109.714h18.286v-18.286h73.143v-4.571l-109.714-13.714v-73.143l109.714-13.714v-4.571h-73.143v-18.286h-18.286v-109.714l18.286-18.286h54.857l109.714 128h91.429v-237.714h-36.571v-18.286h182.857c20 0 36.571 4 36.571 9.143s-16.571 9.143-36.571 9.143h-39.429l167.429 201.143h36.571l128 36.571 201.143 18.286c164.571 36.571 164.571 54.857 164.571 54.857z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fighter-jet\"\n        ],\n        \"defaultCode\": 61691,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fighter-jet\",\n        \"id\": 225,\n        \"order\": 1081,\n        \"prevSize\": 28,\n        \"code\": 61691\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 225\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 512v-219.429h-146.286v146.286c0 40.571 32.571 73.143 73.143 73.143h73.143zM950.857 768v109.714h-658.286v-109.714l73.143-109.714h-73.143c-121.143 0-219.429-98.286-219.429-219.429v-182.857l-36.571-36.571 18.286-73.143h274.286l18.286-73.143h548.571l18.286 109.714-36.571 18.286v457.143z\"\n        ],\n        \"width\": 987.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"beer\"\n        ],\n        \"defaultCode\": 61692,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"beer\",\n        \"id\": 226,\n        \"order\": 1082,\n        \"prevSize\": 28,\n        \"code\": 61692\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 226\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 768v-512c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v182.857h-292.571v-182.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v512c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-182.857h292.571v182.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"h-square\"\n        ],\n        \"defaultCode\": 61693,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"h-square\",\n        \"id\": 227,\n        \"order\": 1083,\n        \"prevSize\": 28,\n        \"code\": 61693\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 227\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-182.857v-182.857c0-20-16.571-36.571-36.571-36.571h-73.143c-20 0-36.571 16.571-36.571 36.571v182.857h-182.857c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h182.857v182.857c0 20 16.571 36.571 36.571 36.571h73.143c20 0 36.571-16.571 36.571-36.571v-182.857h182.857c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"plus-square\"\n        ],\n        \"defaultCode\": 61694,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"plus-square\",\n        \"id\": 228,\n        \"order\": 1084,\n        \"prevSize\": 28,\n        \"code\": 61694\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 228\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M358.286 786.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143zM577.714 786.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143z\"\n        ],\n        \"width\": 603.4285714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angle-double-left\"\n        ],\n        \"defaultCode\": 61696,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angle-double-left\",\n        \"id\": 229,\n        \"order\": 1085,\n        \"prevSize\": 28,\n        \"code\": 61696\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 229\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M340 548.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143zM559.429 548.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z\"\n        ],\n        \"width\": 566.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angle-double-right\"\n        ],\n        \"defaultCode\": 61697,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angle-double-right\",\n        \"id\": 230,\n        \"order\": 1086,\n        \"prevSize\": 28,\n        \"code\": 61697\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 230\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M614.286 749.714c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143zM614.286 530.286c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angle-double-up\"\n        ],\n        \"defaultCode\": 61698,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angle-double-up\",\n        \"id\": 231,\n        \"order\": 1087,\n        \"prevSize\": 28,\n        \"code\": 61698\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 231\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M614.286 493.714c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143zM614.286 274.286c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angle-double-down\"\n        ],\n        \"defaultCode\": 61699,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angle-double-down\",\n        \"id\": 232,\n        \"order\": 1088,\n        \"prevSize\": 28,\n        \"code\": 61699\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 232\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M358.286 310.857c0 4.571-2.286 9.714-5.714 13.143l-224.571 224.571 224.571 224.571c3.429 3.429 5.714 8.571 5.714 13.143s-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8 5.714 13.143z\"\n        ],\n        \"width\": 384,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angle-left\"\n        ],\n        \"defaultCode\": 61700,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angle-left\",\n        \"id\": 233,\n        \"order\": 1089,\n        \"prevSize\": 28,\n        \"code\": 61700\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 233\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M340 548.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8-5.714-13.143 0-4.571 2.286-9.714 5.714-13.143l224.571-224.571-224.571-224.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z\"\n        ],\n        \"width\": 347.4285714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angle-right\"\n        ],\n        \"defaultCode\": 61701,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angle-right\",\n        \"id\": 234,\n        \"order\": 1090,\n        \"prevSize\": 28,\n        \"code\": 61701\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 234\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M614.286 676.571c0 4.571-2.286 9.714-5.714 13.143l-28.571 28.571c-3.429 3.429-8 5.714-13.143 5.714-4.571 0-9.714-2.286-13.143-5.714l-224.571-224.571-224.571 224.571c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-28.571-28.571c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l266.286-266.286c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l266.286 266.286c3.429 3.429 5.714 8.571 5.714 13.143z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angle-up\"\n        ],\n        \"defaultCode\": 61702,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angle-up\",\n        \"id\": 235,\n        \"order\": 1091,\n        \"prevSize\": 28,\n        \"code\": 61702\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 235\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M614.286 420.571c0 4.571-2.286 9.714-5.714 13.143l-266.286 266.286c-3.429 3.429-8.571 5.714-13.143 5.714s-9.714-2.286-13.143-5.714l-266.286-266.286c-3.429-3.429-5.714-8.571-5.714-13.143s2.286-9.714 5.714-13.143l28.571-28.571c3.429-3.429 8-5.714 13.143-5.714 4.571 0 9.714 2.286 13.143 5.714l224.571 224.571 224.571-224.571c3.429-3.429 8.571-5.714 13.143-5.714s9.714 2.286 13.143 5.714l28.571 28.571c3.429 3.429 5.714 8.571 5.714 13.143z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angle-down\"\n        ],\n        \"defaultCode\": 61703,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angle-down\",\n        \"id\": 236,\n        \"order\": 1092,\n        \"prevSize\": 28,\n        \"code\": 61703\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 236\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 566.857v-475.429c0-9.714-8.571-18.286-18.286-18.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v475.429c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286zM1097.143 91.429v621.714c0 50.286-41.143 91.429-91.429 91.429h-310.857c0 48.571 36.571 89.714 36.571 109.714s-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571 0-21.143 36.571-60 36.571-109.714h-310.857c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"desktop\"\n        ],\n        \"defaultCode\": 61704,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"desktop\",\n        \"id\": 237,\n        \"order\": 1093,\n        \"prevSize\": 28,\n        \"code\": 61704\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 237\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M237.714 731.429c-50.286 0-91.429-41.143-91.429-91.429v-402.286c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429v402.286c0 50.286-41.143 91.429-91.429 91.429h-621.714zM219.429 237.714v402.286c0 9.714 8.571 18.286 18.286 18.286h621.714c9.714 0 18.286-8.571 18.286-18.286v-402.286c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286zM1005.714 768h91.429v54.857c0 30.286-41.143 54.857-91.429 54.857h-914.286c-50.286 0-91.429-24.571-91.429-54.857v-54.857h1005.714zM594.286 822.857c5.143 0 9.143-4 9.143-9.143s-4-9.143-9.143-9.143h-91.429c-5.143 0-9.143 4-9.143 9.143s4 9.143 9.143 9.143h91.429z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"laptop\"\n        ],\n        \"defaultCode\": 61705,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"laptop\",\n        \"id\": 238,\n        \"order\": 1094,\n        \"prevSize\": 28,\n        \"code\": 61705\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 238\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 804.571c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM585.143 713.143v-548.571c0-9.714-8.571-18.286-18.286-18.286h-475.429c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h475.429c9.714 0 18.286-8.571 18.286-18.286zM658.286 164.571v621.714c0 50.286-41.143 91.429-91.429 91.429h-475.429c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h475.429c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tablet\"\n        ],\n        \"defaultCode\": 61706,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tablet\",\n        \"id\": 239,\n        \"order\": 1095,\n        \"prevSize\": 28,\n        \"code\": 61706\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 239\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M265.143 804.571c0-25.143-20.571-45.714-45.714-45.714s-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714 45.714-20.571 45.714-45.714zM384 713.143v-402.286c0-9.714-8.571-18.286-18.286-18.286h-292.571c-9.714 0-18.286 8.571-18.286 18.286v402.286c0 9.714 8.571 18.286 18.286 18.286h292.571c9.714 0 18.286-8.571 18.286-18.286zM274.286 228.571c0-5.143-4-9.143-9.143-9.143h-91.429c-5.143 0-9.143 4-9.143 9.143s4 9.143 9.143 9.143h91.429c5.143 0 9.143-4 9.143-9.143zM438.857 219.429v585.143c0 40-33.143 73.143-73.143 73.143h-292.571c-40 0-73.143-33.143-73.143-73.143v-585.143c0-40 33.143-73.143 73.143-73.143h292.571c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 438.85714285714283,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mobile\",\n          \"mobile-phone\"\n        ],\n        \"defaultCode\": 61707,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mobile, mobile-phone\",\n        \"id\": 240,\n        \"order\": 1096,\n        \"prevSize\": 28,\n        \"code\": 61707\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 240\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"circle-o\"\n        ],\n        \"defaultCode\": 61708,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"circle-o\",\n        \"id\": 241,\n        \"order\": 1097,\n        \"prevSize\": 28,\n        \"code\": 61708\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 241\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 548.571v219.429c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-402.286c0-161.143 131.429-292.571 292.571-292.571h36.571c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-36.571c-80.571 0-146.286 65.714-146.286 146.286v18.286c0 30.286 24.571 54.857 54.857 54.857h128c60.571 0 109.714 49.143 109.714 109.714zM950.857 548.571v219.429c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-402.286c0-161.143 131.429-292.571 292.571-292.571h36.571c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-36.571c-80.571 0-146.286 65.714-146.286 146.286v18.286c0 30.286 24.571 54.857 54.857 54.857h128c60.571 0 109.714 49.143 109.714 109.714z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"quote-left\"\n        ],\n        \"defaultCode\": 61709,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"quote-left\",\n        \"id\": 242,\n        \"order\": 1098,\n        \"prevSize\": 28,\n        \"code\": 61709\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 242\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 182.857v402.286c0 161.143-131.429 292.571-292.571 292.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571c80.571 0 146.286-65.714 146.286-146.286v-18.286c0-30.286-24.571-54.857-54.857-54.857h-128c-60.571 0-109.714-49.143-109.714-109.714v-219.429c0-60.571 49.143-109.714 109.714-109.714h219.429c60.571 0 109.714 49.143 109.714 109.714zM950.857 182.857v402.286c0 161.143-131.429 292.571-292.571 292.571h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571c80.571 0 146.286-65.714 146.286-146.286v-18.286c0-30.286-24.571-54.857-54.857-54.857h-128c-60.571 0-109.714-49.143-109.714-109.714v-219.429c0-60.571 49.143-109.714 109.714-109.714h219.429c60.571 0 109.714 49.143 109.714 109.714z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"quote-right\"\n        ],\n        \"defaultCode\": 61710,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"quote-right\",\n        \"id\": 243,\n        \"order\": 1099,\n        \"prevSize\": 28,\n        \"code\": 61710\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 243\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M300.571 796.571c0 40-32.571 73.143-73.143 73.143-40 0-73.143-33.143-73.143-73.143 0-40.571 33.143-73.143 73.143-73.143 40.571 0 73.143 32.571 73.143 73.143zM585.143 914.286c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM182.857 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM869.714 796.571c0 40-33.143 73.143-73.143 73.143-40.571 0-73.143-33.143-73.143-73.143 0-40.571 32.571-73.143 73.143-73.143 40 0 73.143 32.571 73.143 73.143zM318.857 227.429c0 50.286-41.143 91.429-91.429 91.429s-91.429-41.143-91.429-91.429 41.143-91.429 91.429-91.429 91.429 41.143 91.429 91.429zM987.429 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM621.714 109.714c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM924.571 227.429c0 70.857-57.714 128-128 128-70.857 0-128-57.143-128-128 0-70.286 57.143-128 128-128 70.286 0 128 57.714 128 128z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"spinner\"\n        ],\n        \"defaultCode\": 61712,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"spinner\",\n        \"id\": 244,\n        \"order\": 1100,\n        \"prevSize\": 28,\n        \"code\": 61712\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 244\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"circle\"\n        ],\n        \"defaultCode\": 61713,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"circle\",\n        \"id\": 245,\n        \"order\": 1101,\n        \"prevSize\": 28,\n        \"code\": 61713\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 245\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 640c0 80-40 184.571-72.571 257.714-6.286 13.143-12.571 31.429-21.143 43.429-4 5.714-8 9.714-16 9.714-11.429 0-18.286-9.143-18.286-20 0-9.143 2.286-19.429 2.857-28.571 1.714-23.429 2.857-46.857 2.857-70.286 0-272.571-161.714-320-408-320h-128v146.286c0 20-16.571 36.571-36.571 36.571-9.714 0-18.857-4-25.714-10.857l-292.571-292.571c-6.857-6.857-10.857-16-10.857-25.714s4-18.857 10.857-25.714l292.571-292.571c6.857-6.857 16-10.857 25.714-10.857 20 0 36.571 16.571 36.571 36.571v146.286h128c187.429 0 420.571 33.143 500 230.286 24 60.571 30.286 126.286 30.286 190.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mail-reply\",\n          \"reply\"\n        ],\n        \"defaultCode\": 61714,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mail-reply, reply\",\n        \"id\": 246,\n        \"order\": 1102,\n        \"prevSize\": 28,\n        \"code\": 61714\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 246\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 694.857c0 41.714-21.714 109.714-73.143 109.714s-73.143-68-73.143-109.714 21.714-109.714 73.143-109.714 73.143 68 73.143 109.714zM731.429 694.857c0 41.714-21.714 109.714-73.143 109.714s-73.143-68-73.143-109.714 21.714-109.714 73.143-109.714 73.143 68 73.143 109.714zM822.857 694.857c0-87.429-53.143-164.571-146.286-164.571-37.714 0-73.714 6.857-111.429 12-29.714 4.571-59.429 6.286-89.714 6.286s-60-1.714-89.714-6.286c-37.143-5.143-73.714-12-111.429-12-93.143 0-146.286 77.143-146.286 164.571 0 174.857 160 201.714 299.429 201.714h96c139.429 0 299.429-26.857 299.429-201.714zM950.857 594.286c0 63.429-6.286 130.857-34.857 189.143-75.429 152.571-282.857 167.429-431.429 167.429-150.857 0-370.857-13.143-449.143-167.429-29.143-57.714-35.429-125.714-35.429-189.143 0-83.429 22.857-162.286 77.714-226.286-10.286-31.429-15.429-64.571-15.429-97.143 0-42.857 9.714-85.714 29.143-124.571 90.286 0 148 39.429 216.571 93.143 57.714-13.714 117.143-20 176.571-20 53.714 0 108 5.714 160 18.286 68-53.143 125.714-91.429 214.857-91.429 19.429 38.857 29.143 81.714 29.143 124.571 0 32.571-5.143 65.143-15.429 96 54.857 64.571 77.714 144 77.714 227.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"github-alt\"\n        ],\n        \"defaultCode\": 61715,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"github-alt\",\n        \"id\": 247,\n        \"order\": 1103,\n        \"prevSize\": 28,\n        \"code\": 61715\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 247\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 749.714v-402.286c0-30.286-24.571-54.857-54.857-54.857h-402.286c-30.286 0-54.857-24.571-54.857-54.857v-36.571c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v548.571c0 30.286 24.571 54.857 54.857 54.857h694.857c30.286 0 54.857-24.571 54.857-54.857zM950.857 347.429v402.286c0 70.286-57.714 128-128 128h-694.857c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h384c70.286 0 128 57.714 128 128z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"folder-o\"\n        ],\n        \"defaultCode\": 61716,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"folder-o\",\n        \"id\": 248,\n        \"order\": 1104,\n        \"prevSize\": 28,\n        \"code\": 61716\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 248\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1017.714 532c0-16-17.714-20-30.286-20h-621.714c-30.286 0-70.286 18.857-89.714 42.286l-168 207.429c-5.143 6.857-10.286 14.286-10.286 22.857 0 16 17.714 20 30.286 20h621.714c30.286 0 70.286-18.857 89.714-42.857l168-207.429c5.143-6.286 10.286-13.714 10.286-22.286zM365.714 438.857h438.857v-91.429c0-30.286-24.571-54.857-54.857-54.857h-329.143c-30.286 0-54.857-24.571-54.857-54.857v-36.571c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v487.429l146.286-180c33.143-40.571 94.286-69.714 146.286-69.714zM1090.857 532c0 25.143-10.857 49.143-26.286 68.571l-168.571 207.429c-32.571 40-94.857 69.714-146.286 69.714h-621.714c-70.286 0-128-57.714-128-128v-548.571c0-70.286 57.714-128 128-128h182.857c70.286 0 128 57.714 128 128v18.286h310.857c70.286 0 128 57.714 128 128v91.429h109.714c38.857 0 77.714 17.714 94.857 54.286 5.714 12 8.571 25.143 8.571 38.857z\"\n        ],\n        \"width\": 1090.8525714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"folder-open-o\"\n        ],\n        \"defaultCode\": 61717,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"folder-open-o\",\n        \"id\": 249,\n        \"order\": 1105,\n        \"prevSize\": 28,\n        \"code\": 61717\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 249\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M648 614.286c-28.571 92-112.571 153.714-209.143 153.714s-180.571-61.714-209.143-153.714c-6.286-19.429 4.571-39.429 24-45.714 18.857-6.286 39.429 4.571 45.714 24 18.857 61.143 75.429 102.286 139.429 102.286s120.571-41.143 139.429-102.286c6.286-19.429 26.857-30.286 46.286-24 18.857 6.286 29.714 26.286 23.429 45.714zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"smile-o\"\n        ],\n        \"defaultCode\": 61720,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"smile-o\",\n        \"id\": 250,\n        \"order\": 1106,\n        \"prevSize\": 28,\n        \"code\": 61720\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 250\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M648 702.286c6.286 19.429-4.571 39.429-23.429 45.714-19.429 6.286-40-4.571-46.286-24-18.857-61.143-75.429-102.286-139.429-102.286s-120.571 41.143-139.429 102.286c-6.286 19.429-26.857 30.286-45.714 24-19.429-6.286-30.286-26.286-24-45.714 28.571-92 112.571-153.714 209.143-153.714s180.571 61.714 209.143 153.714zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"frown-o\"\n        ],\n        \"defaultCode\": 61721,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"frown-o\",\n        \"id\": 251,\n        \"order\": 1107,\n        \"prevSize\": 28,\n        \"code\": 61721\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 251\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 621.714c0 20-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h365.714c20 0 36.571 16.571 36.571 36.571zM365.714 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM658.286 365.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"meh-o\"\n        ],\n        \"defaultCode\": 61722,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"meh-o\",\n        \"id\": 252,\n        \"order\": 1108,\n        \"prevSize\": 28,\n        \"code\": 61722\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 252\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M475.429 621.714v-73.143c0-10.286-8-18.286-18.286-18.286h-109.714v-109.714c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v109.714h-109.714c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h109.714v109.714c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286v-109.714h109.714c10.286 0 18.286-8 18.286-18.286zM804.571 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1097.143 585.143c0 161.714-130.857 292.571-292.571 292.571-74.286 0-141.714-28-193.143-73.143h-125.714c-51.429 45.143-118.857 73.143-193.143 73.143-161.714 0-292.571-130.857-292.571-292.571s130.857-292.571 292.571-292.571h512c161.714 0 292.571 130.857 292.571 292.571z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gamepad\"\n        ],\n        \"defaultCode\": 61723,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"gamepad\",\n        \"id\": 253,\n        \"order\": 1109,\n        \"prevSize\": 28,\n        \"code\": 61723\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 253\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM292.571 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-128c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h128c5.143 0 9.143 4 9.143 9.143zM219.429 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM804.571 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-493.714c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h493.714c5.143 0 9.143 4 9.143 9.143zM438.857 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM365.714 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM585.143 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM512 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM731.429 521.143v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM950.857 667.429v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM658.286 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM804.571 374.857v54.857c0 5.143-4 9.143-9.143 9.143h-54.857c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM950.857 374.857v201.143c0 5.143-4 9.143-9.143 9.143h-128c-5.143 0-9.143-4-9.143-9.143v-54.857c0-5.143 4-9.143 9.143-9.143h64v-137.143c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143zM1024 804.571v-512h-950.857v512h950.857zM1097.143 292.571v512c0 40.571-32.571 73.143-73.143 73.143h-950.857c-40.571 0-73.143-32.571-73.143-73.143v-512c0-40.571 32.571-73.143 73.143-73.143h950.857c40.571 0 73.143 32.571 73.143 73.143z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard-o\"\n        ],\n        \"defaultCode\": 61724,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"keyboard-o\",\n        \"id\": 254,\n        \"order\": 1110,\n        \"prevSize\": 28,\n        \"code\": 61724\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 254\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 597.143v-352c-45.714 24.571-109.714 52-174.857 52v0c-30.286 0-58.286-5.714-82.857-18.286-61.143-30.286-127.429-59.429-206.857-59.429-73.714 0-164 36-230.286 72.571v342.286c75.429-34.857 171.429-64.571 247.429-64.571 88 0 145.143 29.143 206.286 59.429l16 8c16 8 35.429 12.571 57.714 12.571 63.429 0 132-33.714 167.429-52.571zM182.857 146.286c0 26.857-14.857 50.286-36.571 62.857v723.429c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-723.429c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 13.714-8 26.286-20 32.571-2.286 1.143-5.714 2.857-9.714 5.143-36.571 19.429-122.857 66.286-210.857 66.286-33.714 0-64-6.857-90.286-20l-16-8c-57.714-29.143-103.429-52-173.714-52-82.286 0-198.286 42.857-265.143 83.429-5.714 3.429-12.571 5.143-18.857 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-424c0-12.571 6.857-24.571 17.714-31.429 36.571-21.714 165.714-93.143 285.714-93.143 95.429 0 173.143 34.857 238.857 66.857 14.857 7.429 32 10.857 50.857 10.857 67.429 0 141.714-42.857 177.143-64 7.429-4 13.714-7.429 17.714-9.714 11.429-5.714 24.571-5.143 35.429 1.143 10.857 6.857 17.714 18.857 17.714 31.429z\"\n        ],\n        \"width\": 1060.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flag-o\"\n        ],\n        \"defaultCode\": 61725,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"flag-o\",\n        \"id\": 255,\n        \"order\": 1111,\n        \"prevSize\": 28,\n        \"code\": 61725\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 255\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M475.429 571.429v-109.714c-69.714 6.286-153.714 34.286-219.429 66.857v105.714c66.286-30.857 148.571-57.143 219.429-62.857zM475.429 332.571v-112.571c-72 3.429-156.571 37.143-219.429 72v108c67.429-34.857 148.571-64.571 219.429-67.429zM950.857 597.143v-105.143c-52 25.714-142.857 64-219.429 40.571v-128c-7.429-2.286-14.857-5.143-22.286-8.571-65.714-33.143-119.429-64-205.714-64-9.143 0-18.286 0.571-28 1.714v126.857h10.857c86.286 0 157.143 30.857 222.857 63.429 7.429 3.429 14.857 6.286 22.286 8.571v107.429c15.429 6.286 32.571 9.714 52 9.714 63.429 0 132-33.714 167.429-52.571zM950.857 353.143v-108c-45.714 24.571-109.714 52-174.857 52v0c-15.429 0-30.286-1.143-44.571-4.571v112c76.571 21.714 167.429-22.286 219.429-51.429zM182.857 146.286c0 26.857-14.857 50.286-36.571 62.857v723.429c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-723.429c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143s73.143 32.571 73.143 73.143zM1024 182.857v436c0 13.714-8 26.286-20 32.571-2.286 1.143-5.714 2.857-9.714 5.143-36.571 19.429-122.857 66.286-210.857 66.286-33.714 0-64-6.857-90.286-20l-16-8c-57.714-29.143-103.429-52-173.714-52-82.286 0-198.286 42.857-265.143 83.429-5.714 3.429-12.571 5.143-18.857 5.143s-12.571-1.714-18.286-4.571c-11.429-6.857-18.286-18.857-18.286-32v-424c0-12.571 6.857-24.571 17.714-31.429 36.571-21.714 165.714-93.143 285.714-93.143 95.429 0 173.143 34.857 238.857 66.857 14.857 7.429 32 10.857 50.857 10.857 67.429 0 141.714-42.857 177.143-64 7.429-4 13.714-7.429 17.714-9.714 11.429-5.714 24.571-5.143 35.429 1.143 10.857 6.857 17.714 18.857 17.714 31.429z\"\n        ],\n        \"width\": 1060.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flag-checkered\"\n        ],\n        \"defaultCode\": 61726,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"flag-checkered\",\n        \"id\": 256,\n        \"order\": 1112,\n        \"prevSize\": 28,\n        \"code\": 61726\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 256\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M334.286 561.714l-266.286 266.286c-7.429 7.429-18.857 7.429-26.286 0l-28.571-28.571c-7.429-7.429-7.429-18.857 0-26.286l224.571-224.571-224.571-224.571c-7.429-7.429-7.429-18.857 0-26.286l28.571-28.571c7.429-7.429 18.857-7.429 26.286 0l266.286 266.286c7.429 7.429 7.429 18.857 0 26.286zM950.857 822.857v36.571c0 10.286-8 18.286-18.286 18.286h-548.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h548.571c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 956.5622857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"terminal\"\n        ],\n        \"defaultCode\": 61728,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"terminal\",\n        \"id\": 257,\n        \"order\": 1113,\n        \"prevSize\": 28,\n        \"code\": 61728\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 257\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M352.571 799.429l-28.571 28.571c-7.429 7.429-18.857 7.429-26.286 0l-266.286-266.286c-7.429-7.429-7.429-18.857 0-26.286l266.286-266.286c7.429-7.429 18.857-7.429 26.286 0l28.571 28.571c7.429 7.429 7.429 18.857 0 26.286l-224.571 224.571 224.571 224.571c7.429 7.429 7.429 18.857 0 26.286zM690.286 189.714l-213.143 737.714c-2.857 9.714-13.143 15.429-22.286 12.571l-35.429-9.714c-9.714-2.857-15.429-13.143-12.571-22.857l213.143-737.714c2.857-9.714 13.143-15.429 22.286-12.571l35.429 9.714c9.714 2.857 15.429 13.143 12.571 22.857zM1065.714 561.714l-266.286 266.286c-7.429 7.429-18.857 7.429-26.286 0l-28.571-28.571c-7.429-7.429-7.429-18.857 0-26.286l224.571-224.571-224.571-224.571c-7.429-7.429-7.429-18.857 0-26.286l28.571-28.571c7.429-7.429 18.857-7.429 26.286 0l266.286 266.286c7.429 7.429 7.429 18.857 0 26.286z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"code\"\n        ],\n        \"defaultCode\": 61729,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"code\",\n        \"id\": 258,\n        \"order\": 1114,\n        \"prevSize\": 28,\n        \"code\": 61729\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 258\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 618.286v40c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-292.571-292.571c-14.286-14.286-14.286-37.143 0-51.429l292.571-292.571c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v39.429l-226.857 227.429c-14.286 14.286-14.286 37.143 0 51.429zM1024 640c0 118.857-89.714 293.714-93.714 301.143-2.857 6.286-9.143 9.714-16 9.714-1.714 0-3.429 0-5.143-0.571-8.571-2.857-13.714-10.857-13.143-19.429 16.571-156-2.857-258.857-60.571-322.857-48.571-54.286-127.429-83.429-250.286-93.143v143.429c0 14.857-9.143 28-22.286 33.714-4.571 1.714-9.714 2.857-14.286 2.857-9.714 0-18.857-3.429-25.714-10.857l-292.571-292.571c-14.286-14.286-14.286-37.143 0-51.429l292.571-292.571c10.286-10.857 26.286-13.714 40-8 13.143 5.714 22.286 18.857 22.286 33.714v149.714c157.714 10.857 270.286 52.571 342.286 126.286 86.286 88.571 96.571 208.571 96.571 290.857z\"\n        ],\n        \"width\": 1020.5622857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mail-reply-all\",\n          \"reply-all\"\n        ],\n        \"defaultCode\": 61730,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mail-reply-all, reply-all\",\n        \"id\": 259,\n        \"order\": 1115,\n        \"prevSize\": 28,\n        \"code\": 61730\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 259\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M677.714 546.857l146.857-142.857-241.143-35.429-17.143-34.286-90.857-184v550.286l33.714 17.714 181.714 96-34.286-202.857-6.857-37.714zM936 397.143l-207.429 202.286 49.143 285.714c4 25.143-5.143 40-22.857 40-6.286 0-14.286-2.286-22.857-6.857l-256.571-134.857-256.571 134.857c-8.571 4.571-16.571 6.857-22.857 6.857-17.714 0-26.857-14.857-22.857-40l49.143-285.714-208-202.286c-24.571-24.571-16.571-48.571 17.714-53.714l286.857-41.714 128.571-260c7.429-15.429 17.714-23.429 28-23.429v0c10.286 0 20 8 28 23.429l128.571 260 286.857 41.714c34.286 5.143 42.286 29.143 17.143 53.714z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"star-half-empty\",\n          \"star-half-full\",\n          \"star-half-o\"\n        ],\n        \"defaultCode\": 61731,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"star-half-empty, star-half-full, star-half-o\",\n        \"id\": 260,\n        \"order\": 1116,\n        \"prevSize\": 28,\n        \"code\": 61731\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 260\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M800.571 199.429l-365.714 731.429c-6.286 12.571-18.857 20-32.571 20-2.857 0-5.714-0.571-8.571-1.143-16.571-4-28-18.286-28-35.429v-329.143h-329.143c-17.143 0-31.429-11.429-35.429-28s4-33.714 18.857-41.143l731.429-365.714c5.143-2.857 10.857-4 16.571-4 9.714 0 18.857 3.429 25.714 10.857 11.429 10.857 14.286 28 6.857 42.286z\"\n        ],\n        \"width\": 805.1565714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"location-arrow\"\n        ],\n        \"defaultCode\": 61732,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"location-arrow\",\n        \"id\": 261,\n        \"order\": 1117,\n        \"prevSize\": 28,\n        \"code\": 61732\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 261\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M318.286 731.429h340v-340zM292.571 705.714l340-340h-340v340zM950.857 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-128h-493.714c-10.286 0-18.286-8-18.286-18.286v-493.714h-128c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h128v-128c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v128h486.286l140.571-141.143c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286l-141.143 140.571v486.286h128c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 952.5394285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop\"\n        ],\n        \"defaultCode\": 61733,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"crop\",\n        \"id\": 262,\n        \"order\": 1118,\n        \"prevSize\": 28,\n        \"code\": 61733\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 262\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M164.571 841.143c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM164.571 182.857c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM530.286 256c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM585.143 256c0 40.571-22.286 76-54.857 94.857-1.714 206.286-148 252-245.143 282.857-90.857 28.571-120.571 42.286-120.571 97.714v14.857c32.571 18.857 54.857 54.286 54.857 94.857 0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-40.571 22.286-76 54.857-94.857v-468.571c-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714c0 40.571-22.286 76-54.857 94.857v284c29.143-14.286 60-24 88-32.571 106.286-33.714 166.857-58.857 168-178.286-32.571-18.857-54.857-54.286-54.857-94.857 0-60.571 49.143-109.714 109.714-109.714s109.714 49.143 109.714 109.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"code-fork\"\n        ],\n        \"defaultCode\": 61734,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"code-fork\",\n        \"id\": 263,\n        \"order\": 1119,\n        \"prevSize\": 28,\n        \"code\": 61734\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 263\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M250.857 726.286l-146.286 146.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143c-6.857-7.429-6.857-18.857 0-26.286l146.286-146.286c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286zM347.429 749.714v182.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM219.429 621.714c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM941.714 694.857c0 44-17.143 85.143-48.571 116l-84 83.429c-30.857 30.857-72 47.429-116 47.429s-85.714-17.143-116.571-48.571l-190.857-191.429c-9.714-9.714-17.143-20.571-24-32l136.571-10.286 156 156.571c20.571 20.571 57.143 21.143 77.714 0.571l84-83.429c10.286-10.286 16-24 16-38.286 0-14.857-5.714-28.571-16-38.857l-156.571-157.143 10.286-136.571c11.429 6.857 22.286 14.286 32 24l192 192c30.857 31.429 48 72.571 48 116.571zM589.143 281.143l-136.571 10.286-156-156.571c-10.286-10.286-24-16-38.857-16s-28.571 5.714-38.857 15.429l-84 83.429c-10.286 10.286-16 24-16 38.286 0 14.857 5.714 28.571 16 38.857l156.571 156.571-10.286 137.143c-11.429-6.857-22.286-14.286-32-24l-192-192c-30.857-31.429-48-72.571-48-116.571s17.143-85.143 48.571-116l84-83.429c30.857-30.857 72-47.429 116-47.429s85.714 17.143 116.571 48.571l190.857 191.429c9.714 9.714 17.143 20.571 24 32zM950.857 329.143c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM640 18.286v182.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-182.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM872.571 104.571l-146.286 146.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143c-6.857-7.429-6.857-18.857 0-26.286l146.286-146.286c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chain-broken\",\n          \"unlink\"\n        ],\n        \"defaultCode\": 61735,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chain-broken, unlink\",\n        \"id\": 264,\n        \"order\": 1120,\n        \"prevSize\": 28,\n        \"code\": 61735\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 264\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 768v73.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h36.571v-219.429h-36.571c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571v329.143h36.571c20 0 36.571 16.571 36.571 36.571zM292.571 109.714v109.714c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-109.714c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 365.71428571428567,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"info\"\n        ],\n        \"defaultCode\": 61737,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"info\",\n        \"id\": 265,\n        \"order\": 1121,\n        \"prevSize\": 28,\n        \"code\": 61737\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 265\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 713.143v128c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-128c0-20 16.571-36.571 36.571-36.571h146.286c20 0 36.571 16.571 36.571 36.571zM309.714 109.714l-16 438.857c-0.571 20-17.714 36.571-37.714 36.571h-146.286c-20 0-37.143-16.571-37.714-36.571l-16-438.857c-0.571-20 15.429-36.571 35.429-36.571h182.857c20 0 36 16.571 35.429 36.571z\"\n        ],\n        \"width\": 365.71428571428567,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exclamation\"\n        ],\n        \"defaultCode\": 61738,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"exclamation\",\n        \"id\": 266,\n        \"order\": 1122,\n        \"prevSize\": 28,\n        \"code\": 61738\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 266\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512.571 782.286v95.429h-141.714l-90.857-144-13.714-24c-3.429-4-5.143-8-6.286-12h-1.714c-1.143 4-3.429 8-5.143 12-3.429 6.857-8.571 16-14.286 25.143l-88.571 142.857h-147.429v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286c5.143 8 9.143 16.571 13.143 24 3.429 4 5.143 8 6.286 12h1.714c1.143-4 3.429-8 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286zM876.571 394.286v117.714h-293.714l-1.714-15.429c-1.143-8-2.286-18.857-2.286-26.286 0-156 200-169.143 200-252 0-29.714-26.857-49.714-57.143-49.714-21.714 0-41.143 10.286-55.429 22.286-7.429 6.286-14.286 14.286-20.571 21.714l-60-52.571c10.286-14.286 21.714-26.286 36-37.714 24-18.857 58.857-37.143 107.429-37.143 82.857 0 140.571 48.571 140.571 124.571 0 137.143-189.714 148.571-197.714 230.286h132.571v-45.714h72z\"\n        ],\n        \"width\": 879.3965714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"superscript\"\n        ],\n        \"defaultCode\": 61739,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"superscript\",\n        \"id\": 267,\n        \"order\": 1123,\n        \"prevSize\": 28,\n        \"code\": 61739\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 267\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512.571 782.286v95.429h-141.714l-90.857-144-13.714-24c-3.429-4-5.143-8-6.286-12h-1.714c-1.143 4-3.429 8-5.143 12-3.429 6.857-8.571 16-14.286 25.143l-88.571 142.857h-147.429v-95.429h73.143l112.571-166.286-105.714-155.429h-78.286v-96h157.714l79.429 130.286c5.143 8 9.143 16.571 13.143 24 3.429 4 5.143 8 6.286 12h1.714c1.143-4 3.429-8 6.286-12l14.286-24 80-130.286h146.857v96h-71.429l-105.143 152.571 116.571 169.143h62.286zM877.714 906.286v117.714h-293.714l-2.286-15.429c-0.571-8.571-1.714-18.857-1.714-26.286 0-156 200-169.143 200-252 0-29.714-26.857-49.714-57.143-49.714-22.286 0-41.143 10.286-55.429 22.286-7.429 6.286-14.286 14.286-20.571 21.714l-60-52.571c10.286-14.286 21.714-26.286 36-37.714 24-19.429 58.857-37.143 107.429-37.143 82.857 0 140.571 48.571 140.571 124.571 0 136.571-189.714 148-197.714 230.286h132.571v-45.714h72z\"\n        ],\n        \"width\": 880.5668571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"subscript\"\n        ],\n        \"defaultCode\": 61740,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"subscript\",\n        \"id\": 268,\n        \"order\": 1124,\n        \"prevSize\": 28,\n        \"code\": 61740\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 268\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 804.571l192-219.429h-438.857l-192 219.429h438.857zM1090.857 189.143c11.429 26.286 6.857 56.571-12 78.286l-512 585.143c-13.714 16-33.714 25.143-54.857 25.143h-438.857c-28.571 0-54.857-16.571-66.857-42.857-11.429-26.286-6.857-56.571 12-78.286l512-585.143c13.714-16 33.714-25.143 54.857-25.143h438.857c28.571 0 54.857 16.571 66.857 42.857z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"eraser\"\n        ],\n        \"defaultCode\": 61741,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"eraser\",\n        \"id\": 269,\n        \"order\": 1125,\n        \"prevSize\": 28,\n        \"code\": 61741\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 269\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 627.429c0 58.857-33.714 108-96 108-69.714 0-88-63.429-150.857-63.429-45.714 0-62.857 28.571-62.857 70.857 0 44.571 18.286 87.429 17.714 131.429v2.857c-6.286 0-12.571 0-18.857 0.571-58.857 5.714-118.286 17.143-177.714 17.143-40.571 0-82.857-16-82.857-62.857 0-62.857 63.429-81.143 63.429-150.857 0-62.286-49.143-96-108-96-60 0-115.429 33.143-115.429 98.857 0 72.571 55.429 104 55.429 143.429 0 20-12.571 37.714-26.286 50.857-17.714 16.571-42.857 20-66.857 20-46.857 0-93.714-6.286-140-13.714-10.286-1.714-21.143-2.857-31.429-4.571l-7.429-1.143c-1.143-0.571-2.857-0.571-2.857-1.143v-585.143c2.286 1.714 36 5.714 41.714 6.857 46.286 7.429 93.143 13.714 140 13.714 24 0 49.143-3.429 66.857-20 13.714-13.143 26.286-30.857 26.286-50.857 0-39.429-55.429-70.857-55.429-143.429 0-65.714 55.429-98.857 116-98.857 58.286 0 107.429 33.714 107.429 96 0 69.714-63.429 88-63.429 150.857 0 46.857 42.286 62.857 82.857 62.857 65.714 0 130.857-14.857 196-18.286v1.143c-1.714 2.286-5.714 36-6.857 41.714-7.429 46.286-13.714 93.143-13.714 140 0 24 3.429 49.143 20 66.857 13.143 13.714 30.857 26.286 50.857 26.286 39.429 0 70.857-55.429 143.429-55.429 65.714 0 98.857 55.429 98.857 115.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"puzzle-piece\"\n        ],\n        \"defaultCode\": 61742,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"puzzle-piece\",\n        \"id\": 270,\n        \"order\": 1126,\n        \"prevSize\": 28,\n        \"code\": 61742\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 270\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 402.286v73.143c0 169.143-128 308.571-292.571 326.857v75.429h146.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 141.143 114.857 256 256 256s256-114.857 256-256v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571zM512 182.857v292.571c0 100.571-82.286 182.857-182.857 182.857s-182.857-82.286-182.857-182.857v-292.571c0-100.571 82.286-182.857 182.857-182.857s182.857 82.286 182.857 182.857z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"microphone\"\n        ],\n        \"defaultCode\": 61744,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"microphone\",\n        \"id\": 271,\n        \"order\": 1127,\n        \"prevSize\": 28,\n        \"code\": 61744\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 271\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M154.857 540l-57.714 57.714c-15.429-37.714-24-78.857-24-122.286v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 22.286 3.429 44 8.571 64.571zM791.429 196l-206.286 206.286v73.143c0 100.571-82.286 182.857-182.857 182.857-21.714 0-42.857-4-62.286-10.857l-54.857 54.857c34.857 18.286 74.857 29.143 117.143 29.143 141.143 0 256-114.857 256-256v-73.143c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v73.143c0 169.143-128 308.571-292.571 326.857v75.429h146.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286v-75.429c-48.571-5.143-94.286-21.714-134.286-46.286l-145.143 145.143c-7.429 7.429-18.857 7.429-26.286 0l-46.857-46.857c-7.429-7.429-7.429-18.857 0-26.286l705.143-705.143c7.429-7.429 18.857-7.429 26.286 0l46.857 46.857c7.429 7.429 7.429 18.857 0 26.286zM574.286 120.571l-354.857 354.857v-292.571c0-100.571 82.286-182.857 182.857-182.857 78.857 0 146.286 50.857 172 120.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"microphone-slash\"\n        ],\n        \"defaultCode\": 61745,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"microphone-slash\",\n        \"id\": 272,\n        \"order\": 1128,\n        \"prevSize\": 28,\n        \"code\": 61745\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 272\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M621.714 548.571v-365.714h-256v649.714c29.143-15.429 76-42.286 121.714-78.286 61.143-48 134.286-122.857 134.286-205.714zM731.429 109.714v438.857c0 240.571-336.571 392.571-350.857 398.857-4.571 2.286-9.714 3.429-14.857 3.429s-10.286-1.143-14.857-3.429c-14.286-6.286-350.857-158.286-350.857-398.857v-438.857c0-20 16.571-36.571 36.571-36.571h658.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shield\"\n        ],\n        \"defaultCode\": 61746,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"shield\",\n        \"id\": 273,\n        \"order\": 1129,\n        \"prevSize\": 28,\n        \"code\": 61746\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 273\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"calendar-o\"\n        ],\n        \"defaultCode\": 61747,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"calendar-o\",\n        \"id\": 274,\n        \"order\": 1130,\n        \"prevSize\": 28,\n        \"code\": 61747\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 274\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 109.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM804.571 91.429v182.857c0 5.714-2.286 10.857-6.857 14.286-3.429 2.857-7.429 4-11.429 4-1.143 0-2.286 0-4-0.571l-256-54.857c-8-1.714-14.286-9.143-14.286-17.714h-146.286v58.286c83.429 17.143 146.286 90.857 146.286 179.429v457.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-457.143c0-81.714 53.714-151.429 128-174.286v-63.429h-18.286c-121.143 0-186.286 125.143-186.857 126.286-6.286 12.571-19.429 20-32.571 20-5.714 0-11.429-1.143-16.571-4-17.714-9.143-25.143-30.857-16-49.143 2.857-5.714 60-116.571 174.857-153.714-8.571-14.286-14.286-30.857-14.286-49.143 0-50.286 41.143-91.429 91.429-91.429s91.429 41.143 91.429 91.429c0 13.143-2.857 25.143-8 36.571h172.571c0-8.571 6.286-16 14.286-17.714l256-54.857c1.714-0.571 2.857-0.571 4-0.571 4 0 8 1.143 11.429 4 4.571 3.429 6.857 8.571 6.857 14.286z\"\n        ],\n        \"width\": 799.4514285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fire-extinguisher\"\n        ],\n        \"defaultCode\": 61748,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fire-extinguisher\",\n        \"id\": 275,\n        \"order\": 1131,\n        \"prevSize\": 28,\n        \"code\": 61748\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 275\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M822.857 256c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM950.857 91.429c0 189.714-52.571 316-188 452-33.143 32.571-70.857 66.286-111.429 100.571l-11.429 216.571c-0.571 5.714-4 11.429-9.143 14.857l-219.429 128c-2.857 1.714-5.714 2.286-9.143 2.286-4.571 0-9.143-1.714-13.143-5.143l-36.571-36.571c-4.571-5.143-6.286-12-4.571-18.286l48.571-157.714-160.571-160.571-157.714 48.571c-1.714 0.571-3.429 0.571-5.143 0.571-4.571 0-9.714-1.714-13.143-5.143l-36.571-36.571c-5.714-6.286-6.857-15.429-2.857-22.286l128-219.429c3.429-5.143 9.143-8.571 14.857-9.143l216.571-11.429c34.286-40.571 68-78.286 100.571-111.429 142.857-142.286 252-188 450.857-188 10.286 0 19.429 8 19.429 18.286z\"\n        ],\n        \"width\": 967.4605714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rocket\"\n        ],\n        \"defaultCode\": 61749,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"rocket\",\n        \"id\": 276,\n        \"order\": 1132,\n        \"prevSize\": 28,\n        \"code\": 61749\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 276\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M997.143 441.714l-93.714 436h-190.857l101.714-475.429c4.571-20 1.714-38.286-8.571-50.286-9.714-12-26.857-18.857-47.429-18.857h-96.571l-116.571 544.571h-190.857l116.571-544.571h-163.429l-116.571 544.571h-190.857l116.571-544.571-87.429-186.857h729.143c77.143 0 147.429 32 192.571 88 45.714 56 62.286 132 46.286 207.429z\"\n        ],\n        \"width\": 1013.1748571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"maxcdn\"\n        ],\n        \"defaultCode\": 61750,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"maxcdn\",\n        \"id\": 277,\n        \"order\": 1133,\n        \"prevSize\": 28,\n        \"code\": 61750\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 277\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M519.429 797.143l58.286-58.286c14.286-14.286 14.286-37.143 0-51.429l-175.429-175.429 175.429-175.429c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-259.429 259.429c-14.286 14.286-14.286 37.143 0 51.429l259.429 259.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chevron-circle-left\"\n        ],\n        \"defaultCode\": 61751,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chevron-circle-left\",\n        \"id\": 278,\n        \"order\": 1134,\n        \"prevSize\": 28,\n        \"code\": 61751\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 278\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M409.714 797.143l259.429-259.429c14.286-14.286 14.286-37.143 0-51.429l-259.429-259.429c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l175.429 175.429-175.429 175.429c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chevron-circle-right\"\n        ],\n        \"defaultCode\": 61752,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chevron-circle-right\",\n        \"id\": 279,\n        \"order\": 1135,\n        \"prevSize\": 28,\n        \"code\": 61752\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 279\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M665.714 650.857l58.286-58.286c14.286-14.286 14.286-37.143 0-51.429l-259.429-259.429c-14.286-14.286-37.143-14.286-51.429 0l-259.429 259.429c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0l175.429-175.429 175.429 175.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chevron-circle-up\"\n        ],\n        \"defaultCode\": 61753,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chevron-circle-up\",\n        \"id\": 280,\n        \"order\": 1136,\n        \"prevSize\": 28,\n        \"code\": 61753\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 280\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M464.571 742.286l259.429-259.429c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-175.429 175.429-175.429-175.429c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l259.429 259.429c14.286 14.286 37.143 14.286 51.429 0zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chevron-circle-down\"\n        ],\n        \"defaultCode\": 61754,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chevron-circle-down\",\n        \"id\": 281,\n        \"order\": 1137,\n        \"prevSize\": 28,\n        \"code\": 61754\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 281\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M645.714 341.143l9.143-100h-505.143l26.857 305.143h349.714l-12.571 130.286-112.571 30.286-112-30.286-7.429-80h-100l12.571 158.857 206.857 57.143h2.286v-0.571l205.143-56.571 28.571-310.857h-368l-8.571-103.429h385.143zM0 73.143h804.571l-73.143 821.714-330.286 92.571-328-92.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"html5\"\n        ],\n        \"defaultCode\": 61755,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"html5\",\n        \"id\": 282,\n        \"order\": 1138,\n        \"prevSize\": 28,\n        \"code\": 61755\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 282\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M157.143 73.143h860l-152 761.714-459.429 152.571-398.857-152.571 40.571-203.429h169.714l-16.571 84 241.143 92 277.714-92 38.857-193.714h-690.286l33.143-169.714h690.857l21.714-109.143h-690.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"css3\"\n        ],\n        \"defaultCode\": 61756,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"css3\",\n        \"id\": 283,\n        \"order\": 1139,\n        \"prevSize\": 28,\n        \"code\": 61756\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 283\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M548.571 146.286c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571 16.571 36.571 36.571 36.571 36.571-16.571 36.571-36.571zM1024 676.571v201.143c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.143-1.714-13.143-5.143l-53.143-53.143c-89.714 108-250.857 177.143-427.429 177.143s-337.714-69.143-427.429-177.143l-53.143 53.143c-3.429 3.429-8.571 5.143-13.143 5.143-2.286 0-4.571-0.571-6.857-1.143-6.857-2.857-11.429-9.714-11.429-17.143v-201.143c0-10.286 8-18.286 18.286-18.286h201.143c7.429 0 14.286 4.571 17.143 11.429s1.143 14.286-4 20l-57.143 57.143c51.429 69.143 150.286 119.429 263.429 134.857v-369.714h-109.714c-20 0-36.571-16.571-36.571-36.571v-73.143c0-20 16.571-36.571 36.571-36.571h109.714v-93.143c-43.429-25.143-73.143-72-73.143-126.286 0-80.571 65.714-146.286 146.286-146.286s146.286 65.714 146.286 146.286c0 54.286-29.714 101.143-73.143 126.286v93.143h109.714c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-109.714v369.714c113.143-15.429 212-65.714 263.429-134.857l-57.143-57.143c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h201.143c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"anchor\"\n        ],\n        \"defaultCode\": 61757,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"anchor\",\n        \"id\": 284,\n        \"order\": 1140,\n        \"prevSize\": 28,\n        \"code\": 61757\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 284\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M603.429 438.857c30.286 0 54.857 24.571 54.857 54.857v329.143c0 30.286-24.571 54.857-54.857 54.857h-548.571c-30.286 0-54.857-24.571-54.857-54.857v-329.143c0-30.286 24.571-54.857 54.857-54.857h18.286v-182.857c0-141.143 114.857-256 256-256s256 114.857 256 256c0 20-16.571 36.571-36.571 36.571h-36.571c-20 0-36.571-16.571-36.571-36.571 0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v182.857h420.571z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"unlock-alt\"\n        ],\n        \"defaultCode\": 61758,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"unlock-alt\",\n        \"id\": 285,\n        \"order\": 1141,\n        \"prevSize\": 28,\n        \"code\": 61758\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 285\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 512c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM658.286 512c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM731.429 512c0 161.714-130.857 292.571-292.571 292.571s-292.571-130.857-292.571-292.571 130.857-292.571 292.571-292.571 292.571 130.857 292.571 292.571zM804.571 512c0-201.714-164-365.714-365.714-365.714s-365.714 164-365.714 365.714 164 365.714 365.714 365.714 365.714-164 365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bullseye\"\n        ],\n        \"defaultCode\": 61760,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bullseye\",\n        \"id\": 286,\n        \"order\": 1142,\n        \"prevSize\": 28,\n        \"code\": 61760\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 286\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM512 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM804.571 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ellipsis-h\"\n        ],\n        \"defaultCode\": 61761,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ellipsis-h\",\n        \"id\": 287,\n        \"order\": 1143,\n        \"prevSize\": 28,\n        \"code\": 61761\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 287\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 713.143v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM219.429 420.571v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857zM219.429 128v109.714c0 30.286-24.571 54.857-54.857 54.857h-109.714c-30.286 0-54.857-24.571-54.857-54.857v-109.714c0-30.286 24.571-54.857 54.857-54.857h109.714c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 219.42857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ellipsis-v\"\n        ],\n        \"defaultCode\": 61762,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ellipsis-v\",\n        \"id\": 288,\n        \"order\": 1144,\n        \"prevSize\": 28,\n        \"code\": 61762\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 288\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 731.429c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM493.143 785.143c-9.714-177.143-150.286-317.714-327.429-327.429-5.143-0.571-10.286 1.714-13.714 5.143s-5.714 8-5.714 13.143v73.143c0 9.714 7.429 17.714 17.143 18.286 117.143 8.571 211.429 102.857 220 220 0.571 9.714 8.571 17.143 18.286 17.143h73.143c5.143 0 9.714-2.286 13.143-5.714s5.714-8.571 5.143-13.714zM712.571 785.714c-9.714-297.143-250.286-537.714-547.429-547.429-5.714-0.571-9.714 1.143-13.143 5.143-3.429 3.429-5.714 8-5.714 13.143v73.143c0 9.714 8 17.714 17.714 18.286 237.143 8.571 430.286 201.714 438.857 438.857 0.571 9.714 8.571 17.714 18.286 17.714h73.143c5.143 0 9.714-2.286 13.143-5.714 4-3.429 5.714-8 5.143-13.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rss-square\"\n        ],\n        \"defaultCode\": 61763,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"rss-square\",\n        \"id\": 289,\n        \"order\": 1145,\n        \"prevSize\": 28,\n        \"code\": 61763\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 289\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM658.286 543.429c11.429-6.286 18.286-18.286 18.286-31.429s-6.857-25.143-18.286-31.429l-310.857-182.857c-10.857-6.857-25.143-6.857-36.571-0.571-11.429 6.857-18.286 18.857-18.286 32v365.714c0 13.143 6.857 25.143 18.286 32 5.714 2.857 12 4.571 18.286 4.571s12.571-1.714 18.286-5.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"play-circle\"\n        ],\n        \"defaultCode\": 61764,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"play-circle\",\n        \"id\": 290,\n        \"order\": 1146,\n        \"prevSize\": 28,\n        \"code\": 61764\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 290\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 258.286l180.571 180.571-326.857 326.857-180.571-180.571zM464.571 817.714l353.143-353.143c14.286-14.286 14.286-37.143 0-51.429l-206.857-206.857c-13.714-13.714-37.714-13.714-51.429 0l-353.143 353.143c-14.286 14.286-14.286 37.143 0 51.429l206.857 206.857c6.857 6.857 16 10.286 25.714 10.286s18.857-3.429 25.714-10.286zM972.571 453.714l-518.286 518.857c-28.571 28-75.429 28-103.429 0l-72-72c42.857-42.857 42.857-112.571 0-155.429s-112.571-42.857-155.429 0l-71.429-72c-28.571-28-28.571-74.857 0-103.429l518.286-517.714c28-28.571 74.857-28.571 103.429 0l71.429 71.429c-42.857 42.857-42.857 112.571 0 155.429s112.571 42.857 155.429 0l72 71.429c28 28.571 28 75.429 0 103.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ticket\"\n        ],\n        \"defaultCode\": 61765,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ticket\",\n        \"id\": 291,\n        \"order\": 1147,\n        \"prevSize\": 28,\n        \"code\": 61765\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 291\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 548.571v-73.143c0-20-16.571-36.571-36.571-36.571h-512c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h512c20 0 36.571-16.571 36.571-36.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"minus-square\"\n        ],\n        \"defaultCode\": 61766,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"minus-square\",\n        \"id\": 292,\n        \"order\": 1148,\n        \"prevSize\": 28,\n        \"code\": 61766\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 292\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 457.143v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286zM731.429 713.143v-475.429c0-50.286-41.143-91.429-91.429-91.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429zM804.571 237.714v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"minus-square-o\"\n        ],\n        \"defaultCode\": 61767,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"minus-square-o\",\n        \"id\": 293,\n        \"order\": 1149,\n        \"prevSize\": 28,\n        \"code\": 61767\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 293\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M581.714 344.571c-6.286 13.143-18.857 21.143-33.143 21.143h-109.714v493.714c0 10.286-8 18.286-18.286 18.286h-402.286c-6.857 0-13.714-4-16.571-10.286-2.857-6.857-2.286-14.286 2.286-20l91.429-109.714c3.429-4 9.143-6.286 14.286-6.286h182.857v-365.714h-109.714c-14.286 0-26.857-8-33.143-21.143-5.714-12.571-4-28 5.143-38.857l182.857-219.429c13.714-16.571 42.286-16.571 56 0l182.857 219.429c9.143 10.857 11.429 26.286 5.143 38.857z\"\n        ],\n        \"width\": 586.8251428571429,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"level-up\"\n        ],\n        \"defaultCode\": 61768,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"level-up\",\n        \"id\": 294,\n        \"order\": 1150,\n        \"prevSize\": 28,\n        \"code\": 61768\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 294\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M18.286 146.286h402.286c10.286 0 18.286 8.571 18.286 18.857v493.143h109.714c14.286 0 26.857 8.571 33.143 21.143 6.286 13.143 4 28.571-5.143 39.429l-182.857 219.429c-13.714 16.571-42.286 16.571-56 0l-182.857-219.429c-9.143-10.857-10.857-26.286-5.143-39.429 6.286-12.571 18.857-21.143 33.143-21.143h109.714v-365.714h-182.857c-5.143 0-10.286-2.286-14.286-6.286l-91.429-109.714c-4.571-5.143-5.143-13.143-2.286-19.429s9.714-10.857 16.571-10.857z\"\n        ],\n        \"width\": 586.8251428571429,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"level-down\"\n        ],\n        \"defaultCode\": 61769,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"level-down\",\n        \"id\": 295,\n        \"order\": 1151,\n        \"prevSize\": 28,\n        \"code\": 61769\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 295\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M391.429 742.286l350.857-350.857c14.286-14.286 14.286-37.143 0-51.429l-58.286-58.286c-14.286-14.286-37.143-14.286-51.429 0l-266.857 266.857-120.571-120.571c-14.286-14.286-37.143-14.286-51.429 0l-58.286 58.286c-14.286 14.286-14.286 37.143 0 51.429l204.571 204.571c14.286 14.286 37.143 14.286 51.429 0zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check-square\"\n        ],\n        \"defaultCode\": 61770,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"check-square\",\n        \"id\": 296,\n        \"order\": 1152,\n        \"prevSize\": 28,\n        \"code\": 61770\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 296\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M230.857 633.143l86.857 86.857-29.714 29.714h-32v-54.857h-54.857v-32zM467.429 410.286c4.571 4 3.429 12-1.714 17.143l-166.286 166.286c-5.143 5.143-13.143 6.286-17.143 1.714-4.571-4-3.429-12 1.714-17.143l166.286-166.286c5.143-5.143 13.143-6.286 17.143-1.714zM310.857 804.571l310.857-310.857-164.571-164.571-310.857 310.857v164.571h164.571zM658.286 457.143l52.571-52.571c21.143-21.143 21.143-56.571 0-77.714l-86.857-86.857c-21.143-21.143-56.571-21.143-77.714 0l-52.571 52.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pencil-square\"\n        ],\n        \"defaultCode\": 61771,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pencil-square\",\n        \"id\": 297,\n        \"order\": 1153,\n        \"prevSize\": 28,\n        \"code\": 61771\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 297\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 530.286v-274.286c0-20-16.571-36.571-36.571-36.571h-274.286c-14.857 0-28 9.143-33.714 22.286-5.714 13.714-2.857 29.714 8 40l82.286 82.286-305.143 305.143c-14.286 14.286-14.286 37.143 0 51.429l58.286 58.286c14.286 14.286 37.143 14.286 51.429 0l305.143-305.143 82.286 82.286c6.857 7.429 16 10.857 25.714 10.857 4.571 0 9.714-1.143 14.286-2.857 13.143-5.714 22.286-18.857 22.286-33.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"external-link-square\"\n        ],\n        \"defaultCode\": 61772,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"external-link-square\",\n        \"id\": 298,\n        \"order\": 1154,\n        \"prevSize\": 28,\n        \"code\": 61772\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 298\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M574.286 629.143l201.143-201.143c14.286-14.286 14.286-37.143 0-51.429l-201.143-201.143c-10.286-10.857-26.286-13.714-39.429-8-13.714 5.714-22.857 18.857-22.857 33.714v91.429c-328 0-365.714 188-365.714 329.143 0 114.857 92 226.286 95.429 230.857 4 4.571 9.143 6.857 14.286 6.857 2.286 0 5.143-0.571 7.429-1.714 7.429-2.857 12-10.857 10.857-18.857-17.143-137.714-6.286-223.429 35.429-270.286 34.857-39.429 95.429-56.571 202.286-56.571v91.429c0 14.857 9.143 28 22.857 33.714 4 1.714 9.143 2.857 13.714 2.857 9.714 0 18.857-4 25.714-10.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"share-square\"\n        ],\n        \"defaultCode\": 61773,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"share-square\",\n        \"id\": 299,\n        \"order\": 1155,\n        \"prevSize\": 28,\n        \"code\": 61773\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 299\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 621.714l146.286-73.143-146.286-73.143v146.286zM585.143 284v309.714l-292.571 146.286v-309.714zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"compass\"\n        ],\n        \"defaultCode\": 61774,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"compass\",\n        \"id\": 300,\n        \"order\": 1156,\n        \"prevSize\": 28,\n        \"code\": 61774\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 300\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M654.286 385.714c6.286 12 5.143 26.857-2.857 37.714l-182.857 256c-6.857 9.714-17.714 15.429-29.714 15.429s-22.857-5.714-29.714-15.429l-182.857-256c-8-10.857-9.143-25.714-2.857-37.714 6.286-12.571 18.857-20 32.571-20h365.714c13.714 0 26.286 7.429 32.571 20zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"caret-square-o-down\",\n          \"toggle-down\"\n        ],\n        \"defaultCode\": 61776,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"caret-square-o-down, toggle-down\",\n        \"id\": 301,\n        \"order\": 1157,\n        \"prevSize\": 28,\n        \"code\": 61776\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 301\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M654.286 638.286c-6.286 12.571-18.857 20-32.571 20h-365.714c-13.714 0-26.286-7.429-32.571-20-6.286-12-5.143-26.857 2.857-37.714l182.857-256c6.857-9.714 17.714-15.429 29.714-15.429s22.857 5.714 29.714 15.429l182.857 256c8 10.857 9.143 25.714 2.857 37.714zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"caret-square-o-up\",\n          \"toggle-up\"\n        ],\n        \"defaultCode\": 61777,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"caret-square-o-up, toggle-up\",\n        \"id\": 302,\n        \"order\": 1158,\n        \"prevSize\": 28,\n        \"code\": 61777\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 302\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M621.714 512c0 12-5.714 22.857-15.429 29.714l-256 182.857c-10.857 8-25.714 9.143-37.714 2.857-12.571-6.286-20-18.857-20-32.571v-365.714c0-13.714 7.429-26.286 20-32.571 12-6.286 26.857-5.143 37.714 2.857l256 182.857c9.714 6.857 15.429 17.714 15.429 29.714zM731.429 786.286v-548.571c0-10.286-8-18.286-18.286-18.286h-548.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h548.571c10.286 0 18.286-8 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"caret-square-o-right\",\n          \"toggle-right\"\n        ],\n        \"defaultCode\": 61778,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"caret-square-o-right, toggle-right\",\n        \"id\": 303,\n        \"order\": 1159,\n        \"prevSize\": 28,\n        \"code\": 61778\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 303\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M557.714 746.857l20 90.857c2.286 9.143-2.857 18.286-11.429 21.143-2.286 0.571-55.429 18.857-124 18.857-178.286 0-321.714-107.429-369.714-275.429h-54.286c-10.286 0-18.286-8.571-18.286-18.286v-64.571c0-9.714 8-18.286 18.286-18.286h37.714c-0.571-18.286-0.571-40 0.571-60h-38.286c-10.286 0-18.286-8-18.286-18.286v-65.143c0-10.286 8-18.286 18.286-18.286h56c50.857-160 197.143-266.286 368-266.286 59.429 0 108.571 12.571 110.857 13.143 4.571 1.143 8.571 4.571 11.429 8.571 2.286 4 2.857 9.143 1.714 13.714l-24.571 90.857c-2.286 9.714-12 15.429-21.714 12.571-0.571 0-39.429-9.714-80-9.714-96 0-176.571 52-214.857 137.143h267.429c5.714 0 10.857 2.286 14.286 6.857 3.429 4 5.143 9.714 4 14.857l-13.714 65.143c-1.714 8.571-9.143 14.857-18.286 14.857h-278.857c-1.714 18.286-1.143 37.714 0 60h262.286c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 15.429l-13.714 64c-1.714 8.571-9.143 14.857-17.714 14.857h-221.143c36.571 89.143 118.857 145.143 216 145.143 49.714 0 90.286-13.714 90.857-13.714 4.571-1.714 10.286-1.143 14.857 1.143 4.571 2.857 7.429 7.429 8.571 12z\"\n        ],\n        \"width\": 580.0228571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"eur\",\n          \"euro\"\n        ],\n        \"defaultCode\": 61779,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"eur, euro\",\n        \"id\": 304,\n        \"order\": 1160,\n        \"prevSize\": 28,\n        \"code\": 61779\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 304\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M582.857 649.714v209.714c0 10.286-8 18.286-18.286 18.286h-546.286c-10.286 0-18.286-8-18.286-18.286v-85.714c0-9.714 8-18.286 18.286-18.286h55.429v-218.857h-54.286c-10.286 0-18.286-8-18.286-18.286v-74.857c0-10.286 8-18.286 18.286-18.286h54.286v-127.429c0-130.286 105.143-224.571 250.286-224.571 114.286 0 188 68.571 191.429 71.429 6.857 6.286 7.429 17.143 1.714 24.571l-58.857 72.571c-3.429 4-7.429 6.286-12.571 6.857-4.571 0.571-9.714-1.143-13.143-4-0.571-0.571-49.714-39.429-107.429-39.429-64.571 0-108 38.857-108 97.143v122.857h174.286c10.286 0 18.286 8 18.286 18.286v74.857c0 10.286-8 18.286-18.286 18.286h-174.286v216.571h236.571v-103.429c0-10.286 8-18.286 18.286-18.286h92.571c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 582.8754285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gbp\"\n        ],\n        \"defaultCode\": 61780,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"gbp\",\n        \"id\": 305,\n        \"order\": 1161,\n        \"prevSize\": 28,\n        \"code\": 61780\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 305\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M558.857 677.143c0 116.571-83.429 208.571-204.571 228.571v100c0 10.286-8 18.286-18.286 18.286h-77.143c-9.714 0-18.286-8-18.286-18.286v-100c-133.714-18.857-206.857-98.857-209.714-102.286-5.714-6.857-6.286-16.571-1.143-23.429l58.857-77.143c2.857-4 8-6.286 13.143-6.857s10.286 1.143 13.714 5.143c1.143 0.571 81.143 77.143 182.286 77.143 56 0 116.571-29.714 116.571-94.286 0-54.857-67.429-81.714-144.571-112.571-102.857-40.571-230.857-92-230.857-235.429 0-105.143 82.286-192 201.714-214.857v-102.857c0-10.286 8.571-18.286 18.286-18.286h77.143c10.286 0 18.286 8 18.286 18.286v100.571c116 13.143 177.714 76 180 78.286 5.714 6.286 6.857 14.857 2.857 21.714l-46.286 83.429c-2.857 5.143-7.429 8.571-13.143 9.143-5.714 1.143-10.857-0.571-15.429-4-0.571-0.571-69.714-61.714-155.429-61.714-72.571 0-122.857 36-122.857 88 0 60.571 69.714 87.429 150.857 118.857 105.143 40.571 224 86.857 224 224.571z\"\n        ],\n        \"width\": 583.4605714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dollar\",\n          \"usd\"\n        ],\n        \"defaultCode\": 61781,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"dollar, usd\",\n        \"id\": 306,\n        \"order\": 1162,\n        \"prevSize\": 28,\n        \"code\": 61781\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 306\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M513.143 268.571v58.286c0 10.286-8 18.286-18.286 18.286h-96c-17.714 109.714-101.714 181.143-231.429 196.571 85.143 90.857 176 200.571 262.286 306.286 4.571 5.143 5.714 13.143 2.286 19.429-2.857 6.286-9.143 10.286-16.571 10.286h-111.429c-5.714 0-10.857-2.286-14.286-6.857-92-110.286-176.571-211.429-284.571-326.286-3.429-3.429-5.143-8-5.143-12.571v-72.571c0-9.714 8-18.286 18.286-18.286h64c100.571 0 163.429-33.714 180-96h-244c-10.286 0-18.286-8-18.286-18.286v-58.286c0-10.286 8-18.286 18.286-18.286h236c-21.714-42.857-73.143-64.571-153.143-64.571h-82.857c-10.286 0-18.286-8.571-18.286-18.286v-76c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286v58.286c0 10.286-8 18.286-18.286 18.286h-133.143c18.286 23.429 30.286 50.857 36.571 82.286h97.714c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 513.1702857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"inr\",\n          \"rupee\"\n        ],\n        \"defaultCode\": 61782,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"inr, rupee\",\n        \"id\": 307,\n        \"order\": 1163,\n        \"prevSize\": 28,\n        \"code\": 61782\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 307\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M344.571 877.714h-98.286c-10.286 0-18.286-8-18.286-18.286v-188.571h-164.571c-10.286 0-18.286-8-18.286-18.286v-58.857c0-10.286 8-18.286 18.286-18.286h164.571v-48.571h-164.571c-10.286 0-18.286-8-18.286-18.286v-59.429c0-9.714 8-18.286 18.286-18.286h122.286l-183.429-330.286c-2.857-5.714-2.857-12.571 0-18.286 3.429-5.714 9.714-9.143 16-9.143h110.857c6.857 0 13.143 4 16.571 10.286l122.857 242.857c13.714 26.857 22.857 49.714 32 71.429 9.714-24.571 22.286-48.571 33.143-73.714l109.143-240c2.857-6.857 9.714-10.857 16.571-10.857h109.143c6.286 0 12 3.429 15.429 9.143 3.429 5.143 3.429 12 0.571 17.714l-178.857 330.857h122.857c10.286 0 18.286 8.571 18.286 18.286v59.429c0 10.286-8 18.286-18.286 18.286h-165.714v48.571h165.714c10.286 0 18.286 8 18.286 18.286v58.857c0 10.286-8 18.286-18.286 18.286h-165.714v188.571c0 10.286-8.571 18.286-18.286 18.286z\"\n        ],\n        \"width\": 586.8251428571429,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cny\",\n          \"jpy\",\n          \"rmb\",\n          \"yen\"\n        ],\n        \"defaultCode\": 61783,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cny, jpy, rmb, yen\",\n        \"id\": 308,\n        \"order\": 1164,\n        \"prevSize\": 28,\n        \"code\": 61783\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 308\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M596 322.857c0-76.571-54.286-128-134.857-128h-182.857v256h182.857c80.571 0 134.857-51.429 134.857-128zM731.429 322.857c0 146.857-106.286 249.714-258.857 249.714h-194.286v67.429h288.571c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-288.571v109.714c0 10.286-8 18.286-18.286 18.286h-95.429c-10.286 0-18.286-8-18.286-18.286v-109.714h-128c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h128v-67.429h-128c-10.286 0-18.286-8-18.286-18.286v-85.143c0-10.286 8-18.286 18.286-18.286h128v-359.429c0-10.286 8-18.286 18.286-18.286h308c152.571 0 258.857 102.857 258.857 249.714z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rouble\",\n          \"rub\",\n          \"ruble\"\n        ],\n        \"defaultCode\": 61784,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"rouble, rub, ruble\",\n        \"id\": 309,\n        \"order\": 1165,\n        \"prevSize\": 28,\n        \"code\": 61784\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 309\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M293.714 682.857l46.286-170.857h-90.857l42.857 171.429c0.571 1.143 0.571 2.286 1.143 3.429 0-1.143 0.571-2.857 0.571-4zM360 438.857l20-73.143h-166.857l18.286 73.143h128.571zM469.714 438.857h79.429l-20-73.143h-40zM726.286 683.429l44.571-171.429h-92.571l46.286 170.857c0.571 1.714 0.571 2.857 1.143 4 0-1.143 0.571-2.286 0.571-3.429zM789.714 438.857l18.857-73.143h-169.714l19.429 73.143h131.429zM1024 457.143v36.571c0 10.286-8 18.286-18.286 18.286h-121.714l-93.714 352c-2.286 8-9.714 13.714-17.714 13.714h-90.857c-8 0-15.429-5.714-17.714-13.714l-94.857-352h-119.429l-95.429 352c-2.286 8-9.143 13.714-17.714 13.714h-90.857c-8 0-15.429-5.714-17.143-13.714l-91.429-352h-118.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h100l-18.857-73.143h-81.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h62.286l-50.857-196.571c-1.714-5.714-0.571-11.429 2.857-16 3.429-4 9.143-6.857 14.857-6.857h78.286c8.571 0 16 5.714 17.714 13.714l51.429 205.714h205.143l55.429-205.714c2.286-8 9.714-13.714 17.714-13.714h72c8.571 0 15.429 5.714 17.714 13.714l56 205.714h208.571l53.143-205.714c1.714-8 9.143-13.714 17.714-13.714h78.286c5.714 0 11.429 2.857 14.857 6.857 3.429 4.571 4.571 10.857 2.857 16l-52 196.571h63.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-82.857l-19.429 73.143h102.286c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"krw\",\n          \"won\"\n        ],\n        \"defaultCode\": 61785,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"krw, won\",\n        \"id\": 310,\n        \"order\": 1166,\n        \"prevSize\": 28,\n        \"code\": 61785\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 310\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M666.857 365.714c7.429 76-24.571 121.714-74.857 147.429 83.429 20 136 69.714 125.714 181.143-13.143 138.857-116 176-263.429 184v145.714h-88v-143.429c-22.286 0-45.714 0-69.714-0.571v144h-88v-145.714c-20.571 0-41.143-0.571-62.286-0.571h-114.286l17.714-104.571c64.571 1.143 63.429 0 63.429 0 24.571 0 31.429-17.714 33.143-29.143v-229.714h9.143c-3.429-0.571-6.857-0.571-9.143-0.571v-164c-3.429-18.286-14.857-38.857-50.857-38.857 0 0 1.143-1.143-63.429 0v-93.714l121.143 0.571c17.714 0 36.571 0 55.429-0.571v-144h88v141.143c23.429-0.571 46.857-1.143 69.714-1.143v-140h88v144c113.143 9.714 202.857 44.571 212.571 148.571zM544 677.143c0-113.143-186.286-96.571-245.714-96.571v193.143c59.429 0 245.714 12.571 245.714-96.571zM503.429 405.143c0-103.429-155.429-88-205.143-88v175.429c49.714 0 205.143 11.429 205.143-87.429z\"\n        ],\n        \"width\": 760.0274285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bitcoin\",\n          \"btc\"\n        ],\n        \"defaultCode\": 61786,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bitcoin, btc\",\n        \"id\": 311,\n        \"order\": 1167,\n        \"prevSize\": 28,\n        \"code\": 61786\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 311\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 292.571v-269.714c8 5.143 14.857 10.286 20.571 16l233.143 233.143c5.714 5.714 10.857 12.571 16 20.571h-269.714zM512 310.857c0 30.286 24.571 54.857 54.857 54.857h310.857v603.429c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h457.143v310.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file\"\n        ],\n        \"defaultCode\": 61787,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file\",\n        \"id\": 312,\n        \"order\": 1168,\n        \"prevSize\": 28,\n        \"code\": 61787\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 312\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 272c5.714 5.714 10.857 12.571 16 20.571h-269.714v-269.714c8 5.143 14.857 10.286 20.571 16zM566.857 365.714h310.857v603.429c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h457.143v310.857c0 30.286 24.571 54.857 54.857 54.857zM658.286 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM658.286 640v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM658.286 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-text\"\n        ],\n        \"defaultCode\": 61788,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-text\",\n        \"id\": 313,\n        \"order\": 1169,\n        \"prevSize\": 28,\n        \"code\": 61788\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 313\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M680.571 233.143h101.143l-41.143-124.571-6.857-26.857c-0.571-4.571-1.143-8-1.143-11.429h-2.286l-1.714 11.429c-1.714 6.857-2.286 15.429-6.286 26.857zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM898.286 890.857v133.143h-333.714v-51.429l210.857-302.286c4.571-6.857 9.143-12.571 12-15.429l6.286-5.143v-1.714c-2.286 0-4.571 0.571-8 0.571-4.571 1.143-10.286 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857c-3.429 5.143-8 10.286-12 14.857l-6.286 6.286v1.143l8-1.143c5.143-1.143 10.286-1.143 17.143-1.143h141.714v-68h69.143zM949.143 378.286v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571h40l131.429-378.286h92.571l131.429 378.286h40z\"\n        ],\n        \"width\": 965.7051428571427,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort-alpha-asc\"\n        ],\n        \"defaultCode\": 61789,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort-alpha-asc\",\n        \"id\": 314,\n        \"order\": 1170,\n        \"prevSize\": 28,\n        \"code\": 61789\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 314\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M680.571 818.286h101.143l-41.143-124.571-6.857-26.857c-0.571-4.571-1.143-8-1.143-11.429h-2.286l-1.714 11.429c-1.714 6.857-2.286 15.429-6.286 26.857zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM949.143 963.429v60.571h-164.571v-60.571h42.857l-26.857-82.286h-138.857l-26.857 82.286h42.857v60.571h-164v-60.571h40l131.429-378.286h92.571l131.429 378.286h40zM898.286 305.714v133.143h-333.714v-51.429l210.857-302.286c4.571-6.857 9.143-12.571 12-15.429l6.286-5.143v-1.714c-2.286 0-4.571 0.571-8 0.571-4.571 1.143-10.286 1.714-17.143 1.714h-132.571v65.714h-68.571v-130.857h324v50.857l-210.857 302.857c-3.429 5.143-8 10.286-12 14.857l-6.286 5.714v1.714l8-1.714c5.143-0.571 10.286-0.571 17.143-0.571h141.714v-68h69.143z\"\n        ],\n        \"width\": 965.7051428571427,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort-alpha-desc\"\n        ],\n        \"defaultCode\": 61790,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort-alpha-desc\",\n        \"id\": 315,\n        \"order\": 1171,\n        \"prevSize\": 28,\n        \"code\": 61790\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 315\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 896v109.714c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286zM914.286 603.429v109.714c0 10.286-8 18.286-18.286 18.286h-365.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h365.714c10.286 0 18.286 8 18.286 18.286zM804.571 310.857v109.714c0 10.286-8 18.286-18.286 18.286h-256c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286zM694.857 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-146.286c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h146.286c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1040.6034285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort-amount-asc\"\n        ],\n        \"defaultCode\": 61792,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort-amount-asc\",\n        \"id\": 316,\n        \"order\": 1172,\n        \"prevSize\": 28,\n        \"code\": 61792\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 316\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M694.857 896v109.714c0 10.286-8 18.286-18.286 18.286h-146.286c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h146.286c10.286 0 18.286 8 18.286 18.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 603.429v109.714c0 10.286-8 18.286-18.286 18.286h-256c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286zM914.286 310.857v109.714c0 10.286-8 18.286-18.286 18.286h-365.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h365.714c10.286 0 18.286 8 18.286 18.286zM1024 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h475.429c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1040.6034285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort-amount-desc\"\n        ],\n        \"defaultCode\": 61793,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort-amount-desc\",\n        \"id\": 317,\n        \"order\": 1173,\n        \"prevSize\": 28,\n        \"code\": 61793\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 317\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M769.143 750.286c0-46.857-38.286-96.571-84-96.571-40 0-65.143 32.571-65.143 74.857 0 41.143 26.286 76 80.571 76 37.143 0 68.571-22.286 68.571-54.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM849.143 783.429c0 115.429-62.857 240.571-198.857 240.571-25.714 0-46.857-4-61.714-9.143-9.143-2.857-17.143-5.714-24-8.571l22.286-64.571c5.143 2.286 11.429 4.571 17.714 6.286 11.429 4 26.286 7.429 42.857 7.429 68.571 0 104-57.143 114.857-116.571h-1.143c-16 17.143-49.714 29.143-83.429 29.143-82.857 0-137.143-65.143-137.143-139.429 0-78.857 60.571-143.429 144.571-143.429 90.857 0 164 74.286 164 198.286zM832 373.714v65.143h-268v-65.143h95.429v-246.857c0-7.429 0.571-14.857 0.571-20.571v-9.143h-1.143l-4 6.857c-2.857 4.571-7.429 10.286-14.857 17.714l-35.429 33.143-46.857-49.143 109.714-105.714h70.286v373.714h94.286z\"\n        ],\n        \"width\": 865.7188571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort-numeric-asc\"\n        ],\n        \"defaultCode\": 61794,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort-numeric-asc\",\n        \"id\": 318,\n        \"order\": 1174,\n        \"prevSize\": 28,\n        \"code\": 61794\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 318\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M769.143 165.143c0-46.857-38.286-96.571-84-96.571-40 0-65.143 32.571-65.143 74.857 0 41.143 26.286 76 80.571 76 37.143 0 68.571-22.286 68.571-54.286zM420.571 822.857c0 5.143-2.286 9.714-5.714 13.714l-182.286 182.286c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-182.857-182.857c-5.143-5.714-6.857-13.143-4-20s9.714-11.429 17.143-11.429h109.714v-786.286c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v786.286h109.714c10.286 0 18.286 8 18.286 18.286zM832 958.857v65.143h-268v-65.143h95.429v-246.857c0-7.429 0.571-14.857 0.571-20.571v-9.143h-1.143l-4 6.857c-2.857 4.571-7.429 10.286-14.857 17.714l-35.429 33.143-46.857-49.143 109.714-105.714h70.286v373.714h94.286zM849.143 198.286c0 115.429-62.857 240.571-198.857 240.571-25.714 0-46.857-4-61.714-9.143-9.143-2.857-17.143-5.714-24-8.571l22.286-64.571c5.143 2.286 11.429 4.571 17.714 6.286 11.429 4 26.286 7.429 42.857 7.429 68.571 0 104-57.143 114.857-116.571h-1.143c-16 17.143-49.714 29.143-83.429 29.143-82.857 0-137.143-65.143-137.143-139.429 0-78.857 60.571-143.429 144.571-143.429 90.857 0 164 74.286 164 198.286z\"\n        ],\n        \"width\": 865.7188571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort-numeric-desc\"\n        ],\n        \"defaultCode\": 61795,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sort-numeric-desc\",\n        \"id\": 319,\n        \"order\": 1175,\n        \"prevSize\": 28,\n        \"code\": 61795\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 319\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 768c0-20-16.571-36.571-36.571-36.571-20.571 0-36.571 16.571-36.571 36.571 0 20.571 16 36.571 36.571 36.571 20 0 36.571-16 36.571-36.571zM237.714 475.429v365.714c0 20-16.571 36.571-36.571 36.571h-164.571c-20 0-36.571-16.571-36.571-36.571v-365.714c0-20 16.571-36.571 36.571-36.571h164.571c20 0 36.571 16.571 36.571 36.571zM914.286 475.429c0 30.286-12 62.857-31.429 85.143 6.286 18.286 8.571 35.429 8.571 43.429 1.143 28.571-7.429 55.429-24.571 78.286 6.286 21.143 6.286 44 0 66.857-5.714 21.143-16.571 40-30.857 53.714 3.429 42.857-6.286 77.714-28 103.429-24.571 29.143-62.286 44-112.571 44.571h-73.714c-81.714 0-158.857-26.857-220.571-48-36-12.571-70.286-24.571-90.286-25.143-19.429-0.571-36.571-16.571-36.571-36.571v-366.286c0-18.857 16-34.857 34.857-36.571 21.143-1.714 76-69.714 101.143-102.857 20.571-26.286 40-50.857 57.714-68.571 22.286-22.286 28.571-56.571 35.429-89.714 6.286-33.714 13.143-69.143 37.714-93.143 6.857-6.857 16-10.857 25.714-10.857 128 0 128 102.286 128 146.286 0 46.857-16.571 80-32 109.714-6.286 12.571-12 18.286-16.571 36.571h158.286c59.429 0 109.714 50.286 109.714 109.714z\"\n        ],\n        \"width\": 914.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thumbs-up\"\n        ],\n        \"defaultCode\": 61796,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thumbs-up\",\n        \"id\": 320,\n        \"order\": 1176,\n        \"prevSize\": 28,\n        \"code\": 61796\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 320\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 329.143c0 20-16.571 36.571-36.571 36.571-20.571 0-36.571-16.571-36.571-36.571 0-20.571 16-36.571 36.571-36.571 20 0 36.571 16 36.571 36.571zM237.714 621.714v-365.714c0-20-16.571-36.571-36.571-36.571h-164.571c-20 0-36.571 16.571-36.571 36.571v365.714c0 20 16.571 36.571 36.571 36.571h164.571c20 0 36.571-16.571 36.571-36.571zM882.857 536.571c19.429 21.714 31.429 54.857 31.429 85.143-0.571 59.429-50.286 109.714-109.714 109.714h-158.286c4.571 18.286 10.286 24 16.571 36.571 14.857 29.714 32 62.857 32 109.714 0 44 0 146.286-128 146.286-9.714 0-18.857-4-25.714-10.857-24.571-24-31.429-59.429-37.714-93.143-6.857-33.143-13.143-67.429-35.429-89.714-17.714-17.714-37.143-42.286-57.714-68.571-25.143-33.143-80-101.143-101.143-102.857-18.857-1.714-34.857-17.714-34.857-36.571v-366.286c0-20 17.143-36 36.571-36.571 20-0.571 54.286-12.571 90.286-25.143 61.714-21.143 138.857-48 220.571-48h73.714c50.286 0.571 88 15.429 112.571 44.571 21.714 25.714 31.429 60.571 28 103.429 14.286 13.714 25.143 32.571 30.857 53.714 6.286 22.857 6.286 45.714 0 66.857 17.143 22.857 25.714 49.714 24.571 78.286 0 8-2.286 25.143-8.571 43.429z\"\n        ],\n        \"width\": 914.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thumbs-down\"\n        ],\n        \"defaultCode\": 61797,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thumbs-down\",\n        \"id\": 321,\n        \"order\": 1177,\n        \"prevSize\": 28,\n        \"code\": 61797\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 321\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M525.143 744.571v-89.714c0-18.857-5.714-28.571-16.571-28.571-6.286 0-12.571 2.857-18.857 9.143v128c6.286 6.286 12.571 9.143 18.857 9.143 10.857 0 16.571-9.143 16.571-28zM630.286 674.857h37.714v-19.429c0-19.429-6.286-29.143-18.857-29.143s-18.857 9.714-18.857 29.143v19.429zM304 522.857v40h-45.714v241.714h-42.286v-241.714h-44.571v-40h132.571zM418.857 594.857v209.714h-38.286v-22.857c-14.857 17.143-29.143 25.714-43.429 25.714-12 0-20.571-5.143-24-16-2.286-6.286-3.429-16-3.429-30.857v-165.714h37.714v154.286c0 8.571 0 13.714 0.571 14.857 0.571 5.714 3.429 8.571 8.571 8.571 8 0 15.429-5.714 24-17.714v-160h38.286zM562.857 658.286v83.429c0 18.857-1.143 33.143-4 41.714-4.571 16-14.857 24-30.286 24-13.143 0-26.286-8-38.857-23.429v20.571h-38.286v-281.714h38.286v92c12-14.857 25.143-22.857 38.857-22.857 15.429 0 25.714 8 30.286 24 2.857 8.571 4 22.286 4 42.286zM706.286 732v5.143c0 12.571-0.571 20.571-1.143 24.571-1.143 8.571-4 16-8.571 22.857-10.286 15.429-26.286 22.857-45.714 22.857-20 0-35.429-7.429-46.286-21.714-8-10.286-12-26.857-12-49.143v-73.714c0-22.286 3.429-38.286 11.429-49.143 10.857-14.286 26.286-21.714 45.714-21.714 18.857 0 34.286 7.429 44.571 21.714 8 10.857 12 26.857 12 49.143v43.429h-76v37.143c0 19.429 6.286 29.143 19.429 29.143 9.143 0 14.857-5.143 17.143-14.857 0-2.286 0.571-10.857 0.571-25.714h38.857zM448.571 261.143v89.143c0 19.429-6.286 29.143-18.286 29.143-12.571 0-18.286-9.714-18.286-29.143v-89.143c0-19.429 5.714-29.714 18.286-29.714 12 0 18.286 10.286 18.286 29.714zM753.143 668.571v0c0-49.143 0-101.143-10.857-148.571-8-33.714-35.429-58.286-68-61.714-77.714-8.571-156.571-8.571-235.429-8.571-78.286 0-157.143 0-234.857 8.571-33.143 3.429-60.571 28-68 61.714-10.857 47.429-11.429 99.429-11.429 148.571v0c0 48.571 0 100.571 11.429 148.571 7.429 33.143 34.857 57.714 67.429 61.714 78.286 8.571 157.143 8.571 235.429 8.571s157.143 0 235.429-8.571c32.571-4 60-28.571 67.429-61.714 11.429-48 11.429-100 11.429-148.571zM321.714 296.571l51.429-169.143h-42.857l-29.143 111.429-30.286-111.429h-44.571c8.571 26.286 18.286 52.571 26.857 78.857 13.714 40 22.286 69.714 26.286 90.286v114.857h42.286v-114.857zM486.857 342.857v-74.286c0-22.286-4-38.857-12-49.714-10.857-14.286-25.714-21.714-44.571-21.714-19.429 0-34.286 7.429-44.571 21.714-8 10.857-12 27.429-12 49.714v74.286c0 22.286 4 38.857 12 49.714 10.286 14.286 25.143 21.714 44.571 21.714 18.857 0 33.714-7.429 44.571-21.714 8-10.286 12-27.429 12-49.714zM590.286 411.429h38.286v-211.429h-38.286v161.714c-8.571 12-16.571 17.714-24 17.714-5.143 0-8.571-2.857-9.143-9.143-0.571-1.143-0.571-5.714-0.571-14.857v-155.429h-38.286v167.429c0 14.857 1.143 24.571 3.429 31.429 4 10.286 12.571 15.429 24.571 15.429 14.286 0 28.571-8.571 44-25.714v22.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"youtube-square\"\n        ],\n        \"defaultCode\": 61798,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"youtube-square\",\n        \"id\": 322,\n        \"order\": 1178,\n        \"prevSize\": 28,\n        \"code\": 61798\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 322\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554.857 710.857v120.571c0 25.714-7.429 38.286-22.286 38.286-8.571 0-17.143-4-25.714-12.571v-172c8.571-8.571 17.143-12.571 25.714-12.571 14.857 0 22.286 13.143 22.286 38.286zM748 711.429v26.286h-51.429v-26.286c0-25.714 8.571-38.857 25.714-38.857s25.714 13.143 25.714 38.857zM196 586.857h61.143v-53.714h-178.286v53.714h60v325.143h57.143v-325.143zM360.571 912h50.857v-282.286h-50.857v216c-11.429 16-22.286 24-32.571 24-6.857 0-10.857-4-12-12-0.571-1.714-0.571-8-0.571-20v-208h-50.857v223.429c0 20 1.714 33.143 4.571 41.714 4.571 14.286 16.571 21.143 33.143 21.143 18.286 0 37.714-11.429 58.286-34.857v30.857zM605.714 827.429v-112.571c0-26.286-1.143-45.143-5.143-56.571-6.286-21.143-20.571-32-40.571-32-18.857 0-36.571 10.286-53.143 30.857v-124h-50.857v378.857h50.857v-27.429c17.143 21.143 34.857 31.429 53.143 31.429 20 0 34.286-10.857 40.571-31.429 4-12 5.143-30.857 5.143-57.143zM798.857 821.714v-7.429h-52c0 20.571-0.571 32-1.143 34.857-2.857 13.714-10.286 20.571-22.857 20.571-17.714 0-26.286-13.143-26.286-39.429v-49.714h102.286v-58.857c0-30.286-5.143-52-15.429-66.286-14.857-19.429-34.857-29.143-60.571-29.143-26.286 0-46.286 9.714-61.143 29.143-10.857 14.286-16 36-16 66.286v98.857c0 30.286 5.714 52.571 16.571 66.286 14.857 19.429 34.857 29.143 61.714 29.143s48-10.286 61.714-30.286c6.286-9.143 10.857-19.429 12-30.857 1.143-5.143 1.143-16.571 1.143-33.143zM451.429 300v-120c0-26.286-7.429-39.429-24.571-39.429-16.571 0-24.571 13.143-24.571 39.429v120c0 26.286 8 40 24.571 40 17.143 0 24.571-13.714 24.571-40zM862.286 729.143c0 65.714-0.571 136-14.857 200-10.857 45.143-47.429 78.286-91.429 82.857-105.143 12-211.429 12-317.143 12s-212 0-317.143-12c-44-4.571-81.143-37.714-91.429-82.857-14.857-64-14.857-134.286-14.857-200v0c0-66.286 0.571-136 14.857-200 10.857-45.143 47.429-78.286 92-83.429 104.571-11.429 210.857-11.429 316.571-11.429s212 0 317.143 11.429c44 5.143 81.143 38.286 91.429 83.429 14.857 64 14.857 133.714 14.857 200zM292 0h58.286l-69.143 228v154.857h-57.143v-154.857c-5.143-28-16.571-68-34.857-121.143-12.571-35.429-25.143-71.429-37.143-106.857h60.571l40.571 150.286zM503.429 190.286v100c0 30.286-5.143 53.143-16 67.429-14.286 19.429-34.286 29.143-60.571 29.143-25.714 0-45.714-9.714-60-29.143-10.857-14.857-16-37.143-16-67.429v-100c0-30.286 5.143-52.571 16-66.857 14.286-19.429 34.286-29.143 60-29.143 26.286 0 46.286 9.714 60.571 29.143 10.857 14.286 16 36.571 16 66.857zM694.857 97.714v285.143h-52v-31.429c-20.571 24-40 35.429-58.857 35.429-16.571 0-28.571-6.857-33.714-21.143-2.857-8.571-4.571-22.286-4.571-42.857v-225.143h52v209.714c0 12 0 18.857 0.571 20 1.143 8 5.143 12.571 12 12.571 10.286 0 21.143-8 32.571-24.571v-217.714h52z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"youtube\"\n        ],\n        \"defaultCode\": 61799,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"youtube\",\n        \"id\": 323,\n        \"order\": 1179,\n        \"prevSize\": 28,\n        \"code\": 61799\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 323\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M341.143 381.143c0 0-5.714 9.714-146.857 260.571-7.429 12.571-17.143 26.286-37.143 26.286h-136.571c-8 0-14.286-4-17.714-9.714s-4-13.143 0-20.571l144.571-256c0.571 0 0.571 0 0-0.571l-92-159.429c-4-7.429-4.571-15.429-0.571-21.143 3.429-5.714 10.286-8.571 18.286-8.571h136.571c20.571 0 30.857 13.714 37.714 25.714 93.143 162.857 93.714 163.429 93.714 163.429zM801.714 14.286c4 5.714 4 13.714 0 21.143l-301.714 533.714c-0.571 0-0.571 0.571 0 0.571l192 351.429c4 7.429 4 15.429 0.571 21.143-4 5.714-10.286 8.571-18.286 8.571h-136.571c-20.571 0-31.429-13.714-37.714-25.714-193.714-354.857-193.714-355.429-193.714-355.429s9.714-17.143 303.429-538.286c7.429-13.143 16-25.714 36.571-25.714h137.714c8 0 14.286 2.857 17.714 8.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"xing\"\n        ],\n        \"defaultCode\": 61800,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"xing\",\n        \"id\": 324,\n        \"order\": 1180,\n        \"prevSize\": 28,\n        \"code\": 61800\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 324\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M391.429 437.143c0 0 0-0.571-72-126.857-5.714-9.143-13.714-19.429-29.714-19.429h-105.143c-6.857 0-12 2.286-14.857 6.286-2.857 4.571-2.286 10.857 0.571 16.571l71.429 123.429v0.571l-112 197.714c-3.429 5.714-2.857 11.429 0 16s7.429 7.429 13.714 7.429h105.714c15.429 0 23.429-10.857 28.571-20.571 109.714-193.714 113.714-201.143 113.714-201.143zM748 153.143c-2.857-4.571-7.429-6.857-13.714-6.857h-106.857c-15.429 0-22.286 9.714-28 20-227.429 403.429-234.857 416.571-234.857 416.571s0 0.571 149.714 274.857c5.143 9.143 13.143 20 29.714 20h105.143c6.286 0 11.429-2.286 14.286-6.857s2.857-10.286-0.571-16l-148.571-272v-0.571l233.714-413.143c2.857-5.714 2.857-11.429 0-16zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"xing-square\"\n        ],\n        \"defaultCode\": 61801,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"xing-square\",\n        \"id\": 325,\n        \"order\": 1181,\n        \"prevSize\": 28,\n        \"code\": 61801\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 325\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M406.286 644.571l276.571-142.857-276.571-144.571v287.429zM512 152c215.429 0 358.286 10.286 358.286 10.286 20 2.286 64 2.286 102.857 43.429 0 0 31.429 30.857 40.571 101.714 10.857 82.857 10.286 165.714 10.286 165.714v77.714s0.571 82.857-10.286 165.714c-9.143 70.286-40.571 101.714-40.571 101.714-38.857 40.571-82.857 40.571-102.857 42.857 0 0-142.857 10.857-358.286 10.857v0c-266.286-2.286-348-10.286-348-10.286-22.857-4-74.286-2.857-113.143-43.429 0 0-31.429-31.429-40.571-101.714-10.857-82.857-10.286-165.714-10.286-165.714v-77.714s-0.571-82.857 10.286-165.714c9.143-70.857 40.571-101.714 40.571-101.714 38.857-41.143 82.857-41.143 102.857-43.429 0 0 142.857-10.286 358.286-10.286v0z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"youtube-play\"\n        ],\n        \"defaultCode\": 61802,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"youtube-play\",\n        \"id\": 326,\n        \"order\": 1182,\n        \"prevSize\": 28,\n        \"code\": 61802\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 326\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M229.714 404l282.286 174.286-195.429 162.857-280-182.286zM793.143 721.143v61.714l-280 167.429v0.571l-0.571-0.571-0.571 0.571v-0.571l-279.429-167.429v-61.714l84 54.857 195.429-162.286v-1.143l0.571 0.571 0.571-0.571v1.143l196 162.286zM316.571 67.429l195.429 162.857-282.286 173.714-193.143-154.286zM794.286 404l193.143 154.857-279.429 182.286-196-162.857zM708 67.429l279.429 182.286-193.143 154.286-282.286-173.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dropbox\"\n        ],\n        \"defaultCode\": 61803,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"dropbox\",\n        \"id\": 327,\n        \"order\": 1183,\n        \"prevSize\": 28,\n        \"code\": 61803\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 327\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M736.571 932.571h-638.857v-274.286h-91.429v365.714h821.714v-365.714h-91.429v274.286zM198.286 633.143l18.857-89.714 447.429 94.286-18.857 89.143zM257.143 419.429l38.286-83.429 414.286 193.714-38.286 82.857zM372 216l58.286-70.286 350.857 293.143-58.286 70.286zM598.857 0l272.571 366.286-73.143 54.857-272.571-366.286zM188.571 840.571v-90.857h457.143v90.857h-457.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stack-overflow\"\n        ],\n        \"defaultCode\": 61804,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"stack-overflow\",\n        \"id\": 328,\n        \"order\": 1184,\n        \"prevSize\": 28,\n        \"code\": 61804\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 328\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM664 512c0 124.571-100.571 225.143-225.143 225.143s-225.143-100.571-225.143-225.143 100.571-225.143 225.143-225.143 225.143 100.571 225.143 225.143zM725.714 277.714c0 29.143-23.429 52.571-52.571 52.571s-52.571-23.429-52.571-52.571 23.429-52.571 52.571-52.571 52.571 23.429 52.571 52.571zM438.857 152c-64 0-201.143-5.143-258.857 17.714-20 8-34.857 17.714-50.286 33.143s-25.143 30.286-33.143 50.286c-22.857 57.714-17.714 194.857-17.714 258.857s-5.143 201.143 17.714 258.857c8 20 17.714 34.857 33.143 50.286s30.286 25.143 50.286 33.143c57.714 22.857 194.857 17.714 258.857 17.714s201.143 5.143 258.857-17.714c20-8 34.857-17.714 50.286-33.143s25.143-30.286 33.143-50.286c22.857-57.714 17.714-194.857 17.714-258.857s5.143-201.143-17.714-258.857c-8-20-17.714-34.857-33.143-50.286s-30.286-25.143-50.286-33.143c-57.714-22.857-194.857-17.714-258.857-17.714zM877.714 512c0 60.571 0.571 120.571-2.857 181.143-3.429 70.286-19.429 132.571-70.857 184s-113.714 67.429-184 70.857c-60.571 3.429-120.571 2.857-181.143 2.857s-120.571 0.571-181.143-2.857c-70.286-3.429-132.571-19.429-184-70.857s-67.429-113.714-70.857-184c-3.429-60.571-2.857-120.571-2.857-181.143s-0.571-120.571 2.857-181.143c3.429-70.286 19.429-132.571 70.857-184s113.714-67.429 184-70.857c60.571-3.429 120.571-2.857 181.143-2.857s120.571-0.571 181.143 2.857c70.286 3.429 132.571 19.429 184 70.857s67.429 113.714 70.857 184c3.429 60.571 2.857 120.571 2.857 181.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"instagram\"\n        ],\n        \"defaultCode\": 61805,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"instagram\",\n        \"id\": 329,\n        \"order\": 1185,\n        \"prevSize\": 28,\n        \"code\": 61805\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 329\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM398.857 512c0-66.857-54.286-121.143-121.143-121.143s-121.143 54.286-121.143 121.143 54.286 121.143 121.143 121.143 121.143-54.286 121.143-121.143zM721.143 512c0-66.857-54.286-121.143-121.143-121.143s-121.143 54.286-121.143 121.143 54.286 121.143 121.143 121.143 121.143-54.286 121.143-121.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flickr\"\n        ],\n        \"defaultCode\": 61806,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"flickr\",\n        \"id\": 330,\n        \"order\": 1186,\n        \"prevSize\": 28,\n        \"code\": 61806\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 330\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 355.429l114.857 174.857h-229.714zM647.429 658.286h53.714l-262.286-394.857-262.286 394.857h53.714l59.429-91.429h298.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"adn\"\n        ],\n        \"defaultCode\": 61808,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"adn\",\n        \"id\": 331,\n        \"order\": 1187,\n        \"prevSize\": 28,\n        \"code\": 61808\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 331\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M465.714 490.857c6.286 48-52 85.714-92.571 61.143-45.714-20-45.714-92.571-1.143-113.143 38.286-23.429 93.714 7.429 93.714 52zM529.143 478.857c-10.286-81.143-102.286-134.857-177.143-101.143-47.429 21.143-79.429 71.429-77.143 124.571 2.857 69.714 69.143 126.857 138.857 120.571s124-74.286 115.429-144zM665.714 169.143c-25.143-33.143-68-38.857-105.714-45.143-106.857-17.143-216.571-17.714-323.429 1.143-35.429 5.714-75.429 12-97.714 44 36.571 34.286 88.571 39.429 135.429 45.143 84.571 10.857 171.429 11.429 256 0.571 47.429-5.714 100-10.286 135.429-45.714zM698.286 760.571c-16 56-6.857 131.429-66.286 164-102.286 56.571-226.286 62.857-338.857 42.857-59.429-10.857-129.143-29.714-161.714-85.714-14.286-54.857-23.429-110.857-32.571-166.857l3.429-9.143 10.286-5.143c170.286 112.571 408.571 112.571 579.429 0 26.857 8 6.857 40.571 6.286 60zM801.714 211.429c-19.429 125.143-41.714 249.714-63.429 374.286-6.286 36.571-41.714 57.143-71.429 72.571-106.857 53.714-231.429 62.857-348.571 50.286-79.429-8.571-160.571-29.714-225.143-79.429-30.286-23.429-30.286-63.429-36-97.143-20-117.143-42.857-234.286-57.143-352.571 6.857-51.429 64.571-73.714 107.429-89.714 57.143-21.143 118.286-30.857 178.857-36.571 129.143-12.571 261.143-8 386.286 28.571 44.571 13.143 92.571 31.429 122.857 69.714 13.714 17.714 9.143 40 6.286 60z\"\n        ],\n        \"width\": 809.1062857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bitbucket\"\n        ],\n        \"defaultCode\": 61809,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bitbucket\",\n        \"id\": 332,\n        \"order\": 1188,\n        \"prevSize\": 28,\n        \"code\": 61809\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 332\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M484.571 497.143c0-32.571-40-54.857-67.429-38.286-32.571 15.429-32.571 68 0.571 81.714 29.714 17.714 71.429-9.143 66.857-43.429zM530.286 488c6.286 50.286-33.143 99.429-83.429 104s-97.714-36.571-100-87.429c-1.714-37.714 21.714-74.286 56-89.714 53.714-24 120 14.857 127.429 73.143zM628.571 264.571c-25.143 25.714-63.429 29.143-97.143 33.143-61.143 8-123.429 7.429-185.143 0-33.714-4.571-70.857-8.571-97.143-33.143 16-22.857 44.571-27.429 70.286-31.429 77.143-13.714 156-13.143 233.143-0.571 27.429 4 58.286 8.571 76 32zM652.571 690.857c0-13.714 14.286-37.143-5.143-42.857-122.857 81.143-294.286 81.143-417.714 0l-6.857 3.429-2.857 6.857c6.857 40 13.143 80.571 23.429 120 23.429 40.571 73.714 54.286 116.571 61.714 81.143 14.857 170.857 10.286 244.571-30.286 42.857-24 36-78.286 48-118.857zM726.857 294.857c2.286-13.714 5.143-30.286-4.571-42.857-21.714-27.429-56-40.571-88.571-50.286-90.286-26.286-185.714-29.714-278.286-20.571-44 4-88 11.429-129.143 26.286-30.857 12-72.571 28-77.714 64.571 10.286 85.714 26.857 169.714 41.143 254.857 4.571 24 4.571 52.571 26.286 69.714 46.286 35.429 105.143 50.857 162.286 57.143 84.571 9.143 174.286 2.857 251.429-36 21.714-11.429 46.857-26.286 51.429-52.571 16-89.714 31.429-179.429 45.714-270.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bitbucket-square\"\n        ],\n        \"defaultCode\": 61810,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bitbucket-square\",\n        \"id\": 333,\n        \"order\": 1189,\n        \"prevSize\": 28,\n        \"code\": 61810\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 333\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M539.429 759.429l45.714 135.429c-17.143 25.714-94.857 54.857-164.571 56-207.429 3.429-285.714-147.429-285.714-253.714v-310.857h-96v-122.857c144-52 178.857-182.286 186.857-256.571 0.571-4.571 4.571-6.857 6.857-6.857h139.429v242.286h190.286v144h-190.857v296c0 40 14.857 95.429 91.429 93.714 25.143-0.571 58.857-8 76.571-16.571z\"\n        ],\n        \"width\": 623.9817142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tumblr\"\n        ],\n        \"defaultCode\": 61811,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tumblr\",\n        \"id\": 334,\n        \"order\": 1190,\n        \"prevSize\": 28,\n        \"code\": 61811\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 334\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M649.143 834.857l-35.429-104.571c-13.714 6.857-39.429 12.571-58.857 12.571-58.286 1.714-70.286-40.571-70.286-72v-227.429h146.857v-110.857h-146.286v-186.286h-107.429c-1.714 0-4.571 1.714-5.143 5.714-6.286 56.571-33.143 157.143-144 197.143v94.286h74.286v238.857c0 81.714 60 198.286 219.429 195.429 53.714-1.143 113.714-23.429 126.857-42.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tumblr-square\"\n        ],\n        \"defaultCode\": 61812,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tumblr-square\",\n        \"id\": 335,\n        \"order\": 1191,\n        \"prevSize\": 28,\n        \"code\": 61812\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 335\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M437.143 742.286c2.857 6.857 1.714 14.286-2.857 20l-200 219.429c-3.429 3.429-8 5.714-13.143 5.714v0c-5.143 0-10.286-2.286-13.714-5.714l-202.857-219.429c-4.571-5.714-5.714-13.143-2.857-20 2.857-6.286 9.143-10.857 16.571-10.857h128v-713.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v713.143h128c7.429 0 13.714 4 16.571 10.857z\"\n        ],\n        \"width\": 438.85714285714283,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"long-arrow-down\"\n        ],\n        \"defaultCode\": 61813,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"long-arrow-down\",\n        \"id\": 336,\n        \"order\": 1192,\n        \"prevSize\": 28,\n        \"code\": 61813\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 336\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M437.143 281.714c-2.857 6.286-9.143 10.857-16.571 10.857h-128v713.143c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-713.143h-128c-7.429 0-13.714-4-16.571-10.857s-1.714-14.286 2.857-20l200-219.429c3.429-3.429 8-5.714 13.143-5.714v0c5.143 0 10.286 2.286 13.714 5.714l202.857 219.429c4.571 5.714 5.714 13.143 2.857 20z\"\n        ],\n        \"width\": 438.85714285714283,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"long-arrow-up\"\n        ],\n        \"defaultCode\": 61814,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"long-arrow-up\",\n        \"id\": 337,\n        \"order\": 1193,\n        \"prevSize\": 28,\n        \"code\": 61814\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 337\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 457.143v109.714c0 10.286-8 18.286-18.286 18.286h-713.143v128c0 7.429-4 13.714-10.857 16.571s-14.286 1.714-20-2.857l-219.429-200c-3.429-3.429-5.714-8-5.714-13.143v0c0-5.143 2.286-10.286 5.714-13.714l219.429-202.286c5.714-5.143 13.143-6.286 20-3.429 6.286 2.857 10.857 9.143 10.857 16.571v128h713.143c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1060.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"long-arrow-left\"\n        ],\n        \"defaultCode\": 61815,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"long-arrow-left\",\n        \"id\": 338,\n        \"order\": 1194,\n        \"prevSize\": 28,\n        \"code\": 61815\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 338\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M987.429 510.286c0 5.143-2.286 10.286-5.714 13.714l-219.429 202.286c-5.714 5.143-13.143 6.286-20 3.429-6.286-2.857-10.857-9.143-10.857-16.571v-128h-713.143c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h713.143v-128c0-7.429 4-13.714 10.857-16.571s14.286-1.714 20 2.857l219.429 200c3.429 3.429 5.714 8 5.714 13.143v0z\"\n        ],\n        \"width\": 987.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"long-arrow-right\"\n        ],\n        \"defaultCode\": 61816,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"long-arrow-right\",\n        \"id\": 339,\n        \"order\": 1195,\n        \"prevSize\": 28,\n        \"code\": 61816\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 339\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M796 694.286c-14.286 45.143-37.143 93.143-70.286 142.857-49.143 74.857-98.286 112-146.857 112-19.429 0-45.714-6.286-80-18.286-33.714-12.571-62.857-18.286-86.286-18.286-22.857 0-50.286 6.286-81.143 18.857-31.429 13.143-56.571 19.429-75.429 19.429-58.857 0-115.429-49.714-172-148-55.429-98.286-84-193.714-84-287.429 0-87.429 21.714-158.286 64.571-213.714 42.857-54.857 96.571-82.286 162.286-82.286 28 0 61.143 5.714 101.143 17.143 39.429 11.429 65.714 17.143 78.857 17.143 16.571 0 44-6.286 81.714-19.429 37.714-12.571 70.857-19.429 98.857-19.429 45.714 0 86.286 12.571 121.714 37.143 20 13.714 40 33.143 59.429 57.143-29.714 25.143-51.429 47.429-65.143 67.429-24.571 35.429-37.143 74.857-37.143 118.286 0 46.857 13.143 89.714 39.429 127.429s56.571 61.714 90.286 72zM581.143 24c0 23.429-5.714 49.714-16.571 77.714-11.429 28.571-29.143 54.857-53.143 78.857-20.571 20.571-41.143 34.286-61.714 41.143-13.143 4-32.571 7.429-59.429 9.714 1.143-56.571 16-105.714 44.571-146.857s76.571-69.143 142.857-84.571c1.143 5.143 2.286 9.143 2.857 12.571 0 4 0.571 7.429 0.571 11.429z\"\n        ],\n        \"width\": 796.0137142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"apple\"\n        ],\n        \"defaultCode\": 61817,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"apple\",\n        \"id\": 340,\n        \"order\": 1196,\n        \"prevSize\": 28,\n        \"code\": 61817\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 340\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M389.714 574.857v372l-389.714-53.714v-318.286h389.714zM389.714 150.286v376.571h-389.714v-322.857zM950.857 574.857v449.143l-518.286-71.429v-377.714h518.286zM950.857 73.143v453.714h-518.286v-382.286z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"windows\"\n        ],\n        \"defaultCode\": 61818,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"windows\",\n        \"id\": 341,\n        \"order\": 1197,\n        \"prevSize\": 28,\n        \"code\": 61818\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 341\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M281.714 276c12.571 0 22.286-10.286 22.286-22.286s-9.714-22.286-22.286-22.286c-12 0-21.714 10.286-21.714 22.286s9.714 22.286 21.714 22.286zM522.857 276c12 0 21.714-10.286 21.714-22.286s-9.714-22.286-21.714-22.286c-12.571 0-22.286 10.286-22.286 22.286s9.714 22.286 22.286 22.286zM58.857 381.143c32 0 58.286 26.286 58.286 58.286v245.714c0 32.571-25.714 58.857-58.286 58.857s-58.857-26.286-58.857-58.857v-245.714c0-32 26.286-58.286 58.857-58.286zM664.571 392v380.571c0 34.857-28 62.857-62.286 62.857h-42.857v129.714c0 32.571-26.286 58.857-58.857 58.857s-58.857-26.286-58.857-58.857v-129.714h-78.857v129.714c0 32.571-26.286 58.857-58.857 58.857-32 0-58.286-26.286-58.286-58.857l-0.571-129.714h-42.286c-34.857 0-62.857-28-62.857-62.857v-380.571h524.571zM532 160.571c80 41.143 134.286 120 134.286 210.857h-528.571c0-90.857 54.286-169.714 134.857-210.857l-40.571-74.857c-2.286-4-1.143-9.143 2.857-11.429 4-1.714 9.143-0.571 11.429 3.429l41.143 75.429c34.857-15.429 73.714-24 114.857-24s80 8.571 114.857 24l41.143-75.429c2.286-4 7.429-5.143 11.429-3.429 4 2.286 5.143 7.429 2.857 11.429zM804.571 439.429v245.714c0 32.571-26.286 58.857-58.857 58.857-32 0-58.286-26.286-58.286-58.857v-245.714c0-32.571 26.286-58.286 58.286-58.286 32.571 0 58.857 25.714 58.857 58.286z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"android\"\n        ],\n        \"defaultCode\": 61819,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"android\",\n        \"id\": 342,\n        \"order\": 1198,\n        \"prevSize\": 28,\n        \"code\": 61819\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 342\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M378.857 234.857v0c-11.429 1.143-7.429 11.429-13.714 11.429-5.714 0.571-4.571-12.571 13.714-11.429zM428.571 242.857c-5.714 1.714-6.286-9.143-16.571-6.286v0c16.571-7.429 22.286 4 16.571 6.286zM228 486.857c-5.143-1.714-4 8.571-9.143 16.571-4 7.429-14.286 13.143-6.286 14.286v0c2.857 0.571 10.857-6.286 14.286-14.286 2.857-9.714 5.714-14.857 1.143-16.571zM716.571 692c0-10.286-22.286-20-31.429-24 15.429-51.429 8.571-72-1.714-120.571-8-36.571-41.714-86.286-68-101.714 6.857 5.714 19.429 22.286 32.571 47.429 22.857 42.857 45.714 106.286 30.857 158.857-5.714 20.571-19.429 23.429-28.571 24-40 4.571-16.571-48-33.143-119.429-18.857-80-38.286-85.714-42.857-92-23.429-104-49.143-93.714-56.571-132.571-6.286-34.857 30.286-63.429-19.429-73.143-15.429-2.857-37.143-18.286-45.714-19.429s-13.143-57.714 18.857-59.429c31.429-2.286 37.143 35.429 31.429 50.286-9.143 14.857 0.571 20.571 16 15.429 12.571-4 4.571-37.143 7.429-41.714-8-48-28-54.857-48.571-58.857-78.857 6.286-43.429 93.143-51.429 85.143-11.429-12-44.571-1.143-44.571-8.571 0.571-44.571-14.286-70.286-34.857-70.857-22.857-0.571-32 31.429-33.143 49.714-1.714 17.143 9.714 53.143 18.286 50.286 5.714-1.714 15.429-13.143 5.143-12.571-5.143 0-13.143-12.571-14.286-27.429-0.571-14.857 5.143-29.714 24.571-29.143 22.286 0.571 22.286 45.143 20 46.857-7.429 5.143-16.571 14.857-17.714 16.571-7.429 12-21.714 15.429-27.429 20.571-9.714 10.286-12 21.714-4.571 25.714 26.286 14.857 17.714 32 54.286 33.143 24 1.143 41.714-3.429 58.286-8.571 12.571-4 53.143-12.571 61.714-27.429 4-6.286 8.571-6.286 11.429-4.571 5.714 2.857 6.857 13.714-7.429 17.143-20 5.714-40 16.571-58.286 23.429-17.714 7.429-23.429 10.286-40 13.143-37.714 6.857-65.714-13.714-40.571 10.857 8.571 8 16.571 13.143 38.286 12.571 48-1.714 101.143-59.429 106.286-33.714 1.143 5.714-14.857 12.571-27.429 18.857-44.571 21.714-76 65.143-104.571 50.286-25.714-13.714-51.429-77.143-50.857-48.571 0.571 44-57.714 82.857-30.857 133.143-17.714 4.571-57.143 88.571-62.857 132-3.429 25.143 2.286 56-4 73.143-8.571 25.143-47.429-24-34.857-84 2.286-10.286 0-12.571-2.857-7.429-15.429 28-6.857 67.429 5.714 94.857 5.143 12 18.286 17.143 28 27.429 20 22.857 98.857 81.143 112.571 95.429 17.714 16.571 12.571 55.429-24 59.429v0c18.857 35.429 37.143 38.857 36.571 96.571 21.714-11.429 13.143-36.571 4-52.571-6.286-11.429-14.286-16.571-12.571-19.429 1.143-1.714 12.571-11.429 18.857-4 19.429 21.714 56 25.714 94.857 20.571 39.429-4.571 81.714-18.286 101.143-49.714 9.143-14.857 15.429-20 19.429-17.143 4.571 2.286 6.286 12.571 5.714 29.714-0.571 18.286-8 37.143-13.143 52.571-5.143 17.714-6.857 29.714 10.286 30.286 4.571-32 13.714-63.429 16-95.429 2.857-36.571-23.429-104 5.143-137.714 7.429-9.143 16.571-10.286 29.143-10.286 1.714-45.714 72-42.286 95.429-23.429zM357.714 219.429c2.286-14.286-4.571-24.571-8-25.714-6.857-1.714-5.714 8.571-2.286 7.429v0c2.286 0 5.143 3.429 4 8.571-1.143 6.857-0.571 11.429 4.571 11.429 0.571 0 1.714 0 1.714-1.714zM597.143 332c-2.286-10.857-10.286-6.857-19.429-12.571-10.857-6.857-13.143-18.286-17.143-14.286v0c-12 13.143 14.857 40.571 26.286 42.857 6.857 1.143 12-8 10.286-16zM495.429 210.286c0.571-13.714-11.429-20.571-14.286-20-7.429 0.571-5.143 4-1.714 5.143v0c4.571 1.143 9.143 9.143 10.286 17.714 0 1.143 5.714-1.143 5.714-2.857zM526.286 77.143c0.571-2.857-6.857-6.286-12-10.286-4.571-4.571-9.143-8.571-13.714-8.571-11.429 1.143-5.714 13.143-7.429 18.857v0c-2.286 6.286-10.857 11.429-5.143 16 5.143 4 8.571-6.286 19.429-10.286 2.857-1.143 16 0.571 18.857-5.714zM849.143 843.429c70.286 43.429-26.286 79.429-68 100.571-32.571 16.571-76 53.143-92 68.571-12 11.429-61.714 17.143-89.714 2.857-32.571-16.571-15.429-42.857-65.714-44.571-25.143-0.571-49.714-0.571-74.286-0.571-21.714 0.571-43.429 1.714-65.714 2.286-75.429 1.714-82.857 50.286-131.429 48.571-33.143-1.143-74.857-27.429-146.857-42.286-50.286-10.286-98.857-13.143-109.143-35.429s12.571-47.429 14.286-69.143c1.714-29.143-21.714-68.571-4.571-83.429 14.857-13.143 46.286-3.429 66.857-14.857 21.714-12.571 30.857-22.286 30.857-49.143 8 27.429-0.571 49.714-18.286 60.571-10.857 6.857-30.857 10.286-47.429 8.571-13.143-1.143-21.143 0.571-24.571 5.714-5.143 6.286-3.429 17.714 2.857 32.571s13.714 24.571 12.571 42.857c-0.571 18.286-21.143 40-17.714 55.429 1.143 5.714 6.857 10.857 21.143 14.857 22.857 6.286 64.571 12.571 105.143 22.286 45.143 11.429 92 32 121.143 28 86.857-12 37.143-105.143 23.429-127.429v0c-73.714-115.429-122.286-190.857-161.143-161.143-9.714 8-10.286-19.429-9.714-30.286 1.714-37.714 20.571-51.429 32-80.571 21.714-55.429 38.286-118.857 71.429-151.429 24.571-32 63.429-84 70.857-111.429-6.286-59.429-8-122.286-9.143-177.143-1.143-58.857 8-110.286 74.286-146.286 16-8.571 37.143-12 59.429-12 39.429-0.571 83.429 10.857 111.429 31.429 44.571 33.143 72.571 103.429 69.143 153.714-2.286 39.429 4.571 80 17.143 122.286 14.857 49.714 38.286 84.571 76 124.571 45.143 48 80.571 142.286 90.857 202.286 9.143 56-3.429 90.857-15.429 92.571-18.286 2.857-29.714 60.571-86.857 58.286-36.571-1.714-40-23.429-50.286-42.286-16.571-29.143-33.143-20-39.429 10.857-3.429 15.429-1.143 38.286 4 55.429 10.286 36 6.857 69.714 0.571 111.429-12 78.857 55.429 93.714 100.571 56 44.571-37.143 54.286-42.857 110.286-62.286 85.143-29.143 56.571-54.857 10.857-70.286-41.143-13.714-42.857-82.857-28-96 3.429 74.286 42.286 85.143 58.286 95.429z\"\n        ],\n        \"width\": 915.4559999999999,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"linux\"\n        ],\n        \"defaultCode\": 61820,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"linux\",\n        \"id\": 343,\n        \"order\": 1199,\n        \"prevSize\": 28,\n        \"code\": 61820\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 343\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 857.143c-5.714-33.143-27.429-147.429-80-284.571-0.571 0-1.714 0.571-2.286 0.571 0 0-222.286 77.714-294.286 234.286-3.429-2.857-8.571-6.286-8.571-6.286 65.143 53.143 148 85.714 238.857 85.714 52 0 101.143-10.857 146.286-29.714zM479.429 510.286c-9.143-21.143-19.429-42.286-30.286-63.429-193.143 57.714-378.286 53.143-384.571 53.143-0.571 4-0.571 8-0.571 12 0 96 36.571 184 96 250.286v0c102.286-182.286 304.571-247.429 304.571-247.429 5.143-1.714 10.286-2.857 14.857-4.571zM418.286 389.143c-65.143-115.429-134.286-209.143-139.429-216-104.571 49.143-182.286 145.714-206.857 261.714 9.714 0 166.286 1.714 346.286-45.714zM809.143 571.429c-8-2.286-112.571-35.429-233.714-16.571 49.143 135.429 69.143 245.714 73.143 268 84-56.571 143.429-146.857 160.571-251.429zM349.143 148c-0.571 0-0.571 0-1.143 0.571 0 0 0.571-0.571 1.143-0.571zM686.286 230.857c-65.714-58.286-152.571-93.714-247.429-93.714-30.286 0-60 4-88.571 10.857 5.714 7.429 76.571 100.571 140.571 218.286 141.143-52.571 194.286-133.714 195.429-135.429zM813.714 508c-1.143-88.571-32.571-170.286-85.143-234.286-1.143 1.143-61.143 88-209.143 148.571 8.571 17.714 17.143 36 25.143 54.286 2.857 6.286 5.143 13.143 8 19.429 129.143-16.571 256.571 11.429 261.143 12zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dribbble\"\n        ],\n        \"defaultCode\": 61821,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"dribbble\",\n        \"id\": 344,\n        \"order\": 1200,\n        \"prevSize\": 28,\n        \"code\": 61821\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 344\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M670.286 607.429c0-99.429-96.571-133.714-177.714-152l-59.429-13.714c-43.429-10.286-76-17.714-76-50.857 0-30.286 32-44 82.286-44 89.714 0 91.429 65.714 146.857 65.714 37.143 0 59.429-29.143 59.429-62.286 0-65.714-109.143-108.571-217.143-108.571-98.857 0-213.714 42.857-213.714 158.857 0 96 64 130.286 147.429 150.286l83.429 20.571c50.857 12.571 82.286 18.286 82.286 54.857 0 29.143-32.571 51.429-82.857 51.429-105.714 0-111.429-88-172.571-88-40 0-57.714 28.571-57.714 60 0 70.286 107.429 127.429 236 127.429 107.429 0 219.429-53.714 219.429-169.714zM877.714 731.429c0 121.143-98.286 219.429-219.429 219.429-50.286 0-96.571-17.143-133.714-45.714-27.429 5.714-56.571 9.143-85.714 9.143-222.286 0-402.286-180-402.286-402.286 0-29.143 3.429-58.286 9.143-85.714-28.571-37.143-45.714-83.429-45.714-133.714 0-121.143 98.286-219.429 219.429-219.429 50.286 0 96.571 17.143 133.714 45.714 27.429-5.714 56.571-9.143 85.714-9.143 222.286 0 402.286 180 402.286 402.286 0 29.143-3.429 58.286-9.143 85.714 28.571 37.143 45.714 83.429 45.714 133.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"skype\"\n        ],\n        \"defaultCode\": 61822,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"skype\",\n        \"id\": 345,\n        \"order\": 1201,\n        \"prevSize\": 28,\n        \"code\": 61822\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 345\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M571.429 248l21.143-110.857c4-18.286-9.714-32.571-25.143-32.571h-406.857c-18.286 0-30.857 16.571-30.857 30.857v629.143c0 1.714 1.714 2.286 3.429 0.571 149.714-180 166.286-201.143 166.286-201.143 17.143-20 24-23.429 49.143-23.429h136.571c18.857 0 29.714-16 31.429-25.143s17.714-92.571 21.143-109.143-12-33.714-27.429-33.714h-168c-22.286 0-38.286-16-38.286-38.286v-24c0-22.286 16-37.714 38.286-37.714h197.714c13.714 0 29.143-12.571 31.429-24.571zM701.143 121.143c-21.143 102.857-84.571 428-90.286 451.429-6.857 26.857-17.143 73.714-82.286 73.714h-154.857c-6.286 0-6.857-0.571-12.571 5.714 0 0-4 4.571-243.429 282.286-18.857 21.714-49.714 17.714-61.143 13.143s-31.429-18.286-31.429-56v-805.714c0-33.143 20.571-85.714 90.286-85.714h507.429c74.286 0 94.286 42.286 78.286 121.143zM701.143 121.143l-90.286 451.429c5.714-23.429 69.143-348.571 90.286-451.429z\"\n        ],\n        \"width\": 742.2537142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"foursquare\"\n        ],\n        \"defaultCode\": 61824,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"foursquare\",\n        \"id\": 346,\n        \"order\": 1202,\n        \"prevSize\": 28,\n        \"code\": 61824\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 346\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 768v-585.143c0-10.286-8-18.286-18.286-18.286h-274.286c-10.286 0-18.286 8-18.286 18.286v585.143c0 10.286 8 18.286 18.286 18.286h274.286c10.286 0 18.286-8 18.286-18.286zM786.286 548.571v-365.714c0-10.286-8-18.286-18.286-18.286h-274.286c-10.286 0-18.286 8-18.286 18.286v365.714c0 10.286 8 18.286 18.286 18.286h274.286c10.286 0 18.286-8 18.286-18.286zM877.714 109.714v804.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-804.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"trello\"\n        ],\n        \"defaultCode\": 61825,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"trello\",\n        \"id\": 347,\n        \"order\": 1203,\n        \"prevSize\": 28,\n        \"code\": 61825\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 347\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 603.429c0 30.286-24.571 54.857-54.857 54.857-18.286 0-35.429-9.143-45.714-24.571l-129.714-194.857h-25.714v75.429l141.143 234.857c3.429 5.714 5.143 12 5.143 18.857 0 20-16.571 36.571-36.571 36.571h-109.714v155.429c0 35.429-28.571 64-64 64h-91.429c-34.857 0-64-28.571-64-64v-155.429h-109.714c-20 0-36.571-16.571-36.571-36.571 0-6.857 1.714-13.143 5.143-18.857l141.143-234.857v-75.429h-25.714l-129.714 194.857c-10.286 15.429-27.429 24.571-45.714 24.571-30.286 0-54.857-24.571-54.857-54.857 0-10.857 3.429-21.714 9.143-30.286l146.286-219.429c22.857-33.714 58.286-61.143 100.571-61.143h219.429c42.286 0 77.714 27.429 100.571 61.143l146.286 219.429c5.714 8.571 9.143 19.429 9.143 30.286zM493.714 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"female\"\n        ],\n        \"defaultCode\": 61826,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"female\",\n        \"id\": 348,\n        \"order\": 1204,\n        \"prevSize\": 28,\n        \"code\": 61826\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 348\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 402.286v237.714c0 30.286-24.571 54.857-54.857 54.857s-54.857-24.571-54.857-54.857v-201.143h-36.571v521.143c0 35.429-28.571 64-64 64s-64-28.571-64-64v-265.143h-36.571v265.143c0 35.429-28.571 64-64 64s-64-28.571-64-64v-521.143h-36.571v201.143c0 30.286-24.571 54.857-54.857 54.857s-54.857-24.571-54.857-54.857v-237.714c0-60.571 49.143-109.714 109.714-109.714h365.714c60.571 0 109.714 49.143 109.714 109.714zM420.571 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"male\"\n        ],\n        \"defaultCode\": 61827,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"male\",\n        \"id\": 349,\n        \"order\": 1205,\n        \"prevSize\": 28,\n        \"code\": 61827\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 349\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M441.714 744l200-270.286c15.429-21.143 33.714-89.143-24.571-127.429-49.143-32-96-7.429-120.571 21.143-9.143 10.286-25.143 22.857-54.857 22.857s-45.143-12.571-54.286-22.857c-24.571-28.571-71.429-53.143-121.143-21.143-57.714 38.286-39.429 106.286-24 127.429zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gittip\",\n          \"gratipay\"\n        ],\n        \"defaultCode\": 61828,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"gittip, gratipay\",\n        \"id\": 350,\n        \"order\": 1206,\n        \"prevSize\": 28,\n        \"code\": 61828\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 350\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M841.143 512c0-181.714-147.429-329.143-329.143-329.143s-329.143 147.429-329.143 329.143 147.429 329.143 329.143 329.143 329.143-147.429 329.143-329.143zM998.857 670.286c-1.714 5.714-6.286 9.714-11.429 11.429l-166.857 54.857v174.857c0 5.714-2.857 11.429-7.429 14.857-5.143 3.429-10.857 4.571-16.571 2.286l-166.857-53.714-102.857 141.714c-3.429 4.571-9.143 7.429-14.857 7.429s-11.429-2.857-14.857-7.429l-102.857-141.714-166.857 53.714c-5.714 2.286-11.429 1.143-16.571-2.286-4.571-3.429-7.429-9.143-7.429-14.857v-174.857l-166.857-54.857c-5.143-1.714-9.714-5.714-11.429-11.429s-1.143-12 2.286-16.571l102.857-141.714-102.857-141.714c-3.429-5.143-4-10.857-2.286-16.571s6.286-9.714 11.429-11.429l166.857-54.857v-174.857c0-5.714 2.857-11.429 7.429-14.857 5.143-3.429 10.857-4.571 16.571-2.286l166.857 53.714 102.857-141.714c6.857-9.143 22.857-9.143 29.714 0l102.857 141.714 166.857-53.714c5.714-2.286 11.429-1.143 16.571 2.286 4.571 3.429 7.429 9.143 7.429 14.857v174.857l166.857 54.857c5.143 1.714 9.714 5.714 11.429 11.429s1.143 11.429-2.286 16.571l-102.857 141.714 102.857 141.714c3.429 4.571 4 10.857 2.286 16.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sun-o\"\n        ],\n        \"defaultCode\": 61829,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sun-o\",\n        \"id\": 351,\n        \"order\": 1207,\n        \"prevSize\": 28,\n        \"code\": 61829\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 351\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M721.143 744.571c-20.571 3.429-41.714 5.143-62.857 5.143-212 0-384-172-384-384 0-72.571 21.143-143.429 59.429-204-152 45.143-260.571 184.571-260.571 350.286 0 201.714 164 365.714 365.714 365.714 110.286 0 213.714-50.286 282.286-133.143zM837.143 696c-71.429 154.857-228 254.857-398.286 254.857-241.714 0-438.857-197.143-438.857-438.857 0-237.143 185.714-429.714 422.286-438.286 16-0.571 29.143 8.571 34.857 22.286 6.286 14.286 2.286 30.857-8.571 41.143-65.143 59.429-101.143 140.571-101.143 228.571 0 171.429 139.429 310.857 310.857 310.857 45.143 0 88.571-9.714 130.286-29.143 14.286-6.286 30.286-3.429 41.143 7.429s13.714 27.429 7.429 41.143z\"\n        ],\n        \"width\": 843.4102857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"moon-o\"\n        ],\n        \"defaultCode\": 61830,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"moon-o\",\n        \"id\": 352,\n        \"order\": 1208,\n        \"prevSize\": 28,\n        \"code\": 61830\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 352\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M621.714 475.429c0-20-16.571-36.571-36.571-36.571h-146.286c-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571h146.286c20 0 36.571-16.571 36.571-36.571zM950.857 365.714v548.571c0 20-16.571 36.571-36.571 36.571h-804.571c-20 0-36.571-16.571-36.571-36.571v-548.571c0-20 16.571-36.571 36.571-36.571h804.571c20 0 36.571 16.571 36.571 36.571zM987.429 109.714v146.286c0 20-16.571 36.571-36.571 36.571h-877.714c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h877.714c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"archive\"\n        ],\n        \"defaultCode\": 61831,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"archive\",\n        \"id\": 353,\n        \"order\": 1209,\n        \"prevSize\": 28,\n        \"code\": 61831\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 353\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M932.571 548.571c0 20-16.571 36.571-36.571 36.571h-128c0 71.429-15.429 125.143-38.286 165.714l118.857 119.429c14.286 14.286 14.286 37.143 0 51.429-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-113.143-112.571s-74.857 68.571-172 68.571v-512h-73.143v512c-103.429 0-178.857-75.429-178.857-75.429l-104.571 118.286c-7.429 8-17.143 12-27.429 12-8.571 0-17.143-2.857-24.571-9.143-14.857-13.714-16-36.571-2.857-52l115.429-129.714c-20-39.429-33.143-90.286-33.143-156.571h-128c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h128v-168l-98.857-98.857c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0l98.857 98.857h482.286l98.857-98.857c14.286-14.286 37.143-14.286 51.429 0s14.286 37.143 0 51.429l-98.857 98.857v168h128c20 0 36.571 16.571 36.571 36.571zM658.286 219.429h-365.714c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bug\"\n        ],\n        \"defaultCode\": 61832,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bug\",\n        \"id\": 354,\n        \"order\": 1210,\n        \"prevSize\": 28,\n        \"code\": 61832\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 354\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1095.429 297.143c8.571 23.429-18.286 78.286-85.714 168-110.857 147.429-122.857 133.714-31.429 218.857 88 81.714 106.286 121.143 109.143 126.286 0 0 36.571 64-40.571 64.571l-146.286 2.286c-31.429 6.286-73.143-22.286-73.143-22.286-54.857-37.714-106.286-135.429-146.286-122.857 0 0-41.143 13.143-40 101.143 0.571 18.857-8.571 29.143-8.571 29.143s-10.286 10.857-30.286 12.571h-65.714c-144.571 9.143-272-124-272-124s-139.429-144-261.714-431.429c-8-18.857 0.571-28 0.571-28s8.571-10.857 32.571-10.857l156.571-1.143c14.857 2.286 25.143 10.286 25.143 10.286s9.143 6.286 13.714 18.286c25.714 64 58.857 122.286 58.857 122.286 57.143 117.714 96 137.714 118.286 125.714 0 0 29.143-17.714 22.857-160-2.286-51.429-16.571-74.857-16.571-74.857-13.143-17.714-37.714-22.857-48.571-24.571-8.571-1.143 5.714-21.714 24.571-30.857 28-13.714 77.714-14.286 136.571-13.714 46.286 0.571 59.429 3.429 77.143 7.429 54.286 13.143 36 63.429 36 184.571 0 38.857-7.429 93.143 20.571 110.857 12 8 41.714 1.143 114.857-123.429 0 0 34.286-59.429 61.143-128.571 4.571-12.571 14.286-17.714 14.286-17.714s9.143-5.143 21.714-3.429l164.571-1.143c49.714-6.286 57.714 16.571 57.714 16.571z\"\n        ],\n        \"width\": 1118.8662857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vk\"\n        ],\n        \"defaultCode\": 61833,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"vk\",\n        \"id\": 355,\n        \"order\": 1211,\n        \"prevSize\": 28,\n        \"code\": 61833\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 355\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M385.714 733.714c16-26.286 7.429-56.571-19.429-68-25.714-10.857-60 0.571-76 25.714-16.571 25.714-8.571 56 17.143 68 26.286 12 61.714 0.571 78.286-25.714zM439.429 664.571c5.714-10.286 2.286-21.714-8-25.714-10.286-3.429-22.857 1.143-28.571 10.857-5.714 10.286-2.857 21.143 7.429 25.714 10.286 4 23.429-0.571 29.143-10.857zM538.857 725.714c-34.286 77.714-133.714 120-218.286 92.571-81.714-26.286-116-106.857-80.571-179.429 35.429-70.857 126.286-110.857 206.857-90.286 84 21.714 126.286 100.571 92 177.143zM717.143 634.286c-10.857-111.429-157.143-188-326.857-171.429-169.714 17.143-297.714 120.571-286.857 232s157.143 188 326.857 171.429c169.714-17.143 297.714-120.571 286.857-232zM893.143 636.571c0 128.571-185.143 290.286-463.429 290.286-212.571 0-429.714-102.857-429.714-272.571 0-88.571 56-190.857 152.571-287.429 129.143-129.143 279.429-187.429 336-130.857 25.143 24.571 27.429 68 11.429 119.429-8 26.286 24.571 11.429 24.571 12 104-44 194.857-46.286 228 1.143 17.714 25.143 16 60.571 0 101.714-7.429 18.857 2.286 21.714 16.571 26.286 58.857 18.286 124 62.286 124 140zM850.857 280c32.571 36 41.714 85.714 27.429 129.143-5.714 17.714-24.571 27.429-42.286 21.714s-27.429-24.571-21.714-42.286v0c6.857-21.714 2.286-45.714-13.714-63.429s-39.429-24.571-61.143-20v0c-18.286 4-36.571-7.429-40-25.714-4-18.286 7.429-36 25.714-40 44.571-9.714 93.143 4 125.714 40.571zM954.286 186.857c67.429 74.286 85.143 176 56.571 265.143v0c-6.857 20.571-28.571 32-49.143 25.143s-32-28.571-25.714-49.143v0c20.571-63.429 8-136-40-188.571-48-53.143-118.286-73.143-183.429-59.429-21.143 4.571-42.286-9.143-46.857-30.286s9.143-41.714 30.286-46.286v0c92-19.429 190.857 8.571 258.286 83.429z\"\n        ],\n        \"width\": 1039.433142857143,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"weibo\"\n        ],\n        \"defaultCode\": 61834,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"weibo\",\n        \"id\": 356,\n        \"order\": 1212,\n        \"prevSize\": 28,\n        \"code\": 61834\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 356\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M647.429 897.143c-62.286 34.286-133.714 53.714-210.286 53.714-76 0-147.429-19.429-209.714-53.714 101.143-64 182.857-160.571 209.714-273.714 27.429 113.143 109.143 209.714 210.286 273.714zM364.571 81.143v277.143c0 195.429-108 363.429-261.143 437.714-64.571-76.571-103.429-174.857-103.429-282.857 0-217.143 157.714-397.143 364.571-432zM877.714 513.143c0 108-38.857 206.286-103.429 282.857-153.143-74.286-261.143-242.286-261.143-437.714v-277.143c206.857 34.857 364.571 214.857 364.571 432z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"renren\"\n        ],\n        \"defaultCode\": 61835,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"renren\",\n        \"id\": 357,\n        \"order\": 1213,\n        \"prevSize\": 28,\n        \"code\": 61835\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 357\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M801.143 630.286c-114.857 285.143-390.286 112.571-390.286 112.571-84.571 170.857-224 280.571-385.143 281.143-14.286 0-25.714-11.429-25.714-25.714s11.429-25.143 25.714-25.143c134.286-0.571 251.429-89.143 328-229.714-85.714 33.143-247.429 58.286-337.143-171.429 227.429-93.714 332 23.429 372 94.857 20.571-50.857 35.429-106.286 45.143-166.286 0 0-291.429 45.714-312-204.571 248.571-100 318.286 160 318.286 160 3.429-34.857 6.857-109.714 6.857-111.429 0 0-221.714-153.714-79.429-344.571 260 89.714 128 338.857 128 338.857 1.143 3.429 1.143 49.714 0 69.714 0 0 94.286-185.714 284.571-120-8.571 279.429-296 221.714-296 221.714-9.143 57.143-23.429 111.429-41.714 161.714 0 0 173.143-191.429 358.857-41.714z\"\n        ],\n        \"width\": 801.1337142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pagelines\"\n        ],\n        \"defaultCode\": 61836,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pagelines\",\n        \"id\": 358,\n        \"order\": 1214,\n        \"prevSize\": 28,\n        \"code\": 61836\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 358\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M719.429 716v37.714c0 64.571-50.286 116.571-112 116.571h-32.571l-148.571 153.714v-153.714h-302.286c-61.714 0-112-52-112-116.571v-37.714h707.429zM719.429 529.714v145.714h-707.429v-145.714h707.429zM719.429 342.286v145.714h-707.429v-145.714h707.429zM719.429 262.286v38.286h-707.429v-38.286c0-64 50.286-116 112-116h483.429c61.714 0 112 52 112 116z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stack-exchange\"\n        ],\n        \"defaultCode\": 61837,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"stack-exchange\",\n        \"id\": 359,\n        \"order\": 1215,\n        \"prevSize\": 28,\n        \"code\": 61837\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 359\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 512c0 4.571-1.714 9.714-5.143 13.143l-182.857 182.857c-3.429 3.429-8.571 5.143-13.143 5.143-9.714 0-18.286-8.571-18.286-18.286v-109.714h-201.143c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h201.143v-109.714c0-10.286 8-18.286 18.286-18.286 5.143 0 9.714 2.286 13.714 5.714l182.286 182.286c3.429 3.429 5.143 8.571 5.143 13.143zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-circle-o-right\"\n        ],\n        \"defaultCode\": 61838,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-circle-o-right\",\n        \"id\": 360,\n        \"order\": 1216,\n        \"prevSize\": 28,\n        \"code\": 61838\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 360\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 457.143v109.714c0 9.714-8.571 18.286-18.286 18.286h-201.143v109.714c0 10.286-8 18.286-18.286 18.286-5.143 0-9.714-2.286-13.714-5.714l-182.286-182.286c-3.429-3.429-5.143-8.571-5.143-13.143s1.714-9.714 5.143-13.143l182.857-182.857c3.429-3.429 8.571-5.143 13.143-5.143 9.714 0 18.286 8.571 18.286 18.286v109.714h201.143c9.714 0 18.286 8.571 18.286 18.286zM749.714 512c0-171.429-139.429-310.857-310.857-310.857s-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow-circle-o-left\"\n        ],\n        \"defaultCode\": 61840,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"arrow-circle-o-left\",\n        \"id\": 361,\n        \"order\": 1217,\n        \"prevSize\": 28,\n        \"code\": 61840\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 361\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 329.143v365.714c0 20-16.571 36.571-36.571 36.571-7.429 0-14.857-2.286-21.143-6.857l-256-182.857c-9.714-6.857-15.429-17.714-15.429-29.714 0-11.429 5.714-22.857 15.429-29.714l256-182.857c6.286-4.571 13.714-6.857 21.143-6.857 20 0 36.571 16.571 36.571 36.571zM731.429 786.286v-548.571c0-9.714-8.571-18.286-18.286-18.286h-548.571c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"caret-square-o-left\",\n          \"toggle-left\"\n        ],\n        \"defaultCode\": 61841,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"caret-square-o-left, toggle-left\",\n        \"id\": 362,\n        \"order\": 1218,\n        \"prevSize\": 28,\n        \"code\": 61841\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 362\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 512c0 80.571-65.714 146.286-146.286 146.286s-146.286-65.714-146.286-146.286 65.714-146.286 146.286-146.286 146.286 65.714 146.286 146.286zM438.857 201.143c-171.429 0-310.857 139.429-310.857 310.857s139.429 310.857 310.857 310.857 310.857-139.429 310.857-310.857-139.429-310.857-310.857-310.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dot-circle-o\"\n        ],\n        \"defaultCode\": 61842,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"dot-circle-o\",\n        \"id\": 363,\n        \"order\": 1219,\n        \"prevSize\": 28,\n        \"code\": 61842\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 363\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M584.571 678.286l58.286 116.571c-44 136-170.857 229.143-313.714 229.143-181.143 0-329.143-148-329.143-329.143 0-138.286 86.857-261.714 216.571-309.143l9.714 74.857c-93.143 41.143-153.143 132.571-153.143 234.286 0 141.143 114.857 256 256 256 146.857 0 265.714-125.714 255.429-272.571zM897.714 735.429l33.143 65.143-146.286 73.143c-5.143 2.857-10.857 4-16.571 4-13.714 0-26.857-8-32.571-20l-136.571-272.571h-269.714c-18.286 0-34.286-14.286-36.571-32.571l-54.857-445.143c-0.571-5.714 1.714-18.286 3.429-24 10.857-39.429 47.429-65.143 88-65.143 50.286 0 91.429 41.143 91.429 91.429 0 52-45.714 96.571-98.286 90.857l21.143 165.143h241.714v73.143h-232.571l9.143 73.143h260c13.714 0 26.857 8 32.571 20l130.286 260z\"\n        ],\n        \"width\": 930.8891428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wheelchair\"\n        ],\n        \"defaultCode\": 61843,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wheelchair\",\n        \"id\": 364,\n        \"order\": 1220,\n        \"prevSize\": 28,\n        \"code\": 61843\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 364\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M738.286 364.571c4-82.857-26.857-124.571-92-126.857-88-2.857-147.429 46.857-178.286 149.143 16-6.857 31.429-10.857 46.857-10.857 32 0 46.286 18.286 42.286 54.857-1.714 21.714-16 53.714-42.286 95.429-26.857 42.286-46.857 62.857-60 62.857-17.143 0-32-32-46.857-96.571-4.571-19.429-13.143-67.429-25.714-145.714-11.429-72-41.714-105.714-91.429-101.143-20.571 2.286-52.571 20.571-93.714 57.143-30.857 26.857-61.143 54.857-92.571 82.286l29.714 38.286c28.571-19.429 45.143-29.714 49.714-29.714 21.714 0 42.286 34.286 61.143 102.286 17.143 62.857 34.286 125.143 51.429 188 25.714 68 56.571 102.286 93.714 102.286 59.429 0 132.571-56 218.857-168 83.429-107.429 126.857-192 129.143-253.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vimeo-square\"\n        ],\n        \"defaultCode\": 61844,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"vimeo-square\",\n        \"id\": 365,\n        \"order\": 1221,\n        \"prevSize\": 28,\n        \"code\": 61844\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 365\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 475.429c0 221.714-180.571 402.286-402.286 402.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-349.143l-122.857 37.714c-1.714 0.571-3.429 0.571-5.143 0.571-4 0-7.429-1.143-10.857-3.429-4.571-3.429-7.429-9.143-7.429-14.857v-73.143c0-8 5.143-14.857 13.143-17.714l133.143-40.571v-53.143l-122.857 37.714c-1.714 0.571-3.429 0.571-5.143 0.571-4 0-7.429-1.143-10.857-3.429-4.571-3.429-7.429-9.143-7.429-14.857v-73.143c0-8 5.143-14.857 13.143-17.714l133.143-40.571v-142.857c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286v103.429l214.286-66.286c5.143-1.714 11.429-0.571 16 2.857s7.429 9.143 7.429 14.857v73.143c0 8-5.143 14.857-13.143 17.714l-224.571 69.143v53.143l214.286-66.286c5.143-1.714 11.429-0.571 16 2.857s7.429 9.143 7.429 14.857v73.143c0 8-5.143 14.857-13.143 17.714l-224.571 69.143v278.286c142.857-9.714 256-128.571 256-273.714 0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"try\",\n          \"turkish-lira\"\n        ],\n        \"defaultCode\": 61845,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"try, turkish-lira\",\n        \"id\": 366,\n        \"order\": 1222,\n        \"prevSize\": 28,\n        \"code\": 61845\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 366\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 457.143v36.571c0 10.286-8 18.286-18.286 18.286h-201.143v201.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-201.143h-201.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h201.143v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v201.143h201.143c10.286 0 18.286 8 18.286 18.286zM731.429 713.143v-475.429c0-50.286-41.143-91.429-91.429-91.429h-475.429c-50.286 0-91.429 41.143-91.429 91.429v475.429c0 50.286 41.143 91.429 91.429 91.429h475.429c50.286 0 91.429-41.143 91.429-91.429zM804.571 237.714v475.429c0 90.857-73.714 164.571-164.571 164.571h-475.429c-90.857 0-164.571-73.714-164.571-164.571v-475.429c0-90.857 73.714-164.571 164.571-164.571h475.429c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"plus-square-o\"\n        ],\n        \"defaultCode\": 61846,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"plus-square-o\",\n        \"id\": 367,\n        \"order\": 1223,\n        \"prevSize\": 28,\n        \"code\": 61846\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 367\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M354.286 640c-39.429 22.857-93.143 36.571-153.143 36.571h-73.143v-36.571h-36.571c-10.286 0-18.286-20.571-18.286-45.714 0-10.286 1.714-20 4-28-44-1.143-77.143-8.571-77.143-17.714s33.143-16.571 77.143-17.714c-2.286-8-4-17.714-4-28 0-25.143 8-45.714 18.286-45.714h36.571v-36.571h73.143c60 0 113.714 13.714 153.143 36.571h636c42.286 7.429 80.571 13.714 106.857 18.286 109.714 18.286 146.286 54.857 146.286 73.143s-36.571 54.857-146.286 73.143c-26.286 4.571-64.571 10.857-106.857 18.286h-636zM993.714 496c18.286 12.571 30.286 31.429 30.286 52.571s-12 40-30.286 52.571l46.286 17.143c23.429-16.571 38.857-41.714 38.857-69.714s-15.429-53.143-38.857-69.714zM357.143 649.143h580s-124 21.714-260.571 45.714c-73.143 0-128 54.857-128 54.857l-164.571 164.571s-55.429 36.571-91.429 36.571h-54.857l-53.143-265.143h16.571c58.286 0 113.714-13.143 156-36.571zM201.143 411.429h-16.571l53.143-265.143h54.857c37.143 0 73.143 18.286 91.429 36.571l164.571 164.571c0 0 54.857 54.857 128 54.857 136.571 24 260.571 45.714 260.571 45.714h-580c-42.286-23.429-97.714-36.571-156-36.571z\"\n        ],\n        \"width\": 1243.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"space-shuttle\"\n        ],\n        \"defaultCode\": 61847,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"space-shuttle\",\n        \"id\": 368,\n        \"order\": 1224,\n        \"prevSize\": 28,\n        \"code\": 61847\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 368\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M868 443.429c46.857 0 82.857 34.286 82.857 81.143 0 36.571-18.857 62.286-53.143 74.286l-98.286 33.714 32 95.429c2.857 8.571 4 17.714 4 26.857 0 45.143-36.571 82.857-81.714 82.857-36 0-68-22.286-79.429-56.571l-31.429-94.286-177.143 60.571 31.429 93.714c2.857 8.571 4.571 17.714 4.571 26.857 0 44.571-36.571 82.857-82.286 82.857-36 0-67.429-22.286-78.857-56.571l-31.429-93.143-87.429 30.286c-9.143 2.857-18.857 5.143-28.571 5.143-46.286 0-81.143-34.286-81.143-80.571 0-35.429 22.857-67.429 56.571-78.857l89.143-30.286-60-178.857-89.143 30.857c-9.143 2.857-18.286 4.571-27.429 4.571-45.714 0-81.143-34.857-81.143-80.571 0-35.429 22.857-67.429 56.571-78.857l89.714-30.286-30.286-90.857c-2.857-8.571-4.571-17.714-4.571-26.857 0-45.143 36.571-82.857 82.286-82.857 36 0 67.429 22.286 78.857 56.571l30.857 91.429 177.143-60-30.857-91.429c-2.857-8.571-4.571-17.714-4.571-26.857 0-45.143 37.143-82.857 82.286-82.857 36 0 68 22.857 79.429 56.571l30.286 92 92.571-31.429c8-2.286 16-3.429 24.571-3.429 44.571 0 82.857 33.143 82.857 78.857 0 35.429-27.429 65.143-59.429 76l-89.714 30.857 60 180.571 93.714-32c8.571-2.857 17.714-4.571 26.286-4.571zM414.286 593.143l177.143-60-60-180-177.143 61.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"slack\"\n        ],\n        \"defaultCode\": 61848,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"slack\",\n        \"id\": 369,\n        \"order\": 1225,\n        \"prevSize\": 28,\n        \"code\": 61848\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 369\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM731.429 676.571v-249.143c-10.857 12-22.857 22.857-36.571 31.429-53.714 35.429-109.143 68.571-162.286 105.143-26.857 18.857-60 39.429-93.714 39.429v0 0 0 0c-33.714 0-66.857-20.571-93.714-39.429-53.143-36.571-109.143-69.143-162.286-105.714-13.143-8.571-23.429-21.143-36.571-30.857v249.143c0 30.286 24.571 54.857 54.857 54.857h475.429c30.286 0 54.857-24.571 54.857-54.857zM731.429 349.143c0-30.857-22.857-56.571-54.857-56.571h-475.429c-30.286 0-54.857 24.571-54.857 54.857 0 30.857 32 64.571 56 80.571 50.286 33.714 102.286 65.143 152.571 98.286 21.714 14.286 57.714 40.571 84 40.571s62.286-26.286 84-40.571c50.857-33.143 101.714-65.714 152.571-99.429 22.286-14.857 56-49.143 56-77.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"envelope-square\"\n        ],\n        \"defaultCode\": 61849,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"envelope-square\",\n        \"id\": 370,\n        \"order\": 1226,\n        \"prevSize\": 28,\n        \"code\": 61849\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 370\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M72.571 512c0-63.429 13.714-124 38.286-178.857l209.714 574.286c-146.857-71.429-248-221.714-248-395.429zM808.571 489.714c0 37.714-15.429 81.143-33.714 142.286l-43.429 146.286-158.857-472s26.286-1.714 50.286-4.571c23.429-2.857 20.571-37.714-2.857-36-71.429 5.143-117.143 5.714-117.143 5.714s-42.857-0.571-115.429-5.714c-24-1.714-26.857 34.286-2.857 36 22.286 2.286 45.714 4.571 45.714 4.571l68.571 187.429-96 288-160-475.429s26.286-1.714 50.286-4.571c23.429-2.857 20.571-37.714-2.857-36-70.857 5.143-117.143 5.714-117.143 5.714-8 0-17.714-0.571-28-0.571 78.286-119.429 213.143-198.286 366.857-198.286 114.286 0 218.286 44 296.571 115.429h-5.714c-42.857 0-73.714 37.143-73.714 77.714 0 36 21.143 66.286 43.429 102.857 17.143 29.143 36 66.857 36 121.143zM519.429 550.286l135.429 369.714c0.571 2.286 1.714 4.571 2.857 6.286-45.714 16-94.286 25.143-145.714 25.143-42.857 0-84.571-6.286-124-18.286zM897.143 301.143c34.286 62.857 54.286 134.286 54.286 210.857 0 162.286-88 303.429-218.857 379.429l134.286-387.429c22.286-64 33.714-113.143 33.714-157.714 0-16-1.143-30.857-3.429-45.143zM512 0c282.286 0 512 229.714 512 512s-229.714 512-512 512-512-229.714-512-512 229.714-512 512-512zM512 1000.571c269.143 0 488.571-219.429 488.571-488.571s-219.429-488.571-488.571-488.571-488.571 219.429-488.571 488.571 219.429 488.571 488.571 488.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wordpress\"\n        ],\n        \"defaultCode\": 61850,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wordpress\",\n        \"id\": 371,\n        \"order\": 1227,\n        \"prevSize\": 28,\n        \"code\": 61850\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 371\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M620.571 0v877.714l-155.429 73.143c-262.857-23.429-465.143-163.429-465.143-333.143 0-163.429 188.571-299.429 438.286-329.714v98.286c-163.429 28.571-283.429 121.143-283.429 231.429 0 116.571 133.714 213.143 310.286 235.429v0-777.143zM1002.857 332.571l21.143 222.857-300-65.143 84-47.429c-44.571-26.286-99.429-45.714-160-56.571v-98.286c105.714 12.571 200.571 44.571 274.857 89.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"openid\"\n        ],\n        \"defaultCode\": 61851,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"openid\",\n        \"id\": 372,\n        \"order\": 1228,\n        \"prevSize\": 28,\n        \"code\": 61851\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 372\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M548.571 0l548.571 219.429v73.143h-73.143c0 20-17.714 36.571-39.429 36.571h-872c-21.714 0-39.429-16.571-39.429-36.571h-73.143v-73.143zM146.286 365.714h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h73.143v-438.857h146.286v438.857h33.714c21.714 0 39.429 16.571 39.429 36.571v36.571h-950.857v-36.571c0-20 17.714-36.571 39.429-36.571h33.714v-438.857zM1057.714 914.286c21.714 0 39.429 16.571 39.429 36.571v73.143h-1097.143v-73.143c0-20 17.714-36.571 39.429-36.571h1018.286z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bank\",\n          \"institution\",\n          \"university\"\n        ],\n        \"defaultCode\": 61852,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bank, institution, university\",\n        \"id\": 373,\n        \"order\": 1229,\n        \"prevSize\": 28,\n        \"code\": 61852\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 373\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1013.714 477.714l10.286 180.571c4.571 80.571-164 146.286-365.714 146.286s-370.286-65.714-365.714-146.286l10.286-180.571 328 103.429c9.143 2.857 18.286 4 27.429 4s18.286-1.143 27.429-4zM1316.571 292.571c0 8-5.143 14.857-12.571 17.714l-640 201.143c-2.286 0.571-4 0.571-5.714 0.571s-3.429 0-5.714-0.571l-372.571-117.714c-32.571 25.714-55.429 88.571-60 165.714 21.714 12.571 36 35.429 36 62.286 0 25.714-13.143 48-33.143 61.143l33.143 247.429c0.571 5.143-1.143 10.286-4.571 14.286s-8.571 6.286-13.714 6.286h-109.714c-5.143 0-10.286-2.286-13.714-6.286s-5.143-9.143-4.571-14.286l33.143-247.429c-20-13.143-33.143-35.429-33.143-61.143 0-27.429 15.429-50.857 37.143-63.429 3.429-66.857 20.571-138.857 56-188.571l-190.286-59.429c-7.429-2.857-12.571-9.714-12.571-17.714s5.143-14.857 12.571-17.714l640-201.143c2.286-0.571 4-0.571 5.714-0.571s3.429 0 5.714 0.571l640 201.143c7.429 2.857 12.571 9.714 12.571 17.714z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"graduation-cap\",\n          \"mortar-board\"\n        ],\n        \"defaultCode\": 61853,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"graduation-cap, mortar-board\",\n        \"id\": 374,\n        \"order\": 1230,\n        \"prevSize\": 28,\n        \"code\": 61853\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 374\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M490.857 546.857l7.429 404c-19.429-3.429-39.429-6.286-60-6.286-20 0-40 2.857-60 6.286l7.429-404c-106.286-183.429-206.286-370.286-323.429-546.857 20 5.143 40.571 8.571 61.714 8.571s42.857-4 63.429-8.571c80 141.714 166.857 279.429 250.857 418.857 84.571-138.286 174.286-276 250.857-418.857 20 5.143 40.571 8 61.143 8 21.714 0 44-2.857 65.143-8v0 0c-45.714 62.857-83.429 131.429-122.857 198.286-68 116-134.857 232-201.714 348.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"yahoo\"\n        ],\n        \"defaultCode\": 61854,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"yahoo\",\n        \"id\": 375,\n        \"order\": 1231,\n        \"prevSize\": 28,\n        \"code\": 61854\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 375\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 449.143h414.286c4 22.286 6.857 44 6.857 73.143 0 250.286-168 428.571-421.143 428.571-242.857 0-438.857-196-438.857-438.857s196-438.857 438.857-438.857c118.286 0 217.714 43.429 294.286 114.857l-119.429 114.857c-32.571-31.429-89.714-68-174.857-68-149.714 0-272 124-272 277.143s122.286 277.143 272 277.143c173.714 0 238.857-124.571 249.143-189.143h-249.143v-150.857z\"\n        ],\n        \"width\": 860.0137142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"google\"\n        ],\n        \"defaultCode\": 61856,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"google\",\n        \"id\": 376,\n        \"order\": 1232,\n        \"prevSize\": 28,\n        \"code\": 61856\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 376\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M625.714 666.857c5.143 5.143 5.143 13.143 0 17.714-32.571 32.571-95.429 35.429-113.714 35.429s-81.143-2.857-113.714-35.429c-5.143-4.571-5.143-12.571 0-17.714 4.571-4.571 12.571-4.571 17.143 0 20.571 21.143 65.143 28 96.571 28s75.429-6.857 96.571-28c4.571-4.571 12.571-4.571 17.143 0zM450.286 563.429c0 28-22.857 50.857-50.857 50.857-28.571 0-51.429-22.857-51.429-50.857 0-28.571 22.857-51.429 51.429-51.429 28 0 50.857 22.857 50.857 51.429zM676 563.429c0 28-22.857 50.857-51.429 50.857-28 0-50.857-22.857-50.857-50.857 0-28.571 22.857-51.429 50.857-51.429 28.571 0 51.429 22.857 51.429 51.429zM819.429 494.857c0-37.714-30.857-68-68.571-68-19.429 0-36.571 8-49.143 20.571-46.286-32-108.571-52.571-177.714-54.857l36-161.714 114.286 25.714c0 28 22.857 50.857 50.857 50.857 28.571 0 51.429-23.429 51.429-51.429s-22.857-51.429-51.429-51.429c-20 0-37.143 12-45.714 28.571l-126.286-28c-6.286-1.714-12.571 2.857-14.286 9.143l-39.429 178.286c-68.571 2.857-130.286 23.429-176.571 55.429-12.571-13.143-30.286-21.143-49.714-21.143-37.714 0-68.571 30.286-68.571 68 0 27.429 16 50.286 38.857 61.714-2.286 10.286-3.429 21.143-3.429 32 0 108.571 122.286 196.571 272.571 196.571 150.857 0 273.143-88 273.143-196.571 0-10.857-1.143-22.286-4-32.571 22.286-11.429 37.714-34.286 37.714-61.143zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"reddit\"\n        ],\n        \"defaultCode\": 61857,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"reddit\",\n        \"id\": 377,\n        \"order\": 1233,\n        \"prevSize\": 28,\n        \"code\": 61857\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 377\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M536.571 645.143c4 4 4 10.857 0 14.857-28 28-81.714 30.286-97.714 30.286s-69.714-2.286-97.714-30.286c-4-4-4-10.857 0-14.857 4-4.571 10.857-4.571 14.857 0 17.714 17.714 56 24 82.857 24s65.143-6.286 82.857-24c4-4.571 10.857-4.571 14.857 0zM386.286 556c0 24-20 44-44 44s-44-20-44-44c0-24.571 20-44 44-44s44 19.429 44 44zM579.429 556c0 24-20 44-44 44s-44-20-44-44c0-24.571 20-44 44-44s44 19.429 44 44zM702.286 497.143c0-32-26.286-58.286-58.857-58.286-16 0-30.857 6.857-41.714 17.714-40-27.429-93.714-45.143-152.571-46.857l30.857-138.857 97.714 22.286c0.571 24 20 43.429 44 43.429s44-20 44-44-20-44-44-44c-17.143 0-32 9.714-39.429 24.571l-108-24c-5.714-1.714-10.857 2.286-12 7.429l-34.286 153.143c-58.857 2.286-112 20-151.429 47.429-10.857-11.429-25.714-18.286-42.286-18.286-32.571 0-58.857 26.286-58.857 58.286 0 23.429 13.714 43.429 33.143 53.143-1.714 8.571-2.857 18.286-2.857 27.429 0 93.143 104.571 168.571 233.714 168.571s234.286-75.429 234.286-168.571c0-9.714-1.143-18.857-3.429-28 18.857-9.714 32-29.714 32-52.571zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"reddit-square\"\n        ],\n        \"defaultCode\": 61858,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"reddit-square\",\n        \"id\": 378,\n        \"order\": 1234,\n        \"prevSize\": 28,\n        \"code\": 61858\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 378\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M494.857 479.429l51.429-15.429v-35.429c0-60.571-51.429-109.143-112-109.143s-112 48-112 108.571v161.714c0 14.857-12 26.857-26.857 26.857s-26.286-12-26.286-26.857v-68.571h-86.286v69.714c0 62.286 50.286 112 112.571 112 61.143 0 112-49.143 112-110.286v-160c0-14.857 12-26.857 26.857-26.857 14.286 0 26.286 12 26.286 26.857v30.857zM685.143 590.857v-69.714h-85.714v72c0 14.857-12 26.857-26.857 26.857-14.286 0-26.286-12-26.286-26.857v-70.286l-51.429 14.857-34.286-16v70.286c0 61.143 50.857 110.857 112.571 110.857s112-49.714 112-112zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stumbleupon-circle\"\n        ],\n        \"defaultCode\": 61859,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"stumbleupon-circle\",\n        \"id\": 379,\n        \"order\": 1235,\n        \"prevSize\": 28,\n        \"code\": 61859\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 379\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M606.857 406.857v-67.429c0-32-26.286-58.286-58.286-58.286s-58.286 26.286-58.286 58.286v349.714c0 133.714-110.857 241.714-245.143 241.714-135.429 0-245.143-109.714-245.143-245.143v-152h187.429v149.714c0 32.571 26.286 58.286 58.286 58.286s58.286-25.714 58.286-58.286v-354.286c0-130.857 112-236 244.571-236 133.143 0 244.571 105.714 244.571 237.714v77.714l-111.429 33.143zM909.714 533.714h187.429v152c0 135.429-109.714 245.143-245.143 245.143-134.857 0-245.143-108.571-245.143-242.857v-153.143l74.857 34.857 111.429-33.143v154.286c0 32 26.286 57.714 58.286 57.714s58.286-25.714 58.286-57.714v-157.143z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stumbleupon\"\n        ],\n        \"defaultCode\": 61860,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"stumbleupon\",\n        \"id\": 380,\n        \"order\": 1236,\n        \"prevSize\": 28,\n        \"code\": 61860\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 380\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M841.143 786.286v-274.286h-402.286v-402.286h-274.286c-70.857 0-128 57.143-128 128v274.286h402.286v402.286h274.286c70.857 0 128-57.143 128-128zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"delicious\"\n        ],\n        \"defaultCode\": 61861,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"delicious\",\n        \"id\": 381,\n        \"order\": 1237,\n        \"prevSize\": 28,\n        \"code\": 61861\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 381\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M187.429 161.143h116.571v561.714h-304v-398.286h187.429v-163.429zM187.429 629.143v-210.857h-70.286v210.857h70.286zM350.857 324.571v398.286h117.143v-398.286h-117.143zM350.857 161.143v116.571h117.143v-116.571h-117.143zM514.857 324.571h304.571v538.286h-304.571v-93.143h187.429v-46.857h-187.429v-398.286zM702.286 629.143v-210.857h-70.286v210.857h70.286zM866.286 324.571h304v538.286h-304v-93.143h186.857v-46.857h-186.857v-398.286zM1053.143 629.143v-210.857h-70.286v210.857h70.286z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"digg\"\n        ],\n        \"defaultCode\": 61862,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"digg\",\n        \"id\": 382,\n        \"order\": 1238,\n        \"prevSize\": 28,\n        \"code\": 61862\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 382\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M597.714 582.857c0 48.571-33.143 88-73.714 88-16.571 0-29.714-2.857-40-8.571v-158.286c10.286-6.286 23.429-9.714 40-9.714 40.571 0 73.714 39.429 73.714 88.571zM401.714 338.286c0 49.143-33.143 88.571-73.714 88.571-16.571 0-29.714-2.857-40-8.571v-158.286c10.286-6.286 23.429-9.714 40-9.714 40.571 0 73.714 39.429 73.714 88zM722.857 584.571c0-102.286-77.143-185.143-172-185.143-7.429 0-14.857 0.571-22.286 1.714-8.571 29.143-23.429 55.429-44.571 77.714-32 34.857-74.857 55.429-120.571 57.714v363.429l120.571-23.429v-117.714c20 7.429 42.286 10.857 66.857 10.857 94.857 0 172-82.857 172-185.143zM526.857 340.571c0-102.286-77.143-185.143-172.571-185.143-28 0-56 7.429-80.571 20.571h-106.286v480l120.571-23.429v-117.714c20 6.857 42.286 10.857 66.286 10.857 95.429 0 172.571-82.857 172.571-185.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pied-piper-pp\"\n        ],\n        \"defaultCode\": 61863,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pied-piper-pp\",\n        \"id\": 383,\n        \"order\": 1239,\n        \"prevSize\": 28,\n        \"code\": 61863\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 383\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M698.286 530.857c148.571-5.714 230.857 116.571 298.286 229.714 40 68 86.857 108 144.571 158.857-61.714 38.286-140 64-206.286 93.714-109.714-92-45.714-457.143-221.714-457.143l-5.714 1.143-3.429 2.286c2.286 2.857 5.143 5.714 7.429 8 47.429 40 66.286 48.571 69.143 116.571l0.571 18.857c1.714 42.857-10.857 84.571-19.429 126.286-38.286-1.143-75.429 11.429-113.714 11.429-14.286 0-28-1.714-41.143-5.714-1.143-9.143-1.143-18.286-1.143-26.857 0-17.714-0.571-37.714 1.714-54.857 2.857-18.857 66.857-59.429 65.714-86.857-10.857-1.143-18.286 5.143-24.571 13.714-26.286 38.857-93.714 83.429-141.714 83.429-33.143 0-112-142.286-152-170.857-6.286-4.571-10.286-10.857-15.429-17.143-32 7.429-277.143 64-293.143 64-12 0-22.857-9.714-22.857-21.714 0-10.857 6.857-21.143 17.714-23.429l277.714-60.571c-18.857-34.286 24.571-34.857 42.857-40 6.286-1.714 12.571-8 18.857-8 12.571 0 23.429 17.714 27.429 28 12.571-2.857 90.857-21.143 98.286-21.143 12.571 0 24 9.143 24 22.286 0 10.857-6.857 20.571-18.286 22.857l-104 22.857-0.571 9.143c-0.571 20 90.286 119.429 106.286 119.429 36 0 109.143-82.857 109.143-119.429 0-61.143-85.143-25.143-85.143-66.857 0-6.857 2.286-13.143 5.714-19.429l-38.857-10.857c17.714-18.286 24.571-41.714 24.571-66.857 0-10.857-1.143-22.286-2.857-33.143 29.143-5.714 53.143-9.143 82.286-9.143 113.143 0 90.857 17.143 130.286 108l28.571-14.286c-4.571 68-72 34.857-69.714 61.714zM732.571 396.571c-22.286-25.714-32-38.286-45.143-44-13.714-6.286-31.429-4.571-72.571-4.571-42.857 0-85.143 6.286-124 24.571 12.571-23.429 26.286-33.714 51.429-43.429 54.286-20.571 80-60.571 117.143-101.714 19.429 13.714 28 48 56 46.286l6.857-0.571v43.429l12.571 0.571c74.286-28.571 148.571-60 212-108.571 96-73.143 105.143-99.429 161.714-198.857l4-5.143c-1.143 28-12.571 54.286-24.571 79.429-60.571 126.857-156.571 199.429-292 232-24.571 5.714-52.571 6.286-74.857 17.714 2.857 19.429 26.286 36 26.286 45.714 0 6.857-10.857 14.286-14.857 17.143zM606.286 922.857c31.429-20.571 121.143-39.429 158.857-39.429 18.857 0 56 89.714 65.714 109.714-44.571 16.571-91.429 25.714-139.429 25.714-24 0-48-2.286-71.429-6.286zM469.714 553.143l27.429-6.857 62.286 101.143-41.714 27.429zM756 848.571c0.571 2.857 1.714 6.286 1.714 9.143 0 14.857-98.286 25.143-116 28l-4-24.571c35.429-4 74.857-13.143 110.286-12.571h8zM494.857 489.714l-54.857 11.429-3.429-9.714c13.143-1.143 25.143-7.429 38.286-7.429 7.429 0 13.714 1.714 20 5.714zM606.286 852h17.714l5.714 47.429-23.429 6.857v-54.286zM1114.286 0.571v0 0zM1114.286 0.571l-0.571 2.857-1.143 1.143 0.571-1.714zM1114.286 0.571l0.571-0.571z\"\n        ],\n        \"width\": 1164.5805714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pied-piper-alt\"\n        ],\n        \"defaultCode\": 61864,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pied-piper-alt\",\n        \"id\": 384,\n        \"order\": 1240,\n        \"prevSize\": 28,\n        \"code\": 61864\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 384\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M666.857 906.286c-1.143-4-4.571-9.714-13.714-2.857-19.429 14.286-62.857 32-124.571 32s-90.857-13.143-110.286-28c-2.857-2.286-1.714-2.286-7.429-2.286-6.286 0-9.714 2.857-14.857 6.857-4.571 4-6.857 13.714 0 20.571 42.286 38.857 113.143 35.429 165.143 30.857 52.571-5.143 97.143-36 101.714-40.571 6.857-6.857 5.143-12.571 4-16.571zM644.571 840.571c-4-9.714-10.857-26.857-22.286-34.857-11.429-7.429-28-8.571-43.429-8.571s-24-1.143-40.571 5.714-33.714 22.286-44.571 32-12.571 17.143-6.857 25.143c5.714 7.429 12 2.857 28-10.857 16.571-13.143 27.429-25.143 61.143-25.143s39.429 12.571 46.286 25.143 7.429 14.286 14.286 10.857c8-4 12-9.714 8-19.429zM847.429 680c0-29.714-13.143-80-61.714-80-45.714 0-138.286 94.857-186.857 95.429-56.571 1.143-134.857-112-248-110.857-89.143 0.571-159.429 71.429-160.571 146.857-0.571 42.286 13.143 73.714 42.286 93.714 19.429 13.143 37.143 21.143 94.857 21.143 96 0 217.714-118.857 273.714-117.143 44.571 1.714 113.714 110.857 148.571 113.143 27.429 2.286 41.714-10.286 65.143-44 22.857-34.286 32.571-88 32.571-118.286zM877.714 588.571c0 256-202.286 425.143-434.857 425.143-233.143 0-442.857-183.429-442.857-433.143 0-249.143 194.286-364.571 230.286-383.429 42.857-22.857 73.714-34.857 122.286-73.714 24-18.857 44-46.286 50.286-113.143 34.857 41.714 76.571 90.286 106.286 110.286 48.571 32 97.143 44.571 148 76.571 30.857 18.857 220.571 134.857 220.571 391.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"drupal\"\n        ],\n        \"defaultCode\": 61865,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"drupal\",\n        \"id\": 385,\n        \"order\": 1241,\n        \"prevSize\": 28,\n        \"code\": 61865\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 385\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M611.429 613.143l-91.429 91.429-86.286 86.857-17.143 17.143c-50.286 49.714-120.571 66.857-184.571 50.857-12 52.571-58.857 91.429-114.857 91.429-64.571 0-117.143-52.571-117.143-117.714 0-55.429 38.286-102.286 90.286-114.286-16.571-64.571 0.571-135.429 50.857-185.714l6.857-6.857 86.286 86.857-6.286 6.286c-28.571 28-28 73.714 0 102.286 28 28 73.714 28 101.714 0l17.143-17.143 86.286-86.857 92-91.429zM416.571 223.429l6.857 6.857-86.857 86.857-6.857-6.857c-28-28-73.714-28-101.714 0s-28 74.286 0 102.286l194.857 194.857-86.286 86.857-92-91.429-86.286-86.857-17.143-17.143c-52.571-52-68.571-126.857-48.571-193.714-52.571-11.429-91.429-58.286-91.429-114.286 0-65.143 52.571-117.714 117.143-117.714 58.857 0 106.857 42.857 116 98.286 63.429-14.857 132.571 2.857 182.286 52zM877.714 833.143c0 65.143-52.571 117.714-117.143 117.714-57.143 0-104.571-40.571-115.429-94.286v0c-66.286 20.571-142.286 4.571-194.857-48l-6.286-6.857 86.286-86.857 6.857 6.857c28 28 73.714 28 101.714 0s28-73.714 0-101.714l-195.429-195.429 86.857-86.857 178.286 178.286 16.571 17.143c49.714 49.714 67.429 120 51.429 184 57.143 8 101.143 56.571 101.143 116zM876.571 190.857c0 59.429-44.571 108.571-101.714 116.571 18.857 65.714 2.286 139.429-49.714 191.429l-6.857 6.857-86.286-86.857 6.857-6.857c28-28 28-73.714 0-101.714s-73.714-28-101.714 0l-195.429 195.429-86.857-86.857 92-91.429 86.857-86.857 16.571-17.143c52-52 126.286-68.571 192.571-49.143 8-57.143 57.143-101.143 116.571-101.143 64.571 0 117.143 52.571 117.143 117.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"joomla\"\n        ],\n        \"defaultCode\": 61866,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"joomla\",\n        \"id\": 386,\n        \"order\": 1242,\n        \"prevSize\": 28,\n        \"code\": 61866\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 386\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M373.714 616c-1.143 4-29.143-9.143-36.571-12-7.429-3.429-41.143-22.286-49.714-28s-41.143-32.571-45.143-34.286v0c-20.571 31.429-46.857 68.571-76.571 103.429-10.286 12-41.143 50.857-60 62.857-2.857 1.714-19.429 3.429-21.714 2.286 9.143-6.857 35.429-39.429 46.857-52.571 14.286-16.571 82.286-111.429 93.714-133.143 12-21.714 48-93.714 49.714-100.571-5.714-0.571-50.857 14.857-62.857 18.857-11.429 3.429-42.857 10.857-45.143 12.571-2.286 2.286-0.571 9.143-1.714 11.429s-11.429 7.429-17.714 8.571c-5.714 1.714-18.857 2.286-26.857 0-7.429-1.714-14.286-9.143-16-12 0 0-2.286-3.429-2.857-13.143 6.857-2.286 18.286-2.857 30.857-6.286s43.429-12.571 60-18.286 48.571-17.714 58.286-20c10.286-1.714 36-18.857 49.714-23.429s23.429-10.286 24-7.429 0 15.429-0.571 18.857c-0.571 2.857-28 56.571-32 65.143-2.286 4.571-18.286 34.857-44 74.857 9.143 4 28.571 12 36.571 16 9.714 4.571 77.714 33.143 81.143 34.286s9.714 27.429 8.571 32zM256.571 338.286c1.714 9.714-1.143 13.714-2.286 16-5.714 10.857-20 18.286-28.571 21.714s-22.857 6.857-34.286 6.857c-5.143-0.571-15.429-2.286-28-14.857-6.857-7.429-12-27.429-9.714-25.143s18.857 4.571 26.286 2.857 25.143-6.857 33.143-9.143c8.571-2.857 25.714-7.429 31.429-8 5.714 0 10.286 2.286 12 9.714zM655.429 412l36 129.714-79.429-24zM22.286 869.143l396.571-132.571v-589.714l-396.571 133.143v589.143zM731.429 688l58.286 17.714-103.429-375.429-57.143-17.714-123.429 306.286 58.286 17.714 25.714-62.857 120.571 37.143zM444 138.286l327.429 105.143v-217.143zM621.714 894.286l90.286 7.429-30.857 91.429-22.857-37.714c-46.286 29.714-103.429 52.571-157.714 61.714-16.571 3.429-35.429 6.857-52 6.857h-48c-60.571 0-170.857-36-218.857-70.857-3.429-2.857-4.571-5.143-4.571-9.143 0-6.286 4.571-10.857 10.286-10.857 5.143 0 32 16.571 39.429 20 51.429 25.714 123.429 49.143 181.143 49.143 71.429 0 120-9.143 185.143-37.143 18.857-8.571 35.429-19.429 53.143-29.143zM877.714 277.714v616.571c-441.714-140.571-442.286-140.571-442.286-140.571-9.143 4-418.857 142.286-424.571 142.286-4.571 0-8.571-2.857-10.286-7.429 0-0.571-0.571-1.143-0.571-1.714v-616c0.571-1.714 1.143-4.571 2.286-5.714 3.429-4 8-5.143 11.429-6.286 1.714-0.571 36.571-12 85.143-28.571v-219.429l318.857 113.143c4-1.143 359.429-124 364.571-124 6.286 0 11.429 4.571 11.429 12v238.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"language\"\n        ],\n        \"defaultCode\": 61867,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"language\",\n        \"id\": 387,\n        \"order\": 1243,\n        \"prevSize\": 28,\n        \"code\": 61867\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 387\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M164.571 219.429c50.286 0 91.429 41.143 91.429 91.429v621.714c0 50.286-41.143 91.429-91.429 91.429h-73.143c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h73.143zM950.857 312.571c43.429 25.143 73.143 72.571 73.143 126.286v438.857c0 80.571-65.714 146.286-146.286 146.286h-493.714c-50.286 0-91.429-41.143-91.429-91.429v-877.714c0-30.286 24.571-54.857 54.857-54.857h384c30.286 0 72.571 17.714 93.714 38.857l86.857 86.857c21.143 21.143 38.857 63.429 38.857 93.714v93.143zM530.286 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM530.286 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM530.286 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM676.571 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 877.714v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 731.429v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM822.857 585.143v-73.143c0-10.286-8-18.286-18.286-18.286h-73.143c-10.286 0-18.286 8-18.286 18.286v73.143c0 10.286 8 18.286 18.286 18.286h73.143c10.286 0 18.286-8 18.286-18.286zM877.714 365.714v-146.286h-91.429c-30.286 0-54.857-24.571-54.857-54.857v-91.429h-365.714v292.571h512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fax\"\n        ],\n        \"defaultCode\": 61868,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fax\",\n        \"id\": 388,\n        \"order\": 1244,\n        \"prevSize\": 28,\n        \"code\": 61868\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 388\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 0c20 0 36.571 16.571 36.571 36.571v950.857c0 20-16.571 36.571-36.571 36.571h-731.429c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h731.429zM292.571 164.571v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 310.857v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 457.143v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM292.571 603.429v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM219.429 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM219.429 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 932.571v-109.714c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v109.714c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM512 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM512 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 786.286v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 640v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 493.714v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM658.286 201.143v-36.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"building\"\n        ],\n        \"defaultCode\": 61869,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"building\",\n        \"id\": 389,\n        \"order\": 1245,\n        \"prevSize\": 28,\n        \"code\": 61869\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 389\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M678.857 313.143l-166.857 166.857v470.857c0 35.429-28.571 64-64 64s-64-28.571-64-64v-219.429h-36.571v219.429c0 35.429-28.571 64-64 64s-64-28.571-64-64v-470.857l-166.857-166.857c-21.143-21.714-21.143-56 0-77.714 21.714-21.143 56-21.143 77.714 0l130.286 130.286h210.286l130.286-130.286c21.714-21.143 56-21.143 77.714 0 21.143 21.714 21.143 56 0 77.714zM493.714 219.429c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"child\"\n        ],\n        \"defaultCode\": 61870,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"child\",\n        \"id\": 390,\n        \"order\": 1246,\n        \"prevSize\": 28,\n        \"code\": 61870\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 390\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M445.714 269.714c0 64-33.143 140-106.857 140-92.571 0-148.571-116.571-148.571-196.571 0-64 33.143-140 106.857-140 93.143 0 148.571 116.571 148.571 196.571zM250.286 545.714c0 55.429-29.143 113.143-92 113.143-91.429 0-158.286-112-158.286-194.857 0-55.429 29.714-113.714 92-113.714 91.429 0 158.286 112.571 158.286 195.429zM475.429 530.286c140 0 329.143 201.714 329.143 336.571 0 72.571-59.429 84-117.714 84-76.571 0-138.286-51.429-211.429-51.429-76.571 0-141.714 50.857-224.571 50.857-55.429 0-104.571-18.857-104.571-83.429 0-135.429 189.143-336.571 329.143-336.571zM612 409.714c-73.714 0-106.857-76-106.857-140 0-80 55.429-196.571 148.571-196.571 73.714 0 106.857 76 106.857 140 0 80-56 196.571-148.571 196.571zM858.857 350.286c62.286 0 92 58.286 92 113.714 0 82.857-66.857 194.857-158.286 194.857-62.857 0-92-57.714-92-113.143 0-82.857 66.857-195.429 158.286-195.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"paw\"\n        ],\n        \"defaultCode\": 61872,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"paw\",\n        \"id\": 391,\n        \"order\": 1247,\n        \"prevSize\": 28,\n        \"code\": 61872\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 391\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 301.714c0 114.286-49.714 189.143-119.429 216.571l25.714 469.143c1.143 20-14.286 36.571-34.286 36.571h-109.714c-20 0-35.429-16.571-34.286-36.571l25.714-469.143c-69.714-27.429-119.429-102.286-119.429-216.571 0-146.286 81.714-301.714 182.857-301.714s182.857 155.429 182.857 301.714z\"\n        ],\n        \"width\": 438.85714285714283,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"spoon\"\n        ],\n        \"defaultCode\": 61873,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"spoon\",\n        \"id\": 392,\n        \"order\": 1248,\n        \"prevSize\": 28,\n        \"code\": 61873\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 392\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 930.857l365.714-199.429v-363.429l-365.714 133.143v429.714zM475.429 436.571l398.857-145.143-398.857-145.143-398.857 145.143zM950.857 292.571v438.857c0 26.857-14.857 51.429-38.286 64l-402.286 219.429c-10.857 6.286-22.857 9.143-34.857 9.143s-24-2.857-34.857-9.143l-402.286-219.429c-23.429-12.571-38.286-37.143-38.286-64v-438.857c0-30.857 19.429-58.286 48-68.571l402.286-146.286c8-2.857 16.571-4.571 25.143-4.571s17.143 1.714 25.143 4.571l402.286 146.286c28.571 10.286 48 37.714 48 68.571z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cube\"\n        ],\n        \"defaultCode\": 61874,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cube\",\n        \"id\": 393,\n        \"order\": 1249,\n        \"prevSize\": 28,\n        \"code\": 61874\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 393\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM329.143 673.143l230.857-98.857-230.857-98.857-230.857 98.857zM950.857 932.571l219.429-109.714v-179.429l-219.429 93.714v195.429zM914.286 673.143l230.857-98.857-230.857-98.857-230.857 98.857zM658.286 505.714l219.429-94.286v-152l-219.429 93.714v152.571zM621.714 289.143l252-108-252-108-252 108zM1243.429 585.143v237.714c0 27.429-15.429 53.143-40.571 65.143l-256 128c-10.286 5.714-21.143 8-32.571 8s-22.286-2.286-32.571-8l-256-128c-1.714-0.571-2.857-1.143-4-2.286-1.143 1.143-2.286 1.714-4 2.286l-256 128c-10.286 5.714-21.143 8-32.571 8s-22.286-2.286-32.571-8l-256-128c-25.143-12-40.571-37.714-40.571-65.143v-237.714c0-29.143 17.714-55.429 44.571-67.429l248-106.286v-228.571c0-29.143 17.714-55.429 44.571-67.429l256-109.714c9.143-4 18.857-5.714 28.571-5.714s19.429 1.714 28.571 5.714l256 109.714c26.857 12 44.571 38.286 44.571 67.429v228.571l248 106.286c27.429 12 44.571 38.286 44.571 67.429z\"\n        ],\n        \"width\": 1243.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cubes\"\n        ],\n        \"defaultCode\": 61875,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cubes\",\n        \"id\": 394,\n        \"order\": 1250,\n        \"prevSize\": 28,\n        \"code\": 61875\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 394\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1056 193.714h-292v70.857h292v-70.857zM912 437.143c-68.571 0-114.286 42.857-118.857 111.429h233.143c-6.286-69.143-42.286-111.429-114.286-111.429zM921.143 771.429c43.429 0 99.429-23.429 113.143-68h126.286c-38.857 119.429-119.429 175.429-244 175.429-164.571 0-266.857-111.429-266.857-273.714 0-156.571 108-276 266.857-276 163.429 0 253.714 128.571 253.714 282.857 0 9.143-0.571 18.286-1.143 26.857h-376c0 83.429 44 132.571 128 132.571zM158.286 742.857h169.143c64.571 0 117.143-22.857 117.143-95.429 0-73.714-44-102.857-113.714-102.857h-172.571v198.286zM158.286 436h160.571c56.571 0 96.571-24.571 96.571-85.714 0-66.286-51.429-82.286-108.571-82.286h-148.571v168zM0 145.143h339.429c123.429 0 230.286 34.857 230.286 178.286 0 72.571-33.714 119.429-98.286 150.286 88.571 25.143 131.429 92 131.429 182.286 0 146.286-122.857 209.143-253.714 209.143h-349.143v-720z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"behance\"\n        ],\n        \"defaultCode\": 61876,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"behance\",\n        \"id\": 395,\n        \"order\": 1251,\n        \"prevSize\": 28,\n        \"code\": 61876\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 395\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M713.143 73.143c90.857 0 164.571 73.714 164.571 164.571v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571zM285.143 282.857h-212v449.714h218.286c81.714 0 158.286-38.857 158.286-130.286 0-56.571-26.857-98.286-81.714-114.286 40-19.429 61.143-48.571 61.143-93.714 0-89.714-66.857-111.429-144-111.429zM272.571 464.571h-100.571v-105.143h93.143c35.429 0 68 9.714 68 51.429 0 38.286-25.143 53.714-60.571 53.714zM277.714 656h-105.714v-124h108c43.429 0 70.857 18.857 70.857 64.571s-32.571 59.429-73.143 59.429zM649.143 674.286c-52.571 0-80-30.857-80-82.857h234.857c0.571-5.714 0.571-11.429 0.571-17.143 0-96-56.571-176.571-158.857-176.571-98.857 0-166.857 74.857-166.857 172.571 0 101.714 64 170.857 166.857 170.857 78.286 0 128.571-34.857 152.571-109.143h-78.857c-8.571 27.429-43.429 42.286-70.286 42.286zM643.429 465.143c44.571 0 66.857 26.857 70.857 69.714h-145.143c2.857-42.857 31.429-69.714 74.286-69.714zM550.857 313.143h182.286v44h-182.286v-44z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"behance-square\"\n        ],\n        \"defaultCode\": 61877,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"behance-square\",\n        \"id\": 396,\n        \"order\": 1252,\n        \"prevSize\": 28,\n        \"code\": 61877\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 396\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M904 332.571c0 77.143-62.857 139.429-139.429 139.429-77.143 0-139.429-62.286-139.429-139.429s62.286-139.429 139.429-139.429c76.571 0 139.429 62.286 139.429 139.429zM464 756.571c0-79.429-63.429-142.857-142.857-142.857-10.286 0-20.571 1.143-30.857 3.429l59.429 24c58.286 23.429 86.857 89.143 63.429 147.429s-89.714 86.857-148 62.857c-23.429-9.143-46.857-18.857-70.286-28 24 45.143 71.429 76 126.286 76 79.429 0 142.857-63.429 142.857-142.857zM938.286 333.143c0-96-78.286-174.286-174.286-174.286-96.571 0-174.857 78.286-174.857 174.286 0 96.571 78.286 174.286 174.857 174.286 96 0 174.286-77.714 174.286-174.286zM1024 333.143c0 144-116.571 260-260 260l-249.714 182.286c-9.143 98.286-92.571 175.429-193.143 175.429-92.571 0-170.857-65.714-189.714-153.143l-131.429-52.571v-245.143l222.286 89.714c29.143-17.714 62.857-27.429 98.857-27.429 6.857 0 13.714 0.571 20 1.143l162.286-232.571c1.143-142.286 117.714-257.714 260.571-257.714 143.429 0 260 116.571 260 260z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"steam\"\n        ],\n        \"defaultCode\": 61878,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"steam\",\n        \"id\": 397,\n        \"order\": 1253,\n        \"prevSize\": 28,\n        \"code\": 61878\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 397\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M709.714 369.714c0-60.571-49.714-110.286-110.857-110.286-60.571 0-110.286 49.714-110.286 110.286 0 61.143 49.714 110.286 110.286 110.286 61.143 0 110.857-49.143 110.857-110.286zM361.143 705.714c0 62.857-50.286 113.143-113.143 113.143-43.429 0-81.143-24.571-100-60.571 18.857 7.429 37.143 14.857 56 22.857 45.714 18.286 98.286-4 117.143-50.286 18.286-45.714-4-98.286-50.286-116.571l-46.857-18.857c7.429-1.714 16-2.857 24-2.857 62.857 0 113.143 50.286 113.143 113.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-87.429l98.286 39.429c14.857 69.143 76.571 121.143 149.714 121.143 80 0 145.714-61.143 153.143-138.857l197.143-144c114.286 0 206.286-92.571 206.286-205.714 0-114.286-92-206.286-206.286-206.286-112.571 0-204.571 91.429-205.714 204l-128.571 184c-5.143-0.571-10.286-0.571-16-0.571-28.571 0-55.429 7.429-78.286 21.143l-169.714-68v-267.429c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571zM736.571 370.857c0 76-61.714 137.714-138.286 137.714-76 0-137.714-61.714-137.714-137.714 0-76.571 61.714-138.286 137.714-138.286 76.571 0 138.286 61.714 138.286 138.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"steam-square\"\n        ],\n        \"defaultCode\": 61879,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"steam-square\",\n        \"id\": 398,\n        \"order\": 1254,\n        \"prevSize\": 28,\n        \"code\": 61879\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 398\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M477.714 668l-8.571 210.286-1.143 12.571-240-16.571c-29.714-2.286-54.286-30.286-65.143-55.429-22.857-53.143 6.857-116 24-166.857 0 0 44 6.857 290.857 16zM256.571 333.143l102.857 216.571-84-52.571c-128.571 146.857-140.571 256-140.571 256l-108.571-204c-22.286-33.143-2.286-69.143-2.286-69.143s20-36 65.143-107.429l-80-49.143zM960 628.571l-107.429 205.143c-14.857 37.143-56 40.571-56 40.571s-40.571 4-125.143 6.857l4.571 93.714-131.429-209.714 120.571-206.857 4 98.857c193.714 23.429 290.857-28.571 290.857-28.571zM511.429 100.571c0 0-26.857 35.429-151.429 248.571l-181.143-106.857-10.857-6.857 128.571-203.429c16-25.143 52-34.286 80-31.429 57.143 5.143 98.286 60.571 134.857 100zM885.714 276l121.143 207.429c15.429 25.714 6.286 61.714-8.571 85.714-30.857 48-99.429 59.429-150.857 73.714 0 0-19.429-40.571-151.429-249.143l178.857-111.429zM804 146.857l81.143-47.429-125.714 213.143-239.429-11.429 86.286-49.143c-68.571-182.286-159.429-245.143-159.429-245.143l231.429 0.571c40-3.429 61.714 30.857 61.714 30.857s22.286 34.857 64 108.571z\"\n        ],\n        \"width\": 1026.2674285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"recycle\"\n        ],\n        \"defaultCode\": 61880,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"recycle\",\n        \"id\": 399,\n        \"order\": 1255,\n        \"prevSize\": 28,\n        \"code\": 61880\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 399\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M274.286 621.714c0-50.286-41.143-91.429-91.429-91.429s-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429zM294.857 438.857h580.571l-50.857-204c-1.714-6.286-13.143-15.429-20-15.429h-438.857c-6.857 0-18.286 9.143-20 15.429zM1078.857 621.714c0-50.286-41.143-91.429-91.429-91.429s-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429zM1170.286 566.857v219.429c0 10.286-8 18.286-18.286 18.286h-54.857v73.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-73.143h-585.143v73.143c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-73.143h-54.857c-10.286 0-18.286-8-18.286-18.286v-219.429c0-70.857 57.143-128 128-128h16l60-239.429c17.714-72 87.429-126.286 161.714-126.286h438.857c74.286 0 144 54.286 161.714 126.286l60 239.429h16c70.857 0 128 57.143 128 128z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"automobile\",\n          \"car\"\n        ],\n        \"defaultCode\": 61881,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"automobile, car\",\n        \"id\": 400,\n        \"order\": 1256,\n        \"prevSize\": 28,\n        \"code\": 61881\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 400\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1042.286 512c70.857 0 128 57.143 128 128v219.429c0 10.286-8 18.286-18.286 18.286h-54.857v36.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-36.571h-585.143v36.571c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714v-36.571h-54.857c-10.286 0-18.286-8-18.286-18.286v-219.429c0-70.857 57.143-128 128-128h16l60-239.429c17.714-72 87.429-126.286 161.714-126.286h73.143v-128c0-10.286 8-18.286 18.286-18.286h256c10.286 0 18.286 8 18.286 18.286v128h73.143c74.286 0 144 54.286 161.714 126.286l60 239.429h16zM182.857 786.286c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM294.857 512h580.571l-50.857-204c-1.714-6.286-13.143-15.429-20-15.429h-438.857c-6.857 0-18.286 9.143-20 15.429zM987.429 786.286c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cab\",\n          \"taxi\"\n        ],\n        \"defaultCode\": 61882,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cab, taxi\",\n        \"id\": 401,\n        \"order\": 1257,\n        \"prevSize\": 28,\n        \"code\": 61882\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 401\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M859.429 841.143c0 20-16.571 36.571-36.571 36.571h-264c1.714 36.571 6.286 74.857 6.286 112 0 18.857-15.429 34.286-34.857 34.286h-182.857c-19.429 0-34.857-15.429-34.857-34.286 0-37.143 4.571-75.429 6.286-112h-264c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l229.714-230.286h-130.857c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l229.714-230.286h-112.571c-20 0-36.571-16.571-36.571-36.571 0-9.714 4-18.857 10.857-25.714l219.429-219.429c6.857-6.857 16-10.857 25.714-10.857s18.857 4 25.714 10.857l219.429 219.429c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-112.571l229.714 230.286c6.857 6.857 10.857 16 10.857 25.714 0 20-16.571 36.571-36.571 36.571h-130.857l229.714 230.286c6.857 6.857 10.857 16 10.857 25.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tree\"\n        ],\n        \"defaultCode\": 61883,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tree\",\n        \"id\": 402,\n        \"order\": 1258,\n        \"prevSize\": 28,\n        \"code\": 61883\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 402\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M644 691.429c0-16-6.286-22.286-17.143-29.143-73.714-44-159.429-65.714-255.429-65.714-56 0-109.714 7.429-164 19.429-13.143 2.857-24 11.429-24 29.714 0 14.286 10.857 28 28 28 5.143 0 14.286-2.857 21.143-4.571 44.571-9.143 91.429-15.429 138.857-15.429 84 0 163.429 20.571 226.857 58.857 6.857 4 11.429 6.286 18.857 6.286 14.286 0 26.857-11.429 26.857-27.429zM698.857 568.571c0-15.429-5.714-26.286-20-34.857-87.429-52-198.286-80.571-313.143-80.571-73.714 0-124 10.286-173.143 24-18.286 5.143-27.429 17.714-27.429 36.571s15.429 34.286 34.286 34.286c8 0 12.571-2.286 21.143-4.571 40-10.857 88-18.857 143.429-18.857 108.571 0 207.429 28.571 278.857 70.857 6.286 3.429 12.571 7.429 21.714 7.429 19.429 0 34.286-15.429 34.286-34.286zM760.571 426.857c0-21.143-9.143-32-22.857-40-98.857-57.714-234.286-84.571-363.429-84.571-76 0-145.714 8.571-208 26.857-16 4.571-30.857 18.286-30.857 42.286 0 23.429 17.714 41.714 41.143 41.714 8.571 0 16.571-2.857 22.857-4.571 55.429-15.429 115.429-21.143 175.429-21.143 118.857 0 242.286 26.286 321.714 73.714 8 4.571 13.714 6.857 22.857 6.857 21.714 0 41.143-17.143 41.143-41.143zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"spotify\"\n        ],\n        \"defaultCode\": 61884,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"spotify\",\n        \"id\": 403,\n        \"order\": 1259,\n        \"prevSize\": 28,\n        \"code\": 61884\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 403\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 173.143l-173.143 332.571 13.714 17.714h159.429v237.143h-289.714l-25.143 17.143-81.143 156c-0.571 0-16 16-17.143 17.143h-172v-173.143l173.143-333.143-13.714-17.143h-159.429v-237.143h289.714l25.143-17.143 81.143-156c0.571 0 16-16 17.143-17.143h172v173.143z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"deviantart\"\n        ],\n        \"defaultCode\": 61885,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"deviantart\",\n        \"id\": 404,\n        \"order\": 1260,\n        \"prevSize\": 28,\n        \"code\": 61885\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 404\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M448 784l9.143-137.714-9.143-298.857c-0.571-7.429-6.286-13.714-13.714-13.714-6.857 0-13.143 6.286-13.143 13.714l-8 298.857 8 137.714c0.571 7.429 6.286 13.143 13.143 13.143 7.429 0 13.143-5.714 13.714-13.143zM617.143 767.429l6.286-120.571-6.857-334.857c0-5.714-2.857-10.857-7.429-13.714-2.857-1.714-5.714-2.857-9.143-2.857s-6.286 1.143-9.143 2.857c-4.571 2.857-7.429 8-7.429 13.714l-0.571 3.429-5.714 330.857s0 0.571 6.286 134.857v0.571c0 3.429 1.143 6.857 3.429 9.714 3.429 4 8 6.286 13.143 6.286 4.571 0 8.571-2.286 11.429-5.143 3.429-2.857 5.143-6.857 5.143-11.429zM20 573.143l11.429 73.143-11.429 72c-0.571 2.857-2.286 5.143-5.143 5.143s-4.571-2.286-5.143-5.143l-9.714-72 9.714-73.143c0.571-2.857 2.286-5.143 5.143-5.143s4.571 2.286 5.143 5.143zM69.143 528l14.857 118.286-14.857 116c-0.571 2.857-2.857 5.143-5.714 5.143s-5.143-2.286-5.143-5.714l-13.143-115.429 13.143-118.286c0-2.857 2.286-5.143 5.143-5.143s5.143 2.286 5.714 5.143zM229.143 786.857v0 0zM121.714 506.286l14.286 140-14.286 135.429c0 3.429-2.857 6.286-6.286 6.286s-6.286-2.857-6.857-6.286l-12-135.429 12-140c0.571-4 3.429-6.857 6.857-6.857s6.286 2.857 6.286 6.857zM175.429 502.286l13.143 144-13.143 139.429c-0.571 4.571-4 7.429-8 7.429s-7.429-2.857-7.429-7.429l-12-139.429 12-144c0-4.571 3.429-7.429 7.429-7.429s7.429 2.857 8 7.429zM229.143 512.571l12 133.714-12 140.571c-0.571 5.143-4.571 9.143-9.143 9.143s-8.571-4-8.571-9.143l-11.429-140.571 11.429-133.714c0-4.571 4-8.571 8.571-8.571s8.571 4 9.143 8.571zM448 784v0 0zM282.857 429.143l12 217.143-12 140.571c0 5.714-4.571 10.286-9.714 10.286-5.714 0-9.714-4.571-10.286-10.286l-10.286-140.571 10.286-217.143c0.571-5.714 4.571-10.286 10.286-10.286 5.143 0 9.714 4.571 9.714 10.286zM336.571 380l10.857 267.429-10.857 139.429c0 6.286-5.143 10.857-10.857 10.857-6.286 0-10.857-4.571-11.429-10.857l-9.143-139.429 9.143-267.429c0.571-6.286 5.143-10.857 11.429-10.857 5.714 0 10.857 4.571 10.857 10.857zM392.571 357.143l10.286 289.143-10.286 138.286c-0.571 6.857-5.714 12-12.571 12-6.286 0-11.429-5.143-12-12l-9.143-138.286 9.143-289.143c0-6.857 5.714-12.571 12-12.571 6.857 0 12 5.714 12.571 12.571zM616.571 781.143v0 0 0 0 0 0zM503.429 354.857l8.571 291.429-8.571 136.571c0 8-6.286 14.286-14.286 14.286s-13.714-6.286-14.286-14.286l-8-136.571 8-291.429c0-8 6.286-14.286 14.286-14.286s14.286 6.286 14.286 14.286zM560 365.714l8 281.143-8 134.857c0 8.571-6.857 15.429-15.429 15.429s-15.429-6.857-16-15.429l-6.857-134.857 6.857-281.143c0.571-9.143 7.429-16 16-16s14.857 6.857 15.429 16zM681.143 646.857l-8 132c0 9.714-8 17.714-17.714 17.714s-17.714-8-18.286-17.714l-3.429-65.143-3.429-66.857 6.857-363.429v-1.714c0.571-5.143 2.857-10.286 6.857-13.714 2.857-2.286 6.857-4 11.429-4 2.857 0 6.286 1.143 8.571 2.857 5.143 2.857 8.571 8.571 9.143 14.857zM1316.571 636c0 89.143-72.571 161.143-161.714 161.143h-449.143c-9.714-1.143-17.714-8.571-17.714-18.857v-513.714c0-9.714 3.429-14.286 16-18.857 31.429-12.571 66.857-19.429 103.429-19.429 149.143 0 271.429 114.286 284.571 260 19.429-8 40.571-12.571 62.857-12.571 89.143 0 161.714 72.571 161.714 162.286z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"soundcloud\"\n        ],\n        \"defaultCode\": 61886,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"soundcloud\",\n        \"id\": 405,\n        \"order\": 1261,\n        \"prevSize\": 28,\n        \"code\": 61886\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 405\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 438.857c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 877.714c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 658.286c172 0 344.571-30.857 438.857-97.143v97.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-97.143c94.286 66.286 266.857 97.143 438.857 97.143zM438.857 0c242.286 0 438.857 65.714 438.857 146.286v73.143c0 80.571-196.571 146.286-438.857 146.286s-438.857-65.714-438.857-146.286v-73.143c0-80.571 196.571-146.286 438.857-146.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"database\"\n        ],\n        \"defaultCode\": 61888,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"database\",\n        \"id\": 406,\n        \"order\": 1262,\n        \"prevSize\": 28,\n        \"code\": 61888\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 406\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM510.857 612c14.286 11.429 30.286 21.714 48 32 24-2.857 46.286-4 66.857-4 38.286 0 86.857 4.571 101.143 28 4 5.714 7.429 16 1.143 29.714-0.571 0.571-1.143 1.714-1.714 2.286v0.571c-1.714 10.286-10.286 21.714-40.571 21.714-36.571 0-92-16.571-140-41.714-79.429 8.571-162.857 26.286-224 47.429-58.857 100.571-104 149.714-138.286 149.714-5.714 0-10.857-1.143-16-4l-13.714-6.857c-1.714-0.571-2.286-1.714-3.429-2.857-2.857-2.857-5.143-9.143-3.429-20.571 5.714-26.286 36.571-70.286 107.429-107.429 4.571-2.857 10.286-1.143 13.143 3.429 0.571 0.571 1.143 1.714 1.143 2.286 17.714-29.143 38.286-66.286 61.143-112.571 25.714-51.429 45.714-101.714 59.429-149.714-18.286-62.286-24-126.286-13.714-164 4-14.286 12.571-22.857 24-22.857h12.571c8.571 0 15.429 2.857 20 8.571 6.857 8 8.571 20.571 5.143 38.857-0.571 1.714-1.143 3.429-2.286 4.571 0.571 1.714 0.571 2.857 0.571 4.571v17.143c-0.571 36-1.143 70.286-8 109.714 20 60 49.714 108.571 83.429 136zM181.714 846.857c17.143-8 41.714-32.571 78.286-90.286-42.857 33.143-69.714 70.857-78.286 90.286zM409.143 321.143c-5.714 16-5.714 43.429-1.143 75.429 1.714-9.143 2.857-17.714 4-25.143 1.143-9.714 2.857-17.714 4-24.571 0.571-1.714 1.143-2.857 2.286-4.571-0.571-0.571-0.571-1.714-1.143-2.857-0.571-10.286-4-16.571-7.429-20.571 0 1.143-0.571 1.714-0.571 2.286zM338.286 698.857c50.286-20 106.286-36 162.286-46.286-5.714-4.571-11.429-8.571-16.571-13.143-28-24.571-53.143-58.857-72.571-100.571-10.857 34.857-26.857 72-47.429 112.571-8.571 16-17.143 32-25.714 47.429zM707.429 689.714c-2.857-2.857-17.714-13.714-80-13.714 28 10.286 53.714 16 70.857 16 5.143 0 8 0 10.286-0.571 0-0.571-0.571-1.143-1.143-1.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-pdf-o\"\n        ],\n        \"defaultCode\": 61889,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-pdf-o\",\n        \"id\": 407,\n        \"order\": 1263,\n        \"prevSize\": 28,\n        \"code\": 61889\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 407\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM133.143 438.857v61.143h40l93.714 377.714h90.857l73.143-277.143c2.857-8.571 4.571-17.143 5.714-26.286 0.571-4.571 1.143-9.143 1.143-13.714h2.286l1.714 13.714c1.714 8 2.286 17.143 5.143 26.286l73.143 277.143h90.857l93.714-377.714h40v-61.143h-171.429v61.143h51.429l-56.571 250.286c-2.286 9.143-3.429 18.857-4 26.286l-1.143 12h-2.286c0-3.429-1.143-8-1.714-12-1.714-7.429-2.857-17.143-5.143-26.286l-82.286-311.429h-65.143l-82.286 311.429c-2.286 9.143-2.857 18.857-4.571 26.286l-2.286 12h-2.286l-1.143-12c-0.571-7.429-1.714-17.143-4-26.286l-56.571-250.286h51.429v-61.143h-171.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-word-o\"\n        ],\n        \"defaultCode\": 61890,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-word-o\",\n        \"id\": 408,\n        \"order\": 1264,\n        \"prevSize\": 28,\n        \"code\": 61890\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 408\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM245.143 817.143v60.571h160.571v-60.571h-42.857l58.857-92c6.857-10.857 10.286-19.429 12-19.429h1.143c0.571 2.286 1.714 4 2.857 5.714 2.286 4.571 5.714 8 9.714 13.714l61.143 92h-43.429v60.571h166.286v-60.571h-38.857l-109.714-156 111.429-161.143h38.286v-61.143h-159.429v61.143h42.286l-58.857 90.857c-6.857 10.857-12 19.429-12 18.857h-1.143c-0.571-2.286-1.714-4-2.857-5.714-2.286-4-5.143-8-9.714-13.143l-60.571-90.857h43.429v-61.143h-165.714v61.143h38.857l108 155.429-110.857 161.714h-38.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-excel-o\"\n        ],\n        \"defaultCode\": 61891,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-excel-o\",\n        \"id\": 409,\n        \"order\": 1265,\n        \"prevSize\": 28,\n        \"code\": 61891\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 409\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM237.714 817.143v60.571h186.857v-60.571h-53.143v-95.429h78.286c24.571 0 46.857-1.143 67.429-8.571 51.429-17.714 83.429-70.857 83.429-133.143s-30.857-110.286-78.286-130.286c-21.714-8.571-48-10.857-74.286-10.857h-210.286v61.143h52.571v317.143h-52.571zM439.429 657.143h-68v-153.143h68.571c20 0 35.429 3.429 47.429 10.286 20.571 12 32 35.429 32 65.714 0 32-11.429 56.571-35.429 68.571-12 5.714-26.857 8.571-44.571 8.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-powerpoint-o\"\n        ],\n        \"defaultCode\": 61892,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-powerpoint-o\",\n        \"id\": 410,\n        \"order\": 1266,\n        \"prevSize\": 28,\n        \"code\": 61892\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 410\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM731.429 694.857v182.857h-585.143v-109.714l109.714-109.714 73.143 73.143 219.429-219.429zM256 585.143c-60.571 0-109.714-49.143-109.714-109.714s49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714-49.143 109.714-109.714 109.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-image-o\",\n          \"file-photo-o\",\n          \"file-picture-o\"\n        ],\n        \"defaultCode\": 61893,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-image-o, file-photo-o, file-picture-o\",\n        \"id\": 411,\n        \"order\": 1267,\n        \"prevSize\": 28,\n        \"code\": 61893\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 411\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 219.429v-73.143h-73.143v73.143h73.143zM438.857 292.571v-73.143h-73.143v73.143h73.143zM365.714 365.714v-73.143h-73.143v73.143h73.143zM438.857 438.857v-73.143h-73.143v73.143h73.143zM838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-73.143v73.143h-73.143v-73.143h-292.571v877.714h731.429zM446.286 538.857c48.571 164 61.143 199.429 61.143 199.429 2.857 9.714 4.571 19.429 4.571 29.714 0 63.429-61.714 109.714-146.286 109.714s-146.286-46.286-146.286-109.714c0-10.286 1.714-20 4.571-29.714 0 0 12-35.429 68.571-226.286v-73.143h73.143v73.143h45.143c16.571 0 30.857 10.857 35.429 26.857zM365.714 804.571c40.571 0 73.143-16.571 73.143-36.571s-32.571-36.571-73.143-36.571-73.143 16.571-73.143 36.571 32.571 36.571 73.143 36.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-archive-o\",\n          \"file-zip-o\"\n        ],\n        \"defaultCode\": 61894,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-archive-o, file-zip-o\",\n        \"id\": 412,\n        \"order\": 1268,\n        \"prevSize\": 28,\n        \"code\": 61894\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 412\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM354.286 485.714c6.857 2.857 11.429 9.714 11.429 17.143v310.857c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.143-1.714-13.143-5.143l-94.857-95.429h-74.857c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h74.857l94.857-95.429c5.714-5.143 13.143-6.857 20-4zM592.571 879.429c10.857 0 21.143-4.571 28.571-13.714 47.429-58.286 73.714-132 73.714-207.429s-26.286-149.143-73.714-207.429c-12.571-16-36-18.286-51.429-5.714-16 13.143-18.286 36-5.143 52 37.143 45.714 57.143 101.714 57.143 161.143s-20 115.429-57.143 161.143c-13.143 16-10.857 38.857 5.143 51.429 6.857 5.714 14.857 8.571 22.857 8.571zM472 794.857c9.714 0 19.429-4 26.857-11.429 32-34.286 49.714-78.286 49.714-125.143s-17.714-90.857-49.714-125.143c-13.714-14.857-37.143-15.429-52-1.714-14.286 13.714-15.429 37.143-1.143 52 18.857 20.571 29.714 46.857 29.714 74.857s-10.857 54.286-29.714 74.857c-14.286 14.857-13.143 38.286 1.143 52 7.429 6.286 16.571 9.714 25.143 9.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-audio-o\",\n          \"file-sound-o\"\n        ],\n        \"defaultCode\": 61895,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-audio-o, file-sound-o\",\n        \"id\": 413,\n        \"order\": 1269,\n        \"prevSize\": 28,\n        \"code\": 61895\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 413\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM438.857 438.857c40 0 73.143 33.143 73.143 73.143v219.429c0 40-33.143 73.143-73.143 73.143h-219.429c-40 0-73.143-33.143-73.143-73.143v-219.429c0-40 33.143-73.143 73.143-73.143h219.429zM720 440c6.857 2.857 11.429 9.714 11.429 17.143v329.143c0 7.429-4.571 14.286-11.429 17.143-2.286 0.571-4.571 1.143-6.857 1.143-4.571 0-9.714-1.714-13.143-5.143l-151.429-152v-51.429l151.429-152c3.429-3.429 8.571-5.143 13.143-5.143 2.286 0 4.571 0.571 6.857 1.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-movie-o\",\n          \"file-video-o\"\n        ],\n        \"defaultCode\": 61896,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-movie-o, file-video-o\",\n        \"id\": 414,\n        \"order\": 1270,\n        \"prevSize\": 28,\n        \"code\": 61896\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 414\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M838.857 217.143c21.143 21.143 38.857 63.429 38.857 93.714v658.286c0 30.286-24.571 54.857-54.857 54.857h-768c-30.286 0-54.857-24.571-54.857-54.857v-914.286c0-30.286 24.571-54.857 54.857-54.857h512c30.286 0 72.571 17.714 93.714 38.857zM585.143 77.714v214.857h214.857c-3.429-9.714-8.571-19.429-12.571-23.429l-178.857-178.857c-4-4-13.714-9.143-23.429-12.571zM804.571 950.857v-585.143h-237.714c-30.286 0-54.857-24.571-54.857-54.857v-237.714h-438.857v877.714h731.429zM274.286 438.857c6.286-8 17.714-9.714 25.714-3.429l29.143 21.714c8 6.286 9.714 17.714 3.429 25.714l-104 138.857 104 138.857c6.286 8 4.571 19.429-3.429 25.714l-29.143 21.714c-8 6.286-19.429 4.571-25.714-3.429l-129.143-172c-4.571-6.286-4.571-15.429 0-21.714zM732.571 610.857c4.571 6.286 4.571 15.429 0 21.714l-129.143 172c-6.286 8-17.714 9.714-25.714 3.429l-29.143-21.714c-8-6.286-9.714-17.714-3.429-25.714l104-138.857-104-138.857c-6.286-8-4.571-19.429 3.429-25.714l29.143-21.714c8-6.286 19.429-4.571 25.714 3.429zM378.286 874.286c-10.286-1.714-16.571-11.429-14.857-21.143l78.857-474.857c1.714-10.286 11.429-16.571 21.143-14.857l36 5.714c10.286 1.714 16.571 11.429 14.857 21.143l-78.857 474.857c-1.714 10.286-11.429 16.571-21.143 14.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file-code-o\"\n        ],\n        \"defaultCode\": 61897,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"file-code-o\",\n        \"id\": 415,\n        \"order\": 1271,\n        \"prevSize\": 28,\n        \"code\": 61897\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 415\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M855.429 472.571v113.143c-40 9.143-80 13.143-113.143 13.143-80 168-223.429 312-271.429 338.857-30.286 17.143-58.857 18.286-92.571-1.714-58.857-35.429-281.714-218.286-356-793.143h161.714c40.571 345.143 140 522.286 249.143 654.857 60.571-60.571 118.857-141.143 164-232-108-54.857-173.714-175.429-173.714-316 0-142.286 81.714-249.714 221.714-249.714 136 0 210.286 84.571 210.286 230.286 0 54.286-11.429 116-33.143 163.429 0 0-100.571 20-137.714-44.571 7.429-24.571 17.714-66.857 17.714-105.143 0-68-24.571-101.143-61.714-101.143-39.429 0-66.857 37.143-66.857 108.571 0 145.714 92.571 229.143 212.571 229.143 21.143 0 45.143-2.286 69.143-8z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vine\"\n        ],\n        \"defaultCode\": 61898,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"vine\",\n        \"id\": 416,\n        \"order\": 1272,\n        \"prevSize\": 28,\n        \"code\": 61898\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 416\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M123.429 668l344.571 229.714v-205.143l-190.857-127.429zM88 585.714l110.286-73.714-110.286-73.714v147.429zM556 897.714l344.571-229.714-153.714-102.857-190.857 127.429v205.143zM512 616l155.429-104-155.429-104-155.429 104zM277.143 458.857l190.857-127.429v-205.143l-344.571 229.714zM825.714 512l110.286 73.714v-147.429zM746.857 458.857l153.714-102.857-344.571-229.714v205.143zM1024 356v312c0 14.286-7.429 28.571-19.429 36.571l-468 312c-7.429 4.571-16 7.429-24.571 7.429s-17.143-2.857-24.571-7.429l-468-312c-12-8-19.429-22.286-19.429-36.571v-312c0-14.286 7.429-28.571 19.429-36.571l468-312c7.429-4.571 16-7.429 24.571-7.429s17.143 2.857 24.571 7.429l468 312c12 8 19.429 22.286 19.429 36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"codepen\"\n        ],\n        \"defaultCode\": 61899,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"codepen\",\n        \"id\": 417,\n        \"order\": 1273,\n        \"prevSize\": 28,\n        \"code\": 61899\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 417\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1028.571 441.143c82.857 34.286 141.714 115.429 141.714 209.714 0 125.143-103.429 226.857-230.286 226.857-4.571 0-8.571-0.571-12.571-0.571h-695.429c-128-7.429-232-105.143-232-232 0-85.143 46.286-159.429 115.429-200-4.571-14.857-6.857-30.286-6.857-46.857 0-87.429 71.429-158.286 160.571-158.286 36.571 0 70.857 12.571 98.286 33.143 56-115.429 174.857-195.429 313.714-195.429 192.571 0 348 153.714 348 342.857 0 6.857-0.571 13.714-0.571 20.571zM267.429 593.143c0 96.571 76 150.857 166.857 150.857 56 0 96.571-17.714 137.143-56.571-16.571-20.571-34.857-40.571-52-61.143-23.429 22.857-49.143 37.143-82.286 37.143-40.571 0-75.429-26.857-75.429-69.143 0-41.714 34.857-69.143 74.286-69.143 125.714 0 152.571 219.429 335.429 219.429 89.143 0 164.571-56 164.571-149.714 0-94.857-76-150.286-166.286-150.286-56 0-97.714 16-137.714 55.429 18.286 20 35.429 41.143 53.143 61.714 22.857-22.286 48.571-36.571 81.143-36.571 37.714 0 75.429 26.857 75.429 66.857 0 44-32 72-74.857 72-121.714 0-154.286-219.429-332.571-219.429-88.571 0-166.857 54.286-166.857 148.571z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"jsfiddle\"\n        ],\n        \"defaultCode\": 61900,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"jsfiddle\",\n        \"id\": 418,\n        \"order\": 1274,\n        \"prevSize\": 28,\n        \"code\": 61900\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 418\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM512 73.143c-74.286 0-144.571 18.857-206.286 51.429l110.857 110.857c30.286-10.286 62.286-16 95.429-16 33.714 0 65.143 5.714 95.429 16l110.857-110.857c-61.714-32.571-132-51.429-206.286-51.429zM124.571 718.286l110.857-110.857c-10.286-30.286-16-62.286-16-95.429 0-33.714 5.714-65.143 16-95.429l-110.857-110.857c-32.571 61.714-51.429 132-51.429 206.286s18.857 144.571 51.429 206.286zM512 950.857c74.286 0 144.571-18.857 206.286-51.429l-110.857-110.857c-30.286 10.286-61.714 16-95.429 16-33.143 0-65.143-5.714-95.429-16l-110.857 110.857c61.714 32.571 132 51.429 206.286 51.429zM512 731.429c121.143 0 219.429-98.286 219.429-219.429s-98.286-219.429-219.429-219.429-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429zM788.571 607.429l110.857 110.857c32.571-61.714 51.429-132 51.429-206.286s-18.857-144.571-51.429-206.286l-110.857 110.857c10.286 30.286 16 62.286 16 95.429s-5.714 65.143-16 95.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"life-bouy\",\n          \"life-buoy\",\n          \"life-ring\",\n          \"life-saver\",\n          \"support\"\n        ],\n        \"defaultCode\": 61901,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"life-bouy, life-buoy, life-ring, life-saver, support\",\n        \"id\": 419,\n        \"order\": 1275,\n        \"prevSize\": 28,\n        \"code\": 61901\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 419\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1005.714 512c0 272.571-221.143 493.714-493.714 493.714s-493.714-221.143-493.714-493.714c0-248 182.857-453.143 420.571-488.571v130.286c-166.857 33.714-292.571 181.714-292.571 358.286 0 201.714 164 365.714 365.714 365.714s365.714-164 365.714-365.714c0-176.571-125.714-324.571-292.571-358.286v-130.286c237.714 35.429 420.571 240.571 420.571 488.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"circle-o-notch\"\n        ],\n        \"defaultCode\": 61902,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"circle-o-notch\",\n        \"id\": 420,\n        \"order\": 1276,\n        \"prevSize\": 28,\n        \"code\": 61902\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 420\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M10.857 499.429c5.714-163.429 89.143-314.286 240.571-413.714 0.571 0 4-1.143 2.286 1.714-12 11.429-229.714 268-29.143 467.429 102.857 102.286 185.714 5.143 185.714 5.143 79.429-103.429-1.143-260-1.143-260-20.571-51.429-94.286-82.857-94.286-82.857l59.429-65.714c50.286 21.714 89.143 80 89.143 80 1.714-61.143-45.143-126.857-45.143-126.857l92-104.571 91.429 103.429c-42.286 59.429-45.143 129.143-45.143 129.143 28.571-47.429 89.714-81.143 89.714-81.143l58.857 65.714c-56.571 18.286-93.714 82.286-93.714 82.286-32.571 58.857-56 184.571 1.143 262.857 66.857 92 181.143-5.714 181.143-5.714 212-189.714-21.714-464.571-21.714-464.571-12.571-11.429 1.714-5.714 1.714-5.714 103.429 75.429 236.571 174.286 240 422.857 4 300.571-206.286 514.857-500.571 514.857-287.429 0-510.857-240-502.286-524.571z\"\n        ],\n        \"width\": 1019.9771428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ra\",\n          \"rebel\",\n          \"resistance\"\n        ],\n        \"defaultCode\": 61904,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ra, rebel, resistance\",\n        \"id\": 421,\n        \"order\": 1277,\n        \"prevSize\": 28,\n        \"code\": 61904\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 421\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M499.429 936v37.714c-161.143-4.571-302.286-91.429-381.714-220l33.143-19.429c12 20 26.286 38.857 41.714 56.571l37.143-32.571c53.714 61.143 126.857 104.571 210.286 121.143l-9.714 49.143c22.286 4 45.714 6.857 69.143 7.429zM157.714 633.143l-47.429 16c8 22.286 17.143 43.429 28 64l-32.571 18.857c-35.429-65.143-56-140.571-56-220s20.571-154.857 56-220l32.571 18.857c-10.857 20-20.571 41.714-28 64l46.857 16c-13.143 37.714-20 78.857-20 121.143s7.429 83.429 20.571 121.143zM873.143 734.286l33.143 19.429c-79.429 128.571-220.571 215.429-381.714 220v-37.714c23.429-0.571 46.857-3.429 69.143-7.429l-9.714-49.143c83.429-16.571 156.571-60 210.286-121.143l37.143 32.571c15.429-17.714 29.714-36.571 41.714-56.571zM786.857 417.714l-133.143 45.714c5.143 15.429 8 31.429 8 48.571s-2.857 33.143-8 48.571l132.571 45.714c-12 36-31.429 68.571-56 96.571l-105.714-92.571c-21.143 24.571-50.286 41.714-84 48.571l27.429 137.714c-17.714 3.429-36.571 5.714-56 5.714s-38.286-2.286-56-5.714l27.429-137.714c-33.714-6.857-62.857-24-84-48.571l-105.714 92.571c-24.571-28-44-60.571-56-96.571l132.571-45.714c-5.143-15.429-8-31.429-8-48.571s2.857-33.143 8-48.571l-133.143-45.714c12.571-36 32-68.571 56.571-96.571l105.714 92.571c21.143-24.571 50.286-42.286 84-49.143l-27.429-137.143c17.714-4 36.571-5.714 56-5.714s38.286 1.714 56 5.714l-27.429 137.143c33.714 6.857 62.857 24.571 84 49.143l105.714-92.571c24.571 28 44 60.571 56.571 96.571zM499.429 50.286v37.714c-23.429 0.571-46.857 2.857-69.143 7.429l9.714 49.143c-83.429 16-156.571 59.429-210.286 120.571l-37.143-32c-15.429 17.143-29.143 36-41.714 56l-32.571-18.857c79.429-129.143 220-215.429 381.143-220v0zM974.286 512c0 79.429-20.571 154.857-56 220l-32.571-18.857c10.857-20.571 20-41.714 28-64l-47.429-16c13.143-37.714 20.571-78.857 20.571-121.143s-6.857-83.429-20-121.143l46.857-16c-7.429-22.286-17.143-44-28-64l32.571-18.857c35.429 65.143 56 140.571 56 220zM905.714 270.286l-32.571 18.857c-12.571-20-26.286-38.857-41.714-56l-37.143 32c-53.714-61.143-126.857-104.571-210.286-120.571l9.714-49.143c-22.286-4.571-45.714-6.857-69.143-7.429v-37.714c161.143 4.571 301.714 90.857 381.143 220zM998.857 512c0-268.571-218.286-486.857-486.857-486.857v0c-268.571 0-486.857 218.286-486.857 486.857s218.286 486.857 486.857 486.857 486.857-218.286 486.857-486.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"empire\",\n          \"ge\"\n        ],\n        \"defaultCode\": 61905,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"empire, ge\",\n        \"id\": 422,\n        \"order\": 1278,\n        \"prevSize\": 28,\n        \"code\": 61905\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 422\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M332.571 747.429c0 30.857-28 37.714-53.143 37.714-24.571 0-61.143-4-61.143-36 0-31.429 30.857-36.571 56-36.571 24 0 58.286 4 58.286 34.857zM312 481.143c0 28.571-11.429 48.571-42.286 48.571-31.429 0-44-18.286-44-48s11.429-51.429 44-51.429c29.143 0 42.286 24 42.286 50.857zM406.857 438.286v-71.429c-24.571 9.143-50.857 16.571-77.143 16.571-18.857-10.857-40.571-16.571-62.857-16.571-65.143 0-116.571 48-116.571 114.286 0 35.429 23.429 84.571 58.857 96.571v1.714c-18.286 8-21.714 30.286-21.714 48.571 0 18.857 6.857 34.286 23.429 44v1.714c-38.857 12.571-64.571 37.143-64.571 79.429 0 72.571 69.143 93.143 129.714 93.143 73.143 0 128-26.857 128-107.429 0-57.143-52-74.286-99.429-82.857-16-2.857-43.429-14.286-43.429-34.286 0-18.857 10.286-26.857 28-29.714 58.286-11.429 95.429-56.571 95.429-116.571 0-10.286-2.286-20-5.714-29.714 9.143-2.286 18.857-4.571 28-7.429zM440.571 677.714h78.286c-1.143-15.429-1.143-31.429-1.143-46.857v-221.143c0-13.143 0-26.286 1.143-39.429h-78.286c1.714 13.143 1.714 27.429 1.714 40.571v224c0 14.286 0 28.571-1.714 42.857zM731.429 668.571v-69.143c-11.429 8-25.143 12-38.857 12-25.714 0-30.286-25.714-30.286-46.857v-128.571h29.714c10.286 0 20 1.143 30.286 1.143v-66.857h-60c0-19.429-1.143-38.857 1.714-58.286h-80c1.714 10.286 2.286 20.571 2.286 31.429v26.857h-34.286v66.857c6.857-0.571 13.714-1.714 21.143-1.714 4 0 8.571 0.571 13.143 0.571v1.143h-1.143v124c0 61.714 9.143 121.143 84.571 121.143 21.143 0 42.857-3.429 61.714-13.714zM528 265.143c0-26.857-20-52-48-52s-48.571 24.571-48.571 52c0 26.857 21.143 50.857 48.571 50.857s48-24.571 48-50.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"git-square\"\n        ],\n        \"defaultCode\": 61906,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"git-square\",\n        \"id\": 423,\n        \"order\": 1279,\n        \"prevSize\": 28,\n        \"code\": 61906\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 423\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M340 865.143c0-50.286-55.429-57.143-94.286-57.143-40.571 0-90.286 8.571-90.286 59.429 0 51.429 58.857 57.714 98.286 57.714 41.714 0 86.286-10.286 86.286-60zM306.286 433.714c0-42.857-20.571-81.714-68-81.714-52.571 0-70.857 34.857-70.857 82.857 0 47.429 20.571 77.143 70.857 77.143 49.714 0 68-32 68-78.286zM460 248.571v115.429c-14.857 5.143-29.714 9.143-45.143 12.571 5.714 15.429 9.143 31.429 9.143 48 0 96.571-59.429 170.286-154.286 188-28.571 5.714-45.143 17.714-45.143 48.571 0 87.429 230.857 28 230.857 189.143 0 130.857-88.571 173.714-207.429 173.714-97.714 0-209.143-32.571-209.143-150.286 0-68.571 41.714-108 104-128.571v-2.286c-26.286-16-38.286-41.143-38.286-72 0-29.143 6.286-65.143 36-78.286v-2.286c-57.714-19.429-95.429-98.857-95.429-156.571 0-106.857 82.857-185.143 188.571-185.143 35.429 0 70.857 9.143 101.714 26.857 42.857 0 85.143-11.429 124.571-26.857zM641.714 752h-126.857c2.286-25.714 2.286-50.857 2.286-76.571v-348c0-24.571 0.571-49.143-2.286-73.143h126.857c-2.857 23.429-2.286 47.429-2.286 70.857v350.286c0 25.714 0 50.857 2.286 76.571zM985.143 625.143v112c-30.286 16.571-65.143 22.286-99.429 22.286-122.286 0-136.571-96.571-136.571-196v-200.571h1.143v-2.286c-7.429 0-14.286-1.143-21.143-1.143-11.429 0-22.857 1.714-33.714 3.429v-108.571h54.857v-43.429c0-17.143-0.571-34.286-3.429-50.857h129.714c-4.571 31.429-3.429 62.857-3.429 94.286h97.714v108.571c-16.571 0-33.143-2.286-49.143-2.286h-48.571v208.571c0 33.714 7.429 74.857 49.714 74.857 22.286 0 44-6.286 62.286-18.857zM656 84c0 42.857-33.143 82.857-77.143 82.857-45.143 0-78.857-39.429-78.857-82.857 0-44 33.143-84 78.857-84 45.143 0 77.143 41.143 77.143 84z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"git\"\n        ],\n        \"defaultCode\": 61907,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"git\",\n        \"id\": 424,\n        \"order\": 1280,\n        \"prevSize\": 28,\n        \"code\": 61907\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 424\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M462.286 573.714l152-285.143h-64l-89.714 178.286s-13.714 27.429-25.143 52.571c-10.857-26.286-24-52.571-24-52.571l-88.571-178.286h-68.571l150.286 281.714v185.143h57.714v-181.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hacker-news\",\n          \"y-combinator-square\",\n          \"yc-square\"\n        ],\n        \"defaultCode\": 61908,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hacker-news, y-combinator-square, yc-square\",\n        \"id\": 425,\n        \"order\": 1281,\n        \"prevSize\": 28,\n        \"code\": 61908\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 425\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M481.143 326.857c0 60.571-49.714 110.286-110.286 110.286-23.429 0-45.143-7.429-63.429-20-20.571 22.286-43.429 50.286-65.714 83.429-93.143 140-132.571 305.143-115.429 490.857 1.143 16.571-10.857 30.857-26.857 32.571h-2.857c-14.857 0-28-11.429-29.714-26.857-22.286-250.286 57.143-427.429 127.429-532 25.714-38.286 51.429-69.143 75.429-94.286-6.286-13.714-9.143-28.571-9.143-44 0-61.143 49.143-110.286 110.286-110.286 60.571 0 110.286 49.143 110.286 110.286zM698.857 333.143c0 183.429-149.143 332.571-333.143 332.571-25.143 0-50.286-2.857-74.857-8-16-4-25.714-20-22.286-36 4-15.429 19.429-25.714 35.429-22.286 20 5.143 41.143 7.429 61.714 7.429 150.857 0 273.714-122.857 273.714-273.714s-122.857-273.714-273.714-273.714-273.714 122.857-273.714 273.714c0 44 10.286 85.714 29.714 124.571 7.429 14.857 1.714 32.571-12.571 40-14.857 7.429-32.571 1.714-40-13.143-24-46.286-36.571-98.857-36.571-151.429 0-184 149.714-333.143 333.143-333.143 184 0 333.143 149.143 333.143 333.143z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tencent-weibo\"\n        ],\n        \"defaultCode\": 61909,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tencent-weibo\",\n        \"id\": 426,\n        \"order\": 1282,\n        \"prevSize\": 28,\n        \"code\": 61909\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 426\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M154.286 460.571c-4-9.714-4.571-19.429-4.571-29.714 0-16 10.286-41.714 20-53.714-0.571-14.857 5.714-45.143 17.143-54.857 0-105.714 81.714-238.857 177.143-284.571 58.857-28 120.571-37.714 185.143-37.714 50.286 0 105.143 12 152 31.429 134.286 56.571 164.571 161.714 193.143 296l0.571 2.857c16.571 25.143 31.429 54.857 31.429 85.714 0 15.429-10.286 30.857-10.286 44.571 0 1.143 3.429 5.714 4 6.857 49.143 72.571 93.714 151.429 93.714 241.714 0 20-10.857 89.714-42.857 89.714-22.286 0-46.857-54.286-54.857-69.143-0.571-0.571-1.143-0.571-1.714-0.571l-2.857 2.286c-18.286 47.429-38.286 92-75.429 127.429 32.571 31.429 85.143 28.571 94.857 82.857-2.857 6.286-1.714 13.143-6.286 19.429-32.571 49.143-120 55.429-172.571 55.429-69.714 0-126.286-18.286-192-37.714-13.714-4-34.286-1.714-49.143-3.429-34.857 38.286-120 48.571-169.143 48.571-43.429 0-211.429-2.857-211.429-77.143 0-32 6.857-41.143 29.143-61.714 17.714-3.429 30.857-13.143 51.429-14.286 2.857 0 5.143-0.571 8-1.143 0.571-0.571 1.143-0.571 1.143-2.286l-1.143-1.714c-39.429-9.143-94.857-108.571-103.429-149.714l-2.857-1.714c-4 0-5.714 8.571-6.857 11.429-12.571 29.143-42.286 60.571-75.429 64h-0.571c-4.571 0-2.857-4.571-6.286-5.714-8-18.857-13.143-36-13.143-57.143 0-114.286 54.857-198.857 144-266.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"qq\"\n        ],\n        \"defaultCode\": 61910,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"qq\",\n        \"id\": 427,\n        \"order\": 1283,\n        \"prevSize\": 28,\n        \"code\": 61910\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 427\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M331.429 263.429c0-31.429-20.571-52-52-52-30.857 0-62.286 20.571-62.286 52 0 30.857 31.429 51.429 62.286 51.429 31.429 0 52-20.571 52-51.429zM756 553.143c0-20.571-20.571-41.143-52-41.143-20.571 0-41.143 20.571-41.143 41.143 0 21.143 20.571 41.714 41.143 41.714 31.429 0 52-20.571 52-41.714zM621.143 263.429c0-31.429-20.571-52-51.429-52-31.429 0-62.286 20.571-62.286 52 0 30.857 30.857 51.429 62.286 51.429 30.857 0 51.429-20.571 51.429-51.429zM984 553.143c0-20.571-21.143-41.143-52-41.143-20.571 0-41.143 20.571-41.143 41.143 0 21.143 20.571 41.714 41.143 41.714 30.857 0 52-20.571 52-41.714zM832 326.286c-13.143-1.714-26.286-2.286-40-2.286-196.571 0-352 146.857-352 327.429 0 30.286 4.571 59.429 13.143 86.857-13.143 1.143-25.714 1.714-38.857 1.714-52 0-93.143-10.286-145.143-20.571l-144.571 72.571 41.143-124.571c-103.429-72.571-165.714-166.286-165.714-280 0-197.143 186.286-352 414.286-352 203.429 0 382.286 124 417.714 290.857zM1170.286 646.857c0 93.143-61.714 176-145.143 238.286l31.429 103.429-113.714-62.286c-41.714 10.286-83.429 21.143-124.571 21.143-197.143 0-352-134.857-352-300.571s154.857-300.571 352-300.571c186.286 0 352 134.857 352 300.571z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wechat\",\n          \"weixin\"\n        ],\n        \"defaultCode\": 61911,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wechat, weixin\",\n        \"id\": 428,\n        \"order\": 1284,\n        \"prevSize\": 28,\n        \"code\": 61911\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 428\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1008 6.286c12 8.571 17.714 22.286 15.429 36.571l-146.286 877.714c-1.714 10.857-8.571 20-18.286 25.714-5.143 2.857-11.429 4.571-17.714 4.571-4.571 0-9.143-1.143-13.714-2.857l-258.857-105.714-138.286 168.571c-6.857 8.571-17.143 13.143-28 13.143-4 0-8.571-0.571-12.571-2.286-14.286-5.143-24-18.857-24-34.286v-199.429l493.714-605.143-610.857 528.571-225.714-92.571c-13.143-5.143-21.714-17.143-22.857-31.429-0.571-13.714 6.286-26.857 18.286-33.714l950.857-548.571c5.714-3.429 12-5.143 18.286-5.143 7.429 0 14.857 2.286 20.571 6.286z\"\n        ],\n        \"width\": 1025.1702857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"paper-plane\",\n          \"send\"\n        ],\n        \"defaultCode\": 61912,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"paper-plane, send\",\n        \"id\": 429,\n        \"order\": 1285,\n        \"prevSize\": 28,\n        \"code\": 61912\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 429\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1008 6.286c12 8.571 17.714 22.286 15.429 36.571l-146.286 877.714c-1.714 10.857-8.571 20-18.286 25.714-5.143 2.857-11.429 4.571-17.714 4.571-4.571 0-9.143-1.143-13.714-2.857l-301.143-122.857-170.286 186.857c-6.857 8-16.571 12-26.857 12-4.571 0-9.143-0.571-13.143-2.286-14.286-5.714-23.429-19.429-23.429-34.286v-258.286l-269.714-110.286c-13.143-5.143-21.714-17.143-22.857-31.429-1.143-13.714 6.286-26.857 18.286-33.714l950.857-548.571c12-7.429 27.429-6.857 38.857 1.143zM812.571 862.857l126.286-756-819.429 472.571 192 78.286 493.143-365.143-273.143 455.429z\"\n        ],\n        \"width\": 1024.5851428571427,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"paper-plane-o\",\n          \"send-o\"\n        ],\n        \"defaultCode\": 61913,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"paper-plane-o, send-o\",\n        \"id\": 430,\n        \"order\": 1286,\n        \"prevSize\": 28,\n        \"code\": 61913\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 430\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 512c0 241.714-197.143 438.857-438.857 438.857-130.857 0-254.286-57.714-337.714-158.286-5.714-7.429-5.143-18.286 1.143-24.571l78.286-78.857c4-3.429 9.143-5.143 14.286-5.143 5.143 0.571 10.286 2.857 13.143 6.857 56 72.571 140 113.714 230.857 113.714 161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571c-74.857 0-145.714 28.571-198.857 78.286l78.286 78.857c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-256c-20 0-36.571-16.571-36.571-36.571v-256c0-14.857 9.143-28 22.857-33.714 13.143-5.714 29.143-2.857 39.429 8l74.286 73.714c80.571-76 189.714-121.143 302.286-121.143 241.714 0 438.857 197.143 438.857 438.857zM512 347.429v256c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-201.143c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"history\"\n        ],\n        \"defaultCode\": 61914,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"history\",\n        \"id\": 431,\n        \"order\": 1287,\n        \"prevSize\": 28,\n        \"code\": 61914\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 431\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"circle-thin\"\n        ],\n        \"defaultCode\": 61915,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"circle-thin\",\n        \"id\": 432,\n        \"order\": 1288,\n        \"prevSize\": 28,\n        \"code\": 61915\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 432\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M961.143 950.857c-50.286 0-101.143-4-152-4-50.286 0-100.571 4-150.857 4-19.429 0-28.571-21.143-28.571-37.714 0-50.857 57.143-29.143 86.857-48.571 18.857-12 18.857-60 18.857-80l-0.571-223.429c0-6.286 0-12-0.571-17.714-9.143-2.857-19.429-2.286-28.571-2.286h-385.714c-9.714 0-20-0.571-29.143 2.286-0.571 5.714-0.571 11.429-0.571 17.714l-0.571 212c0 21.714 0 81.143 21.143 93.714 29.714 18.286 97.143-7.429 97.143 44 0 17.143-8 40-28 40-53.143 0-106.286-4-158.857-4-48.571 0-97.143 4-145.714 4-18.857 0-27.429-21.714-27.429-37.714 0-49.714 52.571-29.143 80.571-48.571 18.286-12.571 18.857-61.714 18.857-81.714l-0.571-32.571v-464.571c0-27.429 4-115.429-21.714-130.857-28.571-17.714-89.714 9.714-89.714-41.714 0-16.571 7.429-40 27.429-40 52.571 0 105.714 4 158.286 4 48 0 96.571-4 144.571-4 20.571 0 28.571 22.857 28.571 40 0 49.143-56.571 25.143-84.571 42.857-20 12-20 70.857-20 91.429l0.571 182.857c0 6.286 0 12 0.571 18.286 7.429 1.714 14.857 1.714 22.286 1.714h399.429c6.857 0 14.286 0 21.714-1.714 0.571-6.286 0.571-12 0.571-18.286l0.571-182.857c0-21.143 0-79.429-20-91.429-28.571-17.143-85.714 5.714-85.714-42.857 0-17.143 8-40 28.571-40 50.286 0 100.571 4 150.857 4 49.143 0 98.286-4 147.429-4 20.571 0 28.571 22.857 28.571 40 0 49.714-58.857 24.571-87.429 42.286-19.429 12.571-20 71.429-20 92l0.571 538.857c0 18.857 1.143 68.571 19.429 80 29.143 18.286 90.857-5.143 90.857 44.571 0 16.571-7.429 40-27.429 40z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"header\"\n        ],\n        \"defaultCode\": 61916,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"header\",\n        \"id\": 433,\n        \"order\": 1289,\n        \"prevSize\": 28,\n        \"code\": 61916\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 433\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M730.286 108v41.714c0 19.429-15.429 53.143-34.857 53.143-9.714 0-21.143-1.714-30.857 0.571-9.143 2.286-16 8.571-18.286 17.714-2.857 10.857-1.714 24.571-1.714 36.571v658.286c0 19.429-15.429 34.857-34.857 34.857h-61.714c-19.429 0-34.857-15.429-34.857-34.857v-696h-81.714v696c0 19.429-15.429 34.857-34.857 34.857h-61.714c-19.429 0-34.857-15.429-34.857-34.857v-283.429c-55.429-4.571-102.857-16-140-33.714-48-22.286-84.571-56.571-109.714-102.286-24-44-36.571-93.714-36.571-148 0-63.429 17.143-118.286 50.286-163.429 33.714-45.143 73.714-75.429 119.429-90.857 42.857-14.286 133.143-21.143 238.286-21.143h273.714c19.429 0 34.857 15.429 34.857 34.857z\"\n        ],\n        \"width\": 744.0091428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"paragraph\"\n        ],\n        \"defaultCode\": 61917,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"paragraph\",\n        \"id\": 434,\n        \"order\": 1290,\n        \"prevSize\": 28,\n        \"code\": 61917\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 434\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M201.143 804.571v73.143h-201.143v-73.143h201.143zM402.286 731.429c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM493.714 512v73.143h-493.714v-73.143h493.714zM128 219.429v73.143h-128v-73.143h128zM877.714 804.571v73.143h-420.571v-73.143h420.571zM329.143 146.286c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM694.857 438.857c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h146.286zM877.714 512v73.143h-128v-73.143h128zM877.714 219.429v73.143h-493.714v-73.143h493.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sliders\"\n        ],\n        \"defaultCode\": 61918,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sliders\",\n        \"id\": 435,\n        \"order\": 1291,\n        \"prevSize\": 28,\n        \"code\": 61918\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 435\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M694.857 585.143c101.143 0 182.857 81.714 182.857 182.857s-81.714 182.857-182.857 182.857-182.857-81.714-182.857-182.857c0-6.286 0.571-13.143 1.143-19.429l-205.714-102.857c-32.571 30.286-76.571 49.143-124.571 49.143-101.143 0-182.857-81.714-182.857-182.857s81.714-182.857 182.857-182.857c48 0 92 18.857 124.571 49.143l205.714-102.857c-0.571-6.286-1.143-13.143-1.143-19.429 0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857-81.714 182.857-182.857 182.857c-48 0-92-18.857-124.571-49.143l-205.714 102.857c0.571 6.286 1.143 13.143 1.143 19.429s-0.571 13.143-1.143 19.429l205.714 102.857c32.571-30.286 76.571-49.143 124.571-49.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"share-alt\"\n        ],\n        \"defaultCode\": 61920,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"share-alt\",\n        \"id\": 436,\n        \"order\": 1292,\n        \"prevSize\": 28,\n        \"code\": 61920\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 436\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 682.857c0-67.429-54.857-122.286-121.714-122.286-32 0-61.143 12.571-82.857 33.143l-137.714-68.571c0.571-4.571 1.143-8.571 1.143-13.143s-0.571-8.571-1.143-13.143l137.714-68.571c21.714 20.571 50.857 33.143 82.857 33.143 66.857 0 121.714-54.857 121.714-122.286 0-66.857-54.857-121.714-121.714-121.714-67.429 0-122.286 54.857-122.286 121.714 0 4.571 0.571 8.571 1.143 13.143l-137.714 68.571c-21.714-20-50.857-32.571-82.857-32.571-66.857 0-121.714 54.286-121.714 121.714s54.857 121.714 121.714 121.714c32 0 61.143-12.571 82.857-32.571l137.714 68.571c-0.571 4.571-1.143 8.571-1.143 13.143 0 66.857 54.857 121.714 122.286 121.714 66.857 0 121.714-54.857 121.714-121.714zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"share-alt-square\"\n        ],\n        \"defaultCode\": 61921,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"share-alt-square\",\n        \"id\": 437,\n        \"order\": 1293,\n        \"prevSize\": 28,\n        \"code\": 61921\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 437\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M326.286 336.571c-7.429-18.857-28.571-27.429-47.429-20-82.286 33.143-148.571 99.429-181.714 181.714-7.429 18.857 1.143 40 20 47.429 4.571 1.714 9.143 2.857 13.714 2.857 14.857 0 28-8.571 34.286-22.857 25.714-64 77.143-115.429 141.143-141.143 18.857-8 28-29.143 20-48zM864.571 133.143l26.286 26.286-139.429 138.857 38.857 38.857c14.286 14.286 14.286 37.714 0 52l-36.571 36.571c32 57.714 50.857 124.571 50.857 196 0 222.286-180 402.286-402.286 402.286s-402.286-180-402.286-402.286 180-402.286 402.286-402.286c71.429 0 138.286 18.857 196 50.857l36.571-36.571c14.286-14.286 37.714-14.286 52 0l38.857 38.857zM869.143 101.143c-3.429 3.429-8 5.714-12.571 5.714-5.143 0-9.714-2.286-13.143-5.714l-52-51.429c-6.857-7.429-6.857-18.857 0-26.286 7.429-6.857 18.857-6.857 26.286 0l51.429 52c7.429 6.857 7.429 18.857 0 25.714zM1000.571 232.571c-4 3.429-8.571 5.143-13.143 5.143s-9.143-1.714-13.143-5.143l-51.429-52c-7.429-6.857-7.429-18.857 0-25.714 6.857-7.429 18.857-7.429 25.714 0l52 51.429c6.857 7.429 6.857 18.857 0 26.286zM1024 128c0 10.286-8 18.286-18.286 18.286h-54.857c-10.286 0-18.286-8-18.286-18.286s8-18.286 18.286-18.286h54.857c10.286 0 18.286 8 18.286 18.286zM914.286 18.286v54.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286v-54.857c0-10.286 8-18.286 18.286-18.286s18.286 8 18.286 18.286zM1000.571 49.714l-52 51.429c-3.429 3.429-8 5.714-12.571 5.714-5.143 0-9.714-2.286-13.143-5.714-7.429-6.857-7.429-18.857 0-25.714l51.429-52c7.429-6.857 18.857-6.857 26.286 0 6.857 7.429 6.857 18.857 0 26.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bomb\"\n        ],\n        \"defaultCode\": 61922,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bomb\",\n        \"id\": 438,\n        \"order\": 1294,\n        \"prevSize\": 28,\n        \"code\": 61922\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 438\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M348 466.286l164-118.857 164 118.857-62.286 192h-202.857zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM865.714 771.429c53.714-73.143 85.143-162.286 85.143-259.429v-1.714l-58.286 50.857-137.143-128 36-184.571 76.571 6.857c-54.286-74.857-132-132.571-222.286-161.143l30.286 70.857-164 90.857-164-90.857 30.286-70.857c-90.286 28.571-168 86.286-222.286 161.143l77.143-6.857 35.429 184.571-137.143 128-58.286-50.857v1.714c0 97.143 31.429 186.286 85.143 259.429l17.143-75.429 186.286 22.857 79.429 170.286-66.286 39.429c42.857 14.286 89.143 22.286 137.143 22.286s94.286-8 137.143-22.286l-66.286-39.429 79.429-170.286 186.286-22.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"futbol-o\",\n          \"soccer-ball-o\"\n        ],\n        \"defaultCode\": 61923,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"futbol-o, soccer-ball-o\",\n        \"id\": 439,\n        \"order\": 1295,\n        \"prevSize\": 28,\n        \"code\": 61923\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 439\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM146.286 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM475.429 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM365.714 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM37.714 438.857c-21.143 0-37.714-16.571-37.714-37.143v-73.714h293.714v73.714c0 20.571-16.571 37.143-37.143 37.143h-218.857zM694.857 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM585.143 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM914.286 749.714v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM804.571 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 297.143v7.429h-293.714v-5.714c0-21.143-18.286-59.429-218.286-58.286-200 0.571-218.286 37.143-218.286 58.286v5.714h-293.714v-7.429c0-38.286 68.571-224 512-224 442.857 0 512 185.714 512 224zM1024 530.286v109.714c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-109.714c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 328v73.714c0 20.571-16.571 37.143-37.143 37.143h-219.429c-20.571 0-37.143-16.571-37.143-37.143v-73.714h293.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tty\"\n        ],\n        \"defaultCode\": 61924,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tty\",\n        \"id\": 440,\n        \"order\": 1296,\n        \"prevSize\": 28,\n        \"code\": 61924\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 440\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 182.857v438.857c0 20-16.571 36.571-36.571 36.571v0 329.143c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-292.571l142.286-498.857c2.286-8 9.714-13.143 17.714-13.143h242.286zM585.143 182.857v402.286h-146.286v-402.286h146.286zM1024 694.857v292.571c0 20-16.571 36.571-36.571 36.571h-292.571c-20 0-36.571-16.571-36.571-36.571v-329.143c-20 0-36.571-16.571-36.571-36.571v-438.857h242.286c8 0 15.429 5.143 17.714 13.143zM420.571 18.286v128h-201.143v-128c0-10.286 8-18.286 18.286-18.286h164.571c10.286 0 18.286 8 18.286 18.286zM804.571 18.286v128h-201.143v-128c0-10.286 8-18.286 18.286-18.286h164.571c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"binoculars\"\n        ],\n        \"defaultCode\": 61925,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"binoculars\",\n        \"id\": 441,\n        \"order\": 1297,\n        \"prevSize\": 28,\n        \"code\": 61925\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 441\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1002.857 258.857c28 28.571 28 74.857 0 103.429l-229.143 228.571 85.714 85.714-91.429 91.429c-125.143 125.143-316 142.857-457.714 49.143l-206.857 206.857h-103.429v-103.429l206.857-206.857c-93.714-141.714-76-332.571 49.143-457.714l91.429-91.429 85.714 85.714 228.571-229.143c28.571-28 74.857-28 103.429 0 28.571 28.571 28.571 75.429 0 103.429l-228.571 229.143 133.714 133.714 229.143-228.571c28.571-28.571 74.857-28.571 103.429 0z\"\n        ],\n        \"width\": 1030.8754285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"plug\"\n        ],\n        \"defaultCode\": 61926,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"plug\",\n        \"id\": 442,\n        \"order\": 1298,\n        \"prevSize\": 28,\n        \"code\": 61926\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 442\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M498.857 422.857c0 63.429-55.429 115.429-123.429 115.429s-123.429-52-123.429-115.429c0-64 55.429-115.429 123.429-115.429s123.429 51.429 123.429 115.429zM785.714 422.857c0 63.429-54.857 115.429-123.429 115.429-68 0-123.429-52-123.429-115.429 0-64 55.429-115.429 123.429-115.429 68.571 0 123.429 51.429 123.429 115.429zM914.286 525.714v-381.143c0-65.714-21.143-91.429-81.714-91.429h-635.429c-63.429 0-81.143 21.714-81.143 91.429v384.571c135.429 70.857 251.429 58.286 314.857 56 26.857-0.571 44 4.571 54.286 15.429 1.714 1.714 3.429 3.429 5.714 5.143 12 11.429 23.429 20.571 34.857 29.143 2.286-31.429 20-51.429 67.429-49.714 64.571 2.857 183.429 15.429 321.143-59.429zM1007.429 522.857c-36.571 45.143-106.286 100.571-212.571 144 112.571 383.429-274.857 444.571-268.571 248 0 3.429-0.571-105.714-0.571-186.857-8.571-1.714-17.143-4-27.429-6.286 0 81.714-0.571 196.571-0.571 193.143 6.286 196.571-381.143 135.429-268.571-248-106.286-43.429-176-98.857-212.571-144-18.286-27.429 1.714-56.571 32-35.429 4 2.857 8.571 5.714 12.571 8.571v-396.571c0-54.857 41.143-99.429 92-99.429h718.286c50.857 0 92 44.571 92 99.429v396.571l12-8.571c30.286-21.143 50.286 8 32 35.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"slideshare\"\n        ],\n        \"defaultCode\": 61927,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"slideshare\",\n        \"id\": 443,\n        \"order\": 1299,\n        \"prevSize\": 28,\n        \"code\": 61927\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 443\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 248v248h-82.857v-248h82.857zM739.429 248v248h-82.857v-248h82.857zM739.429 682.286l144.571-145.143v-454.286h-682.286v599.429h186.286v124l124-124h227.429zM966.857 0v578.857l-248 248h-186.286l-124 124h-124v-124h-227.429v-661.714l62.286-165.143h847.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"twitch\"\n        ],\n        \"defaultCode\": 61928,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"twitch\",\n        \"id\": 444,\n        \"order\": 1300,\n        \"prevSize\": 28,\n        \"code\": 61928\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 444\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M441.714 753.714v72.571c-0.571 161.143-0.571 166.857-3.429 174.286-4.571 12-14.857 20-29.143 22.857-41.143 6.857-169.714-40.571-196.571-72.571-5.714-6.286-8.571-13.714-9.714-20.571-0.571-5.143 0.571-10.286 2.286-14.857 2.857-8 8-14.286 122.857-150.286 0 0 0.571 0 34.286-40 11.429-14.286 32-18.857 50.857-12 18.857 7.429 29.143 23.429 28.571 40.571zM356.571 610.286c-1.143 20-12.571 34.857-29.714 40l-68.571 22.286c-153.714 49.143-158.857 50.286-166.857 50.286-12.571-0.571-24-8-30.857-20.571-4.571-9.143-8-24.571-9.714-42.857-6.286-56 1.143-140 17.714-166.286 8-12.571 19.429-18.857 32-18.286 8.571 0 15.429 3.429 181.143 70.857 0 0-0.571 0.571 48 19.429 17.143 6.857 28 24.571 26.857 45.143zM828.571 780c-5.714 41.143-90.857 149.143-129.714 164.571-13.143 5.143-26.286 4-36-4-6.857-5.143-13.714-15.429-105.143-164l-26.857-44c-10.286-16-8.571-36.571 4.571-52.571 12.571-15.429 30.857-20.571 47.429-14.857 0 0 0.571 0.571 68 22.857 153.714 50.286 158.857 52 165.143 57.143 10.286 8 14.857 20 12.571 34.857zM444.571 418.857c2.857 59.429-22.286 66.857-30.857 69.714-8 2.286-33.143 9.714-65.143-40.571-210.286-332-216-341.714-216-341.714-2.857-12 0.571-25.143 10.857-35.429 31.429-32.571 202.286-80.571 246.857-69.143 14.286 3.429 24.571 12.571 28 25.714 2.286 14.286 22.857 322.286 26.286 391.429zM822.857 480.571c1.143 14.286-4 26.286-14.857 33.714-6.857 4.571-13.714 6.857-188 49.143-28 6.286-43.429 10.286-52 13.143l0.571-1.143c-17.143 4.571-36.571-3.429-47.429-20.571s-10.286-36 0-49.714c0 0 0.571-0.571 42.857-58.286 93.714-128 98.286-134.286 105.143-138.857 10.857-7.429 24-7.429 37.143-1.143 37.143 17.714 112 129.143 116.571 172v1.714z\"\n        ],\n        \"width\": 875.4468571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"yelp\"\n        ],\n        \"defaultCode\": 61929,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"yelp\",\n        \"id\": 445,\n        \"order\": 1301,\n        \"prevSize\": 28,\n        \"code\": 61929\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 445\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 292.571h-219.429v219.429h219.429v-219.429zM658.286 658.286v73.143h-365.714v-73.143h365.714zM658.286 219.429v365.714h-365.714v-365.714h365.714zM1024 658.286v73.143h-292.571v-73.143h292.571zM1024 512v73.143h-292.571v-73.143h292.571zM1024 365.714v73.143h-292.571v-73.143h292.571zM1024 219.429v73.143h-292.571v-73.143h292.571zM146.286 768v-548.571h-73.143v548.571c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM1097.143 768v-621.714h-877.714v621.714c0 12.571-2.286 25.143-6.286 36.571h847.429c20 0 36.571-16.571 36.571-36.571zM1170.286 73.143v694.857c0 60.571-49.143 109.714-109.714 109.714h-950.857c-60.571 0-109.714-49.143-109.714-109.714v-621.714h146.286v-73.143h1024z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"newspaper-o\"\n        ],\n        \"defaultCode\": 61930,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"newspaper-o\",\n        \"id\": 446,\n        \"order\": 1302,\n        \"prevSize\": 28,\n        \"code\": 61930\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 446\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 870.286c-14.857 0-94.857-80-94.857-95.429 0-28 73.143-43.429 94.857-43.429s94.857 15.429 94.857 43.429c0 15.429-80 95.429-94.857 95.429zM739.429 715.429c-8 0-70.286-57.143-154.286-57.143-84.571 0-145.714 57.143-154.286 57.143-13.714 0-96.571-82.286-96.571-96 0-5.143 2.286-9.714 5.714-13.143 61.143-60.571 160.571-94.286 245.143-94.286s184 33.714 245.143 94.286c3.429 3.429 5.714 8 5.714 13.143 0 13.714-82.857 96-96.571 96zM895.429 560c-4.571 0-9.714-2.286-13.143-4.571-94.286-73.143-173.714-116.571-297.143-116.571-172.571 0-304 121.143-310.286 121.143-13.143 0-95.429-82.286-95.429-96 0-4.571 2.286-9.143 5.714-12.571 102.286-102.286 256.571-158.857 400-158.857s297.714 56.571 400 158.857c3.429 3.429 5.714 8 5.714 12.571 0 13.714-82.286 96-95.429 96zM1050.286 405.143c-4.571 0-9.143-2.286-12.571-5.143-132-116-274.286-180.571-452.571-180.571s-320.571 64.571-452.571 180.571c-3.429 2.857-8 5.143-12.571 5.143-13.143 0-96-82.286-96-96 0-5.143 2.286-9.714 5.714-13.143 144.571-143.429 353.143-222.857 555.429-222.857s410.857 79.429 555.429 222.857c3.429 3.429 5.714 8 5.714 13.143 0 13.714-82.857 96-96 96z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wifi\"\n        ],\n        \"defaultCode\": 61931,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wifi\",\n        \"id\": 447,\n        \"order\": 1303,\n        \"prevSize\": 28,\n        \"code\": 61931\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 447\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM219.429 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM658.286 877.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM219.429 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM658.286 658.286c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM438.857 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM877.714 877.714v-219.429c0-40-33.143-73.143-73.143-73.143v0c-40 0-73.143 33.143-73.143 73.143v219.429c0 40 33.143 73.143 73.143 73.143v0c40 0 73.143-33.143 73.143-73.143zM658.286 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM877.714 256v-146.286c0-20-16.571-36.571-36.571-36.571h-731.429c-20 0-36.571 16.571-36.571 36.571v146.286c0 20 16.571 36.571 36.571 36.571h731.429c20 0 36.571-16.571 36.571-36.571zM877.714 438.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM950.857 73.143v877.714c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-877.714c0-40 33.143-73.143 73.143-73.143h804.571c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"calculator\"\n        ],\n        \"defaultCode\": 61932,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"calculator\",\n        \"id\": 448,\n        \"order\": 1304,\n        \"prevSize\": 28,\n        \"code\": 61932\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 448\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M868 369.143v0c7.429 34.286 5.714 73.714-2.286 116.571-37.143 188.571-162.286 253.714-322.857 253.714h-25.143c-19.429 0-35.429 14.286-38.857 33.714l-2.286 10.857-31.429 197.714-1.143 8.571c-4 19.429-20 33.714-39.429 33.714h-143.429c-16 0-26.286-13.143-24-29.143 10.286-64 20-128 30.286-192s20.571-127.429 30.857-191.429c1.714-13.714 10.857-21.143 24.571-21.143 22.857 0 45.714-0.571 74.857 0 41.143 0.571 88.571-1.714 134.857-12 61.714-13.714 117.714-38.857 164-82.286 41.714-38.857 69.714-86.857 88.571-140.571 8.571-25.143 15.429-50.286 20-76 1.143-6.857 2.857-5.714 6.857-2.857 31.429 23.429 49.143 54.857 56 92.571zM769.714 208c0 46.857-10.857 91.429-26.286 134.857-29.714 86.286-85.714 148-172.571 180-46.286 16.571-94.857 23.429-144 24-34.286 0.571-68.571 0-102.857 0-37.143 0-60.571 18.286-67.429 54.857-8 43.429-39.429 245.714-48.571 302.857-0.571 4-2.286 5.714-6.857 5.714h-168.571c-17.143 0-29.714-14.857-27.429-31.429l132.571-840.571c3.429-21.714 22.857-38.286 45.143-38.286h341.714c24.571 0 81.143 10.857 119.429 25.714 81.143 31.429 125.714 95.429 125.714 182.286z\"\n        ],\n        \"width\": 878.2994285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"paypal\"\n        ],\n        \"defaultCode\": 61933,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"paypal\",\n        \"id\": 449,\n        \"order\": 1305,\n        \"prevSize\": 28,\n        \"code\": 61933\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 449\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M252 384c11.429 0 22.857 5.714 29.714 14.857 100 136.571 169.714 282.857 206.857 442.286h-254.857c-45.714-158.857-113.143-304-209.714-428-9.143-12 0-29.143 14.857-29.143h213.143zM571.429 588c-18.857 77.143-42.857 152-71.429 224.571-30.286-119.429-78.857-231.429-146.286-339.429 14.857-82.857 23.429-168 25.143-256.571 80.571 129.714 144.571 253.143 192.571 371.429zM628 182.857c170.857 235.429 297.714 525.714 325.143 841.143h-257.714c-18.857-305.143-159.429-594.286-316-841.143h248.571zM1024 512c0 158.857-21.714 325.714-57.714 464-25.143-211.429-94.857-421.714-205.143-618.857-9.714-115.429-30.286-227.429-60.571-333.714-2.857-12 5.714-23.429 17.714-23.429h205.143c16 0 30.857 10.857 34.857 26.286 43.429 154.286 65.714 317.714 65.714 485.714z\"\n        ],\n        \"width\": 1038.848,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"google-wallet\"\n        ],\n        \"defaultCode\": 61934,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"google-wallet\",\n        \"id\": 450,\n        \"order\": 1306,\n        \"prevSize\": 28,\n        \"code\": 61934\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 450\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1128.571 565.714h-78.857c0 0 8-21.143 37.714-102.286-0.571 0.571 8-21.143 12.571-34.857l6.857 31.429c17.714 87.429 21.714 105.714 21.714 105.714zM303.429 528.571l-33.143-168.571c-4.571-23.429-22.286-30.857-42.857-30.857h-153.143l-1.143 7.429c105.143 26.857 191.429 84 230.286 192zM405.714 329.143l-92.571 250.286-9.714-50.857c-20-53.143-68.571-102.286-123.429-124.571l77.143 291.429h100l149.143-366.286h-100.571zM485.143 696h94.857l59.429-366.857h-94.857zM924 338.286c-18.857-7.429-48.571-15.429-85.143-15.429-93.714 0-159.429 49.714-160 121.143-0.571 52.571 46.857 81.714 82.857 99.429 37.143 17.714 49.143 29.714 49.143 45.714 0 24.571-29.714 35.429-56.571 35.429-38.286 0-58.857-4.571-89.143-18.857l-12.571-6.286-13.143 82.286c22.286 10.286 62.857 19.429 105.714 19.429 99.429 0.571 164-49.143 165.143-125.143 0-41.714-25.714-73.143-80-99.429-33.143-16.571-53.143-28.571-53.143-45.714 0-15.429 17.143-31.429 54.286-31.429 30.857-0.571 53.714 5.714 70.857 13.714l8.571 4.571zM1166.857 329.143h-73.143c-22.857 0-40 6.857-49.714 30.857l-140.571 336h99.429c16-45.143 20-54.857 20-54.857h121.143c0 0 2.857 12.571 11.429 54.857h88zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc-visa\"\n        ],\n        \"defaultCode\": 61936,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc-visa\",\n        \"id\": 451,\n        \"order\": 1307,\n        \"prevSize\": 28,\n        \"code\": 61936\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 451\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M639.429 194.857c-47.429-31.429-103.429-48.571-160.571-48.571-160.571 0-290.857 130.286-290.857 290.286 0 160.571 130.286 290.857 290.857 290.857 57.143 0 113.143-17.143 160.571-48.571-153.143-124.571-152-359.429 0-484zM658.286 208.571c-147.429 116-148 341.143 0 456.571 148-115.429 147.429-340.571 0-456.571zM677.143 194.857c151.429 124.571 153.714 360 0 484 47.429 31.429 104 48.571 160.571 48.571 160.571 0 290.857-130.286 290.857-290.857 0-160-130.286-290.286-290.857-290.286-57.143 0-113.143 17.143-160.571 48.571zM1100.571 607.429h4v-1.714h-9.714v1.714h4v9.714h1.714v-9.714zM1117.143 617.143h2.286v-11.429h-2.857l-3.429 7.429-3.429-7.429h-2.857v11.429h1.714v-8.571l3.429 7.429h2.286l2.857-7.429v8.571zM1112.571 868.571v1.143h-2.857v-1.714h2.857v0.571zM1112.571 873.714h1.714l-2.286-2.857c1.143 0 1.143-0.571 1.714-0.571 0.571-0.571 0.571-1.143 0.571-1.714s0-1.143-0.571-1.714c-0.571 0-1.143-0.571-2.286-0.571h-3.429v7.429h1.714v-2.857h0.571zM391.429 834.857c0-13.714 8.571-24.571 23.429-24.571 13.714 0 22.857 10.857 22.857 24.571 0 14.286-9.143 24.571-22.857 24.571-14.857 0-23.429-10.857-23.429-24.571zM661.714 809.714c10.857 0 18.286 6.286 20 18.286h-40c1.714-10.857 8.571-18.286 20-18.286zM865.143 834.857c0-13.714 8.571-24.571 22.857-24.571s23.429 10.857 23.429 24.571c0 14.286-9.143 24.571-23.429 24.571s-22.857-10.857-22.857-24.571zM1020.571 834.857c0-13.714 9.143-24.571 23.429-24.571 13.714 0 23.429 10.857 23.429 24.571 0 14.286-9.714 24.571-23.429 24.571-14.286 0-23.429-10.857-23.429-24.571zM1110.857 876c-0.571 0-1.143 0-2.286-0.571-0.571 0-1.143-0.571-1.714-1.143s-1.143-1.143-1.143-1.714-0.571-1.714-0.571-2.286 0-1.714 0.571-2.286c0-1.143 0.571-1.714 1.143-2.286s1.143-0.571 1.714-1.143 1.714-0.571 2.286-0.571 1.714 0 2.286 0.571 1.714 0.571 2.286 1.143 0.571 1.143 1.143 2.286c0 0.571 0.571 1.143 0.571 2.286 0 0.571-0.571 1.143-0.571 2.286-0.571 0.571-0.571 1.143-1.143 1.714s-1.143 1.143-2.286 1.143c-0.571 0.571-1.143 0.571-2.286 0.571zM342.286 873.714h17.143v-48.571c0-18.286-12-30.286-30.857-30.857-9.714 0-20 2.857-26.857 13.714-5.143-8.571-13.714-13.714-25.714-13.714-8 0-16 2.857-22.286 11.429v-9.143h-17.143v77.143h17.143v-42.857c0-13.714 7.429-20.571 18.857-20.571s17.143 7.429 17.143 20.571v42.857h16.571v-42.857c0-13.714 8-20.571 18.857-20.571 11.429 0 17.143 7.429 17.143 20.571v42.857zM437.143 873.714h16.571v-77.143h-16.571v9.143c-5.714-6.857-13.714-11.429-24.571-11.429-21.714 0-38.286 17.143-38.286 40.571s16.571 40.571 38.286 40.571c10.857 0 18.857-4 24.571-11.429v9.714zM538.857 850.286c0-13.714-10.286-20.571-26.857-22.857l-8-1.143c-7.429-1.143-13.143-2.857-13.143-8s5.143-8.571 14.286-8.571c10.286 0 19.429 3.429 24.571 6.286l6.857-13.714c-8-5.143-18.857-8-31.429-8-19.429 0-32 9.714-32 25.143 0 12.571 9.143 20 26.857 22.286l7.429 1.143c9.714 1.714 13.714 4 13.714 8 0 6.286-6.286 9.714-17.714 9.714s-20-4-25.714-8l-7.429 13.143c9.143 6.286 20.571 9.714 33.143 9.714 22.286 0 35.429-10.286 35.429-25.143zM613.143 869.714l-4.571-14.286c-5.143 2.857-10.286 4-14.857 4-8.571 0-10.857-5.143-10.857-12.571v-34.857h27.429v-15.429h-27.429v-23.429h-17.143v23.429h-16v15.429h16v34.857c0 17.714 6.857 28.571 26.857 28.571 6.857 0 15.429-2.286 20.571-5.714zM662.286 794.286c-22.286 0-38.286 16.571-38.286 40.571 0 24.571 16.571 40.571 39.429 40.571 11.429 0 22.286-2.857 31.429-10.857l-8-12.571c-6.286 5.143-14.857 8.571-22.286 8.571-10.857 0-20.571-5.143-23.429-18.857h57.714v-6.857c0-24-14.857-40.571-36.571-40.571zM753.143 794.286c-9.714 0-16 4.571-20 11.429v-9.143h-17.143v77.143h17.143v-43.429c0-12.571 5.143-20 16.571-20 3.429 0 6.857 0.571 10.286 2.286l5.143-16c-4-1.714-8.571-2.286-12-2.286zM770.286 834.857c0 23.429 16 40.571 41.143 40.571 11.429 0 19.429-2.286 27.429-9.143l-8-13.714c-6.286 4.571-12.571 7.429-20 6.857-13.714 0-23.429-9.714-23.429-24.571s9.714-24.571 23.429-24.571c7.429 0 13.714 2.286 20 6.857l8-13.714c-8-6.286-16-9.143-27.429-9.143-25.143 0-41.143 17.143-41.143 40.571zM910.286 873.714h17.143v-77.143h-17.143v9.143c-5.143-6.857-13.143-11.429-24-11.429-21.714 0-38.857 17.143-38.857 40.571s17.143 40.571 38.857 40.571c10.857 0 18.857-4 24-11.429v9.714zM986.286 794.286c-9.714 0-16 4.571-20 11.429v-9.143h-16.571v77.143h16.571v-43.429c0-12.571 5.714-20 16.571-20 3.429 0 6.857 0.571 10.286 2.286l5.143-16c-3.429-1.714-8.571-2.286-12-2.286zM1066.286 873.714h16.571v-108.571h-16.571v40.571c-5.143-6.857-13.143-11.429-24.571-11.429-21.143 0-38.286 17.143-38.286 40.571s17.143 40.571 38.286 40.571c11.429 0 19.429-4 24.571-11.429v9.714zM1110.857 862.286c-0.571 0-1.714 0.571-2.857 0.571-1.143 0.571-1.714 1.143-2.286 1.714-1.143 0.571-1.714 1.714-1.714 2.286-0.571 1.143-0.571 2.286-0.571 3.429 0 0.571 0 1.714 0.571 2.857 0 0.571 0.571 1.714 1.714 2.286 0.571 0.571 1.143 1.143 2.286 1.714s2.286 0.571 2.857 0.571c1.143 0 2.286 0 3.429-0.571 0.571-0.571 1.714-1.143 2.286-1.714s1.143-1.714 1.714-2.286c0.571-1.143 0.571-2.286 0.571-2.857 0-1.143 0-2.286-0.571-3.429-0.571-0.571-1.143-1.714-1.714-2.286s-1.714-1.143-2.286-1.714c-1.143 0-2.286-0.571-3.429-0.571zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc-mastercard\"\n        ],\n        \"defaultCode\": 61937,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc-mastercard\",\n        \"id\": 452,\n        \"order\": 1308,\n        \"prevSize\": 28,\n        \"code\": 61937\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 452\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M178.857 444c0 18.286-7.429 36-20.571 48-11.429 10.286-26.857 14.857-50.857 14.857h-9.714v-125.714h9.714c24 0 38.857 4 50.857 15.429 13.143 11.429 20.571 29.143 20.571 47.429zM1193.714 406.857c0 19.429-12.571 29.714-36.571 29.714h-10.857v-57.714h11.429c23.429 0 36 9.714 36 28zM217.143 444c0-56-41.714-95.429-102.286-95.429h-54.286v190.286h54.286c28.571 0 49.714-6.286 68-21.714 21.714-18.286 34.286-45.143 34.286-73.143zM234.286 538.857h37.143v-190.286h-37.143v190.286zM417.143 481.143c0-30.286-12.571-44-54.857-59.429-22.286-8-28.571-13.714-28.571-24 0-12 11.429-21.143 27.429-21.143 11.429 0 20.571 4.571 30.286 15.429l19.429-25.143c-16-14.286-35.429-21.143-56-21.143-33.714 0-59.429 23.429-59.429 54.286 0 26.286 12 40 46.857 52.571 14.286 5.143 21.714 8 25.714 10.857 7.429 4.571 10.857 11.429 10.857 19.429 0 15.429-12 26.857-28.571 26.857-17.714 0-32-8.571-40.571-25.143l-24 22.857c17.143 25.143 37.714 36.571 65.714 36.571 38.857 0 65.714-25.714 65.714-62.857zM576 532.571v-44c-14.857 14.857-28 21.143-44.571 21.143-37.714 0-64-27.429-64-65.714 0-36.571 27.429-65.714 62.286-65.714 17.714 0 30.857 6.286 46.286 21.714v-44c-16-8-29.714-11.429-45.714-11.429-56 0-101.143 44-101.143 99.429 0 56 44 99.429 100.571 99.429 16 0 29.714-2.857 46.286-10.857zM1280 877.714v-301.143c-91.429 57.143-413.143 240-933.143 337.714h896.571c20 0 36.571-16.571 36.571-36.571zM793.714 445.143c0-57.143-46.286-103.429-103.429-103.429s-103.429 46.286-103.429 103.429 46.286 103.429 103.429 103.429 103.429-46.286 103.429-103.429zM880.571 544l82.286-195.429h-40.571l-51.429 128-50.857-128h-40.571l81.143 195.429h20zM979.429 538.857h105.143v-32h-68v-51.429h65.714v-32h-65.714v-42.286h68v-32.571h-105.143v190.286zM1202.857 538.857h45.714l-60-80c28-5.714 43.429-24.571 43.429-53.714 0-36-24.571-56.571-67.429-56.571h-55.429v190.286h37.143v-76h5.143zM1316.571 149.714v724.571c0 42.286-33.714 76.571-75.429 76.571h-1165.714c-41.714 0-75.429-34.286-75.429-76.571v-724.571c0-42.286 33.714-76.571 75.429-76.571h1165.714c41.714 0 75.429 34.286 75.429 76.571z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc-discover\"\n        ],\n        \"defaultCode\": 61938,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc-discover\",\n        \"id\": 453,\n        \"order\": 1309,\n        \"prevSize\": 28,\n        \"code\": 61938\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 453\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M68 389.714h50.857l-25.714-61.714zM422.857 690.286l42.286-45.143-40-45.143h-93.143v28h81.143v31.429h-81.143v30.857h90.857zM513.143 645.714l56.571 62.857v-124zM677.714 618.857c0-13.714-10.286-18.857-22.857-18.857h-48v39.429h47.429c13.143 0 23.429-6.286 23.429-20.571zM842.857 616.571c0-14.286-12.571-16.571-24-16.571h-46.857v34.857h46.286c12.571 0 24.571-2.857 24.571-18.286zM684 350.286c0-14.286-12.571-16.571-24-16.571h-46.857v34.286h46.286c12.571 0 24.571-2.857 24.571-17.714zM946.286 389.714h50.857l-25.143-61.714zM399.429 301.143v154.857h-37.714v-121.143l-53.714 121.143h-32.571l-53.714-121.143v121.143h-75.429l-14.286-34.286h-77.143l-14.286 34.286h-40l66.286-154.857h54.857l62.857 146.857v-146.857h60.571l48.571 105.143 44-105.143h61.714zM717.143 618.857c0 62.286-68 52-110.286 52v52h-72l-45.714-51.429-47.429 51.429h-146.286v-154.857h148.571l45.714 50.857 46.857-50.857h118.286c34.857 0 62.286 12 62.286 50.857zM550.857 424v32h-124v-154.857h124v32.571h-86.857v28h84.571v31.429h-84.571v30.857h86.857zM1316.571 743.429v130.857c0 41.714-33.714 76.571-75.429 76.571h-1165.714c-41.714 0-75.429-34.857-75.429-76.571v-387.429h63.429l14.286-34.857h31.429l14.286 34.857h124.571v-26.286l10.857 26.286h64.571l11.429-26.857v26.857h309.143v-56.571l5.714-0.571c5.143 0 5.714 4 5.714 8v49.143h159.429v-13.143c37.143 19.429 88 13.143 126.857 13.143l14.286-34.857h32l14.286 34.857h129.714v-33.143l19.429 33.143h104v-216h-102.857v25.143l-14.286-25.143h-105.714v25.143l-13.143-25.143h-142.286c-21.143 0-43.429 2.286-62.286 12.571v-12.571h-98.286v12.571c-11.429-10.286-26.857-12.571-41.714-12.571h-358.857l-24.571 55.429-24.571-55.429h-113.143v25.143l-12.571-25.143h-96.571l-44.571 102.286v-223.429c0-41.714 33.714-76.571 75.429-76.571h1165.714c41.714 0 75.429 34.857 75.429 76.571v387.429h-68.571c-16 0-33.143 2.857-46.286 12.571v-12.571h-101.143c-14.286 0-33.714 2.286-44.571 12.571v-12.571h-180.571v12.571c-13.714-9.714-33.714-12.571-49.714-12.571h-119.429v12.571c-12-11.429-36.571-12.571-52-12.571h-133.714l-30.857 33.143-28.571-33.143h-199.429v216h196l31.429-33.714 29.714 33.714h120.571v-50.857h12c17.143 0 34.857-0.571 51.429-7.429v58.286h99.429v-56.571h4.571c5.714 0 6.857 0.571 6.857 6.857v49.714h302.286c16.571 0 37.143-3.429 50.286-13.714v13.714h96c18.286 0 37.714-1.714 54.286-9.714zM883.429 609.714c0 17.143-9.143 34.286-26.286 41.143 20.571 7.429 24.571 21.143 24.571 41.143v30.857h-37.143v-25.714c0-26.286-8.571-30.857-33.143-30.857h-39.429v56.571h-37.143v-154.857h88c29.143 0 60.571 5.143 60.571 41.714zM725.143 342.857c0 17.714-9.714 34.857-26.286 41.714 21.143 7.429 24.571 20.571 24.571 41.143v30.286h-37.143c-0.571-33.143 8-56-33.143-56h-40v56h-36.571v-154.857l87.429 0.571c29.714 0 61.143 4.571 61.143 41.143zM1027.429 690.857v32h-123.429v-154.857h123.429v32h-86.286v28h84.571v31.429h-84.571v30.857zM784 301.143v154.857h-37.714v-154.857h37.714zM1180 673.714c0 36.571-25.143 49.143-58.286 49.143h-72v-33.143h72c9.143 0 19.429-2.286 19.429-14.286 0-33.143-95.429 12.571-95.429-61.143 0-31.429 24-46.286 52.571-46.286h74.286v32.571h-68c-9.714 0-20.571 1.714-20.571 14.286 0 33.714 96-15.429 96 58.857zM1316.571 645.143v57.714c-10.857 16-32 20-50.286 20h-71.429v-33.143h71.429c9.143 0 18.857-2.857 18.857-14.286 0-32.571-95.429 12.571-95.429-61.143 0-31.429 24.571-46.286 53.143-46.286h73.714v32.571h-67.429c-10.286 0-20.571 1.714-20.571 14.286 0 27.429 64.571-0.571 88 30.286zM1222.286 301.714v154.286h-52.571l-69.714-116v116h-75.429l-14.857-34.286h-76.571l-14.286 34.286h-42.857c-50.857 0-73.714-26.286-73.714-76 0-52 23.429-78.857 76-78.857h36v33.714c-38.857-0.571-74.286-9.143-74.286 44 0 26.286 6.286 44.571 36 44.571h16.571l52.571-121.714h55.429l62.286 146.286v-146.286h56.571l65.143 107.429v-107.429h37.714z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc-amex\"\n        ],\n        \"defaultCode\": 61939,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc-amex\",\n        \"id\": 454,\n        \"order\": 1310,\n        \"prevSize\": 28,\n        \"code\": 61939\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 454\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M425.714 517.714c0 28-22.286 49.143-50.286 49.143-21.143 0-36.571-12-36.571-34.286 0-28 21.714-50.286 49.714-50.286 21.143 0 37.143 13.143 37.143 35.429zM874.286 432.571c0 34.286-20.571 41.143-50.286 41.143l-18.286 0.571 9.714-61.143c0.571-4 3.429-6.286 7.429-6.286h10.286c19.429 0 41.143 1.143 41.143 25.714zM1074.857 517.714c0 28-22.286 49.143-49.714 49.143-21.143 0-37.143-12-37.143-34.286 0-28 21.714-50.286 49.714-50.286 21.143 0 37.143 13.143 37.143 35.429zM293.143 420c0-48-37.143-64-79.429-64h-91.429c-5.714 0-11.429 4.571-12 10.857l-37.143 233.143c-0.571 4.571 2.857 9.143 7.429 9.143h43.429c6.286 0 12-4.571 12.571-10.857l10.286-62.857c2.286-16.571 30.286-10.857 41.143-10.857 65.143 0 105.143-38.857 105.143-104.571zM469.714 598.286l23.429-149.143c0.571-4.571-2.857-9.143-7.429-9.143h-43.429c-8.571 0-9.143 12.571-9.714 18.857-13.143-19.429-32.571-22.857-54.286-22.857-56 0-98.857 49.143-98.857 103.429 0 44.571 28 73.714 72.571 73.714 20.571 0 46.286-9.143 60.571-25.143-1.143 3.429-2.286 8.571-2.286 12 0 5.143 2.286 9.143 7.429 9.143h39.429c6.286 0 11.429-4.571 12.571-10.857zM725.143 448c0-4-3.429-8-7.429-8h-44c-4 0-8 2.286-10.286 5.714l-60.571 89.143-25.143-85.714c-1.714-5.143-6.857-9.143-12.571-9.143h-42.857c-4 0-7.429 4-7.429 8 0 2.857 44.571 132 48.571 144-6.286 8.571-46.857 61.714-46.857 68.571 0 4 3.429 7.429 7.429 7.429h44c4 0 8-2.286 10.286-5.714l145.714-210.286c1.143-1.143 1.143-2.286 1.143-4zM942.286 420c0-48-37.143-64-79.429-64h-90.857c-6.286 0-12 4.571-12.571 10.857l-37.143 233.143c-0.571 4.571 2.857 9.143 7.429 9.143h46.857c4.571 0 8-3.429 9.143-7.429l10.286-66.286c2.286-16.571 30.286-10.857 41.143-10.857 65.143 0 105.143-38.857 105.143-104.571zM1118.857 598.286l23.429-149.143c0.571-4.571-2.857-9.143-7.429-9.143h-43.429c-8.571 0-9.143 12.571-9.714 18.857-12.571-19.429-32-22.857-54.286-22.857-56 0-98.857 49.143-98.857 103.429 0 44.571 28 73.714 72.571 73.714 21.143 0 46.857-9.143 60.571-25.143-0.571 3.429-2.286 8.571-2.286 12 0 5.143 2.286 9.143 7.429 9.143h39.429c6.286 0 11.429-4.571 12.571-10.857zM1243.429 364.571v-0.571c0-4.571-3.429-8-7.429-8h-42.286c-3.429 0-6.857 2.857-7.429 6.286l-37.143 237.714-0.571 1.143c0 4 3.429 8 8 8h37.714c5.714 0 11.429-4.571 12-10.857zM224 441.143c-4.571 29.143-24 32.571-49.143 32.571l-18.857 0.571 9.714-61.143c0.571-4 4-6.286 7.429-6.286h10.857c25.714 0 45.143 3.429 40 34.286zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc-paypal\"\n        ],\n        \"defaultCode\": 61940,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc-paypal\",\n        \"id\": 455,\n        \"order\": 1311,\n        \"prevSize\": 28,\n        \"code\": 61940\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 455\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M912.571 516c0 26.286-4 46.286-12 60.571-6.857 12.571-17.714 20-29.714 20-8.571 0-16.571-1.714-23.429-5.143v-128c14.857-15.429 28-17.143 32.571-17.143 21.714 0 32.571 24 32.571 69.714zM1162.857 495.429h-62.857c2.286-38.286 12.571-56 32-56s29.714 18.286 30.857 56zM272 572.571c0-48-29.143-68-76.571-85.143v0c-25.143-9.143-38.857-16.571-38.857-28 0-9.714 8-14.857 21.714-14.857 26.286 0 52.571 9.714 70.857 18.857l10.286-64c-14.286-6.857-44-18.286-85.143-18.286-29.143 0-53.143 7.429-70.286 21.714-18.286 14.857-27.429 36.571-27.429 62.286 0 46.857 28.571 67.429 75.429 84 29.714 10.857 40 18.286 40 30.286 0 11.429-9.714 17.714-27.429 17.714-21.714 0-57.714-10.857-81.143-24.571l-10.286 64.571c20 11.429 57.143 23.429 96 23.429 30.857 0 56-7.429 73.714-21.143 19.429-15.429 29.143-37.714 29.143-66.857zM440.571 449.714l10.857-63.429h-54.857v-77.143l-73.714 12-10.286 65.143-26.286 4.571-9.714 58.857h35.429v125.143c0 32.571 8.571 54.857 25.143 68.571 14.286 11.429 34.857 17.143 63.429 17.143 22.286 0 35.429-4 45.143-6.286v-67.429c-5.143 1.143-17.143 4-25.143 4-16.571 0-24-9.143-24-28.571v-112.571h44zM621.143 464v-79.429c-5.714-1.143-10.857-1.714-16-1.714-24 0-43.429 12.571-50.857 35.429l-5.714-32h-74.857v269.143h85.714v-174.857c10.857-13.143 26.286-17.714 46.857-17.714 4.571 0 9.143 0 14.857 1.143zM642.286 655.429h85.714v-269.143h-85.714v269.143zM997.714 513.143c0-45.714-8.571-80.571-25.714-102.286-15.429-20-36.571-29.714-63.429-29.714-24.571 0-46.286 10.286-66.857 32l-4.571-26.857h-75.429v368.571l85.714-14.286v-86.286c13.143 4 26.857 6.286 38.857 6.286 21.143 0 52.571-5.714 76.571-32 23.429-25.143 34.857-64 34.857-115.429zM730.286 314.286c0-25.143-20-45.143-45.143-45.143s-45.143 20-45.143 45.143 20 45.714 45.143 45.714 45.143-20.571 45.143-45.714zM1243.429 518.286c0-42.857-9.143-76.571-27.429-100.571-18.857-24-46.857-36.571-82.286-36.571-73.143 0-118.286 53.714-118.286 140.571 0 48 12 84.571 36 107.429 21.143 21.143 52 31.429 92 31.429 36.571 0 70.286-8.571 91.429-22.857l-9.143-58.857c-21.143 11.429-45.714 17.714-73.143 17.714-16.571 0-28-3.429-36-10.857-9.143-7.429-14.286-20-16-37.714h141.714c0.571-4 1.143-23.429 1.143-29.714zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc-stripe\"\n        ],\n        \"defaultCode\": 61941,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc-stripe\",\n        \"id\": 456,\n        \"order\": 1312,\n        \"prevSize\": 28,\n        \"code\": 61941\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 456\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M890.286 486.857c29.143 170.286 104 261.714 170.286 317.714 0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-145.714-65.143-146.286-145.714zM585.143 978.286c5.143 0 9.143-4 9.143-9.143s-4-9.143-9.143-9.143c-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571zM1157.714 64c6.286 8 5.714 19.429-1.714 26.286l-1069.714 926.857c-7.429 6.286-19.429 5.714-25.714-2.286l-48-54.857c-6.286-8-5.714-19.429 1.714-25.714l106.286-92c-6.857-11.429-10.857-24-10.857-37.714 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 98.286 14.286 170.857 69.714 209.714 137.143l238.857-207.429c7.429-6.286 19.429-5.714 25.714 2.286z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bell-slash\"\n        ],\n        \"defaultCode\": 61942,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bell-slash\",\n        \"id\": 457,\n        \"order\": 1313,\n        \"prevSize\": 28,\n        \"code\": 61942\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 457\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M594.286 969.143c0-5.143-4-9.143-9.143-9.143-45.143 0-82.286-37.143-82.286-82.286 0-5.143-4-9.143-9.143-9.143s-9.143 4-9.143 9.143c0 55.429 45.143 100.571 100.571 100.571 5.143 0 9.143-4 9.143-9.143zM287.429 697.714l501.143-434.286c-28.571-60-94.857-117.143-203.429-117.143-149.714 0-219.429 109.143-219.429 182.857 0 146.286-25.714 268.571-78.286 368.571zM1060.571 804.571c0 40-33.143 73.143-73.143 73.143h-256c0 80.571-65.714 146.286-146.286 146.286s-145.714-65.143-146.286-145.714l85.143-73.714h432.571c-63.429-71.429-106.286-158.286-129.714-262.286l63.429-55.429c29.143 170.286 104 261.714 170.286 317.714zM1109.714 9.143l48 54.857c6.286 8 5.714 19.429-1.714 26.286l-1069.714 926.857c-7.429 6.286-19.429 5.714-25.714-2.286l-48-54.857c-6.286-8-5.714-19.429 1.714-25.714l106.286-92c-6.857-11.429-10.857-24-10.857-37.714 84.571-71.429 182.857-199.429 182.857-475.429 0-109.714 90.857-229.714 242.286-252-2.857-6.857-4.571-14.286-4.571-22.286 0-30.286 24.571-54.857 54.857-54.857s54.857 24.571 54.857 54.857c0 8-1.714 15.429-4.571 22.286 98.286 14.286 170.857 69.714 209.714 137.143l238.857-207.429c7.429-6.286 19.429-5.714 25.714 2.286z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bell-slash-o\"\n        ],\n        \"defaultCode\": 61943,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bell-slash-o\",\n        \"id\": 458,\n        \"order\": 1314,\n        \"prevSize\": 28,\n        \"code\": 61943\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 458\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM438.857 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM585.143 786.286v-402.286c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v402.286c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM274.286 219.429h256l-27.429-66.857c-1.714-2.286-6.857-5.714-9.714-6.286h-181.143c-3.429 0.571-8 4-9.714 6.286zM804.571 237.714v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v541.714c0 62.857-41.143 116.571-91.429 116.571h-475.429c-50.286 0-91.429-51.429-91.429-114.286v-544h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h176.571l40-95.429c11.429-28 45.714-50.857 76-50.857h182.857c30.286 0 64.571 22.857 76 50.857l40 95.429h176.571c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"trash\"\n        ],\n        \"defaultCode\": 61944,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"trash\",\n        \"id\": 459,\n        \"order\": 1315,\n        \"prevSize\": 28,\n        \"code\": 61944\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 459\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M657.143 613.714v62.286c0 80.571-128.571 110.286-209.143 110.286-156.571 0-274.286-119.429-274.286-277.143 0-154.857 116.571-271.429 271.429-271.429 56.571 0 204.571 20 204.571 110.857v62.286c0 5.143-4 9.143-9.143 9.143h-67.429c-5.143 0-9.143-4-9.143-9.143v-40c0-36-69.143-52.571-116-52.571-106.857 0-181.143 77.143-181.143 188 0 114.857 77.714 198.857 185.714 198.857 41.143 0 118.857-15.429 118.857-51.429v-40c0-5.143 4-9.143 8.571-9.143h68c4.571 0 9.143 4 9.143 9.143zM438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"copyright\"\n        ],\n        \"defaultCode\": 61945,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"copyright\",\n        \"id\": 460,\n        \"order\": 1316,\n        \"prevSize\": 28,\n        \"code\": 61945\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 460\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M555.429 442.857c0-82.286-42.857-131.429-114.857-131.429-94.857 0-196.571 94.286-196.571 246.857 0 85.143 42.286 133.714 116.571 133.714 114.857 0 194.857-131.429 194.857-249.143zM877.714 512c0 177.714-126.857 244.571-235.429 248-7.429 0-10.286 0.571-18.286 0.571-35.429 0-63.429-10.286-81.143-30.286-10.857-12.571-17.143-28.571-18.857-47.429-35.429 44.571-97.143 88-174.286 88-122.857 0-193.143-76-193.143-208.571 0-182.286 126.286-330.286 280.571-330.286 66.857 0 120.571 28.571 149.143 77.143l1.143-10.857 6.286-32c0.571-4.571 4.571-10.286 8.571-10.286h67.429c2.857 0 5.714 4 7.429 6.286 1.714 1.714 2.286 6.286 1.714 9.143l-68.571 350.857c-2.286 10.857-2.857 19.429-2.857 27.429 0 30.857 9.143 37.143 32.571 37.143 38.857-1.143 164.571-17.143 164.571-174.857 0-222.286-143.429-365.714-365.714-365.714-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714c84 0 166.286-29.143 231.429-82.286 8-6.857 19.429-5.714 25.714 2.286l23.429 28c2.857 4 4.571 8.571 4 13.714-0.571 4.571-2.857 9.143-6.857 12.571-77.714 63.429-176.571 98.857-277.714 98.857-241.714 0-438.857-197.143-438.857-438.857s197.143-438.857 438.857-438.857c262.286 0 438.857 176.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"at\"\n        ],\n        \"defaultCode\": 61946,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"at\",\n        \"id\": 461,\n        \"order\": 1317,\n        \"prevSize\": 28,\n        \"code\": 61946\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 461\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M970.286 53.714c71.429 71.429 72 187.429 0 258.286l-128.571 127.429 59.429 59.429c7.429 7.429 7.429 18.857 0 26.286l-120 120c-7.429 7.429-18.857 7.429-26.286 0l-60-60-344.571 344.571c-13.714 13.714-32 21.143-51.429 21.143h-116l-146.286 73.143-36.571-36.571 73.143-146.286v-116c0-19.429 7.429-37.714 21.143-51.429l344.571-344.571-60-60c-7.429-7.429-7.429-18.857 0-26.286l120-120c7.429-7.429 18.857-7.429 26.286 0l59.429 59.429 127.429-128.571c70.857-72 186.857-71.429 258.286 0zM292.571 841.143l329.143-329.143-109.714-109.714-329.143 329.143v109.714h109.714z\"\n        ],\n        \"width\": 1042.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"eyedropper\"\n        ],\n        \"defaultCode\": 61947,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"eyedropper\",\n        \"id\": 462,\n        \"order\": 1318,\n        \"prevSize\": 28,\n        \"code\": 61947\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 462\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M922.857 0c52 0 100 38.857 100 93.143 0 30.286-12 59.429-25.714 86.286-44.571 84.571-194.286 364-265.714 429.714-34.857 32.571-76 52-124.571 52-96.571 0-175.429-82.286-175.429-178.286 0-45.714 18.857-90.286 52.571-121.143l364.571-330.857c20-18.286 46.286-30.857 74.286-30.857zM403.429 590.857c29.714 57.714 84 101.143 146.857 117.714l0.571 40.571c3.429 162.857-109.714 274.857-273.143 274.857-193.714 0-277.714-154.286-277.714-329.714 21.143 14.286 94.857 73.143 118.857 73.143 14.286 0 26.286-8 31.429-21.143 48.571-126.857 124.571-149.714 253.143-155.429z\"\n        ],\n        \"width\": 1022.8297142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"paint-brush\"\n        ],\n        \"defaultCode\": 61948,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"paint-brush\",\n        \"id\": 463,\n        \"order\": 1319,\n        \"prevSize\": 28,\n        \"code\": 61948\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 463\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 804.571v219.429h-1024v-219.429c56 0 85.714-25.143 109.143-45.143 19.429-17.143 32.571-28 61.714-28s41.714 10.857 61.714 28c23.429 20 52.571 45.143 109.143 45.143 56 0 85.143-25.143 109.143-45.143 19.429-17.143 32-28 61.143-28s42.286 10.857 61.714 28c23.429 20 53.143 45.143 109.143 45.143s85.714-25.143 109.143-45.143c19.429-17.143 32.571-28 61.714-28 28.571 0 41.714 10.857 61.143 28 23.429 20 53.143 45.143 109.143 45.143zM1024 621.714v109.714c-29.143 0-41.714-10.857-61.714-28-23.429-20-52.571-45.143-108.571-45.143-56.571 0-85.714 25.143-109.143 45.143-20 17.143-32.571 28-61.714 28s-42.286-10.857-61.714-28c-23.429-20-52.571-45.143-109.143-45.143-56 0-85.143 25.143-109.143 45.143-19.429 17.143-32 28-61.143 28s-42.286-10.857-61.714-28c-23.429-20-53.143-45.143-109.143-45.143-56.571 0-85.714 25.143-109.143 45.143-19.429 17.143-32.571 28-61.714 28v-109.714c0-60.571 49.143-109.714 109.714-109.714h36.571v-256h146.286v256h146.286v-256h146.286v256h146.286v-256h146.286v256h36.571c60.571 0 109.714 49.143 109.714 109.714zM292.571 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128zM585.143 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128zM877.714 128c0 60.571-32.571 91.429-73.143 91.429s-73.143-32.571-73.143-73.143c0-70.857 73.143-52.571 73.143-146.286 27.429 0 73.143 67.429 73.143 128z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"birthday-cake\"\n        ],\n        \"defaultCode\": 61949,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"birthday-cake\",\n        \"id\": 464,\n        \"order\": 1320,\n        \"prevSize\": 28,\n        \"code\": 61949\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 464\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM950.857 292.571l146.286 512h-950.857v-329.143l256-329.143 329.143 329.143z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"area-chart\"\n        ],\n        \"defaultCode\": 61950,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"area-chart\",\n        \"id\": 465,\n        \"order\": 1321,\n        \"prevSize\": 28,\n        \"code\": 61950\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 465\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 508.571l312 312c-79.429 80.571-190.286 130.286-312 130.286-242.286 0-438.857-196.571-438.857-438.857s196.571-438.857 438.857-438.857v435.429zM545.714 512h441.714c0 121.714-49.714 232.571-130.286 312zM950.857 438.857h-438.857v-438.857c242.286 0 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 987.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pie-chart\"\n        ],\n        \"defaultCode\": 61952,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pie-chart\",\n        \"id\": 466,\n        \"order\": 1322,\n        \"prevSize\": 28,\n        \"code\": 61952\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 466\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1170.286 877.714v73.143h-1170.286v-877.714h73.143v804.571h1097.143zM1097.143 164.571v248.571c0 16-19.429 24.571-31.429 12.571l-69.143-69.143-361.714 361.714c-7.429 7.429-18.857 7.429-26.286 0l-133.143-133.143-237.714 237.714-109.714-109.714 334.286-334.286c7.429-7.429 18.857-7.429 26.286 0l133.143 133.143 265.143-265.143-69.143-69.143c-12-12-3.429-31.429 12.571-31.429h248.571c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"line-chart\"\n        ],\n        \"defaultCode\": 61953,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"line-chart\",\n        \"id\": 467,\n        \"order\": 1323,\n        \"prevSize\": 28,\n        \"code\": 61953\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 467\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M738.286 402.286c0 3.429 4.571 19.429 5.714 23.429 15.429 46.857 51.429 56.571 94.286 68.571 95.429 26.857 185.714 77.714 185.714 189.714 0 113.714-94.857 193.714-205.714 193.714-184 0-241.143-225.143-294.286-362.286-44-113.143-90.286-179.429-217.714-179.429-113.143 0-212.571 108.571-212.571 220 0 118.286 88.571 228 211.429 228 54.286 0 110.857-11.429 147.429-54.286v0c17.714-20 34.857-41.714 47.429-66.286l48 86.857c-6.286 14.286-15.429 28-25.143 40l0.571 0.571c-57.714 66.857-136.571 86.857-221.714 86.857-172.571 0-301.714-152.571-301.714-320.571 0-162.857 141.714-314.286 306.286-314.286 273.143 0 286.857 236.571 379.429 426.857 25.143 52.571 68 114.286 133.143 114.286 59.429 0 112-38.286 112-101.143 0-136-249.714-43.429-285.143-266.857-1.143-6.286-1.714-12.571-1.714-18.857 0-84.571 79.429-157.143 163.429-154.286 50.286 1.714 80.571 3.429 120.571 38.857h-0.571c15.429 14.286 26.857 33.714 38.857 50.286l-73.714 56.571c-8.571-16-16.571-29.143-30.857-40v-0.571c-13.714-12.571-38.286-12-55.429-12-37.143 0-68 28-68 66.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lastfm\"\n        ],\n        \"defaultCode\": 61954,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"lastfm\",\n        \"id\": 468,\n        \"order\": 1324,\n        \"prevSize\": 28,\n        \"code\": 61954\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 468\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M818.286 601.143c0-80.571-65.143-117.143-133.714-136.571-31.429-8.571-57.143-16-68.571-50.286-0.571-2.857-3.429-13.714-3.429-16 0-27.429 21.714-47.429 48.571-47.429 12.571 0 30.286-0.571 40.571 8.571h-0.571c10.857 8 16 17.143 22.286 29.143l53.143-40.571c-8.571-12-17.143-26.286-28-36.571v0c-26.857-24-52-28-87.429-28-60 0-116.571 49.143-116.571 111.429 0 4.571 0.571 8.571 1.143 13.143 12.571 77.714 52 101.714 121.714 121.714 34.286 9.714 82.857 25.143 83.429 67.429v2.857c0.571 45.714-37.714 73.143-80.571 73.143-46.857 0-77.143-44.571-95.429-82.286-66.286-136.571-76.571-307.429-273.143-307.429-118.286 0-224.571 109.143-220.571 226.286v0.571c4 122.286 88 230.286 217.143 230.286 61.143 0 118.286-14.286 159.429-62.857v0c6.857-9.143 13.143-18.857 17.714-29.143l-34.286-62.286c-32 60.571-71.429 86.857-140 86.857-90.286 0-152.571-80-152.571-166.286 0-79.429 73.143-156 153.143-156 91.429 0 124.571 47.429 156.571 129.143 38.286 98.286 79.429 260.571 212 260.571 79.429 0 148-57.714 148-139.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lastfm-square\"\n        ],\n        \"defaultCode\": 61955,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"lastfm-square\",\n        \"id\": 469,\n        \"order\": 1325,\n        \"prevSize\": 28,\n        \"code\": 61955\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 469\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 512c0-161.143-131.429-292.571-292.571-292.571s-292.571 131.429-292.571 292.571 131.429 292.571 292.571 292.571 292.571-131.429 292.571-292.571zM1097.143 512c0-161.143-131.429-292.571-292.571-292.571h-220.571c89.143 66.857 147.429 173.143 147.429 292.571s-58.286 225.714-147.429 292.571h220.571c161.143 0 292.571-131.429 292.571-292.571zM1170.286 512c0 201.714-164 365.714-365.714 365.714h-438.857c-201.714 0-365.714-164-365.714-365.714s164-365.714 365.714-365.714h438.857c201.714 0 365.714 164 365.714 365.714z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"toggle-off\"\n        ],\n        \"defaultCode\": 61956,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"toggle-off\",\n        \"id\": 470,\n        \"order\": 1326,\n        \"prevSize\": 28,\n        \"code\": 61956\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 470\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 512c0-201.714 164-365.714 365.714-365.714h438.857c201.714 0 365.714 164 365.714 365.714s-164 365.714-365.714 365.714h-438.857c-201.714 0-365.714-164-365.714-365.714zM804.571 804.571c161.143 0 292.571-131.429 292.571-292.571s-131.429-292.571-292.571-292.571-292.571 131.429-292.571 292.571 131.429 292.571 292.571 292.571z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"toggle-on\"\n        ],\n        \"defaultCode\": 61957,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"toggle-on\",\n        \"id\": 471,\n        \"order\": 1327,\n        \"prevSize\": 28,\n        \"code\": 61957\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 471\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M435.429 658.286h-179.429c-30.286 0-47.429-34.286-29.143-58.286l107.429-143.429c-24-11.429-50.286-17.714-78.286-17.714-100.571 0-182.857 82.286-182.857 182.857s82.286 182.857 182.857 182.857c88.571 0 162.286-62.857 179.429-146.286zM329.143 585.143h106.286c-6.857-32-21.714-61.143-42.857-84.571zM603.429 585.143l164.571-219.429h-274.286l-56.571 75.429c38.286 37.714 64 88 72 144h94.286zM1243.429 621.714c0-100.571-82.286-182.857-182.857-182.857-24.571 0-47.429 5.143-69.143 13.714l99.429 148.571c11.429 17.143 6.857 40-9.714 50.857-6.286 4.571-13.714 6.286-20.571 6.286-12 0-23.429-5.714-30.286-16.571l-99.429-148.571c-32.571 33.143-53.143 78.286-53.143 128.571 0 100.571 82.286 182.857 182.857 182.857s182.857-82.286 182.857-182.857zM1316.571 621.714c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-75.429 33.143-143.429 85.143-190.286l-37.143-56-201.714 268c-6.857 9.714-17.714 14.857-29.143 14.857h-112.571c-17.714 124-124 219.429-253.143 219.429-141.143 0-256-114.857-256-256s114.857-256 256-256c44.571 0 86.286 11.429 122.857 31.429l78.286-104.571h-128c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h219.429v73.143h248.571l-48.571-73.143h-126.857c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c12 0 23.429 6.286 30.286 16l152.571 228.571c33.143-16 70.286-25.143 109.714-25.143 141.143 0 256 114.857 256 256z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bicycle\"\n        ],\n        \"defaultCode\": 61958,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bicycle\",\n        \"id\": 472,\n        \"order\": 1328,\n        \"prevSize\": 28,\n        \"code\": 61958\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 472\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 694.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM804.571 694.857c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM778.286 468.571l-41.143-219.429c-3.429-17.143-18.286-29.714-36-29.714h-524.571c-17.714 0-32.571 12.571-36 29.714l-41.143 219.429c-4 22.857 13.143 43.429 36 43.429h606.857c22.857 0 40-20.571 36-43.429zM649.143 118.857c0-15.429-12-27.429-27.429-27.429h-365.714c-14.857 0-27.429 12-27.429 27.429s12.571 27.429 27.429 27.429h365.714c15.429 0 27.429-12 27.429-27.429zM877.714 533.143v344.571h-73.143v73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143v-73.143h-438.857v73.143c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143v-73.143h-73.143v-344.571c0-46.857 4-81.714 14.286-127.429l58.857-259.429c10.857-91.429 170.857-146.286 365.714-146.286s354.857 54.857 365.714 146.286l60 259.429c10.286 45.714 13.143 80.571 13.143 127.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bus\"\n        ],\n        \"defaultCode\": 61959,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bus\",\n        \"id\": 473,\n        \"order\": 1329,\n        \"prevSize\": 28,\n        \"code\": 61959\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 473\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M836 475.429c0 26.857-21.714 49.143-49.143 49.143h-401.143c-27.429 0-49.143-22.286-49.143-49.143s21.714-49.143 49.143-49.143h401.143c27.429 0 49.143 22.286 49.143 49.143zM958.286 475.429c0-33.714-4.571-65.714-13.143-97.143h-561.143c-27.429 0-49.143-21.714-49.143-48.571 0-27.429 21.714-49.143 49.143-49.143h518.857c-65.714-106.857-183.429-177.714-317.143-177.714-205.714 0-373.143 166.857-373.143 372.571 0 33.714 4.571 65.714 13.143 97.143h561.143c27.429 0 49.143 21.714 49.143 48.571 0 27.429-21.714 49.143-49.143 49.143h-518.857c65.714 106.857 183.429 177.714 317.714 177.714 205.143 0 372.571-166.857 372.571-372.571zM1170.286 329.714c0 26.857-21.714 48.571-49.143 48.571h-74.857c6.286 31.429 9.714 64 9.714 97.143 0 259.429-210.857 470.857-470.286 470.857-190.286 0-354.286-113.143-428.571-276h-108c-27.429 0-49.143-21.714-49.143-49.143 0-26.857 21.714-48.571 49.143-48.571h75.429c-6.286-31.429-9.714-64-9.714-97.143 0-259.429 210.857-470.857 470.857-470.857 189.714 0 353.714 113.143 428 276h107.429c27.429 0 49.143 21.714 49.143 49.143z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ioxhost\"\n        ],\n        \"defaultCode\": 61960,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ioxhost\",\n        \"id\": 474,\n        \"order\": 1330,\n        \"prevSize\": 28,\n        \"code\": 61960\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 474\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M544.571 216l-65.143 187.429 66.857 12c17.143-46.857 94.286-257.714 94.286-296 0-14.286-4.571-32-21.714-32-32 0-66.286 104-74.286 128.571zM373.714 608.571c6.286 16.571 13.143 33.143 18.857 50.286 12.571-14.286 25.714-27.429 40.571-38.286-20-4-40-5.714-59.429-12zM206.857 96.571c0 58.286 69.143 240 90.857 297.714 8-4.571 18.286-5.714 28-5.714 13.714 0 29.143 1.714 42.857 2.857l-69.143-200.571c-7.429-21.714-40.571-125.714-70.286-125.714-15.429 0-22.286 18.286-22.286 31.429zM161.714 530.286c0 41.714 112 195.429 153.714 195.429 11.429 0 21.143-12.571 21.143-22.857 0-13.143-13.143-45.714-18.286-58.286-14.857-38.286-69.143-156.571-116-156.571-15.429 0-40.571 26.857-40.571 42.286zM71.429 721.714c0 20.571 6.857 40.571 14.286 59.429 45.143 111.429 146.857 176.571 265.714 176.571 86.857 0 160-33.143 218.286-97.143 61.714-68.571 86.857-153.143 86.857-244 0-32 0.571-82.857-24.571-105.714-48-42.286-210.857-58.286-275.429-58.286-8 0-21.714 0.571-28 6.286-6.857 2.857-6.857 13.714-6.857 20 0 87.429 184.571 79.429 240 79.429 10.857 0 16 2.857 22.857 10.857 7.429 9.143 9.714 20 10.857 31.429-14.857 14.857-35.429 23.429-54.857 30.857-18.857 6.857-37.143 14.286-53.143 26.286-44 32-87.429 86.857-87.429 143.429 0 35.429 21.143 65.714 21.143 100.571 0 0.571-4 13.143-4 14.857-65.143-4.571-81.143-69.143-83.429-123.429-6.857 1.714-16 1.143-23.429 1.143 1.143 4 1.143 8 1.143 12 0 41.714-37.143 72-77.143 72-61.714 0-143.429-72.571-143.429-135.429 0-17.143 7.429-26.857 18.857-38.286 11.429 14.286 23.429 28.571 34.286 43.429 16.571 22.286 45.143 59.429 76 59.429 8 0 23.429-6.857 23.429-16.571 0-25.714-93.714-146.286-116.571-146.286-36 0-55.429 47.429-55.429 77.143zM6.286 726.857c0-74.286 28.571-123.429 102.286-143.429-6.286-16.571-16-41.714-16-59.429 0-46.857 57.714-105.143 104.571-105.143 13.714 0 27.429 4 40 8.571-24-68-93.143-259.429-93.143-324 0-57.714 29.143-103.429 91.429-103.429 80 0 170.857 288 190.286 345.143 25.143-62.857 104-326.286 193.143-326.286 56 0 87.429 44.571 87.429 97.714 0 60.571-67.429 249.143-90.857 314.286 96 23.429 109.714 101.143 109.714 187.429 0 228.571-145.714 405.714-381.714 405.714-43.429 0-86.286-8.571-127.429-24-108.571-41.143-209.714-152.571-209.714-273.143z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"angellist\"\n        ],\n        \"defaultCode\": 61961,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"angellist\",\n        \"id\": 475,\n        \"order\": 1331,\n        \"prevSize\": 28,\n        \"code\": 61961\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 475\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M448.571 576h118.286c-10.857 120.571-80 193.714-178.857 193.714-123.429 0-198.286-94.857-198.286-246.857 0-150.857 82.286-245.143 186.286-245.143 114.286 0 178.286 70.857 188 190.857h-116c-4-48.571-28-76.571-66.857-76.571-42.857 0-68.571 45.714-68.571 136 0 65.714 11.429 127.429 73.714 127.429 39.429 0 57.714-34.286 62.286-79.429zM855.429 576h117.714c-10.857 120.571-79.429 193.714-178.286 193.714-123.429 0-198.286-94.857-198.286-246.857 0-150.857 82.286-245.143 186.286-245.143 114.286 0 178.286 70.857 188 190.857h-116.571c-3.429-48.571-28-76.571-66.286-76.571-42.857 0-68.571 45.714-68.571 136 0 65.714 10.857 127.429 73.143 127.429 39.429 0 58.286-34.286 62.857-79.429zM1060.571 508c0-153.143-8-219.429-43.429-267.429-7.429-9.714-19.429-16-29.143-22.857-36-26.286-203.429-36-398.286-36s-370.286 9.714-405.714 36c-10.286 7.429-22.857 13.143-30.286 22.857-35.429 47.429-42.857 114.286-42.857 267.429 0 153.714 8 220 42.857 267.429 8 10.857 20 15.429 30.286 23.429 35.429 26.286 210.857 37.143 405.714 37.143s362.286-10.286 398.286-37.143c9.714-7.429 22.286-12 29.143-23.429 36-46.857 43.429-113.714 43.429-267.429zM1170.286 73.143v877.714h-1170.286v-877.714h1170.286z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc\"\n        ],\n        \"defaultCode\": 61962,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc\",\n        \"id\": 476,\n        \"order\": 1332,\n        \"prevSize\": 28,\n        \"code\": 61962\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 476\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M566.857 356.571v283.429c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-283.429c0-85.714-69.714-155.429-155.429-155.429h-155.429v658.286c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-768c0-10.286 8-18.286 18.286-18.286h265.143c156.571 0 283.429 126.857 283.429 283.429zM786.286 91.429v502.857c0 156.571-126.857 283.429-283.429 283.429h-265.143c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286v438.857h155.429c85.714 0 155.429-69.714 155.429-155.429v-502.857c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 786.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ils\",\n          \"shekel\",\n          \"sheqel\"\n        ],\n        \"defaultCode\": 61963,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ils, shekel, sheqel\",\n        \"id\": 477,\n        \"order\": 1333,\n        \"prevSize\": 28,\n        \"code\": 61963\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 477\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M749.143 481.143v65.143c0 18.286-10.857 29.714-29.143 29.714h-115.429c-18.286 0-29.714-11.429-29.714-29.714v-65.143c0-18.286 11.429-29.714 29.714-29.714h115.429c18.286 0 29.143 11.429 29.143 29.714zM469.143 612.571v-142.857c0-40.571-26.857-67.429-67.429-67.429h-76c-25.714 0-44.571 10.857-54.857 29.714-10.286-18.857-29.143-29.714-54.857-29.714h-74.286c-40 0-67.429 26.857-67.429 67.429v142.857c0 8.571 4 12.571 12 12.571h31.429c8.571 0 12.571-4 12.571-12.571v-131.429c0-18.286 10.857-29.714 29.714-29.714h53.714c18.286 0 29.714 11.429 29.714 29.714v131.429c0 8.571 3.429 12.571 12 12.571h30.857c8.571 0 12.571-4 12.571-12.571v-131.429c0-18.286 11.429-29.714 29.714-29.714h55.429c18.286 0 29.143 11.429 29.143 29.714v131.429c0 8.571 4 12.571 12.571 12.571h31.429c8 0 12-4 12-12.571zM805.714 557.714v-88c0-40.571-27.429-67.429-68-67.429h-150.857c-40.571 0-68 26.857-68 67.429v234.286c0 8.571 4.571 12 12.571 12h31.429c8.571 0 12-3.429 12-12v-102.857c10.857 14.857 28 24 53.714 24h109.143c40.571 0 68-27.429 68-67.429zM877.714 205.714v612.571c0 73.143-59.429 132.571-132.571 132.571h-612.571c-73.143 0-132.571-59.429-132.571-132.571v-612.571c0-73.143 59.429-132.571 132.571-132.571h612.571c73.143 0 132.571 59.429 132.571 132.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"meanpath\"\n        ],\n        \"defaultCode\": 61964,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"meanpath\",\n        \"id\": 478,\n        \"order\": 1334,\n        \"prevSize\": 28,\n        \"code\": 61964\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 478\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M522.857 620.571h-168l84-314.857zM572 804.571h177.714l-185.143-585.143h-251.429l-185.143 585.143h177.714l218.857-179.429zM877.714 237.714v548.571c0 90.286-74.286 164.571-164.571 164.571h-548.571c-90.286 0-164.571-74.286-164.571-164.571v-548.571c0-90.286 74.286-164.571 164.571-164.571h548.571c90.286 0 164.571 74.286 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"buysellads\"\n        ],\n        \"defaultCode\": 61965,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"buysellads\",\n        \"id\": 479,\n        \"order\": 1335,\n        \"prevSize\": 28,\n        \"code\": 61965\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 479\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1170.286 511.429c0 16-11.429 29.143-26.286 32l-117.143 203.429c1.143 3.429 1.714 6.857 1.714 10.286 0 15.429-10.857 28.571-25.714 31.429l-110.286 192.571c1.143 2.857 1.714 5.714 1.714 9.143 0 17.714-14.286 32.571-32.571 32.571-9.143 0-17.714-4-23.429-10.286h-228.571c-5.714 6.857-14.857 11.429-24.571 11.429s-18.857-4.571-24.571-11.429h-228c-5.714 6.857-14.286 11.429-24.571 11.429-17.714 0-32.571-14.286-32.571-32.571 0-4 1.143-8 2.286-11.429l-110.286-191.429c-14.857-2.857-25.714-16-25.714-31.429 0-4 0.571-6.857 1.714-10.286l-117.714-203.429c-14.857-3.429-25.714-16.571-25.714-32 0-16 11.429-29.143 26.857-32l113.714-196.571c0-1.143-0.571-2.286-0.571-3.429 0-13.143 8-24 19.429-29.143l119.429-207.429c-1.143-2.857-2.286-6.857-2.286-10.286 0-18.286 14.857-32.571 32.571-32.571 10.286 0 18.857 4.571 25.143 12h226.286c5.714-7.429 14.286-12 24.571-12s18.857 4.571 24.571 12h227.429c6.286-7.429 14.857-12 25.143-12 17.714 0 32.571 14.286 32.571 32.571 0 3.429-1.143 6.857-2.286 10.286l118.286 204.571c17.143 0.571 31.429 14.857 31.429 32 0 5.714-1.714 10.857-4 15.429l106.857 185.143c14.286 2.857 25.143 16 25.143 31.429zM607.429 968h222.286l-195.429-202.286h-81.714l-195.429 202.286h205.714c5.714-5.143 13.714-9.143 22.286-9.143s16.571 4 22.286 9.143zM64 504c0.571 2.286 0.571 4.571 0.571 7.429s0 5.714-1.143 8.571l118.857 205.714c2.857 0.571 5.714 2.286 8.571 3.429l107.429-113.714v-198.286l-106.857-110.857c-5.143 3.429-10.857 5.143-16.571 5.714zM563.429 56h-221.714l108.571 114.286 316.571-114.286h-160c-5.714 5.714-13.143 9.143-21.714 9.143s-16-3.429-21.714-9.143zM965.143 748.571c0.571-2.286 1.714-4.571 2.857-6.286l-36.571-38.857-9.714 45.143h43.429zM904.571 748.571l12.571-60-144-152-169.143 175.429 36 36.571h264.571zM854.286 958.857l9.143-16 37.143-177.143h-244l190.286 196c2.286-1.143 4.571-2.286 7.429-2.857zM330.286 968h2.857l195.429-202.286h-213.143v191.429l2.286 3.429c5.143 1.714 9.143 4 12.571 7.429zM315.429 748.571h229.714l36.571-37.714-176.571-183.429-89.714 94.857v126.286zM205.143 748.571h93.143v-108l-96 101.143c1.143 2.286 2.286 4.571 2.857 6.857zM204.571 277.143c0 0.571 0.571 1.714 0.571 2.286 0 6.286-1.714 12-4.571 16.571l97.714 101.143v-153.714zM315.429 237.143v177.714l87.429 89.714 169.714-179.429-127.429-134.857zM317.714 63.429l-2.286 4.571v150.857l117.143-42.286-109.143-114.857c-1.714 0.571-3.429 1.143-5.714 1.714zM826.857 56h-9.143l-354.857 128 121.714 128.571zM584.571 337.143l-169.714 180 177.714 182.286 169.143-175.429zM393.143 515.429l-77.714-80.571v162.286zM593.143 723.429l-24 25.143h48.571zM785.143 524.571l136 143.429 75.429-356.571-1.714-2.857-0.571-0.571zM981.714 296c-2.857-4.571-4.571-10.286-4.571-16.571v-1.143l-123.429-214.857c-2.857-0.571-5.143-1.714-7.429-2.857l-249.714 264.571 177.143 186.857zM298.286 225.143v-127.429l-93.143 161.143zM298.286 765.714h-93.143l93.143 161.714v-161.714zM918.286 765.714l-27.429 129.714 74.286-129.714h-46.857zM988 725.714l118.286-206.286c-0.571-2.857-1.143-5.143-1.143-8 0-3.429 1.143-6.286 1.714-9.143l-97.714-169.143-73.714 349.714 44 46.857c2.857-1.714 5.714-2.857 8.571-4z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"connectdevelop\"\n        ],\n        \"defaultCode\": 61966,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"connectdevelop\",\n        \"id\": 480,\n        \"order\": 1336,\n        \"prevSize\": 28,\n        \"code\": 61966\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 480\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 388.571c0-98.857 78.857-184 179.429-184h424l201.143-204.571v840c0 99.429-78.857 184-179.429 184h-445.714c-100.571 0-179.429-84.571-179.429-184v-451.429zM704 819.429l-100.571-102.857v-242.857c0-34.857-28-64-62.857-64h-276.571c-34.857 0-62.857 29.143-62.857 64v281.143c0 34.857 28 64.571 62.857 64.571h440z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dashcube\"\n        ],\n        \"defaultCode\": 61968,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"dashcube\",\n        \"id\": 481,\n        \"order\": 1337,\n        \"prevSize\": 28,\n        \"code\": 61968\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 481\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M533.714 85.714c-241.714 92-432 285.143-522.286 527.429-7.429-33.143-11.429-66.857-11.429-100.571 0-241.714 195.429-437.714 437.143-437.714 32.571 0 65.143 4 96.571 10.857zM687.429 153.714c35.429 24.571 66.857 54.286 93.714 88.571-296 86.286-527.429 318.857-612 615.429-33.714-26.286-64-57.143-88.571-92.571 85.143-293.714 313.714-524.571 606.857-611.429zM268.571 916c88-271.429 300.571-485.143 570.857-574.857 15.429 35.429 25.714 73.143 30.857 111.429-222.857 91.429-400 269.714-490.857 493.143-38.286-5.143-75.429-14.857-110.857-29.714zM877.714 949.143c-70.857-18.286-141.143-40-209.714-65.714-50.286 31.429-106.857 52.571-165.714 61.143 83.429-156 212-285.143 367.429-369.143-8 57.143-28 113.143-57.714 162.286 25.714 69.143 47.429 140 65.714 211.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"forumbee\"\n        ],\n        \"defaultCode\": 61969,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"forumbee\",\n        \"id\": 482,\n        \"order\": 1338,\n        \"prevSize\": 28,\n        \"code\": 61969\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 482\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1081.714 224l88.571 726.857c-53.143 0-98.857-10.857-146.857-32.571-71.429-32.571-145.714-52-224.571-52-81.143 0-156 26.857-213.714 84.571-57.714-57.714-132.571-84.571-213.714-84.571-78.857 0-153.143 19.429-224.571 52-46.286 20.571-93.143 32.571-144 32.571h-2.857l88.571-726.857c81.714-46.286 181.143-72.571 275.429-72.571 77.143 0 156.571 16 221.143 60.571 64.571-44.571 144-60.571 221.143-60.571 94.286 0 193.714 26.286 275.429 72.571zM798.857 788c108.571 0 182.857 29.143 281.143 69.714l-70.857-583.429c-64-29.143-140-44.571-210.286-44.571-80 0-154.857 25.143-213.714 80.571-58.857-55.429-133.714-80.571-213.714-80.571-70.286 0-146.286 15.429-210.286 44.571l-70.857 583.429c98.286-40.571 172.571-69.714 281.143-69.714 78.286 0 147.429 20 213.714 61.714 66.286-41.714 135.429-61.714 213.714-61.714zM821.714 768.571l-31.429-518.286c-82.286 1.714-147.429 29.714-205.143 88.571-60-61.143-128-88.571-213.714-88.571-64 0-132.571 13.143-192 37.714l-65.143 537.714c86.286-35.429 162.286-57.714 257.143-57.714 75.429 0 149.143 18.286 213.714 58.286 64.571-40 138.286-60 213.714-58.286z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"leanpub\"\n        ],\n        \"defaultCode\": 61970,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"leanpub\",\n        \"id\": 483,\n        \"order\": 1339,\n        \"prevSize\": 28,\n        \"code\": 61970\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 483\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M857.143 783.429v-418.857c0-16-13.143-29.143-28.571-29.143h-53.143c-15.429 0-28.571 13.143-28.571 29.143v418.857c0 15.429 13.143 28.571 28.571 28.571h53.143c15.429 0 28.571-13.143 28.571-28.571zM694.857 783.429v-303.429c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v303.429c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM528 783.429v-245.143c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v245.143c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM361.143 783.429v-206.857c0-15.429-13.143-28.571-28.571-28.571h-57.714c-15.429 0-28.571 13.143-28.571 28.571v206.857c0 15.429 13.143 28.571 28.571 28.571h57.714c15.429 0 28.571-13.143 28.571-28.571zM1170.286 700c0 126.857-103.429 229.714-229.714 229.714h-710.857c-126.286 0-229.714-102.857-229.714-229.714 0-88.571 52-169.714 132-207.429-4-13.714-5.714-28-5.714-41.714 0-86.286 70.286-156.571 156.571-156.571 37.714 0 74.286 13.714 102.857 38.286 34.286-139.429 160-238.286 304-238.286 172.571 0 313.143 140.571 313.143 313.143 0 23.429-2.286 46.857-8 69.714 102.857 25.143 175.429 117.714 175.429 222.857z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sellsy\"\n        ],\n        \"defaultCode\": 61971,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sellsy\",\n        \"id\": 484,\n        \"order\": 1340,\n        \"prevSize\": 28,\n        \"code\": 61971\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 484\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 0h877.714v795.429l-443.429 193.143-434.286-193.143v-795.429zM820.571 758.286v-529.143h-763.429v529.143l377.714 168zM820.571 172v-114.857h-763.429v114.857h763.429zM103.429 342.286v65.714h-21.143v-65.714h21.143zM103.429 426.857v65.714h-21.143v-65.714h21.143zM103.429 511.429v65.714h-21.143v-65.714h21.143zM103.429 596v65.714h-21.143v-65.714h21.143zM103.429 680.571v65.714h-21.143v-65.714h21.143zM118.286 762.286l8.571-19.429 60 26.857-8.571 18.857zM196 796.571l8.571-19.429 60 26.286-8.571 19.429zM273.143 830.857l8.571-19.429 60 26.286-8.571 19.429zM350.857 864.571l8.571-18.857 59.429 26.286-8.571 19.429zM455.429 872l60-26.286 8.571 18.857-60 26.857zM532.571 837.714l60-26.286 8.571 19.429-60 26.286zM610.286 803.429l60-26.286 8.571 19.429-60 26.286zM687.429 769.714l60-26.857 8.571 19.429-60 26.286zM148 84v20.571h-65.143v-20.571h65.143zM240.571 84v20.571h-65.714v-20.571h65.714zM333.143 84v20.571h-65.714v-20.571h65.714zM425.143 84v20.571h-65.143v-20.571h65.143zM517.714 84v20.571h-65.143v-20.571h65.143zM610.286 84v20.571h-65.714v-20.571h65.714zM702.857 84v20.571h-65.714v-20.571h65.714zM794.857 84v20.571h-65.143v-20.571h65.143zM103.429 278.286v45.143h-21.143v-65.714h65.714v20.571h-44.571zM240.571 257.714v20.571h-65.714v-20.571h65.714zM333.143 257.714v20.571h-65.714v-20.571h65.714zM425.143 257.714v20.571h-65.143v-20.571h65.143zM517.714 257.714v20.571h-65.143v-20.571h65.143zM610.286 257.714v20.571h-65.714v-20.571h65.714zM702.857 257.714v20.571h-65.714v-20.571h65.714zM774.286 323.429v-45.143h-44.571v-20.571h65.714v65.714h-21.143zM774.286 408v-65.714h21.143v65.714h-21.143zM774.286 492.571v-65.714h21.143v65.714h-21.143zM774.286 577.143v-65.714h21.143v65.714h-21.143zM774.286 661.714v-65.714h21.143v65.714h-21.143zM774.286 746.286v-65.714h21.143v65.714h-21.143zM434.286 726.286c-98.286 0-178.857-80-178.857-178.857 0-98.286 80.571-178.857 178.857-178.857 98.857 0 178.857 80.571 178.857 178.857 0 98.857-80 178.857-178.857 178.857zM340 508.571c0 86.857 152 23.429 152 74.286 0 25.714-46.857 28-64 28-24 0-58.286-5.143-70.286-29.143h-1.714l-17.714 36c29.143 18.286 57.143 24 92.571 24 38.286 0 100-11.429 100-61.143 0-94.286-153.714-32-153.714-74.286 0-25.714 40.571-29.143 58.286-29.143 21.143 0 57.143 6.286 69.714 25.714h1.714l17.143-33.143c-29.714-12-53.714-23.429-86.857-23.429-39.429 0-97.143 12.571-97.143 62.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shirtsinbulk\"\n        ],\n        \"defaultCode\": 61972,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"shirtsinbulk\",\n        \"id\": 485,\n        \"order\": 1341,\n        \"prevSize\": 28,\n        \"code\": 61972\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 485\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M493.143 589.714c0-85.714-69.143-154.857-154.857-154.857-85.143 0-154.286 69.143-154.286 154.857 0 85.143 69.143 154.286 154.286 154.286 85.714 0 154.857-69.143 154.857-154.286zM986.286 589.143c0-85.143-69.143-154.286-154.286-154.286-85.714 0-154.857 69.143-154.857 154.286 0 85.714 69.143 154.857 154.857 154.857 85.143 0 154.286-69.143 154.286-154.857zM1170.286 126.857v770.286c0 33.714-27.429 61.143-61.714 61.143h-1046.857c-34.286 0-61.714-27.429-61.714-61.143v-770.286c0-33.714 27.429-61.143 61.714-61.143h246.286c33.714 0 61.714 27.429 61.714 61.143v92h430.857v-92c0-33.714 28-61.143 61.714-61.143h246.286c34.286 0 61.714 27.429 61.714 61.143z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"simplybuilt\"\n        ],\n        \"defaultCode\": 61973,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"simplybuilt\",\n        \"id\": 486,\n        \"order\": 1342,\n        \"prevSize\": 28,\n        \"code\": 61973\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 486\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M817.143 333.143c0 0-0.571-0.571 0 0v0zM965.714 449.714c110.857 0 204.571 82.857 204.571 196 0 120.571-96 209.143-214.857 209.143-303.429 0-359.429-456.571-657.714-456.571-115.429 0-199.429 73.714-199.429 192 0 122.286 91.429 196 209.714 196 77.714 0 166.286-32.571 229.143-77.714 10.286-7.429 30.857-29.714 41.714-29.714s20 9.143 20 20c0 14.286-24 34.857-34.286 44-74.857 65.143-183.429 112-282.857 112-152.571 0-281.714-108-281.714-265.143s123.429-272.571 279.429-272.571c338.857 0 406.857 449.714 661.714 449.714 76.571 0 134.286-49.714 134.286-128 0-72.571-56-127.429-128-127.429-32 0-64 21.143-85.714 21.143-15.429 0-29.143-13.143-29.143-28.571 0-21.143 9.714-43.429 9.714-66.286 0-121.714-93.143-209.714-213.714-209.714-97.143 0-146.286 67.429-162.286 67.429-11.429 0-20.571-9.143-20.571-20.571 0-10.286 7.429-18.857 14.286-26.286 46.286-52.571 118.286-80 188-80 145.143 0 254.286 106.857 254.286 252 0 12.571-0.571 25.143-2.286 37.714 21.714-5.714 44-8.571 65.714-8.571z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"skyatlas\"\n        ],\n        \"defaultCode\": 61974,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"skyatlas\",\n        \"id\": 487,\n        \"order\": 1343,\n        \"prevSize\": 28,\n        \"code\": 61974\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 487\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M694.857 402.286c0-20-16.571-36.571-36.571-36.571h-73.143v-73.143c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v73.143h-73.143c-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571h73.143v73.143c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571v-73.143h73.143c20 0 36.571-16.571 36.571-36.571zM365.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM950.857 256v292.571c0 18.286-13.714 34.286-32.571 36.571l-596.571 69.714c2.286 12.571 7.429 26.857 7.429 40s-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 26.857-61.714 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.857 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cart-plus\"\n        ],\n        \"defaultCode\": 61975,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cart-plus\",\n        \"id\": 488,\n        \"order\": 1344,\n        \"prevSize\": 28,\n        \"code\": 61975\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 488\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 402.286c0-20-16.571-36.571-36.571-36.571-9.714 0-18.857 4-25.714 10.857l-84 83.429v-167.429c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v167.429l-84-83.429c-6.857-6.857-16-10.857-25.714-10.857-20 0-36.571 16.571-36.571 36.571 0 9.714 4 18.857 10.857 25.714l146.286 146.286c6.857 6.857 16 10.857 25.714 10.857s18.857-4 25.714-10.857l146.286-146.286c6.857-6.857 10.857-16 10.857-25.714zM365.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM877.714 877.714c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM950.857 256v292.571c0 18.286-13.714 34.286-32.571 36.571l-596.571 69.714c2.286 12.571 7.429 26.857 7.429 40s-8 25.143-13.714 36.571h525.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571h-585.143c-20 0-36.571-16.571-36.571-36.571 0-17.714 26.857-61.714 34.857-78.286l-101.143-470.286h-116.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h146.286c38.857 0 39.429 45.714 45.143 73.143h686.286c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cart-arrow-down\"\n        ],\n        \"defaultCode\": 61976,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cart-arrow-down\",\n        \"id\": 489,\n        \"order\": 1345,\n        \"prevSize\": 28,\n        \"code\": 61976\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 489\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M121.143 438.857l356 380-171.429-380h-184.571zM585.143 880l199.429-441.143h-398.857zM307.429 365.714l116.571-219.429h-149.714l-164.571 219.429h197.714zM693.143 818.857l356-380h-184.571zM390.286 365.714h389.714l-116.571-219.429h-156.571zM862.857 365.714h197.714l-164.571-219.429h-149.714zM943.429 88l219.429 292.571c10.857 13.714 9.714 33.714-2.286 46.857l-548.571 585.143c-6.857 7.429-16.571 11.429-26.857 11.429s-20-4-26.857-11.429l-548.571-585.143c-12-13.143-13.143-33.143-2.286-46.857l219.429-292.571c6.857-9.714 17.714-14.857 29.143-14.857h658.286c11.429 0 22.286 5.143 29.143 14.857z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"diamond\"\n        ],\n        \"defaultCode\": 61977,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"diamond\",\n        \"id\": 490,\n        \"order\": 1346,\n        \"prevSize\": 28,\n        \"code\": 61977\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 490\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1034.857 888.571c14.286-14.286 37.143-14.286 51.429 0l73.143 73.143-51.429 51.429-47.429-47.429-47.429 47.429c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-73.143-73.143 51.429-51.429 47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429 47.429-47.429c14.286-14.286 37.143-14.286 51.429 0l47.429 47.429zM135.429 866.857c-14.286 14.286-37.143 14.286-51.429 0l-73.143-73.143 51.429-51.429 47.429 46.857 47.429-46.857c14.286-14.286 37.143-14.286 51.429 0l47.429 46.857 36.571-36.571v-167.429l-120-179.429c-13.143-20-4-47.429 18.857-55.429l101.143-33.143v-170.857h73.143v-73.143h146.286v-73.143h146.286v73.143h146.286v73.143h73.143v170.857l101.143 33.143c22.857 8 32 35.429 18.857 55.429l-120 179.429v167.429l10.857-10.286c14.286-14.286 37.143-14.286 51.429 0l47.429 46.857 47.429-46.857c14.286-14.286 37.143-14.286 51.429 0l73.143 73.143-51.429 51.429-47.429-47.429-47.429 47.429c-6.857 7.429-16.571 10.857-25.714 10.857s-18.857-3.429-25.714-10.857l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429-47.429 47.429c-14.286 14.286-37.143 14.286-51.429 0l-47.429-47.429zM365.714 219.429v73.143l219.429-73.143 219.429 73.143v-73.143h-73.143v-73.143h-292.571v73.143h-73.143z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ship\"\n        ],\n        \"defaultCode\": 61978,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ship\",\n        \"id\": 491,\n        \"order\": 1347,\n        \"prevSize\": 28,\n        \"code\": 61978\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 491\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M329.143 877.714l54.857-256-54.857-73.143-73.143-36.571zM475.429 877.714l73.143-365.714-73.143 36.571-54.857 73.143zM566.857 300.571c-0.571-1.143-1.143-2.286-2.286-3.429-5.143-4-46.286-4.571-54.857-4.571-32.571 0-63.429 4.571-95.429 10.857-4 1.143-8 1.143-12 1.143s-8 0-12-1.143c-32-6.286-62.857-10.857-95.429-10.857-8.571 0-49.714 0.571-54.857 4.571-1.143 1.143-1.714 2.286-2.286 3.429 0.571 5.143 1.143 10.286 2.286 15.429 3.429 4.571 6.286 2.857 8.571 9.714 14.857 40.571 21.714 72 73.143 72 73.714 0 53.143-68 77.143-68h6.857c24 0 3.429 68 77.143 68 51.429 0 58.286-31.429 73.143-72 2.286-6.857 5.143-5.143 8.571-9.714 1.143-5.143 1.714-10.286 2.286-15.429zM804.571 802.857c0 93.143-61.143 148-152.571 148h-499.429c-91.429 0-152.571-54.857-152.571-148 0-103.429 18.286-260 124.571-311.429l-51.429-125.714h122.286c-8-23.429-12.571-48-12.571-73.143 0-6.286 0.571-12.571 1.143-18.286-22.286-4.571-110.857-22.857-110.857-54.857 0-33.714 97.143-52 120-56.571 12-42.857 40.571-108 69.714-141.714 11.429-13.143 25.714-21.143 43.429-21.143 34.286 0 61.714 35.429 96 35.429s61.714-35.429 96-35.429c17.714 0 32 8 43.429 21.143 29.143 33.714 57.714 98.857 69.714 141.714 22.857 4.571 120 22.857 120 56.571 0 32-88.571 50.286-110.857 54.857 2.857 30.857-1.143 61.714-11.429 91.429h122.286l-46.857 128.571c102.286 53.143 120 206.857 120 308.571z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"user-secret\"\n        ],\n        \"defaultCode\": 61979,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"user-secret\",\n        \"id\": 492,\n        \"order\": 1348,\n        \"prevSize\": 28,\n        \"code\": 61979\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 492\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1314.857 592c18.286 160.571-112.571 295.429-272 285.143-122.286-8-224-105.714-236.571-228-9.143-86.857 25.143-165.143 83.429-217.714l-40.571-61.143c-72 60-117.714 149.714-117.714 250.286 0 20.571-16 37.714-36.571 37.714h-185.714c-17.714 124-124 219.429-253.143 219.429-141.143 0-256-114.857-256-256s114.857-256 256-256c30.286 0 59.429 5.714 86.857 15.429l13.714-25.714c-44-39.429-101.714-62.857-173.714-62.857h-36.571c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571h73.143c128 0 193.143 52.571 219.429 73.143h358.286l-48.571-73.143h-126.857c-22.286 0-40-20-36-42.857 2.857-17.714 20-30.286 37.714-30.286h144.571c12 0 23.429 6.286 30.286 16l40 60 65.143-65.143c6.857-6.857 16.571-10.857 26.286-10.857h57.714c20 0 36.571 16.571 36.571 36.571v73.143c0 20-16.571 36.571-36.571 36.571h-102.286l65.714 98.286c46.286-22.286 100-31.429 157.143-20.571 109.143 20 194.286 111.429 206.857 221.714zM256 804.571c88.571 0 162.286-62.857 179.429-146.286h-179.429c-12.571 0-24.571-6.857-31.429-17.714-6.286-10.857-6.857-24.571-0.571-36l84-158.286c-16.571-4.571-33.714-7.429-52-7.429-100.571 0-182.857 82.286-182.857 182.857s82.286 182.857 182.857 182.857zM1060.571 804.571c100.571 0 182.857-82.286 182.857-182.857s-82.286-182.857-182.857-182.857c-24.571 0-47.429 5.143-69.143 13.714l99.429 148.571c11.429 17.143 6.857 40-9.714 50.857-6.286 4.571-13.714 6.286-20.571 6.286-12 0-23.429-5.714-30.286-16.571l-99.429-148.571c-32.571 33.143-53.143 78.286-53.143 128.571 0 100.571 82.286 182.857 182.857 182.857z\"\n        ],\n        \"width\": 1333.174857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"motorcycle\"\n        ],\n        \"defaultCode\": 61980,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"motorcycle\",\n        \"id\": 493,\n        \"order\": 1349,\n        \"prevSize\": 28,\n        \"code\": 61980\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 493\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 877.714c0 100.571-208.571 146.286-402.286 146.286s-402.286-45.714-402.286-146.286c0-77.714 116-114.286 213.143-130.857 20-3.429 38.857 9.714 42.286 29.714s-9.714 38.857-29.714 42.286c-117.714 20.571-150.857 52.571-152.571 59.429 5.714 19.429 115.429 72.571 329.143 72.571s323.429-53.143 329.143-73.714c-1.714-5.714-34.857-37.714-152.571-58.286-20-3.429-33.143-22.286-29.714-42.286s22.286-33.143 42.286-29.714c97.143 16.571 213.143 53.143 213.143 130.857zM585.143 365.714v219.429c0 20-16.571 36.571-36.571 36.571h-36.571v219.429c0 20-16.571 36.571-36.571 36.571h-146.286c-20 0-36.571-16.571-36.571-36.571v-219.429h-36.571c-20 0-36.571-16.571-36.571-36.571v-219.429c0-40.571 32.571-73.143 73.143-73.143h219.429c40.571 0 73.143 32.571 73.143 73.143zM530.286 146.286c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"street-view\"\n        ],\n        \"defaultCode\": 61981,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"street-view\",\n        \"id\": 494,\n        \"order\": 1350,\n        \"prevSize\": 28,\n        \"code\": 61981\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 494\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 585.143h174.286c-6.857 7.429-11.429 11.429-12.571 12.571l-356 342.857c-6.857 6.857-16 10.286-25.143 10.286s-18.286-3.429-25.143-10.286l-356.571-344c-1.143-0.571-5.714-4.571-12-11.429h210.857c16.571 0 31.429-11.429 35.429-27.429l40-160.571 108.571 381.143c4.571 15.429 18.857 26.286 35.429 26.286v0c16 0 30.286-10.857 34.857-26.286l83.429-277.143 32 64c6.286 12 18.857 20 32.571 20zM1024 340.571c0 65.714-28.571 125.714-58.857 171.429h-210.857l-63.429-126.286c-6.286-13.143-21.143-21.143-35.429-20-15.429 1.714-28 11.429-32 26.286l-73.714 245.714-112-392c-4.571-15.429-18.857-26.286-36-26.286-16.571 0-30.857 11.429-34.857 27.429l-66.286 265.143h-241.714c-30.286-45.714-58.857-105.714-58.857-171.429 0-167.429 102.286-267.429 273.143-267.429 100 0 193.714 78.857 238.857 123.429 45.143-44.571 138.857-123.429 238.857-123.429 170.857 0 273.143 100 273.143 267.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"heartbeat\"\n        ],\n        \"defaultCode\": 61982,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"heartbeat\",\n        \"id\": 495,\n        \"order\": 1351,\n        \"prevSize\": 28,\n        \"code\": 61982\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 495\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 329.143c0 169.143-128 308.571-292.571 326.857v148.571h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-148.571c-173.143-18.857-305.714-172.571-291.429-353.714 12.571-155.429 136-282.857 290.286-300 198.857-22.286 366.857 132.571 366.857 326.857zM73.143 329.143c0 141.143 114.857 256 256 256s256-114.857 256-256-114.857-256-256-256-256 114.857-256 256z\"\n        ],\n        \"width\": 645.12,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"venus\"\n        ],\n        \"defaultCode\": 61985,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"venus\",\n        \"id\": 496,\n        \"order\": 1352,\n        \"prevSize\": 28,\n        \"code\": 61985\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 496\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M841.143 73.143c20 0 36.571 16.571 36.571 36.571v237.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-149.714l-218.286 218.857c45.143 56 72 127.429 72 205.143 0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143c77.714 0 149.143 26.857 205.143 72l218.286-218.286h-149.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h237.714zM329.143 877.714c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mars\"\n        ],\n        \"defaultCode\": 61986,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mars\",\n        \"id\": 497,\n        \"order\": 1353,\n        \"prevSize\": 28,\n        \"code\": 61986\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 497\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M474.286 180.571c108.571 53.714 184 165.714 184 294.857 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857 0-129.143 75.429-241.143 184-294.857-60-34.857-106.857-89.714-130.286-156-4.571-12 4.571-24.571 17.143-24.571h39.429c7.429 0 13.714 4.571 16.571 11.429 33.143 79.429 111.429 134.857 202.286 134.857s169.143-55.429 202.286-134.857c2.857-6.857 9.143-11.429 21.143-11.429h34.857c12.571 0 21.714 12.571 17.143 24.571-23.429 66.286-70.286 121.143-130.286 156zM329.143 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mercury\"\n        ],\n        \"defaultCode\": 61987,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mercury\",\n        \"id\": 498,\n        \"order\": 1354,\n        \"prevSize\": 28,\n        \"code\": 61987\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 498\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c44.571 56 72 127.429 72 205.143 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-172.571-18.857-305.714-172.571-291.429-353.143 12-155.429 135.429-282.857 289.714-300.571 92.571-10.857 178.286 17.714 243.429 69.714l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM329.143 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 791.4057142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"intersex\",\n          \"transgender\"\n        ],\n        \"defaultCode\": 61988,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"intersex, transgender\",\n        \"id\": 499,\n        \"order\": 1355,\n        \"prevSize\": 28,\n        \"code\": 61988\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 499\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c44.571 56 72 127.429 72 205.143 0 169.143-128 308.571-292.571 326.857v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-164.571-18.286-292.571-157.714-292.571-326.857 0-77.714 27.429-149.143 72-205.143l-29.714-30.286-57.714 63.429c-6.857 7.429-18.286 8-25.714 1.714l-27.429-25.143c-7.429-6.286-8-18.286-1.143-25.714l60-65.714-63.429-64v76.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-164.571c0-20 16.571-36.571 36.571-36.571h164.571c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-76l60.571 61.143 49.143-53.714c6.857-7.429 18.286-8 25.714-1.714l27.429 25.143c7.429 6.286 8 18.286 1.143 25.714l-51.429 56.571 32.571 32c56-44.571 127.429-72 205.143-72s149.143 27.429 205.143 72l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM475.429 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"transgender-alt\"\n        ],\n        \"defaultCode\": 61989,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"transgender-alt\",\n        \"id\": 500,\n        \"order\": 1356,\n        \"prevSize\": 28,\n        \"code\": 61989\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 500\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1022.857 302.286c14.286 181.143-118.286 334.857-291.429 353.714v148.571h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-292.571v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-148.571c-173.143-18.857-305.714-172.571-291.429-353.714 12.571-157.143 138.857-285.714 295.429-300.571 80-8 154.857 13.143 215.429 53.714 60.571-40.571 135.429-61.714 215.429-53.714 156.571 14.857 282.857 143.429 295.429 300.571zM512 508c45.143-46.286 73.143-109.143 73.143-178.857s-28-132.571-73.143-178.857c-45.143 46.286-73.143 109.143-73.143 178.857s28 132.571 73.143 178.857zM329.143 585.143c45.143 0 87.429-12 124.571-32.571-54.857-58.857-88-137.143-88-223.429s33.714-164.571 88-223.429c-37.143-20.571-79.429-32.571-124.571-32.571-141.143 0-256 114.857-256 256s114.857 256 256 256zM658.286 804.571v-148.571c-53.714-5.714-103.429-25.143-146.286-53.714-42.857 28.571-92.571 48-146.286 53.714v148.571h292.571zM694.857 585.143c141.143 0 256-114.857 256-256s-114.857-256-256-256c-45.143 0-87.429 12-124.571 32.571 54.286 58.857 88 137.143 88 223.429s-33.143 164.571-88 223.429c37.143 20.571 79.429 32.571 124.571 32.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"venus-double\"\n        ],\n        \"defaultCode\": 61990,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"venus-double\",\n        \"id\": 501,\n        \"order\": 1357,\n        \"prevSize\": 28,\n        \"code\": 61990\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 501\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 237.714c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c56 70.286 84 163.429 66.857 263.429-24 138.857-137.143 248-276.571 267.429-163.429 22.857-308-74.857-357.714-217.143-180.571-9.143-322.857-164.571-310.857-350.286 10.286-156.571 134.286-286.857 290.286-304.571 92-10.857 177.714 17.714 243.429 69.714l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c22.857 28.571 40.571 61.143 53.143 96.571 70.857 3.429 135.429 29.714 187.429 70.857l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM585.143 475.429c0-11.429-1.143-22.286-2.286-33.143-122.857 18.857-217.143 124.571-217.143 252.571 0 11.429 1.143 22.286 2.286 33.143 122.857-18.857 217.143-124.571 217.143-252.571zM73.143 475.429c0 129.143 96.571 236 221.143 253.143-1.143-10.857-1.714-22.286-1.714-33.714 0-161.143 116.571-295.429 270.286-323.429-40-89.714-129.714-152-233.714-152-141.143 0-256 114.857-256 256zM621.714 950.857c141.143 0 256-114.857 256-256 0-129.143-96.571-236-221.143-253.143 1.143 10.857 1.714 22.286 1.714 33.714 0 161.143-116.571 295.429-270.286 323.429 40 89.714 129.714 152 233.714 152z\"\n        ],\n        \"width\": 1085.7325714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mars-double\"\n        ],\n        \"defaultCode\": 61991,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mars-double\",\n        \"id\": 502,\n        \"order\": 1358,\n        \"prevSize\": 28,\n        \"code\": 61991\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 502\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 18.286c0-10.286 8-18.286 18.286-18.286h164.571c20 0 36.571 16.571 36.571 36.571v164.571c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-76.571l-145.143 145.714c56 70.286 84 163.429 66.857 263.429-24 137.143-135.429 246.286-273.143 266.857-86.857 13.143-168.571-8-233.714-51.429-42.857 28.571-92.571 47.429-146.286 53.143v75.429h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857v54.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-75.429c-179.429-20-316-184.571-289.143-373.714 19.429-142.286 132.571-256.571 274.286-278.286 87.429-13.143 169.143 8 234.286 51.429 52.571-34.857 115.429-55.429 182.857-55.429 77.714 0 149.143 27.429 205.143 72l145.714-145.143h-76.571c-10.286 0-18.286-8-18.286-18.286v-36.571zM512 654.286c45.143-46.286 73.143-109.143 73.143-178.857s-28-132.571-73.143-178.857c-45.143 46.286-73.143 109.143-73.143 178.857s28 132.571 73.143 178.857zM73.143 475.429c0 141.143 114.857 256 256 256 45.143 0 88-12 124.571-32.571-54.286-58.857-88-137.143-88-223.429s33.714-164.571 88-223.429c-36.571-20.571-79.429-32.571-124.571-32.571-141.143 0-256 114.857-256 256zM694.857 731.429c141.143 0 256-114.857 256-256s-114.857-256-256-256c-45.143 0-88 12-124.571 32.571 54.286 58.857 88 137.143 88 223.429s-33.714 164.571-88 223.429c36.571 20.571 79.429 32.571 124.571 32.571z\"\n        ],\n        \"width\": 1146.8799999999999,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"venus-mars\"\n        ],\n        \"defaultCode\": 61992,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"venus-mars\",\n        \"id\": 503,\n        \"order\": 1359,\n        \"prevSize\": 28,\n        \"code\": 61992\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 503\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M841.143 73.143c20 0 36.571 16.571 36.571 36.571v237.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-149.714l-121.714 122.286 80 80c6.857 7.429 6.857 18.857 0 25.714l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-80-80.571-44.571 45.143c45.143 56 72 127.429 72 205.143 0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143c77.714 0 149.143 26.857 205.143 72l44.571-44.571-98.286-98.286c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l98.286 98.286 121.714-121.714h-149.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h237.714zM329.143 877.714c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mars-stroke\"\n        ],\n        \"defaultCode\": 61993,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mars-stroke\",\n        \"id\": 504,\n        \"order\": 1360,\n        \"prevSize\": 28,\n        \"code\": 61993\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 504\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 368c164.571 18.286 292.571 157.714 292.571 326.857 0 194.286-168 349.143-366.857 326.857-154.286-17.143-277.714-144.571-290.286-300-14.286-181.143 118.286-334.857 291.429-353.714v-75.429h-91.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h91.429v-94.286l-52.571 52.571c-7.429 6.857-18.857 6.857-25.714 0l-26.286-26.286c-6.857-6.857-6.857-18.286 0-25.714l115.429-114.857c14.286-14.286 37.143-14.286 51.429 0l115.429 114.857c6.857 7.429 6.857 18.857 0 25.714l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-52.571-52.571v94.286h91.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-91.429v75.429zM329.143 950.857c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 645.12,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mars-stroke-v\"\n        ],\n        \"defaultCode\": 61994,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mars-stroke-v\",\n        \"id\": 505,\n        \"order\": 1361,\n        \"prevSize\": 28,\n        \"code\": 61994\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 505\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1086.286 522.857c14.286 14.286 14.286 37.143 0 51.429l-168 168c-6.857 7.429-18.857 7.429-25.714 0l-25.714-25.714c-7.429-6.857-7.429-18.857 0-25.714l105.714-105.714h-168v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-75.429c-18.286 164.571-157.714 292.571-326.857 292.571-194.286 0-349.143-168-326.857-366.857 17.143-154.286 144.571-277.714 300-290.286 181.143-14.286 334.857 118.286 353.714 291.429h75.429v-128c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v128h168l-105.714-105.714c-7.429-6.857-7.429-18.857 0-25.714l25.714-25.714c6.857-7.429 18.857-7.429 25.714 0zM329.143 804.571c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 1080.5394285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mars-stroke-h\"\n        ],\n        \"defaultCode\": 61995,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mars-stroke-h\",\n        \"id\": 506,\n        \"order\": 1362,\n        \"prevSize\": 28,\n        \"code\": 61995\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 506\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 329.143c0 169.143-128 308.571-292.571 326.857v349.714c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-349.714c-164.571-18.286-292.571-157.714-292.571-326.857 0-181.714 147.429-329.143 329.143-329.143s329.143 147.429 329.143 329.143zM329.143 585.143c141.143 0 256-114.857 256-256s-114.857-256-256-256-256 114.857-256 256 114.857 256 256 256z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"neuter\"\n        ],\n        \"defaultCode\": 61996,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"neuter\",\n        \"id\": 507,\n        \"order\": 1363,\n        \"prevSize\": 28,\n        \"code\": 61996\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 507\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 548.571c0-141.143-114.857-256-256-256s-256 114.857-256 256 114.857 256 256 256 256-114.857 256-256zM658.286 548.571c0 181.714-147.429 329.143-329.143 329.143s-329.143-147.429-329.143-329.143 147.429-329.143 329.143-329.143 329.143 147.429 329.143 329.143z\"\n        ],\n        \"width\": 658.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"genderless\"\n        ],\n        \"defaultCode\": 61997,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"genderless\",\n        \"id\": 508,\n        \"order\": 1364,\n        \"prevSize\": 28,\n        \"code\": 61997\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 508\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M829.143 73.143c26.857 0 48.571 21.714 48.571 48.571v780.571c0 26.857-21.714 48.571-48.571 48.571h-223.429v-340h113.714l17.143-132.571h-130.857v-84.571c0-38.286 10.286-64 65.714-64l69.714-0.571v-118.286c-12-1.714-53.714-5.143-101.714-5.143-101.143 0-170.857 61.714-170.857 174.857v97.714h-114.286v132.571h114.286v340h-420c-26.857 0-48.571-21.714-48.571-48.571v-780.571c0-26.857 21.714-48.571 48.571-48.571h780.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"facebook-official\"\n        ],\n        \"defaultCode\": 62000,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"facebook-official\",\n        \"id\": 509,\n        \"order\": 1365,\n        \"prevSize\": 28,\n        \"code\": 62000\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 509\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 341.143c0-210.857 193.143-341.143 388.571-341.143 179.429 0 342.857 123.429 342.857 312.571 0 177.714-90.857 374.857-293.143 374.857-48 0-108.571-24-132-68.571-43.429 172-40 197.714-136 329.143l-8 2.857-5.143-5.714c-3.429-36-8.571-71.429-8.571-107.429 0-116.571 53.714-285.143 80-398.286-14.286-29.143-18.286-64.571-18.286-96.571 0-57.714 40-130.857 105.143-130.857 48 0 73.714 36.571 73.714 81.714 0 74.286-50.286 144-50.286 216 0 49.143 40.571 83.429 88 83.429 131.429 0 172-189.714 172-290.857 0-135.429-96-209.143-225.714-209.143-150.857 0-267.429 108.571-267.429 261.714 0 73.714 45.143 111.429 45.143 129.143 0 14.857-10.857 67.429-29.714 67.429-2.857 0-6.857-1.143-9.714-1.714-81.714-24.571-111.429-133.714-111.429-208.571z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pinterest-p\"\n        ],\n        \"defaultCode\": 62001,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pinterest-p\",\n        \"id\": 510,\n        \"order\": 1366,\n        \"prevSize\": 28,\n        \"code\": 62001\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 510\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M562.857 556.571c9.714 0 102.857 48.571 106.857 55.429 1.143 2.857 1.143 6.286 1.143 8.571 0 14.286-4.571 30.286-9.714 43.429-13.143 32-66.286 52.571-98.857 52.571-27.429 0-84-24-108.571-35.429-81.714-37.143-132.571-100.571-181.714-173.143-21.714-32-41.143-71.429-40.571-110.857v-4.571c1.143-37.714 14.857-64.571 42.286-90.286 8.571-8 17.714-12.571 29.714-12.571 6.857 0 13.714 1.714 21.143 1.714 15.429 0 18.286 4.571 24 19.429 4 9.714 33.143 87.429 33.143 93.143 0 21.714-39.429 46.286-39.429 59.429 0 2.857 1.143 5.714 2.857 8.571 12.571 26.857 36.571 57.714 58.286 78.286 26.286 25.143 54.286 41.714 86.286 57.714 4 2.286 8 4 12.571 4 17.143 0 45.714-55.429 60.571-55.429zM446.857 859.429c197.714 0 358.857-161.143 358.857-358.857s-161.143-358.857-358.857-358.857-358.857 161.143-358.857 358.857c0 75.429 24 149.143 68.571 210.286l-45.143 133.143 138.286-44c58.286 38.286 127.429 59.429 197.143 59.429zM446.857 69.714c237.714 0 430.857 193.143 430.857 430.857s-193.143 430.857-430.857 430.857c-72.571 0-144.571-18.286-208.571-53.714l-238.286 76.571 77.714-231.429c-40.571-66.857-61.714-144-61.714-222.286 0-237.714 193.143-430.857 430.857-430.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"whatsapp\"\n        ],\n        \"defaultCode\": 62002,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"whatsapp\",\n        \"id\": 511,\n        \"order\": 1367,\n        \"prevSize\": 28,\n        \"code\": 62002\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 511\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M73.143 804.571h585.143v-73.143h-585.143v73.143zM73.143 512h585.143v-73.143h-585.143v73.143zM969.143 768c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM73.143 219.429h585.143v-73.143h-585.143v73.143zM969.143 475.429c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM969.143 182.857c0-30.286-24.571-54.857-54.857-54.857s-54.857 24.571-54.857 54.857 24.571 54.857 54.857 54.857 54.857-24.571 54.857-54.857zM1024 658.286v219.429h-1024v-219.429h1024zM1024 365.714v219.429h-1024v-219.429h1024zM1024 73.143v219.429h-1024v-219.429h1024z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"server\"\n        ],\n        \"defaultCode\": 62003,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"server\",\n        \"id\": 512,\n        \"order\": 1368,\n        \"prevSize\": 28,\n        \"code\": 62003\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 512\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 512c-121.143 0-219.429-98.286-219.429-219.429s98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429-98.286 219.429-219.429 219.429zM950.857 585.143h201.143c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-201.143v201.143c0 9.714-8.571 18.286-18.286 18.286h-109.714c-9.714 0-18.286-8.571-18.286-18.286v-201.143h-201.143c-9.714 0-18.286-8.571-18.286-18.286v-109.714c0-9.714 8.571-18.286 18.286-18.286h201.143v-201.143c0-9.714 8.571-18.286 18.286-18.286h109.714c9.714 0 18.286 8.571 18.286 18.286v201.143zM530.286 713.143c0 40 33.143 73.143 73.143 73.143h146.286v136c-28 20.571-63.429 28.571-97.714 28.571h-499.429c-91.429 0-152.571-54.857-152.571-148 0-129.143 30.286-327.429 197.714-327.429 9.143 0 15.429 4 22.286 9.714 56 42.857 110.286 69.714 182.286 69.714s126.286-26.857 182.286-69.714c6.857-5.714 13.143-9.714 22.286-9.714 48.571 0 91.429 18.286 124 54.857h-127.429c-40 0-73.143 33.143-73.143 73.143v109.714z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"user-plus\"\n        ],\n        \"defaultCode\": 62004,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"user-plus\",\n        \"id\": 513,\n        \"order\": 1369,\n        \"prevSize\": 28,\n        \"code\": 62004\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 513\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 512c-121.143 0-219.429-98.286-219.429-219.429s98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429-98.286 219.429-219.429 219.429zM1017.714 694.857l142.286 142.286c3.429 3.429 5.143 8 5.143 13.143 0 4.571-1.714 9.143-5.143 12.571l-77.714 77.714c-3.429 3.429-8 5.143-12.571 5.143-5.143 0-9.714-1.714-13.143-5.143l-142.286-142.286-142.286 142.286c-3.429 3.429-8 5.143-13.143 5.143-4.571 0-9.143-1.714-12.571-5.143l-77.714-77.714c-3.429-3.429-5.143-8-5.143-12.571 0-5.143 1.714-9.714 5.143-13.143l142.286-142.286-142.286-142.286c-3.429-3.429-5.143-8-5.143-13.143 0-4.571 1.714-9.143 5.143-12.571l77.714-77.714c3.429-3.429 8-5.143 12.571-5.143 5.143 0 9.714 1.714 13.143 5.143l142.286 142.286 142.286-142.286c3.429-3.429 8-5.143 13.143-5.143 4.571 0 9.143 1.714 12.571 5.143l77.714 77.714c3.429 3.429 5.143 8 5.143 12.571 0 5.143-1.714 9.714-5.143 13.143zM733.143 694.857l-103.429 103.429c-13.714 13.714-21.143 32.571-21.143 52 0 18.857 7.429 37.714 21.143 51.429l47.429 47.429c-8 1.143-16.571 1.714-25.143 1.714h-499.429c-91.429 0-152.571-54.857-152.571-148 0-129.143 30.286-327.429 197.714-327.429 9.143 0 15.429 4 22.286 9.714 54.857 43.429 110.857 69.714 182.286 69.714s127.429-26.286 182.286-69.714c6.857-5.714 13.143-9.714 22.286-9.714 10.857 0 21.714 1.143 32.571 3.429-18.857 18.286-30.857 33.143-30.857 60.571 0 19.429 7.429 38.286 21.143 52z\"\n        ],\n        \"width\": 1165.165714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"user-times\"\n        ],\n        \"defaultCode\": 62005,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"user-times\",\n        \"id\": 514,\n        \"order\": 1370,\n        \"prevSize\": 28,\n        \"code\": 62005\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 514\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 585.143h987.429c20 0 36.571 16.571 36.571 36.571v256h-146.286v-146.286h-877.714v146.286h-146.286v-694.857c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v402.286zM475.429 402.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM1170.286 548.571v-36.571c0-121.143-98.286-219.429-219.429-219.429h-402.286c-20 0-36.571 16.571-36.571 36.571v219.429h658.286z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bed\",\n          \"hotel\"\n        ],\n        \"defaultCode\": 62006,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bed, hotel\",\n        \"id\": 515,\n        \"order\": 1371,\n        \"prevSize\": 28,\n        \"code\": 62006\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 515\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 0l-109.714 256h109.714v109.714h-156.571l-31.429 73.143h188v109.714h-234.857l-204 475.429-204-475.429h-234.857v-109.714h188l-31.429-73.143h-156.571v-109.714h109.714l-109.714-256h146.286l184.571 438.857h216l184.571-438.857h146.286zM438.857 694.857l61.714-146.286h-123.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"viacoin\"\n        ],\n        \"defaultCode\": 62007,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"viacoin\",\n        \"id\": 516,\n        \"order\": 1372,\n        \"prevSize\": 28,\n        \"code\": 62007\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 516\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M621.714 0c141.143 0 256 81.714 256 182.857v512c0 98.857-109.143 178.857-246.286 182.286l121.714 115.429c12 11.429 4 31.429-12.571 31.429h-603.429c-16.571 0-24.571-20-12.571-31.429l121.714-115.429c-137.143-3.429-246.286-83.429-246.286-182.286v-512c0-101.143 114.857-182.857 256-182.857h365.714zM438.857 768c60.571 0 109.714-49.143 109.714-109.714s-49.143-109.714-109.714-109.714-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714zM768 438.857v-292.571h-658.286v292.571h658.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"train\"\n        ],\n        \"defaultCode\": 62008,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"train\",\n        \"id\": 517,\n        \"order\": 1373,\n        \"prevSize\": 28,\n        \"code\": 62008\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 517\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M621.714 0c141.143 0 256 81.714 256 182.857v512c0 98.857-109.143 178.857-246.286 182.286l121.714 115.429c12 11.429 4 31.429-12.571 31.429h-603.429c-16.571 0-24.571-20-12.571-31.429l121.714-115.429c-137.143-3.429-246.286-83.429-246.286-182.286v-512c0-101.143 114.857-182.857 256-182.857h365.714zM164.571 749.714c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM402.286 438.857v-292.571h-310.857v292.571h310.857zM713.143 749.714c50.286 0 91.429-41.143 91.429-91.429s-41.143-91.429-91.429-91.429-91.429 41.143-91.429 91.429 41.143 91.429 91.429 91.429zM804.571 438.857v-292.571h-329.143v292.571h329.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"subway\"\n        ],\n        \"defaultCode\": 62009,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"subway\",\n        \"id\": 518,\n        \"order\": 1374,\n        \"prevSize\": 28,\n        \"code\": 62009\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 518\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M341.143 240.571v670.286c0 17.714-8.571 34.286-28 34.286-6.857 0-13.143-1.714-18.857-4.571l-265.714-133.143c-16-8-28.571-28.571-28.571-45.714v-651.429c0-14.286 6.857-27.429 22.286-27.429 9.143 0 17.143 4.571 25.143 8.571l292 146.286c0.571 0.571 1.714 2.286 1.714 2.857zM377.714 298.286l305.143 494.857-305.143-152v-342.857zM1024 308.571v602.286c0 18.857-10.857 32-29.714 32-9.714 0-18.857-2.857-26.857-7.429l-252-125.714zM1022.286 240c0 2.286-295.429 481.714-318.286 518.286l-222.857-362.286 185.143-301.143c6.286-10.286 17.714-16 29.714-16 5.143 0 10.286 1.143 14.857 3.429l309.143 154.286c1.143 0.571 2.286 1.714 2.286 3.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"medium\"\n        ],\n        \"defaultCode\": 62010,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"medium\",\n        \"id\": 519,\n        \"order\": 1375,\n        \"prevSize\": 28,\n        \"code\": 62010\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 519\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M462.286 573.714l152-285.143h-64l-89.714 178.286s-13.714 27.429-25.143 52.571c-10.857-26.286-24-52.571-24-52.571l-88.571-178.286h-68.571l150.286 281.714v185.143h57.714v-181.714zM877.714 73.143v877.714h-877.714v-877.714h877.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"y-combinator\",\n          \"yc\"\n        ],\n        \"defaultCode\": 62011,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"y-combinator, yc\",\n        \"id\": 520,\n        \"order\": 1376,\n        \"prevSize\": 28,\n        \"code\": 62011\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 520\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M273.143 957.143c-5.714 12-22.286 28.571-36.571 34.286-20 6.857-44.571-6.286-45.714-20-1.143-17.714 42.857-49.714 61.714-53.143 18.286-3.429 26.857 24 20.571 38.857zM1039.429 957.143c5.143 12 21.714 28.571 36.571 34.286 19.429 6.857 44.571-6.286 45.143-20 1.714-17.714-42.857-49.714-61.714-53.143-17.714-3.429-26.286 24-20 38.857zM1066.857 894.857c10.286 20.571 50.857 50.857 76.571 57.714 34.857 9.714 68-6.857 68-31.429 0-37.714-71.429-88-104.571-91.429-31.429-4-52 40.571-40 65.143zM244.571 894.857c-10.286 20.571-50.286 50.857-76 57.714-34.857 9.714-68-6.857-68-31.429 0-37.714 71.429-88 104.571-91.429 31.429-4 52 40.571 39.429 65.143zM661.714 252.571h0.571c-15.429 0-30.286 2.857-43.429 8.571 20 6.286 34.857 24.571 34.857 45.714 0 26.857-23.429 48.571-52.571 48.571-19.429 0-36.571-10.286-45.714-24.571-1.714 8-2.857 15.429-2.857 24 0 56.571 48.571 102.286 109.143 102.286s109.714-45.714 109.714-102.286-49.143-102.286-109.714-102.286zM835.429 128c-75.429-82.857-172-101.143-266.286-49.714 53.143-118.857 258.286-102.857 266.286 49.714zM1264 836c2.857 4-0.571 14.286-6.286 24 2.286 7.429 4 14.857 4 22.857 1.714 66.857-93.714 135.429-155.429 137.714-36.571 1.714-73.143-17.714-90.286-49.714-240 8.571-480 10.286-719.429 0-17.714 32-54.286 50.857-90.857 49.714-61.143-2.286-156.571-70.857-155.429-137.714 0.571-8 1.714-15.429 4-22.857-5.714-9.714-9.143-20-6.286-24 2.286-3.429 9.714-3.429 17.714-0.571 6.857-10.857 14.857-20 23.429-29.143-2.286-9.714-2.286-18.286 1.143-21.714 4-3.429 13.143-2.286 22.286 2.286 9.714-6.857 21.143-13.714 33.714-19.429 0-10.286 2.857-18.286 7.429-21.143 6.857-3.429 18.857-1.143 29.143 9.143 12-1.714 24-1.714 34.857 1.143 7.429 1.714 14.857 5.714 21.714 10.857v-41.714c-3.429 0-6.286 0-10.286-1.143-37.143-6.857-77.714-32.571-86.857-75.429-3.429-14.286-3.429-29.714 0-46.286 6.857-28.571 31.429-45.143 53.143-54.286 1.714-12.571 17.143-29.714 31.429-33.714 16-4 26.286 9.714 29.714 21.714h7.429c10.286 1.143 26.857 3.429 34.286 13.143 1.143 1.143 2.286 2.857 2.857 4 11.429-1.143 23.429-2.857 34.857-4-5.143-4-10.857-7.429-17.143-9.714-10.857-18.857-29.143-23.429-52-24.571 0-1.714 0-3.429 0.571-5.714-41.714-1.143-93.143-12-116-37.714-26.286-29.143-30.857-78.857-25.714-116.571 4.571-37.143 20-80 51.429-102.286 17.714-12 45.714-1.714 48 20.571 1.143 9.714 2.857 42.857 12 48 10.286 5.143 26.857 7.429 43.429 6.857 17.143-16.571 35.429-30.857 56-42.286-31.429-2.857-61.143 3.429-92.571 8l26.857-26.286c26.286-25.143 61.143-46.857 93.143-63.429 49.714-25.143 105.714-44 161.143-49.143-39.429-16.571-84.571-25.143-126.286-34.857 161.714-34.286 369.143-46.857 516.571 79.429 38.286 32.571 68.571 76.571 90.286 126.857 23.429 2.857 53.143 3.429 69.143-5.143h0.571c9.143-5.143 10.857-37.714 12-48 2.286-21.714 30.286-32.571 48-20 31.429 22.286 46.857 65.143 52 101.714 4.571 37.714 0.571 87.429-26.286 116.571-22.857 25.714-72.571 37.143-113.714 38.286v5.714c-23.429 0.571-42.857 5.143-54.286 24.571-6.286 2.286-12 5.714-17.714 9.714 12 1.143 24 2.857 35.429 4 0.571-1.714 1.714-3.429 2.857-4.571 8-9.143 24.571-12 34.286-13.143h7.429c3.429-11.429 14.286-25.143 29.714-21.714s29.714 21.143 31.429 33.714c22.857 9.143 46.857 25.714 53.143 54.286 4 17.143 3.429 32 0.571 46.286-9.714 42.857-50.286 69.143-87.429 75.429-2.857 0.571-6.857 1.143-9.714 1.143 0 14.286 0 28-0.571 41.714 6.857-5.143 13.714-9.143 21.714-10.857 10.857-2.857 22.857-2.857 34.857-1.143 10.286-10.286 22.857-12.571 29.143-9.143 4.571 2.857 8 10.857 8 21.143 12 5.714 24 12.571 33.714 19.429 9.143-4.571 17.714-5.714 21.714-2.286 3.429 3.429 4 12 1.143 21.714 8.571 9.143 17.143 18.857 23.429 29.143 8-2.857 14.857-2.857 17.714 0.571zM1106.857 292c0 13.143-2.857 24.571-5.143 30.857 36.571 14.286 55.429 46.857 64 75.429 2.286-22.286-5.714-83.429-29.143-108-15.429-15.429-29.714-10.857-29.714 1.714zM1062.286 349.143v0c27.429 33.143 36 88 26.857 133.143 22.857-4.571 43.429-13.143 55.429-25.714 4-4.571 8-10.286 10.286-16-2.286-45.143-21.714-90.286-62.857-103.429-6.857 6.857-19.429 10.286-29.714 12v0zM1041.143 351.429c-8 0-17.143 0-25.143-0.571 16 43.429 26.286 90.286 30.286 136.571 7.429 0 16-0.571 24.571-1.714 12.571-51.429-0.571-109.143-29.714-134.286zM147.429 398.286c8.571-28.571 27.429-61.143 64-75.429-2.286-6.286-5.143-17.714-5.143-30.857 0-12.571-14.857-17.143-29.714-1.714-24 24.571-31.429 85.714-29.143 108zM168 456.571c12 13.143 32.571 21.143 55.429 25.714-9.143-45.143-0.571-100 26.857-133.143v0 0 0c-10.286-1.714-22.857-5.143-29.714-12-41.143 13.143-60 58.286-62.857 103.429 2.857 5.714 6.286 11.429 10.286 16zM269.143 487.429c5.143-46.857 19.429-92.571 41.714-134.286-10.857 2.286-21.143 6.286-31.429 10.286l-25.714 10.857v-0.571c-15.429 29.714-21.143 72.571-11.429 112 9.714 1.143 18.286 1.714 26.857 1.714zM819.429 509.714v0c7.429 37.714 10.286 75.429 16 113.143 2.286 13.143 6.286 16 18.857 9.714 33.714-17.143 48-82.857 48.571-120.571-27.429-1.714-55.429-1.714-83.429-2.286zM658.286 143.429c-88.571 0-161.143 72-161.143 160.571 0 89.143 72.571 161.143 161.143 161.143s161.143-72 161.143-161.143c0-88.571-72.571-160.571-161.143-160.571zM788.571 508.571c-40-0.571-80.571-0.571-120.571 0v-0.571c-0.571 10.857 0.571 80.571 9.143 86.857 23.429 11.429 83.429 9.714 108 2.286 11.429-3.429 5.143-78.286 3.429-88.571zM635.429 622.286c9.714-5.143 5.143-96 2.857-113.714v-0.571c-41.143 0.571-81.714 0.571-122.286 1.714-4 19.429-9.714 103.429 4 109.143 27.429 12 88 10.857 115.429 3.429zM410.286 514.286c-11.429 41.714 0.571 95.429 46.857 116 11.429 5.143 18.286 5.143 20.571-9.143 4-18.286 5.143-77.714 10.286-110.286v0c-25.714 0.571-52 1.714-77.714 3.429zM337.714 586.286c1.143 10.286-8 16.571-19.429 20.571 92.571 99.429 196 181.143 329.714 225.143 142.857-40.571 244.571-126.857 345.143-226.286-10.286-4-18.286-10.857-17.143-19.429 0.571-2.286 1.143-3.429 1.714-5.143v0 0c-18.857-1.714-37.714-4-56-5.714-20 69.714-76 112-98.857 66.857-5.714-10.857-7.429-24.571-9.714-35.429-8 17.714-28 17.143-52 18.857-28 2.286-66.857 2.857-93.143-6.286-6.286 27.429-23.429 27.429-56.571 30.286-29.714 2.857-102.857 8.571-116-22.857-2.286 60.571-74.286 21.143-95.429-14.857-6.857-12-11.429-24-14.857-37.143-16.571 1.714-33.143 3.429-49.714 5.714 1.143 1.714 1.714 4 2.286 5.714zM289.714 945.143c1.143-5.143 1.714-10.857 1.714-17.143-12-49.143-39.429-105.143-70.857-114.286-47.429-14.286-145.714 49.714-140 115.429 26.857 41.143 84.571 75.429 125.143 77.143 37.714 1.714 76-23.429 84-61.143zM291.429 847.429c6.857 18.857 13.714 44 15.429 68 70.857-41.143 146.286-75.429 224-99.429-81.714-43.429-144-101.143-205.714-162.857-4.571 2.857-10.857 5.143-16.571 7.429-0.571 1.714-0.571 3.429-1.143 5.143 9.714 5.714 16.571 12.571 12.571 21.143-4.571 8.571-18.286 16-32 19.429-4.571 5.714-10.857 10.286-16.571 13.714h-0.571c-0.571 28.571-0.571 57.143 0.571 85.714 8 14.286 14.857 29.143 20 41.714zM330.857 942.286c218.286 8.571 436.571 7.429 654.286 0-77.714-45.143-156.571-87.429-244.571-112-29.143 13.143-58.857 24-89.143 32.571-4.571 1.714-4.571 1.714-9.143 0-25.143-8-49.143-17.143-73.714-28-85.143 24.571-163.429 61.714-237.714 107.429h-0.571v0.571c0.571 0 0.571 0 0.571-0.571zM1007.429 916c1.714-24 9.143-49.714 16-68.571 4.571-12.571 10.857-26.857 18.857-40.571l-0.571 0.571c1.143-29.143 1.714-58.286 1.714-87.429-6.286-3.429-12-8.571-17.143-14.286-13.714-2.857-27.429-10.857-32-18.857-4-8.571 2.857-16 12.571-21.714-0.571-1.143-1.143-3.429-1.143-5.143-6.286-1.714-11.429-4-16-6.857-66.857 62.286-138.286 120-218.857 162.286 82.286 24.571 160.571 59.429 236.571 100.571zM1231.429 929.143c6.286-65.714-92-129.714-140-115.429-30.857 9.143-58.857 65.143-70.857 114.286 0 6.286 0.571 12 1.714 17.143 8 37.714 46.286 62.857 84 61.143 40.571-1.714 98.286-36 125.143-77.143z\"\n        ],\n        \"width\": 1311.9634285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"optin-monster\"\n        ],\n        \"defaultCode\": 62012,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"optin-monster\",\n        \"id\": 521,\n        \"order\": 1377,\n        \"prevSize\": 28,\n        \"code\": 62012\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 521\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M870.857 892c0 52-41.714 93.714-93.714 93.714s-94.286-41.714-94.286-93.714 42.286-94.286 94.286-94.286 93.714 42.286 93.714 94.286zM442.857 892c0 52-42.286 93.714-94.286 93.714s-93.714-41.714-93.714-93.714 41.714-94.286 93.714-94.286 94.286 42.286 94.286 94.286zM0 38.286c168.571 177.714 326.857 204 948.571 204s348.571 138.286-35.429 481.143c121.714-211.429 540-398.857-145.714-388.571-657.714 9.714-696.571-190.286-767.429-296.571z\"\n        ],\n        \"width\": 1570.304,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"opencart\"\n        ],\n        \"defaultCode\": 62013,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"opencart\",\n        \"id\": 522,\n        \"order\": 1378,\n        \"prevSize\": 28,\n        \"code\": 62013\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 522\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 36.571c-262.286 0-475.429 213.143-475.429 475.429s213.143 475.429 475.429 475.429 475.429-213.143 475.429-475.429-213.143-475.429-475.429-475.429zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512zM283.429 475.429c5.143 0 9.143 4 9.143 9.143v274.286c0 5.143-4 9.143-9.143 9.143h-18.286c-5.143 0-9.143-4-9.143-9.143v-274.286c0-5.143 4-9.143 9.143-9.143h18.286zM512 512c40.571 0 73.143 32.571 73.143 73.143 0 26.857-14.857 50.286-36.571 62.857v65.143c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-65.143c-21.714-12.571-36.571-36-36.571-62.857 0-40.571 32.571-73.143 73.143-73.143zM512 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM310.857 347.429v54.857c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-54.857c0-70.857 57.143-128 128-128s128 57.143 128 128v54.857c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-54.857c0-110.857-90.286-201.143-201.143-201.143s-201.143 90.286-201.143 201.143zM804.571 768v-292.571c0-20-16.571-36.571-36.571-36.571h-512c-20 0-36.571 16.571-36.571 36.571v292.571c0 20 16.571 36.571 36.571 36.571h512c20 0 36.571-16.571 36.571-36.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"expeditedssl\"\n        ],\n        \"defaultCode\": 62014,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"expeditedssl\",\n        \"id\": 523,\n        \"order\": 1379,\n        \"prevSize\": 28,\n        \"code\": 62014\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 523\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1097.143 292.571v438.857h-950.857v-438.857h950.857zM1170.286 621.714h73.143v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571zM1316.571 402.286v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429c40.571 0 73.143 32.571 73.143 73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery\",\n          \"battery-4\",\n          \"battery-full\"\n        ],\n        \"defaultCode\": 62016,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"battery, battery-4, battery-full\",\n        \"id\": 524,\n        \"order\": 1380,\n        \"prevSize\": 28,\n        \"code\": 62016\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 524\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 731.429v-438.857h731.429v438.857h-731.429zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery-3\",\n          \"battery-three-quarters\"\n        ],\n        \"defaultCode\": 62017,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"battery-3, battery-three-quarters\",\n        \"id\": 525,\n        \"order\": 1381,\n        \"prevSize\": 28,\n        \"code\": 62017\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 525\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 731.429v-438.857h512v438.857h-512zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery-2\",\n          \"battery-half\"\n        ],\n        \"defaultCode\": 62018,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"battery-2, battery-half\",\n        \"id\": 526,\n        \"order\": 1382,\n        \"prevSize\": 28,\n        \"code\": 62018\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 526\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 731.429v-438.857h292.571v438.857h-292.571zM1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery-1\",\n          \"battery-quarter\"\n        ],\n        \"defaultCode\": 62019,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"battery-1, battery-quarter\",\n        \"id\": 527,\n        \"order\": 1383,\n        \"prevSize\": 28,\n        \"code\": 62019\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 527\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1243.429 329.143c40.571 0 73.143 32.571 73.143 73.143v219.429c0 40.571-32.571 73.143-73.143 73.143v91.429c0 50.286-41.143 91.429-91.429 91.429h-1060.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h1060.571c50.286 0 91.429 41.143 91.429 91.429v91.429zM1243.429 621.714v-219.429h-73.143v-164.571c0-10.286-8-18.286-18.286-18.286h-1060.571c-10.286 0-18.286 8-18.286 18.286v548.571c0 10.286 8 18.286 18.286 18.286h1060.571c10.286 0 18.286-8 18.286-18.286v-164.571h73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery-0\",\n          \"battery-empty\"\n        ],\n        \"defaultCode\": 62020,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"battery-0, battery-empty\",\n        \"id\": 528,\n        \"order\": 1384,\n        \"prevSize\": 28,\n        \"code\": 62020\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 528\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M647.429 596c10.857 10.286 13.714 26.286 8 39.429-5.714 13.714-18.857 22.857-33.714 22.857h-218.286l114.857 272c8 18.857-1.143 40-19.429 48l-101.143 42.857c-18.857 8-40-1.143-48-19.429l-109.143-258.286-178.286 178.286c-6.857 6.857-16 10.857-25.714 10.857-4.571 0-9.714-1.143-13.714-2.857-13.714-5.714-22.857-18.857-22.857-33.714v-859.429c0-14.857 9.143-28 22.857-33.714 4-1.714 9.143-2.857 13.714-2.857 9.714 0 18.857 3.429 25.714 10.857z\"\n        ],\n        \"width\": 661.1382857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mouse-pointer\"\n        ],\n        \"defaultCode\": 62021,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mouse-pointer\",\n        \"id\": 529,\n        \"order\": 1385,\n        \"prevSize\": 28,\n        \"code\": 62021\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 529\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M475.429 73.143c-121.143 0-182.857 42.857-182.857 128v237.714h73.143v73.143h-73.143v310.857c0 85.143 61.714 128 182.857 128h36.571v73.143h-36.571c-102.857 0-178.286-29.714-219.429-83.429-41.143 53.714-116.571 83.429-219.429 83.429h-36.571v-73.143h36.571c121.143 0 182.857-42.857 182.857-128v-310.857h-73.143v-73.143h73.143v-237.714c0-85.143-61.714-128-182.857-128h-36.571v-73.143h36.571c102.857 0 178.286 29.714 219.429 83.429 41.143-53.714 116.571-83.429 219.429-83.429h36.571v73.143h-36.571z\"\n        ],\n        \"width\": 512,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"i-cursor\"\n        ],\n        \"defaultCode\": 62022,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"i-cursor\",\n        \"id\": 530,\n        \"order\": 1386,\n        \"prevSize\": 28,\n        \"code\": 62022\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 530\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1170.286 219.429h-73.143v585.143h73.143v219.429h-219.429v-73.143h-731.429v73.143h-219.429v-219.429h73.143v-585.143h-73.143v-219.429h219.429v73.143h731.429v-73.143h219.429v219.429zM1024 73.143v73.143h73.143v-73.143h-73.143zM73.143 73.143v73.143h73.143v-73.143h-73.143zM146.286 950.857v-73.143h-73.143v73.143h73.143zM950.857 877.714v-73.143h73.143v-585.143h-73.143v-73.143h-731.429v73.143h-73.143v585.143h73.143v73.143h731.429zM1097.143 950.857v-73.143h-73.143v73.143h73.143zM731.429 365.714h219.429v438.857h-512v-146.286h-219.429v-438.857h512v146.286zM292.571 585.143h365.714v-292.571h-365.714v292.571zM877.714 731.429v-292.571h-146.286v219.429h-219.429v73.143h365.714z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"object-group\"\n        ],\n        \"defaultCode\": 62023,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"object-group\",\n        \"id\": 531,\n        \"order\": 1387,\n        \"prevSize\": 28,\n        \"code\": 62023\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 531\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1316.571 438.857h-73.143v365.714h73.143v219.429h-219.429v-73.143h-512v73.143h-219.429v-219.429h73.143v-73.143h-219.429v73.143h-219.429v-219.429h73.143v-365.714h-73.143v-219.429h219.429v73.143h512v-73.143h219.429v219.429h-73.143v73.143h219.429v-73.143h219.429v219.429zM1170.286 292.571v73.143h73.143v-73.143h-73.143zM804.571 73.143v73.143h73.143v-73.143h-73.143zM73.143 73.143v73.143h73.143v-73.143h-73.143zM146.286 731.429v-73.143h-73.143v73.143h73.143zM877.714 658.286h-73.143v73.143h73.143v-73.143zM219.429 658.286h512v-73.143h73.143v-365.714h-73.143v-73.143h-512v73.143h-73.143v365.714h73.143v73.143zM512 950.857v-73.143h-73.143v73.143h73.143zM1243.429 950.857v-73.143h-73.143v73.143h73.143zM1170.286 804.571v-365.714h-73.143v-73.143h-219.429v219.429h73.143v219.429h-219.429v-73.143h-219.429v73.143h73.143v73.143h512v-73.143h73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"object-ungroup\"\n        ],\n        \"defaultCode\": 62024,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"object-ungroup\",\n        \"id\": 532,\n        \"order\": 1388,\n        \"prevSize\": 28,\n        \"code\": 62024\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 532\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 713.143v237.714h-530.286c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h768c30.286 0 54.857 24.571 54.857 54.857v530.286h-237.714c-30.286 0-54.857 24.571-54.857 54.857zM658.286 731.429h217.714c-5.143 27.429-20 58.286-37.143 75.429l-105.143 105.143c-17.143 17.143-48 32-75.429 37.143v-217.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sticky-note\"\n        ],\n        \"defaultCode\": 62025,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sticky-note\",\n        \"id\": 533,\n        \"order\": 1389,\n        \"prevSize\": 28,\n        \"code\": 62025\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 533\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M800 731.429h-141.714v141.714c9.714-3.429 19.429-8.571 23.429-12.571l105.714-105.714c4-4 9.143-13.714 12.571-23.429zM640 658.286h164.571v-512h-731.429v731.429h512v-164.571c0-30.286 24.571-54.857 54.857-54.857zM877.714 128v585.143c0 30.286-17.714 72.571-38.857 93.714l-105.143 105.143c-21.143 21.143-63.429 38.857-93.714 38.857h-585.143c-30.286 0-54.857-24.571-54.857-54.857v-768c0-30.286 24.571-54.857 54.857-54.857h768c30.286 0 54.857 24.571 54.857 54.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sticky-note-o\"\n        ],\n        \"defaultCode\": 62026,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sticky-note-o\",\n        \"id\": 534,\n        \"order\": 1390,\n        \"prevSize\": 28,\n        \"code\": 62026\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 534\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1114.857 570.286c0 20.571-13.714 35.429-30.857 38.857-2.286 0.571-7.429 1.143-10.286 1.143h-87.429v-80h87.429c2.857 0 8 0.571 10.286 1.143 17.143 3.429 30.857 18.857 30.857 38.857zM1104.571 448.571c0 20-13.714 33.143-30.286 36-1.714 0.571-5.714 0.571-8.571 0.571h-79.429v-73.714h79.429c2.857 0 6.857 0.571 8.571 0.571 16.571 2.857 30.286 16.571 30.286 36.571zM416 542.286v-176h-130.286v176c0 42.857-29.143 74.857-81.714 74.857-44.571 0-88.571-13.143-130.857-33.714v64c68.571 18.857 155.429 18.857 155.429 18.857 145.143 0 187.429-55.429 187.429-124zM824 647.429v-64.571c-29.714 15.429-67.429 30.286-114.286 33.714-82.286 6.286-131.429-33.714-131.429-104.571s49.143-110.857 131.429-104.571c46.857 3.429 84 17.714 114.286 33.143v-64c-61.143-15.429-118.857-17.714-118.857-17.714-201.143-9.143-258.286 70.286-258.286 153.143s57.143 162.286 258.286 153.143c0 0 57.714-2.286 118.857-17.714zM1243.429 581.714c0-42.286-37.714-69.714-86.857-73.143v-1.714c44.571-6.286 69.143-35.429 69.143-69.143 0-43.429-36-68.571-84.571-70.857-3.429 0-9.714-0.571-14.857-0.571h-260v291.429h280.571c55.429 0 96.571-29.714 96.571-76zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc-jcb\"\n        ],\n        \"defaultCode\": 62027,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc-jcb\",\n        \"id\": 535,\n        \"order\": 1391,\n        \"prevSize\": 28,\n        \"code\": 62027\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 535\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M490.286 709.143v-396c-79.429 30.857-136 108-136 198.286s56.571 167.429 136 197.714zM778.286 511.429c0-90.286-56.571-167.429-136-198.286v396.571c79.429-30.857 136-108 136-198.286zM901.143 511.429c0 184.571-149.714 334.857-334.857 334.857-184.571 0-334.857-150.286-334.857-334.857 0-185.143 150.286-334.857 334.857-334.857 185.143 0 334.857 149.714 334.857 334.857zM1120 515.429c0-218.286-182.286-369.143-382.286-369.143h-172c-202.286 0-369.143 150.857-369.143 369.143 0 199.429 166.857 362.286 369.143 362.286h172c200 0 382.286-162.857 382.286-362.286zM1316.571 146.286v731.429c0 40-33.143 73.143-73.143 73.143h-1170.286c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h1170.286c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cc-diners-club\"\n        ],\n        \"defaultCode\": 62028,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"cc-diners-club\",\n        \"id\": 536,\n        \"order\": 1392,\n        \"prevSize\": 28,\n        \"code\": 62028\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 536\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 932.571v-621.714c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286v621.714c0 9.714 8.571 18.286 18.286 18.286h621.714c9.714 0 18.286-8.571 18.286-18.286zM1024 310.857v621.714c0 50.286-41.143 91.429-91.429 91.429h-621.714c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429zM804.571 91.429v91.429h-73.143v-91.429c0-9.714-8.571-18.286-18.286-18.286h-621.714c-9.714 0-18.286 8.571-18.286 18.286v621.714c0 9.714 8.571 18.286 18.286 18.286h91.429v73.143h-91.429c-50.286 0-91.429-41.143-91.429-91.429v-621.714c0-50.286 41.143-91.429 91.429-91.429h621.714c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"clone\"\n        ],\n        \"defaultCode\": 62029,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"clone\",\n        \"id\": 537,\n        \"order\": 1393,\n        \"prevSize\": 28,\n        \"code\": 62029\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 537\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M987.429 256l-219.429 402.286h438.857zM256 256l-219.429 402.286h438.857zM725.143 146.286c-10.857 30.857-36 56-66.857 66.857v737.714h347.429c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-768c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h347.429v-737.714c-30.857-10.857-56-36-66.857-66.857h-280.571c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h280.571c15.429-42.857 55.429-73.143 103.429-73.143s88 30.286 103.429 73.143h280.571c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-280.571zM621.714 155.429c25.143 0 45.714-20.571 45.714-45.714s-20.571-45.714-45.714-45.714-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714zM1243.429 658.286c0 117.714-162.857 164.571-256 164.571s-256-46.857-256-164.571v0c0-22.286 199.429-375.429 224-420 6.286-11.429 18.857-18.857 32-18.857s25.714 7.429 32 18.857c24.571 44.571 224 397.714 224 420v0zM512 658.286c0 117.714-162.857 164.571-256 164.571s-256-46.857-256-164.571v0c0-22.286 199.429-375.429 224-420 6.286-11.429 18.857-18.857 32-18.857s25.714 7.429 32 18.857c24.571 44.571 224 397.714 224 420z\"\n        ],\n        \"width\": 1243.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"balance-scale\"\n        ],\n        \"defaultCode\": 62030,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"balance-scale\",\n        \"id\": 538,\n        \"order\": 1394,\n        \"prevSize\": 28,\n        \"code\": 62030\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 538\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM499.429 477.714c115.429-43.429 232-196 232-404.571h-585.143c0 208.571 116.571 361.143 232 404.571 14.286 5.143 24 18.857 24 34.286s-9.714 29.143-24 34.286c-115.429 43.429-232 196-232 404.571h585.143c0-208.571-116.571-361.143-232-404.571-14.286-5.143-24-18.857-24-34.286s9.714-29.143 24-34.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hourglass-o\"\n        ],\n        \"defaultCode\": 62032,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hourglass-o\",\n        \"id\": 539,\n        \"order\": 1395,\n        \"prevSize\": 28,\n        \"code\": 62032\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 539\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM731.429 73.143h-585.143c0 25.143 1.714 49.714 5.143 73.143h574.857c3.429-23.429 5.143-48 5.143-73.143zM731.429 950.857c0-205.143-113.143-356.571-226.857-402.286h-131.429c-113.714 45.714-226.857 197.143-226.857 402.286h585.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hourglass-1\",\n          \"hourglass-start\"\n        ],\n        \"defaultCode\": 62033,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hourglass-1, hourglass-start\",\n        \"id\": 540,\n        \"order\": 1396,\n        \"prevSize\": 28,\n        \"code\": 62033\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 540\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM731.429 73.143h-585.143c0 83.429 18.857 157.143 48.571 219.429h488c29.714-62.286 48.571-136 48.571-219.429zM698.857 768c-42.286-110.286-118.286-188.571-194.286-219.429h-131.429c-76 30.857-152 109.143-194.286 219.429h520z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hourglass-2\",\n          \"hourglass-half\"\n        ],\n        \"defaultCode\": 62034,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hourglass-2, hourglass-half\",\n        \"id\": 541,\n        \"order\": 1397,\n        \"prevSize\": 28,\n        \"code\": 62034\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 541\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804.571 73.143c0 211.429-101.143 364.571-213.143 438.857 112 74.286 213.143 227.429 213.143 438.857h54.857c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857c0-211.429 101.143-364.571 213.143-438.857-112-74.286-213.143-227.429-213.143-438.857h-54.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h841.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-54.857zM499.429 477.714c115.429-43.429 232-196 232-404.571h-585.143c0 208.571 116.571 361.143 232 404.571 14.286 5.143 24 18.857 24 34.286s-9.714 29.143-24 34.286c-49.143 18.286-98.857 57.143-139.429 112h400c-40.571-54.857-90.286-93.714-139.429-112-14.286-5.143-24-18.857-24-34.286s9.714-29.143 24-34.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hourglass-3\",\n          \"hourglass-end\"\n        ],\n        \"defaultCode\": 62035,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hourglass-3, hourglass-end\",\n        \"id\": 542,\n        \"order\": 1398,\n        \"prevSize\": 28,\n        \"code\": 62035\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 542\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M859.429 914.286c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h841.143zM74.286 877.714c10.857-192.571 168-296 273.143-365.714-105.143-69.714-262.286-173.143-273.143-365.714h729.143c-10.857 192.571-168 296-273.143 365.714 105.143 69.714 262.286 173.143 273.143 365.714h-729.143zM859.429 0c10.286 0 18.286 8 18.286 18.286v73.143c0 10.286-8 18.286-18.286 18.286h-841.143c-10.286 0-18.286-8-18.286-18.286v-73.143c0-10.286 8-18.286 18.286-18.286h841.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hourglass\"\n        ],\n        \"defaultCode\": 62036,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hourglass\",\n        \"id\": 543,\n        \"order\": 1399,\n        \"prevSize\": 28,\n        \"code\": 62036\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 543\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 219.429c-40.571 0-73.143 32.571-73.143 73.143v73.143h-18.286v-53.143c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v245.143l-18.286-17.143v-98.286c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v128c0 17.714 7.429 34.286 20 46.857l177.143 169.143c16.571 16.571 22.286 35.429 22.286 58.286 0 20 16.571 36.571 36.571 36.571h365.714c20 0 36.571-16.571 36.571-36.571v-14.286c0-14.857 1.714-29.714 5.714-44l61.714-249.143c4-14.286 5.714-29.143 5.714-44v-140.571c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v18.286h-18.286v-71.429c0-30.286-20.571-58.286-50.857-64.571-4-0.571-8.571-1.143-13.143-1.143-35.429 0-64 28.571-64 64v73.143h-18.286v-69.714c0-38.286-27.429-72-65.714-76-2.857-0.571-5.143-0.571-7.429-0.571zM438.857 146.286c30.857 0 60.571 9.714 85.143 28.571 21.143-12.571 45.714-19.429 70.286-19.429 45.143 0 86.857 21.714 112.571 58.857 10.857-2.857 22.286-4 33.714-4 76.571 0 137.143 62.857 137.143 138.857v140.571c0 20.571-2.857 41.714-7.429 61.714l-62.286 249.143c-3.429 13.714-3.429 26.857-3.429 40.571 0 60.571-49.143 109.714-109.714 109.714h-365.714c-65.143 0-109.714-52-109.714-114.857l-176-169.143c-26.857-25.714-43.429-62.286-43.429-100v-128c0-75.429 61.714-137.143 137.143-137.143 3.429 0 6.286 0 9.143 0.571 4.571-72.571 65.143-128.571 137.143-128.571 19.429 0 38.286 4 56 12 26.857-25.714 62.286-39.429 99.429-39.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-grab-o\",\n          \"hand-rock-o\"\n        ],\n        \"defaultCode\": 62037,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-grab-o, hand-rock-o\",\n        \"id\": 544,\n        \"order\": 1400,\n        \"prevSize\": 28,\n        \"code\": 62037\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 544\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M502.857 73.143c-35.429 0-64 28.571-64 64v374.857h-18.286v-301.714c0-35.429-28.571-64-64-64s-64 28.571-64 64v448l-88-117.143c-13.714-18.286-35.429-29.143-58.286-29.143-40.571 0-73.143 33.143-73.143 73.143 0 16 5.143 31.429 14.857 44l219.429 292.571c13.714 18.286 35.429 29.143 58.286 29.143h393.143c26.286 0 49.143-18.857 54.286-44.571l43.429-231.429c1.714-10.857 2.857-22.286 2.857-33.714v-284.571c0-35.429-28.571-64-64-64s-64 28.571-64 64v155.429h-18.286v-301.714c0-35.429-28.571-64-64-64s-64 28.571-64 64v301.714h-18.286v-374.857c0-35.429-28.571-64-64-64zM502.857 0c51.429 0 98.857 29.143 122.286 75.429 8-1.714 16-2.286 24-2.286 75.429 0 137.143 61.714 137.143 137.143v9.714c79.429-4.571 146.286 56.571 146.286 136.571v284.571c0 16-1.714 32-4.571 47.429l-43.429 230.857c-10.857 60.571-64 104.571-125.714 104.571h-393.143c-45.714 0-89.714-22.286-117.143-58.286l-219.429-292.571c-18.857-25.143-29.143-56.571-29.143-88 0-80.571 65.143-146.286 146.286-146.286 24 0 53.143 5.714 73.143 19.429v-248c0-75.429 61.714-137.143 137.143-137.143 8 0 16 0.571 24 2.286 23.429-46.286 70.857-75.429 122.286-75.429z\"\n        ],\n        \"width\": 932.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-paper-o\",\n          \"hand-stop-o\"\n        ],\n        \"defaultCode\": 62038,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-paper-o, hand-stop-o\",\n        \"id\": 545,\n        \"order\": 1401,\n        \"prevSize\": 28,\n        \"code\": 62038\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 545\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M613.143 950.857h-101.143c-59.429 0-104.571-25.714-129.143-80.571-8.571-18.286-13.143-38.286-13.143-58.286v-2.857c-46.857-22.857-77.143-70.857-77.143-123.429 0-6.286 0-21.714 2.857-27.429h-149.143c-80.571 0-146.286-65.714-146.286-146.286s65.714-146.286 146.286-146.286h64.571l-25.143-9.714c-56.571-21.143-94.286-76-94.286-136.571 0-80.571 65.714-146.286 146.286-146.286 17.714 0 35.429 3.429 52 9.714l358.857 136.571h229.143c80.571 0 146.286 65.714 146.286 146.286v381.714c0 67.429-45.714 125.714-110.857 141.714l-193.714 48.571c-34.286 8.571-70.286 13.143-106.286 13.143zM585.143 544.571l-88.571 40.571-93.143 42.286c-22.857 10.286-37.714 33.143-37.714 58.286 0 35.429 28.571 64 64 64 9.143 0 18.286-1.714 26.286-5.714l193.143-88c-37.143-8-64-41.714-64-80v-31.429zM768 722.286c0-35.429-28.571-64-64-64-9.143 0-18.286 1.714-26.286 5.714l-165.714 75.429c-34.286 15.429-69.143 29.143-69.143 72.571 0 37.714 26.286 65.143 64.571 65.143 6.857 0 16-2.286 21.714-5.143l201.143-91.429c22.857-10.286 37.714-33.143 37.714-58.286zM635.429 292.571l-371.429-141.714c-8.571-2.857-17.143-4.571-26.286-4.571-40 0-73.143 32.571-73.143 73.143 0 30.286 18.857 57.714 46.857 68.571l300.571 114.286v36.571h-365.714c-40.571 0-73.143 32.571-73.143 73.143s32.571 73.143 73.143 73.143h305.714l133.143-60.571v-113.143c0-22.857 9.714-45.143 26.286-60.571l63.429-58.286h-39.429zM613.143 877.714c29.714 0 60-3.429 88.571-10.857l193.714-48.571c32.571-8 55.429-37.143 55.429-70.857v-381.714c0-40.571-32.571-73.143-73.143-73.143h-176l-77.714 72c-13.143 12-20.571 29.143-20.571 46.857v169.143c0 35.429 29.143 61.714 64 61.714 35.429 0 64-31.429 64-66.286v-118.857h18.286v118.857c0 25.714-12.571 49.714-32.571 65.143 40 6.286 69.143 41.143 69.143 81.143 0 32-18.857 61.714-48 74.857l-177.143 80.571h52z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-scissors-o\"\n        ],\n        \"defaultCode\": 62039,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-scissors-o\",\n        \"id\": 546,\n        \"order\": 1402,\n        \"prevSize\": 28,\n        \"code\": 62039\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 546\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M657.714 0c46.286 0 90.857 22.286 118.286 60l326.857 446.286c44 59.429 67.429 130.857 67.429 205.143v202.857c0 60.571-49.143 109.714-109.714 109.714h-219.429c-60.571 0-109.714-49.143-109.714-109.714v-101.143l-163.429-81.714h-312c-60.571 0-109.714-49.143-109.714-109.714v-18.286c0-90.857 73.714-164.571 164.571-164.571h240l24-73.143h-392c-76 0-139.429-58.286-145.714-133.714-24-29.143-37.143-66.286-37.143-104v-18.286c0-60.571 49.143-109.714 109.714-109.714h548zM1097.143 914.286v-202.857c0-57.714-18.857-115.429-53.143-162.286l-327.429-446.286c-13.714-18.286-35.429-29.714-58.857-29.714h-548c-20 0-36.571 16.571-36.571 36.571 0 30.286 0.571 51.429 20.571 76 7.429-23.429 28.571-39.429 52.571-39.429h475.429v18.286h-475.429c-20 0-36.571 16.571-36.571 36.571 0 10.857-0.571 22.286 1.714 33.143 6.286 33.714 37.143 58.286 71.429 58.286h417.714c30.286 0 54.857 24.571 54.857 54.857 0 5.714-1.143 12-2.857 17.143l-36.571 109.714c-7.429 22.286-28.571 37.714-52 37.714h-253.143c-50.286 0-91.429 41.143-91.429 91.429v18.286c0 20 16.571 36.571 36.571 36.571h320.571c5.714 0 11.429 1.143 16.571 4l181.143 90.286c18.286 9.714 30.286 28.571 30.286 49.143v112.571c0 20 16.571 36.571 36.571 36.571h219.429c20 0 36.571-16.571 36.571-36.571z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-lizard-o\"\n        ],\n        \"defaultCode\": 62040,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-lizard-o\",\n        \"id\": 547,\n        \"order\": 1403,\n        \"prevSize\": 28,\n        \"code\": 62040\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 547\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M262.286 1024c-58.857 0-109.714-40-124-97.143l-57.714-229.143c-4.571-20-7.429-41.143-7.429-61.714 0-13.143 0-25.714-2.857-38.286l-66.286-272.571c-2.857-10.857-4-21.714-4-32.571 0-70.857 53.714-129.143 124-136.571 12.571-64.571 68-110.286 134.286-110.286 63.429 0 118.286 43.429 133.143 105.143l47.429 198.857 58.857-244.571c14.857-61.714 69.714-105.143 133.143-105.143 68 0 124 49.143 134.857 115.429 70.286 8 121.143 67.429 121.143 137.714 0 10.857-1.714 22.286-4 33.714l-70.286 292.571c45.714-34.286 78.857-67.429 138.857-67.429 79.429 0 145.714 64.571 145.714 144.571 0 48-23.429 92.571-61.143 121.143l-289.714 217.143c-25.143 18.857-56 29.143-87.429 29.143h-396.571zM630.857 73.143c-29.143 0-54.857 20.571-61.714 49.143l-93.714 389.714h-72.571l-82.857-344c-6.857-28.571-32.571-49.143-61.714-49.143-36.571 0-64 29.143-64 64.571 0 5.714 0.571 10.857 1.714 16l75.429 312.571h-14.857l-56.571-233.143c-6.857-28-32.571-50.286-62.286-50.286-35.429 0-64.571 28.571-64.571 64 0 5.143 0.571 10.286 1.714 14.857l66.286 273.143c8 33.143 2.286 66.286 10.857 99.429l57.143 229.143c6.286 24.571 28 41.714 53.143 41.714h396.571c15.429 0 30.857-5.143 43.429-14.857l289.714-216.571c19.429-14.857 32-38.286 32-62.857 0-40-33.143-71.429-72.571-71.429-16 0-31.429 5.143-44 14.857l-175.429 131.429v-129.714c0-4.571 73.714-307.429 79.429-332 1.143-5.143 2.286-10.857 2.286-16.571 0-35.429-26.857-65.714-63.429-65.714-29.714 0-55.429 20.571-62.286 49.143l-66.286 275.429h-14.857l85.714-356.571c1.143-5.143 1.714-10.857 1.714-16 0-36-26.286-66.286-63.429-66.286z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-spock-o\"\n        ],\n        \"defaultCode\": 62041,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-spock-o\",\n        \"id\": 548,\n        \"order\": 1404,\n        \"prevSize\": 28,\n        \"code\": 62041\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 548\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 73.143c-40.571 0-73.143 32.571-73.143 73.143v512l-86.286-115.429c-14.286-18.857-37.143-30.857-61.143-30.857-40 0-72 33.714-72 73.143 0 16 5.143 31.429 14.857 44l219.429 292.571c13.714 18.286 35.429 29.143 58.286 29.143h410.286c16.571 0 31.429-11.429 35.429-27.429l52.571-210.286c9.143-36.571 13.714-73.714 13.714-110.857v-124c0-30.286-23.429-57.714-54.857-57.714-30.286 0-54.857 24.571-54.857 54.857h-18.286v-34.857c0-36-27.429-65.714-64-65.714-35.429 0-64 28.571-64 64v36.571h-18.286v-51.429c0-41.143-31.429-76.571-73.143-76.571-40.571 0-73.143 32.571-73.143 73.143v54.857h-18.286v-325.714c0-41.143-31.429-76.571-73.143-76.571zM365.714 0c81.714 0 146.286 68.571 146.286 149.714v125.714c6.286-0.571 12-1.143 18.286-1.143 37.143 0 72 14.286 98.857 39.429 17.714-8 37.143-12 56.571-12 41.143 0 79.429 18.286 105.143 49.714 10.857-2.857 21.143-4 32-4 72 0 128 60 128 130.857v124c0 42.857-5.143 86.286-16 128.571l-52.571 210.286c-12 48.571-56 82.857-106.286 82.857h-410.286c-45.714 0-89.714-22.286-117.143-58.286l-219.429-292.571c-18.857-25.143-29.143-56.571-29.143-88 0-80 65.143-146.286 145.143-146.286 26.286 0 52 6.857 74.286 20v-312.571c0-80.571 65.714-146.286 146.286-146.286zM438.857 804.571v-219.429h-18.286v219.429h18.286zM585.143 804.571v-219.429h-18.286v219.429h18.286zM731.429 804.571v-219.429h-18.286v219.429h18.286z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-pointer-o\"\n        ],\n        \"defaultCode\": 62042,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-pointer-o\",\n        \"id\": 549,\n        \"order\": 1405,\n        \"prevSize\": 28,\n        \"code\": 62042\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 549\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M736 369.714c21.143 0 42.286 4 61.143 13.143 54.857 24.571 80.571 69.714 80.571 129.143v101.143c0 36-4.571 72-13.143 106.286l-48.571 193.714c-16 65.143-74.286 110.857-141.714 110.857h-381.714c-80.571 0-146.286-65.714-146.286-146.286v-229.143l-136.571-358.857c-6.286-16.571-9.714-34.286-9.714-52 0-80.571 65.714-146.286 146.286-146.286 60.571 0 115.429 37.714 136.571 94.286l9.714 25.143v-64.571c0-80.571 65.714-146.286 146.286-146.286s146.286 65.714 146.286 146.286v149.143c9.143-1.714 18.286-2.857 27.429-2.857 52.571 0 100.571 30.286 123.429 77.143zM612.571 365.714c-25.143 0-48 14.857-58.286 37.714l-42.286 93.143-40.571 88.571h31.429c38.286 0 72 26.857 80 64l88-193.143c4-8 5.714-17.143 5.714-26.286 0-35.429-28.571-64-64-64zM738.857 442.857c-43.429 0-57.143 34.857-72.571 69.143l-75.429 165.714c-4 8-5.714 17.143-5.714 26.286 0 35.429 28.571 64 64 64 25.143 0 48-14.857 58.286-37.714l91.429-201.143c2.857-5.714 5.143-14.857 5.143-21.714 0-38.286-27.429-64.571-65.143-64.571zM73.143 237.714c0 9.143 1.714 17.714 4.571 26.286l141.714 371.429v39.429l58.286-63.429c15.429-16.571 37.714-26.286 60.571-26.286h113.143l60.571-133.143v-305.714c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143v365.714h-36.571l-114.286-300.571c-10.857-28-38.286-46.857-68.571-46.857-40.571 0-73.143 33.143-73.143 73.143zM674.286 950.857c33.714 0 62.857-22.857 70.857-55.429l48.571-193.714c7.429-28.571 10.857-58.857 10.857-88.571v-52l-80.571 177.143c-13.143 29.143-42.857 48-74.857 48-40 0-74.857-29.143-81.143-69.143-15.429 20-39.429 32.571-65.143 32.571h-118.857v-18.286h118.857c34.857 0 66.286-28.571 66.286-64 0-34.857-26.286-64-61.714-64h-169.143c-17.714 0-34.857 7.429-46.857 20.571l-72 77.714v176c0 40.571 32.571 73.143 73.143 73.143h381.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hand-peace-o\"\n        ],\n        \"defaultCode\": 62043,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hand-peace-o\",\n        \"id\": 550,\n        \"order\": 1406,\n        \"prevSize\": 28,\n        \"code\": 62043\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 550\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M489.714 310.857v66.857c0 9.714-8.571 17.714-18.286 17.714h-170.286v464c0 10.286-8 18.286-17.714 18.286h-77.143c-10.286 0-18.286-8-18.286-18.286v-464h-169.714c-10.286 0-18.286-8-18.286-17.714v-66.857c0-10.286 8-18.286 18.286-18.286h453.143c9.714 0 18.286 8 18.286 18.286zM1082.857 309.143l44 549.143c0.571 5.143-1.143 9.714-4.571 13.714-3.429 3.429-8 5.714-13.143 5.714h-76.571c-9.143 0-17.143-7.429-17.714-16.571l-26.286-336-108 242.857c-2.857 6.857-9.143 10.857-16.571 10.857h-68.571c-6.857 0-13.143-4-16.571-10.857l-107.429-244-25.714 337.143c-0.571 9.143-8.571 16.571-17.714 16.571h-77.143c-5.143 0-9.714-2.286-13.143-5.714-3.429-4-5.143-8.571-5.143-13.714l44.571-549.143c0.571-9.143 8.571-16.571 17.714-16.571h81.143c7.429 0 13.714 4.571 16.571 10.857l125.714 297.143c4 9.143 8 19.429 11.429 29.143 4-9.714 7.429-20 11.429-29.143l126.286-297.143c2.857-6.286 9.143-10.857 16.571-10.857h80.571c9.714 0 17.714 7.429 18.286 16.571z\"\n        ],\n        \"width\": 1127.424,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"trademark\"\n        ],\n        \"defaultCode\": 62044,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"trademark\",\n        \"id\": 551,\n        \"order\": 1407,\n        \"prevSize\": 28,\n        \"code\": 62044\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 551\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M595.429 401.714c0-33.143-11.429-56.571-34.286-69.143-11.429-6.286-27.429-10.286-66.857-10.286h-70.286v160.571h92.571c50.286 0 78.857-29.714 78.857-81.143zM625.143 564.571l117.143 213.143c2.857 5.714 2.857 12.571-0.571 17.714-2.857 5.714-9.143 9.143-15.429 9.143h-86.857c-6.857 0-13.143-3.429-16-9.714l-110.857-208.571h-88.571v200c0 10.286-8 18.286-18.286 18.286h-76.571c-10.286 0-18.286-8-18.286-18.286v-548.571c0-10.286 8-18.286 18.286-18.286h168c60 0 86.286 5.143 108.571 13.714 64.571 24 104.571 87.429 104.571 165.143 0 70.286-34.857 129.714-90.286 157.143 1.714 2.857 3.429 5.714 5.143 9.143zM512 91.429c-232 0-420.571 188.571-420.571 420.571s188.571 420.571 420.571 420.571 420.571-188.571 420.571-420.571-188.571-420.571-420.571-420.571zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"registered\"\n        ],\n        \"defaultCode\": 62045,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"registered\",\n        \"id\": 552,\n        \"order\": 1408,\n        \"prevSize\": 28,\n        \"code\": 62045\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 552\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M345.714 704.571c93.714 0 144.571-57.143 146.857-59.429 4.571-5.714 5.714-14.286 1.714-20.571l-25.714-46.857c-2.286-5.143-8-8.571-13.714-9.714-5.714-0.571-11.429 1.714-15.429 6.286-0.571 0-36.571 38.286-89.143 38.286-57.714 0-99.429-42.286-99.429-101.143 0-58.286 40.571-100 97.143-100 47.429 0 78.857 32 78.857 32 4 4 9.143 6.286 14.857 5.714s10.857-3.429 13.714-8l30.286-44.571c4.571-6.857 4-16-1.143-22.286-1.714-2.286-48-54.857-138.857-54.857-112.571 0-196.571 82.857-196.571 192.571 0 111.429 82.286 192.571 196.571 192.571zM705.714 704.571c94.286 0 144.571-57.143 146.857-59.429 4.571-5.714 5.714-14.286 2.286-20.571l-25.714-46.857c-2.857-5.143-8-8.571-14.286-9.714-5.714-0.571-11.429 1.714-15.429 6.286-0.571 0-36.571 38.286-89.143 38.286-57.714 0-99.429-42.286-99.429-101.143 0-58.286 40.571-100 97.143-100 48 0 78.857 32 78.857 32 4 4 9.143 6.286 14.857 5.714s10.857-3.429 13.714-8l30.286-44.571c4.571-6.857 4-16-1.143-22.286-1.714-2.286-48-54.857-138.857-54.857-112 0-196.571 82.857-196.571 192.571 0 111.429 82.286 192.571 196.571 192.571zM512 91.429c-232 0-420.571 188.571-420.571 420.571s188.571 420.571 420.571 420.571 420.571-188.571 420.571-420.571-188.571-420.571-420.571-420.571zM512 0c282.857 0 512 229.143 512 512s-229.143 512-512 512-512-229.143-512-512 229.143-512 512-512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"creative-commons\"\n        ],\n        \"defaultCode\": 62046,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"creative-commons\",\n        \"id\": 553,\n        \"order\": 1409,\n        \"prevSize\": 28,\n        \"code\": 62046\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 553\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M420.571 457.143l219.429 219.429-219.429 219.429-384-384 384-384 96 96-54.857 54.857-41.143-41.143-274.286 274.286 274.286 274.286 110.286-110.286-165.143-164zM749.714 128l384 384-384 384-96-96 54.857-54.857 41.143 41.143 274.286-274.286-274.286-274.286-110.286 110.286 165.143 164-54.857 54.857-219.429-219.429z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gg\"\n        ],\n        \"defaultCode\": 62048,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"gg\",\n        \"id\": 554,\n        \"order\": 1410,\n        \"prevSize\": 28,\n        \"code\": 62048\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 554\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M409.714 773.714l154.857-154.857-159.429-159.429-50.286 50.286 109.714 109.143-54.857 54.857-159.429-159.429 159.429-159.429 22.857 22.857 49.714-49.714-72.571-73.143-259.429 259.429zM614.286 769.143l259.429-259.429-259.429-259.429-154.857 154.857 159.429 159.429 50.286-50.286-109.714-109.143 54.857-54.857 159.429 159.429-159.429 159.429-22.857-22.857-49.714 50.286zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gg-circle\"\n        ],\n        \"defaultCode\": 62049,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"gg-circle\",\n        \"id\": 555,\n        \"order\": 1411,\n        \"prevSize\": 28,\n        \"code\": 62049\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 555\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M372 569.714c0 29.714-24 53.714-53.143 53.714-29.714 0-53.714-24-53.714-53.714 0-29.143 24-53.143 53.714-53.143 29.143 0 53.143 24 53.143 53.143zM1031.429 569.143c0 29.714-24 53.714-53.714 53.714s-53.714-24-53.714-53.714 24-53.143 53.714-53.143 53.714 23.429 53.714 53.143zM437.143 569.714c0-60.571-49.714-110.286-110.286-110.286-61.143 0-110.286 49.714-110.286 110.286 0 61.143 49.143 110.286 110.286 110.286 60.571 0 110.286-49.143 110.286-110.286zM1096 569.143c0-60.571-49.143-110.286-110.286-110.286-60.571 0-110.286 49.714-110.286 110.286 0 61.143 49.714 110.286 110.286 110.286 61.143 0 110.286-49.143 110.286-110.286zM485.714 569.714c0 88-70.857 159.429-158.857 159.429s-159.429-71.429-159.429-159.429c0-87.429 71.429-158.857 159.429-158.857s158.857 71.429 158.857 158.857zM1145.143 569.143c0 88-71.429 158.857-159.429 158.857-87.429 0-158.857-70.857-158.857-158.857s71.429-158.857 158.857-158.857c88 0 159.429 70.857 159.429 158.857zM594.286 570.857c0-145.714-118.286-264-264-264-145.143 0-263.429 118.286-263.429 264s118.286 264 263.429 264c145.714 0 264-118.286 264-264zM976 243.429c-94.286-41.143-200.571-63.429-317.714-63.429s-233.714 22.286-327.429 62.857c181.143 0.571 327.429 146.857 327.429 328 0-177.714 141.143-322.286 317.714-327.429zM1249.714 570.857c0-145.714-117.714-264-263.429-264s-264 118.286-264 264 118.286 264 264 264 263.429-118.286 263.429-264zM1097.714 247.429h218.857c-34.286 40-59.429 93.714-65.714 130.857 39.429 54.286 62.857 120.571 62.857 192.571 0 181.143-146.857 327.429-327.429 327.429-102.857 0-194.286-46.857-254.286-120.571 0 0-26.857 32-73.714 102.286-8-16.571-48.571-74.286-73.143-102.857-60 74.286-152 121.143-254.857 121.143-180.571 0-327.429-146.286-327.429-327.429 0-72 23.429-138.286 62.857-192.571-6.286-37.143-31.429-90.857-65.714-130.857h208.571c112-74.857 274.857-121.714 449.714-121.714s327.429 46.857 439.429 121.714z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tripadvisor\"\n        ],\n        \"defaultCode\": 62050,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"tripadvisor\",\n        \"id\": 556,\n        \"order\": 1412,\n        \"prevSize\": 28,\n        \"code\": 62050\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 556\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 518.286c-142.857 0-259.429-116-259.429-258.857 0-143.429 116.571-259.429 259.429-259.429s259.429 116 259.429 259.429c0 142.857-116.571 258.857-259.429 258.857zM365.714 131.429c-70.286 0-127.429 57.143-127.429 128 0 70.286 57.143 127.429 127.429 127.429s127.429-57.143 127.429-127.429c0-70.857-57.143-128-127.429-128zM664.571 549.714c25.143 51.429-3.429 76-68.571 118.286-54.857 34.857-130.286 48.571-180 53.714l41.714 41.143 152.571 152.571c22.857 23.429 22.857 61.143 0 84l-6.857 7.429c-23.429 22.857-61.143 22.857-84.571 0-38.286-38.857-94.286-94.857-152.571-153.143l-152.571 153.143c-23.429 22.857-61.143 22.857-84 0l-6.857-7.429c-23.429-22.857-23.429-60.571 0-84 38.857-38.857 94.286-94.857 152.571-152.571l41.143-41.143c-49.143-5.143-125.714-18.286-181.143-53.714-65.143-42.286-93.714-66.857-68.571-118.286 14.857-29.143 55.429-53.714 109.143-11.429 0 0 72.571 57.714 189.714 57.714s189.714-57.714 189.714-57.714c53.714-42.286 94.286-17.714 109.143 11.429z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"odnoklassniki\"\n        ],\n        \"defaultCode\": 62051,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"odnoklassniki\",\n        \"id\": 557,\n        \"order\": 1413,\n        \"prevSize\": 28,\n        \"code\": 62051\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 557\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M529.714 331.429c0 50.286-40.571 90.857-90.857 90.857s-90.857-40.571-90.857-90.857 40.571-90.857 90.857-90.857 90.857 40.571 90.857 90.857zM652 538.857c-10.286-20.571-39.429-38.286-77.714-8 0 0-52 41.143-135.429 41.143s-135.429-41.143-135.429-41.143c-38.286-30.286-67.429-12.571-77.714 8-18.286 36.571 2.286 54.286 48.571 84.571 39.429 25.143 94.286 34.857 129.143 38.286l-29.143 29.714c-41.143 41.143-81.143 81.143-109.143 108.571-16.571 16.571-16.571 43.429 0 60l5.143 5.143c16.571 16.571 43.429 16.571 60 0l109.143-109.143c41.143 41.714 81.143 81.714 109.143 109.143 16.571 16.571 43.429 16.571 60 0l5.143-5.143c16.571-16.571 16.571-43.429 0-60l-109.143-108.571-29.714-29.714c35.429-3.429 89.143-13.143 128.571-38.286 46.286-30.286 66.857-48 48.571-84.571zM624 331.429c0-102.286-82.857-185.143-185.143-185.143s-185.143 82.857-185.143 185.143 82.857 185.143 185.143 185.143 185.143-82.857 185.143-185.143zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"odnoklassniki-square\"\n        ],\n        \"defaultCode\": 62052,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"odnoklassniki-square\",\n        \"id\": 558,\n        \"order\": 1414,\n        \"prevSize\": 28,\n        \"code\": 62052\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 558\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M894.286 73.143c49.714 0 88.571 40 88.571 89.143v296.571c0 273.714-218.857 492-490.857 492-273.143 0-492-218.286-492-492v-296.571c0-48.571 40.571-89.143 89.143-89.143h805.143zM492 681.143c17.143 0 34.286-6.857 46.857-18.857l230.857-221.714c13.143-12.571 21.143-30.286 21.143-48.571 0-37.143-30.286-67.429-67.429-67.429-17.714 0-34.286 6.857-46.857 18.857l-184.571 177.143-184.571-177.143c-12.571-12-29.143-18.857-46.286-18.857-37.143 0-67.429 30.286-67.429 67.429 0 18.286 7.429 36 20.571 48.571l231.429 221.714c12 12 29.143 18.857 46.286 18.857z\"\n        ],\n        \"width\": 982.8205714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"get-pocket\"\n        ],\n        \"defaultCode\": 62053,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"get-pocket\",\n        \"id\": 559,\n        \"order\": 1415,\n        \"prevSize\": 28,\n        \"code\": 62053\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 559\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M853.714 936.571l-168.571-397.143c-66.857 130.857-140.571 267.429-204 397.143-0.571 0.571-30.857 0-30.857-0.571-96.571-225.714-197.714-449.714-294.286-676-23.429-54.857-101.714-144-155.429-143.429 0-6.286-0.571-20.571-0.571-29.143h333.143v28.571c-39.429 2.286-108.571 27.429-89.143 70.286 45.143 102.286 213.143 494.286 258.286 593.714 30.857-61.143 118.857-224.571 154.857-293.714-28.571-58.286-120.571-275.429-149.714-329.143-20-36.571-74.286-40-114.857-40.571v-28.571l293.143 0.571v26.857c-40 1.143-78.286 16-60.571 53.714 38.857 82.286 62.857 140 98.857 215.429 11.429-22.286 71.429-142.857 98.857-207.429 18.286-42.286-8-58.857-79.429-60.571 0.571-7.429 0-21.143 0.571-28 91.429-0.571 228.571-0.571 253.143-1.143v28c-46.286 1.714-94.286 26.286-119.429 65.143l-121.714 252.571c13.143 33.143 130.286 293.714 142.286 322.286l252-581.143c-17.714-47.429-74.857-57.714-97.143-58.286v-28.571l262.857 2.286 0.571 1.143-0.571 25.143c-57.714 1.714-92.571 32.571-114.857 82.857-51.429 118.857-212.571 493.714-319.429 737.714h-28z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wikipedia-w\"\n        ],\n        \"defaultCode\": 62054,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wikipedia-w\",\n        \"id\": 560,\n        \"order\": 1416,\n        \"prevSize\": 28,\n        \"code\": 62054\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 560\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M542.286 510.286c0 18.857-13.143 36.571-33.143 36.571-18.857 0-36.571-13.714-36.571-33.143 0-18.857 13.714-36.571 33.714-36.571 18.286 0 36 13.143 36 33.143zM550.857 543.429l200-332c-26.857 25.143-277.143 255.429-284 267.429l-199.429 331.429c26.286-24.571 277.143-256 283.429-266.857zM920.571 512c0 74.857-20.571 148.571-59.429 212-5.714-2.857-29.714-20-34.286-20-4 0-7.429 3.429-7.429 7.429 0 7.429 26.857 21.143 33.714 25.143-56.571 85.714-144 147.429-243.429 172l-9.143-38.286c-0.571-5.143-4-5.714-8.571-5.714-4 0-6.286 5.714-5.714 8.571l9.143 38.857c-27.429 5.714-55.429 8.571-83.429 8.571-74.857 0-148.571-21.143-212.571-60 3.429-5.714 25.143-37.143 25.143-41.714 0-4-3.429-7.429-7.429-7.429-8 0-25.143 34.286-30.286 41.143-86.286-57.143-148.571-145.714-172.571-246.857l39.429-8.571c4.571-1.143 5.714-4.571 5.714-8.571s-5.714-6.286-9.143-5.714l-38.857 8.571c-5.143-26.286-8-52.571-8-79.429 0-76.571 21.714-152 62.286-216.571 5.714 3.429 33.143 22.286 37.714 22.286 4 0 7.429-2.857 7.429-6.857 0-8-30.286-23.429-37.143-28 58.286-85.143 146.857-146.286 247.429-169.143l8.571 38.286c1.143 4.571 4.571 5.714 8.571 5.714s6.286-5.714 5.714-9.143l-8.571-37.714c25.143-4.571 50.857-7.429 76.571-7.429v0c76.571 0 151.429 21.714 216.571 62.286-4 5.714-22.286 32.571-22.286 37.143 0 4 2.857 7.429 6.857 7.429 8 0 23.429-29.714 27.429-36.571 84.571 57.143 145.143 144.571 168.571 244l-32 6.857c-5.143 1.143-5.714 4.571-5.714 9.143 0 4 5.714 6.286 8.571 5.714l32.571-7.429c5.143 26.286 8 53.143 8 80zM969.143 512c0-252.571-204.571-457.143-457.143-457.143s-457.143 204.571-457.143 457.143 204.571 457.143 457.143 457.143 457.143-204.571 457.143-457.143zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"safari\"\n        ],\n        \"defaultCode\": 62055,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"safari\",\n        \"id\": 561,\n        \"order\": 1417,\n        \"prevSize\": 28,\n        \"code\": 62055\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 561\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M510.286 0c87.429-0.571 176.571 21.714 257.714 68.571 89.714 52 157.714 126.857 201.143 212.571l-424-22.286c-120-6.857-234.286 60.571-273.714 173.714l-157.714-242.286c98.286-122.286 245.714-189.714 396.571-190.286zM83.429 231.429l192.571 378.857c54.286 106.857 169.143 172 288 149.714l-131.429 257.714c-245.143-37.714-432.571-249.714-432.571-505.714 0-103.429 30.857-200 83.429-280.571zM989.714 328c89.714 230.857 0 499.429-221.714 627.429-89.714 52-188.571 73.143-284.571 68l231.429-356c65.714-101.143 64.571-233.143-13.714-324.571zM512 339.429c95.429 0 172.571 77.143 172.571 172.571s-77.143 172.571-172.571 172.571-172.571-77.143-172.571-172.571 77.143-172.571 172.571-172.571z\"\n        ],\n        \"width\": 1079.4422857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chrome\"\n        ],\n        \"defaultCode\": 62056,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"chrome\",\n        \"id\": 562,\n        \"order\": 1418,\n        \"prevSize\": 28,\n        \"code\": 62056\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 562\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M516 1024c-220.571 0-396-129.143-476.571-313.714-90.286-205.143-18.286-533.714 142.286-678.857l-6.286 160.571c8-10.286 69.143-13.143 78.857 0 33.143-63.429 140-110.857 225.714-112.571-32.571 27.429-108 127.429-101.714 178.286 41.714 13.143 105.714 13.714 139.429 16 10.286 5.714 8.571 40.571-12 69.143 0 0-26.857 37.143-99.429 50.286l8.571 108-79.429-38.286c-25.714 65.143 36 122.857 100 112 70.857-12 96-58.286 145.714-55.429 49.143 2.857 68.571 30.286 62.286 56 0 0-8 30.857-61.143 25.714-45.143 71.429-105.143 102.857-202.286 94.286 147.429 122.286 346.286 11.429 396.571-88.571 50.286-99.429 6.286-247.429-44-289.143 59.429 25.714 100.571 52 122.286 109.714 11.429-128-47.429-273.143-152.571-358.286 197.714 57.714 318.286 210.857 321.714 455.429s-216.571 499.429-508 499.429z\"\n        ],\n        \"width\": 976.6034285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"firefox\"\n        ],\n        \"defaultCode\": 62057,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"firefox\",\n        \"id\": 563,\n        \"order\": 1419,\n        \"prevSize\": 28,\n        \"code\": 62057\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 563\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M853.143 130.286c-60-40-130.286-62.857-205.143-62.857-121.714 0-229.143 62.286-304.571 156-54.857 68.571-93.143 165.714-96 276.571v24c2.857 110.857 41.143 208 96 276.571 75.429 93.714 182.857 156 304.571 156 74.857 0 145.143-22.857 205.143-62.857-90.286 81.143-210.286 130.286-341.143 130.286-8 0-16.571 0-24.571-0.571-271.429-12.571-487.429-236.571-487.429-511.429 0-282.857 229.143-512 512-512h1.714c130.286 0.571 249.143 49.714 339.429 130.286zM1024 512c0 149.143-64 282.857-165.714 376.571-38.857 23.429-81.714 36-126.857 36-52.571 0-102.286-17.143-145.714-48 116-42.286 201.714-189.143 201.714-364.571 0-174.857-85.143-321.714-201.143-364.571 43.429-30.286 92.571-47.429 145.143-47.429 46.286 0 89.714 13.143 129.143 37.143 100.571 93.714 163.429 226.857 163.429 374.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"opera\"\n        ],\n        \"defaultCode\": 62058,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"opera\",\n        \"id\": 564,\n        \"order\": 1420,\n        \"prevSize\": 28,\n        \"code\": 62058\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 564\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 535.429c0 20-1.143 40-4 59.429h-657.714c0 113.714 100 196 209.714 196 74.286 0 145.714-36.571 184-101.143h241.714c-65.143 183.429-239.429 306.286-433.714 306.286-70.286 0-140.571-16.571-203.429-47.429-64 32.571-153.714 66.286-225.143 66.286-96 0-135.429-58.857-135.429-150.286 0-53.143 11.429-106.286 25.714-157.143 9.143-33.143 45.714-100.571 62.286-130.857 70.286-127.429 162.857-249.714 271.429-346.286-87.429 37.714-182.286 132.571-244 202.286 48-209.143 234.286-357.143 448.571-357.143 8.571 0 17.143 0 25.714 0.571 70.857-32.571 169.714-66.857 247.429-66.857 92.571 0 172 35.429 172 140 0 54.857-21.143 114.286-42.857 163.429 37.714 68 57.714 145.143 57.714 222.857zM984 169.714c0-64-45.714-103.429-108.571-103.429-48 0-102.286 19.429-145.143 40 92.571 36 172 102.286 224.571 186.857 14.286-37.714 29.143-83.429 29.143-123.429zM73.143 876.571c0 66.286 39.429 102.286 104.571 102.286 50.857 0 107.429-22.857 152-47.429-93.143-54.857-165.143-142.286-200.571-244.571-26.286 54.857-56 128-56 189.714zM361.143 469.143h416c-4-110.286-101.143-189.714-208-189.714-107.429 0-204 79.429-208 189.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"internet-explorer\"\n        ],\n        \"defaultCode\": 62059,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"internet-explorer\",\n        \"id\": 565,\n        \"order\": 1421,\n        \"prevSize\": 28,\n        \"code\": 62059\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 565\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 713.143v-548.571c0-9.714-8.571-18.286-18.286-18.286h-914.286c-9.714 0-18.286 8.571-18.286 18.286v548.571c0 9.714 8.571 18.286 18.286 18.286h914.286c9.714 0 18.286-8.571 18.286-18.286zM1097.143 164.571v548.571c0 50.286-41.143 91.429-91.429 91.429h-420.571v73.143h201.143c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-475.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h201.143v-73.143h-420.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h914.286c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"television\",\n          \"tv\"\n        ],\n        \"defaultCode\": 62060,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"television, tv\",\n        \"id\": 566,\n        \"order\": 1422,\n        \"prevSize\": 28,\n        \"code\": 62060\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 566\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M78.857 73.143h112.571c-26.857 24.571-50.857 53.143-72 85.143-88.571 136.571-52.571 286.286-18.286 447.429 28 130.857 51.429 255.429 133.143 345.143h-155.429c-36.571 0-66.286-29.714-66.286-66.286v-745.143c0-36.571 29.714-66.286 66.286-66.286zM769.143 73.143h176c36.571 0 66.286 29.714 66.286 66.286v745.143c0 36.571-29.714 66.286-66.286 66.286h-101.714c75.429-74.857 118.286-183.429 112-322.857l-268 57.714c-3.429 63.429-25.143 124.571-112 142.857-48.571 10.286-88.571-1.143-113.714-22.857-30.857-26.286-55.429-60.571-96.571-256-41.714-196-33.143-237.143-16-273.714 14.286-29.714 46.286-57.143 94.286-67.429 87.429-18.286 132 29.143 161.143 85.714l267.429-57.143c-26.286-67.429-61.143-122.286-102.857-164z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"contao\"\n        ],\n        \"defaultCode\": 62061,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"contao\",\n        \"id\": 567,\n        \"order\": 1423,\n        \"prevSize\": 28,\n        \"code\": 62061\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 567\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M800.571 884l-3.429 3.429c-42.857 42.857-92.571 76.571-148 100-57.714 24-118.286 36.571-181.143 36.571s-124-12.571-181.143-36.571c-55.429-23.429-105.714-57.143-148-100-42.857-42.286-76.571-92-100-147.429-14.286-34.857-25.714-70.857-30.857-108v0c-2.286-16 20-19.429 27.429-20.571 17.714-2.857 29.714-1.714 32 11.429 0.571 0.571 0.571 1.143 0.571 2.286 2.286 11.429 8 45.714 26.286 90.857 18.857 46.857 48 90.286 86.857 129.143 37.143 37.143 80.571 66.286 129.143 86.857 49.714 21.143 102.857 32 157.714 32 54.286 0 107.429-10.857 157.714-32 48-20.571 91.429-49.714 128.571-86.857l3.429-3.429c4-4 8.571-5.143 14.286-3.429 5.143 1.143 11.429 5.714 18.857 12.571v0c18.286 18.857 14.286 28 9.714 33.143zM530.857 532.571l-37.714 37.714 36 36c4 4 11.429 12.571-4 28-6.286 6.286-12.571 9.714-18.286 9.714-4 0-7.429-1.714-10.857-5.714l-35.429-34.857-37.714 37.714c-1.143 1.143-4 2.857-8.571 2.857-5.143 0-11.429-2.857-17.714-9.143l-1.143-1.143c-4-3.429-10.286-9.714-10.286-16.571 0-3.429 1.714-6.286 4.571-9.714l37.714-37.143-37.714-37.714c-6.286-6.286-3.429-14.286 8-25.714 6.857-6.857 12.571-10.286 17.714-10.286 2.857 0 5.143 1.143 7.429 2.857l37.143 37.714 37.143-37.143c6.286-6.286 16.571-3.429 27.429 7.429 6.857 6.857 14.286 16.571 6.286 25.143zM800 565.143c0 45.143-9.143 89.143-26.286 130.286-17.143 40-41.143 75.429-72 106.286s-66.857 54.857-106.857 72c-41.143 17.714-85.143 26.286-130.286 26.286s-89.143-8.571-130.286-26.286c-40-17.143-76-41.143-106.857-72s-54.857-66.286-71.429-106.286c-3.429-7.429-8.571-21.714-8.571-22.857h-0.571c-5.143-16 17.714-22.857 24.571-25.143 16.571-5.143 29.143-7.429 34.286 6.857 13.714 36.571 34.857 72 55.429 95.429h0.571v-194.857c1.143-48 21.143-96.571 58.286-132.571 38.286-37.714 89.714-58.857 144.571-58.857 112 0 202.857 90.286 202.857 201.143 0 112-91.429 202.857-202.857 202.857-22.286 0-38.857-1.714-64-9.143-2.857-1.143-16-6.857-7.429-34.857 2.286-7.429 9.143-29.143 25.143-24.571 1.143 0 29.143 6.857 44 6.857 79.429 0 141.714-61.714 141.714-140.571 0-37.143-14.857-72-41.143-97.714-26.286-26.286-61.714-40.571-100-40.571-39.429 0-75.429 16-101.714 45.714-22.857 25.714-36.571 60-36.571 91.429v236c41.143 25.143 88.571 38.286 138.286 38.286 73.143 0 144-29.143 194.857-80 51.429-51.429 80-120.571 80-193.143 0-73.143-28.571-141.714-80.571-193.714-51.429-51.429-120-80-193.714-80s-142.857 28.571-194.286 80c-0.571 0.571-33.143 34.286-44 49.714l-1.143 1.143c-6.857 9.714-13.143 18.857-41.714 12.571-14.286-3.429-29.714-12-29.714-24.571v-388.571c0-10.286 8-21.714 21.714-21.714h501.143c17.143 0 17.143 24 17.143 31.429 0 8 0 31.429-17.143 31.429h-463.429v276h0.571c32-33.714 87.429-69.143 120-82.857 40.571-17.143 86.286-26.286 132-26.286 45.143 0 89.143 8.571 130.286 26.286 40 17.143 76 41.143 106.857 72s54.857 66.286 72 106.286c17.143 41.714 26.286 85.143 26.286 130.857zM782.286 233.143c10.857 9.714 3.429 20-7.429 32.571-6.857 6.857-14.286 14.857-22.286 14.857-3.429 0-6.286-1.143-9.143-4-41.143-35.429-78.286-59.429-118.286-76-49.714-21.714-102.857-32-157.714-32-48.571 0-101.714 9.714-149.714 28-14.857 5.714-22.857-13.714-25.714-21.143-3.429-9.143-5.143-16.571-4.571-21.714 1.143-5.714 4-9.714 9.143-11.429 46.857-20.571 110.857-32.571 170.857-32.571 62.286 0 123.429 12.571 180.571 36.571 52.571 22.286 95.429 49.714 134.286 86.857z\"\n        ],\n        \"width\": 814.8845714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"500px\"\n        ],\n        \"defaultCode\": 62062,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"500px\",\n        \"id\": 568,\n        \"order\": 1424,\n        \"prevSize\": 28,\n        \"code\": 62062\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 568\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M886.286 843.429c17.143-8.571 30.286 4.571 12.571 27.429s-160 153.143-398.857 153.143-421.714-163.429-477.714-230.857c-15.429-17.714 2.286-25.714 12.571-18.857 167.429 101.714 429.143 269.143 851.429 69.143zM1004.571 777.714c8.571 11.429 0 61.714-14.857 98.286-14.857 36-36.571 61.143-48.571 70.857-12.571 10.286-21.714 6.286-14.857-8.571s44-106.286 29.143-125.714c-14.857-18.857-84.571-9.714-109.714-7.429-24.571 2.286-29.714 4.571-32-0.571-5.143-13.143 49.714-35.429 85.714-40 36-4 93.714-1.714 105.143 13.143zM779.429 524.571c0 62.857 73.714 120.571 73.714 120.571l-129.714 128c-50.857-48-89.143-88-89.143-88-5.714-5.714-10.286-12.571-14.286-18.857-103.429 161.714-419.429 151.429-419.429-98.857 0-233.143 276-264.571 387.429-268.571v-72.571c0-15.429 5.714-85.714-81.143-85.714 0 0-86.857 0-124 113.143l-168-15.429c0-112.571 106.857-238.286 308-238.286 200.571 0 256.571 130.286 256.571 188v336.571zM395.429 536.571c0 116 192.571 143.429 192.571-39.429v-92.571c-77.143 2.286-192.571 24-192.571 132z\"\n        ],\n        \"width\": 1019.9771428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"amazon\"\n        ],\n        \"defaultCode\": 62064,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"amazon\",\n        \"id\": 569,\n        \"order\": 1425,\n        \"prevSize\": 28,\n        \"code\": 62064\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 569\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 146.286c40 0 73.143 33.143 73.143 73.143v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143zM658.286 91.429v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM219.429 91.429v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286zM877.714 950.857v-585.143h-804.571v585.143h804.571zM512 621.714h128c10.286 0 18.286 8 18.286 18.286v36.571c0 10.286-8 18.286-18.286 18.286h-128v128c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-128h-128c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h128v-128c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v128z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"calendar-plus-o\"\n        ],\n        \"defaultCode\": 62065,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"calendar-plus-o\",\n        \"id\": 570,\n        \"order\": 1426,\n        \"prevSize\": 28,\n        \"code\": 62065\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 570\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658.286 640v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"calendar-minus-o\"\n        ],\n        \"defaultCode\": 62066,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"calendar-minus-o\",\n        \"id\": 571,\n        \"order\": 1427,\n        \"prevSize\": 28,\n        \"code\": 62066\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 571\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M634.857 791.429l-26.286 26.286c-6.857 6.857-18.286 6.857-25.714 0l-107.429-108-107.429 108c-7.429 6.857-18.857 6.857-25.714 0l-26.286-26.286c-6.857-6.857-6.857-18.286 0-25.714l108-107.429-108-107.429c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l107.429 107.429 107.429-107.429c7.429-6.857 18.857-6.857 25.714 0l26.286 26.286c6.857 6.857 6.857 18.286 0 25.714l-107.429 107.429 107.429 107.429c6.857 7.429 6.857 18.857 0 25.714zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"calendar-times-o\"\n        ],\n        \"defaultCode\": 62067,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"calendar-times-o\",\n        \"id\": 572,\n        \"order\": 1428,\n        \"prevSize\": 28,\n        \"code\": 62067\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 572\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M744.571 550.857l-292.571 292.571c-7.429 6.857-18.857 6.857-26.286 0l-164.571-164.571c-6.857-7.429-6.857-18.857 0-25.714l26.286-26.286c6.857-6.857 18.286-6.857 25.714 0l125.714 125.714 253.714-253.714c7.429-6.857 18.857-6.857 25.714 0l26.286 26.286c6.857 6.857 6.857 18.286 0 25.714zM73.143 950.857h804.571v-585.143h-804.571v585.143zM292.571 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM731.429 256v-164.571c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v164.571c0 10.286 8 18.286 18.286 18.286h36.571c10.286 0 18.286-8 18.286-18.286zM950.857 219.429v731.429c0 40-33.143 73.143-73.143 73.143h-804.571c-40 0-73.143-33.143-73.143-73.143v-731.429c0-40 33.143-73.143 73.143-73.143h73.143v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h219.429v-54.857c0-50.286 41.143-91.429 91.429-91.429h36.571c50.286 0 91.429 41.143 91.429 91.429v54.857h73.143c40 0 73.143 33.143 73.143 73.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"calendar-check-o\"\n        ],\n        \"defaultCode\": 62068,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"calendar-check-o\",\n        \"id\": 573,\n        \"order\": 1429,\n        \"prevSize\": 28,\n        \"code\": 62068\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 573\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 0c20 0 36.571 16.571 36.571 36.571v509.143l306.286-245.143c6.286-5.143 14.857-8 22.857-8 20 0 36.571 16.571 36.571 36.571v216.571l306.286-245.143c6.286-5.143 14.857-8 22.857-8 20 0 36.571 16.571 36.571 36.571v658.286c0 20-16.571 36.571-36.571 36.571h-950.857c-20 0-36.571-16.571-36.571-36.571v-950.857c0-20 16.571-36.571 36.571-36.571h219.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"industry\"\n        ],\n        \"defaultCode\": 62069,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"industry\",\n        \"id\": 574,\n        \"order\": 1430,\n        \"prevSize\": 28,\n        \"code\": 62069\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 574\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 621.714c25.143 0 49.714-2.857 73.143-8.571v374.286c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-374.286c23.429 5.714 48 8.571 73.143 8.571zM292.571 0c161.714 0 292.571 130.857 292.571 292.571s-130.857 292.571-292.571 292.571-292.571-130.857-292.571-292.571 130.857-292.571 292.571-292.571zM292.571 128c10.286 0 18.286-8 18.286-18.286s-8-18.286-18.286-18.286c-110.857 0-201.143 90.286-201.143 201.143 0 10.286 8 18.286 18.286 18.286s18.286-8 18.286-18.286c0-90.857 73.714-164.571 164.571-164.571z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"map-pin\"\n        ],\n        \"defaultCode\": 62070,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"map-pin\",\n        \"id\": 575,\n        \"order\": 1431,\n        \"prevSize\": 28,\n        \"code\": 62070\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 575\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M997.143 169.714c7.429 7.429 7.429 18.857 0 26.286l-80.571 80.571c-10.286 10.286-24.571 16-38.857 16h-768c-20 0-36.571-16.571-36.571-36.571v-146.286c0-20 16.571-36.571 36.571-36.571h329.143v-36.571c0-20 16.571-36.571 36.571-36.571h73.143c20 0 36.571 16.571 36.571 36.571v36.571h292.571c14.286 0 28.571 5.714 38.857 16zM438.857 694.857h146.286v292.571c0 20-16.571 36.571-36.571 36.571h-73.143c-20 0-36.571-16.571-36.571-36.571v-292.571zM914.286 438.857c20 0 36.571 16.571 36.571 36.571v146.286c0 20-16.571 36.571-36.571 36.571h-768c-14.286 0-28.571-5.714-38.857-16l-80.571-80.571c-7.429-7.429-7.429-18.857 0-26.286l80.571-80.571c10.286-10.286 24.571-16 38.857-16h292.571v-109.714h146.286v109.714h329.143z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"map-signs\"\n        ],\n        \"defaultCode\": 62071,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"map-signs\",\n        \"id\": 576,\n        \"order\": 1432,\n        \"prevSize\": 28,\n        \"code\": 62071\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 576\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1154.286 6.286c9.714 6.857 16 18.286 16 30.286v804.571c0 14.857-9.143 28.571-22.857 33.714l-365.714 146.286c-9.143 4-18.286 4-27.429 0l-352-140.571-352 140.571c-4.571 2.286-9.143 2.857-13.714 2.857-7.429 0-14.286-2.286-20.571-6.286-9.714-6.857-16-18.286-16-30.286v-804.571c0-14.857 9.143-28.571 22.857-33.714l365.714-146.286c9.143-4 18.286-4 27.429 0l352 140.571 352-140.571c11.429-4.571 24-3.429 34.286 3.429zM420.571 83.429v725.714l329.143 131.429v-725.714zM73.143 207.429v725.714l310.857-124v-725.714zM1097.143 816.571v-725.714l-310.857 124v725.714z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"map-o\"\n        ],\n        \"defaultCode\": 62072,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"map-o\",\n        \"id\": 577,\n        \"order\": 1433,\n        \"prevSize\": 28,\n        \"code\": 62072\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 577\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 0c9.714 0 18.286 8.571 18.286 18.286v841.143c0 6.857-4 13.143-9.714 16l-274.286 146.286c-2.857 1.714-5.714 2.286-8.571 2.286-9.714 0-18.286-8.571-18.286-18.286v-841.143c0-6.857 4-13.143 9.714-16l274.286-146.286c2.857-1.714 5.714-2.286 8.571-2.286zM1005.714 0c9.714 0 18.286 8.571 18.286 18.286v841.143c0 6.857-4 13.143-9.714 16l-274.286 146.286c-2.857 1.714-5.714 2.286-8.571 2.286-9.714 0-18.286-8.571-18.286-18.286v-841.143c0-6.857 4-13.143 9.714-16l274.286-146.286c2.857-1.714 5.714-2.286 8.571-2.286zM365.714 0c2.857 0 5.714 0.571 8 1.714l292.571 146.286c6.286 3.429 10.286 9.714 10.286 16.571v841.143c0 9.714-8.571 18.286-18.286 18.286-2.857 0-5.714-0.571-8-1.714l-292.571-146.286c-6.286-3.429-10.286-9.714-10.286-16.571v-841.143c0-9.714 8.571-18.286 18.286-18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"map\"\n        ],\n        \"defaultCode\": 62073,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"map\",\n        \"id\": 578,\n        \"order\": 1434,\n        \"prevSize\": 28,\n        \"code\": 62073\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 578\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM585.143 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM804.571 512c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM1024 512c0 202.286-229.143 365.714-512 365.714-41.714 0-82.286-3.429-120.571-10.286-65.143 65.143-150.286 109.714-248.571 130.857-15.429 2.857-32 5.714-49.143 7.429-9.143 1.143-17.714-5.143-20-13.714v0c-2.286-9.143 4.571-14.857 11.429-21.143 36-33.714 78.857-60.571 93.714-181.143-109.143-66.857-178.857-166.286-178.857-277.714 0-202.286 229.143-365.714 512-365.714s512 163.429 512 365.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"commenting\"\n        ],\n        \"defaultCode\": 62074,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"commenting\",\n        \"id\": 579,\n        \"order\": 1435,\n        \"prevSize\": 28,\n        \"code\": 62074\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 579\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM585.143 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM804.571 512c0 40.571-32.571 73.143-73.143 73.143s-73.143-32.571-73.143-73.143 32.571-73.143 73.143-73.143 73.143 32.571 73.143 73.143zM512 219.429c-237.714 0-438.857 133.714-438.857 292.571 0 85.143 57.143 166.286 156 222.286l49.714 28.571-15.429 54.857c-10.857 40.571-25.143 72-40 98.286 57.714-24 110.286-56.571 157.143-97.714l24.571-21.714 32.571 3.429c24.571 2.857 49.714 4.571 74.286 4.571 237.714 0 438.857-133.714 438.857-292.571s-201.143-292.571-438.857-292.571zM1024 512c0 202.286-229.143 365.714-512 365.714-28 0-56-1.714-82.857-4.571-74.857 66.286-164 113.143-262.857 138.286-20.571 5.714-42.857 9.714-65.143 12.571h-2.857c-11.429 0-21.714-9.143-24.571-21.714v-0.571c-2.857-14.286 6.857-22.857 15.429-33.143 36-40.571 77.143-74.857 104-170.286-117.714-66.857-193.143-170.286-193.143-286.286 0-201.714 229.143-365.714 512-365.714v0c282.857 0 512 164 512 365.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"commenting-o\"\n        ],\n        \"defaultCode\": 62075,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"commenting-o\",\n        \"id\": 580,\n        \"order\": 1436,\n        \"prevSize\": 28,\n        \"code\": 62075\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 580\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M292.571 680.571l292.571-168.571v337.714l-292.571 169.143v-338.286zM0 512v337.714l292.571-169.143-292.571-168.571zM292.571 5.143v337.714l-292.571 169.143v-337.714zM292.571 342.857l292.571-168.571v337.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"houzz\"\n        ],\n        \"defaultCode\": 62076,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"houzz\",\n        \"id\": 581,\n        \"order\": 1437,\n        \"prevSize\": 28,\n        \"code\": 62076\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 581\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M976.571 296c-4 90.286-67.429 214.286-189.714 372-126.857 164-233.143 246.286-321.143 246.286-54.286 0-100-50.286-137.143-150.286-25.143-91.429-50.286-183.429-75.429-275.429-27.429-100-57.714-149.714-89.714-149.714-6.857 0-30.857 14.286-72.571 43.429l-44-56c45.714-40.571 90.857-81.714 136-121.143 60.571-53.714 106.857-80.571 137.714-83.429 72.571-6.857 116.571 42.286 133.714 148 17.714 114.286 30.857 185.714 37.714 213.143 21.143 94.857 43.429 142.286 68.571 142.286 19.429 0 48.571-30.286 88-92 38.857-61.714 59.429-108.571 62.286-140.571 5.143-53.143-15.429-79.429-62.286-79.429-22.286 0-45.143 5.143-69.143 14.857 45.714-149.714 133.143-222.286 262.286-218.286 95.429 2.857 140.571 65.143 134.857 186.286z\"\n        ],\n        \"width\": 1029.12,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vimeo\"\n        ],\n        \"defaultCode\": 62077,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"vimeo\",\n        \"id\": 582,\n        \"order\": 1438,\n        \"prevSize\": 28,\n        \"code\": 62077\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 582\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 73.143h877.714v877.714h-877.714v-877.714zM620 710.286l-126.286-360.571 126.286-169.714h-362.286l126.286 169.714-126.286 360.571 181.143 173.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"black-tie\"\n        ],\n        \"defaultCode\": 62078,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"black-tie\",\n        \"id\": 583,\n        \"order\": 1439,\n        \"prevSize\": 28,\n        \"code\": 62078\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 583\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 73.143h877.714v877.714h-877.714v-877.714zM518.857 256l-6.857 18.857 42.857 47.429-17.714 65.143 14.286 14.286 61.143-32.571 61.143 32.571 14.286-14.286-17.714-65.143 42.857-47.429-6.857-18.857h-54.286l-30.286-54.857h-18.286l-30.286 54.857h-54.286zM366.286 349.143c23.429 0 32.571 8.571 32 45.143l99.429-12c0-87.429-60-103.429-126.857-103.429-99.429 0-151.429 40-151.429 137.143v41.143h-54.857v73.143h43.429c5.714 0 11.429 0 11.429 4.571v218.286c0 10.857-2.857 14.286-13.143 15.429l-41.714 4v50.286h256v-49.143l-85.143-8c-10.286-1.143-6.286-2.857-6.286-14.286v-221.143h109.143l21.714-73.143h-132c-5.714 0 1.143-4 1.143-8.571v-45.714c0-34.286 1.143-53.714 37.143-53.714zM713.143 822.857v-49.143l-30.857-5.143c-10.857-1.714-5.714-2.857-5.714-14.286v-297.143h-157.143l-13.143 57.714 47.429 12.571c7.429 2.286 13.143 7.429 13.143 15.429v211.429c0 10.857-4.571 13.143-14.857 14.286l-40 5.143v49.143h201.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fonticons\"\n        ],\n        \"defaultCode\": 62080,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fonticons\",\n        \"id\": 584,\n        \"order\": 1440,\n        \"prevSize\": 28,\n        \"code\": 62080\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 584\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 483.429c0 44.571-25.143 82.857-62.286 101.714 4.571 17.714 6.857 36 6.857 54.857 0 180.571-204 326.857-455.429 326.857-250.857 0-454.857-146.286-454.857-326.857 0-18.286 2.286-36.571 6.286-53.714-38.286-18.857-64.571-57.714-64.571-102.857 0-62.857 50.857-113.714 113.714-113.714 32.571 0 61.714 13.714 82.857 36 77.143-53.714 180-88.571 294.286-92.571l66.286-297.714c2.286-10.286 13.143-17.143 23.429-14.857l210.857 46.286c13.714-27.429 42.857-46.857 76-46.857 47.429 0 85.714 38.286 85.714 85.143 0 47.429-38.286 85.714-85.714 85.714-46.857 0-85.143-38.286-85.143-85.143l-190.857-42.286-59.429 269.714c114.857 3.429 218.857 37.714 296.571 91.429 20.571-21.714 49.714-34.857 81.714-34.857 62.857 0 113.714 50.857 113.714 113.714zM238.857 597.143c0 47.429 38.286 85.714 85.143 85.714 47.429 0 85.714-38.286 85.714-85.714 0-46.857-38.286-85.143-85.714-85.143-46.857 0-85.143 38.286-85.143 85.143zM701.714 800c8.571-8.571 8.571-21.143 0-29.714-8-8-21.143-8-29.143 0-34.286 34.857-108 46.857-160.571 46.857s-126.286-12-160.571-46.857c-8-8-21.143-8-29.143 0-8.571 8-8.571 21.143 0 29.714 54.286 54.286 158.857 58.286 189.714 58.286s135.429-4 189.714-58.286zM700 682.857c46.857 0 85.143-38.286 85.143-85.714 0-46.857-38.286-85.143-85.143-85.143-47.429 0-85.714 38.286-85.714 85.143 0 47.429 38.286 85.714 85.714 85.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"reddit-alien\"\n        ],\n        \"defaultCode\": 62081,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"reddit-alien\",\n        \"id\": 585,\n        \"order\": 1441,\n        \"prevSize\": 28,\n        \"code\": 62081\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 585\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M39.429 454.286h0.571c29.714-236.571 191.429-454.857 480.571-454.286 175.429 0 320 82.286 404.571 233.714 43.429 78.286 59.429 161.714 59.429 252.571v107.429h-642.857c2.857 265.143 389.714 256 556.571 139.429v215.429c-97.714 58.857-318.286 109.714-490.286 44-145.714-56-247.429-207.429-249.143-354.857-2.286-190.286 94.286-316.571 249.143-388.571-32.571 41.143-57.714 85.714-70.857 162.857h362.857c21.143-216.571-205.143-216.571-205.143-216.571-213.714 7.429-368 132-455.429 258.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"edge\"\n        ],\n        \"defaultCode\": 62082,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"edge\",\n        \"id\": 586,\n        \"order\": 1442,\n        \"prevSize\": 28,\n        \"code\": 62082\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 586\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 859.429v-347.429h1316.571v347.429c0 50.286-41.143 91.429-91.429 91.429h-1133.714c-50.286 0-91.429-41.143-91.429-91.429zM365.714 731.429v73.143h219.429v-73.143h-219.429zM146.286 731.429v73.143h146.286v-73.143h-146.286zM1225.143 73.143c50.286 0 91.429 41.143 91.429 91.429v128h-1316.571v-128c0-50.286 41.143-91.429 91.429-91.429h1133.714z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"credit-card-alt\"\n        ],\n        \"defaultCode\": 62083,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"credit-card-alt\",\n        \"id\": 587,\n        \"order\": 1443,\n        \"prevSize\": 28,\n        \"code\": 62083\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 587\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M905.143 737.143l-124.571-63.429c-56 91.429-155.429 147.429-262.857 147.429-170.286 0-308-137.714-308-307.429 0-170.286 137.714-308 308-308 100 0 193.714 48.571 251.429 130.857l122.857-71.429c-84-129.143-226.286-206.286-380-206.286-250.286 0-453.143 202.857-453.143 453.143s202.857 453.143 453.143 453.143c162.286 0 312.571-86.857 393.143-228zM588.571 510.286l396 201.143c-86.857 189.714-261.143 312.571-472.571 312.571-282.857 0-512-229.143-512-512s229.143-512 512-512c201.143 0 366.857 110.857 460.571 285.714zM881.714 512h-22.286v91.429h-54.857v-201.143h77.714c63.429 0 69.143 109.714-0.571 109.714z\"\n        ],\n        \"width\": 984.576,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"codiepie\"\n        ],\n        \"defaultCode\": 62084,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"codiepie\",\n        \"id\": 588,\n        \"order\": 1444,\n        \"prevSize\": 28,\n        \"code\": 62084\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 588\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M815.429 405.143l-350.857-220.571 52.571-86.286h488.571zM231.429 556.571l-105.143-66.286v-490.286l676 424.571zM813.714 479.429l84 54.286v490.286l-304-191.429zM792.571 467.429l-285.714 458.286h-488.571l203.429-326.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"modx\"\n        ],\n        \"defaultCode\": 62085,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"modx\",\n        \"id\": 589,\n        \"order\": 1445,\n        \"prevSize\": 28,\n        \"code\": 62085\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 589\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 576v-128c0-5.143-4-9.143-9.143-9.143h-54.857c-5.143 0-9.143 4-9.143 9.143v128c0 5.143 4 9.143 9.143 9.143h54.857c5.143 0 9.143-4 9.143-9.143zM658.286 576v-128c0-5.143-4-9.143-9.143-9.143h-54.857c-5.143 0-9.143 4-9.143 9.143v128c0 5.143 4 9.143 9.143 9.143h54.857c5.143 0 9.143-4 9.143-9.143zM950.857 594.286v429.714h-365.714v-182.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v182.857h-365.714v-429.714c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-356.571c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-12 16-9.143 23.429-9.143v-223.429c-10.857-5.143-18.286-16.571-18.286-28.571 0-17.143 14.286-31.429 31.429-31.429s31.429 14.286 31.429 31.429c0 12-7.429 23.429-18.286 28.571v9.714c15.429-3.429 31.429-5.714 47.429-5.714 23.429 0 45.714 8.571 65.143 8.571 17.714 0 37.714-8.571 48-8.571 5.143 0 9.143 4 9.143 9.143v120c0 13.714-46.286 16-55.429 16-21.143 0-41.143-8.571-62.857-8.571-17.143 0-34.857 2.857-51.429 6.857v76c7.429 0 23.429-2.857 23.429 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v64h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143v356.571h73.143v-64c0-5.143 4-9.143 9.143-9.143h54.857c5.143 0 9.143 4 9.143 9.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fort-awesome\"\n        ],\n        \"defaultCode\": 62086,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fort-awesome\",\n        \"id\": 590,\n        \"order\": 1446,\n        \"prevSize\": 28,\n        \"code\": 62086\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 590\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1307.429 460c5.714 2.857 9.143 9.143 9.143 15.429s-3.429 12.571-9.143 15.429l-182.857 109.714c-2.857 1.714-5.714 2.857-9.143 2.857-2.857 0-6.286-0.571-9.143-2.286-5.714-3.429-9.143-9.143-9.143-16v-73.143h-490.286c18.286 28.571 33.714 62.286 47.429 94.286 27.429 61.714 55.429 125.143 95.429 125.143h54.857v-54.857c0-10.286 8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286v182.857c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-54.857h-54.857c-87.429 0-126.857-89.714-162.286-168.571-26.857-61.143-54.857-124-93.714-124h-205.714c-16.571 62.857-73.714 109.714-141.714 109.714-80.571 0-146.286-65.714-146.286-146.286s65.714-146.286 146.286-146.286c68 0 125.143 46.857 141.714 109.714h59.429c38.857 0 66.857-62.857 93.714-124 35.429-78.857 74.857-168.571 162.286-168.571h61.143c15.429-42.857 55.429-73.143 103.429-73.143 60.571 0 109.714 49.143 109.714 109.714s-49.143 109.714-109.714 109.714c-48 0-88-30.286-103.429-73.143h-61.143c-40 0-68 63.429-95.429 125.143-13.714 32-29.143 65.714-47.429 94.286h636.571v-73.143c0-6.857 3.429-12.571 9.143-16s13.143-2.857 18.286 0.571z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"usb\"\n        ],\n        \"defaultCode\": 62087,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"usb\",\n        \"id\": 591,\n        \"order\": 1447,\n        \"prevSize\": 28,\n        \"code\": 62087\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 591\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M657.143 435.429c0 42.286-34.286 76.571-77.143 76.571v0h-144.571v-153.714h144.571c42.857 0 77.143 34.286 77.143 77.143zM759.429 435.429c0-99.429-80-179.429-179.429-179.429v0h-247.429v512h102.857v-153.714h144.571c99.429 0 179.429-80 179.429-178.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"product-hunt\"\n        ],\n        \"defaultCode\": 62088,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"product-hunt\",\n        \"id\": 592,\n        \"order\": 1448,\n        \"prevSize\": 28,\n        \"code\": 62088\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 592\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M940 627.429c0-45.714-29.143-84.571-69.143-100-2.857 17.714-7.429 35.429-13.143 52.571-5.714 18.286-22.857 29.714-41.143 29.714-4.571 0-9.143-0.571-13.714-1.714-23.429-8-35.429-32.571-28-55.429 8.571-26.286 13.143-53.714 13.143-81.714 0-142.857-116.571-259.429-260-259.429-102.857 0-195.429 61.143-236.571 152.571 40 10.286 77.143 30.857 107.429 60.571 17.143 17.143 17.143 45.143 0 62.286s-45.143 17.143-62.286 0c-27.429-27.429-64-42.857-102.857-42.857-80.571 0-146.286 65.143-146.286 145.714s65.714 145.714 146.286 145.714h597.714c60 0 108.571-48.571 108.571-108zM1027.429 627.429c0 108-88 195.429-196 195.429h-597.714c-129.143 0-233.714-104.571-233.714-233.143 0-117.143 86.857-213.714 199.429-230.286 47.429-139.429 179.429-235.429 328.571-235.429 180 0 328.571 137.714 345.714 313.143 87.429 18.857 153.714 97.143 153.714 190.286zM1170.286 627.429c0 65.143-18.857 128-55.429 182.286-8.571 12.571-22.286 18.857-36.571 18.857v0c-8.571 0-17.143-2.286-24.571-7.429-20-13.143-25.143-40.571-11.429-60.571 26.857-39.429 40.571-85.143 40.571-133.143 0-47.429-13.714-93.714-40.571-133.143-13.714-20-8.571-46.857 11.429-60.571s47.429-8 61.143 12c36.571 53.714 55.429 116.571 55.429 181.714zM1316.571 627.429c0 90.857-26.286 178.286-76.571 253.143-8.571 12.571-22.286 19.429-36.571 19.429v0c-8 0-16.571-2.286-24-7.429-20-13.714-25.714-40.571-12-60.571 40-60.571 61.714-131.429 61.714-204.571s-21.714-144-61.714-204c-13.714-20-8-47.429 12-60.571 20-13.714 46.857-8.571 60.571 12 50.286 74.286 76.571 161.714 76.571 252.571z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mixcloud\"\n        ],\n        \"defaultCode\": 62089,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"mixcloud\",\n        \"id\": 593,\n        \"order\": 1449,\n        \"prevSize\": 28,\n        \"code\": 62089\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 593\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M857.143 885.143c0 68-54.857 123.429-123.429 123.429s-124-55.429-124-123.429c0-68.571 55.429-124 124-124s123.429 55.429 123.429 124zM724 724.571c-86.857 11.429-154.286 85.714-154.286 176 0 28 6.857 55.429 18.857 78.857-51.429 27.429-121.143 44.571-216.571 44.571-304 0-351.429-214.857-351.429-243.429 0-29.143 17.143-124.571 124.571-124.571s122.286 92 122.286 110.857c0 0 0 19.429-13.143 46.286 36.571 34.286 122.857 34.286 122.857 34.286 86.286 0 151.429-42.286 151.429-105.143 0-63.429-73.143-94.286-240-172.571-166.857-78.857-229.714-136.571-229.714-280 0-144 96-289.714 335.429-289.714s329.714 134.286 329.714 226.286-78.286 114.857-107.429 114.857c-28.571 0-134.286 9.714-134.286-149.143-18.857-21.143-101.143-21.143-101.143-21.143-82.857 0-119.429 62.857-119.429 101.143 0 38.857 15.429 86.857 188 144 264.571 88 274.286 202.857 274.286 308.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"scribd\"\n        ],\n        \"defaultCode\": 62090,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"scribd\",\n        \"id\": 594,\n        \"order\": 1450,\n        \"prevSize\": 28,\n        \"code\": 62090\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 594\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M402.286 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-146.286c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h146.286c10.286 0 18.286-8 18.286-18.286zM658.286 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-146.286c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h146.286c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pause-circle\"\n        ],\n        \"defaultCode\": 62091,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pause-circle\",\n        \"id\": 595,\n        \"order\": 1451,\n        \"prevSize\": 28,\n        \"code\": 62091\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 595\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM438.857 822.857c171.429 0 310.857-139.429 310.857-310.857s-139.429-310.857-310.857-310.857-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857zM493.714 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-109.714zM274.286 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-109.714z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pause-circle-o\"\n        ],\n        \"defaultCode\": 62092,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pause-circle-o\",\n        \"id\": 596,\n        \"order\": 1452,\n        \"prevSize\": 28,\n        \"code\": 62092\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 596\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M621.714 676.571v-329.143c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v329.143c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stop-circle\"\n        ],\n        \"defaultCode\": 62093,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"stop-circle\",\n        \"id\": 597,\n        \"order\": 1453,\n        \"prevSize\": 28,\n        \"code\": 62093\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 597\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M438.857 73.143c242.286 0 438.857 196.571 438.857 438.857s-196.571 438.857-438.857 438.857-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857zM438.857 822.857c171.429 0 310.857-139.429 310.857-310.857s-139.429-310.857-310.857-310.857-310.857 139.429-310.857 310.857 139.429 310.857 310.857 310.857zM274.286 694.857c-10.286 0-18.286-8-18.286-18.286v-329.143c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286v329.143c0 10.286-8 18.286-18.286 18.286h-329.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stop-circle-o\"\n        ],\n        \"defaultCode\": 62094,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"stop-circle-o\",\n        \"id\": 598,\n        \"order\": 1454,\n        \"prevSize\": 28,\n        \"code\": 62094\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 598\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1004 804.571l20 178.857c1.143 10.286-2.286 20.571-9.143 28.571-6.857 7.429-17.143 12-27.429 12h-950.857c-10.286 0-20.571-4.571-27.429-12-6.857-8-10.286-18.286-9.143-28.571l20-178.857h984zM950.857 325.143l49.143 442.857h-976l49.143-442.857c2.286-18.286 17.714-32.571 36.571-32.571h146.286v73.143c0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143v-73.143h219.429v73.143c0 40.571 32.571 73.143 73.143 73.143s73.143-32.571 73.143-73.143v-73.143h146.286c18.857 0 34.286 14.286 36.571 32.571zM731.429 219.429v146.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-146.286c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286v146.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-146.286c0-121.143 98.286-219.429 219.429-219.429s219.429 98.286 219.429 219.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shopping-bag\"\n        ],\n        \"defaultCode\": 62096,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"shopping-bag\",\n        \"id\": 599,\n        \"order\": 1455,\n        \"prevSize\": 28,\n        \"code\": 62096\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 599\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1097.143 438.857c40.571 0 73.143 32.571 73.143 73.143s-32.571 73.143-73.143 73.143h-8.571l-65.714 378.286c-6.286 34.857-36.571 60.571-72 60.571h-731.429c-35.429 0-65.714-25.714-72-60.571l-65.714-378.286h-8.571c-40.571 0-73.143-32.571-73.143-73.143s32.571-73.143 73.143-73.143h1024zM277.143 896c20-1.714 35.429-19.429 33.714-39.429l-18.286-237.714c-1.714-20-19.429-35.429-39.429-33.714s-35.429 19.429-33.714 39.429l18.286 237.714c1.714 18.857 17.714 33.714 36.571 33.714h2.857zM512 859.429v-237.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM731.429 859.429v-237.714c0-20-16.571-36.571-36.571-36.571s-36.571 16.571-36.571 36.571v237.714c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571zM932.571 862.286l18.286-237.714c1.714-20-13.714-37.714-33.714-39.429s-37.714 13.714-39.429 33.714l-18.286 237.714c-1.714 20 13.714 37.714 33.714 39.429h2.857c18.857 0 34.857-14.857 36.571-33.714zM272 166.857l-53.143 235.429h-75.429l57.714-252c14.857-66.857 73.714-113.714 142.286-113.714h95.429c0-20 16.571-36.571 36.571-36.571h219.429c20 0 36.571 16.571 36.571 36.571h95.429c68.571 0 127.429 46.857 142.286 113.714l57.714 252h-75.429l-53.143-235.429c-8-33.714-37.143-57.143-71.429-57.143h-95.429c0 20-16.571 36.571-36.571 36.571h-219.429c-20 0-36.571-16.571-36.571-36.571h-95.429c-34.286 0-63.429 23.429-71.429 57.143z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shopping-basket\"\n        ],\n        \"defaultCode\": 62097,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"shopping-basket\",\n        \"id\": 600,\n        \"order\": 1456,\n        \"prevSize\": 28,\n        \"code\": 62097\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 600\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M566.286 585.143l36.571-146.286h-145.143l-36.571 146.286h145.143zM1005.143 297.143l-32 128c-2.286 8-9.143 13.714-17.714 13.714h-186.857l-36.571 146.286h177.714c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 5.143 10.286 3.429 16l-32 128c-1.714 8-9.143 13.714-17.714 13.714h-186.857l-46.286 187.429c-2.286 8-9.714 13.714-17.714 13.714h-128c-5.714 0-11.429-2.857-14.857-6.857-3.429-4.571-4.571-10.286-3.429-16l44.571-178.286h-145.143l-46.286 187.429c-2.286 8-9.714 13.714-17.714 13.714h-128.571c-5.143 0-10.857-2.857-14.286-6.857-3.429-4.571-4.571-10.286-3.429-16l44.571-178.286h-177.714c-5.714 0-10.857-2.857-14.286-6.857-3.429-4.571-4.571-10.286-3.429-16l32-128c2.286-8 9.143-13.714 17.714-13.714h186.857l36.571-146.286h-177.714c-5.714 0-10.857-2.857-14.286-6.857-3.429-4.571-5.143-10.286-3.429-16l32-128c1.714-8 9.143-13.714 17.714-13.714h186.857l46.286-187.429c2.286-8 9.714-13.714 18.286-13.714h128c5.143 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16l-44.571 178.286h145.143l46.286-187.429c2.286-8 9.714-13.714 18.286-13.714h128c5.143 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16l-44.571 178.286h177.714c5.714 0 10.857 2.857 14.286 6.857 3.429 4.571 4.571 10.286 3.429 16z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hashtag\"\n        ],\n        \"defaultCode\": 62098,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"hashtag\",\n        \"id\": 601,\n        \"order\": 1457,\n        \"prevSize\": 28,\n        \"code\": 62098\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 601\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M480.571 601.714l84.571 84.571-85.143 85.143zM480 252.571l85.143 85.143-84.571 84.571-0.571-169.714zM405.714 952l265.143-265.143-174.857-174.857 174.857-174.857-265.143-265.143v349.143l-145.714-145.714-53.143 53.143 182.857 183.429-182.857 183.429 53.143 53.143 145.714-145.714v349.143zM816.571 512c0 405.714-154.286 512-377.714 512v0c-223.429 0-377.714-106.286-377.714-512s154.286-512 377.714-512 377.714 106.286 377.714 512z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bluetooth\"\n        ],\n        \"defaultCode\": 62099,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bluetooth\",\n        \"id\": 602,\n        \"order\": 1458,\n        \"prevSize\": 28,\n        \"code\": 62099\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 602\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M340.571 813.143l98.857-98.286-98.857-98.286v196.571zM340.571 407.429l98.857-98.286-98.857-98.286v196.571zM358.857 512l203.429 203.429-308 308.571v-406.286l-169.714 169.143-61.714-61.714 212.571-213.143-212.571-213.143 61.714-61.714 169.714 169.143v-406.286l308 308.571z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bluetooth-b\"\n        ],\n        \"defaultCode\": 62100,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bluetooth-b\",\n        \"id\": 603,\n        \"order\": 1459,\n        \"prevSize\": 28,\n        \"code\": 62100\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 603\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 731.429c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM292.571 292.571c0-40-33.143-73.143-73.143-73.143s-73.143 33.143-73.143 73.143 33.143 73.143 73.143 73.143 73.143-33.143 73.143-73.143zM877.714 731.429c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429zM822.857 109.714c0 8-2.857 15.429-7.429 21.714l-603.429 804.571c-6.857 9.143-17.714 14.857-29.143 14.857h-91.429c-20 0-36.571-16.571-36.571-36.571 0-8 2.857-15.429 7.429-21.714l603.429-804.571c6.857-9.143 17.714-14.857 29.143-14.857h91.429c20 0 36.571 16.571 36.571 36.571zM438.857 292.571c0 121.143-98.286 219.429-219.429 219.429s-219.429-98.286-219.429-219.429 98.286-219.429 219.429-219.429 219.429 98.286 219.429 219.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"percent\"\n        ],\n        \"defaultCode\": 62101,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"percent\",\n        \"id\": 604,\n        \"order\": 1460,\n        \"prevSize\": 28,\n        \"code\": 62101\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 604\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M59.429 403.429l452.571 580-496-360c-13.714-10.286-19.429-28-14.286-44l57.714-176zM323.429 403.429h377.143l-188.571 580zM210.286 53.714l113.143 349.714h-264l113.143-349.714c6.286-17.714 31.429-17.714 37.714 0zM964.571 403.429l57.714 176c5.143 16-0.571 33.714-14.286 44l-496 360 452.571-580zM964.571 403.429h-264l113.143-349.714c6.286-17.714 31.429-17.714 37.714 0z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gitlab\"\n        ],\n        \"defaultCode\": 62102,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"gitlab\",\n        \"id\": 605,\n        \"order\": 1461,\n        \"prevSize\": 28,\n        \"code\": 62102\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 605\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M219.429 475.429h91.429v-128h-91.429v128zM697.714 665.143v-52.571c-49.143 17.143-89.714 21.143-138.857 21.714-110.286 0.571-208-45.143-274.286-96.571l0.571 54.857c62.286 56.571 157.714 101.143 276.571 100.571 49.714 0 96.571-10.286 136-28zM365.714 475.429h365.714v-128h-365.714v128zM1024 457.143c0 72.571-20.571 141.143-56.571 201.143 32 36.571 50.857 81.714 50.857 130.857 0 119.429-113.143 216.571-253.143 216.571-94.857 0-177.143-44.571-220.571-110.286-10.857 0.571-21.714 0.571-32.571 0.571s-21.714 0-32.571-0.571c-43.429 65.714-125.714 110.286-220.571 110.286-140 0-253.143-97.143-253.143-216.571 0-49.143 18.857-94.286 50.857-130.857-36-60-56.571-128.571-56.571-201.143 0-242.286 229.143-438.857 512-438.857s512 196.571 512 438.857z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wpbeginner\"\n        ],\n        \"defaultCode\": 62103,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wpbeginner\",\n        \"id\": 606,\n        \"order\": 1462,\n        \"prevSize\": 28,\n        \"code\": 62103\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 606\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M294.286 520.571v73.143h-144v-73.143h144zM294.286 374.857v72.571h-144v-72.571h144zM727.429 666.857v73.143h-194.857v-73.143h194.857zM727.429 520.571v73.143h-384v-73.143h384zM727.429 374.857v72.571h-384v-72.571h384zM804.571 866.286v-708.571c0-6.286-5.143-11.429-11.429-11.429h-18.286l-216 146.286-120-97.714-120 97.714-216-146.286h-18.286c-6.286 0-11.429 5.143-11.429 11.429v708.571c0 6.286 5.143 11.429 11.429 11.429h708.571c6.286 0 11.429-5.143 11.429-11.429zM316 232l105.714-85.714h-232zM561.714 232l126.286-85.714h-232zM877.714 157.714v708.571c0 46.857-37.714 84.571-84.571 84.571h-708.571c-46.857 0-84.571-37.714-84.571-84.571v-708.571c0-46.857 37.714-84.571 84.571-84.571h708.571c46.857 0 84.571 37.714 84.571 84.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wpforms\"\n        ],\n        \"defaultCode\": 62104,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wpforms\",\n        \"id\": 607,\n        \"order\": 1463,\n        \"prevSize\": 28,\n        \"code\": 62104\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 607\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 466.286c-72.571-137.143-139.429-270.857-329.714-361.143-113.714-53.714-12 21.143-12 21.143 103.429 71.429 150.857 168 206.286 273.714 72 137.714 180.571 319.429 329.714 383.429 148.571 64 78.286 28.571 13.714-19.429-64.571-48.571-156-198.857-208-297.714zM313.714 776.571c-206.286-163.429-194.857-358.857-313.714-776.571 1092 0 838.286 725.143 839.429 837.143l184.571 186.857h-59.429l-160.571-162.857c-89.143 9.714-284.571 78.857-490.286-84.571z\"\n        ],\n        \"width\": 1092.022857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"envira\"\n        ],\n        \"defaultCode\": 62105,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"envira\",\n        \"id\": 608,\n        \"order\": 1464,\n        \"prevSize\": 28,\n        \"code\": 62105\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 608\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M785.143 375.429c-4.571-19.429-24-31.429-44-26.857-81.714 19.429-156 35.429-229.143 35.429s-147.429-16-229.143-35.429c-20-4.571-39.429 7.429-44 26.857-4.571 20 7.429 39.429 26.857 44 60.571 14.286 117.143 26.857 173.143 33.143-2.286 193.143-23.429 246.857-47.429 308.571l-5.143 12c-7.429 18.857 2.286 40 21.143 47.429 4 1.714 8.571 2.286 13.143 2.286 14.857 0 28.571-8.571 34.286-23.429l4.571-11.429c16-41.143 30.857-79.429 40.571-148h24c9.714 68.571 24.571 106.857 40.571 148l4.571 11.429c5.714 14.857 19.429 23.429 34.286 23.429 4.571 0 9.143-0.571 13.143-2.286 18.857-7.429 28.571-28.571 21.143-47.429l-5.143-12c-24-61.714-45.143-115.429-47.429-308.571 56-6.286 112.571-18.857 173.143-33.143 19.429-4.571 31.429-24 26.857-44zM585.143 292.571c0-40.571-32.571-73.143-73.143-73.143s-73.143 32.571-73.143 73.143 32.571 73.143 73.143 73.143 73.143-32.571 73.143-73.143zM914.286 512c0 222.286-180 402.286-402.286 402.286s-402.286-180-402.286-402.286 180-402.286 402.286-402.286 402.286 180 402.286 402.286zM512 73.143c-241.714 0-438.857 197.143-438.857 438.857s197.143 438.857 438.857 438.857 438.857-197.143 438.857-438.857-197.143-438.857-438.857-438.857zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512v0c282.857 0 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"universal-access\"\n        ],\n        \"defaultCode\": 62106,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"universal-access\",\n        \"id\": 609,\n        \"order\": 1465,\n        \"prevSize\": 28,\n        \"code\": 62106\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 609\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M821.714 464.571c12 12.571 18.286 29.714 16.571 46.857l-25.143 314.857c-2.857 32-29.143 56-60.571 56-1.714 0-3.429 0-5.143-0.571-33.714-2.286-58.286-32-56-65.143l20-245.143-81.714 4.571c20 41.143 31.429 88 31.429 137.143 0 82.286-32 157.143-84.571 212.571l-78.286-78.286c32-35.429 52-82.857 52-134.286 0-110.857-89.714-200.571-200-200.571-52 0-98.857 20-134.857 52.571l-78.286-78.857c44-41.714 100-70.286 162.286-80.571l150.857-171.429-85.143-49.714-103.429 92c-25.143 22.857-63.429 20.571-85.714-4.571s-20-63.429 4.571-85.714l136.571-121.714c19.429-17.714 48-20.571 70.857-6.857 278.286 161.714 278.857 161.714 278.857 161.714 14.857 8.571 23.429 23.429 27.429 38.857 5.714 22.286 1.714 47.429-14.857 66.857l-117.143 132.571 212-11.429c17.714-1.143 34.857 5.143 47.429 18.286zM708.571 203.429c-56 0-101.714-45.143-101.714-101.714 0-56 45.714-101.714 101.714-101.714 56.571 0 102.286 45.714 102.286 101.714 0 56.571-45.714 101.714-102.286 101.714zM350.286 913.143c41.143 0 80-13.143 112-34.857l79.429 79.429c-52.571 41.714-119.429 66.286-191.429 66.286-172 0-311.429-139.429-311.429-310.857 0-72.571 24.571-138.857 66.286-192l79.429 79.429c-21.714 32-34.286 70.857-34.286 112.571 0 110.286 89.714 200 200 200z\"\n        ],\n        \"width\": 878.8845714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wheelchair-alt\"\n        ],\n        \"defaultCode\": 62107,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wheelchair-alt\",\n        \"id\": 610,\n        \"order\": 1466,\n        \"prevSize\": 28,\n        \"code\": 62107\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 610\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M502.857 685.714v91.429c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-91.429c0-10.286 8-18.286 18.286-18.286h91.429c10.286 0 18.286 8 18.286 18.286zM649.143 402.286c0 81.143-56.571 113.143-98.286 136.571-29.714 17.143-48 28-48 46.286v18.286c0 10.286-8 18.286-18.286 18.286h-91.429c-10.286 0-18.286-8-18.286-18.286v-38.857c0-70.286 50.286-92.571 90.857-110.857 34.286-16 55.429-26.857 55.429-52.571 0-33.143-41.714-57.714-79.429-57.714-20 0-41.143 6.286-54.286 15.429-12.571 8.571-24.571 21.143-45.714 47.429-3.429 4.571-8.571 6.857-14.286 6.857-4 0-8-1.143-10.857-3.429l-61.714-46.857c-7.429-5.714-9.143-16.571-4-24.571 46.857-73.714 112.571-109.714 199.429-109.714v0c93.714 0 198.857 74.286 198.857 173.714zM438.857 146.286c-201.714 0-365.714 164-365.714 365.714s164 365.714 365.714 365.714 365.714-164 365.714-365.714-164-365.714-365.714-365.714zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857v0c242.286 0 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"question-circle-o\"\n        ],\n        \"defaultCode\": 62108,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"question-circle-o\",\n        \"id\": 611,\n        \"order\": 1467,\n        \"prevSize\": 28,\n        \"code\": 62108\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 611\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M209.143 177.714c-49.143 0-89.143-40-89.143-89.143 0-48.571 40-88.571 89.143-88.571s88.571 40 88.571 88.571c0 49.143-39.429 89.143-88.571 89.143zM524 544.571c0 61.714-65.714 48-80.571 22.857l-209.714-250.286c-9.143-14.857-16-8-16-8s-4 4.571 2.286 12l69.714 79.429 0.571 202.286c-49.143 142.857-92 261.143-92 261.143-26.857 76.571-49.143 142.857-68.571 152-23.429 12-40.571 9.143-58.857 0.571-24-10.857-30.857-40-29.143-57.143 0 0 1.143-9.143 112.571-353.143l2.857-237.714-48.571 93.714 20 126.857c7.429 48-33.143 54.286-33.143 54.286-38.857 6.286-46.857-38.857-46.857-40l-26.286-170.857c120-216.571 120.571-217.714 120.571-217.714v0c9.143-13.714 29.714-19.429 64.571-19.429 30.857 0 50.286 9.143 61.143 22.857v0l242.286 297.714c3.429 2.286 5.714 5.714 8 9.714l1.714 1.714-0.571 0.571c2.857 5.143 4 10.857 4 16.571zM293.714 630.286c54.857 145.714 104 256 104 256 16.571 42.286 45.143 102.857 3.429 126.857-41.143 24-74.286-4-83.429-23.429v0h-0.571c-1.714-4.571-3.429-9.143-4.571-14.286l-70.857-200.571zM764.571 968.571c12 18.857 22.286 32.571 16 36.571-10.857 6.857-14.286-13.143-26.286-32.571 0 0-64.571-97.714-241.714-377.714 3.429 1.143 9.714-4 9.714-4s6.286-5.143 6.286-9.714c176 287.429 236 387.429 236 387.429z\"\n        ],\n        \"width\": 809.1794285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"blind\"\n        ],\n        \"defaultCode\": 62109,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"blind\",\n        \"id\": 612,\n        \"order\": 1468,\n        \"prevSize\": 28,\n        \"code\": 62109\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 612\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M288 568h97.714l-0.571-151.429zM874.286 511.429c0-63.429-36.571-110.286-112.571-110.286h-30.857v221.714h29.714c71.429 0 113.714-52 113.714-111.429zM546.286 296l0.571 432c0 10.857-8.571 19.429-18.857 19.429h-123.429c-10.286 0-18.857-8.571-18.857-19.429v-35.429h-166.286l-31.429 46.286c-3.429 5.143-9.714 8.571-16 8.571h-152.571c-16 0-25.143-17.714-15.429-30.286l317.714-432.571c3.429-5.143 9.143-8 15.429-8h189.714c10.857 0 19.429 8.571 19.429 19.429zM1018.857 511.429c0 150.286-109.714 236-257.143 236h-154.286c-10.857 0-19.429-8.571-19.429-19.429v-432c0-10.857 8.571-19.429 19.429-19.429h153.143c148.571 0 258.286 84.571 258.286 234.857zM1108 512c0 0 2.286 148.571-84.571 236h-29.143c77.714-92.571 79.429-236.571 79.429-236.571s1.143-113.143-77.143-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857zM1213.143 512c0 0 2.286 148.571-85.143 236h-29.143c77.714-92.571 79.429-236.571 79.429-236.571s1.143-113.143-76.571-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857zM1316.571 512c0 0 2.286 148.571-84.571 236h-29.143c77.143-92.571 78.857-236.571 78.857-236.571s1.143-113.143-76.571-234.286h24.571c84.571 96.571 86.857 234.857 86.857 234.857z\"\n        ],\n        \"width\": 1313.1337142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"audio-description\"\n        ],\n        \"defaultCode\": 62110,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"audio-description\",\n        \"id\": 613,\n        \"order\": 1469,\n        \"prevSize\": 28,\n        \"code\": 62110\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 613\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M352.571 965.143c0-13.714-30.286-110.857-36.571-133.714-3.429-14.286-4.571-37.714-15.429-48-7.429-6.857-19.429-8-29.143-8-26.857 0-53.714 6.286-80.571 6.286-8 0-20-0.571-26.857-6.286-9.143-7.429-13.714-33.143-17.143-44.571-13.714-47.429-21.143-96-21.143-145.714s7.429-98.286 21.143-145.714c3.429-11.429 8-37.143 17.143-44.571 6.857-5.714 18.857-6.286 26.857-6.286 26.857 0 53.714 6.286 80.571 6.286 9.714 0 21.714-1.143 29.143-8 10.857-10.286 12-33.714 15.429-48 6.286-22.857 36.571-120 36.571-133.714 0-19.429-51.429-48-68-54.286-8.571-3.429-17.143-4.571-25.714-4.571-18.857 0-37.714 5.143-56 10.286-93.714 28-116 85.143-153.143 165.714-40 86.286-49.714 168.571-49.714 262.857s9.714 176.571 49.714 262.857c37.143 80.571 59.429 137.714 153.143 165.714 18.286 5.143 37.143 10.286 56 10.286 8.571 0 17.143-1.143 25.714-4.571 16.571-6.286 68-34.857 68-54.286zM443.429 443.429c-9.714 0-18.857-4-25.714-10.857-14.286-14.286-14.857-37.714 0-52 13.714-13.714 21.143-32 21.143-51.429s-7.429-37.714-21.143-52c-14.857-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c27.429 27.429 42.857 64.571 42.857 103.429s-15.429 76-42.857 103.429c-7.429 6.857-16.571 10.857-25.714 10.857zM546.857 546.857c-9.714 0-18.857-3.429-25.714-10.857-14.286-14.286-14.286-37.143 0-51.429 41.143-41.714 64-96.571 64-155.429s-22.857-113.714-64-155.429c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c55.429 55.429 85.714 128.571 85.714 206.857s-30.286 151.429-85.714 206.857c-6.857 7.429-16.571 10.857-25.714 10.857zM650.286 650.286c-9.714 0-18.857-3.429-25.714-10.857-14.286-14.286-14.286-37.143 0-51.429 68.571-69.143 106.857-161.143 106.857-258.857s-38.286-189.714-106.857-258.857c-14.286-14.286-14.286-37.143 0-51.429s37.143-14.286 51.429 0c82.857 82.857 128.571 193.143 128.571 310.286s-45.714 227.429-128.571 310.286c-6.857 7.429-16.571 10.857-25.714 10.857z\"\n        ],\n        \"width\": 804.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"volume-control-phone\"\n        ],\n        \"defaultCode\": 62112,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"volume-control-phone\",\n        \"id\": 614,\n        \"order\": 1470,\n        \"prevSize\": 28,\n        \"code\": 62112\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 614\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M109.714 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM402.286 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM402.286 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM841.143 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 676.571c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM841.143 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 384c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM1133.714 91.429c-50.286 0-91.429 41.143-91.429 91.429s41.143 91.429 91.429 91.429 91.429-41.143 91.429-91.429-41.143-91.429-91.429-91.429zM219.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM512 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM219.429 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM512 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM219.429 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM950.857 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM512 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1243.429 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM950.857 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM1243.429 475.429c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714zM950.857 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1243.429 182.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714v0c60.571 0 109.714 49.143 109.714 109.714z\"\n        ],\n        \"width\": 1243.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"braille\"\n        ],\n        \"defaultCode\": 62113,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"braille\",\n        \"id\": 615,\n        \"order\": 1471,\n        \"prevSize\": 28,\n        \"code\": 62113\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 615\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M73.143 987.429c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM182.857 877.714c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM208.571 669.143l146.286 146.286-51.429 51.429-146.286-146.286zM402.286 658.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM806.286 475.429c0 94.857-44.571 145.714-83.429 190.857-36 41.143-64.571 73.714-64.571 138.286 0 121.143-98.286 219.429-219.429 219.429-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571c80.571 0 146.286-65.714 146.286-146.286 0-92 44-142.286 82.286-186.286 35.429-40.571 65.714-75.429 65.714-142.857 0-141.143-114.857-256-256-256s-256 114.857-256 256c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-181.714 147.429-329.143 329.143-329.143s329.143 147.429 329.143 329.143zM512 548.571c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571zM676.571 475.429c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-70.857-57.143-128-128-128-70.286 0-128 57.143-128 128 0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571c0-110.857 90.286-201.143 201.143-201.143s201.143 90.286 201.143 201.143zM901.714 310.286c7.429 18.857-2.286 40-21.143 47.429-4 1.714-8.571 2.286-13.143 2.286-14.286 0-28.571-8.571-33.714-23.429-25.714-66.857-70.286-125.143-128-168.571-16-12-19.429-34.857-7.429-50.857 12.571-16 35.429-19.429 51.429-7.429 68.571 51.429 121.143 121.143 152 200.571zM1021.714 264c6.857 18.857-2.286 40-21.143 47.429-4.571 1.714-8.571 2.286-13.143 2.286-14.857 0-28.571-8.571-34.286-23.429-34.286-89.143-93.143-166.857-169.714-224.571-16.571-12-19.429-34.857-7.429-50.857 12-16.571 34.857-19.429 50.857-7.429 88 65.714 155.429 154.857 194.857 256.571z\"\n        ],\n        \"width\": 1028.608,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"assistive-listening-systems\"\n        ],\n        \"defaultCode\": 62114,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"assistive-listening-systems\",\n        \"id\": 616,\n        \"order\": 1472,\n        \"prevSize\": 28,\n        \"code\": 62114\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 616\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M589.714 548.571c-20-0.571-38.857-12-48-31.429-12.571-25.714-37.714-41.714-66.286-41.714-40.571 0-73.143 32.571-73.143 73.143 0 19.429 6.857 38.286 20.571 50.857l5.714 4.571c12.571 11.429 29.143 17.714 46.857 17.714 28.571 0 53.714-16 66.286-41.714 9.143-19.429 28-30.857 48-31.429zM914.286 475.429c0-19.429-6.857-38.286-20.571-50.857l-5.714-4.571c-12.571-11.429-29.143-17.714-46.857-17.714-28.571 0-53.714 16-66.286 41.714-9.143 19.429-28 30.857-48 31.429 20 0.571 38.857 12 48 31.429 12.571 25.714 37.714 41.714 66.286 41.714 40.571 0 73.143-32.571 73.143-73.143zM670.857 349.143c-13.143 26.857-46.286 38.286-73.143 25.143-24-12-49.714-17.714-76.571-17.714-20 0-38.857 3.429-56.571 9.714 3.429 0 7.429-0.571 10.857-0.571 70.286 0 134.857 41.143 165.143 104.571 13.143 27.429 1.143 60-26.286 73.143-6.857 3.429-14.286 5.143-22.286 5.143 8 0 15.429 1.714 22.286 5.143 27.429 13.143 39.429 45.714 26.286 73.143-30.286 63.429-94.857 104.571-165.143 104.571v0h-3.429c-8.571-1.143-16.571-1.714-25.143-2.286l-165.714-15.429-136.571 68.571c-5.714 2.857-10.857 4-16.571 4-13.143 0-26.286-7.429-32.571-20l-91.429-182.857c-8.571-17.714-2.286-38.857 14.286-48.571l119.429-68 84.571-152.571c13.143-117.714 71.429-225.714 164-301.714 23.429-19.429 58.286-16 77.143 7.429 19.429 23.429 16 57.714-7.429 77.143-25.714 21.714-48.571 46.286-66.857 73.143 44.571-30.286 96-50.857 152.571-57.714 30.286-4 57.714 17.143 61.143 47.429 4 30.286-17.143 57.714-47.429 61.143-33.143 4-64 15.429-90.857 31.429 18.286-4 37.143-5.714 56.571-5.714 43.429 0 85.714 9.714 124.571 28.571 27.429 13.714 38.857 46.286 25.143 73.714zM1221.143 257.714l91.429 182.857c8.571 17.714 2.286 38.857-14.286 48.571l-119.429 68-84.571 152.571c-13.143 117.714-71.429 225.714-164 301.714-10.286 8.571-22.857 12.571-34.857 12.571-16 0-31.429-6.857-42.286-20-19.429-23.429-16-57.714 7.429-77.143 25.714-21.714 48.571-46.286 66.857-73.143-44.571 30.286-96 50.857-152.571 57.714-2.286 0.571-4.571 0.571-6.857 0.571-27.429 0-50.857-20.571-54.286-48-4-30.286 17.143-57.714 47.429-61.143 33.143-4 64-15.429 90.857-31.429-18.286 4-37.143 5.714-56.571 5.714-43.429 0-85.714-9.714-124.571-28.571-27.429-13.714-38.857-46.286-25.143-73.714 13.143-26.857 46.286-38.286 73.143-25.143 24 12 49.714 17.714 76.571 17.714 20 0 38.857-3.429 56.571-9.714-3.429 0-7.429 0.571-10.857 0.571-70.286 0-134.857-41.143-165.143-104.571-13.143-27.429-1.143-60 26.286-73.143 6.857-3.429 14.286-5.143 22.286-5.143-8 0-15.429-1.714-22.286-5.143-27.429-13.143-39.429-45.714-26.286-73.143 30.286-63.429 94.857-104.571 165.143-104.571v0h4c8 1.143 16 1.714 24 2.286l166.286 15.429 136.571-68.571c5.714-2.857 10.857-4 16.571-4 13.143 0 26.286 7.429 32.571 20z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"american-sign-language-interpreting\",\n          \"asl-interpreting\"\n        ],\n        \"defaultCode\": 62115,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"american-sign-language-interpreting, asl-interpreting\",\n        \"id\": 617,\n        \"order\": 1473,\n        \"prevSize\": 28,\n        \"code\": 62115\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 617\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M603.429 475.429c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-110.857-90.286-201.143-201.143-201.143s-201.143 90.286-201.143 201.143c0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-70.857 57.714-128 128-128s128 57.143 128 128zM477.143 146.286c-181.714 0-329.143 147.429-329.143 329.143 0 20 16.571 36.571 36.571 36.571s36.571-16.571 36.571-36.571c0-141.143 114.857-256 256-256s256 114.857 256 256c0 67.429-30.286 102.286-65.714 142.857-38.286 44-82.286 94.286-82.286 186.286 0 80.571-65.714 146.286-146.286 146.286-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571c121.143 0 219.429-98.286 219.429-219.429 0-64.571 28.571-97.143 64.571-138.286 38.857-45.143 83.429-96 83.429-190.857 0-181.714-147.429-329.143-329.143-329.143zM337.714 557.143l129.143 129.143-330.857 330.857c-9.143 9.143-24 9.143-33.143 0l-96-96c-9.143-9.143-9.143-24 0-33.143zM921.143 6.857l96 96c9.143 9.143 9.143 24 0 33.714l-133.143 133.143-14.857 14.286-40.571 40.571c-24.571-57.143-62.286-107.429-111.429-147.429l170.286-170.286c9.714-9.143 24.571-9.143 33.714 0z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"deaf\",\n          \"deafness\",\n          \"hard-of-hearing\"\n        ],\n        \"defaultCode\": 62116,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"deaf, deafness, hard-of-hearing\",\n        \"id\": 618,\n        \"order\": 1474,\n        \"prevSize\": 28,\n        \"code\": 62116\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 618\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M494.857 294.286c0 18.286-4 36-7.429 53.714-12 57.143-23.429 114.286-35.429 171.429-1.714 8-1.714 8-10.286 8.571-5.714 0.571-12 1.143-17.714 1.143-49.143 0-62.857-53.143-62.857-93.143 0-59.429 23.429-138.857 78.857-170.286 9.143-4.571 18.857-8 29.143-8 23.429 0 25.714 17.143 25.714 36.571zM772.571 536.571c0-10.286-42.286-77.143-52-81.143-4.571-1.714-14.286-4.571-19.429-4.571-46.857 0-89.143 21.143-129.143 44l-1.143-1.143c9.143-61.143 29.714-115.429 29.714-178.857 0-90.857-48.571-133.143-138.286-133.143-13.143 0-26.286 1.714-38.857 3.429-112.571 20-181.143 148.571-181.143 254.286 0 112 64.571 173.714 176 173.714 2.286 0 14.286-1.143 14.286 1.714 0 1.143 0 1.714-0.571 2.857-2.286 21.714-9.143 45.714-14.857 66.857-8.571 31.429-38.286 85.714-76.571 85.714-16.571 0-24-11.429-24-26.857 0-49.714 57.143-79.429 58.286-82.286 0-2.286-2.857-4.571-4-5.714-17.714-16-46.857-29.143-70.857-29.143-43.429 0-66.857 69.714-66.857 105.143 0 66.286 41.714 112 108.571 112 98.857 0 170.857-104 193.143-189.714 6.286-25.143 10.857-50.857 17.143-76 1.143-5.143 2.857-7.429 8-10.286 40.571-20.571 83.429-34.286 129.714-34.286 25.143 0 47.429 4.571 72.571 10.286 0.571 0.571 1.714 0.571 2.286 0.571 3.429 0 8-4 8-7.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"glide\"\n        ],\n        \"defaultCode\": 62117,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"glide\",\n        \"id\": 619,\n        \"order\": 1475,\n        \"prevSize\": 28,\n        \"code\": 62117\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 619\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M425.143 174.286c0-30.286-2.857-56.571-39.429-56.571-15.429 0-30.857 5.143-44.571 13.143-86.286 47.429-121.714 170.286-121.714 262.857 0 61.714 21.143 144 96.571 144 17.143 0 38.857 4.571 43.429-15.429 18.286-88 36.571-176.571 54.857-264.571 5.714-27.429 10.857-55.429 10.857-83.429zM856 549.143c0 5.714-7.429 11.429-13.143 11.429l-3.429-0.571c-38.857-5.714-73.143-16-112.571-16-71.429 0-137.143 21.143-200.571 53.143-8 4-9.714 7.429-12 15.429-10.286 38.857-17.143 78.857-26.857 117.714-34.286 133.143-145.714 293.714-298.286 293.714-104 0-168-70.857-168-173.143 0-55.429 36-163.429 102.857-163.429 23.429 0 115.429 30.286 116 54.286-1.143 4.571-89.714 50.286-89.714 127.429 0 23.429 11.429 41.714 37.143 41.714 90.857 0 132.571-165.714 141.714-235.429v-5.143c0-4.571-18.286-2.286-21.714-2.286-172 0-272.571-96-272.571-269.143 0-163.429 106.286-362.857 280.571-393.143 20-3.429 40-5.143 60.571-5.143 138.286 0 213.714 64.571 213.714 205.714 0 95.429-32.571 183.429-46.286 276.571l1.714 1.714c61.714-34.857 126.857-68 200-68 7.429 0 23.429 4.571 30.286 7.429 14.857 5.714 80.571 109.143 80.571 125.143z\"\n        ],\n        \"width\": 877.1291428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"glide-g\"\n        ],\n        \"defaultCode\": 62118,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"glide-g\",\n        \"id\": 620,\n        \"order\": 1476,\n        \"prevSize\": 28,\n        \"code\": 62118\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 620\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M474.857 384.571c12 0 23.429 3.429 33.714 10.286l126.857 84.571c23.429 15.429 44.571 34.286 62.857 55.429l83.429 97.143c14.286 16.571 20.571 38.857 16.571 60.571l-41.143 236c-4.571 24-24 42.286-48.571 45.143l-301.143 32-201.143 18.286h-5.143c-29.714 0-54.857-24-54.857-54.857 0-28.571 24-51.429 52.571-54.857l148.571-18.286h-256c-31.429 0-56.571-26.286-54.857-57.714 1.714-29.714 28-52 57.714-52l252.571-0.571-297.714-36.571c-30.857-3.429-53.143-31.429-48.571-62.857 4.571-27.429 29.714-45.714 57.143-45.714h5.714l274.857 34.286-200.571-53.714c-28.571-7.429-50.286-33.714-45.714-62.857 4.571-27.429 28-46.286 54.286-46.286 4 0 7.429 0.571 11.429 1.143l256 54.857 124 21.143c1.143 0 2.286 0.571 3.429 0.571 17.143 0 25.714-23.429 10.286-33.714l-106.286-71.429c-26.286-17.714-32.571-53.143-13.714-78.286 10.286-14.286 26.857-21.714 43.429-21.714zM434.857 500l106.286 71.429-124.571-21.143-2.857-1.143-20.571-21.714-136-149.714c-1.143-1.143-1.714-2.857-2.857-4-17.714-23.429-13.714-57.714 10.857-76.571 22.857-17.714 55.429-12 75.429 9.143l81.143 84c-1.714 1.714-3.429 2.857-5.143 4.571-12 16.571-16.571 36.571-13.143 56.571 3.429 19.429 14.857 37.143 31.429 48.571zM941.714 240.571l8.571 152c1.714 28-0.571 56.571-6.286 84l-27.429 125.143c-4.571 21.714-18.286 39.429-38.286 49.714l-60.571 30.857c0.571-22.857-6.857-44.571-22.286-62.286l-83.429-97.143c-19.429-22.286-41.714-42.286-66.857-58.857l-126.857-84.571c-12.571-8.571-27.429-13.143-43.429-13.143-19.429 0-37.143 8-50.286 21.143l-134.286-178.286c-18.857-25.143-13.143-60.571 13.143-78.286 24.571-17.143 58.286-9.143 76.571 14.857l152 201.143-149.714-260c-16-26.857-6.857-61.714 21.143-76.571 26.286-13.714 59.429-2.857 74.286 22.857l137.714 240-77.714-192.571c-10.857-27.429-3.429-60.571 22.857-74.286 28-14.857 62.286-2.857 75.429 25.714l110.286 237.143 57.714 112c9.143 17.714 36 10.286 34.857-9.143l-6.857-128c-1.714-31.429 22.857-57.714 54.286-58.286 29.714 0 53.714 25.143 55.429 54.857z\"\n        ],\n        \"width\": 948.0045714285714,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sign-language\",\n          \"signing\"\n        ],\n        \"defaultCode\": 62119,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"sign-language, signing\",\n        \"id\": 621,\n        \"order\": 1477,\n        \"prevSize\": 28,\n        \"code\": 62119\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 621\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M191.429 774.857c-1.143 0-2.286-0.571-3.429-1.143-66.857-44.571-133.714-117.714-176-185.714-8-11.429-12-25.143-12-39.429 0-29.714 20.571-53.714 37.143-76 66.286-90.286 154.857-164.571 258.286-208.571-8.571-15.429-62.857-110.286-62.857-120.571 0-6.857 4-13.143 9.714-16.571 11.429-6.286 62.857-36.571 73.143-36.571 6.286 0 12.571 3.429 16 9.143l70.857 130.857c36-7.429 73.143-10.857 109.714-10.857 206.857 0 390.857 117.143 500.571 289.714 7.429 11.429 11.429 25.143 11.429 39.429s-4 28-11.429 39.429c-68 106.857-167.429 195.429-284 245.143 8.571 15.429 62.857 110.286 62.857 120.571 0 6.857-3.429 13.143-9.714 16.571-11.429 6.286-62.857 36.571-72.571 36.571-6.857 0-13.143-3.429-16.571-9.143l-70.857-130.857-36.571-68-253.714-468.571 4-4c-19.429 8-38.286 16.571-56.571 26.857 6.857 13.143 279.429 513.714 279.429 517.714 0 2.857-2.286 4.571-5.143 5.143-12.571 2.857-28.571 1.714-41.143 1.714-6.286 0-32 1.143-34.286-4l-260.571-480.571c-16.571 12-32 25.143-46.857 38.857 12.571 22.286 230.857 424 230.857 427.429 0 4.571-2.857 5.714-6.286 5.714-9.714 0-85.714-23.429-88.571-28.571l-60.571-112.571-128-236c-16 19.429-30.857 39.429-44.571 60.571 7.429 10.857 17.143 22.286 23.429 33.714 8 14.857 100.571 183.429 100.571 186.857 0 2.857-2.857 5.714-5.714 5.714zM665.714 716.571l28 52c106.857-43.429 194.857-123.429 257.143-220-63.429-97.714-153.714-178.857-262.286-222.286 50.857 48.571 79.429 115.429 79.429 185.714 0 80.571-37.714 156.571-102.286 204.571zM484.571 365.714c0 14.857 12.571 27.429 27.429 27.429 31.429 0 61.714 12.571 84 34.857s34.857 52.571 34.857 84c0 14.857 12.571 27.429 27.429 27.429s27.429-12.571 27.429-27.429c0-96-77.714-173.714-173.714-173.714-14.857 0-27.429 12.571-27.429 27.429zM693.714 328.571l-5.143-2.286 4 4z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"low-vision\"\n        ],\n        \"defaultCode\": 62120,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"low-vision\",\n        \"id\": 622,\n        \"order\": 1478,\n        \"prevSize\": 28,\n        \"code\": 62120\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 622\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M600 632c0 81.714-28.571 153.714-84 213.714-57.714 62.857-130.857 92-216 92-84.571 0-158.286-28.571-216-92-55.429-60-84-132-84-213.714 0-169.714 128-308.571 300-308.571 35.429 0 70.857 5.714 104 17.714-11.429 22.286-19.429 46.857-22.286 72-25.714-10.857-53.714-16-81.714-16-129.714 0-225.143 110.857-225.143 236.571 0 128 94.857 232.571 225.143 232.571s224.571-104.571 224.571-232.571c0-32.571-5.714-64.571-18.286-94.857 25.143-5.143 49.143-14.857 70.286-28 16 38.286 23.429 80 23.429 121.143zM483.429 524c0 144-58.286 264-181.714 341.714l-8 0.571c-12 0-24-1.143-35.429-2.857 165.143-62.857 195.429-313.714 195.429-466.857 0-19.429 0-39.429-1.714-58.857 20.571 60 31.429 122.857 31.429 186.286zM452 336.571v1.143c-29.714-87.429-70.857-172-117.714-251.429 72 48.571 111.429 166.286 117.714 250.286zM591.429 452.571c-35.429 0-66.857-18.857-91.429-42.857 58.286-32 132-81.714 165.714-141.143 4-8 10.857-22.857 12-32-33.143 74.286-117.714 132.571-196.571 150.857-12.571-19.429-20-41.143-20-64.571 0-27.429 13.714-64 34.286-84 23.429-22.286 58.286-33.714 89.714-42.286 45.714-12.571 82.857-48 102.857-90.857 29.714 42.286 42.286 93.714 42.286 144.571 0 25.714-4 72.571-13.714 97.143-21.143 51.429-64 105.143-125.143 105.143z\"\n        ],\n        \"width\": 730.2582857142856,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"viadeo\"\n        ],\n        \"defaultCode\": 62121,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"viadeo\",\n        \"id\": 623,\n        \"order\": 1479,\n        \"prevSize\": 28,\n        \"code\": 62121\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 623\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M600 594.857c0-28.571-5.143-57.143-16-84-14.857 9.143-31.429 16-48.571 19.429 9.143 20.571 12.571 42.857 12.571 65.143 0 88-65.143 160-154.286 160-89.714 0-154.857-72-154.857-160 0-86.286 65.714-162.286 154.857-162.286 19.429 0 38.286 3.429 56 10.857 1.714-17.143 7.429-34.286 15.429-49.714-22.857-8-46.857-12-71.429-12-118.286 0-206.286 95.429-206.286 212.571s88.571 209.714 206.286 209.714 206.286-93.143 206.286-209.714zM498.286 392c1.143 13.714 1.143 27.429 1.143 40.571 0 105.714-20.571 277.714-134.286 321.143 8 1.143 16 1.714 24 1.714h5.714c84.571-53.714 125.143-136 125.143-234.857 0-44-7.429-87.429-21.714-128.571zM498.286 392c-2.857-55.429-34.286-141.143-81.143-172.571 32 54.286 60.571 112.571 81.143 172.571zM689.714 332c0-34.857-8.571-70.286-29.143-99.429-13.714 29.143-39.429 53.714-70.857 62.286-45.143 12.571-85.143 33.714-85.143 87.429 0 15.429 5.143 30.857 13.714 44 54.286-12.571 112-52.571 134.857-104-3.429 45.714-88.571 101.143-121.714 119.429 16.571 16.571 38.286 29.714 62.857 29.714 41.714 0 71.429-37.143 85.714-72.571 6.857-17.143 9.714-49.143 9.714-66.857zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"viadeo-square\"\n        ],\n        \"defaultCode\": 62122,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"viadeo-square\",\n        \"id\": 624,\n        \"order\": 1480,\n        \"prevSize\": 28,\n        \"code\": 62122\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 624\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M730.857 656c0-8-4.571-13.714-12.571-15.429-52-11.429-91.429-47.429-113.143-95.429-1.714-4.571-4-9.143-4-14.286 0-25.714 71.429-20.571 71.429-57.143 0-15.429-18.857-25.143-32.571-25.143-13.143 0-23.429 9.143-36 9.143-2.286 0-4.571-0.571-6.857-1.143 1.143-21.714 2.857-43.429 2.857-65.143 0-20-1.143-47.429-9.714-65.143-27.429-59.429-80.571-94.286-145.714-94.286-71.429 0-125.714 26.286-157.143 94.286-8.571 17.714-9.714 45.143-9.714 65.143 0 21.714 1.714 43.429 2.857 65.143-2.286 1.143-5.143 1.143-8 1.143-13.143 0-23.429-8.571-35.429-8.571-14.286 0-32 9.143-32 25.143 0 35.429 71.429 30.857 71.429 56.571 0 5.143-2.286 9.714-4 14.286-22.286 48-60.571 84-113.143 95.429-8 1.714-12.571 7.429-12.571 15.429 0 26.286 60.571 36 78.286 38.857 5.143 13.714 2.857 37.714 23.429 37.714 14.286 0 28.571-5.143 44-5.143 60 0 76 54.286 145.714 54.286 72.571 0 86.286-54.286 146.857-54.286 15.429 0 29.714 4.571 44.571 4.571 20 0 17.714-24 22.857-37.143 17.714-2.857 78.286-12.571 78.286-38.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"snapchat\"\n        ],\n        \"defaultCode\": 62123,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"snapchat\",\n        \"id\": 625,\n        \"order\": 1481,\n        \"prevSize\": 28,\n        \"code\": 62123\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 625\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M484.571 73.143c102.857-1.143 188 56.571 230.857 149.143 13.143 28 15.429 71.429 15.429 102.286 0 36.571-2.857 72.571-5.143 109.143 4.571 2.286 10.857 4 16 4 20.571 0 37.714-15.429 58.286-15.429 19.429 0 47.429 13.714 47.429 36.571 0 54.857-114.857 44.571-114.857 92.571 0 8.571 3.429 16.571 6.857 24.571 27.429 60 79.429 117.714 141.143 143.429 14.857 6.286 29.714 9.714 45.714 13.143 10.286 2.286 16 9.714 16 20 0 38.857-98.857 54.857-125.143 58.857-11.429 17.714-2.857 59.429-33.143 59.429-23.429 0-46.857-7.429-72-7.429-12 0-24 0.571-35.429 2.857-68 11.429-90.857 84.571-202.286 84.571-107.429 0-133.143-73.143-199.429-84.571-12-2.286-24-2.857-36-2.857-25.714 0-50.286 8.571-70.857 8.571-32 0-22.286-42.286-34.286-60.571-26.286-4-125.143-20-125.143-58.857 0-10.286 5.714-17.714 16-20 16-3.429 30.857-6.857 45.714-13.143 61.143-25.143 114.286-83.429 141.143-143.429 3.429-8 6.857-16 6.857-24.571 0-48-115.429-38.857-115.429-92 0-22.286 26.286-36.571 46.286-36.571 17.714 0 35.429 14.857 57.714 14.857 6.286 0 12.571-1.143 18.286-4-2.286-36-5.143-72-5.143-108.571 0-30.857 2.286-74.857 15.429-102.857 50.286-108.571 135.429-148 249.143-149.143z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"snapchat-ghost\"\n        ],\n        \"defaultCode\": 62124,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"snapchat-ghost\",\n        \"id\": 626,\n        \"order\": 1482,\n        \"prevSize\": 28,\n        \"code\": 62124\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 626\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M731.429 656c0-8-4.571-13.714-12.571-15.429-52-10.857-91.429-47.429-113.143-95.429-2.286-4.571-4-9.143-4-14.286 0-25.714 70.857-20.571 70.857-57.143 0-15.429-18.857-25.143-32.571-25.143-12.571 0-22.857 9.143-36 9.143-2.286 0-4.571-0.571-6.857-1.143 1.714-21.714 2.857-44 2.857-65.714 0-19.429-1.143-46.857-9.714-65.143-27.429-59.429-80-94.286-145.714-94.286-71.429 0-125.714 26.857-157.143 94.286-8.571 18.286-10.286 45.714-10.286 65.714 0 21.714 1.714 43.429 3.429 65.143-2.857 0.571-5.714 1.143-8.571 1.143-12.571 0-23.429-9.143-35.429-9.143-14.286 0-31.429 9.714-31.429 25.714 0 35.429 70.857 30.857 70.857 56.571 0 5.143-1.714 9.714-4 14.286-22.286 48-60.571 84-113.143 95.429-8 1.714-12.571 7.429-12.571 15.429 0 26.857 60.571 36.571 78.857 39.429 5.143 13.714 2.857 37.714 22.857 37.714 14.857 0 29.143-5.714 44-5.714 60.571 0 76.571 54.286 146.286 54.286 72.571 0 86.286-54.286 147.429-54.286 14.857 0 29.714 5.143 44.571 5.143 19.429 0 17.714-24 22.286-37.143 18.286-2.857 78.857-12.571 78.857-39.429zM877.714 237.714v548.571c0 90.857-73.714 164.571-164.571 164.571h-548.571c-90.857 0-164.571-73.714-164.571-164.571v-548.571c0-90.857 73.714-164.571 164.571-164.571h548.571c90.857 0 164.571 73.714 164.571 164.571z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"snapchat-square\"\n        ],\n        \"defaultCode\": 62125,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"snapchat-square\",\n        \"id\": 627,\n        \"order\": 1483,\n        \"prevSize\": 28,\n        \"code\": 62125\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 627\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1316.571 0c-166.286 110.286-184 190.286-198.286 214.857-13.714 25.143-24 124-48 172-24 48.571-111.429 86.857-136 102.857-24 16-58.286 78.286-86.286 132-126.286-5.143-251.429 25.714-360 90.286 0 0-52.571 30.286-173.143 102.286 60.571-20 89.143-34.286 89.143-34.286 150.857-57.714 190.857-85.143 312.571-105.143 93.714-15.429 214.857-2.857 265.714 4 2.286 0 4 1.143 5.714 1.714 8 4.571 10.857 14.286 6.286 22.286l-110.857 197.143c-5.143 9.714-16 14.857-26.857 12.571-27.429-5.143-90.286-13.714-202.286-13.714-162.286 0-294.286 49.714-453.714 52-134.286 1.714-186.857-53.143-200-70.857 0-0.571-0.571-1.143-0.571-1.714 0-2.286 1.143-3.429 3.429-3.429 0 0 78.857 0 212-31.429 151.429-288.571 286.286-389.714 433.143-389.714 0 0 147.429 0 186.286 127.429 46.857-81.714 58.286-101.143 58.286-101.143 10.857-19.429 72-158.857 177.714-290.857v0c106.286-132 186.286-164.571 245.714-189.143z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pied-piper\"\n        ],\n        \"defaultCode\": 62126,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"pied-piper\",\n        \"id\": 628,\n        \"order\": 1484,\n        \"prevSize\": 28,\n        \"code\": 62126\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 628\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M755.429 512c0 14.857-0.571 29.143-2.857 43.429l-134.857-8 128 44.571c-7.429 29.143-18.857 56-33.143 80.571l-122.286-58.857 101.143 90.286c-17.143 23.429-37.714 44-61.143 61.714l-89.714-101.714 58.857 122.857c-24.571 14.857-51.429 25.714-80 33.714l-45.143-130.286 8 137.143c-14.286 2.286-28.571 3.429-43.429 3.429-14.286 0-29.143-1.143-43.429-3.429l8-136-44.571 129.143c-28.571-7.429-55.429-18.857-80-33.714l58.857-122.857-89.714 101.714c-23.429-17.143-44-38.286-61.714-61.714l101.714-90.286-122.286 59.429c-14.286-25.143-25.714-52-33.143-80.571l128-45.143-135.429 8c-1.714-14.286-2.857-28.571-2.857-43.429s1.143-29.714 2.857-44l136 8-128.571-45.143c7.429-28.571 18.857-55.429 33.143-80l122.286 59.429-101.143-90.857c17.714-23.429 38.286-44 61.143-61.714l90.286 101.714-58.857-122.857c24.571-14.286 51.429-25.714 80-33.143l44 128-7.429-134.857c13.714-2.286 28.571-3.429 42.857-3.429 14.857 0 29.143 1.143 43.429 3.429l-8 135.429 44.571-128.571c28.571 7.429 55.429 18.857 80 33.714l-58.857 122.286 90.286-101.714c22.857 17.714 43.429 38.286 61.143 61.714l-101.143 90.857 121.714-59.429c14.857 24.571 25.714 52 33.143 80.571l-128 44.571 135.429-8c2.286 14.286 2.857 29.143 2.857 44zM772.571 512c0-185.714-149.714-336-333.714-336-184.571 0-333.714 150.286-333.714 336 0 185.143 149.143 335.429 333.714 335.429 184 0 333.714-150.286 333.714-335.429zM814.286 293.143v437.714l-375.429 218.857-375.429-218.857v-437.714l375.429-218.857zM438.857 982.286l404.571-235.429v-470.286l-404.571-234.857-404.571 234.857v470.286zM877.714 256v512l-438.857 256-438.857-256v-512l438.857-256z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"first-order\"\n        ],\n        \"defaultCode\": 62128,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"first-order\",\n        \"id\": 629,\n        \"order\": 1485,\n        \"prevSize\": 28,\n        \"code\": 62128\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 629\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M193.714 124.571h394.857l-14.857 41.143h-380c-84 0-152.571 69.143-152.571 153.143v440.571c0 72 51.429 135.429 122.286 150.286 18.286 4 37.143 2.857 56 2.857v41.143h-25.714c-106.857 0-193.714-87.429-193.714-194.286v-440.571c0-106.857 86.857-194.286 193.714-194.286zM680 0h141.143l-275.429 739.429c-51.429 137.143-113.714 280-282.857 284.571v-111.429c63.429-10.286 104-45.143 125.714-104 7.429-19.429 11.429-39.429 11.429-60s-4-41.143-11.429-60.571l-162.857-418.857h130.286l106.857 334.286zM950.857 318.857v634.857h-454.286c9.143-13.714 18.857-26.857 25.714-41.714h387.429v-593.143c0-65.143-41.143-123.429-102.286-145.143l14.286-38.286c77.714 26.286 129.143 101.714 129.143 183.429z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"yoast\"\n        ],\n        \"defaultCode\": 62129,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"yoast\",\n        \"id\": 630,\n        \"order\": 1486,\n        \"prevSize\": 28,\n        \"code\": 62129\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 630\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M486.857 176.571c0 20.571-13.143 43.429-35.429 43.429-22.857 0-35.429-22.857-35.429-43.429 0-20 12.571-43.429 35.429-43.429 22.286 0 35.429 23.429 35.429 43.429zM393.143 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40 19.429-40 41.714v65.143c0 22.286 17.143 42.286 40 42.286s40.571-19.429 40.571-42.286zM491.429 962.857v-65.143c0-22.286-17.143-41.714-40-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40-20 40-42.286zM590.857 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40.571-19.429 40.571-42.286zM690.286 962.857v-65.143c0-22.286-17.714-41.714-40.571-41.714s-40.571 19.429-40.571 41.714v65.143c0 22.286 17.714 42.286 40.571 42.286s40.571-20 40.571-42.286zM843.429 572c-61.714 118.286-180.571 205.143-317.143 205.143-193.143 0-321.143-169.143-321.143-353.143 0-33.714 4-66.857 12-99.429-40 67.429-59.429 145.143-59.429 222.857 0 120.571 49.714 243.429 142.857 321.714 10.286-19.429 29.714-32.571 52-32.571 20 0 38.857 11.429 49.143 28.571 10.857-17.143 29.143-28.571 49.714-28.571 20 0 38.857 11.429 49.143 28.571 10.857-17.143 29.714-28.571 49.714-28.571s38.857 11.429 49.714 28.571c10.286-17.143 29.143-28.571 49.143-28.571 21.714 0 41.714 13.143 51.429 32 86.857-72.571 137.143-184 142.857-296.571zM757.714 555.429c0-28.571-12.571-42.857-41.143-42.857-9.143 0-18.286 1.714-26.857 3.429-28.571 5.714-56.571 10.857-85.143 10.857-90.286 0-129.143-52.571-129.143-138.857 0-39.429 7.429-78.286 17.143-116.571-30.286 46.286-47.429 101.714-47.429 157.143 0 108 68.571 212 185.143 212 42.857 0 85.143-15.429 120-40 4-14.857 7.429-29.714 7.429-45.143zM505.143 178.857c0-36-25.143-73.714-64.571-73.714s-64.571 37.714-64.571 73.714c0 36.571 25.143 74.286 64.571 74.286s64.571-37.714 64.571-74.286zM864.571 372.571c0-107.429-69.143-211.429-185.143-211.429-60.571 0-117.143 30.286-157.714 73.714-14.286 47.429-27.429 102.857-27.429 153.143 0 76 30.286 120 110.286 120 27.429 0 54.286-5.143 81.143-10.857 10.286-1.714 20-3.429 30.286-3.429 39.429 0 59.429 22.857 59.429 61.714 0 8.571-0.571 17.714-2.286 26.286 57.714-52 91.429-131.429 91.429-209.143zM1024 496.571c0 72-22.857 204.571-72.571 259.429-45.714 49.714-174.857 122.286-241.714 141.143l-2.286 0.571v65.143c0 32.571-25.143 61.143-58.286 61.143-20 0-38.857-11.429-49.143-28.571-10.857 17.143-29.714 28.571-49.714 28.571s-38.857-11.429-49.714-28.571c-10.286 17.143-29.143 28.571-49.143 28.571-20.571 0-38.857-11.429-49.714-28.571-10.286 17.143-29.143 28.571-49.143 28.571-37.714 0-58.857-31.429-58.857-65.714-32.571 24.571-71.429 38.857-113.143 38.857-44 0-86.857-16.571-120.571-45.714 20.571-0.571 41.143-4.571 60.571-11.429-41.714-11.429-78.857-37.714-104-72.571 13.143 2.857 26.857 4 40.571 4 33.143 0 65.714-9.143 93.714-26.286-44-44-113.143-117.714-137.143-174.857-11.429-26.857-13.714-62.857-13.714-91.429 0-99.429 40.571-320 172.571-320 21.143 0 37.714 9.714 46.286 29.714 7.429-10.857 15.429-21.143 24-30.857 4-5.143 11.429-10.857 14.286-16.571 16-25.143 23.429-42.286 43.429-68 64.571-82.286 163.429-138.857 269.714-138.857 12 0 24 0.571 35.429 2.286 21.714-23.429 52-36.571 83.429-36.571 29.143 0 59.429 12 80 32.571 1.714 1.714 2.857 4.571 2.857 6.857 0 7.429-20.571 26.857-25.714 32.571 8.571 2.857 31.429 13.714 31.429 24 0 5.714-5.714 10.286-9.143 14.286 62.857 55.429 98.857 134.286 112.571 216 8.571-10.286 20.571-17.143 34.286-17.143 21.143 0 41.714 14.286 57.143 28 41.714 37.143 51.429 106.286 51.429 159.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"themeisle\"\n        ],\n        \"defaultCode\": 62130,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"themeisle\",\n        \"id\": 631,\n        \"order\": 1487,\n        \"prevSize\": 28,\n        \"code\": 62130\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 631\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M524 517.143c0-12.571-1.143-24.571-3.429-36.571h-206.857v75.429h124c-9.143 60.571-66.286 94.286-124 94.286-76 0-136.571-62.857-136.571-138.286s60.571-138.286 136.571-138.286c32 0 64 10.857 87.429 33.714l59.429-57.714c-40.571-37.714-91.429-57.143-146.857-57.143-121.714 0-219.429 98.286-219.429 219.429s97.714 219.429 219.429 219.429c126.286 0 210.286-89.143 210.286-214.286zM721.143 543.429h62.286v-62.857h-62.286v-62.857h-62.857v62.857h-62.857v62.857h62.857v62.857h62.857v-62.857zM877.714 512c0 242.286-196.571 438.857-438.857 438.857s-438.857-196.571-438.857-438.857 196.571-438.857 438.857-438.857 438.857 196.571 438.857 438.857z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"google-plus-circle\",\n          \"google-plus-official\"\n        ],\n        \"defaultCode\": 62131,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"google-plus-circle, google-plus-official\",\n        \"id\": 632,\n        \"order\": 1488,\n        \"prevSize\": 28,\n        \"code\": 62131\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 632\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M877.714 292.571v479.429c0 17.714-11.429 30.857-28 35.429-61.143 18.286-129.714 29.714-193.143 29.714-85.714 0-158.286-33.714-253.143-33.714-70.286 0-142.857 11.429-211.429 27.429v193.143h-91.429v-781.714c-48-18.857-79.429-65.714-79.429-117.143 0-69.143 56-125.143 125.143-125.143s125.143 56 125.143 125.143c0 51.429-31.429 98.286-79.429 117.143v38.857c64-14.857 130.286-25.143 196-25.143 37.714 0 75.429 2.857 113.143 8.571 49.143 7.429 98.857 24.571 149.143 24.571 31.429 0 63.429-4 94.286-10.286 23.429-4.571 77.143-22.857 96.571-22.857 20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 898.8525714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fa\",\n          \"font-awesome\"\n        ],\n        \"defaultCode\": 62132,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"fa, font-awesome\",\n        \"id\": 633,\n        \"order\": 1489,\n        \"prevSize\": 28,\n        \"code\": 62132\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 633\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M109.714 658.286c48 0 48-73.143 0-73.143s-48 73.143 0 73.143zM951.429 625.143c-45.143-58.857-89.143-118.857-140.571-172.571l-71.429 80c-62.857 71.429-175.429 69.714-236.571-3.429-43.429-52.571-43.429-128 1.143-180l101.143-117.714c-35.429-18.286-78.286-12-116.571-12-33.714 0-66.286 13.714-90.286 37.714l-90.286 90.286h-88.571v310.857c25.143 0 48-3.429 68 16l169.714 166.857c34.857 33.714 80 63.429 129.714 63.429 25.714 0 53.143-8.571 71.429-26.857 42.857 14.857 92.571-9.143 105.714-53.143 27.429 2.286 52.571-6.286 72.571-25.143 13.143-12 30.286-36 28.571-54.857 5.143 5.143 17.714 5.714 24.571 5.714 68 0 103.429-71.429 61.714-125.143zM1042.286 658.286h54.857v-292.571h-53.143l-89.714-102.857c-24-27.429-60-43.429-96.571-43.429h-95.429c-32 0-62.857 14.286-83.429 38.286l-119.429 138.857c-21.143 25.143-21.143 60.571-0.571 85.714 32.571 38.857 92.571 39.429 126.286 1.714l110.286-124.571c26.286-29.143 74.286-1.714 62.286 35.429 21.714 25.143 45.143 49.714 66.286 74.857 28.571 35.429 56 72.571 84 108.571 17.714 22.857 30.857 50.286 34.286 80zM1206.857 658.286c48 0 48-73.143 0-73.143s-48 73.143 0 73.143zM1316.571 329.143v365.714c0 20-16.571 36.571-36.571 36.571h-248c-20.571 49.714-65.714 82.857-118.286 90.286-24.571 36-62.286 63.429-104.571 72.571-31.429 40-82.286 64-133.143 60.571-94.286 53.143-200.571 6.857-270.857-62.286l-164-161.143h-204.571c-20 0-36.571-16.571-36.571-36.571v-384c0-20 16.571-36.571 36.571-36.571h240.571c66.286-66.286 112-128 211.429-128h66.857c37.143 0 73.143 11.429 103.429 32 30.286-20.571 66.286-32 103.429-32h95.429c108.571 0 153.714 70.857 219.429 146.286h202.857c20 0 36.571 16.571 36.571 36.571z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"handshake-o\"\n        ],\n        \"defaultCode\": 62133,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"handshake-o\",\n        \"id\": 634,\n        \"order\": 1490,\n        \"prevSize\": 28,\n        \"code\": 62133\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 634\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 373.714v558.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-558.857c0-5.143 2.286-10.286 6.286-13.714 60-52.571 60.571-58.857 358.857-276.571 36-26.286 99.429-83.429 146.857-83.429s111.429 57.714 146.857 83.429c298.286 217.714 298.857 224 358.857 276.571 4 3.429 6.286 8.571 6.286 13.714zM701.714 708c89.143-64.571 151.429-109.714 197.143-144 8-5.714 9.714-17.143 3.429-25.143l-21.714-29.714c-6.286-8-17.714-9.714-25.714-3.429-45.143 33.143-106.857 78.857-196 142.857-35.429 25.714-99.429 82.857-146.857 82.857s-111.429-57.143-146.857-82.857c-89.143-64.571-150.857-109.714-196-142.857-8-6.286-19.429-4.571-25.714 3.429l-21.714 29.714c-6.286 8-4.571 19.429 3.429 25.143 45.714 34.286 108 79.429 197.143 144 44.571 32 114.857 96.571 189.714 96.571 75.429 0 147.429-65.714 189.714-96.571z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"envelope-open\"\n        ],\n        \"defaultCode\": 62134,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"envelope-open\",\n        \"id\": 635,\n        \"order\": 1491,\n        \"prevSize\": 28,\n        \"code\": 62134\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 635\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M842.286 521.714l22.286 29.143c6.286 8 4.571 18.857-2.857 25.143-57.143 44.571-188.571 145.714-194.286 150.286-40.571 33.143-95.429 78.857-154.857 78.286h-1.143c-59.429 0-114.286-45.143-154.857-78.286-6.286-5.143-133.143-102.857-189.143-146.286-8-6.286-9.714-17.143-3.429-25.143l21.143-29.714c6.286-8.571 18.286-10.286 26.286-3.429 38.857 30.286 93.714 72.571 174.857 134.857 28.571 21.714 85.143 74.857 125.143 74.857h1.143c40 0 96.571-53.143 125.143-74.857 84-64.571 140-107.429 178.857-138.286 8-6.286 19.429-4.571 25.714 3.429zM950.857 932.571v-530.286c-57.143-53.143-48.571-48.571-313.143-253.143-28.571-22.286-85.143-76-125.143-76h-1.143c-40 0-96.571 53.714-125.143 76-264.571 204.571-256 200-313.143 253.143v530.286c0 9.714 8.571 18.286 18.286 18.286h841.143c9.714 0 18.286-8.571 18.286-18.286zM1024 402.286v530.286c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-530.286c0-20.571 8.571-40 23.429-53.714 117.143-108.571 252-202.857 333.143-269.714 40-33.143 95.429-78.857 154.857-78.857h1.143c59.429 0 114.857 45.714 154.857 78.857 75.429 62.286 218.857 163.429 333.143 269.714 14.857 13.714 23.429 33.143 23.429 53.714z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"envelope-open-o\"\n        ],\n        \"defaultCode\": 62135,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"envelope-open-o\",\n        \"id\": 636,\n        \"order\": 1492,\n        \"prevSize\": 28,\n        \"code\": 62135\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 636\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M188.571 877.143l115.429 122.286-19.429-134.857-123.429-121.714zM317.714 1006.286l156.571-124.571-6.286-140-171.429 122.857zM140 641.714l129.714 121.714-27.429-186.857-140-116.571zM282.857 769.714l181.143-122.286-8-185.143-201.143 114.286zM481.714 776l54.286 45.714-1.143-136.571-58.857-45.143c0 4.571 2.286 12.571-2.286 16l-44.571 29.714 48.571 40c5.714 4.571 4 43.429 4 50.286zM78.857 346.286l146.286 114.286-38.857-265.714-159.429-98.857zM670.286 725.143l8.571-133.714-131.429 93.714 1.143 137.143zM238.286 465.143l213.143-110.857-10.857-252-241.714 93.143zM725.714 673.714l11.429-133.143-129.143-81.143-1.143 60 82.286 54.286c1.714 1.143 2.857 3.429 2.286 5.143l-4 68zM834.857 594.286l17.143-126.857-102.286 73.143-11.429 130.286zM727.429 689.714l-40.571-28-4.571 66.857c0 1.714-0.571 3.429-2.286 4.571l-133.714 106.857c-2.286 1.714-5.714 1.714-8 0l-56-47.429 4 92c0 1.714-0.571 3.429-2.286 4.571l-167.429 133.714c-1.143 0.571-2.286 1.143-3.429 1.143-1.714-0.571-3.429-0.571-4.571-1.714l-130.286-138.286c-2.857-2.857-30.857-144-33.714-158.286-0.571-2.286 1.143-5.143 2.857-6.286l34.857-21.143c-6.857-6.286-53.143-46.857-54.286-52.571l-41.143-200.571c-0.571-2.286 0.571-5.143 3.429-6.857l53.714-25.714c-9.143-6.857-75.429-54.857-77.143-61.714l-54.857-266.286c-0.571-3.429 1.143-6.286 4-7.429l247.429-77.143c1.143 0 2.857 0 4.571 0.571l181.143 87.429c1.714 1.143 3.429 3.429 3.429 5.143l11.429 264.571c0 2.286-1.143 4.571-3.429 5.714l-67.429 34.857 72 48.571c1.714 0.571 2.857 2.857 2.857 4.571l2.857 70.286 69.143-42.286c1.714-1.143 4.571-1.143 6.286 0l48 32 1.714-62.857c0-1.714 1.143-4 2.857-5.143l117.714-72c2.286-1.143 4.571-1.143 6.286 0l140 77.143c1.143 1.143 2.286 2.286 2.857 4 1.143 4-17.714 132.571-19.429 145.714 0 1.714-1.143 3.429-2.286 4l-109.143 87.429c-2.286 1.714-5.143 1.714-7.429 0z\"\n        ],\n        \"width\": 878.2994285714285,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"linode\"\n        ],\n        \"defaultCode\": 62136,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"linode\",\n        \"id\": 637,\n        \"order\": 1493,\n        \"prevSize\": 28,\n        \"code\": 62136\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 637\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M686.286 707.429c0-101.143-24.571-213.714-126.286-213.714-31.429 18.286-74.286 49.714-121.143 49.714s-89.714-31.429-121.143-49.714c-101.714 0-126.286 112.571-126.286 213.714 0 56.571 37.143 97.143 82.857 97.143h329.143c45.714 0 82.857-40.571 82.857-97.143zM587.429 368c0-82.286-66.857-148.571-148.571-148.571s-148.571 66.286-148.571 148.571c0 81.714 66.857 148 148.571 148s148.571-66.286 148.571-148zM950.857 676.571v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v128c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429v128h54.857c10.286 0 18.286 8 18.286 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v73.143h54.857c10.286 0 18.286 8 18.286 18.286v109.714c0 10.286-8 18.286-18.286 18.286h-54.857v73.143h54.857c10.286 0 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"address-book\"\n        ],\n        \"defaultCode\": 62137,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"address-book\",\n        \"id\": 638,\n        \"order\": 1494,\n        \"prevSize\": 28,\n        \"code\": 62137\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 638\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M587.429 368c0 81.714-66.857 148-148.571 148s-148.571-66.286-148.571-148c0-82.286 66.857-148.571 148.571-148.571s148.571 66.286 148.571 148.571zM560 493.714c109.143 0 126.286 129.714 126.286 213.714 0 48-30.286 97.143-82.857 97.143h-329.143c-52.571 0-82.857-49.143-82.857-97.143 0-80.571 17.143-213.714 123.429-213.714h2.857c37.714 22.286 76 49.714 121.143 49.714s83.429-27.429 121.143-49.714zM950.857 347.429c0 9.714-8.571 18.286-18.286 18.286h-54.857v73.143h54.857c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-54.857v73.143h54.857c9.714 0 18.286 8.571 18.286 18.286v109.714c0 9.714-8.571 18.286-18.286 18.286h-54.857v128c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429v128h54.857c9.714 0 18.286 8.5711 18.286 18.286v109.714zM804.571 932.571v-841.143c0-9.714-8.571-18.286-18.286-18.286h-694.857c-9.714 0-18.286 8.571-18.286 18.286v841.143c0 9.714 8.571 18.286 18.286 18.286h694.857c9.714 0 18.286-8.571 18.286-18.286z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"address-book-o\"\n        ],\n        \"defaultCode\": 62138,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"address-book-o\",\n        \"id\": 639,\n        \"order\": 1495,\n        \"prevSize\": 28,\n        \"code\": 62138\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 639\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 646.286c0-88.571-21.714-186.857-112-186.857-28 16-65.714 43.429-107.429 43.429s-79.429-27.429-107.429-43.429c-90.286 0-112 98.286-112 186.857 0 49.714 32.571 85.143 73.143 85.143h292.571c40.571 0 73.143-35.429 73.143-85.143zM495.429 349.143c0-71.429-58.286-129.714-129.714-129.714s-129.714 58.286-129.714 129.714c0 72 58.286 129.714 129.714 129.714s129.714-57.714 129.714-129.714zM1024 640v-36.571c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM1024 491.429v-32c0-11.429-9.143-20.571-20.571-20.571h-324.571c-11.429 0-20.571 9.143-20.571 20.571v32c0 11.429 9.143 20.571 20.571 20.571h324.571c11.429 0 20.571-9.143 20.571-20.571zM1024 347.429v-36.571c0-10.286-8-18.286-18.286-18.286h-329.143c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h329.143c10.286 0 18.286-8 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-201.143v-54.857c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v54.857h-438.857v-54.857c0-10.286-8-18.286-18.286-18.286h-36.571c-10.286 0-18.286 8-18.286 18.286v54.857h-201.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"address-card\",\n          \"vcard\"\n        ],\n        \"defaultCode\": 62139,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"address-card, vcard\",\n        \"id\": 640,\n        \"order\": 1496,\n        \"prevSize\": 28,\n        \"code\": 62139\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 640\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 646.286c0 49.714-32.571 85.143-73.143 85.143h-292.571c-40.571 0-73.143-35.429-73.143-85.143 0-88.571 21.714-186.857 112-186.857 28 16 65.714 43.429 107.429 43.429s79.429-27.429 107.429-43.429c90.286 0 112 98.286 112 186.857zM495.429 349.143c0 72-58.286 129.714-129.714 129.714s-129.714-57.714-129.714-129.714c0-71.429 58.286-129.714 129.714-129.714s129.714 58.286 129.714 129.714zM1024 603.429v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM1024 459.429v32c0 11.429-9.143 20.571-20.571 20.571h-324.571c-11.429 0-20.571-9.143-20.571-20.571v-32c0-11.429 9.143-20.571 20.571-20.571h324.571c11.429 0 20.571 9.143 20.571 20.571zM1024 310.857v36.571c0 10.286-8 18.286-18.286 18.286h-329.143c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h329.143c10.286 0 18.286 8 18.286 18.286zM1097.143 859.429v-694.857c0-9.714-8.571-18.286-18.286-18.286h-987.429c-9.714 0-18.286 8.571-18.286 18.286v694.857c0 9.714 8.571 18.286 18.286 18.286h201.143v-54.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v54.857h438.857v-54.857c0-10.286 8-18.286 18.286-18.286h36.571c10.286 0 18.286 8 18.286 18.286v54.857h201.143c9.714 0 18.286-8.571 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"address-card-o\",\n          \"vcard-o\"\n        ],\n        \"defaultCode\": 62140,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"address-card-o, vcard-o\",\n        \"id\": 641,\n        \"order\": 1497,\n        \"prevSize\": 28,\n        \"code\": 62140\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 641\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M870.286 765.143c-14.857-106.857-58.286-201.714-155.429-214.857-50.286 54.857-122.857 89.714-202.857 89.714s-152.571-34.857-202.857-89.714c-97.143 13.143-140.571 108-155.429 214.857 79.429 112 210.286 185.714 358.286 185.714s278.857-73.714 358.286-185.714zM731.429 365.714c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429zM1024 512c0 281.714-228.571 512-512 512-282.857 0-512-229.714-512-512 0-282.857 229.143-512 512-512s512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"user-circle\"\n        ],\n        \"defaultCode\": 62141,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"user-circle\",\n        \"id\": 642,\n        \"order\": 1498,\n        \"prevSize\": 28,\n        \"code\": 62141\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 642\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 0c282.857 0 512 229.143 512 512 0 281.143-228 512-512 512-283.429 0-512-230.286-512-512 0-282.857 229.143-512 512-512zM865.714 772c53.143-73.143 85.143-162.857 85.143-260 0-241.714-197.143-438.857-438.857-438.857s-438.857 197.143-438.857 438.857c0 97.143 32 186.857 85.143 260 20.571-102.286 70.286-186.857 174.857-186.857 46.286 45.143 109.143 73.143 178.857 73.143s132.571-28 178.857-73.143c104.571 0 154.286 84.571 174.857 186.857zM731.429 402.286c0-121.143-98.286-219.429-219.429-219.429s-219.429 98.286-219.429 219.429 98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"user-circle-o\"\n        ],\n        \"defaultCode\": 62142,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"user-circle-o\",\n        \"id\": 643,\n        \"order\": 1499,\n        \"prevSize\": 28,\n        \"code\": 62142\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 643\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M686.286 448c80.571 23.429 191.429 102.857 191.429 362.857 0 117.714-87.429 213.143-194.857 213.143h-488c-107.429 0-194.857-95.429-194.857-213.143 0-260 110.857-339.429 191.429-362.857-28.571-45.143-45.143-98.286-45.143-155.429 0-161.143 131.429-292.571 292.571-292.571s292.571 131.429 292.571 292.571c0 57.143-16.571 110.286-45.143 155.429zM438.857 73.143c-121.143 0-219.429 98.286-219.429 219.429s98.286 219.429 219.429 219.429 219.429-98.286 219.429-219.429-98.286-219.429-219.429-219.429zM682.857 950.857c66.857 0 121.714-62.286 121.714-140 0-180-60.571-292.571-173.714-298.286-51.429 45.143-118.286 72.571-192 72.571s-140.571-27.429-192-72.571c-113.143 5.714-173.714 118.286-173.714 298.286 0 77.714 54.857 140 121.714 140h488z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"user-o\"\n        ],\n        \"defaultCode\": 62144,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"user-o\",\n        \"id\": 644,\n        \"order\": 1500,\n        \"prevSize\": 28,\n        \"code\": 62144\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 644\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M585.143 718.857c0 49.143-32.571 85.714-73.143 85.714h-292.571c-40.571 0-73.143-36.571-73.143-85.714 0-89.143 22.286-188 112-188 28 26.286 65.714 42.857 107.429 42.857s79.429-16.571 107.429-42.857c89.714 0 112 98.857 112 188zM497.143 422.286c0 72-58.857 129.714-131.429 129.714s-131.429-57.714-131.429-129.714c0-71.429 58.857-129.714 131.429-129.714s131.429 58.286 131.429 129.714zM658.286 932.571v-786.286h-585.143v786.286c0 9.714 8.571 18.286 18.286 18.286h548.571c9.714 0 18.286-8.571 18.286-18.286zM731.429 91.429v841.143c0 50.286-41.143 91.429-91.429 91.429h-548.571c-50.286 0-91.429-41.143-91.429-91.429v-841.143c0-50.286 41.143-91.429 91.429-91.429h201.143v54.857c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286v-54.857h201.143c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 731.4285714285713,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"id-badge\"\n        ],\n        \"defaultCode\": 62145,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"id-badge\",\n        \"id\": 645,\n        \"order\": 1501,\n        \"prevSize\": 28,\n        \"code\": 62145\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 645\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 692.571c0-75.429-18.286-162.286-93.714-162.286-22.857 22.857-54.286 36.571-89.143 36.571s-66.286-13.714-89.143-36.571c-75.429 0-93.714 86.857-93.714 162.286 0 41.714 27.429 75.429 61.143 75.429h243.429c33.714 0 61.143-33.714 61.143-75.429zM438.857 438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714 49.143 109.714 109.714 109.714 109.714-49.143 109.714-109.714zM1024 713.143v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM804.571 566.857v-36.571c0-10.286-8-18.286-18.286-18.286h-182.857c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h182.857c10.286 0 18.286-8 18.286-18.286zM1024 566.857v-36.571c0-10.286-8-18.286-18.286-18.286h-109.714c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h109.714c10.286 0 18.286-8 18.286-18.286zM1024 420.571v-36.571c0-10.286-8-18.286-18.286-18.286h-402.286c-10.286 0-18.286 8-18.286 18.286v36.571c0 10.286 8 18.286 18.286 18.286h402.286c10.286 0 18.286-8 18.286-18.286zM73.143 219.429h1024v-54.857c0-10.286-8-18.286-18.286-18.286h-987.429c-10.286 0-18.286 8-18.286 18.286v54.857zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"drivers-license\",\n          \"id-card\"\n        ],\n        \"defaultCode\": 62146,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"drivers-license, id-card\",\n        \"id\": 646,\n        \"order\": 1502,\n        \"prevSize\": 28,\n        \"code\": 62146\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 646\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 692.571c0 41.714-27.429 75.429-61.143 75.429h-243.429c-33.714 0-61.143-33.714-61.143-75.429 0-75.429 18.286-162.286 93.714-162.286 22.857 22.857 54.286 36.571 89.143 36.571s66.286-13.714 89.143-36.571c75.429 0 93.714 86.857 93.714 162.286zM438.857 438.857c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714 49.143-109.714 109.714-109.714 109.714 49.143 109.714 109.714zM1024 676.571v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286zM804.571 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-182.857c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h182.857c10.286 0 18.286 8 18.286 18.286zM1024 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-109.714c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h109.714c10.286 0 18.286 8 18.286 18.286zM1024 384v36.571c0 10.286-8 18.286-18.286 18.286h-402.286c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h402.286c10.286 0 18.286 8 18.286 18.286zM1097.143 859.429v-640h-1024v640c0 9.714 8.571 18.286 18.286 18.286h987.429c9.714 0 18.286-8.571 18.286-18.286zM1170.286 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-987.429c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h987.429c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"drivers-license-o\",\n          \"id-card-o\"\n        ],\n        \"defaultCode\": 62147,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"drivers-license-o, id-card-o\",\n        \"id\": 647,\n        \"order\": 1503,\n        \"prevSize\": 28,\n        \"code\": 62147\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 647\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M717.143 449.714c0-238.286-74.286-360.571-248.571-360.571-171.429 0-245.714 122.286-245.714 360.571 0 237.143 74.286 358.286 245.714 358.286 27.429 0 52-2.857 74.857-9.714v0c-35.429-69.714-77.143-140-158.286-140-15.429 0-30.857 2.286-45.143 9.143l-28-55.429c33.714-29.143 88-52 157.714-52 109.143 0 164.571 52.571 209.143 119.429 25.714-57.143 38.286-134.286 38.286-229.714zM940 810.857h66.857c4 41.143-16.571 213.143-203.429 213.143-113.143 0-172.571-65.714-217.714-142.286v0c-37.143 10.286-77.143 15.429-117.143 15.429-228.571 0-452-182.286-452-447.429 0-267.429 224-449.714 452-449.714 232.571 0 453.714 181.143 453.714 449.714 0 149.714-69.714 271.429-170.857 349.714 32.571 49.143 66.286 81.714 113.143 81.714 51.429 0 72-39.429 75.429-70.286z\"\n        ],\n        \"width\": 1027.4377142857143,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"quora\"\n        ],\n        \"defaultCode\": 62148,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"quora\",\n        \"id\": 648,\n        \"order\": 1504,\n        \"prevSize\": 28,\n        \"code\": 62148\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 648\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M258.857 935.429c0 16-14.286 30.857-30.286 30.857-2.286 0-5.143-1.143-7.429-1.714v0c-32-7.429-73.143-55.429-92.571-80-89.143-112.571-128.571-244-128.571-386.286 0-132.571 40-246.286 121.714-350.857 18.857-24.571 74.857-89.143 108-89.143 14.286 0 29.143 11.429 29.143 26.286 0 17.143-25.143 40.571-36 51.429-31.429 32.571-60.571 65.714-84 105.143-48.571 81.143-68 162.286-68 256.571 0 101.143 18.857 192.571 70.286 280.571 21.714 37.143 47.429 68 77.714 98.857 12 13.143 40 38.857 40 58.286zM1026.286 858.857c0 21.143-14.286 38.857-36.571 38.857h-617.714c-20 0-36.571-16.571-36.571-36.571 0-21.143 14.286-38.857 36.571-38.857h617.714c20 0 36.571 16.571 36.571 36.571zM903.429 509.714c0 48-10.857 92.571-38.286 133.143-18.857 28-57.143 64-87.429 79.429-4.571 2.857-10.286 5.714-15.429 5.714-4.571 0-13.143-5.143-13.143-10.286 0-16.571 69.714-56 69.714-132.571 0-25.143-6.286-53.143-20-74.286-4-5.714-18.286-24-26.286-24-1.714 0-1.714 1.143-1.714 2.857 0 13.714 8.571 26.857 8.571 41.143 0 18.286-22.286 27.429-37.714 27.429-26.857 0-37.714-18.857-37.714-43.429 0-16.571 1.714-33.714 1.714-50.286 0-12-0.571-15.429-5.714-26.286-8-15.429-34.286-46.857-53.143-46.857-5.143 0-6.857 0-6.857 5.143 0 8 18.286 16.571 18.286 45.714 0 76-104.571 89.714-104.571 165.714 0 34.286 4.571 62.857 24 91.429 12 17.714 25.143 28 45.143 36 5.143 1.714 10.286 2.286 10.286 8.571s-5.143 9.143-10.286 9.143c-2.857 0-16-5.143-18.857-6.286v0c-88-32-154.857-108.571-154.857-204.571 0-113.714 136.571-213.143 136.571-322.286 0-21.143-3.429-36-14.286-53.714-6.286-10.286-21.714-30.286-32-36.571-4.571-2.286-10.857-6.286-10.857-12 0-9.714 16.571-11.429 23.429-11.429 20.571 0 44 7.429 62.857 16.571 79.429 37.714 96 95.429 109.714 175.429 3.429 18.857 10.286 78.857 37.714 78.857 17.714 0 29.143-12 29.143-29.143 0-25.714-22.857-53.714-22.857-68 0-4 2.286-5.714 5.714-5.714 14.286 0 44 30.286 53.143 40 55.429 58.857 76 116 76 195.429zM1316.571 526.286c0 100.571-26.857 201.143-78.857 287.429-24 40-102.857 152-154.857 152-12 0-26.286-14.857-26.286-26.857 0-19.429 66.857-81.714 83.429-102.857 70.857-89.143 104.571-189.714 104.571-303.429 0-93.714-11.429-169.714-53.143-254.857-25.714-52.571-52.571-88-93.143-130.286-13.143-13.714-41.714-39.429-41.714-60 0-14.286 14.857-29.714 29.143-29.714 37.714 0 92 69.714 112 96.571 76.571 102.857 109.143 208.571 117.714 335.429 0.571 12 1.143 24.571 1.143 36.571z\"\n        ],\n        \"width\": 1316.5714285714284,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"free-code-camp\"\n        ],\n        \"defaultCode\": 62149,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"free-code-camp\",\n        \"id\": 649,\n        \"order\": 1505,\n        \"prevSize\": 28,\n        \"code\": 62149\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 649\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M679.429 746.857l84-396c7.429-34.857-12.571-48.571-35.429-40l-493.714 190.286c-33.714 13.143-33.143 32-5.714 40.571l126.286 39.429 293.143-184.571c13.714-9.143 26.286-4 16 5.143l-237.143 214.286-9.143 130.286c13.143 0 18.857-5.714 25.714-12.571l61.714-59.429 128 94.286c23.429 13.143 40 6.286 46.286-21.714zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"telegram\"\n        ],\n        \"defaultCode\": 62150,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"telegram\",\n        \"id\": 650,\n        \"order\": 1506,\n        \"prevSize\": 28,\n        \"code\": 62150\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 650\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-518.286h73.143v518.286c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thermometer\",\n          \"thermometer-4\",\n          \"thermometer-full\"\n        ],\n        \"defaultCode\": 62151,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thermometer, thermometer-4, thermometer-full\",\n        \"id\": 651,\n        \"order\": 1507,\n        \"prevSize\": 28,\n        \"code\": 62151\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 651\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-372h73.143v372c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thermometer-3\",\n          \"thermometer-three-quarters\"\n        ],\n        \"defaultCode\": 62152,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thermometer-3, thermometer-three-quarters\",\n        \"id\": 652,\n        \"order\": 1508,\n        \"prevSize\": 28,\n        \"code\": 62152\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 652\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-225.714h73.143v225.714c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thermometer-2\",\n          \"thermometer-half\"\n        ],\n        \"defaultCode\": 62153,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thermometer-2, thermometer-half\",\n        \"id\": 653,\n        \"order\": 1509,\n        \"prevSize\": 28,\n        \"code\": 62153\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 653\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-45.714 28.571-87.429 73.143-103.429v-79.429h73.143v79.429c44.571 16 73.143 57.714 73.143 103.429zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thermometer-1\",\n          \"thermometer-quarter\"\n        ],\n        \"defaultCode\": 62154,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thermometer-1, thermometer-quarter\",\n        \"id\": 654,\n        \"order\": 1510,\n        \"prevSize\": 28,\n        \"code\": 62154\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 654\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M365.714 768c0 60.571-49.143 109.714-109.714 109.714s-109.714-49.143-109.714-109.714c0-60 48.571-109.714 109.714-109.714s109.714 50.286 109.714 109.714zM438.857 768c0-60-28.571-112.571-73.143-146.286v-438.857c0-60.571-49.143-109.714-109.714-109.714s-109.714 49.143-109.714 109.714v438.857c-44.571 33.714-73.143 86.286-73.143 146.286 0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857zM512 768c0 141.143-114.857 256-256 256s-256-114.857-256-256c0-69.714 28-132.571 73.143-178.857v-406.286c0-101.143 81.714-182.857 182.857-182.857s182.857 81.714 182.857 182.857v406.286c45.143 46.286 73.143 109.143 73.143 178.857zM585.143 438.857v73.143h-109.714v-73.143h109.714zM585.143 292.571v73.143h-109.714v-73.143h109.714zM585.143 146.286v73.143h-109.714v-73.143h109.714z\"\n        ],\n        \"width\": 585.1428571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thermometer-0\",\n          \"thermometer-empty\"\n        ],\n        \"defaultCode\": 62155,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"thermometer-0, thermometer-empty\",\n        \"id\": 655,\n        \"order\": 1511,\n        \"prevSize\": 28,\n        \"code\": 62155\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 655\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M818.857 142.286c7.429 7.429 7.429 18.857 0 26.286l-357.714 357.714c-7.429 7.429-18.857 7.429-26.286 0l-46.857-46.857c-7.429-7.429-7.429-18.857 0-26.286l25.143-25.143c-55.429-69.714-62.286-165.143-20-241.143-26.286-25.143-61.714-40.571-100.571-40.571-80.571 0-146.286 65.714-146.286 146.286v731.429h-146.286v-731.429c0-161.143 131.429-292.571 292.571-292.571 82.286 0 156.571 34.286 209.714 89.143 72-29.143 155.429-18.286 218.286 31.429l25.143-25.143c7.429-7.429 18.857-7.429 26.286 0zM768 292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM914.286 365.714c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM1060.571 292.571c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 365.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM804.571 402.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571zM987.429 365.714c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 438.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM768 512c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM914.286 438.857c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 585.143c-20 0-36.571-16.571-36.571-36.571s16.571-36.571 36.571-36.571 36.571 16.571 36.571 36.571-16.571 36.571-36.571 36.571zM841.143 512c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 585.143c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM768 585.143c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM694.857 658.286c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571zM621.714 731.429c20 0 36.571 16.571 36.571 36.571s-16.571 36.571-36.571 36.571-36.571-16.571-36.571-36.571 16.571-36.571 36.571-36.571z\"\n        ],\n        \"width\": 1097.142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shower\"\n        ],\n        \"defaultCode\": 62156,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"shower\",\n        \"id\": 656,\n        \"order\": 1512,\n        \"prevSize\": 28,\n        \"code\": 62156\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 656\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M950.857 621.714v109.714c0 65.143-28.571 122.857-73.143 163.429v110.857c0 10.286-8 18.286-18.286 18.286h-36.571c-10.286 0-18.286-8-18.286-18.286v-67.429c-22.857 8-47.429 12.571-73.143 12.571h-438.857c-25.714 0-50.286-4.571-73.143-12.571v62.857c0 12.571-8 22.857-18.286 22.857h-36.571c-10.286 0-18.286-10.286-18.286-22.857v-106.286c-44.571-40.571-73.143-98.286-73.143-163.429v-109.714h877.714zM402.286 384c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 347.429c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM402.286 310.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 310.857c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 274.286c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM402.286 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM1024 530.286v36.571c0 10.286-8 18.286-18.286 18.286h-987.429c-10.286 0-18.286-8-18.286-18.286v-36.571c0-10.286 8-18.286 18.286-18.286h54.857v-365.714c0-80.571 65.714-146.286 146.286-146.286 41.143 0 78.286 17.143 105.143 44.571 35.429-14.286 77.714-9.143 109.143 15.429l12.571-12.571c3.429-3.429 9.143-3.429 12.571 0l24 24c3.429 3.429 3.429 9.143 0 12.571l-179.429 179.429c-3.429 3.429-9.143 3.429-12.571 0l-24-24c-3.429-3.429-3.429-9.143 0-12.571l12.571-12.571c-27.429-34.857-30.857-82.857-9.714-121.143-13.143-12.571-30.857-20-50.286-20-40.571 0-73.143 32.571-73.143 73.143v365.714h859.429c10.286 0 18.286 8 18.286 18.286zM512 274.286c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM438.857 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM548.571 237.714c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM512 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM475.429 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM585.143 201.143c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM548.571 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286zM621.714 164.571c0 10.286-8 18.286-18.286 18.286s-18.286-8-18.286-18.286 8-18.286 18.286-18.286 18.286 8 18.286 18.286z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bath\",\n          \"bathtub\",\n          \"s15\"\n        ],\n        \"defaultCode\": 62157,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bath, bathtub, s15\",\n        \"id\": 657,\n        \"order\": 1513,\n        \"prevSize\": 28,\n        \"code\": 62157\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 657\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M568 681.143c0 37.714-4 75.429-9.714 112.571-8.571 59.429-17.143 120.571-31.429 178.857-10.286 41.714-49.143 51.429-86.857 51.429s-76.571-9.714-86.857-51.429c-14.286-58.286-22.857-119.429-31.429-178.857-5.714-37.143-9.714-74.857-9.714-112.571 0-77.143 62.286-96 128-96s128 18.857 128 96zM877.714 438.857c0 185.143-114.286 343.429-276.571 408-6.286 2.286-13.143-3.429-12-10.286 1.714-12 3.429-24.571 5.714-37.714 1.143-9.143 2.286-18.286 3.429-26.857 0.571-3.429 2.286-5.714 5.143-6.857 118.857-60.571 201.143-184 201.143-326.286 0-208.571-174.857-376.571-385.714-365.143-193.143 10.286-346.857 174.857-345.714 368 1.143 142.286 84 265.143 203.429 324.571 2.857 1.143 4.571 4 5.143 6.857 1.143 8 2.286 16.571 3.429 25.714 2.286 13.714 4 26.286 6.286 38.857 1.143 6.857-6.286 12.571-12.571 9.714-169.714-66.286-288-235.429-278.286-430.286 10.857-221.143 189.143-402.286 410.286-416 254.857-16 466.857 186.286 466.857 437.714zM568 420.571c0 70.857-57.143 128-128 128s-128-57.143-128-128 57.143-128 128-128 128 57.143 128 128zM732.571 438.857c0 94.286-45.143 178.857-114.286 232-5.714 4.571-13.714 0.571-14.857-6.857-1.714-16-6.286-34.857-16.571-52.571-2.286-3.429-1.714-8 1.714-11.429 43.429-40 70.857-97.143 70.857-161.143 0-129.143-112.571-232.571-244.571-218.286-101.143 11.429-183.429 94.857-193.143 196.571-7.429 72 21.143 138.286 69.714 182.857 3.429 3.429 4 8 1.714 11.429-10.286 17.714-14.857 36.571-16.571 53.143-1.143 6.857-9.143 10.857-14.857 6.286-70.857-54.857-116-141.143-114.286-238.286 3.429-152 126.857-278.857 278.286-285.714 168-8 306.857 125.714 306.857 292z\"\n        ],\n        \"width\": 868.5714285714286,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"podcast\"\n        ],\n        \"defaultCode\": 62158,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"podcast\",\n        \"id\": 658,\n        \"order\": 1514,\n        \"prevSize\": 28,\n        \"code\": 62158\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 658\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 804.571h731.429v-438.857h-731.429v438.857zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"window-maximize\"\n        ],\n        \"defaultCode\": 62160,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"window-maximize\",\n        \"id\": 659,\n        \"order\": 1515,\n        \"prevSize\": 28,\n        \"code\": 62160\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 659\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 749.714v109.714c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-109.714c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"window-minimize\"\n        ],\n        \"defaultCode\": 62161,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"window-minimize\",\n        \"id\": 660,\n        \"order\": 1516,\n        \"prevSize\": 28,\n        \"code\": 62161\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 660\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M146.286 877.714h438.857v-292.571h-438.857v292.571zM731.429 585.143h292.571v-438.857h-438.857v146.286h54.857c50.286 0 91.429 41.143 91.429 91.429v201.143zM1170.286 91.429v548.571c0 50.286-41.143 91.429-91.429 91.429h-347.429v201.143c0 50.286-41.143 91.429-91.429 91.429h-548.571c-50.286 0-91.429-41.143-91.429-91.429v-548.571c0-50.286 41.143-91.429 91.429-91.429h347.429v-201.143c0-50.286 41.143-91.429 91.429-91.429h548.571c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1170.2857142857142,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"window-restore\"\n        ],\n        \"defaultCode\": 62162,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"window-restore\",\n        \"id\": 661,\n        \"order\": 1517,\n        \"prevSize\": 28,\n        \"code\": 62162\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 661\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M671.429 754.857l83.429-83.429c7.429-7.429 7.429-18.857 0-26.286l-133.143-133.143 133.143-133.143c7.429-7.429 7.429-18.857 0-26.286l-83.429-83.429c-7.429-7.429-18.857-7.429-26.286 0l-133.143 133.143-133.143-133.143c-7.429-7.429-18.857-7.429-26.286 0l-83.429 83.429c-7.429 7.429-7.429 18.857 0 26.286l133.143 133.143-133.143 133.143c-7.429 7.429-7.429 18.857 0 26.286l83.429 83.429c7.429 7.429 18.857 7.429 26.286 0l133.143-133.143 133.143 133.143c7.429 7.429 18.857 7.429 26.286 0zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"times-rectangle\",\n          \"window-close\"\n        ],\n        \"defaultCode\": 62163,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"times-rectangle, window-close\",\n        \"id\": 662,\n        \"order\": 1518,\n        \"prevSize\": 28,\n        \"code\": 62163\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 662\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M718.286 634.857l-83.429 83.429c-7.429 7.429-18.857 7.429-26.286 0l-96.571-96.571-96.571 96.571c-7.429 7.429-18.857 7.429-26.286 0l-83.429-83.429c-7.429-7.429-7.429-18.857 0-26.286l96.571-96.571-96.571-96.571c-7.429-7.429-7.429-18.857 0-26.286l83.429-83.429c7.429-7.429 18.857-7.429 26.286 0l96.571 96.571 96.571-96.571c7.429-7.429 18.857-7.429 26.286 0l83.429 83.429c7.429 7.429 7.429 18.857 0 26.286l-96.571 96.571 96.571 96.571c7.429 7.429 7.429 18.857 0 26.286zM146.286 804.571h731.429v-585.143h-731.429v585.143zM1024 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-841.143c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h841.143c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"times-rectangle-o\",\n          \"window-close-o\"\n        ],\n        \"defaultCode\": 62164,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"times-rectangle-o, window-close-o\",\n        \"id\": 663,\n        \"order\": 1519,\n        \"prevSize\": 28,\n        \"code\": 62164\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 663\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M611.429 673.143l174.857-322.286h-373.714l-174.857 322.286h373.714zM1024 512c0 282.857-229.143 512-512 512s-512-229.143-512-512 229.143-512 512-512 512 229.143 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bandcamp\"\n        ],\n        \"defaultCode\": 62165,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"bandcamp\",\n        \"id\": 664,\n        \"order\": 1520,\n        \"prevSize\": 28,\n        \"code\": 62165\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 664\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M737.714 272c-18.286-20.571-48 14.286-32 33.143 15.429 18.857 66.286 5.143 32-33.143zM511.429 412.571c-6.286 6.286-16 6.286-21.714 0-6.286-5.714-6.286-15.429 0-21.143 5.714-6.286 15.429-6.286 21.714 0 5.714 5.714 5.714 15.429 0 21.143zM605.714 454.857l-20 20c-9.143 9.714-24.571 9.714-34.286 0l-21.714-21.714c-9.143-9.714-9.143-24.571 0-34.286l20-20c9.143-9.143 24.571-9.143 34.286 0l21.714 22.286c9.143 9.143 9.143 24.571 0 33.714zM543.429 380.571c-5.714 5.714-15.429 5.714-21.714 0-5.714-6.286-5.714-16 0-21.714 6.286-6.286 16-6.286 21.714 0 6.286 5.714 6.286 15.429 0 21.714zM773.714 324.571c-25.714 48.571-93.143 68.571-134.286 39.429-41.143-29.714-69.714-89.143-24.571-140.571 44.571-51.429 84-35.429 123.429 1.714 24.571 23.429 60.571 51.429 35.429 99.429zM888.571 600c5.143-33.143-42.286-34.286-52.571-53.143-28-49.714-57.143-76-112.571-62.857 24-16.571 48.571-12.571 48.571-12.571 0.571-13.143 0-26.857-19.429-51.429 8-25.714 0.571-46.286 0.571-46.286 32-17.714 55.429-50.286 60-89.143 7.429-64-38.857-122.286-102.857-129.714-45.714-5.143-90.286 16-112 53.143-48 82.857 2.857 146.286 46.286 168-29.714-2.857-70.857-24.571-82.857-70.857-13.714-53.143 5.714-102.857 18.286-126.857 0 0-9.143-12-16.571-18.286 0 0-28.571 0-50.857 10.857 24.571-31.429 52-29.714 52-29.714 0-13.143-1.143-30.857-7.429-44.571-11.429-23.429-51.429-26.857-66.857 8.571 0.571-1.714 1.143-2.857 2.286-4-10.286 24.571-2.286 115.429 34.857 180-5.143 2.857-18.857 12.571-26.857 20.571-44.571 20-116 124.571-116 124.571-58.286 22.286-160 105.143-146.286 164.571v0c0.571 6.286 2.857 11.429 6.286 15.429-5.714 4.571-11.429 10.286-17.143 17.143-24.571 28.571-10.857 72.571 36.571 50.286 32.571-14.857 61.714-41.714 75.429-62.857 0 0-12-10.286-34.286-9.143 57.143-13.714 71.429-19.429 96-18.857 16.571 8 16.571-70.857 16.571-70.857 0-30.286-4.571-64-22.857-85.714 25.714 25.143 60 67.429 57.714 125.143-1.714 37.714-31.429 47.429-31.429 47.429-18.857 34.286-89.143 136-62.857 218.857 0 0-20-30.857-21.143-45.714-36 40-96.571 108-51.429 133.143 54.857 30.286 225.143-182.857 261.143-293.714 71.429-42.857 114.286-97.714 132-134.286 45.714 90.857 197.714 196 209.714 122.857zM1025.143 512c0 282.857-229.714 512-512.571 512s-512.571-229.143-512.571-512 229.714-512 512.571-512 512.571 229.143 512.571 512z\"\n        ],\n        \"width\": 1025.1702857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"grav\"\n        ],\n        \"defaultCode\": 62166,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"grav\",\n        \"id\": 665,\n        \"order\": 1521,\n        \"prevSize\": 28,\n        \"code\": 62166\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 665\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M296 104.571v374.286c132.571 1.143 202.286-5.714 202.286-5.714 53.714-1.714 61.714-15.429 74.286-68l18.857-81.143h58.857l-8 184 4 182.286h-58.857l-16.571-72.571c-12-54.286-35.429-67.429-73.714-68 0 0-49.143-4.571-201.143-4.571v317.714c0 59.429 32.571 87.429 101.143 87.429h204c68.571 0 130.286-6.857 172.571-104.571l53.143-123.429h50.857c-4 24.571-31.429 251.429-35.429 301.714-188-6.857-268.571-6.857-268.571-6.857h-358.857l-214.857 6.857v-58.286l72.571-14.286c50.857-9.714 66.286-24.571 66.857-66.286 3.429-138.286 4.571-367.429 4.571-367.429s1.714-229.714-4.571-368.571c-1.714-47.429-16-58.857-66.857-68.571l-72.571-13.714v-58.286l214.857 6.857h401.143s79.429 0 213.714-15.429c-8 87.429-17.714 289.143-17.714 289.143h-53.143l-18.286-70.857c-22.286-88.571-52-136-106.857-136h-313.143c-23.429 0-24.571 8-24.571 22.286z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"etsy\"\n        ],\n        \"defaultCode\": 62167,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"etsy\",\n        \"id\": 666,\n        \"order\": 1522,\n        \"prevSize\": 28,\n        \"code\": 62167\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 666\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M526.857 455.429v104c0 20.571 4 39.429-21.714 38.857v-176.571c25.143 0 21.714 13.143 21.714 33.714zM707.429 510.286v69.143c0 11.429 3.429 30.286-13.143 30.286-3.429 0-6.286-1.714-8-5.143-4.571-10.857-2.286-93.143-2.286-94.286 0-8-2.286-26.857 10.286-26.857 15.429 0 13.143 15.429 13.143 26.857zM102.857 645.143h69.714v-269.714h-69.714v269.714zM350.857 645.143h60.571v-269.714h-90.857l-16 126.286c-5.714-42.286-11.429-84.571-18.286-126.286h-90.286v269.714h61.143v-178.286l25.714 178.286h43.429l24.571-182.286v182.286zM593.714 470.857c0-17.143 0.571-35.429-2.857-51.429-9.143-47.429-66.286-44-103.429-44h-52v269.714c181.714 0 158.286 12.571 158.286-174.286zM774.857 583.429v-76c0-36.571-1.714-63.429-46.857-63.429-18.857 0-31.429 5.714-44 19.429v-88h-66.857v269.714h62.857l4-17.143c12 14.286 25.143 20.571 44 20.571 41.714 0 46.857-32 46.857-65.143zM877.714 164.571v694.857c0 50.286-41.143 91.429-91.429 91.429h-694.857c-50.286 0-91.429-41.143-91.429-91.429v-694.857c0-50.286 41.143-91.429 91.429-91.429h694.857c50.286 0 91.429 41.143 91.429 91.429z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"imdb\"\n        ],\n        \"defaultCode\": 62168,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"imdb\",\n        \"id\": 667,\n        \"order\": 1523,\n        \"prevSize\": 28,\n        \"code\": 62168\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 667\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M653.143 990.286c-2.286-0.571-4-1.143-6.286-2.286 0 0-188-110.286-251.429-288.571-21.143-3.429-65.714-13.714-100-21.143v0c49.714 161.714 188 285.143 357.714 312zM286.857 644l96 16c-32.571-97.714-36.571-209.143-36.571-209.143-38.286 37.143-58.857 88-69.143 128v0c1.714 22.286 4.571 44 9.714 65.143zM349.714 296v0c-17.714 26.286-32 54.857-44 84.571 18.857-20 34.286-33.143 42.286-38.857-1.143-17.143 1.714-45.714 1.714-45.714zM1170.857 544c0-249.143-201.143-451.429-448-451.429-114.286 0-218.286 43.429-297.714 114.857-12 23.429-20 53.143-25.714 91.429 121.714-103.429 338.857-77.714 338.857-77.714 54.286 2.286 48 50.286 47.429 65.143-197.714-16.571-294.857 40-390.857 121.714 0 0 18.857 182.857 62.286 257.143 250.286 11.429 440.571-124.571 440.571-124.571 24-17.143 45.143-18.857 49.714 10.857 3.429 24 5.143 56.571-22.286 69.143-83.429 38.857-175.429 63.429-266.857 76.571-59.429 8.571-92.571 10.857-181.143 9.143 84.571 196.571 296 250.286 296 250.286 66.286 10.857 116.571 2.286 150.286-8.571v0c146.286-74.286 247.429-227.429 247.429-404zM1213.143 522.857c-4 38.857-10.286 84-22.857 121.143-51.429 152.571-122.857 252-285.714 342.857-14.857 10.286-30.857 20-46.857 25.143-29.143 10.286-60.571 12.571-93.143 9.143-13.714 1.143-27.429 1.714-41.714 1.714-217.714 0-401.714-148.571-457.143-351.429-1.714 0-3.429-0.571-5.143-0.571-13.143 102.857 62.857 241.714 62.857 241.714s4.571 6.857 30.857 46.857c-145.714-77.143-149.714-304.571-149.714-304.571-34.857-13.143-156-54.286-177.143-88 0 0 94.857 52 176.571 62.286-0.571-0.571 1.143-18.286 1.143-18.286 5.143-69.714 29.143-124 53.714-165.714 16-78.286 51.429-149.143 100.571-208.571 8.571-35.429 22.286-77.714 46.286-122.286 10.286-19.429 20-32 46.286-44 173.714-81.143 345.143-101.714 521.143-10.286v0c168.571 88 260 272 240 462.857z\"\n        ],\n        \"width\": 1260.544,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ravelry\"\n        ],\n        \"defaultCode\": 62169,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"ravelry\",\n        \"id\": 668,\n        \"order\": 1524,\n        \"prevSize\": 28,\n        \"code\": 62169\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 668\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M766.286 448c20-30.857-3.429-109.143-73.143-155.429-69.143-46.286-157.714-42.857-178.286-12-20 30.286 22.857 10.857 101.143 40 129.143 48 130.286 158.286 150.286 127.429zM973.714 776c-161.714 397.714-890.286 297.143-874.857-218.857 1.714-65.714 20-109.714 38.857-172.571-120.571 493.714 552 781.143 828 391.429 10.286-14.286 13.143-13.143 8 0zM837.143 519.429c0 161.714-130.286 293.143-290.857 293.143s-290.857-131.429-290.857-293.143 130.286-293.143 290.857-293.143 290.857 131.429 290.857 293.143zM1001.143 354.857c-203.429-461.714-1043.429-291.429-950.286 336.571-193.143-629.143 602.857-917.714 897.143-469.714 24 36.571 51.429 100.571 53.143 133.143zM965.714 550.286c9.714-193.143-124-325.143-304.571-374.857-2.857 0-15.429-5.143 8-7.429 441.143 14.857 457.143 720-23.429 728 156.571-43.429 310.286-152 320-345.714z\"\n        ],\n        \"width\": 983.9908571428571,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"eercast\"\n        ],\n        \"defaultCode\": 62170,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"eercast\",\n        \"id\": 669,\n        \"order\": 1525,\n        \"prevSize\": 28,\n        \"code\": 62170\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 669\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M109.714 731.429v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 585.143v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 438.857v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 292.571v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM109.714 146.286v73.143h-64c-5.143 0-9.143-4-9.143-9.143v-9.143h-27.429c-5.143 0-9.143-4-9.143-9.143v-18.286c0-5.143 4-9.143 9.143-9.143h27.429v-9.143c0-5.143 4-9.143 9.143-9.143h64zM731.429 54.857v841.143c0 30.286-24.571 54.857-54.857 54.857h-475.429c-30.286 0-54.857-24.571-54.857-54.857v-841.143c0-30.286 24.571-54.857 54.857-54.857h475.429c30.286 0 54.857 24.571 54.857 54.857zM877.714 758.857v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 612.571v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 466.286v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 320v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143zM877.714 173.714v18.286c0 5.143-4 9.143-9.143 9.143h-27.429v9.143c0 5.143-4 9.143-9.143 9.143h-64v-73.143h64c5.143 0 9.143 4 9.143 9.143v9.143h27.429c5.143 0 9.143 4 9.143 9.143z\"\n        ],\n        \"width\": 877.7142857142857,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"microchip\"\n        ],\n        \"defaultCode\": 62171,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"microchip\",\n        \"id\": 670,\n        \"order\": 1526,\n        \"prevSize\": 28,\n        \"code\": 62171\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 670\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M894.857 638.286l-95.429 18.857 106.286 61.143c17.143 9.714 23.429 32.571 13.143 49.714s-32.571 23.429-49.714 13.143l-106.286-60.571 31.429 91.429c16 45.714-53.714 69.143-69.143 24l-58.286-171.429-154.857-89.143v178.857l118.857 136c32 36-23.429 84.571-54.857 48l-64-73.143v122.286c0 20-16.571 36.571-36.571 36.571s-36.571-16.571-36.571-36.571v-122.286l-64 73.143c-31.429 36.571-86.857-12-54.857-48l118.857-136v-178.857l-154.857 89.143-58.286 171.429c-15.429 45.143-85.143 21.714-69.143-24l31.429-91.429-106.286 60.571c-17.143 10.286-39.429 4-49.714-13.143s-4-40 13.143-49.714l106.286-61.143-95.429-18.857c-47.429-9.714-33.143-81.143 14.286-72l177.143 35.429 154.857-89.714-154.857-89.714-177.143 35.429c-2.286 0.571-5.143 0.571-7.429 0.571-43.429 0-49.714-64-6.857-72.571l95.429-18.857-106.286-61.143c-17.143-9.714-23.429-32.571-13.143-49.714 10.286-17.714 32.571-23.429 49.714-13.143l106.286 60.571-31.429-91.429c-16-45.714 53.714-69.143 69.143-24l58.286 171.429 154.857 89.143v-178.857l-118.857-136c-32-36 23.429-84.571 54.857-48l64 73.143v-122.286c0-20 16.571-36.571 36.571-36.571s36.571 16.571 36.571 36.571v122.286l64-73.143c31.429-36.571 86.857 12 54.857 48l-118.857 136v178.857l154.857-89.143 58.286-171.429c15.429-45.143 85.143-21.714 69.143 24l-31.429 91.429 106.286-60.571c17.143-10.286 39.429-4 49.714 13.143s4 40-13.143 49.714l-106.286 61.143 95.429 18.857c42.857 8.571 36.571 72.571-6.857 72.571-2.286 0-5.143 0-7.429-0.571l-177.143-35.429-154.857 89.714 154.857 89.714 177.143-35.429c47.429-9.143 61.714 62.286 14.286 72z\"\n        ],\n        \"width\": 950.8571428571428,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"snowflake-o\"\n        ],\n        \"defaultCode\": 62172,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"snowflake-o\",\n        \"id\": 671,\n        \"order\": 1527,\n        \"prevSize\": 28,\n        \"code\": 62172\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 671\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M841.714 530.857c10.286-182.857-129.714-334.286-310.857-345.143-180-10.857-339.429 126.286-349.714 307.429-10.286 182.857 129.714 334.286 311.429 345.143 180 10.857 339.429-125.714 349.143-307.429zM1024 0l-199.429 198.857c90.857 88.571 140 212 132 338.857-12.571 212.571-176 382.286-385.714 410.857l-570.857 75.429 198.286-198.286c-90.857-88.571-139.429-212-132-338.857 13.143-213.143 176-382.857 386.286-411.429 190.286-25.143 381.143-50.286 571.429-75.429z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"superpowers\"\n        ],\n        \"defaultCode\": 62173,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"superpowers\",\n        \"id\": 672,\n        \"order\": 1528,\n        \"prevSize\": 28,\n        \"code\": 62173\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 672\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M541.714 587.429l93.143 188h-29.143l-100-200-97.714 200h-28l102.286-213.714-44.571-18.857 12-28 137.143 58.286-12 28.571zM321.714 249.143l173.714 74.286-74.286 173.714-173.714-74.286zM518.286 354.857l137.143 58.857-58.857 136.571-136.571-58.286zM678.857 440.571l109.143 46.286-46.857 108.571-108.571-46.286zM960 512c0-246.857-201.143-448-448-448s-448 201.143-448 448 201.143 448 448 448 448-201.143 448-448zM1024 512c0 282.286-229.714 512-512 512s-512-229.714-512-512 229.714-512 512-512 512 229.714 512 512z\"\n        ],\n        \"width\": 1024,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wpexplorer\"\n        ],\n        \"defaultCode\": 62174,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"wpexplorer\",\n        \"id\": 673,\n        \"order\": 1529,\n        \"prevSize\": 28,\n        \"code\": 62174\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 673\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M762.286 705.143c-6.286-41.143-81.714-9.143-86.286-54.286-6.286-64 87.429-202.286 80-256-6.857-48-38.857-58.286-66.857-58.857-26.857-0.571-33.714 4-42.857 9.143-5.714 3.429-13.143 9.714-23.429-0.571-12.571-12-22.286-23.429-38.857-25.714-24.571-4-35.429 4-53.143 19.429-6.857 5.714-24 25.714-40 18.286-6.857-3.429-30.857-15.429-48-22.857-32.571-14.286-80 9.143-97.143 40-25.714 45.714-76 226.286-83.429 250.286-17.143 53.143 21.714 97.143 73.714 94.286 22.286-1.143 36.571-9.143 50.857-34.857 8-14.857 83.429-215.429 89.143-225.143 4-6.857 17.714-16 29.143-10.286 11.429 6.286 13.714 18.857 12 30.286-2.286 19.429-56 141.714-57.714 155.429-6.857 45.714 53.714 53.143 77.143 8 7.429-14.286 91.429-185.143 98.857-196.571 8.571-12.571 14.857-16.571 23.429-16 6.286 0 16.571 1.714 14.286 21.714-2.857 18.857-70.286 144.571-77.714 175.429-9.143 41.143 13.143 82.857 49.714 101.143 22.857 11.429 125.143 31.429 117.143-22.286zM218.857 828.571c2.286 11.429-4.571 22.286-16 24.571-10.857 2.286-21.714-4.571-24-16-2.286-10.857 4.571-22.286 15.429-24.571s22.286 4.571 24.571 16zM544.571 978.857c9.143 13.143 5.714 30.857-6.857 40-13.143 9.143-30.857 5.714-40-7.429-8.571-13.143-5.143-30.857 7.429-40 13.143-9.143 30.857-5.714 39.429 7.429zM101.143 514.857c-13.714 20.571-41.143 25.714-61.143 11.429-20-13.714-25.143-41.714-11.429-61.714 13.714-20.571 41.143-25.714 61.143-12 20 14.286 25.143 41.714 11.429 62.286zM838.286 901.714c14.286 21.143 9.143 50.286-12 65.143-21.143 14.286-49.714 9.143-64-12s-9.143-50.286 11.429-65.143c21.143-14.857 49.714-9.143 64.571 12zM902.286 556.571c52.571 86.286 30.286 200-52.571 258.286-34.857 24.571-74.286 35.429-113.714 34.286-24 94.286-138.857 129.143-210.286 65.143-2.286 1.714-5.143 3.429-7.429 5.714-78.286 54.286-184.571 34.857-238.857-44.571-19.429-28.571-29.143-61.143-30.286-93.714-130.857-21.714-180-188-82.286-279.429-56.571-93.714 1.143-214.857 106.857-229.714 50.286-132.571 215.429-195.429 327.429-108.571 134.857-44.571 272.571 58.857 261.714 202.286 82.286 25.143 105.714 133.714 39.429 190.286zM260 179.429c10.286 15.429 6.857 36.571-8.571 47.429-14.857 10.286-36 6.857-46.286-8.571s-6.857-36.571 8.571-47.429c14.857-10.286 36-6.857 46.286 8.571zM350.857 18.857c2.857 12.571-5.143 25.143-17.714 28s-25.143-5.143-28-18.286c-2.286-12.571 5.714-25.143 18.286-28s25.143 5.143 27.429 18.286zM1028.571 560.571c3.429 15.429-6.286 30.286-21.143 33.143-14.857 3.429-29.714-6.286-32.571-21.143-3.429-15.429 6.286-30.286 21.143-33.714 14.857-2.857 29.714 6.857 32.571 21.714zM649.143 50.286c12 20.571 5.714 48-15.429 60.571-20.571 12.571-47.429 5.714-59.429-14.857-12.571-21.143-5.714-48.571 14.857-61.143s47.429-5.714 60 15.429zM1075.429 425.143c2.857 11.429-4.571 22.286-15.429 25.143-11.429 2.286-22.286-5.143-24.571-16-2.286-11.429 4.571-22.857 16-25.143 10.857-2.286 21.714 4.571 24 16zM966.286 287.429c11.429 17.143 7.429 40.571-9.143 52.571-17.143 11.429-40.571 7.429-52-9.714s-7.429-40.571 9.714-52.571c16.571-12 40-7.429 51.429 9.714z\"\n        ],\n        \"width\": 1093.12,\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"meetup\"\n        ],\n        \"defaultCode\": 62176,\n        \"grid\": 14\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"name\": \"meetup\",\n        \"id\": 674,\n        \"order\": 1530,\n        \"prevSize\": 28,\n        \"code\": 62176\n      },\n      \"setIdx\": 1,\n      \"setId\": 3,\n      \"iconIdx\": 674\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 0c268 0 488 206 510 468h-64c-14-160-114-294-254-360l-58 56-162-162zM706 504c0-69.871-27.338-114-94-114h-40v246h38c51.287 0 80.544-27.904 92-68 4-14 4-30 4-48v-16zM612 342c76.364 0 121.865 38.664 144 94 8 20 10 44 10 68v16c0 52.811-15.142 91.142-42 118-26.824 26.824-61.104 44-114 44h-98v-340h100zM414 508c30.607 12.243 56 36.493 56 78 0 16-4 28-10 40s-12 24-22 32c-18.756 15.005-47.096 24-80 24-62.192 0-108-31.488-108-94h54c0 30.904 23.204 50 54 50 35.74 0 56-17.079 56-54 0-37.687-24.79-54-62-54h-32v-44h32c34.608 0 58-16.061 58-50 0-33.049-17.68-50-52-50-28.888 0-50 17.163-50 46h-56c0-29.787 15.103-49.103 30-64 19.854-15.883 41.797-26 76-26 51.295 0 80.772 19.544 98 54 6 12 8 24 8 40 0 36.376-24.671 59.335-50 72zM320 916l58-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 114 296 254 362z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"3d_rotation\"\n        ],\n        \"defaultCode\": 59469,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"3d_rotation\",\n        \"id\": 0,\n        \"order\": 11,\n        \"prevSize\": 24,\n        \"code\": 59469,\n        \"name\": \"3d_rotation\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 0\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 470v84h-178l138 138-60 62-198-200h-86v86l200 198-62 60-138-138v178h-84v-178l-138 138-62-60 200-198v-86h-86l-198 200-60-62 138-138h-178v-84h178l-138-138 60-62 198 200h86v-86l-200-198 62-60 138 138v-178h84v178l138-138 62 60-200 198v86h86l198-200 60 62-138 138h178z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ac_unit\"\n        ],\n        \"defaultCode\": 60219,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"ac_unit\",\n        \"id\": 1,\n        \"order\": 12,\n        \"prevSize\": 24,\n        \"code\": 60219,\n        \"name\": \"ac_unit\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 1\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM534 342v224l170 100-32 52-202-120v-256h64zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"alarm\"\n        ],\n        \"defaultCode\": 59477,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"access_alarm, alarm\",\n        \"id\": 2,\n        \"order\": 13,\n        \"prevSize\": 24,\n        \"code\": 59477,\n        \"name\": \"alarm\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 2\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c214 0 384 170 384 384s-170 384-384 384-384-170-384-384 170-384 384-384zM534 342v226l170 102-34 52-200-124v-256h64zM338 146l-198 162-54-64 196-162zM938 244l-54 64-198-168 56-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"access_alarms\"\n        ],\n        \"defaultCode\": 57745,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"access_alarms\",\n        \"id\": 3,\n        \"order\": 14,\n        \"prevSize\": 24,\n        \"code\": 57745,\n        \"name\": \"access_alarms\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 3\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M534 298v224l192 114-32 54-224-136v-256h64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"schedule\"\n        ],\n        \"defaultCode\": 59573,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"access_time, query_builder, schedule\",\n        \"id\": 4,\n        \"order\": 15,\n        \"prevSize\": 24,\n        \"code\": 59573,\n        \"name\": \"schedule\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 4\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 384h-256v554h-86v-256h-84v256h-86v-554h-256v-86h768v86zM512 86c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"accessibility\"\n        ],\n        \"defaultCode\": 59470,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"accessibility\",\n        \"id\": 5,\n        \"order\": 16,\n        \"prevSize\": 24,\n        \"code\": 59470,\n        \"name\": \"accessibility\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 5\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M548 768h88c-20 98-106 170-210 170-118 0-212-94-212-212 0-104 72-190 170-210v88c-50 18-86 66-86 122 0 70 58 128 128 128 56 0 104-36 122-86zM426 388c0-59.978 66.716-113.020 128-78h2v2c10 4 18 10 26 18l56 62c42 46 106 78 172 78v84c-74 0-156-36-212-82v146h128c46 0 84 40 84 86v234h-84v-212h-214c-46 0-86-40-86-86v-252zM426 170c0-48 38-84 86-84s86 36 86 84-38 86-86 86-86-38-86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"accessible\"\n        ],\n        \"defaultCode\": 59668,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"accessible\",\n        \"id\": 6,\n        \"order\": 17,\n        \"prevSize\": 24,\n        \"code\": 59668,\n        \"name\": \"accessible\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 6\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M490 42l406 214v86h-810v-86zM682 426h128v300h-128v-300zM86 938v-128h810v128h-810zM426 426h128v300h-128v-300zM170 426h128v300h-128v-300z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"account_balance\"\n        ],\n        \"defaultCode\": 59471,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"account_balance\",\n        \"id\": 7,\n        \"order\": 18,\n        \"prevSize\": 24,\n        \"code\": 59471,\n        \"name\": \"account_balance\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 7\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 682v-340h426v340h-426zM896 768v42c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596c46 0 86 40 86 86v42h-384c-48 0-86 40-86 86v340c0 46 38 86 86 86h384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"account_balance_wallet\"\n        ],\n        \"defaultCode\": 59472,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"account_balance_wallet\",\n        \"id\": 8,\n        \"order\": 19,\n        \"prevSize\": 24,\n        \"code\": 59472,\n        \"name\": \"account_balance_wallet\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 8\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 726v42h512v-42c0-86-170-132-256-132s-256 46-256 132zM640 384c0-70-58-128-128-128s-128 58-128 128 58 128 128 128 128-58 128-128zM128 214c0-46 38-86 86-86h596c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"account_box\"\n        ],\n        \"defaultCode\": 59473,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"account_box\",\n        \"id\": 9,\n        \"order\": 20,\n        \"prevSize\": 24,\n        \"code\": 59473,\n        \"name\": \"account_box\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 9\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 820c106 0 200-56 256-138-2-84-172-132-256-132-86 0-254 48-256 132 56 82 150 138 256 138zM512 214c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"account_circle\"\n        ],\n        \"defaultCode\": 59475,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"account_circle\",\n        \"id\": 10,\n        \"order\": 21,\n        \"prevSize\": 24,\n        \"code\": 59475,\n        \"name\": \"account_circle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 10\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 384c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM384 384c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM688 186c74 54 122 142 122 240v44h-596v-44c0-98 48-186 122-240l-90-90 36-34 98 98c40-20 84-32 132-32s92 12 132 32l98-98 36 34zM214 682v-170h596v170c0 166-132 300-298 300s-298-134-298-300z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"adb\"\n        ],\n        \"defaultCode\": 58894,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"adb\",\n        \"id\": 11,\n        \"order\": 22,\n        \"prevSize\": 24,\n        \"code\": 58894,\n        \"name\": \"adb\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 11\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 554h-256v256h-84v-256h-256v-84h256v-256h84v256h256v84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"add\"\n        ],\n        \"defaultCode\": 57669,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add\",\n        \"id\": 12,\n        \"order\": 23,\n        \"prevSize\": 24,\n        \"code\": 57669,\n        \"name\": \"add\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 12\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M418 598c0-76 60-138 136-138s138 62 138 138-62 136-138 136-136-60-136-136zM554 810c118 0 214-94 214-212s-96-214-214-214-212 96-212 214 94 212 212 212zM256 426v-128h128v-128h298l78 86h136c46 0 86 40 86 86v512c0 46-40 84-86 84h-682c-46 0-86-38-86-84v-428h128zM128 170v-128h86v128h128v86h-128v128h-86v-128h-128v-86h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"add_a_photo\"\n        ],\n        \"defaultCode\": 58425,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_a_photo\",\n        \"id\": 13,\n        \"order\": 24,\n        \"prevSize\": 24,\n        \"code\": 58425,\n        \"name\": \"add_a_photo\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 13\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 384v128h128v86h-128v128h-84v-128h-128v-86h128v-128h84zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"alarm_add\"\n        ],\n        \"defaultCode\": 59478,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_alarm, alarm_add\",\n        \"id\": 14,\n        \"order\": 25,\n        \"prevSize\": 24,\n        \"code\": 59478,\n        \"name\": \"alarm_add\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 14\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 556v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM806 718l90 90v46h-768v-46l90-90v-248c0-138 96-256 226-286v-30c0-38 30-68 68-68s68 30 68 68v30c130 30 226 148 226 286v248zM428 896h168c0 46-38 86-84 86s-84-40-84-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"add_alert\"\n        ],\n        \"defaultCode\": 57347,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_alert\",\n        \"id\": 15,\n        \"order\": 26,\n        \"prevSize\": 24,\n        \"code\": 57347,\n        \"name\": \"add_alert\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 15\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"add_box\"\n        ],\n        \"defaultCode\": 57670,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_box\",\n        \"id\": 16,\n        \"order\": 27,\n        \"prevSize\": 24,\n        \"code\": 57670,\n        \"name\": \"add_box\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 16\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"add_circle\"\n        ],\n        \"defaultCode\": 57671,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_circle\",\n        \"id\": 17,\n        \"order\": 28,\n        \"prevSize\": 24,\n        \"code\": 57671,\n        \"name\": \"add_circle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 17\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"control_point\"\n        ],\n        \"defaultCode\": 58298,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_circle_outline, control_point\",\n        \"id\": 18,\n        \"order\": 29,\n        \"prevSize\": 24,\n        \"code\": 58298,\n        \"name\": \"control_point\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 18\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 426v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"add_location\"\n        ],\n        \"defaultCode\": 58727,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_location\",\n        \"id\": 19,\n        \"order\": 30,\n        \"prevSize\": 24,\n        \"code\": 58727,\n        \"name\": \"add_location\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 19\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M306 630c0 6 4 10 10 10h494v86h-512c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-154-324h-86v-84h140c27.003 56.33 53.665 113.001 80 170 34.063 71.271 67.603 143.063 102 214h300c54.786-99.881 110.533-198.8 164-300l74 42-164 298c-14 26-42 44-74 44h-318l-38 70zM726 768c46 0 84 40 84 86s-38 84-84 84-86-38-86-84 40-86 86-86zM298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86zM470 384v-128h-128v-86h128v-128h84v128h128v86h-128v128h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"add_shopping_cart\"\n        ],\n        \"defaultCode\": 59476,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_shopping_cart\",\n        \"id\": 20,\n        \"order\": 31,\n        \"prevSize\": 24,\n        \"code\": 59476,\n        \"name\": \"add_shopping_cart\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 20\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 470v-86h-170v-170h-86v170h-170v86h170v170h86v-170h170zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"queue\"\n        ],\n        \"defaultCode\": 57404,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_to_photos, library_add, queue\",\n        \"id\": 21,\n        \"order\": 32,\n        \"prevSize\": 24,\n        \"code\": 57404,\n        \"name\": \"queue\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 21\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 426v86h-128v128h-84v-128h-128v-86h128v-128h84v128h128zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"add_to_queue\"\n        ],\n        \"defaultCode\": 57436,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"add_to_queue\",\n        \"id\": 22,\n        \"order\": 33,\n        \"prevSize\": 24,\n        \"code\": 57436,\n        \"name\": \"add_to_queue\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 22\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 512c0 70-58 128-128 128s-128-58-128-128 58-128 128-128 128 58 128 128zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"adjust\"\n        ],\n        \"defaultCode\": 58270,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"adjust\",\n        \"id\": 23,\n        \"order\": 34,\n        \"prevSize\": 24,\n        \"code\": 58270,\n        \"name\": \"adjust2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 23\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M304 516c-50 50-130 52-180 2s-52-130-2-180 130-52 180-2 52 130 2 180zM86 598h852v84h-256v86h-340v-86h-256v-84zM938 470v84h-554v-256h384c94 0 170 78 170 172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airline_seat_flat\"\n        ],\n        \"defaultCode\": 58928,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airline_seat_flat\",\n        \"id\": 24,\n        \"order\": 35,\n        \"prevSize\": 24,\n        \"code\": 58928,\n        \"name\": \"airline_seat_flat\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 24\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M312 436c-64 30-142 4-172-60s-4-142 60-172 142-4 172 60 4 142-60 172zM64 518l30-80 810 292-28 80-194-68v68h-340v-192zM950 610l-30 80-528-190 90-242 364 132c90 32 136 130 104 220z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airline_seat_flat_angled\"\n        ],\n        \"defaultCode\": 58929,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airline_seat_flat_angled\",\n        \"id\": 25,\n        \"order\": 36,\n        \"prevSize\": 24,\n        \"code\": 58929,\n        \"name\": \"airline_seat_flat_angled\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 25\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 298c94 0 172 78 172 172v256h-940v-428h86v300h342v-300h340zM298 554c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airline_seat_individual_suite\"\n        ],\n        \"defaultCode\": 58930,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airline_seat_individual_suite\",\n        \"id\": 26,\n        \"order\": 37,\n        \"prevSize\": 24,\n        \"code\": 58930,\n        \"name\": \"airline_seat_individual_suite\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 26\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M974 736c18 32 2 72-30 88l-158 72-146-298h-298c-70 0-128-58-128-128v-342h256v256h150c32 0 62 18 76 48l144 298 48-22c32-14 70-2 86 28zM170 512c0 70 58 128 128 128h256v86h-256c-118 0-212-96-212-214v-384h84v384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airline_seat_legroom_extra\"\n        ],\n        \"defaultCode\": 58931,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airline_seat_legroom_extra\",\n        \"id\": 27,\n        \"order\": 38,\n        \"prevSize\": 24,\n        \"code\": 58931,\n        \"name\": \"airline_seat_legroom_extra\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 27\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M874 768c36 0 64 28 64 64s-28 64-64 64h-192v-298h-298c-70 0-128-58-128-128v-342h256v256h214c46 0 84 40 84 86v298h64zM214 512c0 70 58 128 128 128h256v86h-256c-118 0-214-96-214-214v-384h86v384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airline_seat_legroom_normal\"\n        ],\n        \"defaultCode\": 58932,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airline_seat_legroom_normal\",\n        \"id\": 28,\n        \"order\": 39,\n        \"prevSize\": 24,\n        \"code\": 58932,\n        \"name\": \"airline_seat_legroom_normal\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 28\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 512c0 70 58 128 128 128h170v86h-170c-118 0-214-96-214-214v-384h86v384zM852 820c8 40-22 76-62 76h-192v-128l42-170h-256c-70 0-128-58-128-128v-342h256v256h214c46 0 84 40 84 86l-84 298h60c32 0 60 22 66 52z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airline_seat_legroom_reduced\"\n        ],\n        \"defaultCode\": 58933,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airline_seat_legroom_reduced\",\n        \"id\": 29,\n        \"order\": 40,\n        \"prevSize\": 24,\n        \"code\": 58933,\n        \"name\": \"airline_seat_legroom_reduced\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 29\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M692 640l246 192-64 64-162-128h-292c-62 0-114-44-126-104l-58-252c-8-52 26-102 78-112h2c30.359-4.337 56.628 4.102 74 18l70 54c54 42 130 68 200 54v92c-80 14-152-14-220-52l44 174h208zM682 810v86h-300c-106 0-196-76-212-180l-84-418h84l84 404c10 62 64 108 128 108h300zM228 240c-38-28-46-80-20-118s80-48 118-22c38 28 48 82 22 120-28 38-82 46-120 20z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airline_seat_recline_extra\"\n        ],\n        \"defaultCode\": 58934,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airline_seat_recline_extra\",\n        \"id\": 30,\n        \"order\": 41,\n        \"prevSize\": 24,\n        \"code\": 58934,\n        \"name\": \"airline_seat_recline_extra\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 30\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 856l-62 62-150-150h-216c-70 0-128-58-128-128v-246c0-52 44-96 96-96h2c29.673 0 54.798 16.798 70 32l60 66c46 50 130 86 200 86v94c-82 0-176-44-236-94v158h148zM256 682c0 70 58 128 128 128h256v86h-256c-118 0-214-96-214-214v-384h86v384zM324 230c-34-34-34-86 0-120s86-34 120 0 34 86 0 120-86 34-120 0z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airline_seat_recline_normal\"\n        ],\n        \"defaultCode\": 58935,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airline_seat_recline_normal\",\n        \"id\": 31,\n        \"order\": 42,\n        \"prevSize\": 24,\n        \"code\": 58935,\n        \"name\": \"airline_seat_recline_normal\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 31\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 682l-342-106v234l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l340-214v-234c0-36 28-64 64-64s64 28 64 64v234l342 214v84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flight\"\n        ],\n        \"defaultCode\": 58681,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airplanemode_active, flight\",\n        \"id\": 32,\n        \"order\": 43,\n        \"prevSize\": 24,\n        \"code\": 58681,\n        \"name\": \"flight\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 32\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 224l54-54 672 672-54 54-246-244v158l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l254-160zM554 384l342 214v84l-136-42-334-334v-156c0-36 28-64 64-64s64 28 64 64v234z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airplanemode_inactive\"\n        ],\n        \"defaultCode\": 57748,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airplanemode_inactive\",\n        \"id\": 33,\n        \"order\": 44,\n        \"prevSize\": 24,\n        \"code\": 57748,\n        \"name\": \"airplanemode_inactive\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 33\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 128c46 0 86 40 86 86v512c0 46-40 84-86 84h-170v-84h170v-512h-768v512h170v84h-170c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768zM256 938l256-256 256 256h-512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airplay\"\n        ],\n        \"defaultCode\": 57429,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airplay\",\n        \"id\": 34,\n        \"order\": 45,\n        \"prevSize\": 24,\n        \"code\": 57429,\n        \"name\": \"airplay\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 34\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 470h214l-172-172h-42v172zM746 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 470v-172h-170v172h170zM256 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM128 470h170v-172h-170v172zM726 214l256 256v212h-108c0 70-58 128-128 128s-128-58-128-128h-234c0 70-58 128-128 128s-128-58-128-128h-86v-384c0-48 40-84 86-84h598z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"airport_shuttle\"\n        ],\n        \"defaultCode\": 60220,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"airport_shuttle\",\n        \"id\": 35,\n        \"order\": 46,\n        \"prevSize\": 24,\n        \"code\": 60220,\n        \"name\": \"airport_shuttle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 35\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 140l-36 30-62-60 38-30zM702 784l-420-420c-42 52-68 118-68 190 0 166 132 300 298 300 72 0 138-28 190-70zM124 98c262.552 262.114 525.354 523.98 788 786l-54 54-94-94c-68 58-156 94-252 94-212 0-384-172-384-384 0-96 36-182 94-250l-34-34-48 40-60-62 48-38-58-58zM938 244l-54 66-196-166 54-64zM512 256c-36 0-70 6-102 18l-66-64c50-24 108-40 168-40 212 0 384 172 384 384 0 60-14 118-38 168l-66-64c12-32 18-68 18-104 0-166-132-298-298-298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"alarm_off\"\n        ],\n        \"defaultCode\": 59479,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"alarm_off\",\n        \"id\": 36,\n        \"order\": 47,\n        \"prevSize\": 24,\n        \"code\": 59479,\n        \"name\": \"alarm_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 36\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M450 620l210-212 46 46-256 256-136-136 44-44zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"alarm_on\"\n        ],\n        \"defaultCode\": 59480,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"alarm_on\",\n        \"id\": 37,\n        \"order\": 48,\n        \"prevSize\": 24,\n        \"code\": 59480,\n        \"name\": \"alarm_on\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 37\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 470c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM512 704c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"album\"\n        ],\n        \"defaultCode\": 57369,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"album\",\n        \"id\": 38,\n        \"order\": 49,\n        \"prevSize\": 24,\n        \"code\": 57369,\n        \"name\": \"album\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 38\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M794 282c128 0 230 104 230 230s-102 230-230 230c-62 0-120-24-164-68l-54-48 64-56 50 42c30 30 66 44 104 44 80 0 144-64 144-144s-64-144-144-144c-38 0-74 14-102 42-60.266 53.067-120.945 105.722-180 160l-120 106c-42 42-100 66-162 66-128 0-230-104-230-230s102-230 230-230c62 0 120 24 164 68l54 48-66 56-48-42c-30-30-66-44-104-44-80 0-144 64-144 144s64 144 144 144c38 0 74-14 102-42 60.266-53.067 120.945-105.722 180-160l120-106c42-42 100-66 162-66z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"all_inclusive\"\n        ],\n        \"defaultCode\": 60221,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"all_inclusive\",\n        \"id\": 39,\n        \"order\": 50,\n        \"prevSize\": 24,\n        \"code\": 60221,\n        \"name\": \"all_inclusive\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 39\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M686 684c90-90 90-240 0-330s-240-90-330 0-90 240 0 330 240 90 330 0zM732 308c116 116 116 306 0 422s-306 116-422 0-116-306 0-422 306-116 422 0zM180 348v-170h170zM350 860h-170v-170zM862 690v170h-170zM692 178h170v170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"all_out\"\n        ],\n        \"defaultCode\": 59659,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"all_out\",\n        \"id\": 40,\n        \"order\": 51,\n        \"prevSize\": 24,\n        \"code\": 59659,\n        \"name\": \"all_out\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 40\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 214v-44h-42v44h42zM426 214v-44h-42v44h42zM662 92c64 46 106 122 106 206h-512c0-84 40-160 104-206l-56-56c-8-8-8-22 0-30s22-8 30 0l64 64c34-18 74-28 114-28s78 10 112 28l64-64c8-8 22-8 30 0s8 22 0 30zM874 342c36 0 64 28 64 64v298c0 36-28 64-64 64s-64-28-64-64v-298c0-36 28-64 64-64zM150 342c36 0 64 28 64 64v298c0 36-28 64-64 64s-64-28-64-64v-298c0-36 28-64 64-64zM256 768v-426h512v426c0 24-18 42-42 42h-44v150c0 36-28 64-64 64s-64-28-64-64v-150h-84v150c0 36-28 64-64 64s-64-28-64-64v-150h-44c-24 0-42-18-42-42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"android\"\n        ],\n        \"defaultCode\": 59481,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"android\",\n        \"id\": 41,\n        \"order\": 52,\n        \"prevSize\": 24,\n        \"code\": 59481,\n        \"name\": \"android2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 41\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 640v-86h-84v86h84zM554 470v-256h-84v256h84zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"announcement\"\n        ],\n        \"defaultCode\": 59482,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"announcement\",\n        \"id\": 42,\n        \"order\": 53,\n        \"prevSize\": 24,\n        \"code\": 59482,\n        \"name\": \"announcement\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 42\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 854v-172h172v172h-172zM682 598v-172h172v172h-172zM426 342v-172h172v172h-172zM682 170h172v172h-172v-172zM426 598v-172h172v172h-172zM170 598v-172h172v172h-172zM170 854v-172h172v172h-172zM426 854v-172h172v172h-172zM170 342v-172h172v172h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"apps\"\n        ],\n        \"defaultCode\": 58819,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"apps\",\n        \"id\": 43,\n        \"order\": 54,\n        \"prevSize\": 24,\n        \"code\": 58819,\n        \"name\": \"apps\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 43\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M218 214h588l-40-44h-512zM512 746l234-234h-148v-86h-172v86h-148zM876 224c12 14 20 34 20 54v532c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-532c0-20 8-40 20-54l58-72c12-14 30-24 50-24h512c20 0 38 10 50 24z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"archive\"\n        ],\n        \"defaultCode\": 57673,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"archive\",\n        \"id\": 44,\n        \"order\": 55,\n        \"prevSize\": 24,\n        \"code\": 57673,\n        \"name\": \"archive2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 44\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 470v84h-520l238 240-60 60-342-342 342-342 60 60-238 240h520z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow_back\"\n        ],\n        \"defaultCode\": 58820,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"arrow_back\",\n        \"id\": 45,\n        \"order\": 56,\n        \"prevSize\": 24,\n        \"code\": 58820,\n        \"name\": \"arrow_back\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 45\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 512l-342 342-342-342 62-60 238 238v-520h84v520l240-238z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow_downward\"\n        ],\n        \"defaultCode\": 58843,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"arrow_downward\",\n        \"id\": 46,\n        \"order\": 57,\n        \"prevSize\": 24,\n        \"code\": 58843,\n        \"name\": \"arrow_downward\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 46\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 426h428l-214 214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow_drop_down\"\n        ],\n        \"defaultCode\": 58821,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"arrow_drop_down\",\n        \"id\": 47,\n        \"order\": 58,\n        \"prevSize\": 24,\n        \"code\": 58821,\n        \"name\": \"arrow_drop_down\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 47\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 598l170-172h-340zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow_drop_down_circle\"\n        ],\n        \"defaultCode\": 58822,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"arrow_drop_down_circle\",\n        \"id\": 48,\n        \"order\": 59,\n        \"prevSize\": 24,\n        \"code\": 58822,\n        \"name\": \"arrow_drop_down_circle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 48\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 598l214-214 214 214h-428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow_drop_up\"\n        ],\n        \"defaultCode\": 58823,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"arrow_drop_up\",\n        \"id\": 49,\n        \"order\": 60,\n        \"prevSize\": 24,\n        \"code\": 58823,\n        \"name\": \"arrow_drop_up\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 49\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 170l342 342-342 342-60-60 238-240h-520v-84h520l-238-240z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow_forward\"\n        ],\n        \"defaultCode\": 58824,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"arrow_forward\",\n        \"id\": 50,\n        \"order\": 61,\n        \"prevSize\": 24,\n        \"code\": 58824,\n        \"name\": \"arrow_forward\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 50\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 512l342-342 342 342-62 60-238-238v520h-84v-520l-240 238z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"arrow_upward\"\n        ],\n        \"defaultCode\": 58840,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"arrow_upward\",\n        \"id\": 51,\n        \"order\": 62,\n        \"prevSize\": 24,\n        \"code\": 58840,\n        \"name\": \"arrow_upward\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 51\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M448 640l-96-128-74 96-54-64-74 96h298zM512 384v256c0 46-40 86-86 86h-256c-46 0-84-40-84-86v-256c0-46 38-86 84-86h256c46 0 86 40 86 86zM598 726v-86h340v86h-340zM938 298v86h-340v-86h340zM938 554h-340v-84h340v84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"art_track\"\n        ],\n        \"defaultCode\": 57440,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"art_track\",\n        \"id\": 52,\n        \"order\": 63,\n        \"prevSize\": 24,\n        \"code\": 57440,\n        \"name\": \"art_track\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 52\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM298 384v128h-84v-214h212v86h-128zM810 512v214h-212v-86h128v-128h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"aspect_ratio\"\n        ],\n        \"defaultCode\": 59483,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"aspect_ratio\",\n        \"id\": 53,\n        \"order\": 64,\n        \"prevSize\": 24,\n        \"code\": 59483,\n        \"name\": \"aspect_ratio\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 53\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 726v-172h-86v172h86zM554 726v-428h-84v428h84zM384 726v-300h-86v300h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"poll\"\n        ],\n        \"defaultCode\": 59393,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assessment, insert_chart, poll\",\n        \"id\": 54,\n        \"order\": 65,\n        \"prevSize\": 24,\n        \"code\": 59393,\n        \"name\": \"poll\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 54\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 384v-86h-428v86h428zM726 554v-84h-428v84h428zM598 726v-86h-300v86h300zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"assignment\"\n        ],\n        \"defaultCode\": 59485,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assignment\",\n        \"id\": 55,\n        \"order\": 66,\n        \"prevSize\": 24,\n        \"code\": 59485,\n        \"name\": \"assignment\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 55\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 810v-60c0-86-170-132-256-132s-256 46-256 132v60h512zM512 298c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"assignment_ind\"\n        ],\n        \"defaultCode\": 59486,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assignment_ind\",\n        \"id\": 56,\n        \"order\": 67,\n        \"prevSize\": 24,\n        \"code\": 59486,\n        \"name\": \"assignment_ind\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 56\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 214c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44zM554 598v-256h-84v256h84zM554 768v-86h-84v86h84zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"assignment_late\"\n        ],\n        \"defaultCode\": 59487,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assignment_late\",\n        \"id\": 57,\n        \"order\": 68,\n        \"prevSize\": 24,\n        \"code\": 59487,\n        \"name\": \"assignment_late\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 57\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 640v-170h-170v-128l-214 212 214 214v-128h170zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"assignment_return\"\n        ],\n        \"defaultCode\": 59488,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assignment_return\",\n        \"id\": 58,\n        \"order\": 69,\n        \"prevSize\": 24,\n        \"code\": 59488,\n        \"name\": \"assignment_return\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 58\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 768l214-214h-128v-170h-172v170h-128zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"assignment_returned\"\n        ],\n        \"defaultCode\": 59489,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assignment_returned\",\n        \"id\": 59,\n        \"order\": 70,\n        \"prevSize\": 24,\n        \"code\": 59489,\n        \"name\": \"assignment_returned\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 59\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 726l342-342-60-60-282 280-110-110-60 60zM512 128c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h178c18-50 64-86 120-86s102 36 120 86h178z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"assignment_turned_in\"\n        ],\n        \"defaultCode\": 59490,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assignment_turned_in\",\n        \"id\": 60,\n        \"order\": 71,\n        \"prevSize\": 24,\n        \"code\": 59490,\n        \"name\": \"assignment_turned_in\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 60\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M592 550l176-80-176-80-80-176-80 176-176 80 176 80 80 176zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-46 0-86-40-86-86v-598c0-46 40-84 86-84h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"assistant\"\n        ],\n        \"defaultCode\": 58271,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assistant\",\n        \"id\": 61,\n        \"order\": 72,\n        \"prevSize\": 24,\n        \"code\": 58271,\n        \"name\": \"assistant\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 61\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M614 256h240v426h-300l-16-84h-240v298h-84v-726h384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flag\"\n        ],\n        \"defaultCode\": 57683,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"assistant_photo, flag\",\n        \"id\": 62,\n        \"order\": 73,\n        \"prevSize\": 24,\n        \"code\": 57683,\n        \"name\": \"flag2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 62\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M704 256h64v490c0 130-104 236-234 236s-236-106-236-236v-532c0-94 78-172 172-172s170 78 170 172v448c0 58-48 106-106 106s-108-48-108-106v-406h64v406c0 24 20 42 44 42s42-18 42-42v-448c0-58-48-108-106-108s-108 50-108 108v532c0 94 78 172 172 172s170-78 170-172v-490z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"attach_file\"\n        ],\n        \"defaultCode\": 57894,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"attach_file\",\n        \"id\": 63,\n        \"order\": 74,\n        \"prevSize\": 24,\n        \"code\": 57894,\n        \"name\": \"attach_file\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 63\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M504 466c96 26 200 64 200 186 0 88-66 136-150 152v92h-128v-92c-82-18-150-70-156-164h94c4 50 38 90 126 90 94 0 116-46 116-76 0-40-22-78-128-104-120-28-200-78-200-176 0-82 66-136 148-154v-92h128v94c90 22 136 88 138 162h-94c-2-54-32-90-108-90-72 0-114 34-114 80 0 40 32 66 128 92z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"attach_money\"\n        ],\n        \"defaultCode\": 57895,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"attach_money\",\n        \"id\": 64,\n        \"order\": 75,\n        \"prevSize\": 24,\n        \"code\": 57895,\n        \"name\": \"attach_money\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 64\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 534c0-130 104-236 234-236h448c94 0 170 78 170 172s-76 170-170 170h-362c-58 0-108-48-108-106s50-108 108-108h320v86h-324c-24 0-24 42 0 42h366c46 0 86-38 86-84s-40-86-86-86h-448c-82 0-150 68-150 150s68 148 150 148h406v86h-406c-130 0-234-104-234-234z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"attachment\"\n        ],\n        \"defaultCode\": 58044,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"attachment\",\n        \"id\": 65,\n        \"order\": 76,\n        \"prevSize\": 24,\n        \"code\": 58044,\n        \"name\": \"attachment\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 65\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 128h298v128h-170v470h-2c-10 96-92 170-190 170-106 0-192-86-192-192s86-192 192-192c22 0 44 4 64 12v-396z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"audiotrack\"\n        ],\n        \"defaultCode\": 58273,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"audiotrack\",\n        \"id\": 66,\n        \"order\": 77,\n        \"prevSize\": 24,\n        \"code\": 58273,\n        \"name\": \"audiotrack\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 66\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M800 330c34 52 54 116 54 182 0 188-154 342-342 342v128l-170-172 170-170v128c142 0 256-114 256-256 0-44-12-84-30-120zM512 256c-142 0-256 114-256 256 0 44 10 84 30 120l-62 62c-34-52-54-116-54-182 0-188 154-342 342-342v-128l170 172-170 170v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"autorenew\"\n        ],\n        \"defaultCode\": 59491,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"autorenew\",\n        \"id\": 67,\n        \"order\": 78,\n        \"prevSize\": 24,\n        \"code\": 59491,\n        \"name\": \"autorenew\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 67\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 512c0-24 18-42 42-42s44 18 44 42-20 42-44 42-42-18-42-42zM768 512c0 24-18 42-42 42s-44-18-44-42 20-42 44-42 42 18 42 42zM470 128h42c212 0 384 172 384 384s-172 384-384 384-384-172-384-384c0-126 60-236 154-306v-2l290 290-60 60-232-230c-42 52-66 116-66 188 0 166 132 298 298 298s298-132 298-298c0-150-112-276-256-296v82h-84v-170zM470 726c0-24 18-44 42-44s42 20 42 44-18 42-42 42-42-18-42-42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"av_timer\"\n        ],\n        \"defaultCode\": 57371,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"av_timer\",\n        \"id\": 68,\n        \"order\": 79,\n        \"prevSize\": 24,\n        \"code\": 57371,\n        \"name\": \"av_timer\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 68\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 666l-152-154 152-154-60-60-152 154-154-154-60 60 154 154-154 154 60 60 154-154 152 154zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-640c-30 0-52-16-68-38l-230-346 230-346c16-22 38-38 68-38h640z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"backspace\"\n        ],\n        \"defaultCode\": 57674,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"backspace\",\n        \"id\": 69,\n        \"order\": 80,\n        \"prevSize\": 24,\n        \"code\": 57674,\n        \"name\": \"backspace\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 69\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 554h128l-214-212-214 212h128v172h172v-172zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud_upload\"\n        ],\n        \"defaultCode\": 58051,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"backup, cloud_upload\",\n        \"id\": 70,\n        \"order\": 81,\n        \"prevSize\": 24,\n        \"code\": 58051,\n        \"name\": \"cloud_upload\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 70\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 598v-214h-84v214h84zM554 768v-86h-84v86h84zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery_alert\"\n        ],\n        \"defaultCode\": 57756,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"battery_alert\",\n        \"id\": 71,\n        \"order\": 82,\n        \"prevSize\": 24,\n        \"code\": 57756,\n        \"name\": \"battery_alert\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 71\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 854l170-320h-86v-236l-170 320h86v236zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery_charging_full\"\n        ],\n        \"defaultCode\": 57763,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"battery_charging_full\",\n        \"id\": 72,\n        \"order\": 83,\n        \"prevSize\": 24,\n        \"code\": 57763,\n        \"name\": \"battery_charging_full\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 72\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery_std\"\n        ],\n        \"defaultCode\": 57765,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"battery_full, battery_std\",\n        \"id\": 73,\n        \"order\": 84,\n        \"prevSize\": 24,\n        \"code\": 57765,\n        \"name\": \"battery_std\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 73\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M610 542c18-18 30-44 30-72 0-70-58-128-128-128s-128 58-128 128h64c0-36 28-64 64-64s64 28 64 64c0 18-6 32-18 44l-40 40c-20 20-40 50-40 86h68c0-20 16-48 36-68 12-12 28-30 28-30zM552 766v-82h-80v82h80zM668 170c32 0 58 26 58 58v654c0 32-26 56-58 56h-312c-32 0-58-24-58-56v-654c0-32 26-58 58-58h70v-84h172v84h70z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"battery_unknown\"\n        ],\n        \"defaultCode\": 57766,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"battery_unknown\",\n        \"id\": 74,\n        \"order\": 85,\n        \"prevSize\": 24,\n        \"code\": 57766,\n        \"name\": \"battery_unknown\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 74\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M744 376c-133.701-133.701-319.17-177.803-486.874-122.374 127.568-14.55 291.962 51.462 424.874 184.374l-244 244c-132.912-132.912-198.924-297.306-184.374-424.874-55.43 167.705-11.327 353.174 122.374 486.874l-122 122c-167.908-167.908-168-441.7-0.275-609.724 0.259-2.212 0.333-2.291 2.551-2.551 168.024-167.725 441.816-167.633 609.724 0.275zM560 622l62-62 274 276-62 60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"beach_access\"\n        ],\n        \"defaultCode\": 60222,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"beach_access\",\n        \"id\": 75,\n        \"order\": 86,\n        \"prevSize\": 24,\n        \"code\": 60222,\n        \"name\": \"beach_access\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 75\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 682l384-384-60-60-324 324-152-152-60 60zM810 42c46 0 86 40 86 86v552c0 30-16 54-38 70l-346 232-346-232c-22-16-38-40-38-70v-552c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"beenhere\"\n        ],\n        \"defaultCode\": 58669,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"beenhere\",\n        \"id\": 76,\n        \"order\": 87,\n        \"prevSize\": 24,\n        \"code\": 58669,\n        \"name\": \"beenhere\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 76\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342 0-78-26-152-72-210l-480 480c58 46 132 72 210 72zM170 512c0 78 26 152 72 210l480-480c-58-46-132-72-210-72-188 0-342 154-342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"block\"\n        ],\n        \"defaultCode\": 57675,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"block\",\n        \"id\": 77,\n        \"order\": 88,\n        \"prevSize\": 24,\n        \"code\": 57675,\n        \"name\": \"block\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 77\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bluetooth\"\n        ],\n        \"defaultCode\": 57767,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"bluetooth\",\n        \"id\": 78,\n        \"order\": 89,\n        \"prevSize\": 24,\n        \"code\": 57767,\n        \"name\": \"bluetooth2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 78\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M550 696l-80-82v162zM470 248v162l80-82zM670 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM834 286c40 64 62 142 62 222 0 84-24 160-66 226l-50-50c26-52 42-110 42-172s-16-120-42-172zM608 512l98-98c12 30 20 64 20 98s-8 70-20 100z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bluetooth_searching\"\n        ],\n        \"defaultCode\": 57770,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"bluetooth_audio, bluetooth_searching\",\n        \"id\": 79,\n        \"order\": 90,\n        \"prevSize\": 24,\n        \"code\": 57770,\n        \"name\": \"bluetooth_searching\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 79\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 426l86 86-86 86-84-86zM634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM298 512l-84 86-86-86 86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bluetooth_connected\"\n        ],\n        \"defaultCode\": 57768,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"bluetooth_connected\",\n        \"id\": 80,\n        \"order\": 91,\n        \"prevSize\": 24,\n        \"code\": 57768,\n        \"name\": \"bluetooth_connected\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 80\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 776l80-80-80-82v162zM230 170l624 624-60 60-98-98-184 182h-42v-324l-196 196-60-60 238-238-282-282zM554 248v138l-84-86v-214h42l244 242-130 130-60-60 68-70z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bluetooth_disabled\"\n        ],\n        \"defaultCode\": 57769,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"bluetooth_disabled\",\n        \"id\": 81,\n        \"order\": 92,\n        \"prevSize\": 24,\n        \"code\": 57769,\n        \"name\": \"bluetooth_disabled\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 81\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 554c24 0 42 20 42 44s-18 42-42 42-44-18-44-42 20-44 44-44zM598 704c12 0 20 10 20 22s-8 20-20 20-22-8-22-20 10-22 22-22zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM726 406c12 0 20 8 20 20s-8 22-20 22-22-10-22-22 10-20 22-20zM726 576c12 0 20 10 20 22s-8 20-20 20-22-8-22-20 10-22 22-22zM598 320c-12 0-22-10-22-22s10-20 22-20 20 8 20 20-8 22-20 22zM598 384c24 0 42 18 42 42s-18 44-42 44-44-20-44-44 20-42 44-42zM426 320c-12 0-20-10-20-22s8-20 20-20 22 8 22 20-10 22-22 22zM298 576c12 0 22 10 22 22s-10 20-22 20-20-8-20-20 8-22 20-22zM426 704c12 0 22 10 22 22s-10 20-22 20-20-8-20-20 8-22 20-22zM298 406c12 0 22 8 22 20s-10 22-22 22-20-10-20-22 8-20 20-20zM426 554c24 0 44 20 44 44s-20 42-44 42-42-18-42-42 18-44 42-44zM426 384c24 0 44 18 44 42s-20 44-44 44-42-20-42-44 18-42 42-42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"blur_circular\"\n        ],\n        \"defaultCode\": 58274,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"blur_circular\",\n        \"id\": 82,\n        \"order\": 93,\n        \"prevSize\": 24,\n        \"code\": 58274,\n        \"name\": \"blur_circular\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 82\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 726c-24 0-42-20-42-44s18-42 42-42 44 18 44 42-20 44-44 44zM554 554c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM554 384c-24 0-42-18-42-42s18-44 42-44 44 20 44 44-20 42-44 42zM726 534c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM726 362c-12 0-22-8-22-20s10-22 22-22 20 10 20 22-8 20-20 20zM128 128h768v86h-768v-86zM726 704c-12 0-22-10-22-22s10-20 22-20 20 8 20 20-8 22-20 22zM384 726c-24 0-42-20-42-44s18-42 42-42 42 18 42 42-18 44-42 44zM214 576c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM214 406c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM128 896v-86h768v86h-768zM384 384c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM384 554c-24 0-42-18-42-42s18-42 42-42 42 18 42 42-18 42-42 42zM214 746c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"blur_linear\"\n        ],\n        \"defaultCode\": 58275,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"blur_linear\",\n        \"id\": 83,\n        \"order\": 94,\n        \"prevSize\": 24,\n        \"code\": 58275,\n        \"name\": \"blur_linear\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 83\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM256 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM426 874c12 0 22 10 22 22s-10 22-22 22-20-10-20-22 8-22 20-22zM128 406c12 0 22 8 22 20s-10 22-22 22-22-10-22-22 10-20 22-20zM256 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44zM896 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM426 726c24 0 44 18 44 42s-20 42-44 42-42-18-42-42 18-42 42-42zM106 224l54-54 694 694-56 54-160-162c2 4 2 8 2 12 0 24-18 42-42 42s-44-18-44-42 20-42 44-42c4 0 8 0 12 2l-120-120c-4 30-32 54-64 54-36 0-64-28-64-64 0-32 24-60 54-64l-120-120c2 4 2 8 2 12 0 24-18 44-42 44s-42-20-42-44 18-42 42-42l12 2zM598 874c12 0 20 10 20 22s-8 22-20 22-22-10-22-22 10-22 22-22zM768 298c-24 0-42-18-42-42s18-42 42-42 42 18 42 42-18 42-42 42zM768 470c-24 0-42-20-42-44s18-42 42-42 42 18 42 42-18 44-42 44zM768 640c-24 0-42-18-42-42s18-44 42-44 42 20 42 44-18 42-42 42zM426 298c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM896 448c-12 0-22-10-22-22s10-20 22-20 22 8 22 20-10 22-22 22zM426 150c-12 0-20-10-20-22s8-22 20-22 22 10 22 22-10 22-22 22zM598 150c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM588 490c-28-4-50-26-54-54v-10c0-36 28-64 64-64s64 28 64 64-28 64-64 64h-10zM598 298c-24 0-44-18-44-42s20-42 44-42 42 18 42 42-18 42-42 42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"blur_off\"\n        ],\n        \"defaultCode\": 58276,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"blur_off\",\n        \"id\": 84,\n        \"order\": 95,\n        \"prevSize\": 24,\n        \"code\": 58276,\n        \"name\": \"blur_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 84\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 362c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM598 534c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM426 726c24 0 44 18 44 42s-20 42-44 42-42-18-42-42 18-42 42-42zM426 362c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM598 874c12 0 20 10 20 22s-8 22-20 22-22-10-22-22 10-22 22-22zM598 726c24 0 42 18 42 42s-18 42-42 42-44-18-44-42 20-42 44-42zM896 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM768 214c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM768 384c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM768 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM768 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44zM426 534c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM426 298c-24 0-42-18-42-42s18-42 42-42 44 18 44 42-20 42-44 42zM426 150c-12 0-20-10-20-22s8-22 20-22 22 10 22 22-10 22-22 22zM426 874c12 0 22 10 22 22s-10 22-22 22-20-10-20-22 8-22 20-22zM128 576c12 0 22 10 22 22s-10 20-22 20-22-8-22-20 10-22 22-22zM598 150c-12 0-22-10-22-22s10-22 22-22 20 10 20 22-8 22-20 22zM598 298c-24 0-44-18-44-42s20-42 44-42 42 18 42 42-18 42-42 42zM896 448c-12 0-22-10-22-22s10-20 22-20 22 8 22 20-10 22-22 22zM256 214c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM128 406c12 0 22 8 22 20s-10 22-22 22-22-10-22-22 10-20 22-20zM256 384c24 0 42 18 42 42s-18 44-42 44-42-20-42-44 18-42 42-42zM256 726c24 0 42 18 42 42s-18 42-42 42-42-18-42-42 18-42 42-42zM256 554c24 0 42 20 42 44s-18 42-42 42-42-18-42-42 18-44 42-44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"blur_on\"\n        ],\n        \"defaultCode\": 58277,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"blur_on\",\n        \"id\": 85,\n        \"order\": 96,\n        \"prevSize\": 24,\n        \"code\": 58277,\n        \"name\": \"blur_on\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 85\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 170v342l106-64 108 64v-342h-214zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-46 40-84 86-84h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"class\"\n        ],\n        \"defaultCode\": 59502,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"book, class\",\n        \"id\": 86,\n        \"order\": 97,\n        \"prevSize\": 24,\n        \"code\": 59502,\n        \"name\": \"class\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 86\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 128c46 0 84 40 84 86v682l-298-128-298 128v-682c0-46 38-86 84-86h428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"turned_in\"\n        ],\n        \"defaultCode\": 59622,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"bookmark, turned_in\",\n        \"id\": 87,\n        \"order\": 98,\n        \"prevSize\": 24,\n        \"code\": 59622,\n        \"name\": \"turned_in\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 87\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 768v-554h-428v554l214-94zM726 128c46 0 84 40 84 86v682l-298-128-298 128v-682c0-46 38-86 84-86h428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"turned_in_not\"\n        ],\n        \"defaultCode\": 59623,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"bookmark_border, turned_in_not\",\n        \"id\": 88,\n        \"order\": 99,\n        \"prevSize\": 24,\n        \"code\": 59623,\n        \"name\": \"turned_in_not\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 88\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 470v-256h-256v256h256zM810 810v-256h-256v256h256zM470 470v-256h-256v256h256zM470 810v-256h-256v256h256zM128 128h768v768h-768v-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_all\"\n        ],\n        \"defaultCode\": 57896,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_all\",\n        \"id\": 89,\n        \"order\": 100,\n        \"prevSize\": 24,\n        \"code\": 57896,\n        \"name\": \"border_all\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 89\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 640v86h-86v-86h86zM128 896v-86h768v86h-768zM214 470v84h-86v-84h86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM214 298v86h-86v-86h86zM810 726v-86h86v86h-86zM810 554v-84h86v84h-86zM726 128v86h-86v-86h86zM554 128v86h-84v-86h84zM726 470v84h-86v-84h86zM554 298v86h-84v-86h84zM214 128v86h-86v-86h86zM554 470v84h-84v-84h84zM384 128v86h-86v-86h86zM554 640v86h-84v-86h84zM384 470v84h-86v-84h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_bottom\"\n        ],\n        \"defaultCode\": 57897,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_bottom\",\n        \"id\": 90,\n        \"order\": 101,\n        \"prevSize\": 24,\n        \"code\": 57897,\n        \"name\": \"border_bottom\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 90\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM470 214v-86h84v86h-84zM810 128h86v86h-86v-86zM470 384v-86h84v86h-84zM810 384v-86h86v86h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 554v-84h84v84h-84zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM470 896v-86h84v86h-84zM470 726v-86h84v86h-84zM298 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_clear\"\n        ],\n        \"defaultCode\": 57898,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_clear\",\n        \"id\": 91,\n        \"order\": 102,\n        \"prevSize\": 24,\n        \"code\": 57898,\n        \"name\": \"border_clear\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 91\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 854h1024v170h-1024v-170zM884 172l-84 84-160-160 84-84c16-16 44-16 60 0l100 100c16 16 16 44 0 60zM758 298l-428 428h-160v-160l428-428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_color\"\n        ],\n        \"defaultCode\": 57899,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_color\",\n        \"id\": 92,\n        \"order\": 103,\n        \"prevSize\": 24,\n        \"code\": 57899,\n        \"name\": \"border_color\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 92\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 896v-86h86v86h-86zM640 896v-86h86v86h-86zM470 726v-86h84v86h-84zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM128 554v-84h768v84h-768zM470 896v-86h84v86h-84zM810 726v-86h86v86h-86zM554 128v86h-84v-86h84zM554 298v86h-84v-86h84zM726 128v86h-86v-86h86zM384 128v86h-86v-86h86zM214 128v86h-86v-86h86zM298 896v-86h86v86h-86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM128 896v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_horizontal\"\n        ],\n        \"defaultCode\": 57900,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_horizontal\",\n        \"id\": 93,\n        \"order\": 104,\n        \"prevSize\": 24,\n        \"code\": 57900,\n        \"name\": \"border_horizontal\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 93\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 726v-86h86v86h-86zM810 896v-86h86v86h-86zM554 128v342h342v84h-342v342h-84v-342h-342v-84h342v-342h84zM640 896v-86h86v86h-86zM810 128h86v86h-86v-86zM810 384v-86h86v86h-86zM726 128v86h-86v-86h86zM214 128v86h-86v-86h86zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM298 896v-86h86v86h-86zM128 896v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_inner\"\n        ],\n        \"defaultCode\": 57901,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_inner\",\n        \"id\": 94,\n        \"order\": 105,\n        \"prevSize\": 24,\n        \"code\": 57901,\n        \"name\": \"border_inner\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 94\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 128h86v86h-86v-86zM810 726v-86h86v86h-86zM640 896v-86h86v86h-86zM810 384v-86h86v86h-86zM128 896v-768h86v768h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM298 896v-86h86v86h-86zM470 554v-84h84v84h-84zM470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 726v-86h84v86h-84zM470 896v-86h84v86h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_left\"\n        ],\n        \"defaultCode\": 57902,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_left\",\n        \"id\": 95,\n        \"order\": 106,\n        \"prevSize\": 24,\n        \"code\": 57902,\n        \"name\": \"border_left\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 95\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 470v84h-86v-84h86zM554 640v86h-84v-86h84zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM554 298v86h-84v-86h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_outer\"\n        ],\n        \"defaultCode\": 57903,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_outer\",\n        \"id\": 96,\n        \"order\": 107,\n        \"prevSize\": 24,\n        \"code\": 57903,\n        \"name\": \"border_outer\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 96\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 554v-84h84v84h-84zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 128h86v768h-86v-768zM640 554v-84h86v84h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM470 896v-86h84v86h-84zM128 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM298 896v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_right\"\n        ],\n        \"defaultCode\": 57904,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_right\",\n        \"id\": 97,\n        \"order\": 108,\n        \"prevSize\": 24,\n        \"code\": 57904,\n        \"name\": \"border_right\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 97\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 384v-86h86v86h-86zM128 128h768v86h-682v682h-86v-768zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 896v-86h84v86h-84zM298 896v-86h86v86h-86zM810 896v-86h86v86h-86zM640 896v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_style\"\n        ],\n        \"defaultCode\": 57905,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_style\",\n        \"id\": 98,\n        \"order\": 109,\n        \"prevSize\": 24,\n        \"code\": 57905,\n        \"name\": \"border_style\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 98\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 384v-86h84v86h-84zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM128 128h768v86h-768v-86zM810 554v-84h86v84h-86zM810 384v-86h86v86h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 896v-86h86v86h-86zM128 726v-86h86v86h-86zM470 896v-86h84v86h-84zM470 554v-84h84v84h-84zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_top\"\n        ],\n        \"defaultCode\": 57906,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_top\",\n        \"id\": 99,\n        \"order\": 110,\n        \"prevSize\": 24,\n        \"code\": 57906,\n        \"name\": \"border_top\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 99\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM640 214v-86h86v86h-86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM810 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 896v-768h84v768h-84zM810 726v-86h86v86h-86zM298 214v-86h86v86h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM128 554v-84h86v84h-86zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"border_vertical\"\n        ],\n        \"defaultCode\": 57907,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"border_vertical\",\n        \"id\": 100,\n        \"order\": 111,\n        \"prevSize\": 24,\n        \"code\": 57907,\n        \"name\": \"border_vertical\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 100\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 810v-256h-384v256h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"branding_watermark\"\n        ],\n        \"defaultCode\": 57451,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"branding_watermark\",\n        \"id\": 101,\n        \"order\": 112,\n        \"prevSize\": 24,\n        \"code\": 57451,\n        \"name\": \"branding_watermark\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 101\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 512c0-236 190-426 426-426s426 190 426 426-190 426-426 426-426-190-426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brightness_1\"\n        ],\n        \"defaultCode\": 58278,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brightness_1\",\n        \"id\": 102,\n        \"order\": 113,\n        \"prevSize\": 24,\n        \"code\": 58278,\n        \"name\": \"brightness_1\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 102\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 86c236 0 428 190 428 426s-192 426-428 426c-78 0-150-20-212-56 128-74 212-212 212-370s-84-296-212-370c62-36 134-56 212-56z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brightness_2\"\n        ],\n        \"defaultCode\": 58279,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brightness_2\",\n        \"id\": 103,\n        \"order\": 114,\n        \"prevSize\": 24,\n        \"code\": 58279,\n        \"name\": \"brightness_2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 103\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 86c236 0 426 190 426 426s-190 426-426 426c-44 0-88-6-128-18 174-54 298-216 298-408s-124-354-298-408c40-12 84-18 128-18z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brightness_3\"\n        ],\n        \"defaultCode\": 58280,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brightness_3\",\n        \"id\": 104,\n        \"order\": 115,\n        \"prevSize\": 24,\n        \"code\": 58280,\n        \"name\": \"brightness_3\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 104\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 768c142 0 256-114 256-256s-114-256-256-256c-38 0-74 10-106 24 88 40 148 128 148 232s-60 192-148 232c32 14 68 24 106 24zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brightness_4\"\n        ],\n        \"defaultCode\": 58281,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brightness_4\",\n        \"id\": 105,\n        \"order\": 116,\n        \"prevSize\": 24,\n        \"code\": 58281,\n        \"name\": \"brightness_4\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 105\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brightness_low\"\n        ],\n        \"defaultCode\": 57773,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brightness_5, brightness_low\",\n        \"id\": 106,\n        \"order\": 117,\n        \"prevSize\": 24,\n        \"code\": 57773,\n        \"name\": \"brightness_low\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 106\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 768c142 0 256-114 256-256s-114-256-256-256v512zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brightness_medium\"\n        ],\n        \"defaultCode\": 57774,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brightness_6, brightness_medium\",\n        \"id\": 107,\n        \"order\": 118,\n        \"prevSize\": 24,\n        \"code\": 57774,\n        \"name\": \"brightness_medium\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 107\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170zM512 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brightness_high\"\n        ],\n        \"defaultCode\": 57772,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brightness_7, brightness_high\",\n        \"id\": 108,\n        \"order\": 119,\n        \"prevSize\": 24,\n        \"code\": 57772,\n        \"name\": \"brightness_high\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 108\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M610 682h82l-138-384h-84l-138 384h82l30-84h136zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200zM462 540l50-156 50 156h-100z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brightness_auto\"\n        ],\n        \"defaultCode\": 57771,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brightness_auto\",\n        \"id\": 109,\n        \"order\": 120,\n        \"prevSize\": 24,\n        \"code\": 57771,\n        \"name\": \"brightness_auto\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 109\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 488l128 128v194c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-280l128 128 170-172 172 172zM896 214v280l-128-128-170 172-172-172-170 172-128-130v-194c0-46 40-86 86-86h596c46 0 86 40 86 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"broken_image\"\n        ],\n        \"defaultCode\": 58285,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"broken_image\",\n        \"id\": 110,\n        \"order\": 121,\n        \"prevSize\": 24,\n        \"code\": 58285,\n        \"name\": \"broken_image\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 110\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M884 198c16 16 16 44 0 60l-382 382-118-118 382-382c16-16 44-16 60 0zM298 598c70 0 128 58 128 128 0 94-76 170-170 170-64 0-130-34-170-86 36 0 84-28 84-84 0-70 58-128 128-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"brush\"\n        ],\n        \"defaultCode\": 58286,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"brush\",\n        \"id\": 111,\n        \"order\": 122,\n        \"prevSize\": 24,\n        \"code\": 58286,\n        \"name\": \"brush\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 111\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M444 376c0-114 90-206 204-206s206 92 206 206-92 204-206 204-204-90-204-204zM546 768c0-48 38-86 86-86s84 38 84 86-36 86-84 86-86-38-86-86zM170 614c0-76 62-136 138-136s136 60 136 136-60 136-136 136-138-60-138-136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bubble_chart\"\n        ],\n        \"defaultCode\": 59101,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"bubble_chart\",\n        \"id\": 112,\n        \"order\": 123,\n        \"prevSize\": 24,\n        \"code\": 59101,\n        \"name\": \"bubble_chart\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 112\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 512v-86h-172v86h172zM598 682v-84h-172v84h172zM854 342v84h-90c2 14 4 30 4 44v42h86v86h-86v42c0 14-2 28-4 42h90v86h-120c-44 76-128 128-222 128s-178-52-222-128h-120v-86h90c-2-14-4-28-4-42v-42h-86v-86h86v-42c0-14 2-30 4-44h-90v-84h120c20-34 46-62 78-84l-70-70 60-60 94 92c20-4 40-6 60-6s40 2 60 6l94-92 60 60-70 70c32 22 58 50 78 84h120z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"bug_report\"\n        ],\n        \"defaultCode\": 59496,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"bug_report\",\n        \"id\": 113,\n        \"order\": 124,\n        \"prevSize\": 24,\n        \"code\": 59496,\n        \"name\": \"bug_report\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 113\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M968 810c18 12 18 42-4 60l-98 98c-18 18-42 18-60 0l-388-388c-98 38-212 18-294-64-86-86-108-214-56-316l188 184 128-128-184-184c102-46 230-30 316 56 82 82 102 196 64 294z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"build\"\n        ],\n        \"defaultCode\": 59497,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"build\",\n        \"id\": 114,\n        \"order\": 125,\n        \"prevSize\": 24,\n        \"code\": 59497,\n        \"name\": \"build\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 114\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 726h426l-136-180-108 136-76-92zM938 214c24 0 44 18 44 42v512c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-512c0-24 18-42 42-42h512zM214 214h84v596h-84v-596zM42 214h86v596h-86v-596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"burst_mode\"\n        ],\n        \"defaultCode\": 58428,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"burst_mode\",\n        \"id\": 115,\n        \"order\": 126,\n        \"prevSize\": 24,\n        \"code\": 58428,\n        \"name\": \"burst_mode\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 115\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 640v86h-86v-86h86zM768 470v84h-86v-84h86zM854 810v-426h-342v86h86v84h-86v86h86v86h-86v84h342zM426 298v-84h-84v84h84zM426 470v-86h-84v86h84zM426 640v-86h-84v86h84zM426 810v-84h-84v84h84zM256 298v-84h-86v84h86zM256 470v-86h-86v86h86zM256 640v-86h-86v86h86zM256 810v-84h-86v84h86zM512 298h426v598h-852v-768h426v170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"domain\"\n        ],\n        \"defaultCode\": 59374,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"business, domain\",\n        \"id\": 116,\n        \"order\": 127,\n        \"prevSize\": 24,\n        \"code\": 59374,\n        \"name\": \"domain\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 116\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 298v-84h-172v84h172zM854 298c46 0 84 40 84 86v128c0 46-38 86-84 86h-256v-86h-172v86h-256c-48 0-84-38-84-86v-128c0-46 38-86 84-86h170v-84l86-86h170l86 86v84h172zM426 682h172v-42h298v170c0 48-38 86-86 86h-596c-48 0-86-38-86-86v-170h298v42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"business_center\"\n        ],\n        \"defaultCode\": 60223,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"business_center\",\n        \"id\": 117,\n        \"order\": 128,\n        \"prevSize\": 24,\n        \"code\": 60223,\n        \"name\": \"business_center\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 117\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 512h128l-170 170-172-170h128c0-188 154-342 342-342 66 0 130 20 182 54l-62 62c-36-20-76-30-120-30-142 0-256 114-256 256zM810 342l172 170h-128c0 188-154 342-342 342-66 0-130-20-182-54l62-62c36 20 76 30 120 30 142 0 256-114 256-256h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cached\"\n        ],\n        \"defaultCode\": 59498,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cached\",\n        \"id\": 118,\n        \"order\": 129,\n        \"prevSize\": 24,\n        \"code\": 59498,\n        \"name\": \"cached\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 118\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 384c70 0 128 58 128 128v66c0 46-38 84-84 84-22 0-42-8-58-24l-92-92-92 92c-32 32-86 32-118 0l-90-92-92 92c-16 16-36 24-58 24-46 0-84-38-84-84v-66c0-70 58-128 128-128h214v-86h84v86h214zM708 682c28 28 64 44 104 44 32 0 60-10 84-26v196c0 24-18 42-42 42h-684c-24 0-42-18-42-42v-196c24 16 52 26 84 26 40 0 76-16 104-44l46-46 46 46c56 56 152 56 208 0l46-46zM512 256c-46 0-86-40-86-86 0-16 6-32 14-44l72-126 72 126c8 12 14 28 14 44 0 46-38 86-86 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cake\"\n        ],\n        \"defaultCode\": 59369,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cake\",\n        \"id\": 119,\n        \"order\": 130,\n        \"prevSize\": 24,\n        \"code\": 59369,\n        \"name\": \"cake\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 119\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M282 460c62 120 162 220 282 282l94-94c12-12 30-16 44-10 48 16 100 24 152 24 24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone\"\n        ],\n        \"defaultCode\": 57549,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call, local_phone, phone\",\n        \"id\": 120,\n        \"order\": 131,\n        \"prevSize\": 24,\n        \"code\": 57549,\n        \"name\": \"phone2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 120\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 384c-68 0-134 10-196 30v132c0 16-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-58-114-78-14-6-24-20-24-38v-132c-62-20-128-32-196-32z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"call_end\"\n        ],\n        \"defaultCode\": 57521,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call_end\",\n        \"id\": 121,\n        \"order\": 132,\n        \"prevSize\": 24,\n        \"code\": 57521,\n        \"name\": \"call_end\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 121\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 214h426v426h-84v-282l-496 496-60-60 496-496h-282v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"call_made\"\n        ],\n        \"defaultCode\": 57522,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call_made\",\n        \"id\": 122,\n        \"order\": 133,\n        \"prevSize\": 24,\n        \"code\": 57522,\n        \"name\": \"call_made\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 122\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M320 342l192-192 192 192h-150v272l-256 256-60-60 232-230v-238h-150zM726 870l-146-144 60-60 146 144z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"merge_type\"\n        ],\n        \"defaultCode\": 57938,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call_merge, merge_type\",\n        \"id\": 123,\n        \"order\": 134,\n        \"prevSize\": 24,\n        \"code\": 57938,\n        \"name\": \"merge_type\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 123\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M836 298l60 60-384 384-298-298v196h-86v-342h342v86h-196l238 238z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"call_missed\"\n        ],\n        \"defaultCode\": 57524,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call_missed\",\n        \"id\": 124,\n        \"order\": 135,\n        \"prevSize\": 24,\n        \"code\": 57524,\n        \"name\": \"call_missed\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 124\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 358l60-60 324 324 238-238h-196v-86h342v342h-86v-196l-298 298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"call_missed_outgoing\"\n        ],\n        \"defaultCode\": 57572,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call_missed_outgoing\",\n        \"id\": 125,\n        \"order\": 136,\n        \"prevSize\": 24,\n        \"code\": 57572,\n        \"name\": \"call_missed_outgoing\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 125\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 230l-496 496h282v84h-426v-426h84v282l496-496z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"call_received\"\n        ],\n        \"defaultCode\": 57525,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call_received\",\n        \"id\": 126,\n        \"order\": 137,\n        \"prevSize\": 24,\n        \"code\": 57525,\n        \"name\": \"call_received\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 126\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 170l-98 98 226 226v360h-84v-324l-202-202-98 98v-256h256zM598 170h256v256l-98-98-124 124-60-60 124-124z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"call_split\"\n        ],\n        \"defaultCode\": 57526,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call_split\",\n        \"id\": 127,\n        \"order\": 138,\n        \"prevSize\": 24,\n        \"code\": 57526,\n        \"name\": \"call_split\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 127\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 810v-128h-768v128h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"call_to_action\"\n        ],\n        \"defaultCode\": 57452,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"call_to_action\",\n        \"id\": 128,\n        \"order\": 139,\n        \"prevSize\": 24,\n        \"code\": 57452,\n        \"name\": \"call_to_action\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 128\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M420 928c68.709-118.625 136.494-238.172 206-356l156 270c-74 60-168 96-270 96-32 0-62-4-92-10zM104 640h414l-158 270c-122-46-216-146-256-270zM198 224c71.999 124.667 143.587 249.746 216 374h-320c-6-28-8-56-8-86 0-112 42-212 112-288zM930 426c6 28 8 56 8 86 0 112-42 212-112 288l-204-352-12-22h320zM920 384h-414l158-270c122 46 216 146 256 270zM402 448l-4 4-156-270c74-60 168-96 270-96 32 0 62 4 92 10z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"camera\"\n        ],\n        \"defaultCode\": 58287,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"camera\",\n        \"id\": 129,\n        \"order\": 140,\n        \"prevSize\": 24,\n        \"code\": 58287,\n        \"name\": \"camera2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 129\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 726c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM384 86h256l78 84h136c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136zM376 512c0-76 60-136 136-136s136 60 136 136-60 136-136 136-136-60-136-136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"photo_camera\"\n        ],\n        \"defaultCode\": 58386,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"camera_alt, local_see, photo_camera\",\n        \"id\": 130,\n        \"order\": 141,\n        \"prevSize\": 24,\n        \"code\": 58386,\n        \"name\": \"photo_camera\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 130\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 726l-54-118-116-54 116-52 54-118 54 118 116 52-116 54zM512 768c118 0 214-96 214-214s-96-212-214-212-214 94-214 212 96 214 214 214zM384 128h256l78 86h136c46 0 84 38 84 84v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-84 84-84h136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"camera_enhance\"\n        ],\n        \"defaultCode\": 59644,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"camera_enhance\",\n        \"id\": 131,\n        \"order\": 142,\n        \"prevSize\": 24,\n        \"code\": 59644,\n        \"name\": \"camera_enhance\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 131\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 86v448c0-72 142-108 214-108s214 36 214 108v-448h-428zM726 0c46 0 84 40 84 86v596c0 46-38 86-84 86h-300l128 128-128 128v-86h-212v-84h212v-86h-128c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428zM512 342c-46 0-84-40-84-86s38-86 84-86 86 40 86 86-40 86-86 86zM598 854h212v84h-212v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"camera_front\"\n        ],\n        \"defaultCode\": 58289,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"camera_front\",\n        \"id\": 132,\n        \"order\": 143,\n        \"prevSize\": 24,\n        \"code\": 58289,\n        \"name\": \"camera_front\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 132\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 256c46 0 84-40 84-86s-38-84-84-84-86 38-86 84 38 86 86 86zM726 0c46 0 84 40 84 86v596c0 46-38 86-84 86h-300l128 128-128 128v-86h-212v-84h212v-86h-128c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428zM598 854h212v84h-212v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"camera_rear\"\n        ],\n        \"defaultCode\": 58290,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"camera_rear\",\n        \"id\": 133,\n        \"order\": 144,\n        \"prevSize\": 24,\n        \"code\": 58290,\n        \"name\": \"camera_rear\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 133\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 384v-86h-86v86h86zM854 768v-86h-86v86h86zM682 384v-86h-84v86h84zM682 768v-86h-84v86h84zM512 384v-86h-86v86h86zM512 768v-86h-86v86h86zM598 214h340v640h-340c0 46-40 84-86 84h-342c-46 0-84-38-84-84v-640c0-46 38-86 84-86h44v-42c0-24 18-44 42-44h170c24 0 44 20 44 44v42h42c46 0 86 40 86 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"camera_roll\"\n        ],\n        \"defaultCode\": 58291,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"camera_roll\",\n        \"id\": 134,\n        \"order\": 145,\n        \"prevSize\": 24,\n        \"code\": 58291,\n        \"name\": \"camera_roll\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 134\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 666l-154-154 154-154-60-60-154 154-154-154-60 60 154 154-154 154 60 60 154-154 154 154zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cancel\"\n        ],\n        \"defaultCode\": 58825,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cancel\",\n        \"id\": 135,\n        \"order\": 146,\n        \"prevSize\": 24,\n        \"code\": 58825,\n        \"name\": \"cancel\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 135\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 598v-256h-218l90 120-70 50c-48.076-65.258-96.637-130.029-144-196-47.366 65.967-95.923 130.744-144 196l-70-50 90-120h-218v256h684zM854 810v-84h-684v84h684zM384 170c-24 0-42 20-42 44s18 42 42 42 42-18 42-42-18-44-42-44zM640 170c-24 0-42 20-42 44s18 42 42 42 42-18 42-42-18-44-42-44zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h94c-4-14-8-28-8-42 0-70 58-128 128-128 44 0 82 22 106 56l22 30 22-30c24-34 62-56 106-56 70 0 128 58 128 128 0 14-4 28-8 42h94z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"redeem\"\n        ],\n        \"defaultCode\": 59569,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"card_giftcard, redeem\",\n        \"id\": 136,\n        \"order\": 147,\n        \"prevSize\": 24,\n        \"code\": 59569,\n        \"name\": \"redeem\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 136\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 426v-256h-684v256h684zM854 640v-86h-684v86h684zM854 86c48 0 84 36 84 84v470c0 48-36 86-84 86h-172v212l-170-84-170 84v-212h-172c-48 0-84-38-84-86v-470c0-48 36-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"card_membership\"\n        ],\n        \"defaultCode\": 59639,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"card_membership\",\n        \"id\": 137,\n        \"order\": 148,\n        \"prevSize\": 24,\n        \"code\": 59639,\n        \"name\": \"card_membership\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 137\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 598v-256h-128v84h-86v-84h-256v84h-86v-84h-128v256h684zM854 810v-84h-684v84h684zM384 170v86h256v-86h-256zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h128v-86c0-48 38-84 86-84h256c48 0 86 36 86 84v86h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"card_travel\"\n        ],\n        \"defaultCode\": 59640,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"card_travel\",\n        \"id\": 138,\n        \"order\": 149,\n        \"prevSize\": 24,\n        \"code\": 59640,\n        \"name\": \"card_travel\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 138\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M704 384c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM704 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 384c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"casino\"\n        ],\n        \"defaultCode\": 60224,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"casino\",\n        \"id\": 139,\n        \"order\": 150,\n        \"prevSize\": 24,\n        \"code\": 60224,\n        \"name\": \"casino\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 139\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M42 426c258 0 470 210 470 470h-86c0-212-172-384-384-384v-86zM42 598c166 0 300 132 300 298h-86c0-118-96-214-214-214v-84zM42 768c70 0 128 58 128 128h-128v-128zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-298v-86h298v-596h-768v128h-86v-128c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cast\"\n        ],\n        \"defaultCode\": 58119,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cast\",\n        \"id\": 140,\n        \"order\": 151,\n        \"prevSize\": 24,\n        \"code\": 58119,\n        \"name\": \"cast\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 140\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-298v-86h298v-596h-768v128h-86v-128c0-46 40-86 86-86h768zM42 426c258 0 470 210 470 470h-86c0-212-172-384-384-384v-86zM810 298v428h-240c-54-168-188-304-356-358v-70h596zM42 598c166 0 300 132 300 298h-86c0-118-96-214-214-214v-84zM42 768c70 0 128 58 128 128h-128v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cast_connected\"\n        ],\n        \"defaultCode\": 58120,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cast_connected\",\n        \"id\": 141,\n        \"order\": 152,\n        \"prevSize\": 24,\n        \"code\": 58120,\n        \"name\": \"cast_connected\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 141\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"center_focus_strong\"\n        ],\n        \"defaultCode\": 58292,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"center_focus_strong\",\n        \"id\": 142,\n        \"order\": 153,\n        \"prevSize\": 24,\n        \"code\": 58292,\n        \"name\": \"center_focus_strong\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 142\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 598c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"center_focus_weak\"\n        ],\n        \"defaultCode\": 58293,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"center_focus_weak\",\n        \"id\": 143,\n        \"order\": 154,\n        \"prevSize\": 24,\n        \"code\": 58293,\n        \"name\": \"center_focus_weak\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 143\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 170l426 684h-852zM512 332l-272 436h544z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"change_history\"\n        ],\n        \"defaultCode\": 59499,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"change_history\",\n        \"id\": 144,\n        \"order\": 155,\n        \"prevSize\": 24,\n        \"code\": 59499,\n        \"name\": \"change_history\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 144\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 342v-86h-512v86h512zM598 598v-86h-342v86h342zM256 384v86h512v-86h-512zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chat\"\n        ],\n        \"defaultCode\": 57527,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"chat\",\n        \"id\": 145,\n        \"order\": 156,\n        \"prevSize\": 24,\n        \"code\": 57527,\n        \"name\": \"chat\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 145\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chat_bubble\"\n        ],\n        \"defaultCode\": 57546,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"chat_bubble\",\n        \"id\": 146,\n        \"order\": 157,\n        \"prevSize\": 24,\n        \"code\": 57546,\n        \"name\": \"chat_bubble\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 146\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 682v-512h-684v598l86-86h598zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chat_bubble_outline\"\n        ],\n        \"defaultCode\": 57547,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"chat_bubble_outline\",\n        \"id\": 147,\n        \"order\": 158,\n        \"prevSize\": 24,\n        \"code\": 57547,\n        \"name\": \"chat_bubble_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 147\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 690l452-452 60 60-512 512-238-238 60-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check\"\n        ],\n        \"defaultCode\": 58826,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"check\",\n        \"id\": 148,\n        \"order\": 159,\n        \"prevSize\": 24,\n        \"code\": 58826,\n        \"name\": \"check2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 148\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 726l384-384-60-62-324 324-152-152-60 60zM810 128c48 0 86 40 86 86v596c0 46-38 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check_box\"\n        ],\n        \"defaultCode\": 59444,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"check_box\",\n        \"id\": 149,\n        \"order\": 160,\n        \"prevSize\": 24,\n        \"code\": 59444,\n        \"name\": \"check_box\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 149\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM810 214h-596v596h596v-596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check_box_outline_blank\"\n        ],\n        \"defaultCode\": 59445,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"check_box_outline_blank\",\n        \"id\": 150,\n        \"order\": 161,\n        \"prevSize\": 24,\n        \"code\": 59445,\n        \"name\": \"check_box_outline_blank\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 150\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 726l384-384-60-62-324 324-152-152-60 60zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"check_circle\"\n        ],\n        \"defaultCode\": 59500,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"check_circle\",\n        \"id\": 151,\n        \"order\": 162,\n        \"prevSize\": 24,\n        \"code\": 59500,\n        \"name\": \"check_circle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 151\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658 316l-196 196 196 196-60 60-256-256 256-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"navigate_before\"\n        ],\n        \"defaultCode\": 58376,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"chevron_left, navigate_before\",\n        \"id\": 152,\n        \"order\": 163,\n        \"prevSize\": 24,\n        \"code\": 58376,\n        \"name\": \"navigate_before\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 152\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 256l256 256-256 256-60-60 196-196-196-196z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"navigate_next\"\n        ],\n        \"defaultCode\": 58377,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"chevron_right, navigate_next\",\n        \"id\": 153,\n        \"order\": 164,\n        \"prevSize\": 24,\n        \"code\": 58377,\n        \"name\": \"navigate_next\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 153\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M320 598h384c-32 76-106 128-192 128s-160-52-192-128zM512 810c136.004 0 250.464-89.626 286-214 4 0 8 2 12 2 46 0 86-40 86-86s-40-86-86-86c-4 0-8 2-12 2-35.529-124.35-149.994-214-286-214-136.004 0-250.464 89.626-286 214-4 0-8-2-12-2-46 0-86 40-86 86s40 86 86 86c4 0 8-2 12-2 35.529 124.35 149.994 214 286 214zM978 540c-10 64-56 118-118 136-56.536 118.211-189.668 220-348 220-157.767 0-291.044-100.097-346-220-62-18-110-72-120-136-2-8-4-18-4-28s2-20 4-28c10-64 58-118 120-136 22-48 52-90 92-124 68-60 156-96 254-96 160.584 0 290.218 98.294 346 220 62 18 110 72 120 136 2 8 4 18 4 28s-2 20-4 28zM352 448c0-30 24-54 54-54s52 24 52 54-22 54-52 54-54-24-54-54zM566 448c0-30 22-54 52-54s54 24 54 54-24 54-54 54-52-24-52-54z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"child_care\"\n        ],\n        \"defaultCode\": 60225,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"child_care\",\n        \"id\": 154,\n        \"order\": 165,\n        \"prevSize\": 24,\n        \"code\": 60225,\n        \"name\": \"child_care\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 154\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 854c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM342 854c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM824 678c30 28 50 68 50 112 0 82-66 148-148 148-76 0-138-56-148-128h-90c-10 72-70 128-146 128-82 0-150-66-150-148 0-56 32-106 78-132-10-14-90-188-90-188h-94v-86h148l40 86h622c0 78-28 150-72 208zM554 86c188 0 342 152 342 340h-342v-340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"child_friendly\"\n        ],\n        \"defaultCode\": 60226,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"child_friendly\",\n        \"id\": 155,\n        \"order\": 166,\n        \"prevSize\": 24,\n        \"code\": 60226,\n        \"name\": \"child_friendly\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 155\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 810v-554h-384v554h384zM896 170c46 0 86 40 86 86v554c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-554c0-46 40-86 86-86h768zM554 618h300v64h-300v-64zM554 406h300v64h-300v-64zM554 512h300v64h-300v-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"chrome_reader_mode\"\n        ],\n        \"defaultCode\": 59501,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"chrome_reader_mode\",\n        \"id\": 156,\n        \"order\": 167,\n        \"prevSize\": 24,\n        \"code\": 59501,\n        \"name\": \"chrome_reader_mode\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 156\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"close\"\n        ],\n        \"defaultCode\": 58829,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"clear, close\",\n        \"id\": 157,\n        \"order\": 168,\n        \"prevSize\": 24,\n        \"code\": 58829,\n        \"name\": \"close2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 157\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 298h598v86h-598v-86zM128 726v-86h598v86h-598zM214 554v-84h596v84h-596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"clear_all\"\n        ],\n        \"defaultCode\": 57528,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"clear_all\",\n        \"id\": 158,\n        \"order\": 169,\n        \"prevSize\": 24,\n        \"code\": 57528,\n        \"name\": \"clear_all\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 158\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 470v-44c0-24-18-42-42-42h-128c-24 0-44 18-44 42v172c0 24 20 42 44 42h128c24 0 42-18 42-42v-44h-64v22h-86v-128h86v22h64zM470 470v-44c0-24-20-42-44-42h-128c-24 0-42 18-42 42v172c0 24 18 42 42 42h128c24 0 44-18 44-42v-44h-64v22h-86v-128h86v22h64zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"closed_caption\"\n        ],\n        \"defaultCode\": 57372,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"closed_caption\",\n        \"id\": 159,\n        \"order\": 170,\n        \"prevSize\": 24,\n        \"code\": 57372,\n        \"name\": \"closed_caption\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 159\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wb_cloudy\"\n        ],\n        \"defaultCode\": 58413,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cloud, wb_cloudy\",\n        \"id\": 160,\n        \"order\": 171,\n        \"prevSize\": 24,\n        \"code\": 58413,\n        \"name\": \"wb_cloudy\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 160\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M704 682c58 0 106-48 106-106s-48-106-106-106h-22c0-94-76-172-170-172-80 0-146 56-164 130l-6-2c-70 0-128 58-128 128s58 128 128 128h362zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud_circle\"\n        ],\n        \"defaultCode\": 58046,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cloud_circle\",\n        \"id\": 161,\n        \"order\": 172,\n        \"prevSize\": 24,\n        \"code\": 58046,\n        \"name\": \"cloud_circle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 161\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 726l282-282-60-60-222 220-88-88-60 60zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud_done\"\n        ],\n        \"defaultCode\": 58047,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cloud_done\",\n        \"id\": 162,\n        \"order\": 173,\n        \"prevSize\": 24,\n        \"code\": 58047,\n        \"name\": \"cloud_done\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 162\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554h-128v-170h-172v170h-128l214 214zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud_download\"\n        ],\n        \"defaultCode\": 58048,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cloud_download\",\n        \"id\": 163,\n        \"order\": 174,\n        \"prevSize\": 24,\n        \"code\": 58048,\n        \"name\": \"cloud_download\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 163\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M330 426h-74c-94 0-170 78-170 172s76 170 170 170h416zM128 224l54-54 714 714-54 54-86-84h-500c-142 0-256-114-256-256 0-138 110-250 246-256zM826 428c110 8 198 100 198 212 0 72-36 136-90 174l-62-62c40-22 66-64 66-112 0-70-58-128-128-128h-64v-22c0-130-104-234-234-234-40 0-76 8-108 26l-64-62c50-32 108-50 172-50 156 0 284 110 314 258z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud_off\"\n        ],\n        \"defaultCode\": 58049,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cloud_off\",\n        \"id\": 164,\n        \"order\": 175,\n        \"prevSize\": 24,\n        \"code\": 58049,\n        \"name\": \"cloud_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 164\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 768c70 0 128-58 128-128s-58-128-128-128h-64v-22c0-130-104-234-234-234-108 0-198 72-226 170h-30c-94 0-170 78-170 172s76 170 170 170h554zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"cloud_queue\"\n        ],\n        \"defaultCode\": 58050,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"cloud_queue\",\n        \"id\": 165,\n        \"order\": 176,\n        \"prevSize\": 24,\n        \"code\": 58050,\n        \"name\": \"cloud_queue\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 165\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M622 708l198-196-198-196 60-60 256 256-256 256zM402 708l-60 60-256-256 256-256 60 60-198 196z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"code\"\n        ],\n        \"defaultCode\": 59503,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"code\",\n        \"id\": 166,\n        \"order\": 177,\n        \"prevSize\": 24,\n        \"code\": 59503,\n        \"name\": \"code2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 166\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 256h84v598h598v84h-598c-46 0-84-38-84-84v-598zM470 512l-128 170h512l-172-212-126 158zM938 682c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512c46 0 84 38 84 84v512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"photo_library\"\n        ],\n        \"defaultCode\": 58387,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"collections, photo_library\",\n        \"id\": 167,\n        \"order\": 178,\n        \"prevSize\": 24,\n        \"code\": 58387,\n        \"name\": \"photo_library\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 167\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 512v-342h-214v342l106-64zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"collections_bookmark\"\n        ],\n        \"defaultCode\": 58417,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"collections_bookmark\",\n        \"id\": 168,\n        \"order\": 179,\n        \"prevSize\": 24,\n        \"code\": 58417,\n        \"name\": \"collections_bookmark\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 168\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M746 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM618 342c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM406 342c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 128c212 0 384 154 384 342 0 118-96 212-214 212h-74c-36 0-64 28-64 64 0 16 6 30 16 42s16 28 16 44c0 36-28 64-64 64-212 0-384-172-384-384s172-384 384-384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"palette\"\n        ],\n        \"defaultCode\": 58378,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"color_lens, palette\",\n        \"id\": 169,\n        \"order\": 180,\n        \"prevSize\": 24,\n        \"code\": 58378,\n        \"name\": \"palette\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 169\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M296 810l344-344-82-82-344 344zM884 240c16 16 18 42 0 60l-134 134 82 82-60 60-60-60-382 380h-202v-202l380-382-60-60 60-60 82 82 134-134c16-16 44-16 60 0z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"colorize\"\n        ],\n        \"defaultCode\": 58296,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"colorize\",\n        \"id\": 170,\n        \"order\": 181,\n        \"prevSize\": 24,\n        \"code\": 58296,\n        \"name\": \"colorize\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 170\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM938 170v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684c46 0 84 38 84 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"comment\"\n        ],\n        \"defaultCode\": 57529,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"comment\",\n        \"id\": 171,\n        \"order\": 182,\n        \"prevSize\": 24,\n        \"code\": 57529,\n        \"name\": \"comment2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 171\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-212v-384l212 256v-554h-212v-86h212zM426 768v-256l-212 256h212zM426 128v-86h86v940h-86v-86h-212c-46 0-86-40-86-86v-596c0-46 40-86 86-86h212z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"compare\"\n        ],\n        \"defaultCode\": 58297,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"compare\",\n        \"id\": 172,\n        \"order\": 183,\n        \"prevSize\": 24,\n        \"code\": 58297,\n        \"name\": \"compare\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 172\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 554l-170-170 170-170v128h298v84h-298v128zM384 598v-128l170 170-170 170v-128h-298v-84h298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"compare_arrows\"\n        ],\n        \"defaultCode\": 59669,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"compare_arrows\",\n        \"id\": 173,\n        \"order\": 184,\n        \"prevSize\": 24,\n        \"code\": 59669,\n        \"name\": \"compare_arrows\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 173\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 256v426h684v-426h-684zM854 768h170v86h-1024v-86h170c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684c46 0 84 40 84 86v426c0 46-38 86-84 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"laptop\"\n        ],\n        \"defaultCode\": 58142,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"computer, laptop\",\n        \"id\": 174,\n        \"order\": 185,\n        \"prevSize\": 24,\n        \"code\": 58142,\n        \"name\": \"laptop2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 174\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 362v-84h-84v84h84zM554 554v-84h-84v84h84zM554 746v-84h-84v84h84zM938 426c-46 0-84 40-84 86s38 86 84 86v170c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-170c48 0 84-40 84-86s-38-86-84-86v-170c0-48 38-86 84-86h684c46 0 84 38 84 86v170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"confirmation_number\"\n        ],\n        \"defaultCode\": 58936,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"confirmation_number\",\n        \"id\": 175,\n        \"order\": 186,\n        \"prevSize\": 24,\n        \"code\": 58936,\n        \"name\": \"confirmation_number\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 175\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 512v-256h-340v256h340zM598 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM342 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-852c-46 0-86-40-86-86v-596c0-46 40-86 86-86h852zM896 342l-128 84-128-84v-44l128 86 128-86v44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"contact_mail\"\n        ],\n        \"defaultCode\": 57552,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"contact_mail\",\n        \"id\": 176,\n        \"order\": 187,\n        \"prevSize\": 24,\n        \"code\": 57552,\n        \"name\": \"contact_mail\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 176\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M762 598c-10-26-16-56-16-86s6-60 16-86h70l64-84-84-86c-56 42-98 100-118 170-8 28-12 56-12 86s4 58 12 86c20 68 62 128 118 170l84-86-64-84h-70zM598 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM342 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-852c-46 0-86-40-86-86v-596c0-46 40-86 86-86h852z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"contact_phone\"\n        ],\n        \"defaultCode\": 57551,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"contact_phone\",\n        \"id\": 177,\n        \"order\": 188,\n        \"prevSize\": 24,\n        \"code\": 57551,\n        \"name\": \"contact_phone\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 177\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 726v-64c0-72-142-108-214-108s-214 36-214 108v64h428zM512 288c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM170 1024v-86h684v86h-684zM854 0v86h-684v-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"contacts\"\n        ],\n        \"defaultCode\": 57530,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"contacts\",\n        \"id\": 178,\n        \"order\": 189,\n        \"prevSize\": 24,\n        \"code\": 57530,\n        \"name\": \"contacts\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 178\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 896v-598h-468v598h468zM810 214c46 0 86 38 86 84v598c0 46-40 86-86 86h-468c-46 0-86-40-86-86v-598c0-46 40-84 86-84h468zM682 42v86h-512v598h-84v-598c0-46 38-86 84-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"content_copy\"\n        ],\n        \"defaultCode\": 57677,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"content_copy\",\n        \"id\": 179,\n        \"order\": 190,\n        \"prevSize\": 24,\n        \"code\": 57677,\n        \"name\": \"content_copy\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 179\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 128h128v42l-298 300-86-86zM512 534c12 0 22-10 22-22s-10-22-22-22-22 10-22 22 10 22 22 22zM256 854c46 0 86-38 86-86s-40-86-86-86-86 38-86 86 40 86 86 86zM256 342c46 0 86-38 86-86s-40-86-86-86-86 38-86 86 40 86 86 86zM412 326l526 528v42h-128l-298-298-100 100c10 22 14 44 14 70 0 94-76 170-170 170s-170-76-170-170 76-170 170-170c26 0 48 4 70 14l100-100-100-100c-22 10-44 14-70 14-94 0-170-76-170-170s76-170 170-170 170 76 170 170c0 26-4 48-14 70z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"content_cut\"\n        ],\n        \"defaultCode\": 57678,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"content_cut\",\n        \"id\": 180,\n        \"order\": 191,\n        \"prevSize\": 24,\n        \"code\": 57678,\n        \"name\": \"content_cut\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 180\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 854v-684h-84v128h-428v-128h-84v684h596zM512 86c-24 0-42 18-42 42s18 42 42 42 42-18 42-42-18-42-42-42zM810 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-684c0-46 40-84 86-84h178c18-50 64-86 120-86s102 36 120 86h178z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"content_paste\"\n        ],\n        \"defaultCode\": 57679,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"content_paste\",\n        \"id\": 181,\n        \"order\": 192,\n        \"prevSize\": 24,\n        \"code\": 57679,\n        \"name\": \"content_paste\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 181\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 810c164 0 298-134 298-298s-134-298-298-298-298 134-298 298 134 298 298 298zM640 128c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM86 512c0 120 68 222 170 270v92c-148-52-256-196-256-362s108-310 256-362v92c-102 48-170 150-170 270zM682 342v128h128v84h-128v128h-84v-128h-128v-84h128v-128h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"control_point_duplicate\"\n        ],\n        \"defaultCode\": 58299,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"control_point_duplicate\",\n        \"id\": 182,\n        \"order\": 193,\n        \"prevSize\": 24,\n        \"code\": 58299,\n        \"name\": \"control_point_duplicate\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 182\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM506 390c-61.522 0-80 54.457-80 116v12c0 61.538 18.508 116 80 116 37.558 0 70-22.925 70-60h76c0 39.042-21.138 68.404-44 88-25.786 22.102-55.81 36-102 36-109.169 0-164-72.147-164-180v-12c0-51.712 14.52-98.881 40-128 26.398-30.169 68.684-54 124-54 44.274 0 81.256 15.256 104 38 22.005 22.005 42 55.974 42 98h-76c0-10-2-18-6-26s-8-18-14-24c-10.835-10.835-29.352-20-50-20z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"copyright\"\n        ],\n        \"defaultCode\": 59660,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"copyright\",\n        \"id\": 183,\n        \"order\": 194,\n        \"prevSize\": 24,\n        \"code\": 59660,\n        \"name\": \"copyright2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 183\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M884 300l-78 78-160-160 78-78c16-16 44-16 60 0l100 100c16 16 16 44 0 60zM128 736l472-472 160 160-472 472h-160v-160z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mode_edit\"\n        ],\n        \"defaultCode\": 57940,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"create, edit, mode_edit\",\n        \"id\": 184,\n        \"order\": 195,\n        \"prevSize\": 24,\n        \"code\": 57940,\n        \"name\": \"mode_edit\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 184\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM854 256c48 0 84 38 84 86v426c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h256l86 86h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"create_new_folder\"\n        ],\n        \"defaultCode\": 58060,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"create_new_folder\",\n        \"id\": 185,\n        \"order\": 196,\n        \"prevSize\": 24,\n        \"code\": 58060,\n        \"name\": \"create_new_folder\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 185\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 342v-86h-684v86h684zM854 768v-256h-684v256h684zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"payment\"\n        ],\n        \"defaultCode\": 59553,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"credit_card, payment\",\n        \"id\": 186,\n        \"order\": 197,\n        \"prevSize\": 24,\n        \"code\": 59553,\n        \"name\": \"payment\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 186\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 726h684v84h-172v172h-84v-172h-428c-46 0-84-38-84-84v-428h-172v-84h172v-172h84v684zM726 640v-342h-342v-84h342c46 0 84 38 84 84v342h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop\"\n        ],\n        \"defaultCode\": 58302,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop\",\n        \"id\": 187,\n        \"order\": 198,\n        \"prevSize\": 24,\n        \"code\": 58302,\n        \"name\": \"crop2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 187\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 682v-340h-596v340h596zM810 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-340c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_16_9\"\n        ],\n        \"defaultCode\": 58300,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_16_9\",\n        \"id\": 188,\n        \"order\": 199,\n        \"prevSize\": 24,\n        \"code\": 58300,\n        \"name\": \"crop_16_9\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 188\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 768v-512h-596v512h596zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-512c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_3_2\"\n        ],\n        \"defaultCode\": 58301,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_3_2\",\n        \"id\": 189,\n        \"order\": 200,\n        \"prevSize\": 24,\n        \"code\": 58301,\n        \"name\": \"crop_3_2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 189\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 726v-428h-596v428h596zM810 214c46 0 86 38 86 84v428c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-428c0-46 40-84 86-84h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_landscape\"\n        ],\n        \"defaultCode\": 58307,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_5_4, crop_landscape\",\n        \"id\": 190,\n        \"order\": 201,\n        \"prevSize\": 24,\n        \"code\": 58307,\n        \"name\": \"crop_landscape\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 190\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 640v-256h-596v256h596zM810 298c46 0 86 40 86 86v256c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-256c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_7_5\"\n        ],\n        \"defaultCode\": 58304,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_7_5\",\n        \"id\": 191,\n        \"order\": 202,\n        \"prevSize\": 24,\n        \"code\": 58304,\n        \"name\": \"crop_7_5\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 191\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_din\"\n        ],\n        \"defaultCode\": 58305,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_din\",\n        \"id\": 192,\n        \"order\": 203,\n        \"prevSize\": 24,\n        \"code\": 58305,\n        \"name\": \"crop_din\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 192\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86zM128 214c0-46 40-86 86-86h170v86h-170v170h-86v-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_free\"\n        ],\n        \"defaultCode\": 58306,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_free\",\n        \"id\": 193,\n        \"order\": 204,\n        \"prevSize\": 24,\n        \"code\": 58306,\n        \"name\": \"crop_free\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 193\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M596 524l150 202h-468l116-152 84 102zM810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_original\"\n        ],\n        \"defaultCode\": 58308,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_original\",\n        \"id\": 194,\n        \"order\": 205,\n        \"prevSize\": 24,\n        \"code\": 58308,\n        \"name\": \"crop_original\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 194\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 810v-596h-428v596h428zM726 128c46 0 84 40 84 86v596c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-596c0-46 38-86 84-86h428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_portrait\"\n        ],\n        \"defaultCode\": 58309,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_portrait\",\n        \"id\": 195,\n        \"order\": 206,\n        \"prevSize\": 24,\n        \"code\": 58309,\n        \"name\": \"crop_portrait\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 195\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 682h512v86h-86v86h-86v-86h-340c-48 0-86-40-86-86v-340h-86v-86h86v-86h86v512zM682 598v-256h-256v-86h256c46 0 86 38 86 86v256h-86zM514 0c268 0 488 208 510 470h-64c-16-160-114-296-254-362l-58 56-162-162c10 0 18-2 28-2zM318 916l58-56 162 162c-10 0-18 2-28 2-268 0-488-208-510-470h64c16 160 114 296 254 362z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_rotate\"\n        ],\n        \"defaultCode\": 58423,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_rotate\",\n        \"id\": 196,\n        \"order\": 207,\n        \"prevSize\": 24,\n        \"code\": 58423,\n        \"name\": \"crop_rotate\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 196\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 768v-512h-512v512h512zM768 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-512c-46 0-86-40-86-86v-512c0-46 40-86 86-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"crop_square\"\n        ],\n        \"defaultCode\": 58310,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"crop_square\",\n        \"id\": 197,\n        \"order\": 208,\n        \"prevSize\": 24,\n        \"code\": 58310,\n        \"name\": \"crop_square\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 197\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 128h342v256h-342v-256zM554 896v-426h342v426h-342zM128 896v-256h342v256h-342zM128 554v-426h342v426h-342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dashboard\"\n        ],\n        \"defaultCode\": 59505,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"dashboard\",\n        \"id\": 198,\n        \"order\": 209,\n        \"prevSize\": 24,\n        \"code\": 59505,\n        \"name\": \"dashboard2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 198\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 810c94 0 178-44 232-112l112 66c-78 106-202 174-344 174-236 0-426-190-426-426 0-222 168-402 384-424v128c-144 20-256 146-256 296 0 166 132 298 298 298zM554 88c216 22 384 202 384 424 0 62-12 122-36 174l-112-66c12-34 20-70 20-108 0-150-112-276-256-296v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"data_usage\"\n        ],\n        \"defaultCode\": 57775,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"data_usage\",\n        \"id\": 199,\n        \"order\": 210,\n        \"prevSize\": 24,\n        \"code\": 57775,\n        \"name\": \"data_usage\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 199\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 854v-470h-596v470h596zM810 170c46 0 86 40 86 86v598c0 46-40 84-86 84h-596c-48 0-86-38-86-84v-598c0-46 38-86 86-86h42v-84h86v84h340v-84h86v84h42zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM384 470v84h-86v-84h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"date_range\"\n        ],\n        \"defaultCode\": 59670,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"date_range\",\n        \"id\": 200,\n        \"order\": 211,\n        \"prevSize\": 24,\n        \"code\": 59670,\n        \"name\": \"date_range\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 200\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 234h852v86h-852v-86zM86 448h852v86h-852v-86zM86 662h852v84h-852v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dehaze\"\n        ],\n        \"defaultCode\": 58311,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"dehaze\",\n        \"id\": 201,\n        \"order\": 212,\n        \"prevSize\": 24,\n        \"code\": 58311,\n        \"name\": \"dehaze\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 201\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 170v86h-596v-86h148l44-42h212l44 42h148zM256 810v-512h512v512c0 46-40 86-86 86h-340c-46 0-86-40-86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"delete\"\n        ],\n        \"defaultCode\": 59506,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"delete\",\n        \"id\": 202,\n        \"order\": 213,\n        \"prevSize\": 24,\n        \"code\": 59506,\n        \"name\": \"delete\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 202\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M662 170h148v86h-596v-86h148l44-42h212zM360 506l92 92-90 90 60 60 90-90 90 90 60-60-90-90 90-92-60-60-90 92-90-92zM256 810v-512h512v512c0 46-40 86-86 86h-340c-46 0-86-40-86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"delete_forever\"\n        ],\n        \"defaultCode\": 59691,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"delete_forever\",\n        \"id\": 203,\n        \"order\": 214,\n        \"prevSize\": 24,\n        \"code\": 59691,\n        \"name\": \"delete_forever\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 203\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 214v84h-512v-84h128l42-44h170l44 44h128zM128 768v-426h426v426c0 46-38 86-84 86h-256c-46 0-86-40-86-86zM640 512h256v86h-256v-86zM640 342h298v84h-298v-84zM640 682h170v86h-170v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"delete_sweep\"\n        ],\n        \"defaultCode\": 57708,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"delete_sweep\",\n        \"id\": 204,\n        \"order\": 215,\n        \"prevSize\": 24,\n        \"code\": 57708,\n        \"name\": \"delete_sweep\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 204\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 384h236l-236-234v234zM682 598v-86h-340v86h340zM682 768v-86h-340v86h340zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"description\"\n        ],\n        \"defaultCode\": 59507,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"description\",\n        \"id\": 205,\n        \"order\": 216,\n        \"prevSize\": 24,\n        \"code\": 59507,\n        \"name\": \"description\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 205\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 598v-428h-768v428h768zM896 86c46 0 86 38 86 84v512c0 46-40 86-86 86h-298l84 128v42h-340v-42l84-128h-298c-46 0-86-40-86-86v-512c0-46 40-84 86-84h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"desktop_mac\"\n        ],\n        \"defaultCode\": 58123,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"desktop_mac\",\n        \"id\": 206,\n        \"order\": 217,\n        \"prevSize\": 24,\n        \"code\": 58123,\n        \"name\": \"desktop_mac\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 206\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 682v-512h-768v512h768zM896 86c46 0 86 38 86 84v512c0 46-40 86-86 86h-298v86h84v84h-340v-84h84v-86h-298c-46 0-86-40-86-86v-512c0-46 40-84 86-84h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"desktop_windows\"\n        ],\n        \"defaultCode\": 58124,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"desktop_windows\",\n        \"id\": 207,\n        \"order\": 218,\n        \"prevSize\": 24,\n        \"code\": 58124,\n        \"name\": \"desktop_windows\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 207\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M272 256l240 426 240-426h-480zM128 170h768l-384 684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"details\"\n        ],\n        \"defaultCode\": 58312,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"details\",\n        \"id\": 208,\n        \"order\": 219,\n        \"prevSize\": 24,\n        \"code\": 58312,\n        \"name\": \"details\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 208\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 470h170v256h-170v-256zM256 298h214v214h-214v-214zM512 298h170v128h-170v-128zM256 554h214v172h-214v-172zM768 810v-596h-598v596h598zM938 384h-84v86h84v84h-84v86h84v86h-84v84c0 46-40 86-86 86h-598c-46 0-84-40-84-86v-596c0-46 38-86 84-86h598c46 0 86 40 86 86v84h84v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"developer_board\"\n        ],\n        \"defaultCode\": 58125,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"developer_board\",\n        \"id\": 209,\n        \"order\": 220,\n        \"prevSize\": 24,\n        \"code\": 58125,\n        \"name\": \"developer_board\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 209\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 810v-84h84v170c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-170h84v84h428zM426 648l-60 60-196-196 196-196 60 60-134 136zM658 708l-60-60 134-136-134-136 60-60 196 196zM298 214v84h-84v-170c0-46 38-86 84-86l428 2c46 0 84 38 84 84v170h-84v-84h-428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"developer_mode\"\n        ],\n        \"defaultCode\": 57776,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"developer_mode\",\n        \"id\": 210,\n        \"order\": 221,\n        \"prevSize\": 24,\n        \"code\": 57776,\n        \"name\": \"developer_mode\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 210\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 682h170v214h-214v-130l-170-180-170 180v130h-214v-214h170l172-170v-136c-50-18-86-64-86-120 0-70 58-128 128-128s128 58 128 128c0 56-36 102-86 120v136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"device_hub\"\n        ],\n        \"defaultCode\": 58165,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"device_hub\",\n        \"id\": 211,\n        \"order\": 222,\n        \"prevSize\": 24,\n        \"code\": 58165,\n        \"name\": \"device_hub\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 211\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 726v-300h-170v300h170zM982 342c24 0 42 18 42 42v426c0 24-18 44-42 44h-256c-24 0-44-20-44-44v-426c0-24 20-42 44-42h256zM170 256v470h428v128h-598v-128h86v-470c0-46 38-86 84-86h768v86h-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phonelink\"\n        ],\n        \"defaultCode\": 58150,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"devices, phonelink\",\n        \"id\": 212,\n        \"order\": 223,\n        \"prevSize\": 24,\n        \"code\": 58150,\n        \"name\": \"phonelink\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 212\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 768v-342h-170v342h170zM938 342c22 0 44 20 44 42v426c0 22-22 44-44 44h-256c-22 0-42-22-42-44v-426c0-22 20-42 42-42h256zM470 746c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 512v76c26 24 44 56 44 94s-18 72-44 96v76h-170v-76c-26-24-42-58-42-96s16-70 42-94v-76h170zM128 256v512h170v86h-170c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768v86h-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"devices_other\"\n        ],\n        \"defaultCode\": 58167,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"devices_other\",\n        \"id\": 213,\n        \"order\": 224,\n        \"prevSize\": 24,\n        \"code\": 58167,\n        \"name\": \"devices_other\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 213\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM854 214v-44h-44v44h44zM768 128h128v128h-86v86h-42v-214zM640 214v128h-128v-44h86v-42h-86v-128h128v42h-86v44h86zM726 128v214h-44v-214h44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dialer_sip\"\n        ],\n        \"defaultCode\": 57531,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"dialer_sip\",\n        \"id\": 214,\n        \"order\": 225,\n        \"prevSize\": 24,\n        \"code\": 57531,\n        \"name\": \"dialer_sip\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 214\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 214c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86zM256 554c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 298c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 810c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dialpad\"\n        ],\n        \"defaultCode\": 57532,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"dialpad\",\n        \"id\": 215,\n        \"order\": 226,\n        \"prevSize\": 24,\n        \"code\": 57532,\n        \"name\": \"dialpad\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 215\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 618l148-148-148-150v106h-214c-24 0-42 20-42 44v170h84v-128h172v106zM926 482c16 18 16 44 0 60l-384 384c-16 16-44 16-60 0l-384-384c-16-16-16-44 0-60l384-384c16-16 44-16 60 0z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions\"\n        ],\n        \"defaultCode\": 58670,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions\",\n        \"id\": 216,\n        \"order\": 227,\n        \"prevSize\": 24,\n        \"code\": 58670,\n        \"name\": \"directions\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 216\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 874c82 0 150-66 150-148s-68-150-150-150-148 68-148 150 66 148 148 148zM810 512c120 0 214 94 214 214s-94 212-214 212-212-92-212-212 92-214 212-214zM460 448l94 98v264h-84v-212l-138-120c-18-12-24-34-24-60 0-22 6-42 24-60l120-120c12-18 34-24 60-24s46 6 68 24l82 82c38 38 88 64 152 64v86c-90 0-160-34-216-90l-34-34zM214 874c82 0 148-66 148-148s-66-150-148-150-150 68-150 150 68 148 150 148zM214 512c120 0 212 94 212 214s-92 212-212 212-214-92-214-212 94-214 214-214zM662 234c-46 0-86-38-86-84s40-86 86-86 84 40 84 86-38 84-84 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions_bike\"\n        ],\n        \"defaultCode\": 58671,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions_bike\",\n        \"id\": 217,\n        \"order\": 228,\n        \"prevSize\": 24,\n        \"code\": 58671,\n        \"name\": \"directions_bike\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 217\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 256v170l256-84 256 84v-170h-512zM168 810l-80-284c-9.564-28.693 7.98-47.327 28-54l54-18v-198c0-46 40-86 86-86h128v-128h256v128h128c46 0 86 40 86 86v198l54 18c20.040 6.68 37.574 25.277 28 54l-80 284h-2c-68 0-130-36-172-84-42 48-102 84-170 84s-128-36-170-84c-42 48-104 84-172 84h-2zM854 896h84v86h-84c-58 0-118-14-172-42-108 56-232 56-340 0-54 28-114 42-172 42h-84v-86h84c60 0 120-20 172-56 104 72 236 72 340 0 52 36 112 56 172 56z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions_boat\"\n        ],\n        \"defaultCode\": 58674,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions_boat\",\n        \"id\": 218,\n        \"order\": 229,\n        \"prevSize\": 24,\n        \"code\": 58674,\n        \"name\": \"directions_boat\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 218\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 470v-214h-512v214h512zM704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM170 682v-426c0-150 154-170 342-170s342 20 342 170v426c0 38-18 72-44 96v76c0 24-18 42-42 42h-42c-24 0-44-18-44-42v-44h-340v44c0 24-20 42-44 42h-42c-24 0-42-18-42-42v-76c-26-24-44-58-44-96z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions_bus\"\n        ],\n        \"defaultCode\": 58672,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions_bus\",\n        \"id\": 219,\n        \"order\": 230,\n        \"prevSize\": 24,\n        \"code\": 58672,\n        \"name\": \"directions_bus\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 219\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 470h596l-64-192h-468zM746 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 256l88 256v342c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-44h-512v44c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-342l88-256c8-26 34-42 62-42h468c28 0 54 16 62 42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions_car\"\n        ],\n        \"defaultCode\": 58673,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions_car\",\n        \"id\": 220,\n        \"order\": 231,\n        \"prevSize\": 24,\n        \"code\": 58673,\n        \"name\": \"directions_car\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 220\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 426v-212h-512v212h512zM512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM170 662v-448c0-150 154-172 342-172s342 22 342 172v448c0 82-68 148-150 148l64 64v22h-512v-22l64-64c-82 0-150-66-150-148z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions_railway\"\n        ],\n        \"defaultCode\": 58676,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions_railway\",\n        \"id\": 221,\n        \"order\": 232,\n        \"prevSize\": 24,\n        \"code\": 58676,\n        \"name\": \"directions_railway\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 221\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M422 826l-298-58 16-86 210 42 68-346-78 30v146h-84v-200l222-94c12 0 22-4 34-4 30 0 54 16 72 42l42 68c34 60 102 102 184 102v86c-94 0-178-42-234-106l-26 128 90 84v320h-86v-256l-90-84zM576 234c-46 0-86-40-86-86s40-84 86-84 84 38 84 84-38 86-84 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions_run\"\n        ],\n        \"defaultCode\": 58726,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions_run\",\n        \"id\": 222,\n        \"order\": 233,\n        \"prevSize\": 24,\n        \"code\": 58726,\n        \"name\": \"directions_run\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 222\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 470v-214h-214v214h214zM704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM470 470v-214h-214v214h214zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 86c188 0 342 20 342 170v406c0 82-68 148-150 148l64 64v22h-512v-22l64-64c-82 0-150-66-150-148v-406c0-150 154-170 342-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions_transit\"\n        ],\n        \"defaultCode\": 58677,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions_subway, directions_transit\",\n        \"id\": 223,\n        \"order\": 234,\n        \"prevSize\": 24,\n        \"code\": 58677,\n        \"name\": \"directions_transit\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 223\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M418 380l-120 602h90l78-342 88 86v256h86v-320l-90-86 26-128c56 64 140 106 234 106v-84c-82 0-148-44-182-104l-44-68c-18-26-42-42-72-42-12 0-22 4-34 4l-222 94v200h86v-144l76-30zM576 234c-46 0-86-38-86-84s40-86 86-86 86 40 86 86-40 84-86 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"directions_walk\"\n        ],\n        \"defaultCode\": 58678,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"directions_walk\",\n        \"id\": 224,\n        \"order\": 235,\n        \"prevSize\": 24,\n        \"code\": 58678,\n        \"name\": \"directions_walk\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 224\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 598c46 0 86-40 86-86s-40-86-86-86-84 40-84 86 38 86 84 86zM426 170c188 0 342 154 342 342s-154 342-342 342-340-154-340-342 152-342 340-342zM854 298h84v214h-84v-214zM854 682v-84h84v84h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"disc_full\"\n        ],\n        \"defaultCode\": 58896,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"disc_full\",\n        \"id\": 225,\n        \"order\": 236,\n        \"prevSize\": 24,\n        \"code\": 58896,\n        \"name\": \"disc_full\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 225\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 384c46 0 86-40 86-86s-40-84-86-84-84 38-84 84 38 86 84 86zM854 128c24 0 42 18 42 42v256c0 24-18 44-42 44h-684c-24 0-42-20-42-44v-256c0-24 18-42 42-42h684zM298 810c46 0 86-38 86-84s-40-86-86-86-84 40-84 86 38 84 84 84zM854 554c24 0 42 20 42 44v256c0 24-18 42-42 42h-684c-24 0-42-18-42-42v-256c0-24 18-44 42-44h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dns\"\n        ],\n        \"defaultCode\": 59509,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"dns\",\n        \"id\": 226,\n        \"order\": 237,\n        \"prevSize\": 24,\n        \"code\": 59509,\n        \"name\": \"dns\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 226\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M782 722c46-58 72-132 72-210 0-188-154-342-342-342-78 0-152 26-210 72zM512 854c78 0 152-26 210-72l-480-480c-46 58-72 132-72 210 0 188 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"not_interested\"\n        ],\n        \"defaultCode\": 57395,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"do_not_disturb, not_interested\",\n        \"id\": 227,\n        \"order\": 238,\n        \"prevSize\": 24,\n        \"code\": 57395,\n        \"name\": \"not_interested\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 227\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342 0-76-28-150-74-210l-478 478c60 46 134 74 210 74zM170 512c0 76 28 150 74 210l478-478c-60-46-134-74-210-74-188 0-342 154-342 342zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"do_not_disturb_alt\"\n        ],\n        \"defaultCode\": 58897,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"do_not_disturb_alt\",\n        \"id\": 228,\n        \"order\": 239,\n        \"prevSize\": 24,\n        \"code\": 58897,\n        \"name\": \"do_not_disturb_alt\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 228\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 554h148l-86-84h-62v84zM96 96l832 832-56 54-118-120c-68 48-152 76-242 76-236 0-426-190-426-426 0-90 28-174 76-242l-120-118zM726 470h-148l-308-308c68-48 152-76 242-76 236 0 426 190 426 426 0 90-28 174-76 242l-198-200h62v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"do_not_disturb_off\"\n        ],\n        \"defaultCode\": 58947,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"do_not_disturb_off\",\n        \"id\": 229,\n        \"order\": 240,\n        \"prevSize\": 24,\n        \"code\": 58947,\n        \"name\": \"do_not_disturb_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 229\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554v-84h-428v84h428zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"remove_circle\"\n        ],\n        \"defaultCode\": 57692,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"do_not_disturb_on, remove_circle\",\n        \"id\": 230,\n        \"order\": 241,\n        \"prevSize\": 24,\n        \"code\": 57692,\n        \"name\": \"remove_circle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 230\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 640v-426h-340v426h340zM682 44c46 0 86 38 86 84v598c0 46-40 84-86 84h-340c-46 0-86-38-86-84v-598c0-46 40-86 86-86zM342 982v-86h340v86h-340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dock\"\n        ],\n        \"defaultCode\": 58126,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"dock\",\n        \"id\": 231,\n        \"order\": 242,\n        \"prevSize\": 24,\n        \"code\": 58126,\n        \"name\": \"dock\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 231\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 692l452-454 60 60-512 512-238-238 58-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"done\"\n        ],\n        \"defaultCode\": 59510,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"done\",\n        \"id\": 232,\n        \"order\": 243,\n        \"prevSize\": 24,\n        \"code\": 59510,\n        \"name\": \"done\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 232\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M18 572l60-60 238 238-60 60zM948 238l62 60-512 512-240-238 62-60 178 178zM768 298l-270 272-60-60 270-272z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"done_all\"\n        ],\n        \"defaultCode\": 59511,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"done_all\",\n        \"id\": 233,\n        \"order\": 244,\n        \"prevSize\": 24,\n        \"code\": 59511,\n        \"name\": \"done_all\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 233\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 808c128-18 238-126 256-254h128c-20 214-170 364-384 384v-130zM810 470c-18-128-128-236-256-254v-130c214 20 364 170 384 384h-128zM470 216c-128 20-256 146-256 296s128 276 256 296v130c-214-22-384-204-384-426s170-404 384-426v130z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"donut_large\"\n        ],\n        \"defaultCode\": 59671,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"donut_large\",\n        \"id\": 234,\n        \"order\": 245,\n        \"prevSize\": 24,\n        \"code\": 59671,\n        \"name\": \"donut_large\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 234\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 634c42-12 66-44 80-80h304c-20 202-170 364-384 384v-304zM634 470c-14-36-38-68-80-80v-304c214 20 364 182 384 384h-304zM470 390c-42 18-86 66-86 122s44 104 86 122v304c-214-22-384-204-384-426s170-404 384-426v304z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"donut_small\"\n        ],\n        \"defaultCode\": 59672,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"donut_small\",\n        \"id\": 235,\n        \"order\": 246,\n        \"prevSize\": 24,\n        \"code\": 59672,\n        \"name\": \"donut_small\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 235\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 554l352-220-352-206-352 206zM938 342v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-426c0-30 16-60 40-74l386-226 386 226c24 14 40 44 40 74z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"drafts\"\n        ],\n        \"defaultCode\": 57681,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"drafts\",\n        \"id\": 236,\n        \"order\": 247,\n        \"prevSize\": 24,\n        \"code\": 57681,\n        \"name\": \"drafts\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 236\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 640v-86h684v86h-684zM854 384v86h-684v-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"drag_handle\"\n        ],\n        \"defaultCode\": 57949,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"drag_handle\",\n        \"id\": 237,\n        \"order\": 248,\n        \"prevSize\": 24,\n        \"code\": 57949,\n        \"name\": \"drag_handle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 237\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 426h596l-64-192h-468zM746 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 214l88 256v340c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-42h-512v42c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-340l88-256c8-26 34-44 62-44h468c28 0 54 18 62 44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"time_to_leave\"\n        ],\n        \"defaultCode\": 58924,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"drive_eta, time_to_leave\",\n        \"id\": 238,\n        \"order\": 249,\n        \"prevSize\": 24,\n        \"code\": 58924,\n        \"name\": \"time_to_leave\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 238\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 512v86h-84v-86h84zM298 342v84h-84v-84h84zM810 512v86h-468v-86h468zM810 342v84h-468v-84h468zM896 726v-512h-768v512h768zM896 128c46 0 86 40 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"dvr\"\n        ],\n        \"defaultCode\": 57778,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"dvr\",\n        \"id\": 239,\n        \"order\": 250,\n        \"prevSize\": 24,\n        \"code\": 57778,\n        \"name\": \"dvr\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 239\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M636 322c6-6 6-16 0-22l-40-40c-6-6-16-6-22 0l-30 30 62 62zM446 512l142-142-62-62-142 142v62h62zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"edit_location\"\n        ],\n        \"defaultCode\": 58728,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"edit_location\",\n        \"id\": 240,\n        \"order\": 251,\n        \"prevSize\": 24,\n        \"code\": 58728,\n        \"name\": \"edit_location\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 240\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 214l284 426h-568zM214 726h596v84h-596v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"eject\"\n        ],\n        \"defaultCode\": 59643,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"eject\",\n        \"id\": 241,\n        \"order\": 252,\n        \"prevSize\": 24,\n        \"code\": 59643,\n        \"name\": \"eject2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 241\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 342v-86l-342 214-342-214v86l342 212zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"markunread\"\n        ],\n        \"defaultCode\": 57689,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"email, local_post_office, mail, markunread\",\n        \"id\": 242,\n        \"order\": 253,\n        \"prevSize\": 24,\n        \"code\": 57689,\n        \"name\": \"markunread\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 242\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM380 256v86h264v-86c0-72-60-132-132-132s-132 60-132 132zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"enhanced_encryption\"\n        ],\n        \"defaultCode\": 58943,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"enhanced_encryption\",\n        \"id\": 243,\n        \"order\": 254,\n        \"prevSize\": 24,\n        \"code\": 58943,\n        \"name\": \"enhanced_encryption\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 243\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 384h172v470h-172v-470zM170 854v-342h172v342h-172zM426 854v-684h172v684h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"equalizer\"\n        ],\n        \"defaultCode\": 57373,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"equalizer\",\n        \"id\": 244,\n        \"order\": 255,\n        \"prevSize\": 24,\n        \"code\": 57373,\n        \"name\": \"equalizer\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 244\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"error\"\n        ],\n        \"defaultCode\": 57344,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"error\",\n        \"id\": 245,\n        \"order\": 256,\n        \"prevSize\": 24,\n        \"code\": 57344,\n        \"name\": \"error\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 245\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 298h84v256h-84v-256zM470 640h84v86h-84v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"error_outline\"\n        ],\n        \"defaultCode\": 57345,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"error_outline\",\n        \"id\": 246,\n        \"order\": 257,\n        \"prevSize\": 24,\n        \"code\": 57345,\n        \"name\": \"error_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 246\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 790c70 0 132-26 180-68l76 76c-68 62-158 98-256 98-168 0-310-108-362-256h-150v-86h130c-2-14-2-28-2-42s0-28 2-42h-130v-86h150c52-148 194-256 362-256 98 0 188 36 256 98l-76 76c-48-42-112-68-180-68-106 0-200 62-246 150h246v86h-274c-2 14-4 28-4 42s2 28 4 42h274v86h-246c46 88 138 150 246 150z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"euro_symbol\"\n        ],\n        \"defaultCode\": 59686,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"euro_symbol\",\n        \"id\": 247,\n        \"order\": 258,\n        \"prevSize\": 24,\n        \"code\": 59686,\n        \"name\": \"euro_symbol\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 247\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 768l170-298h-86v-214l-170 320h86v192zM768 426c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM844 308c20 20 30 46 30 76v406c0 58-48 106-106 106s-106-48-106-106v-214h-64v320h-428v-682c0-46 40-86 86-86h256c46 0 86 40 86 86v298h42c46 0 86 40 86 86v192c0 24 18 42 42 42s42-18 42-42v-308c-14 6-26 8-42 8-58 0-106-48-106-106 0-46 28-84 68-100l-90-90 46-44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ev_station\"\n        ],\n        \"defaultCode\": 58733,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"ev_station\",\n        \"id\": 248,\n        \"order\": 259,\n        \"prevSize\": 24,\n        \"code\": 58733,\n        \"name\": \"ev_station\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 248\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-468h-596v468h596zM682 42h86v86h42c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86zM726 512v214h-214v-214h214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"insert_invitation\"\n        ],\n        \"defaultCode\": 57935,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"event, insert_invitation\",\n        \"id\": 249,\n        \"order\": 260,\n        \"prevSize\": 24,\n        \"code\": 57935,\n        \"name\": \"insert_invitation\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 249\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM706 472l-254 254-136-136 46-46 90 90 208-208z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"event_available\"\n        ],\n        \"defaultCode\": 58900,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"event_available\",\n        \"id\": 250,\n        \"order\": 261,\n        \"prevSize\": 24,\n        \"code\": 58900,\n        \"name\": \"event_available\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 250\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM398 726l-46-46 104-104-104-104 46-46 104 104 104-104 44 46-104 104 104 104-44 46-104-104z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"event_busy\"\n        ],\n        \"defaultCode\": 58901,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"event_busy\",\n        \"id\": 251,\n        \"order\": 262,\n        \"prevSize\": 24,\n        \"code\": 58901,\n        \"name\": \"event_busy\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 251\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 598v84h-300v-84h300zM810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42zM726 426v86h-428v-86h428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"event_note\"\n        ],\n        \"defaultCode\": 58902,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"event_note\",\n        \"id\": 252,\n        \"order\": 263,\n        \"prevSize\": 24,\n        \"code\": 58902,\n        \"name\": \"event_note\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 252\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554h-428v-340c0-46 40-86 86-86h256c46 0 86 40 86 86v340zM86 426h128v128h-128v-128zM810 426h128v128h-128v-128zM170 896v-256h684v256h-128v-128h-428v128h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"event_seat\"\n        ],\n        \"defaultCode\": 59651,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"event_seat\",\n        \"id\": 253,\n        \"order\": 264,\n        \"prevSize\": 24,\n        \"code\": 59651,\n        \"name\": \"event_seat\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 253\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-170h86v170h596v-596h-596v170h-86v-170c0-46 38-86 86-86h596zM430 666l110-112h-412v-84h412l-110-112 60-60 214 214-214 214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exit_to_app\"\n        ],\n        \"defaultCode\": 59513,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"exit_to_app\",\n        \"id\": 254,\n        \"order\": 265,\n        \"prevSize\": 24,\n        \"code\": 59513,\n        \"name\": \"exit_to_app\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 254\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 342l256 256-60 60-196-196-196 196-60-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"expand_less\"\n        ],\n        \"defaultCode\": 58830,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"expand_less\",\n        \"id\": 255,\n        \"order\": 266,\n        \"prevSize\": 24,\n        \"code\": 58830,\n        \"name\": \"expand_less\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 255\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M708 366l60 60-256 256-256-256 60-60 196 196z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"expand_more\"\n        ],\n        \"defaultCode\": 58831,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"expand_more\",\n        \"id\": 256,\n        \"order\": 267,\n        \"prevSize\": 24,\n        \"code\": 58831,\n        \"name\": \"expand_more\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 256\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 384v-86h-256v428h256v-86h-170v-86h170v-84h-170v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"explicit\"\n        ],\n        \"defaultCode\": 57374,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"explicit\",\n        \"id\": 257,\n        \"order\": 268,\n        \"prevSize\": 24,\n        \"code\": 57374,\n        \"name\": \"explicit\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 257\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M606 606l162-350-350 162-162 350zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM512 466c26 0 46 20 46 46s-20 46-46 46-46-20-46-46 20-46 46-46z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"explore\"\n        ],\n        \"defaultCode\": 59514,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"explore\",\n        \"id\": 258,\n        \"order\": 269,\n        \"prevSize\": 24,\n        \"code\": 59514,\n        \"name\": \"explore\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 258\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 854v-684l-684 684h684zM214 214v84h256v-84h-256zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684zM640 726h-86v-86h86v-86h86v86h84v86h-84v84h-86v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exposure\"\n        ],\n        \"defaultCode\": 58314,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"exposure\",\n        \"id\": 259,\n        \"order\": 270,\n        \"prevSize\": 24,\n        \"code\": 58314,\n        \"name\": \"exposure\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 259\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 768h-84v-454l-128 44v-72l200-72h12v554zM170 470h342v84h-342v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exposure_neg_1\"\n        ],\n        \"defaultCode\": 58315,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"exposure_neg_1\",\n        \"id\": 260,\n        \"order\": 271,\n        \"prevSize\": 24,\n        \"code\": 58315,\n        \"name\": \"exposure_neg_1\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 260\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 470h340v84h-340v-84zM702 214c103.361 0 172 46.875 172 150 0 16-2 34-8 50s-12 34-22 50c-21.913 35.061-50.22 70.22-80 100l-122 132h254v72h-368v-64l178-194c27.051-27.051 44.466-50.776 62-80 10.155-16.925 14-31.054 14-56 0-12 0-26-4-36-11.918-29.795-34.301-52-76-52-60.876 0-92 36.935-92 98h-92c0-51.336 20.69-92.69 48-120 31.385-31.385 73.692-50 136-50z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exposure_neg_2\"\n        ],\n        \"defaultCode\": 58316,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"exposure_neg_2\",\n        \"id\": 261,\n        \"order\": 272,\n        \"prevSize\": 24,\n        \"code\": 58316,\n        \"name\": \"exposure_neg_2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 261\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 768h-86v-454l-128 44v-72l200-72h14v554zM426 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exposure_plus_1\"\n        ],\n        \"defaultCode\": 58317,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"exposure_plus_1\",\n        \"id\": 262,\n        \"order\": 273,\n        \"prevSize\": 24,\n        \"code\": 58317,\n        \"name\": \"exposure_plus_1\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 262\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 298v172h170v84h-170v172h-86v-172h-170v-84h170v-172h86zM684 696h254v72h-368v-64l178-194c27.051-27.051 44.466-50.776 62-80 9.657-16.095 16-33.377 16-56 0-27.976-9.972-45.963-22-62-12.776-17.035-30.076-26-60-26-30.802 0-54.673 12.673-70 28-13.992 13.992-22 43.42-22 70h-92c0-51.336 20.69-92.69 48-120 16-16 34-30 58-38s50-12 80-12c28 0 50 4 72 10 20 8 40 16 54 30 26.805 22.976 46 61.985 46 110 0 40.444-14.717 72.348-32 100-10 16-20 34-34 50s-30 34-46 50z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exposure_plus_2\"\n        ],\n        \"defaultCode\": 58318,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"exposure_plus_2\",\n        \"id\": 263,\n        \"order\": 274,\n        \"prevSize\": 24,\n        \"code\": 58318,\n        \"name\": \"exposure_plus_2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 263\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 432c0-51.604-2.887-85.33-22-114-8-12-18-18-28-24s-22-8-36-8-26 2-36 8-20 12-28 24c-19.070 28.606-22 62.453-22 114v114c0 68.64 9.322 117.593 50 142 10 6 22 8 36 8 33.536 0 49.61-12.416 64-34 17.74-26.61 24-68.817 24-116v-114h-2zM336 446c0-137.059 42.756-232 176-232 93.018 0 143.69 47.837 164 124 8 30 14 64 14 108v88h-2c0 79.48-15.373 138.051-48 180-16 18-34 34-56 42s-46 12-72 12-50-4-72-12-40-24-56-42c-34.893-39.254-48-102.511-48-180v-88z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"exposure_zero\"\n        ],\n        \"defaultCode\": 58319,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"exposure_zero\",\n        \"id\": 264,\n        \"order\": 275,\n        \"prevSize\": 24,\n        \"code\": 58319,\n        \"name\": \"exposure_zero\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 264\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M874 470c58 0 108 48 108 106s-50 106-108 106h-64v172c0 46-38 84-84 84h-162v-64c0-64-52-114-116-114s-116 50-116 114v64h-162c-46 0-84-38-84-84v-162h64c64 0 114-52 114-116s-50-116-114-116h-64v-162c0-46 38-84 84-84h172v-64c0-58 48-108 106-108s106 50 106 108v64h172c46 0 84 38 84 84v172h64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"extension\"\n        ],\n        \"defaultCode\": 59515,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"extension\",\n        \"id\": 265,\n        \"order\": 276,\n        \"prevSize\": 24,\n        \"code\": 59515,\n        \"name\": \"extension\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 265\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342 0-34-6-66-14-96-30 8-62 10-96 10-144 0-270-70-348-180-42 102-124 186-224 230-2 12-2 24-2 36 0 188 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM640 502c30 0 54 22 54 52s-24 54-54 54-54-24-54-54 24-52 54-52zM384 502c30 0 54 22 54 52s-24 54-54 54-54-24-54-54 24-52 54-52z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"face\"\n        ],\n        \"defaultCode\": 59516,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"face\",\n        \"id\": 266,\n        \"order\": 277,\n        \"prevSize\": 24,\n        \"code\": 59516,\n        \"name\": \"face\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 266\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 256l364 256-364 256v-512zM170 768v-512l364 256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fast_forward\"\n        ],\n        \"defaultCode\": 57375,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fast_forward\",\n        \"id\": 267,\n        \"order\": 278,\n        \"prevSize\": 24,\n        \"code\": 57375,\n        \"name\": \"fast_forward\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 267\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M490 512l364-256v512zM470 768l-364-256 364-256v512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fast_rewind\"\n        ],\n        \"defaultCode\": 57376,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fast_rewind\",\n        \"id\": 268,\n        \"order\": 279,\n        \"prevSize\": 24,\n        \"code\": 57376,\n        \"name\": \"fast_rewind\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 268\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 910l-62-56c-220-200-364-330-364-492 0-132 102-234 234-234 74 0 146 36 192 90 46-54 118-90 192-90 132 0 234 102 234 234 0 162-144 294-364 494z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"favorite\"\n        ],\n        \"defaultCode\": 59517,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"favorite\",\n        \"id\": 269,\n        \"order\": 280,\n        \"prevSize\": 24,\n        \"code\": 59517,\n        \"name\": \"favorite\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 269\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M516 792c204-184 338-306 338-430 0-86-64-148-150-148-66 0-130 42-152 100h-80c-22-58-86-100-152-100-86 0-150 62-150 148 0 124 134 246 338 430l4 4zM704 128c132 0 234 102 234 234 0 162-144 292-364 492l-62 56-62-54c-220-200-364-332-364-494 0-132 102-234 234-234 74 0 146 36 192 90 46-54 118-90 192-90z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"favorite_border\"\n        ],\n        \"defaultCode\": 59518,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"favorite_border\",\n        \"id\": 270,\n        \"order\": 281,\n        \"prevSize\": 24,\n        \"code\": 59518,\n        \"name\": \"favorite_border\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 270\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 298v-84h-384v84h384zM512 470v-86h-384v86h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"featured_play_list\"\n        ],\n        \"defaultCode\": 57453,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"featured_play_list\",\n        \"id\": 271,\n        \"order\": 282,\n        \"prevSize\": 24,\n        \"code\": 57453,\n        \"name\": \"featured_play_list\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 271\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 512v-298h-384v298h384zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"featured_video\"\n        ],\n        \"defaultCode\": 57454,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"featured_video\",\n        \"id\": 272,\n        \"order\": 283,\n        \"prevSize\": 24,\n        \"code\": 57454,\n        \"name\": \"featured_video\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 272\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 426v-170h-84v170h84zM554 598v-86h-84v86h84zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sms_failed\"\n        ],\n        \"defaultCode\": 58918,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"feedback, sms_failed\",\n        \"id\": 273,\n        \"order\": 284,\n        \"prevSize\": 24,\n        \"code\": 58918,\n        \"name\": \"sms_failed\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 273\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 490v-42c0-36-28-64-64-64h-150v256h64v-86h50l36 86h64l-38-90c22-10 38-34 38-60zM538 640l76-256h-64l-44 146-42-146h-64l74 256h64zM342 576v-128c0-36-28-64-64-64h-150v256h150c36 0 64-28 64-64zM896 128c48 0 86 38 86 86v596c0 46-38 86-86 86h-768c-48 0-86-40-86-86v-596c0-48 38-86 86-86h768zM192 448h86v128h-86v-128zM746 448h86v42h-86v-42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fiber_dvr\"\n        ],\n        \"defaultCode\": 57437,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fiber_dvr\",\n        \"id\": 274,\n        \"order\": 285,\n        \"prevSize\": 24,\n        \"code\": 57437,\n        \"name\": \"fiber_dvr\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 274\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 512c0-188 154-342 342-342s342 154 342 342-154 342-342 342-342-154-342-342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fiber_manual_record\"\n        ],\n        \"defaultCode\": 57441,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fiber_manual_record\",\n        \"id\": 275,\n        \"order\": 286,\n        \"prevSize\": 24,\n        \"code\": 57441,\n        \"name\": \"fiber_manual_record\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 275\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M874 598v-214h-52v192h-48v-150h-54v150h-48v-192h-54v214c0 24 20 42 44 42h170c24 0 42-18 42-42zM576 438v-54h-170v256h170v-54h-106v-46h106v-54h-106v-48h106zM362 640v-256h-52v150l-108-150h-52v256h52v-150l110 150h50zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fiber_new\"\n        ],\n        \"defaultCode\": 57438,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fiber_new\",\n        \"id\": 276,\n        \"order\": 287,\n        \"prevSize\": 24,\n        \"code\": 57438,\n        \"name\": \"fiber_new\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 276\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 640v-256h-54v150l-106-150h-54v256h54v-150l108 150h52zM534 640v-256h-64v256h64zM384 490v-42c0-36-28-64-64-64h-150v256h64v-86h86c36 0 64-28 64-64zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684zM234 448h86v42h-86v-42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fiber_pin\"\n        ],\n        \"defaultCode\": 57450,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fiber_pin\",\n        \"id\": 277,\n        \"order\": 288,\n        \"prevSize\": 24,\n        \"code\": 57450,\n        \"name\": \"fiber_pin\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 277\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 182c148 38 256 170 256 330s-108 292-256 330v-88c100-34 170-130 170-242s-70-208-170-242v-88zM42 512c0-188 154-342 342-342s342 154 342 342-154 342-342 342-342-154-342-342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fiber_smart_record\"\n        ],\n        \"defaultCode\": 57442,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fiber_smart_record\",\n        \"id\": 278,\n        \"order\": 289,\n        \"prevSize\": 24,\n        \"code\": 57442,\n        \"name\": \"fiber_smart_record\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 278\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 768h596v86h-596v-86zM810 384l-298 298-298-298h170v-256h256v256h170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"get_app\"\n        ],\n        \"defaultCode\": 59524,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"file_download, get_app\",\n        \"id\": 279,\n        \"order\": 290,\n        \"prevSize\": 24,\n        \"code\": 59524,\n        \"name\": \"get_app\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 279\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 768h596v86h-596v-86zM384 682v-256h-170l298-298 298 298h-170v256h-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"file_upload\"\n        ],\n        \"defaultCode\": 58054,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"file_upload\",\n        \"id\": 280,\n        \"order\": 291,\n        \"prevSize\": 24,\n        \"code\": 58054,\n        \"name\": \"file_upload\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 280\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM680 440l152 200h-470l118-150 84 100z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter\"\n        ],\n        \"defaultCode\": 58323,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter\",\n        \"id\": 281,\n        \"order\": 292,\n        \"prevSize\": 24,\n        \"code\": 58323,\n        \"name\": \"filter2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 281\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM598 640v-342h-86v-84h170v426h-84zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_1\"\n        ],\n        \"defaultCode\": 58320,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_1\",\n        \"id\": 282,\n        \"order\": 293,\n        \"prevSize\": 24,\n        \"code\": 58320,\n        \"name\": \"filter_1\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 282\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554v86h-256v-170c0-48 38-86 84-86h86v-86h-170v-84h170c46 0 86 36 86 84v86c0 48-40 86-86 86h-86v84h172zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_2\"\n        ],\n        \"defaultCode\": 58321,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_2\",\n        \"id\": 283,\n        \"order\": 294,\n        \"prevSize\": 24,\n        \"code\": 58321,\n        \"name\": \"filter_2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 283\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554c0 48-40 86-86 86h-170v-86h170v-84h-86v-86h86v-86h-170v-84h170c46 0 86 36 86 84v64c0 36-28 64-64 64 36 0 64 28 64 64v64zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_3\"\n        ],\n        \"defaultCode\": 58322,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_3\",\n        \"id\": 284,\n        \"order\": 295,\n        \"prevSize\": 24,\n        \"code\": 58322,\n        \"name\": \"filter_3\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 284\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM640 640v-170h-170v-256h84v170h86v-170h86v426h-86zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_4\"\n        ],\n        \"defaultCode\": 58324,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_4\",\n        \"id\": 285,\n        \"order\": 296,\n        \"prevSize\": 24,\n        \"code\": 58324,\n        \"name\": \"filter_4\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 285\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554c0 48-40 86-86 86h-170v-86h170v-84h-170v-256h256v84h-172v86h86c46 0 86 38 86 86v84zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_5\"\n        ],\n        \"defaultCode\": 58325,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_5\",\n        \"id\": 286,\n        \"order\": 297,\n        \"prevSize\": 24,\n        \"code\": 58325,\n        \"name\": \"filter_5\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 286\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 470v84h86v-84h-86zM554 640c-46 0-84-38-84-86v-256c0-48 38-84 84-84h172v84h-172v86h86c46 0 86 38 86 86v84c0 48-40 86-86 86h-86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_6\"\n        ],\n        \"defaultCode\": 58326,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_6\",\n        \"id\": 287,\n        \"order\": 298,\n        \"prevSize\": 24,\n        \"code\": 58326,\n        \"name\": \"filter_6\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 287\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 640h-84l170-342h-170v-84h256v84zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_7\"\n        ],\n        \"defaultCode\": 58327,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_7\",\n        \"id\": 288,\n        \"order\": 299,\n        \"prevSize\": 24,\n        \"code\": 58327,\n        \"name\": \"filter_7\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 288\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 470v84h86v-84h-86zM554 298v86h86v-86h-86zM554 640c-46 0-84-38-84-86v-64c0-36 28-64 64-64-36 0-64-28-64-64v-64c0-48 38-84 84-84h86c46 0 86 36 86 84v64c0 36-28 64-64 64 36 0 64 28 64 64v64c0 48-40 86-86 86h-86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_8\"\n        ],\n        \"defaultCode\": 58328,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_8\",\n        \"id\": 289,\n        \"order\": 300,\n        \"prevSize\": 24,\n        \"code\": 58328,\n        \"name\": \"filter_8\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 289\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 384v-86h-86v86h86zM640 214c46 0 86 36 86 84v256c0 48-40 86-86 86h-170v-86h170v-84h-86c-46 0-84-38-84-86v-86c0-48 38-84 84-84h86zM896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_9\"\n        ],\n        \"defaultCode\": 58329,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_9\",\n        \"id\": 290,\n        \"order\": 301,\n        \"prevSize\": 24,\n        \"code\": 58329,\n        \"name\": \"filter_9\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 290\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 384v-256h-598v598h598v-256h-86v84h-84v-84h-86v-86h86v-86h84v86h86zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM470 384h42v-42h-42v42zM598 512c0 48-40 86-86 86h-128v-86h128v-42h-42c-46 0-86-38-86-86v-42c0-48 40-86 86-86h42c46 0 86 38 86 86v170zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_9_plus\"\n        ],\n        \"defaultCode\": 58330,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_9_plus\",\n        \"id\": 291,\n        \"order\": 302,\n        \"prevSize\": 24,\n        \"code\": 58330,\n        \"name\": \"filter_9_plus\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 291\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-596h-298v256zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM512 470l-298 340h298v-340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_b_and_w\"\n        ],\n        \"defaultCode\": 58331,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_b_and_w\",\n        \"id\": 292,\n        \"order\": 303,\n        \"prevSize\": 24,\n        \"code\": 58331,\n        \"name\": \"filter_b_and_w\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 292\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM810 810v-170h86v170c0 46-40 86-86 86h-170v-86h170zM810 128c46 0 86 40 86 86v170h-86v-170h-170v-86h170zM214 214v170h-86v-170c0-46 40-86 86-86h170v86h-170zM214 640v170h170v86h-170c-46 0-86-40-86-86v-170h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_center_focus\"\n        ],\n        \"defaultCode\": 58332,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_center_focus\",\n        \"id\": 293,\n        \"order\": 304,\n        \"prevSize\": 24,\n        \"code\": 58332,\n        \"name\": \"filter_center_focus\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 293\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 768c70 0 128-58 128-128s-58-128-128-128h-64v-22c0-130-104-234-234-234-76 0-144 36-188 94 108 30 188 130 188 248h-86c0-94-76-172-170-172s-170 78-170 172 76 170 170 170h554zM826 428c110 8 198 100 198 212 0 118-96 214-214 214h-554c-142 0-256-114-256-256 0-132 100-240 228-254 54-102 160-174 284-174 156 0 284 110 314 258z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_drama\"\n        ],\n        \"defaultCode\": 58333,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_drama\",\n        \"id\": 294,\n        \"order\": 305,\n        \"prevSize\": 24,\n        \"code\": 58333,\n        \"name\": \"filter_drama\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 294\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 342h-512v426h512zM854 854v-598h-192l-148-150-150 150h-194v598h684zM854 170c46 0 84 40 84 86v598c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-598c0-46 38-86 84-86h172l170-170 170 170h172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_frames\"\n        ],\n        \"defaultCode\": 58334,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_frames\",\n        \"id\": 295,\n        \"order\": 306,\n        \"prevSize\": 24,\n        \"code\": 58334,\n        \"name\": \"filter_frames\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 295\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 256l384 512h-940l256-342 192 256 68-50-120-162z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"terrain\"\n        ],\n        \"defaultCode\": 58724,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_hdr, landscape, terrain\",\n        \"id\": 296,\n        \"order\": 307,\n        \"prevSize\": 24,\n        \"code\": 58724,\n        \"name\": \"terrain\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 296\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 554v-84h512v84h-512zM128 256h768v86h-768v-86zM426 768v-86h172v86h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_list\"\n        ],\n        \"defaultCode\": 57682,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_list\",\n        \"id\": 297,\n        \"order\": 308,\n        \"prevSize\": 24,\n        \"code\": 57682,\n        \"name\": \"filter_list\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 297\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 726v-598h-598v598h598zM896 42c46 0 86 40 86 86v598c0 46-40 84-86 84h-598c-46 0-84-38-84-84v-598c0-46 38-86 84-86h598zM128 214v682h682v86h-682c-46 0-86-40-86-86v-682h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_none\"\n        ],\n        \"defaultCode\": 58336,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_none\",\n        \"id\": 298,\n        \"order\": 309,\n        \"prevSize\": 24,\n        \"code\": 58336,\n        \"name\": \"filter_none\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 298\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M242 842l60-60c48 36 106 60 168 68v86c-86-8-164-42-228-94zM554 850c62-8 120-32 166-68l62 60c-64 52-142 86-228 94v-86zM782 722c36-48 60-104 68-166h86c-8 86-42 162-94 226zM640 512c0 70-58 128-128 128s-128-58-128-128 58-128 128-128 128 58 128 128zM174 554c8 62 32 120 68 166l-60 62c-52-64-86-142-94-228h86zM242 302c-36 48-60 106-68 168h-86c8-86 42-164 94-228zM850 470c-8-62-32-120-68-168l60-60c52 64 86 142 94 228h-86zM782 182l-60 60c-48-36-106-60-168-68v-86c86 8 164 42 228 94zM470 174c-62 8-120 32-168 68l-60-60c64-52 142-86 228-94v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_tilt_shift\"\n        ],\n        \"defaultCode\": 58338,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_tilt_shift\",\n        \"id\": 299,\n        \"order\": 310,\n        \"prevSize\": 24,\n        \"code\": 58338,\n        \"name\": \"filter_tilt_shift\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 299\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 682c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170zM98 750c0-98.433 62.724-204.242 164-238-12-4-24-12-36-18-82-48-128-132-128-220 76-44 174-48 256 0 12 6 24 14 34 22-2-14-4-26-4-40 0-94 52-178 128-222 76 44 128 128 128 222 0 14-2 26-4 40 10-8 22-16 34-22 82-48 180-44 256 0 0 88-46 172-128 220-12 6-24 14-36 18 12 4 24 12 36 18 82 48 128 132 128 220-76 44-174 48-256 0-12-6-24-14-34-22 2 14 4 26 4 40 0 94-52 178-128 222-76-44-128-128-128-222 0-14 2-26 4-40-10 8-22 16-34 22-82 48-180 44-256 0z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"filter_vintage\"\n        ],\n        \"defaultCode\": 58339,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"filter_vintage\",\n        \"id\": 300,\n        \"order\": 311,\n        \"prevSize\": 24,\n        \"code\": 58339,\n        \"name\": \"filter_vintage\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 300\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 554c0-70 58-128 128-128s128 58 128 128-58 128-128 128-128-58-128-128zM854 836l-164-164c22-34 36-74 36-118 0-118-96-212-214-212s-214 94-214 212 96 214 214 214c44 0 84-14 118-36l188 190c-14 10-30 16-50 16h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342l256 256v494z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"find_in_page\"\n        ],\n        \"defaultCode\": 59520,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"find_in_page\",\n        \"id\": 301,\n        \"order\": 312,\n        \"prevSize\": 24,\n        \"code\": 59520,\n        \"name\": \"find_in_page\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 301\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M710 646l206 208-62 62-208-206c-50 36-110 58-176 58-82 0-158-34-212-88l-88 88v-256h256l-108 108c38 38 94 62 152 62 104 0 188-72 208-170h86c-6 50-26 96-54 134zM470 256c-104 0-190 72-210 170h-86c20-144 146-256 296-256 82 0 156 34 210 88l88-88v256h-256l108-108c-38-38-92-62-150-62z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"find_replace\"\n        ],\n        \"defaultCode\": 59521,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"find_replace\",\n        \"id\": 302,\n        \"order\": 313,\n        \"prevSize\": 24,\n        \"code\": 59521,\n        \"name\": \"find_replace\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 302\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M636 938h-6c-68-18-112-44-158-90-60-60-92-138-92-222 0-70 58-126 130-126s132 56 132 126c0 46 38 82 88 82s90-36 90-82c0-160-140-292-310-292-122 0-232 68-282 172-16 34-24 76-24 120 0 34 2 86 28 154 9.157 27.471-30.939 36.654-40 14-20-56-32-110-32-168 0-52 10-98 30-138 56-120 182-198 320-198 194 0 352 152 352 336 0 70-60 124-132 124s-130-54-130-124c0-46-40-84-90-84s-88 38-88 84c0 72 28 140 80 192 40 40 80 62 140 78 12 2 16 14 14 26-2 10-12 16-20 16zM530 626c0 97.515 80.578 182 192 182 19.928 0 65.546-14.722 70 12 2 12-6 24-18 26-24 4-46 4-52 4-50 0-96-12-132-38-64-44-102-112-102-186 0-12 10-22 22-22s20 10 20 22zM416 930c-6 0-10-2-14-6-38-38-58-62-86-114-30-52-46-116-46-184 0-126 108-230 242-230s242 104 242 230c0 12-10 20-22 20s-22-8-22-20c0-104-88-188-198-188s-198 84-198 188c0 62 12 118 38 164 28 50 48 70 80 104 8 8 8 22 0 30-4 4-10 6-16 6zM150 414c-17.624 0-27.785-15.691-18-32 42-60 96-108 160-140 134-70 306-70 440 0 64 32 118 78 160 138 6 10 4 24-6 30s-24 4-30-6c-38-54-86-94-144-124-122-62-278-64-400 0-58 30-108 72-146 126-4 6-10 8-16 8zM760 190c-4 0-8 0-10-2-82-42-154-60-238-60s-166 20-238 60c-23.381 14.029-43.278-24.033-20-38 80-44 166-64 258-64 90 0 170 20 258 64 18.211 10.927 10.406 40-10 40z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fingerprint\"\n        ],\n        \"defaultCode\": 59661,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fingerprint\",\n        \"id\": 303,\n        \"order\": 314,\n        \"prevSize\": 24,\n        \"code\": 59661,\n        \"name\": \"fingerprint\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 303\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 256h86v512h-86v-512zM786 708l-60 60-256-256 256-256 60 60-196 196z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"first_page\"\n        ],\n        \"defaultCode\": 58844,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"first_page\",\n        \"id\": 304,\n        \"order\": 315,\n        \"prevSize\": 24,\n        \"code\": 58844,\n        \"name\": \"first_page\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 304\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M878 634l60 62-90 90 60 62-60 60-62-60-90 90-62-60-60 60-62-60 152-152-366-366-152 152-60-62 60-60-60-62 90-90-60-62 60-60 62 60 90-90 62 60 60-60 62 60-152 152 366 366 152-152 60 62z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fitness_center\"\n        ],\n        \"defaultCode\": 60227,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fitness_center\",\n        \"id\": 305,\n        \"order\": 316,\n        \"prevSize\": 24,\n        \"code\": 60227,\n        \"name\": \"fitness_center\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 305\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 982v-256h84v256h-84zM240 724l92-92 60 60-92 92zM632 692l60-60 92 92-60 60zM512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM726 470h256v84h-256v-84zM784 300l-92 92-60-60 92-92zM554 42v256h-84v-256h84zM392 332l-60 60-92-92 60-60zM298 470v84h-256v-84h256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flare\"\n        ],\n        \"defaultCode\": 58340,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flare\",\n        \"id\": 306,\n        \"order\": 317,\n        \"prevSize\": 24,\n        \"code\": 58340,\n        \"name\": \"flare\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 306\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M718 326h100l-50-156zM810 86l138 384h-82l-30-86h-136l-30 86h-82l138-384h84zM128 86h426l-170 384h170l-298 512v-384h-128v-512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flash_auto\"\n        ],\n        \"defaultCode\": 58341,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flash_auto\",\n        \"id\": 307,\n        \"order\": 318,\n        \"prevSize\": 24,\n        \"code\": 58341,\n        \"name\": \"flash_auto\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 307\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 426l-66 114-362-362v-92h428l-172 340h172zM140 128l670 672-54 54-176-178-154 262v-384h-128v-158l-212-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flash_off\"\n        ],\n        \"defaultCode\": 58342,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flash_off\",\n        \"id\": 308,\n        \"order\": 319,\n        \"prevSize\": 24,\n        \"code\": 58342,\n        \"name\": \"flash_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 308\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 86h428l-172 340h172l-300 512v-384h-128v-468z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flash_on\"\n        ],\n        \"defaultCode\": 58343,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flash_on\",\n        \"id\": 309,\n        \"order\": 320,\n        \"prevSize\": 24,\n        \"code\": 58343,\n        \"name\": \"flash_on\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 309\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 616c-136.472-37.528-274.090-73.91-412-110l-68-20v-220l62 16 40 100 212 56v-352l82 22 118 384 226 60c34 10 54 46 46 80-10 34-44 52-78 44zM106 810h812v86h-812v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flight_land\"\n        ],\n        \"defaultCode\": 59652,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flight_land\",\n        \"id\": 310,\n        \"order\": 321,\n        \"prevSize\": 24,\n        \"code\": 59652,\n        \"name\": \"flight_land\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 310\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M942 412c8 34-12 68-46 78-137.558 36.442-275.002 72.998-412 110l-226 60-68 20c-37.52-63.813-74.693-127.974-112-192l62-16 84 64 212-56-176-306 82-22 294 274 228-60c34-10 70 12 78 46zM106 810h812v86h-812v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flight_takeoff\"\n        ],\n        \"defaultCode\": 59653,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flight_takeoff\",\n        \"id\": 311,\n        \"order\": 322,\n        \"prevSize\": 24,\n        \"code\": 59653,\n        \"name\": \"flight_takeoff\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 311\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 896v-86h86c0 46-40 86-86 86zM810 554v-84h86v84h-86zM640 214v-86h86v86h-86zM810 726v-86h86v86h-86zM470 982v-940h84v940h-84zM810 128c46 0 86 40 86 86h-86v-86zM128 214c0-46 40-86 86-86h170v86h-170v596h170v86h-170c-46 0-86-40-86-86v-596zM810 384v-86h86v86h-86zM640 896v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flip\"\n        ],\n        \"defaultCode\": 58344,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flip\",\n        \"id\": 312,\n        \"order\": 323,\n        \"prevSize\": 24,\n        \"code\": 58344,\n        \"name\": \"flip\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 312\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 726v-86h86v86h-86zM640 214v-86h86v86h-86zM214 298v512h512v86h-512c-48 0-86-40-86-86v-512h86zM810 726v-86h86c0 46-40 86-86 86zM810 384v-86h86v86h-86zM810 554v-84h86v84h-86zM384 726c-48 0-86-40-86-86h86v86zM554 128v86h-84v-86h84zM810 128c46 0 86 40 86 86h-86v-86zM554 640v86h-84v-86h84zM384 128v86h-86c0-46 38-86 86-86zM384 470v84h-86v-84h86zM384 298v86h-86v-86h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flip_to_back\"\n        ],\n        \"defaultCode\": 59522,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flip_to_back\",\n        \"id\": 313,\n        \"order\": 324,\n        \"prevSize\": 24,\n        \"code\": 59522,\n        \"name\": \"flip_to_back\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 313\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM810 640v-426h-426v426h426zM810 128c46 0 86 40 86 86v426c0 46-40 86-86 86h-426c-48 0-86-40-86-86v-426c0-46 38-86 86-86h426zM640 896v-86h86v86h-86zM128 384v-86h86v86h-86zM214 896c-48 0-86-40-86-86h86v86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"flip_to_front\"\n        ],\n        \"defaultCode\": 59523,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"flip_to_front\",\n        \"id\": 314,\n        \"order\": 325,\n        \"prevSize\": 24,\n        \"code\": 59523,\n        \"name\": \"flip_to_front\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 314\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 170l86 86h342c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"folder\"\n        ],\n        \"defaultCode\": 58055,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"folder\",\n        \"id\": 315,\n        \"order\": 326,\n        \"prevSize\": 24,\n        \"code\": 58055,\n        \"name\": \"folder2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 315\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 768v-426h-684v426h684zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"folder_open\"\n        ],\n        \"defaultCode\": 58056,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"folder_open\",\n        \"id\": 316,\n        \"order\": 327,\n        \"prevSize\": 24,\n        \"code\": 58056,\n        \"name\": \"folder_open\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 316\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 726v-44c0-56-114-84-170-84s-170 28-170 84v44h340zM640 384c-46 0-86 40-86 86s40 84 86 84 86-38 86-84-40-86-86-86zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"folder_shared\"\n        ],\n        \"defaultCode\": 58057,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"folder_shared\",\n        \"id\": 317,\n        \"order\": 328,\n        \"prevSize\": 24,\n        \"code\": 58057,\n        \"name\": \"folder_shared\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 317\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M766 726l-34-142 110-96-144-12-58-134-58 134-144 12 110 96-34 142 126-74zM854 256c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h256l86 86h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"folder_special\"\n        ],\n        \"defaultCode\": 58903,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"folder_special\",\n        \"id\": 318,\n        \"order\": 329,\n        \"prevSize\": 24,\n        \"code\": 58903,\n        \"name\": \"folder_special\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 318\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M680 790h90l-218-556h-80l-218 556h90l48-128h240zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684zM424 576l88-236 88 236h-176z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"font_download\"\n        ],\n        \"defaultCode\": 57703,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"font_download\",\n        \"id\": 319,\n        \"order\": 330,\n        \"prevSize\": 24,\n        \"code\": 57703,\n        \"name\": \"font_download\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 319\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 128h768v86h-768v-86zM298 298h428v86h-428v-86zM128 554v-84h768v84h-768zM128 896v-86h768v86h-768zM298 640h428v86h-428v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_align_center\"\n        ],\n        \"defaultCode\": 57908,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_align_center\",\n        \"id\": 320,\n        \"order\": 331,\n        \"prevSize\": 24,\n        \"code\": 57908,\n        \"name\": \"format_align_center\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 320\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 128h768v86h-768v-86zM128 384v-86h768v86h-768zM128 554v-84h768v84h-768zM128 726v-86h768v86h-768zM128 896v-86h768v86h-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_align_justify\"\n        ],\n        \"defaultCode\": 57909,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_align_justify\",\n        \"id\": 321,\n        \"order\": 332,\n        \"prevSize\": 24,\n        \"code\": 57909,\n        \"name\": \"format_align_justify\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 321\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 554v-84h768v84h-768zM640 298v86h-512v-86h512zM640 640v86h-512v-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_align_left\"\n        ],\n        \"defaultCode\": 57910,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_align_left\",\n        \"id\": 322,\n        \"order\": 333,\n        \"prevSize\": 24,\n        \"code\": 57910,\n        \"name\": \"format_align_left\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 322\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 128h768v86h-768v-86zM384 384v-86h512v86h-512zM128 554v-84h768v84h-768zM384 726v-86h512v86h-512zM128 896v-86h768v86h-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_align_right\"\n        ],\n        \"defaultCode\": 57911,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_align_right\",\n        \"id\": 323,\n        \"order\": 334,\n        \"prevSize\": 24,\n        \"code\": 57911,\n        \"name\": \"format_align_right\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 323\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M576 662c36 0 64-28 64-64s-28-64-64-64h-150v128h150zM426 278v128h128c36 0 64-28 64-64s-28-64-64-64h-128zM666 460c56 26 92 82 92 146 0 90-68 162-158 162h-302v-598h268c96 0 170 76 170 172 0 44-28 90-70 118z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_bold\"\n        ],\n        \"defaultCode\": 57912,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_bold\",\n        \"id\": 324,\n        \"order\": 335,\n        \"prevSize\": 24,\n        \"code\": 57912,\n        \"name\": \"format_bold\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 324\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 214h598v128h-248l-68 160-90-88 30-72h-102l-120-120v-8zM140 214l12 10 616 618-54 54-242-242-66 156h-128l104-246-296-296z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_clear\"\n        ],\n        \"defaultCode\": 57913,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_clear\",\n        \"id\": 325,\n        \"order\": 336,\n        \"prevSize\": 24,\n        \"code\": 57913,\n        \"name\": \"format_clear\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 325\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M0 854h1024v170h-1024v-170zM810 490c0 0 86 94 86 150 0 46-40 86-86 86s-84-40-84-86c0-56 84-150 84-150zM222 426h410l-206-204zM706 382c26 26 26 66 0 90l-234 234c-12 12-30 20-46 20s-32-8-44-20l-236-234c-26-24-26-64 0-90l220-220-102-102 62-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_color_fill\"\n        ],\n        \"defaultCode\": 57914,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_color_fill\",\n        \"id\": 326,\n        \"order\": 337,\n        \"prevSize\": 24,\n        \"code\": 57914,\n        \"name\": \"format_color_fill\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 326\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M224 224l624 624-54 54-114-112c-46 40-104 64-168 64-142 0-256-114-256-256 0-52 24-114 56-176l-142-142zM768 598c0 20-2 38-6 56l-366-368c60-86 116-150 116-150s256 292 256 462z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_color_reset\"\n        ],\n        \"defaultCode\": 57915,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_color_reset\",\n        \"id\": 327,\n        \"order\": 338,\n        \"prevSize\": 24,\n        \"code\": 57915,\n        \"name\": \"format_color_reset\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 327\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M410 512h204l-102-270zM470 128h84l234 598h-96l-46-128h-268l-48 128h-96zM0 854h1024v170h-1024v-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_color_text\"\n        ],\n        \"defaultCode\": 57916,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_color_text\",\n        \"id\": 328,\n        \"order\": 339,\n        \"prevSize\": 24,\n        \"code\": 57916,\n        \"name\": \"format_color_text\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 328\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 512l170-170v340zM470 726v-86h426v86h-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_indent_decrease\"\n        ],\n        \"defaultCode\": 57917,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_indent_decrease\",\n        \"id\": 329,\n        \"order\": 340,\n        \"prevSize\": 24,\n        \"code\": 57917,\n        \"name\": \"format_indent_decrease\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 329\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM470 726v-86h426v86h-426zM128 342l170 170-170 170v-340zM128 896v-86h768v86h-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_indent_increase\"\n        ],\n        \"defaultCode\": 57918,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_indent_increase\",\n        \"id\": 330,\n        \"order\": 341,\n        \"prevSize\": 24,\n        \"code\": 57918,\n        \"name\": \"format_indent_increase\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 330\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 170h342v128h-120l-144 342h94v128h-342v-128h120l144-342h-94v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_italic\"\n        ],\n        \"defaultCode\": 57919,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_italic\",\n        \"id\": 331,\n        \"order\": 342,\n        \"prevSize\": 24,\n        \"code\": 57919,\n        \"name\": \"format_italic\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 331\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 554v-84h512v84h-512zM426 810v-84h512v84h-512zM426 214h512v84h-512v-84zM256 298v428h106l-148 148-150-148h106v-428h-106l150-148 148 148h-106z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_line_spacing\"\n        ],\n        \"defaultCode\": 57920,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_line_spacing\",\n        \"id\": 332,\n        \"order\": 343,\n        \"prevSize\": 24,\n        \"code\": 57920,\n        \"name\": \"format_line_spacing\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 332\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 214h598v84h-598v-84zM298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM170 704c36 0 64 30 64 64s-30 64-64 64-64-30-64-64 28-64 64-64zM170 192c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM170 448c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_list_bulleted\"\n        ],\n        \"defaultCode\": 57921,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_list_bulleted\",\n        \"id\": 333,\n        \"order\": 344,\n        \"prevSize\": 24,\n        \"code\": 57921,\n        \"name\": \"format_list_bulleted\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 333\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM298 214h598v84h-598v-84zM86 470v-44h128v40l-78 88h78v44h-128v-40l76-88h-76zM128 342v-128h-42v-44h84v172h-42zM86 726v-44h128v172h-128v-44h84v-20h-42v-44h42v-20h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_list_numbered\"\n        ],\n        \"defaultCode\": 57922,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_list_numbered\",\n        \"id\": 334,\n        \"order\": 345,\n        \"prevSize\": 24,\n        \"code\": 57922,\n        \"name\": \"format_list_numbered\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 334\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 170h128v342h-342v384c0 24-18 42-42 42h-86c-24 0-42-18-42-42v-470h426v-170h-42v42c0 24-18 44-42 44h-512c-24 0-44-20-44-44v-170c0-24 20-42 44-42h512c24 0 42 18 42 42v42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_paint\"\n        ],\n        \"defaultCode\": 57923,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_paint\",\n        \"id\": 335,\n        \"order\": 346,\n        \"prevSize\": 24,\n        \"code\": 57923,\n        \"name\": \"format_paint\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 335\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 726l84-172h-128v-256h256v256l-84 172h-128zM256 726l86-172h-128v-256h256v256l-86 172h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_quote\"\n        ],\n        \"defaultCode\": 57924,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_quote\",\n        \"id\": 336,\n        \"order\": 347,\n        \"prevSize\": 24,\n        \"code\": 57924,\n        \"name\": \"format_quote\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 336\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M456 544h112l-56-164zM586 598h-150l-30 84h-70l146-384h60l144 384h-68zM810 214h86v-86h-86v86zM896 896v-86h-86v86h86zM726 810v-84h84v-428h-84v-84h-428v84h-84v428h84v84h428zM214 896v-86h-86v86h86zM128 128v86h86v-86h-86zM982 298h-86v428h86v256h-256v-86h-428v86h-256v-256h86v-428h-86v-256h256v86h428v-86h256v256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_shapes\"\n        ],\n        \"defaultCode\": 57950,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_shapes\",\n        \"id\": 337,\n        \"order\": 348,\n        \"prevSize\": 24,\n        \"code\": 57950,\n        \"name\": \"format_shapes\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 337\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 512v-128h384v128h-128v298h-128v-298h-128zM384 170h554v128h-212v512h-128v-512h-214v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_size\"\n        ],\n        \"defaultCode\": 57925,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_size\",\n        \"id\": 338,\n        \"order\": 349,\n        \"prevSize\": 24,\n        \"code\": 57925,\n        \"name\": \"format_size\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 338\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 598v-86h768v86h-768zM214 170h596v128h-212v128h-172v-128h-212v-128zM426 810v-128h172v128h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_strikethrough\"\n        ],\n        \"defaultCode\": 57926,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_strikethrough\",\n        \"id\": 339,\n        \"order\": 350,\n        \"prevSize\": 24,\n        \"code\": 57926,\n        \"name\": \"format_strikethrough\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 339\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 768l-170 170v-128h-512v-84h512v-128zM384 426c-94 0-170-76-170-170s76-170 170-170h342v84h-86v470h-86v-470h-84v470h-86v-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_textdirection_l_to_r\"\n        ],\n        \"defaultCode\": 57927,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_textdirection_l_to_r\",\n        \"id\": 340,\n        \"order\": 351,\n        \"prevSize\": 24,\n        \"code\": 57927,\n        \"name\": \"format_textdirection_l_to_r\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 340\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 726h512v84h-512v128l-172-170 172-170v128zM426 426c-94 0-170-76-170-170s76-170 170-170h342v84h-86v470h-84v-470h-86v470h-86v-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_textdirection_r_to_l\"\n        ],\n        \"defaultCode\": 57928,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_textdirection_r_to_l\",\n        \"id\": 341,\n        \"order\": 352,\n        \"prevSize\": 24,\n        \"code\": 57928,\n        \"name\": \"format_textdirection_r_to_l\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 341\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 810h596v86h-596v-86zM512 726c-142 0-256-114-256-256v-342h106v342c0 82 68 148 150 148s150-66 150-148v-342h106v342c0 142-114 256-256 256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"format_underlined\"\n        ],\n        \"defaultCode\": 57929,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"format_underlined\",\n        \"id\": 342,\n        \"order\": 353,\n        \"prevSize\": 24,\n        \"code\": 57929,\n        \"name\": \"format_underlined\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 342\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 512c0 24-20 42-44 42h-426l-170 172v-598c0-24 18-42 42-42h554c24 0 44 18 44 42v384zM896 256c24 0 42 18 42 42v640l-170-170h-470c-24 0-42-18-42-42v-86h554v-384h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"question_answer\"\n        ],\n        \"defaultCode\": 59567,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"forum, question_answer\",\n        \"id\": 343,\n        \"order\": 354,\n        \"prevSize\": 24,\n        \"code\": 59567,\n        \"name\": \"question_answer\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 343\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 342v-172l342 342-342 342v-172h-342v-340h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"forward\"\n        ],\n        \"defaultCode\": 57684,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"forward\",\n        \"id\": 344,\n        \"order\": 355,\n        \"prevSize\": 24,\n        \"code\": 57684,\n        \"name\": \"forward2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 344\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M564 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-6 8-6 12v86s6 8 6 12zM644 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4-18 0-26-4-12-8-20-12c-13.488-6.744-18-39.492-18-60v-30c0-12 0-26 4-34l14-26s12-12 20-12 18-4 26-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"forward_10\"\n        ],\n        \"defaultCode\": 57430,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"forward_10\",\n        \"id\": 345,\n        \"order\": 356,\n        \"prevSize\": 24,\n        \"code\": 57430,\n        \"name\": \"forward_10\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 345\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342zM568 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-4 8-4 12v86s4 8 4 12zM652 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4c-20.252 0-32.299-9.149-46-16-8-4-8-14-12-26s-6-22-6-34v-30c0-12 2-26 6-34l12-26s14-12 22-12 16-4 24-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM426 576c16.239 0 30-9.918 30-26v-8s-4-4-4-8-4-4-8-4h-22s-4 4-8 4-4 4-4 8v8h-44c0-19.788 17.639-46 36-46 4 0 16-4 20-4 17.345 0 35.264 5.632 48 12 10.13 5.065 16 24.218 16 38v14s-4 8-4 12-4 8-8 8-10 6-14 10c8 4 18 8 22 16s8 18 8 26 0 18-4 22-8 12-12 16-14 8-22 8-18 4-26 4-16 0-20-4-14-4-22-8c-11.162-5.581-18-27.017-18-42h36v8s4 4 4 8 4 4 8 4h22s4-4 8-4 4-4 4-8v-22s-4-4-4-8-4-4-8-4h-26v-30h16z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"forward_30\"\n        ],\n        \"defaultCode\": 57431,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"forward_30\",\n        \"id\": 346,\n        \"order\": 357,\n        \"prevSize\": 24,\n        \"code\": 57431,\n        \"name\": \"forward_30\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 346\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M500 580c-3.584 1.434-14 4.805-14 8 0 4-4 6-4 6h-26l10-94h102v30h-74l-4 38s4 0 4-4 6-2 6-6 4 0 8 0h8c8 0 18 2 22 6s12 8 16 12c8.873 8.873 18 27.257 18 46 0 8 0 18-4 22s-6 14-14 22c-11.246 11.246-26.59 16-46 16-8 0-18 0-22-4s-12-4-20-8c-11.191-5.596-18-22.554-18-38h34c0 14.809 10.59 20 26 20 4 0 8 0 12-4l10-8s4-8 4-12v-26l-4-8-10-10s-8-4-12-4h-8zM170 554c0-188 154-340 342-340v-172l214 214-214 214v-172c-140 0-256 116-256 256s116 256 256 256 256-116 256-256h86c0 188-154 342-342 342s-342-154-342-342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"forward_5\"\n        ],\n        \"defaultCode\": 57432,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"forward_5\",\n        \"id\": 347,\n        \"order\": 358,\n        \"prevSize\": 24,\n        \"code\": 57432,\n        \"name\": \"forward_5\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 347\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 810h684v86h-684v-86zM854 342v-128h-86v128h86zM854 128c48 0 84 38 84 86v128c0 46-36 84-84 84h-86v128c0 94-76 172-170 172h-256c-94 0-172-78-172-172v-426h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"free_breakfast\"\n        ],\n        \"defaultCode\": 60228,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"free_breakfast\",\n        \"id\": 348,\n        \"order\": 359,\n        \"prevSize\": 24,\n        \"code\": 60228,\n        \"name\": \"free_breakfast\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 348\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 214h212v212h-84v-128h-128v-84zM726 726v-128h84v212h-212v-84h128zM214 426v-212h212v84h-128v128h-84zM298 598v128h128v84h-212v-212h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fullscreen\"\n        ],\n        \"defaultCode\": 58832,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fullscreen\",\n        \"id\": 349,\n        \"order\": 360,\n        \"prevSize\": 24,\n        \"code\": 58832,\n        \"name\": \"fullscreen\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 349\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 342h128v84h-212v-212h84v128zM598 810v-212h212v84h-128v128h-84zM342 342v-128h84v212h-212v-84h128zM214 682v-84h212v212h-84v-128h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"fullscreen_exit\"\n        ],\n        \"defaultCode\": 58833,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"fullscreen_exit\",\n        \"id\": 350,\n        \"order\": 361,\n        \"prevSize\": 24,\n        \"code\": 58833,\n        \"name\": \"fullscreen_exit\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 350\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 170v128h-298l212 214-212 214h298v128h-512v-86l278-256-278-256v-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"functions\"\n        ],\n        \"defaultCode\": 57930,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"functions\",\n        \"id\": 351,\n        \"order\": 362,\n        \"prevSize\": 24,\n        \"code\": 57930,\n        \"name\": \"functions\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 351\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 854v-556c0-24-18-42-42-42h-376l50 172h82v-44h46v44h154v44h-54c-14 54-44 106-82 150l116 114-30 32-116-114-38 38 34 118-86 86h300c24 0 42-18 42-42zM596 518c10 20 26 46 48 72 52-62 66-118 66-118h-170l14 46h42zM564 550l26 94 24-22c-20-22-36-46-50-72zM474 452c0-9.841-0.281-22.561-4-30h-168v66h94c-6 26-32 64-90 64-56 0-102-48-102-104s46-104 102-104c32 0 52 14 64 26l4 2 52-50-4-2c-32-30-72-46-116-46-96 0-174 78-174 174s78 174 174 174c98 0 168-70 168-170zM854 214c46 0 84 38 84 84v556c0 46-38 84-84 84h-342l-42-128h-300c-46 0-84-38-84-84v-556c0-46 38-84 84-84h256l38 128h390z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"g_translate\"\n        ],\n        \"defaultCode\": 59687,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"g_translate\",\n        \"id\": 352,\n        \"order\": 363,\n        \"prevSize\": 24,\n        \"code\": 59687,\n        \"name\": \"g_translate\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 352\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M704 384h234v256h-234l-128-128zM384 704l128-128 128 128v234h-256v-234zM320 384l128 128-128 128h-234v-256h234zM640 320l-128 128-128-128v-234h256v234z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"games\"\n        ],\n        \"defaultCode\": 57377,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"gamepad, games\",\n        \"id\": 353,\n        \"order\": 364,\n        \"prevSize\": 24,\n        \"code\": 57377,\n        \"name\": \"games\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 353\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M164 404l240 242-120 120-242-240zM526 42l240 242-120 120-242-240zM224 344l120-120 604 604-120 120zM42 896h512v86h-512v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gavel\"\n        ],\n        \"defaultCode\": 59662,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"gavel\",\n        \"id\": 354,\n        \"order\": 365,\n        \"prevSize\": 24,\n        \"code\": 59662,\n        \"name\": \"gavel2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 354\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M592 792c30 0 80-36 92-150-92 24-124 92-124 118 0 20 18 32 32 32zM196 294l-74-72c10-12 20-24 36-40 10-10 60-54 116-54 38 0 108 30 108 122 0 58-22 92-56 140-20 28-64 104-78 150-16 46-6 82 14 82 18 0 38-24 48-36 10-10 74-84 98-116 32-40 114-120 210-120 126 0 166 108 172 178h106v106h-104c-18 204-132 262-202 262-76 0-136-60-136-132s68-202 230-230c-4-34-6-76-76-76-54 0-122 82-174 146-48 58-84 104-130 118-99.552 31.437-170-56.487-170-146 0-104 112-252 122-270 12-20 34-56 12-64-14-6-42 22-72 52z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gesture\"\n        ],\n        \"defaultCode\": 57685,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"gesture\",\n        \"id\": 355,\n        \"order\": 366,\n        \"prevSize\": 24,\n        \"code\": 57685,\n        \"name\": \"gesture\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 355\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 448h-128v42h86v64h-86v86h-64v-256h192v64zM384 384c26 0 42 20 42 42v22h-148v128h84v-64h64v86c0 22-16 42-42 42h-128c-26 0-42-20-42-42v-172c0-22 16-42 42-42h128zM490 384h64v256h-64v-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gif\"\n        ],\n        \"defaultCode\": 59656,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"gif\",\n        \"id\": 356,\n        \"order\": 367,\n        \"prevSize\": 24,\n        \"code\": 59656,\n        \"name\": \"gif\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 356\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1022 388c2 2 2 8 0 10l-50 64c-2 2-6 4-8 4l-30-6-14 44c-6 10-20 10-26 0l-28-60-46-10-94 224 34 272c0 6-4 8-8 8h-40c-4 0-6-2-8-6l-40-162-20-34-50 196c0 4-4 6-8 6h-42c-4 0-8-4-8-8l46-270h-270l-70 132 16 136c2 6-2 10-8 10h-40c-2 0-6 0-8-4l-56-204-68 78 12 120c2 6-2 10-8 10h-44c-4 0-8-2-8-4l-26-112 42-164v-288s-46-18-46-60h548c0 0 96 2 190-66 0 0-16-44 12-72 0 0 56 40 72 50 20 12 34-10 28-28-4-12-18-56-90-84-9.158-3.053-30.421-4.736-26-18 0-4 4-6 8-6 88 12 140 84 154 116 2 4 40 30 36 76 0 6 0 10 4 14z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"goat\"\n        ],\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"goat\",\n        \"id\": 357,\n        \"order\": 368,\n        \"prevSize\": 24,\n        \"code\": 59648,\n        \"name\": \"goat\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 357\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 252l-256 132v386c122 6 212 42 212 84 0 46-114 84-256 84s-256-38-256-84c0-32 52-60 128-74v74h86v-768zM768 832c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"golf_course\"\n        ],\n        \"defaultCode\": 60229,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"golf_course\",\n        \"id\": 358,\n        \"order\": 369,\n        \"prevSize\": 24,\n        \"code\": 60229,\n        \"name\": \"golf_course\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 358\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 810c166 0 298-132 298-298s-132-298-298-298-298 132-298 298 132 298 298 298zM894 470h88v84h-88c-20 178-162 320-340 340v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c20-178 162-320 340-340v-88h84v88c178 20 320 162 340 340zM512 342c94 0 170 76 170 170s-76 170-170 170-170-76-170-170 76-170 170-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"my_location\"\n        ],\n        \"defaultCode\": 58716,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"gps_fixed, my_location\",\n        \"id\": 359,\n        \"order\": 370,\n        \"prevSize\": 24,\n        \"code\": 58716,\n        \"name\": \"my_location\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 359\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 810c166 0 298-132 298-298s-132-298-298-298-298 132-298 298 132 298 298 298zM894 470h88v84h-88c-20 178-162 320-340 340v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c20-178 162-320 340-340v-88h84v88c178 20 320 162 340 340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"location_searching\"\n        ],\n        \"defaultCode\": 57783,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"gps_not_fixed, location_searching\",\n        \"id\": 360,\n        \"order\": 371,\n        \"prevSize\": 24,\n        \"code\": 57783,\n        \"name\": \"location_searching\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 360\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M694 748l-418-418c-38 50-62 114-62 182 0 166 132 298 298 298 68 0 132-24 182-62zM128 182l54-54 714 714-54 54-88-88c-56 46-124 78-200 86v88h-84v-88c-178-20-320-162-340-340h-88v-84h88c8-76 40-144 86-200zM894 470h88v84h-88c-6 48-20 96-42 136l-64-64c14-34 22-74 22-114 0-166-132-298-298-298-40 0-80 8-114 22l-64-64c42-22 88-36 136-42v-88h84v88c178 20 320 162 340 340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"location_disabled\"\n        ],\n        \"defaultCode\": 57782,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"gps_off, location_disabled\",\n        \"id\": 361,\n        \"order\": 372,\n        \"prevSize\": 24,\n        \"code\": 57782,\n        \"name\": \"location_disabled\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 361\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 736l-264 160 70-300-232-202 306-26 120-282 120 282 306 26-232 202 70 300z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"star\"\n        ],\n        \"defaultCode\": 59448,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"grade, star\",\n        \"id\": 362,\n        \"order\": 373,\n        \"prevSize\": 24,\n        \"code\": 59448,\n        \"name\": \"star2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 362\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 470v-256h-596v256h84v84h86v86h86v-86h84v86h86v-86h86v-84h84zM726 768v-86h-86v86h86zM554 768v-86h-84v86h84zM384 768v-86h-86v86h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM298 384h86v86h-86v-86zM640 384h86v86h-86v-86zM470 384h84v86h86v84h-86v-84h-84v84h-86v-84h86v-86zM726 554v86h84v-86h-84zM298 554h-84v86h84v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"gradient\"\n        ],\n        \"defaultCode\": 58345,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"gradient\",\n        \"id\": 363,\n        \"order\": 374,\n        \"prevSize\": 24,\n        \"code\": 58345,\n        \"name\": \"gradient\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 363\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 170c46 0 86 40 86 86s-40 86-86 86-84-40-84-86 38-86 84-86zM598 342c46 0 84 38 84 84s-38 86-84 86-86-40-86-86 40-84 86-84zM768 512c46 0 86 40 86 86s-40 84-86 84-86-38-86-84 40-86 86-86zM598 682c46 0 84 40 84 86s-38 86-84 86-86-40-86-86 40-86 86-86zM768 342c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86zM256 682c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 342c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84zM426 512c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"grain\"\n        ],\n        \"defaultCode\": 58346,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"grain\",\n        \"id\": 364,\n        \"order\": 375,\n        \"prevSize\": 24,\n        \"code\": 58346,\n        \"name\": \"grain\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 364\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 426h86v172h-86v-172zM640 768v-512h86v512h-86zM128 598v-172h86v172h-86zM470 938v-852h84v852h-84zM298 768v-512h86v512h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"graphic_eq\"\n        ],\n        \"defaultCode\": 57784,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"graphic_eq\",\n        \"id\": 365,\n        \"order\": 376,\n        \"prevSize\": 24,\n        \"code\": 57784,\n        \"name\": \"graphic_eq\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 365\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 854h62l-62-62v62zM598 854v-148l-24-24h-148v172h172zM342 598v-148l-24-24h-148v172h172zM342 854v-172h-172v172h172zM170 280v62h62zM426 536v62h62zM54 54l916 916-54 54-86-86h-660c-46 0-84-38-84-84v-660l-86-86zM682 170v172h172v-172h-172zM342 170h-62l-86-84h660c46 0 84 38 84 84v660l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"grid_off\"\n        ],\n        \"defaultCode\": 58347,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"grid_off\",\n        \"id\": 366,\n        \"order\": 377,\n        \"prevSize\": 24,\n        \"code\": 58347,\n        \"name\": \"grid_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 366\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 342v-172h-172v172h172zM854 598v-172h-172v172h172zM854 854v-172h-172v172h172zM598 342v-172h-172v172h172zM598 598v-172h-172v172h172zM598 854v-172h-172v172h172zM342 342v-172h-172v172h172zM342 598v-172h-172v172h172zM342 854v-172h-172v172h172zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"grid_on\"\n        ],\n        \"defaultCode\": 58348,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"grid_on\",\n        \"id\": 367,\n        \"order\": 378,\n        \"prevSize\": 24,\n        \"code\": 58348,\n        \"name\": \"grid_on\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 367\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 554c100 0 300 50 300 150v106h-256v-106c0-64-34-112-84-148 14-2 28-2 40-2zM342 554c100 0 298 50 298 150v106h-598v-106c0-100 200-150 300-150zM342 470c-70 0-128-58-128-128s58-128 128-128 126 58 126 128-56 128-126 128zM682 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"people\"\n        ],\n        \"defaultCode\": 59387,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"group, people\",\n        \"id\": 368,\n        \"order\": 379,\n        \"prevSize\": 24,\n        \"code\": 59387,\n        \"name\": \"people\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 368\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 554c86 0 256 42 256 128v86h-512v-86c0-86 170-128 256-128zM838 562c86 14 186 54 186 120v86h-128v-86c0-50-22-88-58-120zM554 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM768 470c-14 0-26-2-38-6 24-34 38-76 38-122s-14-88-38-122c12-4 24-6 38-6 70 0 128 58 128 128s-58 128-128 128zM342 426v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"group_add\"\n        ],\n        \"defaultCode\": 59376,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"group_add\",\n        \"id\": 369,\n        \"order\": 380,\n        \"prevSize\": 24,\n        \"code\": 59376,\n        \"name\": \"group_add\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 369\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 746c58 0 108-48 108-106s-50-106-108-106-106 48-106 106 48 106 106 106zM406 342c0 58 48 106 106 106s106-48 106-106-48-108-106-108-106 50-106 108zM342 746c58 0 106-48 106-106s-48-106-106-106-108 48-108 106 50 106 108 106zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"group_work\"\n        ],\n        \"defaultCode\": 59526,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"group_work\",\n        \"id\": 370,\n        \"order\": 381,\n        \"prevSize\": 24,\n        \"code\": 59526,\n        \"name\": \"group_work\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 370\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M618 576v-128h86v128h-86zM554 384v256h172c24 0 42-18 42-42v-172c0-24-18-42-42-42h-172zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hd\"\n        ],\n        \"defaultCode\": 57426,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hd\",\n        \"id\": 371,\n        \"order\": 382,\n        \"prevSize\": 24,\n        \"code\": 57426,\n        \"name\": \"hd\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 371\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M106 106c270.848 271.818 543.632 541.7 816 812l-48 46-324-324h-144v-146l-64-64v210h-64v-106h-86v106h-64v-256h64v86h86v-86h16l-234-234zM554 448h-16l-64-64h80c34 0 64 30 64 64v82l-64-64v-18zM746 448v42h86v-42h-86zM746 640h-16l-48-46v-210h150c34 0 64 30 64 64v42c0 26-16 52-38 60l38 90h-64l-38-86h-48v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hdr_off\"\n        ],\n        \"defaultCode\": 58349,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hdr_off\",\n        \"id\": 372,\n        \"order\": 383,\n        \"prevSize\": 24,\n        \"code\": 58349,\n        \"name\": \"hdr_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 372\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 576v-128h-84v128h84zM554 384c34 0 64 30 64 64v128c0 34-30 64-64 64h-148v-256h148zM278 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86zM832 490v-42h-86v42h86zM896 490c0 26-16 48-38 60l38 90h-64l-38-86h-48v86h-64v-256h150c34 0 64 30 64 64v42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hdr_on\"\n        ],\n        \"defaultCode\": 58350,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hdr_on\",\n        \"id\": 373,\n        \"order\": 384,\n        \"prevSize\": 24,\n        \"code\": 58350,\n        \"name\": \"hdr_on\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 373\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 598c46 0 84-40 84-86s-38-86-84-86-86 40-86 86 40 86 86 86zM214 342c94 0 170 76 170 170s-76 170-170 170-172-76-172-170 78-170 172-170zM726 256c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hdr_strong\"\n        ],\n        \"defaultCode\": 58353,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hdr_strong\",\n        \"id\": 374,\n        \"order\": 385,\n        \"prevSize\": 24,\n        \"code\": 58353,\n        \"name\": \"hdr_strong\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 374\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 682c94 0 170-76 170-170s-76-170-170-170-172 76-172 170 78 170 172 170zM726 256c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM214 342c94 0 170 76 170 170s-76 170-170 170-172-76-172-170 78-170 172-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hdr_weak\"\n        ],\n        \"defaultCode\": 58354,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hdr_weak\",\n        \"id\": 375,\n        \"order\": 386,\n        \"prevSize\": 24,\n        \"code\": 58354,\n        \"name\": \"hdr_weak\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 375\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 42c212 0 384 172 384 384v300c0 70-58 128-128 128h-128v-342h170v-86c0-166-132-298-298-298s-298 132-298 298v86h170v342h-128c-70 0-128-58-128-128v-300c0-212 172-384 384-384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"headset\"\n        ],\n        \"defaultCode\": 58128,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"headset\",\n        \"id\": 376,\n        \"order\": 387,\n        \"prevSize\": 24,\n        \"code\": 58128,\n        \"name\": \"headset\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 376\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 42c212 0 384 172 384 384v428c0 70-58 128-128 128h-256v-86h298v-42h-170v-342h170v-86c0-166-132-298-298-298s-298 132-298 298v86h170v342h-128c-70 0-128-58-128-128v-300c0-212 172-384 384-384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"headset_mic\"\n        ],\n        \"defaultCode\": 58129,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"headset_mic\",\n        \"id\": 377,\n        \"order\": 388,\n        \"prevSize\": 24,\n        \"code\": 58129,\n        \"name\": \"headset_mic\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 377\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M710 868l156-156-156-154-154 156zM598 470c-24 0-44 18-44 42s20 42 44 42 42-18 42-42-18-42-42-42zM512 640c24 0 42-18 42-42s-18-44-42-44-42 20-42 44 18 42 42 42zM426 554c24 0 44-18 44-42s-20-42-44-42-42 18-42 42 18 42 42 42zM312 468l154-156-154-154-156 156zM512 384c-24 0-42 18-42 42s18 44 42 44 42-20 42-44-18-42-42-42zM756 512l170 170c16 16 16 44 0 60l-184 186c-8 8-18 12-30 12s-24-4-32-12l-168-170-170 170c-16 16-44 16-60 0l-186-186c-16-16-16-44 0-60l170-170-170-168c-16-16-16-46 0-62l186-184c8-8 20-12 30-12 12 0 22 4 30 12l170 170 168-170c16-16 46-16 62 0l184 184c16 16 16 46 0 62z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"healing\"\n        ],\n        \"defaultCode\": 58355,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"healing\",\n        \"id\": 378,\n        \"order\": 389,\n        \"prevSize\": 24,\n        \"code\": 58355,\n        \"name\": \"healing\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 378\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M490 384c0-58 50-106 108-106s106 48 106 106-48 106-106 106-108-48-108-106zM326 112c-70 70-112 166-112 272s42 202 112 272l-60 60c-84-84-138-202-138-332s54-248 138-332zM726 854c46 0 84-40 84-86h86c0 94-76 170-170 170-24 0-48-4-70-14-58-30-92-74-118-152-14-42-38-62-72-88-38-28-84-64-122-134-30-54-46-112-46-166 0-168 132-298 300-298s298 130 298 298h-86c0-120-92-214-212-214s-214 94-214 214c0 40 12 86 34 126 30 56 66 82 100 108 40 30 80 62 102 128 22 64 42 84 72 100 8 4 22 8 34 8z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hearing\"\n        ],\n        \"defaultCode\": 57379,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hearing\",\n        \"id\": 379,\n        \"order\": 390,\n        \"prevSize\": 24,\n        \"code\": 57379,\n        \"name\": \"hearing\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 379\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M642 480c24-24 40-58 40-96 0-94-76-170-170-170s-170 76-170 170h84c0-46 40-86 86-86s86 40 86 86c0 24-10 44-26 60l-52 54c-30 32-50 74-50 120v22h84c0-64 20-88 50-120zM554 810v-84h-84v84h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"help\"\n        ],\n        \"defaultCode\": 59527,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"help\",\n        \"id\": 380,\n        \"order\": 391,\n        \"prevSize\": 24,\n        \"code\": 59527,\n        \"name\": \"help\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 380\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 256c94 0 170 76 170 170 0 106-128 118-128 214h-84c0-138 128-128 128-214 0-46-40-84-86-84s-86 38-86 84h-84c0-94 76-170 170-170zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 768v-86h84v86h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"help_outline\"\n        ],\n        \"defaultCode\": 59645,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"help_outline\",\n        \"id\": 381,\n        \"order\": 392,\n        \"prevSize\": 24,\n        \"code\": 59645,\n        \"name\": \"help_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 381\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M618 576v-128h86v128h-86zM768 598v-172c0-24-18-42-42-42h-128c-24 0-44 18-44 42v172c0 24 20 42 44 42h32v64h64v-64h32c24 0 42-18 42-42zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 170c46 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"high_quality\"\n        ],\n        \"defaultCode\": 57380,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"high_quality\",\n        \"id\": 382,\n        \"order\": 393,\n        \"prevSize\": 24,\n        \"code\": 57380,\n        \"name\": \"high_quality\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 382\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M724 280l90-90 60 60-90 92zM150 250l60-60 90 90-60 62zM470 86h84v128h-84v-128zM256 598v-214h512v214l-128 128v212h-256v-212z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"highlight\"\n        ],\n        \"defaultCode\": 57951,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"highlight\",\n        \"id\": 383,\n        \"order\": 394,\n        \"prevSize\": 24,\n        \"code\": 57951,\n        \"name\": \"highlight\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 383\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM622 342l60 60-110 110 110 110-60 60-110-110-110 110-60-60 110-110-110-110 60-60 110 110z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"highlight_off\"\n        ],\n        \"defaultCode\": 59528,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"highlight_off\",\n        \"id\": 384,\n        \"order\": 395,\n        \"prevSize\": 24,\n        \"code\": 59528,\n        \"name\": \"highlight_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 384\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 342h64v180l150 90-32 52-182-110v-212zM554 128c212 0 384 172 384 384s-172 384-384 384c-106 0-200-42-270-112l60-62c54 54 128 88 210 88 166 0 300-132 300-298s-134-298-300-298-298 132-298 298h128l-172 172-4-6-166-166h128c0-212 172-384 384-384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"restore\"\n        ],\n        \"defaultCode\": 59571,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"history, restore\",\n        \"id\": 385,\n        \"order\": 396,\n        \"prevSize\": 24,\n        \"code\": 59571,\n        \"name\": \"restore\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 385\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 854h-212v-342h-128l426-384 426 384h-128v342h-212v-256h-172v256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"home\"\n        ],\n        \"defaultCode\": 59530,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"home\",\n        \"id\": 386,\n        \"order\": 397,\n        \"prevSize\": 24,\n        \"code\": 59530,\n        \"name\": \"home2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 386\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M626 250c44 42 62 100 54 158l-2 18h-82l6-24c6.113-34.638-6.812-70.812-32-96-44-44-64-102-56-160l2-18h82l-4 26c-6 34 4 68 28 94zM796 250c44 42 64 100 56 158l-4 18h-80l4-24c6-34-4-68-28-94l-4-2c-44-44-64-102-56-160l4-18h80l-4 26c-6 34 4 68 28 94zM810 854v-256h-84v256h84zM640 854v-256h-86v256h86zM470 854v-256h-86v256h86zM298 854v-256h-84v256h84zM476 512h462v342c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-342h128v-32c0-52 44-96 96-96 30.769 0 56.308 16.308 72 32l58 66c10 12 22 20 36 30zM214 256c0-48 36-86 84-86s86 38 86 86-38 86-86 86-84-38-84-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hot_tub\"\n        ],\n        \"defaultCode\": 60230,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hot_tub\",\n        \"id\": 387,\n        \"order\": 398,\n        \"prevSize\": 24,\n        \"code\": 60230,\n        \"name\": \"hot_tub\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 387\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 298c94 0 172 78 172 172v384h-86v-128h-768v128h-86v-640h86v384h342v-300h340zM298 554c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_hotel\"\n        ],\n        \"defaultCode\": 58697,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hotel, local_hotel\",\n        \"id\": 388,\n        \"order\": 399,\n        \"prevSize\": 24,\n        \"code\": 58697,\n        \"name\": \"local_hotel\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 388\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 490l170-170v-150h-340v150zM682 704l-170-170-170 170v150h340v-150zM256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hourglass_empty\"\n        ],\n        \"defaultCode\": 59531,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hourglass_empty\",\n        \"id\": 389,\n        \"order\": 400,\n        \"prevSize\": 24,\n        \"code\": 59531,\n        \"name\": \"hourglass_empty\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 389\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"hourglass_full\"\n        ],\n        \"defaultCode\": 59532,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"hourglass_full\",\n        \"id\": 390,\n        \"order\": 401,\n        \"prevSize\": 24,\n        \"code\": 59532,\n        \"name\": \"hourglass_full\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 390\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M918 490v-42h-86v42h86zM918 384c34 0 64 30 64 64v42c0 34-30 64-64 64h-86v86h-64v-256h150zM534 448v-64h192v64h-64v192h-64v-192h-64zM298 448v-64h192v64h-64v192h-64v-192h-64zM192 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"http\"\n        ],\n        \"defaultCode\": 59650,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"http\",\n        \"id\": 391,\n        \"order\": 402,\n        \"prevSize\": 24,\n        \"code\": 59650,\n        \"name\": \"http\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 391\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M644 342v-86c0-72-60-132-132-132s-132 60-132 132v86h264zM512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lock\"\n        ],\n        \"defaultCode\": 59543,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"https, lock\",\n        \"id\": 392,\n        \"order\": 403,\n        \"prevSize\": 24,\n        \"code\": 59543,\n        \"name\": \"lock2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 392\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M362 576l-148 192h596l-192-256-148 192zM896 810c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596c46 0 86 40 86 86v596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"photo\"\n        ],\n        \"defaultCode\": 58384,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"image, insert_photo, photo\",\n        \"id\": 393,\n        \"order\": 404,\n        \"prevSize\": 24,\n        \"code\": 58384,\n        \"name\": \"photo2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 393\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 768v-512h-684v512h684zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM512 426v86h-86v-86h86zM342 426v86h-86v-86h86zM682 598v84h-84v-84h84zM682 426v86h-84v-86h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"image_aspect_ratio\"\n        ],\n        \"defaultCode\": 58357,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"image_aspect_ratio\",\n        \"id\": 394,\n        \"order\": 405,\n        \"prevSize\": 24,\n        \"code\": 58357,\n        \"name\": \"image_aspect_ratio\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 394\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 790v-492c-46-14-98-20-150-20-72 0-176 28-234 64v490c58-36 162-64 234-64 52 0 104 8 150 22zM746 192c88.409 0 181.498 22.075 236 64v622c0 10-12 22-22 22-4 0-6 0-10-2-60-32-134-44-204-44-72 0-176 28-234 64-62-46-150-64-234-64-62 0-146 18-204 46-4 0-6 2-10 2-10 0-22-10-22-20v-626c62-46 152-64 236-64s172 18 234 64c62-46 150-64 234-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"import_contacts\"\n        ],\n        \"defaultCode\": 57568,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"import_contacts\",\n        \"id\": 395,\n        \"order\": 406,\n        \"prevSize\": 24,\n        \"code\": 57568,\n        \"name\": \"import_contacts\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 395\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 726h128l-170 170-170-170h128v-300h84v300zM384 128l170 170h-128v300h-84v-300h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"import_export\"\n        ],\n        \"defaultCode\": 57539,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"import_export\",\n        \"id\": 396,\n        \"order\": 407,\n        \"prevSize\": 24,\n        \"code\": 57539,\n        \"name\": \"import_export\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 396\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M510 384h130l-106 76 40 124-104-78-106 78 40-124-106-76h130l42-128zM854 86c46 0 84 36 84 84v214h-84v-214h-768v512h554v86h-86v86h86v84h-342v-84h86v-86h-298c-48 0-86-40-86-86v-512c0-48 38-84 86-84h768zM982 854v-300h-214v300h214zM982 470c24 0 42 18 42 42v384c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-384c0-24 18-42 42-42h214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"important_devices\"\n        ],\n        \"defaultCode\": 59666,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"important_devices\",\n        \"id\": 397,\n        \"order\": 408,\n        \"prevSize\": 24,\n        \"code\": 59666,\n        \"name\": \"important_devices\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 397\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 640v-426h-598v426h172c0 70 58 128 128 128s128-58 128-128h170zM810 128c46 0 86 38 86 86v596c0 46-40 86-86 86h-598c-48 0-84-40-84-86v-596c0-48 36-86 84-86h598z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"inbox\"\n        ],\n        \"defaultCode\": 57686,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"inbox\",\n        \"id\": 398,\n        \"order\": 409,\n        \"prevSize\": 24,\n        \"code\": 57686,\n        \"name\": \"inbox2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 398\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554v-84h-428v84h428zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"indeterminate_check_box\"\n        ],\n        \"defaultCode\": 59657,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"indeterminate_check_box\",\n        \"id\": 399,\n        \"order\": 410,\n        \"prevSize\": 24,\n        \"code\": 59657,\n        \"name\": \"indeterminate_check_box\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 399\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 384v-86h-84v86h84zM554 726v-256h-84v256h84zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"info\"\n        ],\n        \"defaultCode\": 59534,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"info\",\n        \"id\": 400,\n        \"order\": 411,\n        \"prevSize\": 24,\n        \"code\": 59534,\n        \"name\": \"info2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 400\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 384v-86h84v86h-84zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM470 726v-256h84v256h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"info_outline\"\n        ],\n        \"defaultCode\": 59535,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"info_outline\",\n        \"id\": 401,\n        \"order\": 412,\n        \"prevSize\": 24,\n        \"code\": 59535,\n        \"name\": \"info_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 401\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 682v-128h-428v-84h428v-128l170 170zM896 128c46 0 86 38 86 86v598c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-172h86v172h768v-600h-768v172h-86v-170c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"input\"\n        ],\n        \"defaultCode\": 59536,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"input\",\n        \"id\": 402,\n        \"order\": 413,\n        \"prevSize\": 24,\n        \"code\": 59536,\n        \"name\": \"input\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 402\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86c46 0 84 38 84 84v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"insert_comment\"\n        ],\n        \"defaultCode\": 57932,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"insert_comment\",\n        \"id\": 403,\n        \"order\": 414,\n        \"prevSize\": 24,\n        \"code\": 57932,\n        \"name\": \"insert_comment\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 403\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 384h236l-236-234v234zM256 86h342l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"insert_drive_file\"\n        ],\n        \"defaultCode\": 57933,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"insert_drive_file\",\n        \"id\": 404,\n        \"order\": 415,\n        \"prevSize\": 24,\n        \"code\": 57933,\n        \"name\": \"insert_drive_file\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 404\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 746c-100 0-184-60-218-148h436c-34 88-118 148-218 148zM362 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM662 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tag_faces\"\n        ],\n        \"defaultCode\": 58400,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"insert_emoticon, mood, tag_faces\",\n        \"id\": 405,\n        \"order\": 416,\n        \"prevSize\": 24,\n        \"code\": 58400,\n        \"name\": \"tag_faces\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 405\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 298c118 0 212 96 212 214s-94 214-212 214h-172v-82h172c72 0 132-60 132-132s-60-132-132-132h-172v-82h172zM342 554v-84h340v84h-340zM166 512c0 72 60 132 132 132h172v82h-172c-118 0-212-96-212-214s94-214 212-214h172v82h-172c-72 0-132 60-132 132z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"link\"\n        ],\n        \"defaultCode\": 57687,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"insert_link, link\",\n        \"id\": 406,\n        \"order\": 417,\n        \"prevSize\": 24,\n        \"code\": 57687,\n        \"name\": \"link2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 406\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 836v-618l-180 180c-48 48-76 114-76 182 0 137.583 118.4 256 256 256zM754 338c134 134 134 348 0 482-66 66-154 100-242 100s-176-34-242-100c-134-134-134-348 0-482l242-242z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"invert_colors\"\n        ],\n        \"defaultCode\": 59537,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"invert_colors\",\n        \"id\": 407,\n        \"order\": 418,\n        \"prevSize\": 24,\n        \"code\": 59537,\n        \"name\": \"invert_colors\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 407\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 218l-98 96-60-60 158-158 242 242c104 104 126 258 68 384l-310-308v-196zM512 836v-206l-204-204c-34 44-52 98-52 154 0 137.583 118.4 256 256 256zM882 890l14 16-54 54-116-116c-62 50-138 76-214 76-88 0-176-34-242-100-124-126-132-322-24-456l-118-118 54-54c232.99 232.99 464.706 467.32 700 698z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"invert_colors_off\"\n        ],\n        \"defaultCode\": 57540,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"invert_colors_off\",\n        \"id\": 408,\n        \"order\": 419,\n        \"prevSize\": 24,\n        \"code\": 57540,\n        \"name\": \"invert_colors_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 408\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 726h-214v-64h214v64zM810 810v-596l-596 596h596zM234 320v64h86v86h64v-86h86v-64h-86v-86h-64v86h-86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"iso\"\n        ],\n        \"defaultCode\": 58358,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"iso\",\n        \"id\": 409,\n        \"order\": 420,\n        \"prevSize\": 24,\n        \"code\": 58358,\n        \"name\": \"iso\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 409\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 426v-84h-84v84h84zM810 554v-84h-84v84h84zM682 426v-84h-84v84h84zM682 554v-84h-84v84h84zM682 726v-86h-340v86h340zM298 426v-84h-84v84h84zM298 554v-84h-84v84h84zM342 470v84h84v-84h-84zM342 342v84h84v-84h-84zM470 470v84h84v-84h-84zM470 342v84h84v-84h-84zM854 214c46 0 84 38 84 84v428c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-428c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard\"\n        ],\n        \"defaultCode\": 58130,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard\",\n        \"id\": 410,\n        \"order\": 421,\n        \"prevSize\": 24,\n        \"code\": 58130,\n        \"name\": \"keyboard\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 410\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M316 334l196 196 196-196 60 60-256 256-256-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_arrow_down\"\n        ],\n        \"defaultCode\": 58131,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_arrow_down\",\n        \"id\": 411,\n        \"order\": 422,\n        \"prevSize\": 24,\n        \"code\": 58131,\n        \"name\": \"keyboard_arrow_down\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 411\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M658 686l-60 60-256-256 256-256 60 60-196 196z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_arrow_left\"\n        ],\n        \"defaultCode\": 58132,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_arrow_left\",\n        \"id\": 412,\n        \"order\": 423,\n        \"prevSize\": 24,\n        \"code\": 58132,\n        \"name\": \"keyboard_arrow_left\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 412\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M366 698l196-196-196-196 60-60 256 256-256 256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_arrow_right\"\n        ],\n        \"defaultCode\": 58133,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_arrow_right\",\n        \"id\": 413,\n        \"order\": 424,\n        \"prevSize\": 24,\n        \"code\": 58133,\n        \"name\": \"keyboard_arrow_right\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 413\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M316 658l-60-60 256-256 256 256-60 60-196-196z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_arrow_up\"\n        ],\n        \"defaultCode\": 58134,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_arrow_up\",\n        \"id\": 414,\n        \"order\": 425,\n        \"prevSize\": 24,\n        \"code\": 58134,\n        \"name\": \"keyboard_arrow_up\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 414\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 470v84h-604l152 154-60 60-256-256 256-256 60 60-152 154h604z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_backspace\"\n        ],\n        \"defaultCode\": 58135,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_backspace\",\n        \"id\": 415,\n        \"order\": 426,\n        \"prevSize\": 24,\n        \"code\": 58135,\n        \"name\": \"keyboard_backspace\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 415\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 768v-86h512v86h-512zM512 358l-196 196-60-60 256-256 256 256-60 60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_capslock\"\n        ],\n        \"defaultCode\": 58136,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_capslock\",\n        \"id\": 416,\n        \"order\": 427,\n        \"prevSize\": 24,\n        \"code\": 58136,\n        \"name\": \"keyboard_capslock\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 416\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 982l-170-172h340zM810 342v-86h-84v86h84zM810 470v-86h-84v86h84zM682 342v-86h-84v86h84zM682 470v-86h-84v86h84zM682 640v-86h-340v86h340zM298 342v-86h-84v86h84zM298 470v-86h-84v86h84zM342 384v86h84v-86h-84zM342 256v86h84v-86h-84zM470 384v86h84v-86h-84zM470 256v86h84v-86h-84zM854 128c46 0 84 40 84 86v426c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_hide\"\n        ],\n        \"defaultCode\": 58138,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_hide\",\n        \"id\": 417,\n        \"order\": 428,\n        \"prevSize\": 24,\n        \"code\": 58138,\n        \"name\": \"keyboard_hide\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 417\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 298h86v256h-648l154 154-60 60-256-256 256-256 60 60-154 154h562v-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_return\"\n        ],\n        \"defaultCode\": 58139,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_return\",\n        \"id\": 418,\n        \"order\": 429,\n        \"prevSize\": 24,\n        \"code\": 58139,\n        \"name\": \"keyboard_return\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 418\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 256h84v512h-84v-512zM494 316l60-60 256 256-256 256-60-60 154-154h-606v-84h606z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_tab\"\n        ],\n        \"defaultCode\": 58140,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_tab\",\n        \"id\": 419,\n        \"order\": 430,\n        \"prevSize\": 24,\n        \"code\": 58140,\n        \"name\": \"keyboard_tab\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 419\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M738 512h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 218 226 218s226-90 226-218zM512 640c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"keyboard_voice\"\n        ],\n        \"defaultCode\": 58141,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"keyboard_voice\",\n        \"id\": 420,\n        \"order\": 431,\n        \"prevSize\": 24,\n        \"code\": 58141,\n        \"name\": \"keyboard_voice\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 420\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 512h84v214h-84v-214zM342 214h84v128h-84v-128zM768 384v-214h-512v214h512zM768 854v-386h-512v386h512zM768 86c46 0 86 36 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-48 40-84 86-84h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"kitchen\"\n        ],\n        \"defaultCode\": 60231,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"kitchen\",\n        \"id\": 421,\n        \"order\": 432,\n        \"prevSize\": 24,\n        \"code\": 60231,\n        \"name\": \"kitchen\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 421\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M752 250l186 262-186 262c-16 22-42 36-70 36h-468c-46 0-86-38-86-84v-428c0-46 40-84 86-84h468c28 0 54 14 70 36z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"label\"\n        ],\n        \"defaultCode\": 59538,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"label\",\n        \"id\": 422,\n        \"order\": 433,\n        \"prevSize\": 24,\n        \"code\": 59538,\n        \"name\": \"label\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 422\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 726l152-214-152-214h-468v428h468zM752 250l186 262-186 262c-16 22-42 36-70 36h-468c-46 0-86-38-86-84v-428c0-46 40-84 86-84h468c28 0 54 14 70 36z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"label_outline\"\n        ],\n        \"defaultCode\": 59539,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"label_outline\",\n        \"id\": 423,\n        \"order\": 434,\n        \"prevSize\": 24,\n        \"code\": 59539,\n        \"name\": \"label_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 423\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M698 598h144c6-28 12-56 12-86s-6-58-12-86h-144c4 28 6 56 6 86s-2 58-6 86zM622 834c78-26 146-82 186-152h-126c-14 54-34 104-60 152zM612 598c4-28 6-56 6-86s-2-58-6-86h-200c-4 28-6 56-6 86s2 58 6 86h200zM512 852c36-52 64-108 82-170h-164c18 62 46 118 82 170zM342 342c14-54 34-104 60-152-78 26-146 82-186 152h126zM216 682c40 70 108 126 186 152-26-48-46-98-60-152h-126zM182 598h144c-4-28-6-56-6-86s2-58 6-86h-144c-6 28-12 56-12 86s6 58 12 86zM512 172c-36 52-64 108-82 170h164c-18-62-46-118-82-170zM808 342c-40-70-108-126-186-152 26 48 46 98 60 152h126zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"language\"\n        ],\n        \"defaultCode\": 59540,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"language\",\n        \"id\": 424,\n        \"order\": 435,\n        \"prevSize\": 24,\n        \"code\": 59540,\n        \"name\": \"language2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 424\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 640v-426h-684v426h684zM598 768v-42h-172v42h172zM938 768h86v86h-1024v-86h86v-640h852v640z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"laptop_chromebook\"\n        ],\n        \"defaultCode\": 58143,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"laptop_chromebook\",\n        \"id\": 425,\n        \"order\": 436,\n        \"prevSize\": 24,\n        \"code\": 58143,\n        \"name\": \"laptop_chromebook\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 425\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 810c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM170 214v468h684v-468h-684zM854 768h170c0 46-40 86-86 86h-852c-46 0-86-40-86-86h170c-46 0-84-40-84-86v-468c0-46 38-86 84-86h684c46 0 84 40 84 86v468c0 46-38 86-84 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"laptop_mac\"\n        ],\n        \"defaultCode\": 58144,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"laptop_mac\",\n        \"id\": 426,\n        \"order\": 437,\n        \"prevSize\": 24,\n        \"code\": 58144,\n        \"name\": \"laptop_mac\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 426\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 214v426h684v-426h-684zM854 768h170v86h-1024v-86h170v-42c-46 0-84-40-84-86v-426c0-46 38-86 84-86h684c46 0 84 40 84 86v426c0 46-38 86-84 86v42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"laptop_windows\"\n        ],\n        \"defaultCode\": 58145,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"laptop_windows\",\n        \"id\": 427,\n        \"order\": 438,\n        \"prevSize\": 24,\n        \"code\": 58145,\n        \"name\": \"laptop_windows\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 427\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 256h86v512h-86v-512zM238 316l60-60 256 256-256 256-60-60 196-196z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"last_page\"\n        ],\n        \"defaultCode\": 58845,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"last_page\",\n        \"id\": 428,\n        \"order\": 439,\n        \"prevSize\": 24,\n        \"code\": 58845,\n        \"name\": \"last_page\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 428\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 128h298v298h-86v-152l-418 418-60-60 418-418h-152v-86zM810 810v-298h86v298c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h298v86h-298v596h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"open_in_new\"\n        ],\n        \"defaultCode\": 59550,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"launch, open_in_new\",\n        \"id\": 429,\n        \"order\": 440,\n        \"prevSize\": 24,\n        \"code\": 59550,\n        \"name\": \"open_in_new\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 429\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 682c-128.024-99.309-255.626-199.040-384-298l384-298 384 298c-128.375 98.958-255.974 198.693-384 298zM512 792l314-246 70 54-384 298-384-298 70-54z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"layers\"\n        ],\n        \"defaultCode\": 58683,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"layers\",\n        \"id\": 430,\n        \"order\": 441,\n        \"prevSize\": 24,\n        \"code\": 58683,\n        \"name\": \"layers\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 430\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M140 42l798 800-54 54-160-162-212 164-384-298 70-54 314 246 150-118-60-60-90 68c-128.024-99.309-255.626-199.040-384-298l138-108-180-180zM896 384c-57.761 44.239-114.863 89.137-172 134l-336-336 124-96zM846 640l-62-62 50-38 62 60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"layers_clear\"\n        ],\n        \"defaultCode\": 58684,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"layers_clear\",\n        \"id\": 431,\n        \"order\": 442,\n        \"prevSize\": 24,\n        \"code\": 58684,\n        \"name\": \"layers_clear\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 431\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 896c0-166 132-298 298-298v84c-118 0-214 96-214 214h-84zM768 896c0-70 58-128 128-128v128h-128zM426 896c0-258 212-470 470-470v86c-212 0-384 172-384 384h-86zM426 128c0 166-132 298-298 298v-84c118 0 214-96 214-214h84zM598 128c0 258-210 470-470 470v-86c212 0 384-172 384-384h86zM256 128c0 70-58 128-128 128v-128h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"leak_add\"\n        ],\n        \"defaultCode\": 58360,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"leak_add\",\n        \"id\": 432,\n        \"order\": 443,\n        \"prevSize\": 24,\n        \"code\": 58360,\n        \"name\": \"leak_add\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 432\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M656 494c70-42 152-68 240-68v86c-64 0-124 16-178 44zM850 688l-68-68c34-14 74-22 114-22v84c-16 0-32 2-46 6zM598 128c0 88-26 170-68 240l-62-62c28-54 44-114 44-178h86zM128 182l54-54 714 714-54 54-122-122c-24 34-38 76-38 122h-84c0-68 24-132 62-182l-62-60c-54 66-86 150-86 242h-86c0-116 42-222 112-304l-106-106c-82 70-188 112-304 112v-86c92 0 178-32 244-86l-62-62c-50 38-114 62-182 62v-84c46 0 88-14 122-38zM426 128c0 40-8 80-22 114l-68-68c4-14 6-30 6-46h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"leak_remove\"\n        ],\n        \"defaultCode\": 58361,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"leak_remove\",\n        \"id\": 433,\n        \"order\": 444,\n        \"prevSize\": 24,\n        \"code\": 58361,\n        \"name\": \"leak_remove\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 433\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lens\"\n        ],\n        \"defaultCode\": 58362,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"lens\",\n        \"id\": 434,\n        \"order\": 445,\n        \"prevSize\": 24,\n        \"code\": 58362,\n        \"name\": \"lens\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 434\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 298v-84h-426v84h426zM640 640v-86h-256v86h256zM810 470v-86h-426v86h426zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"library_books\"\n        ],\n        \"defaultCode\": 57391,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"library_books\",\n        \"id\": 435,\n        \"order\": 446,\n        \"prevSize\": 24,\n        \"code\": 57391,\n        \"name\": \"library_books\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 435\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84zM768 298v-84h-170v234c-18-14-40-22-64-22-58 0-108 50-108 108s50 106 108 106 106-48 106-106v-236h128zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"library_music\"\n        ],\n        \"defaultCode\": 57392,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"library_music\",\n        \"id\": 436,\n        \"order\": 447,\n        \"prevSize\": 24,\n        \"code\": 57392,\n        \"name\": \"library_music\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 436\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M634 558c58-40 92-104 92-174 0-118-96-214-214-214s-214 96-214 214c0 70 34 134 92 174l36 26v98h172v-98zM512 86c164 0 298 134 298 298 0 102-50 190-128 244v98c0 24-18 42-42 42h-256c-24 0-42-18-42-42v-98c-78-54-128-142-128-244 0-164 134-298 298-298zM384 896v-42h256v42c0 24-18 42-42 42h-172c-24 0-42-18-42-42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lightbulb_outline\"\n        ],\n        \"defaultCode\": 59663,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"lightbulb_outline\",\n        \"id\": 437,\n        \"order\": 448,\n        \"prevSize\": 24,\n        \"code\": 59663,\n        \"name\": \"lightbulb_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 437\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 170h768v172h-768v-172zM554 512v-86h342v86h-342zM128 512v-86h342v86h-342zM810 854v-86h86v86h-86zM640 854v-86h86v86h-86zM470 854v-86h84v86h-84zM298 854v-86h86v86h-86zM128 854v-86h86v86h-86zM682 682v-84h214v84h-214zM406 682v-84h212v84h-212zM128 682v-84h214v84h-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"line_style\"\n        ],\n        \"defaultCode\": 59673,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"line_style\",\n        \"id\": 438,\n        \"order\": 449,\n        \"prevSize\": 24,\n        \"code\": 59673,\n        \"name\": \"line_style\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 438\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 170h768v172h-768v-172zM128 554v-128h768v128h-768zM128 854v-44h768v44h-768zM128 726v-86h768v86h-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"line_weight\"\n        ],\n        \"defaultCode\": 59674,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"line_weight\",\n        \"id\": 439,\n        \"order\": 450,\n        \"prevSize\": 24,\n        \"code\": 59674,\n        \"name\": \"line_weight\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 439\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M832 406c58 0 106 48 106 106s-48 106-106 106c-44 0-82-26-98-64h-124c-16 38-54 64-98 64s-82-26-98-64h-124c-16 38-54 64-98 64-58 0-106-48-106-106s48-106 106-106c44 0 82 26 98 64h124c16-38 54-64 98-64s82 26 98 64h124c16-38 54-64 98-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"linear_scale\"\n        ],\n        \"defaultCode\": 57952,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"linear_scale\",\n        \"id\": 440,\n        \"order\": 451,\n        \"prevSize\": 24,\n        \"code\": 57952,\n        \"name\": \"linear_scale\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 440\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 256c48 0 86 38 86 86h56c0-78-64-142-142-142v56zM512 810c118 0 214-94 214-212s-96-214-214-214-214 96-214 214 96 212 214 212zM726 384h212v470c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-512c0-46 38-86 84-86h136l78-86h256v128c48 0 86 38 86 86zM682 142v-56c142 0 256 114 256 256h-56c0-110-90-200-200-200zM376 598c0-76 60-138 136-138s136 62 136 138-60 136-136 136-136-60-136-136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"linked_camera\"\n        ],\n        \"defaultCode\": 58424,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"linked_camera\",\n        \"id\": 441,\n        \"order\": 452,\n        \"prevSize\": 24,\n        \"code\": 58424,\n        \"name\": \"linked_camera\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 441\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 298h598v86h-598v-86zM298 726v-86h598v86h-598zM298 554v-84h598v84h-598zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"list\"\n        ],\n        \"defaultCode\": 59542,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"list\",\n        \"id\": 442,\n        \"order\": 453,\n        \"prevSize\": 24,\n        \"code\": 59542,\n        \"name\": \"list2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 442\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M642 438c24-24 40-58 40-96 0-94-76-172-170-172s-170 78-170 172h84c0-46 40-86 86-86s86 40 86 86c0 24-10 44-26 60l-52 54c-30 32-50 74-50 120v22h84c0-64 20-90 50-122zM554 768v-86h-84v86h84zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-48 0-86-40-86-86v-598c0-46 38-84 86-84h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"live_help\"\n        ],\n        \"defaultCode\": 57542,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"live_help\",\n        \"id\": 443,\n        \"order\": 454,\n        \"prevSize\": 24,\n        \"code\": 57542,\n        \"name\": \"live_help\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 443\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 426l298 172-298 170v-342zM896 854v-512h-768v512h768zM896 256c46 0 86 38 86 86v512c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-512c0-48 40-86 86-86h324l-140-140 30-30 170 170 170-170 30 30-140 140h324z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"live_tv\"\n        ],\n        \"defaultCode\": 58937,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"live_tv\",\n        \"id\": 444,\n        \"order\": 455,\n        \"prevSize\": 24,\n        \"code\": 58937,\n        \"name\": \"live_tv\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 444\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M664 716l-46-174 140-116-180-10-66-168-66 168-182 10 142 116-46 174 152-98zM854 512c0 46 38 86 84 86v170c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-170c48 0 84-40 84-86s-38-86-84-86v-170c0-46 38-86 84-86h684c46 0 84 40 84 86v170c-46 0-84 40-84 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_play\"\n        ],\n        \"defaultCode\": 58707,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_activity, local_play\",\n        \"id\": 445,\n        \"order\": 456,\n        \"prevSize\": 24,\n        \"code\": 58707,\n        \"name\": \"local_play\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 445\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 682l-342-106v234l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l340-214v-234c0-36 28-64 64-64s64 28 64 64v234l342 214v84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_airport\"\n        ],\n        \"defaultCode\": 58685,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_airport\",\n        \"id\": 446,\n        \"order\": 457,\n        \"prevSize\": 24,\n        \"code\": 58685,\n        \"name\": \"local_airport\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 446\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 768v-512h-684v512h684zM854 170c48 0 84 38 84 86v512c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-512c0-48 36-86 84-86h684zM470 726v-44h-86v-84h170v-44h-128c-24 0-42-18-42-42v-128c0-24 18-42 42-42h44v-44h84v44h86v84h-170v44h128c24 0 42 18 42 42v128c0 24-18 42-42 42h-44v44h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_atm\"\n        ],\n        \"defaultCode\": 58686,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_atm\",\n        \"id\": 447,\n        \"order\": 458,\n        \"prevSize\": 24,\n        \"code\": 58686,\n        \"name\": \"local_atm\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 447\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M318 298h388l76-84h-540zM896 214l-342 384v212h214v86h-512v-86h214v-212l-342-384v-86h768v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_bar\"\n        ],\n        \"defaultCode\": 58688,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_bar\",\n        \"id\": 448,\n        \"order\": 459,\n        \"prevSize\": 24,\n        \"code\": 58688,\n        \"name\": \"local_bar\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 448\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 896v-86h768v86h-768zM854 342v-128h-86v128h86zM854 128c48 0 84 38 84 86v128c0 48-36 84-84 84h-86v128c0 94-76 172-170 172h-256c-94 0-172-78-172-172v-426h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_cafe\"\n        ],\n        \"defaultCode\": 58689,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_cafe\",\n        \"id\": 449,\n        \"order\": 460,\n        \"prevSize\": 24,\n        \"code\": 58689,\n        \"name\": \"local_cafe\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 449\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 554h596l-64-192h-468zM746 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 768c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 342l88 256v340c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-42h-512v42c0 24-18 44-42 44h-44c-24 0-42-20-42-44v-340l88-256c8-26 34-44 62-44h468c28 0 54 18 62 44zM298 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64zM512 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64zM726 214c-36 0-64-28-64-64 0-42 64-116 64-116s64 74 64 116c0 36-28 64-64 64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_car_wash\"\n        ],\n        \"defaultCode\": 58690,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_car_wash\",\n        \"id\": 450,\n        \"order\": 461,\n        \"prevSize\": 24,\n        \"code\": 58690,\n        \"name\": \"local_car_wash\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 450\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 512v-214h-42v86h-42v-86h-44v128h86v86h42zM470 426v-128h-128v44h84v42h-84v128h128v-42h-86v-44h86zM810 298h128v556h-340v-172h-172v172h-340v-556h128v-128h596v128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_convenience_store\"\n        ],\n        \"defaultCode\": 58691,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_convenience_store\",\n        \"id\": 451,\n        \"order\": 462,\n        \"prevSize\": 24,\n        \"code\": 58691,\n        \"name\": \"local_convenience_store\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 451\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M634 492l-62 62 294 294-60 60-294-294-294 294-60-60 416-416c-30-66-8-158 60-226 82-82 198-96 260-34s48 180-34 262c-68 68-160 88-226 58zM346 570l-180-180c-66-66-66-174 0-240l300 298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"restaurant_menu\"\n        ],\n        \"defaultCode\": 58721,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_dining, restaurant_menu\",\n        \"id\": 452,\n        \"order\": 463,\n        \"prevSize\": 24,\n        \"code\": 58721,\n        \"name\": \"restaurant_menu\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 452\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M782 342l18-172h-576l18 172h540zM512 810c70 0 128-58 128-128 0-86-128-230-128-230s-128 144-128 230c0 70 58 128 128 128zM128 86h768l-86 778c-6 42-40 74-84 74h-428c-44 0-78-32-84-74z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_drink\"\n        ],\n        \"defaultCode\": 58692,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_drink\",\n        \"id\": 453,\n        \"order\": 464,\n        \"prevSize\": 24,\n        \"code\": 58692,\n        \"name\": \"local_drink\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 453\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 234c-58 0-106 50-106 108s48 106 106 106 106-48 106-106-48-108-106-108zM238 438c0-42 26-78 62-96-36-18-62-54-62-96 0-58 50-108 108-108 22 0 42 8 60 20v-8c0-58 48-108 106-108s106 50 106 108v8c18-12 38-20 60-20 58 0 108 50 108 108 0 42-26 78-62 96 36 18 62 54 62 96 0 58-50 106-108 106-22 0-42-6-60-18v8c0 58-48 106-106 106s-106-48-106-106v-8c-18 12-38 18-60 18-58 0-108-48-108-106zM512 938c-212 0-384-172-384-384 212 0 384 172 384 384zM512 938c0-212 172-384 384-384 0 212-172 384-384 384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_florist\"\n        ],\n        \"defaultCode\": 58693,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_florist\",\n        \"id\": 454,\n        \"order\": 465,\n        \"prevSize\": 24,\n        \"code\": 58693,\n        \"name\": \"local_florist\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 454\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 426c24 0 42-18 42-42s-18-42-42-42-42 18-42 42 18 42 42 42zM512 426v-212h-256v212h256zM844 308c20 20 30 46 30 76v406c0 58-48 106-106 106s-106-48-106-106v-214h-64v320h-428v-682c0-46 40-86 86-86h256c46 0 86 40 86 86v298h42c46 0 86 40 86 86v192c0 24 18 42 42 42s42-18 42-42v-308c-14 6-26 8-42 8-58 0-106-48-106-106 0-46 28-84 68-100l-90-90 46-44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_gas_station\"\n        ],\n        \"defaultCode\": 58694,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_gas_station\",\n        \"id\": 455,\n        \"order\": 466,\n        \"prevSize\": 24,\n        \"code\": 58694,\n        \"name\": \"local_gas_station\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 455\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 768c46 0 84 40 84 86s-38 84-84 84-86-38-86-84 40-86 86-86zM42 86h140l40 84h632c24 0 42 20 42 44 0 8-2 14-6 20l-152 276c-14 26-42 44-74 44h-318l-38 70-2 6c0 6 4 10 10 10h494v86h-512c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-154-324h-86v-84zM298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shopping_cart\"\n        ],\n        \"defaultCode\": 59596,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_grocery_store, shopping_cart\",\n        \"id\": 456,\n        \"order\": 467,\n        \"prevSize\": 24,\n        \"code\": 59596,\n        \"name\": \"shopping_cart\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 456\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 598v-172h-170v-170h-172v170h-170v172h170v170h172v-170h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_hospital\"\n        ],\n        \"defaultCode\": 58696,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_hospital\",\n        \"id\": 457,\n        \"order\": 468,\n        \"prevSize\": 24,\n        \"code\": 58696,\n        \"name\": \"local_hospital\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 457\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM298 170c-24 0-42 20-42 44s18 42 42 42 44-18 44-42-20-44-44-44zM426 170c-24 0-42 20-42 44s18 42 42 42 44-18 44-42-20-44-44-44zM768 86c48 0 86 36 86 84v684c0 48-38 84-86 84h-512c-48 0-86-36-86-84v-684c0-48 38-84 86-84h512zM392 718l240-242c66 66 66 176 0 242s-174 66-240 0z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_laundry_service\"\n        ],\n        \"defaultCode\": 58698,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_laundry_service\",\n        \"id\": 458,\n        \"order\": 469,\n        \"prevSize\": 24,\n        \"code\": 58698,\n        \"name\": \"local_laundry_service\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 458\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 342c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM512 492c100-94 236-150 384-150v468c-148 0-284 58-384 152-100-94-236-152-384-152v-468c148 0 284 56 384 150z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_library\"\n        ],\n        \"defaultCode\": 58699,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_library\",\n        \"id\": 459,\n        \"order\": 470,\n        \"prevSize\": 24,\n        \"code\": 58699,\n        \"name\": \"local_library\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 459\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 554c118 0 214-94 214-212h-86c0 70-58 128-128 128s-128-58-128-128h-86c0 118 96 212 214 212zM512 128c-70 0-128 58-128 128h256c0-70-58-128-128-128zM810 256c46 0 86 40 86 86v512c0 46-40 84-86 84h-596c-46 0-86-38-86-84v-512c0-46 40-86 86-86h84c0-118 96-214 214-214s214 96 214 214h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_mall\"\n        ],\n        \"defaultCode\": 58700,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_mall\",\n        \"id\": 460,\n        \"order\": 471,\n        \"prevSize\": 24,\n        \"code\": 58700,\n        \"name\": \"local_mall\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 460\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 384v-86h-86v86h86zM768 554v-84h-86v84h86zM768 726v-86h-86v86h86zM342 384v-86h-86v86h86zM342 554v-84h-86v84h86zM342 726v-86h-86v86h86zM768 128h86v768h-86v-86h-86v86h-340v-86h-86v86h-86v-768h86v86h86v-86h340v86h86v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"theaters\"\n        ],\n        \"defaultCode\": 59610,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_movies, theaters\",\n        \"id\": 461,\n        \"order\": 472,\n        \"prevSize\": 24,\n        \"code\": 59610,\n        \"name\": \"theaters\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 461\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M234 298c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM914 494c16 16 24 36 24 60s-8 44-24 60l-300 300c-16 16-36 24-60 24s-44-8-60-24l-384-384c-16-16-24-36-24-60v-300c0-46 38-84 84-84h300c24 0 44 8 60 24z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_offer\"\n        ],\n        \"defaultCode\": 58702,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_offer\",\n        \"id\": 462,\n        \"order\": 473,\n        \"prevSize\": 24,\n        \"code\": 58702,\n        \"name\": \"local_offer\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 462\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M564 470c46 0 84-40 84-86s-38-86-84-86h-138v172h138zM554 128c142 0 256 114 256 256s-114 256-256 256h-128v256h-170v-768h298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_parking\"\n        ],\n        \"defaultCode\": 58703,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_parking\",\n        \"id\": 463,\n        \"order\": 474,\n        \"prevSize\": 24,\n        \"code\": 58703,\n        \"name\": \"local_parking\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 463\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM896 214v84l-86 256 86 256v86h-768v-86l86-256-86-256v-84h542l62-172 100 38-48 134h112z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_pharmacy\"\n        ],\n        \"defaultCode\": 58704,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_pharmacy\",\n        \"id\": 464,\n        \"order\": 475,\n        \"prevSize\": 24,\n        \"code\": 58704,\n        \"name\": \"local_pharmacy\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 464\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 640c46 0 86-40 86-86s-40-84-86-84-86 38-86 84 40 86 86 86zM298 298c0 46 40 86 86 86s86-40 86-86-40-84-86-84-86 38-86 84zM512 86c152 0 290 66 384 170l-384 682-384-682c94-104 232-170 384-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_pizza\"\n        ],\n        \"defaultCode\": 58706,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_pizza\",\n        \"id\": 465,\n        \"order\": 476,\n        \"prevSize\": 24,\n        \"code\": 58706,\n        \"name\": \"local_pizza\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 465\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 128v170h-512v-170h512zM810 512c24 0 44-18 44-42s-20-44-44-44-42 20-42 44 18 42 42 42zM682 810v-212h-340v212h340zM810 342c70 0 128 58 128 128v256h-170v170h-512v-170h-170v-256c0-70 58-128 128-128h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"print\"\n        ],\n        \"defaultCode\": 59565,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_printshop, print\",\n        \"id\": 466,\n        \"order\": 477,\n        \"prevSize\": 24,\n        \"code\": 59565,\n        \"name\": \"print2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 466\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM832 406h-106v106h190zM256 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM854 342l128 170v214h-86c0 70-58 128-128 128s-128-58-128-128h-256c0 70-58 128-128 128s-128-58-128-128h-86v-470c0-46 40-86 86-86h598v172h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_shipping\"\n        ],\n        \"defaultCode\": 58712,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_shipping\",\n        \"id\": 467,\n        \"order\": 478,\n        \"prevSize\": 24,\n        \"code\": 58712,\n        \"name\": \"local_shipping\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 467\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 470h596l-64-192h-468zM746 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM278 682c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM808 256l88 256v342c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-44h-512v44c0 24-18 42-42 42h-44c-24 0-42-18-42-42v-342l88-256c8-26 34-42 62-42h106v-86h256v86h106c28 0 54 16 62 42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"local_taxi\"\n        ],\n        \"defaultCode\": 58713,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"local_taxi\",\n        \"id\": 468,\n        \"order\": 479,\n        \"prevSize\": 24,\n        \"code\": 58713,\n        \"name\": \"local_taxi\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 468\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 640v-86h-84v86h84zM810 810v-84h-84v84h84zM554 298v-84h-84v84h84zM554 470v-86h-84v86h84zM554 640v-86h-84v86h84zM554 810v-84h-84v84h84zM298 470v-86h-84v86h84zM298 640v-86h-84v86h84zM298 810v-84h-84v84h84zM640 470h256v426h-768v-598h256v-84l128-128 128 128v256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"location_city\"\n        ],\n        \"defaultCode\": 59377,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"location_city\",\n        \"id\": 469,\n        \"order\": 480,\n        \"prevSize\": 24,\n        \"code\": 59377,\n        \"name\": \"location_city\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 469\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M500 490c118.353 116.98 236.568 234.098 354 352l-54 54-144-142c-72 106-144 184-144 184s-298-330-298-554c0-22 4-44 8-66l-136-136 54-54 356 356zM512 278c-32 0-58 14-78 36l-138-136c54-56 132-92 216-92 166 0 298 132 298 298 0 72-30 154-72 234l-154-156c22-20 34-46 34-78 0-58-48-106-106-106z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"location_off\"\n        ],\n        \"defaultCode\": 57543,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"location_off\",\n        \"id\": 470,\n        \"order\": 481,\n        \"prevSize\": 24,\n        \"code\": 57543,\n        \"name\": \"location_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 470\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 490c58 0 106-48 106-106s-48-106-106-106-106 48-106 106 48 106 106 106zM512 86c166 0 298 132 298 298 0 224-298 554-298 554s-298-330-298-554c0-166 132-298 298-298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"room\",\n          \"place\"\n        ],\n        \"defaultCode\": 59572,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"location_on, place, room\",\n        \"id\": 471,\n        \"order\": 482,\n        \"prevSize\": 24,\n        \"code\": 59572,\n        \"name\": \"room\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 471\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 854v-428h-512v428h512zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h388v-86c0-72-60-132-132-132s-132 60-132 132h-82c0-118 96-214 214-214s214 96 214 214v86h42zM512 726c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lock_open\"\n        ],\n        \"defaultCode\": 59544,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"lock_open\",\n        \"id\": 472,\n        \"order\": 483,\n        \"prevSize\": 24,\n        \"code\": 59544,\n        \"name\": \"lock_open\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 472\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 854v-428h-512v428h512zM380 256v86h264v-86c0-72-60-132-132-132s-132 60-132 132zM768 342c46 0 86 38 86 84v428c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-428c0-46 40-84 86-84h42v-86c0-118 96-214 214-214s214 96 214 214v86h42zM512 726c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"lock_outline\"\n        ],\n        \"defaultCode\": 59545,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"lock_outline\",\n        \"id\": 473,\n        \"order\": 484,\n        \"prevSize\": 24,\n        \"code\": 59545,\n        \"name\": \"lock_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 473\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 256c258 0 470 212 470 470h-86c0-212-172-384-384-384s-384 172-384 384h-86c0-258 212-470 470-470zM512 426c164 0 298 136 298 300h-84c0-118-96-214-214-214s-214 96-214 214h-84c0-164 134-300 298-300z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"looks\"\n        ],\n        \"defaultCode\": 58364,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"looks\",\n        \"id\": 474,\n        \"order\": 485,\n        \"prevSize\": 24,\n        \"code\": 58364,\n        \"name\": \"looks\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 474\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 448v-64c0-48-38-86-84-86h-172v86h172v86h-86v84h86v86h-172v86h172c46 0 84-38 84-86v-64c0-36-28-64-64-64 36 0 64-28 64-64zM812 128c46 0 84 40 84 86v596c0 46-38 86-84 86h-598c-46 0-86-40-86-86v-596c0-46 40-86 86-86h598z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"looks_3\"\n        ],\n        \"defaultCode\": 58363,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"looks_3\",\n        \"id\": 475,\n        \"order\": 486,\n        \"prevSize\": 24,\n        \"code\": 58363,\n        \"name\": \"looks_3\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 475\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 726v-428h-86v172h-84v-172h-86v256h170v172h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"looks_4\"\n        ],\n        \"defaultCode\": 58365,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"looks_4\",\n        \"id\": 476,\n        \"order\": 487,\n        \"prevSize\": 24,\n        \"code\": 58365,\n        \"name\": \"looks_4\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 476\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 384v-86h-256v256h170v86h-170v86h170c46 0 86-38 86-86v-86c0-48-40-84-86-84h-84v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"looks_5\"\n        ],\n        \"defaultCode\": 58366,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"looks_5\",\n        \"id\": 477,\n        \"order\": 488,\n        \"prevSize\": 24,\n        \"code\": 58366,\n        \"name\": \"looks_5\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 477\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 384v-86h-170c-46 0-86 38-86 86v256c0 48 40 86 86 86h84c46 0 86-38 86-86v-86c0-48-40-84-86-84h-84v-86h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM470 640v-86h84v86h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"looks_6\"\n        ],\n        \"defaultCode\": 58367,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"looks_6\",\n        \"id\": 478,\n        \"order\": 489,\n        \"prevSize\": 24,\n        \"code\": 58367,\n        \"name\": \"looks_6\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 478\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 726v-428h-172v86h86v342h86zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"looks_one\"\n        ],\n        \"defaultCode\": 58368,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"looks_one\",\n        \"id\": 479,\n        \"order\": 490,\n        \"prevSize\": 24,\n        \"code\": 58368,\n        \"name\": \"looks_one\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 479\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 470v-86c0-48-40-86-86-86h-170v86h170v86h-84c-46 0-86 36-86 84v172h256v-86h-170v-86h84c46 0 86-36 86-84zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"looks_two\"\n        ],\n        \"defaultCode\": 58369,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"looks_two\",\n        \"id\": 480,\n        \"order\": 491,\n        \"prevSize\": 24,\n        \"code\": 58369,\n        \"name\": \"looks_two\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 480\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 768v-128l170 170-170 172v-128c-188 0-342-154-342-342 0-66 20-130 54-182l62 62c-20 36-30 76-30 120 0 142 114 256 256 256zM512 170c188 0 342 154 342 342 0 66-20 130-54 182l-62-62c20-36 30-76 30-120 0-142-114-256-256-256v128l-170-170 170-172v128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sync\"\n        ],\n        \"defaultCode\": 58919,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"loop, sync\",\n        \"id\": 481,\n        \"order\": 492,\n        \"prevSize\": 24,\n        \"code\": 58919,\n        \"name\": \"sync\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 481\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426v342c0 46-38 84-84 84h-342c-236 0-426-190-426-426s190-426 426-426zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"loupe\"\n        ],\n        \"defaultCode\": 58370,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"loupe\",\n        \"id\": 482,\n        \"order\": 493,\n        \"prevSize\": 24,\n        \"code\": 58370,\n        \"name\": \"loupe\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 482\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 490c0-152 124-276 276-276h150v84h-150c-106 0-192 86-192 192s86 192 192 192h22v-84l128 128-128 128v-86h-22c-152 0-276-126-276-278zM598 682h340v86h-340v-86zM598 448h340v86h-340v-86zM598 214h340v84h-340v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"low_priority\"\n        ],\n        \"defaultCode\": 57709,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"low_priority\",\n        \"id\": 483,\n        \"order\": 494,\n        \"prevSize\": 24,\n        \"code\": 57709,\n        \"name\": \"low_priority\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 483\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M736 652c20-20 32-46 32-76 0-58-48-106-106-106-30 0-56 10-76 30l-32 32-30-32c-20-20-46-30-76-30-58 0-106 48-106 106 0 30 10 56 30 76l182 182zM234 298c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM914 494c16 16 24 36 24 60s-8 44-24 60l-300 300c-16 16-36 24-60 24s-44-8-60-24l-384-384c-16-16-24-36-24-60v-300c0-46 38-84 84-84h300c24 0 44 8 60 24z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"loyalty\"\n        ],\n        \"defaultCode\": 59546,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"loyalty\",\n        \"id\": 484,\n        \"order\": 495,\n        \"prevSize\": 24,\n        \"code\": 59546,\n        \"name\": \"loyalty\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 484\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 470l342-214h-684zM854 768v-426l-342 212-342-212v426h684zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mail_outline\"\n        ],\n        \"defaultCode\": 57569,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"mail_outline\",\n        \"id\": 485,\n        \"order\": 496,\n        \"prevSize\": 24,\n        \"code\": 57569,\n        \"name\": \"mail_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 485\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 810v-506l-256-90v506zM874 128c12 0 22 10 22 22v644c0 10-8 18-16 20l-240 82-256-90-228 88-6 2c-12 0-22-10-22-22v-644c0-10 8-18 16-20l240-82 256 90 228-88z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"map\"\n        ],\n        \"defaultCode\": 58715,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"map\",\n        \"id\": 486,\n        \"order\": 497,\n        \"prevSize\": 24,\n        \"code\": 58715,\n        \"name\": \"map2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 486\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 256c46 0 84 40 84 86v512c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-512c0-46 38-86 84-86h86v-256h342v170h-256v342h84v-256h428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"markunread_mailbox\"\n        ],\n        \"defaultCode\": 59547,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"markunread_mailbox\",\n        \"id\": 487,\n        \"order\": 498,\n        \"prevSize\": 24,\n        \"code\": 59547,\n        \"name\": \"markunread_mailbox\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 487\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 726v-428h-428v428h428zM896 470h-86v84h86v86h-86v86c0 46-38 84-84 84h-86v86h-86v-86h-84v86h-86v-86h-86c-46 0-84-38-84-84v-86h-86v-86h86v-84h-86v-86h86v-86c0-46 38-84 84-84h86v-86h86v86h84v-86h86v86h86c46 0 84 38 84 84v86h86v86zM554 554v-84h-84v84h84zM640 384v256h-256v-256h256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"memory\"\n        ],\n        \"defaultCode\": 58146,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"memory\",\n        \"id\": 488,\n        \"order\": 499,\n        \"prevSize\": 24,\n        \"code\": 58146,\n        \"name\": \"memory\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 488\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 256h768v86h-768v-86zM128 554v-84h768v84h-768zM128 768v-86h768v86h-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"menu\"\n        ],\n        \"defaultCode\": 58834,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"menu\",\n        \"id\": 489,\n        \"order\": 500,\n        \"prevSize\": 24,\n        \"code\": 58834,\n        \"name\": \"menu\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 489\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"message\"\n        ],\n        \"defaultCode\": 57545,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"message\",\n        \"id\": 490,\n        \"order\": 501,\n        \"prevSize\": 24,\n        \"code\": 57545,\n        \"name\": \"message\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 490\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M738 470h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216s226-88 226-216zM512 598c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mic\"\n        ],\n        \"defaultCode\": 57385,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"mic\",\n        \"id\": 491,\n        \"order\": 502,\n        \"prevSize\": 24,\n        \"code\": 57385,\n        \"name\": \"mic\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 491\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M738 470h72c0 146-116 266-256 286v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216s226-88 226-216zM460 210v264c0 28 24 50 52 50s50-22 50-50l2-264c0-28-24-52-52-52s-52 24-52 52zM512 598c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mic_none\"\n        ],\n        \"defaultCode\": 57386,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"mic_none\",\n        \"id\": 492,\n        \"order\": 503,\n        \"prevSize\": 24,\n        \"code\": 57386,\n        \"name\": \"mic_none\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 492\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M182 128l714 714-54 54-178-178c-32 20-72 32-110 38v140h-84v-140c-140-20-256-140-256-286h72c0 128 108 216 226 216 34 0 68-8 98-22l-70-70c-8 2-18 4-28 4-70 0-128-58-128-128v-32l-256-256zM640 476l-256-254v-8c0-70 58-128 128-128s128 58 128 128v262zM810 470c0 50-14 98-38 140l-52-54c12-26 18-54 18-86h72z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mic_off\"\n        ],\n        \"defaultCode\": 57387,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"mic_off\",\n        \"id\": 493,\n        \"order\": 504,\n        \"prevSize\": 24,\n        \"code\": 57387,\n        \"name\": \"mic_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 493\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 598h596l-192-256-148 192-108-128zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mms\"\n        ],\n        \"defaultCode\": 58904,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"mms\",\n        \"id\": 494,\n        \"order\": 505,\n        \"prevSize\": 24,\n        \"code\": 58904,\n        \"name\": \"mms\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 494\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 170v768l-170-170h-598c-46 0-84-40-84-86v-512c0-46 38-84 84-84h684c46 0 84 38 84 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mode_comment\"\n        ],\n        \"defaultCode\": 57939,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"mode_comment\",\n        \"id\": 495,\n        \"order\": 506,\n        \"prevSize\": 24,\n        \"code\": 57939,\n        \"name\": \"mode_comment\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 495\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M572 772c74-14 134-56 134-134 0-108-94-146-180-168s-112-46-112-82c0-40 38-70 102-70 68 0 92 32 94 80h84c-2-66-42-124-122-144v-84h-114v84c-74 16-132 62-132 136 0 88 72 130 178 156 96 22 114 56 114 92 0 26-18 68-102 68-78 0-110-36-114-80h-84c4 82 68 128 140 144v84h114v-82zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"monetization_on\"\n        ],\n        \"defaultCode\": 57955,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"monetization_on\",\n        \"id\": 496,\n        \"order\": 507,\n        \"prevSize\": 24,\n        \"code\": 57955,\n        \"name\": \"monetization_on\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 496\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M228 174l622 624-54 54-94-96c-26 24-64 40-104 48v92h-128v-92c-82-18-152-70-158-164h94c4 50 40 90 128 90 58 0 88-20 102-40l-150-148c-100-30-166-80-166-168l-146-146zM534 294c-26 0-48 4-66 12l-62-62c20-10 42-18 64-24v-92h128v94c90 22 134 88 136 162h-94c-2-54-30-90-106-90z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"money_off\"\n        ],\n        \"defaultCode\": 57948,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"money_off\",\n        \"id\": 497,\n        \"order\": 508,\n        \"prevSize\": 24,\n        \"code\": 57948,\n        \"name\": \"money_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 497\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 810v-512h-342v44c120 0 214 92 214 212s-94 214-214 214v-76c-76 0-136-62-136-138s60-136 136-136v274c76 0 136-62 136-138s-60-136-136-136v-76c-120 0-214 92-214 212s94 214 214 214v42h342zM854 214c46 0 84 38 84 84v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-84 84-84h138l76-86h256l76 86h138z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"monochrome_photos\"\n        ],\n        \"defaultCode\": 58371,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"monochrome_photos\",\n        \"id\": 498,\n        \"order\": 509,\n        \"prevSize\": 24,\n        \"code\": 58371,\n        \"name\": \"monochrome_photos\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 498\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 598c100 0 184 60 218 148h-436c34-88 118-148 218-148zM362 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM662 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mood_bad\"\n        ],\n        \"defaultCode\": 59379,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"mood_bad\",\n        \"id\": 499,\n        \"order\": 510,\n        \"prevSize\": 24,\n        \"code\": 59379,\n        \"name\": \"mood_bad\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 499\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM598 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM384 576c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM938 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-636c-30 0-56-16-72-38l-230-346 230-346c16-22 38-38 68-38h640z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"more\"\n        ],\n        \"defaultCode\": 58905,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"more\",\n        \"id\": 500,\n        \"order\": 511,\n        \"prevSize\": 24,\n        \"code\": 58905,\n        \"name\": \"more\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 500\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM768 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM256 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"more_horiz\"\n        ],\n        \"defaultCode\": 58835,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"more_horiz\",\n        \"id\": 501,\n        \"order\": 512,\n        \"prevSize\": 24,\n        \"code\": 58835,\n        \"name\": \"more_horiz\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 501\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 682c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM512 342c-46 0-86-40-86-86s40-86 86-86 86 40 86 86-40 86-86 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"more_vert\"\n        ],\n        \"defaultCode\": 58836,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"more_vert\",\n        \"id\": 502,\n        \"order\": 513,\n        \"prevSize\": 24,\n        \"code\": 58836,\n        \"name\": \"more_vert\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 502\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 726c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM334 640h-120v-86h120c-18-50-66-84-120-84-70 0-128 58-128 128s58 128 128 128c54 0 102-36 120-86zM830 386c110 8 194 98 194 212 0 120-94 212-214 212s-212-92-212-212c0-26 4-52 12-76l-118 118h-70c-20 98-104 170-208 170-120 0-214-92-214-212s94-214 214-214h494l-86-86h-152v-84h188z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"motorcycle\"\n        ],\n        \"defaultCode\": 59675,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"motorcycle\",\n        \"id\": 503,\n        \"order\": 514,\n        \"prevSize\": 24,\n        \"code\": 59675,\n        \"name\": \"motorcycle2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 503\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 46v338h-300c0-174 132-318 300-338zM170 640v-170h684v170c0 188-154 342-342 342s-342-154-342-342zM554 46c168 20 300 164 300 338h-300v-338z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"mouse\"\n        ],\n        \"defaultCode\": 58147,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"mouse\",\n        \"id\": 504,\n        \"order\": 515,\n        \"prevSize\": 24,\n        \"code\": 58147,\n        \"name\": \"mouse\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 504\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 426l-170 172-170-172h84v-128h172v128h84zM810 640v-426h-598v426h172c0 70 58 128 128 128s128-58 128-128h170zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-598c-48 0-84-40-84-86v-596c0-46 36-86 84-86h598z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"move_to_inbox\"\n        ],\n        \"defaultCode\": 57704,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"move_to_inbox\",\n        \"id\": 505,\n        \"order\": 516,\n        \"prevSize\": 24,\n        \"code\": 57704,\n        \"name\": \"move_to_inbox\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 505\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 170h170v598c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h44l84 172h128l-84-172h84l86 172h128l-86-172h86l86 172h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"movie_creation\"\n        ],\n        \"defaultCode\": 58372,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"movie, movie_creation\",\n        \"id\": 506,\n        \"order\": 517,\n        \"prevSize\": 24,\n        \"code\": 58372,\n        \"name\": \"movie_creation\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 506\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M722 510l88-40-88-40-40-88-40 88-88 40 88 40 40 88zM480 650l118-52-118-54-54-118-52 118-118 54 118 52 52 118zM768 170h170v598c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h44l84 128h128l-84-128h84l86 128h128l-86-128h86l86 128h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"movie_filter\"\n        ],\n        \"defaultCode\": 58426,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"movie_filter\",\n        \"id\": 507,\n        \"order\": 518,\n        \"prevSize\": 24,\n        \"code\": 58426,\n        \"name\": \"movie_filter\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 507\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 296l-130 146c46 74 78 164 88 262h-86c-8-70-30-136-62-194l-172 194-170-172-256 256-64-64 320-320 170 172 122-140c-72-84-172-138-288-138-100 0-192 40-264 104l-60-60c88-78 200-128 324-128 138 0 258 60 346 158l122-136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"multiline_chart\"\n        ],\n        \"defaultCode\": 59103,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"multiline_chart\",\n        \"id\": 508,\n        \"order\": 519,\n        \"prevSize\": 24,\n        \"code\": 59103,\n        \"name\": \"multiline_chart\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 508\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 128h256v170h-170v428c0 94-78 170-172 170s-170-76-170-170 76-172 170-172c32 0 60 10 86 24v-450z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"music_note\"\n        ],\n        \"defaultCode\": 58373,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"music_note\",\n        \"id\": 509,\n        \"order\": 520,\n        \"prevSize\": 24,\n        \"code\": 58373,\n        \"name\": \"music_note\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 509\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 640c0-70 58-128 128-128 14 0 28 4 42 8v-264h214v86h-128v300c0 70-58 126-128 126s-128-58-128-128zM896 810v-596h-768v596h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"music_video\"\n        ],\n        \"defaultCode\": 57443,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"music_video\",\n        \"id\": 510,\n        \"order\": 521,\n        \"prevSize\": 24,\n        \"code\": 57443,\n        \"name\": \"music_video\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 510\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 688v166h256v84h-596v-84h256v-168c-142-24-250-146-250-294 0-166 134-300 300-300s298 134 298 300c0 154-116 278-264 296z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"nature\"\n        ],\n        \"defaultCode\": 58374,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"nature\",\n        \"id\": 511,\n        \"order\": 522,\n        \"prevSize\": 24,\n        \"code\": 58374,\n        \"name\": \"nature\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 511\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M192 470c-36 0-64-28-64-64s28-64 64-64 64 28 64 64-28 64-64 64zM946 392c0 154-116 278-264 296v166h128v84h-682v-212h-42v-172c0-24 18-42 42-42h128c24 0 42 18 42 42v172h-42v128h342v-168c-142-24-250-146-250-294 0-166 134-300 300-300s298 134 298 300z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"nature_people\"\n        ],\n        \"defaultCode\": 58375,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"nature_people\",\n        \"id\": 512,\n        \"order\": 523,\n        \"prevSize\": 24,\n        \"code\": 58375,\n        \"name\": \"nature_people\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 512\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 86l320 780-30 30-290-128-290 128-30-30z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"navigation\"\n        ],\n        \"defaultCode\": 58717,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"navigation\",\n        \"id\": 513,\n        \"order\": 524,\n        \"prevSize\": 24,\n        \"code\": 58717,\n        \"name\": \"navigation\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 513\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 128l-322 768h-42l-112-292-292-112v-42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"near_me\"\n        ],\n        \"defaultCode\": 58729,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"near_me\",\n        \"id\": 514,\n        \"order\": 525,\n        \"prevSize\": 24,\n        \"code\": 58729,\n        \"name\": \"near_me\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 514\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 938h-852l852-852v852z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"network_cell\"\n        ],\n        \"defaultCode\": 57785,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"network_cell\",\n        \"id\": 515,\n        \"order\": 526,\n        \"prevSize\": 24,\n        \"code\": 57785,\n        \"name\": \"network_cell\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 515\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 554c86-86 200-126 312-122l-56 122c-62 8-124 38-172 86zM726 640c-16-16-34-30-52-42l24-124c40 20 78 46 112 80zM896 470c-52-52-112-92-176-118l22-120c88 32 170 82 240 152zM42 384c160-160 380-220 586-184l-50 114c-160-20-328 34-450 156zM678 214c12 0 22 8 22 20l-104 550v2c-8 38-44 68-84 68-48 0-86-38-86-86 0-14 4-30 10-42l222-496c3.146-9.438 9.124-16 20-16z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"network_check\"\n        ],\n        \"defaultCode\": 58944,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"network_check\",\n        \"id\": 516,\n        \"order\": 527,\n        \"prevSize\": 24,\n        \"code\": 58944,\n        \"name\": \"network_check\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 516\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 682v-64c0-36-28-64-64-64s-64 28-64 64v64h128zM938 682c24 0 44 20 44 44v170c0 24-20 42-44 42h-212c-24 0-44-18-44-42v-170c0-24 20-44 44-44v-64c0-58 48-106 106-106s106 48 106 106v64zM832 426c-106 0-192 86-192 192v12c-26 24-42 58-42 96v128h-556l812-812v386c-8 0-14-2-22-2z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"network_locked\"\n        ],\n        \"defaultCode\": 58906,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"network_locked\",\n        \"id\": 517,\n        \"order\": 528,\n        \"prevSize\": 24,\n        \"code\": 58906,\n        \"name\": \"network_locked\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 517\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M872.5 466.828c0.568 0.445 1.068 0.837 1.5 1.172l-362 448-362-448c0.431-0.335 0.931-0.727 1.5-1.172l-135.5-168.828c20-14 210-170 496-170s476 156 496 170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"network_wifi\"\n        ],\n        \"defaultCode\": 57786,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"network_wifi\",\n        \"id\": 518,\n        \"order\": 529,\n        \"prevSize\": 24,\n        \"code\": 57786,\n        \"name\": \"network_wifi\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 518\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM982 512l-104 118 14 158-154 34-80 136-146-62-146 62-80-134-154-36 14-158-104-118 104-120-14-156 154-34 80-136 146 62 146-62 80 136 154 34-14 158z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"new_releases\"\n        ],\n        \"defaultCode\": 57393,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"new_releases\",\n        \"id\": 519,\n        \"order\": 530,\n        \"prevSize\": 24,\n        \"code\": 57393,\n        \"name\": \"new_releases\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 519\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 790l170-172-170-170-44 42 128 128-128 128zM426 214v84h172v-84h-172zM598 128c46.645 0 84 38.997 84 86v84h172c46 0 84 40 84 86v470c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-470c0-46 38-86 84-86h172v-84c0-46 38-86 84-86h172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"next_week\"\n        ],\n        \"defaultCode\": 57706,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"next_week\",\n        \"id\": 520,\n        \"order\": 531,\n        \"prevSize\": 24,\n        \"code\": 57706,\n        \"name\": \"next_week\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 520\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 256v512h-512v-512h170v86h-84v340h340v-340h-128v96c26 14 44 42 44 74 0 46-40 86-86 86s-86-40-86-86c0-32 18-60 44-74v-96c0-46 38-86 84-86h214zM854 854v-684h-684v684h684zM854 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-684c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"nfc\"\n        ],\n        \"defaultCode\": 57787,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"nfc\",\n        \"id\": 521,\n        \"order\": 532,\n        \"prevSize\": 24,\n        \"code\": 57787,\n        \"name\": \"nfc\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 521\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M380 256v52l-78-78c12-106 100-188 210-188 118 0 214 96 214 214v86h42c46 0 86 38 86 84v356l-442-440h232v-86c0-72-60-132-132-132s-132 60-132 132zM896 930l-52 52-48-48c-8 2-18 4-28 4h-512c-46 0-86-38-86-84v-428c0-32 20-60 46-74l-88-86 52-52z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"no_encryption\"\n        ],\n        \"defaultCode\": 58945,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"no_encryption\",\n        \"id\": 522,\n        \"order\": 533,\n        \"prevSize\": 24,\n        \"code\": 58945,\n        \"name\": \"no_encryption\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 522\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M156 166l746 744-56 56-80-82c-12 6-26 12-40 12h-428c-46 0-84-40-84-86v-478l-112-112zM810 214v498l-484-484 100-100h300c46 0 84 40 84 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal_cellular_no_sim\"\n        ],\n        \"defaultCode\": 57806,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"no_sim, signal_cellular_no_sim\",\n        \"id\": 523,\n        \"order\": 534,\n        \"prevSize\": 24,\n        \"code\": 57806,\n        \"name\": \"signal_cellular_no_sim\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 523\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 234v236h234zM938 426v342c0 46-38 84-84 84l-684 2c-46 0-84-40-84-86v-512c0-46 38-86 84-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"note\"\n        ],\n        \"defaultCode\": 57455,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"note\",\n        \"id\": 524,\n        \"order\": 535,\n        \"prevSize\": 24,\n        \"code\": 57455,\n        \"name\": \"note\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 524\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 384h236l-236-234v234zM682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"note_add\"\n        ],\n        \"defaultCode\": 59548,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"note_add\",\n        \"id\": 525,\n        \"order\": 536,\n        \"prevSize\": 24,\n        \"code\": 59548,\n        \"name\": \"note_add\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 525\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 682l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-48 0-86-38-86-84h172c0 46-40 84-86 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"notifications\"\n        ],\n        \"defaultCode\": 59380,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"notifications\",\n        \"id\": 526,\n        \"order\": 537,\n        \"prevSize\": 24,\n        \"code\": 59380,\n        \"name\": \"notifications\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 526\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 938c-48 0-86-38-86-84h170c0 49.675-37.225 84-84 84zM768 470v212l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270zM852 448c-6-114-64-212-150-274l60-60c102 78 170 198 176 334h-86zM324 174c-88 62-146 160-152 274h-86c6-136 74-256 176-334z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"notifications_active\"\n        ],\n        \"defaultCode\": 59383,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"notifications_active\",\n        \"id\": 527,\n        \"order\": 538,\n        \"prevSize\": 24,\n        \"code\": 59383,\n        \"name\": \"notifications_active\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 527\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 726v-256c0-106-64-192-170-192s-170 86-170 192v256h340zM768 682l86 86v42h-684v-42l86-86v-212c0-132 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-46 0-86-38-86-84h172c0 46-40 84-86 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"notifications_none\"\n        ],\n        \"defaultCode\": 59381,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"notifications_none\",\n        \"id\": 528,\n        \"order\": 539,\n        \"prevSize\": 24,\n        \"code\": 59381,\n        \"name\": \"notifications_none\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 528\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 626l-382-402c10-4 20-10 30-14h2l12-6c6-2 12-2 18-4v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 138 192 270v156zM512 938c-48 0-86-36-86-84h172c0 48-38 84-86 84zM334 262c187.235 193.432 375.34 385.994 562 580l-54 54-86-86h-586v-42l86-86v-214c0-54 12-104 34-146l-120-118 54-56z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"notifications_off\"\n        ],\n        \"defaultCode\": 59382,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"notifications_off\",\n        \"id\": 529,\n        \"order\": 540,\n        \"prevSize\": 24,\n        \"code\": 59382,\n        \"name\": \"notifications_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 529\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M618 418v-76h-212v76h118l-118 146v76h212v-76h-118zM768 682l86 86v42h-684v-42l86-86v-212c0-130 70-240 192-270v-30c0-36 28-64 64-64s64 28 64 64v30c122 30 192 140 192 270v212zM512 938c-48 0-86-38-86-84h172c0 46-40 84-86 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"notifications_paused\"\n        ],\n        \"defaultCode\": 59384,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"notifications_paused\",\n        \"id\": 530,\n        \"order\": 541,\n        \"prevSize\": 24,\n        \"code\": 59384,\n        \"name\": \"notifications_paused\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 530\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M440 598l286-286-60-60-226 226-82-82-60 60zM726 768v-86h-428v86h428zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"offline_pin\"\n        ],\n        \"defaultCode\": 59658,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"offline_pin\",\n        \"id\": 531,\n        \"order\": 542,\n        \"prevSize\": 24,\n        \"code\": 59658,\n        \"name\": \"offline_pin\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 531\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 470l-298 170v-342zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ondemand_video\"\n        ],\n        \"defaultCode\": 58938,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"ondemand_video\",\n        \"id\": 532,\n        \"order\": 543,\n        \"prevSize\": 24,\n        \"code\": 58938,\n        \"name\": \"ondemand_video\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 532\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 598h512c0-86-28-138-76-186l-180-188-180 186c-48 48-76 102-76 188zM754 342c66 66 100 154 100 240s-34 176-100 242-154 100-242 100-176-34-242-100-100-156-100-242 34-174 100-240l242-242z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"opacity\"\n        ],\n        \"defaultCode\": 59676,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"opacity\",\n        \"id\": 533,\n        \"order\": 544,\n        \"prevSize\": 24,\n        \"code\": 59676,\n        \"name\": \"opacity\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 533\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 426l170 172h-128v256h-84v-256h-128zM810 170c48 0 86 40 86 86v512c0 46-40 86-86 86h-170v-86h170v-426h-596v426h170v86h-170c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"open_in_browser\"\n        ],\n        \"defaultCode\": 59549,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"open_in_browser\",\n        \"id\": 534,\n        \"order\": 545,\n        \"prevSize\": 24,\n        \"code\": 59549,\n        \"name\": \"open_in_browser\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 534\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 640v128h128l-214 214-214-214h128v-128h172zM982 512l-214 214v-128h-128v-172h128v-128zM384 426v172h-128v128l-214-214 214-214v128h128zM426 384v-128h-128l214-214 214 214h-128v128h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"open_with\"\n        ],\n        \"defaultCode\": 59551,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"open_with\",\n        \"id\": 535,\n        \"order\": 546,\n        \"prevSize\": 24,\n        \"code\": 59551,\n        \"name\": \"open_with\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 535\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 128c46 0 86 40 86 86v256h-214l44-172-172 44v-214h256zM726 726l-44-172h214v256c0 46-40 86-86 86h-256v-214zM342 554l-44 172 172-44v214h-256c-46 0-86-40-86-86v-256h214zM128 214c0-46 40-86 86-86h256v214l-172-44 44 172h-214v-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pages\"\n        ],\n        \"defaultCode\": 59385,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pages\",\n        \"id\": 536,\n        \"order\": 547,\n        \"prevSize\": 24,\n        \"code\": 59385,\n        \"name\": \"pages\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 536\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M716 776l60-60-124-124c18-30 30-64 30-102 0-106-86-192-192-192s-192 86-192 192 86 192 192 192c38 0 72-12 102-30zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684zM490 384c58 0 108 48 108 106s-50 108-108 108-106-50-106-108 48-106 106-106z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pageview\"\n        ],\n        \"defaultCode\": 59552,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pageview\",\n        \"id\": 537,\n        \"order\": 548,\n        \"prevSize\": 24,\n        \"code\": 59552,\n        \"name\": \"pageview\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 537\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M982 234v620c0 94-78 170-172 170h-310c-46 0-90-18-122-50l-336-342s54-52 56-52c10-8 22-12 34-12 10 0 18 2 26 6 2 0 184 104 184 104v-508c0-36 28-64 64-64s64 28 64 64v300h42v-406c0-36 28-64 64-64s64 28 64 64v406h42v-364c0-36 28-64 64-64s64 28 64 64v364h44v-236c0-36 28-64 64-64s64 28 64 64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pan_tool\"\n        ],\n        \"defaultCode\": 59685,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pan_tool\",\n        \"id\": 538,\n        \"order\": 549,\n        \"prevSize\": 24,\n        \"code\": 59685,\n        \"name\": \"pan_tool\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 538\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M362 534l-148 192h596l-192-256-148 192zM982 768c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768c46 0 86 40 86 86v512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"panorama\"\n        ],\n        \"defaultCode\": 58379,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"panorama\",\n        \"id\": 539,\n        \"order\": 550,\n        \"prevSize\": 24,\n        \"code\": 58379,\n        \"name\": \"panorama\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 539\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"radio_button_unchecked\"\n        ],\n        \"defaultCode\": 59446,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"panorama_fish_eye, radio_button_unchecked\",\n        \"id\": 540,\n        \"order\": 551,\n        \"prevSize\": 24,\n        \"code\": 59446,\n        \"name\": \"radio_button_unchecked\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 540\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M914 170c14 0 24 10 24 28v628c0 18-10 28-24 28-4 0-8-2-12-4-126-46-258-70-390-70s-264 24-390 70c-4 2-8 4-12 4-14 0-24-12-24-28v-628c0-18 10-28 24-28 4 0 8 2 12 4 126 46 258 70 390 70s264-24 390-70c4-2 8-4 12-4zM854 280c-110 34-226 48-342 48s-232-16-342-48v464c110-32 226-48 342-48s232 16 342 48v-464z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"panorama_horizontal\"\n        ],\n        \"defaultCode\": 58381,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"panorama_horizontal\",\n        \"id\": 541,\n        \"order\": 552,\n        \"prevSize\": 24,\n        \"code\": 58381,\n        \"name\": \"panorama_horizontal\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 541\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M280 854h464c-32-110-48-226-48-342s16-232 48-342h-464c32 110 48 226 48 342s-16 232-48 342zM850 902c2 4 4 8 4 12 0 14-12 24-28 24h-628c-18 0-28-10-28-24 0-4 2-8 4-12 46-126 70-258 70-390s-24-264-70-390c-2-4-4-8-4-12 0-14 10-24 28-24h628c18 0 28 10 28 24 0 4-2 8-4 12-46 126-70 258-70 390s24 264 70 390z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"panorama_vertical\"\n        ],\n        \"defaultCode\": 58382,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"panorama_vertical\",\n        \"id\": 542,\n        \"order\": 553,\n        \"prevSize\": 24,\n        \"code\": 58382,\n        \"name\": \"panorama_vertical\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 542\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 170c116 0 224 12 340 32l38 6 12 38c24 88 36 178 36 266s-12 178-36 266l-12 38-38 6c-116 20-224 32-340 32s-224-12-340-32l-38-6-12-38c-24-88-36-178-36-266s12-178 36-266l12-38 38-6c116-20 224-32 340-32zM512 256c-104 0-202 10-312 28-20 76-30 152-30 228s10 152 30 228c110 18 208 28 312 28s202-10 312-28c20-76 30-152 30-228s-10-152-30-228c-110-18-208-28-312-28z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"panorama_wide_angle\"\n        ],\n        \"defaultCode\": 58383,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"panorama_wide_angle\",\n        \"id\": 543,\n        \"order\": 554,\n        \"prevSize\": 24,\n        \"code\": 58383,\n        \"name\": \"panorama_wide_angle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 543\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 726c118 0 214-96 214-214 0-14-2-28-4-42h-90c4 14 8 28 8 42 0 70-58 128-128 128h-170c40 52 100 86 170 86zM512 298c-118 0-214 96-214 214 0 14 2 28 4 42h90c-4-14-8-28-8-42 0-70 58-128 128-128h170c-40-52-100-86-170-86zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136l78-84h256l78 84h136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"party_mode\"\n        ],\n        \"defaultCode\": 59386,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"party_mode\",\n        \"id\": 544,\n        \"order\": 555,\n        \"prevSize\": 24,\n        \"code\": 59386,\n        \"name\": \"party_mode\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 544\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 214h170v596h-170v-596zM256 810v-596h170v596h-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pause\"\n        ],\n        \"defaultCode\": 57396,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pause\",\n        \"id\": 545,\n        \"order\": 556,\n        \"prevSize\": 24,\n        \"code\": 57396,\n        \"name\": \"pause2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 545\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 682v-340h-86v340h86zM470 682v-340h-86v340h86zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pause_circle_filled\"\n        ],\n        \"defaultCode\": 57397,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pause_circle_filled\",\n        \"id\": 546,\n        \"order\": 557,\n        \"prevSize\": 24,\n        \"code\": 57397,\n        \"name\": \"pause_circle_filled\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 546\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 682v-340h86v340h-86zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM384 682v-340h86v340h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pause_circle_outline\"\n        ],\n        \"defaultCode\": 57398,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pause_circle_outline\",\n        \"id\": 547,\n        \"order\": 558,\n        \"prevSize\": 24,\n        \"code\": 57398,\n        \"name\": \"pause_circle_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 547\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M704 278c-46 0-86 38-86 84s40 86 86 86 86-40 86-86-40-84-86-84zM704 512c-82 0-150-68-150-150s68-148 150-148 150 66 150 148-68 150-150 150zM320 278c-46 0-86 38-86 84s40 86 86 86 86-40 86-86-40-84-86-84zM320 512c-82 0-150-68-150-150s68-148 150-148 150 66 150 148-68 150-150 150zM918 746v-52c0-24-110-76-214-76-46 0-90 12-128 24 14 16 22 32 22 52v52h320zM534 746v-52c0-24-110-76-214-76s-214 52-214 76v52h428zM704 554c92 0 278 48 278 140v116h-940v-116c0-92 186-140 278-140 52 0 130 16 192 44 62-28 140-44 192-44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"people_outline\"\n        ],\n        \"defaultCode\": 59388,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"people_outline\",\n        \"id\": 548,\n        \"order\": 559,\n        \"prevSize\": 24,\n        \"code\": 59388,\n        \"name\": \"people_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 548\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 554v-170c0-46-40-86-86-86s-86 40-86 86v170c0 46 40 86 86 86s86-40 86-86zM854 214c46 0 84 38 84 84v512c0 46-38 86-84 86h-300v-90c120-20 214-126 214-252h-86c0 94-76 172-170 172s-170-78-170-172h-86c0 126 94 232 214 252v90h-300c-46 0-84-40-84-86v-512c0-46 38-84 84-84h136l78-86h256l78 86h136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"perm_camera_mic\"\n        ],\n        \"defaultCode\": 59554,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"perm_camera_mic\",\n        \"id\": 549,\n        \"order\": 560,\n        \"prevSize\": 24,\n        \"code\": 59554,\n        \"name\": \"perm_camera_mic\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 549\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 768v-42c0-86-170-132-256-132s-256 46-256 132v42h512zM512 256c-70 0-128 58-128 128s58 128 128 128 128-58 128-128-58-128-128-128zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"perm_contact_calendar\"\n        ],\n        \"defaultCode\": 59555,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"perm_contact_calendar\",\n        \"id\": 550,\n        \"order\": 561,\n        \"prevSize\": 24,\n        \"code\": 59555,\n        \"name\": \"perm_contact_calendar\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 550\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 874c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM968 832l46 34c4 4 4 10 2 14l-42 74c-2 4-10 8-14 6l-52-22c-10 8-24 14-36 20l-8 58c0 6-6 8-12 8h-84c-6 0-12-2-12-8l-8-58c-14-6-24-12-36-20l-52 22c-6 2-12-2-14-6l-42-74c-2-4-2-10 2-14l46-34c0-6-2-14-2-22s2-14 2-20l-46-36c-4-4-4-10-2-14l42-74c2-4 10-6 14-4l52 22c12-8 24-16 36-22l8-56c0-6 6-8 12-8h84c6 0 12 2 12 8l8 56c14 6 24 14 36 22l52-22c6-2 12 0 14 4l42 74c2 4 2 10-2 14l-46 36c2 6 2 12 2 20s-2 16-2 22zM810 490c-176 0-320 144-320 320 0 14 2 30 4 44h-494l854-854-2 494c-14-2-28-4-42-4z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"perm_data_setting\"\n        ],\n        \"defaultCode\": 59556,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"perm_data_setting\",\n        \"id\": 551,\n        \"order\": 562,\n        \"prevSize\": 24,\n        \"code\": 59556,\n        \"name\": \"perm_data_setting\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 551\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86zM554 470v256h-84v-256h84zM554 298v86h-84v-86h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"perm_device_information\"\n        ],\n        \"defaultCode\": 59557,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"perm_device_information\",\n        \"id\": 552,\n        \"order\": 563,\n        \"prevSize\": 24,\n        \"code\": 59557,\n        \"name\": \"perm_device_information\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 552\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 554c114 0 342 58 342 172v128h-684v-128c0-114 228-172 342-172zM512 170c94 0 170 78 170 172s-76 170-170 170-170-76-170-170 76-172 170-172zM512 636c-126 0-260 62-260 90v46h520v-46c0-28-134-90-260-90zM512 252c-50 0-90 40-90 90s40 88 90 88 90-38 90-88-40-90-90-90z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"person_outline\"\n        ],\n        \"defaultCode\": 59391,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"perm_identity, person_outline\",\n        \"id\": 553,\n        \"order\": 564,\n        \"prevSize\": 24,\n        \"code\": 59391,\n        \"name\": \"person_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 553\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 640h598l-150-192-106 128-150-192zM938 170c46 0 86 40 86 86v426c0 46-40 86-86 86h-682c-46 0-86-40-86-86l2-512c0-46 38-84 84-84h256l86 84h340zM86 256v598h768v84h-768c-46 0-86-38-86-84v-598h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"perm_media\"\n        ],\n        \"defaultCode\": 59559,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"perm_media\",\n        \"id\": 554,\n        \"order\": 565,\n        \"prevSize\": 24,\n        \"code\": 59559,\n        \"name\": \"perm_media\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 554\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 128h384v298h-256l-128 128v-426zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 120 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"perm_phone_msg\"\n        ],\n        \"defaultCode\": 59560,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"perm_phone_msg\",\n        \"id\": 555,\n        \"order\": 566,\n        \"prevSize\": 24,\n        \"code\": 59560,\n        \"name\": \"perm_phone_msg\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 555\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 342h84v-86h-84v86zM554 682v-256h-84v256h84zM512 128c216 0 378 80 512 182l-512 628-512-630c134-102 296-180 512-180z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"perm_scan_wifi\"\n        ],\n        \"defaultCode\": 59561,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"perm_scan_wifi\",\n        \"id\": 556,\n        \"order\": 567,\n        \"prevSize\": 24,\n        \"code\": 59561,\n        \"name\": \"perm_scan_wifi\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 556\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 598c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM512 512c-94 0-170-76-170-170s76-172 170-172 170 78 170 172-76 170-170 170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"person\"\n        ],\n        \"defaultCode\": 59389,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"person\",\n        \"id\": 557,\n        \"order\": 568,\n        \"prevSize\": 24,\n        \"code\": 59389,\n        \"name\": \"person\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 557\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 598c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM256 426h128v86h-128v128h-86v-128h-128v-86h128v-128h86v128zM640 512c-94 0-170-76-170-170s76-172 170-172 170 78 170 172-76 170-170 170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"person_add\"\n        ],\n        \"defaultCode\": 59390,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"person_add\",\n        \"id\": 558,\n        \"order\": 569,\n        \"prevSize\": 24,\n        \"code\": 59390,\n        \"name\": \"person_add\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 558\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 682v-38c0-86-170-132-256-132s-256 46-256 132v38h512zM512 226c-64 0-116 52-116 116s52 114 116 114 116-50 116-114-52-116-116-116zM810 86c46 0 86 38 86 84v598c0 46-40 86-86 86h-170l-128 128-128-128h-170c-48 0-86-40-86-86v-598c0-46 38-84 86-84h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"person_pin\"\n        ],\n        \"defaultCode\": 58714,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"person_pin\",\n        \"id\": 559,\n        \"order\": 570,\n        \"prevSize\": 24,\n        \"code\": 58714,\n        \"name\": \"person_pin\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 559\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 598c72 0 134-36 170-92 0-56-114-88-170-88s-170 32-170 88c36 56 98 92 170 92zM512 170c-46 0-86 40-86 86 0 48 40 86 86 86s86-38 86-86c0-46-40-86-86-86zM512 86c164 0 298 134 298 298 0 224-298 554-298 554s-298-330-298-554c0-164 134-298 298-298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"person_pin_circle\"\n        ],\n        \"defaultCode\": 58730,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"person_pin_circle\",\n        \"id\": 560,\n        \"order\": 571,\n        \"prevSize\": 24,\n        \"code\": 58730,\n        \"name\": \"person_pin_circle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 560\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"personal_video\"\n        ],\n        \"defaultCode\": 58939,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"personal_video\",\n        \"id\": 561,\n        \"order\": 572,\n        \"prevSize\": 24,\n        \"code\": 58939,\n        \"name\": \"personal_video\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 561\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M740 634c56 56 126 116 112 204-12 44-44 88-100 100-32 6-130-18-236-18h-8c-106 0-204 24-236 18-56-12-88-56-100-100-12-86 56-148 112-204 38-44 68-80 106-124 20-24 44-46 74-56 4-2 10-4 14-4 12-2 22-2 34-2s24 0 34 2c4 0 10 2 14 4 30 10 54 32 74 56 38 44 68 80 106 124zM726 406c0-58 48-108 106-108s106 50 106 108-48 106-106 106-106-48-106-106zM534 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM278 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM86 406c0-58 48-108 106-108s106 50 106 108-48 106-106 106-106-48-106-106z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pets\"\n        ],\n        \"defaultCode\": 59677,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pets\",\n        \"id\": 562,\n        \"order\": 573,\n        \"prevSize\": 24,\n        \"code\": 59677,\n        \"name\": \"pets\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 562\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M736 768v-598h-448v598h448zM598 896v-42h-172v42h172zM682 42c70 0 128 58 128 128v684c0 70-58 128-128 128h-340c-70 0-128-58-128-128v-684c0-70 58-128 128-128h340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone_android\"\n        ],\n        \"defaultCode\": 58148,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phone_android\",\n        \"id\": 563,\n        \"order\": 574,\n        \"prevSize\": 24,\n        \"code\": 58148,\n        \"name\": \"phone_android\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 563\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM768 308v80l40-40zM768 124v80l40-40zM628 406l-30-30 118-120-118-120 30-30 98 98v-162h20l122 122-92 92 92 92-122 122h-20v-162z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone_bluetooth_speaker\"\n        ],\n        \"defaultCode\": 58907,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phone_bluetooth_speaker\",\n        \"id\": 564,\n        \"order\": 575,\n        \"prevSize\": 24,\n        \"code\": 58907,\n        \"name\": \"phone_bluetooth_speaker\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 564\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM768 470v-128h-170v-172h170v-128l214 214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone_forwarded\"\n        ],\n        \"defaultCode\": 58908,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phone_forwarded\",\n        \"id\": 565,\n        \"order\": 576,\n        \"prevSize\": 24,\n        \"code\": 58908,\n        \"name\": \"phone_forwarded\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 565\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 512c0-70-58-128-128-128v-86c118 0 214 96 214 214h-86zM810 512c0-166-132-298-298-298v-86c212 0 384 172 384 384h-86zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone_in_talk\"\n        ],\n        \"defaultCode\": 58909,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phone_in_talk\",\n        \"id\": 566,\n        \"order\": 577,\n        \"prevSize\": 24,\n        \"code\": 58909,\n        \"name\": \"phone_in_talk\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 566\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 768v-598h-384v598h384zM490 938c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM662 42c58 0 106 50 106 108v724c0 58-48 108-106 108h-342c-58 0-106-50-106-108v-724c0-58 48-108 106-108h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone_iphone\"\n        ],\n        \"defaultCode\": 58149,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phone_iphone\",\n        \"id\": 567,\n        \"order\": 578,\n        \"prevSize\": 24,\n        \"code\": 58149,\n        \"name\": \"phone_iphone\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 567\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M820 170v-20c0-40-34-74-74-74s-72 34-72 74v20h146zM854 170c24 0 42 20 42 44v170c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-170c0-24 18-44 42-44v-20c0-58 48-108 106-108s108 50 108 108v20zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone_locked\"\n        ],\n        \"defaultCode\": 58910,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phone_locked\",\n        \"id\": 568,\n        \"order\": 579,\n        \"prevSize\": 24,\n        \"code\": 58910,\n        \"name\": \"phone_locked\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 568\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1012 712c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-60-114-80-14-6-24-22-24-38v-132c-62-20-128-30-196-30s-134 10-196 30v132c0 18-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200zM278 234v150h-64v-256h256v64h-150l192 192 256-256 42 42-298 300z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone_missed\"\n        ],\n        \"defaultCode\": 58911,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phone_missed\",\n        \"id\": 569,\n        \"order\": 580,\n        \"prevSize\": 24,\n        \"code\": 58911,\n        \"name\": \"phone_missed\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 569\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 128h86v298h-86v-298zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 122 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM726 128v298h-86v-298h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phone_paused\"\n        ],\n        \"defaultCode\": 58912,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phone_paused\",\n        \"id\": 570,\n        \"order\": 581,\n        \"prevSize\": 24,\n        \"code\": 58912,\n        \"name\": \"phone_paused\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 570\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426zM554 350l-170 170 170 172-42 42-170-170-172 170-42-42 170-172-170-170 42-42 172 170 170-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phonelink_erase\"\n        ],\n        \"defaultCode\": 57563,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phonelink_erase\",\n        \"id\": 571,\n        \"order\": 582,\n        \"prevSize\": 24,\n        \"code\": 57563,\n        \"name\": \"phonelink_erase\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 571\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M406 470v-64c0-34-30-56-64-56s-64 22-64 56v64h128zM460 470c26 0 52 24 52 54v150c0 26-26 52-56 52h-234c-26 0-52-26-52-56v-150c0-26 26-50 52-50v-64c0-60 60-108 120-108s118 48 118 108v64zM810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phonelink_lock\"\n        ],\n        \"defaultCode\": 57564,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phonelink_lock\",\n        \"id\": 572,\n        \"order\": 583,\n        \"prevSize\": 24,\n        \"code\": 57564,\n        \"name\": \"phonelink_lock\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 572\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M982 342c24 0 42 18 42 42v426c0 24-18 44-42 44h-8l-128-128h92v-300h-170v222l-86-86v-178c0-24 20-42 44-42h256zM170 268v458h458zM82 70c276.214 276.452 551.97 553.364 828 830l-54 54-100-100h-756v-128h86v-470c0-20 8-40 20-54l-78-78zM938 256h-562l-86-86h648v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phonelink_off\"\n        ],\n        \"defaultCode\": 58151,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phonelink_off\",\n        \"id\": 573,\n        \"order\": 584,\n        \"prevSize\": 24,\n        \"code\": 58151,\n        \"name\": \"phonelink_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 573\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 854v-684h-428v684h428zM598 42c46 0 84 40 84 86v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86h428zM768 418c52 56 52 132 0 184l-42-44c22-30 22-68 0-98zM858 328c106 102 106 266 0 364l-44-44c76-82 76-200 0-276z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phonelink_ring\"\n        ],\n        \"defaultCode\": 57565,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phonelink_ring\",\n        \"id\": 574,\n        \"order\": 585,\n        \"prevSize\": 24,\n        \"code\": 57565,\n        \"name\": \"phonelink_ring\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 574\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 42c46 0 86 40 86 86v768c0 46-40 86-86 86h-426c-46 0-86-40-86-86v-128h86v86h426v-684h-426v86h-86v-128c0-46 40-86 86-86h426zM342 598c46 0 84-40 84-86s-38-86-84-86-86 40-86 86 40 86 86 86zM504 534l46 38c4 4 8 8 4 12l-42 74c-4 4-8 4-12 4l-56-22c-12 8-26 18-38 22l-10 54c-4 4-8 10-12 10h-86c-4 0-12-6-8-10l-8-54c-12-4-26-14-38-22l-60 18c-4 4-10-2-14-6l-42-72c0-4 0-8 4-16l48-34v-44l-48-34c-4-4-8-8-4-12l42-74c4-4 10-4 14-4l54 22c12-8 28-18 40-22l8-54c4-4 8-10 12-10h86c8 0 12 6 12 10l10 54c12 4 26 14 38 22l56-18c4-4 8 2 12 6l42 72c0 4 0 8-4 12l-46 34v44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"phonelink_setup\"\n        ],\n        \"defaultCode\": 57566,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"phonelink_setup\",\n        \"id\": 575,\n        \"order\": 586,\n        \"prevSize\": 24,\n        \"code\": 57566,\n        \"name\": \"phonelink_setup\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 575\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 810h512l-164-218-128 164-92-110zM256 170v342l106-64 108 64v-342h-214zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-684c0-46 40-84 86-84h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"photo_album\"\n        ],\n        \"defaultCode\": 58385,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"photo_album\",\n        \"id\": 576,\n        \"order\": 587,\n        \"prevSize\": 24,\n        \"code\": 58385,\n        \"name\": \"photo_album\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 576\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M566 458l116 54-116 54-54 116-54-116-116-54 116-54 54-116zM726 426l-40-88-88-40 88-40 40-88 40 88 88 40-88 40zM812 426h84v384c0 46-38 86-84 86h-598c-46 0-86-40-86-86v-596c0-46 40-86 86-86h384v86h-384v596h598v-384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"photo_filter\"\n        ],\n        \"defaultCode\": 58427,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"photo_filter\",\n        \"id\": 577,\n        \"order\": 588,\n        \"prevSize\": 24,\n        \"code\": 58427,\n        \"name\": \"photo_filter\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 577\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 726h596l-192-256-148 192-108-128zM896 128c42 0 86 44 86 86v596c0 42-44 86-86 86h-768c-46 0-86-40-86-86v-596c0-42 44-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"photo_size_select_actual\"\n        ],\n        \"defaultCode\": 58418,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"photo_size_select_actual\",\n        \"id\": 578,\n        \"order\": 589,\n        \"prevSize\": 24,\n        \"code\": 58418,\n        \"name\": \"photo_size_select_actual\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 578\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 810h426l-136-182-106 138-78-92zM42 470h598v426h-512c-46 0-86-40-86-86v-340zM214 128h84v86h-84v-86zM384 128h86v86h-86v-86zM128 128v86h-86c0-42 44-86 86-86zM726 810h84v86h-84v-86zM726 128h84v86h-84v-86zM42 298h86v86h-86v-86zM896 128c42 0 86 44 86 86h-86v-86zM896 298h86v86h-86v-86zM554 128h86v86h-86v-86zM982 810c0 42-44 86-86 86v-86h86zM896 470h86v84h-86v-84zM896 640h86v86h-86v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"photo_size_select_large\"\n        ],\n        \"defaultCode\": 58419,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"photo_size_select_large\",\n        \"id\": 579,\n        \"order\": 590,\n        \"prevSize\": 24,\n        \"code\": 58419,\n        \"name\": \"photo_size_select_large\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 579\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 128v86h-84v-86h84zM470 128v86h-86v-86h86zM128 470v84h-86v-84h86zM128 128v86h-86c0-42 44-86 86-86zM810 810v86h-84v-86h84zM810 128v86h-84v-86h84zM640 810v86h-86v-86h86zM128 298v86h-86v-86h86zM128 896c-46 0-86-40-86-86v-170h428v256h-342zM896 128c42 0 86 44 86 86h-86v-86zM982 298v86h-86v-86h86zM640 128v86h-86v-86h86zM982 810c0 42-44 86-86 86v-86h86zM982 470v84h-86v-84h86zM982 640v86h-86v-86h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"photo_size_select_small\"\n        ],\n        \"defaultCode\": 58420,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"photo_size_select_small\",\n        \"id\": 580,\n        \"order\": 591,\n        \"prevSize\": 24,\n        \"code\": 58420,\n        \"name\": \"photo_size_select_small\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 580\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 490v-128h42v128h-42zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84zM384 406v-44h42v44h-42zM874 362v-64h-128v256h64v-84h64v-64h-64v-44h64zM704 490v-128c0-36-28-64-64-64h-106v256h106c36 0 64-28 64-64zM490 406v-44c0-36-28-64-64-64h-106v256h64v-84h42c36 0 64-28 64-64zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"picture_as_pdf\"\n        ],\n        \"defaultCode\": 58389,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"picture_as_pdf\",\n        \"id\": 581,\n        \"order\": 592,\n        \"prevSize\": 24,\n        \"code\": 58389,\n        \"name\": \"picture_as_pdf\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 581\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM810 298v256h-340v-256h340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"picture_in_picture\"\n        ],\n        \"defaultCode\": 59562,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"picture_in_picture\",\n        \"id\": 582,\n        \"order\": 593,\n        \"prevSize\": 24,\n        \"code\": 59562,\n        \"name\": \"picture_in_picture\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 582\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 812v-600h-768v600h768zM982 810c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-598c0-46 40-84 86-84h768c46 0 86 38 86 84v598zM810 470v256h-340v-256h340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"picture_in_picture_alt\"\n        ],\n        \"defaultCode\": 59665,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"picture_in_picture_alt\",\n        \"id\": 583,\n        \"order\": 594,\n        \"prevSize\": 24,\n        \"code\": 59665,\n        \"name\": \"picture_in_picture_alt\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 583\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M556 556h382c-20 202-180 362-382 382v-382zM556 86c202 20 362 180 382 382h-382v-382zM470 86v852c-216-22-384-204-384-426s168-404 384-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pie_chart\"\n        ],\n        \"defaultCode\": 59076,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pie_chart\",\n        \"id\": 584,\n        \"order\": 595,\n        \"prevSize\": 24,\n        \"code\": 59076,\n        \"name\": \"pie_chart\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 584\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 850c154-20 276-142 296-296h-296v296zM170 512c0 174 132 316 300 338v-676c-168 20-300 164-300 338zM554 174v296h296c-20-154-142-276-296-296zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pie_chart_outlined\"\n        ],\n        \"defaultCode\": 59077,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pie_chart_outlined\",\n        \"id\": 585,\n        \"order\": 596,\n        \"prevSize\": 24,\n        \"code\": 59077,\n        \"name\": \"pie_chart_outlined\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 585\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 854h596v84h-596v-84zM426 342c0 46 40 84 86 84 48 0 86-38 86-84s-40-86-86-86-86 40-86 86zM768 342c0 192-256 468-256 468s-256-276-256-468c0-142 114-256 256-256s256 114 256 256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pin_drop\"\n        ],\n        \"defaultCode\": 58718,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pin_drop\",\n        \"id\": 586,\n        \"order\": 597,\n        \"prevSize\": 24,\n        \"code\": 58718,\n        \"name\": \"pin_drop\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 586\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 214l468 298-468 298v-596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"play_arrow\"\n        ],\n        \"defaultCode\": 57399,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"play_arrow\",\n        \"id\": 587,\n        \"order\": 598,\n        \"prevSize\": 24,\n        \"code\": 57399,\n        \"name\": \"play_arrow\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 587\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 704l256-192-256-192v384zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"play_circle_filled\"\n        ],\n        \"defaultCode\": 57400,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"play_circle_filled\",\n        \"id\": 588,\n        \"order\": 599,\n        \"prevSize\": 24,\n        \"code\": 57400,\n        \"name\": \"play_circle_filled\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 588\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM426 704v-384l256 192z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"play_circle_outline\"\n        ],\n        \"defaultCode\": 57401,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"play_circle_outline\",\n        \"id\": 589,\n        \"order\": 600,\n        \"prevSize\": 24,\n        \"code\": 57401,\n        \"name\": \"play_circle_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 589\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 598h86c0 94 76 170 170 170s170-76 170-170h86c0 142-114 256-256 256s-256-114-256-256zM470 214h84v238h150l-192 192-192-192h150v-238z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"play_for_work\"\n        ],\n        \"defaultCode\": 59654,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"play_for_work\",\n        \"id\": 590,\n        \"order\": 601,\n        \"prevSize\": 24,\n        \"code\": 59654,\n        \"name\": \"play_for_work\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 590\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 682v-84h340v84h-340zM768 598h170v84h-170v172h-86v-172h-170v-84h170v-172h86v172zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"playlist_add\"\n        ],\n        \"defaultCode\": 57403,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"playlist_add\",\n        \"id\": 591,\n        \"order\": 602,\n        \"prevSize\": 24,\n        \"code\": 57403,\n        \"name\": \"playlist_add\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 591\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M918 490l64 64-298 300-194-192 64-64 130 128zM86 682v-84h340v84h-340zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"playlist_add_check\"\n        ],\n        \"defaultCode\": 57445,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"playlist_add_check\",\n        \"id\": 592,\n        \"order\": 603,\n        \"prevSize\": 24,\n        \"code\": 57445,\n        \"name\": \"playlist_add_check\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 592\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 554l212 128-212 128v-256zM86 640v-86h554v86h-554zM810 214v84h-724v-84h724zM810 384v86h-724v-86h724z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"playlist_play\"\n        ],\n        \"defaultCode\": 57439,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"playlist_play\",\n        \"id\": 593,\n        \"order\": 604,\n        \"prevSize\": 24,\n        \"code\": 57439,\n        \"name\": \"playlist_play\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 593\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M618 260l192-46v554h-84v-452l-108 22v-78zM426 342v170h172v86h-172v170h-84v-170h-172v-86h172v-170h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"plus_one\"\n        ],\n        \"defaultCode\": 59392,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"plus_one\",\n        \"id\": 594,\n        \"order\": 605,\n        \"prevSize\": 24,\n        \"code\": 59392,\n        \"name\": \"plus_one\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 594\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 170l192 342-192 342h-170l192-342-112-198-336 540h-170l-192-342 192-342h170l-192 342 112 198 336-540h170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"polymer\"\n        ],\n        \"defaultCode\": 59563,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"polymer\",\n        \"id\": 595,\n        \"order\": 606,\n        \"prevSize\": 24,\n        \"code\": 59563,\n        \"name\": \"polymer\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 595\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 234c0-58 48-106 106-106s106 48 106 106-48 108-106 108-106-50-106-108zM370 512c-24 0-34-6-50-16-8-6-18-10-32-16l138-138-42-44c-48-48-92-64-170-64v-106c106 0 168 20 234 86l274 272c-6 4-12 8-18 10-16 10-26 16-50 16s-32-6-48-16c-20-12-46-26-94-26s-74 14-94 26c-16 10-24 16-48 16zM938 704c-48 0-72-16-92-28-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28v-86c24 0 32-4 48-14 20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14v86zM938 896c-48 0-72-16-92-28-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-72-16-92-28c-16-10-26-14-50-14s-32 4-48 14c-20 12-46 28-94 28s-74-16-94-28c-16-10-24-14-48-14s-34 4-50 14c-20 12-44 28-92 28v-86c24 0 32-4 48-14 20-12 46-28 94-28s72 16 92 28c16 10 26 14 50 14s32-4 48-14c20-12 46-28 94-28s74 16 94 28c16 10 24 14 48 14s34-4 50-14c20-12 44-28 92-28s74 16 94 28c16 10 24 14 48 14v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pool\"\n        ],\n        \"defaultCode\": 60232,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pool\",\n        \"id\": 596,\n        \"order\": 607,\n        \"prevSize\": 24,\n        \"code\": 60232,\n        \"name\": \"pool\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 596\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M140 106l42 44 714 714-54 54-320-322h-2l-8 2c-46 0-86-40-86-86l2-8-68-68c-12 24-18 48-18 76 0 64 34 118 84 148l-42 74c-76-44-128-128-128-222 0-52 14-98 40-138l-60-62c-40 56-66 124-66 200 0 126 68 236 170 296l-42 74c-128-74-212-212-212-370 0-98 32-190 88-262l-88-90zM512 170c-58 0-112 14-160 40l-62-62c64-40 140-62 222-62 236 0 426 190 426 426 0 82-22 158-62 222l-64-62c26-48 42-102 42-160 0-188-154-342-342-342zM750 608l-70-70c2-8 2-18 2-26 0-94-76-170-170-170-8 0-18 0-26 2l-70-70c30-12 62-18 96-18 142 0 256 114 256 256 0 34-6 66-18 96z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"portable_wifi_off\"\n        ],\n        \"defaultCode\": 57550,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"portable_wifi_off\",\n        \"id\": 597,\n        \"order\": 608,\n        \"prevSize\": 24,\n        \"code\": 57550,\n        \"name\": \"portable_wifi_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 597\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM704 694v32h-384v-32c0-64 128-96 192-96s192 32 192 96zM512 522c-52 0-96-44-96-96s44-96 96-96 96 44 96 96-44 96-96 96z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"portrait\"\n        ],\n        \"defaultCode\": 58390,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"portrait\",\n        \"id\": 598,\n        \"order\": 609,\n        \"prevSize\": 24,\n        \"code\": 58390,\n        \"name\": \"portrait\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 598\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M684 298c42 0 84 44 84 86v234l-150 150v128h-212v-128l-150-150v-234c0-42 42-86 84-86h2v-170h84v170h172v-170h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"power\"\n        ],\n        \"defaultCode\": 58940,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"power\",\n        \"id\": 599,\n        \"order\": 610,\n        \"prevSize\": 24,\n        \"code\": 58940,\n        \"name\": \"power\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 599\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 640v-86h214v86h-214zM384 640v-86h214v86h-214zM86 640v-86h212v86h-212zM86 384h810v86h-810v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"power_input\"\n        ],\n        \"defaultCode\": 58166,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"power_input\",\n        \"id\": 600,\n        \"order\": 611,\n        \"prevSize\": 24,\n        \"code\": 58166,\n        \"name\": \"power_input\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 600\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M760 220c82 70 136 176 136 292 0 212-172 384-384 384s-384-172-384-384c0-116 54-222 136-292l60 60c-66 54-110 138-110 232 0 166 132 298 298 298s298-132 298-298c0-94-42-176-110-230zM554 128v426h-84v-426h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"power_settings_new\"\n        ],\n        \"defaultCode\": 59564,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"power_settings_new\",\n        \"id\": 601,\n        \"order\": 612,\n        \"prevSize\": 24,\n        \"code\": 59564,\n        \"name\": \"power_settings_new\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 601\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 554v172h-128v212h-128v-212h-84v-300c0-70 58-128 128-128s128 58 128 128c50 20 84 70 84 128zM384 170c0-48 38-84 86-84s84 36 84 84-36 86-84 86-86-38-86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"pregnant_woman\"\n        ],\n        \"defaultCode\": 59678,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"pregnant_woman\",\n        \"id\": 602,\n        \"order\": 613,\n        \"prevSize\": 24,\n        \"code\": 59678,\n        \"name\": \"pregnant_woman\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 602\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 512h-84l170-170 170 170h-84v170h-172v-170zM896 812v-600h-768v600h768zM896 128c48 0 86 38 86 86v596c0 48-38 86-86 86h-768c-48 0-86-38-86-86v-596c0-48 38-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"present_to_all\"\n        ],\n        \"defaultCode\": 57567,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"present_to_all\",\n        \"id\": 603,\n        \"order\": 614,\n        \"prevSize\": 24,\n        \"code\": 57567,\n        \"name\": \"present_to_all\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 603\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 128h172v512h-172v-512zM426 810c0-48 38-84 86-84s86 36 86 84-38 86-86 86-86-38-86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"priority_high\"\n        ],\n        \"defaultCode\": 58949,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"priority_high\",\n        \"id\": 604,\n        \"order\": 615,\n        \"prevSize\": 24,\n        \"code\": 58949,\n        \"name\": \"priority_high\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 604\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M764 742c56-60 90-142 90-230 0-142-88-266-214-316v18c0 46-40 84-86 84h-84v86c0 24-20 42-44 42h-84v86h256c24 0 42 18 42 42v128h42c38 0 70 26 82 60zM470 850v-82c-46 0-86-40-86-86v-42l-204-204c-6 24-10 50-10 76 0 174 132 318 300 338zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"public\"\n        ],\n        \"defaultCode\": 59403,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"public\",\n        \"id\": 605,\n        \"order\": 616,\n        \"prevSize\": 24,\n        \"code\": 59403,\n        \"name\": \"public\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 605\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 598l298-300 298 300h-170v256h-256v-256h-170zM214 170h596v86h-596v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"publish\"\n        ],\n        \"defaultCode\": 57941,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"publish\",\n        \"id\": 606,\n        \"order\": 617,\n        \"prevSize\": 24,\n        \"code\": 57941,\n        \"name\": \"publish\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 606\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 256h212v86h-128v384c0 70-58 128-128 128s-128-58-128-128 58-128 128-128c14 0 30 4 44 8v-350zM128 682v-84h342v84h-342zM640 426v86h-512v-86h512zM640 256v86h-512v-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"queue_music\"\n        ],\n        \"defaultCode\": 57405,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"queue_music\",\n        \"id\": 607,\n        \"order\": 618,\n        \"prevSize\": 24,\n        \"code\": 57405,\n        \"name\": \"queue_music\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 607\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M1024 768l-192 192-64-64 128-128-128-128 64-64zM554 426h128v86h-128v128h-84v-128h-128v-86h128v-128h84v128zM896 128c46 0 86 38 86 86v340h-86v-340h-768v512h640v84h-86v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"queue_play_next\"\n        ],\n        \"defaultCode\": 57446,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"queue_play_next\",\n        \"id\": 608,\n        \"order\": 619,\n        \"prevSize\": 24,\n        \"code\": 57446,\n        \"name\": \"queue_play_next\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 608\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 512v-170h-684v170h512v-86h86v86h86zM298 854c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM138 262l540-220 28 72-352 142h500c48 0 84 38 84 86v512c0 46-36 84-84 84h-684c-48 0-84-38-84-84v-512c0-36 20-68 52-80z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"radio\"\n        ],\n        \"defaultCode\": 57406,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"radio\",\n        \"id\": 609,\n        \"order\": 620,\n        \"prevSize\": 24,\n        \"code\": 57406,\n        \"name\": \"radio\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 609\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM512 298c118 0 214 96 214 214s-96 214-214 214-214-96-214-214 96-214 214-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"radio_button_checked\"\n        ],\n        \"defaultCode\": 59447,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"radio_button_checked\",\n        \"id\": 610,\n        \"order\": 621,\n        \"prevSize\": 24,\n        \"code\": 59447,\n        \"name\": \"radio_button_checked\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 610\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 598v-86h-234l-86 86h320zM256 598h106l294-294c8-8 8-22 0-30l-76-76c-8-8-22-8-30 0l-294 294v106zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rate_review\"\n        ],\n        \"defaultCode\": 58720,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"rate_review\",\n        \"id\": 611,\n        \"order\": 622,\n        \"prevSize\": 24,\n        \"code\": 58720,\n        \"name\": \"rate_review\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 611\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 938v-852l64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64v852l-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64zM768 384v-86h-512v86h512zM768 554v-84h-512v84h512zM768 726v-86h-512v86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"receipt\"\n        ],\n        \"defaultCode\": 59568,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"receipt\",\n        \"id\": 612,\n        \"order\": 623,\n        \"prevSize\": 24,\n        \"code\": 59568,\n        \"name\": \"receipt\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 612\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M534 726v-32c0-64-128-96-192-96s-192 32-192 96v32h384zM342 330c-52 0-96 44-96 96s44 96 96 96 96-44 96-96-44-96-96-96zM598 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-512c-24 0-44-18-44-42v-512c0-24 20-42 44-42h512zM726 810v-596h84v596h-84zM896 214h86v596h-86v-596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"recent_actors\"\n        ],\n        \"defaultCode\": 57407,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"recent_actors\",\n        \"id\": 613,\n        \"order\": 624,\n        \"prevSize\": 24,\n        \"code\": 57407,\n        \"name\": \"recent_actors\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 613\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M856 86c166 172 166 430 0 596l-70-68c118-136 118-332 0-460zM716 228c86 94 86 224 0 310l-72-72c36-50 36-116 0-166zM384 640c114 0 342 56 342 170v86h-684v-86c0-114 228-170 342-170zM214 384c0-94 76-170 170-170s170 76 170 170-76 170-170 170-170-76-170-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"record_voice_over\"\n        ],\n        \"defaultCode\": 59679,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"record_voice_over\",\n        \"id\": 614,\n        \"order\": 625,\n        \"prevSize\": 24,\n        \"code\": 59679,\n        \"name\": \"record_voice_over\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 614\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M786 452l152-154v384h-384l156-154c-60-50-136-80-220-80-152 0-280 98-324 234l-100-32c58-178 226-308 424-308 114 0 218 42 296 110z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"redo\"\n        ],\n        \"defaultCode\": 57690,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"redo\",\n        \"id\": 615,\n        \"order\": 626,\n        \"prevSize\": 24,\n        \"code\": 57690,\n        \"name\": \"redo\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 615\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M754 270l100-100v300h-300l138-138c-46-46-110-76-180-76-142 0-256 114-256 256s114 256 256 256c112 0 208-70 242-170h88c-38 148-170 256-330 256-188 0-340-154-340-342s152-342 340-342c94 0 180 38 242 100z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"refresh\"\n        ],\n        \"defaultCode\": 58837,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"refresh\",\n        \"id\": 616,\n        \"order\": 627,\n        \"prevSize\": 24,\n        \"code\": 58837,\n        \"name\": \"refresh2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 616\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 554h-596v-84h596v84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"remove\"\n        ],\n        \"defaultCode\": 57691,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"remove\",\n        \"id\": 617,\n        \"order\": 628,\n        \"prevSize\": 24,\n        \"code\": 57691,\n        \"name\": \"remove2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 617\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 470h428v84h-428v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"remove_circle_outline\"\n        ],\n        \"defaultCode\": 57693,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"remove_circle_outline\",\n        \"id\": 618,\n        \"order\": 629,\n        \"prevSize\": 24,\n        \"code\": 57693,\n        \"name\": \"remove_circle_outline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 618\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 426v86h-340v-86h340zM896 726v-512h-768v512h768zM896 128c46 0 86 38 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-48 0-86-38-86-84v-512c0-48 38-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"remove_from_queue\"\n        ],\n        \"defaultCode\": 57447,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"remove_from_queue\",\n        \"id\": 619,\n        \"order\": 630,\n        \"prevSize\": 24,\n        \"code\": 57447,\n        \"name\": \"remove_from_queue\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 619\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 384c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM512 726c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM512 192c214 0 396 132 470 320-74 188-256 320-470 320s-396-132-470-320c74-188 256-320 470-320z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"visibility\"\n        ],\n        \"defaultCode\": 59636,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"remove_red_eye, visibility\",\n        \"id\": 620,\n        \"order\": 631,\n        \"prevSize\": 24,\n        \"code\": 59636,\n        \"name\": \"visibility\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 620\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 768c46 0 86 40 86 86s-40 84-86 84-84-38-84-84 38-86 84-86zM664 554l-384-384h574c24 0 42 20 42 44 0 8-2 14-6 20l-152 276c-14 26-42 44-74 44zM316 640h216l-86-86h-100l-38 70-2 6c0 6 4 10 10 10zM970 970l-54 54-122-122c-16 22-40 36-68 36-46 0-86-38-86-84 0-28 14-54 36-70l-60-58h-318c-46 0-84-40-84-86 0-14 4-28 10-40l58-106-94-198-188-188 54-54z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"remove_shopping_cart\"\n        ],\n        \"defaultCode\": 59688,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"remove_shopping_cart\",\n        \"id\": 621,\n        \"order\": 632,\n        \"prevSize\": 24,\n        \"code\": 59688,\n        \"name\": \"remove_shopping_cart\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 621\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 214h768v84h-768v-84zM128 470v-86h768v86h-768zM128 810v-84h768v84h-768zM128 640v-86h768v86h-768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"reorder\"\n        ],\n        \"defaultCode\": 59646,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"reorder\",\n        \"id\": 622,\n        \"order\": 633,\n        \"prevSize\": 24,\n        \"code\": 59646,\n        \"name\": \"reorder2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 622\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"repeat\"\n        ],\n        \"defaultCode\": 57408,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"repeat\",\n        \"id\": 623,\n        \"order\": 634,\n        \"prevSize\": 24,\n        \"code\": 57408,\n        \"name\": \"repeat2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 623\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 640h-64v-170h-64v-44l86-42h42v256zM726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"repeat_one\"\n        ],\n        \"defaultCode\": 57409,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"repeat_one\",\n        \"id\": 624,\n        \"order\": 635,\n        \"prevSize\": 24,\n        \"code\": 57409,\n        \"name\": \"repeat_one\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 624\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 142 114 256 256 256s256-114 256-256-114-256-256-256v172l-214-214 214-214v172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"replay\"\n        ],\n        \"defaultCode\": 57410,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"replay\",\n        \"id\": 625,\n        \"order\": 636,\n        \"prevSize\": 24,\n        \"code\": 57410,\n        \"name\": \"replay\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 625\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M564 648c0 6.531 12.65 14 20 14 4 0 10 0 14-4l8-10s4-8 4-12v-86c0 0-4-8-4-12 0-5.505-16.424-14-22-14-4 0-8 2-12 6l-8 8s-6 8-6 12v86s6 8 6 12zM648 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4-18 0-26-4-12-8-20-12c-13.488-6.744-18-39.492-18-60v-30c0-12 0-26 4-34l14-26s12-12 20-12 18-4 26-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"replay_10\"\n        ],\n        \"defaultCode\": 57433,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"replay_10\",\n        \"id\": 626,\n        \"order\": 637,\n        \"prevSize\": 24,\n        \"code\": 57433,\n        \"name\": \"replay_10\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 626\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M572 648c0 7.531 13.843 14 22 14 4 0 8 0 12-4l8-10s4-8 4-12v-86c0-4-4-8-4-12 0-4.671-15.121-14-20-14-4 0-10 2-14 6l-8 8s-4 8-4 12v86s4 8 4 12zM652 606c0 12 0 26-4 34l-12 26s-14 12-22 12-18 4-26 4c-20.252 0-32.299-9.149-46-16-8-4-8-14-12-26s-6-22-6-34v-30c0-12 2-26 6-34l12-26s14-12 22-12 16-4 24-4 18 0 26 4 14 8 22 12 8 14 12 26 4 22 4 34v30zM426 576c16.239 0 30-9.918 30-26v-8s-4-4-4-8-4-4-8-4h-22s-4 4-8 4-4 4-4 8v8h-44c0-19.788 17.639-46 36-46 4 0 16-4 20-4 17.345 0 35.264 5.632 48 12 10.13 5.065 16 24.218 16 38v14s-4 8-4 12-4 8-8 8-10 6-14 10c8 4 18 8 22 16s8 18 8 26 0 18-4 22-8 12-12 16-14 8-22 8-18 4-26 4-16 0-20-4-14-4-22-8c-11.162-5.581-18-27.017-18-42h36v8s4 4 4 8 4 4 8 4h22s4-4 8-4 4-4 4-8v-22s-4-4-4-8-4-4-8-4h-26v-30h16zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"replay_30\"\n        ],\n        \"defaultCode\": 57434,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"replay_30\",\n        \"id\": 627,\n        \"order\": 638,\n        \"prevSize\": 24,\n        \"code\": 57434,\n        \"name\": \"replay_30\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 627\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M504 580c-3.584 1.434-14 4.805-14 8 0 4-4 6-4 6h-30l10-94h102v30h-74l-4 38s4 0 4-4 6-2 6-6 4 0 8 0h8c8 0 18 2 22 6s12 8 16 12c8.873 8.873 18 27.257 18 46 0 8 0 18-4 22s-6 14-14 22-12 8-16 12-18 4-26 4-18 0-22-4-12-4-20-8c-11.191-5.596-18-22.554-18-38h34c0 14.809 10.59 20 26 20 4 0 8 0 12-4l10-8s4-8 4-12v-26l-4-8-10-10s-8-4-12-4h-8zM512 214c188 0 342 152 342 340s-154 342-342 342-342-154-342-342h86c0 140 116 256 256 256s256-116 256-256-116-256-256-256v172l-214-214 214-214v172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"replay_5\"\n        ],\n        \"defaultCode\": 57435,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"replay_5\",\n        \"id\": 628,\n        \"order\": 639,\n        \"prevSize\": 24,\n        \"code\": 57435,\n        \"name\": \"replay_5\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 628\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 384c298 42 428 256 470 470-106-150-256-218-470-218v174l-298-298 298-298v170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"reply\"\n        ],\n        \"defaultCode\": 57694,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"reply\",\n        \"id\": 629,\n        \"order\": 640,\n        \"prevSize\": 24,\n        \"code\": 57694,\n        \"name\": \"reply2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 629\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 384c298 42 428 256 470 470-106-150-256-218-470-218v174l-298-298 298-298v170zM298 342l-170 170 170 170v128l-298-298 298-298v128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"reply_all\"\n        ],\n        \"defaultCode\": 57695,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"reply_all\",\n        \"id\": 630,\n        \"order\": 641,\n        \"prevSize\": 24,\n        \"code\": 57695,\n        \"name\": \"reply_all\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 630\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 554v-256h-84v256h84zM512 738c30 0 56-26 56-56s-26-54-56-54-56 24-56 54 26 56 56 56zM672 128l224 224v320l-224 224h-320l-224-224v-320l224-224h320z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"report\"\n        ],\n        \"defaultCode\": 57696,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"report\",\n        \"id\": 631,\n        \"order\": 642,\n        \"prevSize\": 24,\n        \"code\": 57696,\n        \"name\": \"report\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 631\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 598v-172h-84v172h84zM554 768v-86h-84v86h84zM42 896l470-810 470 810h-940z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"warning\"\n        ],\n        \"defaultCode\": 57346,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"report_problem, warning\",\n        \"id\": 632,\n        \"order\": 643,\n        \"prevSize\": 24,\n        \"code\": 57346,\n        \"name\": \"warning2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 632\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 256c0-76 96-170 214-170v852h-106v-340h-108v-342zM470 384v-298h84v298c0 90-70 164-160 170v384h-106v-384c-90-6-160-80-160-170v-298h86v298h84v-298h86v298h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"restaurant\"\n        ],\n        \"defaultCode\": 58732,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"restaurant\",\n        \"id\": 633,\n        \"order\": 644,\n        \"prevSize\": 24,\n        \"code\": 58732,\n        \"name\": \"restaurant\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 633\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 768c118 0 214-96 214-214s-96-212-214-212c-76 0-142 40-180 98l-54-56v170h170l-68-68c24-48 74-80 132-80 82 0 150 66 150 148s-68 150-150 150c-50 0-96-26-122-64h-74c32 76 108 128 196 128zM598 86l256 256v512c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-684c0-46 38-84 84-84h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"restore_page\"\n        ],\n        \"defaultCode\": 59689,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"restore_page\",\n        \"id\": 634,\n        \"order\": 645,\n        \"prevSize\": 24,\n        \"code\": 59689,\n        \"name\": \"restore_page\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 634\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M274 418c0 0-148-148-152-150l60-62 152 152zM554 86v212h-84v-212h84zM902 268c-4 2-152 150-152 150l-60-60 152-152zM1012 712c8 8 12 18 12 30s-4 22-12 30l-106 106c-8 8-18 12-30 12s-22-4-30-12c-34-32-72-60-114-80-14-6-24-22-24-38v-132c-62-20-128-30-196-30s-134 10-196 30v132c0 18-10 34-24 40-42 20-80 46-114 78-8 8-18 12-30 12s-22-4-30-12l-106-106c-8-8-12-18-12-30s4-22 12-30c130-124 306-200 500-200s370 76 500 200z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"ring_volume\"\n        ],\n        \"defaultCode\": 57553,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"ring_volume\",\n        \"id\": 635,\n        \"order\": 646,\n        \"prevSize\": 24,\n        \"code\": 57553,\n        \"name\": \"ring_volume\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 635\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M590 332c166 34 294 176 306 350h-768c12-174 140-316 306-350-4-10-8-22-8-34 0-46 40-84 86-84s86 38 86 84c0 12-4 24-8 34zM86 726h852v84h-852v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"room_service\"\n        ],\n        \"defaultCode\": 60233,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"room_service\",\n        \"id\": 636,\n        \"order\": 647,\n        \"prevSize\": 24,\n        \"code\": 60233,\n        \"name\": \"room_service\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 636\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M826 284c150 150 150 392 0 542-74 76-174 112-272 112-64 0-126-16-184-48l64-62c38 18 78 26 120 26 76 0 154-30 212-88 116-116 116-306 0-422-58-58-136-88-212-88v138l-180-180 180-182v138c98 0 198 38 272 114zM158 550l156 156 156-156-156-156zM314 274l276 276-276 276-278-276z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rotate_90_degrees_ccw\"\n        ],\n        \"defaultCode\": 58392,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"rotate_90_degrees_ccw\",\n        \"id\": 637,\n        \"order\": 648,\n        \"prevSize\": 24,\n        \"code\": 58392,\n        \"name\": \"rotate_90_degrees_ccw\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 637\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 174c168 20 300 164 300 338s-132 318-300 338v-86c122-20 214-126 214-252s-92-232-214-252v166l-194-190 194-194v132zM302 782l62-62c32 24 68 38 106 44v86c-60-8-118-30-168-68zM260 554c6 38 20 74 42 106l-60 60c-38-50-60-106-68-166h86zM304 364c-22 32-38 68-44 106h-86c8-60 32-116 70-166z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rotate_left\"\n        ],\n        \"defaultCode\": 58393,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"rotate_left\",\n        \"id\": 638,\n        \"order\": 649,\n        \"prevSize\": 24,\n        \"code\": 58393,\n        \"name\": \"rotate_left\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 638\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M720 660c24-32 38-68 44-106h86c-8 60-30 116-68 166zM554 764c38-6 74-20 106-44l62 62c-50 38-108 60-168 68v-86zM850 470h-86c-6-38-20-74-44-106l62-60c38 50 60 106 68 166zM664 236l-194 190v-166c-122 20-214 126-214 252s92 232 214 252v86c-168-20-300-164-300-338s132-318 300-338v-132z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rotate_right\"\n        ],\n        \"defaultCode\": 58394,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"rotate_right\",\n        \"id\": 639,\n        \"order\": 650,\n        \"prevSize\": 24,\n        \"code\": 58394,\n        \"name\": \"rotate_right\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 639\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 342v212h-86v-212c0-70-58-128-128-128h-212v-86h212c118 0 214 96 214 214zM128 896v-86h86v86h-86zM298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM810 726v-86h86v86h-86zM810 810h86v86h-86v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rounded_corner\"\n        ],\n        \"defaultCode\": 59680,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"rounded_corner\",\n        \"id\": 640,\n        \"order\": 651,\n        \"prevSize\": 24,\n        \"code\": 59680,\n        \"name\": \"rounded_corner\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 640\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 768v-86h-86v86h86zM490 768v-86h-84v86h84zM342 768v-86h-86v86h86zM810 554c46 0 86 40 86 86v170c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-170c0-46 40-86 86-86h426v-170h86v170h84zM824 286l-34 34c-30-30-70-42-108-42s-76 12-106 42l-34-34c38-38 88-60 140-60s104 22 142 60zM862 252c-52-46-116-72-180-72s-126 26-178 72l-34-34c60-60 136-90 212-90s154 30 214 90z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"router\"\n        ],\n        \"defaultCode\": 58152,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"router\",\n        \"id\": 641,\n        \"order\": 652,\n        \"prevSize\": 24,\n        \"code\": 58152,\n        \"name\": \"router\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 641\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 896l-128 128-128-128v-64l-302-302c-14 2-28 2-40 2v-92c70 2 154-36 200-86l60-66c15.214-15.214 40.308-32 70-32h2c52 0 96 44 96 96v246c0 36-16 68-40 92l-152-152v-98c-26 22-62 44-98 60l268 268h64zM640 42c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM362 618l108 108h-86l-150 148-64-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rowing\"\n        ],\n        \"defaultCode\": 59681,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"rowing\",\n        \"id\": 642,\n        \"order\": 653,\n        \"prevSize\": 24,\n        \"code\": 59681,\n        \"name\": \"rowing\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 642\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 430c234 0 424 190 424 424h-122c0-166-136-302-302-302v-122zM170 190c366 0 664 298 664 664h-120c0-300-244-544-544-544v-120zM170 760c0-52 42-92 94-92s92 40 92 92-40 94-92 94-94-42-94-94z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rss_feed\"\n        ],\n        \"defaultCode\": 57573,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"rss_feed\",\n        \"id\": 643,\n        \"order\": 654,\n        \"prevSize\": 24,\n        \"code\": 57573,\n        \"name\": \"rss_feed\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 643\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 86l128 128-128 128v-86h-342v-86h342v-84zM768 598v-128h-170v128h170zM470 854c24 0 42-20 42-44s-18-42-42-42-44 18-44 42 20 44 44 44zM854 726h84v84h-340c0 70-58 128-128 128s-128-58-128-128h-86c-46 0-86-38-86-84v-128h300v-128h-172v84l-128-128 128-128v86h470c46 0 86 40 86 86v256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"rv_hookup\"\n        ],\n        \"defaultCode\": 58946,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"rv_hookup\",\n        \"id\": 644,\n        \"order\": 655,\n        \"prevSize\": 24,\n        \"code\": 58946,\n        \"name\": \"rv_hookup\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 644\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 768h596l-192-256-148 192-108-128zM214 512c166 0 298-134 298-300h-86c0 118-94 214-212 214v86zM214 212v130c70 0 128-60 128-130h-128zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"satellite\"\n        ],\n        \"defaultCode\": 58722,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"satellite\",\n        \"id\": 645,\n        \"order\": 656,\n        \"prevSize\": 24,\n        \"code\": 58722,\n        \"name\": \"satellite\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 645\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 384v-170h-426v170h426zM512 810c70 0 128-58 128-128s-58-128-128-128-128 58-128 128 58 128 128 128zM726 128l170 170v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"save\"\n        ],\n        \"defaultCode\": 57697,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"save\",\n        \"id\": 646,\n        \"order\": 657,\n        \"prevSize\": 24,\n        \"code\": 57697,\n        \"name\": \"save2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 646\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 726v-86h-426v86h426zM298 726v-86h-84v86h84zM844 456c30 8 52 44 52 78v234c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-170c0-46 40-86 86-86h536l-600-218 30-80z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"scanner\"\n        ],\n        \"defaultCode\": 58153,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"scanner\",\n        \"id\": 647,\n        \"order\": 658,\n        \"prevSize\": 24,\n        \"code\": 58153,\n        \"name\": \"scanner\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 647\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 128l470 256v342h-86v-296l-384 210-470-256zM214 562l298 164 298-164v172l-298 162-298-162v-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"school\"\n        ],\n        \"defaultCode\": 59404,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"school\",\n        \"id\": 648,\n        \"order\": 659,\n        \"prevSize\": 24,\n        \"code\": 59404,\n        \"name\": \"school\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 648\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M460 426v44h104v-44c0-28-24-50-52-50s-52 22-52 50zM426 682c-24 0-42-18-42-42v-128c0-24 18-42 42-42v-44c0-46 38-84 86-84 46 0 86 36 86 84v44c24 0 42 18 42 42v128c0 24-18 42-42 42h-172zM810 726v-428h-596v428h596zM896 214c46 0 86 38 86 84v428c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-428c0-46 40-84 86-84h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"screen_lock_landscape\"\n        ],\n        \"defaultCode\": 57790,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"screen_lock_landscape\",\n        \"id\": 649,\n        \"order\": 660,\n        \"prevSize\": 24,\n        \"code\": 57790,\n        \"name\": \"screen_lock_landscape\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 649\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 810v-596h-428v596h428zM726 42c46 0 84 40 84 86v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86h428zM460 426v44h104v-44c0-28-24-50-52-50s-52 22-52 50zM426 682c-24 0-42-18-42-42v-128c0-24 18-42 42-42v-44c0-46 38-84 86-84 46 0 86 36 86 84v44c24 0 42 18 42 42v128c0 24-18 42-42 42h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"screen_lock_portrait\"\n        ],\n        \"defaultCode\": 57791,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"screen_lock_portrait\",\n        \"id\": 650,\n        \"order\": 661,\n        \"prevSize\": 24,\n        \"code\": 57791,\n        \"name\": \"screen_lock_portrait\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 650\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M716 106v22h146v-22c0-40-32-72-72-72s-74 32-74 72zM682 384c-24 0-42-18-42-42v-172c0-24 18-42 42-42v-22c0-58 50-106 108-106s106 48 106 106v22c24 0 42 18 42 42v172c0 24-18 42-42 42h-214zM362 874l56-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 116 296 256 362zM992 544c26 24 26 66 0 92l-272 270c-24 26-64 26-90 0l-512-512c-26-24-26-64 0-90l270-272c24-26 66-26 92 0l104 104-60 60-90-88-242 240 484 484 240-242-94-94 60-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"screen_lock_rotation\"\n        ],\n        \"defaultCode\": 57792,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"screen_lock_rotation\",\n        \"id\": 651,\n        \"order\": 662,\n        \"prevSize\": 24,\n        \"code\": 57792,\n        \"name\": \"screen_lock_rotation\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 651\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M320 916l58-56 162 162-28 2c-268 0-488-208-510-470h64c16 160 114 296 254 362zM632 904l272-272-512-512-272 272zM436 74l514 514c26 24 26 64 0 90l-272 272c-24 26-64 26-90 0l-514-514c-26-24-26-64 0-90l272-272c24-26 64-26 90 0zM704 108l-58 56-162-162 28-2c268 0 488 208 510 470h-64c-16-160-114-296-254-362z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"screen_rotation\"\n        ],\n        \"defaultCode\": 57793,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"screen_rotation\",\n        \"id\": 652,\n        \"order\": 663,\n        \"prevSize\": 24,\n        \"code\": 57793,\n        \"name\": \"screen_rotation\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 652\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 618l172-160-172-160v92c-166 24-232 136-256 250 60-80 138-116 256-116v94zM854 768h170v86h-1024v-86h170c-48 0-84-40-84-86v-426c0-48 36-86 84-86h684c46 0 84 38 84 86v426c0 46-38 86-84 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"screen_share\"\n        ],\n        \"defaultCode\": 57570,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"screen_share\",\n        \"id\": 653,\n        \"order\": 664,\n        \"prevSize\": 24,\n        \"code\": 57570,\n        \"name\": \"screen_share\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 653\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 342v-172h-86v172h86zM640 342v-172h-86v172h86zM512 342v-172h-86v172h86zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-512 254-256h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sd_storage\"\n        ],\n        \"defaultCode\": 57794,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sd_card, sd_storage\",\n        \"id\": 654,\n        \"order\": 665,\n        \"prevSize\": 24,\n        \"code\": 57794,\n        \"name\": \"sd_storage\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 654\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"search\"\n        ],\n        \"defaultCode\": 59574,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"search\",\n        \"id\": 655,\n        \"order\": 666,\n        \"prevSize\": 24,\n        \"code\": 59574,\n        \"name\": \"search2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 655\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 42l384 172v256c0 236-164 458-384 512-220-54-384-276-384-512v-256zM512 512v382c158-50 276-206 298-382h-298zM512 512v-376l-298 132v244h298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"security\"\n        ],\n        \"defaultCode\": 58154,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"security\",\n        \"id\": 656,\n        \"order\": 667,\n        \"prevSize\": 24,\n        \"code\": 58154,\n        \"name\": \"security\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 656\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 384v256h256v-256h-256zM298 726v-428h428v428h-428zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM810 384v-86h86v86h-86zM810 896v-86h86c0 46-40 86-86 86zM810 554v-84h86v84h-86zM470 896v-86h84v86h-84zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 896c-46 0-86-40-86-86h86v86zM810 128c46 0 86 40 86 86h-86v-86zM554 128v86h-84v-86h84zM128 384v-86h86v86h-86zM298 896v-86h86v86h-86zM128 554v-84h86v84h-86zM128 214c0-46 40-86 86-86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"select_all\"\n        ],\n        \"defaultCode\": 57698,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"select_all\",\n        \"id\": 657,\n        \"order\": 668,\n        \"prevSize\": 24,\n        \"code\": 57698,\n        \"name\": \"select_all\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 657\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 896v-298l640-86-640-86v-298l896 384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"send\"\n        ],\n        \"defaultCode\": 57699,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"send\",\n        \"id\": 658,\n        \"order\": 669,\n        \"prevSize\": 24,\n        \"code\": 57699,\n        \"name\": \"send2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 658\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 598c100 0 184 60 218 148h-70c-30-50-84-84-148-84s-118 34-148 84h-70c34-88 118-148 218-148zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sentiment_dissatisfied\"\n        ],\n        \"defaultCode\": 59409,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sentiment_dissatisfied\",\n        \"id\": 659,\n        \"order\": 670,\n        \"prevSize\": 24,\n        \"code\": 59409,\n        \"name\": \"sentiment_dissatisfied\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 659\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM384 598h256v64h-256v-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sentiment_neutral\"\n        ],\n        \"defaultCode\": 59410,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sentiment_neutral\",\n        \"id\": 660,\n        \"order\": 671,\n        \"prevSize\": 24,\n        \"code\": 59410,\n        \"name\": \"sentiment_neutral\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 660\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 682c64 0 118-34 148-84h70c-34 88-118 148-218 148s-184-60-218-148h70c30 50 84 84 148 84zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM298 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64zM598 406c0-36 28-64 64-64s64 28 64 64-28 64-64 64-64-28-64-64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sentiment_satisfied\"\n        ],\n        \"defaultCode\": 59411,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sentiment_satisfied\",\n        \"id\": 661,\n        \"order\": 672,\n        \"prevSize\": 24,\n        \"code\": 59411,\n        \"name\": \"sentiment_satisfied\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 661\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 598c100 0 184 60 218 148h-436c34-88 118-148 218-148zM334 512l-46-46 46-44-46-46 46-44 44 44 46-44 46 44-46 46 46 44-46 46-46-46zM690 332l46 44-46 46 46 44-46 46-44-46-46 46-46-46 46-44-46-46 46-44 46 44zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sentiment_very_dissatisfied\"\n        ],\n        \"defaultCode\": 59412,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sentiment_very_dissatisfied\",\n        \"id\": 662,\n        \"order\": 673,\n        \"prevSize\": 24,\n        \"code\": 59412,\n        \"name\": \"sentiment_very_dissatisfied\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 662\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 746c-100 0-184-60-218-148h436c-34 88-118 148-218 148zM378 424l-44 46-46-46 90-90 92 90-46 46zM554 424l92-90 90 90-46 46-44-46-46 46zM512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sentiment_very_satisfied\"\n        ],\n        \"defaultCode\": 59413,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sentiment_very_satisfied\",\n        \"id\": 663,\n        \"order\": 674,\n        \"prevSize\": 24,\n        \"code\": 59413,\n        \"name\": \"sentiment_very_satisfied\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 663\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 662c82 0 150-68 150-150s-68-150-150-150-150 68-150 150 68 150 150 150zM830 554l90 70c8 6 10 18 4 28l-86 148c-6 10-16 12-26 8l-106-42c-22 16-46 32-72 42l-16 112c-2 10-10 18-20 18h-172c-10 0-18-8-20-18l-16-112c-26-10-50-24-72-42l-106 42c-10 4-20 2-26-8l-86-148c-6-10-4-22 4-28l90-70c-2-14-2-28-2-42s0-28 2-42l-90-70c-8-6-10-18-4-28l86-148c6-10 16-12 26-8l106 42c22-16 46-32 72-42l16-112c2-10 10-18 20-18h172c10 0 18 8 20 18l16 112c26 10 50 24 72 42l106-42c10-4 20-2 26 8l86 148c6 10 4 22-4 28l-90 70c2 14 2 28 2 42s0 28-2 42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings\"\n        ],\n        \"defaultCode\": 59576,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings\",\n        \"id\": 664,\n        \"order\": 675,\n        \"prevSize\": 24,\n        \"code\": 59576,\n        \"name\": \"settings\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 664\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M736 512c0-10 0-20-2-30l64-48c6-4 6-14 2-20l-60-104c-4-6-12-8-18-6l-74 30c-16-12-32-22-50-30l-12-78c-2-6-6-12-14-12h-120c-8 0-12 4-14 12l-12 80c-18 8-34 16-50 28l-74-30c-6-2-14 2-18 8l-60 102c-4 6-4 16 2 20l64 48c-2 10-2 20-2 30s0 20 2 30l-64 48c-6 4-6 14-2 20l60 104c4 6 12 8 18 6l74-30c16 12 32 22 50 30l12 78c2 6 6 12 14 12h120c8 0 12-4 14-12l12-80c18-8 34-16 50-28l74 30c6 2 14-2 18-8l60-102c4-6 4-16-2-20l-64-48c2-10 2-20 2-30zM810 128c48 0 86 40 86 86v596c0 46-38 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h596zM512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_applications\"\n        ],\n        \"defaultCode\": 59577,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_applications\",\n        \"id\": 665,\n        \"order\": 676,\n        \"prevSize\": 24,\n        \"code\": 59577,\n        \"name\": \"settings_applications\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 665\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 128c212 0 384 172 384 384s-172 384-384 384c-88 0-170-30-234-80l60-60c50 34 110 54 174 54 166 0 298-132 298-298s-132-298-298-298-298 132-298 298h128l-172 170-170-170h128c0-212 172-384 384-384zM598 512c0 46-40 86-86 86s-86-40-86-86 40-86 86-86 86 40 86 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_backup_restore\"\n        ],\n        \"defaultCode\": 59578,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_backup_restore\",\n        \"id\": 666,\n        \"order\": 677,\n        \"prevSize\": 24,\n        \"code\": 59578,\n        \"name\": \"settings_backup_restore\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 666\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M634 610l-80-80v160zM554 164v160l80-80zM756 244l-184 182 184 184-244 244h-42v-324l-196 196-60-60 238-240-238-238 60-60 196 196v-324h42zM640 1024v-86h86v86h-86zM298 1024v-86h86v86h-86zM470 1024v-86h84v86h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_bluetooth\"\n        ],\n        \"defaultCode\": 59579,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_bluetooth\",\n        \"id\": 667,\n        \"order\": 678,\n        \"prevSize\": 24,\n        \"code\": 59579,\n        \"name\": \"settings_bluetooth\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 667\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 384v256c70 0 128-58 128-128s-58-128-128-128zM342 682v-106l-64-64 64-64v-106h106l64-64 64 64h106v106l64 64-64 64v106h-106l-64 64-64-64h-106zM896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_brightness\"\n        ],\n        \"defaultCode\": 59581,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_brightness\",\n        \"id\": 668,\n        \"order\": 679,\n        \"prevSize\": 24,\n        \"code\": 59581,\n        \"name\": \"settings_brightness\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 668\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 682v-512h-340v512h340zM682 0c46 0 86 40 86 86v682c0 46-40 86-86 86h-340c-46 0-86-40-86-86v-682c0-46 40-86 86-86h340zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_cell\"\n        ],\n        \"defaultCode\": 59580,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_cell\",\n        \"id\": 669,\n        \"order\": 680,\n        \"prevSize\": 24,\n        \"code\": 59580,\n        \"name\": \"settings_cell\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 669\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M758 234l232 278-232 278-66-54 186-224-186-224zM470 554v-84h84v84h-84zM726 470v84h-86v-84h86zM298 554v-84h86v84h-86zM332 288l-186 224 186 224-66 54-232-278 232-278z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_ethernet\"\n        ],\n        \"defaultCode\": 59582,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_ethernet\",\n        \"id\": 670,\n        \"order\": 681,\n        \"prevSize\": 24,\n        \"code\": 59582,\n        \"name\": \"settings_ethernet\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 670\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 42c258 0 470 212 470 470h-86c0-212-172-384-384-384s-384 172-384 384h-86c0-258 212-470 470-470zM554 610v140l146 146-60 60-128-128-128 128-60-60 146-146v-140c-38-16-64-54-64-98 0-58 48-106 106-106s106 48 106 106c0 44-26 82-64 98zM512 214c166 0 298 132 298 298h-84c0-118-96-214-214-214s-214 96-214 214h-84c0-166 132-298 298-298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_input_antenna\"\n        ],\n        \"defaultCode\": 59583,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_input_antenna\",\n        \"id\": 671,\n        \"order\": 682,\n        \"prevSize\": 24,\n        \"code\": 59583,\n        \"name\": \"settings_input_antenna\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 671\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 682v-84h256v84c0 56-36 102-86 120v180h-86v-180c-50-18-84-64-84-120zM554 86v170h86v256h-256v-256h86v-170c0-24 18-44 42-44s42 20 42 44zM896 256h86v256h-256v-256h84v-170c0-24 20-44 44-44s42 20 42 44v170zM42 682v-84h256v84c0 56-34 102-84 120v180h-86v-180c-50-18-86-64-86-120zM384 682v-84h256v84c0 56-36 102-86 120v180h-84v-180c-50-18-86-64-86-120zM214 86v170h84v256h-256v-256h86v-170c0-24 18-44 42-44s44 20 44 44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_input_composite\"\n        ],\n        \"defaultCode\": 59585,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_input_component, settings_input_composite\",\n        \"id\": 672,\n        \"order\": 683,\n        \"prevSize\": 24,\n        \"code\": 59585,\n        \"name\": \"settings_input_composite\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 672\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 170v128h84v-84h44v84h84v-84h44v84h84v-128h-340zM768 298h42v256l-128 256v128h-340v-128l-128-256v-256h42v-128c0-46 40-84 86-84h340c46 0 86 38 86 84v128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_input_hdmi\"\n        ],\n        \"defaultCode\": 59586,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_input_hdmi\",\n        \"id\": 673,\n        \"order\": 684,\n        \"prevSize\": 24,\n        \"code\": 59586,\n        \"name\": \"settings_input_hdmi\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 673\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M662 640c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM746 426c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM512 896c212 0 384-172 384-384s-172-384-384-384-384 172-384 384 172 384 384 384zM512 42c258 0 470 212 470 470s-212 470-470 470-470-212-470-470 212-470 470-470zM362 640c36 0 64 28 64 64s-28 64-64 64-64-28-64-64 28-64 64-64zM640 278c0 36-28 64-64 64h-128c-36 0-64-28-64-64s28-64 64-64h128c36 0 64 28 64 64zM342 490c0 36-28 64-64 64s-64-28-64-64 28-64 64-64 64 28 64 64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_input_svideo\"\n        ],\n        \"defaultCode\": 59587,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_input_svideo\",\n        \"id\": 674,\n        \"order\": 685,\n        \"prevSize\": 24,\n        \"code\": 59587,\n        \"name\": \"settings_input_svideo\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 674\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM598 682l-86 108-86-108h172zM256 426v172l-106-86zM768 426l106 86-106 86v-172zM512 234l86 108h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_overscan\"\n        ],\n        \"defaultCode\": 59588,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_overscan\",\n        \"id\": 675,\n        \"order\": 686,\n        \"prevSize\": 24,\n        \"code\": 59588,\n        \"name\": \"settings_overscan\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 675\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 384h86v86h-86v-86zM854 662c24 0 42 18 42 42v150c0 24-18 42-42 42-400 0-726-326-726-726 0-24 18-42 42-42h150c24 0 42 18 42 42 0 54 8 104 24 152 4 14 2 32-10 44l-94 94c62 120 162 220 282 282l94-94c12-12 30-14 44-10 48 16 98 24 152 24zM726 384v86h-86v-86h86zM554 384v86h-84v-86h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_phone\"\n        ],\n        \"defaultCode\": 59589,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_phone\",\n        \"id\": 676,\n        \"order\": 687,\n        \"prevSize\": 24,\n        \"code\": 59589,\n        \"name\": \"settings_phone\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 676\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 1024v-86h86v86h-86zM706 190c88 62 148 164 148 280 0 188-154 340-342 340s-342-152-342-340c0-116 60-218 148-280l60 60c-74 46-122 128-122 220 0 142 114 256 256 256s256-114 256-256c0-92-50-174-124-218zM554 86v426h-84v-426h84zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_power\"\n        ],\n        \"defaultCode\": 59590,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_power\",\n        \"id\": 677,\n        \"order\": 688,\n        \"prevSize\": 24,\n        \"code\": 59590,\n        \"name\": \"settings_power\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 677\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 0c130 0 248 52 332 138l-60 60c-70-70-166-112-272-112s-202 42-272 112l-60-60c84-84 202-138 332-138zM300 258c54-54 130-88 212-88s158 34 212 88l-60 60c-38-38-94-62-152-62s-114 24-152 62zM512 640c46 0 86-40 86-86s-40-84-86-84-86 38-86 84 40 86 86 86zM640 384c24 0 42 18 42 42v512c0 24-18 44-42 44h-256c-24 0-42-20-42-44v-512c0-24 18-42 42-42h256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_remote\"\n        ],\n        \"defaultCode\": 59591,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_remote\",\n        \"id\": 678,\n        \"order\": 689,\n        \"prevSize\": 24,\n        \"code\": 59591,\n        \"name\": \"settings_remote\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 678\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 812v-600h-768v600h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768zM384 682c-70 0-128-58-128-128 0-66 50-120 114-126h8c24-50 74-86 134-86 76 0 138 56 148 128h2c58 0 106 48 106 106s-48 106-106 106h-278z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_system_daydream\"\n        ],\n        \"defaultCode\": 57795,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_system_daydream\",\n        \"id\": 679,\n        \"order\": 690,\n        \"prevSize\": 24,\n        \"code\": 57795,\n        \"name\": \"settings_system_daydream\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 679\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 426c0 146-116 268-256 288v140h-84v-140c-140-20-256-142-256-288h72c0 128 108 218 226 218s226-90 226-218h72zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM512 554c-70 0-128-58-128-128v-256c0-70 58-128 128-128s128 58 128 128v256c0 70-58 128-128 128zM298 1024v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"settings_voice\"\n        ],\n        \"defaultCode\": 59592,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"settings_voice\",\n        \"id\": 680,\n        \"order\": 691,\n        \"prevSize\": 24,\n        \"code\": 59592,\n        \"name\": \"settings_voice\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 680\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 686c68 0 124 56 124 124s-56 126-124 126-124-58-124-126c0-10 0-20 2-28l-302-176c-24 22-54 34-88 34-70 0-128-58-128-128s58-128 128-128c34 0 64 12 88 34l300-174c-2-10-4-20-4-30 0-70 58-128 128-128s128 58 128 128-58 128-128 128c-34 0-64-14-88-36l-300 176c2 10 4 20 4 30s-2 20-4 30l304 176c22-20 52-32 84-32z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"share\"\n        ],\n        \"defaultCode\": 59405,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"share\",\n        \"id\": 681,\n        \"order\": 692,\n        \"prevSize\": 24,\n        \"code\": 59405,\n        \"name\": \"share2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 681\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 768l320-214-320-170v384zM426 170v86h172v-86h-172zM682 256h256v554c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-554h256v-86c0-48 36-84 84-84h172c48 0 84 36 84 84v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shop\"\n        ],\n        \"defaultCode\": 59593,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"shop\",\n        \"id\": 682,\n        \"order\": 693,\n        \"prevSize\": 24,\n        \"code\": 59593,\n        \"name\": \"shop\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 682\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 640l234-170-234-128v298zM512 128v86h170v-86h-170zM768 214h214v468c0 48-38 86-86 86h-598c-48 0-84-38-84-86v-468h212v-86c0-48 38-86 86-86h170c48 0 86 38 86 86v86zM128 384v470h682c0 48-36 84-84 84h-598c-48 0-86-36-86-84v-470h86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shop_two\"\n        ],\n        \"defaultCode\": 59594,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"shop_two\",\n        \"id\": 683,\n        \"order\": 694,\n        \"prevSize\": 24,\n        \"code\": 59594,\n        \"name\": \"shop_two\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 683\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 726c46 0 86-40 86-86s-40-86-86-86-86 40-86 86 40 86 86 86zM384 384h256l-128-188zM734 384h204c24 0 44 18 44 42-34.625 138.041-73.705 271.628-110 408-10 36-42 62-82 62h-556c-40 0-72-26-82-62l-108-396c-2-4-2-8-2-12 0-24 20-42 44-42h204l186-280c8-12 22-18 36-18s28 6 36 18z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shopping_basket\"\n        ],\n        \"defaultCode\": 59595,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"shopping_basket\",\n        \"id\": 684,\n        \"order\": 695,\n        \"prevSize\": 24,\n        \"code\": 59595,\n        \"name\": \"shopping_basket\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 684\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 554h428v86h-428v-86zM170 384h684v86h-684v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"short_text\"\n        ],\n        \"defaultCode\": 57953,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"short_text\",\n        \"id\": 685,\n        \"order\": 696,\n        \"prevSize\": 24,\n        \"code\": 57953,\n        \"name\": \"short_text\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 685\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M150 788l-64-64 320-320 170 172 302-340 60 60-362 408-170-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"show_chart\"\n        ],\n        \"defaultCode\": 59105,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"show_chart\",\n        \"id\": 686,\n        \"order\": 697,\n        \"prevSize\": 24,\n        \"code\": 59105,\n        \"name\": \"show_chart\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 686\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M632 572l134 134 88-88v236h-236l88-88-134-134zM618 170h236v236l-88-88-536 536-60-60 536-536zM452 392l-60 60-222-222 60-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"shuffle\"\n        ],\n        \"defaultCode\": 57411,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"shuffle\",\n        \"id\": 687,\n        \"order\": 698,\n        \"prevSize\": 24,\n        \"code\": 57411,\n        \"name\": \"shuffle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 687\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 938l852-852v852h-852z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal_cellular_4_bar\"\n        ],\n        \"defaultCode\": 57800,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"signal_cellular_4_bar\",\n        \"id\": 688,\n        \"order\": 699,\n        \"prevSize\": 24,\n        \"code\": 57800,\n        \"name\": \"signal_cellular_4_bar\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 688\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 938l852-852v256h-170v596h-682zM854 938v-84h84v84h-84zM854 768v-342h84v342h-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal_cellular_connected_no_internet_4_bar\"\n        ],\n        \"defaultCode\": 57805,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"signal_cellular_connected_no_internet_4_bar\",\n        \"id\": 689,\n        \"order\": 700,\n        \"prevSize\": 24,\n        \"code\": 57805,\n        \"name\": \"signal_cellular_connected_no_internet_4_bar\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 689\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 86v852h-852zM854 292l-562 562h562v-562z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal_cellular_null\"\n        ],\n        \"defaultCode\": 57807,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"signal_cellular_null\",\n        \"id\": 690,\n        \"order\": 701,\n        \"prevSize\": 24,\n        \"code\": 57807,\n        \"name\": \"signal_cellular_null\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 690\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M204 192l734 736-54 54-84-86h-758l378-378-270-272zM896 42v734l-366-366z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal_cellular_off\"\n        ],\n        \"defaultCode\": 57808,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"signal_cellular_off\",\n        \"id\": 691,\n        \"order\": 702,\n        \"prevSize\": 24,\n        \"code\": 57808,\n        \"name\": \"signal_cellular_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 691\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 916l-496-618c20-14 210-170 496-170s476 156 496 170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal_wifi_4_bar\"\n        ],\n        \"defaultCode\": 57816,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"signal_wifi_4_bar\",\n        \"id\": 692,\n        \"order\": 703,\n        \"prevSize\": 24,\n        \"code\": 57816,\n        \"name\": \"signal_wifi_4_bar\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 692\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M662 618v112l-150 188-494-620c18-12 208-170 494-170s476 158 494 170l-88 112c-12-4-26-4-44-4-120 0-212 92-212 212zM938 682v-64c0-34-30-64-64-64s-64 30-64 64v64h128zM982 682c22 0 42 22 42 44v170c0 22-20 42-42 42h-214c-22 0-42-20-42-42v-170c0-22 20-44 42-44v-64c0-60 46-106 106-106s108 46 108 106v64z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal_wifi_4_bar_lock\"\n        ],\n        \"defaultCode\": 57817,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"signal_wifi_4_bar_lock\",\n        \"id\": 693,\n        \"order\": 704,\n        \"prevSize\": 24,\n        \"code\": 57817,\n        \"name\": \"signal_wifi_4_bar_lock\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 693\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M140 62c244.604 245.396 490.948 489.052 734 736l-54 54-142-142-166 206-496-618c10-8 64-52 156-94l-86-88zM1008 298l-232 290-442-440c54-12 114-20 178-20 286 0 476 156 496 170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"signal_wifi_off\"\n        ],\n        \"defaultCode\": 57818,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"signal_wifi_off\",\n        \"id\": 694,\n        \"order\": 705,\n        \"prevSize\": 24,\n        \"code\": 57818,\n        \"name\": \"signal_wifi_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 694\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 640v-170h-86v170h86zM554 554v-84h-84v84h84zM554 810v-170h-84v170h84zM384 640v-170h-86v170h86zM726 810v-84h-86v84h86zM384 810v-84h-86v84h86zM852 170l2 684c0 46-40 84-86 84h-512c-46 0-86-38-86-84v-512l256-256h342c46 0 84 38 84 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sim_card\"\n        ],\n        \"defaultCode\": 58155,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sim_card\",\n        \"id\": 695,\n        \"order\": 706,\n        \"prevSize\": 24,\n        \"code\": 58155,\n        \"name\": \"sim_card\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 695\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 554v-212h-84v212h84zM554 726v-86h-84v86h84zM768 86c46 0 86 38 86 84v684c0 46-40 84-86 84h-512c-46 0-86-38-86-84l2-512 254-256h342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sim_card_alert\"\n        ],\n        \"defaultCode\": 58916,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sim_card_alert\",\n        \"id\": 696,\n        \"order\": 707,\n        \"prevSize\": 24,\n        \"code\": 58916,\n        \"name\": \"sim_card_alert\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 696\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 256h86v512h-86v-512zM256 768v-512l362 256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"skip_next\"\n        ],\n        \"defaultCode\": 57412,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"skip_next\",\n        \"id\": 697,\n        \"order\": 708,\n        \"prevSize\": 24,\n        \"code\": 57412,\n        \"name\": \"skip_next\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 697\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M406 512l362-256v512zM256 256h86v512h-86v-512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"skip_previous\"\n        ],\n        \"defaultCode\": 57413,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"skip_previous\",\n        \"id\": 698,\n        \"order\": 709,\n        \"prevSize\": 24,\n        \"code\": 57413,\n        \"name\": \"skip_previous\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 698\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-596h-596v596h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-46 0-86-40-86-86v-596c0-46 40-86 86-86h596zM426 342l214 170-214 170v-340z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"slideshow\"\n        ],\n        \"defaultCode\": 58395,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"slideshow\",\n        \"id\": 699,\n        \"order\": 710,\n        \"prevSize\": 24,\n        \"code\": 58395,\n        \"name\": \"slideshow\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 699\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 512c0 220-168 402-382 424v-86c168-22 298-166 298-338s-130-316-298-338v-86c214 22 382 204 382 424zM242 842l60-60c48 36 106 60 168 68v86c-86-8-164-42-228-94zM174 554c8 62 32 120 68 166l-60 62c-52-64-86-142-94-228h86zM242 302c-36 48-60 106-68 168h-86c8-86 42-164 94-228zM470 174c-62 8-120 32-168 68l-60-60c64-52 142-86 228-94v86zM556 418l126 94c-85.639 63.694-170.958 127.709-256 192z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"slow_motion_video\"\n        ],\n        \"defaultCode\": 57448,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"slow_motion_video\",\n        \"id\": 700,\n        \"order\": 711,\n        \"prevSize\": 24,\n        \"code\": 57448,\n        \"name\": \"slow_motion_video\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 700\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stay_primary_portrait\"\n        ],\n        \"defaultCode\": 57558,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"smartphone, stay_current_portrait, stay_primary_portrait\",\n        \"id\": 701,\n        \"order\": 712,\n        \"prevSize\": 24,\n        \"code\": 57558,\n        \"name\": \"stay_primary_portrait\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 701\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 680l-126-126h126v126zM618 372c-78 0-142-66-142-144s64-142 142-142v64c-44 0-78 30-78 74s34 86 78 86h66c80 0 148 58 148 134v68h-64v-54c0-56-40-86-84-86h-66zM804 208c80 38 134 120 134 216v88h-64v-88c0-96-74-174-170-174v-64c44 0 78-36 78-80h64c0 40-16 76-42 102zM768 554h64v128h-64v-128zM874 554h64v128h-64v-128zM86 256l52-54 726 726-54 54-298-300h-426v-128h298z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"smoke_free\"\n        ],\n        \"defaultCode\": 60234,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"smoke_free\",\n        \"id\": 702,\n        \"order\": 713,\n        \"prevSize\": 24,\n        \"code\": 60234,\n        \"name\": \"smoke_free\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 702\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M684 436c80 0 148 56 148 134v70h-64v-56c0-56-40-86-84-86h-66c-78 0-142-66-142-144s64-142 142-142v64c-44 0-78 30-78 74s34 86 78 86h66zM804 330c80 38 134 120 134 214v96h-64v-96c0-96-74-172-170-172v-64c44 0 78-36 78-80s-34-78-78-78v-64c78 0 142 64 142 142 0 40-16 76-42 102zM768 682h64v128h-64v-128zM874 682h64v128h-64v-128zM86 682h640v128h-640v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"smoking_rooms\"\n        ],\n        \"defaultCode\": 60235,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"smoking_rooms\",\n        \"id\": 703,\n        \"order\": 714,\n        \"prevSize\": 24,\n        \"code\": 60235,\n        \"name\": \"smoking_rooms\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 703\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 470v-86h-86v86h86zM554 470v-86h-84v86h84zM384 470v-86h-86v86h86zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"textsms\"\n        ],\n        \"defaultCode\": 57560,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sms, textsms\",\n        \"id\": 704,\n        \"order\": 715,\n        \"prevSize\": 24,\n        \"code\": 57560,\n        \"name\": \"textsms\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 704\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 470v-86h256v76l-154 180h154v86h-256v-78l154-178h-154zM512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM512 170c212 0 384 172 384 384s-172 384-384 384-384-172-384-384 172-384 384-384zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"snooze\"\n        ],\n        \"defaultCode\": 57414,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"snooze\",\n        \"id\": 705,\n        \"order\": 716,\n        \"prevSize\": 24,\n        \"code\": 57414,\n        \"name\": \"snooze\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 705\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 554v-84h512v84h-512zM128 256h768v86h-768v-86zM128 768v-86h256v86h-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort\"\n        ],\n        \"defaultCode\": 57700,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sort\",\n        \"id\": 706,\n        \"order\": 717,\n        \"prevSize\": 24,\n        \"code\": 57700,\n        \"name\": \"sort2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 706\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M672 688h260v68h-364v-54l252-366h-250v-68h354v54zM212 582h166l-84-222zM260 268h70l192 488h-78l-40-104h-218l-40 104h-78zM438 826h198l-100 100zM638 198h-202l100-100z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sort_by_alpha\"\n        ],\n        \"defaultCode\": 57427,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sort_by_alpha\",\n        \"id\": 707,\n        \"order\": 718,\n        \"prevSize\": 24,\n        \"code\": 57427,\n        \"name\": \"sort_by_alpha\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 707\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M660 410c-54 30-104 68-148 114-44-46-94-84-148-114 10-118 58-232 150-324 90 90 138 204 146 324zM86 426c190.34 0 343.492 108.446 426 234 82.593-125.685 235.712-234 426-234 0 226-142 418-342 490-28 10-54 16-84 22-30-4-58-12-84-22-200-72-342-264-342-490z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"spa\"\n        ],\n        \"defaultCode\": 60236,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"spa\",\n        \"id\": 708,\n        \"order\": 719,\n        \"prevSize\": 24,\n        \"code\": 60236,\n        \"name\": \"spa\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 708\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 384h86v256h-684v-256h86v170h512v-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"space_bar\"\n        ],\n        \"defaultCode\": 57942,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"space_bar\",\n        \"id\": 709,\n        \"order\": 720,\n        \"prevSize\": 24,\n        \"code\": 57942,\n        \"name\": \"space_bar\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 709\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 512c70 0 128 58 128 128s-58 128-128 128-128-58-128-128 58-128 128-128zM512 854c118 0 214-96 214-214s-96-214-214-214-214 96-214 214 96 214 214 214zM512 170c-48 0-86 40-86 86s38 86 86 86c46 0 86-40 86-86s-40-86-86-86zM726 86c46 0 84 38 84 84v684c0 46-38 84-84 84h-428c-46 0-84-38-84-84v-684c0-46 38-84 84-84h428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"speaker\"\n        ],\n        \"defaultCode\": 58157,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"speaker\",\n        \"id\": 710,\n        \"order\": 721,\n        \"prevSize\": 24,\n        \"code\": 58157,\n        \"name\": \"speaker\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 710\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 214v682h426v86h-426c-48 0-86-40-86-86v-682h86zM490 534c0-58 50-108 108-108s106 50 106 108-48 106-106 106-108-48-108-106zM598 704c94 0 170-76 170-170s-76-172-170-172-172 78-172 172 78 170 172 170zM598 128c-46 0-86 38-86 86s40 84 86 84 84-36 84-84-38-86-84-86zM776 42c42 0 78 36 78 78v614c0 42-36 76-78 76h-358c-42 0-76-34-76-76v-614c0-42 34-78 76-78h358z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"speaker_group\"\n        ],\n        \"defaultCode\": 58158,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"speaker_group\",\n        \"id\": 711,\n        \"order\": 722,\n        \"prevSize\": 24,\n        \"code\": 58158,\n        \"name\": \"speaker_group\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 711\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 342v-86h-342v86h342zM768 470v-86h-342v86h342zM640 598v-86h-214v86h214zM342 342v-86h-86v86h86zM342 470v-86h-86v86h86zM342 598v-86h-86v86h86zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"speaker_notes\"\n        ],\n        \"defaultCode\": 59597,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"speaker_notes\",\n        \"id\": 712,\n        \"order\": 723,\n        \"prevSize\": 24,\n        \"code\": 59597,\n        \"name\": \"speaker_notes\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 712\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 86c46 0 84 38 84 84v512c0 46-36 84-82 86l-298-298h210v-86h-296l-42-42h338v-86h-342v82l-252-252h680zM256 470h86l-86-86v86zM342 598v-86h-86v86h86zM54 74l884 884-54 54-244-244h-384l-170 170v-724l-86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"speaker_notes_off\"\n        ],\n        \"defaultCode\": 59690,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"speaker_notes_off\",\n        \"id\": 713,\n        \"order\": 724,\n        \"prevSize\": 24,\n        \"code\": 59690,\n        \"name\": \"speaker_notes_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 713\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 854v-342h-256v342h256zM634 428c26 0 48 22 48 48v414c0 26-22 48-48 48h-244c-26 0-48-22-48-48v-414c0-26 22-50 48-50zM512 42c128 0 246 54 330 138l-60 60c-70-70-164-112-270-112s-200 42-270 112l-60-60c84-84 202-138 330-138zM298 302c54-54 130-88 214-88s160 34 214 88l-62 60c-38-38-92-62-152-62s-114 24-152 62z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"speaker_phone\"\n        ],\n        \"defaultCode\": 57554,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"speaker_phone\",\n        \"id\": 714,\n        \"order\": 725,\n        \"prevSize\": 24,\n        \"code\": 57554,\n        \"name\": \"speaker_phone\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 714\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M922 494l60 60-406 406-216-218 60-60 156 158zM274 470h176l-88-236zM532 682l-50-128h-240l-48 128h-90l218-554h80l218 554h-88z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"spellcheck\"\n        ],\n        \"defaultCode\": 59598,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"spellcheck\",\n        \"id\": 715,\n        \"order\": 726,\n        \"prevSize\": 24,\n        \"code\": 59598,\n        \"name\": \"spellcheck\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 715\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 658l160 96-42-182 142-124-188-16-72-172-72 172-188 16 142 124-42 182zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"star_border\"\n        ],\n        \"defaultCode\": 59450,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"star_border\",\n        \"id\": 716,\n        \"order\": 727,\n        \"prevSize\": 24,\n        \"code\": 59450,\n        \"name\": \"star_border\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 716\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 658l160 96-42-182 142-124-188-16-72-172v398zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"star_half\"\n        ],\n        \"defaultCode\": 59449,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"star_half\",\n        \"id\": 717,\n        \"order\": 728,\n        \"prevSize\": 24,\n        \"code\": 59449,\n        \"name\": \"star_half\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 717\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M692 768l-48-206 160-138-210-18-82-192-82 194-210 16 160 138-48 206 180-108zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stars\"\n        ],\n        \"defaultCode\": 59600,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"stars\",\n        \"id\": 718,\n        \"order\": 729,\n        \"prevSize\": 24,\n        \"code\": 59600,\n        \"name\": \"stars\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 718\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 298h-596v428h596v-428zM44 298c0-46 38-84 84-84h768c46 0 86 38 86 84v428c0 46-40 84-86 84h-768c-46 0-86-38-86-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stay_primary_landscape\"\n        ],\n        \"defaultCode\": 57557,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"stay_current_landscape, stay_primary_landscape\",\n        \"id\": 719,\n        \"order\": 730,\n        \"prevSize\": 24,\n        \"code\": 57557,\n        \"name\": \"stay_primary_landscape\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 719\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 256h512v512h-512v-512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stop\"\n        ],\n        \"defaultCode\": 57415,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"stop\",\n        \"id\": 720,\n        \"order\": 731,\n        \"prevSize\": 24,\n        \"code\": 57415,\n        \"name\": \"stop2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 720\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 640c40-56 90-88 156-104l-68-68c-50 48-74 108-88 172zM102 74l842 842-54 54-116-116h-774v-86h170c-48 0-84-38-84-84v-428c0-26 10-46 28-62l-66-66zM938 684c0 32-18 60-44 74l-236-236 68-64-172-158v90c-8 2-14 2-22 4l-224-222h546c46 0 84 36 84 84v428zM906 768h118v86h-34z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"stop_screen_share\"\n        ],\n        \"defaultCode\": 57571,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"stop_screen_share\",\n        \"id\": 721,\n        \"order\": 732,\n        \"prevSize\": 24,\n        \"code\": 57571,\n        \"name\": \"stop_screen_share\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 721\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 470v84h86v-84h-86zM86 598v-172h852v172h-852zM256 298v-84h-86v84h86zM86 170h852v172h-852v-172zM170 726v84h86v-84h-86zM86 854v-172h852v172h-852z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"storage\"\n        ],\n        \"defaultCode\": 57819,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"storage\",\n        \"id\": 722,\n        \"order\": 733,\n        \"prevSize\": 24,\n        \"code\": 57819,\n        \"name\": \"storage\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 722\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 768v-170h-256v170h256zM896 598h-42v256h-86v-256h-170v256h-428v-256h-42v-86l42-214h684l42 214v86zM854 170v86h-684v-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"store_mall_directory\"\n        ],\n        \"defaultCode\": 58723,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"store, store_mall_directory\",\n        \"id\": 723,\n        \"order\": 734,\n        \"prevSize\": 24,\n        \"code\": 58723,\n        \"name\": \"store_mall_directory\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 723\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 682v-340h-86v170h-84v-170h-86v170h-86v-170h-84v170h-86v-170h-86v170h-84v-170h-86v340h768zM896 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-340c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"straighten\"\n        ],\n        \"defaultCode\": 58396,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"straighten\",\n        \"id\": 724,\n        \"order\": 735,\n        \"prevSize\": 24,\n        \"code\": 58396,\n        \"name\": \"straighten\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 724\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M490 256c0 76 32 146 82 196l-418 418c-16-16-26-36-26-60v-596c0-46 40-86 86-86h308c-20 38-32 82-32 128zM554 256c0-118 96-214 214-214s214 96 214 214-96 214-214 214-214-96-214-214zM536 612c64-48 146-78 232-78 44 0 88 8 128 22v254c0 46-40 86-86 86h-298v-234c0-20 10-38 24-50z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"streetview\"\n        ],\n        \"defaultCode\": 58734,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"streetview\",\n        \"id\": 725,\n        \"order\": 736,\n        \"prevSize\": 24,\n        \"code\": 58734,\n        \"name\": \"streetview\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 725\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M400 560c0 76.243 48.309 108 124 108 52.313 0 98-21.34 98-72 0-47.832-25.37-58.685-60-76-6-2-16-6-24-8h-410v-86h768v86h-166c2 4 6 10 8 14 8 20 14 44 14 70 0 92.509-60.376 138.965-134 160-28 8-58 12-92 12-20 0-42-2-62-6-43.831-8.766-81.207-20.905-112-44-45.673-34.254-78-79.826-78-158h126zM622 320c0-61.554-39.204-90-102-90-45.146 0-79.257 14.514-94 44-4 8-6 18-6 28 0 20 12 38 32 52 16 10 32 20 60 30h-196c-2-4-6-6-8-10-12-20-16-44-16-72 0-57.483 29.861-98.689 64-126 41.082-28.758 95.625-48 166-48 70.131 0 128.265 20.039 166 54 35.121 31.608 62 75.894 62 138h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"strikethrough_s\"\n        ],\n        \"defaultCode\": 57943,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"strikethrough_s\",\n        \"id\": 726,\n        \"order\": 737,\n        \"prevSize\": 24,\n        \"code\": 57943,\n        \"name\": \"strikethrough_s\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 726\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M250 842v-270l148 356h-62c-46 0-86-40-86-86zM336 374c24 0 42-20 42-44s-18-42-42-42-42 18-42 42 18 44 42 44zM940 680c18 44-2 94-46 112l-314 130c-10 4-22 6-34 6-34 0-64-20-78-52l-212-512c-4-12-6-22-6-34 0-32 20-62 52-76l316-130c12-4 22-6 34-6 32 0 62 20 76 52zM108 838c-44-18-64-66-46-110l104-250v384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"style\"\n        ],\n        \"defaultCode\": 58397,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"style\",\n        \"id\": 727,\n        \"order\": 738,\n        \"prevSize\": 24,\n        \"code\": 58397,\n        \"name\": \"style\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 727\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 384l60 60-154 154h392v-428h86v512h-478l154 154-60 60-256-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"subdirectory_arrow_left\"\n        ],\n        \"defaultCode\": 58841,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"subdirectory_arrow_left\",\n        \"id\": 728,\n        \"order\": 739,\n        \"prevSize\": 24,\n        \"code\": 58841,\n        \"name\": \"subdirectory_arrow_left\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 728\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 640l-256 256-60-60 154-154h-478v-512h86v428h392l-154-154 60-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"subdirectory_arrow_right\"\n        ],\n        \"defaultCode\": 58842,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"subdirectory_arrow_right\",\n        \"id\": 729,\n        \"order\": 740,\n        \"prevSize\": 24,\n        \"code\": 58842,\n        \"name\": \"subdirectory_arrow_right\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 729\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 214h684v84h-684v-84zM170 640v-86h684v86h-684zM854 384v86h-684v-86h684zM598 726v84h-428v-84h428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"subject\"\n        ],\n        \"defaultCode\": 59602,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"subject\",\n        \"id\": 730,\n        \"order\": 741,\n        \"prevSize\": 24,\n        \"code\": 59602,\n        \"name\": \"subject\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 730\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 682l-256-138v278zM938 512v342c0 46-38 84-84 84h-684c-46 0-84-38-84-84v-342c0-46 38-86 84-86h684c46 0 84 40 84 86zM768 86v84h-512v-84h512zM854 342h-684v-86h684v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"subscriptions\"\n        ],\n        \"defaultCode\": 57444,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"subscriptions\",\n        \"id\": 731,\n        \"order\": 742,\n        \"prevSize\": 24,\n        \"code\": 57444,\n        \"name\": \"subscriptions\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 731\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 598v-86h-428v86h428zM854 768v-86h-172v86h172zM598 768v-86h-428v86h428zM170 512v86h172v-86h-172zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"subtitles\"\n        ],\n        \"defaultCode\": 57416,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"subtitles\",\n        \"id\": 732,\n        \"order\": 743,\n        \"prevSize\": 24,\n        \"code\": 57416,\n        \"name\": \"subtitles\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 732\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 678v-294c0-112-114-128-256-128-128 0-256 16-256 128v294c0 62 50 112 112 112l-48 48v16h72l64-64h120l64 64h64v-16l-48-48c62 0 112-50 112-112zM760 120c114 44 178 138 178 258v560h-852v-560c0-120 64-214 178-258 76-30 168-34 248-34s172 4 248 34zM300 384h426v214h-426v-214zM320 682c0-24 18-42 42-42s44 18 44 42-20 44-44 44-42-20-42-44zM618 682c0-24 20-42 44-42s42 18 42 42-18 44-42 44-44-20-44-44z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"subway\"\n        ],\n        \"defaultCode\": 58735,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"subway\",\n        \"id\": 733,\n        \"order\": 744,\n        \"prevSize\": 24,\n        \"code\": 58735,\n        \"name\": \"subway2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 733\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 554c28 0 64 4 102 12-88 48-102 112-102 148v96h-298v-106c0-100 198-150 298-150zM704 598c78 0 234 38 234 116v96h-468v-96c0-78 156-116 234-116zM384 470c-70 0-128-58-128-128s58-128 128-128 128 58 128 128-58 128-128 128zM704 512c-58 0-106-48-106-106s48-108 106-108 106 50 106 108-48 106-106 106z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"supervisor_account\"\n        ],\n        \"defaultCode\": 59603,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"supervisor_account\",\n        \"id\": 734,\n        \"order\": 745,\n        \"prevSize\": 24,\n        \"code\": 59603,\n        \"name\": \"supervisor_account\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 734\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 426c46 0 86 40 86 86s-40 86-86 86-86-40-86-86 40-86 86-86zM754 754c66-66 100-154 100-242s-34-176-100-242l-62 62c50 50 76 114 76 180s-24 132-74 182zM512 682c94 0 170-76 170-170s-76-170-170-170-170 76-170 170 76 170 170 170zM332 692c-50-50-76-114-76-180s24-132 74-182l-60-60c-66 66-100 154-100 242s34 176 100 242zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"surround_sound\"\n        ],\n        \"defaultCode\": 57417,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"surround_sound\",\n        \"id\": 735,\n        \"order\": 746,\n        \"prevSize\": 24,\n        \"code\": 57417,\n        \"name\": \"surround_sound\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 735\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 170l170 172h-128v298c0 94-76 170-170 170s-170-76-170-170v-298c0-46-40-86-86-86s-86 40-86 86v298h128l-170 170-170-170h128v-298c0-94 76-172 170-172s170 78 170 172v298c0 46 40 86 86 86s86-40 86-86v-298h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"swap_calls\"\n        ],\n        \"defaultCode\": 57559,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"swap_calls\",\n        \"id\": 736,\n        \"order\": 747,\n        \"prevSize\": 24,\n        \"code\": 57559,\n        \"name\": \"swap_calls\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 736\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 384l-170 170v-128h-300v-84h300v-128zM298 470v128h300v84h-300v128l-170-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"swap_horiz\"\n        ],\n        \"defaultCode\": 59604,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"swap_horiz\",\n        \"id\": 737,\n        \"order\": 748,\n        \"prevSize\": 24,\n        \"code\": 59604,\n        \"name\": \"swap_horiz\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 737\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 128l170 170h-128v300h-84v-300h-128zM682 726h128l-170 170-170-170h128v-300h84v300z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"swap_vert\"\n        ],\n        \"defaultCode\": 59605,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"swap_vert\",\n        \"id\": 738,\n        \"order\": 749,\n        \"prevSize\": 24,\n        \"code\": 59605,\n        \"name\": \"swap_vert\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 738\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M746 640h-106v-170h-86v170h-106l150 150zM278 384h106v170h86v-170h106l-150-150zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"swap_vertical_circle\"\n        ],\n        \"defaultCode\": 59606,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"swap_vertical_circle\",\n        \"id\": 739,\n        \"order\": 750,\n        \"prevSize\": 24,\n        \"code\": 59606,\n        \"name\": \"swap_vertical_circle\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 739\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 662l150-150-150-150v108h-256v-108l-150 150 150 150v-108h256v108zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h136l78-84h256l78 84h136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"switch_camera\"\n        ],\n        \"defaultCode\": 58398,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"switch_camera\",\n        \"id\": 740,\n        \"order\": 751,\n        \"prevSize\": 24,\n        \"code\": 58398,\n        \"name\": \"switch_camera\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 740\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 662l150-150-150-150v108h-256v-108l-148 150 148 150v-108h256v108zM768 406l170-172v556l-170-172v150c0 24-18 42-42 42h-598c-24 0-42-18-42-42v-512c0-24 18-42 42-42h598c24 0 42 18 42 42v150z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"switch_video\"\n        ],\n        \"defaultCode\": 58399,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"switch_video\",\n        \"id\": 741,\n        \"order\": 752,\n        \"prevSize\": 24,\n        \"code\": 58399,\n        \"name\": \"switch_video\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 741\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 170l-102 102c62 62 102 146 102 240 0 66-20 128-52 180l-64-62c18-36 30-76 30-118 0-70-30-134-76-180l-94 94v-256h256zM122 230l54-54 670 672-54 54-100-100c-30 18-62 32-96 40v-88c12-4 24-10 34-16l-344-344c-18 36-30 76-30 118 0 70 30 134 76 180l94-94v256h-256l102-102c-62-62-102-146-102-240 0-66 20-128 52-180zM426 270c-12 4-22 10-32 16l-62-64c30-18 60-32 94-40v88z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sync_disabled\"\n        ],\n        \"defaultCode\": 58920,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sync_disabled\",\n        \"id\": 742,\n        \"order\": 753,\n        \"prevSize\": 24,\n        \"code\": 58920,\n        \"name\": \"sync_disabled\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 742\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M470 554v-256h84v256h-84zM896 170l-100 102c62 62 100 146 100 240 0 160-108 292-256 330v-88c100-34 170-130 170-242 0-70-28-134-74-180l-96 94v-256h256zM470 726v-86h84v86h-84zM128 512c0-160 108-292 256-330v88c-100 34-170 130-170 242 0 70 28 134 74 180l96-94v256h-256l100-102c-62-62-100-146-100-240z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"sync_problem\"\n        ],\n        \"defaultCode\": 58921,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"sync_problem\",\n        \"id\": 743,\n        \"order\": 754,\n        \"prevSize\": 24,\n        \"code\": 58921,\n        \"name\": \"sync_problem\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 743\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 554l-170 172-170-172h128v-212h84v212h128zM726 810v-596h-428v596h428zM726 44c46 0 84 38 84 84v768c0 46-38 86-84 86h-428c-46 0-84-40-84-86v-768c0-46 38-86 84-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"system_update\"\n        ],\n        \"defaultCode\": 58922,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"system_update\",\n        \"id\": 744,\n        \"order\": 755,\n        \"prevSize\": 24,\n        \"code\": 58922,\n        \"name\": \"system_update\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 744\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 150c46 0 86 38 86 84v598c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-598c0-46 40-84 86-84h256v84h-256v598h768v-598h-256v-84h256zM512 704l-170-170h128v-384h84v384h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"system_update_alt\"\n        ],\n        \"defaultCode\": 59607,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"system_update_alt\",\n        \"id\": 745,\n        \"order\": 756,\n        \"prevSize\": 24,\n        \"code\": 59607,\n        \"name\": \"system_update_alt\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 745\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 810v-426h-342v-170h-426v596h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tab\"\n        ],\n        \"defaultCode\": 59608,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tab\",\n        \"id\": 746,\n        \"order\": 757,\n        \"prevSize\": 24,\n        \"code\": 59608,\n        \"name\": \"tab\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 746\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 896v-86h84v86h-84zM554 896v-86h86v86h-86zM896 554v-84h86v84h-86zM896 896v-86h86c0 46-40 86-86 86zM214 214v-86h84v86h-84zM214 896v-86h84v86h-84zM384 214v-86h86v86h-86zM896 726v-86h86v86h-86zM896 128c46 0 86 40 86 86v170h-428v-256h342zM128 896c-46 0-86-40-86-86h86v86zM42 726v-86h86v86h-86zM384 896v-86h86v86h-86zM42 214c0-46 40-86 86-86v86h-86zM42 554v-84h86v84h-86zM42 384v-86h86v86h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tab_unselected\"\n        ],\n        \"defaultCode\": 59609,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tab_unselected\",\n        \"id\": 747,\n        \"order\": 758,\n        \"prevSize\": 24,\n        \"code\": 59609,\n        \"name\": \"tab_unselected\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 747\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 768v-512h-596v512h596zM896 170c46 0 86 40 86 86l-2 512c0 46-38 86-84 86h-768c-46 0-86-40-86-86v-512c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tablet\"\n        ],\n        \"defaultCode\": 58159,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tablet\",\n        \"id\": 748,\n        \"order\": 759,\n        \"prevSize\": 24,\n        \"code\": 58159,\n        \"name\": \"tablet2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 748\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M822 810v-682h-620v682h620zM598 938v-42h-172v42h172zM768 0c70 0 128 58 128 128v768c0 70-58 128-128 128h-512c-70 0-128-58-128-128v-768c0-70 58-128 128-128h512z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tablet_android\"\n        ],\n        \"defaultCode\": 58160,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tablet_android\",\n        \"id\": 749,\n        \"order\": 760,\n        \"prevSize\": 24,\n        \"code\": 58160,\n        \"name\": \"tablet_android\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 749\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 810v-682h-640v682h640zM490 982c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM790 0c58 0 106 48 106 106v812c0 58-48 106-106 106h-598c-58 0-106-48-106-106v-812c0-58 48-106 106-106h598z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tablet_mac\"\n        ],\n        \"defaultCode\": 58161,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tablet_mac\",\n        \"id\": 750,\n        \"order\": 761,\n        \"prevSize\": 24,\n        \"code\": 58161,\n        \"name\": \"tablet_mac\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 750\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 44c46 0 84 38 84 84v726c0 46-38 84-84 84h-90c-4-60-18-116-40-170h130v-554h-428v256c-28-12-54-22-84-28v-314c0-46 38-86 84-86zM86 512c260 0 468 210 468 470h-84c0-212-172-384-384-384v-86zM86 854c70 0 128 58 128 128h-128v-128zM86 682c166 0 298 134 298 300h-86c0-118-94-214-212-214v-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tap_and_play\"\n        ],\n        \"defaultCode\": 58923,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tap_and_play\",\n        \"id\": 751,\n        \"order\": 762,\n        \"prevSize\": 24,\n        \"code\": 58923,\n        \"name\": \"tap_and_play\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 751\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M918 384v128h-128v298h-128v-298h-128v-128h384zM106 170h556v128h-214v512h-128v-512h-214v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"text_fields\"\n        ],\n        \"defaultCode\": 57954,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"text_fields\",\n        \"id\": 752,\n        \"order\": 763,\n        \"prevSize\": 24,\n        \"code\": 57954,\n        \"name\": \"text_fields\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 752\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 256l-80 214h160zM406 546l-40 94h-88l202-470h64l202 470h-88l-40-94h-212zM214 726h596v84h-596v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"text_format\"\n        ],\n        \"defaultCode\": 57701,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"text_format\",\n        \"id\": 753,\n        \"order\": 764,\n        \"prevSize\": 24,\n        \"code\": 57701,\n        \"name\": \"text_format\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 753\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M396 896l500-500v122l-378 378h-122zM896 810c0 45.948-40.071 86-86 86h-84l170-170v84zM214 128h84l-170 170v-84c0-46 40-86 86-86zM506 128h122l-500 500v-122zM832 132c30 8 54 30 62 60l-702 700c-29.35-8.386-51.612-30.641-60-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"texture\"\n        ],\n        \"defaultCode\": 58401,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"texture\",\n        \"id\": 754,\n        \"order\": 765,\n        \"prevSize\": 24,\n        \"code\": 58401,\n        \"name\": \"texture\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 754\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 128h172v512h-172v-512zM640 128c46 0 86 40 86 86v426c0 24-10 44-26 60l-280 282-46-46c-12-12-18-26-18-44v-14l42-196h-270c-46 0-86-38-86-84l2-4h-2v-82c0-12 2-22 6-32l130-300c12-30 42-52 78-52h384z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thumb_down\"\n        ],\n        \"defaultCode\": 59611,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"thumb_down\",\n        \"id\": 755,\n        \"order\": 766,\n        \"prevSize\": 24,\n        \"code\": 59611,\n        \"name\": \"thumb_down\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 755\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M982 426l-2 4h2v82c0 12-2 22-6 32l-130 300c-12 30-42 52-78 52h-384c-46 0-86-40-86-86v-426c0-24 10-44 26-60l280-282 46 46c12 12 18 26 18 44v14l-42 196h270c46 0 86 38 86 84zM42 896v-512h172v512h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thumb_up\"\n        ],\n        \"defaultCode\": 59612,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"thumb_up\",\n        \"id\": 756,\n        \"order\": 767,\n        \"prevSize\": 24,\n        \"code\": 59612,\n        \"name\": \"thumb_up\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 756\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M960 426c36 0 64 28 64 64v278c0 18-6 34-18 46l-212 210-34-34c-8-8-14-20-14-34 9.903-48.764 20.016-97.317 30-146h-222c-24 0-42-18-42-42v-54c0-8 2-14 4-22l98-226c10-22 32-40 58-40h288zM512 256v54c0 8-2 14-4 22l-98 226c-10 22-32 40-58 40h-288c-36 0-64-28-64-64v-278c0-18 6-34 18-46l212-210 34 34c8 8 14 20 14 34-9.903 48.764-20.016 97.317-30 146h222c24 0 42 18 42 42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"thumbs_up_down\"\n        ],\n        \"defaultCode\": 59613,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"thumbs_up_down\",\n        \"id\": 757,\n        \"order\": 768,\n        \"prevSize\": 24,\n        \"code\": 59613,\n        \"name\": \"thumbs_up_down\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 757\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c188 0 342-154 342-342s-154-342-342-342-342 154-342 342 154 342 342 342zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426zM692 332c100 100 102 260 2 360s-262 100-362 0l180-180v-256c66 0 130 26 180 76z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"timelapse\"\n        ],\n        \"defaultCode\": 58402,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"timelapse\",\n        \"id\": 758,\n        \"order\": 769,\n        \"prevSize\": 24,\n        \"code\": 58402,\n        \"name\": \"timelapse\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 758\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M982 342c0 46-40 84-86 84-8 0-16 0-22-2l-152 152c2 6 4 14 4 22 0 46-40 84-86 84s-86-38-86-84c0-8 2-16 4-22l-110-110c-6 2-14 4-22 4s-16-2-22-4l-194 194c2 6 4 14 4 22 0 46-40 86-86 86s-86-40-86-86 40-84 86-84c8 0 16 0 22 2l194-194c-2-6-2-14-2-22 0-46 38-86 84-86s86 40 86 86c0 8 0 16-2 22l108 108c6-2 14-2 22-2s16 0 22 2l152-150c-2-6-4-14-4-22 0-46 40-86 86-86s86 40 86 86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"timeline\"\n        ],\n        \"defaultCode\": 59682,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"timeline\",\n        \"id\": 759,\n        \"order\": 770,\n        \"prevSize\": 24,\n        \"code\": 59682,\n        \"name\": \"timeline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 759\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c166 0 298-134 298-300s-132-298-298-298-298 132-298 298 132 300 298 300zM812 316c52 66 84 148 84 238 0 212-172 384-384 384s-384-172-384-384 172-384 384-384c90 0 174 34 240 86l60-62c22 18 42 38 60 60zM470 598v-256h84v256h-84zM640 42v86h-256v-86h256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"timer\"\n        ],\n        \"defaultCode\": 58405,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"timer\",\n        \"id\": 760,\n        \"order\": 771,\n        \"prevSize\": 24,\n        \"code\": 58405,\n        \"name\": \"timer\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 760\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M550 564v-108c0-46.336-4.565-80.274-20-106-10.651-21.301-30.408-30-60-30-12 0-26 2-36 6-38.752 23.251-46 67.987-46 132v106c0 26 0 48 4 66s12 30 18 42c11.183 22.366 28.34 32 60 32 30.847 0 49.232-10.465 60-32 6-12 12-24 16-42s4-40 4-66zM304 470c0-128.235 41.373-218 166-218 51.866 0 95.697 16.753 120 48 30.427 39.121 44 97.117 44 170v82c0 127.815-39.287 220-164 220-124.183 0-166-92.158-166-220v-82zM872 446c-32.637 0-60 13.357-60 46 0 29.093 15.625 31.050 38 40 10 4 24 8 38 10 22 4 38 10 56 16s32 16 44 24 20 20 26 32 10 24 10 42c0 61.841-40.186 88.062-88 104-18 6-38 8-60 8-71.904 0-126.918-28.808-148-78-6-14-10-28-10-44h82c0 42.578 34.153 60 76 60 37.394 0 66-11.786 66-46 0-27.148-17.025-33.61-38-42-25.468-10.187-69.818-18.182-96-28-16-6-28-14-40-22-22.109-14.739-38-37.152-38-72 0-55.126 40.755-89.585 84-104 18-6 36-8 58-8 81.863 0 150 38.271 150 118h-84c0-24.555-15.687-44.922-36-50-8-2-20-6-30-6zM0 330l202-74h12v512h-86v-410l-128 44v-72z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"timer_10\"\n        ],\n        \"defaultCode\": 58403,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"timer_10\",\n        \"id\": 761,\n        \"order\": 772,\n        \"prevSize\": 24,\n        \"code\": 58403,\n        \"name\": \"timer_10\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 761\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M748 446c-31.882 0-62 15.146-62 46 0 27.366 18.619 31.448 40 40 10 4 22 8 36 10 22 4 40 10 58 16s32 16 44 24 20 20 26 32 10 24 10 42c0 61.841-40.186 88.062-88 104-18 6-40 8-62 8-70.791 0-125.226-29.528-146-78-6-14-10-28-10-44h80c0 40.848 37.077 60 78 60 37.394 0 66-11.786 66-46 0-27.148-17.025-33.61-38-42-10-4-26-8-42-12-37.616-7.523-69.901-20.601-96-38-21.057-14.038-36-38.904-36-72 0-55.126 40.755-89.585 84-104 18-6 36-8 58-8 81.863 0 150 38.271 150 118h-84c0-26.038-16.411-44.603-38-50-8-2-18-6-28-6zM430 506c49.449 18.543 84 50.968 84 116 0 51.199-17.71 87.282-48 110-28.071 24.061-68.907 40-120 40-93.754 0-168-50.495-168-144h86c0 23.009 8.297 45.722 22 56 14.704 11.028 35.068 20 60 20 54.151 0 84-28.151 84-82 0-57.252-34.133-82-92-82h-52v-66h50c41.016 0 70.217-16.541 82-46 4-10 4-20 4-32 0-49.775-24.914-76-76-76-37.446 0-59.461 14.922-72 40-4 8-6 18-6 30h-84c0-68.668 45.9-107.96 96-128 20-6 42-10 66-10 97.425 0 160 46.959 160 144 0 56.969-36.756 90.378-76 110z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"timer_3\"\n        ],\n        \"defaultCode\": 58404,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"timer_3\",\n        \"id\": 762,\n        \"order\": 773,\n        \"prevSize\": 24,\n        \"code\": 58404,\n        \"name\": \"timer_3\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 762\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 854c54 0 106-16 150-42l-408-408c-26 44-40 96-40 150 0 166 132 300 298 300zM128 170l758 758-54 54-108-108c-62 40-134 64-212 64-212 0-384-172-384-384 0-78 24-152 64-212l-118-118zM470 402v-60h84v146zM640 42v86h-256v-86h256zM812 194l60 60-60 62c52 66 84 148 84 238 0 78-24 152-64 212l-62-62c26-44 40-96 40-150 0-166-132-298-298-298-54 0-104 14-148 40l-64-62c60-40 134-64 212-64 90 0 174 32 240 84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"timer_off\"\n        ],\n        \"defaultCode\": 58406,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"timer_off\",\n        \"id\": 763,\n        \"order\": 774,\n        \"prevSize\": 24,\n        \"code\": 58406,\n        \"name\": \"timer_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 763\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 170h596v128h-234v512h-128v-512h-234v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"title\"\n        ],\n        \"defaultCode\": 57956,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"title\",\n        \"id\": 764,\n        \"order\": 775,\n        \"prevSize\": 24,\n        \"code\": 57956,\n        \"name\": \"title\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 764\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 554v-84h86v84h-86zM810 298h86v86h-86v-86zM810 726v-86h86v86h-86zM128 726v-86h598v86h-598zM128 554v-84h598v84h-598zM128 384v-86h598v86h-598z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"toc\"\n        ],\n        \"defaultCode\": 59614,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"toc\",\n        \"id\": 765,\n        \"order\": 776,\n        \"prevSize\": 24,\n        \"code\": 59614,\n        \"name\": \"toc\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 765\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 426h214v214h-214v-214zM810 810v-468h-596v468h596zM810 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-596c0-46 38-86 86-86h42v-86h86v86h340v-86h86v86h42z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"today\"\n        ],\n        \"defaultCode\": 59615,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"today\",\n        \"id\": 766,\n        \"order\": 777,\n        \"prevSize\": 24,\n        \"code\": 59615,\n        \"name\": \"today\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 766\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 512c0 112 70 208 170 242v88c-148-38-256-170-256-330s108-292 256-330v88c-100 34-170 130-170 242zM640 768c142 0 256-114 256-256s-114-256-256-256-256 114-256 256 114 256 256 256zM640 170c188 0 342 154 342 342s-154 342-342 342-342-154-342-342 154-342 342-342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"toll\"\n        ],\n        \"defaultCode\": 59616,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"toll\",\n        \"id\": 767,\n        \"order\": 778,\n        \"prevSize\": 24,\n        \"code\": 59616,\n        \"name\": \"toll\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 767\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M842 598c4-14 6-30 8-44h-296v44h288zM778 726c10-14 22-30 30-44h-254v44h224zM554 850c44-6 86-20 124-40h-124v40zM554 426v44h296c-2-14-4-30-8-44h-288zM554 298v44h254c-8-14-20-30-30-44h-224zM554 174v40h124c-38-20-80-34-124-40zM470 850v-676c-168 20-300 164-300 338s132 318 300 338zM512 86c236 0 426 190 426 426s-190 426-426 426-426-190-426-426 190-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tonality\"\n        ],\n        \"defaultCode\": 58407,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tonality\",\n        \"id\": 768,\n        \"order\": 779,\n        \"prevSize\": 24,\n        \"code\": 58407,\n        \"name\": \"tonality\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 768\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M804 678c22 10 38 32 38 58v8l-32 226c-4 32-30 54-62 54h-290c-18 0-32-6-44-18l-212-212 34-34c8-8 20-14 34-14 4 0 6 2 10 2l146 30v-458c0-36 28-64 64-64s64 28 64 64v256h34c8 0 14 2 22 4zM384 480c-52-34-86-94-86-160 0-106 86-192 192-192s192 86 192 192c0 66-32 126-84 160v-160c0-58-50-106-108-106s-106 48-106 106v160z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"touch_app\"\n        ],\n        \"defaultCode\": 59667,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"touch_app\",\n        \"id\": 769,\n        \"order\": 780,\n        \"prevSize\": 24,\n        \"code\": 59667,\n        \"name\": \"touch_app\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 769\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 512c0 128-106 234-234 234s-236-106-236-234h470zM512 512c-128 0-234-106-234-234s106-236 234-236v470zM512 512c128 0 234 106 234 234s-106 236-234 236v-470zM512 512c0-128 106-234 234-234s236 106 236 234h-470z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"toys\"\n        ],\n        \"defaultCode\": 58162,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"toys\",\n        \"id\": 770,\n        \"order\": 781,\n        \"prevSize\": 24,\n        \"code\": 58162,\n        \"name\": \"toys\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 770\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M814 210c78 78 124 184 124 302 0 236-190 426-426 426s-426-190-426-426 190-426 426-426h42v352c26 14 44 42 44 74 0 46-40 86-86 86s-86-40-86-86c0-32 18-60 44-74v-90c-74 20-128 84-128 164 0 94 76 170 170 170s170-76 170-170c0-46-20-88-50-120l60-60c46 46 76 110 76 180 0 142-114 256-256 256s-256-114-256-256c0-126 92-232 214-252v-86c-168 20-300 164-300 338 0 188 154 342 342 342s342-154 342-342c0-94-38-180-100-242z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"track_changes\"\n        ],\n        \"defaultCode\": 59617,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"track_changes\",\n        \"id\": 771,\n        \"order\": 782,\n        \"prevSize\": 24,\n        \"code\": 59617,\n        \"name\": \"track_changes\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 771\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 384c48 0 86-40 86-86 0-48-40-84-86-84-48 0-86 36-86 84 0 46 38 86 86 86zM512 598c48 0 86-40 86-86s-40-86-86-86c-48 0-86 40-86 86s38 86 86 86zM512 810c48 0 86-38 86-84s-40-86-86-86c-48 0-86 40-86 86s38 84 86 84zM854 426c0 80-54 146-128 166v48h128c0 80-54 144-128 164v50c0 24-20 42-44 42h-340c-24 0-44-18-44-42v-50c-74-20-128-84-128-164h128v-48c-74-20-128-86-128-166h128v-48c-74-20-128-84-128-164h128v-44c0-24 20-42 44-42h340c24 0 44 18 44 42v44h128c0 80-54 144-128 164v48h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"traffic\"\n        ],\n        \"defaultCode\": 58725,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"traffic\",\n        \"id\": 772,\n        \"order\": 783,\n        \"prevSize\": 24,\n        \"code\": 58725,\n        \"name\": \"traffic\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 772\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M704 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM554 426h214v-170h-214v170zM470 426v-170h-214v170h214zM320 726c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM512 86c188 0 342 20 342 170v406c0 82-68 148-150 148l64 64v22h-86l-84-86h-162l-84 86h-96v-22l64-64c-82 0-150-66-150-148v-406c0-150 172-170 342-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"train\"\n        ],\n        \"defaultCode\": 58736,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"train\",\n        \"id\": 773,\n        \"order\": 784,\n        \"prevSize\": 24,\n        \"code\": 58736,\n        \"name\": \"train2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 773\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 598v-214h-428v214h428zM512 790c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM810 722c0 72-38 132-110 132h4l64 64v20h-86l-84-84h-162l-84 84h-96v-20l68-68c-60-14-110-66-110-128v-360c0-118 120-144 254-148l34-64h-204v-64h428v64h-140l-32 64c146 4 256 28 256 148v360z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tram\"\n        ],\n        \"defaultCode\": 58737,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tram\",\n        \"id\": 774,\n        \"order\": 785,\n        \"prevSize\": 24,\n        \"code\": 58737,\n        \"name\": \"tram\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 774\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M246 380l-118 602h90l74-342 92 86v256h86v-322l-88-88 26-128c56 68 138 110 232 110v-84c-78 0-148-44-186-106l-40-68c-14-26-42-40-72-40-10 0-22 2-32 6l-224 92v200h84v-142l76-32zM406 234c-46 0-86-38-86-84s40-86 86-86 84 40 84 86-38 84-84 84zM832 842v-74l106 106-106 108v-76h-234v-64h234zM704 662h234v64h-234v74l-106-106 106-108v76z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"transfer_within_a_station\"\n        ],\n        \"defaultCode\": 58738,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"transfer_within_a_station\",\n        \"id\": 775,\n        \"order\": 786,\n        \"prevSize\": 24,\n        \"code\": 58738,\n        \"name\": \"transfer_within_a_station\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 775\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 342v-86h256c46 0 86 40 86 86v256h-86v-256h-256zM938 768h-170v86h86l-128 128-128-128h84v-86h-340c-46 0-86-40-86-86v-340h-170v-86h170v-86h-86l128-128 128 128h-84v512h596v86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"transform\"\n        ],\n        \"defaultCode\": 58408,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"transform\",\n        \"id\": 776,\n        \"order\": 787,\n        \"prevSize\": 24,\n        \"code\": 58408,\n        \"name\": \"transform\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 776\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M678 726h138l-70-186zM790 426l192 512h-86l-48-128h-202l-48 128h-86l192-512h86zM550 642l-34 88-132-132-214 212-60-60 218-214c-54-60-96-124-128-194h86c26 50 58 98 98 142 62-68 108-146 136-228h-478v-86h300v-84h84v84h300v86h-126c-32 100-84 196-158 278l-2 2z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"translate\"\n        ],\n        \"defaultCode\": 59618,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"translate\",\n        \"id\": 777,\n        \"order\": 788,\n        \"prevSize\": 24,\n        \"code\": 59618,\n        \"name\": \"translate\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 777\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 768l98-98-208-208-170 170-316-316 60-60 256 256 170-170 268 268 98-98v256h-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"trending_down\"\n        ],\n        \"defaultCode\": 59619,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"trending_down\",\n        \"id\": 778,\n        \"order\": 789,\n        \"prevSize\": 24,\n        \"code\": 59619,\n        \"name\": \"trending_down\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 778\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 512l-170 170v-128h-640v-84h640v-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"trending_flat\"\n        ],\n        \"defaultCode\": 59620,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"trending_flat\",\n        \"id\": 779,\n        \"order\": 790,\n        \"prevSize\": 24,\n        \"code\": 59620,\n        \"name\": \"trending_flat\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 779\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 256h256v256l-98-98-268 268-170-170-256 256-60-60 316-316 170 170 208-208z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"trending_up\"\n        ],\n        \"defaultCode\": 59621,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"trending_up\",\n        \"id\": 780,\n        \"order\": 791,\n        \"prevSize\": 24,\n        \"code\": 59621,\n        \"name\": \"trending_up\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 780\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 384v-256h86v86h170v84h-170v86h-86zM896 554h-426v-84h426v84zM298 384h86v256h-86v-86h-170v-84h170v-86zM554 896h-84v-256h84v86h342v84h-342v86zM128 214h426v84h-426v-84zM128 726h256v84h-256v-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tune\"\n        ],\n        \"defaultCode\": 58409,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tune\",\n        \"id\": 781,\n        \"order\": 792,\n        \"prevSize\": 24,\n        \"code\": 58409,\n        \"name\": \"tune\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 781\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 726v-512h-768v512h768zM896 128c46 0 86 40 86 86l-2 512c0 46-38 84-84 84h-214v86h-340v-86h-214c-46 0-86-38-86-84v-512c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"tv\"\n        ],\n        \"defaultCode\": 58163,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"tv\",\n        \"id\": 782,\n        \"order\": 793,\n        \"prevSize\": 24,\n        \"code\": 58163,\n        \"name\": \"tv2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 782\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M218 214h588l-40-44h-512zM512 406l-234 234h148v86h172v-86h148zM876 222c12 14 20 36 20 56v532c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-532c0-20 8-42 20-56l58-70c12-14 30-24 50-24h512c20 0 38 10 50 24z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"unarchive\"\n        ],\n        \"defaultCode\": 57705,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"unarchive\",\n        \"id\": 783,\n        \"order\": 794,\n        \"prevSize\": 24,\n        \"code\": 57705,\n        \"name\": \"unarchive\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 783\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M534 342c198 0 364 130 424 308l-100 32c-44-136-172-234-324-234-84 0-160 30-220 80l156 154h-384v-384l152 154c78-68 182-110 296-110z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"undo\"\n        ],\n        \"defaultCode\": 57702,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"undo\",\n        \"id\": 784,\n        \"order\": 795,\n        \"prevSize\": 24,\n        \"code\": 57702,\n        \"name\": \"undo2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 784\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M708 230l-196 196-196-196 60-60 136 136 136-136zM316 794l196-196 196 196-60 60-136-136-136 136z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"unfold_less\"\n        ],\n        \"defaultCode\": 58838,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"unfold_less\",\n        \"id\": 785,\n        \"order\": 796,\n        \"prevSize\": 24,\n        \"code\": 58838,\n        \"name\": \"unfold_less\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 785\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 776l136-136 60 60-196 196-196-196 60-60zM512 248l-136 136-60-60 196-196 196 196-60 60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"unfold_more\"\n        ],\n        \"defaultCode\": 58839,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"unfold_more\",\n        \"id\": 786,\n        \"order\": 797,\n        \"prevSize\": 24,\n        \"code\": 58839,\n        \"name\": \"unfold_more\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 786\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M534 342v180l148 90-30 52-182-110v-212h64zM896 432h-290l118-120c-116-116-306-120-422-4s-116 300 0 416 306 116 422 0c58-58 86-124 86-208h86c0 84-36 194-112 268-150 148-394 148-544 0s-150-388 0-536 390-148 540 0l116-120v304z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"update\"\n        ],\n        \"defaultCode\": 59683,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"update\",\n        \"id\": 787,\n        \"order\": 798,\n        \"prevSize\": 24,\n        \"code\": 59683,\n        \"name\": \"update\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 787\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M640 298h170v172h-42v84c0 48-38 86-86 86h-128v130c30 16 52 48 52 84 0 52-42 94-94 94s-94-42-94-94c0-36 22-68 52-84v-130h-128c-48 0-86-38-86-86v-88c-30-16-52-46-52-82 0-52 42-94 94-94s94 42 94 94c0 36-20 66-50 82v88h128v-340h-86l128-172 128 172h-86v340h128v-84h-42v-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"usb\"\n        ],\n        \"defaultCode\": 57824,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"usb\",\n        \"id\": 788,\n        \"order\": 799,\n        \"prevSize\": 24,\n        \"code\": 57824,\n        \"name\": \"usb2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 788\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 726l342-342-60-60-282 280-110-110-60 60zM512 42l384 172v256c0 236-164 458-384 512-220-54-384-276-384-512v-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"verified_user\"\n        ],\n        \"defaultCode\": 59624,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"verified_user\",\n        \"id\": 789,\n        \"order\": 800,\n        \"prevSize\": 24,\n        \"code\": 59624,\n        \"name\": \"verified_user\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 789\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 810h684v86h-684v-86zM682 554l-170 172-170-172h128v-426h84v426h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vertical_align_bottom\"\n        ],\n        \"defaultCode\": 57944,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"vertical_align_bottom\",\n        \"id\": 790,\n        \"order\": 801,\n        \"prevSize\": 24,\n        \"code\": 57944,\n        \"name\": \"vertical_align_bottom\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 790\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 470h684v84h-684v-84zM682 214l-170 170-170-170h128v-172h84v172h128zM342 810l170-170 170 170h-128v172h-84v-172h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vertical_align_center\"\n        ],\n        \"defaultCode\": 57945,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"vertical_align_center\",\n        \"id\": 791,\n        \"order\": 802,\n        \"prevSize\": 24,\n        \"code\": 57945,\n        \"name\": \"vertical_align_center\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 791\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 128h684v86h-684v-86zM342 470l170-172 170 172h-128v426h-84v-426h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vertical_align_top\"\n        ],\n        \"defaultCode\": 57946,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"vertical_align_top\",\n        \"id\": 792,\n        \"order\": 803,\n        \"prevSize\": 24,\n        \"code\": 57946,\n        \"name\": \"vertical_align_top\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 792\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 810v-596h-340v596h340zM704 128c36 0 64 28 64 64v640c0 36-28 64-64 64h-384c-36 0-64-28-64-64v-640c0-36 28-64 64-64h384zM810 726v-428h86v428h-86zM938 384h86v256h-86v-256zM128 726v-428h86v428h-86zM0 640v-256h86v256h-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vibration\"\n        ],\n        \"defaultCode\": 58925,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"vibration\",\n        \"id\": 793,\n        \"order\": 804,\n        \"prevSize\": 24,\n        \"code\": 58925,\n        \"name\": \"vibration\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 793\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM726 448l170-170v468l-170-170v150c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h512c24 0 44 18 44 42v150z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"video_call\"\n        ],\n        \"defaultCode\": 57456,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"video_call\",\n        \"id\": 794,\n        \"order\": 805,\n        \"prevSize\": 24,\n        \"code\": 57456,\n        \"name\": \"video_call\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 794\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 682v-468h-768v468h768zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"video_label\"\n        ],\n        \"defaultCode\": 57457,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"video_label\",\n        \"id\": 795,\n        \"order\": 806,\n        \"prevSize\": 24,\n        \"code\": 57457,\n        \"name\": \"video_label\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 795\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 618l256-192-256-192v384zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-512c-46 0-86-40-86-86v-512c0-46 40-84 86-84h512zM170 256v598h598v84h-598c-46 0-84-38-84-84v-598h84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"video_library\"\n        ],\n        \"defaultCode\": 57418,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"video_library\",\n        \"id\": 796,\n        \"order\": 807,\n        \"prevSize\": 24,\n        \"code\": 57418,\n        \"name\": \"video_library\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 796\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 448l170-170v468l-170-170v150c0 24-20 42-44 42h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h512c24 0 44 18 44 42v150z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"videocam\"\n        ],\n        \"defaultCode\": 57419,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"videocam\",\n        \"id\": 797,\n        \"order\": 808,\n        \"prevSize\": 24,\n        \"code\": 57419,\n        \"name\": \"videocam\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 797\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M140 86l756 756-54 54-136-136c-6 4-16 8-24 8h-512c-24 0-42-18-42-42v-428c0-24 18-42 42-42h32l-116-116zM896 278v456l-478-478h264c24 0 44 18 44 42v150z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"videocam_off\"\n        ],\n        \"defaultCode\": 57420,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"videocam_off\",\n        \"id\": 798,\n        \"order\": 809,\n        \"prevSize\": 24,\n        \"code\": 57420,\n        \"name\": \"videocam_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 798\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M832 512c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM662 640c36 0 64-28 64-64s-28-64-64-64-64 28-64 64 28 64 64 64zM470 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM896 256c46 0 86 40 86 86v340c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-340c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"videogame_asset\"\n        ],\n        \"defaultCode\": 58168,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"videogame_asset\",\n        \"id\": 799,\n        \"order\": 810,\n        \"prevSize\": 24,\n        \"code\": 58168,\n        \"name\": \"videogame_asset\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 799\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 128c24 0 42 18 42 42v256c0 24-18 44-42 44h-726c-24 0-42-20-42-44v-256c0-24 18-42 42-42h726zM854 554c24 0 42 20 42 44v256c0 24-18 42-42 42h-726c-24 0-42-18-42-42v-256c0-24 18-44 42-44h726z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_agenda\"\n        ],\n        \"defaultCode\": 59625,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_agenda\",\n        \"id\": 800,\n        \"order\": 811,\n        \"prevSize\": 24,\n        \"code\": 59625,\n        \"name\": \"view_agenda\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 800\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M342 768v-554h384v554h-384zM768 214h128v554h-128v-554zM170 768v-554h128v554h-128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_array\"\n        ],\n        \"defaultCode\": 59626,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_array\",\n        \"id\": 801,\n        \"order\": 812,\n        \"prevSize\": 24,\n        \"code\": 59626,\n        \"name\": \"view_array\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 801\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 256h170v470h-170v-470zM86 726v-470h170v470h-170zM298 810v-640h428v640h-428z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_carousel\"\n        ],\n        \"defaultCode\": 59627,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_carousel\",\n        \"id\": 802,\n        \"order\": 813,\n        \"prevSize\": 24,\n        \"code\": 59627,\n        \"name\": \"view_carousel\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 802\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 214h214v554h-214v-554zM170 768v-554h214v554h-214zM426 768v-554h214v554h-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_column\"\n        ],\n        \"defaultCode\": 59628,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_column\",\n        \"id\": 803,\n        \"order\": 814,\n        \"prevSize\": 24,\n        \"code\": 59628,\n        \"name\": \"view_column\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 803\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 214h170v170h-170v-170zM768 810v-170h170v170h-170zM554 810v-170h172v170h-172zM342 810v-170h170v170h-170zM128 810v-170h170v170h-170zM768 598v-172h170v172h-170zM554 214h172v170h-172v-170zM342 384v-170h170v170h-170zM554 598v-172h172v172h-172zM342 598v-172h170v172h-170zM128 598v-172h170v172h-170zM128 384v-170h170v170h-170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_comfy\"\n        ],\n        \"defaultCode\": 58410,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_comfy\",\n        \"id\": 804,\n        \"order\": 815,\n        \"prevSize\": 24,\n        \"code\": 58410,\n        \"name\": \"view_comfy\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 804\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M128 214h810v256h-810v-256zM426 810v-298h512v298h-512zM128 810v-298h256v298h-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_compact\"\n        ],\n        \"defaultCode\": 58411,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_compact\",\n        \"id\": 805,\n        \"order\": 816,\n        \"prevSize\": 24,\n        \"code\": 58411,\n        \"name\": \"view_compact\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 805\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M86 128h810v128h-810v-128zM854 342c24 0 42 18 42 42v256c0 24-18 42-42 42h-726c-24 0-42-18-42-42v-256c0-24 18-42 42-42h726zM86 896v-128h810v128h-810z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_day\"\n        ],\n        \"defaultCode\": 59629,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_day\",\n        \"id\": 806,\n        \"order\": 817,\n        \"prevSize\": 24,\n        \"code\": 59629,\n        \"name\": \"view_day\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 806\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 214h684v84h-684v-84zM170 470v-86h684v86h-684zM170 810v-84h684v84h-684zM170 640v-86h684v86h-684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_headline\"\n        ],\n        \"defaultCode\": 59630,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_headline\",\n        \"id\": 807,\n        \"order\": 818,\n        \"prevSize\": 24,\n        \"code\": 59630,\n        \"name\": \"view_headline\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 807\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M384 214h512v170h-512v-170zM384 810v-170h512v170h-512zM384 598v-172h512v172h-512zM170 384v-170h172v170h-172zM170 810v-170h172v170h-172zM170 598v-172h172v172h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_list\"\n        ],\n        \"defaultCode\": 59631,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_list\",\n        \"id\": 808,\n        \"order\": 819,\n        \"prevSize\": 24,\n        \"code\": 59631,\n        \"name\": \"view_list\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 808\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M682 214h214v256h-214v-256zM426 470v-256h214v256h-214zM682 768v-256h214v256h-214zM426 768v-256h214v256h-214zM170 768v-256h214v256h-214zM170 470v-256h214v256h-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_module\"\n        ],\n        \"defaultCode\": 59632,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_module\",\n        \"id\": 809,\n        \"order\": 820,\n        \"prevSize\": 24,\n        \"code\": 59632,\n        \"name\": \"view_module\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 809\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 214h470v256h-470v-256zM682 768v-256h214v256h-214zM170 768v-554h214v554h-214zM426 768v-256h214v256h-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_quilt\"\n        ],\n        \"defaultCode\": 59633,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_quilt\",\n        \"id\": 810,\n        \"order\": 821,\n        \"prevSize\": 24,\n        \"code\": 59633,\n        \"name\": \"view_quilt\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 810\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 214h726v256h-726v-256zM170 768v-256h726v256h-726z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_stream\"\n        ],\n        \"defaultCode\": 59634,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_stream\",\n        \"id\": 811,\n        \"order\": 822,\n        \"prevSize\": 24,\n        \"code\": 59634,\n        \"name\": \"view_stream\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 811\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M554 214c24 0 44 18 44 42v512c0 24-20 42-44 42h-128c-24 0-42-18-42-42v-512c0-24 18-42 42-42h128zM854 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-128c-24 0-44-18-44-42v-512c0-24 20-42 44-42h128zM256 214c24 0 42 18 42 42v512c0 24-18 42-42 42h-128c-24 0-42-18-42-42v-512c0-24 18-42 42-42h128z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"view_week\"\n        ],\n        \"defaultCode\": 59635,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"view_week\",\n        \"id\": 812,\n        \"order\": 823,\n        \"prevSize\": 24,\n        \"code\": 59635,\n        \"name\": \"view_week\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 812\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 768c188 0 342-114 342-256s-154-256-342-256-342 114-342 256 154 256 342 256zM896 128c46 0 86 40 86 86v596c0 46-40 86-86 86h-768c-46 0-86-40-86-86v-596c0-46 40-86 86-86h768z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vignette\"\n        ],\n        \"defaultCode\": 58421,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"vignette\",\n        \"id\": 813,\n        \"order\": 824,\n        \"prevSize\": 24,\n        \"code\": 58421,\n        \"name\": \"vignette\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 813\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M506 384h6c70 0 128 58 128 128v8zM322 418c-14 28-24 60-24 94 0 118 96 214 214 214 34 0 66-10 94-24l-66-66c-8 2-18 4-28 4-70 0-128-58-128-128 0-10 2-20 4-28zM86 182l54-54 756 756-54 54c-47.968-47.365-96.266-94.401-144-142-58 24-120 36-186 36-214 0-396-132-470-320 34-84 90-156 160-212-39.017-38.983-77.307-78.693-116-118zM512 298c-28 0-54 6-78 16l-92-92c52-20 110-30 170-30 214 0 394 132 468 320-32 80-82 148-146 202l-124-124c10-24 16-50 16-78 0-118-96-214-214-214z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"visibility_off\"\n        ],\n        \"defaultCode\": 59637,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"visibility_off\",\n        \"id\": 814,\n        \"order\": 825,\n        \"prevSize\": 24,\n        \"code\": 59637,\n        \"name\": \"visibility_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 814\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 598v-342l-170 136v-136h-342v342h342v-138zM854 86c46 0 84 38 84 84v512c0 46-38 86-84 86h-598l-170 170v-768c0-46 38-84 84-84h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"voice_chat\"\n        ],\n        \"defaultCode\": 58926,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"voice_chat\",\n        \"id\": 815,\n        \"order\": 826,\n        \"prevSize\": 24,\n        \"code\": 58926,\n        \"name\": \"voice_chat\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 815\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M790 640c82 0 148-68 148-150s-66-148-148-148-150 66-150 148 68 150 150 150zM234 640c82 0 150-68 150-150s-68-148-150-148-148 66-148 148 66 150 148 150zM790 256c130 0 234 104 234 234s-104 236-234 236h-556c-130 0-234-106-234-236s104-234 234-234 236 104 236 234c0 56-20 110-54 150h192c-34-40-54-94-54-150 0-130 106-234 236-234z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"voicemail\"\n        ],\n        \"defaultCode\": 57561,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"voicemail\",\n        \"id\": 816,\n        \"order\": 827,\n        \"prevSize\": 24,\n        \"code\": 57561,\n        \"name\": \"voicemail\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 816\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 384h170l214-214v684l-214-214h-170v-256zM790 512c0 76-44 140-108 172v-344c64 32 108 96 108 172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"volume_down\"\n        ],\n        \"defaultCode\": 57421,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"volume_down\",\n        \"id\": 817,\n        \"order\": 828,\n        \"prevSize\": 24,\n        \"code\": 57421,\n        \"name\": \"volume_down\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 817\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 384h172l212-214v684l-212-214h-172v-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"volume_mute\"\n        ],\n        \"defaultCode\": 57422,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"volume_mute\",\n        \"id\": 818,\n        \"order\": 829,\n        \"prevSize\": 24,\n        \"code\": 57422,\n        \"name\": \"volume_mute\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 818\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 170v180l-90-90zM182 128l714 714-54 54-88-88c-46 36-98 64-156 78v-88c36-10 68-28 96-50l-182-182v288l-214-214h-170v-256h202l-202-202zM810 512c0-136-88-250-212-286v-88c172 38 298 192 298 374 0 64-16 126-44 178l-64-66c14-34 22-72 22-112zM704 512c0 10 0 18-2 26l-104-104v-94c64 32 106 96 106 172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"volume_off\"\n        ],\n        \"defaultCode\": 57423,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"volume_off\",\n        \"id\": 819,\n        \"order\": 830,\n        \"prevSize\": 24,\n        \"code\": 57423,\n        \"name\": \"volume_off\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 819\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 138c172 38 298 192 298 374s-126 336-298 374v-88c124-36 212-150 212-286s-88-250-212-286v-88zM704 512c0 76-42 140-106 172v-344c64 32 106 96 106 172zM128 384h170l214-214v684l-214-214h-170v-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"volume_up\"\n        ],\n        \"defaultCode\": 57424,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"volume_up\",\n        \"id\": 820,\n        \"order\": 831,\n        \"prevSize\": 24,\n        \"code\": 57424,\n        \"name\": \"volume_up\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 820\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 598c46 0 86-40 86-86s-40-86-86-86-84 40-84 86 38 86 84 86zM540 426h442v172h-86v170h-170v-170h-186c-34 100-130 170-242 170-142 0-256-114-256-256s114-256 256-256c112 0 208 70 242 170z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vpn_key\"\n        ],\n        \"defaultCode\": 57562,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"vpn_key\",\n        \"id\": 821,\n        \"order\": 832,\n        \"prevSize\": 24,\n        \"code\": 57562,\n        \"name\": \"vpn_key\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 821\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M426 894v-84c-46 0-84-38-84-84v-44l-206-204c-6 24-8 50-8 76 0 174 130 320 298 340zM808 512h86c2 14 2 28 2 42 0 236-190 428-426 428s-428-192-428-428 192-426 428-426c44 0 88 8 128 20v108c0 46-40 86-86 86h-86v84c0 24-18 44-42 44h-86v84h256c24 0 44 20 44 44v128h42c38 0 70 24 82 58 56-60 88-142 88-230 0-14 0-28-2-42zM904 170v-20c0-40-32-74-72-74s-72 34-72 74v20h144zM938 170c24 0 44 20 44 44v170c0 24-20 42-44 42h-212c-24 0-44-18-44-42v-170c0-24 20-44 44-44v-20c0-58 48-108 106-108s106 50 106 108v20z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"vpn_lock\"\n        ],\n        \"defaultCode\": 58927,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"vpn_lock\",\n        \"id\": 822,\n        \"order\": 833,\n        \"prevSize\": 24,\n        \"code\": 58927,\n        \"name\": \"vpn_lock\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 822\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M170 554v300h300v84h-300c-46 0-84-38-84-84v-300h84zM854 854v-300h84v300c0 46-38 84-84 84h-300v-84h300zM854 86c46 0 84 38 84 84v300h-84v-300h-300v-84h300zM726 362c0 36-28 64-64 64s-64-28-64-64 28-64 64-64 64 28 64 64zM426 554l128 158 86-114 128 170h-512zM170 170v300h-84v-300c0-46 38-84 84-84h300v84h-300z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wallpaper\"\n        ],\n        \"defaultCode\": 57788,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wallpaper\",\n        \"id\": 823,\n        \"order\": 834,\n        \"prevSize\": 24,\n        \"code\": 57788,\n        \"name\": \"wallpaper\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 823\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M256 512c0 142 114 256 256 256s256-114 256-256-114-256-256-256-256 114-256 256zM854 512c0 108-52 206-130 268l-42 244h-340l-42-244c-80-62-130-160-130-268s50-206 130-268l42-244h340l42 244c78 62 130 160 130 268z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"watch\"\n        ],\n        \"defaultCode\": 58164,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"watch\",\n        \"id\": 824,\n        \"order\": 835,\n        \"prevSize\": 24,\n        \"code\": 58164,\n        \"name\": \"watch\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 824\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M692 692l34-56-192-116v-222h-64v256zM512 86c234 0 426 192 426 426s-192 426-426 426-426-192-426-426 192-426 426-426z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"watch_later\"\n        ],\n        \"defaultCode\": 59684,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"watch_later\",\n        \"id\": 825,\n        \"order\": 836,\n        \"prevSize\": 24,\n        \"code\": 59684,\n        \"name\": \"watch_later\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 825\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M440 682h80l-136-384h-86l-136 384h82l30-84h136zM938 298h78l-88 384h-74l-64-260-64 260h-76l-4-18c-56 112-170 190-304 190-188 0-342-154-342-342s154-342 342-342c108 0 204 50 266 128h32l52 270 64-270h68l64 270zM292 540l50-156 48 156h-98z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wb_auto\"\n        ],\n        \"defaultCode\": 58412,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wb_auto\",\n        \"id\": 826,\n        \"order\": 837,\n        \"prevSize\": 24,\n        \"code\": 58412,\n        \"name\": \"wb_auto\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 826\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M736 774l60-58 76 76-60 60zM854 448h128v86h-128v-86zM640 270c76 44 128 126 128 220 0 142-114 256-256 256s-256-114-256-256c0-94 52-176 128-220v-206h256v206zM170 448v86h-128v-86h128zM470 958v-126h84v126h-84zM152 792l76-78 60 60-76 78z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wb_incandescent\"\n        ],\n        \"defaultCode\": 58414,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wb_incandescent\",\n        \"id\": 827,\n        \"order\": 838,\n        \"prevSize\": 24,\n        \"code\": 58414,\n        \"name\": \"wb_incandescent\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 827\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M212 852l-60-62 76-76 60 60zM152 190l60-60 76 76-60 60zM872 792l-60 60-76-78 60-60zM554 958h-84v-126h84v126zM812 130l60 60-76 76-60-60zM470 24h84v126h-84v-126zM214 618v-256h596v256h-596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wb_iridescent\"\n        ],\n        \"defaultCode\": 58422,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wb_iridescent\",\n        \"id\": 828,\n        \"order\": 839,\n        \"prevSize\": 24,\n        \"code\": 58422,\n        \"name\": \"wb_iridescent\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 828\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M152 792l76-78 60 60-76 78zM470 958v-126h84v126h-84zM512 234c142 0 256 114 256 256s-114 256-256 256-256-114-256-256 114-256 256-256zM854 448h128v86h-128v-86zM736 774l60-58 76 76-60 60zM872 190l-76 76-60-60 76-76zM554 24v126h-84v-126h84zM170 448v86h-128v-86h128zM288 206l-60 60-76-76 60-60z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wb_sunny\"\n        ],\n        \"defaultCode\": 58416,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wb_sunny\",\n        \"id\": 829,\n        \"order\": 840,\n        \"prevSize\": 24,\n        \"code\": 58416,\n        \"name\": \"wb_sunny\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 829\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M704 256c-48 0-86-38-86-86s38-84 86-84 86 36 86 84-38 86-86 86zM320 256c-48 0-86-38-86-86s38-84 86-84 86 36 86 84-38 86-86 86zM768 938h-128v-256h-128l108-324c12-34 46-60 82-60h4c36 0 70 26 82 60l108 324h-128v256zM234 938v-320h-64v-234c0-46 40-86 86-86h128c46 0 86 40 86 86v234h-64v320h-172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wc\"\n        ],\n        \"defaultCode\": 58941,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wc\",\n        \"id\": 830,\n        \"order\": 841,\n        \"prevSize\": 24,\n        \"code\": 58941,\n        \"name\": \"wc\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 830\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M854 768v-384h-172v384h172zM640 554v-170h-470v170h470zM640 768v-170h-470v170h470zM854 170c46 0 84 40 84 86v512c0 46-38 86-84 86h-684c-46 0-84-40-84-86v-512c0-46 38-86 84-86h684z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"web\"\n        ],\n        \"defaultCode\": 57425,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"web\",\n        \"id\": 831,\n        \"order\": 842,\n        \"prevSize\": 24,\n        \"code\": 57425,\n        \"name\": \"web\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 831\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M810 768v-426h-596v426h596zM810 170c48 0 86 40 86 86v512c0 46-40 86-86 86h-596c-48 0-86-40-86-86v-512c0-46 38-86 86-86h596z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"web_asset\"\n        ],\n        \"defaultCode\": 57449,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"web_asset\",\n        \"id\": 832,\n        \"order\": 843,\n        \"prevSize\": 24,\n        \"code\": 57449,\n        \"name\": \"web_asset\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 832\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M768 214c46 0 86 38 86 84v92c-50 18-86 64-86 120v88h-512v-88c0-56-36-102-86-120v-92c0-46 40-84 86-84h512zM896 426c46 0 86 40 86 86v214c0 46-40 84-86 84h-768c-46 0-86-38-86-84v-214c0-46 40-86 86-86s86 40 86 86v128h596v-128c0-46 40-86 86-86z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"weekend\"\n        ],\n        \"defaultCode\": 57707,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"weekend\",\n        \"id\": 833,\n        \"order\": 844,\n        \"prevSize\": 24,\n        \"code\": 57707,\n        \"name\": \"weekend\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 833\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M500 810c114 0 204-90 204-204 0-60-8-116-24-172-44 58-122 94-198 110s-120 62-120 132c0 74 62 134 138 134zM576 28c166 134 278 340 278 570 0 188-154 340-342 340s-342-152-342-340c0-144 52-278 138-380v16c0 88 66 158 154 158s146-70 146-158c0-92-32-206-32-206z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"whatshot\"\n        ],\n        \"defaultCode\": 59406,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"whatshot\",\n        \"id\": 834,\n        \"order\": 845,\n        \"prevSize\": 24,\n        \"code\": 59406,\n        \"name\": \"whatshot\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 834\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M710 72l242 242-242 240h186v342h-342v-342h156l-240-240v156h-342v-342h342v186zM128 896v-342h342v342h-342z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"widgets\"\n        ],\n        \"defaultCode\": 57789,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"widgets\",\n        \"id\": 835,\n        \"order\": 846,\n        \"prevSize\": 24,\n        \"code\": 57789,\n        \"name\": \"widgets\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 835\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M214 554c166-164 432-164 596 0l-84 86c-118-118-310-118-428 0zM384 726c70-70 186-70 256 0l-128 128zM42 384c260-258 682-258 940 0l-86 86c-212-212-556-212-768 0z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wifi\"\n        ],\n        \"defaultCode\": 58942,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wifi\",\n        \"id\": 836,\n        \"order\": 847,\n        \"prevSize\": 24,\n        \"code\": 58942,\n        \"name\": \"wifi2\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 836\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M938 682v-64c0-36-28-64-64-64s-64 28-64 64v64h128zM982 682c24 0 42 20 42 44v170c0 24-18 42-42 42h-214c-24 0-42-18-42-42v-170c0-24 18-44 42-44v-64c0-58 48-106 106-106s108 48 108 106v64zM874 406c-118 0-212 94-212 212v122l-150 198-512-682c142-108 320-170 512-170s370 62 512 170l-114 152c-12-2-24-2-36-2z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wifi_lock\"\n        ],\n        \"defaultCode\": 57825,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wifi_lock\",\n        \"id\": 837,\n        \"order\": 848,\n        \"prevSize\": 24,\n        \"code\": 57825,\n        \"name\": \"wifi_lock\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 837\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 128c236 0 426 190 426 426 0 158-84 296-212 370l-44-74c102-60 172-170 172-296 0-188-154-340-342-340s-342 152-342 340c0 126 68 236 170 296l-42 74c-128-74-212-212-212-370 0-236 190-426 426-426zM768 554c0 94-52 178-128 222l-42-74c50-30 84-84 84-148 0-94-76-170-170-170s-170 76-170 170c0 64 34 118 84 148l-42 74c-76-44-128-128-128-222 0-142 114-256 256-256s256 114 256 256zM512 470c46 0 86 38 86 84s-40 86-86 86-86-40-86-86 40-84 86-84z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wifi_tethering\"\n        ],\n        \"defaultCode\": 57826,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wifi_tethering\",\n        \"id\": 838,\n        \"order\": 849,\n        \"prevSize\": 24,\n        \"code\": 57826,\n        \"name\": \"wifi_tethering\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 838\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M598 256v-86h-172v86h172zM854 256c48 0 84 38 84 86v468c0 48-36 86-84 86h-684c-48 0-84-38-84-86v-468c0-48 36-86 84-86h172v-86c0-48 36-84 84-84h172c48 0 84 36 84 84v86h172z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"work\"\n        ],\n        \"defaultCode\": 59641,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"work\",\n        \"id\": 839,\n        \"order\": 850,\n        \"prevSize\": 24,\n        \"code\": 59641,\n        \"name\": \"work\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 839\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 470c94 0 170 76 170 170s-76 170-170 170h-86v86l-128-128 128-128v86h96c46 0 86-40 86-86s-40-86-86-86h-566v-84h556zM854 214v84h-684v-84h684zM170 810v-84h256v84h-256z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"wrap_text\"\n        ],\n        \"defaultCode\": 57947,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"wrap_text\",\n        \"id\": 840,\n        \"order\": 851,\n        \"prevSize\": 24,\n        \"code\": 57947,\n        \"name\": \"wrap_text\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 840\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M726 598l212 212-62 64-214-214v-32l-12-12c-48 42-112 66-180 66-52 0-100-14-142-38l64-62c24 10 50 16 78 16 106 0 192-86 192-192s-86-192-192-192-192 86-192 192h148l-176 170-164-170h106c0-150 124-278 278-278s278 124 278 278c0 70-26 132-68 180l12 12h34z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"youtube_searched_for\"\n        ],\n        \"defaultCode\": 59642,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"youtube_searched_for\",\n        \"id\": 841,\n        \"order\": 852,\n        \"prevSize\": 24,\n        \"code\": 59642,\n        \"name\": \"youtube_searched_for\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 841\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M512 426h-86v86h-42v-86h-86v-42h86v-86h42v86h86v42zM406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"zoom_in\"\n        ],\n        \"defaultCode\": 59647,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"zoom_in\",\n        \"id\": 842,\n        \"order\": 853,\n        \"prevSize\": 24,\n        \"code\": 59647,\n        \"name\": \"zoom_in\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 842\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M298 384h214v42h-214v-42zM406 598c106 0 192-86 192-192s-86-192-192-192-192 86-192 192 86 192 192 192zM662 598l212 212-64 64-212-212v-34l-12-12c-48 42-112 66-180 66-154 0-278-122-278-276s124-278 278-278 276 124 276 278c0 68-24 132-66 180l12 12h34z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"zoom_out\"\n        ],\n        \"defaultCode\": 59648,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"zoom_out\",\n        \"id\": 843,\n        \"order\": 854,\n        \"prevSize\": 24,\n        \"code\": 59649,\n        \"name\": \"zoom_out\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 843\n    },\n    {\n      \"icon\": {\n        \"paths\": [\n          \"M896 640v256h-256l98-98-124-122 62-62 122 124zM384 896h-256v-256l98 98 122-124 62 62-124 122zM128 384v-256h256l-98 98 124 122-62 62-122-124zM640 128h256v256l-98-98-122 124-62-62 124-122z\"\n        ],\n        \"attrs\": [],\n        \"isMulticolor\": false,\n        \"isMulticolor2\": false,\n        \"tags\": [\n          \"zoom_out_map\"\n        ],\n        \"defaultCode\": 58731,\n        \"grid\": 24\n      },\n      \"attrs\": [],\n      \"properties\": {\n        \"ligatures\": \"zoom_out_map\",\n        \"id\": 844,\n        \"order\": 855,\n        \"prevSize\": 24,\n        \"code\": 58731,\n        \"name\": \"zoom_out_map\"\n      },\n      \"setIdx\": 2,\n      \"setId\": 2,\n      \"iconIdx\": 844\n    }\n  ],\n  \"height\": 1024,\n  \"metadata\": {\n    \"name\": \"icomoon\"\n  },\n  \"preferences\": {\n    \"showGlyphs\": true,\n    \"showCodes\": false,\n    \"showQuickUse\": true,\n    \"showQuickUse2\": true,\n    \"showSVGs\": true,\n    \"fontPref\": {\n      \"prefix\": \"icon-\",\n      \"metadata\": {\n        \"fontFamily\": \"icomoon\"\n      },\n      \"metrics\": {\n        \"emSize\": 1024,\n        \"baseline\": 6.25,\n        \"whitespace\": 50\n      },\n      \"embed\": false\n    },\n    \"imagePref\": {\n      \"prefix\": \"icon-\",\n      \"png\": true,\n      \"useClassSelector\": true,\n      \"color\": 0,\n      \"bgColor\": 16777215,\n      \"classSelector\": \".icon\"\n    },\n    \"historySize\": 50,\n    \"showLiga\": false,\n    \"gridSize\": 16\n  }\n}"
  },
  {
    "path": "public/landing/fonts/icomoon/style.css",
    "content": "@font-face {\n  font-family: 'icomoon';\n  src:  url('fonts/icomoon.eot?10si43');\n  src:  url('fonts/icomoon.eot?10si43#iefix') format('embedded-opentype'),\n    url('fonts/icomoon.ttf?10si43') format('truetype'),\n    url('fonts/icomoon.woff?10si43') format('woff'),\n    url('fonts/icomoon.svg?10si43#icomoon') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"icon-\"], [class*=\" icon-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'icomoon' !important;\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.icon-asterisk:before {\n  content: \"\\f069\";\n}\n.icon-plus:before {\n  content: \"\\f067\";\n}\n.icon-question:before {\n  content: \"\\f128\";\n}\n.icon-minus:before {\n  content: \"\\f068\";\n}\n.icon-glass:before {\n  content: \"\\f000\";\n}\n.icon-music:before {\n  content: \"\\f001\";\n}\n.icon-search:before {\n  content: \"\\f002\";\n}\n.icon-envelope-o:before {\n  content: \"\\f003\";\n}\n.icon-heart:before {\n  content: \"\\f004\";\n}\n.icon-star:before {\n  content: \"\\f005\";\n}\n.icon-star-o:before {\n  content: \"\\f006\";\n}\n.icon-user:before {\n  content: \"\\f007\";\n}\n.icon-film:before {\n  content: \"\\f008\";\n}\n.icon-th-large:before {\n  content: \"\\f009\";\n}\n.icon-th:before {\n  content: \"\\f00a\";\n}\n.icon-th-list:before {\n  content: \"\\f00b\";\n}\n.icon-check:before {\n  content: \"\\f00c\";\n}\n.icon-close:before {\n  content: \"\\f00d\";\n}\n.icon-remove:before {\n  content: \"\\f00d\";\n}\n.icon-times:before {\n  content: \"\\f00d\";\n}\n.icon-search-plus:before {\n  content: \"\\f00e\";\n}\n.icon-search-minus:before {\n  content: \"\\f010\";\n}\n.icon-power-off:before {\n  content: \"\\f011\";\n}\n.icon-signal:before {\n  content: \"\\f012\";\n}\n.icon-cog:before {\n  content: \"\\f013\";\n}\n.icon-gear:before {\n  content: \"\\f013\";\n}\n.icon-trash-o:before {\n  content: \"\\f014\";\n}\n.icon-home:before {\n  content: \"\\f015\";\n}\n.icon-file-o:before {\n  content: \"\\f016\";\n}\n.icon-clock-o:before {\n  content: \"\\f017\";\n}\n.icon-road:before {\n  content: \"\\f018\";\n}\n.icon-download:before {\n  content: \"\\f019\";\n}\n.icon-arrow-circle-o-down:before {\n  content: \"\\f01a\";\n}\n.icon-arrow-circle-o-up:before {\n  content: \"\\f01b\";\n}\n.icon-inbox:before {\n  content: \"\\f01c\";\n}\n.icon-play-circle-o:before {\n  content: \"\\f01d\";\n}\n.icon-repeat:before {\n  content: \"\\f01e\";\n}\n.icon-rotate-right:before {\n  content: \"\\f01e\";\n}\n.icon-refresh:before {\n  content: \"\\f021\";\n}\n.icon-list-alt:before {\n  content: \"\\f022\";\n}\n.icon-lock:before {\n  content: \"\\f023\";\n}\n.icon-flag:before {\n  content: \"\\f024\";\n}\n.icon-headphones:before {\n  content: \"\\f025\";\n}\n.icon-volume-off:before {\n  content: \"\\f026\";\n}\n.icon-volume-down:before {\n  content: \"\\f027\";\n}\n.icon-volume-up:before {\n  content: \"\\f028\";\n}\n.icon-qrcode:before {\n  content: \"\\f029\";\n}\n.icon-barcode:before {\n  content: \"\\f02a\";\n}\n.icon-tag:before {\n  content: \"\\f02b\";\n}\n.icon-tags:before {\n  content: \"\\f02c\";\n}\n.icon-book:before {\n  content: \"\\f02d\";\n}\n.icon-bookmark:before {\n  content: \"\\f02e\";\n}\n.icon-print:before {\n  content: \"\\f02f\";\n}\n.icon-camera:before {\n  content: \"\\f030\";\n}\n.icon-font:before {\n  content: \"\\f031\";\n}\n.icon-bold:before {\n  content: \"\\f032\";\n}\n.icon-italic:before {\n  content: \"\\f033\";\n}\n.icon-text-height:before {\n  content: \"\\f034\";\n}\n.icon-text-width:before {\n  content: \"\\f035\";\n}\n.icon-align-left:before {\n  content: \"\\f036\";\n}\n.icon-align-center:before {\n  content: \"\\f037\";\n}\n.icon-align-right:before {\n  content: \"\\f038\";\n}\n.icon-align-justify:before {\n  content: \"\\f039\";\n}\n.icon-list:before {\n  content: \"\\f03a\";\n}\n.icon-dedent:before {\n  content: \"\\f03b\";\n}\n.icon-outdent:before {\n  content: \"\\f03b\";\n}\n.icon-indent:before {\n  content: \"\\f03c\";\n}\n.icon-video-camera:before {\n  content: \"\\f03d\";\n}\n.icon-image:before {\n  content: \"\\f03e\";\n}\n.icon-photo:before {\n  content: \"\\f03e\";\n}\n.icon-picture-o:before {\n  content: \"\\f03e\";\n}\n.icon-pencil:before {\n  content: \"\\f040\";\n}\n.icon-map-marker:before {\n  content: \"\\f041\";\n}\n.icon-adjust:before {\n  content: \"\\f042\";\n}\n.icon-tint:before {\n  content: \"\\f043\";\n}\n.icon-edit:before {\n  content: \"\\f044\";\n}\n.icon-pencil-square-o:before {\n  content: \"\\f044\";\n}\n.icon-share-square-o:before {\n  content: \"\\f045\";\n}\n.icon-check-square-o:before {\n  content: \"\\f046\";\n}\n.icon-arrows:before {\n  content: \"\\f047\";\n}\n.icon-step-backward:before {\n  content: \"\\f048\";\n}\n.icon-fast-backward:before {\n  content: \"\\f049\";\n}\n.icon-backward:before {\n  content: \"\\f04a\";\n}\n.icon-play:before {\n  content: \"\\f04b\";\n}\n.icon-pause:before {\n  content: \"\\f04c\";\n}\n.icon-stop:before {\n  content: \"\\f04d\";\n}\n.icon-forward:before {\n  content: \"\\f04e\";\n}\n.icon-fast-forward:before {\n  content: \"\\f050\";\n}\n.icon-step-forward:before {\n  content: \"\\f051\";\n}\n.icon-eject:before {\n  content: \"\\f052\";\n}\n.icon-chevron-left:before {\n  content: \"\\f053\";\n}\n.icon-chevron-right:before {\n  content: \"\\f054\";\n}\n.icon-plus-circle:before {\n  content: \"\\f055\";\n}\n.icon-minus-circle:before {\n  content: \"\\f056\";\n}\n.icon-times-circle:before {\n  content: \"\\f057\";\n}\n.icon-check-circle:before {\n  content: \"\\f058\";\n}\n.icon-question-circle:before {\n  content: \"\\f059\";\n}\n.icon-info-circle:before {\n  content: \"\\f05a\";\n}\n.icon-crosshairs:before {\n  content: \"\\f05b\";\n}\n.icon-times-circle-o:before {\n  content: \"\\f05c\";\n}\n.icon-check-circle-o:before {\n  content: \"\\f05d\";\n}\n.icon-ban:before {\n  content: \"\\f05e\";\n}\n.icon-arrow-left:before {\n  content: \"\\f060\";\n}\n.icon-arrow-right:before {\n  content: \"\\f061\";\n}\n.icon-arrow-up:before {\n  content: \"\\f062\";\n}\n.icon-arrow-down:before {\n  content: \"\\f063\";\n}\n.icon-mail-forward:before {\n  content: \"\\f064\";\n}\n.icon-share:before {\n  content: \"\\f064\";\n}\n.icon-expand:before {\n  content: \"\\f065\";\n}\n.icon-compress:before {\n  content: \"\\f066\";\n}\n.icon-exclamation-circle:before {\n  content: \"\\f06a\";\n}\n.icon-gift:before {\n  content: \"\\f06b\";\n}\n.icon-leaf:before {\n  content: \"\\f06c\";\n}\n.icon-fire:before {\n  content: \"\\f06d\";\n}\n.icon-eye:before {\n  content: \"\\f06e\";\n}\n.icon-eye-slash:before {\n  content: \"\\f070\";\n}\n.icon-exclamation-triangle:before {\n  content: \"\\f071\";\n}\n.icon-warning:before {\n  content: \"\\f071\";\n}\n.icon-plane:before {\n  content: \"\\f072\";\n}\n.icon-calendar:before {\n  content: \"\\f073\";\n}\n.icon-random:before {\n  content: \"\\f074\";\n}\n.icon-comment:before {\n  content: \"\\f075\";\n}\n.icon-magnet:before {\n  content: \"\\f076\";\n}\n.icon-chevron-up:before {\n  content: \"\\f077\";\n}\n.icon-chevron-down:before {\n  content: \"\\f078\";\n}\n.icon-retweet:before {\n  content: \"\\f079\";\n}\n.icon-shopping-cart:before {\n  content: \"\\f07a\";\n}\n.icon-folder:before {\n  content: \"\\f07b\";\n}\n.icon-folder-open:before {\n  content: \"\\f07c\";\n}\n.icon-arrows-v:before {\n  content: \"\\f07d\";\n}\n.icon-arrows-h:before {\n  content: \"\\f07e\";\n}\n.icon-bar-chart:before {\n  content: \"\\f080\";\n}\n.icon-bar-chart-o:before {\n  content: \"\\f080\";\n}\n.icon-twitter-square:before {\n  content: \"\\f081\";\n}\n.icon-facebook-square:before {\n  content: \"\\f082\";\n}\n.icon-camera-retro:before {\n  content: \"\\f083\";\n}\n.icon-key:before {\n  content: \"\\f084\";\n}\n.icon-cogs:before {\n  content: \"\\f085\";\n}\n.icon-gears:before {\n  content: \"\\f085\";\n}\n.icon-comments:before {\n  content: \"\\f086\";\n}\n.icon-thumbs-o-up:before {\n  content: \"\\f087\";\n}\n.icon-thumbs-o-down:before {\n  content: \"\\f088\";\n}\n.icon-star-half:before {\n  content: \"\\f089\";\n}\n.icon-heart-o:before {\n  content: \"\\f08a\";\n}\n.icon-sign-out:before {\n  content: \"\\f08b\";\n}\n.icon-linkedin-square:before {\n  content: \"\\f08c\";\n}\n.icon-thumb-tack:before {\n  content: \"\\f08d\";\n}\n.icon-external-link:before {\n  content: \"\\f08e\";\n}\n.icon-sign-in:before {\n  content: \"\\f090\";\n}\n.icon-trophy:before {\n  content: \"\\f091\";\n}\n.icon-github-square:before {\n  content: \"\\f092\";\n}\n.icon-upload:before {\n  content: \"\\f093\";\n}\n.icon-lemon-o:before {\n  content: \"\\f094\";\n}\n.icon-phone:before {\n  content: \"\\f095\";\n}\n.icon-square-o:before {\n  content: \"\\f096\";\n}\n.icon-bookmark-o:before {\n  content: \"\\f097\";\n}\n.icon-phone-square:before {\n  content: \"\\f098\";\n}\n.icon-twitter:before {\n  content: \"\\f099\";\n}\n.icon-facebook:before {\n  content: \"\\f09a\";\n}\n.icon-facebook-f:before {\n  content: \"\\f09a\";\n}\n.icon-github:before {\n  content: \"\\f09b\";\n}\n.icon-unlock:before {\n  content: \"\\f09c\";\n}\n.icon-credit-card:before {\n  content: \"\\f09d\";\n}\n.icon-feed:before {\n  content: \"\\f09e\";\n}\n.icon-rss:before {\n  content: \"\\f09e\";\n}\n.icon-hdd-o:before {\n  content: \"\\f0a0\";\n}\n.icon-bullhorn:before {\n  content: \"\\f0a1\";\n}\n.icon-bell-o:before {\n  content: \"\\f0a2\";\n}\n.icon-certificate:before {\n  content: \"\\f0a3\";\n}\n.icon-hand-o-right:before {\n  content: \"\\f0a4\";\n}\n.icon-hand-o-left:before {\n  content: \"\\f0a5\";\n}\n.icon-hand-o-up:before {\n  content: \"\\f0a6\";\n}\n.icon-hand-o-down:before {\n  content: \"\\f0a7\";\n}\n.icon-arrow-circle-left:before {\n  content: \"\\f0a8\";\n}\n.icon-arrow-circle-right:before {\n  content: \"\\f0a9\";\n}\n.icon-arrow-circle-up:before {\n  content: \"\\f0aa\";\n}\n.icon-arrow-circle-down:before {\n  content: \"\\f0ab\";\n}\n.icon-globe:before {\n  content: \"\\f0ac\";\n}\n.icon-wrench:before {\n  content: \"\\f0ad\";\n}\n.icon-tasks:before {\n  content: \"\\f0ae\";\n}\n.icon-filter:before {\n  content: \"\\f0b0\";\n}\n.icon-briefcase:before {\n  content: \"\\f0b1\";\n}\n.icon-arrows-alt:before {\n  content: \"\\f0b2\";\n}\n.icon-group:before {\n  content: \"\\f0c0\";\n}\n.icon-users:before {\n  content: \"\\f0c0\";\n}\n.icon-chain:before {\n  content: \"\\f0c1\";\n}\n.icon-link:before {\n  content: \"\\f0c1\";\n}\n.icon-cloud:before {\n  content: \"\\f0c2\";\n}\n.icon-flask:before {\n  content: \"\\f0c3\";\n}\n.icon-cut:before {\n  content: \"\\f0c4\";\n}\n.icon-scissors:before {\n  content: \"\\f0c4\";\n}\n.icon-copy:before {\n  content: \"\\f0c5\";\n}\n.icon-files-o:before {\n  content: \"\\f0c5\";\n}\n.icon-paperclip:before {\n  content: \"\\f0c6\";\n}\n.icon-floppy-o:before {\n  content: \"\\f0c7\";\n}\n.icon-save:before {\n  content: \"\\f0c7\";\n}\n.icon-square:before {\n  content: \"\\f0c8\";\n}\n.icon-bars:before {\n  content: \"\\f0c9\";\n}\n.icon-navicon:before {\n  content: \"\\f0c9\";\n}\n.icon-reorder:before {\n  content: \"\\f0c9\";\n}\n.icon-list-ul:before {\n  content: \"\\f0ca\";\n}\n.icon-list-ol:before {\n  content: \"\\f0cb\";\n}\n.icon-strikethrough:before {\n  content: \"\\f0cc\";\n}\n.icon-underline:before {\n  content: \"\\f0cd\";\n}\n.icon-table:before {\n  content: \"\\f0ce\";\n}\n.icon-magic:before {\n  content: \"\\f0d0\";\n}\n.icon-truck:before {\n  content: \"\\f0d1\";\n}\n.icon-pinterest:before {\n  content: \"\\f0d2\";\n}\n.icon-pinterest-square:before {\n  content: \"\\f0d3\";\n}\n.icon-google-plus-square:before {\n  content: \"\\f0d4\";\n}\n.icon-google-plus:before {\n  content: \"\\f0d5\";\n}\n.icon-money:before {\n  content: \"\\f0d6\";\n}\n.icon-caret-down:before {\n  content: \"\\f0d7\";\n}\n.icon-caret-up:before {\n  content: \"\\f0d8\";\n}\n.icon-caret-left:before {\n  content: \"\\f0d9\";\n}\n.icon-caret-right:before {\n  content: \"\\f0da\";\n}\n.icon-columns:before {\n  content: \"\\f0db\";\n}\n.icon-sort:before {\n  content: \"\\f0dc\";\n}\n.icon-unsorted:before {\n  content: \"\\f0dc\";\n}\n.icon-sort-desc:before {\n  content: \"\\f0dd\";\n}\n.icon-sort-down:before {\n  content: \"\\f0dd\";\n}\n.icon-sort-asc:before {\n  content: \"\\f0de\";\n}\n.icon-sort-up:before {\n  content: \"\\f0de\";\n}\n.icon-envelope:before {\n  content: \"\\f0e0\";\n}\n.icon-linkedin:before {\n  content: \"\\f0e1\";\n}\n.icon-rotate-left:before {\n  content: \"\\f0e2\";\n}\n.icon-undo:before {\n  content: \"\\f0e2\";\n}\n.icon-gavel:before {\n  content: \"\\f0e3\";\n}\n.icon-legal:before {\n  content: \"\\f0e3\";\n}\n.icon-dashboard:before {\n  content: \"\\f0e4\";\n}\n.icon-tachometer:before {\n  content: \"\\f0e4\";\n}\n.icon-comment-o:before {\n  content: \"\\f0e5\";\n}\n.icon-comments-o:before {\n  content: \"\\f0e6\";\n}\n.icon-bolt:before {\n  content: \"\\f0e7\";\n}\n.icon-flash:before {\n  content: \"\\f0e7\";\n}\n.icon-sitemap:before {\n  content: \"\\f0e8\";\n}\n.icon-umbrella:before {\n  content: \"\\f0e9\";\n}\n.icon-clipboard:before {\n  content: \"\\f0ea\";\n}\n.icon-paste:before {\n  content: \"\\f0ea\";\n}\n.icon-lightbulb-o:before {\n  content: \"\\f0eb\";\n}\n.icon-exchange:before {\n  content: \"\\f0ec\";\n}\n.icon-cloud-download:before {\n  content: \"\\f0ed\";\n}\n.icon-cloud-upload:before {\n  content: \"\\f0ee\";\n}\n.icon-user-md:before {\n  content: \"\\f0f0\";\n}\n.icon-stethoscope:before {\n  content: \"\\f0f1\";\n}\n.icon-suitcase:before {\n  content: \"\\f0f2\";\n}\n.icon-bell:before {\n  content: \"\\f0f3\";\n}\n.icon-coffee:before {\n  content: \"\\f0f4\";\n}\n.icon-cutlery:before {\n  content: \"\\f0f5\";\n}\n.icon-file-text-o:before {\n  content: \"\\f0f6\";\n}\n.icon-building-o:before {\n  content: \"\\f0f7\";\n}\n.icon-hospital-o:before {\n  content: \"\\f0f8\";\n}\n.icon-ambulance:before {\n  content: \"\\f0f9\";\n}\n.icon-medkit:before {\n  content: \"\\f0fa\";\n}\n.icon-fighter-jet:before {\n  content: \"\\f0fb\";\n}\n.icon-beer:before {\n  content: \"\\f0fc\";\n}\n.icon-h-square:before {\n  content: \"\\f0fd\";\n}\n.icon-plus-square:before {\n  content: \"\\f0fe\";\n}\n.icon-angle-double-left:before {\n  content: \"\\f100\";\n}\n.icon-angle-double-right:before {\n  content: \"\\f101\";\n}\n.icon-angle-double-up:before {\n  content: \"\\f102\";\n}\n.icon-angle-double-down:before {\n  content: \"\\f103\";\n}\n.icon-angle-left:before {\n  content: \"\\f104\";\n}\n.icon-angle-right:before {\n  content: \"\\f105\";\n}\n.icon-angle-up:before {\n  content: \"\\f106\";\n}\n.icon-angle-down:before {\n  content: \"\\f107\";\n}\n.icon-desktop:before {\n  content: \"\\f108\";\n}\n.icon-laptop:before {\n  content: \"\\f109\";\n}\n.icon-tablet:before {\n  content: \"\\f10a\";\n}\n.icon-mobile:before {\n  content: \"\\f10b\";\n}\n.icon-mobile-phone:before {\n  content: \"\\f10b\";\n}\n.icon-circle-o:before {\n  content: \"\\f10c\";\n}\n.icon-quote-left:before {\n  content: \"\\f10d\";\n}\n.icon-quote-right:before {\n  content: \"\\f10e\";\n}\n.icon-spinner:before {\n  content: \"\\f110\";\n}\n.icon-circle:before {\n  content: \"\\f111\";\n}\n.icon-mail-reply:before {\n  content: \"\\f112\";\n}\n.icon-reply:before {\n  content: \"\\f112\";\n}\n.icon-github-alt:before {\n  content: \"\\f113\";\n}\n.icon-folder-o:before {\n  content: \"\\f114\";\n}\n.icon-folder-open-o:before {\n  content: \"\\f115\";\n}\n.icon-smile-o:before {\n  content: \"\\f118\";\n}\n.icon-frown-o:before {\n  content: \"\\f119\";\n}\n.icon-meh-o:before {\n  content: \"\\f11a\";\n}\n.icon-gamepad:before {\n  content: \"\\f11b\";\n}\n.icon-keyboard-o:before {\n  content: \"\\f11c\";\n}\n.icon-flag-o:before {\n  content: \"\\f11d\";\n}\n.icon-flag-checkered:before {\n  content: \"\\f11e\";\n}\n.icon-terminal:before {\n  content: \"\\f120\";\n}\n.icon-code:before {\n  content: \"\\f121\";\n}\n.icon-mail-reply-all:before {\n  content: \"\\f122\";\n}\n.icon-reply-all:before {\n  content: \"\\f122\";\n}\n.icon-star-half-empty:before {\n  content: \"\\f123\";\n}\n.icon-star-half-full:before {\n  content: \"\\f123\";\n}\n.icon-star-half-o:before {\n  content: \"\\f123\";\n}\n.icon-location-arrow:before {\n  content: \"\\f124\";\n}\n.icon-crop:before {\n  content: \"\\f125\";\n}\n.icon-code-fork:before {\n  content: \"\\f126\";\n}\n.icon-chain-broken:before {\n  content: \"\\f127\";\n}\n.icon-unlink:before {\n  content: \"\\f127\";\n}\n.icon-info:before {\n  content: \"\\f129\";\n}\n.icon-exclamation:before {\n  content: \"\\f12a\";\n}\n.icon-superscript:before {\n  content: \"\\f12b\";\n}\n.icon-subscript:before {\n  content: \"\\f12c\";\n}\n.icon-eraser:before {\n  content: \"\\f12d\";\n}\n.icon-puzzle-piece:before {\n  content: \"\\f12e\";\n}\n.icon-microphone:before {\n  content: \"\\f130\";\n}\n.icon-microphone-slash:before {\n  content: \"\\f131\";\n}\n.icon-shield:before {\n  content: \"\\f132\";\n}\n.icon-calendar-o:before {\n  content: \"\\f133\";\n}\n.icon-fire-extinguisher:before {\n  content: \"\\f134\";\n}\n.icon-rocket:before {\n  content: \"\\f135\";\n}\n.icon-maxcdn:before {\n  content: \"\\f136\";\n}\n.icon-chevron-circle-left:before {\n  content: \"\\f137\";\n}\n.icon-chevron-circle-right:before {\n  content: \"\\f138\";\n}\n.icon-chevron-circle-up:before {\n  content: \"\\f139\";\n}\n.icon-chevron-circle-down:before {\n  content: \"\\f13a\";\n}\n.icon-html5:before {\n  content: \"\\f13b\";\n}\n.icon-css3:before {\n  content: \"\\f13c\";\n}\n.icon-anchor:before {\n  content: \"\\f13d\";\n}\n.icon-unlock-alt:before {\n  content: \"\\f13e\";\n}\n.icon-bullseye:before {\n  content: \"\\f140\";\n}\n.icon-ellipsis-h:before {\n  content: \"\\f141\";\n}\n.icon-ellipsis-v:before {\n  content: \"\\f142\";\n}\n.icon-rss-square:before {\n  content: \"\\f143\";\n}\n.icon-play-circle:before {\n  content: \"\\f144\";\n}\n.icon-ticket:before {\n  content: \"\\f145\";\n}\n.icon-minus-square:before {\n  content: \"\\f146\";\n}\n.icon-minus-square-o:before {\n  content: \"\\f147\";\n}\n.icon-level-up:before {\n  content: \"\\f148\";\n}\n.icon-level-down:before {\n  content: \"\\f149\";\n}\n.icon-check-square:before {\n  content: \"\\f14a\";\n}\n.icon-pencil-square:before {\n  content: \"\\f14b\";\n}\n.icon-external-link-square:before {\n  content: \"\\f14c\";\n}\n.icon-share-square:before {\n  content: \"\\f14d\";\n}\n.icon-compass:before {\n  content: \"\\f14e\";\n}\n.icon-caret-square-o-down:before {\n  content: \"\\f150\";\n}\n.icon-toggle-down:before {\n  content: \"\\f150\";\n}\n.icon-caret-square-o-up:before {\n  content: \"\\f151\";\n}\n.icon-toggle-up:before {\n  content: \"\\f151\";\n}\n.icon-caret-square-o-right:before {\n  content: \"\\f152\";\n}\n.icon-toggle-right:before {\n  content: \"\\f152\";\n}\n.icon-eur:before {\n  content: \"\\f153\";\n}\n.icon-euro:before {\n  content: \"\\f153\";\n}\n.icon-gbp:before {\n  content: \"\\f154\";\n}\n.icon-dollar:before {\n  content: \"\\f155\";\n}\n.icon-usd:before {\n  content: \"\\f155\";\n}\n.icon-inr:before {\n  content: \"\\f156\";\n}\n.icon-rupee:before {\n  content: \"\\f156\";\n}\n.icon-cny:before {\n  content: \"\\f157\";\n}\n.icon-jpy:before {\n  content: \"\\f157\";\n}\n.icon-rmb:before {\n  content: \"\\f157\";\n}\n.icon-yen:before {\n  content: \"\\f157\";\n}\n.icon-rouble:before {\n  content: \"\\f158\";\n}\n.icon-rub:before {\n  content: \"\\f158\";\n}\n.icon-ruble:before {\n  content: \"\\f158\";\n}\n.icon-krw:before {\n  content: \"\\f159\";\n}\n.icon-won:before {\n  content: \"\\f159\";\n}\n.icon-bitcoin:before {\n  content: \"\\f15a\";\n}\n.icon-btc:before {\n  content: \"\\f15a\";\n}\n.icon-file:before {\n  content: \"\\f15b\";\n}\n.icon-file-text:before {\n  content: \"\\f15c\";\n}\n.icon-sort-alpha-asc:before {\n  content: \"\\f15d\";\n}\n.icon-sort-alpha-desc:before {\n  content: \"\\f15e\";\n}\n.icon-sort-amount-asc:before {\n  content: \"\\f160\";\n}\n.icon-sort-amount-desc:before {\n  content: \"\\f161\";\n}\n.icon-sort-numeric-asc:before {\n  content: \"\\f162\";\n}\n.icon-sort-numeric-desc:before {\n  content: \"\\f163\";\n}\n.icon-thumbs-up:before {\n  content: \"\\f164\";\n}\n.icon-thumbs-down:before {\n  content: \"\\f165\";\n}\n.icon-youtube-square:before {\n  content: \"\\f166\";\n}\n.icon-youtube:before {\n  content: \"\\f167\";\n}\n.icon-xing:before {\n  content: \"\\f168\";\n}\n.icon-xing-square:before {\n  content: \"\\f169\";\n}\n.icon-youtube-play:before {\n  content: \"\\f16a\";\n}\n.icon-dropbox:before {\n  content: \"\\f16b\";\n}\n.icon-stack-overflow:before {\n  content: \"\\f16c\";\n}\n.icon-instagram:before {\n  content: \"\\f16d\";\n}\n.icon-flickr:before {\n  content: \"\\f16e\";\n}\n.icon-adn:before {\n  content: \"\\f170\";\n}\n.icon-bitbucket:before {\n  content: \"\\f171\";\n}\n.icon-bitbucket-square:before {\n  content: \"\\f172\";\n}\n.icon-tumblr:before {\n  content: \"\\f173\";\n}\n.icon-tumblr-square:before {\n  content: \"\\f174\";\n}\n.icon-long-arrow-down:before {\n  content: \"\\f175\";\n}\n.icon-long-arrow-up:before {\n  content: \"\\f176\";\n}\n.icon-long-arrow-left:before {\n  content: \"\\f177\";\n}\n.icon-long-arrow-right:before {\n  content: \"\\f178\";\n}\n.icon-apple:before {\n  content: \"\\f179\";\n}\n.icon-windows:before {\n  content: \"\\f17a\";\n}\n.icon-android:before {\n  content: \"\\f17b\";\n}\n.icon-linux:before {\n  content: \"\\f17c\";\n}\n.icon-dribbble:before {\n  content: \"\\f17d\";\n}\n.icon-skype:before {\n  content: \"\\f17e\";\n}\n.icon-foursquare:before {\n  content: \"\\f180\";\n}\n.icon-trello:before {\n  content: \"\\f181\";\n}\n.icon-female:before {\n  content: \"\\f182\";\n}\n.icon-male:before {\n  content: \"\\f183\";\n}\n.icon-gittip:before {\n  content: \"\\f184\";\n}\n.icon-gratipay:before {\n  content: \"\\f184\";\n}\n.icon-sun-o:before {\n  content: \"\\f185\";\n}\n.icon-moon-o:before {\n  content: \"\\f186\";\n}\n.icon-archive:before {\n  content: \"\\f187\";\n}\n.icon-bug:before {\n  content: \"\\f188\";\n}\n.icon-vk:before {\n  content: \"\\f189\";\n}\n.icon-weibo:before {\n  content: \"\\f18a\";\n}\n.icon-renren:before {\n  content: \"\\f18b\";\n}\n.icon-pagelines:before {\n  content: \"\\f18c\";\n}\n.icon-stack-exchange:before {\n  content: \"\\f18d\";\n}\n.icon-arrow-circle-o-right:before {\n  content: \"\\f18e\";\n}\n.icon-arrow-circle-o-left:before {\n  content: \"\\f190\";\n}\n.icon-caret-square-o-left:before {\n  content: \"\\f191\";\n}\n.icon-toggle-left:before {\n  content: \"\\f191\";\n}\n.icon-dot-circle-o:before {\n  content: \"\\f192\";\n}\n.icon-wheelchair:before {\n  content: \"\\f193\";\n}\n.icon-vimeo-square:before {\n  content: \"\\f194\";\n}\n.icon-try:before {\n  content: \"\\f195\";\n}\n.icon-turkish-lira:before {\n  content: \"\\f195\";\n}\n.icon-plus-square-o:before {\n  content: \"\\f196\";\n}\n.icon-space-shuttle:before {\n  content: \"\\f197\";\n}\n.icon-slack:before {\n  content: \"\\f198\";\n}\n.icon-envelope-square:before {\n  content: \"\\f199\";\n}\n.icon-wordpress:before {\n  content: \"\\f19a\";\n}\n.icon-openid:before {\n  content: \"\\f19b\";\n}\n.icon-bank:before {\n  content: \"\\f19c\";\n}\n.icon-institution:before {\n  content: \"\\f19c\";\n}\n.icon-university:before {\n  content: \"\\f19c\";\n}\n.icon-graduation-cap:before {\n  content: \"\\f19d\";\n}\n.icon-mortar-board:before {\n  content: \"\\f19d\";\n}\n.icon-yahoo:before {\n  content: \"\\f19e\";\n}\n.icon-google:before {\n  content: \"\\f1a0\";\n}\n.icon-reddit:before {\n  content: \"\\f1a1\";\n}\n.icon-reddit-square:before {\n  content: \"\\f1a2\";\n}\n.icon-stumbleupon-circle:before {\n  content: \"\\f1a3\";\n}\n.icon-stumbleupon:before {\n  content: \"\\f1a4\";\n}\n.icon-delicious:before {\n  content: \"\\f1a5\";\n}\n.icon-digg:before {\n  content: \"\\f1a6\";\n}\n.icon-pied-piper-pp:before {\n  content: \"\\f1a7\";\n}\n.icon-pied-piper-alt:before {\n  content: \"\\f1a8\";\n}\n.icon-drupal:before {\n  content: \"\\f1a9\";\n}\n.icon-joomla:before {\n  content: \"\\f1aa\";\n}\n.icon-language:before {\n  content: \"\\f1ab\";\n}\n.icon-fax:before {\n  content: \"\\f1ac\";\n}\n.icon-building:before {\n  content: \"\\f1ad\";\n}\n.icon-child:before {\n  content: \"\\f1ae\";\n}\n.icon-paw:before {\n  content: \"\\f1b0\";\n}\n.icon-spoon:before {\n  content: \"\\f1b1\";\n}\n.icon-cube:before {\n  content: \"\\f1b2\";\n}\n.icon-cubes:before {\n  content: \"\\f1b3\";\n}\n.icon-behance:before {\n  content: \"\\f1b4\";\n}\n.icon-behance-square:before {\n  content: \"\\f1b5\";\n}\n.icon-steam:before {\n  content: \"\\f1b6\";\n}\n.icon-steam-square:before {\n  content: \"\\f1b7\";\n}\n.icon-recycle:before {\n  content: \"\\f1b8\";\n}\n.icon-automobile:before {\n  content: \"\\f1b9\";\n}\n.icon-car:before {\n  content: \"\\f1b9\";\n}\n.icon-cab:before {\n  content: \"\\f1ba\";\n}\n.icon-taxi:before {\n  content: \"\\f1ba\";\n}\n.icon-tree:before {\n  content: \"\\f1bb\";\n}\n.icon-spotify:before {\n  content: \"\\f1bc\";\n}\n.icon-deviantart:before {\n  content: \"\\f1bd\";\n}\n.icon-soundcloud:before {\n  content: \"\\f1be\";\n}\n.icon-database:before {\n  content: \"\\f1c0\";\n}\n.icon-file-pdf-o:before {\n  content: \"\\f1c1\";\n}\n.icon-file-word-o:before {\n  content: \"\\f1c2\";\n}\n.icon-file-excel-o:before {\n  content: \"\\f1c3\";\n}\n.icon-file-powerpoint-o:before {\n  content: \"\\f1c4\";\n}\n.icon-file-image-o:before {\n  content: \"\\f1c5\";\n}\n.icon-file-photo-o:before {\n  content: \"\\f1c5\";\n}\n.icon-file-picture-o:before {\n  content: \"\\f1c5\";\n}\n.icon-file-archive-o:before {\n  content: \"\\f1c6\";\n}\n.icon-file-zip-o:before {\n  content: \"\\f1c6\";\n}\n.icon-file-audio-o:before {\n  content: \"\\f1c7\";\n}\n.icon-file-sound-o:before {\n  content: \"\\f1c7\";\n}\n.icon-file-movie-o:before {\n  content: \"\\f1c8\";\n}\n.icon-file-video-o:before {\n  content: \"\\f1c8\";\n}\n.icon-file-code-o:before {\n  content: \"\\f1c9\";\n}\n.icon-vine:before {\n  content: \"\\f1ca\";\n}\n.icon-codepen:before {\n  content: \"\\f1cb\";\n}\n.icon-jsfiddle:before {\n  content: \"\\f1cc\";\n}\n.icon-life-bouy:before {\n  content: \"\\f1cd\";\n}\n.icon-life-buoy:before {\n  content: \"\\f1cd\";\n}\n.icon-life-ring:before {\n  content: \"\\f1cd\";\n}\n.icon-life-saver:before {\n  content: \"\\f1cd\";\n}\n.icon-support:before {\n  content: \"\\f1cd\";\n}\n.icon-circle-o-notch:before {\n  content: \"\\f1ce\";\n}\n.icon-ra:before {\n  content: \"\\f1d0\";\n}\n.icon-rebel:before {\n  content: \"\\f1d0\";\n}\n.icon-resistance:before {\n  content: \"\\f1d0\";\n}\n.icon-empire:before {\n  content: \"\\f1d1\";\n}\n.icon-ge:before {\n  content: \"\\f1d1\";\n}\n.icon-git-square:before {\n  content: \"\\f1d2\";\n}\n.icon-git:before {\n  content: \"\\f1d3\";\n}\n.icon-hacker-news:before {\n  content: \"\\f1d4\";\n}\n.icon-y-combinator-square:before {\n  content: \"\\f1d4\";\n}\n.icon-yc-square:before {\n  content: \"\\f1d4\";\n}\n.icon-tencent-weibo:before {\n  content: \"\\f1d5\";\n}\n.icon-qq:before {\n  content: \"\\f1d6\";\n}\n.icon-wechat:before {\n  content: \"\\f1d7\";\n}\n.icon-weixin:before {\n  content: \"\\f1d7\";\n}\n.icon-paper-plane:before {\n  content: \"\\f1d8\";\n}\n.icon-send:before {\n  content: \"\\f1d8\";\n}\n.icon-paper-plane-o:before {\n  content: \"\\f1d9\";\n}\n.icon-send-o:before {\n  content: \"\\f1d9\";\n}\n.icon-history:before {\n  content: \"\\f1da\";\n}\n.icon-circle-thin:before {\n  content: \"\\f1db\";\n}\n.icon-header:before {\n  content: \"\\f1dc\";\n}\n.icon-paragraph:before {\n  content: \"\\f1dd\";\n}\n.icon-sliders:before {\n  content: \"\\f1de\";\n}\n.icon-share-alt:before {\n  content: \"\\f1e0\";\n}\n.icon-share-alt-square:before {\n  content: \"\\f1e1\";\n}\n.icon-bomb:before {\n  content: \"\\f1e2\";\n}\n.icon-futbol-o:before {\n  content: \"\\f1e3\";\n}\n.icon-soccer-ball-o:before {\n  content: \"\\f1e3\";\n}\n.icon-tty:before {\n  content: \"\\f1e4\";\n}\n.icon-binoculars:before {\n  content: \"\\f1e5\";\n}\n.icon-plug:before {\n  content: \"\\f1e6\";\n}\n.icon-slideshare:before {\n  content: \"\\f1e7\";\n}\n.icon-twitch:before {\n  content: \"\\f1e8\";\n}\n.icon-yelp:before {\n  content: \"\\f1e9\";\n}\n.icon-newspaper-o:before {\n  content: \"\\f1ea\";\n}\n.icon-wifi:before {\n  content: \"\\f1eb\";\n}\n.icon-calculator:before {\n  content: \"\\f1ec\";\n}\n.icon-paypal:before {\n  content: \"\\f1ed\";\n}\n.icon-google-wallet:before {\n  content: \"\\f1ee\";\n}\n.icon-cc-visa:before {\n  content: \"\\f1f0\";\n}\n.icon-cc-mastercard:before {\n  content: \"\\f1f1\";\n}\n.icon-cc-discover:before {\n  content: \"\\f1f2\";\n}\n.icon-cc-amex:before {\n  content: \"\\f1f3\";\n}\n.icon-cc-paypal:before {\n  content: \"\\f1f4\";\n}\n.icon-cc-stripe:before {\n  content: \"\\f1f5\";\n}\n.icon-bell-slash:before {\n  content: \"\\f1f6\";\n}\n.icon-bell-slash-o:before {\n  content: \"\\f1f7\";\n}\n.icon-trash:before {\n  content: \"\\f1f8\";\n}\n.icon-copyright:before {\n  content: \"\\f1f9\";\n}\n.icon-at:before {\n  content: \"\\f1fa\";\n}\n.icon-eyedropper:before {\n  content: \"\\f1fb\";\n}\n.icon-paint-brush:before {\n  content: \"\\f1fc\";\n}\n.icon-birthday-cake:before {\n  content: \"\\f1fd\";\n}\n.icon-area-chart:before {\n  content: \"\\f1fe\";\n}\n.icon-pie-chart:before {\n  content: \"\\f200\";\n}\n.icon-line-chart:before {\n  content: \"\\f201\";\n}\n.icon-lastfm:before {\n  content: \"\\f202\";\n}\n.icon-lastfm-square:before {\n  content: \"\\f203\";\n}\n.icon-toggle-off:before {\n  content: \"\\f204\";\n}\n.icon-toggle-on:before {\n  content: \"\\f205\";\n}\n.icon-bicycle:before {\n  content: \"\\f206\";\n}\n.icon-bus:before {\n  content: \"\\f207\";\n}\n.icon-ioxhost:before {\n  content: \"\\f208\";\n}\n.icon-angellist:before {\n  content: \"\\f209\";\n}\n.icon-cc:before {\n  content: \"\\f20a\";\n}\n.icon-ils:before {\n  content: \"\\f20b\";\n}\n.icon-shekel:before {\n  content: \"\\f20b\";\n}\n.icon-sheqel:before {\n  content: \"\\f20b\";\n}\n.icon-meanpath:before {\n  content: \"\\f20c\";\n}\n.icon-buysellads:before {\n  content: \"\\f20d\";\n}\n.icon-connectdevelop:before {\n  content: \"\\f20e\";\n}\n.icon-dashcube:before {\n  content: \"\\f210\";\n}\n.icon-forumbee:before {\n  content: \"\\f211\";\n}\n.icon-leanpub:before {\n  content: \"\\f212\";\n}\n.icon-sellsy:before {\n  content: \"\\f213\";\n}\n.icon-shirtsinbulk:before {\n  content: \"\\f214\";\n}\n.icon-simplybuilt:before {\n  content: \"\\f215\";\n}\n.icon-skyatlas:before {\n  content: \"\\f216\";\n}\n.icon-cart-plus:before {\n  content: \"\\f217\";\n}\n.icon-cart-arrow-down:before {\n  content: \"\\f218\";\n}\n.icon-diamond:before {\n  content: \"\\f219\";\n}\n.icon-ship:before {\n  content: \"\\f21a\";\n}\n.icon-user-secret:before {\n  content: \"\\f21b\";\n}\n.icon-motorcycle:before {\n  content: \"\\f21c\";\n}\n.icon-street-view:before {\n  content: \"\\f21d\";\n}\n.icon-heartbeat:before {\n  content: \"\\f21e\";\n}\n.icon-venus:before {\n  content: \"\\f221\";\n}\n.icon-mars:before {\n  content: \"\\f222\";\n}\n.icon-mercury:before {\n  content: \"\\f223\";\n}\n.icon-intersex:before {\n  content: \"\\f224\";\n}\n.icon-transgender:before {\n  content: \"\\f224\";\n}\n.icon-transgender-alt:before {\n  content: \"\\f225\";\n}\n.icon-venus-double:before {\n  content: \"\\f226\";\n}\n.icon-mars-double:before {\n  content: \"\\f227\";\n}\n.icon-venus-mars:before {\n  content: \"\\f228\";\n}\n.icon-mars-stroke:before {\n  content: \"\\f229\";\n}\n.icon-mars-stroke-v:before {\n  content: \"\\f22a\";\n}\n.icon-mars-stroke-h:before {\n  content: \"\\f22b\";\n}\n.icon-neuter:before {\n  content: \"\\f22c\";\n}\n.icon-genderless:before {\n  content: \"\\f22d\";\n}\n.icon-facebook-official:before {\n  content: \"\\f230\";\n}\n.icon-pinterest-p:before {\n  content: \"\\f231\";\n}\n.icon-whatsapp:before {\n  content: \"\\f232\";\n}\n.icon-server:before {\n  content: \"\\f233\";\n}\n.icon-user-plus:before {\n  content: \"\\f234\";\n}\n.icon-user-times:before {\n  content: \"\\f235\";\n}\n.icon-bed:before {\n  content: \"\\f236\";\n}\n.icon-hotel:before {\n  content: \"\\f236\";\n}\n.icon-viacoin:before {\n  content: \"\\f237\";\n}\n.icon-train:before {\n  content: \"\\f238\";\n}\n.icon-subway:before {\n  content: \"\\f239\";\n}\n.icon-medium:before {\n  content: \"\\f23a\";\n}\n.icon-y-combinator:before {\n  content: \"\\f23b\";\n}\n.icon-yc:before {\n  content: \"\\f23b\";\n}\n.icon-optin-monster:before {\n  content: \"\\f23c\";\n}\n.icon-opencart:before {\n  content: \"\\f23d\";\n}\n.icon-expeditedssl:before {\n  content: \"\\f23e\";\n}\n.icon-battery:before {\n  content: \"\\f240\";\n}\n.icon-battery-4:before {\n  content: \"\\f240\";\n}\n.icon-battery-full:before {\n  content: \"\\f240\";\n}\n.icon-battery-3:before {\n  content: \"\\f241\";\n}\n.icon-battery-three-quarters:before {\n  content: \"\\f241\";\n}\n.icon-battery-2:before {\n  content: \"\\f242\";\n}\n.icon-battery-half:before {\n  content: \"\\f242\";\n}\n.icon-battery-1:before {\n  content: \"\\f243\";\n}\n.icon-battery-quarter:before {\n  content: \"\\f243\";\n}\n.icon-battery-0:before {\n  content: \"\\f244\";\n}\n.icon-battery-empty:before {\n  content: \"\\f244\";\n}\n.icon-mouse-pointer:before {\n  content: \"\\f245\";\n}\n.icon-i-cursor:before {\n  content: \"\\f246\";\n}\n.icon-object-group:before {\n  content: \"\\f247\";\n}\n.icon-object-ungroup:before {\n  content: \"\\f248\";\n}\n.icon-sticky-note:before {\n  content: \"\\f249\";\n}\n.icon-sticky-note-o:before {\n  content: \"\\f24a\";\n}\n.icon-cc-jcb:before {\n  content: \"\\f24b\";\n}\n.icon-cc-diners-club:before {\n  content: \"\\f24c\";\n}\n.icon-clone:before {\n  content: \"\\f24d\";\n}\n.icon-balance-scale:before {\n  content: \"\\f24e\";\n}\n.icon-hourglass-o:before {\n  content: \"\\f250\";\n}\n.icon-hourglass-1:before {\n  content: \"\\f251\";\n}\n.icon-hourglass-start:before {\n  content: \"\\f251\";\n}\n.icon-hourglass-2:before {\n  content: \"\\f252\";\n}\n.icon-hourglass-half:before {\n  content: \"\\f252\";\n}\n.icon-hourglass-3:before {\n  content: \"\\f253\";\n}\n.icon-hourglass-end:before {\n  content: \"\\f253\";\n}\n.icon-hourglass:before {\n  content: \"\\f254\";\n}\n.icon-hand-grab-o:before {\n  content: \"\\f255\";\n}\n.icon-hand-rock-o:before {\n  content: \"\\f255\";\n}\n.icon-hand-paper-o:before {\n  content: \"\\f256\";\n}\n.icon-hand-stop-o:before {\n  content: \"\\f256\";\n}\n.icon-hand-scissors-o:before {\n  content: \"\\f257\";\n}\n.icon-hand-lizard-o:before {\n  content: \"\\f258\";\n}\n.icon-hand-spock-o:before {\n  content: \"\\f259\";\n}\n.icon-hand-pointer-o:before {\n  content: \"\\f25a\";\n}\n.icon-hand-peace-o:before {\n  content: \"\\f25b\";\n}\n.icon-trademark:before {\n  content: \"\\f25c\";\n}\n.icon-registered:before {\n  content: \"\\f25d\";\n}\n.icon-creative-commons:before {\n  content: \"\\f25e\";\n}\n.icon-gg:before {\n  content: \"\\f260\";\n}\n.icon-gg-circle:before {\n  content: \"\\f261\";\n}\n.icon-tripadvisor:before {\n  content: \"\\f262\";\n}\n.icon-odnoklassniki:before {\n  content: \"\\f263\";\n}\n.icon-odnoklassniki-square:before {\n  content: \"\\f264\";\n}\n.icon-get-pocket:before {\n  content: \"\\f265\";\n}\n.icon-wikipedia-w:before {\n  content: \"\\f266\";\n}\n.icon-safari:before {\n  content: \"\\f267\";\n}\n.icon-chrome:before {\n  content: \"\\f268\";\n}\n.icon-firefox:before {\n  content: \"\\f269\";\n}\n.icon-opera:before {\n  content: \"\\f26a\";\n}\n.icon-internet-explorer:before {\n  content: \"\\f26b\";\n}\n.icon-television:before {\n  content: \"\\f26c\";\n}\n.icon-tv:before {\n  content: \"\\f26c\";\n}\n.icon-contao:before {\n  content: \"\\f26d\";\n}\n.icon-500px:before {\n  content: \"\\f26e\";\n}\n.icon-amazon:before {\n  content: \"\\f270\";\n}\n.icon-calendar-plus-o:before {\n  content: \"\\f271\";\n}\n.icon-calendar-minus-o:before {\n  content: \"\\f272\";\n}\n.icon-calendar-times-o:before {\n  content: \"\\f273\";\n}\n.icon-calendar-check-o:before {\n  content: \"\\f274\";\n}\n.icon-industry:before {\n  content: \"\\f275\";\n}\n.icon-map-pin:before {\n  content: \"\\f276\";\n}\n.icon-map-signs:before {\n  content: \"\\f277\";\n}\n.icon-map-o:before {\n  content: \"\\f278\";\n}\n.icon-map:before {\n  content: \"\\f279\";\n}\n.icon-commenting:before {\n  content: \"\\f27a\";\n}\n.icon-commenting-o:before {\n  content: \"\\f27b\";\n}\n.icon-houzz:before {\n  content: \"\\f27c\";\n}\n.icon-vimeo:before {\n  content: \"\\f27d\";\n}\n.icon-black-tie:before {\n  content: \"\\f27e\";\n}\n.icon-fonticons:before {\n  content: \"\\f280\";\n}\n.icon-reddit-alien:before {\n  content: \"\\f281\";\n}\n.icon-edge:before {\n  content: \"\\f282\";\n}\n.icon-credit-card-alt:before {\n  content: \"\\f283\";\n}\n.icon-codiepie:before {\n  content: \"\\f284\";\n}\n.icon-modx:before {\n  content: \"\\f285\";\n}\n.icon-fort-awesome:before {\n  content: \"\\f286\";\n}\n.icon-usb:before {\n  content: \"\\f287\";\n}\n.icon-product-hunt:before {\n  content: \"\\f288\";\n}\n.icon-mixcloud:before {\n  content: \"\\f289\";\n}\n.icon-scribd:before {\n  content: \"\\f28a\";\n}\n.icon-pause-circle:before {\n  content: \"\\f28b\";\n}\n.icon-pause-circle-o:before {\n  content: \"\\f28c\";\n}\n.icon-stop-circle:before {\n  content: \"\\f28d\";\n}\n.icon-stop-circle-o:before {\n  content: \"\\f28e\";\n}\n.icon-shopping-bag:before {\n  content: \"\\f290\";\n}\n.icon-shopping-basket:before {\n  content: \"\\f291\";\n}\n.icon-hashtag:before {\n  content: \"\\f292\";\n}\n.icon-bluetooth:before {\n  content: \"\\f293\";\n}\n.icon-bluetooth-b:before {\n  content: \"\\f294\";\n}\n.icon-percent:before {\n  content: \"\\f295\";\n}\n.icon-gitlab:before {\n  content: \"\\f296\";\n}\n.icon-wpbeginner:before {\n  content: \"\\f297\";\n}\n.icon-wpforms:before {\n  content: \"\\f298\";\n}\n.icon-envira:before {\n  content: \"\\f299\";\n}\n.icon-universal-access:before {\n  content: \"\\f29a\";\n}\n.icon-wheelchair-alt:before {\n  content: \"\\f29b\";\n}\n.icon-question-circle-o:before {\n  content: \"\\f29c\";\n}\n.icon-blind:before {\n  content: \"\\f29d\";\n}\n.icon-audio-description:before {\n  content: \"\\f29e\";\n}\n.icon-volume-control-phone:before {\n  content: \"\\f2a0\";\n}\n.icon-braille:before {\n  content: \"\\f2a1\";\n}\n.icon-assistive-listening-systems:before {\n  content: \"\\f2a2\";\n}\n.icon-american-sign-language-interpreting:before {\n  content: \"\\f2a3\";\n}\n.icon-asl-interpreting:before {\n  content: \"\\f2a3\";\n}\n.icon-deaf:before {\n  content: \"\\f2a4\";\n}\n.icon-deafness:before {\n  content: \"\\f2a4\";\n}\n.icon-hard-of-hearing:before {\n  content: \"\\f2a4\";\n}\n.icon-glide:before {\n  content: \"\\f2a5\";\n}\n.icon-glide-g:before {\n  content: \"\\f2a6\";\n}\n.icon-sign-language:before {\n  content: \"\\f2a7\";\n}\n.icon-signing:before {\n  content: \"\\f2a7\";\n}\n.icon-low-vision:before {\n  content: \"\\f2a8\";\n}\n.icon-viadeo:before {\n  content: \"\\f2a9\";\n}\n.icon-viadeo-square:before {\n  content: \"\\f2aa\";\n}\n.icon-snapchat:before {\n  content: \"\\f2ab\";\n}\n.icon-snapchat-ghost:before {\n  content: \"\\f2ac\";\n}\n.icon-snapchat-square:before {\n  content: \"\\f2ad\";\n}\n.icon-pied-piper:before {\n  content: \"\\f2ae\";\n}\n.icon-first-order:before {\n  content: \"\\f2b0\";\n}\n.icon-yoast:before {\n  content: \"\\f2b1\";\n}\n.icon-themeisle:before {\n  content: \"\\f2b2\";\n}\n.icon-google-plus-circle:before {\n  content: \"\\f2b3\";\n}\n.icon-google-plus-official:before {\n  content: \"\\f2b3\";\n}\n.icon-fa:before {\n  content: \"\\f2b4\";\n}\n.icon-font-awesome:before {\n  content: \"\\f2b4\";\n}\n.icon-handshake-o:before {\n  content: \"\\f2b5\";\n}\n.icon-envelope-open:before {\n  content: \"\\f2b6\";\n}\n.icon-envelope-open-o:before {\n  content: \"\\f2b7\";\n}\n.icon-linode:before {\n  content: \"\\f2b8\";\n}\n.icon-address-book:before {\n  content: \"\\f2b9\";\n}\n.icon-address-book-o:before {\n  content: \"\\f2ba\";\n}\n.icon-address-card:before {\n  content: \"\\f2bb\";\n}\n.icon-vcard:before {\n  content: \"\\f2bb\";\n}\n.icon-address-card-o:before {\n  content: \"\\f2bc\";\n}\n.icon-vcard-o:before {\n  content: \"\\f2bc\";\n}\n.icon-user-circle:before {\n  content: \"\\f2bd\";\n}\n.icon-user-circle-o:before {\n  content: \"\\f2be\";\n}\n.icon-user-o:before {\n  content: \"\\f2c0\";\n}\n.icon-id-badge:before {\n  content: \"\\f2c1\";\n}\n.icon-drivers-license:before {\n  content: \"\\f2c2\";\n}\n.icon-id-card:before {\n  content: \"\\f2c2\";\n}\n.icon-drivers-license-o:before {\n  content: \"\\f2c3\";\n}\n.icon-id-card-o:before {\n  content: \"\\f2c3\";\n}\n.icon-quora:before {\n  content: \"\\f2c4\";\n}\n.icon-free-code-camp:before {\n  content: \"\\f2c5\";\n}\n.icon-telegram:before {\n  content: \"\\f2c6\";\n}\n.icon-thermometer:before {\n  content: \"\\f2c7\";\n}\n.icon-thermometer-4:before {\n  content: \"\\f2c7\";\n}\n.icon-thermometer-full:before {\n  content: \"\\f2c7\";\n}\n.icon-thermometer-3:before {\n  content: \"\\f2c8\";\n}\n.icon-thermometer-three-quarters:before {\n  content: \"\\f2c8\";\n}\n.icon-thermometer-2:before {\n  content: \"\\f2c9\";\n}\n.icon-thermometer-half:before {\n  content: \"\\f2c9\";\n}\n.icon-thermometer-1:before {\n  content: \"\\f2ca\";\n}\n.icon-thermometer-quarter:before {\n  content: \"\\f2ca\";\n}\n.icon-thermometer-0:before {\n  content: \"\\f2cb\";\n}\n.icon-thermometer-empty:before {\n  content: \"\\f2cb\";\n}\n.icon-shower:before {\n  content: \"\\f2cc\";\n}\n.icon-bath:before {\n  content: \"\\f2cd\";\n}\n.icon-bathtub:before {\n  content: \"\\f2cd\";\n}\n.icon-s15:before {\n  content: \"\\f2cd\";\n}\n.icon-podcast:before {\n  content: \"\\f2ce\";\n}\n.icon-window-maximize:before {\n  content: \"\\f2d0\";\n}\n.icon-window-minimize:before {\n  content: \"\\f2d1\";\n}\n.icon-window-restore:before {\n  content: \"\\f2d2\";\n}\n.icon-times-rectangle:before {\n  content: \"\\f2d3\";\n}\n.icon-window-close:before {\n  content: \"\\f2d3\";\n}\n.icon-times-rectangle-o:before {\n  content: \"\\f2d4\";\n}\n.icon-window-close-o:before {\n  content: \"\\f2d4\";\n}\n.icon-bandcamp:before {\n  content: \"\\f2d5\";\n}\n.icon-grav:before {\n  content: \"\\f2d6\";\n}\n.icon-etsy:before {\n  content: \"\\f2d7\";\n}\n.icon-imdb:before {\n  content: \"\\f2d8\";\n}\n.icon-ravelry:before {\n  content: \"\\f2d9\";\n}\n.icon-eercast:before {\n  content: \"\\f2da\";\n}\n.icon-microchip:before {\n  content: \"\\f2db\";\n}\n.icon-snowflake-o:before {\n  content: \"\\f2dc\";\n}\n.icon-superpowers:before {\n  content: \"\\f2dd\";\n}\n.icon-wpexplorer:before {\n  content: \"\\f2de\";\n}\n.icon-meetup:before {\n  content: \"\\f2e0\";\n}\n.icon-3d_rotation:before {\n  content: \"\\e84d\";\n}\n.icon-ac_unit:before {\n  content: \"\\eb3b\";\n}\n.icon-alarm:before {\n  content: \"\\e855\";\n}\n.icon-access_alarms:before {\n  content: \"\\e191\";\n}\n.icon-schedule:before {\n  content: \"\\e8b5\";\n}\n.icon-accessibility:before {\n  content: \"\\e84e\";\n}\n.icon-accessible:before {\n  content: \"\\e914\";\n}\n.icon-account_balance:before {\n  content: \"\\e84f\";\n}\n.icon-account_balance_wallet:before {\n  content: \"\\e850\";\n}\n.icon-account_box:before {\n  content: \"\\e851\";\n}\n.icon-account_circle:before {\n  content: \"\\e853\";\n}\n.icon-adb:before {\n  content: \"\\e60e\";\n}\n.icon-add:before {\n  content: \"\\e145\";\n}\n.icon-add_a_photo:before {\n  content: \"\\e439\";\n}\n.icon-alarm_add:before {\n  content: \"\\e856\";\n}\n.icon-add_alert:before {\n  content: \"\\e003\";\n}\n.icon-add_box:before {\n  content: \"\\e146\";\n}\n.icon-add_circle:before {\n  content: \"\\e147\";\n}\n.icon-control_point:before {\n  content: \"\\e3ba\";\n}\n.icon-add_location:before {\n  content: \"\\e567\";\n}\n.icon-add_shopping_cart:before {\n  content: \"\\e854\";\n}\n.icon-queue:before {\n  content: \"\\e03c\";\n}\n.icon-add_to_queue:before {\n  content: \"\\e05c\";\n}\n.icon-adjust2:before {\n  content: \"\\e39e\";\n}\n.icon-airline_seat_flat:before {\n  content: \"\\e630\";\n}\n.icon-airline_seat_flat_angled:before {\n  content: \"\\e631\";\n}\n.icon-airline_seat_individual_suite:before {\n  content: \"\\e632\";\n}\n.icon-airline_seat_legroom_extra:before {\n  content: \"\\e633\";\n}\n.icon-airline_seat_legroom_normal:before {\n  content: \"\\e634\";\n}\n.icon-airline_seat_legroom_reduced:before {\n  content: \"\\e635\";\n}\n.icon-airline_seat_recline_extra:before {\n  content: \"\\e636\";\n}\n.icon-airline_seat_recline_normal:before {\n  content: \"\\e637\";\n}\n.icon-flight:before {\n  content: \"\\e539\";\n}\n.icon-airplanemode_inactive:before {\n  content: \"\\e194\";\n}\n.icon-airplay:before {\n  content: \"\\e055\";\n}\n.icon-airport_shuttle:before {\n  content: \"\\eb3c\";\n}\n.icon-alarm_off:before {\n  content: \"\\e857\";\n}\n.icon-alarm_on:before {\n  content: \"\\e858\";\n}\n.icon-album:before {\n  content: \"\\e019\";\n}\n.icon-all_inclusive:before {\n  content: \"\\eb3d\";\n}\n.icon-all_out:before {\n  content: \"\\e90b\";\n}\n.icon-android2:before {\n  content: \"\\e859\";\n}\n.icon-announcement:before {\n  content: \"\\e85a\";\n}\n.icon-apps:before {\n  content: \"\\e5c3\";\n}\n.icon-archive2:before {\n  content: \"\\e149\";\n}\n.icon-arrow_back:before {\n  content: \"\\e5c4\";\n}\n.icon-arrow_downward:before {\n  content: \"\\e5db\";\n}\n.icon-arrow_drop_down:before {\n  content: \"\\e5c5\";\n}\n.icon-arrow_drop_down_circle:before {\n  content: \"\\e5c6\";\n}\n.icon-arrow_drop_up:before {\n  content: \"\\e5c7\";\n}\n.icon-arrow_forward:before {\n  content: \"\\e5c8\";\n}\n.icon-arrow_upward:before {\n  content: \"\\e5d8\";\n}\n.icon-art_track:before {\n  content: \"\\e060\";\n}\n.icon-aspect_ratio:before {\n  content: \"\\e85b\";\n}\n.icon-poll:before {\n  content: \"\\e801\";\n}\n.icon-assignment:before {\n  content: \"\\e85d\";\n}\n.icon-assignment_ind:before {\n  content: \"\\e85e\";\n}\n.icon-assignment_late:before {\n  content: \"\\e85f\";\n}\n.icon-assignment_return:before {\n  content: \"\\e860\";\n}\n.icon-assignment_returned:before {\n  content: \"\\e861\";\n}\n.icon-assignment_turned_in:before {\n  content: \"\\e862\";\n}\n.icon-assistant:before {\n  content: \"\\e39f\";\n}\n.icon-flag2:before {\n  content: \"\\e153\";\n}\n.icon-attach_file:before {\n  content: \"\\e226\";\n}\n.icon-attach_money:before {\n  content: \"\\e227\";\n}\n.icon-attachment:before {\n  content: \"\\e2bc\";\n}\n.icon-audiotrack:before {\n  content: \"\\e3a1\";\n}\n.icon-autorenew:before {\n  content: \"\\e863\";\n}\n.icon-av_timer:before {\n  content: \"\\e01b\";\n}\n.icon-backspace:before {\n  content: \"\\e14a\";\n}\n.icon-cloud_upload:before {\n  content: \"\\e2c3\";\n}\n.icon-battery_alert:before {\n  content: \"\\e19c\";\n}\n.icon-battery_charging_full:before {\n  content: \"\\e1a3\";\n}\n.icon-battery_std:before {\n  content: \"\\e1a5\";\n}\n.icon-battery_unknown:before {\n  content: \"\\e1a6\";\n}\n.icon-beach_access:before {\n  content: \"\\eb3e\";\n}\n.icon-beenhere:before {\n  content: \"\\e52d\";\n}\n.icon-block:before {\n  content: \"\\e14b\";\n}\n.icon-bluetooth2:before {\n  content: \"\\e1a7\";\n}\n.icon-bluetooth_searching:before {\n  content: \"\\e1aa\";\n}\n.icon-bluetooth_connected:before {\n  content: \"\\e1a8\";\n}\n.icon-bluetooth_disabled:before {\n  content: \"\\e1a9\";\n}\n.icon-blur_circular:before {\n  content: \"\\e3a2\";\n}\n.icon-blur_linear:before {\n  content: \"\\e3a3\";\n}\n.icon-blur_off:before {\n  content: \"\\e3a4\";\n}\n.icon-blur_on:before {\n  content: \"\\e3a5\";\n}\n.icon-class:before {\n  content: \"\\e86e\";\n}\n.icon-turned_in:before {\n  content: \"\\e8e6\";\n}\n.icon-turned_in_not:before {\n  content: \"\\e8e7\";\n}\n.icon-border_all:before {\n  content: \"\\e228\";\n}\n.icon-border_bottom:before {\n  content: \"\\e229\";\n}\n.icon-border_clear:before {\n  content: \"\\e22a\";\n}\n.icon-border_color:before {\n  content: \"\\e22b\";\n}\n.icon-border_horizontal:before {\n  content: \"\\e22c\";\n}\n.icon-border_inner:before {\n  content: \"\\e22d\";\n}\n.icon-border_left:before {\n  content: \"\\e22e\";\n}\n.icon-border_outer:before {\n  content: \"\\e22f\";\n}\n.icon-border_right:before {\n  content: \"\\e230\";\n}\n.icon-border_style:before {\n  content: \"\\e231\";\n}\n.icon-border_top:before {\n  content: \"\\e232\";\n}\n.icon-border_vertical:before {\n  content: \"\\e233\";\n}\n.icon-branding_watermark:before {\n  content: \"\\e06b\";\n}\n.icon-brightness_1:before {\n  content: \"\\e3a6\";\n}\n.icon-brightness_2:before {\n  content: \"\\e3a7\";\n}\n.icon-brightness_3:before {\n  content: \"\\e3a8\";\n}\n.icon-brightness_4:before {\n  content: \"\\e3a9\";\n}\n.icon-brightness_low:before {\n  content: \"\\e1ad\";\n}\n.icon-brightness_medium:before {\n  content: \"\\e1ae\";\n}\n.icon-brightness_high:before {\n  content: \"\\e1ac\";\n}\n.icon-brightness_auto:before {\n  content: \"\\e1ab\";\n}\n.icon-broken_image:before {\n  content: \"\\e3ad\";\n}\n.icon-brush:before {\n  content: \"\\e3ae\";\n}\n.icon-bubble_chart:before {\n  content: \"\\e6dd\";\n}\n.icon-bug_report:before {\n  content: \"\\e868\";\n}\n.icon-build:before {\n  content: \"\\e869\";\n}\n.icon-burst_mode:before {\n  content: \"\\e43c\";\n}\n.icon-domain:before {\n  content: \"\\e7ee\";\n}\n.icon-business_center:before {\n  content: \"\\eb3f\";\n}\n.icon-cached:before {\n  content: \"\\e86a\";\n}\n.icon-cake:before {\n  content: \"\\e7e9\";\n}\n.icon-phone2:before {\n  content: \"\\e0cd\";\n}\n.icon-call_end:before {\n  content: \"\\e0b1\";\n}\n.icon-call_made:before {\n  content: \"\\e0b2\";\n}\n.icon-merge_type:before {\n  content: \"\\e252\";\n}\n.icon-call_missed:before {\n  content: \"\\e0b4\";\n}\n.icon-call_missed_outgoing:before {\n  content: \"\\e0e4\";\n}\n.icon-call_received:before {\n  content: \"\\e0b5\";\n}\n.icon-call_split:before {\n  content: \"\\e0b6\";\n}\n.icon-call_to_action:before {\n  content: \"\\e06c\";\n}\n.icon-camera2:before {\n  content: \"\\e3af\";\n}\n.icon-photo_camera:before {\n  content: \"\\e412\";\n}\n.icon-camera_enhance:before {\n  content: \"\\e8fc\";\n}\n.icon-camera_front:before {\n  content: \"\\e3b1\";\n}\n.icon-camera_rear:before {\n  content: \"\\e3b2\";\n}\n.icon-camera_roll:before {\n  content: \"\\e3b3\";\n}\n.icon-cancel:before {\n  content: \"\\e5c9\";\n}\n.icon-redeem:before {\n  content: \"\\e8b1\";\n}\n.icon-card_membership:before {\n  content: \"\\e8f7\";\n}\n.icon-card_travel:before {\n  content: \"\\e8f8\";\n}\n.icon-casino:before {\n  content: \"\\eb40\";\n}\n.icon-cast:before {\n  content: \"\\e307\";\n}\n.icon-cast_connected:before {\n  content: \"\\e308\";\n}\n.icon-center_focus_strong:before {\n  content: \"\\e3b4\";\n}\n.icon-center_focus_weak:before {\n  content: \"\\e3b5\";\n}\n.icon-change_history:before {\n  content: \"\\e86b\";\n}\n.icon-chat:before {\n  content: \"\\e0b7\";\n}\n.icon-chat_bubble:before {\n  content: \"\\e0ca\";\n}\n.icon-chat_bubble_outline:before {\n  content: \"\\e0cb\";\n}\n.icon-check2:before {\n  content: \"\\e5ca\";\n}\n.icon-check_box:before {\n  content: \"\\e834\";\n}\n.icon-check_box_outline_blank:before {\n  content: \"\\e835\";\n}\n.icon-check_circle:before {\n  content: \"\\e86c\";\n}\n.icon-navigate_before:before {\n  content: \"\\e408\";\n}\n.icon-navigate_next:before {\n  content: \"\\e409\";\n}\n.icon-child_care:before {\n  content: \"\\eb41\";\n}\n.icon-child_friendly:before {\n  content: \"\\eb42\";\n}\n.icon-chrome_reader_mode:before {\n  content: \"\\e86d\";\n}\n.icon-close2:before {\n  content: \"\\e5cd\";\n}\n.icon-clear_all:before {\n  content: \"\\e0b8\";\n}\n.icon-closed_caption:before {\n  content: \"\\e01c\";\n}\n.icon-wb_cloudy:before {\n  content: \"\\e42d\";\n}\n.icon-cloud_circle:before {\n  content: \"\\e2be\";\n}\n.icon-cloud_done:before {\n  content: \"\\e2bf\";\n}\n.icon-cloud_download:before {\n  content: \"\\e2c0\";\n}\n.icon-cloud_off:before {\n  content: \"\\e2c1\";\n}\n.icon-cloud_queue:before {\n  content: \"\\e2c2\";\n}\n.icon-code2:before {\n  content: \"\\e86f\";\n}\n.icon-photo_library:before {\n  content: \"\\e413\";\n}\n.icon-collections_bookmark:before {\n  content: \"\\e431\";\n}\n.icon-palette:before {\n  content: \"\\e40a\";\n}\n.icon-colorize:before {\n  content: \"\\e3b8\";\n}\n.icon-comment2:before {\n  content: \"\\e0b9\";\n}\n.icon-compare:before {\n  content: \"\\e3b9\";\n}\n.icon-compare_arrows:before {\n  content: \"\\e915\";\n}\n.icon-laptop2:before {\n  content: \"\\e31e\";\n}\n.icon-confirmation_number:before {\n  content: \"\\e638\";\n}\n.icon-contact_mail:before {\n  content: \"\\e0d0\";\n}\n.icon-contact_phone:before {\n  content: \"\\e0cf\";\n}\n.icon-contacts:before {\n  content: \"\\e0ba\";\n}\n.icon-content_copy:before {\n  content: \"\\e14d\";\n}\n.icon-content_cut:before {\n  content: \"\\e14e\";\n}\n.icon-content_paste:before {\n  content: \"\\e14f\";\n}\n.icon-control_point_duplicate:before {\n  content: \"\\e3bb\";\n}\n.icon-copyright2:before {\n  content: \"\\e90c\";\n}\n.icon-mode_edit:before {\n  content: \"\\e254\";\n}\n.icon-create_new_folder:before {\n  content: \"\\e2cc\";\n}\n.icon-payment:before {\n  content: \"\\e8a1\";\n}\n.icon-crop2:before {\n  content: \"\\e3be\";\n}\n.icon-crop_16_9:before {\n  content: \"\\e3bc\";\n}\n.icon-crop_3_2:before {\n  content: \"\\e3bd\";\n}\n.icon-crop_landscape:before {\n  content: \"\\e3c3\";\n}\n.icon-crop_7_5:before {\n  content: \"\\e3c0\";\n}\n.icon-crop_din:before {\n  content: \"\\e3c1\";\n}\n.icon-crop_free:before {\n  content: \"\\e3c2\";\n}\n.icon-crop_original:before {\n  content: \"\\e3c4\";\n}\n.icon-crop_portrait:before {\n  content: \"\\e3c5\";\n}\n.icon-crop_rotate:before {\n  content: \"\\e437\";\n}\n.icon-crop_square:before {\n  content: \"\\e3c6\";\n}\n.icon-dashboard2:before {\n  content: \"\\e871\";\n}\n.icon-data_usage:before {\n  content: \"\\e1af\";\n}\n.icon-date_range:before {\n  content: \"\\e916\";\n}\n.icon-dehaze:before {\n  content: \"\\e3c7\";\n}\n.icon-delete:before {\n  content: \"\\e872\";\n}\n.icon-delete_forever:before {\n  content: \"\\e92b\";\n}\n.icon-delete_sweep:before {\n  content: \"\\e16c\";\n}\n.icon-description:before {\n  content: \"\\e873\";\n}\n.icon-desktop_mac:before {\n  content: \"\\e30b\";\n}\n.icon-desktop_windows:before {\n  content: \"\\e30c\";\n}\n.icon-details:before {\n  content: \"\\e3c8\";\n}\n.icon-developer_board:before {\n  content: \"\\e30d\";\n}\n.icon-developer_mode:before {\n  content: \"\\e1b0\";\n}\n.icon-device_hub:before {\n  content: \"\\e335\";\n}\n.icon-phonelink:before {\n  content: \"\\e326\";\n}\n.icon-devices_other:before {\n  content: \"\\e337\";\n}\n.icon-dialer_sip:before {\n  content: \"\\e0bb\";\n}\n.icon-dialpad:before {\n  content: \"\\e0bc\";\n}\n.icon-directions:before {\n  content: \"\\e52e\";\n}\n.icon-directions_bike:before {\n  content: \"\\e52f\";\n}\n.icon-directions_boat:before {\n  content: \"\\e532\";\n}\n.icon-directions_bus:before {\n  content: \"\\e530\";\n}\n.icon-directions_car:before {\n  content: \"\\e531\";\n}\n.icon-directions_railway:before {\n  content: \"\\e534\";\n}\n.icon-directions_run:before {\n  content: \"\\e566\";\n}\n.icon-directions_transit:before {\n  content: \"\\e535\";\n}\n.icon-directions_walk:before {\n  content: \"\\e536\";\n}\n.icon-disc_full:before {\n  content: \"\\e610\";\n}\n.icon-dns:before {\n  content: \"\\e875\";\n}\n.icon-not_interested:before {\n  content: \"\\e033\";\n}\n.icon-do_not_disturb_alt:before {\n  content: \"\\e611\";\n}\n.icon-do_not_disturb_off:before {\n  content: \"\\e643\";\n}\n.icon-remove_circle:before {\n  content: \"\\e15c\";\n}\n.icon-dock:before {\n  content: \"\\e30e\";\n}\n.icon-done:before {\n  content: \"\\e876\";\n}\n.icon-done_all:before {\n  content: \"\\e877\";\n}\n.icon-donut_large:before {\n  content: \"\\e917\";\n}\n.icon-donut_small:before {\n  content: \"\\e918\";\n}\n.icon-drafts:before {\n  content: \"\\e151\";\n}\n.icon-drag_handle:before {\n  content: \"\\e25d\";\n}\n.icon-time_to_leave:before {\n  content: \"\\e62c\";\n}\n.icon-dvr:before {\n  content: \"\\e1b2\";\n}\n.icon-edit_location:before {\n  content: \"\\e568\";\n}\n.icon-eject2:before {\n  content: \"\\e8fb\";\n}\n.icon-markunread:before {\n  content: \"\\e159\";\n}\n.icon-enhanced_encryption:before {\n  content: \"\\e63f\";\n}\n.icon-equalizer:before {\n  content: \"\\e01d\";\n}\n.icon-error:before {\n  content: \"\\e000\";\n}\n.icon-error_outline:before {\n  content: \"\\e001\";\n}\n.icon-euro_symbol:before {\n  content: \"\\e926\";\n}\n.icon-ev_station:before {\n  content: \"\\e56d\";\n}\n.icon-insert_invitation:before {\n  content: \"\\e24f\";\n}\n.icon-event_available:before {\n  content: \"\\e614\";\n}\n.icon-event_busy:before {\n  content: \"\\e615\";\n}\n.icon-event_note:before {\n  content: \"\\e616\";\n}\n.icon-event_seat:before {\n  content: \"\\e903\";\n}\n.icon-exit_to_app:before {\n  content: \"\\e879\";\n}\n.icon-expand_less:before {\n  content: \"\\e5ce\";\n}\n.icon-expand_more:before {\n  content: \"\\e5cf\";\n}\n.icon-explicit:before {\n  content: \"\\e01e\";\n}\n.icon-explore:before {\n  content: \"\\e87a\";\n}\n.icon-exposure:before {\n  content: \"\\e3ca\";\n}\n.icon-exposure_neg_1:before {\n  content: \"\\e3cb\";\n}\n.icon-exposure_neg_2:before {\n  content: \"\\e3cc\";\n}\n.icon-exposure_plus_1:before {\n  content: \"\\e3cd\";\n}\n.icon-exposure_plus_2:before {\n  content: \"\\e3ce\";\n}\n.icon-exposure_zero:before {\n  content: \"\\e3cf\";\n}\n.icon-extension:before {\n  content: \"\\e87b\";\n}\n.icon-face:before {\n  content: \"\\e87c\";\n}\n.icon-fast_forward:before {\n  content: \"\\e01f\";\n}\n.icon-fast_rewind:before {\n  content: \"\\e020\";\n}\n.icon-favorite:before {\n  content: \"\\e87d\";\n}\n.icon-favorite_border:before {\n  content: \"\\e87e\";\n}\n.icon-featured_play_list:before {\n  content: \"\\e06d\";\n}\n.icon-featured_video:before {\n  content: \"\\e06e\";\n}\n.icon-sms_failed:before {\n  content: \"\\e626\";\n}\n.icon-fiber_dvr:before {\n  content: \"\\e05d\";\n}\n.icon-fiber_manual_record:before {\n  content: \"\\e061\";\n}\n.icon-fiber_new:before {\n  content: \"\\e05e\";\n}\n.icon-fiber_pin:before {\n  content: \"\\e06a\";\n}\n.icon-fiber_smart_record:before {\n  content: \"\\e062\";\n}\n.icon-get_app:before {\n  content: \"\\e884\";\n}\n.icon-file_upload:before {\n  content: \"\\e2c6\";\n}\n.icon-filter2:before {\n  content: \"\\e3d3\";\n}\n.icon-filter_1:before {\n  content: \"\\e3d0\";\n}\n.icon-filter_2:before {\n  content: \"\\e3d1\";\n}\n.icon-filter_3:before {\n  content: \"\\e3d2\";\n}\n.icon-filter_4:before {\n  content: \"\\e3d4\";\n}\n.icon-filter_5:before {\n  content: \"\\e3d5\";\n}\n.icon-filter_6:before {\n  content: \"\\e3d6\";\n}\n.icon-filter_7:before {\n  content: \"\\e3d7\";\n}\n.icon-filter_8:before {\n  content: \"\\e3d8\";\n}\n.icon-filter_9:before {\n  content: \"\\e3d9\";\n}\n.icon-filter_9_plus:before {\n  content: \"\\e3da\";\n}\n.icon-filter_b_and_w:before {\n  content: \"\\e3db\";\n}\n.icon-filter_center_focus:before {\n  content: \"\\e3dc\";\n}\n.icon-filter_drama:before {\n  content: \"\\e3dd\";\n}\n.icon-filter_frames:before {\n  content: \"\\e3de\";\n}\n.icon-terrain:before {\n  content: \"\\e564\";\n}\n.icon-filter_list:before {\n  content: \"\\e152\";\n}\n.icon-filter_none:before {\n  content: \"\\e3e0\";\n}\n.icon-filter_tilt_shift:before {\n  content: \"\\e3e2\";\n}\n.icon-filter_vintage:before {\n  content: \"\\e3e3\";\n}\n.icon-find_in_page:before {\n  content: \"\\e880\";\n}\n.icon-find_replace:before {\n  content: \"\\e881\";\n}\n.icon-fingerprint:before {\n  content: \"\\e90d\";\n}\n.icon-first_page:before {\n  content: \"\\e5dc\";\n}\n.icon-fitness_center:before {\n  content: \"\\eb43\";\n}\n.icon-flare:before {\n  content: \"\\e3e4\";\n}\n.icon-flash_auto:before {\n  content: \"\\e3e5\";\n}\n.icon-flash_off:before {\n  content: \"\\e3e6\";\n}\n.icon-flash_on:before {\n  content: \"\\e3e7\";\n}\n.icon-flight_land:before {\n  content: \"\\e904\";\n}\n.icon-flight_takeoff:before {\n  content: \"\\e905\";\n}\n.icon-flip:before {\n  content: \"\\e3e8\";\n}\n.icon-flip_to_back:before {\n  content: \"\\e882\";\n}\n.icon-flip_to_front:before {\n  content: \"\\e883\";\n}\n.icon-folder2:before {\n  content: \"\\e2c7\";\n}\n.icon-folder_open:before {\n  content: \"\\e2c8\";\n}\n.icon-folder_shared:before {\n  content: \"\\e2c9\";\n}\n.icon-folder_special:before {\n  content: \"\\e617\";\n}\n.icon-font_download:before {\n  content: \"\\e167\";\n}\n.icon-format_align_center:before {\n  content: \"\\e234\";\n}\n.icon-format_align_justify:before {\n  content: \"\\e235\";\n}\n.icon-format_align_left:before {\n  content: \"\\e236\";\n}\n.icon-format_align_right:before {\n  content: \"\\e237\";\n}\n.icon-format_bold:before {\n  content: \"\\e238\";\n}\n.icon-format_clear:before {\n  content: \"\\e239\";\n}\n.icon-format_color_fill:before {\n  content: \"\\e23a\";\n}\n.icon-format_color_reset:before {\n  content: \"\\e23b\";\n}\n.icon-format_color_text:before {\n  content: \"\\e23c\";\n}\n.icon-format_indent_decrease:before {\n  content: \"\\e23d\";\n}\n.icon-format_indent_increase:before {\n  content: \"\\e23e\";\n}\n.icon-format_italic:before {\n  content: \"\\e23f\";\n}\n.icon-format_line_spacing:before {\n  content: \"\\e240\";\n}\n.icon-format_list_bulleted:before {\n  content: \"\\e241\";\n}\n.icon-format_list_numbered:before {\n  content: \"\\e242\";\n}\n.icon-format_paint:before {\n  content: \"\\e243\";\n}\n.icon-format_quote:before {\n  content: \"\\e244\";\n}\n.icon-format_shapes:before {\n  content: \"\\e25e\";\n}\n.icon-format_size:before {\n  content: \"\\e245\";\n}\n.icon-format_strikethrough:before {\n  content: \"\\e246\";\n}\n.icon-format_textdirection_l_to_r:before {\n  content: \"\\e247\";\n}\n.icon-format_textdirection_r_to_l:before {\n  content: \"\\e248\";\n}\n.icon-format_underlined:before {\n  content: \"\\e249\";\n}\n.icon-question_answer:before {\n  content: \"\\e8af\";\n}\n.icon-forward2:before {\n  content: \"\\e154\";\n}\n.icon-forward_10:before {\n  content: \"\\e056\";\n}\n.icon-forward_30:before {\n  content: \"\\e057\";\n}\n.icon-forward_5:before {\n  content: \"\\e058\";\n}\n.icon-free_breakfast:before {\n  content: \"\\eb44\";\n}\n.icon-fullscreen:before {\n  content: \"\\e5d0\";\n}\n.icon-fullscreen_exit:before {\n  content: \"\\e5d1\";\n}\n.icon-functions:before {\n  content: \"\\e24a\";\n}\n.icon-g_translate:before {\n  content: \"\\e927\";\n}\n.icon-games:before {\n  content: \"\\e021\";\n}\n.icon-gavel2:before {\n  content: \"\\e90e\";\n}\n.icon-gesture:before {\n  content: \"\\e155\";\n}\n.icon-gif:before {\n  content: \"\\e908\";\n}\n.icon-goat:before {\n  content: \"\\e900\";\n}\n.icon-golf_course:before {\n  content: \"\\eb45\";\n}\n.icon-my_location:before {\n  content: \"\\e55c\";\n}\n.icon-location_searching:before {\n  content: \"\\e1b7\";\n}\n.icon-location_disabled:before {\n  content: \"\\e1b6\";\n}\n.icon-star2:before {\n  content: \"\\e838\";\n}\n.icon-gradient:before {\n  content: \"\\e3e9\";\n}\n.icon-grain:before {\n  content: \"\\e3ea\";\n}\n.icon-graphic_eq:before {\n  content: \"\\e1b8\";\n}\n.icon-grid_off:before {\n  content: \"\\e3eb\";\n}\n.icon-grid_on:before {\n  content: \"\\e3ec\";\n}\n.icon-people:before {\n  content: \"\\e7fb\";\n}\n.icon-group_add:before {\n  content: \"\\e7f0\";\n}\n.icon-group_work:before {\n  content: \"\\e886\";\n}\n.icon-hd:before {\n  content: \"\\e052\";\n}\n.icon-hdr_off:before {\n  content: \"\\e3ed\";\n}\n.icon-hdr_on:before {\n  content: \"\\e3ee\";\n}\n.icon-hdr_strong:before {\n  content: \"\\e3f1\";\n}\n.icon-hdr_weak:before {\n  content: \"\\e3f2\";\n}\n.icon-headset:before {\n  content: \"\\e310\";\n}\n.icon-headset_mic:before {\n  content: \"\\e311\";\n}\n.icon-healing:before {\n  content: \"\\e3f3\";\n}\n.icon-hearing:before {\n  content: \"\\e023\";\n}\n.icon-help:before {\n  content: \"\\e887\";\n}\n.icon-help_outline:before {\n  content: \"\\e8fd\";\n}\n.icon-high_quality:before {\n  content: \"\\e024\";\n}\n.icon-highlight:before {\n  content: \"\\e25f\";\n}\n.icon-highlight_off:before {\n  content: \"\\e888\";\n}\n.icon-restore:before {\n  content: \"\\e8b3\";\n}\n.icon-home2:before {\n  content: \"\\e88a\";\n}\n.icon-hot_tub:before {\n  content: \"\\eb46\";\n}\n.icon-local_hotel:before {\n  content: \"\\e549\";\n}\n.icon-hourglass_empty:before {\n  content: \"\\e88b\";\n}\n.icon-hourglass_full:before {\n  content: \"\\e88c\";\n}\n.icon-http:before {\n  content: \"\\e902\";\n}\n.icon-lock2:before {\n  content: \"\\e897\";\n}\n.icon-photo2:before {\n  content: \"\\e410\";\n}\n.icon-image_aspect_ratio:before {\n  content: \"\\e3f5\";\n}\n.icon-import_contacts:before {\n  content: \"\\e0e0\";\n}\n.icon-import_export:before {\n  content: \"\\e0c3\";\n}\n.icon-important_devices:before {\n  content: \"\\e912\";\n}\n.icon-inbox2:before {\n  content: \"\\e156\";\n}\n.icon-indeterminate_check_box:before {\n  content: \"\\e909\";\n}\n.icon-info2:before {\n  content: \"\\e88e\";\n}\n.icon-info_outline:before {\n  content: \"\\e88f\";\n}\n.icon-input:before {\n  content: \"\\e890\";\n}\n.icon-insert_comment:before {\n  content: \"\\e24c\";\n}\n.icon-insert_drive_file:before {\n  content: \"\\e24d\";\n}\n.icon-tag_faces:before {\n  content: \"\\e420\";\n}\n.icon-link2:before {\n  content: \"\\e157\";\n}\n.icon-invert_colors:before {\n  content: \"\\e891\";\n}\n.icon-invert_colors_off:before {\n  content: \"\\e0c4\";\n}\n.icon-iso:before {\n  content: \"\\e3f6\";\n}\n.icon-keyboard:before {\n  content: \"\\e312\";\n}\n.icon-keyboard_arrow_down:before {\n  content: \"\\e313\";\n}\n.icon-keyboard_arrow_left:before {\n  content: \"\\e314\";\n}\n.icon-keyboard_arrow_right:before {\n  content: \"\\e315\";\n}\n.icon-keyboard_arrow_up:before {\n  content: \"\\e316\";\n}\n.icon-keyboard_backspace:before {\n  content: \"\\e317\";\n}\n.icon-keyboard_capslock:before {\n  content: \"\\e318\";\n}\n.icon-keyboard_hide:before {\n  content: \"\\e31a\";\n}\n.icon-keyboard_return:before {\n  content: \"\\e31b\";\n}\n.icon-keyboard_tab:before {\n  content: \"\\e31c\";\n}\n.icon-keyboard_voice:before {\n  content: \"\\e31d\";\n}\n.icon-kitchen:before {\n  content: \"\\eb47\";\n}\n.icon-label:before {\n  content: \"\\e892\";\n}\n.icon-label_outline:before {\n  content: \"\\e893\";\n}\n.icon-language2:before {\n  content: \"\\e894\";\n}\n.icon-laptop_chromebook:before {\n  content: \"\\e31f\";\n}\n.icon-laptop_mac:before {\n  content: \"\\e320\";\n}\n.icon-laptop_windows:before {\n  content: \"\\e321\";\n}\n.icon-last_page:before {\n  content: \"\\e5dd\";\n}\n.icon-open_in_new:before {\n  content: \"\\e89e\";\n}\n.icon-layers:before {\n  content: \"\\e53b\";\n}\n.icon-layers_clear:before {\n  content: \"\\e53c\";\n}\n.icon-leak_add:before {\n  content: \"\\e3f8\";\n}\n.icon-leak_remove:before {\n  content: \"\\e3f9\";\n}\n.icon-lens:before {\n  content: \"\\e3fa\";\n}\n.icon-library_books:before {\n  content: \"\\e02f\";\n}\n.icon-library_music:before {\n  content: \"\\e030\";\n}\n.icon-lightbulb_outline:before {\n  content: \"\\e90f\";\n}\n.icon-line_style:before {\n  content: \"\\e919\";\n}\n.icon-line_weight:before {\n  content: \"\\e91a\";\n}\n.icon-linear_scale:before {\n  content: \"\\e260\";\n}\n.icon-linked_camera:before {\n  content: \"\\e438\";\n}\n.icon-list2:before {\n  content: \"\\e896\";\n}\n.icon-live_help:before {\n  content: \"\\e0c6\";\n}\n.icon-live_tv:before {\n  content: \"\\e639\";\n}\n.icon-local_play:before {\n  content: \"\\e553\";\n}\n.icon-local_airport:before {\n  content: \"\\e53d\";\n}\n.icon-local_atm:before {\n  content: \"\\e53e\";\n}\n.icon-local_bar:before {\n  content: \"\\e540\";\n}\n.icon-local_cafe:before {\n  content: \"\\e541\";\n}\n.icon-local_car_wash:before {\n  content: \"\\e542\";\n}\n.icon-local_convenience_store:before {\n  content: \"\\e543\";\n}\n.icon-restaurant_menu:before {\n  content: \"\\e561\";\n}\n.icon-local_drink:before {\n  content: \"\\e544\";\n}\n.icon-local_florist:before {\n  content: \"\\e545\";\n}\n.icon-local_gas_station:before {\n  content: \"\\e546\";\n}\n.icon-shopping_cart:before {\n  content: \"\\e8cc\";\n}\n.icon-local_hospital:before {\n  content: \"\\e548\";\n}\n.icon-local_laundry_service:before {\n  content: \"\\e54a\";\n}\n.icon-local_library:before {\n  content: \"\\e54b\";\n}\n.icon-local_mall:before {\n  content: \"\\e54c\";\n}\n.icon-theaters:before {\n  content: \"\\e8da\";\n}\n.icon-local_offer:before {\n  content: \"\\e54e\";\n}\n.icon-local_parking:before {\n  content: \"\\e54f\";\n}\n.icon-local_pharmacy:before {\n  content: \"\\e550\";\n}\n.icon-local_pizza:before {\n  content: \"\\e552\";\n}\n.icon-print2:before {\n  content: \"\\e8ad\";\n}\n.icon-local_shipping:before {\n  content: \"\\e558\";\n}\n.icon-local_taxi:before {\n  content: \"\\e559\";\n}\n.icon-location_city:before {\n  content: \"\\e7f1\";\n}\n.icon-location_off:before {\n  content: \"\\e0c7\";\n}\n.icon-room:before {\n  content: \"\\e8b4\";\n}\n.icon-lock_open:before {\n  content: \"\\e898\";\n}\n.icon-lock_outline:before {\n  content: \"\\e899\";\n}\n.icon-looks:before {\n  content: \"\\e3fc\";\n}\n.icon-looks_3:before {\n  content: \"\\e3fb\";\n}\n.icon-looks_4:before {\n  content: \"\\e3fd\";\n}\n.icon-looks_5:before {\n  content: \"\\e3fe\";\n}\n.icon-looks_6:before {\n  content: \"\\e3ff\";\n}\n.icon-looks_one:before {\n  content: \"\\e400\";\n}\n.icon-looks_two:before {\n  content: \"\\e401\";\n}\n.icon-sync:before {\n  content: \"\\e627\";\n}\n.icon-loupe:before {\n  content: \"\\e402\";\n}\n.icon-low_priority:before {\n  content: \"\\e16d\";\n}\n.icon-loyalty:before {\n  content: \"\\e89a\";\n}\n.icon-mail_outline:before {\n  content: \"\\e0e1\";\n}\n.icon-map2:before {\n  content: \"\\e55b\";\n}\n.icon-markunread_mailbox:before {\n  content: \"\\e89b\";\n}\n.icon-memory:before {\n  content: \"\\e322\";\n}\n.icon-menu:before {\n  content: \"\\e5d2\";\n}\n.icon-message:before {\n  content: \"\\e0c9\";\n}\n.icon-mic:before {\n  content: \"\\e029\";\n}\n.icon-mic_none:before {\n  content: \"\\e02a\";\n}\n.icon-mic_off:before {\n  content: \"\\e02b\";\n}\n.icon-mms:before {\n  content: \"\\e618\";\n}\n.icon-mode_comment:before {\n  content: \"\\e253\";\n}\n.icon-monetization_on:before {\n  content: \"\\e263\";\n}\n.icon-money_off:before {\n  content: \"\\e25c\";\n}\n.icon-monochrome_photos:before {\n  content: \"\\e403\";\n}\n.icon-mood_bad:before {\n  content: \"\\e7f3\";\n}\n.icon-more:before {\n  content: \"\\e619\";\n}\n.icon-more_horiz:before {\n  content: \"\\e5d3\";\n}\n.icon-more_vert:before {\n  content: \"\\e5d4\";\n}\n.icon-motorcycle2:before {\n  content: \"\\e91b\";\n}\n.icon-mouse:before {\n  content: \"\\e323\";\n}\n.icon-move_to_inbox:before {\n  content: \"\\e168\";\n}\n.icon-movie_creation:before {\n  content: \"\\e404\";\n}\n.icon-movie_filter:before {\n  content: \"\\e43a\";\n}\n.icon-multiline_chart:before {\n  content: \"\\e6df\";\n}\n.icon-music_note:before {\n  content: \"\\e405\";\n}\n.icon-music_video:before {\n  content: \"\\e063\";\n}\n.icon-nature:before {\n  content: \"\\e406\";\n}\n.icon-nature_people:before {\n  content: \"\\e407\";\n}\n.icon-navigation:before {\n  content: \"\\e55d\";\n}\n.icon-near_me:before {\n  content: \"\\e569\";\n}\n.icon-network_cell:before {\n  content: \"\\e1b9\";\n}\n.icon-network_check:before {\n  content: \"\\e640\";\n}\n.icon-network_locked:before {\n  content: \"\\e61a\";\n}\n.icon-network_wifi:before {\n  content: \"\\e1ba\";\n}\n.icon-new_releases:before {\n  content: \"\\e031\";\n}\n.icon-next_week:before {\n  content: \"\\e16a\";\n}\n.icon-nfc:before {\n  content: \"\\e1bb\";\n}\n.icon-no_encryption:before {\n  content: \"\\e641\";\n}\n.icon-signal_cellular_no_sim:before {\n  content: \"\\e1ce\";\n}\n.icon-note:before {\n  content: \"\\e06f\";\n}\n.icon-note_add:before {\n  content: \"\\e89c\";\n}\n.icon-notifications:before {\n  content: \"\\e7f4\";\n}\n.icon-notifications_active:before {\n  content: \"\\e7f7\";\n}\n.icon-notifications_none:before {\n  content: \"\\e7f5\";\n}\n.icon-notifications_off:before {\n  content: \"\\e7f6\";\n}\n.icon-notifications_paused:before {\n  content: \"\\e7f8\";\n}\n.icon-offline_pin:before {\n  content: \"\\e90a\";\n}\n.icon-ondemand_video:before {\n  content: \"\\e63a\";\n}\n.icon-opacity:before {\n  content: \"\\e91c\";\n}\n.icon-open_in_browser:before {\n  content: \"\\e89d\";\n}\n.icon-open_with:before {\n  content: \"\\e89f\";\n}\n.icon-pages:before {\n  content: \"\\e7f9\";\n}\n.icon-pageview:before {\n  content: \"\\e8a0\";\n}\n.icon-pan_tool:before {\n  content: \"\\e925\";\n}\n.icon-panorama:before {\n  content: \"\\e40b\";\n}\n.icon-radio_button_unchecked:before {\n  content: \"\\e836\";\n}\n.icon-panorama_horizontal:before {\n  content: \"\\e40d\";\n}\n.icon-panorama_vertical:before {\n  content: \"\\e40e\";\n}\n.icon-panorama_wide_angle:before {\n  content: \"\\e40f\";\n}\n.icon-party_mode:before {\n  content: \"\\e7fa\";\n}\n.icon-pause2:before {\n  content: \"\\e034\";\n}\n.icon-pause_circle_filled:before {\n  content: \"\\e035\";\n}\n.icon-pause_circle_outline:before {\n  content: \"\\e036\";\n}\n.icon-people_outline:before {\n  content: \"\\e7fc\";\n}\n.icon-perm_camera_mic:before {\n  content: \"\\e8a2\";\n}\n.icon-perm_contact_calendar:before {\n  content: \"\\e8a3\";\n}\n.icon-perm_data_setting:before {\n  content: \"\\e8a4\";\n}\n.icon-perm_device_information:before {\n  content: \"\\e8a5\";\n}\n.icon-person_outline:before {\n  content: \"\\e7ff\";\n}\n.icon-perm_media:before {\n  content: \"\\e8a7\";\n}\n.icon-perm_phone_msg:before {\n  content: \"\\e8a8\";\n}\n.icon-perm_scan_wifi:before {\n  content: \"\\e8a9\";\n}\n.icon-person:before {\n  content: \"\\e7fd\";\n}\n.icon-person_add:before {\n  content: \"\\e7fe\";\n}\n.icon-person_pin:before {\n  content: \"\\e55a\";\n}\n.icon-person_pin_circle:before {\n  content: \"\\e56a\";\n}\n.icon-personal_video:before {\n  content: \"\\e63b\";\n}\n.icon-pets:before {\n  content: \"\\e91d\";\n}\n.icon-phone_android:before {\n  content: \"\\e324\";\n}\n.icon-phone_bluetooth_speaker:before {\n  content: \"\\e61b\";\n}\n.icon-phone_forwarded:before {\n  content: \"\\e61c\";\n}\n.icon-phone_in_talk:before {\n  content: \"\\e61d\";\n}\n.icon-phone_iphone:before {\n  content: \"\\e325\";\n}\n.icon-phone_locked:before {\n  content: \"\\e61e\";\n}\n.icon-phone_missed:before {\n  content: \"\\e61f\";\n}\n.icon-phone_paused:before {\n  content: \"\\e620\";\n}\n.icon-phonelink_erase:before {\n  content: \"\\e0db\";\n}\n.icon-phonelink_lock:before {\n  content: \"\\e0dc\";\n}\n.icon-phonelink_off:before {\n  content: \"\\e327\";\n}\n.icon-phonelink_ring:before {\n  content: \"\\e0dd\";\n}\n.icon-phonelink_setup:before {\n  content: \"\\e0de\";\n}\n.icon-photo_album:before {\n  content: \"\\e411\";\n}\n.icon-photo_filter:before {\n  content: \"\\e43b\";\n}\n.icon-photo_size_select_actual:before {\n  content: \"\\e432\";\n}\n.icon-photo_size_select_large:before {\n  content: \"\\e433\";\n}\n.icon-photo_size_select_small:before {\n  content: \"\\e434\";\n}\n.icon-picture_as_pdf:before {\n  content: \"\\e415\";\n}\n.icon-picture_in_picture:before {\n  content: \"\\e8aa\";\n}\n.icon-picture_in_picture_alt:before {\n  content: \"\\e911\";\n}\n.icon-pie_chart:before {\n  content: \"\\e6c4\";\n}\n.icon-pie_chart_outlined:before {\n  content: \"\\e6c5\";\n}\n.icon-pin_drop:before {\n  content: \"\\e55e\";\n}\n.icon-play_arrow:before {\n  content: \"\\e037\";\n}\n.icon-play_circle_filled:before {\n  content: \"\\e038\";\n}\n.icon-play_circle_outline:before {\n  content: \"\\e039\";\n}\n.icon-play_for_work:before {\n  content: \"\\e906\";\n}\n.icon-playlist_add:before {\n  content: \"\\e03b\";\n}\n.icon-playlist_add_check:before {\n  content: \"\\e065\";\n}\n.icon-playlist_play:before {\n  content: \"\\e05f\";\n}\n.icon-plus_one:before {\n  content: \"\\e800\";\n}\n.icon-polymer:before {\n  content: \"\\e8ab\";\n}\n.icon-pool:before {\n  content: \"\\eb48\";\n}\n.icon-portable_wifi_off:before {\n  content: \"\\e0ce\";\n}\n.icon-portrait:before {\n  content: \"\\e416\";\n}\n.icon-power:before {\n  content: \"\\e63c\";\n}\n.icon-power_input:before {\n  content: \"\\e336\";\n}\n.icon-power_settings_new:before {\n  content: \"\\e8ac\";\n}\n.icon-pregnant_woman:before {\n  content: \"\\e91e\";\n}\n.icon-present_to_all:before {\n  content: \"\\e0df\";\n}\n.icon-priority_high:before {\n  content: \"\\e645\";\n}\n.icon-public:before {\n  content: \"\\e80b\";\n}\n.icon-publish:before {\n  content: \"\\e255\";\n}\n.icon-queue_music:before {\n  content: \"\\e03d\";\n}\n.icon-queue_play_next:before {\n  content: \"\\e066\";\n}\n.icon-radio:before {\n  content: \"\\e03e\";\n}\n.icon-radio_button_checked:before {\n  content: \"\\e837\";\n}\n.icon-rate_review:before {\n  content: \"\\e560\";\n}\n.icon-receipt:before {\n  content: \"\\e8b0\";\n}\n.icon-recent_actors:before {\n  content: \"\\e03f\";\n}\n.icon-record_voice_over:before {\n  content: \"\\e91f\";\n}\n.icon-redo:before {\n  content: \"\\e15a\";\n}\n.icon-refresh2:before {\n  content: \"\\e5d5\";\n}\n.icon-remove2:before {\n  content: \"\\e15b\";\n}\n.icon-remove_circle_outline:before {\n  content: \"\\e15d\";\n}\n.icon-remove_from_queue:before {\n  content: \"\\e067\";\n}\n.icon-visibility:before {\n  content: \"\\e8f4\";\n}\n.icon-remove_shopping_cart:before {\n  content: \"\\e928\";\n}\n.icon-reorder2:before {\n  content: \"\\e8fe\";\n}\n.icon-repeat2:before {\n  content: \"\\e040\";\n}\n.icon-repeat_one:before {\n  content: \"\\e041\";\n}\n.icon-replay:before {\n  content: \"\\e042\";\n}\n.icon-replay_10:before {\n  content: \"\\e059\";\n}\n.icon-replay_30:before {\n  content: \"\\e05a\";\n}\n.icon-replay_5:before {\n  content: \"\\e05b\";\n}\n.icon-reply2:before {\n  content: \"\\e15e\";\n}\n.icon-reply_all:before {\n  content: \"\\e15f\";\n}\n.icon-report:before {\n  content: \"\\e160\";\n}\n.icon-warning2:before {\n  content: \"\\e002\";\n}\n.icon-restaurant:before {\n  content: \"\\e56c\";\n}\n.icon-restore_page:before {\n  content: \"\\e929\";\n}\n.icon-ring_volume:before {\n  content: \"\\e0d1\";\n}\n.icon-room_service:before {\n  content: \"\\eb49\";\n}\n.icon-rotate_90_degrees_ccw:before {\n  content: \"\\e418\";\n}\n.icon-rotate_left:before {\n  content: \"\\e419\";\n}\n.icon-rotate_right:before {\n  content: \"\\e41a\";\n}\n.icon-rounded_corner:before {\n  content: \"\\e920\";\n}\n.icon-router:before {\n  content: \"\\e328\";\n}\n.icon-rowing:before {\n  content: \"\\e921\";\n}\n.icon-rss_feed:before {\n  content: \"\\e0e5\";\n}\n.icon-rv_hookup:before {\n  content: \"\\e642\";\n}\n.icon-satellite:before {\n  content: \"\\e562\";\n}\n.icon-save2:before {\n  content: \"\\e161\";\n}\n.icon-scanner:before {\n  content: \"\\e329\";\n}\n.icon-school:before {\n  content: \"\\e80c\";\n}\n.icon-screen_lock_landscape:before {\n  content: \"\\e1be\";\n}\n.icon-screen_lock_portrait:before {\n  content: \"\\e1bf\";\n}\n.icon-screen_lock_rotation:before {\n  content: \"\\e1c0\";\n}\n.icon-screen_rotation:before {\n  content: \"\\e1c1\";\n}\n.icon-screen_share:before {\n  content: \"\\e0e2\";\n}\n.icon-sd_storage:before {\n  content: \"\\e1c2\";\n}\n.icon-search2:before {\n  content: \"\\e8b6\";\n}\n.icon-security:before {\n  content: \"\\e32a\";\n}\n.icon-select_all:before {\n  content: \"\\e162\";\n}\n.icon-send2:before {\n  content: \"\\e163\";\n}\n.icon-sentiment_dissatisfied:before {\n  content: \"\\e811\";\n}\n.icon-sentiment_neutral:before {\n  content: \"\\e812\";\n}\n.icon-sentiment_satisfied:before {\n  content: \"\\e813\";\n}\n.icon-sentiment_very_dissatisfied:before {\n  content: \"\\e814\";\n}\n.icon-sentiment_very_satisfied:before {\n  content: \"\\e815\";\n}\n.icon-settings:before {\n  content: \"\\e8b8\";\n}\n.icon-settings_applications:before {\n  content: \"\\e8b9\";\n}\n.icon-settings_backup_restore:before {\n  content: \"\\e8ba\";\n}\n.icon-settings_bluetooth:before {\n  content: \"\\e8bb\";\n}\n.icon-settings_brightness:before {\n  content: \"\\e8bd\";\n}\n.icon-settings_cell:before {\n  content: \"\\e8bc\";\n}\n.icon-settings_ethernet:before {\n  content: \"\\e8be\";\n}\n.icon-settings_input_antenna:before {\n  content: \"\\e8bf\";\n}\n.icon-settings_input_composite:before {\n  content: \"\\e8c1\";\n}\n.icon-settings_input_hdmi:before {\n  content: \"\\e8c2\";\n}\n.icon-settings_input_svideo:before {\n  content: \"\\e8c3\";\n}\n.icon-settings_overscan:before {\n  content: \"\\e8c4\";\n}\n.icon-settings_phone:before {\n  content: \"\\e8c5\";\n}\n.icon-settings_power:before {\n  content: \"\\e8c6\";\n}\n.icon-settings_remote:before {\n  content: \"\\e8c7\";\n}\n.icon-settings_system_daydream:before {\n  content: \"\\e1c3\";\n}\n.icon-settings_voice:before {\n  content: \"\\e8c8\";\n}\n.icon-share2:before {\n  content: \"\\e80d\";\n}\n.icon-shop:before {\n  content: \"\\e8c9\";\n}\n.icon-shop_two:before {\n  content: \"\\e8ca\";\n}\n.icon-shopping_basket:before {\n  content: \"\\e8cb\";\n}\n.icon-short_text:before {\n  content: \"\\e261\";\n}\n.icon-show_chart:before {\n  content: \"\\e6e1\";\n}\n.icon-shuffle:before {\n  content: \"\\e043\";\n}\n.icon-signal_cellular_4_bar:before {\n  content: \"\\e1c8\";\n}\n.icon-signal_cellular_connected_no_internet_4_bar:before {\n  content: \"\\e1cd\";\n}\n.icon-signal_cellular_null:before {\n  content: \"\\e1cf\";\n}\n.icon-signal_cellular_off:before {\n  content: \"\\e1d0\";\n}\n.icon-signal_wifi_4_bar:before {\n  content: \"\\e1d8\";\n}\n.icon-signal_wifi_4_bar_lock:before {\n  content: \"\\e1d9\";\n}\n.icon-signal_wifi_off:before {\n  content: \"\\e1da\";\n}\n.icon-sim_card:before {\n  content: \"\\e32b\";\n}\n.icon-sim_card_alert:before {\n  content: \"\\e624\";\n}\n.icon-skip_next:before {\n  content: \"\\e044\";\n}\n.icon-skip_previous:before {\n  content: \"\\e045\";\n}\n.icon-slideshow:before {\n  content: \"\\e41b\";\n}\n.icon-slow_motion_video:before {\n  content: \"\\e068\";\n}\n.icon-stay_primary_portrait:before {\n  content: \"\\e0d6\";\n}\n.icon-smoke_free:before {\n  content: \"\\eb4a\";\n}\n.icon-smoking_rooms:before {\n  content: \"\\eb4b\";\n}\n.icon-textsms:before {\n  content: \"\\e0d8\";\n}\n.icon-snooze:before {\n  content: \"\\e046\";\n}\n.icon-sort2:before {\n  content: \"\\e164\";\n}\n.icon-sort_by_alpha:before {\n  content: \"\\e053\";\n}\n.icon-spa:before {\n  content: \"\\eb4c\";\n}\n.icon-space_bar:before {\n  content: \"\\e256\";\n}\n.icon-speaker:before {\n  content: \"\\e32d\";\n}\n.icon-speaker_group:before {\n  content: \"\\e32e\";\n}\n.icon-speaker_notes:before {\n  content: \"\\e8cd\";\n}\n.icon-speaker_notes_off:before {\n  content: \"\\e92a\";\n}\n.icon-speaker_phone:before {\n  content: \"\\e0d2\";\n}\n.icon-spellcheck:before {\n  content: \"\\e8ce\";\n}\n.icon-star_border:before {\n  content: \"\\e83a\";\n}\n.icon-star_half:before {\n  content: \"\\e839\";\n}\n.icon-stars:before {\n  content: \"\\e8d0\";\n}\n.icon-stay_primary_landscape:before {\n  content: \"\\e0d5\";\n}\n.icon-stop2:before {\n  content: \"\\e047\";\n}\n.icon-stop_screen_share:before {\n  content: \"\\e0e3\";\n}\n.icon-storage:before {\n  content: \"\\e1db\";\n}\n.icon-store_mall_directory:before {\n  content: \"\\e563\";\n}\n.icon-straighten:before {\n  content: \"\\e41c\";\n}\n.icon-streetview:before {\n  content: \"\\e56e\";\n}\n.icon-strikethrough_s:before {\n  content: \"\\e257\";\n}\n.icon-style:before {\n  content: \"\\e41d\";\n}\n.icon-subdirectory_arrow_left:before {\n  content: \"\\e5d9\";\n}\n.icon-subdirectory_arrow_right:before {\n  content: \"\\e5da\";\n}\n.icon-subject:before {\n  content: \"\\e8d2\";\n}\n.icon-subscriptions:before {\n  content: \"\\e064\";\n}\n.icon-subtitles:before {\n  content: \"\\e048\";\n}\n.icon-subway2:before {\n  content: \"\\e56f\";\n}\n.icon-supervisor_account:before {\n  content: \"\\e8d3\";\n}\n.icon-surround_sound:before {\n  content: \"\\e049\";\n}\n.icon-swap_calls:before {\n  content: \"\\e0d7\";\n}\n.icon-swap_horiz:before {\n  content: \"\\e8d4\";\n}\n.icon-swap_vert:before {\n  content: \"\\e8d5\";\n}\n.icon-swap_vertical_circle:before {\n  content: \"\\e8d6\";\n}\n.icon-switch_camera:before {\n  content: \"\\e41e\";\n}\n.icon-switch_video:before {\n  content: \"\\e41f\";\n}\n.icon-sync_disabled:before {\n  content: \"\\e628\";\n}\n.icon-sync_problem:before {\n  content: \"\\e629\";\n}\n.icon-system_update:before {\n  content: \"\\e62a\";\n}\n.icon-system_update_alt:before {\n  content: \"\\e8d7\";\n}\n.icon-tab:before {\n  content: \"\\e8d8\";\n}\n.icon-tab_unselected:before {\n  content: \"\\e8d9\";\n}\n.icon-tablet2:before {\n  content: \"\\e32f\";\n}\n.icon-tablet_android:before {\n  content: \"\\e330\";\n}\n.icon-tablet_mac:before {\n  content: \"\\e331\";\n}\n.icon-tap_and_play:before {\n  content: \"\\e62b\";\n}\n.icon-text_fields:before {\n  content: \"\\e262\";\n}\n.icon-text_format:before {\n  content: \"\\e165\";\n}\n.icon-texture:before {\n  content: \"\\e421\";\n}\n.icon-thumb_down:before {\n  content: \"\\e8db\";\n}\n.icon-thumb_up:before {\n  content: \"\\e8dc\";\n}\n.icon-thumbs_up_down:before {\n  content: \"\\e8dd\";\n}\n.icon-timelapse:before {\n  content: \"\\e422\";\n}\n.icon-timeline:before {\n  content: \"\\e922\";\n}\n.icon-timer:before {\n  content: \"\\e425\";\n}\n.icon-timer_10:before {\n  content: \"\\e423\";\n}\n.icon-timer_3:before {\n  content: \"\\e424\";\n}\n.icon-timer_off:before {\n  content: \"\\e426\";\n}\n.icon-title:before {\n  content: \"\\e264\";\n}\n.icon-toc:before {\n  content: \"\\e8de\";\n}\n.icon-today:before {\n  content: \"\\e8df\";\n}\n.icon-toll:before {\n  content: \"\\e8e0\";\n}\n.icon-tonality:before {\n  content: \"\\e427\";\n}\n.icon-touch_app:before {\n  content: \"\\e913\";\n}\n.icon-toys:before {\n  content: \"\\e332\";\n}\n.icon-track_changes:before {\n  content: \"\\e8e1\";\n}\n.icon-traffic:before {\n  content: \"\\e565\";\n}\n.icon-train2:before {\n  content: \"\\e570\";\n}\n.icon-tram:before {\n  content: \"\\e571\";\n}\n.icon-transfer_within_a_station:before {\n  content: \"\\e572\";\n}\n.icon-transform:before {\n  content: \"\\e428\";\n}\n.icon-translate:before {\n  content: \"\\e8e2\";\n}\n.icon-trending_down:before {\n  content: \"\\e8e3\";\n}\n.icon-trending_flat:before {\n  content: \"\\e8e4\";\n}\n.icon-trending_up:before {\n  content: \"\\e8e5\";\n}\n.icon-tune:before {\n  content: \"\\e429\";\n}\n.icon-tv2:before {\n  content: \"\\e333\";\n}\n.icon-unarchive:before {\n  content: \"\\e169\";\n}\n.icon-undo2:before {\n  content: \"\\e166\";\n}\n.icon-unfold_less:before {\n  content: \"\\e5d6\";\n}\n.icon-unfold_more:before {\n  content: \"\\e5d7\";\n}\n.icon-update:before {\n  content: \"\\e923\";\n}\n.icon-usb2:before {\n  content: \"\\e1e0\";\n}\n.icon-verified_user:before {\n  content: \"\\e8e8\";\n}\n.icon-vertical_align_bottom:before {\n  content: \"\\e258\";\n}\n.icon-vertical_align_center:before {\n  content: \"\\e259\";\n}\n.icon-vertical_align_top:before {\n  content: \"\\e25a\";\n}\n.icon-vibration:before {\n  content: \"\\e62d\";\n}\n.icon-video_call:before {\n  content: \"\\e070\";\n}\n.icon-video_label:before {\n  content: \"\\e071\";\n}\n.icon-video_library:before {\n  content: \"\\e04a\";\n}\n.icon-videocam:before {\n  content: \"\\e04b\";\n}\n.icon-videocam_off:before {\n  content: \"\\e04c\";\n}\n.icon-videogame_asset:before {\n  content: \"\\e338\";\n}\n.icon-view_agenda:before {\n  content: \"\\e8e9\";\n}\n.icon-view_array:before {\n  content: \"\\e8ea\";\n}\n.icon-view_carousel:before {\n  content: \"\\e8eb\";\n}\n.icon-view_column:before {\n  content: \"\\e8ec\";\n}\n.icon-view_comfy:before {\n  content: \"\\e42a\";\n}\n.icon-view_compact:before {\n  content: \"\\e42b\";\n}\n.icon-view_day:before {\n  content: \"\\e8ed\";\n}\n.icon-view_headline:before {\n  content: \"\\e8ee\";\n}\n.icon-view_list:before {\n  content: \"\\e8ef\";\n}\n.icon-view_module:before {\n  content: \"\\e8f0\";\n}\n.icon-view_quilt:before {\n  content: \"\\e8f1\";\n}\n.icon-view_stream:before {\n  content: \"\\e8f2\";\n}\n.icon-view_week:before {\n  content: \"\\e8f3\";\n}\n.icon-vignette:before {\n  content: \"\\e435\";\n}\n.icon-visibility_off:before {\n  content: \"\\e8f5\";\n}\n.icon-voice_chat:before {\n  content: \"\\e62e\";\n}\n.icon-voicemail:before {\n  content: \"\\e0d9\";\n}\n.icon-volume_down:before {\n  content: \"\\e04d\";\n}\n.icon-volume_mute:before {\n  content: \"\\e04e\";\n}\n.icon-volume_off:before {\n  content: \"\\e04f\";\n}\n.icon-volume_up:before {\n  content: \"\\e050\";\n}\n.icon-vpn_key:before {\n  content: \"\\e0da\";\n}\n.icon-vpn_lock:before {\n  content: \"\\e62f\";\n}\n.icon-wallpaper:before {\n  content: \"\\e1bc\";\n}\n.icon-watch:before {\n  content: \"\\e334\";\n}\n.icon-watch_later:before {\n  content: \"\\e924\";\n}\n.icon-wb_auto:before {\n  content: \"\\e42c\";\n}\n.icon-wb_incandescent:before {\n  content: \"\\e42e\";\n}\n.icon-wb_iridescent:before {\n  content: \"\\e436\";\n}\n.icon-wb_sunny:before {\n  content: \"\\e430\";\n}\n.icon-wc:before {\n  content: \"\\e63d\";\n}\n.icon-web:before {\n  content: \"\\e051\";\n}\n.icon-web_asset:before {\n  content: \"\\e069\";\n}\n.icon-weekend:before {\n  content: \"\\e16b\";\n}\n.icon-whatshot:before {\n  content: \"\\e80e\";\n}\n.icon-widgets:before {\n  content: \"\\e1bd\";\n}\n.icon-wifi2:before {\n  content: \"\\e63e\";\n}\n.icon-wifi_lock:before {\n  content: \"\\e1e1\";\n}\n.icon-wifi_tethering:before {\n  content: \"\\e1e2\";\n}\n.icon-work:before {\n  content: \"\\e8f9\";\n}\n.icon-wrap_text:before {\n  content: \"\\e25b\";\n}\n.icon-youtube_searched_for:before {\n  content: \"\\e8fa\";\n}\n.icon-zoom_in:before {\n  content: \"\\e8ff\";\n}\n.icon-zoom_out:before {\n  content: \"\\e901\";\n}\n.icon-zoom_out_map:before {\n  content: \"\\e56b\";\n}\n"
  },
  {
    "path": "public/landing/js/aos.js",
    "content": "!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p=\"dist/\",t(0)}([function(e,t,n){\"use strict\";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},r=n(1),a=(o(r),n(6)),u=o(a),c=n(7),f=o(c),s=n(8),d=o(s),l=n(9),p=o(l),m=n(10),b=o(m),v=n(11),y=o(v),g=n(14),h=o(g),w=[],k=!1,x=document.all&&!window.atob,j={offset:120,delay:0,easing:\"ease\",duration:400,disable:!1,once:!1,startEvent:\"DOMContentLoaded\"},O=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,j),(0,b.default)(w,j.once),w},S=function(){w=(0,h.default)(),O()},_=function(){w.forEach(function(e,t){e.node.removeAttribute(\"data-aos\"),e.node.removeAttribute(\"data-aos-easing\"),e.node.removeAttribute(\"data-aos-duration\"),e.node.removeAttribute(\"data-aos-delay\")})},E=function(e){return e===!0||\"mobile\"===e&&p.default.mobile()||\"phone\"===e&&p.default.phone()||\"tablet\"===e&&p.default.tablet()||\"function\"==typeof e&&e()===!0},z=function(e){return j=i(j,e),w=(0,h.default)(),E(j.disable)||x?_():(document.querySelector(\"body\").setAttribute(\"data-aos-easing\",j.easing),document.querySelector(\"body\").setAttribute(\"data-aos-duration\",j.duration),document.querySelector(\"body\").setAttribute(\"data-aos-delay\",j.delay),\"DOMContentLoaded\"===j.startEvent&&[\"complete\",\"interactive\"].indexOf(document.readyState)>-1?O(!0):\"load\"===j.startEvent?window.addEventListener(j.startEvent,function(){O(!0)}):document.addEventListener(j.startEvent,function(){O(!0)}),window.addEventListener(\"resize\",(0,f.default)(O,50,!0)),window.addEventListener(\"orientationchange\",(0,f.default)(O,50,!0)),window.addEventListener(\"scroll\",(0,u.default)(function(){(0,b.default)(w,j.once)},99)),document.addEventListener(\"DOMNodeRemoved\",function(e){var t=e.target;t&&1===t.nodeType&&t.hasAttribute&&t.hasAttribute(\"data-aos\")&&(0,f.default)(S,50,!0)}),(0,d.default)(\"[data-aos]\",S),w)};e.exports={init:z,refresh:O,refreshHard:S}},function(e,t){},,,,,function(e,t){(function(t){\"use strict\";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),S?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return _?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||_&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,E&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(_)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,S=!1,_=!1,E=!0;if(\"function\"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(S=!!n.leading,_=\"maxWait\"in n,y=_?x(u(n.maxWait)||0,t):y,E=\"trailing\"in n?!!n.trailing:E),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if(\"function\"!=typeof e)throw new TypeError(f);return i(o)&&(r=\"leading\"in o?!!o.leading:r,a=\"trailing\"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t=\"undefined\"==typeof e?\"undefined\":c(e);return!!e&&(\"object\"==t||\"function\"==t)}function r(e){return!!e&&\"object\"==(\"undefined\"==typeof e?\"undefined\":c(e))}function a(e){return\"symbol\"==(\"undefined\"==typeof e?\"undefined\":c(e))||r(e)&&k.call(e)==d}function u(e){if(\"number\"==typeof e)return e;if(a(e))return s;if(i(e)){var t=\"function\"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+\"\":t}if(\"string\"!=typeof e)return 0===e?e:+e;e=e.replace(l,\"\");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},f=\"Expected a function\",s=NaN,d=\"[object Symbol]\",l=/^\\s+|\\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y=\"object\"==(\"undefined\"==typeof t?\"undefined\":c(t))&&t&&t.Object===Object&&t,g=\"object\"==(\"undefined\"==typeof self?\"undefined\":c(self))&&self&&self.Object===Object&&self,h=y||g||Function(\"return this\")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){\"use strict\";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),S?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return _?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||_&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,E&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(_)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,S=!1,_=!1,E=!0;if(\"function\"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(S=!!n.leading,_=\"maxWait\"in n,y=_?k(a(n.maxWait)||0,t):y,E=\"trailing\"in n?!!n.trailing:E),m.cancel=l,m.flush=p,m}function o(e){var t=\"undefined\"==typeof e?\"undefined\":u(e);return!!e&&(\"object\"==t||\"function\"==t)}function i(e){return!!e&&\"object\"==(\"undefined\"==typeof e?\"undefined\":u(e))}function r(e){return\"symbol\"==(\"undefined\"==typeof e?\"undefined\":u(e))||i(e)&&w.call(e)==s}function a(e){if(\"number\"==typeof e)return e;if(r(e))return f;if(o(e)){var t=\"function\"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+\"\":t}if(\"string\"!=typeof e)return 0===e?e:+e;e=e.replace(d,\"\");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},c=\"Expected a function\",f=NaN,s=\"[object Symbol]\",d=/^\\s+|\\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v=\"object\"==(\"undefined\"==typeof t?\"undefined\":u(t))&&t&&t.Object===Object&&t,y=\"object\"==(\"undefined\"==typeof self?\"undefined\":u(self))&&self&&self.Object===Object&&self,g=v||y||Function(\"return this\")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){\"use strict\";function n(e,t){a.push({selector:e,fn:t}),!u&&r&&(u=new r(o),u.observe(i.documentElement,{childList:!0,subtree:!0,removedNodes:!0})),o()}function o(){for(var e,t,n=0,o=a.length;n<o;n++){e=a[n],t=i.querySelectorAll(e.selector);for(var r,u=0,c=t.length;u<c;u++)r=t[u],r.ready||(r.ready=!0,e.fn.call(r,r))}}Object.defineProperty(t,\"__esModule\",{value:!0});var i=window.document,r=window.MutationObserver||window.WebKitMutationObserver,a=[],u=void 0;t.default=n},function(e,t){\"use strict\";function n(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}function o(){return navigator.userAgent||navigator.vendor||window.opera||\"\"}Object.defineProperty(t,\"__esModule\",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,\"value\"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,n,o){return n&&e(t.prototype,n),o&&e(t,o),t}}(),r=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i,a=/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i,u=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i,c=/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i,f=function(){function e(){n(this,e)}return i(e,[{key:\"phone\",value:function(){var e=o();return!(!r.test(e)&&!a.test(e.substr(0,4)))}},{key:\"mobile\",value:function(){var e=o();return!(!u.test(e)&&!c.test(e.substr(0,4)))}},{key:\"tablet\",value:function(){return this.mobile()&&!this.phone()}}]),e}();t.default=new f},function(e,t){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var n=function(e,t,n){var o=e.node.getAttribute(\"data-aos-once\");t>e.position?e.node.classList.add(\"aos-animate\"):\"undefined\"!=typeof o&&(\"false\"===o||!n&&\"true\"!==o)&&e.node.classList.remove(\"aos-animate\")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){\"use strict\";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,\"__esModule\",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add(\"aos-init\"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){\"use strict\";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,\"__esModule\",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute(\"data-aos-offset\"),anchor:e.getAttribute(\"data-aos-anchor\"),anchorPlacement:e.getAttribute(\"data-aos-anchor-placement\")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case\"top-bottom\":break;case\"center-bottom\":n+=e.offsetHeight/2;break;case\"bottom-bottom\":n+=e.offsetHeight;break;case\"top-center\":n+=i/2;break;case\"bottom-center\":n+=i/2+e.offsetHeight;break;case\"center-center\":n+=i/2+e.offsetHeight/2;break;case\"top-top\":n+=i;break;case\"bottom-top\":n+=e.offsetHeight+i;break;case\"center-top\":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-(\"BODY\"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-(\"BODY\"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var n=function(e){e=e||document.querySelectorAll(\"[data-aos]\");var t=[];return[].forEach.call(e,function(e,n){t.push({node:e})}),t};t.default=n}])});\n//# sourceMappingURL=aos.js.map"
  },
  {
    "path": "public/landing/js/jquery-ui.js",
    "content": "/*! jQuery UI - v1.12.1 - 2018-01-21\n* http://jqueryui.com\n* Includes: widget.js, keycode.js, widgets/mouse.js, widgets/slider.js\n* Copyright jQuery Foundation and other contributors; Licensed MIT */\n\n(function( factory ) {\n\tif ( typeof define === \"function\" && define.amd ) {\n\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine([ \"jquery\" ], factory );\n\t} else {\n\n\t\t// Browser globals\n\t\tfactory( jQuery );\n\t}\n}(function( $ ) {\n\n$.ui = $.ui || {};\n\nvar version = $.ui.version = \"1.12.1\";\n\n\n/*!\n * jQuery UI Widget 1.12.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n//>>label: Widget\n//>>group: Core\n//>>description: Provides a factory for creating stateful widgets with a common API.\n//>>docs: http://api.jqueryui.com/jQuery.widget/\n//>>demos: http://jqueryui.com/widget/\n\n\n\nvar widgetUuid = 0;\nvar widgetSlice = Array.prototype.slice;\n\n$.cleanData = ( function( orig ) {\n\treturn function( elems ) {\n\t\tvar events, elem, i;\n\t\tfor ( i = 0; ( elem = elems[ i ] ) != null; i++ ) {\n\t\t\ttry {\n\n\t\t\t\t// Only trigger remove when necessary to save time\n\t\t\t\tevents = $._data( elem, \"events\" );\n\t\t\t\tif ( events && events.remove ) {\n\t\t\t\t\t$( elem ).triggerHandler( \"remove\" );\n\t\t\t\t}\n\n\t\t\t// Http://bugs.jquery.com/ticket/8235\n\t\t\t} catch ( e ) {}\n\t\t}\n\t\torig( elems );\n\t};\n} )( $.cleanData );\n\n$.widget = function( name, base, prototype ) {\n\tvar existingConstructor, constructor, basePrototype;\n\n\t// ProxiedPrototype allows the provided prototype to remain unmodified\n\t// so that it can be used as a mixin for multiple widgets (#8876)\n\tvar proxiedPrototype = {};\n\n\tvar namespace = name.split( \".\" )[ 0 ];\n\tname = name.split( \".\" )[ 1 ];\n\tvar fullName = namespace + \"-\" + name;\n\n\tif ( !prototype ) {\n\t\tprototype = base;\n\t\tbase = $.Widget;\n\t}\n\n\tif ( $.isArray( prototype ) ) {\n\t\tprototype = $.extend.apply( null, [ {} ].concat( prototype ) );\n\t}\n\n\t// Create selector for plugin\n\t$.expr[ \":\" ][ fullName.toLowerCase() ] = function( elem ) {\n\t\treturn !!$.data( elem, fullName );\n\t};\n\n\t$[ namespace ] = $[ namespace ] || {};\n\texistingConstructor = $[ namespace ][ name ];\n\tconstructor = $[ namespace ][ name ] = function( options, element ) {\n\n\t\t// Allow instantiation without \"new\" keyword\n\t\tif ( !this._createWidget ) {\n\t\t\treturn new constructor( options, element );\n\t\t}\n\n\t\t// Allow instantiation without initializing for simple inheritance\n\t\t// must use \"new\" keyword (the code above always passes args)\n\t\tif ( arguments.length ) {\n\t\t\tthis._createWidget( options, element );\n\t\t}\n\t};\n\n\t// Extend with the existing constructor to carry over any static properties\n\t$.extend( constructor, existingConstructor, {\n\t\tversion: prototype.version,\n\n\t\t// Copy the object used to create the prototype in case we need to\n\t\t// redefine the widget later\n\t\t_proto: $.extend( {}, prototype ),\n\n\t\t// Track widgets that inherit from this widget in case this widget is\n\t\t// redefined after a widget inherits from it\n\t\t_childConstructors: []\n\t} );\n\n\tbasePrototype = new base();\n\n\t// We need to make the options hash a property directly on the new instance\n\t// otherwise we'll modify the options hash on the prototype that we're\n\t// inheriting from\n\tbasePrototype.options = $.widget.extend( {}, basePrototype.options );\n\t$.each( prototype, function( prop, value ) {\n\t\tif ( !$.isFunction( value ) ) {\n\t\t\tproxiedPrototype[ prop ] = value;\n\t\t\treturn;\n\t\t}\n\t\tproxiedPrototype[ prop ] = ( function() {\n\t\t\tfunction _super() {\n\t\t\t\treturn base.prototype[ prop ].apply( this, arguments );\n\t\t\t}\n\n\t\t\tfunction _superApply( args ) {\n\t\t\t\treturn base.prototype[ prop ].apply( this, args );\n\t\t\t}\n\n\t\t\treturn function() {\n\t\t\t\tvar __super = this._super;\n\t\t\t\tvar __superApply = this._superApply;\n\t\t\t\tvar returnValue;\n\n\t\t\t\tthis._super = _super;\n\t\t\t\tthis._superApply = _superApply;\n\n\t\t\t\treturnValue = value.apply( this, arguments );\n\n\t\t\t\tthis._super = __super;\n\t\t\t\tthis._superApply = __superApply;\n\n\t\t\t\treturn returnValue;\n\t\t\t};\n\t\t} )();\n\t} );\n\tconstructor.prototype = $.widget.extend( basePrototype, {\n\n\t\t// TODO: remove support for widgetEventPrefix\n\t\t// always use the name + a colon as the prefix, e.g., draggable:start\n\t\t// don't prefix for widgets that aren't DOM-based\n\t\twidgetEventPrefix: existingConstructor ? ( basePrototype.widgetEventPrefix || name ) : name\n\t}, proxiedPrototype, {\n\t\tconstructor: constructor,\n\t\tnamespace: namespace,\n\t\twidgetName: name,\n\t\twidgetFullName: fullName\n\t} );\n\n\t// If this widget is being redefined then we need to find all widgets that\n\t// are inheriting from it and redefine all of them so that they inherit from\n\t// the new version of this widget. We're essentially trying to replace one\n\t// level in the prototype chain.\n\tif ( existingConstructor ) {\n\t\t$.each( existingConstructor._childConstructors, function( i, child ) {\n\t\t\tvar childPrototype = child.prototype;\n\n\t\t\t// Redefine the child widget using the same prototype that was\n\t\t\t// originally used, but inherit from the new version of the base\n\t\t\t$.widget( childPrototype.namespace + \".\" + childPrototype.widgetName, constructor,\n\t\t\t\tchild._proto );\n\t\t} );\n\n\t\t// Remove the list of existing child constructors from the old constructor\n\t\t// so the old child constructors can be garbage collected\n\t\tdelete existingConstructor._childConstructors;\n\t} else {\n\t\tbase._childConstructors.push( constructor );\n\t}\n\n\t$.widget.bridge( name, constructor );\n\n\treturn constructor;\n};\n\n$.widget.extend = function( target ) {\n\tvar input = widgetSlice.call( arguments, 1 );\n\tvar inputIndex = 0;\n\tvar inputLength = input.length;\n\tvar key;\n\tvar value;\n\n\tfor ( ; inputIndex < inputLength; inputIndex++ ) {\n\t\tfor ( key in input[ inputIndex ] ) {\n\t\t\tvalue = input[ inputIndex ][ key ];\n\t\t\tif ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {\n\n\t\t\t\t// Clone objects\n\t\t\t\tif ( $.isPlainObject( value ) ) {\n\t\t\t\t\ttarget[ key ] = $.isPlainObject( target[ key ] ) ?\n\t\t\t\t\t\t$.widget.extend( {}, target[ key ], value ) :\n\n\t\t\t\t\t\t// Don't extend strings, arrays, etc. with objects\n\t\t\t\t\t\t$.widget.extend( {}, value );\n\n\t\t\t\t// Copy everything else by reference\n\t\t\t\t} else {\n\t\t\t\t\ttarget[ key ] = value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn target;\n};\n\n$.widget.bridge = function( name, object ) {\n\tvar fullName = object.prototype.widgetFullName || name;\n\t$.fn[ name ] = function( options ) {\n\t\tvar isMethodCall = typeof options === \"string\";\n\t\tvar args = widgetSlice.call( arguments, 1 );\n\t\tvar returnValue = this;\n\n\t\tif ( isMethodCall ) {\n\n\t\t\t// If this is an empty collection, we need to have the instance method\n\t\t\t// return undefined instead of the jQuery instance\n\t\t\tif ( !this.length && options === \"instance\" ) {\n\t\t\t\treturnValue = undefined;\n\t\t\t} else {\n\t\t\t\tthis.each( function() {\n\t\t\t\t\tvar methodValue;\n\t\t\t\t\tvar instance = $.data( this, fullName );\n\n\t\t\t\t\tif ( options === \"instance\" ) {\n\t\t\t\t\t\treturnValue = instance;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( !instance ) {\n\t\t\t\t\t\treturn $.error( \"cannot call methods on \" + name +\n\t\t\t\t\t\t\t\" prior to initialization; \" +\n\t\t\t\t\t\t\t\"attempted to call method '\" + options + \"'\" );\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( !$.isFunction( instance[ options ] ) || options.charAt( 0 ) === \"_\" ) {\n\t\t\t\t\t\treturn $.error( \"no such method '\" + options + \"' for \" + name +\n\t\t\t\t\t\t\t\" widget instance\" );\n\t\t\t\t\t}\n\n\t\t\t\t\tmethodValue = instance[ options ].apply( instance, args );\n\n\t\t\t\t\tif ( methodValue !== instance && methodValue !== undefined ) {\n\t\t\t\t\t\treturnValue = methodValue && methodValue.jquery ?\n\t\t\t\t\t\t\treturnValue.pushStack( methodValue.get() ) :\n\t\t\t\t\t\t\tmethodValue;\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t} else {\n\n\t\t\t// Allow multiple hashes to be passed on init\n\t\t\tif ( args.length ) {\n\t\t\t\toptions = $.widget.extend.apply( null, [ options ].concat( args ) );\n\t\t\t}\n\n\t\t\tthis.each( function() {\n\t\t\t\tvar instance = $.data( this, fullName );\n\t\t\t\tif ( instance ) {\n\t\t\t\t\tinstance.option( options || {} );\n\t\t\t\t\tif ( instance._init ) {\n\t\t\t\t\t\tinstance._init();\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\t$.data( this, fullName, new object( options, this ) );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\treturn returnValue;\n\t};\n};\n\n$.Widget = function( /* options, element */ ) {};\n$.Widget._childConstructors = [];\n\n$.Widget.prototype = {\n\twidgetName: \"widget\",\n\twidgetEventPrefix: \"\",\n\tdefaultElement: \"<div>\",\n\n\toptions: {\n\t\tclasses: {},\n\t\tdisabled: false,\n\n\t\t// Callbacks\n\t\tcreate: null\n\t},\n\n\t_createWidget: function( options, element ) {\n\t\telement = $( element || this.defaultElement || this )[ 0 ];\n\t\tthis.element = $( element );\n\t\tthis.uuid = widgetUuid++;\n\t\tthis.eventNamespace = \".\" + this.widgetName + this.uuid;\n\n\t\tthis.bindings = $();\n\t\tthis.hoverable = $();\n\t\tthis.focusable = $();\n\t\tthis.classesElementLookup = {};\n\n\t\tif ( element !== this ) {\n\t\t\t$.data( element, this.widgetFullName, this );\n\t\t\tthis._on( true, this.element, {\n\t\t\t\tremove: function( event ) {\n\t\t\t\t\tif ( event.target === element ) {\n\t\t\t\t\t\tthis.destroy();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} );\n\t\t\tthis.document = $( element.style ?\n\n\t\t\t\t// Element within the document\n\t\t\t\telement.ownerDocument :\n\n\t\t\t\t// Element is window or document\n\t\t\t\telement.document || element );\n\t\t\tthis.window = $( this.document[ 0 ].defaultView || this.document[ 0 ].parentWindow );\n\t\t}\n\n\t\tthis.options = $.widget.extend( {},\n\t\t\tthis.options,\n\t\t\tthis._getCreateOptions(),\n\t\t\toptions );\n\n\t\tthis._create();\n\n\t\tif ( this.options.disabled ) {\n\t\t\tthis._setOptionDisabled( this.options.disabled );\n\t\t}\n\n\t\tthis._trigger( \"create\", null, this._getCreateEventData() );\n\t\tthis._init();\n\t},\n\n\t_getCreateOptions: function() {\n\t\treturn {};\n\t},\n\n\t_getCreateEventData: $.noop,\n\n\t_create: $.noop,\n\n\t_init: $.noop,\n\n\tdestroy: function() {\n\t\tvar that = this;\n\n\t\tthis._destroy();\n\t\t$.each( this.classesElementLookup, function( key, value ) {\n\t\t\tthat._removeClass( value, key );\n\t\t} );\n\n\t\t// We can probably remove the unbind calls in 2.0\n\t\t// all event bindings should go through this._on()\n\t\tthis.element\n\t\t\t.off( this.eventNamespace )\n\t\t\t.removeData( this.widgetFullName );\n\t\tthis.widget()\n\t\t\t.off( this.eventNamespace )\n\t\t\t.removeAttr( \"aria-disabled\" );\n\n\t\t// Clean up events and states\n\t\tthis.bindings.off( this.eventNamespace );\n\t},\n\n\t_destroy: $.noop,\n\n\twidget: function() {\n\t\treturn this.element;\n\t},\n\n\toption: function( key, value ) {\n\t\tvar options = key;\n\t\tvar parts;\n\t\tvar curOption;\n\t\tvar i;\n\n\t\tif ( arguments.length === 0 ) {\n\n\t\t\t// Don't return a reference to the internal hash\n\t\t\treturn $.widget.extend( {}, this.options );\n\t\t}\n\n\t\tif ( typeof key === \"string\" ) {\n\n\t\t\t// Handle nested keys, e.g., \"foo.bar\" => { foo: { bar: ___ } }\n\t\t\toptions = {};\n\t\t\tparts = key.split( \".\" );\n\t\t\tkey = parts.shift();\n\t\t\tif ( parts.length ) {\n\t\t\t\tcurOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );\n\t\t\t\tfor ( i = 0; i < parts.length - 1; i++ ) {\n\t\t\t\t\tcurOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};\n\t\t\t\t\tcurOption = curOption[ parts[ i ] ];\n\t\t\t\t}\n\t\t\t\tkey = parts.pop();\n\t\t\t\tif ( arguments.length === 1 ) {\n\t\t\t\t\treturn curOption[ key ] === undefined ? null : curOption[ key ];\n\t\t\t\t}\n\t\t\t\tcurOption[ key ] = value;\n\t\t\t} else {\n\t\t\t\tif ( arguments.length === 1 ) {\n\t\t\t\t\treturn this.options[ key ] === undefined ? null : this.options[ key ];\n\t\t\t\t}\n\t\t\t\toptions[ key ] = value;\n\t\t\t}\n\t\t}\n\n\t\tthis._setOptions( options );\n\n\t\treturn this;\n\t},\n\n\t_setOptions: function( options ) {\n\t\tvar key;\n\n\t\tfor ( key in options ) {\n\t\t\tthis._setOption( key, options[ key ] );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tif ( key === \"classes\" ) {\n\t\t\tthis._setOptionClasses( value );\n\t\t}\n\n\t\tthis.options[ key ] = value;\n\n\t\tif ( key === \"disabled\" ) {\n\t\t\tthis._setOptionDisabled( value );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\t_setOptionClasses: function( value ) {\n\t\tvar classKey, elements, currentElements;\n\n\t\tfor ( classKey in value ) {\n\t\t\tcurrentElements = this.classesElementLookup[ classKey ];\n\t\t\tif ( value[ classKey ] === this.options.classes[ classKey ] ||\n\t\t\t\t\t!currentElements ||\n\t\t\t\t\t!currentElements.length ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// We are doing this to create a new jQuery object because the _removeClass() call\n\t\t\t// on the next line is going to destroy the reference to the current elements being\n\t\t\t// tracked. We need to save a copy of this collection so that we can add the new classes\n\t\t\t// below.\n\t\t\telements = $( currentElements.get() );\n\t\t\tthis._removeClass( currentElements, classKey );\n\n\t\t\t// We don't use _addClass() here, because that uses this.options.classes\n\t\t\t// for generating the string of classes. We want to use the value passed in from\n\t\t\t// _setOption(), this is the new value of the classes option which was passed to\n\t\t\t// _setOption(). We pass this value directly to _classes().\n\t\t\telements.addClass( this._classes( {\n\t\t\t\telement: elements,\n\t\t\t\tkeys: classKey,\n\t\t\t\tclasses: value,\n\t\t\t\tadd: true\n\t\t\t} ) );\n\t\t}\n\t},\n\n\t_setOptionDisabled: function( value ) {\n\t\tthis._toggleClass( this.widget(), this.widgetFullName + \"-disabled\", null, !!value );\n\n\t\t// If the widget is becoming disabled, then nothing is interactive\n\t\tif ( value ) {\n\t\t\tthis._removeClass( this.hoverable, null, \"ui-state-hover\" );\n\t\t\tthis._removeClass( this.focusable, null, \"ui-state-focus\" );\n\t\t}\n\t},\n\n\tenable: function() {\n\t\treturn this._setOptions( { disabled: false } );\n\t},\n\n\tdisable: function() {\n\t\treturn this._setOptions( { disabled: true } );\n\t},\n\n\t_classes: function( options ) {\n\t\tvar full = [];\n\t\tvar that = this;\n\n\t\toptions = $.extend( {\n\t\t\telement: this.element,\n\t\t\tclasses: this.options.classes || {}\n\t\t}, options );\n\n\t\tfunction processClassString( classes, checkOption ) {\n\t\t\tvar current, i;\n\t\t\tfor ( i = 0; i < classes.length; i++ ) {\n\t\t\t\tcurrent = that.classesElementLookup[ classes[ i ] ] || $();\n\t\t\t\tif ( options.add ) {\n\t\t\t\t\tcurrent = $( $.unique( current.get().concat( options.element.get() ) ) );\n\t\t\t\t} else {\n\t\t\t\t\tcurrent = $( current.not( options.element ).get() );\n\t\t\t\t}\n\t\t\t\tthat.classesElementLookup[ classes[ i ] ] = current;\n\t\t\t\tfull.push( classes[ i ] );\n\t\t\t\tif ( checkOption && options.classes[ classes[ i ] ] ) {\n\t\t\t\t\tfull.push( options.classes[ classes[ i ] ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis._on( options.element, {\n\t\t\t\"remove\": \"_untrackClassesElement\"\n\t\t} );\n\n\t\tif ( options.keys ) {\n\t\t\tprocessClassString( options.keys.match( /\\S+/g ) || [], true );\n\t\t}\n\t\tif ( options.extra ) {\n\t\t\tprocessClassString( options.extra.match( /\\S+/g ) || [] );\n\t\t}\n\n\t\treturn full.join( \" \" );\n\t},\n\n\t_untrackClassesElement: function( event ) {\n\t\tvar that = this;\n\t\t$.each( that.classesElementLookup, function( key, value ) {\n\t\t\tif ( $.inArray( event.target, value ) !== -1 ) {\n\t\t\t\tthat.classesElementLookup[ key ] = $( value.not( event.target ).get() );\n\t\t\t}\n\t\t} );\n\t},\n\n\t_removeClass: function( element, keys, extra ) {\n\t\treturn this._toggleClass( element, keys, extra, false );\n\t},\n\n\t_addClass: function( element, keys, extra ) {\n\t\treturn this._toggleClass( element, keys, extra, true );\n\t},\n\n\t_toggleClass: function( element, keys, extra, add ) {\n\t\tadd = ( typeof add === \"boolean\" ) ? add : extra;\n\t\tvar shift = ( typeof element === \"string\" || element === null ),\n\t\t\toptions = {\n\t\t\t\textra: shift ? keys : extra,\n\t\t\t\tkeys: shift ? element : keys,\n\t\t\t\telement: shift ? this.element : element,\n\t\t\t\tadd: add\n\t\t\t};\n\t\toptions.element.toggleClass( this._classes( options ), add );\n\t\treturn this;\n\t},\n\n\t_on: function( suppressDisabledCheck, element, handlers ) {\n\t\tvar delegateElement;\n\t\tvar instance = this;\n\n\t\t// No suppressDisabledCheck flag, shuffle arguments\n\t\tif ( typeof suppressDisabledCheck !== \"boolean\" ) {\n\t\t\thandlers = element;\n\t\t\telement = suppressDisabledCheck;\n\t\t\tsuppressDisabledCheck = false;\n\t\t}\n\n\t\t// No element argument, shuffle and use this.element\n\t\tif ( !handlers ) {\n\t\t\thandlers = element;\n\t\t\telement = this.element;\n\t\t\tdelegateElement = this.widget();\n\t\t} else {\n\t\t\telement = delegateElement = $( element );\n\t\t\tthis.bindings = this.bindings.add( element );\n\t\t}\n\n\t\t$.each( handlers, function( event, handler ) {\n\t\t\tfunction handlerProxy() {\n\n\t\t\t\t// Allow widgets to customize the disabled handling\n\t\t\t\t// - disabled as an array instead of boolean\n\t\t\t\t// - disabled class as method for disabling individual parts\n\t\t\t\tif ( !suppressDisabledCheck &&\n\t\t\t\t\t\t( instance.options.disabled === true ||\n\t\t\t\t\t\t$( this ).hasClass( \"ui-state-disabled\" ) ) ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\treturn ( typeof handler === \"string\" ? instance[ handler ] : handler )\n\t\t\t\t\t.apply( instance, arguments );\n\t\t\t}\n\n\t\t\t// Copy the guid so direct unbinding works\n\t\t\tif ( typeof handler !== \"string\" ) {\n\t\t\t\thandlerProxy.guid = handler.guid =\n\t\t\t\t\thandler.guid || handlerProxy.guid || $.guid++;\n\t\t\t}\n\n\t\t\tvar match = event.match( /^([\\w:-]*)\\s*(.*)$/ );\n\t\t\tvar eventName = match[ 1 ] + instance.eventNamespace;\n\t\t\tvar selector = match[ 2 ];\n\n\t\t\tif ( selector ) {\n\t\t\t\tdelegateElement.on( eventName, selector, handlerProxy );\n\t\t\t} else {\n\t\t\t\telement.on( eventName, handlerProxy );\n\t\t\t}\n\t\t} );\n\t},\n\n\t_off: function( element, eventName ) {\n\t\teventName = ( eventName || \"\" ).split( \" \" ).join( this.eventNamespace + \" \" ) +\n\t\t\tthis.eventNamespace;\n\t\telement.off( eventName ).off( eventName );\n\n\t\t// Clear the stack to avoid memory leaks (#10056)\n\t\tthis.bindings = $( this.bindings.not( element ).get() );\n\t\tthis.focusable = $( this.focusable.not( element ).get() );\n\t\tthis.hoverable = $( this.hoverable.not( element ).get() );\n\t},\n\n\t_delay: function( handler, delay ) {\n\t\tfunction handlerProxy() {\n\t\t\treturn ( typeof handler === \"string\" ? instance[ handler ] : handler )\n\t\t\t\t.apply( instance, arguments );\n\t\t}\n\t\tvar instance = this;\n\t\treturn setTimeout( handlerProxy, delay || 0 );\n\t},\n\n\t_hoverable: function( element ) {\n\t\tthis.hoverable = this.hoverable.add( element );\n\t\tthis._on( element, {\n\t\t\tmouseenter: function( event ) {\n\t\t\t\tthis._addClass( $( event.currentTarget ), null, \"ui-state-hover\" );\n\t\t\t},\n\t\t\tmouseleave: function( event ) {\n\t\t\t\tthis._removeClass( $( event.currentTarget ), null, \"ui-state-hover\" );\n\t\t\t}\n\t\t} );\n\t},\n\n\t_focusable: function( element ) {\n\t\tthis.focusable = this.focusable.add( element );\n\t\tthis._on( element, {\n\t\t\tfocusin: function( event ) {\n\t\t\t\tthis._addClass( $( event.currentTarget ), null, \"ui-state-focus\" );\n\t\t\t},\n\t\t\tfocusout: function( event ) {\n\t\t\t\tthis._removeClass( $( event.currentTarget ), null, \"ui-state-focus\" );\n\t\t\t}\n\t\t} );\n\t},\n\n\t_trigger: function( type, event, data ) {\n\t\tvar prop, orig;\n\t\tvar callback = this.options[ type ];\n\n\t\tdata = data || {};\n\t\tevent = $.Event( event );\n\t\tevent.type = ( type === this.widgetEventPrefix ?\n\t\t\ttype :\n\t\t\tthis.widgetEventPrefix + type ).toLowerCase();\n\n\t\t// The original event may come from any element\n\t\t// so we need to reset the target on the new event\n\t\tevent.target = this.element[ 0 ];\n\n\t\t// Copy original event properties over to the new event\n\t\torig = event.originalEvent;\n\t\tif ( orig ) {\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tif ( !( prop in event ) ) {\n\t\t\t\t\tevent[ prop ] = orig[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tthis.element.trigger( event, data );\n\t\treturn !( $.isFunction( callback ) &&\n\t\t\tcallback.apply( this.element[ 0 ], [ event ].concat( data ) ) === false ||\n\t\t\tevent.isDefaultPrevented() );\n\t}\n};\n\n$.each( { show: \"fadeIn\", hide: \"fadeOut\" }, function( method, defaultEffect ) {\n\t$.Widget.prototype[ \"_\" + method ] = function( element, options, callback ) {\n\t\tif ( typeof options === \"string\" ) {\n\t\t\toptions = { effect: options };\n\t\t}\n\n\t\tvar hasOptions;\n\t\tvar effectName = !options ?\n\t\t\tmethod :\n\t\t\toptions === true || typeof options === \"number\" ?\n\t\t\t\tdefaultEffect :\n\t\t\t\toptions.effect || defaultEffect;\n\n\t\toptions = options || {};\n\t\tif ( typeof options === \"number\" ) {\n\t\t\toptions = { duration: options };\n\t\t}\n\n\t\thasOptions = !$.isEmptyObject( options );\n\t\toptions.complete = callback;\n\n\t\tif ( options.delay ) {\n\t\t\telement.delay( options.delay );\n\t\t}\n\n\t\tif ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {\n\t\t\telement[ method ]( options );\n\t\t} else if ( effectName !== method && element[ effectName ] ) {\n\t\t\telement[ effectName ]( options.duration, options.easing, callback );\n\t\t} else {\n\t\t\telement.queue( function( next ) {\n\t\t\t\t$( this )[ method ]();\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback.call( element[ 0 ] );\n\t\t\t\t}\n\t\t\t\tnext();\n\t\t\t} );\n\t\t}\n\t};\n} );\n\nvar widget = $.widget;\n\n\n/*!\n * jQuery UI Keycode 1.12.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n//>>label: Keycode\n//>>group: Core\n//>>description: Provide keycodes as keynames\n//>>docs: http://api.jqueryui.com/jQuery.ui.keyCode/\n\n\nvar keycode = $.ui.keyCode = {\n\tBACKSPACE: 8,\n\tCOMMA: 188,\n\tDELETE: 46,\n\tDOWN: 40,\n\tEND: 35,\n\tENTER: 13,\n\tESCAPE: 27,\n\tHOME: 36,\n\tLEFT: 37,\n\tPAGE_DOWN: 34,\n\tPAGE_UP: 33,\n\tPERIOD: 190,\n\tRIGHT: 39,\n\tSPACE: 32,\n\tTAB: 9,\n\tUP: 38\n};\n\n\n\n\n// This file is deprecated\nvar ie = $.ui.ie = !!/msie [\\w.]+/.exec( navigator.userAgent.toLowerCase() );\n\n/*!\n * jQuery UI Mouse 1.12.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n//>>label: Mouse\n//>>group: Widgets\n//>>description: Abstracts mouse-based interactions to assist in creating certain widgets.\n//>>docs: http://api.jqueryui.com/mouse/\n\n\n\nvar mouseHandled = false;\n$( document ).on( \"mouseup\", function() {\n\tmouseHandled = false;\n} );\n\nvar widgetsMouse = $.widget( \"ui.mouse\", {\n\tversion: \"1.12.1\",\n\toptions: {\n\t\tcancel: \"input, textarea, button, select, option\",\n\t\tdistance: 1,\n\t\tdelay: 0\n\t},\n\t_mouseInit: function() {\n\t\tvar that = this;\n\n\t\tthis.element\n\t\t\t.on( \"mousedown.\" + this.widgetName, function( event ) {\n\t\t\t\treturn that._mouseDown( event );\n\t\t\t} )\n\t\t\t.on( \"click.\" + this.widgetName, function( event ) {\n\t\t\t\tif ( true === $.data( event.target, that.widgetName + \".preventClickEvent\" ) ) {\n\t\t\t\t\t$.removeData( event.target, that.widgetName + \".preventClickEvent\" );\n\t\t\t\t\tevent.stopImmediatePropagation();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t} );\n\n\t\tthis.started = false;\n\t},\n\n\t// TODO: make sure destroying one instance of mouse doesn't mess with\n\t// other instances of mouse\n\t_mouseDestroy: function() {\n\t\tthis.element.off( \".\" + this.widgetName );\n\t\tif ( this._mouseMoveDelegate ) {\n\t\t\tthis.document\n\t\t\t\t.off( \"mousemove.\" + this.widgetName, this._mouseMoveDelegate )\n\t\t\t\t.off( \"mouseup.\" + this.widgetName, this._mouseUpDelegate );\n\t\t}\n\t},\n\n\t_mouseDown: function( event ) {\n\n\t\t// don't let more than one widget handle mouseStart\n\t\tif ( mouseHandled ) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis._mouseMoved = false;\n\n\t\t// We may have missed mouseup (out of window)\n\t\t( this._mouseStarted && this._mouseUp( event ) );\n\n\t\tthis._mouseDownEvent = event;\n\n\t\tvar that = this,\n\t\t\tbtnIsLeft = ( event.which === 1 ),\n\n\t\t\t// event.target.nodeName works around a bug in IE 8 with\n\t\t\t// disabled inputs (#7620)\n\t\t\telIsCancel = ( typeof this.options.cancel === \"string\" && event.target.nodeName ?\n\t\t\t\t$( event.target ).closest( this.options.cancel ).length : false );\n\t\tif ( !btnIsLeft || elIsCancel || !this._mouseCapture( event ) ) {\n\t\t\treturn true;\n\t\t}\n\n\t\tthis.mouseDelayMet = !this.options.delay;\n\t\tif ( !this.mouseDelayMet ) {\n\t\t\tthis._mouseDelayTimer = setTimeout( function() {\n\t\t\t\tthat.mouseDelayMet = true;\n\t\t\t}, this.options.delay );\n\t\t}\n\n\t\tif ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {\n\t\t\tthis._mouseStarted = ( this._mouseStart( event ) !== false );\n\t\t\tif ( !this._mouseStarted ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\t// Click event may never have fired (Gecko & Opera)\n\t\tif ( true === $.data( event.target, this.widgetName + \".preventClickEvent\" ) ) {\n\t\t\t$.removeData( event.target, this.widgetName + \".preventClickEvent\" );\n\t\t}\n\n\t\t// These delegates are required to keep context\n\t\tthis._mouseMoveDelegate = function( event ) {\n\t\t\treturn that._mouseMove( event );\n\t\t};\n\t\tthis._mouseUpDelegate = function( event ) {\n\t\t\treturn that._mouseUp( event );\n\t\t};\n\n\t\tthis.document\n\t\t\t.on( \"mousemove.\" + this.widgetName, this._mouseMoveDelegate )\n\t\t\t.on( \"mouseup.\" + this.widgetName, this._mouseUpDelegate );\n\n\t\tevent.preventDefault();\n\n\t\tmouseHandled = true;\n\t\treturn true;\n\t},\n\n\t_mouseMove: function( event ) {\n\n\t\t// Only check for mouseups outside the document if you've moved inside the document\n\t\t// at least once. This prevents the firing of mouseup in the case of IE<9, which will\n\t\t// fire a mousemove event if content is placed under the cursor. See #7778\n\t\t// Support: IE <9\n\t\tif ( this._mouseMoved ) {\n\n\t\t\t// IE mouseup check - mouseup happened when mouse was out of window\n\t\t\tif ( $.ui.ie && ( !document.documentMode || document.documentMode < 9 ) &&\n\t\t\t\t\t!event.button ) {\n\t\t\t\treturn this._mouseUp( event );\n\n\t\t\t// Iframe mouseup check - mouseup occurred in another document\n\t\t\t} else if ( !event.which ) {\n\n\t\t\t\t// Support: Safari <=8 - 9\n\t\t\t\t// Safari sets which to 0 if you press any of the following keys\n\t\t\t\t// during a drag (#14461)\n\t\t\t\tif ( event.originalEvent.altKey || event.originalEvent.ctrlKey ||\n\t\t\t\t\t\tevent.originalEvent.metaKey || event.originalEvent.shiftKey ) {\n\t\t\t\t\tthis.ignoreMissingWhich = true;\n\t\t\t\t} else if ( !this.ignoreMissingWhich ) {\n\t\t\t\t\treturn this._mouseUp( event );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( event.which || event.button ) {\n\t\t\tthis._mouseMoved = true;\n\t\t}\n\n\t\tif ( this._mouseStarted ) {\n\t\t\tthis._mouseDrag( event );\n\t\t\treturn event.preventDefault();\n\t\t}\n\n\t\tif ( this._mouseDistanceMet( event ) && this._mouseDelayMet( event ) ) {\n\t\t\tthis._mouseStarted =\n\t\t\t\t( this._mouseStart( this._mouseDownEvent, event ) !== false );\n\t\t\t( this._mouseStarted ? this._mouseDrag( event ) : this._mouseUp( event ) );\n\t\t}\n\n\t\treturn !this._mouseStarted;\n\t},\n\n\t_mouseUp: function( event ) {\n\t\tthis.document\n\t\t\t.off( \"mousemove.\" + this.widgetName, this._mouseMoveDelegate )\n\t\t\t.off( \"mouseup.\" + this.widgetName, this._mouseUpDelegate );\n\n\t\tif ( this._mouseStarted ) {\n\t\t\tthis._mouseStarted = false;\n\n\t\t\tif ( event.target === this._mouseDownEvent.target ) {\n\t\t\t\t$.data( event.target, this.widgetName + \".preventClickEvent\", true );\n\t\t\t}\n\n\t\t\tthis._mouseStop( event );\n\t\t}\n\n\t\tif ( this._mouseDelayTimer ) {\n\t\t\tclearTimeout( this._mouseDelayTimer );\n\t\t\tdelete this._mouseDelayTimer;\n\t\t}\n\n\t\tthis.ignoreMissingWhich = false;\n\t\tmouseHandled = false;\n\t\tevent.preventDefault();\n\t},\n\n\t_mouseDistanceMet: function( event ) {\n\t\treturn ( Math.max(\n\t\t\t\tMath.abs( this._mouseDownEvent.pageX - event.pageX ),\n\t\t\t\tMath.abs( this._mouseDownEvent.pageY - event.pageY )\n\t\t\t) >= this.options.distance\n\t\t);\n\t},\n\n\t_mouseDelayMet: function( /* event */ ) {\n\t\treturn this.mouseDelayMet;\n\t},\n\n\t// These are placeholder methods, to be overriden by extending plugin\n\t_mouseStart: function( /* event */ ) {},\n\t_mouseDrag: function( /* event */ ) {},\n\t_mouseStop: function( /* event */ ) {},\n\t_mouseCapture: function( /* event */ ) { return true; }\n} );\n\n\n/*!\n * jQuery UI Slider 1.12.1\n * http://jqueryui.com\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n//>>label: Slider\n//>>group: Widgets\n//>>description: Displays a flexible slider with ranges and accessibility via keyboard.\n//>>docs: http://api.jqueryui.com/slider/\n//>>demos: http://jqueryui.com/slider/\n//>>css.structure: ../../themes/base/core.css\n//>>css.structure: ../../themes/base/slider.css\n//>>css.theme: ../../themes/base/theme.css\n\n\n\nvar widgetsSlider = $.widget( \"ui.slider\", $.ui.mouse, {\n\tversion: \"1.12.1\",\n\twidgetEventPrefix: \"slide\",\n\n\toptions: {\n\t\tanimate: false,\n\t\tclasses: {\n\t\t\t\"ui-slider\": \"ui-corner-all\",\n\t\t\t\"ui-slider-handle\": \"ui-corner-all\",\n\n\t\t\t// Note: ui-widget-header isn't the most fittingly semantic framework class for this\n\t\t\t// element, but worked best visually with a variety of themes\n\t\t\t\"ui-slider-range\": \"ui-corner-all ui-widget-header\"\n\t\t},\n\t\tdistance: 0,\n\t\tmax: 100,\n\t\tmin: 0,\n\t\torientation: \"horizontal\",\n\t\trange: false,\n\t\tstep: 1,\n\t\tvalue: 0,\n\t\tvalues: null,\n\n\t\t// Callbacks\n\t\tchange: null,\n\t\tslide: null,\n\t\tstart: null,\n\t\tstop: null\n\t},\n\n\t// Number of pages in a slider\n\t// (how many times can you page up/down to go through the whole range)\n\tnumPages: 5,\n\n\t_create: function() {\n\t\tthis._keySliding = false;\n\t\tthis._mouseSliding = false;\n\t\tthis._animateOff = true;\n\t\tthis._handleIndex = null;\n\t\tthis._detectOrientation();\n\t\tthis._mouseInit();\n\t\tthis._calculateNewMax();\n\n\t\tthis._addClass( \"ui-slider ui-slider-\" + this.orientation,\n\t\t\t\"ui-widget ui-widget-content\" );\n\n\t\tthis._refresh();\n\n\t\tthis._animateOff = false;\n\t},\n\n\t_refresh: function() {\n\t\tthis._createRange();\n\t\tthis._createHandles();\n\t\tthis._setupEvents();\n\t\tthis._refreshValue();\n\t},\n\n\t_createHandles: function() {\n\t\tvar i, handleCount,\n\t\t\toptions = this.options,\n\t\t\texistingHandles = this.element.find( \".ui-slider-handle\" ),\n\t\t\thandle = \"<span tabindex='0'></span>\",\n\t\t\thandles = [];\n\n\t\thandleCount = ( options.values && options.values.length ) || 1;\n\n\t\tif ( existingHandles.length > handleCount ) {\n\t\t\texistingHandles.slice( handleCount ).remove();\n\t\t\texistingHandles = existingHandles.slice( 0, handleCount );\n\t\t}\n\n\t\tfor ( i = existingHandles.length; i < handleCount; i++ ) {\n\t\t\thandles.push( handle );\n\t\t}\n\n\t\tthis.handles = existingHandles.add( $( handles.join( \"\" ) ).appendTo( this.element ) );\n\n\t\tthis._addClass( this.handles, \"ui-slider-handle\", \"ui-state-default\" );\n\n\t\tthis.handle = this.handles.eq( 0 );\n\n\t\tthis.handles.each( function( i ) {\n\t\t\t$( this )\n\t\t\t\t.data( \"ui-slider-handle-index\", i )\n\t\t\t\t.attr( \"tabIndex\", 0 );\n\t\t} );\n\t},\n\n\t_createRange: function() {\n\t\tvar options = this.options;\n\n\t\tif ( options.range ) {\n\t\t\tif ( options.range === true ) {\n\t\t\t\tif ( !options.values ) {\n\t\t\t\t\toptions.values = [ this._valueMin(), this._valueMin() ];\n\t\t\t\t} else if ( options.values.length && options.values.length !== 2 ) {\n\t\t\t\t\toptions.values = [ options.values[ 0 ], options.values[ 0 ] ];\n\t\t\t\t} else if ( $.isArray( options.values ) ) {\n\t\t\t\t\toptions.values = options.values.slice( 0 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( !this.range || !this.range.length ) {\n\t\t\t\tthis.range = $( \"<div>\" )\n\t\t\t\t\t.appendTo( this.element );\n\n\t\t\t\tthis._addClass( this.range, \"ui-slider-range\" );\n\t\t\t} else {\n\t\t\t\tthis._removeClass( this.range, \"ui-slider-range-min ui-slider-range-max\" );\n\n\t\t\t\t// Handle range switching from true to min/max\n\t\t\t\tthis.range.css( {\n\t\t\t\t\t\"left\": \"\",\n\t\t\t\t\t\"bottom\": \"\"\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( options.range === \"min\" || options.range === \"max\" ) {\n\t\t\t\tthis._addClass( this.range, \"ui-slider-range-\" + options.range );\n\t\t\t}\n\t\t} else {\n\t\t\tif ( this.range ) {\n\t\t\t\tthis.range.remove();\n\t\t\t}\n\t\t\tthis.range = null;\n\t\t}\n\t},\n\n\t_setupEvents: function() {\n\t\tthis._off( this.handles );\n\t\tthis._on( this.handles, this._handleEvents );\n\t\tthis._hoverable( this.handles );\n\t\tthis._focusable( this.handles );\n\t},\n\n\t_destroy: function() {\n\t\tthis.handles.remove();\n\t\tif ( this.range ) {\n\t\t\tthis.range.remove();\n\t\t}\n\n\t\tthis._mouseDestroy();\n\t},\n\n\t_mouseCapture: function( event ) {\n\t\tvar position, normValue, distance, closestHandle, index, allowed, offset, mouseOverHandle,\n\t\t\tthat = this,\n\t\t\to = this.options;\n\n\t\tif ( o.disabled ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tthis.elementSize = {\n\t\t\twidth: this.element.outerWidth(),\n\t\t\theight: this.element.outerHeight()\n\t\t};\n\t\tthis.elementOffset = this.element.offset();\n\n\t\tposition = { x: event.pageX, y: event.pageY };\n\t\tnormValue = this._normValueFromMouse( position );\n\t\tdistance = this._valueMax() - this._valueMin() + 1;\n\t\tthis.handles.each( function( i ) {\n\t\t\tvar thisDistance = Math.abs( normValue - that.values( i ) );\n\t\t\tif ( ( distance > thisDistance ) ||\n\t\t\t\t( distance === thisDistance &&\n\t\t\t\t\t( i === that._lastChangedValue || that.values( i ) === o.min ) ) ) {\n\t\t\t\tdistance = thisDistance;\n\t\t\t\tclosestHandle = $( this );\n\t\t\t\tindex = i;\n\t\t\t}\n\t\t} );\n\n\t\tallowed = this._start( event, index );\n\t\tif ( allowed === false ) {\n\t\t\treturn false;\n\t\t}\n\t\tthis._mouseSliding = true;\n\n\t\tthis._handleIndex = index;\n\n\t\tthis._addClass( closestHandle, null, \"ui-state-active\" );\n\t\tclosestHandle.trigger( \"focus\" );\n\n\t\toffset = closestHandle.offset();\n\t\tmouseOverHandle = !$( event.target ).parents().addBack().is( \".ui-slider-handle\" );\n\t\tthis._clickOffset = mouseOverHandle ? { left: 0, top: 0 } : {\n\t\t\tleft: event.pageX - offset.left - ( closestHandle.width() / 2 ),\n\t\t\ttop: event.pageY - offset.top -\n\t\t\t\t( closestHandle.height() / 2 ) -\n\t\t\t\t( parseInt( closestHandle.css( \"borderTopWidth\" ), 10 ) || 0 ) -\n\t\t\t\t( parseInt( closestHandle.css( \"borderBottomWidth\" ), 10 ) || 0 ) +\n\t\t\t\t( parseInt( closestHandle.css( \"marginTop\" ), 10 ) || 0 )\n\t\t};\n\n\t\tif ( !this.handles.hasClass( \"ui-state-hover\" ) ) {\n\t\t\tthis._slide( event, index, normValue );\n\t\t}\n\t\tthis._animateOff = true;\n\t\treturn true;\n\t},\n\n\t_mouseStart: function() {\n\t\treturn true;\n\t},\n\n\t_mouseDrag: function( event ) {\n\t\tvar position = { x: event.pageX, y: event.pageY },\n\t\t\tnormValue = this._normValueFromMouse( position );\n\n\t\tthis._slide( event, this._handleIndex, normValue );\n\n\t\treturn false;\n\t},\n\n\t_mouseStop: function( event ) {\n\t\tthis._removeClass( this.handles, null, \"ui-state-active\" );\n\t\tthis._mouseSliding = false;\n\n\t\tthis._stop( event, this._handleIndex );\n\t\tthis._change( event, this._handleIndex );\n\n\t\tthis._handleIndex = null;\n\t\tthis._clickOffset = null;\n\t\tthis._animateOff = false;\n\n\t\treturn false;\n\t},\n\n\t_detectOrientation: function() {\n\t\tthis.orientation = ( this.options.orientation === \"vertical\" ) ? \"vertical\" : \"horizontal\";\n\t},\n\n\t_normValueFromMouse: function( position ) {\n\t\tvar pixelTotal,\n\t\t\tpixelMouse,\n\t\t\tpercentMouse,\n\t\t\tvalueTotal,\n\t\t\tvalueMouse;\n\n\t\tif ( this.orientation === \"horizontal\" ) {\n\t\t\tpixelTotal = this.elementSize.width;\n\t\t\tpixelMouse = position.x - this.elementOffset.left -\n\t\t\t\t( this._clickOffset ? this._clickOffset.left : 0 );\n\t\t} else {\n\t\t\tpixelTotal = this.elementSize.height;\n\t\t\tpixelMouse = position.y - this.elementOffset.top -\n\t\t\t\t( this._clickOffset ? this._clickOffset.top : 0 );\n\t\t}\n\n\t\tpercentMouse = ( pixelMouse / pixelTotal );\n\t\tif ( percentMouse > 1 ) {\n\t\t\tpercentMouse = 1;\n\t\t}\n\t\tif ( percentMouse < 0 ) {\n\t\t\tpercentMouse = 0;\n\t\t}\n\t\tif ( this.orientation === \"vertical\" ) {\n\t\t\tpercentMouse = 1 - percentMouse;\n\t\t}\n\n\t\tvalueTotal = this._valueMax() - this._valueMin();\n\t\tvalueMouse = this._valueMin() + percentMouse * valueTotal;\n\n\t\treturn this._trimAlignValue( valueMouse );\n\t},\n\n\t_uiHash: function( index, value, values ) {\n\t\tvar uiHash = {\n\t\t\thandle: this.handles[ index ],\n\t\t\thandleIndex: index,\n\t\t\tvalue: value !== undefined ? value : this.value()\n\t\t};\n\n\t\tif ( this._hasMultipleValues() ) {\n\t\t\tuiHash.value = value !== undefined ? value : this.values( index );\n\t\t\tuiHash.values = values || this.values();\n\t\t}\n\n\t\treturn uiHash;\n\t},\n\n\t_hasMultipleValues: function() {\n\t\treturn this.options.values && this.options.values.length;\n\t},\n\n\t_start: function( event, index ) {\n\t\treturn this._trigger( \"start\", event, this._uiHash( index ) );\n\t},\n\n\t_slide: function( event, index, newVal ) {\n\t\tvar allowed, otherVal,\n\t\t\tcurrentValue = this.value(),\n\t\t\tnewValues = this.values();\n\n\t\tif ( this._hasMultipleValues() ) {\n\t\t\totherVal = this.values( index ? 0 : 1 );\n\t\t\tcurrentValue = this.values( index );\n\n\t\t\tif ( this.options.values.length === 2 && this.options.range === true ) {\n\t\t\t\tnewVal =  index === 0 ? Math.min( otherVal, newVal ) : Math.max( otherVal, newVal );\n\t\t\t}\n\n\t\t\tnewValues[ index ] = newVal;\n\t\t}\n\n\t\tif ( newVal === currentValue ) {\n\t\t\treturn;\n\t\t}\n\n\t\tallowed = this._trigger( \"slide\", event, this._uiHash( index, newVal, newValues ) );\n\n\t\t// A slide can be canceled by returning false from the slide callback\n\t\tif ( allowed === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( this._hasMultipleValues() ) {\n\t\t\tthis.values( index, newVal );\n\t\t} else {\n\t\t\tthis.value( newVal );\n\t\t}\n\t},\n\n\t_stop: function( event, index ) {\n\t\tthis._trigger( \"stop\", event, this._uiHash( index ) );\n\t},\n\n\t_change: function( event, index ) {\n\t\tif ( !this._keySliding && !this._mouseSliding ) {\n\n\t\t\t//store the last changed value index for reference when handles overlap\n\t\t\tthis._lastChangedValue = index;\n\t\t\tthis._trigger( \"change\", event, this._uiHash( index ) );\n\t\t}\n\t},\n\n\tvalue: function( newValue ) {\n\t\tif ( arguments.length ) {\n\t\t\tthis.options.value = this._trimAlignValue( newValue );\n\t\t\tthis._refreshValue();\n\t\t\tthis._change( null, 0 );\n\t\t\treturn;\n\t\t}\n\n\t\treturn this._value();\n\t},\n\n\tvalues: function( index, newValue ) {\n\t\tvar vals,\n\t\t\tnewValues,\n\t\t\ti;\n\n\t\tif ( arguments.length > 1 ) {\n\t\t\tthis.options.values[ index ] = this._trimAlignValue( newValue );\n\t\t\tthis._refreshValue();\n\t\t\tthis._change( null, index );\n\t\t\treturn;\n\t\t}\n\n\t\tif ( arguments.length ) {\n\t\t\tif ( $.isArray( arguments[ 0 ] ) ) {\n\t\t\t\tvals = this.options.values;\n\t\t\t\tnewValues = arguments[ 0 ];\n\t\t\t\tfor ( i = 0; i < vals.length; i += 1 ) {\n\t\t\t\t\tvals[ i ] = this._trimAlignValue( newValues[ i ] );\n\t\t\t\t\tthis._change( null, i );\n\t\t\t\t}\n\t\t\t\tthis._refreshValue();\n\t\t\t} else {\n\t\t\t\tif ( this._hasMultipleValues() ) {\n\t\t\t\t\treturn this._values( index );\n\t\t\t\t} else {\n\t\t\t\t\treturn this.value();\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\treturn this._values();\n\t\t}\n\t},\n\n\t_setOption: function( key, value ) {\n\t\tvar i,\n\t\t\tvalsLength = 0;\n\n\t\tif ( key === \"range\" && this.options.range === true ) {\n\t\t\tif ( value === \"min\" ) {\n\t\t\t\tthis.options.value = this._values( 0 );\n\t\t\t\tthis.options.values = null;\n\t\t\t} else if ( value === \"max\" ) {\n\t\t\t\tthis.options.value = this._values( this.options.values.length - 1 );\n\t\t\t\tthis.options.values = null;\n\t\t\t}\n\t\t}\n\n\t\tif ( $.isArray( this.options.values ) ) {\n\t\t\tvalsLength = this.options.values.length;\n\t\t}\n\n\t\tthis._super( key, value );\n\n\t\tswitch ( key ) {\n\t\t\tcase \"orientation\":\n\t\t\t\tthis._detectOrientation();\n\t\t\t\tthis._removeClass( \"ui-slider-horizontal ui-slider-vertical\" )\n\t\t\t\t\t._addClass( \"ui-slider-\" + this.orientation );\n\t\t\t\tthis._refreshValue();\n\t\t\t\tif ( this.options.range ) {\n\t\t\t\t\tthis._refreshRange( value );\n\t\t\t\t}\n\n\t\t\t\t// Reset positioning from previous orientation\n\t\t\t\tthis.handles.css( value === \"horizontal\" ? \"bottom\" : \"left\", \"\" );\n\t\t\t\tbreak;\n\t\t\tcase \"value\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refreshValue();\n\t\t\t\tthis._change( null, 0 );\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"values\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refreshValue();\n\n\t\t\t\t// Start from the last handle to prevent unreachable handles (#9046)\n\t\t\t\tfor ( i = valsLength - 1; i >= 0; i-- ) {\n\t\t\t\t\tthis._change( null, i );\n\t\t\t\t}\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"step\":\n\t\t\tcase \"min\":\n\t\t\tcase \"max\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._calculateNewMax();\n\t\t\t\tthis._refreshValue();\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t\tcase \"range\":\n\t\t\t\tthis._animateOff = true;\n\t\t\t\tthis._refresh();\n\t\t\t\tthis._animateOff = false;\n\t\t\t\tbreak;\n\t\t}\n\t},\n\n\t_setOptionDisabled: function( value ) {\n\t\tthis._super( value );\n\n\t\tthis._toggleClass( null, \"ui-state-disabled\", !!value );\n\t},\n\n\t//internal value getter\n\t// _value() returns value trimmed by min and max, aligned by step\n\t_value: function() {\n\t\tvar val = this.options.value;\n\t\tval = this._trimAlignValue( val );\n\n\t\treturn val;\n\t},\n\n\t//internal values getter\n\t// _values() returns array of values trimmed by min and max, aligned by step\n\t// _values( index ) returns single value trimmed by min and max, aligned by step\n\t_values: function( index ) {\n\t\tvar val,\n\t\t\tvals,\n\t\t\ti;\n\n\t\tif ( arguments.length ) {\n\t\t\tval = this.options.values[ index ];\n\t\t\tval = this._trimAlignValue( val );\n\n\t\t\treturn val;\n\t\t} else if ( this._hasMultipleValues() ) {\n\n\t\t\t// .slice() creates a copy of the array\n\t\t\t// this copy gets trimmed by min and max and then returned\n\t\t\tvals = this.options.values.slice();\n\t\t\tfor ( i = 0; i < vals.length; i += 1 ) {\n\t\t\t\tvals[ i ] = this._trimAlignValue( vals[ i ] );\n\t\t\t}\n\n\t\t\treturn vals;\n\t\t} else {\n\t\t\treturn [];\n\t\t}\n\t},\n\n\t// Returns the step-aligned value that val is closest to, between (inclusive) min and max\n\t_trimAlignValue: function( val ) {\n\t\tif ( val <= this._valueMin() ) {\n\t\t\treturn this._valueMin();\n\t\t}\n\t\tif ( val >= this._valueMax() ) {\n\t\t\treturn this._valueMax();\n\t\t}\n\t\tvar step = ( this.options.step > 0 ) ? this.options.step : 1,\n\t\t\tvalModStep = ( val - this._valueMin() ) % step,\n\t\t\talignValue = val - valModStep;\n\n\t\tif ( Math.abs( valModStep ) * 2 >= step ) {\n\t\t\talignValue += ( valModStep > 0 ) ? step : ( -step );\n\t\t}\n\n\t\t// Since JavaScript has problems with large floats, round\n\t\t// the final value to 5 digits after the decimal point (see #4124)\n\t\treturn parseFloat( alignValue.toFixed( 5 ) );\n\t},\n\n\t_calculateNewMax: function() {\n\t\tvar max = this.options.max,\n\t\t\tmin = this._valueMin(),\n\t\t\tstep = this.options.step,\n\t\t\taboveMin = Math.round( ( max - min ) / step ) * step;\n\t\tmax = aboveMin + min;\n\t\tif ( max > this.options.max ) {\n\n\t\t\t//If max is not divisible by step, rounding off may increase its value\n\t\t\tmax -= step;\n\t\t}\n\t\tthis.max = parseFloat( max.toFixed( this._precision() ) );\n\t},\n\n\t_precision: function() {\n\t\tvar precision = this._precisionOf( this.options.step );\n\t\tif ( this.options.min !== null ) {\n\t\t\tprecision = Math.max( precision, this._precisionOf( this.options.min ) );\n\t\t}\n\t\treturn precision;\n\t},\n\n\t_precisionOf: function( num ) {\n\t\tvar str = num.toString(),\n\t\t\tdecimal = str.indexOf( \".\" );\n\t\treturn decimal === -1 ? 0 : str.length - decimal - 1;\n\t},\n\n\t_valueMin: function() {\n\t\treturn this.options.min;\n\t},\n\n\t_valueMax: function() {\n\t\treturn this.max;\n\t},\n\n\t_refreshRange: function( orientation ) {\n\t\tif ( orientation === \"vertical\" ) {\n\t\t\tthis.range.css( { \"width\": \"\", \"left\": \"\" } );\n\t\t}\n\t\tif ( orientation === \"horizontal\" ) {\n\t\t\tthis.range.css( { \"height\": \"\", \"bottom\": \"\" } );\n\t\t}\n\t},\n\n\t_refreshValue: function() {\n\t\tvar lastValPercent, valPercent, value, valueMin, valueMax,\n\t\t\toRange = this.options.range,\n\t\t\to = this.options,\n\t\t\tthat = this,\n\t\t\tanimate = ( !this._animateOff ) ? o.animate : false,\n\t\t\t_set = {};\n\n\t\tif ( this._hasMultipleValues() ) {\n\t\t\tthis.handles.each( function( i ) {\n\t\t\t\tvalPercent = ( that.values( i ) - that._valueMin() ) / ( that._valueMax() -\n\t\t\t\t\tthat._valueMin() ) * 100;\n\t\t\t\t_set[ that.orientation === \"horizontal\" ? \"left\" : \"bottom\" ] = valPercent + \"%\";\n\t\t\t\t$( this ).stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( _set, o.animate );\n\t\t\t\tif ( that.options.range === true ) {\n\t\t\t\t\tif ( that.orientation === \"horizontal\" ) {\n\t\t\t\t\t\tif ( i === 0 ) {\n\t\t\t\t\t\t\tthat.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( {\n\t\t\t\t\t\t\t\tleft: valPercent + \"%\"\n\t\t\t\t\t\t\t}, o.animate );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( i === 1 ) {\n\t\t\t\t\t\t\tthat.range[ animate ? \"animate\" : \"css\" ]( {\n\t\t\t\t\t\t\t\twidth: ( valPercent - lastValPercent ) + \"%\"\n\t\t\t\t\t\t\t}, {\n\t\t\t\t\t\t\t\tqueue: false,\n\t\t\t\t\t\t\t\tduration: o.animate\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif ( i === 0 ) {\n\t\t\t\t\t\t\tthat.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( {\n\t\t\t\t\t\t\t\tbottom: ( valPercent ) + \"%\"\n\t\t\t\t\t\t\t}, o.animate );\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( i === 1 ) {\n\t\t\t\t\t\t\tthat.range[ animate ? \"animate\" : \"css\" ]( {\n\t\t\t\t\t\t\t\theight: ( valPercent - lastValPercent ) + \"%\"\n\t\t\t\t\t\t\t}, {\n\t\t\t\t\t\t\t\tqueue: false,\n\t\t\t\t\t\t\t\tduration: o.animate\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tlastValPercent = valPercent;\n\t\t\t} );\n\t\t} else {\n\t\t\tvalue = this.value();\n\t\t\tvalueMin = this._valueMin();\n\t\t\tvalueMax = this._valueMax();\n\t\t\tvalPercent = ( valueMax !== valueMin ) ?\n\t\t\t\t\t( value - valueMin ) / ( valueMax - valueMin ) * 100 :\n\t\t\t\t\t0;\n\t\t\t_set[ this.orientation === \"horizontal\" ? \"left\" : \"bottom\" ] = valPercent + \"%\";\n\t\t\tthis.handle.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( _set, o.animate );\n\n\t\t\tif ( oRange === \"min\" && this.orientation === \"horizontal\" ) {\n\t\t\t\tthis.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( {\n\t\t\t\t\twidth: valPercent + \"%\"\n\t\t\t\t}, o.animate );\n\t\t\t}\n\t\t\tif ( oRange === \"max\" && this.orientation === \"horizontal\" ) {\n\t\t\t\tthis.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( {\n\t\t\t\t\twidth: ( 100 - valPercent ) + \"%\"\n\t\t\t\t}, o.animate );\n\t\t\t}\n\t\t\tif ( oRange === \"min\" && this.orientation === \"vertical\" ) {\n\t\t\t\tthis.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( {\n\t\t\t\t\theight: valPercent + \"%\"\n\t\t\t\t}, o.animate );\n\t\t\t}\n\t\t\tif ( oRange === \"max\" && this.orientation === \"vertical\" ) {\n\t\t\t\tthis.range.stop( 1, 1 )[ animate ? \"animate\" : \"css\" ]( {\n\t\t\t\t\theight: ( 100 - valPercent ) + \"%\"\n\t\t\t\t}, o.animate );\n\t\t\t}\n\t\t}\n\t},\n\n\t_handleEvents: {\n\t\tkeydown: function( event ) {\n\t\t\tvar allowed, curVal, newVal, step,\n\t\t\t\tindex = $( event.target ).data( \"ui-slider-handle-index\" );\n\n\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\tcase $.ui.keyCode.END:\n\t\t\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\t\tcase $.ui.keyCode.UP:\n\t\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\tif ( !this._keySliding ) {\n\t\t\t\t\t\tthis._keySliding = true;\n\t\t\t\t\t\tthis._addClass( $( event.target ), null, \"ui-state-active\" );\n\t\t\t\t\t\tallowed = this._start( event, index );\n\t\t\t\t\t\tif ( allowed === false ) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tstep = this.options.step;\n\t\t\tif ( this._hasMultipleValues() ) {\n\t\t\t\tcurVal = newVal = this.values( index );\n\t\t\t} else {\n\t\t\t\tcurVal = newVal = this.value();\n\t\t\t}\n\n\t\t\tswitch ( event.keyCode ) {\n\t\t\t\tcase $.ui.keyCode.HOME:\n\t\t\t\t\tnewVal = this._valueMin();\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.END:\n\t\t\t\t\tnewVal = this._valueMax();\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.PAGE_UP:\n\t\t\t\t\tnewVal = this._trimAlignValue(\n\t\t\t\t\t\tcurVal + ( ( this._valueMax() - this._valueMin() ) / this.numPages )\n\t\t\t\t\t);\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.PAGE_DOWN:\n\t\t\t\t\tnewVal = this._trimAlignValue(\n\t\t\t\t\t\tcurVal - ( ( this._valueMax() - this._valueMin() ) / this.numPages ) );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.UP:\n\t\t\t\tcase $.ui.keyCode.RIGHT:\n\t\t\t\t\tif ( curVal === this._valueMax() ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tnewVal = this._trimAlignValue( curVal + step );\n\t\t\t\t\tbreak;\n\t\t\t\tcase $.ui.keyCode.DOWN:\n\t\t\t\tcase $.ui.keyCode.LEFT:\n\t\t\t\t\tif ( curVal === this._valueMin() ) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tnewVal = this._trimAlignValue( curVal - step );\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tthis._slide( event, index, newVal );\n\t\t},\n\t\tkeyup: function( event ) {\n\t\t\tvar index = $( event.target ).data( \"ui-slider-handle-index\" );\n\n\t\t\tif ( this._keySliding ) {\n\t\t\t\tthis._keySliding = false;\n\t\t\t\tthis._stop( event, index );\n\t\t\t\tthis._change( event, index );\n\t\t\t\tthis._removeClass( $( event.target ), null, \"ui-state-active\" );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n\n\n\n}));"
  },
  {
    "path": "public/landing/js/jquery.easing.1.3.js",
    "content": "/*\n * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/\n *\n * Uses the built in easing capabilities added In jQuery 1.1\n * to offer multiple easing options\n *\n * TERMS OF USE - jQuery Easing\n * \n * Open source under the BSD License. \n * \n * Copyright Ã‚Â© 2008 George McGinley Smith\n * All rights reserved.\n * \n * Redistribution and use in source and binary forms, with or without modification, \n * are permitted provided that the following conditions are met:\n * \n * Redistributions of source code must retain the above copyright notice, this list of \n * conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice, this list \n * of conditions and the following disclaimer in the documentation and/or other materials \n * provided with the distribution.\n * \n * Neither the name of the author nor the names of contributors may be used to endorse \n * or promote products derived from this software without specific prior written permission.\n * \n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY \n * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED \n * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \n * OF THE POSSIBILITY OF SUCH DAMAGE. \n *\n*/\n\n// t: current time, b: begInnIng value, c: change In value, d: duration\njQuery.easing['jswing'] = jQuery.easing['swing'];\n\njQuery.extend( jQuery.easing,\n{\n\tdef: 'easeOutQuad',\n\tswing: function (x, t, b, c, d) {\n\t\t//alert(jQuery.easing.default);\n\t\treturn jQuery.easing[jQuery.easing.def](x, t, b, c, d);\n\t},\n\teaseInQuad: function (x, t, b, c, d) {\n\t\treturn c*(t/=d)*t + b;\n\t},\n\teaseOutQuad: function (x, t, b, c, d) {\n\t\treturn -c *(t/=d)*(t-2) + b;\n\t},\n\teaseInOutQuad: function (x, t, b, c, d) {\n\t\tif ((t/=d/2) < 1) return c/2*t*t + b;\n\t\treturn -c/2 * ((--t)*(t-2) - 1) + b;\n\t},\n\teaseInCubic: function (x, t, b, c, d) {\n\t\treturn c*(t/=d)*t*t + b;\n\t},\n\teaseOutCubic: function (x, t, b, c, d) {\n\t\treturn c*((t=t/d-1)*t*t + 1) + b;\n\t},\n\teaseInOutCubic: function (x, t, b, c, d) {\n\t\tif ((t/=d/2) < 1) return c/2*t*t*t + b;\n\t\treturn c/2*((t-=2)*t*t + 2) + b;\n\t},\n\teaseInQuart: function (x, t, b, c, d) {\n\t\treturn c*(t/=d)*t*t*t + b;\n\t},\n\teaseOutQuart: function (x, t, b, c, d) {\n\t\treturn -c * ((t=t/d-1)*t*t*t - 1) + b;\n\t},\n\teaseInOutQuart: function (x, t, b, c, d) {\n\t\tif ((t/=d/2) < 1) return c/2*t*t*t*t + b;\n\t\treturn -c/2 * ((t-=2)*t*t*t - 2) + b;\n\t},\n\teaseInQuint: function (x, t, b, c, d) {\n\t\treturn c*(t/=d)*t*t*t*t + b;\n\t},\n\teaseOutQuint: function (x, t, b, c, d) {\n\t\treturn c*((t=t/d-1)*t*t*t*t + 1) + b;\n\t},\n\teaseInOutQuint: function (x, t, b, c, d) {\n\t\tif ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;\n\t\treturn c/2*((t-=2)*t*t*t*t + 2) + b;\n\t},\n\teaseInSine: function (x, t, b, c, d) {\n\t\treturn -c * Math.cos(t/d * (Math.PI/2)) + c + b;\n\t},\n\teaseOutSine: function (x, t, b, c, d) {\n\t\treturn c * Math.sin(t/d * (Math.PI/2)) + b;\n\t},\n\teaseInOutSine: function (x, t, b, c, d) {\n\t\treturn -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;\n\t},\n\teaseInExpo: function (x, t, b, c, d) {\n\t\treturn (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;\n\t},\n\teaseOutExpo: function (x, t, b, c, d) {\n\t\treturn (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;\n\t},\n\teaseInOutExpo: function (x, t, b, c, d) {\n\t\tif (t==0) return b;\n\t\tif (t==d) return b+c;\n\t\tif ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;\n\t\treturn c/2 * (-Math.pow(2, -10 * --t) + 2) + b;\n\t},\n\teaseInCirc: function (x, t, b, c, d) {\n\t\treturn -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;\n\t},\n\teaseOutCirc: function (x, t, b, c, d) {\n\t\treturn c * Math.sqrt(1 - (t=t/d-1)*t) + b;\n\t},\n\teaseInOutCirc: function (x, t, b, c, d) {\n\t\tif ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;\n\t\treturn c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;\n\t},\n\teaseInElastic: function (x, t, b, c, d) {\n\t\tvar s=1.70158;var p=0;var a=c;\n\t\tif (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;\n\t\tif (a < Math.abs(c)) { a=c; var s=p/4; }\n\t\telse var s = p/(2*Math.PI) * Math.asin (c/a);\n\t\treturn -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;\n\t},\n\teaseOutElastic: function (x, t, b, c, d) {\n\t\tvar s=1.70158;var p=0;var a=c;\n\t\tif (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;\n\t\tif (a < Math.abs(c)) { a=c; var s=p/4; }\n\t\telse var s = p/(2*Math.PI) * Math.asin (c/a);\n\t\treturn a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;\n\t},\n\teaseInOutElastic: function (x, t, b, c, d) {\n\t\tvar s=1.70158;var p=0;var a=c;\n\t\tif (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);\n\t\tif (a < Math.abs(c)) { a=c; var s=p/4; }\n\t\telse var s = p/(2*Math.PI) * Math.asin (c/a);\n\t\tif (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;\n\t\treturn a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;\n\t},\n\teaseInBack: function (x, t, b, c, d, s) {\n\t\tif (s == undefined) s = 1.70158;\n\t\treturn c*(t/=d)*t*((s+1)*t - s) + b;\n\t},\n\teaseOutBack: function (x, t, b, c, d, s) {\n\t\tif (s == undefined) s = 1.70158;\n\t\treturn c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;\n\t},\n\teaseInOutBack: function (x, t, b, c, d, s) {\n\t\tif (s == undefined) s = 1.70158; \n\t\tif ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;\n\t\treturn c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;\n\t},\n\teaseInBounce: function (x, t, b, c, d) {\n\t\treturn c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;\n\t},\n\teaseOutBounce: function (x, t, b, c, d) {\n\t\tif ((t/=d) < (1/2.75)) {\n\t\t\treturn c*(7.5625*t*t) + b;\n\t\t} else if (t < (2/2.75)) {\n\t\t\treturn c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;\n\t\t} else if (t < (2.5/2.75)) {\n\t\t\treturn c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;\n\t\t} else {\n\t\t\treturn c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;\n\t\t}\n\t},\n\teaseInOutBounce: function (x, t, b, c, d) {\n\t\tif (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;\n\t\treturn jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;\n\t}\n});\n\n/*\n *\n * TERMS OF USE - EASING EQUATIONS\n * \n * Open source under the BSD License. \n * \n * Copyright Ã‚Â© 2001 Robert Penner\n * All rights reserved.\n * \n * Redistribution and use in source and binary forms, with or without modification, \n * are permitted provided that the following conditions are met:\n * \n * Redistributions of source code must retain the above copyright notice, this list of \n * conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright notice, this list \n * of conditions and the following disclaimer in the documentation and/or other materials \n * provided with the distribution.\n * \n * Neither the name of the author nor the names of contributors may be used to endorse \n * or promote products derived from this software without specific prior written permission.\n * \n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY \n * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE\n *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE\n *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED \n * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED \n * OF THE POSSIBILITY OF SUCH DAMAGE. \n *\n */"
  },
  {
    "path": "public/landing/js/jquery.sticky.js",
    "content": "// Sticky Plugin v1.0.4 for jQuery\n// =============\n// Author: Anthony Garand\n// Improvements by German M. Bravo (Kronuz) and Ruud Kamphuis (ruudk)\n// Improvements by Leonardo C. Daronco (daronco)\n// Created: 02/14/2011\n// Date: 07/20/2015\n// Website: http://stickyjs.com/\n// Description: Makes an element on the page stick on the screen as you scroll\n//              It will only set the 'top' and 'position' of your element, you\n//              might need to adjust the width in some cases.\n\n(function (factory) {\n    if (typeof define === 'function' && define.amd) {\n        // AMD. Register as an anonymous module.\n        define(['jquery'], factory);\n    } else if (typeof module === 'object' && module.exports) {\n        // Node/CommonJS\n        module.exports = factory(require('jquery'));\n    } else {\n        // Browser globals\n        factory(jQuery);\n    }\n}(function ($) {\n    var slice = Array.prototype.slice; // save ref to original slice()\n    var splice = Array.prototype.splice; // save ref to original slice()\n\n  var defaults = {\n      topSpacing: 0,\n      bottomSpacing: 0,\n      className: 'is-sticky',\n      wrapperClassName: 'sticky-wrapper',\n      center: false,\n      getWidthFrom: '',\n      widthFromWrapper: true, // works only when .getWidthFrom is empty\n      responsiveWidth: false,\n      zIndex: 'inherit'\n    },\n    $window = $(window),\n    $document = $(document),\n    sticked = [],\n    windowHeight = $window.height(),\n    scroller = function() {\n      var scrollTop = $window.scrollTop(),\n        documentHeight = $document.height(),\n        dwh = documentHeight - windowHeight,\n        extra = (scrollTop > dwh) ? dwh - scrollTop : 0;\n\n      for (var i = 0, l = sticked.length; i < l; i++) {\n        var s = sticked[i],\n          elementTop = s.stickyWrapper.offset().top,\n          etse = elementTop - s.topSpacing - extra;\n\n        //update height in case of dynamic content\n        s.stickyWrapper.css('height', s.stickyElement.outerHeight());\n\n        if (scrollTop <= etse) {\n          if (s.currentTop !== null) {\n            s.stickyElement\n              .css({\n                'width': '',\n                'position': '',\n                'top': '',\n                'z-index': ''\n              });\n            s.stickyElement.parent().removeClass(s.className);\n            s.stickyElement.trigger('sticky-end', [s]);\n            s.currentTop = null;\n          }\n        }\n        else {\n          var newTop = documentHeight - s.stickyElement.outerHeight()\n            - s.topSpacing - s.bottomSpacing - scrollTop - extra;\n          if (newTop < 0) {\n            newTop = newTop + s.topSpacing;\n          } else {\n            newTop = s.topSpacing;\n          }\n          if (s.currentTop !== newTop) {\n            var newWidth;\n            if (s.getWidthFrom) {\n                padding =  s.stickyElement.innerWidth() - s.stickyElement.width();\n                newWidth = $(s.getWidthFrom).width() - padding || null;\n            } else if (s.widthFromWrapper) {\n                newWidth = s.stickyWrapper.width();\n            }\n            if (newWidth == null) {\n                newWidth = s.stickyElement.width();\n            }\n            s.stickyElement\n              .css('width', newWidth)\n              .css('position', 'fixed')\n              .css('top', newTop)\n              .css('z-index', s.zIndex);\n\n            s.stickyElement.parent().addClass(s.className);\n\n            if (s.currentTop === null) {\n              s.stickyElement.trigger('sticky-start', [s]);\n            } else {\n              // sticky is started but it have to be repositioned\n              s.stickyElement.trigger('sticky-update', [s]);\n            }\n\n            if (s.currentTop === s.topSpacing && s.currentTop > newTop || s.currentTop === null && newTop < s.topSpacing) {\n              // just reached bottom || just started to stick but bottom is already reached\n              s.stickyElement.trigger('sticky-bottom-reached', [s]);\n            } else if(s.currentTop !== null && newTop === s.topSpacing && s.currentTop < newTop) {\n              // sticky is started && sticked at topSpacing && overflowing from top just finished\n              s.stickyElement.trigger('sticky-bottom-unreached', [s]);\n            }\n\n            s.currentTop = newTop;\n          }\n\n          // Check if sticky has reached end of container and stop sticking\n          var stickyWrapperContainer = s.stickyWrapper.parent();\n          var unstick = (s.stickyElement.offset().top + s.stickyElement.outerHeight() >= stickyWrapperContainer.offset().top + stickyWrapperContainer.outerHeight()) && (s.stickyElement.offset().top <= s.topSpacing);\n\n          if( unstick ) {\n            s.stickyElement\n              .css('position', 'absolute')\n              .css('top', '')\n              .css('bottom', 0)\n              .css('z-index', '');\n          } else {\n            s.stickyElement\n              .css('position', 'fixed')\n              .css('top', newTop)\n              .css('bottom', '')\n              .css('z-index', s.zIndex);\n          }\n        }\n      }\n    },\n    resizer = function() {\n      windowHeight = $window.height();\n\n      for (var i = 0, l = sticked.length; i < l; i++) {\n        var s = sticked[i];\n        var newWidth = null;\n        if (s.getWidthFrom) {\n            if (s.responsiveWidth) {\n                newWidth = $(s.getWidthFrom).width();\n            }\n        } else if(s.widthFromWrapper) {\n            newWidth = s.stickyWrapper.width();\n        }\n        if (newWidth != null) {\n            s.stickyElement.css('width', newWidth);\n        }\n      }\n    },\n    methods = {\n      init: function(options) {\n        return this.each(function() {\n          var o = $.extend({}, defaults, options);\n          var stickyElement = $(this);\n\n          var stickyId = stickyElement.attr('id');\n          var wrapperId = stickyId ? stickyId + '-' + defaults.wrapperClassName : defaults.wrapperClassName;\n          var wrapper = $('<div></div>')\n            .attr('id', wrapperId)\n            .addClass(o.wrapperClassName);\n\n          stickyElement.wrapAll(function() {\n            if ($(this).parent(\"#\" + wrapperId).length == 0) {\n                    return wrapper;\n            }\n});\n\n          var stickyWrapper = stickyElement.parent();\n\n          if (o.center) {\n            stickyWrapper.css({width:stickyElement.outerWidth(),marginLeft:\"auto\",marginRight:\"auto\"});\n          }\n\n          if (stickyElement.css(\"float\") === \"right\") {\n            stickyElement.css({\"float\":\"none\"}).parent().css({\"float\":\"right\"});\n          }\n\n          o.stickyElement = stickyElement;\n          o.stickyWrapper = stickyWrapper;\n          o.currentTop    = null;\n\n          sticked.push(o);\n\n          methods.setWrapperHeight(this);\n          methods.setupChangeListeners(this);\n        });\n      },\n\n      setWrapperHeight: function(stickyElement) {\n        var element = $(stickyElement);\n        var stickyWrapper = element.parent();\n        if (stickyWrapper) {\n          stickyWrapper.css('height', element.outerHeight());\n        }\n      },\n\n      setupChangeListeners: function(stickyElement) {\n        if (window.MutationObserver) {\n          var mutationObserver = new window.MutationObserver(function(mutations) {\n            if (mutations[0].addedNodes.length || mutations[0].removedNodes.length) {\n              methods.setWrapperHeight(stickyElement);\n            }\n          });\n          mutationObserver.observe(stickyElement, {subtree: true, childList: true});\n        } else {\n          if (window.addEventListener) {\n            stickyElement.addEventListener('DOMNodeInserted', function() {\n              methods.setWrapperHeight(stickyElement);\n            }, false);\n            stickyElement.addEventListener('DOMNodeRemoved', function() {\n              methods.setWrapperHeight(stickyElement);\n            }, false);\n          } else if (window.attachEvent) {\n            stickyElement.attachEvent('onDOMNodeInserted', function() {\n              methods.setWrapperHeight(stickyElement);\n            });\n            stickyElement.attachEvent('onDOMNodeRemoved', function() {\n              methods.setWrapperHeight(stickyElement);\n            });\n          }\n        }\n      },\n      update: scroller,\n      unstick: function(options) {\n        return this.each(function() {\n          var that = this;\n          var unstickyElement = $(that);\n\n          var removeIdx = -1;\n          var i = sticked.length;\n          while (i-- > 0) {\n            if (sticked[i].stickyElement.get(0) === that) {\n                splice.call(sticked,i,1);\n                removeIdx = i;\n            }\n          }\n          if(removeIdx !== -1) {\n            unstickyElement.unwrap();\n            unstickyElement\n              .css({\n                'width': '',\n                'position': '',\n                'top': '',\n                'float': '',\n                'z-index': ''\n              })\n            ;\n          }\n        });\n      }\n    };\n\n  // should be more efficient than using $window.scroll(scroller) and $window.resize(resizer):\n  if (window.addEventListener) {\n    window.addEventListener('scroll', scroller, false);\n    window.addEventListener('resize', resizer, false);\n  } else if (window.attachEvent) {\n    window.attachEvent('onscroll', scroller);\n    window.attachEvent('onresize', resizer);\n  }\n\n  $.fn.sticky = function(method) {\n    if (methods[method]) {\n      return methods[method].apply(this, slice.call(arguments, 1));\n    } else if (typeof method === 'object' || !method ) {\n      return methods.init.apply( this, arguments );\n    } else {\n      $.error('Method ' + method + ' does not exist on jQuery.sticky');\n    }\n  };\n\n  $.fn.unstick = function(method) {\n    if (methods[method]) {\n      return methods[method].apply(this, slice.call(arguments, 1));\n    } else if (typeof method === 'object' || !method ) {\n      return methods.unstick.apply( this, arguments );\n    } else {\n      $.error('Method ' + method + ' does not exist on jQuery.sticky');\n    }\n  };\n  $(function() {\n    setTimeout(scroller, 0);\n  });\n}));"
  },
  {
    "path": "public/landing/js/main.js",
    "content": " AOS.init({\n \tduration: 800,\n \teasing: 'slide',\n \tonce: false\n });\n\njQuery(document).ready(function($) {\n\n\t\"use strict\";\n\n\t\n\n\tvar siteMenuClone = function() {\n\n\t\t$('.js-clone-nav').each(function() {\n\t\t\tvar $this = $(this);\n\t\t\t$this.clone().attr('class', 'site-nav-wrap').appendTo('.site-mobile-menu-body');\n\t\t});\n\n\n\t\tsetTimeout(function() {\n\t\t\t\n\t\t\tvar counter = 0;\n      $('.site-mobile-menu .has-children').each(function(){\n        var $this = $(this);\n        \n        $this.prepend('<span class=\"arrow-collapse collapsed\">');\n\n        $this.find('.arrow-collapse').attr({\n          'data-toggle' : 'collapse',\n          'data-target' : '#collapseItem' + counter,\n        });\n\n        $this.find('> ul').attr({\n          'class' : 'collapse',\n          'id' : 'collapseItem' + counter,\n        });\n\n        counter++;\n\n      });\n\n    }, 1000);\n\n\t\t$('body').on('click', '.arrow-collapse', function(e) {\n      var $this = $(this);\n      if ( $this.closest('li').find('.collapse').hasClass('show') ) {\n        $this.removeClass('active');\n      } else {\n        $this.addClass('active');\n      }\n      e.preventDefault();  \n      \n    });\n\n\t\t$(window).resize(function() {\n\t\t\tvar $this = $(this),\n\t\t\t\tw = $this.width();\n\n\t\t\tif ( w > 768 ) {\n\t\t\t\tif ( $('body').hasClass('offcanvas-menu') ) {\n\t\t\t\t\t$('body').removeClass('offcanvas-menu');\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\n\t\t$('body').on('click', '.js-menu-toggle', function(e) {\n\t\t\tvar $this = $(this);\n\t\t\te.preventDefault();\n\n\t\t\tif ( $('body').hasClass('offcanvas-menu') ) {\n\t\t\t\t$('body').removeClass('offcanvas-menu');\n\t\t\t\t$this.removeClass('active');\n\t\t\t} else {\n\t\t\t\t$('body').addClass('offcanvas-menu');\n\t\t\t\t$this.addClass('active');\n\t\t\t}\n\t\t}) \n\n\t\t// click outisde offcanvas\n\t\t$(document).mouseup(function(e) {\n\t    var container = $(\".site-mobile-menu\");\n\t    if (!container.is(e.target) && container.has(e.target).length === 0) {\n\t      if ( $('body').hasClass('offcanvas-menu') ) {\n\t\t\t\t\t$('body').removeClass('offcanvas-menu');\n\t\t\t\t}\n\t    }\n\t\t});\n\t}; \n\tsiteMenuClone();\n\n\n\tvar sitePlusMinus = function() {\n\t\t$('.js-btn-minus').on('click', function(e){\n\t\t\te.preventDefault();\n\t\t\tif ( $(this).closest('.input-group').find('.form-control').val() != 0  ) {\n\t\t\t\t$(this).closest('.input-group').find('.form-control').val(parseInt($(this).closest('.input-group').find('.form-control').val()) - 1);\n\t\t\t} else {\n\t\t\t\t$(this).closest('.input-group').find('.form-control').val(parseInt(0));\n\t\t\t}\n\t\t});\n\t\t$('.js-btn-plus').on('click', function(e){\n\t\t\te.preventDefault();\n\t\t\t$(this).closest('.input-group').find('.form-control').val(parseInt($(this).closest('.input-group').find('.form-control').val()) + 1);\n\t\t});\n\t};\n\t// sitePlusMinus();\n\n\n\tvar siteSliderRange = function() {\n    $( \"#slider-range\" ).slider({\n      range: true,\n      min: 0,\n      max: 500,\n      values: [ 75, 300 ],\n      slide: function( event, ui ) {\n        $( \"#amount\" ).val( \"$\" + ui.values[ 0 ] + \" - $\" + ui.values[ 1 ] );\n      }\n    });\n    $( \"#amount\" ).val( \"$\" + $( \"#slider-range\" ).slider( \"values\", 0 ) +\n      \" - $\" + $( \"#slider-range\" ).slider( \"values\", 1 ) );\n\t};\n\t// siteSliderRange();\n\n\n\t\n\tvar siteCarousel = function () {\n\t\tif ( $('.nonloop-block-13').length > 0 ) {\n\t\t\t$('.nonloop-block-13').owlCarousel({\n\t\t    center: false,\n\t\t    items: 1,\n\t\t    loop: true,\n\t\t\t\tstagePadding: 0,\n\t\t    margin: 0,\n\t\t    autoplay: true,\n\t\t    nav: true,\n\t\t\t\tnavText: ['<span class=\"icon-arrow_back\">', '<span class=\"icon-arrow_forward\">'],\n\t\t    responsive:{\n\t        600:{\n\t        \tmargin: 0,\n\t        \tnav: true,\n\t          items: 2\n\t        },\n\t        1000:{\n\t        \tmargin: 0,\n\t        \tstagePadding: 0,\n\t        \tnav: true,\n\t          items: 3\n\t        },\n\t        1200:{\n\t        \tmargin: 0,\n\t        \tstagePadding: 0,\n\t        \tnav: true,\n\t          items: 4\n\t        }\n\t\t    }\n\t\t\t});\n\t\t}\n\n\n\t\tif ( $('.nonloop-block-14').length > 0 ) {\n\t\t\t$('.nonloop-block-14').owlCarousel({\n\t\t    center: false,\n\t\t    items: 1,\n\t\t    loop: true,\n\t\t\t\tstagePadding: 0,\n\t\t    margin: 0,\n\t\t    autoplay: true,\n\t\t    dots: false,\n\t\t    nav: false,\n\t\t\t\tnavText: ['<span class=\"icon-arrow_back\">', '<span class=\"icon-arrow_forward\">'],\n\t\t    responsive:{\n\t        600:{\n\t        \tmargin: 20,\n\t        \tnav: true,\n\t          items: 2\n\t        },\n\t        1000:{\n\t        \tmargin: 30,\n\t        \tstagePadding: 20,\n\t        \tnav: true,\n\t          items: 2\n\t        },\n\t        1200:{\n\t        \tmargin: 30,\n\t        \tstagePadding: 20,\n\t        \tnav: true,\n\t          items: 3\n\t        }\n\t\t    }\n\t\t\t});\n\n\t\t\t$('.customNextBtn').click(function() {\n\t\t\t  $('.nonloop-block-14').trigger('next.owl.carousel');\n\t\t\t})\n\t\t\t$('.customPrevBtn').click(function() {\n\t\t\t  $('.nonloop-block-14').trigger('prev.owl.carousel');\n\t\t\t})\n\t\t}\n\n\n\n\t\t$('.slide-one-item').owlCarousel({\n\t    center: false,\n\t    items: 1,\n\t    loop: true,\n\t    smartSpeed: 900,\n\t    autoplayTimeout: 7000,\n\t\t\tstagePadding: 0,\n\t    margin: 0,\n\t    autoplay: true,\n\t    nav: true,\n\t    navText: ['<span class=\"icon-keyboard_arrow_left\">', '<span class=\"icon-keyboard_arrow_right\">'],\n\t  });\n\n\t\t$('.slide-one-item').on('translated.owl.carousel', function(event) {\n\t\t\tconsole.log('translated');\n\t\t\t$('.owl-item.active').find('.js-slide-text').addClass('active');\n\t\t});\n\t\t$('.slide-one-item').on('translate.owl.carousel', function(event) {\n\t\t\tconsole.log('translate');\n\t\t\t$('.owl-item.active').find('.js-slide-text').removeClass('active');\n\t\t});\n\t\t\n\t\t$('.owl-item.active').find('.js-slide-text').addClass('active');\n\n\t  \n\t};\n\tsiteCarousel();\n\n\tvar siteStellar = function() {\n\t\t$(window).stellar({\n\t    responsive: false,\n\t    parallaxBackgrounds: true,\n\t    parallaxElements: true,\n\t    horizontalScrolling: false,\n\t    hideDistantElements: false,\n\t    scrollProperty: 'scroll'\n\t  });\n\t};\n\tsiteStellar();\n\n\tvar siteCountDown = function() {\n\n\t\t$('#date-countdown').countdown('2020/10/10', function(event) {\n\t\t  var $this = $(this).html(event.strftime(''\n\t\t    + '<span class=\"countdown-block\"><span class=\"label\">%w</span> weeks </span>'\n\t\t    + '<span class=\"countdown-block\"><span class=\"label\">%d</span> days </span>'\n\t\t    + '<span class=\"countdown-block\"><span class=\"label\">%H</span> hr </span>'\n\t\t    + '<span class=\"countdown-block\"><span class=\"label\">%M</span> min </span>'\n\t\t    + '<span class=\"countdown-block\"><span class=\"label\">%S</span> sec</span>'));\n\t\t});\n\t\t\t\t\n\t};\n\tsiteCountDown();\n\n\tvar siteDatePicker = function() {\n\n\t\tif ( $('.datepicker').length > 0 ) {\n\t\t\t$('.datepicker').datepicker();\n\t\t}\n\n\t};\n\tsiteDatePicker();\n\n\tvar siteSticky = function() {\n\t\t$(\".js-sticky-header\").sticky({topSpacing:0});\n\t};\n\tsiteSticky();\n\n\t// navigation\n  var OnePageNavigation = function() {\n    var navToggler = $('.site-menu-toggle');\n   \t$(\"body\").on(\"click\", \".main-menu li a[href^='#'], .smoothscroll[href^='#'], .site-mobile-menu .site-nav-wrap li a\", function(e) {\n      e.preventDefault();\n\n      var hash = this.hash;\n\n      $('html, body').animate({\n        'scrollTop': $(hash).offset().top\n      }, 600, 'easeInOutCirc', function(){\n        window.location.hash = hash;\n      });\n\n    });\n  };\n  OnePageNavigation();\n\n  var siteScroll = function() {\n\n  \t\n\n  \t$(window).scroll(function() {\n\n  \t\tvar st = $(this).scrollTop();\n\n  \t\tif (st > 100) {\n  \t\t\t$('.js-sticky-header').addClass('shrink');\n  \t\t} else {\n  \t\t\t$('.js-sticky-header').removeClass('shrink');\n  \t\t}\n\n  \t}) \n\n  };\n  siteScroll();\n\n});"
  },
  {
    "path": "public/landing/js/typed.js",
    "content": "/*!\n * \n *   typed.js - A JavaScript Typing Animation Library\n *   Author: Matt Boldt <me@mattboldt.com>\n *   Version: v2.0.9\n *   Url: https://github.com/mattboldt/typed.js\n *   License(s): MIT\n * \n */\n(function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.Typed=e():t.Typed=e()})(this,function(){return function(t){function e(n){if(s[n])return s[n].exports;var i=s[n]={exports:{},id:n,loaded:!1};return t[n].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var s={};return e.m=t,e.c=s,e.p=\"\",e(0)}([function(t,e,s){\"use strict\";function n(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var i=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),r=s(1),o=s(3),a=function(){function t(e,s){n(this,t),r.initializer.load(this,s,e),this.begin()}return i(t,[{key:\"toggle\",value:function(){this.pause.status?this.start():this.stop()}},{key:\"stop\",value:function(){this.typingComplete||this.pause.status||(this.toggleBlinking(!0),this.pause.status=!0,this.options.onStop(this.arrayPos,this))}},{key:\"start\",value:function(){this.typingComplete||this.pause.status&&(this.pause.status=!1,this.pause.typewrite?this.typewrite(this.pause.curString,this.pause.curStrPos):this.backspace(this.pause.curString,this.pause.curStrPos),this.options.onStart(this.arrayPos,this))}},{key:\"destroy\",value:function(){this.reset(!1),this.options.onDestroy(this)}},{key:\"reset\",value:function(){var t=arguments.length<=0||void 0===arguments[0]||arguments[0];clearInterval(this.timeout),this.replaceText(\"\"),this.cursor&&this.cursor.parentNode&&(this.cursor.parentNode.removeChild(this.cursor),this.cursor=null),this.strPos=0,this.arrayPos=0,this.curLoop=0,t&&(this.insertCursor(),this.options.onReset(this),this.begin())}},{key:\"begin\",value:function(){var t=this;this.typingComplete=!1,this.shuffleStringsIfNeeded(this),this.insertCursor(),this.bindInputFocusEvents&&this.bindFocusEvents(),this.timeout=setTimeout(function(){t.currentElContent&&0!==t.currentElContent.length?t.backspace(t.currentElContent,t.currentElContent.length):t.typewrite(t.strings[t.sequence[t.arrayPos]],t.strPos)},this.startDelay)}},{key:\"typewrite\",value:function(t,e){var s=this;this.fadeOut&&this.el.classList.contains(this.fadeOutClass)&&(this.el.classList.remove(this.fadeOutClass),this.cursor&&this.cursor.classList.remove(this.fadeOutClass));var n=this.humanizer(this.typeSpeed),i=1;return this.pause.status===!0?void this.setPauseStatus(t,e,!0):void(this.timeout=setTimeout(function(){e=o.htmlParser.typeHtmlChars(t,e,s);var n=0,r=t.substr(e);if(\"^\"===r.charAt(0)&&/^\\^\\d+/.test(r)){var a=1;r=/\\d+/.exec(r)[0],a+=r.length,n=parseInt(r),s.temporaryPause=!0,s.options.onTypingPaused(s.arrayPos,s),t=t.substring(0,e)+t.substring(e+a),s.toggleBlinking(!0)}if(\"`\"===r.charAt(0)){for(;\"`\"!==t.substr(e+i).charAt(0)&&(i++,!(e+i>t.length)););var u=t.substring(0,e),l=t.substring(u.length+1,e+i),c=t.substring(e+i+1);t=u+l+c,i--}s.timeout=setTimeout(function(){s.toggleBlinking(!1),e===t.length?s.doneTyping(t,e):s.keepTyping(t,e,i),s.temporaryPause&&(s.temporaryPause=!1,s.options.onTypingResumed(s.arrayPos,s))},n)},n))}},{key:\"keepTyping\",value:function(t,e,s){0===e&&(this.toggleBlinking(!1),this.options.preStringTyped(this.arrayPos,this)),e+=s;var n=t.substr(0,e);this.replaceText(n),this.typewrite(t,e)}},{key:\"doneTyping\",value:function(t,e){var s=this;this.options.onStringTyped(this.arrayPos,this),this.toggleBlinking(!0),this.arrayPos===this.strings.length-1&&(this.complete(),this.loop===!1||this.curLoop===this.loopCount)||(this.timeout=setTimeout(function(){s.backspace(t,e)},this.backDelay))}},{key:\"backspace\",value:function(t,e){var s=this;if(this.pause.status===!0)return void this.setPauseStatus(t,e,!0);if(this.fadeOut)return this.initFadeOut();this.toggleBlinking(!1);var n=this.humanizer(this.backSpeed);this.timeout=setTimeout(function(){e=o.htmlParser.backSpaceHtmlChars(t,e,s);var n=t.substr(0,e);if(s.replaceText(n),s.smartBackspace){var i=s.strings[s.arrayPos+1];i&&n===i.substr(0,e)?s.stopNum=e:s.stopNum=0}e>s.stopNum?(e--,s.backspace(t,e)):e<=s.stopNum&&(s.arrayPos++,s.arrayPos===s.strings.length?(s.arrayPos=0,s.options.onLastStringBackspaced(),s.shuffleStringsIfNeeded(),s.begin()):s.typewrite(s.strings[s.sequence[s.arrayPos]],e))},n)}},{key:\"complete\",value:function(){this.options.onComplete(this),this.loop?this.curLoop++:this.typingComplete=!0}},{key:\"setPauseStatus\",value:function(t,e,s){this.pause.typewrite=s,this.pause.curString=t,this.pause.curStrPos=e}},{key:\"toggleBlinking\",value:function(t){this.cursor&&(this.pause.status||this.cursorBlinking!==t&&(this.cursorBlinking=t,t?this.cursor.classList.add(\"typed-cursor--blink\"):this.cursor.classList.remove(\"typed-cursor--blink\")))}},{key:\"humanizer\",value:function(t){return Math.round(Math.random()*t/2)+t}},{key:\"shuffleStringsIfNeeded\",value:function(){this.shuffle&&(this.sequence=this.sequence.sort(function(){return Math.random()-.5}))}},{key:\"initFadeOut\",value:function(){var t=this;return this.el.className+=\" \"+this.fadeOutClass,this.cursor&&(this.cursor.className+=\" \"+this.fadeOutClass),setTimeout(function(){t.arrayPos++,t.replaceText(\"\"),t.strings.length>t.arrayPos?t.typewrite(t.strings[t.sequence[t.arrayPos]],0):(t.typewrite(t.strings[0],0),t.arrayPos=0)},this.fadeOutDelay)}},{key:\"replaceText\",value:function(t){this.attr?this.el.setAttribute(this.attr,t):this.isInput?this.el.value=t:\"html\"===this.contentType?this.el.innerHTML=t:this.el.textContent=t}},{key:\"bindFocusEvents\",value:function(){var t=this;this.isInput&&(this.el.addEventListener(\"focus\",function(e){t.stop()}),this.el.addEventListener(\"blur\",function(e){t.el.value&&0!==t.el.value.length||t.start()}))}},{key:\"insertCursor\",value:function(){this.showCursor&&(this.cursor||(this.cursor=document.createElement(\"span\"),this.cursor.className=\"typed-cursor\",this.cursor.innerHTML=this.cursorChar,this.el.parentNode&&this.el.parentNode.insertBefore(this.cursor,this.el.nextSibling)))}}]),t}();e[\"default\"]=a,t.exports=e[\"default\"]},function(t,e,s){\"use strict\";function n(t){return t&&t.__esModule?t:{\"default\":t}}function i(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var r=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var s=arguments[e];for(var n in s)Object.prototype.hasOwnProperty.call(s,n)&&(t[n]=s[n])}return t},o=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),a=s(2),u=n(a),l=function(){function t(){i(this,t)}return o(t,[{key:\"load\",value:function(t,e,s){if(\"string\"==typeof s?t.el=document.querySelector(s):t.el=s,t.options=r({},u[\"default\"],e),t.isInput=\"input\"===t.el.tagName.toLowerCase(),t.attr=t.options.attr,t.bindInputFocusEvents=t.options.bindInputFocusEvents,t.showCursor=!t.isInput&&t.options.showCursor,t.cursorChar=t.options.cursorChar,t.cursorBlinking=!0,t.elContent=t.attr?t.el.getAttribute(t.attr):t.el.textContent,t.contentType=t.options.contentType,t.typeSpeed=t.options.typeSpeed,t.startDelay=t.options.startDelay,t.backSpeed=t.options.backSpeed,t.smartBackspace=t.options.smartBackspace,t.backDelay=t.options.backDelay,t.fadeOut=t.options.fadeOut,t.fadeOutClass=t.options.fadeOutClass,t.fadeOutDelay=t.options.fadeOutDelay,t.isPaused=!1,t.strings=t.options.strings.map(function(t){return t.trim()}),\"string\"==typeof t.options.stringsElement?t.stringsElement=document.querySelector(t.options.stringsElement):t.stringsElement=t.options.stringsElement,t.stringsElement){t.strings=[],t.stringsElement.style.display=\"none\";var n=Array.prototype.slice.apply(t.stringsElement.children),i=n.length;if(i)for(var o=0;o<i;o+=1){var a=n[o];t.strings.push(a.innerHTML.trim())}}t.strPos=0,t.arrayPos=0,t.stopNum=0,t.loop=t.options.loop,t.loopCount=t.options.loopCount,t.curLoop=0,t.shuffle=t.options.shuffle,t.sequence=[],t.pause={status:!1,typewrite:!0,curString:\"\",curStrPos:0},t.typingComplete=!1;for(var o in t.strings)t.sequence[o]=o;t.currentElContent=this.getCurrentElContent(t),t.autoInsertCss=t.options.autoInsertCss,this.appendAnimationCss(t)}},{key:\"getCurrentElContent\",value:function(t){var e=\"\";return e=t.attr?t.el.getAttribute(t.attr):t.isInput?t.el.value:\"html\"===t.contentType?t.el.innerHTML:t.el.textContent}},{key:\"appendAnimationCss\",value:function(t){var e=\"data-typed-js-css\";if(t.autoInsertCss&&(t.showCursor||t.fadeOut)&&!document.querySelector(\"[\"+e+\"]\")){var s=document.createElement(\"style\");s.type=\"text/css\",s.setAttribute(e,!0);var n=\"\";t.showCursor&&(n+=\"\\n        .typed-cursor{\\n          opacity: 1;\\n        }\\n        .typed-cursor.typed-cursor--blink{\\n          animation: typedjsBlink 0.7s infinite;\\n          -webkit-animation: typedjsBlink 0.7s infinite;\\n                  animation: typedjsBlink 0.7s infinite;\\n        }\\n        @keyframes typedjsBlink{\\n          50% { opacity: 0.0; }\\n        }\\n        @-webkit-keyframes typedjsBlink{\\n          0% { opacity: 1; }\\n          50% { opacity: 0.0; }\\n          100% { opacity: 1; }\\n        }\\n      \"),t.fadeOut&&(n+=\"\\n        .typed-fade-out{\\n          opacity: 0;\\n          transition: opacity .25s;\\n        }\\n        .typed-cursor.typed-cursor--blink.typed-fade-out{\\n          -webkit-animation: 0;\\n          animation: 0;\\n        }\\n      \"),0!==s.length&&(s.innerHTML=n,document.body.appendChild(s))}}}]),t}();e[\"default\"]=l;var c=new l;e.initializer=c},function(t,e){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var s={strings:[\"These are the default values...\",\"You know what you should do?\",\"Use your own!\",\"Have a great day!\"],stringsElement:null,typeSpeed:0,startDelay:0,backSpeed:0,smartBackspace:!0,shuffle:!1,backDelay:700,fadeOut:!1,fadeOutClass:\"typed-fade-out\",fadeOutDelay:500,loop:!1,loopCount:1/0,showCursor:!0,cursorChar:\"|\",autoInsertCss:!0,attr:null,bindInputFocusEvents:!1,contentType:\"html\",onComplete:function(t){},preStringTyped:function(t,e){},onStringTyped:function(t,e){},onLastStringBackspaced:function(t){},onTypingPaused:function(t,e){},onTypingResumed:function(t,e){},onReset:function(t){},onStop:function(t,e){},onStart:function(t,e){},onDestroy:function(t){}};e[\"default\"]=s,t.exports=e[\"default\"]},function(t,e){\"use strict\";function s(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")}Object.defineProperty(e,\"__esModule\",{value:!0});var n=function(){function t(t,e){for(var s=0;s<e.length;s++){var n=e[s];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,s,n){return s&&t(e.prototype,s),n&&t(e,n),e}}(),i=function(){function t(){s(this,t)}return n(t,[{key:\"typeHtmlChars\",value:function(t,e,s){if(\"html\"!==s.contentType)return e;var n=t.substr(e).charAt(0);if(\"<\"===n||\"&\"===n){var i=\"\";for(i=\"<\"===n?\">\":\";\";t.substr(e+1).charAt(0)!==i&&(e++,!(e+1>t.length)););e++}return e}},{key:\"backSpaceHtmlChars\",value:function(t,e,s){if(\"html\"!==s.contentType)return e;var n=t.substr(e).charAt(0);if(\">\"===n||\";\"===n){var i=\"\";for(i=\">\"===n?\"<\":\"&\";t.substr(e-1).charAt(0)!==i&&(e--,!(e<0)););e--}return e}}]),t}();e[\"default\"]=i;var r=new i;e.htmlParser=r}])});\n//# sourceMappingURL=typed.min.js.map"
  },
  {
    "path": "public/landing/scss/_site-base.scss",
    "content": "body {\n\tline-height: 1.7;\n\tcolor: lighten($black, 50%);\n\tfont-weight: 300;\n\tfont-size: $font-size-base + .1rem;\n}\n::-moz-selection { \n\tbackground: $black;\n\tcolor: $white;\n}\n::selection { \n\tbackground: $black;\n\tcolor: $white;\n}\na {\n\ttransition: .3s all ease;\n\t&:hover {\n\t\ttext-decoration: none;\n\t}\n}\n\nh1, h2, h3, h4, h5,\n.h1, .h2, .h3, .h4, .h5 {\n\tfont-family: $font-family-sans-serif;\n}\n\n.border-2 {\n\tborder-width: 2px;\n}\n\n\n.text-black {\n\tcolor: $black!important;\n}\n.bg-black {\n\tbackground: $black!important;\n}\n\n.color-black-opacity-5 {\n\tcolor: rgba($black, .5);\n}\n.color-white-opacity-5 {\n\tcolor: rgba($white, .5);\n}\n\n.offcanvas-menu .site-wrap {\n\t// position: absolute;\n\t// overflow: hidden;\n}\n\n.site-wrap {\n\t&:before {\n\t\tdisplay: none;\n\t\ttransition: .3s all ease-in-out;\n\t\tbackground: rgba(0,0,0,.6);\n\t\tcontent: \"\";\n\t\tposition: absolute;\n\t\tz-index: 2000;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t}\n\t.offcanvas-menu & {\n\t\t// position: absolute;\n\t\theight: 100%;\n\t\twidth: 100%;\n\t\tz-index: 2;\n\t\t// overflow: hidden;\n\t\t\n\t\t&:before {\n\t\t\topacity: 1;\n\t\t\tvisibility: visible;\n\t\t}\n\t}\n}\n\n.btn {\n\ttext-transform: uppercase;\n\tfont-size: 12px;\n\tfont-weight: 900;\n\tpadding: 14px 30px;\n\t&:hover, &:active, &:focus {\n\t\toutline: none;\n\t\tbox-shadow: none!important;\n\t}\n\t&.btn-black {\n\t\tborder-width: 2px;\n\t\tborder-color: $black;\n\t\tbackground: $black;\n\t\tcolor: $white;\n\t\t&:hover {\n\t\t\tcolor: $black;\n\t\t\tbackground-color: transparent;\n\t\t}\n\n\t\t&.btn-outline-black {\n\t\t\tcolor: $black;\n\t\t\tbackground-color: transparent;\t\n\t\t\t&:hover {\n\t\t\t\tborder-color: $black;\n\t\t\t\tbackground: $black;\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\t}\n\n\t&.btn-white {\n\t\tborder-width: 2px;\n\t\tborder-color: $white;\n\t\tbackground: $white;\n\t\tcolor: $black;\n\t\t&:hover {\n\t\t\tcolor: $white;\n\t\t\tbackground-color: transparent;\n\t\t}\n\n\t\t&.btn-outline-white {\n\t\t\tcolor: $white;\n\t\t\tbackground-color: transparent;\t\n\t\t\t&:hover {\n\t\t\t\tborder-color: $white;\n\t\t\t\tbackground: $white;\n\t\t\t\tcolor: $black;\n\t\t\t}\n\t\t}\n\t}\n\t&.btn-pill {\n\t\tborder-radius: 30px;\n\t}\n\t\n}\n\n.line-height-1 {\n\tline-height: 1!important;\n}\n.bg-black {\n\tbackground: $black;\n}\n.form-control {\n\theight: 48px;\n\t// border-radius: 30px;\n\tfont-family: $font-family-sans-serif;\n\t&:active, &:focus {\n\t\tborder-color: $primary;\n\t}\n\t&:hover, &:active, &:focus {\n\t\tbox-shadow: none!important;\n\t}\n}\n\n.site-section {\n\tpadding: 2.5em 0;\n\t@include media-breakpoint-up(md) {\n\t\tpadding: 5em 0;\n\t}\n\n\t&.site-section-sm {\n\t\tpadding: 4em 0;\n\t}\n}\n\n.site-section-heading {\n\tpadding-bottom: 20px;\n\tmargin-bottom: 0px;\n\tposition: relative;\n\tfont-size: 2.5rem;\n\t@include media-breakpoint-up(md) {\n\t\tfont-size: $font-size-base + 2rem;\n\t}\n}\n\n.border-top {\n\tborder-top: 1px solid $gray-4!important;\n}\n\n.site-footer {\n\tpadding: 4em 0;\n\tbackground: lighten($black, 20%);\n\t@include media-breakpoint-up(md) {\n\t\tpadding: 8em 0;\t\n\t}\n\t.border-top {\n\t\tborder-top: 1px solid rgba(255,255,255,.1)!important;\n\t}\n\tp {\n\t\tcolor: lighten($black, 45%); \n\t}\n\th2,h3,h4,h5 {\n\t\tcolor: $black;\n\t}\n\ta {\n\t\tcolor: lighten($black, 60%); \n\t\t&:hover {\n\t\t\tcolor: darken($black, 100%); \n\t\t}\n\t}\n\tul {\n\t\tli {\n\t\t\tmargin-bottom: 10px;\n\t\t}\n\t}\n\t.footer-heading {\n\t\tfont-size: 16px;\n\t\tcolor: $black;\n\t\ttext-transform: uppercase;\n\t\tfont-weight: 900;\n\t}\n}\n\n.bg-text-line {\n  display: inline;\n  background: $black;\n  box-shadow: 20px 0 0 $black, -20px 0 0 $black;\n}\n\n.text-white-opacity-05 {\n\tcolor: rgba($white, .5);\n}\n.text-black-opacity-05 {\n\tcolor: rgba($black, .5);\n}\n\n.hover-bg-enlarge {\n\toverflow: hidden;\n\tposition: relative;\n\t@include media-breakpoint-down(md) {\n\t\theight: auto!important;\n\t}\n\t> div {\n\t\ttransform: scale(1.0);\n\t\ttransition: .8s all ease-in-out;\n\t}\n\t&:hover, &:focus, &:active {\n\t\t> div {\n\t\t\ttransform: scale(1.2);\n\t\t}\n\t}\n\n\t.bg-image-md-height {\n\t\t@include media-breakpoint-down(md) {\n\t\t\theight: 300px!important;\n\t\t}\n\t}\n\n}\n\n\n.bg-image-2 {\n\tbackground-attachment: fixed;\n\tbackground-repeat: no-repeat;\n\tbackground-size: cover;\n\tbackground-position: center center;\n\n\n}\n.bg-image {\n\tbackground-size: cover;\n\tbackground-position: center center;\n\tbackground-repeat: no-repeat;\n\tbackground-attachment: fixed;\n\t&.overlay {\n\t\tposition: relative;\n\t\t&:after {\n\t\t\tposition: absolute;\n\t\t\tcontent: \"\";\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t\tbottom: 0;\n\t\t\tz-index: 0;\n\t\t\twidth: 100%;\n\t\t\tbackground: rgba(0,0,0,.7);\n\t\t}\n\t}\n\t> .container {\n\t\tposition: relative;\n\t\tz-index: 1;\n\t}\n}\n\n.img-md-fluid {\n\t@include media-breakpoint-down(md) {\n\t\tmax-width: 100%;\n\t}\n}\n\n.display-1, .display-3 {\n\t@include media-breakpoint-down(md) {\n\t\tfont-size: 3rem;\n\t}\n}\n\n.play-single-big {\n\twidth: 90px;\n\theight: 90px;\n\tdisplay: inline-block;\n\tborder: 2px solid $white;\n\tcolor: $white!important;\n\tborder-radius: 50%;\n\tposition: relative;\n\ttransition: .3s all ease-in-out;\n\t> span {\n\t\tfont-size: 50px;\t\n\t\tposition: absolute;\n\t\ttop: 50%;\n\t\tleft: 50%;\n\t\ttransform: translate(-40%, -50%);\n\t}\n\t&:hover {\n\t\twidth: 120px;\n\t\theight: 120px;\n\t}\n}\n\n.overlap-to-top {\n\tmargin-top: -150px;\n}\n\n.ul-check {\n\tmargin-bottom: 50px;\n\tli {\n\t\tposition: relative;\n\t\tpadding-left: 35px;\n\t\tmargin-bottom: 15px;\n\t\tline-height: 1.5;\n\t\t&:before {\n\t\t\tleft: 0;\n\t\t\tfont-size: 20px;\n\t\t\ttop: -.3rem;\n\t\t\tfont-family: \"icomoon\";\n\t\t\tcontent: \"\\e5ca\";\n\t\t\tposition: absolute;\n\t\t}\n\t}\n\t&.white {\n\t\tli {\n\t\t\t&:before {\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\t}\n\t&.success {\n\t\tli {\n\t\t\t&:before {\n\t\t\t\tcolor: $success;\n\t\t\t}\n\t\t}\n\t}\n\t&.primary {\n\t\tli {\n\t\t\t&:before {\n\t\t\t\tcolor: $primary;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.select-wrap, .wrap-icon {\n\tposition: relative;\n\t.icon {\n\t\tposition: absolute;\n\t\tright: 10px;\n\t\ttop: 50%;\n\t\ttransform: translateY(-50%);\n\t\tfont-size: 22px;\n\t}\n\tselect {\n\t\tappearance: none;\n\t\twidth: 100%;\n\t}\n}\n\n"
  },
  {
    "path": "public/landing/scss/_site-blocks.scss",
    "content": ".intro-section {\n\tposition: relative;\n\t&, .container > .row {\n\t\theight: 100vh;\n\t\tmin-height: 900px;\n\t}\n\t\n\t&.single-cover {\n\t\t&, .container > .row {\n\t\t\theight: 50vh;\n\t\t\tmin-height: 400px;\n\t\t}\n\t}\n\n\th1 {\n\t\tfont-size: 2.5rem;\n\t\tfont-weight: 700;\n\t\tcolor: $white;\n\t\tmargin-bottom: 1.5rem;\n\t}\n\tp {\n\t\tcolor: rgba(255,255,255,.5);\n\t\tfont-size: 1.1rem;\n\t\t// max-width: 400px;\n\t}\n\t\n}\n\n.img-absolute {\n\tposition: absolute;\n\tright: 10%;\n\ttop: 50%;\n\ttransform: translateY(-50%);\n\timg {\n\t\tmax-width: 600px;\n\t\tbox-shadow: 0 10px 50px -5px rgba(0,0,0,.4);\n\t\t@include media-breakpoint-down(md) {\n\t\t\tmax-width: 100%;\n\t\t}\n\t}\n}\n.slide-1 {\n\tbackground-size: cover;\n\tbackground-position: center;\n\t&:before {\n\t\tcontent: \"\";\n\t\tposition: absolute;\n\t\theight: 100%;\n\t\twidth: 100%;\n\t\tbackground: $dark;\n\t\topacity: .9;\n\t\tborder-bottom-right-radius: 0px;\n\t\t@include media-breakpoint-down(md) {\n\t\t\twidth: 100%;\n\t\t}\n\t}\n\n\n\t.slide-text {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\tmargin-top: 50px;\n\t\ttransition: .3s all ease-in-out;\n\t\t&.active {\n\t\t\topacity: 1;\n\t\t\tvisibility: visible;\n\t\t\tmargin-top: 0px;\n\t\t}\n\t}\n\n}\n\n.form-box {\n\tpadding: 40px;\n\tbackground: $white;\n\tborder-radius: 7px;\n}\n\n.site-section {\n\tpadding: 4em 0;\n\tposition: relative;\n\t@include media-breakpoint-down(md) {\n\t\tpadding: 4em 0;\n\t}\n}\n\n.cta {\n\ta {\n\t\tspan {\n\t\t\tborder-color: $primary;\n\t\t\tpadding: 14px 20px;\n\t\t\tcolor: $white;\n\t\t\tbackground: $primary;\n\t\t\tborder-radius: 30px;\n\t\t\tfont-size: .7rem;\n\t\t\tfont-weight: 900;\n\t\t\ttext-transform: uppercase;\n\t\t\ttransition: .3s all ease;\n\t\t\t.is-sticky & {\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\t\t&:hover {\n\t\t\tspan {\n\t\t\t\tbackground: darken($primary, 10%);\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\t\t&.active {\n\t\t\tborder-bottom: none;\n\t\t\t> span {\n\t\t\t\tbackground-color: $blue;\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.section-sub-title {\n\tcolor: $primary;\n\ttext-transform: uppercase;\n\tfont-size: .7rem;\n\tfont-weight: 900;\n\tdisplay: block;\n\tmargin-bottom: 1.5rem;\n}\n.section-title {\n\tfont-size: 3rem;\n\tcolor: $black;\n\tmargin-bottom: 1.8rem;\n\tfont-weight: 900;\n\t@include media-breakpoint-down(md)  {\n\t\tfont-size: 1.5rem;\n\t}\n}\n\n.counter {\n\t.icon-wrap {\n\t\tmargin-right: 1.5rem;\n\t\t> span {\n\t\t\tposition: relative;\n\t\t\ttop: -.2em;\n\t\t\tfont-size: 2rem;\n\t\t}\n\t}\n\t.counter-text {\n\t\tstrong {\n\t\t\tline-height: .5;\n\t\t\tfont-size: 3.5rem;\n\t\t\tdisplay: block;\n\t\t\tfont-weight: 700;\n\t\t\tcolor: $black;\n\t\t\tmargin-bottom: 1rem;\n\t\t}\n\t\tspan {\n\t\t\tfont-size: 1rem;\n\t\t\tline-height: 1;\n\t\t}\n\t}\n}\n\n.image-absolute-box {\n\tposition: relative;\n\t.box {\n\t\tposition: absolute;\n\t\tbackground: $primary;\n\t\tpadding: 30px;\n\t\tmax-width: 300px;\n\t\ttop: -20%;\n\t\tright: -20%;\n\t\t@include media-breakpoint-down(md)  {\n\t\t\ttop: auto;\n\t\t\tright: auto;\n\t\t\tposition: relative;\n\t\t\twidth: 100%;\n\t\t\tmax-width: 100%;\n\t\t}\n\t\t.icon-wrap {\n\t\t\tcolor: $white;\n\t\t\tmargin-bottom: 1.5rem;\n\t\t\tspan {\n\t\t\t\tfont-size: 2rem;\n\t\t\t}\n\t\t}\n\t\th3 {\n\t\t\tfont-size: 1.2rem;\n\t\t\tcolor: $white;\n\t\t\tmargin-bottom: 1.5rem;\n\t\t}\n\t\tp {\n\t\t\tcolor: rgba($white, .55);\n\t\t}\n\t}\n}\n\n.section-1 {\n\tmargin-top: 10rem;\n}\n\n.work-thumb {\n\tposition: relative;\n\tdisplay: block;\n\tcursor: pointer;\n\t&:after {\n\t\tposition: absolute;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tcontent: \"\";\n\t\tbackground: rgba($primary, .8);\n\t\tz-index: 1;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransition: .3s all ease;\n\t}\n\t.work-text {\n\t\tposition: absolute;\n\t\ttop: 10%;\n\t\tleft: 10%;\n\t\tz-index: 2;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\t\n\t\ttransition: .3s all ease;\n\t\tmargin-top: 20px;\n\n\t\th3 {\n\t\t\tfont-size: 1rem;\n\t\t\tfont-weight: 900;\n\t\t\tcolor: $white;\n\t\t\tmargin: 0;\n\t\t\tpadding: 0;\n\t\t}\n\t\t.category {\n\t\t\tfont-size: .8rem;\n\t\t\tcolor: rgba($white, .7);\n\t\t}\n\n\t}\n\t&:hover {\n\t\tz-index: 3;\n\t\ttransform: scale(1.07);\n\t\t&:after {\n\t\t\topacity: 1;\n\t\t\tvisibility: visible;\n\t\t}\n\t\t.work-text {\n\t\t\ttransition-delay: .2s;\n\t\t\topacity: 1;\n\t\t\tvisibility: visible;\n\t\t\tmargin-top: 0px;\n\t\t}\n\t}\n}\n\n.nonloop-block-13 {\n\t.owl-nav {\n\t\tdisplay: none;\n\t}\n\t.owl-dots {\n\t\tmargin-top: 30px;\n\t\twidth: 100%;\n\t\ttext-align: center;\n\t\t.owl-dot {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin: 5px;\n\t\t\tspan {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: 10px;\n\t\t\t\theight: 10px;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tbackground-color: lighten($black, 90%);\n\t\t\t}\n\t\t\t&.active {\n\t\t\t\tspan {\n\t\t\t\t\tbackground-color: $primary;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t.owl-stage {\n\t\t// padding-top: 3rem;\n\t\t// padding-bottom: 3rem;\n\t}\n\n}\n\n.nonloop-block-14 {\n\t.owl-nav {\n\t\tdisplay: none;\n\t}\n\t.owl-dots {\n\t\tmargin-top: 30px;\n\t\twidth: 100%;\n\t\ttext-align: center;\n\t\t.owl-dot {\n\t\t\tdisplay: inline-block;\n\t\t\tmargin: 5px;\n\t\t\tspan {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: 10px;\n\t\t\t\theight: 10px;\n\t\t\t\tborder-radius: 50%;\n\t\t\t\tbackground-color: lighten($black, 90%);\n\t\t\t}\n\t\t\t&.active {\n\t\t\t\tspan {\n\t\t\t\t\tbackground-color: $primary;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n.footer-section {\n\tpadding: 7em 0;\n\tbackground-color: lighten($black, 98%);\n\tp {\n\t\tfont-size: 1rem;\n\t}\n\th3 {\n\t\tfont-size: .9rem;\n\t\tletter-spacing: .1rem;\n\t\ttext-transform: uppercase;\n\t\tcolor: $black;\n\t\tmargin-bottom: 1.5rem;\n\t\tfont-weight: 900;\n\t}\n\n\t.footer-links {\n\t\tli {\n\t\t\tmargin-bottom: 10px;\n\t\t}\n\t}\n}\n\n.footer-subscribe {\n\t.btn {\n\t\theight: 43px;\n\t\tline-height: 1;\n\t}\n}\n\n.testimony {\n\th3 {\n\t\tcolor: $white;\n\t\tfont-size: 1.2rem;\n\t}\n\tblockquote {\n\t\tfont-size: 1.2rem;\n\t\tfont-style: italic;\n\t\tcolor: $white;\n\t}\n}\n\n.process, .service {\n\tposition: relative;\n\t.number {\n\t\tposition: absolute;\n\t\ttop: 50px;\n\t\tleft: -30px;\n\t\tline-height: 0;\n\t\tz-index: -1;\n\t\tfont-size: 10rem;\n\t\tcolor: lighten($black, 96%);\n\t\tfont-weight: 900;\n\t}\n\th3 {\n\t\tfont-size: 1.5rem;\n\t\tcolor: $black;\n\t\tfont-weight: 700;\n\t\tmargin-bottom: 1.5rem;\n\t}\n}\n\n.service {\n\tpadding: 4rem;\n\tbackground: $white;\n\t@include media-breakpoint-down(md) {\n\t\tpadding: 2rem;\n\t}\n}\n\n.owl-hero {\n\tposition: relative;\n\t.owl-nav {\n\t\t// position: absolute;\n\t\t.owl-prev, .owl-next {\n\t\t\tcolor: $white;\n\t\t\tfont-size: 3rem;\n\t\t\ttop: 50%;\n\t\t\tposition: absolute;\n\t\t}\n\t\t.owl-prev {\n\t\t\tleft: 0;\n\t\t}\n\t\t.owl-next {\n\t\t\tright: 0;\n\t\t\t\n\t\t}\n\t}\n\t.owl-dots {\n\t\tposition: absolute;\n\t\ttext-align: center;\n\t\tbottom: 50px;\n\t\tz-index: 9;\n\t\tleft: 50%;\n\t\ttransform: translateX(-50%);\n\t\t.owl-dot {\n\t\t\tposition: relative;\n\t\t\tdisplay: inline-block;\n\t\t\tmargin: 2px;\n\t\t\tposition: relative;\n\t\t\t> span {\n\t\t\t\t// position: absolute;\n\t\t\t\twidth: 7px;\n\t\t\t\theight: 7px;\n\t\t\t\tborder-radius: 30px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tbackground: rgba($white, .4);\n\t\t\t\ttransition: .3s all ease;\n\t\t\t}\n\t\t\t&.active {\n\t\t\t\t> span {\n\t\t\t\t\twidth: 25px;\n\t\t\t\t\tbackground: $white;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n.why-choose-us-box {\n\tbox-shadow: 0 5px 50px -10px rgba($black, .2);\n}\n.custom-icon-wrap {\n\t.custom-icon-inner {\n\t\tdisplay: inline-block;\n\t\tposition: relative;\n\t\twidth: 35px;\n\t\theight: 35px;\n\t\tborder-radius: 50%;\n\t\tbackground: $primary;\n\t\t.icon {\n\t\t\tdisplay: inline-block;\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: 50%;\n\t\t\ttransform: translate(-50%, -50%);\n\t\t\tcolor: $white;\n\t\t\tfont-size: .8rem;\n\t\t}\n\n\t}\n\th3 {\n\t\tfont-size: 1.05rem;\n\t\tcolor: $primary;\n\t}\n\t&.custom-icon-light {\n\t\t.custom-icon-inner {\n\t\t\tbackground: #615dc2;\n\t\t\twidth: 45px;\n\t\t\theight: 45px;\n\t\t}\n\t\th3 {\n\t\t\tcolor: $dark;\n\t\t\tfont-size: 1rem;\n\t\t}\n\t}\n}\n\n.courses-title {\n\tpadding-bottom: 13rem;\n\tbackground: $primary;\n\t.section-title {\n\t\tcolor: $white;\n\t}\n}\n.courses-entry-wrap {\n\tmargin-top: -282px;\n\t@include media-breakpoint-down(lg) {\n\t\tmargin-top: -246px;\n\t}\n}\n\n.nonloop-block-14 {\n\t.owl-stage {\n\t\tpadding-top: 5rem;\n\t\tpadding-bottom: 5rem;\n\t}\n}\n.course {\n\tbox-shadow: 0 2px 2px -1px rgba(0,0,0,.3);\n\ttransition: .3s all ease-in-out;\n\ttop: 0;\n\tposition: relative;\n\t.course-inner-text {\n\t\tposition: relative;\n\t\tpadding-top: 35px!important;\n\n\t}\n\t.course-price {\n\t\tposition: absolute;\n\t\tpadding: 10px 15px;\n\t\tbackground: $primary;\n\t\tcolor: $white;\n\t\ttop: -20px;\n\t\tright: 0;\n\t\tborder-top-left-radius: 4px;\n\t\tborder-bottom-left-radius: 4px;\n\t}\n\t.meta {\n\t\tfont-size: .9rem;\n\t\tdisplay: block;\n\t\tmargin-bottom: .9rem;\n\t\tspan {\n\t\t\tmargin-right: .5rem\n\n\t\t}\n\t}\n\th3 {\n\t\tfont-size: 1.15rem;\n\t\tcolor: $black;\n\t}\n\t.stats {\n\t\tfont-size: .9rem;\n\t}\n\n\t&:hover {\n\t\ttop: -10px;\n\t\tbox-shadow: 0 2px 22px -1px rgba(0,0,0,.3);\n\t}\n}\n\n.future-blobs {\n\toverflow: hidden;\n\tdisplay: flex;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  z-index: -1;\n  top: 0;\n  pointer-events: none;\n  // border: 1px solid red;\n  .blob_1 {\n  \ttop: 0;\n    right: -10rem;\n    position: absolute;\n  }\n  .blob_2 {\n  \tbottom: 0;\n    left: -10rem;\n    position: absolute;\n  }\n}\n\n.teacher {\n\tborder: 1px solid $gray-200;\n\tpadding: 30px;\n\tmargin-bottom: 5rem;\n\timg {\n\t\tposition: relative;\n\t\tmargin-top: -100px;\n\t}\n\th3 {\n\t\tfont-size: 1.2rem;\n\t}\n\t.position {\n\t\tcolor: $gray-500;\n\t}\n}\n\n.course-instructor {\n\tpadding: 30px;\n\tp {\n\t\tfont-size: 1rem;\n\t}\n}\n\n.comment-form-wrap {\n\tclear: both;\n}\n\n.comment-list {\n\tpadding: 0;\n\tmargin: 0;\n\t.children {\n\t\tpadding: 50px 0 0 40px;\n\t\tmargin: 0;\n\t\tfloat: left;\n\t\twidth: 100%;\n\t}\n\tli {\n\t\tpadding: 0;\n\t\tmargin: 0 0 30px 0;\n\t\tfloat: left;\n\t\twidth: 100%;\n\t\tclear: both;\n\t\tlist-style: none;\n\t\t.vcard {\n\t\t\twidth: 80px;\n\t\t\tfloat: left;\n\t\t\timg {\n\t\t\t\twidth: 50px;\n\t\t\t\tborder-radius: 50%;\n\t\t\t}\n\t\t}\n\t\t.comment-body {\n\t\t\tfloat: right;\n\t\t\twidth: calc(100% - 80px);\n\t\t\th3 {\n\t\t\t\tfont-size: 20px;\n\t\t\t}\n\t\t\t.meta {\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tletter-spacing: .1em;\n\t\t\t\tcolor: #ccc;\n\t\t\t}\n\t\t\t.reply {\n\t\t\t\tpadding: 5px 10px;\n\t\t\t\tbackground: lighten($black, 90%);\n\t\t\t\tcolor: $black;\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\tfont-size: 14px;\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $black;\n\t\t\t\t\tbackground: lighten($black, 89%);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "public/landing/scss/_site-navbar.scss",
    "content": ".site-logo {\n\t// position: relative;\n\tposition: relative;\n\t// left: 0;\n\tfont-weight: 900;\t\n\tfont-size: 1.3rem;\n\ta {\n\t\tcolor: $white;\n\t}\n}\n.site-navbar {\n\n\tmargin-bottom: 0px;\n\tz-index: 1999;\n\tposition: absolute;\n\twidth: 100%;\n\t\n\t.container-fluid {\n\t\tpadding-left: 7rem;\n\t\tpadding-right: 7rem;\n\t\t@include media-breakpoint-down(lg) {\n\t\t\tpadding-left: 15px;\n\t\t\tpadding-right: 15px;\n\t\t}\n\t}\n\t\n\t\n\t.site-navigation {\n\t\t&.border-bottom {\n\t\t\tborder-bottom: 1px solid lighten($gray-1, 80%)!important;\n\t\t}\n\t\t.site-menu {\n\t\t\t\n\t\t\tmargin-bottom: 0;\n\t\t\t.active {\n\t\t\t\t// > a {\n\t\t\t\t\tcolor: $primary;\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tpadding: 5px 20px;\n\t\t\t\t// }\n\t\t\t}\n\t\t\ta {\n\t\t\t\ttext-decoration: none!important;\n\t\t\t\tdisplay: inline-block;\n\t\t\t}\n\t\t\t> li {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\t> a {\n\t\t\t\t\tpadding: 5px 20px;\n\t\t\t\t\tcolor: $white;\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\ttext-decoration: none!important;\n\t\t\t\t\t\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tcolor: $white;\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.has-children {\n\t\t\t\tposition: relative;\n\t\t\t\t> a {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tpadding-right: 20px;\t\t\t\t\t\t\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\tcontent: \"\\e313\";\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\ttop: 50%;\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t\ttransform: translateY(-50%);\n\t\t\t\t\t\tfont-family: 'icomoon';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t.dropdown {\n\t\t\t\t\tvisibility: hidden;\n\t\t\t\t\topacity: 0;\n\t\t\t\t\ttop: 100%;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttext-align: left;\n\t\t\t\t\tborder-top: 2px solid $primary;\n\t\t\t\t\tbox-shadow: 0 2px 10px -2px rgba(0,0,0,.1);\n\t\t\t\t\tborder-left: 1px solid $gray-4;\n\t\t\t\t\tborder-right: 1px solid $gray-4;\n\t\t\t\t\tborder-bottom: 1px solid $gray-4;\n\t\t\t\t\tpadding: 0px 0;\n\t\t\t\t\tmargin-top: 20px;\n\t\t\t\t\tmargin-left: 0px;\n\t\t\t\t\tbackground: $white;\n\t\t\t\t\ttransition: 0.2s 0s;\n\t\t\t\t\n\t\t\t\t\t&.arrow-top {\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\tbottom: 100%;\n\t\t\t\t\t\t\tleft: 20%;\n\t\t\t\t\t\t\tborder: solid transparent;\n\t\t\t\t\t\t\tcontent: \" \";\n\t\t\t\t\t\t\theight: 0;\n\t\t\t\t\t\t\twidth: 0;\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\tpointer-events: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\tborder-color: rgba(136, 183, 213, 0);\n\t\t\t\t\t\t\tborder-bottom-color: $white;\n\t\t\t\t\t\t\tborder-width: 10px;\n\t\t\t\t\t\t\tmargin-left: -10px;\n\t\t\t\t\t\t}\t\n\t\t\t\t\t}\n\t\t\t\t\t\n\n\t\t\t\t\ta {\n\t\t\t\t\t\t// font-size: 16px;\n\t\t\t\t\t\ttext-transform: none;\n\t\t\t\t\t\tletter-spacing: normal;\n\t\t\t\t\t\ttransition: 0s all;\n\t\t\t\t\t\tcolor: $gray-800;\n\t\t\t\t\t}\n\t\t\t\t\t.active {\n\t\t\t\t\t\t> a {\n\t\t\t\t\t\t\tcolor: $primary!important;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t> li {\n\t\t\t\t\t\tlist-style: none;\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\tmin-width: 200px;\n\t\t\t\t\t\t> a {\n\t\t\t\t\t\t\tpadding: 9px 20px;\n\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\t\tbackground: lighten($gray-4, 2%);\n\t\t\t\t\t\t\t\tcolor: $gray-1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&.has-children {\n\t\t\t\t\t\t\t> a {\n\t\t\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\t\t\tcontent: \"\\e315\";\n\t\t\t\t\t\t\t\t\tright: 20px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t> .dropdown, > ul {\n\t\t\t\t\t\t\t\tleft: 100%;\n\t\t\t\t\t\t\t\ttop: 0;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t&:hover, &:active, &:focus {\n\t\t\t\t\t\t\t\t> a {\n\t\t\t\t\t\t\t\t\tbackground: lighten($gray-4, 2%);\n\t\t\t\t\t\t\t\t\tcolor: $gray-1;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t&:hover, &:focus, &:active {\n\t\t\t\t\t> a {\n\t\t\t\t\t\tcolor: $primary;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t&:hover, &:focus, &:active {\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t> .dropdown {\n\t\t\t\t\t\ttransition-delay: 0s;\n\t\t\t\t\t\tmargin-top: 0px;\n\t\t\t\t\t\tvisibility: visible;\n\t\t\t\t\t\topacity: 1;\n\n\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t&.site-menu-dark {\n\t\t\t\t> li {\n\t\t\t\t\t> a {\n\t\t\t\t\t\tcolor: $black;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n// mobile menu\n\n.site-mobile-menu {\n\twidth: 300px;\n\tposition: fixed;\n\tright: 0;\n\tz-index: 2000;\n\tpadding-top: 20px;\n\tbackground: $white;\n\theight: calc(100vh);\n\t\n\ttransform: translateX(110%);\n\tbox-shadow: -10px 0 20px -10px rgba(0,0,0,.1);\n\ttransition: .3s all ease-in-out;\n\n\t.offcanvas-menu & {\n\t\ttransform: translateX(0%);\n\t}\n\n\t.site-mobile-menu-header {\n\t\twidth: 100%;\n\t\tfloat: left;\n\t\tpadding-left: 20px;\n\t\tpadding-right: 20px;\n\t\t\n\t\t.site-mobile-menu-close {\n\t\t\tfloat: right;\n\t\t\tmargin-top: 8px;\n\t\t\tspan {\n\t\t\t\tfont-size: 30px;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tpadding-left: 10px;\n\t\t\t\tpadding-right: 0px;\n\t\t\t\tline-height: 1;\n\t\t\t\tcursor: pointer;\n\t\t\t\ttransition: .3s all ease;\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $gray-1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t.site-mobile-menu-logo {\n\t\t\tfloat: left;\n\t\t\tmargin-top: 10px;\n\t\t\tmargin-left: 0px;\n\t\t\ta {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\timg {\n\t\t\t\t\tmax-width: 70px;\n\t\t\t\t}\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.site-mobile-menu-body {\n\t\toverflow-y: scroll;\n  \t-webkit-overflow-scrolling: touch;\n\t\tposition: relative;\n\t\tpadding: 0 20px 20px 20px;\n\n\t\theight: calc(100vh - 52px);\n\t\tpadding-bottom: 150px;\n\n\t}\n\t.site-nav-wrap {\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tlist-style: none;\n\t\t// float: left;\n\n\t\t// width: 100%;\n\t\t// height: 100%;\n\t\tposition: relative;\n\n\t\ta {\n\t\t\tpadding: 10px 20px;\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\tcolor: $gray-900;\n\t\t\t&:hover {\n\t\t\t\tcolor: $primary;\n\t\t\t}\n\t\t}\n\t\tli {\n\t\t\tposition: relative;\n\t\t\tdisplay: block;\n\t\t\t.active {\n\t\t\t\t// > a {\n\t\t\t\t\tcolor: $primary;\n\t\t\t\t// }\n\t\t\t}\n\t\t}\n\t\t.arrow-collapse {\n\t\t\tposition: absolute;\n\t\t\tright: 0px;\n\t\t\ttop: 10px;\n\t\t\tz-index: 20;\n\t\t\twidth: 36px;\n\t\t\theight: 36px;\n\t\t\ttext-align: center;\n\t\t\tcursor: pointer;\n\t\t\tborder-radius: 50%;\n\t\t\t&:hover {\n\t\t\t\tbackground: $gray-100;\n\t\t\t}\n\t\t\t&:before {\n\t\t\t\tfont-size: 12px;\n\t\t\t\tz-index: 20;\n\t\t\t\tfont-family: \"icomoon\";\n\t\t\t\tcontent: \"\\f078\";\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 50%;\n\t\t\t\tleft: 50%;\n\t\t\t\ttransform: translate(-50%, -50%) rotate(-180deg);\n\t\t\t\ttransition: .3s all ease;\n\t\t\t}\n\t\t\t&.collapsed {\n\t\t\t\t&:before {\n\t\t\t\t\ttransform: translate(-50%, -50%);\t\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t> li {\n\t\t\tdisplay: block;\n\t\t\tposition: relative;\n\t\t\tfloat: left;\n\t\t\twidth: 100%;\n\t\t\t\n\t\t\t> a {\n\t\t\t\tpadding-left: 20px;\n\t\t\t\tfont-size: 20px;\n\t\t\t}\n\t\t\t> ul {\n\t\t\t\tpadding: 0;\n\t\t\t\tmargin: 0;\n\t\t\t\tlist-style: none;\n\t\t\t\t> li {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\t> a {\n\t\t\t\t\t\tpadding-left: 40px;\n\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t}\n\t\t\t\t\t> ul {\n\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\t> li {\n\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t\t> a {\n\t\t\t\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\t\t\t\tpadding-left: 60px;\t\t\t\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t&[data-class=\"social\"] {\n\t\tfloat: left;\n\t\twidth: 100%;\n\t\tmargin-top: 30px;\n\t\tpadding-bottom: 5em;\n\t\t> li {\n\t\t\twidth: auto;\n\t\t\t&:first-child {\n\t\t\t\ta {\n\t\t\t\t\tpadding-left: 15px!important;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t}\n\n\n}\n\n.sticky-wrapper {\n\tposition: absolute;\n\tz-index: 100;\n\twidth: 100%;\n\n\t& + .site-blocks-cover {\n\t\t// margin-top: 140px;\n\t\tmargin-top: 96px;\n\t}\n\t.site-navbar {\n\t\ttransition: .3s all ease;\n\t\t.site-menu {\n\t\t\t> li {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\t> a {\n\t\t\t\t\t&.active {\n\t\t\t\t\t\tcolor: $white;\n\t\t\t\t\t\tposition: relative;\n\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\theight: 2px;\n\t\t\t\t\t\t\tbackground: $white;\n\t\t\t\t\t\t\tcontent: \"\";\n\t\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\t\tbottom: 0;\n\t\t\t\t\t\t\tleft: 20px;\n\t\t\t\t\t\t\tright: 20px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t&.is-sticky {\n\t\t.site-navbar {\n\t\t\tbox-shadow: 4px 0 20px -5px rgba(0,0,0,.2);\n\t\t\tbackground: $white;\n\t\t\t.site-logo {\n\t\t\t\ta {\n\t\t\t\t\tcolor: $black;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.site-menu {\n\t\t\t\t> li {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\t> a {\n\t\t\t\t\t\tpadding: 5px 20px;\n\t\t\t\t\t\tcolor: $black;\n\t\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\t\ttext-decoration: none!important;\n\t\t\t\t\t\t\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tcolor: $primary;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\t\t\t\t\t\t&.active {\n\t\t\t\t\t\t\t&:after {\n\t\t\t\t\t\t\t\tbackground: $primary;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t.shrink {\n\t\tpadding-top: 10px!important;\n\t\tpadding-bottom: 10px!important;\n\t}\n\n\n}\n\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_alert.scss",
    "content": "//\n// Base styles\n//\n\n.alert {\n  position: relative;\n  padding: $alert-padding-y $alert-padding-x;\n  margin-bottom: $alert-margin-bottom;\n  border: $alert-border-width solid transparent;\n  @include border-radius($alert-border-radius);\n}\n\n// Headings for larger alerts\n.alert-heading {\n  // Specified to prevent conflicts of changing $headings-color\n  color: inherit;\n}\n\n// Provide class for links that match alerts\n.alert-link {\n  font-weight: $alert-link-font-weight;\n}\n\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissible {\n  padding-right: ($close-font-size + $alert-padding-x * 2);\n\n  // Adjust close link position\n  .close {\n    position: absolute;\n    top: 0;\n    right: 0;\n    padding: $alert-padding-y $alert-padding-x;\n    color: inherit;\n  }\n}\n\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n@each $color, $value in $theme-colors {\n  .alert-#{$color} {\n    @include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level));\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_badge.scss",
    "content": "// Base class\n//\n// Requires one of the contextual, color modifier classes for `color` and\n// `background-color`.\n\n.badge {\n  display: inline-block;\n  padding: $badge-padding-y $badge-padding-x;\n  font-size: $badge-font-size;\n  font-weight: $badge-font-weight;\n  line-height: 1;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  @include border-radius($badge-border-radius);\n\n  // Empty badges collapse automatically\n  &:empty {\n    display: none;\n  }\n}\n\n// Quick fix for badges in buttons\n.btn .badge {\n  position: relative;\n  top: -1px;\n}\n\n// Pill badges\n//\n// Make them extra rounded with a modifier to replace v3's badges.\n\n.badge-pill {\n  padding-right: $badge-pill-padding-x;\n  padding-left: $badge-pill-padding-x;\n  @include border-radius($badge-pill-border-radius);\n}\n\n// Colors\n//\n// Contextual variations (linked badges get darker on :hover).\n\n@each $color, $value in $theme-colors {\n  .badge-#{$color} {\n    @include badge-variant($value);\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_breadcrumb.scss",
    "content": ".breadcrumb {\n  display: flex;\n  flex-wrap: wrap;\n  padding: $breadcrumb-padding-y $breadcrumb-padding-x;\n  margin-bottom: $breadcrumb-margin-bottom;\n  list-style: none;\n  background-color: $breadcrumb-bg;\n  @include border-radius($breadcrumb-border-radius);\n}\n\n.breadcrumb-item {\n  // The separator between breadcrumbs (by default, a forward-slash: \"/\")\n  + .breadcrumb-item {\n    padding-left: $breadcrumb-item-padding;\n\n    &::before {\n      display: inline-block; // Suppress underlining of the separator in modern browsers\n      padding-right: $breadcrumb-item-padding;\n      color: $breadcrumb-divider-color;\n      content: $breadcrumb-divider;\n    }\n  }\n\n  // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built\n  // without `<ul>`s. The `::before` pseudo-element generates an element\n  // *within* the .breadcrumb-item and thereby inherits the `text-decoration`.\n  //\n  // To trick IE into suppressing the underline, we give the pseudo-element an\n  // underline and then immediately remove it.\n  + .breadcrumb-item:hover::before {\n    text-decoration: underline;\n  }\n  // stylelint-disable-next-line no-duplicate-selectors\n  + .breadcrumb-item:hover::before {\n    text-decoration: none;\n  }\n\n  &.active {\n    color: $breadcrumb-active-color;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_button-group.scss",
    "content": "// stylelint-disable selector-no-qualifying-type\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-flex;\n  vertical-align: middle; // match .btn alignment given font-size hack above\n\n  > .btn {\n    position: relative;\n    flex: 0 1 auto;\n\n    // Bring the hover, focused, and \"active\" buttons to the front to overlay\n    // the borders properly\n    @include hover {\n      z-index: 1;\n    }\n    &:focus,\n    &:active,\n    &.active {\n      z-index: 1;\n    }\n  }\n\n  // Prevent double borders when buttons are next to each other\n  .btn + .btn,\n  .btn + .btn-group,\n  .btn-group + .btn,\n  .btn-group + .btn-group {\n    margin-left: -$btn-border-width;\n  }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: flex-start;\n\n  .input-group {\n    width: auto;\n  }\n}\n\n.btn-group {\n  > .btn:first-child {\n    margin-left: 0;\n  }\n\n  // Reset rounded corners\n  > .btn:not(:last-child):not(.dropdown-toggle),\n  > .btn-group:not(:last-child) > .btn {\n    @include border-right-radius(0);\n  }\n\n  > .btn:not(:first-child),\n  > .btn-group:not(:first-child) > .btn {\n    @include border-left-radius(0);\n  }\n}\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-sm > .btn { @extend .btn-sm; }\n.btn-group-lg > .btn { @extend .btn-lg; }\n\n\n//\n// Split button dropdowns\n//\n\n.dropdown-toggle-split {\n  padding-right: $btn-padding-x * .75;\n  padding-left: $btn-padding-x * .75;\n\n  &::after,\n  .dropup &::after,\n  .dropright &::after {\n    margin-left: 0;\n  }\n\n  .dropleft &::before {\n    margin-right: 0;\n  }\n}\n\n.btn-sm + .dropdown-toggle-split {\n  padding-right: $btn-padding-x-sm * .75;\n  padding-left: $btn-padding-x-sm * .75;\n}\n\n.btn-lg + .dropdown-toggle-split {\n  padding-right: $btn-padding-x-lg * .75;\n  padding-left: $btn-padding-x-lg * .75;\n}\n\n\n// The clickable button for toggling the menu\n// Set the same inset shadow as the :active state\n.btn-group.show .dropdown-toggle {\n  @include box-shadow($btn-active-box-shadow);\n\n  // Show no shadow for `.btn-link` since it has no other button styles.\n  &.btn-link {\n    @include box-shadow(none);\n  }\n}\n\n\n//\n// Vertical button groups\n//\n\n.btn-group-vertical {\n  flex-direction: column;\n  align-items: flex-start;\n  justify-content: center;\n\n  .btn,\n  .btn-group {\n    width: 100%;\n  }\n\n  > .btn + .btn,\n  > .btn + .btn-group,\n  > .btn-group + .btn,\n  > .btn-group + .btn-group {\n    margin-top: -$btn-border-width;\n    margin-left: 0;\n  }\n\n  // Reset rounded corners\n  > .btn:not(:last-child):not(.dropdown-toggle),\n  > .btn-group:not(:last-child) > .btn {\n    @include border-bottom-radius(0);\n  }\n\n  > .btn:not(:first-child),\n  > .btn-group:not(:first-child) > .btn {\n    @include border-top-radius(0);\n  }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n.btn-group-toggle {\n  > .btn,\n  > .btn-group > .btn {\n    margin-bottom: 0; // Override default `<label>` value\n\n    input[type=\"radio\"],\n    input[type=\"checkbox\"] {\n      position: absolute;\n      clip: rect(0, 0, 0, 0);\n      pointer-events: none;\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_buttons.scss",
    "content": "// stylelint-disable selector-no-qualifying-type\n\n//\n// Base styles\n//\n\n.btn {\n  display: inline-block;\n  font-weight: $btn-font-weight;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: middle;\n  user-select: none;\n  border: $btn-border-width solid transparent;\n  @include button-size($btn-padding-y, $btn-padding-x, $font-size-base, $btn-line-height, $btn-border-radius);\n  @include transition($btn-transition);\n\n  // Share hover and focus styles\n  @include hover-focus {\n    text-decoration: none;\n  }\n\n  &:focus,\n  &.focus {\n    outline: 0;\n    box-shadow: $btn-focus-box-shadow;\n  }\n\n  // Disabled comes first so active can properly restyle\n  &.disabled,\n  &:disabled {\n    opacity: $btn-disabled-opacity;\n    @include box-shadow(none);\n  }\n\n  // Opinionated: add \"hand\" cursor to non-disabled .btn elements\n  &:not(:disabled):not(.disabled) {\n    cursor: pointer;\n  }\n\n  &:not(:disabled):not(.disabled):active,\n  &:not(:disabled):not(.disabled).active {\n    @include box-shadow($btn-active-box-shadow);\n\n    &:focus {\n      @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);\n    }\n  }\n}\n\n// Future-proof disabling of clicks on `<a>` elements\na.btn.disabled,\nfieldset:disabled a.btn {\n  pointer-events: none;\n}\n\n\n//\n// Alternate buttons\n//\n\n@each $color, $value in $theme-colors {\n  .btn-#{$color} {\n    @include button-variant($value, $value);\n  }\n}\n\n@each $color, $value in $theme-colors {\n  .btn-outline-#{$color} {\n    @include button-outline-variant($value);\n  }\n}\n\n\n//\n// Link buttons\n//\n\n// Make a button look and behave like a link\n.btn-link {\n  font-weight: $font-weight-normal;\n  color: $link-color;\n  background-color: transparent;\n\n  @include hover {\n    color: $link-hover-color;\n    text-decoration: $link-hover-decoration;\n    background-color: transparent;\n    border-color: transparent;\n  }\n\n  &:focus,\n  &.focus {\n    text-decoration: $link-hover-decoration;\n    border-color: transparent;\n    box-shadow: none;\n  }\n\n  &:disabled,\n  &.disabled {\n    color: $btn-link-disabled-color;\n    pointer-events: none;\n  }\n\n  // No need for an active state here\n}\n\n\n//\n// Button Sizes\n//\n\n\n.btn-lg {\n  @include button-size($btn-padding-y-lg, $btn-padding-x-lg, $font-size-lg, $btn-line-height-lg, $btn-border-radius-lg);\n}\n\n.btn-sm {\n  @include button-size($btn-padding-y-sm, $btn-padding-x-sm, $font-size-sm, $btn-line-height-sm, $btn-border-radius-sm);\n}\n\n\n//\n// Block button\n//\n\n.btn-block {\n  display: block;\n  width: 100%;\n\n  // Vertically space out multiple block buttons\n  + .btn-block {\n    margin-top: $btn-block-spacing-y;\n  }\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  &.btn-block {\n    width: 100%;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_card.scss",
    "content": "//\n// Base styles\n//\n\n.card {\n  position: relative;\n  display: flex;\n  flex-direction: column;\n  min-width: 0;\n  word-wrap: break-word;\n  background-color: $card-bg;\n  background-clip: border-box;\n  border: $card-border-width solid $card-border-color;\n  @include border-radius($card-border-radius);\n\n  > hr {\n    margin-right: 0;\n    margin-left: 0;\n  }\n\n  > .list-group:first-child {\n    .list-group-item:first-child {\n      @include border-top-radius($card-border-radius);\n    }\n  }\n\n  > .list-group:last-child {\n    .list-group-item:last-child {\n      @include border-bottom-radius($card-border-radius);\n    }\n  }\n}\n\n.card-body {\n  // Enable `flex-grow: 1` for decks and groups so that card blocks take up\n  // as much space as possible, ensuring footers are aligned to the bottom.\n  flex: 1 1 auto;\n  padding: $card-spacer-x;\n}\n\n.card-title {\n  margin-bottom: $card-spacer-y;\n}\n\n.card-subtitle {\n  margin-top: -($card-spacer-y / 2);\n  margin-bottom: 0;\n}\n\n.card-text:last-child {\n  margin-bottom: 0;\n}\n\n.card-link {\n  @include hover {\n    text-decoration: none;\n  }\n\n  + .card-link {\n    margin-left: $card-spacer-x;\n  }\n}\n\n//\n// Optional textual caps\n//\n\n.card-header {\n  padding: $card-spacer-y $card-spacer-x;\n  margin-bottom: 0; // Removes the default margin-bottom of <hN>\n  background-color: $card-cap-bg;\n  border-bottom: $card-border-width solid $card-border-color;\n\n  &:first-child {\n    @include border-radius($card-inner-border-radius $card-inner-border-radius 0 0);\n  }\n\n  + .list-group {\n    .list-group-item:first-child {\n      border-top: 0;\n    }\n  }\n}\n\n.card-footer {\n  padding: $card-spacer-y $card-spacer-x;\n  background-color: $card-cap-bg;\n  border-top: $card-border-width solid $card-border-color;\n\n  &:last-child {\n    @include border-radius(0 0 $card-inner-border-radius $card-inner-border-radius);\n  }\n}\n\n\n//\n// Header navs\n//\n\n.card-header-tabs {\n  margin-right: -($card-spacer-x / 2);\n  margin-bottom: -$card-spacer-y;\n  margin-left: -($card-spacer-x / 2);\n  border-bottom: 0;\n}\n\n.card-header-pills {\n  margin-right: -($card-spacer-x / 2);\n  margin-left: -($card-spacer-x / 2);\n}\n\n// Card image\n.card-img-overlay {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  padding: $card-img-overlay-padding;\n}\n\n.card-img {\n  width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch\n  @include border-radius($card-inner-border-radius);\n}\n\n// Card image caps\n.card-img-top {\n  width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch\n  @include border-top-radius($card-inner-border-radius);\n}\n\n.card-img-bottom {\n  width: 100%; // Required because we use flexbox and this inherently applies align-self: stretch\n  @include border-bottom-radius($card-inner-border-radius);\n}\n\n\n// Card deck\n\n.card-deck {\n  display: flex;\n  flex-direction: column;\n\n  .card {\n    margin-bottom: $card-deck-margin;\n  }\n\n  @include media-breakpoint-up(sm) {\n    flex-flow: row wrap;\n    margin-right: -$card-deck-margin;\n    margin-left: -$card-deck-margin;\n\n    .card {\n      display: flex;\n      // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n      flex: 1 0 0%;\n      flex-direction: column;\n      margin-right: $card-deck-margin;\n      margin-bottom: 0; // Override the default\n      margin-left: $card-deck-margin;\n    }\n  }\n}\n\n\n//\n// Card groups\n//\n\n.card-group {\n  display: flex;\n  flex-direction: column;\n\n  // The child selector allows nested `.card` within `.card-group`\n  // to display properly.\n  > .card {\n    margin-bottom: $card-group-margin;\n  }\n\n  @include media-breakpoint-up(sm) {\n    flex-flow: row wrap;\n    // The child selector allows nested `.card` within `.card-group`\n    // to display properly.\n    > .card {\n      // Flexbugs #4: https://github.com/philipwalton/flexbugs#flexbug-4\n      flex: 1 0 0%;\n      margin-bottom: 0;\n\n      + .card {\n        margin-left: 0;\n        border-left: 0;\n      }\n\n      // Handle rounded corners\n      @if $enable-rounded {\n        &:first-child {\n          @include border-right-radius(0);\n\n          .card-img-top,\n          .card-header {\n            border-top-right-radius: 0;\n          }\n          .card-img-bottom,\n          .card-footer {\n            border-bottom-right-radius: 0;\n          }\n        }\n\n        &:last-child {\n          @include border-left-radius(0);\n\n          .card-img-top,\n          .card-header {\n            border-top-left-radius: 0;\n          }\n          .card-img-bottom,\n          .card-footer {\n            border-bottom-left-radius: 0;\n          }\n        }\n\n        &:only-child {\n          @include border-radius($card-border-radius);\n\n          .card-img-top,\n          .card-header {\n            @include border-top-radius($card-border-radius);\n          }\n          .card-img-bottom,\n          .card-footer {\n            @include border-bottom-radius($card-border-radius);\n          }\n        }\n\n        &:not(:first-child):not(:last-child):not(:only-child) {\n          @include border-radius(0);\n\n          .card-img-top,\n          .card-img-bottom,\n          .card-header,\n          .card-footer {\n            @include border-radius(0);\n          }\n        }\n      }\n    }\n  }\n}\n\n\n//\n// Columns\n//\n\n.card-columns {\n  .card {\n    margin-bottom: $card-columns-margin;\n  }\n\n  @include media-breakpoint-up(sm) {\n    column-count: $card-columns-count;\n    column-gap: $card-columns-gap;\n    orphans: 1;\n    widows: 1;\n\n    .card {\n      display: inline-block; // Don't let them vertically span multiple columns\n      width: 100%; // Don't let their width change\n    }\n  }\n}\n\n\n//\n// Accordion\n//\n\n.accordion {\n  .card:not(:first-of-type):not(:last-of-type) {\n    border-bottom: 0;\n    border-radius: 0;\n  }\n\n  .card:not(:first-of-type) {\n    .card-header:first-child {\n      border-radius: 0;\n    }\n  }\n\n  .card:first-of-type {\n    border-bottom: 0;\n    border-bottom-right-radius: 0;\n    border-bottom-left-radius: 0;\n  }\n\n  .card:last-of-type {\n    border-top-left-radius: 0;\n    border-top-right-radius: 0;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_carousel.scss",
    "content": "// Notes on the classes:\n//\n// 1. The .carousel-item-left and .carousel-item-right is used to indicate where\n//    the active slide is heading.\n// 2. .active.carousel-item is the current slide.\n// 3. .active.carousel-item-left and .active.carousel-item-right is the current\n//    slide in its in-transition state. Only one of these occurs at a time.\n// 4. .carousel-item-next.carousel-item-left and .carousel-item-prev.carousel-item-right\n//    is the upcoming slide in transition.\n\n.carousel {\n  position: relative;\n}\n\n.carousel-inner {\n  position: relative;\n  width: 100%;\n  overflow: hidden;\n}\n\n.carousel-item {\n  position: relative;\n  display: none;\n  align-items: center;\n  width: 100%;\n  backface-visibility: hidden;\n  perspective: 1000px;\n}\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n  display: block;\n  @include transition($carousel-transition);\n}\n\n.carousel-item-next,\n.carousel-item-prev {\n  position: absolute;\n  top: 0;\n}\n\n.carousel-item-next.carousel-item-left,\n.carousel-item-prev.carousel-item-right {\n  transform: translateX(0);\n\n  @supports (transform-style: preserve-3d) {\n    transform: translate3d(0, 0, 0);\n  }\n}\n\n.carousel-item-next,\n.active.carousel-item-right {\n  transform: translateX(100%);\n\n  @supports (transform-style: preserve-3d) {\n    transform: translate3d(100%, 0, 0);\n  }\n}\n\n.carousel-item-prev,\n.active.carousel-item-left {\n  transform: translateX(-100%);\n\n  @supports (transform-style: preserve-3d) {\n    transform: translate3d(-100%, 0, 0);\n  }\n}\n\n\n//\n// Alternate transitions\n//\n\n.carousel-fade {\n  .carousel-item {\n    opacity: 0;\n    transition-duration: .6s;\n    transition-property: opacity;\n  }\n\n  .carousel-item.active,\n  .carousel-item-next.carousel-item-left,\n  .carousel-item-prev.carousel-item-right {\n    opacity: 1;\n  }\n\n  .active.carousel-item-left,\n  .active.carousel-item-right {\n    opacity: 0;\n  }\n\n  .carousel-item-next,\n  .carousel-item-prev,\n  .carousel-item.active,\n  .active.carousel-item-left,\n  .active.carousel-item-prev {\n    transform: translateX(0);\n\n    @supports (transform-style: preserve-3d) {\n      transform: translate3d(0, 0, 0);\n    }\n  }\n}\n\n\n//\n// Left/right controls for nav\n//\n\n.carousel-control-prev,\n.carousel-control-next {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  // Use flex for alignment (1-3)\n  display: flex; // 1. allow flex styles\n  align-items: center; // 2. vertically center contents\n  justify-content: center; // 3. horizontally center contents\n  width: $carousel-control-width;\n  color: $carousel-control-color;\n  text-align: center;\n  opacity: $carousel-control-opacity;\n  // We can't have a transition here because WebKit cancels the carousel\n  // animation if you trip this while in the middle of another animation.\n\n  // Hover/focus state\n  @include hover-focus {\n    color: $carousel-control-color;\n    text-decoration: none;\n    outline: 0;\n    opacity: .9;\n  }\n}\n.carousel-control-prev {\n  left: 0;\n  @if $enable-gradients {\n    background: linear-gradient(90deg, rgba($black, .25), rgba($black, .001));\n  }\n}\n.carousel-control-next {\n  right: 0;\n  @if $enable-gradients {\n    background: linear-gradient(270deg, rgba($black, .25), rgba($black, .001));\n  }\n}\n\n// Icons for within\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n  display: inline-block;\n  width: $carousel-control-icon-width;\n  height: $carousel-control-icon-width;\n  background: transparent no-repeat center center;\n  background-size: 100% 100%;\n}\n.carousel-control-prev-icon {\n  background-image: $carousel-control-prev-icon-bg;\n}\n.carousel-control-next-icon {\n  background-image: $carousel-control-next-icon-bg;\n}\n\n\n// Optional indicator pips\n//\n// Add an ordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n  position: absolute;\n  right: 0;\n  bottom: 10px;\n  left: 0;\n  z-index: 15;\n  display: flex;\n  justify-content: center;\n  padding-left: 0; // override <ol> default\n  // Use the .carousel-control's width as margin so we don't overlay those\n  margin-right: $carousel-control-width;\n  margin-left: $carousel-control-width;\n  list-style: none;\n\n  li {\n    position: relative;\n    flex: 0 1 auto;\n    width: $carousel-indicator-width;\n    height: $carousel-indicator-height;\n    margin-right: $carousel-indicator-spacer;\n    margin-left: $carousel-indicator-spacer;\n    text-indent: -999px;\n    cursor: pointer;\n    background-color: rgba($carousel-indicator-active-bg, .5);\n\n    // Use pseudo classes to increase the hit area by 10px on top and bottom.\n    &::before {\n      position: absolute;\n      top: -10px;\n      left: 0;\n      display: inline-block;\n      width: 100%;\n      height: 10px;\n      content: \"\";\n    }\n    &::after {\n      position: absolute;\n      bottom: -10px;\n      left: 0;\n      display: inline-block;\n      width: 100%;\n      height: 10px;\n      content: \"\";\n    }\n  }\n\n  .active {\n    background-color: $carousel-indicator-active-bg;\n  }\n}\n\n\n// Optional captions\n//\n//\n\n.carousel-caption {\n  position: absolute;\n  right: ((100% - $carousel-caption-width) / 2);\n  bottom: 20px;\n  left: ((100% - $carousel-caption-width) / 2);\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: $carousel-caption-color;\n  text-align: center;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_close.scss",
    "content": ".close {\n  float: right;\n  font-size: $close-font-size;\n  font-weight: $close-font-weight;\n  line-height: 1;\n  color: $close-color;\n  text-shadow: $close-text-shadow;\n  opacity: .5;\n\n  &:not(:disabled):not(.disabled) {\n\n    @include hover-focus {\n      color: $close-color;\n      text-decoration: none;\n      opacity: .75;\n    }\n\n    // Opinionated: add \"hand\" cursor to non-disabled .close elements\n    cursor: pointer;\n  }\n}\n\n// Additional properties for button version\n// iOS requires the button element instead of an anchor tag.\n// If you want the anchor version, it requires `href=\"#\"`.\n// See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n// stylelint-disable property-no-vendor-prefix, selector-no-qualifying-type\nbutton.close {\n  padding: 0;\n  background-color: transparent;\n  border: 0;\n  -webkit-appearance: none;\n}\n// stylelint-enable\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_code.scss",
    "content": "// Inline code\ncode {\n  font-size: $code-font-size;\n  color: $code-color;\n  word-break: break-word;\n\n  // Streamline the style when inside anchors to avoid broken underline and more\n  a > & {\n    color: inherit;\n  }\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: $kbd-padding-y $kbd-padding-x;\n  font-size: $kbd-font-size;\n  color: $kbd-color;\n  background-color: $kbd-bg;\n  @include border-radius($border-radius-sm);\n  @include box-shadow($kbd-box-shadow);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: $nested-kbd-font-weight;\n    @include box-shadow(none);\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  font-size: $code-font-size;\n  color: $pre-color;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    font-size: inherit;\n    color: inherit;\n    word-break: normal;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: $pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_custom-forms.scss",
    "content": "// Embedded icons from Open Iconic.\n// Released under MIT and copyright 2014 Waybury.\n// https://useiconic.com/open\n\n\n// Checkboxes and radios\n//\n// Base class takes care of all the key behavioral aspects.\n\n.custom-control {\n  position: relative;\n  display: block;\n  min-height: ($font-size-base * $line-height-base);\n  padding-left: $custom-control-gutter;\n}\n\n.custom-control-inline {\n  display: inline-flex;\n  margin-right: $custom-control-spacer-x;\n}\n\n.custom-control-input {\n  position: absolute;\n  z-index: -1; // Put the input behind the label so it doesn't overlay text\n  opacity: 0;\n\n  &:checked ~ .custom-control-label::before {\n    color: $custom-control-indicator-checked-color;\n    @include gradient-bg($custom-control-indicator-checked-bg);\n    @include box-shadow($custom-control-indicator-checked-box-shadow);\n  }\n\n  &:focus ~ .custom-control-label::before {\n    // the mixin is not used here to make sure there is feedback\n    box-shadow: $custom-control-indicator-focus-box-shadow;\n  }\n\n  &:active ~ .custom-control-label::before {\n    color: $custom-control-indicator-active-color;\n    background-color: $custom-control-indicator-active-bg;\n    @include box-shadow($custom-control-indicator-active-box-shadow);\n  }\n\n  &:disabled {\n    ~ .custom-control-label {\n      color: $custom-control-label-disabled-color;\n\n      &::before {\n        background-color: $custom-control-indicator-disabled-bg;\n      }\n    }\n  }\n}\n\n// Custom control indicators\n//\n// Build the custom controls out of pseudo-elements.\n\n.custom-control-label {\n  position: relative;\n  margin-bottom: 0;\n\n  // Background-color and (when enabled) gradient\n  &::before {\n    position: absolute;\n    top: (($font-size-base * $line-height-base - $custom-control-indicator-size) / 2);\n    left: -$custom-control-gutter;\n    display: block;\n    width: $custom-control-indicator-size;\n    height: $custom-control-indicator-size;\n    pointer-events: none;\n    content: \"\";\n    user-select: none;\n    background-color: $custom-control-indicator-bg;\n    @include box-shadow($custom-control-indicator-box-shadow);\n  }\n\n  // Foreground (icon)\n  &::after {\n    position: absolute;\n    top: (($font-size-base * $line-height-base - $custom-control-indicator-size) / 2);\n    left: -$custom-control-gutter;\n    display: block;\n    width: $custom-control-indicator-size;\n    height: $custom-control-indicator-size;\n    content: \"\";\n    background-repeat: no-repeat;\n    background-position: center center;\n    background-size: $custom-control-indicator-bg-size;\n  }\n}\n\n\n// Checkboxes\n//\n// Tweak just a few things for checkboxes.\n\n.custom-checkbox {\n  .custom-control-label::before {\n    @include border-radius($custom-checkbox-indicator-border-radius);\n  }\n\n  .custom-control-input:checked ~ .custom-control-label {\n    &::before {\n      @include gradient-bg($custom-control-indicator-checked-bg);\n    }\n    &::after {\n      background-image: $custom-checkbox-indicator-icon-checked;\n    }\n  }\n\n  .custom-control-input:indeterminate ~ .custom-control-label {\n    &::before {\n      @include gradient-bg($custom-checkbox-indicator-indeterminate-bg);\n      @include box-shadow($custom-checkbox-indicator-indeterminate-box-shadow);\n    }\n    &::after {\n      background-image: $custom-checkbox-indicator-icon-indeterminate;\n    }\n  }\n\n  .custom-control-input:disabled {\n    &:checked ~ .custom-control-label::before {\n      background-color: $custom-control-indicator-checked-disabled-bg;\n    }\n    &:indeterminate ~ .custom-control-label::before {\n      background-color: $custom-control-indicator-checked-disabled-bg;\n    }\n  }\n}\n\n// Radios\n//\n// Tweak just a few things for radios.\n\n.custom-radio {\n  .custom-control-label::before {\n    border-radius: $custom-radio-indicator-border-radius;\n  }\n\n  .custom-control-input:checked ~ .custom-control-label {\n    &::before {\n      @include gradient-bg($custom-control-indicator-checked-bg);\n    }\n    &::after {\n      background-image: $custom-radio-indicator-icon-checked;\n    }\n  }\n\n  .custom-control-input:disabled {\n    &:checked ~ .custom-control-label::before {\n      background-color: $custom-control-indicator-checked-disabled-bg;\n    }\n  }\n}\n\n\n// Select\n//\n// Replaces the browser default select with a custom one, mostly pulled from\n// https://primer.github.io/.\n//\n\n.custom-select {\n  display: inline-block;\n  width: 100%;\n  height: $custom-select-height;\n  padding: $custom-select-padding-y ($custom-select-padding-x + $custom-select-indicator-padding) $custom-select-padding-y $custom-select-padding-x;\n  line-height: $custom-select-line-height;\n  color: $custom-select-color;\n  vertical-align: middle;\n  background: $custom-select-bg $custom-select-indicator no-repeat right $custom-select-padding-x center;\n  background-size: $custom-select-bg-size;\n  border: $custom-select-border-width solid $custom-select-border-color;\n  @if $enable-rounded {\n    border-radius: $custom-select-border-radius;\n  } @else {\n    border-radius: 0;\n  }\n  @include box-shadow($custom-select-box-shadow);\n  appearance: none;\n\n  &:focus {\n    border-color: $custom-select-focus-border-color;\n    outline: 0;\n    @if $enable-shadows {\n      box-shadow: $custom-select-box-shadow, $custom-select-focus-box-shadow;\n    } @else {\n      box-shadow: $custom-select-focus-box-shadow;\n    }\n\n    &::-ms-value {\n      // For visual consistency with other platforms/browsers,\n      // suppress the default white text on blue background highlight given to\n      // the selected option text when the (still closed) <select> receives focus\n      // in IE and (under certain conditions) Edge.\n      // See https://github.com/twbs/bootstrap/issues/19398.\n      color: $input-color;\n      background-color: $input-bg;\n    }\n  }\n\n  &[multiple],\n  &[size]:not([size=\"1\"]) {\n    height: auto;\n    padding-right: $custom-select-padding-x;\n    background-image: none;\n  }\n\n  &:disabled {\n    color: $custom-select-disabled-color;\n    background-color: $custom-select-disabled-bg;\n  }\n\n  // Hides the default caret in IE11\n  &::-ms-expand {\n    opacity: 0;\n  }\n}\n\n.custom-select-sm {\n  height: $custom-select-height-sm;\n  padding-top: $custom-select-padding-y;\n  padding-bottom: $custom-select-padding-y;\n  font-size: $custom-select-font-size-sm;\n}\n\n.custom-select-lg {\n  height: $custom-select-height-lg;\n  padding-top: $custom-select-padding-y;\n  padding-bottom: $custom-select-padding-y;\n  font-size: $custom-select-font-size-lg;\n}\n\n\n// File\n//\n// Custom file input.\n\n.custom-file {\n  position: relative;\n  display: inline-block;\n  width: 100%;\n  height: $custom-file-height;\n  margin-bottom: 0;\n}\n\n.custom-file-input {\n  position: relative;\n  z-index: 2;\n  width: 100%;\n  height: $custom-file-height;\n  margin: 0;\n  opacity: 0;\n\n  &:focus ~ .custom-file-label {\n    border-color: $custom-file-focus-border-color;\n    box-shadow: $custom-file-focus-box-shadow;\n\n    &::after {\n      border-color: $custom-file-focus-border-color;\n    }\n  }\n\n  &:disabled ~ .custom-file-label {\n    background-color: $custom-file-disabled-bg;\n  }\n\n  @each $lang, $value in $custom-file-text {\n    &:lang(#{$lang}) ~ .custom-file-label::after {\n      content: $value;\n    }\n  }\n}\n\n.custom-file-label {\n  position: absolute;\n  top: 0;\n  right: 0;\n  left: 0;\n  z-index: 1;\n  height: $custom-file-height;\n  padding: $custom-file-padding-y $custom-file-padding-x;\n  line-height: $custom-file-line-height;\n  color: $custom-file-color;\n  background-color: $custom-file-bg;\n  border: $custom-file-border-width solid $custom-file-border-color;\n  @include border-radius($custom-file-border-radius);\n  @include box-shadow($custom-file-box-shadow);\n\n  &::after {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    z-index: 3;\n    display: block;\n    height: $custom-file-height-inner;\n    padding: $custom-file-padding-y $custom-file-padding-x;\n    line-height: $custom-file-line-height;\n    color: $custom-file-button-color;\n    content: \"Browse\";\n    @include gradient-bg($custom-file-button-bg);\n    border-left: $custom-file-border-width solid $custom-file-border-color;\n    @include border-radius(0 $custom-file-border-radius $custom-file-border-radius 0);\n  }\n}\n\n// Range\n//\n// Style range inputs the same across browsers. Vendor-specific rules for pseudo\n// elements cannot be mixed. As such, there are no shared styles for focus or\n// active states on prefixed selectors.\n\n.custom-range {\n  width: 100%;\n  padding-left: 0; // Firefox specific\n  background-color: transparent;\n  appearance: none;\n\n  &:focus {\n    outline: none;\n\n    // Pseudo-elements must be split across multiple rulesets to have an affect.\n    // No box-shadow() mixin for focus accessibility.\n    &::-webkit-slider-thumb { box-shadow: $custom-range-thumb-focus-box-shadow; }\n    &::-moz-range-thumb     { box-shadow: $custom-range-thumb-focus-box-shadow; }\n    &::-ms-thumb            { box-shadow: $custom-range-thumb-focus-box-shadow; }\n  }\n\n  &::-moz-focus-outer {\n    border: 0;\n  }\n\n  &::-webkit-slider-thumb {\n    width: $custom-range-thumb-width;\n    height: $custom-range-thumb-height;\n    margin-top: (($custom-range-track-height - $custom-range-thumb-height) / 2); // Webkit specific\n    @include gradient-bg($custom-range-thumb-bg);\n    border: $custom-range-thumb-border;\n    @include border-radius($custom-range-thumb-border-radius);\n    @include box-shadow($custom-range-thumb-box-shadow);\n    @include transition($custom-forms-transition);\n    appearance: none;\n\n    &:active {\n      @include gradient-bg($custom-range-thumb-active-bg);\n    }\n  }\n\n  &::-webkit-slider-runnable-track {\n    width: $custom-range-track-width;\n    height: $custom-range-track-height;\n    color: transparent; // Why?\n    cursor: $custom-range-track-cursor;\n    background-color: $custom-range-track-bg;\n    border-color: transparent;\n    @include border-radius($custom-range-track-border-radius);\n    @include box-shadow($custom-range-track-box-shadow);\n  }\n\n  &::-moz-range-thumb {\n    width: $custom-range-thumb-width;\n    height: $custom-range-thumb-height;\n    @include gradient-bg($custom-range-thumb-bg);\n    border: $custom-range-thumb-border;\n    @include border-radius($custom-range-thumb-border-radius);\n    @include box-shadow($custom-range-thumb-box-shadow);\n    @include transition($custom-forms-transition);\n    appearance: none;\n\n    &:active {\n      @include gradient-bg($custom-range-thumb-active-bg);\n    }\n  }\n\n  &::-moz-range-track {\n    width: $custom-range-track-width;\n    height: $custom-range-track-height;\n    color: transparent;\n    cursor: $custom-range-track-cursor;\n    background-color: $custom-range-track-bg;\n    border-color: transparent; // Firefox specific?\n    @include border-radius($custom-range-track-border-radius);\n    @include box-shadow($custom-range-track-box-shadow);\n  }\n\n  &::-ms-thumb {\n    width: $custom-range-thumb-width;\n    height: $custom-range-thumb-height;\n    margin-top: 0; // Edge specific\n    margin-right: $custom-range-thumb-focus-box-shadow-width; // Workaround that overflowed box-shadow is hidden.\n    margin-left: $custom-range-thumb-focus-box-shadow-width;  // Workaround that overflowed box-shadow is hidden.\n    @include gradient-bg($custom-range-thumb-bg);\n    border: $custom-range-thumb-border;\n    @include border-radius($custom-range-thumb-border-radius);\n    @include box-shadow($custom-range-thumb-box-shadow);\n    @include transition($custom-forms-transition);\n    appearance: none;\n\n    &:active {\n      @include gradient-bg($custom-range-thumb-active-bg);\n    }\n  }\n\n  &::-ms-track {\n    width: $custom-range-track-width;\n    height: $custom-range-track-height;\n    color: transparent;\n    cursor: $custom-range-track-cursor;\n    background-color: transparent;\n    border-color: transparent;\n    border-width: ($custom-range-thumb-height * .5);\n    @include box-shadow($custom-range-track-box-shadow);\n  }\n\n  &::-ms-fill-lower {\n    background-color: $custom-range-track-bg;\n    @include border-radius($custom-range-track-border-radius);\n  }\n\n  &::-ms-fill-upper {\n    margin-right: 15px; // arbitrary?\n    background-color: $custom-range-track-bg;\n    @include border-radius($custom-range-track-border-radius);\n  }\n}\n\n.custom-control-label::before,\n.custom-file-label,\n.custom-select {\n  @include transition($custom-forms-transition);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_dropdown.scss",
    "content": "// The dropdown wrapper (`<div>`)\n.dropup,\n.dropright,\n.dropdown,\n.dropleft {\n  position: relative;\n}\n\n.dropdown-toggle {\n  // Generate the caret automatically\n  @include caret;\n}\n\n// The dropdown menu\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: $zindex-dropdown;\n  display: none; // none by default, but block on \"open\" of the menu\n  float: left;\n  min-width: $dropdown-min-width;\n  padding: $dropdown-padding-y 0;\n  margin: $dropdown-spacer 0 0; // override default ul\n  font-size: $font-size-base; // Redeclare because nesting can cause inheritance issues\n  color: $body-color;\n  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n  list-style: none;\n  background-color: $dropdown-bg;\n  background-clip: padding-box;\n  border: $dropdown-border-width solid $dropdown-border-color;\n  @include border-radius($dropdown-border-radius);\n  @include box-shadow($dropdown-box-shadow);\n}\n\n.dropdown-menu-right {\n  right: 0;\n  left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n// Just add .dropup after the standard .dropdown class and you're set.\n.dropup {\n  .dropdown-menu {\n    top: auto;\n    bottom: 100%;\n    margin-top: 0;\n    margin-bottom: $dropdown-spacer;\n  }\n\n  .dropdown-toggle {\n    @include caret(up);\n  }\n}\n\n.dropright {\n  .dropdown-menu {\n    top: 0;\n    right: auto;\n    left: 100%;\n    margin-top: 0;\n    margin-left: $dropdown-spacer;\n  }\n\n  .dropdown-toggle {\n    @include caret(right);\n    &::after {\n      vertical-align: 0;\n    }\n  }\n}\n\n.dropleft {\n  .dropdown-menu {\n    top: 0;\n    right: 100%;\n    left: auto;\n    margin-top: 0;\n    margin-right: $dropdown-spacer;\n  }\n\n  .dropdown-toggle {\n    @include caret(left);\n    &::before {\n      vertical-align: 0;\n    }\n  }\n}\n\n// When enabled Popper.js, reset basic dropdown position\n// stylelint-disable no-duplicate-selectors\n.dropdown-menu {\n  &[x-placement^=\"top\"],\n  &[x-placement^=\"right\"],\n  &[x-placement^=\"bottom\"],\n  &[x-placement^=\"left\"] {\n    right: auto;\n    bottom: auto;\n  }\n}\n// stylelint-enable no-duplicate-selectors\n\n// Dividers (basically an `<hr>`) within the dropdown\n.dropdown-divider {\n  @include nav-divider($dropdown-divider-bg);\n}\n\n// Links, buttons, and more within the dropdown menu\n//\n// `<button>`-specific styles are denoted with `// For <button>s`\n.dropdown-item {\n  display: block;\n  width: 100%; // For `<button>`s\n  padding: $dropdown-item-padding-y $dropdown-item-padding-x;\n  clear: both;\n  font-weight: $font-weight-normal;\n  color: $dropdown-link-color;\n  text-align: inherit; // For `<button>`s\n  white-space: nowrap; // prevent links from randomly breaking onto new lines\n  background-color: transparent; // For `<button>`s\n  border: 0; // For `<button>`s\n\n  @include hover-focus {\n    color: $dropdown-link-hover-color;\n    text-decoration: none;\n    @include gradient-bg($dropdown-link-hover-bg);\n  }\n\n  &.active,\n  &:active {\n    color: $dropdown-link-active-color;\n    text-decoration: none;\n    @include gradient-bg($dropdown-link-active-bg);\n  }\n\n  &.disabled,\n  &:disabled {\n    color: $dropdown-link-disabled-color;\n    background-color: transparent;\n    // Remove CSS gradients if they're enabled\n    @if $enable-gradients {\n      background-image: none;\n    }\n  }\n}\n\n.dropdown-menu.show {\n  display: block;\n}\n\n// Dropdown section headers\n.dropdown-header {\n  display: block;\n  padding: $dropdown-padding-y $dropdown-item-padding-x;\n  margin-bottom: 0; // for use with heading elements\n  font-size: $font-size-sm;\n  color: $dropdown-header-color;\n  white-space: nowrap; // as with > li > a\n}\n\n// Dropdown text\n.dropdown-item-text {\n  display: block;\n  padding: $dropdown-item-padding-y $dropdown-item-padding-x;\n  color: $dropdown-link-color;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_forms.scss",
    "content": "// stylelint-disable selector-no-qualifying-type\n\n//\n// Textual form controls\n//\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: $input-height;\n  padding: $input-padding-y $input-padding-x;\n  font-size: $font-size-base;\n  line-height: $input-line-height;\n  color: $input-color;\n  background-color: $input-bg;\n  background-clip: padding-box;\n  border: $input-border-width solid $input-border-color;\n\n  // Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.\n  @if $enable-rounded {\n    // Manually use the if/else instead of the mixin to account for iOS override\n    border-radius: $input-border-radius;\n  } @else {\n    // Otherwise undo the iOS default\n    border-radius: 0;\n  }\n\n  @include box-shadow($input-box-shadow);\n  @include transition($input-transition);\n\n  // Unstyle the caret on `<select>`s in IE10+.\n  &::-ms-expand {\n    background-color: transparent;\n    border: 0;\n  }\n\n  // Customize the `:focus` state to imitate native WebKit styles.\n  @include form-control-focus();\n\n  // Placeholder\n  &::placeholder {\n    color: $input-placeholder-color;\n    // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.\n    opacity: 1;\n  }\n\n  // Disabled and read-only inputs\n  //\n  // HTML5 says that controls under a fieldset > legend:first-child won't be\n  // disabled if the fieldset is disabled. Due to implementation difficulty, we\n  // don't honor that edge case; we style them as disabled anyway.\n  &:disabled,\n  &[readonly] {\n    background-color: $input-disabled-bg;\n    // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.\n    opacity: 1;\n  }\n}\n\nselect.form-control {\n  &:focus::-ms-value {\n    // Suppress the nested default white text on blue background highlight given to\n    // the selected option text when the (still closed) <select> receives focus\n    // in IE and (under certain conditions) Edge, as it looks bad and cannot be made to\n    // match the appearance of the native widget.\n    // See https://github.com/twbs/bootstrap/issues/19398.\n    color: $input-color;\n    background-color: $input-bg;\n  }\n}\n\n// Make file inputs better match text inputs by forcing them to new lines.\n.form-control-file,\n.form-control-range {\n  display: block;\n  width: 100%;\n}\n\n\n//\n// Labels\n//\n\n// For use with horizontal and inline forms, when you need the label (or legend)\n// text to align with the form controls.\n.col-form-label {\n  padding-top: calc(#{$input-padding-y} + #{$input-border-width});\n  padding-bottom: calc(#{$input-padding-y} + #{$input-border-width});\n  margin-bottom: 0; // Override the `<label>/<legend>` default\n  font-size: inherit; // Override the `<legend>` default\n  line-height: $input-line-height;\n}\n\n.col-form-label-lg {\n  padding-top: calc(#{$input-padding-y-lg} + #{$input-border-width});\n  padding-bottom: calc(#{$input-padding-y-lg} + #{$input-border-width});\n  font-size: $font-size-lg;\n  line-height: $input-line-height-lg;\n}\n\n.col-form-label-sm {\n  padding-top: calc(#{$input-padding-y-sm} + #{$input-border-width});\n  padding-bottom: calc(#{$input-padding-y-sm} + #{$input-border-width});\n  font-size: $font-size-sm;\n  line-height: $input-line-height-sm;\n}\n\n\n// Readonly controls as plain text\n//\n// Apply class to a readonly input to make it appear like regular plain\n// text (without any border, background color, focus indicator)\n\n.form-control-plaintext {\n  display: block;\n  width: 100%;\n  padding-top: $input-padding-y;\n  padding-bottom: $input-padding-y;\n  margin-bottom: 0; // match inputs if this class comes on inputs with default margins\n  line-height: $input-line-height;\n  color: $input-plaintext-color;\n  background-color: transparent;\n  border: solid transparent;\n  border-width: $input-border-width 0;\n\n  &.form-control-sm,\n  &.form-control-lg {\n    padding-right: 0;\n    padding-left: 0;\n  }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// Repeated in `_input_group.scss` to avoid Sass extend issues.\n\n.form-control-sm {\n  height: $input-height-sm;\n  padding: $input-padding-y-sm $input-padding-x-sm;\n  font-size: $font-size-sm;\n  line-height: $input-line-height-sm;\n  @include border-radius($input-border-radius-sm);\n}\n\n.form-control-lg {\n  height: $input-height-lg;\n  padding: $input-padding-y-lg $input-padding-x-lg;\n  font-size: $font-size-lg;\n  line-height: $input-line-height-lg;\n  @include border-radius($input-border-radius-lg);\n}\n\n// stylelint-disable no-duplicate-selectors\nselect.form-control {\n  &[size],\n  &[multiple] {\n    height: auto;\n  }\n}\n\ntextarea.form-control {\n  height: auto;\n}\n// stylelint-enable no-duplicate-selectors\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n  margin-bottom: $form-group-margin-bottom;\n}\n\n.form-text {\n  display: block;\n  margin-top: $form-text-margin-top;\n}\n\n\n// Form grid\n//\n// Special replacement for our grid system's `.row` for tighter form layouts.\n\n.form-row {\n  display: flex;\n  flex-wrap: wrap;\n  margin-right: -5px;\n  margin-left: -5px;\n\n  > .col,\n  > [class*=\"col-\"] {\n    padding-right: 5px;\n    padding-left: 5px;\n  }\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.form-check {\n  position: relative;\n  display: block;\n  padding-left: $form-check-input-gutter;\n}\n\n.form-check-input {\n  position: absolute;\n  margin-top: $form-check-input-margin-y;\n  margin-left: -$form-check-input-gutter;\n\n  &:disabled ~ .form-check-label {\n    color: $text-muted;\n  }\n}\n\n.form-check-label {\n  margin-bottom: 0; // Override default `<label>` bottom margin\n}\n\n.form-check-inline {\n  display: inline-flex;\n  align-items: center;\n  padding-left: 0; // Override base .form-check\n  margin-right: $form-check-inline-margin-x;\n\n  // Undo .form-check-input defaults and add some `margin-right`.\n  .form-check-input {\n    position: static;\n    margin-top: 0;\n    margin-right: $form-check-inline-input-margin-x;\n    margin-left: 0;\n  }\n}\n\n\n// Form validation\n//\n// Provide feedback to users when form field values are valid or invalid. Works\n// primarily for client-side validation via scoped `:invalid` and `:valid`\n// pseudo-classes but also includes `.is-invalid` and `.is-valid` classes for\n// server side validation.\n\n@include form-validation-state(\"valid\", $form-feedback-valid-color);\n@include form-validation-state(\"invalid\", $form-feedback-invalid-color);\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n\n.form-inline {\n  display: flex;\n  flex-flow: row wrap;\n  align-items: center; // Prevent shorter elements from growing to same height as others (e.g., small buttons growing to normal sized button height)\n\n  // Because we use flex, the initial sizing of checkboxes is collapsed and\n  // doesn't occupy the full-width (which is what we want for xs grid tier),\n  // so we force that here.\n  .form-check {\n    width: 100%;\n  }\n\n  // Kick in the inline\n  @include media-breakpoint-up(sm) {\n    label {\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      margin-bottom: 0;\n    }\n\n    // Inline-block all the things for \"inline\"\n    .form-group {\n      display: flex;\n      flex: 0 0 auto;\n      flex-flow: row wrap;\n      align-items: center;\n      margin-bottom: 0;\n    }\n\n    // Allow folks to *not* use `.form-group`\n    .form-control {\n      display: inline-block;\n      width: auto; // Prevent labels from stacking above inputs in `.form-group`\n      vertical-align: middle;\n    }\n\n    // Make static controls behave like regular ones\n    .form-control-plaintext {\n      display: inline-block;\n    }\n\n    .input-group,\n    .custom-select {\n      width: auto;\n    }\n\n    // Remove default margin on radios/checkboxes that were used for stacking, and\n    // then undo the floating of radios and checkboxes to match.\n    .form-check {\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      width: auto;\n      padding-left: 0;\n    }\n    .form-check-input {\n      position: relative;\n      margin-top: 0;\n      margin-right: $form-check-input-margin-x;\n      margin-left: 0;\n    }\n\n    .custom-control {\n      align-items: center;\n      justify-content: center;\n    }\n    .custom-control-label {\n      margin-bottom: 0;\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_functions.scss",
    "content": "// Bootstrap functions\n//\n// Utility mixins and functions for evaluating source code across our variables, maps, and mixins.\n\n// Ascending\n// Used to evaluate Sass maps like our grid breakpoints.\n@mixin _assert-ascending($map, $map-name) {\n  $prev-key: null;\n  $prev-num: null;\n  @each $key, $num in $map {\n    @if $prev-num == null {\n      // Do nothing\n    } @else if not comparable($prev-num, $num) {\n      @warn \"Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n    } @else if $prev-num >= $num {\n      @warn \"Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n    }\n    $prev-key: $key;\n    $prev-num: $num;\n  }\n}\n\n// Starts at zero\n// Another grid mixin that ensures the min-width of the lowest breakpoint starts at 0.\n@mixin _assert-starts-at-zero($map) {\n  $values: map-values($map);\n  $first-value: nth($values, 1);\n  @if $first-value != 0 {\n    @warn \"First breakpoint in `$grid-breakpoints` must start at 0, but starts at #{$first-value}.\";\n  }\n}\n\n// Replace `$search` with `$replace` in `$string`\n// Used on our SVG icon backgrounds for custom forms.\n//\n// @author Hugo Giraudel\n// @param {String} $string - Initial string\n// @param {String} $search - Substring to replace\n// @param {String} $replace ('') - New value\n// @return {String} - Updated string\n@function str-replace($string, $search, $replace: \"\") {\n  $index: str-index($string, $search);\n\n  @if $index {\n    @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);\n  }\n\n  @return $string;\n}\n\n// Color contrast\n@function color-yiq($color) {\n  $r: red($color);\n  $g: green($color);\n  $b: blue($color);\n\n  $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;\n\n  @if ($yiq >= $yiq-contrasted-threshold) {\n    @return $yiq-text-dark;\n  } @else {\n    @return $yiq-text-light;\n  }\n}\n\n// Retrieve color Sass maps\n@function color($key: \"blue\") {\n  @return map-get($colors, $key);\n}\n\n@function theme-color($key: \"primary\") {\n  @return map-get($theme-colors, $key);\n}\n\n@function gray($key: \"100\") {\n  @return map-get($grays, $key);\n}\n\n// Request a theme color level\n@function theme-color-level($color-name: \"primary\", $level: 0) {\n  $color: theme-color($color-name);\n  $color-base: if($level > 0, $black, $white);\n  $level: abs($level);\n\n  @return mix($color-base, $color, $level * $theme-color-interval);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_grid.scss",
    "content": "// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n@if $enable-grid-classes {\n  .container {\n    @include make-container();\n    @include make-container-max-widths();\n  }\n}\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but with 100% width for\n// fluid, full width layouts.\n\n@if $enable-grid-classes {\n  .container-fluid {\n    @include make-container();\n  }\n}\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n@if $enable-grid-classes {\n  .row {\n    @include make-row();\n  }\n\n  // Remove the negative margin from default .row, then the horizontal padding\n  // from all immediate children columns (to prevent runaway style inheritance).\n  .no-gutters {\n    margin-right: 0;\n    margin-left: 0;\n\n    > .col,\n    > [class*=\"col-\"] {\n      padding-right: 0;\n      padding-left: 0;\n    }\n  }\n}\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n@if $enable-grid-classes {\n  @include make-grid-columns();\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_images.scss",
    "content": "// Responsive images (ensure images don't scale beyond their parents)\n//\n// This is purposefully opt-in via an explicit class rather than being the default for all `<img>`s.\n// We previously tried the \"images are responsive by default\" approach in Bootstrap v2,\n// and abandoned it in Bootstrap v3 because it breaks lots of third-party widgets (including Google Maps)\n// which weren't expecting the images within themselves to be involuntarily resized.\n// See also https://github.com/twbs/bootstrap/issues/18178\n.img-fluid {\n  @include img-fluid;\n}\n\n\n// Image thumbnails\n.img-thumbnail {\n  padding: $thumbnail-padding;\n  background-color: $thumbnail-bg;\n  border: $thumbnail-border-width solid $thumbnail-border-color;\n  @include border-radius($thumbnail-border-radius);\n  @include box-shadow($thumbnail-box-shadow);\n\n  // Keep them at most 100% wide\n  @include img-fluid;\n}\n\n//\n// Figures\n//\n\n.figure {\n  // Ensures the caption's text aligns with the image.\n  display: inline-block;\n}\n\n.figure-img {\n  margin-bottom: ($spacer / 2);\n  line-height: 1;\n}\n\n.figure-caption {\n  font-size: $figure-caption-font-size;\n  color: $figure-caption-color;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_input-group.scss",
    "content": "// stylelint-disable selector-no-qualifying-type\n\n//\n// Base styles\n//\n\n.input-group {\n  position: relative;\n  display: flex;\n  flex-wrap: wrap; // For form validation feedback\n  align-items: stretch;\n  width: 100%;\n\n  > .form-control,\n  > .custom-select,\n  > .custom-file {\n    position: relative; // For focus state's z-index\n    flex: 1 1 auto;\n    // Add width 1% and flex-basis auto to ensure that button will not wrap out\n    // the column. Applies to IE Edge+ and Firefox. Chrome does not require this.\n    width: 1%;\n    margin-bottom: 0;\n\n    + .form-control,\n    + .custom-select,\n    + .custom-file {\n      margin-left: -$input-border-width;\n    }\n  }\n\n  // Bring the \"active\" form control to the top of surrounding elements\n  > .form-control:focus,\n  > .custom-select:focus,\n  > .custom-file .custom-file-input:focus ~ .custom-file-label {\n    z-index: 3;\n  }\n\n  // Bring the custom file input above the label\n  > .custom-file .custom-file-input:focus {\n    z-index: 4;\n  }\n\n  > .form-control,\n  > .custom-select {\n    &:not(:last-child) { @include border-right-radius(0); }\n    &:not(:first-child) { @include border-left-radius(0); }\n  }\n\n  // Custom file inputs have more complex markup, thus requiring different\n  // border-radius overrides.\n  > .custom-file {\n    display: flex;\n    align-items: center;\n\n    &:not(:last-child) .custom-file-label,\n    &:not(:last-child) .custom-file-label::after { @include border-right-radius(0); }\n    &:not(:first-child) .custom-file-label { @include border-left-radius(0); }\n  }\n}\n\n\n// Prepend and append\n//\n// While it requires one extra layer of HTML for each, dedicated prepend and\n// append elements allow us to 1) be less clever, 2) simplify our selectors, and\n// 3) support HTML5 form validation.\n\n.input-group-prepend,\n.input-group-append {\n  display: flex;\n\n  // Ensure buttons are always above inputs for more visually pleasing borders.\n  // This isn't needed for `.input-group-text` since it shares the same border-color\n  // as our inputs.\n  .btn {\n    position: relative;\n    z-index: 2;\n  }\n\n  .btn + .btn,\n  .btn + .input-group-text,\n  .input-group-text + .input-group-text,\n  .input-group-text + .btn {\n    margin-left: -$input-border-width;\n  }\n}\n\n.input-group-prepend { margin-right: -$input-border-width; }\n.input-group-append { margin-left: -$input-border-width; }\n\n\n// Textual addons\n//\n// Serves as a catch-all element for any text or radio/checkbox input you wish\n// to prepend or append to an input.\n\n.input-group-text {\n  display: flex;\n  align-items: center;\n  padding: $input-padding-y $input-padding-x;\n  margin-bottom: 0; // Allow use of <label> elements by overriding our default margin-bottom\n  font-size: $font-size-base; // Match inputs\n  font-weight: $font-weight-normal;\n  line-height: $input-line-height;\n  color: $input-group-addon-color;\n  text-align: center;\n  white-space: nowrap;\n  background-color: $input-group-addon-bg;\n  border: $input-border-width solid $input-group-addon-border-color;\n  @include border-radius($input-border-radius);\n\n  // Nuke default margins from checkboxes and radios to vertically center within.\n  input[type=\"radio\"],\n  input[type=\"checkbox\"] {\n    margin-top: 0;\n  }\n}\n\n\n// Sizing\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n  height: $input-height-lg;\n  padding: $input-padding-y-lg $input-padding-x-lg;\n  font-size: $font-size-lg;\n  line-height: $input-line-height-lg;\n  @include border-radius($input-border-radius-lg);\n}\n\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n  height: $input-height-sm;\n  padding: $input-padding-y-sm $input-padding-x-sm;\n  font-size: $font-size-sm;\n  line-height: $input-line-height-sm;\n  @include border-radius($input-border-radius-sm);\n}\n\n\n// Prepend and append rounded corners\n//\n// These rulesets must come after the sizing ones to properly override sm and lg\n// border-radius values when extending. They're more specific than we'd like\n// with the `.input-group >` part, but without it, we cannot override the sizing.\n\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n  @include border-right-radius(0);\n}\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n  @include border-left-radius(0);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_jumbotron.scss",
    "content": ".jumbotron {\n  padding: $jumbotron-padding ($jumbotron-padding / 2);\n  margin-bottom: $jumbotron-padding;\n  background-color: $jumbotron-bg;\n  @include border-radius($border-radius-lg);\n\n  @include media-breakpoint-up(sm) {\n    padding: ($jumbotron-padding * 2) $jumbotron-padding;\n  }\n}\n\n.jumbotron-fluid {\n  padding-right: 0;\n  padding-left: 0;\n  @include border-radius(0);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_list-group.scss",
    "content": "// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n  display: flex;\n  flex-direction: column;\n\n  // No need to set list-style: none; since .list-group-item is block level\n  padding-left: 0; // reset padding because ul and ol\n  margin-bottom: 0;\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive\n// list items. Includes an extra `.active` modifier class for selected items.\n\n.list-group-item-action {\n  width: 100%; // For `<button>`s (anchors become 100% by default though)\n  color: $list-group-action-color;\n  text-align: inherit; // For `<button>`s (anchors inherit)\n\n  // Hover state\n  @include hover-focus {\n    color: $list-group-action-hover-color;\n    text-decoration: none;\n    background-color: $list-group-hover-bg;\n  }\n\n  &:active {\n    color: $list-group-action-active-color;\n    background-color: $list-group-action-active-bg;\n  }\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: $list-group-item-padding-y $list-group-item-padding-x;\n  // Place the border on the list items and negative margin up for better styling\n  margin-bottom: -$list-group-border-width;\n  background-color: $list-group-bg;\n  border: $list-group-border-width solid $list-group-border-color;\n\n  &:first-child {\n    @include border-top-radius($list-group-border-radius);\n  }\n\n  &:last-child {\n    margin-bottom: 0;\n    @include border-bottom-radius($list-group-border-radius);\n  }\n\n  @include hover-focus {\n    z-index: 1; // Place hover/active items above their siblings for proper border styling\n    text-decoration: none;\n  }\n\n  &.disabled,\n  &:disabled {\n    color: $list-group-disabled-color;\n    background-color: $list-group-disabled-bg;\n  }\n\n  // Include both here for `<a>`s and `<button>`s\n  &.active {\n    z-index: 2; // Place active items above their siblings for proper border styling\n    color: $list-group-active-color;\n    background-color: $list-group-active-bg;\n    border-color: $list-group-active-border-color;\n  }\n}\n\n\n// Flush list items\n//\n// Remove borders and border-radius to keep list group items edge-to-edge. Most\n// useful within other components (e.g., cards).\n\n.list-group-flush {\n  .list-group-item {\n    border-right: 0;\n    border-left: 0;\n    @include border-radius(0);\n  }\n\n  &:first-child {\n    .list-group-item:first-child {\n      border-top: 0;\n    }\n  }\n\n  &:last-child {\n    .list-group-item:last-child {\n      border-bottom: 0;\n    }\n  }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n@each $color, $value in $theme-colors {\n  @include list-group-item-variant($color, theme-color-level($color, -9), theme-color-level($color, 6));\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_media.scss",
    "content": ".media {\n  display: flex;\n  align-items: flex-start;\n}\n\n.media-body {\n  flex: 1;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_mixins.scss",
    "content": "// Toggles\n//\n// Used in conjunction with global variables to enable certain theme features.\n\n// Utilities\n@import \"mixins/breakpoints\";\n@import \"mixins/hover\";\n@import \"mixins/image\";\n@import \"mixins/badge\";\n@import \"mixins/resize\";\n@import \"mixins/screen-reader\";\n@import \"mixins/size\";\n@import \"mixins/reset-text\";\n@import \"mixins/text-emphasis\";\n@import \"mixins/text-hide\";\n@import \"mixins/text-truncate\";\n@import \"mixins/visibility\";\n\n// // Components\n@import \"mixins/alert\";\n@import \"mixins/buttons\";\n@import \"mixins/caret\";\n@import \"mixins/pagination\";\n@import \"mixins/lists\";\n@import \"mixins/list-group\";\n@import \"mixins/nav-divider\";\n@import \"mixins/forms\";\n@import \"mixins/table-row\";\n\n// // Skins\n@import \"mixins/background-variant\";\n@import \"mixins/border-radius\";\n@import \"mixins/box-shadow\";\n@import \"mixins/gradients\";\n@import \"mixins/transition\";\n\n// // Layout\n@import \"mixins/clearfix\";\n@import \"mixins/grid-framework\";\n@import \"mixins/grid\";\n@import \"mixins/float\";\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_modal.scss",
    "content": "// .modal-open      - body class for killing the scroll\n// .modal           - container to scroll within\n// .modal-dialog    - positioning shell for the actual modal\n// .modal-content   - actual modal w/ bg and corners and stuff\n\n\n.modal-open {\n  // Kill the scroll on the body\n  overflow: hidden;\n\n  .modal {\n    overflow-x: hidden;\n    overflow-y: auto;\n  }\n}\n\n// Container that the modal scrolls within\n.modal {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: $zindex-modal;\n  display: none;\n  overflow: hidden;\n  // Prevent Chrome on Windows from adding a focus outline. For details, see\n  // https://github.com/twbs/bootstrap/pull/10951.\n  outline: 0;\n  // We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a\n  // gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342\n  // See also https://github.com/twbs/bootstrap/issues/17695\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: $modal-dialog-margin;\n  // allow clicks to pass through for custom click handling to close modal\n  pointer-events: none;\n\n  // When fading in the modal, animate it to slide down\n  .modal.fade & {\n    @include transition($modal-transition);\n    transform: translate(0, -25%);\n  }\n  .modal.show & {\n    transform: translate(0, 0);\n  }\n}\n\n.modal-dialog-centered {\n  display: flex;\n  align-items: center;\n  min-height: calc(100% - (#{$modal-dialog-margin} * 2));\n\n  // Ensure `modal-dialog-centered` extends the full height of the view (IE10/11)\n  &::before {\n    display: block; // IE10\n    height: calc(100vh - (#{$modal-dialog-margin} * 2));\n    content: \"\";\n  }\n}\n\n// Actual modal\n.modal-content {\n  position: relative;\n  display: flex;\n  flex-direction: column;\n  width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`\n  // counteract the pointer-events: none; in the .modal-dialog\n  pointer-events: auto;\n  background-color: $modal-content-bg;\n  background-clip: padding-box;\n  border: $modal-content-border-width solid $modal-content-border-color;\n  @include border-radius($modal-content-border-radius);\n  @include box-shadow($modal-content-box-shadow-xs);\n  // Remove focus outline from opened modal\n  outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: $zindex-modal-backdrop;\n  background-color: $modal-backdrop-bg;\n\n  // Fade for backdrop\n  &.fade { opacity: 0; }\n  &.show { opacity: $modal-backdrop-opacity; }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  display: flex;\n  align-items: flex-start; // so the close btn always stays on the upper right corner\n  justify-content: space-between; // Put modal header elements (title and dismiss) on opposite ends\n  padding: $modal-header-padding;\n  border-bottom: $modal-header-border-width solid $modal-header-border-color;\n  @include border-top-radius($modal-content-border-radius);\n\n  .close {\n    padding: $modal-header-padding;\n    // auto on the left force icon to the right even when there is no .modal-title\n    margin: (-$modal-header-padding) (-$modal-header-padding) (-$modal-header-padding) auto;\n  }\n}\n\n// Title text within header\n.modal-title {\n  margin-bottom: 0;\n  line-height: $modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n  position: relative;\n  // Enable `flex-grow: 1` so that the body take up as much space as possible\n  // when should there be a fixed height on `.modal-dialog`.\n  flex: 1 1 auto;\n  padding: $modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n  display: flex;\n  align-items: center; // vertically center\n  justify-content: flex-end; // Right align buttons with flex property because text-align doesn't work on flex items\n  padding: $modal-inner-padding;\n  border-top: $modal-footer-border-width solid $modal-footer-border-color;\n\n  // Easily place margin between footer elements\n  > :not(:first-child) { margin-left: .25rem; }\n  > :not(:last-child) { margin-right: .25rem; }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n\n// Scale up the modal\n@include media-breakpoint-up(sm) {\n  // Automatically set modal's width for larger viewports\n  .modal-dialog {\n    max-width: $modal-md;\n    margin: $modal-dialog-margin-y-sm-up auto;\n  }\n\n  .modal-dialog-centered {\n    min-height: calc(100% - (#{$modal-dialog-margin-y-sm-up} * 2));\n\n    &::before {\n      height: calc(100vh - (#{$modal-dialog-margin-y-sm-up} * 2));\n    }\n\n  }\n\n  .modal-content {\n    @include box-shadow($modal-content-box-shadow-sm-up);\n  }\n\n  .modal-sm { max-width: $modal-sm; }\n\n}\n\n@include media-breakpoint-up(lg) {\n  .modal-lg { max-width: $modal-lg; }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_nav.scss",
    "content": "// Base class\n//\n// Kickstart any navigation component with a set of style resets. Works with\n// `<nav>`s or `<ul>`s.\n\n.nav {\n  display: flex;\n  flex-wrap: wrap;\n  padding-left: 0;\n  margin-bottom: 0;\n  list-style: none;\n}\n\n.nav-link {\n  display: block;\n  padding: $nav-link-padding-y $nav-link-padding-x;\n\n  @include hover-focus {\n    text-decoration: none;\n  }\n\n  // Disabled state lightens text\n  &.disabled {\n    color: $nav-link-disabled-color;\n  }\n}\n\n//\n// Tabs\n//\n\n.nav-tabs {\n  border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color;\n\n  .nav-item {\n    margin-bottom: -$nav-tabs-border-width;\n  }\n\n  .nav-link {\n    border: $nav-tabs-border-width solid transparent;\n    @include border-top-radius($nav-tabs-border-radius);\n\n    @include hover-focus {\n      border-color: $nav-tabs-link-hover-border-color;\n    }\n\n    &.disabled {\n      color: $nav-link-disabled-color;\n      background-color: transparent;\n      border-color: transparent;\n    }\n  }\n\n  .nav-link.active,\n  .nav-item.show .nav-link {\n    color: $nav-tabs-link-active-color;\n    background-color: $nav-tabs-link-active-bg;\n    border-color: $nav-tabs-link-active-border-color;\n  }\n\n  .dropdown-menu {\n    // Make dropdown border overlap tab border\n    margin-top: -$nav-tabs-border-width;\n    // Remove the top rounded corners here since there is a hard edge above the menu\n    @include border-top-radius(0);\n  }\n}\n\n\n//\n// Pills\n//\n\n.nav-pills {\n  .nav-link {\n    @include border-radius($nav-pills-border-radius);\n  }\n\n  .nav-link.active,\n  .show > .nav-link {\n    color: $nav-pills-link-active-color;\n    background-color: $nav-pills-link-active-bg;\n  }\n}\n\n\n//\n// Justified variants\n//\n\n.nav-fill {\n  .nav-item {\n    flex: 1 1 auto;\n    text-align: center;\n  }\n}\n\n.nav-justified {\n  .nav-item {\n    flex-basis: 0;\n    flex-grow: 1;\n    text-align: center;\n  }\n}\n\n\n// Tabbable tabs\n//\n// Hide tabbable panes to start, show them when `.active`\n\n.tab-content {\n  > .tab-pane {\n    display: none;\n  }\n  > .active {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_navbar.scss",
    "content": "// Contents\n//\n// Navbar\n// Navbar brand\n// Navbar nav\n// Navbar text\n// Navbar divider\n// Responsive navbar\n// Navbar position\n// Navbar themes\n\n\n// Navbar\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n  position: relative;\n  display: flex;\n  flex-wrap: wrap; // allow us to do the line break for collapsing content\n  align-items: center;\n  justify-content: space-between; // space out brand from logo\n  padding: $navbar-padding-y $navbar-padding-x;\n\n  // Because flex properties aren't inherited, we need to redeclare these first\n  // few properties so that content nested within behave properly.\n  > .container,\n  > .container-fluid {\n    display: flex;\n    flex-wrap: wrap;\n    align-items: center;\n    justify-content: space-between;\n  }\n}\n\n\n// Navbar brand\n//\n// Used for brand, project, or site names.\n\n.navbar-brand {\n  display: inline-block;\n  padding-top: $navbar-brand-padding-y;\n  padding-bottom: $navbar-brand-padding-y;\n  margin-right: $navbar-padding-x;\n  font-size: $navbar-brand-font-size;\n  line-height: inherit;\n  white-space: nowrap;\n\n  @include hover-focus {\n    text-decoration: none;\n  }\n}\n\n\n// Navbar nav\n//\n// Custom navbar navigation (doesn't require `.nav`, but does make use of `.nav-link`).\n\n.navbar-nav {\n  display: flex;\n  flex-direction: column; // cannot use `inherit` to get the `.navbar`s value\n  padding-left: 0;\n  margin-bottom: 0;\n  list-style: none;\n\n  .nav-link {\n    padding-right: 0;\n    padding-left: 0;\n  }\n\n  .dropdown-menu {\n    position: static;\n    float: none;\n  }\n}\n\n\n// Navbar text\n//\n//\n\n.navbar-text {\n  display: inline-block;\n  padding-top: $nav-link-padding-y;\n  padding-bottom: $nav-link-padding-y;\n}\n\n\n// Responsive navbar\n//\n// Custom styles for responsive collapsing and toggling of navbar contents.\n// Powered by the collapse Bootstrap JavaScript plugin.\n\n// When collapsed, prevent the toggleable navbar contents from appearing in\n// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`\n// on the `.navbar` parent.\n.navbar-collapse {\n  flex-basis: 100%;\n  flex-grow: 1;\n  // For always expanded or extra full navbars, ensure content aligns itself\n  // properly vertically. Can be easily overridden with flex utilities.\n  align-items: center;\n}\n\n// Button for toggling the navbar when in its collapsed state\n.navbar-toggler {\n  padding: $navbar-toggler-padding-y $navbar-toggler-padding-x;\n  font-size: $navbar-toggler-font-size;\n  line-height: 1;\n  background-color: transparent; // remove default button style\n  border: $border-width solid transparent; // remove default button style\n  @include border-radius($navbar-toggler-border-radius);\n\n  @include hover-focus {\n    text-decoration: none;\n  }\n\n  // Opinionated: add \"hand\" cursor to non-disabled .navbar-toggler elements\n  &:not(:disabled):not(.disabled) {\n    cursor: pointer;\n  }\n}\n\n// Keep as a separate element so folks can easily override it with another icon\n// or image file as needed.\n.navbar-toggler-icon {\n  display: inline-block;\n  width: 1.5em;\n  height: 1.5em;\n  vertical-align: middle;\n  content: \"\";\n  background: no-repeat center center;\n  background-size: 100% 100%;\n}\n\n// Generate series of `.navbar-expand-*` responsive classes for configuring\n// where your navbar collapses.\n.navbar-expand {\n  @each $breakpoint in map-keys($grid-breakpoints) {\n    $next: breakpoint-next($breakpoint, $grid-breakpoints);\n    $infix: breakpoint-infix($next, $grid-breakpoints);\n\n    &#{$infix} {\n      @include media-breakpoint-down($breakpoint) {\n        > .container,\n        > .container-fluid {\n          padding-right: 0;\n          padding-left: 0;\n        }\n      }\n\n      @include media-breakpoint-up($next) {\n        flex-flow: row nowrap;\n        justify-content: flex-start;\n\n        .navbar-nav {\n          flex-direction: row;\n\n          .dropdown-menu {\n            position: absolute;\n          }\n\n          .nav-link {\n            padding-right: $navbar-nav-link-padding-x;\n            padding-left: $navbar-nav-link-padding-x;\n          }\n        }\n\n        // For nesting containers, have to redeclare for alignment purposes\n        > .container,\n        > .container-fluid {\n          flex-wrap: nowrap;\n        }\n\n        .navbar-collapse {\n          display: flex !important;  // stylelint-disable-line declaration-no-important\n\n          // Changes flex-bases to auto because of an IE10 bug\n          flex-basis: auto;\n        }\n\n        .navbar-toggler {\n          display: none;\n        }\n      }\n    }\n  }\n}\n\n\n// Navbar themes\n//\n// Styles for switching between navbars with light or dark background.\n\n// Dark links against a light background\n.navbar-light {\n  .navbar-brand {\n    color: $navbar-light-active-color;\n\n    @include hover-focus {\n      color: $navbar-light-active-color;\n    }\n  }\n\n  .navbar-nav {\n    .nav-link {\n      color: $navbar-light-color;\n\n      @include hover-focus {\n        color: $navbar-light-hover-color;\n      }\n\n      &.disabled {\n        color: $navbar-light-disabled-color;\n      }\n    }\n\n    .show > .nav-link,\n    .active > .nav-link,\n    .nav-link.show,\n    .nav-link.active {\n      color: $navbar-light-active-color;\n    }\n  }\n\n  .navbar-toggler {\n    color: $navbar-light-color;\n    border-color: $navbar-light-toggler-border-color;\n  }\n\n  .navbar-toggler-icon {\n    background-image: $navbar-light-toggler-icon-bg;\n  }\n\n  .navbar-text {\n    color: $navbar-light-color;\n    a {\n      color: $navbar-light-active-color;\n\n      @include hover-focus {\n        color: $navbar-light-active-color;\n      }\n    }\n  }\n}\n\n// White links against a dark background\n.navbar-dark {\n  .navbar-brand {\n    color: $navbar-dark-active-color;\n\n    @include hover-focus {\n      color: $navbar-dark-active-color;\n    }\n  }\n\n  .navbar-nav {\n    .nav-link {\n      color: $navbar-dark-color;\n\n      @include hover-focus {\n        color: $navbar-dark-hover-color;\n      }\n\n      &.disabled {\n        color: $navbar-dark-disabled-color;\n      }\n    }\n\n    .show > .nav-link,\n    .active > .nav-link,\n    .nav-link.show,\n    .nav-link.active {\n      color: $navbar-dark-active-color;\n    }\n  }\n\n  .navbar-toggler {\n    color: $navbar-dark-color;\n    border-color: $navbar-dark-toggler-border-color;\n  }\n\n  .navbar-toggler-icon {\n    background-image: $navbar-dark-toggler-icon-bg;\n  }\n\n  .navbar-text {\n    color: $navbar-dark-color;\n    a {\n      color: $navbar-dark-active-color;\n\n      @include hover-focus {\n        color: $navbar-dark-active-color;\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_pagination.scss",
    "content": ".pagination {\n  display: flex;\n  @include list-unstyled();\n  @include border-radius();\n}\n\n.page-link {\n  position: relative;\n  display: block;\n  padding: $pagination-padding-y $pagination-padding-x;\n  margin-left: -$pagination-border-width;\n  line-height: $pagination-line-height;\n  color: $pagination-color;\n  background-color: $pagination-bg;\n  border: $pagination-border-width solid $pagination-border-color;\n\n  &:hover {\n    z-index: 2;\n    color: $pagination-hover-color;\n    text-decoration: none;\n    background-color: $pagination-hover-bg;\n    border-color: $pagination-hover-border-color;\n  }\n\n  &:focus {\n    z-index: 2;\n    outline: $pagination-focus-outline;\n    box-shadow: $pagination-focus-box-shadow;\n  }\n\n  // Opinionated: add \"hand\" cursor to non-disabled .page-link elements\n  &:not(:disabled):not(.disabled) {\n    cursor: pointer;\n  }\n}\n\n.page-item {\n  &:first-child {\n    .page-link {\n      margin-left: 0;\n      @include border-left-radius($border-radius);\n    }\n  }\n  &:last-child {\n    .page-link {\n      @include border-right-radius($border-radius);\n    }\n  }\n\n  &.active .page-link {\n    z-index: 1;\n    color: $pagination-active-color;\n    background-color: $pagination-active-bg;\n    border-color: $pagination-active-border-color;\n  }\n\n  &.disabled .page-link {\n    color: $pagination-disabled-color;\n    pointer-events: none;\n    // Opinionated: remove the \"hand\" cursor set previously for .page-link\n    cursor: auto;\n    background-color: $pagination-disabled-bg;\n    border-color: $pagination-disabled-border-color;\n  }\n}\n\n\n//\n// Sizing\n//\n\n.pagination-lg {\n  @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $border-radius-lg);\n}\n\n.pagination-sm {\n  @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $border-radius-sm);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_popover.scss",
    "content": ".popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: $zindex-popover;\n  display: block;\n  max-width: $popover-max-width;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  @include reset-text();\n  font-size: $popover-font-size;\n  // Allow breaking very long words so they don't overflow the popover's bounds\n  word-wrap: break-word;\n  background-color: $popover-bg;\n  background-clip: padding-box;\n  border: $popover-border-width solid $popover-border-color;\n  @include border-radius($popover-border-radius);\n  @include box-shadow($popover-box-shadow);\n\n  .arrow {\n    position: absolute;\n    display: block;\n    width: $popover-arrow-width;\n    height: $popover-arrow-height;\n    margin: 0 $border-radius-lg;\n\n    &::before,\n    &::after {\n      position: absolute;\n      display: block;\n      content: \"\";\n      border-color: transparent;\n      border-style: solid;\n    }\n  }\n}\n\n.bs-popover-top {\n  margin-bottom: $popover-arrow-height;\n\n  .arrow {\n    bottom: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);\n  }\n\n  .arrow::before,\n  .arrow::after {\n    border-width: $popover-arrow-height ($popover-arrow-width / 2) 0;\n  }\n\n  .arrow::before {\n    bottom: 0;\n    border-top-color: $popover-arrow-outer-color;\n  }\n\n  .arrow::after {\n    bottom: $popover-border-width;\n    border-top-color: $popover-arrow-color;\n  }\n}\n\n.bs-popover-right {\n  margin-left: $popover-arrow-height;\n\n  .arrow {\n    left: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);\n    width: $popover-arrow-height;\n    height: $popover-arrow-width;\n    margin: $border-radius-lg 0; // make sure the arrow does not touch the popover's rounded corners\n  }\n\n  .arrow::before,\n  .arrow::after {\n    border-width: ($popover-arrow-width / 2) $popover-arrow-height ($popover-arrow-width / 2) 0;\n  }\n\n  .arrow::before {\n    left: 0;\n    border-right-color: $popover-arrow-outer-color;\n  }\n\n  .arrow::after {\n    left: $popover-border-width;\n    border-right-color: $popover-arrow-color;\n  }\n}\n\n.bs-popover-bottom {\n  margin-top: $popover-arrow-height;\n\n  .arrow {\n    top: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);\n  }\n\n  .arrow::before,\n  .arrow::after {\n    border-width: 0 ($popover-arrow-width / 2) $popover-arrow-height ($popover-arrow-width / 2);\n  }\n\n  .arrow::before {\n    top: 0;\n    border-bottom-color: $popover-arrow-outer-color;\n  }\n\n  .arrow::after {\n    top: $popover-border-width;\n    border-bottom-color: $popover-arrow-color;\n  }\n\n  // This will remove the popover-header's border just below the arrow\n  .popover-header::before {\n    position: absolute;\n    top: 0;\n    left: 50%;\n    display: block;\n    width: $popover-arrow-width;\n    margin-left: ($popover-arrow-width / -2);\n    content: \"\";\n    border-bottom: $popover-border-width solid $popover-header-bg;\n  }\n}\n\n.bs-popover-left {\n  margin-right: $popover-arrow-height;\n\n  .arrow {\n    right: calc((#{$popover-arrow-height} + #{$popover-border-width}) * -1);\n    width: $popover-arrow-height;\n    height: $popover-arrow-width;\n    margin: $border-radius-lg 0; // make sure the arrow does not touch the popover's rounded corners\n  }\n\n  .arrow::before,\n  .arrow::after {\n    border-width: ($popover-arrow-width / 2) 0 ($popover-arrow-width / 2) $popover-arrow-height;\n  }\n\n  .arrow::before {\n    right: 0;\n    border-left-color: $popover-arrow-outer-color;\n  }\n\n  .arrow::after {\n    right: $popover-border-width;\n    border-left-color: $popover-arrow-color;\n  }\n}\n\n.bs-popover-auto {\n  &[x-placement^=\"top\"] {\n    @extend .bs-popover-top;\n  }\n  &[x-placement^=\"right\"] {\n    @extend .bs-popover-right;\n  }\n  &[x-placement^=\"bottom\"] {\n    @extend .bs-popover-bottom;\n  }\n  &[x-placement^=\"left\"] {\n    @extend .bs-popover-left;\n  }\n}\n\n\n// Offset the popover to account for the popover arrow\n.popover-header {\n  padding: $popover-header-padding-y $popover-header-padding-x;\n  margin-bottom: 0; // Reset the default from Reboot\n  font-size: $font-size-base;\n  color: $popover-header-color;\n  background-color: $popover-header-bg;\n  border-bottom: $popover-border-width solid darken($popover-header-bg, 5%);\n  $offset-border-width: calc(#{$border-radius-lg} - #{$popover-border-width});\n  @include border-top-radius($offset-border-width);\n\n  &:empty {\n    display: none;\n  }\n}\n\n.popover-body {\n  padding: $popover-body-padding-y $popover-body-padding-x;\n  color: $popover-body-color;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_print.scss",
    "content": "// stylelint-disable declaration-no-important, selector-no-qualifying-type\n\n// Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request:\n// https://www.phpied.com/delay-loading-your-print-css/\n// ==========================================================================\n\n@if $enable-print-styles {\n  @media print {\n    *,\n    *::before,\n    *::after {\n      // Bootstrap specific; comment out `color` and `background`\n      //color: $black !important; // Black prints faster\n      text-shadow: none !important;\n      //background: transparent !important;\n      box-shadow: none !important;\n    }\n\n    a {\n      &:not(.btn) {\n        text-decoration: underline;\n      }\n    }\n\n    // Bootstrap specific; comment the following selector out\n    //a[href]::after {\n    //  content: \" (\" attr(href) \")\";\n    //}\n\n    abbr[title]::after {\n      content: \" (\" attr(title) \")\";\n    }\n\n    // Bootstrap specific; comment the following selector out\n    //\n    // Don't show links that are fragment identifiers,\n    // or use the `javascript:` pseudo protocol\n    //\n\n    //a[href^=\"#\"]::after,\n    //a[href^=\"javascript:\"]::after {\n    // content: \"\";\n    //}\n\n    pre {\n      white-space: pre-wrap !important;\n    }\n    pre,\n    blockquote {\n      border: $border-width solid $gray-500;   // Bootstrap custom code; using `$border-width` instead of 1px\n      page-break-inside: avoid;\n    }\n\n    //\n    // Printing Tables:\n    // http://css-discuss.incutio.com/wiki/Printing_Tables\n    //\n\n    thead {\n      display: table-header-group;\n    }\n\n    tr,\n    img {\n      page-break-inside: avoid;\n    }\n\n    p,\n    h2,\n    h3 {\n      orphans: 3;\n      widows: 3;\n    }\n\n    h2,\n    h3 {\n      page-break-after: avoid;\n    }\n\n    // Bootstrap specific changes start\n\n    // Specify a size and min-width to make printing closer across browsers.\n    // We don't set margin here because it breaks `size` in Chrome. We also\n    // don't use `!important` on `size` as it breaks in Chrome.\n    @page {\n      size: $print-page-size;\n    }\n    body {\n      min-width: $print-body-min-width !important;\n    }\n    .container {\n      min-width: $print-body-min-width !important;\n    }\n\n    // Bootstrap components\n    .navbar {\n      display: none;\n    }\n    .badge {\n      border: $border-width solid $black;\n    }\n\n    .table {\n      border-collapse: collapse !important;\n\n      td,\n      th {\n        background-color: $white !important;\n      }\n    }\n\n    .table-bordered {\n      th,\n      td {\n        border: 1px solid $gray-300 !important;\n      }\n    }\n\n    .table-dark {\n      color: inherit;\n\n      th,\n      td,\n      thead th,\n      tbody + tbody {\n        border-color: $table-border-color;\n      }\n    }\n\n    .table .thead-dark th {\n      color: inherit;\n      border-color: $table-border-color;\n    }\n\n    // Bootstrap specific changes end\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_progress.scss",
    "content": "@keyframes progress-bar-stripes {\n  from { background-position: $progress-height 0; }\n  to { background-position: 0 0; }\n}\n\n.progress {\n  display: flex;\n  height: $progress-height;\n  overflow: hidden; // force rounded corners by cropping it\n  font-size: $progress-font-size;\n  background-color: $progress-bg;\n  @include border-radius($progress-border-radius);\n  @include box-shadow($progress-box-shadow);\n}\n\n.progress-bar {\n  display: flex;\n  flex-direction: column;\n  justify-content: center;\n  color: $progress-bar-color;\n  text-align: center;\n  white-space: nowrap;\n  background-color: $progress-bar-bg;\n  @include transition($progress-bar-transition);\n}\n\n.progress-bar-striped {\n  @include gradient-striped();\n  background-size: $progress-height $progress-height;\n}\n\n.progress-bar-animated {\n  animation: progress-bar-stripes $progress-bar-animation-timing;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_reboot.scss",
    "content": "// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so\n//    we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n// 6. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n  box-sizing: border-box; // 1\n}\n\nhtml {\n  font-family: sans-serif; // 2\n  line-height: 1.15; // 3\n  -webkit-text-size-adjust: 100%; // 4\n  -ms-text-size-adjust: 100%; // 4\n  -ms-overflow-style: scrollbar; // 5\n  -webkit-tap-highlight-color: rgba($black, 0); // 6\n}\n\n// IE10+ doesn't honor `<meta name=\"viewport\">` in some cases.\n@at-root {\n  @-ms-viewport {\n    width: device-width;\n  }\n}\n\n// stylelint-disable selector-list-comma-newline-after\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n  display: block;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use the\n//    the `inherit` value on things like `<th>` elements.\n\nbody {\n  margin: 0; // 1\n  font-family: $font-family-base;\n  font-size: $font-size-base;\n  font-weight: $font-weight-base;\n  line-height: $line-height-base;\n  color: $body-color;\n  text-align: left; // 3\n  background-color: $body-bg; // 2\n}\n\n// Suppress the focus outline on elements that cannot be accessed via keyboard.\n// This prevents an unwanted focus outline from appearing around elements that\n// might still respond to pointer events.\n//\n// Credit: https://github.com/suitcss/base\n[tabindex=\"-1\"]:focus {\n  outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n  box-sizing: content-box; // 1\n  height: 0; // 1\n  overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `<h1>`-`<h6>` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n  margin-top: 0;\n  margin-bottom: $headings-margin-bottom;\n}\n// stylelint-enable selector-list-comma-newline-after\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `<p>`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n  margin-top: 0;\n  margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Remove the bottom border in Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Duplicate behavior to the data-* attribute for our tooltip plugin\n\nabbr[title],\nabbr[data-original-title] { // 4\n  text-decoration: underline; // 2\n  text-decoration: underline dotted; // 2\n  cursor: help; // 3\n  border-bottom: 0; // 1\n}\n\naddress {\n  margin-bottom: 1rem;\n  font-style: normal;\n  line-height: inherit;\n}\n\nol,\nul,\ndl {\n  margin-top: 0;\n  margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n  margin-bottom: 0;\n}\n\ndt {\n  font-weight: $dt-font-weight;\n}\n\ndd {\n  margin-bottom: .5rem;\n  margin-left: 0; // Undo browser default\n}\n\nblockquote {\n  margin: 0 0 1rem;\n}\n\ndfn {\n  font-style: italic; // Add the correct font style in Android 4.3-\n}\n\n// stylelint-disable font-weight-notation\nb,\nstrong {\n  font-weight: bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n// stylelint-enable font-weight-notation\n\nsmall {\n  font-size: 80%; // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n  position: relative;\n  font-size: 75%;\n  line-height: 0;\n  vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n  color: $link-color;\n  text-decoration: $link-decoration;\n  background-color: transparent; // Remove the gray background on active links in IE 10.\n  -webkit-text-decoration-skip: objects; // Remove gaps in links underline in iOS 8+ and Safari 8+.\n\n  @include hover {\n    color: $link-hover-color;\n    text-decoration: $link-hover-decoration;\n  }\n}\n\n// And undo these styles for placeholder links/named anchors (without href)\n// which have not been made explicitly keyboard-focusable (without tabindex).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([tabindex]) {\n  color: inherit;\n  text-decoration: none;\n\n  @include hover-focus {\n    color: inherit;\n    text-decoration: none;\n  }\n\n  &:focus {\n    outline: 0;\n  }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n  font-family: $font-family-monospace;\n  font-size: 1em; // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n  // Remove browser default top margin\n  margin-top: 0;\n  // Reset browser default of `1em` to use `rem`s\n  margin-bottom: 1rem;\n  // Don't allow content to break outside\n  overflow: auto;\n  // We have @viewport set which causes scrollbars to overlap content in IE11 and Edge, so\n  // we force a non-overlapping, non-auto-hiding scrollbar to counteract.\n  -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n  // Apply a consistent margin strategy (matches our type styles).\n  margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n  vertical-align: middle;\n  border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n  // Workaround for the SVG overflow bug in IE10/11 is still required.\n  // See https://github.com/twbs/bootstrap/issues/26878\n  overflow: hidden;\n  vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n  border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n  padding-top: $table-cell-padding;\n  padding-bottom: $table-cell-padding;\n  color: $table-caption-color;\n  text-align: left;\n  caption-side: bottom;\n}\n\nth {\n  // Matches default `<td>` alignment by inheriting from the `<body>`, or the\n  // closest parent with a set `text-align`.\n  text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n  // Allow labels to use `margin` for spacing.\n  display: inline-block;\n  margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n  border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n  outline: 1px dotted;\n  outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n  margin: 0; // Remove the margin in Firefox and Safari\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\nbutton,\ninput {\n  overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n  text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`\n//    controls in Android 4.\n// 2. Correct the inability to style clickable types in iOS and Safari.\nbutton,\nhtml [type=\"button\"], // 1\n[type=\"reset\"],\n[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n}\n\n// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n  padding: 0;\n  border-style: none;\n}\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  box-sizing: border-box; // 1. Add the correct box sizing in IE 10-\n  padding: 0; // 2. Remove the padding in IE 10-\n}\n\n\ninput[type=\"date\"],\ninput[type=\"time\"],\ninput[type=\"datetime-local\"],\ninput[type=\"month\"] {\n  // Remove the default appearance of temporal inputs to avoid a Mobile Safari\n  // bug where setting a custom line-height prevents text from being vertically\n  // centered within the input.\n  // See https://bugs.webkit.org/show_bug.cgi?id=139848\n  // and https://github.com/twbs/bootstrap/issues/11266\n  -webkit-appearance: listbox;\n}\n\ntextarea {\n  overflow: auto; // Remove the default vertical scrollbar in IE.\n  // Textareas should really only resize vertically so they don't break their (horizontal) containers.\n  resize: vertical;\n}\n\nfieldset {\n  // Browsers set a default `min-width: min-content;` on fieldsets,\n  // unlike e.g. `<div>`s, which have `min-width: 0;` by default.\n  // So we reset that to ensure fieldsets behave more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359\n  // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements\n  min-width: 0;\n  // Reset the default outline behavior of fieldsets so they don't affect page layout.\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\n\n// 1. Correct the text wrapping in Edge and IE.\n// 2. Correct the color inheritance from `fieldset` elements in IE.\nlegend {\n  display: block;\n  width: 100%;\n  max-width: 100%; // 1\n  padding: 0;\n  margin-bottom: .5rem;\n  font-size: 1.5rem;\n  line-height: inherit;\n  color: inherit; // 2\n  white-space: normal; // 1\n}\n\nprogress {\n  vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.\n}\n\n// Correct the cursor style of increment and decrement buttons in Chrome.\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n[type=\"search\"] {\n  // This overrides the extra rounded corners on search inputs in iOS so that our\n  // `.form-control` class can properly style them. Note that this cannot simply\n  // be added to `.form-control` as it's not specific enough. For details, see\n  // https://github.com/twbs/bootstrap/issues/11586.\n  outline-offset: -2px; // 2. Correct the outline style in Safari.\n  -webkit-appearance: none;\n}\n\n//\n// Remove the inner padding and cancel buttons in Chrome and Safari on macOS.\n//\n\n[type=\"search\"]::-webkit-search-cancel-button,\n[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// 1. Correct the inability to style clickable types in iOS and Safari.\n// 2. Change font properties to `inherit` in Safari.\n//\n\n::-webkit-file-upload-button {\n  font: inherit; // 2\n  -webkit-appearance: button; // 1\n}\n\n//\n// Correct element displays\n//\n\noutput {\n  display: inline-block;\n}\n\nsummary {\n  display: list-item; // Add the correct display in all browsers\n  cursor: pointer;\n}\n\ntemplate {\n  display: none; // Add the correct display in IE\n}\n\n// Always hide an element with the `hidden` HTML attribute (from PureCSS).\n// Needed for proper display in IE 10-.\n[hidden] {\n  display: none !important;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_root.scss",
    "content": ":root {\n  // Custom variable values only support SassScript inside `#{}`.\n  @each $color, $value in $colors {\n    --#{$color}: #{$value};\n  }\n\n  @each $color, $value in $theme-colors {\n    --#{$color}: #{$value};\n  }\n\n  @each $bp, $value in $grid-breakpoints {\n    --breakpoint-#{$bp}: #{$value};\n  }\n\n  // Use `inspect` for lists so that quoted items keep the quotes.\n  // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n  --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n  --font-family-monospace: #{inspect($font-family-monospace)};\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_tables.scss",
    "content": "//\n// Basic Bootstrap table\n//\n\n.table {\n  width: 100%;\n  margin-bottom: $spacer;\n  background-color: $table-bg; // Reset for nesting within parents with `background-color`.\n\n  th,\n  td {\n    padding: $table-cell-padding;\n    vertical-align: top;\n    border-top: $table-border-width solid $table-border-color;\n  }\n\n  thead th {\n    vertical-align: bottom;\n    border-bottom: (2 * $table-border-width) solid $table-border-color;\n  }\n\n  tbody + tbody {\n    border-top: (2 * $table-border-width) solid $table-border-color;\n  }\n\n  .table {\n    background-color: $body-bg;\n  }\n}\n\n\n//\n// Condensed table w/ half padding\n//\n\n.table-sm {\n  th,\n  td {\n    padding: $table-cell-padding-sm;\n  }\n}\n\n\n// Border versions\n//\n// Add or remove borders all around the table and between all the columns.\n\n.table-bordered {\n  border: $table-border-width solid $table-border-color;\n\n  th,\n  td {\n    border: $table-border-width solid $table-border-color;\n  }\n\n  thead {\n    th,\n    td {\n      border-bottom-width: (2 * $table-border-width);\n    }\n  }\n}\n\n.table-borderless {\n  th,\n  td,\n  thead th,\n  tbody + tbody {\n    border: 0;\n  }\n}\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  tbody tr:nth-of-type(#{$table-striped-order}) {\n    background-color: $table-accent-bg;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  tbody tr {\n    @include hover {\n      background-color: $table-hover-bg;\n    }\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n@each $color, $value in $theme-colors {\n  @include table-row-variant($color, theme-color-level($color, -9));\n}\n\n@include table-row-variant(active, $table-active-bg);\n\n\n// Dark styles\n//\n// Same table markup, but inverted color scheme: dark background and light text.\n\n// stylelint-disable-next-line no-duplicate-selectors\n.table {\n  .thead-dark {\n    th {\n      color: $table-dark-color;\n      background-color: $table-dark-bg;\n      border-color: $table-dark-border-color;\n    }\n  }\n\n  .thead-light {\n    th {\n      color: $table-head-color;\n      background-color: $table-head-bg;\n      border-color: $table-border-color;\n    }\n  }\n}\n\n.table-dark {\n  color: $table-dark-color;\n  background-color: $table-dark-bg;\n\n  th,\n  td,\n  thead th {\n    border-color: $table-dark-border-color;\n  }\n\n  &.table-bordered {\n    border: 0;\n  }\n\n  &.table-striped {\n    tbody tr:nth-of-type(odd) {\n      background-color: $table-dark-accent-bg;\n    }\n  }\n\n  &.table-hover {\n    tbody tr {\n      @include hover {\n        background-color: $table-dark-hover-bg;\n      }\n    }\n  }\n}\n\n\n// Responsive tables\n//\n// Generate series of `.table-responsive-*` classes for configuring the screen\n// size of where your table will overflow.\n\n.table-responsive {\n  @each $breakpoint in map-keys($grid-breakpoints) {\n    $next: breakpoint-next($breakpoint, $grid-breakpoints);\n    $infix: breakpoint-infix($next, $grid-breakpoints);\n\n    &#{$infix} {\n      @include media-breakpoint-down($breakpoint) {\n        display: block;\n        width: 100%;\n        overflow-x: auto;\n        -webkit-overflow-scrolling: touch;\n        -ms-overflow-style: -ms-autohiding-scrollbar; // See https://github.com/twbs/bootstrap/pull/10057\n\n        // Prevent double border on horizontal scroll due to use of `display: block;`\n        > .table-bordered {\n          border: 0;\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_tooltip.scss",
    "content": "// Base class\n.tooltip {\n  position: absolute;\n  z-index: $zindex-tooltip;\n  display: block;\n  margin: $tooltip-margin;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  @include reset-text();\n  font-size: $tooltip-font-size;\n  // Allow breaking very long words so they don't overflow the tooltip's bounds\n  word-wrap: break-word;\n  opacity: 0;\n\n  &.show { opacity: $tooltip-opacity; }\n\n  .arrow {\n    position: absolute;\n    display: block;\n    width: $tooltip-arrow-width;\n    height: $tooltip-arrow-height;\n\n    &::before {\n      position: absolute;\n      content: \"\";\n      border-color: transparent;\n      border-style: solid;\n    }\n  }\n}\n\n.bs-tooltip-top {\n  padding: $tooltip-arrow-height 0;\n\n  .arrow {\n    bottom: 0;\n\n    &::before {\n      top: 0;\n      border-width: $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;\n      border-top-color: $tooltip-arrow-color;\n    }\n  }\n}\n\n.bs-tooltip-right {\n  padding: 0 $tooltip-arrow-height;\n\n  .arrow {\n    left: 0;\n    width: $tooltip-arrow-height;\n    height: $tooltip-arrow-width;\n\n    &::before {\n      right: 0;\n      border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;\n      border-right-color: $tooltip-arrow-color;\n    }\n  }\n}\n\n.bs-tooltip-bottom {\n  padding: $tooltip-arrow-height 0;\n\n  .arrow {\n    top: 0;\n\n    &::before {\n      bottom: 0;\n      border-width: 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;\n      border-bottom-color: $tooltip-arrow-color;\n    }\n  }\n}\n\n.bs-tooltip-left {\n  padding: 0 $tooltip-arrow-height;\n\n  .arrow {\n    right: 0;\n    width: $tooltip-arrow-height;\n    height: $tooltip-arrow-width;\n\n    &::before {\n      left: 0;\n      border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;\n      border-left-color: $tooltip-arrow-color;\n    }\n  }\n}\n\n.bs-tooltip-auto {\n  &[x-placement^=\"top\"] {\n    @extend .bs-tooltip-top;\n  }\n  &[x-placement^=\"right\"] {\n    @extend .bs-tooltip-right;\n  }\n  &[x-placement^=\"bottom\"] {\n    @extend .bs-tooltip-bottom;\n  }\n  &[x-placement^=\"left\"] {\n    @extend .bs-tooltip-left;\n  }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  max-width: $tooltip-max-width;\n  padding: $tooltip-padding-y $tooltip-padding-x;\n  color: $tooltip-color;\n  text-align: center;\n  background-color: $tooltip-bg;\n  @include border-radius($tooltip-border-radius);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_transitions.scss",
    "content": "// stylelint-disable selector-no-qualifying-type\n\n.fade {\n  @include transition($transition-fade);\n\n  &:not(.show) {\n    opacity: 0;\n  }\n}\n\n.collapse {\n  &:not(.show) {\n    display: none;\n  }\n}\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  @include transition($transition-collapse);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_type.scss",
    "content": "// stylelint-disable declaration-no-important, selector-list-comma-newline-after\n\n//\n// Headings\n//\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  margin-bottom: $headings-margin-bottom;\n  font-family: $headings-font-family;\n  font-weight: $headings-font-weight;\n  line-height: $headings-line-height;\n  color: $headings-color;\n}\n\nh1, .h1 { font-size: $h1-font-size; }\nh2, .h2 { font-size: $h2-font-size; }\nh3, .h3 { font-size: $h3-font-size; }\nh4, .h4 { font-size: $h4-font-size; }\nh5, .h5 { font-size: $h5-font-size; }\nh6, .h6 { font-size: $h6-font-size; }\n\n.lead {\n  font-size: $lead-font-size;\n  font-weight: $lead-font-weight;\n}\n\n// Type display classes\n.display-1 {\n  font-size: $display1-size;\n  font-weight: $display1-weight;\n  line-height: $display-line-height;\n}\n.display-2 {\n  font-size: $display2-size;\n  font-weight: $display2-weight;\n  line-height: $display-line-height;\n}\n.display-3 {\n  font-size: $display3-size;\n  font-weight: $display3-weight;\n  line-height: $display-line-height;\n}\n.display-4 {\n  font-size: $display4-size;\n  font-weight: $display4-weight;\n  line-height: $display-line-height;\n}\n\n\n//\n// Horizontal rules\n//\n\nhr {\n  margin-top: $hr-margin-y;\n  margin-bottom: $hr-margin-y;\n  border: 0;\n  border-top: $hr-border-width solid $hr-border-color;\n}\n\n\n//\n// Emphasis\n//\n\nsmall,\n.small {\n  font-size: $small-font-size;\n  font-weight: $font-weight-normal;\n}\n\nmark,\n.mark {\n  padding: $mark-padding;\n  background-color: $mark-bg;\n}\n\n\n//\n// Lists\n//\n\n.list-unstyled {\n  @include list-unstyled;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n  @include list-unstyled;\n}\n.list-inline-item {\n  display: inline-block;\n\n  &:not(:last-child) {\n    margin-right: $list-inline-padding;\n  }\n}\n\n\n//\n// Misc\n//\n\n// Builds on `abbr`\n.initialism {\n  font-size: 90%;\n  text-transform: uppercase;\n}\n\n// Blockquotes\n.blockquote {\n  margin-bottom: $spacer;\n  font-size: $blockquote-font-size;\n}\n\n.blockquote-footer {\n  display: block;\n  font-size: 80%; // back to default font-size\n  color: $blockquote-small-color;\n\n  &::before {\n    content: \"\\2014 \\00A0\"; // em dash, nbsp\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_utilities.scss",
    "content": "@import \"utilities/align\";\n@import \"utilities/background\";\n@import \"utilities/borders\";\n@import \"utilities/clearfix\";\n@import \"utilities/display\";\n@import \"utilities/embed\";\n@import \"utilities/flex\";\n@import \"utilities/float\";\n@import \"utilities/position\";\n@import \"utilities/screenreaders\";\n@import \"utilities/shadows\";\n@import \"utilities/sizing\";\n@import \"utilities/spacing\";\n@import \"utilities/text\";\n@import \"utilities/visibility\";\n"
  },
  {
    "path": "public/landing/scss/bootstrap/_variables.scss",
    "content": "// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n\n//\n// Color system\n//\n\n$white:    #fff !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n$black:    #000 !default;\n\n$grays: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$grays: map-merge(\n  (\n    \"100\": $gray-100,\n    \"200\": $gray-200,\n    \"300\": $gray-300,\n    \"400\": $gray-400,\n    \"500\": $gray-500,\n    \"600\": $gray-600,\n    \"700\": $gray-700,\n    \"800\": $gray-800,\n    \"900\": $gray-900\n  ),\n  $grays\n);\n\n$blue:    #1c4b82 !default;\n$indigo:  #0d0cb5 !default;\n$purple:  #7971ea !default;\n$pink:    #e83e8c !default;\n$red:     #f23a2e !default;\n$orange:  #ef6c57 !default;\n$yellow:  #f89d13 !default;\n$green:   #8bc34a !default;\n$teal:    #46ddb0 !default;\n$cyan:    #17a2b8 !default;\n\n\n$colors: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$colors: map-merge(\n  (\n    \"blue\":       $blue,\n    \"indigo\":     $indigo,\n    \"purple\":     $purple,\n    \"pink\":       $pink,\n    \"red\":        $red,\n    \"orange\":     $orange,\n    \"yellow\":     $yellow,\n    \"green\":      $green,\n    \"teal\":       $teal,\n    \"cyan\":       $cyan,\n    \"white\":      $white,\n    \"gray\":       $gray-600,\n    \"gray-dark\":  $gray-800\n  ),\n  $colors\n);\n\n$primary:       $purple !default;\n$secondary:     $gray-600 !default;\n$success:       $green !default;\n$info:          $cyan !default;\n$warning:       $yellow !default;\n$danger:        $red !default;\n$light:         $gray-100 !default;\n$dark:          $gray-800 !default;\n\n// $secondary: #1abb9c;\n$gray-1: #25262a;\n$gray-2: #5c626e;\n$gray-3: #c4c7ce;\n$gray-4: #edf0f5;\n\n$theme-colors: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$theme-colors: map-merge(\n  (\n    \"primary\":    $primary,\n    \"secondary\":  $secondary,\n    \"success\":    $success,\n    \"info\":       $info,\n    \"warning\":    $warning,\n    \"danger\":     $danger,\n    \"light\":      $light,\n    \"dark\":       $dark\n  ),\n  $theme-colors\n);\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval:      8% !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold:  150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark:             $gray-900 !default;\n$yiq-text-light:            $white !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret:              true !default;\n$enable-rounded:            true !default;\n$enable-shadows:            false !default;\n$enable-gradients:          false !default;\n$enable-transitions:        true !default;\n$enable-hover-media-query:  false !default; // Deprecated, no longer affects any compiled CSS\n$enable-grid-classes:       true !default;\n$enable-print-styles:       true !default;\n\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n$spacer: 1rem !default;\n$spacers: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$spacers: map-merge(\n  (\n    0: 0,\n    1: ($spacer * .25),\n    2: ($spacer * .5),\n    3: $spacer,\n    4: ($spacer * 1.5),\n    5: ($spacer * 3)\n  ),\n  $spacers\n);\n\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$sizes: map-merge(\n  (\n    25: 25%,\n    50: 50%,\n    75: 75%,\n    100: 100%,\n    auto: auto\n  ),\n  $sizes\n);\n\n// Body\n//\n// Settings for the `<body>` element.\n\n$body-bg:                   $white !default;\n$body-color:                $gray-900 !default;\n\n// Links\n//\n// Style anchor elements.\n\n$link-color:                theme-color(\"primary\") !default;\n$link-decoration:           none !default;\n$link-hover-color:          darken($link-color, 15%) !default;\n$link-hover-decoration:     underline !default;\n\n// Paragraphs\n//\n// Style p element.\n\n$paragraph-margin-bottom:   1rem !default;\n\n\n// Grid breakpoints\n//\n// Define the minimum dimensions at which your layout will change,\n// adapting to different screen sizes, for use in media queries.\n\n$grid-breakpoints: (\n  xs: 0,\n  sm: 576px,\n  md: 768px,\n  lg: 992px,\n  xl: 1200px\n) !default;\n\n@include _assert-ascending($grid-breakpoints, \"$grid-breakpoints\");\n@include _assert-starts-at-zero($grid-breakpoints);\n\n\n// Grid containers\n//\n// Define the maximum width of `.container` for different screen sizes.\n\n$container-max-widths: (\n  sm: 540px,\n  md: 720px,\n  lg: 960px,\n  xl: 1140px\n) !default;\n\n@include _assert-ascending($container-max-widths, \"$container-max-widths\");\n\n\n// Grid columns\n//\n// Set the number of columns and specify the width of the gutters.\n\n$grid-columns:                12 !default;\n$grid-gutter-width:           30px !default;\n\n// Components\n//\n// Define common padding and border radius sizes and more.\n\n$line-height-lg:              1.5 !default;\n$line-height-sm:              1.5 !default;\n\n$border-width:                1px !default;\n$border-color:                $gray-300 !default;\n\n$border-radius:               .25rem !default;\n$border-radius-lg:            .3rem !default;\n$border-radius-sm:            .2rem !default;\n\n$box-shadow-sm:               0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow:                  0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-lg:               0 1rem 3rem rgba($black, .175) !default;\n\n$component-active-color:      $white !default;\n$component-active-bg:         theme-color(\"primary\") !default;\n\n$caret-width:                 .3em !default;\n\n$transition-base:             all .2s ease-in-out !default;\n$transition-fade:             opacity .15s linear !default;\n$transition-collapse:         height .35s ease !default;\n\n\n// Fonts\n//\n// Font, line-height, and color for body text, headings, and more.\n\n// stylelint-disable value-keyword-case\n$font-family-sans-serif:      'Muli', -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\" !default;\n$font-family-monospace:       SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !default;\n$font-family-base:            $font-family-sans-serif !default;\n// stylelint-enable value-keyword-case\n\n$font-size-base:              1rem !default; // Assumes the browser default, typically `16px`\n$font-size-lg:                ($font-size-base * 1.25) !default;\n$font-size-sm:                ($font-size-base * .875) !default;\n\n$font-weight-light:           300 !default;\n$font-weight-normal:          400 !default;\n$font-weight-bold:            700 !default;\n\n$font-weight-base:            $font-weight-normal !default;\n$line-height-base:            1.5 !default;\n\n$h1-font-size:                $font-size-base * 2.5 !default;\n$h2-font-size:                $font-size-base * 2 !default;\n$h3-font-size:                $font-size-base * 1.75 !default;\n$h4-font-size:                $font-size-base * 1.5 !default;\n$h5-font-size:                $font-size-base * 1.25 !default;\n$h6-font-size:                $font-size-base !default;\n\n$headings-margin-bottom:      ($spacer / 2) !default;\n$headings-font-family:        inherit !default;\n$headings-font-weight:        500 !default;\n$headings-line-height:        1.2 !default;\n$headings-color:              inherit !default;\n\n$display1-size:               6rem !default;\n$display2-size:               5.5rem !default;\n$display3-size:               4.5rem !default;\n$display4-size:               3.5rem !default;\n\n$display1-weight:             300 !default;\n$display2-weight:             300 !default;\n$display3-weight:             300 !default;\n$display4-weight:             300 !default;\n$display-line-height:         $headings-line-height !default;\n\n$lead-font-size:              ($font-size-base * 1.25) !default;\n$lead-font-weight:            300 !default;\n\n$small-font-size:             80% !default;\n\n$text-muted:                  $gray-600 !default;\n\n$blockquote-small-color:      $gray-600 !default;\n$blockquote-font-size:        ($font-size-base * 1.25) !default;\n\n$hr-border-color:             rgba($black, .1) !default;\n$hr-border-width:             $border-width !default;\n\n$mark-padding:                .2em !default;\n\n$dt-font-weight:              $font-weight-bold !default;\n\n$kbd-box-shadow:              inset 0 -.1rem 0 rgba($black, .25) !default;\n$nested-kbd-font-weight:      $font-weight-bold !default;\n\n$list-inline-padding:         .5rem !default;\n\n$mark-bg:                     #fcf8e3 !default;\n\n$hr-margin-y:                 $spacer !default;\n\n\n// Tables\n//\n// Customizes the `.table` component with basic values, each used across all table variations.\n\n$table-cell-padding:          .75rem !default;\n$table-cell-padding-sm:       .3rem !default;\n\n$table-bg:                    transparent !default;\n$table-accent-bg:             rgba($black, .05) !default;\n$table-hover-bg:              rgba($black, .075) !default;\n$table-active-bg:             $table-hover-bg !default;\n\n$table-border-width:          $border-width !default;\n$table-border-color:          $gray-300 !default;\n\n$table-head-bg:               $gray-200 !default;\n$table-head-color:            $gray-700 !default;\n\n$table-dark-bg:               $gray-900 !default;\n$table-dark-accent-bg:        rgba($white, .05) !default;\n$table-dark-hover-bg:         rgba($white, .075) !default;\n$table-dark-border-color:     lighten($gray-900, 7.5%) !default;\n$table-dark-color:            $body-bg !default;\n\n$table-striped-order:         odd !default;\n\n$table-caption-color:         $text-muted !default;\n\n// Buttons + Forms\n//\n// Shared variables that are reassigned to `$input-` and `$btn-` specific variables.\n\n$input-btn-padding-y:         .375rem !default;\n$input-btn-padding-x:         .75rem !default;\n$input-btn-line-height:       $line-height-base !default;\n\n$input-btn-focus-width:       .2rem !default;\n$input-btn-focus-color:       rgba($component-active-bg, .25) !default;\n$input-btn-focus-box-shadow:  0 0 0 $input-btn-focus-width $input-btn-focus-color !default;\n\n$input-btn-padding-y-sm:      .25rem !default;\n$input-btn-padding-x-sm:      .5rem !default;\n$input-btn-line-height-sm:    $line-height-sm !default;\n\n$input-btn-padding-y-lg:      .5rem !default;\n$input-btn-padding-x-lg:      1rem !default;\n$input-btn-line-height-lg:    $line-height-lg !default;\n\n$input-btn-border-width:      $border-width !default;\n\n\n// Buttons\n//\n// For each of Bootstrap's buttons, define text, background, and border color.\n\n$btn-padding-y:               $input-btn-padding-y !default;\n$btn-padding-x:               $input-btn-padding-x !default;\n$btn-line-height:             $input-btn-line-height !default;\n\n$btn-padding-y-sm:            $input-btn-padding-y-sm !default;\n$btn-padding-x-sm:            $input-btn-padding-x-sm !default;\n$btn-line-height-sm:          $input-btn-line-height-sm !default;\n\n$btn-padding-y-lg:            $input-btn-padding-y-lg !default;\n$btn-padding-x-lg:            $input-btn-padding-x-lg !default;\n$btn-line-height-lg:          $input-btn-line-height-lg !default;\n\n$btn-border-width:            $input-btn-border-width !default;\n\n$btn-font-weight:             $font-weight-normal !default;\n$btn-box-shadow:              inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default;\n$btn-focus-width:             $input-btn-focus-width !default;\n$btn-focus-box-shadow:        $input-btn-focus-box-shadow !default;\n$btn-disabled-opacity:        .65 !default;\n$btn-active-box-shadow:       inset 0 3px 5px rgba($black, .125) !default;\n\n$btn-link-disabled-color:     $gray-600 !default;\n\n$btn-block-spacing-y:         .5rem !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius:           $border-radius !default;\n$btn-border-radius-lg:        $border-radius-lg !default;\n$btn-border-radius-sm:        $border-radius-sm !default;\n\n$btn-transition:              color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n\n// Forms\n\n$label-margin-bottom:                   .5rem !default;\n\n$input-padding-y:                       $input-btn-padding-y !default;\n$input-padding-x:                       $input-btn-padding-x !default;\n$input-line-height:                     $input-btn-line-height !default;\n\n$input-padding-y-sm:                    $input-btn-padding-y-sm !default;\n$input-padding-x-sm:                    $input-btn-padding-x-sm !default;\n$input-line-height-sm:                  $input-btn-line-height-sm !default;\n\n$input-padding-y-lg:                    $input-btn-padding-y-lg !default;\n$input-padding-x-lg:                    $input-btn-padding-x-lg !default;\n$input-line-height-lg:                  $input-btn-line-height-lg !default;\n\n$input-bg:                              $white !default;\n$input-disabled-bg:                     $gray-200 !default;\n\n$input-color:                           $gray-700 !default;\n$input-border-color:                    $gray-400 !default;\n$input-border-width:                    $input-btn-border-width !default;\n$input-box-shadow:                      inset 0 1px 1px rgba($black, .075) !default;\n\n$input-border-radius:                   $border-radius !default;\n$input-border-radius-lg:                $border-radius-lg !default;\n$input-border-radius-sm:                $border-radius-sm !default;\n\n$input-focus-bg:                        $input-bg !default;\n$input-focus-border-color:              lighten($component-active-bg, 25%) !default;\n$input-focus-color:                     $input-color !default;\n$input-focus-width:                     $input-btn-focus-width !default;\n$input-focus-box-shadow:                $input-btn-focus-box-shadow !default;\n\n$input-placeholder-color:               $gray-600 !default;\n$input-plaintext-color:                 $body-color !default;\n\n$input-height-border:                   $input-border-width * 2 !default;\n\n$input-height-inner:                    ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2) !default;\n$input-height:                          calc(#{$input-height-inner} + #{$input-height-border}) !default;\n\n$input-height-inner-sm:                 ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2) !default;\n$input-height-sm:                       calc(#{$input-height-inner-sm} + #{$input-height-border}) !default;\n\n$input-height-inner-lg:                 ($font-size-lg * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2) !default;\n$input-height-lg:                       calc(#{$input-height-inner-lg} + #{$input-height-border}) !default;\n\n$input-transition:                      border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$form-text-margin-top:                  .25rem !default;\n\n$form-check-input-gutter:               1.25rem !default;\n$form-check-input-margin-y:             .3rem !default;\n$form-check-input-margin-x:             .25rem !default;\n\n$form-check-inline-margin-x:            .75rem !default;\n$form-check-inline-input-margin-x:      .3125rem !default;\n\n$form-group-margin-bottom:              1rem !default;\n\n$input-group-addon-color:               $input-color !default;\n$input-group-addon-bg:                  $gray-200 !default;\n$input-group-addon-border-color:        $input-border-color !default;\n\n$custom-forms-transition:               background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !default;\n\n$custom-control-gutter:                 1.5rem !default;\n$custom-control-spacer-x:               1rem !default;\n\n$custom-control-indicator-size:         1rem !default;\n$custom-control-indicator-bg:           $gray-300 !default;\n$custom-control-indicator-bg-size:      50% 50% !default;\n$custom-control-indicator-box-shadow:   inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-control-indicator-disabled-bg:          $gray-200 !default;\n$custom-control-label-disabled-color:           $gray-600 !default;\n\n$custom-control-indicator-checked-color:        $component-active-color !default;\n$custom-control-indicator-checked-bg:           $component-active-bg !default;\n$custom-control-indicator-checked-disabled-bg:  rgba(theme-color(\"primary\"), .5) !default;\n$custom-control-indicator-checked-box-shadow:   none !default;\n\n$custom-control-indicator-focus-box-shadow:     0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n\n$custom-control-indicator-active-color:         $component-active-color !default;\n$custom-control-indicator-active-bg:            lighten($component-active-bg, 35%) !default;\n$custom-control-indicator-active-box-shadow:    none !default;\n\n$custom-checkbox-indicator-border-radius:       $border-radius !default;\n$custom-checkbox-indicator-icon-checked:        str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='#{$custom-control-indicator-checked-color}' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-checkbox-indicator-indeterminate-bg:          $component-active-bg !default;\n$custom-checkbox-indicator-indeterminate-color:       $custom-control-indicator-checked-color !default;\n$custom-checkbox-indicator-icon-indeterminate:        str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='#{$custom-checkbox-indicator-indeterminate-color}' d='M0 2h4'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-checkbox-indicator-indeterminate-box-shadow:  none !default;\n\n$custom-radio-indicator-border-radius:          50% !default;\n$custom-radio-indicator-icon-checked:           str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='#{$custom-control-indicator-checked-color}'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$custom-select-padding-y:           .375rem !default;\n$custom-select-padding-x:           .75rem !default;\n$custom-select-height:              $input-height !default;\n$custom-select-indicator-padding:   1rem !default; // Extra padding to account for the presence of the background-image based indicator\n$custom-select-line-height:         $input-btn-line-height !default;\n$custom-select-color:               $input-color !default;\n$custom-select-disabled-color:      $gray-600 !default;\n$custom-select-bg:                  $input-bg !default;\n$custom-select-disabled-bg:         $gray-200 !default;\n$custom-select-bg-size:             8px 10px !default; // In pixels because image dimensions\n$custom-select-indicator-color:     $gray-800 !default;\n$custom-select-indicator:           str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='#{$custom-select-indicator-color}' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$custom-select-border-width:        $input-btn-border-width !default;\n$custom-select-border-color:        $input-border-color !default;\n$custom-select-border-radius:       $border-radius !default;\n$custom-select-box-shadow:          inset 0 1px 2px rgba($black, .075) !default;\n\n$custom-select-focus-border-color:  $input-focus-border-color !default;\n$custom-select-focus-width:         $input-btn-focus-width !default;\n$custom-select-focus-box-shadow:    0 0 0 $custom-select-focus-width rgba($custom-select-focus-border-color, .5) !default;\n\n$custom-select-font-size-sm:        75% !default;\n$custom-select-height-sm:           $input-height-sm !default;\n\n$custom-select-font-size-lg:        125% !default;\n$custom-select-height-lg:           $input-height-lg !default;\n\n$custom-range-track-width:          100% !default;\n$custom-range-track-height:         .5rem !default;\n$custom-range-track-cursor:         pointer !default;\n$custom-range-track-bg:             $gray-300 !default;\n$custom-range-track-border-radius:  1rem !default;\n$custom-range-track-box-shadow:     inset 0 .25rem .25rem rgba($black, .1) !default;\n\n$custom-range-thumb-width:                   1rem !default;\n$custom-range-thumb-height:                  $custom-range-thumb-width !default;\n$custom-range-thumb-bg:                      $component-active-bg !default;\n$custom-range-thumb-border:                  0 !default;\n$custom-range-thumb-border-radius:           1rem !default;\n$custom-range-thumb-box-shadow:              0 .1rem .25rem rgba($black, .1) !default;\n$custom-range-thumb-focus-box-shadow:        0 0 0 1px $body-bg, $input-btn-focus-box-shadow !default;\n$custom-range-thumb-focus-box-shadow-width:  $input-btn-focus-width !default; // For focus box shadow issue in IE/Edge\n$custom-range-thumb-active-bg:               lighten($component-active-bg, 35%) !default;\n\n$custom-file-height:                $input-height !default;\n$custom-file-height-inner:          $input-height-inner !default;\n$custom-file-focus-border-color:    $input-focus-border-color !default;\n$custom-file-focus-box-shadow:      $input-btn-focus-box-shadow !default;\n$custom-file-disabled-bg:           $input-disabled-bg !default;\n\n$custom-file-padding-y:             $input-btn-padding-y !default;\n$custom-file-padding-x:             $input-btn-padding-x !default;\n$custom-file-line-height:           $input-btn-line-height !default;\n$custom-file-color:                 $input-color !default;\n$custom-file-bg:                    $input-bg !default;\n$custom-file-border-width:          $input-btn-border-width !default;\n$custom-file-border-color:          $input-border-color !default;\n$custom-file-border-radius:         $input-border-radius !default;\n$custom-file-box-shadow:            $input-box-shadow !default;\n$custom-file-button-color:          $custom-file-color !default;\n$custom-file-button-bg:             $input-group-addon-bg !default;\n$custom-file-text: (\n  en: \"Browse\"\n) !default;\n\n\n// Form validation\n$form-feedback-margin-top:          $form-text-margin-top !default;\n$form-feedback-font-size:           $small-font-size !default;\n$form-feedback-valid-color:         theme-color(\"success\") !default;\n$form-feedback-invalid-color:       theme-color(\"danger\") !default;\n\n\n// Dropdowns\n//\n// Dropdown menu container and contents.\n\n$dropdown-min-width:                10rem !default;\n$dropdown-padding-y:                .5rem !default;\n$dropdown-spacer:                   .125rem !default;\n$dropdown-bg:                       $white !default;\n$dropdown-border-color:             rgba($black, .15) !default;\n$dropdown-border-radius:            $border-radius !default;\n$dropdown-border-width:             $border-width !default;\n$dropdown-divider-bg:               $gray-200 !default;\n$dropdown-box-shadow:               0 .5rem 1rem rgba($black, .175) !default;\n\n$dropdown-link-color:               $gray-900 !default;\n$dropdown-link-hover-color:         darken($gray-900, 5%) !default;\n$dropdown-link-hover-bg:            $gray-100 !default;\n\n$dropdown-link-active-color:        $component-active-color !default;\n$dropdown-link-active-bg:           $component-active-bg !default;\n\n$dropdown-link-disabled-color:      $gray-600 !default;\n\n$dropdown-item-padding-y:           .25rem !default;\n$dropdown-item-padding-x:           1.5rem !default;\n\n$dropdown-header-color:             $gray-600 !default;\n\n\n// Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n\n$zindex-dropdown:                   1000 !default;\n$zindex-sticky:                     1020 !default;\n$zindex-fixed:                      1030 !default;\n$zindex-modal-backdrop:             1040 !default;\n$zindex-modal:                      1050 !default;\n$zindex-popover:                    1060 !default;\n$zindex-tooltip:                    1070 !default;\n\n// Navs\n\n$nav-link-padding-y:                .5rem !default;\n$nav-link-padding-x:                1rem !default;\n$nav-link-disabled-color:           $gray-600 !default;\n\n$nav-tabs-border-color:             $gray-300 !default;\n$nav-tabs-border-width:             $border-width !default;\n$nav-tabs-border-radius:            $border-radius !default;\n$nav-tabs-link-hover-border-color:  $gray-200 $gray-200 $nav-tabs-border-color !default;\n$nav-tabs-link-active-color:        $gray-700 !default;\n$nav-tabs-link-active-bg:           $body-bg !default;\n$nav-tabs-link-active-border-color: $gray-300 $gray-300 $nav-tabs-link-active-bg !default;\n\n$nav-pills-border-radius:           $border-radius !default;\n$nav-pills-link-active-color:       $component-active-color !default;\n$nav-pills-link-active-bg:          $component-active-bg !default;\n\n$nav-divider-color:                 $gray-200 !default;\n$nav-divider-margin-y:              ($spacer / 2) !default;\n\n// Navbar\n\n$navbar-padding-y:                  ($spacer / 2) !default;\n$navbar-padding-x:                  $spacer !default;\n\n$navbar-nav-link-padding-x:         .5rem !default;\n\n$navbar-brand-font-size:            $font-size-lg !default;\n// Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link\n$nav-link-height:                   ($font-size-base * $line-height-base + $nav-link-padding-y * 2) !default;\n$navbar-brand-height:               $navbar-brand-font-size * $line-height-base !default;\n$navbar-brand-padding-y:            ($nav-link-height - $navbar-brand-height) / 2 !default;\n\n$navbar-toggler-padding-y:          .25rem !default;\n$navbar-toggler-padding-x:          .75rem !default;\n$navbar-toggler-font-size:          $font-size-lg !default;\n$navbar-toggler-border-radius:      $btn-border-radius !default;\n\n$navbar-dark-color:                 rgba($white, .5) !default;\n$navbar-dark-hover-color:           rgba($white, .75) !default;\n$navbar-dark-active-color:          $white !default;\n$navbar-dark-disabled-color:        rgba($white, .25) !default;\n$navbar-dark-toggler-icon-bg:       str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-dark-toggler-border-color:  rgba($white, .1) !default;\n\n$navbar-light-color:                rgba($black, .5) !default;\n$navbar-light-hover-color:          rgba($black, .7) !default;\n$navbar-light-active-color:         rgba($black, .9) !default;\n$navbar-light-disabled-color:       rgba($black, .3) !default;\n$navbar-light-toggler-icon-bg:      str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$navbar-light-toggler-border-color: rgba($black, .1) !default;\n\n// Pagination\n\n$pagination-padding-y:              .5rem !default;\n$pagination-padding-x:              .75rem !default;\n$pagination-padding-y-sm:           .25rem !default;\n$pagination-padding-x-sm:           .5rem !default;\n$pagination-padding-y-lg:           .75rem !default;\n$pagination-padding-x-lg:           1.5rem !default;\n$pagination-line-height:            1.25 !default;\n\n$pagination-color:                  $link-color !default;\n$pagination-bg:                     $white !default;\n$pagination-border-width:           $border-width !default;\n$pagination-border-color:           $gray-300 !default;\n\n$pagination-focus-box-shadow:       $input-btn-focus-box-shadow !default;\n$pagination-focus-outline:          0 !default;\n\n$pagination-hover-color:            $link-hover-color !default;\n$pagination-hover-bg:               $gray-200 !default;\n$pagination-hover-border-color:     $gray-300 !default;\n\n$pagination-active-color:           $component-active-color !default;\n$pagination-active-bg:              $component-active-bg !default;\n$pagination-active-border-color:    $pagination-active-bg !default;\n\n$pagination-disabled-color:         $gray-600 !default;\n$pagination-disabled-bg:            $white !default;\n$pagination-disabled-border-color:  $gray-300 !default;\n\n\n// Jumbotron\n\n$jumbotron-padding:                 2rem !default;\n$jumbotron-bg:                      $gray-200 !default;\n\n\n// Cards\n\n$card-spacer-y:                     .75rem !default;\n$card-spacer-x:                     1.25rem !default;\n$card-border-width:                 $border-width !default;\n$card-border-radius:                $border-radius !default;\n$card-border-color:                 rgba($black, .125) !default;\n$card-inner-border-radius:          calc(#{$card-border-radius} - #{$card-border-width}) !default;\n$card-cap-bg:                       rgba($black, .03) !default;\n$card-bg:                           $white !default;\n\n$card-img-overlay-padding:          1.25rem !default;\n\n$card-group-margin:                 ($grid-gutter-width / 2) !default;\n$card-deck-margin:                  $card-group-margin !default;\n\n$card-columns-count:                3 !default;\n$card-columns-gap:                  1.25rem !default;\n$card-columns-margin:               $card-spacer-y !default;\n\n\n// Tooltips\n\n$tooltip-font-size:                 $font-size-sm !default;\n$tooltip-max-width:                 200px !default;\n$tooltip-color:                     $white !default;\n$tooltip-bg:                        $black !default;\n$tooltip-border-radius:             $border-radius !default;\n$tooltip-opacity:                   .9 !default;\n$tooltip-padding-y:                 .25rem !default;\n$tooltip-padding-x:                 .5rem !default;\n$tooltip-margin:                    0 !default;\n\n$tooltip-arrow-width:               .8rem !default;\n$tooltip-arrow-height:              .4rem !default;\n$tooltip-arrow-color:               $tooltip-bg !default;\n\n\n// Popovers\n\n$popover-font-size:                 $font-size-sm !default;\n$popover-bg:                        $white !default;\n$popover-max-width:                 276px !default;\n$popover-border-width:              $border-width !default;\n$popover-border-color:              rgba($black, .2) !default;\n$popover-border-radius:             $border-radius-lg !default;\n$popover-box-shadow:                0 .25rem .5rem rgba($black, .2) !default;\n\n$popover-header-bg:                 darken($popover-bg, 3%) !default;\n$popover-header-color:              $headings-color !default;\n$popover-header-padding-y:          .5rem !default;\n$popover-header-padding-x:          .75rem !default;\n\n$popover-body-color:                $body-color !default;\n$popover-body-padding-y:            $popover-header-padding-y !default;\n$popover-body-padding-x:            $popover-header-padding-x !default;\n\n$popover-arrow-width:               1rem !default;\n$popover-arrow-height:              .5rem !default;\n$popover-arrow-color:               $popover-bg !default;\n\n$popover-arrow-outer-color:         fade-in($popover-border-color, .05) !default;\n\n\n// Badges\n\n$badge-font-size:                   75% !default;\n$badge-font-weight:                 $font-weight-bold !default;\n$badge-padding-y:                   .25em !default;\n$badge-padding-x:                   .4em !default;\n$badge-border-radius:               $border-radius !default;\n\n$badge-pill-padding-x:              .6em !default;\n// Use a higher than normal value to ensure completely rounded edges when\n// customizing padding or font-size on labels.\n$badge-pill-border-radius:          10rem !default;\n\n\n// Modals\n\n// Padding applied to the modal body\n$modal-inner-padding:               1rem !default;\n\n$modal-dialog-margin:               .5rem !default;\n$modal-dialog-margin-y-sm-up:       1.75rem !default;\n\n$modal-title-line-height:           $line-height-base !default;\n\n$modal-content-bg:                  $white !default;\n$modal-content-border-color:        rgba($black, .2) !default;\n$modal-content-border-width:        $border-width !default;\n$modal-content-border-radius:       $border-radius-lg !default;\n$modal-content-box-shadow-xs:       0 .25rem .5rem rgba($black, .5) !default;\n$modal-content-box-shadow-sm-up:    0 .5rem 1rem rgba($black, .5) !default;\n\n$modal-backdrop-bg:                 $black !default;\n$modal-backdrop-opacity:            .5 !default;\n$modal-header-border-color:         $gray-200 !default;\n$modal-footer-border-color:         $modal-header-border-color !default;\n$modal-header-border-width:         $modal-content-border-width !default;\n$modal-footer-border-width:         $modal-header-border-width !default;\n$modal-header-padding:              1rem !default;\n\n$modal-lg:                          800px !default;\n$modal-md:                          500px !default;\n$modal-sm:                          300px !default;\n\n$modal-transition:                  transform .3s ease-out !default;\n\n\n// Alerts\n//\n// Define alert colors, border radius, and padding.\n\n$alert-padding-y:                   .75rem !default;\n$alert-padding-x:                   1.25rem !default;\n$alert-margin-bottom:               1rem !default;\n$alert-border-radius:               $border-radius !default;\n$alert-link-font-weight:            $font-weight-bold !default;\n$alert-border-width:                $border-width !default;\n\n$alert-bg-level:                    -10 !default;\n$alert-border-level:                -9 !default;\n$alert-color-level:                 6 !default;\n\n\n// Progress bars\n\n$progress-height:                   1rem !default;\n$progress-font-size:                ($font-size-base * .75) !default;\n$progress-bg:                       $gray-200 !default;\n$progress-border-radius:            $border-radius !default;\n$progress-box-shadow:               inset 0 .1rem .1rem rgba($black, .1) !default;\n$progress-bar-color:                $white !default;\n$progress-bar-bg:                   theme-color(\"primary\") !default;\n$progress-bar-animation-timing:     1s linear infinite !default;\n$progress-bar-transition:           width .6s ease !default;\n\n// List group\n\n$list-group-bg:                     $white !default;\n$list-group-border-color:           rgba($black, .125) !default;\n$list-group-border-width:           $border-width !default;\n$list-group-border-radius:          $border-radius !default;\n\n$list-group-item-padding-y:         .75rem !default;\n$list-group-item-padding-x:         1.25rem !default;\n\n$list-group-hover-bg:               $gray-100 !default;\n$list-group-active-color:           $component-active-color !default;\n$list-group-active-bg:              $component-active-bg !default;\n$list-group-active-border-color:    $list-group-active-bg !default;\n\n$list-group-disabled-color:         $gray-600 !default;\n$list-group-disabled-bg:            $list-group-bg !default;\n\n$list-group-action-color:           $gray-700 !default;\n$list-group-action-hover-color:     $list-group-action-color !default;\n\n$list-group-action-active-color:    $body-color !default;\n$list-group-action-active-bg:       $gray-200 !default;\n\n\n// Image thumbnails\n\n$thumbnail-padding:                 .25rem !default;\n$thumbnail-bg:                      $body-bg !default;\n$thumbnail-border-width:            $border-width !default;\n$thumbnail-border-color:            $gray-300 !default;\n$thumbnail-border-radius:           $border-radius !default;\n$thumbnail-box-shadow:              0 1px 2px rgba($black, .075) !default;\n\n\n// Figures\n\n$figure-caption-font-size:          90% !default;\n$figure-caption-color:              $gray-600 !default;\n\n\n// Breadcrumbs\n\n$breadcrumb-padding-y:              .75rem !default;\n$breadcrumb-padding-x:              1rem !default;\n$breadcrumb-item-padding:           .5rem !default;\n\n$breadcrumb-margin-bottom:          1rem !default;\n\n$breadcrumb-bg:                     $gray-200 !default;\n$breadcrumb-divider-color:          $gray-600 !default;\n$breadcrumb-active-color:           $gray-600 !default;\n$breadcrumb-divider:                quote(\"/\") !default;\n\n$breadcrumb-border-radius:          $border-radius !default;\n\n\n// Carousel\n\n$carousel-control-color:            $white !default;\n$carousel-control-width:            15% !default;\n$carousel-control-opacity:          .5 !default;\n\n$carousel-indicator-width:          30px !default;\n$carousel-indicator-height:         3px !default;\n$carousel-indicator-spacer:         3px !default;\n$carousel-indicator-active-bg:      $white !default;\n\n$carousel-caption-width:            70% !default;\n$carousel-caption-color:            $white !default;\n\n$carousel-control-icon-width:       20px !default;\n\n$carousel-control-prev-icon-bg:     str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n$carousel-control-next-icon-bg:     str-replace(url(\"data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E\"), \"#\", \"%23\") !default;\n\n$carousel-transition:               transform .6s ease !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`)\n\n\n// Close\n\n$close-font-size:                   $font-size-base * 1.5 !default;\n$close-font-weight:                 $font-weight-bold !default;\n$close-color:                       $black !default;\n$close-text-shadow:                 0 1px 0 $white !default;\n\n// Code\n\n$code-font-size:                    87.5% !default;\n$code-color:                        $pink !default;\n\n$kbd-padding-y:                     .2rem !default;\n$kbd-padding-x:                     .4rem !default;\n$kbd-font-size:                     $code-font-size !default;\n$kbd-color:                         $white !default;\n$kbd-bg:                            $gray-900 !default;\n\n$pre-color:                         $gray-900 !default;\n$pre-scrollable-max-height:         340px !default;\n\n\n// Printing\n$print-page-size:                   a3 !default;\n$print-body-min-width:              map-get($grid-breakpoints, \"lg\") !default;\n"
  },
  {
    "path": "public/landing/scss/bootstrap/bootstrap-grid.scss",
    "content": "/*!\n * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@at-root {\n  @-ms-viewport { width: device-width; } // stylelint-disable-line at-rule-no-vendor-prefix\n}\n\nhtml {\n  box-sizing: border-box;\n  -ms-overflow-style: scrollbar;\n}\n\n*,\n*::before,\n*::after {\n  box-sizing: inherit;\n}\n\n@import \"functions\";\n@import \"variables\";\n\n@import \"mixins/breakpoints\";\n@import \"mixins/grid-framework\";\n@import \"mixins/grid\";\n\n@import \"grid\";\n@import \"utilities/display\";\n@import \"utilities/flex\";\n"
  },
  {
    "path": "public/landing/scss/bootstrap/bootstrap-reboot.scss",
    "content": "/*!\n * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"reboot\";\n"
  },
  {
    "path": "public/landing/scss/bootstrap/bootstrap.scss",
    "content": "/*!\n * Bootstrap v4.1.3 (https://getbootstrap.com/)\n * Copyright 2011-2018 The Bootstrap Authors\n * Copyright 2011-2018 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"utilities\";\n@import \"print\";\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_alert.scss",
    "content": "@mixin alert-variant($background, $border, $color) {\n  color: $color;\n  @include gradient-bg($background);\n  border-color: $border;\n\n  hr {\n    border-top-color: darken($border, 5%);\n  }\n\n  .alert-link {\n    color: darken($color, 10%);\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_background-variant.scss",
    "content": "// stylelint-disable declaration-no-important\n\n// Contextual backgrounds\n\n@mixin bg-variant($parent, $color) {\n  #{$parent} {\n    background-color: $color !important;\n  }\n  a#{$parent},\n  button#{$parent} {\n    @include hover-focus {\n      background-color: darken($color, 10%) !important;\n    }\n  }\n}\n\n@mixin bg-gradient-variant($parent, $color) {\n  #{$parent} {\n    background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_badge.scss",
    "content": "@mixin badge-variant($bg) {\n  color: color-yiq($bg);\n  background-color: $bg;\n\n  &[href] {\n    @include hover-focus {\n      color: color-yiq($bg);\n      text-decoration: none;\n      background-color: darken($bg, 10%);\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_border-radius.scss",
    "content": "// Single side border-radius\n\n@mixin border-radius($radius: $border-radius) {\n  @if $enable-rounded {\n    border-radius: $radius;\n  }\n}\n\n@mixin border-top-radius($radius) {\n  @if $enable-rounded {\n    border-top-left-radius: $radius;\n    border-top-right-radius: $radius;\n  }\n}\n\n@mixin border-right-radius($radius) {\n  @if $enable-rounded {\n    border-top-right-radius: $radius;\n    border-bottom-right-radius: $radius;\n  }\n}\n\n@mixin border-bottom-radius($radius) {\n  @if $enable-rounded {\n    border-bottom-right-radius: $radius;\n    border-bottom-left-radius: $radius;\n  }\n}\n\n@mixin border-left-radius($radius) {\n  @if $enable-rounded {\n    border-top-left-radius: $radius;\n    border-bottom-left-radius: $radius;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_box-shadow.scss",
    "content": "@mixin box-shadow($shadow...) {\n  @if $enable-shadows {\n    box-shadow: $shadow;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_breakpoints.scss",
    "content": "// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n//    (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n//    >> breakpoint-next(sm)\n//    md\n//    >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    md\n//    >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n//    md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n  $n: index($breakpoint-names, $name);\n  @return if($n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n//    >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n  $min: map-get($breakpoints, $name);\n  @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.02px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n//    >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n  $next: breakpoint-next($name, $breakpoints);\n  @return if($next, breakpoint-min($next, $breakpoints) - .02px, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n//    >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    \"\"  (Returns a blank string)\n//    >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n//    \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n  @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n  $min: breakpoint-min($name, $breakpoints);\n  @if $min {\n    @media (min-width: $min) {\n      @content;\n    }\n  } @else {\n    @content;\n  }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n  $max: breakpoint-max($name, $breakpoints);\n  @if $max {\n    @media (max-width: $max) {\n      @content;\n    }\n  } @else {\n    @content;\n  }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n  $min: breakpoint-min($lower, $breakpoints);\n  $max: breakpoint-max($upper, $breakpoints);\n\n  @if $min != null and $max != null {\n    @media (min-width: $min) and (max-width: $max) {\n      @content;\n    }\n  } @else if $max == null {\n    @include media-breakpoint-up($lower, $breakpoints) {\n      @content;\n    }\n  } @else if $min == null {\n    @include media-breakpoint-down($upper, $breakpoints) {\n      @content;\n    }\n  }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.\n@mixin media-breakpoint-only($name, $breakpoints: $grid-breakpoints) {\n  $min: breakpoint-min($name, $breakpoints);\n  $max: breakpoint-max($name, $breakpoints);\n\n  @if $min != null and $max != null {\n    @media (min-width: $min) and (max-width: $max) {\n      @content;\n    }\n  } @else if $max == null {\n    @include media-breakpoint-up($name, $breakpoints) {\n      @content;\n    }\n  } @else if $min == null {\n    @include media-breakpoint-down($name, $breakpoints) {\n      @content;\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_buttons.scss",
    "content": "// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n@mixin button-variant($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%)) {\n  color: color-yiq($background);\n  @include gradient-bg($background);\n  border-color: $border;\n  @include box-shadow($btn-box-shadow);\n\n  @include hover {\n    color: color-yiq($hover-background);\n    @include gradient-bg($hover-background);\n    border-color: $hover-border;\n  }\n\n  &:focus,\n  &.focus {\n    // Avoid using mixin so we can pass custom focus shadow properly\n    @if $enable-shadows {\n      box-shadow: $btn-box-shadow, 0 0 0 $btn-focus-width rgba($border, .5);\n    } @else {\n      box-shadow: 0 0 0 $btn-focus-width rgba($border, .5);\n    }\n  }\n\n  // Disabled comes first so active can properly restyle\n  &.disabled,\n  &:disabled {\n    color: color-yiq($background);\n    background-color: $background;\n    border-color: $border;\n  }\n\n  &:not(:disabled):not(.disabled):active,\n  &:not(:disabled):not(.disabled).active,\n  .show > &.dropdown-toggle {\n    color: color-yiq($active-background);\n    background-color: $active-background;\n    @if $enable-gradients {\n      background-image: none; // Remove the gradient for the pressed/active state\n    }\n    border-color: $active-border;\n\n    &:focus {\n      // Avoid using mixin so we can pass custom focus shadow properly\n      @if $enable-shadows {\n        box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($border, .5);\n      } @else {\n        box-shadow: 0 0 0 $btn-focus-width rgba($border, .5);\n      }\n    }\n  }\n}\n\n@mixin button-outline-variant($color, $color-hover: color-yiq($color), $active-background: $color, $active-border: $color) {\n  color: $color;\n  background-color: transparent;\n  background-image: none;\n  border-color: $color;\n\n  &:hover {\n    color: $color-hover;\n    background-color: $active-background;\n    border-color: $active-border;\n  }\n\n  &:focus,\n  &.focus {\n    box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);\n  }\n\n  &.disabled,\n  &:disabled {\n    color: $color;\n    background-color: transparent;\n  }\n\n  &:not(:disabled):not(.disabled):active,\n  &:not(:disabled):not(.disabled).active,\n  .show > &.dropdown-toggle {\n    color: color-yiq($active-background);\n    background-color: $active-background;\n    border-color: $active-border;\n\n    &:focus {\n      // Avoid using mixin so we can pass custom focus shadow properly\n      @if $enable-shadows and $btn-active-box-shadow != none {\n        box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5);\n      } @else {\n        box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);\n      }\n    }\n  }\n}\n\n// Button sizes\n@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {\n  padding: $padding-y $padding-x;\n  font-size: $font-size;\n  line-height: $line-height;\n  // Manually declare to provide an override to the browser default\n  @if $enable-rounded {\n    border-radius: $border-radius;\n  } @else {\n    border-radius: 0;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_caret.scss",
    "content": "@mixin caret-down {\n  border-top: $caret-width solid;\n  border-right: $caret-width solid transparent;\n  border-bottom: 0;\n  border-left: $caret-width solid transparent;\n}\n\n@mixin caret-up {\n  border-top: 0;\n  border-right: $caret-width solid transparent;\n  border-bottom: $caret-width solid;\n  border-left: $caret-width solid transparent;\n}\n\n@mixin caret-right {\n  border-top: $caret-width solid transparent;\n  border-right: 0;\n  border-bottom: $caret-width solid transparent;\n  border-left: $caret-width solid;\n}\n\n@mixin caret-left {\n  border-top: $caret-width solid transparent;\n  border-right: $caret-width solid;\n  border-bottom: $caret-width solid transparent;\n}\n\n@mixin caret($direction: down) {\n  @if $enable-caret {\n    &::after {\n      display: inline-block;\n      width: 0;\n      height: 0;\n      margin-left: $caret-width * .85;\n      vertical-align: $caret-width * .85;\n      content: \"\";\n      @if $direction == down {\n        @include caret-down;\n      } @else if $direction == up {\n        @include caret-up;\n      } @else if $direction == right {\n        @include caret-right;\n      }\n    }\n\n    @if $direction == left {\n      &::after {\n        display: none;\n      }\n\n      &::before {\n        display: inline-block;\n        width: 0;\n        height: 0;\n        margin-right: $caret-width * .85;\n        vertical-align: $caret-width * .85;\n        content: \"\";\n        @include caret-left;\n      }\n    }\n\n    &:empty::after {\n      margin-left: 0;\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_clearfix.scss",
    "content": "@mixin clearfix() {\n  &::after {\n    display: block;\n    clear: both;\n    content: \"\";\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_float.scss",
    "content": "// stylelint-disable declaration-no-important\n\n@mixin float-left {\n  float: left !important;\n}\n@mixin float-right {\n  float: right !important;\n}\n@mixin float-none {\n  float: none !important;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_forms.scss",
    "content": "// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `$input-focus-border-color` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n@mixin form-control-focus() {\n  &:focus {\n    color: $input-focus-color;\n    background-color: $input-focus-bg;\n    border-color: $input-focus-border-color;\n    outline: 0;\n    // Avoid using mixin so we can pass custom focus shadow properly\n    @if $enable-shadows {\n      box-shadow: $input-box-shadow, $input-focus-box-shadow;\n    } @else {\n      box-shadow: $input-focus-box-shadow;\n    }\n  }\n}\n\n\n@mixin form-validation-state($state, $color) {\n  .#{$state}-feedback {\n    display: none;\n    width: 100%;\n    margin-top: $form-feedback-margin-top;\n    font-size: $form-feedback-font-size;\n    color: $color;\n  }\n\n  .#{$state}-tooltip {\n    position: absolute;\n    top: 100%;\n    z-index: 5;\n    display: none;\n    max-width: 100%; // Contain to parent when possible\n    padding: $tooltip-padding-y $tooltip-padding-x;\n    margin-top: .1rem;\n    font-size: $tooltip-font-size;\n    line-height: $line-height-base;\n    color: color-yiq($color);\n    background-color: rgba($color, $tooltip-opacity);\n    @include border-radius($tooltip-border-radius);\n  }\n\n  .form-control,\n  .custom-select {\n    .was-validated &:#{$state},\n    &.is-#{$state} {\n      border-color: $color;\n\n      &:focus {\n        border-color: $color;\n        box-shadow: 0 0 0 $input-focus-width rgba($color, .25);\n      }\n\n      ~ .#{$state}-feedback,\n      ~ .#{$state}-tooltip {\n        display: block;\n      }\n    }\n  }\n\n  .form-control-file {\n    .was-validated &:#{$state},\n    &.is-#{$state} {\n      ~ .#{$state}-feedback,\n      ~ .#{$state}-tooltip {\n        display: block;\n      }\n    }\n  }\n\n  .form-check-input {\n    .was-validated &:#{$state},\n    &.is-#{$state} {\n      ~ .form-check-label {\n        color: $color;\n      }\n\n      ~ .#{$state}-feedback,\n      ~ .#{$state}-tooltip {\n        display: block;\n      }\n    }\n  }\n\n  .custom-control-input {\n    .was-validated &:#{$state},\n    &.is-#{$state} {\n      ~ .custom-control-label {\n        color: $color;\n\n        &::before {\n          background-color: lighten($color, 25%);\n        }\n      }\n\n      ~ .#{$state}-feedback,\n      ~ .#{$state}-tooltip {\n        display: block;\n      }\n\n      &:checked {\n        ~ .custom-control-label::before {\n          @include gradient-bg(lighten($color, 10%));\n        }\n      }\n\n      &:focus {\n        ~ .custom-control-label::before {\n          box-shadow: 0 0 0 1px $body-bg, 0 0 0 $input-focus-width rgba($color, .25);\n        }\n      }\n    }\n  }\n\n  // custom file\n  .custom-file-input {\n    .was-validated &:#{$state},\n    &.is-#{$state} {\n      ~ .custom-file-label {\n        border-color: $color;\n\n        &::after { border-color: inherit; }\n      }\n\n      ~ .#{$state}-feedback,\n      ~ .#{$state}-tooltip {\n        display: block;\n      }\n\n      &:focus {\n        ~ .custom-file-label {\n          box-shadow: 0 0 0 $input-focus-width rgba($color, .25);\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_gradients.scss",
    "content": "// Gradients\n\n@mixin gradient-bg($color) {\n  @if $enable-gradients {\n    background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x;\n  } @else {\n    background-color: $color;\n  }\n}\n\n// Horizontal gradient, from left to right\n//\n// Creates two color stops, start and end, by specifying a color and position for each color stop.\n@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {\n  background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);\n  background-repeat: repeat-x;\n}\n\n// Vertical gradient, from top to bottom\n//\n// Creates two color stops, start and end, by specifying a color and position for each color stop.\n@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {\n  background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);\n  background-repeat: repeat-x;\n}\n\n@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {\n  background-image: linear-gradient($deg, $start-color, $end-color);\n  background-repeat: repeat-x;\n}\n@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {\n  background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);\n  background-repeat: no-repeat;\n}\n@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {\n  background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);\n  background-repeat: no-repeat;\n}\n@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {\n  background-image: radial-gradient(circle, $inner-color, $outer-color);\n  background-repeat: no-repeat;\n}\n@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {\n  background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_grid-framework.scss",
    "content": "// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n  // Common properties for all breakpoints\n  %grid-column {\n    position: relative;\n    width: 100%;\n    min-height: 1px; // Prevent columns from collapsing when empty\n    padding-right: ($gutter / 2);\n    padding-left: ($gutter / 2);\n  }\n\n  @each $breakpoint in map-keys($breakpoints) {\n    $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n    // Allow columns to stretch full width below their breakpoints\n    @for $i from 1 through $columns {\n      .col#{$infix}-#{$i} {\n        @extend %grid-column;\n      }\n    }\n    .col#{$infix},\n    .col#{$infix}-auto {\n      @extend %grid-column;\n    }\n\n    @include media-breakpoint-up($breakpoint, $breakpoints) {\n      // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n      .col#{$infix} {\n        flex-basis: 0;\n        flex-grow: 1;\n        max-width: 100%;\n      }\n      .col#{$infix}-auto {\n        flex: 0 0 auto;\n        width: auto;\n        max-width: none; // Reset earlier grid tiers\n      }\n\n      @for $i from 1 through $columns {\n        .col#{$infix}-#{$i} {\n          @include make-col($i, $columns);\n        }\n      }\n\n      .order#{$infix}-first { order: -1; }\n\n      .order#{$infix}-last { order: $columns + 1; }\n\n      @for $i from 0 through $columns {\n        .order#{$infix}-#{$i} { order: $i; }\n      }\n\n      // `$columns - 1` because offsetting by the width of an entire row isn't possible\n      @for $i from 0 through ($columns - 1) {\n        @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n          .offset#{$infix}-#{$i} {\n            @include make-col-offset($i, $columns);\n          }\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_grid.scss",
    "content": "/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container() {\n  width: 100%;\n  padding-right: ($grid-gutter-width / 2);\n  padding-left: ($grid-gutter-width / 2);\n  margin-right: auto;\n  margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n  @each $breakpoint, $container-max-width in $max-widths {\n    @include media-breakpoint-up($breakpoint, $breakpoints) {\n      max-width: $container-max-width;\n    }\n  }\n}\n\n@mixin make-row() {\n  display: flex;\n  flex-wrap: wrap;\n  margin-right: ($grid-gutter-width / -2);\n  margin-left: ($grid-gutter-width / -2);\n}\n\n@mixin make-col-ready() {\n  position: relative;\n  // Prevent columns from becoming too narrow when at smaller grid tiers by\n  // always setting `width: 100%;`. This works because we use `flex` values\n  // later on to override this initial width.\n  width: 100%;\n  min-height: 1px; // Prevent collapsing\n  padding-right: ($grid-gutter-width / 2);\n  padding-left: ($grid-gutter-width / 2);\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n  flex: 0 0 percentage($size / $columns);\n  // Add a `max-width` to ensure content within each column does not blow out\n  // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n  // do not appear to require this.\n  max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n  $num: $size / $columns;\n  margin-left: if($num == 0, 0, percentage($num));\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_hover.scss",
    "content": "// Hover mixin and `$enable-hover-media-query` are deprecated.\n//\n// Originally added during our alphas and maintained during betas, this mixin was\n// designed to prevent `:hover` stickiness on iOS-an issue where hover styles\n// would persist after initial touch.\n//\n// For backward compatibility, we've kept these mixins and updated them to\n// always return their regular pseudo-classes instead of a shimmed media query.\n//\n// Issue: https://github.com/twbs/bootstrap/issues/25195\n\n@mixin hover {\n  &:hover { @content; }\n}\n\n@mixin hover-focus {\n  &:hover,\n  &:focus {\n    @content;\n  }\n}\n\n@mixin plain-hover-focus {\n  &,\n  &:hover,\n  &:focus {\n    @content;\n  }\n}\n\n@mixin hover-focus-active {\n  &:hover,\n  &:focus,\n  &:active {\n    @content;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_image.scss",
    "content": "// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n  // Part 1: Set a maximum relative to the parent\n  max-width: 100%;\n  // Part 2: Override the height to auto, otherwise images will be stretched\n  // when setting a width and height attribute on the img element.\n  height: auto;\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size.\n\n// stylelint-disable indentation, media-query-list-comma-newline-after\n@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {\n  background-image: url($file-1x);\n\n  // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,\n  // but doesn't convert dppx=>dpi.\n  // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.\n  // Compatibility info: https://caniuse.com/#feat=css-media-resolution\n  @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx\n  only screen and (min-resolution: 2dppx) { // Standardized\n    background-image: url($file-2x);\n    background-size: $width-1x $height-1x;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_list-group.scss",
    "content": "// List Groups\n\n@mixin list-group-item-variant($state, $background, $color) {\n  .list-group-item-#{$state} {\n    color: $color;\n    background-color: $background;\n\n    &.list-group-item-action {\n      @include hover-focus {\n        color: $color;\n        background-color: darken($background, 5%);\n      }\n\n      &.active {\n        color: $white;\n        background-color: $color;\n        border-color: $color;\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_lists.scss",
    "content": "// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_nav-divider.scss",
    "content": "// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n@mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) {\n  height: 0;\n  margin: $margin-y 0;\n  overflow: hidden;\n  border-top: 1px solid $color;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_pagination.scss",
    "content": "// Pagination\n\n@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {\n  .page-link {\n    padding: $padding-y $padding-x;\n    font-size: $font-size;\n    line-height: $line-height;\n  }\n\n  .page-item {\n    &:first-child {\n      .page-link {\n        @include border-left-radius($border-radius);\n      }\n    }\n    &:last-child {\n      .page-link {\n        @include border-right-radius($border-radius);\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_reset-text.scss",
    "content": "@mixin reset-text {\n  font-family: $font-family-base;\n  // We deliberately do NOT reset font-size or word-wrap.\n  font-style: normal;\n  font-weight: $font-weight-normal;\n  line-height: $line-height-base;\n  text-align: left; // Fallback for where `start` is not supported\n  text-align: start; // stylelint-disable-line declaration-block-no-duplicate-properties\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  letter-spacing: normal;\n  word-break: normal;\n  word-spacing: normal;\n  white-space: normal;\n  line-break: auto;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_resize.scss",
    "content": "// Resize anything\n\n@mixin resizable($direction) {\n  overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`\n  resize: $direction; // Options: horizontal, vertical, both\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_screen-reader.scss",
    "content": "// Only display content to screen readers\n//\n// See: https://a11yproject.com/posts/how-to-hide-content/\n// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/\n\n@mixin sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n//\n// Useful for \"Skip to main content\" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n//\n// Credit: HTML5 Boilerplate\n\n@mixin sr-only-focusable {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    overflow: visible;\n    clip: auto;\n    white-space: normal;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_size.scss",
    "content": "// Sizing shortcuts\n\n@mixin size($width, $height: $width) {\n  width: $width;\n  height: $height;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_table-row.scss",
    "content": "// Tables\n\n@mixin table-row-variant($state, $background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table-#{$state} {\n    &,\n    > th,\n    > td {\n      background-color: $background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover {\n    $hover-background: darken($background, 5%);\n\n    .table-#{$state} {\n      @include hover {\n        background-color: $hover-background;\n\n        > td,\n        > th {\n          background-color: $hover-background;\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_text-emphasis.scss",
    "content": "// stylelint-disable declaration-no-important\n\n// Typography\n\n@mixin text-emphasis-variant($parent, $color) {\n  #{$parent} {\n    color: $color !important;\n  }\n  a#{$parent} {\n    @include hover-focus {\n      color: darken($color, 10%) !important;\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_text-hide.scss",
    "content": "// CSS image replacement\n@mixin text-hide($ignore-warning: false) {\n  // stylelint-disable-next-line font-family-no-missing-generic-family-keyword\n  font: 0/0 a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n\n  @if ($ignore-warning != true) {\n    @warn \"The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5.\";\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_text-truncate.scss",
    "content": "// Text truncate\n// Requires inline-block or block for proper styling\n\n@mixin text-truncate() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_transition.scss",
    "content": "@mixin transition($transition...) {\n  @if $enable-transitions {\n    @if length($transition) == 0 {\n      transition: $transition-base;\n    } @else {\n      transition: $transition;\n    }\n  }\n\n  @media screen and (prefers-reduced-motion: reduce) {\n    transition: none;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/mixins/_visibility.scss",
    "content": "// stylelint-disable declaration-no-important\n\n// Visibility\n\n@mixin invisible($visibility) {\n  visibility: $visibility !important;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_align.scss",
    "content": "// stylelint-disable declaration-no-important\n\n.align-baseline    { vertical-align: baseline !important; } // Browser default\n.align-top         { vertical-align: top !important; }\n.align-middle      { vertical-align: middle !important; }\n.align-bottom      { vertical-align: bottom !important; }\n.align-text-bottom { vertical-align: text-bottom !important; }\n.align-text-top    { vertical-align: text-top !important; }\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_background.scss",
    "content": "// stylelint-disable declaration-no-important\n\n@each $color, $value in $theme-colors {\n  @include bg-variant(\".bg-#{$color}\", $value);\n}\n\n@if $enable-gradients {\n  @each $color, $value in $theme-colors {\n    @include bg-gradient-variant(\".bg-gradient-#{$color}\", $value);\n  }\n}\n\n.bg-white {\n  background-color: $white !important;\n}\n\n.bg-transparent {\n  background-color: transparent !important;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_borders.scss",
    "content": "// stylelint-disable declaration-no-important\n\n//\n// Border\n//\n\n.border         { border: $border-width solid $border-color !important; }\n.border-top     { border-top: $border-width solid $border-color !important; }\n.border-right   { border-right: $border-width solid $border-color !important; }\n.border-bottom  { border-bottom: $border-width solid $border-color !important; }\n.border-left    { border-left: $border-width solid $border-color !important; }\n\n.border-0        { border: 0 !important; }\n.border-top-0    { border-top: 0 !important; }\n.border-right-0  { border-right: 0 !important; }\n.border-bottom-0 { border-bottom: 0 !important; }\n.border-left-0   { border-left: 0 !important; }\n\n@each $color, $value in $theme-colors {\n  .border-#{$color} {\n    border-color: $value !important;\n  }\n}\n\n.border-white {\n  border-color: $white !important;\n}\n\n//\n// Border-radius\n//\n\n.rounded {\n  border-radius: $border-radius !important;\n}\n.rounded-top {\n  border-top-left-radius: $border-radius !important;\n  border-top-right-radius: $border-radius !important;\n}\n.rounded-right {\n  border-top-right-radius: $border-radius !important;\n  border-bottom-right-radius: $border-radius !important;\n}\n.rounded-bottom {\n  border-bottom-right-radius: $border-radius !important;\n  border-bottom-left-radius: $border-radius !important;\n}\n.rounded-left {\n  border-top-left-radius: $border-radius !important;\n  border-bottom-left-radius: $border-radius !important;\n}\n\n.rounded-circle {\n  border-radius: 50% !important;\n}\n\n.rounded-0 {\n  border-radius: 0 !important;\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_clearfix.scss",
    "content": ".clearfix {\n  @include clearfix();\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_display.scss",
    "content": "// stylelint-disable declaration-no-important\n\n//\n// Utilities for common `display` values\n//\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n  @include media-breakpoint-up($breakpoint) {\n    $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n    .d#{$infix}-none         { display: none !important; }\n    .d#{$infix}-inline       { display: inline !important; }\n    .d#{$infix}-inline-block { display: inline-block !important; }\n    .d#{$infix}-block        { display: block !important; }\n    .d#{$infix}-table        { display: table !important; }\n    .d#{$infix}-table-row    { display: table-row !important; }\n    .d#{$infix}-table-cell   { display: table-cell !important; }\n    .d#{$infix}-flex         { display: flex !important; }\n    .d#{$infix}-inline-flex  { display: inline-flex !important; }\n  }\n}\n\n\n//\n// Utilities for toggling `display` in print\n//\n\n@media print {\n  .d-print-none         { display: none !important; }\n  .d-print-inline       { display: inline !important; }\n  .d-print-inline-block { display: inline-block !important; }\n  .d-print-block        { display: block !important; }\n  .d-print-table        { display: table !important; }\n  .d-print-table-row    { display: table-row !important; }\n  .d-print-table-cell   { display: table-cell !important; }\n  .d-print-flex         { display: flex !important; }\n  .d-print-inline-flex  { display: inline-flex !important; }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_embed.scss",
    "content": "// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  width: 100%;\n  padding: 0;\n  overflow: hidden;\n\n  &::before {\n    display: block;\n    content: \"\";\n  }\n\n  .embed-responsive-item,\n  iframe,\n  embed,\n  object,\n  video {\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    border: 0;\n  }\n}\n\n.embed-responsive-21by9 {\n  &::before {\n    padding-top: percentage(9 / 21);\n  }\n}\n\n.embed-responsive-16by9 {\n  &::before {\n    padding-top: percentage(9 / 16);\n  }\n}\n\n.embed-responsive-4by3 {\n  &::before {\n    padding-top: percentage(3 / 4);\n  }\n}\n\n.embed-responsive-1by1 {\n  &::before {\n    padding-top: percentage(1 / 1);\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_flex.scss",
    "content": "// stylelint-disable declaration-no-important\n\n// Flex variation\n//\n// Custom styles for additional flex alignment options.\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n  @include media-breakpoint-up($breakpoint) {\n    $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n    .flex#{$infix}-row            { flex-direction: row !important; }\n    .flex#{$infix}-column         { flex-direction: column !important; }\n    .flex#{$infix}-row-reverse    { flex-direction: row-reverse !important; }\n    .flex#{$infix}-column-reverse { flex-direction: column-reverse !important; }\n\n    .flex#{$infix}-wrap         { flex-wrap: wrap !important; }\n    .flex#{$infix}-nowrap       { flex-wrap: nowrap !important; }\n    .flex#{$infix}-wrap-reverse { flex-wrap: wrap-reverse !important; }\n    .flex#{$infix}-fill         { flex: 1 1 auto !important; }\n    .flex#{$infix}-grow-0       { flex-grow: 0 !important; }\n    .flex#{$infix}-grow-1       { flex-grow: 1 !important; }\n    .flex#{$infix}-shrink-0     { flex-shrink: 0 !important; }\n    .flex#{$infix}-shrink-1     { flex-shrink: 1 !important; }\n\n    .justify-content#{$infix}-start   { justify-content: flex-start !important; }\n    .justify-content#{$infix}-end     { justify-content: flex-end !important; }\n    .justify-content#{$infix}-center  { justify-content: center !important; }\n    .justify-content#{$infix}-between { justify-content: space-between !important; }\n    .justify-content#{$infix}-around  { justify-content: space-around !important; }\n\n    .align-items#{$infix}-start    { align-items: flex-start !important; }\n    .align-items#{$infix}-end      { align-items: flex-end !important; }\n    .align-items#{$infix}-center   { align-items: center !important; }\n    .align-items#{$infix}-baseline { align-items: baseline !important; }\n    .align-items#{$infix}-stretch  { align-items: stretch !important; }\n\n    .align-content#{$infix}-start   { align-content: flex-start !important; }\n    .align-content#{$infix}-end     { align-content: flex-end !important; }\n    .align-content#{$infix}-center  { align-content: center !important; }\n    .align-content#{$infix}-between { align-content: space-between !important; }\n    .align-content#{$infix}-around  { align-content: space-around !important; }\n    .align-content#{$infix}-stretch { align-content: stretch !important; }\n\n    .align-self#{$infix}-auto     { align-self: auto !important; }\n    .align-self#{$infix}-start    { align-self: flex-start !important; }\n    .align-self#{$infix}-end      { align-self: flex-end !important; }\n    .align-self#{$infix}-center   { align-self: center !important; }\n    .align-self#{$infix}-baseline { align-self: baseline !important; }\n    .align-self#{$infix}-stretch  { align-self: stretch !important; }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_float.scss",
    "content": "@each $breakpoint in map-keys($grid-breakpoints) {\n  @include media-breakpoint-up($breakpoint) {\n    $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n    .float#{$infix}-left  { @include float-left; }\n    .float#{$infix}-right { @include float-right; }\n    .float#{$infix}-none  { @include float-none; }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_position.scss",
    "content": "// stylelint-disable declaration-no-important\n\n// Common values\n\n// Sass list not in variables since it's not intended for customization.\n// stylelint-disable-next-line scss/dollar-variable-default\n$positions: static, relative, absolute, fixed, sticky;\n\n@each $position in $positions {\n  .position-#{$position} { position: $position !important; }\n}\n\n// Shorthand\n\n.fixed-top {\n  position: fixed;\n  top: 0;\n  right: 0;\n  left: 0;\n  z-index: $zindex-fixed;\n}\n\n.fixed-bottom {\n  position: fixed;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: $zindex-fixed;\n}\n\n.sticky-top {\n  @supports (position: sticky) {\n    position: sticky;\n    top: 0;\n    z-index: $zindex-sticky;\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_screenreaders.scss",
    "content": "//\n// Screenreaders\n//\n\n.sr-only {\n  @include sr-only();\n}\n\n.sr-only-focusable {\n  @include sr-only-focusable();\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_shadows.scss",
    "content": "// stylelint-disable declaration-no-important\n\n.shadow-sm { box-shadow: $box-shadow-sm !important; }\n.shadow { box-shadow: $box-shadow !important; }\n.shadow-lg { box-shadow: $box-shadow-lg !important; }\n.shadow-none { box-shadow: none !important; }\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_sizing.scss",
    "content": "// stylelint-disable declaration-no-important\n\n// Width and height\n\n@each $prop, $abbrev in (width: w, height: h) {\n  @each $size, $length in $sizes {\n    .#{$abbrev}-#{$size} { #{$prop}: $length !important; }\n  }\n}\n\n.mw-100 { max-width: 100% !important; }\n.mh-100 { max-height: 100% !important; }\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_spacing.scss",
    "content": "// stylelint-disable declaration-no-important\n\n// Margin and Padding\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n  @include media-breakpoint-up($breakpoint) {\n    $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n    @each $prop, $abbrev in (margin: m, padding: p) {\n      @each $size, $length in $spacers {\n\n        .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }\n        .#{$abbrev}t#{$infix}-#{$size},\n        .#{$abbrev}y#{$infix}-#{$size} {\n          #{$prop}-top: $length !important;\n        }\n        .#{$abbrev}r#{$infix}-#{$size},\n        .#{$abbrev}x#{$infix}-#{$size} {\n          #{$prop}-right: $length !important;\n        }\n        .#{$abbrev}b#{$infix}-#{$size},\n        .#{$abbrev}y#{$infix}-#{$size} {\n          #{$prop}-bottom: $length !important;\n        }\n        .#{$abbrev}l#{$infix}-#{$size},\n        .#{$abbrev}x#{$infix}-#{$size} {\n          #{$prop}-left: $length !important;\n        }\n      }\n    }\n\n    // Some special margin utils\n    .m#{$infix}-auto { margin: auto !important; }\n    .mt#{$infix}-auto,\n    .my#{$infix}-auto {\n      margin-top: auto !important;\n    }\n    .mr#{$infix}-auto,\n    .mx#{$infix}-auto {\n      margin-right: auto !important;\n    }\n    .mb#{$infix}-auto,\n    .my#{$infix}-auto {\n      margin-bottom: auto !important;\n    }\n    .ml#{$infix}-auto,\n    .mx#{$infix}-auto {\n      margin-left: auto !important;\n    }\n  }\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_text.scss",
    "content": "// stylelint-disable declaration-no-important\n\n//\n// Text\n//\n\n.text-monospace { font-family: $font-family-monospace; }\n\n// Alignment\n\n.text-justify  { text-align: justify !important; }\n.text-nowrap   { white-space: nowrap !important; }\n.text-truncate { @include text-truncate; }\n\n// Responsive alignment\n\n@each $breakpoint in map-keys($grid-breakpoints) {\n  @include media-breakpoint-up($breakpoint) {\n    $infix: breakpoint-infix($breakpoint, $grid-breakpoints);\n\n    .text#{$infix}-left   { text-align: left !important; }\n    .text#{$infix}-right  { text-align: right !important; }\n    .text#{$infix}-center { text-align: center !important; }\n  }\n}\n\n// Transformation\n\n.text-lowercase  { text-transform: lowercase !important; }\n.text-uppercase  { text-transform: uppercase !important; }\n.text-capitalize { text-transform: capitalize !important; }\n\n// Weight and italics\n\n.font-weight-light  { font-weight: $font-weight-light !important; }\n.font-weight-normal { font-weight: $font-weight-normal !important; }\n.font-weight-bold   { font-weight: $font-weight-bold !important; }\n.font-italic        { font-style: italic !important; }\n\n// Contextual colors\n\n.text-white { color: $white !important; }\n\n@each $color, $value in $theme-colors {\n  @include text-emphasis-variant(\".text-#{$color}\", $value);\n}\n\n.text-body { color: $body-color !important; }\n.text-muted { color: $text-muted !important; }\n\n.text-black-50 { color: rgba($black, .5) !important; }\n.text-white-50 { color: rgba($white, .5) !important; }\n\n// Misc\n\n.text-hide {\n  @include text-hide($ignore-warning: true);\n}\n"
  },
  {
    "path": "public/landing/scss/bootstrap/utilities/_visibility.scss",
    "content": "//\n// Visibility utilities\n//\n\n.visible {\n  @include invisible(visible);\n}\n\n.invisible {\n  @include invisible(hidden);\n}\n"
  },
  {
    "path": "public/landing/scss/style.scss",
    "content": "@import \"bootstrap/functions\";\n@import \"bootstrap/variables\";\n@import \"bootstrap/mixins\";\n\n/* Base */\n@import \"site-base\";\n/* Navbar */\n@import \"site-navbar\";\n/* Blocks */\n@import \"site-blocks\";"
  },
  {
    "path": "public/robots.txt",
    "content": "User-agent: *\nDisallow:\n"
  },
  {
    "path": "public/web.config",
    "content": "<!--\n    Rewrites requires Microsoft URL Rewrite Module for IIS\n    Download: https://www.iis.net/downloads/microsoft/url-rewrite\n    Debug Help: https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/using-failed-request-tracing-to-trace-rewrite-rules\n-->\n<configuration>\n  <system.webServer>\n    <rewrite>\n      <rules>\n        <rule name=\"Imported Rule 1\" stopProcessing=\"true\">\n          <match url=\"^(.*)/$\" ignoreCase=\"false\" />\n          <conditions>\n            <add input=\"{REQUEST_FILENAME}\" matchType=\"IsDirectory\" ignoreCase=\"false\" negate=\"true\" />\n          </conditions>\n          <action type=\"Redirect\" redirectType=\"Permanent\" url=\"/{R:1}\" />\n        </rule>\n        <rule name=\"Imported Rule 2\" stopProcessing=\"true\">\n          <match url=\"^\" ignoreCase=\"false\" />\n          <conditions>\n            <add input=\"{REQUEST_FILENAME}\" matchType=\"IsDirectory\" ignoreCase=\"false\" negate=\"true\" />\n            <add input=\"{REQUEST_FILENAME}\" matchType=\"IsFile\" ignoreCase=\"false\" negate=\"true\" />\n          </conditions>\n          <action type=\"Rewrite\" url=\"index.php\" />\n        </rule>\n      </rules>\n    </rewrite>\n  </system.webServer>\n</configuration>\n"
  },
  {
    "path": "readme.md",
    "content": "<p align=\"center\"><img src=\"https://aloc.com.ng/asset/images/slide/aloc-shield.png\"></p>\n\n<p align=\"center\"><i>Get Inspired to Practice</i></p>\n\n## About ALOC\n\nALOC is an adventure-based CBT practice platform with an engaging game story that unravels as students progress in the game levels. We use gaming concepts to increase student practice time and grades.[https://aloc.com.ng]\n\n- Experience CBT in the game environment\n- Gain free access to unlimited past questions\n- Chat with students across Nigeria\n- Get paid for being smart\n- Learn for fun, play for glory\n  \nFinally, boring times are over, academic practice can now be Fun for students seeking university admission.\n\n## About ALOC Questions API\n\nThis app gives developers and educators access to our questions via API calls. You get free access to over 6,000 past questions for UTME, WASSCE, POST-UTME\n\nMake API calls to have access to over 6,000 Major Nigeria past questions. 100% FREE\n\nYou can focus on building great apps for students with unlimited access to API calls for trivial questions of major exams in Nigeria\n\n## Our Goal\n\nTo have the largest open-source database of various past questions in Nigeria. \n\n## Call for Questions\n\nOver <a href=https://questions.aloc.com.ng/api/metrics/subjects-call>5,534,083 API questions</a> request has been made to this library. Do you have questions you want to add to this database? We are excited to receive your mail at aloc.mass@gmail.com\n\n## Setup\n\n- `php artisan composer update`\n\n- In the project root directory create another copy of .env.example and rename it to .env\n\n- Generate application key `php artisan key:generate`\n\n- In .env file, supply values to DB_DATABASE, DB_USERNAME, DB_PASSWORD\n\n- `php artisan migrate`\n\n- You can load some dummy data into the database for testing `php artisan db:seed --class=LoadDummyQuestions`\n\n- Load report question types `php artisan db:seed --class=ReportQuestionType` this is optional\n\n- `php artisan server` to load app. You Got it!\n\n\n\n## Sample API call \n\n _Sign up at https://questions.aloc.com.ng to get *Acces Token* ._\n\nVisit https://github.com/Seunope/aloc-endpoints/wiki/API-Parameters for a sample API call with headers and parameters  \n\n\n## Postman APIs Doc \n\nhttps://documenter.getpostman.com/view/1319216/2s9YCBuA3V\n\n<img src=\"https://res.cloudinary.com/aloc-ng/image/upload/v1695632646/ALOC-Questions/Screenshot_2023-09-25_at_09.54.01_hvf3fv.png\"/>\n\n## API call Examples\n\nGet a question\n\nhttps://questions.aloc.com.ng/api/v2/q?subject=chemistry\n\n<img src=\"https://aloc.com.ng/asset/images/others/aloc-api-sample.png\">\n\nGet many questions (returns 40 questions)\n\nhttps://questions.aloc.com.ng/api/v2/m?subject=chemistry\n\nGet several questions (limit 40)\n\nhttps://questions.aloc.com.ng/api/v2/q/7?subject=chemistry\n\neg.\n\n`https://questions.aloc.com.ng/api/v2/q/23?subject=chemistry`\n`https://questions.aloc.com.ng/api/v2/q/30?subject=chemistry`\n`https://questions.aloc.com.ng/api/v2/q/4?subject=chemistry`\n\n\nGet a question by year\n\nhttps://questions.aloc.com.ng/api/v2/q?subject=chemistry&year=2005\n\nGet a question by exam type\n\nhttps://questions.aloc.com.ng/api/v2/q?subject=chemistry&type=utme\n\nGet a question by type and year\n\nhttps://questions.aloc.com.ng/api/v2/q?subject=chemistry&year=2010&type=utme\n\nGet question by id and subject\n\nhttps://questions.aloc.com.ng/api/v2/q-by-id/1?subject=chemistry\n\nFor more detailed examples visit https://questions.aloc.com.ng\n## API Documentation\n\nVist the <a href='https://github.com/Seunope/aloc-endpoints/wiki'>lib wiki</a> to get access to some special features.<a href='https://github.com/Seunope/aloc-endpoints/wiki'>API Documentation</a>\n\n \n- Subject Metrics\n- API Parameters\n- Sample APIs\n- Subject & Year\n  \n## ALOC Sponsors\n\nWe would like to extend our thanks to the following sponsors for helping fund on-going ALOC development. If you are interested in becoming a sponsor, please send a mail to Admin [aloc.mass@gmail.com]:\n\n- **[MaSSiveTeck](https://magbodo.com/)**\n\n## Contributing\n\nThank you for considering contributing to the ALOC Questions Api end points!\n\n\n<a href=\"https://www.buymeacoffee.com/seunope\" target=\"_blank\"><img src=\"https://cdn.buymeacoffee.com/buttons/default-orange.png\" alt=\"Buy Me A Coffee\" height=\"41\" width=\"174\"></a>\n\n## Security Vulnerabilities\n\nIf you discover a security vulnerability within ALOC APIs, please send an e-mail to Admin via [aloc.mass@gmail.com](mailto:aloc.mass@gmail.com. All security vulnerabilities will be promptly addressed.\n\n## License\n\nThe ALOC API is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n"
  },
  {
    "path": "resources/css/app.css",
    "content": ""
  },
  {
    "path": "resources/js/app.js",
    "content": "require('./bootstrap');\n"
  },
  {
    "path": "resources/js/bootstrap.js",
    "content": "window._ = require('lodash');\n\n/**\n * We'll load the axios HTTP library which allows us to easily issue requests\n * to our Laravel back-end. This library automatically handles sending the\n * CSRF token as a header based on the value of the \"XSRF\" token cookie.\n */\n\nwindow.axios = require('axios');\n\nwindow.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';\n\n/**\n * Echo exposes an expressive API for subscribing to channels and listening\n * for events that are broadcast by Laravel. Echo and event broadcasting\n * allows your team to easily build robust real-time web applications.\n */\n\n// import Echo from 'laravel-echo';\n\n// window.Pusher = require('pusher-js');\n\n// window.Echo = new Echo({\n//     broadcaster: 'pusher',\n//     key: process.env.MIX_PUSHER_APP_KEY,\n//     cluster: process.env.MIX_PUSHER_APP_CLUSTER,\n//     forceTLS: true\n// });\n"
  },
  {
    "path": "resources/lang/en/auth.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Authentication Language Lines\n    |--------------------------------------------------------------------------\n    |\n    | The following language lines are used during authentication for various\n    | messages that we need to display to the user. You are free to modify\n    | these language lines according to your application's requirements.\n    |\n    */\n\n    'failed' => 'These credentials do not match our records.',\n    'password' => 'The provided password is incorrect.',\n    'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',\n\n];\n"
  },
  {
    "path": "resources/lang/en/pagination.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Pagination Language Lines\n    |--------------------------------------------------------------------------\n    |\n    | The following language lines are used by the paginator library to build\n    | the simple pagination links. You are free to change them to anything\n    | you want to customize your views to better match your application.\n    |\n    */\n\n    'previous' => '&laquo; Previous',\n    'next' => 'Next &raquo;',\n\n];\n"
  },
  {
    "path": "resources/lang/en/passwords.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Password Reset Language Lines\n    |--------------------------------------------------------------------------\n    |\n    | The following language lines are the default lines which match reasons\n    | that are given by the password broker for a password update attempt\n    | has failed, such as for an invalid token or invalid new password.\n    |\n    */\n\n    'reset' => 'Your password has been reset!',\n    'sent' => 'We have emailed your password reset link!',\n    'throttled' => 'Please wait before retrying.',\n    'token' => 'This password reset token is invalid.',\n    'user' => \"We can't find a user with that email address.\",\n\n];\n"
  },
  {
    "path": "resources/lang/en/validation.php",
    "content": "<?php\n\nreturn [\n\n    /*\n    |--------------------------------------------------------------------------\n    | Validation Language Lines\n    |--------------------------------------------------------------------------\n    |\n    | The following language lines contain the default error messages used by\n    | the validator class. Some of these rules have multiple versions such\n    | as the size rules. Feel free to tweak each of these messages here.\n    |\n    */\n\n    'accepted' => 'The :attribute must be accepted.',\n    'active_url' => 'The :attribute is not a valid URL.',\n    'after' => 'The :attribute must be a date after :date.',\n    'after_or_equal' => 'The :attribute must be a date after or equal to :date.',\n    'alpha' => 'The :attribute must only contain letters.',\n    'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',\n    'alpha_num' => 'The :attribute must only contain letters and numbers.',\n    'array' => 'The :attribute must be an array.',\n    'before' => 'The :attribute must be a date before :date.',\n    'before_or_equal' => 'The :attribute must be a date before or equal to :date.',\n    'between' => [\n        'numeric' => 'The :attribute must be between :min and :max.',\n        'file' => 'The :attribute must be between :min and :max kilobytes.',\n        'string' => 'The :attribute must be between :min and :max characters.',\n        'array' => 'The :attribute must have between :min and :max items.',\n    ],\n    'boolean' => 'The :attribute field must be true or false.',\n    'confirmed' => 'The :attribute confirmation does not match.',\n    'current_password' => 'The password is incorrect.',\n    'date' => 'The :attribute is not a valid date.',\n    'date_equals' => 'The :attribute must be a date equal to :date.',\n    'date_format' => 'The :attribute does not match the format :format.',\n    'different' => 'The :attribute and :other must be different.',\n    'digits' => 'The :attribute must be :digits digits.',\n    'digits_between' => 'The :attribute must be between :min and :max digits.',\n    'dimensions' => 'The :attribute has invalid image dimensions.',\n    'distinct' => 'The :attribute field has a duplicate value.',\n    'email' => 'The :attribute must be a valid email address.',\n    'ends_with' => 'The :attribute must end with one of the following: :values.',\n    'exists' => 'The selected :attribute is invalid.',\n    'file' => 'The :attribute must be a file.',\n    'filled' => 'The :attribute field must have a value.',\n    'gt' => [\n        'numeric' => 'The :attribute must be greater than :value.',\n        'file' => 'The :attribute must be greater than :value kilobytes.',\n        'string' => 'The :attribute must be greater than :value characters.',\n        'array' => 'The :attribute must have more than :value items.',\n    ],\n    'gte' => [\n        'numeric' => 'The :attribute must be greater than or equal :value.',\n        'file' => 'The :attribute must be greater than or equal :value kilobytes.',\n        'string' => 'The :attribute must be greater than or equal :value characters.',\n        'array' => 'The :attribute must have :value items or more.',\n    ],\n    'image' => 'The :attribute must be an image.',\n    'in' => 'The selected :attribute is invalid.',\n    'in_array' => 'The :attribute field does not exist in :other.',\n    'integer' => 'The :attribute must be an integer.',\n    'ip' => 'The :attribute must be a valid IP address.',\n    'ipv4' => 'The :attribute must be a valid IPv4 address.',\n    'ipv6' => 'The :attribute must be a valid IPv6 address.',\n    'json' => 'The :attribute must be a valid JSON string.',\n    'lt' => [\n        'numeric' => 'The :attribute must be less than :value.',\n        'file' => 'The :attribute must be less than :value kilobytes.',\n        'string' => 'The :attribute must be less than :value characters.',\n        'array' => 'The :attribute must have less than :value items.',\n    ],\n    'lte' => [\n        'numeric' => 'The :attribute must be less than or equal :value.',\n        'file' => 'The :attribute must be less than or equal :value kilobytes.',\n        'string' => 'The :attribute must be less than or equal :value characters.',\n        'array' => 'The :attribute must not have more than :value items.',\n    ],\n    'max' => [\n        'numeric' => 'The :attribute must not be greater than :max.',\n        'file' => 'The :attribute must not be greater than :max kilobytes.',\n        'string' => 'The :attribute must not be greater than :max characters.',\n        'array' => 'The :attribute must not have more than :max items.',\n    ],\n    'mimes' => 'The :attribute must be a file of type: :values.',\n    'mimetypes' => 'The :attribute must be a file of type: :values.',\n    'min' => [\n        'numeric' => 'The :attribute must be at least :min.',\n        'file' => 'The :attribute must be at least :min kilobytes.',\n        'string' => 'The :attribute must be at least :min characters.',\n        'array' => 'The :attribute must have at least :min items.',\n    ],\n    'multiple_of' => 'The :attribute must be a multiple of :value.',\n    'not_in' => 'The selected :attribute is invalid.',\n    'not_regex' => 'The :attribute format is invalid.',\n    'numeric' => 'The :attribute must be a number.',\n    'password' => 'The password is incorrect.',\n    'present' => 'The :attribute field must be present.',\n    'regex' => 'The :attribute format is invalid.',\n    'required' => 'The :attribute field is required.',\n    'required_if' => 'The :attribute field is required when :other is :value.',\n    'required_unless' => 'The :attribute field is required unless :other is in :values.',\n    'required_with' => 'The :attribute field is required when :values is present.',\n    'required_with_all' => 'The :attribute field is required when :values are present.',\n    'required_without' => 'The :attribute field is required when :values is not present.',\n    'required_without_all' => 'The :attribute field is required when none of :values are present.',\n    'prohibited' => 'The :attribute field is prohibited.',\n    'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',\n    'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',\n    'same' => 'The :attribute and :other must match.',\n    'size' => [\n        'numeric' => 'The :attribute must be :size.',\n        'file' => 'The :attribute must be :size kilobytes.',\n        'string' => 'The :attribute must be :size characters.',\n        'array' => 'The :attribute must contain :size items.',\n    ],\n    'starts_with' => 'The :attribute must start with one of the following: :values.',\n    'string' => 'The :attribute must be a string.',\n    'timezone' => 'The :attribute must be a valid zone.',\n    'unique' => 'The :attribute has already been taken.',\n    'uploaded' => 'The :attribute failed to upload.',\n    'url' => 'The :attribute format is invalid.',\n    'uuid' => 'The :attribute must be a valid UUID.',\n\n    /*\n    |--------------------------------------------------------------------------\n    | Custom Validation Language Lines\n    |--------------------------------------------------------------------------\n    |\n    | Here you may specify custom validation messages for attributes using the\n    | convention \"attribute.rule\" to name the lines. This makes it quick to\n    | specify a specific custom language line for a given attribute rule.\n    |\n    */\n\n    'custom' => [\n        'attribute-name' => [\n            'rule-name' => 'custom-message',\n        ],\n    ],\n\n    /*\n    |--------------------------------------------------------------------------\n    | Custom Validation Attributes\n    |--------------------------------------------------------------------------\n    |\n    | The following language lines are used to swap our attribute placeholder\n    | with something more reader friendly such as \"E-Mail Address\" instead\n    | of \"email\". This simply helps us make our message more expressive.\n    |\n    */\n\n    'attributes' => [],\n\n];\n"
  },
  {
    "path": "resources/views/admin/access_token.blade.php",
    "content": "\n@extends('admin.layouts.base')\n\n@section('content')\n    <div id=\"wrapper\">\n        @include('admin.layouts.partials._sidebar')\n\n        <div id=\"page-wrapper\" class=\"gray-bg\">\n            @include('admin.layouts.partials._top_toolbar')\n            <div class=\"wrapper wrapper-content\">\n\n                <div class=\"row\">\n                    <div class=\"col-lg-7\">\n                        <div class=\"ibox float-e-margins\">\n                            <div class=\"ibox-title\">\n                                <h5>Access Token <small>for api request</small></h5>\n\n                            </div>\n                            <div class=\"ibox-content\">\n                                <div class=\"row\">\n                                    <div class=\"col-sm-12 b-r\"><h3 class=\"m-t-none m-b\">Access Token:   {{$token}} </h3>\n                                        <p>Last Used: {{$lastUsed}}</p>\n                                        <p>Usage count: {{$count}}</p>\n\n                                            <a href=\"{{url('admin/access-token/generate')}}\" class=\"btn btn-sm btn-primary pull-right m-t-n-xs\" type=\"button\"><strong>Generate new Access Token</strong></a>\n                                    </div>\n\n                                </div>\n                            </div>\n                        </div>\n                    </div>\n                 @include('admin.layouts.partials._footer_note')\n\n        </div>\n    </div>\n\n\n@stop\n@section('scripts')\n    <script>\n        $(document).ready(function() {\n            $('.chart').easyPieChart({\n                barColor: '#f8ac59',\n//                scaleColor: false,\n                scaleLength: 5,\n                lineWidth: 4,\n                size: 80\n            });\n\n            $('.chart2').easyPieChart({\n                barColor: '#1c84c6',\n//                scaleColor: false,\n                scaleLength: 5,\n                lineWidth: 4,\n                size: 80\n            });\n\n            var data2 = [\n                [gd(2012, 1, 1), 7], [gd(2012, 1, 2), 6], [gd(2012, 1, 3), 4], [gd(2012, 1, 4), 8],\n                [gd(2012, 1, 5), 9], [gd(2012, 1, 6), 7], [gd(2012, 1, 7), 5], [gd(2012, 1, 8), 4],\n                [gd(2012, 1, 9), 7], [gd(2012, 1, 10), 8], [gd(2012, 1, 11), 9], [gd(2012, 1, 12), 6],\n                [gd(2012, 1, 13), 4], [gd(2012, 1, 14), 5], [gd(2012, 1, 15), 11], [gd(2012, 1, 16), 8],\n                [gd(2012, 1, 17), 8], [gd(2012, 1, 18), 11], [gd(2012, 1, 19), 11], [gd(2012, 1, 20), 6],\n                [gd(2012, 1, 21), 6], [gd(2012, 1, 22), 8], [gd(2012, 1, 23), 11], [gd(2012, 1, 24), 13],\n                [gd(2012, 1, 25), 7], [gd(2012, 1, 26), 9], [gd(2012, 1, 27), 9], [gd(2012, 1, 28), 8],\n                [gd(2012, 1, 29), 5], [gd(2012, 1, 30), 8], [gd(2012, 1, 31), 25]\n            ];\n\n            var data3 = [\n                [gd(2012, 1, 1), 800], [gd(2012, 1, 2), 500], [gd(2012, 1, 3), 600], [gd(2012, 1, 4), 700],\n                [gd(2012, 1, 5), 500], [gd(2012, 1, 6), 456], [gd(2012, 1, 7), 800], [gd(2012, 1, 8), 589],\n                [gd(2012, 1, 9), 467], [gd(2012, 1, 10), 876], [gd(2012, 1, 11), 689], [gd(2012, 1, 12), 700],\n                [gd(2012, 1, 13), 500], [gd(2012, 1, 14), 600], [gd(2012, 1, 15), 700], [gd(2012, 1, 16), 786],\n                [gd(2012, 1, 17), 345], [gd(2012, 1, 18), 888], [gd(2012, 1, 19), 888], [gd(2012, 1, 20), 888],\n                [gd(2012, 1, 21), 987], [gd(2012, 1, 22), 444], [gd(2012, 1, 23), 999], [gd(2012, 1, 24), 567],\n                [gd(2012, 1, 25), 786], [gd(2012, 1, 26), 666], [gd(2012, 1, 27), 888], [gd(2012, 1, 28), 900],\n                [gd(2012, 1, 29), 178], [gd(2012, 1, 30), 555], [gd(2012, 1, 31), 993]\n            ];\n\n\n            var dataset = [\n                {\n                    label: \"Number of orders\",\n                    data: data3,\n                    color: \"#1ab394\",\n                    bars: {\n                        show: true,\n                        align: \"center\",\n                        barWidth: 24 * 60 * 60 * 600,\n                        lineWidth:0\n                    }\n\n                }, {\n                    label: \"Payments\",\n                    data: data2,\n                    yaxis: 2,\n                    color: \"#464f88\",\n                    lines: {\n                        lineWidth:1,\n                        show: true,\n                        fill: true,\n                        fillColor: {\n                            colors: [{\n                                opacity: 0.2\n                            }, {\n                                opacity: 0.2\n                            }]\n                        }\n                    },\n                    splines: {\n                        show: false,\n                        tension: 0.6,\n                        lineWidth: 1,\n                        fill: 0.1\n                    },\n                }\n            ];\n\n\n            var options = {\n                xaxis: {\n                    mode: \"time\",\n                    tickSize: [3, \"day\"],\n                    tickLength: 0,\n                    axisLabel: \"Date\",\n                    axisLabelUseCanvas: true,\n                    axisLabelFontSizePixels: 12,\n                    axisLabelFontFamily: 'Arial',\n                    axisLabelPadding: 10,\n                    color: \"#d5d5d5\"\n                },\n                yaxes: [{\n                    position: \"left\",\n                    max: 1070,\n                    color: \"#d5d5d5\",\n                    axisLabelUseCanvas: true,\n                    axisLabelFontSizePixels: 12,\n                    axisLabelFontFamily: 'Arial',\n                    axisLabelPadding: 3\n                }, {\n                    position: \"right\",\n                    clolor: \"#d5d5d5\",\n                    axisLabelUseCanvas: true,\n                    axisLabelFontSizePixels: 12,\n                    axisLabelFontFamily: ' Arial',\n                    axisLabelPadding: 67\n                }\n                ],\n                legend: {\n                    noColumns: 1,\n                    labelBoxBorderColor: \"#000000\",\n                    position: \"nw\"\n                },\n                grid: {\n                    hoverable: false,\n                    borderWidth: 0\n                }\n            };\n\n            function gd(year, month, day) {\n                return new Date(year, month - 1, day).getTime();\n            }\n\n            var previousPoint = null, previousLabel = null;\n\n            $.plot($(\"#flot-dashboard-chart\"), dataset, options);\n\n            var mapData = {\n                \"US\": 298,\n                \"SA\": 200,\n                \"DE\": 220,\n                \"FR\": 540,\n                \"CN\": 120,\n                \"AU\": 760,\n                \"BR\": 550,\n                \"IN\": 200,\n                \"GB\": 120,\n            };\n\n            $('#world-map').vectorMap({\n                map: 'world_mill_en',\n                backgroundColor: \"transparent\",\n                regionStyle: {\n                    initial: {\n                        fill: '#e4e4e4',\n                        \"fill-opacity\": 0.9,\n                        stroke: 'none',\n                        \"stroke-width\": 0,\n                        \"stroke-opacity\": 0\n                    }\n                },\n\n                series: {\n                    regions: [{\n                        values: mapData,\n                        scale: [\"#1ab394\", \"#22d6b1\"],\n                        normalizeFunction: 'polynomial'\n                    }]\n                },\n            });\n        });\n    </script>\n@endsection\n\n"
  },
  {
    "path": "resources/views/admin/dashboard.blade.php",
    "content": "\n@extends('admin.layouts.base')\n\n@section('content')\n    <div id=\"wrapper\">\n        @include('admin.layouts.partials._sidebar')\n\n        <div id=\"page-wrapper\" class=\"gray-bg\">\n            @include('admin.layouts.partials._top_toolbar')\n            <div class=\"wrapper wrapper-content\">\n        <div class=\"row\">\n                    <div class=\"col-lg-3\">\n                        <div class=\"ibox float-e-margins\">\n                            <div class=\"ibox-title\">\n                                <span class=\"label label-success pull-right\">{{$topMetrics['plan']->plan}}</span>\n                                <h5>Plan</h5>\n                            </div>\n                            <div class=\"ibox-content\">\n                                <h1 class=\"no-margins\">{{formatNumber($topMetrics['accessCount'])}}/{{formatNumber($topMetrics['subscription']->limit)}}</h1>\n                                <div class=\"stat-percent font-bold text-success\">98% <i class=\"fa fa-bolt\"></i></div>\n                                <small>API Calls</small>\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"col-lg-3\">\n                        <div class=\"ibox float-e-margins\">\n                            <div class=\"ibox-title\">\n                                <span class=\"label label-info pull-right\">Subject</span>\n                                <h5>Subject</h5>\n                            </div>\n                            <div class=\"ibox-content\">\n                                <h1 class=\"no-margins\">{{formatNumber($tracker['questionCalls'])}}</h1>\n                                <div class=\"stat-percent font-bold text-info\">20% <i class=\"fa fa-level-up\"></i></div>\n                                <small>Question calls</small>\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"col-lg-3\">\n                        <div class=\"ibox float-e-margins\">\n                            <div class=\"ibox-title\">\n                                <span class=\"label label-primary pull-right\">Token</span>\n                                <h5>Access</h5>\n                            </div>\n                            <div class=\"ibox-content\">\n                                <h1 class=\"no-margins\">1</h1>\n                                <div class=\"stat-percent font-bold text-navy\">44% <i class=\"fa fa-level-up\"></i></div>\n                                <small>Token created</small>\n                            </div>\n                        </div>\n                    </div>\n                    <div class=\"col-lg-3\">\n                        <div class=\"ibox float-e-margins\">\n                            <div class=\"ibox-title\">\n                                <span class=\"label label-danger pull-right\">Subject</span>\n                                <h5>Subject activity</h5>\n                            </div>\n                            <div class=\"ibox-content\">\n                                <h1 class=\"no-margins\">{{$tracker['subjectCount']}}</h1>\n                                <div class=\"stat-percent font-bold text-danger\">90% <i class=\"fa fa-level-up\"></i></div>\n                                <small>Subj</small>\n                            </div>\n                        </div>\n            </div>\n        </div>\n        <div class=\"row\">\n{{--                    <div class=\"col-lg-12\">--}}\n{{--                        <div class=\"ibox float-e-margins\">--}}\n{{--                            <div class=\"ibox-title\">--}}\n{{--                                <h5>Orders</h5>--}}\n{{--                                <div class=\"pull-right\">--}}\n{{--                                    <div class=\"btn-group\">--}}\n{{--                                        <button type=\"button\" class=\"btn btn-xs btn-white active\">Today</button>--}}\n{{--                                        <button type=\"button\" class=\"btn btn-xs btn-white\">Monthly</button>--}}\n{{--                                        <button type=\"button\" class=\"btn btn-xs btn-white\">Annual</button>--}}\n{{--                                    </div>--}}\n{{--                                </div>--}}\n{{--                            </div>--}}\n{{--                            <div class=\"ibox-content\">--}}\n{{--                                <div class=\"row\">--}}\n{{--                                <div class=\"col-lg-9\">--}}\n{{--                                    <div class=\"flot-chart\">--}}\n{{--                                        <div class=\"flot-chart-content\" id=\"flot-dashboard-chart\"></div>--}}\n{{--                                    </div>--}}\n{{--                                </div>--}}\n{{--                                <div class=\"col-lg-3\">--}}\n{{--                                    <ul class=\"stat-list\">--}}\n{{--                                        <li>--}}\n{{--                                            <h2 class=\"no-margins\">2,346</h2>--}}\n{{--                                            <small>Total orders in period</small>--}}\n{{--                                            <div class=\"stat-percent\">48% <i class=\"fa fa-level-up text-navy\"></i></div>--}}\n{{--                                            <div class=\"progress progress-mini\">--}}\n{{--                                                <div style=\"width: 48%;\" class=\"progress-bar\"></div>--}}\n{{--                                            </div>--}}\n{{--                                        </li>--}}\n{{--                                        <li>--}}\n{{--                                            <h2 class=\"no-margins \">4,422</h2>--}}\n{{--                                            <small>Orders in last month</small>--}}\n{{--                                            <div class=\"stat-percent\">60% <i class=\"fa fa-level-down text-navy\"></i></div>--}}\n{{--                                            <div class=\"progress progress-mini\">--}}\n{{--                                                <div style=\"width: 60%;\" class=\"progress-bar\"></div>--}}\n{{--                                            </div>--}}\n{{--                                        </li>--}}\n{{--                                        <li>--}}\n{{--                                            <h2 class=\"no-margins \">9,180</h2>--}}\n{{--                                            <small>Monthly income from orders</small>--}}\n{{--                                            <div class=\"stat-percent\">22% <i class=\"fa fa-bolt text-navy\"></i></div>--}}\n{{--                                            <div class=\"progress progress-mini\">--}}\n{{--                                                <div style=\"width: 22%;\" class=\"progress-bar\"></div>--}}\n{{--                                            </div>--}}\n{{--                                        </li>--}}\n{{--                                        </ul>--}}\n{{--                                    </div>--}}\n{{--                                </div>--}}\n{{--                                </div>--}}\n\n{{--                            </div>--}}\n{{--                        </div>--}}\n{{--                    </div>--}}\n\n                <div class=\"row\">\n                    <div class=\"col-lg-12\">\n                        <div class=\"ibox float-e-margins\">\n                            <div class=\"ibox-title\">\n                                <h5>Request Tracker  </h5>\n                                <div class=\"ibox-tools\">\n                                    <a class=\"collapse-link\">\n                                        <i class=\"fa fa-chevron-up\"></i>\n                                    </a>\n                                    <a class=\"dropdown-toggle\" data-toggle=\"dropdown\" href=\"#\">\n                                        <i class=\"fa fa-wrench\"></i>\n                                    </a>\n                                    <ul class=\"dropdown-menu dropdown-user\">\n                                        <li><a href=\"#\">Config option 1</a>\n                                        </li>\n                                        <li><a href=\"#\">Config option 2</a>\n                                        </li>\n                                    </ul>\n                                    <a class=\"close-link\">\n                                        <i class=\"fa fa-times\"></i>\n                                    </a>\n                                </div>\n                            </div>\n                            <div class=\"ibox-content\">\n\n                                <table class=\"table table-hover\">\n                                    <thead>\n                                    <tr>\n                                        <th>#</th>\n                                        <th>Token</th>\n                                        <th>Subjects</th>\n                                        <th>Request Count</th>\n                                    </tr>\n                                    </thead>\n                                    @if(!is_null($tracker))\n                                        <tbody>\n                                        @php $subjectRequest = $tracker['subjectTracker'] @endphp\n                                        @for($i =0; $i < count($subjectRequest); $i++)\n                                        <tr>\n                                            <td>{{$i+1}}</td>\n                                            <td>{{$subjectRequest[$i]['token']}}</td>\n                                            <td>{{ucfirst($subjectRequest[$i]['subject'])}}</td>\n                                            <td class=\"text-navy\"> {{$subjectRequest[$i]['count']}} </td>\n                                        </tr>\n                                        @endfor\n                                        </tbody>\n                                    @endif\n                                </table>\n\n                            </div>\n                        </div>\n                    </div>\n             </div>\n            @include('admin.layouts.partials._footer_note')\n\n        </div>\n    </div>\n\n\n@stop\n@section('scripts')\n    <script>\n        $(document).ready(function() {\n            $('.chart').easyPieChart({\n                barColor: '#f8ac59',\n//                scaleColor: false,\n                scaleLength: 5,\n                lineWidth: 4,\n                size: 80\n            });\n\n            $('.chart2').easyPieChart({\n                barColor: '#1c84c6',\n//                scaleColor: false,\n                scaleLength: 5,\n                lineWidth: 4,\n                size: 80\n            });\n\n            var data2 = [\n                [gd(2012, 1, 1), 7], [gd(2012, 1, 2), 6], [gd(2012, 1, 3), 4], [gd(2012, 1, 4), 8],\n                [gd(2012, 1, 5), 9], [gd(2012, 1, 6), 7], [gd(2012, 1, 7), 5], [gd(2012, 1, 8), 4],\n                [gd(2012, 1, 9), 7], [gd(2012, 1, 10), 8], [gd(2012, 1, 11), 9], [gd(2012, 1, 12), 6],\n                [gd(2012, 1, 13), 4], [gd(2012, 1, 14), 5], [gd(2012, 1, 15), 11], [gd(2012, 1, 16), 8],\n                [gd(2012, 1, 17), 8], [gd(2012, 1, 18), 11], [gd(2012, 1, 19), 11], [gd(2012, 1, 20), 6],\n                [gd(2012, 1, 21), 6], [gd(2012, 1, 22), 8], [gd(2012, 1, 23), 11], [gd(2012, 1, 24), 13],\n                [gd(2012, 1, 25), 7], [gd(2012, 1, 26), 9], [gd(2012, 1, 27), 9], [gd(2012, 1, 28), 8],\n                [gd(2012, 1, 29), 5], [gd(2012, 1, 30), 8], [gd(2012, 1, 31), 25]\n            ];\n\n            var data3 = [\n                [gd(2012, 1, 1), 800], [gd(2012, 1, 2), 500], [gd(2012, 1, 3), 600], [gd(2012, 1, 4), 700],\n                [gd(2012, 1, 5), 500], [gd(2012, 1, 6), 456], [gd(2012, 1, 7), 800], [gd(2012, 1, 8), 589],\n                [gd(2012, 1, 9), 467], [gd(2012, 1, 10), 876], [gd(2012, 1, 11), 689], [gd(2012, 1, 12), 700],\n                [gd(2012, 1, 13), 500], [gd(2012, 1, 14), 600], [gd(2012, 1, 15), 700], [gd(2012, 1, 16), 786],\n                [gd(2012, 1, 17), 345], [gd(2012, 1, 18), 888], [gd(2012, 1, 19), 888], [gd(2012, 1, 20), 888],\n                [gd(2012, 1, 21), 987], [gd(2012, 1, 22), 444], [gd(2012, 1, 23), 999], [gd(2012, 1, 24), 567],\n                [gd(2012, 1, 25), 786], [gd(2012, 1, 26), 666], [gd(2012, 1, 27), 888], [gd(2012, 1, 28), 900],\n                [gd(2012, 1, 29), 178], [gd(2012, 1, 30), 555], [gd(2012, 1, 31), 993]\n            ];\n\n\n            var dataset = [\n                {\n                    label: \"Number of orders\",\n                    data: data3,\n                    color: \"#1ab394\",\n                    bars: {\n                        show: true,\n                        align: \"center\",\n                        barWidth: 24 * 60 * 60 * 600,\n                        lineWidth:0\n                    }\n\n                }, {\n                    label: \"Payments\",\n                    data: data2,\n                    yaxis: 2,\n                    color: \"#464f88\",\n                    lines: {\n                        lineWidth:1,\n                        show: true,\n                        fill: true,\n                        fillColor: {\n                            colors: [{\n                                opacity: 0.2\n                            }, {\n                                opacity: 0.2\n                            }]\n                        }\n                    },\n                    splines: {\n                        show: false,\n                        tension: 0.6,\n                        lineWidth: 1,\n                        fill: 0.1\n                    },\n                }\n            ];\n\n\n            var options = {\n                xaxis: {\n                    mode: \"time\",\n                    tickSize: [3, \"day\"],\n                    tickLength: 0,\n                    axisLabel: \"Date\",\n                    axisLabelUseCanvas: true,\n                    axisLabelFontSizePixels: 12,\n                    axisLabelFontFamily: 'Arial',\n                    axisLabelPadding: 10,\n                    color: \"#d5d5d5\"\n                },\n                yaxes: [{\n                    position: \"left\",\n                    max: 1070,\n                    color: \"#d5d5d5\",\n                    axisLabelUseCanvas: true,\n                    axisLabelFontSizePixels: 12,\n                    axisLabelFontFamily: 'Arial',\n                    axisLabelPadding: 3\n                }, {\n                    position: \"right\",\n                    clolor: \"#d5d5d5\",\n                    axisLabelUseCanvas: true,\n                    axisLabelFontSizePixels: 12,\n                    axisLabelFontFamily: ' Arial',\n                    axisLabelPadding: 67\n                }\n                ],\n                legend: {\n                    noColumns: 1,\n                    labelBoxBorderColor: \"#000000\",\n                    position: \"nw\"\n                },\n                grid: {\n                    hoverable: false,\n                    borderWidth: 0\n                }\n            };\n\n            function gd(year, month, day) {\n                return new Date(year, month - 1, day).getTime();\n            }\n\n            var previousPoint = null, previousLabel = null;\n\n            $.plot($(\"#flot-dashboard-chart\"), dataset, options);\n\n            var mapData = {\n                \"US\": 298,\n                \"SA\": 200,\n                \"DE\": 220,\n                \"FR\": 540,\n                \"CN\": 120,\n                \"AU\": 760,\n                \"BR\": 550,\n                \"IN\": 200,\n                \"GB\": 120,\n            };\n\n            $('#world-map').vectorMap({\n                map: 'world_mill_en',\n                backgroundColor: \"transparent\",\n                regionStyle: {\n                    initial: {\n                        fill: '#e4e4e4',\n                        \"fill-opacity\": 0.9,\n                        stroke: 'none',\n                        \"stroke-width\": 0,\n                        \"stroke-opacity\": 0\n                    }\n                },\n\n                series: {\n                    regions: [{\n                        values: mapData,\n                        scale: [\"#1ab394\", \"#22d6b1\"],\n                        normalizeFunction: 'polynomial'\n                    }]\n                },\n            });\n        });\n    </script>\n@endsection\n\n"
  },
  {
    "path": "resources/views/admin/layouts/base.blade.php",
    "content": "@include('admin/layouts/header')\n\n@yield('content')\n\n\n@include('admin/layouts/footer')"
  },
  {
    "path": "resources/views/admin/layouts/footer.blade.php",
    "content": "    <!-- Mainly scripts -->\n    <script src=\"{{url('admin/js/jquery-2.1.1.js')}}\"></script>\n    <script src=\"{{url('admin/js/bootstrap.min.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/metisMenu/jquery.metisMenu.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/slimscroll/jquery.slimscroll.min.js')}}\"></script>\n\n    <!-- Flot -->\n    <script src=\"{{url('admin/js/plugins/flot/jquery.flot.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/flot/jquery.flot.tooltip.min.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/flot/jquery.flot.spline.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/flot/jquery.flot.resize.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/flot/jquery.flot.pie.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/flot/jquery.flot.symbol.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/flot/jquery.flot.time.js')}}\"></script>\n\n    <!-- Peity -->\n    <script src=\"{{url('admin/js/plugins/peity/jquery.peity.min.js')}}\"></script>\n    <script src=\"{{url('admin/js/demo/peity-demo.js')}}\"></script>\n\n    <!-- Custom and plugin javascript -->\n    <script src=\"{{url('admin/js/inspinia.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/pace/pace.min.js')}}\"></script>\n\n    <!-- jQuery UI -->\n    <script src=\"{{url('admin/js/plugins/jquery-ui/jquery-ui.min.js')}}\"></script>\n\n    <!-- Jvectormap -->\n    <script src=\"{{url('admin/js/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js')}}\"></script>\n    <script src=\"{{url('admin/js/plugins/jvectormap/jquery-jvectormap-world-mill-en.js')}}\"></script>\n\n    <!-- EayPIE -->\n    <script src=\"{{url('admin/js/plugins/easypiechart/jquery.easypiechart.js')}}\"></script>\n\n    <!-- Sparkline -->\n    <script src=\"{{url('admin/js/plugins/sparkline/jquery.sparkline.min.js')}}\"></script>\n\n    <!-- Sparkline demo data  -->\n    <script src=\"{{url('admin/js/demo/sparkline-demo.js')}}\"></script>\n\n\n\n    @yield('scripts')\n\n    </body>\n\n</html>\n"
  },
  {
    "path": "resources/views/admin/layouts/header.blade.php",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n    <title>Past Questions | Dashboard </title>\n\n    <link href=\"{{url('admin/css/bootstrap.min.css')}}\" rel=\"stylesheet\">\n    <link href=\"{{url('admin/font-awesome/css/font-awesome.css')}}\" rel=\"stylesheet\">\n\n    <!-- Morris -->\n    <link href=\"{{url('admin/css/plugins/morris/morris-0.4.3.min.css')}}\" rel=\"stylesheet\">\n\n    <!-- Gritter -->\n    <link href=\"{{url('admin/js/plugins/gritter/jquery.gritter.css')}}\" rel=\"stylesheet\">\n\n    <link href=\"{{url('admin/css/animate.css')}}\" rel=\"stylesheet\">\n    <link href=\"{{url('admin/css/style.css')}}\" rel=\"stylesheet\">\n\n</head>\n\n<body>\n\n\n\n"
  },
  {
    "path": "resources/views/admin/layouts/partials/_footer_note.blade.php",
    "content": "<?php\n/**\n * Created by PhpStorm.\n * User: Gathem\n * Date: 6/07/2021\n * Time: 12:50 AM\n */?>\n<div class=\"footer\">\n    <div class=\"pull-right\">\n        Built <strong>with</strong> Love.\n    </div>\n    <div>\n        <strong>Copyright</strong> MassiveTech  &copy; {{date('Y')}}\n    </div>\n</div>\n"
  },
  {
    "path": "resources/views/admin/layouts/partials/_sidebar.blade.php",
    "content": "<?php\n/**\n * Created by PhpStorm.\n * User: Gathem\n * Date: 6/07/2021\n * Time: 8:24 PM\n */?>\n<nav class=\"navbar-default navbar-static-side\" role=\"navigation\">\n    <div class=\"sidebar-collapse\">\n        <ul class=\"nav\" id=\"side-menu\">\n            <li class=\"nav-header\">\n                <div class=\"dropdown profile-element\"> <span>\n                            <img alt=\"image\" class=\"img-circle\" src=\"{{url('admin/img/img.png')}}\" />\n                             </span>\n                    <a data-toggle=\"dropdown\" class=\"dropdown-toggle\" href=\"#\">\n                            <span class=\"clear\"> <span class=\"block m-t-xs\"> <strong class=\"font-bold\">{{auth()->user()->name}}</strong>\n                             </span> <span class=\"text-muted text-xs block\">{{auth()->user()->email}}<b class=\"caret\"></b></span> </span> </a>\n                    <ul class=\"dropdown-menu animated fadeInRight m-t-xs\">\n                        <li><a href=\"#\">Profile</a></li>\n                        {{-- <li><a href=\"contacts.html\">Contacts</a></li> --}}\n                        {{-- <li><a href=\"mailbox.html\">Mailbox</a></li> --}}\n                        <li class=\"divider\"></li>\n                        <li><a href=\"{{route('logout')}}\">Logout</a></li>\n                    </ul>\n                </div>\n                <div class=\"logo-element\">\n                    IN+\n                </div>\n            </li>\n            <li class>\n                <a href=\"{{url('admin/dashboard')}}\"><i class=\"fa fa-th-large\"></i> <span class=\"nav-label\">Dashboard</span> <span class=\"fa arrow\"></span></a>\n{{--                <ul class=\"nav nav-second-level\">--}}\n{{--                    <li><a href=\"{{url('admin/dashboard')}}\">Dashboard</a></li>--}}\n{{--                </ul>--}}\n            </li>\n            <li>\n                <a href=\"{{url('admin/access-token')}}\"><i class=\"fa fa-diamond\"></i> <span class=\"nav-label\">Access Token</span> <span class=\"label label-primary pull-right\">NEW</span></a>\n            </li>\n\n{{--            <li>--}}\n{{--                <a href=\"mailbox.html\"><i class=\"fa fa-envelope\"></i> <span class=\"nav-label\">Mailbox </span><span class=\"label label-warning pull-right\">16/24</span></a>--}}\n{{--                <ul class=\"nav nav-second-level\">--}}\n{{--                    <li><a href=\"mailbox.html\">Inbox</a></li>--}}\n{{--                    <li><a href=\"mail_detail.html\">Email view</a></li>--}}\n{{--                    <li><a href=\"mail_compose.html\">Compose email</a></li>--}}\n{{--                    <li><a href=\"email_template.html\">Email templates</a></li>--}}\n{{--                </ul>--}}\n{{--            </li>--}}\n            <li>\n                <a href=\"{{url('admin/pricing')}}\"><i class=\"fa fa-flask\"></i> <span class=\"nav-label\">Pricing</span> </a>\n            </li>\n            <li>\n                <a href=\"#\"><i class=\"fa fa-people\"></i> <span class=\"nav-label\">Profile</span> </a>\n            </li>\n\n\n            <li class=\"special_link\">\n                <a href=\"#\"><i class=\"fa fa-database\"></i> <span class=\"nav-label\">Package</span></a>\n            </li>\n        </ul>\n\n    </div>\n</nav>\n"
  },
  {
    "path": "resources/views/admin/layouts/partials/_top_toolbar.blade.php",
    "content": "<?php\n/**\n * Created by PhpStorm.\n * User: Gathem\n * Date: 6/07/2021\n * Time: 8:44 PM\n */?>\n<div class=\"row border-bottom\">\n    <nav class=\"navbar navbar-static-top white-bg\" role=\"navigation\" style=\"margin-bottom: 0\">\n        <div class=\"navbar-header\">\n            <a class=\"navbar-minimalize minimalize-styl-2 btn btn-primary \" href=\"#\"><i class=\"fa fa-bars\"></i> </a>\n            <form role=\"search\" class=\"navbar-form-custom\"  action=\"#\">\n                <div class=\"form-group\">\n                    <input type=\"text\" placeholder=\"Search for something...\" class=\"form-control\" name=\"top-search\" id=\"top-search\">\n                </div>\n            </form>\n        </div>\n        <ul class=\"nav navbar-top-links navbar-right\">\n            <li>\n                <span class=\"m-r-sm text-muted welcome-message\">Welcome to QBoard Endpoints.</span>\n            </li>\n{{--            <li class=\"dropdown\">--}}\n{{--                <a class=\"dropdown-toggle count-info\" data-toggle=\"dropdown\" href=\"#\">--}}\n{{--                    <i class=\"fa fa-envelope\"></i>  <span class=\"label label-warning\">16</span>--}}\n{{--                </a>--}}\n{{--                <ul class=\"dropdown-menu dropdown-messages\">--}}\n{{--                    <li>--}}\n{{--                        <div class=\"dropdown-messages-box\">--}}\n{{--                            <a href=\"profile.html\" class=\"pull-left\">--}}\n{{--                                <img alt=\"image\" class=\"img-circle\" src=\"img/a7.jpg\">--}}\n{{--                            </a>--}}\n{{--                            <div>--}}\n{{--                                <small class=\"pull-right\">46h ago</small>--}}\n{{--                                <strong>Mike Loreipsum</strong> started following <strong>Monica Smith</strong>. <br>--}}\n{{--                                <small class=\"text-muted\">3 days ago at 7:58 pm - 10.06.2014</small>--}}\n{{--                            </div>--}}\n{{--                        </div>--}}\n{{--                    </li>--}}\n{{--                    <li class=\"divider\"></li>--}}\n{{--                    <li>--}}\n{{--                        <div class=\"dropdown-messages-box\">--}}\n{{--                            <a href=\"profile.html\" class=\"pull-left\">--}}\n{{--                                <img alt=\"image\" class=\"img-circle\" src=\"img/a4.jpg\">--}}\n{{--                            </a>--}}\n{{--                            <div>--}}\n{{--                                <small class=\"pull-right text-navy\">5h ago</small>--}}\n{{--                                <strong>Chris Johnatan Overtunk</strong> started following <strong>Monica Smith</strong>. <br>--}}\n{{--                                <small class=\"text-muted\">Yesterday 1:21 pm - 11.06.2014</small>--}}\n{{--                            </div>--}}\n{{--                        </div>--}}\n{{--                    </li>--}}\n{{--                    <li class=\"divider\"></li>--}}\n{{--                    <li>--}}\n{{--                        <div class=\"dropdown-messages-box\">--}}\n{{--                            <a href=\"profile.html\" class=\"pull-left\">--}}\n{{--                                <img alt=\"image\" class=\"img-circle\" src=\"img/profile.jpg\">--}}\n{{--                            </a>--}}\n{{--                            <div>--}}\n{{--                                <small class=\"pull-right\">23h ago</small>--}}\n{{--                                <strong>Monica Smith</strong> love <strong>Kim Smith</strong>. <br>--}}\n{{--                                <small class=\"text-muted\">2 days ago at 2:30 am - 11.06.2014</small>--}}\n{{--                            </div>--}}\n{{--                        </div>--}}\n{{--                    </li>--}}\n{{--                    <li class=\"divider\"></li>--}}\n{{--                    <li>--}}\n{{--                        <div class=\"text-center link-block\">--}}\n{{--                            <a href=\"mailbox.html\">--}}\n{{--                                <i class=\"fa fa-envelope\"></i> <strong>Read All Messages</strong>--}}\n{{--                            </a>--}}\n{{--                        </div>--}}\n{{--                    </li>--}}\n{{--                </ul>--}}\n{{--            </li>--}}\n{{--            <li class=\"dropdown\">--}}\n{{--                <a class=\"dropdown-toggle count-info\" data-toggle=\"dropdown\" href=\"#\">--}}\n{{--                    <i class=\"fa fa-bell\"></i>  <span class=\"label label-primary\">8</span>--}}\n{{--                </a>--}}\n{{--                <ul class=\"dropdown-menu dropdown-alerts\">--}}\n{{--                    <li>--}}\n{{--                        <a href=\"mailbox.html\">--}}\n{{--                            <div>--}}\n{{--                                <i class=\"fa fa-envelope fa-fw\"></i> You have 16 messages--}}\n{{--                                <span class=\"pull-right text-muted small\">4 minutes ago</span>--}}\n{{--                            </div>--}}\n{{--                        </a>--}}\n{{--                    </li>--}}\n{{--                    <li class=\"divider\"></li>--}}\n{{--                    <li>--}}\n{{--                        <a href=\"profile.html\">--}}\n{{--                            <div>--}}\n{{--                                <i class=\"fa fa-twitter fa-fw\"></i> 3 New Followers--}}\n{{--                                <span class=\"pull-right text-muted small\">12 minutes ago</span>--}}\n{{--                            </div>--}}\n{{--                        </a>--}}\n{{--                    </li>--}}\n{{--                    <li class=\"divider\"></li>--}}\n{{--                    <li>--}}\n{{--                        <a href=\"grid_options.html\">--}}\n{{--                            <div>--}}\n{{--                                <i class=\"fa fa-upload fa-fw\"></i> Server Rebooted--}}\n{{--                                <span class=\"pull-right text-muted small\">4 minutes ago</span>--}}\n{{--                            </div>--}}\n{{--                        </a>--}}\n{{--                    </li>--}}\n{{--                    <li class=\"divider\"></li>--}}\n{{--                    <li>--}}\n{{--                        <div class=\"text-center link-block\">--}}\n{{--                            <a href=\"notifications.html\">--}}\n{{--                                <strong>See All Alerts</strong>--}}\n{{--                                <i class=\"fa fa-angle-right\"></i>--}}\n{{--                            </a>--}}\n{{--                        </div>--}}\n{{--                    </li>--}}\n{{--                </ul>--}}\n{{--            </li>--}}\n\n\n            <li>\n                <a href=\"{{route('logout')}}\">\n                    <i class=\"fa fa-sign-out\"></i> Log out\n                </a>\n            </li>\n        </ul>\n\n    </nav>\n    @include('flash::message')\n</div>\n"
  },
  {
    "path": "resources/views/admin/subscription/billing.blade.php",
    "content": "\n@extends('admin.layouts.base')\n\n@section('content')\n    <div id=\"wrapper\">\n        @include('admin.layouts.partials._sidebar')\n\n        <div id=\"page-wrapper\" class=\"gray-bg\">\n            @include('admin.layouts.partials._top_toolbar')\n            <div class=\"wrapper wrapper-content\">\n\n                <div class=\"wrapper wrapper-content animated fadeInRight\">\n                    <div class=\"row\">\n                        <div class=\"col-lg-4\">\n                            <div class=\"contact-box\">\n                                <div class=\"col-sm-12\">\n                                    <h2><strong>Access Plan</strong></h2>\n                                    <p>{{formatNumber($pricing[0]['unit_limit'])}} free API calls</p>\n                                    <p>Default units: {{formatNumber($pricing[0]['default_unit'])}}</p>\n                                    <p>Bonus units: {{formatNumber($pricing[0]['bonus_unit'])}}</p>\n                                    <h3>Price: FREE</h3>\n                                </div>\n                                <div class=\"clearfix\"></div>\n                            </div>\n                        </div>\n\n                        <div class=\"col-lg-4\">\n                            <div class=\"contact-box\">\n                                <div class=\"col-sm-12\">\n                                    <h2><strong>Basic Plan</strong></h2>\n                                    <p>{{formatNumber($pricing[1]['unit_limit'])}} API calls</p>\n                                    <p>Default units: {{formatNumber($pricing[1]['default_unit'])}}</p>\n                                    <p>Bonus units: {{formatNumber($pricing[1]['bonus_unit'])}}</p>\n                                    <h3>Price: ₦{{formatNumber($pricing[1]['price'] )}}</h3>\n                                    <h3/>\n                                    <p onclick=\"payWithPaystack({{$pricing[1]['price']}},{{$pricing[1]['id']}})\" class=\"btn btn-sm btn-primary m-t-n-xs\" type=\"button\"><strong>Buy Now</strong></p>\n\n                                </div>\n                                <div class=\"clearfix\"></div>\n                            </div>\n                        </div>\n                        <div class=\"col-lg-4\">\n                            <div class=\"contact-box\">\n                                <div class=\"col-sm-12\">\n                                    <h2><strong>Huge Plan</strong></h2>\n                                    <p>{{ formatNumber($pricing[2]['unit_limit'])}} API calls</p>\n                                    <p>Default units: {{ formatNumber($pricing[2]['default_unit'])}}</p>\n                                    <p>Bonus units: {{ formatNumber($pricing[2]['bonus_unit'])}}</p>\n                                    <h3>Price: ₦{{ formatNumber($pricing[2]['price'])}}</h3>\n                                    <h3/>\n                                    <p onclick=\"payWithPaystack({{$pricing[2]['price']}}, {{$pricing[2]['id']}})\" class=\"btn btn-sm btn-primary m-t-n-xs\" type=\"button\"><strong>Buy Now</strong></p>\n\n                                </div>\n\n                                <div class=\"clearfix\"></div>\n\n                            </div>\n\n\n                        </div>\n\n                    </div>\n\n                    </div>\n\n                 @include('admin.layouts.partials._footer_note')\n\n        </div>\n    </div>\n\n\n@stop\n@section('scripts')\n    <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js\"></script>\n    <script src=\"https://js.paystack.co/v1/inline.js\"></script>\n    <script src=\"{{env('PAYSTACK_URL')}}\"></script>\n    @php  $email = auth()->user()->email;\n        $name = auth()->user()->name;\n    @endphp\n    <script>\n\n\n        function payWithPaystack(amount, plan){\n            var handler = PaystackPop.setup({\n                key: '{{env('PAYSTACK_PUBLIC_KEY')}}',\n                email: '{{$email}}',\n                amount: amount*100,\n                currency: \"NGN\",\n                metadata: {\n                    custom_fields: [\n                        {\n                            display_name: \"{{$name}}\",\n                        }\n                    ]\n                },\n                callback: function(response){\n                    //alert('success. transaction ref is ' + response.reference);\n                    console.log(response);\n                    var url = \"{{url('/admin/pricing/paystack/callback')}}\"\n                    var name = \"{{$name}}\"\n                    var email = \"{{$email}}\"\n                    var data = { amount: amount, name: \"{{$name}}\", paystack_ref:response.reference, email:\"{{$email}}\", \"_token\": \"{{ csrf_token() }}\"}\n                    console.log(data);\n                    window.location.href = \"/admin/pricing/paystack/callback?amount=\"+amount+\"&plan=\"+plan+\"&name=\"+name+\"&transReference=\"+response.reference;\n                },\n                onClose: function(){\n                    alert('window closed');\n                }\n            });\n            handler.openIframe();\n        }\n    </script>\n@endsection\n\n"
  },
  {
    "path": "resources/views/landing/auth/forget_password.blade.php",
    "content": "\n@extends('landing.layouts.base')\n\n@section('content')\n\n\n  <div class=\"site-wrap\">\n\n    <div class=\"site-mobile-menu site-navbar-target\">\n      <div class=\"site-mobile-menu-header\">\n        <div class=\"site-mobile-menu-close mt-3\">\n          <span class=\"icon-close2 js-menu-toggle\"></span>\n        </div>\n      </div>\n      <div class=\"site-mobile-menu-body\"></div>\n    </div>\n\n      @include('landing.layouts.partials._header_note2')\n\n\n    <div class=\"intro-section\" id=\"home-section\">\n\n      <div class=\"slide-1\" style=\"background-image: url('images/hero_1.jpg');\" data-stellar-background-ratio=\"0.5\">\n        <div class=\"container\">\n          <div class=\"row align-items-center\">\n            <div class=\"col-12\">\n              <div class=\"row align-items-center\">\n                <div class=\"col-lg-6 mb-4\">\n                  <h1  data-aos=\"fade-up\" data-aos-delay=\"100\">7,000 free Past Questions API calls</h1>\n                  <p class=\"mb-4\"  data-aos=\"fade-up\" data-aos-delay=\"200\">Make API calls to get major Nigeria exams past questions.</p>\n                    <p class=\"mb-4\"  data-aos=\"fade-up\" data-aos-delay=\"200\">UTME | WASSCE | POST-UTME | ALOC GAMES</p>\n                    <p data-aos=\"fade-up\" data-aos-delay=\"300\"><a href=\"#\" class=\"btn btn-primary py-3 px-5 btn-pill\">Start Now</a></p>\n\n                </div>\n\n                <div class=\"col-lg-5 ml-auto\" data-aos=\"fade-up\" data-aos-delay=\"500\">\n                  <form action=\"{{ route('forget.password.post') }}\" method=\"post\" class=\"form-box\"  >\n                      @include('flash::message')\n                      @csrf\n                    <h3 class=\"h4 text-black mb-4\">Forgot Password\n                        <h6></h6>\n                    <div class=\"form-group\">\n                      <input type=\"text\" class=\"form-control\" name=\"email\"  value=\"{!! old('email') !!}\" placeholder=\"Email Address\" required>\n                    </div>\n                    @foreach($errors->get('email') as $message)\n                        <span class=\"btn-danger small\">{{$message}}</span>\n                    @endforeach\n\n                    <div class=\"form-group\">\n                      <input type=\"submit\" class=\"btn btn-primary btn-pill\" value=\"Send Password Reset Link\">\n                    </div>\n                  </form>\n\n                </div>\n\n              </div>\n            </div>\n\n          </div>\n        </div>\n      </div>\n    </div>\n\n\n\n\n\n    <div class=\"site-section bg-light\" id=\"contact-section\">\n      <div class=\"container\">\n\n        <div class=\"row justify-content-center\">\n          <div class=\"col-md-7\">\n\n\n\n            <h2 class=\"section-title mb-3\">Contact Us</h2>\n            <p class=\"mb-5\">Over 5,483,149 API questions request has been made to this library. Do you have questions you want to add to this database? We are excited to receive your mail at aloc.mass@gmail.com</p>\n\n\n          </div>\n        </div>\n      </div>\n    </div>\n\n\n  @include('landing.layouts.partials._footer_note')\n\n\n\n@stop\n"
  },
  {
    "path": "resources/views/landing/auth/forget_password_link.blade.php",
    "content": "\n@extends('landing.layouts.base')\n\n@section('content')\n\n\n    <div class=\"site-wrap\">\n\n        <div class=\"site-mobile-menu site-navbar-target\">\n            <div class=\"site-mobile-menu-header\">\n                <div class=\"site-mobile-menu-close mt-3\">\n                    <span class=\"icon-close2 js-menu-toggle\"></span>\n                </div>\n            </div>\n            <div class=\"site-mobile-menu-body\"></div>\n        </div>\n\n        @include('landing.layouts.partials._header_note2')\n\n\n        <div class=\"intro-section\" id=\"home-section\">\n\n            <div class=\"slide-1\" style=\"background-image: url('images/hero_1.jpg');\" data-stellar-background-ratio=\"0.5\">\n                <div class=\"container\">\n                    <div class=\"row align-items-center\">\n                        <div class=\"col-12\">\n                            <div class=\"row align-items-center\">\n                                <div class=\"col-lg-6 mb-4\">\n                                    <h1  data-aos=\"fade-up\" data-aos-delay=\"100\">7,000 free Past Questions API calls</h1>\n                                    <p class=\"mb-4\"  data-aos=\"fade-up\" data-aos-delay=\"200\">Make API calls to get major Nigeria exams past questions.</p>\n                                    <p class=\"mb-4\"  data-aos=\"fade-up\" data-aos-delay=\"200\">UTME | WASSCE | POST-UTME | ALOC GAMES</p>\n                                    <p data-aos=\"fade-up\" data-aos-delay=\"300\"><a href=\"#\" class=\"btn btn-primary py-3 px-5 btn-pill\">Start Now</a></p>\n\n                                </div>\n\n                                <div class=\"col-lg-5 ml-auto\" data-aos=\"fade-up\" data-aos-delay=\"500\">\n                                    <form action=\"{{ route('reset.password.post') }}\" method=\"post\" class=\"form-box\"  >\n                                        @include('flash::message')\n                                        @csrf\n                                        <h3 class=\"h4 text-black mb-4\">Reset Password\n                                            <h6></h6>\n                                            <div class=\"form-group\">\n                                                <input type=\"text\" class=\"form-control\" name=\"email\"  value=\"{!! old('email') !!}\" placeholder=\"Email Address\" required>\n                                            </div>\n                                            @foreach($errors->get('email') as $message)\n                                                <span class=\"btn-danger small\">{{$message}}</span>\n                                            @endforeach\n\n                                            <div class=\"form-group\">\n                                                <input type=\"password\" class=\"form-control\" name=\"password\"  value=\"{!! old('password') !!}\" placeholder=\"Password\" required>\n                                            </div>\n                                            @foreach($errors->get('password') as $message)\n                                                <span class=\"btn-danger small\">{{$message}}</span>\n                                            @endforeach\n\n                                            <div class=\"form-group\">\n                                                <input type=\"password\" class=\"form-control\" name=\"password_confirmation\"  placeholder=\"Password Confirm\" required>\n                                            </div>\n                                            @foreach($errors->get('password_confirmation') as $message)\n                                                <span class=\"btn-danger small\">{{$message}}</span>\n                                            @endforeach\n\n                                            <input type=\"hidden\" name=\"token\" value=\"{{ $token }}\">\n\n                                            <div class=\"form-group\">\n                                                <input type=\"submit\" class=\"btn btn-primary btn-pill\" value=\"Reset Password\">\n                                            </div>\n                                    </form>\n\n                                </div>\n\n                            </div>\n                        </div>\n\n                    </div>\n                </div>\n            </div>\n        </div>\n\n\n\n\n\n        <div class=\"site-section bg-light\" id=\"contact-section\">\n            <div class=\"container\">\n\n                <div class=\"row justify-content-center\">\n                    <div class=\"col-md-7\">\n\n\n\n                        <h2 class=\"section-title mb-3\">Contact Us</h2>\n                        <p class=\"mb-5\">Over 5,483,149 API questions request has been made to this library. Do you have questions you want to add to this database? We are excited to receive your mail at aloc.mass@gmail.com</p>\n\n\n                    </div>\n                </div>\n            </div>\n        </div>\n\n\n    @include('landing.layouts.partials._footer_note')\n\n\n\n@stop\n"
  },
  {
    "path": "resources/views/landing/auth/signup.blade.php",
    "content": "\n@extends('landing.layouts.base')\n\n@section('content')\n\n\n  <div class=\"site-wrap\">\n\n    <div class=\"site-mobile-menu site-navbar-target\">\n      <div class=\"site-mobile-menu-header\">\n        <div class=\"site-mobile-menu-close mt-3\">\n          <span class=\"icon-close2 js-menu-toggle\"></span>\n        </div>\n      </div>\n      <div class=\"site-mobile-menu-body\"></div>\n    </div>\n\n      @include('landing.layouts.partials._header_note2')\n\n\n    <div class=\"intro-section\" id=\"home-section\">\n\n      <div class=\"slide-1\" style=\"background-image: url('images/hero_1.jpg');\" data-stellar-background-ratio=\"0.5\">\n        <div class=\"container\">\n          <div class=\"row align-items-center\">\n            <div class=\"col-12\">\n              <div class=\"row align-items-center\">\n                <div class=\"col-lg-6 mb-4\">\n                  <h1  data-aos=\"fade-up\" data-aos-delay=\"100\">7,000 free Past Questions API calls</h1>\n                  <p class=\"mb-4\"  data-aos=\"fade-up\" data-aos-delay=\"200\">Make API calls to get major Nigeria exams past questions.</p>\n                    <p class=\"mb-4\"  data-aos=\"fade-up\" data-aos-delay=\"200\">UTME | WASSCE | POST-UTME | ALOC GAMES</p>\n                    <p data-aos=\"fade-up\" data-aos-delay=\"300\"><a href=\"#\" class=\"btn btn-primary py-3 px-5 btn-pill\">Start Now</a></p>\n\n                </div>\n\n                <div class=\"col-lg-5 ml-auto\" data-aos=\"fade-up\" data-aos-delay=\"500\">\n                  <form action=\"{{route('signup')}}\" method=\"post\" class=\"form-box\"  >\n                      @include('flash::message')\n                      @csrf\n                    <h3 class=\"h4 text-black mb-4\">Sign Up\n                        <h6></h6>\n                    <div class=\"form-group\">\n                        <input type=\"text\" class=\"form-control\" name=\"name\"  value=\"{!! old('name') !!}\" placeholder=\"Full Name\" required>\n                    </div>\n                    @foreach($errors->get('name') as $message)\n                        <span class=\"btn-danger  small\">{{$message}}</span>\n                    @endforeach\n\n                    <div class=\"form-group\">\n                      <input type=\"text\" class=\"form-control\" name=\"email\"  value=\"{!! old('email') !!}\" placeholder=\"Email Address\" required>\n                    </div>\n                    @foreach($errors->get('email') as $message)\n                        <span class=\"btn-danger small\">{{$message}}</span>\n                    @endforeach\n\n                    <div class=\"form-group\">\n                      <input type=\"password\" class=\"form-control\" name=\"password\" placeholder=\"Password\" required>\n                    </div>\n                    @foreach($errors->get('password') as $message)\n                        <span class=\"btn-danger\">{{$message}}</span>\n                    @endforeach\n{{--                    <div class=\"form-group mb-4\">--}}\n{{--                      <input type=\"password\" class=\"form-control\" placeholder=\"Re-type Password\">--}}\n{{--                    </div>--}}\n                    <div class=\"form-group\">\n                      <input type=\"submit\" class=\"btn btn-primary btn-pill\" value=\"Sign up\">\n                    </div>\n                  </form>\n\n                </div>\n\n              </div>\n            </div>\n\n          </div>\n        </div>\n      </div>\n    </div>\n\n\n\n\n\n    <div class=\"site-section bg-light\" id=\"contact-section\">\n      <div class=\"container\">\n\n        <div class=\"row justify-content-center\">\n          <div class=\"col-md-7\">\n\n\n\n            <h2 class=\"section-title mb-3\">Contact Us</h2>\n            <p class=\"mb-5\">Over 5,483,149 API questions request has been made to this library. Do you have questions you want to add to this database? We are excited to receive your mail at aloc.mass@gmail.com</p>\n\n\n          </div>\n        </div>\n      </div>\n    </div>\n\n\n  @include('landing.layouts.partials._footer_note')\n\n\n\n@stop\n"
  },
  {
    "path": "resources/views/landing/emails/forget_password.blade.php",
    "content": "<!doctype html>\n<html lang=\"en-US\">\n\n<head>\n    <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\" />\n    <title>Reset Password Email</title>\n    <meta name=\"description\" content=\"Reset Password Email.\">\n    <style type=\"text/css\">\n        a:hover {text-decoration: underline !important;}\n    </style>\n</head>\n\n<body marginheight=\"0\" topmargin=\"0\" marginwidth=\"0\" style=\"margin: 0px; background-color: #f2f3f8;\" leftmargin=\"0\">\n<!--100% body table-->\n<table cellspacing=\"0\" border=\"0\" cellpadding=\"0\" width=\"100%\" bgcolor=\"#f2f3f8\"\n       style=\"@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,700|Open+Sans:300,400,600,700); font-family: 'Open Sans', sans-serif;\">\n    <tr>\n        <td>\n            <table style=\"background-color: #f2f3f8; max-width:670px;  margin:0 auto;\" width=\"100%\" border=\"0\"\n                   align=\"center\" cellpadding=\"0\" cellspacing=\"0\">\n                <tr>\n                    <td style=\"height:80px;\">&nbsp;</td>\n                </tr>\n<!--                <tr>-->\n<!--                    <td style=\"text-align:center;\">-->\n<!--                        <a href=\"https://rakeshmandal.com\" title=\"logo\" target=\"_blank\">-->\n<!--                            <img width=\"60\" src=\"https://i.ibb.co/hL4XZp2/android-chrome-192x192.png\" title=\"logo\" alt=\"logo\">-->\n<!--                        </a>-->\n<!--                    </td>-->\n<!--                </tr>-->\n                <tr>\n                    <td style=\"height:20px;\">&nbsp;</td>\n                </tr>\n                <tr>\n                    <td>\n                        <table width=\"95%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\"\n                               style=\"max-width:670px;background:#fff; border-radius:3px; -webkit-box-shadow:0 6px 18px 0 rgba(0,0,0,.06);-moz-box-shadow:0 6px 18px 0 rgba(0,0,0,.06);box-shadow:0 6px 18px 0 rgba(0,0,0,.06);\">\n                            <tr>\n                                <td style=\"height:40px;\">&nbsp;</td>\n                            </tr>\n                            <tr>\n                                <td style=\"padding:0 35px;\">\n                                    <h1 style=\"color:#1e1e2d; font-weight:500; margin:0;font-size:32px;font-family:'Rubik',sans-serif;\">Hello!</h1>\n                                    <span\n                                        style=\"display:inline-block; vertical-align:middle; margin:29px 0 26px; border-bottom:1px solid #cecece; width:100px;\"></span>\n                                    <p style=\"color:#455056; font-size:15px;line-height:24px; margin:0;\">\n                                        You are receiving  this email because we received a password reset request for your account.\n\n                                    </p>\n                                    <div align=\"center\" >\n                                        <a href=\"{{ route('reset.password.get', $token) }}\"\n                                           style=\" background:#9a76ef;text-decoration:none !important; font-weight:500; margin-top:40px; margin-bottom:20px; color:#fff;text-transform:uppercase; font-size:14px;padding:10px 24px;display:inline-block;border-radius:50px;\">Reset\n                                            Password</a>\n                                    </div>\n\n\n                                    <p style=\"color:#455056; font-size:15px;line-height:24px; margin:0; margin-top:20px\">\n                                        This password reset link expire in 60 minutes. If you did not request a password reset, no further action is required.\n                                    </p>\n\n                                    <p style=\"color:#455056; font-size:15px;line-height:24px; margin:0; margin-top:40px;\">\n                                        Best Regards<br/>\n                                        Mama\n\n                                    </p>\n                                    <hr/>\n                                    <p style=\"color:#848588; font-size:14px;line-height:24px; margin:0; margin-top:20px\">\n                                        If you’re having trouble clicking the “Reset Password” button, copy and paste the URL below into your we browser {{ route('reset.password.get', $token) }}\n                                    </p>\n\n                                </td>\n                            </tr>\n                            <tr>\n                                <td style=\"height:40px;\">&nbsp;</td>\n                            </tr>\n                        </table>\n                    </td>\n                <tr>\n                    <td style=\"height:20px;\">&nbsp;</td>\n                </tr>\n                <tr>\n                    <td style=\"text-align:center;\">\n                        <p style=\"font-size:14px; color:rgba(69, 80, 86, 0.7411764705882353); line-height:18px; margin:0 0 0;\">&copy; <strong>www.aloc.ng</strong></p>\n                    </td>\n                </tr>\n                <tr>\n                    <td style=\"height:80px;\">&nbsp;</td>\n                </tr>\n            </table>\n        </td>\n    </tr>\n</table>\n<!--/100% body table-->\n</body>\n\n</html>\n"
  },
  {
    "path": "resources/views/landing/index.blade.php",
    "content": "\n@extends('landing.layouts.base')\n\n@section('content')\n\n\n  <div class=\"site-wrap\">\n\n    <div class=\"site-mobile-menu site-navbar-target\">\n      <div class=\"site-mobile-menu-header\">\n        <div class=\"site-mobile-menu-close mt-3\">\n          <span class=\"icon-close2 js-menu-toggle\"></span>\n        </div>\n      </div>\n      <div class=\"site-mobile-menu-body\"></div>\n    </div>\n\n      @include('landing.layouts.partials._header_note')\n\n\n    <div class=\"intro-section\" id=\"home-section\">\n\n      <div class=\"slide-1\" style=\"background-image: url('images/hero_1.jpg');\" data-stellar-background-ratio=\"0.5\">\n        <div class=\"container\">\n          <div class=\"row align-items-center\">\n            <div class=\"col-12\">\n              <div class=\"row align-items-center\">\n                <div class=\"col-lg-6 mb-4\">\n                  <h1  data-aos=\"fade-up\" data-aos-delay=\"100\">Access 20,000 Past Questions</h1>\n                  <p class=\"mb-4\"  data-aos=\"fade-up\" data-aos-delay=\"200\">Make API calls to get major Nigeria exams past questions.</p>\n                    <p class=\"mb-4\"  data-aos=\"fade-up\" data-aos-delay=\"200\">UTME | WASSCE | POST-UTME | ALOC GAMES</p>\n                    <p data-aos=\"fade-up\" data-aos-delay=\"300\"><a href=\"{{url('secure/signup')}}\" class=\"btn btn-primary py-3 px-5 btn-pill\">Start Now</a></p>\n\n                </div>\n\n                <div class=\"col-lg-5 ml-auto\" data-aos=\"fade-up\" data-aos-delay=\"500\">\n                  <form action=\"{{route('login')}}\" method=\"post\" class=\"form-box\"  >\n                      @include('flash::message')\n                      @csrf\n                    <h3 class=\"h4 text-black mb-4\">Login\n                        <h6></h6>\n\n                    <div class=\"form-group\">\n                      <input type=\"text\" class=\"form-control\" name=\"email\"  value=\"{!! old('email') !!}\" placeholder=\"Email Address\" required>\n                    </div>\n                    @foreach($errors->get('email') as $message)\n                        <span class=\"btn-danger small\">{{$message}}</span>\n                    @endforeach\n\n                    <div class=\"form-group\">\n                      <input type=\"password\" class=\"form-control\" name=\"password\" placeholder=\"Password\" required>\n                    </div>\n                    @foreach($errors->get('password') as $message)\n                        <span class=\"btn-danger\">{{$message}}</span>\n                    @endforeach\n{{--                    <div class=\"form-group mb-4\">--}}\n{{--                      <input type=\"password\" class=\"form-control\" placeholder=\"Re-type Password\">--}}\n{{--                    </div>--}}\n                    <div class=\"form-group\">\n                      <input type=\"submit\" class=\"btn btn-primary btn-pill\" value=\"Submit\">\n                    </div>\n                        <p style=\"color:lightslategrey\"><a href=\"{{url('secure/forget-password')}}\">Forgot Password</a></p>\n                  </form>\n\n                </div>\n              </div>\n            </div>\n\n          </div>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"site-section\" id=\"programs-section\">\n      <div class=\"container\">\n        <div class=\"row mb-5 justify-content-center\">\n          <div class=\"col-lg-7 text-center\"  data-aos=\"fade-up\" data-aos-delay=\"\">\n            <h2 class=\"section-title\">Leverage on our APIs</h2>\n            <p>Focus on building great apps for students with unlimited access to trivial questions of major exams in Nigeria!</p>\n          </div>\n        </div>\n        <div class=\"row mb-5 align-items-center\">\n          <div class=\"col-lg-7 mb-5\" data-aos=\"fade-up\" data-aos-delay=\"100\">\n            <img src=\"{{url('landing/images/api_question_sample.png')}}\" alt=\"Image\" class=\"img-fluid\">\n          </div>\n          <div class=\"col-lg-4 ml-auto\" data-aos=\"fade-up\" data-aos-delay=\"200\">\n            <h2 class=\"text-black mb-4\">How to get started</h2>\n            <p class=\"mb-4\">Create a free account today and an Access Token will be generated for you to communicate with our REST APIs.</p>\n\n              <p class=\"mb-4\">Add the access token as header when calling our APIs. <a href=\"https://github.com/Seunope/aloc-endpoints\" target=\"_blank\">API endpoints documentation is here.</a></p>\n\n          </div>\n        </div>\n\n        <div class=\"row mb-5 align-items-center\">\n          <div class=\"col-lg-7 mb-5 order-1 order-lg-2\" data-aos=\"fade-up\" data-aos-delay=\"100\">\n            <img src=\"{{url('landing/images/test.jpg')}}\" alt=\"Image\" class=\"img-fluid\">\n          </div>\n          <div class=\"col-lg-4 mr-auto order-2 order-lg-1\" data-aos=\"fade-up\" data-aos-delay=\"200\">\n            <h2 class=\"text-black mb-4\">Exam supported</h2>\n            <p class=\"mb-4\">We have questions for three major exams in Nigeria</p>\n\n            <div class=\"d-flex align-items-center custom-icon-wrap mb-3\">\n              <span class=\"custom-icon-inner mr-3\"><span class=\"icon icon-graduation-cap\"></span></span>\n              <div><h3 class=\"m-0\">UTME</h3></div>\n            </div>\n\n            <div class=\"d-flex align-items-center custom-icon-wrap\">\n              <span class=\"custom-icon-inner mr-3\"><span class=\"icon icon-university\"></span></span>\n              <div><h3 class=\"m-0\"> WASSCE (limited)</h3></div>\n            </div>\n\n              <div class=\"d-flex align-items-center custom-icon-wrap mb-3\">\n                  <span class=\"custom-icon-inner mr-3\"><span class=\"icon icon-graduation-cap\"></span></span>\n                  <div><h3 class=\"m-0\">Post-UTME (very limited)</h3></div>\n              </div>\n\n          </div>\n        </div>\n\n        <div class=\"row mb-5 align-items-center\">\n          <div class=\"col-lg-7 mb-5\" data-aos=\"fade-up\" data-aos-delay=\"100\">\n            <img src=\"{{url('landing/images/brainstorm.jpg')}}\" alt=\"Image\" class=\"img-fluid\">\n          </div>\n          <div class=\"col-lg-4 ml-auto\" data-aos=\"fade-up\" data-aos-delay=\"200\">\n            <h2 class=\"text-black mb-4\">Years Supported</h2>\n            <p class=\"mb-4\">This depends on the subject, but please note, the years varies from 2001 to 2020</p>\n\n          </div>\n        </div>\n\n      </div>\n    </div>\n\n    <div class=\"site-section\" id=\"pricing-section\">\n      <div class=\"container\">\n\n        <div class=\"row mb-5 justify-content-center\">\n          <div class=\"col-lg-7 mb-5 text-center\"  data-aos=\"fade-up\" data-aos-delay=\"\">\n            <h2 class=\"section-title\">Our Pricing</h2>\n            <p class=\"mb-5\">Create a free account and get authorization token to talk to our past questions endpoints remotely</p>\n          </div>\n        </div>\n\n        <div class=\"row\">\n\n          <div class=\"col-md-6 col-lg-4 mb-4\" data-aos=\"fade-up\" data-aos-delay=\"100\">\n            <div class=\"teacher text-center\">\n{{--              <img src=\"{{url('landing/images/person_1.jpg')}}\" alt=\"Image\" class=\"img-fluid w-50 rounded-circle mx-auto mb-4\">--}}\n              <div class=\"py-2\">\n                <h3 class=\"text-black\">Access Plan</h3>\n                <p class=\"position\">7,000 free API calls</p>\n                <p>Default units: 5,000 </p>\n                  <p>Bonus units: 2,000 </p>\n                  <p>Price: FREE </p>\n              </div>\n            </div>\n          </div>\n\n          <div class=\"col-md-6 col-lg-4 mb-4\" data-aos=\"fade-up\" data-aos-delay=\"200\">\n            <div class=\"teacher text-center\">\n{{--              <img src=\"{{url('landing/images/person_2.jpg')}}\" alt=\"Image\" class=\"img-fluid w-50 rounded-circle mx-auto mb-4\">--}}\n              <div class=\"py-2\">\n                <h3 class=\"text-black\">Basic Plan</h3>\n                <p class=\"position\">10,0000 free API calls</p>\n                  <p>Default units: 10,000 </p>\n                  <p>Bonus units: 10,000 </p>\n                  <p>Price: ₦2,000 </p>\n              </div>\n            </div>\n          </div>\n\n          <div class=\"col-md-6 col-lg-4 mb-4\" data-aos=\"fade-up\" data-aos-delay=\"300\">\n            <div class=\"teacher text-center\">\n{{--              <img src=\"{{url('landing/images/person_3.jpg')}}\" alt=\"Image\" class=\"img-fluid w-50 rounded-circle mx-auto mb-4\">--}}\n              <div class=\"py-2\">\n                <h3 class=\"text-black\">Huge Plan</h3>\n                <p class=\"position\">Unlimited API calls</p>\n                  <p>Default units: 70,000 </p>\n                  <p>Bonus units: 50,000 </p>\n                  <p>Price: ₦5,000 </p>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"site-section bg-image overlay\" style=\"background-image: url('images/hero_1.jpg');\">\n      <div class=\"container\">\n        <div class=\"row justify-content-center align-items-center\">\n          <div class=\"col-md-8 text-center testimony\">\n            <img src=\"{{url('assets/aloc-shield.png')}}\" alt=\"Image\" class=\"img-fluid w-25 mb-4 rounded-circle\">\n            <h3 class=\"mb-4\">Supported By ALOC</h3>\n            <blockquote>\n              <p>&ldquo; ALOC is an adventure based CBT practice platform with an engaging game story that unravels as students’ progresses in game levels. We use gaming concepts to increase student practice time and grade &rdquo;</p>\n            </blockquote>\n          </div>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"site-section pb-0\" id=\"subjects-section\">\n\n      <div class=\"future-blobs\">\n        <div class=\"blob_2\">\n          <img src=\"{{url('landing/images/blob_2.svg')}}\" alt=\"Image\">\n        </div>\n        <div class=\"blob_1\">\n          <img src=\"{{url('landing/images/blob_1.svg')}}\" alt=\"Image\">\n        </div>\n      </div>\n      <div class=\"container\" >\n        <div class=\"row mb-5 justify-content-center\" data-aos=\"fade-up\" data-aos-delay=\"\">\n          <div class=\"col-lg-7 text-center\">\n            <h2 class=\"section-title\">Supported Subjects</h2>\n          </div>\n        </div>\n        <div class=\"row\">\n          <div class=\"col-lg-4 ml-auto align-self-start\"  data-aos=\"fade-up\" data-aos-delay=\"100\">\n\n            <P>We currently support 17 subjects</P>\n\n            <div class=\"p-4 rounded bg-white why-choose-us-box\">\n\n              <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light mb-3\">\n                <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-graduation-cap\"></span></span></div>\n                <div><h3 class=\"m-0\"> English language</h3></div>\n              </div>\n\n              <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light mb-3\">\n                <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-university\"></span></span></div>\n                <div><h3 class=\"m-0\">Mathematics</h3></div>\n              </div>\n\n              <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light mb-3\">\n                <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-graduation-cap\"></span></span></div>\n                <div><h3 class=\"m-0\">Commerce</h3></div>\n              </div>\n\n              <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light mb-3\">\n                <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-university\"></span></span></div>\n                <div><h3 class=\"m-0\">Accounting</h3></div>\n              </div>\n\n              <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light mb-3\">\n                <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-graduation-cap\"></span></span></div>\n                <div><h3 class=\"m-0\">Biology</h3></div>\n              </div>\n\n              <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light\">\n                <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-university\"></span></span></div>\n                <div><h3 class=\"m-0\">Physics</h3></div>\n              </div>\n\n                <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light mb-3\">\n                    <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-university\"></span></span></div>\n                    <div><h3 class=\"m-0\">Chemistry</h3></div>\n                </div>\n\n                <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light mb-3\">\n                    <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-graduation-cap\"></span></span></div>\n                    <div><h3 class=\"m-0\"> English literature</h3></div>\n                </div>\n\n                <div class=\"d-flex align-items-center custom-icon-wrap custom-icon-light\">\n                    <div class=\"mr-3\"><span class=\"custom-icon-inner\"><span class=\"icon icon-university\"></span></span></div>\n                    <div><h3 class=\"m-0\">more ...</h3></div>\n                </div>\n\n            </div>\n\n\n          </div>\n          <div class=\"col-lg-7 align-self-end\"  data-aos=\"fade-left\" data-aos-delay=\"200\">\n            <img src=\"{{url('landing/images/person_transparent.png')}}\" alt=\"Image\" class=\"img-fluid\">\n          </div>\n        </div>\n      </div>\n    </div>\n\n\n\n\n\n    <div class=\"site-section bg-light\" id=\"contact-section\">\n      <div class=\"container\">\n\n        <div class=\"row justify-content-center\">\n          <div class=\"col-md-7\">\n\n\n\n            <h2 class=\"section-title mb-3\">Contact Us</h2>\n            <p class=\"mb-5\">Over 6,854,170 API questions request has been made to this library. Do you have questions you want to add to this database? We are excited to receive your mail at aloc.mass@gmail.com</p>\n\n\n          </div>\n        </div>\n      </div>\n    </div>\n\n\n  @include('landing.layouts.partials._footer_note')\n\n\n\n@stop\n"
  },
  {
    "path": "resources/views/landing/layouts/base.blade.php",
    "content": "@include('landing/layouts/header')\n\n@yield('content')\n\n\n@include('landing/layouts/footer')"
  },
  {
    "path": "resources/views/landing/layouts/footer.blade.php",
    "content": "\n</div> <!-- .site-wrap -->\n\n<script src=\"{{url('landing/js/jquery-3.3.1.min.js')}}\"></script>\n<script src=\"{{url('landing/js/jquery-migrate-3.0.1.min.js')}}\"></script>\n<script src=\"{{url('landing/js/jquery-ui.js')}}\"></script>\n<script src=\"{{url('landing/js/popper.min.js')}}\"></script>\n<script src=\"{{url('landing/js/bootstrap.min.js')}}\"></script>\n<script src=\"{{url('landing/js/owl.carousel.min.js')}}\"></script>\n<script src=\"{{url('landing/js/jquery.stellar.min.js')}}\"></script>\n<script src=\"{{url('landing/js/jquery.countdown.min.js')}}\"></script>\n<script src=\"{{url('landing/js/bootstrap-datepicker.min.js')}}\"></script>\n<script src=\"{{url('landing/js/jquery.easing.1.3.js')}}\"></script>\n<script src=\"{{url('landing/js/aos.js')}}\"></script>\n<script src=\"{{url('landing/js/jquery.fancybox.min.js')}}\"></script>\n<script src=\"{{url('landing/js/jquery.sticky.js')}}\"></script>\n\n\n<script src=\"{{url('landing/js/main.js')}}\"></script>\n\n</body>\n</html>\n"
  },
  {
    "path": "resources/views/landing/layouts/header.blade.php",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <title>QBoard Endpoints &mdash; Questions</title>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\">\n\n\n    <link href=\"https://fonts.googleapis.com/css?family=Muli:300,400,700,900\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"{{url('landing/fonts/icomoon/style.css')}}\">\n\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/bootstrap.min.css')}}\">\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/jquery-ui.css')}}\">\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/owl.carousel.min.css')}}\">\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/owl.theme.default.min.css')}}\">\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/owl.theme.default.min.css')}}\">\n\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/jquery.fancybox.min.css')}}\">\n\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/bootstrap-datepicker.css')}}\">\n\n    <link rel=\"stylesheet\" href=\"{{url('landing/fonts/flaticon/font/flaticon.css')}}\">\n\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/aos.css')}}\">\n\n    <link rel=\"stylesheet\" href=\"{{url('landing/css/style.css')}}\">\n\n</head>\n<body data-spy=\"scroll\" data-target=\".site-navbar-target\" data-offset=\"300\">\n\n"
  },
  {
    "path": "resources/views/landing/layouts/partials/_footer_note.blade.php",
    "content": "<footer class=\"footer-section bg-white\">\n    <div class=\"container\">\n        <div class=\"row\">\n            <div class=\"col-md-4\">\n                <h3>Our Goal</h3>\n                <p>To have the largest open source database of various past questions in Nigeria.</p>\n            </div>\n\n            <div class=\"col-md-3 ml-auto\">\n                <h3>Links</h3>\n                <ul class=\"list-unstyled footer-links\">\n                    <li><a href=\"https://github.com/Seunope/aloc-endpoints\">Github Repo</a></li>\n                    <li><a href=\"https://github.com/Seunope/aloc-endpoints/wiki\">Documentation</a></li>\n                    <li><a href=\"https://github.com/Seunope/aloc-endpoints/wiki/Sample-API\">Sample API Call</a></li>\n                </ul>\n            </div>\n\n{{--            <div class=\"col-md-4\">--}}\n{{--                <h3>Subscribe</h3>--}}\n{{--                <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nesciunt incidunt iure iusto architecto? Numquam, natus?</p>--}}\n{{--                <form action=\"#\" class=\"footer-subscribe\">--}}\n{{--                    <div class=\"d-flex mb-5\">--}}\n{{--                        <input type=\"text\" class=\"form-control rounded-0\" placeholder=\"Email\">--}}\n{{--                        <input type=\"submit\" class=\"btn btn-primary rounded-0\" value=\"Subscribe\">--}}\n{{--                    </div>--}}\n{{--                </form>--}}\n{{--            </div>--}}\n\n        </div>\n\n        <div class=\"row pt-5 mt-5 text-center\">\n            <div class=\"col-md-12\">\n                <div class=\"border-top pt-5\">\n                    <p>\n                        <!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->\n                        Copyright &copy;<script>document.write(new Date().getFullYear());</script> All rights reserved | MaSSive Teck <i class=\"icon-heart\" aria-hidden=\"true\"></i> by <a href=\"https://colorlib.com\" target=\"_blank\" >Colorlib</a>\n                        <!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->\n                    </p>\n                </div>\n            </div>\n\n        </div>\n    </div>\n</footer>\n"
  },
  {
    "path": "resources/views/landing/layouts/partials/_header_note.blade.php",
    "content": "<header class=\"site-navbar py-4 js-sticky-header site-navbar-target\" role=\"banner\">\n\n    <div class=\"container-fluid\">\n        <div class=\"d-flex align-items-center\">\n            <div class=\"site-logo mr-auto w-25\"><a href=\"{{url('/')}}\">QBoard Endpoints</a></div>\n\n            <div class=\"mx-auto text-center\">\n                <nav class=\"site-navigation position-relative text-right\" role=\"navigation\">\n                    <ul class=\"site-menu main-menu js-clone-nav mx-auto d-none d-lg-block  m-0 p-0\">\n                        <li><a href=\"#home-section\" class=\"nav-link\">Home</a></li>\n                        <li><a href=\"#programs-section\" class=\"nav-link\">APIs</a></li>\n                        <li><a href=\"#subjects-section\" class=\"nav-link\">Subjects</a></li>\n                        <li><a href=\"#pricing-section\" class=\"nav-link\">Pricing</a></li>\n                        <li><a href=\"https://github.com/Seunope/aloc-endpoints\" target=\"_blank\">Docs</a></li>\n\n                    </ul>\n                </nav>\n            </div>\n\n            <div class=\"ml-auto w-25\">\n                <nav class=\"site-navigation position-relative text-right\" role=\"navigation\">\n                    <ul class=\"site-menu main-menu site-menu-dark js-clone-nav mr-auto d-none d-lg-block m-0 p-0\">\n                        <li class=\"cta\"><a href=\"{{url('/secure/signup')}}\" class=\"nav-link\"><span>Sign Up</span></a></li>\n                    </ul>\n                </nav>\n                <a href=\"#\" class=\"d-inline-block d-lg-none site-menu-toggle js-menu-toggle text-black float-right\"><span class=\"icon-menu h3\"></span></a>\n            </div>\n        </div>\n    </div>\n\n</header>\n"
  },
  {
    "path": "resources/views/landing/layouts/partials/_header_note2.blade.php",
    "content": "<header class=\"site-navbar py-4 js-sticky-header site-navbar-target\" role=\"banner\">\n\n    <div class=\"container-fluid\">\n        <div class=\"d-flex align-items-center\">\n            <div class=\"site-logo mr-auto w-25\"><a href=\"{{url('/')}}\">ALOC Endpoints</a></div>\n\n            <div class=\"ml-auto w-25\">\n                <nav class=\"site-navigation position-relative text-right\" role=\"navigation\">\n                    <ul class=\"site-menu main-menu site-menu-dark js-clone-nav mr-auto d-none d-lg-block m-0 p-0\">\n                        <li class=\"cta\"><a href=\"{{url('/')}}\" class=\"nav-link\"><span>Login</span></a></li>\n                    </ul>\n                </nav>\n                <a href=\"#\" class=\"d-inline-block d-lg-none site-menu-toggle js-menu-toggle text-black float-right\"><span class=\"icon-menu h3\"></span></a>\n            </div>\n        </div>\n    </div>\n\n</header>\n"
  },
  {
    "path": "resources/views/welcome.blade.php",
    "content": "<!doctype html>\n<html lang=\"{{ app()->getLocale() }}\">\n<head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <meta name=\"description\" content=\"Make APIs Call to 5,000 JAMB Past Questions. Get free APIs end points access to Past Questions of Major exam in Nigeria UTME, Post-UTME, WAEC, NECO Questions.\"/>\n    <meta name=\"keywords\" content=\"JAMB questions Api, WAEC questions Api, Free JAMB, WAEC, NECO questions, ALOC questions API, JAMB Past Question API, Question WAEC NECO, Jamb UTME, Jamb practice test api, Jamb result, ALOC CBT Games, Post UTME\"/>\n    <link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"favicon.ico\" />\n\n\n    <title>ALOC Past Questions APIs</title>\n\n    <!-- Styles -->\n    <style>\n        html, body {\n            background-color: #fff;\n            color: #636b6f;\n            font-family: system-ui, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;\n            color: #22292F;\n            line-height: 1.5;\n            font-weight: 200;\n            height: 100vh;\n            margin: 0;\n        }\n\n        p, ul{\n            /*font-family: sans-serif;*/\n        }\n\n        .full-height {\n            height: 70vh;\n        }\n\n        .flex-center {\n            align-items: center;\n            display: flex;\n            justify-content: center;\n        }\n\n        .position-ref {\n            position: relative;\n        }\n\n        .top-right {\n            position: absolute;\n            right: 10px;\n            top: 18px;\n        }\n\n        .content {\n            text-align: center;\n        }\n        .support{\n            background-color: #f3edde;\n            padding: 20px;\n\n        }\n\n        .description{\n            background-color: #fff;\n            padding: 20px;\n            margin-bottom: 4rem;\n            max-width: 60rem;\n            margin: auto;\n            padding: 1rem;\n\n        }\n\n        .title {\n            font-size: 55px;\n        }\n\n        .links > a {\n            color: #636b6f;\n            padding: 0 25px;\n            font-size: 12px;\n            font-weight: 600;\n            letter-spacing: .1rem;\n            text-decoration: none;\n            text-transform: uppercase;\n        }\n\n        .m-b-md {\n            margin-bottom: 30px;\n        }\n    </style>\n</head>\n<body>\n<div class=\"flex-center position-ref full-height\">\n    @if (Route::has('login'))\n        <div class=\"top-right links\">\n            @auth\n                <a href=\"{{ url('/home') }}\">Home</a>\n            @else\n                <a href=\"{{ route('login') }}\">Login</a>\n                <a href=\"{{ route('register') }}\">Register</a>\n            @endauth\n        </div>\n    @endif\n\n    <div class=\"content\">\n        <div class=\"title m-b-md\">\n            5,000 Past Questions\n        </div>\n\n        <div class=\"links\">\n            <a href=\"\">UTME</a>\n            <a href=\"\">WASSCE</a>\n            <a href=\"\">Post-UTME</a>\n            <a href=\"https://aloc.ng\">ALOC Games</a>\n        </div>\n\n        <p>Make API calls to get major Nigeria exams past questions. 100% FREE</p>\n\n        <h3>Focus on building great apps for students with unlimited access to trivial questions of major exams in Nigeria</h3>\n\n    </div>\n\n\n\n</div>\n<div class=\"support content \">\n    <h4>Supported by</h4>\n    <a href=\"https://aloc.ng\"><img src=\"{{url('assets/aloc-shield.png')}}\"></a>\n    <p><i>Get Inspired to Practice</i></p>\n</div>\n<div class=\"description \">\n    <h3>Intro</h3>\n    <p>We have this database of past questions which took lot of effort and resources to put together. We felt those questions are sitting too idle so we decided to open its APIs end points.  Software developers, educators and stakeholders can use these questions to develop interesting apps for students.</p>\n\n    <h3>Supported Subjects</h3>\n    <p>We currently support 17 subjects namely\n    <ul>\n        <li>English language</li>\n        <li>Mathematics</li>\n        <li>Commerce</li>\n        <li>Accounting</li>\n        <li>Biology</li>\n        <li>Physics</li>\n        <li>Chemistry</li>\n        <li>English literature</li>\n        <li>Government</li>\n        <li>Christian Religious Knowledge</li>\n        <li>Geography</li>\n        <li>Economics</li>\n        <li>Islamic Religious Knowledge</li>\n        <li>Civic Education</li>\n        <li>Insurance</li>\n        <li>Current Affairs</li>\n        <li>History</li>\n    </ul>\n    </p>\n\n    <h3>Exam supported</h3>\n    <p>We have questions for three major exams in Nigeria</p>\n    <ul>\n        <li>UTME</li>\n        <li>WASSCE (limited)</li>\n        <li>Post-UTME (very limited)</li>\n    </ul>\n\n\n    <h3>Years Supported</h3>\n    <p>This depends on the subject, but please note, the years vary from 2001 to 2013</p>\n\n    <h3>URL parameters</h3>\n    <p>You can supply a subject, type and year to the API URL</p>\n    <p><strong>subject :</strong> english, mathematics , commerce , accounting, biology , physics, chemistry, englishlit, government, crk, geography, economics, irk, civiledu, insurance, currentaffairs, history</p>\n    <p><strong>type :</strong> utme, wassce, post-utme</p>\n    <p><strong>year :</strong> 2001, 2002, 2003...</p>\n\n    <h3>API call Examples</h3>\n    <p><strong>Get a question</strong></p>\n    <p><a href=\"https://questions.aloc.ng/api/q?subject=chemistry\">https://questions.aloc.ng/api/q?subject=chemistry</a></p>\n\n    <p><strong>Get several questions</strong></p>\n    <p><a href=\"https://questions.aloc.ng/api/q/7?subject=chemistry\">https://questions.aloc.ng/api/q/7?subject=chemistry</a></p>\n\n    <p><strong>Get a question by year</strong></p>\n    <p><a href=\"https://questions.aloc.ng/api/q?subject=chemistry&year=2005\">https://questions.aloc.ng/api/q?subject=chemistry&year=2005</a></p>\n\n    <p><strong>Get a question by exam type</strong></p>\n    <p><a href=\"https://questions.aloc.ng/api/q?subject=chemistry&type=utme\">https://questions.aloc.ng/api/q?subject=chemistry&type=utme</a></p>\n\n\n    <p><strong>Get a question by type and year</strong></p>\n    <p><a href=\"https://questions.aloc.ng/api/q?subject=chemistry&year=2010&type=utme\">https://questions.aloc.ng/api/q?subject=chemistry&year=2010&type=utme</a></p>\n</div>\n<div class=\"support content\">\n    <p>Built with love by Team ALOC</p>\n    <p>Source code available on <a href=\"https://github.com/Seunope/aloc-endpoints\">GitHub</a></p>\n    <p>info@aloc.ng</p>\n    <p>Copyright © <?php echo date('Y'); ?> MaSSive Teck</p>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "routes/api.php",
    "content": "<?php\n\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Support\\Facades\\Route;\n\n/*\n|--------------------------------------------------------------------------\n| API Routes\n|--------------------------------------------------------------------------\n|\n| Here is where you can register API routes for your application. These\n| routes are loaded by the RouteServiceProvider within a group which\n| is assigned the \"api\" middleware group. Enjoy building your API!\n|\n*/\n\nRoute::middleware('auth:api')->get('/user', function (Request $request) {\n    return $request->user();\n});\n\nRoute::group(['namespace' => 'Api'], function () {\n\n    Route::group(['namespace' => 'v1'], function () {\n        Route::resource('/q', 'QuestionController');\n        Route::get('/q-by-id/{id}', 'QuestionController@questionById');\n        Route::get('/q-subjects', 'QuestionController@allSubjects');\n\n\n        Route::get('/m', 'QuestionController@manyQuestions');\n        Route::post('/r', 'QuestionController@reportQuestion');\n        Route::get('/top-q', 'QuestionController@topQuestion');\n\n\n        Route::group(['prefix' => 'metrics'], function () {\n            Route::get('/subjects-call', 'MetricsController@subjectsApiCallCounts');\n            Route::get('/list-subjects', 'MetricsController@availableSubjects');\n            Route::get('/subjects-available-for/{year}', 'MetricsController@subjectAvailableForYear');\n            Route::get('/years-available-for/{subject}', 'MetricsController@yearAvailableForSubject');\n            Route::get('/questions-available-for/{subject}', 'MetricsController@subjectQuestions');\n\n        });\n    });\n\n    Route::group(['namespace' => 'v2', 'prefix'=> 'v2'], function () {\n        Route::resource('/q', 'QuestionController');\n        Route::get('/q-by-id/{id}', 'QuestionController@questionById');\n        Route::get('/q-subjects', 'QuestionController@allSubjects');\n        Route::get('/q-subjects-group', 'QuestionController@groupSubjectsQuestions');\n        Route::get('/q-comprehension-years', 'QuestionController@comprehensionYears');\n\n\n        Route::get('/m', 'QuestionController@manyQuestions');\n        Route::get('/m/{questions}', 'QuestionController@hugeQuestions');\n\n        Route::get('/vendor/m/{questions}', 'QuestionController@vendorHugeQuestions');\n\n\n//        Route::post('/r', 'QuestionController@reportQuestion');\n        Route::get('/top-q', 'QuestionController@topQuestion');\n\n    });\n\n});\n"
  },
  {
    "path": "routes/channels.php",
    "content": "<?php\n\nuse Illuminate\\Support\\Facades\\Broadcast;\n\n/*\n|--------------------------------------------------------------------------\n| Broadcast Channels\n|--------------------------------------------------------------------------\n|\n| Here you may register all of the event broadcasting channels that your\n| application supports. The given channel authorization callbacks are\n| used to check if an authenticated user can listen to the channel.\n|\n*/\n\nBroadcast::channel('App.Models.User.{id}', function ($user, $id) {\n    return (int) $user->id === (int) $id;\n});\n"
  },
  {
    "path": "routes/console.php",
    "content": "<?php\n\nuse Illuminate\\Foundation\\Inspiring;\nuse Illuminate\\Support\\Facades\\Artisan;\n\n/*\n|--------------------------------------------------------------------------\n| Console Routes\n|--------------------------------------------------------------------------\n|\n| This file is where you may define all of your Closure based console\n| commands. Each Closure is bound to a command instance allowing a\n| simple approach to interacting with each command's IO methods.\n|\n*/\n\nArtisan::command('inspire', function () {\n    $this->comment(Inspiring::quote());\n})->purpose('Display an inspiring quote');\n"
  },
  {
    "path": "routes/web.php",
    "content": "<?php\n\nuse Illuminate\\Support\\Facades\\Route;\nuse App\\Http\\Controllers\\Admin\\Auth\\ForgotPasswordController;\nuse App\\Http\\Controllers\\Admin\\Auth\\AuthController;\n\n/*\n|--------------------------------------------------------------------------\n| Web Routes\n|--------------------------------------------------------------------------\n|\n| Here is where you can register web routes for your application. These\n| routes are loaded by the RouteServiceProvider within a group which\n| contains the \"web\" middleware group. Now create something great!\n|\n*/\n\nRoute::get('/', function () {\n    return view('landing.index');\n});\n\n\nRoute::group(['prefix'=> 'secure'], function () {\n\n    Route::get('/signup',  [AuthController::class, 'signup']);\n    Route::post('/signup', [AuthController::class, 'handleSignup'])->name('signup');\n\n    Route::get('/login',   [AuthController::class, 'login']);\n    Route::post('/login',  [AuthController::class, 'handleLogin'])->name('login');\n    Route::get('/logout',  [AuthController::class, 'handleLogout'])->name('logout');\n\n    Route::get('/forget-password', [ForgotPasswordController::class, 'showForgetPasswordForm'])->name('forget.password.get');\n    Route::post('/forget-password', [ForgotPasswordController::class, 'submitForgetPasswordForm'])->name('forget.password.post');\n    Route::get('/reset-password/{token}', [ForgotPasswordController::class, 'showResetPasswordForm'])->name('reset.password.get');\n    Route::post('/reset-password', [ForgotPasswordController::class, 'submitResetPasswordForm'])->name('reset.password.post');\n\n});\n\nRoute::group(['namespace' => 'Admin', 'prefix'=> 'admin'], function () {\n\n    Route::group(['middleware' => 'auth'], function () {\n\n        Route::get('/dashboard', 'DashboardController@index');\n        Route::get('/access-token', 'AccessTokenController@index');\n        Route::get('/access-token/generate', 'AccessTokenController@generateNewToken');\n\n        Route::get('/pricing', 'BillingController@index');\n        Route::get('/pricing/paystack/callback', 'BillingController@paystackCallBack');\n\n\n\n    });\n});\n\n\n"
  },
  {
    "path": "server.php",
    "content": "<?php\n\n/**\n * Laravel - A PHP Framework For Web Artisans\n *\n * @package  Laravel\n * @author   Taylor Otwell <taylor@laravel.com>\n */\n\n$uri = urldecode(\n    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)\n);\n\n// This file allows us to emulate Apache's \"mod_rewrite\" functionality from the\n// built-in PHP web server. This provides a convenient way to test a Laravel\n// application without having installed a \"real\" web server software here.\nif ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {\n    return false;\n}\n\nrequire_once __DIR__.'/public/index.php';\n"
  },
  {
    "path": "storage/app/.gitignore",
    "content": "*\n!public/\n!.gitignore\n"
  },
  {
    "path": "storage/backups/2020-07-02.sql",
    "content": "/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `accounting` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=515 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `accounting` VALUES (1,'The bad debt account is closed by transferring the balance to ','credit of capital account  ','debit of profit  and loss  ','debit of the debtors personal account ','credit of profit and loss account ','','','b','','post-utme','2010',80,'','0000-00-00 00:00:00','2020-06-09 11:45:47'),(2,'A credit note from a supplier would first be entered in the ','purchase book  ','sales book  ','returns inward book  ','returns outward','','','a','','post-utme','2010',89,'','0000-00-00 00:00:00','2020-06-26 13:00:08'),(3,'Where a proprietor withdraws cash from the business for his private use, the entries would be ','credit cash account, debit proprietor\\'s account ','credit proprietor\\'s account, debit cash account ','credit proprietor\\'s account, debit   drawings   account    ','credit   cash account,  debit drawings account','','','d','','post-utme','2010',87,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(4,'Which   of the   following   is   a  long  term liability ','bank overdraft ','bank deposit ','good will ','debentures','','','d','','post-utme','2010',87,'','0000-00-00 00:00:00','2020-05-04 18:14:58'),(5,'Which of the following is a function of the sales journal ','it records both cash and credit sales ','it shows the balance in the sales account ','it record credit sales only ','it shows the aggregate balances in the debtors lodger','','','a','','post-utme','2010',92,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(6,'Which of the following is the most liquid ','stock ','debtors ','machinery ','loose tools','','','b','','post-utme','2010',79,'','0000-00-00 00:00:00','2020-04-30 17:58:10'),(7,'A debit balance on a bank statement indicates that ','bank is a debtor to the customer ','customer is a debtor to the bank ','bank is not a creditor to the customer ','customer is not a debtor to the bank','','','b','','post-utme','2010',97,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(8,'At the end of a trading period, wages will be  ','debited to trading account and shown as a current liability ','credited to profit and loss Account and shown as a current liability ','credited to trading account and shown as a current asset ','debited to profit and loss account and shown as a current liability','','','a','','post-utme','2010',94,'','0000-00-00 00:00:00','2020-05-04 18:12:29'),(9,'Which of the following is not an asset ','Goodwill ','General reserves ','Debtors ','Prepayments','','','b','','post-utme','2010',100,'','0000-00-00 00:00:00','2020-05-04 18:37:45'),(10,'A company\\'s profit and loss account for a period  is  prepared by ','deducting total expenses from total revenues ','deducting total cash payments from total revenue ','deducting  all  outflows  of funds  from  all inwards of funds ','balancing its receipts and payments','','','a','','post-utme','2010',87,'','0000-00-00 00:00:00','2020-06-25 23:53:42'),(11,'The journal is a book ','of primary entry into which all transactions are entered before posting ','kept by journalist for reporting events ','of prime entry into which postings are made from the ledger  ','of analyzing major accounts','','','a','','post-utme','2010',84,'','0000-00-00 00:00:00','2020-06-26 08:11:06'),(12,'The receipts and payments of a club is the same  as ','  Profit and   loss  account  ','Trading Account ','Cash book ','control Account','','','c','','post-utme','2010',80,'','0000-00-00 00:00:00','2020-04-30 18:00:32'),(13,'In a balance sheet, bank overdraft is ','Current Asset ','Fixed asset ','long term liability ','Current Liability','','','d','','post-utme','2010',90,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(14,'Money set aside for the saving of business overheads    is    referred    to   ','Capital Expenditure  ','Revenue  Expenditure ','Revenue receipts','','','','c','','post-utme','2010',100,'','0000-00-00 00:00:00','2020-05-04 18:54:20'),(15,'Money spent on buying of plots of land by a firm is ','Capital Expenditure ','capital receipts ','Revenue Expenditure',' Revenue Receipts','','','a','','post-utme','2010',93,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(16,'Prepaid expenses  is an  item  in ','Fixed Asset  ','  Current    Asset   ','Liabilities ','Long term liabilities ','','','b','','post-utme','2010',91,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(17,'Final accounts of (i) Cash book (ii) trading account  (iii) Profit and  loss account  (iv)Balance sheet  ','i only ','i and ii only','iii and iv only ','ii and iii  only','','','c','','post-utme','2010',83,'','0000-00-00 00:00:00','2020-06-05 15:31:37'),(18,'Trading account is prepared to ascertain ','Gross profit ','Net profit ','Gross profit or Gross loss ',' Net profit or net loss','','','c','','post-utme','2010',95,'','0000-00-00 00:00:00','2020-06-26 08:11:06'),(19,'A statement that shows the financial position of a business is ','profit and loss account  ','Trading Account ','Statement of income  ',' Balance sheet','','','d','','post-utme','2010',83,'','0000-00-00 00:00:00','2020-06-28 18:07:03'),(20,'  Prepaid wages is an item in the (i)Balance Sheet (ii) Profit and loss account (iii)Trading  account (iv) Cash account ','i, ii, iii only ','ii, iii  ','i, ii ','iii, iv','','','a','','post-utme','2010',96,'','0000-00-00 00:00:00','2020-06-26 09:11:37'),(21,'Partnership    is    a    business    owned and controlled by ','Two members ','two to ten members ','Two to twenty person  ','Two to five persons','','','c','','post-utme','2010',84,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(22,'If a   machine   cost   2000   naira   and its estimated   life   span   is   10   years   and its residual is 500 naira. The yearly value of depreciation  in  naira is ','250','180','150','130','','','c','','post-utme','2010',78,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(23,'Bad debt is also known as ','Unpaid debt','irrecoverable debt  ','Payment debt  ','current    debt','','','b','','post-utme','2010',85,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(24,'Bad debt is an item in ','Trading, profit and loss account  ','consignment account  ','Balance sheet ','Receipt and expenditure AC','','','a','','post-utme','2010',93,'','0000-00-00 00:00:00','2020-06-28 07:15:53'),(25,'The diary or events in which all financial transactions    are    recorded    for    easy reference and to assist in the double entry system is ','Ledger','Journal   ','Purchases and sales day books ','Debit and credit documents','','','a','','post-utme','2011',85,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(26,'Which of the following is not a book of original entry? ','Cash book  ','Purchases journal  ','Sales journal ','Ledger','','','d','','post-utme','2011',87,'','0000-00-00 00:00:00','2020-05-04 18:22:43'),(27,'The test of arithmetical accuracy of all postings in the ledger is provided in the: ','Journal  ','Day book  ','Cash book  ','Trial balance','','','d','','post-utme','2011',93,'','0000-00-00 00:00:00','2020-05-04 18:30:26'),(28,'Errors   revealed   by   the   trial   balance include error of:  ','Principle  ','Single entry ','Omission  ','commission ','','','b','','post-utme','2011',91,'','0000-00-00 00:00:00','2020-06-27 16:52:23'),(29,'Accounting equation is given by  ','Assets - Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owner\\'s Equity = Liabilities ','Assets = Liabilities + Owner\\'s Equity','','','d','','post-utme','2011',81,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(30,'Which of the following is not a current asset?  ','Stock  ','Debtors  ','Creditors ','Cash','','','c','','post-utme','2011',97,'','0000-00-00 00:00:00','2020-06-25 23:22:50'),(31,'Final accounts of a company refers to: ','Trading and profit and loss account  ','Profit and loss account and balance sheet  ','Trading account and balance sheet  ','Trading , profit and loss account and balance sheet','','','d','','post-utme','2011',73,'','0000-00-00 00:00:00','2020-05-03 17:20:23'),(32,'A cheque which has been sent but has yet gone through the bank account of the receiver of it is known as:','Dishonoured cheque','Unpresented cheque ','Uncredited cheque','Unhonoured cheque','','','b','','post-utme','2011',91,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(33,'Which of the following does not appear in a bank statement?   ','Uncredited cheque ','Bank charges ','Dishonoured cheque ',' Dividend   received   on    behalf   of customer','','','d','','post-utme','2011',83,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(34,'Where a correct amount is entered, but in the wrong person\\'s account, is an error of  ','Principle  ',' Omission','Commission','Compensation','','','c','','post-utme','2011',81,'','0000-00-00 00:00:00','2020-06-27 16:52:23'),(35,'A credit balance of N350,000 in a cash account shows that  ','N350.000 was the total cash received  ','N350,000 was the total cash paid out  ','Cash at hand equals N350,000 ','N350,000 was the cash overspent','','','d','','post-utme','2011',96,'','0000-00-00 00:00:00','2020-06-26 17:03:02'),(36,'Which   accounting  concept  states; that revenues and expenses are recognized as they are earned or incurred and not when  money is received?','Entity   ','Realization','Accrual  ','Periodicity','','','c','','post-utme','2011',86,'','0000-00-00 00:00:00','2020-06-24 20:29:33'),(37,'Which of the following is not a business asset?','Deposit account in bank','Interest due on loan','Five acres of land','Library books owned by a lawyer ','','','b','','post-utme','2011',81,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(38,'Prime cost is','Direct cost of production','Cost of raw materials consume:','Cost of raw materials purchase-:','Indirect cost of production','','','a','','post-utme','2011',83,'','0000-00-00 00:00:00','2020-06-01 19:36:02'),(39,'Subscription   received   in   respect of a future period is','Subscription deposit','Subscription in advance','Accrued subscription','Subscription in arrears','','','b','','post-utme','2011',98,'','0000-00-00 00:00:00','2020-06-30 10:04:26'),(40,'The petty cash book kept on imprest system should have','A credit balance only','A debit or nil balance','A debit balance only','Both debit and credit balance;','','','c','','post-utme','2011',76,'','0000-00-00 00:00:00','2020-06-25 23:58:34'),(41,'Wilson Company owns land which cost 14100, 000. If a \\\"quick sate\\\" of the land was necessary to generate cash, the company feels it would receive only N80, 000.    The company continues to report the asset on the balance sheet at N100, 000   This is justified under which of the following concepts?  ','The historical-cost principle.','The value is tied to objective and verifiable past transactions.','Neither of the above.',' Both \\\"a\\\" and \\\"b\\\"','','','a','','post-utme','2012',88,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(42,'Retained earnings will change over time because of several factors.  Which of the following factors would explain an increase in retained earning?','Net loss ','Net income,','Dividends ','investment by stakeholders.','','','b','','post-utme','2012',96,'','0000-00-00 00:00:00','2020-06-26 08:11:06'),(43,'Which of the following would not be included in a balance sheet?','Accounts receivable','Accounts payable  ','Sales','Cash','','','c','','post-utme','2012',82,'','0000-00-00 00:00:00','2020-06-25 23:58:34'),(44,'A company provided the following information about its balance sheet: Cash N100 Accounts receivable N500 Stockholders\\' equity 14700 Account payable N200 Bank loans Nl000 Based on the information provided, how much are Remington\\'s liabilities?','N200   ','N900   ','N 1,200   ','N 1,700','','','c','','post-utme','2012',96,'','0000-00-00 00:00:00','2020-06-24 20:34:44'),(45,'A complete set of financial statements for Hartman Company, at December 31, 1999, would include each of the following except:','Balance sheet as of December 31,1999 ','Income   statement   for   the   year   ended December 31, 1999.','Statement of projected cash flows for 2000  ','Notes containing additional information that is useful interpreting the financial statements.','','','c','','post-utme','2012',84,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(46,'If the equipment account has a balance of N22.500 and its accumulated account has a balance of N14,000 the book value of the equipment is:  ','N22.500   ','N8.500 ','N 14,000  ','N36.500','','','b','','post-utme','2012',96,'','0000-00-00 00:00:00','2020-06-09 11:47:01'),(47,'The balance unearned rent account for Jones Co. as at 31st Dec. is 1,200. If Jones Co tailed to record the adjusting entry for 600 of rent earned during December, the effect on the balance sheet and income statement','for December is:',' Liabilities   overstated—N60Q:   c:et income overstate d 44600',' Liabilities   understated   £4500:   net income  understated N600','Asset    understated—N600:     net    income  overstated N600',' Liabilities   overstated   N600:    net income understated N600','','d','','post-utme','2012',88,'','0000-00-00 00:00:00','2020-05-04 18:37:46'),(48,'If goods purchased on account is returned, the buyer may inform the seller of the details by issuing:','An invoice  ','A debt memorandum','A credit memorandum  ',' A bill','','','c','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-06-27 16:52:23'),(49,'Which of the following entries classes the  owner\\'s drawing account at the end of the period?','Debit the drawing account, credit the owner\\'s capital account','Debit the income summary account credit the drawing account','Debit   the   drawing account credit income summary accounting','Debit the owner\\'s capital account, credit the drawing account','','','d','','post-utme','2012',78,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(50,'At the end the fiscal year, account receivable has a balance of 100,000 and allowance for doubtful account has a balance of 7,000. The expected that realized value of the  receivable is: account','N 107,000','N100,000','c. N93,000','N 147,000','','','c','','post-utme','2012',97,'','0000-00-00 00:00:00','2020-06-26 09:11:37'),(51,'Which of the following accounts would be classified as a current on the balance sheet?','Office Equipment','Accumulated Depreciation','Land','Accounts receivable','','','d','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-06-28 07:15:53'),(52,'A petty cash fund is:','Used to pay relatively small amount','reimbursed when the amount of money in the fund is reduced to a predetermined minimum amount','Established by estimating the amount of cash needed for disbursement of  relatively small amount during a specified period  ','All of the above','','','d','','post-utme','2012',76,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(53,'A debit may signify: ','an increase in the owner\\'s capital amount','an increase in a liability account','a decrease in an asset account','an increase in an asset account','','','d','','post-utme','2012',90,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(54,'The receipt of cash from customers in a payment of their account would recorded by a','Debit to account receivable; credit to cash ','b  Debit to cash credit to accounts receivable  ','Debit to cash, credit to accounts payable  ','Debit to account payable credit to cash','','','b','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-06-26 17:03:02'),(55,'The essential amount of depreciation or equipment for a period is 2,000 the adjusting end to record depreciation would be','Debit depreciation expense, 2000, credit expense, 2,000','Debit equipment, 2,000; credit depreciation expense, 2,000','Debit accumulated depreciation, 2,000. credit depreciation expense 2,000    ','Debit depreciation expense, 2,000; credit accumulated depreciation 2,000.','','','d','','post-utme','2012',84,'','0000-00-00 00:00:00','2020-05-03 17:44:35'),(56,'Which of the following assets could be described as a current asset?','Stock of goods for resale','Machinery to manufacture goods for resale ',' Buildings to house the machinery','Land on which the buildings stand.','','','a','','post-utme','2012',85,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(57,'The purchase journal records:','invoices from creditors','Debtors\\' invoices','Cash payments to suppliers','Amounts owing to employees for wage;','','','a','','post-utme','2012',90,'','0000-00-00 00:00:00','2020-05-06 04:56:33'),(58,'If a business shows a debit balance in its own record of its bank balance, this indicates.','The business has a bank overdraft','The business is a debtor of the bank','The business has money in the bank','The ledger entry must be wrong.','','','a','','post-utme','2012',76,'','0000-00-00 00:00:00','2020-06-28 07:15:53'),(59,'If a business pays for only 11 months rent during a financial year, what accounting term is given to the outstanding term is given to the outstanding one month\\'s rent? Which of the following equations properly represents a derivation of the fundamental accounting equation?','Assets + liabilities = owner\\'s equity ','Assets = owner\\'s equity','Cash = assets.  ','Assets - liabilities = owner\\'s equity','','','d','','post-utme','2012',77,'','0000-00-00 00:00:00','2020-06-24 20:29:33'),(60,'A business shows total debtors\\' balances of N400,000 in its ledger at the end of its financial year. A customer owing N40,000 is bankrupt, and there is no possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor\\'s total will be included as a current asset in the balance sheet?','N400,000,   ','N352,800    ','N352,000.  ','N436,200 ','','','c','','post-utme','2012',78,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(61,'To arrive at the gross profit of a trading  business, which one of the following formulate is applied?','Sales - (Opening Stock-Purchases-Closing Stock)','Sales - (Opening stock + Purchases + Closing Stock)','Sales - (Opening stock + Purchases - Closing Stock)','Sales - (Opening stock - purchases + closing stock)','','','c','','post-utme','2012',85,'','0000-00-00 00:00:00','2020-06-28 18:07:03'),(62,' Which one of the following is not part of a company\\'s equity capital?','Ordinary shares','Preference shares','Voting Shares','Equity shares','','','c','','post-utme','2012',73,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(63,' An expenditure whose benefit is finished or enjoyed immediately is called: ','Expense   ','Liability ','Cost ','Income','','','a','','post-utme','2012',84,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(64,'Where no partnership agreements exist, a partner who puts a sum of money into a firm in excess of the capital he has agreed to subscribe is entitled to interest rate per annum on such money ','15%','10%','5%','2%','','','c','','post-utme','2013',81,'','0000-00-00 00:00:00','2020-05-04 18:22:43'),(65,'MORADE had total assets of N760,000, capital stock of N150,000 and retained earnings of N215,000. What was Morade\\'s debt-to-equity ratio? ','2.63','1.08','0.52','0.48','','','b','','post-utme','2013',81,'','0000-00-00 00:00:00','2020-06-25 23:58:34'),(66,'9.   Which   of   the   following   is   a   correct expression of the accounting equation? ','Assets = Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owners\\' Equity = Liabilities ','Assets = Liabilities - Owner\\'s Equity','','','a','','post-utme','2013',80,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(67,'Which of these items would be accounted for as an expense? ','repayment of a bank loan ','dividends to stockholders ','the purchase of land ','payment of the current period\\'s rent','','','d','','post-utme','2013',92,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(68,'At the end the fiscal year, account receivable has a balance of Nl00,000 and allowance for  doubtful   account  has a balance   of N7,000. The expected net realized value of the account receivable is: ','Nl07,000 ','N100,000 ','N93,000 ','N7,000 ','','','c','','post-utme','2013',95,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(69,'A debit balance of Nl50,000 in a cash account   shows   that   ','  cash  has   been overspent   by   N150,000   ','  there   was N150,000 cash in hand ',' the total of cash received   was   less   than   N150,000   ','N150,000 was the total of cash paid out. ','','','b','','post-utme','2013',76,'','0000-00-00 00:00:00','2020-06-19 01:06:41'),(70,'Posting  the  transactions   in bookkeeping means ','making the first entry of a double entry transaction ','entering items in a cash book ','making the second  entry of a double entry transaction ','something other than the above.','','','a','','post-utme','2013',96,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(71,' On December 31, 2012, Infinite Grace had a note payable due on August 1, 2013. On January 20, 2013, Infinite Grace signed a financing agreement to borrow the balance of the note payable from a lending institution to refinance the note. The agreement does not expire within one year, and no violation of any provision in the financing agreement exists. On  February 1, 2013. Infinite Grace was informed by its financial advisor that the lender is not expected to be financially capable of honouring the agreement. Infinite Grace\\'s financial statements were issued on March 31, 2013. How should Infinite Grace classify the note on its balance sheet at December 31,2012? ','as a current liability because the financing agreement was signed after the balance sheet datecapable of honouring the agreement   ','as a current liability because the leader is not expected to be financially ',' as   a   long-term   liability because  the agreement  does   not  expire within one year ',' as a long-term liability because no violation of any provision in the financing agreement exists.','','','c','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-04-30 18:12:48'),(72,'A business shows total debtors\\' balance of N400,000 in its ledger at the end of its financial customer owing N40,00 are bankrupt, and there is no  possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor’ total will be included as a current asset in the balance sheet? ','N400,000  ','N352,800  ','N352, 000  ','N36, 200','','','b','','post-utme','2013',78,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(73,'Companies and  Allied  Matters  Act. 1990 requires  every  company   to  keep  certain statutory books. Which of the following is not part of the statutory books to be kept by the company? ','register of directors and secretaries ','a register of charges (fixed and floating) ','minutes books of meetings of the company and meetings of its directors ','a register of companies in the same line of business','','','d','','post-utme','2013',77,'','0000-00-00 00:00:00','2020-06-28 07:15:53'),(74,'The    main    objective   of   the   financial statements is to ','provide a true and fair- view of the financial position of the business ','help managers take correct decisions ','show every transaction affects two items in the  balance sheet ','help owners of a business to plan for the future.','','','a','','post-utme','2013',70,'','0000-00-00 00:00:00','2020-06-26 13:00:08'),(75,' Impersonal accounts contain ','capital and cash account ','nominal account and real account ',' real and cash account ','capital and real act minis ','','','b','','post-utme','2013',66,'','0000-00-00 00:00:00','2020-06-24 20:29:33'),(76,'One of (he following errors will affect the agreement of the trial balance ','error of omission ','trial balance error ','principle error ','error of original entry','','','b','','post-utme','2013',127,'','0000-00-00 00:00:00','2020-06-28 16:53:13'),(77,'Which of the following is a fictitious asset? ','prepayments ','preliminary expenses ','investment ','plant and machinery ','','','b','','post-utme','2013',68,'','0000-00-00 00:00:00','2020-06-26 08:11:06'),(78,'  Which of the following is not part of the main uses of the journal ',' purchase and sale   of   fixed   assets   on  credit   ','the  correction of errors ','writing off bad debts ','none of the above','','','d','','post-utme','2013',71,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(79,'…………………checks the arithmetical accuracy of double entry accounts ','trading account ','profit and loss account ','balance sheet ','trial lance','','','d','','post-utme','2013',87,'','0000-00-00 00:00:00','2020-05-04 18:37:46'),(80,'The distinguishing feature between a two-column and three-columncash book is','discount column','cash column','bank column','ledger folio','','','a','','wassce','2013',83,'Admin','2016-11-15 20:31:29','2020-06-28 09:41:55'),(81,'The lodgment of business cash into the business bank account is an example of','contra entry','bank reconciliation','self balancing ledger','reversal entry','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:30','2020-06-27 19:42:58'),(82,'credit balance is','a liability or an expense.','a liability or an income.','an expenditure or an income.','an asset or an expense.','','','b','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-06-27 19:42:58'),(83,'Which of the following is not a characteristic of a Trial Balance?','It has columns for debit and credit balances','Total of debit balance equals total of credit balance','It is a statement','It is an account','','','d','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-05-04 18:03:40'),(84,'The capital of a sole trader changes as a result of','paying wages by cash.','equipment purchased by cheque.','drawings by cheque.','purchases on credit.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:30','2020-06-27 19:42:58'),(85,'The order of financial accounting process involves: (I) recording; (II) presenting; (III) collecting; (IV) analyzing.','I, II. Ill and IV','II, III, I and IV','Ill, I, II and IV','IV, III, II and I','','','c','','wassce','2013',75,'Admin','2016-11-15 20:31:30','2020-06-24 20:34:44'),(86,'A dishonoured cheque is','debited in the cash book.','credited in the cash book.','double entry in the cash book.','credited in the bank book.','','','c','','wassce','2013',80,'Admin','2016-11-15 20:31:30','2020-06-27 16:35:28'),(87,'A petty cashier received a float of GHc 120 and spent GHc 84. The imprest is','GHc 204.','GHc 120.','GHc 84.','GHc 36.','','','d','','wassce','2013',72,'Admin','2016-11-15 20:31:30','2020-06-28 18:07:02'),(88,'Which of the following is not a book of original entry?','Cash Book','Purchases Ledger','Returns Outwards Journal','General Journal','','','b','','wassce','2013',67,'Admin','2016-11-15 20:31:30','2020-05-03 17:11:17'),(89,'The current ratio is','1.87 : 1.','1 : 1.87.','1 : 2.','2 : 1.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',85,'Admin','2016-11-15 20:31:30','2020-06-28 07:15:53'),(90,'The capital employed is','N=740,000.','N=580,000.','N=370,000.','N=280,000.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','c','','wassce','2013',79,'Admin','2016-11-15 20:31:30','2020-06-25 23:15:49'),(91,'The returns on capital employed is','17.2%','16.2%.','15.2%.','11.2%.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',67,'Admin','2016-11-15 20:31:30','2020-06-24 20:29:33'),(92,'The double entry principle states that','every debit entry must have a corresponding credit entry','every credit entry must have a corresponding double entry','every debit entry must have a corresponding double entry','every asset must have a corresponding liability.','','','a','','wassce','2013',81,'Admin','2016-11-15 20:31:30','2020-06-27 16:52:23'),(93,'Which of the following is a nominal account?','Machinery Account','Drawings Account','Debtors Account','Wages Account','','','d','','wassce','2013',87,'Admin','2016-11-15 20:31:30','2020-06-26 21:58:16'),(94,'Reserves account is kept in the','private ledger.','creditors ledger.','nominal ledger.','debtors ledger.','','','c','','wassce','2013',75,'Admin','2016-11-15 20:31:30','2020-06-26 08:11:06'),(95,'An advantage of control account is','locating figures.','adding figures.','changing figures.','locating errors.','','','d','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-06-27 16:52:23'),(96,'The accumulated fund of a not-for-profit making organization is','a fixed asset.','a current asset.','a liability.','capital.','','','d','','wassce','2013',83,'Admin','2016-11-15 20:31:30','2020-05-05 20:10:53'),(97,'A business is treated as being separate from the owners. This statement is emphasized by','consistency concept.','realization concept.','going concern concept.','business entity concept.','','','d','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-06-28 18:07:03'),(98,'Which of the following is recorded on the debit side of the Trial Balance?','Bank overdraft','Returns outwards','Purchases','Capital','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-06-27 19:42:58'),(99,'Which of the following is determined in the Trading Account?','Factory overheads','Cost of goods sold','Prime cost','Net profit','','','b','','wassce','2013',88,'Admin','2016-11-15 20:31:31','2020-06-28 18:07:02'),(100,'Cash receipts and payments involving discounts are entered in','three-column cash book.','two-column cash book.','analytical cash book.','petty cash book.','','','a','','wassce','2013',87,'Admin','2016-11-15 20:31:31','2020-06-26 21:58:16'),(101,'The minimum number of persons required to form a partnership business is','2.','3.','5','10.','','','a','','wassce','2013',70,'Admin','2016-11-15 20:31:31','2020-06-27 16:52:23'),(102,'Which of the following accounts has a credit balance?','Returns Inwards Account','Machinery Account','Sales Account','Cash Account','','','c','','wassce','2013',80,'Admin','2016-11-15 20:31:31','2020-06-27 16:35:28'),(103,'The accounting principle that states that, in the preparation of accounting statement, revenue are recognized as        soon as goods are passed on to the customer is the','materiality concept.','matching concept.','consistency concept.','realization concept.','','','d','','wassce','2013',91,'Admin','2016-11-15 20:31:31','2020-06-27 16:35:28'),(104,'Agreement between partners is contained in the Partnership','Act.','Deed.','Accord','Deal.','','','b','','wassce','2013',88,'Admin','2016-11-15 20:31:31','2020-06-28 09:41:55'),(105,'A low current ratio in a business indicates that the business is','faced with long term loan repayment problem.','efficient in the utilization of its resources.','unable to pay its bills on time.','growing its net asset effectively.','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-06-28 18:07:03'),(106,'Which of the following is a recurrent expenditure in public sector accounting?','Purchase of vehicles','Purchase of drugs','Construction of boreholes','Construction of buildings','','','b','','wassce','2013',77,'Admin','2016-11-15 20:31:31','2020-06-25 23:58:34'),(107,'In departmental accounts, administrative expenses are recorded in the','Trading Account.','Balance Sheet.','Profit and Loss Account.','Profit and Loss Appropriation Account.','','','c','','wassce','2013',85,'Admin','2016-11-15 20:31:31','2020-06-28 09:41:55'),(108,'The Public Accounts Committee is an organ of','military regime.','parliament.','presidency.','councilors.','','','b','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-05-04 10:18:00'),(109,'The balance at the end of the period is',' 270,000.','139,000.','131,000.','120,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','c','','wassce','2013',68,'Admin','2016-11-15 20:31:31','2020-06-27 19:42:58'),(110,'The total expenditure for the period is','319,000.','270,000','139,000.','109,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','d','','wassce','2013',78,'Admin','2016-11-15 20:31:31','2020-06-26 17:03:02'),(111,'Which of the following is not an item on the credit side of the purchases ledger control account?','Cash received','Cash payment','Contra settlement','Cheque payment','','','a','','wassce','2013',76,'Admin','2016-11-15 20:31:31','2020-06-26 09:11:37'),(112,'When a business is purchased from a sole trader, the excess of the purchase price over the net assets is','reserve.','goodwill.','freehold.','valuation price.','','','b','','wassce','2013',82,'Admin','2016-11-15 20:31:31','2020-06-28 09:41:55'),(113,'A set of instructions or programs which controls the operation of a computer is','software.','hardware.','monitor.','keyboard.','','','a','','wassce','2013',84,'Admin','2016-11-15 20:31:31','2020-06-26 17:03:02'),(114,'The process of detecting, tracing and eliminating errors in a computer program is','reproduction.','debugging.','sorting.','retrieving.','','','b','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-06-27 16:35:28'),(115,'In a not-for-profit making organization, the cash book is referred to as','income and expenditure account.','receipts and payments account.','two column cash book.','petty cash book.','','','b','','wassce','2013',90,'Admin','2016-11-15 20:31:31','2020-06-28 18:07:02'),(116,'When the going concern concept is no longer applicable, the fixed assets are recorded at their','net book value.','realizable value.','gross value.','revalued amount.','','','b','','wassce','2013',87,'Admin','2016-11-15 20:31:31','2020-06-27 19:42:58'),(117,'The cost of raw materials consumed is','GHc 58,000.','GHc 52,500.','GHc 52,000.','GHc 50,000.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','b','','wassce','2013',86,'Admin','2016-11-15 20:31:31','2020-06-27 19:42:58'),(118,'The prime cost is','GHc 64,500.','GHc 64,000.','GHc 58,500.','GHc 52,500.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','a','','wassce','2013',93,'Admin','2016-11-15 20:31:31','2020-06-25 23:53:42'),(119,'Which of the following relates to the essence of partnership? To','run a charity organization.','pursue a social objective.','form a business for profit.','run a religious objective.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-06-28 18:07:02'),(120,'The basic assumption which underlines the preparation of periodic financial statement is known as accounting','bases.','techniques.','concepts.','method.','','','a','','wassce','2013',96,'Admin','2016-11-15 20:31:31','2020-06-01 22:16:23'),(121,'Upon the dissolution of a partnership business, the party to be settled first out of the proceeds realized is','unsecured creditors.','partners’ loan and advances.','secured creditors.','partners’ capital.','','','c','','wassce','2013',72,'Admin','2016-11-15 20:31:31','2020-06-27 16:35:28'),(122,'Stock account is a type of','nominal account.','personal account.','real account.','fixed assets account.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-06-26 17:03:02'),(123,'At the end of a trading period, cost of goods sold is debited to the trading account while cost of services is        debited to the','balance sheet.','manufacturing account.','trading account.','profit and loss account.','','','d','','wassce','2013',84,'Admin','2016-11-15 20:31:31','2020-06-26 13:00:08'),(124,'Which of the following is not part of prime costof production?','Depreciation of factory equipment','Direct expenses','Direct wages','Carriage on raw materials','','','a','','wassce','2013',77,'Admin','2016-11-15 20:31:31','2020-06-27 16:52:23'),(125,'Excess of current assets over current liabilities is','deferred capital.','nominal capital.','working capital','authorized capital.','','','c','','wassce','2013',70,'Admin','2016-11-15 20:31:31','2020-05-03 16:52:27'),(126,'A statement showing a trader’s financial position as at a particular date is a/an','trading account.','profit and loss account.','balance sheet.','appropriation account.','','','c','','wassce','2013',92,'Admin','2016-11-15 20:31:31','2020-06-29 11:24:56'),(127,'A trading account is prepared to disclose the','net profit or loss for the year.','gross profit or loss for the year.','accumulated fund for the year.','gross profit on manufacturing.','','','b','','wassce','2013',83,'Admin','2016-11-15 20:31:31','2020-06-25 23:58:34'),(128,'Balance as per cash book 2, 970  Bank Charges 220 ;Unpresented cheques 3, 950; Uncredited cheques 4,178 ; Direct debit by bank 1, 000 . Determine  the balance as per bank Statement','N1,978','N1,962','N1,522','N2,522','','','d','','utme','2016',72,'Admin','2016-11-16 07:48:40','2020-06-26 13:00:08'),(129,'The records of Superstores shows a loan of  N14,000 from Bala, creditor N8, 000 and assets N190, 500. What is the firm’s capital?','184, 000','1 96, 500','212 000','168, 500','','','d','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-05-04 10:18:01'),(130,'The major advantage of the journal proper is that it','helps in the preparation of the balance sheet','prevents fraud and theft of item of the business','serves as a book of instruction to the bookkeeper','helps the banking industry to be efficient.','','','b','','utme','2016',79,'Admin','2016-11-16 07:48:41','2020-06-27 19:42:58'),(131,'One of the objectives of accounting is that it can be used for','business decision making','due process in business','motivating employees','determining the work force.','','','a','','utme','2016',77,'Admin','2016-11-16 07:48:41','2020-06-24 20:29:33'),(132,'The ratio that gives the indication of the efficiency of a firm’s sales with respect to cost of goods sold is a','return on capital employed','gross profit margin','net profit margin','return on equity.','','','b','','utme','2016',86,'Admin','2016-11-16 07:48:41','2020-06-27 19:42:58'),(133,'The instrument used in analysis and interpretation of financial statement is the','accounting ratios','income and expenditure extract','balance sheet extract','fund accounting.','','','a','','utme','2016',81,'Admin','2016-11-16 07:48:41','2020-06-28 18:07:02'),(134,'An item in the balance sheet of a limited liability company is','accrued expenses','lighting and heating','salaries and wages','general expenses.','','','a','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-06-27 16:35:28'),(135,'The documents that provide instant information to firms on their transactions with banks are','bank statement and debit note','cheque stub and deposit slip','cheque book and cashbook','payslip and credit invoice.','','','a','','utme','2016',76,'Admin','2016-11-16 07:48:41','2020-06-25 23:53:42'),(136,'Which of the following is the capital reserve of a company?','Accumulated depreciation.','Retained profit.','Share premium','Loss on forfeited shares','','','b','','utme','2016',75,'Admin','2016-11-16 07:48:41','2020-06-26 09:11:37'),(137,'The effect of overstating-revenue expenditure in the profit and loss account is that the','opening stock will be increased','net profit will be understated','net profit will be overstated','opening stock will be decreased','','','b','','utme','2016',81,'Admin','2016-11-16 07:48:41','2020-06-26 21:58:16'),(138,'Which of the following conditions would attract credit and debit notes to be used?','When goods are received from supplier.','When a trial balance is extracted','When a buyer is under or over charged.','When goods are sold to a buyer.','','','c','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-06-26 09:11:37'),(139,'Given:  Drawings [3,500]; Net loss [2, 500]; Capital 1.1.2007 [35, 000], Additional capital [10, 000]. The adjusted capital as at 31 : 12 : 2007 is','N45, 000','N39,000','N35, 000','N46, 000','','','d','','utme','2016',73,'Admin','2016-11-16 07:48:41','2020-05-06 20:56:56'),(140,'A receipt is an evidence of','payments','stocking','delivery','discounts.','','','a','','utme','2016',72,'Admin','2016-11-16 07:48:41','2020-05-03 17:36:08'),(141,'An organization which has records of only personal accounts is said to be operating on the basis of','single entry','real accounts','double entry','nominal accounts','','','a','','utme','2016',97,'Admin','2016-11-16 07:48:41','2020-06-25 23:53:42'),(142,'A proprietor started business with N13, 000.  Assets and liabilities at the end of the year; fixed assets N8, 800, stock N2, 600, debtors  N1 , 000, cash N3, 000 and creditors N1 , 000. Determine the profit for the year?','N2, 400','N3, 000','N9, 800','N 1 , 400','','','d','','utme','2016',82,'Admin','2016-11-16 07:48:41','2020-04-28 17:41:03'),(143,'Badge Plc issued 450, 000 ordinary shares, of 50K each at N1 .50 per share. Application and allotment 45k, 1st call 50k, 2nd call 55k. Determine the amount received on final call.','N225, 000','N236, 250','N 247, 500','N 202, 500','','','c','','utme','2016',90,'Admin','2016-11-16 07:48:41','2020-06-27 19:42:58'),(144,'When goods are sent to the branch at cost plus mark­up, it means that the branch should sell at','a price above or below the stipulated price','any price but not below the transfer price','cost price','a price that is equal to the mark-up.','','','a','','utme','2016',71,'Admin','2016-11-16 07:48:41','2020-06-28 18:07:02'),(145,'The income and expenditure account differs from receipts and payments account because it','accounts for notional charges','records transactions that relate to the period on cash basis','records transactions that relate to the period  on accrual basis','accounts for balance of cash at bank.','','','b','','utme','2016',83,'Admin','2016-11-16 07:48:41','2020-06-09 11:47:30'),(146,'The major sources of revenue for the state and local governments is','value added tax','statutory allocation','taxes and levies','recurrent revenue.','','','b','','utme','2016',87,'Admin','2016-11-16 07:48:41','2020-06-01 19:36:02'),(147,'Which of the following -is -correct about the imprest system?','II and IV','I, III and IV','I, II and III','III and IV','I.   The amount of the imprest is the same from one organization to another. II. At the end of a fixed period, the petty cashier received a fixed sum of money.  III.  At the end of a period, the petty-cashier is reimbursed, with the amount spent in that period. IV. The system is a method by which a measure  of control is kept on petty cash expenses','','c','','utme','2016',82,'Admin','2016-11-16 07:48:41','2020-06-01 19:36:02'),(148,'When the fixed capital method is used, the partners share of profits and remunerations are credited to the','current account.','profit and Loss account.','profit and loss appropriation account.','capital account.','','','d','','utme','2016',88,'Admin','2016-11-16 07:48:41','2020-06-24 20:29:33'),(149,'A discount that is allowed to encourage a debtor to pay off his debt within a period is the','trade discount','annual discount','periodic discount','cash discount.','','','d','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-06-26 21:58:16'),(150,'The costs of acquiring fixed assets and bringing them into the firm is a','general expenses','recurrent expenditure','revenue expenditure','capital expenditure.','','','d','','utme','2016',87,'Admin','2016-11-16 07:48:41','2020-06-27 16:35:28'),(151,'The impersonal account is subdivided into','realand nominal accounts','nominal and personal accounts','real and current accounts','personal and real accounts.','','','a','','utme','2016',82,'Admin','2016-11-16 07:48:41','2020-06-28 18:07:02'),(152,'Opening balance of Diksacompany was 12, 202, closing balance N15,300, total cash received during the period N40, 000. What was the amount of cash paid during the same period?','N36. 902','N27,502','N12,498','N43.098','','','c','','utme','2016',90,'Admin','2016-11-16 07:48:42','2020-06-28 18:07:03'),(153,'The total cash and cheques received from customers in a control account is derived from the','income and expenditure account','cashbook','purchases day book','sales journal','','','d','','utme','2016',82,'Admin','2016-11-16 07:48:42','2020-04-30 17:58:09'),(154,'Which of the followings is a credit item in creditors ledger control account?','Returns outwards.','Discount Received.','Bad debts.','Purchases.','','','d','','utme','2016',102,'Admin','2016-11-16 07:48:42','2020-06-01 22:16:23'),(155,'The trader’s capital in a single entry system is ascertained by preparing','gross profit','statement of affairs','suspense account','appropriation account','','','b','','utme','2016',87,'Admin','2016-11-16 07:48:42','2020-06-28 18:07:02'),(156,'From the information above, sources of income for a Not-for-profit making organization include','I, III, IV','I, II, III','I, II, IV','I and IV','I.   Members subscription II.  Fines  from members  III. Donation  IV.  Loan from bank','','b','','utme','2016',80,'Admin','2016-11-16 07:48:42','2020-05-04 18:54:20'),(157,'Clifford pays rent of  N200 per month for premises. He paid N 2,800 within the year, Compute the prepayment.','N300','N400','N660','N200','','','b','','utme','2016',90,'Admin','2016-11-16 07:48:42','2020-06-24 20:34:44'),(158,'Purchases can be ascertained through the preparation of a','stock account','sales account','total debtors’ control account','total creditors, control account','','','d','','utme','2016',73,'Admin','2016-11-16 07:48:42','2020-06-24 20:29:33'),(159,'When stock is withdrawn, for personal use, the accounting entries is to debit','stock account, credit drawings','drawing account credit stock account','personal account credit cash account','cash account, credit personal account.','','','b','','utme','2016',130,'Admin','2016-11-16 07:48:42','2020-06-30 17:10:09'),(160,'Sundry debtors in the balance sheet of Onoja Bakery and Sons totaled N800,000. A provision of 2% was made for discount and 5% provision for bad and doubtful debts.  Find the amount for sundry debtors after provision.','N744,800','N 760,000','N784, 000','N744, 000','','','d','','utme','2016',79,'Admin','2016-11-16 07:48:42','2020-06-28 09:41:55'),(161,'Which of the following is accounted for in receipts and payments account?','Accrued expenses on annual dances','Subscriptions due but not yet received','Interest on bank deposit','Depreciation of the club house.','','','c','','utme','2016',75,'Admin','2016-11-16 07:48:42','2020-06-27 16:52:23'),(162,'When the purchase Consideration is lower than the net asset, the buyer has gained the advantage of','capital reserve','revenue reserve','net-income','net loss','','','a','','utme','2016',71,'Admin','2016-11-16 07:48:42','2020-06-26 17:03:02'),(163,'An increase in government expenditure within a year is taken care of by means of','virement','financial regulations','supplementary estimate','warrant.','','','b','','utme','2016',81,'Admin','2016-11-16 07:48:42','2020-06-28 09:41:55'),(164,'A business organization prepares departmental account in order to','ascertain the contribution of each department to the organization','ascertain interdepartmental transfer','build other branches','know the number of departments in the organization.','','','a','','utme','2016',72,'Admin','2016-11-16 07:48:42','2020-06-26 17:03:02'),(165,'The objective of departmental account is to','ascertain the amount of profits or losses for the enterprise','ascertain the amount of profits or losses for each department','ascertain the cost of running the organization.','offset the loss of each department.','','','b','','utme','2016',93,'Admin','2016-11-16 07:48:42','2020-06-28 09:41:55'),(166,'Which of the following expenses relate to the profit and loss account of a manufacturing firm?','Administrative overhead.','Direct labour','Direct materials.','Work-in-progress.','','','a','','utme','2016',85,'Admin','2016-11-16 07:48:42','2020-06-26 13:00:08'),(167,'The difference between book keeping and accounting is that while','book keeping interprets data accounting records it','book keeping is regarded as  the language of the business, accounting ascertains its .strength and weakness','book keeping records data accounting interprets it','book keeping - summaries information, accounting communicates it.','','','c','','utme','2016',80,'Admin','2016-11-16 07:48:42','2020-06-25 23:58:34'),(168,'Alaka who owed Saka N15, 000, settled his deb  after- deducting cash discount of 10%. To record the discount in the book of Saka, debit','Saka’s account and credit discount received account','Alaka’s account and credit discount received account','discount received account andcredit Alaka’s account','discount allowed account and credit Alaka’s account.','','','a','','utme','2016',86,'Admin','2016-11-16 07:48:42','2020-05-06 20:56:56'),(169,'If the scrap value is now N15, 000, what will be the yearly depreciation using straight line method?','N11 000','N7, 000','N 4, 000','N24. 000','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','c','','utme','2016',91,'Admin','2016-11-16 07:48:42','2020-06-02 01:19:50'),(170,'The yearly depreciation using the straight line method would be','N5,200','N6,500','N8, 800','N4, 400','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','a','','utme','2016',86,'Admin','2016-11-16 07:48:42','2020-05-03 17:28:52'),(171,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N  5,000','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','c','','utme','2016',88,'Admin','2016-11-16 07:48:42','2020-06-26 17:03:02'),(172,'The market value of goods produced is','N30,500','N3, 600','N31,600','N31,620','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','b','','utme','2016',92,'Admin','2016-11-16 07:48:42','2020-06-25 23:53:42'),(173,'A suspense account is used to','agree the trial balance','record sales','record purchases','correct errors','','','a','','wassce','1997',42,'Admin','2016-11-18 07:24:28','2020-06-25 23:53:42'),(174,'To correct an error, the Purchases Account was debited while Suspense Account was credited. Which  of  the following was the cause of the error?','Under casting of purchases','Overcasting of purchases','Original entry.','Transportation of returns outwards','','','a','','wassce','1997',54,'Admin','2016-11-18 07:24:28','2020-05-03 05:25:19'),(175,'Subscription in advance is treated in the Balance Sheet of \tnon-profit making organizations as','current asset','fixed asset','Current liability','accumulated fund','','','c','','wassce','1997',75,'Admin','2016-11-18 07:24:28','2020-06-26 17:03:02'),(176,'A Sales Day Book is used to record','cash sales of stock','credit sales of stock','cash and credit sales of stock','cash sales of fixed assets','','','b','','wassce','1997',78,'Admin','2016-11-18 07:24:28','2020-06-25 23:58:34'),(177,'Which of the following is not a capital expenditure to a local government?','Beds','Theatre equipment','Incubators','Drugs','','','d','','wassce','1997',78,'Admin','2016-11-18 07:24:28','2020-06-26 08:11:06'),(178,'A Receipt and Payments Account reveals','net profit','surplus','cash in hand','gross profit','','','c','','wassce','1997',83,'Admin','2016-11-18 07:24:28','2020-06-27 16:35:28'),(179,'An example of appropriation of profit in a company is','salaries','rent income','debenture interest','dividend.','','','d','','wassce','1997',57,'Admin','2016-11-18 07:24:28','2020-06-26 13:00:08'),(180,'In a partnership goodwill is recognized when','a new partner is admitted','a partner is dormant','the business is making huge profit','the business has good customer relations','','','a','','wassce','1997',70,'Admin','2016-11-18 07:24:28','2020-06-05 15:31:38'),(181,'Which of the following is a normal account?','Machinery','Debtors','Creditors','Salaries','','','d','','wassce','1997',74,'Admin','2016-11-18 07:24:28','2020-05-06 21:26:01'),(182,'The net book value at the time of sale was','N=  16,000','N=  14,000','N=  12,000','N= 6,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',70,'Admin','2016-11-18 07:24:28','2020-06-26 21:58:16'),(183,'Accumulated depreciation at the time of sale was','N= 16,000','N=  14,000','N=  12,000','N=  8,000','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','b','','wassce','1997',63,'Admin','2016-11-18 07:24:28','2020-06-24 20:34:44'),(184,'The prof it on sale was','N=  8,000','N=  7,000','N=  6,000','N=  1,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',65,'Admin','2016-11-18 07:24:28','2020-05-04 18:54:19'),(185,'In Manufacturing Account, prime cost plus factory overhead is known as','conversion cost','cost of raw materials consumed','total cost','production cost','','','d','','wassce','1997',66,'Admin','2016-11-18 07:24:28','2020-06-25 23:53:42'),(186,'Which of the following is an advantage of the imprest system?','Making high profits in the business','Rewarding the imprest holder','Easy preparation of the final accounts','Meeting small items of expenditure','','','d','','wassce','1997',64,'Admin','2016-11-18 07:24:28','2020-06-27 16:35:28'),(187,'Where a business is purchased, the full amount of the purchase consideration is credited to','Purchase of Business Account','Creditor’s Account','Vendor’s Account','Purchaser’s Account.','','','a','','wassce','1997',63,'Admin','2016-11-18 07:24:28','2020-06-27 19:42:58'),(188,'A financial plan of action expressed in monetary terms is known as','imprest','consolidated fund','warrant','budget','','','d','','wassce','1997',75,'Admin','2016-11-18 07:24:28','2020-05-04 10:18:00'),(189,'Which of the following is not a source document for recording sales?','Debit note','Credit note','Receipt','Sales journal','','','d','','wassce','1997',85,'Admin','2016-11-18 07:24:28','2020-07-01 01:19:58'),(190,'The mark-up is','N  15,000','N 9,000','N  4,000','N  3,000','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','d','','wassce','1997',67,'Admin','2016-11-18 07:24:28','2020-05-04 18:47:08'),(191,'The double entry required for the mark-up is debit Branch','Sales Account, credit Branch Adjustment Account','Adjustment Account, credit Branch Stock Account','Stock Account, credit Branch Adjustment Account','Profit and Loss Account, credit Branch Stock Account,','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','c','','wassce','1997',58,'Admin','2016-11-18 07:24:28','2020-06-02 16:55:45'),(192,'A ledger is a','book of accounts','summary of entries','book of original entry','double entry posting','','','d','','wassce','1997',57,'Admin','2016-11-18 07:24:29','2020-06-28 07:15:53'),(193,'A real account is the account of','expenses or losses','gains or income','physical tangible items','fictitious items','','','c','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-06-27 16:52:23'),(194,'An item is fictitious because it','does not exist','is too costly','is worthless','cannot be sold for cash','','','a','','wassce','1997',67,'Admin','2016-11-18 07:24:29','2020-06-02 10:21:57'),(195,'Which of the following is not a personal account?','Bolaji Account','Drawings Account','P.Z. Plc Account','Cash Account','','','c','','wassce','1997',63,'Admin','2016-11-18 07:24:29','2020-05-03 16:52:28'),(196,'A provision is','an expense of business to be paid for in cash','an amount of loss from trading activities','a loss in value of all business assets','an expense the amount of which is not certain','','','d','','wassce','1997',77,'Admin','2016-11-18 07:24:29','2020-05-04 10:07:01'),(197,'A cash discount is a','Trading Account item','Profit and Loss Account item','Appropriation Account item','Receipts and Payments Account item','','','b','','wassce','1997',66,'Admin','2016-11-18 07:24:29','2020-06-26 21:58:16'),(198,'The amount of capital expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','b','','wassce','1997',62,'Admin','2016-11-18 07:24:29','2020-06-25 23:22:50'),(199,'The amount of revenue expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','c','','wassce','1997',83,'Admin','2016-11-18 07:24:29','2020-06-24 20:34:44'),(200,'An expense becomes an accrual because it','is due for payment','is a Profit and Loss Account item','is a Trading Account item','is to be paid within the next one year','','','a','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-05-04 18:37:46'),(201,'The amount for which a business is sold is known as','goodwill','capital reserve','purchase consideration','premium','','','c','','wassce','1997',56,'Admin','2016-11-18 07:24:29','2020-06-27 16:52:23'),(202,'The person, who is responsible for the formation of a company is called the','promoter','sponsor','shareholder','director','','','a','','wassce','1997',59,'Admin','2016-11-18 07:24:29','2020-06-27 16:35:28'),(203,'The amount of a company’s profit given to a shareholder is known as','premium','dividend','interest','allotment','','','b','','wassce','1997',63,'Admin','2016-11-18 07:24:29','2020-06-26 13:00:08'),(204,'Which of the following best describes the path of a transaction?','Source documents to Journal to Ledger','Source documents to Ledger to Journal','Journal to Ledger to source documents','Journal to source documents to Ledger','','','a','','wassce','1997',79,'Admin','2016-11-18 07:24:29','2020-06-26 21:58:16'),(205,'Where there are no proper books of account, the capital at the commencement of a period is ascertained by preparing','Total Debtors and Creditors Accounts','Bank Reconciliation Statement','Statement of Affairs','Trading, Profit and Loss Accounts','','','c','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-06-09 12:07:13'),(206,'Rent receivable is a','current asset','current liability','contingent liability','fictitious asset','','','b','','wassce','1997',78,'Admin','2016-11-18 07:24:29','2020-06-03 20:26:00'),(207,'Which of the following is a factory overhead?','carriage on raw materials','Purchase of raw materials','Production wages','Depreciation of factory equipment.','','','d','','wassce','1997',73,'Admin','2016-11-18 07:24:29','2020-06-25 23:22:50'),(208,'The purchase consideration was','N  24,000','N 23,000','N  20,000','N 15,000','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','a','','wassce','1997',56,'Admin','2016-11-18 07:24:29','2020-06-24 20:29:33'),(209,'The amount of goodwill was','N  4,000','N  3,000','N  2,000','N  1,000.','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','d','','wassce','1997',74,'Admin','2016-11-18 07:24:29','2020-05-04 18:47:09'),(210,'When a share is sold for less than its nominal value, the difference is called','discount','reserve','premium','loss','','','a','','wassce','1997',62,'Admin','2016-11-18 07:24:29','2020-06-05 15:31:37'),(211,'Which of the following serves the same purpose as a Trading Account?','Branch Adjustment Account','Goods sent to Branch Account','Branch Stock Account','Branch Debtors Account','','','c','','wassce','1997',77,'Admin','2016-11-18 07:24:29','2020-06-26 08:11:06'),(212,'Which of the following is not a revenue receipt?','Receipt from sales of goods','Rent from premises sublet','Interest on savings account','cash on sale of fixed asset','','','d','','wassce','1997',76,'Admin','2016-11-18 07:24:29','2020-06-28 09:41:55'),(213,'The art of collecting, recording, presenting and interpreting accounting data is','cost accounting','management accounting','financial accounting','data processing.','','','c','','wassce','2006',78,'Admin','2016-11-18 07:56:05','2020-06-25 23:58:34'),(214,'The depreciation method in which the number of years of the useful life of an asset is allocated in a reverse order is','straight line','reducing balance','sum of the years’ digits','revaluation.','','','c','','wassce','2006',91,'Admin','2016-11-18 07:56:06','2020-06-26 09:11:37'),(215,'A system where a separate cash book is maintained for small payments is','single entry','imprest','float','reimbursement.','','','b','','wassce','2006',80,'Admin','2016-11-18 07:56:06','2020-06-25 23:58:34'),(216,'Public sector accounting is practiced in','public limited companies','government organizations','profit making organizations','public trading companies.','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:06','2020-06-28 07:15:53'),(217,'A book that contains the accounts for the financial transactions of an organization is the','journal','ledger','folio','register','','','b','','wassce','2006',81,'Admin','2016-11-18 07:56:06','2020-06-05 15:31:37'),(218,'A sales ledger contains','creditors’ accounts','nominal accounts','real accounts','debtors’ accounts.','','','d','','wassce','2006',96,'Admin','2016-11-18 07:56:06','2020-06-27 16:35:28'),(219,'Books of account consists of','ledgers and subsidiary books','ledgers and principal books','folios and subsidiary books','ledgers and cash book.','','','a','','wassce','2006',70,'Admin','2016-11-18 07:56:06','2020-05-03 09:44:33'),(220,'The amount set aside out of profits earned by a company which are not meant for liability or contingency are','dividends','provisions','retained profits','reserves','','','d','','wassce','2006',85,'Admin','2016-11-18 07:56:06','2020-06-27 19:42:58'),(221,'The basis of accounting which eliminates debtors and creditors is','cash basis','accrual basis','fund basis','commitment basis.','','','a','','wassce','2006',85,'Admin','2016-11-18 07:56:06','2020-06-26 13:00:08'),(222,'Which of the following is not a revenue account?','Sales','Purchases','Discount received','Interest received','','','b','','wassce','2006',84,'Admin','2016-11-18 07:56:06','2020-06-25 23:53:42'),(223,'If  no profit is to be retained, proposed preference shares dividend is','N  28,000','N  16,000','N  12,000.','N  4,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',73,'Admin','2016-11-18 07:56:06','2020-06-25 23:22:50'),(224,'If  no profit is to be retained, proposed ordinary shares dividend is','N   48,000','N  44,000','N  40,000','N  28,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','c','','wassce','2006',77,'Admin','2016-11-18 07:56:06','2020-06-26 17:03:02'),(225,'The dividend per ordinary share for the year is','N  0.88 kobo','N  0.40 kobo','N  0.20 kobo','N  0.17 kobo','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',82,'Admin','2016-11-18 07:56:06','2020-05-04 18:37:47'),(226,'A customer who returns goods to the supplier because they are defective is issued a','debit note','credit note','delivery note','bank note.','','','b','','wassce','2006',86,'Admin','2016-11-18 07:56:06','2020-06-26 09:11:37'),(227,'Cross referencing among different books of accounts is achieved with the use of','columns','reference numbers','folio','margin.','','','c','','wassce','2006',80,'Admin','2016-11-18 07:56:07','2020-06-27 16:52:23'),(228,'In company accounts, profit after tax is shared in the','appropriation account','revaluation account','current account','realization account.','','','a','','wassce','2006',80,'Admin','2016-11-18 07:56:07','2020-06-25 23:22:50'),(229,'Which of the following is not a source of revenue to a government?','Taxation','Sale of goods','Imposition of fines','Grants','','','b','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-06-28 07:15:53'),(230,'Whatever is fed into the computer is exactly what would be processed and produced as output. This is the concept of','sorting out','last in, first out','first in, first out','garbage in, garbage out.','','','d','','wassce','2006',85,'Admin','2016-11-18 07:56:07','2020-06-27 16:52:23'),(231,'Bank reconciliation statement reconciles','bank and cash balances in the cash book','bank balance in the cash book and bank statement balance','cash balance in the cash book and bank statement balance','bank balance brought down and bank balance carried down in the cash bcok.','','','b','','wassce','2006',77,'Admin','2016-11-18 07:56:07','2020-06-26 13:00:08'),(232,'The unit which keeps government’s books of accounts is the','Central Bank','Internal Audit Department','Treasury Department','Accountant General’s Department.','','','c','','wassce','2006',73,'Admin','2016-11-18 07:56:07','2020-06-26 21:58:16'),(233,'Which of the following is not a debit item in a partnership \tappropriation account?','Interest on drawings','Partner’s salary','Interest on partner’s capital','Share of profit.','','','a','','wassce','2006',88,'Admin','2016-11-18 07:56:07','2020-06-27 19:42:58'),(234,'Revenue is recognized in the profit and loss account as soon as a','debtor pays what is due from him','sale of goods takes place and money is received','sale of goods takes place whether or not money is received','sale of a fixed asset takes place.','','','c','','wassce','2006',79,'Admin','2016-11-18 07:56:07','2020-06-05 15:31:31'),(235,'“A business unit is assumed to operate into foreseeable future and earn reasonable net income”. This statement is emphasized by the concept of','business entity','going concern','realization','accrual.','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:07','2020-06-28 09:41:55'),(236,'Which of the following is not used in solving problems of incomplete records?','Control Accounts','Statement of affairs','Cash book','Balance sheet','','','d','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-05-04 10:07:00'),(237,'In a system of incomplete records, the opening capital is determined by preparing','statement of affairs','balance sheet','cash book','trial balance.','','','a','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-06-19 01:06:41'),(238,'Cost of raw materials consumed is','D113,000','D105,500','D98,000','D95,500.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','c','','wassce','2006',76,'Admin','2016-11-18 07:56:07','2020-06-26 13:00:08'),(239,'Prime cost is','D120,500','D117,700','D114,900','D114,300.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','b','','wassce','2006',69,'Admin','2016-11-18 07:56:07','2020-06-24 20:34:44'),(240,'Cost of goods manufactured is','D138,000','D131,800','D130,500','D123,000.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','a','','wassce','2006',71,'Admin','2016-11-18 07:56:07','2020-06-27 16:35:28'),(241,'A set of instructions fed into a computer for accomplishing a given task is a/an','input','programme','output','data.','','','b','','wassce','2006',86,'Admin','2016-11-18 07:56:07','2020-04-28 17:47:34'),(242,'Control accounts are also known as','contra accounts','total accounts','ledger accounts','integral accounts.','','','b','','wassce','2006',79,'Admin','2016-11-18 07:56:07','2020-06-27 19:42:58'),(243,'Which of the following is charged to trading account?','Discounts allowed','Carriage outwards','Salaries','Carriage inwards.','','','d','','wassce','2006',83,'Admin','2016-11-18 07:56:07','2020-06-26 17:03:02'),(244,'Which of the following is not a debit item in a creditor’s control \taccount?','Cash paid','Returns outwards','Purchases','Discounts received','','','c','','wassce','2006',79,'Admin','2016-11-18 07:56:07','2020-06-28 07:15:53'),(245,'Using the straight line method, the depreciation charged for year 2002 was','N 160,000','N  130.000','N  100,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',77,'Admin','2016-11-18 07:56:07','2020-06-24 20:29:33'),(246,'Using the reducing balance method, the depreciation charged for year 2002 was','N 100,000','N  90,000','N  80,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',76,'Admin','2016-11-18 07:56:07','2020-04-28 17:46:22'),(247,'Using the reducing balance method, the depreciation charged for year 2003 was','N  160,000','N  150,000','N   130,000','N  120,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','b','','wassce','2006',81,'Admin','2016-11-18 07:56:07','2020-06-26 08:11:06'),(248,'Which of the following is not a revenue expenditure?','Payment: of salaries','Payment for advertisement','Purchases of motor vehicle','Purchases of goods.','','','c','','wassce','2006',74,'Admin','2016-11-18 07:56:07','2020-05-06 04:50:22'),(249,'The amount allowed off the cost price of an article to stimulate patronage is','cash discount','trade discount','discount on debt','discount on bills.','','','b','','wassce','2006',83,'Admin','2016-11-18 07:56:08','2020-06-28 09:41:55'),(250,'Which of the following is a Journal as well as an account?','Sales day book','Cash book','General journal','Purchases journal','','','c','','wassce','2006',79,'Admin','2016-11-18 07:56:08','2020-06-28 18:07:02'),(251,'Which of the following columns of a three column cash book \tare memoranda?  I. Discount received  II. Discount allowed III. Cash IV. Bank','I and II only','I and III only','II and III only','ll and IV only.','','','d','','wassce','2006',88,'Admin','2016-11-18 07:56:08','2020-06-15 09:48:14'),(252,'The adjusted cash book balance is','D11,200','D8,400','D6,200','D5,600','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','d','','wassce','2006',83,'Admin','2016-11-18 07:56:08','2020-06-27 16:52:23'),(253,'The balance as per bank statement is','D10,900','D8,400','D5,600','D2,800','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','b','','wassce','2006',81,'Admin','2016-11-18 07:56:08','2020-06-26 13:00:08'),(254,'Where the head office maintains all books of account, goods sent to branch is credited to','Goods Sent to Branch Account','Branch Stock Account','Branch Stock Adjustment Account','Head Office Current Account','','','a','','wassce','2006',72,'Admin','2016-11-18 07:56:08','2020-06-27 16:35:28'),(255,'Which of the following is not a purpose for preparing departmental accounts? To','compare the results of different departments','employ staff into different departments','reward departmental managers','obtain information for formulating policies.','','','b','','wassce','2006',74,'Admin','2016-11-18 07:56:08','2020-06-28 18:07:03'),(256,'Rent expenses for the year 2005 is','N 11,400','N  11,300','N  11,200','N  10,200.','Rent accrued 1st January, 2005 [600], Rent paid in 2005 [11,300], Rent prepaid 31st December, 2005 [500]','','c','','wassce','2006',101,'Admin','2016-11-18 07:56:08','2020-06-26 21:58:16'),(257,'Which of the following is not classified as an overhead?','Factory rates','Factory power','Factory building extension','Factory depreciation.','','','c','','wassce','2006',87,'Admin','2016-11-18 07:56:08','2020-06-05 15:31:33'),(258,'The objective of accounting information is to enable users to','prepare the financial statements.','value stock','make decisions','prepare budgets','','','c','','wassce','2012',89,'Admin','2016-12-13 21:23:13','2020-06-28 18:07:02'),(259,'Trade discounts are given for','bulk purchases','prompt payment','quick delivery','cash payment','','','a','','wassce','2012',82,'Admin','2016-12-13 21:23:13','2020-05-04 18:12:30'),(260,'When closing stock is overstated, it would reduce','cost of sales and increase gross profit.','gross profit and increase cost of sales.','purchases and increase sales.','sales and increase purchases.','','','a','','wassce','2012',83,'Admin','2016-12-13 21:23:13','2020-06-05 15:31:32'),(261,'Which of the following is not a source document?','Journal proper','Sales invoice','Debit note','Credit note','','','a','','wassce','2012',82,'Admin','2016-12-13 21:23:13','2020-06-02 01:19:50'),(262,'A fixed asset fully written-down by a trader is now considered to be worth N5,000. The double entry required to effect       this is: debit','Asset Account; credit Purchases Account.','Asset Account; credit Capital Account.','Capital Account; credit Asset Account.','Capital Account; credit Profit and Loss Account.','','','b','','wassce','2012',69,'Admin','2016-12-13 21:23:13','2020-06-26 21:58:16'),(263,'Which of the following is a book of original entry?','Ledger','Balance sheet','Bank statement','Sales journal','','','d','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-06-24 20:34:44'),(264,'A Balance Sheet shows only','fixed assets and current assets','assets and long term liabilities.','assets and liabilities','assets and capital','','','c','','wassce','2012',76,'Admin','2016-12-13 21:23:13','2020-06-27 16:52:23'),(265,'The process of entering transaction from one book to another is','reading.','posting.','numbering','listing','','','b','','wassce','2012',74,'Admin','2016-12-13 21:23:13','2020-04-28 16:19:59'),(266,'which of the following is a Trading Account item?','Discounts allowed','Discounts received','Carriage outwards','Carriage inwards','','','d','','wassce','2012',75,'Admin','2016-12-13 21:23:13','2020-06-26 13:00:08'),(267,'The addition of prime cost and factory overheads is','total factory overheads.','market value of goods produced.','cost of goods produced','work-in-progress.','','','c','','wassce','2012',79,'Admin','2016-12-13 21:23:13','2020-05-06 21:26:01'),(268,'Capital receipt is collected','on sales of motor vehicle.','on sales of stock in trade.','from trade debtor','from trading activities.','','','a','','wassce','2012',78,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(269,'Which of the following is an example of factory overheads?','Salary of marketing officer','Salary of production officer','Salary of accounting officer','Wages of machine operator','','','d','','wassce','2012',77,'Admin','2016-12-13 21:23:13','2020-06-26 17:03:02'),(270,'Osa started business with Le40,000 cash. The accounting entry is debit','Cash Account; credit Capital Account.','Capital Account; credit Cash Account.','Purchases Account; credit Cash Account.','Expenses Account; credit Capital Account.','','','a','','wassce','2012',82,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(271,'Branch Stock Account is used to determine the','net value of goods sent to branch.','gross profit of the branch.','branch credit sales.','branch net profit or loss.','','','b','','wassce','2012',84,'Admin','2016-12-13 21:23:13','2020-06-15 09:48:14'),(272,'The name given to a budget in public service accounting is','vote.','subvention.','general order.','estimate.','','','d','','wassce','2012',81,'Admin','2016-12-13 21:23:13','2020-06-25 23:53:42'),(273,'Which of the following is not prepared by a partnership?','Trading Account','Profit and Loss Account','Income and Expenditure Account','Profit and Loss Appropriation Account','','','c','','wassce','2012',84,'Admin','2016-12-13 21:23:13','2020-06-26 21:58:16'),(274,'A partner who only makes capital contribution but does not take part in the management of the partnership business is a/an','ordinary partner','limited partner','dormant partner','nominal partner','','','d','','wassce','2012',77,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(275,'Which of the following is component of prime cost?','Depreciation','Royalty','Factory rent','Factory electricity','','','d','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(276,'The concept which establishes the rule for the periodic recognition of revenue as soon as it is capable of objective measurement is','going concern.','entity.','consistency.','realization.','','','d','','wassce','2012',76,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(277,'Rent accrued in 2009 was D140. In 2010, D900 was paid while D160 was outstanding. Rent for 2010 was','D1,200.','D1.060.','D920.','D880.','','','c','','wassce','2012',61,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(278,'Which of the following is not an input device?','Card reader','Paper top reader','Alpha-numeric keyboard','Line printer','','','d','','wassce','2012',64,'Admin','2016-12-13 21:23:14','2020-06-26 09:11:37'),(279,'The equivalent of Income and Expenditure Account in a trading concern is','Trading Account.','Profit and Loss Account.','Appropriation Account.','Balance Sheet.','','','b','','wassce','2012',85,'Admin','2016-12-13 21:23:14','2020-05-04 18:47:10'),(280,'The term used to denote the capital of a not-for-profit making \torganization is','annuity fund.','nominal capital.','circulating capital.','cumulated fund','','','d','','wassce','2012',84,'Admin','2016-12-13 21:23:14','2020-06-28 18:07:03'),(281,'The portion of authorized capital that has been allotted to subscribers is','called up capital','paid up capital.','issued capital','nominal capital.','','','c','','wassce','2012',78,'Admin','2016-12-13 21:23:14','2020-06-25 23:22:50'),(282,'Partners whose liabilities are restricted to their financial contribution to the partnership in the event of winding up are','ordinary partners','limited partners','dormant partners','sleeping partners','','','b','','wassce','2012',68,'Admin','2016-12-13 21:23:14','2020-05-04 10:18:01'),(283,'If creditors at 1/1/10 were Le 3,000; creditors at 31/12/10 Le 5,500 and payments to creditors Le 29,000. The purchases figure for 2010 is','Le 34,500','Le 32,000','Le 31,500','Le 26,500','','','c','','wassce','2012',81,'Admin','2016-12-13 21:23:14','2020-06-28 18:07:03'),(284,'Which of the following is not found in the personal ledger?','Debtors Account','Creditors Account','Capital Account','Nominal Account','','','c','','wassce','2012',87,'Admin','2016-12-13 21:23:14','2020-06-27 16:52:23'),(285,'The Sales Ledger Control Account is also referred to as','Bought Ledger Control Account.','Purchases Account.','Total Debtors Account.','Total Creditors Account.','','','c','','wassce','2012',82,'Admin','2016-12-13 21:23:14','2020-06-26 21:58:16'),(286,'Capital expenditure for the year was','Le 545,000','Le 490,000','Le 450,000','Le 300,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','b','','wassce','2012',83,'Admin','2016-12-13 21:23:14','2020-06-27 16:35:28'),(287,'The amount of recurrent expenditure was','Le 245,000.','Le 175,000','Le 135,00.','Le 80,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','c','','wassce','2012',80,'Admin','2016-12-13 21:23:14','2020-05-04 18:47:09'),(288,'An increase in the provision for doubtful debts results in a/an','increase in the gross profit.','decrease in the gross profit.','decrease in the net profit.','increase in the net profit.','','','c','','wassce','2012',68,'Admin','2016-12-13 21:23:14','2020-06-27 19:42:58'),(289,'Which of the following errors affects the agreement of a Trial Balance?','Wrong addition in the sales account','Crediting a purchase to A. Tambi’s account instead of F. Tambi’s account','Failure to enter sales in the books','Posting the purchase of a van to the debit side of the purchases account','','','a','','wassce','2012',74,'Admin','2016-12-13 21:23:14','2020-06-28 18:07:02'),(290,'The excess of the value of assets over the purchase \tconsideration on acquisition of a business is credited to','share capital account.','goodwill account.','capital reserve account','general reserve account.','','','c','','wassce','2012',76,'Admin','2016-12-13 21:23:14','2020-06-26 09:11:37'),(291,'Shares of N3 nominal value were issued at a price of  N4. The difference of N1 is a','commission.','discount.','premium.','bonus.','','','c','','wassce','2012',89,'Admin','2016-12-13 21:23:14','2020-06-05 15:31:33'),(292,'Which of the following is not the purpose of control account?','Check on errors of addition','Locate errors','Locate missing figures','Monitor the cash book','','','d','','wassce','2012',82,'Admin','2016-12-13 21:23:14','2020-06-30 09:28:41'),(293,'Which of the following is not part of the Central Processing Unit of a computer?','Arithmetical and Logical unit','Memory unit','Input unit','Control unit','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:14','2020-06-26 13:00:08'),(294,'The double entry to record the proceeds on disposal of assets is debit','Bank Account; credit Asset Disposal Account.','Asset Disposal Account; credit Bank Account.','Provision for Depreciation Account; credit Asset Disposal Account','Asset Disposal Account; credit Provision for Depreciation Account.','','','a','','wassce','2012',70,'Admin','2016-12-13 21:23:14','2020-06-27 19:42:58'),(295,'An underwriter for a company’s share is paid','Interest.','commission.','dividend.','salary.','','','b','','wassce','2012',78,'Admin','2016-12-13 21:23:15','2020-06-28 18:07:03'),(296,'Which of the following is found in a Memorandum of \tAssociation?','Names of directors','Appointment of directors','Object of the business','Payment of dividend','','','c','','wassce','2012',81,'Admin','2016-12-13 21:23:15','2020-06-26 09:11:37'),(297,'Administrative, selling and distribution expenses in a \tmanufacturing firm are recorded in','Trading Account.','Manufacturing Account.','Profit and Loss Account.','Balance Sheet.','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:15','2020-06-26 17:03:02'),(298,'Which of the following is not a revenue to a local government?','Fines','Licenses','Personal income tax','Tenement rates','','','c','','wassce','2012',77,'Admin','2016-12-13 21:23:15','2020-06-05 15:31:32'),(299,'The capital is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','a','','wassce','2012',80,'Admin','2016-12-13 21:23:15','2020-06-26 13:00:08'),(300,'The liability is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','d','','wassce','2012',89,'Admin','2016-12-13 21:23:15','2020-06-27 16:52:23'),(301,'Which of the following is not an item in the profit and loss account?','Drawings','Interest','Balances','Bad debts','','','a','','wassce','2012',82,'Admin','2016-12-13 21:23:15','2020-06-26 21:58:16'),(302,'A loss made on the disposal of a fixed asset is debited to','Sales Account.','Purchases Account.','Profit and Loss Account.','Capital Account.','','','c','','wassce','2012',84,'Admin','2016-12-13 21:23:15','2020-06-28 09:41:55'),(303,'Which of the following describes a trial balance?','It is a special account','It is a list of balances in the books','It reveals the financial position of a business','It shows all the entries in the books of a business','','','b','','wassce','2015',60,'Admin','2016-12-14 06:09:04','2020-05-04 18:12:30'),(304,'Which of the following is not a feature of accounting information?','Affordability','Timeliness','Accuracy','Completeness','','','a','','wassce','2015',71,'Admin','2016-12-14 06:09:05','2020-06-27 19:42:58'),(305,'Which of the following is the equation for determining net profit or loss from the records of a firm?','Closing Capital - Drawings - Capital Introduced','Opening Capital + Drawings - Closing Capital','Closing Capital + Opening Capital - Drawings','Closing Capital + Drawings - Opening Capital','','','d','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-06-26 21:58:16'),(306,'Purchase invoice is first entered in the','purchases account','cash book','sales journal','purchase journal','','','d','','wassce','2015',70,'Admin','2016-12-14 06:09:05','2020-06-26 13:00:08'),(307,'Assets acquired is recorded by debiting','Asset Account, crediting Cash Account','Cash Account, crediting Asset Account','Purchase of Business Account, crediting Sale of Business Account','Asset Account, crediting Purchase of business Account','','','a','','wassce','2015',70,'Admin','2016-12-14 06:09:05','2020-06-26 13:00:08'),(308,'Goods returned to a supplier is','debited to Returns outwards account','credited to Returns outwards account','debited to Returns inwards account','credited to Returns inwards account','','','b','','wassce','2015',63,'Admin','2016-12-14 06:09:05','2020-06-28 07:15:53'),(309,'Which of the following is a real account?','Plant account','Salaries account','Creditors account','Trading account','','','a','','wassce','2015',73,'Admin','2016-12-14 06:09:05','2020-06-26 21:58:16'),(310,'The accounting ledger for goods sold on credit are debit','Debtors Account, credit Sales Account','Creditors Account, credit Sales Account','Sales Account, credit Debtors Account','Sales Account, credit Creditors Account','','','a','','wassce','2015',67,'Admin','2016-12-14 06:09:05','2020-06-27 19:42:58'),(311,'Which of the following is not a book of original entry?','Sales journal','Purchases account','Cash account','Return inwards journal','','','c','','wassce','2015',77,'Admin','2016-12-14 06:09:05','2020-06-25 23:22:50'),(312,'What is the ledger entry for the sale of plant and machinery on credit to Wilson?','Credit Sales Account and debit Cash Account','Credit Plant and Machinery Account and debit Wilson’s Account','Credit Sales Account and debit Wilson’s Account','Credit Plant and Machinery Account and debit Cash Account','','','b','','wassce','2015',65,'Admin','2016-12-14 06:09:05','2020-05-04 18:54:20'),(313,'Discount Received Account is a','real account','personal account','nominal account','profit and loss account','','','c','','wassce','2015',64,'Admin','2016-12-14 06:09:05','2020-06-28 09:41:55'),(314,'Which of the following accounts has a credit balance?','Capital','Cash','Drawings','Premises','','','a','','wassce','2015',54,'Admin','2016-12-14 06:09:05','2020-06-27 16:35:28'),(315,'The accounting entry to correct sales day book overcast is','debit Sales Account and credit Debtors Account','debit Suspense Account and credit Sales Account','debit Debtors Account and credit Suspense Account','debit Sales Account and credit Suspense Account','','','d','','wassce','2015',79,'Admin','2016-12-14 06:09:05','2020-06-26 17:03:02'),(316,'Which of the following expresses the accounting equating?','Capital + Assets = Liabilities','Assets - Liabilities = Capital','Liabilities + Current Assets = Fixed Assets','Liabilities - Capital = Current Assets','','','b','','wassce','2015',69,'Admin','2016-12-14 06:09:05','2020-06-28 18:07:03'),(317,'When the invoice of a customer is overcast, the supplier will send to him a','cheque','payment voucher','debit note','credit note','','','d','','wassce','2015',63,'Admin','2016-12-14 06:09:05','2020-06-27 16:52:23'),(318,'Unpresented cheques are cheque','that have been recorded in the cash book, but not by the bank','that have been received by the bank, but recorded in the cash book','returned by the bank','written, but not handed over to customers','','','a','','wassce','2015',70,'Admin','2016-12-14 06:09:05','2020-06-25 23:58:34'),(319,'The cost of putting goods into a saleable condition is charged to','balance sheet','trial balance','profit and loss account','trading account','','','d','','wassce','2015',76,'Admin','2016-12-14 06:09:05','2020-06-25 23:58:34'),(320,'Which of the following is not a method of depreciating fixed assets?','Revaluation','Straight line','Diminishing balance','Obsolescence','','','d','','wassce','2015',52,'Admin','2016-12-14 06:09:05','2020-06-25 23:53:42'),(321,'In preparing a profit and loss account, a decrease in provision for doubtful debts accounts is treated as','Currentability','expenses','Income','Current asset','','','c','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-26 17:03:02'),(322,'Which of the following items is found in the sales ledger control account?','Discount received','Total credit purchases','Discount allowed','Returns outwards','','','a','','wassce','2015',64,'Admin','2016-12-14 06:09:06','2020-06-25 23:53:42'),(323,'The process of using sales ledger balance to cancel off purchases ledger balance is','balancing','set off','reconciliation','cancelling','','','b','','wassce','2015',81,'Admin','2016-12-14 06:09:06','2020-06-05 15:31:36'),(324,'The total of the returns outwards journal is posted to the','credit side of the returns outwards book','debit side of the returns outwards account','debit side of the purchases returns book','credit side of the returns outwards account','','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-06-28 18:07:02'),(325,'Which of the following is not revealed by a firm’s accounting records?','Profit of a period','Quality of labour force','Credit worthiness','Value of assets','','','b','','wassce','2015',75,'Admin','2016-12-14 06:09:06','2020-06-26 21:58:16'),(326,'In the balance sheet of a social club, subscription owing is treated as a','current liability','current asset','tangible asset','long-term liability','','','b','','wassce','2015',71,'Admin','2016-12-14 06:09:06','2020-06-25 23:22:50'),(327,'The accounting concept that allows the cost of kitchen cutlery to be expensed, though it will be used for more than one year is','materiality','accrual','going concern','business entity','','','a','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-05 15:31:32'),(328,'The accounting concept that assumes that a business will continue operating for an indefinite period is','business entity','going concern','consistency','duality','','','b','','wassce','2015',64,'Admin','2016-12-14 06:09:06','2020-06-25 23:58:34'),(329,'The accounting concept that states that a firm’s financial affairs must be separated from that of the owner’s private transactions is','business entity','going concern','consistency','duality','','','a','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-06-26 08:11:06'),(330,'Goodwill is recognized in partnership accounts when','the business makes a huge profit','the business has good customer relationship','a partner is dormant','a new partner is admitted','','','d','','wassce','2015',66,'Admin','2016-12-14 06:09:06','2020-06-25 23:53:42'),(331,'In which of the following accounts is interest on partners capital found?','Profit and loss','Trading','Income surplus','Profit and loss appropriation.','','','d','','wassce','2015',76,'Admin','2016-12-14 06:09:06','2020-06-28 18:07:02'),(332,'Which of the following is not stated in the partnership agreement?','Profit sharing ratio','Interest on capital','Interest on fixed asset','Purpose of partnership','','','c','','wassce','2015',67,'Admin','2016-12-14 06:09:06','2020-06-28 07:15:53'),(333,'How much was paid for goodwill?','GHc/ 350,000','GHc/ 260,000','GHc/  90,000','GHc/ 60,000','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','d','','wassce','2015',66,'Admin','2016-12-14 06:09:06','2020-06-01 22:41:24'),(334,'The double entry to record the goodwill in the books is debit','Cash Account and credit Goodwill Account','Goodwill Account and credit Purchase of Business Account','Goodwill Account and credit Cash Account','Purchase of Business Account and credit Cash Account','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','b','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-24 20:29:33'),(335,'The document which sets out the internal arrangement for the proper management of a company is the','prospectus','article of association','memorandum of association','certificate of incorporation','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','c','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-06-05 15:31:36'),(336,'A person who has applied to purchase shares in a company is referred to as','a promoter','a subscriber','an allottee','an underwriter','','','b','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-06-25 23:53:42'),(337,'Which of the following expenses is allocated according to the floor \tarea?','Wages and Salaries','Rent and rates','Canteen expenses','Discount allowed','','','b','','wassce','2015',70,'Admin','2016-12-14 06:09:06','2020-06-27 16:52:23'),(338,'Goods stolen at the branch is debited to','Defalcations Account','Branch Stock Account','Branch Adjustment Account','Branch Debtors Account','','','c','','wassce','2015',67,'Admin','2016-12-14 06:09:06','2020-06-26 13:00:08'),(339,'Which of the following is a source of revenue for a local government?','Personal income tax','Company registration fees','Royalties','Market tolls','','','d','','wassce','2015',56,'Admin','2016-12-14 06:09:06','2020-06-02 16:55:45'),(340,'The instrument used to release fund which the minister of finance had earlier withheld is','reserve expenditure warrant','supplementary general warrant','provisional general warrant','supplementary statutory warrant','','','b','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-28 09:41:55'),(341,'Which of the following relates to cash basis of accounting?','Accruals and prepayments are considered','Debtors and creditors are recorded','Fixed assets are written off in the year of purchase','Profits are maximized','','','d','','wassce','2015',66,'Admin','2016-12-14 06:09:06','2020-06-25 23:22:50'),(342,'Which of the following is found on the credit side of a partnership’s appropriation of profit account?','Interest on capital','Interest on drawings','share of profit','Drawings','','','b','','wassce','2015',58,'Admin','2016-12-14 06:09:06','2020-06-27 16:52:23'),(343,'Which of the following is a spreadsheet application?','Excel','Word','Internet','Windows','','','a','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-26 21:58:16'),(344,'The quality of output information depends on the','quality of input data','time of processing','speed of processing','quantity of output device','','','a','','wassce','2015',70,'Admin','2016-12-14 06:09:07','2020-06-28 07:15:53'),(345,'The source document used to make entries in the purchases day book is','debit note','credit note','invoice','receipt','','','a','','wassce','2014',70,'Admin','2016-12-14 06:44:38','2020-05-03 17:44:35'),(346,'book that contains individual accounts of suppliers is the','purchases ledger','general ledger','nominal ledger','sales ledger','','','a','','wassce','2014',64,'Admin','2016-12-14 06:44:39','2020-06-26 08:11:06'),(347,'In the operation of an imprest system of petty cash, the','petty cashier pays all expenses','petty cashier pays money to the accountant','petty cashier regularly begins each period with the same amount of money','main cashier accounts to the petty cashier for some expenses made by him','','','c','','wassce','2014',64,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(348,'An example of a credit entry in a profit and loss account is','carriage inwards','carriage outwards','discounts allowed','discounts received','','','d','','wassce','2014',57,'Admin','2016-12-14 06:44:39','2020-06-25 23:53:42'),(349,'Which of the following subsidiary books involves cash movement?','Sales day book','Purchases day book','Returns inwards book','Petty cash book','','','d','','wassce','2014',70,'Admin','2016-12-14 06:44:39','2020-06-26 21:58:16'),(350,'The accounting treatment for a dishonoured cheque is; debit','Customer’s Account; Credit Bank Account','Bank Account; Credit Customer’s Account','Customer’s Account; Credit Sales Account','Sales Account; Credit Customer’s Account\\\\','','','a','','wassce','2014',72,'Admin','2016-12-14 06:44:39','2020-06-28 18:07:02'),(351,'Net turnover is referred to as','purchases','assets','sales','profits','','','c','','wassce','2014',73,'Admin','2016-12-14 06:44:39','2020-06-26 17:03:02'),(352,'Which of the following transactions will result in disagreement between the cash book and the bank statement?','Selling of goods on credit to a customer','Withdrawal of goods by the proprietor for his personal use','Cheque paid directly into the bank account by a customer','Omission of purchases received from a supplier on credit','','','c','','wassce','2014',63,'Admin','2016-12-14 06:44:39','2020-06-27 16:35:28'),(353,'Purchases Account is overcast by N200, while Wages Account is under cast by N200. This is','an error of omission','a compensating error','an error of commission','an error of principle','','','b','','wassce','2014',69,'Admin','2016-12-14 06:44:39','2020-06-28 18:07:02'),(354,'Which of the following is used to record the disposal of a fixed asset?','Journal  Proper','Petty  Cash  Book','Sales Day Book','Purchases Day Book','','','a','','wassce','2014',66,'Admin','2016-12-14 06:44:39','2020-06-28 07:15:53'),(355,'The annual depreciation is','N9,000','N8,500','N8,000','N6,500','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',79,'Admin','2016-12-14 06:44:39','2020-06-28 18:07:03'),(356,'The accumulated depreciation as at 31/12/2013 is','N18,500','N17,000','N16,000','N8,000','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',71,'Admin','2016-12-14 06:44:39','2020-06-27 16:35:28'),(357,'An error of principle is made, if','an entry has been made in the wrong class of account','a transaction has been completely omitted','an entry has been made on the wrong side of the two accounts concerned','a transaction is entered in both accounts for the wrong amount','','','a','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-06-25 23:58:34'),(358,'Which of the following is entered in the general journal?','Purchase of goods','Sale of goods on credit','Returns inwards','Acquisition of fixed assets','','','d','','wassce','2014',75,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(359,'The cost of carriage outward is classified as','a selling and distribution expense','an administrative expense','a trading expense','a finance expense','','','a','','wassce','2014',67,'Admin','2016-12-14 06:44:39','2020-06-27 16:52:23'),(360,'The purchase of ten ceiling fans by Akpan Electronic Enterprises will be recorded as','an acquisition of fixed asset','an expense in its general office expense account','part of capital in the capital account','an acquisition of stock','','','d','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-06-27 19:42:58'),(361,'Which of the following accounts would appear in the nominal ledger?  (I)  Sanison’s account (a debtor)  ( II) Motor vehicle account (III) Sales account  (IV)  Rent and rates account','I, II and III only','I, III and IV only','II, III and IV only','Ill and IV only','','','b','','wassce','2014',72,'Admin','2016-12-14 06:44:39','2020-06-27 16:35:28'),(362,'The sum of direct cost in a manufacturing account is','production cost','prime cost','total cost','finance cost','','','b','','wassce','2014',61,'Admin','2016-12-14 06:44:39','2020-06-25 23:22:50'),(363,'Net profit in a business is','the amount of money taken out of the business by the owner','the cash in the business bank account','the difference between sales and cost of sales','sale revenue less cost of sales and expenses','','','d','','wassce','2014',67,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(364,'An example of a self-balancing account is the','suspense account','creditor’s account','control account','debtor’s accoun','','','c','','wassce','2014',67,'Admin','2016-12-14 06:44:39','2020-05-04 18:30:26'),(365,'The gross profit is','GHc/  2,160,000','GHc/ 1440,000','GHc/ 1,080,000','GHc/ 720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',71,'Admin','2016-12-14 06:44:39','2020-06-26 09:11:37'),(366,'The cost of sales is','GHc/  2,160,000t','GHc/ 1440,000','GHc/ 1,080,000','GHc/  720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',80,'Admin','2016-12-14 06:44:39','2020-06-27 19:42:58'),(367,'Which of the following is not an administrative expenses in a \tmanufacturing organization?','Discounts allowed','Office electricity','Stationery','Insurance','','','a','','wassce','2014',64,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(368,'When an asset is sold, the entries for the accumulated depreciation are: debit','Asset Disposal Account; credit Provision for Depreciation Account.','Provision for Depreciation Account; Credit Asset Disposal Account','Fixed Asset Account; Credit Asset Disposal Account','Asset Disposal Account; Credit Fixed Asset Account','','','b','','wassce','2014',63,'Admin','2016-12-14 06:44:39','2020-05-06 04:56:52'),(369,'A petty cash account has an imprest of D28,000. The account has a debit balance of D5.000. How much cash is needed to restore the imprest?','D33,000','D28,000','D23,000','D5,000','','','c','','wassce','2014',65,'Admin','2016-12-14 06:44:39','2020-06-28 07:15:53'),(370,'In a not - for - profit making organization, when the total income \tis less than the total expenditure, the difference is a','surplus','shortfall','loss','deficit','','','d','','wassce','2014',73,'Admin','2016-12-14 06:44:39','2020-06-28 07:15:53'),(371,'The accounting concept underlying the treatment of personal expenses of the business owner as drawing is','periodicity','accrual','entity','materiality','','','c','','wassce','2014',71,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(372,'Which of the following items is not contained in the Receipts and Payments Account?','Subscription paid in advance','tock paid for in advance','Outstanding wages and salaries','Donations','','','c','','wassce','2014',64,'Admin','2016-12-14 06:44:40','2020-06-26 21:58:16'),(373,'The concept that states that a business should not lay claim to any profits before it is earned with reasonable certainty is','consistency concept','prudence concept','accrual concept','going concern concept','','','b','','wassce','2014',67,'Admin','2016-12-14 06:44:40','2020-06-25 23:53:42'),(374,'When shares are issued above their nominal value, the \texcess above the nominal value is','credited to Profit and Loss Account','debited to Share Premium Account','credited to Share Capital Account','credited to share Premium Account','','','d','','wassce','2014',76,'Admin','2016-12-14 06:44:40','2020-06-27 16:52:23'),(375,'Shares issued below nominal value are referred to as shares at','premium','discount','face value','cumulative value','','','b','','wassce','2014',77,'Admin','2016-12-14 06:44:40','2020-06-28 18:07:02'),(376,'The accounting ratio used to measure the average number of days for which suppliers remain unpaid is','stock turnover','creditors’ payment period','debtors collection period','return on capital employed','','','b','','wassce','2014',71,'Admin','2016-12-14 06:44:40','2020-06-26 21:58:16'),(377,'When the purchase consideration exceeds the value of business, the difference is','profit','discount','goodwill','reserve','','','c','','wassce','2014',78,'Admin','2016-12-14 06:44:40','2020-06-28 09:41:55'),(378,'The primary classification of government expenditure is based on','Programs','funds','activity','project','','','b','','wassce','2014',73,'Admin','2016-12-14 06:44:40','2020-06-28 07:15:53'),(379,'An example of input device of a computer is','an optical character reader','a graph plotter','a visual display unit','printer','','','a','','wassce','2014',66,'Admin','2016-12-14 06:44:40','2020-06-27 16:35:28'),(380,'The accounting concept which states that expenditure involving insignificant amounts should be regarded as expenses and not assets is','business entity','materiality','dual aspect','realization','','','b','','wassce','2014',87,'Admin','2016-12-14 06:44:40','2020-06-27 16:52:23'),(381,'A company made a net profit of N2,000,000 for the year and its net profit percentage is 25%. What is the total sales   for the year?','N8,000,000','N6,000,000','N800,000','N500,000','','','a','','wassce','2014',76,'Admin','2016-12-14 06:44:40','2020-06-25 23:58:34'),(382,'Which of the following information is recorded in the returns outwards book?','Goods purchased on credit and subsequently returned to supplier','Fixed asset bought on credit and subsequently returned to supplier','Cash payment received from a customer and subsequently returned to supplier','Goods sold to a customer and subsequently returned to the business.','','','a','','wassce','2014',81,'Admin','2016-12-14 06:44:40','2020-06-28 09:41:55'),(383,'Calculate the stock figure to be included in the balance sheet at the year end.','D408,000','D346,000','D284,000','D62,000',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',67,'Admin','2016-12-14 06:44:40','2020-06-27 16:52:23'),(384,'The concept applied in answering question 42 above is','matching','consistency','prudence','entity',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',54,'Admin','2016-12-14 06:44:40','2020-06-28 09:41:55'),(385,'Subscriptions in advance is classified in the balance sheet as','an asset','a liability','a deficit','a surplus','','','b','','wassce','2014',68,'Admin','2016-12-14 06:44:40','2020-06-26 17:03:02'),(386,'Which of the following items is not treated in the Profit and Loss Account?','Office expenses','Salaries and allowances','Carriage inwards','Discounts allowed','','','c','','wassce','2014',73,'Admin','2016-12-14 06:44:40','2020-06-28 07:15:53'),(387,'The document prepared by a local/district government to present its annual estimates for a planning period is','a balance sheet','budget','an income and expenditure account','a cash book','','','b','','wassce','2014',69,'Admin','2016-12-14 06:44:40','2020-06-26 09:11:37'),(388,'A manufacturing account is drawn up by','firms providing personal services','firms engaged solely in buying and selling of goods','firms which make and sell articles','non - trading organization.','','','c','','wassce','2014',69,'Admin','2016-12-14 06:44:40','2020-06-25 23:53:42'),(389,'Which of the following is not a factory overhead cost?','Manufacturing wages','Factory rent','Depreciation of machinery','Salary of factory guard','','','a','','wassce','2014',80,'Admin','2016-12-14 06:44:40','2020-06-05 15:31:35'),(390,'A collection of fields relating to one logically definable unit of business information is known as','data','character','byte','record','','','d','','wassce','2014',84,'Admin','2016-12-14 06:44:40','2020-06-26 09:11:37'),(391,'The principle of double entry book - keeping states that','every debtor must have a creditor','every account debited must be immediately credited','for every debit entry, there must be a corresponding credit entry','for every double debit, there must be a double credit.','','','c','','wassce','2014',74,'Admin','2016-12-14 06:44:40','2020-06-25 23:58:34'),(392,'The accounting principle that is applied to check arbitrary actions on the part of accountants is','consistency','materiality','objectivity','realization','','','a','','utme','2004',103,'Admin','2016-12-15 06:52:04','2020-06-27 16:52:23'),(393,'The loss of equipment in a fire disaster results in','a decrease in current assets','an increase in liabilities and assets','a decrease in assets and capital','an increase in liabilities and a decrease in  assets.','','','c','','utme','2004',88,'Admin','2016-12-15 06:52:06','2020-06-27 19:42:58'),(394,'A source document is used for verifying the','amount due to creditors','actual cost of an asset','selling price of goods','amount due from debtors','','','c','','utme','2004',106,'Admin','2016-12-15 06:52:07','2020-05-04 18:12:30'),(395,'The rule of accounting equation requires that account payable should be placed under','liabilities','equities','assets','capital','','','a','','utme','2004',93,'Admin','2016-12-15 06:52:07','2020-06-01 22:14:55'),(396,'A debit in the suspense account will appear in the balance sheet as','a current asset','a current liability','capital','drawings','','','a','','utme','2004',95,'Admin','2016-12-15 06:52:07','2020-05-04 10:18:01'),(397,'The recipient whose name appears on a cheque is called a','payee','drawer','drawee','payee','','','d','','utme','2004',93,'Admin','2016-12-15 06:52:07','2020-06-27 16:35:28'),(398,'The imprest account is subsidiary to the','ledger account','bank account','cash book','petty cash','','','d','','utme','2004',97,'Admin','2016-12-15 06:52:07','2020-05-04 18:30:25'),(399,'The three-column cash book differs from the two-column cash book in','cash column','discount column','bank column','folio column','','','b','','utme','2004',99,'Admin','2016-12-15 06:52:07','2020-06-26 17:03:02'),(400,'Zakari started a business on January 2000. He bought a shop costing N 54,000 and stock worth N 7,600.  Profit for the year amounted to N 22,100. His closing capital was N 73,800. Zakari’s personal drawings amounted to','N 2,300','N9,900','N 17,100','N 19,500','','','b','','utme','2004',111,'Admin','2016-12-15 06:52:07','2020-06-25 23:58:34'),(401,'The balance on the provision for depreciation account is','added to fixed assets on the balance sheet','deducted from fixed assets on the balance sheet','deducted from the profit and loss account','added to the current liabilities of the account','','','b','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-06-24 20:29:33'),(402,'Given: Rates paid during the year amounted to N 2,250 at N125 per month and N 1,035 was paid for electricity in the same period at N 115 per month. Determine the amount of prepaid rates','N 345','N 750','N 1,380','N 1,500','','','b','','utme','2004',107,'Admin','2016-12-15 06:52:07','2020-06-25 23:22:50'),(403,'Where closing stock is undervalued, the effect is','an increase in gross profit','a decrease in gross profit','an increase in purchases','a decrease in purchases','','','b','','utme','2004',102,'Admin','2016-12-15 06:52:07','2020-06-26 08:11:06'),(404,'At the year end, the purchases ledger showed a debit balance of N 108. The total on the debit side of the purchases ledger control account will be','N 22,966','N 22,156','N 21,834','N 21,054','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','a','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-04-30 18:00:30'),(405,'The balancing figure in the purchases ledger control account is','N 15,828','N 15,720','N 14,940','N 14,694','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','d','','utme','2004',105,'Admin','2016-12-15 06:52:07','2020-06-28 09:41:55'),(406,'In a sales ledger, contra entry is found on the','debit side of the debtors’ control account','debit side of the creditors’ control account','credit side of the debtors’ control account','credit side of the creditors’ control account','','','c','','utme','2004',88,'Admin','2016-12-15 06:52:07','2020-05-05 20:10:53'),(407,'The beginning and ending accounts receivable balances were N 20,000 and N 30,000 respectively.The collection from customers during the period was N 70.000. What was the total sale on account?','N 20,000','N 60,000','N 80,000','N 120,000','','','b','','utme','2004',100,'Admin','2016-12-15 06:52:07','2020-06-27 16:52:23'),(408,'Determine how much to be charged to profit and loss account.','N 606','N 786','N 791','N 856','Given: General expenses account Paid by cheque [ N671 ]; Paid by cash [N 70 ]; Accrued b/f [N 65 ] Accrued c/f [N 115 ]','','c','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-06-28 07:15:53'),(409,'In converting single entry to final account, the balancing figures on the income and expenses accounts are transferred to the','revenue and expenditure account','receipts and payments account','profit and loss appropriation account','profit and loss account','','','d','','utme','2004',106,'Admin','2016-12-15 06:52:07','2020-06-27 19:42:58'),(410,'Determine the amount for the beginning inventory','N 20,140','N10,240','N 8,140','N 7,240','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',97,'Admin','2016-12-15 06:52:07','2020-06-25 23:22:50'),(411,'What is the figure for purchases?','N 2,400','N 2,500','N 4,200','N 5,200','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',105,'Admin','2016-12-15 06:52:07','2020-05-04 18:03:42'),(412,'Cost classification in relation to charges is determined by the level of','raw materials','labour','activity','profitability','','','c','','utme','2004',105,'Admin','2016-12-15 06:52:07','2020-05-04 18:54:20'),(413,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N 5,000','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','c','','utme','2004',105,'Admin','2016-12-15 06:52:07','2020-06-26 13:00:08'),(414,'The market value of goods produced is','N 30,500','N 30,600','N 31,600','N 31,620','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','b','','utme','2004',109,'Admin','2016-12-15 06:52:07','2020-06-24 20:29:33'),(415,'The accumulated fund is','N 9,400','N 9,300','N 9,200','N 9,100','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',101,'Admin','2016-12-15 06:52:07','2020-06-26 17:03:02'),(416,'In the balance sheet, the subscription in arrears will be','N 200','N 300','N 1,200','N 1,300','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',100,'Admin','2016-12-15 06:52:07','2020-06-05 15:31:38'),(417,'Where the debit side of the income and expenditure account is higher than the credit side, the difference is','deficit','surplus','gain','loss','','','a','','utme','2004',93,'Admin','2016-12-15 06:52:07','2020-06-25 23:22:50'),(418,'In the balance sheet of a not-for-profit-making organization, subscription paid in advance is regarded as a','current asset','current liability','capital','reserve','','','b','','utme','2004',107,'Admin','2016-12-15 06:52:07','2020-05-04 18:37:46'),(419,'A rapidly growing business organization with multiple units that is interested in comparing the performances and weaknesses of each unit should adopt.','manufacturing accounts','consolidated accounts','departmental accounts','joint venture accounts','','','c','','utme','2004',114,'Admin','2016-12-15 06:52:07','2020-06-28 09:41:55'),(420,'How are credit sales by a department treated?','the same way as normal debtors’ transactions','in a different way from normal debtors’ transactions','as an addition to the sales manager’s account','as an addition to the production manager’s account','','','a','','utme','2004',89,'Admin','2016-12-15 06:52:07','2020-06-28 09:41:55'),(421,'Discounts granted to branch customers are treated as a debit to branch','stock account and a credit to branch debtors’ account','discount account and a credit to branch bank account','stock account and a credit to branch bank account','discount account and a credit to branch debtors’ account','','','a','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-06-25 23:53:42'),(422,'Transfers from the head office to branches are best carried out at','cost price','selling price','cost plus mark-up','market price','','','c','','utme','2004',110,'Admin','2016-12-15 06:52:07','2020-06-27 16:35:28'),(423,'On dissolution, the final distribution of cash to partners is based on','partnership agreement','Articles of Association','goodwill','capital balances.','','','d','','utme','2004',99,'Admin','2016-12-15 06:52:08','2020-06-26 13:00:08'),(424,'The balance of profit and loss account will be','N 4,000','N 2,800','N 1,500','N 300','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','a','','utme','2004',100,'Admin','2016-12-15 06:52:08','2020-06-28 07:15:53'),(425,'What is Kunle’s share of the profit?','N 600','N 300','N180','N 120','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','d','','utme','2004',93,'Admin','2016-12-15 06:52:08','2020-05-04 18:12:29'),(426,'When a new partner is admitted to a partnership, there is a need to revalue the','capital of the business','capital and liabilities of the business','assets and capital of the business','assets and liabilities of the business','','','d','','utme','2004',114,'Admin','2016-12-15 06:52:08','2020-06-20 13:09:55'),(427,'The accounting entry to record the premium on goodwill is to debit','cash and credit old partners’ capital','goodwill and credit revaluation','assets and credit capital','capital and credit assets','','','b','','utme','2004',117,'Admin','2016-12-15 06:52:08','2020-06-05 15:31:32'),(428,'The expenses incurred in promoting a company are','promoters’ expenses','floating expenses','preliminary expenses','the Board’s expenses','','','c','','utme','2004',116,'Admin','2016-12-15 06:52:08','2020-06-26 09:11:37'),(429,'Debentures can be redeemed out of','existing share capital reserve','existing general reserve','proceeds from new issue of shares','withholding tax.','','','a','','utme','2004',100,'Admin','2016-12-15 06:52:08','2020-06-25 23:53:42'),(430,'Share premium is an example of','revenue reserves','capital reserves','general reserves','loan capital','','','b','','utme','2004',111,'Admin','2016-12-15 06:52:08','2020-06-24 20:34:44'),(431,'According to the provisions of the 1999 Constitution, all revenues generated by the Federal Government must be paid into the?','Consolidated Revenue Fund','Federation Account','Revenue Mobilization Allocation and Fiscal Commission’s Account','Equalization Fund','','','a','','utme','2004',117,'Admin','2016-12-15 06:52:08','2020-06-26 21:58:16'),(432,'The budget statement presented to the legislature by the Chief Executive is called','an appropriation act','a budget bill','an appropriation bill','a budget proposal','','','c','','utme','2004',96,'Admin','2016-12-15 06:52:08','2020-05-03 17:20:22'),(433,'The statement of assets and liabilities in the public sector can be described as the','income and expenditure account of government','appropriation account of government','balance sheet of government','funds flow statement of government','','','d','','utme','2004',93,'Admin','2016-12-15 06:52:08','2020-06-26 13:00:08'),(434,'A company has departments X, Y and Z. Department X occupies a space twice that of Y while Z   occupies half the space of  Y. If the company pays N 70 000 on rent, what is the amount of rent that should be allocated to Y?','N 30,000','N 40,000','N 20,000','N 10, 000.','','','c','','utme','2007',97,'Admin','2016-12-16 07:02:01','2020-06-28 09:41:55'),(435,'Calculate the total figure for the receipts and payments account.','N 11,410','N  13,630','N  9, 310','N  11, 530.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','d','','utme','2007',101,'Admin','2016-12-16 07:02:01','2020-06-28 09:41:55'),(436,'Determine the opening cash balance of the club','N 3070','N 2220','N 5710','N 4320.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','b','','utme','2007',92,'Admin','2016-12-16 07:02:01','2020-06-26 13:00:08'),(437,'Purchases of raw materials amount to N  81 000, direct labour is N  38 000 and factory overhead N  29 000. Calculate the prime cost.','N 176,000','N 170,000','N 167,000','N  156,000.','Stock at start: Raw materials [N57, 000]; Work-in-progress [42, 000]; Finished goods [71, 000 ]','','a','','utme','2007',110,'Admin','2016-12-16 07:02:01','2020-06-27 16:35:28'),(438,'I.Profits and losses will be shared unequally II.  Interest is not allowed on capital, III. Salaries are not allowed. IV. Interest is charged on drawings. Which of  the following would apply where there is no agreement during partnership formation?','I only','I, II and III','I, II and IV','II and III.','','','c','','utme','2007',106,'Admin','2016-12-16 07:02:01','2020-06-27 19:42:58'),(439,'The value of goods sent to branch is','N 4 000','N 6000','N 8000','N 2000','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','c','','utme','2007',108,'Admin','2016-12-16 07:02:02','2020-06-26 09:11:37'),(440,'Determine the closing stock.','N 5 500','N  6500','N 2500','N 4500','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','a','','utme','2007',100,'Admin','2016-12-16 07:02:02','2020-04-30 17:58:11'),(441,'Expenses paid during the conversion of a partnership to a \tcompany are','debited to the partners’ capital account','debited to the realization account','debited to the cash account.','credited to the realization account','','','d','','utme','2007',104,'Admin','2016-12-16 07:02:02','2020-06-26 21:58:16'),(442,'In the trading and profit and loss account of a manufacturing organization, purchases is','always the same amount as the total factory overhead cost','given separately','equivalent to the total cost of goods manufactured','always the same as the prime cost.','','','b','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-06-27 16:35:28'),(443,'Goods worth N 50 000 were sent at different times from head office to the branch during the year. By the end of the period, only N  40 000 worth of goods had arrived at the branch. Which of the following is correct about the treatment of this transaction?','Branch should debit goods received from head office with N 50 000.','Head office should debit goods sent to branch account with N 10 000.','Head office should debit goods sent to branch account with N 50 000.','Branch should debit goods received from head office with N  10000.','','','b','','utme','2007',97,'Admin','2016-12-16 07:02:02','2020-06-28 09:41:55'),(444,'An accounting ratio that considers only quick assets to determine the short-term safety margin of a firm is the','fixed assets ratio','capital gearing ratio','current assets ratio','acid test ratio.','','','d','','utme','2007',97,'Admin','2016-12-16 07:02:02','2020-05-04 18:14:59'),(445,'What would be the total amount received on second call?','N 240, 000','N 280 ,000','N 40,000','N 56,000.','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','c','','utme','2007',106,'Admin','2016-12-16 07:02:02','2020-06-05 15:31:36'),(446,'The total amount of money received on application was','N  5600,00','N  220,000','N  800, 000','N  1 000 000','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','a','','utme','2007',107,'Admin','2016-12-16 07:02:02','2020-06-27 19:42:58'),(447,'Determine the working capital.','N 7,38,0000','N 8,48,0000','N  5 480 000','N  6 480 000.','Shaku Company Ltd: Stock [N 3,600, 000]; Cash at hand [N800, 000]; Cash in bank [2,400, 000]; Debtors [ 580, 000]; Trade creditors [N 920, 000 ]; \tBank overdraft [ N200, 000 ]; Tax liabilities [N600, 000]; Salary owed to staff {N 180, 000]','','c','','utme','2007',99,'Admin','2016-12-16 07:02:02','2020-06-24 20:34:44'),(448,'The receipts and payments account of a not-for-profit-making organization plays a similar role in a profit-making organization as','a cash account','a balance sheet','an income account','an expenses account','','','b','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-06-09 12:07:13'),(449,'Osei and Yabo were in partnership sharing profits and losses in the ratio of 3:2. On admitting Takwa, the profit and loss sharing ratio was changed to 1:1:1  Suppose Takwa paid N  30 000 for goodwill this amount would be','credited to Takwa’s current account','debited to goodwill account','shared to all the partners’ capital account','credited to the old partners’ capital account.','','','b','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-06-28 07:15:53'),(450,'The amount of subscriptions accrued is reported in the balance sheet under','fixed asset','long-term liability','current asset','current liability.','','','d','','utme','2007',104,'Admin','2016-12-16 07:02:02','2020-06-26 09:11:37'),(451,'The lighting charge to be apportioned to Zema is','N 891','N 819','N 927','N 975','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','b','','utme','2007',103,'Admin','2016-12-16 07:02:02','2020-05-04 18:54:21'),(452,'Find the salary charged to Zera product.','N 1 854','N 1 845','N 1 062','N 1 134.','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','c','','utme','2007',116,'Admin','2016-12-16 07:02:02','2020-06-26 17:03:02'),(453,'The gross profit disclosed in the branch stock adjustment account represents','head office profit','unrealized profit','estimated profit','branch profit','','','d','','utme','2007',113,'Admin','2016-12-16 07:02:02','2020-05-06 04:48:51'),(454,'Partners’ share of profit is credited to','a partner’s current account','a partner’s capital account','the profit and loss account','the profit and loss appropriation account','','','a','','utme','2007',104,'Admin','2016-12-16 07:02:02','2020-06-24 20:29:33'),(455,'A pension granted to any past president or vice-president shall be charged to the','consolidated revenue fund','special pension fund','contingency fund','development fund.','','','b','','utme','2007',106,'Admin','2016-12-16 07:02:02','2020-06-28 07:15:53'),(456,'The federal government approved  N 140 m to local governments W, X, Y and Z. The amount is to be shared on the basis of 40% equality. 35% population and 25% internal revenue generation. Calculate the share of local government W on equality.','N 35 m','N 14 m .','N 56 m','N 28 m.','','','c','','utme','2007',106,'Admin','2016-12-16 07:02:02','2020-06-27 19:42:58'),(457,'Stock valuation is useful because it informs the sales department on the','prices of the competing goods','prices that will affect profitability','number of goods to produce','number of goods to sell.','','','b','','utme','2007',97,'Admin','2016-12-16 07:02:02','2020-05-04 18:54:20'),(458,'Using the straight-line method, the depreciation of the asset in \tthe first year was','N  210 m','N 343m','N 105m','N 270m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','c','','utme','2007',91,'Admin','2016-12-16 07:02:02','2020-05-04 18:14:59'),(459,'What was the asset value at the beginning of the third year?','N 63 m','N 133 m','N 36m','N 28 m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','d','','utme','2007',117,'Admin','2016-12-16 07:02:02','2020-06-27 19:42:58'),(460,'The drawings for the period stand at','N  2 750','N  3 750','N  2 500','N 2 570.','Given: Opening capital [N7, 000 ]; Additional capital [N3, 500 ]; Net profit [N2 500 ]; Closing capital [N10, 250]','','a','','utme','2007',104,'Admin','2016-12-16 07:02:02','2020-06-24 20:34:44'),(461,'I.    Facilitating the preparation of final accounts II.   Making the existence of error easy to detect III. Checking the accuracy of postings periodically. From the above, which of the following are among the uses of control accounts?','I, II and III','I and III','II and III','I and II.','','','c','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-06-26 21:58:16'),(462,'Determine the amount provided for discount allowed on debtors.','N 1 000','N 3000','N 900','N1500.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-06-28 18:07:02'),(463,'The provision for bad debt is','N2 000','N 800','N3 000','N1 900.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',116,'Admin','2016-12-16 07:02:02','2020-06-28 09:41:55'),(464,'The amount to be charged to the profit and loss account is','N 30,000','N25,000','N 5 ,000','N20,000.','Given: Prepaid b/f [N10, 000 ]; Cash paid during the year  [N20, 000]; Prepaid c/f [N5, 000] ','','b','','utme','2007',108,'Admin','2016-12-16 07:02:02','2020-06-24 20:34:44'),(465,'The purchases ledger control account showed a credit balance of N 525 000 on April 30, 2006. This amount shows','what the debtors of a business enterprise owed the business','the total amount which each debtor owed the business','what a business enterprise owed its creditors','the total amount which a business enterprise owed each creditor.','','','c','','utme','2007',103,'Admin','2016-12-16 07:02:03','2020-06-24 20:34:44'),(466,'Find the value of the total assets?','N 17 700','N 10,500','N 20,000','N 15,400.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','d','','utme','2007',112,'Admin','2016-12-16 07:02:03','2020-06-28 18:07:03'),(467,'What will be the equity of the business?','N 12,800','N 4,900','N 8,200','N 9,500.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','c','','utme','2007',99,'Admin','2016-12-16 07:02:03','2020-05-03 17:11:17'),(468,'Journal proper is used in recording','transactions that are not regular','returns from customers','credit sales','the receipt and payment of  money','','','a','','utme','2007',117,'Admin','2016-12-16 07:02:03','2020-06-26 17:03:02'),(469,'The process whereby a cheque received by one person is given to another for payment is known as','cheque crossing','payment in cheque','cheque transfer','cheque endorsement.','','','c','','utme','2007',108,'Admin','2016-12-16 07:02:03','2020-06-28 07:15:53'),(470,'Calculate the balance in the bank statement','N 10 740','N11 860','N 17 500','N16,380.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','c','','utme','2007',100,'Admin','2016-12-16 07:02:03','2020-04-30 17:56:59'),(471,'What is the adjusted cash book balance?','N 14,680','N 15,560','N 16,440','N17,000.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','a','','utme','2007',107,'Admin','2016-12-16 07:02:03','2020-06-27 16:52:23'),(472,'The fourth stage of the accounting information system is','recording','interpreting','summarizing','classifying.','','','c','','utme','2007',106,'Admin','2016-12-16 07:02:03','2020-06-25 23:22:50'),(473,'How much is sundry expenses?','N 2 700','N 2,250','N1,550','N2000.','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','a','','utme','2007',98,'Admin','2016-12-16 07:02:03','2020-05-03 17:44:34'),(474,'The total of the trial balance is','N 6 600','N 6 650','N 5 600','N 5 900','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','b','','utme','2007',101,'Admin','2016-12-16 07:02:03','2020-06-28 07:15:53'),(475,'If Mr. Ajasin paid his creditors N 5 000 out of N 20 000 owed, what would be the effect of this transaction on the accounting equation?','A decrease .in the total liabilities and assets by N5 000.','An increase in total liabilities and owners’ equity by N15 000.','An increase in the total assets by N15 000','A decrease in owners’ equity by N 5 000.','','','a','','utme','2007',114,'Admin','2016-12-16 07:02:03','2020-06-02 01:19:50'),(476,'Which of the following branches of accounting was first developed?','Cost accounting','Financial accounting','Management accounting','Petroleum accounting','','','b','','utme','2009',97,'Admin','2016-12-16 21:08:06','2020-06-28 11:06:38'),(477,'The accounting convention which states that the performance of a business should be determined by matching all expenses against all revenues is','accruals','materiality','objectivity','periodicity','','','a','','utme','2009',100,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(478,'The process of bookkeeping includes records produced from','ledgers','source documents','minutes of meeting','intuitive reasoning','','','b','','utme','2009',102,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(479,'Musa, a prepaid customer of XYZ and KLM, bought  N1500 recharge card from XYZ and  N2000 recharge card from KLM for business calls. The entry to record these transaction is debit','telephone  N 3,500, credit XYZ and KLM  N 3,500','telephone N 3,500. credit cash  N 3,500','sundries N 3,500, credit KLM  N 3,500','sundries  N 3.500, credit telephone  N3,500','','','a','','utme','2009',101,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(480,'What is the total debit for the trial balance?','N  4 690 000','N 2 620 000','N  2 520 000','N 1 565 000','Given: Capital [N 2, 375, 000 ]; Debtors [N 495, 000 ]; Motor vehicles [N 870, 000 ]; Creditors [N 245,000 ]; Prepayments [N 500, 000 ]; Bills receivable [N 505, 000 ]; Furniture [N 150, 000 ]','','c','','utme','2009',96,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(481,'If Odukoya takes money out of the business bank account for his own private use, the effect of the transaction is','increase in assets and increase in capital','increase in assets and decrease in capital','decrease in capital and increase in assets','decrease in capital and decrease in assets.','','','d','','utme','2009',107,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(482,'What are the current liabilities?','I and II','IV and V','Ill and V','II and IV','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','b','','utme','2009',91,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(483,'Find the fixed assets','I, II and V','I, II and IV','I, II and III','Ill, IV and V','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','c','','utme','2009',113,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(484,'Cash discount is often recorded on','the debit side of the cash book','the credit side of the cash book','the folio column of the cash book','both credit and debit side of the cash book','','','d','','utme','2009',85,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(485,'The standing order is a payment instruction given by a','customer to the bank','bank to the customers','bank to an employee','customer to a fellow customer','','','a','','utme','2009',89,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(486,'Which of the following should not be added or subtracted from the bank statement balance to determine the adjusted cash balance?','Error by the bank','Under casting of the cash book','Overcasting of the cash book','Bank service charges','','','a','','utme','2009',103,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(487,'Calculate the balance as per bank statement at the end of the year','24,700','25,200','26,200','27,700','Given: Balance as per cash book [N20,000 ]; Unpresented cheques [N 5,200 ]; Direct credit to the bank [\t  N 1,000 ]; \tDirect debit from the bank [N 1,000 ]; Credit in the cash book [N 500 ]','','a','','utme','2009',104,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(488,'Determine the capital of the business','N 9,400','N 6,000','N 3,400','N 3,000','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','d','','utme','2009',102,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(489,'What is the net working capital?','N 2,600','N1,800','N 800','N 600','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','c','','utme','2009',107,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(490,'Which of the following items are current assets?','Stock, bills receivable, cash and debtors','Stock, bills payable, cash and debtors','Stock, bad debt, bills receivable and cash','Stock, work-in-progress, cash and bills payable.','','','a','','utme','2009',99,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(491,'Using FIFO method, what is the value of the closing stock?','N 34,000','N 29,000','N 17,000','N 12,000','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','c','','utme','2009',96,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:02'),(492,'What is the value of closing stock using simple average?','N 11,500','N 17,000','N 17,500','N 28,500','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','d','','utme','2009',93,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(493,'Which of the following methods gives a conservative closing stock value during a period of rising prices?','LIFO','FIFO','Simple average','Periodic simple average','','','a','','utme','2009',86,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(494,'Apart from the common control accounts, a control account can also be opened for','sales account','purchases account','cash account','wages account','','','c','','utme','2009',88,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(495,'Which of the following is a debit item in the purchases ledger control account?','Balance b/d','Cheque dishonoured','Purchases','Balance c/d','','','d','','utme','2009',100,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(496,'Which of the following is an item in the debit side of the sales ledger control account?','Interest charged by suppliers','Bills receivable honoured','Transfer of credit balances from credit control account','Transfer of debit balances from creditors control account','','','a','','utme','2009',95,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(497,'The costs incurred by departments that support the production department with such activities as maintenance, production control and storage are called','autonomous costs','service costs','supporting costs','subsidiary costs','','','b','','utme','2009',93,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:03'),(498,'Determine the gross profit','N 49,000','N 48,000','N 31,000','N30,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',106,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(499,'What is the net profit?','N  46,000','N 45,000','N  28,000','N  27,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',96,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(500,'Receipts and payments account is a summary of the','budget','trading account','cash book','profit and loss account','','','c','','utme','2009',106,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(501,'What is the accumulated fund?','23,700','27,750','29,650','51,650','Given: Furniture and fittings [N 20,000]  Equipment [N15,000] Bank overdrafts [ N6,500] Bar creditors [ N4,800 ] Subscription in arrears [ N4,700 ] Subscription in advance [ N650]','','b','','utme','2009',102,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(502,'I.  Space occupied by each department    II. Average value of stock held by each department III. \tDepartmental turnover  IV. Number of articles sold by each department. From the information given, the two most logical bases for apportioning expenses that are common to departments are','I and II','I and III','II and III','Ill and IV','','','b','','utme','2009',97,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:03'),(503,'One of the purposes of maintaining the account of a branch at the head office is to','record charges in shareholdings','record charges in liabilities','check the excesses of customers','check the excesses of members of staff.','','','d','','utme','2009',104,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(504,'Which of the following is a common cause of a discrepancy between head office and branch trial balance?','Debtors and cash in transit','Creditors and cash in transit','Stock and cash in transit','Stock and prepayments','','','a','','utme','2009',102,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(505,'Sule and Ahmad are in partnership sharing profits and losses equally. If  Khadija is admitted as a new partner to take 1/5 th as her share, what is the new profit or loss sharing ratio?','Sule1/3 , Ahmad 1/3 and Khadija 1/3','Sule1/5, Ahmad 1/5 and Khadija 3/5','Sule2/5,  Ahmad2/5 and Khadija 1/5','Sule ,2/5, Ahmad and 1/5 Khadija 2/5','','','c','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(506,'In partnership account, conversion of non-cash assets into cash \t\tis referred to as','realization','disposal','dissolution','revaluation','','','c','','utme','2009',90,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(507,'The share premium account would be','credited with application and allotment  N 187,500','debited with application and allotment  N 375,000','credited with application and allotment  N 375,000','debited with application and allotment  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','c','','utme','2009',103,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(508,'The second and final call account was debited with','ordinary share capital account  N 187,500','12% preference share capital  N  375,000','bank account  N 187,500','12% preference share capital account  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','d','','utme','2009',100,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(509,'Provision for bad and doubtful debts in companies final accounts is treated in','trading account','profit and loss account','fund flow statement','cash flow statement','','','b','','utme','2009',98,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:03'),(510,'The book value per share is obtained by dividing','shareholders equity by outstanding shares','total assets by outstanding shares','gross profit by outstanding shares','net profit by outstanding shares','','','a','','utme','2009',106,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(511,'Expenditure incurred on consumables and goods for resale is','revenue expenditure','capital expenditure','sunk cost','miscellaneous expenses','','','a','','utme','2009',117,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:02'),(512,'Replacement and renewal of fixed assets are','revenue receipt','capital receipt','capital expenditure','revenue expenditure','','','c','','utme','2009',101,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(513,'Which of the following is credited to the consolidated revenue fund?','Recurrent expenditure','Capital expenditure','Transfers to revenue fund','Internal revenue','','','c','','utme','2009',103,'Admin','2016-12-16 21:08:09','2020-06-28 11:06:38'),(514,'One of the reasons for the existence of the public sector is to','take adequate care of the needy','supplement the commercial sector','provide cheap services to all citizens','correct perceived inequalities.','','','c','','utme','2009',102,'Admin','2016-12-16 21:08:09','2020-06-28 11:06:38');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `api_call_ip_address` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `ipAddress` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `requestCount` int(11) NOT NULL DEFAULT '1',\n  `countryName` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `countryCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `cityName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `zipCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `latitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `longitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=10074 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `api_call_ip_address` VALUES (1,'chemistry','41.204.237.6',55,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:16:31','2019-10-11 19:53:51'),(2,'english','41.204.237.6',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-22 17:05:06'),(3,'physics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(4,'government','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(5,'irk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(6,'civiledu','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(7,'currentaffairs','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(8,'economics','197.255.171.219',494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:28:05','2018-11-16 16:14:04'),(9,'english','197.255.171.219',622,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 16:17:59','2018-11-16 17:04:20'),(10,'english','105.112.40.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 20:56:48','2018-11-16 20:56:48'),(11,'chemistry','66.249.66.146',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 02:15:11','2019-01-20 17:41:49'),(12,'chemistry','105.112.27.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 18:01:33','2018-11-17 18:01:33'),(13,'chemistry','105.112.34.182',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 19:42:35','2018-11-17 19:48:36'),(14,'english','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:11:14','2018-11-18 07:11:16'),(15,'mathematics','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:23:49','2018-11-18 07:23:58'),(16,'english','35.187.100.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:08:37','2018-11-18 15:08:37'),(17,'english','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(18,'biology','54.157.207.237',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:22:23'),(19,'physics','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(20,'chemistry','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(21,'englishlit','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(22,'currentaffairs','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(23,'history','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(24,'mathematics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(25,'commerce','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(26,'biology','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:10'),(27,'physics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(28,'englishlit','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(29,'government','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(30,'economics','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:59:54'),(31,'chemistry','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(32,'crk','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(33,'irk','54.242.159.164',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:01:08'),(34,'insurance','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(35,'currentaffairs','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(36,'history','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(37,'english','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:10','2018-11-18 16:00:23'),(38,'civiledu','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:23','2018-11-18 16:00:23'),(39,'chemistry','38.132.114.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:11:29','2018-11-18 16:11:29'),(40,'biology','154.118.73.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:26:38','2018-11-19 07:42:11'),(41,'mathematics','154.118.73.218',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:57:21','2018-11-19 08:27:22'),(42,'biology','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(43,'physics','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(44,'englishlit','54.226.211.137',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:04'),(45,'crk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(46,'geography','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(47,'civiledu','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(48,'currentaffairs','54.226.211.137',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:12'),(49,'chemistry','105.112.34.116',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 11:42:43','2018-11-19 12:07:25'),(50,'biology','105.112.34.116',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 12:03:49','2018-11-19 12:04:31'),(51,'chemistry','105.112.32.113',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 15:15:17','2018-11-19 15:15:17'),(52,'chemistry','105.112.38.168',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:39:07','2018-11-19 16:39:53'),(53,'chemistry','105.112.33.204',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:41:17','2018-11-19 17:08:45'),(54,'chemistry','105.112.34.113',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 17:16:16','2018-11-19 17:50:41'),(55,'chemistry','105.112.39.125',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 18:09:49','2018-11-19 18:10:22'),(56,'commerce','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(57,'accounting','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(58,'biology','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(59,'physics','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(60,'geography','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(61,'civiledu','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(62,'currentaffairs','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(63,'mathematics','154.120.115.82',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 09:18:07','2018-11-20 09:18:27'),(64,'accounting','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(65,'chemistry','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(66,'government','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(67,'crk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(68,'geography','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(69,'irk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(70,'currentaffairs','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(71,'chemistry','197.210.55.232',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:36:42','2018-11-21 16:04:23'),(72,'chemistry','197.210.55.152',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:51:48','2018-11-21 16:04:07'),(73,'mathematics','197.210.55.232',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:25','2018-11-21 16:04:26'),(74,'english','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(75,'mathematics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(76,'commerce','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(77,'geography','54.235.56.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(78,'economics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(79,'civiledu','54.235.56.218',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(80,'insurance','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(81,'mathematics','197.210.55.49',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:06:37','2018-11-21 16:12:12'),(82,'accounting','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(83,'physics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(84,'government','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(85,'crk','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(86,'history','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(87,'mathematics','197.210.53.227',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:39:55','2018-11-21 18:46:03'),(88,'mathematics','197.210.53.213',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:41:49','2018-11-21 18:50:09'),(89,'mathematics','197.210.53.241',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:50:32','2018-11-21 18:50:33'),(90,'physics','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(91,'englishlit','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(92,'government','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(93,'geography','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(94,'irk','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(95,'civiledu','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(96,'history','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:34'),(97,'mathematics','105.112.39.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:03:34','2018-11-21 20:03:35'),(98,'chemistry','105.112.39.146',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:35:42','2018-11-21 21:02:43'),(99,'biology','197.210.29.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:41:34','2018-11-21 20:41:35'),(100,'commerce','41.203.72.24',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 08:31:50','2018-11-22 08:31:54'),(101,'biology','154.118.57.75',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:21:36','2018-11-22 09:21:42'),(102,'english','154.118.57.75',430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:32:20','2018-11-22 09:48:24'),(103,'mathematics','154.118.57.75',138,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:34:54','2018-11-22 09:48:24'),(104,'commerce','154.118.57.75',67,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:36:29','2018-11-22 09:37:01'),(105,'mathematics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(106,'biology','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(107,'physics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(108,'chemistry','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(109,'geography','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(110,'economics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(111,'irk','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(112,'crk','105.112.32.158',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:17:53','2018-11-22 12:19:16'),(113,'crk','105.112.26.27',714,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:39:40','2018-11-22 12:50:37'),(114,'geography','105.112.26.27',333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:51:29','2018-11-22 12:56:58'),(115,'irk','105.112.26.27',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:56:49','2018-11-22 12:56:57'),(116,'mathematics','197.210.52.148',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:57','2018-11-22 20:15:32'),(117,'mathematics','197.210.53.170',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:41'),(118,'mathematics','197.210.53.74',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:25'),(119,'commerce','197.210.53.170',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:42','2018-11-22 20:14:59'),(120,'commerce','197.210.52.148',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-22 20:14:57','2020-02-06 09:18:23'),(121,'commerce','197.210.53.74',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:58','2018-11-22 20:15:00'),(122,'accounting','197.210.53.170',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:17'),(123,'accounting','197.210.53.74',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:31'),(124,'accounting','197.210.52.148',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:02','2018-11-22 20:15:34'),(125,'chemistry','45.222.98.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 08:18:28','2018-11-23 08:29:56'),(126,'crk','105.112.46.53',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 09:29:55','2018-11-23 10:34:53'),(127,'chemistry','105.112.46.53',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 13:13:27','2018-11-23 13:56:23'),(128,'chemistry','105.112.45.132',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:12:24','2018-11-23 16:12:25'),(129,'chemistry','105.112.42.3',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:18:35','2018-11-23 17:30:48'),(130,'accounting','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(131,'biology','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(132,'physics','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(133,'irk','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(134,'civiledu','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(135,'currentaffairs','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(136,'history','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(137,'chemistry','122.172.127.49',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:22:39','2018-11-23 18:25:03'),(138,'physics','122.172.127.49',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:25:06','2018-11-23 18:25:21'),(139,'chemistry','105.112.41.195',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 19:35:37','2019-03-06 06:04:52'),(140,'chemistry','105.112.29.74',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 20:03:18','2018-11-23 22:58:38'),(141,'chemistry','105.112.40.253',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 09:25:34','2018-11-24 09:25:34'),(142,'english','41.203.72.10',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:16:56','2018-11-24 13:19:08'),(143,'accounting','41.203.72.10',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:21:12','2018-11-27 06:00:10'),(144,'english','105.112.44.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 14:40:08','2018-11-24 14:40:08'),(145,'chemistry','105.112.43.82',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 19:55:21','2018-11-24 20:10:56'),(146,'chemistry','105.112.46.85',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 20:28:29','2018-11-28 09:54:04'),(147,'chemistry','105.112.41.167',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:10:36','2018-11-24 21:25:21'),(148,'chemistry','105.112.40.197',880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:57:55','2018-11-24 22:40:30'),(149,'english','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(150,'physics','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(151,'englishlit','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(152,'crk','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(153,'geography','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(154,'civiledu','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(155,'insurance','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(156,'chemistry','105.112.44.13',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 08:45:46','2018-11-25 09:31:13'),(157,'chemistry','105.112.41.148',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 09:44:43','2018-11-25 10:48:33'),(158,'chemistry','66.102.8.72',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:23:12','2018-11-25 10:23:13'),(159,'chemistry','108.177.7.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:28:48','2018-11-25 10:28:49'),(160,'chemistry','108.177.6.56',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:36','2018-11-25 10:29:54'),(161,'chemistry','108.177.6.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:41','2018-11-25 10:29:42'),(162,'chemistry','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:50','2018-11-25 10:29:51'),(163,'civiledu','108.177.6.53',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:53','2018-11-25 10:29:54'),(164,'commerce','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:56','2018-11-25 10:29:57'),(165,'crk','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:58','2018-11-25 10:29:58'),(166,'chemistry','108.177.6.58',200,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-25 10:30:05','2019-09-12 00:12:04'),(167,'insurance','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:10','2018-11-25 10:30:11'),(168,'history','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:12','2018-11-25 10:30:12'),(169,'geography','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:15','2018-11-25 10:30:15'),(170,'geography','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:18','2018-11-25 10:30:19'),(171,'commerce','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:19','2018-11-25 10:30:20'),(172,'englishlit','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:20'),(173,'crk','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:21'),(174,'geography','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:21','2018-11-25 10:30:21'),(175,'civiledu','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:22','2018-11-25 10:30:23'),(176,'civiledu','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:24','2018-11-25 10:30:24'),(177,'insurance','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:25','2018-11-25 10:30:25'),(178,'englishlit','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:27','2018-11-25 10:30:27'),(179,'commerce','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:29','2018-11-25 10:30:29'),(180,'history','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:35','2018-11-25 10:30:35'),(181,'insurance','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:37','2018-11-25 10:30:37'),(182,'currentaffairs','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:42','2018-11-25 10:30:42'),(183,'chemistry','108.177.7.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:45','2018-11-25 10:31:04'),(184,'history','108.177.7.81',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:11','2018-11-25 10:31:39'),(185,'english','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:43','2018-11-25 10:31:43'),(186,'economics','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:47','2018-11-25 10:31:48'),(187,'mathematics','108.177.7.81',60,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:52','2019-09-11 16:49:44'),(188,'englishlit','108.177.7.81',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:32:37'),(189,'chemistry','66.249.88.76',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:31:59'),(190,'crk','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:10','2018-11-25 10:32:10'),(191,'insurance','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:14','2018-11-25 10:32:14'),(192,'civiledu','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:17','2018-11-25 10:32:18'),(193,'geography','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:21','2018-11-25 10:32:22'),(194,'chemistry','104.133.10.99',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:47:20','2018-11-25 10:48:39'),(195,'chemistry','105.112.46.101',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:07:44','2018-11-25 12:07:44'),(196,'chemistry','105.112.33.216',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:33:34','2018-11-25 12:56:01'),(197,'currentaffairs','105.112.33.216',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:56:40','2018-11-25 13:10:15'),(198,'economics','105.112.33.216',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:10:36','2018-11-25 13:16:55'),(199,'chemistry','105.112.40.40',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:15:46','2018-11-25 13:19:21'),(200,'chemistry','105.112.42.88',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:21:39','2018-11-25 13:21:39'),(201,'chemistry','105.112.41.248',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:01:24','2018-11-25 17:01:24'),(202,'english','105.112.41.248',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:04:33','2018-11-25 17:13:28'),(203,'english','105.112.41.0',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:18:30','2018-11-25 17:55:36'),(204,'english','197.210.53.141',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 19:58:43','2018-11-25 20:00:07'),(205,'english','197.210.52.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:07','2018-11-25 20:00:41'),(206,'english','197.210.53.23',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:21','2018-11-25 20:00:55'),(207,'english','105.112.43.127',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:19:59','2018-11-25 20:20:01'),(208,'english','197.211.63.176',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:00:14','2018-11-26 05:00:51'),(209,'commerce','197.211.63.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:10','2018-11-26 05:01:10'),(210,'mathematics','197.211.63.176',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:21','2018-11-26 10:14:10'),(211,'biology','105.112.42.191',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:08','2018-11-26 09:33:08'),(212,'accounting','105.112.42.191',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:09','2018-11-26 09:33:12'),(213,'english','41.76.197.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:38','2018-11-26 10:12:41'),(214,'currentaffairs','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:50','2018-11-26 10:12:50'),(215,'government','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:54','2018-11-26 10:12:54'),(216,'civiledu','41.76.197.2',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:58','2018-11-26 10:13:05'),(217,'englishlit','41.76.197.2',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:13:14','2018-11-27 16:00:52'),(218,'english','129.56.76.55',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:51:31','2018-11-26 10:52:34'),(219,'mathematics','129.56.76.55',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:52:19','2018-11-26 10:52:28'),(220,'english','197.210.227.200',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 11:27:18','2018-11-26 11:27:18'),(221,'english','105.112.28.18',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:05:44','2018-11-26 13:06:45'),(222,'physics','105.112.28.18',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:07:06','2018-11-26 13:34:17'),(223,'physics','105.112.21.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:05:04','2018-11-26 16:05:04'),(224,'english','197.210.63.52',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:11:53','2018-11-26 16:11:56'),(225,'english','197.211.61.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:28:59','2018-11-26 16:28:59'),(226,'currentaffairs','197.211.61.82',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:29:23','2018-11-28 11:57:35'),(227,'chemistry','77.88.47.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 22:02:53','2019-04-15 13:33:36'),(228,'mathematics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(229,'chemistry','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(230,'government','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(231,'economics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(232,'civiledu','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(233,'currentaffairs','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(234,'history','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(235,'commerce','41.203.72.10',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 05:53:52','2018-11-27 06:00:02'),(236,'physics','41.203.72.10',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:00:04','2018-11-27 06:01:08'),(237,'english','41.190.30.106',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:14:24','2018-11-27 06:21:01'),(238,'civiledu','41.190.30.106',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:21:10','2018-11-27 06:21:10'),(239,'civiledu','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:03','2018-11-27 06:38:04'),(240,'english','41.190.2.145',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:07','2018-11-27 06:39:15'),(241,'mathematics','41.190.2.145',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:09','2018-11-27 06:38:26'),(242,'insurance','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:14','2018-11-27 06:38:14'),(243,'chemistry','41.190.2.145',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:27','2018-11-27 06:38:37'),(244,'chemistry','105.112.27.114',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:39:39','2018-11-27 06:41:07'),(245,'englishlit','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(246,'government','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(247,'crk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(248,'geography','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(249,'irk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(250,'insurance','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(251,'history','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(252,'physics','105.112.28.250',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 08:14:13','2018-11-27 08:14:48'),(253,'english','197.211.61.80',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:09','2018-11-27 13:40:37'),(254,'mathematics','197.211.61.80',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:21','2018-11-27 13:38:36'),(255,'english','197.210.226.36',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:47:29','2018-11-27 13:47:32'),(256,'english','197.210.29.222',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:18:13','2018-11-27 14:20:00'),(257,'commerce','197.210.29.222',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:20:17','2018-11-27 14:20:22'),(258,'english','105.112.120.89',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:34:35','2018-11-27 14:37:02'),(259,'crk','105.112.120.89',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:38:57','2018-11-27 14:40:34'),(260,'mathematics','129.205.114.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:17','2018-11-27 14:40:17'),(261,'english','129.205.114.24',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:21','2018-11-27 14:41:29'),(262,'chemistry','129.205.114.24',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:42:02','2018-11-27 14:42:57'),(263,'physics','129.205.114.24',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:43:24','2018-11-27 14:44:50'),(264,'english','129.56.65.7',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:45:40','2018-11-27 16:45:49'),(265,'biology','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:46:22','2018-11-27 16:49:06'),(266,'accounting','129.56.65.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:26','2018-11-27 16:49:26'),(267,'geography','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:40','2018-11-27 16:59:23'),(268,'physics','105.112.26.254',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 17:27:44','2018-11-27 17:27:56'),(269,'english','129.56.60.65',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 18:02:16','2018-11-27 18:02:18'),(270,'english','105.112.34.100',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 19:45:56','2018-11-27 19:46:05'),(271,'chemistry','105.112.46.246',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:12:41','2018-11-27 20:12:45'),(272,'mathematics','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:30','2018-11-27 20:13:30'),(273,'currentaffairs','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:37','2018-11-27 20:13:38'),(274,'chemistry','5.102.173.71',20,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-28 03:23:29','2020-04-23 13:10:36'),(275,'english','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(276,'mathematics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(277,'accounting','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(278,'biology','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(279,'physics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(280,'economics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(281,'insurance','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(282,'english','197.210.29.201',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:58:56','2018-11-28 06:59:01'),(283,'currentaffairs','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:28','2018-11-28 07:00:28'),(284,'mathematics','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:50','2018-11-28 07:00:50'),(285,'currentaffairs','197.210.226.232',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:01:32','2018-11-28 07:02:24'),(286,'mathematics','105.112.68.162',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:39:34','2018-11-28 07:40:17'),(287,'english','129.56.51.37',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:53:25','2018-11-28 09:57:29'),(288,'englishlit','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:54:29','2018-11-28 17:19:35'),(289,'mathematics','129.56.51.37',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:57:49','2018-11-28 09:57:52'),(290,'chemistry','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:36:59','2018-11-28 13:36:59'),(291,'english','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:50:26','2018-11-28 13:50:26'),(292,'mathematics','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:51:25','2018-11-28 13:51:25'),(293,'geography','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:52:11','2018-11-28 13:52:11'),(294,'accounting','105.112.42.193',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 14:17:01','2018-11-28 14:17:30'),(295,'english','105.112.46.85',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:11','2018-11-28 17:19:16'),(296,'history','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:55','2018-11-28 17:20:33'),(297,'english','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:31','2018-11-28 17:48:31'),(298,'mathematics','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:35','2018-11-28 17:48:40'),(299,'chemistry','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:49:26','2018-11-28 17:50:45'),(300,'biology','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:50:12','2018-11-28 17:50:16'),(301,'accounting','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:52:59','2018-11-28 17:52:59'),(302,'history','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:53:04','2018-11-28 17:53:09'),(303,'physics','105.112.26.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 02:32:12','2018-11-29 02:33:14'),(304,'english','105.112.3.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:04:28','2018-11-29 05:07:31'),(305,'english','197.210.226.122',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:31:51','2018-11-29 05:33:21'),(306,'english','197.210.226.203',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:33:22','2018-11-29 05:37:32'),(307,'mathematics','197.210.226.122',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:38:12','2018-11-29 05:38:14'),(308,'english','102.163.30.124',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:45:54','2018-11-29 07:47:50'),(309,'accounting','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(310,'commerce','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(311,'biology','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(312,'physics','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(313,'chemistry','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(314,'englishlit','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(315,'geography','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(316,'crk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(317,'currentaffairs','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(318,'history','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(319,'irk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(320,'insurance','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(321,'chemistry','105.112.68.243',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 11:06:07','2018-11-29 11:06:07'),(322,'chemistry','197.149.95.62',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:08:23','2018-11-29 13:08:50'),(323,'english','197.211.60.94',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:18:57','2018-11-29 13:19:11'),(324,'english','129.56.159.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:43','2018-11-30 05:15:43'),(325,'mathematics','129.56.159.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:54','2018-11-30 05:15:55'),(326,'english','129.56.190.68',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 14:03:21','2018-11-30 14:03:21'),(327,'commerce','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(328,'physics','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(329,'chemistry','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(330,'englishlit','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(331,'government','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(332,'currentaffairs','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(333,'history','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(334,'mathematics','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(335,'crk','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(336,'geography','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(337,'history','105.112.47.245',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 19:21:33','2018-11-30 19:21:33'),(338,'english','105.112.46.230',2160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 21:59:34','2018-12-01 00:55:45'),(339,'commerce','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(340,'biology','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(341,'englishlit','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(342,'government','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(343,'civiledu','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(344,'insurance','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(345,'history','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(346,'english','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(347,'accounting','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(348,'physics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(349,'geography','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(350,'economics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(351,'english','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:57:37','2018-12-01 00:57:45'),(352,'physics','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:08','2018-12-01 00:58:11'),(353,'englishlit','105.112.68.163',840,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:33','2018-12-01 01:55:58'),(354,'english','101.206.169.22',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:48:58','2018-12-01 03:50:48'),(355,'geography','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:15','2018-12-01 03:49:15'),(356,'history','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:20','2018-12-01 03:49:20'),(357,'economics','101.206.169.22',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:50:52','2018-12-01 03:50:57'),(358,'physics','101.206.169.22',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:51:11','2018-12-01 03:51:31'),(359,'physics','105.112.21.158',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:34:50','2018-12-01 09:35:53'),(360,'biology','105.112.21.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:39:19','2018-12-01 09:39:19'),(361,'economics','105.112.32.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 14:44:33','2018-12-01 14:48:45'),(362,'english','192.241.239.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:43:19','2018-12-01 19:43:34'),(363,'economics','192.241.239.137',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:45:45','2018-12-01 19:45:48'),(364,'crk','41.90.4.17',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:39:33','2018-12-02 16:39:35'),(365,'english','105.112.68.194',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:46:19','2018-12-02 16:46:49'),(366,'englishlit','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:48:58','2018-12-02 16:48:58'),(367,'government','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:50:02','2018-12-02 16:50:02'),(368,'mathematics','105.112.35.216',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 20:03:41','2018-12-02 20:05:19'),(369,'mathematics','197.210.44.169',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 07:17:58','2018-12-03 07:17:58'),(370,'english','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:44:57','2019-01-01 08:57:25'),(371,'physics','66.249.66.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:47:01','2018-12-11 00:12:59'),(372,'commerce','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:52:28','2018-12-10 06:37:01'),(373,'mathematics','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:53:01','2019-01-01 09:08:53'),(374,'english','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(375,'mathematics','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(376,'accounting','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(377,'crk','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(378,'geography','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(379,'civiledu','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(380,'insurance','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(381,'english','197.210.55.187',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:21:56','2018-12-04 05:22:40'),(382,'english','197.210.55.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:22:22','2018-12-04 05:23:48'),(383,'english','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:46','2018-12-04 05:23:46'),(384,'economics','197.210.55.77',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:50','2018-12-04 05:23:55'),(385,'government','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:19','2018-12-04 05:24:19'),(386,'currentaffairs','197.210.55.77',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:20','2018-12-04 05:27:52'),(387,'biology','41.203.72.24',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 08:44:56','2018-12-04 08:45:38'),(388,'physics','129.18.144.249',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:37:18','2018-12-04 11:37:48'),(389,'mathematics','129.18.144.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:38:26','2018-12-04 11:38:26'),(390,'chemistry','129.18.144.249',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:39:19','2018-12-04 12:05:27'),(391,'chemistry','41.58.182.193',441,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:28:25','2019-02-18 09:48:30'),(392,'biology','41.58.182.193',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:59:24','2019-01-14 13:14:55'),(393,'accounting','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(394,'mathematics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(395,'crk','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(396,'commerce','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(397,'geography','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(398,'physics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(399,'englishlit','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(400,'economics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(401,'irk','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(402,'insurance','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(403,'civiledu','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(404,'history','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(405,'chemistry','5.255.250.167',134,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-06 10:34:57','2020-03-09 20:47:54'),(406,'english','198.54.114.114',2064829,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 23:13:35','2019-01-05 10:14:01'),(407,'mathematics','197.210.54.46',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:39:25','2018-12-07 14:39:27'),(408,'chemistry','107.167.108.170',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:41:02','2018-12-07 14:41:16'),(409,'english','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(410,'commerce','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(411,'physics','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(412,'crk','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(413,'civiledu','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(414,'insurance','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(415,'currentaffairs','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(416,'chemistry','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(417,'geography','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(418,'irk','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(419,'chemistry','93.158.161.84',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 12:23:24','2019-08-28 13:58:43'),(420,'mathematics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(421,'physics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(422,'englishlit','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(423,'government','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(424,'economics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(425,'irk','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(426,'civiledu','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(427,'chemistry','41.190.2.156',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 21:46:56','2018-12-08 21:53:59'),(428,'mathematics','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(429,'english','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(430,'commerce','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(431,'englishlit','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(432,'government','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(433,'economics','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(434,'crk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(435,'civiledu','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(436,'geography','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(437,'currentaffairs','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(438,'history','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(439,'irk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(440,'english','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:24:35','2019-01-21 04:56:34'),(441,'accounting','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:27:10','2018-12-10 05:27:10'),(442,'economics','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:28:56','2018-12-11 00:19:57'),(443,'currentaffairs','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:26:15','2018-12-10 06:26:15'),(444,'mathematics','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:32:16','2018-12-10 06:32:17'),(445,'government','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 09:31:31','2018-12-10 09:31:32'),(446,'crk','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:34:20','2018-12-10 11:34:20'),(447,'geography','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:40:41','2018-12-10 11:40:41'),(448,'english','66.249.66.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:01:44','2018-12-12 11:56:08'),(449,'crk','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:02:21','2018-12-11 00:02:21'),(450,'mathematics','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:13:24','2018-12-11 00:13:24'),(451,'english','105.112.45.33',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 12:02:56','2018-12-11 12:38:16'),(452,'chemistry','93.158.166.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 14:37:30','2018-12-11 14:37:30'),(453,'chemistry','180.76.15.21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 16:53:35','2018-12-11 16:53:35'),(454,'chemistry','180.76.15.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 19:26:46','2018-12-11 19:26:46'),(455,'english','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(456,'mathematics','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(457,'accounting','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(458,'biology','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(459,'geography','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(460,'economics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(461,'history','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(462,'physics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(463,'government','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(464,'irk','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(465,'civiledu','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(466,'chemistry','180.76.15.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 23:48:00','2018-12-11 23:48:00'),(467,'chemistry','180.76.15.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 00:21:20','2018-12-12 00:21:20'),(468,'chemistry','180.76.15.14',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 07:46:34','2018-12-12 07:46:34'),(469,'chemistry','154.113.73.98',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:36','2018-12-12 10:41:28'),(470,'mathematics','154.113.73.98',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:49','2018-12-12 10:36:58'),(471,'crk','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:20','2018-12-12 11:59:20'),(472,'physics','66.249.66.148',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:38','2019-01-21 04:57:41'),(473,'english','105.112.47.144',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:00:13','2018-12-12 22:58:12'),(474,'englishlit','105.112.47.144',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:02:31','2018-12-12 12:04:05'),(475,'accounting','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 21:01:10','2018-12-12 21:01:10'),(476,'chemistry','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 22:50:15','2018-12-12 22:50:15'),(477,'english','105.112.46.125',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:28:26','2018-12-13 08:44:01'),(478,'economics','105.112.46.125',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:29:01','2018-12-13 08:29:01'),(479,'english','105.112.41.38',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:57:18','2018-12-13 12:33:26'),(480,'english','129.56.134.30',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 09:16:11','2018-12-13 09:16:17'),(481,'chemistry','93.158.161.83',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-13 09:55:28','2019-08-18 19:16:42'),(482,'government','105.112.41.38',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:18','2018-12-13 10:21:18'),(483,'economics','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:51','2018-12-13 10:46:29'),(484,'biology','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:30:17','2018-12-13 10:32:39'),(485,'chemistry','105.112.41.38',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:47:04','2018-12-13 11:10:33'),(486,'accounting','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:57:43','2018-12-13 11:01:54'),(487,'mathematics','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:05:06','2018-12-13 11:15:23'),(488,'englishlit','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:10:58','2018-12-13 11:14:55'),(489,'chemistry','180.76.15.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 15:45:10','2018-12-13 15:45:10'),(490,'chemistry','180.76.15.16',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:18:30','2018-12-13 16:18:31'),(491,'irk','54.227.19.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:32:52','2018-12-13 16:32:52'),(492,'chemistry','180.76.15.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:51:50','2018-12-13 16:51:50'),(493,'english','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:37','2018-12-13 19:06:38'),(494,'mathematics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:40','2018-12-13 19:08:24'),(495,'crk','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:57','2018-12-13 19:06:58'),(496,'economics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:01','2018-12-13 19:08:24'),(497,'government','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:14','2018-12-13 19:07:14'),(498,'civiledu','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(499,'biology','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(500,'history','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:42','2018-12-13 19:07:42'),(501,'chemistry','178.154.171.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 21:33:50','2018-12-13 21:33:50'),(502,'chemistry','180.76.15.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 00:15:20','2018-12-14 00:15:20'),(503,'chemistry','180.76.15.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 07:43:39','2018-12-14 07:43:39'),(504,'chemistry','197.211.61.108',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 15:01:10','2018-12-14 15:01:10'),(505,'english','105.112.46.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 21:38:58','2018-12-14 21:38:59'),(506,'mathematics','105.112.32.198',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 15:16:16','2018-12-15 15:16:17'),(507,'english','105.112.38.110',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:20:52','2018-12-15 19:20:28'),(508,'biology','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:25:40','2018-12-15 18:25:40'),(509,'economics','105.112.38.110',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:21:25','2018-12-15 19:30:28'),(510,'accounting','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:30:34','2018-12-15 19:30:34'),(511,'physics','175.126.202.88',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 00:43:36','2018-12-16 00:44:38'),(512,'accounting','105.112.34.239',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 10:25:26','2018-12-16 10:25:26'),(513,'accounting','105.112.41.67',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 15:44:34','2018-12-16 16:36:06'),(514,'accounting','105.112.29.182',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 16:52:50','2018-12-16 17:06:10'),(515,'accounting','105.112.34.195',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 17:18:42','2018-12-16 18:36:42'),(516,'chemistry','197.211.56.111',287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:10:04','2018-12-16 19:21:43'),(517,'accounting','105.112.46.33',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:32:00','2018-12-16 19:34:06'),(518,'english','105.112.46.33',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:36:15','2018-12-16 19:36:15'),(519,'mathematics','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(520,'englishlit','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(521,'government','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(522,'economics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(523,'civiledu','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(524,'insurance','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(525,'history','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(526,'accounting','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(527,'physics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(528,'chemistry','197.211.61.98',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:12:52','2018-12-17 06:13:44'),(529,'mathematics','197.211.61.98',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:14:29','2018-12-17 06:14:29'),(530,'english','105.112.45.142',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:21:44','2018-12-17 06:21:44'),(531,'commerce','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(532,'mathematics','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(533,'englishlit','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(534,'accounting','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(535,'crk','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(536,'civiledu','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(537,'irk','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(538,'insurance','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(539,'currentaffairs','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(540,'history','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(541,'crk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(542,'geography','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(543,'economics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(544,'history','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(545,'chemistry','197.210.45.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 17:24:25','2018-12-17 17:39:16'),(546,'mathematics','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:41','2018-12-17 18:04:43'),(547,'english','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:52','2018-12-17 18:04:56'),(548,'chemistry','197.210.227.233',92,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 21:46:03','2020-04-28 16:08:26'),(549,'crk','41.90.4.25',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 05:23:20','2018-12-18 05:23:20'),(550,'mathematics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(551,'chemistry','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(552,'englishlit','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(553,'government','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(554,'economics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(555,'currentaffairs','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(556,'history','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(557,'english','197.149.92.146',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 15:42:59','2019-01-21 14:07:29'),(558,'english','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(559,'physics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(560,'government','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(561,'crk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(562,'economics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(563,'irk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(564,'history','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(565,'mathematics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(566,'commerce','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(567,'biology','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(568,'physics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(569,'crk','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(570,'civiledu','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(571,'mathematics','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(572,'commerce','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(573,'accounting','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(574,'biology','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(575,'government','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(576,'geography','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(577,'insurance','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(578,'english','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(579,'chemistry','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(580,'crk','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(581,'currentaffairs','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(582,'english','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:07:37','2018-12-19 07:07:37'),(583,'currentaffairs','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:08:26','2018-12-19 07:08:26'),(584,'chemistry','141.8.142.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 10:43:20','2018-12-19 10:43:20'),(585,'chemistry','129.205.114.31',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 14:19:13','2018-12-19 14:46:54'),(586,'chemistry','197.210.45.94',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 18:51:50','2018-12-19 19:42:45'),(587,'chemistry','197.210.226.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:52:25','2018-12-19 19:52:25'),(588,'chemistry','197.210.226.37',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:53:27','2018-12-19 19:53:31'),(589,'chemistry','129.205.114.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 22:33:31','2018-12-19 22:33:31'),(590,'chemistry','197.210.131.150',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 06:24:47','2018-12-20 06:43:46'),(591,'english','41.58.233.100',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:12:36','2018-12-20 09:15:21'),(592,'commerce','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(593,'biology','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(594,'physics','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(595,'englishlit','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(596,'geography','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(597,'history','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(598,'mathematics','105.112.37.70',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 19:08:41','2018-12-20 19:08:41'),(599,'english','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(600,'commerce','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(601,'geography','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(602,'economics','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(603,'civiledu','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(604,'insurance','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(605,'history','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(606,'currentaffairs','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:19','2018-12-21 08:05:19'),(607,'biology','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:51','2018-12-21 08:05:51'),(608,'english','105.112.47.163',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:24:03','2018-12-21 10:19:51'),(609,'chemistry','105.112.47.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:39:11','2018-12-21 08:39:37'),(610,'physics','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:45:24','2018-12-21 08:45:25'),(611,'mathematics','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(612,'chemistry','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(613,'englishlit','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(614,'geography','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(615,'civiledu','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(616,'currentaffairs','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(617,'history','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(618,'mathematics','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:33:23','2018-12-22 05:33:23'),(619,'english','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:35:01','2018-12-22 05:35:01'),(620,'chemistry','197.211.61.114',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:26:13','2018-12-22 11:17:52'),(621,'english','197.211.61.114',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:31:29','2018-12-22 10:01:02'),(622,'mathematics','197.211.61.114',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 10:51:19','2018-12-22 11:44:17'),(623,'biology','197.211.61.114',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:15:56','2018-12-22 11:38:07'),(624,'economics','197.211.61.114',601,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:45:00','2018-12-22 11:54:26'),(625,'english','105.112.46.179',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:02:33','2018-12-22 12:32:21'),(626,'biology','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:12:59','2018-12-22 12:12:59'),(627,'mathematics','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:14:25','2018-12-22 12:14:25'),(628,'biology','105.112.27.90',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 14:12:09','2018-12-22 14:12:19'),(629,'biology','105.112.28.72',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 08:30:27','2018-12-23 08:31:00'),(630,'mathematics','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:34','2018-12-23 10:24:34'),(631,'commerce','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(632,'biology','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(633,'government','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(634,'crk','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(635,'civiledu','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(636,'history','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(637,'english','102.163.30.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 14:59:34','2018-12-23 14:59:34'),(638,'chemistry','94.130.64.96',101,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-24 16:32:40','2019-10-29 05:22:55'),(639,'chemistry','87.250.224.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 15:07:57','2018-12-25 15:07:57'),(640,'english','105.112.46.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 16:28:23','2018-12-25 16:28:24'),(641,'chemistry','197.242.105.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 21:07:41','2018-12-25 21:07:41'),(642,'mathematics','129.56.150.67',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 06:03:54','2018-12-26 06:03:54'),(643,'currentaffairs','105.112.43.199',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 07:57:50','2018-12-26 08:02:07'),(644,'economics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:16','2018-12-26 08:24:50'),(645,'english','105.112.43.199',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:19','2018-12-26 08:13:25'),(646,'biology','105.112.43.199',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:13:33','2018-12-26 08:15:51'),(647,'mathematics','105.112.43.199',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:19:50','2018-12-26 08:19:50'),(648,'chemistry','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:21:57','2018-12-26 08:22:00'),(649,'physics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:23:21','2018-12-26 08:23:26'),(650,'biology','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(651,'physics','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(652,'government','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(653,'geography','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(654,'civiledu','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(655,'currentaffairs','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(656,'history','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(657,'accounting','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(658,'chemistry','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(659,'irk','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(660,'english','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(661,'commerce','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(662,'physics','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(663,'englishlit','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(664,'irk','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(665,'civiledu','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(666,'currentaffairs','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(667,'commerce','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(668,'accounting','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(669,'biology','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(670,'chemistry','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(671,'economics','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(672,'irk','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(673,'currentaffairs','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(674,'mathematics','197.211.63.177',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 09:02:54','2018-12-28 09:02:54'),(675,'english','66.249.75.30',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:23:21','2018-12-28 10:23:21'),(676,'government','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:24:59','2018-12-28 10:24:59'),(677,'geography','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:28:56','2018-12-28 10:28:56'),(678,'mathematics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:30:30','2018-12-28 10:30:30'),(679,'physics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:43:38','2018-12-28 10:43:39'),(680,'physics','119.4.252.222',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 13:32:48','2018-12-28 13:32:48'),(681,'mathematics','105.112.40.153',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:15','2018-12-29 06:30:15'),(682,'english','105.112.40.153',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:27','2018-12-29 06:30:31'),(683,'mathematics','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(684,'english','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(685,'commerce','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(686,'physics','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(687,'biology','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(688,'englishlit','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(689,'government','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(690,'chemistry','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(691,'geography','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(692,'currentaffairs','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 11:39:05'),(693,'irk','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 12:00:15'),(694,'insurance','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(695,'biology','197.211.61.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-30 18:14:56','2018-12-30 18:14:56'),(696,'englishlit','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 08:59:20','2019-01-01 08:59:20'),(697,'civiledu','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 09:06:49','2019-01-01 09:06:49'),(698,'mathematics','197.210.227.192',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 13:01:04','2019-01-01 13:01:05'),(699,'english','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:15','2019-01-02 13:19:15'),(700,'mathematics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:33','2019-01-02 13:19:33'),(701,'physics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:52','2019-01-02 13:19:52'),(702,'chemistry','216.244.66.249',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-03 00:12:52','2020-05-01 01:03:29'),(703,'chemistry','129.56.72.46',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:37:05','2019-01-03 15:53:03'),(704,'physics','129.56.72.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:42:55','2019-01-03 15:42:55'),(705,'english','129.56.72.46',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:43:08','2019-01-03 15:43:45'),(706,'chemistry','197.211.61.138',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-04 14:31:06','2019-01-04 14:31:06'),(707,'chemistry','54.36.222.37',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:24:51','2019-01-05 15:25:12'),(708,'chemistry','105.112.68.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:25:43','2019-01-05 15:25:43'),(709,'chemistry','41.58.55.77',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:20:09','2019-01-05 16:29:28'),(710,'government','41.58.55.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:30:37','2019-01-05 16:30:37'),(711,'english','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:28','2019-01-06 16:30:29'),(712,'physics','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:33','2019-01-06 16:30:33'),(713,'english','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(714,'mathematics','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(715,'physics','54.163.211.17',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(716,'englishlit','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(717,'crk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(718,'government','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(719,'irk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(720,'economics','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(721,'history','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(722,'insurance','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(723,'currentaffairs','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(724,'mathematics','105.112.16.240',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(725,'physics','105.112.16.240',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(726,'english','35.171.138.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:39:33','2019-01-07 09:39:33'),(727,'chemistry','141.8.142.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:47:24','2019-01-07 09:47:24'),(728,'chemistry','129.56.36.237',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 14:52:19','2019-01-07 14:54:09'),(729,'chemistry','129.56.35.102',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:18:44','2019-01-08 07:43:45'),(730,'mathematics','129.56.35.102',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:20:24','2019-01-08 07:41:53'),(731,'mathematics','105.112.23.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:11:31','2019-01-08 09:11:31'),(732,'english','105.112.32.121',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:42:08','2019-01-08 09:42:22'),(733,'chemistry','197.211.61.143',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:10:03','2019-01-08 14:10:20'),(734,'chemistry','154.68.226.2',118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:34:37','2019-01-08 14:39:59'),(735,'english','154.68.226.2',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:39:32','2019-01-08 14:39:32'),(736,'chemistry','105.112.75.253',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:28:30','2019-01-08 18:28:52'),(737,'chemistry','105.112.33.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:43:41','2019-01-08 18:43:41'),(738,'chemistry','35.192.130.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 23:46:16','2019-01-08 23:46:25'),(739,'mathematics','105.112.18.0',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 07:37:37','2019-01-09 07:37:38'),(740,'chemistry','154.118.13.144',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:11:55','2019-01-09 08:13:04'),(741,'mathematics','154.118.13.144',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:12:11','2019-01-09 08:12:47'),(742,'mathematics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(743,'commerce','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(744,'accounting','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(745,'government','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(746,'economics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(747,'civiledu','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(748,'currentaffairs','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(749,'chemistry','41.77.168.134',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:45:00','2019-01-09 08:58:31'),(750,'mathematics','41.77.168.134',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:48:48','2019-01-09 08:48:48'),(751,'english','41.77.168.134',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:58:57','2019-01-09 09:03:34'),(752,'commerce','54.196.34.230',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:52:38'),(753,'accounting','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(754,'chemistry','54.196.34.230',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:19:42'),(755,'englishlit','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(756,'economics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(757,'irk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(758,'insurance','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(759,'physics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(760,'government','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(761,'crk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(762,'geography','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(763,'civiledu','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(764,'history','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(765,'chemistry','80.248.6.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:06:19','2019-01-09 10:06:19'),(766,'chemistry','154.118.61.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:32:10','2019-01-09 10:32:45'),(767,'english','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(768,'mathematics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(769,'commerce','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(770,'accounting','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(771,'physics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(772,'government','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(773,'insurance','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(774,'chemistry','197.242.96.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:31:54','2019-01-09 12:36:27'),(775,'commerce','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(776,'accounting','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(777,'physics','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(778,'government','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(779,'crk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(780,'irk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(781,'history','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(782,'chemistry','197.211.61.140',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:31:17','2019-01-09 13:31:45'),(783,'chemistry','197.210.28.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:45:23','2019-01-09 13:45:42'),(784,'chemistry','105.112.26.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:11:31','2019-01-09 16:11:31'),(785,'chemistry','212.100.76.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:20:25','2019-01-09 16:20:25'),(786,'english','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(787,'commerce','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(788,'chemistry','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(789,'accounting','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(790,'crk','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(791,'englishlit','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(792,'geography','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(793,'economics','54.234.47.73',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:14:14'),(794,'irk','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(795,'history','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(796,'insurance','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(797,'chemistry','51.75.71.123',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 23:42:44','2019-01-09 23:43:14'),(798,'chemistry','129.205.114.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 01:56:23','2019-01-10 01:56:30'),(799,'mathematics','197.210.47.164',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:43:39','2019-01-10 09:02:20'),(800,'chemistry','197.210.47.164',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:49:36','2019-01-10 08:58:38'),(801,'mathematics','163.172.103.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 09:01:09','2019-01-10 09:01:09'),(802,'chemistry','41.223.145.174',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 14:44:39','2019-01-10 14:44:40'),(803,'english','54.82.110.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 20:51:21','2019-01-10 20:51:21'),(804,'english','105.112.46.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:06:16','2019-01-10 21:06:16'),(805,'english','54.80.138.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:20','2019-01-10 21:09:20'),(806,'accounting','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(807,'physics','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(808,'chemistry','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(809,'government','54.80.138.166',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(810,'geography','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:23'),(811,'insurance','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(812,'history','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(813,'commerce','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:33','2019-01-10 21:45:05'),(814,'crk','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:45:05'),(815,'economics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:23'),(816,'civiledu','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:25'),(817,'mathematics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:45:05'),(818,'biology','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:21:37'),(819,'irk','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:45:05'),(820,'currentaffairs','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:34:23'),(821,'mathematics','105.112.46.80',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:40:26','2019-01-10 21:40:35'),(822,'chemistry','197.210.226.19',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 06:57:07','2019-01-11 07:15:56'),(823,'chemistry','197.210.53.216',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:13','2019-01-11 07:55:13'),(824,'chemistry','197.210.52.249',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:24','2019-02-01 07:57:34'),(825,'chemistry','197.210.53.38',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:33','2019-01-11 07:55:33'),(826,'chemistry','141.0.12.246',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 08:09:00','2019-01-11 08:09:00'),(827,'chemistry','93.158.161.104',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-11 11:59:42','2019-11-14 01:45:39'),(828,'mathematics','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(829,'physics','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(830,'chemistry','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(831,'government','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(832,'geography','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(833,'economics','54.205.11.114',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(834,'currentaffairs','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(835,'english','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(836,'commerce','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(837,'biology','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(838,'crk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(839,'irk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(840,'insurance','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(841,'civiledu','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(842,'history','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(843,'chemistry','197.210.227.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:05:33','2019-01-11 19:05:33'),(844,'english','197.210.227.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:09:52','2019-01-11 19:09:52'),(845,'englishlit','197.211.61.137',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 22:39:43','2019-01-11 22:39:43'),(846,'physics','197.242.97.253',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:01:48','2019-01-11 23:05:05'),(847,'mathematics','197.242.97.253',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:06:07','2019-01-11 23:31:02'),(848,'chemistry','197.211.61.137',101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:08:07','2019-01-11 23:30:04'),(849,'irk','197.211.61.137',2640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:30:32','2019-01-12 01:52:58'),(850,'civiledu','197.211.61.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:38:40','2019-01-12 00:01:30'),(851,'crk','197.211.61.137',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 01:59:32','2019-01-12 02:01:42'),(852,'chemistry','154.113.86.220',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 12:01:05','2019-01-12 12:05:52'),(853,'chemistry','197.210.55.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:02','2019-01-12 13:17:02'),(854,'chemistry','197.210.54.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:27','2019-01-12 13:17:35'),(855,'chemistry','197.210.54.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:18:25','2019-01-12 13:18:25'),(856,'english','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(857,'mathematics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(858,'commerce','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(859,'biology','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(860,'physics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(861,'irk','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(862,'insurance','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(863,'english','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(864,'biology','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(865,'physics','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(866,'government','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(867,'irk','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(868,'civiledu','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(869,'insurance','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(870,'chemistry','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(871,'englishlit','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(872,'history','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(873,'english','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(874,'mathematics','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(875,'biology','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(876,'geography','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(877,'irk','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(878,'insurance','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(879,'history','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(880,'english','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:04:50','2019-01-12 20:04:50'),(881,'chemistry','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:05:26','2019-01-12 20:05:27'),(882,'irk','197.210.47.86',180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:21:42','2019-01-12 20:26:58'),(883,'insurance','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:27:49','2019-01-12 20:27:49'),(884,'mathematics','197.210.47.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:36:53','2019-01-12 20:39:06'),(885,'chemistry','154.120.102.146',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 00:32:56','2019-01-13 00:33:43'),(886,'english','197.210.54.214',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:56:19'),(887,'english','197.210.54.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:02:41'),(888,'mathematics','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:09:53','2019-01-13 08:09:53'),(889,'mathematics','197.210.55.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:10:36','2019-01-13 08:10:36'),(890,'english','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:51:48','2019-01-13 08:51:48'),(891,'english','197.210.55.13',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:59:29','2019-01-13 08:59:29'),(892,'chemistry','197.210.44.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:00:31','2019-01-13 11:00:31'),(893,'english','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(894,'commerce','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(895,'biology','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(896,'chemistry','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(897,'englishlit','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(898,'government','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(899,'history','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(900,'english','197.210.226.45',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 14:49:00','2019-01-13 14:49:00'),(901,'physics','197.210.227.184',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(902,'physics','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(903,'english','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:59:10','2019-01-13 15:59:10'),(904,'english','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:02:36','2019-01-13 16:02:36'),(905,'biology','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:05:26','2019-01-13 16:05:26'),(906,'biology','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:10:47','2019-01-13 16:12:44'),(907,'physics','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:39:55','2019-01-13 16:39:55'),(908,'economics','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:33:11','2019-01-13 17:41:35'),(909,'mathematics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(910,'english','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(911,'accounting','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(912,'physics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(913,'chemistry','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(914,'englishlit','54.87.49.142',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(915,'crk','54.87.49.142',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(916,'government','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(917,'geography','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(918,'economics','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(919,'commerce','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(920,'civiledu','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(921,'currentaffairs','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(922,'history','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(923,'english','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(924,'commerce','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(925,'physics','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(926,'englishlit','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(927,'geography','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(928,'insurance','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(929,'currentaffairs','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(930,'mathematics','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(931,'accounting','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(932,'crk','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(933,'mathematics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(934,'commerce','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(935,'government','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(936,'chemistry','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(937,'crk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(938,'englishlit','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(939,'economics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(940,'irk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(941,'geography','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(942,'insurance','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(943,'civiledu','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(944,'currentaffairs','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(945,'chemistry','41.58.81.61',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 06:35:26','2019-01-14 11:20:24'),(946,'chemistry','67.222.154.247',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:40:10','2019-01-14 07:40:10'),(947,'mathematics','41.58.182.193',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:50:27','2019-01-14 15:09:22'),(948,'commerce','41.58.182.193',2080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 09:57:28','2019-01-14 13:27:13'),(949,'chemistry','154.120.102.252',854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:00:36','2019-01-14 10:20:54'),(950,'accounting','41.58.182.193',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:01:42','2019-01-14 13:14:55'),(951,'commerce','197.211.61.136',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:38:39','2019-01-14 10:38:59'),(952,'biology','41.58.81.61',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:18:50','2019-01-14 11:19:07'),(953,'chemistry','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:24:11','2019-01-14 11:24:11'),(954,'english','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:25:28','2019-01-14 11:25:28'),(955,'english','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(956,'commerce','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(957,'accounting','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(958,'government','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(959,'crk','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(960,'civiledu','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(961,'insurance','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(962,'chemistry','73.142.154.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:37:12','2019-01-14 11:37:12'),(963,'chemistry','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:10:52','2019-01-14 14:26:38'),(964,'geography','154.118.29.188',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:50:28','2019-01-14 14:27:52'),(965,'history','154.118.29.188',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:23:24'),(966,'economics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:27:38'),(967,'insurance','154.118.29.188',95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:24:14'),(968,'english','154.118.29.188',71,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:24','2019-01-14 14:25:44'),(969,'crk','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:33','2019-01-14 14:23:40'),(970,'englishlit','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:39','2019-01-14 14:27:06'),(971,'biology','154.118.29.188',77,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:19','2019-01-14 14:25:59'),(972,'accounting','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:21','2019-01-14 14:26:39'),(973,'mathematics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:22','2019-01-14 14:25:10'),(974,'physics','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:27','2019-01-14 14:27:00'),(975,'currentaffairs','154.118.29.188',109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:29','2019-01-14 14:24:12'),(976,'commerce','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:24:22'),(977,'irk','154.118.29.188',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:27:24'),(978,'civiledu','154.118.29.188',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:39','2019-01-14 14:27:37'),(979,'government','154.118.29.188',112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:45','2019-01-14 14:27:52'),(980,'english','105.112.26.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:16:02','2019-01-14 13:16:02'),(981,'physics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:23:47','2019-01-14 13:23:47'),(982,'chemistry','102.176.244.209',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:27:15','2019-01-14 13:27:15'),(983,'englishlit','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:28:42','2019-01-14 13:28:42'),(984,'chemistry','3.82.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:46'),(985,'chemistry','54.221.199.147',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:47'),(986,'english','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:18:34'),(987,'mathematics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(988,'government','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(989,'crk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(990,'economics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(991,'irk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(992,'civiledu','54.83.84.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(993,'insurance','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:41'),(994,'geography','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:09'),(995,'economics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:58','2019-01-14 14:35:25'),(996,'civiledu','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:04','2019-01-14 14:37:40'),(997,'chemistry','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:12','2019-01-14 14:37:32'),(998,'irk','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:34','2019-01-14 14:37:32'),(999,'mathematics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:38','2019-01-14 14:34:17'),(1000,'currentaffairs','41.217.124.252',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:52','2019-01-14 14:36:53'),(1001,'crk','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:59','2019-01-14 14:33:56'),(1002,'physics','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:04','2019-01-14 14:34:57'),(1003,'english','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:10','2019-01-14 14:36:11'),(1004,'accounting','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:16','2019-01-14 14:37:41'),(1005,'commerce','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:24','2019-01-14 14:36:54'),(1006,'government','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:33:56','2019-01-14 14:35:57'),(1007,'englishlit','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:34:57','2019-01-14 14:36:30'),(1008,'accounting','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1009,'physics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1010,'chemistry','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1011,'currentaffairs','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1012,'history','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1013,'biology','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:25','2019-01-14 14:37:26'),(1014,'history','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:36:21','2019-01-14 14:37:39'),(1015,'mathematics','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:40:53','2019-01-14 15:01:48'),(1016,'insurance','154.120.104.84',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:10','2019-01-14 14:59:05'),(1017,'history','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:40','2019-01-14 14:58:06'),(1018,'government','154.120.104.84',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:00:27'),(1019,'currentaffairs','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:37'),(1020,'economics','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:20'),(1021,'civiledu','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:51','2019-01-14 14:59:48'),(1022,'biology','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:58','2019-01-14 15:01:49'),(1023,'chemistry','154.120.104.84',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:04','2019-01-14 15:01:09'),(1024,'englishlit','154.120.104.84',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:05','2019-01-14 15:01:56'),(1025,'commerce','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:07','2019-01-14 15:01:04'),(1026,'crk','154.120.104.84',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1027,'geography','154.120.104.84',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 14:59:41'),(1028,'english','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1029,'irk','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:44:31','2019-01-14 15:01:38'),(1030,'physics','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:46:00','2019-01-14 15:00:40'),(1031,'accounting','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:48:21','2019-01-14 15:01:46'),(1032,'crk','54.224.217.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 15:45:45','2019-01-14 15:45:45'),(1033,'commerce','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:22:40','2019-01-14 16:22:40'),(1034,'history','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:24:24','2019-01-14 16:24:24'),(1035,'chemistry','168.253.115.37',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:46:30','2019-01-14 16:46:30'),(1036,'chemistry','197.242.101.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 17:00:07','2019-01-14 17:00:08'),(1037,'chemistry','105.112.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:34:19','2019-01-14 18:34:19'),(1038,'english','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:33','2019-01-14 18:52:34'),(1039,'chemistry','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:40','2019-01-14 18:52:40'),(1040,'mathematics','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:00','2019-01-14 18:53:01'),(1041,'biology','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:10','2019-01-14 18:53:11'),(1042,'english','218.94.63.46',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1043,'english','218.94.63.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:03'),(1044,'economics','218.94.63.46',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1045,'english','197.211.61.152',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 03:35:57','2019-01-15 03:36:17'),(1046,'chemistry','154.118.16.190',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:40:00'),(1047,'chemistry','154.118.16.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:39:18'),(1048,'chemistry','105.112.37.149',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:48:36','2019-01-15 10:57:07'),(1049,'economics','105.112.37.149',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:50:17','2019-01-15 15:03:40'),(1050,'commerce','41.222.43.114',164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:59:58','2019-01-15 14:58:39'),(1051,'currentaffairs','41.222.43.114',176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:04','2019-01-15 14:59:14'),(1052,'accounting','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:13','2019-01-15 14:57:38'),(1053,'history','41.222.43.114',156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:17','2019-01-15 14:58:14'),(1054,'crk','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:27','2019-01-15 14:56:43'),(1055,'irk','41.222.43.114',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:33','2019-01-15 14:59:08'),(1056,'economics','41.222.43.114',171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:38','2019-01-15 14:57:48'),(1057,'mathematics','41.222.43.114',147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:48','2019-01-15 14:58:28'),(1058,'physics','41.222.43.114',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:58','2019-01-15 14:56:23'),(1059,'civiledu','41.222.43.114',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:03','2019-01-15 14:58:33'),(1060,'english','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:19','2019-01-15 14:58:49'),(1061,'insurance','41.222.43.114',178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:33','2019-01-15 14:59:03'),(1062,'government','41.222.43.114',170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:48','2019-01-15 14:58:58'),(1063,'chemistry','41.222.43.114',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:58','2019-01-15 14:58:44'),(1064,'geography','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:04','2019-01-15 14:53:49'),(1065,'biology','41.222.43.114',149,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:13','2019-01-15 14:55:33'),(1066,'englishlit','41.222.43.114',166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:03:14','2019-01-15 14:58:08'),(1067,'chemistry','197.210.45.97',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:04:32','2019-01-15 11:04:46'),(1068,'economics','197.210.45.97',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:15:28','2019-01-15 11:40:03'),(1069,'biology','197.210.45.97',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:17:50','2019-01-15 11:18:29'),(1070,'chemistry','169.159.108.237',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:25:31','2019-01-15 11:25:31'),(1071,'chemistry','129.18.141.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:50:09','2019-01-15 11:50:09'),(1072,'english','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:29','2019-01-15 12:33:29'),(1073,'mathematics','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:44','2019-01-15 12:33:45'),(1074,'chemistry','154.117.120.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:34:24','2019-01-15 12:34:24'),(1075,'englishlit','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:46','2019-01-15 13:57:08'),(1076,'crk','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:47','2019-01-15 13:56:49'),(1077,'accounting','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:48','2019-01-15 13:57:48'),(1078,'history','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:58','2019-01-15 13:56:58'),(1079,'mathematics','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:03','2019-01-15 13:57:03'),(1080,'economics','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:13','2019-01-15 13:57:28'),(1081,'geography','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:18','2019-01-15 13:57:18'),(1082,'chemistry','41.184.122.84',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-15 13:57:23','2019-11-12 12:30:51'),(1083,'biology','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:33','2019-01-15 13:57:53'),(1084,'insurance','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:38','2019-01-15 13:58:43'),(1085,'civiledu','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:43','2019-01-15 13:58:53'),(1086,'irk','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:58','2019-01-15 13:57:58'),(1087,'physics','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:03','2019-01-15 13:58:48'),(1088,'currentaffairs','41.184.122.84',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:13','2019-01-15 13:58:38'),(1089,'commerce','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:33','2019-01-15 13:58:33'),(1090,'english','41.217.112.165',595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:13:18','2019-01-15 18:35:09'),(1091,'mathematics','41.217.112.165',682,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:37:42','2019-01-15 20:35:48'),(1092,'mathematics','154.118.11.179',218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:09:53','2019-01-15 21:33:28'),(1093,'mathematics','105.112.19.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:11:19','2019-01-15 20:11:19'),(1094,'chemistry','154.118.11.179',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:00:39','2019-01-15 21:00:39'),(1095,'english','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1096,'commerce','54.211.194.179',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1097,'biology','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1098,'chemistry','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1099,'accounting','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1100,'physics','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1101,'englishlit','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1102,'geography','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1103,'government','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1104,'civiledu','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1105,'currentaffairs','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1106,'crk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1107,'history','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1108,'economics','54.211.194.179',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1109,'irk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1110,'english','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1111,'mathematics','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1112,'commerce','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1113,'biology','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1114,'englishlit','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1115,'government','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1116,'history','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1117,'accounting','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1118,'crk','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1119,'economics','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1120,'civiledu','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1121,'insurance','54.90.226.10',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1122,'chemistry','105.112.18.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:40:38','2019-01-16 06:40:39'),(1123,'chemistry','105.112.26.11',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:57:01','2019-01-16 06:57:01'),(1124,'english','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:11:18','2019-01-16 08:11:18'),(1125,'economics','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:12:44','2019-01-16 08:12:44'),(1126,'government','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:37:13','2019-01-16 08:37:13'),(1127,'commerce','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1128,'accounting','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1129,'physics','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1130,'geography','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1131,'civiledu','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1132,'insurance','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1133,'history','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1134,'english','54.235.31.132',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 10:26:39','2019-01-16 10:26:39'),(1135,'government','54.90.239.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:30:56','2019-01-16 12:30:56'),(1136,'economics','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:34:56','2019-01-16 12:34:57'),(1137,'insurance','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:48:13','2019-01-16 13:48:13'),(1138,'civiledu','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:55:55','2019-01-16 13:55:55'),(1139,'government','54.226.242.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 15:41:22','2019-01-16 15:41:22'),(1140,'economics','197.210.64.25',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:45:11','2019-01-16 16:54:28'),(1141,'chemistry','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:58:41','2019-01-16 16:58:53'),(1142,'mathematics','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:59:05','2019-01-16 17:07:06'),(1143,'mathematics','41.138.87.73',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 17:49:50','2019-01-16 17:53:24'),(1144,'chemistry','173.225.16.67',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 18:43:39','2019-01-19 04:12:25'),(1145,'commerce','34.207.210.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 19:50:10','2019-01-16 19:50:29'),(1146,'biology','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 20:40:19','2019-01-16 20:40:19'),(1147,'chemistry','41.138.81.104',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:39:14','2019-01-16 21:39:58'),(1148,'history','41.138.81.104',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:40:15','2019-01-16 21:41:27'),(1149,'accounting','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 22:44:31','2019-01-16 22:44:31'),(1150,'mathematics','3.83.38.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 04:39:27','2019-01-17 04:39:27'),(1151,'english','102.176.244.209',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 13:44:54','2019-01-21 11:05:17'),(1152,'chemistry','197.255.52.86',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:42:55','2019-01-17 14:43:15'),(1153,'accounting','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1154,'physics','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1155,'chemistry','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1156,'englishlit','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1157,'government','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1158,'geography','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1159,'insurance','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1160,'biology','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1161,'crk','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1162,'civiledu','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1163,'chemistry','68.13.248.93',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 02:01:44','2019-01-18 02:02:05'),(1164,'chemistry','72.183.76.77',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 03:28:05','2019-01-18 03:29:19'),(1165,'chemistry','197.211.61.152',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 07:10:31','2019-01-18 07:12:13'),(1166,'biology','54.162.164.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 09:21:43','2019-01-18 09:21:43'),(1167,'chemistry','105.112.112.103',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:18:21','2019-01-18 10:19:31'),(1168,'chemistry','197.210.221.158',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:20:34','2019-01-18 10:21:00'),(1169,'chemistry','165.73.192.11',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:30:28','2019-01-18 10:30:38'),(1170,'chemistry','197.210.47.116',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:39:50','2020-04-21 15:26:10'),(1171,'history','66.249.93.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 11:29:27','2019-01-18 11:29:27'),(1172,'chemistry','154.118.20.163',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:12:36','2019-01-18 12:12:36'),(1173,'chemistry','129.56.80.136',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:13:30','2019-01-18 12:14:17'),(1174,'mathematics','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:14:30','2019-01-18 12:14:30'),(1175,'english','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:15:08','2019-01-18 12:15:09'),(1176,'history','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:34:02','2019-01-18 13:34:02'),(1177,'mathematics','41.203.72.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:35:18','2019-01-18 13:35:19'),(1178,'english','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:46:36','2019-01-18 13:46:36'),(1179,'chemistry','41.191.104.66',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:54:05','2019-01-18 13:54:05'),(1180,'chemistry','72.182.201.96',96,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 14:53:27','2019-01-18 14:54:54'),(1181,'chemistry','66.249.73.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:35:04','2019-01-18 16:35:04'),(1182,'commerce','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1183,'physics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1184,'chemistry','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1185,'englishlit','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1186,'geography','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1187,'crk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1188,'irk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:38'),(1189,'currentaffairs','54.211.126.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1190,'civiledu','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1191,'history','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1192,'insurance','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1193,'biology','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:40:42'),(1194,'government','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:38'),(1195,'economics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:47'),(1196,'english','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1197,'accounting','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1198,'mathematics','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:40:42','2019-01-18 16:40:42'),(1199,'crk','54.161.130.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 17:33:33','2019-01-18 17:33:33'),(1200,'chemistry','102.134.114.214',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 20:59:05','2019-01-18 20:59:42'),(1201,'government','54.227.72.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 22:16:13','2019-01-18 22:16:13'),(1202,'government','54.91.120.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 01:06:53','2019-01-19 01:06:53'),(1203,'accounting','54.227.122.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 04:33:38','2019-01-19 04:33:38'),(1204,'commerce','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1205,'physics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1206,'government','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1207,'geography','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1208,'economics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1209,'irk','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1210,'civiledu','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1211,'crk','54.221.144.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:40:28','2019-01-19 07:40:28'),(1212,'chemistry','129.56.27.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 09:08:03','2019-01-19 09:08:03'),(1213,'chemistry','142.120.136.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 10:20:14','2019-01-19 10:20:14'),(1214,'chemistry','178.5.57.197',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 11:52:36','2019-01-19 11:54:27'),(1215,'chemistry','163.172.103.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 12:08:33','2019-01-19 12:08:33'),(1216,'chemistry','41.190.2.147',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:15:10','2019-01-19 13:19:19'),(1217,'chemistry','105.176.145.237',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:26:28','2019-01-19 13:31:47'),(1218,'biology','105.176.145.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:33:44','2019-01-19 13:33:44'),(1219,'english','197.211.61.157',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 17:04:45','2019-01-19 17:04:45'),(1220,'english','54.162.8.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:40:29','2019-01-19 20:40:29'),(1221,'mathematics','51.15.164.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:50:22','2019-01-19 20:50:22'),(1222,'history','66.249.88.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:16:25','2019-01-20 07:16:25'),(1223,'history','66.249.93.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:27:21','2019-01-20 07:27:21'),(1224,'chemistry','197.210.29.161',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 11:59:53','2019-01-20 12:02:04'),(1225,'english','54.87.9.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 15:47:38','2019-01-20 15:47:38'),(1226,'chemistry','66.249.66.148',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 17:41:21','2019-01-20 17:44:12'),(1227,'chemistry','46.229.168.129',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-20 18:19:28','2020-03-16 03:20:32'),(1228,'english','54.205.83.37',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1229,'mathematics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1230,'government','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1231,'accounting','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1232,'geography','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1233,'crk','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1234,'economics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1235,'economics','54.205.83.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1236,'civiledu','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1237,'insurance','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1238,'currentaffairs','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1239,'history','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1240,'history','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:05:55','2019-01-21 05:05:55'),(1241,'mathematics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1242,'commerce','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1243,'physics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1244,'englishlit','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1245,'geography','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1246,'economics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1247,'currentaffairs','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1248,'english','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1249,'biology','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1250,'chemistry','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1251,'crk','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1252,'history','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1253,'chemistry','41.190.3.176',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 08:43:52','2019-01-21 08:49:54'),(1254,'chemistry','41.191.104.112',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 13:29:06','2019-02-11 14:20:17'),(1255,'chemistry','197.210.226.53',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:14:04','2019-01-21 17:18:25'),(1256,'chemistry','197.210.226.64',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:19:47','2019-01-21 17:49:54'),(1257,'chemistry','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:21:23','2019-01-21 17:21:23'),(1258,'mathematics','197.210.227.233',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:29:23','2019-01-21 17:29:23'),(1259,'mathematics','197.210.226.64',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:48:04','2019-05-25 14:23:44'),(1260,'chemistry','197.210.52.70',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 18:43:18','2019-01-26 10:26:21'),(1261,'mathematics','105.112.23.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 23:50:11','2019-01-21 23:50:11'),(1262,'chemistry','41.191.104.126',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 12:07:26','2019-01-22 12:13:11'),(1263,'chemistry','105.112.27.156',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:30:44','2019-01-22 13:33:01'),(1264,'english','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:36','2019-01-22 13:33:36'),(1265,'commerce','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:56','2019-01-22 13:33:56'),(1266,'mathematics','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:34:19','2019-01-22 13:34:19'),(1267,'english','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1268,'accounting','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1269,'government','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1270,'civiledu','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1271,'insurance','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1272,'currentaffairs','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1273,'history','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1274,'chemistry','41.191.107.133',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:40:08','2019-01-22 14:40:08'),(1275,'chemistry','41.191.107.216',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 15:11:15','2019-04-12 06:41:44'),(1276,'chemistry','41.191.107.208',154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 16:28:30','2019-01-22 16:33:44'),(1277,'biology','54.147.167.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:04:47','2019-01-22 18:04:47'),(1278,'insurance','54.81.167.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:45:46','2019-01-22 18:45:46'),(1279,'biology','197.211.61.167',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 19:57:02','2019-01-22 19:57:02'),(1280,'commerce','3.81.140.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 20:21:37','2019-01-22 20:21:37'),(1281,'chemistry','41.191.104.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:21:52','2019-01-22 21:21:52'),(1282,'chemistry','41.191.104.124',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:28:37','2019-01-27 21:27:34'),(1283,'englishlit','54.172.206.195',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:57:00','2019-01-22 21:57:00'),(1284,'chemistry','197.211.60.92',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 02:17:56','2019-01-23 02:20:31'),(1285,'chemistry','66.249.93.42',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 04:09:58','2019-02-14 14:08:04'),(1286,'chemistry','41.191.107.155',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 10:14:34','2019-01-23 10:14:45'),(1287,'chemistry','41.191.104.86',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 12:43:27','2019-01-23 12:43:27'),(1288,'chemistry','41.191.107.198',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:01:14','2019-01-23 13:08:26'),(1289,'chemistry','41.191.104.249',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:08:39','2019-01-23 13:15:36'),(1290,'mathematics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1291,'english','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1292,'biology','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1293,'commerce','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1294,'physics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1295,'englishlit','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1296,'chemistry','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1297,'government','54.162.153.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1298,'irk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1299,'crk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1300,'geography','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1301,'civiledu','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1302,'currentaffairs','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1303,'economics','212.100.95.210',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:14:58','2019-01-24 08:14:59'),(1304,'chemistry','66.249.93.44',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:24:17','2019-02-04 14:03:36'),(1305,'english','41.191.107.227',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:51:56','2019-01-24 09:52:02'),(1306,'chemistry','41.191.107.227',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 09:32:48','2019-01-24 09:34:19'),(1307,'english','41.191.107.206',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 10:03:24','2019-04-18 16:27:25'),(1308,'english','41.217.124.194',937,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 12:30:40','2019-01-24 13:11:10'),(1309,'mathematics','41.217.124.194',363,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 13:22:56','2019-01-24 13:37:40'),(1310,'commerce','54.91.221.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:05:23','2019-01-24 14:05:23'),(1311,'english','41.191.107.138',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:21:11','2019-04-14 17:04:58'),(1312,'chemistry','41.191.107.138',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:33:41','2019-01-27 21:20:19'),(1313,'commerce','41.217.124.194',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:39:06','2019-01-24 14:39:31'),(1314,'english','41.191.104.91',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:49:01','2019-04-15 21:32:14'),(1315,'mathematics','41.191.104.91',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 15:18:28','2019-04-15 21:20:52'),(1316,'history','3.82.242.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 00:01:01','2019-01-25 00:01:01'),(1317,'englishlit','54.82.44.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:01:01','2019-01-25 04:01:01'),(1318,'chemistry','105.112.96.148',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:45:44','2019-01-25 04:45:44'),(1319,'chemistry','41.190.2.209',15,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 05:44:24','2019-09-18 16:51:41'),(1320,'chemistry','197.210.8.9',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 06:10:55','2019-01-25 08:35:26'),(1321,'history','54.161.164.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 08:01:07','2019-01-25 08:01:07'),(1322,'chemistry','197.210.60.170',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:01:12','2019-01-25 11:01:12'),(1323,'english','197.210.60.170',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:04:07','2019-01-25 11:07:03'),(1324,'chemistry','41.190.30.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:53:49','2019-01-25 11:53:49'),(1325,'biology','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:35:12','2019-01-25 14:35:38'),(1326,'englishlit','41.190.31.164',116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:41:44','2019-01-25 14:56:06'),(1327,'chemistry','197.210.52.237',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:07','2019-01-25 14:51:53'),(1328,'chemistry','197.210.52.239',162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:30','2019-01-25 14:52:22'),(1329,'chemistry','197.210.52.138',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:52:01','2019-01-25 14:52:32'),(1330,'government','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:53:59','2019-01-25 14:53:59'),(1331,'chemistry','197.210.44.60',2108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:58:41','2019-01-25 16:28:06'),(1332,'commerce','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:08:21','2019-01-25 15:08:21'),(1333,'accounting','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:09:36','2019-01-25 15:10:08'),(1334,'crk','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:11:50','2019-01-25 15:12:13'),(1335,'economics','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:16:03','2019-01-25 15:16:03'),(1336,'chemistry','185.118.165.15',126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:21:37','2019-01-25 15:27:32'),(1337,'chemistry','105.112.38.7',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:49:44','2019-01-25 20:14:22'),(1338,'mathematics','105.112.38.7',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:55:45','2019-01-25 20:02:25'),(1339,'english','105.112.38.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:12:22','2019-01-25 20:12:23'),(1340,'chemistry','105.112.98.242',1160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:23:43','2019-01-25 22:04:17'),(1341,'chemistry','197.210.62.66',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 22:14:16','2019-04-19 16:33:37'),(1342,'chemistry','197.210.226.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:16:32','2019-01-26 10:16:32'),(1343,'chemistry','197.210.52.4',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:20:35','2019-01-26 10:38:06'),(1344,'chemistry','197.210.45.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:38:39','2019-01-26 10:40:16'),(1345,'chemistry','197.210.227.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:58:13','2019-01-26 10:58:13'),(1346,'mathematics','197.210.227.236',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:08:55','2019-01-26 11:32:01'),(1347,'mathematics','197.210.227.193',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:10:35','2019-01-26 11:45:54'),(1348,'mathematics','197.210.226.194',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:17:53','2019-01-26 11:44:49'),(1349,'mathematics','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:47:35','2019-01-26 11:51:16'),(1350,'mathematics','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:48:03','2019-01-26 11:48:03'),(1351,'mathematics','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:50:09','2019-01-26 11:50:10'),(1352,'mathematics','54.161.51.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:52:23','2019-01-26 11:52:23'),(1353,'english','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:34:52','2019-01-26 12:34:53'),(1354,'english','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:39:32','2019-01-26 12:39:33'),(1355,'english','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:41:59','2019-01-26 12:47:45'),(1356,'english','197.210.8.2',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:13:52','2019-01-26 13:40:15'),(1357,'english','197.210.28.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:55:37','2019-01-26 13:58:04'),(1358,'english','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:08:24','2019-01-26 14:08:24'),(1359,'english','197.210.52.84',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:09:01','2019-01-26 14:15:02'),(1360,'english','197.210.52.208',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:10:08','2019-01-26 14:11:18'),(1361,'chemistry','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:16:42','2019-01-26 14:16:43'),(1362,'chemistry','197.210.52.208',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:20:31','2019-01-26 14:50:18'),(1363,'chemistry','197.210.52.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:45:38','2019-01-26 14:45:39'),(1364,'chemistry','197.210.47.74',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:53:11','2019-01-26 15:07:24'),(1365,'chemistry','105.112.98.2',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:41:26','2019-01-26 16:41:29'),(1366,'biology','41.203.78.47',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:56:45','2019-01-26 16:56:45'),(1367,'chemistry','105.112.98.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 09:04:09','2019-01-27 09:04:09'),(1368,'chemistry','105.112.99.102',833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:41:18','2019-01-27 19:46:51'),(1369,'biology','105.112.99.102',778,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:37','2019-01-27 19:46:51'),(1370,'physics','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1371,'economics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1372,'commerce','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:34'),(1373,'crk','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:37'),(1374,'mathematics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:44'),(1375,'english','105.112.99.102',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:46:51'),(1376,'geography','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:47:37'),(1377,'government','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:43','2019-01-27 19:47:37'),(1378,'accounting','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:45','2019-01-27 19:47:40'),(1379,'history','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:46','2019-01-27 19:43:54'),(1380,'englishlit','105.112.99.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:47:38'),(1381,'currentaffairs','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:48:50'),(1382,'civiledu','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:14:14','2019-01-27 19:47:37'),(1383,'mathematics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1384,'chemistry','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1385,'biology','105.112.98.183',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1386,'physics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1387,'english','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1388,'economics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1389,'commerce','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1390,'crk','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1391,'geography','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1392,'civiledu','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1393,'government','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1394,'englishlit','105.112.98.183',518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1395,'accounting','105.112.98.183',519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1396,'currentaffairs','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1397,'history','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:43','2019-01-27 21:21:57'),(1398,'chemistry','41.191.104.92',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:53:33','2019-01-27 20:54:45'),(1399,'biology','41.191.104.92',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:55:04','2019-01-27 20:55:04'),(1400,'chemistry','41.191.104.121',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:01:54','2019-02-06 15:11:52'),(1401,'mathematics','41.191.107.223',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:14:36','2019-04-16 11:16:36'),(1402,'mathematics','41.191.107.138',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:19:15','2019-04-13 21:33:36'),(1403,'physics','41.191.107.138',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:20:04','2019-01-27 21:23:56'),(1404,'mathematics','41.191.104.124',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:26:45','2019-01-27 21:34:02'),(1405,'physics','41.191.104.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:27:11','2019-01-27 21:27:24'),(1406,'biology','41.191.104.74',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:07:34','2019-01-27 22:12:08'),(1407,'biology','41.191.107.130',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:13:49','2019-01-27 22:13:59'),(1408,'biology','41.191.104.244',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:46:09','2019-01-27 22:46:50'),(1409,'biology','41.191.107.128',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:56:46','2019-01-27 23:56:03'),(1410,'chemistry','41.191.107.128',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:55:10','2019-01-27 23:55:51'),(1411,'economics','41.191.107.128',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:56:39','2019-01-27 23:56:41'),(1412,'geography','41.191.107.128',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:57:14','2019-01-28 15:11:27'),(1413,'biology','41.191.104.89',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:59:44'),(1414,'biology','41.191.104.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:51:19'),(1415,'biology','41.191.104.121',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:55:36','2019-01-28 00:56:31'),(1416,'chemistry','41.191.104.89',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:58:40','2019-01-28 09:07:28'),(1417,'biology','41.191.104.85',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:08:49','2019-01-28 01:15:07'),(1418,'biology','41.191.107.221',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:27:22','2019-01-28 01:29:30'),(1419,'biology','41.191.107.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:33:26','2019-01-28 01:33:26'),(1420,'biology','41.191.104.235',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:48:38','2019-01-28 01:48:38'),(1421,'mathematics','41.191.107.235',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:55:16','2019-01-28 09:02:13'),(1422,'chemistry','41.191.107.235',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:56:12','2019-01-28 08:59:29'),(1423,'mathematics','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:03:14','2019-01-28 09:03:14'),(1424,'physics','41.191.107.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:04:58','2019-01-28 09:04:58'),(1425,'mathematics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:50','2019-01-28 09:08:18'),(1426,'physics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:54','2019-01-28 09:08:18'),(1427,'geography','41.191.104.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:07:07','2019-01-28 09:08:12'),(1428,'chemistry','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:36:06','2019-01-28 10:36:06'),(1429,'english','41.191.107.141',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:49:24','2019-01-28 10:51:33'),(1430,'chemistry','46.229.168.149',23,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-28 11:21:50','2019-12-12 15:32:00'),(1431,'english','3.87.136.203',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:28:02','2019-01-28 14:24:49'),(1432,'englishlit','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:41:29','2019-01-28 11:41:29'),(1433,'mathematics','41.191.107.194',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:14','2019-01-28 12:06:41'),(1434,'chemistry','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:20','2019-01-28 12:01:32'),(1435,'physics','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:50','2019-01-28 12:03:12'),(1436,'geography','41.191.107.194',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:52:52','2019-01-28 12:03:18'),(1437,'chemistry','41.191.104.251',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:08:23','2019-01-28 12:09:42'),(1438,'physics','41.191.107.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:22:50','2019-01-28 12:22:50'),(1439,'physics','41.191.104.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:14','2019-01-28 12:29:14'),(1440,'chemistry','41.191.104.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:28','2019-01-28 12:32:08'),(1441,'mathematics','41.191.104.83',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:30:25','2019-01-28 12:34:16'),(1442,'mathematics','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:35:42','2019-01-28 12:56:25'),(1443,'geography','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:40:50','2019-01-28 12:52:24'),(1444,'chemistry','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:02','2019-01-28 13:03:30'),(1445,'physics','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:08','2019-01-28 12:53:41'),(1446,'geography','41.191.104.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:04:49','2019-01-28 13:17:51'),(1447,'mathematics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:08:42','2019-04-13 07:20:19'),(1448,'physics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:12:38','2019-01-28 13:14:17'),(1449,'chemistry','41.191.104.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:16:02','2019-01-28 13:16:02'),(1450,'geography','41.191.104.104',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:24','2019-01-28 13:30:58'),(1451,'chemistry','41.191.104.104',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:32','2019-01-28 13:28:22'),(1452,'physics','41.191.104.104',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:20:17','2019-01-28 13:22:40'),(1453,'chemistry','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:33:01','2019-01-28 13:35:54'),(1454,'physics','41.191.107.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:35:11','2019-01-28 13:40:07'),(1455,'mathematics','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:36:00','2019-01-28 13:41:19'),(1456,'mathematics','41.191.107.42',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:39','2019-01-28 13:53:09'),(1457,'chemistry','41.191.107.42',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:55','2019-02-06 14:53:26'),(1458,'geography','41.191.107.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:43:17','2019-01-28 13:43:17'),(1459,'physics','41.191.107.139',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:57:59','2019-01-28 14:02:46'),(1460,'chemistry','41.191.107.139',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:06','2019-01-28 14:04:13'),(1461,'mathematics','41.191.107.139',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:21','2019-01-28 14:04:17'),(1462,'geography','41.191.107.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:01:42','2019-01-28 14:01:42'),(1463,'mathematics','41.191.104.126',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:04:59','2019-04-13 16:07:19'),(1464,'physics','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:05:50','2019-01-28 14:06:23'),(1465,'biology','3.87.136.203',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:26:19','2019-01-28 14:28:08'),(1466,'mathematics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:18','2019-01-28 14:27:18'),(1467,'physics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:22','2019-01-28 14:27:22'),(1468,'chemistry','41.191.107.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:30:58','2019-01-28 14:30:58'),(1469,'physics','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:45','2019-01-28 14:40:48'),(1470,'chemistry','41.191.107.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:52','2019-01-28 14:40:52'),(1471,'chemistry','41.191.107.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:53:59','2019-01-28 14:53:59'),(1472,'mathematics','41.191.104.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:04','2019-01-28 15:06:48'),(1473,'physics','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:27','2019-01-28 15:00:27'),(1474,'chemistry','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:33','2019-01-28 15:00:33'),(1475,'geography','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:38','2019-01-28 15:00:38'),(1476,'mathematics','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:03:29','2019-01-28 15:08:10'),(1477,'physics','105.176.90.140',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:02','2019-01-28 15:18:49'),(1478,'chemistry','105.176.90.140',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:37','2019-01-28 15:04:37'),(1479,'geography','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:52','2019-01-28 15:08:28'),(1480,'mathematics','41.191.107.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:05:29','2019-01-28 15:08:01'),(1481,'physics','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:08:08','2019-01-28 15:08:08'),(1482,'mathematics','41.191.107.128',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:10:31','2019-01-28 15:10:39'),(1483,'physics','41.191.104.241',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:14','2019-01-28 15:28:02'),(1484,'chemistry','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:51','2019-01-28 15:27:55'),(1485,'mathematics','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:51','2019-01-28 15:28:09'),(1486,'geography','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:57','2019-01-28 15:28:35'),(1487,'geography','41.191.104.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:30:25','2019-01-28 15:32:10'),(1488,'mathematics','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:31:56','2019-01-28 15:31:56'),(1489,'physics','41.191.104.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:00','2019-01-28 15:32:07'),(1490,'chemistry','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:04','2019-01-28 15:32:04'),(1491,'physics','41.191.104.121',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:49:37','2019-02-06 14:58:19'),(1492,'geography','41.191.104.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:43','2019-01-28 15:58:43'),(1493,'geography','41.191.104.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:53','2019-01-28 15:58:53'),(1494,'chemistry','197.210.47.34',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 21:35:41','2019-01-28 21:40:22'),(1495,'chemistry','41.203.78.54',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 22:07:08','2019-07-20 14:00:13'),(1496,'chemistry','105.112.28.85',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 02:40:05','2019-01-29 02:40:42'),(1497,'chemistry','41.190.2.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 07:03:46','2019-01-29 07:03:46'),(1498,'chemistry','41.76.82.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 09:57:24','2019-01-29 09:57:24'),(1499,'english','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1500,'mathematics','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1501,'commerce','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1502,'englishlit','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1503,'crk','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1504,'geography','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1505,'insurance','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1506,'biology','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1507,'chemistry','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1508,'economics','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1509,'civiledu','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1510,'chemistry','41.203.78.51',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 13:55:15','2019-01-29 14:10:57'),(1511,'chemistry','154.120.108.55',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:17:52','2019-01-29 14:29:07'),(1512,'chemistry','154.118.21.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:37:44','2019-01-29 14:38:42'),(1513,'chemistry','197.210.28.128',997,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:55:16','2019-01-29 16:55:38'),(1514,'chemistry','197.210.53.210',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:47:02','2019-01-29 18:06:59'),(1515,'chemistry','197.210.52.103',295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:49:25','2019-01-29 18:50:59'),(1516,'chemistry','197.210.53.88',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:56:42','2019-01-29 17:56:42'),(1517,'chemistry','197.210.53.26',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:09:55','2019-01-29 18:22:46'),(1518,'chemistry','197.210.53.74',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:10:35','2019-01-29 18:10:35'),(1519,'chemistry','197.210.52.203',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:16:48','2019-02-06 16:04:53'),(1520,'chemistry','197.210.52.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:35:19','2019-01-29 18:39:12'),(1521,'chemistry','197.210.52.202',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:43:20','2019-02-06 16:09:29'),(1522,'chemistry','197.210.53.106',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:44:33','2019-01-29 18:45:54'),(1523,'chemistry','197.210.53.114',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:19','2019-04-20 15:08:50'),(1524,'chemistry','197.210.52.185',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:40','2019-01-29 18:51:44'),(1525,'chemistry','197.210.52.26',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:51:14','2019-01-29 18:51:36'),(1526,'englishlit','197.211.63.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:31:42','2019-01-29 20:31:42'),(1527,'chemistry','197.210.227.126',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:25','2019-01-29 20:32:25'),(1528,'chemistry','197.210.227.15',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:43','2019-01-29 20:32:43'),(1529,'chemistry','197.210.226.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:01','2019-01-29 20:37:21'),(1530,'chemistry','197.210.227.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:27','2019-01-29 20:36:27'),(1531,'mathematics','41.203.78.49',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:41:06','2019-01-29 20:41:06'),(1532,'crk','41.80.186.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 09:20:34','2019-01-30 09:20:34'),(1533,'biology','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:38','2019-01-30 15:50:53'),(1534,'commerce','54.211.28.234',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1535,'accounting','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1536,'crk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1537,'geography','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1538,'irk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1539,'insurance','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1540,'englishlit','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:56','2019-01-30 15:52:40'),(1541,'history','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:07','2019-01-30 15:51:07'),(1542,'government','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:09','2019-01-30 15:51:09'),(1543,'physics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1544,'economics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1545,'currentaffairs','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:40'),(1546,'english','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1547,'mathematics','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1548,'chemistry','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1549,'englishlit','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:16','2019-01-30 16:51:35'),(1550,'commerce','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:27'),(1551,'biology','54.226.7.228',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:34'),(1552,'geography','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1553,'civiledu','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1554,'currentaffairs','54.226.7.228',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1555,'history','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1556,'government','54.226.7.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1557,'english','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1558,'mathematics','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1559,'chemistry','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1560,'crk','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1561,'chemistry','41.216.173.30',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 16:01:01','2019-01-31 16:03:23'),(1562,'chemistry','45.33.136.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 23:43:59','2019-01-31 23:44:26'),(1563,'chemistry','41.203.78.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:52:42','2019-02-01 07:52:42'),(1564,'chemistry','197.210.53.198',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:55:26','2019-02-01 07:56:02'),(1565,'chemistry','197.210.53.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:57:16','2019-02-01 07:57:16'),(1566,'chemistry','45.33.136.190',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:27:53','2019-02-01 08:31:16'),(1567,'chemistry','197.211.60.139',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:43:16','2019-02-01 08:45:06'),(1568,'mathematics','197.211.60.139',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:45:55','2019-02-01 08:45:55'),(1569,'chemistry','197.210.29.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 09:32:41','2019-02-01 09:32:41'),(1570,'chemistry','105.112.98.24',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-02 22:45:13','2019-02-02 23:25:03'),(1571,'civiledu','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 20:57:22','2019-02-03 20:57:22'),(1572,'currentaffairs','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 21:10:15','2019-02-03 21:10:15'),(1573,'accounting','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1574,'chemistry','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1575,'crk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1576,'geography','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1577,'irk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1578,'insurance','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1579,'currentaffairs','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1580,'chemistry','41.66.199.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:36:31','2019-02-03 23:09:20'),(1581,'biology','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:54:09','2019-02-03 22:54:09'),(1582,'commerce','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 23:10:29','2019-02-03 23:10:29'),(1583,'geography','3.81.102.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 00:57:31','2019-02-04 00:57:31'),(1584,'mathematics','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1585,'commerce','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1586,'chemistry','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1587,'irk','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1588,'civiledu','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1589,'currentaffairs','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1590,'history','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1591,'commerce','54.162.226.75',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 23:35:46','2019-02-04 23:35:46'),(1592,'crk','54.162.82.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:35:33','2019-02-05 05:43:58'),(1593,'accounting','54.162.82.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:50:40','2019-02-05 05:50:40'),(1594,'history','54.90.106.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 07:25:12','2019-02-05 07:25:12'),(1595,'accounting','54.91.82.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 11:33:57','2019-02-05 11:33:57'),(1596,'chemistry','77.88.47.65',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-05 11:57:00','2020-03-07 02:21:05'),(1597,'geography','54.204.118.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 12:42:45','2019-02-05 12:42:45'),(1598,'chemistry','95.216.6.46',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 14:24:43','2019-02-05 14:25:02'),(1599,'geography','54.234.119.237',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 17:21:12','2019-02-05 17:21:12'),(1600,'irk','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 22:54:06','2019-02-05 22:54:06'),(1601,'chemistry','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 23:25:31','2019-02-05 23:25:31'),(1602,'accounting','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1603,'biology','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:23:05'),(1604,'physics','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1605,'chemistry','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1606,'geography','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1607,'economics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1608,'civiledu','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1609,'english','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1610,'mathematics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1611,'englishlit','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:51'),(1612,'government','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1613,'history','54.159.117.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:56','2019-02-06 01:22:56'),(1614,'physics','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:32:08'),(1615,'geography','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1616,'physics','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1617,'mathematics','41.191.104.236',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:50','2019-04-14 05:45:01'),(1618,'chemistry','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:33:26','2019-02-06 10:35:49'),(1619,'chemistry','41.191.107.136',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:04','2019-02-07 10:43:21'),(1620,'mathematics','41.191.107.136',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:11','2019-04-14 16:53:02'),(1621,'geography','41.191.107.136',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:15','2019-02-07 10:13:16'),(1622,'physics','41.191.107.136',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:40:28','2019-02-07 11:01:08'),(1623,'chemistry','41.191.107.212',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:49:30','2019-04-18 18:00:20'),(1624,'physics','41.191.107.212',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:34','2019-04-17 10:11:06'),(1625,'geography','41.191.107.212',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:44','2019-02-06 13:24:41'),(1626,'mathematics','41.191.107.212',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:49','2019-04-17 10:14:28'),(1627,'chemistry','41.191.107.52',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:54:59','2019-02-06 10:55:38'),(1628,'chemistry','41.191.104.115',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 11:10:51','2019-02-06 11:10:51'),(1629,'civiledu','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:13:06','2019-02-06 12:13:06'),(1630,'currentaffairs','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:35:08','2019-02-06 12:35:08'),(1631,'mathematics','41.191.107.220',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:39:15'),(1632,'mathematics','41.191.107.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:38:11'),(1633,'chemistry','41.191.107.220',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:02','2019-02-06 13:44:46'),(1634,'physics','41.191.107.220',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:55','2019-02-06 13:42:33'),(1635,'chemistry','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:03','2019-02-06 13:58:11'),(1636,'geography','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:46','2019-02-06 13:47:46'),(1637,'physics','41.191.104.99',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:51:59','2019-02-06 13:57:37'),(1638,'mathematics','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:56:24','2019-04-13 23:06:19'),(1639,'physics','41.191.107.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 14:43:26','2019-02-06 16:44:44'),(1640,'chemistry','54.221.129.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:09:36','2019-02-06 15:40:30'),(1641,'mathematics','41.191.104.121',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:15:51','2019-02-06 15:15:51'),(1642,'mathematics','41.191.104.217',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:29:45','2019-02-06 15:52:46'),(1643,'mathematics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1644,'biology','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1645,'physics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1646,'government','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1647,'economics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1648,'insurance','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1649,'chemistry','41.191.104.217',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:53:35','2019-02-06 15:55:08'),(1650,'chemistry','197.210.52.163',51,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:59:16','2020-04-12 16:16:23'),(1651,'chemistry','197.210.52.177',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:02:47','2019-02-06 16:09:41'),(1652,'chemistry','197.210.52.125',42,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:03:44','2019-11-29 22:14:03'),(1653,'chemistry','197.210.52.1',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:12','2019-02-06 16:04:36'),(1654,'chemistry','41.191.104.76',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:57','2019-02-06 16:04:57'),(1655,'mathematics','41.191.104.76',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:05:52','2019-04-17 07:41:52'),(1656,'chemistry','197.210.53.23',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:10:28','2020-02-04 09:59:59'),(1657,'chemistry','41.191.104.238',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:21','2019-02-06 16:23:37'),(1658,'mathematics','41.191.104.238',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:53','2019-02-06 17:51:13'),(1659,'geography','41.191.104.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:23:13','2019-02-06 16:23:13'),(1660,'physics','41.191.104.238',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:25:01','2019-02-06 17:52:29'),(1661,'mathematics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:23','2019-02-06 16:32:23'),(1662,'physics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:36','2019-02-06 16:32:36'),(1663,'chemistry','41.191.107.146',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:57:39','2019-02-06 16:57:39'),(1664,'physics','41.191.107.146',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:58:54','2019-02-06 17:00:38'),(1665,'physics','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:48','2019-02-06 17:03:48'),(1666,'geography','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:55','2019-02-06 17:03:55'),(1667,'chemistry','41.191.107.215',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:06:36','2019-03-28 16:12:49'),(1668,'mathematics','41.191.104.67',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:15:33','2019-02-06 17:20:02'),(1669,'chemistry','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:24:42','2019-02-06 17:27:26'),(1670,'physics','41.191.104.211',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:25:40','2019-02-06 17:26:06'),(1671,'mathematics','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:32','2019-04-14 07:05:25'),(1672,'geography','41.191.104.211',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:34','2019-02-06 17:27:34'),(1673,'geography','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:29:31','2019-02-07 13:38:12'),(1674,'physics','41.191.107.38',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:30:12','2019-02-07 16:06:38'),(1675,'mathematics','41.191.107.38',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:35:19','2019-04-13 08:12:17'),(1676,'geography','41.191.107.38',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:36:56','2019-02-07 16:06:34'),(1677,'mathematics','41.191.104.244',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:40:30','2019-04-14 21:51:22'),(1678,'physics','41.191.104.244',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:43:54','2019-02-06 17:46:16'),(1679,'geography','54.145.62.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 18:07:58','2019-02-06 18:07:58'),(1680,'english','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1681,'english','3.81.49.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1682,'mathematics','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1683,'physics','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1684,'commerce','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1685,'chemistry','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1686,'biology','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1687,'government','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1688,'civiledu','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1689,'irk','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1690,'currentaffairs','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1691,'biology','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:52'),(1692,'physics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1693,'government','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:35'),(1694,'geography','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1695,'economics','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1696,'irk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1697,'insurance','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1698,'mathematics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1699,'commerce','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1700,'crk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1701,'currentaffairs','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1702,'history','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:55'),(1703,'englishlit','54.159.238.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:48','2019-02-06 23:58:48'),(1704,'chemistry','129.205.112.31',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 04:25:52','2019-02-09 18:02:32'),(1705,'mathematics','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:08:57','2019-02-07 08:31:49'),(1706,'physics','41.191.107.132',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:24:48','2019-02-07 07:53:26'),(1707,'geography','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:52:40','2019-02-07 08:17:40'),(1708,'chemistry','41.191.107.132',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 08:14:41','2019-02-07 08:18:31'),(1709,'physics','41.191.107.129',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 14:01:28'),(1710,'physics','41.191.107.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 13:59:51'),(1711,'biology','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:01:37','2019-02-07 14:01:37'),(1712,'chemistry','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:03:41','2019-02-07 14:14:08'),(1713,'mathematics','41.191.107.129',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:15:41','2019-02-07 14:17:01'),(1714,'physics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:26:47','2019-02-07 14:47:40'),(1715,'chemistry','197.210.227.51',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:31:34','2019-02-07 14:40:43'),(1716,'physics','41.191.104.213',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:38:05','2019-02-07 14:59:23'),(1717,'chemistry','197.210.227.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:39:16','2019-02-07 14:39:16'),(1718,'chemistry','41.191.104.213',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:41:28','2019-02-07 15:01:58'),(1719,'chemistry','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:42:07','2019-02-07 14:42:07'),(1720,'economics','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:44:11','2019-02-07 14:44:11'),(1721,'geography','41.191.104.213',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:51:09','2019-02-07 14:51:09'),(1722,'mathematics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:53:38','2019-02-07 14:55:12'),(1723,'chemistry','41.191.107.34',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:18:05','2019-02-07 15:48:37'),(1724,'physics','41.191.107.34',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:30:55','2019-02-07 15:45:52'),(1725,'chemistry','41.191.107.38',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:54:06','2019-02-07 16:07:17'),(1726,'physics','41.191.104.81',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:07:36','2019-02-07 16:09:23'),(1727,'chemistry','41.191.104.81',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:12:44','2019-02-07 16:12:44'),(1728,'mathematics','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:46','2019-02-07 16:22:18'),(1729,'chemistry','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:54','2019-02-07 16:24:30'),(1730,'physics','41.191.107.206',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:57','2019-02-07 16:38:27'),(1731,'geography','41.191.107.206',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:59','2019-02-07 16:30:19'),(1732,'english','197.210.227.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:31:53','2019-02-07 16:31:53'),(1733,'history','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:33:37','2019-02-07 16:33:37'),(1734,'biology','41.191.107.206',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:03','2019-04-18 16:28:46'),(1735,'economics','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:39','2019-02-07 16:34:39'),(1736,'accounting','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:56','2019-02-07 16:34:56'),(1737,'english','184.73.22.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:38:25','2019-02-07 16:50:24'),(1738,'physics','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:43:12','2019-02-07 16:43:12'),(1739,'english','154.66.57.61',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:44:58','2019-02-07 16:47:26'),(1740,'accounting','41.191.107.193',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:45:10','2019-02-07 16:47:47'),(1741,'biology','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:50','2019-02-07 16:46:50'),(1742,'chemistry','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:55','2019-02-07 16:46:55'),(1743,'mathematics','41.191.107.193',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:48:25','2019-04-13 07:49:25'),(1744,'commerce','154.66.57.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:49:07','2019-02-07 16:49:08'),(1745,'mathematics','184.73.22.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:05:51','2019-02-07 17:05:51'),(1746,'englishlit','197.210.227.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:06:39','2019-02-07 17:06:57'),(1747,'mathematics','197.210.227.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:08:37','2019-02-07 17:08:37'),(1748,'mathematics','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:12:32','2019-02-07 17:12:32'),(1749,'english','197.210.227.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:13:32','2019-02-07 17:15:24'),(1750,'english','197.210.227.160',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:17:16','2019-02-07 17:17:16'),(1751,'government','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:04','2019-02-07 19:40:04'),(1752,'chemistry','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:05','2019-02-07 19:40:05'),(1753,'chemistry','41.203.78.86',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 22:56:58','2019-02-08 01:04:26'),(1754,'english','41.203.78.86',10687,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 23:11:07','2019-02-08 01:12:58'),(1755,'chemistry','41.203.72.82',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:02:21','2019-02-08 01:03:10'),(1756,'mathematics','41.203.78.86',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:13:49','2019-02-08 01:20:31'),(1757,'commerce','41.203.78.86',1400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:21:06','2019-02-08 01:25:03'),(1758,'accounting','129.205.112.31',637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 03:59:44','2019-02-10 07:56:43'),(1759,'commerce','129.205.112.31',16415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:02:10','2019-02-10 07:24:35'),(1760,'english','129.205.112.31',3880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:54:53','2019-02-09 20:30:32'),(1761,'mathematics','129.205.112.31',1581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 05:04:07','2019-02-10 08:18:03'),(1762,'economics','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:37:15','2019-02-08 09:37:15'),(1763,'currentaffairs','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:42:06','2019-02-08 09:42:06'),(1764,'commerce','41.203.78.102',5836,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 13:46:12','2019-02-08 21:42:21'),(1765,'english','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1766,'accounting','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1767,'biology','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1768,'englishlit','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1769,'government','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1770,'economics','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1771,'history','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1772,'insurance','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 16:42:58','2019-02-08 16:42:58'),(1773,'biology','54.161.98.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 17:53:20','2019-02-08 17:53:20'),(1774,'mathematics','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 20:43:14','2019-02-08 20:43:14'),(1775,'insurance','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:12:10','2019-02-08 21:12:10'),(1776,'chemistry','41.203.78.102',2128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:33:15','2019-02-08 22:12:38'),(1777,'mathematics','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:42:45','2019-02-08 21:51:29'),(1778,'english','41.203.78.102',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:43:28','2019-02-09 01:27:32'),(1779,'accounting','41.203.78.102',2720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:51:49','2019-02-08 21:56:42'),(1780,'biology','41.203.78.102',2400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:57:02','2019-02-08 22:05:16'),(1781,'physics','41.203.78.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:06:14','2019-02-08 22:07:44'),(1782,'englishlit','41.203.78.102',1880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:13:10','2019-02-08 22:20:30'),(1783,'government','41.203.78.102',2800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:21:29','2019-02-08 23:52:43'),(1784,'crk','41.203.78.102',3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:52:55','2019-02-09 00:00:48'),(1785,'chemistry','54.91.117.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:57:22','2019-02-08 23:57:22'),(1786,'geography','41.203.78.102',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:01:57','2019-02-09 00:24:16'),(1787,'economics','41.203.78.102',3720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:26:24','2019-02-09 00:34:36'),(1788,'irk','41.203.78.102',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:35:41','2019-02-09 00:37:20'),(1789,'civiledu','41.203.78.102',2240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:38:00','2019-02-09 00:44:30'),(1790,'insurance','41.203.78.102',1680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:46:06','2019-02-09 00:57:03'),(1791,'civiledu','52.55.225.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:48:42','2019-02-09 00:48:42'),(1792,'currentaffairs','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:57:53','2019-02-09 01:00:05'),(1793,'history','41.203.78.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 01:01:27','2019-02-09 01:01:41'),(1794,'government','54.197.84.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 03:29:54','2019-02-09 03:29:54'),(1795,'accounting','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 05:17:44','2019-02-09 05:17:44'),(1796,'crk','54.210.158.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 06:41:14','2019-02-09 06:41:14'),(1797,'chemistry','40.77.167.168',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 07:15:13','2020-01-13 09:41:58'),(1798,'mathematics','197.210.8.53',432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:27','2019-02-09 08:02:28'),(1799,'chemistry','197.210.8.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:53','2019-02-09 07:54:53'),(1800,'commerce','197.210.8.53',2379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:03:00','2019-02-09 09:22:09'),(1801,'mathematics','3.83.132.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:18:09','2019-02-09 08:18:09'),(1802,'biology','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:54:44','2019-02-09 08:54:44'),(1803,'chemistry','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:18:40','2019-02-09 09:18:40'),(1804,'englishlit','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:17','2019-02-09 09:19:17'),(1805,'mathematics','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:52','2019-02-09 09:19:52'),(1806,'economics','54.83.86.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 10:26:21','2019-02-09 10:26:21'),(1807,'chemistry','197.210.44.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:14:26','2019-02-09 11:15:08'),(1808,'physics','197.210.44.28',952,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:16:33','2019-02-09 12:01:21'),(1809,'commerce','197.210.227.64',78,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:22:57','2019-02-09 12:24:33'),(1810,'physics','54.167.138.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:50:33','2019-02-09 13:26:19'),(1811,'chemistry','157.55.39.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:39:52','2019-02-09 13:39:52'),(1812,'english','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:47:52','2019-02-09 13:47:52'),(1813,'government','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:53:44','2019-02-09 13:53:44'),(1814,'englishlit','54.160.227.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 14:42:34','2019-02-09 14:42:34'),(1815,'englishlit','34.207.56.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 17:36:00','2019-02-09 17:36:00'),(1816,'chemistry','46.229.168.134',103,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 18:20:56','2020-01-04 23:41:32'),(1817,'crk','54.205.112.119',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 18:24:29','2019-02-09 18:24:29'),(1818,'englishlit','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:31:53','2019-02-10 08:28:16'),(1819,'accounting','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:36:27','2019-02-09 20:36:27'),(1820,'history','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:41:04','2019-02-09 20:41:04'),(1821,'economics','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:52:59','2019-02-09 20:52:59'),(1822,'economics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 21:36:49','2019-02-09 21:36:49'),(1823,'chemistry','54.165.27.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 04:31:45','2019-02-10 04:31:45'),(1824,'geography','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:01:47','2019-02-10 08:01:47'),(1825,'physics','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:19:34','2019-02-10 08:25:15'),(1826,'history','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:37:28','2019-02-10 08:37:28'),(1827,'english','54.162.92.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 12:54:28','2019-02-10 12:54:28'),(1828,'mathematics','41.191.107.239',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:39:53','2019-02-10 14:01:17'),(1829,'physics','41.191.107.239',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:42','2019-02-10 13:48:33'),(1830,'history','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:47','2019-02-10 13:48:45'),(1831,'accounting','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:45:18','2019-02-10 13:52:35'),(1832,'mathematics','41.191.107.145',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:02:05','2019-02-11 14:40:35'),(1833,'economics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:04:14','2019-02-10 14:04:14'),(1834,'physics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:05:04','2019-02-10 14:05:04'),(1835,'geography','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:06:01','2019-02-10 14:06:01'),(1836,'government','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1837,'accounting','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1838,'physics','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1839,'crk','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1840,'civiledu','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1841,'insurance','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1842,'currentaffairs','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:28'),(1843,'history','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:30'),(1844,'english','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1845,'biology','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:25'),(1846,'chemistry','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1847,'irk','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1848,'englishlit','34.228.6.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:15','2019-02-11 02:52:15'),(1849,'chemistry','197.210.45.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 10:22:02','2019-02-11 10:22:02'),(1850,'chemistry','40.77.167.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:09:52','2019-02-11 13:09:52'),(1851,'biology','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:36:32','2019-02-11 13:36:32'),(1852,'history','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:37:35','2019-02-11 13:37:35'),(1853,'english','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1854,'accounting','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1855,'physics','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1856,'geography','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1857,'irk','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1858,'insurance','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1859,'currentaffairs','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1860,'mathematics','41.191.104.71',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:12:03','2019-02-11 14:12:03'),(1861,'mathematics','41.191.104.112',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:18:49','2019-02-11 14:18:49'),(1862,'chemistry','41.58.77.114',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:51','2019-02-11 14:28:05'),(1863,'physics','41.191.104.112',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:53','2019-02-11 14:26:11'),(1864,'history','41.191.104.112',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:23:33','2019-02-11 14:26:08'),(1865,'biology','41.58.77.114',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:24:08','2019-02-11 14:24:08'),(1866,'mathematics','41.58.77.114',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:25:00','2019-02-11 14:26:24'),(1867,'physics','41.191.104.234',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:35','2019-02-11 14:40:10'),(1868,'economics','41.191.104.234',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:52','2019-02-11 14:35:32'),(1869,'mathematics','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:41','2019-02-11 14:35:41'),(1870,'chemistry','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:47','2019-02-11 14:35:47'),(1871,'biology','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:37:04','2019-02-11 14:37:04'),(1872,'biology','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:45:01','2019-02-11 14:45:01'),(1873,'chemistry','105.112.99.29',197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:29:39','2019-02-11 16:54:32'),(1874,'physics','105.112.99.29',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:30:30','2019-02-11 16:50:11'),(1875,'biology','105.112.99.29',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:38:24','2019-02-11 16:41:30'),(1876,'mathematics','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1877,'commerce','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1878,'chemistry','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1879,'englishlit','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1880,'government','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1881,'irk','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1882,'insurance','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1883,'chemistry','40.77.167.19',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 08:00:52','2019-02-12 08:00:52'),(1884,'english','54.146.30.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:52:31','2019-02-12 09:52:31'),(1885,'chemistry','77.246.49.12',38,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:59:54','2019-02-12 10:43:38'),(1886,'chemistry','66.249.83.214',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:17:35','2019-02-15 07:42:21'),(1887,'chemistry','66.249.83.212',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:32:16','2019-02-17 16:13:54'),(1888,'geography','54.198.25.67',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 11:51:48','2019-02-12 11:51:48'),(1889,'english','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1890,'biology','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1891,'physics','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1892,'government','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1893,'irk','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 15:35:54'),(1894,'civiledu','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1895,'history','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:55:19'),(1896,'chemistry','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:13:08','2019-02-12 15:13:08'),(1897,'geography','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:27:03','2019-02-12 15:27:03'),(1898,'insurance','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:37:09','2019-02-12 15:37:09'),(1899,'currentaffairs','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:38:51','2019-02-12 15:38:51'),(1900,'accounting','54.224.187.178',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:15:56','2019-02-12 16:47:43'),(1901,'commerce','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:54:29','2019-02-12 16:54:29'),(1902,'chemistry','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:55:19','2019-02-12 16:55:19'),(1903,'english','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:56:44','2019-02-12 16:56:44'),(1904,'englishlit','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 17:05:53','2019-02-12 17:05:53'),(1905,'chemistry','77.246.53.3',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:29:38','2019-02-12 19:29:38'),(1906,'chemistry','46.229.168.132',61,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-12 19:33:18','2020-04-01 16:00:41'),(1907,'physics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:37:08','2019-02-12 19:37:08'),(1908,'mathematics','3.83.244.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 21:14:53','2019-02-12 21:14:53'),(1909,'chemistry','54.90.184.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:12:11','2019-02-12 23:12:11'),(1910,'accounting','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:50:49','2019-02-12 23:50:49'),(1911,'chemistry','82.145.222.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 02:31:59','2019-02-13 02:32:09'),(1912,'chemistry','41.220.28.0',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 03:41:16','2019-02-13 04:18:17'),(1913,'chemistry','40.77.167.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 04:07:04','2019-02-13 04:07:04'),(1914,'irk','54.226.159.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 05:17:46','2019-02-13 05:17:46'),(1915,'chemistry','77.246.53.157',1075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 06:15:44','2019-02-13 07:57:20'),(1916,'biology','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:18:12','2019-02-13 07:18:12'),(1917,'accounting','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:42:14','2019-02-13 07:42:14'),(1918,'chemistry','77.246.55.170',2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 09:57:35','2019-02-13 12:53:59'),(1919,'irk','54.234.114.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 10:48:37','2019-02-13 10:48:37'),(1920,'chemistry','77.246.49.61',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 13:40:12','2019-02-13 14:09:22'),(1921,'mathematics','77.246.49.61',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:09:22'),(1922,'mathematics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:11:21'),(1923,'chemistry','41.220.30.108',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:10','2019-02-13 14:13:10'),(1924,'physics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:17','2019-02-19 09:00:47'),(1925,'accounting','41.220.30.108',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:14:56','2019-02-13 14:17:32'),(1926,'insurance','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:41:06','2019-02-13 14:44:45'),(1927,'english','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1928,'mathematics','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1929,'accounting','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1930,'physics','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1931,'chemistry','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1932,'crk','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1933,'crk','54.211.35.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1934,'irk','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1935,'currentaffairs','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1936,'history','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1937,'mathematics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:12:14','2019-02-13 15:12:14'),(1938,'physics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:14:36','2019-02-13 15:14:37'),(1939,'chemistry','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:15:45','2019-02-13 15:15:45'),(1940,'irk','54.144.251.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:47:59','2019-02-13 15:47:59'),(1941,'physics','77.246.53.12',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:20:07','2019-02-13 16:34:41'),(1942,'mathematics','77.246.53.12',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:14','2019-02-13 16:35:19'),(1943,'chemistry','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:32','2019-02-13 16:34:32'),(1944,'accounting','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:48','2019-02-13 16:34:48'),(1945,'mathematics','77.246.53.162',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:07','2019-02-13 17:07:40'),(1946,'physics','77.246.53.162',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:43','2019-02-13 17:05:44'),(1947,'chemistry','77.246.53.162',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:21','2019-02-13 17:05:39'),(1948,'accounting','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:26','2019-02-13 16:54:33'),(1949,'commerce','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:57:16','2019-02-13 16:57:32'),(1950,'biology','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:59:47','2019-02-13 17:02:48'),(1951,'physics','54.159.21.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 18:06:23','2019-02-13 18:06:23'),(1952,'chemistry','46.229.168.150',12,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 02:03:11','2020-01-21 05:27:03'),(1953,'biology','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 02:28:08','2019-02-14 02:28:08'),(1954,'chemistry','41.86.149.34',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 07:40:21','2020-03-16 11:43:51'),(1955,'physics','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:41:02','2019-02-14 08:41:02'),(1956,'chemistry','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:45:15','2019-02-14 08:45:16'),(1957,'physics','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:45:52','2019-02-14 09:45:52'),(1958,'chemistry','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:12','2019-02-14 09:46:12'),(1959,'mathematics','77.246.49.1',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:22','2019-02-14 10:21:31'),(1960,'biology','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:31','2019-02-14 09:46:31'),(1961,'chemistry','66.249.93.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:08:04','2019-02-14 14:08:04'),(1962,'insurance','52.206.40.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:35:57','2019-02-14 14:35:57'),(1963,'irk','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:05:01','2019-02-14 16:05:01'),(1964,'mathematics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:25:27','2019-02-14 16:25:27'),(1965,'physics','107.167.107.223',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:26:57','2019-02-14 16:26:58'),(1966,'chemistry','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:28:35','2019-02-14 16:28:35'),(1967,'physics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:32:02','2019-02-14 16:32:02'),(1968,'physics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:02','2019-02-14 17:39:02'),(1969,'mathematics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:03','2019-02-14 17:39:03'),(1970,'chemistry','66.249.64.168',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:04','2019-02-15 07:38:28'),(1971,'mathematics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1972,'biology','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1973,'chemistry','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1974,'englishlit','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1975,'crk','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1976,'economics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1977,'civiledu','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1978,'mathematics','41.220.30.127',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:40:08','2019-02-14 18:40:09'),(1979,'chemistry','197.210.53.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 23:05:50','2019-02-14 23:11:24'),(1980,'chemistry','197.210.53.75',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 23:06:02','2019-10-28 09:52:49'),(1981,'physics','77.246.53.165',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:37:58','2019-02-15 02:38:49'),(1982,'physics','66.102.8.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:17','2019-02-15 02:56:50'),(1983,'physics','66.249.64.170',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:28','2019-02-15 08:55:28'),(1984,'physics','66.249.64.168',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:56:52','2019-02-16 03:08:43'),(1985,'mathematics','77.246.53.165',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:58:41','2019-02-15 02:58:41'),(1986,'chemistry','66.102.6.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 04:13:56','2019-02-15 04:13:56'),(1987,'chemistry','77.246.53.155',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:12:45','2019-02-15 05:12:46'),(1988,'physics','66.249.83.210',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:21:09','2019-02-17 08:51:10'),(1989,'chemistry','66.249.83.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:54','2019-02-15 05:37:54'),(1990,'chemistry','66.249.64.170',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:55','2019-02-15 05:40:03'),(1991,'chemistry','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:40:02','2019-02-15 05:40:02'),(1992,'chemistry','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 07:38:29','2019-02-15 07:38:29'),(1993,'physics','66.102.8.106',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:21','2019-02-16 03:07:38'),(1994,'physics','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:45','2019-02-15 08:54:45'),(1995,'physics','66.249.83.212',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:10','2019-02-16 03:29:02'),(1996,'physics','41.220.30.120',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:22','2019-02-15 08:59:22'),(1997,'history','54.166.99.0',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:39:50','2019-02-15 09:39:50'),(1998,'physics','185.26.180.219',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:40:20','2019-02-15 10:02:05'),(1999,'physics','77.246.55.130',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:34:33','2019-02-15 13:38:14'),(2000,'english','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:38:16','2019-02-15 13:38:16'),(2001,'insurance','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:22','2019-02-15 13:39:22'),(2002,'commerce','197.210.227.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:24','2019-02-15 13:39:24'),(2003,'commerce','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 14:41:28','2019-02-15 14:41:28'),(2004,'physics','66.249.83.214',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:06','2019-02-19 18:52:31'),(2005,'physics','77.246.53.177',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:34','2019-02-15 15:11:34'),(2006,'chemistry','66.249.83.198',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:13:48','2019-02-15 15:13:49'),(2007,'chemistry','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:15:21','2019-02-15 17:15:21'),(2008,'biology','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:32:07','2019-02-15 17:32:07'),(2009,'englishlit','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:50:05','2019-02-15 17:50:05'),(2010,'civiledu','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:58:30','2019-02-15 17:58:30'),(2011,'economics','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 18:01:11','2019-02-15 18:01:11'),(2012,'mathematics','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:23'),(2013,'englishlit','54.162.96.90',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:12'),(2014,'geography','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2015,'irk','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2016,'civiledu','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2017,'currentaffairs','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:25'),(2018,'history','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2019,'english','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2020,'economics','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2021,'insurance','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2022,'biology','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:18','2019-02-15 23:11:20'),(2023,'commerce','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:34:11','2019-02-16 11:34:11'),(2024,'economics','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:35:07','2019-02-16 11:35:07'),(2025,'economics','197.210.53.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:59:36','2019-02-16 11:59:36'),(2026,'economics','197.210.53.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:09:10','2019-02-16 12:09:10'),(2027,'physics','64.233.172.202',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:45:29','2019-02-16 12:45:29'),(2028,'chemistry','197.210.8.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 15:55:05','2019-02-16 15:56:43'),(2029,'chemistry','209.205.211.242',1740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:08:07','2019-02-20 09:17:37'),(2030,'biology','209.205.211.242',3303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:14:54','2019-02-19 18:49:01'),(2031,'mathematics','209.205.211.242',2635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 17:10:46','2019-02-17 21:51:53'),(2032,'english','209.205.211.242',3998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:01:15','2019-02-19 18:31:24'),(2033,'english','197.210.52.4',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:06:11','2019-02-16 18:06:11'),(2034,'physics','66.249.88.52',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:25:31','2019-02-16 18:25:32'),(2035,'physics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:27:41','2019-02-16 18:27:42'),(2036,'physics','209.205.211.242',2056,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:36:36','2019-02-19 18:57:19'),(2037,'economics','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:52:25','2019-02-16 18:52:25'),(2038,'insurance','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:53:03','2019-02-16 18:53:03'),(2039,'english','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2040,'accounting','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2041,'government','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2042,'crk','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2043,'geography','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2044,'economics','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2045,'insurance','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2046,'economics','209.205.211.242',3993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:07:13','2019-02-20 10:21:53'),(2047,'commerce','209.205.211.242',2963,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:32:01','2019-02-20 10:47:11'),(2048,'accounting','209.205.211.242',3180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:02:28','2019-02-20 10:34:51'),(2049,'government','209.205.211.242',4769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:18:37','2019-02-20 11:25:34'),(2050,'englishlit','209.205.211.242',2428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:34:54','2019-02-20 11:06:13'),(2051,'civiledu','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:45:29','2019-02-18 13:07:15'),(2052,'crk','209.205.211.242',2529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:02:00','2019-03-28 01:41:15'),(2053,'history','209.205.211.242',1491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:13:13','2019-02-20 11:54:00'),(2054,'geography','209.205.211.242',1807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:24:15','2019-02-18 13:11:51'),(2055,'irk','209.205.211.242',533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:57:46','2019-02-18 13:14:15'),(2056,'insurance','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 00:04:12','2019-02-18 13:21:54'),(2057,'chemistry','197.210.46.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 05:30:36','2019-02-17 05:30:36'),(2058,'mathematics','66.249.83.214',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-19 18:52:31'),(2059,'biology','66.249.83.212',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-17 09:09:38'),(2060,'physics','77.246.55.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:10:12','2019-02-17 09:10:33'),(2061,'mathematics','66.249.84.40',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:47','2019-02-17 10:32:48'),(2062,'mathematics','66.249.64.168',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:48','2019-02-17 10:32:48'),(2063,'mathematics','64.233.172.200',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:42','2019-02-17 10:33:42'),(2064,'mathematics','66.249.64.170',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:44','2019-02-17 10:33:44'),(2065,'mathematics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 16:14:46','2019-02-17 16:14:46'),(2066,'english','34.238.255.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 12:56:12','2019-02-18 12:56:12'),(2067,'currentaffairs','209.205.211.242',585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 13:24:51','2019-02-18 13:37:43'),(2068,'physics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:10:32','2019-02-18 17:10:32'),(2069,'mathematics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:11:34','2019-02-18 17:11:34'),(2070,'physics','77.246.53.136',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 19:24:42','2019-02-18 19:25:37'),(2071,'english','174.129.141.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 20:49:05','2019-02-18 20:49:05'),(2072,'chemistry','41.191.104.80',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 00:07:04','2019-04-18 08:45:16'),(2073,'insurance','3.82.5.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 01:58:28','2019-02-19 01:58:28'),(2074,'english','54.211.123.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 06:24:59','2019-02-19 06:24:59'),(2075,'chemistry','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:14:42','2019-02-19 10:14:42'),(2076,'englishlit','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:22:31','2019-02-19 10:22:31'),(2077,'economics','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:42:59','2019-02-19 10:42:59'),(2078,'chemistry','54.224.95.200',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 12:27:33','2019-02-19 12:27:33'),(2079,'insurance','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:12:57','2019-02-19 14:12:57'),(2080,'accounting','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:23:32','2019-02-19 14:23:32'),(2081,'civiledu','54.147.55.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:12:39','2019-02-19 18:12:39'),(2082,'physics','77.246.49.36',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:52:53','2019-02-19 18:53:54'),(2083,'chemistry','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:07','2019-02-19 18:53:10'),(2084,'biology','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:18','2019-02-19 18:53:48'),(2085,'mathematics','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:21','2019-02-19 18:53:47'),(2086,'government','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:02:12','2019-02-19 19:02:12'),(2087,'accounting','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:06:42','2019-02-19 19:06:42'),(2088,'chemistry','197.211.57.22',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 20:15:50','2019-02-19 20:22:45'),(2089,'economics','54.161.218.154',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:34','2019-02-19 21:58:35'),(2090,'accounting','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2091,'physics','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2092,'chemistry','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2093,'englishlit','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2094,'geography','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2095,'history','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2096,'english','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 00:48:47','2019-02-20 00:48:48'),(2097,'physics','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:00:30','2019-02-20 01:00:30'),(2098,'geography','66.249.70.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:02:46','2019-02-20 01:02:47'),(2099,'history','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:04:05','2019-02-20 01:04:05'),(2100,'economics','54.81.179.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:18:54','2019-02-20 01:18:54'),(2101,'chemistry','66.249.83.222',26,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2019-11-22 10:45:51'),(2102,'biology','66.249.83.192',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2020-03-04 20:11:48'),(2103,'physics','66.249.83.223',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:05','2019-02-22 08:52:17'),(2104,'physics','77.246.53.28',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:41','2019-02-20 05:28:41'),(2105,'chemistry','207.46.13.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:55:58','2019-02-20 05:55:58'),(2106,'insurance','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:05','2019-02-20 13:44:06'),(2107,'mathematics','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:23','2019-02-20 13:44:24'),(2108,'physics','54.204.105.177',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 15:14:53','2019-02-20 15:14:53'),(2109,'english','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:05:47','2019-02-20 18:05:47'),(2110,'biology','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:13:36','2019-02-20 18:13:37'),(2111,'physics','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2112,'chemistry','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2113,'crk','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2114,'geography','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2115,'economics','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2116,'insurance','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2117,'history','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2118,'currentaffairs','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2119,'mathematics','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:37','2019-02-20 18:36:37'),(2120,'biology','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:43','2019-02-20 18:36:43'),(2121,'english','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2122,'accounting','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2123,'government','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2124,'englishlit','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:49','2019-02-20 18:36:49'),(2125,'englishlit','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:29:11','2019-02-20 19:29:11'),(2126,'chemistry','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:54:43','2019-02-20 19:54:43'),(2127,'biology','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:55','2019-02-20 20:16:55'),(2128,'geography','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:59','2019-02-20 20:16:59'),(2129,'chemistry','105.112.26.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:32:19','2019-02-20 20:32:19'),(2130,'chemistry','54.83.94.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 23:36:55','2019-02-20 23:36:55'),(2131,'mathematics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2132,'mathematics','54.167.183.249',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2133,'commerce','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2134,'accounting','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2135,'physics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2136,'geography','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2137,'economics','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2138,'insurance','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2139,'english','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2140,'chemistry','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2141,'irk','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2142,'history','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2143,'chemistry','46.229.168.130',18,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2020-03-24 16:18:58'),(2144,'chemistry','46.229.168.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2019-02-21 14:32:12'),(2145,'geography','54.221.38.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 02:38:12','2019-02-22 02:38:12'),(2146,'mathematics','54.89.229.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 03:48:22','2019-02-22 03:48:22'),(2147,'chemistry','129.205.112.63',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:18:55','2019-02-22 06:19:17'),(2148,'mathematics','129.205.112.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:19:48','2019-02-22 06:19:48'),(2149,'mathematics','66.249.83.222',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 08:52:08','2019-02-27 03:45:37'),(2150,'economics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 09:26:06','2019-02-22 09:26:07'),(2151,'mathematics','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2152,'mathematics','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2153,'physics','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2154,'biology','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2155,'englishlit','34.201.133.169',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2156,'chemistry','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2157,'government','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2158,'crk','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2159,'geography','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2160,'civiledu','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2161,'civiledu','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2162,'history','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2163,'history','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2164,'economics','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2165,'chemistry','129.56.89.91',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 14:58:18','2019-02-22 14:58:54'),(2166,'mathematics','129.56.89.91',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 15:07:31','2019-02-22 15:07:31'),(2167,'economics','54.161.215.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 00:00:12','2019-02-23 00:00:12'),(2168,'history','3.93.218.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 04:23:21','2019-02-23 04:23:21'),(2169,'accounting','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2170,'biology','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2171,'chemistry','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2172,'government','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2173,'irk','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2174,'insurance','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2175,'currentaffairs','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2176,'chemistry','192.173.38.121',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 23:14:30','2019-02-23 23:14:42'),(2177,'english','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2178,'accounting','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2179,'government','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2180,'crk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2181,'geography','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2182,'irk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2183,'civiledu','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2184,'chemistry','160.120.230.179',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 23:58:16','2019-02-24 23:58:16'),(2185,'chemistry','197.210.45.125',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 10:22:09','2019-02-25 10:23:43'),(2186,'biology','197.210.28.208',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 12:45:32','2019-02-25 12:45:33'),(2187,'chemistry','207.46.13.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 09:41:52','2019-02-26 09:41:52'),(2188,'chemistry','129.205.113.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 15:05:12','2019-02-26 15:05:12'),(2189,'english','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2190,'english','3.87.158.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2191,'mathematics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2192,'commerce','3.87.158.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2193,'biology','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2194,'physics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2195,'geography','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2196,'government','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2197,'economics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2198,'history','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2199,'crk','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2200,'currentaffairs','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2201,'english','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2202,'mathematics','54.226.211.137',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:44'),(2203,'commerce','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2204,'chemistry','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2205,'government','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2206,'history','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2207,'accounting','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2208,'economics','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:30'),(2209,'irk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2210,'insurance','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2211,'chemistry','41.191.107.201',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:30:53','2019-02-26 19:30:53'),(2212,'chemistry','41.191.107.145',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:32:08','2019-02-26 19:33:01'),(2213,'physics','54.243.5.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 22:16:47','2019-02-26 22:16:47'),(2214,'accounting','54.166.233.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 23:08:29','2019-02-26 23:08:29'),(2215,'physics','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:36','2020-02-09 06:54:16'),(2216,'biology','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:43','2020-02-15 20:12:30'),(2217,'chemistry','66.249.83.223',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:44','2020-02-05 04:26:16'),(2218,'physics','77.246.53.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 03:45:58','2019-02-27 03:45:58'),(2219,'chemistry','66.249.93.52',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 11:18:17','2019-06-22 21:48:18'),(2220,'chemistry','41.191.104.245',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 12:41:52','2019-02-27 12:41:52'),(2221,'chemistry','66.249.93.48',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 12:41:34','2019-08-02 12:51:50'),(2222,'insurance','54.209.60.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 13:15:55','2019-02-28 13:15:55'),(2223,'mathematics','52.73.168.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 15:40:02','2019-02-28 15:40:02'),(2224,'chemistry','41.190.2.218',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:47:11','2019-03-01 08:49:37'),(2225,'mathematics','41.190.2.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:50:33','2019-03-01 08:50:34'),(2226,'english','41.190.2.218',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:52:26','2019-03-01 09:52:41'),(2227,'chemistry','66.249.66.158',82,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:22:29','2019-05-21 08:24:45'),(2228,'english','41.190.3.242',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:52:56','2019-03-01 10:52:56'),(2229,'physics','41.190.3.242',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:59:56','2019-03-01 10:59:56'),(2230,'english','41.190.2.156',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:08:07','2019-03-01 11:10:46'),(2231,'englishlit','41.190.2.156',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:11:29','2019-03-01 11:15:39'),(2232,'englishlit','41.190.31.166',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:22:14','2019-03-01 11:22:15'),(2233,'mathematics','41.242.89.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 14:24:39','2019-03-01 14:24:39'),(2234,'chemistry','54.85.62.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:23','2019-03-01 18:59:23'),(2235,'commerce','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2236,'physics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2237,'englishlit','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2238,'government','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2239,'crk','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2240,'economics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2241,'currentaffairs','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2242,'chemistry','88.6.244.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:08:40','2019-03-01 19:08:40'),(2243,'englishlit','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:21'),(2244,'english','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2245,'commerce','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:46'),(2246,'biology','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2247,'geography','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2248,'economics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2249,'irk','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2250,'history','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2251,'chemistry','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:58:25'),(2252,'government','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2253,'currentaffairs','107.20.60.54',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2254,'mathematics','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:05','2019-03-01 19:57:41'),(2255,'accounting','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2256,'physics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2257,'crk','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2258,'civiledu','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2259,'insurance','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2260,'chemistry','197.211.57.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 00:15:49','2019-03-02 00:15:49'),(2261,'mathematics','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:00:36','2019-03-02 04:00:36'),(2262,'geography','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:11:33','2019-03-02 04:11:33'),(2263,'insurance','3.89.38.207',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 06:24:49','2019-03-02 06:30:51'),(2264,'mathematics','54.80.44.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:08'),(2265,'biology','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:05'),(2266,'physics','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:39'),(2267,'chemistry','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:00'),(2268,'englishlit','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:52'),(2269,'economics','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2270,'civiledu','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2271,'commerce','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2272,'crk','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2273,'insurance','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2274,'currentaffairs','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:55'),(2275,'biology','105.112.44.175',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 15:21:52','2019-03-02 15:26:09'),(2276,'chemistry','105.112.21.63',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 16:03:37','2019-03-02 16:03:53'),(2277,'englishlit','169.159.66.161',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 17:05:42','2019-03-02 17:05:42'),(2278,'geography','34.229.78.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 22:36:51','2019-03-02 22:36:51'),(2279,'chemistry','105.112.23.37',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-03 21:25:44','2019-03-03 21:26:34'),(2280,'english','105.112.45.107',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 06:08:59','2019-03-04 06:09:55'),(2281,'chemistry','154.66.15.65',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 09:03:04','2019-03-04 09:03:04'),(2282,'chemistry','40.77.167.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 10:53:20','2019-05-08 11:01:31'),(2283,'chemistry','66.249.64.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 11:52:26','2019-03-04 11:52:26'),(2284,'chemistry','157.55.39.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 17:38:04','2019-03-04 17:38:04'),(2285,'english','129.56.36.43',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 20:56:28','2019-03-04 20:56:29'),(2286,'chemistry','66.249.93.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 22:00:50','2019-03-04 22:00:50'),(2287,'history','3.83.116.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 08:18:13','2019-03-05 08:18:13'),(2288,'english','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2289,'mathematics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2290,'biology','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2291,'irk','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2292,'insurance','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2293,'currentaffairs','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2294,'history','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2295,'commerce','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2296,'accounting','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2297,'economics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2298,'civiledu','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2299,'chemistry','129.205.112.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 05:43:39','2019-03-06 05:43:39'),(2300,'english','105.112.41.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 06:01:30','2019-03-06 06:01:30'),(2301,'chemistry','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:53:58','2019-03-07 07:53:58'),(2302,'english','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:03','2019-03-07 07:54:03'),(2303,'currentaffairs','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:05','2019-03-07 07:54:05'),(2304,'englishlit','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:11','2019-03-07 07:54:11'),(2305,'mathematics','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:13','2019-03-07 07:54:13'),(2306,'english','54.146.17.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 10:10:28','2019-03-07 10:10:28'),(2307,'chemistry','41.203.78.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 18:01:15','2019-03-07 18:01:40'),(2308,'mathematics','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:29:12','2019-03-08 00:29:12'),(2309,'accounting','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:43:38','2019-03-08 00:43:39'),(2310,'irk','129.205.112.111',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:47:07','2019-03-08 00:47:07'),(2311,'commerce','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:57:56','2019-03-08 00:57:56'),(2312,'mathematics','105.112.23.187',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 02:10:15','2019-03-08 02:10:16'),(2313,'chemistry','182.156.84.42',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 07:34:03','2019-03-08 07:34:38'),(2314,'english','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:32','2019-03-08 21:33:32'),(2315,'mathematics','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:51','2019-03-08 21:33:51'),(2316,'chemistry','66.249.66.128',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 22:28:29','2019-03-08 22:28:29'),(2317,'commerce','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2318,'accounting','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2319,'englishlit','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2320,'government','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2321,'crk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2322,'irk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2323,'civiledu','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2324,'biology','105.112.41.40',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 11:20:50','2019-03-10 11:20:50'),(2325,'english','66.249.66.159',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-10 18:44:59','2019-12-20 19:13:10'),(2326,'currentaffairs','66.249.66.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:01:44','2019-03-10 19:01:44'),(2327,'mathematics','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:07:00','2019-03-10 19:07:00'),(2328,'biology','66.249.66.159',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:11:15','2019-07-20 09:55:14'),(2329,'chemistry','197.242.96.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:22:23','2019-03-10 22:22:23'),(2330,'commerce','197.211.32.243',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:37:02','2019-03-10 22:37:05'),(2331,'english','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:35'),(2332,'commerce','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2333,'biology','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2334,'chemistry','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2335,'geography','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:27'),(2336,'currentaffairs','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:32'),(2337,'history','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:43'),(2338,'englishlit','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:37','2019-03-10 23:37:40'),(2339,'mathematics','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:47'),(2340,'physics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2341,'economics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2342,'civiledu','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2343,'english','105.112.106.77',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:59:59','2019-03-11 00:33:51'),(2344,'mathematics','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:03','2019-03-11 00:13:40'),(2345,'civiledu','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:29','2019-03-11 00:10:45'),(2346,'chemistry','41.216.168.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 10:36:04','2019-03-11 10:36:31'),(2347,'biology','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:11:03','2019-03-11 12:11:04'),(2348,'currentaffairs','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:16:12','2019-03-11 12:16:13'),(2349,'mathematics','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:21:12','2019-03-11 12:21:13'),(2350,'chemistry','197.210.62.63',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:26:12','2019-03-11 12:26:12'),(2351,'chemistry','197.210.54.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:24','2019-03-12 04:11:25'),(2352,'chemistry','197.210.54.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:37','2019-03-12 04:11:38'),(2353,'chemistry','207.46.13.222',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 23:05:23','2019-03-12 23:05:23'),(2354,'chemistry','105.112.16.104',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:30:57','2019-03-13 08:32:49'),(2355,'mathematics','105.112.16.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:33:15','2019-03-13 08:33:15'),(2356,'chemistry','157.55.39.236',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-14 04:31:32','2020-05-06 01:55:10'),(2357,'chemistry','129.18.151.222',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-14 17:26:09','2019-03-14 17:27:29'),(2358,'mathematics','18.207.245.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2359,'mathematics','18.207.245.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2360,'biology','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2361,'commerce','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2362,'physics','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2363,'chemistry','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2364,'economics','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2365,'irk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2366,'government','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2367,'history','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2368,'crk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2369,'physics','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:25','2019-03-16 12:35:39'),(2370,'mathematics','129.205.113.120',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:34','2019-03-16 12:33:03'),(2371,'commerce','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2372,'accounting','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2373,'chemistry','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2374,'englishlit','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2375,'civiledu','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2376,'insurance','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2377,'history','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2378,'english','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 12:33:00','2019-03-16 12:33:31'),(2379,'mathematics','105.178.112.15',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 13:18:33','2019-03-16 14:33:21'),(2380,'englishlit','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:40','2019-03-16 15:14:43'),(2381,'commerce','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:45','2019-03-16 15:15:22'),(2382,'history','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:47','2019-03-16 15:14:59'),(2383,'chemistry','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:49','2019-03-16 15:14:54'),(2384,'accounting','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:52','2019-03-16 15:15:17'),(2385,'civiledu','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:57','2019-03-16 15:15:01'),(2386,'insurance','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:15:19','2019-03-16 15:15:25'),(2387,'chemistry','40.77.167.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 18:24:33','2019-03-16 18:24:33'),(2388,'commerce','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2389,'accounting','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2390,'biology','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2391,'chemistry','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2392,'englishlit','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2393,'irk','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2394,'history','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2395,'mathematics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:53'),(2396,'accounting','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 08:48:07'),(2397,'biology','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:03:03'),(2398,'physics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:47'),(2399,'englishlit','100.24.30.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:02'),(2400,'currentaffairs','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:45'),(2401,'history','100.24.30.47',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:06'),(2402,'english','100.24.30.47',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:57:07','2019-03-17 09:11:58'),(2403,'economics','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:00:11'),(2404,'irk','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2405,'civiledu','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2406,'commerce','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2407,'crk','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2408,'geography','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2409,'english','3.93.187.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:32:15','2019-03-17 11:32:15'),(2410,'chemistry','37.9.87.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:48:48','2019-03-17 11:48:48'),(2411,'chemistry','94.130.237.95',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-18 23:20:28','2020-03-04 10:30:43'),(2412,'chemistry','46.229.168.133',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-19 07:43:34','2020-04-15 11:01:00'),(2413,'english','105.112.104.202',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 15:27:18','2019-03-19 15:27:19'),(2414,'chemistry','40.77.167.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 17:56:39','2019-03-19 17:56:39'),(2415,'chemistry','66.102.6.20',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 20:29:21','2019-03-19 20:29:22'),(2416,'chemistry','84.224.213.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 14:12:39','2019-03-20 14:12:39'),(2417,'english','105.112.104.10',340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:17:23','2019-03-20 20:12:29'),(2418,'irk','105.112.104.10',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:54:32','2019-03-20 19:54:32'),(2419,'accounting','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:07','2019-03-21 02:02:08'),(2420,'chemistry','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2421,'government','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2422,'geography','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2423,'irk','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2424,'currentaffairs','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2425,'history','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2426,'commerce','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2427,'biology','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2428,'chemistry','185.161.72.105',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 13:47:45','2019-03-21 13:47:45'),(2429,'english','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2430,'commerce','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2431,'physics','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2432,'government','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2433,'irk','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2434,'insurance','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2435,'currentaffairs','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2436,'physics','66.249.64.178',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-22 04:05:38','2019-09-25 11:24:23'),(2437,'chemistry','82.145.222.11',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 08:45:03','2019-03-22 08:53:13'),(2438,'crk','52.91.165.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 09:38:12','2019-03-22 09:38:12'),(2439,'economics','54.158.54.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 11:28:41','2019-03-22 11:28:41'),(2440,'history','54.90.213.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 12:47:11','2019-03-22 12:47:11'),(2441,'english','66.249.64.176',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:40:29','2019-04-12 08:26:44'),(2442,'commerce','66.249.64.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:50:23','2019-03-22 13:50:23'),(2443,'civiledu','66.249.64.178',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:55:48','2019-03-22 13:55:48'),(2444,'mathematics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2445,'chemistry','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2446,'crk','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2447,'geography','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2448,'economics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2449,'insurance','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2450,'history','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2451,'commerce','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2452,'physics','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2453,'englishlit','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:42'),(2454,'crk','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:00:30'),(2455,'economics','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2456,'irk','34.229.89.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2457,'history','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:43'),(2458,'english','34.229.89.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2459,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2460,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2461,'chemistry','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2462,'geography','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2463,'accounting','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2464,'civiledu','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2465,'insurance','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:42'),(2466,'currentaffairs','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:56'),(2467,'biology','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:37','2019-03-22 17:32:37'),(2468,'government','34.229.89.118',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:40','2019-03-22 17:32:45'),(2469,'mathematics','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:44','2019-03-22 17:32:44'),(2470,'english','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:18','2019-03-22 17:33:18'),(2471,'mathematics','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:19','2019-03-22 17:33:19'),(2472,'chemistry','41.191.107.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:21:08','2019-03-23 13:21:08'),(2473,'chemistry','41.191.107.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:44:44','2019-03-23 13:44:44'),(2474,'chemistry','129.205.112.163',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:17:58','2019-03-23 22:17:58'),(2475,'economics','129.205.112.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:18:49','2019-03-23 22:19:03'),(2476,'mathematics','197.210.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:44:13','2019-03-24 10:44:13'),(2477,'chemistry','197.210.226.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:46:33','2019-03-24 10:46:34'),(2478,'chemistry','197.211.53.242',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 10:42:54','2019-03-25 10:44:52'),(2479,'chemistry','41.203.117.95',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:03','2019-03-25 13:54:15'),(2480,'physics','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:28','2019-03-25 13:47:28'),(2481,'crk','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:13','2019-03-25 13:48:13'),(2482,'mathematics','41.203.117.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:31','2019-03-25 13:48:38'),(2483,'chemistry','41.203.117.96',143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:49:27','2019-03-25 14:31:34'),(2484,'accounting','41.203.117.96',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:30:45','2019-03-25 14:30:45'),(2485,'english','41.203.117.96',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:31:48','2019-03-25 14:31:48'),(2486,'currentaffairs','41.203.117.96',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:34:10','2019-03-28 05:33:36'),(2487,'english','105.112.46.123',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-26 13:20:41','2019-03-26 13:20:41'),(2488,'chemistry','46.229.168.153',58,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 15:28:52','2020-04-02 19:27:21'),(2489,'chemistry','46.229.168.140',6,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 21:40:59','2020-05-27 12:47:02'),(2490,'englishlit','41.80.214.85',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 06:56:24','2019-03-27 06:56:24'),(2491,'chemistry','73.59.41.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 21:49:59','2019-03-27 21:49:59'),(2492,'chemistry','41.203.72.196',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 08:11:19','2019-03-28 12:35:17'),(2493,'chemistry','40.77.167.104',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 15:19:42','2019-03-28 15:19:42'),(2494,'mathematics','129.205.112.28',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:06:58','2019-03-29 19:07:07'),(2495,'physics','129.205.112.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:07:30','2019-03-29 19:07:30'),(2496,'economics','3.80.51.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:44:22','2019-03-29 19:44:22'),(2497,'government','18.234.162.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 21:01:37','2019-03-29 21:01:37'),(2498,'chemistry','46.229.168.161',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-29 21:28:49','2019-12-18 04:07:27'),(2499,'irk','3.87.11.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 00:18:36','2019-03-30 00:18:36'),(2500,'geography','54.197.32.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 03:33:46','2019-03-30 03:33:46'),(2501,'biology','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:08:31','2019-03-30 08:08:31'),(2502,'insurance','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:26:32','2019-03-30 08:26:32'),(2503,'chemistry','3.84.72.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 02:49:20','2019-03-31 02:49:20'),(2504,'chemistry','34.204.94.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 04:43:23','2019-03-31 04:43:23'),(2505,'english','3.81.184.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 10:44:44','2019-03-31 10:44:44'),(2506,'chemistry','105.112.23.125',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:00:42','2019-03-31 13:15:36'),(2507,'english','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:09:11','2019-03-31 13:09:11'),(2508,'mathematics','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:11:16','2019-03-31 13:11:16'),(2509,'chemistry','197.211.47.194',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:03:32','2019-04-01 09:06:11'),(2510,'chemistry','41.76.196.129',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:06:31','2019-04-01 09:06:31'),(2511,'commerce','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2512,'biology','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2513,'government','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2514,'crk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2515,'irk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2516,'civiledu','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2517,'currentaffairs','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2518,'english','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:22','2019-04-02 02:07:22'),(2519,'biology','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:23','2019-04-02 02:07:27'),(2520,'commerce','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2521,'physics','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2522,'chemistry','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2523,'geography','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2524,'irk','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2525,'history','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2526,'government','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:28','2019-04-02 02:07:28'),(2527,'mathematics','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:41','2019-04-02 02:07:46'),(2528,'accounting','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2529,'englishlit','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2530,'currentaffairs','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:49'),(2531,'biology','3.86.140.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 04:02:20','2019-04-02 04:02:20'),(2532,'englishlit','3.94.89.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 06:08:13','2019-04-02 06:08:13'),(2533,'chemistry','41.184.180.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 08:54:01','2019-04-02 08:54:10'),(2534,'accounting','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:03:12','2019-04-02 10:03:12'),(2535,'government','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:26:32','2019-04-02 10:26:32'),(2536,'chemistry','207.46.13.126',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-02 13:11:18','2019-08-14 07:10:32'),(2537,'biology','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:17','2019-04-03 08:40:36'),(2538,'chemistry','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:29','2019-04-03 08:40:19'),(2539,'mathematics','105.112.44.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:41:16','2019-04-03 08:41:16'),(2540,'chemistry','209.97.150.141',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 09:48:38','2019-04-03 09:50:08'),(2541,'english','105.112.32.51',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:33','2019-04-03 11:02:48'),(2542,'biology','105.112.32.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:37','2019-04-03 11:02:37'),(2543,'chemistry','41.190.2.238',1555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:28:32','2019-04-03 11:47:36'),(2544,'mathematics','41.190.2.238',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:30:49','2019-04-03 11:30:49'),(2545,'physics','41.190.2.238',526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:47:52','2019-04-03 12:42:05'),(2546,'physics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:13:30','2019-04-03 15:13:31'),(2547,'chemistry','41.190.30.103',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:35:55','2019-04-03 15:36:14'),(2548,'mathematics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:39:13','2019-04-03 15:39:14'),(2549,'accounting','41.190.30.103',136,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:45:47','2019-04-03 15:46:17'),(2550,'economics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:49:22','2019-04-03 15:49:22'),(2551,'crk','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:51:56','2019-04-03 15:51:57'),(2552,'biology','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:54:17','2019-04-03 15:54:17'),(2553,'commerce','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:55:40','2019-04-03 15:55:40'),(2554,'government','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:58:11','2019-04-03 15:58:12'),(2555,'geography','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:00:47','2019-04-03 16:00:47'),(2556,'civiledu','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:02:39','2019-04-03 16:02:39'),(2557,'englishlit','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:05:21','2019-04-03 16:05:22'),(2558,'insurance','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:08:37','2019-04-03 16:08:38'),(2559,'currentaffairs','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:11:38','2019-04-03 16:11:38'),(2560,'history','41.190.30.103',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:14:03','2019-04-03 16:18:17'),(2561,'english','41.190.30.103',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:18:32','2019-04-03 16:20:28'),(2562,'government','41.190.2.134',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:33:07','2019-04-04 09:35:25'),(2563,'geography','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:38:24','2019-04-04 09:38:25'),(2564,'civiledu','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:39:50','2019-04-04 09:39:51'),(2565,'commerce','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:41:37','2019-04-04 09:41:37'),(2566,'crk','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:54:15','2019-04-04 09:54:16'),(2567,'economics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:57:56','2019-04-04 09:57:56'),(2568,'accounting','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:01:07','2019-04-04 10:01:07'),(2569,'mathematics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:06:55','2019-04-04 10:06:55'),(2570,'physics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:12:17','2019-04-04 10:12:17'),(2571,'history','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:21:45','2019-04-04 10:21:45'),(2572,'englishlit','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:24:08','2019-04-04 10:24:08'),(2573,'english','41.190.30.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:13:41','2019-04-04 13:13:42'),(2574,'mathematics','41.190.3.233',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:54:16','2019-04-04 13:54:16'),(2575,'chemistry','41.190.3.233',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:55:19','2019-04-04 13:55:19'),(2576,'chemistry','185.22.187.7',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 15:25:03','2019-04-04 15:25:20'),(2577,'chemistry','37.9.87.166',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-05 14:29:44','2019-10-25 17:45:28'),(2578,'irk','54.196.110.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 15:52:32','2019-04-05 15:52:32'),(2579,'mathematics','197.210.44.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:32','2019-04-05 16:49:32'),(2580,'chemistry','197.210.44.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:34','2019-04-05 16:49:34'),(2581,'chemistry','197.210.44.111',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:50:28','2019-04-05 16:51:41'),(2582,'chemistry','197.210.47.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:54:08','2019-04-05 16:54:09'),(2583,'chemistry','52.90.61.82',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:21:23','2019-04-05 18:36:20'),(2584,'currentaffairs','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:23:14','2019-04-05 18:23:14'),(2585,'crk','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:36:17','2019-04-05 18:36:17'),(2586,'civiledu','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:02','2019-04-05 18:37:02'),(2587,'english','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:32','2019-04-05 18:37:32'),(2588,'chemistry','157.55.39.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:59:25','2019-07-19 10:24:33'),(2589,'physics','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:17','2019-04-05 19:08:17'),(2590,'biology','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:21','2019-04-05 19:08:21'),(2591,'currentaffairs','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:29:36','2019-04-05 20:29:36'),(2592,'insurance','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:35:29','2019-04-05 20:35:29'),(2593,'physics','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:38:52','2019-04-05 21:38:52'),(2594,'irk','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:43:07','2019-04-05 21:43:07'),(2595,'chemistry','54.91.42.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:01','2019-04-05 21:54:36'),(2596,'commerce','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:13','2019-04-05 21:45:13'),(2597,'civiledu','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:50:08','2019-04-05 21:50:08'),(2598,'history','35.172.115.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 01:23:16','2019-04-06 01:23:16'),(2599,'currentaffairs','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:01','2019-04-06 03:46:01'),(2600,'crk','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:30','2019-04-06 03:46:30'),(2601,'englishlit','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 04:05:47','2019-04-06 04:05:47'),(2602,'accounting','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:26:27','2019-04-06 07:26:27'),(2603,'physics','3.85.62.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:19','2019-04-06 07:42:57'),(2604,'civiledu','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:26','2019-04-06 07:36:26'),(2605,'mathematics','197.210.61.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 14:29:44','2019-04-06 14:29:45'),(2606,'chemistry','207.46.13.167',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-06 18:40:36','2019-10-27 04:49:17'),(2607,'commerce','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2608,'accounting','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2609,'biology','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2610,'economics','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2611,'irk','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2612,'insurance','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2613,'currentaffairs','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2614,'english','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:24:22'),(2615,'mathematics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:02'),(2616,'biology','3.90.165.250',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:28'),(2617,'chemistry','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:47'),(2618,'government','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:16'),(2619,'geography','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:37'),(2620,'economics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:15'),(2621,'chemistry','141.0.13.241',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:16:18','2019-04-07 11:17:09'),(2622,'chemistry','105.112.104.108',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:17:50','2019-04-07 11:53:35'),(2623,'chemistry','82.145.222.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:22:54','2019-04-07 11:22:54'),(2624,'mathematics','105.112.104.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:46:52','2019-04-07 11:46:52'),(2625,'biology','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:15:42','2019-04-07 12:15:42'),(2626,'accounting','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:17:42','2019-04-07 12:17:42'),(2627,'chemistry','105.112.104.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:26:42','2019-04-07 13:27:24'),(2628,'biology','105.112.104.18',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:27:54','2019-04-07 13:28:33'),(2629,'mathematics','105.112.104.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:29:59','2019-04-07 13:29:59'),(2630,'chemistry','185.26.180.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:00:35','2019-04-07 16:00:35'),(2631,'chemistry','105.112.106.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:02:56','2019-04-07 16:02:56'),(2632,'chemistry','105.112.43.80',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 17:41:13','2019-04-07 17:41:38'),(2633,'chemistry','105.112.104.114',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:43:25','2019-04-08 04:55:15'),(2634,'mathematics','105.112.104.114',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:51:11','2019-04-08 04:51:12'),(2635,'chemistry','105.112.34.168',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 05:14:41','2019-04-08 05:14:55'),(2636,'chemistry','105.112.104.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 07:59:31','2019-04-08 07:59:31'),(2637,'chemistry','41.205.240.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:19:15','2019-04-09 00:19:15'),(2638,'economics','3.86.54.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:39:42','2019-04-09 00:39:42'),(2639,'commerce','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:29:18'),(2640,'accounting','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2641,'physics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2642,'crk','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2643,'economics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:23:09'),(2644,'insurance','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:44'),(2645,'history','3.88.201.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:56'),(2646,'mathematics','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:44:33','2019-04-09 09:44:33'),(2647,'accounting','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:54:57','2019-04-09 09:54:57'),(2648,'accounting','3.87.215.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 12:06:38','2019-04-09 12:06:38'),(2649,'physics','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:22','2019-04-09 17:06:22'),(2650,'economics','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:23','2019-04-09 17:05:23'),(2651,'accounting','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:47','2019-04-09 17:05:47'),(2652,'crk','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:57','2019-04-09 17:06:07'),(2653,'chemistry','207.46.13.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 02:00:09','2019-04-10 02:00:09'),(2654,'irk','54.173.242.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:23:34','2019-04-10 07:23:40'),(2655,'commerce','54.173.242.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:48:23','2019-04-10 07:48:23'),(2656,'government','54.147.61.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 09:44:06','2019-04-10 09:44:06'),(2657,'geography','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2658,'government','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2659,'economics','3.93.241.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 12:17:07','2019-04-10 12:17:07'),(2660,'irk','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:56','2019-04-10 14:28:56'),(2661,'history','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:57','2019-04-10 14:28:57'),(2662,'irk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:31','2019-04-10 15:59:53'),(2663,'accounting','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:33','2019-04-10 16:03:21'),(2664,'economics','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:47','2019-04-10 16:02:08'),(2665,'currentaffairs','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:51','2019-04-10 16:01:26'),(2666,'insurance','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:10','2019-04-10 16:01:37'),(2667,'biology','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:18','2019-04-10 16:02:37'),(2668,'commerce','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:48','2019-04-10 16:02:17'),(2669,'civiledu','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:49','2019-04-10 16:02:48'),(2670,'crk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:56','2019-04-10 16:02:27'),(2671,'government','3.80.78.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:02:58','2019-04-10 16:02:58'),(2672,'chemistry','207.46.13.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:32:08','2019-04-10 17:32:08'),(2673,'chemistry','66.249.69.48',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:41:29','2019-04-10 17:41:29'),(2674,'insurance','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:38:05','2019-04-10 18:38:05'),(2675,'civiledu','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:44:01','2019-04-10 18:44:01'),(2676,'irk','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:58:11','2019-04-10 18:58:11'),(2677,'government','3.87.45.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 20:21:49','2019-04-10 20:21:49'),(2678,'government','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:40','2019-04-10 22:50:40'),(2679,'geography','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:42','2019-04-10 22:50:42'),(2680,'english','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2681,'chemistry','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2682,'englishlit','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2683,'crk','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2684,'economics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:46'),(2685,'irk','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2686,'insurance','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2687,'biology','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:15','2019-04-11 00:10:18'),(2688,'mathematics','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:20','2019-04-11 00:11:23'),(2689,'government','54.86.96.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:30','2019-04-11 00:10:30'),(2690,'physics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:33','2019-04-11 00:11:18'),(2691,'accounting','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2692,'geography','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2693,'civiledu','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2694,'economics','3.93.17.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 02:50:27','2019-04-11 02:50:27'),(2695,'chemistry','197.253.24.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 10:49:51','2019-04-11 10:49:51'),(2696,'chemistry','157.55.39.202',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-11 12:13:39','2019-08-25 13:52:51'),(2697,'insurance','54.88.86.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 17:31:52','2019-04-11 17:31:52'),(2698,'chemistry','121.201.98.53',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 20:36:45','2019-04-11 20:36:50'),(2699,'english','41.191.107.216',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 06:44:42','2019-04-14 21:10:37'),(2700,'mathematics','41.191.104.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:09:38','2019-04-12 07:09:38'),(2701,'mathematics','41.191.107.41',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:45:52','2019-04-16 10:48:23'),(2702,'mathematics','41.191.107.131',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:54:27','2019-04-12 07:55:42'),(2703,'mathematics','41.191.104.115',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:01:58','2019-04-12 08:16:36'),(2704,'mathematics','41.191.107.49',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:17:28','2019-04-13 06:52:57'),(2705,'mathematics','41.191.104.102',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:25:53','2019-04-12 08:25:53'),(2706,'mathematics','66.249.64.180',125,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:28:03','2019-09-25 10:59:54'),(2707,'accounting','66.249.64.178',100,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:46:02','2019-09-30 03:38:01'),(2708,'chemistry','207.46.13.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:56:53','2019-04-12 08:56:53'),(2709,'mathematics','41.191.107.34',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:03:02','2019-04-13 23:22:24'),(2710,'english','41.191.107.34',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:06:00','2019-04-13 23:48:54'),(2711,'english','105.112.104.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 14:42:37','2019-04-12 14:42:37'),(2712,'chemistry','46.229.168.163',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 16:31:11','2020-04-13 20:58:16'),(2713,'mathematics','41.191.107.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:36:57','2019-04-13 06:40:11'),(2714,'mathematics','41.191.107.151',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:42:48','2019-04-15 12:15:35'),(2715,'english','41.191.107.49',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:53:45','2019-04-13 06:53:45'),(2716,'mathematics','41.191.107.229',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:15:13','2019-04-13 07:17:41'),(2717,'english','41.191.104.98',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:23:28','2019-04-13 07:26:33'),(2718,'mathematics','41.191.104.123',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:28:03','2019-04-13 07:33:06'),(2719,'english','41.191.107.56',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:34:59','2019-04-13 07:41:26'),(2720,'mathematics','41.191.107.56',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:35:12','2019-04-13 07:36:14'),(2721,'english','41.191.107.38',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:01:35','2019-04-15 22:19:39'),(2722,'mathematics','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:14:24','2019-04-13 08:22:39'),(2723,'mathematics','41.191.107.200',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:13:40','2019-04-13 15:16:42'),(2724,'english','41.191.104.245',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:19:40','2019-04-13 15:21:22'),(2725,'mathematics','41.191.104.245',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:20:48','2019-04-13 15:36:18'),(2726,'english','41.191.104.126',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:41:45','2019-04-13 16:13:10'),(2727,'biology','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:10:57','2019-04-13 16:10:57'),(2728,'mathematics','41.191.107.202',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:15:56','2019-04-15 09:45:36'),(2729,'english','41.191.107.202',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:18:30','2019-04-18 12:32:41'),(2730,'mathematics','41.191.107.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:27:24','2019-04-13 16:30:57'),(2731,'english','41.191.107.192',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:32:20','2019-04-14 16:42:26'),(2732,'english','41.191.107.207',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:35:14','2019-04-13 16:35:15'),(2733,'english','41.191.107.57',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:38:16','2019-04-14 18:25:42'),(2734,'biology','41.191.107.57',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:42:04','2019-04-13 16:42:04'),(2735,'english','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:06:49','2019-04-13 17:06:49'),(2736,'history','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:14:30','2019-04-13 17:14:30'),(2737,'english','41.191.107.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:03:33','2019-04-13 20:03:33'),(2738,'mathematics','41.191.104.69',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:53:34','2019-04-13 20:53:34'),(2739,'chemistry','68.38.183.43',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:59:58','2019-04-13 20:59:58'),(2740,'english','41.191.104.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:20:44','2019-04-17 07:51:45'),(2741,'mathematics','41.191.104.66',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:24:15','2019-04-14 05:46:29'),(2742,'english','41.191.107.150',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:03:19','2019-04-14 22:45:16'),(2743,'english','41.191.107.152',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:11:07','2019-04-13 22:21:17'),(2744,'mathematics','41.191.107.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:17:02','2019-04-13 22:17:02'),(2745,'english','41.191.107.200',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:23:24','2019-04-13 22:26:39'),(2746,'english','41.191.104.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:39:29','2019-04-13 22:41:41'),(2747,'english','41.191.107.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:51:32','2019-04-13 22:51:32'),(2748,'mathematics','41.191.107.222',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:54:57','2019-04-18 15:45:59'),(2749,'english','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:00:50','2019-04-13 23:00:50'),(2750,'english','41.191.107.137',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:32:04','2019-04-13 23:35:00'),(2751,'englishlit','18.232.74.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:13','2019-04-13 23:36:13'),(2752,'biology','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:44','2019-04-13 23:36:44'),(2753,'english','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:40:56','2019-04-13 23:40:56'),(2754,'mathematics','41.191.107.37',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:58:26','2019-04-14 00:21:39'),(2755,'biology','41.191.107.37',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:01:19','2019-04-14 00:01:19'),(2756,'english','41.191.107.37',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:09:50','2019-04-14 00:17:04'),(2757,'chemistry','157.55.39.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 04:27:16','2019-04-14 04:27:16'),(2758,'mathematics','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:15:55','2019-04-15 21:56:33'),(2759,'mathematics','41.191.104.105',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:19:56','2019-04-16 13:49:06'),(2760,'english','41.191.104.105',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:23:15','2019-04-16 14:41:34'),(2761,'english','41.191.104.247',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:34:00','2019-04-14 21:59:12'),(2762,'mathematics','41.191.107.39',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:52:06','2019-04-14 06:52:06'),(2763,'english','41.191.107.39',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:53:36','2019-04-16 11:08:43'),(2764,'mathematics','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:59:07','2019-04-14 06:59:07'),(2765,'english','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:01:04','2019-04-14 07:01:04'),(2766,'english','41.191.104.211',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:07:58','2019-04-17 08:04:27'),(2767,'english','41.191.104.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:15:46','2019-04-14 07:19:13'),(2768,'english','41.191.104.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:30:14','2019-04-14 07:32:46'),(2769,'chemistry','37.9.87.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 09:45:40','2019-04-14 09:45:40'),(2770,'irk','52.90.216.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 10:20:51','2019-04-14 10:20:51'),(2771,'biology','3.81.103.16',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 11:31:56','2019-04-19 04:55:11'),(2772,'accounting','34.204.107.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:03:29','2019-04-14 13:03:29'),(2773,'biology','41.191.107.44',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:11','2019-04-14 13:49:11'),(2774,'mathematics','41.191.107.44',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:49','2019-04-14 13:50:03'),(2775,'mathematics','41.191.104.250',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:35','2019-04-18 08:49:17'),(2776,'biology','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:42','2019-04-14 13:53:42'),(2777,'chemistry','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:47','2019-04-14 13:53:47'),(2778,'englishlit','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:18:28','2019-04-14 16:18:28'),(2779,'geography','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:22:19','2019-04-14 16:22:19'),(2780,'english','41.191.104.212',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:35:03','2019-04-17 05:50:48'),(2781,'english','41.191.107.136',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:55:31','2019-04-14 16:55:31'),(2782,'geography','54.152.49.211',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:59:08','2019-04-14 16:59:51'),(2783,'english','41.191.104.71',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:06:18','2019-04-14 17:13:26'),(2784,'english','41.191.104.116',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:16:25','2019-04-17 08:38:00'),(2785,'mathematics','41.191.104.116',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:25:32','2019-04-14 22:10:15'),(2786,'english','41.191.104.119',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:30:02','2019-04-14 17:44:00'),(2787,'english','41.191.107.55',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:47:44','2019-04-14 17:51:39'),(2788,'english','41.191.104.108',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:55:26','2019-04-14 18:02:51'),(2789,'english','41.191.107.205',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:07:34','2019-04-14 18:17:06'),(2790,'mathematics','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:30:52','2019-04-16 10:27:56'),(2791,'english','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:36:07','2019-04-16 10:29:42'),(2792,'english','41.191.104.240',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:37:18','2019-04-17 08:43:35'),(2793,'biology','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:48:01','2019-04-14 18:48:01'),(2794,'english','41.191.107.219',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:52:14','2019-04-14 18:52:15'),(2795,'english','41.191.107.129',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:56:38','2019-04-14 19:01:32'),(2796,'currentaffairs','3.90.232.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:06','2019-04-14 19:07:06'),(2797,'english','41.191.107.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:18','2019-04-14 19:09:59'),(2798,'english','41.191.104.227',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:14:06','2019-04-14 19:15:42'),(2799,'english','41.191.104.253',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:24:38','2019-04-14 19:24:38'),(2800,'english','41.191.104.112',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:46:42','2019-04-14 19:49:06'),(2801,'english','41.191.104.125',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:52:06','2019-04-14 19:52:07'),(2802,'english','41.191.104.252',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:13:43','2019-04-14 21:20:04'),(2803,'english','41.191.104.87',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:36:40','2019-04-14 21:43:10'),(2804,'english','41.191.107.237',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:45:45','2019-04-18 12:38:45'),(2805,'english','41.191.104.244',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:52:54','2019-04-14 21:58:31'),(2806,'chemistry','41.191.104.247',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:47','2019-04-14 21:59:47'),(2807,'biology','41.191.104.247',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:57','2019-04-14 22:02:53'),(2808,'biology','41.191.104.116',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:07:01','2019-04-14 22:10:51'),(2809,'currentaffairs','54.83.92.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:19:54','2019-04-14 22:19:54'),(2810,'english','41.191.107.43',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:31:31','2019-04-14 22:37:38'),(2811,'biology','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:38:27','2019-04-14 22:38:27'),(2812,'english','41.191.104.236',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:47:43','2019-04-14 22:51:24'),(2813,'english','41.191.107.215',86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:57:31','2019-04-21 07:04:12'),(2814,'english','41.191.104.122',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 23:14:59','2019-04-14 23:16:16'),(2815,'currentaffairs','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 04:56:40','2019-04-15 04:56:40'),(2816,'biology','41.191.104.236',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:06:52','2019-04-15 05:06:52'),(2817,'biology','41.191.107.143',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:09:27','2019-04-15 05:09:27'),(2818,'english','41.191.107.143',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:10:01','2019-04-17 21:35:39'),(2819,'chemistry','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:25:39','2019-04-15 05:25:39'),(2820,'chemistry','197.210.45.192',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:57:49','2019-04-15 05:58:34'),(2821,'english','41.191.107.151',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:44:16','2019-04-15 12:15:57'),(2822,'mathematics','41.191.104.230',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:47:22','2019-04-15 06:47:22'),(2823,'chemistry','100.24.41.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:39:29','2019-04-15 08:39:29'),(2824,'economics','100.24.41.153',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:41:00','2019-04-15 08:46:51'),(2825,'mathematics','41.191.107.45',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:19:04','2019-04-15 09:19:04'),(2826,'english','41.191.107.45',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:21:49','2019-04-15 09:23:48'),(2827,'physics','41.191.107.202',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:44:31','2019-04-15 09:44:31'),(2828,'accounting','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:45','2019-04-15 10:30:45'),(2829,'insurance','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:59','2019-04-15 10:30:59'),(2830,'accounting','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:29','2019-04-15 12:13:29'),(2831,'biology','54.146.247.244',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:34','2019-04-15 12:16:32'),(2832,'biology','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:17:48','2019-04-15 12:17:48'),(2833,'government','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:19:13','2019-04-15 12:19:13'),(2834,'mathematics','41.191.104.246',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:58:00','2019-04-15 12:58:00'),(2835,'english','41.191.104.246',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 13:05:40','2019-04-15 13:27:26'),(2836,'english','41.191.107.235',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:15:42','2019-04-15 14:15:42'),(2837,'english','41.191.107.149',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:19:44','2019-04-15 14:20:56'),(2838,'english','41.191.104.248',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:29:00','2019-04-15 14:31:19'),(2839,'english','41.191.107.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:32:49','2019-04-19 06:55:21'),(2840,'english','41.191.104.235',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:42:02','2019-04-17 08:31:05'),(2841,'mathematics','41.191.104.235',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:44:03','2019-04-15 14:44:48'),(2842,'english','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:39:05','2019-04-15 21:39:05'),(2843,'mathematics','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:41:15','2019-04-15 21:41:15'),(2844,'english','41.191.104.83',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:47:14','2019-04-15 21:48:53'),(2845,'english','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:51:15','2019-04-15 21:53:42'),(2846,'mathematics','41.191.107.201',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:59:07','2019-04-15 21:59:07'),(2847,'english','41.191.107.201',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:01:58','2019-04-15 22:03:34'),(2848,'mathematics','41.191.104.80',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:08:37','2019-04-18 08:45:25'),(2849,'english','41.191.104.80',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:11:48','2019-04-15 22:11:48'),(2850,'mathematics','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:24:37','2019-04-15 22:24:37'),(2851,'english','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:26:42','2019-04-15 22:26:42'),(2852,'mathematics','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2853,'commerce','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2854,'biology','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2855,'physics','34.207.128.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2856,'economics','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2857,'irk','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2858,'civiledu','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2859,'accounting','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2860,'chemistry','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:37:13'),(2861,'currentaffairs','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2862,'english','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2863,'government','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2864,'crk','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2865,'biology','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2866,'mathematics','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2867,'english','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2868,'chemistry','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2869,'government','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2870,'crk','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2871,'economics','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2872,'englishlit','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2873,'geography','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2874,'irk','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2875,'civiledu','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2876,'insurance','3.91.220.96',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2877,'insurance','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2878,'history','3.91.220.96',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2879,'history','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2880,'mathematics','54.224.201.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:37:58','2019-04-16 03:10:18'),(2881,'english','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2882,'accounting','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2883,'englishlit','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2884,'government','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2885,'crk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2886,'currentaffairs','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:59:59'),(2887,'commerce','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2888,'geography','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2889,'economics','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2890,'irk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2891,'civiledu','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2892,'history','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2893,'biology','54.224.201.145',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 03:10:11','2019-04-16 03:10:17'),(2894,'mathematics','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:12:18','2019-04-16 09:12:18'),(2895,'biology','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:29:02','2019-04-16 09:29:02'),(2896,'english','41.191.104.232',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:42:38','2019-04-16 09:48:20'),(2897,'english','41.191.107.41',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:49:42','2019-04-16 10:49:42'),(2898,'english','41.191.104.94',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:52:36','2019-04-16 11:05:20'),(2899,'mathematics','41.191.104.94',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:01:04','2019-04-16 13:37:18'),(2900,'english','41.191.107.223',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:14:00','2019-04-16 11:14:00'),(2901,'english','41.191.104.243',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:01:15','2019-04-16 13:01:15'),(2902,'english','41.191.104.113',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:04:04','2019-04-22 16:45:32'),(2903,'chemistry','157.55.39.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:39:34','2019-04-16 14:39:34'),(2904,'irk','54.226.182.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:47:43','2019-04-16 14:47:43'),(2905,'english','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:32:59'),(2906,'mathematics','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:46'),(2907,'accounting','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:50'),(2908,'biology','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:08'),(2909,'chemistry','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:33'),(2910,'currentaffairs','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:17'),(2911,'history','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:26'),(2912,'english','41.191.107.232',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-16 22:12:50','2020-01-17 15:50:46'),(2913,'mathematics','41.191.107.48',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:08:33','2019-04-17 05:08:33'),(2914,'english','41.191.107.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:11:56','2019-04-17 05:21:50'),(2915,'english','41.191.104.209',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:29:28','2019-04-17 05:35:08'),(2916,'english','41.191.104.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:38:16','2019-04-17 05:43:44'),(2917,'english','41.191.104.101',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:55:22','2019-04-17 05:57:06'),(2918,'english','41.191.104.215',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:08:35','2019-04-17 08:14:14'),(2919,'english','41.191.104.229',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:15:48','2019-04-17 08:15:48'),(2920,'english','41.191.107.157',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:54:44','2019-04-17 09:04:13'),(2921,'english','41.191.104.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:09:49','2019-04-17 09:14:17'),(2922,'english','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:34'),(2923,'mathematics','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:47'),(2924,'accounting','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2925,'englishlit','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:17'),(2926,'crk','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2927,'civiledu','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2928,'history','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:43'),(2929,'english','41.191.107.158',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:17:03','2019-04-17 09:21:36'),(2930,'english','41.191.104.79',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:43:16','2019-04-17 09:52:06'),(2931,'economics','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:54:34','2019-04-17 09:54:34'),(2932,'english','41.191.107.212',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:58:06','2019-04-18 18:02:13'),(2933,'biology','41.191.107.212',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:26','2019-04-17 10:10:02'),(2934,'chemistry','41.242.60.178',3655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:43','2019-04-18 16:24:22'),(2935,'mathematics','41.242.60.178',4368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:06:02','2019-04-18 16:14:42'),(2936,'history','41.191.107.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:11:59','2019-04-17 10:17:23'),(2937,'geography','41.242.60.178',4586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:46:59','2019-04-18 15:58:23'),(2938,'biology','41.242.60.178',3792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:47:33','2019-04-18 16:20:34'),(2939,'english','41.191.104.97',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 14:41:16','2019-04-17 14:41:16'),(2940,'chemistry','105.112.120.90',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:08','2019-04-17 19:01:28'),(2941,'crk','105.112.120.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:50','2019-04-17 18:54:50'),(2942,'chemistry','107.167.107.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:06:47','2019-04-18 08:06:48'),(2943,'english','41.242.60.178',10980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:10:26','2019-04-18 15:55:34'),(2944,'mathematics','105.112.22.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:05:20','2019-04-18 11:05:20'),(2945,'crk','41.242.60.178',5752,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:17:29','2019-04-18 15:57:03'),(2946,'chemistry','207.46.13.94',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-18 11:50:50','2019-12-16 22:19:20'),(2947,'chemistry','207.46.13.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:28','2019-04-18 11:52:29'),(2948,'chemistry','207.46.13.91',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:51','2019-04-18 11:52:52'),(2949,'chemistry','207.46.13.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:53:29','2019-04-18 11:53:29'),(2950,'english','104.133.10.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 12:22:48','2019-04-18 12:22:49'),(2951,'economics','41.242.60.178',4544,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:20','2019-04-18 15:59:44'),(2952,'irk','41.242.60.178',3510,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:42','2019-04-18 16:01:01'),(2953,'civiledu','41.242.60.178',4680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:03','2019-04-18 16:02:40'),(2954,'currentaffairs','41.242.60.178',4120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:25','2019-04-18 16:29:06'),(2955,'history','41.242.60.178',4000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:46','2019-04-18 16:13:14'),(2956,'commerce','41.242.60.178',4160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:30','2019-04-18 16:16:35'),(2957,'accounting','41.242.60.178',3955,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:52','2019-04-18 16:18:32'),(2958,'physics','41.242.60.178',3529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:35:37','2019-04-18 16:22:15'),(2959,'englishlit','41.242.60.178',3287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:20','2019-04-18 16:26:08'),(2960,'government','41.242.60.178',2998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:42','2019-04-18 16:27:48'),(2961,'english','41.191.104.254',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:11:36','2019-04-18 18:05:09'),(2962,'english','41.191.104.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:14:50','2019-04-18 15:14:50'),(2963,'english','41.191.107.222',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:36:08','2019-04-18 15:37:19'),(2964,'english','41.191.107.203',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:47:57','2019-04-28 08:22:11'),(2965,'mathematics','41.191.107.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:08:54','2019-04-18 16:08:54'),(2966,'english','41.191.107.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:11:13','2019-04-18 16:11:13'),(2967,'english','18.205.17.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:14:02','2019-04-18 17:14:02'),(2968,'crk','105.112.120.55',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:31:40','2019-04-18 17:32:05'),(2969,'english','41.191.104.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:37:57','2019-04-18 17:39:42'),(2970,'history','3.87.15.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 20:46:27','2019-04-18 20:46:27'),(2971,'chemistry','54.36.150.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 00:33:38','2019-04-19 00:33:38'),(2972,'mathematics','41.191.104.212',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:14:26','2019-04-19 03:14:26'),(2973,'biology','41.191.104.123',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:26:07','2019-04-19 03:26:39'),(2974,'currentaffairs','50.17.23.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:47:16','2019-04-19 03:47:16'),(2975,'economics','54.211.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 08:17:33','2019-04-19 08:17:33'),(2976,'chemistry','105.112.53.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:25:47','2019-04-19 11:25:47'),(2977,'english','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:28','2019-04-19 11:43:28'),(2978,'mathematics','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:34','2019-04-19 11:43:35'),(2979,'chemistry','129.56.87.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:45:39','2019-04-19 11:45:39'),(2980,'english','150.70.168.140',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:52:20','2019-04-19 11:52:20'),(2981,'chemistry','45.56.148.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:08:00','2019-04-19 12:08:00'),(2982,'chemistry','197.210.29.247',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:11:16','2019-04-19 12:11:16'),(2983,'chemistry','41.203.78.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:30:23','2019-04-19 12:31:44'),(2984,'chemistry','54.36.150.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 15:16:27','2019-04-19 15:16:27'),(2985,'chemistry','197.210.226.150',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:13:39','2019-04-19 17:13:39'),(2986,'chemistry','197.210.227.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:14:17','2019-04-19 17:14:17'),(2987,'chemistry','141.0.12.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 19:46:58','2019-04-19 19:46:58'),(2988,'chemistry','105.112.37.27',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:20:05','2019-04-19 21:26:36'),(2989,'physics','105.112.37.27',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:27:16','2019-04-19 21:28:59'),(2990,'chemistry','141.0.13.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:52:32','2019-04-19 21:52:32'),(2991,'chemistry','129.205.112.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:54:09','2019-04-19 21:54:09'),(2992,'chemistry','54.36.148.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 22:05:06','2019-04-19 22:05:06'),(2993,'accounting','3.81.231.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 03:16:50','2019-04-20 03:16:50'),(2994,'chemistry','197.210.53.127',62,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:17:30','2020-05-25 11:23:46'),(2995,'chemistry','46.229.168.145',6,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:50:25','2020-02-23 12:52:02'),(2996,'physics','3.84.223.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 06:58:19','2019-04-20 06:58:19'),(2997,'chemistry','129.205.112.93',82,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 07:41:38','2019-08-22 14:35:12'),(2998,'chemistry','54.36.149.78',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 10:51:52','2019-04-20 10:51:52'),(2999,'chemistry','197.210.45.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 11:27:41','2019-04-20 11:27:41'),(3000,'chemistry','141.0.13.88',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 12:34:07','2019-09-06 19:28:17'),(3001,'chemistry','197.149.95.94',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 14:34:54','2019-04-20 14:35:18'),(3002,'chemistry','197.210.52.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:06:20','2019-04-20 15:06:53'),(3003,'chemistry','197.210.53.251',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:07:19','2019-04-20 15:08:04'),(3004,'chemistry','105.112.68.65',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 18:16:36','2019-04-20 18:17:01'),(3005,'chemistry','213.205.240.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 20:44:50','2019-04-20 20:44:50'),(3006,'biology','66.249.69.154',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 01:47:39','2019-04-21 01:47:40'),(3007,'mathematics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:24','2019-04-21 02:39:48'),(3008,'commerce','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3009,'accounting','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3010,'physics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3011,'chemistry','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3012,'government','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3013,'geography','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:49'),(3014,'irk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3015,'currentaffairs','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:39','2019-04-21 02:39:41'),(3016,'biology','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:48','2019-04-21 02:39:48'),(3017,'crk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3018,'economics','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3019,'english','54.162.77.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:51','2019-04-21 02:39:51'),(3020,'chemistry','207.46.13.23',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 06:08:10','2019-04-21 06:08:10'),(3021,'chemistry','40.77.167.30',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 07:33:49','2019-04-21 07:33:49'),(3022,'chemistry','197.210.52.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:52:14','2019-04-21 20:54:39'),(3023,'mathematics','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:06','2019-04-21 20:54:06'),(3024,'chemistry','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:30','2019-04-21 20:54:30'),(3025,'chemistry','3.95.160.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:01:30','2019-04-21 21:01:30'),(3026,'mathematics','197.210.52.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:08:15','2019-04-21 21:08:15'),(3027,'geography','18.212.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 22:48:55','2019-04-21 22:48:55'),(3028,'english','3.90.10.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 00:18:21','2019-04-22 00:18:21'),(3029,'mathematics','41.191.104.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:45:03','2019-04-22 16:45:03'),(3030,'biology','41.191.104.113',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:47:55','2019-04-22 16:47:55'),(3031,'chemistry','54.36.149.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 18:08:13','2019-04-22 18:08:13'),(3032,'economics','3.91.230.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 21:54:59','2019-04-22 21:54:59'),(3033,'english','3.92.201.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 00:59:05','2019-04-23 00:59:05'),(3034,'biology','66.249.66.158',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 01:15:09','2019-07-28 01:21:20'),(3035,'mathematics','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:10','2019-04-23 03:28:10'),(3036,'civiledu','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:12','2019-04-23 03:28:12'),(3037,'physics','18.212.208.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:29:49','2019-04-23 04:14:14'),(3038,'commerce','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:49:07','2019-04-23 03:49:07'),(3039,'crk','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:57:30','2019-04-23 03:57:30'),(3040,'history','54.159.47.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 21:59:22','2019-04-23 21:59:22'),(3041,'irk','52.204.101.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 03:42:30','2019-04-24 03:42:30'),(3042,'chemistry','207.46.13.180',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:12','2019-04-24 08:03:12'),(3043,'chemistry','207.46.13.159',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:17','2019-04-24 08:03:17'),(3044,'chemistry','207.46.13.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:22','2019-04-24 08:03:22'),(3045,'chemistry','207.46.13.87',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:28','2019-08-04 15:43:48'),(3046,'english','66.249.66.158',87,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-25 18:26:25','2020-01-23 20:32:43'),(3047,'chemistry','1.127.110.152',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 00:54:05','2019-04-26 00:54:20'),(3048,'chemistry','40.77.167.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 03:53:28','2019-04-26 03:53:28'),(3049,'currentaffairs','3.90.189.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 05:24:35','2019-04-26 05:24:35'),(3050,'chemistry','197.210.44.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 10:16:42','2019-04-26 10:16:42'),(3051,'chemistry','1.127.106.232',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:04:42','2019-04-26 12:04:42'),(3052,'physics','1.127.106.232',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:40:22','2019-04-26 12:47:18'),(3053,'chemistry','46.229.168.138',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-26 13:52:16','2020-02-26 17:26:37'),(3054,'mathematics','1.127.109.88',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:09:51','2019-04-27 00:22:30'),(3055,'commerce','1.127.109.88',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:23:12','2019-04-27 00:24:06'),(3056,'biology','1.127.109.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:47:44','2019-04-27 00:47:44'),(3057,'chemistry','40.77.167.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:58:09','2019-04-27 00:58:09'),(3058,'physics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:19'),(3059,'english','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:06'),(3060,'government','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3061,'accounting','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3062,'biology','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3063,'crk','3.89.242.31',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3064,'chemistry','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3065,'geography','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:14'),(3066,'englishlit','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3067,'economics','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3068,'irk','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3069,'currentaffairs','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3070,'history','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3071,'mathematics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:22','2019-04-27 01:11:29'),(3072,'commerce','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:31','2019-04-27 01:12:19'),(3073,'biology','100.25.216.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 02:25:13','2019-04-27 02:25:13'),(3074,'crk','3.82.139.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 06:35:55','2019-04-27 06:35:55'),(3075,'chemistry','46.229.168.154',17,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-27 07:27:19','2020-03-26 03:24:26'),(3076,'commerce','52.91.249.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 08:35:06','2019-04-27 08:35:06'),(3077,'currentaffairs','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 09:50:55','2019-04-27 09:50:55'),(3078,'chemistry','154.118.65.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:30','2019-04-27 10:57:30'),(3079,'commerce','34.228.140.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:38','2019-04-27 10:57:38'),(3080,'biology','1.127.106.17',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:45:45','2019-04-27 12:46:43'),(3081,'mathematics','1.127.106.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:47:05','2019-04-27 12:48:52'),(3082,'englishlit','52.23.198.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 13:44:10','2019-04-27 13:44:10'),(3083,'chemistry','66.249.73.80',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 21:38:40','2019-04-27 21:38:40'),(3084,'mathematics','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3085,'english','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3086,'accounting','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3087,'physics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3088,'chemistry','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3089,'biology','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3090,'government','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3091,'economics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3092,'civiledu','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3093,'insurance','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:12'),(3094,'chemistry','41.203.78.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 08:55:23','2019-04-28 08:55:37'),(3095,'chemistry','41.190.2.64',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:52:36','2019-04-28 11:56:48'),(3096,'chemistry','41.190.3.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:56:16','2019-04-28 11:56:16'),(3097,'chemistry','157.55.39.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 21:48:24','2019-04-28 21:48:24'),(3098,'chemistry','40.77.167.71',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-29 06:23:21','2019-11-07 16:42:12'),(3099,'chemistry','41.190.2.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:39:52','2019-04-29 10:39:52'),(3100,'biology','41.191.104.87',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:40:48','2019-04-29 10:40:48'),(3101,'insurance','52.204.170.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 21:28:49','2019-04-29 21:28:49'),(3102,'crk','3.85.56.1',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 22:14:35','2019-04-29 22:14:35'),(3103,'accounting','3.85.173.186',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 23:37:13','2019-04-29 23:37:13'),(3104,'chemistry','157.55.39.12',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 07:21:41','2019-06-12 00:41:53'),(3105,'commerce','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3106,'biology','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3107,'physics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3108,'government','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3109,'irk','34.224.60.217',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:24:47'),(3110,'currentaffairs','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3111,'history','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3112,'english','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3113,'crk','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3114,'economics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3115,'civiledu','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3116,'insurance','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3117,'geography','34.224.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:33:31','2019-04-30 09:33:31'),(3118,'chemistry','46.229.168.151',51,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-30 09:38:26','2019-12-01 18:07:27'),(3119,'chemistry','154.68.194.212',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 16:36:27','2019-04-30 16:37:47'),(3120,'chemistry','157.55.39.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 04:27:55','2019-05-01 04:27:55'),(3121,'chemistry','54.36.148.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 05:05:50','2019-05-01 05:05:50'),(3122,'biology','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3123,'physics','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:50'),(3124,'englishlit','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3125,'government','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3126,'civiledu','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3127,'currentaffairs','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3128,'history','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3129,'mathematics','54.226.59.135',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:23','2019-05-01 07:01:57'),(3130,'english','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:54'),(3131,'commerce','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:46'),(3132,'accounting','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3133,'irk','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3134,'geography','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:42','2019-05-01 07:01:56'),(3135,'insurance','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:58:08','2019-05-01 06:58:08'),(3136,'chemistry','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 07:01:56','2019-05-01 07:01:56'),(3137,'chemistry','197.210.45.72',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:45:40','2019-05-01 10:59:40'),(3138,'mathematics','197.210.45.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:53:54','2019-05-01 10:55:42'),(3139,'english','197.210.45.72',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:55:54','2019-05-01 10:57:36'),(3140,'biology','41.191.104.237',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 14:18:27','2019-05-01 14:18:27'),(3141,'chemistry','197.210.54.37',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:20','2019-05-02 10:53:48'),(3142,'chemistry','197.210.54.223',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:32','2019-05-02 10:47:10'),(3143,'chemistry','197.210.55.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 10:14:45','2019-05-02 10:50:02'),(3144,'chemistry','197.210.226.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:20:04','2019-05-02 11:20:04'),(3145,'chemistry','197.210.226.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:22:30','2019-05-02 11:22:30'),(3146,'chemistry','197.210.8.29',630,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:34:06','2019-05-02 12:14:01'),(3147,'chemistry','197.210.54.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 13:47:41','2019-05-02 13:48:21'),(3148,'chemistry','129.205.112.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 04:12:08','2019-05-03 04:12:09'),(3149,'chemistry','197.210.29.46',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 07:52:22','2019-05-03 08:00:45'),(3150,'chemistry','197.210.54.222',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:06:50','2019-05-03 09:26:09'),(3151,'chemistry','197.210.55.133',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:07:57','2019-05-03 09:13:11'),(3152,'chemistry','197.210.54.105',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:11:28','2019-05-03 09:28:30'),(3153,'chemistry','197.210.55.36',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:54:00','2019-05-03 08:55:53'),(3154,'mathematics','105.112.10.87',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 11:24:44','2019-05-03 11:24:44'),(3155,'chemistry','197.210.60.42',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 12:22:25','2019-05-03 13:34:02'),(3156,'mathematics','197.210.60.42',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 13:36:32','2019-05-03 13:54:05'),(3157,'mathematics','197.210.55.133',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:55:08','2019-05-04 06:23:05'),(3158,'mathematics','197.210.54.38',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:57:02','2019-05-04 06:24:02'),(3159,'mathematics','197.210.54.132',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:59:05','2019-05-04 06:07:02'),(3160,'mathematics','197.210.54.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 06:25:03','2019-05-04 06:25:03'),(3161,'chemistry','41.190.3.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 12:28:58','2019-05-04 12:28:58'),(3162,'chemistry','197.210.44.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 15:39:23','2019-05-05 15:39:23'),(3163,'chemistry','40.77.167.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 21:50:59','2019-07-20 03:21:08'),(3164,'mathematics','18.204.19.147',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3165,'physics','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3166,'accounting','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:49'),(3167,'englishlit','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3168,'economics','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3169,'irk','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3170,'insurance','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3171,'geography','18.204.19.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:44','2019-05-06 23:11:44'),(3172,'english','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:08'),(3173,'commerce','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:01'),(3174,'chemistry','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3175,'currentaffairs','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3176,'accounting','23.22.231.188',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 02:31:16','2019-05-08 02:31:16'),(3177,'insurance','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 13:09:16','2019-05-08 13:09:17'),(3178,'physics','66.249.66.158',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 14:31:06','2019-05-08 14:31:06'),(3179,'biology','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 22:48:34','2019-05-08 22:48:34'),(3180,'economics','105.112.38.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 13:52:26','2019-05-09 13:52:26'),(3181,'mathematics','3.80.87.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 18:51:06','2019-05-09 18:51:06'),(3182,'chemistry','187.85.6.94',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 20:51:54','2019-05-09 20:52:08'),(3183,'englishlit','54.196.16.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 00:29:52','2019-05-10 00:29:52'),(3184,'englishlit','105.112.106.10',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 06:29:03','2019-05-10 06:29:03'),(3185,'chemistry','129.56.111.134',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 07:46:16','2019-05-10 07:49:26'),(3186,'chemistry','129.205.112.138',591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 09:28:33','2019-05-10 11:48:10'),(3187,'chemistry','207.46.13.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 10:25:32','2019-05-10 10:25:32'),(3188,'english','129.205.112.138',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 11:48:25','2019-05-10 11:52:58'),(3189,'english','129.205.112.140',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 18:19:45','2019-05-10 18:19:45'),(3190,'chemistry','172.90.37.138',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:27:48','2019-05-13 00:36:13'),(3191,'biology','172.90.37.138',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:31:17','2019-05-11 14:31:17'),(3192,'geography','3.93.186.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 17:05:27','2019-05-11 17:05:27'),(3193,'chemistry','54.197.219.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 21:40:32','2019-05-11 21:40:32'),(3194,'english','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3195,'mathematics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3196,'commerce','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3197,'biology','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3198,'physics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3199,'economics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3200,'irk','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3201,'economics','54.164.105.120',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 01:32:51','2019-05-12 01:32:51'),(3202,'biology','66.249.64.176',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-12 05:47:32','2019-09-21 02:44:48'),(3203,'mathematics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3204,'commerce','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3205,'biology','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3206,'englishlit','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3207,'economics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3208,'civiledu','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3209,'history','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3210,'chemistry','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3211,'government','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3212,'crk','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3213,'geography','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3214,'civiledu','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3215,'currentaffairs','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3216,'history','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3217,'mathematics','3.81.224.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:05:34','2019-05-12 07:05:34'),(3218,'english','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3219,'mathematics','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:59:25'),(3220,'commerce','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:48'),(3221,'physics','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:27'),(3222,'crk','34.229.209.208',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3223,'irk','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3224,'currentaffairs','34.229.209.208',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3225,'chemistry','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:58:54'),(3226,'government','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:45:06'),(3227,'economics','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:49:05'),(3228,'biology','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:49:05'),(3229,'insurance','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:58:54'),(3230,'accounting','34.229.209.208',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:38','2019-05-12 09:58:38'),(3231,'geography','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:42','2019-05-12 09:58:54'),(3232,'civiledu','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3233,'history','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3234,'currentaffairs','54.80.195.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 10:51:10','2019-05-12 10:51:10'),(3235,'chemistry','46.229.168.131',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 23:53:27','2020-05-04 19:51:47'),(3236,'biology','54.146.12.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 01:52:08','2019-05-13 01:52:08'),(3237,'physics','3.82.108.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 03:15:59','2019-05-13 03:15:59'),(3238,'physics','54.152.180.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 06:31:46','2019-05-13 06:31:46'),(3239,'english','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 07:47:11','2019-05-13 07:47:11'),(3240,'mathematics','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 08:15:22','2019-05-13 08:15:22'),(3241,'commerce','3.84.15.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 09:46:15','2019-05-13 09:46:15'),(3242,'commerce','54.157.233.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 12:58:13','2019-05-13 12:58:13'),(3243,'irk','54.175.238.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 17:30:45','2019-05-13 17:30:45'),(3244,'economics','18.206.157.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 19:50:15','2019-05-13 19:50:15'),(3245,'accounting','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3246,'englishlit','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3247,'government','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3248,'crk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3249,'geography','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3250,'irk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3251,'currentaffairs','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3252,'economics','18.234.203.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:23:50','2019-05-14 09:23:50'),(3253,'physics','66.249.64.180',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-14 11:36:21','2019-08-24 00:09:49'),(3254,'biology','54.221.14.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 17:29:34','2019-05-14 17:29:34'),(3255,'chemistry','46.229.168.162',43,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-15 05:36:54','2020-03-22 22:42:10'),(3256,'crk','3.94.115.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 08:37:16','2019-05-15 08:37:16'),(3257,'english','54.159.102.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 10:04:02','2019-05-15 10:04:02'),(3258,'currentaffairs','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:34:44','2019-05-15 14:34:44'),(3259,'geography','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:57:11','2019-05-15 14:57:11'),(3260,'government','54.224.250.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 18:04:50','2019-05-15 18:04:50'),(3261,'government','3.84.0.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:54:43','2019-05-15 19:54:43'),(3262,'chemistry','77.88.47.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:56:40','2019-05-15 19:56:40'),(3263,'englishlit','3.84.53.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 23:23:15','2019-05-15 23:23:15'),(3264,'crk','107.20.105.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:20:12','2019-05-16 00:20:12'),(3265,'chemistry','34.228.195.54',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:22:33','2019-05-16 03:09:28'),(3266,'chemistry','40.77.167.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:07:33','2019-05-16 11:07:33'),(3267,'englishlit','52.202.251.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:24:33','2019-05-16 11:24:33'),(3268,'chemistry','5.255.250.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-16 21:12:24','2019-08-21 01:57:50'),(3269,'accounting','54.92.151.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 21:37:19','2019-05-16 21:37:19'),(3270,'chemistry','46.229.168.146',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 02:19:29','2020-04-16 08:40:54'),(3271,'chemistry','46.229.168.139',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 17:44:01','2020-05-30 04:55:22'),(3272,'commerce','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3273,'government','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3274,'crk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3275,'irk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3276,'insurance','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3277,'currentaffairs','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3278,'history','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3279,'mathematics','105.112.52.3',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 21:46:44','2019-05-17 21:46:44'),(3280,'chemistry','54.36.148.94',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-18 05:43:40','2020-05-29 00:37:58'),(3281,'chemistry','3.84.208.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 09:11:50','2019-05-18 09:11:50'),(3282,'chemistry','40.77.167.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 16:21:00','2019-05-18 16:21:00'),(3283,'accounting','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:09','2019-05-18 18:40:09'),(3284,'history','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:52','2019-05-18 18:40:52'),(3285,'mathematics','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:39'),(3286,'english','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:50'),(3287,'commerce','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:44'),(3288,'physics','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:42'),(3289,'biology','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3290,'crk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3291,'irk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3292,'currentaffairs','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3293,'economics','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3294,'history','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3295,'accounting','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:37','2019-05-18 19:44:37'),(3296,'englishlit','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:47','2019-05-18 19:44:47'),(3297,'insurance','3.80.150.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 22:44:14','2019-05-18 22:44:14'),(3298,'chemistry','157.55.39.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 04:44:12','2019-05-19 04:44:12'),(3299,'history','3.94.79.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 06:05:58','2019-05-19 06:05:58'),(3300,'chemistry','40.77.167.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 16:57:00','2019-05-19 16:57:00'),(3301,'insurance','54.163.157.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 03:05:04','2019-05-20 03:05:04'),(3302,'chemistry','157.55.39.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 13:59:47','2019-05-20 13:59:47'),(3303,'english','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3304,'mathematics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3305,'biology','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3306,'physics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3307,'crk','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3308,'economics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3309,'insurance','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3310,'english','54.91.198.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 17:32:47','2019-05-21 17:32:47'),(3311,'physics','54.145.4.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 18:22:25','2019-05-21 18:22:25'),(3312,'mathematics','54.234.10.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 02:40:52','2019-05-22 02:40:52'),(3313,'mathematics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3314,'physics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3315,'crk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3316,'geography','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3317,'irk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3318,'civiledu','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3319,'history','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3320,'chemistry','95.216.226.236',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 05:15:03','2019-05-25 05:21:26'),(3321,'government','52.55.44.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 07:55:42','2019-05-23 07:55:42'),(3322,'civiledu','54.208.169.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 10:29:28','2019-05-23 10:29:28'),(3323,'chemistry','139.78.253.195',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:06:11','2019-05-23 23:22:30'),(3324,'chemistry','3.85.143.239',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:44:40','2019-05-23 21:04:27'),(3325,'chemistry','40.77.167.134',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 23:49:56','2019-07-17 20:20:15'),(3326,'chemistry','54.36.149.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 01:52:33','2019-05-24 01:52:33'),(3327,'english','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3328,'biology','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3329,'chemistry','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3330,'englishlit','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3331,'geography','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3332,'economics','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3333,'irk','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3334,'chemistry','173.212.246.232',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 07:36:57','2019-05-24 07:37:03'),(3335,'chemistry','197.210.47.154',119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 16:46:41','2019-05-24 17:36:26'),(3336,'chemistry','185.20.6.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:01:25','2019-05-24 18:01:25'),(3337,'chemistry','197.210.54.59',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:29:11','2019-05-24 18:29:11'),(3338,'chemistry','197.210.55.73',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:36:24','2019-05-24 18:37:10'),(3339,'currentaffairs','197.210.55.73',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:38:00','2019-05-24 18:38:00'),(3340,'chemistry','197.210.227.35',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:20:02','2019-05-25 14:21:17'),(3341,'chemistry','197.210.226.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:21:41','2019-05-25 14:22:30'),(3342,'mathematics','197.210.227.35',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:23:25','2019-05-25 14:25:38'),(3343,'mathematics','197.210.226.250',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:24:57','2019-05-25 14:24:57'),(3344,'chemistry','207.46.13.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-26 03:26:44','2019-08-07 06:55:06'),(3345,'chemistry','54.36.148.190',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 05:37:38','2019-05-28 05:37:38'),(3346,'chemistry','197.253.9.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 10:08:10','2019-05-28 10:08:10'),(3347,'chemistry','105.112.41.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 21:38:58','2019-05-29 21:38:58'),(3348,'chemistry','93.158.161.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 23:17:18','2019-05-29 23:17:18'),(3349,'chemistry','62.210.202.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 07:54:02','2019-05-30 07:54:08'),(3350,'chemistry','197.210.227.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:02','2019-05-30 10:34:02'),(3351,'chemistry','197.210.226.60',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:40','2019-05-30 10:34:40'),(3352,'chemistry','100.43.85.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 19:55:06','2019-05-30 19:55:06'),(3353,'chemistry','207.46.13.20',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-31 10:40:41','2019-09-14 00:58:44'),(3354,'chemistry','141.0.13.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-31 10:57:54','2019-05-31 10:57:54'),(3355,'biology','105.112.46.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-01 12:10:54','2019-06-01 12:19:36'),(3356,'chemistry','157.55.39.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-03 17:51:53','2019-06-03 17:51:53'),(3357,'accounting','209.205.209.34',522,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 19:18:46','2020-05-29 19:55:11'),(3358,'economics','209.205.209.34',1892,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 20:32:30','2020-05-30 17:12:57'),(3359,'chemistry','157.55.39.53',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 21:15:44','2019-10-07 21:10:09'),(3360,'history','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:18:40','2019-06-05 02:18:40'),(3361,'irk','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:42:34','2019-06-05 02:42:34'),(3362,'accounting','54.234.117.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 06:15:30','2019-06-05 06:15:30'),(3363,'accounting','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:14:25','2019-06-05 08:14:25'),(3364,'geography','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:53:33','2019-06-05 08:53:33'),(3365,'accounting','3.84.113.32',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:33','2019-06-05 09:00:49'),(3366,'chemistry','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:39','2019-06-05 09:00:39'),(3367,'insurance','54.146.5.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 11:54:23','2019-06-05 11:54:23'),(3368,'chemistry','105.112.53.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 13:10:39','2019-06-05 13:12:41'),(3369,'chemistry','100.43.85.122',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-05 13:15:48','2020-03-08 10:35:22'),(3370,'chemistry','76.1.76.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 14:34:50','2019-06-05 14:35:18'),(3371,'chemistry','197.210.55.175',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:11:03','2019-06-05 16:12:43'),(3372,'chemistry','197.210.54.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:12:00','2019-06-05 16:12:00'),(3373,'mathematics','197.211.32.242',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 20:45:55','2019-06-05 20:45:56'),(3374,'currentaffairs','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:19:16','2019-06-05 23:19:16'),(3375,'insurance','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:31:01','2019-06-05 23:31:01'),(3376,'englishlit','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:36:02','2019-06-05 23:36:02'),(3377,'chemistry','97.116.149.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-07 14:42:32','2019-06-07 14:42:32'),(3378,'chemistry','207.46.13.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 02:59:43','2019-06-08 02:59:43'),(3379,'mathematics','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3380,'accounting','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3381,'biology','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3382,'chemistry','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3383,'geography','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3384,'civiledu','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3385,'currentaffairs','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3386,'chemistry','54.226.148.240',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:42:27','2019-06-08 11:42:27'),(3387,'biology','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3388,'government','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3389,'crk','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3390,'economics','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3391,'civiledu','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3392,'insurance','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3393,'currentaffairs','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3394,'chemistry','41.217.123.66',142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:01','2019-06-08 15:05:05'),(3395,'english','41.217.123.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:48','2019-06-08 13:21:48'),(3396,'chemistry','197.242.107.128',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:49:30','2019-06-08 15:55:27'),(3397,'english','197.242.107.128',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:56:31','2019-06-08 15:56:36'),(3398,'english','197.242.108.36',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 16:54:19','2019-06-08 16:57:53'),(3399,'physics','197.242.116.150',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:11:54','2019-06-08 20:49:56'),(3400,'english','197.242.116.150',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:31:40','2019-06-08 21:06:14'),(3401,'chemistry','197.242.116.150',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:36:15','2019-06-08 21:06:22'),(3402,'physics','162.213.3.221',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-09 05:09:58','2019-06-09 05:09:58'),(3403,'chemistry','105.112.23.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 09:15:53','2019-06-10 13:05:55'),(3404,'chemistry','197.149.92.146',56,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-10 12:11:23','2020-02-25 16:32:20'),(3405,'chemistry','41.75.207.170',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 12:27:15','2019-06-14 07:43:40'),(3406,'chemistry','207.46.13.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 22:01:38','2019-06-10 22:01:38'),(3407,'chemistry','40.77.167.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 08:14:51','2019-06-11 08:14:51'),(3408,'chemistry','129.56.38.156',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 21:53:28','2019-06-11 21:54:00'),(3409,'irk','34.201.166.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:03:53','2019-06-12 03:03:53'),(3410,'biology','3.94.159.33',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:45:38','2019-06-12 04:28:00'),(3411,'english','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:51:24','2019-06-12 03:51:24'),(3412,'accounting','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:52:12','2019-06-12 03:52:12'),(3413,'crk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:20:40','2019-06-12 04:20:40'),(3414,'geography','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:38:56','2019-06-12 04:38:56'),(3415,'government','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:41:50','2019-06-12 04:41:50'),(3416,'irk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:42:17','2019-06-12 04:42:17'),(3417,'physics','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:51:23','2019-06-12 04:51:23'),(3418,'english','154.118.8.161',198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:36:41','2019-06-12 14:02:53'),(3419,'chemistry','154.118.8.161',91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:39:30','2019-06-12 12:18:14'),(3420,'physics','154.118.8.161',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:40:15','2019-06-12 12:04:32'),(3421,'chemistry','54.83.120.25',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 21:54:54','2019-06-12 22:18:00'),(3422,'chemistry','3.90.108.129',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 22:47:16','2019-06-13 00:16:33'),(3423,'chemistry','46.229.168.142',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-13 04:36:54','2020-02-13 17:27:20'),(3424,'chemistry','41.78.172.115',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 15:09:45','2019-06-14 12:18:50'),(3425,'chemistry','105.112.106.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:18','2019-06-13 18:32:18'),(3426,'english','105.112.106.235',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:48','2019-06-13 18:32:50'),(3427,'english','41.75.207.170',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:42:12','2019-06-14 07:42:12'),(3428,'physics','41.75.207.170',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:43:30','2019-06-14 07:44:40'),(3429,'physics','66.249.83.16',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-14 08:47:03','2019-09-05 01:30:44'),(3430,'chemistry','105.112.33.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 20:32:24','2019-06-14 20:32:24'),(3431,'english','197.242.114.252',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 05:49:46','2019-06-15 06:28:24'),(3432,'chemistry','105.112.45.8',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 08:23:34','2019-06-15 08:24:00'),(3433,'english','41.217.116.6',99,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:13:31','2019-06-15 14:39:43'),(3434,'biology','18.206.190.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:27:51','2019-06-15 12:27:51'),(3435,'chemistry','3.81.65.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 13:16:11','2019-06-15 13:16:11'),(3436,'accounting','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:47','2019-06-15 14:20:47'),(3437,'english','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:58','2019-06-15 14:20:58'),(3438,'chemistry','197.210.52.46',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-15 14:26:37','2020-02-06 08:45:34'),(3439,'chemistry','197.210.53.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:27:22','2019-06-15 14:27:22'),(3440,'currentaffairs','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:46:51','2019-06-15 14:46:51'),(3441,'mathematics','34.239.126.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 15:58:44','2019-06-15 15:58:44'),(3442,'chemistry','197.210.53.178',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:40:54','2019-06-15 21:42:38'),(3443,'chemistry','197.210.52.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:42:12','2019-06-15 21:42:32'),(3444,'chemistry','46.229.168.147',51,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-15 21:50:41','2020-06-11 21:19:10'),(3445,'chemistry','197.210.53.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:20:17','2019-06-15 22:20:17'),(3446,'biology','54.237.246.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:32:27','2019-06-15 22:32:27'),(3447,'biology','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:11:58','2019-06-15 23:11:58'),(3448,'irk','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:27:36','2019-06-15 23:27:36'),(3449,'physics','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 00:17:33','2019-06-16 00:17:33'),(3450,'irk','34.228.23.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 01:44:49'),(3451,'accounting','34.228.23.109',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 02:01:41'),(3452,'chemistry','45.55.21.112',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:27:31','2019-06-16 02:28:29'),(3453,'chemistry','105.14.195.18',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:48:24','2019-06-17 01:41:38'),(3454,'physics','66.249.83.18',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-16 12:16:03','2019-09-15 16:06:04'),(3455,'englishlit','54.164.133.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 17:50:46','2019-06-16 17:50:46'),(3456,'mathematics','54.196.189.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:52'),(3457,'mathematics','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3458,'english','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3459,'englishlit','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:55','2019-06-16 19:48:55'),(3460,'chemistry','206.189.171.227',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 02:00:46','2019-06-17 02:02:05'),(3461,'chemistry','41.190.16.26',6367,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 07:08:02','2019-07-23 11:35:50'),(3462,'mathematics','3.91.71.81',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:35:54','2019-06-17 09:22:24'),(3463,'englishlit','3.91.71.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:37:04','2019-06-17 09:22:24'),(3464,'english','3.91.71.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 09:10:38','2019-06-17 09:10:38'),(3465,'mathematics','107.21.78.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 10:58:09','2019-06-17 10:58:09'),(3466,'currentaffairs','34.238.242.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 13:56:42','2019-06-17 13:56:42'),(3467,'commerce','34.227.190.206',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 21:33:57','2019-06-17 21:33:57'),(3468,'chemistry','66.249.83.16',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-18 02:33:50','2019-11-06 14:40:47'),(3469,'currentaffairs','3.91.183.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 06:29:09','2019-06-18 06:29:09'),(3470,'chemistry','66.249.69.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 07:22:19','2019-06-18 07:22:19'),(3471,'economics','41.190.16.26',4519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:08:32','2019-07-23 11:57:15'),(3472,'commerce','41.190.16.26',5932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:28','2019-07-23 11:33:05'),(3473,'english','41.190.16.26',6405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:29','2019-07-23 11:25:21'),(3474,'chemistry','100.43.90.165',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 06:10:09','2019-06-19 06:10:09'),(3475,'mathematics','41.190.16.26',1164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 10:57:58','2019-07-23 11:30:59'),(3476,'chemistry','129.56.101.165',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 17:58:38','2019-06-19 18:00:41'),(3477,'chemistry','82.145.223.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:25','2019-06-20 01:08:25'),(3478,'chemistry','41.203.78.211',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:32','2019-06-20 01:08:32'),(3479,'accounting','41.190.16.26',2791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 12:19:54','2019-07-23 11:33:51'),(3480,'biology','41.190.16.26',3586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 13:01:43','2019-07-23 11:34:35'),(3481,'biology','66.249.66.208',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-21 06:35:47','2019-10-29 04:39:15'),(3482,'mathematics','34.229.108.180',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-21 23:58:00','2019-06-21 23:58:00'),(3483,'chemistry','157.55.39.173',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-22 05:09:56','2019-06-22 05:09:56'),(3484,'chemistry','100.43.85.201',11,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 16:57:01','2019-12-08 06:55:23'),(3485,'chemistry','5.255.250.164',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 22:01:02','2019-09-08 03:42:02'),(3486,'chemistry','46.229.168.152',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-23 06:10:52','2020-05-29 19:42:11'),(3487,'chemistry','77.88.47.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 13:02:24','2019-06-23 13:02:24'),(3488,'chemistry','207.46.13.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 20:52:25','2019-06-23 20:52:25'),(3489,'physics','41.190.16.26',1049,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 08:37:20','2019-07-23 11:35:12'),(3490,'chemistry','93.158.166.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 11:27:50','2019-06-24 11:27:50'),(3491,'english','3.90.20.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 17:28:04','2019-06-24 17:28:04'),(3492,'irk','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:07:15','2019-06-24 19:07:15'),(3493,'commerce','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:10:29','2019-06-24 19:10:29'),(3494,'geography','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:24:40','2019-06-24 19:24:40'),(3495,'chemistry','207.46.13.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 21:37:18','2019-06-24 21:37:18'),(3496,'biology','52.90.179.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 22:59:08','2019-06-24 22:59:08'),(3497,'economics','3.89.60.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 00:47:23','2019-06-25 00:47:23'),(3498,'mathematics','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 04:00:29','2019-06-25 04:00:29'),(3499,'englishlit','41.190.16.26',1730,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:34','2019-07-23 11:44:00'),(3500,'government','41.190.16.26',1944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:47','2019-07-23 11:47:36'),(3501,'crk','41.190.16.26',2466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:59','2019-07-23 11:48:21'),(3502,'geography','41.190.16.26',1488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:13','2019-07-23 11:57:01'),(3503,'irk','41.190.16.26',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:46','2019-07-23 11:57:27'),(3504,'civiledu','41.190.16.26',960,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:58','2019-07-23 11:57:42'),(3505,'currentaffairs','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:26','2019-07-23 11:58:09'),(3506,'history','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:40','2019-07-23 11:58:22'),(3507,'chemistry','154.120.89.121',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 08:40:28','2019-06-25 08:55:46'),(3508,'chemistry','100.43.91.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 09:22:05','2019-06-25 09:22:05'),(3509,'chemistry','46.229.168.148',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 14:14:29','2019-08-05 06:27:37'),(3510,'chemistry','37.9.87.211',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 07:15:23','2019-06-26 07:15:23'),(3511,'chemistry','154.113.84.24',291,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-26 08:20:23','2019-11-05 14:51:24'),(3512,'biology','154.113.84.24',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:12:21','2019-06-26 14:55:23'),(3513,'english','154.113.84.24',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:13:32','2019-06-26 14:55:25'),(3514,'english','105.112.53.54',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:32:43','2019-06-26 14:23:50'),(3515,'biology','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:47','2019-06-26 14:23:47'),(3516,'physics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:51','2019-06-26 14:23:52'),(3517,'chemistry','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:53','2019-06-26 14:23:53'),(3518,'mathematics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:54','2019-06-26 14:23:54'),(3519,'economics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:56','2019-06-26 14:23:56'),(3520,'physics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:26','2019-06-26 14:55:26'),(3521,'mathematics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:28','2019-06-26 14:55:29'),(3522,'economics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:30','2019-06-26 14:55:30'),(3523,'chemistry','41.217.123.115',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:22','2019-06-26 18:34:34'),(3524,'history','41.217.123.115',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:45','2019-06-26 18:04:21'),(3525,'chemistry','207.46.13.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 18:31:26','2019-06-26 18:31:26'),(3526,'mathematics','197.210.243.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:11:39','2019-06-27 19:11:39'),(3527,'english','197.210.243.239',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:12:15','2019-06-27 19:14:45'),(3528,'economics','197.210.243.239',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:14:54','2019-06-27 19:16:28'),(3529,'chemistry','185.26.180.221',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:56:48','2019-06-27 19:56:48'),(3530,'chemistry','77.88.5.10',4,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 01:59:49','2019-09-18 15:11:44'),(3531,'chemistry','105.112.18.14',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:46','2019-06-28 03:11:47'),(3532,'biology','105.112.18.14',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:52','2019-06-28 03:13:33'),(3533,'chemistry','40.77.167.115',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 03:52:03','2020-03-19 20:45:55'),(3534,'economics','197.210.58.211',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 04:41:14','2019-06-28 04:44:00'),(3535,'chemistry','54.36.150.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 16:41:57','2019-06-28 16:41:57'),(3536,'chemistry','54.36.150.166',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 19:07:14','2019-06-28 19:07:14'),(3537,'history','154.120.95.55',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 22:43:11','2019-06-28 22:43:11'),(3538,'chemistry','66.249.64.176',131,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 23:46:36','2019-09-30 03:33:36'),(3539,'chemistry','107.3.154.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 02:57:34','2019-06-30 05:13:41'),(3540,'chemistry','40.77.167.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 05:06:27','2019-06-29 05:06:27'),(3541,'civiledu','52.207.228.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 07:20:25','2019-06-29 07:20:25'),(3542,'englishlit','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:09:53','2019-06-29 08:09:53'),(3543,'crk','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:11:50','2019-06-29 08:11:50'),(3544,'government','34.235.169.213',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:16:14','2019-06-29 16:16:14'),(3545,'insurance','54.146.66.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:57:38','2019-06-29 16:57:38'),(3546,'physics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:19:06','2019-06-29 18:19:06'),(3547,'mathematics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:23:50','2019-06-29 18:23:50'),(3548,'insurance','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:30:42','2019-06-29 18:30:42'),(3549,'crk','54.227.42.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 19:50:41','2019-06-29 19:50:41'),(3550,'government','3.82.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 20:28:23','2019-06-29 20:28:23'),(3551,'english','52.91.23.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 03:47:35','2019-06-30 03:47:35'),(3552,'mathematics','107.3.154.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 05:14:08','2019-06-30 05:14:08'),(3553,'chemistry','37.9.87.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 17:29:41','2019-06-30 17:29:41'),(3554,'chemistry','154.118.47.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 07:13:55','2019-07-01 07:14:33'),(3555,'chemistry','46.229.168.135',87,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 09:26:34','2020-01-31 22:31:52'),(3556,'english','209.205.209.34',8089,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 19:21:38','2020-05-30 17:19:39'),(3557,'chemistry','197.211.53.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 21:31:20','2019-07-01 21:31:40'),(3558,'chemistry','157.55.39.182',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 05:23:02','2019-07-02 05:23:02'),(3559,'chemistry','93.158.161.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 15:43:59','2019-07-02 15:43:59'),(3560,'history','209.205.209.34',650,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:22:26','2020-05-30 18:38:30'),(3561,'physics','209.205.209.34',1763,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:36:44','2020-05-30 15:29:21'),(3562,'chemistry','129.56.51.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 18:42:17','2019-07-02 18:42:17'),(3563,'chemistry','197.210.28.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:11:10','2019-07-02 20:11:22'),(3564,'geography','197.210.28.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:17:11','2019-07-02 20:17:11'),(3565,'biology','54.147.7.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 22:46:21','2019-07-02 22:46:21'),(3566,'biology','209.205.209.34',5018,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-03 05:37:07','2020-05-30 18:25:53'),(3567,'chemistry','64.233.172.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:09:13','2019-07-03 19:09:14'),(3568,'history','3.95.227.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:48:54','2019-07-03 19:48:54'),(3569,'chemistry','37.9.87.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 08:05:14','2019-07-04 08:05:14'),(3570,'geography','3.95.241.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 16:23:04','2019-07-04 16:23:04'),(3571,'chemistry','105.112.48.115',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 19:52:32','2019-07-04 20:12:07'),(3572,'mathematics','105.112.48.115',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:07:51','2019-07-04 20:13:22'),(3573,'physics','105.112.48.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:12:30','2019-07-04 20:12:30'),(3574,'chemistry','91.242.162.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:05:11','2019-07-06 06:05:11'),(3575,'history','18.232.141.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:40:14','2019-07-06 06:40:14'),(3576,'chemistry','154.118.37.114',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:14:49','2019-07-06 18:14:49'),(3577,'chemistry','91.242.162.3',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:41:15','2019-07-06 19:28:38'),(3578,'chemistry','91.242.162.36',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 09:39:14','2019-07-07 09:39:14'),(3579,'chemistry','197.210.65.91',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 17:22:08','2019-07-07 17:22:57'),(3580,'chemistry','141.8.143.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 19:45:26','2019-07-07 19:45:26'),(3581,'chemistry','91.242.162.25',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-07 19:49:57','2019-09-10 11:10:42'),(3582,'mathematics','129.205.113.212',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:16'),(3583,'chemistry','129.205.113.212',33,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:27'),(3584,'accounting','129.205.113.212',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:04'),(3585,'economics','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:43'),(3586,'government','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:32:17'),(3587,'commerce','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3588,'geography','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3589,'crk','129.205.113.212',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:11'),(3590,'currentaffairs','129.205.113.212',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:01','2019-07-07 22:32:40'),(3591,'englishlit','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:23','2019-07-07 22:27:11'),(3592,'physics','129.205.113.212',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:26','2019-07-07 22:32:46'),(3593,'history','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:32:41'),(3594,'irk','129.205.113.212',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3595,'civiledu','129.205.113.212',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3596,'biology','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:56','2019-07-07 22:33:24'),(3597,'insurance','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:23:58','2019-07-07 22:32:21'),(3598,'english','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:25:57','2019-07-07 22:33:06'),(3599,'chemistry','198.144.145.220',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:29:31','2019-07-07 21:29:54'),(3600,'chemistry','41.203.78.249',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 09:28:28','2019-07-08 09:31:26'),(3601,'physics','66.249.88.36',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 10:04:41','2019-07-08 10:04:42'),(3602,'mathematics','197.210.8.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 11:09:57','2019-07-08 11:09:57'),(3603,'chemistry','169.239.188.48',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-08 11:26:53','2019-08-27 13:36:26'),(3604,'english','3.85.90.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 15:56:12','2019-07-08 15:56:12'),(3605,'chemistry','105.112.66.91',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:33:56','2019-07-08 21:35:52'),(3606,'english','105.112.66.91',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:53:51','2019-07-08 21:53:51'),(3607,'commerce','209.205.209.34',1403,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:05:44'),(3608,'chemistry','209.205.209.34',3228,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:38:59'),(3609,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3610,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3611,'english','41.78.172.115',90,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 07:23:35','2019-11-27 13:09:02'),(3612,'englishlit','41.78.172.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:24:07','2019-07-09 07:24:33'),(3613,'government','41.78.172.115',105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:25:34','2019-07-16 07:09:26'),(3614,'chemistry','129.56.37.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:43:13','2019-07-09 07:43:14'),(3615,'mathematics','209.205.209.34',2378,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 08:37:56','2020-05-30 17:58:26'),(3616,'chemistry','192.151.145.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 12:04:16','2019-07-09 12:04:31'),(3617,'physics','105.112.74.109',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:45:55','2019-07-09 21:20:51'),(3618,'government','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:53:35','2019-07-09 20:53:35'),(3619,'englishlit','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:55:52','2019-07-09 20:55:52'),(3620,'english','105.112.74.109',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:56:28','2019-07-09 21:24:57'),(3621,'mathematics','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 21:10:35','2019-07-09 21:10:35'),(3622,'chemistry','91.242.162.49',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 22:37:01','2019-07-09 23:20:10'),(3623,'physics','66.249.64.29',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 02:22:25','2019-07-10 02:22:25'),(3624,'mathematics','41.78.172.115',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 08:51:07','2019-07-15 16:59:28'),(3625,'chemistry','129.56.36.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 10:15:55','2019-07-10 10:16:28'),(3626,'chemistry','91.242.162.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 18:09:11','2019-07-10 18:09:11'),(3627,'chemistry','154.160.30.70',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 19:00:58','2019-07-10 19:01:06'),(3628,'chemistry','129.205.112.207',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 23:16:02','2019-07-10 23:16:41'),(3629,'english','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3630,'mathematics','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3631,'commerce','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3632,'chemistry','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3633,'irk','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3634,'civiledu','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3635,'history','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3636,'chemistry','41.203.78.28',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:47:47','2019-07-11 11:21:52'),(3637,'english','41.203.78.28',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 11:35:10','2019-07-11 11:35:10'),(3638,'chemistry','157.55.39.101',14,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 17:52:52','2020-01-09 17:51:46'),(3639,'chemistry','66.249.88.68',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3640,'chemistry','66.249.88.65',76,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3641,'chemistry','82.145.223.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:34','2019-07-12 01:28:34'),(3642,'chemistry','129.205.112.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:40','2019-07-12 01:28:40'),(3643,'chemistry','54.162.122.174',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 08:18:20','2019-07-12 10:00:37'),(3644,'chemistry','40.77.167.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 11:56:19','2019-07-12 11:56:19'),(3645,'physics','66.102.6.44',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 18:47:05','2019-07-12 18:47:05'),(3646,'chemistry','105.112.40.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 14:34:42','2019-07-13 14:34:42'),(3647,'english','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:22:10','2019-07-13 15:22:10'),(3648,'englishlit','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:28:12','2019-07-13 15:28:12'),(3649,'currentaffairs','105.112.23.162',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 19:42:12','2019-07-13 19:42:12'),(3650,'chemistry','197.210.47.253',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 23:32:27','2019-07-13 23:32:37'),(3651,'chemistry','197.210.226.221',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-14 08:42:39','2019-07-14 08:42:39'),(3652,'chemistry','41.58.163.166',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 03:36:09','2019-07-15 03:38:30'),(3653,'chemistry','197.210.45.131',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:01:08','2019-07-15 11:02:28'),(3654,'chemistry','207.46.13.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:30:08','2019-07-15 11:30:08'),(3655,'chemistry','105.112.121.65',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 01:47:52','2019-07-16 01:54:58'),(3656,'geography','209.205.209.34',1148,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-16 04:33:29','2020-05-30 17:26:43'),(3657,'chemistry','157.55.39.75',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 22:12:07','2019-07-16 22:12:07'),(3658,'chemistry','41.223.213.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 00:56:58','2019-07-17 01:11:43'),(3659,'english','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:53:17','2019-07-17 05:53:18'),(3660,'mathematics','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:55:34','2019-07-17 05:55:34'),(3661,'government','209.205.209.34',2686,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:52:58','2020-05-30 18:38:59'),(3662,'crk','209.205.209.34',3361,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:54:29','2020-05-30 12:48:20'),(3663,'chemistry','197.242.111.36',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 08:00:14','2019-07-17 08:08:20'),(3664,'chemistry','41.203.78.33',425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 09:54:12','2019-07-17 11:26:32'),(3665,'chemistry','69.171.251.8',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:55','2019-07-17 10:23:56'),(3666,'chemistry','69.171.251.23',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3667,'chemistry','69.171.251.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3668,'englishlit','209.205.209.34',1090,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 12:39:36','2020-05-30 15:26:43'),(3669,'irk','209.205.209.34',1003,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 17:02:18','2020-05-30 18:50:40'),(3670,'chemistry','41.223.215.235',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:10:02','2019-07-17 17:11:19'),(3671,'chemistry','41.223.213.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:16:10','2019-07-17 17:16:10'),(3672,'chemistry','35.153.135.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 00:14:01','2019-07-18 00:14:01'),(3673,'chemistry','154.118.46.101',392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 03:48:26','2019-07-18 05:29:47'),(3674,'chemistry','5.255.250.162',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-18 06:37:25','2019-09-08 14:04:58'),(3675,'chemistry','154.118.61.127',1190,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 08:56:03','2019-07-18 09:20:17'),(3676,'irk','34.238.242.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:04:13','2019-07-18 09:04:13'),(3677,'english','154.118.61.127',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:09','2019-07-18 09:18:21'),(3678,'commerce','154.118.61.127',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:43','2019-07-18 09:19:05'),(3679,'accounting','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:11','2019-07-18 09:29:34'),(3680,'biology','154.118.61.127',378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:25','2019-07-18 09:19:44'),(3681,'englishlit','154.118.61.127',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:33','2019-07-18 09:30:44'),(3682,'government','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:49','2019-07-18 09:31:01'),(3683,'crk','154.118.61.127',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:17','2019-07-18 09:31:18'),(3684,'economics','154.118.61.127',584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:55','2019-07-18 09:31:56'),(3685,'civiledu','154.118.61.127',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:27:48','2019-07-18 09:27:51'),(3686,'mathematics','154.118.61.127',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:28:55','2019-07-18 09:29:06'),(3687,'physics','154.118.61.127',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:29:57','2019-07-18 09:30:06'),(3688,'geography','154.118.61.127',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:31:27','2019-07-18 09:31:38'),(3689,'chemistry','178.255.215.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 18:42:41','2019-07-18 18:42:41'),(3690,'chemistry','157.55.39.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 22:58:37','2019-07-19 04:22:47'),(3691,'chemistry','154.118.59.83',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 05:44:42','2019-07-19 06:04:52'),(3692,'chemistry','41.203.78.52',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 16:01:50','2019-07-19 16:28:25'),(3693,'chemistry','197.242.102.82',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:28:00','2019-07-20 04:29:38'),(3694,'english','197.242.102.82',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:31:50','2019-07-20 11:59:47'),(3695,'mathematics','197.242.102.82',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:48:08','2019-07-20 04:48:08'),(3696,'chemistry','40.77.167.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 06:20:29','2019-07-20 06:20:29'),(3697,'biology','197.242.102.82',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:04:42','2019-07-20 11:58:12'),(3698,'physics','152.9.196.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:47:30','2019-07-20 11:47:30'),(3699,'mathematics','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:14','2019-07-20 14:11:14'),(3700,'chemistry','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:27','2019-07-20 14:11:27'),(3701,'chemistry','207.46.13.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 21:45:31','2019-07-20 21:45:31'),(3702,'english','41.217.118.129',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 05:37:39','2019-07-21 05:37:39'),(3703,'chemistry','41.203.78.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 15:30:53','2019-07-21 15:32:05'),(3704,'chemistry','157.55.39.239',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-22 03:02:39','2020-03-31 17:07:02'),(3705,'biology','54.91.22.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 06:50:06','2019-07-22 06:50:06'),(3706,'chemistry','93.80.129.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 07:59:39','2019-07-22 07:59:39'),(3707,'mathematics','3.84.79.213',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 08:19:57','2019-07-22 08:19:58'),(3708,'chemistry','207.46.13.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 06:32:43','2019-07-23 06:32:43'),(3709,'chemistry','154.118.66.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 07:11:56','2019-07-23 07:11:56'),(3710,'chemistry','54.36.150.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 12:38:55','2019-07-23 12:38:56'),(3711,'english','154.118.66.199',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:20:16','2019-07-23 19:20:16'),(3712,'chemistry','197.210.57.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:36:14','2019-07-23 19:45:25'),(3713,'chemistry','197.210.57.16',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:38:03','2019-07-23 19:46:41'),(3714,'chemistry','197.211.57.133',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 20:29:13','2019-07-23 20:30:01'),(3715,'chemistry','54.36.150.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 00:15:09','2019-07-24 00:15:09'),(3716,'chemistry','207.46.13.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 01:42:30','2019-07-24 01:42:30'),(3717,'english','154.120.114.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 03:35:04','2019-07-24 03:35:04'),(3718,'englishlit','41.80.181.76',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 06:15:35','2019-07-25 05:43:43'),(3719,'chemistry','54.172.234.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 08:19:54','2019-07-24 08:49:47'),(3720,'chemistry','40.77.167.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 16:39:03','2019-07-25 16:39:03'),(3721,'chemistry','40.77.167.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 23:17:21','2019-07-25 23:17:21'),(3722,'insurance','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:14','2019-07-26 05:17:07'),(3723,'accounting','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:44','2019-07-26 05:17:08'),(3724,'englishlit','41.203.78.111',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:14','2019-07-26 05:17:17'),(3725,'government','41.203.78.111',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:58','2019-07-26 05:17:11'),(3726,'currentaffairs','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:26','2019-07-26 05:17:13'),(3727,'economics','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:27','2019-07-26 05:17:14'),(3728,'geography','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:29','2019-07-26 05:17:16'),(3729,'english','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:36','2019-07-26 05:17:19'),(3730,'chemistry','66.249.64.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 15:13:58','2019-07-26 15:13:58'),(3731,'chemistry','207.46.13.115',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-27 00:45:02','2020-01-23 09:22:32'),(3732,'chemistry','157.55.39.89',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 07:32:50','2019-07-27 07:32:50'),(3733,'chemistry','46.229.168.137',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-27 09:18:32','2020-05-27 04:54:03'),(3734,'mathematics','3.85.206.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 10:07:21','2019-07-27 10:09:00'),(3735,'english','154.118.28.124',72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 12:49:22','2019-07-28 06:55:02'),(3736,'chemistry','40.77.167.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 15:09:18','2019-07-28 15:09:18'),(3737,'chemistry','201.186.162.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 17:45:36','2019-07-28 17:45:37'),(3738,'chemistry','80.248.10.224',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:34:33','2019-07-29 00:37:02'),(3739,'physics','80.248.10.224',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:35:39','2019-07-29 00:35:39'),(3740,'biology','154.118.28.124',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 09:57:14','2019-07-29 09:57:14'),(3741,'english','41.203.78.138',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 16:14:46','2019-07-29 16:14:46'),(3742,'chemistry','54.36.149.43',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-29 16:22:54','2020-05-29 00:45:16'),(3743,'insurance','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:39','2019-07-30 02:31:46'),(3744,'accounting','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:43','2019-07-30 02:31:31'),(3745,'englishlit','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:46','2019-07-30 02:31:23'),(3746,'government','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:49','2019-07-30 02:31:29'),(3747,'currentaffairs','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:51','2019-07-30 02:31:19'),(3748,'economics','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:53','2019-07-30 02:31:42'),(3749,'geography','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:56','2019-07-30 02:31:40'),(3750,'english','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:01','2019-07-30 02:31:25'),(3751,'mathematics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:04','2019-07-30 02:31:26'),(3752,'commerce','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:06','2019-07-30 02:31:28'),(3753,'biology','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:19','2019-07-30 02:31:32'),(3754,'physics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:22','2019-07-30 02:31:34'),(3755,'chemistry','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:24','2019-07-30 02:31:35'),(3756,'crk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:28','2019-07-30 02:31:37'),(3757,'history','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:30','2019-07-30 02:31:38'),(3758,'irk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:49','2019-07-30 02:31:43'),(3759,'civiledu','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:52','2019-07-30 02:31:44'),(3760,'insurance','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:01','2019-07-30 03:25:41'),(3761,'accounting','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3762,'englishlit','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:33'),(3763,'government','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3764,'currentaffairs','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:30'),(3765,'economics','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:39'),(3766,'geography','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:04','2019-07-30 03:25:39'),(3767,'english','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:05','2019-07-30 03:25:33'),(3768,'mathematics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3769,'commerce','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3770,'biology','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3771,'physics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3772,'chemistry','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:37'),(3773,'crk','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:38'),(3774,'history','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:10','2019-07-30 03:25:38'),(3775,'irk','198.23.156.170',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:11','2019-07-30 03:25:40'),(3776,'civiledu','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:12','2019-07-30 03:25:40'),(3777,'chemistry','54.36.148.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 12:20:11','2019-07-30 12:20:11'),(3778,'history','34.229.51.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 14:05:01','2019-07-30 14:05:01'),(3779,'english','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3780,'commerce','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3781,'chemistry','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3782,'englishlit','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3783,'government','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3784,'crk','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3785,'insurance','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3786,'chemistry','93.158.161.52',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 13:53:11','2019-07-31 13:53:11'),(3787,'chemistry','95.70.149.106',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 17:40:54','2019-07-31 17:40:58'),(3788,'chemistry','197.210.52.110',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-31 23:43:35','2020-05-25 11:22:19'),(3789,'physics','197.210.52.34',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 23:44:25','2019-07-31 23:44:25'),(3790,'chemistry','129.205.113.242',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 11:01:44','2019-08-01 11:38:22'),(3791,'chemistry','46.229.168.136',5,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-01 13:52:01','2020-03-24 23:22:11'),(3792,'chemistry','207.46.13.109',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 15:09:54','2019-08-01 15:09:54'),(3793,'chemistry','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:06:12','2019-08-01 17:06:12'),(3794,'english','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:07:32','2019-08-01 17:07:32'),(3795,'crk','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:17:03','2019-08-01 17:17:04'),(3796,'mathematics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3797,'accounting','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3798,'physics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3799,'chemistry','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3800,'englishlit','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3801,'crk','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3802,'currentaffairs','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3803,'chemistry','85.104.168.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 06:18:15','2019-08-02 06:18:15'),(3804,'chemistry','102.67.6.4',86,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-02 11:56:48','2020-02-06 09:19:26'),(3805,'chemistry','41.203.78.141',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 17:46:29','2019-08-02 17:50:14'),(3806,'physics','141.0.13.86',225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 19:55:06','2019-08-02 20:20:39'),(3807,'chemistry','54.89.107.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 12:30:12','2019-08-03 12:30:12'),(3808,'chemistry','40.77.167.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 14:46:31','2019-08-03 14:46:31'),(3809,'chemistry','197.210.62.39',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 15:09:21','2019-08-03 15:11:54'),(3810,'chemistry','41.190.3.29',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:05:32','2019-08-03 20:06:34'),(3811,'chemistry','157.55.39.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:11:00','2019-08-03 20:11:00'),(3812,'chemistry','105.112.112.6',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 00:43:46','2019-08-04 00:43:46'),(3813,'chemistry','41.190.31.100',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 14:53:51','2019-08-04 14:54:18'),(3814,'chemistry','129.18.141.135',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:26:00','2019-08-04 21:27:04'),(3815,'chemistry','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:29:51','2019-08-04 21:29:51'),(3816,'chemistry','24.59.53.207',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:30:40','2019-08-04 21:31:48'),(3817,'chemistry','73.251.19.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:32:47','2019-08-05 19:48:27'),(3818,'chemistry','54.36.150.27',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 04:34:37','2020-04-20 23:49:30'),(3819,'englishlit','105.112.16.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:00:40','2019-08-05 08:00:40'),(3820,'chemistry','41.215.245.118',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:34:13','2019-08-05 21:13:05'),(3821,'mathematics','41.215.245.118',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:03:37','2019-08-05 21:14:43'),(3822,'chemistry','54.36.150.94',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:51:17','2019-08-05 09:51:17'),(3823,'chemistry','108.5.104.122',121,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 11:40:26','2019-08-10 00:14:27'),(3824,'chemistry','172.58.231.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 11:41:16','2019-08-05 11:41:16'),(3825,'chemistry','105.112.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 16:00:47','2019-08-05 16:00:47'),(3826,'mathematics','3.208.18.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 18:34:25','2019-08-05 18:34:25'),(3827,'chemistry','51.75.58.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-06 06:04:58','2019-08-06 06:04:58'),(3828,'english','105.112.46.183',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 17:24:18','2019-08-06 20:33:07'),(3829,'chemistry','157.55.39.189',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 20:45:44','2019-08-29 20:50:04'),(3830,'chemistry','154.120.111.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:02:33','2019-08-06 21:02:33'),(3831,'chemistry','41.184.168.168',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:47:59','2019-08-07 07:40:56'),(3832,'chemistry','76.169.69.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:59:50','2019-08-06 22:00:41'),(3833,'chemistry','197.210.28.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 22:09:16','2019-08-06 22:09:16'),(3834,'chemistry','197.242.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:24:27','2019-08-07 05:24:27'),(3835,'chemistry','54.162.105.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:45:21','2019-08-07 05:45:21'),(3836,'chemistry','105.112.99.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:37:02','2019-08-07 07:37:02'),(3837,'chemistry','197.255.3.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:53:01','2019-08-07 07:53:01'),(3838,'chemistry','105.112.66.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:07:50','2019-08-07 08:07:50'),(3839,'chemistry','197.210.10.11',99,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:28:59','2019-08-07 08:32:24'),(3840,'mathematics','197.210.10.11',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:32:47','2019-08-07 08:32:50'),(3841,'chemistry','102.67.3.4',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:36:49','2019-08-07 08:58:38'),(3842,'chemistry','41.164.52.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:03:24','2019-08-07 10:03:24'),(3843,'chemistry','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:05:52','2019-08-07 10:05:52'),(3844,'mathematics','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:06:42','2019-08-07 10:06:42'),(3845,'chemistry','197.149.90.214',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:24:50','2019-08-07 10:26:08'),(3846,'chemistry','41.203.73.88',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:39:15','2019-08-07 11:39:55'),(3847,'physics','209.136.56.4',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:54:06','2019-08-12 23:34:33'),(3848,'chemistry','197.242.98.242',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:04:40','2019-08-07 12:08:12'),(3849,'chemistry','66.249.83.192',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:30:34','2020-01-09 11:42:25'),(3850,'chemistry','41.58.96.12',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 14:11:55','2019-08-07 14:12:42'),(3851,'chemistry','197.210.65.148',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 18:36:06','2019-08-07 18:36:06'),(3852,'economics','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:15','2019-08-08 06:27:15'),(3853,'commerce','197.210.226.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:24','2019-08-08 06:27:24'),(3854,'commerce','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:29:02','2019-08-08 06:29:02'),(3855,'chemistry','196.6.204.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 08:52:03','2019-08-08 08:52:36'),(3856,'chemistry','105.112.112.43',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 13:28:20','2019-08-08 13:28:58'),(3857,'chemistry','197.210.45.222',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 23:36:48','2019-08-08 23:37:30'),(3858,'chemistry','207.46.13.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 05:43:38','2019-08-09 05:43:38'),(3859,'chemistry','197.210.44.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 08:23:41','2019-08-09 08:23:41'),(3860,'chemistry','107.167.108.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 13:55:03','2019-08-09 13:55:03'),(3861,'chemistry','141.0.12.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:36:14','2019-08-09 14:40:11'),(3862,'english','141.0.12.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:40:26','2019-08-09 14:40:26'),(3863,'chemistry','154.113.86.202',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 15:44:28','2019-08-09 15:45:32'),(3864,'english','54.196.180.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 19:46:19','2019-08-09 19:46:19'),(3865,'chemistry','41.190.31.199',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:16:32','2019-08-09 22:00:42'),(3866,'mathematics','41.190.31.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:19:49','2019-08-09 21:19:49'),(3867,'crk','41.190.31.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:38:51','2019-08-09 21:38:54'),(3868,'chemistry','129.205.113.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 05:01:10','2019-08-10 05:01:50'),(3869,'chemistry','41.217.117.119',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 06:33:30','2019-08-10 06:33:30'),(3870,'currentaffairs','54.85.115.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 10:57:06','2019-08-10 10:57:06'),(3871,'history','18.206.174.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 13:08:50','2019-08-10 13:08:50'),(3872,'chemistry','100.43.81.123',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 14:14:16','2019-08-10 14:14:17'),(3873,'english','184.72.210.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 04:30:40','2019-08-11 04:30:40'),(3874,'chemistry','66.249.88.116',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:14:03','2019-08-11 14:14:03'),(3875,'chemistry','157.55.39.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:28:36','2019-08-11 14:28:36'),(3876,'insurance','3.88.255.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 17:15:20','2019-08-11 17:15:20'),(3877,'english','197.242.117.204',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 21:39:05','2019-08-11 21:40:36'),(3878,'chemistry','207.46.13.52',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 04:20:20','2019-08-12 04:20:20'),(3879,'economics','34.227.176.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 20:07:33','2019-08-12 20:07:33'),(3880,'chemistry','105.112.16.68',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 08:45:00','2019-08-13 08:45:03'),(3881,'chemistry','46.229.168.141',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 22:26:44','2019-09-04 10:48:38'),(3882,'chemistry','34.204.200.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:43:45','2019-08-14 03:43:46'),(3883,'chemistry','18.205.192.78',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:52:28','2019-08-14 04:56:47'),(3884,'biology','54.162.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 12:09:34','2019-08-14 12:09:34'),(3885,'chemistry','154.120.99.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 15:57:20','2019-08-14 16:01:54'),(3886,'chemistry','105.112.98.5',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 00:49:21','2019-08-15 01:14:50'),(3887,'chemistry','197.210.61.7',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 15:41:08','2019-08-15 15:41:09'),(3888,'mathematics','41.203.78.198',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:01:08','2019-08-16 05:59:18'),(3889,'chemistry','207.46.13.149',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:44:55','2019-08-15 18:44:58'),(3890,'chemistry','207.46.13.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 19:29:33','2019-08-15 19:29:33'),(3891,'physics','41.203.78.198',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 06:16:07','2019-08-16 06:17:30'),(3892,'commerce','154.118.43.180',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 11:29:52','2019-08-16 11:29:52'),(3893,'accounting','54.198.77.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 15:23:17','2019-08-16 15:23:17'),(3894,'mathematics','197.242.99.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:04:35','2019-08-17 03:06:16'),(3895,'english','197.242.99.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:06:56','2019-08-17 03:06:56'),(3896,'chemistry','207.46.13.1',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 14:03:29','2019-08-17 14:03:30'),(3897,'crk','105.112.42.138',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 16:15:38','2019-08-17 16:15:41'),(3898,'chemistry','129.205.112.252',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:23:17','2019-08-17 22:29:43'),(3899,'english','129.205.112.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:27:47','2019-08-17 22:27:47'),(3900,'chemistry','197.242.101.185',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 13:44:15','2019-08-18 13:45:05'),(3901,'chemistry','18.232.124.77',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 14:54:17','2019-08-18 15:09:41'),(3902,'english','82.145.222.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:13:30','2019-08-18 20:13:30'),(3903,'physics','82.145.222.187',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:29','2019-08-18 20:14:41'),(3904,'biology','82.145.222.187',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:57','2019-08-18 20:18:29'),(3905,'chemistry','82.145.222.187',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:17:25','2019-08-18 20:20:03'),(3906,'chemistry','157.55.39.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 08:32:02','2019-08-19 08:32:02'),(3907,'chemistry','154.118.15.197',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 11:05:07','2019-08-19 11:07:21'),(3908,'chemistry','154.118.25.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 13:15:15','2019-08-19 13:15:15'),(3909,'chemistry','35.242.171.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 15:59:15','2019-08-19 15:59:20'),(3910,'chemistry','40.77.167.133',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 20:09:27','2019-08-19 20:09:27'),(3911,'chemistry','154.118.17.37',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 07:44:43','2019-08-20 07:44:57'),(3912,'chemistry','154.113.84.131',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 08:32:47','2019-08-20 08:33:28'),(3913,'mathematics','197.210.29.72',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 10:20:40','2019-08-20 10:21:02'),(3914,'chemistry','154.113.84.148',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 15:22:38','2019-08-20 15:24:56'),(3915,'chemistry','169.159.87.27',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 21:11:10','2019-08-20 21:11:12'),(3916,'physics','66.249.88.71',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-21 12:32:59','2019-08-21 12:33:01'),(3917,'englishlit','3.81.145.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 08:13:22','2019-08-22 08:13:22'),(3918,'chemistry','105.112.39.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 13:11:13','2019-08-22 13:14:10'),(3919,'biology','129.205.112.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:29:46','2019-08-22 14:29:46'),(3920,'mathematics','129.205.112.93',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:30:42','2019-08-22 14:32:55'),(3921,'english','129.205.112.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:36:50','2019-08-22 14:36:53'),(3922,'chemistry','41.184.168.107',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:19:24','2019-09-06 17:21:30'),(3923,'chemistry','41.58.210.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:22:34','2019-08-22 19:22:34'),(3924,'accounting','34.227.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:52:08','2019-08-22 19:52:08'),(3925,'chemistry','157.55.39.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 21:25:26','2019-08-22 21:25:26'),(3926,'chemistry','129.205.112.83',485,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 10:26:23','2019-08-23 10:47:40'),(3927,'english','197.242.102.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 14:25:28','2019-08-23 14:25:28'),(3928,'chemistry','207.46.13.154',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:07:03','2019-11-18 02:00:21'),(3929,'english','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:19','2019-08-23 20:31:22'),(3930,'geography','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:51','2019-08-23 20:31:54'),(3931,'physics','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:33:18','2019-08-23 20:33:21'),(3932,'government','129.205.112.109',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:34:13','2019-08-23 20:35:30'),(3933,'chemistry','129.205.112.109',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:37:45','2019-08-23 20:40:50'),(3934,'chemistry','40.77.167.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 09:58:33','2019-08-24 09:58:33'),(3935,'biology','197.210.62.41',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 10:11:54','2019-08-24 10:11:56'),(3936,'english','3.92.165.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 02:48:10','2019-08-26 02:48:10'),(3937,'chemistry','129.205.112.98',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 14:07:19','2019-08-27 09:07:12'),(3938,'englishlit','41.80.80.75',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:38:33','2019-08-26 16:38:36'),(3939,'mathematics','129.205.112.98',368,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:54:38','2019-08-27 18:32:30'),(3940,'physics','197.210.64.64',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 05:43:46','2019-08-27 05:43:48'),(3941,'chemistry','66.102.8.114',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 12:39:36','2019-08-27 12:39:38'),(3942,'chemistry','169.239.188.14',185,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 13:39:29','2019-08-27 13:43:17'),(3943,'mathematics','107.22.87.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:02:33','2019-08-28 05:02:33'),(3944,'chemistry','129.205.112.99',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:04:37','2019-08-28 12:15:39'),(3945,'chemistry','3.87.39.253',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 06:57:54','2019-08-28 06:57:55'),(3946,'physics','41.203.78.236',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 10:23:20','2019-08-29 07:46:26'),(3947,'english','129.205.112.99',15637,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 11:37:09','2019-09-01 08:17:00'),(3948,'mathematics','129.205.112.99',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:19:14','2019-09-01 05:59:18'),(3949,'commerce','129.205.112.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:22:31','2019-08-28 12:22:34'),(3950,'chemistry','207.46.13.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-29 11:21:14','2019-08-29 11:21:14'),(3951,'chemistry','40.77.167.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-30 05:57:46','2019-08-30 05:57:46'),(3952,'chemistry','66.249.83.64',25,'',NULL,'',NULL,NULL,NULL,'','','2019-08-30 11:25:31','2019-08-30 11:25:32'),(3953,'chemistry','157.55.39.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-31 02:12:18','2019-08-31 02:12:18'),(3954,'chemistry','197.210.8.81',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 08:57:11','2019-08-31 08:59:21'),(3955,'mathematics','18.212.178.244',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 09:18:17','2019-08-31 09:18:17'),(3956,'chemistry','197.255.172.32',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 11:43:45','2019-08-31 11:43:45'),(3957,'accounting','129.205.112.99',5,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 16:55:58','2019-08-31 16:55:59'),(3958,'biology','129.205.112.99',45,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 16:56:17','2019-08-31 17:39:24'),(3959,'chemistry','105.112.46.156',8,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 17:20:01','2019-08-31 17:20:21'),(3960,'chemistry','41.190.3.191',48,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 19:13:59','2019-08-31 19:17:54'),(3961,'chemistry','35.192.166.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-01 13:20:44','2019-09-01 13:20:44'),(3962,'chemistry','154.66.37.174',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 06:43:23','2019-09-02 06:43:56'),(3963,'chemistry','197.253.59.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 07:37:32','2019-09-02 07:37:32'),(3964,'english','105.112.66.6',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 11:05:53','2019-09-02 11:05:53'),(3965,'chemistry','105.112.75.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 15:41:26','2019-09-02 15:41:56'),(3966,'chemistry','54.36.150.178',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 02:18:15','2019-09-03 02:18:18'),(3967,'physics','197.210.28.217',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 05:11:07','2019-09-03 05:11:09'),(3968,'mathematics','3.88.69.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 11:24:03','2019-09-03 11:24:03'),(3969,'chemistry','197.210.226.232',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:32','2019-09-03 13:34:57'),(3970,'chemistry','197.210.227.69',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:56','2019-09-03 13:27:38'),(3971,'chemistry','197.210.226.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:25:32','2019-09-03 13:25:32'),(3972,'chemistry','197.210.227.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:33:08','2019-09-03 13:33:08'),(3973,'chemistry','197.210.226.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:36:44','2019-09-03 13:36:47'),(3974,'chemistry','54.36.150.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 23:05:24','2019-09-03 23:05:24'),(3975,'mathematics','54.221.189.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-04 18:49:49','2019-09-04 18:49:49'),(3976,'history','3.90.177.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:03:49','2019-09-05 06:03:49'),(3977,'mathematics','3.90.177.176',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:04:44','2019-09-05 06:04:44'),(3978,'accounting','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3979,'geography','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3980,'english','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:23'),(3981,'economics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3982,'mathematics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3983,'civiledu','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3984,'insurance','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3985,'chemistry','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3986,'currentaffairs','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3987,'englishlit','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3988,'history','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3989,'government','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3990,'biology','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3991,'chemistry','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3992,'englishlit','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3993,'geography','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3994,'economics','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3995,'irk','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3996,'civiledu','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3997,'chemistry','41.217.84.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:16:54','2019-09-05 16:16:54'),(3998,'chemistry','3.84.149.56',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:15','2019-09-05 16:17:16'),(3999,'chemistry','47.206.102.2',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:40','2019-09-05 16:18:25'),(4000,'chemistry','91.242.162.70',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:21','2019-09-06 12:27:22'),(4001,'mathematics','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:51','2019-09-07 12:05:12'),(4002,'chemistry','91.242.162.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:23:18','2019-09-06 15:33:50'),(4003,'mathematics','41.184.168.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:42:47','2019-09-06 15:42:47'),(4004,'mathematics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4005,'biology','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4006,'physics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4007,'chemistry','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4008,'englishlit','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4009,'economics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4010,'insurance','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4011,'english','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 05:35:36','2019-09-07 13:17:14'),(4012,'chemistry','129.205.112.115',71,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 08:22:52','2019-09-07 08:36:32'),(4013,'chemistry','154.118.11.75',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 19:29:07','2019-09-07 19:36:47'),(4014,'chemistry','41.190.3.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 21:38:56','2019-09-07 21:38:57'),(4015,'biology','154.118.37.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 05:09:59','2019-09-08 05:09:59'),(4016,'chemistry','77.88.5.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 09:42:20','2019-09-08 09:42:20'),(4017,'chemistry','207.46.13.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 14:03:52','2019-09-09 14:03:52'),(4018,'mathematics','54.209.217.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 18:28:02','2019-09-09 18:28:02'),(4019,'biology','54.226.212.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 01:20:10','2019-09-10 01:20:10'),(4020,'english','197.242.108.80',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 06:32:36','2019-09-10 06:32:36'),(4021,'economics','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:35:23','2019-09-10 16:35:24'),(4022,'english','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:36:16','2019-09-10 16:36:16'),(4023,'commerce','3.89.252.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 18:39:39','2019-09-10 18:39:39'),(4024,'chemistry','91.242.162.73',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:08:33','2019-10-24 12:14:06'),(4025,'physics','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4026,'chemistry','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4027,'englishlit','54.91.126.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:32:57'),(4028,'government','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4029,'crk','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4030,'civiledu','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4031,'history','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:09'),(4032,'chemistry','207.46.13.197',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:55:18','2019-09-10 19:55:18'),(4033,'chemistry','197.210.29.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 20:02:55','2019-09-10 20:02:55'),(4034,'accounting','18.234.153.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 22:03:30','2019-09-10 22:03:30'),(4035,'chemistry','110.44.120.215',208,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 01:19:49','2019-09-12 06:46:02'),(4036,'mathematics','110.44.120.215',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:04','2019-09-16 16:31:02'),(4037,'accounting','110.44.120.215',124,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:48','2019-09-13 05:09:09'),(4038,'physics','110.44.120.215',1180,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:45:48','2019-09-20 12:59:42'),(4039,'biology','110.44.120.215',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:53:41','2019-09-17 03:03:55'),(4040,'biology','110.44.120.206',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:08','2019-09-11 15:42:20'),(4041,'mathematics','110.44.120.206',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:16','2019-09-11 10:51:39'),(4042,'chemistry','110.44.120.206',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:48','2019-09-11 15:41:47'),(4043,'chemistry','129.56.92.16',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 13:46:20','2019-09-11 13:46:52'),(4044,'physics','66.249.64.176',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:39:39','2019-09-21 02:46:11'),(4045,'biology','66.249.64.178',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:49:48','2019-09-30 03:47:58'),(4046,'accounting','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:50:53','2019-09-11 16:50:55'),(4047,'mathematics','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:18','2019-09-11 16:51:19'),(4048,'chemistry','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:23','2019-09-11 16:51:24'),(4049,'biology','108.177.7.94',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:26','2019-09-11 16:54:23'),(4050,'biology','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:43','2019-09-11 16:51:45'),(4051,'chemistry','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:46','2019-09-11 16:51:47'),(4052,'physics','108.177.7.91',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:16','2019-09-11 16:53:33'),(4053,'accounting','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:49','2019-09-11 16:52:51'),(4054,'physics','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:54:16','2019-09-11 16:54:18'),(4055,'accounting','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:57:33','2019-09-11 16:57:34'),(4056,'chemistry','66.249.64.180',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:58:44','2019-09-17 21:57:53'),(4057,'accounting','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:07:30','2019-09-11 17:07:32'),(4058,'biology','104.132.0.101',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:23','2019-09-11 17:08:58'),(4059,'chemistry','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:50','2019-09-11 17:08:51'),(4060,'chemistry','34.236.170.225',11,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 17:38:25','2019-09-11 19:05:17'),(4061,'mathematics','35.243.2.1',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:39:59','2019-09-11 19:40:00'),(4062,'physics','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:09','2019-09-11 19:40:10'),(4063,'chemistry','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:40','2019-09-11 19:40:42'),(4064,'biology','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:53','2019-09-11 19:41:54'),(4065,'mathematics','35.243.2.2',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:59','2019-09-11 19:42:01'),(4066,'accounting','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:42:51','2019-09-11 19:42:53'),(4067,'mathematics','35.234.176.172',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:37:08','2019-09-11 22:37:10'),(4068,'physics','35.234.176.173',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:37:39','2019-09-11 22:37:41'),(4069,'biology','35.234.176.171',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:38:37','2019-09-11 22:38:39'),(4070,'chemistry','35.234.176.171',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:41:31','2019-09-11 22:41:33'),(4071,'currentaffairs','35.174.166.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 23:13:34','2019-09-11 23:13:34'),(4072,'mathematics','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:42','2019-09-12 00:09:58'),(4073,'biology','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:50','2019-09-12 00:09:22'),(4074,'accounting','108.177.6.58',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:09:14','2019-09-12 00:09:16'),(4075,'physics','108.177.6.58',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:11:56','2019-09-12 00:12:18'),(4076,'biology','103.10.28.200',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 01:50:53','2019-09-12 01:51:21'),(4077,'chemistry','216.10.240.90',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 03:25:50','2019-09-12 03:25:51'),(4078,'physics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:44:02','2019-09-12 06:45:27'),(4079,'chemistry','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:01','2019-09-12 06:46:03'),(4080,'biology','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:36','2019-09-12 06:46:38'),(4081,'mathematics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:48','2019-09-12 06:47:16'),(4082,'chemistry','41.184.239.224',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:00:01','2019-09-12 08:01:26'),(4083,'physics','121.220.192.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:50:39','2019-09-12 08:50:40'),(4084,'biology','1.144.106.173',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:20:55','2019-09-12 09:20:57'),(4085,'accounting','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:35:59','2019-09-12 09:36:01'),(4086,'mathematics','202.51.76.34',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:37:29','2019-09-13 05:07:49'),(4087,'mathematics','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:14','2019-09-12 09:55:15'),(4088,'biology','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:34','2019-09-12 09:55:36'),(4089,'mathematics','49.195.140.246',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:57','2019-09-12 09:55:59'),(4090,'biology','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:14:20','2019-09-12 10:14:21'),(4091,'mathematics','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:17:03','2019-09-12 10:17:04'),(4092,'physics','175.37.109.166',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:04:59','2019-09-12 11:09:15'),(4093,'mathematics','14.200.41.186',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:06:08','2019-09-12 11:06:10'),(4094,'mathematics','211.30.203.218',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:09:11','2019-09-12 11:09:13'),(4095,'physics','120.17.45.139',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 11:11:29','2019-09-12 11:11:31'),(4096,'chemistry','120.17.45.139',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:12:10','2019-09-12 11:12:11'),(4097,'biology','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:14:53','2019-09-12 11:14:55'),(4098,'mathematics','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:01','2019-09-12 11:17:03'),(4099,'chemistry','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:06','2019-09-12 11:17:09'),(4100,'mathematics','124.180.202.128',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:23:33','2019-09-12 11:23:35'),(4101,'mathematics','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:26:22','2019-09-12 11:26:24'),(4102,'biology','175.37.109.166',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:46:31','2019-09-12 11:47:01'),(4103,'biology','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:48:41','2019-09-12 11:48:43'),(4104,'mathematics','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:49:54','2019-09-12 11:49:56'),(4105,'biology','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:43:46','2019-09-12 14:43:47'),(4106,'physics','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:49:17','2019-09-12 14:49:19'),(4107,'biology','27.34.20.106',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:02','2019-09-12 14:54:04'),(4108,'chemistry','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:14','2019-09-12 14:54:16'),(4109,'physics','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:26','2019-09-12 14:54:28'),(4110,'physics','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:58:24','2019-09-12 14:58:26'),(4111,'biology','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:59:49','2019-09-12 14:59:51'),(4112,'chemistry','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:00:06','2019-09-12 15:00:08'),(4113,'biology','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:01:16','2019-09-12 15:01:18'),(4114,'physics','110.44.127.178',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:02','2019-09-12 15:29:03'),(4115,'physics','27.34.17.16',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:40','2019-09-12 15:30:08'),(4116,'physics','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:50:55','2019-09-12 15:50:57'),(4117,'biology','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:51:13','2019-09-12 15:51:15'),(4118,'chemistry','91.242.162.72',3,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 18:05:30','2019-09-12 18:20:23'),(4119,'chemistry','49.195.156.140',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:06:39','2019-09-12 19:06:41'),(4120,'biology','202.51.88.114',60,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:10:30','2019-09-12 19:16:01'),(4121,'biology','49.181.243.120',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 20:37:28','2019-09-12 20:37:58'),(4122,'chemistry','91.242.162.45',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:30:11','2019-09-12 23:30:11'),(4123,'physics','220.240.160.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:51:25','2019-09-12 23:51:26'),(4124,'chemistry','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:57:36','2019-09-12 23:57:37'),(4125,'biology','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:59:54','2019-09-12 23:59:56'),(4126,'mathematics','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 00:00:25','2019-09-13 00:00:27'),(4127,'biology','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:33:57','2019-09-13 01:33:58'),(4128,'mathematics','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:37:24','2019-09-13 01:37:26'),(4129,'physics','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:15:58','2019-09-13 02:15:59'),(4130,'accounting','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:16:14','2019-09-13 02:16:16'),(4131,'biology','27.34.17.16',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:07:26','2019-09-13 03:07:28'),(4132,'chemistry','141.8.132.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:10:44','2019-09-13 03:10:44'),(4133,'physics','1.144.105.17',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 04:06:29','2019-09-13 04:06:31'),(4134,'biology','125.254.44.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:00:53','2019-09-13 05:00:54'),(4135,'physics','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:08:24','2019-09-13 05:08:25'),(4136,'mathematics','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4137,'biology','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:15'),(4138,'government','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4139,'english','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4140,'economics','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4141,'insurance','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4142,'accounting','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4143,'currentaffairs','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4144,'chemistry','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4145,'history','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:17'),(4146,'englishlit','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4147,'physics','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:06','2019-09-13 06:03:07'),(4148,'physics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:16','2019-09-13 06:03:17'),(4149,'mathematics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:42','2019-09-13 06:03:43'),(4150,'chemistry','27.34.48.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:06:07','2019-09-13 06:09:13'),(4151,'biology','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:09:23','2019-09-13 06:09:24'),(4152,'commerce','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:50','2019-09-13 06:20:51'),(4153,'physics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4154,'government','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4155,'economics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4156,'irk','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4157,'currentaffairs','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4158,'history','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4159,'biology','175.35.106.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:16:45','2019-09-13 07:16:46'),(4160,'physics','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:29:45','2019-09-13 07:29:47'),(4161,'chemistry','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:31:28','2019-09-13 07:31:29'),(4162,'mathematics','27.34.70.161',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:32:08','2019-09-13 07:32:44'),(4163,'physics','1.41.245.225',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:14:08','2019-09-13 08:14:09'),(4164,'biology','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:40:42','2019-09-13 08:40:44'),(4165,'mathematics','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:45:42','2019-09-13 08:45:43'),(4166,'chemistry','110.150.214.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 09:32:23','2019-09-13 09:32:24'),(4167,'accounting','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:12','2019-09-13 11:01:14'),(4168,'mathematics','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:24','2019-09-13 11:01:25'),(4169,'physics','66.249.64.166',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:33:40','2019-09-13 14:33:41'),(4170,'accounting','66.249.64.180',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:39:00','2019-09-25 11:14:55'),(4171,'chemistry','220.244.110.40',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:15:30','2019-09-13 23:15:32'),(4172,'mathematics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:18','2019-09-13 23:46:20'),(4173,'physics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:45','2019-09-13 23:46:47'),(4174,'mathematics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:03:10','2019-09-14 01:03:12'),(4175,'physics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:04:12','2019-09-14 01:04:14'),(4176,'mathematics','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:11:39','2019-09-14 03:11:40'),(4177,'biology','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:12:05','2019-09-14 03:12:06'),(4178,'mathematics','3.92.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 06:23:58','2019-09-14 06:23:58'),(4179,'physics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:10:22','2019-09-14 08:10:23'),(4180,'mathematics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:11:18','2019-09-14 08:11:20'),(4181,'mathematics','211.27.254.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:53:20','2019-09-14 08:53:22'),(4182,'chemistry','41.86.6.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:55:03','2019-09-14 08:55:59'),(4183,'mathematics','66.249.66.212',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:03:19','2019-10-01 13:36:10'),(4184,'accounting','66.249.66.212',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:11:53','2019-10-10 06:34:01'),(4185,'biology','66.249.66.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:13:24','2019-10-09 01:01:54'),(4186,'chemistry','66.249.66.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:14:57','2019-10-29 04:35:40'),(4187,'physics','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:15:49','2019-10-10 06:52:10'),(4188,'chemistry','207.46.13.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:21:21','2019-09-14 13:21:21'),(4189,'chemistry','129.56.90.193',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:23:39','2019-09-14 13:25:42'),(4190,'chemistry','185.20.6.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:12:04','2019-09-14 14:12:04'),(4191,'chemistry','54.91.254.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:13:12','2019-09-14 14:13:12'),(4192,'chemistry','3.95.179.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:15:08','2019-09-14 14:15:08'),(4193,'mathematics','54.167.105.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 23:41:30','2019-09-14 23:41:30'),(4194,'physics','110.44.120.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 02:50:34','2019-09-15 02:50:36'),(4195,'chemistry','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:14:22','2019-09-15 04:15:04'),(4196,'biology','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:15:02','2019-09-15 04:15:37'),(4197,'accounting','113.199.203.102',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:16:18','2019-09-15 04:16:20'),(4198,'chemistry','35.172.100.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 07:24:14','2019-09-15 07:24:28'),(4199,'mathematics','54.221.170.133',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 13:27:05','2019-09-15 13:59:54'),(4200,'crk','54.221.170.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 14:16:11','2019-09-15 14:16:11'),(4201,'chemistry','54.36.148.104',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 18:59:31','2019-09-15 18:59:31'),(4202,'mathematics','34.207.243.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 19:16:51','2019-09-15 19:16:51'),(4203,'mathematics','47.30.248.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 04:20:11','2019-09-16 04:20:13'),(4204,'mathematics','49.195.29.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 06:12:19','2019-09-16 06:12:21'),(4205,'chemistry','157.51.26.93',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:06:39','2019-09-16 11:06:40'),(4206,'mathematics','41.86.152.178',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:19:00','2019-09-16 11:19:01'),(4207,'english','105.112.45.87',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 12:37:29','2019-09-16 12:37:56'),(4208,'mathematics','154.120.94.26',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 13:28:56','2019-09-16 13:28:57'),(4209,'physics','157.51.31.138',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-16 14:16:36','2019-09-16 14:17:04'),(4210,'chemistry','157.51.31.138',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 14:17:05','2019-09-16 14:17:32'),(4211,'physics','49.126.207.89',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:02:39','2019-09-16 16:12:06'),(4212,'chemistry','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:12:11','2019-09-16 16:12:12'),(4213,'biology','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:16:05','2019-09-16 16:16:06'),(4214,'chemistry','197.210.44.251',16,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:25:35','2019-09-16 16:28:49'),(4215,'chemistry','197.210.62.38',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:26','2019-09-16 16:29:26'),(4216,'chemistry','197.210.45.121',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:50','2019-09-16 16:29:50'),(4217,'mathematics','3.95.23.58',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:40:13','2019-09-16 16:40:13'),(4218,'chemistry','27.34.70.118',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:54:28','2019-09-17 01:54:29'),(4219,'physics','27.34.70.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:55:46','2019-09-17 01:57:21'),(4220,'physics','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:44:39','2019-09-17 06:44:41'),(4221,'biology','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:48:22','2019-09-17 06:48:23'),(4222,'physics','113.199.202.174',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:16:31','2019-09-17 07:16:33'),(4223,'biology','43.245.95.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:55:04','2019-09-17 07:57:24'),(4224,'chemistry','197.210.141.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 08:18:07','2019-09-17 08:18:07'),(4225,'physics','27.34.48.127',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-17 13:39:15','2019-09-17 13:39:17'),(4226,'chemistry','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:39:29','2019-09-17 13:39:30'),(4227,'biology','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:42:20','2019-09-17 13:42:22'),(4228,'chemistry','41.190.2.129',92,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:53:44','2019-09-18 12:00:00'),(4229,'mathematics','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:56:08','2019-09-18 11:06:40'),(4230,'mathematics','34.230.32.127',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 19:04:41','2019-09-17 19:04:41'),(4231,'crk','105.112.52.75',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 20:33:57','2019-09-17 20:34:00'),(4232,'mathematics','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 21:53:45','2019-09-17 21:53:47'),(4233,'biology','66.249.64.180',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-17 22:13:17','2019-09-25 11:22:46'),(4234,'chemistry','91.242.162.56',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 00:16:39','2019-09-18 00:16:39'),(4235,'physics','49.181.255.251',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:11:15','2019-09-18 02:11:47'),(4236,'chemistry','49.181.255.251',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:12:23','2019-09-18 02:12:24'),(4237,'physics','110.44.127.203',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:21:31','2019-09-18 02:21:32'),(4238,'chemistry','40.77.167.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 03:04:48','2019-09-18 03:04:48'),(4239,'chemistry','49.180.134.8',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 04:19:37','2019-09-18 04:19:38'),(4240,'government','41.190.2.129',658,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-18 04:37:51','2019-09-18 11:14:19'),(4241,'english','35.233.231.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 05:38:18','2019-09-18 05:38:18'),(4242,'english','41.190.2.129',77,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:17:49','2019-09-18 09:59:30'),(4243,'biology','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:26:52','2019-09-18 11:11:13'),(4244,'chemistry','197.210.226.214',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 10:04:09','2019-09-18 10:04:09'),(4245,'english','188.29.164.19',28,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:23:26','2019-09-18 11:25:54'),(4246,'commerce','41.190.2.129',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:28:08','2019-09-18 11:56:09'),(4247,'chemistry','66.249.83.20',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 11:46:32','2019-11-06 14:40:23'),(4248,'english','105.112.41.25',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:49:33','2019-09-18 11:49:33'),(4249,'chemistry','105.112.38.22',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:07:36','2019-09-18 12:07:36'),(4250,'english','105.112.38.22',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:09:51','2019-09-18 12:11:42'),(4251,'chemistry','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:22','2019-09-18 12:49:23'),(4252,'chemistry','157.55.39.178',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:23','2019-09-18 12:49:23'),(4253,'biology','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:38','2019-09-18 12:49:38'),(4254,'english','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:50:03','2019-09-18 12:50:03'),(4255,'chemistry','197.210.65.154',21,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:11:00','2019-09-18 14:14:29'),(4256,'government','197.210.65.154',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:15:12','2019-09-18 14:17:53'),(4257,'government','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:22:02','2019-09-18 14:22:03'),(4258,'chemistry','41.190.2.121',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:24:39','2019-09-18 14:24:39'),(4259,'commerce','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:25:26','2019-09-18 14:25:26'),(4260,'english','197.149.125.34',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:29:51','2019-09-18 15:03:08'),(4261,'economics','105.112.29.230',10,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:08:25','2019-09-18 17:49:38'),(4262,'commerce','41.190.30.252',119,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 15:20:43','2019-09-19 15:57:17'),(4263,'commerce','105.112.29.213',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:29:15','2019-09-18 15:29:15'),(4264,'government','41.190.30.252',245,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:07:56','2019-09-20 12:55:06'),(4265,'english','105.112.41.242',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:10:59','2019-09-18 16:12:46'),(4266,'english','41.190.30.252',301,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:30:17','2019-09-20 12:50:25'),(4267,'mathematics','41.190.2.209',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:45:19','2019-09-18 16:45:20'),(4268,'chemistry','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:05','2019-09-19 15:57:38'),(4269,'mathematics','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:20','2019-09-19 15:57:59'),(4270,'biology','41.190.30.252',602,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:26:22','2019-09-20 12:54:08'),(4271,'chemistry','150.70.167.82',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 18:31:12','2019-09-26 00:57:44'),(4272,'chemistry','40.77.167.63',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 01:09:50','2020-01-08 07:44:01'),(4273,'mathematics','41.217.116.241',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 03:47:25','2019-09-19 03:54:42'),(4274,'government','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:20:51','2019-09-19 07:20:52'),(4275,'biology','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:22:21','2019-09-19 07:22:22'),(4276,'mathematics','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4277,'chemistry','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4278,'englishlit','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4279,'crk','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4280,'geography','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4281,'currentaffairs','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4282,'history','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:55'),(4283,'english','45.222.100.155',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:45:54','2019-09-19 08:47:36'),(4284,'biology','27.34.25.22',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 10:47:54','2019-09-19 10:47:56'),(4285,'physics','27.34.70.49',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 12:46:48','2019-09-19 13:37:35'),(4286,'chemistry','41.138.163.117',264,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 16:24:08','2019-09-20 08:36:52'),(4287,'physics','27.34.70.50',260,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-19 17:28:13','2019-09-19 18:55:53'),(4288,'chemistry','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 17:50:14','2019-09-19 17:50:15'),(4289,'biology','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 18:55:47','2019-09-19 18:55:48'),(4290,'chemistry','54.36.148.175',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 20:34:08','2019-09-19 20:34:08'),(4291,'english','41.217.116.241',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 05:04:08','2019-09-20 05:04:56'),(4292,'biology','110.44.125.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:16:05','2019-09-20 13:16:59'),(4293,'physics','103.95.16.239',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:20','2019-09-20 13:33:21'),(4294,'physics','103.94.222.78',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:40','2019-09-20 13:33:42'),(4295,'physics','103.58.145.248',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:47:59','2019-09-20 14:02:35'),(4296,'chemistry','103.58.145.248',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:49:11','2019-09-20 13:49:13'),(4297,'physics','27.34.26.105',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:02','2019-09-20 13:51:04'),(4298,'biology','27.34.26.105',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:12','2019-09-20 13:53:00'),(4299,'biology','103.58.145.248',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:49','2019-09-20 13:58:53'),(4300,'physics','27.34.70.223',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 14:15:53','2019-09-20 14:15:54'),(4301,'biology','27.34.104.212',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:24','2019-09-20 15:10:26'),(4302,'biology','27.34.69.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:35','2019-09-20 15:10:36'),(4303,'physics','43.228.192.35',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:33:07','2019-09-27 00:26:30'),(4304,'mathematics','43.228.192.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:34:07','2019-09-20 15:36:30'),(4305,'accounting','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:08','2019-09-20 18:55:09'),(4306,'englishlit','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4307,'government','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4308,'geography','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4309,'irk','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4310,'civiledu','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4311,'history','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4312,'biology','103.95.16.185',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 19:02:51','2019-09-20 19:02:52'),(4313,'chemistry','93.158.166.147',2,'','NG','','Lagos',NULL,NULL,'','','2019-09-20 20:08:32','2019-10-24 17:47:31'),(4314,'physics','27.34.25.249',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-20 22:44:30','2019-09-20 22:44:31'),(4315,'biology','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:44:50','2019-09-20 22:44:51'),(4316,'chemistry','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:46:10','2019-09-20 22:46:12'),(4317,'chemistry','35.173.47.43',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 00:22:18','2019-09-21 00:22:22'),(4318,'mathematics','66.249.64.178',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 02:47:16','2019-09-21 02:47:18'),(4319,'chemistry','3.81.148.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:13:38','2019-09-21 05:13:46'),(4320,'chemistry','154.120.114.154',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:17:33','2019-09-21 06:18:06'),(4321,'chemistry','54.89.142.238',106,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 08:00:06','2019-09-21 08:09:05'),(4322,'chemistry','91.242.162.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 11:12:15','2019-09-21 11:12:15'),(4323,'commerce','41.190.31.67',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:09:29','2019-09-21 19:06:59'),(4324,'government','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:11:30','2019-09-21 15:11:31'),(4325,'mathematics','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:12:57','2019-09-21 15:12:58'),(4326,'chemistry','105.112.53.39',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 18:24:08','2019-09-21 18:28:24'),(4327,'english','197.210.44.0',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 20:50:21','2019-09-21 20:50:21'),(4328,'mathematics','18.234.75.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 21:50:19','2019-09-21 21:50:19'),(4329,'mathematics','34.207.140.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 22:36:26','2019-09-21 22:36:26'),(4330,'biology','27.34.68.44',36,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:18'),(4331,'biology','27.34.68.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:16'),(4332,'chemistry','34.228.212.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 07:07:50','2019-09-22 07:07:50'),(4333,'chemistry','91.242.162.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 09:55:37','2019-09-22 09:55:37'),(4334,'commerce','41.190.3.118',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 10:30:11','2019-09-22 10:32:00'),(4335,'mathematics','35.175.238.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 22:29:35','2019-09-22 22:29:35'),(4336,'biology','103.232.154.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 01:46:19','2019-09-23 01:46:20'),(4337,'biology','27.34.104.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 02:47:02','2019-09-23 02:47:03'),(4338,'mathematics','105.112.27.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 15:37:49','2019-09-23 15:37:50'),(4339,'chemistry','154.113.86.210',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:52:59','2019-09-24 08:58:26'),(4340,'mathematics','154.113.86.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:58:49','2019-09-24 08:58:49'),(4341,'mathematics','154.113.86.202',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 09:42:16','2019-09-24 09:42:41'),(4342,'currentaffairs','54.173.205.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 12:53:57','2019-09-24 12:53:57'),(4343,'english','105.112.52.225',21,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:28:15','2019-09-24 16:49:26'),(4344,'biology','105.112.52.225',663,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:30:16','2019-09-24 14:54:54'),(4345,'chemistry','105.112.52.225',22,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:32:07','2019-09-24 15:00:30'),(4346,'currentaffairs','105.112.52.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 13:34:54','2019-09-24 13:34:54'),(4347,'commerce','105.112.52.225',598,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:30:24','2019-09-24 14:57:46'),(4348,'accounting','105.112.52.225',341,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:33:47','2019-09-24 14:59:43'),(4349,'physics','105.112.52.225',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:55:31','2019-09-24 15:02:06'),(4350,'mathematics','105.112.52.225',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:58:41','2019-09-24 14:58:42'),(4351,'english','41.190.31.234',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 15:47:34','2019-09-24 15:47:34'),(4352,'physics','54.198.206.199',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 21:19:56','2019-09-24 21:19:56'),(4353,'government','52.5.110.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 02:40:21','2019-09-25 02:40:21'),(4354,'biology','105.112.41.33',286,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 03:16:07','2019-09-25 12:05:04'),(4355,'english','154.118.20.99',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 04:50:44','2019-09-25 04:58:16'),(4356,'physics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 05:48:27','2019-09-25 05:48:29'),(4357,'mathematics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 07:16:11','2019-09-25 07:16:13'),(4358,'accounting','105.112.41.33',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:01','2019-09-25 10:01:11'),(4359,'mathematics','105.112.41.33',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:41','2019-09-25 09:14:48'),(4360,'physics','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:25:33','2019-09-25 11:45:37'),(4361,'chemistry','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:53:46','2019-09-25 08:53:47'),(4362,'government','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:02:04','2019-09-25 09:02:04'),(4363,'commerce','105.112.41.33',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:12:58','2019-09-25 09:46:15'),(4364,'english','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:24:47','2019-09-25 09:45:39'),(4365,'history','54.92.191.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 16:07:48','2019-09-25 16:07:48'),(4366,'biology','154.118.42.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 21:32:52','2019-09-25 21:32:53'),(4367,'chemistry','91.242.162.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 03:32:45','2019-09-26 03:54:55'),(4368,'english','154.118.17.103',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 07:55:26','2019-09-26 07:58:00'),(4369,'chemistry','37.9.87.217',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 08:32:29','2019-09-28 02:46:55'),(4370,'civiledu','105.112.44.193',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:35:16','2019-09-26 09:59:45'),(4371,'insurance','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:22','2019-09-26 09:59:23'),(4372,'currentaffairs','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:32','2019-09-26 09:59:32'),(4373,'chemistry','105.112.44.193',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:04:54','2019-09-26 11:38:07'),(4374,'biology','105.112.44.193',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:20','2019-09-26 19:16:16'),(4375,'englishlit','105.112.44.193',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:28','2019-09-26 11:34:05'),(4376,'physics','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:10:00','2019-09-26 11:29:36'),(4377,'accounting','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:14:27','2019-09-26 10:17:13'),(4378,'irk','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:33:54','2019-09-26 10:33:54'),(4379,'government','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:01:08','2019-09-26 11:01:09'),(4380,'commerce','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:28:09','2019-09-26 11:28:10'),(4381,'chemistry','157.55.39.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 18:38:53','2019-11-24 22:31:16'),(4382,'chemistry','154.118.37.164',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:42:25','2019-09-26 21:43:27'),(4383,'mathematics','154.118.37.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:43:52','2019-09-26 21:43:52'),(4384,'government','52.73.45.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 00:37:59','2019-09-27 00:37:59'),(4385,'irk','54.175.103.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 05:05:42','2019-09-27 05:05:42'),(4386,'chemistry','36.99.136.130',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4387,'chemistry','111.7.100.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4388,'chemistry','111.7.100.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:44','2019-10-09 11:27:44'),(4389,'physics','49.244.242.12',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:00:55','2019-09-27 12:00:56'),(4390,'chemistry','157.55.39.74',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:45:44','2019-09-27 12:45:44'),(4391,'english','197.210.54.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 17:55:01','2019-09-27 17:55:01'),(4392,'economics','54.234.192.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 00:10:36','2019-09-28 00:10:36'),(4393,'englishlit','54.91.218.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 02:43:56','2019-09-28 02:43:56'),(4394,'english','154.120.93.57',595,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:40:25','2019-10-01 11:59:48'),(4395,'biology','154.120.93.57',225,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:57:15','2019-09-28 16:09:59'),(4396,'chemistry','105.112.23.210',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:27:45','2019-09-28 11:29:58'),(4397,'physics','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:20','2019-09-28 11:55:21'),(4398,'accounting','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:43','2019-09-28 11:55:45'),(4399,'englishlit','54.172.49.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 15:59:20','2019-09-28 15:59:20'),(4400,'chemistry','154.120.93.57',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 16:06:01','2019-09-28 16:08:44'),(4401,'biology','171.76.250.218',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 18:56:35','2019-09-28 18:58:46'),(4402,'mathematics','105.112.11.104',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 20:48:14','2019-09-28 20:48:14'),(4403,'mathematics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:28'),(4404,'biology','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:29'),(4405,'physics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4406,'chemistry','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4407,'crk','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4408,'economics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4409,'civiledu','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4410,'civiledu','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 23:37:51','2019-09-28 23:37:51'),(4411,'chemistry','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 00:03:54','2019-09-29 00:03:54'),(4412,'physics','54.224.133.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:24:13','2019-09-29 01:52:53'),(4413,'english','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4414,'mathematics','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4415,'accounting','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4416,'crk','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4417,'civiledu','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:54'),(4418,'insurance','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:54','2019-09-29 01:52:54'),(4419,'physics','3.95.189.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 02:51:59','2019-09-29 02:51:59'),(4420,'chemistry','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 06:16:54','2019-09-29 06:16:56'),(4421,'physics','93.71.107.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:18','2019-09-29 07:40:10'),(4422,'chemistry','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:31','2019-09-29 07:39:32'),(4423,'biology','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:40:23','2019-09-29 07:40:25'),(4424,'mathematics','154.120.93.57',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:15:50','2019-09-29 18:43:31'),(4425,'commerce','154.120.93.57',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:31:37','2019-09-29 18:37:10'),(4426,'chemistry','5.255.250.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 10:22:17','2019-10-15 18:07:00'),(4427,'chemistry','107.167.107.151',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:05','2019-09-29 13:44:39'),(4428,'chemistry','105.112.113.181',90,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:22','2019-09-29 13:42:00'),(4429,'mathematics','105.112.113.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:35:38','2019-09-29 13:35:38'),(4430,'chemistry','36.252.98.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:43:36','2019-09-29 13:43:38'),(4431,'chemistry','82.145.220.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 18:07:39','2019-09-29 18:07:47'),(4432,'chemistry','129.56.100.60',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:15:36','2019-09-30 09:16:57'),(4433,'english','129.56.100.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:16:16','2019-09-30 09:16:25'),(4434,'government','41.190.2.44',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:13:45','2019-09-30 14:15:39'),(4435,'biology','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:04','2019-09-30 13:57:15'),(4436,'mathematics','41.190.2.44',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:57','2019-09-30 14:29:55'),(4437,'chemistry','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:43:01','2019-09-30 17:46:58'),(4438,'english','41.190.2.44',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:45:04','2019-09-30 17:49:27'),(4439,'commerce','41.190.2.44',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:54:47','2019-09-30 18:56:36'),(4440,'history','54.147.150.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 15:44:23','2019-09-30 15:44:23'),(4441,'government','41.58.215.64',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:08:17','2019-09-30 18:08:17'),(4442,'mathematics','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:30:32','2019-09-30 18:30:33'),(4443,'government','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:31:38','2019-09-30 18:31:38'),(4444,'biology','27.33.202.67',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 00:15:27','2019-10-01 00:15:29'),(4445,'chemistry','197.210.63.23',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 06:59:39','2019-10-01 07:17:32'),(4446,'physics','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:29:40','2019-10-26 17:47:17'),(4447,'biology','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:39:21','2019-10-12 01:46:00'),(4448,'chemistry','197.210.246.222',930,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 14:56:07','2019-10-08 18:45:58'),(4449,'chemistry','196.220.144.2',702,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 15:04:34','2019-10-06 18:10:34'),(4450,'physics','171.76.168.198',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 20:07:42','2019-10-01 20:07:43'),(4451,'english','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4452,'commerce','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4453,'chemistry','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4454,'economics','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4455,'insurance','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4456,'currentaffairs','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4457,'history','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:35'),(4458,'english','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4459,'commerce','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4460,'englishlit','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4461,'government','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4462,'crk','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4463,'insurance','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4464,'currentaffairs','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:34'),(4465,'english','154.118.21.211',125,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 07:40:32','2019-10-02 08:32:13'),(4466,'chemistry','41.184.176.252',1053,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 10:36:18','2020-01-27 12:19:42'),(4467,'accounting','54.84.164.37',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 12:49:33','2019-10-02 12:49:33'),(4468,'chemistry','3.87.61.43',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-02 13:16:54','2019-10-02 13:16:57'),(4469,'english','197.210.246.222',520,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:48:04','2019-10-08 18:55:26'),(4470,'mathematics','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:50:53','2019-10-02 19:50:56'),(4471,'history','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:52:48','2019-10-02 19:52:51'),(4472,'english','196.220.144.2',291,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:15:37','2019-10-06 20:24:53'),(4473,'mathematics','196.220.144.2',1403,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:35:07','2019-10-06 18:58:12'),(4474,'physics','196.220.144.2',960,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:39:30','2019-10-06 19:09:01'),(4475,'economics','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:50:04','2019-10-08 18:48:36'),(4476,'biology','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:52:35','2019-10-08 18:56:29'),(4477,'commerce','197.210.246.222',320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:56:17','2019-10-02 20:58:19'),(4478,'accounting','197.210.246.222',760,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:58:36','2019-10-08 18:48:07'),(4479,'chemistry','100.43.90.108',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 03:16:03','2019-10-04 02:08:43'),(4480,'physics','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:07','2019-10-03 05:18:08'),(4481,'chemistry','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:34','2019-10-03 05:18:36'),(4482,'english','154.120.87.191',165,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 06:04:34','2019-10-03 16:10:48'),(4483,'english','35.210.215.17',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 07:46:05','2019-10-03 07:46:05'),(4484,'chemistry','5.255.250.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 09:44:47','2019-10-03 09:44:47'),(4485,'chemistry','105.112.41.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 10:51:00','2019-10-03 10:51:26'),(4486,'physics','54.242.236.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 13:11:23','2019-10-03 13:11:23'),(4487,'chemistry','207.46.13.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 16:53:40','2019-10-03 16:53:40'),(4488,'currentaffairs','3.82.243.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 21:55:12','2019-10-03 21:55:12'),(4489,'english','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 05:55:09','2019-10-04 06:29:52'),(4490,'englishlit','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:24:38','2019-10-04 06:29:57'),(4491,'insurance','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:29:57','2019-10-04 06:32:40'),(4492,'government','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:15','2019-10-04 06:33:46'),(4493,'currentaffairs','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:33','2019-10-04 06:32:04'),(4494,'crk','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:31:19','2019-10-04 06:33:25'),(4495,'commerce','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:32:20','2019-10-04 06:33:41'),(4496,'english','41.217.46.141',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 07:54:54','2019-10-04 09:02:54'),(4497,'government','3.85.89.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 09:20:47','2019-10-04 09:20:47'),(4498,'mathematics','3.87.186.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 11:42:15','2019-10-04 11:42:15'),(4499,'english','197.210.44.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:52:50','2019-10-04 14:55:58'),(4500,'mathematics','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:55:40','2019-10-04 14:55:40'),(4501,'chemistry','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:01:20','2019-10-04 15:01:20'),(4502,'biology','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:10:50','2019-10-04 15:10:51'),(4503,'englishlit','196.220.144.2',1080,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-04 21:36:39','2019-10-06 19:21:44'),(4504,'government','196.220.144.2',1001,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:40:51','2019-10-06 19:06:34'),(4505,'geography','196.220.144.2',1320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:43:47','2019-10-06 19:15:16'),(4506,'civiledu','196.220.144.2',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:48:25','2019-10-04 21:51:04'),(4507,'history','52.206.150.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 23:32:16','2019-10-04 23:32:16'),(4508,'physics','119.160.67.57',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 03:40:07','2019-10-05 03:40:08'),(4509,'english','41.217.100.83',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 05:04:25','2019-10-05 06:01:53'),(4510,'chemistry','54.36.149.48',47,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-05 06:27:28','2020-05-06 15:23:56'),(4511,'irk','52.205.10.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 13:25:19','2019-10-05 13:25:19'),(4512,'english','154.118.67.81',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 18:02:59','2019-10-05 20:13:49'),(4513,'physics','110.44.115.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 02:22:30','2019-10-06 02:22:31'),(4514,'mathematics','105.112.17.47',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 05:36:53','2019-10-06 05:37:17'),(4515,'english','41.217.97.111',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:14:35','2019-10-06 11:53:33'),(4516,'government','54.224.0.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:26:54','2019-10-06 06:26:54'),(4517,'irk','54.243.12.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 11:38:30','2019-10-06 11:38:30'),(4518,'economics','196.220.144.2',521,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-06 18:16:49','2019-10-06 19:02:58'),(4519,'history','174.129.83.246',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 18:59:36','2019-10-06 18:59:36'),(4520,'accounting','196.220.144.2',280,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 19:24:55','2019-10-06 19:26:22'),(4521,'english','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:32','2019-10-07 02:07:33'),(4522,'mathematics','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4523,'physics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4524,'englishlit','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4525,'crk','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4526,'economics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4527,'civiledu','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4528,'commerce','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4529,'accounting','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4530,'geography','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4531,'irk','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4532,'economics','18.204.201.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 07:02:49','2019-10-07 07:02:49'),(4533,'english','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4534,'biology','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4535,'englishlit','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4536,'crk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4537,'geography','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4538,'economics','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:11'),(4539,'irk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4540,'insurance','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4541,'currentaffairs','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4542,'history','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4543,'chemistry','40.77.167.166',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 14:48:22','2020-04-16 19:24:46'),(4544,'english','154.120.92.245',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:16:45','2019-10-08 08:28:43'),(4545,'chemistry','207.46.13.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:29:00','2019-10-08 08:29:00'),(4546,'chemistry','197.210.60.68',198,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 13:13:26','2019-10-08 13:25:10'),(4547,'chemistry','91.242.162.77',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 17:35:58','2019-10-08 18:04:36'),(4548,'englishlit','197.210.246.222',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-08 18:46:58','2019-10-08 18:47:31'),(4549,'biology','196.220.144.2',80,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:06:19','2019-10-08 19:06:44'),(4550,'commerce','196.220.144.2',240,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:07:20','2019-10-08 19:08:52'),(4551,'chemistry','66.249.66.208',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 00:58:25','2019-10-26 17:44:22'),(4552,'mathematics','66.249.66.208',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 01:11:04','2019-10-26 17:53:47'),(4553,'chemistry','34.229.149.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 04:15:06','2019-10-09 04:15:06'),(4554,'commerce','54.242.23.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 06:59:31','2019-10-09 06:59:31'),(4555,'chemistry','36.99.136.139',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:44'),(4556,'chemistry','36.99.136.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:43'),(4557,'chemistry','54.36.150.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 12:06:00','2019-10-09 12:06:00'),(4558,'chemistry','35.175.120.211',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 02:34:06','2019-10-10 04:07:28'),(4559,'insurance','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:18','2019-11-12 01:51:04'),(4560,'accounting','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:22','2019-11-12 01:51:08'),(4561,'englishlit','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:25','2019-11-12 01:51:13'),(4562,'government','198.187.29.38',1680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:30','2019-11-12 01:51:18'),(4563,'currentaffairs','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:34','2019-11-12 01:51:24'),(4564,'economics','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:38','2019-11-12 01:51:29'),(4565,'geography','198.187.29.38',1760,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:43','2019-11-12 01:51:33'),(4566,'english','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:50','2019-11-12 01:51:37'),(4567,'mathematics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:54','2019-11-12 01:51:41'),(4568,'commerce','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:58','2019-11-12 01:51:45'),(4569,'biology','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:09','2019-11-12 01:51:48'),(4570,'physics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:13','2019-11-12 01:51:52'),(4571,'chemistry','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:17','2019-11-12 01:51:56'),(4572,'crk','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:20','2019-11-12 01:52:00'),(4573,'history','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:24','2019-11-12 01:52:04'),(4574,'irk','198.187.29.38',810,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:35','2019-11-12 01:52:07'),(4575,'civiledu','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:38','2019-11-12 01:52:11'),(4576,'english','54.147.174.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-11 01:20:30','2019-10-11 01:20:30'),(4577,'chemistry','105.112.51.58',49,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 09:52:44','2019-10-11 09:54:21'),(4578,'chemistry','182.140.244.74',11,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 11:22:18','2019-10-11 11:22:28'),(4579,'mathematics','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4580,'accounting','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4581,'biology','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4582,'government','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4583,'crk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4584,'geography','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4585,'irk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4586,'insurance','54.224.74.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 00:50:18','2019-10-12 00:50:18'),(4587,'mathematics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:33:21','2019-10-12 01:33:22'),(4588,'physics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:39:23','2019-10-12 01:39:25'),(4589,'accounting','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:48:29','2019-10-26 17:37:06'),(4590,'currentaffairs','105.112.40.99',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 05:00:59','2019-10-12 05:00:59'),(4591,'biology','105.112.40.100',10,'',NULL,'',NULL,NULL,NULL,'','','2019-10-12 16:50:45','2019-10-12 16:51:53'),(4592,'currentaffairs','3.87.162.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 01:34:03','2019-10-13 01:34:03'),(4593,'commerce','54.83.149.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 06:55:56','2019-10-13 06:55:56'),(4594,'chemistry','41.217.58.69',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 07:04:52','2019-10-13 09:28:40'),(4595,'crk','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:00','2019-10-13 11:14:03'),(4596,'chemistry','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:11','2019-10-13 11:14:14'),(4597,'currentaffairs','18.212.242.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:31:55','2019-10-13 11:31:55'),(4598,'biology','171.76.195.83',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:53:18','2019-10-13 11:53:45'),(4599,'physics','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:13','2019-10-13 12:00:14'),(4600,'chemistry','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:35','2019-10-13 12:00:36'),(4601,'government','54.89.105.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 14:56:23','2019-10-13 14:56:23'),(4602,'chemistry','129.56.105.4',53,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:17:44','2019-10-13 15:21:07'),(4603,'mathematics','129.56.105.4',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:23:57','2019-10-13 15:24:00'),(4604,'chemistry','3.92.76.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 02:02:14','2019-10-14 02:02:17'),(4605,'history','3.94.214.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 04:11:49','2019-10-14 04:11:49'),(4606,'chemistry','197.210.64.86',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 07:32:24','2019-10-14 07:32:27'),(4607,'history','3.89.135.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 08:16:22','2019-10-14 08:16:22'),(4608,'chemistry','157.55.39.168',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 09:16:59','2019-10-14 09:17:00'),(4609,'mathematics','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:57:53','2019-10-14 16:35:36'),(4610,'commerce','41.190.30.180',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:59:39','2019-10-14 16:45:26'),(4611,'government','41.190.30.180',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:00:51','2019-10-14 16:25:28'),(4612,'biology','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:03:11','2019-10-14 16:35:03'),(4613,'chemistry','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:09:18','2019-10-14 16:33:53'),(4614,'english','41.190.30.180',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:13:01','2019-10-14 16:38:31'),(4615,'mathematics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4616,'mathematics','3.88.110.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4617,'englishlit','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4618,'commerce','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4619,'crk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4620,'accounting','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4621,'biology','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4622,'economics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4623,'irk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4624,'geography','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4625,'insurance','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4626,'currentaffairs','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4627,'mathematics','18.215.162.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 07:32:53','2019-10-15 07:32:53'),(4628,'chemistry','105.112.26.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 11:12:59','2019-10-15 11:12:59'),(4629,'english','34.227.191.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 14:04:54','2019-10-15 14:04:54'),(4630,'irk','34.207.92.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 16:11:12','2019-10-15 16:11:12'),(4631,'english','105.112.120.131',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:31:08','2019-10-16 00:50:07'),(4632,'physics','105.112.120.131',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:33:25','2019-10-16 00:33:25'),(4633,'history','54.237.235.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 03:43:24','2019-10-16 03:43:24'),(4634,'government','41.190.31.103',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:29:16','2019-10-16 06:29:16'),(4635,'biology','41.190.31.103',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:30:16','2019-10-16 06:31:46'),(4636,'economics','35.173.136.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 11:30:36','2019-10-16 11:30:36'),(4637,'commerce','3.86.101.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 13:52:29','2019-10-16 13:52:29'),(4638,'english','105.112.46.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 16:05:22','2019-10-16 16:08:03'),(4639,'insurance','34.203.203.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 14:09:34','2019-10-17 14:09:34'),(4640,'chemistry','3.85.245.126',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 17:30:44','2019-10-17 17:55:33'),(4641,'english','41.217.98.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 22:28:02','2019-10-17 22:28:02'),(4642,'english','41.217.89.22',145,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 04:35:09','2019-10-18 06:06:03'),(4643,'chemistry','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:23:36','2019-10-18 06:23:36'),(4644,'accounting','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:59:21','2019-10-18 06:59:21'),(4645,'commerce','154.120.107.217',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 07:40:00','2019-10-18 07:41:16'),(4646,'commerce','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 08:40:41','2019-10-18 08:40:41'),(4647,'mathematics','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 09:07:15','2019-10-18 09:07:15'),(4648,'chemistry','41.191.105.90',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 15:48:28','2019-10-18 15:49:58'),(4649,'mathematics','54.234.162.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 18:25:03','2019-10-18 18:25:03'),(4650,'english','105.112.46.232',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 19:58:44','2019-10-20 16:01:53'),(4651,'mathematics','105.112.46.232',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 20:37:17','2019-10-18 20:37:38'),(4652,'english','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4653,'mathematics','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4654,'accounting','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4655,'englishlit','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4656,'biology','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4657,'government','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4658,'chemistry','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4659,'geography','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4660,'irk','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4661,'civiledu','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4662,'currentaffairs','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:13'),(4663,'government','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:41:48','2019-10-19 05:41:48'),(4664,'english','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:45:20','2019-10-19 05:45:20'),(4665,'mathematics','197.210.44.151',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:55','2019-10-19 08:59:56'),(4666,'biology','197.210.44.151',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:56','2019-10-19 09:27:54'),(4667,'english','105.112.73.172',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 09:37:46','2019-10-19 09:37:48'),(4668,'chemistry','207.46.13.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 15:25:34','2019-10-19 15:25:34'),(4669,'chemistry','3.209.80.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 16:51:54','2019-10-19 16:51:54'),(4670,'english','18.206.241.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 04:13:55','2019-10-20 04:13:55'),(4671,'mathematics','54.80.29.100',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:33:07','2019-10-20 12:33:46'),(4672,'chemistry','207.46.13.122',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:35:39','2019-10-20 12:35:39'),(4673,'mathematics','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4674,'accounting','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4675,'englishlit','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4676,'government','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4677,'crk','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4678,'insurance','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4679,'currentaffairs','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:17','2019-10-20 16:35:17'),(4680,'chemistry','105.112.41.90',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 17:54:25','2019-10-20 17:54:28'),(4681,'english','105.112.44.170',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 18:58:27','2019-10-20 18:58:27'),(4682,'chemistry','141.8.188.161',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 21:56:45','2019-10-20 21:56:46'),(4683,'irk','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:28:19','2019-10-21 01:28:19'),(4684,'mathematics','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:36:39','2019-10-21 01:36:39'),(4685,'chemistry','197.210.64.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 05:52:18','2019-10-21 05:52:19'),(4686,'insurance','52.90.91.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 08:46:16','2019-10-21 08:46:16'),(4687,'chemistry','197.210.8.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:11:30','2019-10-21 10:11:30'),(4688,'chemistry','197.210.47.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:26:02','2019-10-21 10:26:26'),(4689,'mathematics','197.210.47.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:27:16','2019-10-21 10:27:16'),(4690,'chemistry','34.228.38.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 15:27:28','2019-10-21 15:27:28'),(4691,'chemistry','141.8.143.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 20:01:50','2019-10-21 20:01:50'),(4692,'chemistry','54.36.149.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 03:32:50','2019-10-22 03:32:50'),(4693,'currentaffairs','3.95.63.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 10:54:12','2019-10-22 10:54:12'),(4694,'english','41.203.78.1',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:10:05','2019-10-22 13:10:05'),(4695,'biology','54.196.129.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:22:41','2019-10-22 13:22:41'),(4696,'chemistry','197.210.53.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:09:28','2020-04-07 17:00:28'),(4697,'chemistry','197.210.53.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:10:41','2019-10-22 15:10:41'),(4698,'commerce','3.87.222.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:12:55','2019-10-22 17:12:55'),(4699,'physics','66.249.64.239',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:37:27','2019-10-22 17:37:29'),(4700,'currentaffairs','18.212.225.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 21:17:58','2019-10-22 21:17:58'),(4701,'accounting','54.89.96.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 23:16:46','2019-10-22 23:16:46'),(4702,'government','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 01:59:48','2019-10-23 01:59:48'),(4703,'mathematics','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 02:02:09','2019-10-23 02:02:09'),(4704,'chemistry','66.249.88.71',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 08:13:03','2019-10-23 14:35:06'),(4705,'englishlit','3.85.139.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 11:12:36','2019-10-23 11:12:36'),(4706,'english','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4707,'mathematics','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4708,'accounting','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:13'),(4709,'government','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4710,'crk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4711,'irk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4712,'civiledu','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4713,'chemistry','66.249.83.18',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:35:06','2019-11-06 14:40:34'),(4714,'chemistry','197.211.57.153',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:36:10','2019-10-23 14:40:46'),(4715,'mathematics','197.211.57.153',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:37:19','2019-10-23 14:38:17'),(4716,'chemistry','74.125.210.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:38:27','2019-10-23 14:38:27'),(4717,'history','3.84.20.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 17:22:28','2019-10-23 17:22:28'),(4718,'english','105.112.44.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 18:01:51','2019-10-23 18:01:51'),(4719,'english','105.112.53.50',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:15:14','2019-10-23 20:15:14'),(4720,'biology','3.89.55.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:28:18','2019-10-23 20:28:18'),(4721,'history','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 00:17:49','2019-10-24 00:17:49'),(4722,'english','41.190.3.189',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 03:02:51','2019-10-24 03:02:52'),(4723,'chemistry','197.253.35.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:18:00','2019-10-24 07:18:00'),(4724,'chemistry','91.242.162.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:42:43','2019-10-24 07:52:10'),(4725,'chemistry','41.203.73.203',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:45:04','2019-10-24 08:53:03'),(4726,'biology','41.203.73.203',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:53:59','2019-10-24 08:54:01'),(4727,'chemistry','129.205.112.139',108,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 11:19:07','2019-10-24 12:02:39'),(4728,'chemistry','154.120.87.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 17:55:11','2019-10-24 17:56:27'),(4729,'chemistry','54.36.148.163',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 19:43:38','2019-10-24 19:43:39'),(4730,'accounting','34.204.7.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 06:14:19','2019-10-25 06:14:19'),(4731,'history','23.22.145.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 07:34:04','2019-10-25 07:34:04'),(4732,'mathematics','129.205.112.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:18:03','2019-10-25 09:18:03'),(4733,'commerce','129.205.112.139',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:29:16','2019-10-25 09:31:21'),(4734,'english','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4735,'biology','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4736,'physics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4737,'government','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4738,'crk','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:03'),(4739,'economics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4740,'civiledu','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4741,'chemistry','100.43.81.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:45:17','2019-10-25 16:45:17'),(4742,'crk','18.212.239.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 18:29:40','2019-10-25 18:29:40'),(4743,'commerce','35.173.231.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 23:55:41','2019-10-25 23:55:41'),(4744,'accounting','54.234.193.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 02:03:11','2019-10-26 02:03:11'),(4745,'english','197.242.102.245',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:44:02','2019-10-26 12:15:20'),(4746,'mathematics','197.242.102.245',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:46:55','2019-10-26 05:46:55'),(4747,'chemistry','41.203.73.208',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 09:43:31','2019-10-26 09:47:32'),(4748,'biology','54.81.220.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 15:10:39','2019-10-26 15:10:39'),(4749,'geography','18.204.197.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 16:03:30','2019-10-26 16:03:30'),(4750,'insurance','54.80.115.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 18:02:39','2019-10-26 18:02:39'),(4751,'commerce','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4752,'accounting','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4753,'biology','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4754,'chemistry','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4755,'physics','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4756,'government','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4757,'crk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4758,'englishlit','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:35'),(4759,'irk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4760,'insurance','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4761,'history','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4762,'chemistry','120.18.21.195',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:10','2019-10-27 05:56:57'),(4763,'mathematics','120.18.21.195',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:46','2019-10-27 05:25:47'),(4764,'crk','18.205.116.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:31:51','2019-10-27 05:31:51'),(4765,'english','154.120.107.117',322,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 06:13:42','2019-10-27 10:26:33'),(4766,'commerce','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4767,'accounting','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4768,'biology','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4769,'chemistry','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:52'),(4770,'englishlit','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4771,'government','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4772,'irk','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4773,'chemistry','157.55.39.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:39:09','2019-10-27 14:39:09'),(4774,'englishlit','3.88.251.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:47:29','2019-10-27 14:47:29'),(4775,'commerce','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 18:59:58','2019-10-27 18:59:58'),(4776,'crk','3.88.198.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:12:54','2019-10-28 01:12:54'),(4777,'chemistry','40.77.167.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:42:41','2019-10-28 01:42:41'),(4778,'biology','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 04:16:20','2019-10-28 04:16:20'),(4779,'government','18.232.138.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 06:35:55','2019-10-28 06:35:55'),(4780,'physics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:30:28','2019-10-28 07:30:29'),(4781,'mathematics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:31:02','2019-10-28 07:31:04'),(4782,'government','3.95.66.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 08:05:51','2019-10-28 08:05:51'),(4783,'english','105.112.72.133',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:29:38','2019-10-28 09:29:39'),(4784,'chemistry','197.210.52.23',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:51:40','2019-10-28 09:53:37'),(4785,'chemistry','197.210.53.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:53:00','2019-10-28 09:53:00'),(4786,'crk','3.90.3.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:10:58','2019-10-28 11:10:58'),(4787,'chemistry','197.210.8.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:13:17','2019-10-28 11:13:17'),(4788,'currentaffairs','197.210.8.173',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:14:37','2019-10-28 11:14:46'),(4789,'civiledu','34.207.224.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 17:19:22','2019-10-28 17:19:22'),(4790,'biology','3.89.72.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 03:11:01','2019-10-29 03:11:01'),(4791,'government','54.89.226.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 05:28:30','2019-10-29 05:28:30'),(4792,'economics','3.93.216.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 06:59:51','2019-10-29 06:59:51'),(4793,'english','105.112.40.87',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 09:57:48','2019-10-29 12:46:07'),(4794,'english','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 11:36:32','2019-10-29 11:36:32'),(4795,'accounting','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 12:02:06','2019-10-29 12:02:06'),(4796,'mathematics','105.112.73.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:23:32','2019-10-29 15:23:32'),(4797,'english','41.190.30.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:36:54','2019-10-29 15:36:54'),(4798,'mathematics','105.112.17.202',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:55:44','2019-10-29 15:55:44'),(4799,'english','196.27.128.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:57:02','2019-10-29 15:57:02'),(4800,'chemistry','196.27.128.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:59:40','2019-10-29 15:59:41'),(4801,'mathematics','154.68.226.2',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:06:09','2019-10-29 16:06:09'),(4802,'english','197.210.227.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:21:51','2019-10-29 16:21:51'),(4803,'english','107.167.106.232',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:41:14','2019-10-29 16:42:06'),(4804,'mathematics','18.206.56.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:46:50','2019-10-29 16:46:50'),(4805,'english','105.112.73.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:52:32','2019-10-29 16:52:33'),(4806,'englishlit','197.211.58.67',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:08:44','2019-10-29 17:08:44'),(4807,'government','197.211.58.70',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:11:12','2019-10-29 17:11:13'),(4808,'chemistry','129.56.94.58',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:18','2019-10-29 17:48:50'),(4809,'mathematics','197.210.85.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:26','2019-10-29 17:48:26'),(4810,'mathematics','129.56.94.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:49:32','2019-10-29 17:49:35'),(4811,'chemistry','197.210.53.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:31:50','2019-10-29 19:31:50'),(4812,'english','105.112.53.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:33:58','2019-10-29 19:33:58'),(4813,'chemistry','197.210.52.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:34:08','2019-10-29 19:34:08'),(4814,'mathematics','105.112.53.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:35:34','2019-10-29 19:35:34'),(4815,'chemistry','136.243.91.32',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 20:51:17','2020-01-07 22:24:25'),(4816,'english','54.198.170.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 22:10:58','2019-10-29 22:10:58'),(4817,'physics','3.81.122.72',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:05:58','2019-10-29 23:38:38'),(4818,'english','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4819,'mathematics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4820,'commerce','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4821,'englishlit','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4822,'economics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:39'),(4823,'civiledu','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:39','2019-10-29 23:38:39'),(4824,'mathematics','52.205.254.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 03:27:41','2019-10-30 03:27:41'),(4825,'accounting','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4826,'englishlit','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4827,'geography','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4828,'economics','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4829,'irk','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:56'),(4830,'civiledu','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4831,'currentaffairs','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4832,'mathematics','197.210.226.198',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-30 04:44:48','2020-05-28 20:25:41'),(4833,'english','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:02:12','2019-10-30 06:02:12'),(4834,'physics','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:03:57','2019-10-30 06:03:57'),(4835,'mathematics','34.226.220.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 07:03:46','2019-10-30 07:03:46'),(4836,'chemistry','197.210.57.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 12:45:49','2019-10-30 12:45:49'),(4837,'economics','107.23.28.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 18:15:18','2019-10-30 18:15:18'),(4838,'civiledu','18.214.99.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 19:00:42','2019-10-30 19:00:42'),(4839,'chemistry','197.210.65.172',97,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:11:50'),(4840,'chemistry','197.210.65.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:02:02'),(4841,'chemistry','197.210.57.224',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:55:52','2019-10-30 20:55:53'),(4842,'mathematics','197.210.57.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:56:37','2019-10-30 20:56:37'),(4843,'mathematics','197.210.57.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4844,'mathematics','197.210.57.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4845,'mathematics','197.210.57.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4846,'chemistry','197.210.57.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4847,'chemistry','197.211.58.123',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:15','2019-10-31 11:21:15'),(4848,'mathematics','197.211.58.123',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:24','2019-10-31 13:23:52'),(4849,'chemistry','91.242.162.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 17:52:10','2019-10-31 17:52:10'),(4850,'chemistry','197.210.84.213',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 18:55:16','2019-10-31 18:58:56'),(4851,'insurance','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 20:05:10','2019-10-31 20:05:10'),(4852,'history','18.206.189.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 04:45:22','2019-11-01 04:45:22'),(4853,'crk','54.86.61.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 06:49:49','2019-11-01 06:49:49'),(4854,'biology','54.198.198.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 07:35:21','2019-11-01 07:35:21'),(4855,'english','105.112.77.49',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:39:35','2019-11-01 09:39:36'),(4856,'government','54.174.215.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:52:23','2019-11-01 09:52:23'),(4857,'economics','107.22.138.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 11:25:59','2019-11-01 11:25:59'),(4858,'chemistry','34.207.95.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 14:53:34','2019-11-01 14:53:34'),(4859,'english','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 16:08:03','2019-11-01 16:08:03'),(4860,'englishlit','54.236.206.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 22:07:32','2019-11-01 22:07:32'),(4861,'biology','175.37.47.44',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 23:06:13','2019-11-01 23:06:14'),(4862,'accounting','54.90.121.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 06:44:10','2019-11-02 06:44:10'),(4863,'chemistry','40.77.167.175',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:15:55','2019-11-02 07:15:56'),(4864,'history','35.171.19.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:52:07','2019-11-02 07:52:07'),(4865,'english','105.112.73.230',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:32:09','2019-11-02 13:32:09'),(4866,'crk','3.84.129.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:39:50','2019-11-02 13:39:50'),(4867,'chemistry','197.211.58.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 14:34:58','2019-11-02 14:34:58'),(4868,'commerce','54.162.250.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 16:05:23','2019-11-02 16:05:23'),(4869,'accounting','35.172.138.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 18:09:32','2019-11-02 18:09:32'),(4870,'economics','100.27.31.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 20:25:53','2019-11-02 20:25:53'),(4871,'insurance','18.205.22.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 04:08:45','2019-11-03 04:08:45'),(4872,'englishlit','34.204.2.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 07:47:31','2019-11-03 07:47:31'),(4873,'mathematics','105.112.40.245',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 12:10:24','2019-11-03 12:12:07'),(4874,'chemistry','197.211.58.152',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 17:54:39','2019-11-03 17:55:20'),(4875,'commerce','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:18:15','2019-11-03 19:18:15'),(4876,'english','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:41:39','2019-11-03 19:41:39'),(4877,'physics','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 20:10:58','2019-11-03 20:10:58'),(4878,'crk','54.242.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 21:58:54','2019-11-03 21:58:54'),(4879,'chemistry','197.210.58.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:22:50','2019-11-03 23:22:50'),(4880,'chemistry','197.210.57.85',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:23:06','2019-11-03 23:23:09'),(4881,'chemistry','41.58.233.184',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 00:27:44','2019-11-04 00:30:17'),(4882,'crk','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 01:28:20','2019-11-04 01:28:20'),(4883,'english','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4884,'biology','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4885,'mathematics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4886,'physics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4887,'englishlit','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4888,'government','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4889,'civiledu','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4890,'crk','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4891,'insurance','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4892,'geography','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4893,'currentaffairs','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4894,'accounting','3.84.43.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 19:32:08','2019-11-04 19:32:08'),(4895,'english','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:48','2019-11-05 02:19:48'),(4896,'commerce','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4897,'accounting','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4898,'englishlit','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4899,'crk','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4900,'geography','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4901,'insurance','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4902,'chemistry','54.36.148.22',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:26:28','2019-11-05 02:26:30'),(4903,'mathematics','34.229.222.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 10:07:21','2019-11-05 10:07:21'),(4904,'chemistry','154.120.94.130',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 12:22:45','2019-11-05 12:23:42'),(4905,'commerce','197.211.58.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 19:23:50','2019-11-05 19:23:51'),(4906,'mathematics','18.209.50.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 20:22:48','2019-11-05 20:22:48'),(4907,'chemistry','89.234.68.70',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:17:05','2019-11-06 04:17:44'),(4908,'chemistry','83.71.247.36',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:21:42','2019-11-06 04:22:32'),(4909,'english','18.233.99.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 07:47:51','2019-11-06 07:47:51'),(4910,'currentaffairs','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 09:50:51','2019-11-06 09:50:51'),(4911,'accounting','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 10:24:20','2019-11-06 10:24:20'),(4912,'mathematics','54.145.206.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 12:14:51','2019-11-06 12:14:51'),(4913,'insurance','3.82.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 16:51:53','2019-11-06 16:51:53'),(4914,'history','54.84.14.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 23:14:10','2019-11-06 23:14:10'),(4915,'history','18.212.250.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 02:06:08','2019-11-07 02:06:08'),(4916,'mathematics','197.211.58.187',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 11:26:16','2019-11-07 11:28:37'),(4917,'englishlit','52.205.0.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 16:47:19','2019-11-07 16:47:19'),(4918,'chemistry','66.249.64.116',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 17:17:10','2020-01-25 10:15:50'),(4919,'irk','18.212.71.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 18:58:31','2019-11-07 18:58:31'),(4920,'accounting','54.225.61.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 21:07:53','2019-11-07 21:07:53'),(4921,'english','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:28:09','2019-11-08 00:28:09'),(4922,'history','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:36:53','2019-11-08 00:36:53'),(4923,'crk','35.172.133.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 05:00:20','2019-11-08 05:00:20'),(4924,'commerce','54.91.119.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 06:26:52','2019-11-08 06:26:52'),(4925,'accounting','34.207.107.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 09:53:52','2019-11-08 09:53:52'),(4926,'economics','54.157.32.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 11:20:44','2019-11-08 11:20:44'),(4927,'english','66.249.66.210',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 14:58:50','2019-11-08 14:58:51'),(4928,'chemistry','54.234.228.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 17:47:37','2019-11-08 17:47:37'),(4929,'insurance','3.88.176.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 19:01:26','2019-12-23 08:02:50'),(4930,'chemistry','157.55.39.209',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 21:25:34','2019-11-08 21:25:35'),(4931,'chemistry','91.242.162.26',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:13:24','2019-11-08 22:13:25'),(4932,'englishlit','18.212.146.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:21:32','2019-11-08 22:21:32'),(4933,'chemistry','197.210.70.127',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 00:49:45','2019-11-09 02:10:25'),(4934,'history','197.210.70.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:10:38','2019-11-09 01:10:38'),(4935,'english','197.210.70.127',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:12:33','2019-11-09 02:27:22'),(4936,'crk','34.227.56.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:23:16','2019-11-09 02:23:16'),(4937,'english','197.210.70.11',596,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:29:42','2019-11-09 02:43:37'),(4938,'mathematics','197.210.70.11',115,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:48:03','2019-11-09 03:02:34'),(4939,'commerce','197.210.70.11',887,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-09 03:04:20','2019-11-09 03:25:18'),(4940,'accounting','197.210.70.11',514,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:25:25','2019-11-09 03:37:34'),(4941,'biology','197.210.70.11',549,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:37:38','2019-11-09 07:08:42'),(4942,'physics','54.224.42.134',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 05:11:09','2019-11-09 05:11:09'),(4943,'physics','197.210.70.11',62,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:08:48','2019-11-09 07:17:18'),(4944,'chemistry','197.210.70.11',322,'','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:22:44','2020-01-16 09:56:50'),(4945,'englishlit','197.210.70.11',361,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:33:50','2019-11-09 07:42:56'),(4946,'government','197.210.70.11',438,'Nigeria','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:43:01','2019-11-09 08:01:54'),(4947,'irk','197.210.70.11',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:06:48','2019-11-09 08:07:41'),(4948,'mathematics','197.210.70.169',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:46','2019-11-09 08:08:46'),(4949,'crk','197.210.70.169',391,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:53','2019-11-09 08:46:48'),(4950,'civiledu','197.210.70.169',393,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:09:11','2019-11-09 09:00:04'),(4951,'insurance','197.210.70.169',350,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:11:33','2019-11-09 09:05:35'),(4952,'history','197.210.70.169',50,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:13:57','2019-11-09 08:15:02'),(4953,'geography','197.210.70.169',236,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:16:57','2019-11-09 08:47:31'),(4954,'economics','197.210.70.169',461,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:22:02','2019-11-09 08:53:44'),(4955,'irk','197.210.70.169',33,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:13','2019-11-09 08:57:41'),(4956,'currentaffairs','197.210.70.169',44,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:59','2019-11-09 09:06:11'),(4957,'physics','197.210.70.169',68,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:30:48','2019-11-09 08:33:02'),(4958,'government','197.210.70.169',285,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:32:21','2019-11-09 08:38:37'),(4959,'physics','3.85.57.153',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:37:56','2019-11-09 08:37:56'),(4960,'chemistry','159.138.155.115',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:57:32','2019-11-09 08:57:32'),(4961,'commerce','54.87.49.120',3,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 10:09:51'),(4962,'accounting','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 09:33:31'),(4963,'chemistry','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4964,'government','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4965,'irk','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4966,'civiledu','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4967,'history','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4968,'englishlit','54.87.49.120',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:36:47','2019-11-09 09:36:47'),(4969,'english','105.112.45.248',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:58:49','2019-11-09 09:58:49'),(4970,'english','54.158.200.213',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 12:26:02','2019-11-09 12:26:02'),(4971,'crk','3.95.160.82',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 14:20:40','2019-11-09 14:20:40'),(4972,'mathematics','18.206.174.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 06:53:11','2019-11-10 06:53:11'),(4973,'accounting','54.90.247.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 09:13:09','2019-11-10 09:13:09'),(4974,'chemistry','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:29:58','2019-11-10 11:29:58'),(4975,'english','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:56:18','2019-11-10 11:56:18'),(4976,'mathematics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4977,'commerce','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4978,'physics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4979,'englishlit','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:03'),(4980,'crk','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4981,'geography','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4982,'economics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4983,'mathematics','54.175.81.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 21:05:09','2019-11-10 21:05:09'),(4984,'biology','3.90.109.201',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:25'),(4985,'biology','3.90.109.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:10'),(4986,'chemistry','102.134.115.193',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 14:41:27','2019-11-11 14:46:16'),(4987,'chemistry','54.36.148.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 16:31:40','2019-11-11 16:31:40'),(4988,'economics','3.91.196.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 18:48:42','2019-11-11 18:48:42'),(4989,'mathematics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4990,'commerce','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4991,'biology','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:46'),(4992,'physics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4993,'economics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4994,'currentaffairs','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4995,'history','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4996,'english','54.90.246.133',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:35:46','2019-11-11 20:35:46'),(4997,'mathematics','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:33:47','2019-11-11 23:33:47'),(4998,'insurance','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:47:30','2019-11-11 23:47:30'),(4999,'chemistry','14.210.2.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 02:24:20','2019-11-12 02:24:20'),(5000,'chemistry','3.233.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 05:05:46','2019-11-12 05:05:46'),(5001,'biology','54.92.179.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 08:42:22','2019-11-12 08:42:22'),(5002,'history','54.85.253.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 09:42:51','2019-11-12 09:42:51'),(5003,'chemistry','197.210.71.200',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 12:32:36','2019-11-12 12:32:37'),(5004,'chemistry','223.73.239.66',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 15:29:45','2019-11-12 15:29:46'),(5005,'chemistry','41.190.30.18',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 18:17:17','2019-11-12 18:17:43'),(5006,'englishlit','3.92.166.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 20:15:35','2019-11-12 20:15:35'),(5007,'accounting','103.10.31.31',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:23:01','2019-11-13 05:29:07'),(5008,'physics','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:54','2019-11-13 05:28:55'),(5009,'biology','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:59','2019-11-13 05:29:00'),(5010,'accounting','54.166.15.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 08:33:25','2019-11-13 08:33:25'),(5011,'biology','66.249.64.116',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 09:19:50','2019-11-13 09:19:52'),(5012,'history','54.159.26.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 11:22:16','2019-11-13 11:22:16'),(5013,'physics','66.249.64.112',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 12:14:10','2020-01-11 03:27:45'),(5014,'accounting','3.88.111.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 17:40:10','2019-11-13 17:40:10'),(5015,'chemistry','207.46.13.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 19:01:59','2019-11-13 19:01:59'),(5016,'economics','3.88.230.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:09','2019-11-13 20:05:09'),(5017,'english','105.112.77.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:42','2019-11-13 20:05:45'),(5018,'chemistry','105.112.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 00:12:42','2019-11-14 00:12:42'),(5019,'insurance','3.87.3.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 04:04:18','2019-11-14 04:04:18'),(5020,'english','104.133.10.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:36','2019-11-14 06:14:47'),(5021,'crk','104.133.10.100',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:48','2019-11-14 06:11:51'),(5022,'chemistry','91.242.162.9',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:50:51','2019-11-14 06:50:52'),(5023,'englishlit','34.239.138.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 08:49:26','2019-11-14 08:49:26'),(5024,'english','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5025,'mathematics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5026,'chemistry','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:12','2019-11-14 10:38:15'),(5027,'physics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:14','2019-11-14 10:38:17'),(5028,'commerce','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:19','2019-11-14 10:38:23'),(5029,'currentaffairs','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:21','2019-11-14 10:38:24'),(5030,'government','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:22','2019-11-14 10:38:25'),(5031,'accounting','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:24','2019-11-14 10:38:27'),(5032,'economics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:25','2019-11-14 10:38:28'),(5033,'biology','104.132.127.96',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:27','2019-11-14 10:44:31'),(5034,'geography','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:29','2019-11-14 10:38:32'),(5035,'history','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:31','2019-11-14 10:38:34'),(5036,'insurance','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:33','2019-11-14 10:38:36'),(5037,'civiledu','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:35','2019-11-14 10:38:38'),(5038,'crk','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:37','2019-11-14 10:38:40'),(5039,'englishlit','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:38','2019-11-14 10:38:41'),(5040,'mathematics','197.156.253.124',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 11:11:37','2019-11-14 11:13:49'),(5041,'crk','34.229.192.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:42:00','2019-11-14 12:42:00'),(5042,'chemistry','105.112.113.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:43:31','2019-11-14 12:43:31'),(5043,'english','154.118.34.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 15:44:21','2019-11-14 15:44:24'),(5044,'chemistry','82.145.221.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 17:59:18','2019-11-14 17:59:18'),(5045,'physics','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:46:23','2019-11-14 18:46:23'),(5046,'english','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:53:00','2019-11-14 18:53:00'),(5047,'commerce','3.87.121.240',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-14 19:14:45','2019-11-14 19:14:45'),(5048,'crk','34.238.39.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 22:51:14','2019-11-14 22:51:14'),(5049,'economics','34.228.32.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 02:11:21','2019-11-15 02:11:21'),(5050,'chemistry','105.112.55.179',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:49:45','2019-11-15 08:02:02'),(5051,'physics','105.112.55.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:51:09','2019-11-15 07:51:09'),(5052,'chemistry','105.112.72.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 12:48:53','2019-11-15 12:50:34'),(5053,'accounting','34.203.12.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 19:40:58','2019-11-15 19:40:58'),(5054,'commerce','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5055,'accounting','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5056,'biology','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5057,'chemistry','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:32'),(5058,'geography','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5059,'economics','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5060,'insurance','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5061,'biology','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5062,'chemistry','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5063,'englishlit','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5064,'geography','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5065,'economics','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5066,'irk','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5067,'currentaffairs','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5068,'mathematics','18.212.5.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 08:58:36','2019-11-16 08:58:36'),(5069,'english','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:23:31','2019-11-16 11:23:31'),(5070,'mathematics','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:21','2019-11-16 11:30:21'),(5071,'mathematics','105.112.183.226',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:22','2019-11-16 11:30:23'),(5072,'english','105.112.183.226',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:32:08','2019-11-16 11:32:09'),(5073,'chemistry','3.88.21.220',320,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:53:05','2019-11-16 14:57:29'),(5074,'english','34.207.122.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:55:25','2019-11-16 14:55:25'),(5075,'chemistry','41.58.118.229',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:02:07','2019-11-16 15:05:13'),(5076,'physics','41.58.118.229',147,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:06:10','2019-11-16 15:11:36'),(5077,'mathematics','41.58.118.229',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:17:15','2019-11-16 15:17:18'),(5078,'chemistry','34.227.24.189',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:20:27','2019-11-16 15:20:41'),(5079,'english','41.58.118.229',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-16 15:21:00','2019-11-16 15:23:00'),(5080,'government','41.58.118.229',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:23:59','2019-11-16 15:24:02'),(5081,'chemistry','105.112.183.165',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:28:10','2019-11-16 15:28:10'),(5082,'chemistry','18.212.227.139',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:30:31','2019-11-16 15:30:34'),(5083,'chemistry','34.238.168.46',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:34:19','2019-11-16 15:42:25'),(5084,'chemistry','54.88.106.95',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:46:48','2019-11-16 15:46:51'),(5085,'chemistry','34.227.27.84',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:59:45','2019-11-16 16:02:50'),(5086,'english','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 16:19:39','2019-11-16 16:19:42'),(5087,'english','197.210.28.14',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 17:38:36','2019-11-16 17:38:36'),(5088,'geography','3.92.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 02:58:10','2019-11-17 02:58:10'),(5089,'mathematics','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:39:52','2019-11-17 05:56:58'),(5090,'english','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:40:15','2019-11-17 05:56:35'),(5091,'english','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:04:57','2019-11-17 07:04:57'),(5092,'commerce','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:11:06','2019-11-17 07:11:06'),(5093,'currentaffairs','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:58:01','2019-11-17 07:58:01'),(5094,'economics','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 08:25:21','2019-11-17 08:25:21'),(5095,'mathematics','100.26.97.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 10:58:29','2019-11-17 10:58:29'),(5096,'englishlit','100.27.23.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:42:13','2019-11-17 11:42:13'),(5097,'chemistry','3.226.254.115',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:59:22','2019-11-17 12:24:41'),(5098,'mathematics','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:07:43','2019-11-17 13:07:43'),(5099,'insurance','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:16:37','2019-11-17 13:16:37'),(5100,'commerce','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:52'),(5101,'accounting','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:49'),(5102,'physics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:50'),(5103,'crk','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:46'),(5104,'geography','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:42'),(5105,'economics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:44'),(5106,'history','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:40'),(5107,'accounting','3.90.28.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 01:39:00','2019-11-18 01:39:00'),(5108,'englishlit','54.145.175.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:30:31','2019-11-18 11:30:31'),(5109,'chemistry','154.68.195.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:44:51','2019-11-18 11:44:51'),(5110,'chemistry','105.112.177.109',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 16:07:34','2019-11-18 16:09:34'),(5111,'history','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 22:55:46','2019-12-08 23:07:31'),(5112,'biology','52.90.143.9',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:27:47','2019-11-25 19:20:30'),(5113,'english','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5114,'commerce','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5115,'government','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5116,'crk','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5117,'insurance','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5118,'currentaffairs','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5119,'chemistry','157.55.39.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:14:36','2019-11-19 04:14:36'),(5120,'history','54.152.47.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:20:09','2019-11-19 04:20:09'),(5121,'crk','3.87.113.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 06:24:27','2019-11-19 06:24:27'),(5122,'commerce','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:06:20','2019-11-19 09:06:20'),(5123,'biology','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:12:53','2019-11-19 09:12:53'),(5124,'chemistry','129.56.29.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:13:53','2019-11-19 09:13:53'),(5125,'mathematics','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:13:31','2019-11-19 10:13:31'),(5126,'commerce','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:15:00','2019-11-19 10:15:00'),(5127,'english','105.112.61.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:46:39','2019-11-19 10:46:39'),(5128,'accounting','3.87.101.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 11:57:03','2019-11-19 11:57:03'),(5129,'accounting','54.90.128.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 13:36:06','2019-11-19 13:36:06'),(5130,'economics','54.198.9.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 14:11:01','2019-11-19 14:11:01'),(5131,'chemistry','82.145.221.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 17:06:44','2019-11-19 17:06:59'),(5132,'commerce','34.207.90.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 18:09:26','2019-11-19 18:09:26'),(5133,'insurance','35.175.235.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 21:47:15','2019-11-19 21:47:15'),(5134,'economics','54.243.7.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 23:21:26','2019-11-19 23:21:26'),(5135,'englishlit','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 00:51:45','2019-11-20 00:51:45'),(5136,'accounting','3.81.87.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 03:46:05','2019-11-20 03:46:05'),(5137,'crk','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 05:37:07','2019-11-20 05:37:07'),(5138,'geography','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 06:00:11','2019-11-20 06:00:11'),(5139,'englishlit','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:11:12','2019-11-20 13:11:12'),(5140,'physics','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:12:49','2019-11-20 13:12:49'),(5141,'commerce','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:10:33','2019-11-20 14:10:33'),(5142,'english','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:24:22','2019-11-20 14:24:22'),(5143,'englishlit','3.86.15.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:59:45','2019-11-20 14:59:45'),(5144,'crk','54.211.114.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 18:58:30','2019-11-20 18:58:30'),(5145,'englishlit','54.227.23.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 20:17:56','2019-11-20 20:17:56'),(5146,'economics','54.173.226.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 02:00:33','2019-11-21 02:00:33'),(5147,'currentaffairs','3.87.237.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 15:38:11','2019-11-21 15:38:11'),(5148,'englishlit','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:11:52','2019-11-21 19:11:52'),(5149,'civiledu','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:27:16','2019-11-21 19:27:16'),(5150,'english','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:41:38','2019-11-21 19:41:38'),(5151,'accounting','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 20:05:16','2019-11-21 20:05:16'),(5152,'chemistry','61.138.222.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 02:40:12','2019-11-22 02:40:12'),(5153,'commerce','34.229.113.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 05:56:54','2019-11-22 05:56:54'),(5154,'english','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5155,'mathematics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5156,'physics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5157,'crk','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5158,'geography','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5159,'insurance','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5160,'history','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5161,'mathematics','41.191.105.89',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:47:00','2019-11-22 09:47:25'),(5162,'mathematics','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:28:36','2019-11-22 18:28:36'),(5163,'irk','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:38:47','2019-11-22 18:38:47'),(5164,'chemistry','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:24:34','2019-11-22 19:24:37'),(5165,'mathematics','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:26:12','2019-11-22 19:26:15'),(5166,'chemistry','154.160.27.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 20:46:34','2019-11-22 20:46:34'),(5167,'government','34.235.143.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 23:08:27','2019-11-22 23:08:27'),(5168,'commerce','3.93.212.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:05:01','2019-11-23 01:05:01'),(5169,'insurance','107.23.192.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:56:47','2019-11-23 01:56:47'),(5170,'english','54.87.140.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 03:56:10','2019-11-23 03:56:10'),(5171,'crk','3.80.89.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 04:32:38','2019-11-23 04:32:38'),(5172,'chemistry','40.77.167.170',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 06:00:38','2019-11-23 06:00:39'),(5173,'mathematics','3.87.21.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 13:23:50','2019-11-23 13:23:50'),(5174,'chemistry','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:04:39','2019-11-23 14:04:39'),(5175,'geography','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:13:49','2019-11-23 14:13:49'),(5176,'chemistry','3.82.225.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:59:38','2019-11-23 14:59:38'),(5177,'currentaffairs','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 18:52:45','2019-11-23 18:52:45'),(5178,'geography','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 19:17:25','2019-11-23 19:17:25'),(5179,'english','54.90.185.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 20:11:52','2019-11-23 20:11:52'),(5180,'geography','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 21:06:07','2019-11-23 21:06:07'),(5181,'chemistry','3.87.114.3',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 00:02:34','2019-11-24 00:03:13'),(5182,'geography','3.92.185.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 03:57:44','2019-11-24 03:57:44'),(5183,'englishlit','18.212.68.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 07:58:51','2019-11-24 07:58:51'),(5184,'chemistry','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 08:41:40','2019-11-24 08:41:40'),(5185,'currentaffairs','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 09:06:30','2019-11-24 09:06:30'),(5186,'biology','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 11:46:34','2019-11-24 11:46:34'),(5187,'commerce','3.94.119.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 13:14:32','2019-11-24 13:14:32'),(5188,'economics','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 14:33:11','2019-11-24 14:33:11'),(5189,'commerce','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:06:24','2019-11-24 15:06:24'),(5190,'english','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:27:19','2019-11-24 15:27:19'),(5191,'chemistry','159.138.159.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 18:34:43','2020-01-29 06:08:04'),(5192,'physics','35.173.191.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:09:52','2019-11-24 19:09:52'),(5193,'englishlit','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:56:50','2019-11-24 19:56:50'),(5194,'mathematics','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 20:10:28','2019-11-24 20:10:28'),(5195,'geography','3.95.237.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:00:07','2019-11-24 22:00:07'),(5196,'chemistry','129.205.112.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:36:55','2019-11-24 22:36:55'),(5197,'mathematics','34.239.115.115',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-25 00:20:37'),(5198,'accounting','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5199,'geography','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5200,'economics','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5201,'insurance','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5202,'currentaffairs','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5203,'history','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5204,'government','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:14:49','2019-11-25 00:14:49'),(5205,'biology','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:26:53','2019-11-25 00:26:53'),(5206,'chemistry','91.242.162.34',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:29:05','2019-11-25 00:29:05'),(5207,'mathematics','54.161.28.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 01:18:44','2019-11-25 01:18:44'),(5208,'insurance','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:18:39','2019-11-25 02:18:39'),(5209,'english','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:50:26','2019-11-25 02:50:26'),(5210,'biology','3.80.24.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 13:54:57','2019-11-25 13:54:57'),(5211,'accounting','54.174.106.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:15:50','2019-11-25 22:15:50'),(5212,'chemistry','54.36.150.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:39:17','2019-11-25 22:39:17'),(5213,'chemistry','59.62.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:05:11','2019-11-26 00:05:11'),(5214,'biology','52.207.70.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:23:52','2019-11-26 00:23:52'),(5215,'currentaffairs','3.92.68.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 04:10:20','2019-11-26 04:10:20'),(5216,'biology','3.80.157.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 09:41:29','2019-11-26 09:41:29'),(5217,'currentaffairs','34.201.221.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 13:34:13','2019-11-26 13:34:13'),(5218,'biology','54.226.198.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 19:19:54','2019-11-26 19:19:54'),(5219,'currentaffairs','3.90.165.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 23:25:19','2019-11-26 23:25:19'),(5220,'irk','3.87.128.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 02:59:37','2019-11-27 02:59:37'),(5221,'chemistry','197.210.85.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 04:36:41','2019-11-27 04:36:41'),(5222,'chemistry','52.91.32.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 06:56:10','2019-11-27 06:56:10'),(5223,'chemistry','3.84.51.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 08:55:13','2019-11-27 08:55:13'),(5224,'englishlit','54.205.247.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 09:48:58','2019-11-27 09:48:58'),(5225,'biology','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 12:58:49','2019-11-27 12:58:49'),(5226,'irk','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 13:14:40','2019-11-27 13:14:40'),(5227,'insurance','54.198.168.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 14:09:50','2019-11-27 14:09:50'),(5228,'economics','52.90.222.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 17:06:53','2019-11-27 17:06:53'),(5229,'history','3.92.231.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 18:56:25','2019-11-27 18:56:25'),(5230,'chemistry','18.234.89.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:41:07','2019-11-27 19:41:07'),(5231,'chemistry','49.87.102.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:46:18','2019-11-27 19:46:18'),(5232,'accounting','54.161.90.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 20:54:04','2019-11-27 20:54:04'),(5233,'chemistry','27.214.192.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 23:04:04','2019-11-27 23:04:04'),(5234,'chemistry','34.230.10.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 01:37:13','2019-11-28 01:37:13'),(5235,'irk','18.209.6.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 04:53:50','2019-11-28 04:53:50'),(5236,'biology','3.82.192.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:53:14','2019-11-28 07:53:15'),(5237,'history','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:55:43','2019-11-28 07:55:43'),(5238,'commerce','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5239,'englishlit','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5240,'currentaffairs','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 08:20:01','2019-11-28 08:20:01'),(5241,'mathematics','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:18:07','2019-11-28 10:18:07'),(5242,'chemistry','105.112.55.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:31:45','2019-11-28 10:31:45'),(5243,'commerce','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:42:22','2019-11-28 10:42:22'),(5244,'crk','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 11:14:13','2019-11-28 11:14:13'),(5245,'economics','18.234.45.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 12:07:05','2019-11-28 12:07:05'),(5246,'commerce','52.200.202.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 14:58:46','2019-11-28 14:58:46'),(5247,'biology','41.190.3.204',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 16:57:43','2019-11-28 16:57:44'),(5248,'chemistry','54.36.148.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 17:06:02','2019-11-28 17:06:03'),(5249,'crk','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:31:30','2019-11-28 19:31:30'),(5250,'accounting','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:33:45','2019-11-28 19:33:45'),(5251,'economics','3.85.242.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:37'),(5252,'commerce','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:38'),(5253,'accounting','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5254,'biology','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5255,'physics','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5256,'crk','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5257,'geography','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5258,'currentaffairs','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5259,'geography','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 06:56:30','2019-11-29 06:56:30'),(5260,'economics','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 07:23:58','2019-11-29 07:23:58'),(5261,'commerce','3.90.78.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 09:46:03','2019-11-29 09:46:03'),(5262,'crk','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 14:54:27','2019-11-29 14:54:27'),(5263,'english','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:32:55','2019-11-29 16:32:55'),(5264,'insurance','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:33:40','2019-11-29 16:33:40'),(5265,'biology','54.165.28.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 17:08:15','2019-11-29 17:13:52'),(5266,'englishlit','3.91.91.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 20:29:30','2019-11-29 20:29:30'),(5267,'chemistry','197.210.53.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 22:14:15','2019-11-29 22:14:15'),(5268,'geography','3.80.133.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 00:24:52','2019-11-30 00:24:52'),(5269,'crk','54.144.64.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 03:05:17','2019-11-30 03:05:17'),(5270,'chemistry','141.0.13.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 04:28:46','2019-11-30 04:28:50'),(5271,'crk','34.235.132.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 09:54:43','2019-11-30 09:54:43'),(5272,'economics','3.84.73.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 14:56:44','2019-11-30 14:56:44'),(5273,'chemistry','54.196.143.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 15:46:01','2019-11-30 15:46:01'),(5274,'physics','174.129.162.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 17:01:07','2019-11-30 17:01:07'),(5275,'commerce','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:18:36','2019-11-30 19:18:36'),(5276,'englishlit','3.84.92.186',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:29:52','2019-11-30 19:36:20'),(5277,'english','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:34:16','2019-11-30 19:34:16'),(5278,'crk','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 02:44:38','2019-12-01 02:44:38'),(5279,'englishlit','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 03:14:33','2019-12-01 03:14:33'),(5280,'economics','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:41:42','2019-12-01 06:41:42'),(5281,'chemistry','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:51:45','2019-12-01 06:51:45'),(5282,'chemistry','207.46.13.30',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 08:20:41','2019-12-01 08:20:42'),(5283,'government','3.94.79.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 09:03:08','2019-12-01 09:03:08'),(5284,'chemistry','197.211.58.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 10:28:55','2019-12-01 10:28:55'),(5285,'english','3.83.92.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 13:54:48','2019-12-01 13:54:48'),(5286,'chemistry','182.247.60.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:04:17','2019-12-02 05:04:17'),(5287,'physics','18.212.94.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:51:40','2019-12-02 05:51:40'),(5288,'english','196.13.161.254',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:09:22','2019-12-02 11:11:49'),(5289,'chemistry','196.13.161.254',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:14:59','2019-12-02 12:04:31'),(5290,'currentaffairs','3.86.66.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:36:59','2019-12-02 11:36:59'),(5291,'chemistry','80.248.3.98',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 12:03:05','2019-12-02 12:03:05'),(5292,'currentaffairs','18.212.29.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 13:05:10','2019-12-02 13:05:10'),(5293,'civiledu','34.227.18.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:34:27','2019-12-02 16:34:27'),(5294,'chemistry','124.112.95.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:43:26','2019-12-02 16:43:26'),(5295,'english','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:15:18','2019-12-02 20:15:18'),(5296,'englishlit','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:44:03','2019-12-02 20:44:03'),(5297,'accounting','54.89.129.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 21:26:25','2019-12-02 21:26:25'),(5298,'chemistry','70.49.10.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 04:21:31','2019-12-03 04:21:32'),(5299,'english','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:12','2019-12-03 05:44:12'),(5300,'commerce','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5301,'accounting','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5302,'economics','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5303,'irk','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5304,'insurance','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5305,'history','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5306,'commerce','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5307,'accounting','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5308,'chemistry','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5309,'government','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5310,'geography','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5311,'civiledu','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5312,'history','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5313,'english','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5314,'commerce','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5315,'englishlit','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5316,'crk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5317,'irk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:21'),(5318,'insurance','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5319,'currentaffairs','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5320,'irk','3.82.106.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 20:45:47','2019-12-03 20:45:47'),(5321,'mathematics','52.90.36.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 22:27:46','2019-12-03 22:27:46'),(5322,'government','54.152.243.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 01:01:26','2019-12-04 01:01:26'),(5323,'chemistry','207.46.13.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 03:26:32','2019-12-04 03:26:32'),(5324,'insurance','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 04:39:43','2019-12-04 04:39:43'),(5325,'chemistry','14.134.201.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:29:57','2019-12-04 06:29:57'),(5326,'chemistry','218.73.129.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:30:25','2019-12-04 06:30:25'),(5327,'commerce','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:53:13','2019-12-04 06:53:13'),(5328,'crk','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:05:20','2019-12-04 07:05:20'),(5329,'english','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:15:26','2019-12-04 07:15:26'),(5330,'mathematics','41.190.3.143',119,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:24:47','2019-12-05 00:11:26'),(5331,'biology','41.190.3.143',168,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:28:53','2019-12-05 12:00:11'),(5332,'chemistry','197.211.58.2',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:19:02','2019-12-04 15:19:02'),(5333,'currentaffairs','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:20:27','2019-12-04 15:20:27'),(5334,'mathematics','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:26:56','2019-12-04 15:26:56'),(5335,'chemistry','105.112.181.189',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:14:48','2019-12-04 17:14:58'),(5336,'geography','18.208.212.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:29:42','2019-12-04 17:29:42'),(5337,'english','41.190.3.143',91,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:55:40','2019-12-05 06:58:47'),(5338,'government','41.190.3.143',84,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:56:50','2019-12-05 06:41:34'),(5339,'commerce','41.190.3.143',175,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:57:42','2019-12-05 06:53:25'),(5340,'chemistry','41.190.3.143',140,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 19:01:13','2019-12-05 07:14:29'),(5341,'mathematics','54.172.178.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 20:35:24','2019-12-04 20:35:24'),(5342,'geography','54.172.178.184',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 21:08:09','2019-12-04 21:36:53'),(5343,'english','54.163.0.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 23:30:16','2019-12-04 23:30:16'),(5344,'geography','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:01:50','2019-12-05 01:01:50'),(5345,'history','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:18:02','2019-12-05 01:18:02'),(5346,'geography','204.236.206.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:22:32','2019-12-05 07:22:32'),(5347,'physics','54.86.78.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:59:42','2019-12-05 07:59:42'),(5348,'englishlit','54.172.67.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 09:02:59','2019-12-05 09:02:59'),(5349,'currentaffairs','3.91.46.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 10:24:47','2019-12-05 10:24:47'),(5350,'biology','174.129.108.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 14:55:19','2019-12-05 14:55:19'),(5351,'chemistry','105.112.179.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 17:00:52','2019-12-05 17:00:52'),(5352,'commerce','3.84.85.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:00:24','2019-12-05 18:23:26'),(5353,'english','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:44:01','2019-12-05 18:44:01'),(5354,'economics','3.88.46.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 19:56:33','2019-12-05 19:56:33'),(5355,'history','54.81.95.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 20:35:42','2019-12-05 20:35:42'),(5356,'chemistry','113.138.129.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:25','2019-12-05 21:06:25'),(5357,'chemistry','40.77.167.50',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:35','2019-12-05 21:06:35'),(5358,'mathematics','18.233.165.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 22:52:02','2019-12-05 22:52:02'),(5359,'englishlit','54.175.59.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 00:21:22','2019-12-06 00:21:22'),(5360,'chemistry','52.90.137.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 01:50:04','2019-12-06 01:50:04'),(5361,'geography','3.87.199.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 02:52:45','2019-12-06 02:52:45'),(5362,'mathematics','3.88.194.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 04:08:29','2019-12-06 04:08:29'),(5363,'government','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:32:21','2019-12-06 05:32:21'),(5364,'mathematics','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:40:15','2019-12-06 05:40:15'),(5365,'insurance','34.227.157.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 06:43:30','2019-12-06 06:43:30'),(5366,'physics','54.172.2.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 10:09:01','2019-12-06 10:09:01'),(5367,'biology','66.249.88.17',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 14:07:38','2020-02-15 20:12:28'),(5368,'chemistry','197.210.84.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:36:43','2019-12-06 18:36:43'),(5369,'crk','197.210.84.159',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:40:55','2019-12-06 19:11:31'),(5370,'biology','34.205.127.71',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5371,'biology','34.205.127.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5372,'accounting','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:12:45','2019-12-07 10:12:45'),(5373,'history','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:34:21','2019-12-07 10:34:21'),(5374,'chemistry','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5375,'englishlit','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5376,'government','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5377,'crk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5378,'irk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5379,'civiledu','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5380,'currentaffairs','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5381,'irk','54.242.7.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 01:13:25','2019-12-08 01:13:25'),(5382,'englishlit','54.242.126.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 06:59:59','2019-12-08 06:59:59'),(5383,'chemistry','40.77.167.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 15:51:20','2019-12-08 15:51:20'),(5384,'chemistry','197.210.47.7',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:00:48','2019-12-08 16:00:49'),(5385,'chemistry','197.210.47.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:17:03','2019-12-08 16:17:03'),(5386,'insurance','54.152.41.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 17:44:29','2019-12-08 17:44:29'),(5387,'chemistry','93.158.161.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 18:45:52','2019-12-08 18:45:52'),(5388,'economics','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 19:54:55','2019-12-08 19:54:55'),(5389,'biology','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 20:26:43','2019-12-08 20:26:43'),(5390,'commerce','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5391,'english','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5392,'accounting','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5393,'accounting','3.82.25.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5394,'physics','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:42'),(5395,'biology','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5396,'geography','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5397,'economics','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5398,'crk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5399,'civiledu','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5400,'irk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5401,'chemistry','40.77.167.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 00:56:26','2019-12-09 00:56:26'),(5402,'accounting','54.226.206.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 03:42:51','2019-12-09 03:42:51'),(5403,'history','52.206.133.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 04:25:20','2019-12-09 04:25:20'),(5404,'biology','54.173.252.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 05:46:38','2019-12-09 05:46:39'),(5405,'irk','18.234.114.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 11:05:35','2019-12-09 11:05:35'),(5406,'chemistry','54.36.148.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:28:12','2019-12-09 16:28:16'),(5407,'biology','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:39'),(5408,'englishlit','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:38'),(5409,'crk','54.89.129.103',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:48:45'),(5410,'commerce','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5411,'economics','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5412,'irk','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5413,'physics','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5414,'chemistry','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5415,'insurance','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:40'),(5416,'currentaffairs','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5417,'commerce','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:17:25','2019-12-09 19:17:25'),(5418,'economics','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:32:29','2019-12-09 19:32:29'),(5419,'civiledu','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 22:44:39','2019-12-09 22:44:39'),(5420,'english','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:24','2019-12-09 23:12:24'),(5421,'geography','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:35','2019-12-09 23:12:35'),(5422,'chemistry','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:27:16','2019-12-09 23:27:16'),(5423,'chemistry','40.77.167.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:01:39','2019-12-10 00:01:39'),(5424,'accounting','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:03:12','2019-12-10 00:03:12'),(5425,'insurance','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:37:10','2019-12-10 00:37:10'),(5426,'crk','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 01:09:15','2019-12-10 01:09:15'),(5427,'chemistry','100.27.31.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 02:44:54','2019-12-10 02:44:54'),(5428,'commerce','54.237.164.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 04:47:40','2019-12-10 04:47:40'),(5429,'english','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:13:52','2019-12-10 06:13:52'),(5430,'geography','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:33:46','2019-12-10 06:33:46'),(5431,'economics','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:51:24','2019-12-10 06:51:24'),(5432,'accounting','54.242.54.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 07:57:03','2019-12-10 07:57:03'),(5433,'insurance','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:23:16','2019-12-10 09:23:16'),(5434,'chemistry','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:37:33','2019-12-10 09:37:33'),(5435,'crk','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:18:58','2019-12-10 10:18:58'),(5436,'englishlit','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:59:01','2019-12-10 10:59:01'),(5437,'government','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:19:21','2019-12-10 11:19:21'),(5438,'english','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:50:52','2019-12-10 11:50:52'),(5439,'geography','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:05:06','2019-12-10 12:05:06'),(5440,'irk','54.226.150.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:45:46','2019-12-10 12:45:46'),(5441,'commerce','3.90.68.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 13:50:00','2019-12-10 13:50:00'),(5442,'government','3.82.210.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 14:37:36','2019-12-10 14:37:36'),(5443,'crk','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:21:52','2019-12-10 15:21:52'),(5444,'economics','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:35:48','2019-12-10 15:35:48'),(5445,'currentaffairs','35.168.14.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 16:27:37','2019-12-10 16:27:37'),(5446,'geography','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:35:21','2019-12-10 20:35:21'),(5447,'economics','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:39:50','2019-12-10 20:39:50'),(5448,'accounting','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:37','2019-12-10 20:59:37'),(5449,'english','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:50','2019-12-10 20:59:50'),(5450,'crk','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 21:34:22','2019-12-10 21:34:22'),(5451,'englishlit','54.165.112.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 00:04:55','2019-12-11 00:04:55'),(5452,'government','34.201.143.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 03:16:18','2019-12-11 03:16:18'),(5453,'englishlit','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:53:05','2019-12-11 04:53:05'),(5454,'insurance','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:55:54','2019-12-11 04:55:54'),(5455,'chemistry','105.112.179.103',425,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 06:39:31','2019-12-11 07:10:00'),(5456,'mathematics','105.112.179.103',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:10:34','2019-12-11 07:10:34'),(5457,'mathematics','105.112.16.69',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:18:04','2019-12-11 07:18:48'),(5458,'chemistry','3.229.122.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:58:12','2019-12-11 09:05:40'),(5459,'geography','174.129.57.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 09:22:20','2019-12-11 09:22:20'),(5460,'crk','54.90.130.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 12:16:19','2019-12-11 12:16:19'),(5461,'chemistry','188.180.82.238',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 13:07:40','2019-12-11 13:09:06'),(5462,'chemistry','41.203.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 15:02:50','2019-12-11 15:02:50'),(5463,'chemistry','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 22:51:11','2019-12-11 22:51:11'),(5464,'accounting','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:23:14','2019-12-11 23:23:14'),(5465,'englishlit','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:52:10','2019-12-11 23:52:10'),(5466,'physics','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 00:19:17','2019-12-12 00:19:17'),(5467,'commerce','54.197.2.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 01:28:00','2019-12-12 01:28:00'),(5468,'englishlit','3.93.184.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 03:07:29','2019-12-12 03:07:29'),(5469,'crk','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 09:35:33','2019-12-12 09:35:33'),(5470,'english','18.209.36.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 11:09:56','2019-12-12 11:09:56'),(5471,'chemistry','34.228.199.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 13:40:09','2019-12-12 13:40:09'),(5472,'englishlit','3.85.74.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 14:21:15','2019-12-12 14:21:15'),(5473,'chemistry','100.27.31.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 16:34:32','2019-12-12 16:34:32'),(5474,'government','54.236.209.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 19:00:46','2019-12-12 19:00:46'),(5475,'crk','18.205.239.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:05:15','2019-12-12 20:05:15'),(5476,'crk','197.210.84.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:31:16','2019-12-12 20:40:53'),(5477,'economics','34.239.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 21:01:23','2019-12-12 21:01:23'),(5478,'english','54.172.192.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 23:30:27','2019-12-12 23:30:27'),(5479,'chemistry','40.77.167.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 02:15:26','2019-12-13 02:15:26'),(5480,'chemistry','114.229.7.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 03:41:13','2019-12-13 03:41:13'),(5481,'chemistry','105.112.80.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 08:56:22','2019-12-13 08:56:45'),(5482,'mathematics','34.203.244.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 09:11:37','2019-12-13 09:11:37'),(5483,'physics','110.44.121.20',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 10:10:52','2019-12-13 10:10:53'),(5484,'chemistry','105.112.24.37',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:15:54','2019-12-13 11:15:55'),(5485,'mathematics','105.112.179.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:03','2019-12-13 11:29:48'),(5486,'physics','105.112.179.227',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:26','2019-12-13 11:30:06'),(5487,'physics','3.93.52.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 12:46:32','2019-12-13 12:46:32'),(5488,'history','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:34','2019-12-13 21:12:28'),(5489,'currentaffairs','129.205.112.254',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:39','2019-12-13 21:09:28'),(5490,'chemistry','129.205.112.254',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:44','2019-12-13 21:12:08'),(5491,'mathematics','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:54','2019-12-13 21:11:38'),(5492,'government','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:59','2019-12-13 21:11:53'),(5493,'physics','129.205.112.254',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:04','2019-12-13 21:12:23'),(5494,'englishlit','129.205.112.254',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:09','2019-12-13 21:12:13'),(5495,'economics','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:15','2019-12-13 21:12:38'),(5496,'commerce','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:40','2019-12-13 21:12:33'),(5497,'english','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:47','2019-12-13 21:11:28'),(5498,'accounting','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:50','2019-12-13 21:10:34'),(5499,'geography','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:30','2019-12-13 21:10:38'),(5500,'crk','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:35','2019-12-13 21:11:58'),(5501,'irk','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:15','2019-12-13 21:09:43'),(5502,'biology','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:30','2019-12-13 21:12:18'),(5503,'insurance','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:01:20','2019-12-13 21:13:30'),(5504,'civiledu','129.205.112.254',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:03:35','2019-12-13 21:11:03'),(5505,'currentaffairs','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 18:57:39','2019-12-13 18:57:39'),(5506,'currentaffairs','54.226.13.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 19:41:05','2019-12-13 19:41:05'),(5507,'mathematics','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 20:26:39','2019-12-13 20:26:39'),(5508,'civiledu','3.83.131.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 23:08:17','2019-12-13 23:08:17'),(5509,'englishlit','54.163.205.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 02:02:08','2019-12-14 02:02:08'),(5510,'english','3.84.191.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:05:13','2019-12-14 03:05:13'),(5511,'physics','105.112.178.117',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:10:23','2019-12-14 03:22:06'),(5512,'biology','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:35:59','2019-12-14 03:40:01'),(5513,'accounting','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:37:14','2019-12-14 03:40:02'),(5514,'mathematics','105.112.177.67',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:11','2019-12-14 03:40:22'),(5515,'physics','105.112.177.67',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:58','2019-12-14 03:44:29'),(5516,'accounting','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:12:59','2019-12-14 04:12:59'),(5517,'mathematics','105.112.177.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:16:55','2019-12-14 04:16:55'),(5518,'mathematics','105.112.179.177',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:17:37','2019-12-14 04:17:38'),(5519,'chemistry','58.19.12.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:18:56','2019-12-14 04:18:56'),(5520,'mathematics','105.112.176.112',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:39:57','2019-12-14 04:44:54'),(5521,'mathematics','105.112.23.162',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:29:29','2019-12-14 05:38:43'),(5522,'mathematics','105.112.178.10',110,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:40:14','2019-12-14 06:24:21'),(5523,'english','105.112.178.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:20:57','2019-12-14 06:20:58'),(5524,'physics','105.112.178.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:22:14','2019-12-14 06:23:31'),(5525,'mathematics','105.112.176.255',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:48:33','2019-12-14 06:54:19'),(5526,'mathematics','105.112.177.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:16:27','2019-12-14 07:52:21'),(5527,'physics','105.112.177.210',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:18:35','2019-12-14 07:19:49'),(5528,'mathematics','34.229.0.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 14:14:24','2019-12-14 14:14:24'),(5529,'chemistry','3.94.129.211',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:29:03','2019-12-14 18:49:30'),(5530,'crk','3.82.19.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:54:57','2019-12-14 18:54:57'),(5531,'mathematics','105.112.74.0',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:40:25','2019-12-14 19:50:59'),(5532,'mathematics','105.112.178.125',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:55:19','2019-12-14 19:57:26'),(5533,'english','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:42'),(5534,'accounting','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:43'),(5535,'government','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5536,'crk','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5537,'economics','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5538,'insurance','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5539,'currentaffairs','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5540,'mathematics','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 02:56:53','2019-12-15 02:56:53'),(5541,'irk','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 03:08:39','2019-12-15 03:08:39'),(5542,'mathematics','105.112.24.144',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 05:33:44','2019-12-15 05:33:44'),(5543,'mathematics','105.112.24.123',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:27:08','2019-12-15 06:28:35'),(5544,'biology','105.112.24.123',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:28:39','2019-12-15 06:28:39'),(5545,'commerce','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:52:53','2019-12-15 07:52:53'),(5546,'government','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:53:27','2019-12-15 07:53:27'),(5547,'mathematics','105.112.75.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:03:20','2019-12-15 08:03:20'),(5548,'mathematics','105.112.178.111',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:24:49','2019-12-15 08:24:49'),(5549,'chemistry','89.163.242.18',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:57:38','2019-12-15 08:57:38'),(5550,'mathematics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:59:24','2019-12-15 09:11:12'),(5551,'commerce','105.112.16.234',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:01:55','2019-12-15 09:05:33'),(5552,'englishlit','105.112.16.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:05:43','2019-12-15 09:05:44'),(5553,'economics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:07:37','2019-12-15 09:09:01'),(5554,'mathematics','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:32'),(5555,'commerce','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:33'),(5556,'accounting','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5557,'englishlit','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5558,'crk','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5559,'geography','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5560,'currentaffairs','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5561,'insurance','18.206.121.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:44:42','2019-12-15 10:44:42'),(5562,'mathematics','197.210.44.70',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 11:39:41','2019-12-15 11:40:19'),(5563,'english','54.226.135.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 13:31:12','2019-12-15 13:31:12'),(5564,'crk','34.207.159.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 14:25:42','2019-12-15 14:25:42'),(5565,'chemistry','197.210.8.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:09:00','2019-12-15 15:09:49'),(5566,'mathematics','105.112.181.210',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:31:11','2019-12-15 15:31:12'),(5567,'chemistry','197.211.58.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 16:28:08','2019-12-15 16:28:08'),(5568,'civiledu','107.22.61.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 21:18:49','2019-12-15 21:18:49'),(5569,'mathematics','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 22:16:18','2019-12-15 22:16:18'),(5570,'geography','18.206.180.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 00:01:24','2019-12-16 00:01:24'),(5571,'accounting','3.95.7.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 01:08:36','2019-12-16 01:08:36'),(5572,'chemistry','105.112.99.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:48:06','2019-12-16 04:48:06'),(5573,'geography','34.207.88.147',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:49:45','2019-12-16 08:10:20'),(5574,'mathematics','105.112.24.13',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 05:19:46','2019-12-16 05:19:46'),(5575,'english','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:18:08','2019-12-16 06:18:08'),(5576,'geography','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:30:45','2019-12-16 06:30:45'),(5577,'chemistry','105.112.30.62',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 11:31:31','2019-12-16 11:34:57'),(5578,'chemistry','207.46.13.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 12:26:05','2019-12-16 12:26:05'),(5579,'physics','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 16:53:46','2019-12-16 16:53:46'),(5580,'englishlit','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 17:13:34','2019-12-16 17:13:34'),(5581,'geography','3.92.69.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 18:41:59','2019-12-16 18:41:59'),(5582,'biology','52.202.45.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 21:27:25','2019-12-16 21:27:25'),(5583,'currentaffairs','3.95.195.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 22:56:29','2019-12-16 22:56:29'),(5584,'economics','3.81.134.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 23:46:29','2019-12-16 23:46:29'),(5585,'commerce','54.164.27.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 00:54:33','2019-12-17 00:54:33'),(5586,'commerce','3.92.4.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 04:14:33','2019-12-17 04:14:33'),(5587,'chemistry','197.210.61.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 06:57:40','2019-12-17 06:57:40'),(5588,'chemistry','102.134.114.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:37','2019-12-17 07:45:37'),(5589,'mathematics','102.134.114.193',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:57','2019-12-17 07:47:44'),(5590,'mathematics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:30:56','2019-12-17 08:30:56'),(5591,'physics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:32:55','2019-12-17 08:32:55'),(5592,'englishlit','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:58:40','2019-12-17 08:58:40'),(5593,'chemistry','151.80.39.216',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:17:12','2019-12-30 07:30:25'),(5594,'chemistry','151.80.39.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:23:31','2019-12-17 09:23:31'),(5595,'chemistry','5.196.87.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:30:13','2020-01-07 19:20:55'),(5596,'chemistry','151.80.39.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:39:21','2019-12-17 09:45:56'),(5597,'geography','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:13:13','2019-12-17 10:13:13'),(5598,'government','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:29:20','2019-12-17 10:29:20'),(5599,'mathematics','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:55:34','2019-12-17 10:55:34'),(5600,'mathematics','105.112.178.120',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:24:11','2019-12-17 13:24:11'),(5601,'english','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:31:22','2019-12-17 13:31:22'),(5602,'insurance','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:39:48','2019-12-17 13:39:48'),(5603,'mathematics','105.112.23.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:00:33','2019-12-17 14:00:33'),(5604,'history','54.91.62.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:51:56','2019-12-17 14:51:56'),(5605,'chemistry','106.56.38.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 21:15:06','2019-12-17 21:15:06'),(5606,'chemistry','182.110.22.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 22:30:20','2019-12-17 22:30:20'),(5607,'geography','54.204.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 00:38:06','2019-12-18 00:38:06'),(5608,'chemistry','154.120.93.60',252,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:40:21','2019-12-18 06:53:13'),(5609,'english','154.120.93.60',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:48:52','2019-12-18 06:48:55'),(5610,'mathematics','154.120.93.60',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:53:33','2019-12-18 06:53:56'),(5611,'chemistry','197.210.65.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:44','2019-12-18 07:42:44'),(5612,'chemistry','197.210.64.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:51','2019-12-18 07:42:51'),(5613,'accounting','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 09:13:48','2019-12-18 09:13:48'),(5614,'chemistry','197.210.227.76',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:32:30','2019-12-18 13:51:25'),(5615,'chemistry','197.210.226.124',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:33:10','2019-12-19 08:29:25'),(5616,'chemistry','197.210.227.42',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:50:23','2019-12-18 13:52:09'),(5617,'mathematics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5618,'commerce','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5619,'physics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5620,'englishlit','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5621,'crk','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5622,'currentaffairs','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5623,'history','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5624,'english','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5625,'accounting','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5626,'biology','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:07'),(5627,'englishlit','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5628,'geography','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5629,'irk','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5630,'insurance','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5631,'chemistry','69.30.213.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 14:31:25','2019-12-18 14:31:25'),(5632,'physics','105.112.176.201',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 05:24:23','2019-12-19 05:24:23'),(5633,'chemistry','5.189.172.182',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:05:46','2019-12-19 07:06:30'),(5634,'government','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:12:43','2019-12-19 07:12:43'),(5635,'history','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:33:41','2019-12-19 07:33:41'),(5636,'irk','52.91.34.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 09:17:34','2019-12-19 09:17:34'),(5637,'englishlit','54.88.253.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 10:35:04','2019-12-19 10:35:04'),(5638,'economics','105.112.177.36',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:42:18','2019-12-19 16:42:19'),(5639,'chemistry','105.112.177.36',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:43:25','2019-12-19 16:45:28'),(5640,'chemistry','105.112.177.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:02:16','2019-12-19 17:02:16'),(5641,'commerce','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:40:56','2019-12-19 17:40:56'),(5642,'biology','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:43:13','2019-12-19 17:43:13'),(5643,'mathematics','197.210.53.166',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 18:09:35','2019-12-19 18:09:35'),(5644,'insurance','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:04:27','2019-12-20 01:04:27'),(5645,'biology','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:31:54','2019-12-20 01:31:54'),(5646,'economics','54.146.230.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 05:50:03','2019-12-20 05:50:03'),(5647,'history','3.85.190.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 07:45:09','2019-12-20 07:45:09'),(5648,'history','54.80.62.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 08:26:39','2019-12-20 08:26:39'),(5649,'accounting','54.198.39.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:15:34','2019-12-20 10:15:34'),(5650,'chemistry','197.210.61.37',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:58:34','2019-12-20 11:00:32'),(5651,'englishlit','34.202.161.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 15:24:52','2019-12-20 15:24:52'),(5652,'chemistry','3.85.93.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 16:07:34','2019-12-20 16:07:34'),(5653,'irk','3.87.205.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 21:37:02','2019-12-20 21:37:02'),(5654,'economics','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:05:01','2019-12-21 03:05:01'),(5655,'crk','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:09:00','2019-12-21 03:09:00'),(5656,'chemistry','41.190.31.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 06:38:03','2019-12-21 06:38:04'),(5657,'commerce','54.234.19.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 07:41:34','2019-12-21 07:41:34'),(5658,'chemistry','154.120.111.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:08:50','2019-12-21 08:08:50'),(5659,'chemistry','207.46.13.100',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:11:14','2019-12-21 08:11:14'),(5660,'accounting','3.82.104.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:03:47','2019-12-21 09:03:47'),(5661,'english','154.120.82.204',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:45:44','2019-12-21 09:45:44'),(5662,'crk','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 10:54:28','2019-12-21 10:54:28'),(5663,'history','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:24:32','2019-12-21 11:24:32'),(5664,'chemistry','197.210.71.189',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:53:25','2019-12-21 11:55:06'),(5665,'economics','54.234.34.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:08:12','2019-12-21 17:08:12'),(5666,'chemistry','196.220.136.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:23:29','2019-12-21 17:23:29'),(5667,'government','52.200.198.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 19:00:57','2019-12-21 19:00:57'),(5668,'chemistry','54.145.127.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 20:50:25','2019-12-21 20:50:25'),(5669,'geography','34.239.125.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 22:50:03','2019-12-21 22:50:03'),(5670,'economics','54.144.125.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 23:56:36','2019-12-21 23:56:36'),(5671,'commerce','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:51:11','2019-12-22 00:51:11'),(5672,'government','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:59:35','2019-12-22 00:59:35'),(5673,'insurance','54.82.100.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 06:04:36','2019-12-22 06:04:36'),(5674,'economics','3.91.31.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:14:42','2019-12-22 07:14:42'),(5675,'crk','100.24.16.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:56:40','2019-12-22 07:56:40'),(5676,'englishlit','54.174.249.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 12:39:37','2019-12-22 12:39:37'),(5677,'chemistry','106.57.151.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 14:24:18','2019-12-22 14:24:18'),(5678,'chemistry','58.62.85.244',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 15:07:13','2019-12-22 15:07:13'),(5679,'chemistry','113.121.210.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 16:19:36','2019-12-22 16:19:36'),(5680,'chemistry','197.211.58.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 18:58:28','2019-12-22 18:58:28'),(5681,'crk','18.208.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 19:35:12','2019-12-22 19:35:12'),(5682,'english','52.91.199.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 20:40:32','2019-12-22 20:40:32'),(5683,'crk','54.197.16.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 22:29:28','2019-12-22 22:29:28'),(5684,'chemistry','207.46.13.32',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 05:30:59','2019-12-23 19:53:30'),(5685,'chemistry','41.58.249.101',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 07:32:16','2019-12-23 07:41:55'),(5686,'accounting','3.88.176.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 08:35:37','2019-12-23 08:35:37'),(5687,'chemistry','52.207.237.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 10:59:07','2019-12-23 10:59:07'),(5688,'physics','54.90.171.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 12:33:14','2019-12-23 12:33:14'),(5689,'englishlit','3.94.55.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 14:39:35','2019-12-23 14:39:35'),(5690,'chemistry','105.112.24.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 16:46:27','2019-12-23 16:46:27'),(5691,'english','34.230.73.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 17:01:58','2019-12-23 17:01:58'),(5692,'englishlit','3.81.216.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 21:28:10','2019-12-23 21:28:10'),(5693,'currentaffairs','107.22.114.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 22:06:26','2019-12-23 22:06:26'),(5694,'englishlit','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:36:52','2019-12-24 00:36:52'),(5695,'crk','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:42:20','2019-12-24 00:42:20'),(5696,'chemistry','3.88.226.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 02:28:27','2019-12-24 02:28:27'),(5697,'economics','18.212.81.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 03:34:43','2019-12-24 03:34:43'),(5698,'government','3.84.146.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 04:34:22','2019-12-24 04:34:22'),(5699,'crk','54.89.84.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 07:50:50','2019-12-24 07:50:50'),(5700,'chemistry','41.203.73.248',604,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:03:43','2019-12-24 09:45:17'),(5701,'english','41.203.73.248',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:12:17','2019-12-24 09:12:20'),(5702,'mathematics','41.203.73.248',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:29:46','2019-12-24 09:32:59'),(5703,'chemistry','41.203.73.144',121,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 10:18:01','2019-12-24 11:28:03'),(5704,'physics','41.203.73.144',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 11:28:36','2019-12-24 11:28:39'),(5705,'english','54.234.136.92',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 11:35:59','2019-12-24 11:35:59'),(5706,'english','108.173.207.253',10,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 18:30:37','2019-12-24 18:32:01'),(5707,'english','54.86.42.151',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 19:06:22','2019-12-24 19:06:22'),(5708,'physics','54.162.161.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 02:38:17','2019-12-25 02:38:17'),(5709,'currentaffairs','54.158.129.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 09:00:12','2019-12-25 09:00:12'),(5710,'currentaffairs','34.201.150.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 10:02:21','2019-12-25 10:02:21'),(5711,'chemistry','197.211.58.122',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 12:27:20','2019-12-25 12:27:41'),(5712,'civiledu','184.72.131.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 14:01:27','2019-12-25 14:01:27'),(5713,'english','41.190.31.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:21:37','2019-12-25 17:21:37'),(5714,'english','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:51:12','2019-12-25 17:51:12'),(5715,'accounting','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 18:07:03','2019-12-25 18:07:03'),(5716,'englishlit','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 19:07:55','2019-12-25 19:07:55'),(5717,'commerce','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:07','2019-12-26 09:45:08'),(5718,'chemistry','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5719,'englishlit','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5720,'government','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5721,'geography','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5722,'irk','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5723,'insurance','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5724,'chemistry','197.210.53.171',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:00','2019-12-26 11:07:17'),(5725,'chemistry','197.210.52.12',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:37','2020-04-07 18:47:51'),(5726,'chemistry','197.210.53.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:49','2019-12-26 10:58:49'),(5727,'chemistry','159.138.149.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:12','2019-12-26 12:40:12'),(5728,'chemistry','159.138.158.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:19','2019-12-26 12:40:19'),(5729,'chemistry','159.138.155.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:40','2019-12-26 12:40:40'),(5730,'chemistry','159.138.157.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:42','2019-12-26 12:40:42'),(5731,'chemistry','159.138.153.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:37','2019-12-26 12:41:37'),(5732,'chemistry','159.138.148.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:39','2019-12-26 12:41:39'),(5733,'chemistry','40.77.167.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 16:52:21','2019-12-26 16:52:21'),(5734,'chemistry','151.80.39.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 18:13:53','2019-12-26 18:13:53'),(5735,'mathematics','54.92.139.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 19:28:36','2019-12-26 19:28:36'),(5736,'commerce','3.83.25.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 21:13:20','2019-12-26 21:13:20'),(5737,'government','3.86.200.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 22:19:35','2019-12-26 22:19:35'),(5738,'insurance','54.236.119.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 01:39:51','2019-12-27 01:39:51'),(5739,'english','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:11:47','2019-12-27 04:11:47'),(5740,'crk','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:17:19','2019-12-27 04:17:19'),(5741,'mathematics','105.112.18.136',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 08:38:34','2019-12-27 08:38:35'),(5742,'civiledu','52.4.139.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 11:24:11','2019-12-27 11:24:11'),(5743,'mathematics','52.70.132.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:02:50','2019-12-27 12:02:50'),(5744,'chemistry','54.36.149.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:04:00','2019-12-27 12:04:00'),(5745,'geography','34.229.11.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 15:04:56','2019-12-27 15:04:56'),(5746,'economics','54.82.208.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 17:32:43','2019-12-27 17:32:43'),(5747,'geography','3.95.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 18:44:54','2019-12-27 18:44:54'),(5748,'chemistry','41.203.73.152',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:28:07','2019-12-28 05:58:59'),(5749,'geography','18.232.139.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:38:53','2019-12-27 19:38:53'),(5750,'chemistry','207.46.13.72',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:58:11','2019-12-27 19:58:11'),(5751,'english','18.212.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 21:36:45','2019-12-27 21:36:45'),(5752,'geography','3.81.112.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 22:26:48','2019-12-27 22:26:48'),(5753,'englishlit','3.95.29.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 07:09:48','2019-12-28 07:09:48'),(5754,'geography','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 08:46:11','2019-12-28 08:46:11'),(5755,'chemistry','157.55.39.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:01:00','2019-12-28 13:56:07'),(5756,'physics','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:07:43','2019-12-28 09:07:43'),(5757,'currentaffairs','3.90.16.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:52:08','2019-12-28 09:52:08'),(5758,'chemistry','198.27.70.196',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 13:04:37','2019-12-28 13:05:18'),(5759,'economics','54.208.246.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 16:54:27','2019-12-28 16:54:27'),(5760,'physics','3.90.201.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 21:17:55','2019-12-28 21:17:55'),(5761,'englishlit','54.88.31.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 22:11:00','2019-12-28 22:11:00'),(5762,'chemistry','46.229.168.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 00:53:10','2019-12-29 00:53:10'),(5763,'mathematics','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 01:48:09','2019-12-29 01:48:09'),(5764,'geography','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:00:13','2019-12-29 02:00:13'),(5765,'government','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:45:45','2019-12-29 02:45:45'),(5766,'mathematics','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 03:11:26','2019-12-29 03:11:26'),(5767,'mathematics','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:29:09','2019-12-29 04:29:09'),(5768,'insurance','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:50:21','2019-12-29 04:50:21'),(5769,'accounting','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 06:48:58','2019-12-29 06:48:58'),(5770,'history','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 07:05:29','2019-12-29 07:05:29'),(5771,'geography','18.212.192.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 14:35:59','2019-12-29 14:35:59'),(5772,'chemistry','159.138.157.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 15:56:34','2019-12-29 15:56:34'),(5773,'chemistry','159.138.156.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:52','2019-12-29 16:06:52'),(5774,'chemistry','159.138.156.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:54','2019-12-29 16:06:54'),(5775,'chemistry','159.138.151.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:08','2019-12-29 16:17:08'),(5776,'chemistry','159.138.155.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:10','2019-12-29 16:17:10'),(5777,'chemistry','54.173.230.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 17:07:40','2019-12-29 17:07:40'),(5778,'chemistry','77.88.5.57',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 20:09:09','2020-02-17 06:41:03'),(5779,'chemistry','105.112.37.95',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 22:46:03','2019-12-29 22:48:25'),(5780,'accounting','54.162.107.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 00:28:34','2019-12-30 00:28:34'),(5781,'chemistry','5.196.87.181',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:24:52','2019-12-30 07:24:52'),(5782,'chemistry','5.196.87.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:28:37','2019-12-30 07:28:37'),(5783,'chemistry','151.80.39.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:31:37','2019-12-30 07:31:37'),(5784,'history','3.80.177.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 10:00:20','2019-12-30 10:00:20'),(5785,'chemistry','41.87.80.10',177,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:52:05','2020-01-03 12:40:11'),(5786,'english','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:05','2020-01-03 09:47:26'),(5787,'biology','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:35','2020-01-06 10:18:55'),(5788,'physics','41.87.80.10',238,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 12:26:15','2020-01-14 13:07:03'),(5789,'chemistry','197.210.71.107',112,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 18:08:04','2019-12-30 21:50:09'),(5790,'government','54.227.176.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 01:11:30','2019-12-31 01:11:30'),(5791,'englishlit','107.22.1.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 02:42:52','2019-12-31 02:42:52'),(5792,'geography','41.87.80.10',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:35','2020-01-03 09:11:05'),(5793,'mathematics','41.87.80.10',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:42','2020-01-03 12:40:26'),(5794,'commerce','41.87.80.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 11:27:07','2019-12-31 15:11:01'),(5795,'physics','197.210.85.161',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:01','2019-12-31 21:44:09'),(5796,'geography','197.210.85.161',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:36','2019-12-31 21:17:50'),(5797,'commerce','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:39','2019-12-31 17:35:25'),(5798,'biology','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:27:53','2019-12-31 17:50:46'),(5799,'mathematics','197.210.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:22','2019-12-31 17:35:22'),(5800,'english','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:50','2019-12-31 17:50:42'),(5801,'chemistry','197.210.85.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 19:06:57','2019-12-31 21:19:14'),(5802,'biology','54.89.212.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 20:08:07','2019-12-31 20:08:07'),(5803,'history','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:24:33','2019-12-31 21:24:33'),(5804,'insurance','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:51:19','2019-12-31 21:51:19'),(5805,'economics','3.83.156.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 23:11:47','2019-12-31 23:11:47'),(5806,'economics','54.159.177.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 00:29:53','2020-01-01 00:29:53'),(5807,'history','34.235.146.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 02:22:24','2020-01-01 02:22:24'),(5808,'physics','197.210.70.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:22:07','2020-01-01 06:22:07'),(5809,'accounting','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:52:22','2020-01-01 06:52:22'),(5810,'chemistry','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 07:22:30','2020-01-01 07:22:30'),(5811,'history','3.82.145.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 12:16:11','2020-01-01 12:16:11'),(5812,'physics','197.210.64.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:45','2020-01-01 13:42:45'),(5813,'geography','197.210.65.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:52','2020-01-01 13:42:52'),(5814,'physics','197.210.47.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:07:21','2020-01-01 14:07:21'),(5815,'irk','3.86.222.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:39:17','2020-01-01 14:39:17'),(5816,'crk','54.173.160.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 19:37:03','2020-01-01 19:37:03'),(5817,'economics','54.81.159.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 20:29:55','2020-01-01 20:29:55'),(5818,'commerce','34.207.138.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 23:01:12','2020-01-01 23:01:12'),(5819,'crk','3.84.24.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 04:49:38','2020-01-02 04:49:38'),(5820,'chemistry','197.210.227.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:20:08','2020-01-02 05:20:08'),(5821,'chemistry','197.210.226.177',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:22:40','2020-01-02 05:23:22'),(5822,'chemistry','197.210.227.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:23:39','2020-01-02 05:24:16'),(5823,'accounting','3.81.217.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 06:18:28','2020-01-02 06:18:28'),(5824,'economics','3.84.17.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 10:40:34','2020-01-02 10:40:34'),(5825,'chemistry','159.138.152.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:40','2020-01-02 11:34:40'),(5826,'chemistry','159.138.154.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:41','2020-01-02 11:34:41'),(5827,'chemistry','159.138.149.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:19','2020-01-02 13:42:19'),(5828,'chemistry','159.138.155.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:22','2020-01-02 13:42:22'),(5829,'english','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:16','2020-01-02 13:48:16'),(5830,'chemistry','197.210.53.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:29','2020-01-02 13:48:29'),(5831,'biology','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:54','2020-01-02 13:48:54'),(5832,'chemistry','40.77.167.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 14:52:08','2020-01-02 14:52:08'),(5833,'chemistry','173.252.87.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:12:40','2020-01-02 15:12:40'),(5834,'chemistry','105.112.96.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:14:54','2020-01-02 15:15:27'),(5835,'government','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:23:11','2020-01-02 15:23:11'),(5836,'chemistry','197.210.29.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:01:48','2020-01-02 16:01:48'),(5837,'chemistry','54.198.147.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:20:52','2020-01-02 16:20:52'),(5838,'geography','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:21:06','2020-01-02 18:21:06'),(5839,'government','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:53:06','2020-01-02 18:53:06'),(5840,'chemistry','141.0.12.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:46:34','2020-01-02 19:46:34'),(5841,'chemistry','54.36.148.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:54:13','2020-01-02 19:54:13'),(5842,'chemistry','107.167.116.51',81,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:22:38','2020-01-02 20:56:21'),(5843,'chemistry','69.171.251.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:25:00','2020-01-02 20:25:00'),(5844,'chemistry','173.252.95.39',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:27:00','2020-01-02 20:27:01'),(5845,'chemistry','105.112.107.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:44:23','2020-01-02 20:44:23'),(5846,'chemistry','197.210.85.199',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:48:24','2020-01-02 21:10:22'),(5847,'chemistry','173.252.127.12',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:56:49','2020-01-02 20:56:52'),(5848,'physics','107.167.107.19',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:06:13','2020-01-02 23:06:17'),(5849,'physics','105.112.121.61',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:07:14','2020-01-02 23:08:11'),(5850,'physics','107.167.107.16',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:19','2020-01-02 23:12:21'),(5851,'physics','105.112.112.87',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:44','2020-01-02 23:12:47'),(5852,'commerce','18.206.201.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:19:52','2020-01-02 23:19:52'),(5853,'economics','50.19.154.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:46:41','2020-01-03 01:31:33'),(5854,'accounting','50.19.154.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:56:30','2020-01-03 00:56:30'),(5855,'crk','3.82.121.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 03:17:13','2020-01-03 03:17:13'),(5856,'insurance','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 05:01:58','2020-01-03 05:01:58'),(5857,'mathematics','105.112.177.41',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 07:28:37','2020-01-03 07:28:38'),(5858,'accounting','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:14:39','2020-01-03 09:14:39'),(5859,'englishlit','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:40:09','2020-01-03 09:40:09'),(5860,'chemistry','173.252.127.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5861,'chemistry','173.252.127.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5862,'chemistry','69.171.251.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 10:12:20','2020-01-03 10:12:20'),(5863,'english','52.23.234.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 11:11:09','2020-01-03 11:11:09'),(5864,'chemistry','54.36.149.6',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 12:32:58','2020-01-03 12:32:58'),(5865,'chemistry','173.252.127.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5866,'chemistry','173.252.127.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5867,'accounting','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:47:56','2020-01-03 22:47:56'),(5868,'crk','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:59:55','2020-01-03 22:59:55'),(5869,'crk','18.234.186.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 00:39:01','2020-01-04 00:39:01'),(5870,'accounting','52.206.79.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 01:50:47','2020-01-04 01:50:47'),(5871,'mathematics','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5872,'commerce','3.83.117.183',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:17'),(5873,'accounting','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5874,'englishlit','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5875,'crk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5876,'irk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5877,'civiledu','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5878,'chemistry','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:25:30','2020-01-04 07:25:30'),(5879,'physics','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:54:21','2020-01-04 07:54:21'),(5880,'accounting','54.211.18.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 08:33:09','2020-01-04 08:33:09'),(5881,'englishlit','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:26:47','2020-01-04 09:26:47'),(5882,'physics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:28:39','2020-01-04 09:28:39'),(5883,'insurance','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:47:41','2020-01-04 09:47:41'),(5884,'geography','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:14','2020-01-04 09:54:14'),(5885,'english','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:18','2020-01-04 09:54:18'),(5886,'mathematics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:24','2020-01-04 09:54:24'),(5887,'chemistry','159.138.158.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:29:58','2020-01-04 10:29:58'),(5888,'chemistry','159.138.153.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:30:00','2020-01-04 10:30:00'),(5889,'currentaffairs','34.203.237.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 13:00:10','2020-01-04 13:00:10'),(5890,'chemistry','159.138.152.167',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 14:50:39','2020-01-04 14:50:39'),(5891,'english','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:36:52','2020-01-04 15:36:52'),(5892,'englishlit','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:40:27','2020-01-04 15:40:27'),(5893,'crk','35.174.5.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 19:26:20','2020-01-04 19:26:20'),(5894,'chemistry','197.210.226.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:08:58','2020-01-04 22:08:58'),(5895,'economics','18.232.58.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:09:24','2020-01-04 22:09:24'),(5896,'chemistry','18.206.248.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 00:08:29','2020-01-05 00:08:29'),(5897,'government','34.207.181.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 01:22:25','2020-01-05 01:22:25'),(5898,'englishlit','3.92.193.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 02:40:51','2020-01-05 02:40:51'),(5899,'crk','52.23.188.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 05:08:41','2020-01-05 05:08:41'),(5900,'english','52.207.216.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 07:59:31','2020-01-05 07:59:31'),(5901,'english','150.70.168.143',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 13:37:22','2020-01-05 13:37:25'),(5902,'english','35.173.133.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 16:54:20','2020-01-05 16:54:20'),(5903,'chemistry','159.138.154.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:07','2020-01-05 19:39:07'),(5904,'chemistry','159.138.157.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:10','2020-01-05 19:39:10'),(5905,'chemistry','197.211.58.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:13:15','2020-01-05 20:13:24'),(5906,'physics','66.102.8.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:39:20','2020-01-05 20:39:20'),(5907,'biology','66.102.8.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:40:26','2020-01-05 20:41:57'),(5908,'english','66.102.8.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:41:46','2020-01-05 20:41:46'),(5909,'physics','197.210.71.215',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:23','2020-01-05 21:15:06'),(5910,'geography','197.210.71.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:29','2020-01-05 20:46:29'),(5911,'mathematics','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:44','2020-01-05 20:51:35'),(5912,'chemistry','197.210.71.215',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:04','2020-04-05 08:30:45'),(5913,'biology','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:51','2020-01-05 20:52:21'),(5914,'commerce','197.210.71.215',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:48:01','2020-01-05 20:52:36'),(5915,'chemistry','40.77.167.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 04:41:04','2020-01-06 04:41:04'),(5916,'physics','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 06:59:39','2020-01-06 06:59:39'),(5917,'biology','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:25','2020-01-06 07:01:25'),(5918,'chemistry','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:36','2020-01-06 07:01:36'),(5919,'biology','54.196.116.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 08:39:32','2020-01-06 08:39:32'),(5920,'currentaffairs','52.90.145.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 09:20:05','2020-01-06 09:20:05'),(5921,'currentaffairs','54.81.36.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 10:59:33','2020-01-06 10:59:33'),(5922,'civiledu','54.165.53.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 14:25:40','2020-01-06 14:25:40'),(5923,'english','54.165.254.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 19:05:30','2020-01-06 19:05:30'),(5924,'englishlit','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 20:46:10','2020-01-06 20:46:10'),(5925,'accounting','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 23:28:47','2020-01-06 23:28:47'),(5926,'chemistry','40.77.167.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 00:55:53','2020-01-07 00:55:53'),(5927,'chemistry','197.210.85.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 10:49:45','2020-01-07 10:49:45'),(5928,'chemistry','114.119.144.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 16:29:50','2020-01-07 16:29:50'),(5929,'mathematics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:22','2020-01-07 19:50:22'),(5930,'biology','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5931,'physics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5932,'chemistry','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5933,'englishlit','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5934,'government','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5935,'history','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5936,'history','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:03:53','2020-01-08 00:03:53'),(5937,'mathematics','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:14:17','2020-01-08 00:14:17'),(5938,'commerce','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 02:50:48','2020-01-08 02:50:48'),(5939,'government','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:21:02','2020-01-08 03:21:02'),(5940,'physics','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:30','2020-01-08 03:49:31'),(5941,'accounting','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:55','2020-01-08 03:49:56'),(5942,'mathematics','105.112.24.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 05:26:53','2020-01-08 05:26:53'),(5943,'insurance','18.234.250.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:04:04','2020-01-08 07:04:04'),(5944,'chemistry','157.55.39.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:32:02','2020-01-08 07:32:03'),(5945,'english','3.90.5.24',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 08:20:47','2020-01-08 08:20:48'),(5946,'chemistry','197.210.152.54',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 09:59:01','2020-01-08 10:01:03'),(5947,'biology','197.210.152.54',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:01:17','2020-01-08 10:01:54'),(5948,'crk','54.175.37.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:33:34','2020-01-08 10:33:34'),(5949,'english','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 11:25:14','2020-01-08 11:25:14'),(5950,'mathematics','3.89.141.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 18:26:35','2020-01-08 18:26:35'),(5951,'geography','3.90.5.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 21:36:06','2020-01-08 21:36:06'),(5952,'economics','54.224.174.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 01:24:15','2020-01-09 01:24:15'),(5953,'geography','3.92.200.47',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 02:38:09','2020-01-09 02:46:31'),(5954,'english','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:01:22','2020-01-09 05:01:22'),(5955,'geography','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:35:09','2020-01-09 05:35:09'),(5956,'chemistry','114.119.158.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 08:20:35','2020-01-09 08:20:35'),(5957,'chemistry','197.210.84.180',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:25','2020-01-09 11:42:25'),(5958,'chemistry','66.249.93.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:27','2020-01-09 11:42:29'),(5959,'geography','3.81.50.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 15:48:20','2020-01-09 15:48:20'),(5960,'englishlit','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:10:05','2020-01-09 17:10:05'),(5961,'physics','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:29:29','2020-01-09 17:29:29'),(5962,'currentaffairs','54.91.26.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 20:05:46','2020-01-09 20:05:46'),(5963,'biology','54.90.217.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 23:39:42','2020-01-09 23:39:42'),(5964,'economics','3.88.190.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 04:30:45','2020-01-10 04:30:45'),(5965,'chemistry','159.138.155.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:39','2020-01-10 05:45:39'),(5966,'chemistry','159.138.148.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:42','2020-01-10 05:45:42'),(5967,'physics','3.90.20.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 07:05:46','2020-01-10 07:05:46'),(5968,'mathematics','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 09:57:03','2020-01-10 09:57:03'),(5969,'geography','54.242.86.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 14:16:02','2020-01-10 14:16:02'),(5970,'mathematics','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:33:50','2020-01-10 15:33:50'),(5971,'government','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:52:04','2020-01-10 15:52:04'),(5972,'mathematics','105.112.177.83',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 16:08:56','2020-01-10 16:08:57'),(5973,'mathematics','54.92.183.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 17:00:01','2020-01-10 17:00:01'),(5974,'accounting','54.175.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 19:11:24','2020-01-10 19:11:24'),(5975,'history','54.196.1.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 20:19:00','2020-01-10 20:19:00'),(5976,'insurance','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:04:48','2020-01-11 00:04:48'),(5977,'englishlit','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:23:07','2020-01-11 00:23:07'),(5978,'chemistry','157.55.39.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 07:47:08','2020-01-11 07:47:08'),(5979,'geography','3.85.229.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 08:19:26','2020-01-11 08:19:26'),(5980,'currentaffairs','54.210.29.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 09:17:59','2020-01-11 09:17:59'),(5981,'chemistry','129.205.112.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:01:54','2020-01-11 10:01:54'),(5982,'chemistry','114.119.163.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:12:45','2020-01-11 10:12:45'),(5983,'biology','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:49:13','2020-01-11 10:49:13'),(5984,'english','41.190.3.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:50:45','2020-01-11 10:53:17'),(5985,'government','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:03','2020-01-11 10:57:03'),(5986,'currentaffairs','3.81.114.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:29','2020-01-11 10:57:29'),(5987,'accounting','34.224.97.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 20:14:24','2020-01-11 20:14:24'),(5988,'history','34.228.161.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 03:43:41','2020-01-12 03:43:41'),(5989,'chemistry','54.36.150.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 07:38:14','2020-01-12 07:38:17'),(5990,'chemistry','66.249.66.159',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:18:04','2020-01-12 20:11:39'),(5991,'chemistry','207.46.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:37:09','2020-01-12 16:37:09'),(5992,'chemistry','41.206.30.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 11:30:26','2020-01-13 11:30:26'),(5993,'chemistry','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:08','2020-01-13 17:08:08'),(5994,'biology','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:51','2020-01-13 17:08:51'),(5995,'biology','3.95.28.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:38:02','2020-01-13 17:38:02'),(5996,'chemistry','105.112.21.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:40:01','2020-01-13 17:42:28'),(5997,'history','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 19:43:41','2020-01-13 19:43:41'),(5998,'insurance','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:27','2020-01-13 20:05:27'),(5999,'economics','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:30','2020-01-13 20:05:30'),(6000,'mathematics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6001,'commerce','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6002,'biology','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6003,'government','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6004,'economics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6005,'irk','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6006,'insurance','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6007,'english','18.209.172.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:02:39','2020-01-13 22:02:39'),(6008,'economics','3.83.111.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:58:30','2020-01-13 22:58:30'),(6009,'history','54.159.7.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 01:49:56','2020-01-14 01:49:56'),(6010,'accounting','18.215.161.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 03:52:50','2020-01-14 03:52:50'),(6011,'mathematics','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:35:01','2020-01-14 04:35:01'),(6012,'chemistry','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:56:46','2020-01-14 04:56:46'),(6013,'chemistry','105.112.106.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 06:53:23','2020-01-14 06:53:23'),(6014,'irk','34.237.245.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 10:17:26','2020-01-14 10:17:26'),(6015,'physics','197.210.64.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 12:36:48','2020-01-14 12:36:48'),(6016,'chemistry','162.238.118.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:13:49','2020-01-14 13:13:49'),(6017,'crk','54.145.57.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:25:40','2020-01-14 13:25:40'),(6018,'mathematics','52.91.218.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:29:53','2020-01-14 14:29:56'),(6019,'biology','52.91.218.226',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:31:04','2020-01-14 14:31:07'),(6020,'physics','197.210.226.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 16:50:50','2020-01-14 16:50:50'),(6021,'commerce','54.152.183.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 17:45:43','2020-01-14 17:45:43'),(6022,'chemistry','197.211.58.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 19:02:46','2020-01-14 19:02:46'),(6023,'accounting','18.206.115.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:06:49','2020-01-14 20:06:49'),(6024,'physics','197.210.227.105',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:18:08','2020-01-14 21:20:01'),(6025,'chemistry','105.112.112.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:27:30','2020-01-14 20:27:30'),(6026,'physics','197.210.227.176',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:14:48','2020-01-14 21:18:53'),(6027,'physics','197.210.226.126',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:19:38','2020-01-14 21:19:39'),(6028,'biology','66.249.66.128',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 22:53:39','2020-01-14 22:53:41'),(6029,'economics','34.229.47.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 01:05:22','2020-01-15 01:05:22'),(6030,'chemistry','18.212.26.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 02:18:02','2020-01-15 02:18:02'),(6031,'chemistry','54.208.21.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 05:24:27','2020-01-15 05:24:27'),(6032,'chemistry','159.138.152.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:16','2020-01-15 07:37:16'),(6033,'chemistry','159.138.157.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:19','2020-01-15 07:37:19'),(6034,'government','100.26.203.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:42:28','2020-01-15 08:42:28'),(6035,'chemistry','197.210.29.194',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:53:58','2020-01-15 08:54:11'),(6036,'physics','34.236.147.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 09:37:53','2020-01-15 09:37:56'),(6037,'economics','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 12:29:24','2020-01-15 12:29:24'),(6038,'insurance','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 14:56:31','2020-01-15 14:56:31'),(6039,'economics','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:09:36','2020-01-15 15:09:36'),(6040,'crk','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:19:41','2020-01-15 15:19:41'),(6041,'chemistry','197.210.45.172',92,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:26:03','2020-01-15 15:31:10'),(6042,'commerce','18.209.5.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 17:07:51','2020-01-15 17:07:51'),(6043,'chemistry','197.211.58.205',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 20:53:18','2020-01-15 20:53:44'),(6044,'chemistry','197.211.58.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:03','2020-01-15 21:02:03'),(6045,'englishlit','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:38','2020-01-15 21:02:38'),(6046,'accounting','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:11:49','2020-01-15 21:11:49'),(6047,'chemistry','76.227.27.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:26:06','2020-01-15 21:35:01'),(6048,'english','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:19:54','2020-01-15 22:19:54'),(6049,'crk','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:34:26','2020-01-15 22:34:26'),(6050,'chemistry','159.138.158.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:24','2020-01-16 03:41:24'),(6051,'chemistry','159.138.154.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:27','2020-01-16 03:41:27'),(6052,'chemistry','37.150.17.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 09:03:33','2020-01-16 09:03:33'),(6053,'english','54.226.244.165',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 10:17:00','2020-01-16 10:17:03'),(6054,'insurance','34.229.6.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 12:22:59','2020-01-16 12:22:59'),(6055,'englishlit','100.26.51.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 14:37:15','2020-01-16 14:37:15'),(6056,'accounting','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:45:59','2020-01-16 15:45:59'),(6057,'physics','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:48:23','2020-01-16 15:48:23'),(6058,'english','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:15:39','2020-01-16 18:15:39'),(6059,'currentaffairs','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:19:03','2020-01-16 18:19:03'),(6060,'chemistry','18.205.239.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 19:22:43','2020-01-16 19:22:43'),(6061,'crk','54.209.182.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 20:55:34','2020-01-16 20:55:34'),(6062,'crk','52.87.197.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 21:40:29','2020-01-16 21:40:29'),(6063,'englishlit','54.90.245.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 22:42:09','2020-01-16 22:42:09'),(6064,'englishlit','52.91.61.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 00:58:04','2020-01-17 00:58:04'),(6065,'chemistry','174.129.61.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 03:28:11','2020-01-17 03:28:11'),(6066,'government','3.85.188.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 04:20:24','2020-01-17 04:20:24'),(6067,'chemistry','159.138.155.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:19','2020-01-17 05:35:19'),(6068,'chemistry','159.138.154.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:20','2020-02-24 05:01:25'),(6069,'crk','18.234.143.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 07:39:30','2020-01-17 07:39:30'),(6070,'chemistry','159.138.150.55',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 10:29:28','2020-01-17 10:29:29'),(6071,'chemistry','159.138.153.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:18','2020-01-17 13:26:18'),(6072,'chemistry','159.138.156.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:21','2020-01-17 13:26:21'),(6073,'accounting','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:31:59','2020-01-17 18:31:59'),(6074,'english','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:32:57','2020-01-17 18:32:57'),(6075,'history','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 23:43:23','2020-01-17 23:43:23'),(6076,'chemistry','84.241.193.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 02:10:58','2020-01-18 02:10:58'),(6077,'economics','54.147.112.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:09:08','2020-01-18 04:09:08'),(6078,'chemistry','159.138.128.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:53','2020-01-18 04:22:53'),(6079,'chemistry','159.138.150.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:55','2020-01-18 04:22:55'),(6080,'accounting','52.207.178.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:28:30','2020-01-18 11:06:20'),(6081,'history','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:30:16','2020-01-18 10:30:16'),(6082,'englishlit','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:36:43','2020-01-18 10:36:43'),(6083,'chemistry','197.210.65.53',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-18 21:33:39','2020-04-21 11:21:31'),(6084,'chemistry','197.210.65.246',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:05','2020-01-18 21:51:06'),(6085,'chemistry','197.210.65.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:24','2020-01-18 21:51:24'),(6086,'chemistry','197.210.65.33',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:40','2020-01-18 21:51:44'),(6087,'chemistry','197.210.64.160',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:52:12','2020-01-18 21:52:15'),(6088,'physics','197.210.47.29',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:54:25','2020-01-18 21:54:28'),(6089,'mathematics','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:39:47','2020-01-19 11:39:47'),(6090,'government','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:50:10','2020-01-19 11:50:10'),(6091,'chemistry','5.186.127.79',196,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:25:22','2020-03-07 23:25:18'),(6092,'englishlit','5.186.127.79',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:58:08','2020-02-03 17:34:24'),(6093,'commerce','3.82.117.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 14:53:51','2020-01-19 14:53:51'),(6094,'english','54.225.22.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 18:38:53','2020-01-19 18:38:53'),(6095,'chemistry','41.190.31.147',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 22:23:33','2020-01-19 22:23:33'),(6096,'geography','18.232.68.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 05:23:53','2020-01-20 05:23:53'),(6097,'geography','54.159.45.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:03:51','2020-01-20 06:03:51'),(6098,'geography','100.27.24.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:45:32','2020-01-20 06:45:32'),(6099,'physics','54.227.113.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 13:15:49','2020-01-20 13:15:49'),(6100,'geography','34.203.192.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:05:57','2020-01-20 14:05:57'),(6101,'english','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:10:11','2020-01-20 14:10:14'),(6102,'accounting','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:13:50','2020-01-20 14:13:53'),(6103,'biology','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:17:51','2020-01-20 14:17:54'),(6104,'chemistry','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:21:26','2020-01-20 14:21:29'),(6105,'commerce','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:31:36','2020-01-20 14:31:39'),(6106,'geography','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:36:02','2020-01-20 14:36:05'),(6107,'history','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:38:08','2020-01-20 14:38:11'),(6108,'physics','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:44:17','2020-01-20 14:44:20'),(6109,'chemistry','34.203.190.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:47:27','2020-01-20 14:47:27'),(6110,'englishlit','18.208.215.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 15:44:11','2020-01-20 15:44:11'),(6111,'biology','54.163.24.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 20:05:22','2020-01-20 20:05:22'),(6112,'currentaffairs','54.224.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 21:53:39','2020-01-20 21:53:39'),(6113,'biology','54.224.78.213',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 22:15:45','2020-01-20 22:15:47'),(6114,'englishlit','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:06:37','2020-01-21 04:06:37'),(6115,'physics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:24:39','2020-01-21 04:24:39'),(6116,'economics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:38:24','2020-01-21 04:38:24'),(6117,'mathematics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:05:21','2020-01-21 05:05:21'),(6118,'commerce','34.207.229.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:42:09','2020-01-21 05:42:09'),(6119,'mathematics','3.80.112.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 08:48:34','2020-01-21 08:48:34'),(6120,'chemistry','159.138.156.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:02','2020-01-21 09:08:02'),(6121,'chemistry','159.138.155.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:05','2020-01-21 09:08:05'),(6122,'insurance','34.201.67.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:58:44','2020-01-21 09:58:44'),(6123,'chemistry','34.201.67.206',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 10:24:35','2020-01-21 10:24:39'),(6124,'crk','3.84.124.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 11:25:57','2020-01-21 11:25:57'),(6125,'english','54.82.117.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 12:39:35','2020-01-21 12:39:38'),(6126,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6127,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6128,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6129,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6130,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6131,'chemistry','197.210.65.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:51:28','2020-01-21 16:51:28'),(6132,'geography','34.235.141.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 17:46:43','2020-01-21 17:46:43'),(6133,'mathematics','54.221.179.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 23:42:47','2020-01-21 23:42:47'),(6134,'accounting','54.88.104.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 05:24:34','2020-01-22 05:24:34'),(6135,'chemistry','52.91.210.222',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:50'),(6136,'chemistry','52.91.210.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:17'),(6137,'english','197.210.45.42',52,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:07:55','2020-01-22 10:20:09'),(6138,'chemistry','197.210.45.42',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:16:58','2020-01-22 10:17:01'),(6139,'english','197.210.84.40',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 11:05:36','2020-01-22 11:07:18'),(6140,'accounting','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:06:53','2020-01-22 14:06:56'),(6141,'biology','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:16:26','2020-01-22 14:16:29'),(6142,'chemistry','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:17:57','2020-01-22 14:18:00'),(6143,'commerce','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:24:26','2020-01-22 14:24:28'),(6144,'english','3.85.50.174',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:28:45','2020-01-22 14:31:27'),(6145,'geography','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:44:20','2020-01-22 14:44:23'),(6146,'government','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:49:57','2020-01-22 14:50:00'),(6147,'history','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:52:09','2020-01-22 14:52:12'),(6148,'physics','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:57:23','2020-01-22 14:57:26'),(6149,'mathematics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:06:42','2020-01-22 19:06:42'),(6150,'physics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:10:39','2020-01-22 19:10:40'),(6151,'physics','105.112.178.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 01:21:24','2020-01-23 01:21:24'),(6152,'history','54.242.9.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 07:11:29','2020-01-23 07:11:29'),(6153,'accounting','3.95.2.128',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:02:04','2020-01-23 12:49:19'),(6154,'biology','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:11:55','2020-01-23 12:54:42'),(6155,'chemistry','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:16:26','2020-01-23 12:57:07'),(6156,'commerce','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:25:56','2020-01-23 13:00:45'),(6157,'geography','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:34:50','2020-01-23 13:07:52'),(6158,'government','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:42:08','2020-01-23 13:08:44'),(6159,'english','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:43:06','2020-01-23 13:02:16'),(6160,'history','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:46:06','2020-01-23 13:11:05'),(6161,'physics','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:53:50','2020-01-23 13:18:26'),(6162,'chemistry','78.67.8.249',190,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 11:18:52','2020-05-28 07:54:26'),(6163,'biology','54.226.136.136',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 11:47:50','2020-01-23 11:47:50'),(6164,'insurance','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:24:44','2020-01-23 12:24:44'),(6165,'economics','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:33:40','2020-01-23 12:33:40'),(6166,'chemistry','3.83.32.171',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 14:11:16','2020-01-23 14:46:53'),(6167,'history','54.80.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 15:21:18','2020-01-23 15:21:18'),(6168,'accounting','54.227.208.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 19:10:55','2020-01-23 19:10:55'),(6169,'chemistry','114.119.129.17',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:30:35','2020-01-23 22:30:35'),(6170,'chemistry','54.145.181.222',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:34:50','2020-01-23 22:34:50'),(6171,'english','66.249.66.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:23:18','2020-01-24 01:23:18'),(6172,'chemistry','159.138.153.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:26','2020-01-24 01:38:26'),(6173,'chemistry','159.138.155.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:28','2020-01-24 01:38:28'),(6174,'irk','54.221.33.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 02:21:24','2020-01-24 02:21:24'),(6175,'crk','3.92.163.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 07:56:53','2020-01-24 07:56:53'),(6176,'chemistry','159.138.155.158',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:33:54','2020-01-24 09:33:54'),(6177,'chemistry','159.138.155.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:02','2020-01-24 09:34:02'),(6178,'chemistry','159.138.159.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:05','2020-01-24 09:34:05'),(6179,'chemistry','159.138.158.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:55','2020-01-24 11:45:55'),(6180,'chemistry','159.138.152.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:58','2020-01-24 11:45:58'),(6181,'commerce','54.234.15.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 12:20:42','2020-01-24 12:20:42'),(6182,'crk','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:21:36','2020-01-24 16:21:36'),(6183,'accounting','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:29:29','2020-01-24 16:29:29'),(6184,'english','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:48','2020-01-24 18:50:48'),(6185,'mathematics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6186,'commerce','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6187,'chemistry','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6188,'geography','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6189,'economics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6190,'insurance','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6191,'chemistry','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:38:45','2020-01-24 19:38:47'),(6192,'chemistry','159.138.155.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:17','2020-01-24 19:48:17'),(6193,'chemistry','159.138.157.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:20','2020-01-24 19:48:20'),(6194,'economics','54.234.219.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 21:16:38','2020-01-24 21:16:38'),(6195,'chemistry','54.82.250.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 00:25:04','2020-01-25 00:25:04'),(6196,'geography','52.91.20.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 02:53:58','2020-01-25 02:53:58'),(6197,'government','52.205.208.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 05:54:14','2020-01-25 05:54:14'),(6198,'government','3.82.98.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 06:50:25','2020-01-25 06:50:25'),(6199,'economics','18.232.150.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 07:40:32','2020-01-25 07:40:32'),(6200,'chemistry','66.249.64.112',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:00:41','2020-01-25 10:06:05'),(6201,'chemistry','66.249.64.114',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:11:26','2020-01-25 10:25:38'),(6202,'insurance','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:06:32','2020-01-25 11:06:32'),(6203,'crk','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:16:24','2020-01-25 11:16:24'),(6204,'mathematics','105.112.177.119',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 12:21:44','2020-01-25 12:24:10'),(6205,'economics','184.72.97.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:05:36','2020-01-25 15:05:36'),(6206,'english','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6207,'economics','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6208,'englishlit','54.172.2.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 16:46:58','2020-01-25 16:46:58'),(6209,'english','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 18:56:16','2020-01-25 18:56:16'),(6210,'commerce','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 19:01:52','2020-01-25 19:01:52'),(6211,'crk','54.227.219.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:07:54','2020-01-25 23:07:54'),(6212,'crk','34.227.56.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:54:31','2020-01-25 23:54:31'),(6213,'geography','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 09:48:50','2020-01-26 09:48:50'),(6214,'physics','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:42','2020-01-26 13:25:42'),(6215,'insurance','54.163.34.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:44','2020-01-26 13:53:10'),(6216,'englishlit','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 14:26:21','2020-01-26 14:26:21'),(6217,'chemistry','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 15:31:14','2020-01-26 15:31:14'),(6218,'currentaffairs','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:40:36','2020-01-26 16:40:36'),(6219,'english','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:56:27','2020-01-26 16:56:27'),(6220,'mathematics','54.234.126.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 17:35:46','2020-01-26 17:35:46'),(6221,'englishlit','3.80.203.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 18:54:41','2020-01-26 18:54:41'),(6222,'mathematics','3.92.208.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 19:40:52','2020-01-26 19:40:52'),(6223,'englishlit','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:07:23','2020-01-26 22:07:23'),(6224,'commerce','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:27:30','2020-01-26 22:27:30'),(6225,'crk','3.81.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 23:10:54','2020-01-26 23:10:54'),(6226,'economics','54.237.215.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 00:37:31','2020-01-27 00:37:31'),(6227,'government','100.24.9.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 02:34:55','2020-01-27 02:34:55'),(6228,'mathematics','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6229,'biology','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6230,'chemistry','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6231,'englishlit','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6232,'government','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6233,'civiledu','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6234,'currentaffairs','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:27','2020-01-27 04:08:27'),(6235,'english','3.89.150.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 06:06:57','2020-01-27 06:06:57'),(6236,'chemistry','114.119.167.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 07:14:52','2020-01-27 07:14:52'),(6237,'english','54.167.78.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 08:12:16','2020-01-27 08:12:16'),(6238,'biology','3.94.145.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:10:32','2020-01-27 12:10:32'),(6239,'crk','41.184.176.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:18:46','2020-01-27 12:18:46'),(6240,'english','52.205.236.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 14:56:14','2020-01-27 14:56:14'),(6241,'chemistry','105.112.38.62',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 15:47:21','2020-01-27 15:51:48'),(6242,'insurance','34.239.130.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 16:38:00','2020-01-27 16:38:00'),(6243,'chemistry','114.119.133.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 19:10:16','2020-01-27 19:10:16'),(6244,'chemistry','3.92.236.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 20:56:15','2020-01-27 20:56:15'),(6245,'chemistry','35.173.249.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 22:22:57','2020-01-27 22:22:57'),(6246,'chemistry','114.119.163.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 23:25:06','2020-01-27 23:25:06'),(6247,'commerce','3.95.235.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 00:29:02','2020-01-28 00:29:02'),(6248,'chemistry','151.80.39.47',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 01:56:45','2020-04-02 23:36:26'),(6249,'chemistry','114.119.131.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 02:19:39','2020-01-28 02:19:39'),(6250,'chemistry','114.119.146.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 03:40:30','2020-01-28 03:40:30'),(6251,'chemistry','159.138.158.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:23','2020-01-28 06:57:23'),(6252,'chemistry','159.138.151.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:26','2020-01-28 06:57:26'),(6253,'mathematics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6254,'accounting','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6255,'physics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6256,'government','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6257,'crk','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:04'),(6258,'insurance','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6259,'currentaffairs','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6260,'geography','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:08:11','2020-01-28 11:08:11'),(6261,'englishlit','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:17:47','2020-01-28 11:17:47'),(6262,'accounting','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:22:33','2020-01-28 11:22:33'),(6263,'chemistry','157.55.39.83',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:38:03','2020-01-28 11:38:03'),(6264,'economics','35.171.182.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:01:23','2020-01-28 14:01:23'),(6265,'economics','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:18','2020-01-28 14:44:18'),(6266,'english','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:19','2020-01-28 14:44:19'),(6267,'physics','3.94.103.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 18:25:15','2020-01-28 18:25:15'),(6268,'commerce','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:38','2020-01-29 02:20:38'),(6269,'accounting','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6270,'physics','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6271,'government','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6272,'crk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6273,'irk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6274,'currentaffairs','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6275,'english','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:42','2020-01-29 02:55:43'),(6276,'mathematics','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6277,'accounting','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6278,'government','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6279,'insurance','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6280,'currentaffairs','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6281,'history','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:44'),(6282,'chemistry','159.138.159.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:08:05','2020-01-29 06:08:05'),(6283,'mathematics','3.83.117.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:37:49','2020-01-29 06:37:49'),(6284,'geography','18.232.162.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 08:36:32','2020-01-29 08:36:32'),(6285,'insurance','52.90.181.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 12:12:29','2020-01-29 12:12:29'),(6286,'chemistry','18.234.111.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 14:21:47','2020-01-29 14:21:47'),(6287,'commerce','54.87.20.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 15:21:30','2020-01-29 15:21:30'),(6288,'mathematics','52.90.10.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 16:29:01','2020-01-29 16:29:01'),(6289,'chemistry','207.46.13.92',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:25:12','2020-01-29 18:25:12'),(6290,'mathematics','3.81.141.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:38:00','2020-01-29 18:38:00'),(6291,'government','41.190.3.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:13:05','2020-01-29 19:13:06'),(6292,'chemistry','207.46.13.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:32:15','2020-01-29 19:32:15'),(6293,'commerce','3.88.140.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 21:29:47','2020-01-29 21:29:47'),(6294,'biology','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:49:14','2020-01-30 01:49:14'),(6295,'english','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:50:59','2020-01-30 01:50:59'),(6296,'mathematics','54.91.188.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 03:44:50','2020-01-30 03:44:50'),(6297,'english','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:22:30','2020-01-30 05:22:30'),(6298,'government','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:24:43','2020-01-30 05:24:43'),(6299,'englishlit','3.80.30.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 06:21:01','2020-01-30 06:21:01'),(6300,'economics','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:13:00','2020-01-30 08:13:00'),(6301,'crk','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:15:11','2020-01-30 08:15:11'),(6302,'geography','18.207.190.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 10:50:25','2020-01-30 10:50:25'),(6303,'english','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:28:50','2020-01-30 13:28:50'),(6304,'civiledu','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:59:42','2020-01-30 13:59:42'),(6305,'geography','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 14:27:14','2020-01-30 14:27:14'),(6306,'insurance','34.237.245.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:05:29','2020-01-30 16:05:29'),(6307,'chemistry','46.229.161.131',212,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-04-19 15:14:37'),(6308,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6309,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6310,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6311,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6312,'physics','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:01:23','2020-01-30 20:01:23'),(6313,'geography','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:23:45','2020-01-30 20:23:45'),(6314,'chemistry','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 21:51:40','2020-01-30 21:51:40'),(6315,'englishlit','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 22:08:33','2020-01-30 22:08:33'),(6316,'currentaffairs','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:21:19','2020-01-31 01:21:19'),(6317,'government','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:38:18','2020-01-31 01:38:18'),(6318,'economics','54.89.156.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:05:07','2020-01-31 03:05:07'),(6319,'chemistry','207.46.13.209',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:23:54','2020-01-31 12:04:42'),(6320,'english','105.112.182.82',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 06:30:35','2020-01-31 06:32:01'),(6321,'physics','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:12:51','2020-01-31 07:12:51'),(6322,'english','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:23:23','2020-01-31 07:23:23'),(6323,'economics','54.210.244.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:58:52','2020-01-31 07:58:52'),(6324,'englishlit','3.86.29.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 10:32:00','2020-01-31 10:32:00'),(6325,'chemistry','54.237.205.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 12:11:56','2020-01-31 12:11:56'),(6326,'mathematics','52.86.208.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 15:08:11','2020-01-31 15:08:11'),(6327,'accounting','3.86.202.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 17:15:43','2020-01-31 17:15:43'),(6328,'insurance','3.91.133.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 18:38:12','2020-01-31 18:38:12'),(6329,'mathematics','3.82.155.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 22:46:02','2020-01-31 22:46:02'),(6330,'insurance','18.234.65.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 23:57:02','2020-01-31 23:57:02'),(6331,'commerce','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:38:11','2020-02-01 00:38:11'),(6332,'english','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:08','2020-02-01 00:43:08'),(6333,'physics','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:27','2020-02-01 00:43:27'),(6334,'english','105.112.59.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:48:46','2020-02-01 04:48:46'),(6335,'englishlit','54.209.65.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:57:37','2020-02-01 04:57:37'),(6336,'geography','52.91.111.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 06:32:15','2020-02-01 06:32:15'),(6337,'english','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6338,'mathematics','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6339,'biology','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6340,'chemistry','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6341,'englishlit','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6342,'insurance','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6343,'history','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6344,'economics','54.87.59.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:18:15','2020-02-01 12:18:15'),(6345,'insurance','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:55:22','2020-02-01 12:55:22'),(6346,'civiledu','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 13:00:35','2020-02-01 13:00:35'),(6347,'accounting','34.203.212.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 14:38:27','2020-02-01 14:38:27'),(6348,'biology','34.228.168.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 01:57:16','2020-02-02 01:57:16'),(6349,'english','54.227.175.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 03:18:24','2020-02-02 03:18:24'),(6350,'government','52.23.185.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 05:33:56','2020-02-02 05:33:56'),(6351,'crk','52.23.225.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 08:26:03','2020-02-02 08:26:03'),(6352,'history','54.152.74.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 10:18:23','2020-02-02 10:18:23'),(6353,'civiledu','54.175.193.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 14:11:21','2020-02-02 14:11:21'),(6354,'chemistry','34.229.20.78',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:23'),(6355,'chemistry','34.229.20.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:22'),(6356,'chemistry','105.112.178.165',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 19:12:14','2020-02-02 19:31:58'),(6357,'biology','18.212.175.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 23:50:11','2020-02-02 23:50:11'),(6358,'currentaffairs','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 00:42:03','2020-02-03 00:42:03'),(6359,'history','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:15','2020-02-03 01:17:15'),(6360,'government','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:42','2020-02-03 01:17:42'),(6361,'economics','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:35:23','2020-02-03 01:35:23'),(6362,'economics','52.204.49.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 02:42:06','2020-02-03 02:42:06'),(6363,'economics','3.90.112.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 04:45:10','2020-02-03 04:45:10'),(6364,'english','34.228.141.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 06:53:18','2020-02-03 06:53:18'),(6365,'accounting','54.175.163.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 07:43:49','2020-02-03 07:43:49'),(6366,'chemistry','105.112.75.189',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:18:05','2020-02-03 09:50:11'),(6367,'biology','66.249.88.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:41:16','2020-02-03 09:41:18'),(6368,'chemistry','105.112.55.63',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:08:19','2020-02-03 10:31:05'),(6369,'chemistry','197.210.71.2',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:30:49','2020-02-03 10:30:59'),(6370,'mathematics','5.186.127.79',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:01:59','2020-03-08 01:56:09'),(6371,'english','5.186.127.79',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:02:29','2020-02-03 19:50:47'),(6372,'history','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:40:14','2020-02-03 19:40:14'),(6373,'chemistry','54.227.12.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 21:50:10','2020-02-03 21:50:10'),(6374,'crk','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 01:59:00','2020-02-04 01:59:00'),(6375,'commerce','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 02:10:16','2020-02-04 02:10:16'),(6376,'chemistry','105.112.178.251',234,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 03:42:45','2020-02-04 05:35:31'),(6377,'crk','54.174.29.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 08:39:40','2020-02-04 08:39:40'),(6378,'chemistry','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:58:55','2020-02-04 09:58:55'),(6379,'irk','54.145.39.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:59:39','2020-02-04 09:59:39'),(6380,'mathematics','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:00:08','2020-02-04 10:00:08'),(6381,'economics','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:48:18','2020-02-04 10:48:18'),(6382,'accounting','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:54:29','2020-02-04 10:54:29'),(6383,'civiledu','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 11:29:41','2020-02-04 11:29:41'),(6384,'economics','54.162.191.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:01:04','2020-02-04 12:01:04'),(6385,'chemistry','159.138.155.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:43:25','2020-02-04 12:43:25'),(6386,'crk','3.83.164.35',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:13:32','2020-02-04 14:20:46'),(6387,'irk','3.83.164.35',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:18:49','2020-02-04 14:24:05'),(6388,'english','3.83.164.35',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:25:01','2020-02-04 14:28:15'),(6389,'mathematics','3.83.164.35',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 14:29:22','2020-02-04 14:33:35'),(6390,'civiledu','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:34:31','2020-02-04 14:39:09'),(6391,'insurance','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:40:01','2020-02-04 14:43:43'),(6392,'chemistry','129.56.111.10',6,'','NG','','Lagos',NULL,NULL,'','','2020-02-04 14:41:58','2020-02-05 06:14:39'),(6393,'economics','129.56.111.10',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:42:39','2020-02-04 14:42:39'),(6394,'currentaffairs','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:44:50','2020-02-04 14:48:55'),(6395,'government','18.207.229.112',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 15:33:33','2020-02-04 15:33:33'),(6396,'mathematics','190.120.217.202',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 16:44:57','2020-02-04 16:44:57'),(6397,'government','54.81.18.48',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 17:27:35','2020-02-04 17:46:16'),(6398,'crk','54.81.18.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 17:46:16','2020-02-04 17:46:16'),(6399,'chemistry','197.211.61.135',16,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 19:19:08','2020-02-04 19:24:05'),(6400,'chemistry','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:15:38','2020-02-04 20:15:38'),(6401,'geography','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:28:22','2020-02-04 20:28:22'),(6402,'government','34.233.134.3',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 21:13:57','2020-02-04 21:13:57'),(6403,'commerce','52.91.40.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 22:24:13','2020-02-04 22:24:13'),(6404,'economics','34.228.184.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 00:11:53','2020-02-05 00:11:53'),(6405,'economics','18.215.150.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 03:12:14','2020-02-05 03:12:14'),(6406,'insurance','54.237.226.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 04:33:22','2020-02-05 04:33:22'),(6407,'chemistry','207.46.13.202',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 05:48:51','2020-02-05 07:58:31'),(6408,'chemistry','206.189.180.4',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:11:56','2020-02-05 06:12:29'),(6409,'physics','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:13:27','2020-02-05 06:13:27'),(6410,'biology','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:14:43','2020-02-05 06:14:43'),(6411,'chemistry','159.138.152.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 09:26:20','2020-02-05 09:26:20'),(6412,'englishlit','34.228.66.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 10:25:53','2020-02-05 10:25:53'),(6413,'chemistry','207.46.13.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:16:47','2020-02-05 12:16:47'),(6414,'economics','52.87.240.0',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:48:30','2020-02-05 12:51:43'),(6415,'englishlit','52.87.240.0',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:52:17','2020-02-05 12:55:42'),(6416,'chemistry','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:42:37','2020-02-05 13:42:40'),(6417,'biology','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:43:23','2020-02-05 13:43:27'),(6418,'chemistry','159.138.156.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:18','2020-02-05 14:20:18'),(6419,'chemistry','159.138.156.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:20','2020-02-05 14:20:20'),(6420,'english','18.233.225.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:35:35','2020-02-05 14:35:35'),(6421,'chemistry','159.138.158.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:22','2020-02-05 16:03:22'),(6422,'chemistry','159.138.158.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:24','2020-02-05 16:03:24'),(6423,'chemistry','149.28.23.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:07:00','2020-02-05 16:07:01'),(6424,'chemistry','197.210.45.223',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:12:02','2020-02-05 19:12:03'),(6425,'crk','54.147.234.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:55:34','2020-02-05 19:55:34'),(6426,'crk','34.227.152.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 00:47:24','2020-02-06 00:47:24'),(6427,'insurance','54.198.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:07:31','2020-02-06 05:07:31'),(6428,'mathematics','54.198.78.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:13:14','2020-02-06 05:39:35'),(6429,'chemistry','105.112.178.38',113,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:24:23','2020-02-06 08:18:18'),(6430,'chemistry','197.210.52.78',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:45:06','2020-02-06 09:09:46'),(6431,'chemistry','197.210.53.153',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:52:38','2020-02-06 09:16:07'),(6432,'chemistry','197.210.52.148',167,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:56:55','2020-02-06 09:16:55'),(6433,'chemistry','197.210.53.241',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:57:58','2020-02-06 09:03:21'),(6434,'english','197.210.53.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:03','2020-02-06 09:17:03'),(6435,'english','197.210.53.153',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:17','2020-02-06 09:17:20'),(6436,'accounting','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:19:37','2020-02-06 09:19:40'),(6437,'biology','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:20','2020-02-06 09:20:23'),(6438,'physics','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:51','2020-02-06 09:20:54'),(6439,'english','102.67.6.4',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:35','2020-02-06 09:21:38'),(6440,'englishlit','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:36','2020-02-06 09:21:39'),(6441,'mathematics','102.67.6.4',90,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:48','2020-02-06 09:22:30'),(6442,'government','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:53','2020-02-06 09:21:56'),(6443,'crk','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:07','2020-02-06 09:22:11'),(6444,'geography','197.210.52.46',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:18','2020-02-06 09:22:21'),(6445,'economics','197.210.52.148',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:28','2020-02-06 09:22:31'),(6446,'irk','197.210.52.46',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:48','2020-02-06 09:22:50'),(6447,'civiledu','197.210.52.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:57','2020-02-06 09:23:00'),(6448,'insurance','197.210.53.228',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:13','2020-02-06 09:24:16'),(6449,'biology','102.67.6.4',45,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:44','2020-02-06 09:25:01'),(6450,'history','197.210.53.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:25:32','2020-02-06 09:25:35'),(6451,'chemistry','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:05:57','2020-02-06 11:05:57'),(6452,'physics','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:34:52','2020-02-06 11:34:52'),(6453,'chemistry','129.18.170.187',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 12:20:37','2020-02-06 12:20:49'),(6454,'english','41.184.164.93',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 14:04:50','2020-02-06 14:04:53'),(6455,'englishlit','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:10:15','2020-02-06 14:10:15'),(6456,'crk','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:31:21','2020-02-06 14:31:21'),(6457,'chemistry','197.211.61.128',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:45:01','2020-02-06 14:45:39'),(6458,'englishlit','54.242.25.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 15:06:36','2020-02-06 15:06:36'),(6459,'currentaffairs','3.84.248.139',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 16:33:00','2020-02-06 16:33:00'),(6460,'chemistry','159.138.153.33',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 19:22:39','2020-02-06 19:22:42'),(6461,'crk','3.88.183.247',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 21:12:07','2020-02-06 21:12:07'),(6462,'englishlit','18.232.114.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 22:46:55','2020-02-06 22:46:55'),(6463,'economics','54.227.10.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 01:41:04','2020-02-07 01:41:04'),(6464,'english','3.86.106.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 02:18:26','2020-02-07 02:18:26'),(6465,'biology','35.174.9.116',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:28:22','2020-02-07 04:28:23'),(6466,'government','35.174.9.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:47:35','2020-02-07 04:47:35'),(6467,'crk','54.157.234.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 09:15:39','2020-02-07 09:15:39'),(6468,'mathematics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:24','2020-02-07 10:02:27'),(6469,'chemistry','41.184.164.93',46,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:52','2020-02-13 12:05:06'),(6470,'physics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:03:10','2020-02-07 10:03:13'),(6471,'chemistry','34.207.81.136',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 12:31:01','2020-02-07 12:31:01'),(6472,'chemistry','159.138.148.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:48','2020-02-07 13:54:48'),(6473,'chemistry','159.138.151.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:51','2020-02-07 13:54:51'),(6474,'chemistry','159.138.156.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:39','2020-02-07 14:47:39'),(6475,'chemistry','159.138.152.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:40','2020-02-07 14:47:40'),(6476,'english','52.201.218.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 18:39:18','2020-02-07 18:39:18'),(6477,'chemistry','105.112.117.84',293,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:30:28','2020-02-07 20:00:57'),(6478,'english','105.112.117.84',104,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:48:33','2020-02-07 20:02:22'),(6479,'biology','3.87.229.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 20:58:03','2020-02-07 20:58:03'),(6480,'englishlit','54.226.235.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 05:22:08','2020-02-08 05:22:08'),(6481,'currentaffairs','18.212.207.50',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 12:56:59','2020-02-08 13:19:35'),(6482,'english','105.112.121.51',3687,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:00:54','2020-02-08 16:40:24'),(6483,'chemistry','105.112.121.51',247,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:17:20','2020-02-08 16:40:24'),(6484,'mathematics','105.112.121.51',280,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 14:55:34','2020-02-08 16:40:25'),(6485,'currentaffairs','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6486,'biology','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6487,'civiledu','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6488,'accounting','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6489,'history','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6490,'government','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6491,'crk','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6492,'geography','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6493,'physics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6494,'irk','105.112.121.51',180,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:28'),(6495,'commerce','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:51','2020-02-08 16:40:24'),(6496,'englishlit','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:24'),(6497,'economics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:23'),(6498,'civiledu','34.230.4.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 17:05:03','2020-02-08 17:05:03'),(6499,'englishlit','54.167.22.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 20:45:17','2020-02-08 20:45:17'),(6500,'english','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:52:30','2020-02-08 20:52:30'),(6501,'accounting','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:59:40','2020-02-08 20:59:40'),(6502,'chemistry','105.112.23.32',172,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:31:48','2020-02-09 02:17:39'),(6503,'commerce','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6504,'physics','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6505,'chemistry','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6506,'englishlit','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6507,'crk','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6508,'geography','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:19'),(6509,'history','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:19','2020-02-08 23:44:19'),(6510,'physics','66.249.83.192',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 06:54:16','2020-02-09 06:54:18'),(6511,'mathematics','105.112.38.128',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:07:48','2020-02-09 11:09:27'),(6512,'biology','105.112.38.128',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:10:56','2020-02-09 11:10:57'),(6513,'biology','105.112.57.10',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:16:17','2020-02-09 11:16:56'),(6514,'chemistry','105.112.176.118',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 13:28:05','2020-02-09 14:36:23'),(6515,'chemistry','105.112.38.60',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 21:58:06','2020-02-09 21:58:42'),(6516,'englishlit','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6517,'civiledu','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6518,'mathematics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6519,'physics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6520,'currentaffairs','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6521,'commerce','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6522,'government','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6523,'accounting','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6524,'english','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6525,'chemistry','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6526,'crk','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6527,'history','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6528,'economics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:45'),(6529,'irk','105.112.121.100',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6530,'biology','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6531,'geography','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6532,'mathematics','3.88.254.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 23:58:44','2020-02-09 23:58:44'),(6533,'commerce','54.234.42.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 04:53:06','2020-02-10 04:53:06'),(6534,'insurance','52.205.252.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 12:48:35','2020-02-10 12:48:35'),(6535,'biology','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:31:06','2020-02-10 13:33:56'),(6536,'geography','54.86.139.235',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:34:52','2020-02-10 13:40:06'),(6537,'government','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:38:55','2020-02-10 13:41:36'),(6538,'chemistry','159.138.159.131',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 14:59:24','2020-02-10 14:59:25'),(6539,'chemistry','66.102.8.239',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 19:24:51','2020-03-10 07:49:39'),(6540,'mathematics','54.198.180.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 23:23:53','2020-02-10 23:23:53'),(6541,'geography','34.228.215.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 03:09:40','2020-02-11 03:09:40'),(6542,'economics','54.86.162.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 06:23:36','2020-02-11 06:23:36'),(6543,'chemistry','159.138.128.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:43','2020-02-11 08:08:43'),(6544,'chemistry','159.138.157.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:44','2020-02-11 08:08:44'),(6545,'crk','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:19:44','2020-02-11 08:19:44'),(6546,'geography','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:28:36','2020-02-11 08:28:36'),(6547,'geography','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:07:20','2020-02-11 11:07:20'),(6548,'english','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:29:21','2020-02-11 11:29:21'),(6549,'physics','52.90.177.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 20:57:31','2020-02-11 20:57:31'),(6550,'chemistry','54.36.148.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 21:31:54','2020-02-11 21:31:55'),(6551,'englishlit','52.23.243.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 00:28:14','2020-02-12 00:28:14'),(6552,'mathematics','105.112.59.79',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 01:05:16','2020-02-12 01:05:16'),(6553,'currentaffairs','54.172.153.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 04:22:50','2020-02-12 04:22:50'),(6554,'biology','54.81.207.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 06:05:04','2020-02-12 06:05:04'),(6555,'geography','3.83.240.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 07:57:33','2020-02-12 07:57:33'),(6556,'chemistry','114.119.164.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 09:32:25','2020-02-12 09:32:25'),(6557,'chemistry','159.138.157.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:57','2020-02-12 12:35:57'),(6558,'chemistry','159.138.155.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:59','2020-02-12 12:35:59'),(6559,'mathematics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:18:10','2020-02-12 16:18:10'),(6560,'physics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:23:01','2020-02-12 16:23:01'),(6561,'chemistry','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:44:21','2020-02-12 16:44:21'),(6562,'biology','66.249.88.14',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 17:50:44','2020-02-15 20:12:28'),(6563,'geography','18.212.14.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 21:05:47','2020-02-12 21:05:47'),(6564,'government','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:08:36','2020-02-12 22:08:36'),(6565,'mathematics','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:15:14','2020-02-12 22:15:14'),(6566,'mathematics','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:42:26','2020-02-13 01:42:26'),(6567,'accounting','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:51:06','2020-02-13 01:51:06'),(6568,'history','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:03:04','2020-02-13 03:03:04'),(6569,'englishlit','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:13:21','2020-02-13 03:13:21'),(6570,'chemistry','54.36.150.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 06:05:15','2020-02-13 06:05:15'),(6571,'irk','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6572,'geography','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6573,'accounting','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6574,'currentaffairs','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6575,'english','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6576,'government','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6577,'mathematics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6578,'civiledu','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6579,'physics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6580,'crk','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6581,'biology','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6582,'commerce','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6583,'englishlit','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6584,'history','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6585,'chemistry','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6586,'economics','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:47:15','2020-02-13 09:50:43'),(6587,'chemistry','159.138.152.95',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 16:01:29','2020-02-13 16:01:33'),(6588,'geography','3.85.140.177',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-13 18:30:03','2020-02-13 18:30:03'),(6589,'chemistry','107.167.108.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 22:22:25','2020-02-13 22:22:25'),(6590,'accounting','18.206.218.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 03:40:45','2020-02-14 03:40:45'),(6591,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6592,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6593,'chemistry','159.138.153.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:50','2020-02-14 08:34:50'),(6594,'chemistry','159.138.150.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:53','2020-02-14 08:34:53'),(6595,'chemistry','159.138.158.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:49','2020-02-14 08:40:49'),(6596,'chemistry','159.138.151.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:52','2020-02-14 08:40:52'),(6597,'chemistry','54.36.150.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 09:29:11','2020-02-14 09:29:11'),(6598,'commerce','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:16','2020-02-14 12:46:16'),(6599,'physics','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6600,'government','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6601,'geography','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6602,'irk','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6603,'currentaffairs','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6604,'history','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6605,'english','54.234.90.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 13:13:09','2020-02-14 13:13:09'),(6606,'government','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 15:59:30','2020-02-14 15:59:34'),(6607,'physics','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 16:21:32','2020-02-14 16:21:35'),(6608,'mathematics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6609,'physics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6610,'englishlit','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6611,'english','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6612,'biology','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6613,'irk','3.84.126.190',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:53'),(6614,'government','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6615,'currentaffairs','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6616,'economics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6617,'commerce','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6618,'geography','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6619,'civiledu','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6620,'accounting','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6621,'history','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6622,'chemistry','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6623,'crk','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6624,'crk','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6625,'currentaffairs','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6626,'geography','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6627,'economics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6628,'civiledu','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6629,'irk','52.205.39.67',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:40'),(6630,'englishlit','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6631,'government','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6632,'chemistry','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6633,'history','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6634,'physics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6635,'biology','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6636,'accounting','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6637,'mathematics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6638,'english','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6639,'commerce','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:38','2020-02-14 17:43:41'),(6640,'history','54.161.219.62',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-14 18:19:40','2020-02-14 18:19:40'),(6641,'chemistry','207.46.13.106',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 13:28:42','2020-02-26 14:54:53'),(6642,'mathematics','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6643,'commerce','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6644,'chemistry','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6645,'englishlit','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6646,'government','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6647,'insurance','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6648,'history','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6649,'chemistry','157.55.39.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 18:35:48','2020-02-15 18:35:48'),(6650,'biology','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 20:12:28','2020-02-15 20:12:30'),(6651,'insurance','107.22.1.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 00:40:58','2020-02-16 00:40:58'),(6652,'economics','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:40:03','2020-02-16 01:40:03'),(6653,'history','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:59:35','2020-02-16 01:59:35'),(6654,'economics','100.26.204.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 04:49:19','2020-02-16 04:49:19'),(6655,'history','54.173.184.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 07:23:00','2020-02-16 07:23:00'),(6656,'chemistry','54.158.124.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 08:06:19','2020-02-16 08:06:19'),(6657,'accounting','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 09:59:42','2020-02-16 09:59:42'),(6658,'history','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 10:06:30','2020-02-16 10:06:30'),(6659,'biology','54.81.159.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:49:34','2020-02-16 16:58:41'),(6660,'english','54.81.159.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:52:09','2020-02-16 16:56:21'),(6661,'chemistry','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:21','2020-02-16 16:54:24'),(6662,'commerce','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:43','2020-02-16 16:54:46'),(6663,'accounting','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:06','2020-02-16 16:55:09'),(6664,'mathematics','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:58','2020-02-16 16:56:01'),(6665,'irk','52.91.167.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 22:51:34','2020-02-16 22:51:34'),(6666,'crk','34.233.126.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 01:08:54','2020-02-17 01:08:54'),(6667,'economics','54.234.27.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 05:03:19','2020-02-17 05:03:19'),(6668,'commerce','54.221.92.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 06:44:50','2020-02-17 06:44:50'),(6669,'chemistry','159.138.128.150',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:05:44','2020-02-17 07:05:44'),(6670,'english','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6671,'mathematics','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6672,'accounting','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6673,'englishlit','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6674,'government','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:10'),(6675,'civiledu','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-17 07:26:10'),(6676,'insurance','34.229.240.235',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-19 13:08:34'),(6677,'biology','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:53:21','2020-02-17 07:53:21'),(6678,'chemistry','41.190.3.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 09:00:45','2020-02-17 09:00:46'),(6679,'accounting','34.224.39.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 10:20:33','2020-02-17 10:20:33'),(6680,'english','197.156.253.124',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 11:19:47','2020-02-17 11:19:47'),(6681,'crk','184.72.213.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 13:48:40','2020-02-17 13:48:40'),(6682,'accounting','54.165.1.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 17:44:51','2020-02-17 17:44:51'),(6683,'economics','54.83.109.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 20:16:53','2020-02-17 20:16:53'),(6684,'chemistry','5.255.250.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 21:22:58','2020-02-17 21:22:58'),(6685,'government','54.221.59.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 23:17:36','2020-02-17 23:17:36'),(6686,'chemistry','34.201.122.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 00:07:06','2020-02-18 00:07:06'),(6687,'government','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:37:21','2020-02-18 02:37:21'),(6688,'geography','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:43:15','2020-02-18 02:43:15'),(6689,'mathematics','52.87.200.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 03:25:39','2020-02-18 03:25:39'),(6690,'commerce','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:40:17','2020-02-18 05:40:17'),(6691,'economics','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:53:54','2020-02-18 05:53:54'),(6692,'chemistry','54.224.96.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:08:00','2020-02-18 11:08:00'),(6693,'insurance','54.224.96.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:30:46','2020-02-18 11:30:46'),(6694,'crk','18.212.173.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 13:09:34','2020-03-20 07:37:00'),(6695,'chemistry','114.119.134.79',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 15:47:10','2020-02-18 15:47:10'),(6696,'englishlit','100.24.12.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 18:48:21','2020-02-18 18:48:21'),(6697,'crk','3.85.34.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 22:20:53','2020-02-18 22:20:53'),(6698,'chemistry','196.220.136.213',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 00:45:34','2020-02-19 00:45:35'),(6699,'english','54.147.36.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 03:54:04','2020-02-19 03:54:04'),(6700,'crk','34.229.241.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 05:30:54','2020-02-19 05:30:54'),(6701,'chemistry','41.184.42.114',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 13:13:14','2020-02-19 13:13:37'),(6702,'english','54.227.161.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 15:50:25','2020-02-19 15:50:25'),(6703,'chemistry','82.145.222.210',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:03:16','2020-02-19 18:03:27'),(6704,'chemistry','54.36.150.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:07:42','2020-02-19 18:07:46'),(6705,'englishlit','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:26:35','2020-02-19 19:26:35'),(6706,'chemistry','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:27:02','2020-02-19 19:27:02'),(6707,'physics','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:53:17','2020-02-19 19:53:17'),(6708,'english','204.236.246.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 22:37:37','2020-02-19 22:37:37'),(6709,'englishlit','34.230.79.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 00:17:30','2020-02-20 00:17:30'),(6710,'currentaffairs','54.242.206.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 01:18:47','2020-02-20 01:18:47'),(6711,'crk','3.85.213.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 04:49:03','2020-02-20 04:49:03'),(6712,'englishlit','3.81.90.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 08:44:59','2020-02-20 08:44:59'),(6713,'government','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:23','2020-02-20 10:57:04'),(6714,'physics','3.81.90.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:35','2020-02-20 09:14:41'),(6715,'irk','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:28:55','2020-02-20 10:57:05'),(6716,'currentaffairs','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:33:57','2020-02-20 10:57:05'),(6717,'history','3.81.90.103',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:37:42','2020-02-20 10:45:58'),(6718,'history','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6719,'chemistry','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6720,'accounting','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6721,'commerce','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6722,'physics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6723,'civiledu','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6724,'crk','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6725,'economics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6726,'currentaffairs','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6727,'biology','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6728,'government','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6729,'english','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6730,'irk','35.168.19.41',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6731,'englishlit','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6732,'geography','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6733,'mathematics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6734,'geography','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:07','2020-02-20 11:04:56'),(6735,'commerce','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:45','2020-02-20 10:57:04'),(6736,'chemistry','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6737,'geography','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6738,'englishlit','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6739,'history','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6740,'accounting','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6741,'english','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6742,'commerce','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6743,'crk','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6744,'civiledu','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6745,'physics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6746,'mathematics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6747,'government','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6748,'irk','54.162.219.78',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6749,'biology','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6750,'economics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:11','2020-02-20 10:47:14'),(6751,'currentaffairs','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:12','2020-02-20 10:47:15'),(6752,'economics','3.81.90.103',3,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 11:01:05'),(6753,'civiledu','3.81.90.103',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 10:57:05'),(6754,'government','18.207.192.142',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 13:42:22','2020-02-20 13:42:22'),(6755,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6756,'chemistry','54.167.198.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6757,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6758,'english','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:31','2020-02-20 17:26:32'),(6759,'accounting','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6760,'biology','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6761,'government','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6762,'crk','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6763,'currentaffairs','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6764,'history','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6765,'crk','3.80.65.155',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:00:34','2020-02-20 18:00:34'),(6766,'biology','3.80.65.155',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:13:55','2020-02-20 18:13:55'),(6767,'english','204.236.203.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 21:11:32','2020-02-20 21:11:32'),(6768,'mathematics','3.89.145.218',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 22:35:41','2020-02-20 22:35:41'),(6769,'chemistry','46.229.168.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:29:39','2020-02-21 02:29:39'),(6770,'chemistry','157.55.39.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:49:20','2020-02-21 02:49:20'),(6771,'english','54.147.53.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 03:48:00','2020-02-21 03:48:00'),(6772,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6773,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6774,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6775,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6776,'currentaffairs','3.90.168.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 19:24:12','2020-02-21 19:24:12'),(6777,'chemistry','34.226.190.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 20:12:12','2020-02-21 20:12:12'),(6778,'currentaffairs','18.234.246.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 21:02:21','2020-02-21 21:02:21'),(6779,'civiledu','54.162.109.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 23:30:06','2020-02-21 23:30:06'),(6780,'english','3.92.223.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:55:12','2020-02-22 03:55:12'),(6781,'chemistry','159.138.153.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:52','2020-02-22 03:58:52'),(6782,'chemistry','159.138.155.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:53','2020-02-22 03:58:53'),(6783,'englishlit','54.234.225.91',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 04:45:49','2020-02-22 04:45:49'),(6784,'accounting','3.81.14.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 06:32:53','2020-02-22 06:32:53'),(6785,'biology','3.85.195.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 08:05:36','2020-02-22 08:05:36'),(6786,'english','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:02','2020-02-22 12:38:03'),(6787,'commerce','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6788,'physics','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6789,'englishlit','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6790,'crk','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6791,'currentaffairs','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6792,'history','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:04'),(6793,'biology','3.88.4.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 21:11:38','2020-02-22 21:11:39'),(6794,'chemistry','35.173.57.84',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 00:53:28','2020-02-23 01:21:39'),(6795,'government','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:01:42','2020-02-23 13:01:42'),(6796,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6797,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6798,'commerce','54.196.170.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 14:07:46','2020-02-23 14:07:46'),(6799,'chemistry','54.36.150.158',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 15:20:46','2020-02-23 15:20:49'),(6800,'insurance','35.173.187.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 17:32:21','2020-02-23 17:32:21'),(6801,'crk','3.86.33.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 20:19:46','2020-02-23 20:19:46'),(6802,'english','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6803,'mathematics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6804,'commerce','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6805,'physics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6806,'government','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6807,'geography','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6808,'currentaffairs','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:05'),(6809,'chemistry','159.138.156.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 05:01:23','2020-02-24 05:01:23'),(6810,'mathematics','54.205.146.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 06:01:05','2020-02-24 06:01:05'),(6811,'geography','54.159.1.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 08:03:19','2020-02-24 08:03:19'),(6812,'economics','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 12:58:49','2020-02-24 12:58:49'),(6813,'geography','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 13:18:08','2020-02-24 13:18:08'),(6814,'english','3.81.236.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 15:33:14','2020-02-24 15:33:14'),(6815,'geography','54.210.217.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 17:00:33','2020-02-24 17:00:33'),(6816,'chemistry','105.112.55.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 19:06:53','2020-02-24 23:57:08'),(6817,'chemistry','34.227.17.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:20:04','2020-03-05 17:43:13'),(6818,'physics','34.227.17.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:52:30','2020-02-24 23:52:30'),(6819,'englishlit','54.92.166.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 02:36:43','2020-02-25 02:36:43'),(6820,'geography','35.175.234.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 03:33:37','2020-02-25 03:33:37'),(6821,'currentaffairs','52.87.168.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 06:07:47','2020-02-25 06:07:47'),(6822,'biology','18.233.100.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 09:34:43','2020-02-25 09:34:43'),(6823,'chemistry','157.55.39.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 11:42:40','2020-02-25 11:42:40'),(6824,'physics','66.249.80.52',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 15:14:29','2020-02-25 15:14:31'),(6825,'physics','107.23.131.74',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 18:59:40','2020-02-25 19:13:57'),(6826,'english','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6827,'mathematics','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6828,'commerce','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:57'),(6829,'biology','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6830,'currentaffairs','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6831,'history','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6832,'englishlit','35.170.185.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:56:19','2020-02-25 19:56:19'),(6833,'mathematics','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:37:16','2020-02-25 20:37:16'),(6834,'biology','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:57:18','2020-02-25 20:57:18'),(6835,'chemistry','185.26.180.143',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:07:17','2020-02-25 21:07:19'),(6836,'chemistry','192.95.16.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:56:59','2020-02-25 21:56:59'),(6837,'geography','3.92.190.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 23:13:07','2020-02-25 23:13:07'),(6838,'government','54.146.199.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 01:42:52','2020-02-26 01:42:52'),(6839,'mathematics','3.89.35.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 04:40:50','2020-02-26 04:40:50'),(6840,'history','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:21:37','2020-02-26 05:21:37'),(6841,'accounting','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:41:03','2020-02-26 05:41:03'),(6842,'biology','54.91.45.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 07:38:13','2020-02-26 07:38:13'),(6843,'chemistry','54.221.93.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:04:36','2020-02-26 09:15:23'),(6844,'chemistry','66.102.8.241',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6845,'chemistry','66.249.80.50',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6846,'chemistry','66.102.8.243',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-03-09 23:52:26'),(6847,'physics','66.249.88.65',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:22:54','2020-02-26 12:22:56'),(6848,'biology','54.235.235.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:50:49','2020-02-26 12:50:49'),(6849,'geography','54.161.25.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 17:04:18','2020-02-26 17:04:18'),(6850,'english','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6851,'mathematics','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6852,'biology','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6853,'chemistry','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6854,'government','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6855,'geography','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:01'),(6856,'irk','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:01','2020-02-27 04:05:01'),(6857,'accounting','54.197.40.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 05:01:31','2020-02-27 05:01:31'),(6858,'history','107.20.37.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 13:39:41','2020-02-27 13:39:41'),(6859,'chemistry','3.80.114.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 23:45:34','2020-02-27 23:45:34'),(6860,'english','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:45:04','2020-02-28 13:47:42'),(6861,'government','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:50:32','2020-02-28 13:52:07'),(6862,'commerce','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:54:04','2020-02-28 13:55:34'),(6863,'biology','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:57:38','2020-02-28 13:59:56'),(6864,'mathematics','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:59:07','2020-02-28 13:59:48'),(6865,'biology','52.204.53.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:24'),(6866,'biology','52.204.53.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:22'),(6867,'insurance','3.89.28.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 02:19:14','2020-02-29 02:19:14'),(6868,'economics','54.86.68.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 03:27:08','2020-02-29 03:27:08'),(6869,'accounting','18.207.149.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 06:17:21','2020-02-29 06:17:21'),(6870,'crk','54.224.249.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 07:18:55','2020-02-29 07:18:55'),(6871,'chemistry','49.70.183.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:00:47','2020-02-29 10:00:47'),(6872,'chemistry','34.226.148.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6873,'chemistry','34.226.148.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6874,'biology','54.234.130.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:39:43','2020-02-29 10:39:43'),(6875,'history','54.172.167.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 14:10:22','2020-02-29 14:10:22'),(6876,'chemistry','66.249.88.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:08','2020-02-29 15:50:09'),(6877,'chemistry','66.102.6.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:09','2020-02-29 15:50:09'),(6878,'irk','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:58:08','2020-02-29 15:58:08'),(6879,'chemistry','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:59:27','2020-02-29 15:59:27'),(6880,'history','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 19:55:14','2020-02-29 19:55:14'),(6881,'crk','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 20:06:10','2020-02-29 20:06:10'),(6882,'commerce','52.202.140.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 22:45:59','2020-02-29 22:45:59'),(6883,'chemistry','223.245.212.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 23:22:31','2020-02-29 23:22:31'),(6884,'biology','18.212.32.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 00:01:45','2020-03-01 00:01:45'),(6885,'accounting','52.23.172.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 01:53:29','2020-03-01 01:53:29'),(6886,'chemistry','1.203.150.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 02:14:54','2020-03-01 02:14:54'),(6887,'economics','54.156.62.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 06:18:07','2020-03-01 06:18:07'),(6888,'government','35.173.129.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 08:48:14','2020-03-01 08:48:14'),(6889,'chemistry','3.84.9.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 10:00:47','2020-03-01 10:00:47'),(6890,'geography','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 11:39:24','2020-03-01 11:39:24'),(6891,'government','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 12:03:05','2020-03-01 12:03:05'),(6892,'economics','18.209.9.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 16:36:07','2020-03-01 16:36:07'),(6893,'insurance','54.87.188.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 18:39:16','2020-03-01 18:39:16'),(6894,'englishlit','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:12:13','2020-03-01 23:12:13'),(6895,'english','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:29:26','2020-03-01 23:29:26'),(6896,'commerce','54.163.13.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 03:36:21','2020-03-02 03:36:21'),(6897,'crk','54.198.115.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 08:50:58','2020-03-02 08:50:58'),(6898,'crk','34.229.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 09:24:47','2020-03-02 09:24:47'),(6899,'chemistry','197.210.64.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 16:39:01','2020-03-02 16:39:01'),(6900,'english','105.112.55.216',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:24:46','2020-03-02 17:24:54'),(6901,'englishlit','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:46:18','2020-03-02 17:46:18'),(6902,'physics','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:59:07','2020-03-02 17:59:07'),(6903,'english','3.91.231.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 19:29:38','2020-03-02 19:29:38'),(6904,'currentaffairs','54.167.241.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 20:17:40','2020-03-02 20:17:40'),(6905,'chemistry','36.249.227.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:16:09','2020-03-02 21:16:09'),(6906,'chemistry','114.227.162.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:19:42','2020-03-02 21:19:42'),(6907,'englishlit','54.91.143.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 23:10:58','2020-03-02 23:10:58'),(6908,'englishlit','54.88.133.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 01:40:43','2020-03-03 01:40:43'),(6909,'government','34.228.244.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 05:09:18','2020-03-03 05:09:18'),(6910,'chemistry','141.8.188.144',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 08:07:45','2020-03-03 08:07:45'),(6911,'chemistry','82.145.220.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 09:48:31','2020-03-03 09:48:49'),(6912,'economics','3.80.28.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:11:56','2020-03-03 10:11:56'),(6913,'chemistry','82.145.209.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:36:44','2020-03-03 10:36:44'),(6914,'english','18.212.178.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:54:12','2020-03-03 10:54:12'),(6915,'chemistry','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:08:29','2020-03-03 12:08:29'),(6916,'biology','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:20:31','2020-03-03 12:20:31'),(6917,'chemistry','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:27','2020-03-03 13:36:27'),(6918,'mathematics','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:47','2020-03-03 13:36:47'),(6919,'english','52.87.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 17:00:16','2020-03-03 17:00:16'),(6920,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6921,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6922,'chemistry','40.77.167.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:37:26','2020-03-03 19:37:26'),(6923,'biology','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6924,'physics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6925,'geography','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6926,'economics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6927,'irk','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6928,'civiledu','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:58'),(6929,'currentaffairs','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:58','2020-03-03 20:05:58'),(6930,'biology','197.210.53.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:43:36','2020-03-03 20:43:38'),(6931,'physics','103.221.233.72',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 04:04:33','2020-03-04 04:25:46'),(6932,'english','105.112.182.249',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 10:31:20','2020-03-04 10:31:20'),(6933,'english','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:04:45','2020-03-04 11:04:45'),(6934,'accounting','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:05:53','2020-03-04 11:05:53'),(6935,'chemistry','197.210.53.87',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:39:34','2020-03-04 12:39:35'),(6936,'chemistry','197.210.52.235',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:04','2020-03-04 12:40:06'),(6937,'mathematics','197.210.53.94',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:07','2020-03-04 12:46:33'),(6938,'english','18.207.127.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 21:42:11','2020-03-04 21:42:11'),(6939,'chemistry','5.196.87.151',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 22:56:07','2020-04-02 22:19:08'),(6940,'englishlit','35.175.218.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 00:22:30','2020-03-05 00:22:30'),(6941,'commerce','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 02:31:37','2020-03-05 02:31:37'),(6942,'chemistry','54.89.222.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 04:03:59','2020-03-05 04:03:59'),(6943,'commerce','3.85.195.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 12:01:13','2020-03-05 12:01:13'),(6944,'crk','54.81.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 19:11:38','2020-03-05 19:11:38'),(6945,'mathematics','107.22.108.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 20:30:46','2020-03-05 20:30:46'),(6946,'english','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:08:59','2020-03-05 22:08:59'),(6947,'accounting','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6948,'biology','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6949,'chemistry','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6950,'irk','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6951,'insurance','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6952,'history','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6953,'geography','54.242.26.49',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 02:38:31','2020-03-06 02:55:09'),(6954,'biology','35.153.139.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 07:52:20','2020-03-06 07:52:20'),(6955,'geography','107.23.228.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 12:34:01','2020-03-06 12:34:01'),(6956,'currentaffairs','35.173.223.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 13:38:42','2020-03-06 13:38:42'),(6957,'chemistry','35.153.102.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 14:20:41','2020-03-06 14:20:41'),(6958,'biology','3.86.217.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 15:34:02','2020-03-06 15:34:02'),(6959,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6960,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6961,'chemistry','183.166.134.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:16:38','2020-03-06 21:16:38'),(6962,'chemistry','54.81.120.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:29:55','2020-03-06 21:29:55'),(6963,'mathematics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 23:47:39','2020-03-06 23:47:39'),(6964,'physics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 00:22:50','2020-03-07 00:22:50'),(6965,'mathematics','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 02:56:44','2020-03-07 02:56:44'),(6966,'physics','18.234.121.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 06:30:53','2020-03-07 06:30:53'),(6967,'chemistry','197.210.65.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:18:55','2020-03-07 08:18:55'),(6968,'chemistry','197.210.64.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:19:20','2020-03-07 08:19:20'),(6969,'chemistry','197.210.64.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:20:36','2020-03-07 08:20:36'),(6970,'english','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:01'),(6971,'accounting','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:02'),(6972,'geography','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6973,'irk','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6974,'civiledu','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6975,'insurance','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6976,'history','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6977,'english','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:35','2020-03-07 14:55:35'),(6978,'biology','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:36','2020-03-07 14:55:37'),(6979,'chemistry','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:37','2020-03-07 14:55:38'),(6980,'geography','52.90.45.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 15:21:48','2020-03-07 15:21:48'),(6981,'accounting','35.173.220.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 19:36:21','2020-03-07 19:36:21'),(6982,'commerce','5.186.127.79',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:16:03','2020-03-08 01:58:17'),(6983,'accounting','5.186.127.79',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:24:36','2020-03-08 01:52:42'),(6984,'biology','5.186.127.79',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 02:01:14','2020-03-08 02:01:15'),(6985,'englishlit','54.242.45.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 10:11:30','2020-03-08 10:11:30'),(6986,'chemistry','112.114.88.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:37:05','2020-03-08 13:37:05'),(6987,'history','54.174.12.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:54:38','2020-03-08 13:54:38'),(6988,'chemistry','54.173.164.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 16:27:27','2020-03-08 16:27:27'),(6989,'biology','52.90.68.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 17:35:15','2020-03-08 17:35:15'),(6990,'chemistry','114.119.164.166',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 18:08:08','2020-03-25 11:05:38'),(6991,'chemistry','60.185.69.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 20:52:07','2020-03-08 20:52:07'),(6992,'chemistry','197.210.227.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:17:20','2020-03-08 21:17:20'),(6993,'chemistry','197.210.226.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:18:58','2020-03-08 21:18:58'),(6994,'chemistry','197.210.226.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:19:11','2020-03-08 21:19:11'),(6995,'chemistry','114.119.160.43',3,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:20','2020-06-23 16:54:17'),(6996,'chemistry','161.151.254.43',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:41','2020-03-08 22:39:44'),(6997,'chemistry','161.151.254.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:41:32','2020-03-08 22:41:35'),(6998,'insurance','18.234.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 04:42:23','2020-03-09 04:42:23'),(6999,'chemistry','114.119.161.43',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 05:05:47','2020-04-06 00:24:10'),(7000,'economics','3.208.8.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 06:44:35','2020-03-09 06:44:35'),(7001,'chemistry','114.119.166.156',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 08:22:53','2020-03-10 01:02:52'),(7002,'history','54.175.112.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 09:37:37','2020-03-09 09:37:37'),(7003,'history','197.210.53.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:45:49','2020-03-09 12:45:50'),(7004,'chemistry','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:00','2020-03-09 12:56:20'),(7005,'history','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:03','2020-03-09 12:56:24'),(7006,'mathematics','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:04','2020-03-09 12:56:26'),(7007,'chemistry','197.210.53.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:59:22','2020-03-09 12:59:22'),(7008,'english','197.210.53.133',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:06:27','2020-03-09 13:06:27'),(7009,'accounting','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:29:10','2020-03-09 13:29:10'),(7010,'history','3.93.0.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 14:25:16','2020-03-09 14:25:16'),(7011,'crk','3.84.223.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 22:45:44','2020-03-09 22:45:44'),(7012,'chemistry','67.86.217.149',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:10:20','2020-04-07 19:16:09'),(7013,'chemistry','108.41.239.178',421,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:11:34','2020-04-13 13:17:04'),(7014,'commerce','3.84.214.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 01:51:20','2020-03-10 01:51:20'),(7015,'chemistry','197.210.70.26',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 04:06:56','2020-03-10 04:07:00'),(7016,'chemistry','197.210.70.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:17','2020-03-10 05:19:17'),(7017,'mathematics','197.210.70.216',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:26','2020-03-10 05:19:26'),(7018,'mathematics','197.210.71.234',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:08','2020-03-10 05:20:08'),(7019,'mathematics','197.210.70.250',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:21','2020-03-10 05:20:21'),(7020,'chemistry','197.210.70.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:35','2020-03-10 05:20:35'),(7021,'mathematics','197.210.71.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:53','2020-03-10 05:20:53'),(7022,'mathematics','197.210.70.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:52:55','2020-03-10 05:52:55'),(7023,'chemistry','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:05','2020-03-10 05:55:05'),(7024,'mathematics','197.210.70.182',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:15','2020-03-10 05:55:16'),(7025,'mathematics','197.210.174.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:58','2020-03-10 05:55:59'),(7026,'mathematics','108.41.239.178',367,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:06','2020-04-12 16:31:22'),(7027,'biology','197.210.70.40',46,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:35','2020-03-10 05:57:24'),(7028,'biology','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:55','2020-03-10 05:56:56'),(7029,'biology','197.210.70.170',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:58:15','2020-03-10 05:58:18'),(7030,'accounting','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:15:57','2020-03-10 06:15:57'),(7031,'crk','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:24:17','2020-03-10 06:24:17'),(7032,'chemistry','197.211.61.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 07:49:41','2020-03-10 07:49:41'),(7033,'chemistry','114.119.167.13',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 08:49:55','2020-03-31 11:06:57'),(7034,'economics','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:06:10','2020-03-10 09:06:10'),(7035,'irk','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:16:37','2020-03-10 09:16:37'),(7036,'chemistry','34.205.63.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 10:16:06','2020-03-10 10:16:06'),(7037,'government','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:04:13','2020-03-10 12:04:13'),(7038,'chemistry','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:21:49','2020-03-10 12:21:49'),(7039,'biology','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:06:43','2020-03-10 14:06:43'),(7040,'geography','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:12:24','2020-03-10 14:12:24'),(7041,'history','3.95.217.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 15:16:08','2020-03-10 15:16:08'),(7042,'commerce','18.212.139.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 16:38:48','2020-03-10 16:38:48'),(7043,'english','197.210.45.11',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:10:47','2020-03-10 17:41:19'),(7044,'geography','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:50','2020-03-10 17:41:20'),(7045,'mathematics','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:51','2020-03-10 17:41:21'),(7046,'economics','174.129.129.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:44:51','2020-03-10 17:44:51'),(7047,'government','54.234.46.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 19:25:59','2020-03-10 19:25:59'),(7048,'chemistry','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:21:32','2020-03-10 20:21:32'),(7049,'insurance','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:37:32','2020-03-10 20:37:32'),(7050,'chemistry','66.249.83.200',73,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-03-19 07:35:53'),(7051,'chemistry','66.249.83.204',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-04-26 10:46:35'),(7052,'englishlit','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:31:52','2020-03-11 02:31:52'),(7053,'english','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:42:48','2020-03-11 02:42:48'),(7054,'chemistry','116.31.102.8',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:21:00','2020-03-11 05:21:30'),(7055,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7056,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7057,'crk','35.174.12.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 10:23:39','2020-03-11 10:43:26'),(7058,'chemistry','52.90.116.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 11:19:41','2020-03-11 11:19:41'),(7059,'english','197.210.65.20',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:49','2020-03-11 13:34:49'),(7060,'biology','197.210.47.25',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:52','2020-03-11 13:34:52'),(7061,'chemistry','197.210.64.50',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:53','2020-03-11 13:34:54'),(7062,'mathematics','197.210.64.137',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:55','2020-03-11 13:34:56'),(7063,'chemistry','157.55.39.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:47:42','2020-03-11 14:47:42'),(7064,'chemistry','41.190.30.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:53:34','2020-03-11 14:53:35'),(7065,'english','54.221.96.198',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 15:42:57','2020-03-11 15:43:28'),(7066,'chemistry','197.211.61.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 16:33:36','2020-03-11 16:33:36'),(7067,'english','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:58:34','2020-03-11 18:58:34'),(7068,'englishlit','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:59:49','2020-03-11 18:59:49'),(7069,'physics','54.196.100.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:38:57','2020-03-11 19:38:57'),(7070,'chemistry','54.196.100.247',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:59:42','2020-03-11 19:59:42'),(7071,'english','3.82.116.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 20:42:05','2020-03-11 20:42:05'),(7072,'currentaffairs','54.211.73.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 21:57:05','2020-03-11 21:57:05'),(7073,'englishlit','54.234.241.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 01:46:19','2020-03-12 02:20:47'),(7074,'chemistry','54.167.99.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 05:23:04','2020-03-12 05:23:04'),(7075,'government','54.226.177.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:03:06','2020-03-12 06:03:06'),(7076,'economics','3.88.159.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:56:58','2020-03-12 06:56:58'),(7077,'mathematics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7078,'commerce','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7079,'english','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7080,'physics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:38'),(7081,'biology','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7082,'crk','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7083,'englishlit','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7084,'geography','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7085,'government','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7086,'insurance','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7087,'history','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7088,'currentaffairs','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:39','2020-03-12 07:43:39'),(7089,'chemistry','54.90.183.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 08:12:53','2020-03-12 08:12:53'),(7090,'english','3.83.156.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 10:27:53','2020-03-12 10:27:53'),(7091,'crk','3.89.215.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:13:49','2020-03-12 11:13:49'),(7092,'chemistry','3.90.255.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:50:26','2020-03-12 11:50:27'),(7093,'english','197.210.44.229',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 13:37:55','2020-03-12 13:37:55'),(7094,'mathematics','197.210.29.214',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:31:12','2020-03-12 15:31:12'),(7095,'chemistry','197.210.29.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:35:28','2020-03-12 15:36:34'),(7096,'chemistry','197.210.61.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:09','2020-03-12 15:38:09'),(7097,'chemistry','172.58.236.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:33','2020-03-12 15:41:06'),(7098,'biology','197.210.70.44',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 16:21:26','2020-03-12 16:21:28'),(7099,'biology','197.210.226.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:14:12','2020-03-12 17:14:14'),(7100,'biology','3.92.167.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:33:54','2020-03-12 17:33:54'),(7101,'chemistry','54.174.77.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 18:08:05','2020-03-12 18:08:05'),(7102,'english','129.205.113.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 20:47:35','2020-03-12 20:47:35'),(7103,'crk','52.90.72.30',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 00:32:24','2020-03-13 00:32:24'),(7104,'currentaffairs','52.91.74.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 03:07:06','2020-03-13 03:07:06'),(7105,'chemistry','66.249.88.54',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 04:13:43','2020-03-13 22:03:51'),(7106,'biology','54.226.184.43',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:52:03','2020-03-13 09:52:04'),(7107,'english','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:56:39','2020-03-13 09:56:39'),(7108,'accounting','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:58:08','2020-03-13 09:58:08'),(7109,'chemistry','3.92.56.188',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7110,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7111,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7112,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7113,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7114,'chemistry','54.242.59.9',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 16:39:40','2020-03-13 16:39:41'),(7115,'chemistry','207.46.13.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 20:02:53','2020-03-13 20:02:53'),(7116,'chemistry','54.146.129.212',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7117,'chemistry','54.146.129.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7118,'chemistry','66.249.83.202',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 22:03:49','2020-03-13 22:03:51'),(7119,'biology','54.152.253.226',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 02:58:06','2020-03-14 02:58:06'),(7120,'mathematics','66.249.83.200',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 08:36:31','2020-03-14 08:36:33'),(7121,'english','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7122,'mathematics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7123,'chemistry','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:35'),(7124,'economics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:35','2020-03-14 10:43:36'),(7125,'civiledu','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:36','2020-03-14 10:43:36'),(7126,'insurance','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7127,'currentaffairs','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7128,'commerce','34.239.245.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:45:23','2020-03-14 10:45:23'),(7129,'chemistry','3.90.43.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 13:49:52','2020-03-14 13:49:52'),(7130,'crk','54.161.109.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 14:49:17','2020-03-14 14:49:17'),(7131,'english','52.91.100.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:07:53','2020-03-14 18:07:53'),(7132,'chemistry','86.121.62.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:41:03','2020-03-14 18:41:03'),(7133,'chemistry','3.87.81.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:54:06','2020-03-14 18:54:06'),(7134,'chemistry','5.255.250.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:21:06','2020-03-14 19:21:06'),(7135,'chemistry','105.112.38.232',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:05','2020-03-15 06:16:13'),(7136,'mathematics','105.112.38.232',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:50','2020-03-14 19:55:10'),(7137,'chemistry','54.146.242.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:53:47','2020-03-14 19:53:51'),(7138,'mathematics','54.145.20.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 20:35:13','2020-03-14 20:35:13'),(7139,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7140,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7141,'chemistry','18.209.61.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:43:11','2020-03-14 22:43:11'),(7142,'biology','14.199.220.107',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:46:33','2020-03-14 22:46:34'),(7143,'economics','3.82.205.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:07:15','2020-03-15 01:07:15'),(7144,'chemistry','66.249.64.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:41:19','2020-03-15 01:41:22'),(7145,'geography','18.209.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 02:28:10','2020-03-15 02:28:10'),(7146,'geography','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:36:57','2020-03-15 03:36:57'),(7147,'biology','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:42:39','2020-03-15 03:42:39'),(7148,'mathematics','105.112.38.221',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 07:08:04','2020-03-15 07:08:05'),(7149,'physics','54.209.184.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 10:35:32','2020-03-15 10:35:32'),(7150,'chemistry','61.177.20.67',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:07:25','2020-03-15 11:08:03'),(7151,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7152,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7153,'englishlit','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:00:27','2020-03-15 13:00:27'),(7154,'geography','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:12:58','2020-03-15 13:12:58'),(7155,'chemistry','66.249.80.40',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:13:16','2020-03-15 13:13:18'),(7156,'currentaffairs','54.157.45.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:17:59','2020-03-15 14:17:59'),(7157,'chemistry','114.119.165.83',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:58:19','2020-04-09 07:14:34'),(7158,'mathematics','197.210.70.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 15:43:48','2020-03-15 15:43:56'),(7159,'biology','3.80.249.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 16:18:19','2020-03-15 16:18:19'),(7160,'chemistry','40.77.167.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 17:54:45','2020-03-15 17:54:45'),(7161,'chemistry','54.234.65.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:02:01','2020-03-15 19:02:01'),(7162,'chemistry','192.3.183.226',69,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:05:22','2020-03-16 02:10:39'),(7163,'physics','54.175.61.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:07:09','2020-03-15 23:07:09'),(7164,'mathematics','54.152.128.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:41:27','2020-03-15 23:41:27'),(7165,'chemistry','5.255.250.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 01:11:48','2020-03-16 01:11:48'),(7166,'geography','100.27.28.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 02:48:46','2020-03-16 02:48:46'),(7167,'government','18.204.205.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 03:52:44','2020-03-16 03:52:44'),(7168,'mathematics','52.87.174.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 04:36:55','2020-03-16 04:36:55'),(7169,'history','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:37:41','2020-03-16 06:37:41'),(7170,'biology','34.230.5.124',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:40'),(7171,'biology','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:39'),(7172,'crk','35.173.183.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:03:46','2020-03-16 09:03:46'),(7173,'chemistry','66.249.88.55',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:48:48','2020-03-16 09:48:49'),(7174,'geography','54.226.6.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 14:13:41','2020-03-16 14:13:41'),(7175,'mathematics','105.112.153.142',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:02:32','2020-03-16 17:02:47'),(7176,'physics','105.112.153.142',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:03:09','2020-03-16 17:03:10'),(7177,'english','105.112.153.142',480,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:04:23','2020-03-16 20:08:50'),(7178,'accounting','54.144.114.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 21:09:52','2020-03-16 21:09:52'),(7179,'history','54.152.71.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 07:17:16','2020-03-17 07:17:16'),(7180,'english','41.86.149.34',280,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 09:42:41','2020-03-17 12:11:29'),(7181,'english','105.112.22.72',440,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 15:51:33','2020-03-17 16:19:25'),(7182,'chemistry','105.112.22.72',323,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 16:24:18','2020-03-17 17:11:03'),(7183,'physics','105.112.22.72',164,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 17:05:04','2020-03-17 17:28:30'),(7184,'mathematics','105.112.22.72',149,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:14:51','2020-03-17 17:38:27'),(7185,'government','105.112.22.72',276,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:40:56','2020-03-17 17:50:13'),(7186,'englishlit','105.112.47.130',334,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:54:27','2020-03-17 18:14:37'),(7187,'government','105.112.47.130',22,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:56:02','2020-03-17 17:56:03'),(7188,'crk','105.112.47.130',543,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:16:10','2020-03-17 18:30:39'),(7189,'english','105.112.47.130',40,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:18:33','2020-03-17 18:18:35'),(7190,'accounting','105.112.47.130',158,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:35:02','2020-03-17 18:37:47'),(7191,'chemistry','34.227.17.84',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:52:23','2020-03-17 18:52:23'),(7192,'chemistry','144.76.67.169',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 00:01:13','2020-03-18 00:01:58'),(7193,'chemistry','54.36.149.77',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:03:44','2020-03-18 05:03:44'),(7194,'economics','52.201.123.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:33:29','2020-03-18 05:33:29'),(7195,'history','3.93.187.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 11:38:00','2020-03-18 11:38:00'),(7196,'english','129.205.113.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:00:34','2020-03-18 20:00:34'),(7197,'chemistry','66.249.88.56',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:39:56','2020-03-18 20:39:58'),(7198,'irk','54.90.235.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:56:56','2020-03-18 20:56:56'),(7199,'chemistry','54.36.150.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 21:24:26','2020-03-18 21:24:26'),(7200,'crk','18.232.99.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 23:57:52','2020-03-18 23:57:52'),(7201,'commerce','3.88.101.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 01:46:16','2020-03-19 01:46:16'),(7202,'accounting','3.81.2.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 05:42:19','2020-03-19 05:42:19'),(7203,'chemistry','66.102.8.229',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 07:35:52','2020-03-19 07:35:54'),(7204,'economics','18.209.171.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 08:15:35','2020-03-19 08:15:35'),(7205,'chemistry','3.87.142.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 11:32:20','2020-03-19 11:32:20'),(7206,'government','54.172.25.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 12:12:58','2020-03-19 12:12:58'),(7207,'economics','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:31:06','2020-03-19 14:31:06'),(7208,'commerce','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:35:27','2020-03-19 14:35:27'),(7209,'geography','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:55:22','2020-03-19 14:55:22'),(7210,'government','54.242.179.61',1,'Nigeria','NG','LA','Lagos','Lagos','','6.4531','3.3958','2020-03-19 20:38:35','2020-03-19 20:38:35'),(7211,'chemistry','18.207.197.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 21:48:48','2020-03-19 21:48:48'),(7212,'english','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:32:19','2020-03-20 00:32:19'),(7213,'englishlit','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:50:34','2020-03-20 00:50:34'),(7214,'chemistry','114.119.165.169',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 01:18:55','2020-04-05 03:27:02'),(7215,'accounting','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7216,'biology','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7217,'chemistry','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7218,'crk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7219,'geography','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:26'),(7220,'irk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7221,'civiledu','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7222,'crk','3.93.49.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 08:22:17','2020-03-20 08:22:17'),(7223,'chemistry','197.210.71.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 09:39:01','2020-03-20 09:39:01'),(7224,'chemistry','117.63.134.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:39:07','2020-03-20 14:39:07'),(7225,'chemistry','41.190.2.160',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:55:17','2020-03-20 14:55:40'),(7226,'physics','18.234.143.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 16:22:33','2020-03-20 16:22:33'),(7227,'currentaffairs','3.88.171.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 18:44:05','2020-03-20 18:44:05'),(7228,'englishlit','3.80.210.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 19:58:26','2020-03-20 19:58:26'),(7229,'crk','54.234.191.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 22:13:05','2020-03-20 22:13:05'),(7230,'englishlit','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:13:40','2020-03-21 00:13:40'),(7231,'economics','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:45:11','2020-03-21 00:45:11'),(7232,'government','54.81.79.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:06:58','2020-03-21 02:06:58'),(7233,'chemistry','36.49.27.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:48:44','2020-03-21 02:48:44'),(7234,'irk','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:15:05','2020-03-21 04:15:05'),(7235,'english','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:39:38','2020-03-21 04:39:38'),(7236,'englishlit','41.80.20.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 05:52:43','2020-03-21 05:53:35'),(7237,'chemistry','154.113.86.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 08:44:48','2020-03-21 08:44:48'),(7238,'chemistry','54.36.150.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 10:28:05','2020-03-21 10:28:05'),(7239,'chemistry','42.49.170.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 12:22:18','2020-03-21 12:22:18'),(7240,'english','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:55','2020-03-21 13:16:56'),(7241,'commerce','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:56','2020-03-21 13:16:58'),(7242,'physics','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:59','2020-03-21 13:18:04'),(7243,'englishlit','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:00','2020-03-21 13:17:01'),(7244,'insurance','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:01','2020-03-21 13:18:05'),(7245,'currentaffairs','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:18:05'),(7246,'history','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:17:03'),(7247,'accounting','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:03','2020-03-21 13:18:04'),(7248,'government','18.234.135.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:16'),(7249,'economics','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7250,'civiledu','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7251,'chemistry','102.89.3.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 14:16:11','2020-03-21 14:16:11'),(7252,'accounting','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:30:53','2020-03-22 03:30:53'),(7253,'englishlit','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:32:36','2020-03-22 03:32:36'),(7254,'chemistry','116.248.186.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 12:56:38','2020-03-22 12:56:38'),(7255,'accounting','105.112.52.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 15:00:00','2020-03-22 15:00:02'),(7256,'commerce','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7257,'physics','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7258,'englishlit','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7259,'government','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7260,'crk','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7261,'insurance','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7262,'history','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7263,'chemistry','59.63.75.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 17:32:33','2020-03-22 17:32:34'),(7264,'mathematics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7265,'biology','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7266,'physics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7267,'chemistry','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7268,'geography','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7269,'irk','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7270,'currentaffairs','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:33'),(7271,'commerce','3.89.66.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 23:32:36','2020-03-22 23:32:36'),(7272,'chemistry','77.88.5.109',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 01:02:57','2020-05-28 06:27:27'),(7273,'crk','52.90.48.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 04:30:54','2020-03-23 04:30:54'),(7274,'biology','3.92.24.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 08:53:22','2020-03-23 08:53:22'),(7275,'mathematics','54.165.10.238',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 10:35:39','2020-03-23 10:35:39'),(7276,'economics','54.164.64.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 13:08:24','2020-03-23 13:08:24'),(7277,'geography','18.209.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 14:04:53','2020-03-23 14:04:53'),(7278,'geography','3.89.20.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 15:04:00','2020-03-23 15:04:00'),(7279,'englishlit','54.210.71.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:16:17','2020-03-23 23:16:17'),(7280,'geography','54.91.123.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:54:39','2020-03-23 23:54:39'),(7281,'currentaffairs','18.234.156.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 01:21:49','2020-03-24 01:21:49'),(7282,'physics','18.215.170.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 02:05:13','2020-03-24 02:05:13'),(7283,'english','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7284,'mathematics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7285,'physics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7286,'irk','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7287,'civiledu','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7288,'insurance','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7289,'currentaffairs','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7290,'physics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 07:37:59','2020-03-24 07:37:59'),(7291,'mathematics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 08:09:12','2020-03-24 08:09:12'),(7292,'mathematics','100.24.26.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 14:18:48','2020-03-24 14:18:48'),(7293,'accounting','52.87.217.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 04:37:55','2020-03-25 04:37:55'),(7294,'chemistry','114.119.160.245',41,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-25 10:25:16','2020-06-23 19:50:56'),(7295,'history','52.23.203.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 12:19:56','2020-03-25 12:19:56'),(7296,'chemistry','154.118.9.188',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 14:09:50','2020-03-25 14:09:50'),(7297,'commerce','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7298,'chemistry','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7299,'englishlit','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7300,'crk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:53'),(7301,'geography','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7302,'irk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7303,'insurance','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7304,'biology','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7305,'physics','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7306,'chemistry','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7307,'crk','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:20'),(7308,'geography','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7309,'civiledu','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7310,'currentaffairs','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7311,'english','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7312,'commerce','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7313,'biology','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7314,'government','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7315,'geography','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7316,'civiledu','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7317,'currentaffairs','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7318,'history','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 08:23:17','2020-03-26 08:23:17'),(7319,'economics','3.84.167.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:17:04','2020-03-26 09:17:04'),(7320,'english','197.211.61.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:24:43','2020-03-26 09:24:43'),(7321,'biology','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:33:58','2020-03-26 11:33:59'),(7322,'chemistry','102.89.3.190',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:00','2020-03-26 11:34:00'),(7323,'commerce','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:01','2020-03-26 11:34:01'),(7324,'crk','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:22','2020-03-26 12:14:19'),(7325,'commerce','102.89.3.190',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:23','2020-03-26 12:11:33'),(7326,'crk','102.89.3.190',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:08','2020-03-26 12:08:09'),(7327,'commerce','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:09','2020-03-26 12:14:21'),(7328,'crk','102.89.3.126',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:11:32','2020-03-26 12:11:32'),(7329,'crk','102.89.2.115',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:21:27','2020-03-26 12:22:22'),(7330,'crk','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:44','2020-03-26 12:22:45'),(7331,'commerce','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:46','2020-03-26 12:22:46'),(7332,'crk','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:40','2020-03-26 12:23:40'),(7333,'commerce','197.210.84.177',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:41','2020-03-26 12:23:42'),(7334,'crk','197.210.84.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:11','2020-03-26 12:24:12'),(7335,'commerce','197.210.84.39',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:12','2020-03-26 12:24:13'),(7336,'crk','197.210.84.227',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:09','2020-03-26 12:29:09'),(7337,'commerce','197.210.84.119',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:10','2020-03-26 12:29:10'),(7338,'crk','197.210.84.207',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:03','2020-03-26 12:32:04'),(7339,'commerce','197.210.84.125',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:05','2020-03-26 12:32:06'),(7340,'crk','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:21','2020-03-26 12:36:21'),(7341,'commerce','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:22','2020-03-26 12:36:22'),(7342,'crk','197.210.84.31',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:30','2020-03-26 12:36:30'),(7343,'commerce','197.210.84.245',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:31','2020-03-26 12:36:32'),(7344,'crk','197.210.84.165',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:47','2020-03-26 12:37:47'),(7345,'commerce','197.210.84.17',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:48','2020-03-26 12:37:48'),(7346,'crk','197.210.85.81',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:57','2020-03-26 12:37:57'),(7347,'commerce','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:58','2020-03-26 12:37:58'),(7348,'crk','197.210.84.67',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:00','2020-03-26 12:44:00'),(7349,'commerce','197.210.84.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:01','2020-03-26 12:44:01'),(7350,'english','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:13','2020-03-26 13:09:04'),(7351,'mathematics','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:14','2020-03-26 13:09:05'),(7352,'english','197.210.85.140',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:15','2020-03-26 14:03:15'),(7353,'mathematics','197.210.85.254',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:16','2020-03-26 14:03:17'),(7354,'english','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:01','2020-03-26 14:10:37'),(7355,'mathematics','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:03','2020-03-26 14:10:38'),(7356,'irk','3.94.121.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:26:17','2020-03-26 19:26:17'),(7357,'chemistry','114.119.161.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:45:34','2020-03-26 19:45:34'),(7358,'crk','174.129.131.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 22:50:44','2020-03-26 22:50:44'),(7359,'commerce','3.91.233.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 01:48:15','2020-03-27 01:48:15'),(7360,'accounting','54.208.155.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 05:24:26','2020-03-27 05:24:26'),(7361,'economics','52.91.100.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:22:14','2020-03-27 09:22:14'),(7362,'chemistry','66.102.8.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:51:49','2020-03-27 09:51:51'),(7363,'government','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 10:43:15','2020-03-27 10:43:15'),(7364,'chemistry','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:21:50','2020-03-27 11:21:50'),(7365,'english','102.89.0.135',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:47','2020-03-27 11:36:38'),(7366,'mathematics','102.89.1.184',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:48','2020-04-27 18:37:31'),(7367,'mathematics','102.89.1.114',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:33:55','2020-03-27 11:33:55'),(7368,'mathematics','102.89.0.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:36:39','2020-03-27 11:36:39'),(7369,'geography','54.209.201.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 13:36:58','2020-03-27 13:36:58'),(7370,'commerce','54.162.99.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 14:52:49','2020-03-27 14:52:49'),(7371,'economics','34.227.72.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 17:36:43','2020-03-27 17:36:43'),(7372,'crk','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 19:48:01','2020-03-27 19:48:01'),(7373,'insurance','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 20:10:12','2020-03-27 20:10:12'),(7374,'mathematics','18.212.220.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 22:19:25','2020-03-27 22:19:25'),(7375,'englishlit','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:27:23','2020-03-27 23:27:23'),(7376,'english','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:38:18','2020-03-27 23:38:18'),(7377,'crk','54.91.106.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 02:52:57','2020-03-28 02:52:57'),(7378,'english','54.204.180.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 04:14:13','2020-03-28 04:14:13'),(7379,'accounting','105.112.31.78',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:01:29','2020-03-28 06:01:32'),(7380,'chemistry','105.112.31.78',218,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 06:16:34','2020-03-28 10:26:50'),(7381,'mathematics','105.112.31.78',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:21:28','2020-03-28 06:21:37'),(7382,'crk','105.112.31.78',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:24:50','2020-03-28 06:24:54'),(7383,'crk','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:58:54','2020-03-28 06:58:57'),(7384,'mathematics','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:59:17','2020-03-28 06:59:19'),(7385,'biology','3.81.58.70',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:00:16','2020-03-28 07:28:03'),(7386,'biology','18.212.96.129',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:28:19','2020-03-28 07:29:29'),(7387,'chemistry','18.212.96.129',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 07:29:37','2020-03-28 07:46:04'),(7388,'mathematics','18.212.96.129',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:30:36','2020-03-28 07:30:39'),(7389,'chemistry','54.196.165.71',160,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:19:31','2020-03-28 08:21:56'),(7390,'crk','3.82.235.188',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:53:24','2020-03-28 08:53:24'),(7391,'chemistry','157.55.39.86',7,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 09:13:40','2020-03-28 09:13:40'),(7392,'physics','54.145.168.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 14:48:56','2020-03-28 14:48:56'),(7393,'english','35.172.185.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 17:23:34','2020-03-28 17:23:34'),(7394,'currentaffairs','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 18:18:16','2020-03-28 18:18:16'),(7395,'englishlit','54.84.20.113',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 18:46:01','2020-03-28 18:46:01'),(7396,'crk','34.207.92.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 20:17:19','2020-03-28 20:17:19'),(7397,'englishlit','54.227.76.74',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 22:38:07','2020-03-28 22:38:07'),(7398,'chemistry','100.26.102.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 23:45:57','2020-03-28 23:45:57'),(7399,'english','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:26:48','2020-03-29 01:26:48'),(7400,'government','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:48:28','2020-03-29 01:48:28'),(7401,'currentaffairs','54.166.138.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 02:46:57','2020-03-29 02:46:57'),(7402,'economics','54.224.84.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 03:48:49','2020-03-29 03:48:49'),(7403,'chemistry','3.235.65.91',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 05:20:26','2020-03-29 05:44:48'),(7404,'english','54.174.190.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 10:18:53','2020-03-29 10:18:53'),(7405,'civiledu','54.172.166.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:13:13','2020-03-29 11:13:13'),(7406,'chemistry','54.174.40.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:55:39','2020-03-29 11:55:39'),(7407,'chemistry','180.103.58.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:00:01','2020-03-29 12:00:01'),(7408,'chemistry','82.145.220.58',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:01:04','2020-03-29 12:01:05'),(7409,'mathematics','54.92.219.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:42:18','2020-03-29 12:42:18'),(7410,'mathematics','18.206.91.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 13:35:15','2020-03-29 13:35:15'),(7411,'chemistry','58.255.198.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 14:37:51','2020-03-29 14:37:51'),(7412,'chemistry','111.160.25.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 17:47:36','2020-03-29 17:47:36'),(7413,'chemistry','18.206.237.17',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 18:38:42','2020-03-29 18:38:45'),(7414,'currentaffairs','54.163.120.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 19:48:21','2020-03-29 19:48:21'),(7415,'chemistry','54.145.49.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 21:49:35','2020-03-29 21:49:35'),(7416,'englishlit','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:05:16','2020-03-30 01:05:16'),(7417,'accounting','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:33:36','2020-03-30 01:33:36'),(7418,'commerce','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7419,'accounting','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7420,'physics','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7421,'geography','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7422,'civiledu','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7423,'currentaffairs','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7424,'history','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7425,'mathematics','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:50:17','2020-03-31 05:50:17'),(7426,'commerce','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:51:26','2020-03-31 05:51:26'),(7427,'geography','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 07:58:39','2020-03-31 10:19:30'),(7428,'biology','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:01:26','2020-03-31 09:22:41'),(7429,'currentaffairs','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:27:55','2020-03-31 09:50:10'),(7430,'government','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:46:16','2020-03-31 10:11:00'),(7431,'civiledu','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:00:56','2020-03-31 09:10:50'),(7432,'english','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:08:10','2020-03-31 10:09:09'),(7433,'mathematics','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7434,'commerce','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 10:07:16'),(7435,'chemistry','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7436,'crk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7437,'irk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7438,'englishlit','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 16:48:59','2020-03-31 16:48:59'),(7439,'physics','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 17:25:08','2020-03-31 17:25:08'),(7440,'geography','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 18:36:35','2020-03-31 18:36:35'),(7441,'currentaffairs','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 19:04:20','2020-03-31 19:04:20'),(7442,'currentaffairs','54.224.172.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 21:22:54','2020-03-31 21:22:54'),(7443,'chemistry','197.210.84.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:38','2020-03-31 22:04:43'),(7444,'chemistry','197.210.84.199',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:50','2020-03-31 22:04:55'),(7445,'chemistry','197.210.84.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:05:03','2020-03-31 22:05:05'),(7446,'physics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:04:01','2020-04-01 02:04:01'),(7447,'mathematics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:10:56','2020-04-01 02:10:56'),(7448,'mathematics','3.80.85.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 04:50:44','2020-04-01 04:50:44'),(7449,'mathematics','18.212.146.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 06:03:05','2020-04-01 06:03:05'),(7450,'chemistry','114.119.163.81',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 09:42:15','2020-04-01 09:42:15'),(7451,'chemistry','197.211.57.245',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 12:50:39','2020-04-01 12:52:16'),(7452,'english','34.230.39.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 16:42:36','2020-04-01 16:42:36'),(7453,'mathematics','18.234.121.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 19:01:10','2020-04-01 19:01:10'),(7454,'accounting','54.147.176.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 20:49:28','2020-04-01 20:49:28'),(7455,'biology','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:56','2020-04-01 21:17:56'),(7456,'physics','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7457,'government','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7458,'geography','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7459,'economics','54.147.176.88',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-22 05:41:24'),(7460,'civiledu','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7461,'insurance','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7462,'chemistry','54.36.148.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 00:49:26','2020-04-02 00:49:29'),(7463,'history','54.236.10.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 03:47:55','2020-04-02 03:47:55'),(7464,'chemistry','197.210.70.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 20:57:50','2020-04-02 20:57:52'),(7465,'economics','34.229.174.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 01:39:45','2020-04-03 01:39:45'),(7466,'history','3.81.12.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 02:51:48','2020-04-03 02:51:48'),(7467,'government','102.89.1.199',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 11:46:35','2020-04-03 11:46:36'),(7468,'commerce','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7469,'accounting','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7470,'crk','54.224.177.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:53:40'),(7471,'economics','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7472,'civiledu','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7473,'currentaffairs','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7474,'history','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7475,'physics','54.227.76.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 18:36:02','2020-04-03 18:36:02'),(7476,'english','3.85.190.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 21:48:32','2020-04-03 21:48:32'),(7477,'commerce','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 23:42:41','2020-04-03 23:42:41'),(7478,'economics','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 00:01:21','2020-04-04 00:01:21'),(7479,'chemistry','207.46.13.220',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 01:45:34','2020-04-04 10:12:07'),(7480,'government','54.209.223.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 02:40:53','2020-04-04 02:40:53'),(7481,'geography','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:46:07','2020-04-04 03:46:07'),(7482,'chemistry','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:56:04','2020-04-04 03:56:04'),(7483,'government','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 04:24:02','2020-04-04 04:24:02'),(7484,'economics','54.87.134.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:29:31','2020-04-04 08:29:31'),(7485,'mathematics','105.112.56.96',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:37:54','2020-04-04 08:42:05'),(7486,'english','197.210.71.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:22:13','2020-04-04 10:22:13'),(7487,'chemistry','197.211.61.123',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:43:13','2020-04-04 10:46:06'),(7488,'physics','197.211.61.123',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:46:42','2020-04-04 10:46:42'),(7489,'english','197.211.61.123',726,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:11','2020-04-04 12:22:56'),(7490,'commerce','3.80.214.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:21','2020-04-04 10:47:21'),(7491,'english','197.211.61.125',406,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-04 12:41:24','2020-04-04 13:00:00'),(7492,'chemistry','197.211.61.125',10,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:00:38','2020-04-04 13:13:18'),(7493,'insurance','3.86.32.0',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:22:34','2020-04-04 13:22:34'),(7494,'englishlit','52.23.172.123',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:17:24','2020-04-04 14:17:24'),(7495,'chemistry','157.55.39.42',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:48:38','2020-04-04 14:48:38'),(7496,'chemistry','66.249.64.104',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:18:30','2020-04-04 17:18:31'),(7497,'english','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:20:12','2020-04-04 17:20:12'),(7498,'crk','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:30:11','2020-04-04 17:30:11'),(7499,'crk','54.163.215.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 22:41:54','2020-04-04 22:41:54'),(7500,'physics','52.91.100.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 04:23:04','2020-04-05 04:23:04'),(7501,'biology','3.81.133.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 05:11:31','2020-04-05 05:11:31'),(7502,'englishlit','54.89.124.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 06:31:33','2020-04-05 06:31:33'),(7503,'chemistry','197.210.71.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:23:44','2020-04-05 08:23:44'),(7504,'chemistry','197.210.71.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:35','2020-04-05 08:28:01'),(7505,'chemistry','197.210.71.175',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:53','2020-04-05 08:29:40'),(7506,'chemistry','197.210.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:28:36','2020-04-05 08:28:36'),(7507,'english','197.210.71.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:32:51','2020-04-05 08:32:53'),(7508,'english','197.210.174.172',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:34:34','2020-04-05 08:34:37'),(7509,'currentaffairs','3.87.91.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 09:08:45','2020-04-05 09:08:45'),(7510,'crk','18.206.247.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:11:56','2020-04-05 10:11:56'),(7511,'englishlit','3.208.20.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:55:11','2020-04-05 10:55:11'),(7512,'chemistry','66.249.88.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 11:30:48','2020-04-05 11:30:50'),(7513,'economics','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:16:19','2020-04-05 12:16:19'),(7514,'government','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:53:23','2020-04-05 12:53:23'),(7515,'english','34.233.133.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 13:47:53','2020-04-05 13:47:53'),(7516,'mathematics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7517,'commerce','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7518,'biology','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7519,'physics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7520,'chemistry','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7521,'englishlit','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:26'),(7522,'history','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:26','2020-04-06 12:14:26'),(7523,'accounting','54.152.156.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:19:13','2020-04-06 12:19:13'),(7524,'accounting','3.80.94.111',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 15:07:41','2020-04-06 15:07:41'),(7525,'chemistry','105.112.115.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 22:20:42','2020-04-06 22:20:42'),(7526,'commerce','34.227.162.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 06:35:37','2020-04-07 06:35:37'),(7527,'crk','107.23.255.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 08:35:49','2020-04-07 08:35:49'),(7528,'physics','18.212.66.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 09:45:19','2020-04-07 09:45:19'),(7529,'mathematics','34.236.143.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 13:42:20','2020-04-07 13:42:20'),(7530,'chemistry','64.233.172.196',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 14:19:21','2020-04-07 14:19:22'),(7531,'chemistry','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:06','2020-04-07 16:55:06'),(7532,'chemistry','197.210.53.20',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:14','2020-04-07 16:55:14'),(7533,'chemistry','197.210.52.112',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:33','2020-04-07 16:55:33'),(7534,'geography','3.95.225.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 17:53:36','2020-04-07 17:53:36'),(7535,'chemistry','197.210.52.88',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:07:14','2020-04-07 19:19:19'),(7536,'chemistry','197.210.53.6',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:32:43','2020-04-07 18:39:36'),(7537,'chemistry','197.210.52.36',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:34:00','2020-04-07 18:43:49'),(7538,'chemistry','197.210.53.99',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:05','2020-04-07 19:17:34'),(7539,'chemistry','197.210.52.22',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:27','2020-04-07 18:48:54'),(7540,'english','197.210.53.99',695,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:56'),(7541,'english','197.210.53.6',765,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:31'),(7542,'english','197.210.53.65',848,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:28:00'),(7543,'english','197.210.52.12',917,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:55'),(7544,'english','197.210.52.88',795,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:55'),(7545,'english','197.210.52.36',477,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:58'),(7546,'geography','18.205.107.57',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 20:02:08','2020-04-07 20:02:08'),(7547,'english','108.41.239.178',1802,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-12 16:31:21'),(7548,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7549,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7550,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7551,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7552,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7553,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7554,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7555,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7556,'irk','108.41.239.178',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:01','2020-04-12 16:31:20'),(7557,'civiledu','108.41.239.178',626,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7558,'insurance','108.41.239.178',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:23'),(7559,'currentaffairs','108.41.239.178',429,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7560,'physics','54.156.62.219',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 00:38:52','2020-04-08 00:38:52'),(7561,'englishlit','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:17:24','2020-04-08 01:17:24'),(7562,'geography','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:43:32','2020-04-08 01:43:32'),(7563,'currentaffairs','3.94.134.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 03:38:40','2020-04-08 03:38:40'),(7564,'chemistry','77.88.5.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-08 04:45:23','2020-04-08 04:45:23'),(7565,'english','18.206.175.184',3,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:05'),(7566,'chemistry','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7567,'government','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7568,'geography','18.206.175.184',2,'','NG','','Lagos',NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7569,'irk','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7570,'civiledu','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7571,'currentaffairs','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7572,'mathematics','3.95.38.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 10:05:10','2020-04-08 10:05:10'),(7573,'geography','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 11:58:50','2020-04-08 11:58:50'),(7574,'physics','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 12:09:29','2020-04-08 12:09:29'),(7575,'mathematics','34.230.69.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 13:57:51','2020-04-08 13:57:51'),(7576,'accounting','54.152.166.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 03:29:44','2020-04-09 03:29:44'),(7577,'chemistry','34.203.216.217',233,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 06:33:24','2020-04-09 06:37:01'),(7578,'chemistry','197.210.70.115',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 11:54:08','2020-04-09 16:40:18'),(7579,'chemistry','197.210.71.11',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:31','2020-04-09 17:27:14'),(7580,'chemistry','197.210.70.183',287,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:58','2020-04-09 17:20:35'),(7581,'english','197.210.70.109',813,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:40:07'),(7582,'english','197.210.70.69',465,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:38:21'),(7583,'english','197.210.70.149',469,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:25:34'),(7584,'english','197.210.70.211',792,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:31'),(7585,'english','197.210.70.81',624,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7586,'english','197.210.70.183',315,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:35'),(7587,'english','197.210.70.205',600,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7588,'english','197.210.71.235',595,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:17'),(7589,'english','197.210.70.27',674,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:52'),(7590,'english','197.210.70.15',552,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:44'),(7591,'english','197.210.71.79',478,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:33'),(7592,'english','197.210.70.251',820,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:20:15'),(7593,'english','197.210.70.95',701,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:25:00'),(7594,'english','197.210.70.115',676,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:47','2020-04-09 17:26:31'),(7595,'english','197.210.70.225',620,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:48','2020-04-09 17:26:34'),(7596,'english','197.210.70.53',679,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:33'),(7597,'english','197.210.70.239',623,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:24:53'),(7598,'english','197.210.70.217',663,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:30'),(7599,'english','197.210.70.1',515,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:51','2020-04-09 17:24:27'),(7600,'english','197.210.70.137',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:52','2020-04-09 17:25:32'),(7601,'english','197.210.71.11',588,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:58','2020-04-09 17:19:49'),(7602,'english','197.210.70.41',639,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:59','2020-04-09 17:25:34'),(7603,'english','197.210.70.121',555,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:00','2020-04-09 17:25:35'),(7604,'english','197.210.70.189',462,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:01','2020-04-09 17:25:35'),(7605,'english','197.210.70.171',473,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:04','2020-04-09 17:26:34'),(7606,'english','197.210.71.167',510,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:14','2020-04-09 17:24:21'),(7607,'chemistry','197.210.70.109',327,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:42','2020-04-09 17:24:47'),(7608,'mathematics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:35'),(7609,'mathematics','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:28'),(7610,'mathematics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:18:51'),(7611,'mathematics','197.210.70.171',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:24:24'),(7612,'mathematics','197.210.71.167',520,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:25:25'),(7613,'mathematics','197.210.70.69',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:19:18'),(7614,'mathematics','197.210.70.115',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:18:11'),(7615,'mathematics','197.210.70.149',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:51'),(7616,'mathematics','197.210.70.137',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:38'),(7617,'mathematics','197.210.70.95',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:35'),(7618,'mathematics','197.210.70.121',360,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:39'),(7619,'mathematics','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:07'),(7620,'accounting','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:37'),(7621,'accounting','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:18:19'),(7622,'commerce','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:19:14'),(7623,'commerce','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:51'),(7624,'commerce','197.210.70.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 15:19:39'),(7625,'commerce','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:33'),(7626,'accounting','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:18'),(7627,'accounting','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:43'),(7628,'commerce','197.210.71.11',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:44'),(7629,'accounting','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:27:00'),(7630,'commerce','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:26:47'),(7631,'commerce','197.210.71.79',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:24:23'),(7632,'biology','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:20:25'),(7633,'commerce','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:17'),(7634,'mathematics','197.210.70.15',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:30'),(7635,'biology','197.210.71.11',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:40','2020-04-09 17:26:43'),(7636,'biology','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:20:31'),(7637,'biology','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:26:10'),(7638,'commerce','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:56'),(7639,'accounting','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:27:03'),(7640,'biology','197.210.70.41',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:55'),(7641,'biology','197.210.70.251',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:26:55'),(7642,'accounting','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:25:57'),(7643,'biology','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:26:42'),(7644,'physics','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:19:26'),(7645,'biology','197.210.71.167',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:25:49'),(7646,'physics','197.210.70.95',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:26:56'),(7647,'physics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:59'),(7648,'englishlit','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:11'),(7649,'physics','197.210.70.81',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:26:59'),(7650,'physics','197.210.70.239',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:19:05'),(7651,'physics','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:50'),(7652,'biology','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:20:21'),(7653,'englishlit','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:12'),(7654,'physics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:18:58'),(7655,'chemistry','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:51','2020-04-09 16:40:16'),(7656,'chemistry','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:18:32'),(7657,'physics','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:26:02'),(7658,'chemistry','197.210.71.167',480,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:53','2020-04-09 17:27:14'),(7659,'englishlit','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:54','2020-04-09 17:18:22'),(7660,'englishlit','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:55','2020-04-09 17:26:25'),(7661,'englishlit','197.210.70.121',357,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:56','2020-04-09 17:26:21'),(7662,'government','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:17'),(7663,'chemistry','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:09'),(7664,'government','197.210.70.27',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:27'),(7665,'englishlit','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:18:20'),(7666,'chemistry','197.210.70.225',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:07'),(7667,'government','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:20:42'),(7668,'chemistry','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:19:30'),(7669,'chemistry','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:24:47'),(7670,'crk','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:59','2020-04-09 17:24:54'),(7671,'government','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:26:18'),(7672,'crk','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:25:01'),(7673,'government','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 15:51:08'),(7674,'englishlit','197.210.70.81',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:01','2020-04-09 17:26:17'),(7675,'crk','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:03','2020-04-09 17:27:20'),(7676,'geography','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:04','2020-04-09 17:27:21'),(7677,'geography','197.210.70.27',278,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:19:43'),(7678,'crk','197.210.70.81',237,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:20:43'),(7679,'government','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:08','2020-04-09 17:27:30'),(7680,'geography','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:25'),(7681,'government','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:27:17'),(7682,'crk','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:37'),(7683,'government','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:27:27'),(7684,'crk','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:25:07'),(7685,'geography','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:19:46'),(7686,'economics','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:20:58'),(7687,'economics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:26:24'),(7688,'geography','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:25:03'),(7689,'government','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:20:43'),(7690,'crk','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 16:39:57'),(7691,'crk','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 17:20:43'),(7692,'geography','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:26:23'),(7693,'economics','197.210.71.79',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:20:49'),(7694,'crk','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:27:27'),(7695,'geography','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:15','2020-04-09 17:27:29'),(7696,'economics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:17','2020-04-09 17:27:42'),(7697,'economics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:18','2020-04-09 17:25:03'),(7698,'irk','197.210.70.15',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:19:50'),(7699,'economics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:26:12'),(7700,'economics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:27:42'),(7701,'irk','197.210.71.167',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:20','2020-04-09 17:20:47'),(7702,'civiledu','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:43'),(7703,'irk','197.210.70.53',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:25:11'),(7704,'economics','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:32'),(7705,'irk','197.210.70.41',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:18:38'),(7706,'currentaffairs','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:23','2020-04-09 17:25:07'),(7707,'irk','197.210.70.81',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:25:14'),(7708,'civiledu','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:19:55'),(7709,'insurance','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:20:58'),(7710,'currentaffairs','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:21:02'),(7711,'insurance','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:27:50'),(7712,'currentaffairs','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:21:07'),(7713,'civiledu','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 16:40:24'),(7714,'currentaffairs','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:28','2020-04-09 16:40:39'),(7715,'civiledu','197.210.70.27',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:27:51'),(7716,'history','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:21:10'),(7717,'currentaffairs','197.210.71.11',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:20:06'),(7718,'civiledu','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:27:39'),(7719,'currentaffairs','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 17:20:11'),(7720,'insurance','197.210.70.205',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 15:22:09'),(7721,'insurance','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 16:34:20'),(7722,'insurance','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:33','2020-04-09 17:27:51'),(7723,'civiledu','197.210.70.95',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:27:39'),(7724,'irk','197.210.71.11',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:25:10'),(7725,'civiledu','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 16:29:46'),(7726,'insurance','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:27:52'),(7727,'civiledu','197.210.70.211',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:20:55'),(7728,'irk','197.210.70.69',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:18:39'),(7729,'currentaffairs','197.210.70.53',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:20:06'),(7730,'civiledu','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:47'),(7731,'currentaffairs','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:48'),(7732,'currentaffairs','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:48'),(7733,'history','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:28:00'),(7734,'history','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:55'),(7735,'economics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:42'),(7736,'irk','197.210.70.217',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:20:51'),(7737,'insurance','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:40','2020-04-09 17:19:57'),(7738,'insurance','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:18:43'),(7739,'insurance','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 16:40:38'),(7740,'history','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:21:10'),(7741,'history','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:20:11'),(7742,'history','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 16:40:37'),(7743,'history','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 17:21:05'),(7744,'history','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:28:01'),(7745,'history','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:27:54'),(7746,'mathematics','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:22'),(7747,'commerce','197.210.70.41',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:24'),(7748,'commerce','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:38'),(7749,'biology','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:27:10'),(7750,'mathematics','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:47'),(7751,'commerce','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:24:39'),(7752,'commerce','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:59','2020-04-09 17:26:44'),(7753,'mathematics','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:25:39'),(7754,'accounting','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:24:41'),(7755,'commerce','197.210.70.53',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:04','2020-04-09 17:24:17'),(7756,'mathematics','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:05','2020-04-09 17:25:37'),(7757,'accounting','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:06','2020-04-09 17:19:01'),(7758,'biology','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:26:47'),(7759,'biology','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:18:58'),(7760,'commerce','197.210.70.109',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:19:01'),(7761,'commerce','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:20:12'),(7762,'accounting','197.210.70.171',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:11','2020-04-09 17:26:47'),(7763,'accounting','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:12','2020-04-09 17:26:40'),(7764,'mathematics','197.210.70.189',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:26:31'),(7765,'englishlit','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:27:13'),(7766,'accounting','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:25:40'),(7767,'accounting','197.210.70.53',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:20:21'),(7768,'biology','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:56'),(7769,'commerce','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:39'),(7770,'accounting','197.210.71.235',319,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:19:25'),(7771,'physics','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:25:59'),(7772,'chemistry','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:19','2020-04-09 17:26:05'),(7773,'accounting','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:26:47'),(7774,'physics','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:19:23'),(7775,'government','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:22','2020-04-09 17:24:50'),(7776,'englishlit','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:24','2020-04-09 17:26:21'),(7777,'physics','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:25','2020-04-09 16:31:21'),(7778,'englishlit','197.210.70.211',398,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 17:27:22'),(7779,'biology','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 16:39:44'),(7780,'government','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 16:40:23'),(7781,'chemistry','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 17:26:09'),(7782,'irk','197.210.71.235',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:29','2020-04-09 17:25:52'),(7783,'englishlit','197.210.70.205',438,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:30','2020-04-09 17:27:13'),(7784,'irk','197.210.70.27',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:19:47'),(7785,'civiledu','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:26:16'),(7786,'civiledu','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 16:34:11'),(7787,'government','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 17:26:23'),(7788,'crk','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:17'),(7789,'civiledu','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:38'),(7790,'geography','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:25:05'),(7791,'government','197.210.70.189',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:27:08'),(7792,'government','197.210.71.79',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:24:48'),(7793,'history','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:36','2020-04-09 16:40:38'),(7794,'currentaffairs','197.210.70.69',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:38','2020-04-09 16:32:06'),(7795,'civiledu','197.210.70.189',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:39','2020-04-09 17:21:04'),(7796,'geography','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:41','2020-04-09 17:27:25'),(7797,'chemistry','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:26:14'),(7798,'irk','197.210.70.239',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:19:59'),(7799,'government','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:24:54'),(7800,'civiledu','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:43','2020-04-09 17:26:17'),(7801,'crk','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:24:50'),(7802,'geography','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:27:23'),(7803,'economics','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:18:37'),(7804,'currentaffairs','197.210.70.225',437,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:21:06'),(7805,'physics','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:59'),(7806,'physics','197.210.70.137',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:55'),(7807,'economics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:47','2020-04-09 17:25:08'),(7808,'crk','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:20:52'),(7809,'geography','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:27:37'),(7810,'irk','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:49','2020-04-09 17:20:45'),(7811,'currentaffairs','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:21:03'),(7812,'government','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:27:14'),(7813,'biology','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:24:31'),(7814,'currentaffairs','197.210.70.121',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:53','2020-04-09 17:27:52'),(7815,'irk','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:34'),(7816,'crk','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:29'),(7817,'economics','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 17:20:58'),(7818,'history','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 16:32:01'),(7819,'crk','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:59','2020-04-09 17:25:00'),(7820,'englishlit','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:24:53'),(7821,'irk','197.210.70.171',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:27:35'),(7822,'crk','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:38:38'),(7823,'history','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:42'),(7824,'insurance','197.210.70.95',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:19:56'),(7825,'geography','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:09'),(7826,'crk','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:33:56'),(7827,'irk','197.210.70.189',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:27:33'),(7828,'insurance','197.210.70.251',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:25:11'),(7829,'civiledu','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:07','2020-04-09 17:20:56'),(7830,'insurance','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 16:34:15'),(7831,'irk','197.210.70.149',176,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 17:27:41'),(7832,'currentaffairs','197.210.70.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 16:40:42'),(7833,'economics','197.210.70.121',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 17:25:07'),(7834,'commerce','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:50'),(7835,'commerce','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:41'),(7836,'crk','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:20:44'),(7837,'chemistry','197.210.70.251',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:05'),(7838,'mathematics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:19:13'),(7839,'englishlit','197.210.71.235',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:07'),(7840,'commerce','197.210.70.137',236,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:26:31'),(7841,'commerce','197.210.71.167',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:24:23'),(7842,'biology','197.210.70.137',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:26:06'),(7843,'mathematics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:20:20'),(7844,'accounting','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:25:53'),(7845,'biology','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:46','2020-04-09 17:26:11'),(7846,'accounting','197.210.70.239',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:26:54'),(7847,'government','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:27:08'),(7848,'physics','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:48','2020-04-09 17:26:05'),(7849,'physics','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:24:29'),(7850,'physics','197.210.71.167',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:19:22'),(7851,'englishlit','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:26:09'),(7852,'physics','197.210.70.149',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:50','2020-04-09 17:26:08'),(7853,'chemistry','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:27:13'),(7854,'geography','197.210.70.137',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:25:02'),(7855,'geography','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:20:50'),(7856,'geography','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:25:06'),(7857,'accounting','197.210.71.11',119,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:20:26'),(7858,'physics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:19:05'),(7859,'chemistry','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:18:26'),(7860,'crk','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 16:39:56'),(7861,'geography','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:25:18'),(7862,'government','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:24:59'),(7863,'economics','197.210.70.217',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:27:25'),(7864,'government','197.210.70.239',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:27:11'),(7865,'economics','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:26:31'),(7866,'irk','197.210.70.1',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:19:46'),(7867,'insurance','197.210.70.225',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 16:40:29'),(7868,'irk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:20:55'),(7869,'economics','197.210.70.183',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:27:43'),(7870,'civiledu','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:58','2020-04-09 17:27:43'),(7871,'currentaffairs','197.210.70.149',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 17:21:04'),(7872,'civiledu','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 16:31:55'),(7873,'history','197.210.70.81',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 16:30:00'),(7874,'civiledu','197.210.70.41',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:27:44'),(7875,'currentaffairs','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:28:03'),(7876,'insurance','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:20:03'),(7877,'economics','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:19:53'),(7878,'irk','197.210.70.95',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:19:52'),(7879,'currentaffairs','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:03'),(7880,'currentaffairs','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:10'),(7881,'history','197.210.70.121',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 16:29:54'),(7882,'insurance','197.210.70.239',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 16:40:27'),(7883,'irk','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 17:27:47'),(7884,'biology','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:19:01'),(7885,'commerce','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:25:59'),(7886,'englishlit','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:56','2020-04-09 16:33:35'),(7887,'physics','197.210.70.115',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:57','2020-04-09 17:26:57'),(7888,'englishlit','197.210.70.53',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:26:09'),(7889,'crk','197.210.70.211',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:14'),(7890,'geography','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:27'),(7891,'crk','197.210.70.27',317,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:27:27'),(7892,'physics','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:20:31'),(7893,'chemistry','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:18:23'),(7894,'biology','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:20:24'),(7895,'economics','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 15:51:41'),(7896,'englishlit','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:27:12'),(7897,'accounting','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:20:23'),(7898,'commerce','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:26:40'),(7899,'chemistry','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:19:34'),(7900,'irk','197.210.70.115',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:27:38'),(7901,'physics','197.210.70.183',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:25:59'),(7902,'accounting','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:00'),(7903,'economics','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:45'),(7904,'government','197.210.70.205',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:04','2020-04-09 17:26:07'),(7905,'crk','197.210.70.225',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 17:27:17'),(7906,'geography','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:40:36'),(7907,'geography','197.210.70.251',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:38:42'),(7908,'insurance','197.210.70.121',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:27:49'),(7909,'englishlit','197.210.70.137',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:26:15'),(7910,'chemistry','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:20:41'),(7911,'economics','197.210.70.109',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 16:40:33'),(7912,'mathematics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 17:26:43'),(7913,'insurance','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 16:40:42'),(7914,'economics','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:27:31'),(7915,'englishlit','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:24:55'),(7916,'irk','197.210.70.109',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:18:37'),(7917,'mathematics','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:25:46'),(7918,'mathematics','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:43'),(7919,'commerce','197.210.70.95',222,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:45'),(7920,'accounting','197.210.70.115',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:21','2020-04-09 17:19:09'),(7921,'biology','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:27:04'),(7922,'commerce','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:26:35'),(7923,'physics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:23','2020-04-09 17:26:48'),(7924,'physics','197.210.70.225',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:24','2020-04-09 17:26:55'),(7925,'irk','197.210.70.137',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:25','2020-04-09 17:27:41'),(7926,'chemistry','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:26','2020-04-09 17:19:10'),(7927,'englishlit','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:24:44'),(7928,'irk','197.210.70.225',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 16:19:11'),(7929,'government','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:26:12'),(7930,'crk','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:28','2020-04-09 17:24:46'),(7931,'englishlit','197.210.70.217',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:24:57'),(7932,'civiledu','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:19:55'),(7933,'government','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:42'),(7934,'englishlit','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:54'),(7935,'civiledu','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:31','2020-04-09 17:18:40'),(7936,'englishlit','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:27:09'),(7937,'geography','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 16:31:42'),(7938,'government','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:25:00'),(7939,'currentaffairs','197.210.70.189',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:33','2020-04-09 17:28:02'),(7940,'insurance','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:34','2020-04-09 17:25:10'),(7941,'insurance','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:27:49'),(7942,'civiledu','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:25'),(7943,'crk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:23'),(7944,'currentaffairs','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:13'),(7945,'geography','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:04'),(7946,'mathematics','197.210.70.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:16','2020-04-09 17:19:16'),(7947,'crk','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:23','2020-04-09 17:27:26'),(7948,'biology','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:25','2020-04-09 17:24:31'),(7949,'chemistry','197.210.70.41',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:26','2020-04-09 17:19:28'),(7950,'physics','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:29','2020-04-09 17:24:35'),(7951,'accounting','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:30','2020-04-09 17:26:46'),(7952,'englishlit','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:33','2020-04-09 17:27:10'),(7953,'englishlit','197.210.70.27',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:34','2020-04-09 17:24:45'),(7954,'geography','197.210.70.189',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:37','2020-04-09 17:25:02'),(7955,'crk','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:41','2020-04-09 17:27:28'),(7956,'economics','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:42','2020-04-09 17:20:52'),(7957,'geography','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:46','2020-04-09 17:27:26'),(7958,'civiledu','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:47','2020-04-09 17:26:19'),(7959,'insurance','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:27:47'),(7960,'insurance','197.210.71.235',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:19:59'),(7961,'currentaffairs','197.210.71.235',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:50','2020-04-09 17:25:28'),(7962,'history','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:05'),(7963,'history','197.210.70.189',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:03'),(7964,'civiledu','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:55','2020-04-09 17:27:40'),(7965,'insurance','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:56','2020-04-09 17:27:32'),(7966,'currentaffairs','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:57','2020-04-09 17:25:24'),(7967,'currentaffairs','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:58','2020-04-09 17:20:07'),(7968,'mathematics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:20:18'),(7969,'biology','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:19:04'),(7970,'physics','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:18','2020-04-09 17:20:28'),(7971,'biology','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:32','2020-04-09 17:26:52'),(7972,'chemistry','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:52','2020-04-09 17:26:57'),(7973,'chemistry','197.210.70.211',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:54','2020-04-09 17:20:38'),(7974,'irk','197.210.71.79',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:04','2020-04-09 17:20:50'),(7975,'civiledu','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:18','2020-04-09 17:21:29'),(7976,'insurance','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:20','2020-04-09 17:18:43'),(7977,'insurance','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:23','2020-04-09 17:27:58'),(7978,'currentaffairs','197.210.70.81',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:28','2020-04-09 17:27:55'),(7979,'currentaffairs','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:31','2020-04-09 17:27:56'),(7980,'government','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:34','2020-04-09 17:24:55'),(7981,'government','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 17:27:26'),(7982,'history','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 16:40:41'),(7983,'accounting','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:38','2020-04-09 17:20:26'),(7984,'history','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:39','2020-04-09 17:20:15'),(7985,'accounting','197.210.70.27',233,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:40','2020-04-09 17:19:23'),(7986,'history','197.210.70.95',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:41','2020-04-09 16:19:47'),(7987,'economics','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:27:56','2020-04-09 17:27:35'),(7988,'chemistry','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:01','2020-04-09 17:27:09'),(7989,'mathematics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:14','2020-04-09 17:25:47'),(7990,'accounting','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:34','2020-04-09 17:20:17'),(7991,'biology','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:35','2020-04-09 17:26:04'),(7992,'biology','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:36','2020-04-09 17:24:26'),(7993,'englishlit','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:45','2020-04-09 17:20:33'),(7994,'chemistry','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:54','2020-04-09 17:19:28'),(7995,'economics','197.210.70.211',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:12','2020-04-09 17:26:24'),(7996,'geography','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:15','2020-04-09 17:27:26'),(7997,'geography','197.210.70.239',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:20','2020-04-09 17:27:32'),(7998,'civiledu','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:28','2020-04-09 17:20:03'),(7999,'government','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:22','2020-04-09 17:27:20'),(8000,'irk','197.210.70.211',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:38','2020-04-09 17:26:26'),(8001,'insurance','197.210.70.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:20:02'),(8002,'history','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:08'),(8003,'history','197.210.70.217',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:07'),(8004,'history','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:47','2020-04-09 17:20:12'),(8005,'history','197.210.70.211',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:52','2020-04-09 17:21:12'),(8006,'history','197.210.70.205',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:55','2020-04-09 17:21:06'),(8007,'commerce','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:09','2020-04-09 17:20:20'),(8008,'physics','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:11','2020-04-09 17:20:37'),(8009,'civiledu','197.210.70.149',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:49','2020-04-09 17:21:00'),(8010,'economics','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:52','2020-04-09 17:20:57'),(8011,'currentaffairs','197.210.70.183',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:09','2020-04-09 17:27:59'),(8012,'history','197.210.70.137',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:13','2020-04-09 16:34:24'),(8013,'crk','197.210.70.137',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:38:31','2020-04-09 17:19:42'),(8014,'accounting','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:39:37','2020-04-09 17:26:43'),(8015,'biology','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:12','2020-04-09 17:27:01'),(8016,'geography','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:28','2020-04-09 17:20:54'),(8017,'insurance','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:33','2020-04-09 17:21:00'),(8018,'economics','197.210.70.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 17:20:44','2020-04-09 17:20:50'),(8019,'civiledu','18.232.76.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:01:19','2020-04-10 02:01:19'),(8020,'economics','3.88.169.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:51:46','2020-04-10 02:51:46'),(8021,'history','3.82.157.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 05:11:10','2020-04-10 05:11:10'),(8022,'mathematics','54.196.241.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 06:19:44','2020-04-10 06:19:44'),(8023,'history','3.88.70.16',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:01:55','2020-04-10 15:25:17'),(8024,'commerce','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8025,'physics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8026,'chemistry','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8027,'englishlit','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:14'),(8028,'crk','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8029,'irk','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:16'),(8030,'currentaffairs','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:17'),(8031,'english','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:14','2020-04-10 15:25:14'),(8032,'geography','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:15','2020-04-10 15:25:15'),(8033,'economics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:16','2020-04-10 15:25:16'),(8034,'commerce','54.89.208.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 17:29:46','2020-04-10 17:29:46'),(8035,'chemistry','197.210.8.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 18:23:00','2020-04-10 18:23:00'),(8036,'crk','35.173.248.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 19:52:55','2020-04-10 19:52:55'),(8037,'chemistry','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:34','2020-04-10 22:44:37'),(8038,'englishlit','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8039,'government','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8040,'geography','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8041,'economics','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8042,'civiledu','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8043,'insurance','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:38','2020-04-10 22:44:38'),(8044,'economics','52.55.93.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 23:42:01','2020-04-10 23:42:01'),(8045,'government','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:41:11','2020-04-11 01:41:11'),(8046,'chemistry','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:45:12','2020-04-11 01:45:12'),(8047,'geography','35.175.184.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 02:56:41','2020-04-11 02:56:41'),(8048,'government','34.224.58.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 04:37:27','2020-04-11 04:37:27'),(8049,'chemistry','116.88.133.110',51,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-11 05:33:06','2020-04-19 15:27:03'),(8050,'economics','3.90.47.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 05:55:15','2020-04-11 05:55:15'),(8051,'english','3.82.203.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 07:21:01','2020-04-11 07:21:01'),(8052,'biology','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8053,'government','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8054,'irk','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:09'),(8055,'civiledu','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:09'),(8056,'insurance','3.80.112.97',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:22:11'),(8057,'currentaffairs','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:10'),(8058,'history','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:10','2020-04-11 08:18:10'),(8059,'crk','54.83.85.175',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:06:53','2020-04-11 12:07:40'),(8060,'englishlit','34.229.42.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:50:10','2020-04-11 12:50:10'),(8061,'english','3.85.102.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 14:35:24','2020-04-11 14:35:24'),(8062,'crk','52.203.28.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 15:29:45','2020-04-11 15:29:45'),(8063,'crk','3.81.73.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 18:10:31','2020-04-11 18:10:31'),(8064,'commerce','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8065,'accounting','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8066,'physics','54.175.255.15',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 02:11:02'),(8067,'englishlit','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:20'),(8068,'government','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8069,'irk','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8070,'currentaffairs','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8071,'english','54.175.255.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 02:31:32','2020-04-12 02:31:32'),(8072,'currentaffairs','18.206.125.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 08:03:24','2020-04-12 08:03:24'),(8073,'mathematics','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8074,'mathematics','197.210.53.31',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:17'),(8075,'english','197.210.53.138',219,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 17:58:35'),(8076,'commerce','197.210.53.223',76,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:19'),(8077,'mathematics','197.210.53.138',290,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:36'),(8078,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8079,'english','197.210.53.31',62,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8080,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8081,'mathematics','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:31:54'),(8082,'mathematics','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8083,'english','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8084,'commerce','197.210.53.138',259,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:40'),(8085,'english','197.210.53.232',75,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:52'),(8086,'english','197.210.53.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8087,'commerce','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8088,'accounting','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8089,'currentaffairs','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:40'),(8090,'history','197.210.53.232',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8091,'civiledu','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8092,'history','197.210.53.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8093,'history','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8094,'currentaffairs','197.210.52.179',142,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8095,'civiledu','197.210.52.179',163,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8096,'history','197.210.52.170',110,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8097,'history','197.210.52.179',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:43'),(8098,'accounting','197.210.53.138',234,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-30 18:08:11'),(8099,'insurance','197.210.52.170',143,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:42'),(8100,'accounting','197.210.53.232',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:31:01'),(8101,'commerce','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:18','2020-04-12 13:30:55'),(8102,'biology','197.210.53.138',185,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:21','2020-04-30 17:57:35'),(8103,'physics','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:23'),(8104,'physics','197.210.53.138',234,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:49'),(8105,'mathematics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:52'),(8106,'accounting','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:52'),(8107,'biology','197.210.53.223',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:49'),(8108,'biology','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:24'),(8109,'physics','197.210.53.223',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:53'),(8110,'physics','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8111,'government','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8112,'englishlit','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:30'),(8113,'englishlit','197.210.53.138',160,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:15'),(8114,'physics','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8115,'englishlit','197.210.53.232',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:32'),(8116,'chemistry','197.210.53.138',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:53'),(8117,'government','197.210.53.138',182,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:57:07'),(8118,'chemistry','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:33'),(8119,'biology','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8120,'chemistry','197.210.53.232',111,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:25','2020-04-12 13:19:31'),(8121,'englishlit','197.210.52.170',122,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:30'),(8122,'chemistry','197.210.53.223',75,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:31'),(8123,'government','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:30'),(8124,'government','197.210.53.223',77,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:32'),(8125,'crk','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:30'),(8126,'government','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:30:56'),(8127,'crk','197.210.53.223',109,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:34'),(8128,'crk','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:35'),(8129,'geography','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:33'),(8130,'economics','197.210.53.138',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 17:58:26'),(8131,'geography','197.210.53.138',179,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 18:08:29'),(8132,'economics','197.210.53.223',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-12 13:19:39'),(8133,'crk','197.210.53.138',296,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-30 18:13:36'),(8134,'geography','197.210.53.31',71,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:32','2020-04-12 13:19:36'),(8135,'irk','197.210.53.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:36'),(8136,'irk','197.210.52.179',98,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:38'),(8137,'irk','197.210.52.170',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:30:47'),(8138,'economics','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:41'),(8139,'geography','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8140,'economics','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:37'),(8141,'irk','197.210.53.31',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8142,'economics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:41'),(8143,'civiledu','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:39'),(8144,'irk','197.210.53.223',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:37'),(8145,'civiledu','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:31:53'),(8146,'insurance','197.210.53.31',130,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:40'),(8147,'currentaffairs','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:31:54'),(8148,'currentaffairs','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:19:39'),(8149,'insurance','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:37','2020-04-12 13:19:40'),(8150,'currentaffairs','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:39','2020-04-12 13:19:42'),(8151,'crk','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:47','2020-04-12 13:30:50'),(8152,'commerce','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:53','2020-04-12 13:31:38'),(8153,'englishlit','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:58','2020-04-12 13:31:01'),(8154,'chemistry','197.210.52.106',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 16:15:11','2020-04-12 16:15:17'),(8155,'chemistry','105.112.50.114',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:16:45','2020-04-12 16:22:27'),(8156,'accounting','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8157,'crk','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8158,'history','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8159,'government','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8160,'commerce','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8161,'geography','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8162,'physics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8163,'biology','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8164,'englishlit','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8165,'economics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8166,'biology','34.224.87.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 03:38:22','2020-04-13 03:38:22'),(8167,'accounting','54.162.182.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 07:00:45','2020-04-13 07:00:45'),(8168,'chemistry','154.118.48.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 08:54:43','2020-04-13 08:54:59'),(8169,'chemistry','41.217.88.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 09:03:00','2020-04-13 09:03:00'),(8170,'chemistry','54.36.149.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:40:53','2020-04-13 23:40:53'),(8171,'chemistry','54.36.148.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:51:04','2020-04-13 23:51:04'),(8172,'chemistry','54.36.148.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:59:53','2020-04-13 23:59:53'),(8173,'chemistry','54.36.148.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:02:02','2020-04-14 00:02:02'),(8174,'chemistry','54.36.148.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:04:51','2020-04-14 00:04:52'),(8175,'insurance','54.166.10.181',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-14 00:24:25','2020-04-20 18:30:46'),(8176,'mathematics','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:41:23','2020-04-14 05:41:23'),(8177,'chemistry','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:48:13','2020-04-14 05:48:13'),(8178,'accounting','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:48','2020-04-14 09:01:50'),(8179,'physics','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:50','2020-04-14 09:01:50'),(8180,'chemistry','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8181,'englishlit','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8182,'civiledu','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8183,'currentaffairs','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8184,'history','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8185,'geography','18.206.240.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 10:07:05','2020-04-14 10:11:06'),(8186,'physics','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:00:35','2020-04-14 16:00:35'),(8187,'englishlit','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:37:56','2020-04-14 16:37:56'),(8188,'geography','18.206.195.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 17:01:28','2020-04-14 17:01:28'),(8189,'chemistry','217.146.176.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 18:42:57','2020-04-14 18:42:58'),(8190,'currentaffairs','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 20:54:30','2020-04-14 20:54:30'),(8191,'mathematics','54.163.208.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 00:52:55','2020-04-15 00:52:55'),(8192,'geography','100.26.52.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 01:58:43','2020-04-15 01:58:43'),(8193,'physics','34.235.149.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 02:45:09','2020-04-15 02:45:09'),(8194,'mathematics','3.87.134.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 03:39:42','2020-04-15 03:39:42'),(8195,'mathematics','34.201.57.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 04:44:44','2020-04-15 04:44:44'),(8196,'accounting','3.84.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 06:20:10','2020-04-15 06:20:10'),(8197,'chemistry','197.210.53.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:40:42','2020-04-15 10:40:43'),(8198,'chemistry','197.210.52.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:42:02','2020-04-15 10:42:02'),(8199,'insurance','52.91.233.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 15:29:09','2020-04-15 15:29:09'),(8200,'civiledu','54.242.136.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 17:12:47','2020-04-15 17:12:47'),(8201,'accounting','3.94.112.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 18:27:15','2020-04-15 18:55:50'),(8202,'history','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 19:09:02','2020-04-15 19:09:02'),(8203,'english','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8204,'commerce','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8205,'accounting','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8206,'government','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8207,'geography','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8208,'economics','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8209,'insurance','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8210,'mathematics','3.85.212.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 02:18:36','2020-04-16 02:18:36'),(8211,'economics','18.234.50.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 12:59:34','2020-04-16 12:59:34'),(8212,'history','18.215.157.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 13:52:47','2020-04-16 13:52:47'),(8213,'chemistry','197.210.44.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:42','2020-04-16 18:43:09'),(8214,'chemistry','197.210.64.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:58','2020-04-16 18:42:58'),(8215,'chemistry','197.210.65.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:43:29','2020-04-16 18:43:29'),(8216,'chemistry','197.210.47.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:44:34','2020-04-16 18:44:34'),(8217,'chemistry','197.210.64.155',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:45:46','2020-04-16 18:45:48'),(8218,'crk','3.87.156.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 22:43:05','2020-04-16 22:43:05'),(8219,'commerce','18.207.198.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:03:48','2020-04-17 02:03:48'),(8220,'commerce','54.237.135.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:41:43','2020-04-17 02:41:43'),(8221,'physics','66.249.88.30',50,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-20 17:05:28'),(8222,'physics','66.249.81.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-17 08:08:43'),(8223,'physics','41.144.89.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:44','2020-04-17 08:08:46'),(8224,'economics','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:53:39','2020-04-17 08:53:39'),(8225,'geography','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:14:00','2020-04-17 09:14:00'),(8226,'government','18.206.205.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:56:27','2020-04-17 10:02:57'),(8227,'chemistry','18.206.205.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 10:01:34','2020-04-17 10:01:34'),(8228,'commerce','3.83.68.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 11:09:10','2020-04-17 11:09:10'),(8229,'chemistry','197.210.60.237',244,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 12:26:25','2020-04-17 12:32:16'),(8230,'economics','18.212.205.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 13:09:33','2020-04-17 13:09:33'),(8231,'chemistry','207.46.13.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 15:19:30','2020-04-17 15:19:30'),(8232,'english','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 16:39:41','2020-04-17 16:39:41'),(8233,'englishlit','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:10:38','2020-04-17 17:10:38'),(8234,'insurance','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:26:22','2020-04-17 17:26:22'),(8235,'crk','18.234.121.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 18:20:42','2020-04-17 18:20:42'),(8236,'chemistry','197.210.84.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 20:34:57','2020-04-17 20:34:57'),(8237,'crk','3.92.82.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 22:15:16','2020-04-17 22:15:16'),(8238,'physics','18.234.86.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 03:54:15','2020-04-18 03:54:15'),(8239,'currentaffairs','100.27.24.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 06:16:30','2020-04-18 06:16:30'),(8240,'crk','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:33:36','2020-04-18 07:33:36'),(8241,'englishlit','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:34:50','2020-04-18 07:34:50'),(8242,'english','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:35:39','2020-04-18 07:35:39'),(8243,'englishlit','107.23.21.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 08:31:03','2020-04-18 08:31:03'),(8244,'biology','3.93.151.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 11:56:02','2020-04-18 11:56:02'),(8245,'english','197.210.45.162',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 14:25:05','2020-04-18 14:25:07'),(8246,'currentaffairs','52.201.218.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 15:20:26','2020-04-18 15:20:26'),(8247,'economics','54.208.89.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:02:52','2020-04-18 18:02:52'),(8248,'chemistry','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:03'),(8249,'english','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:04'),(8250,'chemistry','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8251,'english','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8252,'english','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8253,'chemistry','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8254,'english','197.210.47.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:30:57','2020-04-18 18:31:00'),(8255,'chemistry','197.210.47.50',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8256,'english','197.210.47.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8257,'mathematics','197.210.47.209',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8258,'physics','197.210.47.182',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8259,'biology','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8260,'accounting','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8261,'english','197.210.65.39',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:34:12'),(8262,'commerce','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8263,'english','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8264,'accounting','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8265,'commerce','197.210.65.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8266,'biology','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8267,'biology','197.210.64.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:12'),(8268,'accounting','197.210.64.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8269,'commerce','197.210.47.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8270,'irk','197.210.47.117',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:50'),(8271,'english','197.210.47.142',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8272,'economics','197.210.47.112',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8273,'geography','197.210.47.125',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:34:50','2020-04-18 18:34:52'),(8274,'civiledu','197.210.47.139',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8275,'english','197.210.64.74',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8276,'insurance','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8277,'currentaffairs','197.210.47.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:59','2020-04-18 18:57:01'),(8278,'economics','197.210.64.116',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8279,'english','197.210.47.248',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8280,'irk','197.210.47.33',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:15','2020-04-18 19:01:17'),(8281,'civiledu','197.210.47.240',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:18','2020-04-18 19:01:20'),(8282,'mathematics','197.210.65.174',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8283,'english','197.210.65.168',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8284,'biology','197.210.65.164',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8285,'commerce','197.210.65.181',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8286,'english','197.210.47.9',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:07','2020-04-18 19:03:09'),(8287,'mathematics','197.210.47.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8288,'biology','197.210.47.19',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8289,'accounting','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8290,'english','197.210.65.0',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8291,'irk','197.210.64.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:25'),(8292,'civiledu','197.210.65.126',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8293,'economics','197.210.65.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8294,'biology','197.210.65.15',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8295,'accounting','197.210.65.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8296,'english','197.210.65.11',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8297,'commerce','197.210.65.26',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8298,'accounting','197.210.64.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8299,'mathematics','197.210.64.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8300,'english','197.210.47.101',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8301,'commerce','197.210.47.108',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8302,'biology','197.210.65.132',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:37'),(8303,'english','197.210.47.62',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:12:53'),(8304,'accounting','197.210.47.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:38'),(8305,'physics','197.210.47.32',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:36','2020-04-18 19:09:38'),(8306,'civiledu','197.210.64.42',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8307,'english','197.210.65.69',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8308,'insurance','197.210.65.75',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8309,'irk','197.210.65.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:30','2020-04-18 19:11:31'),(8310,'physics','197.210.47.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8311,'biology','197.210.47.56',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8312,'chemistry','197.210.47.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:52','2020-04-18 19:12:55'),(8313,'english','197.210.64.106',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8314,'government','197.210.65.97',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8315,'chemistry','197.210.65.99',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8316,'englishlit','197.210.64.37',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8317,'english','197.210.65.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8318,'biology','197.210.65.196',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8319,'accounting','197.210.65.206',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8320,'commerce','197.210.65.198',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8321,'physics','197.210.64.111',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:07'),(8322,'english','197.210.64.140',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8323,'englishlit','197.210.64.82',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8324,'chemistry','197.210.64.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:07','2020-04-18 19:56:10'),(8325,'english','197.210.65.23',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:35','2020-04-18 19:56:38'),(8326,'englishlit','197.210.64.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:37','2020-04-18 19:56:39'),(8327,'government','197.210.47.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:38','2020-04-18 19:56:40'),(8328,'chemistry','197.210.65.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:39','2020-04-18 19:56:41'),(8329,'mathematics','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8330,'accounting','197.210.47.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8331,'biology','197.210.65.134',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8332,'english','197.210.64.213',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8333,'english','197.210.65.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8334,'commerce','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8335,'mathematics','197.210.64.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8336,'irk','197.210.65.92',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:17','2020-04-18 19:59:19'),(8337,'accounting','3.208.18.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 06:23:07','2020-04-19 06:23:07'),(8338,'chemistry','40.77.167.36',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 07:38:38','2020-04-19 16:13:18'),(8339,'mathematics','105.112.179.226',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:23'),(8340,'accounting','105.112.179.226',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:52:55'),(8341,'government','105.112.179.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 11:58:19'),(8342,'english','105.112.179.226',480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:24'),(8343,'physics','105.112.179.226',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:55:09'),(8344,'biology','105.112.179.226',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:57:24'),(8345,'commerce','105.112.179.226',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:05:08','2020-04-19 12:57:24'),(8346,'chemistry','105.112.179.226',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:48:05','2020-04-19 12:55:09'),(8347,'chemistry','105.112.22.76',49,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:16:51','2020-04-19 13:26:58'),(8348,'biology','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:23:32','2020-04-19 13:23:33'),(8349,'mathematics','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:28:01','2020-04-19 13:28:01');\nINSERT INTO `api_call_ip_address` VALUES (8350,'mathematics','197.210.45.45',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:23:32'),(8351,'english','197.210.45.45',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8352,'commerce','197.210.45.45',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8353,'accounting','197.210.45.45',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8354,'english','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8355,'mathematics','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8356,'accounting','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8357,'commerce','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8358,'commerce','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8359,'accounting','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8360,'english','197.210.63.48',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:43:25'),(8361,'mathematics','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8362,'history','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8363,'currentaffairs','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8364,'insurance','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8365,'government','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8366,'crk','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8367,'geography','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8368,'history','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8369,'currentaffairs','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8370,'insurance','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8371,'english','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8372,'currentaffairs','197.210.45.45',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:11:15'),(8373,'insurance','197.210.45.45',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8374,'history','197.210.45.45',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8375,'chemistry','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8376,'physics','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8377,'biology','197.210.45.45',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:13:01','2020-04-19 19:24:58'),(8378,'mathematics','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8379,'chemistry','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:31:55'),(8380,'physics','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8381,'english','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8382,'biology','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:17:47','2020-04-19 21:17:49'),(8383,'english','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8384,'accounting','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8385,'englishlit','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8386,'economics','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8387,'civiledu','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8388,'insurance','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8389,'history','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8390,'currentaffairs','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:34:27','2020-04-19 21:34:29'),(8391,'chemistry','54.36.150.129',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:45:45','2020-04-19 22:45:45'),(8392,'chemistry','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:47:37'),(8393,'physics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8394,'mathematics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8395,'english','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8396,'biology','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:54:25','2020-04-19 22:54:27'),(8397,'chemistry','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8398,'physics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8399,'mathematics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8400,'english','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8401,'physics','3.93.200.226',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 00:55:26','2020-04-20 01:33:19'),(8402,'history','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:07:59','2020-04-20 01:07:59'),(8403,'currentaffairs','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:20:29','2020-04-20 01:20:29'),(8404,'englishlit','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:46:52','2020-04-20 01:46:52'),(8405,'chemistry','54.85.179.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:14:11','2020-04-20 03:14:11'),(8406,'english','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8407,'history','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8408,'insurance','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8409,'currentaffairs','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8410,'english','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8411,'biology','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:53:43'),(8412,'commerce','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8413,'accounting','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8414,'mathematics','102.89.2.214',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:56:26','2020-04-20 03:56:28'),(8415,'mathematics','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 04:11:00','2020-04-20 04:11:00'),(8416,'geography','3.92.207.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 06:39:01','2020-04-20 06:39:01'),(8417,'geography','3.80.247.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 07:47:21','2020-04-20 07:47:21'),(8418,'biology','218.26.54.96',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 09:58:41','2020-04-20 09:58:42'),(8419,'physics','3.90.203.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 11:17:13','2020-04-20 11:17:13'),(8420,'geography','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:08:33','2020-04-20 12:08:33'),(8421,'englishlit','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:30:06','2020-04-20 12:30:06'),(8422,'civiledu','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8423,'english','197.210.8.224',720,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 14:29:47'),(8424,'insurance','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8425,'currentaffairs','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8426,'chemistry','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8427,'mathematics','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8428,'physics','197.210.8.224',680,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8429,'commerce','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8430,'biology','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8431,'currentaffairs','54.145.65.159',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:05:19','2020-04-20 14:05:19'),(8432,'chemistry','54.36.148.196',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:35:15','2020-04-20 14:35:15'),(8433,'biology','66.249.83.204',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:44:36','2020-04-20 14:44:37'),(8434,'chemistry','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:50:33'),(8435,'english','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8436,'mathematics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8437,'physics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8438,'commerce','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:52:12','2020-04-20 14:52:14'),(8439,'chemistry','102.89.0.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 18:20:36','2020-04-20 18:20:36'),(8440,'chemistry','102.89.0.10',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:21:01','2020-04-20 18:24:58'),(8441,'physics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8442,'mathematics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8443,'english','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:58'),(8444,'physics','54.166.10.181',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:55:28','2020-04-20 18:55:28'),(8445,'mathematics','35.153.167.2',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 20:10:20','2020-04-20 20:10:20'),(8446,'mathematics','52.91.67.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 23:39:22','2020-04-20 23:39:22'),(8447,'physics','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8448,'chemistry','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8449,'english','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8450,'mathematics','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8451,'accounting','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8452,'biology','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8453,'chemistry','105.112.182.146',64,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:25:58','2020-04-21 19:28:52'),(8454,'biology','105.112.182.146',147,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:31:52','2020-04-21 20:02:15'),(8455,'physics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:00:51','2020-04-21 18:36:52'),(8456,'chemistry','197.210.64.120',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:02:51','2020-04-21 10:02:53'),(8457,'history','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8458,'currentaffairs','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8459,'english','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8460,'insurance','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8461,'commerce','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:24','2020-04-21 19:24:43'),(8462,'mathematics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:33','2020-04-21 18:43:38'),(8463,'chemistry','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8464,'english','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8465,'mathematics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8466,'physics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8467,'mathematics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8468,'english','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8469,'physics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8470,'chemistry','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8471,'chemistry','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8472,'mathematics','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8473,'english','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8474,'commerce','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8475,'english','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8476,'mathematics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8477,'physics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8478,'chemistry','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8479,'english','105.112.182.146',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:29','2020-04-21 11:08:28'),(8480,'chemistry','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8481,'english','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8482,'physics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8483,'mathematics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8484,'english','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8485,'mathematics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8486,'biology','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8487,'physics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8488,'chemistry','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8489,'mathematics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8490,'physics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8491,'english','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8492,'english','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8493,'englishlit','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8494,'physics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8495,'mathematics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8496,'mathematics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8497,'physics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8498,'english','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8499,'chemistry','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8500,'physics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8501,'mathematics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8502,'english','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8503,'chemistry','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8504,'physics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8505,'english','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8506,'chemistry','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8507,'mathematics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8508,'physics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8509,'english','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8510,'mathematics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8511,'mathematics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8512,'physics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8513,'english','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8514,'chemistry','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8515,'mathematics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8516,'english','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8517,'chemistry','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8518,'physics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8519,'mathematics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8520,'physics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8521,'chemistry','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:58'),(8522,'english','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8523,'english','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8524,'physics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8525,'chemistry','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8526,'mathematics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8527,'physics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8528,'mathematics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8529,'chemistry','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8530,'english','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8531,'englishlit','41.80.21.184',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:46:19','2020-04-21 11:46:21'),(8532,'chemistry','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8533,'mathematics','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8534,'biology','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8535,'english','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8536,'mathematics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8537,'chemistry','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8538,'physics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8539,'english','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8540,'accounting','105.112.182.146',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:21:36','2020-04-21 19:33:14'),(8541,'mathematics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8542,'english','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8543,'chemistry','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8544,'physics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8545,'english','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8546,'mathematics','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8547,'biology','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8548,'commerce','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8549,'physics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8550,'chemistry','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8551,'english','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8552,'mathematics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8553,'chemistry','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8554,'mathematics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8555,'english','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8556,'physics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8557,'history','54.242.239.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 14:06:07','2020-04-21 14:06:07'),(8558,'government','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 15:55:50','2020-04-21 15:55:51'),(8559,'history','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 16:23:43','2020-04-21 16:23:43'),(8560,'chemistry','197.210.28.55',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 18:02:59','2020-04-21 18:03:01'),(8561,'mathematics','3.81.94.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 19:58:20','2020-04-21 19:58:20'),(8562,'biology','105.112.18.128',77,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:18:41','2020-04-21 23:24:00'),(8563,'physics','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:18:53','2020-04-21 23:00:17'),(8564,'accounting','105.112.18.128',42,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:35:26','2020-04-21 23:10:50'),(8565,'chemistry','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:37:37','2020-04-21 20:58:32'),(8566,'mathematics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8567,'chemistry','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8568,'english','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:14'),(8569,'physics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8570,'english','102.89.1.175',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:09:09','2020-04-21 21:42:43'),(8571,'english','102.89.1.91',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:10:02','2020-04-21 21:25:29'),(8572,'english','102.89.0.89',20,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:11:30','2020-04-21 21:11:32'),(8573,'chemistry','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8574,'mathematics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8575,'physics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8576,'chemistry','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8577,'english','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8578,'mathematics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8579,'physics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8580,'chemistry','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:07','2020-04-21 21:42:43'),(8581,'physics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8582,'mathematics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8583,'commerce','105.112.18.128',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 22:04:53','2020-04-21 22:49:43'),(8584,'mathematics','105.112.18.128',7,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 22:27:23','2020-04-21 22:27:24'),(8585,'english','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8586,'irk','102.89.1.102',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8587,'insurance','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8588,'civiledu','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8589,'geography','105.112.18.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:32:29','2020-04-21 23:32:29'),(8590,'mathematics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8591,'physics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8592,'english','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8593,'chemistry','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8594,'physics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8595,'mathematics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8596,'english','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8597,'biology','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8598,'insurance','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:44','2020-04-21 23:46:47'),(8599,'english','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8600,'chemistry','197.210.46.117',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-05-25 11:18:27'),(8601,'geography','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8602,'history','52.207.122.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:21:54','2020-04-22 06:21:54'),(8603,'chemistry','102.89.2.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:27:13','2020-04-22 06:27:13'),(8604,'mathematics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8605,'english','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8606,'physics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8607,'chemistry','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8608,'biology','105.112.28.69',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 08:37:38','2020-04-22 09:14:05'),(8609,'physics','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:37:13','2020-04-22 11:01:24'),(8610,'biology','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:45:01','2020-04-22 10:48:10'),(8611,'accounting','105.112.31.149',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:07:02','2020-04-22 10:07:52'),(8612,'economics','105.112.31.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:16:04','2020-04-22 10:16:05'),(8613,'biology','105.112.30.170',28,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 11:06:24','2020-04-22 12:40:53'),(8614,'accounting','105.112.30.170',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 11:33:34','2020-04-22 11:59:20'),(8615,'chemistry','41.190.12.66',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:15:54','2020-04-22 12:17:36'),(8616,'biology','41.190.12.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:16:26','2020-04-22 12:18:01'),(8617,'chemistry','105.112.176.19',468,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 12:22:58','2020-04-22 12:30:38'),(8618,'chemistry','41.190.12.130',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:35:57','2020-04-22 12:39:25'),(8619,'biology','41.190.12.130',9,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:37:06','2020-04-22 12:41:42'),(8620,'english','41.190.12.130',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:39:46','2020-04-22 12:43:48'),(8621,'insurance','197.210.84.226',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:37:40','2020-04-22 13:37:42'),(8622,'insurance','197.210.84.190',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:40:05','2020-04-22 13:40:07'),(8623,'chemistry','54.82.80.108',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 14:30:16','2020-04-22 14:30:16'),(8624,'crk','34.229.173.152',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:15:56','2020-04-22 16:15:56'),(8625,'physics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8626,'english','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8627,'chemistry','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8628,'mathematics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8629,'biology','105.112.183.159',84,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:46:06','2020-04-22 22:39:25'),(8630,'accounting','105.112.183.159',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:48:17','2020-04-22 22:31:08'),(8631,'english','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:13:11','2020-04-22 18:13:11'),(8632,'commerce','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:34:19','2020-04-22 18:34:19'),(8633,'currentaffairs','3.94.91.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:10:02','2020-04-22 19:10:02'),(8634,'chemistry','105.112.183.159',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:38:14','2020-04-22 19:41:59'),(8635,'chemistry','157.55.39.45',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:52:26','2020-04-22 19:52:27'),(8636,'physics','105.112.183.159',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 21:25:48','2020-04-22 22:40:27'),(8637,'economics','54.166.255.13',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 22:23:41','2020-04-22 22:23:41'),(8638,'commerce','105.112.183.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 23:09:25','2020-04-22 23:09:26'),(8639,'chemistry','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:00:28','2020-04-23 00:00:28'),(8640,'government','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:24:21','2020-04-23 00:24:21'),(8641,'mathematics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:39:20','2020-04-23 01:39:20'),(8642,'government','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:47:47','2020-04-23 01:47:47'),(8643,'economics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:48:36','2020-04-23 01:48:36'),(8644,'geography','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:36:53','2020-04-23 02:36:53'),(8645,'commerce','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:53:38','2020-04-23 02:53:38'),(8646,'chemistry','105.112.61.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:54:52','2020-04-23 02:54:52'),(8647,'insurance','54.86.197.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 06:26:13','2020-04-23 06:26:13'),(8648,'crk','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:16:42','2020-04-23 10:16:42'),(8649,'englishlit','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:34:38','2020-04-23 10:34:38'),(8650,'english','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 11:05:41','2020-04-23 11:05:41'),(8651,'biology','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8652,'mathematics','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8653,'crk','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8654,'english','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8655,'civiledu','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8656,'economics','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8657,'crk','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 14:30:55','2020-04-23 14:30:55'),(8658,'biology','54.224.0.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 17:35:04','2020-04-23 17:35:04'),(8659,'chemistry','40.77.167.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 19:39:50','2020-04-23 19:39:50'),(8660,'physics','54.174.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:04:30','2020-04-23 22:04:30'),(8661,'englishlit','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:50:05','2020-04-23 22:50:05'),(8662,'currentaffairs','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 23:11:05','2020-04-23 23:11:05'),(8663,'crk','18.234.95.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 00:49:03','2020-04-24 00:49:03'),(8664,'chemistry','102.134.114.129',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 01:33:54','2020-04-24 01:38:52'),(8665,'englishlit','54.209.127.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 02:15:39','2020-04-24 02:15:39'),(8666,'english','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:17:39','2020-04-24 03:17:39'),(8667,'government','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:43:50','2020-04-24 03:43:50'),(8668,'chemistry','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 04:48:11','2020-04-24 04:48:11'),(8669,'economics','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 05:19:42','2020-04-24 05:19:42'),(8670,'mathematics','54.196.250.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 08:15:48','2020-04-24 08:15:48'),(8671,'insurance','3.82.47.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 09:43:06','2020-04-24 09:43:06'),(8672,'civiledu','100.24.31.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:26:45','2020-04-24 10:26:45'),(8673,'mathematics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8674,'commerce','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8675,'biology','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8676,'chemistry','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:08'),(8677,'government','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8678,'geography','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8679,'economics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8680,'physics','188.164.100.205',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:39:15','2020-04-24 10:39:17'),(8681,'chemistry','35.171.2.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 14:25:12','2020-04-24 14:25:12'),(8682,'mathematics','54.145.214.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 17:31:43','2020-04-24 17:31:43'),(8683,'chemistry','54.36.148.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 18:06:18','2020-04-24 18:06:18'),(8684,'accounting','34.239.139.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 23:10:31','2020-04-24 23:10:31'),(8685,'chemistry','54.227.8.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 01:51:07','2020-04-25 01:51:07'),(8686,'chemistry','105.112.47.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 04:58:07','2020-04-25 04:58:07'),(8687,'mathematics','34.204.43.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 05:02:06','2020-04-25 05:02:06'),(8688,'currentaffairs','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:33:21','2020-04-25 06:33:21'),(8689,'biology','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:58:18','2020-04-25 06:58:18'),(8690,'english','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:13','2020-04-25 07:02:13'),(8691,'commerce','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:32','2020-04-25 07:02:32'),(8692,'geography','54.162.26.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 08:14:44','2020-04-25 08:14:44'),(8693,'biology','41.190.31.157',123,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 14:18:38','2020-04-25 15:45:29'),(8694,'english','41.190.31.157',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:19:08','2020-04-25 15:19:08'),(8695,'chemistry','41.190.31.157',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:34:32','2020-04-25 15:49:01'),(8696,'mathematics','18.207.244.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:00:51','2020-04-25 19:00:51'),(8697,'geography','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:43:51','2020-04-25 19:43:51'),(8698,'chemistry','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 20:00:20','2020-04-25 20:00:20'),(8699,'geography','54.196.233.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 22:34:56','2020-04-25 22:34:56'),(8700,'geography','54.226.23.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 23:54:11','2020-04-25 23:54:11'),(8701,'physics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:34:21','2020-04-26 03:34:21'),(8702,'englishlit','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:46:24','2020-04-26 03:46:24'),(8703,'english','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:15:25','2020-04-26 04:15:25'),(8704,'geography','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:21:18','2020-04-26 04:21:18'),(8705,'economics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:38:52','2020-04-26 04:38:52'),(8706,'currentaffairs','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 05:01:46','2020-04-26 05:01:46'),(8707,'crk','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:37:57','2020-04-26 07:37:57'),(8708,'geography','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:39:49','2020-04-26 07:39:49'),(8709,'englishlit','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:24:17','2020-04-26 08:24:17'),(8710,'commerce','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:32:11','2020-04-26 08:32:11'),(8711,'biology','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:36:32','2020-04-26 08:36:32'),(8712,'mathematics','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:08:49','2020-04-26 09:08:49'),(8713,'english','34.207.68.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:44:24','2020-04-26 09:44:24'),(8714,'mathematics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:12:46','2020-04-26 11:12:46'),(8715,'physics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:15:20','2020-04-26 11:15:20'),(8716,'crk','54.152.233.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 12:24:21','2020-04-26 12:24:21'),(8717,'mathematics','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:36:48','2020-04-26 14:36:48'),(8718,'biology','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:55:09','2020-04-26 14:55:09'),(8719,'economics','18.215.246.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 21:05:56','2020-04-26 21:05:56'),(8720,'mathematics','3.81.151.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 01:31:08','2020-04-27 01:31:08'),(8721,'biology','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:05','2020-04-27 02:58:05'),(8722,'chemistry','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:38','2020-04-27 02:58:38'),(8723,'accounting','34.235.166.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 03:48:21','2020-04-27 03:48:21'),(8724,'history','54.224.76.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 05:14:17','2020-04-27 05:14:17'),(8725,'chemistry','52.201.249.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 08:03:17','2020-04-27 08:03:17'),(8726,'biology','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8727,'physics','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8728,'crk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8729,'geography','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8730,'irk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8731,'insurance','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8732,'history','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8733,'chemistry','54.234.116.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:51'),(8734,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8735,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8736,'government','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:13:02','2020-04-27 10:13:02'),(8737,'physics','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:23:37','2020-04-27 11:23:37'),(8738,'commerce','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:41:20','2020-04-27 11:41:20'),(8739,'chemistry','99.7.238.16',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:37:52','2020-04-27 13:42:57'),(8740,'physics','99.7.238.16',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:43:03','2020-04-27 13:43:03'),(8741,'chemistry','77.88.5.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:54:22','2020-04-27 13:54:22'),(8742,'biology','3.88.17.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:37:10','2020-04-27 14:37:10'),(8743,'mathematics','197.210.8.233',680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:44:44','2020-04-27 15:08:49'),(8744,'chemistry','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8745,'english','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8746,'physics','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8747,'economics','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:20:06','2020-04-27 20:20:06'),(8748,'commerce','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:39:52','2020-04-27 20:39:52'),(8749,'history','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:49:28','2020-04-27 20:49:28'),(8750,'government','107.21.137.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 02:38:07','2020-04-28 02:38:07'),(8751,'commerce','3.95.203.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 05:37:46','2020-04-28 05:37:46'),(8752,'crk','3.91.54.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:01:44','2020-04-28 07:01:44'),(8753,'geography','18.212.75.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:55:58','2020-04-28 07:55:58'),(8754,'physics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8755,'english','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8756,'mathematics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8757,'chemistry','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8758,'chemistry','196.222.104.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:11:38','2020-04-28 10:21:09'),(8759,'physics','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8760,'chemistry','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8761,'crk','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8762,'geography','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8763,'economics','18.209.104.117',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 11:04:14'),(8764,'currentaffairs','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8765,'history','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8766,'economics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:46:56','2020-04-28 11:46:56'),(8767,'english','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:47:28','2020-04-28 11:47:28'),(8768,'commerce','105.112.70.76',56,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:08:02','2020-04-28 13:10:12'),(8769,'accounting','105.112.70.76',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:11:44','2020-04-28 13:22:13'),(8770,'biology','105.112.70.76',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:29:15','2020-04-28 12:29:15'),(8771,'government','3.84.75.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 13:46:11','2020-04-28 13:46:11'),(8772,'economics','3.80.87.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 14:32:49','2020-04-28 14:32:49'),(8773,'physics','54.210.29.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:28:17','2020-04-28 15:28:17'),(8774,'insurance','197.210.227.65',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:30:30','2020-04-28 16:09:26'),(8775,'insurance','197.210.227.77',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:32:37','2020-04-28 15:41:11'),(8776,'accounting','197.210.227.77',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:38:20','2020-04-28 16:20:02'),(8777,'insurance','197.210.227.25',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:43:40','2020-04-28 17:43:09'),(8778,'insurance','197.210.226.63',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:02:54','2020-04-28 17:36:29'),(8779,'insurance','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:05:09','2020-04-28 16:05:11'),(8780,'englishlit','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:47','2020-04-28 16:07:49'),(8781,'government','197.210.227.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:51','2020-04-28 16:07:53'),(8782,'currentaffairs','197.210.226.63',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:54','2020-04-28 17:56:54'),(8783,'economics','197.210.227.25',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:58','2020-04-28 17:33:39'),(8784,'geography','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:02','2020-04-28 16:20:19'),(8785,'english','197.210.227.25',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:06','2020-04-28 17:57:58'),(8786,'mathematics','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:09','2020-04-28 16:09:56'),(8787,'commerce','197.210.227.25',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:13','2020-04-28 17:33:53'),(8788,'biology','197.210.227.25',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:17','2020-04-28 17:44:06'),(8789,'physics','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:20','2020-04-28 16:10:08'),(8790,'crk','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:28','2020-04-28 16:10:15'),(8791,'history','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:32','2020-04-28 16:08:35'),(8792,'irk','197.210.227.233',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:36','2020-04-28 16:08:38'),(8793,'civiledu','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:39','2020-04-28 17:47:22'),(8794,'accounting','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:28','2020-04-28 16:09:30'),(8795,'englishlit','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:32','2020-04-28 16:09:34'),(8796,'government','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:35','2020-04-28 16:09:38'),(8797,'currentaffairs','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:39','2020-04-28 16:09:41'),(8798,'economics','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:42','2020-04-28 16:09:45'),(8799,'geography','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:46','2020-04-28 16:09:48'),(8800,'english','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:50','2020-04-28 16:09:52'),(8801,'commerce','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:58','2020-04-28 16:10:00'),(8802,'biology','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:02','2020-04-28 16:10:04'),(8803,'chemistry','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:09','2020-04-28 16:10:12'),(8804,'history','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:17','2020-04-28 16:10:19'),(8805,'irk','197.210.226.63',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:20','2020-04-28 16:10:22'),(8806,'civiledu','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:23','2020-04-28 16:10:25'),(8807,'government','3.80.238.158',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:15:49','2020-04-28 16:15:49'),(8808,'englishlit','197.210.226.63',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:03','2020-04-28 17:41:09'),(8809,'government','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:06','2020-04-28 17:56:50'),(8810,'currentaffairs','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:10','2020-04-28 17:46:35'),(8811,'economics','197.210.226.63',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:14','2020-04-28 17:45:40'),(8812,'mathematics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:24','2020-04-28 17:46:51'),(8813,'physics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:35','2020-04-28 17:47:04'),(8814,'chemistry','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:40','2020-04-28 17:47:08'),(8815,'crk','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:45','2020-04-28 17:47:11'),(8816,'history','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:49','2020-04-28 16:20:51'),(8817,'irk','197.210.227.77',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:04','2020-04-28 16:21:05'),(8818,'civiledu','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:07','2020-04-28 16:21:10'),(8819,'geography','3.93.153.210',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:54:50','2020-04-28 17:00:53'),(8820,'accounting','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:23','2020-04-28 17:47:35'),(8821,'englishlit','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:26','2020-04-28 17:47:39'),(8822,'government','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:30','2020-04-28 17:46:31'),(8823,'currentaffairs','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:33','2020-04-28 17:36:51'),(8824,'geography','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:41','2020-04-28 17:33:43'),(8825,'mathematics','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:48','2020-04-28 17:33:50'),(8826,'chemistry','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:02','2020-04-28 17:39:24'),(8827,'history','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:09','2020-04-28 17:47:15'),(8828,'irk','197.210.227.25',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:13','2020-04-28 17:44:24'),(8829,'civiledu','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:15','2020-04-28 17:56:36'),(8830,'insurance','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:24','2020-04-28 17:55:24'),(8831,'accounting','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:28','2020-04-28 17:44:57'),(8832,'government','197.210.227.122',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:36','2020-04-28 17:45:31'),(8833,'currentaffairs','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:39','2020-04-28 17:55:39'),(8834,'economics','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:43','2020-04-28 17:49:01'),(8835,'geography','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:47','2020-04-28 17:47:55'),(8836,'english','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:50','2020-04-28 17:47:59'),(8837,'insurance','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:54','2020-04-28 17:56:39'),(8838,'accounting','197.210.226.66',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:58','2020-04-28 17:55:28'),(8839,'englishlit','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:02','2020-04-28 17:56:46'),(8840,'geography','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:17','2020-04-28 17:46:43'),(8841,'accounting','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:30','2020-04-28 17:43:13'),(8842,'economics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:52','2020-04-28 17:36:54'),(8843,'geography','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:56','2020-04-28 17:57:18'),(8844,'commerce','197.210.227.96',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:24','2020-04-28 17:46:56'),(8845,'crk','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:39','2020-04-28 17:37:41'),(8846,'irk','197.210.227.1',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:46','2020-04-28 17:47:19'),(8847,'geography','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:55','2020-04-28 17:49:05'),(8848,'english','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:58','2020-04-28 17:55:52'),(8849,'mathematics','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:07','2020-04-28 17:55:55'),(8850,'commerce','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:11','2020-04-28 17:39:13'),(8851,'biology','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:14','2020-04-28 17:39:17'),(8852,'physics','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:18','2020-04-28 17:56:07'),(8853,'crk','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:25','2020-04-28 17:39:27'),(8854,'history','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:28','2020-04-28 17:56:28'),(8855,'irk','197.210.226.66',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:32','2020-04-28 17:56:32'),(8856,'insurance','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:40:58','2020-04-28 17:46:20'),(8857,'government','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:41:11','2020-04-28 17:48:52'),(8858,'currentaffairs','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:35','2020-04-28 17:47:47'),(8859,'economics','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:38','2020-04-28 17:57:01'),(8860,'geography','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:42','2020-04-28 17:43:44'),(8861,'physics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:07','2020-04-28 17:44:09'),(8862,'crk','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:14','2020-04-28 17:48:22'),(8863,'history','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:18','2020-04-28 17:44:21'),(8864,'civiledu','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:25','2020-04-28 17:44:44'),(8865,'englishlit','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:45:04','2020-04-28 17:45:06'),(8866,'english','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:44','2020-04-28 17:46:47'),(8867,'biology','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:57','2020-04-28 17:56:03'),(8868,'insurance','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:47:29','2020-04-28 17:47:32'),(8869,'mathematics','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:00','2020-04-28 17:48:03'),(8870,'commerce','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:05','2020-04-28 17:48:07'),(8871,'biology','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:08','2020-04-28 17:48:11'),(8872,'chemistry','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:16','2020-04-28 17:48:19'),(8873,'history','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:24','2020-04-28 17:48:27'),(8874,'englishlit','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:29','2020-04-28 17:55:32'),(8875,'government','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:33','2020-04-28 17:55:35'),(8876,'economics','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:41','2020-04-28 17:55:44'),(8877,'commerce','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:56','2020-04-28 17:55:59'),(8878,'chemistry','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:08','2020-04-28 17:56:10'),(8879,'crk','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:22','2020-04-28 17:56:24'),(8880,'accounting','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:41','2020-04-28 17:56:43'),(8881,'government','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:16','2020-04-28 18:02:16'),(8882,'commerce','105.112.16.71',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:49','2020-04-28 18:02:49'),(8883,'biology','105.112.16.71',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:06:21','2020-04-28 18:11:14'),(8884,'english','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:20:03','2020-04-28 18:20:03'),(8885,'commerce','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:32:41','2020-04-28 18:32:41'),(8886,'accounting','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:33:53','2020-04-28 18:33:53'),(8887,'biology','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:55:42','2020-04-28 18:55:42'),(8888,'history','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:58:00','2020-04-28 18:58:00'),(8889,'chemistry','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:04:13','2020-04-28 19:04:13'),(8890,'chemistry','41.217.104.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:28:12','2020-04-28 19:28:26'),(8891,'economics','35.175.150.1',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 20:02:33','2020-04-28 20:02:33'),(8892,'commerce','52.23.234.72',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:03:58','2020-04-28 21:03:58'),(8893,'commerce','105.112.176.198',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:35:39','2020-04-28 22:06:40'),(8894,'biology','105.112.176.198',21,'','NG','','Lagos',NULL,NULL,'','','2020-04-28 21:49:14','2020-04-28 23:16:53'),(8895,'accounting','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:07:36','2020-04-28 22:07:37'),(8896,'mathematics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:15:12','2020-04-28 22:15:12'),(8897,'physics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:19:21','2020-04-28 22:19:21'),(8898,'government','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:21:48','2020-04-28 22:21:48'),(8899,'insurance','34.229.212.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 23:55:04','2020-04-28 23:55:04'),(8900,'english','35.170.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 01:09:28','2020-04-29 01:09:28'),(8901,'crk','54.204.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 02:49:37','2020-04-29 02:49:37'),(8902,'crk','34.229.217.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 08:41:40','2020-04-29 08:41:40'),(8903,'chemistry','52.54.222.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 09:31:21','2020-04-29 09:31:21'),(8904,'physics','3.86.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 11:56:45','2020-04-29 11:56:45'),(8905,'english','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:13:54','2020-04-29 14:13:54'),(8906,'currentaffairs','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:28:47','2020-04-29 14:28:47'),(8907,'crk','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 16:51:12','2020-04-29 16:51:12'),(8908,'mathematics','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:19:40','2020-04-29 17:19:40'),(8909,'biology','105.112.176.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:26:33','2020-04-29 18:09:50'),(8910,'commerce','105.112.176.237',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:29:23','2020-04-29 18:01:40'),(8911,'englishlit','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:42:30','2020-04-29 17:42:30'),(8912,'accounting','105.112.176.237',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:02:58','2020-04-29 18:02:58'),(8913,'biology','105.112.179.192',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:33:15','2020-04-29 19:16:31'),(8914,'currentaffairs','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:36:50','2020-04-29 18:36:50'),(8915,'economics','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:47:33','2020-04-29 18:47:33'),(8916,'physics','105.112.179.192',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:05:41','2020-04-29 19:30:14'),(8917,'englishlit','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:09:49','2020-04-29 19:09:49'),(8918,'mathematics','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:10:38','2020-04-29 19:10:38'),(8919,'commerce','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:41:21','2020-04-29 19:41:21'),(8920,'chemistry','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:58:11','2020-04-29 19:58:11'),(8921,'government','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:21:57','2020-04-29 20:21:57'),(8922,'commerce','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:18','2020-04-29 20:27:18'),(8923,'commerce','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:44','2020-04-29 20:27:44'),(8924,'english','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:28:17','2020-04-29 21:37:09'),(8925,'biology','105.112.24.82',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:47:45','2020-04-29 22:13:57'),(8926,'government','3.87.44.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:09:09','2020-04-29 21:09:09'),(8927,'accounting','105.112.24.82',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:11:05','2020-04-29 22:06:33'),(8928,'mathematics','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:43','2020-04-29 21:59:17'),(8929,'physics','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:54','2020-04-29 21:36:55'),(8930,'chemistry','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 22:39:32','2020-04-29 22:39:32'),(8931,'chemistry','54.36.148.219',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 23:51:25','2020-04-29 23:51:25'),(8932,'chemistry','54.36.148.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:02:17','2020-04-30 00:02:17'),(8933,'chemistry','54.36.148.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:13:27','2020-04-30 00:13:27'),(8934,'physics','3.95.148.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:16:11','2020-04-30 00:16:11'),(8935,'chemistry','54.36.148.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:24:14','2020-04-30 00:24:14'),(8936,'chemistry','54.36.148.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:57:32','2020-04-30 00:57:32'),(8937,'chemistry','54.36.148.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 01:26:38','2020-04-30 01:26:38'),(8938,'english','3.83.49.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 04:59:57','2020-04-30 04:59:57'),(8939,'physics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 11:48:10','2020-04-30 11:48:12'),(8940,'mathematics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:14:32','2020-04-30 12:14:35'),(8941,'accounting','3.90.113.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:48:25','2020-04-30 12:48:25'),(8942,'geography','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:50:57','2020-04-30 12:50:59'),(8943,'commerce','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:51:24','2020-04-30 12:51:26'),(8944,'physics','54.167.205.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 13:29:15','2020-04-30 13:29:15'),(8945,'insurance','54.160.135.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 16:43:16','2020-04-30 16:43:16'),(8946,'chemistry','157.55.39.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:40:23','2020-04-30 17:40:23'),(8947,'insurance','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:56:54','2020-04-30 17:59:10'),(8948,'currentaffairs','197.210.53.138',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:10','2020-04-30 18:08:22'),(8949,'economics','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:15','2020-04-30 17:59:31'),(8950,'geography','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:18','2020-04-30 18:00:52'),(8951,'english','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:22','2020-04-30 17:59:44'),(8952,'commerce','197.210.53.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:29','2020-04-30 17:57:31'),(8953,'physics','197.210.52.197',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:39','2020-04-30 18:01:14'),(8954,'history','197.210.53.151',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:53','2020-04-30 18:13:42'),(8955,'irk','197.210.53.138',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:58','2020-04-30 18:13:47'),(8956,'civiledu','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:01','2020-04-30 17:59:07'),(8957,'insurance','197.210.52.197',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:05','2020-04-30 17:58:07'),(8958,'government','197.210.53.151',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:16','2020-04-30 17:58:18'),(8959,'currentaffairs','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:20','2020-04-30 17:58:22'),(8960,'geography','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:28','2020-04-30 17:58:31'),(8961,'biology','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:43','2020-04-30 17:58:46'),(8962,'physics','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:47','2020-04-30 18:08:48'),(8963,'irk','197.210.52.31',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:01','2020-04-30 18:01:32'),(8964,'accounting','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:12','2020-04-30 17:59:14'),(8965,'englishlit','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:15','2020-04-30 18:12:52'),(8966,'government','197.210.52.67',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:19','2020-04-30 18:12:56'),(8967,'currentaffairs','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:23','2020-04-30 18:10:46'),(8968,'geography','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:37','2020-04-30 17:59:39'),(8969,'mathematics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:46','2020-04-30 18:01:00'),(8970,'commerce','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:51','2020-04-30 17:59:53'),(8971,'biology','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:56','2020-04-30 18:08:45'),(8972,'chemistry','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:07','2020-04-30 18:00:09'),(8973,'crk','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:11','2020-04-30 18:00:13'),(8974,'history','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:16','2020-04-30 18:11:26'),(8975,'irk','197.210.52.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:20','2020-04-30 18:00:21'),(8976,'civiledu','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:22','2020-04-30 18:00:25'),(8977,'insurance','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:26','2020-04-30 18:10:30'),(8978,'accounting','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:30','2020-04-30 18:10:34'),(8979,'englishlit','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:34','2020-04-30 18:10:38'),(8980,'government','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:38','2020-04-30 18:00:40'),(8981,'currentaffairs','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:42','2020-04-30 18:12:59'),(8982,'economics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:46','2020-04-30 18:13:04'),(8983,'english','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:54','2020-04-30 18:00:56'),(8984,'commerce','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:03','2020-04-30 18:13:19'),(8985,'biology','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:07','2020-04-30 18:11:09'),(8986,'chemistry','197.210.52.197',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:16','2020-04-30 18:13:31'),(8987,'crk','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:21','2020-04-30 18:01:23'),(8988,'civiledu','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:34','2020-04-30 18:01:36'),(8989,'insurance','197.210.52.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:05','2020-04-30 18:12:44'),(8990,'englishlit','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:12','2020-04-30 18:08:15'),(8991,'government','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:16','2020-04-30 18:08:18'),(8992,'economics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:24','2020-04-30 18:10:50'),(8993,'english','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:31','2020-04-30 18:08:33'),(8994,'chemistry','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:50','2020-04-30 18:08:52'),(8995,'history','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:56','2020-04-30 18:08:59'),(8996,'irk','197.210.52.197',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:00','2020-04-30 18:09:02'),(8997,'civiledu','197.210.53.138',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:03','2020-04-30 18:13:51'),(8998,'geography','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:52','2020-04-30 18:10:54'),(8999,'english','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:56','2020-04-30 18:10:58'),(9000,'mathematics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:59','2020-04-30 18:13:16'),(9001,'commerce','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:03','2020-04-30 18:11:05'),(9002,'physics','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:11','2020-04-30 18:11:14'),(9003,'crk','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:20','2020-04-30 18:11:22'),(9004,'irk','197.210.53.91',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:28','2020-04-30 18:11:29'),(9005,'civiledu','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:31','2020-04-30 18:11:33'),(9006,'accounting','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:12:46','2020-04-30 18:12:48'),(9007,'geography','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:05','2020-04-30 18:13:08'),(9008,'english','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:09','2020-04-30 18:13:12'),(9009,'biology','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:21','2020-04-30 18:13:23'),(9010,'physics','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:25','2020-04-30 18:13:28'),(9011,'chemistry','129.205.113.173',4,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:44:54','2020-04-30 18:51:44'),(9012,'chemistry','40.77.167.109',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 19:59:37','2020-04-30 19:59:37'),(9013,'chemistry','18.212.194.164',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 22:59:35','2020-04-30 22:59:35'),(9014,'mathematics','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:52:42','2020-04-30 23:52:43'),(9015,'chemistry','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:32','2020-04-30 23:58:33'),(9016,'biology','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:49','2020-04-30 23:58:50'),(9017,'physics','197.210.63.5',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9018,'mathematics','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9019,'chemistry','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9020,'english','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9021,'english','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9022,'accounting','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9023,'chemistry','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9024,'government','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9025,'economics','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:09'),(9026,'irk','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9027,'civiledu','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9028,'chemistry','54.152.163.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 06:38:44','2020-05-01 06:38:44'),(9029,'civiledu','54.85.192.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 07:42:44','2020-05-01 07:42:44'),(9030,'chemistry','50.66.43.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 08:44:35','2020-05-01 08:44:35'),(9031,'accounting','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:23:43','2020-05-01 09:23:45'),(9032,'biology','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:26:39','2020-05-01 09:26:41'),(9033,'chemistry','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:28:41','2020-05-01 09:28:43'),(9034,'commerce','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:31:07','2020-05-01 09:31:09'),(9035,'geography','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:32:07','2020-05-01 09:32:09'),(9036,'government','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:33:07','2020-05-01 09:33:09'),(9037,'englishlit','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:34:23','2020-05-01 09:34:25'),(9038,'english','3.92.79.199',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:35:10','2020-05-01 09:36:06'),(9039,'physics','54.197.3.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:32','2020-05-01 09:36:32'),(9040,'history','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:45','2020-05-01 09:36:47'),(9041,'physics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:37:23','2020-05-01 09:37:25'),(9042,'crk','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:02','2020-05-01 09:38:04'),(9043,'irk','3.92.79.199',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:36','2020-05-01 09:38:37'),(9044,'mathematics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:40:07','2020-05-01 09:40:09'),(9045,'civiledu','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:44:20','2020-05-01 09:44:22'),(9046,'insurance','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:45:12','2020-05-01 09:45:14'),(9047,'mathematics','18.212.127.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 10:27:34','2020-05-01 10:27:34'),(9048,'chemistry','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 11:53:35','2020-05-01 11:53:35'),(9049,'civiledu','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:07:15','2020-05-01 12:07:15'),(9050,'geography','35.171.18.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:48:39','2020-05-01 12:48:39'),(9051,'accounting','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 13:58:07','2020-05-01 15:50:39'),(9052,'english','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:12:28','2020-05-01 15:32:24'),(9053,'government','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:27:18','2020-05-01 15:42:41'),(9054,'geography','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:34:50','2020-05-01 14:34:50'),(9055,'irk','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:40:41','2020-05-01 15:22:36'),(9056,'economics','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:52:00','2020-05-01 15:03:28'),(9057,'chemistry','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:13:35','2020-05-01 15:13:35'),(9058,'civiledu','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:59:12','2020-05-01 15:59:12'),(9059,'physics','54.147.40.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 17:31:20','2020-05-01 17:31:20'),(9060,'englishlit','3.80.145.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:30:32','2020-05-01 18:30:32'),(9061,'geography','3.81.84.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:59:33','2020-05-01 18:59:33'),(9062,'mathematics','54.152.182.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 19:39:12','2020-05-01 19:39:12'),(9063,'currentaffairs','54.147.140.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 20:19:55','2020-05-01 20:46:03'),(9064,'mathematics','18.232.86.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 01:07:21','2020-05-02 01:07:21'),(9065,'physics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 02:21:54','2020-05-02 02:21:54'),(9066,'mathematics','54.159.74.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 05:28:06','2020-05-02 05:28:06'),(9067,'mathematics','3.95.199.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 11:49:15','2020-05-02 11:49:54'),(9068,'geography','54.160.152.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 12:51:05','2020-05-02 12:51:05'),(9069,'accounting','54.242.134.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 13:44:35','2020-05-02 13:44:35'),(9070,'civiledu','54.80.130.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 14:38:04','2020-05-02 14:38:04'),(9071,'insurance','34.227.221.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 16:37:38','2020-05-02 16:37:38'),(9072,'chemistry','34.226.155.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 17:58:23','2020-05-02 18:51:09'),(9073,'history','34.226.155.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 18:31:23','2020-05-02 18:31:23'),(9074,'mathematics','54.166.138.44',41,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-02 21:12:05','2020-05-03 16:51:28'),(9075,'english','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:19','2020-05-02 21:57:19'),(9076,'commerce','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9077,'physics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9078,'geography','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9079,'economics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9080,'civiledu','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9081,'insurance','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9082,'chemistry','3.83.147.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 22:48:32','2020-05-02 22:48:32'),(9083,'currentaffairs','107.21.76.29',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:19:42','2020-05-03 05:43:14'),(9084,'mathematics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:23:15','2020-05-03 05:35:39'),(9085,'commerce','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:24:10','2020-05-03 05:36:03'),(9086,'accounting','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:18','2020-05-03 05:36:47'),(9087,'biology','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:59','2020-05-03 05:37:26'),(9088,'physics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:26:47','2020-05-03 05:38:06'),(9089,'chemistry','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:27:25','2020-05-03 05:38:29'),(9090,'englishlit','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:16','2020-05-03 05:38:53'),(9091,'government','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:51','2020-05-03 05:39:37'),(9092,'crk','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:29:36','2020-05-03 05:40:00'),(9093,'geography','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:30:23','2020-05-03 05:40:40'),(9094,'economics','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:07','2020-05-03 05:41:19'),(9095,'irk','107.21.76.29',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:39','2020-05-03 05:41:43'),(9096,'civiledu','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:32:21','2020-05-03 05:42:07'),(9097,'insurance','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:33:00','2020-05-03 05:42:48'),(9098,'history','107.21.76.29',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:34:12','2020-05-03 05:44:29'),(9099,'english','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:17'),(9100,'mathematics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:16'),(9101,'commerce','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9102,'biology','3.83.109.40',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9103,'englishlit','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9104,'accounting','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9105,'crk','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9106,'currentaffairs','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9107,'physics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9108,'economics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9109,'history','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9110,'government','3.83.55.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:34:46','2020-05-03 09:34:46'),(9111,'economics','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9112,'english','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:36'),(9113,'commerce','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9114,'accounting','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9115,'geography','54.235.52.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 11:00:21','2020-05-03 11:00:21'),(9116,'commerce','54.146.7.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 12:56:31','2020-05-03 12:56:31'),(9117,'economics','54.91.125.121',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 15:12:25','2020-05-03 15:12:25'),(9118,'mathematics','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:18:04','2020-05-03 16:18:04'),(9119,'englishlit','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:19:28','2020-05-03 16:19:28'),(9120,'commerce','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:02','2020-05-03 16:52:05'),(9121,'accounting','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:26','2020-05-03 16:52:28'),(9122,'biology','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:51','2020-05-03 16:52:53'),(9123,'physics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:53:34','2020-05-03 16:53:36'),(9124,'chemistry','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:00','2020-05-03 16:54:02'),(9125,'englishlit','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:48','2020-05-03 16:54:51'),(9126,'government','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:55:31','2020-05-03 16:55:34'),(9127,'crk','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:56:11','2020-05-03 16:56:13'),(9128,'geography','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:04','2020-05-03 16:57:06'),(9129,'economics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:24','2020-05-03 16:57:26'),(9130,'irk','54.166.138.44',30,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:51','2020-05-03 16:57:53'),(9131,'civiledu','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:17','2020-05-03 16:58:19'),(9132,'insurance','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:58','2020-05-03 16:59:00'),(9133,'currentaffairs','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:59:20','2020-05-03 16:59:22'),(9134,'history','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:00:11','2020-05-03 17:50:17'),(9135,'mathematics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:10','2020-05-03 17:43:43'),(9136,'commerce','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:38','2020-05-03 17:44:06'),(9137,'accounting','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:04','2020-05-03 17:44:35'),(9138,'biology','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:28','2020-05-03 17:44:59'),(9139,'physics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:59','2020-05-03 17:45:22'),(9140,'chemistry','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:03:27','2020-05-03 17:45:51'),(9141,'englishlit','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:02','2020-05-03 17:46:17'),(9142,'crk','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:28','2020-05-03 17:47:18'),(9143,'government','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:57','2020-05-03 17:46:53'),(9144,'geography','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:27','2020-05-03 17:47:43'),(9145,'economics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:55','2020-05-03 17:48:08'),(9146,'irk','3.95.205.237',180,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:29','2020-05-03 17:48:30'),(9147,'civiledu','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:57','2020-05-03 17:48:54'),(9148,'insurance','3.95.205.237',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:23','2020-05-03 17:49:18'),(9149,'currentaffairs','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:55','2020-05-03 17:49:38'),(9150,'insurance','18.234.85.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:51:52','2020-05-03 17:51:52'),(9151,'chemistry','54.81.105.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 19:38:19','2020-05-03 19:38:19'),(9152,'civiledu','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:43:29','2020-05-03 19:43:29'),(9153,'englishlit','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:54:13','2020-05-03 19:54:13'),(9154,'chemistry','105.112.115.225',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 20:27:24','2020-05-03 20:27:24'),(9155,'crk','34.233.133.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 21:37:40','2020-05-03 21:37:40'),(9156,'english','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 23:39:58','2020-05-03 23:39:58'),(9157,'crk','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 00:00:14','2020-05-04 00:00:14'),(9158,'english','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9159,'english','34.201.133.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9160,'physics','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9161,'accounting','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9162,'englishlit','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9163,'geography','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9164,'government','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9165,'economics','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9166,'civiledu','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9167,'irk','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9168,'insurance','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9169,'crk','54.146.129.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 04:53:02','2020-05-04 04:53:02'),(9170,'biology','54.82.169.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 05:39:54','2020-05-04 05:39:54'),(9171,'government','18.212.134.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 07:54:46','2020-05-04 07:54:46'),(9172,'chemistry','41.190.3.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 08:37:26','2020-05-04 08:37:29'),(9173,'chemistry','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:07:07','2020-05-04 09:07:07'),(9174,'economics','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:24:40','2020-05-04 09:24:40'),(9175,'mathematics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:05:23','2020-05-04 10:16:55'),(9176,'commerce','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:06:28','2020-05-04 10:17:26'),(9177,'accounting','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:07:00','2020-05-04 10:18:01'),(9178,'biology','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:17','2020-05-04 10:18:33'),(9179,'physics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:52','2020-05-04 10:18:59'),(9180,'chemistry','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:09:47','2020-05-04 10:19:29'),(9181,'chemistry','197.211.53.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:17','2020-05-04 10:10:17'),(9182,'englishlit','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:27','2020-05-04 10:20:35'),(9183,'government','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:11','2020-05-04 10:21:10'),(9184,'crk','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:46','2020-05-04 10:21:49'),(9185,'economics','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:14','2020-05-04 10:22:21'),(9186,'geography','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:42','2020-05-04 10:22:44'),(9187,'irk','54.226.73.173',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:13:40','2020-05-04 10:23:05'),(9188,'civiledu','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:14:36','2020-05-04 10:24:07'),(9189,'insurance','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:05','2020-05-04 10:24:41'),(9190,'currentaffairs','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:37','2020-05-04 10:25:21'),(9191,'history','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:16:05','2020-05-04 10:25:43'),(9192,'physics','34.230.85.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 11:44:10','2020-05-04 11:44:10'),(9193,'englishlit','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 12:53:41','2020-05-04 12:53:41'),(9194,'currentaffairs','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 13:03:08','2020-05-04 13:03:08'),(9195,'english','54.91.147.136',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 13:59:39','2020-05-04 14:10:23'),(9196,'crk','54.167.221.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 16:21:35','2020-05-04 16:21:35'),(9197,'mathematics','34.227.100.151',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 18:01:31','2020-05-04 18:53:32'),(9198,'commerce','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:06','2020-05-04 18:53:59'),(9199,'accounting','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:40','2020-05-04 18:54:21'),(9200,'biology','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:08','2020-05-04 18:54:50'),(9201,'physics','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:52','2020-05-04 18:48:01'),(9202,'chemistry','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:22','2020-05-04 18:55:24'),(9203,'englishlit','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:55','2020-05-04 18:55:50'),(9204,'government','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:06:25','2020-05-04 18:56:46'),(9205,'irk','34.227.100.151',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:05','2020-05-04 18:58:12'),(9206,'geography','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:32','2020-05-04 18:57:53'),(9207,'economics','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:56','2020-05-04 18:57:27'),(9208,'crk','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:08:29','2020-05-04 18:57:05'),(9209,'civiledu','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:22','2020-05-04 18:58:33'),(9210,'insurance','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:52','2020-05-04 18:59:01'),(9211,'currentaffairs','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:10:36','2020-05-04 18:59:20'),(9212,'history','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:11:01','2020-05-04 18:59:44'),(9213,'englishlit','54.91.12.60',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:19:14','2020-05-04 18:19:14'),(9214,'english','34.227.100.151',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:41:22','2020-05-04 18:56:16'),(9215,'chemistry','77.88.5.170',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:43:38','2020-05-04 18:43:38'),(9216,'chemistry','54.90.243.173',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 19:36:36','2020-05-04 19:36:36'),(9217,'economics','18.208.245.55',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 20:24:40','2020-05-04 20:24:40'),(9218,'government','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:34:09','2020-05-04 22:34:09'),(9219,'crk','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:56:00','2020-05-04 22:56:00'),(9220,'english','34.230.41.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 01:39:36','2020-05-05 01:39:36'),(9221,'english','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9222,'biology','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9223,'chemistry','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9224,'government','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9225,'irk','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:53'),(9226,'civiledu','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9227,'insurance','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9228,'currentaffairs','54.82.122.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 15:55:27','2020-05-05 15:55:27'),(9229,'currentaffairs','35.171.182.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 17:52:25','2020-05-05 17:52:25'),(9230,'civiledu','54.162.194.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:44:31','2020-05-05 18:44:31'),(9231,'chemistry','105.112.22.22',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:54:47','2020-05-05 18:55:46'),(9232,'economics','3.81.61.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 20:23:57','2020-05-05 20:23:57'),(9233,'civiledu','34.229.1.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:13:48','2020-05-05 21:13:48'),(9234,'english','35.175.224.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:50:44','2020-05-05 21:50:44'),(9235,'english','66.249.64.72',7,'',NULL,'',NULL,NULL,NULL,'','','2020-05-05 22:53:19','2020-05-05 22:53:19'),(9236,'accounting','3.89.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 23:06:38','2020-05-05 23:06:38'),(9237,'biology','66.249.64.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 04:40:45','2020-05-06 04:40:46'),(9238,'biology','3.82.138.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 11:39:57','2020-05-06 11:39:57'),(9239,'government','54.159.33.148',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 15:34:04','2020-05-06 15:34:04'),(9240,'chemistry','54.36.149.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:24:22','2020-05-06 16:24:22'),(9241,'chemistry','54.36.148.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:28:45','2020-05-06 16:28:45'),(9242,'chemistry','54.36.149.15',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:32:20','2020-05-06 16:32:20'),(9243,'chemistry','105.112.52.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 17:44:03','2020-05-06 17:44:03'),(9244,'government','35.153.179.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:00:30','2020-05-06 18:00:30'),(9245,'crk','107.22.153.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:46:09','2020-05-06 18:46:09'),(9246,'insurance','52.207.168.128',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 20:37:45','2020-05-06 20:37:45'),(9247,'crk','54.152.178.63',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 22:54:07','2020-05-06 22:54:07'),(9248,'chemistry','102.89.2.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 23:18:18','2020-05-06 23:18:18'),(9249,'english','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9250,'commerce','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9251,'chemistry','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9252,'government','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9253,'irk','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9254,'civiledu','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9255,'insurance','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:11'),(9256,'chemistry','197.210.46.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:09:52','2020-05-25 11:09:52'),(9257,'chemistry','197.210.198.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:16:21','2020-05-25 11:16:21'),(9258,'chemistry','197.210.53.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:23:10','2020-05-25 11:23:15'),(9259,'chemistry','157.55.39.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:55:56','2020-05-25 11:55:56'),(9260,'commerce','3.94.205.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:06:49','2020-05-25 12:06:49'),(9261,'economics','54.226.128.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:53:03','2020-05-25 12:53:03'),(9262,'crk','54.91.154.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 14:42:35','2020-05-25 14:42:35'),(9263,'mathematics','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:28:22','2020-05-25 15:28:22'),(9264,'chemistry','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:33:33','2020-05-25 15:33:33'),(9265,'economics','54.91.243.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 17:58:39','2020-05-25 17:58:39'),(9266,'mathematics','66.249.66.136',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:15:02','2020-05-25 19:15:05'),(9267,'chemistry','15.236.101.59',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:49:10','2020-05-25 19:51:59'),(9268,'government','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:08:24','2020-05-25 21:08:24'),(9269,'chemistry','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:16:46','2020-05-25 21:16:46'),(9270,'chemistry','197.210.70.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:21:23','2020-05-25 22:21:23'),(9271,'geography','18.212.164.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:31:38','2020-05-25 22:31:38'),(9272,'government','54.81.15.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 23:48:45','2020-05-25 23:48:45'),(9273,'commerce','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 00:35:21','2020-05-26 00:35:21'),(9274,'economics','34.203.224.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 01:14:02','2020-05-26 01:14:02'),(9275,'crk','18.232.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 02:43:23','2020-05-26 02:43:23'),(9276,'insurance','18.212.41.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 04:09:34','2020-05-26 04:09:34'),(9277,'englishlit','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 06:53:11','2020-05-26 06:53:11'),(9278,'chemistry','41.190.31.41',122,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:00:17','2020-05-26 07:07:55'),(9279,'irk','41.190.31.41',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:09:11','2020-05-26 07:09:13'),(9280,'english','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:27','2020-05-26 07:19:27'),(9281,'english','41.190.31.41',839,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:30','2020-05-26 10:55:38'),(9282,'civiledu','54.159.94.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:11:23','2020-05-26 08:11:23'),(9283,'chemistry','105.112.24.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:25:30','2020-05-26 08:25:30'),(9284,'crk','3.87.153.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 09:29:02','2020-05-26 09:29:02'),(9285,'crk','52.90.24.192',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 11:46:19','2020-05-26 11:46:19'),(9286,'physics','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 21:42:14','2020-05-26 21:42:14'),(9287,'english','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:01:46','2020-05-26 22:01:46'),(9288,'chemistry','197.210.84.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:06:54','2020-05-26 22:09:09'),(9289,'currentaffairs','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:28:46','2020-05-26 23:28:46'),(9290,'englishlit','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:33:46','2020-05-26 23:33:46'),(9291,'englishlit','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 02:53:40','2020-05-27 02:53:40'),(9292,'economics','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 03:19:57','2020-05-27 03:19:57'),(9293,'chemistry','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:08:27','2020-05-27 04:08:27'),(9294,'crk','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:26:11','2020-05-27 04:26:11'),(9295,'insurance','18.209.13.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 05:07:33','2020-05-27 05:07:33'),(9296,'government','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:46:52','2020-05-27 06:46:52'),(9297,'crk','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:59:51','2020-05-27 06:59:51'),(9298,'geography','34.201.141.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 08:25:36','2020-05-27 08:25:36'),(9299,'english','3.84.219.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 10:53:47','2020-05-27 10:53:47'),(9300,'chemistry','169.255.236.30',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:14:45','2020-05-27 11:16:08'),(9301,'chemistry','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:29:07','2020-05-27 12:32:12'),(9302,'physics','41.190.30.150',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:34:30','2020-05-27 12:20:54'),(9303,'economics','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:37:24','2020-05-27 12:37:24'),(9304,'government','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:40:47','2020-05-27 12:23:05'),(9305,'biology','41.190.30.150',79,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:43:55','2020-05-27 12:19:37'),(9306,'biology','34.228.70.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:47:18','2020-05-27 11:47:18'),(9307,'mathematics','41.190.30.150',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:48:42','2020-05-27 12:17:48'),(9308,'english','41.190.30.150',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:50:16','2020-05-27 12:13:47'),(9309,'geography','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:53:34','2020-05-27 12:15:29'),(9310,'history','41.190.30.150',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:57:18','2020-05-27 11:57:22'),(9311,'englishlit','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 12:01:50','2020-05-27 12:07:14'),(9312,'chemistry','34.204.193.85',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 15:13:53','2020-05-27 15:45:24'),(9313,'currentaffairs','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:35:28','2020-05-27 17:35:28'),(9314,'civiledu','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:48:39','2020-05-27 17:48:39'),(9315,'chemistry','41.190.14.68',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:10','2020-05-27 17:54:19'),(9316,'english','41.190.14.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:32','2020-05-27 17:51:35'),(9317,'english','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:17:07','2020-05-27 20:17:07'),(9318,'chemistry','94.130.16.50',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:08','2020-05-27 20:36:12'),(9319,'biology','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:43','2020-05-27 20:33:43'),(9320,'accounting','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:51:21','2020-05-27 20:51:21'),(9321,'chemistry','154.66.36.151',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:46:00','2020-05-27 22:52:44'),(9322,'english','154.66.36.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:48:02','2020-05-27 22:48:02'),(9323,'chemistry','105.112.70.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 23:32:12','2020-05-27 23:32:12'),(9324,'chemistry','157.55.39.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 03:31:42','2020-05-28 03:31:42'),(9325,'english','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:40','2020-05-28 04:32:41'),(9326,'mathematics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9327,'biology','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9328,'economics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9329,'irk','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9330,'insurance','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9331,'history','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9332,'chemistry','196.32.235.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:01:12','2020-05-28 05:01:12'),(9333,'chemistry','129.205.112.224',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:51:40','2020-05-28 05:53:11'),(9334,'mathematics','129.205.112.224',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:55:48','2020-05-28 05:59:02'),(9335,'chemistry','82.145.210.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:57:23','2020-05-28 05:57:23'),(9336,'chemistry','185.26.180.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 07:18:49','2020-05-28 07:18:49'),(9337,'geography','54.196.45.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:04:20','2020-05-28 09:04:20'),(9338,'chemistry','197.210.226.225',105,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:25:44','2020-05-28 10:24:13'),(9339,'chemistry','197.210.226.44',55,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:27:16','2020-05-28 10:22:52'),(9340,'chemistry','197.210.227.211',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:30:21','2020-05-28 10:21:54'),(9341,'english','197.210.227.211',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:54:07','2020-05-28 09:54:10'),(9342,'english','197.210.226.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:55:01','2020-05-28 09:55:04'),(9343,'english','197.210.226.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 10:03:53','2020-05-28 10:09:18'),(9344,'physics','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:10:25','2020-05-28 13:10:25'),(9345,'chemistry','197.210.44.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:26:05','2020-05-28 13:26:05'),(9346,'government','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:29:47','2020-05-28 13:29:47'),(9347,'chemistry','197.210.52.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:54:51','2020-05-28 14:08:36'),(9348,'chemistry','197.210.52.59',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:57:55','2020-05-28 13:57:55'),(9349,'chemistry','197.210.52.25',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:58:05','2020-05-28 13:58:13'),(9350,'chemistry','197.210.52.232',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:06:52','2020-05-28 14:06:55'),(9351,'chemistry','197.210.53.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:08:55','2020-05-28 14:53:41'),(9352,'chemistry','197.210.52.82',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:19:48','2020-05-28 14:54:31'),(9353,'chemistry','197.210.53.190',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:14','2020-05-28 14:53:55'),(9354,'insurance','197.210.53.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:51','2020-05-28 14:49:51'),(9355,'physics','197.210.53.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:50:15','2020-05-28 14:50:15'),(9356,'mathematics','197.210.53.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:51:48','2020-05-28 14:52:01'),(9357,'mathematics','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:34','2020-05-28 14:52:34'),(9358,'english','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:52','2020-05-28 14:52:52'),(9359,'english','197.210.52.82',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:07','2020-05-28 14:53:16'),(9360,'chemistry','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:33','2020-05-28 14:53:33'),(9361,'insurance','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:20:04','2020-05-28 15:20:04'),(9362,'chemistry','129.205.112.208',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:37:00','2020-05-28 15:38:41'),(9363,'crk','18.208.110.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:19:54','2020-05-28 17:19:54'),(9364,'chemistry','129.56.80.227',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:42:36','2020-05-28 17:57:17'),(9365,'chemistry','197.210.226.198',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 18:07:17','2020-05-28 19:14:47'),(9366,'chemistry','197.210.226.91',1562,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:09:38','2020-05-28 20:03:58'),(9367,'chemistry','197.210.226.220',2081,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:11:37','2020-05-28 20:03:48'),(9368,'english','197.210.226.220',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:05:42','2020-05-28 20:15:39'),(9369,'english','197.210.226.91',1080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:06:07','2020-05-28 20:15:26'),(9370,'english','197.210.226.198',2840,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:07:48','2020-05-28 20:15:35'),(9371,'mathematics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:07','2020-05-28 20:23:22'),(9372,'mathematics','197.210.226.91',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:15','2020-05-28 20:25:33'),(9373,'biology','197.210.226.198',1480,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:01','2020-05-28 20:41:32'),(9374,'biology','197.210.226.91',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:14','2020-05-28 20:41:25'),(9375,'civiledu','197.210.226.198',1960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:42:54','2020-05-28 21:07:50'),(9376,'civiledu','197.210.226.91',1560,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:43:16','2020-05-28 21:09:58'),(9377,'civiledu','197.210.226.220',1320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:45:38','2020-05-28 21:10:08'),(9378,'physics','197.210.226.220',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:19','2020-05-28 20:49:51'),(9379,'physics','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:27','2020-05-28 20:49:39'),(9380,'government','197.210.226.91',1400,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:05','2020-05-28 20:57:45'),(9381,'government','197.210.226.220',960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:12','2020-05-28 20:57:41'),(9382,'government','197.210.226.198',1680,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:52:42','2020-05-28 20:56:48'),(9383,'insurance','197.210.226.91',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:58:57','2020-05-28 21:03:46'),(9384,'insurance','197.210.226.220',1360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:59:01','2020-05-28 21:03:58'),(9385,'history','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:48','2020-05-28 21:02:54'),(9386,'history','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:53','2020-05-28 21:02:49'),(9387,'geography','197.210.226.91',760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:05:51','2020-05-28 21:08:55'),(9388,'geography','197.210.226.198',640,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:06:05','2020-05-28 21:07:54'),(9389,'geography','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:07:55','2020-05-28 21:08:51'),(9390,'economics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:09:59','2020-05-28 21:15:23'),(9391,'economics','197.210.226.91',1160,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:15','2020-05-28 21:15:30'),(9392,'economics','197.210.226.198',1720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:42','2020-05-28 21:15:34'),(9393,'commerce','197.210.226.91',1760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:15','2020-05-28 21:17:42'),(9394,'commerce','197.210.226.198',2080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:19','2020-05-28 21:17:46'),(9395,'commerce','197.210.226.220',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:14:56','2020-05-28 21:15:26'),(9396,'geography','3.82.229.138',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 22:59:25','2020-05-28 22:59:25'),(9397,'chemistry','54.36.148.3',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 23:37:10','2020-05-28 23:37:10'),(9398,'chemistry','54.36.148.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:24:10','2020-05-29 00:24:10'),(9399,'chemistry','54.36.148.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:31:09','2020-05-29 00:31:09'),(9400,'geography','54.164.65.241',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:26:22','2020-05-29 01:59:55'),(9401,'economics','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:34:57','2020-05-29 01:34:57'),(9402,'english','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 02:28:56','2020-05-29 02:28:56'),(9403,'mathematics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9404,'biology','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9405,'government','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9406,'geography','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9407,'economics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9408,'currentaffairs','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9409,'history','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9410,'geography','54.164.210.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:31:40','2020-05-29 08:31:40'),(9411,'chemistry','197.210.64.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:43:12','2020-05-29 21:25:53'),(9412,'physics','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:30:46','2020-05-29 09:30:46'),(9413,'englishlit','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:48:29','2020-05-29 09:48:29'),(9414,'biology','3.85.236.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:29:11','2020-05-29 11:29:11'),(9415,'chemistry','34.239.119.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:51:20','2020-05-29 11:51:20'),(9416,'chemistry','185.20.6.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:58:05','2020-05-29 11:58:05'),(9417,'currentaffairs','54.85.98.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 12:25:10','2020-05-29 12:25:10'),(9418,'physics','3.81.136.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 15:59:43','2020-05-29 15:59:43'),(9419,'mathematics','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 16:57:16','2020-05-29 16:57:16'),(9420,'geography','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 17:11:25','2020-05-29 17:11:25'),(9421,'geography','3.86.16.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:01:00','2020-05-29 19:01:00'),(9422,'mathematics','34.229.23.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:42:00','2020-05-29 19:42:00'),(9423,'government','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:04:38','2020-05-29 21:04:38'),(9424,'history','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:37:50','2020-05-29 21:37:50'),(9425,'mathematics','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:09:44','2020-05-29 23:09:44'),(9426,'accounting','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:39:35','2020-05-29 23:39:35'),(9427,'mathematics','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:47'),(9428,'commerce','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:48'),(9429,'accounting','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9430,'biology','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9431,'geography','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9432,'irk','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9433,'currentaffairs','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9434,'accounting','3.89.232.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 08:21:13','2020-05-30 08:21:13'),(9435,'biology','54.208.77.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 11:46:23','2020-05-30 11:46:23'),(9436,'chemistry','144.76.56.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 17:12:22','2020-05-30 17:12:22'),(9437,'accounting','3.94.91.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 18:38:25','2020-05-30 18:38:25'),(9438,'insurance','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 11:49:35','2020-06-01 11:49:35'),(9439,'economics','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 12:10:32','2020-06-01 12:10:32'),(9440,'english','54.159.64.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:04:44','2020-06-01 13:04:44'),(9441,'mathematics','52.2.222.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:49:07','2020-06-01 13:49:07'),(9442,'englishlit','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9443,'crk','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9444,'economics','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:42:44','2020-06-01 14:42:44'),(9445,'crk','54.174.23.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:33:34','2020-06-01 16:33:34'),(9446,'geography','54.174.23.76',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:19','2020-06-01 17:19:55'),(9447,'mathematics','54.174.23.76',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:29','2020-06-01 17:43:19'),(9448,'biology','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9449,'chemistry','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9450,'englishlit','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9451,'government','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9452,'economics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:55','2020-06-01 17:19:55'),(9453,'english','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:18','2020-06-01 17:43:18'),(9454,'accounting','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9455,'physics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9456,'insurance','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:20','2020-06-01 17:43:20'),(9457,'history','3.85.59.140',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 20:12:18','2020-06-01 20:33:55'),(9458,'physics','35.172.115.238',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 23:04:28','2020-06-01 23:04:28'),(9459,'english','54.209.246.16',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 01:03:57','2020-06-02 01:03:57'),(9460,'currentaffairs','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:01:14','2020-06-02 02:01:14'),(9461,'englishlit','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:06:10','2020-06-02 02:06:10'),(9462,'insurance','54.211.248.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 04:46:23','2020-06-02 04:46:23'),(9463,'crk','54.205.222.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 05:30:27','2020-06-02 05:30:27'),(9464,'economics','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:20:56','2020-06-02 06:20:56'),(9465,'chemistry','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:38:36','2020-06-02 06:38:36'),(9466,'englishlit','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 07:02:43','2020-06-02 07:02:43'),(9467,'government','54.196.8.56',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 08:34:31','2020-06-02 08:34:31'),(9468,'geography','54.86.69.81',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 10:40:11','2020-06-02 10:40:11'),(9469,'chemistry','41.190.12.59',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-02 10:55:51','2020-06-02 10:55:54'),(9470,'english','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 12:19:33','2020-06-02 12:19:33'),(9471,'economics','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 23:59:57','2020-06-02 23:59:57'),(9472,'currentaffairs','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 00:22:59','2020-06-03 00:22:59'),(9473,'civiledu','35.173.231.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 02:25:11','2020-06-03 02:25:11'),(9474,'english','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 04:48:53','2020-06-03 05:17:39'),(9475,'accounting','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9476,'government','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9477,'civiledu','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9478,'insurance','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9479,'currentaffairs','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:42'),(9480,'history','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9481,'biology','3.208.9.26',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:51:48','2020-06-03 05:51:48'),(9482,'accounting','3.81.96.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 06:39:27','2020-06-03 06:39:27'),(9483,'economics','34.228.56.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:19:49','2020-06-03 12:19:49'),(9484,'englishlit','34.228.56.210',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:47:48','2020-06-03 12:51:59'),(9485,'mathematics','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9486,'commerce','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9487,'accounting','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9488,'biology','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9489,'englishlit','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9490,'government','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9491,'crk','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9492,'geography','52.91.141.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 18:34:51','2020-06-03 18:34:51'),(9493,'mathematics','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:32','2020-06-03 19:33:45'),(9494,'commerce','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:54','2020-06-03 19:36:09'),(9495,'currentaffairs','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:05','2020-06-03 19:34:05'),(9496,'crk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:11','2020-06-03 19:35:12'),(9497,'chemistry','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:57','2020-06-03 19:36:15'),(9498,'irk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:26','2020-06-03 19:36:00'),(9499,'english','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:36','2020-06-03 19:35:36'),(9500,'englishlit','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:54:43','2020-06-03 19:54:43'),(9501,'government','54.85.212.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 21:33:59','2020-06-03 21:33:59'),(9502,'insurance','3.86.225.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 23:35:47','2020-06-03 23:35:47'),(9503,'crk','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 00:57:31','2020-06-04 00:57:31'),(9504,'physics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:23:50','2020-06-04 06:23:50'),(9505,'mathematics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:34:26','2020-06-04 06:34:26'),(9506,'geography','34.205.74.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 07:10:34','2020-06-04 07:10:34'),(9507,'economics','54.242.18.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 08:36:04','2020-06-04 08:36:04'),(9508,'geography','3.83.161.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:26:27','2020-06-04 10:53:11'),(9509,'english','3.83.161.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:49:32','2020-06-04 10:49:32'),(9510,'mathematics','54.91.240.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 12:15:58','2020-06-04 12:15:58'),(9511,'biology','3.87.239.123',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 15:09:53','2020-06-04 15:09:53'),(9512,'chemistry','41.190.12.5',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-04 15:57:02','2020-06-04 15:57:05'),(9513,'geography','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:22:59','2020-06-04 16:22:59'),(9514,'physics','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:23:13','2020-06-04 16:23:13'),(9515,'englishlit','3.94.109.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:58:33','2020-06-04 16:58:33'),(9516,'currentaffairs','54.159.111.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:11:39','2020-06-04 19:11:39'),(9517,'english','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:37:05','2020-06-04 19:37:08'),(9518,'mathematics','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:44:40','2020-06-04 19:51:52'),(9519,'biology','18.207.247.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:57:06','2020-06-04 19:57:06'),(9520,'physics','54.196.42.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 00:29:32','2020-06-05 00:29:32'),(9521,'geography','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 02:42:52','2020-06-05 02:42:52'),(9522,'government','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:47','2020-06-05 03:06:47'),(9523,'mathematics','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:51','2020-06-05 03:06:51'),(9524,'history','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 07:51:51','2020-06-05 07:51:51'),(9525,'accounting','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 08:06:02','2020-06-05 08:06:02'),(9526,'accounting','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:31','2020-06-05 15:31:38'),(9527,'crk','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:41','2020-06-05 15:31:44'),(9528,'accounting','54.160.137.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 17:41:28','2020-06-05 17:41:28'),(9529,'biology','18.205.22.3',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:49:31','2020-06-05 18:55:02'),(9530,'commerce','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:01','2020-06-05 18:55:02'),(9531,'accounting','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9532,'government','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9533,'economics','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9534,'insurance','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9535,'history','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9536,'history','52.91.27.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 23:09:41','2020-06-05 23:09:41'),(9537,'history','3.85.77.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 01:06:10','2020-06-06 01:06:10'),(9538,'accounting','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:12:01','2020-06-06 03:12:01'),(9539,'chemistry','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:28:00','2020-06-06 03:28:00'),(9540,'irk','3.91.16.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 05:27:37','2020-06-06 05:27:37'),(9541,'english','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9542,'physics','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9543,'englishlit','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9544,'government','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:40'),(9545,'economics','3.90.106.57',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 17:12:22'),(9546,'irk','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9547,'history','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9548,'commerce','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9549,'physics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9550,'chemistry','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9551,'crk','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9552,'economics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9553,'civiledu','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9554,'insurance','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9555,'insurance','52.207.159.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 15:54:55','2020-06-06 15:54:55'),(9556,'economics','52.70.110.33',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 18:01:25','2020-06-06 18:01:25'),(9557,'history','52.90.40.161',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 19:35:54','2020-06-06 20:01:45'),(9558,'accounting','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:44','2020-06-06 20:01:45'),(9559,'biology','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9560,'chemistry','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9561,'crk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9562,'irk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9563,'civiledu','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9564,'history','54.210.221.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 21:37:33','2020-06-06 21:37:33'),(9565,'economics','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:20:46','2020-06-07 00:20:46'),(9566,'englishlit','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:46:15','2020-06-07 00:46:15'),(9567,'english','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9568,'mathematics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9569,'physics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9570,'chemistry','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:16'),(9571,'government','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9572,'crk','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9573,'insurance','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9574,'irk','54.224.8.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 05:20:52','2020-06-07 05:20:52'),(9575,'commerce','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:08:43','2020-06-07 08:08:43'),(9576,'english','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:42:36','2020-06-07 08:42:36'),(9577,'crk','54.221.109.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 10:13:14','2020-06-07 10:13:14'),(9578,'economics','54.225.32.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:34:16','2020-06-07 12:34:16'),(9579,'english','52.72.124.107',400,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:53:32','2020-06-07 13:40:54'),(9580,'government','3.93.176.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 15:19:14','2020-06-07 15:19:14'),(9581,'chemistry','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:21:24','2020-06-07 17:21:24'),(9582,'economics','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:49:48','2020-06-07 17:49:48'),(9583,'government','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:52:13','2020-06-07 17:52:13'),(9584,'geography','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:53:52','2020-06-07 17:53:52'),(9585,'crk','105.112.176.254',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-07 19:15:46','2020-06-07 19:15:48'),(9586,'commerce','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:29:05','2020-06-07 21:29:05'),(9587,'english','54.90.107.82',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:36:38','2020-06-07 22:14:18'),(9588,'insurance','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:52:14','2020-06-07 21:52:14'),(9589,'english','54.83.121.94',680,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 23:24:33','2020-06-08 00:10:20'),(9590,'crk','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 00:57:41','2020-06-08 00:57:41'),(9591,'english','3.80.114.187',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:05:57','2020-06-08 01:07:20'),(9592,'civiledu','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:19:10','2020-06-08 01:19:10'),(9593,'englishlit','54.87.33.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 02:09:25','2020-06-08 02:09:25'),(9594,'english','54.196.250.109',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:14:09','2020-06-08 06:58:08'),(9595,'crk','3.80.171.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:47:50','2020-06-08 07:07:58'),(9596,'english','3.80.171.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:55:00','2020-06-08 06:55:00'),(9597,'english','54.167.101.91',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 13:03:52','2020-06-08 13:05:05'),(9598,'physics','3.95.171.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 15:20:45','2020-06-08 15:20:45'),(9599,'english','52.203.0.65',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 16:36:54','2020-06-08 16:36:54'),(9600,'english','34.201.76.45',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:10:20','2020-06-08 17:17:39'),(9601,'history','34.201.76.45',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:19:47','2020-06-08 17:19:50'),(9602,'englishlit','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:33:25','2020-06-08 17:33:25'),(9603,'currentaffairs','54.204.150.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:27:19','2020-06-08 18:27:19'),(9604,'history','3.87.156.54',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:58:06','2020-06-08 19:42:37'),(9605,'insurance','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:18:35','2020-06-08 20:18:35'),(9606,'crk','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:21:48','2020-06-08 20:21:48'),(9607,'englishlit','18.207.128.248',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:58:53','2020-06-08 20:58:53'),(9608,'chemistry','3.93.176.236',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 21:53:07','2020-06-08 21:53:07'),(9609,'economics','54.82.36.157',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 23:04:51','2020-06-08 23:04:51'),(9610,'government','54.86.240.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:01:33','2020-06-09 00:01:33'),(9611,'crk','3.85.86.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:37:54','2020-06-09 00:37:54'),(9612,'geography','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 02:38:55','2020-06-09 02:38:55'),(9613,'english','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:10:07','2020-06-09 03:10:07'),(9614,'history','3.83.163.75',680,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:12:41','2020-06-09 05:07:42'),(9615,'mathematics','3.83.163.75',320,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:02:16','2020-06-09 04:41:32'),(9616,'english','3.83.163.75',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:41:57','2020-06-09 05:07:46'),(9617,'history','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:33','2020-06-09 10:53:29'),(9618,'english','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:36','2020-06-09 10:53:32'),(9619,'mathematics','52.23.182.126',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 10:54:17','2020-06-09 11:12:18'),(9620,'mathematics','35.175.193.162',1596,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 14:27:00','2020-06-09 16:15:07'),(9621,'economics','54.204.126.52',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 15:24:33','2020-06-09 15:24:33'),(9622,'currentaffairs','54.91.74.154',3,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:21:57','2020-06-09 17:25:11'),(9623,'civiledu','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:24:52','2020-06-09 17:24:52'),(9624,'mathematics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9625,'government','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9626,'crk','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9627,'geography','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9628,'economics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:11'),(9629,'insurance','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:11','2020-06-09 17:25:11'),(9630,'history','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:06','2020-06-09 17:36:08'),(9631,'english','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:09','2020-06-09 17:36:12'),(9632,'history','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:51:30','2020-06-09 17:51:30'),(9633,'english','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 19:54:48','2020-06-09 19:54:48'),(9634,'economics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:09:36','2020-06-09 20:09:36'),(9635,'mathematics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:17:47','2020-06-09 20:17:47'),(9636,'biology','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:20:39','2020-06-09 20:20:39'),(9637,'accounting','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:32:25','2020-06-09 20:32:25'),(9638,'geography','54.175.242.92',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 22:47:17','2020-06-09 22:47:17'),(9639,'mathematics','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9640,'biology','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9641,'chemistry','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9642,'crk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9643,'geography','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:58'),(9644,'irk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9645,'insurance','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9646,'economics','3.94.91.40',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 06:49:53','2020-06-10 06:49:53'),(9647,'english','54.164.250.86',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 07:55:11','2020-06-10 07:55:14'),(9648,'biology','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:01','2020-06-10 10:14:17'),(9649,'english','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:04','2020-06-10 10:14:20'),(9650,'geography','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:43:01','2020-06-10 09:43:01'),(9651,'currentaffairs','34.228.169.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 10:40:47','2020-06-10 10:40:47'),(9652,'physics','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:41','2020-06-10 12:30:40'),(9653,'english','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:51','2020-06-10 12:30:44'),(9654,'physics','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:32:35','2020-06-10 12:32:35'),(9655,'government','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:52:28','2020-06-10 12:52:28'),(9656,'insurance','34.229.159.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 14:58:20','2020-06-10 14:58:20'),(9657,'mathematics','35.173.239.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 15:35:55','2020-06-10 15:35:55'),(9658,'crk','3.86.97.187',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 16:58:01','2020-06-10 16:58:01'),(9659,'history','34.229.88.249',470,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:16','2020-06-10 17:23:26'),(9660,'english','34.229.88.249',482,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:19','2020-06-10 17:23:29'),(9661,'history','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:02','2020-06-10 18:16:04'),(9662,'english','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:05','2020-06-10 18:16:08'),(9663,'mathematics','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:05:59','2020-06-10 22:05:59'),(9664,'geography','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:27:25','2020-06-10 22:27:25'),(9665,'geography','52.72.218.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:19:39','2020-06-11 01:19:39'),(9666,'english','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:59:15','2020-06-11 01:59:15'),(9667,'geography','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 02:27:07','2020-06-11 02:27:07'),(9668,'mathematics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:11:45','2020-06-11 03:11:45'),(9669,'englishlit','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:26:44','2020-06-11 03:26:44'),(9670,'economics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:33:39','2020-06-11 03:33:39'),(9671,'physics','54.237.231.196',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:12:05','2020-06-11 06:34:08'),(9672,'english','54.237.231.196',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:28:30','2020-06-11 06:34:10'),(9673,'geography','54.82.9.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 07:31:00','2020-06-11 07:31:00'),(9674,'physics','34.201.154.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 08:15:39','2020-06-11 08:15:39'),(9675,'englishlit','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:18:15','2020-06-11 09:18:15'),(9676,'currentaffairs','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:53:23','2020-06-11 09:53:23'),(9677,'geography','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 17:57:01','2020-06-11 17:57:01'),(9678,'chemistry','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:07:43','2020-06-11 18:07:43'),(9679,'government','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:18:55','2020-06-11 18:18:55'),(9680,'mathematics','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:29:47','2020-06-11 18:29:47'),(9681,'mathematics','34.204.107.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 20:09:41','2020-06-11 20:09:41'),(9682,'history','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:07:01','2020-06-11 21:07:01'),(9683,'accounting','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:15:15','2020-06-11 21:15:15'),(9684,'mathematics','54.81.240.233',280,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 06:45:16','2020-06-12 07:03:55'),(9685,'mathematics','54.162.119.234',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 07:52:29','2020-06-12 07:54:13'),(9686,'accounting','54.224.233.71',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 08:25:02','2020-06-12 08:25:02'),(9687,'mathematics','34.203.222.37',720,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-12 09:06:04','2020-06-12 09:50:04'),(9688,'mathematics','52.90.186.75',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:37:46','2020-06-12 10:44:14'),(9689,'biology','3.89.193.33',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:55:51','2020-06-12 10:55:51'),(9690,'englishlit','41.90.5.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:05:39','2020-06-12 13:05:41'),(9691,'history','54.236.252.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:33:09','2020-06-12 13:33:09'),(9692,'mathematics','3.81.215.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:39:44','2020-06-12 16:01:07'),(9693,'history','54.165.172.105',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:55:54','2020-06-12 15:55:54'),(9694,'accounting','3.86.93.233',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 17:29:11','2020-06-12 17:29:11'),(9695,'irk','3.208.21.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 20:36:13','2020-06-12 20:36:13'),(9696,'biology','54.152.97.16',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 22:32:45','2020-06-12 22:32:45'),(9697,'mathematics','54.226.209.23',800,'','US','','Virginia',NULL,NULL,'','','2020-06-12 23:38:09','2020-06-13 00:51:21'),(9698,'mathematics','52.91.175.68',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 01:40:43','2020-06-13 01:40:45'),(9699,'mathematics','54.152.163.102',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 02:16:58','2020-06-13 02:23:32'),(9700,'mathematics','54.163.49.62',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-13 06:48:30','2020-06-13 07:42:02'),(9701,'economics','3.80.186.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 07:05:55','2020-06-13 07:05:55'),(9702,'english','34.226.218.50',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:26:06','2020-06-13 08:33:08'),(9703,'insurance','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:28:58','2020-06-13 08:28:58'),(9704,'economics','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:55:48','2020-06-13 08:55:48'),(9705,'history','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 09:26:26','2020-06-13 09:26:26'),(9706,'history','34.235.159.175',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 11:48:21','2020-06-13 11:48:21'),(9707,'english','3.92.177.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 12:37:38','2020-06-13 12:37:38'),(9708,'englishlit','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:26:25','2020-06-13 14:26:25'),(9709,'economics','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:48:24','2020-06-13 14:48:24'),(9710,'irk','3.82.202.68',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 17:12:27','2020-06-13 17:12:27'),(9711,'mathematics','3.88.29.43',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 22:46:42','2020-06-13 22:46:45'),(9712,'english','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:02:32','2020-06-13 23:02:32'),(9713,'biology','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:10:31','2020-06-13 23:10:31'),(9714,'commerce','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:11:36','2020-06-13 23:11:36'),(9715,'crk','18.212.212.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 00:37:04','2020-06-14 00:37:04'),(9716,'economics','54.144.12.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 03:33:29','2020-06-14 03:33:29'),(9717,'government','18.215.251.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 05:40:04','2020-06-14 05:40:04'),(9718,'chemistry','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 06:42:21','2020-06-14 06:42:21'),(9719,'economics','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:03:38','2020-06-14 08:03:38'),(9720,'geography','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:07:21','2020-06-14 08:07:21'),(9721,'commerce','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:44:47','2020-06-14 08:44:47'),(9722,'biology','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:49:18','2020-06-14 08:49:18'),(9723,'insurance','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 11:39:05','2020-06-14 11:39:05'),(9724,'crk','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 12:49:53','2020-06-14 12:49:53'),(9725,'government','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 13:52:33','2020-06-14 13:52:33'),(9726,'civiledu','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:41:47','2020-06-14 15:41:47'),(9727,'english','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:45:01','2020-06-14 15:45:01'),(9728,'englishlit','34.207.148.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 16:28:31','2020-06-14 16:28:31'),(9729,'chemistry','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:15:57','2020-06-14 22:15:57'),(9730,'crk','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:29:17','2020-06-14 22:29:17'),(9731,'history','54.83.174.162',560,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:21','2020-06-15 02:23:52'),(9732,'english','54.83.174.162',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:28','2020-06-15 02:23:55'),(9733,'english','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:12:28','2020-06-15 06:12:28'),(9734,'englishlit','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:21:57','2020-06-15 06:21:57'),(9735,'currentaffairs','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:11:29','2020-06-15 08:11:29'),(9736,'physics','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:22:03','2020-06-15 08:22:03'),(9737,'crk','18.212.75.232',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 09:01:28','2020-06-15 09:01:28'),(9738,'englishlit','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:24:36','2020-06-15 10:24:36'),(9739,'insurance','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:29:58','2020-06-15 10:29:58'),(9740,'chemistry','54.172.215.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:11:58','2020-06-15 12:11:58'),(9741,'history','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:21:57','2020-06-15 12:23:22'),(9742,'english','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:22:00','2020-06-15 12:23:25'),(9743,'economics','184.73.145.115',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 13:15:25','2020-06-15 13:15:25'),(9744,'government','54.84.68.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 14:07:49','2020-06-15 14:07:49'),(9745,'crk','34.239.49.32',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 15:22:17','2020-06-15 15:22:17'),(9746,'english','54.242.223.207',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 16:33:06','2020-06-15 16:33:06'),(9747,'geography','54.242.223.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 16:43:55','2020-06-15 16:43:55'),(9748,'englishlit','41.80.97.78',40,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-06-16 02:45:58','2020-06-16 02:46:01'),(9749,'history','54.172.25.21',1840,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:41','2020-06-16 07:01:25'),(9750,'english','54.172.25.21',2080,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:44','2020-06-16 07:11:56'),(9751,'economics','3.82.194.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 04:52:57','2020-06-16 04:52:57'),(9752,'currentaffairs','52.54.215.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-16 05:58:53','2020-06-16 05:58:53'),(9753,'civiledu','34.205.23.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 07:14:44','2020-06-16 07:14:44'),(9754,'english','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 09:59:20','2020-06-16 09:59:20'),(9755,'history','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:29','2020-06-16 10:27:07'),(9756,'english','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:32','2020-06-16 10:27:10'),(9757,'accounting','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:15:35','2020-06-16 10:15:35'),(9758,'biology','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:36:24','2020-06-16 10:36:24'),(9759,'physics','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:16:12','2020-06-16 13:22:05'),(9760,'english','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:17:24','2020-06-16 13:22:09'),(9761,'history','34.224.165.104',480,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:48','2020-06-16 15:44:51'),(9762,'english','34.224.165.104',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:51','2020-06-16 15:44:55'),(9763,'history','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:39','2020-06-16 18:19:42'),(9764,'english','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:44','2020-06-16 18:19:45'),(9765,'english','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:30'),(9766,'accounting','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:31'),(9767,'biology','18.205.237.24',2,'','US','','Virginia',NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9768,'physics','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9769,'government','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9770,'currentaffairs','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9771,'history','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9772,'geography','54.92.200.132',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 22:39:24','2020-06-16 22:39:24'),(9773,'physics','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 01:48:53','2020-06-17 01:48:53'),(9774,'government','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 02:03:54','2020-06-17 02:03:54'),(9775,'englishlit','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:26:11','2020-06-17 03:26:11'),(9776,'insurance','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:55:22','2020-06-17 03:55:22'),(9777,'biology','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:51','2020-06-17 05:30:54'),(9778,'english','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:54','2020-06-17 05:30:56'),(9779,'english','3.90.249.44',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 09:46:18','2020-06-17 09:46:55'),(9780,'chemistry','105.112.87.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-17 09:58:18','2020-06-17 09:58:20'),(9781,'chemistry','66.249.88.14',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-06-17 09:59:01','2020-06-17 09:59:04'),(9782,'mathematics','3.88.138.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 10:39:06','2020-06-17 10:39:06'),(9783,'geography','34.229.135.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:18:07','2020-06-17 11:18:07'),(9784,'economics','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:30','2020-06-17 11:34:32'),(9785,'english','35.174.4.0',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:32','2020-06-17 12:40:24'),(9786,'commerce','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:38:34','2020-06-17 12:38:36'),(9787,'history','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:40:18','2020-06-17 12:40:21'),(9788,'economics','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:13:12','2020-06-17 14:13:12'),(9789,'geography','18.205.18.35',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:36:52','2020-06-17 14:55:05'),(9790,'english','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 15:17:53','2020-06-17 15:17:53'),(9791,'english','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:50','2020-06-17 20:31:50'),(9792,'mathematics','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9793,'biology','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9794,'physics','54.161.200.177',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 21:32:59'),(9795,'chemistry','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9796,'irk','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9797,'civiledu','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9798,'geography','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:59:12','2020-06-17 20:59:12'),(9799,'englishlit','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 22:04:38','2020-06-17 22:04:38'),(9800,'biology','3.80.178.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 23:41:46','2020-06-17 23:41:46'),(9801,'currentaffairs','18.234.191.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 00:56:37','2020-06-18 00:56:37'),(9802,'physics','34.228.64.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 03:47:00','2020-06-18 03:47:00'),(9803,'mathematics','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:16:20','2020-06-18 06:16:20'),(9804,'geography','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:41:02','2020-06-18 06:41:02'),(9805,'mathematics','34.230.69.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 07:24:35','2020-06-18 07:24:35'),(9806,'government','23.20.220.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:17:08','2020-06-18 08:17:08'),(9807,'commerce','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:15','2020-06-18 08:57:15'),(9808,'accounting','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9809,'englishlit','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9810,'geography','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9811,'economics','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9812,'insurance','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9813,'history','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9814,'history','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 09:42:52','2020-06-18 09:42:52'),(9815,'mathematics','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:15:46','2020-06-18 10:15:46'),(9816,'accounting','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:16:19','2020-06-18 10:16:19'),(9817,'accounting','54.210.194.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 22:40:17','2020-06-18 22:40:17'),(9818,'biology','3.80.246.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 23:21:08','2020-06-18 23:21:08'),(9819,'history','54.83.113.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 02:45:33','2020-06-19 02:45:33'),(9820,'accounting','52.90.48.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 06:38:29','2020-06-19 06:38:29'),(9821,'irk','52.201.246.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 08:58:17','2020-06-19 08:58:17'),(9822,'economics','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:17:42','2020-06-19 21:17:42'),(9823,'insurance','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:35:24','2020-06-19 21:35:24'),(9824,'economics','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:10:39','2020-06-19 23:10:39'),(9825,'history','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:30:20','2020-06-19 23:30:20'),(9826,'economics','54.196.106.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 02:31:48','2020-06-20 02:31:48'),(9827,'englishlit','18.233.155.89',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 04:55:13','2020-06-20 04:55:13'),(9828,'history','52.91.173.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 06:51:56','2020-06-20 06:51:56'),(9829,'irk','52.203.62.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 09:34:33','2020-06-20 09:34:33'),(9830,'english','54.87.80.5',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:00:50','2020-06-20 12:00:50'),(9831,'commerce','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:48:20','2020-06-20 13:11:36'),(9832,'mathematics','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:36'),(9833,'biology','54.165.162.104',37,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:12:18'),(9834,'englishlit','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:28'),(9835,'crk','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:33:04'),(9836,'economics','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:17'),(9837,'irk','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:58'),(9838,'civiledu','54.165.162.104',23,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:25'),(9839,'english','54.165.162.104',22,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:11:35'),(9840,'accounting','54.165.162.104',25,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9841,'government','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9842,'insurance','54.165.162.104',14,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:10:29'),(9843,'currentaffairs','54.165.162.104',26,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:12:18'),(9844,'geography','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:42','2020-06-20 13:11:16'),(9845,'physics','54.165.162.104',32,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:46','2020-06-20 13:12:18'),(9846,'history','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:57','2020-06-20 13:12:19'),(9847,'chemistry','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:07:22','2020-06-20 13:10:58'),(9848,'economics','54.145.114.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 16:22:38','2020-06-20 16:22:38'),(9849,'government','18.207.167.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 17:33:28','2020-06-20 17:33:28'),(9850,'chemistry','34.229.200.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 18:50:32','2020-06-20 18:50:32'),(9851,'geography','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 20:55:26','2020-06-20 20:55:26'),(9852,'commerce','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:27:07','2020-06-20 21:27:07'),(9853,'biology','54.234.45.227',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:34:23','2020-06-20 22:01:46'),(9854,'english','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:03:31','2020-06-21 00:03:31'),(9855,'insurance','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:07:20','2020-06-21 00:07:20'),(9856,'crk','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:30:51','2020-06-21 00:30:51'),(9857,'english','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:08:21','2020-06-21 03:08:21'),(9858,'englishlit','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:28:58','2020-06-21 03:28:58'),(9859,'civiledu','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:13:32','2020-06-21 04:13:32'),(9860,'crk','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:36:06','2020-06-21 04:36:06'),(9861,'government','54.227.23.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 10:01:04','2020-06-21 10:01:04'),(9862,'history','18.206.211.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 12:36:25','2020-06-21 12:36:25'),(9863,'physics','3.80.240.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 15:52:13','2020-06-21 15:52:13'),(9864,'englishlit','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:00:57','2020-06-21 17:00:57'),(9865,'english','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:13:38','2020-06-21 17:13:38'),(9866,'currentaffairs','34.238.151.127',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 18:19:01','2020-06-21 18:19:01'),(9867,'crk','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:44:26','2020-06-21 21:44:26'),(9868,'englishlit','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:54:44','2020-06-21 21:54:44'),(9869,'economics','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:08:26','2020-06-21 22:08:26'),(9870,'chemistry','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:33:17','2020-06-21 22:33:17'),(9871,'insurance','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:20:32','2020-06-21 23:20:32'),(9872,'government','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:37:50','2020-06-21 23:37:50'),(9873,'crk','3.84.250.255',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 00:51:48','2020-06-22 00:51:48'),(9874,'geography','54.221.187.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 01:53:56','2020-06-22 01:53:56'),(9875,'english','18.209.110.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 03:40:04','2020-06-22 03:40:04'),(9876,'economics','34.230.36.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 13:54:50','2020-06-22 13:54:50'),(9877,'currentaffairs','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 15:38:47','2020-06-22 15:38:47'),(9878,'civiledu','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 16:11:57','2020-06-22 16:11:57'),(9879,'biology','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:24:35','2020-06-22 18:24:35'),(9880,'english','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:41:12','2020-06-22 18:41:12'),(9881,'accounting','54.90.154.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 20:56:27','2020-06-22 20:56:27'),(9882,'mathematics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9883,'accounting','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9884,'biology','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9885,'economics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9886,'insurance','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9887,'currentaffairs','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9888,'history','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9889,'geography','54.196.101.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 05:30:08','2020-06-23 05:30:08'),(9890,'physics','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:13:29','2020-06-23 09:13:29'),(9891,'government','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:42:29','2020-06-23 09:42:29'),(9892,'englishlit','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 10:04:23','2020-06-23 10:04:23'),(9893,'insurance','35.153.133.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 11:44:24','2020-06-23 11:44:24'),(9894,'crk','34.205.18.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:01:55','2020-06-23 13:07:27'),(9895,'government','34.205.18.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:39:31','2020-06-23 13:39:31'),(9896,'chemistry','41.190.30.186',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-23 14:36:31','2020-06-23 14:36:38'),(9897,'accounting','54.227.55.70',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 18:14:12','2020-06-23 18:14:12'),(9898,'mathematics','18.209.61.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 19:02:39','2020-06-23 19:02:39'),(9899,'geography','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:24:58','2020-06-23 20:24:58'),(9900,'economics','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:45:09','2020-06-23 20:45:09'),(9901,'geography','3.89.130.67',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 21:21:11','2020-06-23 21:21:11'),(9902,'geography','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:28:57','2020-06-23 22:28:57'),(9903,'english','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:39:49','2020-06-23 22:39:49'),(9904,'physics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 02:49:35','2020-06-24 02:49:35'),(9905,'mathematics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 03:07:03','2020-06-24 03:07:03'),(9906,'englishlit','54.158.85.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 04:02:10','2020-06-24 04:02:10'),(9907,'currentaffairs','18.204.209.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 05:53:24','2020-06-24 05:53:24'),(9908,'geography','54.158.151.153',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:14:42','2020-06-24 07:14:42'),(9909,'biology','54.81.22.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:52:37','2020-06-24 07:52:37'),(9910,'physics','34.207.160.124',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 12:25:46','2020-06-24 12:25:46'),(9911,'geography','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:49:47','2020-06-24 14:49:47'),(9912,'mathematics','107.21.199.228',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:55:40','2020-06-24 15:41:17'),(9913,'government','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 15:12:17','2020-06-24 15:12:17'),(9914,'mathematics','54.162.201.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 16:28:06','2020-06-24 16:28:06'),(9915,'accounting','18.206.251.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 04:06:31','2020-06-25 04:06:31'),(9916,'biology','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 05:08:21','2020-06-25 05:08:21'),(9917,'history','3.84.8.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 08:20:25','2020-06-25 08:20:25'),(9918,'history','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:40:28','2020-06-25 09:40:28'),(9919,'english','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:50:38','2020-06-25 09:50:38'),(9920,'accounting','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 12:06:48','2020-06-25 12:06:48'),(9921,'irk','54.234.51.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 14:44:49','2020-06-25 14:44:49'),(9922,'economics','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 02:40:10','2020-06-26 02:40:10'),(9923,'insurance','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 03:05:31','2020-06-26 03:05:31'),(9924,'history','52.90.69.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 05:53:52','2020-06-26 05:53:52'),(9925,'history','34.207.74.169',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 06:38:00','2020-06-26 06:38:00'),(9926,'englishlit','54.91.84.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 08:40:21','2020-06-26 08:40:21'),(9927,'irk','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:42:58','2020-06-26 09:42:58'),(9928,'economics','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:46:26','2020-06-26 09:46:26'),(9929,'commerce','54.175.1.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 12:27:10','2020-06-26 12:27:10'),(9930,'english','3.94.119.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 15:45:31','2020-06-26 15:45:31'),(9931,'crk','18.207.229.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 17:10:47','2020-06-26 17:10:47'),(9932,'accounting','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9933,'biology','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9934,'crk','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9935,'physics','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9936,'economics','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9937,'chemistry','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9938,'irk','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9939,'insurance','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9940,'currentaffairs','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9941,'history','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9942,'history','54.236.208.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9943,'economics','34.205.32.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 20:26:36','2020-06-26 20:26:36'),(9944,'chemistry','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:19:29','2020-06-26 22:19:29'),(9945,'government','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:28:09','2020-06-26 22:28:09'),(9946,'geography','3.87.90.156',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 00:28:07','2020-06-27 00:28:07'),(9947,'crk','35.175.174.168',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 13:22:54','2020-06-27 13:22:54'),(9948,'government','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 18:54:24','2020-06-27 18:54:24'),(9949,'history','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 19:36:24','2020-06-27 19:36:24'),(9950,'mathematics','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:03:20','2020-06-27 20:03:20'),(9951,'physics','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:47:39','2020-06-27 20:47:39'),(9952,'biology','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:49:44','2020-06-27 20:49:44'),(9953,'currentaffairs','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:41:30','2020-06-27 22:47:05'),(9954,'english','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 23:00:09'),(9955,'biology','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 22:47:05'),(9956,'government','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9957,'geography','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9958,'insurance','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9959,'history','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9960,'mathematics','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:08:42','2020-06-27 23:08:42'),(9961,'englishlit','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:16:39','2020-06-27 23:16:39'),(9962,'english','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:05:48','2020-06-28 00:26:33'),(9963,'crk','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:22:50','2020-06-28 00:32:46'),(9964,'insurance','3.90.110.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:16:59','2020-06-28 02:16:59'),(9965,'englishlit','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:55:43','2020-06-28 02:55:43'),(9966,'crk','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:06:30','2020-06-28 03:06:30'),(9967,'chemistry','34.227.105.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:45:11','2020-06-28 03:45:11'),(9968,'economics','54.152.205.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 05:31:01','2020-06-28 05:31:01'),(9969,'geography','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:34:01','2020-06-28 06:34:01'),(9970,'economics','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:52:00','2020-06-28 06:52:00'),(9971,'economics','54.236.22.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 12:40:35','2020-06-28 12:40:35'),(9972,'currentaffairs','100.26.43.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 13:51:22','2020-06-28 13:51:22'),(9973,'mathematics','34.201.45.145',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:38:42','2020-06-28 16:38:42'),(9974,'commerce','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9975,'accounting','34.201.45.145',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:53:13'),(9976,'biology','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9977,'chemistry','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9978,'geography','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9979,'irk','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9980,'insurance','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:23','2020-06-28 16:39:23'),(9981,'english','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9982,'biology','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9983,'physics','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9984,'chemistry','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9985,'englishlit','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9986,'civiledu','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:28'),(9987,'currentaffairs','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:28','2020-06-28 23:19:28'),(9988,'geography','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:24:53','2020-06-29 01:24:53'),(9989,'history','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:51:44','2020-06-29 01:51:44'),(9990,'englishlit','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:10:38','2020-06-29 02:10:38'),(9991,'english','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:15:48','2020-06-29 02:15:48'),(9992,'physics','18.232.165.163',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 05:11:32','2020-06-29 05:11:32'),(9993,'chemistry','35.172.134.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 06:37:11','2020-06-29 06:37:11'),(9994,'chemistry','54.85.126.38',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:18:44','2020-06-29 10:18:44'),(9995,'biology','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:59:34','2020-06-29 10:59:34'),(9996,'accounting','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:24:56','2020-06-29 11:24:56'),(9997,'geography','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:33:40','2020-06-29 11:33:40'),(9998,'mathematics','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:38:46','2020-06-29 11:38:46'),(9999,'mathematics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 13:50:54','2020-06-29 13:50:54'),(10000,'geography','3.84.39.14',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:15:45','2020-06-29 14:49:49'),(10001,'economics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:32:34','2020-06-29 14:32:34'),(10002,'english','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 15:13:58','2020-06-29 15:13:58'),(10003,'mathematics','54.172.215.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 16:01:15','2020-06-29 16:01:15'),(10004,'physics','54.167.221.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 20:53:21','2020-06-29 20:53:21'),(10005,'currentaffairs','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 21:44:22','2020-06-29 21:44:22'),(10006,'englishlit','3.87.114.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 23:55:57','2020-06-29 23:55:57'),(10007,'biology','54.165.2.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 00:45:46','2020-06-30 00:45:46'),(10008,'chemistry','54.166.139.196',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 02:22:51','2020-06-30 02:22:51'),(10009,'physics','3.92.221.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 03:02:17','2020-06-30 03:02:17'),(10010,'mathematics','184.72.82.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 04:50:03','2020-06-30 04:50:03'),(10011,'government','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 06:53:24','2020-06-30 06:53:24'),(10012,'mathematics','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:00:07','2020-06-30 07:00:07'),(10013,'geography','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:09:39','2020-06-30 07:09:39'),(10014,'mathematics','52.202.65.159',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 08:52:07','2020-06-30 08:52:07'),(10015,'history','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:08:39','2020-06-30 09:37:56'),(10016,'accounting','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 10:04:26'),(10017,'physics','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 09:37:55'),(10018,'chemistry','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10019,'englishlit','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10020,'irk','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10021,'civiledu','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10022,'english','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:00','2020-06-30 15:33:00'),(10023,'commerce','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10024,'accounting','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10025,'chemistry','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10026,'government','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10027,'geography','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10028,'civiledu','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10029,'accounting','52.55.83.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 17:10:09','2020-06-30 17:10:09'),(10030,'biology','54.89.237.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:04:39','2020-06-30 19:04:39'),(10031,'commerce','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10032,'accounting','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10033,'chemistry','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10034,'irk','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10035,'civiledu','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10036,'insurance','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10037,'currentaffairs','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10038,'biology','54.234.3.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 20:15:32','2020-06-30 20:15:32'),(10039,'history','34.227.88.114',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 21:38:23','2020-06-30 21:38:23'),(10040,'history','54.86.39.12',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 22:33:09','2020-06-30 22:33:09'),(10041,'accounting','54.172.57.23',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 01:19:58','2020-07-01 01:19:58'),(10042,'irk','3.86.160.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 04:51:36','2020-07-01 04:51:36'),(10043,'chemistry','54.91.179.155',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 08:07:07','2020-07-01 08:07:07'),(10044,'physics','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 10:50:24','2020-07-01 10:50:24'),(10045,'economics','23.20.242.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 11:31:17','2020-07-01 11:31:17'),(10046,'insurance','54.87.197.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 12:53:01','2020-07-01 12:53:01'),(10047,'economics','3.91.214.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 14:03:22','2020-07-01 14:03:22'),(10048,'history','54.84.225.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 15:25:35','2020-07-01 15:25:35'),(10049,'history','3.94.169.218',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 16:02:27','2020-07-01 16:02:27'),(10050,'economics','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 17:46:59','2020-07-01 17:46:59'),(10051,'irk','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:20:57','2020-07-01 18:20:57'),(10052,'englishlit','54.84.229.165',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:58:33','2020-07-01 18:58:33'),(10053,'commerce','34.228.230.135',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 00:24:39','2020-07-02 00:24:39'),(10054,'english','52.91.78.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 01:41:45','2020-07-02 01:41:45'),(10055,'crk','184.72.205.154',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 02:39:16','2020-07-02 02:39:16'),(10056,'economics','52.91.54.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 04:40:45','2020-07-02 04:40:45'),(10057,'chemistry','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:11:03','2020-07-02 06:11:03'),(10058,'government','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:42:32','2020-07-02 06:42:32'),(10059,'government','34.239.131.100',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:04:51','2020-07-02 08:04:51'),(10060,'economics','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:41:05','2020-07-02 08:41:05'),(10061,'commerce','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:56:42','2020-07-02 08:56:42'),(10062,'geography','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:38:08','2020-07-02 09:38:08'),(10063,'biology','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:54:27','2020-07-02 09:54:27'),(10064,'crk','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:13:25','2020-07-02 11:13:25'),(10065,'insurance','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:14:35','2020-07-02 11:14:35'),(10066,'english','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:36:17','2020-07-02 11:36:17'),(10067,'english','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:32:13','2020-07-02 14:32:13'),(10068,'englishlit','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:43:14','2020-07-02 14:43:14'),(10069,'crk','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:08:57','2020-07-02 15:08:57'),(10070,'civiledu','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:35:16','2020-07-02 15:35:16'),(10071,'physics','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:42:25','2020-07-02 15:42:25'),(10072,'economics','54.234.26.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 16:32:16','2020-07-02 16:32:16'),(10073,'crk','34.201.40.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 17:47:14','2020-07-02 17:47:14');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `biology` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=385 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `biology` VALUES (1,'In the egg of bird, the embryo is located in the','Chalaza','Yolk  ','albumen  ','embryo','','','d','','utme','2003',162,'Admin','0000-00-00 00:00:00','2020-07-01 09:52:46'),(2,'One distinctive feature in the life history  of liverworts is that they exhibit','alternation of generation  ','vegetative reproduction  ','sexual reproduction','sexual reproduction','','','a','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(3,'The umbrella-shaped fruiting body of a fully developed mushroom is the','pileus  ','Mycelium','basidium  ','Stipe','','','a','','utme','2003',152,'Admin','0000-00-00 00:00:00','2020-07-01 09:20:58'),(4,'The similarly  among organisms belonging to the same group will be least within each','family  ','order  ','kingdom   ','species','','','c','','utme','2003',141,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(5,'Hermaphroditic reproduction can be found among the','arthropods and nematodes  ','Pisces and amphibians   ','annelids and molluscs','coelenterates and  platyghelminthes','','','d','','utme','2003',156,'Admin','0000-00-00 00:00:00','2020-07-01 06:46:48'),(6,'An insect whose economic importance is both harmful and beneficial is the','tests fly  ','black','mosquito   ','butterfly','','','d','','utme','2003',164,'Admin','0000-00-00 00:00:00','2020-06-29 17:24:07'),(7,'The cell component that is present in a prokaryotic cell is the','chloroplast   ','ribosome','mitochondrion   ','nuclear envelope','','','b','','utme','2003',149,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(8,'The stunted group of a leguminous plant suffering from nitrogen deficiency may be corrected by inoculating the soil with','denitrifying bacteria  ','saprophytic bacteria','Rhizobium   ','nitrosomonas','','','c','','utme','2003',165,'Admin','0000-00-00 00:00:00','2020-07-01 09:35:56'),(9,'If water that has been coloured red is poured at the base of a wilting plant, it will appear as a red stain in the cells of','Xylem  ',' epidermis  ','phloem  ','parench','','','a','','utme','2003',159,'Admin','0000-00-00 00:00:00','2020-06-29 19:41:56'),(10,'The dark reaction of photosynthesis involves the  ','reduction of carbon (IV) oxides to organic compounds  ','release of oxygen and the splitting of water','photolysis of water and the production of starch  ','splitting of water into hydrogen ions.','','','a','','utme','2003',148,'Admin','0000-00-00 00:00:00','2020-07-01 08:32:59'),(11,'Organisms I, II, III and IV have surface volume ratios  of 1:2, 1:3, 1:4, 1:5, respectively. The organism that is likely to have the most complex transport system is','IV','III  ','I  ','II','','','a','','utme','2003',135,'Admin','0000-00-00 00:00:00','2020-06-23 13:00:42'),(12,'The part of the mammalian digestive  system where absorption of nutrients takes place is the','ileum  ','colon  ','esophagus  ','duodenum','','','a','','utme','2003',141,'Admin','0000-00-00 00:00:00','2020-06-25 12:33:49'),(13,'The best method of propagating sugarcane by','seed sowing  ','layering','grafting  ','stem cuttings','','','d','','utme','2003',148,'Admin','0000-00-00 00:00:00','2020-07-01 08:28:38'),(14,'In mammalian males, the excretory and reproductive  systems share the','ureter     ','vas deferens  ','urethra  ','Testes.','','','c','','utme','2003',158,'Admin','0000-00-00 00:00:00','2020-06-28 18:28:06'),(15,'Metabolic production of urea is carried out in the','Urinary bladder and kidney','liver   ','pancreas  ','kidney and malphigian tubule','','','b','','utme','2003',148,'Admin','0000-00-00 00:00:00','2020-07-01 09:17:19'),(16,'The structure can be found in the','sympathetic and parasympathetic nervous systems  ','peripheral and central nervous systems','peripheral nervous system only  ','central nervous system only','','','b','','utme','2003',147,'Admin','0000-00-00 00:00:00','2020-07-01 08:57:34'),(17,'The point marked I is referred to as  ','myelin sheath','dendrites  ','axon  ','node of Ranvier','','','d','','utme','2003',151,'Admin','0000-00-00 00:00:00','2020-06-28 20:18:13'),(18,'Homologous pairs of chromosomes separate during','cytolysis   ','cleavage','mitosis  ','Meiosis','','','d','','utme','2003',157,'Admin','0000-00-00 00:00:00','2020-06-30 09:43:18'),(19,'An example of a caryopsis is','guava   ','maize grain','coconut','tomato','','','b','','utme','2003',153,'Admin','0000-00-00 00:00:00','2020-07-01 09:20:58'),(20,'The response of plants to external stimuli in a non-directional manner is known as ','tactic movement','phototropism  ','geotropism','nastic  movement','','','d','','utme','2003',159,'Admin','0000-00-00 00:00:00','2020-06-26 00:14:46'),(21,'The most important hormone that induces the ripening of fruit is','ethylene  ','indole acetic acid','gibberellin  ','cytokinin','','','a','','utme','2003',150,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(22,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','a','','utme','2003',152,'Admin','0000-00-00 00:00:00','2020-07-01 08:29:58'),(23,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','c','','utme','2003',172,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(24,'One example of fossil fuel is','limestone  ','coral  ','coal  ','firewood','','','b','','utme','2003',146,'Admin','0000-00-00 00:00:00','2020-07-02 10:11:17'),(25,'The most effective method of dealing with non-gradable pollutants by  \\\\','dumping  ','recycling  ','incineration  ','Burying','','','d','','utme','2003',142,'Admin','0000-00-00 00:00:00','2020-06-25 11:45:37'),(26,'The correct sequence of biomes from northern to southern Nigeria is','gulnea savanna _ sudan savanna_ tropical rain forest_ sahel savanna_eetuarine  ','estuarine_tripical rainforest_guinea savanna _ sahel_ savanna  ','sahel savanna_ tropical_rain forest_ estuarine _guinea savanna','sahel savanna_sudan savanna_guinea savanna _tropical rain forest_estuarine','','','b','','utme','2003',145,'Admin','0000-00-00 00:00:00','2020-06-26 19:07:57'),(27,'Mycorrhiza is an association  between fungi and','protozoans','roots of higher plants','bacteria','filamentous algae','','','d','','utme','2003',152,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(28,'A limiting factor in a plant population near a chemical factory is likely to be','light  ','humidity  ','wind  ','PH.','','','d','','utme','2003',167,'Admin','0000-00-00 00:00:00','2020-06-30 09:41:08'),(29,'Soil fertility can best be conserved and renewed by the activities of','earthworms  ','man  ','rodents  ','microbes','','','b','','utme','2003',153,'Admin','0000-00-00 00:00:00','2020-07-02 10:17:55'),(30,'The pioneer organism in ecological  succession are usually the','mosses  ','lichens  ','ferns','Algae','','','d','','utme','2003',173,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(31,'If a DNA strand has a base sequence TCA, its complementary strand must be','ATG  ','TAG','GAT  ','AGT','','','d','','utme','2003',151,'Admin','0000-00-00 00:00:00','2020-06-26 12:17:15'),(32,'A man and his wife are both heterozygous for the sickle cell trait. The likely percentage of their offspring that will be either carriers of sicklers is','75%','50%','25%','100%','','','d','','utme','2003',188,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(33,'If the pair of alleles for baidness is given as Bb, a female carrier will be denoted by','XbY   ','XBXB  ','XBY','XBXb','','','a','','utme','2003',161,'Admin','0000-00-00 00:00:00','2020-06-30 09:41:20'),(34,'An organ  that has been extensively used to test the chromosome theory of heredity is','Drosophila   melanogaster','Muscat domestic  ','Zea mays  ','homo sapiens','','','c','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(35,'A feature association with the Y- chromosome in humans is  ','Drosophila melanogaster','prominent fingernails  ','facial hairs  ','enlarged breast','','','b','','utme','2003',138,'Admin','0000-00-00 00:00:00','2020-07-02 19:15:59'),(36,'The type of reproduction that leads to variation in animal and plant population is','  budding',' sexual','vegatative','asexual','','','a','','utme','2003',156,'Admin','0000-00-00 00:00:00','2020-06-28 12:26:38'),(37,'An insect with a mandibulate  mouth part will obtain its food by','biting and chewing   ','chewing and sucking  ','chewing  ','Sucking','','','c','','utme','2003',153,'Admin','0000-00-00 00:00:00','2020-06-28 20:07:07'),(38,'An argument against Lamarck’s theory of evolution is that  ','disuse of  body part cannot weaken the part  ','disused part is dropped off in the offspring  ','acquired traits cannot be passed onto the offspring  ','traits cannot be acquired through constant use of body parts','','','b','','utme','2003',149,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(39,'Spines and shells on animals are adaptations for','camouflage  ','chemical defence','physical defence  ','mimicry','','','c','','utme','2003',151,'Admin','0000-00-00 00:00:00','2020-07-01 08:58:41'),(40,'An example of cryptic colouration is the','mottled colours on moths that rest o lichens  ','bright colour of an insect pollinated flower','green colour of a plant  ','bright marks on a poisonous tropical frog on variegated  leaves','','','d','','utme','2003',134,'Admin','0000-00-00 00:00:00','2020-07-01 08:57:34'),(41,'Which of the following requires the use of carbon dating to prove that evolution has occurred?  ','comparative anatomy  ','biochemical similarities   ','molecular records','fossil records','','','d','','utme','2003',155,'Admin','0000-00-00 00:00:00','2020-06-20 15:56:55'),(42,'The inactive state exhibited by an animal during hot dry seasons is termed  ','aestivation','dormancy  ','resting','Hibernation','','','a','','utme','2003',143,'Admin','0000-00-00 00:00:00','2020-07-01 09:30:58'),(43,'The rods in the retina of the eye are examples of','cells   ','Tissues  ','organs  ','systems','','','a','','utme','2004',165,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(44,'The absence of special food and water-conducting systems  restricts the body size in','algae, liverworts and mosses  ','liverworts, mosses and ferns  ','the bryophytes and the pteriodophytes  ','the thallophytes and the pteriodphytes','','','a','','utme','2004',138,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(45,'A plant like feature I Euglena is the','Pellicle  ','pigment sport','large vacuole   ','gullet','','','b','','utme','2004',168,'Admin','0000-00-00 00:00:00','2020-06-28 18:28:06'),(46,'The most common characteristic of the fungal hyphae is the possession of  ','cell like compartments with one nucleus each  ','cell walls that are true are both rigid and chitinous  ','a multicellular mycelium in strate  ','cell like partitions formed  by cross walls','','','b','','utme','2004',152,'Admin','0000-00-00 00:00:00','2020-06-28 20:31:07'),(47,'Insects are considered the most successful among the invertebrates because they','possess exoskeletons',' survive in various environmental conditions  ','have wings for flight  ',' possess the ability to change their forms','','','a','','utme','2004',154,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:33'),(48,'The larval stage of a mosquito is called','wriggler  ','Grub  ','maggot  ','Caterpillar','','','a','','utme','2004',178,'Admin','0000-00-00 00:00:00','2020-07-01 09:53:32'),(49,'The function of the long-winged reproductive in a  termite colony is to','disperse the population  ',' feed the young   ','participate in swarming','protect the young','','','c','','utme','2004',139,'Admin','0000-00-00 00:00:00','2020-06-28 12:26:38'),(50,'A peculiar characteristic of mammals is that they  ','have teeth  ','are warm blooded  ','haelungs','have sebaceous glands','','','d','','utme','2004',136,'Admin','0000-00-00 00:00:00','2020-07-01 08:32:59'),(51,'In the internal structure of plants, a wide pith in the centre is common to','dicot stems and moocot stems','dicot stems and monocot roots','dicot roots and monocot roots','dicotroots and monocot stems','','','b','','utme','2004',161,'Admin','0000-00-00 00:00:00','2020-06-30 20:03:19'),(52,'The gall bladder of mammal has a duct connected to','liver  ',' duodenum  ','small intestine','pancreas','','','b','','utme','2004',146,'Admin','0000-00-00 00:00:00','2020-07-02 19:16:50'),(53,'Al living cells require water because it','is a medium for all metabolic reactions  ','is a medium that neutralizes acids in cells','is the main source of energy for the cells','prevents the development of disease in cells.','','','a','','utme','2004',155,'Admin','0000-00-00 00:00:00','2020-07-01 09:48:10'),(54,'The Breakdown of fats and oils into simpler absorbable compounds is catalyzed by the group of enzymes called','lipases   ','hydrolases  ','amylases','peptidases','','','a','','utme','2004',146,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(55,'The surface of an alveolus in a mammal is well supplied with tiny blood vessels known as','arterioles  ','Venules','arteries  ','capillaries','','','d','','utme','2004',138,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(56,'The anaerobic fermentation of a glucose molecule yields.','38ATP molecules  ','2ATP molecules and alcohol','Pyruvic acid and alcohol  ','water and carbon (IV) oxide','','','b','','utme','2004',141,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:33'),(57,'The opening of the stoma is controlled by the  ','presence of a pore  ','increase in solute concentration  in the guard cells  ','presence of guard cells','decrease in solute concentration in the guard cells','','','b','','utme','2004',160,'Admin','0000-00-00 00:00:00','2020-07-01 08:26:42'),(58,'The type of reproduction that is common to both Hydra and yeast is','conjugation','binary fission','grafting  ','Budding','','','d','','utme','2004',159,'Admin','0000-00-00 00:00:00','2020-07-01 08:17:16'),(59,'The eggs of birds contain relatively larger quantities of yolk than those of amphibians and reptiles because','birds are generally bigger in size','embroyonic development is longer in birds  ','those of birds are fertilized internally  ','birds lay shelled eggs','','','b','','utme','2004',169,'Admin','0000-00-00 00:00:00','2020-06-29 17:12:25'),(60,'Epigeal germination of a seed is characterized by','more rapid  elongation of the hypocotyl than the epicotyl','more rapid elongation of the epicotyl than the hypocotyl  ','equal growth rate of both the hypocotyl and epicotyl  ','lack of growth of the hypocotyl','','','a','','utme','2004',155,'Admin','0000-00-00 00:00:00','2020-06-28 18:13:44'),(61,'Nervous control differs from hormonal control in that the former  ','involves only chemical  transmission','is a slower process','produces short term changes  ','has no specific pathway','','','c','','utme','2004',142,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(62,'If a nursing mother is not  producing enough milk, her hormonal system is probably deficient in','prollactine  ','estosterone','thyroxin','insulin','','','a','','utme','2004',142,'Admin','0000-00-00 00:00:00','2020-07-01 09:34:06'),(63,'The two key cations involved in the action potential of nervous transmissions are ','Na+ and Fe2+',' Mg2+ and K+','Na+ and K+  ','Fe2+ and Mg 2+','','','c','','utme','2004',166,'Admin','0000-00-00 00:00:00','2020-07-01 08:52:03'),(64,'A caterpillar and an aphid living in different parts of the same plant can be said to',' occupy the same ecological riches   ',' Be in different habitats  ','occupy different ecological riches  ','be in  similar micro habitats','','','c','','utme','2004',151,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(65,'Use the table below to answer questions 33 and 34\\nZone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nHigh relative humidity will be expected in zones \\n','I and II','I and IV  ','II and III  ','II and IV','','','c','','utme','2004',152,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(66,'Zone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nWhich of the zones is likely to be a desert\\n','I  ','II  ','III  ','IV','','','a','','utme','2004',145,'Admin','0000-00-00 00:00:00','2020-07-01 09:51:33'),(67,'The association between termites and the cellulose digesting protozoans in heir guts is an example of  ','saprophytism  ','mutualism','parasitism  ','commensalism','','','b','','utme','2004',135,'Admin','0000-00-00 00:00:00','2020-07-02 10:17:55'),(68,'The progressive loss of energy at each level in a food chain  leads to','an increase in biomass at each successive level  ','a decrease in biomass at each successive level  ','an increase in the number of organisms at each successive level','an increase in the total weight of living matter at each successive level.','','','b','','utme','2004',161,'Admin','0000-00-00 00:00:00','2020-07-01 08:26:42'),(69,'One adaptation of reptiles of water loss is the presence of','Keratinous scales  ','claws on Limbs  ','Long tails   ','long stickly tongues','','','a','','utme','2004',148,'Admin','0000-00-00 00:00:00','2020-06-28 20:32:57'),(70,'A state in Nigeria that is most susceptible to desert encroachment is','Kwara  ','Taraba  ','Kaduna','Katsina','','','d','','utme','2004',157,'Admin','0000-00-00 00:00:00','2020-07-01 09:48:10'),(71,'The Scarcity of food causes a sudden decrease in population size by','decrease the reproductive rate','bringing about immigration','raising the mortality rate','minimizing the rate of competition','','','a','','utme','2004',139,'Admin','0000-00-00 00:00:00','2020-06-29 17:24:07'),(72,'The soil type that will be most difficult to plough in a wet season is one that is  ','loamy   ','clayey  ','sandy  ','silty','','','b','','utme','2004',143,'Admin','0000-00-00 00:00:00','2020-06-28 20:32:06'),(73,'A farm practice that results in he loss of soil fertility is','mixed farming','bush fallowing','shifting cultivation  ','continuous cropping','','','d','','utme','2004',158,'Admin','0000-00-00 00:00:00','2020-07-02 10:27:34'),(74,'Paternity disputes can most accurately be resolved though the use of','Gringer printing   ','blood group typing   ','DNA analysis   ','tongue rolling','','','c','','utme','2004',142,'Admin','0000-00-00 00:00:00','2020-06-28 18:13:44'),(75,'In a mendelian cross of red and white varieties of the four o’clock pant, the F1 generation expresses incomplete dominance by having flowers which are','white  ','red  ','pink  ','multi-coloured','','','c','','utme','2004',164,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(76,'Identical twins inherit their genes from','Different eggs and sperms','The same egg and sperm  ','two egg and a sperm  ','one egg and two sperms','','','b','','utme','2004',155,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(77,'Sex –linked genes are located on','Y-chromostome  ','X and Y chromosomes  ','Homologens chromosomes  ','X-Chromosome','','','d','','utme','2004',163,'Admin','0000-00-00 00:00:00','2020-06-28 20:05:06'),(78,'Which of the following is an example of intraspecific competition?','a lizard and an ant eater chasing an insect  ','a worker termite and a solider in a limited space  ','a hawk and an eagle targeting the same chicken','yam and potato shoots growing out through the same window','','','b','','utme','2004',158,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(79,'Plants survive hot dry condition by  ','storing water in large parenchyma cells','producing numerous leaves  ','having numerous stomata  ','having every green leaves','','','a','','utme','2004',139,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(80,'Rodents gnaw on food with their','molar teeth  ','strong jaws   ','flat-ridged teeth  ','chisel like front teeth','','','d','','utme','2004',144,'Admin','0000-00-00 00:00:00','2020-07-01 09:51:33'),(81,'The sports and stripes of the leopard and tiger and example of','cryptic colouration  ','warning colouration  ','Disruptive colouration  ','counter shading','','','c','','utme','2004',145,'Admin','0000-00-00 00:00:00','2020-07-01 09:41:56'),(82,'An evidence of the relationship between living organisms and their extinct relatives can best be obtained from','Embryology  ','Comparative anatomy  ','comparative physiology','all of the above','','','d','','utme','2004',185,'Admin','0000-00-00 00:00:00','2020-06-26 18:25:40'),(83,'The organelle common to both plant and animal cells is the','centriole','plasmalemma  ','cell wall','chloroplast','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(84,'Which of the following is likely to have a higher concentration of mitochondria? ',' Sperm cell',' white blood cell  ',' Egg cell','red blood cell','','','a','','utme','2005',155,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(85,'The hyphal wall of fungi is rigid  owing to the presence of','cell wall','lignin  ','cellulose  ','chitia','','','d','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-01 08:57:34'),(86,'Angiosperms and gymnosperms belong to the class','schizophyta  ','spermatophyte  ','pteridophyta  ','bryophta','','','b','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(87,'An example of a adially symmetrical organism is','planaria  ','Hydra   ','tapeworm  ','roundworm','','','b','','utme','2005',159,'Admin','0000-00-00 00:00:00','2020-06-30 09:43:18'),(88,'the leech and the earthworm belong to the','molluscs  ','crustaceans','arachnids  ','annelids','','','d','','utme','2005',142,'Admin','0000-00-00 00:00:00','2020-06-28 12:26:38'),(89,'I. Rettus rattus   II. Agama agama  II Bufo regularis  IV. Tilapia Zill. The order of evolutionary advancement  of the above','I, II and III , IV  ','I, IV, III, II  ','II, III, IV, I','IV, III, II, I','','','d','','utme','2005',161,'Admin','0000-00-00 00:00:00','2020-06-29 16:20:57'),(90,'The stage in the life history  of a moth responsible for the destruction of agricultural crops is the','nymph','imago','pupa   ','caterpillar','','','d','','utme','2005',158,'Admin','0000-00-00 00:00:00','2020-06-29 16:01:23'),(91,'The blackly is a vector of','material','trypanosomiasis','onchocerciasis','yellow fever','','','c','','utme','2005',165,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(92,'The transition from amphibians to mammals involves the limbs becoming arranged to support the weight  more effectively requiring modifications in the','collar bones and coccyx','pectoral and pelvic girdles','scapulae and clavicles   ','vertebrae and sternum','','','b','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(93,'The main function of the caudal fin in tilapia  is to  ','propel it forward in water  ','seer it while changing directions  ','balance it in eater','enable it to float in water','','','a','','utme','2005',178,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(94,'In the root vascular system, the stele is directly surrounding by the','pericycle  ','cortex','endodermis  ','Parenchyma','','','c','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(95,'The only vein that caries pure oxygenated blood is the  ','renal vein  ','Pulmonary vein  ','hepatic vein','sciatic vein','','','b','','utme','2005',158,'Admin','0000-00-00 00:00:00','2020-07-02 10:27:50'),(96,'The function of the fluid filled pericardium is to','reduce the friction caused by the pumping movements of the heart   ','supply the heart with oxygen and nutrients  ','prevent disease organisms from attacking the heart  ','reduce the  intensity of the pumping action of the heart','','','a','','utme','2005',155,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:33'),(97,'The mammalian lung is made air light by the','pleural cavity  ','mucous membrane','pleural membrane  ','diaphragm','','','a','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-07-01 09:53:32'),(98,'A test tube containing yeast in glucose solution was suspended in a converted conical flask containing alkaline pyrogallol. The  bubbles of carbon (IV) oxide produced indicate that the yeast cells are','respiring in the absence of oxygen  ','librating oxygen  on their own','living and consuming oxygen  ','being killed by the alcohol produced','','','a','','utme','2005',162,'Admin','0000-00-00 00:00:00','2020-07-01 08:57:34'),(99,'The urinary tubules of the kidney function through  ','osmosis and diffusion  ','active transport and osmosis  ','ultra filtration and selective re-absorption','active transport and cytoplasmic streaming  ','','','c','','utme','2005',162,'Admin','0000-00-00 00:00:00','2020-06-29 17:16:50'),(100,'Excess water  in plants is excreted as water vapour and droplets respectively through  ','respiration and guttation  ','transpiration and guttation','photosynthesis and guttation','guttation and condensation','','','b','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-01 08:29:58'),(101,'When bacteria swim from cold to warm regions, this is known as','negative chemotaxis  ','positive thermotaxis  ','positive phototaxis','negative phototaxis','','','b','','utme','2005',158,'Admin','0000-00-00 00:00:00','2020-07-01 09:27:01'),(102,'Hydrostatic skeleton is the type of supporting system found in','Mammals  ','reptiles  ','oligochaetes   ','arthropods','','','c','','utme','2005',169,'Admin','0000-00-00 00:00:00','2020-07-01 09:25:25'),(103,'Which of the following is a homeostatic response in humans?','withdrawing the hand from a hot object','the mouth getting watery when food is lighted  ','yawning owing to tiredness  ','shivering in a cold environment','','','d','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-07-01 08:35:54'),(104,'The optimal temperature  for breeding cockroaches is','15oC','19oC  ','24oC  ','33oC','','','c','','utme','2005',162,'Admin','0000-00-00 00:00:00','2020-07-01 08:35:54'),(105,'At which temperature will cockroaches not survive after 10 days?   ','15oC','19oC  ','24oC  ','33oC','','','a','','utme','2005',155,'Admin','0000-00-00 00:00:00','2020-07-01 09:34:06'),(106,'The mambilla plateau is a unique Nigeria biome located in','Plateau State  ','Borno state  ','Taraba state  ','Benue state','','','a','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(107,'In Nigeria, the Guinea Savanna belt borders the','mangrove swamps and the Sahel  savanna  ','rainforests and the Sudan savanna  ','deserts and the Sudan savanna  ','rainforests and the desert.','','','b','','utme','2005',155,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(108,'The population density of Tridax in an abandoned square farmland of side 200m was found to be 5 plants per m2. The population size of the plant on the farm is','40','4000','40000','200000','','','d','','utme','2005',152,'Admin','0000-00-00 00:00:00','2020-06-29 16:01:23'),(109,'Secondary succession is much faster then primary succession because','pioneer colonizers are more in number  ','soil is already present  ','Secondary series require less nutrients  ','species competition is increased','','','b','','utme','2005',149,'Admin','0000-00-00 00:00:00','2020-06-30 20:01:58'),(110,'Which of the following is used to test for the presence of lime in a soil sample? ','H2SO4(aq)  ','NaOH(aq)','Hcl(aq)  ','HNO3(aq)','','','c','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-02 15:56:39'),(111,'The importance of practicing crop rotation  in agriculture is to','maintain soil fertility','improve the nutritional value of crops   ','control soil erosion   ','ensure the growth of crops.','','','a','','utme','2005',151,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(112,'The recycling method of solid waste disposal is unsuitable for','organic matter  ','glass  ','plastics','metal scraps','','','a','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-06-28 17:31:29'),(113,'A non-renewable alternative source of energy is','wind generators  ','solar panels  ','nuclear energy','hydroelectric power','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-01 09:53:32'),(114,'Which of the following gis the best explanation for a child who is phenol-typically short and born of two tall parents?','The father possesses a gene for shortness  ','The mother possesses a gene for shortness  ','Nature makes the child short  ','Both parents posses genes for shortness.','','','d','','utme','2005',150,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(115,'A yellow maize is crossed with the a white maize and the first filial generation produce yellow maize only. The white trait is said to exhibit  ','dominance',' recessiveness','codominance  ','Incomplete  dominance','','','b','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:33'),(116,'The association in which one member benefits and the other is relatively unaffected by the interaction is termed  ','symbiosis','parasitism','commensalism  ','Mutualism','','','c','','utme','2005',152,'Admin','0000-00-00 00:00:00','2020-06-29 17:13:41'),(117,'When a peacock displays its colourful  feathers, it is  ','ready for a fight  ','protecting itself from predators  ','protecting its mate from predator','courting a female','','','d','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-06-28 20:07:07'),(118,'When an animal has a dark coloured dorsal surface and light coloured ventral surface, this is an adaptation called  ','concealment coloration  ','countershading','colour blending  ','disruptive coloration','','','b','','utme','2005',154,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(119,'The only caste in the termite colony whose members can feed themselves are the  ','reproductive',' workers  ','nymhs  ','soldiers','','','b','','utme','2005',137,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(120,'An evidence of a common ancestry for fishes, amphibians, reptiles, birds and mammals is the','possession of wings by bird and bats','cold-bloodedness of fishes, amphibians and reptiles  ','presence of gill clefts in vertebrate embryos','','','','c','','utme','2005',166,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(121,'Mendel, s second law of inheritance states that','alleles separate predictably  ','alleles segregate  independently','chromosomes segregate independently  ','alleles combine randomly','','','b','','utme','2006',145,'Admin','0000-00-00 00:00:00','2020-07-01 09:31:58'),(122,'One advantage of variation in a species population  is that individuals','easily reach their reproduction age','with favoured trait become dominant','are better adapted  to changes','are easily  recognized by mates','','','c','','utme','2006',161,'Admin','0000-00-00 00:00:00','2020-06-28 20:31:07'),(123,'The two normal types of sex chromosomes are','xxy and xyy','xx and xyy  ','xx and xy  ','xy and xxy','','','c','','utme','2006',152,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(124,'Hassan and Hussain are identical twins but Hasan grows taller and fatter than Hussain. This is probably  because  ','Hussain in endowed with genes for shortness and thinness  ','They are raised in different environments','they have dissimilar genotypes  ','Hassan inherits genes for tallness and fatness from the father.','','','b','','utme','2006',156,'Admin','0000-00-00 00:00:00','2020-07-02 10:28:46'),(125,'Population that doubles in size to constant intervals is an indication of','sigmoid   ','population explosion  ','rapid growth','  exponential growth','','','d','','utme','2006',141,'Admin','0000-00-00 00:00:00','2020-07-01 09:33:18'),(126,'The causative reagent of typhoid fever is  ','Entamoeba','Salmonella','Shigella  ','Escherichia','','','b','','utme','2006',162,'Admin','0000-00-00 00:00:00','2020-07-01 09:31:58'),(127,'The  soil type that contains nutrients which are not readily available for plants is ',' sandy  ','Alluvial  ','loamy  ','clayey  ','','','d','','utme','2006',151,'Admin','0000-00-00 00:00:00','2020-07-01 09:41:56'),(128,'Grasses recover quickly from bush fires in the savanna  because of their  ','succulent stems   ','rapid growth  ','fibrous roots  ','perennating organs','','','d','','utme','2006',164,'Admin','0000-00-00 00:00:00','2020-07-01 08:15:51'),(129,'The main purpose of establishing shelter belts in the sahel region to  ','break the harmattan wind  ','beautify the region  ',' check desert encroachment  ','provide wood fuel','','','a','','utme','2006',141,'Admin','0000-00-00 00:00:00','2020-07-01 08:32:59'),(130,'Climax communities in a biotic succession are usually characterized by','a constant change in the appearance of the commodities  ','a stable composition of plant and animal species  ','rapid changes in the plant and animal species  ','different species that are constantly changing','','','b','','utme','2006',130,'Admin','0000-00-00 00:00:00','2020-06-22 02:59:57'),(131,'The product of excretion common to the mammalian kidney lung and skin is','Urea  ','carbon (IV)oxides  ','mineral salt','water','','','d','','utme','2006',148,'Admin','0000-00-00 00:00:00','2020-07-01 09:54:22'),(132,'In rabbits, the chamber of the heart that receives oxygenated blood from the lungs is the  ','left auricle','right auricle','left ventricle','right ventricle','','','a','','utme','2006',144,'Admin','0000-00-00 00:00:00','2020-07-01 08:28:38'),(133,'One basic similarly between nervous and endocrine system is that both  ','produce precise and short –lived  effects  ','Involve the use of chemical substances  ','transmit very fast impulses  ','produce widespread effects.','','','b','','utme','2006',149,'Admin','0000-00-00 00:00:00','2020-06-26 12:17:15'),(134,'Night blindness result from a deficiency of  ','Vitamin E  ','Vitamin K  ','Vitamin C  ','Vitamin A','','','d','','utme','2006',144,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(135,'Water is necessary for a germinating seed because  it','wets the soil for proper germination  ','protects the seed from desiccation  ','activates the enzymes','promotes aerobic respiration  ','','','c','','utme','2006',157,'Admin','0000-00-00 00:00:00','2020-06-28 12:26:38'),(136,'An increase  in air pressure in the lings is due to the','increase in the volume of the thoracic cavity  ','relaxation of the diaphragm','upward movement of the ribs','contraction intercostal muscles','','','b','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-06-26 12:17:15'),(137,'In the transverse section of a dicot stem, the region lying between the endodermis and the vascular bundle is the','parenchyma  ','Pholem','phypodermis  ','pericyle','','','d','','utme','2006',144,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(138,'A unique characteristic of the cervical vertebrae  is the present  of','long transverse processes  ','zygaphphysis   ','vertebraterial canal  ','large centrum','','','c','','utme','2006',153,'Admin','0000-00-00 00:00:00','2020-07-01 09:25:25'),(139,'Which of following produces both hormones and enzymes?','Gall blader  ','Lieum  ','Pancreas  ','kidney','','','c','','utme','2006',159,'Admin','0000-00-00 00:00:00','2020-07-02 15:44:59'),(140,'The formation of water in tissue  respiration  results from the  ','combination of water  molecules','breakdown of water molecules  ','reduction of carbon (IV) oxide','reduction of oxygen by hydrogen','','','d','','utme','2006',149,'Admin','0000-00-00 00:00:00','2020-06-26 19:13:16'),(141,'The organ situated in the pericardial cavity of a mammal is the','stomach  ','Liver  ','Liver','spleen','','','c','','utme','2006',139,'Admin','0000-00-00 00:00:00','2020-06-26 00:14:46'),(142,'Mammals are  capable  of producing hypertonic urine mainly because of re-absorption in the  ','urethra  ','loop of henle  ','ureater  ','Bowman’s capsule','','','b','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-06-28 19:37:27'),(143,'The mammalian vain which starts with and ends in a capillary network is the','hepatic portal vein','pulmonary vein  ','renal vein','measenteric vein','','','a','','utme','2006',152,'Admin','0000-00-00 00:00:00','2020-06-29 19:41:56'),(144,'The part of the mammalian skin involved in temperature regulation is the','sebaceous gland  ','sweat gland','hair follicle  ','hair pailla','','','b','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-01 09:34:06'),(145,'The variation illustrated is','physiological   ','discontinuous  ','morphological   ',' biochemical','','','c','','utme','2006',140,'Admin','0000-00-00 00:00:00','2020-07-01 09:41:56'),(146,'The change in the length of the necks of the giraffes shown was brought about by  ','predation','symbiosis','natural selection','geographical isolation','','','c','','utme','2006',146,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(147,'Which of the following vertebrates has the most simple structured heart?','fish  ','Mammal','Amphibian  ','Reptile','','','a','','utme','2006',140,'Admin','0000-00-00 00:00:00','2020-06-25 11:47:35'),(148,'The role of the Golgi com plex in a eukaryotic cell is to  ','transport genetic material out of the cell','transport organic materials in and out of the cell','provide attachment for ribosomal granules','conduct ions and out of the cell','','','b','','utme','2006',158,'Admin','0000-00-00 00:00:00','2020-07-01 09:41:56'),(149,'The dominant phase in the life cycle of a bryophyte is the','prothallus  ','Gametangium  ','saprophyte   ','gametophyte','','','d','','utme','2006',147,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:20'),(150,'The evidence that supports the advancement of  fern over mosses is derived from ','biochemical similarities  ','','physiological records  ','molecular records','','','b','','utme','2006',160,'Admin','0000-00-00 00:00:00','2020-07-01 08:32:59'),(151,'A characteristic that best exemplifies the evolutionary advancement of mammals over other  vertebrates in the  ','terrestrial mode of life  ','possession  of paired limbs  ','a false foot  ','radial symmetry','','','c','','utme','2006',144,'Admin','0000-00-00 00:00:00','2020-06-21 11:23:03'),(152,'An organism which exhibits extracelluar digestion is  ','Paramecium','Rhizopus  ','Spirogyra  ','Amoeba  ','','','b','','utme','2006',154,'Admin','0000-00-00 00:00:00','2020-07-01 08:35:54'),(153,'The chromosomes of members of the kingdom  monera are within the','nucleus  ',' nucleolus  ',' cytoplasm   ',' Nucleoplasm','','','c','','utme','2007',162,'Admin','0000-00-00 00:00:00','2020-06-28 18:13:44'),(154,'A water medium is necessary for fertilization in','angisperms','ferns  ','fungi  ','conifers','','','b','','utme','2007',169,'Admin','0000-00-00 00:00:00','2020-07-01 09:27:01'),(155,'The process of shedding the exoskeleton of an arthropod is known as','instar formation','metamorphosis  ','tagmosis  ','Ecdysis','','','d','','utme','2007',159,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:33'),(156,'The part labeled IV is responsible for','ingestion   ','locomotion  ',' osmoregualtion  ','respiration','','','c','','utme','2007',149,'Admin','0000-00-00 00:00:00','2020-06-30 09:43:18'),(157,'Which of the following is common to the mosquito, housefly and blackfly?  ','Their  immature stages are aquatic   ','They undergo complete metamorphosis  ','Their adults have two pairs of wings   ','They are parasites of man','','','b','','utme','2007',143,'Admin','0000-00-00 00:00:00','2020-07-01 09:20:58'),(158,'Which of the following has the most primitive respiratory system?','Fish','Snail  ','Mouse','insect','','','b','','utme','2007',142,'Admin','0000-00-00 00:00:00','2020-06-28 17:31:34'),(159,'Moncot stems differ from dioct  stems in that monocots have','fewer vascular bundies',' no cambium  ','phloem with parenchyma   ',' no pith','','','b','','utme','2007',145,'Admin','0000-00-00 00:00:00','2020-06-30 15:19:11'),(160,'In mammals , the  organ directly on top of the kidney is the','prostate gland  ',' pancrease   ','thyroid gland  ',' adrenal gland','','','d','','utme','2007',136,'Admin','0000-00-00 00:00:00','2020-06-26 18:25:40'),(161,'The photosynthetic pigment is include  ','melanin and haemoglobin  ',' chlorophyll and carotenoids  ',' carotenoids and haemoglobin  ',' chloroplasts and cytochromes','','','b','','utme','2007',146,'Admin','0000-00-00 00:00:00','2020-06-25 12:06:54'),(162,'The pancreas secretes enzymes for the digestion of  ','fats, vitamins and cellulose',' fats, carbohydrates and vitamins  ','proteins, celluclose and minerals  ','fats, proteins and carbohydrates','','','d','','utme','2007',141,'Admin','0000-00-00 00:00:00','2020-06-24 20:59:33'),(163,'Which of the following uses diffusion as the principal method of gaseous exchange?','Rate  ','lizard','Earthworm  ','Grasshopper','','','c','','utme','2007',151,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(164,'The opening  and closing of the stoma are regulated by','osmosis   ','diffusion  ','transpiration  ','respiration','','','a','','utme','2007',142,'Admin','0000-00-00 00:00:00','2020-07-02 10:11:27'),(165,'The waste product of plants used in the conversion of hide to leather is','resin  ','tannin  ','gum  ','Alkaloid','','','b','','utme','2007',127,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(166,'The correct sequence of the movement of urea during urine formation is','Convoluted tubule_ glomerulus_Henle’s loop_ Bowman’s capsule_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tuble_ Henle’s loop_collecting tubule','convoluted tubule_ Bowman’s capsule_Henle’s loop _ glomerulus_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tubule_ Henle’s loop_convoluted tubule_collecting tubule','','','d','','utme','2007',142,'Admin','0000-00-00 00:00:00','2020-07-01 09:27:01'),(167,'Pineapple is an example of','a composite fruit  ','a simple fruit','an aggregate fruit','a dehiscent fruit','','','a','','utme','2007',136,'Admin','0000-00-00 00:00:00','2020-07-01 08:31:51'),(168,'Stunted growth and poor root development are a result of as deficiency in  ','calcium  ','sulphur  ','iron  ','phosphorous','','','a','','utme','2007',161,'Admin','0000-00-00 00:00:00','2020-06-28 21:03:04'),(169,'The highest level of ecological organization is the','niche','biosphere  ','population  ','Ecosystem','','','d','','utme','2007',149,'Admin','0000-00-00 00:00:00','2020-07-01 09:52:46'),(170,'A biotic factor which affects the distribution and abundance of organisms in a terrestrial  habitat is','competition  ','temperature  ','light  ','pH','','','a','','utme','2007',139,'Admin','0000-00-00 00:00:00','2020-07-01 09:52:46'),(171,'Which of the following is an example of parasitism?  ','Mistletoe growing on an orange tree','Fungi growing on a dead  tree branch  ','cattle egrets taking ticks from the body of cattle','a squirrel living in an abandoned nest of a bird','','','a','','utme','2007',138,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(172,'The organs that will be most useful  to giant  African rats in finding their way in underground habitats are the  ','Eyes   ','vibrissae','tails  ','Nostrils','','','b','','utme','2007',133,'Admin','0000-00-00 00:00:00','2020-07-01 09:51:33'),(173,'One adaptation  shown by hydrophytes in fresh water habitats is the','poor  development of roots and xylem tissues  ','well developed roots and supporting system  ','leaves reduced to spines  ','waxy  cuticle on shoot surface','','','a','','utme','2007',140,'Admin','0000-00-00 00:00:00','2020-07-01 09:33:18'),(174,'The mangrove swamp in Nigeria is restricted to the','Guinea savanna','Tropical rainforest','Sudan savanna   ','Sahel savanna','','','b','','utme','2007',139,'Admin','0000-00-00 00:00:00','2020-07-01 08:29:58'),(175,'In which of the following Nigerian states can montane vegetation be found?','Plateau','Taraba  ','Enugu  ','Bauchi','','','a','','utme','2007',134,'Admin','0000-00-00 00:00:00','2020-06-30 09:41:08'),(176,'The increasing order of the particle size in the following soil types  is','clay_silt_sand_gravel  ','Silt_clay-sand_gravel  ','clay_sand_slit_gravel','silt_sand_clay gravel','','','a','','utme','2007',167,'Admin','0000-00-00 00:00:00','2020-07-01 09:31:58'),(177,'A crucible  of 5gm weighted 10gm after filling with fresh soil. It is hen healed in an oven at 100oC for 1 hour. After cooling in a desiccators, the  weight was 8gm. The percentage of water in the soil is  ','20%','40%','6%','80%','','','b','','utme','2007',161,'Admin','0000-00-00 00:00:00','2020-06-20 19:14:36'),(178,'The causative agent of bird flu is a','virus  ','bacterium  ','fungus  ','protozoan   ','','','a','','utme','2007',146,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(179,'An accurate identification  of a rapist can be carried out by conducting a','blood group test  ','behavioural traits test  ','DNA analysis   ','RNA analysis','','','c','','utme','2007',158,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(180,'Which of  the following is true of cloning?','it involves the asexual multiplication of the tissues of the original organisms  ',' the clone is similar to but not exactly like the original organism   ','Only one cell of the original organism is needed to initiate the process','it is welcomed as an ethically  and morally sound science','','','c','','utme','2007',151,'Admin','0000-00-00 00:00:00','2020-07-01 08:58:41'),(181,'An example of a sex-linked  trait is the','ability to roll the tongue','possession of facial hair in adult humans  ','ability to grow long hair in females  ','colour of the skin in human','','','c','','utme','2007',154,'Admin','0000-00-00 00:00:00','2020-07-01 08:52:03'),(182,'Which of the following factors can bring about competition in a population? ',' Drought   ','Mortality','Dispersion   ','Emigration','','','d','','utme','2007',135,'Admin','0000-00-00 00:00:00','2020-06-28 12:42:34'),(183,'In lizards, the lowering  of the gular fold is used to','attract mates  ','frighten enemies','catch insects   ','defend their territory','','','b','','utme','2007',143,'Admin','0000-00-00 00:00:00','2020-07-01 09:33:18'),(184,'The type of protective adaptation exhibited by the animals is  ','flash colouration   ','disruptive  colouration','warming colouration','countershading  colouration','','','d','','utme','2007',149,'Admin','0000-00-00 00:00:00','2020-06-28 21:03:04'),(185,'An example of a fish that aestivates is','lung fish   ','shark','cat fish','croaker','','','a','','utme','2007',150,'Admin','0000-00-00 00:00:00','2020-06-26 12:17:15'),(186,'The theory  which supports the view that the large muscles developed by an athlete will be passed on to the offspring was proposed by','Darwin  ','Lamarck   ','Pasteur   ','Mendel.','','','b','','utme','2007',128,'Admin','0000-00-00 00:00:00','2020-07-01 09:54:22'),(187,'In terms of the number of individuals, which of the following  taxa is most inclusive?','order','family','class  ','species','','','c','','utme','2008',148,'Admin','0000-00-00 00:00:00','2020-07-01 08:35:54'),(188,'A characteristic that can possibly be shared by both living  and non-living organisms is  ','locomotion  ','irritability','increase in biomass','increase in size','','','d','','utme','2008',151,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:33'),(189,'The cell of an onion bulb can be differentiated from a cheek cell by the presence of  ','plasmalemma  ',' chloroplast','cell wall  ',' nucleus','','','c','','utme','2008',140,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(190,'In plants, the structure that performs  a similar  function with the testis is in mammals  is the   ','stigma','filament  ','anther','replace','','','c','','utme','2008',157,'Admin','0000-00-00 00:00:00','2020-07-01 09:51:33'),(191,'The bacteria type that are arranged in chains are the','Staphylococci  ','clostridia','streptococci','Bacilli','','','c','','utme','2008',145,'Admin','0000-00-00 00:00:00','2020-06-25 11:49:33'),(192,'The most abundant group of organism in the animal kingdom is','Mammalian','Aves  ','Annelida  ','Insecta','','','d','','utme','2008',126,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(193,'Radial symmetry is a feature common to the  ','platyhelminthes','nematodes  ','coelentrates','arthropods','','','c','','utme','2008',148,'Admin','0000-00-00 00:00:00','2020-07-01 09:52:46'),(194,'Which of the following  is used mainly for balancing in fish?','The causal fin  ','the pectoral fin','the anal fin  ','The dorsal fin','','','d','','utme','2008',151,'Admin','0000-00-00 00:00:00','2020-07-02 10:27:34'),(195,'The beak of a duck is structurally adapted  for','scooping and sieving food  ','catching and gasping food  ','picking and cracking food  ','boring and sucking food  ','','','a','','utme','2008',144,'Admin','0000-00-00 00:00:00','2020-07-01 09:53:32'),(196,'The most important characteristic that makes reptiles to conquer terrestrial habitats is the possession of','long tail','scaly skin','sharp claw','amniotic egg','','','b','','utme','2008',150,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(197,'Inn a dictyledonous stem, the zone between the epidermis and the pericycle is the','cortex  ','stele','xylem','phloem','','','a','','utme','2008',149,'Admin','0000-00-00 00:00:00','2020-07-02 10:18:00'),(198,'The order of passage of food in the digestive system is','ileum caecum large intestine rectum','ileum colon caecum rectum','large intestine ileum caecum rectum','colon caeum ileum rectum  ','','','b','','utme','2008',139,'Admin','0000-00-00 00:00:00','2020-07-01 09:35:56'),(199,'Insectivorous plants traps and kill their prey to derive  ','phosphorous  ','calcium  ','nitrogen','Zinc','','','c','','utme','2008',141,'Admin','0000-00-00 00:00:00','2020-07-01 09:30:58'),(200,'In the alimentary system of a bird, the function  of teeth is carried out by the','crop  ','Beak  ','Gizzard','tongue','','','c','','utme','2008',124,'Admin','0000-00-00 00:00:00','2020-06-29 15:51:16'),(201,'What will happen when two equal  sized pieces of unripe pawpaw labeled X and Y are dropped into equal volumes of concentrated salt solution and distilled water respectively?  ','Pawpaw X will become  turgid  ','Both  will increase in size','pawpaw Y will become turgid','Both will decrease in size','','','c','','utme','2008',147,'Admin','0000-00-00 00:00:00','2020-06-26 12:17:15'),(202,'Exhaled air differs from inhaled air in that it  ','contains less amount of carbon (IV) oxide  ','is usually lower in temperature','often has more oxygen  ','usually has more water vapour','','','d','','utme','2008',131,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(203,'In the mammalian kidney,  the Bowman’s  capsule is located in the','ureter','Pelvis  ','cortex','medulla  ','','','d','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-07-01 08:35:54'),(204,'A plant  parenchyma cell also acts as a supporting tissue when it','becomes faccid  ','contains cystals  ','becomes turgid','is pigmented','','','c','','utme','2008',137,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(205,'During ovulation, an egg is released from the','corpus luteum  ','ovarian funnel  ','Graafian follicle','fallopian tube','','','c','','utme','2008',145,'Admin','0000-00-00 00:00:00','2020-06-30 20:03:19'),(206,'The transmission of impulses along a nerve fibre is characterized by','hormonal and temperature changes   ','electrical and ionic changes  ','hormonal changes  ','electrostatic changes','','','b','','utme','2008',131,'Admin','0000-00-00 00:00:00','2020-06-25 11:49:33'),(207,'The major consequences of bush burning in an ecosystem is  ','the loss of water absorbing ability of the soil','the loss of biological diversity','a decrease in animal population','an increase in soil fertility','','','b','','utme','2008',145,'Admin','0000-00-00 00:00:00','2020-06-23 17:32:38'),(208,'Which of the following associations is an example of mutalism?','hydra viridis and zoochlorellae','human and lice   ','Shark and Remora fish  ','Bread and Rhizopus stolonifer  ','','','a','','utme','2008',159,'Admin','0000-00-00 00:00:00','2020-07-01 08:53:21'),(209,'In a typical freshwater habitat, the edge of the stream or pond constitutes the','tidal zone  ','interidal zone  ','littoral zone  ','euphotic zone','','','c','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-02 10:11:27'),(210,'The main ecological  problem facing interidal organisms is','dessciation','floatation','salinity','humidity','','','a','','utme','2008',154,'Admin','0000-00-00 00:00:00','2020-07-01 09:48:10'),(211,'Stomata  of some plants are sunken and protected by hairs. These are features of ','mesophytes','epiphtes  ','hydrophytes  ','Xerophytes','','','d','','utme','2008',167,'Admin','0000-00-00 00:00:00','2020-06-28 18:13:44'),(212,'An ecological factor that will have the most  limiting effect on the abundance of phytoplankton in a turbid pond is   ','pH  ','oxygen','light  ','temperature','','','c','','utme','2008',160,'Admin','0000-00-00 00:00:00','2020-07-01 09:20:58'),(213,'In an experiment to determine the percentage of air in a soil  sample, the  Following readings were recorded:\\nVolume of water inn a measuring cylinder = 500cm3  \\nVolume of soil added to water= 350cm2\\nVolume of water andn soil after stirring= 800cm2\\nThe percentage of air in the soil sample is \\n','6.25%','10. 36%    ','14.28%','43.28%','','','c','','utme','2008',147,'Admin','0000-00-00 00:00:00','2020-07-01 09:27:01'),(214,'A boy who is fond of swimming in a pond finds himself passing urine with traces of blood. He is likely to have contracted  ','Schistosomiasis','onchoerciasis','poliomyelitis  ','salmonellosis','','','a','','utme','2008',154,'Admin','0000-00-00 00:00:00','2020-07-01 08:57:34'),(215,'The easiest way to establish  the level of pollution in a local stream is to measure the level of','oxygen','carbon(IV) oxide','ammonia','alkalinity','','','a','','utme','2008',159,'Admin','0000-00-00 00:00:00','2020-06-20 15:20:30'),(216,'Which of the following is a major case of variation among  organisms?  ','inbreeding  ','backcrossing   ','sexual reproduction','Gene dominance','','','c','','utme','2008',149,'Admin','0000-00-00 00:00:00','2020-07-01 09:30:58'),(217,'The Rhesus factor of blood was first identified in a category of  ','monkeys   ','human females','human males  ','chimpanzees','','','a','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-06-26 12:17:15'),(218,'Genetically modified food products have not become  universally accepted because','They are not tasty as others produced  by conventional means','they are usually costlier than others produced by conventional means','their  efforts on human consumers is not yet fully understood   ','the technology can be applied only  in developed  countries','','','c','','utme','2008',155,'Admin','0000-00-00 00:00:00','2020-06-30 09:41:20'),(219,'A major  adaptive feature of endo-parasites is the   ','loss of the organ of movement  ','presence of claws  ','loss of the central nervous system  ','presence of piercing mouthparts','','','a','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-06-28 12:26:38'),(220,'The ability of a chameleon to change its colour is an adaptive feature for  ','attraction','defence  ','display','attack     ','','','b','','utme','2008',141,'Admin','0000-00-00 00:00:00','2020-06-23 12:42:49'),(221,'Which of the following is the most advanced evolutionary development in plants?  (a) possession of unicellular structures  ','possession of unicellular structures  ','Development of flowers','dispersal of spores  ','Development of secondary thickening','','','b','','utme','2008',140,'Admin','0000-00-00 00:00:00','2020-07-01 09:54:22'),(222,'The natural process that produces adaptive evolutionary  changes is  ','mutation  ','gene flow  ','genetic drift','natural selection','','','d','','utme','2008',151,'Admin','0000-00-00 00:00:00','2020-06-24 09:02:44'),(223,'What is the level of organization  of an onion bulb?','tissue  ','organ','systemic','organism','','','b','','utme','2009',150,'Admin','0000-00-00 00:00:00','2020-07-01 08:53:21'),(224,'A characteristic exhibited by all living organism is  ','sexual reproduction   ','aerobic respiration  ','the ability to move from one place to another  ','the ability to remove unwanted substances.','','','d','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(225,'In a cell, the genes are carried by  ','nuclear membranes','chromatin threads  ','lysosomes','mitochondria','','','b','','utme','2009',151,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(226,'Alternation of a sexual and sexual modes of reproduction is found in','blue-green algae  ',' Euglena','fern',' maize','','','c','','utme','2009',154,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(227,'The first terrestrial vertebratese volved from','pisces  ','Reptilia  ','Amphibia  ','Mammalia','','','c','','utme','2009',158,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(228,'In plants, the structures that play roles similar to the arteries and veins of animals are the  ','xylem and phloem','root hairs and xylem  ','lenticels and phloem  ','roots and stems','','','a','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-01 09:17:19'),(229,'A blue-green alga is not a protophytes because','it is aquatic  ','its cells are prokaryotic','it cannot move','it is not a green plant','','','b','','utme','2009',211,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(230,'The feature that makes locomotion in water easy for fish is the','scaly body','slimy body  ','steam lined body','lateral line','','','c','','utme','2009',154,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(231,'Bird toes suitable for digging have claws that are  ','blunt','curved  ','hooked','sharp','','','a','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(232,'Chewing the cud is an adaptation peculiar to','herbivores','omnivores  ','rodents   ','ruminants','','','d','','utme','2009',165,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(233,'Which of the following is an example of a carnivorous plant?','Hydra','Bladderwort','Yeast','Spirogyra','','','b','','utme','2009',170,'Admin','0000-00-00 00:00:00','2020-07-01 08:52:03'),(234,'The part of the alimentary system of a bird where food is  ground into small particles is the','cloaca  ','stomach  ','crop  ','gizzard','','','d','','utme','2009',134,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(235,'Which of the following describes the sequence of blood flow fro the heart to a tissue?','Heart_artery_arteriole _ tissue','Heart_vein_venule _tissue','Heart _ venule _vein_tissue','Heart _arteriole _artery_tissue','','','a','','utme','2009',156,'Admin','0000-00-00 00:00:00','2020-07-01 09:31:58'),(236,'The enzymes of the glycolytic pathway are located in  the','mitochondria  ','gastric juice','plasma','cytoplasm','','','d','','utme','2009',135,'Admin','0000-00-00 00:00:00','2020-07-01 09:41:56'),(237,'In insects, the structure that performs  the same function as the kidney in man is the','nephridium','flame cell  ','malphigiann tubule','trachea','','','c','','utme','2009',169,'Admin','0000-00-00 00:00:00','2020-07-01 09:27:01'),(238,'The axial  skeleton is found in the','skull , ribs, vertebral column and breast bone   ','skull humerus, vertebral column and ribs  ',' breastbone, clavicle, rids and vertebral column',' femur, sternum, ulnae and skull','','','a','','utme','2009',160,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(239,'The reproductive  system of a male mammal is made up of  ','claspers, prostrate, gland, sperm duct and vas deferns','testis, prostrate gland, sperm duct and vas deferns  ','oviduct , urethra, testis and sperm  duct','testis, uterus, prostrate gland and sperm duct.','','','b','','utme','2009',141,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(240,'In a bean seed, absorption of water at the beginning  of germination is through the  ','hilum','micropyle  ','testa  ','plumule','','','b','','utme','2009',146,'Admin','0000-00-00 00:00:00','2020-07-01 09:35:56'),(241,'The most important ecological factor in a terrestrial environment is','rainfall',' humidity','wind',' soil','','','a','','utme','2009',164,'Admin','0000-00-00 00:00:00','2020-07-02 09:54:27'),(242,'The association between bacteria residing I the caecum and the ruminant is  ','parasitism  ','predation  ','saprophytism  ','mutalism','','','d','','utme','2009',162,'Admin','0000-00-00 00:00:00','2020-07-01 09:17:19'),(243,'A marine protozoan is likely to have no contractile acuole  mainly because the cytoplasm is  ','isotonic to sea water','hypotonic to sea water','hypertonic to sea water','impervious to seas water','','','a','','utme','2009',161,'Admin','0000-00-00 00:00:00','2020-07-01 08:31:51'),(244,'In freshwater  marshes and swamps, the most important abiotic factor that organisms have to','nature  of substratum  ','high salinity  ','high temperature  ','low pH','','','a','','utme','2009',148,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(245,'Which of the following biomass could be characterized by very low rainfall, cold nights, hardays and fast blooming plants?  ','Northern Guinea savanna','southern Guinea savanna  ','Tropical desert',' montane forest','','','b','','utme','2009',145,'Admin','0000-00-00 00:00:00','2020-07-02 10:28:46'),(246,'The optimum temperature  for the growth of the organism is','25oC','50oC','75oC   ','100oC','','','b','','utme','2009',162,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(247,'Mass of a crucible = 10g\\n Mass of a crucible and soil before heating = -29g.\\nMass of a crucible and sol after heating = 18g. From the information above, determine the percentage of wter in the given soil sample?  \\n','20%','25%','40%','50%','','','d','','utme','2009',143,'Admin','0000-00-00 00:00:00','2020-07-01 09:48:10'),(248,'I Onchocerciasis  II Schistosomiasis  \\nIII Salmonellosis  IV Meningitis \\nWhich of the diseases listed above are associated with water? \\n','I and II only  ','II, III and IV  ','I, II and III  ','II and IV','','','c','','utme','2009',167,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(249,'The major cause of global warming is the','Burning of fossil fuel','construction of dams','use of electricity  ','exploration of space','','','a','','utme','2009',149,'Admin','0000-00-00 00:00:00','2020-07-01 08:55:05'),(250,'The uniqueness of an individual organism in a population is accounted for by','evolution','variation  ','adaptation','mutation','','','b','','utme','2009',169,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(251,'A phenotypic character with intermediate forms that can be graded from one extreme to the other is referred to as','discontinous variation   ','continuous variation','a mutant','a genome','','','b','','utme','2009',145,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(252,'A farmer’s assumption that the seed from a good harvest will produce a good yield is explained by the theory  of','evolution','adaptation','variation','heredity','','','d','','utme','2009',153,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(253,'In Mendelian inheritance, discontinuous characters are controlled by the','centromeres','alleles','chromosomes','chromatids','','','b','','utme','2009',169,'Admin','0000-00-00 00:00:00','2020-07-01 08:53:21'),(254,'A woman with the ability to roll her tongue (Tt) marries a man who cannot roll his tongue  (tt). What is the probability of each of their children being a tongue roller?','100%','75%','50%','25%','','','c','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-01 09:51:33'),(255,'A health condition that isi known to have resulted from gene mutation is  ','heamophilia ','colour blindeness  ',' sickle cell anaemia  ',' anaemia  ','','','c','','utme','2009',151,'Admin','0000-00-00 00:00:00','2020-07-01 09:33:18'),(256,'Plants that grow in an area that is neither too wet nor too dry are','xerophytes  ','mesophytes  ','epiphytes','hydrophytes','','','b','','utme','2009',159,'Admin','0000-00-00 00:00:00','2020-07-01 09:35:56'),(257,'The part of a domestic fowl responsible  for preventing heat loss is the  ','filoplume ','contour feather  ',' down feather',' quill','','','c','','utme','2009',149,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(258,'Which of the following animals is most adapted for water conservation?','Earthworms  ','mammals   ','Flatworms  ','Insects','','','d','','utme','2009',138,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(259,'The specialized pigment cells that are involved in colouration and colour change in animals are the','xanthophyl','chromatophores','chlorophyll','mechanic','','','d','','utme','2009',136,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(260,'During the dry season in the tropics, the body metabolism of some animals slows to a minimal level in a process referred to as','hibernation','aestivation','dormancy','sense scense  ','','','b','','utme','2009',139,'Admin','0000-00-00 00:00:00','2020-07-01 09:41:56'),(261,'According to Darwin, the driving force behind evolutionary change is','atural selection','genetic drift  ','mutation','gene flow','','','a','','utme','2009',154,'Admin','0000-00-00 00:00:00','2020-07-01 09:34:06'),(262,'Which of the following characterizes a mature plant cell?','The cytoplasm fills up the entire cell space',' The nucleus is pushed to the centre of the cell',' the cell wall is made up of cellulose','The nucleus is small and irregular in shape','','','d','','utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-01 08:57:34'),(263,'Which of the following is NOT a function of the nucleus of a cell?  ','it controls the life processes of the cell','It translates genetic formation for   the manufacture of proteins','it stores and carries hereditary information  ','it sis a reservoir of energy for the cell','','','d','','utme','2010',178,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(264,'The dominant phase in the life cycle of a fern is the','gametophyte  ',' prothallus','sporophyte  ',' antheridium','','','c','','utme','2010',168,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(265,'Parental care is exhibited by','toads','snails',' earthworms',' birds','','','d','','utme','2010',178,'Admin','0000-00-00 00:00:00','2020-07-01 09:48:10'),(266,'Which of the following groups of cells is devoid of true nuclei?','viruses','algae  ','Monera','Fungi','','','c','','utme','2010',182,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(267,'Which of the following is true of the transverse section of a dicot stem?','The epidermis is completely encircled by the cortex','The xylem is more interiorly located than the phloem',' The cambium lies between the cortex and the vascular bundles','The vascular bundles are randomly scattered within the  cortex','','','b','','utme','2010',174,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(268,'Which of the following is lacking in the diet of a person with kwashiorkor?','Vitamins  ','Proteins','Carbohydrates  ','Minerals','','','b','','utme','2010',184,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(269,'The mode of nutrition of sundew and bladderwort can be described as','autotrophic  ','saprophytic  ','holozoic   ','chemosynthetic','','','c','','utme','2010',147,'Admin','0000-00-00 00:00:00','2020-07-01 08:58:41'),(270,'When a mixture of a food substance fand Benedict’s solution was warmed, the solution changed from blue to brick red . This indicates the presence of','reducing  sugar','fatty acid','sucrose  ','amino acid','','','a','','utme','2010',163,'Admin','0000-00-00 00:00:00','2020-06-30 20:04:25'),(271,'The primary structure responsible for pumping blood for circulation through the mammalian circulatory systems is the','veins  ','right auricle  ','arteries','left ventricle','','','d','','utme','2010',184,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(272,'Circulation of blood to all parts of the body except the lungs is through  ','the pulmonary artery  ','systemic circulation','the lymphatic system','pulmonary circulation','','','b','','utme','2010',180,'Admin','0000-00-00 00:00:00','2020-07-02 19:58:28'),(273,'Yeast respires anaerobically  to covert simple sugar to carbon (IV) oxide and','alcohol  ','acid','oxygen','water','','','a','','utme','2010',189,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(274,'The sheet of muscle that separates the thoracic and the abdominal cavities is the ','diaphragm  ','intercostal muscles',' pleural membrane   ',' pericardium','','','c','','utme','2010',178,'Admin','0000-00-00 00:00:00','2020-07-02 10:11:17'),(275,'The oily substance that lubricates the mammalian hair to keep it flexible ad water repellent is secreted by the','sweat glands','sebaceous glands','fatty  cells','granular layer','','','b','','utme','2010',175,'Admin','0000-00-00 00:00:00','2020-07-01 09:34:06'),(276,'The outer layer of the kidney where the Bowman’s capsules are found is the','cortex','pelvis  ','medulla','pyramid','','','a','','utme','2010',179,'Admin','0000-00-00 00:00:00','2020-07-01 08:28:38'),(277,'Which of the following stimuli is likely to elicit a nastic response in an organism? ','Touch  ','Light intensity  ','Chemical substances  ','gravity','','','a','','utme','2010',168,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(278,'In the male reproductive system of a mammal, sperm is stored in the','van deferens  ','urethra','epididymis  ','seminiferous tubules   ','','','c','','utme','2010',175,'Admin','0000-00-00 00:00:00','2020-06-29 19:45:01'),(279,'Chemosynthetic organism are capable  of manufacturing their food  from simple inorganic substances through the process of','oxidation','denitrification','reduction','phosphorylation','','','a','','utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-01 09:31:58'),(280,'The part of the human gut  that has an acidic  content is the','stomach  ','duodenum  ','ileum','colon','','','a','','utme','2010',180,'Admin','0000-00-00 00:00:00','2020-07-01 09:30:58'),(281,'I. Stomata _ spirogyra   II alveoli _ earthworm  III malpighian tubule_mammal Iv.Contractile vacuole _protozoa \\nWhich of the above structures is correctly matched with the organisms in which it is found? \\n','III  ','II   ','I','IV','','','d','','utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-01 08:58:41'),(282,'A food chain always begins with a  ','consumer  ','decomposer  ','producer','primary  consumer','','','c','','utme','2010',175,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(283,'Mycorrhizae promote plant growth by','absorbing inorganic ions from the soil  ','protecting it from infection','helping it to utilize atmospheric nitrogen','serving as a growth regulator','','','a','','utme','2010',195,'Admin','0000-00-00 00:00:00','2020-06-30 00:45:46'),(284,'The barrier between maternal and foetal blood is the','placenta  ','liver','umbilical chord  ','uterine wall','','','a','','utme','2010',160,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(285,'The blood component  that has the greatest affinity for oxygen is the ','lymphocytes',' leucocytes','erythorocytes  ','thromboytes','','','c','','utme','2010',186,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(286,'Which of the following organisms is mainly  found in the marine habitat?','Achatina  ','Tilapia  ','Dog fish  ','Tortoise','','','c','','utme','2010',168,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(287,'The two halves of the pelvic girdle are jointed together at the  ','public  symphysis  ','ilium  ','pubis  ','obturator foramen','','','a','','utme','2010',200,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(288,'I. Adoption of appropriate nocturnal habits   II. Burrowing   III. adjusting their  internal body temperature   IV. Possession of many sweat pores.\\nWhich of the above are ways in which desert animals adapt to extreme heat of environment?  \\n','I and IV only  ','II and III only  ','I and II only  ','I, II and III only','','','d','','utme','2010',181,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(289,'Low annual rainfall, sparse vegetation, high dermal temperatures and cold nights are characteristics features of the','tropical  rainforest  ','desert   ','mundane forest','guinea savanna','','','b','','utme','2010',177,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(290,'The average number of individuals of a species  per unit area of the habitat is the ',' population density','population frequency  ','population size','population distribution','','','a','','utme','2010',200,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(291,'The loss of soil through erosion can be reduced by','watering','crop rotation  ','maturing  ','irrigation','','','b','','utme','2010',189,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(292,'The vector for yellow fever is  ','edges mosquito  ','anopheles mosquito  ','tsetse fly  ','blackly','','','a','','utme','2010',193,'Admin','0000-00-00 00:00:00','2020-07-01 09:48:10'),(293,'The protozoan plasmodium falciparum is transmitted by','female anopheles mosquitoes  ','female Aedes mosquitoes  ','female Culex mosquitoes   ','Female  blackfly','','','a','','utme','2010',162,'Admin','0000-00-00 00:00:00','2020-06-30 20:04:25'),(294,'A dilute solution of phenylthiocarbamide tastes bitter to some people  and is tasteless to others. This is an example of  ','taste bud variation','discontinuous variation   ','morphological variation',' continuous variation','','','b','','utme','2010',183,'Admin','0000-00-00 00:00:00','2020-07-01 08:29:58'),(295,'Throxne and adrenalin are examples of hormones which control','blood grouping','tongue rolling  ','behavioural patterns','colour variation ','','','c','','utme','2010',182,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(296,'A pair of genes that control a trait is referred to as','anallele','recessive','dominant  ','ahybrid','','','a','','utme','2010',199,'Admin','0000-00-00 00:00:00','2020-07-01 08:53:21'),(297,'The chromosome number of a cell before and after the process of meiosis is conventionally represented as','2n_2n   ','n_n  ','n-2n  ','2n-n','','','d','','utme','2010',187,'Admin','0000-00-00 00:00:00','2020-06-30 09:41:20'),(298,'If both parents are heterozygous for trait, he probability that an offspring will be recessive for that trait is','¾   ','½    ','¼','1','','','c','','utme','2010',183,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(299,'At what stage in the life history of a mammal is the sex of an individual set?','At adolescence','At puberty  ','At birth  ','At conception','','','d','','utme','2010',191,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(300,'The main distinguishing features between the soldier termite and other members of the caste are the','presence of wings, possession of a small head and large thorax','presence of wings, possession of a large thorax  and a small head','absence of wings, possession off strong mandibles and a large head','absence of wings, possession of big head and the absence of mandible.','','','c','','utme','2010',177,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(301,'The flippers of a whale  and the fins of a fish are examples of','divergent evolution  ','co evolution','continuous variation','convergent evolution','','','a','','utme','2010',183,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(302,'The function of the red head in male Agama lizards is to','scare other males from the territory  ','attract female lizards for mating purposes  ','warn predators of the distastefulness of the animal  ','Conceal and camouflage the animal from predators','','','b','','utme','2011',121,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(303,'In which of the following species is the biomass of an individual the smallest?','Agama sp  ','Bufo sp','spirogyra sp   ','Tilapia sp','','','c','','utme','2011',164,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(304,'Seed plants are divided into','angiosperms and gymnosperms','monocotyledons and dicotyledons','thallophyes and pbryophytes  ','Tracheophytes and ferns','','','a','','utme','2011',134,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(305,'In which of the following groups of vertebrates is parental  care mostly exhibited? ','  Amphibia','Aves  ','Mammalia  ','Reptilia','','','c','','utme','2011',154,'Admin','0000-00-00 00:00:00','2020-07-01 09:54:22'),(306,'The adult form of III is a vector of  ','river blindness','cholera','elephantiasis','sleeping sickness','','','c','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(307,'The adaptive importance of nuptial flight from termite colonies is to','provide abundant food for birds and other animals during the early rains','ensure cross breeding between members of one colony  and another','expel  the reproductive so as to provide  enough food for other members','disperse the reproductive in order to establish  new colonies','','','d','','utme','2011',141,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(308,'Which of the following can cause shrinkage  of living cells?  ','Isotonic solution   ','Delonized water  ','Hypertonic solution','hypotonic solution','','','c','','utme','2011',153,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(309,'Which of the following is true of leucocytes?  ','They are most numerous and ramify all cells  ','They are large and nucleated  ','They are involved in blood clotting','They are respiratory pigments','','','b','','utme','2011',153,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(310,'The conversion of a nutrient into a molecule in the body of a consumer is referred to a s  ','assimilation','absorption  ','inhibition','digestion','','','d','','utme','2011',189,'Admin','0000-00-00 00:00:00','2020-07-01 09:34:06'),(311,'The ability  of a living organism to detect and respond to changes in the environment is referred to as','irritability','growth    ','taxis','locomotion','','','a','','utme','2011',142,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(312,'In mammals, the exchange of nutrients and metabolic products occurs in the','oesophagus','trachea','lymph   ','lungs','','','c','','utme','2011',147,'Admin','0000-00-00 00:00:00','2020-07-01 09:33:18'),(313,'An example of an endospermous seed is   ','cashew  nut  ','cottons seed','bean seed  ','maize grain','','','d','','utme','2011',147,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(314,'I. Parasitism _ Sundew    II Autrrophism_Amoeba    III Saprophytism_ Alga  IV. Heterotrophism- Agama. Which of the above modes of nutrition is correctly matched with the organism that  exhibits it?','III','IV  ','I','II','','','b','','utme','2011',147,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(315,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nIn which of the test tubes will glucose be detected after complete hydrolysis?\\n','II and III only','I only','I, II and III   ','I and II only','','','a','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(316,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nThe enzyme involved in the hydrolysis is\\n','erepsin  ','perilymph   ','maltase  ','rennin','','','c','','utme','2011',157,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(317,'The part of the mammalian ear responsible for the maintenance of balance is the ','pinna   ',' perilymph  ',' Ossicles   ',' cochlea','','','d','','utme','2011',154,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(318,'The path followed by air as it passes through the lungs in mammals is  ','bronchi_ trachea_ alveoli_ bronchioles  ','Trachea _ Bronchiole _ bronchi_ alveoli   ','bornchioles _ alveoli _ bronchi_ trachea   ','trachea_ bronchi _ bronchioles_ alveoli','','','d','','utme','2011',157,'Admin','0000-00-00 00:00:00','2020-07-01 09:53:32'),(319,'The movement response of a cockroach away  from a light source can be described as  ','negative phototaxism  ','negative photropism','positive  photropism  ','positive phototaxism','','','a','','utme','2011',143,'Admin','0000-00-00 00:00:00','2020-07-01 08:28:38'),(320,'The vascular tissues in higher plants are responsible for  ','suction pressure  ','transpiration pull','the transport of gases and water   ','the movement of food and water','','','d','','utme','2011',162,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(321,'Which of the following organs regulates the levels of water, salts, hydrogen ions and urea in the mammalian blood?','kidney','bladder  ','colon  ','liver','','','a','','utme','2011',140,'Admin','0000-00-00 00:00:00','2020-06-29 14:52:22'),(322,'The sequence of the one way gaseous exchange mechanism in a fish is','gills _ operculum _ mouth','mouth_operculum_ gills  ','mouth _gills _operculum','operculum _ gills_ mouth','','','c','','utme','2011',147,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(323,'The  type of asexual reproduction that is common to both paramecium and protists is','speculation  ','fragmentation','fission','budding','','','c','','utme','2011',137,'Admin','0000-00-00 00:00:00','2020-07-01 09:35:56'),(324,'In nature, plants and animals are perpetually engaged in mutulism because  ','all animals rely on food produced  by plants','they  utilize respiratory wastes of each other  ','they are neighbours  ','they are rivals','','','b','','utme','2011',118,'Admin','0000-00-00 00:00:00','2020-07-01 09:31:58'),(325,'In an experiment to determine the percentage of humus and water in a soil sample, the following results were obtained. \\nWeight of the evaporating basin alone = 80.5g   Weight of basin and soil = 101.5g    Weight after drying the soil in the oven = 99.0g    Weight of basin and roasted soil = 95.5h\\nThe percentage of humus in the soil sample is  \\n','17.60%','26.70%','16.20%','16.70%','','','d','','utme','2011',133,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(326,'An example of a filter-feeding animals is','butterly  ','whale','mosquito  ','shark','','','b','','utme','2011',136,'Admin','0000-00-00 00:00:00','2020-07-01 09:17:19'),(327,'Which of the  following is a feature of the population Pyramid of a developing country?  ','Low birth rate','low death rate  ','short lifespan','long lifespan','','','c','','utme','2011',150,'Admin','0000-00-00 00:00:00','2020-07-01 09:35:56'),(328,'the interaction of a community of organisms with its abiotic environment constitutes','a food chain','an ecosystem  ','a microhabitat','a niche','','','b','','utme','2011',153,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(329,'The vector of the malaria parasite is a','female anopheles mosquito  ','male culex mosquitoes','female culex mosquito  ','female Aids mosquito','','','a','','utme','2011',153,'Admin','0000-00-00 00:00:00','2020-07-01 08:58:41'),(330,'Which of the following  instruments is used  to measure relative humidity?','Thermometer  ','Hygrometer  ','Anemometer','Hydrometer','','','b','','utme','2011',161,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(331,'Exo-erythrocytic phase  of the life cycle  of malaria parasite occurs in the','reticuloendothelial cells of humans','maphigian tubules of mosquito','brain of humans  ','liver  of humans','','','d','','utme','2011',150,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(332,'Habitats are generally classified into  ','aquatic and terrestrial','arboreal  and marine biomes','microhabitats and macro habitats','biotic and abiotic','','','a','','utme','2011',161,'Admin','0000-00-00 00:00:00','2020-06-29 17:23:26'),(333,'Drancunculiasis can be contacted  through  ','drinking contaminated water','bathing in contaminated water  ','bites of blackfly   ','eating contaminated food','','','b','','utme','2011',162,'Admin','0000-00-00 00:00:00','2020-06-28 20:32:57'),(334,'Which of the following groups of environmental factors are density dependent?  ','Temperature, salinity, predation and disease   ',' Food, predation, disease and accumulation of metabolites  ','Temperature, food disease and light  ','food, salinity, accumulation  of metabolites and light','','','b','','utme','2011',164,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(335,'Millet, sorghum, maize and onions are common crops grown in Nigerian in the  (a) Sudan savanna','montane forests   ','Sahel savanna','Tropical rainforests','','','','a','','utme','2011',132,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(336,'In which of the following biomes is the south western part of Nigeria located?  ','Tropical rainforest  ','Tropical woodland  ','desert','Temperature forest','','','a','','utme','2011',150,'Admin','0000-00-00 00:00:00','2020-07-01 08:52:03'),(337,'Lack of space in a population  could lead to an increase in','birth rate','disease rate','drought   ','water  scarcity','','','b','','utme','2011',155,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(338,'The inheritable characters that are determined by a gene located only on the X-chromosome is  ','sex linked','homozygous  ','dominant  ','recessive','','','a','','utme','2011',144,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(339,'If the cross of a red  flowered plant with a white flowered plant produces a pink flowered plant, it is an example of','incomplete dominance  ',' mutation  ',' linkage','co dominance','','','d','','utme','2011',166,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(340,'Which of the following theories was NOT considered by Darwin in his evolutionary theory?','survival of the fittest  ','use and disuse  ','competition ',' variation','','','b','','utme','2011',139,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(341,'The crossing of individuals of the same species with different genetic characters is',' polygenic inheritance  ',' non disjunction  ','inbreeding','cross breeding','','','c','','utme','2011',143,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(342,'The number of alleles controlling  blood groups in humans is','4','5','2','3','','','d','','utme','2011',158,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(343,'During blood transfusion, agglutination may occur as a result of the reaction between','two different antigens  ','two different antibodies  ','similar antigens and antibodies  ','contrasting antigens and antibodies','','','d','','utme','2011',157,'Admin','0000-00-00 00:00:00','2020-07-01 09:54:22'),(344,'The fallacy in Lamarck’s evolutionary theory was the  assumption that','acquired traits  are heritable','acquired traits are seldom formed','traits  are acquired  through the use of body parts  ','traits are acquired through disuse  of body parts.','','','c','','utme','2011',164,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(345,'The brightly coloured eye spots on the hind wings of a moth are an example of ',' disruptive colouration',' continuous variation    ','divergent  Evolution','convergent  evolution','','','d','','utme','2011',142,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(346,'Which of the following is most advanced in the evolutionary trend of animals?  ',' Liver fluke  ','Earthworm','Snail  ','cockroach','','','d','','utme','2012',170,'Admin','0000-00-00 00:00:00','2020-06-25 12:06:54'),(347,'Which of the following is the lowest category of  classification?  ','Class   ','species  ','Family','Genus','','','b','','utme','2012',157,'Admin','0000-00-00 00:00:00','2020-07-01 08:26:42'),(348,'Plants  that show secondary growth are usually found among the','thallophytes','pteridophytes','monocotyledons  ','dicotyledons','','','d','','utme','2012',159,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(349,'The fungi are a distinct group of eukaryotes mainly  because they have  ','spores  ','no chlorophyll  ','many fruiting bodies','sexual and asexual reproduction','','','d','','utme','2012',161,'Admin','0000-00-00 00:00:00','2020-06-25 12:00:15'),(350,'An arthropod that is destructive at the early stage of its life cycle is','butterfly  ','mosquito  ','bee','millipede','','','a','','utme','2012',140,'Admin','0000-00-00 00:00:00','2020-07-02 10:18:00'),(351,'An animal body that can be cut along its axis in any plane to give two identical parts is said to be  ','radically  symmetrical','bilaterally symmetrical','asymmetrical','symmetrical','','','a','','utme','2012',137,'Admin','0000-00-00 00:00:00','2020-06-26 19:07:57'),(352,'Which  of the following possesses mammary gland?','Dogfish','Whale  ','Shark  ','Catfish','','','b','','utme','2012',175,'Admin','0000-00-00 00:00:00','2020-07-01 09:17:19'),(353,'The feature  that links birds to reptiles in evolution is the possession of  ','feathers  ','beak  ','skeleton','scales','','','d','','utme','2012',146,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(354,'Counter shading is an adaptive  feature that enables animals to  ','flight enemies  ','remain undetected','warn enemies  ','attract mates','','','b','','utme','2012',149,'Admin','0000-00-00 00:00:00','2020-07-02 19:39:44'),(355,'Which of the following plant structures lacks a waterproof of cuticle?  ','leaf  ','stem  ','root','shoot','','','c','','utme','2012',155,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:12'),(356,'In the mammalian male reproductive system, the part that serves as a passage for both urine and semen is the ','urethra  ','ureter  ','bladder','seminal vesicle','','','a','','utme','2012',141,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(357,'In plants, which of the  following is required in minute quantities  for growth?','copper  ','potassium','phosphorous','sodium  ','','','a','','utme','2012',153,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:51'),(358,'Which of the following organisms is both parasitic and  autotrophic?  ','Sundew  ','Loranthus','Rhizopus  ','tapeworm','','','a','','utme','2012',149,'Admin','0000-00-00 00:00:00','2020-06-28 20:34:51'),(359,'A function of the hydrochloric acid produced in the human stomach during digestion is to  ','neutralize the effect of bile   ','coagulate milk protein and emulsify fats  ','stop the action of ptyalin  ','break up food into smaller particles','','','c','','utme','2012',157,'Admin','0000-00-00 00:00:00','2020-06-28 20:32:06'),(360,'Which of the following is a polysaccharide?','Glucose  ','sucrose','Maltose   ','Cellulose','','','d','','utme','2012',153,'Admin','0000-00-00 00:00:00','2020-07-01 08:55:05'),(361,'In the kidney of mammals, the site of ultra filtration is the','urinferous tuble','Bowman capsule  ','loop of Henle  ','renal tuble','','','b','','utme','2012',136,'Admin','0000-00-00 00:00:00','2020-07-01 09:33:18'),(362,'Which of the following  is involved1 in secondary  thickening in plants?','collenchyma  and  xylem cells  ','Vascular cambium and collenchyma’s cells  ','vascular cambium and cork cambium','Cork cambium and sclerenchyma','','','c','','utme','2012',150,'Admin','0000-00-00 00:00:00','2020-07-01 08:57:34'),(363,'An example of a fruit  that develops from a single carpel is','(a)okro  ','tomato','bean  ','orange','','','c','','utme','2012',141,'Admin','0000-00-00 00:00:00','2020-07-01 09:52:46'),(364,'Plant  growth can be artificially stimulated by the addition of  ','gibberellin  ','kinin','abscisic acid  ','ethylene','','','a','','utme','2012',149,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(365,'The autonomic nervous system consists of neurons that control the','voluntary  muscle','heart beat','tongue  ','hands','','','b','','utme','2012',157,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:33'),(366,'Plants of temperate origin can be grown in tropical areas in the vegetation zones of the','rain forest   ','Guinea savanna   ','Sudan savanna','montane forest','','','d','','utme','2012',157,'Admin','0000-00-00 00:00:00','2020-06-26 00:14:46'),(367,'The water cycle is maintained mainly by   ','evaporation  of water in the environment  ','evaporation and condensation of water  in the environment  ','condensation of water in the environment  ','transpiration and respiration in plants','','','b','','utme','2012',136,'Admin','0000-00-00 00:00:00','2020-06-17 20:34:39'),(368,'Organisms living in an estuarine habitat are adapted to  ','withstand   wide fluctuations in temperature   ','survive only in water with low salinity   ','withstand wide fluctuations in salinity   ','feed only on phytoplankton and dead organic matter.','','','c','','utme','2012',135,'Admin','0000-00-00 00:00:00','2020-07-02 10:27:50'),(369,'The presence of stilt roots, pneumatophores, sunken stomata and salt glands are adaptive features of plants found in the','tropical rainforest','mangrove swamps  ','grassland  ','montane forest','','','b','','utme','2012',134,'Admin','0000-00-00 00:00:00','2020-06-25 12:36:12'),(370,'Which of the following animals an exist solely on the water they get from food and metabolic reactions?  ','Forest arboreal dwellers  ','Desert dwellers','forest ground dwellers','rainforest dwellers','','','b','','utme','2012',155,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(371,'The most likely first colonizers of a bare rock are  ','mosses  ','ferns','lichen  ','fungi','','','c','','utme','2012',149,'Admin','0000-00-00 00:00:00','2020-06-25 12:03:24'),(372,'The carrying capacity of a habitat is reached when the population growth begins to','increase slowly','increase exponentially','slow down','remain steady','','','d','','utme','2012',164,'Admin','0000-00-00 00:00:00','2020-06-30 20:01:58'),(373,'The abiotic factors that  control human population include  ','disease and famine  ','space and rainfall  ','flooding and earthquake   ','temperature','','','a','','utme','2012',146,'Admin','0000-00-00 00:00:00','2020-07-01 09:53:32'),(374,'An indigenous method of renewing and maintaining  soil fertility is by','clearing farms a by burning','planting one crop type  ','adding inorganic fertilizers yearly   ','crop rotation and shifting cultivation','','','d','','utme','2012',162,'Admin','0000-00-00 00:00:00','2020-07-01 09:51:33'),(375,'The disease caused by water-brone pathogen include','gonrrhoea and poliomyelitis   ','typhoid and syphilis   ','tuberculosis and cholera','typhoid and cholera','','','d','','utme','2012',156,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:39'),(376,'Which of the following is true in blood transfusion?','a person of blood group AB can donate blood only to another person of blood group AB','Persons of blood groups A and B can donate or receive blood from each other','A person of blood group AB can receive blood only from persons of blood group A or B  ','A person of blood group O can donate only to a person of blood group O.','','','a','','utme','2012',155,'Admin','0000-00-00 00:00:00','2020-06-20 15:52:45'),(377,'A yellow maize is planted and all the fruits obtained are of yellow seeds. When they are cross bred, yellow seeds and white seeds are obtained in a ratio 3:1. The yellow seed is said to be  ','non heritable','sex linked','a recessive trait  ','a dominant trait','','','d','','utme','2012',162,'Admin','0000-00-00 00:00:00','2020-07-01 09:30:58'),(378,'When a colour blind man marries a carrier woman. What is the probability of their offspring being colorblind?','25%','50%','75%','100%','','','c','','utme','2012',155,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(379,'The correct base pairing for DNA is','adenine _ thymine and guanine_ cytosine  ','adenine_ guanine and thymine_ cytosine  ','adenine_ cytosine and guanine_ thymine  ','adenine_ adenine  and cytosine_cytosine','','','a','','utme','2012',148,'Admin','0000-00-00 00:00:00','2020-07-01 09:25:25'),(380,'The short thick beak in birds is an adaptation for','crushing seeds','sucking nectar  ','tearing flesh','straining mud','','','a','','utme','2012',175,'Admin','0000-00-00 00:00:00','2020-07-01 09:33:18'),(381,'The basking of Agama lizards in the sun is to','chance the colour of their body  ','raise their body temperature to become active','fight to defend their territories','attract the female for courtship','','','b','','utme','2012',143,'Admin','0000-00-00 00:00:00','2020-06-23 18:33:25'),(382,'The significance of a very large number  of termites involved in nuptial swarming is to','provide birds with plenty of food','ensure their perpetuation despite predatory pressure  ','search for a favourable place to breed  ','ensure that every individual gets a mate.','','','c','','utme','2012',157,'Admin','0000-00-00 00:00:00','2020-06-28 20:34:51'),(383,'The use and disuse of body parts and the inheritance of acquired traits were used to explain  ','Darwin’s theory','Lamarck’s theory','genetic drift  ','gene flow','','','b','','utme','2012',142,'Admin','0000-00-00 00:00:00','2020-07-01 09:52:46'),(384,'From his study of Galapagos finches, Darwin derived his theory of evolution from ',' comparative anatomy','comparative physiology',' fossil remains  ','comparative embryology.','','','a','','utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-01 11:09:54');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `chemistry` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `chemistry` VALUES (1,'25cm3 of a gas X contains Zmolecules at 150C and 75mmHg. How many molecules will 25cmm3 of another gas Y contain at the same temperature and pressure','2Y','2Z','Z','Y','','','c','','utme','2001',1192,'Admin','0000-00-00 00:00:00','2020-06-26 14:32:02'),(2,'What mass of water is produced when 8.0g of hydriogen reacts with excess oxygen [H = 1, O = 16]','36.0g','8.0g','72.0g','16.0g','','','c','','utme','2001',1145,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(3,'A particle that contains 9 protons, 10 neutrons and 10electrons is a','Neghative ion','Positive ion','Neutral atom of a non metal','Neutral atom of a metal','','','a','','utme','2001',1122,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(4,'Cancerous growths are cured by exposure to','ɣ-rays',' β – rays',' ἀ – rays','X -rays','','','a','','utme','2001',1134,'Admin','0000-00-00 00:00:00','2020-06-26 20:38:22'),(5,'An oxide X02 has a vapour density of 32. What is the atomic mass of X [O = 16]','32','20','14','12','','','a','','utme','2001',1140,'Admin','0000-00-00 00:00:00','2020-06-29 12:37:14'),(6,'Milikan’s contribution to the development of atomic theory is the determination of','Charge on electron','Positive rays','Charge to amss ratio','Cathode rays','','','c','','utme','2001',1096,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(7,'Four elements W, X, Y, and Z have atomic numbers 2, 6, 16 and 20 respectively. Which of these elements is a metal','X','W','Z','Y','','','c','','utme','2001',1195,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(8,'An element X with relative atomic mass 16.2 contains two isotopes      X  with relative abundance of 90% and      X with relative abundance of 10%. The value of m is','16','18','12','14','','','b','','utme','2001',1179,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(9,'Which of the following statements is correct about the average kinetic energy of the molecules of a gas','It inctreasaes with increase in pressure','It increases at constant pressure','It increases with increase in temperature','It increases in volume','','','c','','utme','2001',1181,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(10,'The pollution from petroleum spillage in rivers and lakes can best be dispersed by','Pouring detergents','Passing of ships through the area','Pouring organic solvents','Evaporation','','','a','','utme','2001',1181,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(11,'Deliquenscent substances are used for','Cooling','Wetting','Melting','Drying','','','d','','utme','2001',1177,'Admin','0000-00-00 00:00:00','2020-07-01 02:09:38'),(12,'Pure solvents are obtained by','Distillation','Condensation','Extraction','EvapopraTION','','','a','','utme','2001',1102,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(13,'What is the decrease in volume of air when pyrogallol is shaken with 30.00cm3 of air','15.00cm3','6.00cm3','0.63cm3','0.06cm3','','','b','','utme','2001',1135,'Admin','0000-00-00 00:00:00','2020-06-26 21:37:33'),(14,'Environmental pollution is worsened by the release from automobile exhausts of','Water vapour','Steam','Smoke','Heavy metals','','','c','','utme','2001',1145,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:22'),(15,'The chemiocal used for coagulation in water purification is','Aluminum tetraoxosulphate(VI)','Copper tetratoxosulphate (VI)','Sodium tetraoxosulphate(VI)','Calcium tetraoxosulphate (VI)','','','a','','utme','2001',1137,'Admin','0000-00-00 00:00:00','2020-06-24 10:39:38'),(16,'Phosphorous is stored under water to precvent it from','Dehydrating','Becoming inert','Smelling','Catching fire','','','d','','utme','2001',1066,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:02'),(17,'In which of the following reactuions does reduction take place','Fe2+ - e-   Fe3+','2O2-  → O2 + 4e-','Cr - 2e-  → Cr2+','2H+  +  2e-   →H2','','','d','','utme','2001',1147,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(18,'P(g) + O(g)    ⇌ 3R(s)  +  S(g)   ΔH is negative which of the following will increase the yield of R','Using a larger closed vessel','Increasing the temperature','Removing some S','Adding a positive catalyst','','','c','','utme','2001',1152,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(19,'A metal M displaces zinc from zinc chloride solution. This shows that','M is more electronegative than zinc','Zinc is above hydrogen in the series','M is more electropositive than zinc','Electrons flow from zinc to M','','','c','','utme','2001',1203,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(20,'Which of the following best explains the increase in the rate of a chemical reaction as the temperature rises','The bonds in the reacting molecules are more readily broken','The molecules collisions become more violent','A lower proportion of the molecules has the necessary minimum energy to react','The collision frequency of the molecules increases','','','d','','utme','2001',1125,'Admin','0000-00-00 00:00:00','2020-07-02 18:38:37'),(21,'What current in amperes will deposit 2.7g of aluminium in 2 hours [Al = 27, f = 96500 C mol-1]','32','8','4','16','','','c','','utme','2001',1122,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(22,'Ethanoic acid is','Tribasic','Unionizeable','Monobasic','Dibasic','','','c','','utme','2001',1147,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:10'),(23,'C(s) + 2S (g)  → CS2 (g)      Δ H = +89kJ mol-1. The chemical equation above implies that','Each of carbon and sulphur has 89kJ of energy','Both carbon and sulphur contribute 89kJ of energy','89kJ of energy is released','89kJ is absorbed','','','d','','utme','2001',1096,'Admin','0000-00-00 00:00:00','2020-06-26 20:38:22'),(24,' 2SO2(g) + O2(g) ⇌  2SO3(g)  The equilibrium constant for the reaction above is increased by  [ΔH = -189kJ mol -1]','Increasing the temperature of the system','Increasing the pressure of the system','The addition of a catalyst to the system','Increasing the surface area of the vessel','','','b','','utme','2001',1142,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(25,'3CU(s)  +  8HNO3(aq) →  3Cu(NO3)2(aq)  +  4H2O(I)  +  2NO(g)  In the equation above, copper is','An electron acceptor','A base','An oxidizing agent','A reducing agent','','','d','','utme','2001',1123,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(26,'When ΔH is negative, a reaction is said to be','Ionic','Reversible','Exothermic','Endothermic','','','c','','utme','2001',1155,'Admin','0000-00-00 00:00:00','2020-06-28 19:56:08'),(27,'As the concentration of an electrolyte reduces, the conductivity','Reduces to zero','Decreases','Increases','Is unaffected','','','b','','utme','2001',1135,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:02'),(28,'In which of the following reactions has the oxidation number of nitrogen increased','2NO(g)  +  Br2(l)  → 2NOBr(l)','2NO2(g)  +  O2(g)   → 2NO2(g)','FeSO4(aq)  +  NO(g) → Fe(NO)SO4(s)','2NO(g)  +  CI2(g) →  2NOCI(l)','','','b','','utme','2001',1045,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(29,'NH3(g)  +  HCI(g)  → NH4CI(s) The entropy change in the system is','Negative','Indeterminate','Positive','Zero','','','b','','utme','2001',1104,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(30,'Fermentation is the','Breaking down of carbohydrate to glucose','Conversion of sugar to alcohol in the presence of yeast','Breaking down of sugar to carbohydrate','Conversion of alcohol to sugar in the presence of yeast','','','b','','utme','2001',1137,'Admin','0000-00-00 00:00:00','2020-06-23 23:06:08'),(31,'The general formula for the alkanals is','ROH','R2CO','RCOOR1','RCHO','','','d','','utme','2001',1149,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(32,'The main impurity in iron ore during the extraction of iron is','Silicon (IV) oxide','Carbon(IV) oxide','Calciumtrioxosilicate','Sulphur(II) oxide','','','a','','utme','2001',1130,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(33,'During the vulcanization of rubber, sulphur is added to','Break down rubber polymer','Lengthen the chain of rubber','Bind rubber molecules together','Act as a catalyst','','','c','','utme','2001',1114,'Admin','0000-00-00 00:00:00','2020-06-23 14:36:37'),(34,'Catalytic hydrogenation of benzene produces','Oil','Cyclohexane','Cycloexane','Margarine','','','c','','utme','2001',1200,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(35,'A trihydric alkanol is','glycerol','phenol','glycol','ethanol','','','a','','utme','2001',1094,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(36,'When chlorine is passed into water and the resulting solution exposed to sunlight, the product formed are','Chlorine gas and hydrogen','Oxygen and oxochlorate(l) acid','Hydrochloric acid and oxygen','','','','b','','utme','2001',1165,'Admin','0000-00-00 00:00:00','2020-06-20 18:13:01'),(37,'Proteins in acid solution undergo','Polymerization','Substitution','Fermentation','Hydrolysis','','','d','','utme','2001',1138,'Admin','0000-00-00 00:00:00','2020-07-01 02:09:38'),(38,'A characteristic reaction of the compounds with the general formula CnH2n is','Esterification','Polymerization','Decarboxylation','Substitution','','','b','','utme','2001',1157,'Admin','0000-00-00 00:00:00','2020-06-20 18:12:42'),(39,'The pair of organic compounds that are isomers is','Benzene and methylbenzene','Trichloromethane and Tetrachloromethane','Ethanol and propanone','But-1-ene and but-2-ene','','','d','','utme','2001',1101,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(40,'A burning candle produces water and','Carbon(II)oxide','Carbon(IV) oxide','Oxygen','Hydrogen','','','d','','utme','2001',1153,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(41,'The gas that can best be collected by downward displacement of air is','Chlorine','Sulphur(IV)oxide','Ammonia','Carbon(IV)oxide','','','c','','utme','2001',1175,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(42,'Which of the following metals burns brick with a brick-red','Pb','Ca','Na','Ma','','','b','','utme','2001',1132,'Admin','0000-00-00 00:00:00','2020-07-01 02:09:38'),(43,'Which of the followinig respresents hybridization in ethyne?','Sp2','Sp2d','Sp3','sp','','','d','','utme','2001',1150,'Admin','0000-00-00 00:00:00','2020-06-27 15:16:18'),(44,'When sodium reacts with water, the resulting solution is','weakly acdic','neutral','acidic','alkaline','','','d','','utme','2001',1157,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(45,'Which of the following gases contains the least number of atoms at s.t.p','4 moles of chlorine','3 moles of ozone','1 mole of butane','7 moles of argon','','','c','','utme','2002',1116,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(46,'A compound contains 31.91% potassium, 28.93% chlorine and the rest oxygen. What is the chemical formular of the compound','KCLO3','KCLO4','KCLO','KCLO2','','','a','','utme','2002',1074,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(47,'The formula CH2O for ethanoic acid is regarded as its','General formula','Structural formula','Molecular formula','Empirical formula','','','d','','utme','2002',1096,'Admin','0000-00-00 00:00:00','2020-06-26 04:41:09'),(48,'A little quantity of Trichloromethane (b.pt.600C) was added to a large quantity of ethanol (b.pt.780C). the most probable boiling point of the resultant mixture is from','699C – 700C','820C – 840C','600C – 780C','700C – 744C','','','d','','utme','2002',1099,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(49,'The chromatographic separation of ink is based on the ability of the components to','React with each other','React with the solvent','Dissolve in each other in the column','Move at different speeds in the column','','','d','','utme','2002',1112,'Admin','0000-00-00 00:00:00','2020-06-28 02:47:27'),(50,'Steam changes the colour of anhydrous cobalt(II) chloride from','White to red','Blue to white','White to green','Blue to pink','','','d','','utme','2002',1089,'Admin','0000-00-00 00:00:00','2020-06-28 19:56:08'),(51,'Which of the following solutions containing only hydroxyl ions will liberate hydrogen gas when reacted with magnesium metal','1.0 x 10-2 mol dm-3','1.0 x 10-4 mol dm -3','1.0 x 10-5 mol dm-3','1.0 x 10-12 mol dm-3','','','d','','utme','2002',1081,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(52,'The substance least considered as a source of environmental pollution is','Silicate minerals','Uranium','Lead compounds','Organophosphorous compounds','','','a','','utme','2002',1122,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(53,'The property which makes alcohol soluble in water is the','Hydrogen bonding','Covalent nature','Ionic character','Boiling point','','','c','','utme','2002',1129,'Admin','0000-00-00 00:00:00','2020-06-29 12:37:14'),(54,'The furring of kettles is caused by the presence in water of','Calcium trioxocarbonate(IV)','Calcium tetraoxosulphate(VI)','CALCIUM HYDROXIDE','Calcium hydrofentrioxocarbonate(IV)','','','d','','utme','2002',1181,'Admin','0000-00-00 00:00:00','2020-07-01 08:07:07'),(55,'Tetraoxosulphate(VI) acid burns the skin by','Heating','Hydration','Dehydration','Hydrolysis','','','c','','utme','2002',1137,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(56,'When a salt loses its water of crystallization to the atmosphere on exposure, the process is said to be','Deliquescence','Effervescence','Efflorescence','Fluorescence','','','c','','utme','2002',1164,'Admin','0000-00-00 00:00:00','2020-06-26 15:17:09'),(57,'Three drops of a 1.0 mol dm-3 solution of Na OH are added to 20cm3 of a solution of pH8.4. the pH of the resulting solution will be','Greater than 8.4','Unaltered','Close to that of pure water','Less than 8.4','','','a','','utme','2002',1105,'Admin','0000-00-00 00:00:00','2020-06-24 10:37:41'),(58,'The solubility of a salt of molar mass 101g at 200C is 0.34mol dm-3. If 3.40g of the salt is dissolved completely in 250cm3 of water in a beaker, the resulting solution is','Unsaturated','A suspension','Saturated','Supersaturated','','','a','','utme','2002',1090,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(59,'25cm3 of a 0.2mol dm-3 solution of Na2CO3 requires 20cm3 of  solution of HCl for neutralization. The concentration of the solution is','0.6 mol dm-3','0.5 mol dm-3','0.4 mol dm-3','0.2 mol dm-3','','','b','','utme','2002',1111,'Admin','0000-00-00 00:00:00','2020-06-26 21:37:33'),(60,'which of the following chlorides would exhibit the least ionic character','AlCl3','CaCl2','MgCi2','LiCl','','','a','','utme','2002',1132,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(61,'If 0.75 mole of cyclopropane and 0.66 mole of oxygen are mixed in a vessel with a total pressure of 0.7 atmosphere. What is the partial pressure of oxygen in the mixture','0.55 atmosphere','0.44 atmosphere','0.33 atmosphere','0.22 atmosphere','','','c','','utme','2002',1097,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(62,'The processes which return carbon(IV) oxide to the atmosphere include','Photosynthesis, decay and respiration','Photosynthesis, respiration and transpiration','Respiration, decay and combustion','Ozone, depletion, combustion and decay','','','c','','utme','2002',1134,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(63,'Which of the following statements is true of a proton.','The total mass of the protons in a particular nucleus always half the nuclear mass','The mass of a proton is 1840 times the mass of an electron','The mass proton is 1.0008g','The mass of a proton is one-twelfth the molar mass of carbon','','','b','','utme','2002',1092,'Admin','0000-00-00 00:00:00','2020-06-29 12:37:14'),(64,'A gas X diffuses twice as fast as gas Y under the same conditions. If the relative molecular mass of X is 28. Calculate the relative molecular mass of Y','120','14','56','112','','','d','','utme','2002',1114,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(65,'A fixed mass of gas has a  volume of 92cm3 at 30C. What will be be its volume at 180C if the pressure remains constant','15.3cm3','87.3cm3','97.0cm3','552.0cm3','','','c','','utme','2002',1098,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(66,'The postulate of Dalton’s atomic theory which still holds is that','Particles of different elements combine in a simple whole number ratio','Atoms can neither be created nor destroyed','The particles of the same element are exactly alike','All elements are made of small indivisible particles','','','a','','utme','2002',1093,'Admin','0000-00-00 00:00:00','2020-06-23 14:36:37'),(67,'Ordinary glass is manufactured from silica, Ca CO3 and','K2CO3','NaHCO3','Na2CO3','K2SO4','','','c','','utme','2002',1118,'Admin','0000-00-00 00:00:00','2020-06-28 19:56:08'),(68,'A rock sample was added to cold dilute HNMO3. The gas evolved was passed into a solution of acidified K2Cr2O7 and the solution turned green. The rock sample contains','NO3-','Cl-','SO42-','SO32-','','','d','','utme','2002',1076,'Admin','0000-00-00 00:00:00','2020-06-28 02:40:53'),(69,'Hydrogen is readily released when dilute hydrochloric acid reacts with','Au','Cu','Na','Ag','','','c','','utme','2002',1074,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(70,'The most important use of hydrogen is in the','Hydrogenation of oils','Manufacture of methyl alcohol','Manufacture of ammonia','Manufacture of ethyl alcohol','','','c','','utme','2002',1122,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(71,'Which of the following gives a precipitate when treated with NaOH solution','Na2CO3','CH3COONa','NH4Cl','AlCl3','','','d','','utme','2002',1164,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(72,'The intermediate product formed when ethanol is progressively oxidized to ethanoic acid with potassium heptaoxodichromate(VI) is','Ethanol','Methanol','Butanal','Propanal','','','a','','utme','2002',1104,'Admin','0000-00-00 00:00:00','2020-06-23 19:50:56'),(73,'The gas that gives brown colouration in brown ring test','Co2','NO2','NO','CO','','','b','','utme','2002',1031,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(74,'The boiling of fat and aqueous caustic soda is referred as','Saponification','Esterification','Acidification','Hydrolysis','','','a','','utme','2002',1138,'Admin','0000-00-00 00:00:00','2020-06-25 12:21:56'),(75,'What volume of oxygen is produced from the decomposition of 2 moles of KClO3 at s.t.p   [Molar volume of a gas at s.t.p = 22.4 dm3]','22.4 dm3','33.6 dm3','44.8 dm3','67.2 dm3','','','d','','utme','2003',1060,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(76,'Which of the following is a physical change','Burning kerosene','Freezing ice-cream','Exposing white phosphorus to air','Dissolving calcium in water','','','b','','utme','2003',1122,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(77,'What is the percentage by mass of oxygen in Al2(SO4)3.2H2O','14.29%','25.39%','50.79%','59.25%','','','d','','utme','2003',1104,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(78,'The filter in a cigarette reduces the nicotine content by','Burning','Adsorption','Evaporation','Absorption','','','b','','utme','2003',1118,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(79,'3Cu  +  pHNO3  → 3Cu(NO3)2  +  4H2O  + xNO   In the equation above, the values of p and x respectively are','1 and 3','2 and 3','6 and 2','8 and 2','','','d','','utme','2003',1111,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(80,'Neutral atoms of neon with atomic number 10 have the same number of electrons as','O2+','Ca2+','K+','Mg2+','','','d','','utme','2003',1075,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:07'),(81,'The noble gases owe their inactivity to','Octet configuration','Cyclic shape','Hexagonal shape','Obtuse configuration','','','a','','utme','2003',1116,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(82,'According to the kinetic theory, an increase in temperature causes the kinetic energy of particles to','Decrease','Increase','Remain constant','Be zero','','','b','','utme','2003',1078,'Admin','0000-00-00 00:00:00','2020-06-20 17:47:11'),(83,' I.  H = 1s1\\nII. O = 1s22s22p4\\nIII. N = 1s22s22p3\\nIV. Zn = 1s22s22p63s23p64s23d10\\nFrom the above, which of the following pairs is likely to be paramagnetic?\\n','I and II','I and  III','I    and IV','III  and IV','','','a','','utme','2003',1104,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(84,'A gas exerts pressure on its container because','Some of its molecules are moving faster than others','Of the collision of the molecules with each other','Of the mass of the molecules of gas','The molecules of a gas collide with the walls of the container','','','d','','utme','2003',1099,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(85,'When cathode rays are detected onto the electrode of an electrometer, the instrument becomes','Negatively charged','Positively charged','Neutral','Bipolar','','','a','','utme','2003',1124,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(86,'The weakest attractive force that can be observed between two molecules is','Ionic','Covalent','Coordinate covalent','Van der Waals','','','d','','utme','2003',1119,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(87,'A consequence of global warming is','Air pollution','Water pollution','Increased humidity','Flooding','','','d','','utme','2003',1123,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:19'),(88,'Which of the following ions is acidic','K+','NO-3','S2-','H3O+','','','d','','utme','2003',1147,'Admin','0000-00-00 00:00:00','2020-06-28 02:41:08'),(89,'The structural component that makes detergent dissolve more quickly in water than soap is','–SO3 –Na+','–COO-Na+','–SO4- Na+','–COO-K+','','','a','','utme','2003',1125,'Admin','0000-00-00 00:00:00','2020-06-26 16:41:20'),(90,'A liquid that will dissolve fast is','Hydrochloric acid','Calcium hydroxide','Kerosene','Water','','','c','','utme','2003',1090,'Admin','0000-00-00 00:00:00','2020-06-23 14:41:35'),(91,'What mass of K2CrO4 is required to prepare 250cm3 of 0.020 mol dm-3 solution   [K2CrO4 = 194.2g mol-1]','0.97g','9.70g','19.42g','97.10g','','','a','','utme','2003',1159,'Admin','0000-00-00 00:00:00','2020-06-26 16:41:20'),(92,'Farmlands affected by crude –oil spillage can be decontaminated by','Adding acidic solutions','Using aerobic bacteria','Pouring water on the affected area','Burning off the oil from the area','','','b','','utme','2003',1139,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(93,'When 10g of sodium hydroxide is dissolved in 1000cm3 of water, the solution formed is approximately   [Na = 23, H = 1, O = 16]','0.01 mol dm-3','0.10 mol dm-3','0.25 mol dm-3','0.50 mol dm-3','','','c','','utme','2003',1124,'Admin','0000-00-00 00:00:00','2020-06-28 02:40:53'),(94,'A charge in the temperature of a saturated solution disturbs the equilibrium between the','Dissolved solute and the solvent','Solvent and the undissolved solute','Dissolved solute and the undissolved solute','Dissolved solute and the solution','','','c','','utme','2003',1125,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(95,'If an equilibrium reaction has   H>0, the reaction will proceed favourably in the forward direction at','High temperature','Any temperature','Low temperature','Minimum temperature','','','a','','utme','2003',1081,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(96,'The commonest feature of the reactions at the anode is that','Electrons are consumed','Oxidation is involved','Ions are reduced','Electrode dissolves','','','b','','utme','2003',1083,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(97,'Which of the following will change when a catalyst is added to a chemical reaction','The activation energy','The potential energy of the reactants','The heat of reaction','The potential energy of the products','','','a','','utme','2003',1071,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(98,'If Y is an oxidizing agent that reacts with a reducing agent, Z, which of the following is correct','Y increases in oxidation number','Y becomes reduced','Z loses protons','Z gains protons','','','b','','utme','2003',1143,'Admin','0000-00-00 00:00:00','2020-06-26 20:43:36'),(99,'When at equilibrium, which of the reactions below will shift to the right if the pressure is increased and the temperature is kept constant',' 2SO3(g)  ⇌  2SO2(g)  +  O2(g)',' 2CO2(g)  ⇌ 2CO(g)  +  O2(g)',' 2H2(g)  +  O2(g) ⇌  2H2O(g)',' 2NO(g)   ⇌ N2(g)  +  O2(g)','','','c','','utme','2003',1085,'Admin','0000-00-00 00:00:00','2020-06-28 02:43:14'),(100,'In the electrolysis of a concentrated solution of sodium chloride using inert electrodes, which of the following ions are discharged at the cathode and anode respectively','Na+ and Cl-','Na+ and OH-','H+ and OH-','H+ and Cl-','','','d','','utme','2003',1123,'Admin','0000-00-00 00:00:00','2020-06-26 21:37:34'),(101,' CO(g) + H2O(g) ⇌  CO2(g)  +  H2(g)\\nFrom the reaction above, calculate the standard heat change if the standard enthalpies of formation of CO2 (g), H2O (g) and CO (g) in kJ mol-1 are -394, -242 and -110 respectively.\\n','-262 kJ  mol-1','-42kJ mol-1','+42 kJ mol-1','+262 kJ mol-1','','','b','','utme','2003',1081,'Admin','0000-00-00 00:00:00','2020-06-26 23:30:19'),(102,'When sugar is dissolved in tea, the reaction is always accompanied by','Positive entropy change','Negative entropy change','No entropy change','A minimum entropy change','','','a','','utme','2003',1067,'Admin','0000-00-00 00:00:00','2020-06-27 15:16:18'),(103,'Which of the following is an electrolyte','Alcohol','Sodium acetate solution','Solid potassium hydroxide','Mercury','','','b','','utme','2003',1149,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(104,'Chlorine gas is prepared in the laboratory by','Adding concentrated hydrochloric acid to solid manganese (IV) oxide','Adding concentrated tetraoxosulphate (VI) acid to solid sodium chloride','Dropping concentrated hydrochloric acid onto potassium tetraoxomanganate (VII) crystals','Oxidizing concentrated hydrochloric acid using potassium heptaoxodichromate (VI) crystals','','','a','','utme','2003',1126,'Admin','0000-00-00 00:00:00','2020-06-26 20:38:22'),(105,'Metals of the first transition series have special proper ties which are different from those of groups I and II elements because they have partially filled','s  orbitals','p orbitals','d orbitals','f orbitals','','','c','','utme','2003',1134,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(106,'Hydrogen can be displaced form a hot alkaline solution by','Fe','Cu','Ca','Sn','','','d','','utme','2003',1085,'Admin','0000-00-00 00:00:00','2020-06-29 08:03:44'),(107,'Which of the following statements is true of sulphur (IV) oxide','It forms Tetraoxosulphate (VI) acid with water','It is an odourless gas','It is an acid anhydride','It forms white precipitate with acidified barium chloride','','','c','','utme','2003',1157,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(108,'The salt that will form a precipitate soluble in excess ammonia solution is','Ca(NO3)2','Cu(NO3)2','Mg(NO3)2','Al(NO3)3','','','b','','utme','2003',1063,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(109,'The metal that liberates hydrogen from cold water in bubbles only is','Na','K','Ca','Al','','','c','','utme','2003',1086,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(110,'Chlorine gas turns a damp starch-iodide paper','Pink','Colourless','Red','Dark blue','','','d','','utme','2003',1106,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(111,'The modern process of manufacturing steel from iron is by','Treatment with acids','Oxidation','Blast reduction','Treatment with alkalis','','','c','','utme','2003',1061,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(112,'Ethene reacts with hydrogen bromide to give','CH2Br2','CH3CH2Br','C2H2Br2','CHBr3','','','b','','utme','2003',1055,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(113,'Carbohydrates are compounds containing carbon, hydrogen and oxygen in the ratio','3:01:01','2:01:01','1:02:01','1:01:01','','','c','','utme','2003',1074,'Admin','0000-00-00 00:00:00','2020-06-26 20:38:22'),(114,'How many isomers does pentane have','6','5','4','3','','','d','','utme','2003',1137,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(115,'The leachate of a certain plant ash is used in local soap making because it contains','Sodium chloride and potassium hydroxide','Sodium hydroxide','Potassium hydroxide','Soluble carbonates and hydrogen carbonates','','','c','','utme','2003',1129,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(116,'The formula for ethyl butanoate is','C3H7COOC2H5','C2H5COOC3H7','C4H9COOC2H5','C2H5COOC4H9','','','a','','utme','2003',1095,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(117,'The type of reaction that is peculiar to benzene is','Addition','Hydrolysis','Polymerization','Substitution','','','d','','utme','2003',1082,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(118,'Ethanol reacts with excess acidified K2Cr2O7 to produce','Ethanoic acid','Ethanol','Ethyl ethanoate','Ethanoic acid','','','d','','utme','2003',1083,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(119,'A compound contains 40.0% carbon, 6.7% hydrogen and 53.3% oxygen. If the molar mass of the compound is 180, find the molecular formula  [H = 1, C = 12, O = 16]','CH2O','C3H6O3','C6H12O6','C6H6O3','','','c','','utme','2003',1100,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(120,'The process by which atoms are rearranged into different molecular structures in the petroleum refining process is referred to as','Catalytic cracking','Hydrocracking','Polymerization','Reforming','','','d','','utme','2003',1114,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(121,'Which of the following is found in cotton','Starch','Cellulose','fat','oil','','','b','','utme','2003',1094,'Admin','0000-00-00 00:00:00','2020-06-28 17:55:51'),(122,'the principal constituent of natural gas is methane','ethane','propane','butane','butane','','','a','','utme','2003',1064,'Admin','0000-00-00 00:00:00','2020-06-28 19:56:08'),(123,'When a solid substance disappears completely as a gas on heating, the substance is said to have under gone','Evaporation','Distillation','Crystallization','Sublimation','','','d','','utme','2004',1172,'Admin','0000-00-00 00:00:00','2020-07-02 06:11:03'),(124,'A chemical reaction is always associated with','An increase in the composition of one of the substances','A change in the volume of the reactants','A change in the nature of the reactants','The formation of new substances','','','d','','utme','2004',1094,'Admin','0000-00-00 00:00:00','2020-06-28 02:43:14'),(125,'If a solution contains 4.8g of Tetraoxosulphate (VI) acid. Calculate the amount of copper(II) oxide that will react with it  [CU = 64, O = 16, S = 32, H = 1]','0.8g','4.0g','40.0g','80.0g','','','b','','utme','2004',1101,'Admin','0000-00-00 00:00:00','2020-06-26 16:41:20'),(126,'What volume of gas is evolved at s.t.p. if 2g of calcium trioxocarbonate(IV) is added to a solution of hydrochloric acid    [Ca = 40, C = 12, O = 16, CI = 35.5, H = 1, Molar volume of a gas at s.t.p = 22.4dm3]','112cm3','224cm3','448cm3','224cm3','','','c','','utme','2004',1102,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(127,'According to Charles  law, the volume of a gas becomes zero at','00C','-1000C','-2730C','-3730C','','','c','','utme','2004',1074,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(128,'It is difficult to achieve an orderly arrangement of the molecules of a gas because they','Have no definite shape','Have little force attraction between them','Can collide with one another in the container','Are too small in size','','','b','','utme','2004',1116,'Admin','0000-00-00 00:00:00','2020-06-27 15:16:18'),(129,'A given volume of methane diffuses in 20s. how long will it take the same volume of sulphur(IV) oxide to diffuse under the same conditions    [C = 12, H = 1, S = 32, O = 16]','5s','20s','40s','60s','','','c','','utme','2004',1109,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(130,'An electron can be added to a halogen atom to form a halide ion with','2 valence electrons','3 valence electrons','7 valence electrons','Valence electrons','','','d','','utme','2004',1103,'Admin','0000-00-00 00:00:00','2020-06-27 15:16:18'),(131,'The shape of the s-orbital is','Spherical','Elliptical','Spiral','Circular','','','a','','utme','2004',1165,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(132,'The property of chlorine which causes hydrogen chloride to be more ionic than the chlorine molecule is its','Electrovalency','Electron affinity','Electropositivity','Electronegativity','','','d','','utme','2004',1078,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(133,'Chlorine consisting of two isotopes of mass numbers 35 and 37 in the ratio 3:1 has an atomic mass of 35.5. Calculate the relative abundance of the isotope of mass number 37.','20','25','60','75','','','b','','utme','2004',1092,'Admin','0000-00-00 00:00:00','2020-06-29 12:37:49'),(134,'Which of the following mixtures of gases is likely to burn in flame','Neon and hydrogen','Nitrogen and helium','Helium and neon','Neon and nitrogen','','','a','','utme','2004',1078,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(135,'Hardness of water is caused by the presence of the ions of','Magnesium and silver','Calcium and magnesium','Sodium and potassium','Calcium and sodium','','','b','','utme','2004',1170,'Admin','0000-00-00 00:00:00','2020-06-29 12:37:14'),(136,'Pollution of underground water by metal ions is very likely in a soil that has high','Acidity','Alkalinity','Chloride content','Nitrate content','','','a','','utme','2004',1106,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(137,'A carcinogenic substance is','Asbestos dust','Sawdust','Nitrogen(II) oxide','Carbon (II) oxide','','','a','','utme','2004',1042,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(138,'The solubility in mol dm-3 of 20g of CuSO4 dissolved in 100g of water at 1800C is  [Cu = 64, S = 32, O = 16]','0.13','0.25','1.25','2','','','c','','utme','2004',1084,'Admin','0000-00-00 00:00:00','2020-06-28 02:41:38'),(139,'Calcium Tetraoxosulphate(VI) dissolves in water only sparingly to form a','Solution','Suspension','Precipitate','Colloid','','','d','','utme','2004',1083,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(140,'Which of these compounds is a normal salt','NaHS','NaSO4','NaHCO3','Na2CO3','','','d','','utme','2004',1040,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(141,'What volume of 0.5mol dm-3 H2SO4 will exactly neutralize 20cm3 of 0.1 mol dm-3 NaOH solution','2.0cm3','5.0cm3','6.8cm3','8.3cm3','','','a','','utme','2004',1154,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(142,'The oxidation state of chlorine in HClO4 is','-5','-1','1','7','','','d','','utme','2004',1127,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(143,'ZnO(s) + CO (g) → Zn(s) + CO2 (g). ','Decomposed','Displaced','Oxidized','Reduced','','','d','','utme','2004',1106,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(144,'Which of the following acts as both a reducing and an oxidizing agent','H2','SO2','H2S','CO2','','','b','','utme','2004',1123,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(145,'In the electrolysis of brine, the anode is','Platinum','Copper','Zinc','Carbon','','','d','','utme','2004',1040,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(146,'The mass of silver deposited when a current of 10A is passed through a solution of silver salt for 4830s is    [Ag = 108, F = 96500 Cmol-1]','108.0g','54.0g','27.0g','13.5g','','','b','','utme','2004',1134,'Admin','0000-00-00 00:00:00','2020-06-23 19:50:54'),(147,' 2CO(g)  +  O2(g) →  2CO2(g)\\nGiven that   Δ H [CO] is 110.4kJ mol-1 and Δ H [CO2] is -393.0kJ mol-1, the energy change for the reaction above is\\n','-503.7kJ','-282.6kJ','+282.6kJ','+503.7kJ','','','N','','utme','2004',1064,'Admin','0000-00-00 00:00:00','2020-06-28 02:54:58'),(148,'Which of the following hydrogen halides has the highest entropy value','HF','HCl','HBr','Hl','','','a','','utme','2004',1021,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(149,' N2O4(g)    ⇌  2NO2(g)','A constant volume','An increase in pressure','A decrease in pressure',' A decrease in volume','','','c','','utme','2004',1089,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(150,'Which of the following shows little or no net reaction when the volume of the system is decreased',' H2(g)  +  l2(g)  ⇌  2Hl(g)','2NO2(g)  ⇌  N2O4(g)',' PCl5(g)   ⇌ PCl3(g)  + Cl2(g)',' 203(g)   ⇌  3O2(g)','','','a','','utme','2004',1128,'Admin','0000-00-00 00:00:00','2020-06-22 21:52:45'),(151,'The allotrope of carbon used in the decolourization of sugar is','Graphite','Soot','Charcoal','Lampblack','','','c','','utme','2004',1083,'Admin','0000-00-00 00:00:00','2020-06-20 18:16:23'),(152,'Which of the following gases can be collected by the method of downward delivery','Chlorine','Oxygen','Ammonia','Hydrogen','','','a','','utme','2004',1122,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(153,'Which steam is passed over red-hot carbon, the substances produced are','Hydrogen and trioxocarbonate(IV) acid','Hydrogen, oxygen and carbon(IV) oxide','Hydrogen and carbon (II) oxide','Hydrogen and carbon (IV) oxide','','','c','','utme','2004',1140,'Admin','0000-00-00 00:00:00','2020-06-28 17:55:51'),(154,' sulphur (IV) oxide bleaches by','Reduction','Oxidation','Hydration','Absorption','','','a','','utme','2004',1132,'Admin','0000-00-00 00:00:00','2020-06-23 19:50:55'),(155,'Carbon is tetravalent because','The electrons in both the 2s and 2p orbitals are equivalent','The electrons in all the orbitals of carbon are equivalent','The 2s and 2p atomic orbitals hybridize','All the atomic orbitals of carbon hybridize','','','c','','utme','2004',1102,'Admin','0000-00-00 00:00:00','2020-06-29 22:11:13'),(156,'Aluminium hydroxide is used in the dyeing industry as a','Salt','Dye','Mordant','Dispersant','','','c','','utme','2004',1046,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(157,'Alloys are best prepared by','Electroplating','Arc-welding','Reducing a mixture of their metallic oxides','Cooling a molten mixture of the metals','','','d','','utme','2004',1139,'Admin','0000-00-00 00:00:00','2020-06-23 19:50:55'),(158,'Transition metals posses variable oxidation states because they have','Electrons in the d orbitals','Electrons in the s orbitals','A variable number of electrons in the p orbitals','Partially filled p orbitals','','','d','','utme','2004',1134,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(159,'Sodium metal is always kept under oil because it','Readily reacts with water','Is reduced by atmospheric nitrogen','Reacts vigorously on exposure to air','Reacts with oxygen and carbon(IV) oxide','','','c','','utme','2004',1099,'Admin','0000-00-00 00:00:00','2020-06-26 20:43:36'),(160,'Oxyacetylene flame is used for iron-welding because it',' makes the iron metal solidity very quickly','Combines with oxygen to give a pop sound','Evolves a lot of heat when burnt','Dissociates to produce carbon (IV) oxide and oxygen','','','c','','utme','2004',1049,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(161,'The alkyl group can be represented by the general formula','CnH2n+1','CnH2n','CnH2n+2','CnH2n-2','','','a','','utme','2004',1044,'Admin','0000-00-00 00:00:00','2020-06-20 18:17:59'),(162,'An isomer of C5H12 is','Butane','2-methylbutane','2-methylprpane','2-ethylbutane','','','b','','utme','2004',1130,'Admin','0000-00-00 00:00:00','2020-06-27 15:16:18'),(163,'A characteristic of the alkane family is','Addition reaction','Elimination reaction','Substitution reaction','Neutralization reaction','','','c','','utme','2004',1050,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(164,'Which of these reagents can confirm the presence of a triple bond','Bromine water','Acidified KMnO4 ','Copper (I) chloride','Bromine gas','','','c','','utme','2004',1089,'Admin','0000-00-00 00:00:00','2020-06-28 02:41:08'),(165,'Vulcanization involves the removal of','A monomer','The single bond','The double bond','A polymer','','','c','','utme','2004',1066,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:02'),(166,'The reaction above is','Carboxylation','Decarboxylation','Acidification','Esterification','','','b','','utme','2004',1096,'Admin','0000-00-00 00:00:00','2020-06-27 15:16:18'),(167,' Alkanol + Alkanoic acid ⇌  Ester + water.\\nThe reverse reaction of the equation above is known as\\n','Hydrolysis','Saponification','Hydration','Fermentation','','','a','','utme','2004',1043,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(168,'In the production of soap, concentrated sodium chloride solution is added to','Increase the solubility of the soap','Decrease the solubility of the soap','Saponify the soap','Emulsify the soap','','','b','','utme','2004',1045,'Admin','0000-00-00 00:00:00','2020-06-30 10:08:28'),(169,'The gas that can be dried using concentrated Tetraoxosulphate (VI) acid is','Ammonia','Hydrogen bromide','Sulphur (IV) oxide','Hydrogen sulphide','','','c','','utme','2005',1248,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(170,'The property used in the industrial preparation of nitrogen and oxygen from air is','Rate of diffusion','Solubility','Density','Boiling point','','','d','','utme','2005',1157,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(171,'A dense white fume is formed when ammonia gas reacts with','H2(g)','O2(g)','HCI(g)','Cl2(g)','','','c','','utme','2005',1121,'Admin','0000-00-00 00:00:00','2020-06-30 17:03:43'),(172,'In a flame test for calcium, the flame appears','Blue when viewed through a blue glass','Green when viewed through a blue glass','Orange-red when viewed through a blue glass','Brick-red when viewed through a blue glass','','','c','','utme','2005',1188,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(173,'Which of the following alloys contain iron','Steel and permalloy','Duralumlin and steel','nd Soft Solder a Duralumlin ','Brass and bronze','','','a','','utme','2005',1112,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(174,'To obtain pure carbon(II) oxide from its mixture with carbon (IV)oxide, the mixture should be','Bubbled through concentrated Tetraoxosulphate(VI) acid','Bubbled through sodium hydroxide','Passed over heated copper(II) oxide','Bubbled through water','','','b','','utme','2005',1240,'Admin','0000-00-00 00:00:00','2020-06-26 21:37:33'),(175,'N2(g)  +  3H2(g)  ⇌   2NH2(g)   Δ H = - 90kJ  In the equation above, the yield of ammonia can be decreased by','Adding a catalyst','Removing ammonia','Increasing the pressure','Increasing the temperature','','','d','','utme','2005',1133,'Admin','0000-00-00 00:00:00','2020-06-26 14:32:02'),(176,'Metalloids are also referred to as','Metals','Semi-metals','Colloids','Non-metals','','','b','','utme','2005',1101,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(177,'The ores that can be concentrated by flotation are','Nitride ores','Chloride ores','Oxide ores','Sulphide ores','','','d','','utme','2005',1108,'Admin','0000-00-00 00:00:00','2020-06-27 15:16:18'),(178,'The most suitable metal that can be used as a lightening  conductor is','Aluminium','Iron','Copper','Silver','','','d','','utme','2005',1193,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(179,'NH4CI(g) ⇌   NH3(g)  +  HCI(g)   The reaction above can only attain equilibrium if','It is in a closed system','It is in an open system','One of the products is removed','A gaseous reactant is added','','','a','','utme','2005',1088,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(180,'When pure aluminum metal is heated to red hot in the presence of nitrogen gas, the compound formed is','AI2N','AIN','AI2N2','AI2N3','','','b','','utme','2005',1200,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(181,'The most abundant element on the earth’s crust is','Oxygen','Fluorine','hydrogen','nitrogen','','','a','','utme','2005',1176,'Admin','0000-00-00 00:00:00','2020-06-26 15:17:09'),(182,'The pressure of 100cm3 of oxygen at 350C is 750mmHg. What will be the volume of the gas if the pressure is reduced to 100mmHg  without changing the temperature','850cm3','750cm3','650cm3','580cm3','','','b','','utme','2005',1180,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(183,'What is the valence shell electron configuration of the element with atomic number 17','1s22s22p63s23p5','1s22s22p63s23p4','3s23p5','2s22p6','','','a','','utme','2005',1138,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(184,'A heterogeneous mixture can be defined as any mixture','Whose composition is uniform','Whose composition is not uniform','Formed by solids and liquids','Of a solute and a solvent','','','b','','utme','2005',1096,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(185,'The density of a certain gas is 1.98g dm-3 at s.t.p. What is the molecular mass of the gas   [Molar volume of a gas at s.t.p = 22.4dm-3]','26.0g','31.0g','54.0g','44.0g','','','d','','utme','2005',1137,'Admin','0000-00-00 00:00:00','2020-06-29 02:55:49'),(186,'Treatment of cancer   II. Detection of leakages in water mains   III. Detection of the ages of ancient tools    Which combination of the above refers to the uses of radioactive isotopes?','I, II and III','I, II, III and IV','II and III','I and II','','','a','','utme','2005',1191,'Admin','0000-00-00 00:00:00','2020-06-28 02:41:38'),(187,'An element will readily form an electrovalent compound if its electron configuration is','2,8,8','2,,8,4','2,8,5','2,8,1','','','d','','utme','2005',1159,'Admin','0000-00-00 00:00:00','2020-06-28 02:40:53'),(188,'How many moles of limestone will be required to produce 5.6g of CaO','0.20 mol','1, 12mol','0.10 mol','0.56 mol','','','c','','utme','2005',1193,'Admin','0000-00-00 00:00:00','2020-06-26 04:41:22'),(189,'The shape of the hydrocarbon compound CH4 is','Square planar','Tetrahedral','Planar','Linear','','','b','','utme','2005',1135,'Admin','0000-00-00 00:00:00','2020-06-26 20:38:22'),(190,'Which of these properties gives a solid its definite shape','Weak intermolecular attraction','High boiling point','High melting point','Strong intermolecular attraction','','','d','','utme','2005',1170,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(191,'The component of an atom that contributes least to its mass is the','Nucleus','Neutron','Electron','Proton','','','c','','utme','2005',1168,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(192,'Sugar is separated from its impurities by','Distillation','Evaporation','Precipitation','Crystallization','','','d','','utme','2005',1170,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(193,'Equal moles of ethyne and hydrogen iodide react to give','CH2 = CH2','CH2 = CHI','CH2 – CHI','CH2 – CI3','','','b','','utme','2005',1210,'Admin','0000-00-00 00:00:00','2020-06-30 17:04:30'),(194,'How many hydrogen atoms does a single ring cycloalkane have less than the corresponding open- chain alkane','Three','One','Four','Two','','','d','','utme','2005',1200,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(195,'The decolourization of the purple colour of a tetraoxomanganate (VII) ion is a test for','Alkanals','Alkanes','Alkenes','Alkanols','','','c','','utme','2005',1155,'Admin','0000-00-00 00:00:00','2020-06-28 02:42:53'),(196,'In the purification of impure samples of ethyl ethanoate synthesized by esterification, concentrated sodium trioxocarbonate(IV) solution is used to remove','Water','Acidic impurities','Basic impurities','Ethoxyethane','','','b','','utme','2005',1194,'Admin','0000-00-00 00:00:00','2020-06-23 18:22:47'),(197,'A substance that is used as a ripening agent for fruits is','Propene','Methane','Ethene','Butane','','','c','','utme','2005',1098,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(198,'Which of the following are structural isomers','Propanoic acid and propan-1, 2-diol','Ethanoic acid and propanoic acid','Ethan-1, 2 –diol and ethanoic acid','Propanal and propanone','','','d','','utme','2005',1153,'Admin','0000-00-00 00:00:00','2020-06-25 19:22:20'),(199,'The enzyme responsible for converting sucrose into two simple isomeric sugars is','Invertase','Amylase','Lactose','Maltase','','','a','','utme','2005',1177,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(200,'Natural water collected from rivers and ponds contains oxygen, carbon(IV) oxide and','Chlorine','Hydrogen','Sulphur(IV) oxide','Nitrogen','','','c','','utme','2005',1133,'Admin','0000-00-00 00:00:00','2020-06-28 02:42:53'),(201,'Kerosene is commonly used to remove the red colour stain of palm oil from clothes because it','Helps to spread the oil over a larger surface area','Makes the oil evaporate easily by dissolving it','Helps to dilute the oil and reduce its colour','Reacts with the oil to form an odourless compound','','','b','','utme','2005',1160,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(202,'25cm3 of a mixture of noble gases was obtained from air after the removal of other constituents. What was the original volume of air','125cm3','1250cm3','2500cm3','80cm3','','','c','','utme','2005',1145,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(203,'The solubility curve shows the variation of solute concentration with','Volume','Vapour density','Pressure','Temperature','','','d','','utme','2005',1132,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(204,'The air around smelting industries is likely to contain','CO2, SO3 and H2','SO2N2 and CO2','H2, SO2 and CO2','H2S, CO and N2','','','b','','utme','2005',1201,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(205,'When water boilers are used for a long period of time, the solid substances left behind as scale are','Magnesium trioxosilicate (IV) and calcium Tetraoxosulphate(VI)','Magnesium trioxosilicate(IV) and rust','Clay and magnesium trioxosilicate (IV)','clay and rust','','','','','utme','2005',1143,'Admin','0000-00-00 00:00:00','2020-06-30 17:11:23'),(206,'The gas that is the most dangerous pollutant to humans is','Carbon(IV) oxide','Nitrogen (II)oxide','Hydrogen sulphide','Sulphur(IV) oxide','','','c','','utme','2005',1238,'Admin','0000-00-00 00:00:00','2020-07-01 02:09:38'),(207,'In which of the following reactions can the oxidation number of nitrogen be said to have increased','FeSO4(aq)  +  NO(g) →   Fe(NO)SO4(S)','2NO(g)  +  O2(g) → 2NO2(g)','NO(g)  +  CI2(g)  → NOCI2(l)','NO(g)  +  Br2(l)   → NOBr2(l)','','','b','','utme','2005',1179,'Admin','0000-00-00 00:00:00','2020-06-28 02:41:38'),(208,'A concentrated solution containing H+, Cu2+, OH- and Cl- was electrolyzed using platinum electrodes. The ion that will be discharged at the cathode is','OH-','Cl-','Cu2+','H+','','','c','','utme','2005',1103,'Admin','0000-00-00 00:00:00','2020-07-01 03:17:00'),(209,'Phenolphthalein in acidic solution is','Colourless','Yellow','Red','Orange','','','a','','utme','2005',1113,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(210,'When sulphur (IV) oxide is passed into a solution of sodium hydroxide for a long time. It eventually produces a solution of','Na2SO4','NaHSO4','Na2SO3','NaHSO3','','','d','','utme','2005',1123,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:35'),(211,'What is the correct IUPAC name for NO2','Dioxonitrate(III) ion','Dioxonitrate(IV) ION','trioxonitrate(iii) ion','trioxonitrate(iv) ion','','','a','','utme','2005',1148,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(212,'What will happen if an aluminum spoon is used to stir a solution of iron (II) trioxonitrate(V)','The spoon will be reduced while the iron(II) ions will be oxidized','The spoon will be oxidized while the iron (II) ions will be reduced to the metal','The spoon will be reduced','The spoon will increase in size','','','b','','utme','2005',1233,'Admin','0000-00-00 00:00:00','2020-07-01 02:09:38'),(213,'Which of the following equimolar solutions will have the highest pH','NH4OH','CH3COONa','HCI','NaOH','','','c','','utme','2005',1129,'Admin','0000-00-00 00:00:00','2020-06-23 18:22:14'),(214,'2H2 + O2  → 2H2O  ΔH = -571Kj  In equation above, how much heat will be liberated if 12.0g of hydrogen is burnt in excess oxygen?','-1713kJ','+1142kJ','-571kJ','-1142kJ','','','a','','utme','2005',1180,'Admin','0000-00-00 00:00:00','2020-06-23 18:22:14'),(215,'Which of the following ions requires the largest quantity of electricity for discharge at an electrode','2.5 moles of Cu2+','4.0 moles of CI-','2.0 moles of Al3+','3.0 moles of Na+','','','c','','utme','2005',1170,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(216,'H2(g)  +  Br2(g) →  2BHr(g)  The reaction above is carried out at 250C. If Δ H is kJ mol-1 and   Δ S is -106J mol-1K-1 the reaction will','Proceed spontaneously at lower temperatures','Not proceed spontaneously at the given temperature','Proceed spontaneously at the given temperature','[proceed in the reverse direction at the given temperature','','','d','','utme','2006',1100,'Admin','0000-00-00 00:00:00','2020-06-28 02:41:08'),(217,'Na2CO3(aq)  +  2HCI(aq)  → 2NaCI(aq)  +  H2O(l)  +  CO2(g)    How many moles of sodium trioxocarbonate (IV) are there in a 25cm3 solution which required 10cm3 of 0.05 mol dm-3 hydrochloric acid solution to neutralize it?','0.100mloe','0.001mole','1.000mole','0.010mole','','','d','','utme','2006',1090,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(218,'The ion that can be used as an oxidizing agent is','Fe3+','F-','Ca2+','Au3+','','','c','','utme','2006',1083,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(219,'Zinc and carbon rods are used as anode and cathode respectively in a','Voltaic cell','Lead accumulator','Leclanche cell','Daniel cell','','','c','','utme','2006',1105,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(220,'Trioxonitrate(V) acid is not used for preparing hydrogen gas from metals because it','Renders the metal passive','Is strongly oxidizing','Is volatile','','','','a','','utme','2006',1126,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(221,'Forms a layer of oxide on the metal   If the heat of combustion of hydrogen is -285.8kJ. what is the heat of formation of water','-285.8Kj','-571.6kJ','+571kJ','+285.8kJ','','','a','','utme','2006',1138,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(222,'In the electrolysis of CuSO4(aq) using platinum electrodes, the reaction at the anode is','4H+  +  4e-  → 2H2','2OH  +  2OH-  →  2H2O + O2','2OH-  - 2e-    → 2OH','4OH-  -  4e- →  2H2O + O2','','','d','','utme','2006',1117,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(223,'IN which of the following is the oxidation number of sulphur equal to -2','H2S','SO3','S8','SO2','','','a','','utme','2006',1121,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(224,'5SO2(g)  +  2KMnO4(aq)  +  2H2O(l)  ⇌   K2SO4(aq)  +  2MnSO4(aq)  +   2H2HSO4(aq)   In the reaction above, the products give a','Colourless solution','Purple precipitate','Purple solution','Colourless precipitate','','','a','','utme','2006',1125,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(225,'The solution that will conduct the highest amount of electricity is','2.0 moldm-3 of ethanoic acid','0.5 mol dm-3 of ethanoic acid','2.0 mol dm-3 of hydrochloric acid','0.5 moldm-3 of hydrochloric acid','','','c','','utme','2006',1088,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(226,'What is the mola. Mass of a substance, if 0.4 mole of the substance has a mass of 25.0g','6.3g','40.0g','62.5g','2.5g','','','c','','utme','2006',1174,'Admin','0000-00-00 00:00:00','2020-06-28 02:40:53'),(227,'The order in which a mixture of sand ammonium chloride and sodium chloride can be separated is','Sublimation   dissolution  filtration  evaporation','Dissolution  dryness  filtration  evaporation','Filtration  sublimation  evaporation  dryness','Dissolution  filtration  sublimation  evaporation','','','a','','utme','2006',1071,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(228,'The volume of 2.5 moles of oxygen at s.t.p is','56.0dm3','84.0dm3','50.0dm3','20.0dm3','','','a','','utme','2006',1095,'Admin','0000-00-00 00:00:00','2020-06-27 16:03:56'),(229,'[Molar volume of a gas at s.t.p + 22.4dm3} Nuclear fission involves the splitting of a heavy element into two nuclei of','Equal masses with a release of energy','Nearly equal masses with a release of energy and radiation','Equal masses with a release of energy and radiation','Unequal masses without any release of energy','','','b','','utme','2006',1131,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(230,'2C2H2(g)  +  5O2(g)     4CO2(g)  +  2H2O(g) In the reaction, the mass of carbon (IV) oxide produced on burning 78g of ethyne is [C = 12, O = 16, H = 1]','39','352g','264g','156g','','','c','','utme','2006',1056,'Admin','0000-00-00 00:00:00','2020-06-29 08:02:13'),(231,'A particle that contain s 11protons, 12 neutrons and 10 electrons is probably a','Metallic ion','Non-metallic ion','Neutral metal','Neutral non-metal','','','a','','utme','2006',1151,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(232,'The element with the electron configuration 1s22s22p3 is','Oxygen','Chlorine','Nitrogen','Calcium','','','c','','utme','2006',1152,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(233,'A difference between chemical and physical change is that in a chemical change','Heat is supplied',' A new substance is formed','Oxygen is consumed','A reversible process occurs','','','b','','utme','2006',1184,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(234,'A degree in atomic size and an increase in knuckler charge across a period lead to','A decrease in covalency in bond formation','An increase in chemical reactivity','An increase in the tendency to loss electrons','A decrease in electro positivity','','','d','','utme','2006',1085,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(235,'The idea of planetary electrons was that of','Bohr','Thompson','Rutherford','Dalton','','','a','','utme','2006',1128,'Admin','0000-00-00 00:00:00','2020-06-26 14:32:02'),(236,'If 30cm3 of a gas at 500C is warmed to 800C at a fixed pressure. The fractional increase in volume is','0.91','0.009','1.09','0.093','','','d','','utme','2006',1158,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(237,'Which of the following has an isomer','C4H10','C6H6','C2H4','C2H6','','','a','','utme','2006',1154,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(238,'An example of aliphatic unsaturated hydrocarbon is','Butanol','Propene','Pentane','Benzene','','','b','','utme','2006',1106,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(239,'One mole of a hydrocarbon contains 36g of carbon and its vapour density is 20. The structure of the hydrocarbon is','CH3CH2CH3','CH3CH = CH2','CH3CH2C = CH','CH3C = CH','','','d','','utme','2006',1110,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(240,'CH3-CH2-C = CH  The hybridization in the compound above is','Sp3 and sp','Sp3 and sp2','Sp','Sp2','','','a','','utme','2006',1155,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(241,'Nigerian crude oil is described as light crude because of its','Low aliphatic hydrocarbon content','Low sulphur content','High natural gas content','High octane number','','','c','','utme','2006',1142,'Admin','0000-00-00 00:00:00','2020-06-28 17:55:51'),(242,'The gas obtained as a product of anaerobic action ob organic matter buried in the earth is','Nitrogen(IV) oxide','Carbon(IV) oxide','Methane','Ethene','','','c','','utme','2006',1123,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(243,'When a crystal was added to the clear solution of its salt, the crystal did not dissolve and the solution remained unchanged. This showed that the solution was','Supersaturated','Unsaturated','Saturated','Concentrated','','','c','','utme','2006',1127,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(244,'The produce of the combustion of candle wax are','Carbon(IV) oxide and water','Oxygen and water','Hydrogen and water','Carbon(II)oxide an d water','','','a','','utme','2006',1109,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(245,'When 5.0cm3 of a saturated solution of sugar of molar mass 342g at 400C was evaporated to dryness, 34.2g of dry solid was obtained. The solubility of sugar at 400C is','7.0 mol dm-3','3.5 mol dm-3','2.0 mol dm-3','10.0mol dm-3','','','c','','utme','2006',1162,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(246,'Which of the following results in the fall of acid rain','Gaseous hydrocarbons','Oxide of lead','Particulate matter','Oxides of sulphur','','','d','','utme','2006',1080,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(247,'Water has the ability to dissolve almost all substances because its molecule has a structure with','One positive end and one neutral end','Two positive ends','One positive end and one negative end','Two negative ends','','','c','','utme','2006',1135,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(248,'An emulsion may be produced by shaking a detergent solution with','Palm wine','Palm oil','Ethanoic acid','Water','','','d','','utme','2006',1089,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(249,'One heating may be produced by shaking a detergent solution with','Cu(NO3)2','AgNO3','Ca(NO3)2','NaNO3','','','b','','utme','2006',1080,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(250,'Dynamic equilibrium describes a situation where','A reaction gives back the reactants','Reactants are converted to products','The concentration of reactants and products is equal','Both forward and reverse reaction proceed at the same rate','','','d','','utme','2006',1159,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(251,'The raw material used for the smelting of iron ore in a furnace is','Zn(NO3)2','CaSO4','CuSO4','CaCO3','','','d','','utme','2006',1121,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(252,'Carbon exists naturally in the combined state as','Diamond','Coal','Wood','Graphite','','','c','','utme','2006',1099,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(253,'The sulphide which is insoluble in dilute hydrochloric acid is','CuS','Na2S','FeS','ZnS','','','a','','utme','2006',1101,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(254,'The efficiency of a solid catalyst to increase reaction rates depends on its','Concentration','Solubility','Quantity','Surface area','','','d','','utme','2006',1146,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(255,'In the industrial production of H2 from natural gas, the CO2 produced along with the H2 is removed by','Passing the mixture into lime water','Washing under pressure','Drying over phosphorous(V)oxide','Using ammoniac copper(l) chloride','','','b','','utme','2006',1096,'Admin','0000-00-00 00:00:00','2020-06-28 02:43:55'),(256,'Which of the following typically represents a photochemical reaction','Conversion of dinitrogen (IV) oxide to nitrogen(IV) oxide','Conversion of silver halides to grey metallic silver','Decomposition of calcium hydroxide to its oxide','Formation of water from hydrogen and oxygen molecules','','','b','','utme','2006',1144,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(257,'Group IA metals are not found free in nature because they','Have high melting and boiling points','Conduct heat and electricity','Are very reactive and unstable','Are malleable and ductile','','','c','','utme','2006',1107,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(258,'The characteristic colour of the flame shown when a copper salt moistened with concentrated hydrochloric acid on platinum is put on a bunzen burner is','Green','Lilac','Yellow','Brick-red','','','a','','utme','2006',1100,'Admin','0000-00-00 00:00:00','2020-06-27 16:03:56'),(259,'The ion that will give a white precipitate with aqueous NaOH and soluble in excess of the base is','Zn2+','Mg2+','Ca2+','Cu2+','','','a','','utme','2006',1098,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:20'),(260,'Which of he following pairs of substances will react further with oxygen to form a higher oxide','SO2 and NO','CO2 and H2O','CO and CO2','NO and H2O','','','a','','utme','2006',1054,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(261,'Which of the following is an example of a mixture','Blood','Sand','Washing soda','Common salt','','','a','','utme','2010',1271,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(262,'Calculate the percentage by mass of nitrogen in calcium trioxonitrate (V)   {Ca = 40, N = 14, O = 16}','13.10%','17.10%','27.60%','8.5','','','d','','utme','2010',1186,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(263,'The droplets of water observed around a bottle of milk taken out of though refrigerator is due to the fact that the','Temperature of the milk drops as it loses heat into the surroundings','Saturated vapour pressure of the milk is equal to the atmospheric pressure','Water vapour in the air around loses some of its energy to the bottle','Water vapour in the air around the bottle gains some energy from the bottle','','','c','','utme','2010',1231,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(264,'The volume of a gas is Vcm3 at P mm Hg. What is the new volume of the gas if the pressure is reduced to half at constant temperature','2 V cm3','V  2cm3','V cm3','4 V cm3','','','a','','utme','2010',1208,'Admin','0000-00-00 00:00:00','2020-06-29 22:22:53'),(265,'Moving from left to right across a period, the general rise in the first ionization energy can be attributed to the','Increase in nuclear charge','Decrease in screening effect','Increase in screening effect','Decrease in nuclear charge','','','a','','utme','2010',1243,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(266,'How many unpaired electron(s) are there in the nitrogen  sub - levels','2','1','0','3','','','d','','utme','2010',1172,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(267,'The stability of the noble gases is due to the fact that they','Have duplet or octet electron configurations','Belong to group zero of the periodic table','Are volatile in nature','Have no electron in their outermost shells','','','a','','utme','2010',1241,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(268,'The maximum number of electrons in the L shell of an atom is','8','18','32','2','','','a','','utme','2010',1216,'Admin','0000-00-00 00:00:00','2020-06-29 22:22:53'),(269,'Elements in the same periodic table have the same','Atomic number','Chemical properties','Physical properties','Number of shells','','','d','','utme','2010',1276,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(270,'A noble gas with a high power of fog penetration used in aerodrome beacons is','Argon','Helium','Neon','Krypton','','','c','','utme','2010',1201,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(271,'Permanent hardness of water can be removed by','Adding slaked lime','Adding caustic soda','Boiling','Filtration','','','b','','utme','2010',1250,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(272,'Substances employed as drying agents are usually','Hygroscopic','Efflorescent','Acidic','Amphoteric','','','a','','utme','2010',1196,'Admin','0000-00-00 00:00:00','2020-06-29 22:22:53'),(273,'Calculate the solubility in mol dm -3 of 40g of Cu So4 dissolved in 100g of water at 1200C  {Cu = 64, S = 32, 0 = 16}','2.5','0.4','0.25','4','','','a','','utme','2010',1203,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(274,'Coffee stains can best be removed by','Turpentine','A solution of borax in water','Ammonia solution','Kerosene','','','b','','utme','2010',1170,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(275,'Carbon (II) oxide is considered dangerous if inhaled mainly because it','Competes with oxygen in the blood','Competes with carbon (IV) oxide in the blood','Can cause lung cancer','Can cause injury to the nervous system','','','a','','utme','2010',1236,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(276,'The acid that is used to remove rust is','Hydrochloric','Trioxonitrate (V)','Tetraoxosulphate (VI)','Boric','','','b','','utme','2010',1238,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(277,'Calculate the volume of 0.5 mol dm-3 H2SO4 that is neutralized by 25cm3 of 0.1 mol dm-3 NaOH','2.5cm3','0.4cm3','0.1cm3','5.0cm3','','','a','','utme','2010',1220,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(278,'The colour of methyl orange in alkaline medium is','Pink','Orange','Red','Yellow','','','d','','utme','2010',1181,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(279,'Which of the following salts is slightly soluble in water','CaSO4','Na2CO3','PbCl2','AgCl','','','a','','utme','2010',1261,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(280,'6AgNO3(aq)  +  PH3(g) +    3H2O(l)      →    6Ag(s)+   H3PO3(aq)   +    6HNO3(aq)  In the reaction above, the reducing agent is','H2O(l)','PH3(g)','AgNO3(aq)','HNO3(AQ)','','','b','','utme','2010',1224,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(281,'The IUPAC nomencalatyre of the compound LiAIH4 is','Aluminium tetrahydrido lithium','Tetrahydrido lithium aluminate (III)','Lithium aluminium hydride','Lithium tetrahydridoaluminate (III)','','','d','','utme','2010',1231,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(282,'Iron can be protected from corrosion by coating the surface with','Silver','Copper','Zinc','Gold','','','c','','utme','2010',1188,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(283,'What quantity of aluminum is deposited when a current of 10A is passed through a solution of an aluminum salt for 1930s  {AI = 27, F = 96500 C mol-}','1.8g','5.4g','14.2g','0.2g','','','a','','utme','2010',1294,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(284,'In which of the following is the entropy change positive','Reaction between an acid and a base','Addition of concentrated acid to water','Dissolution of sodium metal in water','Thermal dissociation of ammonium chloride','','','c','','utme','2010',1254,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(285,'If a reaction is exothermic and thee is a great disorder, it means that','The reaction is in a state of equilibrium','There will be a large increase in free energy','There will be a large decrease in free energy','The reaction is static','','','b','','utme','2010',1156,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(286,'In the preparation of oxygen by heating KCIO3 in the presence of MnC2, only moderate hear is needed because the catalyst acts by','Increasing the surface area of the reactant','Increasing the rate of the reaction','Lowering the energy barrier of the reaction','Lowering the pressure of the reaction','','','c','','utme','2010',1232,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(287,'2H2(g) +    O2(g)  ⇌ 2H2O(g)    ΔH   =  - ve  What happens to the equilibrium constant of the reaction above if the temperature is increased?','It becomes zero','It decreases','It increases','It is unaffected','','','b','','utme','2010',1292,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(288,'To a solution of an unknown compound, a little dilute Tetraoxosulphate (IV) acid was added with some freshly prepared (II) Tetraoxosulphate (VI) Solution. The brown ring observed after the addition of a stream of concentrated  Tetraoxosulphate (VI) acid confirmed the presence of','CI','SO','NO','CO','','','c','','utme','2010',1209,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(289,'Which of the following is used as a rocket fuel','CH3COOH','H2SO4','HCL','HNO3','','','d','','utme','2010',1235,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(290,'A constituent common to moist air, it gradually rusts. This is due to the formation of','Silver','Copper','Tin','Lead','','','c','','utme','2010',1231,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(291,'When iron is exposed to moist air, it gradually rusts. This is due to the formation of','Anahydrous  iron (III) oxide','Anhydrous iron (II) oxide','Hydrated iron (II) oxide','Hydrated iron  (III) oxide','','','d','','utme','2010',1228,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(292,'A compound gives an orange red colour to a non luminous flame. This compound is likely to contain','Ca2+','Fe3+','Fe2+','Na+','','','a','','utme','2010',1207,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(293,'Stainless steel is used for making','Tools','Coins and medals','Moving parts of clocks','Magnets','','','a','','utme','2010',1215,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(294,'The residual solids from the fractional distillation of petroleum are used as','Raw materials for the cracking process','Fuel for driving tractors','Fuel for jet engines','Coatings for pipes','','','d','','utme','2010',1224,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(295,'Which of the following is used as fuel in miners’ lamp','Ethyne','Ethane','Ethane','Ethanol','','','a','','utme','2010',1214,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(296,'Which of the following organic compounds is very soluble in water','C2H2','C2H4','CH3COOC2H5','CH3COOH','','','d','','utme','2010',1259,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(297,'Benzene reacts with hydrogen in the presence of nickel catalyst at 1800C to give','Toluene','Cyclopentane','Cyclohexane','Xylene','','','c','','utme','2010',1238,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(298,'Which of the following is used to hasten the ripening of fruit','Ethanol','Ethyne','Ethane','Ethane','','','d','','utme','2010',1250,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(299,'The final products of the reaction between methane and chloride in the presence of ultraviolet light are hydrogen chloride and','Dichloromethane','Tetrachloromethane','Chloromethane','Trichloromethane','','','b','','utme','2010',1223,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(300,'The correct order of increasing boiling points of the following  compounds C3H7OH, C7H16 and C4H10 is','C4H10  →  C7H16 → C3H7OH','C7H16 → C3H7OH → C4H16','C4H10  → C3H7OH  → C4H10','C3H7OH →  C4H10  → C7H16','','','a','','utme','2010',1262,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(301,'One of the major uses of Alkanes is','In the hydrogenation of oils','In the textile industries','In the production of plastics','As domestic and industrial fuels','','','d','','utme','2010',1184,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(302,'The haloalkanes used in the dry cleaning industries are','Chloroethane and dichloroethene','trichloroethene and tetrachloroethene','chloromethane and dichloroethene','Trichloromethane and tetrachloromethane','','','d','','utme','2010',1260,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(303,' Two hydrocarbons X and Y were treated with bromine water. Decolorized the solution and Y did not. Which class of compound does Y belong','Alkynes','Alkenes','Alkanes','Benzene','','','c','','utme','2010',1175,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(304,'The compound that is used as an anaesthetic is','CHCI3','CH2C2','CH3CI','CCI4','','','a','','utme','2010',1190,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `civiledu` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=437 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `civiledu` VALUES (1,'Who among the following could be described as the founding father of Nigerian nationalism?','Nnamdi Azikiwe','Herbert Macauley','Ahmadu Bello','Obafemi Awolowo','','','b','','wassce','2014',65,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:33'),(2,'Rule of Law means','supremacy of the law','absence of legal immunity','peace, order and stability','obedience to any authority','','','a','','wassce','2014',73,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:44'),(3,'A major characteristic of civil society is','the desire to win election','corporate responsibility','social responsibility','political gerrymandering.','','','b','','wassce','2014',68,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:32'),(4,'Citizenship status is acquired through','birth, indigenization, colonization and referendum','association, convention, naturalization and incorporation','birth, naturalization, honorary and registration','registration, inter-relationship, integration and declaration.','','','c','','wassce','2014',65,'Admin','2016-11-26 14:40:53','2020-05-28 21:10:05'),(5,'Human Rights are basic natural rights which people enjoy primarily because they are','members of a political party','international citizens','members of a community','human beings.','','','d','','wassce','2014',65,'Admin','2016-11-26 14:40:53','2020-05-28 21:07:45'),(6,'Interpersonal relationship exists when','citizens pay their taxes regularly to inland revenue service','citizens are politically conscious and participate in voting','there is interaction between persons in a social setting.','groups share social interest and communal aspiration','','','d','','wassce','2014',62,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:13'),(7,'Cultism can be described to be','amiable','attractive','dangerous','harmless.','','','c','','wassce','2014',62,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:40'),(8,'Based on the statements above, the decision of the student on having a bullet proof vest shows that cultism','spreads fear and terror.','is a training ground for armed forces.','breeds courageous graduates.','propagates self - defence.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','a','','wassce','2014',75,'Admin','2016-11-26 14:40:53','2020-06-09 18:24:55'),(9,'It could be inferred from the statements above that cultism in schools could lead to','sudden prosperity.','uninterrupted academic calender.','popularity on campus.','untimely death.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','d','','wassce','2014',73,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:28'),(10,'Victims of human trafficking are usually compelled to engage in','lucrative employment','visiting tourist sites','part - time studies','forced labour.','','','d','','wassce','2014',67,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:40'),(11,'One habit which People Living With HIV/AIDS (PLWHAs) must avoid to remain healthy and productive is','regular contact with healthy people.','self - pity and self - medication','participation in profitable ventures','pursuit of academic studies.','','','b','','wassce','2014',68,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:13'),(12,'Youth empowerment is best described as the','training given to individuals for acquiring means livelihood','practice of engaging in prospective career','provision of subsidized meals to the citizens by government,','mobilization of citizens for political rally.','','','a','','wassce','2014',62,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:01'),(13,'The National Assembly, Presidency and Court which are inter - related and interdependent in our democracy constitute the','tiers of government','types of democracy','forms of government.','arms of government','','','d','','wassce','2014',59,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:36'),(14,'A system of government that listens to public opinion and tolerates opposition is','dictatorial regime','capitalist regime','democratic regime','socialist regime','','','c','','wassce','2014',67,'Admin','2016-11-26 14:40:54','2020-05-28 21:06:40'),(15,'A situation where most citizens fail to vote in elections could be described as political','socialization','culture.','apathy','legitimacy','','','c','','wassce','2014',60,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:57'),(16,'The division of Nigeria into various constituencies with each electing a person to represent it in the National Assembly is a demonstration of','checks and balances','popular participation','political rivalry among the constituents','drive towards secession in the country.','','','b','','wassce','2014',79,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:53'),(17,'In Nigeria, public servants are expected to be','non - partisan','political','ambitious','apolitical','','','a','','wassce','2014',62,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:37'),(18,'The principle that public servants cannot be held responsible for their official actions denotes','impartiality','accountability','anonymity','neutrality.','','','c','','wassce','2014',77,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:05'),(19,'Universal Declaration of Human Rights (UDHR) is based on the resolution of the','Human Rights Watch','United Nations Organization','Amnesty International','League of Nations.','','','b','','wassce','2014',62,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:55'),(20,'According to the story, Imoh’s parents were','wealthy couple','prominent politicians','honest and responsible','religious fanatics','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','c','','wassce','2014',73,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:41'),(21,'What value did Imoh demonstrate.','Tolerance','Confidence','Fair play','Honesty','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','d','','wassce','2014',62,'Admin','2016-11-26 14:40:54','2020-05-28 21:08:52'),(22,'Conflicts are better resolved in the society through','tribunal','litigation.','dialogue','the court','','','c','','wassce','2014',69,'Admin','2016-11-26 14:40:54','2020-06-09 11:26:22'),(23,'To prevent the spread of HIV/AIDS, people should be encouraged to','avoid casual sexual activities','marry very early in life','engage in gainful employment','pursue higher education','','','a','','wassce','2014',74,'Admin','2016-11-26 14:40:54','2020-05-28 21:08:49'),(24,'The nearest government to the people and an important means of promoting grassroots development is the','state government','unitary government','local government','federal government','','','c','','wassce','2014',65,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:44'),(25,'Democratic governance is usually characterized by','free, fair and credible elections','buoyant and competitive economy','accessible employment opportunities','youth participation in governance','','','a','','wassce','2014',78,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:55'),(26,'Political apathy often leads to','low level of participation','good governance','political stability','low literacy level','','','a','','wassce','2014',70,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:46'),(27,'Which of the following is not necessary for public servants to perform effectively?','In - service training','Appointment based on nepotism','Value re - orientation for public servants','Incentives for meeting set goals','','','b','','wassce','2014',66,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:09'),(28,'One of the conditions which can limit the enjoyment of Human Rights in Nigeria is the','acceptance of foreign aid by the government','improvement in literacy level of the citizens','declaration of state of emergency by government','periodic review of the constitution by government','','','c','','wassce','2014',69,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:01'),(29,'The implication of positive communal relationships is that it','promotes solidarity and love','ensures obedience to constituted authority','encourages ethnic diversity','promotes rural-urban drift.','','','a','','wassce','2014',69,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:07'),(30,'One major factor that attracts some Nigerians into human trafficking is','over - population related issues','influx of foreigners into the country','insatiable quest for quick wealth','influence of Western and social media','','','c','','wassce','2014',70,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:37'),(31,'One of the reasons most HIV/AIDS patients are \treluctant to disclose their status is because of','the incurable nature of the ailment','fear of social stigmatization.','lack of sufficient public awareness','shortage of health counsellors','','','b','','wassce','2014',56,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:48'),(32,'The position of the court on this matter justifies the essence of the','rule of law','legislature','police command','separation of powers','The Bawali High Court has ordered the police in Area Z Command to produce Mr. Zeb, who is in police custody for an alleged offence. The court insists that Mr. Zeb cannot be punished until he is found guilty of breach of any law of the land by a court of competent jurisdiction.','','a','','wassce','2014',66,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:01'),(33,'Leaders can best protect the interests of their followers by','embarking on periodic constitutional review','creating socio - economic opportunities for foreigners','creating conducive atmosphere for participation','rewarding supporters with contracts','','','c','','wassce','2014',72,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:05'),(34,'The most popular means through which citizens of a country can participate in politics is by','being members of political parties','engaging in constructive criticism','engaging in political debates','voting in elections','','','d','','wassce','2014',70,'Admin','2016-11-26 14:40:54','2020-05-28 21:08:51'),(35,'Civil societies are vital for the promotion of popular participation because they are','profit - oriented organizations','engaged in developmental programmes','involved in political education','formidable oppositions to government','','','c','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-05-28 21:10:00'),(36,'From this dialogue, it is very likely that Wanja will be exhibiting the following characters except','disobedience to constituted authority','truancy and perpetual lateness to school','hospitable attitude towards people','arrogance and unruly behaviour.','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:21'),(37,'Which of the following may result from Wanja’s habit?','Humility for elders','Criminality in the society','Advocacy for hard drugs by NGOs','Excellent performance in school','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',65,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:45'),(38,'From Ada’s admonition, it could be deduced that taking hard drugs could','make people respect the addicts.','lead to insanity of the addicts','make people to adore the drug addicts','ensure courteous behaviour by the addicts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',71,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:51'),(39,'From the above dialogue, Wanja’s behaviour could be curtailed by','sending him abroad for further studies','financial inducement','re - orientation and rehabilitation','indulging him with expensive gifts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',56,'Admin','2016-11-26 14:40:55','2020-05-28 21:10:01'),(40,'Which of the following governmental agencies is the most capable of controlling the activities of Wanja and his group?','National Agency for Food and Drug Administration and Control (NAFDAC)','National Orientation Agency (NO A)','National Emergency Management Agency (NEMA)','National Drug Law Enforcement Agency (NDLEA)','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','d','','wassce','2014',48,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:08'),(41,'One of the major barriers to national development is the','low poverty level','existence of multi - party system','prevalence of corrupt practices','persistent rural - urban migration','','','c','','wassce','2014',57,'Admin','2016-11-26 14:40:55','2020-05-28 21:07:29'),(42,'The quotation above shows that the speaker is concerned about','nationalism','revolution','tourism','welfarism','“Here is your country. Cherish these natural wonders, cherish the natural resources, cherish the history and romance as sacred heritage, for your children and your children’s children. Do not let selfish men or greedy interests skin your country of its beauty, its riches...”','','a','','wassce','2014',67,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:52'),(43,'A major benefit of youth empowerment is','dependence on foreign aid.','discouragement of patriotism','reduction in crime rate','negation to national prosperity','','','c','','wassce','2014',51,'Admin','2016-11-26 14:40:55','2020-05-28 21:08:56'),(44,'When leaders like Chief Bilisi place self interest above public good, the result is that','rebellion becomes inevitable','cooperation of citizens is guaranteed','International support for the regime is ensured','society becomes more peaceful and orderly.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','a','','wassce','2014',51,'Admin','2016-11-26 14:40:55','2020-05-28 21:08:44'),(45,'The condition of disorderly behaviour exhibited by the mob in the story best describes the','ineffectiveness of the police','breakdown of law and order','importance of ministerial position','need for stiffer security measures','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','b','','wassce','2014',59,'Admin','2016-11-26 14:40:55','2020-05-28 21:10:07'),(46,'A major lesson Nigerians could learn from the story is that','leaders can empower voters by giving them money','security officials should use brutal force on citizens','the underprivileged should not vie for elective positions','greed and related vices can cause serious breach of  the law.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','d','','wassce','2014',65,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:17'),(47,'Which of the following is not a function of the Independent National Electoral Commission (INEC)?','Administering oath of office to elected officers','Conducting periodic elections','Recruitment of electoral officers.','Registration of political parties','','','a','','neco','2014',65,'Admin','2016-11-26 17:20:10','2020-05-28 21:08:06'),(48,'The upper legislative chamber of the National Assembly of Nigeria is also known as the','honourables','house of commons.','house of lords','senate','','','d','','neco','2014',62,'Admin','2016-11-26 17:20:14','2020-05-28 21:07:57'),(49,'Cooperation between one country and another can be described as','bilateral','international','multilateral','multinational.','','','a','','neco','2014',74,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:50'),(50,'The “right to vote and be voted for” can only be enjoyed by Nigerian citizens who attain the age of','13.','15.','16.','18.','','','d','','neco','2014',66,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:57'),(51,'A representative of a commonwealth country in another member state is known as a / an.','ambassador','attaché.','consul-general.','high commissioner.','','','d','','neco','2014',82,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:53'),(52,'The following are values that promote interpersonal relationship, except','caring.','honesty.','patience','properties.','','','d','','neco','2014',69,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:04'),(53,'The responsibilities of government to   its citizens include the following, except','creating employment opportunity','maintenance of law and order','payment of property tax to its citizens','protection of lives and property','','','c','','neco','2014',52,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:24'),(54,'Most African countries owed their creation to','African Union (AU).','Commonwealth of Nations.','Ethnic and tribal leaders.','European Colonialists','','','a','','neco','2014',66,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:12'),(55,'The structure of the Nigerian legislature is - in nature','bicameral','confederal','federal','unicameral','','','a','','neco','2014',59,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:28'),(56,'The most effective approach towards the elimination of sexually transmitted diseases is by','abstinence.','Casual sex.','use of condom.','use of drugs','','','a','','neco','2014',69,'Admin','2016-11-26 17:20:14','2020-05-28 21:06:17'),(57,'The first executive president of Nigeria is/was','Abubakar Tafawa Balewa','Goodluck Jonathan','NnamdiAzikiwe.','Shehu Shagari.','','','d','','neco','2014',65,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:25'),(58,'One of the aims of citizenship education is to produce students with','creative skill.','high sense of entrepreneurial skill.','high sense of patriotism.','manipulative skills.','','','c','','neco','2014',60,'Admin','2016-11-26 17:20:15','2020-05-28 21:08:35'),(59,'The symbol for the campaign against AIDs is Ribbon','black','blue','green','red','','','d','','neco','2014',84,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:59'),(60,'ln 2013, Nigeria celebrated her ______ independence anniversary','50th','51st','52nd','54th','','','d','','neco','2014',71,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:45'),(61,'In democracy, lack of press freedom leads to the denial of freedom of','association','expression','movement','voting','','','b','','neco','2014',52,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:30'),(62,'Franchise means right to','contest for political post','join association','live in Nigeria','vote and be voted for','','','d','','neco','2014',62,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:45'),(63,'How many members constitute the lower legislative chamber in Nigeria?','300','302','312','360','','','d','','neco','2014',63,'Admin','2016-11-26 17:20:15','2020-06-09 11:27:27'),(64,'How many senators are elected from each state in Nigeria?','2','3','4','5','','','b','','neco','2014',55,'Admin','2016-11-26 17:20:15','2020-05-28 21:10:08'),(65,'When was the first HIV/AIDs case reported in Nigeria?','1980','1983','1985','1987','','','c','','neco','2014',61,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:56'),(66,'Which of the following system of government advocates equitable distribution of wealth?','Aristocracy','Capitalism','Plutocracy','Socialism','','','d','','neco','2014',65,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:59'),(67,'The right of an individual to seek redress in a law court is categorized under','economic.','political','procedural,','social','','','c','','neco','2014',65,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:52'),(68,'The National Youths Service Corps Scheme was established in Nigeria in','1970','1971','1973','1975.','','','c','','neco','2014',69,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:30'),(69,'Which of the following is a legal obligation of a citizen?','Giving financial assistance to the poor','Helping in community development','Payment of taxes','Respecting the national symbols','','','c','','neco','2014',66,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:44'),(70,'Which of these is not a system of government?','Anarchy','Monarchy','Oligarchy','Socialism','','','d','','neco','2014',75,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:55'),(71,'The laws made by the third tier of government in Nigeria are refer to as','bye-laws.','constitutional laws.','decrees.','edicts','','','a','','neco','2014',75,'Admin','2016-11-26 17:20:16','2020-05-28 21:08:48'),(72,'What does “35% affirmative action” of the present administration stand for? More','PDP  stalwarts   should   be engaged in government','political positions for women in government','women to be considered for campaign','women to be elected as governors','','','b','','neco','2014',73,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:53'),(73,'A political party’s programme is known as its','constitution.','document.','functions.','manifesto.','','','d','','neco','2014',57,'Admin','2016-11-26 17:20:16','2020-05-28 21:10:07'),(74,'How many Senator(s) represent the Federal Capital Territory in the senate?','1','2','3','4','','','a','','neco','2014',78,'Admin','2016-11-26 17:20:16','2020-06-09 11:28:16'),(75,'The International Court of Justice is located in','Britain.','Netherlands.','Nigeria.','Norway.','','','b','','neco','2014',65,'Admin','2016-11-26 17:20:17','2020-05-28 21:08:14'),(76,'The headquarters of United Nations is located in','Abuja.','England','Hague.','New York.','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:40'),(77,'One advantage of Bi-cameral legislature is that it','guards against intra-party clashes.','is the only system available.','prevents arbitrary law making','projects party manifestoes.','','','c','','neco','2014',56,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:19'),(78,'Public Complaints Commission in Nigeria is also known as','elder’s forum.','judiciary.','ombudsman.','people’s court.','','','c','','neco','2014',66,'Admin','2016-11-26 17:20:17','2020-05-28 21:08:15'),(79,'The public service structure of Nigeria is an offshoot of','America.','British.','Canada.','India.','','','b','','neco','2014',68,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:44'),(80,'A de-facto authority is mostly associated with','anarchy.','customs and tradition.','force.','law.','','','b','','neco','2014',68,'Admin','2016-11-26 17:20:17','2020-05-28 21:08:51'),(81,'The United Nations universal declaration on human rights was proposed in the year','1925','1930','1946','1948','','','d','','neco','2014',65,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:37'),(82,'Political apathy can be discouraged through the following, except','educating the electorate.','good governance.','independent judiciary.','press censorship.','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:17','2020-05-28 21:08:48'),(83,'One of the civic responsibilities of a citizen is to obey','bye-laws.','constituted authority.','court judgments.','edicts.','','','b','','neco','2014',61,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:21'),(84,'Which of the following is not a function of political parties?','Aggregation of opinion','Educating the government','Interest articulation','Unifying factor.','','','d','','neco','2014',49,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:52'),(85,'Nigeria is now hundred years since amalgamation which means she has celebrated — anniversary.','amalgamation.','centenary.','golden jubilee.','independence.','','','b','','neco','2014',46,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:54'),(86,'Which of the following bodies is responsible for defending the country against external aggression? The','Army','Civil defense.','Customs.','Police.','','','a','','neco','2014',72,'Admin','2016-11-26 17:20:17','2020-06-09 11:26:22'),(87,'One of the following is a country as well as a continent.','Africa','Antarctica','Asia','Australia','','','d','','neco','2014',68,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:57'),(88,'In a parliamentary system of government, the powers of the executive is vested in the office of the','minister.','premier','president.','prime minister.','','','d','','neco','2014',54,'Admin','2016-11-26 17:20:17','2020-06-09 11:27:27'),(89,'One of the major problems facing local government administration in Nigeria is','insufficient councilors','lack of control by the central government','lack of funds','leadership','','','c','','neco','2014',59,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:40'),(90,'The land contention between Nigeria and Cameroon is called','Bakassi Penisula','Bonny Island','Calabar River','Lekki Penisula','','','a','','neco','2014',58,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:25'),(91,'The headquarters of ECOWAS is located in','Abuja','Accra','Adis-Ababa','Lome','','','d','','neco','2014',78,'Admin','2016-11-26 17:20:17','2020-05-28 21:10:01'),(92,'Human rights abuse can be prevented through the following, except','constitutional means','court of law','mass literacy','protest','','','d','','neco','2014',60,'Admin','2016-11-26 17:20:18','2020-05-28 21:10:07'),(93,'The public Service is a branch of the ____ arm of government','civilian','executive','judiciary','legislative','','','b','','neco','2014',63,'Admin','2016-11-26 17:20:18','2020-05-28 21:09:56'),(94,'When the national flag is flown half mask, it is a sign of national','centenary celebration','children’s day','independence','mourning','','','d','','neco','2014',64,'Admin','2016-11-26 17:20:18','2020-05-28 21:09:56'),(95,'One of the ways to ensure a free and fair election is to','allow parties to campaign on election day','appoint a politician as the chairman of the electoral commission','ensure INEC chairman is appointed from a pressure group','guarantee the security of electoral officers and materials','','','d','','neco','2014',67,'Admin','2016-11-26 17:20:18','2020-05-28 21:09:56'),(96,'How many colours are in the traffic light?','2','3','4','5','','','b','','neco','2014',68,'Admin','2016-11-26 17:20:18','2020-05-28 21:08:44'),(97,'The channel through which political parties make their program known to the people is ..............','canvassing','campaigning','convincing','coronation','','','b','','wassce','2012',66,'Admin','2016-11-26 17:47:57','2020-05-28 21:09:04'),(98,'What arm of the criminal justice system is prison?','first','second','third','none','','','c','','wassce','2012',73,'Admin','2016-11-26 17:47:58','2020-05-28 21:10:07'),(99,'................ is the apex body saddled by law to fight corruption and other related offences','IRS','ICPC','EFCC','NPF','','','c','','wassce','2012',77,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:36'),(100,'The responsibility of protecting past and present high ranking government officials falls on ...............','police','army','civil defense corps','SSS','','','a','','wassce','2012',69,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:56'),(101,'............ is obtained from the Nigerian immigration services as a requirement to travel out of the country','ticket','yellow card','passport','national ID card','','','c','','wassce','2012',54,'Admin','2016-11-26 17:47:58','2020-05-28 21:10:01'),(102,'There are ............. local government in Nigeria','700','714','744','774','','','d','','wassce','2012',78,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:40'),(103,'Local government is the ............... tier of government','1st','2nd','3rd','4th','','','c','','wassce','2012',71,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:23'),(104,'Television and radio are example  of ......... media','print','electronic','advertising','mass','','','b','','wassce','2012',96,'Admin','2016-11-26 17:47:58','2020-05-28 21:10:01'),(105,'Newspapers and magazine and example of ..... media','print','electronic','advertising','mass','','','a','','wassce','2012',74,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:20'),(106,'One of the listed criteria qualifies one for election .......','certificate','beauty','height','citizenship','','','d','','wassce','2012',80,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:53'),(107,'The following are duties to be performed by the citizens of a country EXCEPT','Destroying government properties','obey law and order','payment of tax','show loyalty','','','a','','wassce','2012',81,'Admin','2016-11-26 17:47:58','2020-05-28 21:08:10'),(108,'The form of government in which the electorate exercise their governing power directly through their elected \trepresentation is called ........','supremacy','democracy','autocracy','charismatic','','','b','','wassce','2012',79,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:45'),(109,'Punishment for law breaking include the following except ..........','freedom of movement','detention','sanctions','political instability','','','d','','wassce','2012',73,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:52'),(110,'The act of counting the numbers of people living in a country in order to determine the total numbers of \tpeople in a state is known as .......','election','national population census','voting','rights','','','b','','wassce','2012',92,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:51'),(111,'The last population census in Nigeria was conducted in ...........','2003','2006','2007','2005','','','b','','wassce','2012',83,'Admin','2016-11-26 17:47:58','2020-06-09 11:28:16'),(112,'The 219 chibok girls were ................ while ..............','abducted, praying in the mosque','kidnaped, praying in the church','abducted, wondering along the street of chibok town','kidnaped, preparing to write their WAEC examination','','','d','','wassce','2012',68,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:16'),(113,'The following are types of drugs except','cannabis','depressants','benzodiazepine pines','steroids','','','c','','wassce','2012',94,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:39'),(114,'Cocaine, morphine and heroin are example of','tobacco','steroids','narcotics','inhalants','','','c','','wassce','2012',84,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:49'),(115,'......... refer to a group of drugs that are inhaled in the form of a gas or solvent','hallucinogens','stimulants','inhalants','gasoline','','','c','','wassce','2012',85,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:45'),(116,'Cannabis is also called .........','barbiturates','cassava','marijuana','caffeine','','','b','','wassce','2012',81,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:28'),(117,'Which of the following is the most common forms of drug abuse','drug trafficking','self medication','drug combination','frequent use','','','b','','wassce','2012',75,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:47'),(118,'The following factors are responsible for drug abuse except','family upbringing','high stress level','poverty','foster parenthood','','','d','','wassce','2012',78,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:39'),(119,'........ is the type of parenthood where a different couple raise a particular child that is not their own','helicopter parent','foster parenthood','slow parenting','different parenthood','','','b','','wassce','2012',65,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:04'),(120,'One of the following is a cause of single parents in Nigeria','slow parenting','social group','nature of work','divorce','','','d','','wassce','2012',71,'Admin','2016-11-26 17:47:59','2020-05-28 21:08:09'),(121,'.......... strengthens the sensitive mental and emotional bond between the parent and children','narcissistic parenting','attachment parenting','positive parenting','teenage parenting','','','b','','wassce','2012',65,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:33'),(122,'........... is the verdict that results when a law court declares a defendant guilty of a crime','immunity clause','conviction','customary clause','traditions','','','b','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:32'),(123,'The clause which exempts the president from being prosecuted while still in office is called','military clause','special clause','conviction clause','immunity clause','','','d','','wassce','2012',61,'Admin','2016-11-26 17:47:59','2020-05-28 21:08:32'),(124,'All the following can limit the right of a citizen except','war','state of emergency','universality','military rule','','','c','','wassce','2012',69,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:59'),(125,'The following are causes of emergency rule except','crisis','blood lettings','stage peaceful protest','sabotage / terrorism','','','c','','wassce','2012',60,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:40'),(126,'The World AIDs Day is usually ..........................','June 12th every year','May second every year','October 1st every year','December 1st every year','','','d','','wassce','2012',77,'Admin','2016-11-26 17:47:59','2020-05-28 21:10:07'),(127,'One of the following is not human right group','Constitutional Right Project (CRP)','National Association of Democratic Lawyers (NADL)','Nigeria Bar Association (NBA)','Civil Liberties Organization (CLO)','','','c','','wassce','2012',73,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:59'),(128,'One of the following is not a pressure group','National Association of Nigeria Student (NANS)','Nigeria Labour Congress (NLC)','Academic Staff Union of Universities (ASUU)','Committee for Defense of Human Right (CDHR)','','','d','','wassce','2012',81,'Admin','2016-11-26 17:47:59','2020-05-28 21:08:47'),(129,'One of the following is not a political party','PDP','APGA','ANPC','CPC','','','c','','wassce','2012',72,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:49'),(130,'One of the following is a social group','dangote group of companies','rotary club','Millan group','human right Africa','','','c','','wassce','2012',73,'Admin','2016-11-26 17:47:59','2020-05-28 21:10:00'),(131,'The organization with the motives and goals of helping people is called','social group','charity group','pressure group','human right group','','','b','','wassce','2012',82,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:35'),(132,'The following are the reasons why people do not participate in polities except','illiteracy','lack of justice','multi-party system','religion','','','c','','wassce','2012',71,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:48'),(133,'............... is the prejudicial treatment of fellow human being','god fatherism','independence','justice','discrimination','','','d','','wassce','2012',72,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:48'),(134,'Laws are interpreted by the','Judiciary','President','Legislature','Executive','','','a','','wassce','2012',96,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:55'),(135,'The president belongs to ............... arm of the government','Executive','Judiciary','Military','Legislature','','','a','','wassce','2012',65,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:48'),(136,'The process whereby an individual choose to favour a person who come from his family or tribe over other people or tribes is known as','stereotype','ethnicity','nepotism','favouritism','','','c','','wassce','2012',69,'Admin','2016-11-26 17:47:59','2020-05-28 21:08:47'),(137,'When a group of people believe in and keep to certain norms, values and ways of life of their community since its creation, we call this .................','religion','stereotypes','traditions','custom','','','c','','wassce','2012',69,'Admin','2016-11-26 17:48:00','2020-05-28 21:08:43'),(138,'Traffic lights are also known and referred to as','three directives light','spotlight','flow traffic directive','informative sign','','','b','','wassce','2012',71,'Admin','2016-11-26 17:48:00','2020-05-28 21:08:15'),(139,'One of the following is not a federal road agencies','DTO','FRSC','TRACE','VIO','','','c','','wassce','2012',72,'Admin','2016-11-26 17:48:00','2020-05-28 21:09:49'),(140,'One of the following is a regulatory prohibitory sign','stop police','speed limit','t junction','ferry','','','a','','wassce','2012',79,'Admin','2016-11-26 17:48:00','2020-05-28 21:09:24'),(141,'The traffic light has how many colours','3','4','5','2','','','a','','wassce','2012',61,'Admin','2016-11-26 17:48:00','2020-05-28 21:08:22'),(142,'From the basic road traffic regulation pedestrians should not attempt to cross the road when the light are ............. and ...............','green and yellow','green and red','yellow and red','red and yellow','','','a','','wassce','2012',60,'Admin','2016-11-26 17:48:00','2020-05-28 21:07:53'),(143,'Motorcyclists must always protect their heads with safety ............. which must be properly fastened','seat belt','head guild','helmets','cap cycles','','','c','','wassce','2012',88,'Admin','2016-11-26 17:48:00','2020-05-28 21:09:24'),(144,'Pedestrians should always cross road using','stop hold','parked vehicles','zebra crossing','bridge','','','c','','wassce','2012',70,'Admin','2016-11-26 17:48:00','2020-05-28 21:08:53'),(145,'The former NAFDAC DG Prof Dora Akunyili died on','June 9. 2014','June 17, 2014','June 7, 2014','May 27, 2014','','','c','','wassce','2012',87,'Admin','2016-11-26 17:48:00','2020-05-28 21:09:58'),(146,'Political values are acquired in any given society through','Political re-orientation','Political campaign','Political socialization','Political indoctrination','','','c','','neco','2012',60,'Admin','2016-11-26 18:05:51','2020-05-28 21:09:37'),(147,'To ensure the rights and freedom of citizens; the power of the arms of government must be','fused','incorporated','separated','rotated','','','c','','neco','2012',73,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:43'),(148,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social right','','','b','','neco','2012',63,'Admin','2016-11-26 18:05:52','2020-05-28 21:07:24'),(149,'The commission charged with the conduct of federal \telections in Nigeria between 2014 and 2015 is..........','Nec','fedeco','Inec','Necon','','','c','','neco','2012',66,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:49'),(150,'The colour of the Nigeria flag is ..............., anytime it \tis half masked it means that the nation is ...............','green white green - rejoicing','white green white - mourning','green white green - mourning','green white blue - voting','','','c','','neco','2012',64,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:25'),(151,'Which of the following is used in gauging public opinion','Constitution','Educational Institution','Mass media','Electoral college','','','c','','neco','2012',65,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:52'),(152,'In Nigeria, The agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil  defense corps','Police','','','d','','neco','2012',68,'Admin','2016-11-26 18:05:52','2020-05-28 21:07:58'),(153,'The National Assembly in Nigeria is primarily responsible for','executing laws','Interpreting laws','ratifying appointment','making laws','','','d','','neco','2012',70,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:55'),(154,'The major factor militating against efficient operation \tof electoral commission in Nigeria is .......................','Inadequate public support','Population size','Inadequate skilled manpower','excessive political interference','','','d','','neco','2012',56,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:32'),(155,'When Ebola disease is very rampant ............. count \ttheir loses while ......... smile to the bank','fish sellers, bush meat sellers','bush meat sellers, fish sellers','bread sellers, fish sellers','students, teachers','','','b','','neco','2012',86,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:40'),(156,'Workers in the Public Corporations are known as','Civil servants','Private employees','Public servants','Professional employees','','','c','','neco','2012',70,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:24'),(157,'Membership of a society is','conventional','Mandatory','Voluntary','Constitutional','','','c','','neco','2012',59,'Admin','2016-11-26 18:05:53','2020-05-28 21:10:06'),(158,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','Police, Army, sovereignty and custom','','','c','','neco','2012',74,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:41'),(159,'Citizenship is acquired by an alien through','registration','birth','Conferment','Naturalization','','','d','','neco','2012',64,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:17'),(160,'The office responsible for announcing the result of an election is known as','ballot officer','presiding officer','Returning officer','Electoral officer','','','c','','neco','2012',72,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:57'),(161,'Law made by military governments are called','decrees','Bye-laws','Edicts','acts','','','a','','neco','2012',62,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:40'),(162,'The ultimate aim of political parties is to','implement people oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','neco','2012',59,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:49'),(163,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their member','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','neco','2012',61,'Admin','2016-11-26 18:05:53','2020-05-28 21:07:51'),(164,'Public servants in Nigeria belong to the ............. arm of government','military','executive','legislature','judiciary','','','b','','neco','2012',72,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:09'),(165,'One of the main duties of the local government service commission is to','supervise and manage the personnel of local government','conduct election into local council','create an enabling working environment for council workers','handle request for the creation of more local government','','','a','','neco','2012',65,'Admin','2016-11-26 18:05:53','2020-05-28 21:10:06'),(166,'The option A4 model was used in the conduct of the','2007 election','1983 election','1993 election','1999 election','','','c','','neco','2012',87,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:43'),(167,'The following is the function of a responsible parenthood','care and love','gambling','Drug addition','fighting','','','a','','neco','2012',68,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:55'),(168,'Custom refers to .............','tradition or social value or patterns','image of a country','sharing similar or common ethnic background','A state of feeling of oneness among the people','','','a','','neco','2012',64,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:43'),(169,'The term V. I. O. mean','Vehicle inspection officer','vehicle implementation officer','vehicle induce operation','vehicle induction officer','','','a','','neco','2012',62,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:15'),(170,'Which of these countries operate a unitary system of \tgovernment','Nigeria','U. S. A','Ghana','Britain','','','d','','neco','2012',69,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:04'),(171,'Which of the following are not fundamental human right','right to life','right to gainful employment','right to vote and be voted for','right to overthrow a government','','','d','','neco','2012',71,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:36'),(172,'A constitution that is very easy to amend is called a ...... constitution','rigid','flexible','an easy','simple','','','b','','neco','2012',66,'Admin','2016-11-26 18:05:53','2020-05-28 21:06:06'),(173,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate','','','d','','neco','2012',71,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:15'),(174,'One judicial function performed by the executive is','granting of amnesty','implementing judicial order','ensuring obedience to the law','appointing judges','','','a','','neco','2012',68,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:16'),(175,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary','','','a','','neco','2012',69,'Admin','2016-11-26 18:05:54','2020-05-28 21:10:06'),(176,'The private ownership of the means of production is a feature of','capitalism','Socialism','Communalism','Communism','','','a','','neco','2012',76,'Admin','2016-11-26 18:05:54','2020-05-28 21:10:07'),(177,'A government is said to be legitimate if it','has the people’s mandate to rule','is not oppressive','provide social services for the people','accepts people’s criticism','','','a','','neco','2012',63,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:05'),(178,'All type of government perform all the following functions except','providing welfare and developmental facilities','maintaining law and order','encouraging the struggle for power','encouraging trade with other state','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:56'),(179,'A coup d’etat is regarded as','A source of political legitimacy','A manipulation of the constitution','A constitutional way of changing the government','an unconstitutional way of changing the government','','','d','','neco','2012',76,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:05'),(180,'Which of the following is an advantage of local government','Agents for money based politics','electoral commissions','training grounds for political leaders','agents of pressure group','','','c','','neco','2012',71,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:13'),(181,'Public Corporations are financed','by tax payers','with private funds','with entrepreneurial funds','by political parties','','','a','','neco','2012',83,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:12'),(182,'A manifesto refers to','the register of party members','rejected ballot papers','valid ballot papers','Document containing the aims and programmes of   a political party','','','d','','neco','2012',71,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:12'),(183,'Which of the following is not a duty of a citizen','obedience to the law','payment of taxes','service to the Nation','giving alms to the poor','','','d','','neco','2012',67,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:40'),(184,'The police perform all the following function except','public execution of law breaker','controlling and directing traffic','protection of life and property','enforcement of law and orders','','','a','','neco','2012',67,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:24'),(185,'An agreed set of rules prescribing the governance of a country can be called the','constitution','charter','manifesto','programme','','','a','','neco','2012',70,'Admin','2016-11-26 18:05:54','2020-05-28 21:08:51'),(186,'The lack of interest in politics by many citizens in a country is called','civic agitation','mass apathy','mass protest','political unrest','','','b','','neco','2012',73,'Admin','2016-11-26 18:05:54','2020-05-28 21:07:20'),(187,'The following are ways to prevent drug addiction except','civic education','law enforcement and regulation','mass media effort','voting at election','','','d','','neco','2012',74,'Admin','2016-11-26 18:05:54','2020-05-28 21:10:06'),(188,'The following are examples of pressure group except','N. U. R. T','NBA','NLC','PDP','','','d','','neco','2012',62,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:37'),(189,'The following are Road Traffic signs except','Regulatory sign','Informative sign','Warning sign','Philosophy sign','','','d','','neco','2012',65,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:29'),(190,'The function of Federal Road Safety Corp (FRSC) is','Enforcing the traffic regulation on road','making law','executing law','Interpreting law','','','a','','neco','2012',67,'Admin','2016-11-26 18:05:54','2020-05-28 21:10:00'),(191,'The function of vehicle inspection officer (VIO) is','ensuring the road wordiness of vehicle on the road','protection of life and property','collection of tax','counting of votes cast at election','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:36'),(192,'Colonization of Africa was mainly motivated by','security consideration','economic reasons','religious reasons','cultural factor','','','b','','neco','2012',80,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:45'),(193,'Which of these is a type of parenthood','single parenthood','ethnic parenthood','village parenthood','clan parenthood','','','a','','neco','2012',58,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:35'),(194,'Decrees are laws made by ............','Democratic government','The prime minister','The military','Parliaments','','','c','','neco','2012',60,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:12'),(195,'Austerity measure was first introduced in Nigeria by ..........','President Babangida','Olusegun Obasanjo','President Sehu Shagari','President Goodluck Jonathan','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:13'),(196,'Before crossing the road you are expected to ...........','Look left and then right','Look left, right and left again','Look back and left','Look forward for oncoming okada','','','b','','wassce','2013',92,'Admin','2016-11-27 17:07:11','2020-06-09 11:30:04'),(197,'.............. was the capital of Nigeria before .................','Abuja - Lagos','Lagos - Abuja','Ikeja - Abuja','Benin - Abuja','','','b','','wassce','2013',75,'Admin','2016-11-27 17:07:15','2020-05-28 21:08:47'),(198,'The primary duty of the police force is to','Make law','Interpret the law','Deal with danfo and okada drivers','Non of the above','','','d','','wassce','2013',71,'Admin','2016-11-27 17:07:19','2020-05-28 21:09:26'),(199,'The law is enforced by','Military','Legislators','Police force','Area boys','','','c','','wassce','2013',80,'Admin','2016-11-27 17:07:27','2020-05-28 21:09:38'),(200,'Which of the following is NOT an offence','Tax avoidance','Tax evidence','Stealing by trick','Money laundering','','','a','','wassce','2013',62,'Admin','2016-11-27 17:07:31','2020-06-09 11:30:04'),(201,'Some core Rights or Freedoms in the Universal Declaration of Human Rights of 1948 are','The right to life and right to freedom of opinion and expression','The right to fight and smoke in the public place','The right to attack your enemies and the right to make slanderous speeches','None of the above','','','a','','wassce','2013',73,'Admin','2016-11-27 17:07:35','2020-05-28 21:09:33'),(202,'Cultism can lead to','Immoral activities and indiscipline','Maintenance of law and order in the society','Corrupt free society','Sound cultural development','','','a','','wassce','2013',65,'Admin','2016-11-27 17:07:39','2020-05-28 21:09:16'),(203,'Popular participation can','promote political awareness and education','Lead to political apathy','lead to the election of wrong leaders','to political instability','','','a','','wassce','2013',84,'Admin','2016-11-27 17:07:47','2020-05-28 21:08:43'),(204,'One of the ways to prevent the spread of HIV/AIDs is','Not to eat in fast food joints','Not to shake hands with anybody','To avoid any object contaminated with blood','Sleep under a mosquito net','','','c','','wassce','2013',60,'Admin','2016-11-27 17:07:51','2020-05-28 21:09:33'),(205,'Nigeria became independent in ........... and a Republic in ................ Respectively','1963 and 1960','1960 and 1963','1954 and 1960','None of the above','','','b','','wassce','2013',83,'Admin','2016-11-27 17:07:55','2020-05-28 21:09:57'),(206,'The process of enlightening or training citizens on their rights and responsibilities is known as','Workshop training','Citizenship Education','Political Education','Citizenship Rights','','','b','','wassce','2013',75,'Admin','2016-11-27 17:07:55','2020-06-25 23:00:26'),(207,'The ideas, things or principles cherished by the people in a community are referred to as','rights','culture','values','due process','','','c','','wassce','2013',84,'Admin','2016-11-27 17:08:03','2020-06-09 11:29:06'),(208,'The illicit or illegal business in the sales and \ttransportation of human beings for economic and other selfish purposes is known as','Human capital development','Human traffic rule disobedience','Human trafficking','Mans inhumanity to man','','','c','','wassce','2013',66,'Admin','2016-11-27 17:08:03','2020-05-28 21:09:44'),(209,'An indifference attitude towards political activities by the citizens of a state is termed','political apathy','political unrest','political ideology','political disunity','','','a','','wassce','2013',88,'Admin','2016-11-27 17:08:07','2020-06-09 18:24:55'),(210,'For which of these can someone be arrested while driving on a high way','driving and laughing','driving and singing','driving and eating or receiving phone call','driving and crying','','','c','','wassce','2013',68,'Admin','2016-11-27 17:08:11','2020-05-28 21:09:33'),(211,'The process in which every qualified citizen of a state has the right to vote is called ............ suffrage','universal adult','democratic','tax payer','communal','','','a','','wassce','2013',78,'Admin','2016-11-27 17:08:11','2020-05-28 21:08:09'),(212,'The armed forces and the police are part of the ........ organ of government','executive','judicial','legislative','informative','','','a','','wassce','2013',76,'Admin','2016-11-27 17:08:14','2020-06-09 11:29:06'),(213,'The exercise of arbitrary power, whims and caprices constitutes a negation of .........','rule of law','fundamental human right','checks and balance','indirect rule','','','a','','wassce','2013',67,'Admin','2016-11-27 17:08:15','2020-05-28 21:09:43'),(214,'Which of the following concepts confirms the general acceptance and recognition of a government?','Democratic powers','Legitimacy','sovereignty','popular democracy','','','b','','wassce','2013',77,'Admin','2016-11-27 17:08:15','2020-06-09 11:27:27'),(215,'Which of the following can cause Human Trafficking in a country','poverty, youth unemployment and greed','Sound education and proper counselling','Social and economic contentment','B and C above','','','a','','wassce','2013',84,'Admin','2016-11-27 17:08:15','2020-05-28 21:10:06'),(216,'The use of drugs through self - medication or without due medical prescription is referred to as','Personal drug administration','Drug abuse','Human right abuse','Drug trafficking','','','b','','wassce','2013',76,'Admin','2016-11-27 17:08:15','2020-05-28 21:08:57'),(217,'An important characteristics of Democracy is','The absence of free press and mass media','Unequal political rights','Respect for principle of rule of law','The absence of separation of powers between the   arms and levels of government','','','c','','wassce','2013',70,'Admin','2016-11-27 17:08:15','2020-05-28 21:06:51'),(218,'Which one of the following is the founding father of Nigeria nationalism?','Goodluck Jonathan','Oba Kosoko','Herbert Macaulay','Olusegun Obasanjo','','','c','','wassce','2013',85,'Admin','2016-11-27 17:08:19','2020-06-09 18:24:55'),(219,'The use of illicit or hard drugs such as marijuana (Indian hemp) heroine, morphine etc. is known as','Human right abuse','Drug trafficking','Drug enhancement','Drug abuse','','','d','','wassce','2013',71,'Admin','2016-11-27 17:08:23','2020-05-28 21:10:06'),(220,'The farthest government to the people is the ............ government','Local','State','Federal','A and B above','','','c','','wassce','2013',87,'Admin','2016-11-27 17:08:23','2020-05-28 21:10:06'),(221,'An instrument for exercise of power for controlling, administering and managing the affairs of people based on laws is the','Civil service','Executive','Government','State','','','c','','wassce','2013',81,'Admin','2016-11-27 17:08:23','2020-05-28 21:09:57'),(222,'The ideology which emphasizes a classless society is','Communism','Capitalism','Totalitarianism','Feudalism','','','a','','wassce','2013',67,'Admin','2016-11-27 17:08:27','2020-05-28 21:09:00'),(223,'Which of the following constitutes drug abuse','taking less than the dose recommended by the doctor','taking more than the dose recommended by the doctor','taking the exact dose recommended by the doctor','A and B above','','','d','','wassce','2013',73,'Admin','2016-11-27 17:08:31','2020-05-28 21:08:56'),(224,'The power to legislate is usually exercised by','parliament','executive','judiciary','the president','','','a','','wassce','2013',71,'Admin','2016-11-27 17:08:39','2020-05-28 21:09:53'),(225,'Membership of a state is known as','citizenship','statism','patriotism','indigenousness','','','a','','wassce','2013',75,'Admin','2016-11-27 17:08:39','2020-05-28 21:09:49'),(226,'The process of learning the political attitudes, values and beliefs that are relevant to the political system is known as','political culture','political socialization','political participation','political science','','','b','','wassce','2013',89,'Admin','2016-11-27 17:08:39','2020-06-09 11:29:06'),(227,'The system of government in which all aspects of life are controlled by the government is','democracy','totalitarianism','capitalism','socialism','','','b','','wassce','2013',75,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:47'),(228,'It is an offense to drive along the high way','without putting on the seat belt','and talk or smile at the same time','and make phone calls at the same time','A and C above','','','d','','wassce','2013',73,'Admin','2016-11-27 17:08:43','2020-05-28 21:07:21'),(229,'The individual rights would be better protected if enshrined in the ..................','Courts','Constitutions','Bible and Quran','National Newspapers','','','b','','wassce','2013',67,'Admin','2016-11-27 17:08:43','2020-06-09 11:26:22'),(230,'What is the minimum age for voters in Nigeria','15','20','18','50','','','c','','wassce','2013',78,'Admin','2016-11-27 17:08:43','2020-06-09 11:29:06'),(231,'Which of these characteristics of the civil service ensure continuity of government?','Neutrality','Permanence','Bureaucracy','Loyalty','','','a','','wassce','2013',78,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:44'),(232,'Public corporation are owned by the','government','banks','private individuals','foreigners','','','a','','wassce','2013',84,'Admin','2016-11-27 17:08:43','2020-06-09 11:30:04'),(233,'The principle of equality before the law is the same as','social equality','social injustices','checks and balances','democratic justices','','','a','','wassce','2013',68,'Admin','2016-11-27 17:08:43','2020-05-28 21:10:06'),(234,'The organ of government which are normally fused in a military regime are the','judiciary and legislative','civil service and executive','legislative and executive','legislative and judiciary','','','c','','wassce','2013',78,'Admin','2016-11-27 17:08:43','2020-05-28 21:08:26'),(235,'The illegal sales and transportation of human beings for economic and some other selfish purpose is termed','Slave Trade','Survival of the Fittest','Gross Human Right Abuse','Human Trafficking','','','d','','wassce','2013',82,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:20'),(236,'The lack of interest in politics and political activities by the citizens of a country is known as','political disinterestedness','political culture','political disintegration','political apathy','','','d','','wassce','2013',70,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:40'),(237,'Popular participation refers to','Political Apathy','The active involvement of citizens in the social political activities of a country','The rule of the party with the largest number of supporters','The rule of a prominent and popular politician','','','b','','wassce','2013',63,'Admin','2016-11-27 17:08:43','2020-06-09 11:28:16'),(238,'The rule of law simply means','The ruling of a lawful leader','The absence of political instability','Supremacy of the law','The ruling of legislators','','','c','','wassce','2013',70,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:21'),(239,'Cultism is ........, and so it should be ........','useful - allowed','cultural - encouraged','dangerous - discouraged','amiable - supported','','','c','','wassce','2013',79,'Admin','2016-11-27 17:08:43','2020-05-28 21:10:07'),(240,'Drug abuse can be curbed by','encouraging the use of enhancement drugs in sports','teaching youths moral and religious principles','encouraging rural urban migration','None of the above','','','b','','wassce','2013',70,'Admin','2016-11-27 17:08:44','2020-05-28 21:07:42'),(241,'A problem commonly faced by most people living with HIV/AIDs is of','Stigmatization','Non availability of drugs','Government insincerity','Lost of appetite','','','a','','wassce','2013',91,'Admin','2016-11-27 17:08:44','2020-06-09 11:30:04'),(242,'Which of the following type of government is hereditary?','Democracy','Oligarchy','Monarchy','Fascism','','','c','','wassce','2013',69,'Admin','2016-11-27 17:08:44','2020-05-28 21:09:28'),(243,'An organization whose ultimate aim is to gain the control of government and implement its programmes is known as a','Trade Union','Local Government','Political Party','Pressure Group','','','c','','wassce','2013',68,'Admin','2016-11-27 17:08:44','2020-05-28 21:09:25'),(244,'The president belongs to .......... arm of the government','Legislative','Judiciary','Executive','Anti-crime','','','c','','wassce','2013',72,'Admin','2016-11-27 17:08:44','2020-05-28 21:08:45'),(245,'In Nigeria the outbreak of Ebola disease was first observed in the year','2012','2013','1960','2014','','','d','','wassce','2013',73,'Admin','2016-11-27 17:08:44','2020-06-09 11:30:04'),(246,'Juvenile delinquency and cultism are ......... and should be .........','undesirable - encouraged','desirable - discouraged','undesirable - discouraged','desirable - discouraged','','','c','','neco','2013',77,'Admin','2016-11-27 17:44:15','2020-05-28 21:09:41'),(247,'Those who consume fish and vegetable frequently stand the chance of contacting the','HIV/AIDs disease','Ebola disease','Typhoid and yellow fever disease','None of the above','','','d','','neco','2013',67,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:33'),(248,'The primary function of the legislature is the','monitoring the executive','making of laws','voting of bills','appointment of ministers','','','b','','neco','2013',57,'Admin','2016-11-27 17:44:16','2020-06-09 11:28:16'),(249,'Ejiro, the senior brother of Omonigho had fever last week. The doctor prescribed a certain drug for him, He was asked to take one tablet, three times a day for four days. He took the drug as recommend for the first and second day and stopped. Five days later he took one tablet in the morning and one again at night. Omonigho’s action can be said to be a kind of','bad drug administration','drug Abuse','drug trafficking','Human trafficking','','','b','','neco','2013',71,'Admin','2016-11-27 17:44:16','2020-05-28 21:07:29'),(250,'When a constitution is difficult to amend it is said to be','rigid','flexible','written','federal','','','a','','neco','2013',59,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:29'),(251,'If Omonigho had taken the tablet one three times a day for six days his action constitutes a kind of','good drug administration','drug abuse','drug trafficking','none of the abuse','','','b','','neco','2013',78,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:35'),(252,'Ejiro, who is not sick decide to take the same drug for the same duration as recommended for Omonigho by the doctor.Ejiro’s action can be described as a form of','preventive measure','drug abuse','drug trafficking','Self help activity','','','b','','neco','2013',69,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:11'),(253,'As Mr Umukoro got to Oghara junction, near Sapele, he packed the bus and bought some roasted monkey bush meat. Some of the passengers in the bus followed suit, that day was a good Friday. On motion Mr Umukoro, the driver and some of the passengers were doing justice to the monkey bush meat. No sooner had they started than they were stopped and Mr Umukoro was fined by men of the FRSC. If the fine was proper which of the reasons bellow could be responsible for it','some of the passengers ate the bush meat while the bus was on motion','Mr Umukoro, the driver was driving and eating at the same time','They were not supposed to eat monkey bush meat because they can contact the Ebola virus from it.','They were not expected to eat and any kind of meat on a good Friday','','','b','','neco','2013',73,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:20'),(254,'The Ebola virus sneaked into Nigeria through','The Liberian born American, Mr Patrick Sawyer','The Ghanaian born American, Mr Patrick Sayer','Members of the Boko Haram','Monkeys and bats','','','a','','neco','2013',77,'Admin','2016-11-27 17:44:16','2020-05-28 21:10:06'),(255,'As a citizen you can be deprived of your Fundamental Human Rights during','Emergency Rule','Election period','National day celebration','National public holidays','','','a','','neco','2013',68,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:59'),(256,'Malaria fever can be transmitted through','hand shaking','eating of unbalanced diet','mosquito bite','eating of bush meat such as bat and monkey','','','c','','neco','2013',73,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:59'),(257,'Plenty of money in the society, not backed by commensurate productive activities can lead to','deflation','inflation','National developmental','cashless society','','','b','','neco','2013',75,'Admin','2016-11-27 17:44:16','2020-05-28 21:10:05'),(258,'In the year 2014, the Nigerian President Good luck Ebelle Jonathan  urged Nigerians to .......... the rumors  that drinking and bathing with salt water prevents or cures Ebola virus','ignore','accept','welcome','embrace','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:53'),(259,'The primary duty of the army is to','execute the law','interpret the law','overthrow the government when there is anarchy','defend the country against external aggression','','','d','','neco','2013',79,'Admin','2016-11-27 17:44:16','2020-05-28 21:08:48'),(260,'The first known outbreak of Ebola was in ................','2014, in Sierra Leone','1976, in a remote village near the Ebola River in Congo','2014, in port Harcourt, Nigeria','Enugu, during the Nigeria - Biafra war','','','b','','neco','2013',73,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:49'),(261,'On a particular day in 2014, the National flag was flown half mask. This act symbolizes','National tailors day','National mourning','Children’s day','Golden jubilee celebration','','','b','','neco','2013',86,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:41'),(262,'Vehicles are expected to continue with their journey when the traffic light shows ...............','Red','Blue','Yellow','Green','','','d','','neco','2013',70,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:16'),(263,'In which of the following system is survival of the fittest mostly practiced','Communist system','Capitalist system','Feudalist','Totalistic system','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:16','2020-05-28 21:08:59'),(264,'For now the Ebola disease has','no known cure','several known cures','cannot kill its action','no physically observable symptoms','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-05-28 21:08:46'),(265,'Some years ago a popular Governor in one of the states in Nigeria was asked to mention some mineral \tresources from his state. He made mention of “Fanta, Pepsi, Coca cola. The governor is','right','wrong','illiterate','unpatriotic','','','b','','neco','2013',68,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:26'),(266,'If you were to be in the Governor’s shoes which of the following would you have chosen?','Miranda and seven up','coca cola and Fanta','petroleum','stock, bonds and cash','','','c','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:15'),(267,'The right practice of democracy can','ensure equity, justice and far play','discourage political education and awareness’','political unrest','lawlessness','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:00'),(268,'Political Apathy can lead to','very fast pace of development','the emergence of sound democratic government','wrong set of people coming into power','development of sound political culture','','','c','','neco','2013',68,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:17'),(269,'Human traffickers usually engage their victims .........','in educative programs','in forced labour','in skill acquisition activities','in recreational activities','','','b','','neco','2013',57,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:48'),(270,'During a particular voting exercise if majority of the \tpeople refuse to vote, this can be described as','political stubbornness','political apathy','political awareness','political socialization','','','b','','neco','2013',71,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:13'),(271,'Mr Dickson’s little son, clement was sent away from school because he has not paid his school fees of \tN=11,000. That same day as Mr Dickson boarded a Danfo bus he noticed that the purse of a fellow passenger dropped on the floor of the bus. Mr Dickson tactically picked up the purse, opened it and saw a handsome sum of N=100,000. No body in the bus noticed him, neither did the fellow passenger. As a patriotic and good citizen of Nigeria, what is Mr Dickson expected to do','Pay his tithe (1/10 of the money) to the church take the rest and pray for forgiveness','Draw the attention of the fellow passenger and give the money back to him /her','Use part of the money to pay his son’s fess and keep the rest because opportunity comes but once','Leave the purse on the floor, and mind his business','','','b','','neco','2013',66,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:55'),(272,'Public corporations are','meant to make profit','not meant to make profit','not expected to produce','established to gather public opinion','','','b','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:42'),(273,'The attitude of the crowd towards, the sick man was that of ............','indifference','friendliness','hospitality','political apathy','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',78,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:57'),(274,'Which of the following could be a possible reason for the crowds attitude towards the sick man','They were afraid that he might be an unknown soldier','They kept their distance so as not to contact the Ebola virus, in case he has it','They were not used to helping visitors','They kept their distance so as not to contact the HIV/AIDs virus, in case he has it','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','b','','neco','2013',76,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:36'),(275,'If the crowd insisted on keeping their distance what appropriate action could they have taken','call the appropriate health department to intervene','left him to his fate','stone him to death','desert him','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',68,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:50'),(276,'If the crowd suspected that he had the Ebola virus and wish to call the Ebola emergency line, which one of the following could they have called?','08023169485','0803361424','08023361936','08027063614','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:05'),(277,'Any forms of restricted franchise is a violation of the principle of','political equality','sovereignty','legality','constitutionalism','','','a','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:00'),(278,'Which of the following is not the civic obligation of a citizen','payment of taxes','freedom of conscience and speech','voting during elections','obedience to law','','','b','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:05'),(279,'A sovereign state is one','whose citizens are free to evade responsibility','whose governments decisions are made independent of foreign interference','which has a president and a prime minister','where its citizens can speak without fear or favour','','','b','','neco','2013',78,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:22'),(280,'Jamiu and Onome were among those standing inside a BRT bus in Lagos. Onome mistakenly stepped on Jamiu and Jamiu gave Onome a very dirty slap. As a law a biding citizen of the country which of the following reactions is expected of Onome','Turn the other chick for another slap','Slap Jamiu back and prepare for any fight that might ensure','Let Jamiu know that he, Onome stepped on him inadvertently, but pardon him to avoid escalating the matter','Push Jamiu down from the moving bus','','','c','','neco','2013',65,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:20'),(281,'Juvenile delinquency refers to','active youths participation in sports','wrong doings by the youths','Refusal to worship God by the youths','Urban Rural migration by the youth','','','b','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:37'),(282,'Psychopathy is a form of ................ behaviour','Normal','abnormal','desired','valued','','','b','','neco','2013',61,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:29'),(283,'Consumers of ......... especially ........... and ..............stand the a great risk of contacting the Ebola disease','fish, tilapia, titus','bush meat, monkey, bat','meat, cow, dog','vegetable, water leaf, bitter leaf','','','b','','neco','2013',62,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:00'),(284,'Government is the machinery established to manage the affairs of','the state','the civil service','peasants and students','strangers','','','a','','neco','2013',76,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:49'),(285,'The judicial organs of government is the body which','makes the law','implements the law','interpreters the law','rewards lawmakers','','','c','','neco','2013',71,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:56'),(286,'The Ebola disease is usually acquired when a person comes in contact with','the blood or bodily fluids of an infested organism','anybody whose name is Bola','any animal','snake fish','','','a','','neco','2013',53,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:32'),(287,'The prime minister is vested with the powers of the executive in ........... system of government','a parliamentary','a presidential','a monarchical','unitary','','','a','','neco','2013',65,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:07'),(288,'Through which of these can citizenship status be acquired','birth, naturalization, honorary and registration','birth, colonization and integration','referendum, incorporation and acceptance','convention registration and colonization','','','a','','neco','2013',79,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:44'),(289,'That which people enjoy primarily because they are human beings are called ...............','Human Obligation','Constitutional Right','Human Right','Democratic Right','','','c','','neco','2013',77,'Admin','2016-11-27 17:44:18','2020-05-28 21:08:36'),(290,'Which of these categories of people stand the greatest risk of contacting the Ebola virus .........','Lecturers and students in the school','Health workers and their family members','Hunters and their family members','b and c above','','','d','','neco','2013',57,'Admin','2016-11-27 17:44:18','2020-05-28 21:10:01'),(291,'It is often said that public servants cannot be held responsible for their actions. This principle denotes .................','anonymity','civic irresponsibility','accountability','neutrality','','','a','','neco','2013',68,'Admin','2016-11-27 17:44:18','2020-05-28 21:09:41'),(292,'Free, fair and credible elections are attributes of .......','undemocratic government','democratic government','military regime','monarchical governance','','','b','','neco','2013',72,'Admin','2016-11-27 17:44:18','2020-05-28 21:09:53'),(293,'The followings are symptoms of Ebola excepts','sudden fever and vomiting','headaches and diarrhea','muscle pains','frequent hunger and increase thirst for water','','','d','','neco','2013',83,'Admin','2016-11-27 17:44:18','2020-05-28 21:09:48'),(294,'Public service belongs to ................','the legislative arm of government','the judiciary arm of government','senate arm of government','the executive arm of government','','','d','','neco','2013',75,'Admin','2016-11-27 17:44:18','2020-05-28 21:09:56'),(295,'Human traffickers usually force their victims to engage in','rewarding exercise','religious activities','forced labour','useful trade','','','c','','wassce','2011',82,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:55'),(296,'Public servants in Nigeria are expected to be .............','involved in politics','non-partisan','ambitious politically','partial','','','b','','wassce','2011',74,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:37'),(297,'HIV and Ebola can be contacted through contact with','Non infected person','contaminated medical equipment such as needles and syringes','Very sick person','Healthy reptiles','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:24','2020-05-28 21:08:41'),(298,'Which of the following is not a preventive measure against the acquisition of the Ebola disease...........','Do not touch an infected person or their body fluids including blood, vomit, urine, saliva','Wash your hands regularly with soap and water and apply sanitizers frequently','Beware of hand shake and go for medical checkup as soon as possible when sick','Do not bath with medicated soap','','','d','','wassce','2011',73,'Admin','2016-12-12 19:40:24','2020-05-28 21:08:27'),(299,'Nigeria celebrated her centenary anniversary in the ......','1954','1960','1963','2014','','','d','','wassce','2011',79,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:26'),(300,'Which of the following are Ebola Emergency lines','08023169484 or 08033086660','08023361936 or 08034623521','08023164216 or 08033065936','08055281400 or 08023361936','','','a','','wassce','2011',76,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:56'),(301,'An individual with feverish condition who has taken Panadol is advised to see the ............ if the feverish condition persists after .......... days','father, four','pastor, three','doctor, three','doctor, ten','','','c','','wassce','2011',85,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:49'),(302,'Which of these is NOT undesirable in the society','cultism','terrorism','patriotism','vandalism','','','c','','wassce','2011',85,'Admin','2016-12-12 19:40:25','2020-05-28 21:10:07'),(303,'As at 2014 Nigeria has .......... states','47','37','60','57','','','b','','wassce','2011',70,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:21'),(304,'The Boko Haram insurgency started around','2009','2014','1960','1963','','','a','','wassce','2011',77,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:52'),(305,'A sense of right and wrong guiding a person’s action is known as','attitude','conscience','action','manner','','','b','','wassce','2011',72,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:40'),(306,'Which of the following is a bad habit capable of leading to future psychological and physiological ill health','self Actualization','Self Meditation','Self Medication','Self Appraisal','','','c','','wassce','2011',77,'Admin','2016-12-12 19:40:25','2020-05-28 21:08:27'),(307,'Civic Education is also known as ....................','Organizational Structure','Citizenship Education','Customers Opinion','Government Policy','','','b','','wassce','2011',82,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:56'),(308,'The number of Girls abducted by members of Boko Haram at Chibok in 2014 is roughly','200','219','419','180','','','b','','wassce','2011',73,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:51'),(309,'The Ebola virus can be prevented by','washing our hands regularly and applying sanitizer','washing our head always','taking drugs regularly','eating balanced diet','','','a','','wassce','2011',74,'Admin','2016-12-12 19:40:25','2020-05-28 21:08:31'),(310,'If six political parties contest for an election (A, B, C, D, E, F), what is the probability that party C will wine the election','1/3','1/4','1/6','1/2','','','c','','wassce','2011',72,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:58'),(311,'Another word for abduction is ...........................','to steal','to adopt','to kidnap','to kill','','','c','','wassce','2011',84,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:29'),(312,'In Lagos state and some other states in Nigeria, motorcycle (okada) riders are expected to wear ............ while on motion','Boot','Hand glove','Crash helmet','Black coloured shirt','','','c','','wassce','2011',63,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:43'),(313,'In Lagos state, the BRT lane is reserved for ....... only','The governor','Soldiers','Commercial buses','BRT buses','','','d','','wassce','2011',78,'Admin','2016-12-12 19:40:25','2020-05-28 21:10:07'),(314,'Mondays and Thursday are days meant for in between environmental sanitation exercise in ........... and .......... states respectively','Lagos and Edo','Edo and Lagos','Abuja and Lagos','Delta and Lagos','','','b','','wassce','2011',90,'Admin','2016-12-12 19:40:25','2020-06-25 23:00:18'),(315,'One way for Nigerians to maintain steady good health is by','taking malaria medicine everyday','bathing with salt water and eating bitter kola always','taking balance diet and engaging in regular physical exercise','taking alcohol and cigarettes regularly','','','c','','wassce','2011',66,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:04'),(316,'Which of the following is the cleanest source of water in Nigeria','pond water','river water','rain water','lagoon water','','','c','','wassce','2011',77,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:44'),(317,'Which of these tax below is paid by nearly everybody in Nigeria','Direct tax','Excise tax','Proportional tax','Regressive','','','b','','wassce','2011',77,'Admin','2016-12-12 19:40:25','2020-05-28 21:10:00'),(318,'Which of the following was a former military head of state in Nigeria','MKO Abiola','Goodluck Jonathan','General Idiagbon','General Babagida','','','d','','wassce','2011',75,'Admin','2016-12-12 19:40:25','2020-05-28 21:07:29'),(319,'The three larges and most influential ethnic groups in Nigeria are','Yoruba, Edo and Hausa','Igbo, Iteskiri and Hausa','Hausa, Igbo and Yoruba','Fulani, Yoruba and Efik','','','c','','wassce','2011',84,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:52'),(320,'The former National anthem begins with.......................','Nigeria We Hail Thee','Arise O Compatriots','I pledge to Nigeria my Country','So help me God','','','a','','wassce','2011',78,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:53'),(321,'NUC and NBA stands for ......... and ......... respectively','National University Commission and Nigeria Bar Association','Nigeria Bar Association and National University Commission','National Union Congress and Nigeria Basketball Authority','National Utilities Commission and Nigeria Bar Association','','','a','','wassce','2011',70,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:25'),(322,'General Murtala Mohammed was assassinated on his way to work in ..............','February 13, 1976','June 12, 1993','October 1, 1960','June 8, 1998','','','a','','wassce','2011',80,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:55'),(323,'Naira and Kobo was introduced in Nigeria in ..............','2nd July,1963','1st January 1972','June 12, 1993','March13, 1995','','','b','','wassce','2011',84,'Admin','2016-12-12 19:40:26','2020-05-28 21:10:06'),(324,'In the General election of June 12 1993, the two main candidates that contested for the post of presidency were ......','MKO Abiola and Olusegun Obasanjo','MKO Abiola and Tofa','Atiku and Olusegun Obasanjo','Yaradua and Goodluck Jonathan','','','b','','wassce','2011',79,'Admin','2016-12-12 19:40:26','2020-05-28 21:08:57'),(325,'A committee of PDP members is made up of 9 Hausas, 8 Igbo and 7 Yorubas. If the president wishes to choose just one person to be his special adviser, find the probability that the person chosen is neither Hausa nor Yoruba','7/24','2/3','3/8','1/3','','','d','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-06-09 11:27:27'),(326,'Driving, especially along the highway requires serious  ...........','concentration','meditation','concentration','perambulation','','','c','','wassce','2011',79,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:20'),(327,'A Taxi diver who mistakenly Jams and kills someone is guilty of ............... and he will receive ................ punishment than if it were a case of ........','murder, less, manslaughter','man slaughter, less, murder','manslaughter, more, murder','civil offence, less, murder','','','b','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-05-28 21:08:06'),(328,'The full meaning of NYSC is ..............','Now Your Suffering Continues','Nigeria Youths Serving Christ','National Youth Service Corps','Nigerian Youth Service Corps','','','c','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-05-28 21:08:09'),(329,'The NYSC was established in the year .................','May 22, 1973','June 15, 1960','May 22, 1963','August 20,1993','','','a','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:20'),(330,'One of the main objectives of establishing the NYSC is to .................','Enable the youths to have some practical experience \t\t     after schooling','Forster National unity','Engage the young graduates because “Idle mind is the devil’s workshop”','Create employment for the young graduates','','','b','','wassce','2011',59,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:01'),(331,'Those eligible to partake in the scheme are those','Those seeking for admission into the higher institutions','Who have successfully completed their studies from higher institution .eg. college of education, \t\t     polytechnic & university','Who are looking for something to keep them busy','Who are from poor family background','','','b','','wassce','2011',71,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:24'),(332,'The age limit for the service is ..............','25','35','30','18','','','c','','wassce','2011',72,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:12'),(333,'At the end of the service year each corper will be given ......... as an evidence that he or she has successfully completed the service','NYSC passport','National ID Card','NYSC discharge certificate','Letter of appreciation','','','c','','wassce','2011',83,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:42'),(334,'Which of the following is true','The CD (Community Development) exercise   embarked by corpers is not paid for by the community','Corpers collect extra money for embarking on the C.D','Corpers are not usually given monthly allowances','The aim of the NYSC scheme is to foster disunity   in the country','','','a','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:49'),(335,'The killing of NYSC members in certain parts of the country  ................','Contradicts the goal of establishing the scheme','Is in line with the aims of establishing the scheme','Is not a serious matter','Enhances national unity','','','a','','wassce','2011',67,'Admin','2016-12-12 19:40:26','2020-05-28 21:10:05'),(336,'Nigeria is a ............. state','Communist','Capitalist','socialist','Feudalist','','','b','','wassce','2011',74,'Admin','2016-12-12 19:40:27','2020-05-28 21:10:07'),(337,'Some years to come, when you become the President of Nigeria, which of the options below will you choose \tto eradicate porzverty in the country','carry all the poor people away from Nigeria to another country so when there are no poor people poverty will be gone forever','print plenty Naira Notes and give millions to every Nigeria','Import plenty Agricultural and Manufactured goods','None of the above','','','d','','wassce','2011',79,'Admin','2016-12-12 19:40:27','2020-05-28 21:08:39'),(338,'On the 18th of November 2014 in Yobe, some crowds lynched a suspected suicide bomber. The action of the crowd is .....','right because ‘he who kills by the sword must die by the sword’','wrong because they have unlawfully taken the law into their hands, they should have handed the suicide  bomber over to the police','right because we all have to fights against all forms of terrorism','right so that others will learn lesson from this action','','','b','','wassce','2011',66,'Admin','2016-12-12 19:40:27','2020-05-28 21:09:57'),(339,'In the year 2014 the catholic church in Nigeria suspended the usual hand shaking (as a sign of peace) among its members just after the “Lord’s prayer” The most likely reason for this action is to prevent the \t\tspread of ............, in case a member has it','HIV/AIDs virus','The Ebola virus','Evil and demonic spirit','malaria fever','','','b','','wassce','2011',80,'Admin','2016-12-12 19:40:27','2020-05-28 21:09:42'),(340,'Decrees are laws made by .............','the parliament','the judiciary','the military','senators','','','c','','wassce','2011',71,'Admin','2016-12-12 19:40:27','2020-05-28 21:09:28'),(341,'The document containing the aims and programs of a political party is called ...........','register','manifesto','memorandum of party','party library','','','b','','wassce','2011',81,'Admin','2016-12-12 19:40:27','2020-06-09 11:26:22'),(342,'The former PHCN is a good example of .................. in Nigeria','civil service','perfect competition','public corporation','private monopoly','','','c','','wassce','2011',89,'Admin','2016-12-12 19:40:27','2020-05-28 21:09:44'),(343,'Orderliness can be defined as','being punctual to work','studying diligently in school','doing things in a proper way','learning the Western way of life','','','c','','wassce','2016',69,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:25'),(344,'The Traffic in Persons Prohibition and Administration Act was passed in Nigeria in','December 2001.','October 2002','August 2003','April 2004.','','','c','','wassce','2016',65,'Admin','2016-12-12 19:57:13','2020-05-28 21:10:00'),(345,'The process of enabling someone to perform an action which adds value to his/her life is known as','employment','recruitment','socialization','empowerment','','','d','','wassce','2016',66,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:53'),(346,'Rates are collected in Nigeria by','Federal Inland Revenue Service','State Ministry of Finance','Local Government Councils','Council of Traditional Rulers','','','c','','wassce','2016',72,'Admin','2016-12-12 19:57:13','2020-05-28 21:08:56'),(347,'The Fourth Schedule of the 1999 Constitution of Nigeria outlines the functions of','federal government','local government','national government','state government','','','b','','wassce','2016',65,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:37'),(348,'Lack of interest in politics by citizens in the country is referred to as political','ignorance','apathy','participation','socialization','','','b','','wassce','2016',69,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:36'),(349,'Which of the following instruments is not used by a civil society group?','Propaganda','Boycott','Protest','Violence','','','d','','wassce','2016',74,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:56'),(350,'The administrative class in the public service is to','implement policies','formulate policies','veto policies','oversee policies','','','a','','wassce','2016',56,'Admin','2016-12-12 19:57:13','2020-05-28 21:10:06'),(351,'“We the people of the Federal Republic of Nigeria” is usually the opening phrase of the preamble to','coup announcement','government gazettes','constitution','mansard','','','c','','wassce','2016',56,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:37'),(352,'One of the responsibilities of a good citizen is to','possess an international passport','enjoy all amenities provided by government','serve the country when required','develop his potentialities to the fullest','','','c','','wassce','2016',68,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:14'),(353,'Naturalized citizens cannot be denied their legal status as members of a country unless if they','are jailed for one year within seven years of acquiring citizenship','are found guilty to be spies or secret agents for another country','refuse to represent the country in an international sporting event','give adequate information to the host country','','','a','','wassce','2016',67,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:59'),(354,'Citizenship education influences an individual to be','patriotic','educated','complacent','competent','','','a','','wassce','2016',79,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:45'),(355,'Which of the following is not an example of orderliness?','Listening skill','Driving skill','Decorum','Deviance','','','d','','wassce','2016',62,'Admin','2016-12-12 19:57:14','2020-05-28 21:06:15'),(356,'Which of the following statements is not correct?','Valid driver’s license must be obtained before attempting to drive','Flowing garment can be worn on a motorcycle or bicycle','Headlights should be used during unfavourable weather','Drivers must not engage in distractive activities while driving','','','d','','wassce','2016',60,'Admin','2016-12-12 19:57:14','2020-05-28 21:10:05'),(357,'Cultism can best be discouraged through','mentoring of cultists by the rich','provision of jobs for cultists','sensitization on the dangers of cultism','establishment of cultists support groups','','','c','','wassce','2016',67,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:50'),(358,'Which of the following is a consequence of drug abuse?','Depression','Victimization','Inefficiency','Cowardice','','','a','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:52'),(359,'The effect of human trafficking on the victims is','illiteracy','affluence','exposure','exploitation','','','d','','wassce','2016',58,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:05'),(360,'The general attitude of government and society towards cultism is that of','affection','sympathy','abhorrence','support','','','c','','wassce','2016',75,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:52'),(361,'Drug abuse can be prevented by','fighting drug addicts','poverty reduction','reducing drugs in circulation','legal sanction','','','b','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:41'),(362,'A major factor responsible for human trafficking is','hunger','illiteracy','greed','joblessness','','','c','','wassce','2016',71,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:16'),(363,'People Living With HIV/AIDS (PLWHA) can be supported by','billing them for antiretroviral therapy','providing drugs for them at subsidized rates','providing special attires for them','providing accommodation for them in designated locations','','','b','','wassce','2016',74,'Admin','2016-12-12 19:57:14','2020-06-09 11:28:16'),(364,'Cult members are particularly hostile to','lecturers','perceived enemies','their group members','all students','','','b','','wassce','2016',66,'Admin','2016-12-12 19:57:14','2020-05-28 21:08:39'),(365,'Drug law enforcement agencies in Nigeria are not empowered to','execute drug suspects','arrest drug barons','prosecute drug traffickers','rehabilitate drug addicts','','','a','','wassce','2016',59,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:04'),(366,'Which of the following is not a means of reducing the incidence of HIV/AIDS in our society?','Education and enlightenment programs','The use of specially designed cutlery by victims','Avoiding pre-marital and extra-marital sex','Upholding the value of chastity','','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:14','2020-05-28 21:10:08'),(367,'Youth empowerment promotes','self-reliance','youthful exuberance','pursuit of higher education','foreign scholarship','','','a','','wassce','2016',74,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:22'),(368,'The Supreme Court of Nigeria helps in law','drafting','application','interpretation','enforcement','','','c','','wassce','2016',69,'Admin','2016-12-12 19:57:15','2020-05-28 21:08:49'),(369,'Democracy thrives most where there is','nonpartisan judiciary','freedom of speech and association','absence of universal suffrage','one-party system','','','b','','wassce','2016',66,'Admin','2016-12-12 19:57:15','2020-05-28 21:08:51'),(370,'Rule of law is limited by the following except','state of emergency','habeas corpus','illiteracy','immunity','','','c','','wassce','2016',68,'Admin','2016-12-12 19:57:15','2020-05-28 21:10:00'),(371,'Preventive measures of HIV/AIDS do not include','abstinence','screening of blood before transfusion','use of barrier method','stigmatization of victims','','','d','','wassce','2016',62,'Admin','2016-12-12 19:57:15','2020-05-28 21:07:40'),(372,'One of reasons leaders fail to protect the interest of their followers is','selfishness','inadequate finance','ignorance','rigid policies','','','a','','wassce','2016',67,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:21'),(373,'Which of the following is not a form of political participation?','Taking part in voters’ registration exercise','Voting during elections','Joining political party','Ballot box stuffing during elections','','','d','','wassce','2016',85,'Admin','2016-12-12 19:57:15','2020-05-28 21:10:00'),(374,'Civil Society groups perform the following roles during general elections except','educating the voters','serving as watchdog','counting votes','stimulating participation','','','c','','wassce','2016',59,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:41'),(375,'Which of the following is not an example of civil society group?','United Action for Democracy','United Nations Organization','Transition Monitoring Group','Amnesty International','','','b','','wassce','2016',76,'Admin','2016-12-12 19:57:15','2020-05-28 21:10:02'),(376,'One of the major complaints against public service is','inefficiency','understaffing','victimization','discrimination','','','a','','wassce','2016',65,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:42'),(377,'Which of the following is not a way of improving public service?','Politicization','Refresher courses','The use of Code Conduct Bureau','Reformation','','','a','','wassce','2016',76,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:39'),(378,'Children that are not cared for are mostly prone to','criminal attitudes','terminal diseases','examination failure','forced migration','','','a','','wassce','2016',75,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:56'),(379,'The motherland in the monologue could best be described as','a nation in transition','a morally upgrading country','a socially viable nation','an ethically bankrupt country','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','b','','wassce','2016',64,'Admin','2016-12-12 19:57:15','2020-05-28 21:08:14'),(380,'In spite of the state of affairs reflected in the above monologue, the citizens can make the country better by being committed to','promoting inter-communal relations','strengthening capacity building','championing moral values','encouraging interpersonal relations','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','c','','wassce','2016',65,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:49'),(381,'Based on the monologue above, the best approach to curb moral decadence in the motherland is by','value re-orientation','introducing war against corruption','legalizing capital punishment','sending corrupt officials on exile','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','a','','wassce','2016',63,'Admin','2016-12-12 19:57:16','2020-05-28 21:10:01'),(382,'The most important contribution of responsible parenthood to national development is that it','increases youthful population','fosters national integration','augments the nation workforce','breeds dependable citizenry','','','c','','wassce','2016',66,'Admin','2016-12-12 19:57:16','2020-06-25 23:00:33'),(383,'Which of the following can not be easily abused?','Cosmetics','Stimulant','Tobacco','Narcotics','','','a','','wassce','2016',62,'Admin','2016-12-12 19:57:16','2020-05-28 21:10:00'),(384,'Dr. Fajir cannot exercise some basic rights because he','was a suspect in a criminal case','was found guilty of a criminal offence','failed to comply with court order','embezzled public fund','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','b','','wassce','2016',101,'Admin','2016-12-12 19:57:16','2020-06-22 16:11:57'),(385,'According to the above story, the open trial of Dr. Fajir and his representation by lawyers of his choice in a court of competent jurisdiction is an indication of','respect for habeas corpus','freedom of expression','respect for human rights','freedom of legal representation','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','c','','wassce','2016',67,'Admin','2016-12-12 19:57:16','2020-05-28 21:09:48'),(386,'Based on the above story, which of the following would Dr.Fajir not be allowed to do while in prison?','Voting during elections','Engaging in hard labour','Participating in prison fellowship','Writing examination','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','a','','wassce','2016',64,'Admin','2016-12-12 19:57:16','2020-05-28 21:09:01'),(387,'The most important place for building good values is the','social welfare centre','workplace','family','media houses','','','c','','wassce','2016',58,'Admin','2016-12-12 19:57:16','2020-05-28 21:09:49'),(388,'Citizen’s compliance with tenets of the Nigerian National Pledge will enable the country to','receive reciprocal assistance','witness value clarification','get international aid','experience development','','','b','','wassce','2016',60,'Admin','2016-12-12 19:57:16','2020-05-28 21:09:17'),(389,'Which of the following statements may be true about the behaviour of the candidates in the diagram?','The candidates are doing what is ethical','Candidates involved in malpractice should be banned for life','Their action can also affect innocent candidates','Their misconduct will guarantee a reliable certificate','','','b','','wassce','2015',64,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:09'),(390,'Based on the above diagram, the candidates would not have cheated if','they were well-spaced','there was an invigilator','they were hardworking','there was nobody to copy from','','','c','','wassce','2015',67,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:29'),(391,'In which year did the United Nations General Assembly adopt the Universal Declaration of Human Rights?','1945','1946','1947','1948','','','a','','wassce','2015',60,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:29'),(392,'Two forms of road signs are regulatory and','punitive','informative','persuasive','inhibitive','','','b','','wassce','2015',67,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:21'),(393,'Which of the following factors does not affect interpersonal relationship?','Communication','Withdrawal','Compatibility','Forgiveness','','','b','','wassce','2015',69,'Admin','2016-12-12 20:15:41','2020-05-28 21:08:59'),(394,'The following cadre of students are the main target for campus cult membership except','students from wealthy homes','students from influential parents','bold and morally sound students','wayward and fun-loving students','','','c','','wassce','2015',66,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:56'),(395,'The National Agency for Food and Drug Administration and Control (NAFDAC) was established in','1993','1996','1999','2001','','','a','','wassce','2015',77,'Admin','2016-12-12 20:15:42','2020-05-28 21:10:00'),(396,'National Agency for the Prohibition of Traffic in Persons (NAPTIP) is an initiative of','Federal Government of Nigeria','United States Agency for International Development','Woman Trafficking and Child Labour Eradication \tFoundation','United Nations Office on Drugs and Crime','','','a','','wassce','2015',60,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:24'),(397,'World AIDS day is observed on','20th May','30th July','27th August','1th December','','','d','','wassce','2015',57,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:04'),(398,'An enabling environment created to help an individual have effective control of his/her situation is known as','reinforcement','empowerment','endowment','enhancement','','','b','','wassce','2015',71,'Admin','2016-12-12 20:15:42','2020-05-28 21:08:09'),(399,'In order to avoid undue interference in the process of governance, there should be','clear cut separation of governmental powers','proper fusion of governmental powers and functions','more roles for traditional rulers in the governmental process','additional responsibility for local government council','','','a','','wassce','2015',78,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:57'),(400,'Red-tapism is one the shortcomings of','private enterprise','public service','non-governmental organization','pressure groups','','','b','','wassce','2015',67,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:57'),(401,'An ideology that aims at promoting national consciousness and identity is','nationalism','socialization','civic culture','progressivism','','','a','','wassce','2015',62,'Admin','2016-12-12 20:15:42','2020-05-28 21:08:05'),(402,'Human rights are described as inviolable mainly because they are','authoritative declaration','enforceable everywhere','not to be unnecessarily taken away','legal declaration instruments','','','d','','wassce','2015',50,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:53'),(403,'Law and order can best be maintained in Nigeria through the','prohibition of public protest','enforcement of rules and regulations','use of divide and rule policy','promotion of indigenization policy','','','b','','wassce','2015',80,'Admin','2016-12-12 20:15:42','2020-05-28 21:08:41'),(404,'A responsible parent is someone who','cares and provides for the children','indulges the children because of love','works in order to receive salary','employs house-helps to take care of the children','','','a','','wassce','2015',59,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:39'),(405,'A major way of promoting responsible parenthood is through','sex education','sound education','population control measures','tax reduction measures','','','a','','wassce','2015',71,'Admin','2016-12-12 20:15:42','2020-05-28 21:10:05'),(406,'Which of the following is not included in the stages of interpersonal relationship?','Rejuvenation','Deterioration','Termination','Continuation','','','c','','wassce','2015',65,'Admin','2016-12-12 20:15:42','2020-05-28 21:10:01'),(407,'Cultism in tertiary institutions in Nigeria was originally introduced to','perpetuate the use of local gin and alcohol','harass opponents of university administrators','fight colonialism and oppressive rules','promote inter-communal marriages.','','','c','','wassce','2015',78,'Admin','2016-12-12 20:15:42','2020-05-28 21:07:52'),(408,'Which of the following is not a function of the National Drug Law Enforcement Agency (NDLEA)?','Applying and implementing all drug laws','Arresting, investigating and prosecuting drug traffickers','Undertaking the registration of companies dealing \tin drugs','Carrying out enlightenment campaigns on drug trafficking','','','c','','wassce','2015',58,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:59'),(409,'An individual who finds it difficult to control in-take of drug is known as drug','baron','traffickers','mogul','addict','','','d','','wassce','2015',62,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:44'),(410,'The NDLEA personnel are not usually found in','international airports','seaports','border crossings','foreign embassies','','','d','','wassce','2015',84,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:32'),(411,'Which of the following statements best describes Human Trafficking?','Recruitment of youths as casual workers','Desperate desire by youths to travel abroad','Buying and selling of humans for selfish purposes','Transportation of gods and service through human portage','','','c','','wassce','2015',61,'Admin','2016-12-12 20:15:43','2020-06-09 11:26:22'),(412,'From the above write-up what category of Kantoguan youth deserves to be effectively empowered?','Children of the ruling political class','Unemployed youths and school drop-outs','University undergraduates','Youth wing of religious organizations','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','b','','wassce','2015',68,'Admin','2016-12-12 20:15:43','2020-05-28 21:10:02'),(413,'The responsibility of empowering the youth rests mostly with','the political class','religious organizations','university administrators','national government','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','d','','wassce','2015',67,'Admin','2016-12-12 20:15:43','2020-05-28 21:08:31'),(414,'Based on the write-up, what immediate measures can those in authority take to empower the youths?','Build more youth orientation camps in the country','Enhance religious and moral education in schools and colleges','Provide entrepreneurial training with adequate fund','Provide free meal for the teeming unemployed youths','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','c','','wassce','2015',65,'Admin','2016-12-12 20:15:43','2020-06-09 18:24:55'),(415,'A very important segment of the society which is distinct from government, business and home is the','civil society','public service','mass media','traditional institution','','','a','','wassce','2015',74,'Admin','2016-12-12 20:15:43','2020-05-28 21:08:22'),(416,'HIV/AIDS is generally described as terminal in nature because it is','preventable','transmittable','avertable','incurable','','','d','','wassce','2015',70,'Admin','2016-12-12 20:15:43','2020-05-28 21:10:07'),(417,'Inter-communal relationship is best described as','the interaction between individuals, groups or organizations with common aspirations','the interaction among individuals and professionals in a social setting','loyalty to community leaders so as to achieve rapid communal development','respect for collective national symbols in order to foster nationalistic feeling','','','a','','wassce','2015',58,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:44'),(418,'A situation whereby someone is obliged to inform a superior about his actions and decisions for the purpose of control is','probity','self-discipline','accountability','fair play','','','c','','wassce','2015',73,'Admin','2016-12-12 20:15:43','2020-05-28 21:07:46'),(419,'The above quotation summarizes the','Universal Declaration of Human Rights.','African Charter on Human Rights.','Geneva Conventions and Protocols.','United Nations Organization Charter.','“All human beings are born free and equal in dignity and rights. They are endowed with reason and \t\tconscience and should act towards one another in a spirit of brotherhood”.','','a','','wassce','2015',57,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:32'),(420,'Effective and responsible parenthood is primarily','a national duty','a military duty','a political duty','an economic duty','','','a','','wassce','2015',58,'Admin','2016-12-12 20:15:43','2020-05-28 21:08:13'),(421,'Association and affiliation between two or more people is called','multilateral relations','bilateral relations','inter-communal relations','interpersonal relations','','','d','','wassce','2015',64,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:53'),(422,'A bill passed by the National Assembly requires the assent of the president before it becomes law. The law can be declared null and void by the court of law. The process above emphasizes the','supremacy of judiciary over other arms of government','relationship among the arms of government','importance of law makers in a democracy','fundamentals of the rule of law.','','','d','','wassce','2015',51,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:17'),(423,'The idea that “Law should be impartial with the people who break it” implies','principle of fair hearing','right to legal representation','equality before the law','prerogative writ of habeas corpus','','','c','','wassce','2015',74,'Admin','2016-12-12 20:15:43','2020-07-02 15:35:16'),(424,'The foreign policy objective of Nigeria as enshrined in the 1999 Constitution exclude the promotion of','national interest','African integration','support for donor agencies','just world economic order','','','c','','wassce','2015',70,'Admin','2016-12-12 20:15:43','2020-05-28 21:10:05'),(425,'Democracy can promote national development if there is','good governance','promotion of culture','immunity for leaders','registration of parties','','','a','','wassce','2015',61,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:53'),(426,'A major civil society group which campaigned against military rule prior to the advent of the Fourth Republic in Nigeria is the','Campaign for Democracy','Save Nigeria Group','Civil Liberties Organization','National Democratic Coalition','','','a','','wassce','2015',62,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:49'),(427,'Which of the following function is not performed by the Public Service Commission?','Evaluating the performance of ministries and departments','Advising government on technical matters','Preparing the annual budget and assenting to it','Organizing enlightenment program and training','','','d','','wassce','2015',81,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:33'),(428,'Which of the following is a major challenge to civil society in Nigeria?','Value disorientation','Diverse political interests','Inadequate funding','Unstable political system','','','a','','wassce','2015',63,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:08'),(429,'Democracy is yet to take firm root in Africa because','it retards African development','African leaders are not experienced enough','most African leaders detest the will of the people','it is an expensive system of government','','','c','','wassce','2015',58,'Admin','2016-12-12 20:15:44','2020-05-28 21:08:27'),(430,'Nationalism ensures the following except','national consciousness','secession in a country','national integration','unity in a country','','','b','','wassce','2015',71,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:46'),(431,'Justice demands that people should always do what is','persistently convenient','consistently right','individually acceptable','courageously necessary','','','b','','wassce','2015',54,'Admin','2016-12-12 20:15:44','2020-06-25 23:00:18'),(432,'Orderliness in the society is good mainly because it','discourages poverty','promotes peace and stability','guarantees employment for youths','ensures maximum rewards from leaders','','','b','','wassce','2015',67,'Admin','2016-12-12 20:15:44','2020-05-28 21:10:01'),(433,'Which of the following is necessary for the effective application of the rule of law?','Political will to ensure that laws are obeyed','Employment opportunities for all citizens','The fusion of the three arms of government','Extension of the retirement age of judges','','','a','','wassce','2015',64,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:41'),(434,'Ade’s action as shown in the dialogue is a demonstration of political','wisdom','apathy','lawlessness','participation','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','b','','wassce','2015',63,'Admin','2016-12-12 20:15:44','2020-05-28 21:08:31'),(435,'It could be inferred from the dialogue that failure to vote in an election would','guarantee citizens’ rights','encourage the emergence of responsive government','promote accountability in governance','perpetuate irresponsible leadership','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','d','','wassce','2015',66,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:45'),(436,'From the above dialogue, political leaders can encourage citizens to perform their civic duties by','fulfilling their electoral promises','travelling overseas to seek for foreign investors','engaging in religious activities','visiting all the local governments in the country','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','a','','wassce','2015',69,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:22');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `commerce` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=888 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `commerce` VALUES (1,'Ships that sail across the ocean and operate on scheduled time are ','ferries ','ocean liners ','tramp steamers  ','coastal liner','','','b','','utme','2004',309,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(2,'Non-insurable risks include ','gambling ','damage to property','death','marine ','','','a','','utme','2004',308,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(3,'The program that makes up the operating system in a computer is         ','micro program','system flowchart','system software','syntax','','','c','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(4,'When an organization studies a market that is underserved by others and creates a product or service for the segment, it is engaged in','market integration  ','market positioning','market orchestration','product differentiation','','','c','','utme','2004',299,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(5,'Coverage against unexpected events is called',' insurance ','assurance   ','warranty','reinsurance','','','a','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(6,'An insured risk which occurs accidentally as a result of defects in a ship is','a voyage policy    ','a total loss','an emergency     ','a particular average','','','d','','utme','2004',300,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(7,'Communication enhances business activities by','facilitating interaction between producers and consumers ','facilitating interaction among media houses','ensuring the movement of goods from the producer to the consumer','keeping the goods safe until they are needed','','','a','','utme','2004',306,'Admin','0000-00-00 00:00:00','2020-06-17 12:38:36'),(8,'In business, the computer is very important  especially in  ','financial management','marketing management   ','educational  management    ','information management','','','d','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-06-03 15:33:33'),(9,'What is the most important use of promotion in marketing?     ','Persuasion   ','Conviction','Information ','Education','','','c','','utme','2004',296,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(10,'The current highest decision-making body on  privatization and commercialization of public enterprises in Nigeria is the','National Council on Privatization','Securities and Exchange Commission','Nigeria Investment Promotion Commission','Bureau of Public Enterprises','','','d','','utme','2004',302,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(11,'The members of the Niger Basin Commission  include  ','Guinea, Ghana and Niger Republic','Burkina Faso, Guinea and Nigeria ','The Gambia, Benin Republic and Chad Republic',' Nigeria, The Gambia and Cameroon','','','d','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(12,'Business environment refers to all elements that are  ','outside an organization but relevant to its operations ','inside an organization but irrelevant to its operations   ','internal to an organization and relevant to its operations','external to an organization but indirectly related to its  operations','','','d','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(13,'Consumer rights include the right to   ','credit','free samples of a product  ','redress','a share of profits','','','c','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:42'),(14,'One important requirement for the membership of the ECOWAS is ','integrity ','independence ','landmass   ','population','','','b','','utme','2004',299,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(15,'In Nigeria, the body that ensures that its members operate according to their professional ethics is the   ','SON  ','NPF   ','MAN ','NAFDAC','','','a','','utme','2004',305,'Admin','0000-00-00 00:00:00','2020-06-21 12:44:51'),(16,'A transporter who had to sell some perishable goods without the prior authority of the owner  becomes an agent by   ','conduct ','necessity','ratification  ','estoppel','','','b','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(17,'Poor sewage disposal, oil spill and indiscriminate refuse dumping all ','lead to  land pollution','water pollution   ','land and water pollution','air and water pollution','','','d','','utme','2004',303,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(18,'One of the advantages of commercialization is that it','encourages entrepreneurship','increases the salaries of workers','motivates government to establish more  businesses   ','gives workers on-the-job training','','','a','','utme','2004',304,'Admin','0000-00-00 00:00:00','2020-06-19 01:06:41'),(19,'A common element in all contracts is    ','offer','  consideration   ','acceptance ','agreement','','','d','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(20,'Sources of finance to a business include personal  savings, shares, debentures and ','loans from IMF   ','bank overdrafts ','central bank loans','money from political parties','','','b','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(21,'Charges for loans paid by commercial banks to the Central Bank of Nigeria are called   ','bank rates   ','credit charges   ','interest rates',' bank charges','','','a','','utme','2004',299,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(22,'In the primary market, new shares are issued  through  ','personal selling, publicity and advertising  ','a prospectus, an offer for sale and a bill of exchange   ','advertising, a prospectus and a bill of exchange','a prospectus, an offer for sale and placing','','','b','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(23,'The instruments of credit include ','billboards and postal stamps','payment vouchers and statement of account','bills of exchange and promissory notes','bills of exchange and salary vouchers','','','c','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:41'),(24,'The shares of a company listed on the stock exchange for sale are referred to as','registered shares  ','deferred shares ','issued shares       ','quoted shares','','','d','','utme','2004',306,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(25,'What is the role of the capital market in the privatization exercise in Nigeria?    ','Selling the shares and stocks of the companies to be  privatized ','Encouraging private companies to  participate in the exercise ','Negotiating with individuals who want to buy public companies','Advertising for government','','','a','','utme','2004',305,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(26,'In international trade, documentary credit is also known as   ','credit note   ','letters of credit','bankers\\' draft       ','letter of hypothecation','','','b','','utme','2004',319,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(27,'A specialized institution in Nigeria that deals in  capital investments in the form of stocks, shares, bonds and debentures is the ','Securities and Exchange Commission ','commodity market','Nigerian Stock Exchange ','Central Bank of Nigeria','','','a','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(28,'A group of assets which a business acquires with the intention of reselling them are referred to as','  current assets    ','investment assets','fixed assets    ','intangible assets','','','b','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(29,'Authorized share capital is also known as','called-up share capital    ','paid-up share capital ','registered share capital  ','issued share capital','','','c','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(30,'An action taken by a company outside its object clause is regarded as ','ultra vires    ','a trespass   ','uberrima fides    ','caveat emptor','','','a','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(31,'The strategy adopted by a firm that ceases to operate at one or more locations because of inactivity is  ','rejuvenation ','focus','diversification     ','consolidation','','','c','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-06-15 00:24:01'),(32,'A written partnership contract is known as','an invoice ',' a deed      ','a prospectus','a proposal','','','b','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:43'),(33,'The merger of a textile mill, a cement company and a tannery is referred to as ','  conglomerate merger ',' horizontal merger ','lateral merger',' vertical merger','','','d','','utme','2004',300,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(34,'As the branches indicate, iv is','commerce','exchange ','finance      ','construction','','','d','','utme','2004',313,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(35,'What does v represent?','Aids to trade','Advertising  ','Manufacturing  ','Industry','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(36,'The most important function of commerce is','helping people to improve their profits','facilitating exchanges among individuals and firms ','assisting trade through banking and insurance   ','enhancing business relationships','','','b','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:43'),(37,'The acronym PLC is used to identify a ','company limited by shares ','private company limited by shares','public company limited by shares','company limited by guarantee','','','c','','utme','2004',302,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(38,'Commerce includes all the occupations concerned with ','sales  ','production','marketing    ','distribution ','','','d','','utme','2004',302,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(39,'Factors of production can be described as the','resources required for the provision of goods and services   ','skills involved in deciding and directing the flow of goods  ','monetary tools employed by government to ensure stable production      ','elements involved in the process of formulating policies\\' on production ','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(40,'Fluctuations in the supply of goods may be eliminated if the distribution system maintains','modern technology ','a team of retailers','warehouse services  ','sufficient middlemen','','','a','','utme','2004',319,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(41,'Loan schemes by thrift societies are ','mortgage schemes   ','conventional schemes   ','mutual schemes     ','unconventional schemes ','','','c','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(42,'An internal demand for goods to be purchased or drawn from stock is','a quotation','a requisition   ','a tender  ','an order','','','b','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-06-20 18:26:09'),(43,'The term 4 net 7 on an invoice means that','4% surcharge will be made unless payment is made within seven days   ','4% discount will be allowed on the price charged only if the goods are bought within seven days  ','4% discount will be allowed on the price charged if payment is made after seven days ','4% discount will be allowed on the price charged if payment is made within even days.','','','d','','utme','2004',298,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(44,'An order sent by an importer to an overseas supplier stating the details of goods required is known as   ','A export invoice    ','ship\\'s manifest','an indent    ','bill of lading','','','c','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(45,'Organizing trade fairs in Nigeria is the responsibility of   ','National Directorate of Employment  ','Federal Ministry of Commerce','trade associations   ','chambers of commerce ','','','d','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(46,'International fade takes place as a result of','uniformity in costs of production','inequitable distribution of natural resources','parity in the level of industrialization','similarities in climatic conditions.','','','b','','utme','2004',309,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(47,'The use of vending machines in retailing is hindered in a developing economy owing to','poor distribution network   ','low level of education    ','ineffective communication system','lack of steady power supply.','','','d','','utme','2004',308,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(48,'Manufactures’ Association  of Nigeria contributes to development by advising the government on','industrial policy and harmony   ','budget and control ','budget and industrial policy','environmental protection policy ','','','a','','utme','2004',298,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(49,'Discounts offered by firms to middlemen for bulk purchases are ','A   trade discounts','sales  bonanza    ','cash discounts ','seasonal','','','a','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(50,'Goods are  of merchantable  quality if they','conform to description  ','are of equal weight','are of the same quality ','conform to buyers\\' purpose','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(51,'A floating policy is an example of','marine insurance    ','actuaries insurance ','motor insurance    ','fire insurance.','','','b','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(52,'The most important benefit of insurance is that it Provides ','control over activities','the insured with a right to premium','the insured with a right to full compensation','protection against risks.','','','d','','utme','2005',116,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:13'),(53,'Which part of the computer system does the keyboard device belong to? ','Output unit ',' Logic unit ','Input unit ','Control unit.','','','c','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(54,'The Lake Chad Basin Commission was formed in ','1974','1984','1954','1964','','','d','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(55,'A major disadvantage of the privatisation policy is that ','the economy would be private-sector-led ','citizens would benefit less from government','more money would be brought into circulation','government would loss control of the economy.','','','d','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(56,'The most important right of the employee in discharging his duties to the employer is the right to ','regular emoluments  ','job security ','working facilities  ','annual leave. ','','','b','','utme','2005',121,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(57,'The most dangerous pollution is','water ','noise pollution','soil pollution   ','air pollution.','','','d','','utme','2005',119,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(58,'The primary objective of consumer protection laws is to ensure that consumers derive maximum satisfaction from goods and services','consumers buy goods and services at cheap rates   ','manufacturers of goods and service providers overcome ','Internal competition','manufacturers of goods and service providers get optimum profit','','','a','','utme','2005',118,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(59,'The compensation the insured gets depends heavily on the ','economic situation','premium paid ','risk suffered','insurer\\'s buoyancy','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(60,'The computer that functions by taking discrete numbers and  performing mathematical calculations is called ','mainframe ','digital ','hybride','analogue.','','','c','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(61,'Commercialization of government corporations brings about an increase in the level of','money supply in the economy','distrust among business operators','competition among business operators','social responsibility','','','c','','utme','2005',116,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:11'),(62,'The difference between personal selling and sales promotion is that while sales promotion includes free gifts and samples, personal selling involves','distributing instructional posters','face-to-face communication with customers','premium programming for customers','publishing promotional booklets.','','','b','','utme','2005',121,'Admin','0000-00-00 00:00:00','2020-06-30 13:51:34'),(63,'The type of communication from a superior to a subordinate in an organization is referred to as','horizontal communication','lateral communication','downward communication','upward communication.','','','c','','utme','2005',124,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(64,'A step-by-step method of carrying out functions in  an office is known as','procedure','organizing',' policy ','programme.','','','a','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(65,'The best means of sending unwritten messages simultaneously   to   many   branches   of  an organization within a country is the','television',' telephone   ','telegraph   ','radio.','','','c','','utme','2005',153,'Admin','0000-00-00 00:00:00','2020-07-02 08:56:42'),(66,'The   media    used   for   inter-departmental communication include.','circulars, advertisement and notice boards','memoranda, circulars and the telephone','memoranda, advertising and face-to-face','memoranda, advertising and the grapevine','','','b','','utme','2005',110,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(67,'An instrument that is traded in the second-tier foreign exchange market is','money order','stock ','travellers\\' cheque  ','debenture.','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:58'),(68,'The development of a container and a graphic design for a product is called ','packaging ','promotion','processing  ','production.','','','a','','utme','2005',115,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(69,'A business firm that is involved in conveying goods or people is known as a ','consignor','commercial firm ','carrier','transporter','','','c','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:11'),(70,'The factors essential for tourism are','accessibility, capital, amenities and schools','goods weather, amenities, accessibility and scenery.','amenities, capital, accessibility and markets','good weather, capital, schools and scenery.','','','b','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(71,'In GIF contracts, risk passes at the time of shipment but the property does not pass until','there is physical transfer of goods','the shipping manifests are signed','the shipping documents are transferred','the goods on board are delivered.','','','b','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-06-07 21:59:23'),(72,'A partnership is dissolved when','the business suffers a loss','there is bankruptcy','there is consistent theft','there is a misunderstanding between partners','','','b','','utme','2005',124,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(73,'One of the disadvantages of sole proprietorship is','secrecy of annual reports','pride of ownership ','limited liability','unlimited liability.','','','d','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(74,'The most important concept in production is','utility ','wealth creation','transformation  ','distribution.','','','a','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:32'),(75,'An acquired firm in a merger will always receive a',' premium  ',' grant ','share ','discount','','','b','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(76,'Occupations are classified into','production, labour and economics','extraction, construction and manufacturing','industry, commerce and serves','trade, aids to trade and services.','','','c','','utme','2005',128,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(77,'The Nigerian Telecommunications Limited is a','Jointly owned company ','public corporation ','privately owned company ','public company. ','','','b','','utme','2005',118,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(78,'An engineer in government employ is to be rendering   ','primary service   ','tertiary service ','indirect service   ','direct service. ','','','c','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(79,'The availability of goods and services is brought to the notice of consumers through','personal selling  ','public relations','the telephone  ','advertising.','','','d','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(80,'The necessary documents used in foreign trade are ','bill of lading, invoice and letter of inquiry','indent, bill of exchange, bill of lading and invoice','invoice, shipping note, bill of lading and freight note   ','shipping note, certificate of origin and visible exports.','','','c','','utme','2005',116,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(81,'A cheque drawn by a bank official on the bank\\'s deposits in another bank on a customer\\'s instructions is known as ','promissary note',' bankdraft   ','bankers\\' order  ',' travellers cheque.','','','c','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(82,'A type of credit offered by both commercial and merchant banks in Nigeria is ','trade credit','line of credit ','discounting facility ','overdraft.','','','d','','utme','2005',122,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(83,'A major function of a chamber of commerce is',' increasing productivity','promoting both home and foreign trade','promoting trade in a particular line',' maximizing profit.','','','b','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(84,'Which of the middlemen in the channel of distribution has title to the goods he distributes?','The merchant wholesaler ','The agent','the limited wholesaler ','The retailer','','','a','','utme','2005',117,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(85,'Which of the following confirms the accuracy of the duty charged on imported goods?',' An indent ','Consular invoice',' Consignment note  ','Shipping note.','','','b','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(86,'The association that comprises all types of businesses is referred to as',' chamber of commerce   ',' trust','trade association   ',' cartel.','','','a','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(87,'Wholesalers can be divided into',' sales agents and brokers   ',' full service wholesalers and merchant wholesalers',' cooperative wholesale society and limited service wholesalers ',' merchant wholesalers and agent middlemen.','','','b','','utme','2005',124,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(88,'In Nigeria the ministry in charge of registering trade associations is that of ',' industries',' commerce ','culture and tourism ',' finance.','','','b','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(89,'Invisible imports consists of',' cement, shipping and consultancy services',' banking   drinks, insurance and technical services.   ','','tourism, banking, canned foods and cement.','','','c','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-06-03 19:33:54'),(90,'The bank that discounts bills of exchange is the ','central bank  ',' mortgage bank','development bank  ','commercial bank.','','','d','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(91,'The market where only indigenous firms are considered is the ','money market ',' second-tier securities market ',' local market ',' stock exchange.','','','b','','utme','2005',119,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(92,'From which of the following sources can partnerships increase their capital?',' Admission of a new partner',' Sale of shares   ','Discharge of a mortgage','Grants from relations.','','','a','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:33'),(93,'The excess of the assets over the liabilities of a business is called ','working capital','net worth ','capital employed ',' initial capital','','','a','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(94,'Initial public offering is undertaken through the','secondary securities market','first-tier securities market','primary securities market','second-tier securities market','','','b','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(95,'The major participants in the stock market when stock prices are rising generally are the','bulls ','registrars ','bears ','companies','','','a','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-06-21 12:45:22'),(96,'The fixed and current assets of a business are called ',' called-up capital    ','capital employed',' paid-up capital  ','authorized capital.','','','b','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(97,'To increase the supply of money in a country, the central bank has to ','reduce cash ratio',' sell securities in the open market',' call on special deposits ',' raise cash ratio.','','','a','','utme','2005',111,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(98,'A good financial instrument which serves as a  hedge against inflation is ','a bond  ','a share',' an option ',' a warrant.','','','a','','utme','2005',116,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(99,'One advantage of a crossed cheque is that it can','only be paid into a savings account','be cashed over the bank\\'s counter','only be paid into the owner\\'s account',' be cashed by anyone','','','c','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(100,'Given\\n    N\\n Sales    15 000\\n Opening stock  5 600\\n Purchases   9 700\\n Closing stock  4 400\\n Gross profit  4 500\\n Net profit   2 000\\nFrom the data above, calculate the rate of turnover \\n',' 3.50 times ','3.00 times ',' 2.00 times ',' 2.18 times.','','','d','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(101,'question','optiona','optionb','optionc','optiond','','image','answer','solution','utme','examye',47,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:34'),(102,'Tourism can be classified as ',' tangible import',' intangible import',' visible export ','invisible export','','','d','','utme','2006',86,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:04'),(103,'The input, output and central processing units are the basic components of a computer\\'s','memory ',' printer ',' hardware ',' software','','','c','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-02 22:50:01'),(104,'An employer insures against his employees\\' dishonesty by taking up  ','fidelity guarantee insurance   ',' accident insurance   ','group life assurance  ','endowment policy.','','','a','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-06-07 21:43:49'),(105,'Payment made to the insured by the insurer outside its legal obligation is ','premium paid',' exgratia payment ','surrender value',' sum assured.','','','b','','utme','2006',89,'Admin','0000-00-00 00:00:00','2020-06-17 12:38:35'),(106,'An important social reason for development tourism in Nigeria is the  ','promotion of culture interaction   ',' provision of job opportunities','improvement of her balance of payments','encouragement of international relations.','','','a','','utme','2006',87,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:57'),(107,'The mode of transportation that conveys a limited variety of products through fixed laid routes is','waterways  ','Broad ','rail  ','pipeline.','','','d','','utme','2006',89,'Admin','0000-00-00 00:00:00','2020-06-07 13:28:50'),(108,'A computer that can be used in weather forecast is ','  a hybrid computer ',' an analog computer','a mainframe computer ',' a digital computer.','','','d','','utme','2006',96,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:00'),(109,'The setting of objectives for an organization and determining how to accomplish them is ','social responsibility  ','planning  ','organizing',' decision-making.','','','b','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-06-12 07:30:50'),(110,'An aspect of marketing that stimulates buying by providing free gifts is ',' advertising  ',' personal selling ','publicity ',' sales promotion,','','','d','','utme','2006',88,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:34'),(111,'The limit of functions, activities and personnel that a supervisor can effectively manage  in a business organization  is  ','spun of control ',' delegation of authority ','chain of command ',' authority and responsibility','','','a','','utme','2006',112,'Admin','0000-00-00 00:00:00','2020-06-07 16:30:54'),(112,'A seller attracts and retains patronage by',' enhancing public relations ',' enhancing sales promotion  ','  rendering pre-sales service',' rendering customer service.','','','d','','utme','2006',85,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:46'),(113,'A bond which attracts only interest but leaves the capital unpaid is referred to as','a long-term loan','a development bond ',' a redeemable bond','  an irredeemable bond.','','','d','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:38'),(114,'A public company has 2 000 000 ordinary shares of 50k each and offers 50% for subscription at N2 per share. If the shares were fully subscribed, calculate the issued capital.','  N4 000 000     ',' N2 000 000','N1 000 000     ','  N500 000.','','','b','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-06-21 12:45:34'),(115,'The main requirement for admission to the second-tier securities market is the ','provision of a three-year trading record   ','disclosure of all trading activities   ',' creation of a good atmosphere for growth and development   ','guaranteeing of dividends to shareholders.','','','b','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:12'),(116,'What is the capital employed?','N200 000','N340 000','N170 000','N300 000','','','d','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:30'),(117,'Which of the following is a development bank in Nigeria?','Union Bank Plc   ','First Bank Plc','First City Monument Bank ','Federal Mortgage Bank.','','','d','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:40'),(118,'Trading on the stock exchange in anticipation of  price change in the market value of shares is','speculation  ','forecasting ','expectation','projection.','','','a','','utme','2006',84,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:18'),(119,'A financial institution which uses its capital strength to acquire controlling interests in other firms can be regarded as a','subsidiary company','holding company ','trust   ','cartel.','','','b','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:22'),(120,'A current account is beneficial to its holder as','cheques can be issued to anybody','customers cannot withdraw frequently','it is only the holder that can make withdrawals','it allows customers the use of passbooks.','','','a','','utme','2006',98,'Admin','0000-00-00 00:00:00','2020-06-19 01:07:50'),(121,'The conversion of raw materials into finished products creates ','form utility ','marginal utility','place utility ','time utility.','','','a','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:11'),(122,'The factor which critically determines the choice of occupation is ','training  ','skill ','interest','aptitude.','','','c','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-05-29 19:55:10'),(123,'Capital to a business is technically  ','an expense','a liability ','  an asset ','a profit.','','','c','','utme','2006',98,'Admin','0000-00-00 00:00:00','2020-04-28 16:20:30'),(124,'I. Wholesaling  II. Fishing  III. Canning IV. Retailing  The sequence in which the occupational activities above are performed is','Ill, II, I and IV     ','Ill, I, IV and II','I, II, III and IV      ','II, III, I and IV.','','','d','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:50'),(125,'The development of commerce resulted from','trading ','competition ','importation','specialization.','','','a','','utme','2006',90,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:44'),(126,'The difference between a private and public limited liability company is that the former','is unable to offer shares to the public','is unable to declare and pay dividend','has a higher number of shareholders','pays higher salaries to its managers.','','','a','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:38'),(127,'Materials used for further production of goods and  services are known as ','export goods','intermediate goods ','capital goods','  consumer goods.','','','c','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-02 19:24:00'),(128,'A liquidator\\'s fee is to be charged to the','realization account  ','trading account','revaluation account ','reconstruction account.','','','a','','utme','2006',95,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:06'),(129,'The safety and quality of products are the social responsibility of ','the Standards Organization of Nigeria  ','the Manufacturers Association of Nigeria','the Corporate Affairs Commission','business organizations.','','','a','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:53'),(130,'A   feature   common   to   privatization   and commercialization is  ','profit-making    ','credit sales ','market expansion ','price increases.','','','a','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:22'),(131,'A protection right which can be reviewed or renewed after seven years is known as ','patent','design ','registration name ','trade mark','','','a','','utme','2006',86,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:36'),(132,'The headquarters of the Lake Chad Basin Commission is in ','Niamey ','N\\'Djamena','Abuja ','Lagos.','','','b','','utme','2006',86,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:21'),(133,'In Nigeria, the main source of pollution is','domestic waste   ','organic waste','gas flaring   ','industrial waste.','','','d','','utme','2006',85,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:22'),(134,'‘Safeguarding the health of the nation\\' is the slogan used by ','NDLEA ','NHIS ','NAFDAC ','EPI.','','','c','','utme','2006',90,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:30'),(135,'When one person approves an act previously done by another in the former\\'s name without authority, this is known as   ','ratification ','estoppels','illegality ','misrepresentation.','','','b','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-06-02 21:15:31'),(136,'The members of ECOWAS include',' Nigeria, Chad, Gabon and Cape Verde','  Burkina Faso, Nigeria, Niger and Mauritania','Guinea, Mali, Cameroon and Nigeria','Togo, Niger, Nigeria and Ghana.','','','d','','utme','2006',89,'Admin','0000-00-00 00:00:00','2020-06-14 23:22:42'),(137,'The most important advantage of privatization is the enhancement of ','liquidity ','accountability','profitability  ','efficiency.','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:28'),(138,'A trade association consists of members engaged in the same trade while a chamber of commerce is','highly regulated by a government agency','not restricted on a particular industry','made up of members that are registered',' made up of firms in the banking industry.','','','b','','utme','2006',85,'Admin','0000-00-00 00:00:00','2020-06-07 20:31:17'),(139,'Hire purchase is beneficial to the seller because',' it enhances his living standard ','it increases his turnover ','people pay instalmentally',' of the patronage he enjoys.','','','b','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-05-30 18:05:44'),(140,'Consumerism aims at protecting the consumer from','harmful products  ','drug addiction','smoking cigarettes ','alcohol consumption. ','','','a','','utme','2006',87,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:13'),(141,'The major types of warehouses are ','manufacturer, bonded, departmental and private  ','bonded, public, cold room and private','manufacturer, bonded, public and departmental','wholesaler, manufacturer, public and bonded.','','','d','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-06-10 01:20:00'),(142,'The Customs and Excise Department is responsible for the collection of','royalties ','tariffs','taxes ','charges.','','','b','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:14'),(143,'A shop which consists of many stores trading under a single roof and which stocks varieties of gods with each unit having its own head is a ','multiple shop  ','supermarket ','superstore','departmental store.','','','d','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-06-07 23:48:24'),(144,'An objective of the farmers\\' association is to','ensure that the prices of goods are fair and reasonable  ','correct the imbalance between consumers and producers ','improve the methods of selling and advertising   ','provide a stable market outlet for farm inputs,','','','a','','utme','2006',96,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:44'),(145,'The documents used in the purchase and sale of goods which contain other terms of trade are','debit note and credit note ','delivery note and advice not   ','invoice and order      ','quotation and invoice.','','','c','','utme','2006',86,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:58'),(146,'In international trade, exchanging goods for other goods and services purchased instead of paying in foreign currency is known as ','countertrade','balance of trade ','balance of payments','terms of trade.','','','a','','utme','2006',81,'Admin','0000-00-00 00:00:00','2020-06-17 12:38:34'),(147,'The role of a wholesaler in the channel of distribution is to    ','produce goods in large quantities and sell in small quantities ','buy goods directly from the manufacturers','buy good in large quantities and sell in small quantities','sell goods directly to the consumers ','','','c','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-06-17 20:42:21'),(148,'Foreign trade also involves ','providing services for other countries    ','specialisation and the exchange of goods in a country   ','buying and selling within a country ','the exchange of goods and services between firms. ','','','a','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:46'),(149,'Consumers require protection against exploitation to ensure ','adequate consumer awareness','availability of product variety','the sale of quality products','increased aggregate demand.','','','c','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:48'),(150,'The business environment that takes into cognizance the age distribution, ethnic mix and educational level of the consumer is','demographic environment','economic environment','cultural environment','natural environment.','','','a','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:17'),(151,'An agent who takes title to goods and has authority  to buy and sell on behalf of another is','a jobber   ','a broker  ','a factor','an auctioneer.','','','c','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-07 21:24:30'),(152,'Citizens are against privatisation mainly because of ','the rationalization of organizations','increased prices of goods and services','the likelihood of monopoly','ineffective management.','','','b','','utme','2007',55,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:44'),(153,'The major achievement of ECOWAS is','the expansion of regional trade','the emergence of a monetary union','infrastructure! development in member countries','mobility of labour among member countries.','','','a','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-06-06 18:41:37'),(154,'An announcement of a person\\'s willingness to enter into a contract is referred to as ','a proxy','an offer ','a consideration ','an acceptance.','','','b','','utme','2007',62,'Admin','0000-00-00 00:00:00','2020-06-14 23:22:42'),(155,'The macro-environmental forces and trends which are a constraint on business operations are  referred to as  ','technological factors','economic factors   ','external factors ','internal factors.','','','c','','utme','2007',56,'Admin','0000-00-00 00:00:00','2020-06-11 19:03:43'),(156,'Which of the following best describes inputs for any production activity?   ','Natural resources.',' Business resources.','Human resources.','Material resources.','','','a','','utme','2007',63,'Admin','0000-00-00 00:00:00','2020-06-18 06:47:29'),(157,'Personal selling is most effective in marketing industrial goods because it involves','recognition and attachment to customers','personal interaction and information gathering','demonstrations and product acceptability','after-sales services and product demonstrations.','','','b','','utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-01 15:33:05'),(158,'The controllable variables that a firm uses to achieve its marketing objectives are called','marketing principles ','marketing mix','marketing concepts','marketing functions.','','','c','','utme','2007',59,'Admin','0000-00-00 00:00:00','2020-05-28 21:13:25'),(159,'Public relations and advertising are similar in terms of','communicating product information','customer education ','the mode of operation','creating a favourable attitude.','','','a','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:49'),(160,'A major function of an entrepreneur is','decision-making ','encouraging competition','human-resource training','motivating employees.','','','a','','utme','2007',63,'Admin','0000-00-00 00:00:00','2020-06-07 15:26:41'),(161,'A Memorandum of Association is applicable to a',' sole trader ','joint-stock company',' partnership   ',' public corporation.','','','b','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:05'),(162,'The sustainable growth of commerce is largely due to ','marketing   ','advertising','exchange ','branding.','','','c','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:59'),(163,'A major advantage of a cooperative society is that it ','gives members the opportunity to unite','draws members closer to government','promotes awareness among members','encourages thrift among members.','','','d','','utme','2007',66,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:04'),(164,'The making of doors from timber planks is a type of ','manufacturing ','tertiary production','secondary production   ','primary production.','','','c','','utme','2007',57,'Admin','0000-00-00 00:00:00','2020-06-15 00:24:01'),(165,'Law-making is an example of ','indirect service','commercial occupation ','direct service','industrial occupation.','','','c','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:42'),(166,'A document which advertises the shares of a company is known as a  ','memorandum of satisfaction   ','dividend warrant     ','deed','prospectus.','','','d','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:16'),(167,'The scope of economic activities can be enlarged by    ','transportation and trading   ','business and its promotion  ','trading and aids to trade','insurance and banking.','','','c','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-02 17:01:47'),(168,'The creation of utilities to satisfy human wants is referred to as   ','production  ','consumption','industrialization    ','occupation.','','','a','','utme','2007',55,'Admin','0000-00-00 00:00:00','2020-05-06 17:09:27'),(169,'A major criticism of a cooperative society is','limited capital ','granting excessive loans to members   ','selling goods on credit to non- members    ','management incompetence.','','','d','','utme','2007',60,'Admin','0000-00-00 00:00:00','2020-06-14 23:22:42'),(170,'An economic activity which deals with natural resources is a form of  ','extraction','refining   ','construction ','manufacturing.','','','a','','utme','2007',66,'Admin','0000-00-00 00:00:00','2020-06-08 09:48:58'),(171,'The first stage in tourism planning is','assessing feedback from tourists','preparing a list of tourist attractions','creating recreational opportunities','building community support.','','','b','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:17'),(172,'An agreement by the insurer to compensate the insured for losses suffered is   ','policy','surrender value   ','caveat emptor ','indemnity.','','','d','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:10'),(173,'One of the functions of the Nigeria Ports Authority is the provision of  ','facilities to enhance the speedy loading and offloading of ','facilities to ensure that goods get to their destinations  ','shelter for operators of cargoes',' courier services to ensure speedy delivery.','','','a','','utme','2007',51,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:03'),(174,'The   World   Tourism   Organization   has   its headquarters in ','New York    ','Paris','Madrid     ','London.','','','a','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-06-07 21:59:23'),(175,'Digital computer is divided into ','analogue, hybrid and mini ','super, mainframe, mini and micro    ','mainframe, hybrid and micro','super, mainframe, micro and analogue.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:35'),(176,'A distinctive advantage of GSM is its ','mobility',' cost   ','stability   ','coverage.','','','a','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-06-05 16:26:04'),(177,'In the permanent storage device, DASD means','Data Access Storage Device','Data Access Systems Device','Direct Access Systems Device','Direct Access Storage Device.','','','d','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:07'),(178,'The major determinant of fire insurance premium is the ','type and structure of the property to be insured ','usefulness of the property to the owner','owner of the property to be insured','extent of fire damage anticipated.','','','a','','utme','2007',56,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:18'),(179,'The Internet is a system of telecommunications used for   ','communicating long-distance messages ','sending and receiving text messages','sending electronic messages .','communicating messages through telegrams.','','','c','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-17 12:38:36'),(180,'A written  agreement for  hiring  a  ship for transporting goods is a ','consular invoice','bill of lading ','charter party ','certificate of origin.','','','c','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:18'),(181,'The major function of a trade association is that it','liaises with foreign trade associations','helps to promote foreign trade','facilitates members\\' access to credit facilities','helps to promote research on behalf of members.','','','d','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:30'),(182,'A major setback of international trade is','inadequate exports','economic sanctions','devaluation of currency','exchange rate appreciation.','','','b','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:30'),(183,'Which of the following requires payment into the payee\\'s account?   ','Crossed cheque.','Traveller’s cheque.    ',' Open cheque.','Certified cheque.','','','a','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-06-17 12:38:36'),(184,'The traditional way of paying cooperative dividend is to distribute profit in proportion to members\\'','subscriptions  ','total savings','volume of purchases   ','contributions.','','','c','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:50'),(185,'The abbreviation C & F indicates that the','production cost excludes the cost of carriage','selling price includes the cost of carriage','cost of production includes delivery charges','cost price includes the cost of carriage.','','','b','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-06-01 16:22:10'),(186,'The sale of foreign investment and gold reserves can be used to ','correct adverse balance of trade','increase invisible imports','correct adverse balance of payments','correct a budget deficit.','','','a','','utme','2007',64,'Admin','0000-00-00 00:00:00','2020-06-06 19:57:45'),(187,'A share premium is an example of','issued capital ','capital stock ','equity capital','capital reserve.','','','d','','utme','2007',61,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:18'),(188,'A major benefit a debtor can derive from using a credit facility is ','better service  ','goodwill','convenience    ','control.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-06-08 12:12:26'),(189,'The function  of money that facilitates the comparison of the quality of goods as a basis of exchange is the   ','unit of account','measure of value ','store of value','medium of exchange','','','b','','utme','2007',62,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:00'),(190,'The difference between the buying and selling price of shares is known as   ','brokerage','margin   ','jobber\\'s turn   ','gross profit.','','','c','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:44'),(191,'Which of the following is a risk-free security?','Preference share.   ','Ordinary share.','Treasury bill.    ','Debenture.','','','c','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-06-17 12:38:36'),(192,'The central bank controls the quantity of money in circulation through  ','open-market operations','decreasing the tax rate ','issuing new currencies    ','increasing the tax rate.','','','d','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-07 16:25:04'),(193,'The selling of new shares to existing shareholders is referred to as ','public issue ','offer for sale','rights issue  ','bonus issue.','','','c','','utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-01 21:20:10'),(194,'A new company requiring a large amount of equity finance may source funds from the','capital market   ','central bank','money market    ','commercial banks.','','','d','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:47'),(195,'A credit instrument which also serves as a legal tender is   ','cheque    ','paper money','voucher   ','money order.','','','b','','utme','2007',58,'Admin','0000-00-00 00:00:00','2020-06-02 17:01:47'),(196,'The body regulating the sale and purchase of shares in Nigeria is the ',' Corporate   Affairs Commission   ','Securities   and   Exchange Commission    ','Securities   and   Exchange Tribunal     ','Nigerian Stock Exchange.','','','b','','utme','2007',71,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:07'),(197,'An aspect of commerce that facilitates the distribution of products is ','transportation ','advertising  ','branding ','trading ','','','a','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(198,'An activity that involves derivation of raw materials from land and sea is ','construction ','farming ','agriculture ','extraction ','','','d','','utme','2008',72,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:08'),(199,'The art of soap-making is an example of ','Primary occupation ','Secondary occupation ','Tertiary occupation ','Construction occupation ','','','b','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(200,'Given: I. shoe marker    II. Policeman     III. Fisherman    IV. Gardener    V. Broker .    The persons engaged in primary occupation are \\n','I, III and IV ','III and IV','III and V','I , II and V','','','b','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(201,'The process of changing the form of a raw material is known as  ','fabrication ','extraction ','conversion ','production ','','','d','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(202,'In the long run, all factors of production are ','fixed ','variable ','marginal ','constant ','','','b','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(203,'The quality and quantity of production mostly depend  on the ','effectiveness of factors ','availability of factors','level of education of entrepreneurs ','level of cooperation among workers','','','a','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(204,'The promotion of savings culture is a feature of a ','trade association ','consumers  cooperative society ','thrift cooperative society ','business association ','','','c','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(205,'A document which gives a legal status to a company is the certificate of ','incorporation ','trading ','commencement of business','business registration','','','a','','utme','2008',64,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(206,'A proposed company may not be registered if ','the name conflicts with that of another ','it does not put ‘limited’ after its proposed name ','it has no paid-up capital ','it has no asset of its own.','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-06-28 21:35:02'),(207,'An example of a cartel is ','OPEC','ECOWAS ','AU ','EU','','','a','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(208,'The cheapest source of funds available to a company is through ','the sale of shares','retained profits ','the sale of bonds','lease financing','','','b','','utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(209,'The components of capital employed in a business are ','owners’ equity and long-term debts ','total assets and current liabilities ','share capital and long-term debts','share capital and current liabilities.','','','b','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(210,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. What is the company’s authorized share capital?','N2500 000','N4000 0000','N5000 000','N7500 000','','','a','','utme','2008',58,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(211,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. Determine the company’s reserve share capital ','N2500 000','N1000 000','N1500 000','N2000 000','','','b','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(212,'In order to prevent liquidity problems in commercial banks, the central bank uses.','moral suasion  ','fiscal policy','reserve ratio','taxation ','','','c','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(213,'An account maintained with a commercial bank for the purpose of foreign exchange transaction is the ','foreign account ','International account ','domiciliary account ','foreign reserves account ','','','c','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(214,'A trader who gives credit stands to enjoy ','higher profit ','cash discount ','increased sales ','trade discount','','','c','','utme','2008',70,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(215,'A person who buys new issues with a view of reselling at a higher price in the near future is referred to as a ','bull ','bear ','dealer ','stage','','','a','','utme','2008',73,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(216,'A source of capital that has both elements of debt and equity is a ','debenture ','warrant ','loan ','share','','','d','','utme','2008',87,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(217,'A type of retail trade where a group of similar states which is owned by a firm operates in different locations is a ','conglomerate ','chain store','departmental store ','supermarket ','','','b','','utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(218,'A warehouse which is used to store goods whose customs duty is not yet paid is a ','wholesale warehouse','bonded warehouse','public warehouse','branded warehouse','','','b','','utme','2008',64,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(219,'Balance of payments is made up of ','visible  and current  items ','invisible and capital items ','current and capital items','visible and invisible items','','','d','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(220,'Most of the barriers to international trade have been eliminated through ','diversification ','globalization ','commercialization ','privatization ','','','b','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(221,'A document sent by a seller to inform a buyer about the prices of goods is the ','catalogue ','price list','credit note','proforma invoice ','','','b','','utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(222,'Which ‘FOB’ is written on a document, it implies that the buyer bears the ','cost of goods and advert ','loading cost and insurance ','insurance and transport costs','transport and communication costs','','','c','','utme','2008',62,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(223,'A crossed cheque with the inscription ‘not negotiable’ must be paid into the ','current account of the drawer ','current account of the payee of the drawer ','savings account of the payee','fixed account of the payee','','','b','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(224,'The pooling of business information for the benefit of members is a major function of a ','pressure group ','trade association ','cultural group ','trade union ','','','b','','utme','2008',64,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(225,'An association to which all chambers of commerce in Nigeria are affiliated is the ','Nigeria Labour Congress ','National Association of Chambers of Commerce, Industry, Mines and Agriculture','Nigeria Association of Chambers of Commerce, Industry, Mines and Agriculture ','Nigeria Stock Exchange ','','','c','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(226,'The resources which are necessary for business development include ','manufacturing, materials, mentors and money ','merchant, materials, mentors and money','man, money, materials and machines','machines, manufacturing, money and materials','','','c','','utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(227,'The four Ps of marketing are','product, place, process and promotion ','price, product, property and place','price, product, place and promotion ','price, production, place and property ','','','c','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(228,'Personal selling is used for the purpose of ','establishing the company ','providing information ','creating product awareness','launchers ','','','c','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(229,'Ships used for international transport are ','trawlers ','yachts','ocean liners ','launchers ','','','c','','utme','2008',60,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(230,'A function generally performed by authorities of both the air and seaports is the ','maintenance of warehouses where goods can be stored','provision of facilities for loading and unloading  of cargoes ','maintenance of security and order at the ports.','provision of facilities for landing and refueling at the ports.','','','d','','utme','2008',64,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(231,'A major factor hindering effective communication process is ','climatic condition ','social unrest ','distance ','noise ','','','d','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(232,'The fear of many communities concerning tourism development is the ','influence of foreign culture ','fear of disease transmission ','fear of pollution ','religious intolerance ','','','a','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(233,'The development of tourism in Nigeria  will enhance ','agriculture ','revenue generation ','export ','labour mobility ','','','b','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(234,'A historical building is a feature of ','cultural tourism ','industrial tourism ','agricultural  tourism','D. ecological   tourism','','','a','','utme','2008',72,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(235,'The sum of money paid by a policy-holder to an insurer is referred to as ','interest ','premium ','gross profit ','sales revenue','','','b','','utme','2008',60,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(236,'An example of a non-insurable risk is ','burglary ','speculation ','fire ','accident ','','','b','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(237,'The coordinating section of the central processing unit that manages the flow of data is the ','arithmetic logic unit','control unit','magnetic unit','register','','','b','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(238,'An agreement between two parties which is enforceable by law is a ','promise ','warranty ','contract ','condition ','','','c','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(239,'The implied provisions in every sale of goods as contained in the ales of Goods Act of 1893 are conditions and ','consideration ','sureties ','warranties ','guaranties ','','','c','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(240,'When an employee incurs expenses while executing his normal duty, the employer is responsible for his ','safety ','family’s security ','family’s welfare ','indemnification ','','','d','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(241,'The body charged with divesting government interests in public enterprises is ','SON','NPC','BPE ','NDE','','','c','','utme','2008',72,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(242,'The practice whereby government relinquishes its ownership interest in a public enterprises is ','commercialization ','indigenization ','privatization ','nationalization ','','','c','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(243,'A factor is a business environment which increases the rate of product obsolescence is ','technology ','political','legal ','economic','','','a','','utme','2008',70,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(244,'Which of the following is a form of social responsibility of a business? ','selling goods  at cheaper prices ','using the best technology available ','maintaining  tidy and safe environment ','Meeting contractor’s obligation ','','','c','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(245,'A computer component that decodes and interprets instructions and also directs program implementation  is ','memory unit','Central processing unit ','control unit ','system unit','','','b','','utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(246,'Which software program can be used to generate ','MS Word ','Database ','MS Excel','Adobe','','','c','','utme','2008',58,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(247,'The central focus of commercial activities is ','pricing   ','advertising ','trading ','marketing ','','','c','','utme','2009',69,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:37'),(248,'An aid to trade associated with communications is ','banking ','transportation','warehousing ','insurance ','','','b','','utme','2009',72,'Admin','0000-00-00 00:00:00','2020-06-06 00:46:01'),(249,'The services of a textile worker are an example of ','extractive activity ','commercial activity ','manufacturing ','construction ','','','c','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:45'),(250,'Resources harnessed in certain proportion to create goods and services are ','factors of production ','technology and labour ','land and entrepreneur ','raw materials ','','','a','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:19'),(251,'Primary production is associated with ','banking ','manufacturing ','agriculture ','construction ','','','c','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-17 21:27:38'),(252,'The major components of modern retailing include ','branding, doorstep  selling and customer stimulation ','branding, sales promotion and mail order ','chain stores, customer stimulation and doorstep selling ','branding, supermarkets and after-sales service','','','d','','utme','2009',59,'Admin','0000-00-00 00:00:00','2020-06-09 05:44:47'),(253,'A chain store usually combines the features of ','multiple shops and departmental stores ','hypermarkets and stalls ','multiple shops and hypermarkets','mail order business and multiple shops','','','a','','utme','2009',71,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:29'),(254,'One of the functions of the wholesalers is to ','forecast prices','reduce prices of goods','political unrest ','analyse sales periodically ','','','c','','utme','2009',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:15'),(255,'An artificial barrier to international trade is ','political unrest  ','culture of the people','unit of measurement ','custom duties','','','d','','utme','2009',58,'Admin','0000-00-00 00:00:00','2020-06-21 12:44:38'),(256,'The most commonly used commercial documents are ','order notes, debit notes, invoices and quotations ','letters of enquiry, consignment notes, receipts and invoices ','credit notes, statement of accounts, dispatch order and bills ','balance sheet, receipts, invoices and manifests.','','','b','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:54'),(257,'The term free on board means that the price includes ','costs and insurance only ','costs and freight only','freight and insurance only','costs, insurance and freight ','','','d','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:09'),(258,'If a buyer is given 12.5% discount on N50000 worth of goods, how much will he pay?','N56 250','N43 750','N43 250','N6250','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-06-14 23:22:42'),(259,'A cheque which a bank draws on its own funds is a','bankdraft ','cashier’s cheque ','bank cheque ','crossed cheque','','','a','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:55'),(260,'Billboards and posters are forms of ','electronic media ','print media','outdoor media ','window display media','','','c','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-19 01:07:50'),(261,'A collective term for advertising, personal selling and publicity is ','exhibition ','promotion ','trade fair ','mechanizing','','','a','','utme','2009',53,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:21'),(262,'The central bank differs from commercial banks  because it ','renders service to customers','carriers but foreign exchange transactions ','issues currencies ','discounts bills','','','c','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:53'),(263,'One of he facilities enjoyed by a current account holder is ','a dividend  ','a bonus','an overdraft ','interest on deposits','','','c','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:39'),(264,'In which of the following will be number of words used determine the cost of the message sent?','telephone','telegram ','e-mail','telex','','','b','','utme','2009',52,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:24'),(265,'The transmission of telephone services from one country to another is facilitated by ','communication satellite ','international facility ','interconnectivity ','internet services','','','a','','utme','2009',65,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:32'),(266,'The principle of insurance which entitles an insurance company to take any advantage due to the insured after full indemnity is ','contribution  ','subrogation ','proximate cause ','utmost good faith ','','','b','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:27'),(267,'A risk that can be estimated and calculated to be compensated is ','a delivery risk ','an insurable risk','a credit risk ','a systematic risk ','','','b','','utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-21 12:44:43'),(268,'The most important reason for the existence of insurance business is to ','prevent the occurrence of any loss','spread losses to all covered participants','provide for the replacement of facilities','encourage individuals to save','','','b','','utme','2009',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:03'),(269,'One major advantage of transportation to a business is to','extend the firm’s market coverage','ensure that goods are produced faster','procure raw materials cheaply ','ensure the quality of products','','','a','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-06-07 15:26:41'),(270,'Warehousing is important to manufacturers because it helps to ','improve the quality of goods ','produce goods in advance','meet the demand of customers ','determine input requirements','','','b','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:42'),(271,'One of the major problems of a sole proprietor is sourcing for ','raw materials ','labour ','machineries ','funds','','','d','','utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-28 21:35:02'),(272,'In a public limited liability company, planning is carried out by ','the chairman of the board ','the board of directors ','shareholders','employees','','','b','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-06-08 11:23:41'),(273,'Partnerships are most effective where ','the partners are family friends ','professionals are involved','members can easily raise enough capital ','government regulations are favourable ','','','b','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-06-04 16:16:05'),(274,'The type of partnership in which all partners are jointly liable in bearing risk is ','limited partnership ','partnership-at will','ordinary partnership ','industrial partnership ','','','c','','utme','2009',67,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:05'),(275,'The financial instrument that entitles the holder to receive dividend and capital gains is a ','share  ','bond ','bill of exchange ','treasury bill ','','','a','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-07 21:43:49'),(276,'The circulating capital of a business enterprise is classified into ','cash, work-in progress and debtors ','cash, vehicles, land and buildings ','debtors, stock of raw materials and fittings ','pre-payments, debtors and equipment.','','','a','','utme','2009',67,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:07'),(277,'If a firm has a turnover of N50 000 and the cost of goods sold is N40 000, what is the percentage of gross profit on sale? ','30.50%','20.50%','20.00%','D.10.0%','','','c','','utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:56'),(278,'A body established to protect the interest of members against the exploitation of retail traders and manufacturers is the ','wholesalers association ','consumer’s  association ','government agency ','workers’ union ','','','b','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:06'),(279,'The manufactures’ Association of Nigeria is an example of a ','labour union ','pressure group ','conglomerate ','cartel','','','b','','utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-03 17:59:32'),(280,'The characteristic which ensures that money is free from forgery is its ','legality ','durability ','recognition ','credibility ','','','b','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-03 17:59:32'),(281,'The major dealers on the stock market are the ','agents ','jobbers ','investors ','brokers','','','d','','utme','2009',63,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:37'),(282,'The daily official publications of the Nigerian Stock Exchange give detailed information on the ','changes in the official rules set by the market ','method of transactions agreed upon by members ','participation of members in a day ','changes in the price of securities','','','c','','utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:33'),(283,'The function which ensures that set objectives are attained by an organization is ','planning ','directing ','staffing ','controlling ','','','d','','utme','2009',69,'Admin','0000-00-00 00:00:00','2020-06-17 21:05:20'),(284,'An organizational structure that is military in nature is the ','line structure ','staff structure ','line and staff structure ','functional structure ','','','d','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:59'),(285,'The efficiency of an organization is enhanced by ','government assistance ','the host community ','customer support ','skilled manpower ','','','d','','utme','2009',53,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:53'),(286,'The concept which focuses on consumers in decision-making is ','selling concept ','marketing concept ','product concept ','production concept ','','','b','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:45'),(287,'Market skimming is an example of ','market penetration ','Sales promotion ','pricing policy','advertising ','','','a','','utme','2009',63,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:47'),(288,'The most important attributes in a sale of goods contract are ','offer and consideration','price and goods ','offer and acceptance ','demand and supply','','','c','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-05-04 18:22:13'),(289,'Unresolved disputes between the employer and employees are usually referred to the ','code of conduct bureau','personnel unit ','disciplinary committee','industrial arbitration tribunal ','','','d','','utme','2009',87,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:02'),(290,'The process of eliminating a virus from a computer program is ','programming ','debugging ','formatting ','looping','','','c','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-06-07 15:56:17'),(291,'The primary memory component of a computer is the ','cache ','console ','assemblers','compilers ','','','b','','utme','2009',69,'Admin','0000-00-00 00:00:00','2020-06-15 09:15:09'),(292,'A customer with XYZ Plc sent money through his account to his sister’s  account in another branch. This is an example of ','e-business','e –commerce ','e-finance ','D e-banking ','','','d','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:34'),(293,'The economic environment of a business is concerned with ','climatic conditions','changing values ','the growth rate','the interest rate','','','c','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-06-02 20:36:27'),(294,'A firm that disposes its wastes properly is discharging its ','community responsibility ','environmental responsibility ','civic responsibility ','social responsibility ','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:10'),(295,'The wealth of a nation depend on the volume of its','bilateral trade activities','commercial activities','multilateral trade activities','stock market','','','b','','utme','2010',78,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(296,'Which of the following can be used to differentiate skilled and unskilled lab our? ','education and training','available resources ','level of commitment','salaries and wages','','','a','','utme','2010',86,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(297,'A doctor who attends to patients at home after his official duty is','A community development worker','a direct service worker','an indirect service worker ','a direct and an indirect worker','','','b','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(298,'Manufacturing and construction activities are class8ified under','Primary production','Tertiary production','secondary production','direct production','','','c','','utme','2010',83,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(299,'The reward of rent, wages, interest and profits accrue from','capitals, labour, land, and entrepreneur respectively','land entrepreneur, labour and capital respectively','land, labour, capital, and entrepreneur respectively','labour, entrepreneur, land and capital respectively.','','','c','','utme','2010',76,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(300,'The factor of production that is subject to depreciation is','capital ','land','labour','entrepreneur','','','a','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(301,'Division of labour ultimately leads to ','conservation','integration','specialization','repetition','','','c','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(302,'A worker who process rice is engaged in','constructive activity','commercial activity','extractive activity','Manufacturing activity','','','d','','utme','2010',73,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(303,'After- sales service is a function usually rendered by','a retailer','a wholesaler ','an agent ','an entrepreneur ','','','a','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(304,'A trend is retailing which enables consumers to have free access to different products is ','after sales service ','branding ','self-service','vending machine','','','c','','utme','2010',65,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(305,'The activity which entails buying of goods in bulk and selling in small quantities to retailers is ','assembling ','wholesaling ','retailing ','merchandising ','','','b','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(306,'The comparison of a country’s visible and invisible exports and imports expressed in monetary term is ','balance of payment ','terms of trade','balance of trade','terms of payment ','','','c','','utme','2010',73,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(307,'The document that gives an importer a freehand to obtain goods from any manufacturer is ','a consular invoice ','a closed indent ','an open indent ','a freight note','','','c','','utme','2010',81,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(308,'Entrepot trade usually occurs in ','exchanging goods within a nation ','exchanging goods among countries ','importing goods among countries ','exporting goods to be re-exported ','','','c','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(309,'The document issued to a port authority when goods are deposited is a ','dock landing account ','bill of sight ','bill of lading ','dock warrant ','','','d','','utme','2010',72,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(310,'The details of the goods required by the purchaser is outlined in ','a consular invoice ','an indent ','an invoice ','a certificate of origin ','','','c','','utme','2010',71,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(311,'Selling goods in foreign countries at prices below their marginal cost is ','dumping ','depreciation ','devaluation ','discounting ','','','a','','utme','2010',71,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(312,'A process of creating more market for a product is through ','consumerism ','marketing ','advertising ','repositioning.','','','c','','utme','2010',84,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(313,'One of the merits of television as a medium of advertising is that it ','is prone to censorship ','is relatively cheap ','has more sensory stimulation ','has more network coverage','','','c','','utme','2010',71,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(314,'The best mode of ensuring that items posted get to the named addressed is through','recorded delivery ','registered mail','certificate of posting ','express mail','','','b','','utme','2010',83,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(315,'A businessman who undertakes the hull insurance policy is aiming at ','covering losses on damages to the cargo ','protecting injured crew in the ship ','averting payment of the freight ','covering damages to the body of the ship ','','','a','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(316,'An agent who brings a customer into business contact with his principal is known as ','a del credere agent ','an auctioneer','a factor','a broker','','','d','','utme','2010',88,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(317,'A major hindrance to tourism growth in Nigeria is ','absence of genuine tour operators ','lack of tourism master plan ','inadequate tourist centres','non-compliance to immigration laws.','','','b','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(318,'The warehouse that is owned and controlled by the government is a ','wholesalers’ warehouse ','public warehouse ','state warehouse','manufacturers’ warehouse','','','b','','utme','2010',79,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(319,'One of the main features of a partnership is ','limited liability ','lack of corporate existence ','unlimited membership ','lack of mutual confidence','','','b','','utme','2010',70,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(320,'An arrangement by independent firms to share the market of their products on quota basis is referred to as  ','trust ','integration ','syndicate ','cartel','','','d','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(321,'An illegal arrangement by manufacturers to control the price or condition of sale of a product is ','ring ','factoring ','consortium ','merger','','','c','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(322,'A public company with an authorized capital of N60,000, issued 36,000 shraes at 150k each. What is its capital?','N60,000','N36,000','N54,000','N90,000','','','c','','utme','2010',61,'Admin','0000-00-00 00:00:00','2020-06-26 22:34:10'),(323,'One of the functions of NACCIMA is ','negotiating with labour unions in matters of wages and conditions of service','pooling of members’ resources for long-term investment ','disseminating information to members on matters relating to tariffs ','ensuring uniformity in labour matters and industrial relations.','','','d','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(324,'A characteristic of money which ensures that its value is not lost is ','homogeneity ','easy portability ','divisibility ','relative scarcity ','','','d','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(325,'The instrument used in the capital market is ','treasury bill ','bill of exchange ','stock ','debenture ','','','c','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(326,'A pre-requisite for admission into the second-tier securities Market is for a company to ','make 20% of its equity share available to he public for subscription ','have a minimum of 100 shareholders ','have a maximum of 100 shareholders ','make 10% of its equity share available to the public for subscription','','','d','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(327,'The tree components of staffing are ','recruitment, interview and appointment ','recruitment, test and placement ','recruitment, selection and appointment ','recruitment, selection and placement ','','','d','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(328,'Which of the following is a matter of personal preference on the part of a superior officer?','Unity of command ','span of control ','delegation of authority ','unity of direction','','','c','','utme','2010',73,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(329,'The conversion of raw materials into finished goods leads to the creation of ','form utility ','product utility ','possession utility ','place utility ','','','a','','utme','2010',78,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(330,'The main concern of marketing concept is to ','reduce the number of retail outlets ','identify consumer needs and satisfy them ','increase sales to meet consumer needs ','encourage division of labour.','','','b','','utme','2010',72,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(331,'The best pricing strategy for a company that produces warm clothing is ','target return pricing ','bid pricing ','variable pricing ','product line pricing ','','','d','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(332,'The deliberate and sustained efforts of an organization towards the creation of goodwill for its products and services is through ','Public relations ','advertising ','sales promotion ','rebranding ','','','a','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(333,'The label on a product such as ‘pampers’ is a type of ','trademark  ','branding ','packaging ','patent right','','','a','','utme','2010',83,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(334,'An opportunity to reject a binding contract at will by a third party is said to be a ','valid contract ','quasi contract ','voidable contract','conditional  contract','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(335,'An agency contract must involve ','a principal and a consumer','a principal  and a producer ','a principal and a third party ','a principal and a third party ','','','d','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(336,'The difference between trademark and patent right is that the latter ','gives exclusive right to import a particular good ','is conferred by the government ','confers monopoly  on a product ','confers exclusive right to publish literary works.','','','c','','utme','2010',81,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(337,'Which of the following is a function of consumerism? ','Protecting consumers’ rights ','providing consumers’ choice','providing consumers’ needs','Making profiteering impossible','','','a','','utme','2010',78,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(338,'A printed copy of processed information from the computer is the ','soft copy ','file copy ','scanned copy ','hard copy ','','','d','','utme','2010',81,'Admin','0000-00-00 00:00:00','2020-06-27 16:51:16'),(339,'The central working system of a computer used for data processing is the ','memory unit ','monitor ','floppy disk drive ','hard drive','','','b','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(340,'The major problem confronting Cyber Café operators is ','Advanced fee fraud by clientele ','poor network coverage ','high operating costs ','copyright violations by clients','','','c','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(341,'A device that enables the downloading of information from the internet is the ','floppy drive ','compact disk ','modem ','blue tooth ','','','c','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(342,'In e-baking, ATM means ','authentic Teller Machine','Automatic Teller Machine ','All-purpose Teller Machine','Automated Teller Machine','','','d','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(343,'One way by which a business can discharge its social responsibility to its community is to ','hold monthly meetings of its customers','build houses for its executives ','award scholarship to staff children ','build public health centres.','','','d','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(344,'The most important function of commerce is in ','enhancing business relationships ','helping people to improve their profits ','facilitating exchange among individuals and firms','assisting trade through banking and insurance','','','c','','utme','2011',86,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(345,'The three main classifications of occupation are ','construction, trade and services ','manufacturing, industry and services ','farming, banking and trading  ','industry, commerce and services','','','d','','utme','2011',89,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(346,'An oil exploration company is engaged in ','tertiary production ','constructive occupation ','extractive occupation ','secondary production','','','c','','utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(347,'Services rendered to the public is provided by ','Government ','civil servants ','professionals ','domestic servants ','','','b','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(348,'The creation of goods and services to satisfy human wants is referred to as ','manufacturing ','commercialization ','Production ','entrepreneurship ','','','c','','utme','2011',86,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(349,'Which of the following is a limitation  of division of labour? ','decline in craftsmanship ','monotony of work ','reduction in output','reduction in labour force','','','d','','utme','2011',88,'Admin','0000-00-00 00:00:00','2020-06-30 13:21:59'),(350,'Resources obtained from the extractive sector that are transformed into finished products are examples of ','primary production ','tertiary production ','direct production ','secondary production.','','','a','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(351,'An individual that links the producer with the retailer is ','an agent ','a wholesaler ','an entrepreneur ','a principal ','','','b','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(352,'One of the functions of a retailer is the ','financing of production activities ','provision of credit facilities to relations ','provision of jobs for customers ','breaking of bulk','','','b','','utme','2011',81,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(353,'The main aim of selling directly to the consumers by manufacturers is to ','reduce transportation cost','make contact with individual consumers ','discourage the activities of middlemen ','maximize profit margin','','','c','','utme','2011',106,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(354,'Balance of payment problems arise if a country’s ','exports is more than imports','imports is more than exports','currently is devaluated','Invisible exports is more than visible exports ','','','b','','utme','2011',85,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(355,'The three components of a country’s balance of payment are ','Current account, capital account and monetary movement account ','capital account, trade account and business record ','sales account, profit and loss account and capital account ','monetary movement account, trade account and ales ledger.','','','a','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-03 15:33:33'),(356,'A document that indicates obligation that is transferable by delivery and endorsement is a ','bill of lading ','bill of exchange ','documentary evidence ','negotiable instrument ','','','a','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:16'),(357,'The document which can be exchanged for a bill of lading is ','freight note ','mate receipt ','export invoice ','ship report','','','a','','utme','2011',76,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:43'),(358,'The price quoted which includes the cost of insurance, freight and all delivery charges to the importer’s warehouse is ','Free Alongside Ship','Franco ','Free on Board ','Free on Rail','','','c','','utme','2011',93,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(359,'The purchase of goods under the CWO system of payment implies that ','money must be enclosed when ordering ','payment must be made on delivery ','payment must be made on the spot.','cash must be paid on the spot ','','','b','','utme','2011',79,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:07'),(360,'The most effective but limited medium of advertising in Nigeria is ','billboard ','television ','newspaper ','radio ','','','a','','utme','2011',97,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(361,'A cheque that has been drawn but not presented for payment can still be honoured ','within 6 months ','after 9 months ','within 9 months ','after 6 months','','','a','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-05-30 18:05:44'),(362,'The major source of income to commercial banks is ','loans ','deposits ','interests ','overdrafts ','','','b','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-06-26 10:59:33'),(363,'An ancillary to trade that easily links suppliers with consumers is ','tourism  ','banking ','communication ','transportation','','','c','','utme','2011',77,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(364,'Mr. Lawal insured his warehouse against burglary but it was later gutted buy fire. This implies that ','the loss should be borne by the insurer ','Mr. Lawal is liable  only for half of the estimated loss ','the insurer should make a consolation payment for the loss','the loss should be borne by Mr. Lawal','','','d','','utme','2011',80,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(365,'The agreement of insurers to spread risks  among themselves is a major feature of ','reinsurance','life assurance ','underwriter','marine insurance ','','','a','','utme','2011',83,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(366,'Inbound tourism occurs when ','non-residents of a country travel to other countries ','residents of a country travel to other countries ','non-residents of a country travel countries ','residents of a country travel within it','','','d','','utme','2011',97,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(367,'One of the major disadvantages of pipeline transportation is its ','high cost of construction ','limitation in scope ','vulnerability to climatic changes ','high maintenance cost ','','','a','','utme','2011',93,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(368,'The business organization that can effectively combine management with control is ','private limited liability company ','sole proprietorship ','public limited liability company ','co-operative society ','','','b','','utme','2011',88,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(369,'When two or more companies agree to execute a project too large for one to handle, this is referred to as ','an amalgamation ','a cartel ','a merger ','a consortium ','','','d','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(370,'In the event of voluntary liquidation, the appointment of a liquidator is the responsibility of the ','directors ','creditors ','promoters ','court ','','','a','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(371,'A source of business financing which involves pledging of a specific asset is ','bond ','mortgage ','debentures ','loan','','','b','','utme','2011',89,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(372,'An example of a trade association is ','ALGON','NLC','NURTW','NULGE','','','a','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(373,'A broker is an agent who links a potential investor with ','a shareholder who wants to register a company ','Other members of the exchange who want to trade ','government official on the exchange ','a quoted company ','','','d','','utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-26 10:59:30'),(374,'Second-tier securities Market differs from the first-tier securities Market in that the former is ','Highly restricted ','regulated by the SEC','regulated by the NIPC','Less restricted ','','','a','','utme','2011',80,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(375,'A communication process providing information for decision-making in an organization is the ','Management Information System','Transmission Control Protocol ','Information Retrieval System ','File Transfer Protocol.','','','c','','utme','2011',82,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:08'),(376,'The managerial ability of a supervisor in an organization may be underutilized if the ','morale of the supervised is high ','span of control is wide','span of control is narrow','morale of the supervised is low','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(377,'The arrangement and interrelationship of the various components and positions of a business is referred to as ','organizational structure ','clarity of objective ','unity of direction ','line structure','','','a','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(378,'The variety of goods and services which a company offers for sale is its ','place mix ','promotion mix ','price mix','product mix','','','d','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(379,'Activities undertaken to create awareness for goods by conducting contests is ','marketing concept ','consumerism ','sales promotion ','marketing mix','','','c','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(380,'The slogan, a wonderful world,  used by a communication network is a form of ','product differentiation ','persuasive advertising ','publicity ','packaging ','','','b','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(381,'To make a simple contract valid, the intention must be ','legal and written ','legal and binding ','legal and attractive ','legal and harmonious ','','','b','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(382,'The major parties to an agency relationship are the ','principal and the creditor ','bailee and the bailor','principal and the agent','shareholder and the creditor ','','','c','','utme','2011',85,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(383,'One of the obligations of an employer to an employee is to ','Indemnify  him against liabilities incurred on duty ','award scholarship to his children ','terminate his appointment  without prior notice','indemnify him against injuries caused through negligence ','','','a','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(384,'The body charged with the responsibility of regulating foods and drugs in Nigeria is the ','SON','NDLEA','NAFDAC','CAC','','','c','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-06-30 13:22:27'),(385,'The physical components of a computer system refers to the ','system unit ','hardware ','software ','compact disk ','','','b','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(386,'An example of a computer operating system is ','the pagemaker ','the Word Perfect ','Microsoft Word 2000','Windows 2000','','','d','','utme','2011',79,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(387,'Intranet differs from extranet in that the former ','requires a modem before it could be used ','can generally be accessed by the public ','is restricted to employees of an organization ','requires internet protocols','','','c','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(388,'A software application which enables a user to display and interact with texts, images and videos is the ','web server','internet Protocol','coreldraw ','web browser ','','','c','','utme','2011',78,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(389,'A predominant mark-up language for web pages is ','IP','HTTP','HTML','TCP','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(390,'The symbol @ in an internet mail address is used  to  ','separate the user name from the machine name ','link the user with other internet users ','locate the addresses of internet  uses ','link the user with the machine.','','','c','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(391,'A business organization is said to be socially responsible when it ','gets involve in issues relating to the society ','rewards its staff for long-term service','offers discounts to customers','invites the public to its annual general  meetings.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(392,'One of the major benefits of commerce to government is to ','improve the standard of living ','generate revenue for growth and development ','encourage cooperation among public organizations ','encourage the development of socio-cultural values','','','b','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-02 22:50:01'),(393,'An example of an activity in the construction industry is ','blacksmithing  ','bricklaying ','car assembling ','shoemaking ','','','c','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:22'),(394,'One of the inputs in production that can be motivated by remuneration is ','capital ','entrepreneur ','labour ','land ','','','c','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-05-28 21:12:51'),(395,'The allocation of tasks to different skills in a production process is referred to as ','production technique ','production function ','division of labour','delegation of responsibility ','','','c','','utme','2012',68,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(396,'The sales of goods through a medium that accepts money and deliver the items to the customer is ','an automated teller machine ','a vending machine','a counting machine','a branding machine','','','b','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-28 21:35:02'),(397,'The main purpose of branding is to ','create identity for a product ','make a product look attractive ','create product awareness ','increase sales volume ','','','a','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(398,'The basis for international trade is embedded in the principle of ','absolute advantage ','globalization ','deregulation','comparative advantage ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(399,'The major problem encountered in international trade is that of  ','distance ','differences in culture ','politics ','differences in currency ','','','d','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(400,'The document a seller uses in dispatching goods to a customer by a carrier is ','a bill of lading ','an invoice ','an advice note','a delivery note','','','d','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(401,'A document which serves as an order with details of goods required by an intending purchaser is   ','a freight note ','an indent ','a bill of lading ','a waybill','','','b','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(402,'If a customer pays within nine days of receiving goods and takes advantage of 3% off the invoice price, this is stated as ','3/9; net 3. ','9/27; net 30','30; net 9/3','9/30; net 3.','','','d','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(403,'Which of the following is a characteristic of a bearer cheque? ','it is made with transverse lines ','it is made payable to whoever presents it','It is made without teraservers lines','it is only payable into the payee’s account ','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:23'),(404,'A bill of exchange paid before its due date at an amount less than its face value is said to have been ','accepted ','rejected','discounted ','dishonoured ','','','c','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:21'),(405,'The most effective type of advertising for branding products is ','mass advertising ','persuasive advertising ','informative advertising ','competitive advertising ','','','c','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(406,'A current account holder pays fees for services in form of ','bank charges ','inertest rates','commission on turnover','minimum lending rate','','','a','','utme','2012',74,'Admin','0000-00-00 00:00:00','2020-06-01 15:33:05'),(407,'Printed messages sent by cable are recorded as ','telegram ','SMS','telex','MMS','','','a','','utme','2012',50,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(408,'Communication is relevant to business activities because it ','creates wealth for people ','reduces the cost and risk of traveling ','connects people','enhances delivery of goods and services','','','b','','utme','2012',68,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(409,'The right of an insurance company to stand in place of an insured against a third party, who is liable for the occurrence of a loss, is the principle of ','proximate cause','insurable interest ','insurance priority ','subrogation ','','','c','','utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(410,'Assurance is different from insurance in that the former is based on ','probability ','possibility ','risk ','uncertainty ','','','b','','utme','2012',49,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(411,'A person who undertakes a life insurance is said to be an ','Insurer ','assurer ','assured ','insured ','','','d','','utme','2012',66,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(412,'Tourism serves the purpose of ','cross-cultural understanding and peaceful interaction ','opening avenues for leaving the country','economic development and naturalization ','exploiting the country’s natural endowment','','','d','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(413,'The type of letters that are delivered through the normal mail or by airmail express service is referred to as ','Inland letters ','registered letters','airmail letters','express letters','','','c','','utme','2012',60,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(414,'A business organization that exploits the capabilities of a member to remedy the weaknesses of another is a ','joint venture ','partnership ','nominal partnership ','cooperative ','','','d','','utme','2012',59,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(415,'The most important business objective is to ','improve investments ','provide quality  products','target consumers for satisfaction ','carve a niche for the business ','','','c','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(416,'In case of liquidation of a public limited liability company, those that are first paid are ','ordinary shareholders ','preference shareholders ','cumulative preference shareholders ','debenture holders','','','d','','utme','2012',56,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:47'),(417,'A feature common to public and private limited liability companies is that ','both can sue and  be sued ','the minimum number of their shareholders is five','the transfer of their shares  is not restricted ','their annual accounts are published for public use','','','a','','utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(418,'A business organization can obtain long-term financing through ','bank overdraft ','the sale of shares ','credit purchases ','bureau de change ','','','b','','utme','2012',74,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(419,'The portion of the authorized share capital given out to the public for subscription is ','called-up capital ','issued capital ','paid up capital ','reserved capital ','','','b','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(420,'A company has an authorized capital of 40 million shares at N1 each, out of which 32 million are issued and fully paid-up. What happens to the remaining 8million shares?','it has been issued but not paid-up ','it has been applied for but not issued ','it is not paid up','it is not yet been issued ','','','d','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(421,'If the rate of turnover of a company in 1999 was 4 times while the average stock was N49, 600, determine the turnover.','N199, 400','N198, 400','N100, 200','N99, 200','','','b','','utme','2012',56,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(422,'Given:  N\\n Opening stock  1,800\\n Purchases   2, 800\\n Sales    8,000\\n Closing stock    350\\n Carriage on sales    500\\n Calculate the value of the unused stock.\\n','N 800','N500','N350','N320','','','c','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(423,'The main objective of a trade association is to ','protect is members against litigation ','boost the trade of its members ','secure credit for its members ','protect its members against victimization ','','','d','','utme','2012',52,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(424,'The promotion and protection of trade, industry and agriculture thorugh trade fairs is a function of ','NACRDB','NACCIMA','the Consumer Protection Council ','the Chamber of Commerce ','','','d','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(425,'Dealing in quoted securities on the Nigeria Stock Exchange is restricted to authorized ','companies ','brokers ','investors ','principals','','','b','','utme','2012',64,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(426,'Securities that entitle the investor to coupon rates are ','bonds ','equities ','warrants ','treasury bills','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(427,'Under what management function will the motivation of employees fall?','staffing ','controlling ','organizing ','directing ','','','b','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-28 21:35:02'),(428,'The promotion of team spirit in an organization is referred to as ','Unit of direction ','spirit de corps ','unity of purpose','discipline ','','','a','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(429,'One of the characteristics of a good organizational chart is that it should ','be rigid ','show government policy','facilitate communication ','be acceptable ','','','c','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(430,'An organization which focuses on consumer satisfaction is practicing ','consumerism ','market segmentation ','selling concept ','marketing concept ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(431,'Goods and Services are made available to consumers through','the channel of distribution ','sales promotion ','the advertising agency','the middlemen ','','','a','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:29'),(432,'A person who in consideration for an extra commission, takes responsibility for goods sold on credit and in case of default is a ','commission agent','del credere agent ','broker ','factor ','','','b','','utme','2012',72,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(433,'Yahaya bought a piece of furniture on a credit sale agreement from Ahmed and resold it to Ali before all installments were made. The court upheld that Ahmed could not recover possession of the items from Ali. The reason for the judement was because ','ownership was transferred on completion of installment ','ownership was transferred on delivery ','Yahaya could not pass title to a third party ','Ali was still indebted to Yahaya','','','b','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-08 12:12:26'),(434,'The body which ensures that consumers are protected against harmful product in Nigeria is ','NAFDAC ','NDLEA','SON','CPC','','','a','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(435,'The process of decoding data in a computer is known as ','dilution ','default drive ','decryption ','data security ','','','c','','utme','2012',60,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(436,'Which of the following is a type of system software? ','Utility programs ','Registers ','Hard drives ','Packages','','','a','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(437,'Computers that process all data as binary zeros and ones are ','analog computers ','digital computers ','hybrid computers','desktop computers','','','b','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(438,'Modern mans of payment is greatly facilitated by ','e-commerce ','paper money ','e-banking ','D credit transfer ','','','c','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(439,'The provision of quality and safe products which guarantee the health of consumers is an example of ','quality control ','price control ','civic responsibility ','social responsibility ','','','a','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(440,'A business organization must always consider the overall effect of its actions on the ','competitor ','product ','profit ','society ','','','c','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(441,'The type of labour that makes use of physical effort in production processes is the ','unskilled labour','skilled labour','blue-collar job','white-collar job','','','a','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(442,'The assembling of products into usable forms is known as ','creation ','manufacturing ','construction ','formation ','','','c','','utme','2013',57,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(443,'The final link in the chain of distribution is ','Middlemen ','wholesaling ','consumer ','retailing ','','','c','','utme','2013',50,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(444,'A country is said to be experiencing an unfavourable balance of trade if her','exports exceed imports ','visible exports  exceed  visible imports ','imports and export are equal ','visible imports exceed visible exports ','','','d','','utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(445,'Trading position of Nigeria is the same as her ','desire  to trade with many countries','willingness to grant credit to foreigners ','balance of trade ','terms of trade','','','a','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(446,'The role of customs and excise authority includes the ','provision of a good transport system to facilitate imports and exports ','provision of security at the port ','control of the flow of goods in and out of the country ','provision of dockyards for ship repairs ','','','c','','utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(447,'The document lodged with the customs authorities before a ship can leave the port is a ','shipping note ','ship report ','ship manifest','dock warrant ','','','c','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(448,'The document which must be endorsed by the ambassador of a country of destination before shipment of goods is a ','consular invoice ','certificate of origin ','bill of lading ','closed indent ','','','b','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(449,'A country’s terms of trade are said to improve when the ratio of her export ','decreases ','remains constant ','increases ','equals import','','','c','','utme','2013',62,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(450,'Which of the following advertising medium appeals to only the literate it the society?','Radio advertising ','Print Media advertising ','Television advertising ','Cinema advertising ','','','b','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(451,'The two main forms of communication are ','oral and written ','verbal and non-verbal ','e-mail and fax','traditional and modern media ','','','b','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(452,'The most reliable and efficient means of conveying urgent documents is through','postal order ','ordinary letters ','registered letters ','courier services','','','d','','utme','2013',69,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(453,'An undertaking given by a person to another assuring his integrity is ','proximate clause ','fidelity guarantee ','subrogation ','insurable interest ','','','b','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(454,'If Mr. N takes a fire insurance policy with average clause, his compensation will be ','N5, 000','N7, 500','N70, 000','N75,000','','','b','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(455,'The difference between indemnity insurance and non-indemnity insurance is that the latter provides ','cover for exporters against risks ','cover for importers against risks ','full payment to the insured ','consolation payment to the insured ','','','d','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(456,'An importance of warehousing is in the ','production of goods ','transportation of goods ','Importation of goods ','repackaging of goods','','','a','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(457,'In order to increase the capital owned, a sole trader may ','seek for bank loan ','issue debentures ','acquire extra shop fittings on credit ','draw less of his profit for personal use','','','d','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(458,'A business partner who provides capital but abstains from participation in administration of a firm is a ','general partner ','nominal partner ','secret partner ','dormant partner ','','','d','','utme','2013',57,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(459,'Which of the following will NOT be stated in a Memorandum of Association? ','Name clause ','Rights of shareholders ','object clause ','Registered office','','','d','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(460,'The amount of authorized capital that shareholders have subscribed to is ','issued share capital ','authorized share capital ','owner’s equity ','working capital ','','','c','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(461,'The rate of turnover of a firm in a given year is 5 times while the average stock is \\n N12.500. what is the turnover of the firm? \\n','N24,000','N46,500','N62, 500','N65,000','','','b','','utme','2013',64,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(462,'A lawyer that defrauds his client may be derobed by the Nigerian Bar Association in order to ','protect other lawyers ','protect the integrity of the association','compensate the affected client ','prevent the client from sueing the association ','','','c','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(463,'In the Nigeria GSM industry, a parliament is organized by the Nigerian Communication Commission in order to ','increase profit of service providers ','protect the interest of government ','encourage more people into the business ','protect the interest of consumers ','','','b','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(464,'Trade Fairs in Nigeria are organized by ','the Federal Government ','Manufactures’ Association of Nigeria','Ministry of Commerce and industry ','Chambers of commerce','','','d','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(465,'Money is generally acceptable for transactions due to','the legal backing ','the rule of law ','it’s acceptability in the global market ','the Central Bank Governor’s signature ','','','d','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(466,'Which of the following is a quality of money?  ','Availability','Scarcity  ','Indivisibility ','Convertibility ','','','a','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(467,'Money can simply be referred to as a ','measure of value','standard of value','means of settlement ','durable asset for doing business','','','a','','utme','2013',64,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(468,'Gilt-edged securities are issued mainly by ','individuals ','non-governmental organizations','government ','multi-national companies ','','','c','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(469,'The initial function of a manager is ','setting up an organization ','coordinating ','planning ','provision of welfare package ','','','b','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(470,'The most suitable organizational structure for small or medium-sized enterprises is ','line structure ','staff structure ','committee structure ','functional structure ','','','a','','utme','2013',53,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(471,'In a staff-authority relationship, the opinion of a specialist is one department to another is ','a directive ','an advice ','a command','a delegation ','','','b','','utme','2013',60,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(472,'Management of a business involves he development of ideas for the ','distribution of goods and services that human wants','transportation of goods and services that goods and services that human wants ','transfer of little of ownership of goods and services to individuals.','production of goods and services that satisfy human needs.','','','d','','utme','2013',50,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(473,'Which of the following is used as a pricing policy? ','packaging ','market selection ','labeling ','market skimming ','','','d','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(474,'The essential utility derived from the use of a product is known as ','augmented benefit','branded benefit ','core benefit ','formal benefit','','','c','','utme','2013',58,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(475,'The breaking down of a market into separate and identifiable elements is known as ','differentiation ','segmentation ','skimming ','penetration ','','','b','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(476,'A contract that is acknowledged before the law court is referred to as ','informal contract','formal contract ','contract of records ','specialty contract ','','','b','','utme','2013',56,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(477,'An agent employed to sell goods delivered to him by the principal is referred to as a ','Special agent ','del credere agent ','factor ','universal agent','','','b','','utme','2013',64,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(478,'A motor dealer who agreed to sell a car to Mr. X but sold and delivered it to Mr. Y on the delivery date agreed with Mr. X. He has discharged the contract by ','performance ','frustration ','an agreement ','breach ','','','d','','utme','2013',60,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(479,'A contract can be terminated through ','physical combat ','family intervention ','frustration ','consultation ','','','d','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(480,'The right of retain possession of goods until the contract price is paid is referred to as ','a promise ','ultra vires ','a branch ','a lien ','','','a','','utme','2013',52,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(481,'The sole legal right held by the author to publish his book is a ','trademark ','copyright ','patent right ','book mark','','','b','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(482,'The process of transferring data from one computer to another is referred to as ','down loading ','faxing ','browsing ','decoding ','','','a','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(483,'The physical component of a computer system is ','software ','hardware ','hard disk','floppy disk ','','','b','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(484,'A computer accessory through which information can be retrieved is the ','hard disk ','input  device ','control unit ','floppy disk ','','','d','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(485,'The type of computer application software used mainly for management information is ','Corel draw ','AutoCAD','data base','word perfect','','','c','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(486,'To meet security requirement before gaining access to data, a computer operator supplies ','an e-mail address ','a yahoo address ','a password ','a modem','','','c','','utme','2013',57,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(487,'A major factor that affects business operations is ','technology ','supply ','product ','rivalry ','','','a','','utme','2013',55,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(488,'The environmental hazard that is most difficult to control is ','land pollution','water pollution ','air pollution','political unrest ','','','c','','utme','2013',56,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(489,'Which of the following can be defined as trade and aids to trade?','Advertising','Commerce','Wholesaling','Retailing','','','b','','wassce','2000',57,'Admin','2016-11-14 07:16:10','2020-06-21 12:50:20'),(490,'Which of the following is not a source of finance to a sole proprietor?','Trade Credit','Overdrafts','Debentures','Leasing of equipment','','','d','','wassce','2000',44,'Admin','2016-11-14 07:16:10','2020-06-20 13:09:09'),(491,'Partners who allow their names to be used in a partnership but do not take part in the management of the business are','active partners','limited partners','general partners','nominal partners','','','d','','wassce','2000',48,'Admin','2016-11-14 07:16:10','2020-05-28 21:17:31'),(492,'A private company is one which','must publish its audited account','floats its shares on the stock exchange market','restricts the rights to transfer its shares','is owned by a maximum of twenty members merger','','','c','','wassce','2000',55,'Admin','2016-11-14 07:16:10','2020-06-08 06:41:19'),(493,'The coming together of two or more firms at different stages of production is','horizontal merger','vertical merger','amalgamation','cartel','','','b','','wassce','2000',52,'Admin','2016-11-14 07:16:10','2020-05-28 21:16:34'),(494,'The total value of fixed and current assets is?','working capital','capital employed','Fixed capital','capital owned','','','b','','wassce','2000',45,'Admin','2016-11-14 07:16:10','2020-06-08 11:23:41'),(495,'What is P in the above equation?','Purchases returns','Net Profit','Sales','Carriage outwards','Use the following equation to answer question   Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-06-21 12:49:42'),(496,'What is G in the above equation?','Sales returns','Carriage inwards','Purchases','Sales','Use the following equation to answer question  Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',45,'Admin','2016-11-14 07:16:10','2020-06-08 09:48:58'),(497,'Which of the following is true about cumulative preference shares?','Unpaid dividends are carried forward','Shareholders can secure capital refund on demand','Shareholders are entitled to further share of profit','Dividends are paid into a special account','','','a','','wassce','2000',45,'Admin','2016-11-14 07:16:10','2020-06-01 19:32:09'),(498,'A debenture is mortgaged when it is','not secured on the assets of a company','secured on the assets of a company','irredeemable','redeemable','','','b','','wassce','2000',45,'Admin','2016-11-14 07:16:10','2020-06-21 12:48:14'),(499,'A retail outlet which sells a fairly narrow range of goods with a number of branches in different towns is a','supermarket','mail-order shop','mobile shop','multiple shop','','','a','','wassce','2000',46,'Admin','2016-11-14 07:16:10','2020-05-28 21:15:40'),(500,'A consignment note is used when','goods are wrapped and labeled for easy identification','goods are dispatched to agents through transporters','damaged goods are being returned','there is over-invoicing','','','b','','wassce','2000',44,'Admin','2016-11-14 07:16:10','2020-05-28 21:17:11'),(501,'Which of the following is not contained in an advice note?','Type of goods','Price of goods','Date of dispatch','Means of dispatch','','','d','','wassce','2000',44,'Admin','2016-11-14 07:16:10','2020-06-26 10:59:28'),(502,'A refund of the duty collected on goods imported and processed for re- export is','excise duty','excise draw back','preferential duty','value added tax','','','b','','wassce','2000',45,'Admin','2016-11-14 07:16:11','2020-05-28 21:16:15'),(503,'When a country’s total visible and invisible exports are more than its visible and invisible imports, it has','favourable balance of payments','favourable balance of trade','unfavourable balance of trade','unfavourable balance of payments','','','a','','wassce','2000',45,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:29'),(504,'Which of the following is not a function of a retailer?','Supplying goods to final consumers','Bulk breaking','Giving information to the wholesaler','Branding and packaging of goods','','','d','','wassce','2000',38,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:09'),(505,'A merchant who wishes to order goods from a foreign country sends','an invoice','an indent','an advice note','a credit note','','','b','','wassce','2000',42,'Admin','2016-11-14 07:16:11','2020-06-17 12:38:35'),(506,'The production of goods in anticipation of demand is \tpossible because of the existence of','Packaging','advertising','warehousing','branding','','','c','','wassce','2000',48,'Admin','2016-11-14 07:16:11','2020-05-28 21:15:48'),(507,'Which of the following is sent in reply to a letter of enquiry?','Quotation','Order','Consumer invoice','Advice note','','','b','','wassce','2000',50,'Admin','2016-11-14 07:16:11','2020-05-28 21:16:09'),(508,'The abbreviated phrase E & OE is usually printed on','an invoice','a cheque','a delivery note','a debit note','','','a','','wassce','2000',41,'Admin','2016-11-14 07:16:11','2020-06-21 12:49:02'),(509,'Which of the following refers to a price reduction based on the size of order?','Cash discount','Trade discount','Seasonal discount','Cash on delivery','','','b','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-06-04 05:19:44'),(510,'Which of the following is not a means of payment in foreign trade?','Telegraphic money order','Specially crossed cheque','Letters of credit','Debit transfer','','','b','','wassce','2000',50,'Admin','2016-11-14 07:16:11','2020-05-28 21:16:35'),(511,'A bill of exchange on maturity is allowed','seven days of grace','five days of grace','four days of grace','three days of grace','','','a','','wassce','2000',49,'Admin','2016-11-14 07:16:11','2020-05-28 21:15:32'),(512,'Which of the following is not a financial institution?','Commodity Board','Insurance company','Clearing house','Stock exchange','','','a','','wassce','2000',45,'Admin','2016-11-14 07:16:11','2020-05-28 21:16:50'),(513,'When a customer writes a cheque in his own name and withdraws cash with it from his account he is both the','drawee and the payee','drawer and the payer','drawee and the drawer','drawer and the payee','','','c','','wassce','2000',41,'Admin','2016-11-14 07:16:11','2020-06-21 12:48:47'),(514,'Which of the following is a means of payment through the post office?','Standing Order','Promissory note','Money order','Telegraphic transfer','','','c','','wassce','2000',41,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:14'),(515,'Which of the following encourages people to save towards owning a house?','Merchant bank','Development bank','Mortgage bank','Commercial bank','','','c','','wassce','2000',32,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:40'),(516,'Which of the following services is not rendered by commercial banks?','Business advice','Currency notes issue','Accepting deposits','Credit transfer','','','b','','wassce','2000',46,'Admin','2016-11-14 07:16:11','2020-06-01 15:59:44'),(517,'A retirement insurance policy which enables the assured to receive income for a specific period is','annuity','endowment','whole life','fidelity guarantee','','','a','','wassce','2000',46,'Admin','2016-11-14 07:16:11','2020-06-21 12:52:27'),(518,'A house worth  N50.000 was insured against fire for  N30,000. Fire destroyed and caused damages worth N20.000 on the house. Under which insurance principle will the owner be entitled to a compensation of  N20,000?','Contribution','Subrogation','Indemnity','Uberrimaefidei','','','c','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-05-28 21:15:20'),(519,'When an insurance company indemnifies the insured and takes over his rights, this is known as','abandonment','subrogation','proximate cause','contribution','','','b','','wassce','2000',43,'Admin','2016-11-14 07:16:11','2020-06-19 01:07:50'),(520,'In Public Limited Liability Companies, equities are referred to as','preference shares','authorized capital','ordinary shares','called-up capital','','','c','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-06-07 15:56:17'),(521,'The method of sending messages by the teleprinter is','telephone','cablegram','telex','railex','','','c','','wassce','2000',44,'Admin','2016-11-14 07:16:11','2020-06-21 12:49:26'),(522,'The information on terms of carriage of mails is found in','business journal','post office guide','trade directory','service manual','','','b','','wassce','2000',41,'Admin','2016-11-14 07:16:11','2020-06-02 10:35:32'),(523,'Rail transport is less flexible than road transport because','rail lines run between specific terminals','train is slow over long distances','only bulky goods are carried by rail','road transport is suitable for short distances','','','a','','wassce','2000',42,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:07'),(524,'Which of the following is used for moving only goods from one seaport to another?','Ocean liner','Cargo liner','Ferry','Coaster','','','b','','wassce','2000',47,'Admin','2016-11-14 07:16:11','2020-06-21 12:47:42'),(525,'The marketing activity that stimulates immediate demand for a product is','sales promotion','publicity','consumer relations','personal selling','','','a','','wassce','2000',49,'Admin','2016-11-14 07:16:11','2020-06-21 12:51:26'),(526,'Which of these is not a basic marketing function?','Exchange','Production','Facilitation','Information','','','b','','wassce','2000',55,'Admin','2016-11-14 07:16:11','2020-06-07 13:28:50'),(527,'Branding is a tool for','competitive advertising','consumerism','marketing research','pricing policy','','','a','','wassce','2000',35,'Admin','2016-11-14 07:16:12','2020-05-28 21:16:22'),(528,'Firms wishing to defend established products as well as launch new ones will make use of','franchising','product differentiation','branding','advertising','','','d','','wassce','2000',37,'Admin','2016-11-14 07:16:12','2020-05-28 21:17:31'),(529,'Which of the following is a method of sales promotion?','Radio giggles','Poster display','Trade fair','Television broadcast','','','c','','wassce','2000',47,'Admin','2016-11-14 07:16:12','2020-05-28 21:16:50'),(530,'The deliberate and sustained efforts to maintain a good image of a company is known as','personal relations','public relations','professional relations','industrial relations','','','b','','wassce','2000',39,'Admin','2016-11-14 07:16:12','2020-05-28 21:16:45'),(531,'A contract of sale where ownership passes to the buyer on the payment of the first instalment is known as','hire purchase','lease','cash on delivery','credit sale','','','d','','wassce','2000',39,'Admin','2016-11-14 07:16:12','2020-06-06 18:41:37'),(532,'Which of the following agents guarantees payment transactions entered into on behalf of the principal?','Auctioneer','Factor','Broker','Del credere','','','d','','wassce','2000',54,'Admin','2016-11-14 07:16:12','2020-06-08 12:12:26'),(533,'Which of the following is not a means of consumer protection?','Price control','Sale of Goods Act','Trade Description Act','Tax laws','','','d','','wassce','2000',49,'Admin','2016-11-14 07:16:12','2020-06-07 15:49:24'),(534,'Which of the following is a basic requirement for a valid contract?','Representation','Consideration','Interest','Performance','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:12','2020-06-28 21:35:02'),(535,'A counter-offer in a contract is regarded as','an acceptance','an invitation to treat','a rejection','a consideration','','','c','','wassce','2000',39,'Admin','2016-11-14 07:16:12','2020-06-21 12:46:39'),(536,'Which of the following is not a right of the consumer?','Safety','Choice','Discount','Value','','','c','','wassce','2000',51,'Admin','2016-11-14 07:16:12','2020-05-28 21:15:13'),(537,'Which of the following is an agreement to transport goods but not a document of title?','Air-waybill','Bill of lading','Charter party','Freight note','','','c','','wassce','2000',50,'Admin','2016-11-14 07:16:12','2020-06-03 20:07:55'),(538,'In which of the following classes of occupation would you place a doctor?','Extractive','Commercial','Direct services','Indirect services','','','c','','wassce','2000',49,'Admin','2016-11-14 07:16:12','2020-06-21 12:49:48'),(539,'Commercialization is good for the Nigerian economy because it','creates room for competition','increases the cost of living','leads to the reduction of workforce','leads to uneven distribution of wealth','','','a','','neco','2013',63,'Admin','2016-11-14 08:18:40','2020-06-09 05:44:47'),(540,'Obtaining feedback on the quality and performance of competing products of different manufacturers, explains the retailer’s function of','after sales service','granting to credits to consumers','market research','stocking variety of goods','','','d','','neco','2013',50,'Admin','2016-11-14 08:18:41','2020-05-28 21:15:17'),(541,'The direct contact of a seller with potential buyers with a view to making sales is called','advertising','personal selling','public relations','publicity','','','b','','neco','2013',60,'Admin','2016-11-14 08:18:41','2020-06-08 12:12:26'),(542,'The process of dividing a total market into groups made up of people with similar need refers to marketing','function','mix','research','segmentation','','','d','','neco','2013',58,'Admin','2016-11-14 08:18:41','2020-05-28 21:14:46'),(543,'The final link in the chain of distribution is the','agent','consumer','manufacturer','retailer','','','b','','neco','2013',53,'Admin','2016-11-14 08:18:41','2020-05-28 21:17:21'),(544,'Platinum Habib Bank Plc. is an example of __ bank.','central','commercial','development','merchant','','','b','','neco','2013',48,'Admin','2016-11-14 08:18:41','2020-06-03 15:33:33'),(545,'Which of the following is NOT a means of payment through the post office?','Giro system','Money order','Postage stamp','Standing order','','','d','','neco','2013',70,'Admin','2016-11-14 08:18:41','2020-06-26 10:59:32'),(546,'Branch managers who virtually have no control on goods they sell is a disadvantage of __  store.','chain','departmental','mail order','super','','','a','','neco','2013',56,'Admin','2016-11-14 08:18:41','2020-06-07 15:49:24'),(547,'Instrument used in place of legal tender but not freely acceptable are called ___ money.','bank','commodity','gold - backed','representative','','','d','','neco','2013',48,'Admin','2016-11-14 08:18:41','2020-05-28 21:15:43'),(548,'The assurance policy in which the assured pays lump sum of money which matures at his retirement is ___assurance.','annuity','endowment','life','term','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:41','2020-06-21 12:50:18'),(549,'By making it possible for wholesalers to keep surplus stock until demand improves, the warehouse performs the function of','employment creation','price stabilization','production planning','storage','','','d','','neco','2013',62,'Admin','2016-11-14 08:18:41','2020-06-21 12:52:44'),(550,'Calculate the net profit.','30,000','33,000','38,000','40,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','b','','neco','2013',63,'Admin','2016-11-14 08:18:41','2020-06-06 18:41:37'),(551,'Calculate the total liabilities.','40,000','50,000','55,000','57,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','c','','neco','2013',62,'Admin','2016-11-14 08:18:41','2020-06-07 21:43:49'),(552,'Calculate the current assets.','15,000','20,000','30,000','45,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','a','','neco','2013',51,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:17'),(553,'Ensuring free movement of factors of production among member states through the removal of obstacles is one of \t\tthe objectives of','ECOWAS','LCBC','NBC','OAU','','','a','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-06-06 19:57:45'),(554,'Which of the following documents contains the name of the company, registration number and signature of the registrar?','Articles of association','Certificate of incorporation','Certificate of trading','Memorandum of association','','','d','','neco','2013',58,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:34'),(555,'The method of shopping on the internet by using the computer to browse the website of the manufacturer is known as','e-banking','e-commerce','e-exchange','e-trade','','','d','','neco','2013',51,'Admin','2016-11-14 08:18:42','2020-06-02 22:55:42'),(556,'The development of a container and a graphic design for a product is known as','advertising','branding','packaging','trade mark','','','c','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-06-21 12:52:48'),(557,'When an agent is appointed verbally or in writing by the principal to act on his behalf, the appointment is said to be by','estoppels','express','implication','ratification','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-05-28 21:16:55'),(558,'The features of an entrepreneur consist of the following, EXCEPT','coordinating factors of production','earning wages as income','efficiency in management','maintaining good communication','','','b','','neco','2013',53,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:40'),(559,'Another name for trade discount is _________ discount,','cash','functional','quality','quantity','','','d','','neco','2013',44,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:29'),(560,'Those engaged in extraction, manufacturing, and construction occupations are called ___ workers.','commercial','direct','indirect','industrial','','','d','','neco','2013',61,'Admin','2016-11-14 08:18:42','2020-05-28 21:16:41'),(561,'Which of these is NOT a source of capital to First Bank of Nigeria Plc?','Equipment leasing','Lean from friends','Profit plough back','Sales of shares','','','b','','neco','2013',60,'Admin','2016-11-14 08:18:42','2020-06-21 12:52:10'),(562,'In trading, profit and loss account, carriage outward is','added to purchases','deducted from purchases','deducted from sales','treated as expenses','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-06-21 12:51:54'),(563,'The pricing policy adopted by firms selling to wealthy people is','market penetration','market skimming','pricing above the market','pricing with the market','','','b','','neco','2013',51,'Admin','2016-11-14 08:18:42','2020-06-21 12:52:40'),(564,'Which of the following is NOT a function of courier companies?','Ensuring international transmission of message','Providing door to door delivery services','Providing efficient means of mail delivery','Undertaking the shipment of export and import','','','d','','neco','2013',46,'Admin','2016-11-14 08:18:42','2020-06-21 12:48:38'),(565,'“MTN, Your Best Connection” is an example of ___ advertisement.','competitive','direct','informative','mass','','','a','','neco','2013',62,'Admin','2016-11-14 08:18:42','2020-05-28 21:16:14'),(566,'The assertion ‘consumers are always right’ refers to marketing','board.','concept','function','mix','','','b','','neco','2013',51,'Admin','2016-11-14 08:18:42','2020-05-28 21:16:18'),(567,'Which of the following is charged by the NIPOST on postal order?','Dividend','Interest','Poundage','Premium','','','c','','neco','2013',56,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:30'),(568,'The following are characteristics of debenture holders, EXCEPT','being one of the sources of long term loan to public companies.','being paid interest','they are creditors of the company','they are entitled to profits','','','d','','neco','2013',48,'Admin','2016-11-14 08:18:42','2020-05-28 21:16:31'),(569,'The money paid to savings account holders by banks after a period of transaction is called','dividend','gain','interest','premium','','','c','','neco','2013',49,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:29'),(570,'Double coincidence of wants is a disadvantage of','business','buying and selling','credit sales','trade by barter','','','d','','neco','2013',61,'Admin','2016-11-14 08:18:42','2020-05-30 18:05:44'),(571,'Price quotation which excludes all delivery charges is called','cost and freight','ex - ship','ex - warehouse','free - on - board','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:42','2020-06-01 21:20:10'),(572,'Which of the following does NOT appear on a cheque on presentation for payment?','Amount in words and figures','Date of withdrawal','Name of the cashier','Name of the payee','','','c','','neco','2013',41,'Admin','2016-11-14 08:18:42','2020-05-28 21:14:25'),(573,'The aspect of production which provides goods and services for immediate consumption is called ___ production.','direct','indirect','primary','secondary','','','a','','neco','2013',53,'Admin','2016-11-14 08:18:42','2020-06-17 12:38:34'),(574,'The actual gain made by a business after all expenses has been deducted is called','gross profit','margin','mark-up','net profit','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-06-19 01:06:41'),(575,'The following documents are used between buyers and sellers, EXCEPT','catalogue','dispatch rate','invoice','license','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:05'),(576,'The total assets of a business less current liabilities refers to _____ capital.','authorized','called up','employed','owned','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-06-21 12:52:31'),(577,'The following are merits of industrial integration, EXCEPT','controlling output and price','eliminating waste','leading to monopoly','preventing over production','','','c','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-06-21 12:45:47'),(578,'The use of middlemen by manufacturers become necessary where the goods','are of low rate of turnover','are susceptible to faking or adulteration','involved are branded','produced are in large quantities','','','d','','neco','2013',60,'Admin','2016-11-14 08:18:42','2020-06-18 06:47:29'),(579,'The oldest form of business enterprise in Nigeria is','partnership','private liability company','public enterprise','sole proprietorship','','','d','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:13'),(580,'Social responsibilities of a business to the consumers \tinclude the following, EXCEPT','educating the customers','ensuring truth in advertisement','granting credit facilities','providing of quality product','','','c','','neco','2013',49,'Admin','2016-11-14 08:18:42','2020-06-02 16:26:09'),(581,'Products that have stayed long on themselves in a shop can be sold easily through','branding','discounting','doorstep selling','franchising','','','b','','neco','2013',49,'Admin','2016-11-14 08:18:42','2020-06-21 12:52:22'),(582,'The durable capital of an enterprise which is used continuously for further production is called ___ capital.','called up','circulating','fixed','liquid','','','c','','neco','2013',50,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:38'),(583,'A manufacturer is said to have performed all the necessary marketing functions in the distribution channel when the goods move from','manufacturer ? consumer','manufacturer ? retailer ? consumer','manufacturer ? wholesaler ? retailer ? consumer','manufacturer ? wholesaler ?jobber ? retailer ?consumer','','','c','','neco','2013',61,'Admin','2016-11-14 08:18:43','2020-06-28 21:35:02'),(584,'Which of the following is NOT a reason for government’s ownership of Nigerian Ports Authority (NPA)?','Avoiding wasteful competition and duplication','Generating revenue','High capital requirement','Making profit','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:43','2020-06-02 19:24:00'),(585,'The first step for a businessman who wishes to engage in international trade is to','ask the exporter to move the goods to the shipping company for delivery','engage the services of clearing agent to clear the goods on his behalf','establish contact with the foreign trading partner','fill an application for import form with a bank','','','c','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:12'),(586,'A law made by a country to prohibit importation of certain goods into the country is called _____ laws.','export','import','protectionist','tariff','','','c','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:37'),(587,'Which of the following towns was NOT an initial commercial centre in Nigeria?','Kano','Lagos','Maiduguri','Yola','','','d','','neco','2013',56,'Admin','2016-11-14 08:18:43','2020-05-28 21:13:45'),(588,'Management function which arranges people, time, money and equipment, to achieve the objectives of an organization is referred to as','directing','motivating','organizing','planning','','','c','','neco','2013',62,'Admin','2016-11-14 08:18:43','2020-06-17 21:05:20'),(589,'Bridging the gap between producers and consumers is the sole purpose of','distribution','hawking','retailing','warehousing','','','c','','neco','2013',56,'Admin','2016-11-14 08:18:43','2020-06-21 12:45:39'),(590,'Which of the following is NOT a characteristic of labour? It is','fixed in supply','geographically mobile','man made','perishable in nature','','','a','','neco','2013',57,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:02'),(591,'One of the problems associated with home trade is the','absence of currency exchange','better knowledge of the markets','inadequacy of storage facilities','proximity of buyers and sellers','','','c','','neco','2013',55,'Admin','2016-11-14 08:18:43','2020-06-21 12:48:32'),(592,'An instruction from a current account holder requesting to pay a named person or organization a. specified amount is \t\tcalled','bankers order','certified cheque','internal transfer','money order','','','b','','neco','2013',53,'Admin','2016-11-14 08:18:43','2020-05-28 21:14:19'),(593,'Which of the following is NOT a commercial occupation?','Advertising','Agriculture','Communication','Insurance','','','b','','neco','2013',62,'Admin','2016-11-14 08:18:43','2020-06-21 12:46:21'),(594,'In the marketing mix, place refers to','channel of distribution','location of the factory','the market place','where the product is located','','','d','','neco','2013',79,'Admin','2016-11-14 08:18:43','2020-06-17 12:38:35'),(595,'Which of the following is NOT an attribute of an effective business manager?','Altruism','Empathy','Objectivity','Subjectivity','','','d','','neco','2013',60,'Admin','2016-11-14 08:18:43','2020-06-21 12:45:46'),(596,'The ability of money to be divided into smaller units for easy exchange of goods and services explains','divisibility','durability','recognisability','stability','','','a','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-06-21 12:51:46'),(597,'Which of the following is NOT a role of trade association?','Eliminating competition among members','Ensuring uniformity in mode of operation','Establishing link between government and associations','Promoting members interest','','','a','','neco','2013',63,'Admin','2016-11-14 08:18:43','2020-06-21 12:49:32'),(598,'The transfer of enterprises from private to state ownership for economic or social reasons is referred to as','commercialization','indigenization','industrialization','naturalization','','','d','','neco','2013',60,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:21'),(599,'The major divisions of Commerce are','import, export and transport','trade, communication and warehousing','trade and auxiliaries to trade','exchange, consumption and production','','','c','','wassce','1990',51,'Admin','2016-11-14 20:22:14','2020-06-05 16:26:04'),(600,'Which of the following statements is not true?','Commercial services are the life blood of a country economic system','There cannot occur commercial services until goods have been produced.','Without commercial services most goods and services will not be produced','There is no stage of production that does not employ commercial services.','','','b','','wassce','1990',43,'Admin','2016-11-14 20:22:15','2020-06-02 16:26:09'),(601,'The three main divisions of production include industrial','commercial and banking services','commercial and services','transportation and services','manufacturing and services','','','b','','wassce','1990',38,'Admin','2016-11-14 20:22:15','2020-06-05 21:55:09'),(602,'Which of the following is one of the functions of commerce?','Manufacturing','Growing of tomatoes','Storage of goods','Construction of Roads','','','c','','wassce','1990',45,'Admin','2016-11-14 20:22:15','2020-06-21 12:47:17'),(603,'Which of the following does not belong to the extractive industry?','Farming','Insuring','Mining','Drilling','','','b','','wassce','1990',49,'Admin','2016-11-14 20:22:15','2020-06-21 12:45:06'),(604,'The average stock is','N=2000','N=3000','N=5000','N=6000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','c','','wassce','1990',50,'Admin','2016-11-14 20:22:15','2020-06-21 12:47:54'),(605,'The cost of goods sold is','N=6000','N=10000','N=42000','N=16000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','a','','wassce','1990',47,'Admin','2016-11-14 20:22:15','2020-06-20 18:35:56'),(606,'The oldest and commonest form of business in Nigeria is','partnership','the co-operative society','sole proprietorship','joint stock venture','','','c','','wassce','1990',45,'Admin','2016-11-14 20:22:15','2020-05-28 21:16:59'),(607,'If a retailer Mr. Aigbojie buys goods manufactured by Adefila Limited from wholesaler Mrs. Jumai, who will prepare the delivery note?','Mr. Aigbojie','Adefila Limited','Mr. Jumai','Mr. Aigbojie and Adefila Limited','','','c','','wassce','1990',43,'Admin','2016-11-14 20:22:15','2020-05-28 21:16:54'),(608,'Which of the following is not a factor of production?','Capital','land','Labour','Staffing','','','d','','wassce','1990',57,'Admin','2016-11-14 20:22:15','2020-05-28 21:16:58'),(609,'In which class of occupation would you place a taxi-driver?','Extractive','Indirect services','Personal services','Commercial services','','','d','','wassce','1990',46,'Admin','2016-11-14 20:22:15','2020-06-21 12:52:34'),(610,'The purpose of issuing a credit note is to','correct errors of overcharging','correct errors of undercharging','write off  bad debts','encourage immediate payment','','','a','','wassce','1990',34,'Admin','2016-11-14 20:22:16','2020-05-28 21:14:45'),(611,'The exchange of goods for other goods in home trade is known as','entrepot trade','home trade','barter trade','foreign trade','','','c','','wassce','1990',40,'Admin','2016-11-14 20:22:16','2020-06-21 12:48:52'),(612,'Which of the following advertising media combines the advantages of sound and motion?','Radio','Neon signs','Press','Television','','','d','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-06-11 00:27:36'),(613,'Which of the following is a form of sales promotion?','Promotion through radio','Advertising by television','Distributing printed sales literature','Offering free samples to customers','','','d','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-06-21 12:49:08'),(614,'Efforts geared towards establishing and maintaining good image for a company is termed','human relations','professional relations','public relations','trade relations','','','c','','wassce','1990',42,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:30'),(615,'Which of the following is sent as a reply to an inquiry?','Tender','Estimate','Statement','Quotation','','','d','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-06-21 12:48:18'),(616,'Which of the following statements best describes net profit? The excess of','total revenue over total expenditure','total capital income over expenditure','sales over purchases','total capital formation over capital consumption','','','a','','wassce','1990',35,'Admin','2016-11-14 20:22:16','2020-06-09 05:44:47'),(617,'A business is in existence primarily to','make profit','provide goods and services','provide employment','compete with others in business','','','a','','wassce','1990',49,'Admin','2016-11-14 20:22:16','2020-06-21 12:46:22'),(618,'A number of shops under one roof is the feature of a','supermarket','chain store','department store','mail order business','','','c','','wassce','1990',45,'Admin','2016-11-14 20:22:16','2020-05-28 21:16:49'),(619,'An agreement between two parties which will give rise to enforceable rights and obligation is known as','a warrant','a contract','a consideration','an offer','','','b','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-05-28 21:15:01'),(620,'Auctions and Tenders become binding when they are','accepted','offered','received','advertised','','','a','','wassce','1990',44,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:44'),(621,'The organized efforts of consumers to protect themselves against the unfair practices of businessmen is called','strike','consumerism','amalgamation','propaganda','','','d','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-06-28 21:35:02'),(622,'Which of the following is the most suitable means of \ttransporting bulky goods from Lagos to Kaduna? By','Train','Airplane','Ship','Lorry','','','a','','wassce','1990',43,'Admin','2016-11-14 20:22:16','2020-05-28 21:14:42'),(623,'Which of the following is the quickest and accurate means of communication?','Telegram','Express mail','Courier services','Telex','','','d','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:37'),(624,'Which of the following is the safest means of sending a postal order from Lagos to a friend in Jos?','Special delivery','Recorded delivery','Registered letter','First class mail','','','b','','wassce','1990',39,'Admin','2016-11-14 20:22:16','2020-06-21 12:52:46'),(625,'One of the objectives of the indigenization programme of the Federal Government of Nigeria is to','encourage the use of local raw materials','expel all foreigners from Nigeria','make Nigerian businessmen very rich','maximize local retention of profits','','','d','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-06-08 11:23:41'),(626,'The law which stipulates that labels should give an accurate account of a product is the','price control act','consumer credit act','trade description act','hire purchase act','','','c','','wassce','1990',33,'Admin','2016-11-14 20:22:16','2020-06-11 19:03:43'),(627,'Which of the following is not an essential of a contract?','Offer and acceptance','Intention to create legal relations','All contracts written out','Legality of object','','','c','','wassce','1990',42,'Admin','2016-11-14 20:22:16','2020-06-03 15:33:33'),(628,'One advantage of personal selling is','low cost','immediate feedback','the appeal to many people at a time','self service','','','b','','wassce','1990',49,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:26'),(629,'Charges paid by a ship for staying at a port beyond agreed sailing time is called','profit','interest','holding','demurrage','','','d','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-05-28 21:12:35'),(630,'Entrepot Trade refers to','importing for domestic consumption','importing for industrial use','importing for government concerns','importing for re-export','','','d','','wassce','1990',40,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:00'),(631,'Which of the following could account for a favourable balance of payment?','High capital repayments','high debt service repayment','higher imports than exports','Higher exports than imports','','','d','','wassce','1990',40,'Admin','2016-11-14 20:22:16','2020-06-09 05:44:47'),(632,'Which of the following is not part of the facilities provided by the Nigerian Ports Authority?','Dredging','Warehousing','Collection of customs duties','Loading and off-loading of cargoes','','','c','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-06-17 12:38:36'),(633,'The main purpose of branding is to','increase the quantity of goods demanded','differentiate goods from other similar goods made by other producers','increase the selling price of goods','enhance turnover of goods','','','b','','wassce','1990',40,'Admin','2016-11-14 20:22:16','2020-05-28 21:14:08'),(634,'An individual who makes the final use of goods and services provided by a firm is the','manufacturer','wholesaler','consumer','retailer','','','c','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-06-05 21:55:09'),(635,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','cartel','trust','holding company','consortium','','','a','','wassce','1990',41,'Admin','2016-11-14 20:22:16','2020-05-30 18:05:44'),(636,'When a business is insolvent it may result in','incorporation','recuperation','liquidation','restoration','','','c','','wassce','1990',35,'Admin','2016-11-14 20:22:16','2020-06-02 20:36:27'),(637,'In insurance the term Uberrimaefidei stands for','utmost good faith','subrogation','insurable interest','indemnity against loss','','','a','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-05-28 21:13:51'),(638,'Fidelity guarantee is an insurance cover against loss arising from','trade debts','personal accidents','dishonest staff','fire disaster','','','c','','wassce','1990',45,'Admin','2016-11-14 20:22:16','2020-06-07 15:26:41'),(639,'Which of the following is a type of marine insurance?','Endowment','Freight','Accident','Fidelity','','','b','','wassce','1990',32,'Admin','2016-11-14 20:22:17','2020-06-21 12:51:16'),(640,'The word Ltd written after the name of a company means that','the individual member’s capital is limited','the total sum of the company’s capital is limited','members are liable to the extent of their holding','company’s location is limited','','','c','','wassce','1990',43,'Admin','2016-11-14 20:22:17','2020-05-28 21:16:04'),(641,'Which of the following is a public corporation? The','Nigeria Breweries Limited','Nigerian Ports Authority','Lagos Chamber of Commerce','Nigerian Bottling Company','','','b','','wassce','1990',47,'Admin','2016-11-14 20:22:17','2020-06-05 23:11:52'),(642,'Which of the following is not required in a Memorandum of Association? The','name of the company','location of the company','names of the Board of Directors','limitation of member’s liability','','','c','','wassce','1990',44,'Admin','2016-11-14 20:22:17','2020-06-17 12:38:35'),(643,'The amount paid by the insurance company to the insured upon giving up his policy is called','Surrender value','cash bonus','assured sum','dividend','','','a','','wassce','1990',38,'Admin','2016-11-14 20:22:17','2020-06-21 12:49:52'),(644,'The amount paid by the assured to the insurer is called','interest','premium','dividend','indemnity','','','b','','wassce','1990',54,'Admin','2016-11-14 20:22:17','2020-06-21 12:50:24'),(645,'With the exception of life assurance and personal accident insurance, contracts of insurance are contracts of','premium','indemnity','proximate cause','utmost good faith','','','b','','wassce','1990',44,'Admin','2016-11-14 20:22:17','2020-06-03 12:51:44'),(646,'An author’s exclusive right to published and unpublished works is known as','patent right','fundamental human right','copyright','authorship','','','c','','wassce','1990',42,'Admin','2016-11-14 20:22:17','2020-06-17 12:38:35'),(647,'The cost which is incurred as a result of failure to load or unload a ship at the ports within a specified period is referred to as','demurrage charges','premium charges','trade charges','excess charges','','','a','','utme','2016',49,'Admin','2016-11-14 20:59:47','2020-06-15 00:54:36'),(648,'The process whereby a firm directs its marketing efforts towards a single market by the use of a particular marketing mix is referred to as','concentration segmentation','marketing concept','consumer orientation','market penetration','','','d','','utme','2016',53,'Admin','2016-11-14 20:59:49','2020-06-21 12:46:03'),(649,'The function of money that is mostly affected by inflation is','store of value','medium of exchange','measure of value','unit of account','','','a','','utme','2016',56,'Admin','2016-11-14 20:59:49','2020-06-21 12:52:04'),(650,'Ordinary warehouse is usually owned and used by','government','agents','retailers','wholesalers','','','d','','utme','2016',55,'Admin','2016-11-14 20:59:49','2020-06-06 17:47:17'),(651,'The winding up of a firm by a resolution of its shareholders is an example of','voluntary liquidation','bankruptcy','recession','involuntary liquidation.','','','a','','utme','2016',42,'Admin','2016-11-14 20:59:49','2020-05-28 21:14:53'),(652,'Which of the following is used for temporary storage of data on a computer?','RAM.','ROM.','floppy disk.','flash disk.','','','a','','utme','2016',53,'Admin','2016-11-14 20:59:49','2020-06-07 15:26:41'),(653,'An advantage of the Second-Tier Securities Market to an economy is in','creating avenues for investment','regulating competition amongst companies','granting financial assistance to consumers','increasing companies profit margins-.','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:49','2020-05-28 21:16:18'),(654,'The  lumbering of trees by a furniture company is an example of','primary production','secondary production','tertiary production','Indirect production','','','a','','utme','2016',47,'Admin','2016-11-14 20:59:49','2020-05-28 21:16:32'),(655,'Which of the following types of occupation involves services that can be referred to as auxiliaries’ trade?','Constructive occupation','Manufacturing occupation.','Industrial occupation.','Commercial occupation','','','d','','utme','2016',62,'Admin','2016-11-14 20:59:49','2020-05-28 21:16:19'),(656,'The transformation of cotton into clothing is an example of','secondary production','tertiary production','primary production','direct production','','','a','','utme','2016',43,'Admin','2016-11-14 20:59:50','2020-05-28 21:15:24'),(657,'A basic concept of advertising that reveals the essential message an advertiser wishes to communicate is referred to as the','medium','theme','target','reach','','','a','','utme','2016',49,'Admin','2016-11-14 20:59:50','2020-06-21 12:46:37'),(658,'The type of wholesaler that combines selling, delivery and collection in one operation is','specialist   wholesaler','rack jobber','drop shipment','truck. wholesaler','','','a','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-06-14 23:22:42'),(659,'Given: - [Index of export price] / [Index of import price]  x 100  The formula can be used to determine the','terms of payment','balance of payments','terms of trade','import tariffs.','','','c','','utme','2016',54,'Admin','2016-11-14 20:59:50','2020-05-28 21:17:37'),(660,'Commission on turnover is usually a benefit accruable to the','drawer','drawee','payer','payee','','','d','','utme','2016',49,'Admin','2016-11-14 20:59:50','2020-06-04 05:19:44'),(661,'Avast is an example of','a web browser','a search engine','an antivirus','a spread sheet','','','c','','utme','2016',52,'Admin','2016-11-14 20:59:50','2020-06-02 21:34:36'),(662,'The component of balance of payments which shows how the balance of both current and capital accounts are settled is \t\t\tknown as','current account','monetary movement account','capital account.','social welfare account','','','b','','utme','2016',57,'Admin','2016-11-14 20:59:50','2020-05-28 21:13:53'),(663,'The act of interpreting ideas within an organization is','motivating','organizing','planning .','communicating','','','d','','utme','2016',44,'Admin','2016-11-14 20:59:50','2020-05-28 21:17:22'),(664,'One of the duties of the employer to his employee is to','delegate his duties to other staff','charge the employee on the use of equipment','serve faithfully and honestly','provide job security.','','','d','','utme','2016',53,'Admin','2016-11-14 20:59:50','2020-06-21 12:47:26'),(665,'The buying and selling of goods and services is referred, to as','trading','marketing','insurance','advertising','','','a','','utme','2016',54,'Admin','2016-11-14 20:59:50','2020-06-05 21:55:09'),(666,'A document that serves as an instrument for preferential tariff is referred to as','an indent','a certificate of origin','a consular invoice','an advice note.','','','b','','utme','2016',53,'Admin','2016-11-14 20:59:50','2020-06-07 15:56:17'),(667,'Funds used for paying wages, salaries and payments for raw materials are categorized under','liquid capital','circulating capital','fixed capital','nominal capital.','','','b','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-05-30 18:05:44'),(668,'A formal letter to a dealer to enquire details about certain items for sale is referred to as','an inquiry','an invoice','an order','a quotation','','','a','','utme','2016',57,'Admin','2016-11-14 20:59:50','2020-06-21 12:46:42'),(669,'The pricing policy that seeks ,to set .prices relatively high in order to attract the wealthy segment of the market is','target return pricing','market skimming','variable pricing.','market penetration','','','b','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-06-07 13:28:50'),(670,'In the transportation industry, dead freight is used to describe the','cost paid for an empty space left in the ship','charge for each day a performance was delayed','persons that hire a ship for a specific purpose.','cost of shipping a particular cargo for a specific voyage','','','a','','utme','2016',45,'Admin','2016-11-14 20:59:50','2020-06-05 23:11:52'),(671,'When expenses on trading are deducted, the result is the','rate of turn over','net profit','gross profit','cost of goods sold.','','','b','','utme','2016',74,'Admin','2016-11-14 20:59:50','2020-06-17 12:38:34'),(672,'A supplier of flour who intends to sign a contract with a baker \tthrough post can establish a binding agreement only','after the offeror has made an offer.','when the offeror’s letter has reached the offeree.','when the. Offeree’s letter has been posted.','after the offeree’s letter has been received by the offeror.','','','d','','utme','2016',44,'Admin','2016-11-14 20:59:50','2020-06-02 17:01:47'),(673,'Which of the following is a modern trend in retailing?','Kiosk','Mobile shop','Vending machine.','Tied shop','','','c','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-05-28 21:16:46'),(674,'Which of the following is a traditional medium of communication used to mark festivals?','Palm frond.','Metal gong.','Talking drum.','Gun blast.','','','c','','utme','2016',54,'Admin','2016-11-14 20:59:50','2020-06-21 12:52:08'),(675,'One of the functions of the retailer is','granting credit facilities to close relatives','provision of after-sales services','branding and packaging of goods.','warehousing of goods.','','','b','','utme','2016',53,'Admin','2016-11-14 20:59:50','2020-06-21 12:48:40'),(676,'One of the factors of determining the volume of production is','availability of forex','availability of storage facilities.','the location of the business.','the number of skilled manpower.','','','b','','utme','2016',47,'Admin','2016-11-14 20:59:50','2020-05-28 21:17:30'),(677,'Which of the following is the best method for computing working capital?','Total assets less current liabilities.','Current liabilities less current assets.','Fixed liabilities less current assets.','Current assets less current liabilities.','','','a','','utme','2016',55,'Admin','2016-11-14 20:59:50','2020-06-17 12:38:35'),(678,'The minimum lending rate of a bank is a component of its','current assets','debit balance.','credit balance.','fixed assets.','','','a','','utme','2016',49,'Admin','2016-11-14 20:59:51','2020-05-28 21:15:29'),(679,'One of the functions of the Nigerian Ports Authority is that it','gives preferential treatment to Nigerian investors','provides credit facilities to importers.','encourages the growth of infant industries.','provides warehousing facilities at the docks.','','','d','','utme','2016',54,'Admin','2016-11-14 20:59:51','2020-05-28 21:15:22'),(680,'An ancillary to trade which promotes socio-cultural development all over the world is','transportation','communication','tourism.','insurance.','','','c','','utme','2016',61,'Admin','2016-11-14 20:59:51','2020-06-06 17:47:17'),(681,'An association that acts as a watchdog between  entrepreneurs and government to protect trade from any unfavourable laws is said','cartel','syndicate','Chamber of Commerce','Nigeria Bar Association.','','','c','','utme','2016',52,'Admin','2016-11-14 20:59:51','2020-06-21 12:51:58'),(682,'Labour as an input in production can be motivated by','training','profit.','remuneration.','promotion','','','c','','utme','2016',52,'Admin','2016-11-14 20:59:51','2020-06-21 12:50:41'),(683,'Discharging certain duties by an organization to the public to gain high patronage is a concern of financial responsibility','economic responsibility.','legal responsibility.','financial responsibility.','social responsibility.','','','d','','utme','2016',58,'Admin','2016-11-14 20:59:51','2020-06-09 05:44:47'),(684,'Complying with the rules relating to the conduct of business activities in a country is an aspect of','cultural environment.','demographic environment.','legal environment','politician environment','','','c','','utme','2016',54,'Admin','2016-11-14 20:59:51','2020-06-20 18:34:20'),(685,'Which of the following is NOT backed by gold but by government securities?','Fiduciary note.','Fiat money.','Token money.','Commodity money.','','','a','','utme','2016',47,'Admin','2016-11-14 20:59:51','2020-05-28 21:17:27'),(686,'Which of the following is a legal tender?','Cheque.','Traveller’scheque.','Bank note','Goldsmith receipt.','','','c','','utme','2016',47,'Admin','2016-11-14 20:59:51','2020-05-28 21:14:48'),(687,'Where a manufacturer collects money from wholesalers in exchange for goods produced is referred to as','charge account.','trading checks.','trade credit.','I owe you.','','','c','','utme','2016',47,'Admin','2016-11-14 20:59:51','2020-06-21 12:53:02'),(688,'Quantity discount is offered mainly to persuade the buyer to','defer payment.','make prompt purchases.','make advance payment.','purchase more','','','b','','utme','2016',68,'Admin','2016-11-14 20:59:51','2020-05-28 21:17:14'),(689,'The placement of workers based on their qualifications can be categorized under','public sector','skilled labour','private sector.','unskilled labour','','','b','','utme','2016',44,'Admin','2016-11-14 20:59:51','2020-05-28 21:17:44'),(690,'A group of computers that exchange data is referred to as','an information bank.','a network.','a database.','an intranet site.','','','b','','utme','2016',42,'Admin','2016-11-14 20:59:51','2020-06-05 21:55:09'),(691,'The form of credit sales common to low income groups is','hire purchase','club trading','book-me-down.','credit trading.','','','a','','utme','2016',54,'Admin','2016-11-14 20:59:51','2020-06-13 21:50:18'),(692,'Petrol voucher is an example of a','bank draft.','legal tender.','token money','partial money.','','','d','','utme','2016',43,'Admin','2016-11-14 20:59:51','2020-06-21 12:49:40'),(693,'One of the major reasons for merger is to','reduce the number of unskilled manpower','increase the number of skilled manpower.','prevent liquidation.','liberalize the market.','','','c','','utme','2016',52,'Admin','2016-11-14 20:59:51','2020-06-07 21:59:23'),(694,'A major function of commerce is to','facilitate human satisfaction through exchange','eliminate trade barriers','provide raw materials for manufacturers','influence government policies','','','a','','utme','2016',49,'Admin','2016-11-14 20:59:51','2020-06-06 00:46:01'),(695,'The major factors that facilitate merchandising are','communication, advertising and banking','trading, warehousing and production','management, insurance and advertising','banking, insurance and transportation.','','','d','','utme','2000',42,'Admin','2016-11-14 21:29:41','2020-05-28 21:17:17'),(696,'Production involves','making goods available where and when needed','changing the form of goods, moving and making them available as needed','the manufacturing of goods and provision of services','the assembling of all necessary parts to produce a finished product.','','','b','','utme','2000',43,'Admin','2016-11-14 21:29:44','2020-05-28 21:16:18'),(697,'The application of division of labour should generally bring about','increase in the quantity of goods and services','increase in the variety of goods and services','cheapness of goods and services','cost efficiency in the production of goods and services.','','','a','','utme','2000',40,'Admin','2016-11-14 21:29:44','2020-06-15 00:24:01'),(698,'The term Plc implies that the shares are available','to the public at the company','privately on the stock exchange','publicly on the stock exchange','publicly in commercial banks.','','','c','','utme','2000',48,'Admin','2016-11-14 21:29:45','2020-06-02 22:53:54'),(699,'Which of these is both merit and demerit in partnership?','The number of partners','Its unlimited nature','The bearing of risk','The withdrawal of a major partner.','','','a','','utme','2000',55,'Admin','2016-11-14 21:29:45','2020-06-05 16:26:04'),(700,'The measure of independence available to the individual business units that come together is the main difference between','vertical and horizontal, integration','mergers and acquisitions','consortium and amalgamation','trust and cartel.','','','b','','utme','2000',47,'Admin','2016-11-14 21:29:45','2020-05-28 21:15:26'),(701,'Government policies relating to the establishment and operations of businesses are targeted at','increasing the profits of business owners','the general improvement of the economy','even spread of facilities and employment','diversification and expansion of businesses.','','','b','','utme','2000',45,'Admin','2016-11-14 21:29:45','2020-06-26 10:59:33'),(702,'On liquidation of a public limited liability company, the residual owners are the','creditors','ordinary   shareholders','preference shareholders','debenture holders.','','','b','','utme','2000',39,'Admin','2016-11-14 21:29:45','2020-06-06 17:09:24'),(703,'Bank overdraft as a short term source of fund is','an overdrawn account','granted to a newly opened account','repayable after more than a year','a current liability.','','','d','','utme','2000',61,'Admin','2016-11-14 21:29:45','2020-06-02 22:50:01'),(704,'The share capital value that forms part of the balance sheet total is the','paid-up share capital','called-up share capital','authorized share capital','issued share capital.','','','a','','utme','2000',41,'Admin','2016-11-14 21:29:45','2020-05-28 21:16:57'),(705,'The main factors militating against the rapid growth of trade in Nigeria are','inadequate transportation network and huge capital outlay','lack of motivation and government attitude towards trade','lack of good transportation network and insecurity of investments','huge capital outlay and government attitude to trade.','','','a','','utme','2000',50,'Admin','2016-11-14 21:29:45','2020-06-03 15:33:33'),(706,'The current trends in retailing competition in Nigeria are','advertising and sales promotion strategies','branding, enterprising and differentiation of goods and services','self-service, after-sales services and branding strategies','after-sales services and sales promotion strategies.','','','a','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-05-28 21:16:27'),(707,'The function of a merchant wholesaler is to','buy in bulk, store and sell to retailers as desired','possess title to the goods, store and sell to retailers','bring buyers and sellers together','find markets for producers’ finished goods.','','','a','','utme','2000',47,'Admin','2016-11-14 21:29:45','2020-05-28 21:17:45'),(708,'An invoice can be described as a','contractual agreement for the sale of goods','document specifying quantity, description, prices and total value of purchases','receipt containing necessary information about the goods','letter specifying the contractual sales of goods between two parties.','','','b','','utme','2000',54,'Admin','2016-11-14 21:29:45','2020-06-26 10:59:28'),(709,'Ocean liners are subdivided into','passenger liners and cargo liners','coastal liners and cargo liners','cargo liners and tramp liners','passenger liners and tramp liners.','','','a','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-06-21 12:48:24'),(710,'Tourists with no fixed address in a town may receive their letters from the post office through a','recorded delivery','poste restante','parcel post','postmaster.','','','b','','utme','2000',51,'Admin','2016-11-14 21:29:45','2020-06-21 12:52:06'),(711,'The insurance principle that requires full disclosure of information on the insured is known as','indemnity','uberrimaefidei','subrogation','caveat emptor.','','','b','','utme','2000',64,'Admin','2016-11-14 21:29:45','2020-06-21 12:50:49'),(712,'Mr. Olatunde took up a fire insurance on a property valued at N 1000 and the amount insured is  N800. The property caught fire causing a loss of  N400. If the insurance was taken with the \tclause ‘with average’, what is the amount to be paid by the insurance company?','N320','N420','N460','N560.','','','a','','utme','2000',52,'Admin','2016-11-14 21:29:45','2020-05-28 21:14:29'),(713,'The Central Bank differs from commercial banks because it','renders service to customers','carries out foreign exchange transactions','issues currencies','discounts bills.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-05-28 21:16:32'),(714,'A bank form used to transfer money from personal to creditor’s account is called','debit transfer form','credit transfer form','customer transfer form','bank transfer form.','','','a','','utme','2000',46,'Admin','2016-11-14 21:29:45','2020-05-28 21:17:25'),(715,'The computer using linear integrated circuit technology coupled with quantification of data in terms of length and distance is known as','digital computer','analogue computer','mainframe computer','hybrid computer.','','','a','','utme','2000',57,'Admin','2016-11-14 21:29:45','2020-05-28 21:13:44'),(716,'A printer that burns the print image onto the photosensitive drum is called','dot matrix printer','daisy wheel printer','laser printer','thermal printer.','','','c','','utme','2000',48,'Admin','2016-11-14 21:29:45','2020-06-21 12:44:32'),(717,'A console is a device used in','moving an indicator on the screen','communicating between operator and programme','holding magnetic tape reel','forming characters by heating sensitive ribbon.','','','a','','utme','2000',57,'Admin','2016-11-14 21:29:45','2020-06-21 12:50:10'),(718,'A form of money that has gone out of use is','paper money','bank money','commodity money','foreign money.','','','c','','utme','2000',49,'Admin','2016-11-14 21:29:45','2020-05-28 21:17:36'),(719,'The major condition for obtaining loan in thrift, credit and loans cooperative societies is','provision of collateral security','a high level of education','possession of a large business','an approved project plan.','','','a','','utme','2000',51,'Admin','2016-11-14 21:29:45','2020-06-13 21:50:18'),(720,'The Stock Exchange helps to provide capital for industrial projects because it','determines value of shares, stocks and other securities','assists government in implementing its monetary policies','assists companies to change their securities into cash','renders agency services to organizations and governments.','','','c','','utme','2000',42,'Admin','2016-11-14 21:29:45','2020-05-28 21:16:20'),(721,'A shortcoming of the Second-tier Foreign Exchange Market in Nigeria is that it','serves as a mechanism for evaluating an unrealistic exchange rate for the naira','creates unhealthy competition amongst users of foreign exchange','contributes to destabilizing national resource allocation','contributes to flooding the market with foreign essential commodities.','','','b','','utme','2000',54,'Admin','2016-11-14 21:29:46','2020-06-07 15:49:24'),(722,'The chart above represents the','product mix relationship','marketing mix relationship','promotion mix relationship','advertising mix relationship.','','','b','','utme','2000',49,'Admin','2016-11-14 21:29:46','2020-05-28 21:16:27'),(723,'A group of specialized functions of marketing is','buying, selling, storing and information','buying, selling, advertising and packaging','buying, selling, labelling and promotion','buying, selling, skimming and pricing.','','','c','','utme','2000',57,'Admin','2016-11-14 21:29:46','2020-06-21 12:52:18'),(724,'The type of advertising that seeks to persuade consumers to buy a particular product is','informative advertising','competitive advertising','persuasive advertising','mass and specific advertising.','','','c','','utme','2000',52,'Admin','2016-11-14 21:29:46','2020-05-28 21:15:56'),(725,'The practice whereby soft drink manufacturers give away caps, bags and other items when consumers buy their product is a \t\tform of','marketing strategy','publicity','advertising','sales promotion.','','','d','','utme','2000',62,'Admin','2016-11-14 21:29:46','2020-06-18 06:47:29'),(726,'The most important advantage of personal selling is that it','allows sellers to perceive buyers’ needs','allows sellers to sell their goods quickly','takes place easily on the highways','takes place without the permission of government.','','','a','','utme','2000',55,'Admin','2016-11-14 21:29:46','2020-05-28 21:13:04'),(727,'The role of public relations is principally to','sustain good relationship','create good image','carry out publicity','advertise a firm’s products.','','','b','','utme','2000',51,'Admin','2016-11-14 21:29:46','2020-06-17 12:38:35'),(728,'The basic elements of a valid contract are','offer, acceptance, consideration and witness','offer, intention, acceptance and legality','offer, acceptance, intention, capacity and legality','offer, acceptance, capacity, legality and consideration.','','','d','','utme','2000',49,'Admin','2016-11-14 21:29:46','2020-06-21 12:49:00'),(729,'A bus driver operating between Lagos and Jos pledged the owner’s credit in Benin in order to have the engine repaired and the bill sent to the owner. This is a case of','del credere agency','agency by necessity','agency by ratification','agency by estoppel.','','','b','','utme','2000',54,'Admin','2016-11-14 21:29:46','2020-06-21 12:52:11'),(730,'After registration, a certificate of trading is usually issued to a','partnership','public company','private company','sole proprietorship.','','','b','','utme','2000',40,'Admin','2016-11-14 21:29:46','2020-05-28 21:17:21'),(731,'An aspect of the law which allows an exclusive right for a limited number of years is a','copyright','trade mark','ratification','patent','','','d','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-06-01 15:59:44'),(732,'The first known legislation to protect consumer rights in Nigeria is the','Usury Laws','Hire Purchase Act','Sale of Goods Act','Food and Drugs Act.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:46','2020-06-08 06:41:19'),(733,'The main difference between nationalization and indigenization is in terms of','shareholding','profit','technology','efficiency.','','','b','','utme','2000',59,'Admin','2016-11-14 21:29:46','2020-05-28 21:17:26'),(734,'The primary objectives of a trade association is to','undertake research work on behalf of members','establish easy link with government','exchange information and negotiate as a pressure group','operate as a group against other groups.','','','c','','utme','2000',64,'Admin','2016-11-14 21:29:46','2020-05-28 21:16:43'),(735,'A chamber of commerce is an association made up of','entrepreneurs','manufacturers','merchants','importers.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:46','2020-06-19 01:07:50'),(736,'The composite functions of management are','planning, supervising, communicating','planning, controlling, organizing and directing','coordinating,  supervising,  staffing  and communicating','directing,  supervising, motivating and controlling.','','','b','','utme','2000',48,'Admin','2016-11-14 21:29:46','2020-06-15 00:24:01'),(737,'The three components of staffing are','recruitment, selection and placement','recruitment, interview and appointment','recruitment, test and placement','recruitment, procurement and appointment','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:46','2020-05-28 21:17:42'),(738,'The legal aspect of business is designed to','protect business organizations and consumers','safeguard consumers from undue business practices','protect infant industries from collapse','encourage free exchanges among businesses.','','','a','','utme','2000',54,'Admin','2016-11-14 21:29:46','2020-06-21 12:51:57'),(739,'In an organization, civic consideration arises from','the profit derived from the environment','its operations within the environment','its social negative impacts on the community','the fact that it is registered in that locality','','','b','','utme','2000',46,'Admin','2016-11-14 21:29:46','2020-05-28 21:15:54'),(740,'The instrument establishing the Economic Community of West African States in 1975 is','a decree','an act','a treaty','constitution','','','c','','utme','2000',52,'Admin','2016-11-14 21:29:46','2020-05-28 21:16:07'),(741,'One of the functions of the Niger Basin Commission is to','ensure equal treatment of African nations','foster closer co-operation among West African nations','map out regulations that will guide all forms of navigation','guarantee freedom of navigation for all West African nations.','','','c','','utme','2000',54,'Admin','2016-11-14 21:29:46','2020-06-13 21:50:18'),(742,'The pivot on which the wheel of commerce rotates is','tariff','trade','taxation','price.','','','d','','utme','2001',73,'Admin','2016-11-15 07:01:48','2020-05-28 21:15:59'),(743,'A distinguishing characteristic of labour is that it is','constant','expensive','mobile','cheap','','','c','','utme','2001',78,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:25'),(744,'Land as a factor of production does not vary in','quantity','nature','quality \t\t\t\t.','cost.','','','b','','utme','2001',82,'Admin','2016-11-15 07:01:48','2020-05-28 21:15:03'),(745,'Which of the following services does a lawyer render?','industrial services','indirect services','direct services','commercial services.','','','c','','utme','2001',79,'Admin','2016-11-15 07:01:48','2020-05-28 21:16:03'),(746,'The partner that only contributes part of the capital used in the formation and running of a business is known as','a passive partner','an active partner','a dormant partner','a nominal partner.','','','c','','utme','2001',78,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:05'),(747,'One major advantage of a credit and thrift cooperative is that','it can approach government for a loan','it encourages saving habits','there are no legal restrictions','each member has a vote during meetings.','','','b','','utme','2001',83,'Admin','2016-11-15 07:01:48','2020-06-15 00:54:36'),(748,'A form of ownership which exploits the strength of one partner to remedy the weaknesses of the other is a','joint partnership','cooperative','corporation','joint venture.','','','a','','utme','2001',81,'Admin','2016-11-15 07:01:48','2020-06-17 21:05:20'),(749,'At the collapse of a business enterprise, the person appointed to dispose of the assets is called','a broker','an auctioneer','a liquidator','an auditor.','','','c','','utme','2001',83,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:25'),(750,'Entrusting the management of a company to the courts to enable the settlement of the company’s obligations is an indication of','distress','closure','bankruptcy','liquidation.','','','c','','utme','2001',76,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:44'),(751,'The financial instrument for borrowing in which the collateral is usually more than the amount borrowed is','trust certificate','detachable warrant','mortgage bond','convertible securities.','','','c','','utme','2001',81,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:17'),(752,'I.   Personal Savings, II.   Retained Earnings, III. Accrued Taxes. Which of the items above constitute internal sources of financing for companies?','I and II','I and III','II and III','I, II and III.','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-06-03 17:59:32'),(753,'The difference between total current assets and total current liabilities of a business is known as','quick ratio','liquidity ratio','working capital','circulating capital.','','','c','','utme','2001',82,'Admin','2016-11-15 07:01:48','2020-06-28 21:35:02'),(754,'One of the reasons why wholesaling must continue is that','the tax paid by wholesalers on their profit enhances national revenue','by creating artificial scarcity, the wholesaler is enhancing competition in the economy','the wholesaler provides technical advice to the retailer','the gap between manufacturers and retailers is reduced by wholesalers.','','','d','','utme','2001',93,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:33'),(755,'A merchant wholesaler is referred to as','del-credere agent','a broker','rack jobber','a factor.','','','a','','utme','2001',80,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:28'),(756,'A pro-forma invoice is sent to inform a buyer about the','quantity of goods','prices of goods','designation of goods','quality of goods.','','','c','','utme','2001',77,'Admin','2016-11-15 07:01:48','2020-06-17 21:27:38'),(757,'The balance of payments of countries is','a record of imports and exports','a systematic record of transactions among countries at a given time','the current and the capital accounts and their payments','the trade relationships and payments among nations.','','','a','','utme','2001',64,'Admin','2016-11-15 07:01:48','2020-06-18 06:47:29'),(758,'The major procedures in the purchase and sale of goods are enquiry','quotation, order and invoice','placement, order and invoice','bargain, order and invoice','order, sale and invoice.','','','a','','utme','2001',76,'Admin','2016-11-15 07:01:48','2020-06-05 21:55:09'),(759,'The trade discount receivable by Mr. Bacus is','N= 4,500','N= 7,500','N= 10,500','N= 12,000.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',80,'Admin','2016-11-15 07:01:49','2020-05-28 21:14:12'),(760,'If  Mr. Bacus fulfils his promise, he will be entitled to a cash discount of','N= 2,760','N= 3,000','N= 6,500','N= 9,500.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',70,'Admin','2016-11-15 07:01:49','2020-06-07 16:30:54'),(761,'Bank Giro is a method of settling debt from a','customer to a bank','bank to a customer','customer to another','bank to another.','','','a','','utme','2001',80,'Admin','2016-11-15 07:01:49','2020-06-21 12:47:47'),(762,'Warehousing is a productive function because it increases the','quantity of goods','utility of goods','quality of goods','price of goods.','','','a','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:26'),(763,'A factor necessary for siting a warehouse is nearness to','raw materials','labour','capital','consumers.','','','d','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-06-21 12:50:27'),(764,'Pooling of risk in insurance means that','compensations are paid out of a common fund','two people can pool their risks to be insured','two insurance companies can buy two policies','insurance companies should encourage taking risks','','','a','','utme','2001',78,'Admin','2016-11-15 07:01:49','2020-05-28 21:14:14'),(765,'The indemnification of Ama by his insurance company after a fire disaster means that he','has been guaranteed by the insurance company','will be cleared of any fault by the insurance company','has been covered by the insurance company','will be covered to the limit of the amount in the policy.','','','b','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:34'),(766,'The major difference between insurance and assurance is that while insurance','takes care of uncertainty, assurance takes care of risks','takes care of risks, assurance takes care  uncertainty','hinges on probabilities, assurance is based on possibilities','is about indemnity assurance is about life in the future.','','','c','','utme','2001',81,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:13'),(767,'A documentary bill will normally be accompanied by','sales invoice, bill of lading and insurance certificate','clean bill, bill of lading and insurance certificate','bill of lading, consular invoice and insurance certificate','consular invoice, FOB certificate and bill of  lading.','','','d','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-06-26 10:59:35'),(768,'Which of the following best describes the classification of computers?','Mini-computer, speed and size','Micro-computer, cost and abilities','Mini-computer, micro-computer and work station','Mini-computer, hybrid and digit','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-06-02 22:55:42'),(769,'The temporary working area of the central processing unit is called the','C-D ROM','C-D RAM','ROM','RAM.','','','b','','utme','2001',75,'Admin','2016-11-15 07:01:49','2020-06-15 00:24:01'),(770,'The significance of money to modern economic systems is that it','is used as a means payment','promotes specialization and exchange','measures value and promotes exchange','causes inflation and deflation in the economy','','','c','','utme','2001',67,'Admin','2016-11-15 07:01:49','2020-05-28 21:15:35'),(771,'One major characteristic of credit unions and thrift societies is that','the legal processes involved in their formation are rigid','membership compulsory to people in the same line of  business','the contribution of every member depends the member’s ability','a minimum of ten people in the same line of business can form the union','','','c','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-05-28 21:16:28'),(772,'The Nigerian Stock Exchange publishes a daily official list that gives full information on the','method of transactions agreed to by members','number of participating members in a day','changes in the prices and earnings of security','changes in the official rules set by the man','','','c','','utme','2001',69,'Admin','2016-11-15 07:01:49','2020-05-28 21:15:39'),(773,'The main factors that determine the value stock on the Stock Exchange are dividend an','the psychology of the market','capital gain','capital appreciation','warrant payment','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-06-02 10:21:57'),(774,'One of the main objectives of the Second- tier Securities Market in Nigeria is to','achieve a realistic exchange rate for the naira','eliminate currency  dealings in the black market','assist companies to raise capital','attract investment flow.','','','d','','utme','2001',69,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:02'),(775,'The activities aimed at finding out customers’ needs and satisfaction can be described as','socio-marketing','macro-marketing','micro-marketing','conceptual marketing.','','','d','','utme','2001',76,'Admin','2016-11-15 07:01:49','2020-06-21 12:48:17'),(776,'The most effective type of advertising for branded products is','direct advertising','indirect advertising','informative advertising','competitive advertising.','','','d','','utme','2001',73,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:42'),(777,'Which of these companies are more engaged in public relations activities?','I and II','I and III','II and IV','Ill and IV.','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','b','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-06-21 12:45:24'),(778,'Which of these companies offers after-sales services?','IV','Ill','II','I','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','c','','utme','2001',71,'Admin','2016-11-15 07:01:49','2020-05-28 21:15:47'),(779,'Who are the parties to the contract of renting the room?','Musa and Jacob','Musa and Audu','Adamu and Musa','Audu and Jocob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-06-21 12:52:51'),(780,'Who is the offeree in this contract?','Musa','Audu','Adamu','Jacob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:02'),(781,'The maximum number of shareholders in a public liability company is','twenty','fifty','one hundred','unlimited.','','','d','','utme','2001',80,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:31'),(782,'One way by which government reduces the repatriation of capital   is through','nationalization','divestiture','indigenization','naturalization.','','','c','','utme','2001',70,'Admin','2016-11-15 07:01:49','2020-05-28 21:14:31'),(783,'One of the major functions of a chamber of commerce is to','promote and protect trade, industry and agriculture','advise members on regulations of other countries','settle disputes that arise out of trade','publish books and periodicals desired by members.','','','a','','utme','2001',74,'Admin','2016-11-15 07:01:49','2020-06-21 12:44:58'),(784,'Departmentalization is an aspect of','planning','organizing','directing','controlling.','','','b','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-05-28 21:15:26'),(785,'A functional organizational structure is where','staff performing the same functions are grouped together','departments performing similar functions are grouped together','activities of similar nature are-grouped together','staff performing similar functions are grouped together.','','','c','','utme','2001',68,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:36'),(786,'In the line type of organizational structure','the lines of authority are vertical','there is the application of division of labour','specialization is carried to a maximum degree','the lines of authority are horizontal.','','','c','','utme','2001',67,'Admin','2016-11-15 07:01:49','2020-06-17 12:38:35'),(787,'Proper disposal of waste by business firms is one way of discharging their','responsibility to government','environmental responsibility','community responsibility','responsibility to customers.','','','b','','utme','2001',64,'Admin','2016-11-15 07:01:49','2020-06-07 23:48:24'),(788,'One of the obstacles  to achieving the objectives of ECOWAS is','lack of a common currency','colonial linkages','sovereignty of states','language differences.','','','d','','utme','2001',88,'Admin','2016-11-15 07:01:49','2020-06-02 10:35:32'),(789,'One of the main objectives of establishing the Niger River Basin Commission was to','embark on a comprehensive survey of the available water resources','carry out research for the development of fresh water fisheries','develop infrastructure to facilitate economic activities','promote trade among member-states to improve standards of living.','','','c','','utme','2001',77,'Admin','2016-11-15 07:01:50','2020-06-21 12:45:07'),(790,'The most important factor that delayed the development of commerce in Nigeria was','the inefficient means of communication','that there were few entrepreneurs','the unavailability of infrastructure facilities','that there were few developed markets.','','','c','','utme','2002',116,'Admin','2016-11-15 07:26:05','2020-06-02 22:55:42'),(791,'Secondary production has to do with changing the','shape of raw materials through construction operations','physical form of raw materials into finished goods','utility of raw materials by an engineering process','nature of raw materials through manufacturing processes.','','','b','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-06-07 16:25:04'),(792,'The major responsibility of an entrepreneur is','employing all factors of production in the business','coordinating and determining the proportion of what to produce','planning and organizing all activities in the business','directing and controlling all the affairs of the business.','','','a','','utme','2002',111,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:02'),(793,'Which of the following best describes the scope of commerce?','All forms of commercial exchanges and the manufacturing industry','Buying and selling and the construction industry','All occupational exchanges relating to industries and commercial activities','Buying and selling as well as the extraction of natural resources.','','','c','','utme','2002',129,'Admin','2016-11-15 07:26:08','2020-05-28 21:15:40'),(794,'Capital as a factor of production can be used as','money that is regarded as asset','goods that are useful in business','input for further production','services that provide satisfaction','','','c','','utme','2002',123,'Admin','2016-11-15 07:26:08','2020-06-21 12:52:30'),(795,'The agency that currently oversees the privatization and commercialization processes in Nigeria is the','Securities and Exchange Commission','Technical Committee on Privatization and Commercialization','Nigerian Stock Exchange','Bureau of Public Enterprises.','','','d','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-06-07 16:25:04'),(796,'Okeze contracted to sell TV sets to Ojo. Unknown to them, the sets were stolen in transit.   This contract may be terminated on the grounds of','bankruptcy','frustration','fraudulence','breach of contract.','','','b','','utme','2002',108,'Admin','2016-11-15 07:26:08','2020-06-17 12:38:36'),(797,'Which of the following countries are members the Lake Chad Basin Commission?','Niger and Cameroun','Benin and Niger','Chad and Benin','Nigeria and Mali.','','','a','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-05-28 21:16:54'),(798,'A core investor in the current phase of privatization in Nigeria is one who','can afford to buy most the shares of the enterprises','will be at the core of the enterprises','can mobilize foreign currency equivalent to the value of the enterprises','has the technical know-how of the enterprises','','','a','','utme','2002',112,'Admin','2016-11-15 07:26:08','2020-06-28 21:35:02'),(799,'The agency in Nigeria which ensures that products conform to government quality specifications is the','Standards Organization of Nigeria','Nigerian Consumers’ Association','Manufacturers’ Association of Nigeria','Nigerian Chamber of Commerce.','','','a','','utme','2002',108,'Admin','2016-11-15 07:26:08','2020-06-15 00:54:36'),(800,'Awarding scholarships and sponsoring sports by a business organization are examples of','advertising strategy','economic responsibility','marketing strategy','social responsibility','','','c','','utme','2002',118,'Admin','2016-11-15 07:26:08','2020-06-05 16:26:04'),(801,'The commercialization of public enterprises aimed at','increasing efficiency and making the enterprises self-sufficient','advertising a promoting the goods and services of the enterprises','increased assistance and patronage of the enterprises by the public','selling the goods and services of the enterprises.','','','a','','utme','2002',120,'Admin','2016-11-15 07:26:08','2020-05-28 21:15:01'),(802,'An author’s exclusive right to his published an unpublished works is known as','authors right','constitutional right','patent right','copyright','','','d','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-06-15 09:15:09'),(803,'Under the endowment policy, the money handed over to the insured at the expiration of the stipulated time or at death is the','indemnity','surrender value','lump sum benefit','insurance premium','','','c','','utme','2002',120,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:33'),(804,'The machine used for sending telex messages is known as a','radar','fax machine','Dictaphone','teleprinter.','','','b','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-06-21 12:49:15'),(805,'Which of these insurance principles requires a close connection between the actual loss suffered and the risk insured','Indemnity','Proximate cause','Contribution','Subrogation.','','','b','','utme','2002',120,'Admin','2016-11-15 07:26:08','2020-05-28 21:16:06'),(806,'The unit through which results of a processed data are displayed is the','logic unit','display unit','control unit','output unit.','','','d','','utme','2002',119,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:18'),(807,'Which of the following is used to inform the addressee that a registered parcel is ready for collection?','Express label','Counterfoil','Telegram','Slip.','','','d','','utme','2002',116,'Admin','2016-11-15 07:26:08','2020-05-30 18:05:44'),(808,'The type of computer commonly found in offices is','laptop','desktop','the hybrid computer','the mainframe computer.','','','c','','utme','2002',114,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:36'),(809,'The mode of transporting crude oil to the ports for export purposes is by','tanker','rail','road','pipeline.','','','d','','utme','2002',117,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:45'),(810,'The temporary insurance certificate issued to the insured before drawing up a policy is a','cover  note','testimonial','time policy','proposal  form.','','','a','','utme','2002',119,'Admin','2016-11-15 07:26:08','2020-06-06 13:30:40'),(811,'The bulls and bears in the Stock Exchange market help to minimize','the number of shares and bonds sold','price increases of securities','fluctuations in the prices of securities','the elasticity of the prices of securities.','','','a','','utme','2002',127,'Admin','2016-11-15 07:26:08','2020-06-21 12:45:21'),(812,'Debentures differ from shares in that','they are secured on the company’s assets','ownership is open to the public','they form part of the capital of the business','rewards are usually paid out of profits.','','','c','','utme','2002',111,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:40'),(813,'The Stock Exchange is a market where','long-term securities are sold','all types of securities are sold','short-term securities are sold','medium-term securities are sold.','','','b','','utme','2002',119,'Admin','2016-11-15 07:26:08','2020-06-03 15:33:33'),(814,'A retail cooperative society aims at','hoarding manufactured goods','cutting off the profit of middlemen','lending money to members at low interest rates','encouraging members to save money.','','','b','','utme','2002',112,'Admin','2016-11-15 07:26:08','2020-05-28 21:12:32'),(815,'A bill of exchange already accepted can be discounted by the holder in','the central bank','at least two banks','his bank','any bank.','','','d','','utme','2002',115,'Admin','2016-11-15 07:26:08','2020-05-28 21:16:46'),(816,'The document issued by the seller which gives details of the goods he sells is known as','catalogue','tender','price list','invoice','','','d','','utme','2002',110,'Admin','2016-11-15 07:26:09','2020-06-07 21:43:49'),(817,'Given:  I.Retail; II.Export; III.Transport; IV.Import; V.Insurance; VI.Banking and finance; VII. Wholesale; VIII. Communication. Which of the above are aids to trade?','I, II,  III and VIII','III, V, VI and VIII','I, II, III and VI','II, V, VI and VII','','','b','','utme','2002',121,'Admin','2016-11-15 07:26:09','2020-06-21 12:51:48'),(818,'The organizational structure that relates the positions of specialists to the line managers is called','line structure','staff structure','line and staff structure','functional structure.','','','d','','utme','2002',118,'Admin','2016-11-15 07:26:09','2020-06-21 12:45:01'),(819,'A wholesaler who possesses the tittle to the goods he sells is known as','a merchant wholesaler','a multiple wholesaler','a general wholesaler','an agent wholesaler.','','','d','','utme','2002',124,'Admin','2016-11-15 07:26:09','2020-06-08 09:48:58'),(820,'An important principle of a good organizational structure is','ideal standard','span of control','clarity of mission','adequacy of resources.','','','b','','utme','2002',117,'Admin','2016-11-15 07:26:09','2020-06-08 09:48:58'),(821,'A company that is registered with the Corporate Affairs Commission only without being enlisted on the Stock Exchange is a','public liability company','joint venture company','limited company','registered company.','','','d','','utme','2002',116,'Admin','2016-11-15 07:26:09','2020-06-02 19:24:00'),(822,'A contract for the sale of goods involves the','producer, seller and the buyer of goods','offering of goods to customers','transfer of the title to goods for money','exchange of goods.','','','c','','utme','2002',112,'Admin','2016-11-15 07:26:09','2020-06-15 00:54:36'),(823,'The total of the share capital which a company would be allowed to issue is known as','called-up capital','paid-up capital','nominal capital','issued  capital.','','','d','','utme','2002',109,'Admin','2016-11-15 07:26:09','2020-05-28 21:17:03'),(824,'The process of mobilizing, engaging  and maintaining workers to work for an organization is referred to as','staffing','selection','recruitment','employment.','','','d','','utme','2002',118,'Admin','2016-11-15 07:26:09','2020-06-09 05:44:47'),(825,'Recognized members of the Stock Exchange who buy and sell securities on their own behalf are known as','bolls','jobbers','brokers','stags.','','','c','','utme','2002',112,'Admin','2016-11-15 07:26:09','2020-05-28 21:15:43'),(826,'Which of the following involves foreign trade?','Supermarkets','Chain stores','Departmental stores','Commodity markets.','','','d','','utme','2002',120,'Admin','2016-11-15 07:26:09','2020-05-28 21:17:21'),(827,'Which of the following is a function of employers’ association?','Undertaking research on behalf of employees','Promotion of thrift in workers','Promotion of workers’ welfare','Dissemination of information through sponsored journals.','','','c','','utme','2002',131,'Admin','2016-11-15 07:26:09','2020-05-28 21:17:46'),(828,'Which of the following industries is normally located near the \tsource of its raw materials?','Footwear industry','Cement industry','Textile  industry','Automobile assembly.','','','b','','utme','2002',124,'Admin','2016-11-15 07:26:09','2020-06-05 16:26:04'),(829,'One of the most important function of marketing is','encouraging research activities to meet needs','creating classes of merchants among businessmen','the extension of markets for businesses','providing finances to businesses','','','a','','utme','2002',124,'Admin','2016-11-15 07:26:09','2020-05-28 21:15:52'),(830,'Securities on which the buyers are not issued with certificates are called','authorized securities','inscribed securities','bearer securities','registered securities.','','','b','','utme','2002',116,'Admin','2016-11-15 07:26:09','2020-05-28 21:16:47'),(831,'In product pricing, which of these elements needs more consideration than others?','the demand for the product','the demography of the buyers of the product','the economic conditions in the market','the cost of producing the product.','','','d','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-06-17 21:05:20'),(832,'The principal objectives of the Central Bank of Nigeria can be classified broadly into','bankers’ bank, lender of last resort and issuance of currency','service, currency management and financial intermediation','banking services, foreign exchange operations and open','markets operations service, monetary policy and developmental functions.','','','a','','utme','2002',130,'Admin','2016-11-15 07:26:09','2020-06-21 12:50:12'),(833,'The letters E and OE stand for','errors of exception','errors  and omissions expected','estimated and order error','end of error.','','','b','','utme','2002',117,'Admin','2016-11-15 07:26:09','2020-05-28 21:13:14'),(834,'An important issue for consideration in the product element of the marketing mix is the','adequate promotion of the product','channel of distribution of the product','price of the product','planning and development of the product.','','','d','','utme','2002',117,'Admin','2016-11-15 07:26:09','2020-05-28 21:16:14'),(835,'group of companies is a collection of','subsidiaries and their holding company','firms','associates and their holding company','industries.','','','a','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-06-06 00:46:01'),(836,'Which of the following is an example of trade associations?','European Union','National Marketing Board','Organization of African Unity','National Farmers’ Council.','','','b','','utme','2002',127,'Admin','2016-11-15 07:26:09','2020-06-07 21:24:30'),(837,'Which of the following determines the quality of goods that a retailer sells','The mode of contract of sales','The type of manufacturer','The regulations regarding sales in the area','The location of his shop.','','','b','','utme','2002',124,'Admin','2016-11-15 07:26:09','2020-06-07 21:43:49'),(838,'An advantage of hire purchase to the consumer is the','economies of scale in production','possession of goods before payment','increase in turnover and profits','low interest rate chargeable.','','','b','','utme','2002',111,'Admin','2016-11-15 07:26:09','2020-05-28 21:16:06'),(839,'The founders’ shares are usually referred to as deferred shares because the holders','are entitled to cumulative dividends','receive their dividends after other shareholders','receive   their   dividends   before   other shareholders','are not entitled to any dividends.','','','a','','utme','2002',127,'Admin','2016-11-15 07:26:09','2020-05-28 21:17:37'),(840,'An example of a service -rendering trade association is','Nigerian Bar Association','Association of Nigerian Miners','Cocoa Farmers ’Association','Manufacturers ’Association of Nigeria.','','','a','','utme','2003',88,'Admin','2016-11-15 10:56:19','2020-06-21 12:45:43'),(841,'An obstacle to international trade is','trade imbalance between   countries','availability of  local market','quantity and quality of labour','cost of finance','','','a','','utme','2003',68,'Admin','2016-11-15 10:56:19','2020-05-28 21:16:38'),(842,'The right  of ownership with respect to goods or property is','right of occupancy','proxy','title','certificate of occupancy','','','c','','utme','2003',91,'Admin','2016-11-15 10:56:19','2020-05-28 21:16:31'),(843,'The main motive of chambers of commerce and trade associations is to','assist government in achieving its objectives','protect the interest of consumers','maximize profit','protect and promote the interests of members','','','a','','utme','2003',83,'Admin','2016-11-15 10:56:19','2020-06-21 12:52:32'),(844,'A pattern that shows the kinds of participants involved in the production, distribution and ultimate use of a product is referred to as','selection','strategy','structure','synergy','','','b','','utme','2003',85,'Admin','2016-11-15 10:56:19','2020-06-11 01:05:51'),(845,'Goods that are manufactured or acquired by the seller after the contract of sale are','specialty goods','future goods','specific goods','general goods','','','c','','utme','2003',80,'Admin','2016-11-15 10:56:19','2020-06-12 07:30:50'),(846,'What was the amount paid by Ojo?','N382,500','N425,000','N363,375','N61,625','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','c','','utme','2003',79,'Admin','2016-11-15 10:56:19','2020-05-28 21:11:21'),(847,'How much was the trade discount?','N42,500','N27,500','N22,500','N20,000','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','a','','utme','2003',84,'Admin','2016-11-15 10:56:20','2020-06-21 12:44:54'),(848,'The basic function of the Nigerian Ports Authority is to','ensure that the right caliber of personnel is  employed at the ports','coordinate and regulate the activities of  shipping lines','facilitate and control the movement of goods and services into and out of the country','coordinate the activities of all the seaports in the country','','','d','','utme','2003',80,'Admin','2016-11-15 10:56:20','2020-05-28 21:17:34'),(849,'The concept that refers to the sale, transfer or exchange of goods and services is','industry','trade','tariff','marketing','','','b','','utme','2003',84,'Admin','2016-11-15 10:56:20','2020-05-28 21:16:15'),(850,'A guarantee given by one person or party to another in which \tthe integrity of the person is assured is','fidelity','term assurance','subrogation','indemnity','','','a','','utme','2003',71,'Admin','2016-11-15 10:56:20','2020-05-28 21:17:13'),(851,'A firm that adapts itself to delivering the desired satisfaction more effectively and efficiently than its competitors is said to be practicing','price concept','distribution concept','product concept','marketing concept','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:20','2020-05-28 21:17:45'),(852,'The payment made periodically in respect of an insurance policy entered into is known as','bond','commission','premium','surrender value','','','c','','utme','2003',78,'Admin','2016-11-15 10:56:20','2020-06-03 17:26:46'),(853,'An example of service rendered by NIPOST is','electronic mail','courier','telephone','mail delivery','','','d','','utme','2003',86,'Admin','2016-11-15 10:56:24','2020-05-28 21:17:19'),(854,'The focal point of marketing is','the competitor','the buyer','profit-making','sales','','','d','','utme','2003',88,'Admin','2016-11-15 10:56:24','2020-05-28 21:16:22'),(855,'The type of marine insurance which covers either damage or loss to the vessel and such as caused by it to other vessels is','hull insurance','time insurance','freight insurance','cargo insurance','','','a','','utme','2003',85,'Admin','2016-11-15 10:56:24','2020-06-17 12:38:34'),(856,'The management function that makes the difference in intensity of behaviour is','coordinating','controlling','motivation','planning','','','c','','utme','2003',82,'Admin','2016-11-15 10:56:24','2020-06-21 12:48:10'),(857,'One of the functions of seaports is the provision of','berthing and landing facilities','loading and off-loading facilities','control room for relaying radio messages','warehouses for storage of cargo.','','','b','','utme','2003',83,'Admin','2016-11-15 10:56:24','2020-06-05 16:26:04'),(858,'The process of dividing tasks into jobs and departments and of delegating authority is known as','staffing','leading','directing','organizing','','','d','','utme','2003',83,'Admin','2016-11-15 10:56:25','2020-06-21 12:46:14'),(859,'Communication process involves the transmission of a message over a selected channel to the','receiver','audience','sender','encoder','','','b','','utme','2003',81,'Admin','2016-11-15 10:56:28','2020-05-28 21:17:09'),(860,'Stimulation of demand is a kind of communication in marketing which connotes','personal selling','sales promotion','advertising','merchandising','','','c','','utme','2003',76,'Admin','2016-11-15 10:56:29','2020-06-17 12:38:36'),(861,'A functional structure is an organizational structure in which','abstract rules are applied','equity prevails','a specialist enforces his directives','there is no hierarchy.','','','c','','utme','2003',72,'Admin','2016-11-15 10:56:29','2020-05-28 21:17:36'),(862,'Entrepreneurship mainly involves','risk-taking','initiating','skilled manpower','knowledge','','','a','','utme','2003',80,'Admin','2016-11-15 10:56:29','2020-05-28 21:15:18'),(863,'In the event of the liquidation of a company the first to be settled are','debenture holders','members  of the  board','preference shareholders','ordinary shareholders.','','','a','','utme','2003',87,'Admin','2016-11-15 10:56:29','2020-06-21 12:51:36'),(864,'The business organization established mainly for the purpose of carrying out specific assignments for a specific duration is a','joint venture','cooperative society','partnership','company.','','','a','','utme','2003',77,'Admin','2016-11-15 10:56:29','2020-05-28 21:11:56'),(865,'Which of these factors of production is relatively fixed in supply?','Capital','Entrepreneur','Human resources','Natural resources','','','d','','utme','2003',81,'Admin','2016-11-15 10:56:29','2020-06-21 12:45:26'),(866,'The location of a business is mostly influenced by','market outlet','management decision','capital','environment','','','d','','utme','2003',121,'Admin','2016-11-15 10:56:29','2020-07-02 00:24:39'),(867,'The evolution of commerce in Nigeria is traceable to the','period of barter economy as human needs became limitless','desire by human beings to satisfy their needs through the services of other people in the society','development of human civilizations and the desire to meet their needs','primitive stage of existence of  human beings.','','','b','','utme','2003',83,'Admin','2016-11-15 10:56:29','2020-05-28 21:14:50'),(868,'One of the requirements necessary for setting up a business is','registration','advertisement','knowledge of the business','documentation','','','c','','utme','2003',85,'Admin','2016-11-15 10:56:29','2020-06-03 17:59:32'),(869,'The assembling of products into usable forms is known as','construction','manufacturing','formation','creation','','','b','','utme','2003',86,'Admin','2016-11-15 10:56:29','2020-07-02 15:45:50'),(870,'The government’s policy thrust on the business environment is to','promote experts','attract investors','be self-sufficient','increase production','','','b','','utme','2003',75,'Admin','2016-11-15 10:56:29','2020-06-21 12:52:19'),(871,'Social responsibility is the ability of an organization to','tackle the socio-economic problem of its community','meet the needs of its community','contribute to sustaining   and developing its community','operate without disrupting the very essence of the environment.','','','c','','utme','2003',81,'Admin','2016-11-15 10:56:29','2020-05-28 21:17:37'),(872,'The act of a person employing another to enter into a contract on his behalf is known as','business','sale of goods','bilateral agreement','agency','','','d','','utme','2003',86,'Admin','2016-11-15 10:56:29','2020-05-28 21:16:13'),(873,'The ECOBANK is the initiative of','some well-meaning Nigerian shareholders','the Federal Government of  Nigeria','West African states to foster trade','the Lagos State Government to enhance capital mobilization.','','','c','','utme','2003',82,'Admin','2016-11-15 10:56:29','2020-06-21 12:51:08'),(874,'Privatization is concerned with','equal ownership between  the public and the government','the dilution of ownership among the public','the individual ownership of companies','government ownership of companies.','','','c','','utme','2003',83,'Admin','2016-11-15 10:56:29','2020-06-21 12:48:57'),(875,'Electronic computers differ from human beings in that they process data and minimize errors in a','faster and more accurate manner','more organized manner','faster but less accurate manner','slower but more accurate manner','','','a','','utme','2003',86,'Admin','2016-11-15 10:56:29','2020-05-28 21:16:53'),(876,'A major benefit derivable from the privatization and commercialization of public enterprises in Nigeria is','increase in wages','employment generation','information technology','revenue generation','','','d','','utme','2003',81,'Admin','2016-11-15 10:56:29','2020-06-15 00:24:01'),(877,'The device which interprets and carries out the instructions presented to it by the computer program is known as','software','microprocessor','mouse','hard-disk','','','b','','utme','2003',82,'Admin','2016-11-15 10:56:33','2020-06-02 17:01:47'),(878,'The market structure, business conditions and financial systems in Nigeria constitute the','economic environment','political environment','cultural environment','technological environment','','','a','','utme','2003',75,'Admin','2016-11-15 10:56:34','2020-06-06 19:57:45'),(879,'The protection of consumers against exploitation by manufacturers is to ensure','that there are varieties of products','that the right quality of goods and services is sold','increase in production capacity','increase in the level of consumer awareness.','','','b','','utme','2003',81,'Admin','2016-11-15 10:56:34','2020-05-28 21:17:09'),(880,'The most widely used computer language that focuses on solving science-oriented problems is','FORTRAN','BASIC','ADA','COBOL','','','a','','utme','2003',102,'Admin','2016-11-15 10:56:34','2020-06-03 20:19:25'),(881,'Banks are engaged in the business of buying and selling of','bills of exchange','instruments of credit','intangible products','land','','','a','','utme','2003',86,'Admin','2016-11-15 10:56:34','2020-05-28 21:14:14'),(882,'A source of short-term finance to companies is','share capital','debentures','retained earnings','corporate tax','','','c','','utme','2003',85,'Admin','2016-11-15 10:56:34','2020-05-28 21:16:42'),(883,'The body charged with the responsibility to register shares for subscription on the stock market in Nigeria is the','Securities and Exchange Commission','Nigerian Stock Exchange','Nigerian Deposit Insurance Company','Central Bank of Nigeria,','','','a','','utme','2003',85,'Admin','2016-11-15 10:56:34','2020-06-17 12:38:35'),(884,'An essential factor for evaluating the different sources of funds for a business is the','decree establishing the business','ownership structure of the business concern','size and the type of the business','burden of cost and repayment','','','b','','utme','2003',71,'Admin','2016-11-15 10:56:34','2020-05-28 21:16:26'),(885,'Money can simply be referred to as a','medium of exchange','means for the settlement of debts','durable asset for doing business','stands of value','','','a','','utme','2003',89,'Admin','2016-11-15 10:56:34','2020-06-07 15:56:17'),(886,'A type of  long-term loan granted to companies with fixed interest as well as with redeemable and irredeemable features is referred to as','a debenture','a bond','a term loan','an overdraft','','','a','','utme','2003',88,'Admin','2016-11-15 10:56:34','2020-06-02 21:15:31'),(887,'Public debt management is one of the functions of a','merchant bank','central bank','commercial bank','development bank.','','','b','','utme','2003',83,'Admin','2016-11-15 10:56:38','2020-06-21 12:46:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `crk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=696 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `crk` VALUES (1,'In Jesus’ teaching on the mount, the only justifiable reason for divorce is ','indolence ','insubordination ',' infidelity ','infertility','','','c','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-06-05 06:55:18'),(2,'According to John’s Gospel, Lazarus was from: ','Jerusalem  ','Teberias ','Bethany ','Galilee','','','c','','post-utme','2006',57,'Admin','0000-00-00 00:00:00','2020-06-03 16:59:52'),(3,'Jesus’ new commandment according to the Gospel of Jesus of John is ','salvation ','love ','peace ','spirit','','','b','','post-utme','2006',58,'Admin','0000-00-00 00:00:00','2020-05-04 18:25:28'),(4,'The thief as described by Jesus comes to ','destroy, kill and steal ','destroy, steal and kill ','kill, destroy and kill ','steal, kill and destroy ','','','d','','post-utme','2006',63,'Admin','0000-00-00 00:00:00','2020-06-03 00:21:19'),(5,'The agony of Jesus in the Garden of Gethsemane is a ','sign of abandonment ','manifestation of human weakness ','punishment ','preparation for his death','','','d','','post-utme','2006',57,'Admin','0000-00-00 00:00:00','2020-05-05 20:50:49'),(6,'Eutychus fell from the third storey to the ground when Paul  prolonged his sermon at ','Troas ','Ephesus ','Miletus ','Corinth.','','','a','','post-utme','2006',58,'Admin','0000-00-00 00:00:00','2020-06-05 07:13:26'),(7,'Charismatic leaders in the Book of Judges arose in Israel to ','revive faith in Yahweh ','rally the tribe together ','lead the Israel to battles ','settle dispute','','','c','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-06-03 23:38:30'),(8,'What did God create on the fifth day? ','the firmament  ','the two great light ','water under the heaven ','living Creature','','','d','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-06 06:14:35'),(9,'Joshua and Caleb were from the tribe of ','Judah and Rueben ','Reuben and Dan ','Ephraim and Reuben ','Judah and Ephraim','','','d','','post-utme','2006',63,'Admin','0000-00-00 00:00:00','2020-05-05 20:50:50'),(10,'Manahem, the son of Gadi reigned over Israel for ','eight years ','twenty years ','six month ','ten years.','','','d','','post-utme','2006',61,'Admin','0000-00-00 00:00:00','2020-06-01 16:49:21'),(11,'The death of Adonibezek in Bezek was a typical proof of ','cowardice ','nemesis ','insanity ','absurdity','','','b','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-05-04 10:21:48'),(12,'In order that Benjamin might be brought to Egypt, Joseph  ','Reuben ','Judah ','Simon ','Zebulon','','','c','','post-utme','2006',61,'Admin','0000-00-00 00:00:00','2020-06-03 16:31:47'),(13,'When Paul came to Rome, the first set of people to whom he preached were the ','Romans ','Jews ','Greeks ','Samaritans.','','','b','','post-utme','2006',58,'Admin','0000-00-00 00:00:00','2020-06-04 09:55:10'),(14,'The three sons of Noah Sdhem, Ham and ','Lot ','Hirah ','Cain ','Japeth.','','','d','','post-utme','2006',64,'Admin','0000-00-00 00:00:00','2020-06-04 16:42:04'),(15,'The renowned interpreters of the Mosaic Law in the time of Jesus were the ','Sadducees ','Scribes ','Herodians ','Pharisees','','','d','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-03 19:53:49'),(16,'The mother of Esau is ','Ruth ','Ester ','Rebecca ','Jezebel  ','','','c','','post-utme','2006',66,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:46'),(17,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) Who was the speaker? ','Joseph ','Jacob ','Job ','James','','','b','','post-utme','2006',73,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:43'),(18,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29)  When did he say this? ','When he was about to die ','When he was seriously sick ','When he offended God ','When his brother cheated him','','','a','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-06-05 22:20:30'),(19,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) What was his wish? ','he wanted to buried at Canaan in the cave at Ephron ','he wanted to be buried at Jericho ','he wanted to commune with his ancestors ','he wanted to be closed to his fathers.','','','a','','post-utme','2006',54,'Admin','0000-00-00 00:00:00','2020-06-05 08:30:12'),(20,'Who was authorized by God to go and liberate the Israelites the Egyptian bondage? ','Joshua ','Daniel ','Solomon ','Moses.','','','d','','post-utme','2006',60,'Admin','0000-00-00 00:00:00','2020-06-03 15:39:55'),(21,'The names of the two kings of Jericho destroyed by the Israelites during the conquest were ','Adonija and Haggith ','Shion and Og ','Zadok and Benaiah ','Hiram and Jeroboam.','','','b','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-06-01 20:20:10'),(22,'Who is an atheist? ','someone who does believe in God ','someone who rejects completely the idea of a divine being ','someone who believes that it is impossible to know if there is God or not ','someone who abuses religious people.','','','b','','post-utme','2006',61,'Admin','0000-00-00 00:00:00','2020-06-03 17:17:59'),(23,'What is meant by the Christian doctrine that God is Trinity? ','the idea started in Trinidad and Tobago ','God is three persons in one ','God is omnipotent ','God is the Holy Spirit','','','b','','post-utme','2006',57,'Admin','0000-00-00 00:00:00','2020-06-01 17:02:24'),(24,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus                              ','','','d','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-06-05 07:13:26'),(25,'The person who the Bible calls the son of consolation is ','Barsabas ','Barabbas ','Barnabas ','Bathsheba','','','c','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-05-04 18:32:57'),(26,'Who do people say the son of man is? Jesus asks this question to know people’s ','desires ','demand  ','mind ','opinion','','','c','','post-utme','2007',57,'Admin','0000-00-00 00:00:00','2020-05-06 09:49:40'),(27,'In Peter’s teaching,” God…………..the proud and gives grace to the humble','receives ','relegates ','resists ','restores.','','','c','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-05-04 18:25:29'),(28,'The lesson which Jesus teaches in the parable of the Good Samaritan is that your neighbor is','only your friend  ','your next of kin  ','a distant friend ','anyone who needs your  help','','','d','','post-utme','2007',50,'Admin','0000-00-00 00:00:00','2020-06-06 09:25:49'),(29,'Amram and Jochebad gave birth to : ','Mirian ','Jedida ','Jethro ','Hur','','','a','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-05 22:20:30'),(30,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Zipporah and Pauh ','Pauh and Miriam ','Shiphrah and Zipporah ','Shiprah and Puah','','','d','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-03 21:46:48'),(31,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2007',53,'Admin','0000-00-00 00:00:00','2020-05-04 18:17:40'),(32,'Daniel was delivered from the den of lions for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-05-03 16:56:12'),(33,'Which of the following carried Judah into captivity ','Pharaoh Neco of Egypt ','Goliath of Philistia ','Assyrian ','Nebuchadnezzar of Babylon','','','d','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-06-02 14:13:53'),(34,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','slaughter of all his sons ','city of Jerusalem ','feasting of the children of Israel ','','','b','','post-utme','2007',57,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:47'),(35,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-05-03 17:23:11'),(36,'The king of Persia who made it possible for the return of the exiles from Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2007',55,'Admin','0000-00-00 00:00:00','2020-06-03 19:53:06'),(37,'The meaning of Emmanuel is ','laughter ','“for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2007',60,'Admin','0000-00-00 00:00:00','2020-06-02 22:34:11'),(38,'“Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2007',51,'Admin','0000-00-00 00:00:00','2020-04-12 16:21:21'),(39,'One of the following said: “the lion has roared who will not fear? The Lord has spoken, who can  but prophesy?” ','Nathan ','Jeremiah ','Amos ','Hosea','','','c','','post-utme','2007',52,'Admin','0000-00-00 00:00:00','2020-05-03 17:04:29'),(40,'Where did Paul cure a slave girl who had a spirit of divination ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-06-03 17:54:16'),(41,'Joshua’s first victory was over the people of ','Ai ','Gibeon ','Gilgal ','Jericho','','','d','','post-utme','2007',48,'Admin','0000-00-00 00:00:00','2020-05-04 10:11:47'),(42,'Josiah’s reign was popular because of his ','allies ','victory ','violence ','reforms','','','d','','post-utme','2007',51,'Admin','0000-00-00 00:00:00','2020-06-05 14:28:50'),(43,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-06-03 14:44:46'),(44,'Who baptized the Ethiopian Eunuch? ','Paul ','peter ','Philip ','Rufus','','','c','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-04-12 16:22:43'),(45,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2007',58,'Admin','0000-00-00 00:00:00','2020-06-04 09:19:51'),(46,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah.','','','c','','post-utme','2007',55,'Admin','0000-00-00 00:00:00','2020-06-03 10:25:24'),(47,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2007',57,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:43'),(48,'The person who the Bible calls the consolation is:  ','Barsabbas ','Barabbas ','Barnabs ','Bathsheba','','','c','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-06-06 06:20:32'),(49,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','Slaughter of his son ','city of Jerusalem ','feasting of hiss children of Israel','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-04-28 17:39:27'),(50,'Daniel was delivered from the den of lion for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power.','','','b','','post-utme','2008',63,'Admin','0000-00-00 00:00:00','2020-06-06 09:27:58'),(51,'Name three places Christian religious people look up to find the truth about the nature of God','In the sacred scripture ','In the religious leader ','In the church ','In their conscience.','','','d','','post-utme','2008',49,'Admin','0000-00-00 00:00:00','2020-06-03 00:49:59'),(52,'Explain why Jesus was identified as the lamb by John (Jn:1:29 ) ','lamb of God is a figurative language which describes Christ sacrificial mission in the word ','he is being compared to the Passover Lamb that would atone for the sins of all world ','Because the lamb is attentive to his owner ','it shows patience, meekness, gentleness and innocence','','','b','','post-utme','2008',45,'Admin','0000-00-00 00:00:00','2020-06-05 22:20:30'),(53,'Who do people say the son of man is? Jesus asks this question to know people’s ','desire ','demand ','mind ','pinion','','','c','','post-utme','2008',52,'Admin','0000-00-00 00:00:00','2020-06-02 19:21:58'),(54,'In Peter’s teaching,” God…………the proud and gives grace to the humble ','receives ','relegates ','resists ','restores','','','c','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-06-04 16:47:29'),(55,'The lesson, who Jesus teaches in the parable of the Good Samaritan is that your neighbor is ','only your friend ','your next of king ','a distant friend ','anyone who needs your help','','','d','','post-utme','2008',43,'Admin','0000-00-00 00:00:00','2020-06-02 23:03:00'),(56,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus','','','d','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-06-04 11:53:53'),(57,'Which of the following carried Judah into captivity ','pharaoh  Neco of Egypt ','Goliath of philistia ','Assyrians ','Nebuchadnezzar of Babylon','','','d','','post-utme','2008',38,'Admin','0000-00-00 00:00:00','2020-05-04 18:42:36'),(58,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2008',63,'Admin','0000-00-00 00:00:00','2020-06-02 00:32:35'),(59,'Amram and Jochebad gave birth to : ','Miriam ','jedida ','Jethro ','Hur','','','a','','post-utme','2008',55,'Admin','0000-00-00 00:00:00','2020-06-02 19:15:10'),(60,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Ziporah and Puah ','Puah and Miriam ','Shiphrah and Zipporah ','Shiphrah and Puah','','','d','','post-utme','2008',53,'Admin','0000-00-00 00:00:00','2020-06-02 04:54:19'),(61,'The king of Persia who made it possible for the return of the exiles form Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-06-05 16:12:11'),(62,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2008',49,'Admin','0000-00-00 00:00:00','2020-06-02 21:01:28'),(63,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah','','','c','','post-utme','2008',46,'Admin','0000-00-00 00:00:00','2020-05-04 18:32:57'),(64,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2008',44,'Admin','0000-00-00 00:00:00','2020-06-02 20:29:37'),(65,'The meaning of Emmanuel is ','laughter ','for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-06-03 00:49:59'),(66,'Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-06-05 16:39:17'),(67,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2008',57,'Admin','0000-00-00 00:00:00','2020-06-04 15:35:42'),(68,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(69,'One of the following said: “the lion has roared who will not fear? ','Nathan ','Jeremiah ','Amos ','Hosea','','','a','','post-utme','2008',54,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:48'),(70,'Josiah’s reign was popular because of his ','Allies ','victory ','violence ','reforms','','','d','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-04 23:38:14'),(71,'Where did Paul cure a slave girl who had a spirit of divination? ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(72,'Who baptized the Ethiopian Eunuch? ','Paul ','Peter ','Philip ','Rufus','','','c','','post-utme','2008',46,'Admin','0000-00-00 00:00:00','2020-06-02 20:29:37'),(73,'Joshua’s first victory was over the people of ','Ai ','Gideon ','Gilgal ','Jericho ','','','d','','post-utme','2008',56,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:43'),(74,'“There shall be neither dew nor rain this year except by my word” Who said this?','Moses ','Pharaoh ','Elijah ','Esther ','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-06 13:41:06'),(75,'In the case before Solomon over the deal and the living, child the mother of the dead child supported. ','Giving the living child to her opponent ','Killing the living child ','joint ownership of the living child ','king Solomon having the living child','','','b','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-04 15:17:57'),(76,'Before Moses died. God appointed ………. to succeed him ','Aaron ','Balaam','Joshua ','Manasseh ','','','c','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-04 23:38:14'),(77,'Those bitten by the serpent were treated by ','Drinking from the Red sea ','fasting for seven day ','looking at the bronze serpent ','call upon the lord ','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-05-06 18:15:56'),(78,'In order that Benjamin might be brought to Egypt, Joseph detained ','Ruben ','Levi ','Jacob ','Simoen ','','','d','','post-utme','2009',51,'Admin','0000-00-00 00:00:00','2020-06-03 17:17:59'),(79,'Those inspired by God to lead the tribes of Israel in battle were the ','Judges  ','Captains of Guard  ','priest  ','prophet  ','','','a','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-06-02 00:05:53'),(80,'God told Samuel that he, would punish Eli because he  ','did not correct his son’s sinful behavior ','did not offer sacrifice as the: Law ','did not warn the people of Israel to stop surfing ','Warned his sons against rape and drunkenness','','','a','','post-utme','2009',47,'Admin','0000-00-00 00:00:00','2020-06-04 05:15:45'),(81,'The sun stood still when ','Moses led Israel across the Red sea ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorite at Gideon ','','','d','','post-utme','2009',50,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:48'),(82,'Who is reputed for pulling down the altar of Baal at the risk of annoying his father? ','Joseph ','Jesse ','Gideon   ','Samuel ','','','c','','post-utme','2009',53,'Admin','0000-00-00 00:00:00','2020-06-02 00:04:40'),(83,'In the trade treated between King Solomon and Lebanon, Solomon was to supply wheat and oil while Hiram was to supply','Grains only ','precious stories ','wheat advice ','Timber ','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-01 17:30:28'),(84,'Which prophet cried thus “woe is me” for lost, I am a man of unclean lips ','Hosea ','Jeremiah ','Isaiah ','Micah ','','','c','','post-utme','2009',46,'Admin','0000-00-00 00:00:00','2020-06-02 17:39:44'),(85,'Hosanna means  ','Ride on in majesty ','Ride on Glory ','Ride on to die ','Save me','','','d','','post-utme','2009',54,'Admin','0000-00-00 00:00:00','2020-06-06 13:41:06'),(86,'The conversion of Paul was made possible by','Simeon ','Zacchaccus ','the risen Lord ','Mathew ','','','c','','post-utme','2009',49,'Admin','0000-00-00 00:00:00','2020-06-06 06:20:32'),(87,'Let his habitation be made desolate, and let there be no one to live in it’ who is being referred to here?  ','King soul ','Judas Iscariot ','Stephen ','Barnabas ','','','b','','post-utme','2009',57,'Admin','0000-00-00 00:00:00','2020-06-05 16:39:17'),(88,'The proconsul when Paul arrived in commit was called','Festus ','portions ','Pilate ','Gallio ','','','d','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-06-04 11:55:48'),(89,'‘Now I known that Lord has sent his angel to deliver me ……”who said this? ','Joseph ','Moses ','Paul ','Peter ','','','d','','post-utme','2009',47,'Admin','0000-00-00 00:00:00','2020-06-03 19:53:49'),(90,'The seven deacons were appointed by ','conduct a mission to the Gentiles','Replace the twelve ','Lead the church in Jerusalem ','Help in the distribution of food ','','','d','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-06-02 23:03:00'),(91,'What did God create on the 6th day ','The firmament ','light ','Dry land and sea ','man and living creatures ','','','d','','post-utme','2009',47,'Admin','0000-00-00 00:00:00','2020-06-05 16:07:18'),(92,'Joshua’s first victory was in ','Ai ','Gibeon ','Jordan ','Giligal ','','','c','','post-utme','2009',40,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:48'),(93,'In the parable of the sower, the seeds on the good ground represent those who ','Accept and live by the world of God ','feed the poor ','Have and love riches ','Give alms in market places ','','','a','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-06-02 00:32:35'),(94,'Which prophet encouraged Jeroboam I to  revolt at the initial stage? ','Micaiah ','Jeremiah ','Nathan ','Joel ','','','d','','post-utme','2009',55,'Admin','0000-00-00 00:00:00','2020-06-04 16:42:04'),(95,'‘This had is gone: and where shall I go’ who is being referred to here ','Isaac ','Joseph ','Peter ','Silas ','','','b','','post-utme','2009',47,'Admin','0000-00-00 00:00:00','2020-06-01 22:48:48'),(96,'According to Psalm 51, the sacrifice acceptable to God is','A clean hear ','Obedience ','A blemish less lamb ','A broken spirit ','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-02 17:32:10'),(97,'A would –be apostle who puts his hand to the plaughjsa and looks back lacks ','faith ','Kindness ','Repentance ','Total commitment ','','','d','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-06-01 22:36:17'),(98,'For which of these prophets of God did the Bible record explicitly to have abandoned an agribusiness for a call to serve God? ','Elisha ','Ezekiel ','Elijah ','Obadiah.','','','a','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-06-04 07:43:17'),(99,'Why did David spare the life of Saul at Ziph? ','he recognized Gods anointing on Saul ','Saul was also an Israelite ','He did not want blood shed ','He was Saul’s in- law','','','a','','post-utme','2010',58,'Admin','0000-00-00 00:00:00','2020-06-03 12:32:46'),(100,'Deborah was a judge when Israel was under the yoke of ','Moab ','Midian ','Canaan ','Philistine','','','c','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:46'),(101,'The treatment of those  bitten by fiery serpent was to ','drink from the Red sea ','look at the bronze serpent ','fast for seven days ','call upon the lord','','','b','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-04-28 17:34:07'),(102,'Which of these was detained by Joseph in order that Benjamin might be brought to Egypt ','Reuben ','Levi ','Judah ','Simon','','','d','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-05-04 18:57:04'),(103,'In the biblical account of creation, man was permitted to ','plant fruit trees for food ','water the garden ','make garment of hides and skin ','name all the creatures','','','d','','post-utme','2010',49,'Admin','0000-00-00 00:00:00','2020-05-03 17:14:14'),(104,'Each of these spies sent out by Moses on God’s command to report on the nature of the promised land was a ','great warrior ','wise judge ','priest ','leaders in his own tribe','','','d','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-06-03 00:28:51'),(105,'God reveal to Samuel that he was going to punish Eli because he ','did not correct his sons sinful behavior ','did not offer sacrifice as the law required ','did not warn the people of Israel to stop sinning ','warned his sons but did not punish them','','','d','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(106,'The sun stood still when ','Moses led the Israelites out of Egypt ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorites at Gideon','','','d','','post-utme','2010',56,'Admin','0000-00-00 00:00:00','2020-05-03 17:47:17'),(107,'When was this statement made? ‘I repent that I Made Saul king \\'','at the anointing of Saul ','When Saul failed to ray ','When Saul disobeyed God over Amalek ','When Saul finished the morning offering','','','c','','post-utme','2010',55,'Admin','0000-00-00 00:00:00','2020-05-03 17:23:11'),(108,'The commander of David’s army was ','Abner ','Joab ','Abiathar ','Adonijah','','','b','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-06-05 06:55:18'),(109,'That was the sin of David that involved Bathseba? ','Murder ','adultery ','dishonesty ','arrogance','','','a','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-06-03 20:00:32'),(110,'What is the meaning of Emmanuel? ','Son of Emmaus ','God is our Redeemer ','God with us ','Saviour','','','c','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(111,'What specific reply did John the Baptist give to the soldiers during his preaching ','collect no more than is appointed you ','do not begin to say to yourselves: we have Abraham as our father ','bear fruits that befit repentance ','be content with your wages','','','d','','post-utme','2010',55,'Admin','0000-00-00 00:00:00','2020-06-04 10:05:36'),(112,'Jesus taught that one should make friends quickly with one’s ','enemy ','neighbor ','master ','accuser','','','d','','post-utme','2010',57,'Admin','0000-00-00 00:00:00','2020-06-02 23:31:40'),(113,'The Pharisees and the Scribes accused the disciples of Jesus transgressing the tradition of the elders because they ','did not regard synagogue rules ','did not pray before meals ','ate with unwashed hands ','disobeyed the elders','','','c','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:46'),(114,'If anyone would be first, he must be last of all and servant of all. What does this saying of Jesus teach? ','endurance ','lack of ambition ','humility ','relaxation','','','c','','post-utme','2010',48,'Admin','0000-00-00 00:00:00','2020-06-05 13:05:47'),(115,'Which religious groups asked Jesus about payment of taxes to Ceaser? ','Pharisees and Sadducces ','Pharisees and Herodians ','Sadducces and herodians ','Herodians and Zealots','','','b','','post-utme','2010',43,'Admin','0000-00-00 00:00:00','2020-05-03 05:39:59'),(116,'To whom was the body of Jesus Christ given for burial after His death? ','Nicodemus the Pharisee ','Simon of Cyrene ','Simon the disciple ','Joseph of Arimathea.','','','b','','post-utme','2010',54,'Admin','0000-00-00 00:00:00','2020-06-03 08:50:55'),(117,'Paul was accused of apparently being a preacher of foreign divinities in Athens because he preached Jesus and the ','Cross ','Law ','resurrection ','second coming','','','c','','post-utme','2010',51,'Admin','0000-00-00 00:00:00','2020-06-01 21:55:41'),(118,'What specifically makes Samson a unique prophet of God? ','He was a Nazarene ','He loved honey ','He killed many at his death ','He spoke with power in riddles','','','a','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-05-04 18:50:19'),(119,'“It is not the sound of shouting for victory, or the sound of the cry of defeat, but the sound of singing that I hear” When was this statement made? ','at the consecration of the Israelites ','at the crossing of the Red Sea ','during the fall of Jericho ','in a strange worship of a god','','','d','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-06-05 23:41:23'),(120,'“Blessed be the Lord God of Israel is a hymn of praise by ','the virgin Mary at the Annunciation ','Zachariah at the birth of John the Baptist ','Simeon at the presentation of Jesus in the temple ','Elizabeth at the visit of Mary','','','b','','post-utme','2010',55,'Admin','0000-00-00 00:00:00','2020-06-02 16:50:26'),(121,'The shema emphasizes the ','unity of God ','richness of the spirit of God ','omnipotence of God ','crucial role o’ Israel in the world.','','','c','','post-utme','2010',54,'Admin','0000-00-00 00:00:00','2020-06-04 08:05:52'),(122,'The expression ‘dry bones’ in Ezekiel refers to ','an Israelites proverb ','the whole house of Israel ','the slain in the valley ','sinful Israelites and Judean','','','b','','post-utme','2010',56,'Admin','0000-00-00 00:00:00','2020-06-01 20:20:10'),(123,'What Josiah, the king of Judah, is best remembered for in Jewish history is ','His ability to destroy all the shine of Baals','His order that the bones and tombs of the prophets of God must be preserved ','His strong opposition to Pharaoh-Neco of Egypt ','His reparation of the temples of God','','','d','','post-utme','2011',52,'Admin','0000-00-00 00:00:00','2020-05-04 10:11:46'),(124,'After receiving an order from God, Jonah went down to…………….  ','Joppa ','Tarshish  ','Nineveh','Jerusalem ','','','b','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-25 23:11:50'),(125,'True religion, according to Amos’ submission, is the one in which  ','God is always appeased with sacrifices and tithes ','Foods and drinks are served as a mark of love ','Justice and righteousness flows like an endless stream  ','Feast and solemn assemblies play important roles ','','','c','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-06-01 21:55:41'),(126,'The last born of Gomer for Hoshea was ………….  ','Jezreel','Loammi ','Diblaim  ','Loruhamah ','','','b','','post-utme','2011',49,'Admin','0000-00-00 00:00:00','2020-06-04 08:59:04'),(127,'According to Paul in Romans, the law and the prophets bore witness to the righteousness of God but man could not be justified until he  ','Had faith in Jesus ','Saw the glory of God ','Made a serious personal effort ','submitted wholly to the law ','','','a','','post-utme','2011',53,'Admin','0000-00-00 00:00:00','2020-04-28 16:20:47'),(128,'One of the following was not among the religious sects in the New Testament ','The Pharisees','The Nazarenes ','The Essences   ','The Sadducees','','','c','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-05 14:28:50'),(129,'One of the following  is not correct about the order of creation in the Creation Stories ','the evening came before the morning ','darkness came before light','animals were created before man ','the morning came before the evening','','','d','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-06-03 16:31:47'),(130,'What was Cain’s immediate reaction to the acceptance of Abel’s offering?','He offered another sacrifice ','He was angry and his countenance fell ','He was angry with God','He was angry with Abel ','','','b','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-06-06 06:03:06'),(131,'Pick the odd out of the following characters:  ','Saul   ','David','Jonathan','Solomon','','','c','','post-utme','2011',48,'Admin','0000-00-00 00:00:00','2020-05-04 18:50:20'),(132,'“Talitha cumi”  means  ','Dorcas, Arise','Little girl, I say to you, arise ','Thy will be done','Jesus is coming','','','b','','post-utme','2011',57,'Admin','0000-00-00 00:00:00','2020-06-03 00:49:59'),(133,'Who according to James blaspheme the honourable name by which Christians are called','Non believers','Pagan rulers','Antichrists','Rich people','','','d','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-06-04 16:42:04'),(134,'Who was the last person Jesus appeared to after his resurrection according to Paul?','Mary Magdalene','Joseph of Arimathea  ','Paul','Thomas','','','c','','post-utme','2011',46,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(135,'How many disciples of Jesus Christ were fishermen? ','two  ','three  ','four','five','','','c','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-02 02:39:16'),(136,'Who among the seven deacons was an evangelist who had four daughters who prophesied?  ','Stephen','Philip ','Barnabas   ','Nicholas','','','b','','post-utme','2011',50,'Admin','0000-00-00 00:00:00','2020-06-04 16:49:21'),(137,'“God has given your enemy into your hand this day, now, therefore, let me pin him to the earth with one stroke of the spear, and I will not strike him twice”. This statement was made to David by','Abishai ','Abner    ','Ahimelech ','David’s armour bearer','','','a','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-06-05 13:05:47'),(138,'The phrase ‘you cows of Bashan’ referred to ','Cows in the land of Bashan  ','The fat and greedy men of Israel who oppress the priest ','The fat and greedy women of Israel who oppress the poor  ','The fat rich women of Samaria who oppress the poor.','','','d','','post-utme','2011',53,'Admin','0000-00-00 00:00:00','2020-06-04 12:16:02'),(139,'The book of _______ mostly emphasized social justice ','Amos ','Ezekiel  ','Hoshea  ','Isaiah.','','','a','','post-utme','2011',49,'Admin','0000-00-00 00:00:00','2020-05-04 18:25:29'),(140,'Among the spiritual gifts, love is supreme because it ','facilitates development ','gives room for friendship ','has eternal value ','promotes understanding','','','c','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(141,'John the Baptist describes Jesus to his two disciples as the ','beloved Son of God ','great one of Israel ','holy one of God','lamb of God.','','','d','','post-utme','2011',54,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(142,'Joseph’s brothers hated him the more because ','he dreamed about his future dominion over his family members ','he used to give his father evil reports about them ','his father had him at his old age ','his father made a special robe for him','','','a','','post-utme','2011',54,'Admin','0000-00-00 00:00:00','2020-05-03 17:31:32'),(143,'After eating the forbidden fruit Adam’s and Eve’s eyes opened and they realized that they ','had sinned against God','had disobeyed God   ','were naked  ','had been deceived by the serpent.','','','c','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-09 11:39:08'),(144,'What did Ahab do to Prophet Micaiah for speaking the truth about the war between Israel and Syria? ','he promoted him ','he gave him a gift ','he denied him any fox ','he imprisoned him.','','','d','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-06-04 11:55:48'),(145,'The Amalekites who opposed the Israelites in the wilderness were from the lineage of  ','Benjamin ','Jacob ','Esau ','Reuben','','','c','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-01 22:16:23'),(146,'During the period of three and a half years of drought in Israel, the man who hid one hundred prophets of God in a cave was  ','Isaiah  ','Lisha ','Elijah ','Obadiah','','','d','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-03 01:56:55'),(147,'During his first missionary journey, Paul first recorded sermon was delivered at  ','Perga   ','Iconium ','Antioch','Lystra ','','','c','','post-utme','2011',54,'Admin','0000-00-00 00:00:00','2020-06-06 17:09:24'),(148,'In his second letter to the Christians in Thessalonians, Paul admonished them to have nothing to do with anyone who refused to obey what he wrote in the letter. What did Paul think would happen to the person?  ','The person would be encouraged  ','The person would be ashamed  ','The person would be disturbed  ','The person would repent','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-05-28 14:27:57'),(149,'In the Sermon on the Mount, the meek are blessed because  ','They shall see God  ','They shall be exalted  ','They shall inherit the earth  ','They shall be called sons of God ','','','b','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-03 20:02:33'),(150,'Which of the following is not a natural miracle:  ','Stilling of the storm  ','Walking on the sea  ','Raising of Lazarus from the dead  ','Feeding the five thousand','','','d','','post-utme','2012',46,'Admin','0000-00-00 00:00:00','2020-06-05 23:25:07'),(151,'The prophet whose message was primarily on social justice and true religion is  ','Isaiah  ','Agabus  ','Amos  ','Jeremiah','','','d','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-02 22:34:11'),(152,'The prophet who prophesied that Paul would be arrested in Jerusalem is  ','Isaiah  ','Agabus  ','Philip  ','Stephen  ','','','b','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-06-06 06:14:35'),(153,'One of the lessons one can derive from the story of Deborah the Prophetess is that  ','Women are not good warriors  ','Women should not be allowed to take leadership roles  ','Women’s rights should be fought for by all ','God can use anyone regardless of their gender and tribes.','','','b','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-02 21:33:16'),(154,'One of the following is not among the reasons why Jesus taught in Parables  ','to fulfill the prophecy in Psalm 78:2  ','to create understanding  ','to make people learn the unknown through the known  ','to show the omniscient power of Jesus','','','b','','post-utme','2012',46,'Admin','0000-00-00 00:00:00','2020-06-02 17:49:19'),(155,'The disciple in Damascus who prayed for Saul (Paul) to receive his sight after his conversions was  ','Ananias ','Sapphira  ','Barnabas  ','Thomas ','','','a','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-04 15:17:57'),(156,'According to James, one of the causes of wars among Christians is ','their passions  ','their wickedness  ','their faith without work  ','their pride','','','a','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-02 19:54:32'),(157,'One of the following was not among the decisions reached at the Council of Jerusalem concerning the Gentiles who became Christians:  ','That Gentiles should obtain from what has been sacrificed to idols  ','The Gentiles should abstain from blood  ','That Gentiles should abstain from what is strangled ','That Gentiles should abstain from love of the world ','','','d','','post-utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-01 12:47:13'),(158,'“Thy glory, O Israel upon thy high places! How are the mighty fallen! Tell it not in the streets of Ashkelon… How  are the mighty fallen in the midst of the battle!” The above dirge was written by David when  ','He killed Goliath  ','Uriah the Hittite died  ','Saul and Jonathan died  ','Abner was killed by Joab','','','c','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-05 08:30:12'),(159,'Who was one of the Seven Deacons who had four daughters who were prophetesses?  ','Nicolaus  ','Stephen  ','Prochorus  ','Philip ','','','d','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(160,'According to the Letter to the Hebrews, why should Christians lay aside every weight and sin which clings so closely?  ','Sin is contagious  ','Christian can easily be influenced by sinners  ','Christians are surrounded by so great a cloud of witness  ','No sinner will inherit the kingdom of God ','','','c','','post-utme','2012',52,'Admin','0000-00-00 00:00:00','2020-05-04 18:50:18'),(161,'“To obey is better than sacrifice” came from  ','Prophet Daniel  ','Prophet Ezekiel  ','Prophet Elijah  ','Prophet Samuel ','','','d','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-02 19:41:52'),(162,'The three sons of Saul who lost their live on Mount Gilboa were  ','Jonathan, Ishbosheth and Abinadab  ','Abinadab, Jonathan and Ishbosheth  ','Jonathan, Abinadab and Malchisua  ','Ishbosheth, Malchishau and Abinadab','','','c','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-06-02 13:34:07'),(163,'The original name of Shadrach was  ','Daniel  ','Mishael  ','Hananiah  ','Azariah','','','c','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-06-04 17:25:08'),(164,'The person who was invited to nurse Moses was ','Jochebed  ','Puah  ','Shiphrah  ','Miriam ','','','a','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-06-05 16:01:12'),(165,'“… But let judgment run down as waters, and righteousness as a mighty stream… “Fairness, judgment and righteousness were set aside during the time of  ________ for burnt and meat offerings.','Amos  ','Hosea  ','Ezekiel  ','Hezekiah ','','','a','','post-utme','2012',54,'Admin','0000-00-00 00:00:00','2020-06-01 22:36:17'),(166,'Eli’s inability to discipline his sons led to all the following except  ','God’s curse on his family  ','the extension of his life span  ','the cancellation of priesthood from his lineage','the death of his sons','','','b','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-06-05 14:28:50'),(167,'Who was the King of Judah who witnessed the second deportation?  ','Gedaliah  ','Jehoiachin  ','Zedekiah ','Jehoiakim','','','c','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(168,'Paul, the apostle to the gentile, was a native of  ','Perga in Pamphylis  ','Rome  ','Jerusalem  ','Tarsus ','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-06-01 20:20:10'),(169,'In the Sermon on the Mount, Jesus taught his disciples that whenever they faced persecution, they should  ','be more serious with their drive for souls ','be rejoiced and be exceedingly glad  ','withdraw and  be less active  ','resist persecution and fight for their rights  ','','','b','','post-utme','2012',55,'Admin','0000-00-00 00:00:00','2020-06-04 07:43:17'),(170,'According to Peter, Judgment of God must first begin in  ','the house of God  ','the public places  ','the midst of criminals ','the government auditoria ','','','a','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-06-02 22:04:55'),(171,'Paul told the believers in Corinth that no one can say Jesus is Lord except by  ','knowledge  ','revelation  ','grace  ','the Holy Spirit ','','','a','','post-utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-05 16:07:18'),(172,'Render to Caesar the things that they are Caesar’s and to God the things are God’s, the above quotation emphasizes  ','Obedience to divine authority  ','Striking a balance between civil and divine authorities ','Disobedience to civil authority  ','Total rejection of both divine and civil authorities','','','b','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-06-03 22:25:14'),(173,'The women sang and said David slain his ten thousands and Saul his  ','five thousands   ','thousand  ','thousands   ','six thousand','','','c','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-06-06 06:03:06'),(174,'Israel went into Assyria captivity in','720BC  ','730 AD   ','750BC','722 BC','','','d','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-05 23:25:07'),(175,'A prophet mostly emphasized the holiness of God. This prophet was  ','Hosea  ','Jeremiah  ','Ezekiel   ','Isaiah','','','d','','post-utme','2013',56,'Admin','0000-00-00 00:00:00','2020-05-04 18:42:36'),(176,'One of the following was not among the religious sects in the New Testament  ','The Pharisees   ','The Nazarenes','The Essenes','The Sadducees','','','c','','post-utme','2013',48,'Admin','0000-00-00 00:00:00','2020-06-05 16:39:17'),(177,'“Talitha cumi” means','Dorcas, Arise   ','Little girl, I say to you, arise  ','Thy will be done','Jesus is coming','','','b','','post-utme','2013',43,'Admin','0000-00-00 00:00:00','2020-05-03 17:47:17'),(178,'Who was the secretary employed by Jeremiah to write his prophecy?','Amanuensis  ','Amos  ','Baruch  ','Joshua','','','c','','post-utme','2013',42,'Admin','0000-00-00 00:00:00','2020-06-04 08:05:52'),(179,'Who among the seven deacons was an evangelist  who had four daughters who prophesied?  ','Stephen  ','Philip   ','Barnabas   ','Nicholas','','','b','','post-utme','2013',49,'Admin','0000-00-00 00:00:00','2020-05-06 07:44:53'),(180,'The son of Solomon who made unwise decisions was ….','Jeroboam      ','Rechoboam','Rehoboam    ','Asa','','','c','','post-utme','2013',49,'Admin','0000-00-00 00:00:00','2020-06-03 19:53:06'),(181,'The book of ____ mostly emphasized social justice','Amos   ','Ezekiel   ','Hoshea','Isaiah','','','a','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-05 14:35:45'),(182,'In one of the missionary journeys, Paul was stoned   to a state of coma in  ','Antioch in Pisidia   ','Iconium  ','Lystra   ','Antioch of Syria','','','c','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-06-03 23:38:30'),(183,'Moses spoke  to the Israelites to fear not, but be calm, confident and see the salvation of God at  ','Pi-Hahirotti   ','Meribah   ','Wilderness of Sinai ','d.Elim','','','a','','post-utme','2013',56,'Admin','0000-00-00 00:00:00','2020-06-05 16:39:17'),(184,'One of the following is not in the Pentateuch  ','Exodus    ','Judges     ','Leviticus   ','Numbers','','','b','','post-utme','2013',52,'Admin','0000-00-00 00:00:00','2020-05-04 18:42:36'),(185,'The sons of Samuel who did not walk in his ways were:','Phinehas and Hophni    ','Hophni and Amos  ','Joel and Phinehas        ','Abijah and Joel','','','d','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-03 20:02:33'),(186,'What was the second temptation of Jesus according to the Gospel according to Luke?','The Devil wanted Jesus to worship him  ','The Devil wanted Jesus to deny God','The Devil wanted Jesus to jump from the pinnacle of the Temple    ','The devil wanted Jesus to turn stones to bread','','','a','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-20 13:10:09'),(187,'Jonah refused to go to Nineveh because  ','Ninevites were in human and wicked','God was merciful, gracious and could forgive them  ','he was timid to deliver the message  ','he did not want to endanger his life','','','b','','post-utme','2013',57,'Admin','0000-00-00 00:00:00','2020-05-03 17:31:33'),(188,'‘Those who honour me I will honour , and those who despise  me shall be lightly esteemed.’ Who was being addressed?  ','Eli   ','Samuel','Hophni   ','Joshua','','','a','','post-utme','2013',47,'Admin','0000-00-00 00:00:00','2020-06-03 08:50:55'),(189,'Amos reference to ‘cows of Bashan’ was a metaphoric allusion to  ','women of Samaria  ','rich people of Samaria   ','poor people of Samaria  ','illustrious sons of Samaria','','','a','','post-utme','2013',48,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:46'),(190,'Amos explained true religion as  ','singing of praises to God  ','self-righteousness','fasting and praying  ','being just and righteous','','','d','','post-utme','2013',52,'Admin','0000-00-00 00:00:00','2020-06-06 17:09:24'),(191,'Who was the prophet who said “I will put my law within them, and will write it upon their heart….”?  ','Isaiah  ','Jeremiah','Hosea   ','Amos','','','b','','post-utme','2013',58,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:47'),(192,'The relationship between God and Israel was described by Hosea as that of a','faithless wife and a loving husband','a loving wife and a faithless husband  ','a penitent wife and aggressive husband  ','a faithless husband and a faithless and nonchalant wife.','','','d','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-04-28 17:37:40'),(193,'One of the following is not among the “I am” Sayings of Jesus  ','I am the bread of life','I am the gate of life','I am the good shepherd','I am the way','','','b','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-06-06 13:41:06'),(194,'In what way was Moses a prototype of Jesus Christ?','Moses was a great prophet who led Israel out of Egypt','Moses did not die naturally','Moses appeared to Jesus on Mount of Transfiguration','Moses was persecuted by his people','','','a','','post-utme','2013',53,'Admin','0000-00-00 00:00:00','2020-06-05 07:20:23'),(195,'“O dry bones, hear the word of the Lord… “The dry bones mentioned by Prophet Ezekiel  in the statement above refer to the','Amalakite king and soldiers  ','Whole house of Israel  ','Hittites and the Assyrians  ','Babylonians troubling Israel','','','b','','post-utme','2013',55,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(196,'The eunuch who went to Jerusalem to worship in Acts 8:27 was a  ','minister of God  ','minister of Candace the queen Gaza  ','minister of Candace the king of the Ethiopians','minister of Candace the queen of the Ethiopians','','','d','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-03 20:02:33'),(197,'At the time of creation, the river that flowed out of Eden to water the garden divided into','Pishon, Hauijah, Gihon and Tigris','Tigris, Cush, Assune and Hauijah','Pishon, Tigris, Gihon and Euphrates','Euphrates, Gihon, Assyna and Tigris','','','c','','wassce','2005',69,'Admin','2016-11-12 11:56:06','2020-06-06 06:14:35'),(198,'During the creative activity of God, He made the beasts','in His own image','to multiply on the earth','according to their kinds','to serve the needs of man','','','c','','wassce','2005',66,'Admin','2016-11-12 11:56:06','2020-06-07 19:15:48'),(199,'“Two nations are in your womb, and two peoples born of you shall be divided”. The two people are','Moses and Jacob','Jacob and Benjamin','Esau and Ishmael','Esau and Jacob','','','d','','wassce','2005',48,'Admin','2016-11-12 11:56:06','2020-06-05 22:12:32'),(200,'Moses was nursed by','Pharaoh’s daughter','Rachael','his mother','Rebecca','','','c','','wassce','2005',54,'Admin','2016-11-12 11:56:06','2020-05-04 18:50:18'),(201,'The name Ichabod means','Yahweh is God','beloved of  Yahweh','I have asked him from the Lord','the glory has departed from Israel.','','','d','','wassce','2005',60,'Admin','2016-11-12 11:56:06','2020-06-05 15:31:42'),(202,'When Saul and his troops came after David in the wilderness of Ziph, David and Abishai went to Saul’s camp \t\tto','slay him','surprise him','capture him alive','dialogue with him','','','b','','wassce','2005',59,'Admin','2016-11-12 11:56:06','2020-06-06 06:14:35'),(203,'Saul’s death on Mount Gilboa was in consequence of his','sin of disobedience','resorting to the witch of Endor','loss of confidence in David','armour bearer’s obedience','','','a','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-05-03 17:04:30'),(204,'Naboth would not give the vineyard to Ahab because it was','under cultivation','inherited from his father','better than Ahab’s offer','undervalued by the king','','','b','','wassce','2005',55,'Admin','2016-11-12 11:56:06','2020-06-02 14:47:28'),(205,'A good example of parental responsibility was demonstrated by','Samuel','Eli','David','Asa','','','b','','wassce','2005',66,'Admin','2016-11-12 11:56:06','2020-06-07 19:15:46'),(206,'When God said to Solomon, “Ask what I shall give you”, he requested for','long life and prosperity','power and assistance against his enemies','peace and understanding to serve God','wisdom and understanding to serve the people','','','d','','wassce','2005',53,'Admin','2016-11-12 11:56:06','2020-06-04 09:19:51'),(207,'The remote cause of the fall of Jerusalem was','Josiah’s death at the battle of Megiddo','the military might of Israel’s enemies','the sins of Manasseh, the king','Judah’s with holding of tribute to Nebuchadnezzar','','','c','','wassce','2005',57,'Admin','2016-11-12 11:56:06','2020-06-05 06:55:18'),(208,'Nebuchadnezzar punished those who refused to worship the golden image by throwing them into','the River Nile','the rivers of  Babylon','a furnace','a lion’s den','','','c','','wassce','2005',54,'Admin','2016-11-12 11:56:06','2020-06-05 14:35:45'),(209,'The wife of Hosea was called','Gomer','B . Rahab','Jael','Hagar','','','a','','wassce','2005',54,'Admin','2016-11-12 11:56:06','2020-06-04 23:38:14'),(210,'As a reward for their faith, Shadrach, Meshack and Abednego were','asked to return to Jerusalem','granted respectable positions','offered money by the king','made to praise Yahweh','','','b','','wassce','2005',49,'Admin','2016-11-12 11:56:06','2020-05-05 18:27:24'),(211,'Who among the prophets was referred to as a prophet of doom?','Isaiah','Ezekiel','Amos','Jeremiah','','','d','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-06-04 08:59:04'),(212,'Jonah typified Jesus Christ when he','surrendered himself to be swallowed by the fish','offered to lose his life that others might be saved','rejected the message of God','announced destruction for the Ninevites','','','b','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-06-06 06:10:46'),(213,'The message of Amos was mainly about','the love of God','man’s response to God’s love.','the holiness of God','social justice','','','d','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-06-03 12:47:33'),(214,'Before Joseph and Mary came together, she was found to be with a child','to be called Jesus','of the Holy Spirit','who shall be called Emmanuel','spoken of by the prophets','','','b','','wassce','2005',56,'Admin','2016-11-12 11:56:06','2020-06-04 15:17:57'),(215,'“How is it that you, a Jew, ask a drink of me, a woman of \tSamaria?” The speaker was surprised because','Jesus was God and not human','the Jews could only buy water from Samaria','the Jews had no dealings with Samaria','it was unlawful for a man to receive water from a woman','','','c','','wassce','2005',58,'Admin','2016-11-12 11:56:06','2020-05-01 09:38:03'),(216,'Jesus said “Not everyone who says to me ‘Lord, Lord,’ shall enter into the kingdom of heaven, but he who','hears the word of God”.','prays and fasts’','prophesies in my name”','does the will of my father”','','','d','','wassce','2005',61,'Admin','2016-11-12 11:56:06','2020-06-03 17:17:59'),(217,'According to Jesus, a disciple must not','hate his parents and family','bear his own cross','be a poor man','count the cost','','','d','','wassce','2005',62,'Admin','2016-11-12 11:56:06','2020-05-04 18:57:04'),(218,'Instead of being unnecessarily anxious about life and the affairs of this world, Jesus taught us to','relax our minds and wait for the manna from above','seek first the kingdom of God and its righteousness','seek water baptism and qualify for divine healing','repent of our sins and preach the gospel.','','','b','','wassce','2005',54,'Admin','2016-11-12 11:56:07','2020-06-03 16:39:32'),(219,'According to Jesus, the seventy disciples who returned from a successful missionary work should rejoice because','the demons were subject to them','the sick were healed through their ministry','the lame walked just at their command','their names were written in heaven','','','d','','wassce','2005',62,'Admin','2016-11-12 11:56:07','2020-06-05 14:28:50'),(220,'The seeds that fell among thorns represent those who hear the word of God but lose it because','they refuse to be baptized in water','their parental background does not allow them to believe','the cares of the world and delight in riches choke the word','the unbelievers do not permit new converts to receive the word','','','c','','wassce','2005',61,'Admin','2016-11-12 11:56:07','2020-06-06 06:20:32'),(221,'The rich man who ignored the needs of Lazarus lacked','a sense of proportion','parental care','human sympathy','spiritual contentment','','','a','','wassce','2005',51,'Admin','2016-11-12 11:56:07','2020-05-06 04:54:21'),(222,'Abiding in Christ’s love demands that we','have hope for the future','keep His commandments','imitate one another','manifest the peace of God','','','b','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-06-07 19:15:47'),(223,'According to Jesus, a good shepherd lays down his life for the sheep but a hireling','sells them off for personal profit','abandons the sheep in the face of danger','protects some of the sheep leaving others to danger','asks for better pay before doing his work.','','','b','','wassce','2005',55,'Admin','2016-11-12 11:56:07','2020-06-06 06:10:46'),(224,'The arrest of Jesus by his enemies was','an accident of faith','a result of his tough teaching','a fulfilment of the scriptures','a ploy to see his miraculous powers','','','b','','wassce','2005',54,'Admin','2016-11-12 11:56:07','2020-06-05 15:31:42'),(225,'The final trial of Jesus was presided over by','Herod','Caiaphas','the High Priest','Pilate','','','d','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-06-03 21:46:48'),(226,'Before his ascension, Jesus commissioned his disciples to go to all nations and','cast out demons','heal the sick','raise the dead','make disciples of them','','','d','','wassce','2005',55,'Admin','2016-11-12 11:56:07','2020-05-04 18:42:36'),(227,'The experience which totally changed Paul’s focus in life was his','witnessing the martyrdom of Stephen','determination to wipe out the church','participation in the council of Jerusalem','encounter with Jesus on the road to Damascus','','','d','','wassce','2005',58,'Admin','2016-11-12 11:56:07','2020-06-05 15:31:43'),(228,'Herod persecuted the early church because he was','opposed to the Apostles’ teaching','impressed by his growing popularity after killing James','unhappy that the Jewish leaders were not doing enough havoc to the apostles','asserting the extended powers granted him Rome.','','','b','','wassce','2005',60,'Admin','2016-11-12 11:56:07','2020-06-06 06:14:35'),(229,'One of the early Christians who sold his property and gave the money to the apostles was','Barnabas','Stephen','Barabbas','Matthias','','','a','','wassce','2005',51,'Admin','2016-11-12 11:56:07','2020-06-05 23:41:23'),(230,'Which of the following was not characteristic of the Early Church?','Constant change in leadership','Devotion to the teachings of the apostles','Breaking bread in members’ homes','Communal fellowship','','','a','','wassce','2005',61,'Admin','2016-11-12 11:56:07','2020-06-05 16:12:11'),(231,'“Father forgive them for they know not what they do” was the prayer said by','Philip','Peter','Paul','Stephen','','','d','','wassce','2005',58,'Admin','2016-11-12 11:56:07','2020-06-25 23:11:42'),(232,'Paul argued that Jesus died for us while we were yet sinners in order to','prove that he was not an ordinary man','show Gods’ love for sinful man','warn us to desist from sin','give us power to possess the earth','','','b','','wassce','2005',61,'Admin','2016-11-12 11:56:07','2020-06-02 17:49:19'),(233,'Paul, in Romans, taught that Christians are Abraham’s descendants by','grace','faith','circumcision','law','','','b','','wassce','2005',50,'Admin','2016-11-12 11:56:07','2020-05-30 12:48:20'),(234,'According to Romans, when civil authorities punish evil doers, they do so as the','agents of God’s wrath','supervisory authority','agents of the darkness of this world','representatives of angelic powers','','','a','','wassce','2005',60,'Admin','2016-11-12 11:56:07','2020-06-02 16:50:26'),(235,'Paul said he was not fit to be called an apostle because he','was not called like the others','was not a Jew','persecuted the Early Church','was only a distributor of letters','','','c','','wassce','2005',51,'Admin','2016-11-12 11:56:07','2020-06-03 16:59:52'),(236,'In Romans, Paul admonished Christians, in their dealings with secular powers, to','reject all secular laws','pray for the leaders','refuse to pay tax to them','respect the authorities','','','d','','wassce','2005',68,'Admin','2016-11-12 11:56:07','2020-06-03 00:49:59'),(237,'Paul taught that by our common faith in Jesus and baptism, the difference between Jews and Gentiles has become','permanent','temporal','irrelevant','real','','','c','','wassce','2005',60,'Admin','2016-11-12 11:56:07','2020-06-05 16:39:17'),(238,'The Philippians’ gifts to Paul were for','the growth of the church','his sustenance','distribution to the saints','other Christian prisoners','','','b','','wassce','2005',62,'Admin','2016-11-12 11:56:07','2020-06-06 06:20:32'),(239,'Which of the following does not relate to the new life in Christ?','Baptism','Circumcision','Grace of God','Faith','','','b','','wassce','2005',58,'Admin','2016-11-12 11:56:07','2020-06-04 16:42:04'),(240,'Paul taught the Colossians that the relationship between wives and their husbands should be as','is fitting in the Lord','the culture demands','is written in the law','the husband commands','','','a','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-06-03 21:46:48'),(241,'At the coming of the Lord, unbelievers will','be condemned','have a desolate land','be hit by famine','die in divine war','','','a','','wassce','2005',63,'Admin','2016-11-12 11:56:07','2020-06-05 16:12:11'),(242,'Paul compares the manifestations of spiritual gifts in individual members of the Church to the','unity of the human body','rights of the individual members of the Church','rights of the different parts of the body','unity of the Church','','','a','','wassce','2005',65,'Admin','2016-11-12 11:56:07','2020-06-03 16:59:52'),(243,'Paul wrote to the Thessalonians about idleness because he \tlearnt that they were','among the idlest people in Asia','forcing Christians to work in the Church','unwilling to give offerings','expecting the second coming of Christ','','','d','','wassce','2005',51,'Admin','2016-11-12 11:56:07','2020-06-05 07:20:23'),(244,'Paul appealed to Philemon to forgive Onesimus on the basis of','equality','righteousness','love','faith','','','a','','wassce','2005',66,'Admin','2016-11-12 11:56:07','2020-06-02 19:21:58'),(245,'James recommends the anointing oil of the elders because such anointing','prepares the sick for his last journey','makes the sick holy and righteous','promotes physical recovery','ensures forgiveness to the sick','','','d','','wassce','2005',68,'Admin','2016-11-12 11:56:08','2020-06-03 20:02:33'),(246,'Peter advised his fellow elders to tend the flock of God that was in their charge','with care','willingly','by example','domineeringly','','','a','','wassce','2005',65,'Admin','2016-11-12 11:56:08','2020-06-05 15:31:43'),(247,'In Timothy, Paul urges Christians to pray for kings and those in authority for the achievement of','a successful Christian life','godly and acceptable life','peace and exaltation in life','quiet and peaceable life.','','','d','','utme','2009',58,'Admin','2016-11-12 12:16:55','2020-06-02 16:31:56'),(248,'According to Galatians, one of the benefits of being a joint heir with Christ is having His Spirit in','worship','the heart','the body','prayers','','','b','','utme','2009',50,'Admin','2016-11-12 12:16:57','2020-06-05 15:31:44'),(249,'According to Ephesians, children who obey their parents in the Lord will','be happy','go to heaven','have long life','be great.','','','c','','utme','2009',52,'Admin','2016-11-12 12:16:57','2020-06-06 13:41:06'),(250,'According to Thessalonians, the day of the Lord will not come unless the','living die first','scoffers come first','dead rise first','rebellion comes first.','','','d','','utme','2009',66,'Admin','2016-11-12 12:16:58','2020-06-05 16:07:18'),(251,'In Romans, Paul condemned sin taking over mortal bodies in the new life as instruments of','greediness','wickedness','sadness','foolishness.','','','b','','utme','2009',77,'Admin','2016-11-12 12:16:58','2020-06-05 14:28:50'),(252,'In his teaching on partiality, James declares that mercy triumphs over','judgment','righteousness','grace','faith.','','','a','','utme','2009',84,'Admin','2016-11-12 12:16:58','2020-06-07 19:15:46'),(253,'In Paul’s arrangement of the spiritual gifts in Corinthians, the last is','the utterance of wisdom','interpretation of tongues','gifts of healing','various kinds of tongues.','','','b','','utme','2009',64,'Admin','2016-11-12 12:16:58','2020-06-02 16:31:56'),(254,'In His sermon on the Mount, Jesus said that the poor in spirit are blessed for they would','be satisfied','be comforted on the last day','inherit the kingdom of heaven','inherit the earth.','','','a','','utme','2009',67,'Admin','2016-11-12 12:16:58','2020-06-06 17:09:24'),(255,'According to Matthew, the stone on the tomb of Jesus was removed by','an angel','a Roman soldier','Mary Magdalene','Peter and John.','','','a','','utme','2009',63,'Admin','2016-11-12 12:16:58','2020-06-05 22:20:30'),(256,'Angel Gabriel told Zachariah that he would become dumb until John was born because he','looked down on the Angel','was advanced in age','disagreed with Elizabeth, his wife','did not believe God’s words.','','','d','','utme','2009',58,'Admin','2016-11-12 12:16:58','2020-05-04 10:21:47'),(257,'“...but should write to them to abstain from the pollutions of idols and from unchastity and from what is strangled and from blood...” The statement above was made at the Council of Jerusalem by','Philip','Simon','James','Peter','','','d','','utme','2009',58,'Admin','2016-11-12 12:16:58','2020-06-06 06:03:06'),(258,'In the country of the Gerasenes, Jesus healed the','man possessed of demons','paralytic at the pool','leper','blind man.','','','a','','utme','2009',49,'Admin','2016-11-12 12:16:58','2020-06-05 14:28:50'),(259,'Following the death of Stephen, the only group of believers not scattered by the great persecution was the','deacons','apostles','prophets','disciples.','','','d','','utme','2009',67,'Admin','2016-11-12 12:16:58','2020-06-05 15:31:44'),(260,'According to Luke, when Moses and Elijah appeared during the Transfiguration, they spoke of Jesus’','departure','second coming','resurrection','trials.','','','a','','utme','2009',50,'Admin','2016-11-12 12:16:58','2020-05-03 17:47:16'),(261,'The baptism of Jesus by John in River Jordan was to','convince others that John was His forerunner','ensure that proper baptism must be in a river','service as an example','fulfil all righteousness.','','','d','','utme','2009',62,'Admin','2016-11-12 12:16:58','2020-06-02 17:24:36'),(262,'Herod was delighted to see Jesus because he had heard of Him for so long and wanted to','send Him to Rome','sentence Him to death','see Him perform miracles','make Him his friend.','','','c','','utme','2009',74,'Admin','2016-11-12 12:16:58','2020-06-06 06:10:46'),(263,'“Do you understand what you are reading?” Philip asked the Ethiopian eunuch the question above when he found him reading the book of','Hosea','Ezekiel','Jeremiah','Isaiah.','','','d','','utme','2009',70,'Admin','2016-11-12 12:16:58','2020-06-07 19:15:47'),(264,'“Unbind him, and let him go.” The statement was made by Jesus when','He raised to life the dead Lazarus','He healed the son of the widow at Nain','He healed the centurion’s servant','a boy bound by Satan was brought to Him.','','','a','','utme','2009',71,'Admin','2016-11-12 12:16:58','2020-06-03 09:02:55'),(265,'In Luke, at the Last Supper, Jesus revealed His','resurrection','imminent sufferings','love for His disciples','ascension.','','','b','','utme','2009',53,'Admin','2016-11-12 12:16:58','2020-06-03 22:25:14'),(266,'The good shepherd according to Jesus is one who','lays down his life for his sheep','goes about with his sheep','keeps many healthy sheep','feeds his sheep in green pastures.','','','a','','utme','2009',69,'Admin','2016-11-12 12:16:58','2020-06-05 23:25:07'),(267,'Jesus: stilling of the storm was to','escape from danger','impress His disciples','demonstrate His power','help the fishermen.','','','c','','utme','2009',51,'Admin','2016-11-12 12:16:58','2020-06-02 14:11:16'),(268,'“Can any one forbid water for baptizing these people who have received the Holy Spirit just as we have?” The statement above was made by Peter at the conversion of','Herod','Lydia','Saul','Cornelius.','','','d','','utme','2009',63,'Admin','2016-11-12 12:16:58','2020-06-03 19:53:49'),(269,'The disciple who replaced Judas Iscariot was','Justus','Stephen','Mathias','Luke.','','','c','','utme','2009',54,'Admin','2016-11-12 12:16:58','2020-06-01 22:36:17'),(270,'The message in the parable of the weeds is to','make Christians to be aware of the evil one','remind Christians to pray always','teach Christians to be aware of false teaching','warn Christians on what will happen at the close of age','','','c','','utme','2009',61,'Admin','2016-11-12 12:16:58','2020-05-03 17:04:30'),(271,'The sin of the sons of Eli was that they treated the offering of the LORD with','suspicion','contempt','disgust','jealousy.','','','b','','utme','2009',76,'Admin','2016-11-12 12:16:58','2020-06-09 11:38:06'),(272,'In order for the people of Israel to be ready to meet the LORD by the third day at Mount Sinai, they were','not to drink alcohol','to wear white garments','to wash their garments everyday','not to go near a woman.','','','c','','utme','2009',65,'Admin','2016-11-12 12:16:58','2020-06-28 00:22:49'),(273,'For worshipping the molten calf, God described the Israelites as','a stubborn nation','an unholy nation','a stiff-necked people','an unrighteous people','','','c','','utme','2009',61,'Admin','2016-11-12 12:16:58','2020-06-03 13:02:36'),(274,'“1 will not eat until I have told my errand” In the statement above, the errand of Abraham’s servant was to','find a wife for Isaac','deliver the camels to Laban','assess Isaac’s future wife','deliver Isaac’s message to Laban','','','a','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-06-05 07:13:26'),(275,'Saul leant from Samuel’s spirit that the LORD would','give the Philistines into his hands','afflict him with sickness','because Isaac’s future wife','pardon his iniquity','','','c','','utme','2009',71,'Admin','2016-11-12 12:16:58','2020-06-02 16:31:56'),(276,'“My spirit shall not abide in man forever, for he is flesh...” When God made the statement above, He concluded that man’s days shall be','one hundred years','one hundred and fifty years','eighty years','one hundred and twenty years.','','','a','','utme','2009',55,'Admin','2016-11-12 12:16:59','2020-06-03 01:56:55'),(277,'According to proverbs, a son that is attentive to a father’s instruction will','be rich','have eternal life','gain insight','be forgiven his sins','','','b','','utme','2009',59,'Admin','2016-11-12 12:16:59','2020-06-05 15:31:41'),(278,'When God called Moses to deliver the Israelites, he resisted because he could not speak and he was told to','perform some signs with his rod','wait for a sign from God','go with Joshua who would speak for him','go with Aaron who would speak for him','','','d','','utme','2009',66,'Admin','2016-11-12 12:16:59','2020-06-07 19:15:47'),(279,'David was anointed king over Judah at','Zuph','Bethlehem','Hebron','Gibeon.','','','c','','utme','2009',67,'Admin','2016-11-12 12:16:59','2020-05-04 18:08:30'),(280,'“Behold, if people of Israel are to come, let us deal shrewdly with them, lest they multiply.....” ln the statement, the first step by the king of Egypt was to','cast all Hebrew male children into the Nile','impose heavy tax on them','kill Hebrew male children','set taskmasters over them to afflict them with burdens','','','d','','utme','2009',64,'Admin','2016-11-12 12:16:59','2020-06-04 08:59:04'),(281,'“Let the waters under the heavens be gathered together into one place, and let the dry land appear.” In the statement above  the dry land and the water refer to','earth and oceans','firmament and seas','firmament and oceans','earth and seas','','','d','','utme','2009',70,'Admin','2016-11-12 12:16:59','2020-06-04 09:55:10'),(282,'What did Gideon call the altar which he built to the LORD?','The LORD is merciful','The LORD is peace','Jehovah Jireh','The LORD is great','','','a','','utme','2009',64,'Admin','2016-11-12 12:16:59','2020-04-09 17:27:26'),(283,'When King Nebuchadnezzar besieged Judah, he took away all classes of people but spared the','poorest people of the land','palace guards','children and the aged','priests and prophets','','','a','','utme','2009',67,'Admin','2016-11-12 12:16:59','2020-06-07 19:15:48'),(284,'After Prophet Ezekiel had eaten what he was offered, he was sent to speak to','a people of hard language','the house of Israel','the house of Judah','a people of foreign language','','','b','','utme','2009',61,'Admin','2016-11-12 12:16:59','2020-06-03 19:48:11'),(285,'Josiah believed that the wrath of the LORD was kindled against him and all Judah because','they did not observe the Passover','there was an unholy thing in their midst','the people have forgotten God','their fathers were disobedient to God.','','','b','','utme','2009',68,'Admin','2016-11-12 12:16:59','2020-06-04 05:15:45'),(286,'“Son of man, stand upon your feet, and I will speak with you.” What happened to the Son of man after the instruction above?','The Spirit entered him.','He became terrified.','The angels gave him support.','He began to prophesy.','','','a','','utme','2009',62,'Admin','2016-11-12 12:16:59','2020-04-30 18:00:11'),(287,'God had pity on the people of Nineveh because','they listened to Jonah’s message','the king punished all the violent people in the land','they turned from their evil way.','they made sacrifices of sin offering to God.','','','c','','utme','2009',53,'Admin','2016-11-12 12:16:59','2020-06-03 09:02:55'),(288,'The Kingdom of Israel was divided because the','kingdom was too large to be administered','leadership wanted to create more nations','followership wanted more nations','last two kings made unwise policies.','','','d','','utme','2009',67,'Admin','2016-11-12 12:16:59','2020-06-02 22:29:56'),(289,'“Behold, I am the LORD, the God of all flesh; is anything too hard for me...” The statement above suggests that God is','merciful','awesome','most powerful','not changeable.','','','b','','utme','2009',63,'Admin','2016-11-12 12:16:59','2020-06-02 23:46:46'),(290,'Immediately after the contest on Mount Carmel, Elijah prayed and God answered him with','thunder','rainfall','a whirlwind','a heavy storm.','','','a','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-07-02 17:47:14'),(291,'Prophet Amos told Israel to hate evil, love good and establish justice in the gate so that God would','heal their diseases','give them good leaders','be gracious to them','multiply their descendants.','','','c','','utme','2009',70,'Admin','2016-11-12 12:16:59','2020-06-02 19:15:10'),(292,'In addition to the declaration of freedom to the exiles in Babylon, King Cyrus ordered for','free will offering for the house of God in Jerusalem','the release of Jewish, slaves in the empire','security check on the Jews before departure','support from craftsmen in Babylon.','','','a','','utme','2009',69,'Admin','2016-11-12 12:16:59','2020-06-04 16:49:21'),(293,'“Am I God, to kill and to make alive, that this man sends words to me to cure a man of his leprosy...” Prophet Elisha responded to the king’s reaction in the statement above by','directing the nation of Israel to pray and fast','requesting the leper to come to his house','directing the leper to go to River Jordan','asking the leper to offer a sacrifice.','','','b','','utme','2009',58,'Admin','2016-11-12 12:16:59','2020-05-04 18:32:58'),(294,'According to Prophet Jeremiah, one of the promises of God was that He would give the Israelites','new priests','new commandments','kings after His own heart','shepherds after His own heart.','','','c','','utme','2009',63,'Admin','2016-11-12 12:16:59','2020-05-04 18:17:41'),(295,'Prophet Hosea named his second child Not Pitied because God would no more pity the','kings of Judah','kings of Israel','house of Judah','house of Israel.','','','c','','utme','2009',58,'Admin','2016-11-12 12:16:59','2020-06-02 22:34:11'),(296,'“Test your servants for ten days; let us be given vegetables to eat and water to drink...” In the statement above, Daniel was talking to','King Darius','the chief of the eunuchs','the steward of the chief eunuch.','King Artaxerxes.','','','b','','utme','2009',59,'Admin','2016-11-12 12:16:59','2020-06-05 13:05:47'),(297,'God blessed and hallowed the seventh day because','it was the day He rested from creation','it was the day He created man','He wanted it to be a day of worship','He saw that all He had created was good.','','','a','','utme','2011',62,'Admin','2016-11-12 12:27:45','2020-06-06 06:20:32'),(298,'Noah’s ark was sustained during the flood by its','resting on the highest mountains','being rowed on the waters','floating on the water','being anchored safely','','','c','','utme','2011',51,'Admin','2016-11-12 12:27:46','2020-04-28 17:47:11'),(299,'God visited the children of Israel on Mount Sinai during the giving of  the commandments through','a storm','mist and dew','smoke and fire','a still small voice','','','c','','utme','2011',60,'Admin','2016-11-12 12:27:46','2020-06-03 09:02:55'),(300,'When asked to interpret Pharaoh’s dream, Joseph’s first response was','...God has revealed to Pharaoh what he is about to do.','...It is not in me; God will give Pharaoh a favourable answer.','...God will shortly bring it to pass.','…let Pharaoh select a man discrete and wise','','','b','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-06-04 08:59:04'),(301,'When Joshua fell upon his face during Israel’s defeat at Ai, God told him to rise and','send more courageous soldiers to Ai','encourage the people','pray fervently against their enemies','sanctify the people','','','d','','utme','2011',51,'Admin','2016-11-12 12:27:46','2020-06-05 23:41:23'),(302,'God guided Abraham’s steward in choosing a wife for Isaac by','teaching him how to select a good woman','leading a lady to fulfil his prayer request','taking him to Abraham’s fatherland','giving him an exemplary woman.','','','c','','utme','2011',58,'Admin','2016-11-12 12:27:46','2020-06-02 22:34:11'),(303,'Why was God angry with Eli?','Eli’s sons disregarded the people’s warning','Eli’s sons were wicked people.','Eli’s sons dishonoured God and he treated them with levity.','Eli’s sons were appointed as priests against God’s will.','','','c','','utme','2011',60,'Admin','2016-11-12 12:27:46','2020-06-02 19:31:44'),(304,'Laxity in disciplining children is dangerous to both the family and society as exemplified by','Jonathan','Tamar','Absalom','Ahikam.','','','c','','utme','2011',61,'Admin','2016-11-12 12:27:46','2020-06-01 11:59:30'),(305,'God promised Abraham that nations of the earth shall be blessed through him because','he had obeyed Him','his descendants had obeyed Him','of his kindness to Hagar','of  his exemplary leadership.','','','a','','utme','2011',65,'Admin','2016-11-12 12:27:46','2020-05-03 17:31:32'),(306,'The punishment for Adam and Eve’s sin was that they','were driven out of the garden','would be naked forever','would never fellowship with God','would be enemies of crawling animals.','','','a','','utme','2011',50,'Admin','2016-11-12 12:27:46','2020-06-05 13:05:47'),(307,'‘Do not destroy him; for who can stretch out his hand on the LORD’S anointed, and be guiltless?’ In the statement above, David was acknowledging God’s role in','Abishai’s command','Saul’s leadership','Samuel’s priesthood','Elijah’s prophet hood.','','','b','','utme','2011',55,'Admin','2016-11-12 12:27:46','2020-06-01 11:55:28'),(308,'Saul’s decision to consult a medium displayed his lack of','faith in his army','faith in God','leadership qualities','respect for the dead.','','','b','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-06-04 15:17:57'),(309,'Solomon made the most unwise decision by engaging in','marriages to foreign women','alliances with his brothers','so many wars of conquest','developmental works.','','','a','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-06-22 00:51:48'),(310,'The man of God whose word was ignored by Kings Ahab and Jehoshaphat was','Elijah','Zedekiah','Malakiah','Micaiah','','','d','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-06-04 16:47:29'),(311,'Baal did not answer his worshippers at the contest on Mount Carmel because he','was annoyed with their sacrifice','did not hear','wanted to disgrace his worshippers','was asleep.','','','b','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-06-04 17:25:08'),(312,'The workmen who repaired the house of the LORD during Josiah’s religious reforms were not made to account for the money given them because they','did not receive the money directly','lacked accounting capabilities','bribed the Temple officials','were honest workmen.','','','a','','utme','2011',88,'Admin','2016-11-12 12:27:46','2020-07-02 11:13:25'),(313,'During Jehoiakim’s reign, Judah was destroyed as punishment for Manasseh’s sin of','keeping Temple prostitutes in the land','defiling the vessels in the Temple','offering unacceptable sacrifice','shedding innocent blood.','','','a','','utme','2011',57,'Admin','2016-11-12 12:27:46','2020-06-03 01:56:55'),(314,'Nehemiah responded to the opposition of the enemies of Israel by','telling the people not to say a word','reporting the issue to King Artaxerxes','inviting them to dialogue in the King’s court','asking God to return their taunt back to them.','','','d','','utme','2011',68,'Admin','2016-11-12 12:27:46','2020-06-04 16:42:04'),(315,'Nebuchadnezzar ordered his subjects to worship the image he set up whenever they','heard his voice','saw him stand before the image','heard the sound of the horn','were told to do so.','','','c','','utme','2011',61,'Admin','2016-11-12 12:27:46','2020-05-04 18:42:35'),(316,'‘What is this that you have done!”  The people in the ship asked Jonah the question above because','he was fast asleep in the ship','they knew he was fleeing from the LORD','he lied to them about his presence in the ship','they realized that he had made attempts to commit suicide.','','','b','','utme','2011',56,'Admin','2016-11-12 12:27:46','2020-06-03 23:52:04'),(317,'What shall I do with you, O Ephraim? What shall I do with you, O Judah? Your love is like a morning cloud...” In the statement above, the love of Israel is compared to a morning cloud because it','disappears fast','withers','is cloudy','darkens the day','','','a','','utme','2011',58,'Admin','2016-11-12 12:27:46','2020-06-03 17:54:16'),(318,'According to Amos, God desires knowledge of Him rather than','fervent prayers','dependency on the Law','the multitude of prophecies','burnt offerings','','','d','','utme','2011',68,'Admin','2016-11-12 12:27:46','2020-05-05 18:27:24'),(319,'In his vision, Isaiah’s guilt was taken away and his sin forgiven after','the angel of the LORD appeared to him','his mouth was touched with a burning coal','the seraphim had spoken to him','he had agreed to serve God.','','','b','','utme','2011',58,'Admin','2016-11-12 12:27:46','2020-06-03 22:25:14'),(320,'The prophet who was ordained from the womb for God’s service was','Jeremiah','Isaiah','Ezekiel','Hosea.','','','a','','utme','2011',65,'Admin','2016-11-12 12:27:46','2020-05-04 18:42:35'),(321,'According to Jeremiah, the anger of God towards Israel would only be reduced by','His mercy','the prophet’s repentance','the prophet’s prayers','His glory.','','','a','','utme','2011',65,'Admin','2016-11-12 12:27:47','2020-06-04 16:40:09'),(322,'When Zechariah saw the angel of the Lord standing on the right side of the altar of incense, he','cried out to him','was troubled and afraid','rejoiced in the Lord','left the Temple immediately.','','','b','','utme','2011',49,'Admin','2016-11-12 12:27:47','2020-06-02 13:05:28'),(323,'‘Follow me and leave the dead to bury their own dead’ By this statement, Jesus means that','disciples shall not attend burials','there is no life after death','following Him comes before anything else','shall leave their families in God’s care','','','c','','utme','2011',63,'Admin','2016-11-12 12:27:47','2020-06-01 22:48:48'),(324,'The disciples became terrified when they saw Jesus walking on the sea because','they thought He would drown','they thought He was a ghost','they lacked faith in Him','there was a great storm.','','','c','','utme','2011',57,'Admin','2016-11-12 12:27:47','2020-06-04 10:05:36'),(325,'The Jews sought to kill Jesus after He healed the man at the pool of Bethzatha because they thought that He','claimed to have authority to forgive sins','made Himself equal with God','did not agree with the law of Moses','said that He was born before Abraham.','','','c','','utme','2011',55,'Admin','2016-11-12 12:27:47','2020-06-02 00:04:40'),(326,'In the parable of the sower, the seed that fell among the thorns symbolized the one who hears the word but','does not understand it','loses it to the enemy','does not immediately receive it','the cares of the world choke it.','','','d','','utme','2011',61,'Admin','2016-11-12 12:27:47','2020-06-05 16:12:11'),(327,'Jesus encouraged His followers to rejoice when they were \tpersecuted because','great would be their reward in heaven','angels would come to their aid','they would not lack anything good','all their sins would be forgiven.','','','a','','utme','2011',60,'Admin','2016-11-12 12:27:47','2020-06-04 09:19:51'),(328,'‘Blessed are you, Simon Bar-Jona ! For flesh and blood has not revealed this to you...’ As exemplified by the statement above, for believers to be able to identify with Jesus, they must','offer their lives','be led by the Spirit','keep all the commandments','vow not to deny Him.','','','b','','utme','2011',53,'Admin','2016-11-12 12:27:47','2020-06-05 16:12:11'),(329,'Jesus drove the money changers and sellers of doves out of the Temple because','the people defiled it with dubious business','there was no need for animal sacrifice anymore','the people were disobedient to the Law','animals and birds were not allowed in it.','','','a','','utme','2011',71,'Admin','2016-11-12 12:27:47','2020-06-23 13:01:55'),(330,'The tearing of the curtain of the Temple into two at the death of Jesus signifies','the passing away of the prophets','direct access to God through Christ','that Jesus was a powerful person','that God was truly with Jesus.','','','b','','utme','2011',67,'Admin','2016-11-12 12:27:47','2020-06-04 16:47:29'),(331,'“Tell people, His disciples came by night and stole him away while we were asleep...” The intention of the speaker in the statement above was to','implicate the disciples','absolve the soldiers from all blame','deny the resurrection story','convince the authority','','','c','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-06-06 06:20:32'),(332,'Jesus charged His followers to walk in the light while they had the light so that they may','have eternal life','become custodians of it','have the light of life','become sons of it.','','','c','','utme','2011',60,'Admin','2016-11-12 12:27:47','2020-06-01 22:38:15'),(333,'In the early Church, believer devoted themselves to the','daily distribution of food','apostles’ teaching and fellowship','breaking of bread in the Temple','performance of miracles','','','c','','utme','2011',59,'Admin','2016-11-12 12:27:47','2020-06-07 19:15:47'),(334,'The disciple that went to preach in Samaria after the great persecution in Jerusalem was','Philip','Andrew','Peter','James.','','','a','','utme','2011',60,'Admin','2016-11-12 12:27:47','2020-06-04 23:38:14'),(335,'Saul was convened so that he might','cause confusion among the Jews','help Peter in his work','not be killed for his sins','spread the word to the Gentiles.','','','d','','utme','2011',72,'Admin','2016-11-12 12:27:47','2020-06-04 10:05:36'),(336,'What effect did the decision of the Council of Jerusalem have on the early Church?','Members became more untied','the Church experienced freedom from persecution','The Jews became leaders of the community.','Gentiles were free to be members of the Church','','','d','','utme','2011',61,'Admin','2016-11-12 12:27:47','2020-06-06 13:41:06'),(337,'Paul in Romans stated that the righteousness of God has been manifested through','the Law','the priests','faith in Jesus','Temple sacrifices.','','','c','','utme','2011',64,'Admin','2016-11-12 12:27:47','2020-06-03 19:53:49'),(338,'According to Romans, all who were baptized into Christ were also baptized into His','crucifixion','persecution','suffering','death','','','d','','utme','2011',64,'Admin','2016-11-12 12:27:47','2020-06-03 12:32:46'),(339,'According to Paul in Philippians, humility means giving consideration to other people’s','wealth','weakness','interests','needs.','','','c','','utme','2011',68,'Admin','2016-11-12 12:27:47','2020-06-03 23:52:04'),(340,'In Corinthians, believers are taught to forgive one another in order to','keep Satan from gaining advantage','prevent the wrongdoer from losing his salvation','remove the curse from the offender','discourage the offender from committing more sin.','','','a','','utme','2011',64,'Admin','2016-11-12 12:27:47','2020-06-03 23:52:04'),(341,'In Corinthians, Paul stated that by one Spirit we were','free from bondage of sin','united into one church','committee to Christian service','baptized into one body','','','d','','utme','2011',60,'Admin','2016-11-12 12:27:47','2020-05-07 00:27:56'),(342,'Paul commended the churches in Macedonia for giving out of their freewill to the','saints','poor','priests','sick.','','','b','','utme','2011',66,'Admin','2016-11-12 12:27:47','2020-05-04 18:50:20'),(343,'‘Pay all of  them their dues, taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honour to whom honour is due’. Paul made the statement above to the Church at','Thessalonica','Rome','Corinth','Ephesus.','','','b','','utme','2011',61,'Admin','2016-11-12 12:27:47','2020-06-02 20:29:37'),(344,'At the second coming of Christ, those who are alive shall be','bound for life','caught up together with the Lord','separated from the dead','taken to the new Jerusalem','','','b','','utme','2011',61,'Admin','2016-11-12 12:27:47','2020-06-06 11:00:47'),(345,'According to James, treatment of brethren at fellowship should not be based on','appearance','sentiments','gender','age.','','','a','','utme','2011',57,'Admin','2016-11-12 12:27:47','2020-06-03 18:36:41'),(346,'Peter in his epistle, charged his fellow elders to','take care of their families','be strong in their faith','have compassion on the weak','tend the flock of God.','','','d','','utme','2011',59,'Admin','2016-11-12 12:27:47','2020-06-06 06:14:35'),(347,'The land, the sea and vegetation were created on the','first day','second day','third day','fifth day.','','','c','','wassce','2008',53,'Admin','2016-11-12 12:38:50','2020-05-04 10:21:47'),(348,'God blessed the seventh day and hallowed it because it marked the day that He','completed His work of creation','handed over the earth to Adam','saw all His created work as perfect','rested from His work of creation.','','','d','','wassce','2008',56,'Admin','2016-11-12 12:38:50','2020-06-04 11:55:48'),(349,'Which of the following was not part of the honour done to Joseph when Pharaoh made him a ruler in Egypt?','Joseph was made to address the people','The land of Goshen was given to Joseph','Joseph was dressed in garments of fine linen','A gold chain was put around Joseph’s neck.','','','b','','wassce','2008',59,'Admin','2016-11-12 12:38:50','2020-06-05 14:35:45'),(350,'What was Moses’ reaction when God called him to liberate his people from Egypt?','He was afraid of being punished for his previous offence','His people would think he was too young to lead them','His people would not listen to him','His father in-law would not allow him to go.','','','c','','wassce','2008',60,'Admin','2016-11-12 12:38:50','2020-06-03 23:52:04'),(351,'God led the Israelites in the wilderness during the day in form of','fire','light','cloud','rainbow.','','','c','','wassce','2008',49,'Admin','2016-11-12 12:38:50','2020-06-03 23:35:53'),(352,'When Moses stayed away for too long on the mountain, the people of Israel','prayed and fasted','embarked on farming','returned to Egypt','made and worshipped idol.','','','d','','wassce','2008',57,'Admin','2016-11-12 12:38:50','2020-06-05 14:35:45'),(353,'God provided water for the Israelites by asking Moses to strike the rock at trice wilderness of','Rephidium','sin','Massah','Paran.','','','b','','wassce','2008',52,'Admin','2016-11-12 12:38:50','2020-06-04 23:38:14'),(354,'When the Spirit of the Lord departed from Saul','a new spirit entered into him','an evil spirit from God tormented him','he consulted an oracle','he went into hiding.','','','b','','wassce','2008',60,'Admin','2016-11-12 12:38:50','2020-06-04 16:33:45'),(355,'When David spared the life of Saul the second time he took away his','bow and arrow','spear and jar of water','royal crown and armour','spear and iron shield.','','','b','','wassce','2008',59,'Admin','2016-11-12 12:38:50','2020-06-07 19:15:48'),(356,'Solomon first applied wisdom granted to him by God at Gibeon by the','establishment of high places in Judah','utterances of proverbs and parables','marriage alliances with foreign nations','judgment between the two harlots.','','','d','','wassce','2008',58,'Admin','2016-11-12 12:38:50','2020-06-02 23:03:00'),(357,'In his reform, King Josiah first attacked the','prostitutes that came around the temple at night','priests that made burnt offerings in the temple','Canaanite divinities - the Baal and Ashera','traders who profaned the temple.','','','c','','wassce','2008',63,'Admin','2016-11-12 12:38:50','2020-06-05 15:31:43'),(358,'A good example of parental responsibility was demonstrated by','Asa','Jeroboam','Joel','Rehoboam.','','','a','','wassce','2008',52,'Admin','2016-11-12 12:38:50','2020-06-02 15:59:30'),(359,'Gomer’s attitude towards her loving husband symbolizes','Hosea’s unfaithfulness to God','Israel’s faithfulness to God','God’s love for Israel','God’s hatred for Israel’s iniquities.','','','b','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-06-06 13:41:06'),(360,'The universal nature of God was demonstrated in the salvation of the people of','Joppa','Tarshish','Tekoa','Nineveh.','','','d','','wassce','2008',63,'Admin','2016-11-12 12:38:51','2020-06-05 16:12:11'),(361,'Ahab was condemned for allowing Jericho to be rebuilt although that city had been','under Joshua’s curse','devastated by an earthquake','the scene of unexplained fatal accidents','the site for Canaanite human sacrifice.','','','a','','wassce','2008',70,'Admin','2016-11-12 12:38:51','2020-06-03 23:38:30'),(362,'Amos declared that God hated solemn feasts, songs and sacrifices because the people of Israel were','unjust and unrighteous','unforgiving and unrepentant','despicable and untruthful','luxurious and arrogant.','','','a','','wassce','2008',64,'Admin','2016-11-12 12:38:51','2020-06-02 22:53:54'),(363,'At Ezekiel’s call he beheld','the love of God','God’s glory','power of God','God’s mercy.','','','b','','wassce','2008',48,'Admin','2016-11-12 12:38:51','2020-06-01 22:38:15'),(364,'In spite of Israel’s faithlessness, Jeremiah saw a ray of hope for them if only they should','forgive one another','repent and return to God','always swear by God','show favour to strangers.','','','b','','wassce','2008',51,'Admin','2016-11-12 12:38:51','2020-06-03 08:24:31'),(365,'Jesus came to John at River Jordan to','proclaim himself as Messiah','disclose himself to John','call some of John’s disciples','receive baptism like others.','','','d','','wassce','2008',55,'Admin','2016-11-12 12:38:51','2020-05-04 18:50:19'),(366,'“Blessed are the peace makers for','theirs is the kingdom of God”','they shall be called sons of God”','they shall inherit the earth”','they shall be comforted”.','','','b','','wassce','2008',51,'Admin','2016-11-12 12:38:51','2020-06-02 13:05:28'),(367,'According to the Mosaic law, the only authority to declare a leper healed was','Jesus Christ','the Emperor','the priest','the elders.','','','c','','wassce','2008',73,'Admin','2016-11-12 12:38:51','2020-06-03 16:31:47'),(368,'Which of the following did not happen immediately after Jesus had yielded up his spirit on the cross?','The curtain of the temple was torn into two','Joseph of Arimathea removed his body for burial','The earth shook, the rocks were split','The tombs of the saints were opened.','','','b','','wassce','2008',45,'Admin','2016-11-12 12:38:51','2020-06-04 11:53:53'),(369,'According to Matthew, the disciples were sent out with the charge to go nowhere among the Gentiles nor enter any town of the','Jews','Samaritans','Israelites','Unbelievers.','','','b','','wassce','2008',47,'Admin','2016-11-12 12:38:51','2020-06-07 19:15:47'),(370,'Which of the following miracles shows Jesus’ power over nature?','Walking on the sea','Healing of the leper','Healing of the woman with issue of blood','Raising of Lazarus from the dead','','','a','','wassce','2008',56,'Admin','2016-11-12 12:38:51','2020-05-04 18:17:40'),(371,'The fate that would befall those who do not receive the gospel of Jesus would be','rejection by men','lack of peace in the family','condemnation by the church','condemnation by God.','','','d','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-06-05 23:25:07'),(372,'Which, according to Luke, were the last words of Jesus?','“Eli. Eli, lamasabach-thani”','“Father forgive them for they know not what they do”','“Truly, I say to you, today you will be with me in paradise”','“Father unto thy hands I commit my spirit”','','','d','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-06-05 07:13:26'),(373,'The first five disciples that Jesus called as recorded in the Synoptic gospels were','Peter, Andrew, James, John and Levi','Peter, Andrew, James, John and Thomas','Peter, Andrew, James. John and Zebedee','Peter, Andrew, James, John and Judas Iscariot.','','','b','','wassce','2008',60,'Admin','2016-11-12 12:38:51','2020-04-12 13:30:50'),(374,'Peter’s general outlook towards Gentile converts was significantly changed by the conversion of','people of Lydda','the people of Samaria','Simon the magician','Cornelius the centurion.','','','d','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-06-07 19:15:47'),(375,'Which Jewish party was bitterly opposed to the disciples for preaching the resurrection of Jesus?','The Pharisees','The Sadducees .','The Zealots','The Sanhedrin.','','','b','','wassce','2008',50,'Admin','2016-11-12 12:38:51','2020-05-03 17:47:18'),(376,'When Peter was in prison the Church','appealed to the authorities','lived in fear','prayed ceaselessly','fought for his release.','','','c','','wassce','2008',45,'Admin','2016-11-12 12:38:51','2020-06-05 06:55:18'),(377,'The miracles of Jesus in St. John’s Gospel are referred to as signs’ of the','manifestations of Jesus as the Messiah','consuming power of God’s glory','judgment that will come upon unbelievers','second coming of Jesus.','','','a','','wassce','2008',45,'Admin','2016-11-12 12:38:51','2020-06-03 23:35:53'),(378,'Believers according to Jesus in John’s gospel, become his friends, if they imbibe his teaching on','forgiveness','obedience','love','faith.','','','c','','wassce','2008',55,'Admin','2016-11-12 12:38:51','2020-06-02 18:34:11'),(379,'The miracles of Jesus recorded in John’s gospel are called','works','signs','powers','wonders.','','','b','','wassce','2008',61,'Admin','2016-11-12 12:38:51','2020-05-04 18:57:05'),(380,'The result of justification by faith is','divine protection','peace with God','forgiveness of sins','answered prayers.','','','c','','wassce','2008',44,'Admin','2016-11-12 12:38:51','2020-06-05 16:39:17'),(381,'Which of the following is the result of Christian baptism?','Fulfilment of all righteousness','Walking in the newness of life','Ability to fast always','Yielding of one’s life to prayer.','','','b','','wassce','2008',46,'Admin','2016-11-12 12:38:51','2020-06-03 08:24:31'),(382,'Sin that reigns in our mortal bodies makes us obey','one another','rules and regulations','our passions','our rulers.','','','c','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-06-02 23:31:40'),(383,'Paul considered himself unfit to be called an apostle because he','did not see Jesus','persecuted the church','worked hard to attain his position','was the least among the believers.','','','d','','wassce','2008',44,'Admin','2016-11-12 12:38:51','2020-05-04 18:17:40'),(384,'Paul says that only the heathen who are led astray by dumb idols could say','“Jesus is Lord!”','“Praise ye the Lord!”','“Hail the messiah!”','“Jesus be cursed!”','','','d','','wassce','2008',51,'Admin','2016-11-12 12:38:51','2020-06-05 16:07:18'),(385,'In the Epistle to Galatians, Christians are children of God through','faith in Christ','keeping of the law','helping the needy','baptism and confirmation','','','a','','wassce','2008',46,'Admin','2016-11-12 12:38:51','2020-06-03 23:08:46'),(386,'Christ demonstrated humility by','riding on an ass to Jerusalem','allowing John to baptize him','taking the form of a servant','eating with sinners','','','c','','wassce','2008',67,'Admin','2016-11-12 12:38:51','2020-06-02 16:50:26'),(387,'Peter admonished Christians to be sober and watchful in order to a void','temptation','God’s wrath','the devourer','damnation','','','a','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-06-05 15:31:42'),(388,'New life in Christ means','paying your tithe regularly','helping the poor and the needy','being dead to sin','getting baptized.','','','c','','wassce','2008',45,'Admin','2016-11-12 12:38:52','2020-06-02 00:05:53'),(389,'In Romans, Paul taught that where there is no law, there is no','transgression','peace','reward','punishment','','','a','','wassce','2008',52,'Admin','2016-11-12 12:38:52','2020-04-12 16:31:19'),(390,'The purpose of grace is to','justify the law','cancel the law','fight the law','establish the law','','','b','','wassce','2008',67,'Admin','2016-11-12 12:38:52','2020-06-04 08:05:52'),(391,'In Romans. Paul stressed that the righteousness of God is','faith in the law for all who believe','works of the law for all who believe','fervent prayers by all believers','faith in Jesus Christ for all who believe','','','d','','wassce','2008',64,'Admin','2016-11-12 12:38:52','2020-05-05 20:14:54'),(392,'The concept of  forgiveness does not include','reconciliation','restoration','peace','wealth','','','d','','wassce','2008',37,'Admin','2016-11-12 12:38:52','2020-05-06 08:07:05'),(393,'Paul said in Galatians that, before faith came, we were confined under','grace','the law','righteousness','love','','','b','','wassce','2008',60,'Admin','2016-11-12 12:38:52','2020-06-07 19:15:46'),(394,'In his letter to Philemon Paul did not ask him to','grant freedom to his slave Onesimus','allow Onesimus become a servant of God','forgive Onesimus for his earlier misbehaviour','prepare a feast for him.','','','a','','wassce','2008',49,'Admin','2016-11-12 12:38:52','2020-06-02 00:05:53'),(395,'Peter enjoined humility because the humble shall','not be tempted','be blessed','receive God’s grace','have long life.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:52','2020-04-28 17:47:11'),(396,'Paul, unhappy with high incidence of idleness among the Thessalonians, commanded them to','assist those brothers who live in Idleness','exhort the busy-bodies to leave the church','ensure that any one who does not work must not eat','regard the lazy ones as enemies','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:52','2020-06-03 09:02:55'),(397,'The new covenant between God and the Israelites is centered on','religious doctrines','intensive teaching','collective responsibility','individual responsibility.','','','a','','utme','2013',64,'Admin','2016-11-12 12:51:29','2020-06-26 22:10:01'),(398,'The ark that God commanded Noah to build was made of','acacia wood','gopher wood','cedar wood','cypress wood','','','c','','utme','2013',58,'Admin','2016-11-12 12:51:29','2020-06-06 09:27:58'),(399,'During Moses leadership in Israel, he exhibited most importantly, the talent of a','mediator','warrior','seer','preacher.','','','b','','utme','2013',49,'Admin','2016-11-12 12:51:29','2020-06-26 22:10:01'),(400,'Moses ran away from Egypt after killing an Egyptian because he felt that he might be','endangering other Israelites by his actions','killed by the Egyptian mob','imprisoned by the Egyptian security officers','killed by Pharaoh of Egypt.','','','d','','utme','2013',61,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(401,'How did God guide Eleazar in choosing a wife for lsaac?','He caused Rebekah to give him free accommodation','He made Rebekah’s parents willing to release her','He caused His angel to go ahead of him','He revealed to Rebekah before Eleazar’s arrival','','','d','','utme','2013',60,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(402,'David’s immediate reaction to the news that the hearts of the Israelites have gone after Absalom was to','Weep for Judah','flee to the wilderness','mobilize his army','plead with Absalom','','','c','','utme','2013',56,'Admin','2016-11-12 12:51:30','2020-06-05 15:31:42'),(403,'David’s inaction at Ammon’s incest with Tamar showed his','lack of control over his children','excessive love for Ammon','ability to forgive as a leader','wisdom and strength of character','','','a','','utme','2013',68,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(404,'The young man of Egypt took David to the band of the Amalekites because','he was afraid for his life','he sought revenge against his former master','David was kind to him','the spirit of God was working through him.','','','d','','utme','2013',53,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(405,'Because David sought God’s will to pursue the Amalekites \twho had invaded Ziklag, he was rewarded with victory and','many new territories','spoils','many prisoners of war','favour','','','b','','utme','2013',60,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(406,'‘...why then have you not kept watch over your lord the king?...” The question above by David was addressed to','Amasa','Joab','Abishai','Abner.','','','c','','utme','2013',62,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(407,'Solomon’s wisdom surpassed the wisdom of all the people of the East and all wisdom of Egypt because he','prayed and fasted daily','employed the service of seers','judged difficult cases','got his wisdom from God.','','','d','','utme','2013',64,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(408,'Saul relied on a medium because God did not answer him through','dreams, visions and prophets','inspiration, tambourines and prophets','dreams, urim and prophets','lyre, urim and prophets.','','','c','','utme','2013',59,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(409,'When Naboth refused to exchange his vineyard with King Ahab, Ahab reacted by','taking to prayers and fasting','going to his house vexed and sullen','ordering the killing of Naboth','forcefully taking it from him.','','','d','','utme','2013',55,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(410,'The sins of Israel during the reign of Ahab consisted of','worship of the king','trampling upon the poor','worship of idols','desecrating the Temple','','','d','','utme','2013',56,'Admin','2016-11-12 12:51:30','2020-06-03 23:35:53'),(411,'The book of the law was found in the house of the LORD during the reign of king','Josiah','Ahab','Omri','Hezekiah.','','','c','','utme','2013',66,'Admin','2016-11-12 12:51:30','2020-06-07 19:15:46'),(412,'King Josiah was killed by Pharaoh Neco in a battle at','Syria','Meggiddo','Megiddo','Egypt.','','','c','','utme','2013',69,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(413,'The major reason God allowed the Babylonian attack on the city of Jerusalem was to','demonstrate the ability of God to deliver His people from captivity','set a trap for the Babylonians and destroy them','restore the people of Judah and their leaders to the true worship of God','punish the people of Judah and their leaders for their sins.','','','c','','utme','2013',68,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(414,'When the three Hebrew men refused to worship the King’s image, he commanded that they be','thrown into a furnace','stoned','beheaded','thrown into the lion’s den.','','','c','','utme','2013',65,'Admin','2016-11-12 12:51:30','2020-05-03 05:29:38'),(415,'Jonah’s explanation to the LORD for resisting His first call teaches us that God is','repentant of evil','not ready to act fast','quick to anger','not sincere in His call.','','','c','','utme','2013',62,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(416,'Before his call, Amos was a','herdsman','seer','farmer','prophet.','','','a','','utme','2013',53,'Admin','2016-11-12 12:51:30','2020-06-02 20:14:19'),(417,'Amos’ prophecies which were considered as a conspiracy against the northern kingdom were reported to the king by','Micaiah','Amaziah','Hilkiah','Micah.','','','a','','utme','2013',56,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(418,'How did God help Jeremiah overcome his inability to speak as prophet?','He put out His hands and touched his mouth.','He sent the Seraphim to speak to him.','He gave him a cake of honey to eat.','He touched his mouth with a burning coal.','','','d','','utme','2013',60,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(419,'Prophet Ezekiel was set upon his feet to hear the LORD speak when','an angel of the LORD lifted him','a voice from heaven commanded him to do so','the Spirit entered into him','He was made to touch the ephod','','','d','','utme','2013',71,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(420,'According to Jeremiah, the people of Israel were in exile because of their','impatience and immorality','rebellion against Nebuchadnezzar','maltreatment of the poor','unfaithfulness and faithlessness.','','','b','','utme','2013',63,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(421,'‘‘... and many will rejoice at his birth; for he will be great before the Lord...” In the statement above, the angel made this pronouncement because of','Elizabeth’s disbelief because of her bareness','Mary’s holy nature','Zachariah’s fervent prayers','Joseph’s hesitation to marry Mary.','','','a','','utme','2013',60,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(422,'One quality of a good disciple that was exhibited by the first followers of Jesus was','faith','piousness','diligence','resourcefulness.','','','c','','utme','2013',58,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(423,'“Lord, if you will, you can make me clean.” The statement above was made by the','leper','paralytic','centurion servant','epileptic boy.','','','d','','utme','2013',61,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(424,'The disciples of Jesus could not heal the boy with epilepsy because they','did not fast','had little faith','were powerless','did not pray.','','','a','','utme','2013',66,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(425,'The seeds that fell among the thorns in the parable of the sower refer to people that heard the word of God but','the evil one snatched it','had no faith to nurture it','the criticism of others quenched it','the cares of the words choked it.','','','d','','utme','2013',66,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(426,'The promise to those who are persecuted for righteousness sake is that they will','inherit the earth','inherit the kingdom of heaven','see God','be called sons of God.','','','b','','utme','2013',63,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(427,'According to Peter during the great confession, people believed that Jesus was','the Messiah','a priest','the Son of God','one of the prophets.','','','c','','utme','2013',65,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(428,'‘‘... Behold, your king is coming to you, humble, and mounted on an ass...,” The prophecy in the statement above was fulfilled during Jesus','birth in a manger','transfiguration','triumphal entry','baptism by John','','','d','','utme','2013',65,'Admin','2016-11-12 12:51:30','2020-06-02 23:31:40'),(429,'After His arrest, Jesus was taken to','Pontiphas','Agrippa','Caiaphas','Pilate','','','a','','utme','2013',60,'Admin','2016-11-12 12:51:31','2020-05-28 14:27:57'),(430,'According to Mark, the young man that the women saw in Jesus’ tomb told them to go with the disciples and wait for Him in','Bethlehem','Jerusalem','Bethany','Galilee','','','a','','utme','2013',58,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(431,'“He was not the light but was sent to bear witness to the light.” The statement above refers to','Simeon','Jesus','John the Baptist','Peter Barjona','','','b','','utme','2013',63,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(432,'The appointment of deacons became necessary because of the complaint by the','Gentile converts','Hellenists','Pharisees','Sadducees','','','d','','utme','2013',59,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(433,'According to Paul, before his conversion, he persecuted the church violently to','make it desirable to the Gentiles','purge it','destroy it','have it conform to the Law.','','','d','','utme','2013',56,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(434,'“Lord, I have heard from many about this man, how much evil he has done to thy saints at Jerusalem...” Ananias’ response above to God’s request for him to meet Saul shows that he','felt that Saul should not be forgiven','felt that Saul should be punished','was not interested in meeting Saul','was afraid to meet Saul.','','','a','','utme','2013',59,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(435,'“It is necessary to circumcise them, and to charge them to keep the law of Moses.” In response to the Pharisees’ statement above, Peter rebuked them, by saying that God has','made circumcision for only those in leadership','chosen the Israelites among other people','cleansed the Gentiles’ heart by faith','put the yoke upon the Gentiles’ necks.','','','a','','utme','2013',73,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(436,'According to Galatians, judgment is without mercy to one who has shown no mercy, yet mercy triumphs over','tribulation','the law','judgment','punishment.','','','a','','utme','2013',63,'Admin','2016-11-12 12:51:31','2020-06-07 19:15:46'),(437,'According to Colossians, the Lord does not wish that any should perish, but that all should','rejoice','be saved','be humble','repent','','','b','','utme','2013',72,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(438,'According to Peter, when Christians humble themselves, God will','protect them','direct their ways','grant them eternal life','exalt them.','','','d','','utme','2013',61,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(439,'According to Paul in his letter to Philemon, forgiveness should not be by compulsion but by','justification','faith','free will','His grace.','','','b','','utme','2013',63,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(440,'In Corinthians, Paul said that one can only say Jesus is Lord by','denouncing the law','faith','grace','the Holy Spirit.','','','b','','utme','2013',67,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(441,'When Christians give freely, God will supply','only for those that give','their needs according to His riches in glory','their needs according to the measure they give','their needs day by day.','','','d','','utme','2013',66,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(442,'Paul in Timothy urged believers to make supplications, prayers, intercession and thanksgivings for all those who','are in authority','have accepted Christ','have wronged them','are the need','','','c','','utme','2013',69,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(443,'According to Thessalonians, the second coming of the Lord will be','with the blowing of a trumpet','after scoffers have come','when the elements are dissolved','like a thief in the night.','','','b','','utme','2013',52,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(444,'According to James, when we meet various trails in life, we should','bless God’s name','call upon the name of the Lord','count it all joy','rejoice because the Lord is good.','','','d','','utme','2013',64,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(445,'“As each has received a gift, employ it for one another, as good stewards of God’s varied grace...” In the statement above, Peter teaches believers in virtue of','hospitality','giving','communion','fellowship.','','','a','','utme','2013',58,'Admin','2016-11-12 12:51:31','2020-06-26 22:10:01'),(446,'What in the creation account, gave man an edge over every other creature?','Other creatures were made for man','Man alone was created in the Image of God','Man had the rare privilege to dwell in Eden','Satan acknowledged his privileged position','','','b','','wassce','2009',60,'Admin','2016-11-12 13:02:28','2020-06-05 23:34:32'),(447,'At Shechem, God appeared to Abram and told him that','he should continue on his journey southward.','he should leave his country and Kindred.','the land would be given to his descendants.','in the land he should build an altar.','','','c','','wassce','2009',51,'Admin','2016-11-12 13:02:29','2020-06-02 22:53:54'),(448,'In their dealings with God, Abraham and Sarah learnt the \tfollowing lessons except that God is','able to bless the righteous.','faithful to His promise','all powerful-nothing is too hard for Him.','not in a hurry to carry out His promises.','','','c','','wassce','2009',57,'Admin','2016-11-12 13:02:29','2020-05-03 17:14:14'),(449,'Pharaoh’s horsemen and his army overtook the fleeing Hebrews encamped by the sea at','Migdol.','Etham.','Phiahiroth.','Meriba.','','','c','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-06-04 16:40:09'),(450,'The episode of David and Bathsheba, Uriah’s wife was in \tviolation of God’s','sixth commandment.','seventh commandment,','eight commandment.','ninth commandment.','','','a','','wassce','2009',54,'Admin','2016-11-12 13:02:30','2020-05-04 18:32:57'),(451,'When the people of Israel received the encouraging report \tgiven by two of the twelve spies, they decided to','stone Moses for taking them out of Egypt.','choose Caleb as their leader and go back to Egypt.','stone the two spies who gave the report.','raise an army to fight the Canaanites.','','','d','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-06-01 22:16:23'),(452,'Which of the following tribes accompanied Deborah and Barak to the war against Jabin and Sisera?','Naphtali and Zebulum','Issachar and Reuben','Ephraim and Dan','Judah and Benjamin','','','a','','wassce','2009',56,'Admin','2016-11-12 13:02:30','2020-06-03 18:03:48'),(453,'On matters of parental responsibility, Samuel could not be commended because he','made his children judges instead of priests.','wanted his children to succeed him.','did nothing to stop his children’s immoral behaviours.','did not care what happened to Israel after his death.','','','c','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-06-05 15:31:41'),(454,'Eli, the priest in Shiloh, was condemned because he','allowed his children to deprive God of His share of sacrifice.','allowed the Ark of God to be taken to the battle field','did not take God’s message through Samuel seriously.','officiated at the temple without the assistance of the prophet.','','','c','','wassce','2009',50,'Admin','2016-11-12 13:02:30','2020-06-06 17:09:24'),(455,'David’s first Contact with Saul was because he was','skillful in playing.','victorious over Goliath.','a man of valour.','a shepherd boy.','','','a','','wassce','2009',52,'Admin','2016-11-12 13:02:30','2020-06-03 23:31:55'),(456,'David showed Nathan the prophet that he had repented of his sin by','refusing to marry Uriah’s wife.','confessing that he had sinned.','offering to compensate Uriah’s family','making sacrifice to please God.','','','b','','wassce','2009',54,'Admin','2016-11-12 13:02:30','2020-05-05 20:49:11'),(457,'Elijah was a prophet during the reign of','Gideon.','David.','Ahab.','Rehoboam.','','','c','','wassce','2009',53,'Admin','2016-11-12 13:02:30','2020-06-05 16:07:18'),(458,'When God ordered famine on Israel, Elijah was fed by the ravens at','Brook Cherith.','River Jordan.','River Kishon','Mount Carmel.','','','a','','wassce','2009',49,'Admin','2016-11-12 13:02:30','2020-06-06 13:30:40'),(459,'“The Lord forbid that I should give you the inheritance of my fathers”. The inheritance referred to here is','birth right.','the world.','the kingship.','a vineyard.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:30','2020-06-09 11:38:06'),(460,'The king of Judah who suffered in the hands of Nebuchadnezzar was','Jehoachin.','Manasseh.','Josiah.','Zedekiah.','','','d','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-06-07 19:15:48'),(461,'The punishment of Israel according to the vision of Jeremiah includes all the following except','occupation of the land by foreigners.','restoration of their kings and priests.','destruction of their flocks and herds.','consumption of their harvest by their enemies.','','','a','','wassce','2009',75,'Admin','2016-11-12 13:02:30','2020-06-05 16:39:17'),(462,'Complete this statement “Holy, Holy, Holy is the Lord of Hosts,','the Seraphim’s bow to His glory”.','the whole earth will sing His glory”.','the whole earth is full of His glory”.','His creatures will rise to praise His Holy name”.','','','c','','wassce','2009',43,'Admin','2016-11-12 13:02:30','2020-06-06 11:00:47'),(463,'When Isaiah saw the Lord in His holiness and glory, he exclaimed','“Blessed is me for 1 am truly holy”.','“Woe is me! For I am lost”','“Blessed be the name of the Lord”.','“I am finished, for I have seen a holy God”.','','','b','','wassce','2009',57,'Admin','2016-11-12 13:02:30','2020-06-06 06:14:35'),(464,'Jeremiah said the people of Judah were in a state of mourning because,','they sinned against God.','their vessels were empty','their farms were destroyed.','there was drought in the land.','','','a','','wassce','2009',46,'Admin','2016-11-12 13:02:30','2020-06-01 17:30:28'),(465,'The king planned to set Daniel over the whole kingdom because,','he was the most educated of all.','an excellent spirit was in him.','he wanted to favour a foreigner.','Daniel brought information to the king.','','','b','','wassce','2009',55,'Admin','2016-11-12 13:02:30','2020-06-06 11:00:47'),(466,'God spoke through Amos that He would punish Israel for the following sins except that they','sold the righteous for silver.','sold the needy for a pair of shoes.','trampled the head of the poor into the dust.','pursued their brothers with the swords.','','','d','','wassce','2009',51,'Admin','2016-11-12 13:02:30','2020-05-05 21:55:27'),(467,'The first batch of Jewish exiles to rebuild the temple was under the leadership of','Joshua.','Hanani.','Sheshbazzar.','Zerubabel.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:30','2020-06-02 23:31:40'),(468,'Which two tribes in Israel led in the rebuilding of the temple after the exile?','Judah and Benjamin','Naphtali and Joseph','Manasseh and Reuben','Judah and Ephraim','','','c','','wassce','2009',48,'Admin','2016-11-12 13:02:30','2020-06-02 18:34:11'),(469,'After his baptism Jesus began to','proclaim the kingdom of God.','baptize others.','confront religious leaders.','teach in parables.','','','a','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-06-09 11:39:08'),(470,'The devout man in Jerusalem whom the Lord promised would see Christ before his death was named','Zechariah.','Joseph.','Stephen','Simeon.','','','d','','wassce','2009',52,'Admin','2016-11-12 13:02:30','2020-05-06 01:34:23'),(471,'Jesus ordered the seventy disciples not to salute any one because','their mission required urgency.','it is not part of their mission to salute people.','they may forget their mission.','salutations to strangers defile the Jews.','','','a','','wassce','2009',53,'Admin','2016-11-12 13:02:30','2020-06-03 00:21:19'),(472,'Jesus teaches, “Let your light so shine before men...” By light Jesus refers to,','the Christian character and virtues in us.','the bright lights at the altar in the church.','the light that shows the right way.','our knowledge of the scripture.','','','a','','wassce','2009',55,'Admin','2016-11-12 13:02:30','2020-06-04 11:53:53'),(473,'“And if anyone will not receive you or listen to your words, shake off the dust from your feet as you leave that house.” This is a sign of','forgiveness','rebuke','acceptance','condemnation.','','','d','','wassce','2009',50,'Admin','2016-11-12 13:02:30','2020-06-03 18:47:07'),(474,'“Foxes have holes and birds of the air have nets; but the son of man has nowhere to lay His head”. By this statement, Jesus meant that His disciples','would not grow rich.','would not enjoy good houses.','had a lot of task ahead.','had a lot of enemies.','','','c','','wassce','2009',52,'Admin','2016-11-12 13:02:30','2020-06-05 16:39:17'),(475,'The treasures which Jesus wants us to lay in heaven include','generosity and kindness.','love and mercy.','works of righteousness','gold and silver.','','','c','','wassce','2009',58,'Admin','2016-11-12 13:02:30','2020-06-05 15:31:44'),(476,'“No one can serve two masters...” This means that one should not','be idolatrous.','belong to two religions.','worship money.','bean unbeliever.','','','a','','wassce','2009',50,'Admin','2016-11-12 13:02:30','2020-06-02 00:05:53'),(477,'Whoever drinks the water Jesus gives will never thirst? What is this water?','The spirit of God.','Holy and anointed water.','The word of God.','Law of God.','','','a','','wassce','2009',44,'Admin','2016-11-12 13:02:31','2020-06-05 07:20:23'),(478,'Jesus said “I am the bread of life; he who comes to me shall not hunger...” ‘Bread of life’ in this context means the','body of Jesus Christ.','manna given to the Israelites.','holy bread of life.','spiritual food through Jesus.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-06-05 15:31:42'),(479,'John’s summary of God’s love for the world is that He','sent his son to judge the world righteously.','created man in his own image with authority.','made light that the world might walk in it.','gave his only son to save all believers.','','','d','','wassce','2009',41,'Admin','2016-11-12 13:02:31','2020-05-04 10:11:46'),(480,'According to John’s Gospel, Lazarus was from','Bethany','Galilee.','Jerusalem.','Bethsaida.','','','a','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-06-01 21:26:02'),(481,'Jesus said to Martha, “...and whoever live and believes in me shall never die...” Jesus talks about','physical death.','spiritual death.','emotional death.','natural death.','','','b','','wassce','2009',51,'Admin','2016-11-12 13:02:31','2020-06-07 19:15:47'),(482,'The meeting of the Christian Council of Jerusalem was chaired by','Peter.','Paul.','James.','John.','','','a','','wassce','2009',51,'Admin','2016-11-12 13:02:31','2020-04-30 18:01:22'),(483,'Paul wished to retain Onesimus with him but did not do so because','Onesimus was unwilling to stay with him.','he was afraid of Philemon’s reaction.','he did not like such a favour to be imposed on Philemon.','Onesimus would soon be released from jail.','','','c','','wassce','2009',57,'Admin','2016-11-12 13:02:31','2020-04-12 16:22:23'),(484,'Paul and his associates gave the Thessalonian believers an \timportant example to imitate. This example was to','be ready to help the poor always','toil, labour and work to earn a living','depend on foreign aids for sustenance.','suffer imprisonment without complaint.','','','b','','wassce','2009',39,'Admin','2016-11-12 13:02:31','2020-06-02 19:15:10'),(485,'Peter urged all Christians to endure sufferings in faith conscious of the fact that','Jesus, himself also resisted suffering','the devil could lure them from faith with suffering.','only the physical body is affected.','suffering is temporary and leads to eternal glory.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-06-05 16:12:11'),(486,'Paul’s teaching in Colossians on love, respect and obedience concerns','Christian giving.','family relationship.','master servant relationship.','Christian relations with their enemies.','','','b','','wassce','2009',58,'Admin','2016-11-12 13:02:31','2020-06-03 18:47:07'),(487,'According to Peter, God set up the state for the purpose of','silencing the ignorance of foolish men.','collecting appropriate taxes from its citizens','carrying out appropriate sanctions for the guilty','ensuring the protection of its citizens','','','d','','wassce','2009',48,'Admin','2016-11-12 13:02:31','2020-04-28 16:20:47'),(488,'In Paul’s epistle to the Thessalonians, any Christian living \tin idleness should be','thrown out of the Church.','looked at as an enemy.','sympathized with','avoided by the others.','','','d','','wassce','2009',52,'Admin','2016-11-12 13:02:31','2020-06-03 09:02:55'),(489,'The two major obstacles against Abraham’s hope for a son were','impotency and old age','faithlessness and unbelief.','old age and barrenness.','sin and doubt.','','','b','','wassce','2009',56,'Admin','2016-11-12 13:02:31','2020-05-04 18:25:29'),(490,'The theme justification by faith can only be achieved through','sacrifices to Jesus.','resurrection of Jesus.','redemptive power of Jesus.','response of angels to Jesus.','','','c','','wassce','2009',57,'Admin','2016-11-12 13:02:31','2020-06-03 15:39:55'),(491,'According to Paul in Romans, if it is the adherents of the law who are to be the heirs of Abraham then faith in Jesus is','null and void.','not attainable','.     \t\t\t\\nbeyond the reach of Gentiles','transgression of the law.','','','a','','wassce','2009',52,'Admin','2016-11-12 13:02:31','2020-05-04 18:25:28'),(492,'“Your blood be upon your heads! I am innocent. From now on I will go to the Gentiles.” This was Paul’s utterance at','Antioch.','Corinth.','Lystra.','Ephesus.','','','d','','wassce','2009',51,'Admin','2016-11-12 13:02:31','2020-06-06 13:30:40'),(493,'The preaching of the resurrection of Jesus by his disciples \twas opposed by the','Jews.','Elders.','Sadducees.','Pharisees.','','','c','','wassce','2009',51,'Admin','2016-11-12 13:02:31','2020-06-06 06:10:46'),(494,'The first missionary journey was started by Paul and','Judas','.      \\nBarabbas.','Timothy.','Barnabas.','','','d','','wassce','2009',54,'Admin','2016-11-12 13:02:31','2020-06-07 19:15:46'),(495,'During the election to replace Judas among the twelve, Peter quoted from the book of','Joel.','Psalms.','Isaiah.','Ezekiel.','','','b','','wassce','2009',60,'Admin','2016-11-12 13:02:31','2020-06-05 08:30:12'),(496,'What was Herod’s reaction when he heard the news about Jesus’ birth?','He sent gifts','He was excited','He was troubled','He became calm','','','c','','utme','2015',59,'Admin','2016-11-12 13:28:12','2020-06-05 23:34:32'),(497,'“....... Behold, I will bring evil upon you; I will utterly sweep you away .....” Elijah pronounced destruction on Ahab with the statement above for his sin of','the killing of God’s prophets','worship of other gods','going to war against Ramoth-gilead','greed, covetousness and murder','','','a','','utme','2015',53,'Admin','2016-11-12 13:28:14','2020-06-05 16:01:12'),(498,'The ruler of the synagogue whose child Jesus raised to life was','Zebedee','a widow','Jairus','a centurion','','','c','','utme','2015',55,'Admin','2016-11-12 13:28:14','2020-05-04 18:32:58'),(499,'According to Amos, true religion entails','engaging in sacrifices and burnt offerings','being just and righteous','fasting and praying always','engaging in holy feasts and assemblies','','','b','','utme','2015',54,'Admin','2016-11-12 13:28:14','2020-06-04 01:10:47'),(500,'Paul in Romans said that the righteousness of God has been manifested through faith in Jesus Christ for','the exaltation of the authority','the cleansing of the sinners','the dead in Christ','all those who believe','','','d','','utme','2015',50,'Admin','2016-11-12 13:28:14','2020-04-12 16:22:21'),(501,'“I tell you, if these were silent, the very stones would cry out.” Jesus’ statement above was made when','He was rebuked by the Pharisees for eating with sinners','the scribes and the chief priest came to arrest Him','He consoled a woman on His way to the cross','the Pharisees asked Him to rebuke His disciples','','','d','','utme','2015',57,'Admin','2016-11-12 13:28:15','2020-05-03 05:39:58'),(502,'Before Moses brought the Israelites to meet God on Mount Sinai, he charged them to','touch the mountain at the sight of smoke','ensure they eat very well','wash the garments and be consecrated','mate with their wives for three days','','','c','','utme','2015',49,'Admin','2016-11-12 13:28:15','2020-06-04 23:38:14'),(503,'In His teaching about Himself, Jesus said the hireling is not a good shepherd because he','leaves the sheep and flees at the sight of danger','owns the sheep but does not care for them','cares for the sheep but does not discipline them','is the gate-keeper who shuts the sheep out','','','a','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-06-06 09:27:58'),(504,'God displayed His supremacy when Ahab was king during \tthe','incidence of Naboth’s vineyard','war with Ramoth-gilead','inciting of Jehoshaphat against him','contest of Mount Carmel','','','d','','utme','2015',51,'Admin','2016-11-12 13:28:15','2020-06-06 13:41:06'),(505,'In his teaching on effective prayer, James said that the prayer of faith would','influence the authority','heal and cleanse sins','ensure salvation for the sick','enhance commitment to church','','','b','','utme','2015',42,'Admin','2016-11-12 13:28:15','2020-06-06 06:20:32'),(506,'Paul in Thessalonians declared that at the second coming \tof the Lord, those who are alive will not precede those that are','ignorant','condemned','asleep','faithful','','','c','','utme','2015',36,'Admin','2016-11-12 13:28:15','2020-06-02 16:31:56'),(507,'When Ezekiel ate the scroll that was given to him his call. it signified that','God would always go before him','his sins were forgiven','he would never be hungry','he was filled with God’s word','','','d','','utme','2015',40,'Admin','2016-11-12 13:28:15','2020-05-05 18:27:24'),(508,'“ ..... I will surely tear the kingdom from you and will give it to your servant .....” An unwise decision of Solomon that resulted in God making the pronouncement above was his','dependence on other nations for supplies','policy of forced labour','neglect of God for other gods','heavy taxation on the people','','','c','','utme','2015',48,'Admin','2016-11-12 13:28:15','2020-06-03 23:31:55'),(509,'God fed the Israelites with Manna at the wilderness of','Zin','Elim','Sinai','Sin','','','d','','utme','2015',56,'Admin','2016-11-12 13:28:15','2020-06-04 23:38:14'),(510,'“The very stone which the builders rejected has become the head of the corner” The statement above in Peter was directed to those who','did not believe in Jesus’ preciousness','built the Temple of Jerusalem','don’t offer spiritual sacrifice','are hard hearted against Jesus Christ','','','d','','utme','2015',58,'Admin','2016-11-12 13:28:15','2020-06-02 23:03:00'),(511,'A good example of parental responsibility was demonstrated by','Samuel','Eli','Asa','David','','','c','','utme','2015',42,'Admin','2016-11-12 13:28:15','2020-06-02 22:34:11'),(512,'Why did Pilate send Jesus to Herod during the trial?','Jesus, as a Galilean was under Herod’s jurisdiction','Pilate had no power to pass the death sentence','Herod’s court was the last point before crucifixion','Herod had longed to see Jesus perform miracles','','','a','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-06-06 06:14:35'),(513,'Who was the king that granted Nehemiah permission to go and rebuild Jerusalem?','Darius','Nebuchadnezzar','Artaxerxes','Cyrus','','','c','','utme','2015',52,'Admin','2016-11-12 13:28:15','2020-05-03 17:14:14'),(514,'“Shall l pursue after this band? Shall l overtake them?” David’s dependence on God for direction is depicted in the statement above when','Absalom had revolted against him','Saul was within his grasp','the Amalekites had raided Ziklag','he was to go against Goliath','','','c','','utme','2015',51,'Admin','2016-11-12 13:28:15','2020-06-02 17:49:19'),(515,'A parable that teaches a lesson on the demands of the kingdom is that of the','lost coin','Weeds','Samaritan','prodigal son','','','c','','utme','2015',49,'Admin','2016-11-12 13:28:15','2020-04-30 17:57:50'),(516,'Paul admonished the Romans to live a new life in Christ by yielding themselves to God as men who','have been brought from death to life','will meet Christ in God’s Kingdom','will receive judgment on the last day','have suffered for the sake of the gospel','','','a','','utme','2015',42,'Admin','2016-11-12 13:28:15','2020-05-04 18:25:28'),(517,'An action that demonstrated Solomon’s wisdom was his','judgment of the prostitute’s child','reliance on a medium','alliance with other nations','taxation policy for his building works','','','a','','utme','2015',53,'Admin','2016-11-12 13:28:15','2020-06-02 23:03:00'),(518,'According to Corinthians, Paul while defending himself advised believers to boast only of the things that','exhibit their authority','show their weakness','display their exaltation','depict their righteousness','','','d','','utme','2015',57,'Admin','2016-11-12 13:28:15','2020-06-06 09:27:58'),(519,'The most important aspect of the religious reforms of King Josiah was the','renewal of the covenant','cleaning of the Temple','discovery of the tomb of the man of God','discovery of the book of the law','','','d','','utme','2015',49,'Admin','2016-11-12 13:28:15','2020-06-06 17:09:24'),(520,'Cornelius who was converted and baptized by Peter was a','member of the Sanhedrin','centurion','Gentile who persecuted the church','scribe','','','b','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-06-01 20:20:10'),(521,'David was successful as a leader in Israel because','he submitted to God’s guidance','of his training as a solider','of the love of his people','of his life as a shepherd','','','a','','utme','2015',49,'Admin','2016-11-12 13:28:15','2020-06-03 19:53:49'),(522,'The action that portrayed Moses as a leader of the Israelites was his','request to Pharaoh to spare Israelite’s sons','disobedience to Pharaoh and escape','killing of an Egyptian who fought with a Hebrew','protection of the daughter of Jethro','','','c','','utme','2015',46,'Admin','2016-11-12 13:28:16','2020-06-03 23:08:46'),(523,'“How is it that you have agreed together to tempt the spirit of the Lord ....” The statement above was made in reference to the greed of','Gehazi and Naaman','Ahab and Jezebel','Judas and scribes','Ananias and Sapphira','','','d','','utme','2015',48,'Admin','2016-11-12 13:28:16','2020-06-05 14:35:45'),(524,'The king who captured and drove the Israelites into exile during the reign of Jehoiachin was','Nebuchadnezzar','Darius','Cyrus','Artaxerxes','','','a','','utme','2015',57,'Admin','2016-11-12 13:28:16','2020-05-04 18:57:04'),(525,'Nebuchadnezzar decreed that all his subjects should worship the image he had set up whenever they','desired something from him','saw him stand before it','looked upon it','heard the sound of music','','','d','','utme','2015',43,'Admin','2016-11-12 13:28:16','2020-04-28 17:34:07'),(526,'“The Son of man must suffer many things, and be rejected by the elders .....” Jesus made the statement above after He','cleansed the Temple','demanded to know who people thought He was','taught on the Mount','was asked by Pilate if He was the King of the Jews','','','b','','utme','2015',51,'Admin','2016-11-12 13:28:16','2020-06-04 08:59:04'),(527,'How old was Abram when God appeared to him the second time?','105 years','75 years','99 years','85 years','','','c','','utme','2015',57,'Admin','2016-11-12 13:28:16','2020-06-09 11:39:08'),(528,'“Leaves the dead to bury their own dead ....” Jesus’ statement above to the man He asked to follow Him was indicative of','His power over death','His desire to save the man','the futility of life','the cost of discipleship','','','d','','utme','2015',52,'Admin','2016-11-12 13:28:16','2020-06-05 14:35:45'),(529,'Paul in Romans advised believers to respect those in authority to avoid God’s wrath and also for the sake of','conscience','Christ','faith','others','','','a','','utme','2015',48,'Admin','2016-11-12 13:28:16','2020-05-04 18:50:19'),(530,'“What is this conversation which you are holding with each other ...” Jesus made the statement above to','Cleopas and the other disciple when','they were on their way to Emmaus','He was about to be arrested','they were gathered in a room after His resurrection','','','a','','utme','2015',63,'Admin','2016-11-12 13:28:16','2020-06-06 11:00:47'),(531,'A key requirement for healing as exemplified by the disciple’s inability to heal the epileptic boy is','righteousness','power','humility','Faith','','','b','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-06-06 06:20:32'),(532,'According to Paul in Philippians, Jesus demonstrated humility when He','had pity on the possessed man','likened Himself to God','forgave those who crucified Him','took the form of man','','','d','','utme','2015',67,'Admin','2016-11-12 13:28:16','2020-06-03 19:53:49'),(533,'“Holy, holy, holy is the Lord of host ....” The statement above was made in reference to the call of','Ezekiel','Jeremiah','Amos','Isaiah','','','d','','utme','2015',52,'Admin','2016-11-12 13:28:16','2020-06-05 14:35:45'),(534,'For obeying His word, God rewarded Shiphrah and Puah with','families','positions','servants','wealth','','','a','','utme','2015',41,'Admin','2016-11-12 13:28:16','2020-05-03 17:31:33'),(535,'In his teaching on Spiritual gifts in Corinthians, Paul said that all gifts are inspired by','the same Spirit','prayer','the individual’s ability','grace','','','a','','utme','2015',64,'Admin','2016-11-12 13:28:16','2020-06-05 22:12:32'),(536,'When David’s son Absalom rebelled against him, David was forced to','flee from Jerusalem','abdicate the throne','divide his kingdom','surrender to him','','','a','','utme','2015',58,'Admin','2016-11-12 13:28:16','2020-04-30 18:11:20'),(537,'“Go and stand in the temple and speak to the people all the words of this life.” The angel’s statement above to Peter was after','the murmurings of the Hellenists','his release from prison','his vision of eating unclean meat','he received the Holy Spirit','','','b','','utme','2015',43,'Admin','2016-11-12 13:28:16','2020-06-02 20:29:37'),(538,'In His sermon on the Mount, Jesus discouraged His listeners from laying up treasures on earth because','it would create enmity','they would not be respected','thieves would steal them','the earth would pass away','','','d','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-06-03 16:31:47'),(539,'Paul returned Philemon’s slave back to him, to ensure that','Philemon forgave and accepted the slave','the slave can complete his service time','he would be welcome when he left prison','he could boast of Philemon’s obedience','','','b','','utme','2015',42,'Admin','2016-11-12 13:28:16','2020-06-02 16:31:56'),(540,'One of the prophets that prophesied hope for Israel in spite of God’s promise of punishment was','Amos','Jeremiah','Obadiah','Hosea','','','b','','utme','2015',62,'Admin','2016-11-12 13:28:16','2020-04-28 17:56:22'),(541,'The church that was commended for giving even when in extreme poverty was in','Galatia','Corinth','Macedonia','Thessalonica','','','d','','utme','2015',54,'Admin','2016-11-12 13:28:16','2020-06-03 19:35:12'),(542,'“........ I am the Lord, and there is no other, besides me \tthere is no God....” God’s statement above through Isaiah depicts','assurance to Isaiah of His existence','Israel’s acceptance of His Supremacy','His divine nature','His sovereignty','','','c','','utme','2015',55,'Admin','2016-11-12 13:28:16','2020-06-03 23:08:46'),(543,'Believers today are partakers of the New Covenant through','partaking in baptism by immersion','the gift of the spirit','adherence to all the sacraments','obedience to church leadership','','','b','','utme','2015',48,'Admin','2016-11-12 13:28:16','2020-06-07 19:15:47'),(544,'God’s message through Jonah’s was to the people of','Joppa','Tarshish','Samaira','Nineveh','','','d','','utme','2015',53,'Admin','2016-11-12 13:28:16','2020-06-05 14:28:50'),(545,'Amos is often referred to as a prophet of','doom','love','hope','justice','','','a','','utme','2015',45,'Admin','2016-11-12 13:28:16','2020-06-04 08:05:52'),(546,'On the fourth day, God created the sun, moon and stars for the following purposes except','to separate the day from the night.','for signs of seasons, days and years.','to give light upon the earth.','to dry up flood from the face of the earth.','','','a','','wassce','2010',61,'Admin','2016-11-12 13:36:18','2020-06-23 13:07:27'),(547,'Which of the following rivers flowed out of Eden to water \tits garden? River','Abana','Pharpar','Pishon','Nile','','','c','','wassce','2010',53,'Admin','2016-11-12 13:36:21','2020-05-03 17:47:16'),(548,'The wife of Moses was called','Rebecca.','Rachel.','Zipporah.','Deborah','','','c','','wassce','2010',57,'Admin','2016-11-12 13:36:21','2020-05-03 17:31:32'),(549,'When Joseph was sent to his brothers, he met them pasturing at','Hebron.','Bethel.','Beersheba','Dothan','','','d','','wassce','2010',54,'Admin','2016-11-12 13:36:21','2020-06-01 22:38:15'),(550,'How old was Joshua before he died?','95 years','98 years','110 years','111 years','','','c','','wassce','2010',50,'Admin','2016-11-12 13:36:21','2020-06-05 15:31:44'),(551,'Why was Saul asked to destroy the Amalekites?','They were worshipping false gods','They opposed the Israelites when they left Egypt','They did not assist the Israelites','God did not like the Amalekites','','','b','','wassce','2010',60,'Admin','2016-11-12 13:36:21','2020-06-06 09:25:49'),(552,'The first king of Israel lost his throne because he','was a weak king.','knew little about governance.','lost the support of Yahweh.','was irresponsible.','','','d','','wassce','2010',60,'Admin','2016-11-12 13:36:21','2020-06-06 17:09:24'),(553,'During the Ammonite war Uriah disobeyed King David by refusing to go to his house to sleep because','it was wrong to go home drunk.','his wife would regard him as a coward.','it would be unpatriotic to break military vow.','he suspected that the king had lost interest in the battle.','','','c','','wassce','2010',60,'Admin','2016-11-12 13:36:21','2020-06-02 00:32:35'),(554,'When Abner wanted to transfer his allegiance to David, the latter gave him the condition to','openly submit to Joab.','convince all Israel to come over to David.','restore his wife Michal to him.','slay Ishbosheth. Saul’s successor.','','','c','','wassce','2010',42,'Admin','2016-11-12 13:36:21','2020-04-12 13:19:32'),(555,'God said to Solomon in a dream, <em>“Ask what I shall give you”</em>. What did Solomon ask for?','Power and authority','Great wealth and riches','Stable and long term in office','An understanding mind','','','d','','wassce','2010',54,'Admin','2016-11-12 13:36:21','2020-06-06 09:27:58'),(556,'Solomon showed lack of wisdom when he','put up temples for the gods of his wives','married many wives with children','invited the Queen of Sheba','gave out judgment to two harlots.','','','a','','wassce','2010',53,'Admin','2016-11-12 13:36:21','2020-06-02 13:05:28'),(557,'Solomon told Hiram, King of Tyre that he had decided to build a temple for the Lord because','the Lord had given him peace and all good things.','his father, David, never intended to build one.','he wanted to force Hiram to come to his aid.','Hiram had entered into a marriage alliance with his father.','','','a','','wassce','2010',50,'Admin','2016-11-12 13:36:21','2020-06-06 09:25:49'),(558,'Elijah destroyed the prophets of Baal','to oppose Baal worship.','as an act of revenge.','as an act of sacrifice.','to shame Jezebel.','','','a','','wassce','2010',50,'Admin','2016-11-12 13:36:21','2020-05-04 18:08:29'),(559,'Who was the king who reintroduced the Passover feast in Israel?','Jeroboam','Asa','Josiah','Rehoboam','','','c','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-06-03 19:53:49'),(560,'Who was the prophet responsible for the re-building of the Temple during the exile?','Ezra','Isaiah','Jeremiah','Ezekiel','','','a','','wassce','2010',53,'Admin','2016-11-12 13:36:21','2020-06-04 15:35:42'),(561,'Which of the following prophets taught that Yahweh was merciful?','Isaiah','Hosea','Amos','Ezekiel','','','b','','wassce','2010',56,'Admin','2016-11-12 13:36:21','2020-06-03 16:39:32'),(562,'Daniel was delivered from the lion’s den because','of his faith in God’s power.','of the king’s prayers.','he was able to charm the lions.','the lions were kind to him.','','','a','','wassce','2010',58,'Admin','2016-11-12 13:36:21','2020-06-04 16:42:04'),(563,'The person who discovered the book of law in the sanctuary during the reign of Josiah was','Zedekiah','Huldah.','Hilkiah','Jeremiah.','','','c','','wassce','2010',58,'Admin','2016-11-12 13:36:21','2020-06-05 22:20:30'),(564,'According to Amos’ prophecy, the “Day of the Lord” to the Israelites would be a day of','victory over enemies','happiness.','doom.','national triumph.','','','c','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-06-05 23:25:07'),(565,'Isaiah said that when Israel spread forth their hands, God would hide his face because they were','making many prayers','offering vain sacrifices.','worshipping God with their hearts.','observing elaborate feasts.','','','b','','wassce','2010',46,'Admin','2016-11-12 13:36:22','2020-06-03 01:56:55'),(566,'From Luke’s account of the baptism of Jesus, which of the following happened before the voice was heard?','John was reluctant to baptize Him.','John called Jesus the Lamb of God.','Jesus arrived with Peter, James and John','The Holy Spirit descended upon Jesus.','','','d','','wassce','2010',68,'Admin','2016-11-12 13:36:22','2020-06-04 15:17:57'),(567,'Before their first encounter with Jesus, Peter and Andrew were','preachers.','tax collectors.','fishermen.','tent makers.','','','c','','wassce','2010',45,'Admin','2016-11-12 13:36:22','2020-06-05 06:55:18'),(568,'By the action of the Good Samaritan, Christians are encouraged to','go out to the streets and look for someone to help.','always travel with enough money in case the need arises to help.','show compassion and render help to the needy.','avoid travelling on lonely roads where armed robbers could attack.','','','c','','wassce','2010',54,'Admin','2016-11-12 13:36:22','2020-06-06 11:00:47'),(569,'The <em>lost sheep</em> and the <em>lost coin</em> share the following except that','both of them are lost and need to be found','it is their owners’ responsibility to look for them.','the coin, may not know that it is lost.','their owners rejoice when they are found.','','','a','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-06-07 19:15:47'),(570,'The parable of the rich man and Lazarus indicates that','poverty is a mark of righteousness.','death is a leveler for rich and poor','only poor people will die physically.','all rich men are going to hell fire.','','','b','','wassce','2010',43,'Admin','2016-11-12 13:36:22','2020-06-03 22:25:14'),(571,'In one of the resurrection appearances Jesus asked his disciples, whether they had anything to eat as he','was hungry after three days in the grave without food.','suspected that the disciples stock may have finished','wanted to prove to them that he was not a ghost.','wanted to replenish the food stuff.','','','b','','wassce','2010',47,'Admin','2016-11-12 13:36:22','2020-06-04 10:05:36'),(572,'By introducing Jesus as the Lamb, John was pointing to','Jesus’ sacrificial death.','Jesus’ miraculous healing.','the Jewish yearly sacrifices.','the priestly function of Jesus','','','a','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-05-30 12:41:41'),(573,'St. John refers to Jesus’ miracles as ‘signs’ because they convey the following ideas except','acceptance of Jesus as son of God.','proofs of the kingdom of God.','faith in Jesus as the means to eternal life.','demand for more wonders.','','','d','','wassce','2010',47,'Admin','2016-11-12 13:36:22','2020-05-04 18:32:58'),(574,'Apart from the miracles at the wedding feast, another miracle of Jesus at Cana in Galilee was','feeding the four thousand.','healing the noble man’s son.','healing of a man born blind','healing a paralytic man.','','','d','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-06-03 18:36:41'),(575,'At whose well did Jesus meet the Samaritan woman?','Abraham','Isaac','Jacob','Joseph','','','c','','wassce','2010',52,'Admin','2016-11-12 13:36:22','2020-06-02 00:04:40'),(576,'The lame man who was healed at the pool of Bethizatha was charged by the Jews for breaking the law of the Sabbath \tbecause he','consulted Jesus on the Sabbath day.','was carrying his pallet on a Sabbath day.','was on a journey on a Sabbath day.','was seen with Jesus on a Sabbath day.','','','b','','wassce','2010',57,'Admin','2016-11-12 13:36:22','2020-06-05 06:55:18'),(577,'The descent of the Holy Spirit on the day of  Pentecost was prophesied by','Amos.','Joel.','David.','Ezekiel.','','','b','','wassce','2010',60,'Admin','2016-11-12 13:36:22','2020-06-05 15:31:42'),(578,'When the apostles in Jerusalem heard that Samaria had received the gospel, they sent to them','Mark and Barnabas.','Peter and John.','Paul and John.','Peter and Paul.','','','b','','wassce','2010',66,'Admin','2016-11-12 13:36:22','2020-06-25 23:11:47'),(579,'The conversion of the Ethiopian eunuch confirms the','universality of the gospel.','work of the Apostles.','work of Philip in Samaria','the love of God for the eunuch.','','','a','','wassce','2010',54,'Admin','2016-11-12 13:36:22','2020-06-05 15:31:43'),(580,'After his conversion, Paul was introduced to the disciples in Jerusalem by','Peter','Ananias.','Barnabas.','Philip','','','c','','wassce','2010',50,'Admin','2016-11-12 13:36:22','2020-06-05 14:35:45'),(581,'Before Barnabas and Saul were sent on missionary journey, the elders, laid hands on them. The laying on of  hands signifies','confirmation.','selection.','commissioning.','protection','','','c','','wassce','2010',60,'Admin','2016-11-12 13:36:22','2020-05-01 09:38:02'),(582,'The man who delivered judgment of the Jerusalem Council on the admission of Gentiles into the Church was','Peter.','Paul.','Barnabas.','James.','','','d','','wassce','2010',51,'Admin','2016-11-12 13:36:22','2020-06-03 17:17:59'),(583,'Why according to Paul must Christians be subject to civil authority?','To receive God’s approval','To avoid God’s wrath','God has commanded it','It is an Old Testament law','','','b','','wassce','2010',57,'Admin','2016-11-12 13:36:22','2020-06-02 14:11:16'),(584,'In the Epistle to the Romans, justification is received through','faith in Jesus.','moral uprightness','observance of the law.','giving of alms','','','a','','wassce','2010',55,'Admin','2016-11-12 13:36:22','2020-05-06 18:56:02'),(585,'By saying that no human being will be justified in the sight of God by works: Paul meant that','the mosaic law was useless in ensuring justification for man.','the law had been weakened in human flesh.','knowledge of sin came through the law.','Moses who gave the law was not justified by the law.','','','b','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-06-05 15:31:43'),(586,'Paul’s greatest writing about spiritual gift is found in his letter to the','Galatians.','Ephesians.','Romans.','Corinthians','','','d','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-06-07 19:15:47'),(587,'In Corinthians, Paul cited all the following resurrection appearances of Jesus except','Cephas.','The Twelve.','Mary Magdalene','James.','','','d','','wassce','2010',49,'Admin','2016-11-12 13:36:22','2020-06-03 00:49:59'),(588,'According to Peter, a Christian should exercise his freedom by','doing what is right.','claiming his freedom at all cost.','enduring pain while suffering.','using it as a pretext for evil.','','','a','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-06-05 23:41:23'),(589,'In which of the following ways did the Philippians share in Paul’s suffering while in prison?','Appealing for the release of Paul','Sending him relief materials','Continuing in prayer for him','Remaining in partnership with him in receiving.','','','b','','wassce','2010',53,'Admin','2016-11-12 13:36:22','2020-06-03 18:36:41'),(590,'What advice did Peter give to the elders of the church in their relationship with the younger members?','Work as if being under external constraint','Work without a domineering spirit','Work with a desire for material gains','Control their flocks with firm hands','','','b','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-06-04 23:38:14'),(591,'In Philippians, Paul taught that Jesus ‘humility and death on the cross earned Him','salvation for Israel.','adoption as son of God.','exaltation as Lord.','eternal life in the kingdom.','','','c','','wassce','2010',55,'Admin','2016-11-12 13:36:22','2020-04-30 17:58:54'),(592,'Why did Paul wish to retain Onesimus?','To protect him from persecution','Christianity was opposed to slavery','Philemon had earnestly requested that from Paul','To serve him during his imprisonment','','','b','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-06-07 19:15:47'),(593,'James teaches that the man who shall be blessed is he who','hears the word of God.','knows the law perfectly.','does the word he hears.','teaches the word of God well.','','','c','','wassce','2010',58,'Admin','2016-11-12 13:36:23','2020-06-05 15:31:42'),(594,'Through God the Christian is no longer a slave but a son, and if a son then','a master.','a redeemed.','an heir.','a beneficiary.','','','c','','wassce','2010',57,'Admin','2016-11-12 13:36:23','2020-06-05 23:34:32'),(595,'Peter recommends submission to the civil authority so as to','silence the ungodly.','encourage the believers.','promote faith in God.','live as free men.','','','a','','wassce','2010',64,'Admin','2016-11-12 13:36:23','2020-06-01 21:26:02'),(596,'What was God’s purpose in creating man?','To be master of all creation','To help Him look after the garden','To name the things He created','To multiply and fill the earth','','','d','','utme','2010',75,'Admin','2016-11-12 13:46:53','2020-06-24 19:00:40'),(597,'Isaac’s prayer to God for his barren wife showed that he','truly loved her','sincerely loved his God','had faith in God','was tired of being childless','','','c','','utme','2010',63,'Admin','2016-11-12 13:46:54','2020-06-25 23:26:59'),(598,'In God’s covenant with Israel, the central theme was','restoration','circumcision','obedience','salvation','','','c','','utme','2010',71,'Admin','2016-11-12 13:46:54','2020-06-25 23:26:59'),(599,'‘Who am I that I should go to Pharoah......’ When Moses resisted God’s call with the state¬ment above, it portrayed his','stubbornness','incompetence','lack of strength','lack of eloquence','','','d','','utme','2010',61,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(600,'What was Samson’s major achievement as Israel’s leader?','He suppressed the Philistines','He captured the city of Jericho','He saved the Israelites from the Amorites','He secured permanent independence for Israel','','','a','','utme','2010',58,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(601,'God guided the Israelites on their way from Egypt to the Promised Land by','the work of two angels','dividing the Red Sea','a pillar of cloud and a pillar of fire','miracles that gave them direction on the way','','','d','','utme','2010',61,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(602,'‘Deal gently for my sake with the young man Absalom.’ David’s statement above exhibited his','indulgent love for his son','willingness to forgive his competitors','desire to punish Absalom himself','high level of parental control','','','a','','utme','2010',53,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(603,'How did king Asa prove to be a godly king?','He killed all the prophets of Baal at Mount Carmel.','He saved Judah from the Philistine menace','He instituted spiritual reforms that removed all idols and prostitution in the land.','He made the worship of Yahweh mandatory for every Jew and sojourner.','','','c','','utme','2010',65,'Admin','2016-11-12 13:46:55','2020-06-24 19:00:40'),(604,'The Hebrew midwives who obeyed God rather than Pharaoh were blessed with','favour from all the Israelites','long life in Canaan','resources','families','','','d','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(605,'When Saul disobeyed God’s command, Samuel rebuked him by saying that','the sword would never depart from his house','to obey was better than sacrifice','he should fear the LORD and obey the people’s voice.','though he was little, yet he was the head.','','','b','','utme','2010',72,'Admin','2016-11-12 13:46:55','2020-06-24 19:00:40'),(606,'David’s behaviour after Prophet Nathan accused him of murder and adultery showed his','justification','repentance','greed','righteousness','','','b','','utme','2010',77,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(607,'How did King Solomon demonstrate his wisdom in settling the dispute over the ownership of a baby by the two \\nProstitutes?','He interrogated them for seven days until the truth was discovered.','He interrogated them for only three days and the truth was revealed','He asked them to divide the child into two and the mother was known.','He threatened to give the child to a neutral woman and the mother was known.','','','c','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(608,'The prophet who made known the imminent divi¬sion of the kingdom of Israel during Solomon’s reign was','Jehu','Ahijah','Elisha','Elijah','','','b','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(609,'Naaman’s leprosy was transferred to Gehazi be¬cause Gehazi was','ambitious','anxious','covetous','contemptuous','','','c','','utme','2010',53,'Admin','2016-11-12 13:46:55','2020-06-03 18:03:48'),(610,'Obadiah who was m charge of Ahab’s house hold demonstrated reverence for the LORD by','giving Elijah the bull for the sacrifice on Mount Carmel.','rebuking Ahab and Jezebel for their evil deeds','hiding a hundred prophets of God from Jezebel’s wrath.','helping Elijah to kill the prophets of Baal on Mount Carmel.','','','c','','utme','2010',58,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(611,'Although Josiah removed the vessels of Baal and Asherah from the Temple, God did not turn from the fierceness of His \twrath because”','the people did not remove them completely','Jehoahaz, Josiah’s son, had provoked Him','Manasseh had provoked Him','the people had opposed Josiah.','','','c','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(612,'What was Nehemiah’s initial reaction to the news about the ruins of Jerusalem?','He tasked the people on what to contribute','He called for volunteers to assist him','He fasted and prayed for forgiveness of sins','He asked for permission to travel home.','','','c','','utme','2010',93,'Admin','2016-11-12 13:46:55','2020-07-02 15:08:57'),(613,'After the dedication of the Temple, Ezra studied the law of the LORD in order to','defend the Jews against the Babylonians','become the first judge in Jerusalem','enhance his prophetic status','teach His statutes and ordinances in Israel.','','','d','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(614,'Daniel became distinguished above all other pre¬sidents and satraps because','an excellent spirit was in him','the spirit of Darius was in him','he was a good administrator','he was highly educated.','','','a','','utme','2010',61,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(615,'How did the Ninevites react to Jonah’s message?','They did not believe it','They believed it for a while','They repented of their sins','They ordered him out of their city','','','c','','utme','2010',54,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(616,'In Prophet Hosea’s analysis, harlotry is equivalent to Israel’s','prostitution','idolatrous practices','religious practices','adultery.','','','b','','utme','2010',59,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(617,'‘... But let justice roll down like waters, and righteousness like an overflowing stream.’ Amos’ statement above suggests that the society was terribly','vindictive','abusive','oppressive','destructive','','','c','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(618,'Isaiah emphasized holiness above all things be¬cause God','knew their hearts were right with him','was not interested in their sacrifices','who called them is holy','was searching their sinful   hearts.','','','c','','utme','2010',60,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(619,'God told Ezekiel that the house of Israel would not listen to him because they','were a people of foreign speech','had forsaken His laws','were of a stubborn heart','had not truly repented','','','c','','utme','2010',78,'Admin','2016-11-12 13:46:55','2020-06-24 19:00:40'),(620,'According to Isaiah, God sent him to','proclaim liberty to the captives','proclaim victory over Israel’s enemies','be a watchman over Israel','destroy and overthrow nations.','','','a','','utme','2010',65,'Admin','2016-11-12 13:46:55','2020-06-24 19:00:40'),(621,'Jesus was tempted by the devil so as to','fulfil all righteousness','show His power over forces of nature','show that no one is above temptation','test the devil’s power','','','c','','utme','2010',78,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(622,'‘Depart from me, for l am a sinful man, oh Lord.’ This statement was uttered by Peter at the','last supper','garden of Gethsemane','call of the disciples','transfiguration','','','c','','utme','2010',72,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(623,'The impact of Jesus’ miracle of turning water into wine was that the','servants were astonished','master of ceremony believed','disciples believed more in Him','people glorified God.','','','c','','utme','2010',61,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(624,'After the healing of the demoniac in the country of the Gerasenes, the people begged Jesus to (Mark 5:15-19)','stay with them','visit them always','go away from them','heal their sick.','','','c','','utme','2010',72,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(625,'Jesus told the parable of the lost sheep in order to illustrate that','every believer ought to rejoice with those who rejoice.','no person can hide from God','God’s love is unlimited','there is joy in heaven over a sinner who repents','','','d','','utme','2010',66,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(626,'According to Jesus, the seventy disciples should rejoice because','their names were written in heaven','their faith and zeal were increased','of the submission of evil Spirits to them','of the fall of Satan from heaven like lightening.','','','a','','utme','2010',70,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(627,'According to Mark, after the transfiguration, Jesus charged His disciples to','be prepared for persecution','tell no one what they had seen','have no hands in His betrayal','go to the Gentiles immediately','','','b','','utme','2010',72,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(628,'According to Luke, the multitude that followed Jesus during the triumphal entry rejoiced and praised God with a loud voice because (Luke 19:37-39)','they realized that Jesus was a prophet','of the mighty works He had done','He was riding on a colt in humility','they believed He was their Messiah','','','b','','utme','2010',73,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(629,'‘Truly, I say to you, today you will be with me in paradise.....’ Jesus made the statement above to one of the \t\tcriminals because he (Luke 23:42-43)','respected Him','praised Him','rebuked his partner','was repentant','','','d','','utme','2010',66,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(630,'The message of the risen Christ to the women who came early to the tomb was to be relayed to the disciples and (Mark 16:7)','the Jews','the Sadducees','Thomas','Peter','','','d','','utme','2010',74,'Admin','2016-11-12 13:46:56','2020-06-24 19:00:40'),(631,'According to the Gospel of John, Jesus is the true vine while the vinedresser is (John 15:1)','the Holy Spirit','His father','the gardener','His mother','','','b','','utme','2010',65,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(632,'‘...Why has Satan filled your heart to lie to the Holy Spirit..’ Peter rebuked Ananias in the statement above for his sin of (Acts 5:3-4)','greed','insincerity','covetousness','partiality.','','','b','','utme','2010',66,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(633,'Paul informed the Galatians that the gospel he preached came through (Gal. 3:23-29)','a revelation of Jesus Christ','his desire to lead them','inspiration from the angels','the faith of men.','','','a','','utme','2010',61,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(634,'‘You son of the devil, you enemy of all righteous¬ness, full of all deceit and villainy .....’ This statement of Paul was addressed to (Acts 13:6-11)','Elymas, the magician','Paulus, the proconsul','Simon, the Magician','Demetrius, the silversmith','','','a','','utme','2010',69,'Admin','2016-11-12 13:46:56','2020-06-24 19:00:40'),(635,'‘Unless you are circumcised according to the custom of Moses, you cannot be saved.’ The statement above by the men from Judea led to the','murmurs of the Hellenists','convening of the Jerusalem Council','persecution that scattered the disciples','circumcision of the Gentiles.','','','b','','utme','2010',75,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(636,'According to Galatians, the Law was added be¬cause of','righteousness','transgressions','grace','persecution.','','','b','','utme','2010',73,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(637,'According to Galatians, the death of Christ has eliminate all forms of','suffering','differences','condemnation','poverty.','','','c','','utme','2010',62,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(638,'Peter in his teaching no humility, admonishes Christians to','safeguard their faith','seek things that are above','be gentle in spirit','avoid life’s anxiety','','','b','','utme','2010',56,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(639,'Paul in Corinthians advised that Christians should re-affirm their love for those who','are kind to them','wrong them','humble themselves','are in authority.','','','b','','utme','2010',63,'Admin','2016-11-12 13:46:56','2020-06-09 11:38:06'),(640,'According to Corinthians, variety of gifts are inspired by','fervent prayers','angels of God','constant fasting','the same Spirit','','','d','','utme','2010',59,'Admin','2016-11-12 13:46:56','2020-06-24 19:00:40'),(641,'According to Paul in Corinthians, generosity produce','righteousness','salvation','the grace of God','thanksgiving to God','','','d','','utme','2010',76,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(642,'Busy bodies and those living in idleness in the church at Thessalonica were admonished to','pray for those in authority for peace','do their work in quietness and earn a living','appeal to those in authority to create jobs','endure persecution from their masters.','','','b','','utme','2010',58,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(643,'Paul in Thessalonians told believers that the coming of the Lord would be accompanied by','songs of praise','the sound of the trumpet','signs and wonders','wailing and mourning','','','b','','utme','2010',65,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(644,'James stated in his epistle that when believers meet various trials, their faith produces','weakness','strength','steadfastness','righteousness','','','c','','utme','2010',72,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(645,'Peter in his epistle enjoined servants to be sub¬missive to their masters with all','gentleness','seriousness','respect','humility.','','','c','','utme','2010',70,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(646,'According to Joseph’s interpretation to Pharaoh’s dreams; the seven empty ears blighted by the east wind represented seven years of','famine.','abundance.','farming.','Harvest','','','a','','wassce','2011',58,'Admin','2016-11-12 14:29:10','2020-05-04 10:11:47'),(647,'Moses was born at a period when the Hebrew were','suffering.','increasing.','backsliding.','rejoicing.','','','a','','wassce','2011',59,'Admin','2016-11-12 14:29:12','2020-06-03 16:31:47'),(648,'“…who is the Lord that I should heed his voice and let Israel go”? After this statement, Pharaoh','engaged Israel into forced labour with task masters.','ordered midwives to kill all males born to Israelites.','asked Israelites to fetch their own straws to produce bricks.','decreed that Israelites’ male babies be drowned in the Nile.','','','c','','wassce','2011',52,'Admin','2016-11-12 14:29:12','2020-05-06 04:53:14'),(649,'The name Moses means','baptized in water','abandoned in water.','drawn out of water.','thrown into water.','','','c','','wassce','2011',69,'Admin','2016-11-12 14:29:12','2020-06-06 06:10:46'),(650,'After the departure of the Israelites God made Pharaoh pursue them in order to','force Israel to return to Egypt.','hasten Israel’s journey through the wilderness.','make Israel obey Moses.','get glory over Pharaoh and his host.','','','d','','wassce','2011',69,'Admin','2016-11-12 14:29:12','2020-06-07 19:15:47'),(651,'Who among the following kings was raised by God against the Israelites for going after the Canaanite gods?','Agap','Jabin','Zebah','Zalmunnal','','','c','','wassce','2011',50,'Admin','2016-11-12 14:29:12','2020-06-05 22:12:32'),(652,'Deborah, a prophetess who was a judge in Israel was the wife of','Joshua.','Abijah.','Lappidoth.','Sisera.','','','c','','wassce','2011',54,'Admin','2016-11-12 14:29:12','2020-06-06 13:41:06'),(653,'The sons of Eli were regarded as worthless men for all the following reasons except','sleeping with the women at the tent of meeting','failing to attend the places of worship regularly.','taking the meat for sacrifice before boiling.','showing no respect for God.','','','b','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-06-05 16:12:11'),(654,'Who was the first king of Israel?','Kish','David','Solomon','Saul','','','d','','wassce','2011',55,'Admin','2016-11-12 14:29:13','2020-06-04 17:25:08'),(655,'Joel and Abijah were the sons of','Eli.','Saul','Samuel','David.','','','c','','wassce','2011',49,'Admin','2016-11-12 14:29:13','2020-05-04 18:17:40'),(656,'“...Behold, to obey is better than sacrifice and to hearken than the fat of rams”. This statement was Samuel’s reaction to','David’s defense of his sin.','Saul’s defense of disobedience.','King Agag’s defense of his victory.','Eli’s defense of the sins of his sons.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-06-04 11:55:48'),(657,'On Mount Gilboa, king Saul decided to commit suicide in order to avoid','ridicule from the Philistines.','witnessing the death of his sons','being killed by his armour-bearer.','the agony of the injuries received.','','','a','','wassce','2011',53,'Admin','2016-11-12 14:29:13','2020-06-06 13:41:06'),(658,'David bitterly mourned when Abner was slain by','Ishbosheth.','Absalom.','Asahel.','Joab.','','','d','','wassce','2011',36,'Admin','2016-11-12 14:29:13','2020-04-12 16:21:50'),(659,'One of the main features of Solomon’s prayer at the dedication of the Temple was the','celebration of God who is faithful to his covenant','recognition that God loves sacrifices.','assertion that God dwells in man-made houses.','proclamation that no prayers be henceforth made outside the temple.','','','d','','wassce','2011',54,'Admin','2016-11-12 14:29:13','2020-06-04 10:05:36'),(660,'In spite of Solomon’s apostasy, his empire remained intact until his death because','God deferred, for David’s sake, the punishment due to him','he won decisive victories over his enemies.','he always took wise decisions','. \\nhe made surrounding nations fight among themselves.','','','a','','wassce','2011',78,'Admin','2016-11-12 14:29:13','2020-06-06 06:10:46'),(661,'“Your father made our yoke heavy. Now therefore, lighten the hard service of your father.” These were the words of','Jeroboam','Solomon','.         \\nDavid','Ahijah.','','','a','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-06-03 15:39:55'),(662,'Obadiah, Ahabs servant, made history for himself by','arresting the prophets of Yahweh','. \\nexecuting all the prophets.','hiding and feeding some of the prophets in a cave.','D inciting the prophets to rebel against king Ahab.','','','c','','wassce','2011',49,'Admin','2016-11-12 14:29:13','2020-05-05 20:50:50'),(663,'The contest between Elijah and the prophets of Baal took place at mount','Olive.','Tabor.','Sinai','Camel.','','','d','','wassce','2011',45,'Admin','2016-11-12 14:29:13','2020-06-02 20:14:19'),(664,'King Jehoshaphat was commended for adopting his father’s policies which included','removing Maacah, his grandmother from being queen.','waging wars with the king of Israel.','allowing the cult prostitutes to operate.','burning of incense at the high places.','','','a','','wassce','2011',54,'Admin','2016-11-12 14:29:13','2020-06-02 22:53:54'),(665,'God’s constant love for unfaithful Israel is demonstrated in the book of','Amos','Isaiah','Hosea','Ezekiel','','','c','','wassce','2011',42,'Admin','2016-11-12 14:29:13','2020-06-02 23:46:46'),(666,'During the rebuilding of the temple, Zerubbabel rejected the offer of help from the','inhabitants of Ammon.','people of Samaria.','friends of Sanballat and Tobiah','governors of the provinces beyond the rivers.','','','c','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-06-03 18:36:41'),(667,'“And I asked them concerning the Jews that survived, who has escaped exile, and concerning Jerusalem...” These were the words of','Jeremiah.','Nehemiah','Ezra.','Hanani.','','','b','','wassce','2011',47,'Admin','2016-11-12 14:29:13','2020-06-04 16:33:45'),(668,'The presentation of Myrrh to Jesus signifies Jesus’','humility and servant hood.','suffering and impending death.','lordship on earth.','kingship and messiah ship.','','','b','','wassce','2011',68,'Admin','2016-11-12 14:29:13','2020-05-06 18:56:03'),(669,'“My son your sins are forgiven”. These were the words of Jesus to the','demoniac.','paralytic.','man born blind','centurion’s servant.','','','b','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-05-05 17:49:32'),(670,'Peter called for the construction of three booths for Jesus, Moses and Elijah, respectively during','the transfiguration.','the Ascension.','Jesus’ arrest.','the Passover feast.','','','a','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-06-03 19:53:06'),(671,'The incidents that took place following Jesus’ death on the cross did not include the','tearing into two of the temple’s veil.','quaking of the earth that broke the rocks.','the opening of the tombs.','trembling of the chief priest and his conversion.','','','b','','wassce','2011',56,'Admin','2016-11-12 14:29:13','2020-06-01 17:30:28'),(672,'“How is it that you a Jew ask a drink of me...” This statement was made by the','Gentile woman.','woman of Samaria.','possessed woman.','woman of Galilee','','','b','','wassce','2011',48,'Admin','2016-11-12 14:29:13','2020-06-05 16:07:18'),(673,'The Jews showed their hatred for Paul and Barnabas in Pisidia by','dragging out the apostles for stoning.','insisting and driving them out of the Synagogue.','influencing leading men in the city to drive them out.','beating and stoning them in the Synagogue','','','c','','wassce','2011',46,'Admin','2016-11-12 14:29:13','2020-05-03 17:47:17'),(674,'When Jesus said “apart from me you can do nothing”, he \tmeant that Christians','pray without ceasing','. \\nmust faithfully trust in Him always.','cannot pass examinations if they did not pray.','should expect God to do everything for them.','','','b','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-06-05 14:28:50'),(675,'On the day of Ascension, Jesus promised his disciples','peace in the kingdom of God.','amazing grace.','power of  the Holy Ghost.','His abiding physical presence.','','','c','','wassce','2011',38,'Admin','2016-11-12 14:29:13','2020-05-06 18:15:56'),(676,'On Ascension Day two men in white robes inform the disciples that Jesus would','send for them.','be seen in heaven.','prepare a place for them.','come again.','','','d','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-06-05 16:39:17'),(677,'“Go up and join this chariot”.  This statement was made to','John.','Paul.','James.','Philip.','','','d','','wassce','2011',51,'Admin','2016-11-12 14:29:13','2020-06-01 12:26:04'),(678,'Saul was converted on his journey to','Samaria','Jerusalem.','Salamis.','Damascus.','','','d','','wassce','2011',54,'Admin','2016-11-12 14:29:13','2020-06-02 13:34:07'),(679,'Which of the following places was not visited by Paul during his first missionary journey?','Salamis','Athens','Antioch of Syria','Antioch of Pisidia','','','a','','wassce','2011',49,'Admin','2016-11-12 14:29:13','2020-06-03 00:28:51'),(680,'Paul was stoned and dragged out of the city by','the Lyconians and the Ephesians.','enemies of the healed lame man','. \\nJews from Antioch and Iconium.','Jews in the Synagogue.','','','a','','wassce','2011',56,'Admin','2016-11-12 14:29:13','2020-05-05 21:55:28'),(681,'The resurrection of Jesus is significant to Christians for it \tmarked the','end of the Jewish faith.','assurance of eternal life for Christians.','beginning of Christianity','end of Jesus’ earthly ministry.','','','b','','wassce','2011',56,'Admin','2016-11-12 14:29:13','2020-06-07 19:15:47'),(682,'According to Paul, ‘As sin reigned in death, grace also might reign through righteousness to','faith in God’.','the knowledge of God’.','eternal life','the glory of the father’.','','','c','','wassce','2011',49,'Admin','2016-11-12 14:29:13','2020-06-03 12:47:33'),(683,'Paul in Romans declared “for as by one man’s disobedience many were made sinners, so by one man’s obedience many will be made...”','innocent.','righteous.','faithful.','Christians.','','','b','','wassce','2011',39,'Admin','2016-11-12 14:29:14','2020-05-30 11:08:31'),(684,'Which of the following is not true about spiritual gifts as taught by Paul?','Gifts should be used with all modesty','No gift can be independent of others','Gifts have nothing to do with the level of one’s faith','Specific gifts perform specific functions','','','b','','wassce','2011',60,'Admin','2016-11-12 14:29:14','2020-06-02 14:11:16'),(685,'In his comparison of the human body with the body of Christ, Paul did not mention the','hand.','foot.','eye.','nose.','','','d','','wassce','2011',52,'Admin','2016-11-12 14:29:14','2020-06-04 12:16:02'),(686,'The New Life in Christ operates through','humility.','the name of Jesus.','one body.','wisdom.','','','b','','wassce','2011',58,'Admin','2016-11-12 14:29:14','2020-06-04 16:33:45'),(687,'‘Death is swallowed up in victory, “oh death, where is your victory”? This statement is found in the book of','Corinthians.','Romans.','Galatians.','Philemon','','','a','','wassce','2011',59,'Admin','2016-11-12 14:29:14','2020-06-04 23:38:14'),(688,'According to Paul in Corinthians the gospel message could only be lifeless when Christians','deny the resurrection message.','persecute one another.','gossip among themselves.','entertain idolatrous practices.','','','a','','wassce','2011',62,'Admin','2016-11-12 14:29:14','2020-06-01 12:26:04'),(689,'Paul asked the Thessalonians to imitate his action of','demanding support from his converts.','performing miracles','healing the sick.','working for his personal upkeep.','','','d','','wassce','2011',61,'Admin','2016-11-12 14:29:14','2020-06-07 19:15:48'),(690,'With respect to the date of the Parosia, Paul advised Thessalonians to','be sober in maintaining their hope of salvation.','disregard all speculations about it.','know that the day would be announced later.','enjoy peace and security in the face of danger.','','','a','','wassce','2011',65,'Admin','2016-11-12 14:29:14','2020-06-05 22:12:32'),(691,'Paul, pleaded with Philemon to forgive','Barnabas.','Timothy.','Onesimus.','Silas','','','c','','wassce','2011',85,'Admin','2016-11-12 14:29:14','2020-06-28 03:06:30'),(692,'James strongly condemned partiality in the Church for all the following reasons except that it','is contrary to Christ’s example of humility','accords due respect to the rich who merit it.','is a transgression of the commandment of God.','does not harmonize with the Christian virtue of love.','','','d','','wassce','2011',54,'Admin','2016-11-12 14:29:14','2020-06-03 18:57:05'),(693,'The Galatians, were reminded by Paul that they were Abraham’s offspring and heirs according to','promise.','good works.','law.','grace.','','','a','','wassce','2011',52,'Admin','2016-11-12 14:29:14','2020-04-30 18:00:12'),(694,'According to Paul in Galatians, law ceased to be our custodian as soon as','it was made available to us.','Christ adopted us as his children.','we adopted the faith of Abraham.','we stopped worshipping the elemental spirits.','','','b','','wassce','2011',45,'Admin','2016-11-12 14:29:14','2020-06-05 15:31:43'),(695,'James advised Christians to portray their faith in Jesus by','listening to the word of God always.','converting others to Christ.','practicalizing their Christian belief','constant prayer and fasting.','','','c','','wassce','2011',63,'Admin','2016-11-12 14:29:14','2020-06-06 09:25:49');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `currentaffairs` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `currentaffairs` VALUES (1,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013',391,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(2,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(3,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013',384,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(4,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013',388,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(5,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013',398,'Admin','0000-00-00 00:00:00','2020-06-26 00:23:20'),(6,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013',397,'Admin','0000-00-00 00:00:00','2020-06-09 11:40:50'),(7,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013',407,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(8,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013',390,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(9,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013',380,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(10,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013',418,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(11,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013',418,'Admin','0000-00-00 00:00:00','2020-05-04 18:52:36'),(12,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013',382,'Admin','0000-00-00 00:00:00','2020-05-04 18:52:37'),(13,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013',402,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(14,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013',403,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(15,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-06-09 11:40:50'),(16,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013',390,'Admin','0000-00-00 00:00:00','2020-06-09 11:40:50'),(17,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013',420,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(18,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013',406,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(19,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013',397,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(20,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013',411,'Admin','0000-00-00 00:00:00','2020-06-28 13:51:22'),(21,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013',397,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(22,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013',387,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(23,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013',377,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(24,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013',400,'Admin','0000-00-00 00:00:00','2020-06-26 00:23:05'),(25,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013',400,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(26,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013',392,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(27,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013',404,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(28,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(29,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013',403,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(30,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013',398,'Admin','0000-00-00 00:00:00','2020-06-26 00:22:32'),(31,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013',395,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(32,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013',407,'Admin','0000-00-00 00:00:00','2020-06-26 00:22:49'),(33,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013',424,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(34,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013',389,'Admin','0000-00-00 00:00:00','2020-06-09 11:40:50'),(35,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013',401,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(36,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013',405,'Admin','0000-00-00 00:00:00','2020-05-04 18:52:37'),(37,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013',404,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(38,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(39,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-05-04 18:52:37'),(40,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013',400,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(41,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013',415,'Admin','0000-00-00 00:00:00','2020-05-05 15:55:27'),(42,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013',410,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(43,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013',428,'Admin','0000-00-00 00:00:00','2020-06-27 22:41:30'),(44,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013',444,'Admin','0000-00-00 00:00:00','2020-06-29 21:44:22');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `economics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=658 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `economics` VALUES (1,'Which of the following is the best general definition of the study of economics? ','the best way invest in the stock market','business decision making under foreign competition ','individual and social choice','inflation unemployment in a growing economy','','','c','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-06-20 11:06:04'),(2,'What implication does resources scarcity have for the satisfaction of wants?','not all wants can be satisfied ','we will never be faced with the need to make choice ','we must develop ways to decreases our individual wants ','the discovery of new resource.','','','a','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(3,'In economics , rational decision-making requires that: ','one’s choices be arrived at logically and without error   ','one’s choice be consistent with one’s goals ','one’s choice never very ','one makes choice that do not involve trade-offs','','','b','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:12'),(4,'What happens to a supply curve when the variables that are normally held constant are allowed to changer? ','the curve flattens out','there is a movement along the curve','the curve shifts ','the curve becomes steeper.','','','c','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-06-20 17:53:27'),(5,'If the price of Pepsi decrease relative to the price of coke and 7-up the demand for ','coke will decrease ','7-up will decrease ','coke and 7-up will increase','coke and 7-up will decrease.','','','d','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-06-28 16:31:28'),(6,'Suppose wages paid by a firm increase what would reasonably be expected to happen to the equilibrium price and equilibrium quantity for the firm’s output? ','price increase,  quantity decreases ','price decrease, quantity decrease','price decreases, quantity increase','price increases, quantity increase.','','','a','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-06-22 17:07:52'),(7,'When a nation’s exports are greater than its imports ','the net foreign trade is zero ','an unfavourable balance of payments exists ','a favourable balance of trade exists ','a favourable balance of payment exists.','','','d','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-06-23 17:38:40'),(8,'Inflation is likely to benefit ','persons with bank savings','persons who live on fixed pension funds ','creditors ','debtors.','','','d','','post-utme','2006',60,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(9,'For which market model is there a very large number of firms? ','monopolistic competition','oligopoly ','pure monopoly ','pure- competition','','','d','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-06-29 19:39:34'),(10,'Which of the following is an economic cost ','uninsurable risk ','normal profit ','economic profit ','monopoly profit.','','','b','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(11,'Which tends to be a progressive tax in Nigeria? ','income tax ','property tax ','sales tax ','import- duties.','','','a','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-06-29 19:07:49'),(12,'A deficit budget is usually drawn up during ','economic buoyancy ','inflationary period ','war time ','economic recession.','','','d','','post-utme','2006',62,'Admin','0000-00-00 00:00:00','2020-06-23 18:24:35'),(13,'A drawer of a cheque is the ','person who is to be paid ','bank on which the cheque is drawn ','person who writes out the cheque ','bank official who certifies the payment. ','','','c','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-06-21 11:23:07'),(14,'The liability of a sole trade is','indeterminate ','unlimited ','limited ','transferable','','','b','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:48'),(15,'Which of the following is regarded as fixed cost? ','cost of raw materials ','labour wages ','rent land ','cost of light.                                                                                                                                                                                                                   ','','','c','','post-utme','2006',73,'Admin','0000-00-00 00:00:00','2020-06-26 16:47:37'),(16,'Which of the following is not a member of OPEC?','Indonesia',' Iran ','Venezuela','Egypt','','','d','','post-utme','2006',64,'Admin','0000-00-00 00:00:00','2020-06-29 15:54:28'),(17,'The creation of utility can be referred to as ','value added ','profit marginalization ','production','entrepreneurship.','','','c','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-06-22 19:17:29'),(18,'The production within the domestic territory of a country is called the ','net national product ','gross domestic product ','disposable income','gross national product.','','','b','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-06-21 11:54:56'),(19,'Suppose a consumer’s income increases from N30,000 to N36, 000. As a result the consumer increases her purchase of compact discs (CDS) from 25 CDS to 30CDS.What is consumer’s income elasticity of demand for CDS?','0.5','1,0 ','1','1.5','','','b','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-07-01 14:03:22'),(20,'The Multiplier is always the reciprocal of ','MPC ','MPS ','APC','APS','','','b','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-20 16:20:14'),(21,'If the marginal propensity to save is 0.4 and consumption expenditure changes by N10 million , the equilibrium  level of income will change by ','N15.0million ','N4,0million','N2.5million ','N25million.','','','d','','post-utme','2006',73,'Admin','0000-00-00 00:00:00','2020-06-20 12:44:16'),(22,'Economic freedom is brought about by the existence of ','Government ','Money ','Availability of Credit ','choice','','','d','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-06-29 19:39:34'),(23,'The only essential attribute of the good currency is ','scarcity ','homogeneity','acceptability ','cognoscibility.','','','c','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-23 15:44:38'),(24,'Economic is founded on the principle that: ','Human wants are more than human needs ','Material things are more than human wants ','Human wants are limitless while the means to satisfy them are limited  ','Human while are easy to define','','','c','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-06-20 16:11:03'),(25,'The capitalist system is characterized by all the following except: ','private ownership of the means of production ','Equitable distribution of income and wealth  ','capital accumulation  ','markets and  prices coordinate economic activities','','','b','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(26,'If the equation relating consumption (C) to income (Y) is C=  N7,500+0.2Y,then ','consumption is inversely related to income','consumptions is the independent variable and income is the dependent variable ','if income is N15,000, the consumption is N10,500 ','if consumption is N30,000 then income is N10,000','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:25'),(27,'The reason for the law of demand can best be explained in terms of ','supply ','complementary ','the rationing function of prices ','diminishing marginal utility','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:52'),(28,'The demand curve for the pure monopolists is ','perfectly  price elastic ','perfectly price inelastic ','down sloping ','up sloping ','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:13'),(29,'Which of the following statements is correct? The Central  Bank ','prints the country’s currency ','handles the collection of depts. Owed to the government','lends money to businessmen ','issues the country’s currency','','','d','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-24 01:02:32'),(30,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','Consumers are rational','Consumers are willing to make choices ','Consumers make consistent choices','','','d','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:15'),(31,'The slope of the budget constraint ','changes as the marginal rate of satisfaction changes ','is the ration of the prices of the two goods? ','is the ratio of the budget of total utility? ','Equals one, since the consumer can buy combination along the budget constraint.','','','b','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-29 19:55:53'),(32,'Disposable income equals ','Personal income less business profits ','personal income less taxes and subsidies ','personal income less taxes plus subsidies ','National income plus transfer payments','','','c','','post-utme','2007',63,'Admin','0000-00-00 00:00:00','2020-06-20 16:00:38'),(33,'The ‘term’ of trade’ means ','The trade agreement between two countries ','The difference in the volumes of exports of two countries ','The value of a unit of export in relation to the value of a unit of import ','None of the above.','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-20 14:52:02'),(34,'The burden of tax on a commodity whose demand is infinitely inelastic ','is Zero ','will be borne by sellers alone ','will be borne by buyers alone ','it impossible to tell','','','c','','post-utme','2007',62,'Admin','0000-00-00 00:00:00','2020-06-20 13:07:07'),(35,'Inflation can be curbed by ','Increasing aggregate demand ','paying higher wages ','reducing aggregate demand ','A deficit budget','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-23 17:31:04'),(36,'The supply and demand for goods and service are influenced by the ','Super markets ','Entrepreneurs ','Mechanism of the law ','price mechanism.','','','d','','post-utme','2007',63,'Admin','0000-00-00 00:00:00','2020-06-23 18:43:10'),(37,'In a sole proprietorship, the decisions are made by the ','Government ','Board of directors ','Shareholder’s Conference ','Owner','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-20 16:27:29'),(38,'Which of the following are direct taxes? ','Income and company taxes ','Sale taxes ','commodity taxes ','Excise Duties','','','a','','post-utme','2007',59,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:06'),(39,'The production within the domestic territory of a country is called the ','Net national product ','Gross domestic ','Disposable income ','Gross national product','','','b','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-06-18 17:54:36'),(40,'A producer sustains a loss in the short run if? ','marginal revenue is less than price ','price is less than average cost','marginal cost is less than marginal  revenue ','average variable cost is less than average cost','','','b','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-20 11:33:32'),(41,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with terms funds ','deals with money only while capital market deals with capital as well ','is limited in scope while capital market is not ','uses interest rate while capital market does not','','','a','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-20 15:20:35'),(42,'A production possibility curve shows ','how much of  the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combinations of two commodities that can be produced.','','','d','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-06-28 17:00:29'),(43,'The situation in which the total amount of government spending exceeds total called ','balance budget ','budget surplus ','budget deficit ','fiscal surplus ','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-06-28 16:47:08'),(44,'The maximization of profit tends to be driving force in the economic decision making of  ','entrepreneurs  ','workers ','consumers ','legislators','','','a','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:27'),(45,'Which of the following equations is the correct one about Net National Product (NNP)? ','NNP= Gross National Product (GNP) - Depreciation ','NNP=  Gross National product (GNP Net incomes from abroad ','NNP= Gross Domestic product (GDP) – Deprecation ','NNP = Gross Domestic product (GDP) – Net incomes from aboard','','','a','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:57'),(46,'Middlemen in a economy perform the function of ','protection ','hoarding ','distribution ','exchange','','','c','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(47,'Which of the following statement is false? ','Ends in Economic are the resources with which it can attain our goals','Tables and graphs are focus of arithmetic technique used in economics to present ideas pictorially ','Three basic question every economy must answer are hat to produce, how to produce and for whom to produce ','A and B are substitutes if the supply of an increase, the price B will tend to increase.','','','a','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-06-19 18:13:05'),(48,' If the equation relating consumption (C) to income (Y) is C= N7,500 + 0.2Y, then ','consumption is inversely related to income ','consumption is the independent inversely related to income is the dependent variable ','if income is N15,000, the  consumption is 10,500 ','if consumption is N300,000, then income is N10,000','','','c','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-06-20 16:03:31'),(49,'Which of the following best describes a perfectly inelastic demand function? ','The quantity demand is insensitive to changes in price ','Price is insensitive changes in quantity ','price and quantity demanded changes by some percentage ','The demand function is horizontal.','','','a','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-06-29 03:31:05'),(50,' Which of the following statement is false? ','An economy where economic decision making is shared by individuals and government is known as mixed economy ','Given that apples and pears are substitutes, If the price of pear fall ','An elasticity of demand measured between two point on a demanded curve is called a point elasticity ','A and B are complements. If the supply of A decreases, the price B are tend to fall','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-06-20 13:07:07'),(51,'Which of the following statement is true? ','if cross price elasticity that of demand between two goals, A and B, is negative we can conclude that A and B are substitutes ','the co-efficient of elasticity of demand is measured as a ration of change in quantity demand to change in price ','A market will be in disequilibrium when demand is not equal to supply ','All the above.','','','c','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:57'),(52,'The reason for the law of demand can best be explained in terms of: ','supply ','complementary goods ','the rationing function of price ','diminishing marginal utility.','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-06-29 18:13:47'),(53,'The demand curve for the pure monopolists is ','perfectly price elastic ','perfectly price inelastic ','down sloping ','up sloping','','','c','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-06-20 12:46:10'),(54,'Which of the following statement is correct? The Central bank ','prints the country’s currency ','handles the collection of debts of owed to the government ','leads money to businessmen ','issue the country’s currency.','','','d','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-06-24 01:02:32'),(55,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','consumers are rational ','consumers make consistent ','choices.','','','d','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-06-22 17:42:28'),(56,'Which of the following equation is the correct one about Net National Product (NNP)? ','NNP= Gross National product (GNP) – Depreciation ','NNP = Gross National product (GNP) + Net incomes from abroad. ','NNP = Gross Domestic product (GDP) – Depreciation ','NNP = Gross Domestic product (GDP) – Net incomes from abroad.','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-20 16:26:07'),(57,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with long term funds. ','deals with money only while capital as well ','is limited in scope while capital market does not. ','Uses interest rates while capital market does nor.','','','a','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-06-20 16:21:51'),(58,'A production possibility curve shows ','how much of the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combination of two commodities that can be produced.','','','d','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:55'),(59,'The situation in which the total amount of government spending excesses total revenues is called a:  ','balance budget ','budget surplus. ','budget difficult ','fiscal surplus','','','c','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-06-29 19:38:15'),(60,'The maximization of profit tends to be the driving force in the economics decision making of:','entrepreneurs. ','Workers ','consumers ','legislators.','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-22 19:17:29'),(61,'Which of these factors does not cause a change in demand? ','Income ','Population ','price of the commodity itself.','Quantity of commodity','','','d','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-06-23 13:18:06'),(62,'When the demand for a commodity is inelastic, total revenue will fall if ','price is increase ','price remains constant ','price is reduced ','The commodity is a luxury.','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:52'),(63,'An economic system in which most capital goods are owned by individual and private firms is known as ','planned economy ','Capitalist economy. ','Mixed economy ','Socialist economy.','','','b','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:40'),(64,'Which of the following is the most liquid asset to a commercial bank? ','cash ','money at call ','stock and shares ','Treasury Bills.','','','a','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(65,'A recovery point on an indifference curve, the ','Total utility is decreasing ','Level of utility is constant ','Consumer is satisfied ','','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:11'),(66,'Which of the following does not hinder the efficient distribution of goods in West Africa? ','Government participation in the distribution trade ','Inadequate storage facilities for agricultural goods ','Inadequate credit facilities for potential distribution ','the tendency to hoard and smuggle.','','','a','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-20 11:23:09'),(67,'Which of the following is the most important reason why wages differ among occupation? ','Length and cost of training ','Supply of Labour ','Attractiveness ','Influence of trade Unions','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-06-29 03:31:05'),(68,'Tax incidence is the analysis of  ','How progressive a tax is ','How distorting a tax is ','Who ultimately pays the tax ','How a tax is collected.','','','c','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-21 11:54:56'),(69,' A monopolist will practice price discrimination in two market if ','there is a patent of the commodity ','There is free flow of information in the market ','The markets have different elasticity of demand ','The cost of separating the markets is low.','','','c','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-06-20 16:01:47'),(70,'Which of the following is regarded as fixed cost? ','Cost of raw materials ','rent on land ','Labour wages ','cost of light.','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-06-22 18:03:29'),(71,'Given that fixed cost is N500.00, Variable cost is N1,500.00 and output is 40 units, what will be the average cost of producing one units? ','N12.50.00 ','N50.00 ','N37.50 ','N500.00','','','b','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(72,'For two substitute goods, the gross elasticity of demand is ','Greater than one but lee than zero ','zero ','Negative ','Positive ','','','d','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-23 12:02:30'),(73,'If a person receives a higher wage than would be necessary to induce him to work, he is be receiving','rent ','profit ',' interest ',' gain ','','','a','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:58'),(74,'Which if this is likely to be inflationary ','Tax increase ','Budget surplus ','increase in unemployment ','wage increase ','','','d','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-06-20 16:27:29'),(75,'A characteristic of a debenture is that ','Its yield is based on profit ','Its yield is a fixed rate of interest ','It has no redemption date ','There is a voting when interest is paid ','','','b','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:15'),(76,'Which of these is not included in measuring national income by the income approach? ','Wages and salaries of public servants ','students branches and scholarships ','profit of international ','income of self-employment persons ','','','b','','post-utme','2009',77,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:06'),(77,'The revenue accruing to the seller of commodity X as a result of a fall in price will ','increase','fall ','first fall but increase later  ','Remain unchanged ','','','b','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-20 16:21:51'),(78,'Deflation is persistence fall in price in the general price level and is usually caused by ','A reduction in total demand ',' An increase in government spending ',' an increase in money supply to banks ','An increase in aggregate demand ','','','a','','post-utme','2009',69,'Admin','0000-00-00 00:00:00','2020-06-02 19:43:39'),(79,'Under partnership, investors who have no desire to be actively involved in the day-to-day management of such organization are called ','Stock brokers ','Sleeping partners ','part-time investor ','Ordinary partners ','','','b','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-06-29 18:13:47'),(80,'In a sole proprietorship decision are made by the ','Government ','Board of directors ','Management ','Owners.','','','d','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-20 17:53:27'),(81,'A greater burden of taxes on essential goods in borne by the ','middle income group ','Higher income group ','Lower earning people ','People falling between the middle and higher income group ','','','c','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(82,'Demand as a factor of production is ','a composite demand ','joint demand ','A derived demand','An elasticity of demand ','','','c','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-06-29 19:14:25'),(83,'One disadvantage of sole proprietorship is its ','Limited liability ',' High profit ','High sense of ownership ','Low credit rating ','','','d','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:24'),(84,'The monetary system that requires double coincidence of wants is known as ','The gold standard ','The gold standard ','The commodity system ','The gold standard ','','','b','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:06'),(85,'The marginal theory of distribution makes an assertion that the price of any factor depends upon its marginal ','Unity ','Productivity ','rate of substitution ','revenue ','','','b','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(86,'By using exchanges controls, a country tries to eliminate a balance of payment deficit by ','limited her imports to its currency value of exports ','Reducing the nation’s domestic piece level ','limiting her exports to its currency value of exports ','Undervaluing, the country’s currency.','','','d','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(87,'Economics of scale operates only when ','Marginal cost is falling with output fixed cost is variable ','fixed cost is variable ','variable cost is less than fixed cost ','variable cost is equal to cost of output.','','','b','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:06'),(88,'If an increase in income induces a reduction in the demand for beans, beans can be referred to as: ','A normal good ','An inferior good ','A substitute ','A dash ','','','b','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-07-02 16:32:16'),(89,'Optimum population is desirable because it enable an economy to attain maximum ','per capital income ','per capital output ','per capital real income ','per capital revenue ','','','b','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-28 16:31:28'),(90,'Marginal cost curve intersects average cost curve ','from above at its lowest point ','from below the lowest point ','from below at its lowest point ','from below after the lowest point ','','','c','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-06-20 16:06:40'),(91,'The concept of economic efficiency refers to: ','obtaining the maximum output from available resources at the lowest possible cost ','Conservation of natural gas and oil deposits ','equity in the distribution of national resource ','Producing without waste ','','','a','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-06-23 18:13:33'),(92,'A major factor affecting the value of money is the: ','price level ','banking habit ','Transaction motive ','Divisible nature of money ','','','a','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:26'),(93,'Which of the following is an example of invisible item on balance of payments account?','Shipping and aviation ',' Import and Export ','Merchandise ','Bullion ','','','a','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(94,'The best index for indentation comparison of standard of living is the ','Gross national product ','Net national income ','per capital income ','Gross national income.','','','c','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(95,'A major obstacle to economic development in many African countries ','A rise in industrial output ','Low farm productivity ','Free interaction ','Controlled international relations.','','','b','','post-utme','2009',69,'Admin','0000-00-00 00:00:00','2020-06-21 11:55:10'),(96,'The most popularly adopted industrialization strategy in West African ','import substitution ','Export promotion ','parts development ','infant industries potation.','','','b','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-06-18 17:46:17'),(97,'The basic concepts of Economics are ','choice, scarcity, resources and efficiency   ','wants, scarcity, choice, scale of preference and opportunity cost','wants, scarcity and choice  ','wants, choice, scale of preference and opportunity cost ','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-29 19:18:06'),(98,'In Economics human wants are usually described as  ','many','insatiable ','limited','numerous','','','b','','post-utme','2011',90,'Admin','0000-00-00 00:00:00','2020-06-22 21:24:12'),(99,'Basic economic problems of society include the following except:  ','what to produce','how to produce ','where to produce  ','for whom to produce ','','','c','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-06-28 16:35:07'),(100,'An economic system can be defined as an ',' arrangement specifying how production and consumption are controlled in a   society ','arrangement whereby goods are distributed in a society  ','arrangement whereby human wants are satisfied in a society  ','arrangement specifying how productive resources are distributed in a society ','','','a','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-06-19 17:20:12'),(101,'The following are features of a free market economy except ','private ownership of properties  ','existence of competition ','high level of profit maximization by private investors  ','joint decision-making by the citizens in a society.','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-06-22 19:37:13'),(102,'In a capitalist society, production and consumption are regulated by the: ','demand for the commodity ','the government  ','price system  ','private individuals ','','','c','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:06'),(103,'The following are advantages of socialism except ','equitable distribution of resources','absence of exploitation  ','equitable distribution of income ','promotion of high standard of living ','','','d','','post-utme','2011',81,'Admin','0000-00-00 00:00:00','2020-06-22 17:35:20'),(104,'Marginal Produce (MP) is best defined as ',' Total produce/no of labour','Change in total product/ change in variable factor','Total product/ fixed factor','Average product/ no of Labour','','','b','','post-utme','2011',82,'Admin','0000-00-00 00:00:00','2020-06-29 18:13:47'),(105,'Which of the following is NOT a limitation to division of labour and specialization ','the size of the market','availability of capital ','interdependence among the workers ','the nature of the product ','','','b','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:17'),(106,'The following are the advantages of internal economics of large scale production except ','financial economics ','administrative economics ','technical economics ','market economics','','','b','','post-utme','2011',76,'Admin','0000-00-00 00:00:00','2020-06-22 19:37:13'),(107,'Which of the following is TRUE of marginal cost? ','it is a cost incurred by the firm on variable inputs ','it is the cost of producing one extra unit of a commodity at any output level ','it is the sum of the fixed cost and variable cost','it is referred to as overhead cost','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-06-19 19:04:10'),(108,'Which of the following items is NOT a variable cost? ','cost of machine ','cost of electricity ','salaries and wages','cost of raw materials.','','','a','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-06-20 11:38:31'),(109,'Which of the following is NOT True of a market demand schedule? ','it is a schedule of all consumers of a commodity in a market ','it is the aggregate demand schedule of all consumers of a commodity in a market ','it is a table showing the different quantities of a community which a consumer would purchase at various prices ','it is a table showing the composite demand schedule of all consumers of a commodity in a market.','','','c','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-06-20 16:28:41'),(110,'Supply is said to be inelastic when the coefficient of elasticity of supply is ','2.5','0.5','zero ','infinity ','','','b','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:30'),(111,'Price legislation can be defined as ','how price fluctuates in the market','how prices are controlled in the market  ','how to avoid inflation  ','how the government fixes the prices of essential commodities.','','','d','','post-utme','2011',63,'Admin','0000-00-00 00:00:00','2020-06-23 18:13:33'),(112,'Price discrimination exists when  ','The same product of the same quality is sold for different prices of the same buyer  ','The same product of the same quality is sold for different prices to different buyers  ','Different products are sold for the same price to the same buyers  ','Different products are sold for the same price to different buyers.','','','b','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-06-29 19:39:34'),(113,'A commodity is said to be price inelastic if  ','Changes in the quantity purchased of a good is less than proportionate changes in its price  ','Changes in the quantity purchased of a good is proportional to changes in its price  ','Changes in the quantity purchased of a good is more than proportionate changes in its price  ','The quantity purchased of a good never responds to change in its price.','','','a','','post-utme','2012',57,'Admin','0000-00-00 00:00:00','2020-06-23 17:48:06'),(114,'The parameter ‘b’ in a consumption function of the form; C = a + bY; where Y is the National income is  ','Marginal benefit of consumption  ','Marginal propensity to purchase  ','Marginal propensity to consume  ','Marginal propensity to save ','','','c','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-06-23 18:24:35'),(115,'Indifference curve and isoquant are respectively relevant is  ','Theories of consumer behaviours and production  ','Theories of human indifference and production  ','Theories of trade and production  ','Theories of production and trade','','','a','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-06-20 11:31:22'),(116,'Perfect price elastic supply means  ','No change in supply as price changes  ','Any change in price completely stops supply  ','Changes in price double supply  ','A change in price leads to proportionate change in supply','','','b','','post-utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:25'),(117,'Change in demand and change in quantity demanded are not the same because  ','All factors affecting change in demand also affect change in quantity demanded except income  ','All factors affecting change in demand are not affecting change in quantity demanded except income  ','Many factors leads to change in demand but only change in price affect change in quantity demanded   ','Many factors leads to change in demand but only change in income affect change in quantity demanded','','','c','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-26 16:47:37'),(118,'The following is the main difference between firm and industry  ','Industry is the group of firms producing related products  ','Industry is the group of firms in the manufacturing sector  ','Industry is the group of firms in different sectors of the economy  ','Industry is the group of firms with a single pressure group','','','a','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-29 19:39:38'),(119,'Roles of central bank include the following except  ','Lender of last resort to commercial bank  ','Banker to commercial bank  ','Regulator to both the money and capital markets ','Receipt  of government deposits','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:06'),(120,'Ordinary shareholders and preferential shareholders are different because ','Preferential shareholders participate and can vote and be voted for during the  AGM  ','ordinary shareholders are given priority in case the company is liquidated  ','Preferential shareholders are prominent shareholders than ordinary shareholders  ','Ordinary shareholders are the core shareholders in the company','','','d','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-06-29 19:38:15'),(121,' Yam and palm oil are together; therefore  ','Yam is a substitute good while palm oil is a complementary good  ','Yam is complimentary good while palm oil is a substitute good  ','Yam and oil are complimentary goods ','Yam and beans are substitute goods','','','c','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-22 19:01:23'),(122,'Private and public limited liability companies are not the same because  ','Former is limited to fifty shareholders but not the later  ','both are not legal entities  ','Former is established secretly but latter is located in central places  ','Former is managed by board of directors but latter is managed by board of management.','','','a','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-06-29 19:07:29'),(123,'If salary of worker increases from 50,000 to 80,000 Naira and average price of certain commodities consumed by the worker increase from 120 Naira to 160 Naira then  ','The nominal income increases but leave the real income constant  ','The real income increases, but nominal income has reduced  ','The nominal income increases, but real income decreases  ','Both the nominal and real income increase','','','d','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-20 08:27:11'),(124,'Discount rate means  ','Rate at which money are borrowed from commercial bank  ','Rate at which bank receive deposit from the public  ','Central bank rate on the money borrowed by commercial banks  ','Commercial bank rate on the money borrowed from other commercial bank','','','c','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-06-29 19:07:29'),(125,'When the government expenditure and income are the same in fiscal year, this is referred as;','Net balance  ','Zero balanced budget  ','Balanced budget  ','Net income ','','','c','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-06-20 12:46:10'),(126,'Inflation as a result of increase in the payment for factors of production is called  ','Cost-pull inflation  ','Demand-push inflation  ','Cost-push inflation  ','Demand pull inflation ','','','c','','post-utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-20 16:03:31'),(127,'When Lump-sun tax is paid by a producer, it means that;  ','The tax is paid proportional to the quantity of output produced  ','The tax is paid regardless of volume of output  ','The tax is paid in arrears  ','The tax is returned to the producer after the payment','','','b','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-06-20 11:11:30'),(128,'The following is not correct  ','Average variable cost equals average total cost minus average fixed cost   ','Average fixed cost equals average variable cost minus average total cost  ','Average total cost equals average variable cost plus average fixed cost  ','Average total cost minus average variable cost equals average fixed cost ','','','b','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-20 16:00:38'),(129,'Normal profit means;  ','All the accountant cost are covered but not all the economist cost  ','All the economist cost are covered but not all the accountant cost  ','More than economist cost are covered  ','None of the economist and Accountant costs is covered ','','','a','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:42'),(130,'If the price of commodity X increases because of the increase in the price vis-à-vis the increase in demand  for other commodities are likely to be  ','Complimentary  ','Substitute  ','Compose  ','Intermediate','','','a','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(131,'The following may not inflate the National Income figure ','Student’s bursary  ','Owners occupied houses  ','Office Inducement  ','Intermediate goods','','','b','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-06-20 16:21:51'),(132,'Legal Entity means  ','A company is owned by large number of people  ','A company is owned by small number of people  ','A company is insulated against litigation  ','A company is not insulated against litigation ','','','d','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-20 15:03:47'),(133,'In the ownership structure of joint stock company the following is correct;  ','Ordinary shareholders are stronger than preferential shareholders  ','Preferential shareholder are stronger than ordinary shareholders  ','Ordinary shareholders are settled first in case of company’s liquidation  ','Ordinary and preferential shareholders are perpetual rivals ','','','a','','post-utme','2012',53,'Admin','0000-00-00 00:00:00','2020-06-24 01:02:32'),(134,'The difference between the output proceedings of Nigerians abroad and foreigners in Nigeria is known as;  ','Net export to abroad  ','Net import from abroad  ','Net income from abroad  ','Net income to abroad','','','a','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:25'),(135,'A stock variable is measured;  ','Over a period  ','At a point  ','Consistently  ','Intermittently ','','','b','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-06-26 18:56:00'),(136,'The following is not true of price mechanism ','Equilibrium price is determined by forces of demand and supply  ','Individual households and firms pursue personal interest  ','Producers and consumers are rational in decision making ','Price control in prominent in the commodity and input markets.','','','d','','post-utme','2012',55,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(137,'In the short run, all of the following are applicable except  ','Output may be increased by changing all factors by the same proportion  ','Diminishing returns   ','There are sunk costs ','The total cost curve is the same as the total variable cost curve ','','','a','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-06-29 19:55:53'),(138,'The sum of MPS and MPC is  ','greater than 1 but less than infinity  ','greater than 0 but less than 1 ','equal to 1 ','none of the above','','','c','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-06-29 19:38:28'),(139,'For a perfectly competitive market, the shape of the --------- is horizontal while the ----------- is downward slopping  ','industry’s demand curve/industry’s supply curve  ','firm’s supply curve/industry’s demand curve  ','firm’s demand curve/industry’s demand curve  ','industry’s demand curve/firm’s demand curve','','','c','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-29 19:07:49'),(140,'Demand for money is: ','Composite demand  ','Derive demand  ','Joint demand  ','C and B ','','','b','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-06-28 16:35:07'),(141,'If the cross elasticity of demand between X and Y is zero, then   ','X and Y are substitutes ','X and Y are complements ','X and Y are dependent on each other  ','X and Y are independent of each other ','','','d','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-06-29 19:18:06'),(142,'Which of the following correctly defines inflation? ','A one-time increase in commodity prices ','A period when prices increase rapidly','A sustained increase in the overall price level ','An increase in the overall level of business activity','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-06-20 14:01:15'),(143,'If a market for good X is in disequilibrium, which of the following statements is true about the quantity of X that is actually exchanged?  ','It is determined by the forces of demand  ','it is determined by the forces of supply  ','it is determined by both demand and supply forces  ','it is determined by the forces of demand or supply whichever is shorter ','','','c','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-23 18:33:33'),(144,'How can we eliminate a surplus in a commodity market? ','Increase quantity supplied ','Decrease quantity demanded  ','Allowing price to fall towards equilibrium  ','Allowing price to rise towards equilibrium ','','','c','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-06-28 12:40:35'),(145,'Identify one among the following which is NOT part of the objectives or functions of the African Development Bank (ADB). ','Provision of technical assistance for development projects   ','Provision of funds for the supply and demand of infrastructural facilities  ','Adoption of a common tariff policy for trade and development  ','Provision of fund for agricultural development','','','c','','post-utme','2013',76,'Admin','0000-00-00 00:00:00','2020-06-23 11:16:52'),(146,'When the product of any one firm in an industry is not  perceived by consumers as a perfect substitute for the product of any other firm in the same industry, we have ','Perfect competition','Monopoly  ','Oligopolist ','Monopolistic competition   ','','','b','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:25'),(147,'In which of the following situations do we have a free good?  ','At zero price, more is demanded than supplied  ','At zero price, quantity supplied exceeds quantity demanded  ','At equilibrium price, quantity supply is equal to quantity demanded. ','Any quantity can be obtained when the price is low ','','','b','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:11'),(148,'In economics, a commodity is said to have an opportunity cost because  ','The price of the commodity is high  ','The commodity is scarce  ','Another good may have been purchased instead of it  ','The commodity provides many benefits','','','c','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-06-29 19:39:38'),(149,'One among the following options is not correct ','Any point inside the production possibility curve indicates unemployment or underemployment  ','Increase in the price of a commodity leads to a fall in the demand for its substitute ','The fixing of price above the equilibrium price level leads to surplus of the commodity ','An increase in both market supply and market demand may not result in a change in equilibrium price and quantity. ','','','d','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-05-29 20:45:24'),(150,'A country’s aggregate consumption was N20 million when its GDP was N100million. Following an increase in GDP to N120 million, consumption increased to N25 million. The marginal propensity to consume is given as','0.25','0.5','0.75','0.8','','','a','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(151,'Which of the following is not a measure for controlling inflation by the central bank?  ','Open market operation  ',' Reserve requirements  ','Sale of treasury bills ',' change of central Bank Governor','','','d','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-06-20 16:28:28'),(152,'A 50% increase in the quantity demanded of a commodity, following a 100% decrease in its price, shows that the commodity has ','Fairly elastic demand  ','Unitary elastic demand','Inelastic demand','Perfectly elastic demand ','','','c','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:06'),(153,'A total utility is increasing, marginal utility is  ','Negative and decreasing  ','Positive and increasing  ','positive and decreasing   ','Zero','','','c','','post-utme','2013',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:17'),(154,'Which of the following statements is true? ','Disposable income is the only variable that determines consumption   ','Investment spending is positively related to the rate of interest   ','imports lead to a decrease in the level of exports  ','Imports lead to a decrease in spending on locally produced goods and services.','','','d','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:48'),(155,'Which of the following will benefit a producer who wants to maximize profit?  ','reduce price when demand is inelastic ','increase price when demand is elastic   ','reduce price when demand is elastic  ','fixed the price of his commodity based on the price of other producers.','','','c','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-06-26 18:21:05'),(156,'Based on the fact that demand curve shows the maximum price at which consumers will buy, it then shows ','average benefit   ','marginal benefit  ','total benefit  ','optimal satisfaction ','','','b','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-06-29 19:38:28'),(157,'Money that a government has required to be accepted in settlement of debts is ','commodity money  ','currency value  ','barter   ','legal tender ','','','d','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-02 18:11:20'),(158,'Which of the following is one of the responsibilities of the Central Bank of Nigeria? ','issuing new bond to finance public sector borrowing requirements  ','auditing the various agencies and departments of government  ','loaning money to other countries that transact business with Nigeria  ','assisting banks that are in financial position ','','','a','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(159,'The law of comparative cost and absolute cost advantage are not the same is that; ','Former require that one of the countries has absolute advantage in the two goods but latter does not   ','Former requires one country to have at least absolute advantage in one of the trading goods over the other country but latter does not.','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in all the goods.  ','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in at least one of the goods.','','','d','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-06-29 03:34:32'),(160,'When demand for a product is price inelastic, the following can happen  ','Consumers suffer the entire increase in tax on the product   ','producer suffers the entire increase in tax on the product  ','producer suffers larger proportion of the increase in tax on the product  ','consumers suffer larger proportion of the increase in tax on the product ','','','d','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-06-20 11:55:12'),(161,'Disposable income means:','Income that is lost after tax has been removed   ','Income that could be spent when tax has been removed   ','Income that tax authority mandated to be given to charity when tax has been removed  ','Income to be disposed secretly for future spending after tax has been removed ','','','b','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-07-01 17:46:59'),(162,'In economics, the pleasure, happiness, or satisfaction received from a product is called: ','Marginal cost ','Rational outcome ','Status fulfillment ','Utility.','','','d','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:42'),(163,'A person should consume more of something when its marginal: ','benefit exceeds its marginal cost ','cost benefit ','cost equal its marginal benefit ','benefit is still positive.','','','a','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-06-18 18:54:02'),(164,'Macroeconomics can best be described as the: ','analysis of how a consumer tries to spend income ','study of the large  aggregates of the economy or the economy as whole ','analysis of  how firms attempt to maximum their profits ','study of how supply and demand determine price in individual markets.','','','b','','post-utme','2010',48,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(165,'When economics say that people act rationally in their self-interest, they mean that individual: ','look and pursue opportunities to increase their utility ','generally disregard the interest of others ','are mainly creatures of habit ','are unpredictable','','','a','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-06-26 16:48:35'),(166,'As it relates to international trade, dumping: ','is a form of price discrimination illegal under U.S antitrust laws ','is the practice of selling goods in a foreign market at less than the cost ','Constitutes a general case for permanent tariffs ','is defined as selling more goods than allowed by an import quota.','','','b','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:17'),(167,'A nation’s production possibility curve is bowed out from the origin because:','wants are virtually unlimited ','the originator of the idea drew it this way and modem economists follow this convention ','resources are scare ','resources are not equally efficiency in producing every good.','','','d','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-06-20 12:38:09'),(168,'If the production possibilities, curve were a straight down sloping line, this would suggest that: ','it is possible to produce  more of both products ','resources are perfectly shift able between the production  of these two goods ','both products are equally capable of satisfying consumer wants ','the two products have identical price.','','','b','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(169,'Productive efficiency refers to: ','the use of the least-cost method of production ','the production of the product-mix most wanted by society ','the full employment of all available resources ','production at some point inside of the production possibilities curve.','','','a','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-06-23 18:33:33'),(170,'Which of the following statement is correct? ','if demand increase and supply decrease equilibrium price will fall ','if supply increase and demand decrease, equilibrium price will fall ','It demand decrease and supply increase increases, equilibrium price will rise ','If supply declines and demand remain constant, equilibrium price will fall.','','','b','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-19 18:08:35'),(171,'If depreciation exceeds gross investment: ','the economy’s stock of capital may be either growing or shrinking  ','the economy’s stock of capital is growing ','net investment is zero ','the economy’s stock of capital is shrinking.','','','d','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(172,'Assuming the total population is 100 million, the civilian labour force is 50 million and 47 million workers are employed, the unemployment rate is ','3%','6%','7%','5.30%','','','b','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-06-20 19:14:40'),(173,'Unemployment involving a mismatch of the skills of unemployment workers and the skill required for available jobs is called: ','frictional unemployment ','structural unemployment ','cynical unemployment ','','','','b','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:52'),(174,'The greater is the marginal propensity to consume, the: ','smaller is the marginal propensity to save ','higher is the interest rate ','lower is the average propensity to consume ','lower is the rice level.','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-06-29 19:55:53'),(175,'Investment and saving are, respectively: ','income and wealth ','stock & flows ','injection: and leakages ','leakages and injections:','','','c','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-06-29 19:18:06'),(176,'The amount by which government expenditures exceed revenues during a particular year is the: ','public debt ','budget deficit ','full- employment ','GDP gap.','','','a','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:03'),(177,'The value of money varies ','inversely with the price of level ','directly with the volume of employment ','directly with the price level ','directly with the interest rate.','','','a','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-06-29 19:14:25'),(178,'If actual reserves in the banking system are #40,000, excess reserves are #10,000, and checkable deposits are #240,000, then the legal reserve requirement is: ','10%','12.50%','20%','5%','','','b','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-06-23 15:51:16'),(179,'The discount rate is the interest: ','rate at which the Central Bank of Nigeria lends in the Nigeria Government ','yield on long-term government bonds ','rate at which commercial banks lend to the public ','rate at which the Central Banks of Nigeria lend to commercial banks.','','','d','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-06-20 11:25:10'),(180,'Assume a household would consume N100 worth of goods and services per week if its weekly income were zero and would spend an additional N80 per week for each 100 of additional income, if C represents consumption and Y income the equation that summarizes this relationship is','C =8+100Y ','C=100+8Y ','C = 100+80Y ','C=80+1Y','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:40'),(181,'For a bicycle company, an economist predicted that, other things being equal, a rise in consumer incomes will increase the demand for bicycles. This prediction is based on the assumption that: ','there are many goods that are substitutes for bicycles ',' there are many goods that are many goods that are substitutes for bicycles','there are many goods that are substitutes for bicycles ','bicycles are normal goods','','','d','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-06-23 17:32:42'),(182,'A demand curve which is parallel to the horizontal axis is','perfectly inelastic ','perfectly elastic ','relatively inelastic ','relatively elastic.','','','b','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-06-20 16:28:28'),(183,'Allocative efficiency occurs only at that output where: ','marginal benefit exceeds marginal cost the by greatest ','consumer surplus exceeds producer surplus by the greatest amount ','the areas of consumer and producer surplus are equal ','the combined amounts of consumer surplus and producer surplus are maximizes.','','','d','','post-utme','2010',58,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:25'),(184,'The primary problem of economics is: ','to obtain more equitable distribution of money income ','production of a given output with the lowest cost combination of factors of production ','Adoption of capital- intensive technology ','Increasing the quantity of the fixed factor of production.  ','','','b','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-06-28 17:00:29'),(185,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',75,'Admin','2016-11-12 19:57:40','2020-06-23 15:52:02'),(186,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',79,'Admin','2016-11-12 20:04:09','2020-06-24 08:09:12'),(187,'The economic system in which resources are privately owned is known as','capitalism','socialism','Communism','unitarism','','','a','','wassce','2001',76,'Admin','2016-11-12 20:04:11','2020-06-23 15:46:31'),(188,'Quasi-rent refers to','Payment made on acquisition of firm’s premises','Payment  made  for  the  procurement  of  tools  and equipment','Returns on investment','Payment made on  any  factor  of  production  that  is temporarily fixed in supply','','','d','','wassce','2001',66,'Admin','2016-11-12 20:04:11','2020-06-24 10:03:13'),(189,'The reward for entrepreneurship is','rent','wages','Interest','profit','','','d','','wassce','2001',64,'Admin','2016-11-12 20:04:11','2020-06-23 18:13:33'),(190,'Which of the following is function of an entrepreneur?','Avoidance of risks','Decision making','Employment control','Organizing unions','','','b','','wassce','2001',69,'Admin','2016-11-12 20:04:11','2020-05-28 21:13:56'),(191,'The difference between the highest and lowest in a set of data is the','Range','median','variance','mode','','','a','','wassce','2001',84,'Admin','2016-11-12 20:04:11','2020-06-18 18:34:39'),(192,'In which of the following economic systems is the consumer referred to as King?','Capitalist economy','Socialist economy','Communist economy','Mixed Economy','','','a','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-06-24 08:20:27'),(193,'The dispersal of people in a country is called','mobility of people','geographical distribution','occupational distribution','state distribution','','','a','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-05-28 21:12:36'),(194,'In a country with ageing population, the total population','comprises young school leavers only','comprises mainly women','is increasing at a low rate','has reached the optimum level','','','c','','wassce','2001',82,'Admin','2016-11-12 20:04:11','2020-06-02 23:25:22'),(195,'Population growth can be controlled by all the following except','legalizing abortion','incentives on immigration','family planning','limiting number of children per family','','','b','','wassce','2001',68,'Admin','2016-11-12 20:04:11','2020-06-20 17:53:40'),(196,'Performance of one task in a production process is known as','Specialization','standardization','division of labour','segmentation','','','a','','wassce','2001',83,'Admin','2016-11-12 20:04:11','2020-06-29 18:13:47'),(197,'The marginal product at the fourth variable factor is','12','9','8','6','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',82,'Admin','2016-11-12 20:04:11','2020-06-20 09:01:36'),(198,'The difference between the highest and the least marginal','product of the variable factor is    \\n\t3','8','10','12','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','a','','wassce','2001',67,'Admin','2016-11-12 20:04:11','2020-06-21 11:19:35'),(199,'The average product of the variable factor when four units are employed is','6','8','12','48','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',72,'Admin','2016-11-12 20:04:11','2020-06-20 16:06:40'),(200,'The cost incurred by using both fixed and variable factors in production is called','marginal cost','fixed cost','total cost','average cost','','','c','','wassce','2001',84,'Admin','2016-11-12 20:04:11','2020-06-29 19:26:17'),(201,'Consumers buy more of a commodity at a lower price than at a higher price because','producers like to produce more','in any given situation, people like to buy more','consumers like to show off','with the same amount of money, they will be able to buy more','','','d','','wassce','2001',67,'Admin','2016-11-12 20:04:11','2020-06-20 14:44:01'),(202,'The demand for a commodity not directly for immediate consumption but for the production of another commodity is','competitive demand','derived demand','composite demand','joint demand','','','b','','wassce','2001',74,'Admin','2016-11-12 20:04:11','2020-06-20 16:03:31'),(203,'Which of the following is a luxury item?','Petrol','Textbook','Pencil','Gold','','','d','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-06-20 16:22:56'),(204,'If the quantity demanded of a particular commodity is represented by the function Qd = 30 - 2p. What is the quantity demanded at a price of twelve Naira?','6 units','8 units','10 units','12 units','','','a','','wassce','2001',69,'Admin','2016-11-12 20:04:11','2020-06-20 15:52:50'),(205,'The responsiveness of demand to a change in income is the measurement of','foreign exchange rate','cross elasticity of demand','income elasticity of demand','price index elasticity','','','c','','wassce','2001',73,'Admin','2016-11-12 20:04:11','2020-06-24 08:34:56'),(206,'The upward sloping of the supply curve indicates that','more will be supplied as price rises','less will be supplied as price rises','supply is not a function of price','supply is static and demand is dynamic','','','a','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-06-28 17:00:25'),(207,'Monoculture agriculture means','the cultivation of seasonal crops','the cultivation of one major crop','plantation agriculture','shifting cultivation!','','','b','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-06-22 17:07:52'),(208,'Industries are not sited in most rural areas of Nigeria because','of inadequate basic infrastructure','they lack raw materials','there is no appropriate government policy','the climate is not conducive','','','a','','wassce','2001',84,'Admin','2016-11-12 20:04:11','2020-06-22 18:58:28'),(209,'Which of the following business units can issue shares?','Sole trader','Private limited company','Central Bank','Supermarket','','','b','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-06-23 11:16:39'),(210,'When the government initiates measures to make an organization in which it has substantial interest more profit \toriented, such a business is described as being','indigenized','restructured','Privatized','commercialized','','','d','','wassce','2001',58,'Admin','2016-11-12 20:04:11','2020-06-21 11:19:35'),(211,'Which of the following is not a trade union in Nigeria?','Nigerian Labour Congress','Academic Staff Union of Universities','Nigerian Economic Society','Nigerian Union of Journalists','','','c','','wassce','2001',79,'Admin','2016-11-12 20:04:12','2020-06-29 18:43:48'),(212,'The monopolist power can be controlled by the government through','Labour union','Price legislation','import restrictions','export promotion','','','b','','wassce','2001',78,'Admin','2016-11-12 20:04:12','2020-06-29 19:15:52'),(213,'Which of the following is not a condition for a perfect market?','Homogenous commodity','Ignorance of consumers','Perfect information','Free entry and exit','','','b','','wassce','2001',81,'Admin','2016-11-12 20:04:12','2020-06-22 17:20:37'),(214,'The reward for shareholdership of a company is','Wages','interest','dividends','profit','','','c','','wassce','2001',78,'Admin','2016-11-12 20:04:12','2020-06-22 18:51:40'),(215,'In a public corporation, the risks of business are borne by the','workers','tax payers','board members','treasury','','','b','','wassce','2001',83,'Admin','2016-11-12 20:04:12','2020-06-29 12:00:08'),(216,'One of the functions of money is','double coincidence of wants','unit of account','indivisibility','making payments through banks only','','','b','','wassce','2001',79,'Admin','2016-11-12 20:04:12','2020-06-23 17:31:04'),(217,'Money is demanded for which of the following reasons?','To meet unforeseen contingencies','To solve the problem of inflation','It is easily divisible','It is portable','','','a','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-06-23 12:30:42'),(218,'The Quantity Theory of money states that a reduction in the quantity of money in circulation would bring about','a geometrical fall in prices','a proprotionate fall in price','a rise in prices','an unequal fall in prices','','','b','','wassce','2001',68,'Admin','2016-11-12 20:04:12','2020-06-29 05:31:23'),(219,'Which of the following is the most liquid asset?','Bank notes','Silver','Bank deposit','Cheques','','','b','','wassce','2001',89,'Admin','2016-11-12 20:04:12','2020-06-24 08:34:56'),(220,'The situation in which there is a persistent fall in the general price level is referred to as','devaluation','depreciation','deflation','inflation','','','c','','wassce','2001',65,'Admin','2016-11-12 20:04:12','2020-06-24 10:03:13'),(221,'Commercial banks settle their daily interbank indebtedness through the','Money Market','Finance House','Acceptance House','Clearing House','','','d','','wassce','2001',72,'Admin','2016-11-12 20:04:12','2020-06-22 19:23:34'),(222,'One disadvantage of inflation is that','fixed income earners gain','fixed income earners lose','businessmen lose','standard of living rises','','','b','','wassce','2001',77,'Admin','2016-11-12 20:04:12','2020-06-20 15:52:50'),(223,'Short-term loans can be sourced from','the central bank','development banks','mortgage banks','commercial banks','','','d','','wassce','2001',69,'Admin','2016-11-12 20:04:12','2020-06-24 08:59:15'),(224,'If there is an increase in wages and salaries without a corresponding increase in the supply of goods and services, the situation will lead to','a reduction in aggregate demand','inflation','depression','budget surplus','','','b','','wassce','2001',84,'Admin','2016-11-12 20:04:12','2020-06-18 19:02:21'),(225,'Public expenditure can be financed from all the following sources except','borrowing','grant-in-aid','royalties and rents','Mobilization fees','','','a','','wassce','2001',76,'Admin','2016-11-12 20:04:12','2020-06-23 18:24:35'),(226,'Which of the following is a direct tax?','Import duty','Export duty','Capital gain tax','Sales tax','','','c','','wassce','2001',82,'Admin','2016-11-12 20:04:12','2020-06-29 05:31:23'),(227,'Tax evasions means','postponing payment of tax','tax payment according to ability to pay','making false declaration of taxable income','paying little amount of money as tax','','','c','','wassce','2001',83,'Admin','2016-11-12 20:04:12','2020-06-29 19:14:25'),(228,'A greater burden of tax on a product with high price elasticity of demand rests mainly on the','producer','teacher','civil servant','middlemen','','','a','','wassce','2001',72,'Admin','2016-11-12 20:04:12','2020-06-29 19:07:49'),(229,'An ad valorem tax refers to a tax','imposed on exports','on goods manufactured in the country','based on the value of the commodity','levied on income','','','c','','wassce','2001',87,'Admin','2016-11-12 20:04:12','2020-06-28 17:00:10'),(230,'Which of the following is associated with the development of the petroleum industry in Nigeria?','Neglect of agriculture','Increase in population growth','Increase in the rate of Unemployment','Decrease in the rate of inflation','','','a','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-06-20 16:12:15'),(231,'The following are examples of economic goods except','bottled water','air','household utensils','shelter','','','b','','wassce','2010',71,'Admin','2016-11-12 20:44:26','2020-06-19 07:04:46'),(232,'A tent-making factory offers','personal services','indirect services','social services','reflex services','','','b','','wassce','2010',66,'Admin','2016-11-12 20:44:28','2020-06-29 19:40:25'),(233,'In which of the following economic systems do we have mostly private ownership of resources and individual','decision making?','Capitalist system','Socialist system','Mixed system','','','a','','wassce','2010',79,'Admin','2016-11-12 20:44:29','2020-06-29 12:00:08'),(234,'The sum of items divided by the number of items is the','Frequency','mean','median','mode','','','b','','wassce','2010',58,'Admin','2016-11-12 20:44:29','2020-06-23 11:16:52'),(235,'Find the median of the following set of scores: 8, 9, 6, 5, 10','9','8','6','5','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:29','2020-06-24 09:02:48'),(236,'Which of the following causes the demand curve to shift to the right?','A reduction in the size of population','An increase in the income of the buyer','The availability of substitutes','A decrease in price of the good','','','d','','wassce','2010',74,'Admin','2016-11-12 20:44:29','2020-06-28 16:31:28'),(237,'Goods for which demand rises as income rises are','complementary goods','inferior goods','normal goods','substitutes','','','c','','wassce','2010',71,'Admin','2016-11-12 20:44:29','2020-06-29 05:31:23'),(238,'The slope of a supply curve is','Horizontal','uniform','positive','vertical','','','c','','wassce','2010',66,'Admin','2016-11-12 20:44:29','2020-06-22 17:42:28'),(239,'Equilibrium price is the price at which quantity','demanded is greater than quantity supplied','supplied is greater than quantity demanded','demanded is equal to quantity supplied','supplied equals quantity produced','','','c','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-06-20 11:23:09'),(240,'A decrease in supply with demand remaining unchanged will cause the equilibrium price for a good to','be unchanged','remain elastic','remain inelastic','rise','','','d','','wassce','2010',63,'Admin','2016-11-12 20:44:29','2020-05-28 21:15:07'),(241,'At the highest level of total utility, marginal utility is','Negative','positive and falling','positive and rising','zero','','','d','','wassce','2010',54,'Admin','2016-11-12 20:44:29','2020-06-29 19:07:29'),(242,'The law of diminishing marginal utility states that, the more a commodity is consumed the','higher the satisfaction derived from an additional unit','higher the price to be paid','lower the quantity supplied','lower the rate of increase in the total utility derived','','','d','','wassce','2010',71,'Admin','2016-11-12 20:44:29','2020-06-29 19:07:49'),(243,'Greater inter-dependence among workers in production is associated with','utility','manufacturing','division of labour','factory workers','','','c','','wassce','2010',63,'Admin','2016-11-12 20:44:29','2020-06-23 13:19:57'),(244,'If TC, FC and VC represent total cost, fixed cost and variable cost respectively, which of the following is\\n\tcorrect?','TC = FC-VC','FC = TC + VC','TC > FC + VC','TC = FC + VC','','','d','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-06-29 19:40:25'),(245,'The reward to land as a factor of production is','Profit','rent','interest','wage','','','b','','wassce','2010',70,'Admin','2016-11-12 20:44:29','2020-06-23 15:46:31'),(246,'A firm is said to be a public joint stock company when it','is owned by the government','sells its shares to members of the public','operates as a government corporation','is not legally recognized as a firm','','','b','','wassce','2010',83,'Admin','2016-11-12 20:44:29','2020-06-20 16:12:15'),(247,'All the following are sources of finance to a joint stock company except','debentures','cooperative loans','shares','bank loans','','','b','','wassce','2010',66,'Admin','2016-11-12 20:44:29','2020-06-29 18:43:58'),(248,'The public sector of an economy includes','cooperative societies','nationalized industries','joint stock companies','pressure groups','','','b','','wassce','2010',77,'Admin','2016-11-12 20:44:29','2020-06-29 19:07:49'),(249,'One advantage of the Sole Proprietorship over other forms of business organizations is that it can','make very high profits','employ many workers','keep its affairs private','produce on a very large scale','','','c','','wassce','2010',56,'Admin','2016-11-12 20:44:33','2020-06-21 10:20:59'),(250,'Which of the following is obtainable in a perfect market?','P = MR >AR','MR = MC>P','MR < P','P = MR = MC','','','d','','wassce','2010',60,'Admin','2016-11-12 20:44:33','2020-06-20 09:04:01'),(251,'The wholesaler performs the following functions except','breaking the bulk','offering credit facilities to consumers','financing manufacturers','buying in bulk from manufacturers','','','b','','wassce','2010',72,'Admin','2016-11-12 20:44:33','2020-06-20 16:21:51'),(252,'Age Group\t[0 -15\t\t30%], [16 - 40\t\t27%], [41 - 60\t\t25%], [61 and above\t18%] The data shows the age distribution of a country \\n\tin 1983. Using the data, calculate the percentage of working population in 1983.','48%','52%','57%','70%','','','b','','wassce','2010',70,'Admin','2016-11-12 20:44:33','2020-06-29 12:00:08'),(253,'A country whose population size is too small relative to its resources is','over populated','optimally populated','under populated','producing the optimum output','','','c','','wassce','2010',65,'Admin','2016-11-12 20:44:33','2020-06-29 18:43:48'),(254,'An efficient weapon used in resolving disputes between employers and employees is','co – operation','collective bargaining','display of placards','legal action','','','b','','wassce','2010',54,'Admin','2016-11-12 20:44:33','2020-06-22 18:56:26'),(255,'Which of the following does not explain why a school principal earns more salary than a school messenger?','Length of training','Demand and Supply','Cost of training','The messenger is a non-teaching staff','','','b','','wassce','2010',61,'Admin','2016-11-12 20:44:33','2020-06-23 18:33:33'),(256,'The role of government in promoting agricultural development includes the following except','paying the wages of all farmers','establishing and funding research','formulation of policies','provision of rural infrastructure','','','a','','wassce','2010',78,'Admin','2016-11-12 20:44:33','2020-06-25 15:25:41'),(257,'The following are advantages of large scale agriculture except','use of simple implements','use of sophisticated implements','increase in employment','integration of crop and animal farming','','','a','','wassce','2010',71,'Admin','2016-11-12 20:44:33','2020-06-29 19:26:17'),(258,'The following are all factors determining the location of industry except','minimum wage rate','availability of labour','nearness to raw materials','proximity to market','','','a','','wassce','2010',75,'Admin','2016-11-12 20:44:33','2020-06-20 17:54:56'),(259,'Which of the following is not a concept in National income accounting?','Domestic National Product (DNP)','Gross National Product (GNP)','Gross Domestic Product (GDP)','Net Domestic Product (NDP)','','','a','','wassce','2010',82,'Admin','2016-11-12 20:44:34','2020-06-20 18:14:10'),(260,'Which of the following equations is appropriate for determining the Net Domestic Product (NDP)?','NDP = GNP – depreciation','NDP = GDP + Net Income from abroad','NDP = GDP – depreciation','NDP = GDP x Net Income from abroad','','','c','','wassce','2010',80,'Admin','2016-11-12 20:44:34','2020-06-23 17:37:28'),(261,'Which of the following over estimates the value of national income?','Incomplete statistical data','Wrong timing of computation','Changes in prices of goods within the year','Double counting','','','d','','wassce','2010',71,'Admin','2016-11-12 20:44:34','2020-06-22 17:11:33'),(262,'The total stock of money available for use in an economy is','a function of money','a characteristic of money','the demand for money','the supply of money','','','d','','wassce','2010',67,'Admin','2016-11-12 20:44:34','2020-06-28 16:47:08'),(263,'Which of the following is not a reason for holding money?','Ostentation','Speculation','Transactions','Precautionary','','','a','','wassce','2010',62,'Admin','2016-11-12 20:44:34','2020-06-29 05:31:23'),(264,'The best way of combating demand-pull inflation is to','increase income taxes','reduce income taxes','increase import duties','increase salaries and wages','','','a','','wassce','2010',60,'Admin','2016-11-12 20:44:34','2020-06-20 11:06:41'),(265,'In which of the following ways has','Increase in money supply','A fall in real income','Appreciation in the value of money','Increased employment','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:34','2020-06-29 03:37:16'),(266,'Which of the following is a legal tender?','Bank notes','Bank overdrafts','Bills of exchange','Money order','','','a','','wassce','2010',61,'Admin','2016-11-12 20:44:34','2020-06-26 16:33:46'),(267,'The Central Bank controls money supply through all the following except','lending to the public','bank rate','legal reserve requirements','open market operation','','','a','','wassce','2010',71,'Admin','2016-11-12 20:44:34','2020-06-23 17:31:04'),(268,'One of the functions of the Central Bank is','production of goods','issuing of currency','presenting budgets','printing of cheque book','','','b','','wassce','2010',65,'Admin','2016-11-12 20:44:34','2020-06-29 12:00:08'),(269,'The function of the Central Bank as a lender of last resort means that when all other sources fail','the consumer can always borrow money from the Central Bank','the government can ask the Central Bank to print more money','commercial banks can raise loans from the Central Bank','commercial banks can deposit money with the Central Bank','','','c','','wassce','2010',78,'Admin','2016-11-12 20:44:34','2020-06-29 19:40:21'),(270,'One disadvantage of direct taxes is that they','allocate scarce resources','are not rigid','can be progressive.','can be evaded','','','d','','wassce','2010',78,'Admin','2016-11-12 20:44:34','2020-06-22 17:07:52'),(271,'Human wants are','Limited','scarce','unlimited','in grades','','','c','','wassce','2012',72,'Admin','2016-11-12 21:02:57','2020-06-23 18:43:10'),(272,'The difference between the money cost and the real cost of any item is that','real cost is the alternative forgone while the money cost is the actual amount paid for buying the item','the real cost is the opportunity cost, while the money cost is the marginal cost','money cost is the opportunity cost, while the real cost is the actual cost in monetary terms','money cost is always greater than real cost','','','a','','wassce','2012',69,'Admin','2016-11-12 21:03:03','2020-06-29 19:15:52'),(273,'The Production Possibility Curve (PPC) indicates that as \tmore of one good is produced','less of the other good is produced','the same quantity of the other good is produced','more of the other good is produced','none of the other good is produced','','','a','','wassce','2012',64,'Admin','2016-11-12 21:03:03','2020-06-24 09:02:48'),(274,'An arrangement of data in rows and columns is referred to as a','Graph','bar chart','pie chart','Table','','','d','','wassce','2012',76,'Admin','2016-11-12 21:03:03','2020-06-23 13:19:57'),(275,'A normal demand curve slopes','downwards from left to right','upwards from right to left','downwards from right to left','upwards from left to right','','','a','','wassce','2012',59,'Admin','2016-11-12 21:03:03','2020-06-04 00:11:10'),(276,'The co-efficient of income elasticity of demand for inferior goods is','Positive','equal to one','less than one','negative','','','d','','wassce','2012',61,'Admin','2016-11-12 21:03:03','2020-06-21 11:55:10'),(277,'If a 20% rise in the price of  Whisky leads to a 30% increase in quantity demanded of Schnapps, the cross elasticity of demand is','3.0','2.5','2.3','1.5','','','d','','wassce','2012',56,'Admin','2016-11-12 21:03:04','2020-06-29 19:26:06'),(278,'Palm oil and palm kernel have','competitive supply','excess supply','joint supply','composite supply','','','c','','wassce','2012',65,'Admin','2016-11-12 21:03:04','2020-06-29 05:31:23'),(279,'A supply curve which is vertical has an elasticity co-efficient of','0','0.5','1.5','2','','','a','','wassce','2012',87,'Admin','2016-11-12 21:03:04','2020-06-20 15:20:35'),(280,'If the current price of an apple is twice that of last year, it implies that the value of money is','Stable','falling','rising','getting stronger','','','b','','wassce','2012',61,'Admin','2016-11-12 21:03:04','2020-06-29 19:26:06'),(281,'Price fixed above the equilibrium is to','protect agricultural producers','discourage agricultural producers','lower the prices of agricultural produce','favour consumers','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-06-18 19:52:04'),(282,'A consumer purchasing a commodity X will maximize his satisfaction if','Px = Mux','Px  >_  MUx','Px > Mux','Px < Mux','','','a','','wassce','2012',65,'Admin','2016-11-12 21:03:04','2020-06-29 19:14:25'),(283,'When total utility is constant, it means marginal utility is','Increasing','zero','decreasing','one','','','b','','wassce','2012',61,'Admin','2016-11-12 21:03:04','2020-06-20 08:22:32'),(284,'A rational consumer is one who','spends his income to maximize satisfaction','is not influenced by advertisement','behaves in a particular way all the time','knows the prices of all goods and buys the cheapest','','','a','','wassce','2012',62,'Admin','2016-11-12 21:03:04','2020-06-22 21:24:12'),(285,'Which of the following is not true about land?','The supply is fixed','Land is mobile','It is subject to diminishing returns','Land is heterogeneous','','','b','','wassce','2012',52,'Admin','2016-11-12 21:03:04','2020-06-29 19:07:49'),(286,'The type of production that involves the tapping and \tharnessing of natural resources is','primary production','secondary production','tertiary production','industrial production','','','a','','wassce','2012',64,'Admin','2016-11-12 21:03:04','2020-06-29 19:15:06'),(287,'Which of the following does not change in the short run?','Variable cost','Marginal cost','Total cost','Fixed cost','','','d','','wassce','2012',70,'Admin','2016-11-12 21:03:04','2020-06-22 17:03:20'),(288,'The resources used in production are called','variable inputs','factors of production','capital for production','fixed inputs','','','b','','wassce','2012',79,'Admin','2016-11-12 21:03:04','2020-06-23 11:21:34'),(289,'A firm will shut down in the long run if its earning is','less than normal profit','greater than normal profit','equal to super normal profit','less than super normal profit','','','a','','wassce','2012',54,'Admin','2016-11-12 21:03:04','2020-05-28 21:14:20'),(290,'A market structure where profit is maximized when marginal \trevenue, marginal cost and price are equal is known as','perfect competition','monopoly','oligopoly','imperfect competition','','','a','','wassce','2012',74,'Admin','2016-11-12 21:03:04','2020-06-29 05:31:23'),(291,'In which of the following markets does a firm have power to \tmake super normal profits both in the short run and long run?','Monopol','Duopoly','Oligopoly','Monopsony','','','a','','wassce','2012',65,'Admin','2016-11-12 21:03:04','2020-05-28 21:14:07'),(292,'If there arc no barriers to entering a market, it means that','anyone can become a buyer or seller','unwanted goods can always enter the market','the market becomes a dumping ground','the goods are not inspected','','','a','','wassce','2012',63,'Admin','2016-11-12 21:03:04','2020-06-29 12:00:08'),(293,'A firm’s main aim is to','survive in business','maximize profits','increase its market share','satisfy the ambitions of its managers','','','b','','wassce','2012',67,'Admin','2016-11-12 21:03:04','2020-06-29 18:43:58'),(294,'One good reason for the elimination of middlemen is that they','cause increase in price','help in price stability','grade and blend goods','are too many','','','a','','wassce','2012',73,'Admin','2016-11-12 21:03:08','2020-06-23 18:33:33'),(295,'The increase in population growth in big cities is referred to as','settlement','migration','industrialization','Urbanization','','','d','','wassce','2012',62,'Admin','2016-11-12 21:03:08','2020-06-23 11:18:04'),(296,'Frictional unemployment can be reduced by','encouraging the use of retraining schemes','removing barriers to labour mobility','restricting the introduction of new technology','lowering the level of wages paid to young people','','','a','','wassce','2012',74,'Admin','2016-11-12 21:03:08','2020-06-22 20:35:00'),(297,'If the labour force of a country is 2.5 million and 2 million are employed, what is the unemployment rate?','0.2%','20%','200%','250%','','','b','','wassce','2012',70,'Admin','2016-11-12 21:03:08','2020-06-29 19:07:29'),(298,'The grouping of population according to the economic activities people engage in is','age distribution','sex distribution','geographical distribution','occupational distribution','','','d','','wassce','2012',75,'Admin','2016-11-12 21:03:08','2020-06-20 13:44:19'),(299,'Natural growth rate of population can be defined as the','difference between birth rate and death rate','number of births in a year','increase in the population growth in a year','difference between the total population and the death rate','','','a','','wassce','2012',79,'Admin','2016-11-12 21:03:08','2020-06-29 19:15:06'),(300,'Which of the following is not a consequence of increased unemployment?','A fall in tax revenue for the government','A reduction in trade union’s influence','A fall in the death rate','An increase in the labour force','','','c','','wassce','2012',66,'Admin','2016-11-12 21:03:08','2020-06-29 19:38:28'),(301,'The following are features of subsistence agriculture except','little capital','processing of raw materials','small allotments of land','use of crude implements','','','b','','wassce','2012',71,'Admin','2016-11-12 21:03:08','2020-06-23 12:30:55'),(302,'Which of the following is not true of small companies?','The cannot benefit from economics of scale','are a good source of new jobs','can satisfy demand in specialist markets','have a good record of technical innovations','','','d','','wassce','2012',81,'Admin','2016-11-12 21:03:08','2020-06-23 15:52:02'),(303,'The effect of privatization on the industrial sector of a country is that it','ensures efficiency','discourages efficiency','leads to decrease in output','leads to liquidation','','','a','','wassce','2012',71,'Admin','2016-11-12 21:03:08','2020-06-29 19:39:38'),(304,'The production strategy used in an over populated country is','import substitution','capital intensive','labour intensive','first come first employed','','','c','','wassce','2012',63,'Admin','2016-11-12 21:03:08','2020-06-29 05:31:23'),(305,'National income is used to measure','a country’s population size','a country’s economic growth','the human level of development','the flow of imports to a country','','','b','','wassce','2012',59,'Admin','2016-11-12 21:03:09','2020-06-20 08:22:45'),(306,'A tax is regressive if the','rate of tax is constant at all income levels','rate of tax decreases as income increases','rate of tax increases as income increases','tax is direct rather than indirect','','','b','','wassce','2012',69,'Admin','2016-11-12 21:03:09','2020-06-23 12:42:53'),(307,'When a country’s net income from abroad is added to its total \toutput, the result is','gross domestic product','net national product','gross national product','net domestic product','','','c','','wassce','2012',62,'Admin','2016-11-12 21:03:09','2020-06-29 19:14:25'),(308,'A fall in national output will necessitate','a rise in expenditure on imports','a rise in the level of savings','an increase in consumption expenditure','a rise in the standard of living','','','a','','wassce','2012',74,'Admin','2016-11-12 21:03:09','2020-06-24 08:59:27'),(309,'The demand for money to take advantage of changes in bond \tprices is the','unforeseen motive','transaction motive','speculative motive','precautionary motive','','','d','','wassce','2012',58,'Admin','2016-11-12 21:03:09','2020-05-28 21:14:42'),(310,'Cost push inflation is caused by a','rise in the cost of production','decrease in the transportation cost','rise in demand for goods','decrease in the cost of production','','','c','','wassce','2012',71,'Admin','2016-11-12 21:03:09','2020-06-24 08:59:15'),(311,'Deposits held in a commercial bank are part of','money supply','transfer payments','ordinary shares','treasury bills','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:12','2020-06-29 03:31:29'),(312,'One profitable form of business undertaken by the commercial banks is','the issuing of cheques','the payment of standing order','lending money to borrowers','accepting cheques from customers','','','c','','wassce','2012',68,'Admin','2016-11-12 21:03:13','2020-06-22 17:20:37'),(313,'When governments want to discourage consumption, they \ttax goods whose demand','price inelastic','abnormal in nature','price elastic','normal in nature','','','c','','wassce','2012',66,'Admin','2016-11-12 21:03:13','2020-06-20 13:07:07'),(314,'A rise in government expenditure can lead to','higher inflation','higher unemployment','lower profits for industries','lower importation of raw materials by industries','','','a','','wassce','2012',91,'Admin','2016-11-12 21:03:13','2020-06-29 19:17:32'),(315,'Tariff is used to protect domestic industries by making foreign goods relatively','cheaper in the domestic market','more expensive in the domestic market','more expensive in the international market','cheaper in the international market','','','b','','wassce','2012',74,'Admin','2016-11-12 21:03:13','2020-06-29 18:43:58'),(316,'Musa has a choice of buying a shirt, a book and a bag. What is the opportunity cost of buying a book?','A bag only','A book and a bag','A shirt and a bag','A shirt only','','','c','','utme','2009',84,'Admin','2016-11-12 21:38:46','2020-06-20 16:20:14'),(317,'A typical feature of a market economy is that','all producers make profit','full employment exists','consumer sovereignty exists','there is equality of economic agents','','','c','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-06-29 19:38:28'),(318,'The privatization exercise in Nigeria is a move towards a','mixed economy','subsistence economy','market economy','command economy','','','c','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-06-28 16:47:08'),(319,'A high rent on land will affect the cost of producing maize','positively','negatively','at the early stage of production','at the later stage of production','','','b','','utme','2009',99,'Admin','2016-11-12 21:38:47','2020-06-22 19:34:28'),(320,'If the  active  population  is 50  million and unemployed is 5 million, what is the unemployment rate?','10%','45%','55%','90%','','','a','','utme','2009',91,'Admin','2016-11-12 21:38:47','2020-06-29 19:26:06'),(321,'A cumulative frequency graph is','a histogram','an ogive','a bar chart','a pie chart','','','b','','utme','2009',95,'Admin','2016-11-12 21:38:47','2020-06-20 15:20:35'),(322,'A movement along the same demand curve is caused by the','price of the product','price of other products','income of the consumer','taste of the consumer','','','a','','utme','2009',88,'Admin','2016-11-12 21:38:47','2020-06-29 19:17:32'),(323,'The demand curve for a luxury good is','negatively sloped','parallel to the price axis','parallel to the quantity axis','positive sloped','','','d','','utme','2009',84,'Admin','2016-11-12 21:38:47','2020-06-20 12:48:47'),(324,'Price elasticity of demand is expressed as','percentage change in price percentage change in quantity demanded','percentage change in quantity demanded percentage change in Income','percentage change in Income percentage change in quantity demanded','percentage change in quantity demande percentage change in price','','','d','','utme','2009',84,'Admin','2016-11-12 21:38:47','2020-06-23 18:43:10'),(325,'A major assumption in cardinal utility theory is that','utility is measurable','utility is not measurable','total utility equals marginal utility','total utility is constant','','','a','','utme','2009',93,'Admin','2016-11-12 21:38:47','2020-06-23 17:37:28'),(326,'A supply curve is positively sloped because','supply always exceeds demand','demand always exceeds supply','price is an incentive to consumers','price is an incentive to producers','','','d','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-06-29 12:00:08'),(327,'The short-run supply curve for medical doctors is more  likely to be','perfectly elastic','perfectly inelastic','fairly inelastic','fairly elastic','','','b','','utme','2009',85,'Admin','2016-11-12 21:38:47','2020-06-29 19:40:21'),(328,'If the price of an item changes by 8% and quantity supplied changes from 600 units to 660 units, the price elasticity of supply is','0.80','1.25','2.00','10.00','','','b','','utme','2009',94,'Admin','2016-11-12 21:38:47','2020-06-29 19:40:25'),(329,'In a regulated market, price is determined by','Consumers','producers','auction','government','','','d','','utme','2009',91,'Admin','2016-11-12 21:38:47','2020-06-29 06:50:37'),(330,'A decrease in supply without a corresponding change in demand will lead to','an increase in equilibrium price and a decrease equilibrium quantity','a decrease in equilibrium price and an increase in equilibrium quantity','a decrease in equilibrium price and equilibrium quantity','an increase in equilibrium price and quantity','','','a','','utme','2009',80,'Admin','2016-11-12 21:38:47','2020-06-25 15:25:41'),(331,'Production takes place when','output is transformed into input','machines replace human effort','input is transformed into output','there is specialization and division of labour','','','c','','utme','2009',97,'Admin','2016-11-12 21:38:47','2020-06-29 19:18:06'),(332,'The marginal product of the 5th unit of capital is','42','85','114','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','d','','utme','2009',80,'Admin','2016-11-12 21:38:47','2020-06-20 12:47:15'),(333,'Determine the average product of the 4th unit of capital','53','86','212','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','a','','utme','2009',87,'Admin','2016-11-12 21:38:47','2020-06-22 17:11:33'),(334,'Which of the following can be deduced from law of variable proportions when total output is rising?','MP is greater than AP','MP is less than AP','MP is equal to AP','MP is equal to zero','','','d','','utme','2009',97,'Admin','2016-11-12 21:38:47','2020-06-29 06:50:37'),(335,'As the level of output increases, the average fixed cost of a firm will','continue to increase','remain uncharged','continue to decrease','be equal to the total cost','','','c','','utme','2009',105,'Admin','2016-11-12 21:38:48','2020-06-23 13:00:47'),(336,'The shape of the long-run average cost curve is best explained by the','law of diminishing returns','law of returns to scale','cost of fixed inputs','cost of variable inputs','','','a','','utme','2009',102,'Admin','2016-11-12 21:38:48','2020-06-23 17:32:42'),(337,'The supply curve of a perfectly competitive firm is identical to its','total cost','marginal cost','fixed cost','variable cost','','','b','','utme','2009',85,'Admin','2016-11-12 21:38:48','2020-06-23 18:57:11'),(338,'If a monopolist is incurring short–run losses, this means that his','selling price is above the short–run marginal cost','selling price is below the short–run marginal cost','average revenue is greater than marginal revenue','average revenue is less than marginal revenue','','','b','','utme','2009',92,'Admin','2016-11-12 21:38:48','2020-06-20 15:56:59'),(339,'In the long run, one of the characteristics of monopolistic competitive firms is that the','make  abnormal profits','suffer losses','make normal profits','collude with each other','','','a','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-06-25 15:25:41'),(340,'In developing countries, it is easier to obtain accurate national income estimates through the','GNP','GDP','NDP','NNP','','','b','','utme','2009',98,'Admin','2016-11-12 21:38:48','2020-06-23 18:57:11'),(341,'Double counting is a problem in computing national income when using the','expenditure method','income method','output method','value–added method','','','c','','utme','2009',80,'Admin','2016-11-12 21:38:48','2020-06-20 18:03:22'),(342,'In the circular flow of income, an increase in saving causes','an increase in imports','a decrease in the income stream','an increase in household consumption','a decrease in exports','','','b','','utme','2009',87,'Admin','2016-11-12 21:38:48','2020-06-29 18:43:48'),(343,'The ability of commercial banks to create money depends on the','Ratio','liquidity ratio','interest rate','capital base','','','b','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-06-18 19:18:19'),(344,'The reform in the banking sector in Nigeria is principally \tmotivated by the need to','increase the capital base of banks','provide more money to run the economy','minimize the rate of bank failures','enhance efficiency in bank operations','','','a','','utme','2009',102,'Admin','2016-11-12 21:38:48','2020-06-29 12:00:08'),(345,'A manufacturer who wants to build a new plant will source funds from the','commercial banks','money market','capital market','government','','','c','','utme','2009',93,'Admin','2016-11-12 21:38:48','2020-06-20 16:28:28'),(346,'Cost–push inflation occurs when','production cost is high','factor prices decrease','there is too much money in circulation','government embarks on deficit financing','','','a','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-06-23 15:44:38'),(347,'If government expenditure exceeds revenue, this results in','balanced budget','national debt','budget deficit','budget surplus','','','c','','utme','2009',104,'Admin','2016-11-12 21:38:48','2020-06-29 19:39:38'),(348,'The Basic Needs Approach to development is directed a','poverty alleviation','provision of educational infrastructure','provision of health services','improvement in worker’s income','','','a','','utme','2009',109,'Admin','2016-11-12 21:38:48','2020-06-20 11:38:31'),(349,'The major reason why countries strive to achieve optimum growth is to','be self–sufficient','raise general living standards','raise the level of production','reduce aggregate expenditure','','','b','','utme','2009',96,'Admin','2016-11-12 21:38:48','2020-06-29 19:39:34'),(350,'According to the theory of comparative advantage, specialization will result in','labour–intensive method of production','capital–intensive method of production','efficient allocation of resources','efficient distribution of output','','','c','','utme','2009',94,'Admin','2016-11-12 21:38:48','2020-06-29 19:38:15'),(351,'Dumping in international trade means selling a good at a','higher price at home than abroad','lower price at home than abroad','price that equates marginal cost with marginal revenue','price above marginal cost abroad','','','a','','utme','2009',100,'Admin','2016-11-12 21:38:48','2020-06-22 19:17:29'),(352,'Guided deregulation as currently practiced in Nigeria implies that','market forces determine interest and exchange rates','government alone determines interest and exchange rates','market forces and government determine interest and exchange rates','exchange rate is regulated while interest rate is fixed','','','c','','utme','2009',83,'Admin','2016-11-12 21:38:48','2020-06-29 19:38:15'),(353,'An important function of the world bank is to','provide short–term loans to members','encourage trade between members','promote capital–intensive productions','provide long–term loans to members','','','d','','utme','2009',89,'Admin','2016-11-12 21:38:48','2020-06-29 19:14:25'),(354,'The major problem confronting a sole proprietor is','high level of risk','limited expertise','limited source of capital','high taxation','','','c','','utme','2009',88,'Admin','2016-11-12 21:38:48','2020-06-28 17:00:10'),(355,'A public liability company is run on a daily basis by','the chief executive','the shareholders','the board of directors','financial consultants','','','c','','utme','2009',95,'Admin','2016-11-12 21:38:48','2020-06-28 17:00:18'),(356,'The marketing of agricultural products in Nigeria can be improved by','a massive production of farm produce','re–establishing the marketing boards','establishing more agricultural banks','processing of farm produce','','','b','','utme','2009',86,'Admin','2016-11-12 21:38:48','2020-06-29 05:31:23'),(357,'To enhance the competitiveness of domestic agricultural products, there is need to','ban the importation of agricultural products','increase the exportation of agricultural products','improve the quality of domestic agricultural products','increase the output of domestic agricultural products','','','c','','utme','2009',81,'Admin','2016-11-12 21:38:48','2020-06-29 12:00:08'),(358,'In Nigeria, the location of a steel industry at Ajaokuta is due to','the availability of transport network','the proximity to source of power','the proximity to large deposits of iron ore','political consideration.','','','c','','utme','2009',102,'Admin','2016-11-12 21:38:48','2020-06-29 19:07:29'),(359,'Industries for consumer goods are concentrated in urban centres as result of','large market','power supply','government policy','weather conditions','','','a','','utme','2009',90,'Admin','2016-11-12 21:38:48','2020-06-29 19:18:06'),(360,'The current industrial development strategy in Nigeria is aimed at encouraging','small–scale industries','medium–scale Industries','small – and medium–scale Industries','medium–and large–scale Industries','','','c','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-06-24 08:09:24'),(361,'Activities in the oil and gas industry are classified into','oil exportation and distribution','refining and marketing of finished products','upstream and downstream','exploration and drilling','','','c','','utme','2009',94,'Admin','2016-11-12 21:38:48','2020-06-29 19:38:28'),(362,'High dependency ratio is influenced by','high infant mortality rate','the level of income','high birth rate','inadequate medical care for children','','','c','','utme','2009',96,'Admin','2016-11-12 21:38:48','2020-06-23 17:48:06'),(363,'Occupational distribution of population determines the','size of a population available and willing to work','population density of a place','dependency ratio of a country','size and categories of the labour force','','','a','','utme','2009',97,'Admin','2016-11-12 21:38:48','2020-06-18 18:17:36'),(364,'The mobility of labour is mainly determined by','the age of workers','government policy','trade unions','wage rate differentials','','','d','','utme','2009',96,'Admin','2016-11-12 21:38:49','2020-06-28 16:35:07'),(365,'When workers have a union, the supply of labour is said to be','Monopolistic','oligopolistic','Monoposonistic','competitive','','','b','','utme','2009',96,'Admin','2016-11-12 21:38:49','2020-06-29 19:26:17'),(366,'Economics is the study of human behaviour as it relates to the','efficient allocation of resources','operation of companies','production of goods','generation of income','','','a','','utme','2010',109,'Admin','2016-11-12 22:11:49','2020-07-01 17:51:13'),(367,'A classroom teacher is promoted to the rank of a principal. This is an example of','vertical mobility','lateral mobility','social mobility','horizontal mobility','','','d','','utme','2010',94,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(368,'The downturn in the prices of shares on stock markets is a \thighlight of','efficient allocation of resources','the regulatory nature of the market','the invisible hand','consumer rationality','','','b','','utme','2010',111,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(369,'If  X = 6 and N = 6, determine the value of   Efx.','36','12','1','72','','','a','','utme','2010',115,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(370,'The standard deviation of a set of data is','always measured from the mode','always measured from the median','the most representative of averages','a measure of dispersion','','','d','','utme','2010',100,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(371,'The mean is the best measure of central tendency because it','is not affected by extreme values in a data','is a balancing point in an observation','is a midpoint value in an array of data','can be calculated from incomplete data','','','b','','utme','2010',95,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(372,'The most popular sizes of dresses and shoes are determined by the','Range','mode','mean','median','','','d','','utme','2010',112,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(373,'If  the demand for a good is more elastic than its supply, the tax burden is borne','equally by consumers and producers','more by consumers','more by producers','more by retailers and producers','','','c','','utme','2010',95,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(374,'If  the price of a commodity with elastic demand increases, the revenue accruing to the producer will','Double','be constant','increase','decrease','','','d','','utme','2010',106,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(375,'An excess demand for beans will result from','an increase in the price of  beans','a decrease in the price of  beans','an increase in the supply of  beans','a decrease in the supply of  beans','','','b','','utme','2010',103,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(376,'Consumer surplus tends to be higher when demand is','perfectly elastic','inelastic','elastic','unitary elastic','','','c','','utme','2010',82,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(377,'One of  the assumptions of ordinal utility theory is that','choice is not consistent','total utility is a function of price','utility can be ranked','satisfaction is measurable','','','c','','utme','2010',99,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(378,'The law of diminishing marginal utility explains why','the slope of a normal demand curve is negative','the slope of a normal demand curve is positive','an abnormal demand curve slopes upward','the consumption of inferior goods increases with income','','','a','','utme','2010',108,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(379,'If a consumer plans to spend 120k on four oranges but spent 80k, his consumer surplus is','N = 1.50','N = 1.00','N = 0.40','N = 2.0','','','c','','utme','2010',106,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(380,'A set of  factors that can shift the supply curve are changes in','weather, price and technology','technology, price and taste','technology, weather and population','population, price and taste','','','c','','utme','2010',122,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(381,'If  the coefficient of price elasticity of supply is greater than one, the supply is said to be','perfectly elastic','infinitely inelastic','fairly inelastic','fairly elastic','','','d','','utme','2010',99,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(382,'If commodity X is a by-product of commodity Y, this implies that both commodities are','in competitive supply','jointly supplied','in composite supply','in excess supply','','','c','','utme','2010',102,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(383,'In perfect competition, price is determined by the','Government','buyers','sellers','market','','','d','','utme','2010',91,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(384,'In order to reduce hardship faced by consumers due to high prices, government can introduce','maximum prices','minimum prices','commodity boards','price control boards','','','d','','utme','2010',106,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(385,'Average product is less than marginal product when','there is constant returns to scale','there is decreasing returns to scale','there is increasing returns to scale','diminishing returns set in','','','c','','utme','2010',103,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(386,'A firm enjoying economics of scale is said to be','reducing average cost as production increases','maximizing profits as production increases','benefiting from the activities of other firms','having an upward - sloping average cost curve','','','a','','utme','2010',92,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(387,'The rising portion of the long - run average cost curve of a','firm is an indication that it is experiencing \\n\tincreasing efficiency','diseconomies of scale','economics of scale','increasing marginal returns','','','b','','utme','2010',91,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(388,'An industry’s supply curve is more likely to be elastic when firms are','enjoying free entry and exit','operating below capacity','operating at full capacity','maximizing profits','','','b','','utme','2010',90,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(389,'One of  the characteristics of  monopolistic competition is that','there is mobility of factors of production','consumers have perfect knowledge of price','no single seller dominates the market','the firms are price – takers','','','a','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-06-30 11:55:27'),(390,'The demand curve for factors of production','is perfectly elastic','slopes downwards','slopes upwards','is perfectly inelastic','','','b','','utme','2010',97,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(391,'An agreement among firms on price and segmentation is termed','Cartel','haggling','collusion','specialization','','','b','','utme','2010',96,'Admin','2016-11-12 22:11:51','2020-06-30 11:55:27'),(392,'In national income accounting, tax is determined by the','level of  income','level of investment','level of consumption','rate of savings','','','a','','utme','2010',94,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(393,'A decrease in aggregate spending in an economy will ultimately lead to','Boom','deflation','inflation','recession','','','b','','utme','2010',99,'Admin','2016-11-12 22:11:51','2020-06-30 11:55:27'),(394,'If  MPC is 0.7 while government expenditure increased by N= 150m, the equilibrium national income is','N= 214 million','N= 105 million','N= 45 million','N= 500 million','','','b','','utme','2010',118,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(395,'The function of money which makes division of  labour \tpossible is its','unit of account','medium of exchange','store of value','standard of deferred payment','','','b','','utme','2010',109,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(396,'By buying treasury bills, the Central Bank of  Nigeria intends \tto','increase money supply in the economy','reduce money supply in the economy','reduce the cash reserve ratio for banks','increase the capital base of commercial banks','','','b','','utme','2010',112,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(397,'The velocity of money is represented as','money supply /real GDP','real GDPmoney supply','nominal GDP/real GDP','money supply/nominal GDP','','','a','','utme','2010',104,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(398,'One of the functions of commercial banks is','maintaining stable price in the economy','granting loans to customers','regulating monetary policies','issuing bank notes and coins','','','b','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(399,'A strategy for curbing unemployment is to','implement government stabilization policy','increase government expenditure and decrease taxes','increase taxes and decrease government expenditure','ensure even distribution of job opportunities','','','b','','utme','2010',108,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(400,'In Nigeria, the huge public debt is as a result of','balanced budgeting','surplus budgeting','deficit budgeting','zero budgeting','','','c','','utme','2010',98,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(401,'National development plans in Nigeria fail mainly because of','over dependence on foreign aids','poor implementation strategies','inadequate funding of projects','shortage of skilled manpower','','','b','','utme','2010',100,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(402,'The ultimate aim of agricultural policies in Nigeria is to achieve','food sufficiency','full employment','industrialization','industrial capacity utilization','','','c','','utme','2010',92,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(403,'Government can boost agricultural output in Nigeria primarily by','embarking on buffer stock programs','granting subsidies on farm Inputs','placing embargo on food importation','placing farmers on monthly income','','','c','','utme','2010',101,'Admin','2016-11-12 22:11:51','2020-06-30 11:55:27'),(404,'Localization of industries refers to the','spread of firms producing different products','concentration of firms of an industry','siting of industries near the market','siting of firms producing different products','','','b','','utme','2010',103,'Admin','2016-11-12 22:11:51','2020-06-30 11:55:27'),(405,'in developing countries, governments influence the location of  industries in order to','spread development','encourage entrepreneurs','redistribute wealth','encourage industries to earn high profits','','','a','','utme','2010',98,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(406,'A disadvantage of Nigeria’s dependence on imported petroleum products is the','instability in the demand to the  products','instability in the supply for the products','dominance of multinational firms','poor maintenance of the refineries','','','b','','utme','2010',103,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(407,'The maximum number of shareholders  for a limited liability company is','Twenty','seven','five','infinite','','','d','','utme','2010',96,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(408,'The primary motive for an individual engaging in production is to','make profit','redistribute wealth','satisfy basic human wants','put inputs into use','','','a','','utme','2010',112,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(409,'One of  the characteristics of  free trade zone is','common tariff against non-member countries','free factor mobility within the zone','different trade policies of non-member countries','harmonized trade among member countries','','','b','','utme','2010',109,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(410,'If  Nigeria imports vehicles from Japan, the transaction will appear as a','debit on Japan’s balance of payments','credit on Nigeria’s balance of trade','credit on Japan’s balance of payments','credit on Nigeria’s balance of payments','','','a','','utme','2010',98,'Admin','2016-11-12 22:11:51','2020-06-28 09:33:12'),(411,'One of  the objectives of ADB is to','provide subsidies on imported goods to members countries','promote economic and social development of member countries','mobilize short-term loans for member countries','provide technical assistance to only poor member countries','','','c','','utme','2010',98,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(412,'The choice of the method of production in an economy is determined by the','level of income','rate of population growth','level of technical know-how','availability of natural resources','','','c','','utme','2010',108,'Admin','2016-11-12 22:11:51','2020-06-30 11:55:27'),(413,'The amount of labour hired depends on the','number of skilled labour available','marginal productivity of labour','skill of labour','price of other inputs','','','b','','utme','2010',90,'Admin','2016-11-12 22:11:51','2020-06-30 11:55:27'),(414,'Economic as a field of study is a','pure science','political science','social science','physical science','','','c','','wassce','2003',64,'Admin','2016-11-12 22:37:36','2020-06-20 10:51:41'),(415,'The three major agents of an economic system are the','consumers, workers and producers','markets, telecommunication and banks','schools, hospitals and universities','individuals, firms and government','','','d','','wassce','2003',67,'Admin','2016-11-12 22:37:37','2020-06-22 21:24:12'),(416,'Which of the following  is  not  an  advantage  of  tabular presentation of data?','enables easy location of required figures','makes for easy comparison of figures','occupies more space than mathematical equation','shows whether the figures are increasing or decreasing','','','c','','wassce','2003',89,'Admin','2016-11-12 22:37:37','2020-06-24 08:59:27'),(417,'The problem of scarcity is reduced by','controlling consumption of goods and services','producing everything needed by consumers','ensuring efficient allocation of resources','restricting consumer choices and tastes','','','c','','wassce','2003',81,'Admin','2016-11-12 22:37:37','2020-06-23 11:16:52'),(418,'The reward for labour is','wages','profit','rend','dividends','','','a','','wassce','2003',67,'Admin','2016-11-12 22:37:38','2020-06-23 18:57:11'),(419,'Which of the following factors of production consists of man made goods?','Land','Labour','Capital','Entrepreneur','','','c','','wassce','2003',68,'Admin','2016-11-12 22:37:38','2020-06-06 18:47:00'),(420,'One major function of the entrepreneur is','bearing of risk','maximizing profits','taking charge of day to day management','determining the selling price of his products','','','c','','wassce','2003',68,'Admin','2016-11-12 22:37:38','2020-06-29 19:26:06'),(421,'A major limiting factor of mass production is','efficient management','adequate labour supply','small size of the market','adequate  supply of raw materials','','','c','','wassce','2003',81,'Admin','2016-11-12 22:37:38','2020-06-22 20:35:00'),(422,'Division of labour leads to','improved craftsmanship','the production of standardized goods','increase in the cost of goods','trade by barter','','','b','','wassce','2003',73,'Admin','2016-11-12 22:37:38','2020-06-23 18:24:35'),(423,'Which of the following is  an  advantage of localization of \\n\tindustry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2003',78,'Admin','2016-11-12 22:37:38','2020-06-20 16:12:15'),(424,'The additional satisfaction derived from the consumption of one more unit of a good is called','marginal product','marginal utility','marginal revenue','marginal cost','','','b','','wassce','2003',77,'Admin','2016-11-12 22:37:38','2020-06-24 08:59:27'),(425,'West  African   countries  have  low  levels  of  economic \tdevelopment due to','underpopulation','inadequate labour','failure to plan','ineffective plan implementation','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:38','2020-06-20 11:55:12'),(426,'When the total product is at its maximum, marginal \\n\tproduct is','increasing','positive','negative','zero','','','d','','wassce','2003',89,'Admin','2016-11-12 22:37:38','2020-06-24 08:09:24'),(427,'Marginal cost can be derived from the','total product','total revenue','total cost','average fixed cost','','','d','','wassce','2003',74,'Admin','2016-11-12 22:37:38','2020-06-22 17:20:37'),(428,'The market supply curve slopes upwards from left to right indicating that','at a lower price, more is supplied','two commodities can be supplied at the same time','at a lower price, less is supplied','producers pay high taxes','','','c','','wassce','2003',60,'Admin','2016-11-12 22:37:38','2020-06-20 16:04:39'),(429,'The marginal revenue when output is 4 units is','5 naira','8 naira','56 naira','61 naira','Use the data below to answer question:  Output [1, 2, 3, 4, 5]  Total Revenue(N=) [40, 49, 56, 61, 65]','','a','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-06-20 13:41:33'),(430,'The term under population refers to a situation where the population is','dispersed over the country','small in relation to available resources','greater than the available resources','concentrated in a few areas','','','b','','wassce','2003',70,'Admin','2016-11-12 22:37:38','2020-06-20 11:53:50'),(431,'West African countries experience rapid population growth due to','existence of birth control clinics','early marriages','adequate sex education in schools','late marriages','','','b','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-02 15:47:02'),(432,'Which of the following could be  used  to  measure  the efficiency of labour?','Education and training','Rate of inflation','Level of unemployment','Input-Output ratio','','','d','','wassce','2003',72,'Admin','2016-11-12 22:37:38','2020-06-23 12:42:53'),(433,'Which of the following is necessary for the survival of small firms in West Africa?','Access to land for development','Inadequate collaterals for bank loans','Government assistance in the form of loans and tax holidays','High transportation costs.','','','c','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-06-23 11:16:39'),(434,'A normal demand curve slopes','downwards from left to right','upwards from left to right','downwards from right to left','upwards from the origin','','','a','','wassce','2003',89,'Admin','2016-11-12 22:37:38','2020-06-29 19:39:38'),(435,'If the quantity demanded of a commodity increases from 20 to 30 units when there is an increase in price from 4 naira to 5 naira, the elasticity of demand is','0','1','2','5','','','c','','wassce','2003',77,'Admin','2016-11-12 22:37:38','2020-06-29 19:40:25'),(436,'Price elasticity of supply measures the responsiveness of','quantity supplied to   changes in suppliers’ income','changes in prices of other commodities','a change in the prices of the commodity','a change in the demand for the product','','','c','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-06-29 18:43:58'),(437,'The most common type of business in West African countries is','joint stock companies','sole proprietorships','partnerships','public enterprises','','','b','','wassce','2003',75,'Admin','2016-11-12 22:37:38','2020-06-24 08:20:27'),(438,'Which of the following is a type of business organization?','Stock exchange','Insurance company','Chain stores','Co-operative','','','b','','wassce','2003',61,'Admin','2016-11-12 22:37:38','2020-06-29 19:39:34'),(439,'One advantage of the sole proprietorship is that','control and supervision is under one man','accounts must be publicized','it is always successful','funds are easy to obtain','','','a','','wassce','2003',66,'Admin','2016-11-12 22:37:38','2020-06-29 19:39:34'),(440,'The shares which do not carry any fixed rate of dividend are known as','debentures','cumulative preference shares','ordinary shares','participating preference shares','','','c','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-06-20 12:47:15'),(441,'The economic goal of public corporations is to','maximize profit','expand assets','minimize costs','provide essential services.','','','d','','wassce','2003',74,'Admin','2016-11-12 22:37:38','2020-06-20 15:12:27'),(442,'One of the factors responsible for low agricultural \\n\tproduction in West Africa is','inadequate labour','shortage of land','inadequate implements','inadequate research','','','c','','wassce','2003',81,'Admin','2016-11-12 22:37:38','2020-06-20 13:44:19'),(443,'Efficient distribution of goods in West Africa will be \\n\tfacilitated by','poor storage facilities','adequate transportation system','high standard of living','high cost of living','','','b','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-06-29 05:31:23'),(444,'The demand for money is','derived demand','composite demand','joint demand','complimentary demand','','','a','','wassce','2003',75,'Admin','2016-11-12 22:37:39','2020-05-28 21:13:53'),(445,'Money becomes a very poor store of value in a period of','deflation','depression','recession','inflation','','','d','','wassce','2003',73,'Admin','2016-11-12 22:37:39','2020-06-29 12:00:08'),(446,'A continuous fall in the general price level is called','recession','depression','deflation','stagflation','','','c','','wassce','2003',86,'Admin','2016-11-12 22:37:39','2020-06-29 05:31:23'),(447,'Which of the following is a function of the central bank?','Accepting deposits from the public','Lending to the commercial bank','Discounting bills of exchange','Agent of payment for individuals','','','b','','wassce','2003',63,'Admin','2016-11-12 22:37:39','2020-06-23 15:51:16'),(448,'Cost-push inflation is likely to arise when','there is an increase in government spending','there is an increase in direct taxes','demand for higher wages is granted','there is a decrease in bank lending','','','c','','wassce','2003',74,'Admin','2016-11-12 22:37:39','2020-06-23 13:00:47'),(449,'The most important function of merchant banks is the','issuing of currency','provision of short term loans','provision of medium and long term loans','provision of short and long term loans','','','c','','wassce','2003',78,'Admin','2016-11-12 22:37:39','2020-06-24 08:59:27'),(450,'Precautionary motive relates to','demand for money','demand for goods','supply of money','supply of goods','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:39','2020-06-29 14:32:33'),(451,'Invisible trade refers to trade in','services','goods and services','tangible goods','crude oil','','','a','','wassce','2003',68,'Admin','2016-11-12 22:37:39','2020-06-20 13:01:14'),(452,'When the demand for foreign exchange exceeds its supply, the value of the domestic currency','appreciates','depreciates','inflates','expands','','','b','','wassce','2003',70,'Admin','2016-11-12 22:37:39','2020-06-20 17:53:27'),(453,'Which of the following is part of the capital account of the balance of payments?','Net investment from abroad','Import of machinery','Insurance','Transportation costs','','','a','','wassce','2003',80,'Admin','2016-11-12 22:37:39','2020-06-26 16:46:06'),(454,'The most common index for measuring development is','the level of illiteracy','the per capital income','nutritional levels','population growth rate','','','b','','wassce','2003',67,'Admin','2016-11-12 22:37:39','2020-06-22 20:12:10'),(455,'Governments of West African countries levy taxes to','prevent prices from falling','make people richer','limit the number of banks','finance government projects','','','d','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-06-24 09:02:48'),(456,'Which of the following is a direct tax?','Import duties','Purchase tax','Export duties','Personal income tax','','','d','','wassce','2003',82,'Admin','2016-11-12 22:37:39','2020-06-21 11:19:21'),(457,'The tax whose rate increases as the level of income increases is known as','regressive tax','proportional tax','progressive tax','company tax','','','c','','wassce','2003',116,'Admin','2016-11-12 22:37:39','2020-06-29 19:15:06'),(458,'Public expenditure on education and health is known as expenditure on','general services','social services','commercial services','economic services','','','b','','wassce','2003',71,'Admin','2016-11-12 22:37:39','2020-06-23 18:01:11'),(459,'Budget deficit can be financed by','reducing the level of taxation','printing more money','lending to financial institutions','employing more workers','','','b','','wassce','2003',65,'Admin','2016-11-12 22:37:39','2020-06-22 16:40:10'),(460,'A major problem facing the Economic Community of West African States (ECOWAS) as an economic integration, is the','increasing population','willingness of member to co-operate','geographical contiguity','weak trade relations','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-06-29 19:39:34'),(461,'In a socialist economy, the means of production is owned and controlled by the','state','rich','Entrepreneur','traders','','','a','','wassce','2003',69,'Admin','2016-11-12 22:37:39','2020-06-29 19:39:34'),(462,'It is necessary to estimate the national income of a country because it','indicates the overall performance of the economy','ensures equitable distribution of wealth','assists investors in identifying profitable ventures','enables governments to conserve national resources','','','a','','wassce','2003',64,'Admin','2016-11-12 22:37:39','2020-06-18 19:46:15'),(463,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','perfect competition','monopsony','duopoly','cartel','','','d','','wassce','2003',76,'Admin','2016-11-12 22:37:39','2020-06-29 19:38:15'),(464,'Which of the following is an economic activity?','Attending a town’s meeting','A visit to the stadium','Payment of school fee','Arresting a petty thief','','','c','','wassce','2004',70,'Admin','2016-11-12 23:04:46','2020-06-30 13:23:27'),(465,'The reward for land as a factor of production is','interest','rent','dividend','wages','','','b','','wassce','2004',70,'Admin','2016-11-12 23:04:46','2020-06-20 14:52:02'),(466,'The three broad categories of production are','direct, secondary and extractive','primary, tertiary and direct','primary, secondary and tertiary','secondary, primary and indirect','','','c','','wassce','2004',72,'Admin','2016-11-12 23:04:46','2020-06-20 15:39:15'),(467,'A carpenter’s consumer good include:  I.  a kilogram of rice II.  3 pairs of shoes    III.  4 pairs of socks   IV. 3 screw-drivers','I and IV only','I, II, III and IV','I, II and IV only','I, II and III only','','','a','','wassce','2004',67,'Admin','2016-11-12 23:04:46','2020-06-20 12:44:16'),(468,'In a capitalist system, the means of production is owned and controlled by','the government','politicians','private individuals','the workers','','','c','','wassce','2004',69,'Admin','2016-11-12 23:04:46','2020-06-20 13:41:33'),(469,'Mixed economy refers to a system in which the means of production are controlled by','private enterprise and the government','private individuals','the government only','the workers and businessmen','','','a','','wassce','2004',76,'Admin','2016-11-12 23:04:46','2020-06-23 13:00:47'),(470,'An economic good is described as a good which','yield utility and commands a price','is useful and occupies a space','is in high demand and transferable','has unlimited supply','','','a','','wassce','2004',63,'Admin','2016-11-12 23:04:46','2020-06-22 17:11:33'),(471,'The concept of opportunity cost is important to the firm because it','determines the prices of the firm’s products','increases the level of output of the firm','leads to maximum satisfaction of the consumers','Guides firms in allocating scarce resources','','','d','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-06-25 15:25:41'),(472,'As a firm expands, it enjoys some advantages called','variable proportions','diminishing marginal returns','internal economics of scale','decreasing returns to scale','','','c','','wassce','2004',71,'Admin','2016-11-12 23:04:46','2020-06-23 18:57:11'),(473,'Division of labour is limited by','the size of the market','the productivity of capital','cost of production','factors of production','','','a','','wassce','2004',66,'Admin','2016-11-12 23:04:46','2020-06-26 18:21:05'),(474,'An entrepreneur is likely to make more profits when','expenditure is more than revenue','competitors charge lower prices','cost per unit output falls','quantity of output reduces','','','c','','wassce','2004',68,'Admin','2016-11-12 23:04:46','2020-06-22 21:21:21'),(475,'Natural growth rate is','birth rate less death rate','death rate less migration','death rate plus birth rate','birth rate plus migration','','','a','','wassce','2004',68,'Admin','2016-11-12 23:04:46','2020-06-23 18:13:33'),(476,'A major effect of aging populations is','reduced labour force','rise in prices of commodities','reduced infrastructure','neglect of agriculture','','','a','','wassce','2004',82,'Admin','2016-11-12 23:04:46','2020-06-20 16:19:55'),(477,'One of the problems associated with the middleman in the distribution of goods is that he','buys in large quantities','hoards goods','grants credit to the retailer','sells varieties of goods','','','b','','wassce','2004',73,'Admin','2016-11-12 23:04:46','2020-06-28 17:00:25'),(478,'The distribution of goods is said to be completed when it reaches the','wholesalers','consumers','retailers','manufacturers','','','b','','wassce','2004',76,'Admin','2016-11-12 23:04:46','2020-06-21 09:17:49'),(479,'The gap between demand and  supply  curves  below the equilibrium price indicates','excess demand','excess supply','equilibrium quantity','equilibrium price','','','a','','wassce','2004',82,'Admin','2016-11-12 23:04:46','2020-06-29 19:26:17'),(480,'Demand for inferior good is an example of','expansion of demand','contraction of demand','individual demand','abnormal demand','','','d','','wassce','2004',76,'Admin','2016-11-12 23:04:46','2020-06-29 18:43:48'),(481,'When a change in price does not affect the quantity demanded of a commodity, the price elasticity of demand is','fairly inelastic','infinitely elastic','perfectly inelastic','unitary elastic','','','c','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-06-29 19:17:32'),(482,'For both the monopolist and the perfectly competitive firm, profit maximizing output occurs at the point where the','marginal cost curve cuts the marginal revenue curve from below','marginal revenue curve cuts the marginal output from above','marginal cost curve intersects the X-axis','marginal revenue curve intersects the Y-axis','','','a','','wassce','2004',77,'Admin','2016-11-12 23:04:47','2020-06-22 21:21:21'),(483,'The market structure in which the operators are many and none of them can influence the price is','imperfect market','perfect market','oligopolistic market','stock market','','','b','','wassce','2004',74,'Admin','2016-11-12 23:04:47','2020-06-29 19:38:15'),(484,'One main benefit of partnerships is','the possibility of raising funds on the stock exchange','the possibility of attracting twenty one or more members','that members can specialize in various functions','that it enjoys its own separate legal entity.','','','c','','wassce','2004',69,'Admin','2016-11-12 23:04:47','2020-06-19 17:59:47'),(485,'Joint ventures are partnerships involving','the poor and the rich','employers and workers','government and private investor','multi-nationals and individual','','','c','','wassce','2004',89,'Admin','2016-11-12 23:04:47','2020-06-23 12:02:30'),(486,'The value of money is best determined by','input-output ratio','the purchasing power','the importance people attach to it','economics of scale','','','b','','wassce','2004',72,'Admin','2016-11-12 23:04:47','2020-06-23 18:33:33'),(487,'Which of the following will be an effect of inflation?','Wages earners will gain','Borrowing of money will be restricted','Money lenders will gain','Borrowers of money will gain','','','d','','wassce','2004',80,'Admin','2016-11-12 23:04:47','2020-06-20 16:06:40'),(488,'Government can control inflation by','printing more money','reducing the rate of taxes','reducing the level of expenditure','establishing more banks','','','c','','wassce','2004',86,'Admin','2016-11-12 23:04:47','2020-06-26 16:48:35'),(489,'The market consisting  of  a  network  of  dealers  where \tcurrencies can be bought and sold is known as','capital market','foreign exchange market','commodity market','the stock market','','','b','','wassce','2004',71,'Admin','2016-11-12 23:04:47','2020-06-23 11:18:04'),(490,'Open Market Operation (OMO) means the','provision of credit facilities by commercial banks','provision of credit facilities by the mortgage banks','buying and selling of government securities by the central bank','procedure for the establishment of commercial banks','','','c','','wassce','2004',71,'Admin','2016-11-12 23:04:47','2020-06-20 14:11:06'),(491,'Which of the following is an advantage of  localization of industry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2004',71,'Admin','2016-11-12 23:04:47','2020-06-29 19:39:34'),(492,'Which of the following will ensure efficiency in the industrial sector of your country?','Indigenization','Privatization','Nationalization','Liquidation','','','b','','wassce','2004',75,'Admin','2016-11-12 23:04:47','2020-06-24 09:02:48'),(493,'The number of people who are qualified to work and who offer themselves for employment are called','migrant labour','working population','labour turnover','mobility of labour','','','b','','wassce','2004',74,'Admin','2016-11-12 23:04:47','2020-06-20 12:44:30'),(494,'When the general price level persistently falls, the rate of  unemployment','rises','stagnates','rapidly reduces','equals natural growth rate','','','a','','wassce','2004',81,'Admin','2016-11-12 23:04:47','2020-06-23 18:13:33'),(495,'Which of the following is not a direct effort to increase agricultural production?','Operation feed the nation','Use of improved seedlings','Increased loans to farmer and co-operative societies','National Youth Service Corps','','','d','','wassce','2004',74,'Admin','2016-11-12 23:04:47','2020-06-22 17:20:37'),(496,'To ensure high employment rates, developing countries should','build more universities','protect infant industries','organize trade fairs','prevent rural-urban drift','','','b','','wassce','2004',77,'Admin','2016-11-12 23:04:47','2020-06-29 18:43:48'),(497,'The act of selling goods in foreign markets at prices below those charged at home markets is called','exchange','specialization','dumping','exporting','','','c','','wassce','2004',75,'Admin','2016-11-12 23:04:47','2020-05-28 21:14:10'),(498,'Taxes levied on commodities are','direct taxes','indirect taxes','poll taxes','investment taxes','','','b','','wassce','2004',80,'Admin','2016-11-12 23:04:47','2020-06-29 05:31:23'),(499,'One disadvantage of direct taxes is that','government’s revenue is reduced','price of essential commodities fall','people are discouraged from additional work','firms make more profits','','','c','','wassce','2004',74,'Admin','2016-11-12 23:04:47','2020-06-23 18:13:33'),(500,'International trade is an application of the principle of','industrial production','mass production','regional co-operation','comparative costs advantage','','','d','','wassce','2004',75,'Admin','2016-11-12 23:04:47','2020-06-29 19:15:06'),(501,'Trade among West African countries is poor because the','countries are self-sufficient','communication links are weak','number of banks is insufficient','people are not enterprising','','','b','','wassce','2004',80,'Admin','2016-11-12 23:04:47','2020-06-29 12:00:08'),(502,'A policy by which governments restrict the amount of \\n\tforeign currencies bought and sold is known as','devaluation','credit creation','exchange control','export promotion','','','c','','wassce','2004',71,'Admin','2016-11-12 23:04:47','2020-06-20 16:00:38'),(503,'Which of the following items is under the capital account of a balance of payments','Repayments of foreign loans','Visible imports','Invisible exports','Cocoa export','','','a','','wassce','2004',84,'Admin','2016-11-12 23:04:47','2020-06-29 19:15:06'),(504,'A surplus in the balance of payments should be used to','subsidize multi-national companies','build infrastructure for friendly nations','make donation to developed countries','buy investments overseas','','','d','','wassce','2004',84,'Admin','2016-11-12 23:04:47','2020-06-29 19:17:32'),(505,'Development planning which takes an overall view of the economy is described as','Aggregate economic planning','Disaggregated economic planning','Sectorial economic planning','System economic planning','','','a','','wassce','2004',79,'Admin','2016-11-12 23:04:47','2020-06-29 19:38:28'),(506,'The national income of a country can be estimated by the','cost-benefit method','distribution method','expenditure method','consumption method','','','c','','wassce','2004',74,'Admin','2016-11-12 23:04:51','2020-06-26 18:56:00'),(507,'Which of the following is excluded when estimating national income?','Dividends','Wages and salaries','Transfer payment','Profits','','','c','','wassce','2004',59,'Admin','2016-11-12 23:04:51','2020-06-20 08:32:40'),(508,'The economic Community of West African States (ECOWAS) has been slow in achieving its objectives because of','political instability in member state','the activities of multi-national','inadequate personnel at the secretariat','inadequate international support','','','a','','wassce','2004',60,'Admin','2016-11-12 23:04:51','2020-06-20 11:25:10'),(509,'A major achievement of  the  Organization  of  Petroleum Exporting Countries (OPEC) is that','crude oil price has increased tremendously','petroleum products prices have remained low','producing countries are highly industrialized','price of crude oil has remained relatively stable.','','','d','','wassce','2004',80,'Admin','2016-11-12 23:04:51','2020-06-20 11:11:30'),(510,'Economic activities are undertaken to solve the problem of','consumption','opportunity cost','production','scarcity','','','b','','wassce','2005',77,'Admin','2016-11-12 23:29:58','2020-06-20 08:30:52'),(511,'Farming, mining and fishing are','primary production','secondary production','tertiary production','intermediate production','','','a','','wassce','2005',82,'Admin','2016-11-12 23:29:58','2020-06-02 19:43:39'),(512,'A list of consumers’ wants arranged in order of priority is known as','a budget','an opportunity cost','a scale of preference','choice','','','c','','wassce','2005',83,'Admin','2016-11-12 23:29:58','2020-06-29 05:31:23'),(513,'The 150.00 Naira which Olu would have used to purchase a textbook was used to buy a T-shirt. This implies that','Olu’s real cost is 150.00 Naira','Olu’s opportunity cost is the T-shirt','Olu’s opportunity cost is the textbook','Olu’s money cost is also the real cost.','','','c','','wassce','2005',70,'Admin','2016-11-12 23:29:58','2020-06-29 12:00:08'),(514,'The remuneration of the entrepreneur as a factor of production is called','wages','salary','interest','profit','','','d','','wassce','2005',78,'Admin','2016-11-12 23:29:58','2020-06-29 18:13:47'),(515,'The production factor, whose entire world supply is fixed is','land','skilled labour','capital goods','entrepreneurship','','','a','','wassce','2005',62,'Admin','2016-11-12 23:29:58','2020-06-29 19:18:06'),(516,'When all factor inputs are reduced by half, the production possibility curve will shift','outwards','inwards','downwards','upwards','','','b','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-06-21 11:23:07'),(517,'When a worker changes from one type of job to another, it is called','geographical mobility of labour','occupational mobility of labour','immobility of labour','rural-urban migration.','','','b','','wassce','2005',78,'Admin','2016-11-12 23:29:59','2020-06-26 18:21:05'),(518,'Which of the following determines the sizes of a country’s population?    (l) Birth rate    (ll) Death rate     \\n\t(lll) Migration rate     (lV) lmportation rate    (V) Unemployment','l), (ll) and (V)','(ll) and (lV)','(I), (II) and (lll)','(I) and (V)','','','c','','wassce','2005',74,'Admin','2016-11-12 23:29:59','2020-06-21 11:22:54'),(519,'Age distribution is important because it helps the \tgovernment to','check rural-urban drift','determine the number of foreigners','determine the number of factories','undertake effective planning','','','d','','wassce','2005',72,'Admin','2016-11-12 23:29:59','2020-06-29 03:33:56'),(520,'A group of firms producing similar commodities for the same market constitute','a cartel','an industry','a co-operative','wholesalers','','','b','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-06-29 18:43:48'),(521,'A factor that has slowed down the rate of industrial development in West Africa is','inadequate technology','increasing rate of manpower production','increased demand for local goods','intervention of the government in business activities.','','','a','','wassce','2005',59,'Admin','2016-11-12 23:29:59','2020-06-20 08:30:52'),(522,'To achieve an equilibrium position, the consumer must buy so much of each commodity whose price is equal its','marginal utility','total utility','average utility','variable utility','','','a','','wassce','2005',80,'Admin','2016-11-12 23:29:59','2020-06-24 10:03:13'),(523,'Price control refers to','the ways of making more goods available in the market','a policy of ensuring stable price in the market','a general reduction in the price level','effective working of the forces of demand and supply','','','b','','wassce','2005',66,'Admin','2016-11-12 23:29:59','2020-06-29 19:40:21'),(524,'The desire for goods without the ability to pay is called','choice','effective demand','joint demand','wants','','','d','','wassce','2005',67,'Admin','2016-11-12 23:29:59','2020-06-20 14:44:01'),(525,'Amount of goods offered to the market at respective prices and presented in a table is called','price schedule','supply schedule','scale of preference','demand schedule','','','b','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-06-29 19:38:28'),(526,'At the equilibrium price, quantity demanded is','greater than quantity supplied','equal to quantity supplied','less than quantity supplied','equal to excess supply','','','b','','wassce','2005',69,'Admin','2016-11-12 23:29:59','2020-06-24 08:09:12'),(527,'lf the government fixed a price of a commodity above the equilibrium price, the quantity supplied will be','less than quantity demanded','equal to the quantity demanded','greater than quantity demanded','equal to zero','','','c','','wassce','2005',81,'Admin','2016-11-12 23:29:59','2020-06-23 17:37:28'),(528,'One of the factors determining price elasticity of demand for a commodity is the','availability of close substitutes','number of producers','government policy','price of other commodities.','','','a','','wassce','2005',74,'Admin','2016-11-12 23:29:59','2020-05-28 21:15:26'),(529,'lf elasticity of demand for a commodity is less than one, demand is','unitary elastic','inelastic','infinitely elastic','zero elastic','','','b','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-06-29 19:39:38'),(530,'The transfer of ownership of a public enterprise to  individuals and firms is called','commercialization','nationalization','privatization','restructuring','','','c','','wassce','2005',73,'Admin','2016-11-12 23:29:59','2020-06-20 08:38:09'),(531,'One-man businesses are popular in West Africa because of all the following except the','ease of entry','small capital required','limited entrepreneurial skill needed','tendency to become joint-stock companies.','','','d','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-06-23 15:51:16'),(532,'Wholesalers are often criticized because they','help to break the bulk','finance producers','increase prices','provide after-scale services','','','c','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-06-29 12:00:08'),(533,'ln which of the following business units are the owners mostly the customers?','Co-operatives','Limited liability companies','Partnerships','Public corporations','','','a','','wassce','2005',80,'Admin','2016-11-12 23:29:59','2020-06-29 19:17:32'),(534,'information about new goods is passed on to buyers through','advertising','retail trade','the manufacturer','wholesale trade','','','a','','wassce','2005',80,'Admin','2016-11-12 23:29:59','2020-06-29 19:39:38'),(535,'The profit of the producer can be calculated as','total cost less total revenue','average revenue less average cost','total revenue less total cost','marginal revenue less marginal cost','','','c','','wassce','2005',73,'Admin','2016-11-12 23:29:59','2020-06-29 19:38:28'),(536,'The direct exchange of one good for another without the use of money is known as','foreign exchange','exchange rate','expenditure','barter','','','d','','wassce','2005',78,'Admin','2016-11-12 23:29:59','2020-06-22 18:51:40'),(537,'Acceptability, durability, homogeneity and portability are all \tattributes of good','markets','money','banks','government','','','b','','wassce','2005',72,'Admin','2016-11-12 23:29:59','2020-06-29 19:38:14'),(538,'The term demand for money means','desire to borrow money from people','desire of an individual to invest all his money in  projects','willingness of people to hold money','willingness of people to keep all their resources in  assets.','','','c','','wassce','2005',72,'Admin','2016-11-12 23:29:59','2020-06-24 08:59:15'),(539,'A persistent and appreciable rise in the general level of prices is known as','depreciation','inflation','deflation','production','','','b','','wassce','2005',77,'Admin','2016-11-12 23:29:59','2020-06-20 16:28:41'),(540,'To a commercial bank, deposits are','liabilities','assets','capital','cash at hand','','','d','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-06-23 11:19:12'),(541,'The lender of last resort in the banking system is the','industrial bank','mortgage bank','commercial bank','central bank','','','d','','wassce','2005',74,'Admin','2016-11-12 23:29:59','2020-06-23 18:39:35'),(542,'Discounting a bill of exchange means the bill is','cashed over the counter','sold on the stock exchange','bought for less than its face value','sold to the highest bidder','','','c','','wassce','2005',76,'Admin','2016-11-12 23:29:59','2020-06-20 15:56:59'),(543,'The central bank controls credit in the economy through the use of','legal tender','travelers cheque','foreign exchange instruments','open market operations','','','d','','wassce','2005',79,'Admin','2016-11-12 23:29:59','2020-06-22 18:00:28'),(544,'Among the principles of taxation propounded by Adam Smith was that','a tax should be impossible to evade','a tax should be convenient to pay','no tax should be levied on food','there should be no taxation without representation','','','b','','wassce','2005',74,'Admin','2016-11-12 23:29:59','2020-06-19 17:20:12'),(545,'Mr. Bala’s income is $800.00 per month while that of Mr. Jatau is $1,200.00. lf Messrs Bala and Jatau pay $80.00 and $120.00 respectively as taxes, the tax system is','progressive','regressive','proportional','ad-valorem','','','c','','wassce','2005',81,'Admin','2016-11-12 23:29:59','2020-06-23 18:33:33'),(546,'Government revenue from the groundnut industry is from','licenses','rents','royalties','taxes','','','d','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-07-01 11:31:16'),(547,'The theory of comparative cost advantage is associated with','Alfred Marshal','Adam Smith','David Ricardo','J.B. Say','','','c','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-06-29 19:17:32'),(548,'When the value of a nation’s exports is greater than its imports','a favourable balance of trade exists','an unfavourable balance of payment exists','the net foreign trade is zero','inflation occurs','','','a','','wassce','2005',76,'Admin','2016-11-12 23:29:59','2020-06-29 19:07:49'),(549,'To improve the balance of payments position of West African countries, there must be','removal of barriers to importation of goods and services','increased rate of exportation of goods and services','increased domestic consumption of foreign produced goods','the development of the local market.','','','b','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-06-22 18:00:28'),(550,'The Economic Community of West African State (ECOWAS) is an example of','bilateral trade','economic integration','regional marketing board','international competition','','','b','','wassce','2005',83,'Admin','2016-11-12 23:30:00','2020-06-29 19:55:53'),(551,'One reason for the low agricultural production in West African countries is that','agriculture employs the highest percentage of the labour force','too much money is invested in agriculture','farmers lack the finance and technology required','the farms are too large','','','c','','wassce','2005',78,'Admin','2016-11-12 23:30:00','2020-06-20 11:31:22'),(552,'Mono-product economies are those that','produce one main commodity','produce only raw materials','depend on the export of their raw materials','specialize in agricultural industries','','','a','','wassce','2005',75,'Admin','2016-11-12 23:30:00','2020-06-20 12:20:59'),(553,'.\\n\\n\tAn essential characteristics of a market economy is','government control','producer surplus','consumer surplus','consumer sovereignty','','','d','','wassce','2005',82,'Admin','2016-11-12 23:30:00','2020-06-24 08:34:56'),(554,'ln a capitalist system, goods are produced for those who','want them most but cannot pay for them','can pay for them but do not want them','want them and can also pay for them','are dependent on the labour force','','','c','','wassce','2005',57,'Admin','2016-11-12 23:30:00','2020-06-29 05:31:23'),(555,'An economy which exhibits features of both private and State enterprises is known as a','capitalist economy','mixed economy','communist economy','socialist economy','','','b','','wassce','2005',66,'Admin','2016-11-12 23:30:00','2020-06-24 08:20:27'),(556,'ln calculating the national income of a country x, the cost of both raw materials and the finished products \t\twere included. This is a case of','double counting','price fluctuations','price differentiation','price discrimination','','','a','','wassce','2005',77,'Admin','2016-11-12 23:30:00','2020-06-01 22:09:41'),(557,'Economic development is defined as','outward shift of the production possibility curve','availability of more goods and services','growth accompanied by qualitative change in living standards.','growth in the national income','','','c','','wassce','2005',66,'Admin','2016-11-12 23:30:00','2020-06-20 15:56:59'),(558,'Which of the following is not an objective of the \\n\tOrganization of Petroleum Exporting Countries (OPEC)?','Stabilization of oil prices','Co-ordinating oil prices','Harmonizing oil prices','Stagnation of developed economies.','','','d','','wassce','2005',107,'Admin','2016-11-12 23:30:00','2020-07-02 04:40:44'),(559,'The study of Economics enables individuals to','change jobs.','evade taxes.','accumulate huge wealth','make national decision','','','d','','wassce','2006',71,'Admin','2016-11-12 23:59:28','2020-06-29 19:14:25'),(560,'Most of the problems of economies arise as a result of','demands for scarce resource','increase in  the demand for more goods and services.','the desire of producers to supply more goods and services.','the need to reduce the level of poverty.','','','a','','wassce','2006',71,'Admin','2016-11-12 23:59:29','2020-06-29 19:15:52'),(561,'Which of the following tools of economic analysis is used when data contains more than one category?','Bars charts','Component bar charts','Graphs','Symbolical statement','','','b','','wassce','2006',66,'Admin','2016-11-12 23:59:29','2020-06-29 05:31:23'),(562,'The reward of capital as a factor of production is','rent','wage','interest','commission.','','','c','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-06-26 19:25:30'),(563,'Mining is an example of','tertiary production','primary production','secondary production','advanced production','','','b','','wassce','2006',67,'Admin','2016-11-12 23:59:29','2020-06-29 03:34:17'),(564,'An owner-manager of a firm can also be called','shareholder','an entrepreneur','an employer','a chairman','','','b','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-06-20 15:12:27'),(565,'If the fixed cost of a firm is 800 Naira and its variable cost is \t2,700 Naira while its total output is 100 units, what is the average cost of the firm?','25 Naira','35 Naira','45 Naira','50 Naira','','','b','','wassce','2006',69,'Admin','2016-11-12 23:59:29','2020-06-28 17:00:25'),(566,'Distribution of good and services is hindered by','good road network','efficient storage facilities','too many middlemen.','Adequate market information.','','','c','','wassce','2006',55,'Admin','2016-11-12 23:59:29','2020-06-29 05:31:23'),(567,'A movement along the same demand curve either upwards \tor downwards as a result of changes in price implies','a change in demand','a change in quantity demanded.','an increase in demand','a shift in the demand curve to the right.','','','b','','wassce','2006',77,'Admin','2016-11-12 23:59:29','2020-06-21 11:22:54'),(568,'Middlemen in an economy perform the function of','distribution','exchange','hoarding.','protection.','','','a','','wassce','2006',72,'Admin','2016-11-12 23:59:29','2020-06-29 18:43:48'),(569,'One of the factors affecting geographical distribution of population is','high birth rate','high death rate','encouragement of early marriage in the rural areas','climatic conditions of  the different parts of the country','','','d','','wassce','2006',61,'Admin','2016-11-12 23:59:30','2020-06-23 17:48:06'),(570,'Standardization of products or services is a feature of','large firms','retailers','small firms','wholesalers.','','','a','','wassce','2006',59,'Admin','2016-11-12 23:59:30','2020-06-22 17:07:52'),(571,'The amount of satisfaction obtained from the consumption of a commodity at a particular time is called','marginal utility','diminishing utility','total utility','average utility','','','c','','wassce','2006',65,'Admin','2016-11-12 23:59:30','2020-06-29 18:13:47'),(572,'What are inferior goods? These are goods','that are generally in short supply.','that are no longer in demand','whose demand falls as income increases','whose price falls as demand increases','','','c','','wassce','2006',73,'Admin','2016-11-12 23:59:30','2020-06-29 05:31:23'),(573,'In the analysis of utility theory, the basis of demand is','marginal utility','average utility','fixed utility','diminishing utility','','','a','','wassce','2006',68,'Admin','2016-11-12 23:59:30','2020-06-29 19:39:38'),(574,'In the normal market situation, when the price of a commodity rises, the','demand for the commodity will rise','demand for the commodity will fall','supply of the commodity will be constant','Supply of the commodity will fall.','','','b','','wassce','2006',74,'Admin','2016-11-12 23:59:30','2020-06-24 08:59:27'),(575,'When the quantity of a commodity supplied increases and the quantity demanded decreases there will be','a rise in price','no change in price','price fluctuation','a fall in price.','','','d','','wassce','2006',71,'Admin','2016-11-12 23:59:30','2020-06-28 17:00:18'),(576,'The market price of a commodity is normally determined by the','law of demand','interaction of the forces of demand and supply.','total number of people in the market','total quantity of the commodity in the market.','','','b','','wassce','2006',61,'Admin','2016-11-12 23:59:30','2020-06-21 10:20:59'),(577,'The mechanism which allows the price of a commodity to be fixed either above or below the equilibrium is known as','monopolistic competition','price discrimination','perfect competitive market','price control','','','d','','wassce','2006',61,'Admin','2016-11-12 23:59:30','2020-06-28 16:59:16'),(578,'A debenture holder is entitled to payments in the form of','allowance','interest','salary','donation','','','b','','wassce','2006',68,'Admin','2016-11-12 23:59:30','2020-06-20 10:15:39'),(579,'The main difference between a private and a public \\n\tenterprise is the','amount of profit realized','mode of operation','objective of the business','ownership structure','','','d','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-06-29 12:00:08'),(580,'The total amount of money raised by a company through insurance of shares to the public is','debentures','nominal capital','ordinary shares','paid-up capital','','','b','','wassce','2006',70,'Admin','2016-11-12 23:59:30','2020-06-29 19:38:28'),(581,'Buying and selling of shares is a function performed mostly \tby the','insurance companies','stock exchange','merchant banks','discount houses','','','b','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-06-29 19:40:21'),(582,'Which of the following is not reason for establishing public \tenterprises?','Discouraging investors','Opening up neglected parts of the country','Effective control of a natural monopoly','Rapid economic development','','','a','','wassce','2006',77,'Admin','2016-11-12 23:59:30','2020-06-29 19:39:34'),(583,'For a monopolist, the average revenue (AR) curve is  above','the total cost curve','the same as the marginal cost curve','above the marginal revenue curve','the same at that of the perfect competitor.','','','c','','wassce','2006',72,'Admin','2016-11-12 23:59:30','2020-06-20 10:15:25'),(584,'Advertising expenses would not be necessary under perfect competition because','consumers would have complete knowledge of goods','cost of production would be at the maximum level','.  \\n\tevery firm  would enjoy the benefits of large scale production','incomes of the consumers in the community would be high.','','','a','','wassce','2006',69,'Admin','2016-11-12 23:59:30','2020-06-21 09:17:49'),(585,'The equilibrium level of output of a monopolist is determined at a point where','marginal cost equal average  revenue','marginal cost equals average cost','marginal cost equals marginal  revenue','marginal  revenue equals average cost','','','c','','wassce','2006',70,'Admin','2016-11-12 23:59:30','2020-06-23 15:46:31'),(586,'.\\n\\nWhich of the following is a legal tender in West Africa?','Treasury bill','Share','Credit card','Currency','','','d','','wassce','2006',65,'Admin','2016-11-12 23:59:30','2020-06-29 18:43:58'),(587,'The policy of government to increase the supply of money to meet its own expenditure plans is likely to be','speculative','deflationary','inflationary','contractionary','','','c','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-06-23 18:33:33'),(588,'The tendency for prices to rise while the value of money falls is known as','bills of exchange','inflation','depreciation','deflation.','','','b','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-06-29 19:26:17'),(589,'One way to solve the economic problem of inflation in a country is by increasing the','supply of commodities','supply of currency','salaries of workers','demand for commodities.','','','a','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-06-22 18:07:49'),(590,'The motive for holding money for investing in securities is \treferred to as','transactionary','speculative','accumulation','deflationary','','','b','','wassce','2006',70,'Admin','2016-11-12 23:59:30','2020-06-23 15:46:31'),(591,'A cheque book is issued to customers of a bank operating a','savings account','time deposit account','current account','fixed deposit account','','','c','','wassce','2006',73,'Admin','2016-11-12 23:59:30','2020-06-20 18:14:10'),(592,'Amount proposed for payments of wages and salaries in a budget is regarded as part of','recurrent expenditure','direct investment','recurrent revenue','capital receipt','','','a','','wassce','2006',63,'Admin','2016-11-12 23:59:30','2020-06-22 19:23:48'),(593,'The difference between the Gross National Product (GNP) and the Gross Domestic Product(GDP) is','total interest payment','net income generated internally','total national savings','net income from abroad.','','','d','','wassce','2006',74,'Admin','2016-11-12 23:59:30','2020-06-29 19:07:29'),(594,'Which of the following agricultural systems is mainly for the','cultivation of food crops for family consumption?','Co-operative farming','Commercial farming','Subsistence farming','','','c','','wassce','2006',72,'Admin','2016-11-12 23:59:30','2020-06-24 01:02:32'),(595,'Agriculture is important to the economy of West African countries because it is the source of','power','equipment supply','industrial  input','technological progress','','','c','','wassce','2006',77,'Admin','2016-11-12 23:59:30','2020-06-23 18:43:10'),(596,'The economic system in which the state takes the','economic decisions through details planning is','capitalism','socialism','traditional economic system','','','b','','wassce','2006',69,'Admin','2016-11-12 23:59:30','2020-06-18 18:36:30'),(597,'A mixed economy combines the characteristics of both','planned  and capitalist economics','exchange subsistence economies','subsistence and planned economies','capitalist and exchange economics','','','a','','wassce','2006',65,'Admin','2016-11-12 23:59:30','2020-06-20 18:04:42'),(598,'In a rapidly growing economy, a change in technology which is labour saving is likely to cause','residual unemployment','structure unemployment','disguised unemployment','frictional unemployment','','','d','','wassce','2006',75,'Admin','2016-11-12 23:59:30','2020-06-29 19:17:32'),(599,'Which of the following is a form of tax evasion?','Wrong declaration of earnings','Payments of flat rate tax','constant employment','Low capacity utilization','','','a','','wassce','2006',59,'Admin','2016-11-12 23:59:31','2020-06-22 18:56:26'),(600,'Where the burden of a tax finally rest is called','tax object','tax rate','incidence of taxation','system of taxation.','','','c','','wassce','2006',64,'Admin','2016-11-12 23:59:31','2020-06-29 18:43:58'),(601,'An increase in the quantity of goods and services produced \tin a country which raises her national income is known as','economic development','economic growth','domestic investment','productivity.','','','b','','wassce','2006',66,'Admin','2016-11-12 23:59:31','2020-06-22 19:23:34'),(602,'The formula “index of export prices” / “Index of import prices”   x 100   is used to measure the','volume of trade between countries','direction of international trade','commodity terms of trade','volume of imports','','','a','','wassce','2006',81,'Admin','2016-11-12 23:59:31','2020-06-23 15:51:16'),(603,'Which of the following is an invisible item?','Banking services','Petroleum products','Processed rice','Processed milk','','','a','','wassce','2006',73,'Admin','2016-11-12 23:59:31','2020-06-20 10:33:10'),(604,'In an attempt to correct a deficit balance of payments, a country may decide to increase','domestic production','imports','domestic expenditure','tax on infant industries.','','','a','','wassce','2006',72,'Admin','2016-11-12 23:59:31','2020-06-22 17:35:20'),(605,'Which of the following is an objective of economic integration?','Harmonization of cultural practices','Free movement of persons, goods and services','Payment of high tariffs','Dumping of goods in less developed countries','','','b','','wassce','2006',81,'Admin','2016-11-12 23:59:31','2020-06-23 15:52:02'),(606,'One of the functions of the International Monetary Fund (IMF) is to','devalue the currency of member states','reduce drastically the size of deficit financing of member states','give financial assistance to member states that have temporary balance of payment difficulties','the rapid industrialization process in the less developed nations of the world','','','c','','wassce','2006',68,'Admin','2016-11-12 23:59:31','2020-06-26 16:46:06'),(607,'The full meaning of OPEC is','Oil and Petroleum Exporting Countries','Original Petroleum Exporting Companies','Organization of Petrol Exporting Countries','Organization of Petroleum Exporting Countries','','','d','','wassce','2006',58,'Admin','2016-11-12 23:59:31','2020-06-20 13:07:07'),(608,'The three principal economic units in any system are','trade, industry and banking','workers, consumers and shareholder','households, firms and government','companies, industry and plants','','','c','','wassce','2007',86,'Admin','2016-11-13 15:46:54','2020-06-29 19:26:17'),(609,'The satisfaction derived from the use of a commodity is its','demand','elasticity','wealth','utility','','','d','','wassce','2007',70,'Admin','2016-11-13 15:46:55','2020-06-20 13:07:07'),(610,'The reward which accrues to labour for participating in production is','interest','wage','bonus','profit','','','b','','wassce','2007',68,'Admin','2016-11-13 15:46:55','2020-06-23 15:44:26'),(611,'The Malthusian theory of population does not concern itself with','growth of food production in arithmetical progression','growth of population in geometric progression','positive checks to population growth','development and growth of manpower','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:55','2020-06-29 12:00:08'),(612,'One characteristic of labour is that it is','fixed in demand','fixed in supply','mobile','untrainable','','','c','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-29 06:50:37'),(613,'A country where labour is not sufficient to make proper use of the natural resources is said to have an','active population','optimum population','over-population','under-population','','','d','','wassce','2007',65,'Admin','2016-11-13 15:46:56','2020-06-29 19:07:29'),(614,'When population is classified according to professions, it is called','geographical distribution of population','age distribution of population','sex distribution of population','occupational distribution of population','','','d','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-29 19:38:14'),(615,'What must be added to variable cost to give total cost?','Average total cost','Average variable cost','Fixed cost','Marginal cost','','','c','','wassce','2007',58,'Admin','2016-11-13 15:46:56','2020-06-29 12:00:08'),(616,'Revenue is the','total profit made after sales','amount spent on purchases','amount of goods produced','total money realized from sales.','','','d','','wassce','2007',72,'Admin','2016-11-13 15:46:56','2020-06-24 08:20:15'),(617,'Given that TR is total revenue, then TRn - TR(n-1) can be used to find the','marginal revenue','marginal cost','average cost','average revenue','','','a','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-29 19:15:06'),(618,'The lower the price of a commodity, the greater the quantity demanded. This is based on the assumption that consumers’','income is diminished','income remains the same','utility is diminished','population is high','','','b','','wassce','2007',73,'Admin','2016-11-13 15:46:56','2020-06-29 18:43:58'),(619,'The demand for beans in bags is given by the function Q - 36 + 0.4P = 0. Where P is price in Naira and Q is quantity, find Q when P = 20 Naira.','12 bags','24 bags','28 bags','30 bags','','','c','','wassce','2007',70,'Admin','2016-11-13 15:46:56','2020-06-23 18:01:11'),(620,'If the price of good X rises and the quantity demanded of good Y increases then the two goods X and Y must be','inferior good','substitutes','complements','free goods','','','b','','wassce','2007',60,'Admin','2016-11-13 15:46:56','2020-06-24 08:09:12'),(621,'Use the following  demand schedule to answer question Price (N=) [15, 13]\tQuantity Demanded[60, 70] The percentage change in quantity demanded is','12.7%','15.7%','16.7%','19.7%','','','c','','wassce','2007',70,'Admin','2016-11-13 15:46:56','2020-06-20 16:27:29'),(622,'In a situation where demand is perfectly elastic, imposition of a tax on a commodity to raise its price will result in','consumers increasing their demand for the product','consumers demand for the product remaining unchanged','consumers shifting completely to substitute products','suppliers increases the supply of the product','','','c','','wassce','2007',82,'Admin','2016-11-13 15:46:56','2020-06-21 11:23:07'),(623,'Patents are examples of','natural barriers to entry','legal barriers to entry','illegal barriers to entry','unnatural barriers to entry','','','b','','wassce','2007',60,'Admin','2016-11-13 15:46:56','2020-06-20 18:03:22'),(624,'Which of the following is a characteristic of monopoly?','Many sellers','Homogeneous commodity.','A single seller','Perfect knowledge','','','c','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-06-29 12:00:08'),(625,'When a firm is nationalized','former owners are removed without compensation','it has the right to draw on state funds for capital investment','it must break even within a specified period','workers take control of the firm','','','b','','wassce','2007',53,'Admin','2016-11-13 15:46:56','2020-06-29 03:33:37'),(626,'The practice whereby a business is owned by two or more independent firms is termed','indigenization','joint venture','commercialization','foreign investment','','','b','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-29 19:18:06'),(627,'The main objective of privatizing a government business is to','create additional employment','increase expenditure','source for new funds','increase the level of efficiency','','','d','','wassce','2007',67,'Admin','2016-11-13 15:46:56','2020-06-20 08:02:36'),(628,'The return on investment that is just sufficient to satisfy the owner of a business is called','economic profit','business profit','normal profit','excess profit','','','c','','wassce','2007',65,'Admin','2016-11-13 15:46:56','2020-06-29 12:00:08'),(629,'Which of the following is a middlemen in the chain of distribution?','An entrepreneur','A producer','A banker','A retailer','','','d','','wassce','2007',65,'Admin','2016-11-13 15:46:56','2020-06-20 11:11:44'),(630,'A negative effect of the presence of a large number of middlemen in the distributive network is','greater variety of goods','greater quality of goods','lower price of goods','higher price of goods','','','d','','wassce','2007',73,'Admin','2016-11-13 15:46:56','2020-06-29 19:18:06'),(631,'An example of a producer good is a','tin of milk','hammer','loaf of bread','shirt','','','c','','wassce','2007',61,'Admin','2016-11-13 15:46:56','2020-06-24 10:03:13'),(632,'To promote the development of the agricultural sector, governments of West African countries should','encourage rural-urban drift','discourage foreign investment in agriculture','support the marketing of farm produce','reduces tariff on food import','','','c','','wassce','2007',73,'Admin','2016-11-13 15:46:56','2020-06-29 05:31:23'),(633,'The most important quality of money is that it must be','relatively scarce','generally acceptable','portable','durable','','','b','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-23 17:37:28'),(634,'A certain amount of money is needed for everyday expenditure like buying of goods, transportation and others. This is','transaction demand for money','precautionary demand for money','derived demand for money','speculative demand for money','','','a','','wassce','2007',69,'Admin','2016-11-13 15:46:57','2020-06-19 07:30:51'),(635,'Long-term loans can be secured from','commercial banks','discount houses','development banks','acceptance houses','','','c','','wassce','2007',67,'Admin','2016-11-13 15:46:57','2020-06-29 19:40:25'),(636,'The value of money is generally measured in relation to the','interest rate charged on bank loan','general price level','size of a country’s gold stock','volume of imports','','','b','','wassce','2007',62,'Admin','2016-11-13 15:46:57','2020-06-29 12:00:08'),(637,'Which of the following is true under rapid inflation? People','demand less foreign exchange','set up businesses','to pay their taxes','hardly want to lend money','','','d','','wassce','2007',68,'Admin','2016-11-13 15:46:57','2020-06-18 17:50:02'),(638,'Which of the following financial institutions was originally known as a Building Society?','Development bank','Insurance company','Mortgage bank','Merchant bank','','','c','','wassce','2007',77,'Admin','2016-11-13 15:46:57','2020-06-22 17:35:20'),(639,'A non-bank financial intermediary which is regarded as a pool of risks is the','cooperative society','stock exchange','insurance company','post office','','','c','','wassce','2007',65,'Admin','2016-11-13 15:46:57','2020-06-20 16:05:26'),(640,'A foreign exchange market deals in','treasury bills','currencies','government bonds','commodities','','','b','','wassce','2007',66,'Admin','2016-11-13 15:46:57','2020-06-20 18:04:42'),(641,'Which of the following institutions assists the government in managing the national debt?','Commercial Banks','The Central Bank','The Capital Market','The World Bank','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-06-29 19:39:38'),(642,'If tax takes a larger proportion of the income of people with \tlower income, the tax is','progressive','proportional','regressive','ad-valorem','','','c','','wassce','2007',71,'Admin','2016-11-13 15:46:57','2020-06-22 19:01:23'),(643,'Which of Ike following is an example of direct tax?','Import duties','Income tax','Export duties','Purchase tax','','','b','','wassce','2007',53,'Admin','2016-11-13 15:46:57','2020-06-20 12:44:16'),(644,'Monetary control measures are coordinated by','development banks','merchant banks','commercial banks','the Central banks','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:57','2020-07-02 08:41:05'),(645,'A country whose economy is buoyant is likely to have','a weak currency','devaluation from time to time','a strong currency','balance of payment problem','','','c','','wassce','2007',53,'Admin','2016-11-13 15:46:57','2020-06-29 05:31:23'),(646,'The Net National Product (NNP) is Gross National Product (GNP) less','domestic product','foreign product','depreciation','investment','','','c','','wassce','2007',63,'Admin','2016-11-13 15:46:57','2020-06-20 13:07:07'),(647,'If the population of a country is low and the Gross National Product is high, the per capita income will be','high','low','average','unitary','','','a','','wassce','2007',81,'Admin','2016-11-13 15:46:57','2020-06-23 17:37:28'),(648,'The population of a country in a certain year was fifty million and the per capita income was $2050. What was the national income?','$ 750,000 million','$100,250 million','$ 102,500 million','125,050 million','','','c','','wassce','2007',77,'Admin','2016-11-13 15:46:57','2020-06-26 16:48:35'),(649,'One of the advantages of capitalism is that','consumers are exploited','private initiative is discouraged','efficient allocation of resources is assured','job security is assured','','','c','','wassce','2007',59,'Admin','2016-11-13 15:46:57','2020-06-20 15:03:47'),(650,'Which of the following contributes the highest amount of foreign exchange to the economy of West African nations?','Construction, manufacturing and banking','Shipping, trading and fishing','Power, telecommunications and sports','Extraction, farming and tourism','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-06-23 15:44:26'),(651,'International trade depends on the concept of','marginal cost advantage','comparative cost disadvantage','Comparative cost advantage','absolute cost','','','c','','wassce','2007',70,'Admin','2016-11-13 15:46:57','2020-06-22 18:03:29'),(652,'One advantage of international trade is that','countries depend on each other','it introduces variation in prices','it increases demand for foreign goods','it makes variety of goods available','','','d','','wassce','2007',69,'Admin','2016-11-13 15:46:57','2020-06-18 17:54:36'),(653,'The practice of selling goods overseas and often below the cost of production is known as','retailing','dumping','internal trade','advertising','','','b','','wassce','2007',65,'Admin','2016-11-13 15:46:57','2020-06-29 05:31:23'),(654,'A summary of all the receipts and payments of a country in \tinternational transactions is called','terms of trade','balance of payment','balance of payment adjustment','capital account','','','b','','wassce','2007',67,'Admin','2016-11-13 15:46:57','2020-06-29 12:00:08'),(655,'4Which of the following countries export cocoa?','Liberia and The Gambia','Ghana and Sierra Leone','Nigeria and Ghana','Sierra Leone and Nigeria','','','c','','wassce','2007',68,'Admin','2016-11-13 15:46:57','2020-06-21 11:19:21'),(656,'Which of the following are examples of transfer payments?','Gifts and donations','Rents and rates','Profits and dividends','Internal and external debts','','','a','','wassce','2007',74,'Admin','2016-11-13 15:46:57','2020-06-29 19:18:06'),(657,'ECA means','Economic Commission for Africa','Economic Community of Africa','Exporting Countries of Africa','Economic Conference on Africa','','','a','','wassce','2007',70,'Admin','2016-11-13 15:46:57','2020-06-23 11:16:39');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `english` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=597 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `english` VALUES (1,' He put…………..  eggs in a basket.','white dozen eggs ','a dozen white eggs  ',' a white dozen eggs ','dozen white','most appropriate option','','b','','utme','2003',3788,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(2,'The reason why he was not offered admission was …………… his results could not be found.','that   ','when  ','owing to ','because ','most appropriate option','','a','','utme','2003',3616,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:08'),(3,'Course………….  writers are to reflect local colour',' material\\'s ','materials\\'','materials ','material ','most appropriate option','','b','','utme','2003',3810,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(4,'If you saw the photograph of the man……………………you be able to identify him?','could','would   ','can ','will ','most appropriate option','','b','','utme','2003',3845,'Admin','0000-00-00 00:00:00','2020-06-20 16:10:55'),(5,'As Obande does not know anyone in this city, he hopes that some kind …………  will put him up for the night','man','men ','inhabitants ','individuals','most appropriate option','','a','','utme','2003',3750,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(6,' The doctor asked the patient what………….','The problem is   ',' Is your problem ','The problem was. ',' Is the problem','most appropriate option','','c','','utme','2003',3675,'Admin','0000-00-00 00:00:00','2020-06-23 22:00:37'),(7,'The woman is one? of the …………. of the society.','elitist  ',' elites ','ellte','elitists ','most appropriate option','','c','','utme','2003',3752,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(8,'Three quarters of the people in the village  killed but only half of then \\n          huts……. affected  \\n','were/ were ','was/was','were/ was','was/were ','most appropriate option','','c','','utme','2003',3716,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(9,'The armed robbers went into the house and robbed the three','woman occupants','women\\'s occupants ','woman\\'s occupants','   women occupants.','most appropriate option','','a','','utme','2003',3848,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:04'),(10,' It was a free-for-all and the students were blamed for taking the law','in their own hands ','into their own hands ','into their hands ','in their hands.','most appropriate option','','b','','utme','2003',3726,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(11,'The candidate\\'s charisma should be a..………factor in winning the election. ','determinant ','determinate','determining ','determinable ','most appropriate option','','c','','utme','2003',3767,'Admin','0000-00-00 00:00:00','2020-06-24 02:31:06'),(12,'I can\\'t stand people prying into my private life. \\'Ladi said \\'………… agree Agbenu','Me too ','Likewise myself ','Me neither ','I also ','most appropriate option','','b','','utme','2003',3704,'Admin','0000-00-00 00:00:00','2020-06-24 11:07:22'),(13,' Four weeks ..................  enough for the police to  conclude   their','were',' is ',' are ',' has been','most appropriate option','','b','','utme','2003',3682,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(14,'  It is bad to take………… property without permission. ','someone else\\'s ','someone’s else',' someone\\'s ','someone\\'s else\\'s\\' ','most appropriate option','','b','','utme','2003',3636,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(15,'Classmate……………………….  I haven\\'t seen for years, wrote to me last week.','whose ','which ','that',' whom','most appropriate option','','d','','utme','2003',3715,'Admin','0000-00-00 00:00:00','2020-06-24 02:02:06'),(16,'If you would do me this favour,  I …………..  be very grateful','should',' would ',' shall ','will','most appropriate option','','b','','utme','2003',3690,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:46'),(17,'Ali plays ……….violin with remarkable skill','a    ','the','their ','some ','most appropriate option','','b','','utme','2003',3724,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(18,'1 have the ……… of meeting the President.','privilege  ','privelege ','previlege ','privilege ','most appropriate option','','d','','utme','2003',3689,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(19,'The sergeant spoke to me in a ……………  manner','Coarse','causal     ','coerce    ','course ','most appropriate option','','a','','utme','2003',3732,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(20,'Idakwo ran……………. miss the train','lest he may',' lest ha should','lest he almost   ','lest he will ','most appropriate option','','b','','utme','2003',3805,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(21,'How is the new editor ……………on with hit work','moving','getting','pushing ','going','most appropriate option','','b','','utme','2003',3664,'Admin','0000-00-00 00:00:00','2020-06-23 20:59:18'),(22,'  Be careful not to…………….  this money ','loose  ',' loss ',' lost',' loss','most appropriate option','','b','','utme','2003',3722,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(23,'Nowadays, many graduates are not Will disposed to teaching……………..','are they','aren\\'t they?','do they?    ',' they are?','most appropriate option','','a','','utme','2003',3589,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(24,'Adike ………….. a message from the club regularly.','Receive ',' had received ',' receive',' has received ','most appropriate option','','a','','utme','2003',3690,'Admin','0000-00-00 00:00:00','2020-06-25 15:55:24'),(25,'It is often……. that inflation ……….  from too much money chasing very few goods.    ','said/results','say/result      ','said/result   ','say/ resulted','most appropriate option','','a','','utme','2003',3677,'Admin','0000-00-00 00:00:00','2020-06-18 18:52:11'),(26,'','spot    ','Law   ','North ','naught ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3683,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(27,'','cost    ','won’t    ','hope    ','coast ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3801,'Admin','0000-00-00 00:00:00','2020-07-02 11:04:00'),(28,'','there   ','dear    ','fair         ','bear','choose the option that has a different vowel sound from the others.','','c','','utme','2003',3791,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(29,'','wife','of','off','laugh','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3784,'Admin','0000-00-00 00:00:00','2020-06-24 02:20:57'),(30,'','chef','chief','shoe','ocean','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3805,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(31,'If he went to London, he would see the Queen','He did not go to London and did not see the Queen',' He would like to see the Queen when he goes to London','When he goes to London, he will see the Queen ','He did not see the queen when he went to London.','that best explains the information conveyed ','','c','','utme','2003',3652,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(32,'Ngozi has always considered her father to be an impassioned man ','Her father is a very strict man  ','Her father is a very lively man ','Her father is an emotional man ','Her father is a disciplined man ','that best explains the information conveyed ','','c','','utme','2003',3736,'Admin','0000-00-00 00:00:00','2020-06-28 00:26:33'),(33,'The manager paid us in hard currency  ','We were paid in a strong and stable currency ','We were paid in new notes ','We were paid in new notes','We were paid in foreign currency.','that best explains the information conveyed ','','a','','utme','2003',3747,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(34,'The elders rebuked ','Olu for talking issue with his principal. ','Olu was scolded for acting in collusion with his principal ','Olu was reprimanded for arguing with his principal','Olu was blamed for issuing a statement denying his principal.','that best explains the information conveyed ','','b','','utme','2003',3901,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(35,'In spite of his humble beginning, Audu now throws his weight around ','His noble birth notwithstanding, Audu is a corrupt man ','From his poor background, Audu is now a rich man ','Despite his obvious poverty, Audu is a proud man ','Audu is arrogant despite his simple upbringing .','that best explains the information conveyed ','','d','','utme','2003',3707,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:06'),(36,' <u>Ch</u>alet','chairman','College','champagne','Chemical','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.  ','','c','','utme','2003',3733,'Admin','0000-00-00 00:00:00','2020-06-22 18:03:20'),(37,'Tee<u>th</u>','taught','tank','though','thought',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2003',3752,'Admin','0000-00-00 00:00:00','2020-06-22 21:24:04'),(38,'Co<u>n</u>crete ','anxious ','concern ',' consider ','attend ',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3725,'Admin','0000-00-00 00:00:00','2020-06-20 11:34:46'),(39,'He is well known for his <i>inordinate</i> ambition ','passionate ','sound ','excessive','moderate ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3709,'Admin','0000-00-00 00:00:00','2020-06-28 16:15:50'),(40,'A <i>conservative</i> estimate put the number of missing persons at forty.','an accurate ','An incorrect ','A rough ','Primitive ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3797,'Admin','0000-00-00 00:00:00','2020-06-24 01:31:22'),(41,'Agbenu was <i>ecstatic</i> about her result ','sad','dispassionate ','mad ','pessimistic ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3747,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:17'),(42,'Students could be <i>timid</i>','Pugnacious ','friendly ','bold ','covetous','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3828,'Admin','0000-00-00 00:00:00','2020-06-25 15:50:53'),(43,'The labour leader’s <i>recalcitrant</i> stance was applauded ','flexible ','uncompromising ','well-informed ','stubborn ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3799,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(44,'The company has continued to <i>monopolize</i> the distribution of the products.','regularize ','liberalize ','centralize ','specialize ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3718,'Admin','0000-00-00 00:00:00','2020-06-20 18:01:53'),(45,'The doctor examined the patient <i>painstakingly</i> ','Carefully ','Perfunctorily ','Professionally ','Painfully ','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3677,'Admin','0000-00-00 00:00:00','2020-06-24 11:49:26'),(46,'Toyin is married to an <i>impatient, self-centred man ','a tolerant ','a tolerable','a fretful ','an edgy','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3747,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:35'),(47,'The agency has sworn to deal  with all the <i>apostles</i>  of confederation ','opponents ','apostates ','Proponents ','Protagonists ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3694,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(48,'The members of the congregation were <i>inspired</i> by the sermon ','enthralled ','disenchanted ','disoriented ','bewitched ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3769,'Admin','0000-00-00 00:00:00','2020-06-22 19:23:39'),(49,'<i>Gregarious</i> animals can be found in the zoo.','lonely ','tame ','wild ','various ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3843,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(50,'I am <i>loath</i> to do the assignment ','unwilling ','waiting ','dying ','willing ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3753,'Admin','0000-00-00 00:00:00','2020-06-25 16:33:40'),(51,'Only those who are <i>gullible</i> fall victim to his trickery ','astute ','Courteous ','saucy ','devastated','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3789,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(52,'A cool bath in a hot weather can be truly <i>invigorating</i> ','debilitating ','devastating ','disgusting ','unpalatable','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3669,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(53,'The witness decided to <i>conceal</i> the evidence ','waive ','divulge ','hide','destroy ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3705,'Admin','0000-00-00 00:00:00','2020-06-30 19:49:20'),(54,'The President SPOKE to the press ','Did the Present write to the press?','Did the president speak to the press?','Who spoke to the press?','Are these the pressmen that the President spoke to?','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','a','','utme','2003',3638,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(55,'My MOTHER served rice and fresh fish stew for dinner.','Did your mother serve rice and fresh fish stew for lunch?','Who served rice and fresh fish stew for dinner?','What kind of meal did your mother serve for dinner?','what kind of meal did your mother serve for dinner? ','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','b','','utme','2003',3780,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:30'),(56,'Mark<u>e</u>t  ','mortgage ',' bachelor ',' get ',' enter ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3676,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(57,'c<u>olo</u>nel ',' golden',' girl',' colony ',' goal ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3778,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(58,'t<u>e</u>nd ','caned ',' jeopardy ','turned ',' earned ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3760,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:08'),(59,'The boys knew that a storm was <i>imminent</i>','Impending ','encroaching ','possible ','threatening ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3700,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(60,'The leader has the <i>unstinting</i> support of his party ','cautious ','uninspiring ','unsparing ','laudable ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3668,'Admin','0000-00-00 00:00:00','2020-06-20 18:14:02'),(61,'The <i>essence</i> of governance is to seek the good and well-being of the majority of the people ','characteristics ','importance ','Secret ','Goal','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3637,'Admin','0000-00-00 00:00:00','2020-06-27 17:54:19'),(62,'The carpenter built a <i>commodious</i> wardrobe ','wide ','gigantic ','small ','spacious','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3673,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(63,'The company is to <i>shed</i> three thousand staff this year ','Throw up ','placate ','lay off','demote ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3789,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(64,'A few years ago, nobody would have believed that the economy would <i>turn around </i>','change ','deteriorate ','improve ','stagnate ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3750,'Admin','0000-00-00 00:00:00','2020-06-25 15:31:19'),(65,'The man’s story sounded <i>plausible</i> to his audience ','credible ','entertaining ','fantastic ','credulous ','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3846,'Admin','0000-00-00 00:00:00','2020-06-24 02:00:17'),(66,'Before announcing his retirement, Ochima resolved to <i>settle an account with</i> the bank.','get  back at ','pay back all he owes ','close his account with ','retire his loans from ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3730,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(67,'He shared his room with a person whose behaviour was quite <i>nauseating</i> ','disgusting ','disrespectful ','disagraceful ','discouraging ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3783,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(68,'From what she said, one may <i>infer</i> that she does not like the course','agree ','deduce ','suppose ','realize ','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3751,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(69,'The party supporters <i>vilified</i> the Chairman for the role he played in the crisis that rocked the party ','impeached ','condemned ','challenged ','elected','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3657,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(70,'Publishing as a business venture has become a <i>hot potato</i> in Nigeria. ','unacceptable  ','unpleasant ','expensive                                                              ','profitable','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3661,'Admin','0000-00-00 00:00:00','2020-06-24 02:45:55'),(71,'The <i>cynics</i>  feared that the nation’s nascent democracy would fail','illusionists','pessimists','delinquents','critics','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3653,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(72,'The nurse was in favour of <i>voluntary eutheanasia</i>','a sleeping pill','a major operation','a painless death','a simple operation','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3749,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(73,'There was a <i>glut</i> of oil on the market','an abundance of','an increase in','a variety of','an accumulation of','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3723,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(74,'Typist','refuse  (noun)','superb','propose','rebel (verb)','choose the option that has the same stress pattern as the given word.','','a','','utme','2003',3694,'Admin','0000-00-00 00:00:00','2020-06-22 20:11:37'),(75,'Cement','perfect (adjective)','include','interest','employ(noun)','choose the option that has the same stress pattern as the given word.','','b','','utme','2003',3639,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:16'),(76,'I shall find time for my ……… when I get …… with this difficult assignment.','Pat time /over','pass-time/over','pastime/through','pastime/through','choose the option that best completes the gap(s).','','d','','utme','2004',3685,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(77,'Agbo says he is not afraid of ………','anybody','nothing','nobody','no one','choose the option that best completes the gap(s).','','a','','utme','2004',3611,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(78,'It is …….. responsibility to look after their parents in old age.','theirs’','their','theirs','their’s','choose the option that best completes the gap(s).','','b','','utme','2004',3839,'Admin','0000-00-00 00:00:00','2020-07-02 19:40:21'),(79,'One needs to exemplify or ………. the aspect of the subject being discussed','supply','declare','satisfy','demonstrate','choose the option that best completes the gap(s).','','d','','utme','2004',3874,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(80,'……………his illness, Muhammad could not come to school.','with reference to','referring to','owing to','due to .','choose the option that best completes the gap(s).','','d','','utme','2004',3825,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(81,'After so many trials, the experiment………….','paid up','paid for','paid out','paid off','choose the option that best completes the gap(s).','','d','','utme','2004',3795,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(82,'People dislike Mariam because she is ……………','trickful',' trickish','trickly','tricker','choose the option that best completes the gap(s).','','c','','utme','2004',3768,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(83,'The reporter said that the Honourable speaker………….. impeached ','is to be','might have been','may have being','will have been','choose the option that best completes the gap(s).','','b','','utme','2004',3744,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(84,'Actually, he forgot the one to …………… the job was given.','whom','who','whomever','whoever','choose the option that best completes the gap(s).','','a','','utme','2004',3655,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(85,'You may not have heard the last word on the matter……..','may you have','haven’t you','have you','mayn’t have you?','choose the option that best completes the gap(s).','','c','','utme','2004',3678,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:03'),(86,'All God’s prophets were given the great……….to preach salvation to people.','commission','commition','commission','commission','choose the option that best completes the gap(s).','','d','','utme','2004',3825,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(87,'Ali goes to the stadium regularly, but he …………… to the church for months.','hasn’t been','haven’t been','didn’t go','hadn’t been','choose the option that best completes the gap(s).','','a','','utme','2004',3793,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(88,'Each of the houses…………',' have got',' Have','has','were given a new look.','choose the option that best completes the gap(s).','','c','','utme','2004',3774,'Admin','0000-00-00 00:00:00','2020-06-23 18:57:03'),(89,'The minister addressed the workers to boost their…………',' Morale','morality',' mural',' moral','choose the option that best completes the gap(s).','','a','','utme','2004',3598,'Admin','0000-00-00 00:00:00','2020-06-23 11:21:26'),(90,'I don’t coming home, is he?......... he is isn’t.','Yes','No','won','now','choose the option that best completes the gap(s).','','b','','utme','2004',3756,'Admin','0000-00-00 00:00:00','2020-06-23 20:21:38'),(91,'………..as a federal capital only……….. the last twenty years.','has existed/for','existed/over','was existing/from','is existing/in','choose the option that best completes the gap(s).','','a','','utme','2004',3679,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(92,'No teacher of honour would subject his student to any form of ……..','harassment','Harassment','harassment','harassment','choose the option that best completes the gap(s).','','b','','utme','2004',3686,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(93,'Each producer  is able to place a price on his product by considering its…………','worth','choice','judgement','assessment','choose the option that best completes the gap(s).','','a','','utme','2004',3724,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(94,'The police claim that a number of stolen cars…………. recovered.','has being','is being','has been','have been','choose the option that best completes the gap(s).','','c','','utme','2004',3728,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(95,'The storm………….. Havoc on several buildings in the village.','wreaked','wrecked','made','did','choose the option that best completes the gap(s).','','a','','utme','2004',3689,'Admin','0000-00-00 00:00:00','2020-06-25 16:33:40'),(96,'The chairman refused to shake…………. with the secretary','hand','his hand','hands','his hands','choose the option that best completes the gap(s).','','c','','utme','2004',3723,'Admin','0000-00-00 00:00:00','2020-06-24 02:30:02'),(97,'The poor widow who could not buy the clothes was seen…….her wool into……….yesterday','to spin/yards','spinning/yarn','making/tailoring','to spill/clothes','choose the option that best completes the gap(s).','','b','','utme','2004',3671,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(98,'He not only looked after the children when their parents died, ………..sponsored their education to university.','but also','also he','but he','also','choose the option that best completes the gap(s).','','a','','utme','2004',3764,'Admin','0000-00-00 00:00:00','2020-06-26 10:12:22'),(99,'His supporters railed round him in moments of …………..','criticism','Crisis','acrimony','disillusionment.','choose the option that best completes the gap(s).','','b','','utme','2004',3793,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(100,'The interpreter was wrong because he gave the congregation a ………… translation of the pastor’s statement.','literal','unilateral','literary','lateral','choose the option that best completes the gap(s).','','a','','utme','2004',3694,'Admin','0000-00-00 00:00:00','2020-06-30 09:20:13'),(101,'Ju<u>dge</u>','gear','spinach','pleasure','camouflage','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','d','','utme','2004',3754,'Admin','0000-00-00 00:00:00','2020-07-02 11:29:41'),(102,'caus<u>ed</u>','chanced','frost','released','realized','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','b','','utme','2004',3708,'Admin','0000-00-00 00:00:00','2020-06-20 09:33:03'),(103,'mis<u>chi</u>ef ','Christmas','ritual','Brochure','Champagne','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','a','','utme','2004',3576,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(104,'Everyone was ready to play the evil’s advocate in the impeachment controversy.','everyone was willing to speak against the impeachment to encourage discussion on it.','everyone was willing to defend an unpopular point of view concerning the impeachment.','everyone was willing to fight for the defenceless citizens no matter the consequences.','everyone was willing to be an evil genius in the controversy','that best explains the information conveyed in the sentence.','','a','','utme','2004',3612,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(105,'Adamu’s father is a key figure in that ministry','The ministry trusts Adamu’s father as a central figure','Adamu’s father is a figurehead in the ministry','Adamu’s father’s position is essential in the ministry.','Adamu’s father keeps the key to the ministry.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3799,'Admin','0000-00-00 00:00:00','2020-06-24 02:46:11'),(106,'The government warns that drink-driving is punishable under the law.','a drunkard driving can be punished','driving while drunk is an offence','driving while drinking is an offence','drinking and driving is an offence.','that best explains the information conveyed in the sentence.','','a','','utme','2004',3657,'Admin','0000-00-00 00:00:00','2020-07-02 10:49:36'),(107,'In many countries, democracy is ostensibly being practiced.','democracy is indeed being practiced  in many countries','many countries have effective democracy.','many countries have democracy in practice','democracy is apparently practice in many countries.','that best explains the information conveyed in the sentence.','','d','','utme','2004',3820,'Admin','0000-00-00 00:00:00','2020-06-24 00:28:06'),(108,'The investigators stated clearly that they had reached a dead end in their scrutiny of suspects in the murder case.','the investigators did not know what to do with the suspect’s murder','The investigators had evidence to sentence the suspects to death in the end.','there was no further progress in the investigation of the murder suspects.','the end had come for the suspects in the murder case.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3691,'Admin','0000-00-00 00:00:00','2020-06-23 19:37:05'),(109,'',' Secondment','Orthopaedic',' oriental','photographic','choose the option that has a different stress pattern from the others.','','a','','utme','2004',3700,'Admin','0000-00-00 00:00:00','2020-06-22 19:01:14'),(110,'','ratify',' famous',' result',' taxi','choose the option that has a different stress pattern from the others.','','c','','utme','2004',3724,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(111,'Sailors are unusually <i>dauntless</i> in their exploits','selfless','ruthless','excited','frightened','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3674,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(112,'The <i>potency</i> of the drug has been acknowledged.','action','loss','inefficacy','power','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3579,'Admin','0000-00-00 00:00:00','2020-06-19 18:20:13'),(113,'The dictator wanted <i>tractable</i> men in his cabinet.','reliable','intelligent ','tough','unruly','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3707,'Admin','0000-00-00 00:00:00','2020-06-28 16:15:50'),(114,'After the war, the victors became increasingly <i>vindictive</i>','friendly','vociferous','arrogant','treacherous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3861,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(115,'The ship was <i>imperiled</i> by high winds','piloted','destroyed','deceived','saved','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3741,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(116,'Beauty queens sometime wear <i>outlandish</i>  dresses.','beautiful','flashy','familiar','attractive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3680,'Admin','0000-00-00 00:00:00','2020-06-24 00:31:00'),(117,'The journalist said he was working <i>freelance</i>','tirelessly','satisfactorily','without a pay','dependently','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3714,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(118,'My father’s presentation was rather <i>causal</i>','formal','vital','informal ','divisive','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3694,'Admin','0000-00-00 00:00:00','2020-06-22 20:11:37'),(119,'The flying Eagles put up a <i>plucky</i> defence against their opponents.','strong','weak','careless','tactful','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3718,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(120,'The man who scare the girl was a bit <i>deranged</i>','sane ','amorous','crazy','dangerous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3650,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(121,'The injured man is determined to <i>get back</i> at his assailant.','attack','identify','visit','forgive','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3804,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(122,'The player <i>writhed in pain</i> after the fall.','remained still','cried out','walked out','shook violently','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3781,'Admin','0000-00-00 00:00:00','2020-06-23 15:44:31'),(123,'The noise of the fan <i>unnerved</i>  the star player.','refreshed','confused','helped','calmed','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3756,'Admin','0000-00-00 00:00:00','2020-07-02 11:36:17'),(124,'The team got <i>an ecstatic</i> welcome from the crowd.','An unexpected','a joyous','a cold','a thunderous','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3695,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(125,'We found a <i>shady</i> place for the display.','an open','an unsafe','a stuffy','an enclosed','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3637,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(126,'expostulate','exposTUlate','expostuLATE','EXpostulate','exPOStulate','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2004',3616,'Admin','0000-00-00 00:00:00','2020-07-02 11:29:22'),(127,'sufficiency','sufFIciency','SUFficiency','sufficienCY','suffiCIENcy','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2004',3786,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(128,'The town was in such a <i>turmoil</i> that the dance was called off.','mourning state','rainy state','state of darkness','state of confusion','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3741,'Admin','0000-00-00 00:00:00','2020-06-23 21:13:38'),(129,'The festivals create in the people a feeling of price in the cultural <i>heritage</i>  ','history','heirloom','legacy','possession','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3657,'Admin','0000-00-00 00:00:00','2020-06-24 01:21:07'),(130,'<i>Funnily enough,</i> the priest prayed for the robber who shot him.','Timidly','Unexpectedly','Disappointingly','Fearlessly.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3574,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(131,'The presence of the captain makes the sailors <i>ill at ease</i>.','uncomfortable ','sickly ','impatient','easily ill','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3665,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(132,'The press describe the efforts of the government in <i>pejorative</i> terms.','critical','contemptible','palpable','superlative','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3662,'Admin','0000-00-00 00:00:00','2020-06-24 02:31:38'),(133,'Okonkwo manages his household <i>with a heavy hand.</i>','like a powerful dictator','using the cane on every occasion','without tolerating weakness','like a heavy weight champion.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3799,'Admin','0000-00-00 00:00:00','2020-06-22 21:24:04'),(134,'The school’s badge is the <i>insignia</i> of office for all the prefects in the school.','Power','symbol','seal','recognition','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3682,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(135,'Ibro shows enough <i>liberality</i>  with his meager income.','generosity','frugality','prodigality','insensitivity','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3678,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(136,'It is a <i>misnomer</i> to call three thousand naira a living wage.','an incontrovertible assertion','an appropriate term','a wrong description','a mishmash','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3756,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(137,'His plans <i>boomeranged</i> on him','bounce','fell','catapulted','backfired','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3703,'Admin','0000-00-00 00:00:00','2020-06-23 20:19:13'),(138,'The manager’s knowledge of the strike is of <i>the utmost</i>  importance.','standard','genuine','paramount','basic','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3665,'Admin','0000-00-00 00:00:00','2020-06-18 18:17:39'),(139,'There has been a <i>downturn</i> in the affairs of the company.','a massive increase','little progress','a turn-around','a decline','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3664,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(140,'The <i>mottled</i> skin of a person with HIV indicates an advance stage  of its development.','Brown ','spotted','scaly','pimply','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3744,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(141,'In spite of constant financial support from his father, Udenyi treats his studies with considerable <i>levity</i>.','seriousness','enthusiasm ','wastefulness','lassitude','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3786,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(142,'The prosecutor was fully able to <i>substantiate</i> the charge.','expatiate on','prove','dismiss','weaken','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3755,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(143,'The teacher wants MY pen.','Does the teacher want his pen?','What does the teacher want?','Does the teacher want your ruler?','Who wants my pen?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','a','','utme','2004',3755,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(144,'The student BOUGHT the book.','Who bought the book?','Did the student steal the book?','What did the student buy?','How will the student get the book?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','b','','utme','2004',3762,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(145,'n<u>i</u>ne','pint','gill','pin','click','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2004',3694,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:06'),(146,'b<u>ea</u>r','beer','steer','rare','fear','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','d','','utme','2004',3708,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(147,'',' Circulation','eleven',' impossible','criticism','choose the option that has the stress on the first syllable.','','d','','utme','2004',3780,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(148,'','bachelor','condemn',' afternoon','intact ','choose the option that has the stress on the first syllable.','','a','','utme','2004',3819,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:04'),(149,'',' foul','tout','owl','foe','choose the option that has a different vowel sound from the others.','','d','','utme','2004',3783,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(150,'','alter',' water',' pot','hall','choose the option that has a different vowel sound from the others.','','c','','utme','2004',3672,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(151,'If the rain hadn’t fallen, we wouldn’t have missed the match.','The rain is falling, so we will miss the match.','The rain fell, so we didn’t watch the match','The rain fell, so we watched the match','The rain didn’t fall, so we didn’t watch the match.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3839,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(152,'The class was tired of the new boy jawing away all the time.','He bit off people’s jaws','He was always chewing in the class.','He was always making trouble for the class','He talked continuously in the class','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3757,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(153,'The new Headmaster hoped that his men would pull together','He expected that the men would cooperate with him','He thought that the men would compose themselves at work','He was certain that they would resign en masse','He was certain that their condition would improve under him.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3797,'Admin','0000-00-00 00:00:00','2020-06-22 18:56:17'),(154,'If the trader paid in full, his order was not pruned down.','The trader who made full payment did not have his order reduced','The trader who made some payment did not have his order delayed.','Unless the trader paid in full his order would be rejected.','As the trader did not increase his order, he did not need to pay in full','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3754,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(155,'The men were not pawns in someone else’s political game.','The action they executed was their idea','The men used someone else’s plain','They were used by someone’s political game','They love playing political games','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3823,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(156,'The crisis ended as suddenly as it began','The crisis ha suddenly as it began','The crisis will not end suddenly','The crisis stopped almost immediately','The crisis will stop immediately.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3771,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(157,'One thing I will not be complaining about in my new job is a lack of excitement','The job is bad  ','The job is exiting','The job is not too exciting','The job has been previously done','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3747,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(158,'The Governor parried all the questions put to him by the journalist.','The Governor answered all the questions brilliantly','The Governor evaded all the questions','The Governor failed all the questions','The Governor mastered all the questions','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3799,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(159,'if I visited England, I might go to Manchester City ','When I go to England, I could go to Manchester City','Whenever I visit England, I must go to Manchester City','I did not go to England and could not go to Manchester City','I could not visit Manchester City because I did not want to go to England.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3841,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(160,'The man puts his foot down whenever he is convince of his action','He desires to assert his will in the situation','He makes his mark wherever he goes','His attitude demonstrates someone who likes  to oppress others around him','He demonstrates firmness of character','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3719,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(161,'The teacher recounted two events that were <i>analogous</i>  with  each other','similar with','Advantageous to','distant from','different from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3853,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(162,'The Principal was filled with <i>scorn</i>  when we gave  our reason for coming late','contempt','sympathy ','anger','pity','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3858,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(163,'After fifty years, he could not find anyone who was <i>contemporary</i> with him at college','strange to','friendly with','belonged to','contented against','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3760,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(164,'Idris gives me a <i>sour</i> look every time I pass by him','bad','satisfactory','friendly','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3789,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(165,'The officer was given an <i>invidious</i> task','vivid','cruel','pleasant','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3838,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(166,'The views of the plateau are in stark contrast to the <i>workaday</i> cottages below','ordinary an uninteresting','beautiful an interesting','comfortable an fascinating','ugly an unfascinating','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3742,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(167,'The President can afford to dispense with some of his <i>henchmen</i>','detractors','body guards','sycophants','advisers','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3832,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(168,'Asabe bought a <i>glossy</i>  pair of shoes ','smooth and shiny','rough an dull','smooth and shining','rough an gummy','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3927,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(169,'Manu is hard to convince because he is an <i>opinionated</i>  person','an objective','an imperative','a subjective','a discursive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3806,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(170,'Some people consider the leather uphoistery and thick rugs a bit <i>sumptuous</i>  ','expensive','desirable','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3708,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(171,'The dramatist provided as satisfactory <i>denouement</i>  to the play','audition','climax','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3849,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(172,'Many Nigerians are <i>wary</i> of night journeys','worried about','unscarred of','satisfied with','troubled about','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3765,'Admin','0000-00-00 00:00:00','2020-06-20 18:04:59'),(173,'The proprietor accuse Uche of silently<i> acquiescing</i>  to the students’ demands','submitting to','adjusting','compromising on','resisting','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3875,'Admin','0000-00-00 00:00:00','2020-06-23 21:51:50'),(174,'No wonder Sikemi later became a detective; she has been very <i>observant </i>','curious','perceptive','inductive','inquisitive','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3816,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(175,'Nigeria has been playing a <i>vital role</i> in the political an economic development of Africa','creditable','crucial','respectable','laudable','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3711,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(176,'Emeka’s painting was <i>so realistic</i>  that it could almost have been a photograph','picture square','concrete','lively','authentic','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3867,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(177,'<i>Courteously</i>, Ade stood back to let his teacher go first through the door','patiently','politely','carefully','calmly','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3807,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(178,'Many people use to lie in <i>poverty</i>','instability','want','difficult','the slums','choose the option nearest in meaning to the word or phrase  in italics ','','c','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(179,'<i>Accountability</i> is certainly a desirable quality in a politician','respectability','responsibility','courage','Diligence','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3785,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(180,'The <i>common</i> practice among some media practitioners is to be sensational in their reporting','prevalent','rampant','ordinary','cogent','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3791,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(181,'That <i>fateful</i> decision change the company’s outlook in many ways.','wonderful','uncontrollable','disastrous','unsuccessful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3866,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(182,'The accident victim received a <i>superficial</i> wound from the crash','a serious','a painless','an internal','an external','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3800,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(183,'The boxer <i>fizzled</i> out just in the sixth round','knocked out his opponent','showed off his talents','became tire out fought on spiritedly','surrendered rather disappointingly','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3727,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(184,'The manager describe Mfon as a man of vehement <i>character</i>','weak an uninterested','strong an insistent','troublesome an noisy','clever and helpful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3727,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(185,'Obi’s dog is old but still <i>lively</i>','attractive','howling','barking','frisky','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3804,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(186,'His <i>taciturnity</i> amaze everyone in one court during the legal tussle','obliviousness','reticence','sensibility ','pervasiveness','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3841,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(187,'The greatness of the creator of the universe is always <i>inexpressible</i> to many adherents of certain faiths','inevitable','wonderful','unbearable','ineffable','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3787,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(188,'We <i>made a pile</i> in the business deal','lost a lot of money','earned a lot of money','broke even        ','cut corners','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3737,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(189,'Yesterday, my mother asked me.... ',' If I am tired? ','are you tired?',' whether was I tired?','If I was tired','choose the option that best completes the gap(s)','','d','','utme','2005',3787,'Admin','0000-00-00 00:00:00','2020-06-22 18:00:19'),(190,'The Bank Manager assured us that there was nothing to worry about','as regard to the loan ','with regards to the loan','in regard of the loan  ','with regard to the loan','choose the option that best completes the gap(s)','','b','','utme','2005',3875,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(191,'The first prize was','a carved wooden, attractive ','a wooden attractive carved   ',' an attractive carved wooden   ','a carved attractive wooden tray ','choose the option that best completes the gap(s)','','c','','utme','2005',3843,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(192,'Tsadu always cautions that difficult jobs should be done','step from step ','step by step','steps after steps    ','steps by steps','choose the option that best completes the gap(s)','','b','','utme','2005',3856,'Admin','0000-00-00 00:00:00','2020-06-28 16:15:50'),(193,'I was often angry …… Oche since he differed…   me often','with/to ','about/with   ','against/from','with/with','choose the option that best completes the gap(s)','','d','','utme','2005',3734,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:03'),(194,'I am writing to you for ……..  reasons','concerned ','several','plenty ','myriad of','choose the option that best completes the gap(s)','','b','','utme','2005',3897,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(195,'As we sat ………the silence, my eyes……..  the room','under/looked  ','over/surrounded ',' in/roamed',' along/observed','choose the option that best completes the gap(s)','','c','','utme','2005',3771,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(196,'Is it true that Okoro……..  when the gates were closed?','had returned','would return  ','should return    ','would have returned','choose the option that best completes the gap(s)','','a','','utme','2005',3872,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(197,'The public library has stopped………. books to readers','borrowing','lending ','renting ','loaning','choose the option that best completes the gap(s)','','a','','utme','2005',3693,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(198,'We won\\'t leave until it ……..  Raining','will stop ','stopped','stops    ','has stopped','choose the option that best completes the gap(s)','','c','','utme','2005',3828,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(199,'The …………   event marked the beginning of a new life for the entire cabinet','historical  ','historicity of the','historic ','history of the','choose the option that best completes the gap(s)','','c','','utme','2005',3747,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(200,'The train ………. before I arrived','was leaving   ','has left','had left   ','would leave ','choose the option that best completes the gap(s)','','c','','utme','2005',3739,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(201,'You can travel on your own ……….. ?','isn\\'t it','can\\'t you   ','won\\'t you  ','shan\\'t you','choose the option that best completes the gap(s)','','b','','utme','2005',3751,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(202,'The man is refurbishing the flat with a view to ……. it.','sell   ','selling ','have sold ','be selling  ','choose the option that best completes the gap(s)','','d','','utme','2005',3664,'Admin','0000-00-00 00:00:00','2020-06-23 21:13:22'),(203,'The Secretary-General was shocked at the number of…….','child\\'s soldiers   ','childish soldiers  ','children soldiers ','child soldiers','choose the option that best completes the gap(s)','','d','','utme','2005',3768,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(204,'In spite of Shade\\'s good looks, her hair is always………','unkept','unkempt   ','unwashed','uncared for','choose the option that best completes the gap(s)','','b','','utme','2005',3775,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(205,'By the end of the football match today, we ……. the best player','could have known  ','might have known','will have known ','would have known ','choose the option that best completes the gap(s)','','d','','utme','2005',3853,'Admin','0000-00-00 00:00:00','2020-06-27 17:54:19'),(206,'It is African for a younger person to show……..to elders','understanding ','indifference ','deference','satisfaction ','choose the option that best completes the gap(s)','','c','','utme','2005',3737,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(207,'A nursery rhyme is used to teach pupils how to spell the word','hipoppotemus','hippoppotemus','hipoppotamus ','hippopotamus','choose the option that best completes the gap(s)','','d','','utme','2005',3688,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(208,'b<u>ee</u>r','bear',' pear ',' fair',' pier','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','d','','utme','2005',3746,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(209,'g<u>uar</u>d','gourd','guide','argue','chat','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','c','','utme','2005',3863,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(210,'l<u>u</u>ck','lock','lack','brother','turn','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','a','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(211,'fi<u>l</u>m','salt','walk','pslam','chalk','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','a','','utme','2005',3863,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(212,'heal<u>th</u>y    ','father','path','they','that','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2005',3763,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(213,'E<u>n</u>glish','single','impugn','ink','orange','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2005',3795,'Admin','0000-00-00 00:00:00','2020-06-28 16:15:50'),(214,'jurisprudence','JUrisprudence','juRISprudence',' jurisPRUdence','jurispruDENCE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3718,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(215,'suburbanite','SUburbanite','suBURbanite','  suburBAnite','suburbaNITE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3812,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(216,'departmentalize','departMENtalize         ','dePARTmentalize     ','DEpartmentalize','departmenTAIize','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','d','','utme','2005',3756,'Admin','0000-00-00 00:00:00','2020-06-28 16:47:49'),(217,'refuse(noun)','reform   ','intact   ','obscure','phantom','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3761,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:03'),(218,'downtrodden','downgrading','prescribing','functional','internal','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3907,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(219,'','interpreter',' remarkable','  impossible ','criticism','choose the option that has a different stress pattern from the others','','a','','utme','2005',3890,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(220,'','  impound','canoe','  subject(verb)',' knowledge','choose the option that has a different stress pattern from the others','','d','','utme','2005',3775,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(221,'Your mother CAN cook the meal',' Who will cook the meal?','Can my father cook the meal?','Isn\\'t my mother able to cook the meal7','What can my mother do?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','c','','utme','2005',3834,'Admin','0000-00-00 00:00:00','2020-06-28 18:33:34'),(222,'The EAGLES won the match','Did the Eagles lose the match?','Who won the match?','What did the Eagles win?','Did the Eagles win the match?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','b','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(223,'The police claim that a number of stolen cars…… recovered ','have been ','has been  ','has being',' have being ','choose the option that best completes the gap(s).','','b','','utme','2006',3775,'Admin','0000-00-00 00:00:00','2020-06-24 00:44:19'),(224,'     ………….  been there to look for her several times without success.','He\\'ll','He’s  ','Is he ','He is','choose the option that best completes the gap(s).','','b','','utme','2006',3693,'Admin','0000-00-00 00:00:00','2020-06-30 09:36:59'),(225,' Until he lost the election, Agbo…………… to be the Student Union president.','had been hoping ','has been hoping   ','would have hoped   ',' has hoped ','choose the option that best completes the gap(s).','','b','','utme','2006',3809,'Admin','0000-00-00 00:00:00','2020-06-24 04:44:01'),(226,'The old man was rushed to hospital when his blood  pressure dropped to a ……..  level','dangerously lowly','dangerous lowly ',' dangerously low',' dangerous low','choose the option that best completes the gap(s).','','c','','utme','2006',3692,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(227,'If he ……… for admission, I am sure he would succeed','will apply ','applied ','had applied ','has applied','choose the option that best completes the gap(s).','','c','','utme','2006',3620,'Admin','0000-00-00 00:00:00','2020-06-20 18:05:17'),(228,'The ……….   robber showed no mercy during the attack. ','loquacious ','senseless ','ruthless ','benevolent','choose the option that best completes the gap(s).','','c','','utme','2006',3869,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:04'),(229,'Did you have ……… when you went to visit the medical doctor? ','diarrhea ','diarrhea','diarhoea  ','diarrhea ','choose the option that best completes the gap(s).','','a','','utme','2006',3695,'Admin','0000-00-00 00:00:00','2020-06-26 00:04:04'),(230,'Your performance will improve if you…….  Hard','are practicing ','practical ','would practice ','practise','choose the option that best completes the gap(s).','','b','','utme','2006',3700,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(231,'The brave hunter killed the ………… in the forest ','big spitting cobra black','Black big spitting cobra ','big black spitting cobra ','big spitting black cobra ','choose the option that best completes the gap(s).','','c','','utme','2006',3655,'Admin','0000-00-00 00:00:00','2020-06-21 08:20:12'),(232,'He wrote to you,……….  ?','hadn’t he ','wouldn’t  he ','didn’t he','hasn’t he','choose the option that best completes the gap(s).','','c','','utme','2006',3694,'Admin','0000-00-00 00:00:00','2020-06-24 01:58:42'),(233,'The clubs were not…….. on a solid ethical base ','funded','found ','created ','founded ','choose the option that best completes the gap(s).','','d','','utme','2006',3682,'Admin','0000-00-00 00:00:00','2020-06-28 18:34:03'),(234,'I watched him as he……  the hole','dug ','digs','is digging ','dugged','choose the option that best completes the gap(s).','','a','','utme','2006',3618,'Admin','0000-00-00 00:00:00','2020-06-24 01:21:27'),(235,'His father hardly misses the news because he goes about with his………..  Radio','pointable ','potable ','potable','portable','choose the option that best completes the gap(s).','','d','','utme','2006',3724,'Admin','0000-00-00 00:00:00','2020-06-24 00:43:35'),(236,'The investigation Commission has treated all the …… submitted to it by the warring factions','protests ','petitions ','applications','enquires ','choose the option that best completes the gap(s).','','b','','utme','2006',3701,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(237,'Olu brought his clothes and those of his………..','Senior brother’s','elder brothers','elder brother’s ','senior brother.','choose the option that best completes the gap(s).','','c','','utme','2006',3719,'Admin','0000-00-00 00:00:00','2020-06-20 16:07:36'),(238,'Our neigbour was attracted by the ………. from my mother’s cooking ','flavour','stench','scent','aroma ','choose the option that best completes the gap(s).','','d','','utme','2006',3749,'Admin','0000-00-00 00:00:00','2020-06-20 18:05:15'),(239,'Everybody is allowed to ………. his views on state matters ','Air ','hear ','show ','share ','choose the option that best completes the gap(s).','','a','','utme','2006',3810,'Admin','0000-00-00 00:00:00','2020-06-22 17:40:09'),(240,'Despite all preparations, the wedding did not …..','come along ','come by','come on ','come off','choose the option that best completes the gap(s).','','d','','utme','2006',3722,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(241,'For beating ……. his course mate, Agbaji was……… from the university.','up/rusticated ','on/expelled','at/removed ','away/sent out ','choose the option that best completes the gap(s).','','a','','utme','2006',3740,'Admin','0000-00-00 00:00:00','2020-06-24 01:41:45'),(242,'We have been living peacefully here but……….. hear rumours of war.','again ','slowly','occasionally ','eventually','choose the option that best completes the gap(s).','','c','','utme','2006',3792,'Admin','0000-00-00 00:00:00','2020-06-23 19:37:05'),(243,'Genealogy ','GeneaLOGY','geneAlogy','geNEalogy ','GEnealogy ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','b ','','utme','2006',3745,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(244,'Catholicism ','caTHOlicism ','catholiCism','CAtholicism ','cathoLIcism ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2006',3678,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(245,'','ability ','Registration ',' quadruplicate ','revivalist ','choose the option that has a different stress pattern from the others. ','','a','','utme','2006',3775,'Admin','0000-00-00 00:00:00','2020-06-24 00:30:46'),(246,'','competent ','represent ',' syllabus ','quality ','choose the option that has a different stress pattern from the others. ','','b','','utme','2006',3750,'Admin','0000-00-00 00:00:00','2020-06-24 01:45:08'),(247,'apparent ','arrested ','telephone ','paragraph ','appetite ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3595,'Admin','0000-00-00 00:00:00','2020-06-23 13:00:38'),(248,'Unfair ','insight ','towards ','first-class','instant ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3811,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(249,'Dovetail ','proviso ','simplicity ','jargon ','psychiatry ','choose the option that has the same stress pattern as the given word.','','a','','utme','2006',3879,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(250,'',' Insult (noun)','prepare ',' provoke','pronounce ','choose the option that has the stress on the first syllable.','','a','','utme','2006',3700,'Admin','0000-00-00 00:00:00','2020-06-22 17:54:43'),(251,'','Frequent (verb)','mature ','madam','convict (verb)','choose the option that has the stress on the first syllable.','','c','','utme','2006',3657,'Admin','0000-00-00 00:00:00','2020-06-24 02:10:42'),(252,'In our college, the regulations concerning resists are a grey area','The regulations have just been revised','The regulations have often been ignored','The regulations are perfectly clear','The regulations are not very clear.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3721,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(253,'Ogiri takes after his father, he fawns upon anyone with influence.','Like his father, Ogiri likes to flatter people with influence in society','Like his father, Ogiri hates influential people','Ogiri. who always follows his father, tries to act like an influential man','Ogiri, who looks like his father, follows rich and influential people about','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3754,'Admin','0000-00-00 00:00:00','2020-06-22 20:27:47'),(254,'You are to write a report and give it to the security office','After writing your report, give it to the security office','You are writing a report, as the security office directed','The report you are writing should be given to the security office','You have been ordered to write a report, which you wilt give to the security office ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3683,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(255,'After the war the victors became Increasingly vindictive ','Vengeful attacks were Incessantly carried out on those who lost the war ','  Friendly measures were taken to heal the wounds','Repressive measures were taken against those who lost the war','Those who won the war became treacherous ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:06'),(256,'The prefect reeled off the names of all the students who Drake the library law.','The prefect gave a disjointed list of the students in the law library.','  The prefect omitted the names of the students who broke into the law library ','The prefect submitted a complete list of the students who stole library books','The prefect gave an accurate list of the students who disobeyed library regulations.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3603,'Admin','0000-00-00 00:00:00','2020-06-17 12:40:22'),(257,'1 owe you far less than you owe me','My debt to you is greater than yours to me','Your debt is not much greater than mine','What we owe each other Is approximately the same','I owe you something, but you owe me much more','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3679,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(258,'The dispute over land acquisition has now come a head','The problem has reached crisis proportions ','The problem has now been referred to the headquarters ','Because of the dispute, land acquisition has now been halted ','The problem has now been solved ','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3689,'Admin','0000-00-00 00:00:00','2020-06-23 08:55:34'),(259,'He has hardly spoken when the bell rang ','He found it difficult to speak, and then the bell rang','When the bell rang, he was still speaking ','The bell rang very soon after he spoke','He spoke in a harsh manner and the bell rang ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3665,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(260,'I think she takes her guardian’s support for granted ','Her guardian has been helping her for a long time, and she is very grateful to him. ','She wants her guardian to grant her more support.','She thinks her guardian will no longer support her as he has been doing.',' Her guardian has been helping her for a long time, but she does not show enough gratitude. ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3643,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(261,'The class has fallen in with the teacher\\'s plans','The class has ignored the plans','The class has rejected the plans',' The class has accepted the plans','The class has modified the plans','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3805,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(262,'The move to expel the chairman was <i>sanctioned</i> by members of the party       ','unleashed  ','opposed ','supported',' initiated','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3724,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:04'),(263,'Because Jamiu is so <i>easily offended,</i> he was not considered for the post of headboy','Irritable    ','stubborn   ','troublesome ','docile','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3718,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(264,'The witness provided a <i>monstrous</i> account of the event','supportive  ','tragic','shocking ','verbatim','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3682,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(265,'Adamu is rather <i>meddlesome</i> in dealing with his friends','impertinent ','intimidating ','quarrelsome',' uncaring','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3504,'Admin','0000-00-00 00:00:00','2020-06-30 09:20:53'),(266,'The commander said that the battle would be sustained, total and <i>relentless</i>','continuous ','brutal   ','fierce ','innocuous','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3732,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:04'),(267,'The government has announced its <i>preparedness for</i> the scheme','determination ','regret ','pleasure ','readiness','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3639,'Admin','0000-00-00 00:00:00','2020-06-23 12:42:44'),(268,'The chairman advised the participants to follow <i>convention</i> in stating their points.','eloquence ','advice ','prudence ','tradition','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3671,'Admin','0000-00-00 00:00:00','2020-06-23 21:14:40'),(269,'His discovery of the vaccine became a <i>quantum leap</i> in the search for a scientific cure for the illness','victorious battle ','slow but steady step',' great improvement   ','fast but sure step','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3659,'Admin','0000-00-00 00:00:00','2020-06-24 08:56:15'),(270,'After the meeting, I read a <i>leer</i> on his face as he looked at the woman.   ','satisfying meaning ','bad look ','pleasant disposition ','poor smile','choose the option nearest in meaning to the word or phrase in italics','','b','','utme','2006',3743,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(271,'His loss suddenly became <i>redeemable</i> ','Incurable  ','exclusive','recoverable ','repulsive','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3701,'Admin','0000-00-00 00:00:00','2020-06-24 07:35:16'),(272,'The plan has gone <i>awry</i>','wide   ','wrong   ','well    ',' wild','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3709,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(273,'The judge emphasized his <i>morbid</i> desire in his judgement','inordinate ','uncritical ','ravenous ',' Unpleasant','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3689,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(274,'77. The recommended novel has a <i>convoluted</i> theme',' a simple ','an attractive ','a disgusting ','a complicated ','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3586,'Admin','0000-00-00 00:00:00','2020-06-22 19:01:14'),(275,'The party men <i>reveled</i> all night when the election results were announced.','Celebrated ','mourned','fought ','discussed ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3628,'Admin','0000-00-00 00:00:00','2020-06-22 17:42:19'),(276,'He is <i>prolific</i>  writer ','a very productive','a well-known','a clever ','an influential ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3776,'Admin','0000-00-00 00:00:00','2020-07-02 14:32:13'),(277,'h<u>ur</u>t','hut ','girl ','hate   ','hot','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3695,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(278,'c<u>o</u>ck','cop   ','cope ','cork ','cup','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3647,'Admin','0000-00-00 00:00:00','2020-06-24 02:26:33'),(279,'s<u>ay</u>s','fierce  ','dam','wet','rain','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','c','','utme','2006',3769,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(280,'c<u>h</u>aracter','unique   ','charade   ','arch   ','church ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3816,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(281,'  bush<u>es</u>','shapes ','shoes  ','rapes   ','rakes','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3744,'Admin','0000-00-00 00:00:00','2020-06-20 16:25:58'),(282,'gara<u>ge</u>','gear   ','sure   ','pressure ','measure','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2006',3736,'Admin','0000-00-00 00:00:00','2020-06-20 11:34:46'),(283,'The usually hostile crowd was captivated by the .player\\'s <i>winsome</i> attitude','obnoxious  ','friendly  ','colourful  ','drunken','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3610,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(284,'The reporter made a <i>masterly</i> analysis of the situation','an unskilful ','a mistaken ','an indepth','a proper','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3746,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(285,'He has no reason to <i>have his heart in his mouth</i>',' think negatively',' feel guilty ',' be afraid',' be confident','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3768,'Admin','0000-00-00 00:00:00','2020-07-02 11:34:10'),(286,'That little boy has become quite <i>chubby</i>','thin    ',' intelligent   ','huge    ','tall','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3676,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(287,'Akpan was able to <i>douse</i> the flames with the new piece of equipment','reduce ','extinguish ','ignite ','reinforce','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3658,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:04'),(288,'He gave himself up by his <i>plebeian</i> tastes','robust ','voracious ','patrician   ','laughable','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3749,'Admin','0000-00-00 00:00:00','2020-06-24 02:11:03'),(289,'<i>No sooner had</i> he arrived than it started to rain',' Long before ',' Seldom ','Simultaneously','Just before','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3707,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(290,'The action was <i>premeditated</i>','unnecessary ','catastrophic ','unplanned ','uncoordinated','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3735,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(291,'A <i>tentative</i> solution was provided','A convincing ',' provisional','An amicable ','A definite','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3637,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(292,'The chief said he would use the power <i>inherent</i> in his office to stop the celebration',' unrelated to ',' common to ',' allotted to ',' impervious to','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3744,'Admin','0000-00-00 00:00:00','2020-06-23 20:21:38'),(293,'In our last play, Segun acted the <i>hero</i>','villain  ',' devil ','criminal ',' assassin','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3736,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(294,'The police found a <i>conclusive</i> proof of the boy\\'s guilt','a corroborative ','A doubtful ','a consolatory',' an incriminating','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2006',3741,'Admin','0000-00-00 00:00:00','2020-06-20 18:05:46'),(295,'The point you have made is quite <i>apt</i>','illogical ','helpful ','irrelevant ','insensitive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3829,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(296,'The man drew a sword as people <i>congregated round</i> him','praised',' gathered round ',' mobbed ',' fled from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3783,'Admin','0000-00-00 00:00:00','2020-07-02 11:07:20'),(297,'The notice reads, No <i>cash</i> transactions in this hall\\'','money   ','gainful ','business ','cheque','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3745,'Admin','0000-00-00 00:00:00','2020-06-24 02:10:52'),(298,' He <i>deprecated</i> the attempts made to unseat him.','despised','challenged    ','resisted','condemned','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3682,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:19'),(299,'The striking workers have vowed not to return to work until the decision is <i>reversed.</i> ','rescinded         ','dismissed','implemented    ','reverted. ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3765,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(300,'The police are not happy with the growing number of <i>depraved</i> people around the politician.','violent ','immoral ','indolent ','loquacious ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3684,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(301,'The last criticism at the rally was made <i>in ignorance</i>','uniformed ','objective ','unimpeaccable','impeccable ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3584,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(302,'The astute businessman neatly <i>fended</i> off questions off questions about his private life.','asked ','explained ','welcomed','sidestepped.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3634,'Admin','0000-00-00 00:00:00','2020-06-29 02:15:48'),(303,'We were warned not to indulge in <i>recriminations.</i>','counter-charges      ','indiscretions  ','accusation','frivolous allegations.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(304,'The shortage of petrol was a <i>perennial</i> problem','a recurring   ','a seasonal ','an annual','an incurable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3758,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(305,'The rest of the boys admire Olu\\'s <i>verve</i>','intelligence','work  ','handsomeness     ',' energy.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3729,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(306,'He holds on firmly to his <i>hackneyed</i> view of life','wayward  ','principled',' obsolete','positive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3657,'Admin','0000-00-00 00:00:00','2020-07-02 11:27:13'),(307,'I visited Amina <i>umpteen times</i> in her college, but she never came to me','often   ',' seldom   ',' twice   ','occasionally.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3666,'Admin','0000-00-00 00:00:00','2020-06-28 18:34:03'),(308,'The debt the company incurred became rather <i>intolerable</i>. ','inevitable   ','unprecedented','insupportable ','dangerous.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3740,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(309,'The tax rebate was a <i>concession</i> given to the civil servants ','a donation ',' an allowance','an incentive  ','an emolument. ','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2007',3697,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(310,' <i>Beads</i> of sweat ran down Ngozi\\'s armpit','Pools','Springs   ','Ponds    ','Rivulets.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3833,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(311,'The noise across the road  <i>drowned</i> the sound of the keyboard in my room',' neutralized ',' overshadowed','balanced   ','equalized.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3750,'Admin','0000-00-00 00:00:00','2020-06-23 20:19:16'),(312,'Things may change soon, but at the moment our economic situation is <i>precarious.</i>',' redeemable','buoyant ','uncertain   ',' unattractive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3820,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(313,'shoe<u>s</u>','horse','house','loss','reason','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2007',3757,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(314,'E<u>ngs</u>lish','end','thin','think','edge','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3773,'Admin','0000-00-00 00:00:00','2020-06-24 00:11:13'),(315,'clo<u>ths</u>e','thomas','three','they','mouth','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3752,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(316,'p<u>os</u>table','paw','pot','port','post','choose the option that has the same vowel sound as the letter(s) underlined.','','b','','utme','2007',3660,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(317,'bl<u>ues</u>','book','root','foot','look','choose the option that has the same vowel sound as the letter(s) underlined.','','d','','utme','2007',3776,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:06'),(318,'p<u>ears</u>','dear','year','there','near','choose the option that has the same vowel sound as the letter(s) underlined.','','a','','utme','2007',3750,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(319,'The refugees were received at the <i>transit</i> camp.','passage ',' permanent ','temporary ','nearby.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3671,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(320,'The man paid a large sum to <i>redeem</i> his mortgaged property ','ransom ','acquire ','pawn ','recover.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3736,'Admin','0000-00-00 00:00:00','2020-07-02 11:02:43'),(321,'Lami and her husband are simply <i>munificent</i>','a wealthy   ','angry   ','happy  ','niggardly.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3800,'Admin','0000-00-00 00:00:00','2020-06-24 02:20:41'),(322,'Is it necessary for us to go?\\' she asked in her <i>shrill</i> voice ','angry ','quiet',' indistinct ','aggressive.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3623,'Admin','0000-00-00 00:00:00','2020-06-20 11:55:48'),(323,'The police demanded a <i>factual</i> account of the accident','a supportive  ','an uncorroborated','an admissible ','an undisguised.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3745,'Admin','0000-00-00 00:00:00','2020-06-26 18:58:51'),(324,'The suggestions he made were very <i>unobtrusive</i>','forceful   ','helpful ','sincere    ','reasonable.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3717,'Admin','0000-00-00 00:00:00','2020-06-20 14:10:58'),(325,'Mr. Adeyemo is quite a <i>conceited</i> young man','a resourceful','a practical ','an experienced ','an unassuming.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3782,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(326,'The stadium was <i>seething</i> with people when we entered',' filled ',' crowded ','empty   ','noisy.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3750,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:02'),(327,'The Vice-Chancellor <i>relinquished</i> power at the end of busterm ','abandoned   ','wielded  ','gave up',' clung on to.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3802,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(328,'The students were <i>undeterred</i> by the noisy lecture environment. ','frustrated  ','encouraged','discouraged','challenged.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3786,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(329,'For anything to do with academic work, he has a great  a <i>version</i>','conversion ','attention','contempt  ','predilection.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3713,'Admin','0000-00-00 00:00:00','2020-06-28 18:34:03'),(330,'The study he carried out of the problem was quite <i>comprehensive</i>','detailed ',' sketch  ','inscrutable ','complete.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3718,'Admin','0000-00-00 00:00:00','2020-06-28 18:34:03'),(331,'The man advised his wife to steer a <i>middle course</i> the argument between her and her employers','be recalcitrant  ','be unrepentant','be compromising','be unrelenting','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3800,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(332,'Do not be <i>discouraged</i> by failure in life.','overjoyed','dissuaded','actuated ','disoriented.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3686,'Admin','0000-00-00 00:00:00','2020-06-25 15:55:24'),(333,'Otokpa took after his late father who was a <i>tee totaller.</i>','a drunk ',' careless ','a disciplinarian ','sober','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3752,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(334,'capitalism    ','capiTAIism   ','capitaLIsm','caPItalism ','CApitalism.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2007',3665,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(335,'association ','aSSociation    ','associaTION','associAtion   ','Association.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2007',3814,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(336,'advertisement ','adVERtisement  ','advertiseMENT',' adverTISEment   ','ADvertisement.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2007',3736,'Admin','0000-00-00 00:00:00','2020-06-22 19:34:19'),(337,'',' intact  ',' integral ','negotiate ','about.','choose the option that has the stress on the first syllable.','','b','','utme','2007',3713,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(338,'','conduce   ',' renewal ','calendar ','reproduce.','choose the option that has the stress on the first syllable.','','c','','utme','2007',3702,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(339,'','understand   ','address ','afternoon ','taxi.','choose the option that has the stress on the first syllable.','','d','','utme','2007',3742,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(340,'',' superior ','surcharge','slaughter ','superman.','choose the option that has a different stress pattern from the others.','','a','','utme','2007',3565,'Admin','0000-00-00 00:00:00','2020-06-23 13:00:38'),(341,'','education ','individual ','agriculture','Cinderella.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3717,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(342,'','cigarette ','European ','evacuee','expedite.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3554,'Admin','0000-00-00 00:00:00','2020-06-23 21:56:51'),(343,'Because of his …… nature, Ayo was tricked out of his wrist watch. ','kind   ','pliable  ',' uncompromising ','uncalculating ','choose the option that best completes the gap(s).','','a','','utme','2007',3692,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(344,'He says he ............. find me a job, but will accommodate me.','could not ','was notable to','is not able to','cannot be able to ','choose the option that best completes the gap(s).','','a','','utme','2007',3728,'Admin','0000-00-00 00:00:00','2020-06-28 18:38:57'),(345,'The idle steward could not see ....... on the wall, and he lost his job.','the writing','what will be written ','the handwriting','what is written','choose the option that best completes the gap(s).','','c','','utme','2007',3735,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(346,'... went to the stadium to watch a football match.','Amadi and me  ','Amadi and I   ','Me and  Amadi   ','Amadi and myself  ','choose the option that best completes the gap(s).','','b','','utme','2007',3679,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(347,' If he arrived late, everyone... …….. him','would have blamed   ','will blame ','would  blame ','must blame','choose the option that best completes the gap(s).','','a','','utme','2007',3714,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(348,'When they examined his body, they found that he ...',' had been dead  ',' had been dying  ','died  ','was dead','choose the option that best completes the gap(s).','','d','','utme','2007',3691,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(349,'The rain fell for days... ','on ending ','at ending ','on end  ','at end','choose the option that best completes the gap(s).','','c','','utme','2007',3700,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(350,'Yesterday in the hall, Ola said that ...........  his watch.','he had mislaid ','he had forgot ','ne has misplaced  ','he have lost ','choose the option that best completes the gap(s).','','a','','utme','2007',3637,'Admin','0000-00-00 00:00:00','2020-06-20 16:05:18'),(351,'Government should invest more in …...   training.','teacher\\'s  ','teacher  ','teachers  ','teachers','choose the option that best completes the gap(s).','','b','','utme','2007',3563,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:04'),(352,'The team has benefitted from the coach\\'s ………. of experience. ','minefield ','reservoir ','wealth ','world ','choose the option that best completes the gap(s).','','c','','utme','2007',3790,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(353,'There was …………. any traffic as he drove home.',' hardly ',' normally ','usually  ','no ','choose the option that best completes the gap(s).','','a','','utme','2007',3838,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:33'),(354,'I look forward to ……. you next week.','seen ','seeing  ',' be seeing ','see ','choose the option that best completes the gap(s).','','b','','utme','2007',3746,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(355,'The girl cannot speak with a clear voice; she is always ………. ','blabbing ',' vociferating ',' stuttering ','gesticulating ','choose the option that best completes the gap(s).','','c','','utme','2007',3682,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(356,'The politician …….. the family of the deceased.  ',' greeted  ',' condoled  ','wept over ','commiserated with ','choose the option that best completes the gap(s).','','d','','utme','2007',3744,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(357,'Making a phone call instead of paying a visit represents a …….  trend ',' sudden new major social  ',' new social sudden major',' new sudden major social','sudden social new major','choose the option that best completes the gap(s).','','c','','utme','2007',3730,'Admin','0000-00-00 00:00:00','2020-06-20 17:56:48'),(358,'Our soldiers are starting to zero …………. the enemy.','at    ','in on ',' unto ','on at ','choose the option that best completes the gap(s).','','b','','utme','2007',3487,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(359,'My father has been away on a journey but my mother  says she …...he …… this Friday.',' expects/would arrive','expected/win arrive ','expects/will arrive','expected/would arrive ','choose the option that best completes the gap(s).','','a','','utme','2007',3758,'Admin','0000-00-00 00:00:00','2020-06-25 15:53:03'),(360,'Kola was fined; ……….. thieves were given a jail sentence.','the rest of the','rest ','the rest','rest off ','choose the option that best completes the gap(s).','','a','','utme','2007',3689,'Admin','0000-00-00 00:00:00','2020-06-23 20:21:38'),(361,'I………  to pursue my education.','did not chance   ','did not have the opportunity','was not chanced    ','was not opportuned ','choose the option that best completes the gap(s).','','a','','utme','2007',3725,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(362,'Didn\\'t .......  draw your attention to the entry requirements?','anyone ','everyone ','everybody','no body','choose the option that best completes the gap(s).','','a','','utme','2007',3691,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(363,'He could not have rewarded them more handsomely.','He did not reward them very well,','He rewarded them well, and he was also a good- looking man.','He rewarded them very well.','He spoke to them in a very generous way.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3635,'Admin','0000-00-00 00:00:00','2020-06-24 00:33:26'),(364,'My advice to Tolu was: \\'Look before you leap.\\'','Tolu was advised to consider her opinions before reaching any decisions.','Tolu was advised to consider the possible consequences before taking action.','Tolu was advised to weigh her decisions by looking and leaping.  ','Tolu was advised to leap only after looking.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2007',3765,'Admin','0000-00-00 00:00:00','2020-06-28 18:34:53'),(365,'The official had allegedly been taking bribes.','Some people accused the official of taking bribes.','The official had been taking bribes without feeling any guilt.  ','It was proved that the official had been taking bribes ','The official accused some people of taking bribes.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3753,'Admin','0000-00-00 00:00:00','2020-06-26 00:04:04'),(366,'Emeka hardly ever holds with my view on good governance.','Emeka sometimes opposes my idea of good governance.  ','My view on what good Governance is conforms with that of Emeka.','Emeka never really supports my opinion of good governance ','Emeka may never hold a view which conflicts with mine on good governance.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3672,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(367,'The next village is at least 30 kilometres away.','The next village is 30 kilometres away, possibly less. ','The next village is approximately 30 kilometres away.    ','The next village is   only 30 kilometres away.','The next village is 30 kilometres away, or possibly more.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3727,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(368,'The woman won\\'t have lived through the night. ','It was likely that the woman died before morning ','The woman survived her ordeal but not without some help .   ','From all indications, the woman was taken much worse, though she overcame her ordeal','The woman might not have lived if she hadn’t got the right support','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3710,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(369,'There\\'s a door at either end of the building.','The building has two ends and two doors. ','The building has two ends, but only one doc\\'','The building has two ends, but I do not know which of the two has a door. ','The building has many ends each with a door.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3611,'Admin','0000-00-00 00:00:00','2020-06-24 02:48:08'),(370,'We have to iron out our differences at once.','We must clear up without delay our misunderstanding ','We must sure that our problems are eliminated  at all costs ','We have to settle our disagreement once and for all.   ','We have to solve some of our problems for now.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3620,'Admin','0000-00-00 00:00:00','2020-06-24 02:21:03'),(371,'There should be a level playing field for women entering  politics.  ','Women should not be allowed to enter  politics   ','Sports facilities should be provided for women entering politics.','Special privileges should be  given to women who want to enter politics','Men and women should be able to compete are political arena on an equal basis.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3678,'Admin','0000-00-00 00:00:00','2020-06-24 01:24:12'),(372,'The country is holding its first free elections for five years. ','The last time the country held free electors  was five years ago. ','The first free elections in the  country have now taken five years to conduct.','The country held elections five years ago but they were not free. ','There were elections in the country five years ago.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3790,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:35'),(373,'He needn\\'t have bought that new table ','It isn\\'t possible that he bought the table ','He bought the table, but it wasn\\'t necessary ','He didn’t buy the table because it wasn\\'t necessary','He doesn\\'t need to buy the table ','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3659,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(374,'Thanks to that phone call, I was able to obtain the visa,','in spite of that phone call, I obtained the vist ',' It was because of that phone call that the visa','I am grateful to whoever phoned me and I obtained the visa','If I had not recieved that phone call, I would not have obtained the visa.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3748,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(375,'It is likely that the governor will exact his pound of flesh ','He will probably demand a hefty  bribe ','He will probably engineer the assassination of his opponents ','He will probably impose crushing new taxes','He will probably demand for and get all that is due to him ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3793,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(376,'It was too cold for him to go out ','He had a bad cold, and did not go out,','Although it was very cold, he still went out ','As it was very cold, he did not go out','He was afraid to go out that day.','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3647,'Admin','0000-00-00 00:00:00','2020-06-20 15:20:26'),(377,'Ado and Abu are always together these days. They must be up to something.','They must have reconciled after their quarrel','They are probably planning something bar','They are capable of a praiseworthy achievement ','They bear some responsibility for what has happened.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3682,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(378,'He wants the meeting to be adjourned,','He wants the meeting closed ','He wants the meeting cancelled ','He wants the meeting to continue till another day ','He want  the meeting to another day without delay ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3684,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(379,'My father is one of the vociferous few challenging the company’s appointment of the manager.','My father is the one who shouts with a loud voice against the appointment of the manager','My father and others speak on behalf of the company against the appointment of the manager','My father is one of those objecting to the appointment of the manager','My father is agitated by the appointment of the manager','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3739,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(380,'The voyagers fetched up in Nigeria','the foreigners finally settled in Nigeria','The journey by sea ended in Nigeria','The travellers made a stopover in Nigeria','The discoverers landed in Nigeria after a long journey,','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3800,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(381,'In those days in this school, everyone who spoke in a','language other than English paid a fine of ten naira','  Everyone of us paid a fine of ten naira because we did not always speak in English  ',' Everyone would pay a fine of ten naira for wanting to use a language other than English ','Those who spoke a language other than English on the premises paid a fine  of ten naira ','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3665,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(382,'The officer has discussed the vexed issue of incessant power failure','In anger, the officer explained the problem of constant power failure','The officer added his voice to the much discussed problem of power cut','The officer\\'s explanations angered those who have suffered the effects of frequency power failure ','The officer told the people not , to be angered by the frequent power cut','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3614,'Admin','0000-00-00 00:00:00','2020-06-24 00:28:12'),(383,'The weather condition now <i>prevailin</i>g in the town is unbearable   ','widespread   ','dominant','unconscious ','disappointed','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3720,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(384,'The lady was  completely <i>nonplussed when her suitor</i>  rejected her gifts ','unpuzzled ','surprised ',' unconscious ','disappointed  ','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3745,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(385,'As a public officer, he should act with <i>scrupulous</i>  honesty at all times  ','impeccable  ','careless ','transparent ','uncompromising ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3809,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(386,'Men from the agency went into the market in search of <i>unwholesome</i>  food items ','banned ','imported ','healthy ','uncooked ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3724,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(387,'The condition of the hostels has become <i>deplorable </i>','admirable ','regrettable ','bearable ','malignant','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3770,'Admin','0000-00-00 00:00:00','2020-06-23 08:55:34'),(388,'The plan to merge the two local government areas has met with much <i>apathy.</i>','hospitality ','criticism ','consideration ','enthusiasm ','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3825,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(389,'There is now a <i>dearth</i>  of talent in the industry; she said ','a lack ','an abundance ','a rebirth ','a shortage ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3624,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(390,'The students  <i>vandalized </i> their hostel curing the riot.','  deserted ','Unrepaired  ',' protected','decorated.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3745,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(391,'His <i>kind-hearted</i> master bought him a motorcycle',' stingy   ','generous    ',' shrewd ','angry.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3559,'Admin','0000-00-00 00:00:00','2020-06-24 02:28:28'),(392,'<i>Mutual</i> love is what Kabi and Musa have in common, and nothing else.   ',' insincere     ','unhappy','one-sided    ','disrespectful. ','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3670,'Admin','0000-00-00 00:00:00','2020-06-26 16:42:50'),(393,'Always strive to get what is <i>legitimate,</i>','illicit    ','legal',' good    ','impure','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3768,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(394,'Some aspects of their culture are <i>out of date</i>','genuine  ','pragmatic ','fashionable ','fake','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3745,'Admin','0000-00-00 00:00:00','2020-06-23 20:22:50'),(395,'On the first day of her examination, Amina felt very <i>confident.</i>','excited ','dull  ','beefed up','strung up. ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3730,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(396,'My father is always very <i>frank</i> about his intentions','open   ','objective','secretive','deceitful','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3681,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:03'),(397,'The speaker was rather <i>bold</i> in his presentation of the case ','unfair ','reserved ','ashamed ','formal','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3773,'Admin','0000-00-00 00:00:00','2020-06-25 15:35:47'),(398,'The doctor tried to <i>soothe</i> the patient before the operation  ','examine   ',' treat ',' calm ','induce','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3674,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(399,'The charge brought against my brother was hardly <i>tenable\\\\</i>','sensible  ','defensible   ','meaningful',' flimsy','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3756,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(400,'The man described his son as a <i>willful</i> character','   wicked ','obstinate','wild    ','tricky.','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3756,'Admin','0000-00-00 00:00:00','2020-06-28 18:34:03'),(401,'Our teacher described Agbo\\'s story as a <i>phantom</i>','scary  ','realistic ','fanciful   ','interesting ','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3719,'Admin','0000-00-00 00:00:00','2020-06-24 01:23:56'),(402,'I find the way she approaches her customers quite <i>repugnant</i> ','unpleasant   ','attractive. ','ungodly    ','encouraging','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3764,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(403,'Participation in the programme is <i>optional</i>','unnecessary   ',' recommended','hard to justify   ','a matter of choice','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3644,'Admin','0000-00-00 00:00:00','2020-07-02 11:02:49'),(404,'Scientists have <i>invented</i> ways of preserving fruits much longer   ','coined ','devised   ','arranged','organized','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3639,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(405,'The attempt to count the population was <i>largely</i> successful.  ',' mostly ','completely   ',' hardly','totally.','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3662,'Admin','0000-00-00 00:00:00','2020-06-26 18:58:51'),(406,'The governor has <i>approved</i>  the award of the contract','appreciated ',' acknowledged ','vetoed ','endorsed','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3644,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(407,'I cannot stand Simon, I find his attitude <i>offensive</i>','unapproachable   ',' obnoxious ','wicked','  unpardonable','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3689,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(408,'The  man would not <i>withdraw</i>  what hi hid ','take back   ',' takeout   ','take','tike from','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3609,'Admin','0000-00-00 00:00:00','2020-06-24 02:00:02'),(409,'The <i>disagreement</i> between the two men became obvious during the meeting','insult','confrontation','passion','insinuation','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3768,'Admin','0000-00-00 00:00:00','2020-06-24 01:24:19'),(410,'The principal  detested his <i>recalcitrant</i> attitude ','disobedient ','arrogant ','voracious ','vengeful ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3815,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(411,'The union officials suddenly became <i>reactive</i>','unruly ','impatient ','calm  ','submissive ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3679,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(412,'The popularity of the military dictator <i>waned</i>  after war ','increased ','changed ','declined ','skyrocketed.','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3655,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(413,'The chairman addressed the………… ','university French teacher','university of French teachers ','French one hundred university teachers ','university French one hundred teacher ','choose the option  best completes the gap(s) .','','a','','utme','2008',3770,'Admin','0000-00-00 00:00:00','2020-06-26 18:58:51'),(414,'Kanuri is a language.........','I can\\'t speak it well ','that I cant speak it well ','of which I can\\'t speak it well','I can\\'t speak well ','choose the option  best completes the gap(s) .','','d','','utme','2008',3702,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(415,'Last Tuesday, Ochonu asked me.........',' had I come yesterday ','did you come yesterday ','whether I had come the day before ','If I had come yesterday','choose the option  best completes the gap(s) .','','c','','utme','2008',3727,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(416,'The young man has..... to sober...……  after being drunk.','began/up ','begun/in    ','begun/up    ','began/down','choose the option  best completes the gap(s) .','','c','','utme','2008',3777,'Admin','0000-00-00 00:00:00','2020-06-24 08:56:15'),(417,'My mother had........  the fire wood before it began to rain. ','splitting ','splited  ','splitted','splitting','choose the option  best completes the gap(s) .','','a','','utme','2008',3649,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(418,'The police officer warned the... communities against taking the law……… hands','feuding/into their own ','feudal/ to their own ','feuding to their own   ','feudal/in their own','choose the option  best completes the gap(s) .','','a','','utme','2008',3683,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(419,'Agbo could not travel as he had come...…  influenza','over with ','down with ','in from ','on to ','choose the option  best completes the gap(s) .','','b','','utme','2008',3632,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(420,'When he.........from his journey, I want to see him.','returns ','might have returned ','returned ','must have returned ','choose the option  best completes the gap(s) .','','a','','utme','2008',3713,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(421,'I knocked his door, but he.........','has already ten ','left already ','would already leave','had already left ','choose the option  best completes the gap(s) .','','d','','utme','2008',3669,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(422,'………of the students  turned up, so the lecture was cancelled.','few ','Little',' A few  ',' A little','choose the option  best completes the gap(s) .','','a','','utme','2008',3675,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:04'),(423,'He brought a  ……… against his neighbour.','complaint ','complains','complain ','complaining ','choose the option  best completes the gap(s) .','','a','','utme','2008',3638,'Admin','0000-00-00 00:00:00','2020-06-26 16:42:50'),(424,'The hotel lacks the ..……. for accommodating so many guests.','ability','capability','capacity','competence ','choose the option  best completes the gap(s) .','','c','','utme','2008',3685,'Admin','0000-00-00 00:00:00','2020-06-24 01:22:25'),(425,'If you are not careful, you would .......... your money.','toss  ','lose','loose   ','lost','choose the option  best completes the gap(s) .','','b','','utme','2008',3765,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(426,'You must practise in order to................perfection.','obtain   ','have','get ','achieve','choose the option  best completes the gap(s) .','','d','','utme','2008',3733,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(427,'The condition of the room was so………... so I went outside ','intolerant','intolerable ','inconstant ','invariabl ','choose the option  best completes the gap(s) .','','b','','utme','2008',3769,'Admin','0000-00-00 00:00:00','2020-06-28 16:15:50'),(428,'You don\\'t like Mathematics, ........... you?','do','don\\'t','cant ','can ','choose the option  best completes the gap(s) .','','a','','utme','2008',3756,'Admin','0000-00-00 00:00:00','2020-07-02 11:03:53'),(429,'They have had their debt written ........... by their creditors.','down ','on ','up ','off','choose the option  best completes the gap(s) .','','d','','utme','2008',3696,'Admin','0000-00-00 00:00:00','2020-06-20 17:59:03'),(430,'Uncle Ochai now has enough money to complete his…….. building.','two storey ','two-storeyed ','two-story ','two storeyed ','choose the option  best completes the gap(s) .','','a','','utme','2008',3661,'Admin','0000-00-00 00:00:00','2020-06-30 19:49:20'),(431,'By the end of this month……….for three years in this school.','I will study ','I  will have been studying ','I  am studying','I had been studying ','choose the option  best completes the gap(s) .','','b','','utme','2008',3786,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(432,'He ……… the picture on table','laid ','lay ',' lied  ','Iain ','choose the option  best completes the gap(s) .','','a','','utme','2008',3751,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(433,'Sc<u>oo</u> led ','cold ','could ','court','you','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3660,'Admin','0000-00-00 00:00:00','2020-06-24 02:20:20'),(434,'sh<u>ir</u> t  ','shut ','shade','surf','shed','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','c','','utme','2008',3716,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(435,'w<u>ai</u> st ','fete ','says','plait','breakfast ','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3645,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(436,'<u>th</u> atch ','clothing   ','mother','then ','method','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2008',3675,'Admin','0000-00-00 00:00:00','2020-07-02 11:08:10'),(437,'<u> ch</u> ateau  ','chart    ','church ','champagne',' chemical.','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2008',3704,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(438,' ju<u>dge</u> ','measure','General ','Pressure','Grace ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2008',3780,'Admin','0000-00-00 00:00:00','2020-06-27 17:54:19'),(439,'','distress','control','bottom','report','choose the option has a different stress pattern from the others.','','c','','utme','2008',3816,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(440,'','original','deplorable','ability','revolution','choose the option has a different stress pattern from the others.','','d','','utme','2008',3743,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(441,'','release','exit','exchange','explode','choose the option has a different stress pattern from the others.','','b','','utme','2008',3707,'Admin','0000-00-00 00:00:00','2020-06-25 19:09:14'),(442,'','bachelor','forget','cement','ago','choose the option that has the stress on the first syllable.','','a','','utme','2008',3720,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(443,'','librarian','immunize','militia','continuous','choose the option that has the stress on the first syllable.','','a','','utme','2008',3778,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(444,'','july','litereture','august','oesophagus','choose the option that has the stress on the first syllable.','','d','','utme','2008',3672,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(445,'xenophobia   ','XEndphobia   ','xeNOphobia',' xenoPHObia     ','xenophoBIA.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2008',3735,'Admin','0000-00-00 00:00:00','2020-06-25 15:55:24'),(446,'photography ','phoTOgraphy   ','PHOtograhy',' photoGRAphy   ','photograPHY','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2008',3638,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(447,'melodramatic ','MEIodramatic  ','meLOdramatic',' meloDRAmatic ','melodraMAtic.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2008',3728,'Admin','0000-00-00 00:00:00','2020-06-28 18:34:03'),(448,'It was our collective idea but Ado was doing every­ thing to steal the snow  ',' Ado was not part of the planning but he tried to rub us of the benefits of it.',' We planned the show together out Ado was trying to abort it. ','It was a joint project but Ado is trying to attract the most attention','We collated the idea for the show but Ado was trying to steal the programme.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3699,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(449,'As we watched, he just popped along to the shop for some bread  ',' He has walked slowly to the shop.',' He stole some bread from the shop but we could not stop him',' He broke into the bread shop before our very eyes    ','He went quickly to the shop for some bread.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3628,'Admin','0000-00-00 00:00:00','2020-06-22 16:40:02'),(450,'In all ramifications, Chief Adeyemi was a successful principal of the school','He was partly a failure and partly a success    ','Everyone admitted that he was largely successful during his tenure ','He was not totally successful in the school  ','His tenure witnessed a huge success ','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3808,'Admin','0000-00-00 00:00:00','2020-06-24 00:26:21'),(451,'I couldn\\'t buy the biscuit because of the hold-up in the supermarket. ','The shop had not opened.','The attendant was slow  ',' Armed robbers were',' There was nobody to attend to me.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3711,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(452,'You could have heard the sound, if you weren\\'t asleep.','You were not asleep so you heard the sound.','You were asleep so you did not hear the sound.','You heard the sound though you were asleep.','You did not hear the sound though you were not asleep','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3744,'Admin','0000-00-00 00:00:00','2020-06-23 17:38:31'),(453,'Musa will not well because he has an itching palm.','He has rashes in his palm ','He is always looking for something to touch ','He is always read to accept bribe','He is always tapping people on the back','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3864,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(454,'Emeka was always conspicuous by his absence when it came to attending lecturers.','That Emeka always attended lecturer made him conspicuous at school.','Emeka’s absence from lecturers was all too glaring. ','It was obvious that Emeka was not present at lectures   ','What made Emeka conspicuous was his occasional absence from school','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3767,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(455,'He was injured by friend fire. ','He was wounded in a war by a friend of his who fired a shot mistakenly.','He was injured by a gunshot that was fired by a friend. ','He was gut in a war by a weapon fired by his own side    ','it was a war and he was hit by a bomb fired by an unknown soldier.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3651,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:04'),(456,'Kola visits us on occasions, and I don\\'t like that.','I do not like Kola because he visits us only when an event is being celebrated. ','I hate the fact that Kola only visits us when something is being celebrated.','That Kola does not visit us often is something I object to.   ','Kola seldom visits us and that is because he is a fair-weather friend.','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3654,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(457,'At the time I arrived, Olu was lying in third place.',' Olu\\'s third position coincided with my arrival.',' When I arrived Olu was sleeping in the space reserved for him.',' It was a competition and Olu was in third position when I arrived. ','On my arrival at the competition, Olu went to sleep.','select the option that best explains the information conveyed in the sentence. ','','a','','utme','2009',3583,'Admin','0000-00-00 00:00:00','2020-06-24 00:11:34'),(458,'We had difficulty eating the meat because was <i>leathery.</i>   ','bitter    ','stringy ','tough ','tender.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3739,'Admin','0000-00-00 00:00:00','2020-07-02 11:26:57'),(459,'The boy is <i>indolent</i> to do well at school?','intelligent ','industrious  ','inactive  ','stothful.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3716,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(460,'Salasi\\'s <i>tremendous</i> effort has yielded results.','absolute  ','insignificant  ','unimaginable','prohibitive','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3704,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:06'),(461,'The <i>computerised</i> service of the new banks is heart­  warming. ','manual ','mechanical ','electrical','condensed.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3654,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(462,'Life has become a <i>misery</i> for many owing to the harsh economic condition in the country','drudgery   ','ridicule   ','ritual ','comfort. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3720,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(463,'The company director has a <i>vivacious</i> personality. ','a positive ','an unmanageable','an unimpressive ','a gregarious.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3668,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(464,'Young people have a <i>penchant</i> for fast cats ','likeness','passion ','madness ','dislike. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3640,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(465,'Most of his latest actions are <i>militant</i> in nature ','commanding ','civil ','zealous ','passionate. ','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3786,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(466,'His ideas sounded quite palatable yet they were <i>jettisoned</i> by the group, ','accepted ','clumped ','denied ','criticized.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3780,'Admin','0000-00-00 00:00:00','2020-06-24 02:21:40'),(467,'The compulsory leave made her feel <i>listless</i>',' restful   ',' great  ',' fat   ','energetic.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3742,'Admin','0000-00-00 00:00:00','2020-06-24 02:23:21'),(468,'A novel is an <i>embellished</i> \\' falsehood\\', said the teacher','enriched ',' exaggerated ','adorned ','Obliterated.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3739,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(469,' I have had enough of your <i>impudence</i>','politeness ','incivility ','arrogance ','boldness.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3495,'Admin','0000-00-00 00:00:00','2020-06-23 12:02:21'),(470,'We were <i>collectively</i> responsible for keeping the machine in good shape.','jointly ','severally ','dutifully ','socially.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3818,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(471,'His comment was not <i>printable</i>','punishable  ','suitable ','offensive ','unfair.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3657,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(472,'<i>Curiously,</i> he escaped unhurt ','interestingly','unsurprisingly ','annoyingly ','unusually.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3783,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(473,'Agwube\\'s explanation of her poor performance at the examination only <i>begged the question.</i>','delayed her punishment   ','sounded quite convincing ',' did not address the issue','overflogged the matter','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3737,'Admin','0000-00-00 00:00:00','2020-07-02 14:34:34'),(474,'We have every need to preserve some of our national monuments for <i>posterity.</i> ','prosperity ','future','national pride   ','collective gain.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3781,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(475,'He <i>commands</i> the confidence and respect of all his subordinates ','requests',' enjoys   ','enforces','conjures.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3756,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(476,'The president has mapped out so many <i>laudable</i> projects to embark upon ','laughable   ','good',' praiseworthy   ','valuable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3708,'Admin','0000-00-00 00:00:00','2020-07-02 14:34:34'),(477,'Adamu\\'s father is a <i>stern</i> man ','wicked ','strict','playful ','conservative.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3684,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(478,'Nobody knew the source of the <i>altercation</i> between the couple  ','alter ego ','quarrel   ','deep love','wealth.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3635,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(479,'His poetry is said to be <i>inscrutable  </i> ','ludicrous','unlearnable ','inseparable ','mysterious.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3727,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(480,'Hers was a <i>specious</i> argument about the government of the day ','misleading ','precious ','spacious ','true.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3728,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(481,'The Lagos bus conductor r wore his professional <i>livery</i>','badge   ','shoe ',' uniform ','cap.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3795,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(482,'If Joy hadn\\'t been <i>tripped up</i> halfway through the race, she would have came first  ','discouraged','disqualified ','interrupted   ','exhausted.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3763,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(483,'There must be something <i>sinister</i> about her late arrival','reasonable ','joyful ','hopeful ','ominous.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3782,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(484,'The <i>unification</i> of the country has brought about great technological advancement ','A restoration','agreement','cohesion ','stability.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3804,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(485,' His <i>amnesia</i> has affected his career ','loss of focus','loss of sight','loss of memory ','loss of direction.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3687,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(486,' Idris\\' <i>forbearance</i> endeared him to us ','hard work','patience ','wisdom ','good manners.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3618,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:03'),(487,'They hated the police and, by <i>implication,</i> me','extension',' inference ','examination','application','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3701,'Admin','0000-00-00 00:00:00','2020-07-02 14:34:34'),(488,'He is really very mean. He…… not lend me the money I wanted. ','should ','could  ','would','won\\'t  ','choose the option that best completes the gap(s).','','c','','utme','2009',3695,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(489,'When the cashier told him to join the queue, he considered it……. his dignity.','a drawback to ','an affront on','withdrawal from  ','a strain on ','choose the option that best completes the gap(s).','','b','','utme','2009',3726,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(490,'If anyone greets you, it is only polite to return….. Greeting','your  ','the one\\'s   ','Anyone\\'s ','one\\'s ','choose the option that best completes the gap(s).','','d','','utme','2009',3625,'Admin','0000-00-00 00:00:00','2020-06-25 15:50:53'),(491,'Amina lives…..  campus.','in the. ',' on','at the ','inside','choose the option that best completes the gap(s).','','b','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-06-24 02:28:37'),(492,'An acceptance of the offer would be a departure from the several rejections that….. ','had taken place ','have taken place','take place ','took place ','choose the option that best completes the gap(s).','','a','','utme','2009',3738,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(493,' The….. part of a new book is often written by a more experienced writer than the author. ','foreward','foreword','forward  ','forword  ','choose the option that best completes the gap(s).','','b','','utme','2009',3805,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(494,'The officer acted in….. the instructions. ','accordance ','accordance to','accordance of','accordance with ','choose the option that best completes the gap(s).','','d','','utme','2009',3635,'Admin','0000-00-00 00:00:00','2020-06-22 17:35:11'),(495,'The bomb was... …….','detonated  ','dismantled ','deactivated ',' depleted','choose the option that best completes the gap(s).','','a','','utme','2009',3703,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(496,'If you want to succeed in life, don\\'t be envious….. other people\\'s achievement ','of     ',' to    ','with    ','on','choose the option that best completes the gap(s).','','a','','utme','2009',3723,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(497,'They are taught to value honour….. their lives.  ','from','in',' than ','above','choose the option that best completes the gap(s).','','b','','utme','2009',3773,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(498,'Our plan for the trip fell............when the rich man did not give us a life….. ?','off/boat','through/line','down/jacket ','in/help','choose the option that best completes the gap(s).','','b','','utme','2009',3706,'Admin','0000-00-00 00:00:00','2020-06-20 11:37:58'),(499,'1 missed the match though it was shown on television on  two…….. nights. ','concurrent ','consistent ','concrete ','conservative ','choose the option that best completes the gap(s).','','d','','utme','2009',3639,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(500,'The company paid some money to Abu to... …..  him for the losses he suffered during the accident.','indemnify ',' condole with ','settle ','recompense','choose the option that best completes the gap(s).','','a','','utme','2009',3804,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(501,'You are just-putting the hat on. ……?','don\\'t you  ','isn\\'t it ',' aren\\'t you  ','not so','choose the option that best completes the gap(s).','','c','','utme','2009',3771,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(502,'Government\\'s frowned upon politicians who are out to…….... Wealth','gain  ',' amass  ','steal ','waste','choose the option that best completes the gap(s).','','b','','utme','2009',3806,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(503,'I tried to discourage him, but he persisted……… revealing the secret to his son','for  ','in','  on ','to ','choose the option that best completes the gap(s).','','b','','utme','2009',3864,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(504,'He was determined to……... all opposition into submission','push ','cow ','box   ','pound ','choose the option that best completes the gap(s).','','b','','utme','2009',3805,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(505,'I am told that the market is.-, in to the interests of people from all ………….of life','tuned/walks ','constructed /places ','designed/places  ','set/works ','choose the option that best completes the gap(s).','','a','','utme','2009',3787,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(506,'Uche has been in ……….with his pen pal  for years.','exchange','correspondence ','favour  ','cord','choose the option that best completes the gap(s).','','a','','utme','2009',3675,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(507,'Abba became …….... about his inability to pass the examination.','despondent ','disenchanted ','dogmatic','joyful','choose the option that best completes the gap(s).','','a','','utme','2009',3737,'Admin','0000-00-00 00:00:00','2020-06-24 02:00:11'),(508,'c<u>aug</u>ht','hot','water','sup','wrong','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','b ','','utme','2009',3745,'Admin','0000-00-00 00:00:00','2020-06-24 02:27:59'),(509,' c<u>ou</u>ntry','worry','courteous','bought','poultry','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','a','','utme','2009',3697,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(510,' tr<u>a</u>p','wonder','because','plait','quantity','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','c','','utme','2009',3675,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(511,'  re<u>s</u>t','result','show','unasked','wise','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3673,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:19'),(512,'  <u>th</u>ought','taught','weather','theatre','fate','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3725,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:08'),(513,'sheer','dear','shirt','spare','shade','choose the option that rhymes with the given word.','','a','','utme','2009',3670,'Admin','0000-00-00 00:00:00','2020-06-24 00:44:34'),(514,'great','creek','crate','knit','treat','choose the option that rhymes with the given word.','','b','','utme','2009',3750,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(515,'own','brown','frown','gown','phone','choose the option that rhymes with the given word.','','d','','utme','2009',3874,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(516,'ceremoniously ','CEremoniously   ','ceREmoniously','cereMOniously      ','ceremoNlously.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2009',3785,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(517,'  understandable ','unDERstandable','understandABLE','UNderstandable ','underSTANDable.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2009',3700,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(518,' management ','MAnagement ','maNAgement','manaGEment ','manageMENT','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2009',3755,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(519,'I AM called Uche a pilot. ','What did Lam call Uche',' Did Okoro call Uche a pilot?    ','Did I am Uche a driver? ','Did Lam wish Uche to be a pilot?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','b','','utme','2009',3761,'Admin','0000-00-00 00:00:00','2020-06-23 15:46:23'),(520,'The girl DANCED in the village square.   ','Who danced  in the village square?  ',' Is this the village square where the girl danced? ','Did the girl dance in the village square? ','Did the girl sing in the  village square?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','d','','utme','2009',3693,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(521,'My father READ the newspaper.','Did my father steal the newspaper? ','Who read the newspaper?',' What did my father read?','Whose father read the newspaper?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','a','','utme','2009',3682,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(522,'Though Mr, Iro is our new chairman, he views other members with jaundiced eye, ',' He takes a rather forceful position on dealing with his members.','He takes an unfavourable position concerning his members','He takes a sickly view of his members. ','He takes a rather hazy view of his members.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3811,'Admin','0000-00-00 00:00:00','2020-06-28 19:02:01'),(523,'People are not interested in who rules ','People are not ruled by the leaders they want ','People are not concerned about who rules them ','The rulers are not concerned about the people ','People who rule are not interested in the ruled.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3834,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(524,'It is always good to steer a middle course in whatever one does. ','It is always good to get midway in anything one does. ','It is always good to act with moderation. ','It is always good to move away from the forefront','It is always good to work very hard.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3748,'Admin','0000-00-00 00:00:00','2020-06-28 19:02:01'),(525,'The witness said he had no axe to grind with his brothers.',' He had no hatred for the brothers ','He had no axe and therefore stole the matchet ','He had no axe and therefore borrowed their matchet ','He had no vested interest in the brothers.',' select the option that best explains the Information conveyed In the sentence. ','','d','','utme','2010',3786,'Admin','0000-00-00 00:00:00','2020-07-02 14:33:42'),(526,'The footballers moved with their tails between their legs.','They moved happily because they won the match','They were unhappy because they had been despised  by their opponents. ','They were ashamed because they had been defeated ','they moved with their tails between their legs.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3871,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(527,'The headmaster managed to talk his way out of having  to give a speech ','He delivered a speech despite the difficulty ','He managed to give a speech out of a difficult situation ','He managed to get himself out of a difficult situation','He managed to talk on his way.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3781,'Admin','0000-00-00 00:00:00','2020-06-28 19:02:01'),(528,'As regards the matter, we have crossed the rubicon','We are completely at a toss','We are irrevocably committed ',' We are already quaffed','We are perfectly committed.  ',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3743,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(529,'Uche is full of himself ','He is concerted ','He is complete  ','He is a rich man ','He is careful.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3739,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(530,'As debutants in that tournament, the Super Eagles were up against their first opponents by three goals to nil','The Super Eagles were playing in the tournament for the first time, but they won their match by three goals to nothing ','Though the Super Eagles were rated as the weakest side in the tournament they won their first match by three goals to nil ','Even though the Super Eagles were playing without some of their regulars, they won their match by three goals to nil.','As the best attackers in the match. the Super Eagles easily defeated their opponents by three goals to nothing.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3793,'Admin','0000-00-00 00:00:00','2020-06-28 19:02:01'),(531,'The woman was mournful as her husband was found dead drunk  ','She was sad because her husband was absolutely drunk ','She was apprehensive that her husband would drink again as soon as he recovered from the drunken stupor. ','She was sad because her husband was drunk and always as helpless as a dead  man ','She was mourning because her husband drank and died.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3735,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:03'),(532,'I am optimistic about the Interview though It was a <i>mind- bending</i>  exercise, ','an enervating ','a debilitating','a difficult ','an easy','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3789,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(533,'The trader was amused by the  <i>cutthroat</i>  rush for the goods ','worrisome','strange ','lacklustre ','mad','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3805,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(534,'The teacher said that All\\'s essay was full of many  <i>redundant</i>  details ','unexplained ','strange','necessary ','useful','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3785,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:15'),(535,'His father surmounted the  <i>myriad</i>  of obstacles on his way ','most ','few ','all ','many','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3748,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(536,'Her  <i>ingenuous</i>  smile drew our attention ','witty',' naive ','clever ','arrogant','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3825,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(537,'Ndeni gave a  <i>flawless</i>  speech at the party ','a wonderful ','a careless ','an interesting ','an imperfect','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3854,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(538,' Beneath Ado\\'s  <i>guff</i>  exterior, he\\'s really very kind-hearted','nice','harsh ','rough ','gentle','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3735,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(539,'The captain says sports is being  <i>debased</i>  by commercial sponsorship ','localized ','perverted','elevated ','overvalued','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3715,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(540,'Governing a country is not always as  <i>straightforward as</i>  people sometimes imagine.','complicated','troublesome   ','untoward   ','Irksome','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3636,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(541,'The crowd was very  <i>receptive </i>  to the speaker\\'s suggestion ','disobedient ','repellent ','alert','Hostile','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3762,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(542,'There was a general  <i>acquiescence</i>  on the new drug law ','resistance ','discrepancy ','compromise','agreement','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3748,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:03'),(543,'Aisha seems to feel  <i>ambivalent</i>  about her future','decisive ','anxious ','ambitious ','inconsiderate','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3674,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(544,'The report of the committee contained a  <i>plethora</i>  of details',' shortage ','simplicity ','multitude',' spectrum','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3722,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(545,'The weather was still very  <i>heavy and sultry </i> ','wintry and shadowy ','cold and friendly ','cloudy and thundery','hot and uncomfortable','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3683,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(546,'Ada gave her husband a look that made words  <i>superfluous</i> ','redundant ','spurious ','unnecessary',' scanty.','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3813,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(547,'A political  <i>impasse</i>  does not offer the best opportunity for merrymaking ','manifesto ','party ','gridlock',' rally','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3798,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(548,'We were all  <i>enthusiastic</i>  as we awaited the result of the election ','bemused ','agitated ','elated','nervous','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3839,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(549,'The uniform makes the guards look  <i>absurd</i>  ','dirty','smart ','sensible','ridiculous','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3735,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(550,'The law is often  <i>tardy</i>  in reacting to changing attitude',' quick','low ','exclusive ','generous','choose the option nearest  in meaning to the word or phrase in Italics.','','b','','utme','2010',3805,'Admin','0000-00-00 00:00:00','2020-07-02 11:21:56'),(551,'Isa and llu  <i>ate sumptuous</i>  meals on their brother\\'s wedding day','expensive ','foreign ','insipid','cheap','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3850,'Admin','0000-00-00 00:00:00','2020-06-28 17:57:17'),(552,'Kaltume  <i>crouched</i>  over the papers on her desk ','wrote on  ','stood on ','walked over','bent over','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3743,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(553,'The <i> panacea</i>  for a country\\'s economic mess lies in systematic planning and hard work ','cure  ','hope','foresight ','trouble','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3901,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(554,'Thousands of workers have been victims of  <i>retrenchment</i>  since the military came back to power.','unemployment ','trench mentality ','suffering ','increase in penury','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3701,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(555,'The principal gave his speech   <i>off hand</i>  at the sports  meeting ','calmly ','Beautifully ','unconcerned','unprepared','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3662,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(556,'Jankoli was dressed in an old  <i>assortment</i>  of clothes','avalanche ','homogeneity ','sameness','melange','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3766,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(557,'The girl\\'s father was  <i>astounded</i>  to see her appear from the shrine ','collected ','overwhelmed','embarrassed ','astonished','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3721,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(558,'The director\\'s remark was extremely  <i>apposite</i>  to the issue being discussed ','appropriate','inconsequential ','emphatic ','adequate','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3855,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(559,'Her reputation is without a  <i>blemish </i> ','struggle','problem ','fault ','blessing','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3760,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(560,'Ugo is  <i>eligible</i>  for the post of secretary ','nominated','invited','qualified ','intelligent','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3701,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(561,'This is an  <i>abridged</i> version of No Longer at Ease','an outdated    ','an enlarged ','an illustrated ','a shortened','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3826,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(562,'Lemoti ………..','is gifted only not ','is only not gifted  ','not only ','is only gifted','choose the option that best completes the gap(s)','','b','','utme','2010',3869,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(563,'He can recall the important dates in the nation\\'s history; it is interesting to listen as he rattles…….','off','over','up   ','out','choose the option that best completes the gap(s)','','a','','utme','2010',3675,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(564,'The boy told his mother','that was the girl he told her about ','that was the girl I told you about her','that was the girl I told her about ','that is the girl he told her about','choose the option that best completes the gap(s)','','a','','utme','2010',3863,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(565,'Last Monday his father asked me, .......','if\\' had come some days before ','if I had come the day before','did you come yesterday ','had I come yesterday','choose the option that best completes the gap(s)','','a','','utme','2010',3780,'Admin','0000-00-00 00:00:00','2020-07-02 11:34:02'),(566,'His wife was badly injured in the fracas, but I think  she will pull','up  ','over ','through ','back','choose the option that best completes the gap(s)','','c','','utme','2010',3773,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(567,'A wide range of options','is ','were   ','are',' was','choose the option that best completes the gap(s)','','d','','utme','2010',3671,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(568,'One of the women who .... in the premises.... been  ordered to quit ','sells/have ','sell/has  ','sell/have','sells/has','choose the option that best completes the gap(s)','','b','','utme','2010',3678,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(569,'The new trade agreement should facilitate…..... ','more economic rapid growth  ','economic more rapid  growth ','rapid economic more growth   ','more rapid economic growth.','choose the option that best completes the gap(s)','','d','','utme','2010',3803,'Admin','0000-00-00 00:00:00','2020-06-28 19:02:01'),(570,'The principal said that he was pleased......... my effort.',' on ','of ','with','about','choose the option that best completes the gap(s)','','c','','utme','2010',3749,'Admin','0000-00-00 00:00:00','2020-06-30 13:22:49'),(571,'Paper is made…….. wood pulp ','on ','of ','from ','with','choose the option that best completes the gap(s)','','c','','utme','2010',3715,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(572,'Long after everyone…... the hall, Obi still sat inside.','left','is leaving ','has left','had left','choose the option that best completes the gap(s)','','d','','utme','2010',3767,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(573,'They are the.... dresses ','babys\\' ','baby ','babies','babies\\'','choose the option that best completes the gap(s)','','d','','utme','2010',3779,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(574,'The politician was sent …….. exile','onto ','into','on ','to','choose the option that best completes the gap(s)','','c','','utme','2010',3751,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(575,'When we looked up, we …….... the plane some miles away. ','site ','cited ','sited ','sighted','choose the option that best completes the gap(s)','','d','','utme','2010',3805,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(576,'Vital... is still spread ……..... word of mouth in most villages in Africa. ','information/from  ','information/with','information/by ','information/through ','choose the option that best completes the gap(s)','','c','','utme','2010',3688,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:26'),(577,'Western  education is one of the ... of colonial rule','legacies  ','evidence ','remnants ','inheritance ','choose the option that best completes the gap(s)','','a','','utme','2010',3733,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(578,'The Federal Government has .... child trafficking ','postulated  ','projected ','prescribed ','proscribed','choose the option that best completes the gap(s)','','d','','utme','2010',3888,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(579,'The man was happy that his son confessed his guilt and so the others were .... ','implicated','accused ','punished ','Exonerated','choose the option that best completes the gap(s)','','d','','utme','2010',3761,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(580,'  Based on the facts before me, I have no alternative...........to hold you responsible ','only ','as ','than ','but','choose the option that best completes the gap(s)','','c','','utme','2010',3772,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(581,'Many people would always find reasons to ... the law','arrogate ','debase  ',' circumvent ','circumspect','choose the option that best completes the gap(s)','','c','','utme','2010',3645,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(582,'c<u>oup</u> ','whup  ','shoot ','couple ','scout','choose the option that has the same vowel sound as the one represented by the letters underlined.','','b','','utme','2010',3876,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(583,'ind<u>i</u>ct ','bright   ','fish ','pick ','brick','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3700,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(584,'r<u>oa</u>red ','towered ','coast ','brought ','rod','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3726,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(585,'shea<u>th </u>','bathe ','length ','months ','paths','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2010',3758,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(586,'<u>h</u>igh ','what  ','honest ','who ','vehicle','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3824,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(587,'o<u>f </u>course  ','plough ','dough ','over ','orphan','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3717,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(588,'boys ','stays  ',' moist ','noise ','elbows','choose the option that rhymes with the given word.','','c','','utme','2010',3889,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(589,'shine ','clean ','fine ',' machine ','lain','choose the option that rhymes with the given word.','','c','','utme','2010',3623,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(590,'seer ','snare   ','spare','spear ','square','choose the option that rhymes with the given word.','','c','','utme','2010',3691,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(591,'political ','politiCAL  ','POlitical','poliTlcal','poLltical','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3823,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(592,'satisfactory ','satisfacTORY  ','saTISfactory','SATisfactory ','satisFACtory','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3672,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(593,'captivity ','captiviTY   ','captiVIty  ','capTlvity','CAPtivity','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','c','','utme','2010',3682,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51'),(594,'EMEKA finished his home work yesterday ','Was Emeka helped to do his home work? ','Did Emeka do his home work yesterday?','When did Emeka finish his home work? ','Who finished his home work yesterday','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','d','','utme','2010',3719,'Admin','0000-00-00 00:00:00','2020-06-29 01:04:51'),(595,'Taiwo SAILED to London','Did Taiwo fly to London?',' Did Taiwo sail to Brazil','Did Taiwo sail to London?','Where did Taiwo sail to?','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','a','','utme','2010',3689,'Admin','0000-00-00 00:00:00','2020-06-28 19:02:01'),(596,'My bag is made of LEATHER ','Whose bag is made of leather? ','Is my bag made of polythene? ','Is Abu\\'s bag made of leather? ','Is my bag made of leather','the word in capital letters has the <i>emphatic stress.</i> Choose the option to which the given sentence relates','','b','','utme','2010',3754,'Admin','0000-00-00 00:00:00','2020-06-29 21:50:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `englishlit` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `englishlit` VALUES (1,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son','question is on William Shakespeare\\'s hamlet','','d','','post-utme','2006',105,'Admin','0000-00-00 00:00:00','2020-06-25 11:28:50'),(2,'Prince Hamlet refrains from killing King Claudius while the latter is praying because ','he does not want to murder a pious man ','he is not yet fully convinced of his uncle’s guilt  ','King Claudius might thereby gain eternal life ','murder of a person paying is an unpardonable sin ','question is on William Shakespeare\\'s hamlet','','b','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(3,'Which of these best describes setting in a novel? ','the place where an event takes place ','the time when an event takes place ','the place and time of an event ','the back ground of an event ','question is on William Shakespeare\\'s hamlet','','c','','post-utme','2006',99,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:28'),(4,'The farm Flincomb-Ash is symbolic of: ','Tess\\'s fallen state ','Tess\\'s innocence ','Tess\\'s happiness ','the suffering and ill-luck that is Tess\\'s fate','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','d','','post-utme','2006',107,'Admin','0000-00-00 00:00:00','2020-06-20 17:54:59'),(5,'Prince, in the novel, is','the title of Tess\\'s ravisher ','Angel Clare\\'s other name  ','the name of a horse ','the name of Tess\\'s brother ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-06-20 18:04:44'),(6,'The period Tess spends at Talbothays is the period of her:','the happiest period of her life ','the period she suffers most horribly in the novel ','the period she falls into temptation ','the period when she became pregnant ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','a','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(7,'The play starts with a ','flashback ','prayer ','muezzin ','dialogue ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',105,'Admin','0000-00-00 00:00:00','2020-06-25 11:03:08'),(8,'Caliph: \\\"Atthiru invites Mallam because ','Mallam has offended the caliph ','Mai Worno needs to be talked to ','Attahiru wants Mallam to explain the dream he had ','Mallam and Mai Wurno are friends ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',118,'Admin','0000-00-00 00:00:00','2020-06-23 18:39:36'),(9,'Caliph: \\\"You have spoken well. I agree with the Waziri\\' s suggestion. You shall be organize your men and build in new well in the market. “That is our judgement\\\". What informed this statement? ','Waziri fight with the white man ','Waziri\\'s disagreement with Sarkin Zango ','the dispute between Caliph Attahiru and Prince Muhammed al-Tahir  ','the dispute between Sarkin Zango and Sarkin Fatake.','question is on Attahiru, Ahmed Yerima\\'s play','','d','','post-utme','2006',100,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(10,'A five-line poem that treats a nonsensical subject with humour is a ','quartet ','limerick  ','panegyric  ','sestet.','','','b','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(11,'Which of the following statement is most true about poetry?  ','the meanings of words are more important than their sounds  ','the sounds of words are more important than their meanings  ','the sounds of words are often more important than their meaning  ','sounds and meanings of words are of little consequence ','','','a','','post-utme','2006',114,'Admin','0000-00-00 00:00:00','2020-06-25 11:45:32'),(12,'The expression “coin of gold” in “Naett, coin of gold” is ','personification ','epithet  ','metonymy  ','metaphor ','','','d','','post-utme','2006',98,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(13,'What figure of speech is “shining coal”?  ','paradox ','irony  ','oxymoron','paronomasia','','','c','','post-utme','2006',99,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(14,'The rhythm of the poem “Serenade” is  ','blue  ','jolting  ','jerky ','measured','','','c','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(15,'Which of these best defined exposition in drama? ','the author’s own general introduction to the play  ','the author’s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals ','the first performance of the play on stage ','','','c','','post-utme','2006',106,'Admin','0000-00-00 00:00:00','2020-06-23 12:42:54'),(16,'The tone or mood of the speaker in the poem is:  ','neutral  ','angry  ','happy  ','sad ','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.\\nAnd a few leaves lay on the starving sod,\\n…. They had fallen from an ash, and were gray\\n','','d','','post-utme','2006',112,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(17,'Starving sod\\\" here is: ','a metaphor ','a personification ','a simile ','a paradox.','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.','','b','','post-utme','2006',108,'Admin','0000-00-00 00:00:00','2020-06-22 17:40:20'),(18,'In Leopold Sedar Senghor\\'s \\\"I will pronounce Your Name\\\" Naeth represents ','Africa ','Senegal ','the poet\\'s mother ','the poet\\'s lover.','','','b','','post-utme','2006',102,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(19,'In Ofeimu\\'s \\\"we must learn Again to fly\\\" \\'Cumulus\\' symbolizes ','acloud ','old age ','sounded masses ','black hair.','','','b','','post-utme','2006',110,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(20,'A brief but witty expression is called: ','song ','epigram','enecdote ','joke ','','','b','','post-utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(21,'Pastoral poetry refers to the poetic composition of ','clergyman ','friare ','scops ','shepherds.','','','d','','post-utme','2006',111,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(22,'A literary composition that employs wit and humor to ridicule person or institution is','drama ','satire','norella ','clergy.','','','b','','post-utme','2006',107,'Admin','0000-00-00 00:00:00','2020-06-23 18:24:36'),(23,'In a tragedy, the moment when the protagonist suffers a reversal of fortune is know as ','eatharsis ','exposition ','enagnonsis ','peripeteia ','','','d','','post-utme','2006',111,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(24,'“When he was turned over, his eyeballs stared upward in amazement and horror, his mouth was locked torn wide: his trouser soaked with blood, were torn  open, and exposed to the cold , white air of morning the thick hairs of his groin, mattered together, black and rust red, and wound that seemed to be throbbing still\\\". This passage achieves realism through the use of ','details ','simple words ','the long sentence ','the past tense ','','','a','','post-utme','2007',109,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(25,'Earth has not anything to; show more  fair. Dull would he be of soul who could pass by a sight so touching in its majesty. This city now doth, like a garment, wear the beauty of the morning. It is suggested in this line that ','the beauty of the morning gains from the beauty of the city',' the beauty of the city gains  from the beauty of the morning','the beauty of the city and the beauty of the morning are unrelated ','there is no beauty on earth.','','','d','','post-utme','2007',112,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:13'),(26,'\\\"Of 0 cam fasten nut one cup upon him with that which he had drunk tonight already. He\\'ll be as full of quarrel and offence as my young mistress\\' dog ... \\\" Shakespeare, Othello  from the statement above it can be inferred that the speaker is ','disobedient ','quarrelsome ','drunkard ','scheming ','','','d','','post-utme','2007',114,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(27,'\\\"That that is why we must acc-c-cept the universal d-d-dome, b-b-because there is no d-d-d-direction, The b-b-bridge is the d-d-dome of religion and b-b- bridges d-don\\'t just g-g-go from here to the there; a bridge also face backwards\\\". Wole Soyinka, The Interpreters. The idiolectical feature of the character\\'s speech is the ','repetition of consonant sounds ','repetition of initial consonant sounds ','duplication of consonant sound clusters ','multiplication of diphthongs.','','','c','','post-utme','2007',107,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:16'),(28,'\\\"As virtuous men pass wildly away, and higher to their souls, to go,  Whilst some of their sad friends to say,  \\\"The breadth goes now\\\", and some say \\\"No\\\".  The tone of this poem is generally ','appreciative ','serious','imaginative ','conversational.','','','d','','post-utme','2007',107,'Admin','0000-00-00 00:00:00','2020-06-23 18:13:36'),(29,'I am alone, And the murmur of my lips carry song and tears homewards from a plain a way from home. Okogbule Wonodi. \\\"Lament for Shola\\\". The poet-persona here expresses a feeling of ','love ','anger ','nostalgia ','sorrow ','','','c','','post-utme','2007',98,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(30,'One rhyme scheme typical of the English sonnet is ','bba abba cde cde ','bba abba cde dce ','abab cdcd efef gg ','abcd babb cde cc','','','c','','post-utme','2007',117,'Admin','0000-00-00 00:00:00','2020-06-25 11:47:16'),(31,'Face thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2007',96,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(32,'A short witty statement is an ','epistle ','eulogy','epigram ','anecdote','','','c','','post-utme','2007',94,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(33,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2007',90,'Admin','0000-00-00 00:00:00','2020-06-22 19:23:35'),(34,'A literary device that creates a mental picture of a situation is ','imagery','symbolism ','flashback ','epilogue.','','','a','','post-utme','2007',109,'Admin','0000-00-00 00:00:00','2020-06-25 11:45:32'),(35,'Periphrasis in poetic diction is marked by ','circumlocution ','irony ','proverb ','parable.','','','a','','post-utme','2007',106,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:29'),(36,'A deliberate imitation of a literary style with the intention to ridicule is ','lampoon ','prosody ','pun ','parody.','','','d','','post-utme','2007',93,'Admin','0000-00-00 00:00:00','2020-06-20 08:25:01'),(37,'What happened to Tess at the end of Thomas Herds Tess of the D\\'urbervilles?','She is executed for committing murder ','She got married to Angel Clare ','She got married to Alec D’Urbervilles ','She gave birth to a baby boy.','','','c','','post-utme','2007',93,'Admin','0000-00-00 00:00:00','2020-06-25 15:13:37'),(38,'The wood where Alec raped Tess is known as: ','Chase borough ','The Chase ','Greenhill ','Trantridge.','','','b','','post-utme','2007',95,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(39,'The name of the place where Tess and Angel Clare meet each other the second time is: ','Tratridge ','Brazil ','Dubeyfield','Talbothays farm.','','','d','','post-utme','2007',106,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(40,'\\\"Taxi Driver\\\" in Timothy Wangusa\\'s \\\"A Taxi Driver on his Death\\\" can be interpreted as a metaphor describing ','a careful driver ','a ruthless dictator ','a drunkard ','a careless man.','','','b','','post-utme','2007',99,'Admin','0000-00-00 00:00:00','2020-06-23 12:49:17'),(41,'The tone in Dennis Brutus\\' \\\"A Troubadour I Traverse .... \\\" can be described as: ','defiant ','submissive ','regretful ','arrogant.','','','a','','post-utme','2007',103,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(42,'\\\"Naett\\\" in Leopold Sedar Senmghor\\'s \\\"I will Pronounce you Name\\\" refers to: ','South Africa ','a women ','a man ','Black Africa.','','','d','','post-utme','2007',90,'Admin','0000-00-00 00:00:00','2020-06-25 11:03:08'),(43,'\\\"Cloud I, early sequestered from my tribe, Free a lead - tethered scribe.\\\" The above lines\\' from J.P. Clark\\'s \\\"Agbor Dancer\\\" suggests that the persona is: ','one with his tribe ','alienated from his tribe ','one of the dancers ','one of the drummers.','','','b','','post-utme','2007',106,'Admin','0000-00-00 00:00:00','2020-06-24 08:34:58'),(44,'The name of the author of \\\"We Must Learn to Fly\\\" is: ','Dennis Brutus ','Leopold Sedar Senghor ','Odia Ofeimun ','Wole Soyinka.','','','c','','post-utme','2007',111,'Admin','0000-00-00 00:00:00','2020-06-22 18:56:28'),(45,'One of the following is a characteristic of a novel: ','It is written only in dialogues ','It adopts the poetic form ','It is written mainly in prose','It employs phrases and sentences.','','','d','','post-utme','2007',103,'Admin','0000-00-00 00:00:00','2020-06-25 11:41:15'),(46,'The law protecting works of art from unlawful reproduction is called: ','plagiarism ','illegal photocopying ','It is written mainly in prose','copyright.','','','d','','post-utme','2007',96,'Admin','0000-00-00 00:00:00','2020-06-21 11:19:22'),(47,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son. ','','','d','','post-utme','2007',111,'Admin','0000-00-00 00:00:00','2020-06-25 11:06:30'),(48,'What figure of speech does the following quotation contain? A life\\'s but a walking shadow (Macbeth)','a metaphor ','an image ','a synecdoche ','an allusion','','','a','','post-utme','2008',87,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:16'),(49,'Which of the following statement is most true about poetry? ','the meanings of words are more important than their sounds ','the sounds of words are more important than their meanings ','the sounds of words are often more important than their meanings ','sounds and meanings of words are of little consequence','','','a','','post-utme','2008',105,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(50,'Which of these best define exposition in drama?','the author\\'s own general introduction to the play ','the author\\'s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals','the first performance of the play on stage.','','','c','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:41'),(51,'When the speaker in a poem cannot be identified with poet, that speaker is called: ','a persona ','a dramatic persona ','a soliloquist','a ventriloquist.','','','a','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-06-21 11:54:58'),(52,'Which of these definitions best described a lyric? ','a short poem','a short poem in which the poet is speaking','a poem expressing a personal idea, feeling or mood','a poem divided into stanza.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:14'),(53,'An autobiographical novel is: ','a novel written about another novelist ','a true account of a novelist\\'s life by himself ','a novel in which h the novel 1st draws mainly on materials from his own life ','a novel using the\\' I\\' pronoun.','','','c','','post-utme','2008',106,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(54,'Plot in prose fiction is best defined as:  ','the cause and effect sequence of events  ','the brief summary of events  ','the central event  ','the subject-matter of a novel.','','','a','','post-utme','2008',112,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(55,'Which of these is not true about unity of action in a novel? ','action may be unified through a single main character  ','action may be unified by being set in one place  ','action may be unified by many characters  ','action may be unified by using set in one consistent point of view.','','','a','','post-utme','2008',114,'Admin','0000-00-00 00:00:00','2020-06-29 23:55:57'),(56,'Action in a novel is best defined as:  ','the summary of the novel’s story  ','what the characters do or say in the novel  ','the numerous sub-plots of the novel put together ','the totality of all the episodes in a novel leading to the conclusion','','','b','','post-utme','2008',99,'Admin','0000-00-00 00:00:00','2020-06-25 11:03:51'),(57,'Suspense in a novel means:  ','the postponement of the hero’s death till the last possible moment ','the intense emotions that the author conveys  ','the inconclusive end of a novel  ','when we are curious about what happens next in a novel.','','','d','','post-utme','2008',96,'Admin','0000-00-00 00:00:00','2020-06-25 11:42:49'),(58,'A realistic novel is one in which the characters are:  ','real   ','historical ','just of above average intelligence  ','the types that we meet in everyday life.','','','a','','post-utme','2008',101,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(59,'Theme is best defined as:  ','the subject – matter of a novel or play ','the central idea in a play or novel  ','the point of view in that novel  ','the sum-total of all the characters’ experiences','','','a','','post-utme','2008',100,'Admin','0000-00-00 00:00:00','2020-06-23 12:02:31'),(60,'What kind of repetition is used in the extract?  ','anaphora ','single word repetition  ','line repetition  ','phrase repetition.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',96,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:29'),(61,'A part from emphasis, what other effect does the repetition have?  ','makes the poem rhythmical  ','makes the poem tedious  ','makes the poem -notonous  ','makes the poem exhilarating.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-06-20 15:59:09'),(62,'The following line from a poem:  Western wind, when will thou blow? Is an example of: ','rhetorical question  ','caesura  ','alliteration  ','nature imagery.','','','a','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(63,'Identify the odd one out of these types of imagery  ','visual imagery  ','tactile imagery  ','synesthesia  ','literal imagery.','','','d','','post-utme','2008',110,'Admin','0000-00-00 00:00:00','2020-06-23 17:31:05'),(64,'When a poet uses mainly soft vowel sounds in a poem, the texture of the poem is ','mellifluous ','harsh ','assonantal ','neutral ','','','a','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(65,'The sounds in the following lines may be described as an example of: The moan of doves in immemorial elms, and murmuring of innumerable bees ','alliteration ','euphony ','cacophony ','a mixture of all the above.','','','b','','post-utme','2008',111,'Admin','0000-00-00 00:00:00','2020-06-25 11:45:32'),(66,'\\\"The man dies in him who keeps silent in the face of tyranny.\\\" This statement can be described as: ','Metaphoric ','Literal ','Tragic ','A smile.','','','a','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-06-25 12:01:13'),(67,'The literary technique in which a reader is taken to the past of a current action in known as:','rewinding ','fast forward ','flashback ','repetition.','','','c','','post-utme','2008',102,'Admin','0000-00-00 00:00:00','2020-06-21 11:55:11'),(68,'One rhyme scheme typical of the English sonnet is ','abba abba cde dce ','abba abba cde cde ','abab cdcd efef gg ','abcd babb cde cc.','','','c','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-06-23 12:49:17'),(69,'The speaker of the above except is a ','son of Lord Montague ',' nephew to Lady Capulet ','kinsman to the Prince ',' servant to Paris.','\\\" ... This is a Montague, our foe; A villain, that is hither come in spit. To scorn at out solemnity this night. William Shakespeare: Romeo and Juliet I:V,61-63. ','','b','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(70,'In Gbemisola Adeoti\\'s \\\"Naked Soles\\\", the expression \\\"red milk of grief\\' means ','wine ','sea ','ink ','blood.','','','d','','post-utme','2008',87,'Admin','0000-00-00 00:00:00','2020-06-22 17:20:38'),(71,'Farce thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(72,'A short witty statement is an ','epistle ','eulogy ','epigram ','anecdote.','','','c','','post-utme','2008',108,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(73,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2008',89,'Admin','0000-00-00 00:00:00','2020-06-25 11:47:16'),(74,'Literary device that creates a mental picture of   a situation is ','imagery ','symbolism ','flashback ','epilogue','','','a','','post-utme','2008',98,'Admin','0000-00-00 00:00:00','2020-06-23 12:42:54'),(75,'To whom does her in line 5 refers to?  ','God  ','Letter  ','World ','Nature','This is my letter to the world\\nThat never wrote to me\\nThe simple news nature told\\nWith tender majesty\\nHer message is committed\\nTo hands, I cannot see;\\nFor love of her, set countrymen,\\nJudge tenderly one me.\\n','','d','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(76,'The suddenly her heart was whipped up, she now rode on strange waves: alone defying the wind and the rain; alone, fighting hunger and thirst in the desert, alone, struggling with strange demons in the forest bringing  glad tidings to her people. The mood of the lady in this  passage is one of ','simple defiance ','defeat  ','triumphant  ','depression','','','c','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-06-25 12:00:05'),(77,'Mother, didn’t you hear me? I’ve brought the goat, hen and yams. Don’t you want them anymore? Why do you continue to look at me like that? I haven’t done anything wrong, again, have I, answer me, speak to me, mother’  The  dominant mood in this passage is one of ','sadness ','anxiety  ','anger  ','nonchalance.','','','b','','post-utme','2009',100,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(78,'What distinguishes poetry from other  forms of literature is its  ','Rhyme and verse ','rhythm and metaphor ','emotion and feeling  ','irony and paradox','','','a','','post-utme','2009',103,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(79,'Assonance poetry is the repetition of ','internal vowels in words ','consonant sounds in words ','final sounds at the end of a line 1 ','final sounds at the beginning of a line','','','a','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(80,'There knells a jigger, a louse , a weevil, a flea, a bedbug! He is mistletoe, a parasite that lives on the trees of other people’s! the speaker uses a string of ','metaphors  ','parables  ','hyperboles  ','riddles','','','a','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-06-23 11:16:54'),(81,'As literacy form the short  story is most closely related to ','the discourse ','the novel  ','story telling  ','poetry ','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-06-20 16:19:35'),(82,'A poem written on a grand theme, in an appropriately grand style, dealing, with heroic figures is called ','an epigram  ','an epic ','a soliloquy ','heroic poem','','','b','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-06-23 11:19:13'),(83,'The literary device which uses ridicule to correct social ills is known as ','anecdote  ','saturation  ','hyperbole  ','satire.','','','d','','post-utme','2009',112,'Admin','0000-00-00 00:00:00','2020-06-22 18:00:30'),(84,'Characterization is a novel means the ','list of characters featuring in it ','peculiar materialisms of the narrator ','mode of presenting the fictional individuals ','list of those that act the novel.','','','d','','post-utme','2009',111,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(85,'Caricature is used to ','censure an individual by emphasizing his weakness ','expose the folly  in literature  ','ridicule a person by distorting his most prominent features ','elicit the artistic potential of dramatist.','','','c','','post-utme','2009',98,'Admin','0000-00-00 00:00:00','2020-06-25 11:44:07'),(86,'The branch of knowledge that places emphasis on beauty is ','philosophy ','ode to pretty ','philology ','aesthetics.','','','d','','post-utme','2009',100,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(87,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','‘You kiss her on the cheek \\nYou kiss her open-sore lips\\nAs white people do.\\nYou suck slimy saliva\\nFrom each other’s moths.\\nAs white people do.\\nOkot P’ Breck’s song of larie\\n','','b','','post-utme','2009',98,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(88,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','','','d','','post-utme','2009',111,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(89,'‘Beholds her, single in the field you solitary Highland Lass! Reaping and singing, by herself stop here, or gently pass! Alone she cuts and blinds the gram, and sings a melancholy strain, O listen! For the Vale profound Is overflowing with the sound. The rhyming schema in the first stanza of The Solitary Reaper above is ','abcbddee ','ababccdd ','alxabcdd ','abcbddef','','','a','','post-utme','2009',103,'Admin','0000-00-00 00:00:00','2020-06-23 12:49:17'),(90,'The tone of the poet is ','optimistic ','dupplicatory  ','sympathetic ','piteous','These only tears\\nDripping down the tears on your depressed face.\\nWill one day be staunche.\\nI swear’ \\n','','a','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:13'),(91,'The literary device  which anticipates that an event will take place is best described as ','parody ','flashback ','foreshadowing ','rising action ','','','c','','post-utme','2009',96,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(92,'The multiple deaths in the play serve as a punishment for ','impatience on the part of  Romeo and Juliet; ','imposing life partners on children ','disobedience of the protagonists  ','Tybalt’s fiery temper.','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-06-22 19:17:30'),(93,'Romeo’s death becomes inevitable because ','Emire Lawrence’s is not delivered: ','Juliet is married to Paris ','Romeo kills Tybalt in a duel ','Juliet has committed suicide.','Question is based on William Shakespeare’s Romeo and Juliet','','a','','post-utme','2009',97,'Admin','0000-00-00 00:00:00','2020-06-22 21:21:23'),(94,'Before he met Juliet, Romeo was in love with ','country Paris ','Rosaline  ','Benvolio  ','Mercuito','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:14'),(95,'The major reason for Juliet’s  grief is ','The death of her cousin; ','her reluctant marriage to Romeo  ','the banishment of her lover ','her imminent death.','Question is based on William Shakespeare’s Romeo and Juliet','','c','','post-utme','2009',101,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(96,'Winston Smith begins his rebellion against the power of the state by ','educating the youth  ','keeping a private diary  ','purchasing arms ','disobeying Big Brother.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',108,'Admin','0000-00-00 00:00:00','2020-06-23 15:51:17'),(97,'In the novel, Orwell attempts  to ','eulogizes the beauty of the socialist system; ','condemn the disgusting hypocrisy of all communist systems; ','satirize the artificiality  of a machine controlled society ','deride the political lock jam in Nigeria.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',100,'Admin','0000-00-00 00:00:00','2020-06-23 11:21:36'),(98,'“The experts, of course disagree the urine test they ordered ‘said, Negative’. The lives above from acqah’s in the Nanel of the soul depict ','awareness ','inevitability ','progress ','contradiction.','Question is based on selected poems','','d','','post-utme','2009',101,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(99,'In Kunene’s Heritage of Liberation, freedom is to be achieved through the efforts of ','the new generation  ','the old generation ','present generation ','successive generations.','Question is based on selected poems','','d','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(100,'The thematic pre-occupation of de Graft’s  Sons and Daughters can be summarized as ','the import of Western education ','the roles of women in modern economy ','how to become a lawyer ','dimly life in the face of social changes.','','','d','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(101,'Lawyer Bonu in de Grafts Sons and Daughters can be described as a: ','caring father ','faithful husband ','deceitful friend ','shrewd politician.','','','d','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-06-25 12:00:05'),(102,'De graft’s Sons and Daughters is structured into: ','three acts ','four scenes ','two acts ','five Episodes.','','','a','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(103,'The central  conflict in de Graft’s Sons and Daughter is primarily: ','political ','generational ','racial','communal','','','d','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-06-20 11:11:45'),(104,'He already had five wives and was soon going to break the legs of the antelope for the sixth time’. The expression ‘break the legs of the antelope’ means to: ','be ON honeymoon ','offer ritual sacrifice ','hunt for antelopes  ','have a  new baby.','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',105,'Admin','0000-00-00 00:00:00','2020-06-22 18:03:31'),(105,'The medal in Oyono’s The Old man and the  two sons and his: ','house ','horse  ','land ','Job','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',113,'Admin','0000-00-00 00:00:00','2020-06-25 11:42:01'),(106,'Kelara in Oyono’s The Old man and the Medal is: ','Mvodo’s sister ','commandant’s maid  ','Meka’s wife ','Agatha’s cousin.','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',93,'Admin','0000-00-00 00:00:00','2020-06-25 11:53:45'),(107,'In Oyonon’s The Old Man and the Medal, Ignatius Obebe isa : ','driver ','soldier ','carpenter ','catechist.','Question is  based on Oyono’s Old man hand the medal','','d','','post-utme','2010',86,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:13'),(108,'The medal in Oyono’s The Old man and the medal is a symbol of: ','colonial deceit ','African pride  ','genuine reward for loyalty ','respect and honour','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(109,'Dancing through blooming thorns” in Gbemisola  Adeoti’s Naked soles” connotes: ','hoeing a field of thorns ','dancing  in a keen competition ','being merry amidst suffering','playing flowers and plants.','Question is are based on selected African poems.','','c','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-25 11:30:46'),(110,'In Gbemisola Adeoti’s Naked Soles”, the expression red milk of grief’ refers to: ','wine  ','Ink ','blood ','palm-oil','Question is are based on selected African poems.','','c','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-20 14:50:15'),(111,'In Masizi Kunene’s “A Heritage of Liberation; this season’ refers to the period of: ','oppression ','freedom  ','migration  ','resettlement','Question is are based on selected African poems.','','b','','post-utme','2010',96,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(112,'“Eagle in Kunene’s  “A Heritage  of  Liberation” is a symbol of: ','deceit ','peace ','agility ','death.','Question is are based on selected African poems.','','d','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(113,'The tone in Gbemisola Adeoti’s Naked soles” is that of ','reconciliation  ','lamentation  ','exhortation ','admiration','Question is are based on selected African poems.','','b','','post-utme','2010',99,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:16'),(114,'The attitude of the poet-Persona toward bats in D.H. Lawrence’s “Bats” is that of ','revulsion ','veneration  ','admiration  ','indifference.','Questions is based on Non-African Poetry','','a','','post-utme','2010',106,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(115,'In China, according to D.H. Lawrence, bats are symbols of: ','death  ','birth ','caution ','joy','Questions is based on Non-African Poetry','','d','','post-utme','2010',95,'Admin','0000-00-00 00:00:00','2020-06-20 18:41:10'),(116,'In Wendy Cope’s Sonnet VII,  poetry is regarded as a God –given weapon to: ','musicians ','recluses ','nomads ','pilgrims.','Questions is based on Non-African Poetry','','b','','post-utme','2010',107,'Admin','0000-00-00 00:00:00','2020-06-25 11:49:23'),(117,'The greatest challenge to the poet-persona in Andrew Marvell’s “To His Coy Mistress’ is : ','chariot ','love  ','time ','youth','Questions is based on Non-African Poetry','','c','','post-utme','2010',108,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(118,'But the pigs were so clever that they could think of a way around every difficulty. As for the horses, they know every inch of the field and in fact understood the business of mowing and raking”. The dominant literary device in the excerpt above is ','repetition ','mimesis ','ellipsis ','personification.','Question is  based on literary appreciation','','d','','post-utme','2010',107,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(119,'“The dairy maids and men had flocked down from their cottages and out of the dairy-house with the arrival of the cows from the meads: the maids walking in  patterns, not on account of weather, but to keep their shoes above the mulch of the barton”. The setting of the above  passage can be described as: ','urban  ','celestial ','pastoral  ','religious.','Question is  based on literary appreciation','','c','','post-utme','2010',92,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(120,'“O mother, my mother!...How could I be expected to know? I was a child when I left this house four months ago. Why didn’t  you tell me there was danger in men-folk? Why didn’t you warn me?” the speech above achieves its literary effect through the use of: ','litotes  ','onomatopoeia ','allusion  ','repetition.','Question is  based on literary appreciation','','d','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:59'),(121,'“The animals saw no reason to disbelieve him, especially as they could no longer remember very clearly  what conditions had been like before the rebellion. All the same, there were days when they felt that they would sooner have had less figures and more food”. The tone of the passage above is quite: ','exhilarating ','cynical ','optimistic ','obsequious.','Question is  based on literary appreciation','','b','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-22 20:35:01'),(122,'“We are tired of waiting for another war our trees their leaves have shed the winter has come and gone spring flowers have blossomed and withered” in line 2 of the poem above, the poet uses:','ellipsis ','alliteration ','inversion  ','oxymoron.','Question is  based on literary appreciation','','c','','post-utme','2010',111,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(123,'The poet personal in the poem above is: ','resigned to fate  ','a holy man  ','a daily traveler  ','suffering but optimistic. ','“I come and go\\na pilgrim\\ngrubbily unkempt\\nstubbornly cheerful\\ndefiantly whistling hope\\nand grubbing for crumbs of success\\nout of all near-defeats.\\n','','d','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(124,'A novel that has a very strong presence of the supernatural is known as ______ ','faction  ','gothic  ','travel tale  ','fairy novel ','','','d','','post-utme','2012',111,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:13'),(125,'In a tragic-comedy, the unknotting of the plot, the resolution of the mystery and the resolution of the misunderstanding is called  ','exposition   ','denouement   ','catharsis  ','hubris','','','b','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-06-12 13:05:40'),(126,'The exclusive right given to authors to protect their works from unlawful production or reproduction is   ','A copyright  ','an authority to write  ','an author’s right   ','a constitutional provision ','','','a','','post-utme','2012',110,'Admin','0000-00-00 00:00:00','2020-06-23 11:16:40'),(127,'An epic deals with  ','humour  ','tragedy  ','gothic  ','hero','','','d','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(128,'The sudden revelation of events as they happen is called  ','epiphany  ','revelation  ','relay-events  ','resonance ','','','d','','post-utme','2012',98,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(129,'Comic relief is used in a work of art to  ','to suspend disbelief  ','to maneuver the portal of narration  ','to create chiaroscuro  ','to suspend to tension ','','','d','','post-utme','2012',106,'Admin','0000-00-00 00:00:00','2020-06-25 11:06:30'),(130,'The image in this excerpt suggest ','happiness  ','sorrow ','anger  ','kindness','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','b','','post-utme','2012',106,'Admin','0000-00-00 00:00:00','2020-06-20 11:38:33'),(131,'The world as used above is an example of  ','irony  ','metaphor ','exaggeration  ','parody ','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','c','','post-utme','2012',95,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:59'),(132,'This extract is an example of  ','dirge  ','satire  ','ode  ','sonnet','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',109,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(133,'The general  idea in the extract is ','neglect  ','praise  ','ridicule  ','worship','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',105,'Admin','0000-00-00 00:00:00','2020-06-23 15:52:06'),(134,'  The central motif in this excerpt is  ','religious  ','pride  ','poverty  ','deceit ','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',103,'Admin','0000-00-00 00:00:00','2020-06-25 11:15:14'),(135,'The extract is an example of  ','pun  ','hyperbole  ','Irony  ','parody','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',94,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(136,'“Your hand is heavy, Night, upon by brow” is an example of  ','hyperbole  ','onomatopoeia  ','apostrophe  ','oxymoron ','','','a','','post-utme','2012',111,'Admin','0000-00-00 00:00:00','2020-06-22 17:40:20'),(137,'From this passage, the people that the writer admire are  ','poor  ','brilliant   ','rich   ','unassuming ','(Extract for question)\\nThe human beings who I most admire are those without sterling qualities but are extraordinary in their ordinariness, the unsung heroes who will never be in the limelight or boulevard of fame, people who do great things when no one is watching or those who are not marked with the maple leaves of chieftaincy titles. They only wear fate, hard work, perseverance, anonymity and time. Yet, they are passionate, caring, visionary, sincere, determined and honest. These qualities mold those that are special without being aware. I strive to stay true to some of these qualities that I admire. To find a person with a few of these qualities is rare these days. To know someone who has all of them is amazing and a true blessing. [Excerpt from Tomorrow Left Us Yesterday-Tayo Olafioye]\\n','','d','','post-utme','2012',97,'Admin','0000-00-00 00:00:00','2020-06-23 12:02:31'),(138,'The writer informs the reader that people with good qualities are  ','many  ','few  ','fearful  ','famous','','','b','','post-utme','2012',104,'Admin','0000-00-00 00:00:00','2020-06-25 11:48:35'),(139,'Aaron’s brother who trains as an accountant is  ','George  ','Awere  ','Owusu  ','Kofi','Question is based on Joe de Graft’s Sons and daughters','','d','','post-utme','2012',116,'Admin','0000-00-00 00:00:00','2020-06-25 12:01:13'),(140,'Which of the following is true of the Awere?  ','He is the fiancé of Maanan  ','He is a chartered accountant   ','He wins a scholarship to Goldsmith College  ','He wants to study dance and choreography ','Question is based on Joe de Graft’s Sons and daughters','','a','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(141,'The conflict in the play centres around  ','gender  ','generation  ','religion  ','ethnicity ','Question is based on Joe de Graft’s Sons and daughters','','b','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:25'),(142,' The text of Shakespeare’s Romeo and Juliet is sourced in ','1623 second Folio  ','1590 rehearsal guide  ','1599 Quarto  ','1616 manuscript ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','a','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(143,'“There’s no trust No faith, no honesty in men, all perjured, All forsworn, all naught, all dissembles” The speaker of the above excerpt is ','Nurse  ','Juliet  ','Balthasaar  ','Capulet ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','b','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(144,'Another Suitor of Juliet in the play is  ','Mercutio  ','Gregory  ','Duke  ','Paris','Question is drawn from William Shakespeare’s ROMEO and JULIET','','d','','post-utme','2012',107,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:41'),(145,'In the novel, the Ministry that is responsible for news, entertainment and fine arts in the Ministry of  ','Peace  ','Love  ','Plenty  ','Truth','Question is based on George Orwell’s Nineteen Eight Four','','d','','post-utme','2012',97,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:16'),(146,'The Ministry of Plenty in the Novel is responsible for  ','War  ','economic affairs  ','Population  ','Agriculture ','Question is based on George Orwell’s Nineteen Eight Four','','b','','post-utme','2012',98,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:41'),(147,'The national day in The Old Man and the Medal is  ','1st of October  ','27th of May  ','12th June  ','14th July','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','d','','post-utme','2012',106,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(148,'In Joys of Motherhood, Dr Meers is  ','Nnaife’s master  ','Nnuego’s uncle  ','The District Officer  ','An ombudsman','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','a','','post-utme','2012',88,'Admin','0000-00-00 00:00:00','2020-06-20 11:31:23'),(149,'“ I don’t see how any mother who cares for the modesty of her daughter can coolly sit down there and defend such waywardness”. “way wardness” in the except above refers to  ','sexual immorality  ','painting  ','dancing  ','disobedience ','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(150,'Aaron’s painting is purchased by an American collector for the sum of ','250 dollars  ','220 pounds ','260 cedis  ','280 francs ','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-06-19 19:04:11'),(151,'James Ofosu is pleased with George because he studies ','Law  ','Accountancy ','Engineering   ','Medicine ','Question is  based  on Joe de Graft’s Sons and Daughters.','','d','','post-utme','2013',95,'Admin','0000-00-00 00:00:00','2020-06-25 11:44:07'),(152,'Joe de Graft’s Sons and daughters is an example of ','domestic comedy ','dark comedy ','restoration comedy ','comedy of error','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-05-04 18:49:13'),(153,'The central conflict in the play is about  ','Lawyer Bonu’s attempt to seduce Maanan  ','career choice for James Ofosu’s children  ','Hannah’s lack of respect for James  ','Fosuwa’s bid to force Lawyer Bonu on Maanan','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-06-22 18:58:30'),(154,'David Rubadiri in “An African Thunderstorm” paints a graphic picture of the Thunderstorm through  the use of ',' simile and personification  ',' Irony and imagery',' hyperbole and rhyme ','innuendo and satire ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(155,'In Andrew Marvell’s “To his Coy mistress”, the poet adopts a consistent rhyming scheme of ','sestet    ','Couplet ',' tercet  ','free verse','Question is based on African and Non-African Poetry  ','','b','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:16'),(156,'Mazisi Kunene is an African poet from  ','Ghana ','Nigeria  ','Malawi  ','South Africa','Question is based on African and Non-African Poetry  ','','d','','post-utme','2013',114,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(157,'In T.S. Eliot’s “The Journey of the Magi”, the journey can be described as  ','delightful   ','unnecessary ','allegorical  ','symbolic ','Question is based on African and Non-African Poetry  ','','c','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(158,'The dominant figurative device  in Kobena Acquah’s “In the Navel of the Soul” is','metaphor   ','assonance  ','paradox   ','euphemism ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-06-25 11:30:46'),(159,'‘fellow wayfarer…what good news do you bring me?\\\" The statement above is addressed by Meka to','the Commandant’s messenger ','a passing dog   ','a dove ','Engamba ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','post-utme','2013',98,'Admin','0000-00-00 00:00:00','2020-06-25 11:28:50'),(160,'Gullet is so named by the natives because of his  ','razor-sharp wit  ','long neck ','closeness to the people ','hostility ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','b','','post-utme','2013',108,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(161,'The medal in the novel is a symbol of  ','ungodliness   ','victory   ','admiration ','deceit ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','d','','post-utme','2013',95,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(162,'In the Joys of Motherhood, the joy of a mother is predicated on having ','husband    ','sons ','daughters   ','wealth ','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','b','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-06-25 12:00:05'),(163,'The protagonist of the novel is  ','Nwokocha Agbadi ','Nnaife  ','Nwakusor ','Nnu Ego.','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(164,'From the conclusion of the novel, the author implies that ','rebellion is fruitless ','opposition pays ','two and two make four ','knowledge gives freedom.','Question is based on George Orwell’s Nineteen Eighty Four','','a','','post-utme','2013',101,'Admin','0000-00-00 00:00:00','2020-06-20 16:26:08'),(165,'“It was an enormous  pyramidal structure of glittering white concret, soaring up, terrace after terrace, 300 metres into the air”.','Being described in the except above is  ','The party secretariat','O’ Brien’s  residence  ','The ministry of truth ','The Ministry of Plenty ','','c','','post-utme','2013',98,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(166,'In the novel, Oceania is at war with  ','Romania   ','Catalonia    ','Eastasia ','Rhodeia','','','c','','post-utme','2013',95,'Admin','0000-00-00 00:00:00','2020-06-23 15:44:44'),(167,'“Minipax” in the true sense means ','ministry of Truth ','Ministry of Love  ','Ministry of War  ','Ministry of Plenty ','Question is based on George Orwell’s Nineteen Eighty Four','','d','','post-utme','2013',105,'Admin','0000-00-00 00:00:00','2020-06-23 17:32:44'),(168,'In the Newspeak language, “duckspeak” is a word that simultaneously  refers to ','love and admiration  ','knowledge and ignorance  ','now and then ','abuse and praise ','Question is based on George Orwell’s Nineteen Eighty Four','','b','','post-utme','2013',110,'Admin','0000-00-00 00:00:00','2020-06-25 11:42:01'),(169,'Hermeneutics is an art of  ','Calculation  ','exaggeration ','composition  ','interpretation ','Question is based on General literary principles.','','d','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:59'),(170,'A poem written in unrhymed five stress lines is called  ','ballad  ','Blank verse ','sonnet      ','Ode','Question is based on General literary principles.','','b','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-06-25 11:42:01'),(171,'The type of sonnet that has an octave and a sestet has its origin in  ','England  ','Spain ','Portugal   ','Italy','Question is based on General literary principles.','','d','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-06-23 18:43:11'),(172,'The tone of the excerpt above is  ','jubilant  ','condemnatory ','adulatory  ','defiant ','“We own this land \\n And the swamps\\n The palms\\n And the mangroves;\\n We ‘ll die defending them”\\n Tony Afejuku “Land Song”  \\n','','d','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(173,'The figurative devices in the excerpt above are  ','rhyme and metaphor  ','alliteration and assonance  ','repetition and simile  ','rhyme and onomatopoeia ','“Her voice is a shell borne by the waves to crack the egg my soul sorely craves”\\nSegun Adekoya  “Love Blues” \\n','','a','','post-utme','2013',87,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(174,'A speech in a play in which a character speaks his or her thoughts alone is','monologue','an aside','a soliloquy','an epilogue','','','c','','wassce','2015',78,'Admin','2016-12-12 05:41:49','2020-06-25 23:38:59'),(175,'In Literature, repetition is used essentially for','rhyme','suspense','allusion','emphasis','','','d','','wassce','2015',82,'Admin','2016-12-12 05:41:49','2020-06-24 08:34:58'),(176,'The pattern of poem without reference to its content is referred to as the','limerick','metre','free verse','form','','','c','','wassce','2015',91,'Admin','2016-12-12 05:41:49','2020-06-24 20:35:01'),(177,'The performers in a play constitute the','chorus','characters','audience','cast','','','b','','wassce','2015',85,'Admin','2016-12-12 05:41:49','2020-06-25 11:03:51'),(178,'The stanza is an example of','appellation','apostrophe','euphemism','elegy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',99,'Admin','2016-12-12 05:41:49','2020-06-25 11:42:01'),(179,'Pan is used here as','an allusion','symbol','irony','metonymy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','a','','wassce','2015',98,'Admin','2016-12-12 05:41:49','2020-06-25 11:32:22'),(180,'The rhyme scheme of the stanza is','abcabcc','ababcdd','babaccc','bcbccaa','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',90,'Admin','2016-12-12 05:41:49','2020-06-26 18:35:17'),(181,'A metrical foot in which a stressed syllable is followed by an unstressed syllable is','iambic','spondaic','trochaic','dactylic','','','c','','wassce','2015',84,'Admin','2016-12-12 05:41:49','2020-06-24 08:59:29'),(182,'________ is the location of the action of the plot','Setting','Narrative technique','Point of view','Characterization','','','a','','wassce','2015',92,'Admin','2016-12-12 05:41:49','2020-06-25 23:38:59'),(183,'A ballad is essentially a ____________ poem','descriptive','dramatic','pastoral','narrative','','','d','','wassce','2015',93,'Admin','2016-12-12 05:41:49','2020-06-22 17:42:29'),(184,'The first four lines of the Shakespearean sonnet rhyme','abcd','abba','abab','cdcd','','','c','','wassce','2015',84,'Admin','2016-12-12 05:41:49','2020-06-24 20:35:01'),(185,'A story in which characters or actions represent abstract ideas or moral qualities is','an epic','a legend','an allegory','a satire','','','c','','wassce','2015',73,'Admin','2016-12-12 05:41:49','2020-06-22 18:03:31'),(186,'The use of imagery in prose or verse','appeals to the senses','develop the plot','create confusion','obscures meaning','','','a','','wassce','2015',84,'Admin','2016-12-12 05:41:49','2020-06-25 23:38:59'),(187,'The lines illustrate','soliloquy','parallelism','dialogue','contrast','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','b','','wassce','2015',89,'Admin','2016-12-12 05:41:49','2020-06-26 18:35:18'),(188,'‘heads’ in the second line is an example of','synecdoche','inversion','epithet','conceit','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','a','','wassce','2015',89,'Admin','2016-12-12 05:41:49','2020-06-26 18:35:17'),(189,'A character that develops in the course of  a novel or play is described as','flat','antagonist','round','protagonist','','','c','','wassce','2015',89,'Admin','2016-12-12 05:41:49','2020-06-24 09:07:41'),(190,'A dirge is a poem sung','to send a child to sleep','to make workers happy','at a birthday party','at a funeral','','','d','','wassce','2015',92,'Admin','2016-12-12 05:41:49','2020-06-22 17:03:21'),(191,'In drama, the ___________ creates humour','hero','clown','villain','chorus','','','b','','wassce','2015',88,'Admin','2016-12-12 05:41:50','2020-06-22 21:21:23'),(192,'<em>Let me not love thee if l love thee not</em> illustrates','metaphor','proverb','paradox','meiosis','','','c','','wassce','2015',93,'Admin','2016-12-12 05:41:50','2020-06-24 08:59:16'),(193,'__________ is a literary device used to express something unpleasant in a more acceptable manner','Epilogue','Epigram','Euphemism','Eulogy','','','c','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-06-22 18:51:42'),(194,'The writer’s attitude to the couple is one of','resignation','indifference','patronage','praise','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','a','','wassce','2015',97,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:18'),(195,'The dominant literary device used in the passage is','litotes','personification','simile','paradox','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',90,'Admin','2016-12-12 05:41:50','2020-06-25 11:56:29'),(196,'The rhetorical question that ends the passage stresses the','wickedness of thieves','poverty of the couple','security of the hut','filthiness of the surroundings','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',83,'Admin','2016-12-12 05:41:50','2020-06-25 11:49:23'),(197,'The expression ‘such a rude room of such a poor pair’ illustrates','onomatopoeia','pun','rhyme','alliteration','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',72,'Admin','2016-12-12 05:41:50','2020-06-20 13:08:02'),(198,'The setting is','dawn','sunset','midday','night','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',90,'Admin','2016-12-12 05:41:50','2020-06-23 18:01:13'),(199,'The rhyme scheme is','aabbccddeeff','ababababaabb','abcaabbcabab','abbaabcaabab','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',84,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:17'),(200,'The theme of the poem is','the love of mother','invoking the spirit of womanhood','admiration for women’s hard work','the suffering of women','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',84,'Admin','2016-12-12 05:41:50','2020-06-25 11:47:16'),(201,'The literary device used in line 7 is','conceit','personification','hyperbole','pathos','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',81,'Admin','2016-12-12 05:41:50','2020-06-24 20:35:01'),(202,'The poet’s tone is one of','sadness','joy','condemnation','sarcasm','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',85,'Admin','2016-12-12 05:41:50','2020-06-22 21:21:23'),(203,'“To bring forth sons and daughters brave” illustrates','paradox','zeugma','inversion','epigram','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','c','','wassce','2015',82,'Admin','2016-12-12 05:41:50','2020-06-22 21:24:14'),(204,'The speaker is','Gonzalo','Antonio','Prospero','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',93,'Admin','2016-12-12 05:41:50','2020-06-23 13:00:48'),(205,'The addressee is','Ariel','Ferdinand','Caliban','Miranda','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',71,'Admin','2016-12-12 05:41:50','2020-06-25 11:45:32'),(206,'The “impostor” is','Sebastian','Antonio','Ferdinand','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',104,'Admin','2016-12-12 05:41:50','2020-06-27 12:56:48'),(207,'The “advocate” and the “impostor” are','conspirators','enemies','suspicious of each other','attracted to each other','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',76,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:17'),(208,'The speaker’s utterance betrays his','anger','pretense','hatred','sorrow','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','b','','wassce','2015',83,'Admin','2016-12-12 05:41:50','2020-06-25 11:03:08'),(209,'The speaker is','Gonzalo','Antonio','Sebastian','Alonso','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',106,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:17'),(210,'“these words” refer to','the shipwreck','the son’s disappearance','the daughter’s wedding','Prospero’s magic','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','b','','wassce','2015',79,'Admin','2016-12-12 05:41:50','2020-06-25 11:45:32'),(211,'Where did the wedding take place?','Algiers','Milan','Tunis','Naples','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','c','','wassce','2015',92,'Admin','2016-12-12 05:41:50','2020-06-24 20:35:01'),(212,'The setting is','outside Prospero’s cell','on a ship','in front of Prospero’s cell','another part of the island','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',71,'Admin','2016-12-12 05:41:50','2020-06-24 08:59:16'),(213,'“.... in my rate” means','I’m very certain','so far as I can see','there’s no doubt','as it appears','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',94,'Admin','2016-12-12 05:41:50','2020-06-23 11:18:06'),(214,'Ariel has ‘come’ because','he has been invited by Prospero','he wants to make a request','he desires a meeting','flying is no problem to him','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',84,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:17'),(215,'Prospero has actually','raised a storm at sea','punished Miranda','dismissed Fedinand','commanded Ariel to disappear','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',91,'Admin','2016-12-12 05:41:50','2020-06-24 09:02:49'),(216,'Before Ariel’s entry','Ferdinand has brought in some wood','Prospero has put Miranda to sleep','Caliban had been swearing at Prospero','Trinculo had discovered Caliban’s cloak','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',92,'Admin','2016-12-12 05:41:50','2020-06-23 15:51:17'),(217,'‘Ariel and all his quality’ mean Ariel and','all at his command','the quality of a spirit','his band of spirits','an ability to cause mischief','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','d','','wassce','2015',102,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:17'),(218,'Soon after, Ariel','files off to do his duty','recounts the confusion on board the ship','kneels down to worship Prospero','calls Ceres and another spirit','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',98,'Admin','2016-12-12 05:41:50','2020-06-25 11:03:51'),(219,'X and Y are','Antonio and Alonso','Sebastian and Alonso','Antonio and Gonzalo','Sebastian and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','a','','wassce','2015',93,'Admin','2016-12-12 05:41:51','2020-06-20 16:28:43'),(220,'“We two” are','Antonio and Adrian','Sebastian and Adrian','Sebastian and Francisco','Antonio and Sebastian','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',121,'Admin','2016-12-12 05:41:51','2020-07-02 14:43:14'),(221,'The situation in the extract is highly','satirical','prophetic','ironical','comical','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','c','','wassce','2015',86,'Admin','2016-12-12 05:41:51','2020-06-23 17:31:05'),(222,'What has happened to all the other characters in the scene?','They have been made deaf and dumb','Ariel has put them all to sleep','They have been sent away','Prospero has put them to sleep','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','b','','wassce','2015',89,'Admin','2016-12-12 05:41:51','2020-06-22 19:37:14'),(223,'The “two” later plot to','kill all the other characters','escape from the island','kill Prospero and Miranda','kill Alonso and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',93,'Admin','2016-12-12 05:41:51','2020-06-24 20:35:01'),(224,'‘I simply don’t understand what the matter with everybody is today. Everybody let me down, and ...’ The speaker above is referring to','Fosuwa and Maidservant','Hannah and George','Aaron and Maanan','Lawyer B and Mrs B','Based on J.C. De Graft’s  \tSons and Daughter. ','','b','','utme','2010',128,'Admin','2016-12-12 07:52:46','2020-06-28 18:28:40'),(225,'Maanan expresses dislike for Lawyer B because of','his condemnation of  her choice career','his recent advances towards her','the betrayal of her father’s trust','the betrayal of his wife’s trust','Based on J.C. De Graft’s  \tSons and Daughter. ','','c','','utme','2010',125,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(226,'The traditional order in the play is represented by','Mrs. B','Hannah','Maanan','Aunt','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',128,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(227,'Where does the play take place?','On the street','In George’s place','In Aunt’s house','In Ofosu’s place','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',122,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(228,'‘O’ deadly sin! O rude unthankfulness! Thy fault our law calls death, but the kind Prince, Taking thy \t\tpart, hath rushed aside the law and turned that black word.....’ Deadly sin refers to the','suicide of Juliet','suicide of  Romeo','murder of  Paris','murder of  Tybalt','Based on William Shakespeare’s  \tRomeo and Juliet.','','d','','utme','2010',112,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(229,'The play is mostly written in','blank verse','free verse','metres','foot','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',96,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(230,'‘O” serpent heart, hid with a flowering face!’ The statement refers to','Juliet','Romeo','Tybalt','Benvolio','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',119,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(231,'The spatial setting of the play is','Athens','Verona','Padua','Venice','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',118,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(232,'Romeo is banished to Mantua because he','kills Tybalt in a street duel','marries Juliet without parental consent','attends Capulet’s party uninvited','attempts to kill Paris his rival','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',148,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(233,'In the novel, the society puts high value on','egalitarianism','male ascendancy','procreation','gender equity','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',123,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(234,'The medicine man links the lump discovered on the head of Nnu Ego at birth, to the','possession of physical admirable qualities that makes her an epitome of perfection','wound inflicted on the slave woman buried with Agbadi’s wife','coming back of the Agunwa to the society to live again','ill-luck and tragic events attributed to a predestined fate.','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',128,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(235,'The constant companions of  Nnaife family are','togetherness and happiness','poverty and hunger','sickness and joblessness','disagreement and humiliation','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',130,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(236,'The disagreement between Mvondo and Nticentres on the latter’s claim to have','Assisted Meka in getting the medal','eaten the entire entrails of a sheep','eaten more than his share of the food','been in a Whiteman’s office','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','a','','utme','2010',103,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(237,'In the novel, the colonialists treat the Africans with','kids gloves','disdain','indifference','honour','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','b','','utme','2010',113,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(238,'The Ministry of Peace is concerned with making','instruments','weapons','wars','reconciliation','Based on George Orwell’s  \tNineteen Eighty-Four.','','d','','utme','2010',116,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(239,'The subject matter of the novel is','Totalitarian dictatorship','exploitation and cruelty','retributive justice','class segregation','Based on George Orwell’s  \tNineteen Eighty-Four.','','a','','utme','2010',121,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(240,'How did Winston start his rebellion against the state?','By engaging in anti-party activities','By keeping a private diary','When he started a secret affair','When he spied on the party','Based on George Orwell’s  \tNineteen Eighty-Four.','','b','','utme','2010',117,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(241,'The party seeks power for','the nation','its own sake','its members','peoples’ sake','','','b','','utme','2010',130,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(242,'A play which mainly aims at provoking excessive laughter is \tcalled','a tragi-comedy','comedy','a farce','satire','','','c','','utme','2010',113,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(243,'Both comedy and tragedy have','happy ending','climax','tragic hero','stanza','','','b','','utme','2010',127,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(244,'A formal dignified speech or writing praising a person or a thing for past or present deeds is','premiere','eulogy','anthology','lampoon','','','b','','utme','2010',121,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(245,'The narrative style in which the hero tells his own story directly is the','objective','subjective','first-person','third-person','','','c','','utme','2010',122,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(246,'The physical, historical or cultural background of a literary work is referred to as','episode','plot','time','setting','','','d','','utme','2010',125,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(247,'A plot structure that defies chronology can be described as','open-ended','circular','episodic','organic','','','c','','utme','2010',128,'Admin','2016-12-12 07:52:47','2020-06-28 18:28:40'),(248,'Pun as a literary device deals with','placing two opposite phrase','placing words side by side','playing on words','arrangement of words','','','c','','utme','2010',115,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(249,'In a narrative poem, the poet attempts to','summarize a story','describe a place','preach a sermon','tell a story','','','d','','utme','2010',135,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(250,'The account of experiences of an individual during the course \tof a journey is known as','a travelogue','an autobiography','a catalogue','a memoir','','','a','','utme','2010',123,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(251,'Satirical writing employs','epigram','synecdoche','irony','onomatopoeia','','','c','','utme','2010',124,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(252,'The person being addressed above is a','soldier','student','domestic servant','lawyer','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','c','','utme','2010',110,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(253,'From the tone of the speech above, the speaker is obviously','enraged','lackadaisical','elated','happy','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','a','','utme','2010',128,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(254,'The mood conveyed in the excerpt above is one of','sadness','frustration','sympathy','dilemma','‘That year the harvest was sad, like a funeral, and many farmers wept as they dug up the miserable yams. One man tied his cloth to a tree branch and hanged himself.’ (Chinua Achebe: Things Fall Apart)','','a','','utme','2010',129,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(255,'The rhyme scheme in the excerpt above is','bbaa','aabb','abab','abba','That age is best which is the first,<br> \tWhen youth and blood are warmer, <br> \tBut being spent, the worse, and worst <br> \tTime still succeed the former. ','','c','','utme','2010',124,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(256,'The subject matter of the extract above is','Storm','sea waves','house movement','earthquake','But the towering earth was tired sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of a million years was lost\t','','d','','utme','2010',108,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(257,'From the poem above, shadow means','famine','bleak future','period of sufferings','abstract ideas','And your laughter like a flame<br>\t \tPiercing the shadows<br> \tHas revealed Africa to me beyond<br> \tThe snow of yesterday<br>','','c','','utme','2010',142,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(258,'The speaker in the excerpt above is','hopeless','uncertain','afraid','confident','Don’t panic. Be calm. If you are somehow upset.... try to regain your exposure.','','c','','utme','2010',127,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(259,'The poem can be described as','a lyric','an epic','a sonnet','an elegy','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',135,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(260,'The theme of the poem is','futility of  life','distortion of  life','creation of  life','vanity of  life','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',110,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(261,'The rhyme scheme of the stanza above is','aabb','abab','bbaa','abba','A cursing rogue with a merry farce,<br>  \tA bundle of rags upon a crutch, ,<br> \tStumbled upon that windy place,<br> \tCalled cruachan, and it was as much.\t','','b','','utme','2010',118,'Admin','2016-12-12 07:52:48','2020-06-28 18:28:40'),(262,'In the play, Fasuwa represents the','new culture','patriarchy','old order','African civilization.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',115,'Admin','2016-12-12 10:46:52','2020-06-20 16:22:58'),(263,'The play opens with a conversation between Aaron and Awere about','Aaron’s choice of course','Maanan’s encounter with the lawyer','George and Kofi','Hannah and George.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',94,'Admin','2016-12-12 10:46:52','2020-06-23 18:39:36'),(264,'‘I still think you can do something about it... persuade him; make him see how frustrating the whole business is bound to be for you.’  <em>The whole business in the excerpt above refers to </em>','marriage proposal','career choice','business contract','political transition.','Based on J.C. De Graft’s Sons and  \tDaughters.','','b','','utme','2008',102,'Admin','2016-12-12 10:46:52','2020-06-26 18:35:18'),(265,'The central conflict in the play is','religious','romantic','generational','communal.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',111,'Admin','2016-12-12 10:46:52','2020-06-20 14:01:17'),(266,'The change in fortune is achieved in the play when','James agrees that Aaron and Maanan should study what they want','Lawyer B harasses Maanan in his office','Haanah, James’ wife convinces him','Aaron and Maanan agree to read the courses James chooses for them.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',119,'Admin','2016-12-12 10:46:52','2020-06-26 18:35:18'),(267,'‘l will be brief, for my short date of breath Is not so long as is a tedious tale.’ The statement above is in reference to the speaker’s','retirement','imminent death','state of health','short-tempered nature.','Based on William Shakespeare’s Romeo and Juliet.','','b','','utme','2008',114,'Admin','2016-12-12 10:46:53','2020-06-23 15:44:28'),(268,'Romeo’s death becomes inevitable because','Friar Lawrence’s letter is not delivered','Juliet is married to Paris','Romeo kills Tybalt in a duel','Juliet has committed suicide.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',116,'Admin','2016-12-12 10:46:53','2020-06-25 15:13:37'),(269,'The multiple deaths in the play serve as a punishment for','imposing life partner on Children','treating others with hatred','disobeying one’s own parents','shedding kinsmen’s blood.','Based on William Shakespeare’s Romeo and Juliet.','','a','','utme','2008',111,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:18'),(270,'The major reason for Juliet’s grief is','the death of her cousin','her reluctant marriage to the County','the banishment of her lover','her imminent death.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-25 11:42:01'),(271,'The chorus in the prologue of the play is essentially meant to','foreshadow the play','highlight the characters','estimate the actions','introduce the play.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-02 04:54:19'),(272,'In the novel, Big Brother metaphorizes a','totalitarian authority','benevolent leader','revolutionary leader.','party brotherhood.','Based on George Orwell’s Nineteen  \tEighty-Four.','','a','','utme','2008',86,'Admin','2016-12-12 10:46:53','2020-06-23 15:46:32'),(273,'In the novel, Orwell attempts to','satirize the artificiality of a machine ‘controlled society','eulogize the beauty of the socialist system','condemn the disgusting hypocrisy of all communist    \t systems','laud the boundless possibilities of the human intellect.','Based on George Orwell’s Nineteen  \tEighty-Four.','','c','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-22 17:42:29'),(274,'Winston Smith begins his rebellion against the power of the state by','purchasing arms','keeping a private diary','opposing the law','educating the youth.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',84,'Admin','2016-12-12 10:46:53','2020-06-20 15:59:09'),(275,'The Ministry of Truth is concerned with','news, entertainment, education and fine arts','propaganda, war, publishing and enlightenment','investigation, propaganda and fine arts','economic affairs, education and propaganda.','Based on George Orwell’s Nineteen  \tEighty-Four.','','d','','utme','2008',116,'Admin','2016-12-12 10:46:53','2020-06-25 11:45:32'),(276,'The events following the ceremony confirm Meka’s','disillusion with the whites','satisfaction with the medal','contribution to the colonialists','admiration for the church.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','a','','utme','2008',111,'Admin','2016-12-12 10:46:53','2020-06-23 18:13:36'),(277,'“ ‘ By my mother!’ said Engamba. The night rat doesn’t tell what happened to him in the dark! Men are born and die...”  In the statement above, The night rat doesn’t tell what happened to him in the dark! refers to','the Whiteman’s treatment of Meka','Meka’s treatment of the medal in the whitewashed circle','people’s unwillingness to talk about how Whiteman treat them','people’s freedom of expression.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',142,'Admin','2016-12-12 10:46:53','2020-06-25 15:13:37'),(278,'In the novel, the expression  <em>fobreak the leg of an antelope</em> means','hunting','marriage','fighting','honeymoon.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',95,'Admin','2016-12-12 10:46:53','2020-06-23 15:44:44'),(279,'Ona has to leave her father’s house because','of her love for Agbadi','that is the tradition','her father is dead','of the safety of her child.','Based on Buchi Emecheta’s The Joys of Motherhood.','','a','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-20 14:44:03'),(280,'Nnaife’s conscription into the army is portrayed as part of','family conflict','British oppression','family tradition','societal intrigue.','Based on Buchi Emecheta’s The Joys of Motherhood.','','d','','utme','2008',103,'Admin','2016-12-12 10:46:53','2020-06-25 11:06:31'),(281,'The attitude of Nnu Ego when she was told that her Chi would not give her a child is one of','indifference','despair','apathy','hope.','Based on Buchi Emecheta’s The Joys of Motherhood.','','b','','utme','2008',103,'Admin','2016-12-12 10:46:53','2020-06-23 11:21:36'),(282,'The subject matter of Adeoti’s Naked Soles is','soul and mind','hunger and strife','suffering and despair','hatred and bitterness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',104,'Admin','2016-12-12 10:46:53','2020-06-23 13:19:59'),(283,'Rubadiri’s <em>An African Thunderstorm</em> appeals to the readers’ sense of','sight and taste','feeling and sight','smell, taste and hearing','sight, smell and hearing.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','b','','utme','2008',104,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:17'),(284,'‘The experts, of course Disagree. The urine test they ordered Said, Negative.’ The lines above from Acqah’s “In the Navel of the Soul” depict','contradiction','inevitability','progress','awareness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','a','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:17'),(285,'In Kunene’s ‘A Heritage of Liberation,’ freedom is to be achieved through the efforts of','the old generation','new generation','present generation','successive generations.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',109,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:17'),(286,'Launko’s ‘End of the’ War suggests that war brings about','ultimate solution to all problems','partial solution to problems','multifaceted problems','only temporary relief.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',107,'Admin','2016-12-12 10:46:53','2020-06-23 15:52:06'),(287,'The persona in the poem <em>Give Me The Minstrel’s Seat</em> discourages','togetherness','hatred','isolation','poverty.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',103,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:18'),(288,'Marvel’s To ‘His Coy Mistress’ is written mainly in','alternate rhymes','blank verse','heroic couplets','middle rhymes.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',99,'Admin','2016-12-12 10:46:53','2020-06-29 02:10:38'),(289,'The attitude of the poet-persona to bats, in Lawrence’s Baf is one of','satisfaction','reverence','hatred','repulsion.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',119,'Admin','2016-12-12 10:46:53','2020-06-27 12:56:48'),(290,'The language used, in Eliot’s ‘The Journey of the’ Magi is generally','difficult','complex','simple','complicated.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',117,'Admin','2016-12-12 10:46:53','2020-06-23 17:38:42'),(291,'In Cope’s <em>Sonnet VII</em>, poetry is','a popular act','a boring act','an idle hobby','a useless undertaking.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',112,'Admin','2016-12-12 10:46:53','2020-06-23 12:30:43'),(292,'An interlude is a brief','presentation in the interval of a dramatic performance','play before the main dramatic performance','presentation after the main dramatic performance','dialogue between two persons.','Based on General Literary Principles.','','a','','utme','2008',122,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:18'),(293,'An epic is a heroic story which includes','ballad','lyric','myth','dialogue.','Based on General Literary Principles.','','c','','utme','2008',107,'Admin','2016-12-12 10:46:53','2020-06-22 19:17:30'),(294,'Farce can be described as a dramatic piece marked by','movement from serious to the light-hearted mood','comic and exaggerated actions','actions devoid of meaning','gloomy actions with momentary reliefs.','Based on General Literary Principles.','','b','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-25 11:09:03'),(295,'A long story narrating a series of complicated events is called a','saga .','discourse','monologue','harangue.','Based on General Literary Principles.','','d','','utme','2008',120,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:18'),(296,'Oxymoron is the use of two contrasting words that are','placed far apart','different in meaning','placed side by side','similar in meaning.','Based on General Literary Principles.','','c','','utme','2008',98,'Admin','2016-12-12 10:46:54','2020-06-23 15:44:44'),(297,'A line or a group of lines repeated in the course of a poem is called','chorus','refrain','repetition','prologue.','Based on General Literary Principles.','','b','','utme','2008',86,'Admin','2016-12-12 10:46:54','2020-06-26 18:35:18'),(298,'Limerick is a light verse which consists of five lines that are','anapestic','trochaic','spondaic','dactylic.','Based on General Literary Principles.','','d','','utme','2008',93,'Admin','2016-12-12 10:46:54','2020-06-23 12:49:17'),(299,'A short narrative or lyrical poem intended to be sung is a','leich','lay','lauda','letrilla.','Based on General Literary Principles.','','a','','utme','2008',107,'Admin','2016-12-12 10:46:54','2020-06-25 23:38:59'),(300,'A figurative device in which a statement is made and then withdrawn is referred to as','metanoia','metaphysical','metalanguage','metalepsis.','Based on General Literary Principles.','','d','','utme','2008',102,'Admin','2016-12-12 10:46:54','2020-07-01 18:58:33'),(301,'A literary work which imitates another in a distorted form is called','exodium','isocohen','metonymy','burlesque.','Based on General Literary Principles.','','d','','utme','2008',101,'Admin','2016-12-12 10:46:54','2020-06-25 11:09:03'),(302,'‘You do not have to be brutal to be a soldier, or rather you are brutal not because you are a soldier, but because there is a sadist, a rapist, a fascist and a murderer in you who is waiting for war and army uniforms to give them expression.’ ( Festus lyayi: Heroes ) The speaker here contends that','soldiers are generally wicked','human nature has to do with a profession','soldiers are characteristically gentle','the latent brutality in man finds expression in war.','based on Literary Appreciation.','','b','','utme','2008',131,'Admin','2016-12-12 10:46:54','2020-06-26 18:35:17'),(303,'‘But the towering earth was tired of sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of million years was lost.’ The subject matter of the passage is','earthquake','Demolition','flood','storm.','based on Literary Appreciation.','','a','','utme','2008',100,'Admin','2016-12-12 10:46:54','2020-06-23 17:38:42'),(304,'The image depicted is one of','destruction','dejection','happiness','admiration.','based on Literary Appreciation.','','a','','utme','2008',103,'Admin','2016-12-12 10:46:54','2020-06-22 19:01:24'),(305,'The tone of the poem above is','satiric','affectionate','indifferent','sympathetic.','based on Literary Appreciation.','','b','','utme','2008',112,'Admin','2016-12-12 10:46:54','2020-06-23 18:43:11'),(306,'Life, though a vanity Yet, not purposeful In drawling<br> resignation Life’s spice is in strive<br> From the extract above, the poet suggests that','life is full of care','there can’t be life without strive','life is worthwhile without care','strive makes life worth living.','based on Literary Appreciation.','','b','','utme','2008',93,'Admin','2016-12-12 10:46:54','2020-06-26 18:35:17'),(307,'The subject of the poem above is','a prostitute','the lying father','the son','the orphan.','based on Literary Appreciation.','','c','','utme','2008',92,'Admin','2016-12-12 10:46:54','2020-06-20 12:47:17'),(308,'The dominant rhetorical device in the excerpt above is','rhyme','alliteration','repetition','onomatopoeia.','based on Literary Appreciation.','','b','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-06-24 08:20:29'),(309,'The expression “The child is the father of the man” in the poem above is an example of','paradox','metaphor','simile','ellipsis','based on Literary Appreciation.','','a','','utme','2008',129,'Admin','2016-12-12 10:46:54','2020-06-28 02:55:43'),(310,'The technique employed in narrating the excerpt above is','flashback','stream of consciousness','foreshadowing','play-within-the-play.','based on Literary Appreciation.','','b','','utme','2008',119,'Admin','2016-12-12 10:46:54','2020-06-25 11:03:08'),(311,'The poet’s tone above can be described as','lamentative','satiric','imploring','adoring.','based on Literary Appreciation.','','a','','utme','2008',115,'Admin','2016-12-12 10:46:54','2020-06-27 12:56:48'),(312,'In the play, the character of Lawyer B is represented through the use of','flashback','dialogue','play-within-the-play','irony','','','d','','utme','2009',97,'Admin','2016-12-12 17:55:00','2020-06-23 17:37:30'),(313,'James Ofosu’s desire is to see Maanan trained as','a choreographer','an attorney','an accountant','a surgeon','','','b','','utme','2009',113,'Admin','2016-12-12 17:55:00','2020-06-23 18:33:36'),(314,'The plot of the play is,','linear','cyclical','complicated','episodic','','','d','','utme','2009',112,'Admin','2016-12-12 17:55:01','2020-06-23 13:00:48'),(315,'What causes the strained relationship between James and Lawyer B?','Betrayal of trust','Standard of education','Working experience','Family differences','','','a','','utme','2009',128,'Admin','2016-12-12 17:55:01','2020-06-26 18:35:17'),(316,'‘Now look what we have: a permanent bloom of ugly paper flowers! The device used by Aaron in the excerpt above is','suspense','rhetorical question','oxymoron','allegory','','','c','','utme','2009',112,'Admin','2016-12-12 17:55:01','2020-06-23 17:32:44'),(317,'When Friar Lawrence asks if the bride is ready, he wants to know if','Juliet is prepared','Rosaline is prepared','the corpse is ready','the bride is dressed','based on William Shake¬speare’s  \tRomeo and Juliet.','','c','','utme','2009',101,'Admin','2016-12-12 17:55:01','2020-06-24 10:03:28'),(318,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nWhat makes Juliet’s night so tedious is the','murder of Tybalt by Romeo','arranged marriage between her and Paris','Eagerness’ to be married to Romeo','unconsummated marriage with Romeo','based on William Shake¬speare’s  \tRomeo and Juliet.','','d','','utme','2009',99,'Admin','2016-12-12 17:55:01','2020-06-23 15:52:06'),(319,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nThe literary device used in the excerpt is','euphemism','simile','sarcasm','bathos','based on William Shake¬speare’s  \tRomeo and Juliet.','','b','','utme','2009',104,'Admin','2016-12-12 17:55:01','2020-06-26 18:35:18'),(320,'The atmosphere of tragedy in the play is created through the use of','dreams and foreboding','fights and quarrels','wars and hatred','ideas and dramatization','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',105,'Admin','2016-12-12 17:55:01','2020-06-23 17:31:05'),(321,'Shakespeare depicts love and idealism through the','party at tire Capulets’','lovers’ tomb at the end','brawl between Romeo and Tybalt','balcony scene in the second Act.','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',111,'Admin','2016-12-12 17:55:01','2020-06-23 18:01:13'),(322,'In the novel, the party approves separation of couples only','on condition of infidelity','where there are no children','in situation of irreconcilable differences','on the death of one of the couples','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',123,'Admin','2016-12-12 17:55:01','2020-06-23 12:30:43'),(323,'One of the themes of the novel is','colonialism','repression','senility','destruction','based on George Orwell’s  \tNineteen Eighty-Four','','b','','utme','2009',114,'Admin','2016-12-12 17:55:01','2020-06-25 11:30:46'),(324,'Newspeak, the official language of Oceania, is devised to','meet the ideological needs of Ingsoc','help devoted party men and women','provide a medium of expression for world-view only','assist by cutting the choice of words for party members.','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',113,'Admin','2016-12-12 17:55:01','2020-06-26 18:35:17'),(325,'The main concern of Winston in the novel is to','take power for himself','acquire wealth','overthrow the party','bring social change','based on George Orwell’s  \tNineteen Eighty-Four','','d','','utme','2009',97,'Admin','2016-12-12 17:55:01','2020-06-25 11:32:22'),(326,'“We are hereto die of raget !say die of rage because this time the uncircumcised have gone too far...” The word uncircumcised in the statement above by Nli refers to','Nua and Mvondo','the whites','the people of Doum','the white farmers.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','b','','utme','2009',91,'Admin','2016-12-12 17:55:01','2020-06-25 23:38:59'),(327,'The only two sons of Meka die fighting for','independence','the colonialists','the church','the in people.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',103,'Admin','2016-12-12 17:55:01','2020-06-25 23:38:59'),(328,'In the novel; Africanness is .achieved in both','setting and characterization','narration and style','diction and syntax','pun and style','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',94,'Admin','2016-12-12 17:55:01','2020-06-25 11:03:51'),(329,'What prompts Nnu Ego to run to the effigy of her chi is that ...','she is worried and sick','she is pregnant','the chi asks her to come','milk is dripping from her breasts.','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','d','','utme','2009',111,'Admin','2016-12-12 17:55:02','2020-06-25 11:28:50'),(330,'In the society of Nwokocha Agbadi, a man’s social rating determined by his','oratorical power','physical prowess','gentle men','altruistic actions','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',125,'Admin','2016-12-12 17:55:02','2020-06-25 12:00:05'),(331,'‘look at me jubilant for being given another opportunity to \tlive longer, and see this foolish woman eager to end her own life when her Maker is not yet ready for her...’The opportunity referred to in the extract above is','the misunderstanding between Nnaife and his wife','narrowly escaping being knocked down','the driver’s encounter with Nnu Ego','ominous visit of Agunwa','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',107,'Admin','2016-12-12 17:55:02','2020-06-23 11:21:36'),(332,'Thorn in “Adeoti’sNaked Soles” symbolizes','victory','bleakness','destruction','suffering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',90,'Admin','2016-12-12 17:55:02','2020-06-23 12:30:56'),(333,'‘Pregnant clouds Ride Safely on its back’ Pregnant clouds in Rubadiri’s “An AfricanThunderstorm implies”','uncertainty','calmness','disbelief','fertility','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',117,'Admin','2016-12-12 17:55:02','2020-06-26 18:35:18'),(334,'The phrase the sunset in Kunene’s “A Heritage of Liberation” refers to','critical need','old age','patience','caution','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',122,'Admin','2016-12-12 17:55:02','2020-06-26 18:35:18'),(335,'‘The silence of the battlefield heralds the widow’s anguish’ The widow in the lines above in Launko’s “Endof the War” is in anguish because of the','confirmation of her husband’s death','uncertainty over her husband returning alive','delay in the husband’s return from the battlefield','death of all the soldiers in the battlefield','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',105,'Admin','2016-12-12 17:55:02','2020-06-25 11:47:16'),(336,'The end of “Give Me The Minstrel’s Seat”, seems to suggest that one needs the','support of others','complete command of one’s wives','support of one’s kinsmen','aid of poets','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',115,'Admin','2016-12-12 17:55:02','2020-06-25 23:38:59'),(337,'According to “Give Me The Minstrels Seat”, a woman is','a necessary evil','only fulfilled when married','naturally jealous','a harbinger of good luck','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',103,'Admin','2016-12-12 17:55:02','2020-06-25 23:38:59'),(338,'In Marvel’s “To His Coy Mistress”, the poet-persona tries to','Build up the climax of expectation of women','discuss how a woman labour hard','meet the people’s expectation in a religious adventure','discuss the nature of man and the value of time.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',92,'Admin','2016-12-12 17:55:02','2020-06-26 18:35:17'),(339,'In Lawrence’s Bat, the poet’s attitude to bat is one of','fear','sarcasm','contempt','flattering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',99,'Admin','2016-12-12 17:55:02','2020-06-23 18:43:11'),(340,'The first stariza of Eliot’s “The Journey of the Magi” depict the','hazards of the journey','increment of fortune for the pilgrims','blind acceptance of faith','journey as an influential factor.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',110,'Admin','2016-12-12 17:55:02','2020-06-25 23:38:59'),(341,'In cope’s “Sonnet VII”, poets are presented; as','recluses','travelers','sociologists','searchers','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',118,'Admin','2016-12-12 17:55:02','2020-06-25 11:09:03'),(342,'A poetic devices in which an idea in a line runs into another is called','rhyme scheme','enjambment','end rhyme','pathos','based on General Literary Principles.','','b','','utme','2009',120,'Admin','2016-12-12 17:55:02','2020-06-22 19:01:24'),(343,'The use of sound pattern to suggest meaning in poetry is','rhythm','mimics','lyric','metonymy','based on General Literary Principles.','','a','','utme','2009',119,'Admin','2016-12-12 17:55:02','2020-06-25 23:38:59'),(344,'A conscious imitation of a literary work by another with the aim of ridicule is','mimesis','performance','mockery','parody','based on General Literary Principles.','','d','','utme','2009',109,'Admin','2016-12-12 17:55:02','2020-06-25 12:01:13'),(345,'The use of gestures to communicate in drama is known as','burlesque','soliloquy','mime','melodrama','based on General Literary Principles.','','c','','utme','2009',110,'Admin','2016-12-12 17:55:03','2020-06-26 18:35:18'),(346,'A short and witty remark is','a limerick','a tercel','an epigram','a litotes','based on General Literary Principles.','','c','','utme','2009',102,'Admin','2016-12-12 17:55:03','2020-06-26 18:35:17'),(347,'An expression that signifies a whole through its significant parts is','synesthesia','synecdoche','metonymy','allegory','based on General Literary Principles.','','b','','utme','2009',98,'Admin','2016-12-12 17:55:03','2020-06-25 11:30:46'),(348,'a structural arrangement of units of composition by which one element of equal importance with another is similarly placed is called','repetition','paradox','refrain','parallelism','based on General Literary Principles.','','d','','utme','2009',95,'Admin','2016-12-12 17:55:03','2020-06-25 11:48:35'),(349,'The pride that contributes to the fall of a tragic character in a play is known as','hamartia','catharsis','hubris','epistasis','based on General Literary Principles.','','a','','utme','2009',111,'Admin','2016-12-12 17:55:03','2020-06-24 20:35:01'),(350,'metrical foot of two stressed or long syllables is called','a spondee','a trochee','an anapest','an iamb','based on General Literary Principles.','','a','','utme','2009',110,'Admin','2016-12-12 17:55:03','2020-06-25 11:28:50'),(351,'A group of three lyric stanzas in classical Greek poetry is referred to as','triplet','triolet','trilogy.','triad','based on General Literary Principles.','','b','','utme','2009',108,'Admin','2016-12-12 17:55:03','2020-06-22 17:35:22'),(352,'Biokun:  I did it for her! Let them laugh!<br>\\n\t\t\t\tLet them condemn me. I who have always <br>\t\\n\t\t\t\tderided superstition. I have gone bach to the <br>\\n\t\t\t\tshrine of Olokun. At least if he dies, Oroki <br>\\n\t\t\t\twill know I tried everything. <br>\\n\t\t\t\t(Femi I Qsofisan: No More the Wasted Breed)<br>\\nBiokun’s mood in this passage is one of','desperation','frustration','anger','anxiety','based on Literary Appreciation','','b','','utme','2009',122,'Admin','2016-12-12 17:55:03','2020-06-24 08:09:25'),(353,'\t‘My song is the root<br>\\n\ttouching other roots <br>\\n\tin a covenant below the crust..’<br>\\n\t(Niyi  Osundare: Waiting Laughters)<br>\\n\\nThe imagery used in the second line of the extract above is','olfactory','visual','tactile','auditory','based on Literary Appreciation','','c','','utme','2009',99,'Admin','2016-12-12 17:55:03','2020-06-23 17:38:42'),(354,'‘The huge sacrifice that <br>\\n\twards off death <br>\\n\tThe big offering that <br>\\n\tprevents diseases....’ <br>\\n\t( Temi Osofison: Morountodun ) <br>\\nThe poem above can best be described as','epic','heroic','praise','quatrain','based on Literary Appreciation','','d','','utme','2009',110,'Admin','2016-12-12 17:55:03','2020-06-26 18:35:18'),(355,'Why blame her who denies love for the asking <br><br>\\n\tAnd not the Birds and Moths and Beetles <br>\\n\tThat after deep draughts from rich nectar wells <br>\\n\tFlee the drained petals to virgin flowers. <br>\\nThe lines above are an indictment of','adultery','gluttony','flirtation','infertility','based on Literary Appreciation','','b','','utme','2009',96,'Admin','2016-12-12 17:55:03','2020-06-22 19:37:14'),(356,'\tOh, the market is set like the hub of a wheel <br>\\n\tAnd it pulfs \tlike a magnet strong <br>\\n\tIt is easy to tell <br>\\n\tHow it casts its spell <br>\\n\tAnd draws all the crowds along. <br><br>\\nThe sound device used in the extract above is','rhyme','alliteration','emphasis','assonance','based on Literary Appreciation','','a','','utme','2009',111,'Admin','2016-12-12 17:55:03','2020-06-26 18:35:18'),(357,'A reference beyond the immediate purview of what is being presented is known as','allusion','diversion','inversion','imagery','based on Literary Appreciation','','a','','utme','2009',113,'Admin','2016-12-12 17:55:03','2020-06-23 11:19:13'),(358,'‘The how is her barber’ The line is an example','metaphor','hyperbole','personification','litotes','based on Literary Appreciation','','a','','utme','2009',105,'Admin','2016-12-12 17:55:04','2020-06-24 08:34:58'),(359,'‘From the sky suspended <br>\\n\tthe strings of tattered pants <br>\\n\tmarched on trembling feet <br>\\n\tunder stone heavy-kits <br>\\n\tmarched, on their breast <br>\\n\tscared, monogram of skulls and bones.’ <br>\\n\t( Ossie Enejwe: Mass for the Dead ) <br><br>\\n“The subject matter of the extract above is','wastage','war','love','hatred','based on Literary Appreciation','','b','','utme','2009',107,'Admin','2016-12-12 17:55:04','2020-06-25 23:38:59'),(360,'‘Tonderai was assisted by the villages in placing his truck box into the back for the car and he got into the passenger side of the truck. Initially, he was a bit nervous and clearly uncomfortable, his young mind was asking how someone whom, he had almost caused a serious accident could be his benefactor.’ ( Daniel T. Manyika: Two worlds Apart )\\n\\n<br><br>The narrative point of view used in the extract above can best be described as','omniscient','subjective','panoramic','scenic','based on Literary Appreciation','','a','','utme','2009',102,'Admin','2016-12-12 17:55:04','2020-06-26 18:35:17'),(361,'‘Me to the Orangery<br> \\n\tSolitude invites, <br>\\n\ta wagtail, to tell the<br>  \t\t\t\\n\ttangled-wood-tale.’ <br>\\n\t( Christopher Okigbo: Heavengate ) <br><br>\\nThe complexity of the poem can be ascribed to the poet’s use of','archaic diction','structural inversion','compound words','extended met','based on Literary Appreciation','','b','','utme','2009',135,'Admin','2016-12-12 17:55:04','2020-06-27 23:16:39');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `entertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `entertainment` VALUES (1,'What year was ?Africa Queen? music track released by Tu-face Idibia?','2001','2002','2003','2004','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track ?African Queen? came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D?Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D?Banj  first album released?','2002','2005','2001','2004','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `fashion` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `fashion` VALUES (1,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,' ?Ole ku? dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Nigeria won Miss World','2000','2001','2002','2003','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknowledge` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `section` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'used by zh round 3',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknowledge` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many planets do we have?','10','9','8','6','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' What is the position of the Earth from the Sun?','1','2','3','4','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,' What year was Facebook created?','2001','2002','2003','2004','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'The first university in the world was?','Oxford','Al-Azhear of Cairo','Harvard','MIT','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year did Nigeria became a republic?','1960','1965','1963','1914','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,' What year did Tsunami occur','2000','2004','2005','2006','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' When did World War 1 started','1918','1901','1914','1910','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknwbrag` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknwbrag` VALUES (1,'What year was “Africa Queen” music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track “African Queen” came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo’ hit records','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D’Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D’Banj  first album released?','2002','2005','2001','2004','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'How many planets do we have?','10','9','8','6','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What is the position of the Earth from the Sun?','1','2','3','4','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What year was Facebook created?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'The first university in the world was…','Oxford','Al-Azhear of Cairo','Harvard','MIT','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' What year did Nigeria became a republic?','1960','1965','1963','1914','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' What year did Tsunami occur','2000','2004','2005','2006','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' When did World War 1 started','1918','1901','1914','1910','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(54,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(55,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(56,' ‘Ole ku’ dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(57,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(58,'What year did Nigeria won Miss World','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(59,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(60,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(61,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(62,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(63,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(65,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(66,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(67,'Who was the last successful Manchester United Coach?',' Sir Ali Ferguson.',' Alex Ferguson.',' Sir Alex Ferguson',' Sir Alex Fergson','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(68,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(69,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(70,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(71,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(72,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(74,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(75,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(76,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(77,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(78,'Which Nigeria football club won the Premiership title back –to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(79,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(80,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(81,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(82,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(83,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(84,'How many rings are in the Olympic colours?','6','5','4','3','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(85,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(86,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(87,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(88,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(89,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(90,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(91,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(92,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(93,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(94,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(95,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(96,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(97,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(98,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(99,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(100,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(101,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(102,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(103,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(104,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(105,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(106,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(107,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(108,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(109,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(110,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(111,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(112,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(113,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(114,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(115,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(116,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(117,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(118,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(119,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(120,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(121,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(122,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(123,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(124,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(125,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(126,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(127,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(128,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(129,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(130,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(131,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(132,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(133,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(134,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(135,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(136,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `geography` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=237 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `geography` VALUES (1,'The earth rotates through 150 of longitude once in  ','a minute  ','an hour  ','24 hours  ','a day','','','b','','post-utme','2006',156,'Admin','0000-00-00 00:00:00','2020-06-28 11:31:25'),(2,'Aeolian erosion refers to the work of ','Plants ','Wind  ','Ice ','running water','','','b','','post-utme','2006',143,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(3,'The scale of a map is the ratio between the  ','distance over the land and the distance over the water ','distance on the map and the distance on the globe ','vertical and horizontal differences  ','distance on the map and that on the earth’s surface ','','','d','','post-utme','2006',139,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(4,'Which of the following scales should show the greatest amount of detail on a map?  ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2006',137,'Admin','0000-00-00 00:00:00','2020-06-24 08:34:52'),(5,'Which of the following statements is not true for lines of latitude?  ','they form parallel circles   ','they range from 00 to 1800 N and S  ','only one line is also a Great Circle ','They form parallel circles','','','b','','post-utme','2006',147,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(6,'Large in area and high in population, which of the following countries fits this description?','Lesotho  ','Togo ','Nigeria  ','Zaire','','','c','','post-utme','2006',173,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:25'),(7,'One of these is NOT a landform in Africa   ','Scarp ','Inselberg  ','Drumlin','Doline','','','c','','post-utme','2006',167,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(8,' Which of these does not lie in the principal earthquake region of the world? ','Japan ','Kenya  ','Iran   ','Turkey ','','','b','','post-utme','2006',142,'Admin','0000-00-00 00:00:00','2020-06-24 06:27:31'),(9,'Which  of   these  soil  groups  is  considered   the  most  productive?   ','Chernozems   ','Latosols  ','Podozols   ','Sierozems','','','a','','post-utme','2006',157,'Admin','0000-00-00 00:00:00','2020-06-28 12:19:31'),(10,'One example of inland drainage lake in  Africa is  ','Lake Chad ','Lake Victoria ','Lake Malawi ','Lake Turkana','','','a','','post-utme','2006',138,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:41'),(11,'The African river that crosses the equator twice is  ','Zaire ','Nile ','Mississippi  ','Amazon','','','a','','post-utme','2006',178,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(12,'Some rivers in their delta regions breaks into many branches before entering the sea. These divisions are known as  ',' Creeks ','Distributaries','Tributaries ','Effluents','','','b','','post-utme','2006',155,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(13,'Kariba Dam is found in River  ','Zambezi ','Congo  ','Niger  ','Nile','','','a','','post-utme','2006',151,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:07'),(14,'The major air mass affecting the climate of West Africa in summer is the  ','harmattan wind  ','tropical continental  ','warm equatorial  ','tropical maritime ','','','b','','post-utme','2006',148,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(15,'If a map has a scale of 1:50,000 and a cocoa plantation is represented on the map by a rectangle 4cm by 3cm, what is the area of the plantation?  ','3 sq. km  ','30 sq. km  ','12 sq. km  ','20 sq. km','','','a','','post-utme','2006',155,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(16,'The gap between two ranges within which transportation is usually possible in a mountainous regions is called  ','Valley  ','Col  ','ridge  ','Spur','','','b','','post-utme','2006',130,'Admin','0000-00-00 00:00:00','2020-06-28 12:12:57'),(17,'What are greenhouse gasses?  ','Gases found around green houses in botanical gardens  ','Gases which are able to trap heat on the earth surface  ','Gases which help global circulation of winds and plants it growths  ','Gases which help farmers grow certain crops during the dry seasons','','','b','','post-utme','2006',165,'Admin','0000-00-00 00:00:00','2020-06-29 11:33:40'),(18,'The doldrums refer to  ','land areas bordering the confluence of the blue and white Nile  ','areas intense weather activities around the Mediterranean  ','areas of South Atlantic where cold and warm currents meet  ','area within a few degrees north and south of the equator.','','','d','','post-utme','2006',138,'Admin','0000-00-00 00:00:00','2020-06-26 16:33:09'),(19,'Nigeria Sat I is designed by primarily to  ','help GSM provider in achieving a wide national coverage  ','strengthen rapid response by Nigeria’s Armed Forces  ','help in the 2006 Census  ','provide information about various regions of the earth','','','d','','post-utme','2006',148,'Admin','0000-00-00 00:00:00','2020-06-28 12:12:57'),(20,'The major sedimentary minerals found in Nigeria include:  ','tin, columbite and gold ','tin, coal and salt  ','limestone, columbite and diamond  ','limestone, petroleum and coal','','','d','','post-utme','2006',157,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:46'),(21,'The cloud which are white globular masses, forming ripples in the sky is called  ','Cirrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2006',147,'Admin','0000-00-00 00:00:00','2020-06-26 19:30:36'),(22,'Which of the following routes must have least gradient?  ','Motorway ','Rail line  ','Bush path  ','Carnal ','','','b','','post-utme','2006',143,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(23,'The foremost producers of petroleum in the Middle East are:  ','Saudi Arabia, Kuwait, Libya and Iran  ','Saudi Arabia, Iraq, Iran and Kuwait  ','Saudi Arabia, Iran, Venezuela and Oman ','Saudi Arabia, Iraq, Libya and Venezuela','','','b','','post-utme','2006',152,'Admin','0000-00-00 00:00:00','2020-06-29 15:53:03'),(24,'Which of the following is not an Anglophone country  ','Ghana  ','Gambia  ','Liberia  ','Senegal','','','d','','post-utme','2007',167,'Admin','0000-00-00 00:00:00','2020-06-23 23:57:31'),(25,'The shallow part of the sea which separates the deep from the land is called  ','off shore coastal lowland  ','the on-shore tidal current  ','continental shelf formation  ','coastal coral cliff ','','','c','','post-utme','2007',126,'Admin','0000-00-00 00:00:00','2020-06-23 21:53:24'),(26,'The port that handle the highest volume of cocoa export in Nigeria is  ','Sapele  ','Warri  ','Lagos  ','Port Harcourt','','','c','','post-utme','2007',141,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(27,'One major characteristics of rural settlements is that  ','are heterogeneous  ','are homogenous  ','are large in size  ','have more problems than urban settlements','','','b','','post-utme','2007',177,'Admin','0000-00-00 00:00:00','2020-06-26 19:05:36'),(28,'Industrialization in Nigeria can best be promoted through the development of  ','textile industry  ','leather industry  ','iron and steel industry  ','automobile industry ','','','c','','post-utme','2007',149,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(29,'Most of the industries located in rural areas are  ','low energy consumers  ','high energy consumers  ','raw materials oriented  ','transport oriented ','','','c','','post-utme','2007',167,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(30,'The distribution of minerals resources in Nigeria is related to its:  ','relief  ','soil  ','vegetation  ','geology ','','','a','','post-utme','2007',145,'Admin','0000-00-00 00:00:00','2020-06-28 12:02:26'),(31,'Which of the ocean currents is classified as cool?  ','Benguela  ','Kuro Siwo  ','Gulf Scream  ','Mozambique ','','','a','','post-utme','2007',155,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:12'),(32,'The sea area with the highest degree of salinity is the ','Baltic Sea  ','Caspian Sea  ','Dead Sea  ','Mediterranean Sea','','','c','','post-utme','2007',141,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(33,'The thermometric scale usually employed to described the absolute temperature of the atmosphere is  ','Centigrade  ','Celsius  ','Kelvin  ','Fahrenheit ','','','c','','post-utme','2007',159,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(34,'If the temperature at sea level in a particular place is 200C, place 3500m above sea level in the same area will have a temperature of  ','- 2.750C   ','2.250C  ','22750C  ','22.750C','','','a','','post-utme','2007',157,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(35,'Which of the following is not a form of precipitation? ','Dew   ','Snow   ','hail ','fog ','','','d','','post-utme','2007',148,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(36,'Which of the following pressure belts does not experienced descending air?  ','600N  ','600S  ','00 latitude   ','300N','','','a','','post-utme','2007',145,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(37,'In the tropics, the most variable climatic element inter-annually is  ','temperature  ','solar radiation   ','pressure  ','prairies ','','','a','','post-utme','2007',161,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(38,'Soil that are formed by the wind deposition are called ','Laterites  ','loess  ','podsols  ','prairies ','','','b','','post-utme','2007',142,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(39,'Desert soil are usually deficient in ','fertility  ','light grey colour  ','humus content  ','horizons ','','','c','','post-utme','2007',152,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(40,'Podsols and laterites share the following characteristics in common, except  ','infertility  ','high degree of leaching  ','associated with forest vegetation  ','colour ','','','c','','post-utme','2007',132,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(41,'The forest type which is the most rich in tree species is the  ','tropical  ','Deciduous  ','Coniferous  ','Mediterranean ','','','a','','post-utme','2007',140,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(42,'Linseed oil is associated with  ','flax  ','coconut  ','olives  ','rapeseeds','','','a','','post-utme','2007',156,'Admin','0000-00-00 00:00:00','2020-06-28 12:12:57'),(43,'Which of the following is not correct with regards to the solar system?  ','The planets all orbit round the sun  ','The sun is only a source of the energy needed on the planets  ','The earth as well as other planets rotate round the sun  ','all the planets have definite orbits around the sun','','','c','','post-utme','2007',150,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(44,'Fossil fuel reserves are found in the Lake Chad basin because  ','The basin lies approximately along he axis on which the rich Bakassi oil fields are found  ','The basin is at the edge of the desert with conditions similar to that of Iraq  ','it is an inland drainage basin with many large rivers emptying into it  ','Its rocks are sedimentary ','','','d','','post-utme','2007',145,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:05'),(45,'Which of the following is correct?  ','The Canaries current is cold and washes the coast of NE Africa  ','The Peruvian current is warm and washes the West coast of America  ','The Gulf stream is warm and moves north eastward on the Atlantic  ','The middle east current is warm and washes the coast of Saudi Arabia ','','','c','','post-utme','2007',149,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(46,'Which of the following formulae is the correct one for converting X0 Fahrenheit temperature reading into Centigrade temperature readings (Y0)?  ','Y = (X + 32)5/90C ','Y = (X – 32)5/90C  ','Y =  (X – 32)9/50C  ','Y = (X+32)9/50C','','','c','','post-utme','2007',145,'Admin','0000-00-00 00:00:00','2020-06-22 20:34:57'),(47,'Oxbow lakes are found in  ','lower courses of some rivers ','wind bow out sites  ','places with history of tectonism ','areas of subsidence ','','','a','','post-utme','2008',141,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:39'),(48,'Coombes are associated with  ','honey-bee farms  ','Karst environment  ','rift valley system  ','cases in the desert','','','b','','post-utme','2008',163,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(49,'The Stevenson’s screen is used to keep  ','barometer   ','thermometers  ','hygrometers  ','evapori meters','','','b','','post-utme','2008',151,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:57'),(50,'Global Positioning Systems (GPS) help in  ','combating crime  ','providing early warning against disasters  ','climate change monitoring ','locating positions on the earth surface ','','','d','','post-utme','2008',141,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(51,'One of these is not a factor of population growth  ','poverty  ','migration  ','prosperity  ','housing ','','','a','','post-utme','2008',153,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:05'),(52,'Which of the following is not a major problem of Kainji Dam?  ','increase in the herds of the cattle that depends on its waters  ','increase in usage of Niger in Niger Republic  ','silting of the dam  ','growing demand for irrigation water','','','b','','post-utme','2008',164,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(53,'The East Africa large lakes are together described as  ','Great Lakes St Lawrence Sea Ways  ','Rift Valley Lakes  ','Sources of large rivers like Nile  ','products of the formation of Mt Kilimanjaro ','','','b','','post-utme','2008',147,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(54,'One of these is not true of rain gauges:  ','Rain gauge provide excellent measurement of rainfall ','Their measurements may be affected by the particular type used ','Their readings may be influenced by slope of the land  ','Rain splashes during heavy rains may lead to over estimation ','','','c','','post-utme','2008',157,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(55,'South East Asia is noted for its regular experience of  ','hurricane  ','tornadoes  ','typhoons  ','strong wind','','','c','','post-utme','2008',146,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:07'),(56,'Horse latitudes refers to  ','areas around the gulf of guinea ','areas around the equator  ','areas around the Mediterranean sea  ','areas around latitude 300 in both hemispheres.','','','d','','post-utme','2008',156,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(57,'“High uniform temperature and heavy well distributed rainfall throughout the year” described ','Equaterial rainforest climate  ','Mid altitude friendly environment  ','the zone of forest with a lot of agricultural potentials  ','the great Amazon basin including the Brazilian forests','','','a','','post-utme','2008',152,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(58,'On of the following is least important to ocean movement  ','salinity of the ocean water  ','temperature of the water  ','planetary wind  ','curvature of the coastal areas','','','d','','post-utme','2008',138,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(59,'The cloud which are white globular masses, forming ripples in the sky is called ','Citrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2008',158,'Admin','0000-00-00 00:00:00','2020-06-24 19:42:05'),(60,'Which one of the following seas has highest degree of salinity in the world?  ','Caspian sea  ','Mediterranean sea  ','Dead Sea  ','Red sea','','','c','','post-utme','2008',161,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(61,'Which of the following landforms is NOT due to the process of glacier erosion? ','Come  ','valley -bench  ','Hanging valley  ','Esker','','','b','','post-utme','2008',150,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(62,'Which of the following rivers does NOT drain into Atlantic Ocean? ','The Niger  ','The Indus  ','The Amazon  ','The Volta','','','b','','post-utme','2008',167,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:18'),(63,'Which features on a  topographic sheet would you analyze to characterize the configuration of the area covered by the sheet  ','Isoyet and Isolines  ','ranges and spot heights ','Contour lines for cross section','Contour lines for slope estimates  ','','','d','','post-utme','2008',146,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(64,'The greatest challenge to future use of automobiles is  ','advances in air travel  ','identification of alternative to fossil fuels  ','changing and more reliable technology for rail transport ','population growth ','','','b','','post-utme','2008',131,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(65,'The statements ‘one cm 2 km can be represented by the ratio of  ','1:50,000 ','1:500,000  ','120,000','1:200,000','','','d','','post-utme','2008',151,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(66,'What is the Local Standard time in New York (750W) when it is 2 p.m. in Accra?  ','7 p.m. (19hrs)  ','7 a.m. (0700hrs)  ','9 p.m. (2100hrs)  ','9 a.m. (0900hrs)','','','d','','post-utme','2008',136,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:25'),(67,'On any day in the year at a specific time  ','the sun is overhead along the equator  ','the sun is overhead along the topic of cancer  ','the North Pole has 24 hours of daylight  ','one half of the earth is in darkness','','','d','','post-utme','2008',143,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:12'),(68,'Which of the following is not a true feature produced by volcanic activity? ','horst  ','caldera  ','dyke  ','geyser ','','','a','','post-utme','2008',160,'Admin','0000-00-00 00:00:00','2020-06-28 12:19:31'),(69,'Which is the main crop grown in the Ghezira plains ','Wheat  ','Millet  ','Rice  ','Cotton','','','d','','post-utme','2008',172,'Admin','0000-00-00 00:00:00','2020-06-29 14:49:49'),(70,'Which of the following countries has a large number of people of Africa descent? ','England  ','Canada  ','Chile  ','Brazil ','','','d','','post-utme','2008',131,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:10'),(71,'When it is 1200 noon on longitude 300E. What is the time on longitude 150W.  ','9.00 a.m. ','5.00 p.m.  ','9.00 p.m.  ','5.00 a.m. ','','','a','','post-utme','2008',148,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(72,'Which of the following Nigerian towns is Not situated near a big river? ','Lokoja ','Onitsha  ','Jebba  ','Abuja','','','d','','post-utme','2008',136,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(73,'Fishing is the mainstay of the economy of  ','Libya  ','Iran  ','Iceland  ','Chad','','','c','','post-utme','2008',137,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(74,'Which of the following features is produced by wave deposition  ','caves  ','stack  ','tomobolo  ','blow holes','','','c','','post-utme','2009',148,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(75,'Which of the following is the major factor responsible for Japan’s unparalleled industrial growth in the last few decades? ','Japan’s proximity to mainland ','Japan’s cargo population    ','availability of abundant coal and petroleum ','technological proficiency','','','d','','post-utme','2009',166,'Admin','0000-00-00 00:00:00','2020-06-28 11:31:25'),(76,'Which of the following timber trees are found in the tropical rain forest of Africa? ','Obeche and teak  ','Mahogany and teak  ','Obeche and Mahogany ','Iroko and Eucalyptus','','','c','','post-utme','2009',149,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(77,'Which of the following basins has the highest population concentration? the ','Indus  ','Niger  ','Nile  ','Mississippi ','','','b','','post-utme','2009',162,'Admin','0000-00-00 00:00:00','2020-06-26 18:50:24'),(78,'Which of these economic activities is LEAST characteristics of typical urban centres?  ','Commerce ','quarrying  ','transportation  ','manufacturing ','','','b','','post-utme','2009',139,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(79,'In Karst region, when several dolines are joined together to form depression, it is known as ','cave  ','uvala  ','stalactite  ','calcite pallar','','','b','','post-utme','2009',155,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(80,'Rural settlements can be distinguished from urban settlements by their?  ','function  and population  ','Site and function  ','demography and morphology  ','morphology and location ','','','a','','post-utme','2009',149,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(81,'The scientist who propounded the theory of continental drift was?  ','Francis bacon  ','Alfred Wegener   ','Authur Holmes ','Williams Davis','','','b','','post-utme','2009',139,'Admin','0000-00-00 00:00:00','2020-06-27 17:54:36'),(82,'The major world exports of wool are  ','Britain, Australia, Mediterranean Europe and Argentina   ','New Zealand, Uruguay, Australia and Argentina  ','Australia, India, Paraguay and Argentina  ','New Zealand, India, Uruguay and Peru','','','b','','post-utme','2009',150,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(83,'Blantyre, Rio Janeiro, New York and Lagos are similar in that they all serves as their countries ','major seaport  ','political headquarter ','commercial centres ','cultural centres','','','c','','post-utme','2009',129,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:46'),(84,'The dawn is a temperature grassland found in? ','Australia  ','South America  ','Eurasia  ','South Africa','','','a','','post-utme','2009',142,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(85,'Commercial grape cultivation is associated with?  ','cool temperature climate  ','monsoon regions  ','Mediterranean regions  ','Montane climate ','','','c','','post-utme','2009',142,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(86,'The highest volume of shipping across the Atlantic ocean is  ','between Europe and Africa  ','between North America and Europe  ','between African and South America ','between North America and South America','','','b','','post-utme','2009',159,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:39'),(87,'The Ukraine of economic activities  ','commercial grain agriculture  and livestock random ','plantation agriculture and nomadic herding.','','','','','a','','post-utme','2009',143,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:01'),(88,'All planets have satellites except:  ','Earth & Venus ','Mars & Mercury  ','Mercury & Venus  ','Neptune & Venus','','','c','','post-utme','2010',151,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(89,'Which of the following location in Nigeria has the least mean annual rainfall total?  ','Sokoto  ','Maiduguri  ','Potiskum  ','Nguru','','','b','','post-utme','2010',162,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(90,'Which of the following is not the Karst features? ','Poljes  ','Uvala  ','Kopjes  ','Dolines ','','','c','','post-utme','2010',143,'Admin','0000-00-00 00:00:00','2020-06-24 21:22:06'),(91,'The world’s longest river is ','Amazon  ','Mississippi  ','Nile  ','Chang Jiang','','','c','','post-utme','2010',136,'Admin','0000-00-00 00:00:00','2020-06-24 19:53:51'),(92,'One of these is a features of rejuvenated river: ','Incised menders  ','Braided channel  ','delta  ','Levees ','','','a','','post-utme','2010',135,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(93,'Which one of these is not a thermometric scale:  ','Celsius  ','Kelvin  ','Fahrenheit  ','Octas ','','','d','','post-utme','2010',157,'Admin','0000-00-00 00:00:00','2020-06-30 19:41:19'),(94,'Which of these is not a form of condensation? ','Snow ','Rime  ','Cloud  ','Fog','','','b','','post-utme','2010',158,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(95,'Cyclones are centres of  ','relative low pressure  ','relative high pressure  ','Tsunamis  ','turning around of winds','','','a','','post-utme','2010',150,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:11'),(96,'The best natural harbour in West Africa is at  ','Lome  ','Tema ','Lagos ','Freetown ','','','d','','post-utme','2010',148,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(97,'Sandstone is metamorphosed into  ','Slate  ','Schist  ','graphite  ','Quartzite ','','','d','','post-utme','2010',137,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(98,'The navigability of River Nile is limited because  ','it is too long  ','it is too shallow  ','it flows during the wet season only  ','it has several cataracts. ','','','d','','post-utme','2010',149,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(99,'The cloud which is closely associated with thunderstorms is  ','strato-cumulus  ','Cirrocumulus  ','Cumulus-nimbus  ','Alto-stratus ','','','c','','post-utme','2010',153,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(100,'Drought-tolerant plants are  ','Epiphytes  ','Hydrophytes  ','Droughytes  ','Xerophytes ','','','d','','post-utme','2010',160,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(101,'Campos is the name for the grassland in  ','North America  ','South America  ','Africa  ','Asia ','','','b','','post-utme','2010',144,'Admin','0000-00-00 00:00:00','2020-06-25 15:30:45'),(102,'When the moon comes in between the earth and the sun in a perfect straight line, it is known as','Eclipse of the moon  ','Lunar eclipse ','solar eclipse  ','eclipse of the earth ','','','c','','post-utme','2010',157,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:07'),(103,'The earth rotates ','South East-South West  ','South West South West  ','West East  ','East West','','','c','','post-utme','2010',140,'Admin','0000-00-00 00:00:00','2020-06-28 08:04:19'),(104,'A degree latitudinal distance is approximately ','70km  ','111km  ','180km  ','360km','','','b','','post-utme','2010',157,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(105,'Large masswa of moving ice in the oceans are  ','glacier  ','iceberg  ','ice-sheet  ','ice-caps','','','b','','post-utme','2010',156,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(106,'The world driest desert is  ','Atacama  ','Sahara  ','Kalahari  ','California ','','','a','','post-utme','2010',153,'Admin','0000-00-00 00:00:00','2020-06-24 19:53:51'),(107,'A line joining places of equal salinity is  ','isohaline  ','Isoneph  ','Isohyets  ','Isohel','','','a','','post-utme','2010',163,'Admin','0000-00-00 00:00:00','2020-06-28 12:12:57'),(108,'Which of these is not on the western side of continental land masses? ','Agulhas  ','Canary  ','Penivian  ','California','','','a','','post-utme','2010',152,'Admin','0000-00-00 00:00:00','2020-06-26 18:50:24'),(109,'In general, temperature decreases from the equator towards the Poles because  ','angle of incidence of sun’s rays increases towards the poles ','angles of incidence sun’s rays decreases towards the poles  ','Snow-cover of the higher latitudes reduces the temperature  ','snow falls rather than rain in the pole','','','a','','post-utme','2010',150,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(110,'Which of the following continents is crossed by both the Tropic of Cancer and Tropic of Capricorn?  ','Asia  ','South America ','North America  ','Africa','','','d','','post-utme','2010',140,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:15'),(111,'The sea bed, bordering the continents which is covered by the shallow water is known as ','continental slope ','coral reef ','continental shelf  ','continental platform  ','','','c','','post-utme','2010',150,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:57'),(112,'The result of football match completed at 6.00p.m. at Accra (Ghana) and immediately announced over the wireless was heard at 12.00noon same day at another city. The longitude of the city is ','900E  ','600E  ','900W  ','450W ','','','c','','post-utme','2010',162,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(113,'Soil that are formed by wind deposition are called  ','laterites  ','prairies  ','podsols   ','Loess  ','','','d','','post-utme','2011',152,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(114,'Which of the following is not a feature of sea deposition ','Shoal ','Beach ','Spit ','coal','','','d','','post-utme','2011',142,'Admin','0000-00-00 00:00:00','2020-06-30 19:41:19'),(115,'Which of the following terms is associated with glaciations? ','Arête   ','Bay   ','Stacks   ','Reef   ','','','a','','post-utme','2011',155,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(116,'The lower part of a river valley that has been submerged by the sea is called ','Estuary   ','Reef    ','Spit   ','Bar  ','','','b','','post-utme','2011',155,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(117,'Which of the following is a cold ocean current ','Mozambique   ','gulf stream ','Kuro Siwo  ','Benguela   ','','','d','','post-utme','2011',135,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(118,'The most important cause of tides is the,','distribution of the prevailing winds ','rotation of the earth on its own axis  ','inclination of the earth’s axis  ','gravity attraction of the moon ','','','d','','post-utme','2011',157,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(119,'Desert soils are usually deficient in ','fertility  ','humus content ','horizon ','light grey colour   ','','','b','','post-utme','2011',161,'Admin','0000-00-00 00:00:00','2020-06-24 20:51:34'),(120,'At the summer solstice [June 21st], which of the following latitudes will have the longest day ','700S   ','900S  ','300N   ','650N   ','','','d','','post-utme','2011',146,'Admin','0000-00-00 00:00:00','2020-07-02 10:38:51'),(121,'Cyclones refer to ','centers of relatively high pressure ','centers of relatively low pressure ','centers Tsunamis ','centers in the desert ','','','b','','post-utme','2011',140,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(122,'The wearing away of the sides and bottom of a river channel is called ','corrasion ','corrosion ','hydraulic action ','Complicated erosion ','','','a','','post-utme','2011',147,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:05'),(123,'When the moon comes in between the earth and the sun in a straight line, it is known as  ','solar eclipse ','eclipse of the earth ','eclipse of the moon ','lunar eclipse ','','','a','','post-utme','2011',144,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:41'),(124,'A degree of latitudinal distance is approximately  ','111km  ','221KM ',' 121km  ','212km  ','','','a','','post-utme','2011',140,'Admin','0000-00-00 00:00:00','2020-06-28 12:12:57'),(125,'Which of the following places in Nigeria has the highest mean annual rainfall amount ','Sokoto  ','Maiduguri  ','Nguru   ','Kano  ','','','c','','post-utme','2011',165,'Admin','0000-00-00 00:00:00','2020-06-28 12:12:57'),(126,'The formulae for converting temperature from a centigrade (0C) to a Fahrenheit (0F) thermometric scale? ','0F = 1.8 x 0C + 32  ','0F = 0.5x 0C + 32  ','0F = 1.8x 0C – 32   ','0F = 0.5x 0C – 32  ','','','a','','post-utme','2011',145,'Admin','0000-00-00 00:00:00','2020-06-24 19:42:05'),(127,'The Northern Hemisphere’s Spring Equinox is during the month of','February ','march ','April   ','May  ','','','b','','post-utme','2011',167,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:01'),(128,'Noonday sun is vertically overhead along the Tropic of Cancer during the month of  ','June  ','July  ','August  ','September ','','','a','','post-utme','2011',135,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(129,'An instrument used in measuring the atmospheric pressure is called ','Barometer ','Thermomete','Hygrometer','Presometer','','','a','','post-utme','2011',142,'Admin','0000-00-00 00:00:00','2020-06-28 11:31:25'),(130,'Orographic rainfall is also called ','Relief rainfall','cyclonic rainfall ','convectional rainfall ','frontal rainfall ','','','a','','post-utme','2011',148,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:11'),(131,'The forest type which is richest in tree species is the ','Deciduous forest ','Mediterranean forest ','Tropical Lowland  rainforest ','coniferous forest  ','','','c','','post-utme','2011',128,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(132,'Which of the following statements is not true for lines of latitudes?','they range from 00 to 1800 North and South ','they range from 00 to 900 North and South ','They vary in D. they form parallel circles','only one line is a great circle.','','','a','','post-utme','2011',128,'Admin','0000-00-00 00:00:00','2020-06-30 19:41:19'),(133,'The earths rotates through 150C of longitude in  ','24hrs  ','15hrs  ','4hrs   ','1hrs   ','','','d','','post-utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-02 10:35:31'),(134,'What is the local standard time in New York (750W) when it is 2pm in Accra? ','9.00pm  ','9.00 pm  ','7.00pm   ','7.00am ','','','b','','post-utme','2011',131,'Admin','0000-00-00 00:00:00','2020-06-29 15:54:10'),(135,'Aeolian erosion refers to the work of  ','Wind ','Running water  ','Glacier  ','Ice  ','','','a','','post-utme','2011',130,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:24'),(136,'Which of the following landforms is the results of  river rejuvenated?  ','Ox-box lake ','flood plain ','terrace  ','alluvial fan  ','','','c','','post-utme','2011',173,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(137,'The representative fraction of 1:50,000 can be converted to the following  ','one cm to 5km  ','one cm to 0.05km  ','one cm to 2km  ','one cm to 4km  ','','','b','','post-utme','2011',146,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:13'),(138,'Which of the following is not a rapid type of mass movement? ','Solidification ','Rockfall  ','Mudflow  ','Debris Slide','','','a','','post-utme','2012',165,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(139,'A front in which warm air is overtaken and lifted off the ground by cold air in a depression is known as  ','Cold front  ','Warm front  ','Mixed front  ','Occluded','','','d','','post-utme','2012',145,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(140,'The earth’s atmosphere is said to be stable  ','when the environmental laps rate is greater than the adiabatic lapse rate  ','When the adiabatic lapse rate is greater than the environmental lapse rate  ','When the environmental lapse rate is equal to the adiabatic lapse rate  ','When the environmental lapse rate is not equal to the adiabatic lapse rate.','','','b','','post-utme','2012',147,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(141,'Environmental lapse rate is  ','The rate of temperature changes of an air parcel undergoing vertical displacement  ','The rate of temperature decrease of an air parcel undergoing horizontal displacement  ','The actual rate decrease of temperature with increase in altitude at a given place at a given moment  ','The rate of horizontal temperature gradient of an air parcel','','','c','','post-utme','2012',162,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(142,'What is the Centigrade equivalent of 950 Fahrenheit? ','1390C  ','37.20C  ','350C','3.60C','','','c','','post-utme','2012',166,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:24'),(143,'Which of the following States in Nigeria would a person NOT pass over by crow fly (direct distance) from Ibadan to Makurdi? ','Osun  ','Ondo ','Kogi  ','Enugu','','','d','','post-utme','2012',188,'Admin','0000-00-00 00:00:00','2020-07-02 09:38:08'),(144,'The Latitude which marks the limits of the overhead sun’s apparent movement is  ','0','66.5','32.5','23.5','','','d','','post-utme','2012',176,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:28'),(145,'Which of the following features is not commonly associated with a river at the floodplain stage? ','Meanders  ','Levees ','Braided channel  ','Knick point ','','','a','','post-utme','2012',162,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(146,'The World’s richest fishing grounds are found  ','On the continental shelves  ','In oceanic deeps ','In big and fast-flowing river  ','In river estuaries ','','','a','','post-utme','2012',148,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(147,'A deflation hollow is produced by  ','River erosion  ','Water action in a limestone area  ','Wind erosion in deserts  ','Wave erosion on the coast ','','','c','','post-utme','2012',164,'Admin','0000-00-00 00:00:00','2020-06-30 07:09:39'),(148,'Akosomo dam is on the River  ','Niger  ','Nile  ','Congo  ','Volta','','','d','','post-utme','2012',143,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(149,'Which of the following is a not characteristic of the International Date Line? ','The Line is approximately along the 1800 meridian  ','The line has a zigzag shape  ','Local time is the same on either side of the line  ','A traveler gains a day when crossing the line from the west to the east ','','','c','','post-utme','2012',135,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(150,'Which of the following African cities is situated near the confluence of rivers? ','Niamey  ','Freetown  ','Cairo  ','Khartoum ','','','d','','post-utme','2012',154,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(151,'Ferrel’s law states that winds deflect to the  ','Left in the northern  ','Right in the Northern hemisphere and to the left in the Southern hemisphere  ','Right in both hemispheres  ','Left in both hemisphere.','','','b','','post-utme','2012',147,'Admin','0000-00-00 00:00:00','2020-06-26 19:05:36'),(152,'Given an environmental lapse tate of 0.650C per 100 metres, a place with sea level temperature of 400 and 2500 metre above the sea level will approximately have a temperature of  ','31.250C  ','23.750C  ','32.50C  ','28.250C ','','','b','','post-utme','2012',174,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(153,'At the summer solstice (June 21), which of the following latitudes will have the shortest night?','30 “N  ','30 “S  ','50 “N  ','50 “S','','','c','','post-utme','2012',138,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(154,'Which of the following landforms result from wind deposition? ','Playa  ','Barchan  ','Bajada  ','Fan','','','b','','post-utme','2012',175,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(155,'Which of the following farming practices can be used to check soil erosion? ','Contour ploughing  ','Ploughing of land upslope  ','Bush burning  ','Shifting','','','a','','post-utme','2012',159,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:46'),(156,'Aeolian erosion refers to the work of  ','Plants  ','Wind  ','Ice  ','Running water','','','b','','post-utme','2012',179,'Admin','0000-00-00 00:00:00','2020-06-29 14:15:45'),(157,'The difference in the readings on the dry and wet bulb thermometers used to determine  ','Relative humidity  ','Temperature range  ','Evaporation  ','Transpiration ','','','a','','post-utme','2012',149,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:53'),(158,'Which of the following scales should show the greatest amount of detail on a map? ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2012',147,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(159,'Sandstone is metamorphosed into  ','Slate  ','Quartzite  ','Schiest  ','Graphite ','','','b','','post-utme','2012',147,'Admin','0000-00-00 00:00:00','2020-06-24 20:01:33'),(160,'In humid areas, farmers add lime to the soil to  ','reduce acidity  ','Act as fertilizer  ','Facilitate the absorption of nutrient  ','Encourage the farmer','','','a','','post-utme','2012',165,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(161,'In the hydrological cycle, the transfer of water from the earth’s surface to the atmosphere is by ',' Evaporation only  ','Transpiration Only  ','Evaporation  ','Condensation ','','','c','','post-utme','2012',138,'Admin','0000-00-00 00:00:00','2020-07-02 10:35:26'),(162,'The second Equinox in any year take place during the month of','March   ','June   ','September   ','December','','','c','','post-utme','2013',156,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:15'),(163,'Which of the following countries in Africa would a person NOT pass over by crow fly (direct distance) from Abidjan to Cairo?  ','Niger    ','Libya','Burkina Faso  ','Chad','','','c','','post-utme','2013',170,'Admin','0000-00-00 00:00:00','2020-06-24 20:01:33'),(164,'The main work of a river in its torrent stage is  ','Widening its valley','Down cutting','Deposition  ','Bifurcation','','','a','','post-utme','2013',163,'Admin','0000-00-00 00:00:00','2020-06-23 17:32:39'),(165,'Which of the locations in Nigeria has the highest mean annual rainfall total ?  ','Benin City  ','Port-Harcourt  ','C.Calabar   ','Ondo','','','b','','post-utme','2013',130,'Admin','0000-00-00 00:00:00','2020-06-22 20:43:10'),(166,'The world’s longest river is  ','River Amazon    ','River-Mississippi   ','River Nile  ','River Chang Jiang','','','c','','post-utme','2013',168,'Admin','0000-00-00 00:00:00','2020-06-30 19:44:20'),(167,'Which of the following is a feature  of a rejuvenated river?','Incised meanders   ',' Braided channel   ','Delta   ','Levees','','','a','','post-utme','2013',156,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(168,'Which of the following is not a thermometric scale?','Celsius     ','Kelvin','Fahrenheit   ','Octas','','','d','','post-utme','2013',150,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(169,'Which of the following is not a form of condensation?  ','Snow  ','Rime  ','C.Cloud  ','Fog','','','d','','post-utme','2013',158,'Admin','0000-00-00 00:00:00','2020-06-24 08:34:52'),(170,'The surface of discontinuity between the earth’s crust and the mantle is know as','Lithosphere   ','Barysphere','Mohocivic Discontinuity','Gutenburg discontinuity','','','b','','post-utme','2013',149,'Admin','0000-00-00 00:00:00','2020-07-02 10:38:45'),(171,'Where is Sahel Savanna vegetation belt found in Nigeria?','Northwest   ','Northeast','Both Northwest and Northeast','From the middle belt to the north','','','b','','post-utme','2013',144,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:57'),(172,'The largest soil group, found in the temperate grasslands, having a deep, black, nutrient-rich','A-horizon, a compact  B-horizon and a zone of calcium carbonate accumulation is called a','Chernozem  ','Pedocal   ','Podsol  ','Chestnut','','a','','post-utme','2013',158,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(173,'Drought-tolerant plants are known as  ','Epiphytes  ',' Hydrophytes','Drouphytes','Xerophytes','','','d','','post-utme','2013',136,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(174,'The major disadvantage of the River Nile as a trade route is that  ','it is too long   ','it is too shallow   ','it flows during the wet season only   ','it has several cataracts','','','d','','post-utme','2013',148,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(175,'The earth rotates from  ','Southeast to Southwest','Southwest  to Southeast','West to East  ','East to West','','','c','','post-utme','2013',146,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(176,'The tropical maritime air mass attains its maximum incursion over West African hinterlands','When the sun is overhead on the tropic of Capricorn  ','When the sun is overhead on the tropic of Cancer ','When the sun is overhead on the Equator','When the sun is overhead on both the tropic of Cancer and Tropic of Capricom','','','c','','post-utme','2013',150,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(177,'A line joining places of equal salinity is known as','Isohaline   ','Isoneph','Isohyet   ','Isohel','','','a','','post-utme','2013',155,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(178,'Which of the following continents has the largest area with a tropical type of climate?','Asia   ','South America','North America  ','Africa','','','a','','post-utme','2013',142,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(179,'One hour’s difference in mean solar time represents what angular difference in longitude?','15o ','23.5o  ','90o','66.5o','','','a','','post-utme','2013',147,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(180,'An extended urban area, typically consisting of several towns merging with the suburbs of one or more cities can best be referred to as  ','Conurbation','Urban decay  ','Growth pole','Urban Inertia','','','a','','post-utme','2013',145,'Admin','0000-00-00 00:00:00','2020-06-26 19:30:36'),(181,'Which of the following terms is not associated with desert-type topography?','Zuegen    ','Yardang  ','Mesa  ','Uvala','','','d','','post-utme','2013',138,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(182,'The major characteristics of a karst scenery include','Excessive overland flow','Extensive and long surface flow  ','An underground network of caves and streams','Frequent  surface drainage','','','c','','post-utme','2013',152,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(183,'Which of the following landforms originates from Aeolian erosion?','Deflation hollow  ','Sand dune  ','Playa   ','Wadi','','','a','','post-utme','2013',146,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(184,'The cheapest means of transport for a long distance travel is by   ','Air   ','Rail','Water   ','Road','','','c','','post-utme','2013',175,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:12'),(185,'A traveler crossing the international Date line from America to Asia at 1.00 P.M. on Saturday, July 13th, 2013, would have to change his watch to 1.00 P.m. on','Sunday, July 14th, 2013','Friday, July 12th 2013','Saturday, July 13th, 2013','Monday, July 15th, 2013','','','a','','post-utme','2013',148,'Admin','0000-00-00 00:00:00','2020-06-24 20:01:33'),(186,'The shaduf method of irrigation was first practiced in','Sudan   ','Ghana   ','Egypt    ','Mali','','','c','','post-utme','2013',157,'Admin','0000-00-00 00:00:00','2020-06-24 20:44:03'),(187,'Climate is the: ','Prevailing weather conditions of a region for 10 years ','Prevailing weather conditions of a region for 15 years  ','Prevailing weather conditions of a region for 35 years  ','Prevailing weather conditions of a region for 20 years  ','','','c','','post-utme-aaua','2014',140,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(188,'Igneous rocks are rocks formed by','The cooling of molten minerals from a liquid into a solid.','The change of minerals from a solid into a liquid','The deposition of minerals. ','The deposition of minerals a solid into a liquid. ','','','a','','post-utme-aaua','2014',118,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:02'),(189,'Temperature is a measure of: ','The average hotness','The average coolness','The average heat. ','The average emission.','','','c','','post-utme-aaua','2014',143,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(190,'Isotherm refers to: ','Line that connects points of equal sunshine','Line that connects points of equal rainfall','Line that connects points of equal pressure.  ','Line that connects points of equal temperature','','','d','','post-utme-aaua','2014',145,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(191,'The longest river in Africa is:  ','River Nile. ','River Niger. ','River Benue','River Zambezi ','','','a','','post-utme-aaua','2014',150,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(192,'Isobar refers to: ','Line that connects points of equal humidity. ','Line that connects points of equal rainfall.   ','Line that connects points of equal pressure.  ','Line that connects points of equal temperature. ','','','c','','post-utme-aaua','2014',133,'Admin','0000-00-00 00:00:00','2020-06-24 20:51:34'),(193,'Topographic maps are: ','Representations of features on the Earth\\'s surface','Features on the Earth\\'s surface. ','Detailed and accurate graphic representations of features on the Earth\\'s surface ','Geographic coordinate grid on the Earth\\'s surface. ','','','c','','post-utme-aaua','2014',126,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(194,'Lesotho is in: ','South Africa','West Africa.   ','East Africa','Central Africa','','','c','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(195,'Weathering of rocks is: ','The formations of rocks','The breaking down of rocks.   ','The deformations of rocks','The accumulation of rocks. ','','','b','','post-utme-aaua','2014',118,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(196,'Scale of a map is defined as: ','The ratio of a distance on the drawing board to the corresponding distance on the ground. ','The ratio of a distance on the map to the corresponding distance on the ground','The ratio of a distance on the tape to the corresponding distance on the ground. ','The ratio of a distance on the ruler to the corresponding distance on the ground','','','b','','post-utme-aaua','2014',124,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(197,'The capital of Niger state in Nigeria is: ','Gusau','Yola','Makurdi','Minna','','','d','','post-utme-aaua','2014',123,'Admin','0000-00-00 00:00:00','2020-06-28 11:31:25'),(198,'A valley is a:   ','Highland between hills','Lowland between hills','Rock between hills','Highland between trees. ','','','b','','post-utme-aaua','2014',149,'Admin','0000-00-00 00:00:00','2020-07-02 10:40:13'),(199,'Nigeria has a total land area of: ','923,768 km2 ','823,768 km2 ','623,768 km2 ','723,768 km2 ','','','a','','post-utme-aaua','2014',133,'Admin','0000-00-00 00:00:00','2020-06-23 11:19:09'),(200,'A lake is a:   ','Large body of water surrounded by forest. ','Large body of water surrounded by land. ','Large body of water surrounded by rocks','Large body of water surrounded by water. ','','','b','','post-utme-aaua','2014',134,'Admin','0000-00-00 00:00:00','2020-06-30 19:44:20'),(201,'Nigeria is having','574 Local Government Areas','674 Local Government Areas. ','774 Local Government Areas. ','874 Local Government Areas','','','c','','post-utme-aaua','2014',119,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(202,'An island is a:   ','Piece of land surrounded by water.   ','Piece of land surrounded by land. ','Piece of land surrounded by forest. ','Piece of land surrounded by rocks. ','','','a','','post-utme-aaua','2014',130,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:12'),(203,'The ethnic groups in Nigeria are: ','More than 250  ','More than 150   ','More than 100   ','Less than 150 ','','','a','','post-utme-aaua','2014',129,'Admin','0000-00-00 00:00:00','2020-06-21 00:07:22'),(204,'Orographic rainfall is a:   ','Temperate rainfall','Relief rainfall. ','Coastal rainfall','Forest rainfall.   ','b','','','','post-utme-aaua','2014',141,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(205,'One major societal issues in Nigeria is: ','Poor feeding. ','Poor human rights','Poor language','Poor religion. ','','','b','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(206,'The United Nations estimate of Nigeria population in 2009 was','154,729,000','144,729,000.00','164,729,000.00','184,729,000.00','','','b','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(207,'Nigeria lies between','Latitudes 4° and 13°N and longitudes 2° and 15°E. ','Latitudes 5° and 14°N and longitudes 4° and 15°E. ','Latitudes 4° and 14°N and longitudes 2° and 15°E. ','Latitudes 2° and 15°N and longitudes 4° and 14°E. ','','','c','','post-utme-aaua','2014',130,'Admin','0000-00-00 00:00:00','2020-06-24 06:48:22'),(208,'Kinshasa is a: ','Central African City ','North African City ','East African City ','South African City ','','','a','','post-utme-aaua','2014',134,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(209,'Freetown is a: ','North African City ','West African City ','South African City ','East African City ','','','b','','post-utme-aaua','2014',144,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:53'),(210,'Which one of the following countries is having the highest quality of life? ','Sweden  ','Austria ','United States of America ','England  ','','','a','','post-utme-aaua','2014',153,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(211,'Nairobi is a: ','North African City ','West African City ','South African City ','East African City ','','','d','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(212,'The most populated country in the world is: ','Austria ','China ','United States of America ','Brazil ','','','b','','post-utme-aaua','2014',150,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(213,'Casablanca is a','North African City ','West African City ','South African City ','Central African City ','','','a','','post-utme-aaua','2014',143,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:08'),(214,'The World largest Ocean is: ','Pacific Ocean ','Atlantic Ocean ','Indian Ocean ','Arctic Ocean ','','','a','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-24 21:22:06'),(215,'Dominican Republic is in: ','Europe ','Africa ','America ','Asia ','','','c','','post-utme-aaua','2014',154,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:46'),(216,'The World Longest Coastlines is in: ','Austria ','England  ','United States of America ','Canada ','','','d','','post-utme-aaua','2014',129,'Admin','0000-00-00 00:00:00','2020-06-28 11:31:25'),(217,'Which of the following is an evidence to show that the earth is spherical in shape? ','Elliptical orbit ','Ea th s  u ed ho izo','Revolution of the earth ','Seasonal changes ','','','b','','post-utme-aaua','2014',142,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(218,'A lines drawn on a maps to show places of equal rainfall is called ','Rainline ','Isotope ','Isotherm ','Hydrotope ','','','b','','post-utme-aaua','2014',133,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(219,'Wind erosion is most common in ','Rocky areas ','Riverine areas ','Arid areas ','Humid areas ','','','c','','post-utme-aaua','2014',108,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:37'),(220,'The act of graphical representation of places with identified scale and legend is called ','Scaling ','Mapping  ','Sketching ','Drawing ','','','b','','post-utme-aaua','2014',135,'Admin','0000-00-00 00:00:00','2020-06-24 06:48:22'),(221,'A piece of land almost surrounded by water is called ','Headland ','Peninsula ','Island   ','Plateau ','','','c','','post-utme-aaua','2014',135,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(222,'Planet warming the use of water transport is limited by all the following except  ','Wide valleys   ','Waterfalls ','Seasonality  ','Narrow gorges   ','','','a','','post-utme-aaua','2014',138,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(223,'To obtain the climate of a place the average atmospheric weather conditions should be considered ','20years ','24years','35years ','10years ','','','c','','post-utme-aaua','2014',163,'Admin','0000-00-00 00:00:00','2020-06-24 08:34:52'),(224,'Which of the following is a major hindrance to H.E.P.','Inadequate capital  ','Unavailability of good sites  ','Absence of domestic market  ','Sufficient volume of water  ','','','d','','post-utme-aaua','2014',146,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(225,'Isotherms are lines drawn on maps joining places having equal ','Temperature   ','Cloud cover ','Pressure ','Water level ','','','a','','post-utme-aaua','2014',136,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:11'),(226,'Precipitation include all the following except ','Fog','Snow ','Dust   ','Dew ','','','c','','post-utme-aaua','2014',125,'Admin','0000-00-00 00:00:00','2020-06-24 20:01:33'),(227,'The location of iron and steel industry at Ajaokuta in Nigeria is best explained by the presence of ','Limestone and coal  ','Iron ore   ','Bauxite  ','Manganese ','','','b','','post-utme-aaua','2014',139,'Admin','0000-00-00 00:00:00','2020-07-02 10:40:09'),(228,'Settlements can be classified according to all the following except the   ','The arrangements of the building   ','Number of people per settlements   ','Functions  ','The type of people that live in the area   ','','','d','','post-utme-aaua','2014',133,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(229,'The average hurricane exists, on the average, for about ________. ','one week ','two weeks ','three weeks ','four weeks ','','','d','','post-utme-aaua','2014',156,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(230,'……...Refers to the nature of the surface of an area and the features that abound therein above the sea level','Barchans ','Relief   ','Plateaux   ','Plain','','','b','','post-utme-aaua','2014',138,'Admin','0000-00-00 00:00:00','2020-06-23 11:16:36'),(231,'Any buoyant parcel of air is said to exhibit ________. ','Instability ','The dry adiabatic lapse rate ','The moist adiabatic lapse rate ','Advection','','','a','','post-utme-aaua','2014',142,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(232,'The north east and south west trade winds meet along a plane surface where they continuously rub ','Abnormal front  ','Leeward front  ','Intertropical front ','Windward front  ','','','c','','post-utme-aaua','2014',150,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(233,'________ is the time of day when tornadoes are most likely to occur','Dawn ','Mid-afternoon ','Evening ','Noon ','','','b','','post-utme-aaua','2014',122,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(234,'Crude oil is ------------  rock mineral   ','An igneous   ','A sedimentary  ','A metamorphic  ','A plutonic  ','','','b','','post-utme-aaua','2014',126,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(235,'The new name of Calicut, a famous city of Kerala is ','Kozhikode','Trivendrum','Kalighat ','Koderma ','','','a','','post-utme-aaua','2014',130,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(236,'An anemometer is used to measure','wind vane','wind direction','wind speed','wind pressure','','','c','','post-utme-aaua','2014',124,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `government` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=724 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `government` VALUES (1,'In which of the following countries is governmental powers most fused? ','Nigeria ','United States of America ','France ','Canada','','','c','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(2,'The benefits of separation of powers include the following except ','prevention of tyranny ','check of abuse ','promoting democracy with free and fair election ','avoidance of arbitrariness','','','c','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:45'),(3,'Laws made by state   government are known as ','edicts ','bye-law ','acts  ','decrees','','','a','','post-utme','2006',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:23'),(4,'In a parliamentary system of government, the function of the head of state and the head of government are vested in ','the inner cabinet ','an individual ','two different individuals ','the ministerial council','','','c','','post-utme','2006',60,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:30'),(5,'In a modern democracy, the ultimate source of sovereignty is the ','legislature and executive ','judiciary ','ruling political party ','people','','','d','','post-utme','2006',62,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:54'),(6,'The British took over Nigeria through ','negotiation ','bargaining  ','war ','the sea','','','a','','post-utme','2006',67,'Admin','0000-00-00 00:00:00','2020-06-07 14:14:55'),(7,'Politics is an act for ','man to govern himself ','man to create governments ','states to control its destiny ','man to dominant others','','','a','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:19'),(8,'A major issue that distinguishes pressure groups from political parties is ','membership drive ','objective ','vomiting pattern ','ideology','','','b','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:11'),(9,'A nation consist of people with ','common history ','common ancestry ','a  shared set of values ','A, B and C above','','','d','','post-utme','2006',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:10'),(10,'A totalitarian state is based on  ','multi-party system ','total protection of civic rights ','the totality of the state processes ','coercion as the instrument of government','','','d','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-06-08 22:20:25'),(11,'A political concept that defines  the beliefs, attitudes and values of a society is called ','political socialization ','political culture ','political transformation ','referendum','','','b','','post-utme','2006',63,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(12,'The agent of political socialization generally regarded as the most important is ','family ','peer group','school ','churches and mosques','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-06-01 17:39:17'),(13,'A political ideology that defines a system of societal organization in which the state controls the commanding heights of the economy is called ','Totalitarianism ','Communalism ','socialism ','communism ','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:05'),(14,'Which of the following best describes French colonial policy in Africa? ','policy of association ','policy of Casus Belli ','policy hostility ','policy of assimilation','','','d','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-05-30 11:12:52'),(15,'What was the primary purpose of the Sir Henry Willink Commission of Inquiry? ','to approve the independence of Nigeria ','to allay the fears of minorities in Nigeria ','to amalgamate northern and southern  Nigeria ','to make Lagos a British Colony','','','b','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-06-03 11:04:32'),(16,'The military coup of July 25, 1975 which toppled General Yakubu Gowon from power  took place when he was attending which important event? ','OAU Summit in Kampala ','UN General Assembly in New York ','Assembly of Heads of states of ECOWAS in Monrovia ','The Olympic Games','','','a','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(17,'Which of the following political parties did not participate in the 1979 General Elections in Nigeria? ','Unity Party of Nigeria ','National Party of Nigeria ','social Democratic Party ','Great Nigeria People’s Party','','','c','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-06-03 13:35:42'),(18,'Alhaji Shehu Shagari was sworn in as President of the Federal Republic of Nigeria in 1979 by ',' Justice Fata Williams ','Justice Adetokunbo Ademola ','Justice Salihu Modibbo  Alfa Belgore ','Justice Isa Mohammed','','','b','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-06-03 20:01:15'),(19,'The electorate is generally  understood to refer to ','elected members of the National- Assembly ','elected members of the state house of assembly  ','candidates who can contest elections ','those citizens qualified to vote at elections','','','d','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-06-17 20:48:37'),(20,'Into how many local government areas in Nigeria officially delineated? ','654','650','820','774','','','d','','post-utme','2006',51,'Admin','0000-00-00 00:00:00','2020-06-03 23:45:22'),(21,'The centenary anniversary of the amalgamation of Northern and Southern Nigeria will be celebrated in ','2060','2063','2014','2007','','','c','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(22,'Which of these men introduced indirect rule in Nigeria? ','Mungo Park ','Dr. Nnamdi Azikiwe ','Lord Lugard ','Sir James Robertson.','','','c','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(23,'Democracy was first practiced in ','Ghana ','United States of America ','Greece ','Britain','','','c','','post-utme','2007',54,'Admin','0000-00-00 00:00:00','2020-06-28 19:50:01'),(24,'Which of these countries has the highest population in West Africa? ','Mauritania','Ghana ','The Gambia ','Nigeria.','','','d','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:22'),(25,'This African ruler resisted colonial rule and was later exiled by the colonial  officials ','Alaafin of Oyo ','Oba of Benin ','King Jaja of Opobo','Onisanbo of Ogbooro.','','','c','','post-utme','2007',60,'Admin','0000-00-00 00:00:00','2020-06-01 15:56:28'),(26,'The following countries are settler colonies except  ','Nigeria ','south Africa ','Angola ','Mozambique.','','','a','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:25'),(27,'Nigeria gained independence from colonial rule on ','1-Oct-60','November, 1963 ','29-May-99','1-Nov-60','','','a','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-29 06:43:13'),(28,'All but one of the following is not a symbol of political culture ','a national flag ','the government ','an anthem ','the constitution.','','','b','','post-utme','2007',64,'Admin','0000-00-00 00:00:00','2020-06-01 14:52:45'),(29,'All but one of these is not an agency of political socialization ','the constitution ','the family ','peer group ','schools ','','','a','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-06-08 06:39:30'),(30,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives ','propaganda ','lobbying ','assault ','boycott','','','c','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:07'),(31,'The following are Anglophone West African countries except ','Ghana ','Nigeria ','Kenya ','The Gambia.','','','c','','post-utme','2007',64,'Admin','0000-00-00 00:00:00','2020-06-28 19:50:01'),(32,'A Nigerian who has been the secretary of the Commonwealth of Nations Organizations is ','Dr. Ibrahim Gambari ','Professor Adebayo Adedeji ','Chief Jaja Nwachukwu ','Chief Emeka Anyaoku','','','d','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-06-18 22:38:07'),(33,'How many countries are in Africa? ','fifteen ','fifty-three ','fifty','fifty-five','','','b','','post-utme','2007',58,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:15'),(34,'Economic Community of West African States (ECOWAS) was based on the initiative of the heads of state  of these two countries ','Nigeria and Ghana ','Nigeria and Togo ','Senegal and Cote d’lvoire ','B and C above','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:08'),(35,'ECOWAS Treaty was signed on ','28-May-74','1-Oct-60','12-Jun-75','none of the above','','','d','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-08 19:25:57'),(36,'In which city was the ECOWAS Treaty signed ','Lagos ','Banjul ','Accra ','Abuja','','','a','','post-utme','2007',64,'Admin','0000-00-00 00:00:00','2020-06-28 19:59:00'),(37,'A capitalist state is based on ','religion ','creating job opportunities ','dictatorship ','free trade','','','d','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-06-03 23:07:15'),(38,'In politics, power is all of the following except ','capacity to affect the actions of others ','ability to make people do things they otherwise not do ','an object ','it is part of a relationship ','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-06-02 19:43:39'),(39,'Every political system performs the following basic functions except ','rule making ','rule transformation ','rule enforcement ','rule adjudication .','','','b','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-06-28 19:50:01'),(40,'These are common forms of governments except ','federal ','Unitary ','Plural ','confederal','','','c','','post-utme','2007',60,'Admin','0000-00-00 00:00:00','2020-06-08 19:25:57'),(41,'In a federal system ','the centre is weak ','plurality is abnormal ','there is nothing like autonomous units ','there is unit in diversity ','','','d','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-11 19:38:47'),(42,'The legislature performs the following functions except ','determines  the general direction of public policies ','investigating and monitoring the activities of the officials of government ','exercises power of appointment of government officials ','enforcing the law','','','d','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(43,'The independence constitution of 1960 ','introduced bicameral legislature ','catered for the three  regions of Nigeria ','provided for emergency powers ','provided for fundamental human rights','','','d','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:57'),(44,'Nigeria became a republic in ','1960','1961','1963','1914','','','c','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:08'),(45,'The amalgamation of the northern and southern protectorates and the colony of Lagos was in','1960','1966','1914','1957','','','c','','post-utme','2007',60,'Admin','0000-00-00 00:00:00','2020-06-04 15:05:43'),(46,'catered for the three  regions of Nigeria ','a renewed concept in international studies ','limited to the west ','a process of making the world  smaller ','an increasing integration of the world.','','','b','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:45'),(47,'The French colonial policy of Assimilation  was intended to ','to transfer technology to Africa ','to make Frenchmen out of African ','to produce well educated Africans ','to prepare Africans for the Olympic Games','','','b','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-04 03:05:30'),(48,'One of these is not a characteristic  of the state ','selection of political leaders ','a written constitution ','monopoly of the legitimate use of armed force ','sovereignty','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:09'),(49,'The Economic Community of West African States was established in ','May-75','May-63','May-66','May-96','','','a','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-06-15 03:13:34'),(50,'Nigeria became a republic on ','29-May-99','1-Oct-60','1-Jan-66','1-Oct-63','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-06-07 20:19:16'),(51,'Which of the following is not one of the functions of the modern legislatures? ','making laws  ','collecting taxes ','Ratification of treaties ','Performing oversight functions ','','','c','','post-utme','2008',62,'Admin','0000-00-00 00:00:00','2020-06-02 03:30:59'),(52,'The European Union (EU) is an ','Economic organization ','Association of former British colonies  ','Organization of European states ','Union  of European  organization','','','c','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-06-20 13:07:40'),(53,'What was the name of the highest ruling body during General Babangida’s rule?  ','The presidency  ','Armed Forces Ruling Council ','The National Council of states  ',' The Federal  Executive Council','','','b','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:09'),(54,'One of the following is not a specialized agency to the United Nations Organization ','security council ','International Labour Organization ','World Health Organization ','UNESCO','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-02 23:25:45'),(55,'Under which of the following conditions can a Nigerian be deprived of is or her citizenship? ','If married to a foreign  National ','If one holds a dual citizenship  ','If convicted of Armed robbery ','if one Abuse the National Flag.','','','b','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:16'),(56,'The first indigenous Governor-General of Nigeria is ','Donald Cameron ','Sir James Robertson  ','Sir Adesoji Aderemi  (the  Oni of Ife) ','Rt. Hon. Nnamdi  Aziwe','','','a','','post-utme','2008',60,'Admin','0000-00-00 00:00:00','2020-06-07 05:54:17'),(57,'The Action Group crisis was is in which year? ','1966','1962','1963','1965','','','b','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-06-07 21:11:23'),(58,'Free education was introduced in west region by which of these premiers? ','Chief Obafemi Awolowo ','Chief S.L. Akintola  ','Chief Michael Adekunle Ajasin ','Chief Bola Ige','','','a','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-05-28 20:54:30'),(59,'What does INEC stand for? ','Independent  National Elections Committee ','Independent  Newspapers executive  Committee ','Independent National Export Council ','independent National Electoral Commission ','','','d','','post-utme','2008',60,'Admin','0000-00-00 00:00:00','2020-06-03 20:01:15'),(60,'The government of one of the following countries operates an unwritten constitution ','The United States ','The Union of Soviet Socialist Republics ','Post –apartheid  South Africa ','The United Kingdom ','','','d','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-06-09 18:23:25'),(61,'The Oldest written constitution is ','American constitution ','British Constitution ','German constitution ','Roman Constitution ','','','a','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(62,'The EFCC was established to ','Arrest and try corrupt politicians ','Combat economic and financial crimes in Nigeria ','Arrest, detain and prosecute corrupt state governors and legislators  ','Assist the World Bank in monitoring economic projects in Nigeria.','','','c','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-06-03 11:31:39'),(63,'The four British colonial territories in West Africa were ','Senegal, Ghana, Sierra Leone and Nigeria ','Nigeria, Ghana, Sierra Leone and Gambia ','Nigeria, Ghana, Togo and Gambia ','Gambia, Guinea, Ghana and Gabon','','','c','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-18 22:38:07'),(64,'In many countries, citizenship can be acquired through the following processes except ','nationalization ','naturalization ','registration ','birth','','','a','','post-utme','2008',54,'Admin','0000-00-00 00:00:00','2020-06-03 23:45:22'),(65,'Which of the following does not describe a party system? ','one dominant party system  ','two party system','three party system ','multi party system','','','c','','post-utme','2008',52,'Admin','0000-00-00 00:00:00','2020-05-28 20:54:46'),(66,'ECOMOG was set up primarily to ','drive away the Europeans from West Africa ','serve as a peace keeping force for ECOWAS ','help  Nigeria to control Africa  ','promote rapid economic development among ECOWAS members','','','b','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:22'),(67,'The principle since independence include the following except ','peaceful coexistence ','legal  equality of state ','political dependence ','Non- alignment','','','c','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(68,'The body charged with the trial of persons accused of crimes  against humanity is ','criminal Court of Justice ','International Criminal Court ','International Court of Justice ','ICPC','','','b','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:51:59'),(69,'The independence of the judiciary can be enhance by the following except ','when judges hold office for a fixed term ','when judges cannot be removed from offence even whey they commit crimes ','appointment of judges by and independent body','political neutrality of judges','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:14'),(70,'Which of the following is not  a feature of Nigeria’s electoral system? ','direct election ','proportional representation ','general election  ','secret ballot','','','b','','post-utme','2008',56,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(71,'Laws made by local governments are called ','Acts of Parliament ','Local Government Acts ','Bye-laws ','Local Government Decrees','','','c','','post-utme','2008',63,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:26'),(72,'In the pre-colonial era, which of the following was not a feature of the emirate administration? ','Madawakin ','Waziri ','Sarkin Dogari ','Sarkin Emir','','','d','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-06-01 21:20:10'),(73,'Federalism was introduced in Nigeria by the ','Lyttleton Constitution ','Clifford constitution ','Macpheson constitution ','1999 constitution.','','','a','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 13:05:03'),(74,'Traditional rulers were restricted to ceremonial rules by the local  government  reforms of ','1966','1976','1984','1987','','','b','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-06-11 00:27:36'),(75,'In a parliamentary system, who ensures that members are in the house to vote on major issues? ','party leaders ','speaker of  the house ','clerk of the house  ','whip','','','d','','post-utme','2009',58,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:50'),(76,'A system in which no single person serves as the chief executive  is know as ','republican ','Revolutionary  ','Collegial  ','Parliamentary ','','','d','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-06-03 23:09:08'),(77,'A social system in which power is derived  from control over land is called ','Oligarchy  ','Feudalisms ','Socialism ','Welfarism ','','','b','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-03 11:31:39'),(78,'“Rule of law” refers to situations in which ','Lawyers are the rulers  ','Laws are supreme ','the judiciary is independent ','parliament makes laws ','','','b','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-15 03:13:34'),(79,'An important principle of the civil service is ','Authoritarianism  ','Anonymity ','Repotism  ','partisanship.','','','b','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:22'),(80,'Which of these constitutions recognized local government is the third tier of government? ','The 1946 constitution ','The 1960 constitution','The  1963 constitution ','the 1979 constitution.','','','d','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-06-01 19:05:27'),(81,'A condition for judicial indolence is the appointment of judges by the  ','civil service commission ','judicial service commission ','low review constitution ',' code of conduct Bureau','','','b','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:15'),(82,'The minorities  Commission appointed in Nigeria in 1957 recommended that ','More states should be create in the federation ','No more states should created before independence ','Nigeria should revert to a unitary structure ','The legislature  should legislature should legislature for the minority areas ','','','b','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-06-30 15:24:32'),(83,'The second military coup data in Nigeria took place on ','15-Jan-66','1-Oct-66','29-Jul-66','13-Feb-76','','','c','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:29'),(84,'One of these was in existence  before the outbreak of the Second World War ','The OAU  ','League of Nations ','The UNOD  ','The Commonwealth of nations ','','','b','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:54'),(85,'In important advantage of creating more constituents in a federal state is to ','Enhance the people’s participation in government ','Enable ambitions politicians gain political power ','Make the states gain more power from the federal government ','curb the excesses of the federal government','','','a','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-06-02 14:29:53'),(86,'Under the Presidential system ','The party with the majority of seat forms the executive ','there is the principles of collective responsibility ','the president may come from any of the parties ','the states take instructions from the federal government','','','c','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:51:47'),(87,'Public opinion is important because it ','Tells government what action it must take ','Lets government know what the people want ','Allows police to manage crisis ','Mothers the minorities in resource learn areas ','','','b','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-09 11:35:43'),(88,'Bicameral legislature exists ','where two cameras are used to monitor court proceedings ','To prevent the concentration of power on legislative house ','To provide jobs for more politicians ','to ensure that just laws are passed.','','','d','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-06-01 20:56:12'),(89,'Africans were first elected to the legislature council in British West African ','Ghana ','Sierra Leone ','The Gambia ','Nigeria','','','d','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(90,'One of the functions of the ministry of External Affairs is the ','Deportation of illegal aliens ','Issuance of passports ','Defense of the country’s boarders ','Promotion of national interest','','','d','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-06-30 15:24:32'),(91,'The leader of the northern people’s congress was ','Yakubu Maitama Sule ','Abubakar Tafawa Balewa ','Aminu Kano ','Ahmadu Bello','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-24 00:49:42'),(92,'The idea of democracy started with the ','Romans ','Pensions ','Greeks ','Egyptians','','','c','','post-utme','2009',55,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(93,'In the Marxist theory, those who live by selling, their labour are called ','Bourgeoisie ','Proletariat ','Feudal lords ','Slaves','','','b','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-07 23:48:24'),(94,'Which of the following NOT an acceptable means of achieving democracy? ','Referendums ','Recall ','Initiative ','Riots','','','d','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-06-21 23:37:50'),(95,'The branch of government responsible for implementing laws is the ','executive ','Legislature ','Judiciary ','Police ','','','a','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-06-03 17:39:34'),(96,'In a democracy, sovereignty is vested in ','The community ','Public officials ','judges  ','the head of state ','','','a','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-06-04 15:05:43'),(97,'Universal Adult Suffrage means all ','Adult citizens can vote ','citizens vote ','Qualified citizens  can vote ','Literate citizens can vote ','','','a','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-09 11:35:43'),(98,'A bill that applies to the whole population and is intended to promote the general welfare is called ','A private bill ','a decree ','an appropriation bill ','a public deal ','','','d','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-06-03 11:07:56'),(99,'The Arthur Richards Constitution was designed to last ','nine years  ','five years ','twelve years  ','six year','','','a','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-06-28 20:14:50'),(100,'Under the 1963 Republican constitution the president exercise ','judicial powers  ','executive powers  ','nominal powers ','concurrent powers','','','c','','post-utme','2010',58,'Admin','0000-00-00 00:00:00','2020-06-04 01:15:28'),(101,'The Clifford Constitution was notable for ','amalgamating the Northern and southern provinces ','introducing indirect rule ','establishing the legislature  council ','creating a Northern majority in the legislature council.','','','c','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(102,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as ','exclusive ','extra-ordinary  ','residual  ','concurrent','','','d','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-28 13:05:03'),(103,'During the period 1960-1966, Nigerian was governed under the ','presidential system of government ','Westminster system of government ','confederal system of government ','Unitary system of government.','','','b','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-02 04:01:57'),(104,'Which of the following in the Sokoto Caliphate performed functions similar to that of the Bashorun in Oyo Kingdom? ','Waziri ','Galadima ','Ma’aji  ','Alkali  ','','','a','','post-utme','2010',50,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:26'),(105,'In the Igbo political system, the most senior  member of the council of elders is the ','Okpara  ',' Obi  ',' Eze  ',' Ofo','','','a','','post-utme','2010',58,'Admin','0000-00-00 00:00:00','2020-05-28 20:53:10'),(106,'A non-monarchial state can best be described as a ','republic ','confederation ','nation ','federation ','','','a','','post-utme','2010',55,'Admin','0000-00-00 00:00:00','2020-06-01 11:59:30'),(107,'Proportional representation favours a ','multi-party system ','three party system ','two-party system ','one party system ','','','a','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:23'),(108,'One major factor that differentiates the presidential from the parliamentary system is  ','separation of the powers ','judicial independence  ','passage of bills ','party system','','','a','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-06-28 19:59:00'),(109,'A state with a hegemonic party is one in which ','there is one dominant party ','there is no opposition party  ','there is only one party  ','other parties are officially recognized.','','','a','','post-utme','2010',56,'Admin','0000-00-00 00:00:00','2020-06-03 13:11:16'),(110,'In the First Republic, Politics in Northern Nigeria was dominated by: ','NEPU ','UMBC ','NCNC ','NPC','','','d','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:00'),(111,'The creation of classless society is the ultimate aim of ','communism ','socialism  ','fascism ','capitalism.','','','a','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-06-04 11:53:53'),(112,'Herbert Macaulay was the first president of ','NCNC ',' AG  ','UMBC ','NEPU','','','a','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:44'),(113,'A special election organized to decide on a political issue is known as ','plebiscite ','by-election  ','general election ','primary election.','','','a','','post-utme','2010',45,'Admin','0000-00-00 00:00:00','2020-06-28 13:05:03'),(114,'Equality before the law is a component of: ','separation of powers ','checks and balances ','the rule of law  ','constitutional law','','','c','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-06-15 07:59:32'),(115,'In the process of implementing laws, the executive sometimes performs: ','judicial function ','bureaucratic function ','oversight function ','legislative function','','','a','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-06-08 22:11:22'),(116,'Which of the these was the main organ of the defunct OAU? ','The liberation committee ','The Council of Ministers  ','The commission for Mediation, Conciliation and Arbitration ','the Assembly of Heads of the state and Government.','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:16'),(117,'Nigeria hosted the commonwealth conference which eventually led to the independence of ','Mozambique ','Namibia  ','Zimbabwe ','Malawi','','','b','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(118,'Multilaterism in Nigeria’s foreign policy entails ','Africa being the centre piece of Nigeria’s foreign policy ','Non aligned posture in international affairs ',' Quest   for a permanent membership  of the UN security Council ','Membership of International Organizations','','','d','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-09 11:35:43'),(119,'The ancient Greeks practiced: ','direct democracy ','representative democracy ','liberal democracy ','benevolent dictatorships','','','a','','post-utme','2010',72,'Admin','0000-00-00 00:00:00','2020-06-15 07:59:32'),(120,'Fascism originated from ','Greece ','Italy  ','China  ','Germany','','','b','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-06-03 11:07:56'),(121,'According to Karl Marx, the mode of production that precedes capitalism is ','mercantilism ','feudalism ','socialism ','communalism','','','b','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-06-08 22:11:22'),(122,'One of the distinctive features of a democracy is that it ','Connotes civil rule ','facilitates popular participation ','provides for a unicameral legislature ','is not associated with one party state.','','','d','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:37'),(123,'Serfs are the dominated class under ','capitalisms ','socialism ','fascism ','feudalism ','','','a','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-06-02 14:57:28'),(124,'A human community that is usually cohesive and homogeneous is ','state ','kinship','clan','Nation.','','','d','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(125,'Which of the following made the earliest contact with the Nigerian society? ','The British  ','The Portuguese ','The French ','The Germans','','','b','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-06-03 07:34:25'),(126,'Under the 1963 Republican Constitution, the president exercised ','Judicial powers ','executive powers ','nominal powers ','concurrent powers.','','','c','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-06-04 11:53:53'),(127,'The principle of federal character was first enunciated in the: ','1989 constitution ','1963 constitution','1999 constitution ','1979 constitution','','','d','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-06-17 21:32:41'),(128,'Between 1960 and 1966, Nigeria was governed under the  ','presidential system of government ','Westminster system of government ','confederal system of government ','unitary system of government.','','','b','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-28 19:54:32'),(129,'One major factor that differentiates the presidential from the parliamentary system is: ','separation of powers','judicial independence ','passage of bills  ','party system.','','','a','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:39'),(130,'A major feature of the policy of deregulation in Nigeria is the: ','enthronement of market forces mechanism ','increasing dominance of the economy by the state ','proliferations of public corporations ','phenomenal increase in direct foreign investment','','','a','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-06-19 20:41:22'),(131,'Bicameral legislature exists: ','where cameramen are allowed to cover the proceedings of the legislature ','to prevent the concentration of power in one legislative house ','to provide jobs for more politicians ','to ensure that just laws are passed','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-06-11 19:38:47'),(132,'A major issue that distinguishes pressure groups from political parties is: ','membership drive  ','the objective','the voting pattern ','the ideology','','','b','','post-utme','2011',60,'Admin','0000-00-00 00:00:00','2020-06-08 06:31:49'),(133,'Equality before the law is a component of: ','separation of powers','checks and balances ','the rule of law','constitutional law.','','','c','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-06-08 22:11:22'),(134,'A law passed by the legislature and assented to by the executive is: ','an act','a presidential proclamation ','a decree   ','a legislative order','','','a','','post-utme','2011',63,'Admin','0000-00-00 00:00:00','2020-06-03 17:39:34'),(135,'The principle of checks and balances empowers the judiciary to: ','invalidate the actions of the other arms ','administer the criminal justice system ','abrogate the law','apply the law','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-06-28 20:24:18'),(136,'In a parliamentary, the term shadow cabinet is often used to refer to the: ','back benchers in the house ','deputy prime ministers and assistant ministers ','rebellious members of the ruling party ','portfolio designates of the party in opposition.','','','d','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-06-28 20:24:18'),(137,'The fundamental assumption on which the idea of the rule of law is based is: ','supremacy of the constitution','rationality of human beings ','equality of human beings','love for social justice.','','','a','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-06-07 16:01:59'),(138,'Associations whose main interest is to influence public policies without attempting to capture state power are: ','communal groups','trade unions  ','political parties','pressure groups ','','','d','','post-utme','2011',76,'Admin','0000-00-00 00:00:00','2020-06-10 10:46:02'),(139,'Multilaterism in Nigeria’s foreign policy entails: ','Africa being the centre piece of Nigeria’s foreign policy ','Non-aligned posture in international affairs ','Quest for a permanent membership of the UN Security Council ','Membership of International Organizations','','','d','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-06-08 06:31:49'),(140,'The set of policies on the basis of which countries interact with one another is called: ','Diplomacy','Foreign policy ','National policy ','International relations.','','','b','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-06-07 21:11:23'),(141,'After the defeat of Germany in World War 1, her former colonies were administered under the League of Nations as: ','occupied territories ','trust territories  ','crown colonies ','protectorates.','','','b','','post-utme','2011',60,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(142,'The Nigeria-Cameroon crisis over Bakaasi peninsula occurred owning to the interpretation of the Treaty of 1913 and the:','resolution of the OAU ','Maroua Accord','decision of the ECOWAS Tribunal ','decision of the International Court of Justice ','','','b','','post-utme','2011',81,'Admin','0000-00-00 00:00:00','2020-06-11 00:27:36'),(143,'The first Nigeria leader to become chairman of the Organization of African Unity was:  ','Tafawa Balewa','Murtala Mohammed','Yakubu Gowon  ','Aguiyi-Ironsi','','','c','','post-utme','2011',60,'Admin','0000-00-00 00:00:00','2020-06-07 15:49:24'),(144,'Nigeria’s non-aligned policy was criticized because of the: ','ECOWAS Treaty ','Nuclear Test Ban Treaty  ','Anglo-Nigerian Pact ','Non-Proliferation Treaty ','','','c','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(145,'Fascism originated from: ','Greece','Italy ','China ','Germany ','','','b','','post-utme','2011',63,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(146,'Diarchy refers to the: ','rule by the government and the opposition parties ','mixture of parliamentary and presidential systems ','rule by political and economic elites ','rule by the military and civilians.','','','c','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-02 03:30:59'),(147,'A major flaw in liberal democracy is: ','the limitation of the freedom of expression ','its emphasis on political rights over economic rights ','that it promotes political instability ','its emphasis on collective ownership.','','','b','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:37'),(148,'Under military regimes in Nigeria, the branches of government that were fused are: ','executive and the legislature','executive and the judiciary ','legislature and the judiciary ','executive, the legislative and the judiciary ','','','a','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-06-01 22:48:11'),(149,'Which of the following does not described a party system? ','one dominant party system  ','two party system  ','three party system  ','multi-party system','','','b','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:34'),(150,'Laws made by local governments are called  ','Acts of Parliament ','Local Government Acts ','Bye-laws  ','Local Government Decrees ','','','b','','post-utme','2012',52,'Admin','0000-00-00 00:00:00','2020-06-17 21:32:41'),(151,'The commission established to handle the electoral activities in the Second Republic of Nigeria was ','National Electoral Commission  ','National Electoral Commission of Nigeria  ','Federal Electoral Commission  ','Independent National Electoral Commission','','','c','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:08'),(152,'The principle of checks and balances modifies the theory of  ','Rule of law ','Supremacy of law  ','Separation of powers  ','Delegated Legislation ','','','c','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-06-15 03:13:34'),(153,'The European Union (EU) is an  ','Economic organization  ','Association of former British Colonies ','Organization of European States ','Union European organization ','','','c','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:39'),(154,'In Nigeria, promotion of judges is the responsibility of the ','Chief Justice of the Federation  ','Judicial Service Commission  ','Council of Legal Education  ','Attorney-General and Minister of Justice ','','','b','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-06-19 20:41:22'),(155,'The Legislature in Nigeria under the 1999 constitution is composed  ','109 senators and 360 members of the House of Representative  ','109 senators and 350 members of the House of Representative  ','108 senators and 350 members of the House of Representative  ','100 senators and 250 members of the House of the Representative ','','','a','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-01 19:05:27'),(156,'Under a parliamentary system of government, the cabinet holds office at the pleasure of the ','head state ','electorate  ','legislature  ','opposition ','','','c','','post-utme','2012',55,'Admin','0000-00-00 00:00:00','2020-05-28 20:54:43'),(157,'The ultimate authority in a State is referred to as  ','president  ','sovereignty ','legislature  ','legitimacy ','','','b','','post-utme','2012',50,'Admin','0000-00-00 00:00:00','2020-06-03 23:45:22'),(158,'The most important aspect of political participation in a democracy is  ','attending political rallies  ','voting in elections  ','registration with a political party  ','the observance of electoral processes ','','','b','','post-utme','2012',53,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:05'),(159,'One of the foremost theorists of federalism was A. ','A.V Dicey  ','B. K.C Wheare ','C. Karl Marx  ','Baron de Montesquieu ','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-06-24 00:49:42'),(160,'The judicial organ of the United Nations is the  ','security council  ','European court  ','general assembly  ','International court of Justice  ','','','d','','post-utme','2012',48,'Admin','0000-00-00 00:00:00','2020-05-28 20:54:26'),(161,'The Universal Negro Improvement Association was founded by  ','Casely Hayford  ','Herber Macauly  ','Marcus Garvey  ','W.E.B. Du Bois','','','c','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:21'),(162,'The Chick’s Commission in Nigeria was set up to look into  ','state’s creation  ','revenue allocation  ','minorities issues  ','extra-judicial killings','','','b','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-05-30 11:12:52'),(163,'Nigeria observed the principal of collective responsibility between  ','1960 and 1966 ','1979 and 1983  ','1985 and 1993 ','1999 and 2003','','','a','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-06-04 12:16:02'),(164,'The method used to determine the possible outcome of an electoral contest is ','conduct of elections into local government offices  ','registration of political party  ','conduct of gubernatorial elections  ','delineation of electoral constituencies ','','','a','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:39'),(165,'The principle of checks and balances empowers the judiciary to  ','apply the law  ','administer the criminal justice system  ','abrogate the law  ','invalidate the actions of the other arms ','','','d','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-07 14:14:55'),(166,'The final stage in the process of enacting legislation is  ','assent  ','final reading  ','notification  ','guillotine  ','','','a','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-07 20:27:48'),(167,'Every political system performs the following basic functions excepts  ','Rule making  ','Rule transformation  ','Rule enforcement  ','Rule adjudication ','','','b','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-06-04 07:18:21'),(168,'Globalization is all but one of these ','A renewed concepts in international studies  ','Limitation to the domination of the West  ','A process of making the world smaller  ','An increasing integration of the world ','','','c','','post-utme','2012',57,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(169,'A major factor that differentiates International politics from domestic politics is that International politics ','has no centralized institution of government ','cannot enforce sanctions  ','has centralized organs of administration  ','has a central law making body','','','a','','post-utme','2012',56,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:25'),(170,'Globalization encompasses all the following except  ','market integration  ','internationalization of politics  ','technology improvement  ','economic liberalism ','','','d','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-07 16:20:36'),(171,'The ten non-permanent members of the security council are elected by the  ','general assembly ','trusteeship council  ','security council  ','economic and social council ','','','a','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:53'),(172,'Under the independence constitution of Nigeria, Dr. Nnamdi Azikwe was  ','Prime Minister ','Governor General  ','Lieutenant – Government ','Head of State','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-06-29 06:19:10'),(173,'Which organ is referred to as ‘the last hope’ of the common man  ','the parliament   ','the judiciary  ','the executive  ','the legislature','','','b','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:12'),(174,'What does INEC stand for?','Independent National Election Committee  ','Independent Newspapers Executive Committee  ','Independent National Export Council  ','Independent National Electoral Commission','','','d','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:31'),(175,'Which of the following is not a feature of Nigeria’s electoral system?  ','direct election   ','general election  ','Proportional representation  ','secret ballot','','','c','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:16'),(176,'The head of the Nigerian judiciary is the','Chief Justice of the Federation','Solicitor-General of the Federation  ','Attorney-General and Minister of Justice  ','President of the Court of Appeal','','','a','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(177,'Manipulation of electoral boundaries for electoral purposes is known as  ','delimitation   ','gerrymandering','devolution   ','deconcentration','','','b','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(178,'A mechanism used in parliament to limit debate is called  ','guillotine','adjournment   ','Motion of censor   ','delimitation','','','a','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-24 00:49:42'),(179,'A major function of the State Independent Electoral Commissions in Nigeria is the  ','Conduct of elections into local government offices  ','registration of political parties','conduct of gubernatorial elections','delineation of electoral constituencies','','','a','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-08 06:31:49'),(180,'In politics, power is all of the following except  ','capacity to affect the actions of others  ','Ability to make people do things they otherwise would not do   ','An object   ','it is part of a relationship','','','c','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:25'),(181,'Political activity at the diplomatic level is called  ','International relations','International law','International politics','All of the above','','','d','','post-utme','2013',45,'Admin','0000-00-00 00:00:00','2020-06-11 01:05:51'),(182,'Which of these is not an instrument of foreign policy','war    ','diplomacy  ','subversion   ','foreign aid','','','d','','post-utme','2013',54,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:30'),(183,'The principles that have guided Nigeria’s foreign policy since independence include the following except  ','peaceful coexistence   ','political dependence  ','legal equality of states  ','non-alignment','','','b','','post-utme','2013',50,'Admin','0000-00-00 00:00:00','2020-06-19 20:41:22'),(184,'The independence  of the judiciary can be enhanced by the following except  ','when judges hold office for a fixed term','when judges cannot be removed from office even when they commit crimes','Appointment of judges by an independent body','political neutrality of judges','','','b','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-11 00:27:36'),(185,'The Aba women riot in Nigeria took place in   ','1960','1950','1922','1929','','','d','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:52'),(186,'The pressure group that resorts to unconventional methods to achieve its objectives is called ',' an institutional group  ',' a promotional group',' an interest group   ',' an anomic group','','','d','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-06-04 07:43:17'),(187,'All but one of the following is not a symbol of political culture','A national flag','The government   ','An anthem  ','The constitution','','','b','','post-utme','2013',53,'Admin','0000-00-00 00:00:00','2020-06-15 03:13:34'),(188,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives',' propaganda','Lobbying  ','Assault',' Boycott','','','c','','post-utme','2013',64,'Admin','0000-00-00 00:00:00','2020-06-01 19:05:27'),(189,'A capitalist state is based on','religion   ','creating job  opportunities  ','Dictatorship   ','Free trade','','','d','','post-utme','2013',46,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:21'),(190,'A major flaw in a liberal democracy is','that it promotes political instability','the limitation of the freedom of expression','its emphasis on political rights over economic rights','its emphasis on collection ownership','','','c','','post-utme','2013',51,'Admin','0000-00-00 00:00:00','2020-06-08 06:39:30'),(191,'Nigeria’s voting at the United Nations is guided primarily by','her national interests   ','world peace   ','the cold war  ','her concern for Africa','','','a','','post-utme','2013',50,'Admin','0000-00-00 00:00:00','2020-06-01 17:39:17'),(192,'On the basis of its structure, a political party can be classified an indirect if','it controls government indirectly  ','it contests elections by proxy','its membership is acquired through other groups  ','it campaigns for votes through agents.','','','c','','post-utme','2013',53,'Admin','0000-00-00 00:00:00','2020-06-01 12:47:13'),(193,'The study of government essentially facilitates the understanding of the','governance of human societies','functioning of the entire social formation  ','observance of fundamental human rights','organization of the executive arm of government','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-06-13 21:10:54'),(194,'In judicial administration, the term ‘the bench’ refers to the  ','lawyers   ','litigants    ','registrars','judges','','','d','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:04'),(195,'How does the president relieve a minister of his appointment in a presidential system of government?','In consultation with the legislature','In consultation with the judiciary  ','by executive action','after serving a full tenure','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-06-23 09:42:29'),(196,'An elected legislator in a presidential system can lose his seat through  ','recall  ','cross-carpeting','a vote of no confidence','impeachment','','','a','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:14'),(197,'Which of the following modern principles of democracy is found in the Yoruba traditional political system  ','checks and balances  ','the constitution','multipartism  ','bicameralism','','','a','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:43'),(198,'The subject matter of politics is best described  as   ','political parties','political power  ','elections','people','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:11'),(199,'Government as an institution of a state can best be defined as a body that','recruits and trains political leaders','settles disputes and interprets laws for the state.','Legislates, executes and interprets laws for the state.','conducts elections for the state.','','','c','','wassce','2000',53,'Admin','2016-11-13 16:14:19','2020-05-28 20:57:35'),(200,'Political authority is the','legitimate right to exercise political power.','ability to control political behaviour.','right to participate in political campaigns.','right to form political parties.','','','a','','wassce','2000',49,'Admin','2016-11-13 16:14:22','2020-05-28 20:57:30'),(201,'The rule of law refers to the principle of','legality and impartiality','the supreme power of rulers.','the immunity of judges from legal actions.','the orderly execution of government policies.','','','a','','wassce','2000',45,'Admin','2016-11-13 16:14:22','2020-06-07 16:01:59'),(202,'Freedom of speech is a fundamental human right enjoyed by citizens but it may be limited if','loyalty is not shown to the ruling party','it exposes the wrong doings of the government','it endangers the security of the state.','it is used to cause embarrassment to the judiciary.','','','c','','wassce','2000',56,'Admin','2016-11-13 16:14:22','2020-06-08 06:58:20'),(203,'Which of the following is an obligation of a citizen?','Attending political rallies','Taking part in Independence Day celebrations','Contesting elections','Paying respect to the national flag.','','','d','','wassce','2000',47,'Admin','2016-11-13 16:14:22','2020-05-28 20:53:18'),(204,'The extent to which the citizens regard the institutions, officials and activities of government as right and acceptable is known as','power','legitimacy','influence','authority.','','','b','','wassce','2000',40,'Admin','2016-11-13 16:14:22','2020-05-28 20:56:48'),(205,'Diplomatic immunity is a limitation to','the theory of separation of powers.','principles of checks and balances.','parliamentary supremacy.','the rule of law','','','d','','wassce','2000',41,'Admin','2016-11-13 16:14:22','2020-06-04 05:15:45'),(206,'A federal state is always expensive to run because','every parliamentarian wants to become rich','government departments are duplicated','judges are highly paid from the consolidated fund.','maintenance of the army involves high expenditure.','','','b','','wassce','2000',57,'Admin','2016-11-13 16:14:22','2020-06-28 10:15:16'),(207,'In which of the following party systems are all shades of opinions and interests adequately represented?','Zero-party','One-party','Two-party','Multi-party','','','d','','wassce','2000',45,'Admin','2016-11-13 16:14:23','2020-05-28 20:57:26'),(208,'Veto power in a presidential system lies with the','Attorney General','Chief of Army Staff','Executive President','Prime Minister.','','','c','','wassce','2000',58,'Admin','2016-11-13 16:14:23','2020-06-26 22:08:23'),(209,'Which of the following is the lowest class of people in the hierarchy of a feudal system?','Nobles','Serfs','Lords','Manor.','','','b','','wassce','2000',43,'Admin','2016-11-13 16:14:23','2020-06-01 21:50:21'),(210,'Mussolini’s fascism and Hitler’s Nazism are good examples of','anarchy','feudalism','totalitarianism','oligarchy','','','c','','wassce','2000',42,'Admin','2016-11-13 16:14:23','2020-06-02 15:56:37'),(211,'Which of the following is supreme in a federal system?','Judiciary','legislature','Constitution','Executive.','','','c','','wassce','2000',60,'Admin','2016-11-13 16:14:23','2020-06-15 09:15:09'),(212,'An order directing a detainee to be brought before the court is called','habeas corpus','an appearance','an injunction','a referendum','','','a','','wassce','2000',48,'Admin','2016-11-13 16:14:23','2020-05-28 20:56:35'),(213,'Which of the following is a feature of an elite party?','Members are recruited from the working class.','The leadership is composed of aristocrats and wealthy merchants.','It usually consists of existing associations, clubs and trade unions.','Its leadership has certain techniques which attract supporters.','','','b','','wassce','2000',47,'Admin','2016-11-13 16:14:23','2020-06-28 20:14:50'),(214,'All undesirable feature of capitalism is','exploitation','market economy','profit motive','free competition','','','a','','wassce','2000',52,'Admin','2016-11-13 16:14:23','2020-06-29 06:43:13'),(215,'The system of voting on behalf of another person is known as','voting by lot','casting votes.','voting by proxy','preference voting','','','c','','wassce','2000',54,'Admin','2016-11-13 16:14:23','2020-06-29 06:19:10'),(216,'Authoritarianism is least Inherent in','feudalism','fascism','democracy','monarchy','','','c','','wassce','2000',77,'Admin','2016-11-13 16:14:23','2020-06-29 05:40:22'),(217,'In which of the following systems of government are ceremonial and executive powers usually fused?','Parliamentary','Presidential','Collegial','Confederal.','','','b','','wassce','2000',57,'Admin','2016-11-13 16:14:23','2020-06-03 23:45:22'),(218,'The programme of a political party is known as its','constitution','document','manifesto','propaganda','','','c','','wassce','2000',60,'Admin','2016-11-13 16:14:23','2020-06-26 22:08:23'),(219,'Which of the following is a source of a country’s constitution','Mandamus','Judicial precedents','Injunctions','Political decisions','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:23','2020-06-03 23:45:22'),(220,'The acquisition of political power through hereditary means is a feature of','Communalism','Capitalism','Oligarchy','Monarch','','','d','','wassce','2000',38,'Admin','2016-11-13 16:14:23','2020-06-03 13:35:42'),(221,'Which of the following factors limits the expression of public opinion?','The type of government in a state','The establishment of private media organizations.','The high literacy rate of the citizens','Religious belief of the citizens.','','','a','','wassce','2000',40,'Admin','2016-11-13 16:14:23','2020-06-30 15:24:32'),(222,'If the federal government and the unit governments are to \tpreserve their autonomy, the','Federal government must be supreme','Unit governments must be supreme','Judiciary must be supreme','Constitution must be supreme','','','d','','wassce','2000',56,'Admin','2016-11-13 16:14:23','2020-06-19 20:41:22'),(223,'Which of the following best describes the relationship between the central and the component government in a confederation?','The central government collects revenue for component government','The central and component governments have equal powers','The central government legislates for the component governments.','The central government is weaker than the component government.','','','d','','wassce','2000',51,'Admin','2016-11-13 16:14:23','2020-05-28 20:56:22'),(224,'The administrative head of a public corporation in Nigeria is the','Managing Directors','Secretary','Board of Directors','Chairman','','','a','','wassce','2000',45,'Admin','2016-11-13 16:14:23','2020-06-07 14:14:55'),(225,'The appointment, promotion and discipline of civil servants are the responsibility of the','Civil Service Union','Judicial Service Commission','Civil Service Commission','Electoral Commission.','','','c','','wassce','2000',50,'Admin','2016-11-13 16:14:23','2020-06-03 11:04:32'),(226,'Red tapism in the civil service refers to','The use of red tapes on legal documents.','Sloness of action','Prevent entrance','the co-operation between civil servant s and politicians','','','b','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-06-07 14:14:55'),(227,'The grant of the right to vote is called','enfranchisement','disqualification','prohibition','participation','','','a','','wassce','2000',57,'Admin','2016-11-13 16:14:23','2020-06-03 13:35:42'),(228,'The system which allows private individuals and companies to own and control the means of production is known as','socialism','fascism','capitalism','communism','','','c','','wassce','2000',52,'Admin','2016-11-13 16:14:24','2020-06-29 00:24:38'),(229,'Which of the following factors may work against a representative system of government?','High literacy of the electorate','The introduction of universal adult suffrage','Independent electoral commission','Rigging of elections','','','d','','wassce','2000',56,'Admin','2016-11-13 16:14:24','2020-06-29 06:43:13'),(230,'The powers allocated to the central government in a federation are contained in the','central legislative list','exclusive legislative list','residual legislative list','concurrent legislative list.','','','b','','wassce','2000',46,'Admin','2016-11-13 16:14:24','2020-06-08 19:25:57'),(231,'The Nigerian federal legislature is called the','Senate','Congress','National Assembly','House of Representatives','','','c','','wassce','2000',51,'Admin','2016-11-13 16:14:24','2020-06-08 00:19:55'),(232,'Delegated legislation has the advantage of','enlightening the public about law making procedure','saving parliamentary time','reducing the expenses of the legislature','preventing the executive from becoming too powerful.','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-06-28 13:05:03'),(233,'Nigeria’s first constitution was the','Lyttleton Constitution','Clifford Constitution','Macpherson constitution','Independence Constitution','','','b','','wassce','2000',41,'Admin','2016-11-13 16:14:24','2020-06-03 11:07:56'),(234,'The Nigerian Macpherson Constitution of 1951 was significant for','the introduction of Electoral College','providing for the office of the Prime Minister','the creation of states.','establishing the Supreme Court','','','a','','wassce','2000',53,'Admin','2016-11-13 16:14:24','2020-05-28 20:57:26'),(235,'The concept of regionalism in Nigeria was first introduced by the','Independence Constitution','Macpherson Constitution','Richard’s Constitution','Lyttleton Constitution','','','c','','wassce','2000',56,'Admin','2016-11-13 16:14:24','2020-05-28 20:56:25'),(236,'Immediately after the Nigerian Civil War, Gowon’s regime embarked on','rejuvenation, resettlement and reconstruction','reconciliation, rehabilitation and reconstruction','rebuilding, rejuvenation and rehabilitation','rehabilitation, renaissance and repression.','','','b','','wassce','2000',58,'Admin','2016-11-13 16:14:24','2020-06-07 21:11:23'),(237,'Which of the following military regimes in Nigeria played a prominent role in the liberation of colonized African states?','Aguiyi Ironsi','Murtala / Obasanjo','Muhammadu Buhari','Ibrahim Babangida','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-05-28 20:57:04'),(238,'Traditional rulers appointed by the British to implement indirect rule in Eastern Nigeria were called','palace chiefs','village chiefs','warrant chiefs','crown chiefs','','','c','','wassce','2000',51,'Admin','2016-11-13 16:14:24','2020-05-28 20:57:29'),(239,'The bill introduced by a member of the legislature is known as','a-private member’s bill','an executive bill','a state bill','a political party’s bill','','','a','','wassce','2000',65,'Admin','2016-11-13 16:14:24','2020-06-13 21:10:54'),(240,'In the federation of Nigeria, states are equally represented in the','Senate','House of Representatives','Judiciary','National Population Commission','','','a','','wassce','2000',55,'Admin','2016-11-13 16:14:24','2020-05-28 20:56:54'),(241,'In pre-colonial Igboland, administrative meetings were presided over by the','Mazi','Ogbuefi','Ozo title holder','Okpara','','','c','','wassce','2000',47,'Admin','2016-11-13 16:14:24','2020-06-08 22:11:22'),(242,'Checks and balances was a feature of pre-colonial political administration of the','Hausa','Yoruba','1gbo','Fulani','','','b','','wassce','2000',49,'Admin','2016-11-13 16:14:24','2020-05-28 20:56:38'),(243,'Which of the following groups had the best egalitarian traditional political system?','Hausa/Fulani','Yoruba','lgbo','Edo','','','c','','wassce','2000',76,'Admin','2016-11-13 16:14:24','2020-06-01 16:22:10'),(244,'In the pre-colonial Hausa/Fulani system, the appointment of an Emir in the Caliphate was approved by the','Sardauna of Sokoto and the Alkali','Galadima and the Waziri','Shehu of Bomo and the Galadima','Sultan of Sokoto and the Emir of Gwandu','','','d','','wassce','2000',58,'Admin','2016-11-13 16:14:24','2020-05-28 20:57:10'),(245,'The French policy of Assimilation in West Africa was a form of','indirect rule','direct rule','democratic rule','monarchy','','','b','','wassce','2000',49,'Admin','2016-11-13 16:14:24','2020-05-28 20:56:15'),(246,'One of the problems facing the Economic Community of West African States (ECOWAS) is that','member states do not attend meetings regularly','member states do not have a common currency','some members states want to contribute larger funds to the community','it is a rival to the Organization of African Unity','','','b','','wassce','2000',49,'Admin','2016-11-13 16:14:24','2020-06-11 19:38:47'),(247,'The world organization which existed before the United Nations Organization was the','League of Nations','European Economic Community','Organization of African Unity','Commonwealth of Nations.','','','a','','wassce','2000',64,'Admin','2016-11-13 16:14:24','2020-06-03 17:50:15'),(248,'Which of the following bodies is the most representative organ of the United Nations organization (UNO)?','The Economic and Social Council','The Trusteeship Council','The Security Council','The General Assembly.','','','d','','wassce','2000',53,'Admin','2016-11-13 16:14:24','2020-06-07 20:19:16'),(249,'Which of the following is NOT a feature of a state?','Government','Nationality','Sovereignty','Territory','','','b','','neco','2013',72,'Admin','2016-11-13 16:50:50','2020-06-24 00:49:42'),(250,'The legitimacy of government is established when','civil service commission reflects federal character','electoral commission is well funded','free and fair elections are conducted','ministers are appointed to head ministries','','','c','','neco','2013',75,'Admin','2016-11-13 16:50:50','2020-06-28 10:15:16'),(251,'The United Nations Organization (UNO) was founded in','1919','1935','1939','1945','','','d','','neco','2013',58,'Admin','2016-11-13 16:50:50','2020-06-29 05:40:22'),(252,'Which of these best defines a state? A/An','country made up of heterogeneous people','.\\ncountry with definite territory free from external control.','independent country free from external control.','organized body of people occupying a definite territory with sovereign government.','','','b','','neco','2013',66,'Admin','2016-11-13 16:50:50','2020-06-07 16:15:41'),(253,'To ensure impartiality and independence of electoral commission, the body should be','funded by political parties','headed by a justice of the Supreme Court','headed by a professor of political science','independent of government control','','','d','','neco','2013',62,'Admin','2016-11-13 16:50:50','2020-06-01 18:18:05'),(254,'The term ‘collective responsibility’ is an indispensable feature of ___ system of government.','diarchy','federal','parliamentary','presidential','','','c','','neco','2013',62,'Admin','2016-11-13 16:50:51','2020-06-04 07:18:21'),(255,'The Chick’s commission was set up to look into the issue of revenue allocation in','1946','1951','1953','1957','','','c','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-06-29 05:40:22'),(256,'In the Igbo pre-colonial administration, the council of elders was normally presided over by','Eze','Obi','Okpara','Onowu','','','c','','neco','2013',64,'Admin','2016-11-13 16:50:51','2020-06-02 15:56:37'),(257,'In Nigeria, the head of the electoral commission is called the','Administrative Secretary','Chairman','Electoral Commissioner','Presiding Officer','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-06-02 14:29:53'),(258,'Authority is the','ability to compel others to do what they do not want','ability to delegate power to other bodies','ability to rule without fear or favour','capacity to encourage others to do what they intended doing','','','d','','neco','2013',71,'Admin','2016-11-13 16:50:51','2020-05-28 20:56:14'),(259,'The Economic Community of West African States (ECOWAS) was formed on','28th May, 1975','29th May, 1976','28th June, 1975','28th July, 1975','','','a','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-05-28 20:56:36'),(260,'Revenue allocation means the sharing of the','national cake among the people','wealth of a nation among different levels of government','wealth of a nation among the state governments for specific purposes','wealth of a nation between the federal and local governments','','','b','','neco','2013',51,'Admin','2016-11-13 16:50:51','2020-05-28 20:56:19'),(261,'The first military intervention in Nigeria politics was in','1960','1962.','1963','1966','','','d','','neco','2013',71,'Admin','2016-11-13 16:50:51','2020-06-04 02:27:47'),(262,'To contest an election, a candidate must be a member of a','campaign organization.','civil society organization.','national assembly','political party.','','','d','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-05-28 20:57:41'),(263,'Military rule is an example of ______ authority.','charismatic','coercive','delegated','legal','','','b','','neco','2013',63,'Admin','2016-11-13 16:50:51','2020-06-01 22:41:27'),(264,'Which of these countries is NOT a member of Economic Community of West African States (ECOWAS).','Cameroon','Cape Verde','Ghana','Guinea','','','a','','neco','2013',56,'Admin','2016-11-13 16:50:51','2020-06-24 00:49:42'),(265,'Who among the following was NOT an officer in the pre-colonial Yoruba society?','Aremo','Are-Onakakanfo','Balogun','Oluwo','','','d','','neco','2013',68,'Admin','2016-11-13 16:50:51','2020-05-30 17:36:31'),(266,'The 1957 commission of enquiry which investigated the problems of ethnic domination in Nigeria was chaired by','Arthur Richard.','Frederick Lugard.','Henry Willink.','Hicks Phillipon','','','c','','neco','2013',57,'Admin','2016-11-13 16:50:51','2020-05-28 20:56:46'),(267,'Which of these groups of people had no right to make law under the pre-colonial Igbo political structure?','Age grades','Council of Elders','Osu','Priests','','','c','','neco','2013',83,'Admin','2016-11-13 16:50:51','2020-06-04 05:15:45'),(268,'21.\tIn a parliamentary system of government a general election is usually conducted after','dissolution of parliament.','plebiscite.','referendum.','resolution.','','','a','','neco','2013',75,'Admin','2016-11-13 16:50:51','2020-05-28 20:57:05'),(269,'A nation is made up of people who share','heterogeneous characteristics.','homogeneous and heterogeneous characteristics.','homogeneous characteristics.','same government only.','','','a','','neco','2013',73,'Admin','2016-11-13 16:50:51','2020-05-28 20:57:44'),(270,'The Commonwealth of Nations consists of states formerly under ___colony.','Belgium','British','French','Portuguese','','','b','','neco','2013',69,'Admin','2016-11-13 16:50:51','2020-05-28 20:55:54'),(271,'Which of these is a feature of Nigeria federalism?','Conflict of authority does not arise','Minority groups are equally benefited','Parliamentary supremacy','Secession is constitutionally forbidden','','','b','','neco','2013',57,'Admin','2016-11-13 16:50:51','2020-06-17 21:32:41'),(272,'Under the 1979 Nigeria constitution, the national assembly was made up of the','House of Chiefs and the Senate.','House of Lords and the House of Representatives.','Lower House and House of Representatives.','Senate and House of Representatives.','','','d','','neco','2013',67,'Admin','2016-11-13 16:50:51','2020-05-28 20:54:15'),(273,'','In a single member constituency the voters in that constituency have the right to','declare a winner of an election in their constituency','.\\nelect many representatives.','elect one representative.','','','a','','neco','2013',68,'Admin','2016-11-13 16:50:51','2020-06-03 20:01:15'),(274,'Before the British colonialism in Nigeria, which of these was an instrument for dispensation of justice in !gbo land?','Cult','Land','Masquerade','Ofo','','','d','','neco','2013',57,'Admin','2016-11-13 16:50:51','2020-05-28 20:57:36'),(275,'The special box prepared by the electoral commission into which voters cast their votes is called','ballot box.','ballot paper.','logo.','polling booth.','','','a','','neco','2013',59,'Admin','2016-11-13 16:50:51','2020-06-20 13:07:40'),(276,'An electoral officer charged with the responsibility of announcing election result at the local government level is known as','administrative secretary.','chairman.','polling clerk','presiding officer','','','d','','neco','2013',59,'Admin','2016-11-13 16:50:51','2020-06-04 01:15:28'),(277,'The idea of federalism in Nigeria started with ______ constitution.','Clifford','Independence','Lyttleton','Macpherson','','','d','','neco','2013',67,'Admin','2016-11-13 16:50:52','2020-06-29 06:19:10'),(278,'Under the 1979 constitution of Nigeria, each state was allowed to elect','as many senators as the state could finance','five senators','from two to five senators depending on the population','three senators','','','b','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-06-04 15:05:43'),(279,'In the pre-colonial Hause/Fulani society, the political head was called','Alkali','Galadima','Ma `aji','Wasiri','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-05-28 20:57:04'),(280,'In dividing a country into constituencies, it is important to','ask for permission from the traditional ruler in that area','consider historical','display the voters register','involve the politicians in the areas','','','b','','neco','2013',79,'Admin','2016-11-13 16:50:52','2020-06-29 05:40:22'),(281,'The head of the Oyomesi in pre-colonial Yoruba traditional society was','Alaafin','Are - onakakanfo','Baale','Bashorun','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-05-28 20:57:24'),(282,'The age qualification required for a Nigerian to contest as a Senator is','18','21','30','40','','','d','','neco','2013',65,'Admin','2016-11-13 16:50:52','2020-06-07 14:38:47'),(283,'Nigeria is presently divided into how many federal constituencies?','6','36','109','360','','','c','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-06-07 23:48:24'),(284,'Before an election is conducted, the country is divided into electoral districts mainly to','avoid double voting','avoid secret voting','enable the electoral commission have more people to register','make it possible for all people in various parts of the country to be represented.','','','d','','neco','2013',59,'Admin','2016-11-13 16:50:52','2020-06-18 22:38:07'),(285,'The following were the consequences of the Nigeria civil war EXCEPT the','creation of more states','disruption of educational and economic activities','general feelings of insecurity','loss of lives and properties','','','a','','neco','2013',55,'Admin','2016-11-13 16:50:52','2020-06-01 16:22:10'),(286,'The parties that formed the coalition government in 1960 were ___ and ___','AG, NCNC','AG, NPC','NCNC.NEPU','NPC, NCNC','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-06-04 16:16:05'),(287,'In Igbo assembly during the pre-colonial era, decisions were normally reached by','balloting.','consensus','hand raising','queuing','','','b','','neco','2013',70,'Admin','2016-11-13 16:50:52','2020-06-29 05:05:38'),(288,'Which of the following is a function of an electoral commission?','Contesting elections','Organizing and conducting elections','Organizing political parties','Settling disputes among political parties','','','b','','neco','2013',69,'Admin','2016-11-13 16:50:52','2020-06-01 20:56:12'),(289,'The cultural organisation which metamorphosed into \tNorthern People’s Congress (NPC) was','Arewa Consultative Forum','Borno Youth Movement','Egbe Omo Oduduwa','Jamiyyar Mutanen Arewa','','','d','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-06-19 22:15:44'),(290,'Before a candidate is declared winner under absolute majority system of voting, the candidate must score more than ___ of the total vote cast.','half','one - quarter','one - third','three - quarter','','','a','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-06-08 06:31:49'),(291,'Nigeria became a member country of the Common wealth of Nations on 1st October','1922','1951','1960','1963','','','c','','neco','2013',80,'Admin','2016-11-13 16:50:52','2020-06-29 06:19:10'),(292,'A constitution that requires stringent procedures for amendment is termed ___ constitution.','federal','flexible','rigid','unitary','','','c','','neco','2013',60,'Admin','2016-11-13 16:50:52','2020-06-04 16:16:05'),(293,'To conduct local government elections, the electoral commission divides the local government area into','branches','constituencies','secretariats','wards.','','','d','','neco','2013',59,'Admin','2016-11-13 16:50:52','2020-05-28 20:56:00'),(294,'Agents of political socialization include the following EXCEPT','educational institutions','political godfathers','political parties','religious institutions','','','b','','neco','2013',60,'Admin','2016-11-13 16:50:52','2020-06-26 22:08:23'),(295,'Ownership of land is a common feature of','aristocracy','capitalism','communalism','feudalism.','','','d','','neco','2013',61,'Admin','2016-11-13 16:50:52','2020-06-28 19:54:32'),(296,'The term of the Secretary-General of United Nations (UN) is for ___ years.','eight','five','four','six','','','b','','neco','2013',60,'Admin','2016-11-13 16:50:52','2020-06-01 19:05:27'),(297,'How many members of the security council of the United Nations (UN) exercise veto power?','Eight','Five','Four','Six','','','b','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-06-11 00:27:36'),(298,'The head of the electoral commission at the local government area is referred to as the','chairman','electoral officer','resident commissioner','returning officer','','','d','','neco','2013',75,'Admin','2016-11-13 16:50:52','2020-06-02 23:25:45'),(299,'Who was the leader of the Northern Elements Progressive Union (NEPU)?','Alhaji Balarabe Musa','Alhaji Umaru Dikko','Mallam Aminu Kano','Sir Abubakar Tafawa Balewa','','','c','','neco','2013',66,'Admin','2016-11-13 16:50:53','2020-06-04 09:11:56'),(300,'Which of the following is NOT a source of local government finance?','Commercial ventures','Grants','Rates','Sale of bonds','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:53','2020-06-28 19:54:32'),(301,'The first ever civilian - to - civilian transition was recorded in Nigeria in','1966','1979','1999','2003','','','d','','neco','2013',69,'Admin','2016-11-13 16:50:53','2020-05-28 20:57:31'),(302,'A manifesto is essential to political parties because it enables them to','assess the electorates','gauge public opinion','manipulate election','present programme of action','','','d','','neco','2013',64,'Admin','2016-11-13 16:50:53','2020-06-03 17:50:15'),(303,'The two Greek words that make up democracy are ___ and ___ ,','arita, demo','demo, aria','demo, krat','demo, kratia','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:53','2020-06-17 21:05:20'),(304,'The Headquarters of Organization of Petroleum Exporting Countries (OPEC) is located in','Algiers','Baghdad','Riyadh','Vienna','','','d','','neco','2013',62,'Admin','2016-11-13 16:50:53','2020-06-02 19:15:10'),(305,'The term, “Quorum” means the number of legislators chat','are absent from a day’s proceeding.','assent to any particular bill','belong to the opposition party in the house','must be present before business could start','','','d','','neco','2013',66,'Admin','2016-11-13 16:50:53','2020-05-28 20:57:13'),(306,'The process of sensitizing the electorate on the need to vote on the election day and also observe the rules and regulations of election is referred to as','campaign','free and fair election','gerrymandering','political socialization.','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:53','2020-06-29 05:08:52'),(307,'Which of the following is NOT a feature of the civil service?','Anonymity','Expertise','Impartiality','Rigidity','','','d','','neco','2013',80,'Admin','2016-11-13 16:50:53','2020-06-03 13:35:42'),(308,'In a federal state, power is shared','between the center government and the local authorities','among the state of the federation','among the major regions of the country','between the center government and other co-ordinate units.','','','d','','wassce','1999',60,'Admin','2016-11-13 17:15:28','2020-06-15 03:05:56'),(309,'In a federal system of government, the center is','superior to the other components','inferior to the other components','weak to the other components','equal to the other components','','','a','','wassce','1999',78,'Admin','2016-11-13 17:15:29','2020-06-02 14:29:53'),(310,'In a presidential system of government, ministers are','individually responsible to the president','individually responsible to the senate','collectively responsible to the president','collectively responsible to the electorate','','','a','','wassce','1999',56,'Admin','2016-11-13 17:15:29','2020-06-29 05:40:22'),(311,'The principle of collectively responsibility implies that','individual views cannot be expressed','decisions taken are defended in spite of individual opinions','those who hold different views must acquiesce','government cannot be personalized','','','b','','wassce','1999',63,'Admin','2016-11-13 17:15:29','2020-06-03 17:39:34'),(312,'A government controlled by a few people for their own interests is said to be','an autocracy','a tyranny','an oligarchy','a meritocracy','','','c','','wassce','1999',63,'Admin','2016-11-13 17:15:29','2020-06-17 20:48:37'),(313,'In the parliamentary system of government, formal legislation can take the following forms except','royal proclamations','order in council','acts of parliament','ministerial pronouncement','','','a','','wassce','1999',48,'Admin','2016-11-13 17:15:29','2020-05-28 20:56:46'),(314,'One of the distinctive features of democracy is that it','connotes civil rule','facilitates popular','provides for a unicameral legislature','is not associated with one-party system','','','b','','wassce','1999',41,'Admin','2016-11-13 17:15:29','2020-05-28 20:57:02'),(315,'A hereditary system of government is','an oligarchy','a gerontocracy','an aristocracy','a monarchy','','','d','','wassce','1999',44,'Admin','2016-11-13 17:15:29','2020-06-03 15:39:55'),(316,'The separation of judicial, legislative and executive function is designed to','promote freedom','prevent tyranny','promote peace','prevent anarchy','','','b','','wassce','1999',48,'Admin','2016-11-13 17:15:29','2020-06-04 03:05:30'),(317,'Bicameral legislature are a common feature of','monarchical systems','confederal systems','federal systems','unitary systems','','','c','','wassce','1999',42,'Admin','2016-11-13 17:15:29','2020-06-24 00:49:42'),(318,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as','exclusive','extra-ordinary','residual','concurrent.','','','d','','wassce','1999',51,'Admin','2016-11-13 17:15:29','2020-06-29 05:40:22'),(319,'The most important function of the exclusive organ of government is to','formulate policies','give assent to bills','control foreign policies','enforce laws.','','','a','','wassce','1999',63,'Admin','2016-11-13 17:15:29','2020-06-01 16:14:00'),(320,'The process of learning the norms and values associated with a political system is referred to as political','socialization','indoctrination','culture','participation','','','a','','wassce','1999',49,'Admin','2016-11-13 17:15:29','2020-06-08 00:19:55'),(321,'Which of the following best describes the role of the civil service?','Promoting the interest of civil servants','Advising government and implementing its policies','Keeping records for government','Providing information on government and its agencies.','','','d','','wassce','1999',50,'Admin','2016-11-13 17:15:30','2020-06-04 23:41:17'),(322,'One instrument for safeguarding the rights of citizens is','judicial interpretation','presidential pardon','legislative intervention','writ of habeas corpus','','','d','','wassce','1999',44,'Admin','2016-11-13 17:15:30','2020-06-04 23:41:17'),(323,'Legislative control over delegated legislation can be performed through','withdrawal of delegated powers by the judiciary','nullification of unconstitutional legislation','investigation into the exercise of delegated powers','approval of legislation by the Chief Justice.','','','c','','wassce','1999',49,'Admin','2016-11-13 17:15:30','2020-05-28 20:56:32'),(324,'The feature which best differentiates pressure group from political parties is that they do not','have interest in politics','seek to influences public opinion','have permanent organization','nominate ministers','','','d','','wassce','1999',51,'Admin','2016-11-13 17:15:30','2020-06-26 22:08:23'),(325,'The notion of equality before the law is the same as the principle of','supremacy of the constitution','rule of law','independence of the judiciary','nominate ministers','','','b','','wassce','1999',62,'Admin','2016-11-13 17:15:30','2020-06-26 22:08:23'),(326,'A constitution is classified as unwritten when it','does not emanate from the legislature','provides for separation of powers','originates from Britain','is not contained in any single document','','','d','','wassce','1999',38,'Admin','2016-11-13 17:15:30','2020-06-26 22:08:23'),(327,'.\\n\\nA state is said to be fascist when','its leader is patriotic but the citizens are not','all rights and liberties are subordinated to state interest','its citizens are fanatically in love with their leader','all rights and liberties are placed above state interests.','','','b','','wassce','1999',45,'Admin','2016-11-13 17:15:30','2020-05-28 20:57:31'),(328,'A dominant two-party system is operated in','the United Kingdom and the United States','India and Pakistan','France and Germany','South Africa and Senegal','','','a','','wassce','1999',56,'Admin','2016-11-13 17:15:30','2020-06-07 14:38:47'),(329,'Indirect legislation can be achieved by','judicial interpretation and precedent','passing a private member’s bill','second read of the law','the two legislative chambers considering a bill','','','a','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-06-13 21:10:54'),(330,'Naturalization is a process of acquiring citizenship by','persons of dual nationality','foreign visitors to a country','resident foreigners of good character','persons born abroad.','','','c','','wassce','1999',43,'Admin','2016-11-13 17:15:30','2020-06-03 11:04:32'),(331,'The ideology which states that each person is the best judge of what is in his self-interest is','liberalism','socialism','fascism','feudalism','','','a','','wassce','1999',44,'Admin','2016-11-13 17:15:30','2020-06-10 19:55:35'),(332,'The Code of Conduct Bureau was established essentiality to','ensure the independence of the public service','enhance probity and accountability in public service','probe public office holders','reduce corruption in public life.','','','b','','wassce','1999',54,'Admin','2016-11-13 17:15:30','2020-06-03 13:35:42'),(333,'The British Government revoked the Character of the Royal Niger Company and took over the administration of Nigeria in','1861','1861','1900','1914','','','c','','wassce','1999',48,'Admin','2016-11-13 17:15:30','2020-05-28 20:56:47'),(334,'The Independence constitution can be described as','monarchical and presidential','republican and parliamentary','monarchical and parliamentary','federal and republican','','','c','','wassce','1999',52,'Admin','2016-11-13 17:15:30','2020-06-07 16:13:37'),(335,'Which of the following parties formed the opposition in the House of Representatives during Nigeria’s First Republic?','AG and UMBC','NCNC AND NEPU','NPC and NNDP','NCNC and AG','','','a','','wassce','1999',48,'Admin','2016-11-13 17:15:30','2020-05-28 20:56:57'),(336,'The first Head of Government in Independent Nigeria was','Nnamdi Azikiwe','Ahmadu Bello','Tafawa Balewa','Herbert Macaulay','','','c','','wassce','1999',50,'Admin','2016-11-13 17:15:30','2020-06-18 22:38:07'),(337,'A feature common to the 1963, 1979 and 1989 constitutions of Nigeria was that they provided for a','republican system','prime minister','ceremonial head of state','president as head of government','','','a','','wassce','1999',65,'Admin','2016-11-13 17:15:30','2020-06-28 19:54:32'),(338,'The Lagos Colony and Protectorate was amalgamated with The Protectorate of Southern','1886','1893','1906','1922','','','c','','wassce','1999',47,'Admin','2016-11-13 17:15:30','2020-06-19 22:15:44'),(339,'During the 1957 constitutional conference, the Willink Commission was set up to','recommend a date for independence','suggest an equitable revenue allocation  \tformula','create new regions in Nigeria','recommend solutions to the problem of the minorities','','','d','','wassce','1999',49,'Admin','2016-11-13 17:15:30','2020-05-28 20:57:43'),(340,'The duty of an Alkali under the Hausa-Fulan political system is to','adjudicate under Islamic laws','make Islamic laws','execute Islamic laws','make treaties under Islamic laws','','','a','','wassce','1999',48,'Admin','2016-11-13 17:15:30','2020-06-28 19:54:32'),(341,'The motion for self-government in Nigeria was proposed by Chief Anthony Enahoro in','1956','1953','1956','1958','','','b','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-05-28 20:57:40'),(342,'The legislative functions of the government of Benin Kingdom were performed by the','Esama','Ndichie','Uzama','Enigie','','','c','','wassce','1999',55,'Admin','2016-11-13 17:15:30','2020-05-28 20:56:32'),(343,'The highest ruling body under the Murtala Obasanjo regime differed remarkably from that of the Gowon','administration because of the','inclusion of civilians as members','exclusion of military governors from the council','inclusion of the Chief justice as member','','','b','','wassce','1999',53,'Admin','2016-11-13 17:15:30','2020-06-07 21:11:23'),(344,'Decree No.34 of May 1966 is also known as the','State Security Decree','Suspension and Modification Decree','Public Order Decree','Unification Decree','','','d','','wassce','1999',53,'Admin','2016-11-13 17:15:30','2020-06-28 10:15:16'),(345,'In 1979, the Unity Party of Nigeria contested and won gubernatorial elections in','Lagos, Ogun, imo, Oyo and Bendel','Lagos, Kwara,Oyo,Ogun, and Benue','Lagos, Ogun,Oyo,Ondo and Bendel','Lagos, Kwara,Ogun,Oyo,Ondo','','','c','','wassce','1999',48,'Admin','2016-11-13 17:15:31','2020-06-15 03:05:56'),(346,'Rate are usually collected in Nigeria by','ministries of commerce in the states','local government councils','the department of Inland Revenue','the traditional rulers','','','b','','wassce','1999',61,'Admin','2016-11-13 17:15:31','2020-06-10 10:46:02'),(347,'One of the main reasons for the creation of more local governments in Nigeria is to','make them more responsive to people’s needs','weaken the powers of traditional authorities','make them more receptive to traditional rule','establish them as the third tier in the federal structure','','','a','','wassce','1999',58,'Admin','2016-11-13 17:15:31','2020-06-11 00:27:36'),(348,'Based on its objectives, the Organization of African Unity can primarily be classified as','a social organization','a political organization','a cultural organization','an economic organization','','','b','','wassce','1999',57,'Admin','2016-11-13 17:15:31','2020-06-26 22:08:23'),(349,'Nigeria’s role in ECOMOG is essentially informed by her','desire for peace and stability','chairmanship of ECOWAS.','desire to establish democracy','member ship of ECOWAS.','','','a','','wassce','1999',48,'Admin','2016-11-13 17:15:31','2020-06-08 06:31:49'),(350,'The annual budget of the OAU is approved by the','Council of Ministers','Secretary General','Assembly of Heads of State and Government','General Assembly','','','c','','wassce','1999',59,'Admin','2016-11-13 17:15:31','2020-06-29 05:40:22'),(351,'The major strategy used by OPEC to influence oil price is by','allocating production quotas to members','influencing buyers at the international market to buyer at high prices','allowing member countries to produce at their discretion','increasing the supply of the commodity','','','a','','wassce','1999',38,'Admin','2016-11-13 17:15:31','2020-06-01 14:52:27'),(352,'Nigeria’s was suspended from the Commonwealth because of her','tacit approval of military dictatorship','negative position towards other nations','complete negligence of freedom of the press','violation of fundamental human rights','','','d','','wassce','1999',61,'Admin','2016-11-13 17:15:31','2020-06-29 05:40:22'),(353,'Nigeria’s non-aligned policy means that she will','have nothing to do with the super-powers','not take sides in international issues based on ideological considerations','avoid having any dealing with any country with Ideological','relate only with member countries of the Non-Aligned Movement','','','b','','wassce','1999',58,'Admin','2016-11-13 17:15:31','2020-06-07 05:54:17'),(354,'One of the underlying principles of Nigerian foreign policy is','encouragement of peace-keeping operations in Africa','interference in the internal activities of other countries','non-commitment towards Africa unity','respect for sovereign equality of all states.','','','d','','wassce','1999',61,'Admin','2016-11-13 17:15:31','2020-06-07 16:15:41'),(355,'Before a new member is admitted to the United Nations Organization, its application must be approved by all','permanent members of the Security Council','members of the General Assembly','members of the Economic and Social Council','members of the International Court of Justice','','','a','','wassce','1999',52,'Admin','2016-11-13 17:15:31','2020-06-11 19:38:47'),(356,'Which of the following international organizations was in existence before the outbreak of the Second World War?','The OAU','The League of Nations','The UNO','The ECOWAS','','','b','','wassce','1999',53,'Admin','2016-11-13 17:15:31','2020-06-03 11:04:32'),(357,'The organ of the United Nations Organization responsible for the former colonies of defeated World War II power is the','General Assembly','Security Council','Economic and Social Council','Trusteeship Council','','','d','','wassce','1999',53,'Admin','2016-11-13 17:15:31','2020-05-28 20:54:52'),(358,'The Land Use Decree of 1978 vested the ownership of land in Nigeria in the','State Governments','Federal Government','Local Governments','Local Chiefs','','','a','','utme','2016',55,'Admin','2016-11-13 17:26:43','2020-06-15 09:15:09'),(359,'During the civil war, the major power that expressed moral support for Biafra’s self-determination was','Great Britain','the United States','China','France','','','d','','utme','2016',65,'Admin','2016-11-13 17:26:44','2020-06-29 06:43:13'),(360,'How many states were created in Nigeria in 1967?','4','12','19','21','','','b','','utme','2016',59,'Admin','2016-11-13 17:26:45','2020-05-28 20:56:18'),(361,'Decree 34 of 1966 was unacceptable to many Nigeria because it was','seen as an instrument of impoverishment','perceived to abolish the federal system','promulgated without consultation with the people','considered as alien','','','b','','utme','2016',51,'Admin','2016-11-13 17:26:45','2020-06-28 10:15:16'),(362,'The Mid-Western Region was created in Nigeria in','1961','1962','1963','1964','','','c','','utme','2016',60,'Admin','2016-11-13 17:26:45','2020-06-10 19:55:35'),(363,'A major contentious issues confronting Nigerian Federalism is','poverty','education','health care delivery','revenue allocation','','','d','','utme','2016',42,'Admin','2016-11-13 17:26:45','2020-06-26 22:08:23'),(364,'A constitution of any country is basically','a mere piece of paper','a guide to how the country should be governed','a document stating what the leaders should do','a document stating how to power','','','b','','utme','2016',54,'Admin','2016-11-13 17:26:45','2020-05-28 20:55:40'),(365,'The term, Rule of Law means','nobody is above the law','everybody is equal before the law','we are being governed by lawyers','A and B above','','','d','','utme','2016',61,'Admin','2016-11-13 17:26:45','2020-05-28 20:57:06'),(366,'A good example of a country which operates a cabinet system of government is','France','United Kingdom','United States','Soviet Union','','','b','','utme','2016',50,'Admin','2016-11-13 17:26:45','2020-06-04 23:41:17'),(367,'Indirect Rule was first introduced into Nigeria by','Dame Margery Perham','Sir Donald Cameron','Sir Frederick Lugard','Sir Arthur Richards','','','c','','utme','2016',55,'Admin','2016-11-13 17:26:45','2020-06-18 22:38:07'),(368,'France introduced the policy of assimilation in her colonies primarily to','teach them the art of leadership','give them a sound education','change their way of life','discourage them from ritual killings','','','c','','utme','2016',42,'Admin','2016-11-13 17:26:45','2020-05-28 20:55:36'),(369,'The first Governor-General of Nigeria was','Lord Lugard','Dr. Nnamdi Azikwe','Sir James Robertson','Major-General Aguiyi Ironsi','','','a','','utme','2016',47,'Admin','2016-11-13 17:26:45','2020-06-01 17:39:17'),(370,'A disadvantage of the one-party system is that it','emphasizes political differences','makes accountability difficult','negates freedom of association','delays decision - making','','','c','','utme','2016',70,'Admin','2016-11-13 17:26:45','2020-05-28 20:54:47'),(371,'A typical form of delegated legislation is','an act','a bill','a decree','a bye-law','','','d','','utme','2016',64,'Admin','2016-11-13 17:26:45','2020-05-28 20:56:13'),(372,'In federalism system of Government currency, Armed forces and National defense is the primary function o','f\\nLocal government Chairman','Armed Forces Ruling Council','Security and Exchange Commission','Exclusive list','','','d','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-06-07 16:13:37'),(373,'An electoral process in which candidates are selected for elective offices by party members is','Primary election','Electoral College','Bye election','General election','','','a','','utme','2016',80,'Admin','2016-11-13 17:26:45','2020-05-28 20:57:45'),(374,'The system of indirect rule failed in the former Eastern Nigeria primarily because','of the fragmented political structures','the chief refused to cooperate with colonial officer','the high incidence of taxation chief refused to cooperate with colonial officers','the colonial officers imposed warrant chiefs on the people','','','d','','utme','2016',67,'Admin','2016-11-13 17:26:45','2020-06-07 15:49:24'),(375,'Citizenship refers to the','legal status of a member of a state','indigenous member of a state','highest position in a state','social status of a person in a state','','','b','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-06-04 15:17:57'),(376,'Before Nigeria became a republic, the highest body charged with the administration of justice was the','Supreme Court','Court of Appeal','Privy court','High Court','','','c','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-06-10 19:55:35'),(377,'Nigeria’s withdrawal from the Edinburgh Commonwealth Games in July 1986 was in protest against British','supply of arms of Rhodesia','failure to improve sanctions on South Africa','negative utterances on Nigeria','support for UNITA rebels in Angola','','','b','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-06-29 06:43:13'),(378,'Which of these is not the supreme organ of the OAU?','the council of Ministers','The Administrative Secretary General','the Assembly of Heads of States and Government','Appointment of staff','','','d','','utme','2016',60,'Admin','2016-11-13 17:26:45','2020-06-03 23:45:22'),(379,'Which of the following electoral bodies in Nigeria conducted elections from 1979 to 1983?','Federal Electoral Commission','National Electoral Commission','National Electoral Commission of Nigeria','Independent National Electoral commission','','','b','','utme','2016',64,'Admin','2016-11-13 17:26:45','2020-06-03 13:35:42'),(380,'The Queen can do no wrong means','the Queen is above the law','the Queen acts on the advice of their ministers on matter of public policy','The Queen is the effective centre of power in the United Kingdom','The Queen has the loyalty of a vast number of the British population','','','a','','utme','2016',55,'Admin','2016-11-13 17:26:45','2020-05-28 20:55:37'),(381,'The main attributes of a state are','government, the police and the armed forces','population, territory, government and sovereignty','federal state and local governments','the press, the legislature, the executive and the judiciary','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-06-08 22:20:25'),(382,'Islam was introduced in Northern Nigeria','before the 13th century','in the 17th century','after the jihad of Uthman Dan Fodio','by the British in the early 20th century','','','c','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-06-01 14:52:45'),(383,'The Aro age-grade system in igboland was','a religious organization','a political organization','a commercial organization','an imperial organization','','','b','','utme','2016',50,'Admin','2016-11-13 17:26:46','2020-06-03 17:50:15'),(384,'ECOWAS comprises','16 independent states','The whole Africa','All West African states','English speaking countries only','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:46','2020-06-19 22:15:44'),(385,'Prior to the formation of the OAU in 1963, Nigeria Identified with the','Brazzaville Group','Casablanca group','Libreville Group','Monrovia Group','','','a','','utme','2016',58,'Admin','2016-11-13 17:26:46','2020-06-08 06:58:20'),(386,'How many countries are founding members of O. P. E. C?','13','5','18','25','','','b','','utme','2016',57,'Admin','2016-11-13 17:26:46','2020-06-01 14:52:27'),(387,'The foremost British trading company on the West African coast was','Royal Niger Company','United African Company','Lever Brothers','John Holt and Sons','','','c','','utme','2016',57,'Admin','2016-11-13 17:26:46','2020-05-28 20:56:49'),(388,'The Zikist Movement was popular for its','philosophy of non-violence','promotion of mass literacy','militant nationalism','encouragement of multi-party system','','','c','','utme','2016',61,'Admin','2016-11-13 17:26:46','2020-06-01 20:56:12'),(389,'Which of the following sets of factors contributed to the development of nationalism in Nigeria?','Racial discrimination and oppression','Corruption and ethnicity','Paternalism and indirect rule','Election malpractices and party differences','','','a','','utme','2016',58,'Admin','2016-11-13 17:26:46','2020-05-28 20:56:39'),(390,'Which constitution was created to legislate for the Lagos Colony and the Southern Provinces?','The Richard Constitution','The Clifford Constitution','The Lyttletion Constitution','the MacPherson Constitution','','','b','','utme','2016',57,'Admin','2016-11-13 17:26:46','2020-05-28 20:54:53'),(391,'Judges in Nigeria enjoy security of tenure','if they are appointed by the president','if they have the support of the Nigerian Bar Association','if they are of good behaviour','during the life of the government which appoints them','','','c','','utme','2016',64,'Admin','2016-11-13 17:26:46','2020-06-29 05:40:22'),(392,'Before the 1963 Constitution, the highest court of appeal for Nigeria was the','Supreme Court','Federal Court of Appeal','Privy Council','Federal High Court','','','c','','utme','2016',60,'Admin','2016-11-13 17:26:46','2020-05-28 20:57:39'),(393,'Which of the following is NOT a function of the Police Force in Nigeria?','Traffic control','Arrest of criminals','making of law','Prosecution of criminals','','','c','','utme','2016',61,'Admin','2016-11-13 17:26:46','2020-05-28 20:57:02'),(394,'In Nigeria, the highest court for Muslims is the','Alkali Court','Sharia Court of Appeal','Supreme Court','Upper Area Court','','','b','','utme','2016',60,'Admin','2016-11-13 17:26:46','2020-06-28 10:15:16'),(395,'Who was appointed by the federal government of Nigeria as the administrator of western region in 1962?','Dr. M. A. Majekodunmi','Chief Odeleye Fadahunsi','Chief S. L. Akintola','Chief Remi Fani Kayode','','','c','','utme','2016',53,'Admin','2016-11-13 17:26:46','2020-06-29 06:43:13'),(396,'The head of state in the first republic of Nigeria was','an executive president','a nominal president','a party leader','a nominee of the whole country','','','b','','utme','2016',65,'Admin','2016-11-13 17:26:46','2020-05-28 20:57:39'),(397,'Which of the following parties formed the opposition in the House of Representatives during Nigerian first republic?','NCNC and NEPU','AG and UMBC','NPC and NNDP','NCNC and MDF','','','b','','utme','2016',64,'Admin','2016-11-13 17:26:46','2020-06-04 12:16:02'),(398,'A prominent feature of a presidential system of government is','dual executive','vote of no confidence','the rule of law','separation of powers','','','d','','utme','2016',65,'Admin','2016-11-13 17:26:46','2020-06-15 03:05:56'),(399,'The executive checks the excesses of the legislature through','assent to bills','the use of veto power','the ratification of treaties','issuance of orders','','','b','','utme','2016',56,'Admin','2016-11-13 17:26:46','2020-06-03 11:07:56'),(400,'The consciousness of a common identity of a people is called','nationalism','integration','indoctrination','emancipation','','','b','','utme','2016',61,'Admin','2016-11-13 17:26:46','2020-06-29 05:40:22'),(401,'Citizenship of a state by descent requires that','one is born and bred in the state','one’s mother was born in the state','one’s grandparents were citizens of that state','one is domiciled in that state','','','a','','utme','2016',62,'Admin','2016-11-13 17:26:46','2020-06-13 21:10:54'),(402,'In order to dispense justice impartially, the judiciary primarily needs','discipline','logistics','motivation','independence','','','d','','utme','2016',61,'Admin','2016-11-13 17:26:46','2020-06-04 16:16:05'),(403,'A state with a hegemonic political party is one in which','there is one dominant party','there is no opposition party','there is only one party','other parties are officially recognized','','','a','','utme','2016',66,'Admin','2016-11-13 17:26:46','2020-05-28 20:56:56'),(404,'Nigeria commitment to the liberation of Africa could best be seen in her policy towards','Namibia and Mozambique','the Congo and Zimbabwe','Sierra Leone and Chad','South Africa and Angola','','','d','','utme','2016',50,'Admin','2016-11-13 17:26:46','2020-06-28 19:54:32'),(405,'The set of policies on the basis of which countries interact with one another is called','constructive engagement policy','socio-economic policy','national policy','foreign policy','','','d','','utme','2016',88,'Admin','2016-11-13 17:26:46','2020-06-30 06:53:23'),(406,'Nigeria’s membership of the UN complements her foreign policy in the area of','bilateral diplomacy','regional diplomacy','sub-regional diplomacy','multi-lateral diplomacy','','','d','','utme','2016',71,'Admin','2016-11-13 17:26:47','2020-06-04 09:11:56'),(407,'Nigeria teamed up with other developing countries to assert a neutral posture under the platform of','Nationalist Movement','Pan - African Movement','Non - aligned Movement','Negritude Movement','','','c','','utme','2016',65,'Admin','2016-11-13 17:26:47','2020-06-01 22:48:11'),(408,'Nation-state is synonymous with','liberation','sovereignty','nationalism','self-actualization','','','b','','utme','2010',70,'Admin','2016-11-13 18:33:18','2020-06-28 06:34:31'),(409,'A fundamental component of political culture is','community structure','family values','economic values','social values','','','d','','utme','2010',81,'Admin','2016-11-13 18:33:18','2020-06-28 06:34:31'),(410,'A form of oligarchy in which gifted people are at the helm of affairs is','plutocracy','theocracy','gerontocracy','aristocracy','','','d','','utme','2010',70,'Admin','2016-11-13 18:33:18','2020-06-28 06:34:31'),(411,'A state that is ruled by an elected citizen is','a republic','a plutocracy','an empire','a monarchy.','','','a','','utme','2010',74,'Admin','2016-11-13 18:33:18','2020-06-28 06:34:31'),(412,'A true democracy in the modern sense exists where the','majority of the people vote','majority of the people rule','elite rules','elected representatives rule.','','','d','','utme','2010',72,'Admin','2016-11-13 18:33:18','2020-06-28 03:25:43'),(413,'In a parliamentary system, when the legislature passes a vote of no confidence on the executive, it means that the','executive is required to resign','legislature ceases to trust the executive','legislature commences legal proceeding against the executive','executive is expected to go on suspension','','','a','','utme','2010',74,'Admin','2016-11-13 18:33:18','2020-06-28 06:34:31'),(414,'The legislative body of the United States of America is the','Congress','National Assembly','Council','Parliament','','','a','','utme','2010',59,'Admin','2016-11-13 18:33:18','2020-06-28 06:34:31'),(415,'Unicameralism is a feature of the legislature in','the United Kingdom','the United States','Ghana','Israel','','','a','','utme','2010',64,'Admin','2016-11-13 18:33:19','2020-06-28 03:25:43'),(416,'The upper house in most federal systems is created to','oversee and check the lower house','prevent excesses of the executive','enable experienced elders make inputs to governance','ensure equality of federating units','','','d','','utme','2010',72,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(417,'In which of the following systems is the power of the component units more than that of the central government?','Unitary.','Federal.','Confederal','Monarchical.','','','c','','utme','2010',68,'Admin','2016-11-13 18:33:19','2020-06-26 09:37:44'),(418,'One of the general tenets of fascist doctrine is that the leader is','subordinate to the law of the state','weak relative to the constitution','subordinate to the norms of the society','supreme relative to the constitution','','','d','','utme','2010',73,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(419,'In a cabinet system of government, executive power is exercised by the','president','monarch','dominant party','head of government','','','d','','utme','2010',68,'Admin','2016-11-13 18:33:19','2020-06-26 09:37:44'),(420,'The principle of separation of powers is best practiced in the','monarchical system','parliamentary system.','feudal system','presidential system','','','d','','utme','2010',65,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(421,'A typical form of delegated legislation is','a decree','a bill','a bye-law','an act','','','c','','utme','2010',67,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(422,'16.\tThe rights of a citizen can be withdrawn by the state if the person','is convicted of a serious crime','leaves the country permanently','is pronounced dead','opposes the government violently.','','','a','','utme','2010',86,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(423,'An electoral process in which candidates are selected for elective offices by party members is','bye election','electoral college','general election','primary election.','','','d','','utme','2010',73,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(424,'In theory, one major advantage of the one-party systems is that it','promotes greater mass participation in government','serves as an instrument of national integration','guarantees social justice','eliminates intra-party conflict.','','','b','','utme','2010',67,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(425,'A tactic employed by pressure groups to achieve their objectives is','propaganda','electioneering campaign','lobbying','memorandum.','','','c','','utme','2010',67,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(426,'Public opinion can be measured through','strike action','referendum','rumour','negotiation.','','','b','','utme','2010',61,'Admin','2016-11-13 18:33:19','2020-06-29 00:24:38'),(427,'Which of the following is the main function of the civil service?','Supporting the party in power.','Allocating resources to the federating units.','Mobilizing grassroots support for government.','Implementing government policies.','','','d','','utme','2010',62,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(428,'Who was the political head of the Old Oyo Empire?','Aremo.','Oyomesi.','Alaafin.','Bashorun.','','','c','','utme','2010',67,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(429,'The Igbo political system was based on','family ties','Umunna','Umuada','age grades','','','d','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(430,'The Aro age-grade system in lgboland was','a commercial organization','a political organization','an imperial organization','a religious organization.','','','d','','utme','2010',66,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(431,'France introduced the policy of assimilation in her colonies primarily to','change their way of life','give them a sound education','discourage them from ritual killings','teach them the art of leadership','','','a','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-06-28 03:25:43'),(432,'The foremost British trading company on the West African coast was','Lever Brothers','United African Company','John Holt and. Sons','Royal Niger Company','','','b','','utme','2010',77,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(433,'Which of these rulers resisted colonial rule and was deported to Calabar?','Oba Ovoramwen.','King Dosunmu','King Jaja.','King Kosoko','','','b','','utme','2010',58,'Admin','2016-11-13 18:33:19','2020-06-29 00:24:38'),(434,'Nigerian nationalism was described as two-phased by','James S. Coleman','Edward Wilmot Blyden','David Ricardo','John Payne Jackson.','','','a','','utme','2010',66,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(435,'One major weakness of the Independence constitution is that it','gave full powers to the Supreme Court in Nigeria','gave total independence to Nigeria','empowered Britain to continue to rule','failed to provide the country with full sovereignty.','','','d','','utme','2010',68,'Admin','2016-11-13 18:33:19','2020-06-28 03:25:43'),(436,'The first law-making body in Nigeria after amalgamation was','Legislative Council','National Assembly','Regional Assembly','Nigerian Council.','','','a','','utme','2010',71,'Admin','2016-11-13 18:33:19','2020-06-28 20:24:18'),(437,'The designation of ministers as chief executives and accounting officers was recommended by a commission headed by','Simeon Adebo','S.J.Cookey','Dotun Philips.','Jerome Udoji.','','','d','','utme','2010',68,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(438,'A major shortcoming of the Ombudsman is','its inability to restrain bureaucratic excesses','lack of clear-cut mandate','lack of executive power to enforce decisions','lack of adequate resources.','','','c','','utme','2010',67,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(439,'One of the strong points of the multi-party system in Nigeria’s Fourth Republic is','government interference','wider political participation','wider anti-democracy campaign','the provision for a bicameral legislature.','','','b','','utme','2010',74,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(440,'In which of the following is the ceremonial and executive powers fused?','Federal system of government','Parliamentary system of government','Unitary system of government','Presidential system of government','','','d','','utme','2010',61,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(441,'A major contentious issue confronting Nigerian federalism is','health care delivery','education','revenue allocation','poverty','','','c','','utme','2010',73,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(442,'The main purpose of establishing public enterprises in Nigeria is to','enrich the elite','provide essential services','compete with the private sector','increase government revenue','','','b','','utme','2010',76,'Admin','2016-11-13 18:33:20','2020-06-29 00:24:38'),(443,'Parastatals are established to','expand business transactions','maximize government profits','render social services','enhance entrepreneurial skills','','','c','','utme','2010',66,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(444,'The General Purpose Committee of the local government is the','body responsible for supervising self-help projects','local government public relations unit','body for awarding contracts','cabinet of the local government.','','','d','','utme','2010',66,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(445,'The highest organ of the state during the Babangida Regime was the','Armed Forces Ruling Council','Supreme Military Council','Federal Executive Council .','Provisional Ruling Council.','','','d','','utme','2010',74,'Admin','2016-11-13 18:33:20','2020-06-28 03:25:43'),(446,'Decree 34 of 1966 was unacceptable to many Nigerians because it was','promulgated without consultation with the people','perceived to abolish the federal system','considered as alien','seen as an instrument of impoverishment','','','a','','utme','2010',76,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(447,'Nigeria broke diplomatic relations with France in 1961 because of:','her poor relations with the francophone countries','General de-Gaulle’s negative attitude towards her','France’s diplomatic relations with Israel','France’s atomic test in the Sahara Desert','','','d','','utme','2010',74,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(448,'An attribute that Nigeria shares with most non-aligned countries is','her large population','her heterogeneous population','her large size','the state of  her economy.','','','d','','utme','2010',69,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(449,'Nigeria spearheaded the formation of ECOWAS during the regime of','Murtala Muhammed','Yakubu Gowon','Ibrahim Babangida','Olusegun Obasanjo.','','','b','','utme','2010',85,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(450,'Nigeria was classified as a front line state for','spearheading the formation of African Union','supporting the liberation efforts in Southern Africa','helping to end the crisis in Liberia','participating in peacekeeping in the Congo','','','b','','utme','2010',63,'Admin','2016-11-13 18:33:20','2020-06-28 03:25:43'),(451,'The prominent role Nigeria played in the UN in the 70’s earned her.','permanent representation at the UN','membership of the Security Council','chairmanship of the General Assembly','non-permanent membership position.','','','b','','utme','2010',82,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(452,'The head of Nigeria’s foreign mission in a Commonwealth nation is known as','ambassador','charge d’affaires.','attaché','high Commissioner','','','d','','utme','2010',63,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(453,'One major function of the Authority of Heads of State and Government of ECOWAS is','appointing staff of the Secretariat','appointing the Executive Secretary','preparing the budget of the Community','organizing international conferences','','','b','','utme','2010',58,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(454,'The tenure of non-permanent members of the Security Council is','4 years','2 years','6 years','5 years','','','b','','utme','2010',82,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(455,'The Secretary-General of the United Nations is appointed by the','Permanent members of the Security Council on the   recommendation of the General Assembly','General Assembly on the recommendation of the Security Council','General Assembly in plenary session','Security Council acting alone.','','','b','','utme','2010',64,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(456,'The approval of treaties and agreements of the Economic Community of West African States is the responsibility of the','Council of Ministers','ECOWAS Tribunal','Assembly of Heads of State and Government','Secretariat.','','','c','','utme','2010',79,'Admin','2016-11-13 18:33:20','2020-06-28 03:25:43'),(457,'The distinctive attribute of a state is the monopoly of','control','power','violence','justice.','','','b','','utme','2012',59,'Admin','2016-11-13 18:42:18','2020-06-07 16:01:59'),(458,'State as a political entity refers to','an organized group within a definite territory','an association of men in a given society','a branch of a nation','a geographical location.','','','a','','utme','2012',64,'Admin','2016-11-13 18:42:19','2020-06-29 06:43:13'),(459,'Political values are acquired in any given society through','political re-orientation','political campaign','political socialization','political indoctrination.','','','c','','utme','2012',85,'Admin','2016-11-13 18:42:19','2020-06-29 05:40:22'),(460,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate.','','','d','','utme','2012',70,'Admin','2016-11-13 18:42:19','2020-06-29 05:05:38'),(461,'One judicial function performed by the executive is','granting of amnesty','implementing judicial orders','ensuring obedience to the law','appointing judges.','','','a','','utme','2012',65,'Admin','2016-11-13 18:42:19','2020-06-29 06:19:10'),(462,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary.','','','c','','utme','2012',61,'Admin','2016-11-13 18:42:19','2020-05-28 20:56:47'),(463,'A political system which empowers the leader with the ultimate responsibility to execute laws is','parliamentarianism','presidentialism','dictatorship','autocracy.','','','b','','utme','2012',65,'Admin','2016-11-13 18:42:19','2020-06-03 08:11:39'),(464,'A bill is a draft which is awaiting the consideration of the','executive','party caucus','legislature','judiciary.','','','c','','utme','2012',67,'Admin','2016-11-13 18:42:19','2020-06-28 20:14:50'),(465,'The private ownership of the means of production is a feature of','capitalism','socialism','communalism','communism.','','','a','','utme','2012',56,'Admin','2016-11-13 18:42:19','2020-06-02 14:57:28'),(466,'In a feudal system, the two major classes are the serfs and the','masses','vassals','lords','elite.','','','c','','utme','2012',64,'Admin','2016-11-13 18:42:19','2020-05-28 20:54:22'),(467,'An example of a country with a flexible constitution is','South Africa','Britain','Benin Republic','the United States of America.','','','d','','utme','2012',61,'Admin','2016-11-13 18:42:19','2020-06-03 08:11:39'),(468,'The rule of law is a negation of','equality before the law','supremacy of the law','limited power','absolute power.','','','d','','utme','2012',62,'Admin','2016-11-13 18:42:19','2020-06-03 11:04:32'),(469,'To ensure the rights and freedom of citizens, the powers of the arms of government must be','fused','incorporated','separated','rotated.','','','c','','utme','2012',61,'Admin','2016-11-13 18:42:19','2020-06-03 01:20:16'),(470,'Delegated legislation is made by bodies other than the','president','governor','parliament','judiciary','','','c','','utme','2012',66,'Admin','2016-11-13 18:42:19','2020-05-28 20:55:29'),(471,'The bringing of a session of a parliament to an end through royal proclamation is known as','political impasse','dissolution of parliament','vote of no confidence','prorogation of parliament.','','','b','','utme','2012',56,'Admin','2016-11-13 18:42:19','2020-06-29 05:40:22'),(472,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social light.','','','c','','utme','2012',65,'Admin','2016-11-13 18:42:19','2020-06-01 22:41:27'),(473,'The commission charged with the conduct of federal elections in Nigeria is','NEC','FEDECO','INEC','NECON.','','','c','','utme','2012',71,'Admin','2016-11-13 18:42:19','2020-06-11 19:38:47'),(474,'An electoral system in which parties are assigned seats in the parliament commensurate to the number of votes polled is','absolute majority','simple majority','proportional representation.','indirect election.','','','c','','utme','2012',64,'Admin','2016-11-13 18:42:19','2020-06-17 21:32:41'),(475,'An intra-party activity for the selection of candidates for elective positions is known as','primary election','general election','mid-term election','bye-election.','','','a','','utme','2012',70,'Admin','2016-11-13 18:42:19','2020-06-30 15:24:32'),(476,'The primary aim of pressure groups is to','attract people’s attention','protects the interest of members','capture political power','fight corrupt officials.','','','b','','utme','2012',66,'Admin','2016-11-13 18:42:19','2020-06-04 11:53:53'),(477,'Which of the following is used in gauging public opinion?','Constitution','.\t\t\\nEducational institution.','Mass media.','Electoral college.','','','c','','utme','2012',62,'Admin','2016-11-13 18:42:19','2020-06-07 16:01:59'),(478,'A permanent structure that facilitates continuity and guarantees orderly conduct in governance is','bureaucracy','public corporation','ombudsman','political party.','','','a','','utme','2012',72,'Admin','2016-11-13 18:42:19','2020-06-07 16:20:36'),(479,'In the Hausa pre-colonial political system, a district was headed by','a hakimi','a dagaci','an alkali','a waziri.','','','d','','utme','2012',59,'Admin','2016-11-13 18:42:19','2020-06-01 16:38:38'),(480,'Which of the following ensured the practice of democracy in the pre-colonial Yoruba political system?','Checks and balances.','Fusion of power.','Individual responsibility.','The rule of law.','','','a','','utme','2012',62,'Admin','2016-11-13 18:42:19','2020-05-28 20:57:26'),(481,'Colonization of Africa was mainly motivated by','security considerations','economic reasons','religious reasons','cultural factors.','','','b','','utme','2012',71,'Admin','2016-11-13 18:42:19','2020-06-17 21:05:20'),(482,'The French colonial system was underlined by the policy of','assimilation','paternalism','socialism','indirect rule.','','','a','','utme','2012',70,'Admin','2016-11-13 18:42:19','2020-06-03 15:39:55'),(483,'Radical nationalism in Nigeria is generally attributed to the influence of','Aminu Kano','Herbert Macaulay','Nnamdi Azikiwe','Mbonu Ojike.','','','b','','utme','2012',66,'Admin','2016-11-13 18:42:19','2020-05-30 18:38:29'),(484,'Two foreigners that directly aroused nationalist feelings among Nigerians are','Edward Blyden and Payne Jackson','Casely Hayford and James Horton','W.E.du Bois and H. O. Davies','Marcus Garvey and Casely Hayford.','','','d','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-06-03 23:09:08'),(485,'Members of the Senate in Nigeria’s First Republic were','elected directly by the people','elected by electoral college','nominated by regional and federal governments','nominated by the president of the house.','','','b','','utme','2012',54,'Admin','2016-11-13 18:42:19','2020-06-07 15:49:24'),(486,'In Nigeria, the agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil Defense Corps','Police.','','','d','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-05-28 20:57:05'),(487,'The National Assembly in Nigeria is primarily responsible for','executing laws','interpreting laws','ratifying appointments','making laws.','','','d','','utme','2012',63,'Admin','2016-11-13 18:42:20','2020-06-08 06:58:20'),(488,'The major factor militating against the efficient operation of electoral commissions in Nigeria is','inadequate public support','population size','inadequate skilled manpower','excessive political interference.','','','d','','utme','2012',63,'Admin','2016-11-13 18:42:20','2020-06-15 03:05:56'),(489,'A major objective of the Public Complaints Commission is','training and promotion of public servants','settlement of disputes among individuals','addressing the grievances of individuals and groups','fighting corruption and indiscipline.','','','d','','utme','2012',61,'Admin','2016-11-13 18:42:20','2020-06-04 23:41:17'),(490,'The three registered political parties at the inception of Nigeria’s Fourth Republic were','PDP, DPP and PPA','PDP, AD and APP','PDP,  AD and PPA','PDP, APP and AC.','','','b','','utme','2012',63,'Admin','2016-11-13 18:42:20','2020-06-03 08:11:39'),(491,'The Sharia legal system was first introduced in the Fourth Republic in','Kano State','Katsina State','Zamfara State','Sokoto State.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-06-29 05:40:22'),(492,'Quota system and federal character principles were entrenched in the 1979 Constitution to ensure','loyalty','economic empowerment','equity','even development.','','','d','','utme','2012',69,'Admin','2016-11-13 18:42:20','2020-06-29 05:05:38'),(493,'Workers in the public corporations are known as','civil servants','private employees','public servants','professional employees.','','','c','','utme','2012',62,'Admin','2016-11-13 18:42:20','2020-06-07 16:01:59'),(494,'The central objective of privatization in Nigeria is to','reduce the retrenchment of workers','encourage prompt payment of salaries','improve standard of living','improve the efficiency of enterprises.','','','d','','utme','2012',60,'Admin','2016-11-13 18:42:20','2020-06-26 22:08:23'),(495,'Military intervention in Nigeria arose from','perceived incapability of civilians to govern','international pressure for change','the desire for a military government','civilians’ desire to relinquish power.','','','a','','utme','2012',64,'Admin','2016-11-13 18:42:20','2020-06-02 23:25:45'),(496,'The first institution introduced by the military to exercise legislative power was the','Supreme Military Council','Armed Forces Ruling Council','Federal Executive Council','Provisional Ruling Council.','','','a','','utme','2012',59,'Admin','2016-11-13 18:42:20','2020-05-28 20:56:07'),(497,'The main focus of Nigeria’s foreign policy since independence centres on','south-south cooperation','sub-regionalism','globalism','Afrocentric.','','','d','','utme','2012',64,'Admin','2016-11-13 18:42:20','2020-05-28 20:57:13'),(498,'The country that championed decolonization in Africa was','Nigeria','South Africa','Ghana','Kenya.','','','c','','utme','2012',75,'Admin','2016-11-13 18:42:20','2020-06-29 05:05:38'),(499,'A major drawback to the NEPAD initiative is its','articulation by few African leaders','affiliation to the African union','inability to empower the youth','reliance on Western donors for funds.','','','d','','utme','2012',50,'Admin','2016-11-13 18:42:20','2020-06-03 11:31:39'),(500,'The structure of the African Union includes','The Court of Justice, Pan African Congress and People’s Assembly','Pan African Parliament, the Court of Justice and the Peace and Security Council','Specialized Technical Commission, the Court of Justice and Humanitarian Board','People’s Assembly, Humanitarian Board and the Peace and Security Council.','','','b','','utme','2012',60,'Admin','2016-11-13 18:42:20','2020-06-07 16:20:36'),(501,'ECOMOG at the initial stage of its intervention in Liberia was perceived as','neutral','incompetent','partisan','invaders.','','','d','','utme','2012',75,'Admin','2016-11-13 18:42:20','2020-06-04 02:27:47'),(502,'The African leader mostly credited for spearheading the formation of the African Union is','Muammar Ghaddafi','Abdelaziz Bouteflika','Abdoulaye Wade','Thabo Mbeki.','','','a','','utme','2012',52,'Admin','2016-11-13 18:42:20','2020-06-01 19:05:27'),(503,'One of the programmes binding members of the Commonwealth is the','food and aid programme','cultural programmes','agenda for peace','scholarship scheme.','','','d','','utme','2012',65,'Admin','2016-11-13 18:42:20','2020-06-08 19:25:57'),(504,'As part of the reforms in the UN, two slots were proposed in the Security Council for','Asia','Africa','America','Europe.','','','b','','utme','2012',59,'Admin','2016-11-13 18:42:20','2020-06-29 05:40:22'),(505,'The founding members of OPEC are','Algeria, Iran, Iraq, Saudi Arabia and Kuwait','Nigeria, Libya, Iran, Iraq and, Saudi Arabia','Venezuela, Nigeria, Libya, Iran and Iraq','Saudi Arabia, Iran, Iraq, Kuwait and Venezuela.','','','d','','utme','2012',69,'Admin','2016-11-13 18:42:20','2020-06-26 22:08:23'),(506,'Power that is delegated is exercised','indirectly','by devolution','directly','by coercion.','','','a','','utme','2013',51,'Admin','2016-11-13 20:36:42','2020-06-28 13:53:16'),(507,'De jure sovereignty is acquired through','force','law','grant','treaty.','','','b','','utme','2013',59,'Admin','2016-11-13 20:36:42','2020-06-29 06:43:13'),(508,'A group of people who live together under a common law within a definite territory is a','state','community','nation-state','nation.','','','a','','utme','2013',56,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(509,'Political socialization is associated with','free choice of party programmes','military take over of civilian government','the transmission of political values','political transition.','','','c','','utme','2013',57,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(510,'According to Aristotle, a form of government in which the few rule for the benefit of all is','polyarchy','diarchy','aristocracy','autocracy.','','','c','','utme','2013',71,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(511,'Rule by the old people is known as','theocracy','monarchy','gerontocracy','feudalism.','','','c','','utme','2013',63,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(512,'As an executive, the commissioner is charged with the responsibility of','making laws','implementing laws','writing laws','giving loans.','','','b','','utme','2013',74,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(513,'Rule adjudication is a primary function of the','legislature','judiciary','executive','government.','','','b','','utme','2013',60,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(514,'The judiciary controls the executive in federal states through','motions','delegated legislation','judicial overview','judicial review.','','','d','','utme','2013',68,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(515,'One major advantage of the unitary system is that it tends to make government','strong and stable','free of controversy','distant from the people','popular among the masses.','','','a','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-06-27 18:54:24'),(516,'The presidential system differs from the parliamentary system of government in that','the tenure of office of the president is limited','the principle of collective responsibility applies','executive and legislative powers are fused','powers of the three arms of government are merged.','','','a','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(517,'Which of the following advocates’ equitable distribution of wealth?','Plutocracy.','Capitalism.','Aristocracy.','Socialism.','','','d','','utme','2013',57,'Admin','2016-11-13 20:36:43','2020-06-29 05:08:52'),(518,'A constitution that is difficult to amend is','flexible','rigid','written','unwritten.','','','c','','utme','2013',66,'Admin','2016-11-13 20:36:43','2020-06-03 23:09:08'),(519,'Which of the following constitutions is more suitable for centralization of political power?','Flexible constitution.','Unwritten constitution.','Rigid constitution','Written constitution.','','','d','','utme','2013',68,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(520,'The act of transferring autonomous powers to subordinate agencies is','devolution','concentration','deconcentration','delegation.','','','a','','utme','2013',73,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(521,'Which of the following types of citizenship cannot be withdrawn?','Citizenship by naturalization.','Citizenship by conquest.','Citizenship by birth.','Honorary citizenship.','','','c','','utme','2013',51,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(522,'The right of citizens to vote is','adult suffrage','universal suffrage','nationality suffrage','electoral suffrage.','','','b','','utme','2013',63,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(523,'A political party is different from a pressure group in its','source of finance','objective','organization','strategy.','','','b','','utme','2013',57,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(524,'One of the functions of pressure groups is to','contest elections to serve the people','nominate the president','prepare the budget','articulate the opinion of their members.','','','d','','utme','2013',78,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(525,'Public opinion refers to the','aggregate of attitudes held by members of the national assembly','aggregate views of groups on particular government activities','views held by the president of a country','views of the Chief Justice of a country.','','','b','','utme','2013',65,'Admin','2016-11-13 20:36:43','2020-06-29 00:24:38'),(526,'The class that oversees the implementation of government decisions and policies is the','Administrative','Executive','Clerical','Technical.','','','b','','utme','2013',71,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(527,'The performance of ritual rites in the Yoruba empire is the responsibility of the','Oyo mesi','Aare-ona kakanfo','Oba','Ogboni.','','','d','','utme','2013',57,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(528,'Under the emirate system, the commander of the army is the','Alkali','Hakimi','Sarkin Fada','Madawaki.','','','d','','utme','2013',57,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(529,'The indirect rule system of administration was more successful in Northern Nigeria because','the people were mainly interested in being governed indirectly','of the existence of an organized structure in the area','the Europeans ensured that the farmlands of the natives were not confiscated','the natives showed little or no resistance.','','','b','','utme','2013',62,'Admin','2016-11-13 20:36:43','2020-06-02 05:37:14'),(530,'The earliest nationalist activities in Nigeria were spearheaded by','educated elites','trade unions','traditional rulers','political parties.','','','a','','utme','2013',56,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(531,'The first notable nationalist movement in West Africa was the','National Congress of British West Africa','West African Students Union','Nigeria Youth Movement','Aborigines Rights Protection Society.','','','a','','utme','2013',56,'Admin','2016-11-13 20:36:44','2020-06-04 07:43:17'),(532,'In Nigeria’s First Republic, the Prime Minister was both the','Head of government and a lawmaker','Head of State and Commander-in-Chief of the armed forces','Commander-in-Chief of the armed forces and Party leader','Head of State and Party leader.','','','a','','utme','2013',74,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(533,'Under the 1979 Constitution, statutory allocation of revenue to local government councils is the responsibility of the','Council of State','Houses of Assembly','National Economic Council','Federal Legislature.','','','d','','utme','2013',72,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(534,'Under Nigeria’s Second Republic, the Senate was under the leadership of','John Wash Pam','J. S. Tarka','Joseph Wayas','Godwin Ume-Ezeoke.','','','c','','utme','2013',73,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(535,'The Revenue Mobilization, Allocation and Fiscal Commission is statutorily empowered to determine the remuneration of','all civil servants','only elected representatives','political office holders','employees of public corporations.','','','a','','utme','2013',58,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(536,'The primary function of the Code of Conduct Bureau is to','ensure due process by public officers','ensure minimum standard of morality','retain custody of declarations','receive declaration of assets.','','','d','','utme','2013',70,'Admin','2016-11-13 20:36:44','2020-06-15 07:59:32'),(537,'The party system practiced in Nigeria’s Third Republic was','multi-party','two-party','zero-party','one-party.','','','b','','utme','2013',63,'Admin','2016-11-13 20:36:44','2020-06-29 05:40:22'),(538,'Nigeria adopted a federal system of government because of','the fear of domination of minorities','uneven development','the availability of limited resource','the adoption of a state religion.','','','a','','utme','2013',65,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(539,'The highest policy making body under the Gowon Regime was the','Federal Executive Council','Armed Forces Ruling Council','Provisional Ruling Council','Supreme Military Council.','','','d','','utme','2013',70,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(540,'Nigeria became a federation of thirty-six states during the era of','Yakubu Gowon','Ibrahim Babangida','Sani Abacha','Abdulsalami Abubakar.','','','d','','utme','2013',63,'Admin','2016-11-13 20:36:44','2020-06-29 05:08:52'),(541,'Which of the following headed the committee that recommended the suitability of Abuja as a new federal city?','Justice Akinola Aguda.','Justice Buba Ardo.','Justice Atanda Fatai Williams.','Justice Udo Udoma.','','','a','','utme','2013',70,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(542,'A public corporation is managed by','the board of directors','a minister','a general manager','the board of governors.','','','a','','utme','2013',66,'Admin','2016-11-13 20:36:44','2020-06-29 00:24:38'),(543,'A major source of revenue in the post -1976 local government in Nigeria is','the joint state-local government account','internally generated revenue','the federation account','grants and loans.','','','c','','utme','2013',64,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(544,'The Provisional Ruling Council was the highest ruling body during the regime of','Sani Abacha','Muhammadu Buhari','Ibrahim Babangida','Murtala Muhammed.','','','c','','utme','2013',62,'Admin','2016-11-13 20:36:44','2020-06-29 06:43:13'),(545,'Nigeria’s non-alignment policy in the sixties lacked real substance because of her','close ties with Britain','Afrocentric policy','poor economic potential','partnership with Asian countries.','','','a','','utme','2013',71,'Admin','2016-11-13 20:36:44','2020-06-29 06:43:13'),(546,'Under the Technical Aid Corps, Nigerian experts are deployed to','Asia, Africa and the Pacific','Africa, the Pacific and the Caribbean','Europe, South America and Asia','the Pacific, the Caribbean and Europe.','','','b','','utme','2013',61,'Admin','2016-11-13 20:36:44','2020-06-29 06:19:10'),(547,'The centre-piece of Nigeria’s foreign policy covers only','Asia','Europe','Africa','Latin America.','','','c','','utme','2013',56,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(548,'Which of the following countries pioneered the establishment of ECOWAS alongside Nigeria?','Cameroun.','Ghana.','Togo.','Algeria.','','','c','','utme','2013',61,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(549,'Nigeria’s role in the African Union was most prominent during the regime of','President Ibrahim Babangida','President Olusegun Obasanjo','President Shehu Shagari','President Umaru Yar’adua.','','','b','','utme','2013',51,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(550,'A representative of a Commonwealth country in another member state is known as','High Commissioner','Consul-General','Ambassador','Attaché.','','','a','','utme','2013',66,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(551,'The organ of UN that promotes voluntary co­operation among member states in diverse areas is the','Security Council','International Court of Justice','General Assembly','Economic and Social Council.','','','d','','utme','2013',64,'Admin','2016-11-13 20:36:44','2020-05-28 20:57:26'),(552,'The main representative body of the United Nations is the','Secretariat','Security Council','General Assembly','Trusteeship Council.','','','b','','utme','2013',68,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(553,'The AU differs from the OAU in having','no assembly of Heads of State','effective tools for decision enforcement.','no permanent headquarters','a minimum of divergent viewpoints','','','b','','utme','2013',69,'Admin','2016-11-13 20:36:44','2020-06-28 20:14:50'),(554,'OPEC has strong influence with the','IMF','EU','ADB','AU.','','','d','','utme','2013',70,'Admin','2016-11-13 20:36:44','2020-06-03 13:11:16'),(555,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','police, army, sovereignty custom.','','','c','','utme','2014',60,'Admin','2016-11-13 20:49:36','2020-06-15 03:13:34'),(556,'The process of taking part in political and public affairs can be termed political','recognition','culture','participation','socialization','','','d','','utme','2014',70,'Admin','2016-11-13 20:49:40','2020-05-28 20:57:42'),(557,'Membership of a society is','conventional','mandatory','voluntary','constitutional','','','c','','utme','2014',85,'Admin','2016-11-13 20:49:40','2020-07-02 08:04:50'),(558,'In a democratic political system, the political sovereign is usually the','constitution','political parties','electorate','legislature','','','c','','utme','2014',51,'Admin','2016-11-13 20:49:40','2020-06-08 22:11:22'),(559,'One basic feature of a monarchical form of government is that','separation of powers is absolute','members of the executive are elected','succession is through heredity','the ruler has a fixed tenure','','','c','','utme','2014',57,'Admin','2016-11-13 20:49:40','2020-05-28 20:53:51'),(560,'One main advantage of bicameral legislature is that it','makes for quick deliberation during emergencies','makes passage of bills easy','is less cumbersome to pass bills','is not easy to manipulate bills','','','d','','utme','2014',56,'Admin','2016-11-13 20:49:40','2020-05-28 20:57:21'),(561,'The court that has ultimate power to interprets the constitution is the','Supreme Court','Magistrate Court','High Court','Court of Appeal','','','a','','utme','2014',68,'Admin','2016-11-13 20:49:40','2020-06-26 22:08:23'),(562,'Unitary system of government is more suitable to a country','that is sparsely populated','that possesses a strong and modern army','with a robust and dynamic economy','with a relatively small area and a homogenous population','','','d','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-06-15 03:05:56'),(563,'An example of a country ruled by a constitutional monarch is','Uganda','Morocco','Italy','Libya','','','c','','utme','2014',63,'Admin','2016-11-13 20:49:40','2020-05-28 20:56:42'),(564,'The development of a classless society is the goal of','conservatism','feudalism','liberalism','maxims','','','d','','utme','2014',61,'Admin','2016-11-13 20:49:40','2020-06-08 06:39:30'),(565,'A flexible constitution is one which is','easily amended','popular with the legislators','known to all the citizens','written by the parliament','','','a','','utme','2014',57,'Admin','2016-11-13 20:49:40','2020-06-02 14:29:53'),(566,'Which of the following is a feature of checks and balances?','judicial precedent','Judicial immunity','Judicial review','Code of conduct','','','c','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-06-29 05:40:22'),(567,'Laws made by military governments at the state level are called','decrees','bye-laws','edicts','acts','','','a','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-06-29 06:43:13'),(568,'Citizenship is acquired by an alien through','registration','birth','conferment','naturalization','','','d','','utme','2014',56,'Admin','2016-11-13 20:49:40','2020-05-28 20:57:39'),(569,'The officer responsible for announcing the result of an election is known as','ballot officer','presiding office','returning officer','electoral officer','','','c','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-05-28 20:56:25'),(570,'The ultimate aim of political parties is to','implement people-oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','utme','2014',67,'Admin','2016-11-13 20:49:40','2020-06-03 23:09:08'),(571,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their members','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','utme','2014',59,'Admin','2016-11-13 20:49:40','2020-06-29 05:40:22'),(572,'Which of the following is not a dimension of public opinion?','Polling','Orientation','intensity','Substance','','','a','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-06-01 22:41:28'),(573,'The body that is responsible for the appointment, discipline, promotion and dismissal of civil servants is the','Ministry of Establishment','Bureau for Public Service Reforms','Civil Service Commission','Ministry of Labour and Productivity','','','c','','utme','2014',60,'Admin','2016-11-13 20:49:40','2020-05-28 20:57:43'),(574,'In the pre-colonial Hausa political system, the Madawaki performed the function of','Minister of Education','Minister of Defense','Minister of Interior','Minister of works','','','b','','utme','2014',53,'Admin','2016-11-13 20:49:40','2020-06-13 21:10:54'),(575,'In the Old Oyo Empire, the Ajele','ensured good governance of the districts','mobilized the army','was the Head of the army','ensured the safety of all trade routes','','','a','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-06-13 21:10:54'),(576,'The General Strike of 1945 was caused primarily by the','harshness in trade laws as it concerns the Africans','government’s rejection of a demand for an increase of 50 percent in the cost of living allowance','persistent implementation of discriminatory laws','disparity in the criteria for employment','','','a','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-06-13 21:10:54'),(577,'Before 1945, the component units of Nigeria were','districts','provinces','states','regions','','','b','','utme','2014',51,'Admin','2016-11-13 20:49:41','2020-06-19 20:41:22'),(578,'Nationalists agitation began in Nigeria with the','Lagos protest against water rate in 1908','introduction of indirect rule','annexation of Lagos in 1861','formation of West Africa Youth League','','','b','','utme','2014',47,'Admin','2016-11-13 20:49:41','2020-05-28 20:57:06'),(579,'The emergence of nationalism was essentially the result of the ills of','independence','slavery','colonialism','imperialism','','','c','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-06-29 05:40:22'),(580,'Which of the following nationalists was the founder of Nigeria’s first political party?','Abubakar Tafawa Balewa','Ahmadu Bello','Nnamdi Azikiwe','Herbert Macaulay','','','d','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-05-28 20:56:39'),(581,'The division of powers between the federal and regional governments into exclusive, concurrent and residual lists was done by the','1999 Constitution','Independence Constitution','Republican Constitution','1979 Constitution','','','b','','utme','2014',55,'Admin','2016-11-13 20:49:41','2020-05-28 20:56:47'),(582,'The Nigerian Independence Constitution was modified by the','1963 Constitution','1999 Constitution','1989 Constitution','1979 Constitution','','','a','','utme','2014',64,'Admin','2016-11-13 20:49:41','2020-06-10 19:55:35'),(583,'The President of Nigeria was indirectly elected through secret ballot for a period of five years by the senate in','1983','1960','1963','1979','','','c','','utme','2014',45,'Admin','2016-11-13 20:49:41','2020-06-03 10:19:19'),(584,'The main function of the Federal Character Commission in Nigeria is','ensuring fair representation of all states in the public service','reviewing unfair administrative decisions','settling disputes among societies','providing free social services to the citizens','','','a','','utme','2014',50,'Admin','2016-11-13 20:49:41','2020-05-28 20:57:44'),(585,'The power of appointing the chairman of the Independent National Electoral Commission is vested in the','Judicial Council','Council of State','President','Senate','','','c','','utme','2014',61,'Admin','2016-11-13 20:49:41','2020-06-28 19:50:01'),(586,'The NCNC and the NPC facilitated the creation of the','Mid-West Region','Northern Region','Western Region','Eastern Region','','','a','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-05-28 20:56:07'),(587,'One of the major problems of Nigerian federalism is','lack of revenue to cater for the demands of the federation','inadequate manpower to fill vacancies','imbalance in the structure and sizes of units of federation','pre-colonial administrative structure among the units of federation','','','c','','utme','2014',54,'Admin','2016-11-13 20:49:41','2020-06-26 22:08:23'),(588,'Which of the following was done during the Gowon administration to reduce regional structural imbalance in the federation?','Appointment of ministers','Creation of states','Increase in revenue allocation','Formation of political parties','','','b','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-06-01 15:56:28'),(589,'A problem of public corporations in Nigeria is','choice of leadership','public control','emphasis on subsidies','wastage of resources','','','d','','utme','2014',65,'Admin','2016-11-13 20:49:41','2020-06-01 21:20:10'),(590,'One feature of public corporations that was weakened by privatization is','social control','national integration','social harmony','government control','','','d','','utme','2014',62,'Admin','2016-11-13 20:49:41','2020-06-15 03:05:56'),(591,'One of the main duties of the Local Government Service Commission is to','supervise and manage the personnel of local governments','conduct election into Local Council','create an enabling working environment for council workers','handle requests for the creation of more local governments','','','a','','utme','2014',68,'Admin','2016-11-13 20:49:41','2020-06-28 19:50:01'),(592,'The option A4 model was used in the conduct of the','2007 elections','1983 elections','1993 elections','1999 elections','','','c','','utme','2014',61,'Admin','2016-11-13 20:49:41','2020-06-29 05:40:22'),(593,'The review of Nigeria foreign policy under the Murtala/Obasanjo regime was done by','Udoji Committee','Aboyade Committee','Adedeji Commission','Philips Commission','','','c','','utme','2014',51,'Admin','2016-11-13 20:49:41','2020-06-01 19:18:32'),(594,'Which of the following is a guiding principle of Nigeria’s foreign policy?','Total opposition to the Cold War','Posting of only carrier diplomats as envoys','Interference in the affairs of African countries','Decolonization of all African states','','','d','','utme','2014',69,'Admin','2016-11-13 20:49:41','2020-06-01 18:18:05'),(595,'The Technical Aids Corps was established during the regime of','Olusegun Obasanjo','Sani Abacha','Ibrahim Babangida','Muhanmmadu Buhari','','','a','','utme','2014',56,'Admin','2016-11-13 20:49:41','2020-06-29 05:40:22'),(596,'The granting of asylum to Charles Taylor by Nigeria was to','protect Nigerians in Liberia','promote peace in Liberia','defy the western powers','Control Liberia','','','b','','utme','2014',60,'Admin','2016-11-13 20:49:41','2020-06-08 06:39:30'),(597,'Nigeria is regarded as a frontline state because she','sent policemen for peacekeeping in Namibia','assisted the liberation struggle in Southern Africa','assisted ECOMOG troops in Liberia','sent troops for peacekeeping Somalia.','','','b','','utme','2014',53,'Admin','2016-11-13 20:49:41','2020-06-02 23:25:45'),(598,'The reason behind Nigeria’s suspension from the Commonwealth in 1995 was','legal','political','economic','socio-cultural','','','b','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-06-10 10:46:02'),(599,'Commonwealth nations are represented in other member nations by','charge d’ affaires','ambassadors','high commissioners','attaches','','','c','','utme','2014',63,'Admin','2016-11-13 20:49:41','2020-06-02 15:56:37'),(600,'The UN succeeded the','Warsaw Pact','NATO','SEATO','League of Nations','','','d','','utme','2014',70,'Admin','2016-11-13 20:49:41','2020-06-07 16:51:55'),(601,'The number of permanent members of the UN Security Council is','eight','five','six','seven','','','b','','utme','2014',55,'Admin','2016-11-13 20:49:41','2020-06-03 11:04:32'),(602,'The Secretary General of the OAU holds office for a renewable period of','six years','three years','four years','five years','','','c','','utme','2014',64,'Admin','2016-11-13 20:49:41','2020-05-28 20:57:13'),(603,'Former colonies of Britain belong to the association known as','OECD','NATO','European Union','Commonwealth','','','d','','utme','2014',52,'Admin','2016-11-13 20:49:41','2020-06-08 06:58:20'),(604,'Government refers to all the following, except','an institution of the state','the process of ruling a political community','the exercise of power and authority','the act of civil disobedience.','','','d','','wassce','1988',47,'Admin','2016-11-13 21:14:25','2020-05-30 17:36:31'),(605,'Government as the act of governing means the','activities of pressure groups and political parties','act of vetoing a bill','orders of judiciary and legislature','activities by which governmental policies are made and implemented','','','d','','wassce','1988',62,'Admin','2016-11-13 21:14:26','2020-06-11 01:05:51'),(606,'Unwritten constitution means that the constitution is','not written down','based only on conventions.','not contained in any single book','in draft','','','c','','wassce','1988',49,'Admin','2016-11-13 21:14:26','2020-06-08 22:20:25'),(607,'The delegation of Administrative Powers to the local units with the central supervision and control is called.','devolution','decentralization','deconcentration','centralization','','','a','','wassce','1988',81,'Admin','2016-11-13 21:14:26','2020-06-04 05:15:45'),(608,'Which of the following is not the function of the government?','Building of roads, bridges, canals, etc.','Provision of education.','Maintenance of relations with other states.','Provision of all the material needs of all citizens.','','','d','','wassce','1988',64,'Admin','2016-11-13 21:14:26','2020-06-29 05:40:22'),(609,'A flexible constitution can only be amended by','two-third (2/3) majority vote in the legislature.','referendum.','three-quarter (3/4) majority vote in the legislature.','simple majority vote in the legislature.','','','d','','wassce','1988',30,'Admin','2016-11-13 21:14:26','2020-05-28 20:54:27'),(610,'Which one of the following countries has an unwritten constitution?','Great Britain','France','United States of America','Federal Republic of Germany','','','a','','wassce','1988',64,'Admin','2016-11-13 21:14:26','2020-06-09 11:20:18'),(611,'A rigid constitution is said to be best suited for a','Federal Government','Socialist','Military Government','Unitary Government','','','a','','wassce','1988',52,'Admin','2016-11-13 21:14:26','2020-06-28 20:24:18'),(612,'Federal Election were held in Nigeria in','1946, 1951, 1954, 1979 and 1983','1954, 1959, 1964, 1979 and 1983.','1923, 1946, 1951, 1979 and 1983','1954, 1960, 1964, 1979 and 1983','','','b','','wassce','1988',55,'Admin','2016-11-13 21:14:26','2020-06-07 16:13:37'),(613,'The two components of sovereignty are','the rule of law and fundamental human rights.','political power and political authority','political culture and political socialization.','political independence and supreme authority of the state within its territory.','','','d','','wassce','1988',40,'Admin','2016-11-13 21:14:26','2020-06-26 22:08:23'),(614,'Nigeria broke diplomatic relations with Israel in 1973 because of Israeli.','recognition of Biafra.','occupation of Egyptian territory','refusal to give aid to Nigeria.','economic relations with South Africa.','','','b','','wassce','1988',57,'Admin','2016-11-13 21:14:26','2020-06-04 07:18:21'),(615,'The United Nations Organization [UNO] has its headquarters in','Britain','USSR','USA','China','','','c','','wassce','1988',52,'Admin','2016-11-13 21:14:26','2020-05-28 20:55:14'),(616,'The state is different from the government because','The state unlike the government is permanent','.\\nThe government is made up of powerful people.','Members of the government are elected.','The state is created by God.','','','a','','wassce','1988',43,'Admin','2016-11-13 21:14:26','2020-05-28 20:57:01'),(617,'A state is a special form of human association because it','has a legitimate monopoly of life and death penalties over its citizens','is the richest association in society.','has a constitution approved by the citizens','can punish law breakers','','','a','','wassce','1988',47,'Admin','2016-11-13 21:14:26','2020-05-28 20:57:14'),(618,'Which of the following is not relevant to communism','Democracy','Violent revolution','Friedrich Engels','Private Enterprise.','','','d','','wassce','1988',41,'Admin','2016-11-13 21:14:26','2020-06-11 01:05:51'),(619,'A Nigeria citizen can only be deprived of his citizenship if he is','condemned to death.','convicted by a Court of law','married to a foreigner','holding a dual citizenship.','','','d','','wassce','1988',50,'Admin','2016-11-13 21:14:26','2020-06-01 19:18:32'),(620,'In the process of governing. OUTPUT refers to','the influence of pressure group','demand of the political system','the decision of the government.','the opinion of the electorate','','','d','','wassce','1988',41,'Admin','2016-11-13 21:14:26','2020-05-04 18:56:46'),(621,'Another word for red-tapism is','democracy','autocracy','idiosyncrasy.','bureaucracy','','','d','','wassce','1988',46,'Admin','2016-11-13 21:14:27','2020-06-15 03:13:34'),(622,'Rule adjudication is the main function of the','Executive','President','legislature','judiciary','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-06-17 21:32:41'),(623,'The major problem that arose from the 1979 election centred around the','inability of many voters to find their names on the voters register','cancellation of election results in many constituencies because of alleged irregularities','inability of some dissatisfied candidates to seek redress in the Court of law.','controversy over the presidential election result.','','','d','','wassce','1988',59,'Admin','2016-11-13 21:14:27','2020-06-15 03:13:34'),(624,'The following are the key factors which influence Nigeria’s foreign relations except','peaceful co-existence','economic dependence.','non-interference','respect for territorial integrity.','','','b','','wassce','1988',43,'Admin','2016-11-13 21:14:27','2020-06-28 13:05:03'),(625,'The independent of Nigeria was in 1945 with the coming to power in Britain of','Conservative party','Tory party','Liberal party','Labour party','','','d','','wassce','1988',56,'Admin','2016-11-13 21:14:27','2020-05-28 20:56:13'),(626,'Which of the following is not an accepted way of resolving international conflict','Diplomacy.','Non-military use of force.','Propaganda','Nuclear war.','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-06-08 19:25:57'),(627,'The membership of the Council of States in Nigeria is made up of','Federal Ministers','State commissioners','State governors','the State Governors and the Head of State.','','','d','','wassce','1988',42,'Admin','2016-11-13 21:14:27','2020-06-29 05:40:22'),(628,'The common wealth is','an economic organization','made up of all independent ex-colonies of Britain','made up of all countries who are friendly with Britain.','made up of independent European countries.','','','b','','wassce','1988',56,'Admin','2016-11-13 21:14:27','2020-06-03 23:07:15'),(629,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known as the','Bales','Obas','Ogboni','Oyomesi.','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:27','2020-06-26 22:08:23'),(630,'The declaration of a state of emergency in Western Nigeria was protected by the constitution of','1954','1951','1960','1963','','','d','','wassce','1988',52,'Admin','2016-11-13 21:14:27','2020-05-28 20:57:29'),(631,'The primary purpose of the state is to','establish a system of law and order','train people to become good citizens','cater for all the needs of the citizens','ensure the self sufficiency of its people','','','a','','wassce','1988',44,'Admin','2016-11-13 21:14:27','2020-05-28 20:57:13'),(632,'The Armed Forces Ruling Council came into existence under the','Buhari Administration','Gowon  Administration','Ironsi Administration','Babangida Administration','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-06-15 03:05:56'),(633,'Which of the following is not a specialized agency of the United Nations Organization?','World Health Organization','The Food and Agriculture Organization','The international Labour Organization','General Assembly','','','d','','wassce','1988',72,'Admin','2016-11-13 21:14:27','2020-06-29 05:08:52'),(634,'The creation of the office of the Prime Minister in Nigeria was accomplished in','1951','1954','1957','1959','','','c','','wassce','1988',44,'Admin','2016-11-13 21:14:27','2020-06-02 03:30:59'),(635,'Which of the following is not a function of a party secretariat?','Electing the leader of the party','Organizing party conferences','Publishing the party’s manifesto','Planning party strategy to win election','','','a','','wassce','1988',49,'Admin','2016-11-13 21:14:27','2020-06-03 20:01:34'),(636,'The first Military President of Nigeria is','Lt. General Olusegun Obasanjo','Major General J.T.U. Aguiyi-Ironsi','Major General Ibrahim Babangida','General Murtala Muhammed','','','c','','wassce','1988',47,'Admin','2016-11-13 21:14:27','2020-06-29 05:40:22'),(637,'The following factors favoured the introduction of indirect rule in Nigeria except the','Shortage of manpower','Shortage of funds','Existence of a system of taxation','Existence of educated elites','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:27','2020-06-04 11:53:53'),(638,'The psychological support a regime gets from its citizens. If they believe the regime is right and ought to be obeyed is known as','Sovereignty','power','authority','legitimacy','','','d','','wassce','1988',38,'Admin','2016-11-13 21:14:27','2020-06-07 23:48:24'),(639,'The voluntary activities of members of a society in the selection of rulers is known as','political participation','political socialization','political decision','political culture','','','a','','wassce','1988',52,'Admin','2016-11-13 21:14:27','2020-05-28 20:57:40'),(640,'Residual powers under the Nigerian independence constitution were the powers exercised by','the Federal Government','the Regional Governments','the Local Government','both the Federal and Regional Governments','','','b','','wassce','1988',54,'Admin','2016-11-13 21:14:27','2020-06-29 00:24:38'),(641,'The highest court of appeal under the Republican constitution of Nigeria was the','Federal High Court','Judicial Committee of the Privy Council','Regional court of Appeal','Supreme Court','','','d','','wassce','1988',42,'Admin','2016-11-13 21:14:27','2020-05-28 20:56:18'),(642,'Nigeria became a federation of 19 states in','1875','1976','1967','1978','','','b','','wassce','1988',47,'Admin','2016-11-13 21:14:27','2020-05-28 20:56:07'),(643,'A popular form of proportional representation is','communal representation','single transferable vote','the alternative vote','the second ballot','','','a','','wassce','1988',52,'Admin','2016-11-13 21:14:27','2020-06-26 22:08:23'),(644,'A political concept that is composed of the attitudes, beliefs, emotions and values of a society is called political','culture','single transferable vote','authority','socialization','','','a','','wassce','1988',58,'Admin','2016-11-13 21:14:28','2020-06-15 03:05:56'),(645,'flexible constitution is advantageous because it','guarantees political stability','prevents the passing of hasty bills by the legislature','can cope with emergency periods','allows for continuity','','','c','','wassce','1988',51,'Admin','2016-11-13 21:14:28','2020-05-28 20:54:10'),(646,'The Economic community of West Africa state (E.C.O.W.A.S) is','an economic association','a political association','a cultural association','a social association','','','a','','wassce','1988',48,'Admin','2016-11-13 21:14:28','2020-06-11 00:27:36'),(647,'Which of the following is not an aim of the Organization of African Unity (O.A.U)','Promotion of unity and solidarity among African states','Co-operation of efforts to achieve a better life for the African people','Defense of the sovereignty and independence of African state','Enthronement of democratic governments in Africa.','','','d','','wassce','1988',46,'Admin','2016-11-13 21:14:28','2020-05-28 20:57:26'),(648,'It is the duty of a government to perform all the following functions, except','Preventing internal disorder','Ensuring security of life and property','Providing basic welfare services','Providing all the needs of its citizens','','','d','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-05-28 20:57:31'),(649,'Which of the following concepts is out of place?','Fascism','Welfarism','Totalitarianism','Authoritarianism','','','b','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-06-04 02:27:47'),(650,'The primary objective of all political parties is to','Promote the general interest of members of the public','Eradicate corruption in public life','Control the government','Campaign for vote','','','c','','wassce','1988',40,'Admin','2016-11-13 21:14:28','2020-06-09 18:23:25'),(651,'The French policy of Assimilation','was a device to transfer technology to Africa','was the same in theory as the British policy of indirect rule','was aimed at converting Africans to Frenchmen','enabled the French to stay in Africa','','','c','','wassce','1988',51,'Admin','2016-11-13 21:14:28','2020-06-03 13:35:42'),(652,'Military Governors were members of the Supreme Military Council under the','Murtala Mohammed Regime','Yakubu Gowon Regime','Ibrahim Babangida Regime','Olusegun Obasanjo Regime','','','b','','wassce','1988',46,'Admin','2016-11-13 21:14:28','2020-06-28 19:54:32'),(653,'The use of forced labour was one of the features of','British colonial policy','French colonial policy','American colonial policy','Divide and rule policy','','','b','','wassce','1988',59,'Admin','2016-11-13 21:14:28','2020-06-29 05:40:22'),(654,'The controversy over the 1979 Presidential election result was','over the dispute on the conduct of the election','because educated Nigerians did not approve who received the number of votes','due to the interpretation of ¼   of the vote cast in 2/3 of all the states in the Federation.','because the winning candidate did not pay his taxes as and when due in the past three years.','','','c','','wassce','1988',65,'Admin','2016-11-13 21:14:28','2020-06-08 06:39:30'),(655,'All the following were frontline fighters for Nigeria’s Independence except','Obafemi Awolowo','Nnamdi Azikiwe','Lateef Jakande','Amino Kano','','','c','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-05-28 20:56:14'),(656,'It is argued that most of the new States of Africa cannot remain faithful to the doctrines of non-alignment mainly because of','corruption','ethnic problems','bad leadership','poor economy','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:28','2020-06-03 13:35:42'),(657,'The first political party in Nigeria was','National Council of Nigerian Citizens (N.C.N.C)','Nigerian National Democratic Party (N.N.D.P)','Action group (A. G)','Northern Peoples Congress (N.P.C)','','','b','','wassce','1988',49,'Admin','2016-11-13 21:14:28','2020-06-08 19:25:57'),(658,'To which of these countries did Nigeria send peacekeeping force?','South Africa','Angola','Chad','Namibia','','','c','','wassce','1988',54,'Admin','2016-11-13 21:14:28','2020-06-04 07:18:21'),(659,'In the federation, the purpose of enumerating the powers of the central government is to','ensure efficient administration','ensure greater unity','reduce the financial burden of the units','limit its powers against those of the units','','','d','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-06-01 16:22:10'),(660,'The ultimate aim of a communist system of government is \tthe distribution of goods and services according to','age','qualification','party loyalty','need, want and ability','','','d','','wassce','1988',63,'Admin','2016-11-13 21:14:28','2020-06-09 11:20:18'),(661,'Under what system of government does the state require ownership and control of the means of production for its use in benefiting the population?','Capitalism','Socialism','Feudalism','Welfarism','','','b','','wassce','1988',51,'Admin','2016-11-13 21:14:28','2020-06-08 06:39:30'),(662,'The question of civil war was raised for the first time at the \tmeeting of the O.A.U in September 1967 in','Kampala','Addis Ababa','Lagos','Kinshasa','','','d','','wassce','1988',51,'Admin','2016-11-13 21:14:28','2020-05-28 20:54:51'),(663,'Nigeria objected to the discussion of the civil war in the O.A. U. summit on the grounds that','it amount to interference in its internal affairs','some African countries recognized Biafra','Tanzania and Ivory Coast recognized Biafra','the resolution of the conflict was difficult','','','a','','wassce','1988',45,'Admin','2016-11-13 21:14:28','2020-06-15 07:59:32'),(664,'Government is the machinery established to manage the affairs of','rulers','aliens','the civil service','the state','','','d','','wassce','1989',58,'Admin','2016-11-13 21:30:41','2020-05-28 20:56:36'),(665,'The judicial organ of government is the body which','implements the law','makes the law','punishes lawmakers','interprets the law','','','d','','wassce','1989',52,'Admin','2016-11-13 21:30:42','2020-06-02 19:43:39'),(666,'Which of the following is a false description of the first Nigeria Prime Minister? He','was first among equals','presided over the cabinet','was the Head of Government','exercised the prerogative of mercy','','','d','','wassce','1989',57,'Admin','2016-11-13 21:30:42','2020-06-03 11:04:32'),(667,'The twelve state structure was created in Nigeria in','1965','1966','1967','1974','','','c','','wassce','1989',55,'Admin','2016-11-13 21:30:42','2020-05-28 20:56:09'),(668,'The laws which the state legislators make normally pass through','the commissioner','the process of deliberations','the judiciary','some committees in the civil service','','','b','','wassce','1989',77,'Admin','2016-11-13 21:30:42','2020-07-02 06:42:32'),(669,'In the parliamentary system of government, ministers are','chosen from the House as well as outside','collectively responsible to parliament','representatives of various interests in the country','not members of the legislature','','','b','','wassce','1989',61,'Admin','2016-11-13 21:30:42','2020-06-26 22:08:23'),(670,'Any type of restricted franchise is a violation of principle of','constitutionalism','sovereignty','political equally','popular election','','','c','','wassce','1989',45,'Admin','2016-11-13 21:30:42','2020-05-28 20:56:10'),(671,'Which of the following is not the responsibility of the Electoral Commission in Nigeria?','Swearing in of members of the House of Assembly','Counting and publication of election results','delimitation of constituencies','Compilation of electoral register','','','a','','wassce','1989',56,'Admin','2016-11-13 21:30:42','2020-06-30 15:24:32'),(672,'Which of the following is not civic obligation of a citizen?','Obedience to law','payment of taxes','voting during elections','freedom of conscience and religion','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:42','2020-06-02 21:58:30'),(673,'The study of Government offers an individual all the following, except a','knowledge of his rights and duties','training in good citizenship','knowledge of the processes of government','training to become a judge','','','d','','wassce','1989',55,'Admin','2016-11-13 21:30:42','2020-06-08 00:19:55'),(674,'Voting started in Nigeria in 1923 because the Clifford Constitution of 1922 granted','decolonization','independence','an elective principle','self-government','','','c','','wassce','1989',59,'Admin','2016-11-13 21:30:42','2020-05-28 20:57:14'),(675,'The organ of the UNO which can impose mandatory sanctions on any of its members is the','International Court of Justice','Economic and Social Council','General Assembly','Security Council','','','d','','wassce','1989',53,'Admin','2016-11-13 21:30:42','2020-05-28 20:54:50'),(676,'A unified - local government system was adopted in Nigeria under the','Tafawa Balewa administration','Yakubu Gowon administration','Shehu Shagari administration','Murtala / Obasanjo administration','','','d','','wassce','1989',53,'Admin','2016-11-13 21:30:42','2020-05-28 20:57:39'),(677,'The two parties which formed the coalition government in 1959 were the','NPC and the NCNC','NCNC and the AG','NPC and the NNA','PRP and the UPGA','','','a','','wassce','1989',52,'Admin','2016-11-13 21:30:42','2020-06-03 20:01:34'),(678,'Which of the following is not written into independence constitution of 1960?','Fundamental human rights','Exclusive powers','Concurrent list','Role of political parties','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-06-08 06:31:49'),(679,'The process of depriving persons of the right of voting is known as','enfranchisement','disqualification','dismissal','disenfranchisement','','','d','','wassce','1989',45,'Admin','2016-11-13 21:30:42','2020-06-03 23:45:22'),(680,'The predominant influence of Northern Nigeria in the First Republic violated the federal principle of','effective co-operation among the constituent units','geographical contiguity','unity','absence of marked inequalities among the component units','','','d','','wassce','1989',52,'Admin','2016-11-13 21:30:42','2020-06-29 05:08:52'),(681,'Bicameralism refers to','a one chamber legislature','the process of voting in the legislature','the upper chamber in a legislature','a two-chamber legislature','','','d','','wassce','1989',58,'Admin','2016-11-13 21:30:43','2020-05-28 20:57:30'),(682,'The head of state under the independence constitution of Nigeria was','an absolute monarch','a constitution monarch','imposed by the British','invested with executive power','','','b','','wassce','1989',51,'Admin','2016-11-13 21:30:43','2020-06-11 01:05:51'),(683,'The principle of separation of powers implies that the three main organs of government work','separately','independently but co-operatively','against one another','reluctantly and gradually for the executive','','','b','','wassce','1989',44,'Admin','2016-11-13 21:30:43','2020-06-08 19:25:57'),(684,'The emergency powers conferred on the Federal Government under the independence constitution was first exercised in the','Western Region','Mid-Western Region','Eastern Region','Northern Region','','','a','','wassce','1989',44,'Admin','2016-11-13 21:30:43','2020-06-29 05:05:38'),(685,'A sovereign state in one','whose constitution can only be changed by a military government','where its citizens can speak without fear or favour','in which sovereignty is invested in the military','whose government decisions are made independent of foreign interference','','','d','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-06-29 05:40:22'),(686,'Which of the following is not a component of political culture?','Attitudes','Beliefs','Emotions','Age','','','d','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-06-01 19:18:32'),(687,'Representative democracy is characterized by','free election and proper register of voters','unlimited expenditure of political parties','a politically educated electorate','representation of the poor only','','','a','','wassce','1989',51,'Admin','2016-11-13 21:30:43','2020-06-26 22:08:23'),(688,'The ratification of the appointment and dismissal of an Emir in the pre-colonial Fulani Empire was done by the','Empire of Lafiagi and the Etsu of pategi','Emirs of Kano and Katsina','Emirs of Gwandu and Sokoto','Emir of llorin','','','c','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-10 19:55:35'),(689,'The primary function of a legislature is the','appointment of the president','making of laws','voting of bills','monitoring of the judiciary','','','b','','wassce','1989',45,'Admin','2016-11-13 21:30:43','2020-06-03 20:01:34'),(690,'Which of the following title among the Igbos in the pre-colonial era required substantial wealth before one could acquire it','Ofo','Okpara','Ozo','Eze','','','c','','wassce','1989',51,'Admin','2016-11-13 21:30:43','2020-06-29 06:43:13'),(691,'According to Marxist theory, those who own and control the means of production in a capitalist society are','exploiters','colonialists','workers','bourgeoisie','','','d','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-03 12:38:14'),(692,'The head of the Oyomesi in the old Oyo Empire was','Aremo','Are Onakakanfo','Olowo','Bashorun','','','d','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-05-28 20:54:20'),(693,'The head of the Nigerian Mission to the Commonwealth of Nations is','an Ambassador','a Consular','the Minister of External Affairs','a High Commissioner','','','d','','wassce','1989',51,'Admin','2016-11-13 21:30:43','2020-05-28 20:55:52'),(694,'While political parties aim at forming a government, pressure groups aim at','imposing a military rule','causing social unrest','influencing government decisions','controlling a nation’s economy','','','c','','wassce','1989',52,'Admin','2016-11-13 21:30:43','2020-06-29 05:05:38'),(695,'Nigeria does not maintain diplomatic relations with South Africa because of the latter’s','industrial policy','apartheid policy','foreign policy','agricultural policy','','','b','','wassce','1989',44,'Admin','2016-11-13 21:30:43','2020-06-04 03:05:30'),(696,'Which of the following countries does not operate a federal constitution?','USA','Canada','Nigeria','France','','','d','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-06-26 22:08:23'),(697,'Socialism developed as a protest against the evils of','monarchy','oligarchy','feudalism','capitalism','','','d','','wassce','1989',50,'Admin','2016-11-13 21:30:43','2020-05-28 20:56:43'),(698,'The major advantage of the secret ballot is that','it is faster than other systems','nobody can be prevented from voting','it ensures the anonymity of each voter','losers can ask for another secret vote','','','c','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-06-26 22:08:23'),(699,'One of the first action of military governments when they take over power in Nigeria is to','detain all the politicians','appoint new ministers and commissioners','tour the country to explain why they have taken over','suspend the constitution','','','d','','wassce','1989',45,'Admin','2016-11-13 21:30:43','2020-06-08 22:11:22'),(700,'A parliamentary-cabinet system of government is practiced in','Canada','Nigeria','the Soviet Union','all European countries','','','a','','wassce','1989',56,'Admin','2016-11-13 21:30:43','2020-06-15 03:13:34'),(701,'Foreign policy refers to','a policy made by a foreign country','a policy made by a country for foreigners','a policy made by a country when it is at war','the general principles which govern a state’s international behaviour','','','d','','wassce','1989',75,'Admin','2016-11-13 21:30:43','2020-06-07 16:20:36'),(702,'The constitution of the Federal Republic of Nigeria','promotes unity in diversity','allows for the dominance of the minority ethnic groups','concentrates governmental power at one level of government','advances the interest of the rich','','','a','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-06-29 05:40:22'),(703,'Which of the following is not an objective in foreign policy?','Prestige','Large population','Territorial integrity','Survival','','','b','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-29 00:24:38'),(704,'The principle of anonymity of civil servants means that they are','career officers','not the servants of a particular government','trained for the duties they perform','not credited or blamed for anything they do','','','d','','wassce','1989',62,'Admin','2016-11-13 21:30:43','2020-05-28 20:57:21'),(705,'During the 1964 Federal elections there was a total boycott of voting in','the Western Region','Lagos','the Northern Region','the Eastern Region','','','d','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-05-28 20:57:10'),(706,'Which of the following is not a pressure group? The','Nigerian Farmers’ Council','Nigerian Union of Teachers','National Party of Nigeria','Academic Staff Union of Universities','','','c','','wassce','1989',38,'Admin','2016-11-13 21:30:43','2020-06-28 20:24:18'),(707,'Which of the following is not a public corporation? The','Nigerian Ports Authority','National Sports Commission','National Youth Service Corps','Nigerian Railway Corporation','','','c','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-28 19:59:00'),(708,'Which of the following is not an academic discipline in which a student of Government can specialize','Public Administration','Local Government','Political Territory','Public Education','','','d','','wassce','1989',50,'Admin','2016-11-13 21:30:43','2020-06-02 04:01:57'),(709,'The Republican Constitution of 1963 was indigenous because it was approved by','a referendum','the representatives of the people in parliament','the British parliament','the colonial government','','','b','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-02 23:25:45'),(710,'Local government reforms were carried out by the Federal Military Government in','1966','1967','1970','1976','','','d','','wassce','1989',46,'Admin','2016-11-13 21:30:44','2020-05-28 20:56:30'),(711,'With which country did Nigeria break diplomatic relations in 1963 for exploding a nuclear device in the Sahara?','The Soviet Union','The U.S.A','China','France','','','d','','wassce','1989',56,'Admin','2016-11-13 21:30:44','2020-05-28 20:57:37'),(712,'The first political party in Nigeria was formed after the introduction of the','Richard constitution','Clifford constitution','Bourdillon constitution','Macpherson constitution','','','b','','wassce','1989',52,'Admin','2016-11-13 21:30:44','2020-05-28 20:53:42'),(713,'Which of the following did not formally recognize Biafra’ as an independent state?','Sierra Leone','Tanzania','Gabon','Zambia','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:44','2020-06-26 22:08:23'),(714,'When there is a conflict between the regional and federal laws under the concurrent legislative list, the','Federal laws would prevail','Federal laws would be declared null and void','regional laws would prevail','Head of State would settle the conflict','','','a','','wassce','1989',49,'Admin','2016-11-13 21:30:44','2020-06-29 05:40:22'),(715,'Nigeria hosted the meeting of Commonwealth Heads of State in','1965','1966','1967','1968','','','b','','wassce','1989',45,'Admin','2016-11-13 21:30:44','2020-05-28 20:57:09'),(716,'A fascist regime is both','representative and accountable','responsive and responsible','fair and legitimate','authoritarian and totalitarian','','','d','','wassce','1989',49,'Admin','2016-11-13 21:30:44','2020-05-28 20:56:49'),(717,'Which of the following is not a function of the Secretary-General of the United Nations Organization?','Supervising the Secretariat','Interpreting the treaties','Alerting the Security Council on any matter that may threaten international peace','Making annual report','','','b','','wassce','1989',46,'Admin','2016-11-13 21:30:44','2020-06-03 10:19:19'),(718,'Capitalism often encourages','Private ownership of the means of production','Deconcentration of political and economic powers in the same hands','A centrally planned economy','Public ownership of all forms enterprises','','','a','','wassce','1989',54,'Admin','2016-11-13 21:30:44','2020-06-28 19:50:01'),(719,'Which of the following African countries has diplomatic relations with South Africa?','Malawi','Zambia','Gabon','Tanzania','','','a','','wassce','1989',56,'Admin','2016-11-13 21:30:44','2020-05-28 20:57:40'),(720,'Citizens who are legally qualified to vote form','Political parties','A Trade Union Congress','Members of the House of House Assembly','The electorate','','','d','','wassce','1989',50,'Admin','2016-11-13 21:30:44','2020-06-01 16:14:00'),(721,'Election among candidates from the same party before the final elections are called','Primaries','Running Mates','Second ballots','Party conventions','','','a','','wassce','1989',56,'Admin','2016-11-13 21:30:44','2020-06-15 07:59:32'),(722,'Which of the following countries is not a member of the Economic Community of West African States (ECOWAS)?','Nigeria','Cameroun','Ghana','Togo','','','b','','wassce','1989',45,'Admin','2016-11-13 21:30:44','2020-06-03 13:35:42'),(723,'The international organization formed after the Second World War to guarantee international peace and security is the','World Bank','United Nations Organization','League of Nations','British Commonwealth of Nations','','','b','','wassce','1989',59,'Admin','2016-11-13 21:30:44','2020-06-23 13:39:31');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `history` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `history` VALUES (1,'Islam was introduced in Northern Nigeria  ','before the 13th century  ','in the 17th century  ','in the 19th century  ','in the 18th century ','','','a','','posr-utme-aaua','2013',562,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(2,'Lagos became the crown colony in  ','1914','1861','1886','29-Mar-05','','','c','','posr-utme-aaua','2013',561,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(3,'In the pre-colonial Igbo political system, which of the following was the most democratic organ of government','The Umand ','Eze  ','Isu  ','Ohanaeze','','','d','','posr-utme-aaua','2013',588,'Admin','0000-00-00 00:00:00','2020-06-28 17:08:11'),(4,'A historical feature of the legislative council that met in 1923 was that for the first time it  ','included the official members who were Nigerians  ','included only British officials  ','included elected African members ','acted in a deliberative capacity  ','','','d','','posr-utme-aaua','2013',584,'Admin','0000-00-00 00:00:00','2020-06-24 18:59:22'),(5,'When was the emirate system of administration introduced in Northern Nigeria? ','19th century ','20th century ','18th century  ','17th century ','','','c','','posr-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-06-29 18:06:41'),(6,'Pre-colonial Igbo society was  ','centralised ','acephalous','feudal  ','capitalist ','','','b','','posr-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(7,'The Colonial Administration in Nigeria was  ','Authoritarian','Democratic  ','A&B  ','None of the above ','','','a','','posr-utme-aaua','2013',574,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(8,'In the traditional Hausa-Fulani political system, political authority was vested in the  ','Emir  ','Talakawa  ','Alkali ','Emirate Council ','','','a','','posr-utme-aaua','2013',574,'Admin','0000-00-00 00:00:00','2020-06-27 17:55:17'),(9,'In the Oyo empire, the Alaafin was ','an absolute monarch  ','popularly elected  ','a constitutional  monarch ','worshipped as deity ','','','a','','posr-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-06-25 15:25:01'),(10,'The concept of Indirect Rule in Nigeria is usually associated with  ','Sir George T.  Goldie  ','Claude Macdonald  ','Lord Lugard  ','Consul Philip ','','','c','','posr-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-06-24 18:59:22'),(11,'The Lagos Colony and the Southern Protectorate of Nigeria were joined in the year ','1904','1906','1910','1914','','','b','','posr-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(12,'The Committee that recommended Abuja as the New Federal Capital was headed by  ','Graham Douglas  ','Mamman Nasir  ','Rotimi Williams  ','Akinola Aguda ','','','d','','posr-utme-aaua','2013',601,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(13,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known ','Ogbon','Oyo Mesi ','Baale','Ohanaeze','','','b','','posr-utme-aaua','2013',600,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(14,'Galadima in the emirate refers to  ','a village head  ','the office in charge of the army  ','the administrator of the capital city  ','a judge ','','','c','','posr-utme-aaua','2013',610,'Admin','0000-00-00 00:00:00','2020-06-30 21:38:23'),(15,'Which of the following was the last to win Independence from colonial rule?  ','Cote d I oi e','Algeria  ','Tanzania  ','Angola ','','','d','','posr-utme-aaua','2013',587,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(16,'Which of the following made the earliest contact with the Nigerian societies?  ','The Portuguese ','The Germans  ','The British ','The French','','','a','','posr-utme-aaua','2013',599,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(17,'In the pre-colonial Yoruba society, the power of the Oyo Mesi were checked by  ','Baale  ','Ogboni  ','Are Ona Kankafo  ','Bashorun ','','','d','','posr-utme-aaua','2013',567,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(18,'The Ogboni Cult in the pre-colonial Yoruba political system played the role of the  ','judiciary  ','executive  ','police  ','legislation ','','','a','','posr-utme-aaua','2013',593,'Admin','0000-00-00 00:00:00','2020-07-01 16:02:27'),(19,'The Aro system in Igboland was a ','Political organisation  ','Commercial organisation  ','Religious organisation  ','Imperial organisation ','','','c','','posr-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(20,'Which of the following formalised colonial penetration into Africa?  ','Paris Treaty  ','Berlin Conference  ','Lagos Treaty  ','Cape Coast ','','','b','','posr-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(21,'An acephalous pre-colonial system is best represented by the  ','Oyo Empire  ','Igbo political organisation  ','Ijaw political organisation  ','Benin Empire ','','','b','','posr-utme-aaua','2013',597,'Admin','0000-00-00 00:00:00','2020-06-29 18:06:41'),(22,'The use of forced labour was one of the features of  ','British colonial policy  ','French colonial policy  ','American colonial policy  ','divide and rule ','','','b','','posr-utme-aaua','2013',583,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(23,'During the early colonial period in Nigeria, the governor ruled the protectorate by  ','Crown Colony Orders  ','Proclamation  ','Order?in-Council  ','The Act of Parliament ','','','d','','posr-utme-aaua','2013',576,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(24,'The ratification of the appointment and dismissal of an emir in the pre-colonial Fulani empire was done by','Emir of Kano  ','Emir of Sokoto  ','Emir of Gwandu  ','B & C','','','d','','posr-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(25,'In the Hausa/Fulani traditional political system jingali was  ','one of the sources of revenue to cattle owners  ','tax paid on cattle  ','a property tax paid to land owners ','a type of flat rate tax ','','','b','','posr-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(26,'Which of the following titles among the Igbos in the pre-colonial era required substantial wealth before one could acquire it?','Obi  ','Eze  ','Ozo  ','Ofo ','','','c','','posr-utme-aaua','2013',605,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(27,'Nigerian educated elites agitated against colonial rule  ','by bribing colonial governors  ','through lobbying  ','through newspapers ','by fighting civil war ','','','c','','posr-utme-aaua','2013',594,'Admin','0000-00-00 00:00:00','2020-06-24 18:59:22'),(28,'In the absence of the existence of traditional rulers in the Igbo communities the British Colonial administration appointed','Eze  ','Obi  ','Ozo  ','Warrant chiefs ','','','d','','posr-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(29,'The colonial government whose constitution introduced elective principle into Nigerian politics was  ','Arthur Richards  ','Fredrick Lugard  ','Hugh Clifford  ','John Macpherson ','','','c','','posr-utme-aaua','2013',568,'Admin','0000-00-00 00:00:00','2020-06-24 18:59:22'),(30,'The introduction of indirect rule in eastern Nigeria led to the Aba Women Riots of  ','1914','1929','1935','1916','','','b','','posr-utme-aaua','2013',580,'Admin','0000-00-00 00:00:00','2020-07-01 15:25:35'),(31,'A chief could be deposed in the pre-colonial era if he  ','violated the written constitution  ','persistently neglected the advice of the elders  ','refuse to collect taxes for the Britishs  ','married too many wives ','','','b','','posr-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(32,'Which of the following in the pre-colonial era had integrated political structure  ','Tiv  ','Ilaje ','Jukun  ','Nupe ','','','d','','posr-utme-aaua','2013',550,'Admin','0000-00-00 00:00:00','2020-06-30 22:33:09'),(33,'The Yoruba, Edo, Nupe, and Ibo languages are classified as belonging to the  ','Arabic  ','Kwa-sub group  ','Kaw sub group  ','Kai sub group ','','','b','','posr-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-06-29 01:51:44'),(34,'Archaeology findings in Ugbo-Ukwu are suggestive of rich  ','Agricultural potentials  ','cultural civilization  ','mineral deposit  ','all of the above ','','','b','','posr-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(35,'Geographically, Nigeria lies between latitudes  ','40 and 140  ','4 and 100   ','140 and 4  ','all of the above ','','','a','','posr-utme-aaua','2013',599,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(36,'Ali Ghaji s  eig  e ded i  Ka e  Bo o in  ','1501','1502','1503','1504','','','d','','posr-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-06-30 13:24:13'),(37,'All of the following are renowned historians except  ','Prof Ade Ajayi ','Prof Toyin Falola  ','Prof Obaro Ikime  ','Prof Akin Oyebade ','','','d','','posr-utme-aaua','2013',599,'Admin','0000-00-00 00:00:00','2020-06-29 18:06:41'),(38,'In Yorubaland, the concept which derived mainly from the wave of dispersal that attended the process of state formation is known as','Omo iya  ','Ebi  ','Oduduwa  ','all of the above ','','','b','','posr-utme-aaua','2013',594,'Admin','0000-00-00 00:00:00','2020-06-27 17:55:17'),(39,'Oron and Ekoi people of the Cross River Basin might have migrated to Nigeria through the  ','sea  ','mountain  ','sky  ','none ','','','a','','posr-utme-aaua','2013',547,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(40,'The Portuguese first visited Benin around  ','1485','1484','1486','1483','','','a','','posr-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-06-30 09:08:39'),(41,'Songhai Empire fell in... ','1591','1691','1791','1891','','','a','','posr-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(42,'The Head of the Sokoto Caliphate was known as  ','Sultan  ','Caliph  ','Emir  ','Alhaji ','','','b','','posr-utme-aaua','2013',592,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(43,'The Ekitiparapo war lasted for  ','10 years  ','16 years  ','100years','50 years ','','','b','','posr-utme-aaua','2013',595,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(44,'Yoruba inter-state wars lasted for  ','16 years  ','10 years  ','100 years  ','50 years ','','','c','','posr-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(45,'The Sokoto Jihad led to the formation of Islamic States in following States except  ','Senegal  ','Mali  ','Chad  ','Togo ','','','d','','posr-utme-aaua','2013',609,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(46,'Be li   Af i a   o fe e e took pla e et ee  ','1884 and 1885  ','1885 and 1886  ','1886 and 1887  ','1883 and 1884 ','','','a','','posr-utme-aaua','2013',565,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(47,'???. and slave raiding were complementary exercises among the Yoruba  ','farming  ','hunting  ','war  ','diplomacy ','','','c','','posr-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(48,'The 1804 Jihad in Northern Nigeria could be referred to all except  ','Sokoto Jihad  ','Uthman Dan Fodiyo Jihad  ','Fulani Jihad  ','Seku Ahmadu Jihad ','','','d','','posr-utme-aaua','2013',577,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(49,'Samori Toure was captured in 1893 by  ','French imperialism  ','British imperialism  ','Germany imperialist  ','none of the above ','','','a','','posr-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(50,'The first independence day speech in Nigeria was given by??.','Muhammadu Buhari','Obafemi Awolowo','Tafawa Balewa','Nnamdi Azikwe','','','c','','posr-utme-aaua','2013',568,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `image` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `url` text NOT NULL,\n  `name` varchar(200) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `insurance` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `insurance` VALUES (1,'Which of the following policies will prevent loss of home if the wage earner dies?','Term assurance','Endowment assurance','Mortgage insurance','Whole life assurance','','','c','','wassce','2014',50,'Admin','2017-01-09 12:28:06','2020-05-28 21:03:35'),(2,'One of the objectives of buying a term assurance policy is to','protect  dependants  in  case  of  death  of  the  life assured','reduce financial burden of the life assured','supplement retirement income  of  the  life  assured','maximize savings from the life assured','','','a','','wassce','2014',49,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:19'),(3,'An assurance policy taken by experts to cover possible negligence arising from their duties is','consequential loss','professional indemnity','cargo','freight','','','b','','wassce','2014',59,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:19'),(4,'The class of insurance that  covers  legal  liability to a third party for bodily injury and property damage caused by goods supplied is','employer’s liability','public liability','professional indemnity','products liability','','','d','','wassce','2014',55,'Admin','2017-01-09 12:28:08','2020-05-28 21:02:19'),(5,'The  type  of  cover  that  is  designed  against  loss  of earnings following loss caused by fire and special perils is','product guarantee insurance','materials damage cover','fire damage policy','consequential loss cover','','','d','','wassce','2014',37,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:13'),(6,'Which  of  the  following  risks  is  covered  by  insurance policy?','An investment loss on the stock market','Dishonesty of an employee leading to fraud','Failure of a business venture','Rise and fall of prices of goods in the market','','','b','','wassce','2014',52,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:43'),(7,'In  classification  of  risks, what is the name given to a risk  where  the  causes  of  events are linked to factors \tthat are due to the society we live in?','Dynamic risk','Particular risk','Speculative risk','Fundamental risk','','','a','','wassce','2014',47,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:46'),(8,'The evidence of the insurance contract is','proposal form','policy','schedule','endorsement','','','b','','wassce','2014',45,'Admin','2017-01-09 12:28:08','2020-05-28 21:02:54'),(9,'The right of the insurer to step in place of the insured for the purpose of recovering damages is called','representation','indemnity','subrogation','contribution','','','c','','wassce','2014',52,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:49'),(10,'Which of the following is a contract of benefit?','Personal accident insurance','Business interruption insurance','Fire insurance','Money insurance','','','a','','wassce','2014',52,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:40'),(11,'Which of the following is not a feature of insurable interest?','Loss suffered','subject matter','Legal relationship','Financial value','','','a','','wassce','2014',56,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:00'),(12,'A prospective insured in an engineering insurance may be advised to purchase one of the following classes of insurance','fire cover','boiler cover','tempest cover','equipment cover','','','d','','wassce','2014',57,'Admin','2017-01-09 12:28:08','2020-05-28 21:02:39'),(13,'The class of non-life insurance policy where cover note is issued is','fire insurance','burglary insurance','motor insurance','fidelity guarantee','','','c','','wassce','2014',47,'Admin','2017-01-09 12:28:08','2020-05-28 21:02:46'),(14,'Abandonment is mostly applicable to','marine insurance','motor insurance','fire insurance','engineering insurance','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:37'),(15,'Which of the following is not a benefit covered under a personal accident policy?','Death','Temporary disablement','Loss of baggage','Medical expenses','','','c','','wassce','2014',51,'Admin','2017-01-09 12:28:09','2020-05-28 20:59:43'),(16,'In the preparation of food for eat - in - customers, the cooks made a mistake in using excess quantity of an \tingredient. A customer ate and  suffered  poisoning. \tWhich policy of the operator would pick this liability?','Public liability','Personal liability','All risks insurance','Loss of profit insurance','','','a','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:29'),(17,'How much premium will the insurer charge?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','b','','wassce','2014',63,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:30'),(18,'How  much  premium  will  the  insurer  return  to  the insured?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','a','','wassce','2014',51,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:26'),(19,'A policy that combines cover for many perils as a single policy  to  suit  the  insurance  needs of  an insured is','accident policy','protection policy','paternal policy','packaged policy','','','d','','wassce','2014',56,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:34'),(20,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:55'),(21,'The document that sets out the list of items covered in insurance is a','manifest','bill of lading','policy list','policy specification or form','','','d','','wassce','2014',67,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:50'),(22,'One of the information contained in a motor insurance cover note is the','behaviour of the insured','occupation of the insured','commencement date','previous and present insurance history','','','c','','wassce','2014',55,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:45'),(23,'In property insurance, which of the following is not a direct loss?','Reinstating the property destroyed','Replacing the property destroyed','Repairing the property damaged','Replacing third party property damaged','','','d','','wassce','2014',56,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:49'),(24,'Ade insured his property for N= 350,000.00. The property is subject to average condition. He suffered a loss amounting to N= 30,000.00 with the value of the property at the time of loss to be N= 370,000.00. How much will the insurer pay?','N= 14,583.33','N= 28,378.38','N= 30,000.00','N= 31,714.29','','','d','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:02:14'),(25,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of dispute','resolution of policy','','','a','','wassce','2014',54,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:50'),(26,'An insurer who buys reinsurance cover is insured as','retrocession','retrocedant','cession','cadent','','','d','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:02:24'),(27,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:48'),(28,'Family income option in a life policy provides that','the beneficiary will be paid for life','the beneficiary receives the policy sum','interest will be added monthly','salary will be paid to the insured until death','','','b','','wassce','2014',45,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:25'),(29,'A provision in a policy that exempts an insurer from liability if the loss is less than a certain amount is','excess','transfer','lay days','franchise','','','a','','wassce','2014',66,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:13'),(30,'Which of the following policies is a peril covered under a standard fire policy?','Lightning','Storm','Civil commotion','Escape of oil','','','a','','wassce','2014',46,'Admin','2017-01-09 12:28:09','2020-05-28 21:00:44'),(31,'A type of reinsurance where cession and acceptance is obligatory is','treaty','captive','facultative','retrocession','','','a','','wassce','2014',58,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:20'),(32,'A contract sold  by  insurance companies that  pay  a monthly or  quarterly income  benefit for the  life  of a person is','endowment','annuity','income','freight','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:34'),(33,'George effected two personal accident policies. The first policy provides N= 25,000.00 cover for loss of limb. The second policy provides N= 30,000.00 cover for loss of limb. What is the total amount that  George  will receive in the event of a valid loss of limb claim?','N= 5,000.00','N= 25,000.00','N= 30,000.00','N= 55,000.00','','','a','','wassce','2014',54,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:50'),(34,'Renewal notice is  used by  insurers  to  remind the insured of the','reduction of cover','continuation of cover','expiration of cover','increase of cover','','','b','','wassce','2014',57,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:52'),(35,'Risk Net Insurance Brokers Limited placed a business with an insurance company, in return the broker will be entitled to','fees','commission','profit','revenue','','','b','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:14'),(36,'The professional service required for effective claims administration by insurers would be provided by','loss assessors','risk managers','loss adjusters','claims consultants','','','c','','wassce','2014',60,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:09'),(37,'Which  of the following activities is  not a  function of the  Chartered  Insurance  Institute  of  Nigeria?','Setting a standard for members','Promoting Professional growth','Promoting the interest of insurers','Specifying professional qualification','','','d','','wassce','2014',54,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:17'),(38,'Effective supervision and licensing of insurance firms in Nigeria is the function of','National Insurance Commission','Institute of Loss Adjusters of Nigeria','Chartered Insurance Institute of Nigeria','Nigerian Corporation of Registered Insurance Brokers','','','a','','wassce','2014',57,'Admin','2017-01-09 12:28:09','2020-05-28 21:02:11'),(39,'The payment made when the insured is  not  entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','wassce','2014',59,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:43'),(40,'The owner of a life assurance policy who enters into an agreement to sell the ownership of the policy and beneficiary rights upon the death of the insured is called','an underwriter','a aviator','a factor','an assessor','','','d','','wassce','2014',48,'Admin','2017-01-09 12:28:10','2020-05-28 21:02:36'),(41,'A small fixed sum retained by the insured in the form of a claim is','slip','severity','excess','frequency','','','b','','wassce','2014',51,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:28'),(42,'A voucher signed by the insured before collecting his claim is','money collect receipt','discharge voucher','payment receipt','pay - in - slip','','','b','','wassce','2014',56,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:57'),(43,'To which of the following parties does the principle of utmost good faith apply in a contract of insurance?','The proposer only','The insurer only','The insurer and proposer','The third party and insured','','','c','','wassce','2014',58,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:42'),(44,'Insurers A and B cover a risk at the ratio of 2:5 for the sum insured of N= 1,800. How much would insurer  A get from the risk?','N= 1,285.00','N= 771.00','N= 514.00','N= 180.00','','','c','','wassce','2014',59,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:09'),(45,'The consideration paid for insurance contract is','money','commission','premium','fee','','','c','','wassce','2014',50,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:37'),(46,'The alternative to seeking for surrender value in a life assurance contract is','automatic non - forfeiture','revival condition','paid-up policy','standing order','','','c','','wassce','2014',50,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:37'),(47,'Which of the following is a risk covered in endowment assurance?','Permanent disability','Bodily injury','Temporary disability','Death cover','','','d','','wassce','2014',44,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:40'),(48,'A <em>revival clause</em> in a life policy will allow an insured to revive a policy that lapsed on account of nonpayment of premium, provided the insured','can prove he is sick at the time','cannot fall sick after the policy','can prove he is in good health','can recover from the ill health','','','a','','wassce','2014',42,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:29'),(49,'Which of  the  following  risks  are  covered  under engineering insurance?','Material damage and liability cover','Boiler and special perils cover','Computer and explosion cover','Property damage and business interruption cover','','','d','','wassce','2014',43,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:13'),(50,'Which of the following is not a function of an insurance broker?','Assisting clients in paying premium','Maintaining proper records of claims','Assisting clients in connecting to insurers','Assisting clients in effecting uninsured loss','','','a','','wassce','2014',56,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:55'),(51,'The primary function of insurance is','making profit','managing of risk','spreading of risk','prevention of accident','','','c','','model','1',61,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:32'),(52,'An  insurance  feature  that  requires  the  parties  to disclose  all  material  facts  about  the  agreement is known as','Adhesion','Disclosure','Material fact','Utmost good faith','','','b','','model','1',58,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:27'),(53,'An insurance principle that requires the insured to be honest and disclose all relevant facts is called','subrogation','utmost good faith','proximate cause','insurable interest','','','b','','model','1',58,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:40'),(54,'The facts which might influence any party’s willingness to enter the contract or reject it is called','insurable fact','insurance fact','insured fact','material fact','','','d','','model','1',45,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:58'),(55,'A  statement  of  fact  that  the insured must have an interest in the object of the contract is called','warranty','insurable interest','subrogation','object interest','','','b','','model','1',51,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:45'),(56,'A fundamental condition which must be filled  by the  insured for compensation is','warranty','obligation','interest','premium','','','a','','model','1',59,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:53'),(57,'The object of an insurance policy is equally known as','insurance title','insurance premium','subject matter','risk object','','','c','','model','1',53,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:20'),(58,'In insurance contract the insured is the','offeror','offeree','Actuary','Ofree','','','a','','model','1',59,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:46'),(59,'In insurance contract offeree is the','insured','insurance company','client','Third party','','','b','','model','1',44,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:49'),(60,'An individual who is interested in taking an insurance policy must fill a form of application called:','premium slip','policy document','proposal form','claim form','','','c','','model','1',61,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:49'),(61,'The payment made by the insured to the insurer upon which the validity of insurance is based is called','Exgratia payment','Loss payment','Compensation','Premium','','','d','','model','1',60,'Admin','2017-01-09 13:02:57','2020-05-28 21:00:15'),(62,'The temporary document issued by the insurer to the insured while the policy is being prepared is','insurance certificate','promissory note','exchange slip','cover note','','','d','','model','1',57,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:01'),(63,'The evidence of the contractual agreement between the insured and insurer is','policy','proposal form','insurance certificate','cover note','','','a','','model','1',47,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:44'),(64,'Which of these is an aid to trade?','cover note','insurance','premium','policy','','','b','','model','1',61,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:18'),(65,'The following are exempted from a contract because they do not have the contractual capacity except','Drunkard','Alien','Mental patient','Adult','','','d','','model','1',50,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:22'),(66,'Insured is likewise known as','insuree','Insurer','policy holder','contractor','','','c','','model','1',66,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:06'),(67,'Insurance contract is between','Broker and Agent','Insured and Insurer','Insurer  and Agent','Insured and Agent','','','b','','model','1',54,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:46'),(68,'The buyer of insurance product is','Agent','Broker','Insured','Insurer','','','c','','model','1',52,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:13'),(69,'The seller of insurance product is','Insurer','Insured','Broker','Agent','','','a','','model','1',46,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:24'),(70,'Which of this is an odd one out?','offer and acceptance','contractual capacity','legality of object','Adhesion','','','d','','model','1',57,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:56'),(71,'The uncertainty as to the occurrence of a loos is','Hazard','Loss','Risk','insurance','','','c','','model','1',43,'Admin','2017-01-09 13:02:57','2020-05-28 21:01:40'),(72,'The risks which affect the society and whose causes are beyond human control is','particular risk','static','fundamental','speculative','','','c','','model','1',47,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:53'),(73,'Risks that are peculiar to an individual actions and decision is known as','fundamental risk','particular risk','pure risk','speculative risk','','','b','','model','1',49,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:49'),(74,'Risk of loss resulting from change in culture and taste is called','static risk','pure risk','dynamic risk','speculative risk','','','c','','model','1',52,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:09'),(75,'The following risks are insurable except','particular','pure','static','dynamic risk','','','d','','model','1',64,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:51'),(76,'The following are insurable except','Marine','Goods','Gambling','Accident','','','c','','model','1',46,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:52'),(77,'The following are non-insurable except','Lose of profit as a result of change in fashion','Speculation','Lose of profit as a result of maladministration','Fire','','','d','','model','1',45,'Admin','2017-01-09 13:02:57','2020-05-28 21:01:50'),(78,'Factors which may influence the occurrence of a loss is','Risk','Loss','Peril','Hazard','','','d','','model','1',42,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:32'),(79,'Hazard that relates to the attitude of the insured is known as','Physical hazard','Good physical hazard','Moral hazard','Good moral hazard','','','c','','model','1',59,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:58'),(80,'Hazard that relates to the subject matter of insurance is called','moral','physical','peril','Good peril','','','b','','model','1',57,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:38'),(81,'The following are examples of bad moral hazard except','Fraudulent activities','Carelessness','Honesty','Unreasonableness','','','c','','model','1',48,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:29'),(82,'The cause of a loss is known as','Risk','Peril','Hazard','Moral','','','b','','model','1',48,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:51'),(83,'The  principle  of  insurance  which  states  that a person must be in a legally recognized relationship to what is  insured  such  that  he  will  benefit  from its existence or suffer by its loss is','utmost good faith','insurable interest','proximate cause','subrogation','','','b','','model','1',60,'Admin','2017-01-09 13:02:58','2020-05-28 21:02:37'),(84,'A person who has lawful possession of goods belonging to another is known as','Owner','Bailee','Agent','Trustee','','','b','','model','1',57,'Admin','2017-01-09 13:02:58','2020-05-28 21:02:26'),(85,'Transfer of rights and liabilities under a contract with the consent of the other party is known as','Assignment','liability','Interest','Legality','','','a','','model','1',56,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:54'),(86,'Another name for utmost good faith is','cadent','cede','ex gratia','uberrimae fidei','','','d','','model','1',60,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:38'),(87,'The principle of insurance which states that the insure should be truthful and disclose all material fact is','subrogation','utmost good faith','indemnity','insurable interest','','','b','','model','1',57,'Admin','2017-01-09 13:02:58','2020-05-28 21:01:53'),(88,'A miss statement of fact that is made by the insured or his broker to an underwriter during negotiation is called','annuity','misrepresentation','endorsement','disclosure','','','b','','model','1',47,'Admin','2017-01-09 13:02:58','2020-05-28 21:00:51'),(89,'Indemnity is provided through the following media except','cash','commission','reinstatement','repair','','','b','','model','1',48,'Admin','2017-01-09 13:02:58','2020-05-28 21:02:34'),(90,'Any circumstance that promotes the probability of a loss is called','accident','hazard','loss','risk','','','b','','model','1',76,'Admin','2017-01-09 13:02:58','2020-07-01 12:53:01'),(91,'A financial compensation sufficient to return the insured back to the original position after loss is known as','deposit','loan','indemnity','profit','','','c','','model','1',52,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:15'),(92,'Another name for business interruption insurance is','property insurance','consequential loss','credit insurance','excess loss','','','b','','model','1',58,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:34'),(93,'Subrogation principle can be applied in the following insurance policies except in','aviation policy','engineering policy','life policy','marine policy','','','c','','model','1',58,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:24'),(94,'Payment of claims  in  liability  insurance are usually made in favour of','insurance agent','a third party','employees','employers','','','b','','model','1',69,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:40'),(95,'The person  that  brings  an insurance  contract  into existence between  the principal and third party  is a/an','agent','bailee','contractor','insurer','','','a','','model','1',55,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:56'),(96,'“Hull” in marine policy refers to the','boiler','cost of transporting the goods','goods on board','ship','','','d','','model','1',61,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:29'),(97,'A formal document containing the condition of the insurance contract is called','agreement','contract form','contract slip','policy document','','','d','','model','1',42,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:43'),(98,'Engineering insurance covers the following except','boiler explosion','building and civil','business interruption','machinery breakdown','','','c','','model','1',58,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:22'),(99,'A policy designed to protect individuals against negligence while carrying out their daily activities is called','business interruption','employers liability','engineering','professional indemnity','','','d','','model','1',45,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:32'),(100,'Unlawful breaking and entering into any premises or place of safe keeping is covered under which of these policies?','burglary','business interruption','employers liability','public liability','','','a','','model','1',49,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:38'),(101,'When someone is placed back in the same financial position that he was in just prior to a loss, that is ----','Actual cash value','Consideration','Contribution','Indemnity','','','d','','model','2',51,'Admin','2017-01-09 13:21:17','2020-05-28 21:03:00'),(102,'Insurable interest means','Interest gained on money in a bank','Interest payable on a loan','Financial interest a person has in something he expects to inherit','The financial interest a person has in something of value','','','d','','model','2',60,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:45'),(103,'Below are insurable policies except','Earthquake','Fire','Life','Marine','','','a','','model','2',55,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:49'),(104,'The term pooling of risks in insurance means that','Many who face risks pay premium so that those who suffer loss may be reimbursed','Insurance companies share heavy losses','Insurance company re-assures with another','Insurance companies operates pool betting business','','','a','','model','2',56,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:44'),(105,'Which of the following is not a principle of insurance?','Indemnity','Compensation','Proximate cause','Insurable interest','','','b','','model','2',60,'Admin','2017-01-09 13:21:18','2020-05-28 21:02:12'),(106,'The amount of money paid periodically by an insured to the insurance company to cover risk is called','Commission','Premium','Cover note','Dividend','','','b','','model','2',60,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:06'),(107,'Insurance was developed as a result of the existence of','Hazards','Loss','Risk','Indemnity','','','c','','model','2',60,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:17'),(108,'Which of the following is not a function of insurance?','Serves as collateral','Encouraging saving','Provides insecurity','Reduces risks','','','c','','model','2',66,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:55'),(109,'In the utmost good faith principle, the value of the subject matter should','Be over stated','Understated','Not be stated','Not be overstated nor understated','','','d','','model','2',47,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:20'),(110,'Which of the following is non- insurable risk?','Gambling','Accident','Fire','Theft','','','a','','model','2',56,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:54'),(111,'Which of the following is a temporary document given to the insured in an insurance contract?','Cover note','Subrogation','Policy document','Reinsurance','','','a','','model','2',65,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:46'),(112,'Hazard that deals with the human habits and character that arises from human attitude and the conduct of people is called','physical','Moral','Static','Dynamic','','','b','','model','2',40,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:56'),(113,'A peril is best defined as','Chance of a loss','The occurrence of a loan','The cause of a loss','The result of a loss','','','c','','model','2',53,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:42'),(114,'One of the essential features of insurance contract is','Premium','Subrogation','Interest','Disclosure','','','d','','model','2',56,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:09'),(115,'Insurance  feature  that  emphasized   the  fact  that insurance contract is a contract between the insurer and  the  insured  and  which states  that  the insured must  adhere to  the  agreement  is  called','Disclosure','Warranty','Adhesion','Material facts','','','c','','model','2',45,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:59'),(116,'The principle that requires the insured to disclose to the insurer all matters relating to the object of insurance is called','Uberrimae fidei','Proximate cause','Abandonment','Subrogation','','','a','','model','2',49,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:35'),(117,'There must  be  a  close  connection  between  the loss actually suffered and the risk is relating to the principle  of','Abandonment','Proximate cause','Utmost good faith','Adhesion','','','b','','model','2',52,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:35'),(118,'The principle of subrogation imposed an obligation on the insured to','Disclose all material information','Have financial risks in the object','Press for compensation','Surrender legal right after compensation','','','d','','model','2',44,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:43'),(119,'Which of the following is not a principle of insurance','Indemnity','Insurable risk','Subrogation','Insurable interest','','','b','','model','2',55,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:55'),(120,'An application form which is filled by anyone taking out an insurance policy is called','A policy form','A claim form','A proposal form','Proximate cause form','','','c','','model','2',47,'Admin','2017-01-09 13:21:19','2020-05-28 20:59:45'),(121,'Insurance is necessary because of the need to','Pool resources together','Meet uncertainties in future','Make profit','Lend money to individual','','','b','','model','2',58,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:49'),(122,'The policy that covers debt that cannot be recovered is called','Life assurance','Motor vehicle policy','Comprehensive policy','Bad debt insurance policy','','','d','','model','2',46,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:09'),(123,'Risk whose cause is beyond human control is','Fundamental','Speculative','Particular','Static','','','a','','model','2',54,'Admin','2017-01-09 13:21:19','2020-05-28 21:01:53'),(124,'Cover note usually run for about','One month','Two days','5 years','3 days','','','a','','model','2',57,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:23'),(125,'A card used by motorist in the West African sub-region is called','Brown card','Certificate','Insurance card','visa card','','','a','','model','2',56,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:10'),(126,'Uncertainty of loss is known as','Risk','Certainty','Insurance','Hazard','','','a','','model','2',81,'Admin','2017-01-09 13:21:19','2020-06-23 11:44:24'),(127,'Re-insurance contract is between','Re-insurer and insurer','Re- insurance and insurance','Co-insurer and insurer','Insurance broker and re-insurer','','','a','','model','2',53,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:39'),(128,'The continuation of insurance contract after expiration is','Renewal','Revival','Resuscitation','Rejuvenation','','','a','','model','2',45,'Admin','2017-01-09 13:21:19','2020-05-28 21:00:26'),(129,'The  payment  made  by  underwriter  as  a  form  of  \tkindness  without  admission  of  liability  so  as  to maintain goodwill is known as ------------','Kindness payment','Ex-gratia payment','Favour payment','Claim','','','b','','model','2',44,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:28'),(130,'One of the following is the duty of the insured in insurance claim process','Late report of the loss','Little idea of the loss size','Quick report of the loss','Hiding fact','','','c','','model','2',45,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:18'),(131,'The prices set by the insurer for the insurance cover is known as','Due','Levy','Premium','Charge','','','c','','model','2',56,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:58'),(132,'The transfer of risk already undertaken from one insurance company to another is','Over insurance','Re insurance','Under insurance','Group insurance','','','b','','model','2',52,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:42'),(133,'When an insured person admits that he has indemnified, he means that','The damage proper by has been recovered','He was paid premium fully','The insurance company has restored him to his former position','He was paid his premium fully','','','c','','model','2',49,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:16'),(134,'A house worth N=60,000 insured against fire for N=40,000.  Fire destroyed and cause damage worth N=30,000. On the house under which insurance principle will the owner be entitled to compensation of N=30,000.','Contribution','Subrogation','indemnity','Uberrimae fidei','','','c','','model','2',55,'Admin','2017-01-09 13:21:20','2020-05-28 21:01:51'),(135,'The person who calculate the amount given to the insured if he does not want to continue with the contract of insurance is called','Actuary','Insurance agent','Insurance broker','Assessor loss adjuster','','','d','','model','2',60,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:54'),(136,'The amount given to the insured if he does not want the contract to continue is called','Insurance broker','Premium','Surrender value','Assessor loss adjuster','','','c','','model','2',56,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:44'),(137,'The sum paid for transporting the goods or for the hire of a ship is called','Marine cargo','Freight insurance','Hull insurance','Risk insurance','','','b','','model','2',59,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:32'),(138,'The duty of the loss adjuster in insurance claims is to','Make loss','Prevent loss','Safeguard loss','Recommend appropriate payment','','','d','','model','2',49,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:47'),(139,'Consequential loss is also known as','Business interruption insurance','Credit insurance','Excess loss','Property insurance','','','a','','model','2',51,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:01'),(140,'Subrogation principle can be applied in the following insurance policies except in','motor','Life','Marine','Aviation','','','b','','model','2',72,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:13'),(141,'The acronym “CllN” refers to','Certified insurance institute','Certified insured institute','Certified international institute','Chartered insurance institute','','','d','','model','2',61,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:44'),(142,'Amount paid to the beneficiary upon the death of the insured is','Premium','Compensation','Declaration','Death benefit','','','d','','model','2',57,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:19'),(143,'The clauses in the policy which make alterations or additions to the information stated in the policy is known as','correction','Modification','Change','Endorsement','','','d','','model','2',45,'Admin','2017-01-09 13:21:20','2020-05-28 21:01:41'),(144,'The date on which an insurance or reinsurance contract comes into force is known as','Starting point date','Inception date','Beginning date','Commencement date','','','b','','model','2',53,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:38'),(145,'Factor that causes an exposure to injury, loss or damage is','Risk','Hazard','Peril','Accident','','','b','','model','2',41,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:11'),(146,'Workman compensation is also referred to as','Fidelity insurance','Employment liability','Public liability','Product liability','','','a','','model','2',51,'Admin','2017-01-09 13:21:20','2020-05-28 21:01:59'),(147,'An insurance cover for lawyers, accountants and brokers is','Employment','Professional','Public','Product','','','b','','model','2',49,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:55'),(148,'The deliberate or intentional throwing over board of part of a cargo to lighten the ship in the interest of the reminder of the cargo is','Barratry','Jettison','Breach','Caveat emptor','','','b','','model','2',56,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:16'),(149,'The wrongful act willfully committed by either the master or the prejudice of either the owner or crew to the chatterer of the ship is','Barratry','Caveat emptor','Bailee','Jettison','','','a','','model','2',42,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:30'),(150,'The legal right to insure a subject matter is','Indemnity','Subject Matter','Subrogation','Insurable interest','','','d','','model','2',49,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:37'),(151,'--------- shows what the insured should do or not do to maintain the existence of the policy','Cover note','Policy','Warranty','Certificate','','','c','','model','3',61,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:50'),(152,'The uncertainty of an event occurring is known as','Hazard','Risk','Loss','Accident','','','b','','model','3',50,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:29'),(153,'The provider of protection to an insurance  company against the excess risk it has given insurance covers is called','Assurer','Insuring','Reinsurer','Insurer','','','c','','model','3',48,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:33'),(154,'---------- is the evidence cover of the risk given to the insured by the insurer','Cover','Policy','Claim','Compensation','','','b','','model','3',56,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:50'),(155,'------------ is the protection which the insured buys for his risk','Indemnity','Compensation','Cover','Subrogation','','','c','','model','3',54,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:28'),(156,'A temporary certificate to show that a cover is in existence is called','Policy','Certificate','Cover note','Claim slip','','','c','','model','3',50,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:59'),(157,'------------ is used to bring amendment in a policy that is either to add in a new thing or removal of an existing thing in the policy','Excess','Endorsement','Claim form','Policy','','','b','','model','3',47,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:56'),(158,'The cause of a loss is known as','Peril','Hazard','Loss','Risk','','','a','','model','3',63,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:55'),(159,'The price of insurance is known as','Rate','Interest','Premium','Profit','','','c','','model','3',50,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:56'),(160,'The monetary consideration paid by the insured to the insurers for the insurance granted by the policy is called','Premium','Money','Price','Benefit','','','a','','model','3',55,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:01'),(161,'------------- is a policy designed to place the insured in the same financial position as he was immediately before the happening of the event insured against','Indemnity','Subrogation','Surrender value','Actuary','','','a','','model','3',54,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:15'),(162,'The essential value of valid contract that states that the parties to a contract must be in perfect agreement and have a common mind is','Consideration','Perpetual existence','Excess','Consensus ad-idem','','','d','','model','3',53,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:19'),(163,'A  Statement signed by the insured, certifying the Statement','Certificate','Declaration','Confirmation slip','Accuracy statement','','','b','','model','3',43,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:34'),(164,'Change for the transportation of goods by water is called','Bill','Ticket','Freight','Consideration','','','c','','model','3',63,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:54'),(165,'Life assurance provides dual benefits of savings and ------------ to a policy holder','Acceptance','Consideration','Contribution','Security','','','d','','model','3',65,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:39'),(166,'Another name for consequential loss is','Stop loss','Credit insurance','Business interruption insurance','Excess loss','','','c','','model','3',53,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:50'),(167,'Subrogation principle can be applied in the following insurance policies except in -------- policy','Life','Motor','Theft','Burglary','','','a','','model','3',45,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:28'),(168,'A place where the business of insurance is transacted is called a/an','Insurance market','Brokerage firm','Insurance house','Insurance conference room','','','a','','model','3',48,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:34'),(169,'A customer that suffers loss or sustain injury while using a business outfit that belongs to another perosn, can sue the property owner under -------------- insurance','Professional indemnity','Public liability','Employers’ liability','Personal accident','','','b','','model','3',47,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:30'),(170,'The type of questionnaire drawn up by   insurers, requesting certain information to assess risk is --------- form','Acceptance','Compensation','Credit','Proposal','','','d','','model','3',48,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:37'),(171,'The shifting of responsibility of one’s own losses to another is known as ---------- transfer','Fund','Risk','Business','Policy','','','b','','model','3',46,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:35'),(172,'A financial compensation sufficient to return the insured back to his original position after loss is known as','Deposit','Loan','Indemnity','Overdraft','','','c','','model','3',51,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:35'),(173,'The following are types of life assurances,  except','annuity','Endowment','Hire purchase','Whole life','','','c','','model','3',52,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:14'),(174,'A marine policy that provider cover for the construction of sea vessels is called --------- policy','Building','Mixed','Port','Valued','','','a','','model','3',87,'Admin','2017-01-09 13:38:39','2020-07-02 11:14:35'),(175,'Spreading of risk to ensure that no insurer is liquidated by the occurrence of a large loss is the concept of','Insurance','Re insurance','Renewal','Treaty','','','b','','model','3',62,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:25'),(176,'The person  that  brings  an  insurance  contract into existence  between  the principal  and  third  party is a/an','Agent','Bailee','Contractor','Insurer','','','a','','model','3',58,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:58'),(177,'Any circumstance that promotes the probability of a loss is called','Accident','Hazard','Loss','Risk','','','b','','model','3',44,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:54'),(178,'Indemnity is provided through the following media except','Cash','Commission','Reinstatement','Repair','','','b','','model','3',60,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:35'),(179,'The policy that covers loss of cash while in transit or at home is --------------- insurance','Burglary','Business interruption','Credit','Money','','','d','','model','3',48,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:57'),(180,'A person who makes an insurance claim is called','Actuary','Adjustor','Claimant','Client','','','c','','model','3',58,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:56'),(181,'To break or act contrary to a law or promise means','Breach','Shake','Confirm','Disagreement','','','a','','model','3',48,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:54'),(182,'A professional officer of an insurance company whose duty among others is to calculate the premium to be \tpaid by the insured is called','Agent','Principal','Actuarist','Adjuster','','','c','','model','3',52,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:39'),(183,'Which of these is insurable?','Fire','Inflation','Bad publicity','Riot and war','','','a','','model','3',63,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:43'),(184,'The principle that requires all material facts to be disclosed is known as','Indemnity','Fidelity','Proximate cause','Utmost good faith','','','d','','model','3',57,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:39'),(185,'In insurance contract, failure to disclose all relevant material facts will render the contract','legal','Voidable','Void','Implied','','','c','','model','3',57,'Admin','2017-01-09 13:38:39','2020-05-28 21:01:55'),(186,'Any information that will influence a prudent insurer is called','contract','misrepresentation','disclosure','Material facts','','','d','','model','3',51,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:49'),(187,'The insurance principle which implies that a proof is required that the direct and immediate cause of the loss suffered was by the occurrence of the risk insured against is called','Indemnity','Proximate cause','Insurable interest','Utmost good faith','','','b','','model','3',56,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:48'),(188,'Method of providing indemnity whereby subject matter is being restored to its former position is','Repairs','Cash','Reinstatement','Replacement','','','c','','model','3',56,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:20'),(189,'A relief to insurer of each and every loss which does not exceed a specified amount is','Excess','Franchise','Deductible','Annuity','','','b','','model','3',65,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:45'),(190,'When an   insurer agrees   to   replace   irreparably damaged or stolen goods with similar type it is called','Reinstatement','Cash','Repairs','Replacement','','','d','','model','3',43,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:07'),(191,'Cover note usually run for about','21 days','one month','12 months','3 month','','','b','','model','3',63,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:34'),(192,'The process of changing anything wrong with the policy to make it current is','Endorsement','Specification','Rectification','Correction','','','c','','model','3',43,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:10'),(193,'A syndicate or an insurance company that transfer risk under re-insurance is','Cede','Cession','Commutation','Cedant','','','d','','model','3',47,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:53'),(194,'A particular risk which is transferred to another re-insurance under a re-insurance treaty is','Cedant','Cession','Facultative','Cede','','','b','','model','3',55,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:56'),(195,'Application by the insured to the insurer for the payment of money due under his contract of insurance is','Proof','Evidence','Claim','Compensation','','','c','','model','3',54,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:26'),(196,'The following are the methods of claim settlement except','Cash','Repair','Reinstatement','Repayment','','','d','','model','3',60,'Admin','2017-01-09 13:38:40','2020-05-28 21:03:38'),(197,'Person who makes claim is called','Claimant','Client','Insured','Insurer','','','a','','model','3',48,'Admin','2017-01-09 13:38:40','2020-05-28 21:02:05'),(198,'A payment made by insurer as a form of sympathy to maintain goodwill is','Compensation payment','Contract payment','Charity payment','Ex - gratia payment','','','d','','model','3',60,'Admin','2017-01-09 13:38:40','2020-05-28 21:03:25'),(199,'The policy that provides protection for goods or cargoes and ships against the perils of the sea is','Fire','Marine','Aviation','Credit','','','b','','model','3',62,'Admin','2017-01-09 13:38:40','2020-05-28 21:03:57'),(200,'Another name for an insured in a life insurance contract is','Insurer','Assured','Assurer','Agent','','','b','','model','3',43,'Admin','2017-01-09 13:38:40','2020-05-28 21:02:24'),(201,'Insurance is defined as','risking of loss','pooling of risk','gathering of risk','waiving of risk','','','b','','model','4',52,'Admin','2017-01-09 13:49:45','2020-05-28 21:03:11'),(202,'In a contract of insurance, a firm statement is usually made by a person known as the','offeror','offeree','insur','client','','','a','','model','4',52,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:14'),(203,'The premium paid by the insured to the insurance company is','capital','commission','common fund','consideration','','','d','','model','4',62,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:15'),(204,'The insured is also known as','the client','the consumer','the policy holder','agent','','','c','','model','4',53,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:50'),(205,'The coming together of minds of  the two parties to the insurance contract is called','surrender value','acceptance','consensus ad-idem','adhesion','','','c','','model','4',52,'Admin','2017-01-09 13:49:46','2020-05-28 21:02:58'),(206,'Uberrimae fidei is equally known as','contract','agreement','consensus','utmost good faith','','','d','','model','4',58,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:38'),(207,'The legal right that a person must have to enable him or her to insure his or her property is known as','freedom','franchise','insurable interest','Access right','','','c','','model','4',46,'Admin','2017-01-09 13:49:46','2020-05-28 21:02:21'),(208,'An undertaking by the insured that certain things shall be done or not be done or certain things shall be put in place or not in place is called','warranties and representation','utmost good faith and uberrimae fidei','insurable and non-insurable','subrogation and indemnity','','','a','','model','4',43,'Admin','2017-01-09 13:49:46','2020-05-28 21:02:05'),(209,'In insurance, uncertainty of loss means','hazard','risk','accident','earthquake','','','b','','model','4',46,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:33'),(210,'Occurrence of an unplanned event is called','hazard','loss','risk','speculation','','','c','','model','4',53,'Admin','2017-01-09 13:49:46','2020-05-28 21:01:51'),(211,'An insurance contract where both parties signed the agreement which involve mutuality of agreement is known as','unilateral contract','multilateral contract','bilateral contract','united contract','','','c','','model','4',42,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:54'),(212,'An insurance contract which does not involve mutuality of agreement in which only one of the parties involved in the contract makes promises that are legally binding is called','double contract','single contract','multilateral contract','unilateral contract','','','d','','model','4',59,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:51'),(213,'Insurance is a contract that is based on','possibility','probability','positivity','negativity','','','b','','model','4',60,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:57'),(214,'Assurance is a contract that is based on','negativity','possibility','positivity','probability','','','d','','model','4',44,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:57'),(215,'With insurance contract there is','certainty of occurrence','uncertainty of occurrence','certainty of reward','uncertainty  of reward','','','b','','model','4',60,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:32'),(216,'With assurance contract there is','uncertainly of reward','certainty of reward','certainty of occurrence','uncertainty of occurrence','','','c','','model','4',59,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:40'),(217,'Indemnity is not applicable in','assurance contract','insurance contract','insurance terms','insurance content','','','a','','model','4',61,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:46'),(218,'Non- indemnity insurance means that the assured can','be restored back to his former position','not be restored back to his former position','be brought back to contract','not be brought back to contract','','','b','','model','4',57,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:19'),(219,'A seller of insurance product is','insurer','promisor','client','insured','','','a','','model','4',46,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:25'),(220,'A buyer of insurance product is','insured','promise','insurer','insuree','','','a','','model','4',52,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:22'),(221,'A contract which has no legal effect is called','voidable contract','legal contract','void contract','valid contract','','','c','','model','4',55,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:45'),(222,'A contract that is contrary to public policy is','valid contract','legal contract','illegal contract','voidable contract','','','c','','model','4',61,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:44'),(223,'Which of the following cannot enter into an insurance contract?','adult','insured','minor','insurer','','','c','','model','4',56,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:34'),(224,'Risk that affect the society and whose causes are beyond human control is','particular risk','pure risk','fundamental risk','static risk','','','c','','model','4',57,'Admin','2017-01-09 13:49:47','2020-05-28 21:01:42'),(225,'The process of evaluating and minimizing risk is','risk management','risk certainty','risk insurance','risk re-grouping','','','a','','model','4',51,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:22'),(226,'Another name for utmost good faith','expirit - de - corps','uberrimae fidei','caveat emptor','proximate cause','','','b','','model','4',56,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:27'),(227,'Inter company agreement in which insurers agreed to waive their right against each other for loss is','knock for knock agreement','employers’ liability','tit for tat agreement','salvage agreement','','','a','','model','4',51,'Admin','2017-01-09 13:49:47','2020-05-28 20:59:38'),(228,'Contribution will only arise when','two or more parties disagree','two or more parties are promisor','two or more policies of indemnity exist','one policy of indemnity exist','','','c','','model','4',59,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:43'),(229,'One of the following is a condition for contribution','bilateral interest','multilatual interest','two subject matter','common subject matter','','','d','','model','4',54,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:28'),(230,'one of these is a content of a proposal form','children of the proposer','education of the proposer','occupation of the proposer','educational','','','c','','model','4',57,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:52'),(231,'The statement “ I to the best of my knowledge hereby confirm that the statements contained in this prosal form are true and correct” represents','confirmation','declaration','witnessing','humility','','','b','','model','4',53,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:09'),(232,'When the proposer fails to fill the proposal form truthfully, the contract will become','voidable','illegal','void','enforceable','','','c','','model','4',73,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:58'),(233,'Proposal form is used in the following classes of insurance except','Accident','theft','life','large risk of fire','','','d','','model','4',46,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:50'),(234,'The following classes of insurance apply the use of proposal form except','public liability','large risk of marine insurance','small risk of marine insurance','theft','','','b','','model','4',53,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:24'),(235,'Proposal form is not applicable to the following except','aviation','engineering','large risk of fire','fidelity guarantee','','','d','','model','4',52,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:38'),(236,'Which of the method below can be used to provide indemnity in the event of loss','moral advice','resolution of policy','cash payment','professional encouragement','','','c','','model','4',61,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:46'),(237,'A card used by motorist in the West African sub-region is called','insurance certificate','insurance register','insurance green card','Ecowas brown card','','','d','','model','4',46,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:48'),(238,'Situation that are not included in the policy are usually referred to as','condition','exception','preamble','operative clause','','','b','','model','4',55,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:30'),(239,'The part of a policy form that shows the name and address of the company is known as','heading','conclusion','condition','preamble','','','a','','model','4',60,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:54'),(240,'One of these shows the introduction to the details of the insurance policy, parties as well as the premium for the contract','preamble','heading','exception','condition','','','a','','model','4',47,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:42'),(241,'Policy condition which are automatically applicable and not stated in the contract of agreement is known as','agreed condition','agreed negotiation','implied condition','expressed condition','','','c','','model','4',64,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:23'),(242,'A written amendment in addition or alterations to the information stated in the policy is called','endorsement','specification','construction','attestation','','','a','','model','4',40,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:33'),(243,'The process of changing what is wrong in the policy is called','specification','attestation clause','rectification','justification','','','c','','model','4',55,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:34'),(244,'The process of transferring risk from one insurer to another is called','contribution','re-insurance','re-processing','re-activating','','','b','','model','4',60,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:17'),(245,'A reminder to the insured that this existing contract is due to expire is','proposal form','slip','claim form','renewal notice','','','d','','model','4',51,'Admin','2017-01-09 13:49:48','2020-05-28 21:02:19'),(246,'One of these is a form of motor vehicle insurance policy','comprehensive','1st party only','2nd party only','accident','','','a','','model','4',57,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:49'),(247,'Third party provides cover only for damages to','assurer','insurer','2nd party','another person','','','d','','model','4',55,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:32'),(248,'The type of cover for violent and forcible entry into a premises is called','burglary and theft','third party fire and theft','third party and theft','stealing','','','a','','model','4',48,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:15'),(249,'The deliberate throwing overboard of part of a cargo to lighten the ship is called','barratry','overthrown','voyaging','jettisoning','','','d','','model','4',67,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:51'),(250,'The deliberate throwing overboard of part of a cargo without a good intention is called','jettison','barratry','voyaging','overboard','','','b','','model','4',47,'Admin','2017-01-09 13:49:48','2020-05-28 21:02:51'),(251,'Insurance premium depends on the','amount of profit to be made by the insurer','various insurance companies in a place','extent of the possible loss and the frequency of risk','supply and demand','','','c','','model','5',62,'Admin','2017-01-09 13:58:40','2020-05-28 21:02:25'),(252,'Subrogation in insurance means that','the insured could not make a profit from the insurer','the insured must be fully indemnified','the insurer must take the place of the insured','the insured should pool their risks','','','c','','model','5',58,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:37'),(253,'Payment by the insurer to the insured out of sympathy is known as','utmost good faith','proximate cause','peril','ex-gratia payment','','','d','','model','5',44,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:28'),(254,'If the insured does not want the contract to continue he receives','surrender value','consideration','premium','commission','','','a','','model','5',54,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:45'),(255,'Re-insurance means','accumulation of risk','multiplication of risk','transfer of risk','adding of risk','','','c','','model','5',58,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:39'),(256,'Another name for the assured is','insurance company’s client','insurance broker','insurance company','insurance agent','','','c','','model','5',56,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:50'),(257,'One of the following is legally used by the insured while the policy is being processed','indemnity form','claim form','cover note','proposal form','','','c','','model','5',53,'Admin','2017-01-09 13:58:48','2020-05-28 21:02:56'),(258,'One of the following is necessary to meet uncertainties in future','profit','capital','borrowing','insurance','','','d','','model','5',49,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:48'),(259,'When an insured person admits that he has been indemnified, he means that','the insurance company has accepted his claims','the damaged property has been recovered','He has paid his premium','the insurance company has restored him to his former position','','','d','','model','5',60,'Admin','2017-01-09 13:58:48','2020-05-28 21:02:31'),(260,'If the insured has been fully indemnified, the insurers are entitled to take any advantage due to the insured. Principle of insurance involved is','insurable interest','contribution','indemnity','subrogation','','','d','','model','5',55,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:33'),(261,'The settlement of disagreement between the insured and the insurer is called','litigation','arbitration','negotiation','compromising','','','c','','model','5',44,'Admin','2017-01-09 13:58:48','2020-05-28 21:02:56'),(262,'One of this is a method of claim settlement','price','trade by barter','exchange','cash','','','d','','model','5',52,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:49'),(263,'Replacement of damaged property by the insurance company is','arbitration','negotiation','Re-instatement','rectification','','','c','','model','5',59,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:46'),(264,'A reminder to the insured who may have forgotten to seek for continuation after his policy expiry date is','notification message','renewal notice','registration notice','agreement notice','','','b','','model','5',54,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:55'),(265,'Which of the following risks is covered by insurance policy?','an investment loss on the stock market','dishonesty of an employee leading to fraud','failure of a business venture','rise and fall of prices of goods in the market','','','b','','model','5',56,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:52'),(266,'One of this is the evidence of insurance contract','schedule','policy','proposal form','endorsement','','','c','','model','5',52,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:29'),(267,'One of this is the consideration paid for insurance contract','fee','cheque','commission','premium','','','d','','model','5',45,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:16'),(268,'The payment made when the insured is not entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','model','5',51,'Admin','2017-01-09 13:58:48','2020-05-28 21:02:01'),(269,'To which of the following does the principle of utmost good faith apply in a contract of insurance?','the insurer only','the proposer only','the third party and insured','insurer and proposer','','','d','','model','5',57,'Admin','2017-01-09 13:58:49','2020-05-28 21:03:56'),(270,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of policy','resolution of dispute','','','a','','model','5',58,'Admin','2017-01-09 13:58:49','2020-06-28 02:16:59'),(271,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','model','5',57,'Admin','2017-01-09 13:58:49','2020-05-28 21:03:46'),(272,'A factor which may influence the occurrence of a loss is','peril','loss','hazard','risk','','','c','','model','5',60,'Admin','2017-01-09 13:58:52','2020-05-28 21:03:15'),(273,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','model','5',55,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:45'),(274,'A reinsurance contract in which the reassured agrees to offer and the reinsurer agrees to accept all risks of certain size within a defined class is','underwriting','treaty','tort','syndicate','','','b','','model','5',49,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:11'),(275,'A contract which has no legal effect is called','void policy','voidable policy','legal policy','formal policy','','','a','','model','5',64,'Admin','2017-01-09 13:58:53','2020-05-28 21:02:31'),(276,'The contract aimed at providing specific payment at regular intervals for a fixed   period or for life is','accident','annuity','average','term','','','b','','model','5',64,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:54'),(277,'policy designed for the insured who is incapacitated to carry out normal duty is','medical expenses','temporary disablement','permanent disablement','medical expenses','','','b','','model','5',57,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:29'),(278,'Physical loss of limbs or total blindness injury is an example of','permanent disablement','temporary disablement','mid-term disablement','total disablement','','','a','','model','5',50,'Admin','2017-01-09 13:58:53','2020-05-28 21:02:34'),(279,'A policy that covers the peril of the sea is','aviation','marine','life','fire','','','b','','model','5',49,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:04'),(280,'An  attempt  to  deprive  someone of his  property is','theft','burglary','robbery','larceny','','','c','','model','5',47,'Admin','2017-01-09 13:58:53','2020-05-28 21:02:16'),(281,'The process of examining, accepting or rejecting risks and classifying the ones accepted is','underwriting','policy','procedures','warranty','','','a','','model','5',53,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:24'),(282,'The periodic payment made by the insured to the insurer as financial cost of obtaining insurance','annuity','premium','claim','dividend','','','b','','model','5',48,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:13'),(283,'The amount added to the standard premium in respect of the larger than standard risk presented by the proposer is called','premium increase','premium loading','premium payment','premium commission','','','b','','model','5',44,'Admin','2017-01-09 13:58:53','2020-05-28 21:01:46'),(284,'Return premium is the same thing as','premium payment','premium refund','premium tax','premium bonus','','','b','','model','5',56,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:57'),(285,'The principle of maritime law which makes owners of ship and cargo share in a lost incurred voluntarily is','general average','special average','specific average','particular average','','','a','','model','5',56,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:19'),(286,'The amount given to the insured if he does not want the contract to continue is called','premium','price','consideration','surrender value','','','d','','model','5',54,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:51'),(287,'Partial loss can be divided into','particular average and general average','particular average and total loss','actual loss and total loss','total loss and particular loss','','','a','','model','5',56,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:19'),(288,'Marine  losses are divided into','actual total and total loss','total loss and partial loss','partial loss and actual loss','average loss and partial loss','','','b','','model','5',58,'Admin','2017-01-09 13:58:53','2020-05-28 21:02:30'),(289,'The division of total loss are','average loss and partial loss','partial loss and full loss','total loss and actual loss','actual total loss and constructive total loss','','','d','','model','5',48,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:24'),(290,'Marine insurance policy which covers all the ship or vessels belonging to one owner is','flect policy','mixed policy','value policy','fixed policy','','','a','','model','5',58,'Admin','2017-01-09 13:58:57','2020-05-28 21:03:45'),(291,'The full meaning of NAICOM is','Nigerian insurance company','national insurance commission','national insurer commission','national insured commission','','','b','','model','5',64,'Admin','2017-01-09 13:58:57','2020-05-28 21:03:48'),(292,'Speailative risks are','insurable risk','non insurable risk','financial risk','non financial risk','','','b','','model','5',63,'Admin','2017-01-09 13:58:57','2020-05-28 21:03:25'),(293,'The form of risk that can easily be calculated and estimated is known as','non insurable risk','non-financial risk','speculative risk','insurable risk','','','d','','model','5',57,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:24'),(294,'A risk that has its origin in the activities of an individual and the effects borne by this individual is called','pure risk','particular risk','speculative risk','fundamental risk','','','b','','model','5',42,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:46'),(295,'Business interruption insurance can also be called','consequential loss','constructive loss','partial  loss','general loss','','','a','','model','5',61,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:44'),(296,'The maximum number of days allowed for a policy holder to pay his renewal premium after it has become due is called','surrender value','conditions','days of grace','days of liberty','','','c','','model','5',55,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:42'),(297,'The  factor  that has  the  tendency  to  increase  the occurrence of a risk is called','risk','loss','hazard','peril','','','d','','model','5',55,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:39'),(298,'The cause of a loss is','peril','hazard','risk','loss','','','a','','model','5',61,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:33'),(299,'The party who proposes to the insurance company to insure his properly is called','offeree','offeror','acceptance party','offer client','','','b','','model','5',53,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:56'),(300,'One of these is a full time professional','broker','agent','factor','insurer','','','a','','model','5',53,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:52'),(301,'Insurance against risk is possible because of the law of','large numbers','few numbers','inverse proportion','diminishing returns','','','a','','wassce','2015',52,'Admin','2017-01-09 14:33:34','2020-05-28 21:02:03'),(302,'Which  of  the  following  is  not  a  component  of  an insurance policy?','Signature clause','Particular clause','Recital clause','Operative clause','','','b','','wassce','2015',46,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:33'),(303,'Which of the following is a component of premium in insurance?','Margin','Reserve','Funds','Capital','','','c','','wassce','2015',49,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:10'),(304,'In which of the following classes of insurance is no <em>claim discount</em> applicable?','Money insurance','Marine insurance','Motor insurance','Aviation insurance','','','a','','wassce','2015',56,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:39'),(305,'The payment by an insurer to the insured in the event of loss is','claim','premium','fee','interest','','','a','','wassce','2015',53,'Admin','2017-01-09 14:33:34','2020-05-28 21:01:42'),(306,'Which of the following is the function of a loss adjuster?','Ensures payment of adequate compensation','Advises the insurer on claim','Operates with unlimited authority','Notifies insurer of the loss','','','a','','wassce','2015',50,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:27'),(307,'A fire insurance policy guaranteed by the insured to be in place for a stated period with a particular insurer is granted a _____________','no claim discount','fleet discount','long - term agreement discount','plurality discount','','','a','','wassce','2015',51,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:55'),(308,'A type of re - insurance  where  the re - insurer has  the option  to  accept  or  reject  any  risk  presented  for re-insurance is','stop loss','facultative','treaty','excess of loss','','','b','','wassce','2015',65,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:05'),(309,'A new Nissan car valued at N= 350,000 was used to replace a Peugeot car with a sum insured N= 250.000 in private policy. The Peugeot car enjoys a 25% no claim discount. If the rate of premium is 11% and the no claim discount is transferred to the  new vehicle, what  would be the premium for the new Nissan car?','N= 20,625','N= 27,500','N= 28,875','N= 38,500','','','b','','wassce','2015',58,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:24'),(310,'One of the features of term assurance is','investment','profit','protection','surrender','','','d','','wassce','2015',53,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:58'),(311,'Which  of  the  following  statements  is  true  about property insurance?','The probability that the event may occur','The probability that the event will not occur','The probability that the event may or may not occur','The probability that the event must occur','','','c','','wassce','2015',57,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:00'),(312,'In a life assurance contract, when does  the  principle of insurable interest arise?','At the beginning of the contract','At the time of claim','At the middle of the contract','At the time of payment of premium','','','a','','wassce','2015',55,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:34'),(313,'Which class of life assurance would a young couple who desires to start a new business in five years time purchase?','Whole life policy','Limited whole life policy','Keyman policy','Endowment policy','','','d','','wassce','2015',60,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:06'),(314,'In which of the following policies is <em>certificate of insurance</em>  used?','Burglary insurance','Product liability insurance','Employer’s liability insurance','Money insurance','','','c','','wassce','2015',44,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:14'),(315,'Which  of  the  following  would  not  give  cause  for subrogation right?','Benefit','Contract','Statute','Salvage','','','a','','wassce','2015',45,'Admin','2017-01-09 14:33:35','2020-05-28 21:02:31'),(316,'Educational endowment policy is designed to protect the interest of','father','mother','child','uncle','','','c','','wassce','2015',45,'Admin','2017-01-09 14:33:35','2020-05-28 21:02:39'),(317,'A clause in an insurance policy that makes a claim jointly payable to the policyholder and the third party is','claim clause','mortgagee clause','mortgage clause','joint liability clause','','','d','','wassce','2015',47,'Admin','2017-01-09 14:33:35','2020-05-28 21:02:40'),(318,'The policy that covers  an  insured  employee  against injury  sustained  in  the  course  of  employment  is','professional indemnity','product liability','public liability','employer’s liability','','','d','','wassce','2015',60,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:58'),(319,'What is  the  maximum  liability which the insurer can pay on a particular loss?','Average','Sum insured','Franchise','Excess','','','a','','wassce','2015',51,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:22'),(320,'A policy taken to cover several shipments for a sum assured is','floating policy','valued policy','declaration policy','special policy','','','a','','wassce','2015',46,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:01'),(321,'A policy taken for full protection against fire and other risks such as flood, tempest, riot and civil commotion is','consequential loss','fire and all risks policy','combined householder’s policy','fire and special perils','','','a','','wassce','2015',56,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:55'),(322,'The  person  that   transfers  risks  to  the  insurance company is called','a broker','an insured','an underwriter','a loss adjuster','','','b','','wassce','2015',61,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:35'),(323,'A clause in marine insurance policy prohibiting the insured from giving up a damaged property is','deductible','abandonment','indemnity','compensation','','','a','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:23'),(324,'Insurance is described as a risk','avoidance mechanism','regulating mechanism','transfer mechanism','assessment mechanism','','','c','','wassce','2015',54,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:54'),(325,'A fire insurance policy valued at N= 250,000 is issued at the rate of 0.2%. How much would the premium be, if the policy is granted with 5% long - term agreement discount?','N= 475','N= 500','N= 12,500','N= 13,000','','','a','','wassce','2015',60,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:38'),(326,'What is the full meaning of “NCRIB” in the insurance industry?','National  Council of  Registered Insurance  Brokers','Nigerian  Council of  Registered Insurance  Brokers','Nigerian Corporation of Registered Insurance Brokers','National Corporation of Registered Insurance Brokers','','','b','','wassce','2015',57,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:18'),(327,'Which of the following is not a function of an insurance underwriter?','Determining rates and coverage for the risk','Deciding whether to take the risk','Looking for an insurer to take the risk','Deciding whether to reject the risk','','','a','','wassce','2015',48,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:28'),(328,'The cover that is taken at the option of the motor vehicle owner is','a comprehensive cover','an act only cover','a third party only cover','a special type cover','','','c','','wassce','2015',59,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:51'),(329,'The  sum  insured  for  a  risk  is  N= 150,000  and  was accepted  for  fire  insurance at a rate of  0.25%. How much will the insured pay as a premium?','N= 125','N= 375','N= 500','N= 875','','','b','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:58'),(330,'The amount payable to an insured in the event of fire damage of household items is the','cost of repair','actual cash value','replacement cost','sum insured','','','d','','wassce','2015',57,'Admin','2017-01-09 14:33:35','2020-05-28 21:02:48'),(331,'A motorist travelling from Ghana to Nigeria would be required to obtain one of the following types of motor insurance cover','green card','brown card','yellow card','purple card','','','b','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:56'),(332,'One of the benefits payable under personal accident insurance policy is','retirement benefit','surrender benefit','death benefit','transfer benefit','','','c','','wassce','2015',57,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:09'),(333,'A  trade  group for insurance  companies in  Nigeria is called','Chartered Insurance Institute of Nigeria','National Insurance Commission','Nigerian Corporation of Registered Insurance Brokers','Nigerian Insurers Association','','','d','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:27'),(334,'The process of  assessing  risks  in  insurance  and classifying them according to their degree of insurability so  that  the  appropriate  rate  may  be  assigned  is','inspecting','underwriting','surveying','evaluating','','','d','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:57'),(335,'Who  among  the  following  is  an  employer  of  loss adjuster?','Insurer','Broker','Insured','Agent','','','a','','wassce','2015',57,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:38'),(336,'The meaning of with <em>profit policy</em>  in life assurance is that the sum assured is paid','without profit','with profit','with interest','without interest','','','c','','wassce','2015',64,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:42'),(337,'The  document issued by  the  insurer when there is a change in the particulars of a risk insured is','endorsement','certificate','voucher','policy','','','a','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:39'),(338,'The amount charged when a ship overstays at the port under a marine contract is','penalty','fine','overcharge','demurrage','','','d','','wassce','2015',53,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:14'),(339,'Which of the following documents forms the basis of a contract in insurance business?','Policy document','Proposal form','Claim form','Discharge form','','','a','','wassce','2015',60,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:25'),(340,'The  difference  between  theft  and burglary insurance lies in evidence of','pilfering  of insured items','removal of insured items by tricks','forceful violent entry or exit affecting insured items','threat leading to loss of insured items','','','c','','wassce','2015',51,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:35'),(341,'The right of choice of option for method of indemnity is exercised by the','insured','insurance broker','insurance consultant','insurer','','','d','','wassce','2015',53,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:30'),(342,'Cover note  in  motor  insurance is issued for a period not exceeding','30 days','60 days','90 days','120 days','','','a','','wassce','2015',52,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:50'),(343,'Which of the following activities is not involved in claims management?','Proof of loss','Particulars of loss','Premium calculation','Primary investigation','','','c','','wassce','2015',49,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:18'),(344,'Life  assurance  contract is useful to a policyholder in the area of','production','protection','industrialization','rehabilitation','','','b','','wassce','2015',60,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:37'),(345,'Which  of  the  following  functions  is  related  to  life assurance contract? Benefits are','determined  on  the  happening  of  insured  event','determined by the indemnity doctrine','determined at the inception of the policy','assessed by the extent of the loss','','','c','','wassce','2015',61,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:32'),(346,'The saving element in a permanent life assurance policy which represent the policyholder’s interest in the policy is','surrender value','cash value','sum assured','residual value','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:51'),(347,'Which of the following is a duty of an insured in an insurance contract?','Concealment of facts','Exposure of facts','Disclosure of facts','Acceptance of facts','','','c','','wassce','2015',52,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:57'),(348,'The principle of maritime law which makes owners of a ship and cargo share in a loss incurred voluntarily is','special average','general average','specific average','particular average','','','b','','wassce','2015',53,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:39'),(349,'Which of the following factors limits indemnity?','Cession','Re - insurance','Excess','Co - insurance','','','b','','wassce','2015',53,'Admin','2017-01-09 14:33:36','2020-05-28 21:02:32'),(350,'A  temporary  insurance  document  providing  coverage until a permanent policy is issued is','proposal form','cover note','policy document','insurance certificate','','','b','','wassce','2015',56,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:40');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `irk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `irk` VALUES (1,'The reason Mecca suwar lay emphasis on oneness of Allah is because  ','it was the only way to call Mecca to Islam  ','it is the only article of faith  ','it is the only article of peace between Prophet Muhammad and the Mecca  ','the pre-Islamic Mecca were idolatrous ','','','d','','post-utme-aaua','2012',736,'Admin','0000-00-00 00:00:00','2020-06-06 13:29:01'),(2,'Uthman B. Affan reigned between  ','644 and 656 ','657 and 688  ','655 and 657  ','644 and 655  ','','','a','','post-utme-aaua','2012',774,'Admin','0000-00-00 00:00:00','2020-06-25 23:14:59'),(3,'The final and total prohibition of intoxicants is contained in Surah  ','al-Baqarah  ','an-Nisa  ','al-Maidah  ','al- I a  ','','','c','','post-utme-aaua','2012',749,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(4,'Hajjatul Wada of Prophet Muhammad was delivered in ','632','630','628','631','','','a','','post-utme-aaua','2012',754,'Admin','0000-00-00 00:00:00','2020-07-01 18:20:57'),(5,'Suratul-Kawthar was revealed following the _____ of the Mecca  ','uproar  ','insinuation  ','intolerance  ','resistance  ','','','b','','post-utme-aaua','2012',760,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(6,'Zakat is paid on the following except____  ','cash  ','cattle  ','slaves','all of the above ','','','c','','post-utme-aaua','2012',744,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(7,'The i itial suggestio  to o pile the Qu a   as aised   ','A u Bak  ','Umar B. Khattab  ','Zaid B. Thabit  ','Uthman B. Affan  ','','','b','','post-utme-aaua','2012',761,'Admin','0000-00-00 00:00:00','2020-06-06 13:39:22'),(8,'One importance of wearing the Ihram during Hajj is_____  ','it directs the mind of all Muslims towards Allah  ','it purifies the Muslims  ','it makes all Muslims equal  ','it distinguishes pilgrims by country of origin  ','','','c','','post-utme-aaua','2012',761,'Admin','0000-00-00 00:00:00','2020-06-26 10:34:52'),(9,'The reason for the declaration of Jihad against the Islamic state of Borno by Muhammad Bello wasbecause of the people','rebellion  ','extremism ','syncretism  ','fundamentalism ','','','c','','post-utme-aaua','2012',750,'Admin','0000-00-00 00:00:00','2020-06-06 13:43:36'),(10,'The oa d gi e  to P ophet Muhad is the first  e elatio  of the Qu a  tells us about ____ ','education  ','prosperity  ','worship  ','Allah ','','','a','','post-utme-aaua','2012',748,'Admin','0000-00-00 00:00:00','2020-06-06 13:39:22'),(11,'?eek k o ledge, e e  u to Chi a   ea s ____ ','go to China to seek knowledge  ','knowledge is found in China  ','go at any length to seek knowledge  ','knowledge must be sought in china   ','','','c','','post-utme-aaua','2012',765,'Admin','0000-00-00 00:00:00','2020-06-06 13:43:36'),(12,'The spokesman of the Muslims before Emperor Negus was ','Jaafar  ','Al-As  ','Abu Musa  ','Masa Musa  ','','','a','','post-utme-aaua','2012',736,'Admin','0000-00-00 00:00:00','2020-06-25 23:14:58'),(13,'The first place of Muslims ig atio   as ___','Abyssinia  ','Taif  ','Medina  ','Yathrib ','','','b','','post-utme-aaua','2012',744,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21'),(14,'Al-Tawrat was revealed to  ','Isa  ','Musa  ','Prophet Muhammad  ','Idris ','','','b','','post-utme-aaua','2012',741,'Admin','0000-00-00 00:00:00','2020-06-06 09:25:49'),(15,'Literally, Boko Haram means  ','book is forbidden  ','education is forbidden  ','Western education is forbidden  ','school is forbidden  ','','','c','','post-utme-aaua','2012',727,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(16,'Wudu means  ','ablution','dry ablution  ','water ablution  ','wet ablution ','','','b','','post-utme-aaua','2012',764,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21'),(17,'If Alhaji Musa Ayuba invested N10, 000: 00 in a business and made a profit of N2, 000: 00 at the','N215.00','N100: 00  ','N50:00  ','N1000:00 ','','','c','','post-utme-aaua','2012',759,'Admin','0000-00-00 00:00:00','2020-06-25 23:14:58'),(18,'Ibadah refers to  ','worship of ancestors  ','worship of the Prophet  ','worship of the caliphs ','worship of Allah  ','','','d','','post-utme-aaua','2012',775,'Admin','0000-00-00 00:00:00','2020-06-06 13:39:22'),(19,'Shirk means ____  ','monotheism ','polytheism','henotheism  ','syncretism ','','','b','','post-utme-aaua','2012',731,'Admin','0000-00-00 00:00:00','2020-06-05 22:12:32'),(20,'Which one of the following is not associated with shirk _____ ','idol worship  ','trinity  ','monotheism  ','henotheism ','','','c','','post-utme-aaua','2012',746,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(21,'If a Muslim prays five times daily on a regular basis, how many times will he have prayed a regular ','1825','1835','1835','1845','','','a','','post-utme-aaua','2012',715,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21'),(22,'Lakum dinukum wa Liya dinin means  ','religion is good  ','to you is my religion and to me yours  ','to you is your religion and to me is my religion ','my religion is better than yours  ','','','c','','post-utme-aaua','2012',725,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(23,'According to Islamic traditions, inability to marriage may rise as a consequence of   ','defects in sex organs  ','permanent illness  ','impotence  ','all of the above  ','','','d','','post-utme-aaua','2012',726,'Admin','0000-00-00 00:00:00','2020-06-06 13:43:36'),(24,'Walam yakun lahu Kufuwan Ahadun is_____  ','the second ayat of the 112th surah  ','sixth ayat of the 111th surah  ','fourth ayat of the 112th surah ','seventh ayat of the 114th surah  ','','','c','','post-utme-aaua','2012',776,'Admin','0000-00-00 00:00:00','2020-07-01 04:51:36'),(25,'The main message of ayay Amanar-Rasul is  ','the significance of knowledge  ','the articles of faith  ','the pillars of Islam  ','payment of Zakat ','','','b','','post-utme-aaua','2012',734,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21'),(26,'Talaq al-','irrevocable ','revocable  ','impermissible  ','detestable ','','','a','','post-utme-aaua','2012',730,'Admin','0000-00-00 00:00:00','2020-06-06 00:48:19'),(27,'The word Hafizi in Q.  82: 10 means  ','angels  ','jinns  ','spirits ','man  ','','','a','','post-utme-aaua','2012',736,'Admin','0000-00-00 00:00:00','2020-06-30 13:21:41'),(28,'When Prophet Muhammad got to Yathrib, he had to first and foremost settle the feud between  ','Aws and Khazraj  ','banu Nadir and Mecca  ','Mecca and Medina ','Aws and Nadir  ','','','a','','post-utme-aaua','2012',741,'Admin','0000-00-00 00:00:00','2020-06-06 13:39:22'),(29,'The prophet admonishes that if an abomination is found, a true Muslim should at least  ','hate if from his heart  ','change it with his hands immediately  ','condemn it publicly  ','declare Jihad  ','','','a','','post-utme-aaua','2012',741,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(30,'The reason Q.  2: 219 forbids wine ad gambling is because  ','they lead one to greater sin than gain  ','they lead to poverty ultimately ','they lead to extravagance and intoxication  ','they make a Muslim to abandon religion  ','','','a','','post-utme-aaua','2012',747,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `mathematics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `mathematics` VALUES (1,'A regular polygon has each of it angles at 160. What is the number of sides of the polygon? ','36','9','18','20','','','c','','post-utme','2006',1040,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:46'),(2,'A girl walks 30m from a point P on  a bearing of 040 to a point Q. she   then walks 30m on a bearing of 140 to a point R. the bearing of R from P is ','90','50 ','45','40','','','a','','post-utme','2006',1023,'Admin','0000-00-00 00:00:00','2020-07-02 09:22:34'),(3,'How many different three digit numbers can be formed using the integers 1 to 6 if no integer 1 to 6 if no integer occurs twice in a number? ','720','1260','2520','5040','','','b','','post-utme','2006',1018,'Admin','0000-00-00 00:00:00','2020-07-01 07:32:36'),(4,'In how many different ways can the letters of the word GEOLOGY be arranged in order? ','720','1260','2520','5040','','','c','','post-utme','2006',1032,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:46'),(5,'A cyclist rode for 30minutes at xhkm/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14   ','x<20  ','x<29  ','x< 28','','','d','','post-utme','2006',1040,'Admin','0000-00-00 00:00:00','2020-07-01 17:58:51'),(6,'A business invested a total of N200,000 in two companies which paid dividends of 5% and 7% respectively. If the received a total of N11, 600 as dividend, how much did he invest at 5% ','N160,000 ','N140,000 ','N120,000 ','N80,000','','','c','','post-utme','2006',1031,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(7,'In a class, 37 students take a least one of chemistry, Economics and Government, 8 students take Chemistry, 19 take Economics and 25 take Government, 12 students take Economics and Government but nobody takes Chemistry and Economics. How many students take both chemistry and Government? ','3','4','5','6','','','a','','post-utme','2006',1046,'Admin','0000-00-00 00:00:00','2020-07-01 10:58:24'),(8,'Solve for p in the following  equation given in base two  11(p+ 110) = 1001p   ','10','11','110','111','','','b','','post-utme','2006',1049,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(9,'Factorize 16(3x+2y)2-25 (a+2b)2','(12x +8y+5a+10b)(12x+8y-5a-10b)    ','(12x+8y-5a-10b) (12x+8y-5a-10b),    ','20 (3x +2y-a-2b)(3x+2y+a+2b)  ','20(3x+2y+a+2b) (3x+2y+a+2b).','','','a','','post-utme','2006',1032,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(10,'1.3logx+logy =3. Then, y is  ','(10/x)3 ','(x/10)3  ','(x/10)-3 ','(10/x)1-1/3 ','','','a','','post-utme','2006',1041,'Admin','0000-00-00 00:00:00','2020-07-01 18:46:03'),(11,'Z is partly constant and partly varies inversely as the square of d. when d = 1, z = 11 and when d = 2, z = 5. Find the value of z when d = 4.  ','2','3.5','5','5.5','','','b','','post-utme','2006',1006,'Admin','0000-00-00 00:00:00','2020-07-01 18:00:48'),(12,'Expand the expression (x2-2x-3)(x2+x+1).  ','x4-4x2-5x-3  ','–x3-4x2+5x-3','x4-x3-4x2-5x-3  ','x4-4x2-5x -3','','','c','','post-utme','2006',1012,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:22'),(13,'The indefinite integral of the function f(x) = xcosx for any constant k, is ','–cos + sinx +k,  ','xsinx-cosx,   ','xsinx for any constant k,   ','x+sinx+cosx+k','','','c','','post-utme','2006',984,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(14,'The trigonometric expression cos 2A +sin 2A can be written as    ','cosA (cosA-sinA),    ','Cos2A +sin2A-2sinAcosA,  ','Cos2A + sin2A = Cos2A –sin2A+2sinAcosA','cos2A+sin2A','','','c','','post-utme','2006',1011,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(15,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is with replacement: ','0.9','1','0.47','0.49','','','d','','post-utme','2006',1022,'Admin','0000-00-00 00:00:00','2020-07-01 17:54:21'),(16,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is without replacement ','0.1','0.47','0.42','0.21','','','b','','post-utme','2006',1088,'Admin','0000-00-00 00:00:00','2020-07-01 17:57:38'),(17,'The interior angles of a pentagon are: 180o, 118o, 78o, 84o and  x. The value of x is: ','80o ','108o  ','120o  ','134o','','','a','','post-utme','2007',1029,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:46'),(18,'All the vertices of an isosceles triangle lie on a circle and each of the base angles  of the triangle is 65o. The angle subtended at the centre of the circle by the base of the triangle is: ','130o  ','115o  ','50o  ','65o','','','c','','post-utme','2007',1017,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(19,'A square tile measures 20cm by 20cm. How many of such tiles will cover a floor measuring 5m by 4m? ','500','400','320','250','','','a','','post-utme','2007',1044,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(20,'The volume of a certain sphere is numerically equal to twice its surface area. The diameter of the sphere is: ','6','9','12','','','','c','','post-utme','2007',1027,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(21,'A bearing of 310o, expressed as a compass bearing is: ','N50oW  ','N40oW  ','S40oW  ','S50oW','','','a','','post-utme','2007',990,'Admin','0000-00-00 00:00:00','2020-07-01 18:46:03'),(22,'Which of the following specified sets of data is not necessarily sufficient for the construction of a triangle? ','three angles  ','two sides and a right angle  ','two sides and an included angle ','three sides','','','a','','post-utme','2007',1051,'Admin','0000-00-00 00:00:00','2020-07-01 18:00:54'),(23,'The average age of the three children in a family is 9 years. If the average age of their parent is 39 years, the average age of the whole family is: ','20 years  ','21years  ','24years  ','27years','','','b','','post-utme','2007',981,'Admin','0000-00-00 00:00:00','2020-07-01 18:00:42'),(24,'Evaluate x in base 3 if 41x-22x=17x. ','11','8','12','22','','','d','','post-utme','2007',1117,'Admin','0000-00-00 00:00:00','2020-07-01 18:46:16'),(25,'When the price of egg was raised by N2 an egg, the number of eggs which can be bought for N 120 is reduced by 5. The present price of an egg is ','N 6. ','N 7  ','N 8','N10','','','c','','post-utme','2007',1001,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:22'),(26,'How long will take a sum of money invested at 8% simple interest to double the original sum? ','8 years  ','10.5years  ','(1years ','12.5years','','','d','','post-utme','2007',1001,'Admin','0000-00-00 00:00:00','2020-07-01 17:58:51'),(27,'The journey from Lagos to Ibadan usually takes a motorist 1 hour 30 minutes. By increasing his average speed by 20km/hr, the motorist saves 15 minutes. His usual speed, in Km/hr is ','100','90','85','80','','','a','','post-utme','2007',996,'Admin','0000-00-00 00:00:00','2020-07-01 18:00:48'),(28,'The smallest section of a rod which can be cut 36cm in length is','90cm ','180cm ','360cm  ','540cm.','','','b','','post-utme','2007',1001,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(29,'If x= 0.0012 + 0.00074 + 0.003174, what is the difference between x to 2 decimal places and x to 1 significant figure? ','0.01','0.0051','0.1','0.005','','','d','','post-utme','2007',1025,'Admin','0000-00-00 00:00:00','2020-07-01 18:46:16'),(30,'In a survey of 100 students in an institution, 80 students speak Yoruba, 22 speak Igbo, while 6 speak neither Igbo nor Yoruba. How many students speak Yoruba and Igbo? ','96','8','64','12','','','b','','post-utme','2007',1038,'Admin','0000-00-00 00:00:00','2020-07-02 09:22:27'),(31,'The expression a 3 + b 3 is equal  to ','(a2 +b)(a-ab+b2 )','(a+b)(a2 –ab+b2 )  ','(a-b2)(a2-  ab+b)','(a­-b)(a2+ab+b2)','','','b','','post-utme','2008',1071,'Admin','0000-00-00 00:00:00','2020-07-01 18:46:09'),(32,'Factorize 16(3x +2y)2 -25(a+2b)2  ','(12x + 8y -5a-10b)(12x+8y-5a-10b)','20(3x +2y-a-2b)(3x+2y+a+1-2b) ','(12x +8y+5a+10b)(12x +8y-5a-10b)','20(3x +2y+ a+2b)(3x + 2y+a+2b)','','','a','','post-utme','2008',982,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(33,'A cone has base radius 4cm and  height 3cm. The area of its curved surface is','12pcm2     ','20pcm2','24pcm2 ','15cm2','','','b','','post-utme','2008',1006,'Admin','0000-00-00 00:00:00','2020-07-01 17:51:45'),(34,'A. cylinder has height 4cm and base radius 5cm.its volume to 3 significant figure is  ','314.2cm2 ','31.42 cm2 ','251 4cm2 ','251cm2','','','b','','post-utme','2008',1050,'Admin','0000-00-00 00:00:00','2020-07-01 18:00:42'),(35,'A cyclist rode for 30minutes at xkm/hr and due to a breakdown, he had to push the bike for 2hrs at (x – 5) km/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14','x<29','x<28','x<20','','','c','','post-utme','2008',1034,'Admin','0000-00-00 00:00:00','2020-07-01 18:46:16'),(36,'The expression ax2 + bx takes the value 6 when x = 1 and 10 when x = 2. Find its value when  x = 5       ','10','12','6','.-10','','','a','','post-utme','2008',1053,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:46'),(37,'Dividing 2x3 – x2 – 5x + 1 by x  + 3 gives the remainder ','.-3','47','61','-47','','','d','','post-utme','2008',1041,'Admin','0000-00-00 00:00:00','2020-07-01 17:59:00'),(38,'The difference of two numbers is 10, while their product is 39. Find these numbers','– 3 and 10 or 13 and 10,','3 and – 10 or 3 and 13,  ','3 and – 3 or 3 and 13,     ',' – 3 and – 13 or   13 and  3 ','','','d','','post-utme','2008',1051,'Admin','0000-00-00 00:00:00','2020-07-01 18:00:54'),(39,'The average age of x pupils in a class is 14 years 2 months. A pupils of 15years 2 months joins the class and  the average age is increased  by one month. Find x.      ','12, ',' 6, ','11,','14,','','','c','','post-utme','2008',1089,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(40,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. 13. How many learn both languages? ','60','45','15','120','','','c','','post-utme','2008',980,'Admin','0000-00-00 00:00:00','2020-07-01 17:57:59'),(41,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. How many learn Igbo only?   ','45','30','15','60','','','a','','post-utme','2008',1029,'Admin','0000-00-00 00:00:00','2020-07-02 09:22:27'),(42,'If the distance covered by a body in time t seconds is s = t2 - 6t2  - 5t, what is its initial velocity?  ','0ms-1    ','-4 ms-1 ','(13t2  - 12t + 5) ms-1   ','5ms-1 ','','','d','','post-utme','2008',1071,'Admin','0000-00-00 00:00:00','2020-07-02 09:20:10'),(43,'The trigonometric expression cos2A + sin 2A can be written as:  ','cosA(cosA + sinA)  ','B.cos2A + sin2A – 2sinAcosA,  ','2sinAcosA + cos2A + sin2A,  ','D.cos2A +sinA  – 2sinAcosA','','','c','','post-utme','2008',967,'Admin','0000-00-00 00:00:00','2020-07-01 17:57:30'),(44,'With replacement ','0.9,','1, ','0.4,','0.49','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','d','','post-utme','2008',990,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:12'),(45,'Without replacement ','0.1, ','0.47, ','0.42,   ','0.21','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','b','','post-utme','2008',1090,'Admin','0000-00-00 00:00:00','2020-07-01 18:46:09'),(46,'The fair coins are tossed simultaneously. What is the probability of obtaining at least 1 tail turns up? ','1/4','3/4','1/2','1','','','b','','post-utme','2008',1048,'Admin','0000-00-00 00:00:00','2020-07-02 09:19:53'),(47,'A regular polygon has each of it angles as 1600. What is the number of sides of the polygon?  ','18,    ','36,       ','9,     ','20','','','a','','post-utme','2008',1014,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(48,'One angle of an octagon is 1000 while the other sides are equal. Find each of these exterior angles. ','800,','600,','1400,           ','400,   ','','','d','','post-utme','2008',1024,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:46'),(49,'A sector circle of radius 7.2cm which subtends an angle of 3000 at the centre is used to   form a cone. What is the radius of the base of the cone?. ','6cm ','7cm ','8cm    ','9cm      ','','','a','','post-utme','2009',963,'Admin','0000-00-00 00:00:00','2020-07-02 09:20:10'),(50,'If 32y – 6(3y) = 27, find y ','3','-1','2','-3','','','c','','post-utme','2009',1015,'Admin','0000-00-00 00:00:00','2020-07-02 09:19:53'),(51,'An (n-2)2 sided figure has n diagonal, find the number n of diagonal for a 25 sided Figure   ','8','7','6','10','','','b','','post-utme','2009',1054,'Admin','0000-00-00 00:00:00','2020-07-02 15:41:39'),(52,'A sum of money was invested at 8% per annum simple interest. If after 4 years, the   money became ','N180 ','N 165 ','N15   ','N 200','','','d','','post-utme','2009',1079,'Admin','0000-00-00 00:00:00','2020-07-01 17:57:43'),(53,'Two fair dice are rolled. What is the probability that both show up the same number of point?','1/36 ','7/36 ','½ ','1/6','','','d','','post-utme','2009',1045,'Admin','0000-00-00 00:00:00','2020-07-02 09:22:34'),(54,'Find the probability of selecting a figure which is parallelogram from a square, a rectangle, a rhombus, a kite and a trapezium  ','3/5 ','2/5 ','1/5 ','1/5 ','','','a','','post-utme','2009',1121,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:12'),(55,'A man kept 6 black, 5 brown and 7 purple shirts in a drawer. What is the probability of his picking a purple shirt with his eyes close ','1/7','7/18 ','11/18 ','7/11','','','b','','post-utme','2009',1020,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:22'),(56,'If P varies inversely as V and V varies directly as R2, find the relationship between P and R given that R = 7 when P = 2 ','P = 98R2 ','PR2 = 98 ','P2R = 89 ','P = 1/98R ','','','b','','post-utme','2009',1127,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(57,'If 7 and 189 are the first and fourth terms of a geometric progression respectively find the sum of the first three terms of the progression ','182','180','91','63','','','c','','post-utme','2009',1104,'Admin','0000-00-00 00:00:00','2020-07-02 09:22:34'),(58,'Find the positive number n such that thrice its square is equal to twelve time the number ','1','4','2','5','','','b','','post-utme','2009',1092,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(59,'Given a regular hexagon, calculate each interior angle of the hexagon ','60','30','120','15','','','c','','post-utme','2009',1077,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(60,'Factorize 6x2 – 14x – 12 ','2(x + 3)(3x – 2) ','6(x – 2)(x + 1) ','2(x – 3)(3x + 2) ','6(x + 2)(x – 1) ','','','c','','post-utme','2009',1047,'Admin','0000-00-00 00:00:00','2020-07-01 17:48:26'),(61,'The value of (0.303)3 – (0.02)3 is ','0.019','0.0019','0.0268','0.000019','','','c','','post-utme','2009',1075,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(62,'What is the product of 27/5 ¸(3)3 and (1/5) ','5','3','2','1','','','c','','post-utme','2009',1059,'Admin','0000-00-00 00:00:00','2020-07-01 17:58:03'),(63,'Find the probability that a number selected at random 40 to 50 is a prime number   ','3/11','5/11','5/10','4/10','','','a','','post-utme','2009',1025,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(64,'If the length of the sides of a right angled triangle are (3x + 1)cm, (3x – 1)cm and xcm, what is x ? ','2','6','18','12','','','d','','post-utme','2009',991,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(65,'A number of pencils were shared out among peter, Paul and Audu in the ratio 2:3:5 respectively. If Peter got 5, how many were shared? ','15','25','30','50','','','b','','post-utme','2009',967,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(66,'Solve 4x2 +20x -24 =0',' 1, 6',' -1, -6','6, -1','-6, 1','','','d','','post-utme','2013',1038,'Admin','0000-00-00 00:00:00','2020-07-01 17:58:51'),(67,'What is the 15th term of the sequence -3, 2,7,…? ','65','66','68','67','','','d','','post-utme','2013',1008,'Admin','0000-00-00 00:00:00','2020-07-02 09:20:10'),(68,'What is the remainder when x3 +5x2-6x+1 is divided by x-1? ','-1','2','-2','1','','','d','','post-utme','2013',1033,'Admin','0000-00-00 00:00:00','2020-07-02 09:19:53'),(69,'If  are the roots of equation 6 +5x –x2 =0, find  x','11','-11','1','-1','','','b','','post-utme','2013',1055,'Admin','0000-00-00 00:00:00','2020-07-02 09:22:27'),(70,'Solve the equation  = 25x+4 ','-4, 2 ',' -4,-2 ','4, -2','4, 2','','','a','','post-utme','2013',992,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:22'),(71,'What is the coordinate of centre of the circle X2+y2+2x-4y =10?  ','(-1,-2)','( 1, 2)',' (-1, 2) ',' (1, -2)','','','d','','post-utme','2013',969,'Admin','0000-00-00 00:00:00','2020-07-01 18:48:22'),(72,'Solve the equation 3x+1 = 271-x  ','1/2','-1/2','3/4','-3/4','','','a','','post-utme','2013',1047,'Admin','0000-00-00 00:00:00','2020-07-01 17:51:45'),(73,'Given f(x) =3+x and g(x) =3-x, find g (f(x))','6','x','-x','0','','','b','','post-utme','2013',972,'Admin','0000-00-00 00:00:00','2020-07-01 17:57:43'),(74,'Differentiate sin (2x-5) with respect to x. ','cos (2x-5)','–cos (2x-5)   ',' 2cos (2x-5)','-2cos (2x-5)','','','c','','post-utme','2013',1054,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `naijafb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `naijafb` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'What is the full meaning of APC','All progress Congress','Alliance progress Congress','All progressive Congress','Alliance progressive Congress','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full meaning of PDP','Power for the People','People Democracy Party','People Democratic Party','Share the money sharp sharp','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'How old was President Buhari when he won 2015 presidential general election','70','72','73','74','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'About how many million votes did General Buhari use to deaf President Goodluck Jonathan?','10.1 Million','5.1 Million','2.1 million','1.1 million','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Who was the spoken man of APC during the presidential elections?','Liel Mohammed','Lia Mohammed','Bello Mohammed','Adams Mohammed','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who was the spoken man of PDP during the presidential elections?','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'President Buhari is from what state?','Kano','Kaduna','Katsina','Jigawa','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many presidential elections did General Buhari contested in before wining in2015?','3','5','4','2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'The only woman that contested in 2015 presidential election was from which party','ANPP','CPC','AA','KOWA','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'What is the name of first female Nigerian to run for office as a democratic president?','Funmilayo Ransome Kuti','Remi Sonaiya','Oby Ezekweslli','Bola Ara','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'2015 general election INEC chairman was','Attahiru Hammed Jega','Attahiru Mohammed Jega','Attahiru Muhammadu Jega','Atta Muhammadu Jega','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'The official release of 2015 presidential general election results was on','March 30th','March 31th','March 29th','April 4th','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'2015 general presidential election took place on','14-Mar','28-Mar','1-Apr','14-Feb','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' The spokesperson for President Goodluck Jonathan?s during 2015 election was','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which country won 2015 FIFA U-17 world cup','Mali','Nigeria','Brazi','Spain','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' Nigeria became a republic in','1960','1962','1963','1965','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What day is regarded as democracy day?','27-May','1-May','29-May','25-May','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What day is regarded as workers? day?','27-May','1-May','29-May','25-May','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' What day is regarded as children?s day?','27-May','1-May','29-May','25-May','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,' In year 2015, Nigeria as an independent state will be how old','50','53','54','55','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' What are the colors of Nigeria Flag?','Green white green','Green and white','Green , green white','Green brown green','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,' Nigeria commercial capital is','Abuja','Port Harcourt','Lagos','Kano','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' How many states are in Nigeria?','37','36','35','34','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' Which of the following is not a minister of President Buhari administration 2015','Babatunde fashola','Chris Ngige','Kayode Fayemi','Solomon David','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' How many ministers were appointed by President Buhari Administration?','30','37','32','36','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Which Nigeria army office allegedly looted 32 billion naira?','Gen. Sambo Dasuki','Col. Sambo Dasuki','Major. Sambo Dasuki','Officer Sambo Dasuki','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' The full meaning of EFCC is','Economic and Financial Crimes Conduct','Economic and Finances Crimes Commission','Economic and Financial Crimes Commotion','Economic and Financial Crimes Commission','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' What is the Capital of Jigawa State?','Bornu','Maiduguri','Dutse','Makurdi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' What is the Capital of Benue State?','Bornu','Maiduguri','Dutse','Makurdi','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' What is the Capital of Zamfara State?','Bornu','Maiduguri','Gusau','Makudi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `physics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `physics` VALUES (1,'A 70kg man ascends a flight of stairs of height 4m in 7s. The power expended by the man is;','40W ','100W ','280W ','400W','','','a','','post-utme','2006',3822,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(2,'A body accelerates uniformly from rest at 6ms-2 for 8 seconds and then decelerates uniformly to rest in the next 5 seconds. The magnitude of the deceleration is: ','9.6ms-2 ','48 ms-2 ',' 24 ms-2 ','39.2 ms-2','','','a','','post-utme','2006',3753,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(3,'A nail is pulled from a wall with a string tied to the nail. If the string is inclined at an angle of 30oC to the wall and the tension in the string is 50N, the effective force used in pulling the nail is: ','25N ','25√3 N ','50N ','50√3N','','','a','','post-utme','2006',3709,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(4,'If M and R are the mass and radius of the earth respectively and G is the universal gravitational constant, the earth’s gravitational potential at an altitude H above the ground level is: ','A.-GM/H ','–GM/(R+H) ','C. -GM/2H ','D. –GM/(R-H)','','','b','','post-utme','2006',3781,'Admin','0000-00-00 00:00:00','2020-06-30 09:44:34'),(5,'Which of the following statements is not true? ','as the slope of an incline plane increases, the velocity ratio decreases, ','the efficiency of an incline plane decreases as the slope increases ','the effort required to push a given load up an incline plane increases as the slope increases','The mechanical advantage of smooth incline plane depends on the ratio of the length to the height of the plane.','','','d','','post-utme','2006',3715,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(6,'The ice and steam point of a thermometer are 20mm and 100mm respectively: A temperature of 75oC correspond to Ymm on the thermometer. What is Y? ','100mm ','70mm ','80mm ','60mm','','','c','','post-utme','2006',3727,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(7,'  An electric kettle with negligible heat capacity is rated at 2000W, if 2.0kg of water is put in it, how long will it take temperature of water to rise from 20oC to 100oC? (specific heat capacity of water = 4200J/Kg-1K-1) ','336s ','240s ',' 168s ','84s','','','a','','post-utme','2006',3719,'Admin','0000-00-00 00:00:00','2020-06-30 14:59:09'),(8,' A quantity of ice –10oc is heated until temperature of heating vessel is 90oc. Which of the following constant is NOT required to determine the quantity of heat supplied to the vessel? ','Specific latent heat of vaporization ','specific heat capacity of ice ','specific latent heat of fusion ','specific heat capacity of water','','','a','','post-utme','2006',3727,'Admin','0000-00-00 00:00:00','2020-06-28 19:59:00'),(9,'The scent from a jar of perfume open move through the air molecules by ','evaporation ','osmosis ','diffusion ','Convection','','','c','','post-utme','2006',3879,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(10,'  A convex lens of focal length 10.0cm is used to form a real image which is half the size of the object. How far from the object is the image? ','45cm ','30cm ','15cm ','20cm','','','c','','post-utme','2006',3711,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(11,'An object of height 3.00cm is placed 10cm from a biconvex lens of 15cm, the image of the object is ','real and 3.00cm tall ','virtual and 3.00cm tall ',' virtual and 9.00cm tall ','real and 9.00cm tall','','','c','','post-utme','2006',3767,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(12,'The most suitable type of mirror used for the construction of search light is the: ','concave mirror ','Convex mirror ','Spherical mirror ','Parabolic Mirror','','','d','','post-utme','2006',3812,'Admin','0000-00-00 00:00:00','2020-07-02 15:52:12'),(13,'Light wave and ripples of water are similar because both','are longitudinal waves ','have the same velocity ','can be diffracted and refracted ','have the same frequency ','','','c','','post-utme','2006',3831,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(14,'Three 4Ω resistors were connected in series by Tola, while Ade connected the ','1:02','1:09','1:10','1:15','','','b','','post-utme','2006',3805,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(15,'A coil of copper wire of N turns is kept rotating between the poles of a magnet  such that the magnetic flux linking the coil changes continuously. Which of the  following statements is TRUE? ','An e.m.f is induced in the coil such that when  the change of flux is positive the e.m.f is positive, and when the change of flux is negative the e.m.f is negative. ','An e.m.f is induced in the coil whose magnitude  is inversely proportional to both the number of turns in the coil and the rate of  change of magnetic flux ','. An e.m.f is set up in the permanent magnet which  reduces the flux in the coil to zero ','A current flows in the coil and e.m.f is set  up proportional to both the rate of change of the flux and the number of turns','','','d','','post-utme','2006',3877,'Admin','0000-00-00 00:00:00','2020-06-29 06:41:18'),(16,'The principle of operation of an induction coil is based on ','Ohm’s law ','Ampere’s Law ','Faraday’s Law ','Coulomb’s Law','','','c','','post-utme','2006',3778,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(17,'Which of the following radiations cannot be deflected by an electric field or ','(i) and (ii) only ','(ii) only ','(iii) and (iv) only ','(i) and (iii) only','','','c','','post-utme','2006',3759,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(18,'The half-life of a radioactive element is 9 days. What fraction of atoms has decayed in 36 days? ','16-Jan','¼ ',' ½ ','15/16','','','d','','post-utme','2006',3730,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(19,'What is the dimension of pressure? ','ML-1T-2 ','MLT-2 ','ML2T-3 ','ML-3','','','a','','post-utme','2007',3788,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(20,'Calculate the length of a displaced pendulum bob that passes its lowest point twice every second. [g=10ms-1] ','.100m ','0.253m ','0.450m ','0.58m','','','b','','post-utme','2007',3737,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(21,'When a ball rolls on a  smooth level ground, the motion of its centre is ','translational ','Random ','Oscillatory ','Rotational','','','a','','post-utme','2007',3848,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(22,'A vehicle of mass m is driven by an engine of power P from rest. Find the minimum time it will take to acquire a speed v. ','mv2/p ','mv2/2p ','mv/p ','mv/2p','','','b','','post-utme','2007',3733,'Admin','0000-00-00 00:00:00','2020-07-02 15:49:35'),(23,'A box of mass 40kg is being dragged  along by the rope inclined at 60o to the horizontal. The frictional force between the box and the floor is 100N and the tension on the rope is 300N. How much work is done in dragging the box through a distance of 4m? ','680J ','200J ','100J ','400J','','','c','','post-utme','2007',3804,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(24,'A body is projected from the earth’s surface with the hope of letting it escape from the earth gravitational field. What is the minimum escape velocity?  [Earth’s radius = 6.4 x 103km, g = 10 ms-2]','11.3kms-1 ','13.3kms-1 ','12.3kms-1 ','14.3kms-1 ','','','a','','post-utme','2007',3741,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(25,'A uniform rod PQ of mass 2kg and length of 1m is pivoted at the end P, if a load of 14N is placed at the centre, find the force that should be applied vertically upwards at Q to maintain the rod in equilibrium ','7N ','28N ','68N ','17N','','','d','','post-utme','2007',3754,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(26,'The energy contained in wire when it is extended by 0.02m by a force 500N is ','104J ','103J ','10J ','5J','','','d','','post-utme','2007',3856,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(27,'What is the acceleration due to gravity ‘g’ on the moon, if ‘g’ is   10ms-2 on the earth?','0.74ms-2 ','0.1ms-2 ','10.0 ms-2 ','1.67 ms-2','','','c','','post-utme','2007',3765,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(28,'A 5kg block is released from rest on a smooth plane inclined at an angle of 30o to the horizontal. What is the acceleration down the plane?  [ g = 10ms-2]','5.0 ms-2 ',' 8.7 ms-2 ','25.0 ms-2 ','5.8 ms-2   ','','','a','','post-utme','2007',3899,'Admin','0000-00-00 00:00:00','2020-07-02 15:49:19'),(29,'A rectangular metal block of volume 10-6m3 at 273K is heated to 573K, if the coefficient of linear expansion is 1.2 x 10-5K-1, the percentage change of its volume is ','1.50%','1.10%','0.10%','0.40%','','','b','','post-utme','2007',3712,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(30,'A temperature scale has a lower fixed point of 40mm and an upper fixed point of 200mm. What is the reading on this scale when the temperature reads 60oc? ','136.omm ','33.3mm ','96.0mm ','36.0mm','','','a','','post-utme','2007',3776,'Admin','0000-00-00 00:00:00','2020-06-30 14:59:09'),(31,'A 500kg car was initially at rest travelled with an acceleration of 5ms-2, what is its kinetic energy after 4s ','2.5 x 103J ','105J ','5 x 103J ','5 x 105J','','','b','','post-utme','2007',3748,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(32,'The temperature at which the water vapour in the air saturates the air and begins to condense is','melting point ','triple point ','dew point ','melting point','','','c','','post-utme','2007',3736,'Admin','0000-00-00 00:00:00','2020-06-28 19:59:00'),(33,'The period of a simple pendulum will increase by what factor of its extensible length increased by a factor of four ','2','4','2','¼','','','c','','post-utme','2007',3823,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(34,'An air column 10cm in length is trapped into the sealed end of a capillary tube by a 15cm column of mercury with the tube held vertically. On inverting the tube, the air column becomes 15cm long, what is the atmospheric pressure during the experiment? ','76cm ','75cm ','60cm ','70cm','','','b','','post-utme','2007',3725,'Admin','0000-00-00 00:00:00','2020-06-28 20:24:18'),(35,'An electric cell has an internal resistance of 2Ω. A current of 0.5A was measured when a resistor of resistance 5Ω was connected across it. Determine the electromotive force of the cell','3.5V ','2.5V ','4.5V ','2.35V','','','a','','post-utme','2007',3874,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(36,'The speed of light in air is 3 x 108ms-1. If the refractive index of light from air to water is 4/3, calculate the speed of light in water ','2.25 x 108ms-2 ','2.25ms-1 ','4.00ms-1 ','4.33ms-1','','','c','','post-utme','2007',3760,'Admin','0000-00-00 00:00:00','2020-06-30 15:07:30'),(37,'It is known that an atomic nucleus comprises of positive charged protons. Which of the following also exist in the nucleus? ','a beta particle ','an Alpha particle ','A neutron ','An electron','','','c','','post-utme','2007',3800,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(38,'The silver wall of a vacuum flask prevents heat loss due to ','conduction ','Convection ','Radiation ','Diffraction','','','c','','post-utme','2007',3738,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(39,'The electromagnetic waves that are sensitive to temperature changes are','ultra-violet rays ','Gamma rays ','infrared-rays ','X-rays','','','c','','post-utme','2007',3687,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(40,'Under constant tension and constant mass per unit length, the note produced by a plucked string is 500Hz when the length of the string is 0.90m, at what length is the frequency 150Hz?','6m ','3m ','5m ','4m','','','b','','post-utme','2007',3829,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43'),(41,'Two bodies P and Q are projected on the same horizontal plane, with the same initial speed but at different angles of 30o and 60o respectively to the horizontal. Neglecting air resistance, what is the ratio of range of P to that of Q? ','1:01','1:√3 ','√3:1 ','1:02','','','a','','post-utme','2007',3775,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(42,'A capacity of 2.0 x 10-11F and an inductor are joined in series. The value of the inductance that will give the circuit a resonant frequency of 200KHz is ','1/16H ','1/8H ','1/64H ','1/32H','','','d','','post-utme','2007',3825,'Admin','0000-00-00 00:00:00','2020-07-02 17:56:43'),(43,'Which of these is not a fundamental S.I unit ','Ampere ','Kelvin ','Seconds ','Radians','','','d','','post-utme','2009',3804,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(44,'If two masses 40g and 60g respectively, are attached firmly to end of a light metre rule, what is the centre of gravity of the system? ','at the mid point of the metre rule ','40cm from the lighter mass ','40cm from the heavier masses ','60cm from the heavier masses ','','','c','','post-utme','2009',3888,'Admin','0000-00-00 00:00:00','2020-07-02 15:49:31'),(45,'To find the dept of the sea, a ship send out a second waves and an echo after one second. If the velocity of sound in water is 1500m/s, what is the depth of the sea ','0.75km ','1.50km ','2.20km ','3.00km ','','','a','','post-utme','2009',3634,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(46,'A machine has a velocity ratio of 5, if it requires a 50kg weight to overcome 200kg weight, the efficiency is? ','4%','5%','40%','80%','','','d','','post-utme','2009',3776,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(47,'If the force on a charge of 0.2 Coulomb in an electric field is 4N, then electric intensity of the field is ','0.8','0.8N/C  ','20.0 N/C ','4.2 N/C ','','','c','','post-utme','2009',3753,'Admin','0000-00-00 00:00:00','2020-07-02 17:56:25'),(48,'The resistance of a wire depends on ','the length of the wire ','the diameter of the wire ','the temperature of the wire ','All of the above','','','d','','post-utme','2009',3868,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(49,'Which of these is not contained in a dry cell? ','carbon rod ','paste of magnesium dioxide ','paste of ammonium chloride ','zinc case ','','','c','','post-utme','2009',3842,'Admin','0000-00-00 00:00:00','2020-06-30 07:43:16'),(50,'When a yellow card is observed through a blue glass, the card would appear as ','black ','green ','red ','white ','','','a','','post-utme','2009',3839,'Admin','0000-00-00 00:00:00','2020-06-29 01:05:41'),(51,'A devise that converts sound energy into electrical energy is ','the horn of a motor car ','An AC generator ','A microphone ','Telephone earpiece ','','','c','','post-utme','2009',3769,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(52,'Radio waves have the velocity of 3 x 108ms-1. If a radio station sends out a broadcast on a frequency 800kHz, what is the wavelength of the broadcast? ','375.0m ','267.0m ','240.0m ','37.5m ','','','a','','post-utme','2009',3852,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43'),(53,'The mode of heat transfer which does not require material medium is','conduction ','radiation ','convection ','propagation','','','b','','post-utme','2009',3759,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(54,'The height at which the atmosphere ceases to exist is about 80km, if the atmosphere pressure on the ground level is 760mmHg, the pressure at height of 20km above the ground is ','380mmHg ','570mmHg ','190mmHg ','480mmHg','','','c','','post-utme','2009',3738,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(55,'A simple pendulum 0.6 long has a period of 1.55, what is the period of a similar pendulum 0.4 long in the same direction ','1.4 √1/3s ','1.5 √1/3s ','2.25s ','None of the above','','','d','','post-utme','2009',3730,'Admin','0000-00-00 00:00:00','2020-06-30 08:09:13'),(56,'Which of the following  is common to evaporation and boiling, they ','take place at any temperature ','are surface phenomena ','involve change of state ','take place at a definite pressure ','','','b','','post-utme','2009',3797,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(57,'A house hold refrigerator is rated 200 watts. If electricity cost 5k per Kwh, what is the cost of operating it for 20 days ','N4.80  ','N48.00 ','N480.00 ','N4800.00 ','','','a','','post-utme','2009',3846,'Admin','0000-00-00 00:00:00','2020-06-28 08:21:43'),(58,'The resistance of a 5m uniform wire of cross sectional area of 0.2 x 106m2 is 0.45. What is the resistivity of the material of the wire ','1.10 x 105 ohms ','4.25 x106Ωm ','2.40 x 107Ωm ','1.70 x 108Ωm ','','','a','','post-utme','2009',3812,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(59,'Which of the following instruments has a pure tone? ','guitar ','Vibrating String ','Turning forks ','Screen ','','','c','','post-utme','2009',3812,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(60,'Four lenses are being considered for use as a microscope object. Which of the following focal length is most suitable ','-5mm ','+5mm ','5cm ','+5cm ','','','b','','post-utme','2009',3707,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(61,'The product PV where P is pressure and V is a volume has the same unit as ','force ','power ','energy ','acceleration ','','','c','','post-utme','2009',3861,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(62,'The force with which an object is attracted to the earth is called ','acceleration ','mass ','gravity ','weight','','','d','','post-utme','2009',3773,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(63,'The refractive index of a liquid is 1.5, if the velocity of light in a vacuum is 3.0 x 108ms-1, the velocity of light in the liquid is ','1.5 x 108ms-2 ','2.0 x 108ms-1 ','3.1 x 108ms-1','4.5 x 108ms-1 ','','','d','','post-utme','2009',3726,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(64,'A train has an initial velocity of 44m/s and an acceleration of -4m/s2 what is its velocity after 10seconds? ','2m/s ','4m/s ','8m/s ','12m/s ','','','b','','post-utme','2009',3787,'Admin','0000-00-00 00:00:00','2020-06-29 01:05:41'),(65,'A man of mass 50kg ascends a flight of stair 5m high in 5 seconds. If acceleration due to gravity is 10ms-2 the power expanded is ','100W ','300W ','250W ','500W','','','d','','post-utme','2009',3868,'Admin','0000-00-00 00:00:00','2020-06-29 01:39:40'),(66,'Two strings of the same length and under the same tension give notes of frequency in the ratio 4:1, the masses of the string are in the ratio of ','2:01','1:02','1:04','1:16','','','d','','post-utme','2009',3721,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(67,'Which of the following phenomena cannot be explained by the molecular theory of matter? ','evaporation ','expansion ','conduction ','radiation','','','d','','post-utme','2010',3756,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(68,'The most likely measurement of length of an object using a venier caliper is: ','3.0cm ','3.3cm ','3.33cm ','3.333cm','','','b','','post-utme','2010',3902,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(69,'If 21g of alcohol of density 0.7gcm-3 is mixed with 10g of water, what would be the density of the resulting mixture? ','780gcm-3 ','0.78gcm-3 ','30gcm-3 ','10gcm-3','','','c','','post-utme','2010',3804,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(70,' For  a particle having an x co-ordinate that varies in time according to the express ion x = 4t -2t2 The instantaneous velocity for of the particle at t = 2.5s is:','12m/s ','6m/s ','0m/s ','10m/s','','','b','','post-utme','2010',3812,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(71,'  A long-jumper leaves the ground at an angle of 20o above the horizontal and at speed of 11m/s. How far does it jumps in the horizontal direction? ','0.384m ','7.94m ','8.45m ','5m','','','d','','post-utme','2010',3760,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(72,'A mass of 0.5kg is attached to one end of a helical spring and produces an extension of 2.5cm. The mass now set into vertically oscillation of amplitude 10mm. The period of oscillation is: (g = 10m/s2) ','0.33s ','100s ','200s ','280s','','','a','','post-utme','2010',3745,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(73,'A boat is passing under a bridge. The deck of the boat is 15m below the bridge. A small package is to be dropped from the bridge onto the deck of the boat is 25m from just below the drop point. What speed is necessary to have the package land in the boat? (g= 9.8ms-2)','17m/s ','14m/s ','1.7m/s ','4.9m/s','','','b','','post-utme','2010',3890,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(74,'A 0.60kg rubber stopper is whirled in a horizontal circle of 0.80m radius at a rate of 3.0 revolutions per second. What is the tension in the string? ','14N ','80N ','170N ','24N','','','c','','post-utme','2010',3844,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(75,'An automobile is traveling at 60km/hr. calculate the angular velocity of the 0.35m radius wheels. ','16.67rad/s ','47.6 rad/s ','21 rad/s ','171.4 rad/s','','','b','','post-utme','2010',3745,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(76,'An air bubble at the bottom of a lake has a volume of 20cm3, pressure of 4.9Pa, and temperature 4oc the bubble rises to the surface where the temperature is 20oc and the pressure 1.0Pa. Find the volume as the bubble reaches the surface. (take 1 atm = 1.0 x 105 N/m2) ','124cm3 ','319cm3 ','60cm3 ','104 cm3','','','d','','post-utme','2010',3816,'Admin','0000-00-00 00:00:00','2020-06-30 19:58:26'),(77,'  A gas at constant pressure of 4.0 x 105 Pa is cooled so that its volume decreases from 1.6m3 to 1.2m3. What work is performed by the gas? ','6.4 x 105 J ','3.2 x 105 J  ','1.6 x 105 J ','0.4 x 105 J  ','','','c','','post-utme','2010',3775,'Admin','0000-00-00 00:00:00','2020-07-02 15:42:25'),(78,'Highly polished silvery  surfaces are: ','poor absorbers but good emitter of radiation ','good absorbers and good emitters of radiation ','poor emitters but good reflectors of radiation ','poor emitters and poor reflectors of radiation','','','c','','post-utme','2010',3766,'Admin','0000-00-00 00:00:00','2020-06-29 00:50:15'),(79,'A 0.040kg string 0.80m long is stretched and vibrated in a fundamental mode with a frequency of 40Hz. What is the speed (of propagation) of the wave and tension in the string? ','64m/s ','340m/s ','32m/s ','128m/s','','','a','','post-utme','2010',3890,'Admin','0000-00-00 00:00:00','2020-06-30 09:44:34'),(80,'What is the total power output of a source with intensity 0.050 W/m2 at a distance of 3.0m from the source? ','112W ','5.6W ','15W ','30W','','','b','','post-utme','2010',3695,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(81,'The superposition of two or more waves to produce a maximum or zero effect at a point is known as: ','reflection ','refraction ','diffraction ','interference','','','d','','post-utme','2010',3816,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(82,'The acceleration due to gravity ','increases with increasing altitude ','decreases with increasing altitude ','increases with increase in the square of the altitude ','is not affected by the altitude','','','b','','post-utme','2010',3836,'Admin','0000-00-00 00:00:00','2020-06-30 07:30:08'),(83,'Which of the following statements are correct of nuclear fission? During the process \\nI. energy is released \\nII. More neutrons are released than those that cause fission \\nIII. Small nuclei merge into large nuclei \\nIV. There is a loss on mass\\n','II and I only','III','I,II and IV','IV and III','','','c','','post-utme','2010',3846,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(84,'Which of the following statements is not true? ','electric field intensity is force per unit charge. ','electric potential is a vector ','the S.I unit of electric field strength is N/C ','electric field intensity is equal to the potential gradient','','','b','','post-utme','2010',3730,'Admin','0000-00-00 00:00:00','2020-06-30 08:12:29'),(85,'Which of the following about electrolysis is false? ','liquid that conduct electricity and are split up chemically by the current are electrolyzed','the current into the electrolyte by the anode ','the current is taken away from the electrolyte by the cathode ','the container which holds the electrolyte and the electrode is the voltmeter','','','d','','post-utme','2010',3805,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(86,'Which of the following is not true about the properties of x-rays? ','they are not deflected by magnetic or electric field','they ionized a gas making it a conductor ','they are massive ','they have high penetrating power ','','','c','','post-utme','2010',3826,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43'),(87,'A transformer is connected to a 240 V supply. The primary coil has 40 turns, and the secondary is found to be 960V. What is the ratio of the number of turns of the primary coil to the number of turns of the secondary coil? ','4:01','1:04','1:06','6:01','','','a','','post-utme','2010',3747,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(88,'Which of the following is not true about an object that is projected upwards at angle θ? ','the velocity is maximum at the maximum height ','the acceleration along the horizontal direction is zero ','the maximum range (Rmax) for an object moving with speed u is given by u2/g ','the time it takes to get the maximum height is equal to the time it takes to come back to the point of projection','','','a','','post-utme','2010',3777,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43'),(89,'When three coplanar non-parallel forces are in equilibrium i. they can be represented in magnitude and direction by the three sides of a triangle taken in order ii. The lines of action meet at a point iii. The magnitude of any one force equals the magnitude of the other two forces iv. Any one force is the equivalent of the other two. Which of the following statements above are correct? ','i and iii only ','i and ii only','i, ii,iii and iv ','none of them','','','b','','post-utme','2010',3821,'Admin','0000-00-00 00:00:00','2020-06-29 01:39:40'),(90,'Which of the following statements is not true about a body performing simple harmonic motion? ','the linear speed is the product of the angular speed and the radius or amplitude ','the linear acceleration is the product of the square of the angular speed and the displacement ','frequency is the number of complete revolution per second made by a vibrating body ','the S.I unit of amplitude is Hertz (Hz)','','','d','','post-utme','2010',3720,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(91,'In the force of gravity on an object of mass m, the gravitational field strength, g, is given by the following equation. ','g = √MF ','g = MF ','g = M√F ','g = F/M.','','','d','','post-utme','2010',3835,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(92,' A body of mass m slides down an inclined plane with a constant velocity. If the angle of the incline is Ø, the coefficient of kinetic friction between the body and the plane is  ','cot Ø ','cos Ø  ','tan Ø  ','sine Ø','','','c','','post-utme','2011',3827,'Admin','0000-00-00 00:00:00','2020-07-01 10:50:24'),(93,'the velocity of a 500 kg car moving long a straight  road, changes from 12 m/s to 20 m/s in 5 sec. calculate the average force moving the car. ','2000N  ','1600N  ','1200N  ','800N','','','d','','post-utme','2011',3725,'Admin','0000-00-00 00:00:00','2020-06-29 01:39:40'),(94,'When a 2kg body is at a height 5m above the floor, its velocity  is 4m/s. What is its total energy  at this height? (acceleration due to gravity = 10m/s2)  ','80J  ','00J  ','  116J  ',' 180J','','','c','','post-utme','2011',3805,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(95,'The density of sea water is 1030kg/m3. What is the pressure at a depth of  80 m below sea surface? Atmospheric pressure is 1.013 x 105 pa and acceleration  due to gravity is 10 m/s2  ','9.25 x  105 pa  ','8.24 105 pa   ','7.23 x 105 pa  ','8.34 x 109 pa','','','a','','post-utme','2011',3786,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(96,'6000 J of heat is delivered to 10g of dry ice at O0C. What is the final temperature if the container has a heat capacity of 20J/K? (specific heat of water = 4200j/kg.k, latent heat of fusion of ice = 3.33 x 105J/kg)  ','142.90C  ','63.60C  ','43.00C  ','00C','','','c','','post-utme','2011',3669,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(97,'A sample of radioactive substance, whose half-life is 16 days, registers 32 decays per second. How long will it take for the rate of decay to reduce to 2 decays per second? ','80 days  ','64 days  ','48 days  ','32 days','','','b','','post-utme','2011',3854,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(98,'When white light passes through a triangular prism, the emerging rays of light arranged in order of decreasing angle of deviation are ','red, orange, yellow, green  ','blue, green,  orange, yellow ','red, green, yellow, orange ','blue, green, yellow, orange','','','d','','post-utme','2011',3815,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(99,' The electric field between two parallel plates is E.  A particle of mass m and carrying charge q is released at a point half the distance between the plates. The velocity  of the particle t  seconds after its release is  ','qEt/m ','qEt2  ','mqt2/2E  ','MQT/2E','','','','','post-utme','2011',3748,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(100,'An airplane increases its speed 36 km/h to 360 km/h in 20.0 s. How far does it travel while accelerating.  ','4.4 km     ','1.1 km  ','2.3 km  ','1.0 km','','','b','','post-utme','2011',3701,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43'),(101,'An object is said to be in simple harmonic motion (SHM) if  ','the acceleration is directly proportional to the displacement and is directed towards the equilibrium position of the object. ','the acceleration is inversely proportional to the displacement and directed toward the equilibrium position  of the object  ','the displacement is directly proportional  to the momentum  and directed toward the equilibrium position of  the object ','the momentum is directly proportional to the displacement and directed toward the equilibrium position of the object.','','','a','','post-utme','2011',3785,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(102,'A wheel and axle is used to raise a weight of 600n with an effort of 300n. if the radii of the wheel and axle are 50 cm and 10 cm respectively, what is the efficiency of the system      ','40%','50%','20%','10%','','','a','','post-utme','2011',3726,'Admin','0000-00-00 00:00:00','2020-06-30 07:40:44'),(103,'The  term “Viscosity” is used to describe  ','surface tension in fluids ','friction in fluids  ','surface tension in solids  ','moment in solids','','','b','','post-utme','2011',3862,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(104,' A particle is in equilibrium under the action of three forces. One force is 40N towards the west and another is 30N towards the south. What is the third force acting on the body?   ','40N, N530E  ','50N, N370E   ','50N, N530E     ','40N, N370E','','','b','','post-utme','2011',3741,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(105,'A hydraulic press works on the principle of transmission of   ','force  ','energy  ','volume  ','pressure','','','d','','post-utme','2011',3894,'Admin','0000-00-00 00:00:00','2020-06-30 07:41:14'),(106,'Which of the following is not a thermometer?  ','thermocouple  ','pyrometer  ','hydrometer  ','platinum resistance thermometer. ','','','c','','post-utme','2011',3639,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(107,'Dry air of column length 10 cm is trapped by a pellet of mercury of length 15 cm, with the open end uppermost. When the capillary is inverted the length of the air column increased to 25 cm while that of mercury remained constant. Calculate the atmospheric pressure (in cm of Hg.)  ','35 cm Hg  ','15 cm Hg  ','20 cm Hg  ','35 cm Hg','','','d','','post-utme','2011',3813,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(108,'Which of the following is not true about a chemical cell?   ','in primary cells the process through which current is generated is irreversible  ','secondary cells can be recharged after they run down by passing a current into the cell in the  reverse direction ','positive ions are attracted to the positive electrode where they become neutralized by acquiring electrons  ','primary cells  can be recharged','','','d','','post-utme','2011',3716,'Admin','0000-00-00 00:00:00','2020-06-30 07:30:19'),(109,'A cigarette lighter in a car is a resistor that, when activated, is connected across the 12 – V battery. If the lighter dissipates 33 W of power, find the current it delivers  to the lighter.  ','9.90 Ω  ','6.60 Ω  ','4.36','17.50Ω','','','c','','post-utme','2011',3802,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(110,'A p-n junction can act as  ','an amplifier  ','a rectifier  ','an inductor ','a capacitor ','','','b','','post-utme','2011',3833,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(111,'  Calcium has a work function of 19 eV with a wavelength of 150 nm. Calculate the maximum energy of a photo electron emitted. (1 eV = 16.1 x 10-19J, h = 6.6 x 10-34Js)            ','6.35 Ev  ','8.25 cV  ','14.60eV  ','None of above','','','d','','post-utme','2011',3920,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(112,'Sound waves were sent out from a source and after being reflected from  an obstacle were received by a sensor placed beside the source. If the waves were received 10 seconds after they were sent out, calculate  the distance between the  source and the obstacle (speed of sound = 330 m/s) ','990m  ','660m ','1320 m ','None of above','','','d','','post-utme','2011',3797,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(113,'Two plane mirrors are inclined at angle 45 to another. A ray of light has incident angle of 20 at the surface of the first mirror. The reflected ray is then incident on the second mirror. Calculate the angle of reflection at the second mirror ','65','45','25','20','','','c','','post-utme','2012',3746,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(114,'When the length of the string of a simple pendulum is L its period is 0.5π second is 0.5π seconds. The period when the length is increased to 4L will be ','0.5π seconds','π seconds ','2π seconds ','4π seconds','','','b','','post-utme','2012',3819,'Admin','0000-00-00 00:00:00','2020-06-30 15:07:30'),(115,'A uniform meter rule AB has a mass 15g. A 30g mass is suspended at the 10.0cm mark, and another 5g mass is suspended at the 65.0cm mark. Calculate the position of the fulcrum that will keep the meter rule balanced horizontally ','50.0cm ','32.0cm ','27.5cm ','17.9cm ','','','d','','post-utme','2012',3702,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(116,'rectangular block measures 40cm x 25cm and made of material of density 7800kg/m3. Calculate the pressure the block exerts on the floor when it stands on the smallest of its surfaces ','3.12 x 103N/m2 ','3.90 x 103N/m2 ','1.9 x 104N/m2 ','3.12 x 104N/m2','','','b','','post-utme','2012',3885,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(117,'A ship sinks to the bottom of a 250m deep lake. The atmospheric pressure over the lake is 1.03 x 105 Pa. Taking the density of water in the lake to be 1000 kg/m3, calculate the pressure exerted on the boat. [acceleration due to gravity = 10 m/s2] ','2.60 x 106Pa  ','2.50 x 106Pa ','2.60 x 105Pa ','1.03 x 105Pa','','','a','','post-utme','2012',3715,'Admin','0000-00-00 00:00:00','2020-06-30 08:02:23'),(118,'Three knives made of steel, plastic and flat wood respectively are placed on the table for an equal amount of time. The steel knife feels coldest to touched because','The steel knife has the lowest temperature ','The plastic and wooden knives have absorbed more heat from the environment than the steel knife. ','Both wooden and plastic knives have lower densities than the steel ','The steel knife conducts heat faster from the finger than the wooden and plastic knives ','','','d','','post-utme','2012',3758,'Admin','0000-00-00 00:00:00','2020-06-29 06:55:13'),(119,'Which of the following quantities is a scalar quantity?','Electric field ','Coulomb force','Electric potential ','Acceleration due to gravity','','','c','','post-utme','2012',3728,'Admin','0000-00-00 00:00:00','2020-06-30 07:14:43'),(120,'A car accelerates at 5.0m/s2 for 6s, the travels at the speed attained for 20s, and comes to rest after another 4.0s. Calculate the average velocity of the car during the motion.','25.0m/s','20.0m/s ','1.25m/s ','0.16m/s','','','a','','post-utme','2012',3795,'Admin','0000-00-00 00:00:00','2020-06-30 14:59:09'),(121,'Which of the following quantities is equal to the area under a velocity-time graph?','Acceleration ','Distance travelled ','Average Velocity of motion ','Total time taken.','','','b','','post-utme','2012',3839,'Admin','0000-00-00 00:00:00','2020-06-28 19:54:32'),(122,'A 25N force pulls a 2.0kg body up a 300 inclined plane. If force is parallel to the plane and the body moves up the plane at constant velocity. Calculate the magnitude of the frictional force between the body and the plane. [g =10m/s2]','25N','10N','5N','15N','','','d','','post-utme','2012',3835,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(123,'The process by which solid change directly to vapour is called ','Evaporation','Fusion ','Condensation ','Sublimation ','','','d','','post-utme','2012',3698,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43'),(124,'A coin is at the bottom of a bucket filled with a liquid whose refractive index is 1.35. The coin appears to be 12.0cm below the surface of the liquid. Calculate the depth of the liquid.','16.2cm  ','13.4cm  ','8.9cm  ','5.4cm','','','a','','post-utme','2012',3800,'Admin','0000-00-00 00:00:00','2020-06-29 01:39:40'),(125,'A 3.0cm object is placed 12.0cm in front of bi-convex lens of focal length 8.0cm. Calculate the height of the image of the object.  ','3.0cm ','6.0cm ','12.0cm ','24.0cm','','','d','','post-utme','2012',3726,'Admin','0000-00-00 00:00:00','2020-06-30 08:12:29'),(126,'To use a milli-ammeter to measure current up to 10A, what connection needs to be made?','A small resistance must be connected in parallel with the milli-ammeter ','A small resistance must be connected in series with the milli-ammeter ','A high resistance must be connected in parallel with the milli-ammeter ','The milli-ammeter must be disconnected from the circuit.','','','b','','post-utme','2012',3805,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(127,'Two 2µF capacitors are connected in parallel. The combination is connected in series with a 6µF capacitor. What is the equivalent capacitor for the combination?','10.0µF  ','8.0µF  ','1.5µF  ','2.4µF','','','c','','post-utme','2012',3741,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(128,'Five 100-Watt bulbs are put on for 45days during which the home-owner is on vacation. If 1kW-hour of electricity cost N7.50, how much does it cost the home-owner? ','N168.75  ','N90.0  ','N4050.00  ','N810.00','','','d','','post-utme','2012',3784,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(129,'To convert an a.c generator to d.c generator, one needs to ','Remove the brush touching the slip rings ','Laminate the armature ','Replace the permanent magnets with  iron-core armature. ','replace the slip rings with split rings','','','d','','post-utme','2012',3683,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `proentertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `progeneral` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `category` varchar(30) COLLATE utf8_unicode_ci NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `progeneral` VALUES (1,'World environmental day happened last week in what day of the week','Tuesday','Wednesday','Thursday','Friday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'World environmental day is on every','5th of June','1st of June','4th of June','3rd of June','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'ECOWAS is now how many years old','30','40','20','35','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many people died by Boko Haram since the inception of new government','over 20','over 50','30','50','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Ghana petrol station explosion happened on ','Monday','Tuesday','Wednesday','Friday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Which Nigeria artiste was nominated for Black Canadian award','Yemi Alade','Tu-face','Psquare','Asa','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'The new Nigeria elected nation assembly is the ','7th ','8th ','5th ','6th ','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'President Buhari is to participate in G7 summit when','Friday','Saturday','Sunday','Monday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'President Buhari attended what \\\"G\\\" summit','G8','G7','G16','G10','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'APC house of representative  speaker election was won by','Tinub','Gbajabiamila','Saraki','Dark Mark','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which state reinstate 480 sacked workers','Lagos','Yobe','Sokoto','Ogun','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which Sokoto local government area reinstate 480 sacked workers',' North ','South ','East','West','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many petrol tanker truck accident happened last week in Nigeria','1','2','3','4','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Some part of Afghanistan district was captured by','Boko Haram','Taliban','Islamic State','Islamic brother hood','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which country was affect by middle east respiratory syndrome (MERS)','North Korea','South Korea','China','Japan','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria state governor rode Okada(Motor bike) to state house of assembly inauguration','Lagos governor','Ogun governor','Ekiti governor','Rivers governor','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'About how many people where on board in China ship disaster','about 300','about 200','over 400','over 500','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country in Africa asked Nigeria to help in training of army and police','Sudan','Egypt','South Sudan','Angola','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Which company sue PDP for 70 million campaign debt','Silon Concepts Limited','AIT','Media Technologies','Waat Concepts','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'The UEFA championship was played in','England','Moscow','Berlin','Paris','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Sexual intercourse with children under 11 bill was pass into laws when','5th of June','3rd June','4th of June','1st June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'did President Buhari travelled to Chad last week','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'What day of the week  did President Buhari travelled to Niger last week','Monday','Tuesday','Wednesday','Thursday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'How many special advisers did the president presented to Nation assembly','3','10','15','12','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What is the name of governor of Kano state','Abdulia Ganduje','El Rfia','Hammed Musa','Atiku Abubaka','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' How many CBN staff was sent to prison by EFCC ','10','8','7','6','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'When did world economic forum took place last week','4th of June','3rd of June','5th of June','1stof June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Elected FIFA president resignation news broke out when last week','Monday','Tuesday','Wednesday','Friday','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Health  workers strike enters week ?.. Last week','2','4','1','3','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'The new coach of Real Madrid was assigned on','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Serena Williams wins??.. Grand slam','14','15','18','20','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Who is the third tennis player to win 20 grand slam ','Rafi Nadal','Serena Williams','Venus Williams','Joko','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'How many passenger escape death as Aero aircraft developers fault mid air','100','120','about 100','over 120','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The world oldest cat dies at','12','20','22','27','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What was the score between Nigeria and Hungry in under 20 world cup match','4-0','2-0','1-0','2-2','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Nigeria team is to face which team in the round second round of under 20 world cup','Brazil','Germany','Italy','USA','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'In woman world cup, Germany defeated Ivory coast by','10-0','4-0','7-0','2-0','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'Which team won the UEFA championship title last week','Barcelona','Juventus','Real Madrid','Chelsea','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `propolitic` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `prosport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `protechy` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Anonymous',\n  `question_id` mediumint(9) NOT NULL,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `message` text COLLATE utf8mb4_unicode_ci,\n  `type` enum('1','2','3','4','5','6','7') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `status` enum('0','1') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question` VALUES (1,'Anonymous',4,'english',NULL,'1','0','2018-08-31 10:33:36','2018-08-31 10:33:36'),(2,'Anonymous',2,'english','You got busted','5','0','2018-08-31 11:05:51','2018-08-31 11:05:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question_type` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,\n  `description` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question_type` VALUES (1,'Question','There is an error in question',NULL,NULL),(2,'Option A','There is an error with option a',NULL,NULL),(3,'Option B','There is an error with option b',NULL,NULL),(4,'Option C','There is an error with option c',NULL,NULL),(5,'Option D','There is an error with option d',NULL,NULL),(6,'Answer','Something is wrong with the answer',NULL,NULL),(7,'Solution','Something is wrong with the solution',NULL,NULL);\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `socialfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `socialfb` VALUES (1,'What year was \\'Africa Queen\\' music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track \\'African Queen\\' came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D\\'Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D\\'Banj  first album released?','2002','2005','2001','2004','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What is the full meaning of NEA','National Entertainment Awards','Nigerian Entertainment Awards','Nigerian Entertainment Award','National Entertainment Award','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Nigerian Entertainment Award (NEA) 2015 was held in','Lagos Nigeria','Abuja Nigeria','New York USA','London Britain','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who won the best Female act award in Nigerian Entertainment Award (NEA)  2015','Cynthia Morgan','Yemi Alade','Seyi Shay','Tiwa savage','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Who won the best Film Director of the Year (Indigenous Films) in Nigerian Entertainment Award (NEA)  2015','Kunle Afolayan','Alex Konstantaras','Olanrewaju Abiodun','Chiwetel Ejiofor','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Best Male act was given to ??.. in Nigerian Entertainment Award (NEA) 2015','Olamide','Davido','Wizkid','Shizzi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Best Rap act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Best Pop act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Best Afrobeat Act was given to ?. In Nigerian Entertainment Award (NEA)  2015','2face Idibia','Femi Kuti','Baba Fryo','Alariwo','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Olamide life in concert \\'Beast Mode \\'hold this year on','March 10 2015','December 27 2015','December 31 2015','March 21 2015','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Which of the following guest artiste will not feature in Olamide life concert 2015','Davido','D?Banji','Wizkid','Olamide','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'what is the full meaning of KADAMFEST','Kaduna Music Festival','Kano  Music Festival','Kaduna  Music Festivals','Kano Music Festivals','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What edition is Miss World 2015','60th','61th','62nd','63rd','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Which country hosted Miss World 2015 edition','China','Japan','Singapore','India','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'What is the date of Miss World 2015 pageant?','10-Dec-15','16-Dec-15','19-Dec-15','21-Dec-15','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' Which country won Miss World 2015 pageant?','China','South Africa','Spain','Norway','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Tiwa Savage is how old in 2015','28','30','35','32','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Which of this song was release by Wizkid in 2015','On top matter','Love my babe','Expensive shit','Mummy mi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Who was the most nominated artiste for Tooxclusive award 2015','Davido','Olamide','Di?ja','Korede bello','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'Who is the fourth highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'Who is the Second highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Who is the third highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Who is the highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'30 days in Alanta was released on','31-Oct-15','31-Oct-14','1-May-15','1-May-14','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is Miss Nollywood Queen 2015','Miss Gwendolyn Okutele','Miss Adebayo Kemi','Miss Basira Malla','Miss Obichi Emeka','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' Miss Nollywood Queen 2015 is from what state','Enugu','Delta','Ondo','Lagos','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'What is the name of Olamide ablum released in 2015','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' What is the full meaning of SMD','Super Michael Data','Supreme Mavin Dynasty','Shoki Makossa Dance','Simple Motion Dance','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Who started SMD?','Olamide','Davido','P-Square','Don Jazzy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' What is the name of Olamide ablum released in 2012','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the name of Olamide ablum release in 2014','Rapsodi','YBNL','Street OT','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'\\'Yemi my lover\\' is in which Olamide album','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'What is the full name of Phyno','Godfrey Nelson','Azubuike Chibuzo Nelson','Phillip Onome','Paul Nwoko Godfrey','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,' Which of this artiste is not a Glo ambassador','D?Banj','Peter and Paul Okoye (PSquare)','Tu Face ','Wande Coal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,'Which of the following artiste is not a airtel ambassador','Phyno','Tu Face','Wande Coal','Patoranking','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sport` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','Sir Ali Ferguson.','Alex Ferguson.','Sir Alex Ferguson','Sir Alex Fergson','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'How many rings are in the Olympic colours?','6','5','4','3','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sportfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sportfb` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','?Sir Ali Ferguson.','?Alex Ferguson.','?Sir Alex Ferguson','?Sir Alex Fergson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'How many rings are in the Olympic colours?','6','5','4','3','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'When was Jose Mourinho sacked by Chelsea in 2015','15-Dec','5-Dec','27-Dec','17-Dec','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which coach is regarded as the Special One','Pep Guardiola','Raphael Benitez','Jose  Mourinho','?Sir Alex Ferguson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Which club in Nigeria premier league has the longest winning run in 2015','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' Which club in Nigeria premier league has the longest unbeating run in','Warri Wolves FC','Kano Pillars FC','Enyimba FC','Shooting Star FC','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' The 2015 Nigeria Professional Football League was won by','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The 2015 Nigeria Professional Football League second place winner was','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What is the name of Nigeria second football division','National Division league','Nigeria Second division league','Nigeria National league','Second National league','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'which of the following 2015 Nigeria Professional Football League was relegated','El-Kanemi Warriors','Enugu Rangers','Kwara United?','Abia Warriors','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'which of the following 2015 Nigeria Professional Football League was not relegated','Kwara United?','Bayelsa United','Sharks','El-Kanemi Warriors','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Kano Pillars\\' 12-year undefeated streak at home came to an end in a 2-1 loss to','Nasarawa United','Wikki Tourists','Kwara United?','Enyimba FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is the president of Nigeria football federation?','Amaju Pinnick','Alhaji Ibrahim Galadim','Alh. Aminu Maigari','Alhaji Ibrahim Pinnick','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' What is the full meaning of NFF','Nigeria Football Federation','Nation Football Federation','Nigerian Football Federation','National Football Federation','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'Which of the following is not a bet company in Nigeria','Bea Bet','Naira Bet','Surebet247 ','Bet9ja','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' Which of the following is the first sport betting website in Nigeria','Surebet247','360bet','Bet365NAIJA','Naira Bet','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Leicester City F.C. is also known as ','Lei City','The Eagle','The Foxes','Blue team','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' Leicester City F.C. is also known as the following expect','The Foxes','The Blues','The City ','Blue Army','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'Who is the current hit man for Leicester City','Jamie Vardy','Wes Morgan','Danny Simpson','Eden Hazard','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'Who is the current highest goal scorer as of December 2015 in English Premier League','Wilfried Bony','Robin van Persie','Diafra Sakho','Jamie Vardy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'Who won the Ballon D?or cup 2015','Lionel Messi ','Neymar ','Cristiano Ronaldo','Robin van Persie','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n"
  },
  {
    "path": "storage/backups/2020-07-07.sql",
    "content": "/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `accounting` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=515 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `accounting` VALUES (1,'The bad debt account is closed by transferring the balance to ','credit of capital account  ','debit of profit  and loss  ','debit of the debtors personal account ','credit of profit and loss account ','','','b','','post-utme','2010',81,'','0000-00-00 00:00:00','2020-07-06 21:49:41'),(2,'A credit note from a supplier would first be entered in the ','purchase book  ','sales book  ','returns inward book  ','returns outward','','','a','','post-utme','2010',89,'','0000-00-00 00:00:00','2020-06-26 13:00:08'),(3,'Where a proprietor withdraws cash from the business for his private use, the entries would be ','credit cash account, debit proprietor\\'s account ','credit proprietor\\'s account, debit cash account ','credit proprietor\\'s account, debit   drawings   account    ','credit   cash account,  debit drawings account','','','d','','post-utme','2010',88,'','0000-00-00 00:00:00','2020-07-04 00:40:47'),(4,'Which   of the   following   is   a  long  term liability ','bank overdraft ','bank deposit ','good will ','debentures','','','d','','post-utme','2010',87,'','0000-00-00 00:00:00','2020-05-04 18:14:58'),(5,'Which of the following is a function of the sales journal ','it records both cash and credit sales ','it shows the balance in the sales account ','it record credit sales only ','it shows the aggregate balances in the debtors lodger','','','a','','post-utme','2010',93,'','0000-00-00 00:00:00','2020-07-04 00:40:47'),(6,'Which of the following is the most liquid ','stock ','debtors ','machinery ','loose tools','','','b','','post-utme','2010',79,'','0000-00-00 00:00:00','2020-04-30 17:58:10'),(7,'A debit balance on a bank statement indicates that ','bank is a debtor to the customer ','customer is a debtor to the bank ','bank is not a creditor to the customer ','customer is not a debtor to the bank','','','b','','post-utme','2010',98,'','0000-00-00 00:00:00','2020-07-06 21:49:41'),(8,'At the end of a trading period, wages will be  ','debited to trading account and shown as a current liability ','credited to profit and loss Account and shown as a current liability ','credited to trading account and shown as a current asset ','debited to profit and loss account and shown as a current liability','','','a','','post-utme','2010',94,'','0000-00-00 00:00:00','2020-05-04 18:12:29'),(9,'Which of the following is not an asset ','Goodwill ','General reserves ','Debtors ','Prepayments','','','b','','post-utme','2010',100,'','0000-00-00 00:00:00','2020-05-04 18:37:45'),(10,'A company\\'s profit and loss account for a period  is  prepared by ','deducting total expenses from total revenues ','deducting total cash payments from total revenue ','deducting  all  outflows  of funds  from  all inwards of funds ','balancing its receipts and payments','','','a','','post-utme','2010',87,'','0000-00-00 00:00:00','2020-06-25 23:53:42'),(11,'The journal is a book ','of primary entry into which all transactions are entered before posting ','kept by journalist for reporting events ','of prime entry into which postings are made from the ledger  ','of analyzing major accounts','','','a','','post-utme','2010',84,'','0000-00-00 00:00:00','2020-06-26 08:11:06'),(12,'The receipts and payments of a club is the same  as ','  Profit and   loss  account  ','Trading Account ','Cash book ','control Account','','','c','','post-utme','2010',80,'','0000-00-00 00:00:00','2020-04-30 18:00:32'),(13,'In a balance sheet, bank overdraft is ','Current Asset ','Fixed asset ','long term liability ','Current Liability','','','d','','post-utme','2010',90,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(14,'Money set aside for the saving of business overheads    is    referred    to   ','Capital Expenditure  ','Revenue  Expenditure ','Revenue receipts','','','','c','','post-utme','2010',100,'','0000-00-00 00:00:00','2020-05-04 18:54:20'),(15,'Money spent on buying of plots of land by a firm is ','Capital Expenditure ','capital receipts ','Revenue Expenditure',' Revenue Receipts','','','a','','post-utme','2010',93,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(16,'Prepaid expenses  is an  item  in ','Fixed Asset  ','  Current    Asset   ','Liabilities ','Long term liabilities ','','','b','','post-utme','2010',92,'','0000-00-00 00:00:00','2020-07-04 00:40:47'),(17,'Final accounts of (i) Cash book (ii) trading account  (iii) Profit and  loss account  (iv)Balance sheet  ','i only ','i and ii only','iii and iv only ','ii and iii  only','','','c','','post-utme','2010',83,'','0000-00-00 00:00:00','2020-06-05 15:31:37'),(18,'Trading account is prepared to ascertain ','Gross profit ','Net profit ','Gross profit or Gross loss ',' Net profit or net loss','','','c','','post-utme','2010',95,'','0000-00-00 00:00:00','2020-06-26 08:11:06'),(19,'A statement that shows the financial position of a business is ','profit and loss account  ','Trading Account ','Statement of income  ',' Balance sheet','','','d','','post-utme','2010',83,'','0000-00-00 00:00:00','2020-06-28 18:07:03'),(20,'  Prepaid wages is an item in the (i)Balance Sheet (ii) Profit and loss account (iii)Trading  account (iv) Cash account ','i, ii, iii only ','ii, iii  ','i, ii ','iii, iv','','','a','','post-utme','2010',96,'','0000-00-00 00:00:00','2020-06-26 09:11:37'),(21,'Partnership    is    a    business    owned and controlled by ','Two members ','two to ten members ','Two to twenty person  ','Two to five persons','','','c','','post-utme','2010',84,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(22,'If a   machine   cost   2000   naira   and its estimated   life   span   is   10   years   and its residual is 500 naira. The yearly value of depreciation  in  naira is ','250','180','150','130','','','c','','post-utme','2010',78,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(23,'Bad debt is also known as ','Unpaid debt','irrecoverable debt  ','Payment debt  ','current    debt','','','b','','post-utme','2010',85,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(24,'Bad debt is an item in ','Trading, profit and loss account  ','consignment account  ','Balance sheet ','Receipt and expenditure AC','','','a','','post-utme','2010',93,'','0000-00-00 00:00:00','2020-06-28 07:15:53'),(25,'The diary or events in which all financial transactions    are    recorded    for    easy reference and to assist in the double entry system is ','Ledger','Journal   ','Purchases and sales day books ','Debit and credit documents','','','a','','post-utme','2011',85,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(26,'Which of the following is not a book of original entry? ','Cash book  ','Purchases journal  ','Sales journal ','Ledger','','','d','','post-utme','2011',87,'','0000-00-00 00:00:00','2020-05-04 18:22:43'),(27,'The test of arithmetical accuracy of all postings in the ledger is provided in the: ','Journal  ','Day book  ','Cash book  ','Trial balance','','','d','','post-utme','2011',93,'','0000-00-00 00:00:00','2020-05-04 18:30:26'),(28,'Errors   revealed   by   the   trial   balance include error of:  ','Principle  ','Single entry ','Omission  ','commission ','','','b','','post-utme','2011',92,'','0000-00-00 00:00:00','2020-07-06 21:49:41'),(29,'Accounting equation is given by  ','Assets - Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owner\\'s Equity = Liabilities ','Assets = Liabilities + Owner\\'s Equity','','','d','','post-utme','2011',81,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(30,'Which of the following is not a current asset?  ','Stock  ','Debtors  ','Creditors ','Cash','','','c','','post-utme','2011',97,'','0000-00-00 00:00:00','2020-06-25 23:22:50'),(31,'Final accounts of a company refers to: ','Trading and profit and loss account  ','Profit and loss account and balance sheet  ','Trading account and balance sheet  ','Trading , profit and loss account and balance sheet','','','d','','post-utme','2011',73,'','0000-00-00 00:00:00','2020-05-03 17:20:23'),(32,'A cheque which has been sent but has yet gone through the bank account of the receiver of it is known as:','Dishonoured cheque','Unpresented cheque ','Uncredited cheque','Unhonoured cheque','','','b','','post-utme','2011',91,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(33,'Which of the following does not appear in a bank statement?   ','Uncredited cheque ','Bank charges ','Dishonoured cheque ',' Dividend   received   on    behalf   of customer','','','d','','post-utme','2011',83,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(34,'Where a correct amount is entered, but in the wrong person\\'s account, is an error of  ','Principle  ',' Omission','Commission','Compensation','','','c','','post-utme','2011',81,'','0000-00-00 00:00:00','2020-06-27 16:52:23'),(35,'A credit balance of N350,000 in a cash account shows that  ','N350.000 was the total cash received  ','N350,000 was the total cash paid out  ','Cash at hand equals N350,000 ','N350,000 was the cash overspent','','','d','','post-utme','2011',97,'','0000-00-00 00:00:00','2020-07-06 21:49:41'),(36,'Which   accounting  concept  states; that revenues and expenses are recognized as they are earned or incurred and not when  money is received?','Entity   ','Realization','Accrual  ','Periodicity','','','c','','post-utme','2011',86,'','0000-00-00 00:00:00','2020-06-24 20:29:33'),(37,'Which of the following is not a business asset?','Deposit account in bank','Interest due on loan','Five acres of land','Library books owned by a lawyer ','','','b','','post-utme','2011',81,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(38,'Prime cost is','Direct cost of production','Cost of raw materials consume:','Cost of raw materials purchase-:','Indirect cost of production','','','a','','post-utme','2011',83,'','0000-00-00 00:00:00','2020-06-01 19:36:02'),(39,'Subscription   received   in   respect of a future period is','Subscription deposit','Subscription in advance','Accrued subscription','Subscription in arrears','','','b','','post-utme','2011',99,'','0000-00-00 00:00:00','2020-07-05 14:18:21'),(40,'The petty cash book kept on imprest system should have','A credit balance only','A debit or nil balance','A debit balance only','Both debit and credit balance;','','','c','','post-utme','2011',76,'','0000-00-00 00:00:00','2020-06-25 23:58:34'),(41,'Wilson Company owns land which cost 14100, 000. If a \\\"quick sate\\\" of the land was necessary to generate cash, the company feels it would receive only N80, 000.    The company continues to report the asset on the balance sheet at N100, 000   This is justified under which of the following concepts?  ','The historical-cost principle.','The value is tied to objective and verifiable past transactions.','Neither of the above.',' Both \\\"a\\\" and \\\"b\\\"','','','a','','post-utme','2012',88,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(42,'Retained earnings will change over time because of several factors.  Which of the following factors would explain an increase in retained earning?','Net loss ','Net income,','Dividends ','investment by stakeholders.','','','b','','post-utme','2012',96,'','0000-00-00 00:00:00','2020-06-26 08:11:06'),(43,'Which of the following would not be included in a balance sheet?','Accounts receivable','Accounts payable  ','Sales','Cash','','','c','','post-utme','2012',82,'','0000-00-00 00:00:00','2020-06-25 23:58:34'),(44,'A company provided the following information about its balance sheet: Cash N100 Accounts receivable N500 Stockholders\\' equity 14700 Account payable N200 Bank loans Nl000 Based on the information provided, how much are Remington\\'s liabilities?','N200   ','N900   ','N 1,200   ','N 1,700','','','c','','post-utme','2012',96,'','0000-00-00 00:00:00','2020-06-24 20:34:44'),(45,'A complete set of financial statements for Hartman Company, at December 31, 1999, would include each of the following except:','Balance sheet as of December 31,1999 ','Income   statement   for   the   year   ended December 31, 1999.','Statement of projected cash flows for 2000  ','Notes containing additional information that is useful interpreting the financial statements.','','','c','','post-utme','2012',85,'','0000-00-00 00:00:00','2020-07-06 21:49:41'),(46,'If the equipment account has a balance of N22.500 and its accumulated account has a balance of N14,000 the book value of the equipment is:  ','N22.500   ','N8.500 ','N 14,000  ','N36.500','','','b','','post-utme','2012',96,'','0000-00-00 00:00:00','2020-06-09 11:47:01'),(47,'The balance unearned rent account for Jones Co. as at 31st Dec. is 1,200. If Jones Co tailed to record the adjusting entry for 600 of rent earned during December, the effect on the balance sheet and income statement','for December is:',' Liabilities   overstated—N60Q:   c:et income overstate d 44600',' Liabilities   understated   £4500:   net income  understated N600','Asset    understated—N600:     net    income  overstated N600',' Liabilities   overstated   N600:    net income understated N600','','d','','post-utme','2012',88,'','0000-00-00 00:00:00','2020-05-04 18:37:46'),(48,'If goods purchased on account is returned, the buyer may inform the seller of the details by issuing:','An invoice  ','A debt memorandum','A credit memorandum  ',' A bill','','','c','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-06-27 16:52:23'),(49,'Which of the following entries classes the  owner\\'s drawing account at the end of the period?','Debit the drawing account, credit the owner\\'s capital account','Debit the income summary account credit the drawing account','Debit   the   drawing account credit income summary accounting','Debit the owner\\'s capital account, credit the drawing account','','','d','','post-utme','2012',78,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(50,'At the end the fiscal year, account receivable has a balance of 100,000 and allowance for doubtful account has a balance of 7,000. The expected that realized value of the  receivable is: account','N 107,000','N100,000','c. N93,000','N 147,000','','','c','','post-utme','2012',97,'','0000-00-00 00:00:00','2020-06-26 09:11:37'),(51,'Which of the following accounts would be classified as a current on the balance sheet?','Office Equipment','Accumulated Depreciation','Land','Accounts receivable','','','d','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-06-28 07:15:53'),(52,'A petty cash fund is:','Used to pay relatively small amount','reimbursed when the amount of money in the fund is reduced to a predetermined minimum amount','Established by estimating the amount of cash needed for disbursement of  relatively small amount during a specified period  ','All of the above','','','d','','post-utme','2012',76,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(53,'A debit may signify: ','an increase in the owner\\'s capital amount','an increase in a liability account','a decrease in an asset account','an increase in an asset account','','','d','','post-utme','2012',91,'','0000-00-00 00:00:00','2020-07-04 00:40:47'),(54,'The receipt of cash from customers in a payment of their account would recorded by a','Debit to account receivable; credit to cash ','b  Debit to cash credit to accounts receivable  ','Debit to cash, credit to accounts payable  ','Debit to account payable credit to cash','','','b','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-06-26 17:03:02'),(55,'The essential amount of depreciation or equipment for a period is 2,000 the adjusting end to record depreciation would be','Debit depreciation expense, 2000, credit expense, 2,000','Debit equipment, 2,000; credit depreciation expense, 2,000','Debit accumulated depreciation, 2,000. credit depreciation expense 2,000    ','Debit depreciation expense, 2,000; credit accumulated depreciation 2,000.','','','d','','post-utme','2012',84,'','0000-00-00 00:00:00','2020-05-03 17:44:35'),(56,'Which of the following assets could be described as a current asset?','Stock of goods for resale','Machinery to manufacture goods for resale ',' Buildings to house the machinery','Land on which the buildings stand.','','','a','','post-utme','2012',85,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(57,'The purchase journal records:','invoices from creditors','Debtors\\' invoices','Cash payments to suppliers','Amounts owing to employees for wage;','','','a','','post-utme','2012',90,'','0000-00-00 00:00:00','2020-05-06 04:56:33'),(58,'If a business shows a debit balance in its own record of its bank balance, this indicates.','The business has a bank overdraft','The business is a debtor of the bank','The business has money in the bank','The ledger entry must be wrong.','','','a','','post-utme','2012',76,'','0000-00-00 00:00:00','2020-06-28 07:15:53'),(59,'If a business pays for only 11 months rent during a financial year, what accounting term is given to the outstanding term is given to the outstanding one month\\'s rent? Which of the following equations properly represents a derivation of the fundamental accounting equation?','Assets + liabilities = owner\\'s equity ','Assets = owner\\'s equity','Cash = assets.  ','Assets - liabilities = owner\\'s equity','','','d','','post-utme','2012',77,'','0000-00-00 00:00:00','2020-06-24 20:29:33'),(60,'A business shows total debtors\\' balances of N400,000 in its ledger at the end of its financial year. A customer owing N40,000 is bankrupt, and there is no possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor\\'s total will be included as a current asset in the balance sheet?','N400,000,   ','N352,800    ','N352,000.  ','N436,200 ','','','c','','post-utme','2012',78,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(61,'To arrive at the gross profit of a trading  business, which one of the following formulate is applied?','Sales - (Opening Stock-Purchases-Closing Stock)','Sales - (Opening stock + Purchases + Closing Stock)','Sales - (Opening stock + Purchases - Closing Stock)','Sales - (Opening stock - purchases + closing stock)','','','c','','post-utme','2012',85,'','0000-00-00 00:00:00','2020-06-28 18:07:03'),(62,' Which one of the following is not part of a company\\'s equity capital?','Ordinary shares','Preference shares','Voting Shares','Equity shares','','','c','','post-utme','2012',73,'','0000-00-00 00:00:00','2020-06-28 09:41:55'),(63,' An expenditure whose benefit is finished or enjoyed immediately is called: ','Expense   ','Liability ','Cost ','Income','','','a','','post-utme','2012',84,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(64,'Where no partnership agreements exist, a partner who puts a sum of money into a firm in excess of the capital he has agreed to subscribe is entitled to interest rate per annum on such money ','15%','10%','5%','2%','','','c','','post-utme','2013',81,'','0000-00-00 00:00:00','2020-05-04 18:22:43'),(65,'MORADE had total assets of N760,000, capital stock of N150,000 and retained earnings of N215,000. What was Morade\\'s debt-to-equity ratio? ','2.63','1.08','0.52','0.48','','','b','','post-utme','2013',82,'','0000-00-00 00:00:00','2020-07-06 21:49:41'),(66,'9.   Which   of   the   following   is   a   correct expression of the accounting equation? ','Assets = Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owners\\' Equity = Liabilities ','Assets = Liabilities - Owner\\'s Equity','','','a','','post-utme','2013',80,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(67,'Which of these items would be accounted for as an expense? ','repayment of a bank loan ','dividends to stockholders ','the purchase of land ','payment of the current period\\'s rent','','','d','','post-utme','2013',92,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(68,'At the end the fiscal year, account receivable has a balance of Nl00,000 and allowance for  doubtful   account  has a balance   of N7,000. The expected net realized value of the account receivable is: ','Nl07,000 ','N100,000 ','N93,000 ','N7,000 ','','','c','','post-utme','2013',95,'','0000-00-00 00:00:00','2020-06-27 19:42:58'),(69,'A debit balance of Nl50,000 in a cash account   shows   that   ','  cash  has   been overspent   by   N150,000   ','  there   was N150,000 cash in hand ',' the total of cash received   was   less   than   N150,000   ','N150,000 was the total of cash paid out. ','','','b','','post-utme','2013',76,'','0000-00-00 00:00:00','2020-06-19 01:06:41'),(70,'Posting  the  transactions   in bookkeeping means ','making the first entry of a double entry transaction ','entering items in a cash book ','making the second  entry of a double entry transaction ','something other than the above.','','','a','','post-utme','2013',96,'','0000-00-00 00:00:00','2020-06-27 16:35:28'),(71,' On December 31, 2012, Infinite Grace had a note payable due on August 1, 2013. On January 20, 2013, Infinite Grace signed a financing agreement to borrow the balance of the note payable from a lending institution to refinance the note. The agreement does not expire within one year, and no violation of any provision in the financing agreement exists. On  February 1, 2013. Infinite Grace was informed by its financial advisor that the lender is not expected to be financially capable of honouring the agreement. Infinite Grace\\'s financial statements were issued on March 31, 2013. How should Infinite Grace classify the note on its balance sheet at December 31,2012? ','as a current liability because the financing agreement was signed after the balance sheet datecapable of honouring the agreement   ','as a current liability because the leader is not expected to be financially ',' as   a   long-term   liability because  the agreement  does   not  expire within one year ',' as a long-term liability because no violation of any provision in the financing agreement exists.','','','c','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-04-30 18:12:48'),(72,'A business shows total debtors\\' balance of N400,000 in its ledger at the end of its financial customer owing N40,00 are bankrupt, and there is no  possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor’ total will be included as a current asset in the balance sheet? ','N400,000  ','N352,800  ','N352, 000  ','N36, 200','','','b','','post-utme','2013',80,'','0000-00-00 00:00:00','2020-07-06 21:49:41'),(73,'Companies and  Allied  Matters  Act. 1990 requires  every  company   to  keep  certain statutory books. Which of the following is not part of the statutory books to be kept by the company? ','register of directors and secretaries ','a register of charges (fixed and floating) ','minutes books of meetings of the company and meetings of its directors ','a register of companies in the same line of business','','','d','','post-utme','2013',77,'','0000-00-00 00:00:00','2020-06-28 07:15:53'),(74,'The    main    objective   of   the   financial statements is to ','provide a true and fair- view of the financial position of the business ','help managers take correct decisions ','show every transaction affects two items in the  balance sheet ','help owners of a business to plan for the future.','','','a','','post-utme','2013',70,'','0000-00-00 00:00:00','2020-06-26 13:00:08'),(75,' Impersonal accounts contain ','capital and cash account ','nominal account and real account ',' real and cash account ','capital and real act minis ','','','b','','post-utme','2013',66,'','0000-00-00 00:00:00','2020-06-24 20:29:33'),(76,'One of (he following errors will affect the agreement of the trial balance ','error of omission ','trial balance error ','principle error ','error of original entry','','','b','','post-utme','2013',128,'','0000-00-00 00:00:00','2020-07-04 01:56:25'),(77,'Which of the following is a fictitious asset? ','prepayments ','preliminary expenses ','investment ','plant and machinery ','','','b','','post-utme','2013',69,'','0000-00-00 00:00:00','2020-07-04 00:40:47'),(78,'  Which of the following is not part of the main uses of the journal ',' purchase and sale   of   fixed   assets   on  credit   ','the  correction of errors ','writing off bad debts ','none of the above','','','d','','post-utme','2013',71,'','0000-00-00 00:00:00','2020-06-28 18:07:02'),(79,'…………………checks the arithmetical accuracy of double entry accounts ','trading account ','profit and loss account ','balance sheet ','trial lance','','','d','','post-utme','2013',87,'','0000-00-00 00:00:00','2020-05-04 18:37:46'),(80,'The distinguishing feature between a two-column and three-columncash book is','discount column','cash column','bank column','ledger folio','','','a','','wassce','2013',84,'Admin','2016-11-15 20:31:29','2020-07-06 21:49:41'),(81,'The lodgment of business cash into the business bank account is an example of','contra entry','bank reconciliation','self balancing ledger','reversal entry','','','b','','wassce','2013',103,'Admin','2016-11-15 20:31:30','2020-07-04 00:40:47'),(82,'credit balance is','a liability or an expense.','a liability or an income.','an expenditure or an income.','an asset or an expense.','','','b','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-06-27 19:42:58'),(83,'Which of the following is not a characteristic of a Trial Balance?','It has columns for debit and credit balances','Total of debit balance equals total of credit balance','It is a statement','It is an account','','','d','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-05-04 18:03:40'),(84,'The capital of a sole trader changes as a result of','paying wages by cash.','equipment purchased by cheque.','drawings by cheque.','purchases on credit.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:30','2020-06-27 19:42:58'),(85,'The order of financial accounting process involves: (I) recording; (II) presenting; (III) collecting; (IV) analyzing.','I, II. Ill and IV','II, III, I and IV','Ill, I, II and IV','IV, III, II and I','','','c','','wassce','2013',75,'Admin','2016-11-15 20:31:30','2020-06-24 20:34:44'),(86,'A dishonoured cheque is','debited in the cash book.','credited in the cash book.','double entry in the cash book.','credited in the bank book.','','','c','','wassce','2013',80,'Admin','2016-11-15 20:31:30','2020-06-27 16:35:28'),(87,'A petty cashier received a float of GHc 120 and spent GHc 84. The imprest is','GHc 204.','GHc 120.','GHc 84.','GHc 36.','','','d','','wassce','2013',72,'Admin','2016-11-15 20:31:30','2020-06-28 18:07:02'),(88,'Which of the following is not a book of original entry?','Cash Book','Purchases Ledger','Returns Outwards Journal','General Journal','','','b','','wassce','2013',67,'Admin','2016-11-15 20:31:30','2020-05-03 17:11:17'),(89,'The current ratio is','1.87 : 1.','1 : 1.87.','1 : 2.','2 : 1.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',85,'Admin','2016-11-15 20:31:30','2020-06-28 07:15:53'),(90,'The capital employed is','N=740,000.','N=580,000.','N=370,000.','N=280,000.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','c','','wassce','2013',79,'Admin','2016-11-15 20:31:30','2020-06-25 23:15:49'),(91,'The returns on capital employed is','17.2%','16.2%.','15.2%.','11.2%.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',67,'Admin','2016-11-15 20:31:30','2020-06-24 20:29:33'),(92,'The double entry principle states that','every debit entry must have a corresponding credit entry','every credit entry must have a corresponding double entry','every debit entry must have a corresponding double entry','every asset must have a corresponding liability.','','','a','','wassce','2013',81,'Admin','2016-11-15 20:31:30','2020-06-27 16:52:23'),(93,'Which of the following is a nominal account?','Machinery Account','Drawings Account','Debtors Account','Wages Account','','','d','','wassce','2013',87,'Admin','2016-11-15 20:31:30','2020-06-26 21:58:16'),(94,'Reserves account is kept in the','private ledger.','creditors ledger.','nominal ledger.','debtors ledger.','','','c','','wassce','2013',75,'Admin','2016-11-15 20:31:30','2020-06-26 08:11:06'),(95,'An advantage of control account is','locating figures.','adding figures.','changing figures.','locating errors.','','','d','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-06-27 16:52:23'),(96,'The accumulated fund of a not-for-profit making organization is','a fixed asset.','a current asset.','a liability.','capital.','','','d','','wassce','2013',83,'Admin','2016-11-15 20:31:30','2020-05-05 20:10:53'),(97,'A business is treated as being separate from the owners. This statement is emphasized by','consistency concept.','realization concept.','going concern concept.','business entity concept.','','','d','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-06-28 18:07:03'),(98,'Which of the following is recorded on the debit side of the Trial Balance?','Bank overdraft','Returns outwards','Purchases','Capital','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-06-27 19:42:58'),(99,'Which of the following is determined in the Trading Account?','Factory overheads','Cost of goods sold','Prime cost','Net profit','','','b','','wassce','2013',88,'Admin','2016-11-15 20:31:31','2020-06-28 18:07:02'),(100,'Cash receipts and payments involving discounts are entered in','three-column cash book.','two-column cash book.','analytical cash book.','petty cash book.','','','a','','wassce','2013',87,'Admin','2016-11-15 20:31:31','2020-06-26 21:58:16'),(101,'The minimum number of persons required to form a partnership business is','2.','3.','5','10.','','','a','','wassce','2013',70,'Admin','2016-11-15 20:31:31','2020-06-27 16:52:23'),(102,'Which of the following accounts has a credit balance?','Returns Inwards Account','Machinery Account','Sales Account','Cash Account','','','c','','wassce','2013',80,'Admin','2016-11-15 20:31:31','2020-06-27 16:35:28'),(103,'The accounting principle that states that, in the preparation of accounting statement, revenue are recognized as        soon as goods are passed on to the customer is the','materiality concept.','matching concept.','consistency concept.','realization concept.','','','d','','wassce','2013',92,'Admin','2016-11-15 20:31:31','2020-07-06 21:49:41'),(104,'Agreement between partners is contained in the Partnership','Act.','Deed.','Accord','Deal.','','','b','','wassce','2013',88,'Admin','2016-11-15 20:31:31','2020-06-28 09:41:55'),(105,'A low current ratio in a business indicates that the business is','faced with long term loan repayment problem.','efficient in the utilization of its resources.','unable to pay its bills on time.','growing its net asset effectively.','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-06-28 18:07:03'),(106,'Which of the following is a recurrent expenditure in public sector accounting?','Purchase of vehicles','Purchase of drugs','Construction of boreholes','Construction of buildings','','','b','','wassce','2013',77,'Admin','2016-11-15 20:31:31','2020-06-25 23:58:34'),(107,'In departmental accounts, administrative expenses are recorded in the','Trading Account.','Balance Sheet.','Profit and Loss Account.','Profit and Loss Appropriation Account.','','','c','','wassce','2013',85,'Admin','2016-11-15 20:31:31','2020-06-28 09:41:55'),(108,'The Public Accounts Committee is an organ of','military regime.','parliament.','presidency.','councilors.','','','b','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-05-04 10:18:00'),(109,'The balance at the end of the period is',' 270,000.','139,000.','131,000.','120,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','c','','wassce','2013',68,'Admin','2016-11-15 20:31:31','2020-06-27 19:42:58'),(110,'The total expenditure for the period is','319,000.','270,000','139,000.','109,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','d','','wassce','2013',78,'Admin','2016-11-15 20:31:31','2020-06-26 17:03:02'),(111,'Which of the following is not an item on the credit side of the purchases ledger control account?','Cash received','Cash payment','Contra settlement','Cheque payment','','','a','','wassce','2013',77,'Admin','2016-11-15 20:31:31','2020-07-04 00:40:47'),(112,'When a business is purchased from a sole trader, the excess of the purchase price over the net assets is','reserve.','goodwill.','freehold.','valuation price.','','','b','','wassce','2013',83,'Admin','2016-11-15 20:31:31','2020-07-05 16:18:17'),(113,'A set of instructions or programs which controls the operation of a computer is','software.','hardware.','monitor.','keyboard.','','','a','','wassce','2013',85,'Admin','2016-11-15 20:31:31','2020-07-06 21:49:41'),(114,'The process of detecting, tracing and eliminating errors in a computer program is','reproduction.','debugging.','sorting.','retrieving.','','','b','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-06-27 16:35:28'),(115,'In a not-for-profit making organization, the cash book is referred to as','income and expenditure account.','receipts and payments account.','two column cash book.','petty cash book.','','','b','','wassce','2013',90,'Admin','2016-11-15 20:31:31','2020-06-28 18:07:02'),(116,'When the going concern concept is no longer applicable, the fixed assets are recorded at their','net book value.','realizable value.','gross value.','revalued amount.','','','b','','wassce','2013',87,'Admin','2016-11-15 20:31:31','2020-06-27 19:42:58'),(117,'The cost of raw materials consumed is','GHc 58,000.','GHc 52,500.','GHc 52,000.','GHc 50,000.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','b','','wassce','2013',86,'Admin','2016-11-15 20:31:31','2020-06-27 19:42:58'),(118,'The prime cost is','GHc 64,500.','GHc 64,000.','GHc 58,500.','GHc 52,500.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','a','','wassce','2013',93,'Admin','2016-11-15 20:31:31','2020-06-25 23:53:42'),(119,'Which of the following relates to the essence of partnership? To','run a charity organization.','pursue a social objective.','form a business for profit.','run a religious objective.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-06-28 18:07:02'),(120,'The basic assumption which underlines the preparation of periodic financial statement is known as accounting','bases.','techniques.','concepts.','method.','','','a','','wassce','2013',96,'Admin','2016-11-15 20:31:31','2020-06-01 22:16:23'),(121,'Upon the dissolution of a partnership business, the party to be settled first out of the proceeds realized is','unsecured creditors.','partners’ loan and advances.','secured creditors.','partners’ capital.','','','c','','wassce','2013',72,'Admin','2016-11-15 20:31:31','2020-06-27 16:35:28'),(122,'Stock account is a type of','nominal account.','personal account.','real account.','fixed assets account.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-06-26 17:03:02'),(123,'At the end of a trading period, cost of goods sold is debited to the trading account while cost of services is        debited to the','balance sheet.','manufacturing account.','trading account.','profit and loss account.','','','d','','wassce','2013',84,'Admin','2016-11-15 20:31:31','2020-06-26 13:00:08'),(124,'Which of the following is not part of prime costof production?','Depreciation of factory equipment','Direct expenses','Direct wages','Carriage on raw materials','','','a','','wassce','2013',77,'Admin','2016-11-15 20:31:31','2020-06-27 16:52:23'),(125,'Excess of current assets over current liabilities is','deferred capital.','nominal capital.','working capital','authorized capital.','','','c','','wassce','2013',71,'Admin','2016-11-15 20:31:31','2020-07-05 16:18:17'),(126,'A statement showing a trader’s financial position as at a particular date is a/an','trading account.','profit and loss account.','balance sheet.','appropriation account.','','','c','','wassce','2013',93,'Admin','2016-11-15 20:31:31','2020-07-04 20:51:25'),(127,'A trading account is prepared to disclose the','net profit or loss for the year.','gross profit or loss for the year.','accumulated fund for the year.','gross profit on manufacturing.','','','b','','wassce','2013',83,'Admin','2016-11-15 20:31:31','2020-06-25 23:58:34'),(128,'Balance as per cash book 2, 970  Bank Charges 220 ;Unpresented cheques 3, 950; Uncredited cheques 4,178 ; Direct debit by bank 1, 000 . Determine  the balance as per bank Statement','N1,978','N1,962','N1,522','N2,522','','','d','','utme','2016',72,'Admin','2016-11-16 07:48:40','2020-06-26 13:00:08'),(129,'The records of Superstores shows a loan of  N14,000 from Bala, creditor N8, 000 and assets N190, 500. What is the firm’s capital?','184, 000','1 96, 500','212 000','168, 500','','','d','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-05-04 10:18:01'),(130,'The major advantage of the journal proper is that it','helps in the preparation of the balance sheet','prevents fraud and theft of item of the business','serves as a book of instruction to the bookkeeper','helps the banking industry to be efficient.','','','b','','utme','2016',79,'Admin','2016-11-16 07:48:41','2020-06-27 19:42:58'),(131,'One of the objectives of accounting is that it can be used for','business decision making','due process in business','motivating employees','determining the work force.','','','a','','utme','2016',77,'Admin','2016-11-16 07:48:41','2020-06-24 20:29:33'),(132,'The ratio that gives the indication of the efficiency of a firm’s sales with respect to cost of goods sold is a','return on capital employed','gross profit margin','net profit margin','return on equity.','','','b','','utme','2016',86,'Admin','2016-11-16 07:48:41','2020-06-27 19:42:58'),(133,'The instrument used in analysis and interpretation of financial statement is the','accounting ratios','income and expenditure extract','balance sheet extract','fund accounting.','','','a','','utme','2016',82,'Admin','2016-11-16 07:48:41','2020-07-06 21:49:41'),(134,'An item in the balance sheet of a limited liability company is','accrued expenses','lighting and heating','salaries and wages','general expenses.','','','a','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-06-27 16:35:28'),(135,'The documents that provide instant information to firms on their transactions with banks are','bank statement and debit note','cheque stub and deposit slip','cheque book and cashbook','payslip and credit invoice.','','','a','','utme','2016',76,'Admin','2016-11-16 07:48:41','2020-06-25 23:53:42'),(136,'Which of the following is the capital reserve of a company?','Accumulated depreciation.','Retained profit.','Share premium','Loss on forfeited shares','','','b','','utme','2016',76,'Admin','2016-11-16 07:48:41','2020-07-06 21:49:41'),(137,'The effect of overstating-revenue expenditure in the profit and loss account is that the','opening stock will be increased','net profit will be understated','net profit will be overstated','opening stock will be decreased','','','b','','utme','2016',82,'Admin','2016-11-16 07:48:41','2020-07-04 00:40:47'),(138,'Which of the following conditions would attract credit and debit notes to be used?','When goods are received from supplier.','When a trial balance is extracted','When a buyer is under or over charged.','When goods are sold to a buyer.','','','c','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-06-26 09:11:37'),(139,'Given:  Drawings [3,500]; Net loss [2, 500]; Capital 1.1.2007 [35, 000], Additional capital [10, 000]. The adjusted capital as at 31 : 12 : 2007 is','N45, 000','N39,000','N35, 000','N46, 000','','','d','','utme','2016',73,'Admin','2016-11-16 07:48:41','2020-05-06 20:56:56'),(140,'A receipt is an evidence of','payments','stocking','delivery','discounts.','','','a','','utme','2016',72,'Admin','2016-11-16 07:48:41','2020-05-03 17:36:08'),(141,'An organization which has records of only personal accounts is said to be operating on the basis of','single entry','real accounts','double entry','nominal accounts','','','a','','utme','2016',98,'Admin','2016-11-16 07:48:41','2020-07-04 00:40:47'),(142,'A proprietor started business with N13, 000.  Assets and liabilities at the end of the year; fixed assets N8, 800, stock N2, 600, debtors  N1 , 000, cash N3, 000 and creditors N1 , 000. Determine the profit for the year?','N2, 400','N3, 000','N9, 800','N 1 , 400','','','d','','utme','2016',82,'Admin','2016-11-16 07:48:41','2020-04-28 17:41:03'),(143,'Badge Plc issued 450, 000 ordinary shares, of 50K each at N1 .50 per share. Application and allotment 45k, 1st call 50k, 2nd call 55k. Determine the amount received on final call.','N225, 000','N236, 250','N 247, 500','N 202, 500','','','c','','utme','2016',90,'Admin','2016-11-16 07:48:41','2020-06-27 19:42:58'),(144,'When goods are sent to the branch at cost plus mark­up, it means that the branch should sell at','a price above or below the stipulated price','any price but not below the transfer price','cost price','a price that is equal to the mark-up.','','','a','','utme','2016',72,'Admin','2016-11-16 07:48:41','2020-07-04 00:40:47'),(145,'The income and expenditure account differs from receipts and payments account because it','accounts for notional charges','records transactions that relate to the period on cash basis','records transactions that relate to the period  on accrual basis','accounts for balance of cash at bank.','','','b','','utme','2016',83,'Admin','2016-11-16 07:48:41','2020-06-09 11:47:30'),(146,'The major sources of revenue for the state and local governments is','value added tax','statutory allocation','taxes and levies','recurrent revenue.','','','b','','utme','2016',87,'Admin','2016-11-16 07:48:41','2020-06-01 19:36:02'),(147,'Which of the following -is -correct about the imprest system?','II and IV','I, III and IV','I, II and III','III and IV','I.   The amount of the imprest is the same from one organization to another. II. At the end of a fixed period, the petty cashier received a fixed sum of money.  III.  At the end of a period, the petty-cashier is reimbursed, with the amount spent in that period. IV. The system is a method by which a measure  of control is kept on petty cash expenses','','c','','utme','2016',82,'Admin','2016-11-16 07:48:41','2020-06-01 19:36:02'),(148,'When the fixed capital method is used, the partners share of profits and remunerations are credited to the','current account.','profit and Loss account.','profit and loss appropriation account.','capital account.','','','d','','utme','2016',89,'Admin','2016-11-16 07:48:41','2020-07-04 00:40:47'),(149,'A discount that is allowed to encourage a debtor to pay off his debt within a period is the','trade discount','annual discount','periodic discount','cash discount.','','','d','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-06-26 21:58:16'),(150,'The costs of acquiring fixed assets and bringing them into the firm is a','general expenses','recurrent expenditure','revenue expenditure','capital expenditure.','','','d','','utme','2016',88,'Admin','2016-11-16 07:48:41','2020-07-06 21:49:41'),(151,'The impersonal account is subdivided into','realand nominal accounts','nominal and personal accounts','real and current accounts','personal and real accounts.','','','a','','utme','2016',82,'Admin','2016-11-16 07:48:41','2020-06-28 18:07:02'),(152,'Opening balance of Diksacompany was 12, 202, closing balance N15,300, total cash received during the period N40, 000. What was the amount of cash paid during the same period?','N36. 902','N27,502','N12,498','N43.098','','','c','','utme','2016',90,'Admin','2016-11-16 07:48:42','2020-06-28 18:07:03'),(153,'The total cash and cheques received from customers in a control account is derived from the','income and expenditure account','cashbook','purchases day book','sales journal','','','d','','utme','2016',82,'Admin','2016-11-16 07:48:42','2020-04-30 17:58:09'),(154,'Which of the followings is a credit item in creditors ledger control account?','Returns outwards.','Discount Received.','Bad debts.','Purchases.','','','d','','utme','2016',102,'Admin','2016-11-16 07:48:42','2020-06-01 22:16:23'),(155,'The trader’s capital in a single entry system is ascertained by preparing','gross profit','statement of affairs','suspense account','appropriation account','','','b','','utme','2016',87,'Admin','2016-11-16 07:48:42','2020-06-28 18:07:02'),(156,'From the information above, sources of income for a Not-for-profit making organization include','I, III, IV','I, II, III','I, II, IV','I and IV','I.   Members subscription II.  Fines  from members  III. Donation  IV.  Loan from bank','','b','','utme','2016',80,'Admin','2016-11-16 07:48:42','2020-05-04 18:54:20'),(157,'Clifford pays rent of  N200 per month for premises. He paid N 2,800 within the year, Compute the prepayment.','N300','N400','N660','N200','','','b','','utme','2016',90,'Admin','2016-11-16 07:48:42','2020-06-24 20:34:44'),(158,'Purchases can be ascertained through the preparation of a','stock account','sales account','total debtors’ control account','total creditors, control account','','','d','','utme','2016',74,'Admin','2016-11-16 07:48:42','2020-07-04 00:40:47'),(159,'When stock is withdrawn, for personal use, the accounting entries is to debit','stock account, credit drawings','drawing account credit stock account','personal account credit cash account','cash account, credit personal account.','','','b','','utme','2016',132,'Admin','2016-11-16 07:48:42','2020-07-05 23:25:43'),(160,'Sundry debtors in the balance sheet of Onoja Bakery and Sons totaled N800,000. A provision of 2% was made for discount and 5% provision for bad and doubtful debts.  Find the amount for sundry debtors after provision.','N744,800','N 760,000','N784, 000','N744, 000','','','d','','utme','2016',79,'Admin','2016-11-16 07:48:42','2020-06-28 09:41:55'),(161,'Which of the following is accounted for in receipts and payments account?','Accrued expenses on annual dances','Subscriptions due but not yet received','Interest on bank deposit','Depreciation of the club house.','','','c','','utme','2016',75,'Admin','2016-11-16 07:48:42','2020-06-27 16:52:23'),(162,'When the purchase Consideration is lower than the net asset, the buyer has gained the advantage of','capital reserve','revenue reserve','net-income','net loss','','','a','','utme','2016',71,'Admin','2016-11-16 07:48:42','2020-06-26 17:03:02'),(163,'An increase in government expenditure within a year is taken care of by means of','virement','financial regulations','supplementary estimate','warrant.','','','b','','utme','2016',81,'Admin','2016-11-16 07:48:42','2020-06-28 09:41:55'),(164,'A business organization prepares departmental account in order to','ascertain the contribution of each department to the organization','ascertain interdepartmental transfer','build other branches','know the number of departments in the organization.','','','a','','utme','2016',73,'Admin','2016-11-16 07:48:42','2020-07-06 21:49:41'),(165,'The objective of departmental account is to','ascertain the amount of profits or losses for the enterprise','ascertain the amount of profits or losses for each department','ascertain the cost of running the organization.','offset the loss of each department.','','','b','','utme','2016',94,'Admin','2016-11-16 07:48:42','2020-07-06 21:49:41'),(166,'Which of the following expenses relate to the profit and loss account of a manufacturing firm?','Administrative overhead.','Direct labour','Direct materials.','Work-in-progress.','','','a','','utme','2016',86,'Admin','2016-11-16 07:48:42','2020-07-06 21:49:41'),(167,'The difference between book keeping and accounting is that while','book keeping interprets data accounting records it','book keeping is regarded as  the language of the business, accounting ascertains its .strength and weakness','book keeping records data accounting interprets it','book keeping - summaries information, accounting communicates it.','','','c','','utme','2016',80,'Admin','2016-11-16 07:48:42','2020-06-25 23:58:34'),(168,'Alaka who owed Saka N15, 000, settled his deb  after- deducting cash discount of 10%. To record the discount in the book of Saka, debit','Saka’s account and credit discount received account','Alaka’s account and credit discount received account','discount received account andcredit Alaka’s account','discount allowed account and credit Alaka’s account.','','','a','','utme','2016',86,'Admin','2016-11-16 07:48:42','2020-05-06 20:56:56'),(169,'If the scrap value is now N15, 000, what will be the yearly depreciation using straight line method?','N11 000','N7, 000','N 4, 000','N24. 000','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','c','','utme','2016',91,'Admin','2016-11-16 07:48:42','2020-06-02 01:19:50'),(170,'The yearly depreciation using the straight line method would be','N5,200','N6,500','N8, 800','N4, 400','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','a','','utme','2016',86,'Admin','2016-11-16 07:48:42','2020-05-03 17:28:52'),(171,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N  5,000','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','c','','utme','2016',89,'Admin','2016-11-16 07:48:42','2020-07-05 07:34:59'),(172,'The market value of goods produced is','N30,500','N3, 600','N31,600','N31,620','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','b','','utme','2016',93,'Admin','2016-11-16 07:48:42','2020-07-04 00:40:47'),(173,'A suspense account is used to','agree the trial balance','record sales','record purchases','correct errors','','','a','','wassce','1997',42,'Admin','2016-11-18 07:24:28','2020-06-25 23:53:42'),(174,'To correct an error, the Purchases Account was debited while Suspense Account was credited. Which  of  the following was the cause of the error?','Under casting of purchases','Overcasting of purchases','Original entry.','Transportation of returns outwards','','','a','','wassce','1997',54,'Admin','2016-11-18 07:24:28','2020-05-03 05:25:19'),(175,'Subscription in advance is treated in the Balance Sheet of \tnon-profit making organizations as','current asset','fixed asset','Current liability','accumulated fund','','','c','','wassce','1997',75,'Admin','2016-11-18 07:24:28','2020-06-26 17:03:02'),(176,'A Sales Day Book is used to record','cash sales of stock','credit sales of stock','cash and credit sales of stock','cash sales of fixed assets','','','b','','wassce','1997',78,'Admin','2016-11-18 07:24:28','2020-06-25 23:58:34'),(177,'Which of the following is not a capital expenditure to a local government?','Beds','Theatre equipment','Incubators','Drugs','','','d','','wassce','1997',78,'Admin','2016-11-18 07:24:28','2020-06-26 08:11:06'),(178,'A Receipt and Payments Account reveals','net profit','surplus','cash in hand','gross profit','','','c','','wassce','1997',83,'Admin','2016-11-18 07:24:28','2020-06-27 16:35:28'),(179,'An example of appropriation of profit in a company is','salaries','rent income','debenture interest','dividend.','','','d','','wassce','1997',57,'Admin','2016-11-18 07:24:28','2020-06-26 13:00:08'),(180,'In a partnership goodwill is recognized when','a new partner is admitted','a partner is dormant','the business is making huge profit','the business has good customer relations','','','a','','wassce','1997',71,'Admin','2016-11-18 07:24:28','2020-07-06 21:49:41'),(181,'Which of the following is a normal account?','Machinery','Debtors','Creditors','Salaries','','','d','','wassce','1997',75,'Admin','2016-11-18 07:24:28','2020-07-04 00:40:47'),(182,'The net book value at the time of sale was','N=  16,000','N=  14,000','N=  12,000','N= 6,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',70,'Admin','2016-11-18 07:24:28','2020-06-26 21:58:16'),(183,'Accumulated depreciation at the time of sale was','N= 16,000','N=  14,000','N=  12,000','N=  8,000','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','b','','wassce','1997',63,'Admin','2016-11-18 07:24:28','2020-06-24 20:34:44'),(184,'The prof it on sale was','N=  8,000','N=  7,000','N=  6,000','N=  1,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',65,'Admin','2016-11-18 07:24:28','2020-05-04 18:54:19'),(185,'In Manufacturing Account, prime cost plus factory overhead is known as','conversion cost','cost of raw materials consumed','total cost','production cost','','','d','','wassce','1997',66,'Admin','2016-11-18 07:24:28','2020-06-25 23:53:42'),(186,'Which of the following is an advantage of the imprest system?','Making high profits in the business','Rewarding the imprest holder','Easy preparation of the final accounts','Meeting small items of expenditure','','','d','','wassce','1997',65,'Admin','2016-11-18 07:24:28','2020-07-04 00:40:47'),(187,'Where a business is purchased, the full amount of the purchase consideration is credited to','Purchase of Business Account','Creditor’s Account','Vendor’s Account','Purchaser’s Account.','','','a','','wassce','1997',63,'Admin','2016-11-18 07:24:28','2020-06-27 19:42:58'),(188,'A financial plan of action expressed in monetary terms is known as','imprest','consolidated fund','warrant','budget','','','d','','wassce','1997',75,'Admin','2016-11-18 07:24:28','2020-05-04 10:18:00'),(189,'Which of the following is not a source document for recording sales?','Debit note','Credit note','Receipt','Sales journal','','','d','','wassce','1997',87,'Admin','2016-11-18 07:24:28','2020-07-06 05:43:10'),(190,'The mark-up is','N  15,000','N 9,000','N  4,000','N  3,000','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','d','','wassce','1997',67,'Admin','2016-11-18 07:24:28','2020-05-04 18:47:08'),(191,'The double entry required for the mark-up is debit Branch','Sales Account, credit Branch Adjustment Account','Adjustment Account, credit Branch Stock Account','Stock Account, credit Branch Adjustment Account','Profit and Loss Account, credit Branch Stock Account,','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','c','','wassce','1997',58,'Admin','2016-11-18 07:24:28','2020-06-02 16:55:45'),(192,'A ledger is a','book of accounts','summary of entries','book of original entry','double entry posting','','','d','','wassce','1997',57,'Admin','2016-11-18 07:24:29','2020-06-28 07:15:53'),(193,'A real account is the account of','expenses or losses','gains or income','physical tangible items','fictitious items','','','c','','wassce','1997',76,'Admin','2016-11-18 07:24:29','2020-07-06 21:49:41'),(194,'An item is fictitious because it','does not exist','is too costly','is worthless','cannot be sold for cash','','','a','','wassce','1997',67,'Admin','2016-11-18 07:24:29','2020-06-02 10:21:57'),(195,'Which of the following is not a personal account?','Bolaji Account','Drawings Account','P.Z. Plc Account','Cash Account','','','c','','wassce','1997',64,'Admin','2016-11-18 07:24:29','2020-07-04 00:40:47'),(196,'A provision is','an expense of business to be paid for in cash','an amount of loss from trading activities','a loss in value of all business assets','an expense the amount of which is not certain','','','d','','wassce','1997',77,'Admin','2016-11-18 07:24:29','2020-05-04 10:07:01'),(197,'A cash discount is a','Trading Account item','Profit and Loss Account item','Appropriation Account item','Receipts and Payments Account item','','','b','','wassce','1997',66,'Admin','2016-11-18 07:24:29','2020-06-26 21:58:16'),(198,'The amount of capital expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','b','','wassce','1997',62,'Admin','2016-11-18 07:24:29','2020-06-25 23:22:50'),(199,'The amount of revenue expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','c','','wassce','1997',83,'Admin','2016-11-18 07:24:29','2020-06-24 20:34:44'),(200,'An expense becomes an accrual because it','is due for payment','is a Profit and Loss Account item','is a Trading Account item','is to be paid within the next one year','','','a','','wassce','1997',76,'Admin','2016-11-18 07:24:29','2020-07-04 00:40:47'),(201,'The amount for which a business is sold is known as','goodwill','capital reserve','purchase consideration','premium','','','c','','wassce','1997',56,'Admin','2016-11-18 07:24:29','2020-06-27 16:52:23'),(202,'The person, who is responsible for the formation of a company is called the','promoter','sponsor','shareholder','director','','','a','','wassce','1997',59,'Admin','2016-11-18 07:24:29','2020-06-27 16:35:28'),(203,'The amount of a company’s profit given to a shareholder is known as','premium','dividend','interest','allotment','','','b','','wassce','1997',63,'Admin','2016-11-18 07:24:29','2020-06-26 13:00:08'),(204,'Which of the following best describes the path of a transaction?','Source documents to Journal to Ledger','Source documents to Ledger to Journal','Journal to Ledger to source documents','Journal to source documents to Ledger','','','a','','wassce','1997',79,'Admin','2016-11-18 07:24:29','2020-06-26 21:58:16'),(205,'Where there are no proper books of account, the capital at the commencement of a period is ascertained by preparing','Total Debtors and Creditors Accounts','Bank Reconciliation Statement','Statement of Affairs','Trading, Profit and Loss Accounts','','','c','','wassce','1997',77,'Admin','2016-11-18 07:24:29','2020-07-06 21:49:41'),(206,'Rent receivable is a','current asset','current liability','contingent liability','fictitious asset','','','b','','wassce','1997',78,'Admin','2016-11-18 07:24:29','2020-06-03 20:26:00'),(207,'Which of the following is a factory overhead?','carriage on raw materials','Purchase of raw materials','Production wages','Depreciation of factory equipment.','','','d','','wassce','1997',73,'Admin','2016-11-18 07:24:29','2020-06-25 23:22:50'),(208,'The purchase consideration was','N  24,000','N 23,000','N  20,000','N 15,000','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','a','','wassce','1997',56,'Admin','2016-11-18 07:24:29','2020-06-24 20:29:33'),(209,'The amount of goodwill was','N  4,000','N  3,000','N  2,000','N  1,000.','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','d','','wassce','1997',74,'Admin','2016-11-18 07:24:29','2020-05-04 18:47:09'),(210,'When a share is sold for less than its nominal value, the difference is called','discount','reserve','premium','loss','','','a','','wassce','1997',63,'Admin','2016-11-18 07:24:29','2020-07-04 00:40:47'),(211,'Which of the following serves the same purpose as a Trading Account?','Branch Adjustment Account','Goods sent to Branch Account','Branch Stock Account','Branch Debtors Account','','','c','','wassce','1997',77,'Admin','2016-11-18 07:24:29','2020-06-26 08:11:06'),(212,'Which of the following is not a revenue receipt?','Receipt from sales of goods','Rent from premises sublet','Interest on savings account','cash on sale of fixed asset','','','d','','wassce','1997',76,'Admin','2016-11-18 07:24:29','2020-06-28 09:41:55'),(213,'The art of collecting, recording, presenting and interpreting accounting data is','cost accounting','management accounting','financial accounting','data processing.','','','c','','wassce','2006',78,'Admin','2016-11-18 07:56:05','2020-06-25 23:58:34'),(214,'The depreciation method in which the number of years of the useful life of an asset is allocated in a reverse order is','straight line','reducing balance','sum of the years’ digits','revaluation.','','','c','','wassce','2006',91,'Admin','2016-11-18 07:56:06','2020-06-26 09:11:37'),(215,'A system where a separate cash book is maintained for small payments is','single entry','imprest','float','reimbursement.','','','b','','wassce','2006',80,'Admin','2016-11-18 07:56:06','2020-06-25 23:58:34'),(216,'Public sector accounting is practiced in','public limited companies','government organizations','profit making organizations','public trading companies.','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:06','2020-06-28 07:15:53'),(217,'A book that contains the accounts for the financial transactions of an organization is the','journal','ledger','folio','register','','','b','','wassce','2006',81,'Admin','2016-11-18 07:56:06','2020-06-05 15:31:37'),(218,'A sales ledger contains','creditors’ accounts','nominal accounts','real accounts','debtors’ accounts.','','','d','','wassce','2006',96,'Admin','2016-11-18 07:56:06','2020-06-27 16:35:28'),(219,'Books of account consists of','ledgers and subsidiary books','ledgers and principal books','folios and subsidiary books','ledgers and cash book.','','','a','','wassce','2006',70,'Admin','2016-11-18 07:56:06','2020-05-03 09:44:33'),(220,'The amount set aside out of profits earned by a company which are not meant for liability or contingency are','dividends','provisions','retained profits','reserves','','','d','','wassce','2006',85,'Admin','2016-11-18 07:56:06','2020-06-27 19:42:58'),(221,'The basis of accounting which eliminates debtors and creditors is','cash basis','accrual basis','fund basis','commitment basis.','','','a','','wassce','2006',85,'Admin','2016-11-18 07:56:06','2020-06-26 13:00:08'),(222,'Which of the following is not a revenue account?','Sales','Purchases','Discount received','Interest received','','','b','','wassce','2006',84,'Admin','2016-11-18 07:56:06','2020-06-25 23:53:42'),(223,'If  no profit is to be retained, proposed preference shares dividend is','N  28,000','N  16,000','N  12,000.','N  4,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',73,'Admin','2016-11-18 07:56:06','2020-06-25 23:22:50'),(224,'If  no profit is to be retained, proposed ordinary shares dividend is','N   48,000','N  44,000','N  40,000','N  28,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','c','','wassce','2006',77,'Admin','2016-11-18 07:56:06','2020-06-26 17:03:02'),(225,'The dividend per ordinary share for the year is','N  0.88 kobo','N  0.40 kobo','N  0.20 kobo','N  0.17 kobo','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',82,'Admin','2016-11-18 07:56:06','2020-05-04 18:37:47'),(226,'A customer who returns goods to the supplier because they are defective is issued a','debit note','credit note','delivery note','bank note.','','','b','','wassce','2006',86,'Admin','2016-11-18 07:56:06','2020-06-26 09:11:37'),(227,'Cross referencing among different books of accounts is achieved with the use of','columns','reference numbers','folio','margin.','','','c','','wassce','2006',80,'Admin','2016-11-18 07:56:07','2020-06-27 16:52:23'),(228,'In company accounts, profit after tax is shared in the','appropriation account','revaluation account','current account','realization account.','','','a','','wassce','2006',80,'Admin','2016-11-18 07:56:07','2020-06-25 23:22:50'),(229,'Which of the following is not a source of revenue to a government?','Taxation','Sale of goods','Imposition of fines','Grants','','','b','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-06-28 07:15:53'),(230,'Whatever is fed into the computer is exactly what would be processed and produced as output. This is the concept of','sorting out','last in, first out','first in, first out','garbage in, garbage out.','','','d','','wassce','2006',86,'Admin','2016-11-18 07:56:07','2020-07-04 00:40:47'),(231,'Bank reconciliation statement reconciles','bank and cash balances in the cash book','bank balance in the cash book and bank statement balance','cash balance in the cash book and bank statement balance','bank balance brought down and bank balance carried down in the cash bcok.','','','b','','wassce','2006',77,'Admin','2016-11-18 07:56:07','2020-06-26 13:00:08'),(232,'The unit which keeps government’s books of accounts is the','Central Bank','Internal Audit Department','Treasury Department','Accountant General’s Department.','','','c','','wassce','2006',73,'Admin','2016-11-18 07:56:07','2020-06-26 21:58:16'),(233,'Which of the following is not a debit item in a partnership \tappropriation account?','Interest on drawings','Partner’s salary','Interest on partner’s capital','Share of profit.','','','a','','wassce','2006',88,'Admin','2016-11-18 07:56:07','2020-06-27 19:42:58'),(234,'Revenue is recognized in the profit and loss account as soon as a','debtor pays what is due from him','sale of goods takes place and money is received','sale of goods takes place whether or not money is received','sale of a fixed asset takes place.','','','c','','wassce','2006',79,'Admin','2016-11-18 07:56:07','2020-06-05 15:31:31'),(235,'“A business unit is assumed to operate into foreseeable future and earn reasonable net income”. This statement is emphasized by the concept of','business entity','going concern','realization','accrual.','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:07','2020-06-28 09:41:55'),(236,'Which of the following is not used in solving problems of incomplete records?','Control Accounts','Statement of affairs','Cash book','Balance sheet','','','d','','wassce','2006',90,'Admin','2016-11-18 07:56:07','2020-07-05 07:34:59'),(237,'In a system of incomplete records, the opening capital is determined by preparing','statement of affairs','balance sheet','cash book','trial balance.','','','a','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-06-19 01:06:41'),(238,'Cost of raw materials consumed is','D113,000','D105,500','D98,000','D95,500.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','c','','wassce','2006',76,'Admin','2016-11-18 07:56:07','2020-06-26 13:00:08'),(239,'Prime cost is','D120,500','D117,700','D114,900','D114,300.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','b','','wassce','2006',69,'Admin','2016-11-18 07:56:07','2020-06-24 20:34:44'),(240,'Cost of goods manufactured is','D138,000','D131,800','D130,500','D123,000.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','a','','wassce','2006',71,'Admin','2016-11-18 07:56:07','2020-06-27 16:35:28'),(241,'A set of instructions fed into a computer for accomplishing a given task is a/an','input','programme','output','data.','','','b','','wassce','2006',86,'Admin','2016-11-18 07:56:07','2020-04-28 17:47:34'),(242,'Control accounts are also known as','contra accounts','total accounts','ledger accounts','integral accounts.','','','b','','wassce','2006',80,'Admin','2016-11-18 07:56:07','2020-07-06 21:49:41'),(243,'Which of the following is charged to trading account?','Discounts allowed','Carriage outwards','Salaries','Carriage inwards.','','','d','','wassce','2006',83,'Admin','2016-11-18 07:56:07','2020-06-26 17:03:02'),(244,'Which of the following is not a debit item in a creditor’s control \taccount?','Cash paid','Returns outwards','Purchases','Discounts received','','','c','','wassce','2006',79,'Admin','2016-11-18 07:56:07','2020-06-28 07:15:53'),(245,'Using the straight line method, the depreciation charged for year 2002 was','N 160,000','N  130.000','N  100,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',77,'Admin','2016-11-18 07:56:07','2020-06-24 20:29:33'),(246,'Using the reducing balance method, the depreciation charged for year 2002 was','N 100,000','N  90,000','N  80,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',76,'Admin','2016-11-18 07:56:07','2020-04-28 17:46:22'),(247,'Using the reducing balance method, the depreciation charged for year 2003 was','N  160,000','N  150,000','N   130,000','N  120,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','b','','wassce','2006',81,'Admin','2016-11-18 07:56:07','2020-06-26 08:11:06'),(248,'Which of the following is not a revenue expenditure?','Payment: of salaries','Payment for advertisement','Purchases of motor vehicle','Purchases of goods.','','','c','','wassce','2006',74,'Admin','2016-11-18 07:56:07','2020-05-06 04:50:22'),(249,'The amount allowed off the cost price of an article to stimulate patronage is','cash discount','trade discount','discount on debt','discount on bills.','','','b','','wassce','2006',84,'Admin','2016-11-18 07:56:08','2020-07-06 21:49:41'),(250,'Which of the following is a Journal as well as an account?','Sales day book','Cash book','General journal','Purchases journal','','','c','','wassce','2006',79,'Admin','2016-11-18 07:56:08','2020-06-28 18:07:02'),(251,'Which of the following columns of a three column cash book \tare memoranda?  I. Discount received  II. Discount allowed III. Cash IV. Bank','I and II only','I and III only','II and III only','ll and IV only.','','','d','','wassce','2006',88,'Admin','2016-11-18 07:56:08','2020-06-15 09:48:14'),(252,'The adjusted cash book balance is','D11,200','D8,400','D6,200','D5,600','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','d','','wassce','2006',83,'Admin','2016-11-18 07:56:08','2020-06-27 16:52:23'),(253,'The balance as per bank statement is','D10,900','D8,400','D5,600','D2,800','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','b','','wassce','2006',81,'Admin','2016-11-18 07:56:08','2020-06-26 13:00:08'),(254,'Where the head office maintains all books of account, goods sent to branch is credited to','Goods Sent to Branch Account','Branch Stock Account','Branch Stock Adjustment Account','Head Office Current Account','','','a','','wassce','2006',72,'Admin','2016-11-18 07:56:08','2020-06-27 16:35:28'),(255,'Which of the following is not a purpose for preparing departmental accounts? To','compare the results of different departments','employ staff into different departments','reward departmental managers','obtain information for formulating policies.','','','b','','wassce','2006',74,'Admin','2016-11-18 07:56:08','2020-06-28 18:07:03'),(256,'Rent expenses for the year 2005 is','N 11,400','N  11,300','N  11,200','N  10,200.','Rent accrued 1st January, 2005 [600], Rent paid in 2005 [11,300], Rent prepaid 31st December, 2005 [500]','','c','','wassce','2006',101,'Admin','2016-11-18 07:56:08','2020-06-26 21:58:16'),(257,'Which of the following is not classified as an overhead?','Factory rates','Factory power','Factory building extension','Factory depreciation.','','','c','','wassce','2006',87,'Admin','2016-11-18 07:56:08','2020-06-05 15:31:33'),(258,'The objective of accounting information is to enable users to','prepare the financial statements.','value stock','make decisions','prepare budgets','','','c','','wassce','2012',89,'Admin','2016-12-13 21:23:13','2020-06-28 18:07:02'),(259,'Trade discounts are given for','bulk purchases','prompt payment','quick delivery','cash payment','','','a','','wassce','2012',82,'Admin','2016-12-13 21:23:13','2020-05-04 18:12:30'),(260,'When closing stock is overstated, it would reduce','cost of sales and increase gross profit.','gross profit and increase cost of sales.','purchases and increase sales.','sales and increase purchases.','','','a','','wassce','2012',83,'Admin','2016-12-13 21:23:13','2020-06-05 15:31:32'),(261,'Which of the following is not a source document?','Journal proper','Sales invoice','Debit note','Credit note','','','a','','wassce','2012',82,'Admin','2016-12-13 21:23:13','2020-06-02 01:19:50'),(262,'A fixed asset fully written-down by a trader is now considered to be worth N5,000. The double entry required to effect       this is: debit','Asset Account; credit Purchases Account.','Asset Account; credit Capital Account.','Capital Account; credit Asset Account.','Capital Account; credit Profit and Loss Account.','','','b','','wassce','2012',69,'Admin','2016-12-13 21:23:13','2020-06-26 21:58:16'),(263,'Which of the following is a book of original entry?','Ledger','Balance sheet','Bank statement','Sales journal','','','d','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-06-24 20:34:44'),(264,'A Balance Sheet shows only','fixed assets and current assets','assets and long term liabilities.','assets and liabilities','assets and capital','','','c','','wassce','2012',76,'Admin','2016-12-13 21:23:13','2020-06-27 16:52:23'),(265,'The process of entering transaction from one book to another is','reading.','posting.','numbering','listing','','','b','','wassce','2012',75,'Admin','2016-12-13 21:23:13','2020-07-05 07:34:59'),(266,'which of the following is a Trading Account item?','Discounts allowed','Discounts received','Carriage outwards','Carriage inwards','','','d','','wassce','2012',75,'Admin','2016-12-13 21:23:13','2020-06-26 13:00:08'),(267,'The addition of prime cost and factory overheads is','total factory overheads.','market value of goods produced.','cost of goods produced','work-in-progress.','','','c','','wassce','2012',79,'Admin','2016-12-13 21:23:13','2020-05-06 21:26:01'),(268,'Capital receipt is collected','on sales of motor vehicle.','on sales of stock in trade.','from trade debtor','from trading activities.','','','a','','wassce','2012',79,'Admin','2016-12-13 21:23:13','2020-07-05 07:34:59'),(269,'Which of the following is an example of factory overheads?','Salary of marketing officer','Salary of production officer','Salary of accounting officer','Wages of machine operator','','','d','','wassce','2012',77,'Admin','2016-12-13 21:23:13','2020-06-26 17:03:02'),(270,'Osa started business with Le40,000 cash. The accounting entry is debit','Cash Account; credit Capital Account.','Capital Account; credit Cash Account.','Purchases Account; credit Cash Account.','Expenses Account; credit Capital Account.','','','a','','wassce','2012',82,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(271,'Branch Stock Account is used to determine the','net value of goods sent to branch.','gross profit of the branch.','branch credit sales.','branch net profit or loss.','','','b','','wassce','2012',85,'Admin','2016-12-13 21:23:13','2020-07-04 00:40:47'),(272,'The name given to a budget in public service accounting is','vote.','subvention.','general order.','estimate.','','','d','','wassce','2012',81,'Admin','2016-12-13 21:23:13','2020-06-25 23:53:42'),(273,'Which of the following is not prepared by a partnership?','Trading Account','Profit and Loss Account','Income and Expenditure Account','Profit and Loss Appropriation Account','','','c','','wassce','2012',84,'Admin','2016-12-13 21:23:13','2020-06-26 21:58:16'),(274,'A partner who only makes capital contribution but does not take part in the management of the partnership business is a/an','ordinary partner','limited partner','dormant partner','nominal partner','','','d','','wassce','2012',78,'Admin','2016-12-13 21:23:13','2020-07-05 07:34:59'),(275,'Which of the following is component of prime cost?','Depreciation','Royalty','Factory rent','Factory electricity','','','d','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(276,'The concept which establishes the rule for the periodic recognition of revenue as soon as it is capable of objective measurement is','going concern.','entity.','consistency.','realization.','','','d','','wassce','2012',76,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(277,'Rent accrued in 2009 was D140. In 2010, D900 was paid while D160 was outstanding. Rent for 2010 was','D1,200.','D1.060.','D920.','D880.','','','c','','wassce','2012',61,'Admin','2016-12-13 21:23:13','2020-06-28 07:15:53'),(278,'Which of the following is not an input device?','Card reader','Paper top reader','Alpha-numeric keyboard','Line printer','','','d','','wassce','2012',64,'Admin','2016-12-13 21:23:14','2020-06-26 09:11:37'),(279,'The equivalent of Income and Expenditure Account in a trading concern is','Trading Account.','Profit and Loss Account.','Appropriation Account.','Balance Sheet.','','','b','','wassce','2012',85,'Admin','2016-12-13 21:23:14','2020-05-04 18:47:10'),(280,'The term used to denote the capital of a not-for-profit making \torganization is','annuity fund.','nominal capital.','circulating capital.','cumulated fund','','','d','','wassce','2012',85,'Admin','2016-12-13 21:23:14','2020-07-04 00:40:47'),(281,'The portion of authorized capital that has been allotted to subscribers is','called up capital','paid up capital.','issued capital','nominal capital.','','','c','','wassce','2012',78,'Admin','2016-12-13 21:23:14','2020-06-25 23:22:50'),(282,'Partners whose liabilities are restricted to their financial contribution to the partnership in the event of winding up are','ordinary partners','limited partners','dormant partners','sleeping partners','','','b','','wassce','2012',69,'Admin','2016-12-13 21:23:14','2020-07-06 21:49:41'),(283,'If creditors at 1/1/10 were Le 3,000; creditors at 31/12/10 Le 5,500 and payments to creditors Le 29,000. The purchases figure for 2010 is','Le 34,500','Le 32,000','Le 31,500','Le 26,500','','','c','','wassce','2012',82,'Admin','2016-12-13 21:23:14','2020-07-04 00:40:47'),(284,'Which of the following is not found in the personal ledger?','Debtors Account','Creditors Account','Capital Account','Nominal Account','','','c','','wassce','2012',88,'Admin','2016-12-13 21:23:14','2020-07-06 21:49:41'),(285,'The Sales Ledger Control Account is also referred to as','Bought Ledger Control Account.','Purchases Account.','Total Debtors Account.','Total Creditors Account.','','','c','','wassce','2012',82,'Admin','2016-12-13 21:23:14','2020-06-26 21:58:16'),(286,'Capital expenditure for the year was','Le 545,000','Le 490,000','Le 450,000','Le 300,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','b','','wassce','2012',83,'Admin','2016-12-13 21:23:14','2020-06-27 16:35:28'),(287,'The amount of recurrent expenditure was','Le 245,000.','Le 175,000','Le 135,00.','Le 80,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','c','','wassce','2012',80,'Admin','2016-12-13 21:23:14','2020-05-04 18:47:09'),(288,'An increase in the provision for doubtful debts results in a/an','increase in the gross profit.','decrease in the gross profit.','decrease in the net profit.','increase in the net profit.','','','c','','wassce','2012',68,'Admin','2016-12-13 21:23:14','2020-06-27 19:42:58'),(289,'Which of the following errors affects the agreement of a Trial Balance?','Wrong addition in the sales account','Crediting a purchase to A. Tambi’s account instead of F. Tambi’s account','Failure to enter sales in the books','Posting the purchase of a van to the debit side of the purchases account','','','a','','wassce','2012',74,'Admin','2016-12-13 21:23:14','2020-06-28 18:07:02'),(290,'The excess of the value of assets over the purchase \tconsideration on acquisition of a business is credited to','share capital account.','goodwill account.','capital reserve account','general reserve account.','','','c','','wassce','2012',76,'Admin','2016-12-13 21:23:14','2020-06-26 09:11:37'),(291,'Shares of N3 nominal value were issued at a price of  N4. The difference of N1 is a','commission.','discount.','premium.','bonus.','','','c','','wassce','2012',89,'Admin','2016-12-13 21:23:14','2020-06-05 15:31:33'),(292,'Which of the following is not the purpose of control account?','Check on errors of addition','Locate errors','Locate missing figures','Monitor the cash book','','','d','','wassce','2012',82,'Admin','2016-12-13 21:23:14','2020-06-30 09:28:41'),(293,'Which of the following is not part of the Central Processing Unit of a computer?','Arithmetical and Logical unit','Memory unit','Input unit','Control unit','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:14','2020-06-26 13:00:08'),(294,'The double entry to record the proceeds on disposal of assets is debit','Bank Account; credit Asset Disposal Account.','Asset Disposal Account; credit Bank Account.','Provision for Depreciation Account; credit Asset Disposal Account','Asset Disposal Account; credit Provision for Depreciation Account.','','','a','','wassce','2012',70,'Admin','2016-12-13 21:23:14','2020-06-27 19:42:58'),(295,'An underwriter for a company’s share is paid','Interest.','commission.','dividend.','salary.','','','b','','wassce','2012',78,'Admin','2016-12-13 21:23:15','2020-06-28 18:07:03'),(296,'Which of the following is found in a Memorandum of \tAssociation?','Names of directors','Appointment of directors','Object of the business','Payment of dividend','','','c','','wassce','2012',81,'Admin','2016-12-13 21:23:15','2020-06-26 09:11:37'),(297,'Administrative, selling and distribution expenses in a \tmanufacturing firm are recorded in','Trading Account.','Manufacturing Account.','Profit and Loss Account.','Balance Sheet.','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:15','2020-06-26 17:03:02'),(298,'Which of the following is not a revenue to a local government?','Fines','Licenses','Personal income tax','Tenement rates','','','c','','wassce','2012',77,'Admin','2016-12-13 21:23:15','2020-06-05 15:31:32'),(299,'The capital is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','a','','wassce','2012',80,'Admin','2016-12-13 21:23:15','2020-06-26 13:00:08'),(300,'The liability is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','d','','wassce','2012',89,'Admin','2016-12-13 21:23:15','2020-06-27 16:52:23'),(301,'Which of the following is not an item in the profit and loss account?','Drawings','Interest','Balances','Bad debts','','','a','','wassce','2012',82,'Admin','2016-12-13 21:23:15','2020-06-26 21:58:16'),(302,'A loss made on the disposal of a fixed asset is debited to','Sales Account.','Purchases Account.','Profit and Loss Account.','Capital Account.','','','c','','wassce','2012',85,'Admin','2016-12-13 21:23:15','2020-07-04 00:40:47'),(303,'Which of the following describes a trial balance?','It is a special account','It is a list of balances in the books','It reveals the financial position of a business','It shows all the entries in the books of a business','','','b','','wassce','2015',60,'Admin','2016-12-14 06:09:04','2020-05-04 18:12:30'),(304,'Which of the following is not a feature of accounting information?','Affordability','Timeliness','Accuracy','Completeness','','','a','','wassce','2015',71,'Admin','2016-12-14 06:09:05','2020-06-27 19:42:58'),(305,'Which of the following is the equation for determining net profit or loss from the records of a firm?','Closing Capital - Drawings - Capital Introduced','Opening Capital + Drawings - Closing Capital','Closing Capital + Opening Capital - Drawings','Closing Capital + Drawings - Opening Capital','','','d','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-06-26 21:58:16'),(306,'Purchase invoice is first entered in the','purchases account','cash book','sales journal','purchase journal','','','d','','wassce','2015',71,'Admin','2016-12-14 06:09:05','2020-07-05 16:18:17'),(307,'Assets acquired is recorded by debiting','Asset Account, crediting Cash Account','Cash Account, crediting Asset Account','Purchase of Business Account, crediting Sale of Business Account','Asset Account, crediting Purchase of business Account','','','a','','wassce','2015',70,'Admin','2016-12-14 06:09:05','2020-06-26 13:00:08'),(308,'Goods returned to a supplier is','debited to Returns outwards account','credited to Returns outwards account','debited to Returns inwards account','credited to Returns inwards account','','','b','','wassce','2015',63,'Admin','2016-12-14 06:09:05','2020-06-28 07:15:53'),(309,'Which of the following is a real account?','Plant account','Salaries account','Creditors account','Trading account','','','a','','wassce','2015',73,'Admin','2016-12-14 06:09:05','2020-06-26 21:58:16'),(310,'The accounting ledger for goods sold on credit are debit','Debtors Account, credit Sales Account','Creditors Account, credit Sales Account','Sales Account, credit Debtors Account','Sales Account, credit Creditors Account','','','a','','wassce','2015',67,'Admin','2016-12-14 06:09:05','2020-06-27 19:42:58'),(311,'Which of the following is not a book of original entry?','Sales journal','Purchases account','Cash account','Return inwards journal','','','c','','wassce','2015',77,'Admin','2016-12-14 06:09:05','2020-06-25 23:22:50'),(312,'What is the ledger entry for the sale of plant and machinery on credit to Wilson?','Credit Sales Account and debit Cash Account','Credit Plant and Machinery Account and debit Wilson’s Account','Credit Sales Account and debit Wilson’s Account','Credit Plant and Machinery Account and debit Cash Account','','','b','','wassce','2015',66,'Admin','2016-12-14 06:09:05','2020-07-04 00:40:47'),(313,'Discount Received Account is a','real account','personal account','nominal account','profit and loss account','','','c','','wassce','2015',64,'Admin','2016-12-14 06:09:05','2020-06-28 09:41:55'),(314,'Which of the following accounts has a credit balance?','Capital','Cash','Drawings','Premises','','','a','','wassce','2015',54,'Admin','2016-12-14 06:09:05','2020-06-27 16:35:28'),(315,'The accounting entry to correct sales day book overcast is','debit Sales Account and credit Debtors Account','debit Suspense Account and credit Sales Account','debit Debtors Account and credit Suspense Account','debit Sales Account and credit Suspense Account','','','d','','wassce','2015',79,'Admin','2016-12-14 06:09:05','2020-06-26 17:03:02'),(316,'Which of the following expresses the accounting equating?','Capital + Assets = Liabilities','Assets - Liabilities = Capital','Liabilities + Current Assets = Fixed Assets','Liabilities - Capital = Current Assets','','','b','','wassce','2015',69,'Admin','2016-12-14 06:09:05','2020-06-28 18:07:03'),(317,'When the invoice of a customer is overcast, the supplier will send to him a','cheque','payment voucher','debit note','credit note','','','d','','wassce','2015',63,'Admin','2016-12-14 06:09:05','2020-06-27 16:52:23'),(318,'Unpresented cheques are cheque','that have been recorded in the cash book, but not by the bank','that have been received by the bank, but recorded in the cash book','returned by the bank','written, but not handed over to customers','','','a','','wassce','2015',70,'Admin','2016-12-14 06:09:05','2020-06-25 23:58:34'),(319,'The cost of putting goods into a saleable condition is charged to','balance sheet','trial balance','profit and loss account','trading account','','','d','','wassce','2015',76,'Admin','2016-12-14 06:09:05','2020-06-25 23:58:34'),(320,'Which of the following is not a method of depreciating fixed assets?','Revaluation','Straight line','Diminishing balance','Obsolescence','','','d','','wassce','2015',52,'Admin','2016-12-14 06:09:05','2020-06-25 23:53:42'),(321,'In preparing a profit and loss account, a decrease in provision for doubtful debts accounts is treated as','Currentability','expenses','Income','Current asset','','','c','','wassce','2015',74,'Admin','2016-12-14 06:09:06','2020-07-06 21:49:41'),(322,'Which of the following items is found in the sales ledger control account?','Discount received','Total credit purchases','Discount allowed','Returns outwards','','','a','','wassce','2015',64,'Admin','2016-12-14 06:09:06','2020-06-25 23:53:42'),(323,'The process of using sales ledger balance to cancel off purchases ledger balance is','balancing','set off','reconciliation','cancelling','','','b','','wassce','2015',81,'Admin','2016-12-14 06:09:06','2020-06-05 15:31:36'),(324,'The total of the returns outwards journal is posted to the','credit side of the returns outwards book','debit side of the returns outwards account','debit side of the purchases returns book','credit side of the returns outwards account','','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-06-28 18:07:02'),(325,'Which of the following is not revealed by a firm’s accounting records?','Profit of a period','Quality of labour force','Credit worthiness','Value of assets','','','b','','wassce','2015',75,'Admin','2016-12-14 06:09:06','2020-06-26 21:58:16'),(326,'In the balance sheet of a social club, subscription owing is treated as a','current liability','current asset','tangible asset','long-term liability','','','b','','wassce','2015',71,'Admin','2016-12-14 06:09:06','2020-06-25 23:22:50'),(327,'The accounting concept that allows the cost of kitchen cutlery to be expensed, though it will be used for more than one year is','materiality','accrual','going concern','business entity','','','a','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-05 15:31:32'),(328,'The accounting concept that assumes that a business will continue operating for an indefinite period is','business entity','going concern','consistency','duality','','','b','','wassce','2015',64,'Admin','2016-12-14 06:09:06','2020-06-25 23:58:34'),(329,'The accounting concept that states that a firm’s financial affairs must be separated from that of the owner’s private transactions is','business entity','going concern','consistency','duality','','','a','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-07-06 21:49:41'),(330,'Goodwill is recognized in partnership accounts when','the business makes a huge profit','the business has good customer relationship','a partner is dormant','a new partner is admitted','','','d','','wassce','2015',66,'Admin','2016-12-14 06:09:06','2020-06-25 23:53:42'),(331,'In which of the following accounts is interest on partners capital found?','Profit and loss','Trading','Income surplus','Profit and loss appropriation.','','','d','','wassce','2015',76,'Admin','2016-12-14 06:09:06','2020-06-28 18:07:02'),(332,'Which of the following is not stated in the partnership agreement?','Profit sharing ratio','Interest on capital','Interest on fixed asset','Purpose of partnership','','','c','','wassce','2015',67,'Admin','2016-12-14 06:09:06','2020-06-28 07:15:53'),(333,'How much was paid for goodwill?','GHc/ 350,000','GHc/ 260,000','GHc/  90,000','GHc/ 60,000','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','d','','wassce','2015',66,'Admin','2016-12-14 06:09:06','2020-06-01 22:41:24'),(334,'The double entry to record the goodwill in the books is debit','Cash Account and credit Goodwill Account','Goodwill Account and credit Purchase of Business Account','Goodwill Account and credit Cash Account','Purchase of Business Account and credit Cash Account','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','b','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-24 20:29:33'),(335,'The document which sets out the internal arrangement for the proper management of a company is the','prospectus','article of association','memorandum of association','certificate of incorporation','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','c','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-06-05 15:31:36'),(336,'A person who has applied to purchase shares in a company is referred to as','a promoter','a subscriber','an allottee','an underwriter','','','b','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-06-25 23:53:42'),(337,'Which of the following expenses is allocated according to the floor \tarea?','Wages and Salaries','Rent and rates','Canteen expenses','Discount allowed','','','b','','wassce','2015',70,'Admin','2016-12-14 06:09:06','2020-06-27 16:52:23'),(338,'Goods stolen at the branch is debited to','Defalcations Account','Branch Stock Account','Branch Adjustment Account','Branch Debtors Account','','','c','','wassce','2015',67,'Admin','2016-12-14 06:09:06','2020-06-26 13:00:08'),(339,'Which of the following is a source of revenue for a local government?','Personal income tax','Company registration fees','Royalties','Market tolls','','','d','','wassce','2015',56,'Admin','2016-12-14 06:09:06','2020-06-02 16:55:45'),(340,'The instrument used to release fund which the minister of finance had earlier withheld is','reserve expenditure warrant','supplementary general warrant','provisional general warrant','supplementary statutory warrant','','','b','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-28 09:41:55'),(341,'Which of the following relates to cash basis of accounting?','Accruals and prepayments are considered','Debtors and creditors are recorded','Fixed assets are written off in the year of purchase','Profits are maximized','','','d','','wassce','2015',66,'Admin','2016-12-14 06:09:06','2020-06-25 23:22:50'),(342,'Which of the following is found on the credit side of a partnership’s appropriation of profit account?','Interest on capital','Interest on drawings','share of profit','Drawings','','','b','','wassce','2015',58,'Admin','2016-12-14 06:09:06','2020-06-27 16:52:23'),(343,'Which of the following is a spreadsheet application?','Excel','Word','Internet','Windows','','','a','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-06-26 21:58:16'),(344,'The quality of output information depends on the','quality of input data','time of processing','speed of processing','quantity of output device','','','a','','wassce','2015',70,'Admin','2016-12-14 06:09:07','2020-06-28 07:15:53'),(345,'The source document used to make entries in the purchases day book is','debit note','credit note','invoice','receipt','','','a','','wassce','2014',70,'Admin','2016-12-14 06:44:38','2020-05-03 17:44:35'),(346,'book that contains individual accounts of suppliers is the','purchases ledger','general ledger','nominal ledger','sales ledger','','','a','','wassce','2014',64,'Admin','2016-12-14 06:44:39','2020-06-26 08:11:06'),(347,'In the operation of an imprest system of petty cash, the','petty cashier pays all expenses','petty cashier pays money to the accountant','petty cashier regularly begins each period with the same amount of money','main cashier accounts to the petty cashier for some expenses made by him','','','c','','wassce','2014',64,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(348,'An example of a credit entry in a profit and loss account is','carriage inwards','carriage outwards','discounts allowed','discounts received','','','d','','wassce','2014',57,'Admin','2016-12-14 06:44:39','2020-06-25 23:53:42'),(349,'Which of the following subsidiary books involves cash movement?','Sales day book','Purchases day book','Returns inwards book','Petty cash book','','','d','','wassce','2014',70,'Admin','2016-12-14 06:44:39','2020-06-26 21:58:16'),(350,'The accounting treatment for a dishonoured cheque is; debit','Customer’s Account; Credit Bank Account','Bank Account; Credit Customer’s Account','Customer’s Account; Credit Sales Account','Sales Account; Credit Customer’s Account\\\\','','','a','','wassce','2014',72,'Admin','2016-12-14 06:44:39','2020-06-28 18:07:02'),(351,'Net turnover is referred to as','purchases','assets','sales','profits','','','c','','wassce','2014',73,'Admin','2016-12-14 06:44:39','2020-06-26 17:03:02'),(352,'Which of the following transactions will result in disagreement between the cash book and the bank statement?','Selling of goods on credit to a customer','Withdrawal of goods by the proprietor for his personal use','Cheque paid directly into the bank account by a customer','Omission of purchases received from a supplier on credit','','','c','','wassce','2014',64,'Admin','2016-12-14 06:44:39','2020-07-06 21:49:41'),(353,'Purchases Account is overcast by N200, while Wages Account is under cast by N200. This is','an error of omission','a compensating error','an error of commission','an error of principle','','','b','','wassce','2014',70,'Admin','2016-12-14 06:44:39','2020-07-04 00:40:47'),(354,'Which of the following is used to record the disposal of a fixed asset?','Journal  Proper','Petty  Cash  Book','Sales Day Book','Purchases Day Book','','','a','','wassce','2014',66,'Admin','2016-12-14 06:44:39','2020-06-28 07:15:53'),(355,'The annual depreciation is','N9,000','N8,500','N8,000','N6,500','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',79,'Admin','2016-12-14 06:44:39','2020-06-28 18:07:03'),(356,'The accumulated depreciation as at 31/12/2013 is','N18,500','N17,000','N16,000','N8,000','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',71,'Admin','2016-12-14 06:44:39','2020-06-27 16:35:28'),(357,'An error of principle is made, if','an entry has been made in the wrong class of account','a transaction has been completely omitted','an entry has been made on the wrong side of the two accounts concerned','a transaction is entered in both accounts for the wrong amount','','','a','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-06-25 23:58:34'),(358,'Which of the following is entered in the general journal?','Purchase of goods','Sale of goods on credit','Returns inwards','Acquisition of fixed assets','','','d','','wassce','2014',75,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(359,'The cost of carriage outward is classified as','a selling and distribution expense','an administrative expense','a trading expense','a finance expense','','','a','','wassce','2014',68,'Admin','2016-12-14 06:44:39','2020-07-04 00:40:47'),(360,'The purchase of ten ceiling fans by Akpan Electronic Enterprises will be recorded as','an acquisition of fixed asset','an expense in its general office expense account','part of capital in the capital account','an acquisition of stock','','','d','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-06-27 19:42:58'),(361,'Which of the following accounts would appear in the nominal ledger?  (I)  Sanison’s account (a debtor)  ( II) Motor vehicle account (III) Sales account  (IV)  Rent and rates account','I, II and III only','I, III and IV only','II, III and IV only','Ill and IV only','','','b','','wassce','2014',72,'Admin','2016-12-14 06:44:39','2020-06-27 16:35:28'),(362,'The sum of direct cost in a manufacturing account is','production cost','prime cost','total cost','finance cost','','','b','','wassce','2014',61,'Admin','2016-12-14 06:44:39','2020-06-25 23:22:50'),(363,'Net profit in a business is','the amount of money taken out of the business by the owner','the cash in the business bank account','the difference between sales and cost of sales','sale revenue less cost of sales and expenses','','','d','','wassce','2014',67,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(364,'An example of a self-balancing account is the','suspense account','creditor’s account','control account','debtor’s accoun','','','c','','wassce','2014',68,'Admin','2016-12-14 06:44:39','2020-07-05 07:34:59'),(365,'The gross profit is','GHc/  2,160,000','GHc/ 1440,000','GHc/ 1,080,000','GHc/ 720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',71,'Admin','2016-12-14 06:44:39','2020-06-26 09:11:37'),(366,'The cost of sales is','GHc/  2,160,000t','GHc/ 1440,000','GHc/ 1,080,000','GHc/  720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',80,'Admin','2016-12-14 06:44:39','2020-06-27 19:42:58'),(367,'Which of the following is not an administrative expenses in a \tmanufacturing organization?','Discounts allowed','Office electricity','Stationery','Insurance','','','a','','wassce','2014',64,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(368,'When an asset is sold, the entries for the accumulated depreciation are: debit','Asset Disposal Account; credit Provision for Depreciation Account.','Provision for Depreciation Account; Credit Asset Disposal Account','Fixed Asset Account; Credit Asset Disposal Account','Asset Disposal Account; Credit Fixed Asset Account','','','b','','wassce','2014',63,'Admin','2016-12-14 06:44:39','2020-05-06 04:56:52'),(369,'A petty cash account has an imprest of D28,000. The account has a debit balance of D5.000. How much cash is needed to restore the imprest?','D33,000','D28,000','D23,000','D5,000','','','c','','wassce','2014',65,'Admin','2016-12-14 06:44:39','2020-06-28 07:15:53'),(370,'In a not - for - profit making organization, when the total income \tis less than the total expenditure, the difference is a','surplus','shortfall','loss','deficit','','','d','','wassce','2014',73,'Admin','2016-12-14 06:44:39','2020-06-28 07:15:53'),(371,'The accounting concept underlying the treatment of personal expenses of the business owner as drawing is','periodicity','accrual','entity','materiality','','','c','','wassce','2014',71,'Admin','2016-12-14 06:44:39','2020-06-28 09:41:55'),(372,'Which of the following items is not contained in the Receipts and Payments Account?','Subscription paid in advance','tock paid for in advance','Outstanding wages and salaries','Donations','','','c','','wassce','2014',64,'Admin','2016-12-14 06:44:40','2020-06-26 21:58:16'),(373,'The concept that states that a business should not lay claim to any profits before it is earned with reasonable certainty is','consistency concept','prudence concept','accrual concept','going concern concept','','','b','','wassce','2014',68,'Admin','2016-12-14 06:44:40','2020-07-04 00:40:47'),(374,'When shares are issued above their nominal value, the \texcess above the nominal value is','credited to Profit and Loss Account','debited to Share Premium Account','credited to Share Capital Account','credited to share Premium Account','','','d','','wassce','2014',76,'Admin','2016-12-14 06:44:40','2020-06-27 16:52:23'),(375,'Shares issued below nominal value are referred to as shares at','premium','discount','face value','cumulative value','','','b','','wassce','2014',77,'Admin','2016-12-14 06:44:40','2020-06-28 18:07:02'),(376,'The accounting ratio used to measure the average number of days for which suppliers remain unpaid is','stock turnover','creditors’ payment period','debtors collection period','return on capital employed','','','b','','wassce','2014',71,'Admin','2016-12-14 06:44:40','2020-06-26 21:58:16'),(377,'When the purchase consideration exceeds the value of business, the difference is','profit','discount','goodwill','reserve','','','c','','wassce','2014',78,'Admin','2016-12-14 06:44:40','2020-06-28 09:41:55'),(378,'The primary classification of government expenditure is based on','Programs','funds','activity','project','','','b','','wassce','2014',73,'Admin','2016-12-14 06:44:40','2020-06-28 07:15:53'),(379,'An example of input device of a computer is','an optical character reader','a graph plotter','a visual display unit','printer','','','a','','wassce','2014',66,'Admin','2016-12-14 06:44:40','2020-06-27 16:35:28'),(380,'The accounting concept which states that expenditure involving insignificant amounts should be regarded as expenses and not assets is','business entity','materiality','dual aspect','realization','','','b','','wassce','2014',89,'Admin','2016-12-14 06:44:40','2020-07-05 16:18:17'),(381,'A company made a net profit of N2,000,000 for the year and its net profit percentage is 25%. What is the total sales   for the year?','N8,000,000','N6,000,000','N800,000','N500,000','','','a','','wassce','2014',76,'Admin','2016-12-14 06:44:40','2020-06-25 23:58:34'),(382,'Which of the following information is recorded in the returns outwards book?','Goods purchased on credit and subsequently returned to supplier','Fixed asset bought on credit and subsequently returned to supplier','Cash payment received from a customer and subsequently returned to supplier','Goods sold to a customer and subsequently returned to the business.','','','a','','wassce','2014',81,'Admin','2016-12-14 06:44:40','2020-06-28 09:41:55'),(383,'Calculate the stock figure to be included in the balance sheet at the year end.','D408,000','D346,000','D284,000','D62,000',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',67,'Admin','2016-12-14 06:44:40','2020-06-27 16:52:23'),(384,'The concept applied in answering question 42 above is','matching','consistency','prudence','entity',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',54,'Admin','2016-12-14 06:44:40','2020-06-28 09:41:55'),(385,'Subscriptions in advance is classified in the balance sheet as','an asset','a liability','a deficit','a surplus','','','b','','wassce','2014',68,'Admin','2016-12-14 06:44:40','2020-06-26 17:03:02'),(386,'Which of the following items is not treated in the Profit and Loss Account?','Office expenses','Salaries and allowances','Carriage inwards','Discounts allowed','','','c','','wassce','2014',75,'Admin','2016-12-14 06:44:40','2020-07-06 21:49:41'),(387,'The document prepared by a local/district government to present its annual estimates for a planning period is','a balance sheet','budget','an income and expenditure account','a cash book','','','b','','wassce','2014',70,'Admin','2016-12-14 06:44:40','2020-07-05 16:18:17'),(388,'A manufacturing account is drawn up by','firms providing personal services','firms engaged solely in buying and selling of goods','firms which make and sell articles','non - trading organization.','','','c','','wassce','2014',69,'Admin','2016-12-14 06:44:40','2020-06-25 23:53:42'),(389,'Which of the following is not a factory overhead cost?','Manufacturing wages','Factory rent','Depreciation of machinery','Salary of factory guard','','','a','','wassce','2014',80,'Admin','2016-12-14 06:44:40','2020-06-05 15:31:35'),(390,'A collection of fields relating to one logically definable unit of business information is known as','data','character','byte','record','','','d','','wassce','2014',84,'Admin','2016-12-14 06:44:40','2020-06-26 09:11:37'),(391,'The principle of double entry book - keeping states that','every debtor must have a creditor','every account debited must be immediately credited','for every debit entry, there must be a corresponding credit entry','for every double debit, there must be a double credit.','','','c','','wassce','2014',74,'Admin','2016-12-14 06:44:40','2020-06-25 23:58:34'),(392,'The accounting principle that is applied to check arbitrary actions on the part of accountants is','consistency','materiality','objectivity','realization','','','a','','utme','2004',103,'Admin','2016-12-15 06:52:04','2020-06-27 16:52:23'),(393,'The loss of equipment in a fire disaster results in','a decrease in current assets','an increase in liabilities and assets','a decrease in assets and capital','an increase in liabilities and a decrease in  assets.','','','c','','utme','2004',89,'Admin','2016-12-15 06:52:06','2020-07-04 00:40:47'),(394,'A source document is used for verifying the','amount due to creditors','actual cost of an asset','selling price of goods','amount due from debtors','','','c','','utme','2004',106,'Admin','2016-12-15 06:52:07','2020-05-04 18:12:30'),(395,'The rule of accounting equation requires that account payable should be placed under','liabilities','equities','assets','capital','','','a','','utme','2004',93,'Admin','2016-12-15 06:52:07','2020-06-01 22:14:55'),(396,'A debit in the suspense account will appear in the balance sheet as','a current asset','a current liability','capital','drawings','','','a','','utme','2004',95,'Admin','2016-12-15 06:52:07','2020-05-04 10:18:01'),(397,'The recipient whose name appears on a cheque is called a','payee','drawer','drawee','payee','','','d','','utme','2004',93,'Admin','2016-12-15 06:52:07','2020-06-27 16:35:28'),(398,'The imprest account is subsidiary to the','ledger account','bank account','cash book','petty cash','','','d','','utme','2004',97,'Admin','2016-12-15 06:52:07','2020-05-04 18:30:25'),(399,'The three-column cash book differs from the two-column cash book in','cash column','discount column','bank column','folio column','','','b','','utme','2004',101,'Admin','2016-12-15 06:52:07','2020-07-06 21:49:41'),(400,'Zakari started a business on January 2000. He bought a shop costing N 54,000 and stock worth N 7,600.  Profit for the year amounted to N 22,100. His closing capital was N 73,800. Zakari’s personal drawings amounted to','N 2,300','N9,900','N 17,100','N 19,500','','','b','','utme','2004',112,'Admin','2016-12-15 06:52:07','2020-07-06 21:49:41'),(401,'The balance on the provision for depreciation account is','added to fixed assets on the balance sheet','deducted from fixed assets on the balance sheet','deducted from the profit and loss account','added to the current liabilities of the account','','','b','','utme','2004',104,'Admin','2016-12-15 06:52:07','2020-07-04 00:40:47'),(402,'Given: Rates paid during the year amounted to N 2,250 at N125 per month and N 1,035 was paid for electricity in the same period at N 115 per month. Determine the amount of prepaid rates','N 345','N 750','N 1,380','N 1,500','','','b','','utme','2004',108,'Admin','2016-12-15 06:52:07','2020-07-04 00:40:47'),(403,'Where closing stock is undervalued, the effect is','an increase in gross profit','a decrease in gross profit','an increase in purchases','a decrease in purchases','','','b','','utme','2004',102,'Admin','2016-12-15 06:52:07','2020-06-26 08:11:06'),(404,'At the year end, the purchases ledger showed a debit balance of N 108. The total on the debit side of the purchases ledger control account will be','N 22,966','N 22,156','N 21,834','N 21,054','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','a','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-04-30 18:00:30'),(405,'The balancing figure in the purchases ledger control account is','N 15,828','N 15,720','N 14,940','N 14,694','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','d','','utme','2004',106,'Admin','2016-12-15 06:52:07','2020-07-04 00:40:47'),(406,'In a sales ledger, contra entry is found on the','debit side of the debtors’ control account','debit side of the creditors’ control account','credit side of the debtors’ control account','credit side of the creditors’ control account','','','c','','utme','2004',88,'Admin','2016-12-15 06:52:07','2020-05-05 20:10:53'),(407,'The beginning and ending accounts receivable balances were N 20,000 and N 30,000 respectively.The collection from customers during the period was N 70.000. What was the total sale on account?','N 20,000','N 60,000','N 80,000','N 120,000','','','b','','utme','2004',100,'Admin','2016-12-15 06:52:07','2020-06-27 16:52:23'),(408,'Determine how much to be charged to profit and loss account.','N 606','N 786','N 791','N 856','Given: General expenses account Paid by cheque [ N671 ]; Paid by cash [N 70 ]; Accrued b/f [N 65 ] Accrued c/f [N 115 ]','','c','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-06-28 07:15:53'),(409,'In converting single entry to final account, the balancing figures on the income and expenses accounts are transferred to the','revenue and expenditure account','receipts and payments account','profit and loss appropriation account','profit and loss account','','','d','','utme','2004',107,'Admin','2016-12-15 06:52:07','2020-07-04 00:40:47'),(410,'Determine the amount for the beginning inventory','N 20,140','N10,240','N 8,140','N 7,240','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',97,'Admin','2016-12-15 06:52:07','2020-06-25 23:22:50'),(411,'What is the figure for purchases?','N 2,400','N 2,500','N 4,200','N 5,200','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',105,'Admin','2016-12-15 06:52:07','2020-05-04 18:03:42'),(412,'Cost classification in relation to charges is determined by the level of','raw materials','labour','activity','profitability','','','c','','utme','2004',105,'Admin','2016-12-15 06:52:07','2020-05-04 18:54:20'),(413,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N 5,000','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','c','','utme','2004',105,'Admin','2016-12-15 06:52:07','2020-06-26 13:00:08'),(414,'The market value of goods produced is','N 30,500','N 30,600','N 31,600','N 31,620','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','b','','utme','2004',109,'Admin','2016-12-15 06:52:07','2020-06-24 20:29:33'),(415,'The accumulated fund is','N 9,400','N 9,300','N 9,200','N 9,100','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',101,'Admin','2016-12-15 06:52:07','2020-06-26 17:03:02'),(416,'In the balance sheet, the subscription in arrears will be','N 200','N 300','N 1,200','N 1,300','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',101,'Admin','2016-12-15 06:52:07','2020-07-06 21:49:41'),(417,'Where the debit side of the income and expenditure account is higher than the credit side, the difference is','deficit','surplus','gain','loss','','','a','','utme','2004',93,'Admin','2016-12-15 06:52:07','2020-06-25 23:22:50'),(418,'In the balance sheet of a not-for-profit-making organization, subscription paid in advance is regarded as a','current asset','current liability','capital','reserve','','','b','','utme','2004',108,'Admin','2016-12-15 06:52:07','2020-07-06 21:49:41'),(419,'A rapidly growing business organization with multiple units that is interested in comparing the performances and weaknesses of each unit should adopt.','manufacturing accounts','consolidated accounts','departmental accounts','joint venture accounts','','','c','','utme','2004',114,'Admin','2016-12-15 06:52:07','2020-06-28 09:41:55'),(420,'How are credit sales by a department treated?','the same way as normal debtors’ transactions','in a different way from normal debtors’ transactions','as an addition to the sales manager’s account','as an addition to the production manager’s account','','','a','','utme','2004',89,'Admin','2016-12-15 06:52:07','2020-06-28 09:41:55'),(421,'Discounts granted to branch customers are treated as a debit to branch','stock account and a credit to branch debtors’ account','discount account and a credit to branch bank account','stock account and a credit to branch bank account','discount account and a credit to branch debtors’ account','','','a','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-06-25 23:53:42'),(422,'Transfers from the head office to branches are best carried out at','cost price','selling price','cost plus mark-up','market price','','','c','','utme','2004',110,'Admin','2016-12-15 06:52:07','2020-06-27 16:35:28'),(423,'On dissolution, the final distribution of cash to partners is based on','partnership agreement','Articles of Association','goodwill','capital balances.','','','d','','utme','2004',99,'Admin','2016-12-15 06:52:08','2020-06-26 13:00:08'),(424,'The balance of profit and loss account will be','N 4,000','N 2,800','N 1,500','N 300','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','a','','utme','2004',100,'Admin','2016-12-15 06:52:08','2020-06-28 07:15:53'),(425,'What is Kunle’s share of the profit?','N 600','N 300','N180','N 120','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','d','','utme','2004',93,'Admin','2016-12-15 06:52:08','2020-05-04 18:12:29'),(426,'When a new partner is admitted to a partnership, there is a need to revalue the','capital of the business','capital and liabilities of the business','assets and capital of the business','assets and liabilities of the business','','','d','','utme','2004',115,'Admin','2016-12-15 06:52:08','2020-07-06 21:49:41'),(427,'The accounting entry to record the premium on goodwill is to debit','cash and credit old partners’ capital','goodwill and credit revaluation','assets and credit capital','capital and credit assets','','','b','','utme','2004',117,'Admin','2016-12-15 06:52:08','2020-06-05 15:31:32'),(428,'The expenses incurred in promoting a company are','promoters’ expenses','floating expenses','preliminary expenses','the Board’s expenses','','','c','','utme','2004',116,'Admin','2016-12-15 06:52:08','2020-06-26 09:11:37'),(429,'Debentures can be redeemed out of','existing share capital reserve','existing general reserve','proceeds from new issue of shares','withholding tax.','','','a','','utme','2004',100,'Admin','2016-12-15 06:52:08','2020-06-25 23:53:42'),(430,'Share premium is an example of','revenue reserves','capital reserves','general reserves','loan capital','','','b','','utme','2004',111,'Admin','2016-12-15 06:52:08','2020-06-24 20:34:44'),(431,'According to the provisions of the 1999 Constitution, all revenues generated by the Federal Government must be paid into the?','Consolidated Revenue Fund','Federation Account','Revenue Mobilization Allocation and Fiscal Commission’s Account','Equalization Fund','','','a','','utme','2004',117,'Admin','2016-12-15 06:52:08','2020-06-26 21:58:16'),(432,'The budget statement presented to the legislature by the Chief Executive is called','an appropriation act','a budget bill','an appropriation bill','a budget proposal','','','c','','utme','2004',96,'Admin','2016-12-15 06:52:08','2020-05-03 17:20:22'),(433,'The statement of assets and liabilities in the public sector can be described as the','income and expenditure account of government','appropriation account of government','balance sheet of government','funds flow statement of government','','','d','','utme','2004',94,'Admin','2016-12-15 06:52:08','2020-07-06 21:49:41'),(434,'A company has departments X, Y and Z. Department X occupies a space twice that of Y while Z   occupies half the space of  Y. If the company pays N 70 000 on rent, what is the amount of rent that should be allocated to Y?','N 30,000','N 40,000','N 20,000','N 10, 000.','','','c','','utme','2007',97,'Admin','2016-12-16 07:02:01','2020-06-28 09:41:55'),(435,'Calculate the total figure for the receipts and payments account.','N 11,410','N  13,630','N  9, 310','N  11, 530.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','d','','utme','2007',102,'Admin','2016-12-16 07:02:01','2020-07-06 21:49:41'),(436,'Determine the opening cash balance of the club','N 3070','N 2220','N 5710','N 4320.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','b','','utme','2007',92,'Admin','2016-12-16 07:02:01','2020-06-26 13:00:08'),(437,'Purchases of raw materials amount to N  81 000, direct labour is N  38 000 and factory overhead N  29 000. Calculate the prime cost.','N 176,000','N 170,000','N 167,000','N  156,000.','Stock at start: Raw materials [N57, 000]; Work-in-progress [42, 000]; Finished goods [71, 000 ]','','a','','utme','2007',110,'Admin','2016-12-16 07:02:01','2020-06-27 16:35:28'),(438,'I.Profits and losses will be shared unequally II.  Interest is not allowed on capital, III. Salaries are not allowed. IV. Interest is charged on drawings. Which of  the following would apply where there is no agreement during partnership formation?','I only','I, II and III','I, II and IV','II and III.','','','c','','utme','2007',106,'Admin','2016-12-16 07:02:01','2020-06-27 19:42:58'),(439,'The value of goods sent to branch is','N 4 000','N 6000','N 8000','N 2000','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','c','','utme','2007',108,'Admin','2016-12-16 07:02:02','2020-06-26 09:11:37'),(440,'Determine the closing stock.','N 5 500','N  6500','N 2500','N 4500','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','a','','utme','2007',100,'Admin','2016-12-16 07:02:02','2020-04-30 17:58:11'),(441,'Expenses paid during the conversion of a partnership to a \tcompany are','debited to the partners’ capital account','debited to the realization account','debited to the cash account.','credited to the realization account','','','d','','utme','2007',104,'Admin','2016-12-16 07:02:02','2020-06-26 21:58:16'),(442,'In the trading and profit and loss account of a manufacturing organization, purchases is','always the same amount as the total factory overhead cost','given separately','equivalent to the total cost of goods manufactured','always the same as the prime cost.','','','b','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-06-27 16:35:28'),(443,'Goods worth N 50 000 were sent at different times from head office to the branch during the year. By the end of the period, only N  40 000 worth of goods had arrived at the branch. Which of the following is correct about the treatment of this transaction?','Branch should debit goods received from head office with N 50 000.','Head office should debit goods sent to branch account with N 10 000.','Head office should debit goods sent to branch account with N 50 000.','Branch should debit goods received from head office with N  10000.','','','b','','utme','2007',97,'Admin','2016-12-16 07:02:02','2020-06-28 09:41:55'),(444,'An accounting ratio that considers only quick assets to determine the short-term safety margin of a firm is the','fixed assets ratio','capital gearing ratio','current assets ratio','acid test ratio.','','','d','','utme','2007',97,'Admin','2016-12-16 07:02:02','2020-05-04 18:14:59'),(445,'What would be the total amount received on second call?','N 240, 000','N 280 ,000','N 40,000','N 56,000.','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','c','','utme','2007',106,'Admin','2016-12-16 07:02:02','2020-06-05 15:31:36'),(446,'The total amount of money received on application was','N  5600,00','N  220,000','N  800, 000','N  1 000 000','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','a','','utme','2007',107,'Admin','2016-12-16 07:02:02','2020-06-27 19:42:58'),(447,'Determine the working capital.','N 7,38,0000','N 8,48,0000','N  5 480 000','N  6 480 000.','Shaku Company Ltd: Stock [N 3,600, 000]; Cash at hand [N800, 000]; Cash in bank [2,400, 000]; Debtors [ 580, 000]; Trade creditors [N 920, 000 ]; \tBank overdraft [ N200, 000 ]; Tax liabilities [N600, 000]; Salary owed to staff {N 180, 000]','','c','','utme','2007',99,'Admin','2016-12-16 07:02:02','2020-06-24 20:34:44'),(448,'The receipts and payments account of a not-for-profit-making organization plays a similar role in a profit-making organization as','a cash account','a balance sheet','an income account','an expenses account','','','b','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-06-09 12:07:13'),(449,'Osei and Yabo were in partnership sharing profits and losses in the ratio of 3:2. On admitting Takwa, the profit and loss sharing ratio was changed to 1:1:1  Suppose Takwa paid N  30 000 for goodwill this amount would be','credited to Takwa’s current account','debited to goodwill account','shared to all the partners’ capital account','credited to the old partners’ capital account.','','','b','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-06-28 07:15:53'),(450,'The amount of subscriptions accrued is reported in the balance sheet under','fixed asset','long-term liability','current asset','current liability.','','','d','','utme','2007',104,'Admin','2016-12-16 07:02:02','2020-06-26 09:11:37'),(451,'The lighting charge to be apportioned to Zema is','N 891','N 819','N 927','N 975','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','b','','utme','2007',103,'Admin','2016-12-16 07:02:02','2020-05-04 18:54:21'),(452,'Find the salary charged to Zera product.','N 1 854','N 1 845','N 1 062','N 1 134.','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','c','','utme','2007',116,'Admin','2016-12-16 07:02:02','2020-06-26 17:03:02'),(453,'The gross profit disclosed in the branch stock adjustment account represents','head office profit','unrealized profit','estimated profit','branch profit','','','d','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-07-06 21:49:41'),(454,'Partners’ share of profit is credited to','a partner’s current account','a partner’s capital account','the profit and loss account','the profit and loss appropriation account','','','a','','utme','2007',104,'Admin','2016-12-16 07:02:02','2020-06-24 20:29:33'),(455,'A pension granted to any past president or vice-president shall be charged to the','consolidated revenue fund','special pension fund','contingency fund','development fund.','','','b','','utme','2007',106,'Admin','2016-12-16 07:02:02','2020-06-28 07:15:53'),(456,'The federal government approved  N 140 m to local governments W, X, Y and Z. The amount is to be shared on the basis of 40% equality. 35% population and 25% internal revenue generation. Calculate the share of local government W on equality.','N 35 m','N 14 m .','N 56 m','N 28 m.','','','c','','utme','2007',107,'Admin','2016-12-16 07:02:02','2020-07-06 21:49:41'),(457,'Stock valuation is useful because it informs the sales department on the','prices of the competing goods','prices that will affect profitability','number of goods to produce','number of goods to sell.','','','b','','utme','2007',97,'Admin','2016-12-16 07:02:02','2020-05-04 18:54:20'),(458,'Using the straight-line method, the depreciation of the asset in \tthe first year was','N  210 m','N 343m','N 105m','N 270m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','c','','utme','2007',91,'Admin','2016-12-16 07:02:02','2020-05-04 18:14:59'),(459,'What was the asset value at the beginning of the third year?','N 63 m','N 133 m','N 36m','N 28 m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','d','','utme','2007',118,'Admin','2016-12-16 07:02:02','2020-07-05 16:18:17'),(460,'The drawings for the period stand at','N  2 750','N  3 750','N  2 500','N 2 570.','Given: Opening capital [N7, 000 ]; Additional capital [N3, 500 ]; Net profit [N2 500 ]; Closing capital [N10, 250]','','a','','utme','2007',104,'Admin','2016-12-16 07:02:02','2020-06-24 20:34:44'),(461,'I.    Facilitating the preparation of final accounts II.   Making the existence of error easy to detect III. Checking the accuracy of postings periodically. From the above, which of the following are among the uses of control accounts?','I, II and III','I and III','II and III','I and II.','','','c','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-06-26 21:58:16'),(462,'Determine the amount provided for discount allowed on debtors.','N 1 000','N 3000','N 900','N1500.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',112,'Admin','2016-12-16 07:02:02','2020-07-06 21:49:41'),(463,'The provision for bad debt is','N2 000','N 800','N3 000','N1 900.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',116,'Admin','2016-12-16 07:02:02','2020-06-28 09:41:55'),(464,'The amount to be charged to the profit and loss account is','N 30,000','N25,000','N 5 ,000','N20,000.','Given: Prepaid b/f [N10, 000 ]; Cash paid during the year  [N20, 000]; Prepaid c/f [N5, 000] ','','b','','utme','2007',108,'Admin','2016-12-16 07:02:02','2020-06-24 20:34:44'),(465,'The purchases ledger control account showed a credit balance of N 525 000 on April 30, 2006. This amount shows','what the debtors of a business enterprise owed the business','the total amount which each debtor owed the business','what a business enterprise owed its creditors','the total amount which a business enterprise owed each creditor.','','','c','','utme','2007',104,'Admin','2016-12-16 07:02:03','2020-07-06 21:49:41'),(466,'Find the value of the total assets?','N 17 700','N 10,500','N 20,000','N 15,400.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','d','','utme','2007',112,'Admin','2016-12-16 07:02:03','2020-06-28 18:07:03'),(467,'What will be the equity of the business?','N 12,800','N 4,900','N 8,200','N 9,500.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','c','','utme','2007',99,'Admin','2016-12-16 07:02:03','2020-05-03 17:11:17'),(468,'Journal proper is used in recording','transactions that are not regular','returns from customers','credit sales','the receipt and payment of  money','','','a','','utme','2007',118,'Admin','2016-12-16 07:02:03','2020-07-04 00:40:47'),(469,'The process whereby a cheque received by one person is given to another for payment is known as','cheque crossing','payment in cheque','cheque transfer','cheque endorsement.','','','c','','utme','2007',108,'Admin','2016-12-16 07:02:03','2020-06-28 07:15:53'),(470,'Calculate the balance in the bank statement','N 10 740','N11 860','N 17 500','N16,380.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','c','','utme','2007',100,'Admin','2016-12-16 07:02:03','2020-04-30 17:56:59'),(471,'What is the adjusted cash book balance?','N 14,680','N 15,560','N 16,440','N17,000.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','a','','utme','2007',107,'Admin','2016-12-16 07:02:03','2020-06-27 16:52:23'),(472,'The fourth stage of the accounting information system is','recording','interpreting','summarizing','classifying.','','','c','','utme','2007',106,'Admin','2016-12-16 07:02:03','2020-06-25 23:22:50'),(473,'How much is sundry expenses?','N 2 700','N 2,250','N1,550','N2000.','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','a','','utme','2007',98,'Admin','2016-12-16 07:02:03','2020-05-03 17:44:34'),(474,'The total of the trial balance is','N 6 600','N 6 650','N 5 600','N 5 900','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','b','','utme','2007',101,'Admin','2016-12-16 07:02:03','2020-06-28 07:15:53'),(475,'If Mr. Ajasin paid his creditors N 5 000 out of N 20 000 owed, what would be the effect of this transaction on the accounting equation?','A decrease .in the total liabilities and assets by N5 000.','An increase in total liabilities and owners’ equity by N15 000.','An increase in the total assets by N15 000','A decrease in owners’ equity by N 5 000.','','','a','','utme','2007',114,'Admin','2016-12-16 07:02:03','2020-06-02 01:19:50'),(476,'Which of the following branches of accounting was first developed?','Cost accounting','Financial accounting','Management accounting','Petroleum accounting','','','b','','utme','2009',97,'Admin','2016-12-16 21:08:06','2020-06-28 11:06:38'),(477,'The accounting convention which states that the performance of a business should be determined by matching all expenses against all revenues is','accruals','materiality','objectivity','periodicity','','','a','','utme','2009',100,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(478,'The process of bookkeeping includes records produced from','ledgers','source documents','minutes of meeting','intuitive reasoning','','','b','','utme','2009',102,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(479,'Musa, a prepaid customer of XYZ and KLM, bought  N1500 recharge card from XYZ and  N2000 recharge card from KLM for business calls. The entry to record these transaction is debit','telephone  N 3,500, credit XYZ and KLM  N 3,500','telephone N 3,500. credit cash  N 3,500','sundries N 3,500, credit KLM  N 3,500','sundries  N 3.500, credit telephone  N3,500','','','a','','utme','2009',103,'Admin','2016-12-16 21:08:07','2020-07-06 21:49:41'),(480,'What is the total debit for the trial balance?','N  4 690 000','N 2 620 000','N  2 520 000','N 1 565 000','Given: Capital [N 2, 375, 000 ]; Debtors [N 495, 000 ]; Motor vehicles [N 870, 000 ]; Creditors [N 245,000 ]; Prepayments [N 500, 000 ]; Bills receivable [N 505, 000 ]; Furniture [N 150, 000 ]','','c','','utme','2009',96,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(481,'If Odukoya takes money out of the business bank account for his own private use, the effect of the transaction is','increase in assets and increase in capital','increase in assets and decrease in capital','decrease in capital and increase in assets','decrease in capital and decrease in assets.','','','d','','utme','2009',107,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(482,'What are the current liabilities?','I and II','IV and V','Ill and V','II and IV','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','b','','utme','2009',91,'Admin','2016-12-16 21:08:07','2020-06-28 11:06:38'),(483,'Find the fixed assets','I, II and V','I, II and IV','I, II and III','Ill, IV and V','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','c','','utme','2009',113,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(484,'Cash discount is often recorded on','the debit side of the cash book','the credit side of the cash book','the folio column of the cash book','both credit and debit side of the cash book','','','d','','utme','2009',85,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(485,'The standing order is a payment instruction given by a','customer to the bank','bank to the customers','bank to an employee','customer to a fellow customer','','','a','','utme','2009',89,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(486,'Which of the following should not be added or subtracted from the bank statement balance to determine the adjusted cash balance?','Error by the bank','Under casting of the cash book','Overcasting of the cash book','Bank service charges','','','a','','utme','2009',103,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(487,'Calculate the balance as per bank statement at the end of the year','24,700','25,200','26,200','27,700','Given: Balance as per cash book [N20,000 ]; Unpresented cheques [N 5,200 ]; Direct credit to the bank [\t  N 1,000 ]; \tDirect debit from the bank [N 1,000 ]; Credit in the cash book [N 500 ]','','a','','utme','2009',104,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(488,'Determine the capital of the business','N 9,400','N 6,000','N 3,400','N 3,000','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','d','','utme','2009',102,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(489,'What is the net working capital?','N 2,600','N1,800','N 800','N 600','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','c','','utme','2009',107,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(490,'Which of the following items are current assets?','Stock, bills receivable, cash and debtors','Stock, bills payable, cash and debtors','Stock, bad debt, bills receivable and cash','Stock, work-in-progress, cash and bills payable.','','','a','','utme','2009',99,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(491,'Using FIFO method, what is the value of the closing stock?','N 34,000','N 29,000','N 17,000','N 12,000','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','c','','utme','2009',96,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:02'),(492,'What is the value of closing stock using simple average?','N 11,500','N 17,000','N 17,500','N 28,500','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','d','','utme','2009',93,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(493,'Which of the following methods gives a conservative closing stock value during a period of rising prices?','LIFO','FIFO','Simple average','Periodic simple average','','','a','','utme','2009',86,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(494,'Apart from the common control accounts, a control account can also be opened for','sales account','purchases account','cash account','wages account','','','c','','utme','2009',88,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(495,'Which of the following is a debit item in the purchases ledger control account?','Balance b/d','Cheque dishonoured','Purchases','Balance c/d','','','d','','utme','2009',101,'Admin','2016-12-16 21:08:08','2020-07-06 21:49:41'),(496,'Which of the following is an item in the debit side of the sales ledger control account?','Interest charged by suppliers','Bills receivable honoured','Transfer of credit balances from credit control account','Transfer of debit balances from creditors control account','','','a','','utme','2009',95,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(497,'The costs incurred by departments that support the production department with such activities as maintenance, production control and storage are called','autonomous costs','service costs','supporting costs','subsidiary costs','','','b','','utme','2009',93,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:03'),(498,'Determine the gross profit','N 49,000','N 48,000','N 31,000','N30,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',106,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(499,'What is the net profit?','N  46,000','N 45,000','N  28,000','N  27,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',96,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(500,'Receipts and payments account is a summary of the','budget','trading account','cash book','profit and loss account','','','c','','utme','2009',107,'Admin','2016-12-16 21:08:08','2020-07-04 00:40:47'),(501,'What is the accumulated fund?','23,700','27,750','29,650','51,650','Given: Furniture and fittings [N 20,000]  Equipment [N15,000] Bank overdrafts [ N6,500] Bar creditors [ N4,800 ] Subscription in arrears [ N4,700 ] Subscription in advance [ N650]','','b','','utme','2009',102,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(502,'I.  Space occupied by each department    II. Average value of stock held by each department III. \tDepartmental turnover  IV. Number of articles sold by each department. From the information given, the two most logical bases for apportioning expenses that are common to departments are','I and II','I and III','II and III','Ill and IV','','','b','','utme','2009',97,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:03'),(503,'One of the purposes of maintaining the account of a branch at the head office is to','record charges in shareholdings','record charges in liabilities','check the excesses of customers','check the excesses of members of staff.','','','d','','utme','2009',104,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(504,'Which of the following is a common cause of a discrepancy between head office and branch trial balance?','Debtors and cash in transit','Creditors and cash in transit','Stock and cash in transit','Stock and prepayments','','','a','','utme','2009',103,'Admin','2016-12-16 21:08:08','2020-07-04 00:40:47'),(505,'Sule and Ahmad are in partnership sharing profits and losses equally. If  Khadija is admitted as a new partner to take 1/5 th as her share, what is the new profit or loss sharing ratio?','Sule1/3 , Ahmad 1/3 and Khadija 1/3','Sule1/5, Ahmad 1/5 and Khadija 3/5','Sule2/5,  Ahmad2/5 and Khadija 1/5','Sule ,2/5, Ahmad and 1/5 Khadija 2/5','','','c','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(506,'In partnership account, conversion of non-cash assets into cash \t\tis referred to as','realization','disposal','dissolution','revaluation','','','c','','utme','2009',90,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(507,'The share premium account would be','credited with application and allotment  N 187,500','debited with application and allotment  N 375,000','credited with application and allotment  N 375,000','debited with application and allotment  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','c','','utme','2009',103,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(508,'The second and final call account was debited with','ordinary share capital account  N 187,500','12% preference share capital  N  375,000','bank account  N 187,500','12% preference share capital account  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','d','','utme','2009',100,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(509,'Provision for bad and doubtful debts in companies final accounts is treated in','trading account','profit and loss account','fund flow statement','cash flow statement','','','b','','utme','2009',98,'Admin','2016-12-16 21:08:08','2020-06-28 18:07:03'),(510,'The book value per share is obtained by dividing','shareholders equity by outstanding shares','total assets by outstanding shares','gross profit by outstanding shares','net profit by outstanding shares','','','a','','utme','2009',106,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(511,'Expenditure incurred on consumables and goods for resale is','revenue expenditure','capital expenditure','sunk cost','miscellaneous expenses','','','a','','utme','2009',118,'Admin','2016-12-16 21:08:08','2020-07-04 00:40:47'),(512,'Replacement and renewal of fixed assets are','revenue receipt','capital receipt','capital expenditure','revenue expenditure','','','c','','utme','2009',101,'Admin','2016-12-16 21:08:08','2020-06-28 11:06:38'),(513,'Which of the following is credited to the consolidated revenue fund?','Recurrent expenditure','Capital expenditure','Transfers to revenue fund','Internal revenue','','','c','','utme','2009',103,'Admin','2016-12-16 21:08:09','2020-06-28 11:06:38'),(514,'One of the reasons for the existence of the public sector is to','take adequate care of the needy','supplement the commercial sector','provide cheap services to all citizens','correct perceived inequalities.','','','c','','utme','2009',102,'Admin','2016-12-16 21:08:09','2020-06-28 11:06:38');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `api_call_ip_address` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `ipAddress` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `requestCount` int(11) NOT NULL DEFAULT '1',\n  `countryName` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `countryCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `cityName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `zipCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `latitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `longitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=10161 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `api_call_ip_address` VALUES (1,'chemistry','41.204.237.6',55,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:16:31','2019-10-11 19:53:51'),(2,'english','41.204.237.6',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-22 17:05:06'),(3,'physics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(4,'government','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(5,'irk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(6,'civiledu','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(7,'currentaffairs','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(8,'economics','197.255.171.219',494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:28:05','2018-11-16 16:14:04'),(9,'english','197.255.171.219',622,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 16:17:59','2018-11-16 17:04:20'),(10,'english','105.112.40.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 20:56:48','2018-11-16 20:56:48'),(11,'chemistry','66.249.66.146',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 02:15:11','2019-01-20 17:41:49'),(12,'chemistry','105.112.27.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 18:01:33','2018-11-17 18:01:33'),(13,'chemistry','105.112.34.182',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 19:42:35','2018-11-17 19:48:36'),(14,'english','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:11:14','2018-11-18 07:11:16'),(15,'mathematics','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:23:49','2018-11-18 07:23:58'),(16,'english','35.187.100.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:08:37','2018-11-18 15:08:37'),(17,'english','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(18,'biology','54.157.207.237',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:22:23'),(19,'physics','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(20,'chemistry','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(21,'englishlit','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(22,'currentaffairs','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(23,'history','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(24,'mathematics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(25,'commerce','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(26,'biology','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:10'),(27,'physics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(28,'englishlit','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(29,'government','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(30,'economics','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:59:54'),(31,'chemistry','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(32,'crk','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(33,'irk','54.242.159.164',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:01:08'),(34,'insurance','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(35,'currentaffairs','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(36,'history','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(37,'english','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:10','2018-11-18 16:00:23'),(38,'civiledu','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:23','2018-11-18 16:00:23'),(39,'chemistry','38.132.114.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:11:29','2018-11-18 16:11:29'),(40,'biology','154.118.73.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:26:38','2018-11-19 07:42:11'),(41,'mathematics','154.118.73.218',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:57:21','2018-11-19 08:27:22'),(42,'biology','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(43,'physics','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(44,'englishlit','54.226.211.137',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:04'),(45,'crk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(46,'geography','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(47,'civiledu','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(48,'currentaffairs','54.226.211.137',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:12'),(49,'chemistry','105.112.34.116',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 11:42:43','2018-11-19 12:07:25'),(50,'biology','105.112.34.116',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 12:03:49','2018-11-19 12:04:31'),(51,'chemistry','105.112.32.113',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 15:15:17','2018-11-19 15:15:17'),(52,'chemistry','105.112.38.168',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:39:07','2018-11-19 16:39:53'),(53,'chemistry','105.112.33.204',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:41:17','2018-11-19 17:08:45'),(54,'chemistry','105.112.34.113',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 17:16:16','2018-11-19 17:50:41'),(55,'chemistry','105.112.39.125',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 18:09:49','2018-11-19 18:10:22'),(56,'commerce','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(57,'accounting','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(58,'biology','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(59,'physics','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(60,'geography','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(61,'civiledu','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(62,'currentaffairs','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(63,'mathematics','154.120.115.82',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 09:18:07','2018-11-20 09:18:27'),(64,'accounting','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(65,'chemistry','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(66,'government','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(67,'crk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(68,'geography','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(69,'irk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(70,'currentaffairs','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(71,'chemistry','197.210.55.232',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:36:42','2018-11-21 16:04:23'),(72,'chemistry','197.210.55.152',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:51:48','2018-11-21 16:04:07'),(73,'mathematics','197.210.55.232',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:25','2018-11-21 16:04:26'),(74,'english','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(75,'mathematics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(76,'commerce','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(77,'geography','54.235.56.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(78,'economics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(79,'civiledu','54.235.56.218',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(80,'insurance','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(81,'mathematics','197.210.55.49',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:06:37','2018-11-21 16:12:12'),(82,'accounting','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(83,'physics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(84,'government','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(85,'crk','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(86,'history','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(87,'mathematics','197.210.53.227',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:39:55','2018-11-21 18:46:03'),(88,'mathematics','197.210.53.213',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:41:49','2018-11-21 18:50:09'),(89,'mathematics','197.210.53.241',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:50:32','2018-11-21 18:50:33'),(90,'physics','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(91,'englishlit','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(92,'government','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(93,'geography','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(94,'irk','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(95,'civiledu','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(96,'history','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:34'),(97,'mathematics','105.112.39.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:03:34','2018-11-21 20:03:35'),(98,'chemistry','105.112.39.146',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:35:42','2018-11-21 21:02:43'),(99,'biology','197.210.29.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:41:34','2018-11-21 20:41:35'),(100,'commerce','41.203.72.24',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 08:31:50','2018-11-22 08:31:54'),(101,'biology','154.118.57.75',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:21:36','2018-11-22 09:21:42'),(102,'english','154.118.57.75',430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:32:20','2018-11-22 09:48:24'),(103,'mathematics','154.118.57.75',138,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:34:54','2018-11-22 09:48:24'),(104,'commerce','154.118.57.75',67,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:36:29','2018-11-22 09:37:01'),(105,'mathematics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(106,'biology','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(107,'physics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(108,'chemistry','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(109,'geography','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(110,'economics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(111,'irk','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(112,'crk','105.112.32.158',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:17:53','2018-11-22 12:19:16'),(113,'crk','105.112.26.27',714,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:39:40','2018-11-22 12:50:37'),(114,'geography','105.112.26.27',333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:51:29','2018-11-22 12:56:58'),(115,'irk','105.112.26.27',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:56:49','2018-11-22 12:56:57'),(116,'mathematics','197.210.52.148',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:57','2018-11-22 20:15:32'),(117,'mathematics','197.210.53.170',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:41'),(118,'mathematics','197.210.53.74',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:25'),(119,'commerce','197.210.53.170',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:42','2018-11-22 20:14:59'),(120,'commerce','197.210.52.148',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-22 20:14:57','2020-02-06 09:18:23'),(121,'commerce','197.210.53.74',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:58','2018-11-22 20:15:00'),(122,'accounting','197.210.53.170',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:17'),(123,'accounting','197.210.53.74',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:31'),(124,'accounting','197.210.52.148',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:02','2018-11-22 20:15:34'),(125,'chemistry','45.222.98.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 08:18:28','2018-11-23 08:29:56'),(126,'crk','105.112.46.53',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 09:29:55','2018-11-23 10:34:53'),(127,'chemistry','105.112.46.53',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 13:13:27','2018-11-23 13:56:23'),(128,'chemistry','105.112.45.132',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:12:24','2018-11-23 16:12:25'),(129,'chemistry','105.112.42.3',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:18:35','2018-11-23 17:30:48'),(130,'accounting','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(131,'biology','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(132,'physics','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(133,'irk','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(134,'civiledu','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(135,'currentaffairs','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(136,'history','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(137,'chemistry','122.172.127.49',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:22:39','2018-11-23 18:25:03'),(138,'physics','122.172.127.49',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:25:06','2018-11-23 18:25:21'),(139,'chemistry','105.112.41.195',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 19:35:37','2019-03-06 06:04:52'),(140,'chemistry','105.112.29.74',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 20:03:18','2018-11-23 22:58:38'),(141,'chemistry','105.112.40.253',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 09:25:34','2018-11-24 09:25:34'),(142,'english','41.203.72.10',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:16:56','2018-11-24 13:19:08'),(143,'accounting','41.203.72.10',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:21:12','2018-11-27 06:00:10'),(144,'english','105.112.44.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 14:40:08','2018-11-24 14:40:08'),(145,'chemistry','105.112.43.82',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 19:55:21','2018-11-24 20:10:56'),(146,'chemistry','105.112.46.85',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 20:28:29','2018-11-28 09:54:04'),(147,'chemistry','105.112.41.167',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:10:36','2018-11-24 21:25:21'),(148,'chemistry','105.112.40.197',880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:57:55','2018-11-24 22:40:30'),(149,'english','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(150,'physics','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(151,'englishlit','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(152,'crk','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(153,'geography','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(154,'civiledu','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(155,'insurance','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(156,'chemistry','105.112.44.13',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 08:45:46','2018-11-25 09:31:13'),(157,'chemistry','105.112.41.148',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 09:44:43','2018-11-25 10:48:33'),(158,'chemistry','66.102.8.72',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:23:12','2018-11-25 10:23:13'),(159,'chemistry','108.177.7.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:28:48','2018-11-25 10:28:49'),(160,'chemistry','108.177.6.56',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:36','2018-11-25 10:29:54'),(161,'chemistry','108.177.6.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:41','2018-11-25 10:29:42'),(162,'chemistry','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:50','2018-11-25 10:29:51'),(163,'civiledu','108.177.6.53',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:53','2018-11-25 10:29:54'),(164,'commerce','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:56','2018-11-25 10:29:57'),(165,'crk','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:58','2018-11-25 10:29:58'),(166,'chemistry','108.177.6.58',200,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-25 10:30:05','2019-09-12 00:12:04'),(167,'insurance','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:10','2018-11-25 10:30:11'),(168,'history','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:12','2018-11-25 10:30:12'),(169,'geography','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:15','2018-11-25 10:30:15'),(170,'geography','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:18','2018-11-25 10:30:19'),(171,'commerce','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:19','2018-11-25 10:30:20'),(172,'englishlit','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:20'),(173,'crk','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:21'),(174,'geography','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:21','2018-11-25 10:30:21'),(175,'civiledu','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:22','2018-11-25 10:30:23'),(176,'civiledu','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:24','2018-11-25 10:30:24'),(177,'insurance','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:25','2018-11-25 10:30:25'),(178,'englishlit','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:27','2018-11-25 10:30:27'),(179,'commerce','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:29','2018-11-25 10:30:29'),(180,'history','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:35','2018-11-25 10:30:35'),(181,'insurance','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:37','2018-11-25 10:30:37'),(182,'currentaffairs','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:42','2018-11-25 10:30:42'),(183,'chemistry','108.177.7.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:45','2018-11-25 10:31:04'),(184,'history','108.177.7.81',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:11','2018-11-25 10:31:39'),(185,'english','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:43','2018-11-25 10:31:43'),(186,'economics','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:47','2018-11-25 10:31:48'),(187,'mathematics','108.177.7.81',60,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:52','2019-09-11 16:49:44'),(188,'englishlit','108.177.7.81',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:32:37'),(189,'chemistry','66.249.88.76',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:31:59'),(190,'crk','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:10','2018-11-25 10:32:10'),(191,'insurance','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:14','2018-11-25 10:32:14'),(192,'civiledu','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:17','2018-11-25 10:32:18'),(193,'geography','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:21','2018-11-25 10:32:22'),(194,'chemistry','104.133.10.99',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:47:20','2018-11-25 10:48:39'),(195,'chemistry','105.112.46.101',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:07:44','2018-11-25 12:07:44'),(196,'chemistry','105.112.33.216',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:33:34','2018-11-25 12:56:01'),(197,'currentaffairs','105.112.33.216',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:56:40','2018-11-25 13:10:15'),(198,'economics','105.112.33.216',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:10:36','2018-11-25 13:16:55'),(199,'chemistry','105.112.40.40',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:15:46','2018-11-25 13:19:21'),(200,'chemistry','105.112.42.88',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:21:39','2018-11-25 13:21:39'),(201,'chemistry','105.112.41.248',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:01:24','2018-11-25 17:01:24'),(202,'english','105.112.41.248',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:04:33','2018-11-25 17:13:28'),(203,'english','105.112.41.0',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:18:30','2018-11-25 17:55:36'),(204,'english','197.210.53.141',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 19:58:43','2018-11-25 20:00:07'),(205,'english','197.210.52.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:07','2018-11-25 20:00:41'),(206,'english','197.210.53.23',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:21','2018-11-25 20:00:55'),(207,'english','105.112.43.127',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:19:59','2018-11-25 20:20:01'),(208,'english','197.211.63.176',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:00:14','2018-11-26 05:00:51'),(209,'commerce','197.211.63.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:10','2018-11-26 05:01:10'),(210,'mathematics','197.211.63.176',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:21','2018-11-26 10:14:10'),(211,'biology','105.112.42.191',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:08','2018-11-26 09:33:08'),(212,'accounting','105.112.42.191',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:09','2018-11-26 09:33:12'),(213,'english','41.76.197.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:38','2018-11-26 10:12:41'),(214,'currentaffairs','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:50','2018-11-26 10:12:50'),(215,'government','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:54','2018-11-26 10:12:54'),(216,'civiledu','41.76.197.2',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:58','2018-11-26 10:13:05'),(217,'englishlit','41.76.197.2',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:13:14','2018-11-27 16:00:52'),(218,'english','129.56.76.55',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:51:31','2018-11-26 10:52:34'),(219,'mathematics','129.56.76.55',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:52:19','2018-11-26 10:52:28'),(220,'english','197.210.227.200',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 11:27:18','2018-11-26 11:27:18'),(221,'english','105.112.28.18',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:05:44','2018-11-26 13:06:45'),(222,'physics','105.112.28.18',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:07:06','2018-11-26 13:34:17'),(223,'physics','105.112.21.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:05:04','2018-11-26 16:05:04'),(224,'english','197.210.63.52',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:11:53','2018-11-26 16:11:56'),(225,'english','197.211.61.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:28:59','2018-11-26 16:28:59'),(226,'currentaffairs','197.211.61.82',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:29:23','2018-11-28 11:57:35'),(227,'chemistry','77.88.47.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 22:02:53','2019-04-15 13:33:36'),(228,'mathematics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(229,'chemistry','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(230,'government','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(231,'economics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(232,'civiledu','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(233,'currentaffairs','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(234,'history','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(235,'commerce','41.203.72.10',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 05:53:52','2018-11-27 06:00:02'),(236,'physics','41.203.72.10',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:00:04','2018-11-27 06:01:08'),(237,'english','41.190.30.106',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:14:24','2018-11-27 06:21:01'),(238,'civiledu','41.190.30.106',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:21:10','2018-11-27 06:21:10'),(239,'civiledu','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:03','2018-11-27 06:38:04'),(240,'english','41.190.2.145',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:07','2018-11-27 06:39:15'),(241,'mathematics','41.190.2.145',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:09','2018-11-27 06:38:26'),(242,'insurance','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:14','2018-11-27 06:38:14'),(243,'chemistry','41.190.2.145',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:27','2018-11-27 06:38:37'),(244,'chemistry','105.112.27.114',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:39:39','2018-11-27 06:41:07'),(245,'englishlit','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(246,'government','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(247,'crk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(248,'geography','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(249,'irk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(250,'insurance','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(251,'history','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(252,'physics','105.112.28.250',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 08:14:13','2018-11-27 08:14:48'),(253,'english','197.211.61.80',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:09','2018-11-27 13:40:37'),(254,'mathematics','197.211.61.80',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:21','2018-11-27 13:38:36'),(255,'english','197.210.226.36',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:47:29','2018-11-27 13:47:32'),(256,'english','197.210.29.222',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:18:13','2018-11-27 14:20:00'),(257,'commerce','197.210.29.222',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:20:17','2018-11-27 14:20:22'),(258,'english','105.112.120.89',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:34:35','2018-11-27 14:37:02'),(259,'crk','105.112.120.89',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:38:57','2018-11-27 14:40:34'),(260,'mathematics','129.205.114.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:17','2018-11-27 14:40:17'),(261,'english','129.205.114.24',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:21','2018-11-27 14:41:29'),(262,'chemistry','129.205.114.24',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:42:02','2018-11-27 14:42:57'),(263,'physics','129.205.114.24',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:43:24','2018-11-27 14:44:50'),(264,'english','129.56.65.7',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:45:40','2018-11-27 16:45:49'),(265,'biology','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:46:22','2018-11-27 16:49:06'),(266,'accounting','129.56.65.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:26','2018-11-27 16:49:26'),(267,'geography','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:40','2018-11-27 16:59:23'),(268,'physics','105.112.26.254',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 17:27:44','2018-11-27 17:27:56'),(269,'english','129.56.60.65',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 18:02:16','2018-11-27 18:02:18'),(270,'english','105.112.34.100',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 19:45:56','2018-11-27 19:46:05'),(271,'chemistry','105.112.46.246',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:12:41','2018-11-27 20:12:45'),(272,'mathematics','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:30','2018-11-27 20:13:30'),(273,'currentaffairs','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:37','2018-11-27 20:13:38'),(274,'chemistry','5.102.173.71',20,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-28 03:23:29','2020-04-23 13:10:36'),(275,'english','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(276,'mathematics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(277,'accounting','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(278,'biology','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(279,'physics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(280,'economics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(281,'insurance','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(282,'english','197.210.29.201',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:58:56','2018-11-28 06:59:01'),(283,'currentaffairs','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:28','2018-11-28 07:00:28'),(284,'mathematics','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:50','2018-11-28 07:00:50'),(285,'currentaffairs','197.210.226.232',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:01:32','2018-11-28 07:02:24'),(286,'mathematics','105.112.68.162',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:39:34','2018-11-28 07:40:17'),(287,'english','129.56.51.37',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:53:25','2018-11-28 09:57:29'),(288,'englishlit','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:54:29','2018-11-28 17:19:35'),(289,'mathematics','129.56.51.37',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:57:49','2018-11-28 09:57:52'),(290,'chemistry','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:36:59','2018-11-28 13:36:59'),(291,'english','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:50:26','2018-11-28 13:50:26'),(292,'mathematics','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:51:25','2018-11-28 13:51:25'),(293,'geography','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:52:11','2018-11-28 13:52:11'),(294,'accounting','105.112.42.193',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 14:17:01','2018-11-28 14:17:30'),(295,'english','105.112.46.85',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:11','2018-11-28 17:19:16'),(296,'history','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:55','2018-11-28 17:20:33'),(297,'english','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:31','2018-11-28 17:48:31'),(298,'mathematics','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:35','2018-11-28 17:48:40'),(299,'chemistry','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:49:26','2018-11-28 17:50:45'),(300,'biology','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:50:12','2018-11-28 17:50:16'),(301,'accounting','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:52:59','2018-11-28 17:52:59'),(302,'history','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:53:04','2018-11-28 17:53:09'),(303,'physics','105.112.26.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 02:32:12','2018-11-29 02:33:14'),(304,'english','105.112.3.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:04:28','2018-11-29 05:07:31'),(305,'english','197.210.226.122',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:31:51','2018-11-29 05:33:21'),(306,'english','197.210.226.203',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:33:22','2018-11-29 05:37:32'),(307,'mathematics','197.210.226.122',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:38:12','2018-11-29 05:38:14'),(308,'english','102.163.30.124',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:45:54','2018-11-29 07:47:50'),(309,'accounting','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(310,'commerce','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(311,'biology','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(312,'physics','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(313,'chemistry','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(314,'englishlit','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(315,'geography','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(316,'crk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(317,'currentaffairs','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(318,'history','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(319,'irk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(320,'insurance','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(321,'chemistry','105.112.68.243',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 11:06:07','2018-11-29 11:06:07'),(322,'chemistry','197.149.95.62',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:08:23','2018-11-29 13:08:50'),(323,'english','197.211.60.94',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:18:57','2018-11-29 13:19:11'),(324,'english','129.56.159.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:43','2018-11-30 05:15:43'),(325,'mathematics','129.56.159.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:54','2018-11-30 05:15:55'),(326,'english','129.56.190.68',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 14:03:21','2018-11-30 14:03:21'),(327,'commerce','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(328,'physics','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(329,'chemistry','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(330,'englishlit','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(331,'government','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(332,'currentaffairs','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(333,'history','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(334,'mathematics','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(335,'crk','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(336,'geography','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(337,'history','105.112.47.245',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 19:21:33','2018-11-30 19:21:33'),(338,'english','105.112.46.230',2160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 21:59:34','2018-12-01 00:55:45'),(339,'commerce','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(340,'biology','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(341,'englishlit','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(342,'government','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(343,'civiledu','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(344,'insurance','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(345,'history','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(346,'english','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(347,'accounting','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(348,'physics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(349,'geography','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(350,'economics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(351,'english','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:57:37','2018-12-01 00:57:45'),(352,'physics','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:08','2018-12-01 00:58:11'),(353,'englishlit','105.112.68.163',840,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:33','2018-12-01 01:55:58'),(354,'english','101.206.169.22',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:48:58','2018-12-01 03:50:48'),(355,'geography','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:15','2018-12-01 03:49:15'),(356,'history','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:20','2018-12-01 03:49:20'),(357,'economics','101.206.169.22',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:50:52','2018-12-01 03:50:57'),(358,'physics','101.206.169.22',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:51:11','2018-12-01 03:51:31'),(359,'physics','105.112.21.158',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:34:50','2018-12-01 09:35:53'),(360,'biology','105.112.21.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:39:19','2018-12-01 09:39:19'),(361,'economics','105.112.32.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 14:44:33','2018-12-01 14:48:45'),(362,'english','192.241.239.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:43:19','2018-12-01 19:43:34'),(363,'economics','192.241.239.137',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:45:45','2018-12-01 19:45:48'),(364,'crk','41.90.4.17',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:39:33','2018-12-02 16:39:35'),(365,'english','105.112.68.194',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:46:19','2018-12-02 16:46:49'),(366,'englishlit','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:48:58','2018-12-02 16:48:58'),(367,'government','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:50:02','2018-12-02 16:50:02'),(368,'mathematics','105.112.35.216',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 20:03:41','2018-12-02 20:05:19'),(369,'mathematics','197.210.44.169',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 07:17:58','2018-12-03 07:17:58'),(370,'english','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:44:57','2019-01-01 08:57:25'),(371,'physics','66.249.66.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:47:01','2018-12-11 00:12:59'),(372,'commerce','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:52:28','2018-12-10 06:37:01'),(373,'mathematics','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:53:01','2019-01-01 09:08:53'),(374,'english','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(375,'mathematics','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(376,'accounting','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(377,'crk','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(378,'geography','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(379,'civiledu','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(380,'insurance','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(381,'english','197.210.55.187',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:21:56','2018-12-04 05:22:40'),(382,'english','197.210.55.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:22:22','2018-12-04 05:23:48'),(383,'english','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:46','2018-12-04 05:23:46'),(384,'economics','197.210.55.77',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:50','2018-12-04 05:23:55'),(385,'government','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:19','2018-12-04 05:24:19'),(386,'currentaffairs','197.210.55.77',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:20','2018-12-04 05:27:52'),(387,'biology','41.203.72.24',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 08:44:56','2018-12-04 08:45:38'),(388,'physics','129.18.144.249',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:37:18','2018-12-04 11:37:48'),(389,'mathematics','129.18.144.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:38:26','2018-12-04 11:38:26'),(390,'chemistry','129.18.144.249',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:39:19','2018-12-04 12:05:27'),(391,'chemistry','41.58.182.193',441,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:28:25','2019-02-18 09:48:30'),(392,'biology','41.58.182.193',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:59:24','2019-01-14 13:14:55'),(393,'accounting','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(394,'mathematics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(395,'crk','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(396,'commerce','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(397,'geography','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(398,'physics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(399,'englishlit','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(400,'economics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(401,'irk','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(402,'insurance','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(403,'civiledu','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(404,'history','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(405,'chemistry','5.255.250.167',134,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-06 10:34:57','2020-03-09 20:47:54'),(406,'english','198.54.114.114',2064829,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 23:13:35','2019-01-05 10:14:01'),(407,'mathematics','197.210.54.46',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:39:25','2018-12-07 14:39:27'),(408,'chemistry','107.167.108.170',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:41:02','2018-12-07 14:41:16'),(409,'english','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(410,'commerce','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(411,'physics','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(412,'crk','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(413,'civiledu','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(414,'insurance','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(415,'currentaffairs','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(416,'chemistry','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(417,'geography','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(418,'irk','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(419,'chemistry','93.158.161.84',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 12:23:24','2019-08-28 13:58:43'),(420,'mathematics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(421,'physics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(422,'englishlit','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(423,'government','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(424,'economics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(425,'irk','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(426,'civiledu','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(427,'chemistry','41.190.2.156',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 21:46:56','2018-12-08 21:53:59'),(428,'mathematics','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(429,'english','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(430,'commerce','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(431,'englishlit','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(432,'government','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(433,'economics','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(434,'crk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(435,'civiledu','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(436,'geography','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(437,'currentaffairs','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(438,'history','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(439,'irk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(440,'english','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:24:35','2019-01-21 04:56:34'),(441,'accounting','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:27:10','2018-12-10 05:27:10'),(442,'economics','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:28:56','2018-12-11 00:19:57'),(443,'currentaffairs','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:26:15','2018-12-10 06:26:15'),(444,'mathematics','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:32:16','2018-12-10 06:32:17'),(445,'government','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 09:31:31','2018-12-10 09:31:32'),(446,'crk','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:34:20','2018-12-10 11:34:20'),(447,'geography','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:40:41','2018-12-10 11:40:41'),(448,'english','66.249.66.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:01:44','2018-12-12 11:56:08'),(449,'crk','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:02:21','2018-12-11 00:02:21'),(450,'mathematics','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:13:24','2018-12-11 00:13:24'),(451,'english','105.112.45.33',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 12:02:56','2018-12-11 12:38:16'),(452,'chemistry','93.158.166.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 14:37:30','2018-12-11 14:37:30'),(453,'chemistry','180.76.15.21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 16:53:35','2018-12-11 16:53:35'),(454,'chemistry','180.76.15.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 19:26:46','2018-12-11 19:26:46'),(455,'english','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(456,'mathematics','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(457,'accounting','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(458,'biology','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(459,'geography','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(460,'economics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(461,'history','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(462,'physics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(463,'government','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(464,'irk','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(465,'civiledu','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(466,'chemistry','180.76.15.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 23:48:00','2018-12-11 23:48:00'),(467,'chemistry','180.76.15.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 00:21:20','2018-12-12 00:21:20'),(468,'chemistry','180.76.15.14',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 07:46:34','2018-12-12 07:46:34'),(469,'chemistry','154.113.73.98',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:36','2018-12-12 10:41:28'),(470,'mathematics','154.113.73.98',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:49','2018-12-12 10:36:58'),(471,'crk','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:20','2018-12-12 11:59:20'),(472,'physics','66.249.66.148',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:38','2019-01-21 04:57:41'),(473,'english','105.112.47.144',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:00:13','2018-12-12 22:58:12'),(474,'englishlit','105.112.47.144',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:02:31','2018-12-12 12:04:05'),(475,'accounting','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 21:01:10','2018-12-12 21:01:10'),(476,'chemistry','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 22:50:15','2018-12-12 22:50:15'),(477,'english','105.112.46.125',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:28:26','2018-12-13 08:44:01'),(478,'economics','105.112.46.125',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:29:01','2018-12-13 08:29:01'),(479,'english','105.112.41.38',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:57:18','2018-12-13 12:33:26'),(480,'english','129.56.134.30',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 09:16:11','2018-12-13 09:16:17'),(481,'chemistry','93.158.161.83',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-13 09:55:28','2019-08-18 19:16:42'),(482,'government','105.112.41.38',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:18','2018-12-13 10:21:18'),(483,'economics','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:51','2018-12-13 10:46:29'),(484,'biology','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:30:17','2018-12-13 10:32:39'),(485,'chemistry','105.112.41.38',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:47:04','2018-12-13 11:10:33'),(486,'accounting','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:57:43','2018-12-13 11:01:54'),(487,'mathematics','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:05:06','2018-12-13 11:15:23'),(488,'englishlit','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:10:58','2018-12-13 11:14:55'),(489,'chemistry','180.76.15.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 15:45:10','2018-12-13 15:45:10'),(490,'chemistry','180.76.15.16',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:18:30','2018-12-13 16:18:31'),(491,'irk','54.227.19.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:32:52','2018-12-13 16:32:52'),(492,'chemistry','180.76.15.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:51:50','2018-12-13 16:51:50'),(493,'english','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:37','2018-12-13 19:06:38'),(494,'mathematics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:40','2018-12-13 19:08:24'),(495,'crk','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:57','2018-12-13 19:06:58'),(496,'economics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:01','2018-12-13 19:08:24'),(497,'government','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:14','2018-12-13 19:07:14'),(498,'civiledu','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(499,'biology','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(500,'history','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:42','2018-12-13 19:07:42'),(501,'chemistry','178.154.171.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 21:33:50','2018-12-13 21:33:50'),(502,'chemistry','180.76.15.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 00:15:20','2018-12-14 00:15:20'),(503,'chemistry','180.76.15.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 07:43:39','2018-12-14 07:43:39'),(504,'chemistry','197.211.61.108',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 15:01:10','2018-12-14 15:01:10'),(505,'english','105.112.46.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 21:38:58','2018-12-14 21:38:59'),(506,'mathematics','105.112.32.198',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 15:16:16','2018-12-15 15:16:17'),(507,'english','105.112.38.110',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:20:52','2018-12-15 19:20:28'),(508,'biology','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:25:40','2018-12-15 18:25:40'),(509,'economics','105.112.38.110',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:21:25','2018-12-15 19:30:28'),(510,'accounting','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:30:34','2018-12-15 19:30:34'),(511,'physics','175.126.202.88',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 00:43:36','2018-12-16 00:44:38'),(512,'accounting','105.112.34.239',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 10:25:26','2018-12-16 10:25:26'),(513,'accounting','105.112.41.67',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 15:44:34','2018-12-16 16:36:06'),(514,'accounting','105.112.29.182',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 16:52:50','2018-12-16 17:06:10'),(515,'accounting','105.112.34.195',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 17:18:42','2018-12-16 18:36:42'),(516,'chemistry','197.211.56.111',287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:10:04','2018-12-16 19:21:43'),(517,'accounting','105.112.46.33',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:32:00','2018-12-16 19:34:06'),(518,'english','105.112.46.33',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:36:15','2018-12-16 19:36:15'),(519,'mathematics','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(520,'englishlit','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(521,'government','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(522,'economics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(523,'civiledu','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(524,'insurance','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(525,'history','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(526,'accounting','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(527,'physics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(528,'chemistry','197.211.61.98',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:12:52','2018-12-17 06:13:44'),(529,'mathematics','197.211.61.98',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:14:29','2018-12-17 06:14:29'),(530,'english','105.112.45.142',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:21:44','2018-12-17 06:21:44'),(531,'commerce','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(532,'mathematics','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(533,'englishlit','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(534,'accounting','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(535,'crk','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(536,'civiledu','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(537,'irk','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(538,'insurance','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(539,'currentaffairs','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(540,'history','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(541,'crk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(542,'geography','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(543,'economics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(544,'history','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(545,'chemistry','197.210.45.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 17:24:25','2018-12-17 17:39:16'),(546,'mathematics','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:41','2018-12-17 18:04:43'),(547,'english','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:52','2018-12-17 18:04:56'),(548,'chemistry','197.210.227.233',92,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 21:46:03','2020-04-28 16:08:26'),(549,'crk','41.90.4.25',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 05:23:20','2018-12-18 05:23:20'),(550,'mathematics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(551,'chemistry','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(552,'englishlit','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(553,'government','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(554,'economics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(555,'currentaffairs','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(556,'history','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(557,'english','197.149.92.146',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 15:42:59','2019-01-21 14:07:29'),(558,'english','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(559,'physics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(560,'government','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(561,'crk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(562,'economics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(563,'irk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(564,'history','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(565,'mathematics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(566,'commerce','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(567,'biology','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(568,'physics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(569,'crk','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(570,'civiledu','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(571,'mathematics','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(572,'commerce','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(573,'accounting','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(574,'biology','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(575,'government','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(576,'geography','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(577,'insurance','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(578,'english','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(579,'chemistry','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(580,'crk','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(581,'currentaffairs','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(582,'english','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:07:37','2018-12-19 07:07:37'),(583,'currentaffairs','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:08:26','2018-12-19 07:08:26'),(584,'chemistry','141.8.142.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 10:43:20','2018-12-19 10:43:20'),(585,'chemistry','129.205.114.31',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 14:19:13','2018-12-19 14:46:54'),(586,'chemistry','197.210.45.94',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 18:51:50','2018-12-19 19:42:45'),(587,'chemistry','197.210.226.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:52:25','2018-12-19 19:52:25'),(588,'chemistry','197.210.226.37',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:53:27','2018-12-19 19:53:31'),(589,'chemistry','129.205.114.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 22:33:31','2018-12-19 22:33:31'),(590,'chemistry','197.210.131.150',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 06:24:47','2018-12-20 06:43:46'),(591,'english','41.58.233.100',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:12:36','2018-12-20 09:15:21'),(592,'commerce','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(593,'biology','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(594,'physics','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(595,'englishlit','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(596,'geography','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(597,'history','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(598,'mathematics','105.112.37.70',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 19:08:41','2018-12-20 19:08:41'),(599,'english','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(600,'commerce','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(601,'geography','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(602,'economics','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(603,'civiledu','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(604,'insurance','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(605,'history','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(606,'currentaffairs','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:19','2018-12-21 08:05:19'),(607,'biology','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:51','2018-12-21 08:05:51'),(608,'english','105.112.47.163',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:24:03','2018-12-21 10:19:51'),(609,'chemistry','105.112.47.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:39:11','2018-12-21 08:39:37'),(610,'physics','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:45:24','2018-12-21 08:45:25'),(611,'mathematics','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(612,'chemistry','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(613,'englishlit','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(614,'geography','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(615,'civiledu','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(616,'currentaffairs','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(617,'history','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(618,'mathematics','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:33:23','2018-12-22 05:33:23'),(619,'english','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:35:01','2018-12-22 05:35:01'),(620,'chemistry','197.211.61.114',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:26:13','2018-12-22 11:17:52'),(621,'english','197.211.61.114',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:31:29','2018-12-22 10:01:02'),(622,'mathematics','197.211.61.114',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 10:51:19','2018-12-22 11:44:17'),(623,'biology','197.211.61.114',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:15:56','2018-12-22 11:38:07'),(624,'economics','197.211.61.114',601,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:45:00','2018-12-22 11:54:26'),(625,'english','105.112.46.179',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:02:33','2018-12-22 12:32:21'),(626,'biology','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:12:59','2018-12-22 12:12:59'),(627,'mathematics','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:14:25','2018-12-22 12:14:25'),(628,'biology','105.112.27.90',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 14:12:09','2018-12-22 14:12:19'),(629,'biology','105.112.28.72',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 08:30:27','2018-12-23 08:31:00'),(630,'mathematics','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:34','2018-12-23 10:24:34'),(631,'commerce','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(632,'biology','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(633,'government','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(634,'crk','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(635,'civiledu','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(636,'history','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(637,'english','102.163.30.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 14:59:34','2018-12-23 14:59:34'),(638,'chemistry','94.130.64.96',101,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-24 16:32:40','2019-10-29 05:22:55'),(639,'chemistry','87.250.224.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 15:07:57','2018-12-25 15:07:57'),(640,'english','105.112.46.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 16:28:23','2018-12-25 16:28:24'),(641,'chemistry','197.242.105.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 21:07:41','2018-12-25 21:07:41'),(642,'mathematics','129.56.150.67',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 06:03:54','2018-12-26 06:03:54'),(643,'currentaffairs','105.112.43.199',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 07:57:50','2018-12-26 08:02:07'),(644,'economics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:16','2018-12-26 08:24:50'),(645,'english','105.112.43.199',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:19','2018-12-26 08:13:25'),(646,'biology','105.112.43.199',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:13:33','2018-12-26 08:15:51'),(647,'mathematics','105.112.43.199',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:19:50','2018-12-26 08:19:50'),(648,'chemistry','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:21:57','2018-12-26 08:22:00'),(649,'physics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:23:21','2018-12-26 08:23:26'),(650,'biology','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(651,'physics','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(652,'government','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(653,'geography','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(654,'civiledu','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(655,'currentaffairs','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(656,'history','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(657,'accounting','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(658,'chemistry','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(659,'irk','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(660,'english','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(661,'commerce','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(662,'physics','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(663,'englishlit','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(664,'irk','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(665,'civiledu','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(666,'currentaffairs','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(667,'commerce','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(668,'accounting','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(669,'biology','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(670,'chemistry','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(671,'economics','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(672,'irk','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(673,'currentaffairs','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(674,'mathematics','197.211.63.177',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 09:02:54','2018-12-28 09:02:54'),(675,'english','66.249.75.30',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:23:21','2018-12-28 10:23:21'),(676,'government','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:24:59','2018-12-28 10:24:59'),(677,'geography','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:28:56','2018-12-28 10:28:56'),(678,'mathematics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:30:30','2018-12-28 10:30:30'),(679,'physics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:43:38','2018-12-28 10:43:39'),(680,'physics','119.4.252.222',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 13:32:48','2018-12-28 13:32:48'),(681,'mathematics','105.112.40.153',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:15','2018-12-29 06:30:15'),(682,'english','105.112.40.153',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:27','2018-12-29 06:30:31'),(683,'mathematics','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(684,'english','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(685,'commerce','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(686,'physics','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(687,'biology','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(688,'englishlit','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(689,'government','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(690,'chemistry','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(691,'geography','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(692,'currentaffairs','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 11:39:05'),(693,'irk','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 12:00:15'),(694,'insurance','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(695,'biology','197.211.61.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-30 18:14:56','2018-12-30 18:14:56'),(696,'englishlit','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 08:59:20','2019-01-01 08:59:20'),(697,'civiledu','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 09:06:49','2019-01-01 09:06:49'),(698,'mathematics','197.210.227.192',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 13:01:04','2019-01-01 13:01:05'),(699,'english','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:15','2019-01-02 13:19:15'),(700,'mathematics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:33','2019-01-02 13:19:33'),(701,'physics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:52','2019-01-02 13:19:52'),(702,'chemistry','216.244.66.249',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-03 00:12:52','2020-05-01 01:03:29'),(703,'chemistry','129.56.72.46',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:37:05','2019-01-03 15:53:03'),(704,'physics','129.56.72.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:42:55','2019-01-03 15:42:55'),(705,'english','129.56.72.46',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:43:08','2019-01-03 15:43:45'),(706,'chemistry','197.211.61.138',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-04 14:31:06','2019-01-04 14:31:06'),(707,'chemistry','54.36.222.37',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:24:51','2019-01-05 15:25:12'),(708,'chemistry','105.112.68.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:25:43','2019-01-05 15:25:43'),(709,'chemistry','41.58.55.77',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:20:09','2019-01-05 16:29:28'),(710,'government','41.58.55.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:30:37','2019-01-05 16:30:37'),(711,'english','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:28','2019-01-06 16:30:29'),(712,'physics','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:33','2019-01-06 16:30:33'),(713,'english','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(714,'mathematics','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(715,'physics','54.163.211.17',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(716,'englishlit','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(717,'crk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(718,'government','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(719,'irk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(720,'economics','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(721,'history','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(722,'insurance','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(723,'currentaffairs','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(724,'mathematics','105.112.16.240',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(725,'physics','105.112.16.240',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(726,'english','35.171.138.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:39:33','2019-01-07 09:39:33'),(727,'chemistry','141.8.142.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:47:24','2019-01-07 09:47:24'),(728,'chemistry','129.56.36.237',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 14:52:19','2019-01-07 14:54:09'),(729,'chemistry','129.56.35.102',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:18:44','2019-01-08 07:43:45'),(730,'mathematics','129.56.35.102',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:20:24','2019-01-08 07:41:53'),(731,'mathematics','105.112.23.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:11:31','2019-01-08 09:11:31'),(732,'english','105.112.32.121',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:42:08','2019-01-08 09:42:22'),(733,'chemistry','197.211.61.143',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:10:03','2019-01-08 14:10:20'),(734,'chemistry','154.68.226.2',118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:34:37','2019-01-08 14:39:59'),(735,'english','154.68.226.2',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:39:32','2019-01-08 14:39:32'),(736,'chemistry','105.112.75.253',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:28:30','2019-01-08 18:28:52'),(737,'chemistry','105.112.33.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:43:41','2019-01-08 18:43:41'),(738,'chemistry','35.192.130.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 23:46:16','2019-01-08 23:46:25'),(739,'mathematics','105.112.18.0',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 07:37:37','2019-01-09 07:37:38'),(740,'chemistry','154.118.13.144',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:11:55','2019-01-09 08:13:04'),(741,'mathematics','154.118.13.144',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:12:11','2019-01-09 08:12:47'),(742,'mathematics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(743,'commerce','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(744,'accounting','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(745,'government','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(746,'economics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(747,'civiledu','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(748,'currentaffairs','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(749,'chemistry','41.77.168.134',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:45:00','2019-01-09 08:58:31'),(750,'mathematics','41.77.168.134',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:48:48','2019-01-09 08:48:48'),(751,'english','41.77.168.134',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:58:57','2019-01-09 09:03:34'),(752,'commerce','54.196.34.230',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:52:38'),(753,'accounting','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(754,'chemistry','54.196.34.230',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:19:42'),(755,'englishlit','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(756,'economics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(757,'irk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(758,'insurance','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(759,'physics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(760,'government','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(761,'crk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(762,'geography','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(763,'civiledu','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(764,'history','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(765,'chemistry','80.248.6.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:06:19','2019-01-09 10:06:19'),(766,'chemistry','154.118.61.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:32:10','2019-01-09 10:32:45'),(767,'english','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(768,'mathematics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(769,'commerce','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(770,'accounting','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(771,'physics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(772,'government','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(773,'insurance','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(774,'chemistry','197.242.96.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:31:54','2019-01-09 12:36:27'),(775,'commerce','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(776,'accounting','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(777,'physics','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(778,'government','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(779,'crk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(780,'irk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(781,'history','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(782,'chemistry','197.211.61.140',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:31:17','2019-01-09 13:31:45'),(783,'chemistry','197.210.28.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:45:23','2019-01-09 13:45:42'),(784,'chemistry','105.112.26.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:11:31','2019-01-09 16:11:31'),(785,'chemistry','212.100.76.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:20:25','2019-01-09 16:20:25'),(786,'english','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(787,'commerce','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(788,'chemistry','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(789,'accounting','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(790,'crk','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(791,'englishlit','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(792,'geography','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(793,'economics','54.234.47.73',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:14:14'),(794,'irk','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(795,'history','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(796,'insurance','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(797,'chemistry','51.75.71.123',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 23:42:44','2019-01-09 23:43:14'),(798,'chemistry','129.205.114.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 01:56:23','2019-01-10 01:56:30'),(799,'mathematics','197.210.47.164',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:43:39','2019-01-10 09:02:20'),(800,'chemistry','197.210.47.164',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:49:36','2019-01-10 08:58:38'),(801,'mathematics','163.172.103.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 09:01:09','2019-01-10 09:01:09'),(802,'chemistry','41.223.145.174',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 14:44:39','2019-01-10 14:44:40'),(803,'english','54.82.110.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 20:51:21','2019-01-10 20:51:21'),(804,'english','105.112.46.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:06:16','2019-01-10 21:06:16'),(805,'english','54.80.138.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:20','2019-01-10 21:09:20'),(806,'accounting','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(807,'physics','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(808,'chemistry','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(809,'government','54.80.138.166',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(810,'geography','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:23'),(811,'insurance','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(812,'history','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(813,'commerce','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:33','2019-01-10 21:45:05'),(814,'crk','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:45:05'),(815,'economics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:23'),(816,'civiledu','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:25'),(817,'mathematics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:45:05'),(818,'biology','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:21:37'),(819,'irk','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:45:05'),(820,'currentaffairs','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:34:23'),(821,'mathematics','105.112.46.80',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:40:26','2019-01-10 21:40:35'),(822,'chemistry','197.210.226.19',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 06:57:07','2019-01-11 07:15:56'),(823,'chemistry','197.210.53.216',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:13','2019-01-11 07:55:13'),(824,'chemistry','197.210.52.249',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:24','2019-02-01 07:57:34'),(825,'chemistry','197.210.53.38',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:33','2019-01-11 07:55:33'),(826,'chemistry','141.0.12.246',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 08:09:00','2019-01-11 08:09:00'),(827,'chemistry','93.158.161.104',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-11 11:59:42','2019-11-14 01:45:39'),(828,'mathematics','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(829,'physics','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(830,'chemistry','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(831,'government','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(832,'geography','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(833,'economics','54.205.11.114',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(834,'currentaffairs','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(835,'english','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(836,'commerce','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(837,'biology','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(838,'crk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(839,'irk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(840,'insurance','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(841,'civiledu','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(842,'history','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(843,'chemistry','197.210.227.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:05:33','2019-01-11 19:05:33'),(844,'english','197.210.227.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:09:52','2019-01-11 19:09:52'),(845,'englishlit','197.211.61.137',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 22:39:43','2019-01-11 22:39:43'),(846,'physics','197.242.97.253',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:01:48','2019-01-11 23:05:05'),(847,'mathematics','197.242.97.253',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:06:07','2019-01-11 23:31:02'),(848,'chemistry','197.211.61.137',101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:08:07','2019-01-11 23:30:04'),(849,'irk','197.211.61.137',2640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:30:32','2019-01-12 01:52:58'),(850,'civiledu','197.211.61.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:38:40','2019-01-12 00:01:30'),(851,'crk','197.211.61.137',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 01:59:32','2019-01-12 02:01:42'),(852,'chemistry','154.113.86.220',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 12:01:05','2019-01-12 12:05:52'),(853,'chemistry','197.210.55.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:02','2019-01-12 13:17:02'),(854,'chemistry','197.210.54.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:27','2019-01-12 13:17:35'),(855,'chemistry','197.210.54.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:18:25','2019-01-12 13:18:25'),(856,'english','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(857,'mathematics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(858,'commerce','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(859,'biology','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(860,'physics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(861,'irk','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(862,'insurance','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(863,'english','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(864,'biology','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(865,'physics','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(866,'government','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(867,'irk','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(868,'civiledu','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(869,'insurance','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(870,'chemistry','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(871,'englishlit','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(872,'history','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(873,'english','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(874,'mathematics','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(875,'biology','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(876,'geography','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(877,'irk','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(878,'insurance','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(879,'history','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(880,'english','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:04:50','2019-01-12 20:04:50'),(881,'chemistry','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:05:26','2019-01-12 20:05:27'),(882,'irk','197.210.47.86',180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:21:42','2019-01-12 20:26:58'),(883,'insurance','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:27:49','2019-01-12 20:27:49'),(884,'mathematics','197.210.47.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:36:53','2019-01-12 20:39:06'),(885,'chemistry','154.120.102.146',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 00:32:56','2019-01-13 00:33:43'),(886,'english','197.210.54.214',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:56:19'),(887,'english','197.210.54.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:02:41'),(888,'mathematics','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:09:53','2019-01-13 08:09:53'),(889,'mathematics','197.210.55.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:10:36','2019-01-13 08:10:36'),(890,'english','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:51:48','2019-01-13 08:51:48'),(891,'english','197.210.55.13',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:59:29','2019-01-13 08:59:29'),(892,'chemistry','197.210.44.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:00:31','2019-01-13 11:00:31'),(893,'english','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(894,'commerce','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(895,'biology','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(896,'chemistry','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(897,'englishlit','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(898,'government','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(899,'history','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(900,'english','197.210.226.45',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 14:49:00','2019-01-13 14:49:00'),(901,'physics','197.210.227.184',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(902,'physics','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(903,'english','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:59:10','2019-01-13 15:59:10'),(904,'english','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:02:36','2019-01-13 16:02:36'),(905,'biology','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:05:26','2019-01-13 16:05:26'),(906,'biology','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:10:47','2019-01-13 16:12:44'),(907,'physics','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:39:55','2019-01-13 16:39:55'),(908,'economics','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:33:11','2019-01-13 17:41:35'),(909,'mathematics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(910,'english','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(911,'accounting','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(912,'physics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(913,'chemistry','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(914,'englishlit','54.87.49.142',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(915,'crk','54.87.49.142',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(916,'government','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(917,'geography','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(918,'economics','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(919,'commerce','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(920,'civiledu','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(921,'currentaffairs','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(922,'history','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(923,'english','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(924,'commerce','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(925,'physics','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(926,'englishlit','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(927,'geography','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(928,'insurance','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(929,'currentaffairs','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(930,'mathematics','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(931,'accounting','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(932,'crk','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(933,'mathematics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(934,'commerce','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(935,'government','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(936,'chemistry','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(937,'crk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(938,'englishlit','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(939,'economics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(940,'irk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(941,'geography','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(942,'insurance','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(943,'civiledu','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(944,'currentaffairs','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(945,'chemistry','41.58.81.61',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 06:35:26','2019-01-14 11:20:24'),(946,'chemistry','67.222.154.247',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:40:10','2019-01-14 07:40:10'),(947,'mathematics','41.58.182.193',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:50:27','2019-01-14 15:09:22'),(948,'commerce','41.58.182.193',2080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 09:57:28','2019-01-14 13:27:13'),(949,'chemistry','154.120.102.252',854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:00:36','2019-01-14 10:20:54'),(950,'accounting','41.58.182.193',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:01:42','2019-01-14 13:14:55'),(951,'commerce','197.211.61.136',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:38:39','2019-01-14 10:38:59'),(952,'biology','41.58.81.61',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:18:50','2019-01-14 11:19:07'),(953,'chemistry','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:24:11','2019-01-14 11:24:11'),(954,'english','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:25:28','2019-01-14 11:25:28'),(955,'english','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(956,'commerce','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(957,'accounting','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(958,'government','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(959,'crk','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(960,'civiledu','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(961,'insurance','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(962,'chemistry','73.142.154.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:37:12','2019-01-14 11:37:12'),(963,'chemistry','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:10:52','2019-01-14 14:26:38'),(964,'geography','154.118.29.188',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:50:28','2019-01-14 14:27:52'),(965,'history','154.118.29.188',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:23:24'),(966,'economics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:27:38'),(967,'insurance','154.118.29.188',95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:24:14'),(968,'english','154.118.29.188',71,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:24','2019-01-14 14:25:44'),(969,'crk','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:33','2019-01-14 14:23:40'),(970,'englishlit','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:39','2019-01-14 14:27:06'),(971,'biology','154.118.29.188',77,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:19','2019-01-14 14:25:59'),(972,'accounting','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:21','2019-01-14 14:26:39'),(973,'mathematics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:22','2019-01-14 14:25:10'),(974,'physics','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:27','2019-01-14 14:27:00'),(975,'currentaffairs','154.118.29.188',109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:29','2019-01-14 14:24:12'),(976,'commerce','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:24:22'),(977,'irk','154.118.29.188',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:27:24'),(978,'civiledu','154.118.29.188',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:39','2019-01-14 14:27:37'),(979,'government','154.118.29.188',112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:45','2019-01-14 14:27:52'),(980,'english','105.112.26.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:16:02','2019-01-14 13:16:02'),(981,'physics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:23:47','2019-01-14 13:23:47'),(982,'chemistry','102.176.244.209',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:27:15','2019-01-14 13:27:15'),(983,'englishlit','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:28:42','2019-01-14 13:28:42'),(984,'chemistry','3.82.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:46'),(985,'chemistry','54.221.199.147',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:47'),(986,'english','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:18:34'),(987,'mathematics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(988,'government','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(989,'crk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(990,'economics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(991,'irk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(992,'civiledu','54.83.84.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(993,'insurance','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:41'),(994,'geography','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:09'),(995,'economics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:58','2019-01-14 14:35:25'),(996,'civiledu','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:04','2019-01-14 14:37:40'),(997,'chemistry','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:12','2019-01-14 14:37:32'),(998,'irk','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:34','2019-01-14 14:37:32'),(999,'mathematics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:38','2019-01-14 14:34:17'),(1000,'currentaffairs','41.217.124.252',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:52','2019-01-14 14:36:53'),(1001,'crk','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:59','2019-01-14 14:33:56'),(1002,'physics','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:04','2019-01-14 14:34:57'),(1003,'english','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:10','2019-01-14 14:36:11'),(1004,'accounting','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:16','2019-01-14 14:37:41'),(1005,'commerce','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:24','2019-01-14 14:36:54'),(1006,'government','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:33:56','2019-01-14 14:35:57'),(1007,'englishlit','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:34:57','2019-01-14 14:36:30'),(1008,'accounting','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1009,'physics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1010,'chemistry','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1011,'currentaffairs','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1012,'history','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1013,'biology','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:25','2019-01-14 14:37:26'),(1014,'history','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:36:21','2019-01-14 14:37:39'),(1015,'mathematics','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:40:53','2019-01-14 15:01:48'),(1016,'insurance','154.120.104.84',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:10','2019-01-14 14:59:05'),(1017,'history','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:40','2019-01-14 14:58:06'),(1018,'government','154.120.104.84',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:00:27'),(1019,'currentaffairs','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:37'),(1020,'economics','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:20'),(1021,'civiledu','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:51','2019-01-14 14:59:48'),(1022,'biology','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:58','2019-01-14 15:01:49'),(1023,'chemistry','154.120.104.84',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:04','2019-01-14 15:01:09'),(1024,'englishlit','154.120.104.84',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:05','2019-01-14 15:01:56'),(1025,'commerce','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:07','2019-01-14 15:01:04'),(1026,'crk','154.120.104.84',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1027,'geography','154.120.104.84',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 14:59:41'),(1028,'english','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1029,'irk','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:44:31','2019-01-14 15:01:38'),(1030,'physics','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:46:00','2019-01-14 15:00:40'),(1031,'accounting','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:48:21','2019-01-14 15:01:46'),(1032,'crk','54.224.217.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 15:45:45','2019-01-14 15:45:45'),(1033,'commerce','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:22:40','2019-01-14 16:22:40'),(1034,'history','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:24:24','2019-01-14 16:24:24'),(1035,'chemistry','168.253.115.37',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:46:30','2019-01-14 16:46:30'),(1036,'chemistry','197.242.101.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 17:00:07','2019-01-14 17:00:08'),(1037,'chemistry','105.112.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:34:19','2019-01-14 18:34:19'),(1038,'english','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:33','2019-01-14 18:52:34'),(1039,'chemistry','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:40','2019-01-14 18:52:40'),(1040,'mathematics','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:00','2019-01-14 18:53:01'),(1041,'biology','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:10','2019-01-14 18:53:11'),(1042,'english','218.94.63.46',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1043,'english','218.94.63.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:03'),(1044,'economics','218.94.63.46',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1045,'english','197.211.61.152',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 03:35:57','2019-01-15 03:36:17'),(1046,'chemistry','154.118.16.190',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:40:00'),(1047,'chemistry','154.118.16.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:39:18'),(1048,'chemistry','105.112.37.149',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:48:36','2019-01-15 10:57:07'),(1049,'economics','105.112.37.149',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:50:17','2019-01-15 15:03:40'),(1050,'commerce','41.222.43.114',164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:59:58','2019-01-15 14:58:39'),(1051,'currentaffairs','41.222.43.114',176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:04','2019-01-15 14:59:14'),(1052,'accounting','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:13','2019-01-15 14:57:38'),(1053,'history','41.222.43.114',156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:17','2019-01-15 14:58:14'),(1054,'crk','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:27','2019-01-15 14:56:43'),(1055,'irk','41.222.43.114',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:33','2019-01-15 14:59:08'),(1056,'economics','41.222.43.114',171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:38','2019-01-15 14:57:48'),(1057,'mathematics','41.222.43.114',147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:48','2019-01-15 14:58:28'),(1058,'physics','41.222.43.114',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:58','2019-01-15 14:56:23'),(1059,'civiledu','41.222.43.114',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:03','2019-01-15 14:58:33'),(1060,'english','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:19','2019-01-15 14:58:49'),(1061,'insurance','41.222.43.114',178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:33','2019-01-15 14:59:03'),(1062,'government','41.222.43.114',170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:48','2019-01-15 14:58:58'),(1063,'chemistry','41.222.43.114',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:58','2019-01-15 14:58:44'),(1064,'geography','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:04','2019-01-15 14:53:49'),(1065,'biology','41.222.43.114',149,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:13','2019-01-15 14:55:33'),(1066,'englishlit','41.222.43.114',166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:03:14','2019-01-15 14:58:08'),(1067,'chemistry','197.210.45.97',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:04:32','2019-01-15 11:04:46'),(1068,'economics','197.210.45.97',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:15:28','2019-01-15 11:40:03'),(1069,'biology','197.210.45.97',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:17:50','2019-01-15 11:18:29'),(1070,'chemistry','169.159.108.237',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:25:31','2019-01-15 11:25:31'),(1071,'chemistry','129.18.141.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:50:09','2019-01-15 11:50:09'),(1072,'english','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:29','2019-01-15 12:33:29'),(1073,'mathematics','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:44','2019-01-15 12:33:45'),(1074,'chemistry','154.117.120.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:34:24','2019-01-15 12:34:24'),(1075,'englishlit','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:46','2019-01-15 13:57:08'),(1076,'crk','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:47','2019-01-15 13:56:49'),(1077,'accounting','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:48','2019-01-15 13:57:48'),(1078,'history','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:58','2019-01-15 13:56:58'),(1079,'mathematics','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:03','2019-01-15 13:57:03'),(1080,'economics','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:13','2019-01-15 13:57:28'),(1081,'geography','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:18','2019-01-15 13:57:18'),(1082,'chemistry','41.184.122.84',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-15 13:57:23','2019-11-12 12:30:51'),(1083,'biology','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:33','2019-01-15 13:57:53'),(1084,'insurance','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:38','2019-01-15 13:58:43'),(1085,'civiledu','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:43','2019-01-15 13:58:53'),(1086,'irk','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:58','2019-01-15 13:57:58'),(1087,'physics','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:03','2019-01-15 13:58:48'),(1088,'currentaffairs','41.184.122.84',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:13','2019-01-15 13:58:38'),(1089,'commerce','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:33','2019-01-15 13:58:33'),(1090,'english','41.217.112.165',595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:13:18','2019-01-15 18:35:09'),(1091,'mathematics','41.217.112.165',682,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:37:42','2019-01-15 20:35:48'),(1092,'mathematics','154.118.11.179',218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:09:53','2019-01-15 21:33:28'),(1093,'mathematics','105.112.19.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:11:19','2019-01-15 20:11:19'),(1094,'chemistry','154.118.11.179',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:00:39','2019-01-15 21:00:39'),(1095,'english','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1096,'commerce','54.211.194.179',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1097,'biology','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1098,'chemistry','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1099,'accounting','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1100,'physics','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1101,'englishlit','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1102,'geography','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1103,'government','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1104,'civiledu','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1105,'currentaffairs','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1106,'crk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1107,'history','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1108,'economics','54.211.194.179',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1109,'irk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1110,'english','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1111,'mathematics','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1112,'commerce','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1113,'biology','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1114,'englishlit','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1115,'government','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1116,'history','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1117,'accounting','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1118,'crk','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1119,'economics','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1120,'civiledu','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1121,'insurance','54.90.226.10',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1122,'chemistry','105.112.18.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:40:38','2019-01-16 06:40:39'),(1123,'chemistry','105.112.26.11',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:57:01','2019-01-16 06:57:01'),(1124,'english','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:11:18','2019-01-16 08:11:18'),(1125,'economics','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:12:44','2019-01-16 08:12:44'),(1126,'government','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:37:13','2019-01-16 08:37:13'),(1127,'commerce','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1128,'accounting','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1129,'physics','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1130,'geography','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1131,'civiledu','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1132,'insurance','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1133,'history','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1134,'english','54.235.31.132',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 10:26:39','2019-01-16 10:26:39'),(1135,'government','54.90.239.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:30:56','2019-01-16 12:30:56'),(1136,'economics','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:34:56','2019-01-16 12:34:57'),(1137,'insurance','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:48:13','2019-01-16 13:48:13'),(1138,'civiledu','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:55:55','2019-01-16 13:55:55'),(1139,'government','54.226.242.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 15:41:22','2019-01-16 15:41:22'),(1140,'economics','197.210.64.25',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:45:11','2019-01-16 16:54:28'),(1141,'chemistry','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:58:41','2019-01-16 16:58:53'),(1142,'mathematics','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:59:05','2019-01-16 17:07:06'),(1143,'mathematics','41.138.87.73',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 17:49:50','2019-01-16 17:53:24'),(1144,'chemistry','173.225.16.67',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 18:43:39','2019-01-19 04:12:25'),(1145,'commerce','34.207.210.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 19:50:10','2019-01-16 19:50:29'),(1146,'biology','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 20:40:19','2019-01-16 20:40:19'),(1147,'chemistry','41.138.81.104',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:39:14','2019-01-16 21:39:58'),(1148,'history','41.138.81.104',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:40:15','2019-01-16 21:41:27'),(1149,'accounting','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 22:44:31','2019-01-16 22:44:31'),(1150,'mathematics','3.83.38.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 04:39:27','2019-01-17 04:39:27'),(1151,'english','102.176.244.209',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 13:44:54','2019-01-21 11:05:17'),(1152,'chemistry','197.255.52.86',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:42:55','2019-01-17 14:43:15'),(1153,'accounting','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1154,'physics','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1155,'chemistry','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1156,'englishlit','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1157,'government','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1158,'geography','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1159,'insurance','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1160,'biology','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1161,'crk','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1162,'civiledu','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1163,'chemistry','68.13.248.93',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 02:01:44','2019-01-18 02:02:05'),(1164,'chemistry','72.183.76.77',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 03:28:05','2019-01-18 03:29:19'),(1165,'chemistry','197.211.61.152',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 07:10:31','2019-01-18 07:12:13'),(1166,'biology','54.162.164.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 09:21:43','2019-01-18 09:21:43'),(1167,'chemistry','105.112.112.103',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:18:21','2019-01-18 10:19:31'),(1168,'chemistry','197.210.221.158',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:20:34','2019-01-18 10:21:00'),(1169,'chemistry','165.73.192.11',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:30:28','2019-01-18 10:30:38'),(1170,'chemistry','197.210.47.116',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:39:50','2020-04-21 15:26:10'),(1171,'history','66.249.93.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 11:29:27','2019-01-18 11:29:27'),(1172,'chemistry','154.118.20.163',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:12:36','2019-01-18 12:12:36'),(1173,'chemistry','129.56.80.136',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:13:30','2019-01-18 12:14:17'),(1174,'mathematics','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:14:30','2019-01-18 12:14:30'),(1175,'english','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:15:08','2019-01-18 12:15:09'),(1176,'history','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:34:02','2019-01-18 13:34:02'),(1177,'mathematics','41.203.72.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:35:18','2019-01-18 13:35:19'),(1178,'english','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:46:36','2019-01-18 13:46:36'),(1179,'chemistry','41.191.104.66',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:54:05','2019-01-18 13:54:05'),(1180,'chemistry','72.182.201.96',96,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 14:53:27','2019-01-18 14:54:54'),(1181,'chemistry','66.249.73.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:35:04','2019-01-18 16:35:04'),(1182,'commerce','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1183,'physics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1184,'chemistry','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1185,'englishlit','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1186,'geography','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1187,'crk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1188,'irk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:38'),(1189,'currentaffairs','54.211.126.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1190,'civiledu','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1191,'history','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1192,'insurance','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1193,'biology','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:40:42'),(1194,'government','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:38'),(1195,'economics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:47'),(1196,'english','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1197,'accounting','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1198,'mathematics','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:40:42','2019-01-18 16:40:42'),(1199,'crk','54.161.130.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 17:33:33','2019-01-18 17:33:33'),(1200,'chemistry','102.134.114.214',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 20:59:05','2019-01-18 20:59:42'),(1201,'government','54.227.72.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 22:16:13','2019-01-18 22:16:13'),(1202,'government','54.91.120.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 01:06:53','2019-01-19 01:06:53'),(1203,'accounting','54.227.122.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 04:33:38','2019-01-19 04:33:38'),(1204,'commerce','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1205,'physics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1206,'government','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1207,'geography','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1208,'economics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1209,'irk','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1210,'civiledu','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1211,'crk','54.221.144.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:40:28','2019-01-19 07:40:28'),(1212,'chemistry','129.56.27.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 09:08:03','2019-01-19 09:08:03'),(1213,'chemistry','142.120.136.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 10:20:14','2019-01-19 10:20:14'),(1214,'chemistry','178.5.57.197',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 11:52:36','2019-01-19 11:54:27'),(1215,'chemistry','163.172.103.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 12:08:33','2019-01-19 12:08:33'),(1216,'chemistry','41.190.2.147',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:15:10','2019-01-19 13:19:19'),(1217,'chemistry','105.176.145.237',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:26:28','2019-01-19 13:31:47'),(1218,'biology','105.176.145.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:33:44','2019-01-19 13:33:44'),(1219,'english','197.211.61.157',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 17:04:45','2019-01-19 17:04:45'),(1220,'english','54.162.8.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:40:29','2019-01-19 20:40:29'),(1221,'mathematics','51.15.164.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:50:22','2019-01-19 20:50:22'),(1222,'history','66.249.88.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:16:25','2019-01-20 07:16:25'),(1223,'history','66.249.93.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:27:21','2019-01-20 07:27:21'),(1224,'chemistry','197.210.29.161',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 11:59:53','2019-01-20 12:02:04'),(1225,'english','54.87.9.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 15:47:38','2019-01-20 15:47:38'),(1226,'chemistry','66.249.66.148',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 17:41:21','2019-01-20 17:44:12'),(1227,'chemistry','46.229.168.129',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-20 18:19:28','2020-03-16 03:20:32'),(1228,'english','54.205.83.37',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1229,'mathematics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1230,'government','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1231,'accounting','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1232,'geography','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1233,'crk','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1234,'economics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1235,'economics','54.205.83.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1236,'civiledu','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1237,'insurance','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1238,'currentaffairs','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1239,'history','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1240,'history','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:05:55','2019-01-21 05:05:55'),(1241,'mathematics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1242,'commerce','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1243,'physics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1244,'englishlit','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1245,'geography','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1246,'economics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1247,'currentaffairs','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1248,'english','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1249,'biology','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1250,'chemistry','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1251,'crk','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1252,'history','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1253,'chemistry','41.190.3.176',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 08:43:52','2019-01-21 08:49:54'),(1254,'chemistry','41.191.104.112',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 13:29:06','2019-02-11 14:20:17'),(1255,'chemistry','197.210.226.53',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:14:04','2019-01-21 17:18:25'),(1256,'chemistry','197.210.226.64',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:19:47','2019-01-21 17:49:54'),(1257,'chemistry','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:21:23','2019-01-21 17:21:23'),(1258,'mathematics','197.210.227.233',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:29:23','2019-01-21 17:29:23'),(1259,'mathematics','197.210.226.64',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:48:04','2019-05-25 14:23:44'),(1260,'chemistry','197.210.52.70',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 18:43:18','2019-01-26 10:26:21'),(1261,'mathematics','105.112.23.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 23:50:11','2019-01-21 23:50:11'),(1262,'chemistry','41.191.104.126',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 12:07:26','2019-01-22 12:13:11'),(1263,'chemistry','105.112.27.156',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:30:44','2019-01-22 13:33:01'),(1264,'english','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:36','2019-01-22 13:33:36'),(1265,'commerce','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:56','2019-01-22 13:33:56'),(1266,'mathematics','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:34:19','2019-01-22 13:34:19'),(1267,'english','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1268,'accounting','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1269,'government','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1270,'civiledu','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1271,'insurance','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1272,'currentaffairs','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1273,'history','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1274,'chemistry','41.191.107.133',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:40:08','2019-01-22 14:40:08'),(1275,'chemistry','41.191.107.216',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 15:11:15','2019-04-12 06:41:44'),(1276,'chemistry','41.191.107.208',154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 16:28:30','2019-01-22 16:33:44'),(1277,'biology','54.147.167.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:04:47','2019-01-22 18:04:47'),(1278,'insurance','54.81.167.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:45:46','2019-01-22 18:45:46'),(1279,'biology','197.211.61.167',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 19:57:02','2019-01-22 19:57:02'),(1280,'commerce','3.81.140.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 20:21:37','2019-01-22 20:21:37'),(1281,'chemistry','41.191.104.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:21:52','2019-01-22 21:21:52'),(1282,'chemistry','41.191.104.124',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:28:37','2019-01-27 21:27:34'),(1283,'englishlit','54.172.206.195',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:57:00','2019-01-22 21:57:00'),(1284,'chemistry','197.211.60.92',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 02:17:56','2019-01-23 02:20:31'),(1285,'chemistry','66.249.93.42',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 04:09:58','2019-02-14 14:08:04'),(1286,'chemistry','41.191.107.155',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 10:14:34','2019-01-23 10:14:45'),(1287,'chemistry','41.191.104.86',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 12:43:27','2019-01-23 12:43:27'),(1288,'chemistry','41.191.107.198',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:01:14','2019-01-23 13:08:26'),(1289,'chemistry','41.191.104.249',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:08:39','2019-01-23 13:15:36'),(1290,'mathematics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1291,'english','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1292,'biology','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1293,'commerce','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1294,'physics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1295,'englishlit','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1296,'chemistry','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1297,'government','54.162.153.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1298,'irk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1299,'crk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1300,'geography','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1301,'civiledu','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1302,'currentaffairs','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1303,'economics','212.100.95.210',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:14:58','2019-01-24 08:14:59'),(1304,'chemistry','66.249.93.44',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:24:17','2019-02-04 14:03:36'),(1305,'english','41.191.107.227',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:51:56','2019-01-24 09:52:02'),(1306,'chemistry','41.191.107.227',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 09:32:48','2019-01-24 09:34:19'),(1307,'english','41.191.107.206',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 10:03:24','2019-04-18 16:27:25'),(1308,'english','41.217.124.194',937,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 12:30:40','2019-01-24 13:11:10'),(1309,'mathematics','41.217.124.194',363,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 13:22:56','2019-01-24 13:37:40'),(1310,'commerce','54.91.221.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:05:23','2019-01-24 14:05:23'),(1311,'english','41.191.107.138',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:21:11','2019-04-14 17:04:58'),(1312,'chemistry','41.191.107.138',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:33:41','2019-01-27 21:20:19'),(1313,'commerce','41.217.124.194',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:39:06','2019-01-24 14:39:31'),(1314,'english','41.191.104.91',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:49:01','2019-04-15 21:32:14'),(1315,'mathematics','41.191.104.91',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 15:18:28','2019-04-15 21:20:52'),(1316,'history','3.82.242.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 00:01:01','2019-01-25 00:01:01'),(1317,'englishlit','54.82.44.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:01:01','2019-01-25 04:01:01'),(1318,'chemistry','105.112.96.148',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:45:44','2019-01-25 04:45:44'),(1319,'chemistry','41.190.2.209',15,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 05:44:24','2019-09-18 16:51:41'),(1320,'chemistry','197.210.8.9',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 06:10:55','2019-01-25 08:35:26'),(1321,'history','54.161.164.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 08:01:07','2019-01-25 08:01:07'),(1322,'chemistry','197.210.60.170',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:01:12','2019-01-25 11:01:12'),(1323,'english','197.210.60.170',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:04:07','2019-01-25 11:07:03'),(1324,'chemistry','41.190.30.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:53:49','2019-01-25 11:53:49'),(1325,'biology','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:35:12','2019-01-25 14:35:38'),(1326,'englishlit','41.190.31.164',116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:41:44','2019-01-25 14:56:06'),(1327,'chemistry','197.210.52.237',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:07','2019-01-25 14:51:53'),(1328,'chemistry','197.210.52.239',162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:30','2019-01-25 14:52:22'),(1329,'chemistry','197.210.52.138',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:52:01','2019-01-25 14:52:32'),(1330,'government','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:53:59','2019-01-25 14:53:59'),(1331,'chemistry','197.210.44.60',2108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:58:41','2019-01-25 16:28:06'),(1332,'commerce','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:08:21','2019-01-25 15:08:21'),(1333,'accounting','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:09:36','2019-01-25 15:10:08'),(1334,'crk','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:11:50','2019-01-25 15:12:13'),(1335,'economics','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:16:03','2019-01-25 15:16:03'),(1336,'chemistry','185.118.165.15',126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:21:37','2019-01-25 15:27:32'),(1337,'chemistry','105.112.38.7',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:49:44','2019-01-25 20:14:22'),(1338,'mathematics','105.112.38.7',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:55:45','2019-01-25 20:02:25'),(1339,'english','105.112.38.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:12:22','2019-01-25 20:12:23'),(1340,'chemistry','105.112.98.242',1160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:23:43','2019-01-25 22:04:17'),(1341,'chemistry','197.210.62.66',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 22:14:16','2019-04-19 16:33:37'),(1342,'chemistry','197.210.226.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:16:32','2019-01-26 10:16:32'),(1343,'chemistry','197.210.52.4',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:20:35','2019-01-26 10:38:06'),(1344,'chemistry','197.210.45.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:38:39','2019-01-26 10:40:16'),(1345,'chemistry','197.210.227.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:58:13','2019-01-26 10:58:13'),(1346,'mathematics','197.210.227.236',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:08:55','2019-01-26 11:32:01'),(1347,'mathematics','197.210.227.193',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:10:35','2019-01-26 11:45:54'),(1348,'mathematics','197.210.226.194',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:17:53','2019-01-26 11:44:49'),(1349,'mathematics','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:47:35','2019-01-26 11:51:16'),(1350,'mathematics','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:48:03','2019-01-26 11:48:03'),(1351,'mathematics','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:50:09','2019-01-26 11:50:10'),(1352,'mathematics','54.161.51.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:52:23','2019-01-26 11:52:23'),(1353,'english','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:34:52','2019-01-26 12:34:53'),(1354,'english','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:39:32','2019-01-26 12:39:33'),(1355,'english','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:41:59','2019-01-26 12:47:45'),(1356,'english','197.210.8.2',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:13:52','2019-01-26 13:40:15'),(1357,'english','197.210.28.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:55:37','2019-01-26 13:58:04'),(1358,'english','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:08:24','2019-01-26 14:08:24'),(1359,'english','197.210.52.84',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:09:01','2019-01-26 14:15:02'),(1360,'english','197.210.52.208',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:10:08','2019-01-26 14:11:18'),(1361,'chemistry','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:16:42','2019-01-26 14:16:43'),(1362,'chemistry','197.210.52.208',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:20:31','2019-01-26 14:50:18'),(1363,'chemistry','197.210.52.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:45:38','2019-01-26 14:45:39'),(1364,'chemistry','197.210.47.74',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:53:11','2019-01-26 15:07:24'),(1365,'chemistry','105.112.98.2',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:41:26','2019-01-26 16:41:29'),(1366,'biology','41.203.78.47',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:56:45','2019-01-26 16:56:45'),(1367,'chemistry','105.112.98.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 09:04:09','2019-01-27 09:04:09'),(1368,'chemistry','105.112.99.102',833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:41:18','2019-01-27 19:46:51'),(1369,'biology','105.112.99.102',778,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:37','2019-01-27 19:46:51'),(1370,'physics','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1371,'economics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1372,'commerce','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:34'),(1373,'crk','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:37'),(1374,'mathematics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:44'),(1375,'english','105.112.99.102',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:46:51'),(1376,'geography','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:47:37'),(1377,'government','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:43','2019-01-27 19:47:37'),(1378,'accounting','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:45','2019-01-27 19:47:40'),(1379,'history','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:46','2019-01-27 19:43:54'),(1380,'englishlit','105.112.99.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:47:38'),(1381,'currentaffairs','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:48:50'),(1382,'civiledu','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:14:14','2019-01-27 19:47:37'),(1383,'mathematics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1384,'chemistry','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1385,'biology','105.112.98.183',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1386,'physics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1387,'english','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1388,'economics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1389,'commerce','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1390,'crk','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1391,'geography','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1392,'civiledu','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1393,'government','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1394,'englishlit','105.112.98.183',518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1395,'accounting','105.112.98.183',519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1396,'currentaffairs','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1397,'history','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:43','2019-01-27 21:21:57'),(1398,'chemistry','41.191.104.92',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:53:33','2019-01-27 20:54:45'),(1399,'biology','41.191.104.92',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:55:04','2019-01-27 20:55:04'),(1400,'chemistry','41.191.104.121',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:01:54','2019-02-06 15:11:52'),(1401,'mathematics','41.191.107.223',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:14:36','2019-04-16 11:16:36'),(1402,'mathematics','41.191.107.138',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:19:15','2019-04-13 21:33:36'),(1403,'physics','41.191.107.138',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:20:04','2019-01-27 21:23:56'),(1404,'mathematics','41.191.104.124',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:26:45','2019-01-27 21:34:02'),(1405,'physics','41.191.104.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:27:11','2019-01-27 21:27:24'),(1406,'biology','41.191.104.74',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:07:34','2019-01-27 22:12:08'),(1407,'biology','41.191.107.130',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:13:49','2019-01-27 22:13:59'),(1408,'biology','41.191.104.244',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:46:09','2019-01-27 22:46:50'),(1409,'biology','41.191.107.128',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:56:46','2019-01-27 23:56:03'),(1410,'chemistry','41.191.107.128',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:55:10','2019-01-27 23:55:51'),(1411,'economics','41.191.107.128',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:56:39','2019-01-27 23:56:41'),(1412,'geography','41.191.107.128',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:57:14','2019-01-28 15:11:27'),(1413,'biology','41.191.104.89',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:59:44'),(1414,'biology','41.191.104.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:51:19'),(1415,'biology','41.191.104.121',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:55:36','2019-01-28 00:56:31'),(1416,'chemistry','41.191.104.89',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:58:40','2019-01-28 09:07:28'),(1417,'biology','41.191.104.85',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:08:49','2019-01-28 01:15:07'),(1418,'biology','41.191.107.221',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:27:22','2019-01-28 01:29:30'),(1419,'biology','41.191.107.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:33:26','2019-01-28 01:33:26'),(1420,'biology','41.191.104.235',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:48:38','2019-01-28 01:48:38'),(1421,'mathematics','41.191.107.235',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:55:16','2019-01-28 09:02:13'),(1422,'chemistry','41.191.107.235',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:56:12','2019-01-28 08:59:29'),(1423,'mathematics','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:03:14','2019-01-28 09:03:14'),(1424,'physics','41.191.107.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:04:58','2019-01-28 09:04:58'),(1425,'mathematics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:50','2019-01-28 09:08:18'),(1426,'physics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:54','2019-01-28 09:08:18'),(1427,'geography','41.191.104.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:07:07','2019-01-28 09:08:12'),(1428,'chemistry','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:36:06','2019-01-28 10:36:06'),(1429,'english','41.191.107.141',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:49:24','2019-01-28 10:51:33'),(1430,'chemistry','46.229.168.149',23,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-28 11:21:50','2019-12-12 15:32:00'),(1431,'english','3.87.136.203',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:28:02','2019-01-28 14:24:49'),(1432,'englishlit','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:41:29','2019-01-28 11:41:29'),(1433,'mathematics','41.191.107.194',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:14','2019-01-28 12:06:41'),(1434,'chemistry','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:20','2019-01-28 12:01:32'),(1435,'physics','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:50','2019-01-28 12:03:12'),(1436,'geography','41.191.107.194',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:52:52','2019-01-28 12:03:18'),(1437,'chemistry','41.191.104.251',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:08:23','2019-01-28 12:09:42'),(1438,'physics','41.191.107.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:22:50','2019-01-28 12:22:50'),(1439,'physics','41.191.104.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:14','2019-01-28 12:29:14'),(1440,'chemistry','41.191.104.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:28','2019-01-28 12:32:08'),(1441,'mathematics','41.191.104.83',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:30:25','2019-01-28 12:34:16'),(1442,'mathematics','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:35:42','2019-01-28 12:56:25'),(1443,'geography','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:40:50','2019-01-28 12:52:24'),(1444,'chemistry','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:02','2019-01-28 13:03:30'),(1445,'physics','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:08','2019-01-28 12:53:41'),(1446,'geography','41.191.104.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:04:49','2019-01-28 13:17:51'),(1447,'mathematics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:08:42','2019-04-13 07:20:19'),(1448,'physics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:12:38','2019-01-28 13:14:17'),(1449,'chemistry','41.191.104.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:16:02','2019-01-28 13:16:02'),(1450,'geography','41.191.104.104',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:24','2019-01-28 13:30:58'),(1451,'chemistry','41.191.104.104',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:32','2019-01-28 13:28:22'),(1452,'physics','41.191.104.104',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:20:17','2019-01-28 13:22:40'),(1453,'chemistry','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:33:01','2019-01-28 13:35:54'),(1454,'physics','41.191.107.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:35:11','2019-01-28 13:40:07'),(1455,'mathematics','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:36:00','2019-01-28 13:41:19'),(1456,'mathematics','41.191.107.42',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:39','2019-01-28 13:53:09'),(1457,'chemistry','41.191.107.42',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:55','2019-02-06 14:53:26'),(1458,'geography','41.191.107.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:43:17','2019-01-28 13:43:17'),(1459,'physics','41.191.107.139',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:57:59','2019-01-28 14:02:46'),(1460,'chemistry','41.191.107.139',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:06','2019-01-28 14:04:13'),(1461,'mathematics','41.191.107.139',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:21','2019-01-28 14:04:17'),(1462,'geography','41.191.107.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:01:42','2019-01-28 14:01:42'),(1463,'mathematics','41.191.104.126',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:04:59','2019-04-13 16:07:19'),(1464,'physics','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:05:50','2019-01-28 14:06:23'),(1465,'biology','3.87.136.203',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:26:19','2019-01-28 14:28:08'),(1466,'mathematics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:18','2019-01-28 14:27:18'),(1467,'physics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:22','2019-01-28 14:27:22'),(1468,'chemistry','41.191.107.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:30:58','2019-01-28 14:30:58'),(1469,'physics','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:45','2019-01-28 14:40:48'),(1470,'chemistry','41.191.107.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:52','2019-01-28 14:40:52'),(1471,'chemistry','41.191.107.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:53:59','2019-01-28 14:53:59'),(1472,'mathematics','41.191.104.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:04','2019-01-28 15:06:48'),(1473,'physics','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:27','2019-01-28 15:00:27'),(1474,'chemistry','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:33','2019-01-28 15:00:33'),(1475,'geography','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:38','2019-01-28 15:00:38'),(1476,'mathematics','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:03:29','2019-01-28 15:08:10'),(1477,'physics','105.176.90.140',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:02','2019-01-28 15:18:49'),(1478,'chemistry','105.176.90.140',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:37','2019-01-28 15:04:37'),(1479,'geography','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:52','2019-01-28 15:08:28'),(1480,'mathematics','41.191.107.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:05:29','2019-01-28 15:08:01'),(1481,'physics','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:08:08','2019-01-28 15:08:08'),(1482,'mathematics','41.191.107.128',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:10:31','2019-01-28 15:10:39'),(1483,'physics','41.191.104.241',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:14','2019-01-28 15:28:02'),(1484,'chemistry','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:51','2019-01-28 15:27:55'),(1485,'mathematics','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:51','2019-01-28 15:28:09'),(1486,'geography','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:57','2019-01-28 15:28:35'),(1487,'geography','41.191.104.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:30:25','2019-01-28 15:32:10'),(1488,'mathematics','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:31:56','2019-01-28 15:31:56'),(1489,'physics','41.191.104.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:00','2019-01-28 15:32:07'),(1490,'chemistry','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:04','2019-01-28 15:32:04'),(1491,'physics','41.191.104.121',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:49:37','2019-02-06 14:58:19'),(1492,'geography','41.191.104.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:43','2019-01-28 15:58:43'),(1493,'geography','41.191.104.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:53','2019-01-28 15:58:53'),(1494,'chemistry','197.210.47.34',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 21:35:41','2019-01-28 21:40:22'),(1495,'chemistry','41.203.78.54',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 22:07:08','2019-07-20 14:00:13'),(1496,'chemistry','105.112.28.85',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 02:40:05','2019-01-29 02:40:42'),(1497,'chemistry','41.190.2.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 07:03:46','2019-01-29 07:03:46'),(1498,'chemistry','41.76.82.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 09:57:24','2019-01-29 09:57:24'),(1499,'english','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1500,'mathematics','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1501,'commerce','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1502,'englishlit','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1503,'crk','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1504,'geography','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1505,'insurance','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1506,'biology','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1507,'chemistry','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1508,'economics','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1509,'civiledu','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1510,'chemistry','41.203.78.51',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 13:55:15','2019-01-29 14:10:57'),(1511,'chemistry','154.120.108.55',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:17:52','2019-01-29 14:29:07'),(1512,'chemistry','154.118.21.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:37:44','2019-01-29 14:38:42'),(1513,'chemistry','197.210.28.128',997,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:55:16','2019-01-29 16:55:38'),(1514,'chemistry','197.210.53.210',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:47:02','2019-01-29 18:06:59'),(1515,'chemistry','197.210.52.103',295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:49:25','2019-01-29 18:50:59'),(1516,'chemistry','197.210.53.88',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:56:42','2019-01-29 17:56:42'),(1517,'chemistry','197.210.53.26',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:09:55','2019-01-29 18:22:46'),(1518,'chemistry','197.210.53.74',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:10:35','2019-01-29 18:10:35'),(1519,'chemistry','197.210.52.203',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:16:48','2019-02-06 16:04:53'),(1520,'chemistry','197.210.52.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:35:19','2019-01-29 18:39:12'),(1521,'chemistry','197.210.52.202',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:43:20','2019-02-06 16:09:29'),(1522,'chemistry','197.210.53.106',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:44:33','2019-01-29 18:45:54'),(1523,'chemistry','197.210.53.114',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:19','2019-04-20 15:08:50'),(1524,'chemistry','197.210.52.185',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:40','2019-01-29 18:51:44'),(1525,'chemistry','197.210.52.26',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:51:14','2019-01-29 18:51:36'),(1526,'englishlit','197.211.63.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:31:42','2019-01-29 20:31:42'),(1527,'chemistry','197.210.227.126',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:25','2019-01-29 20:32:25'),(1528,'chemistry','197.210.227.15',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:43','2019-01-29 20:32:43'),(1529,'chemistry','197.210.226.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:01','2019-01-29 20:37:21'),(1530,'chemistry','197.210.227.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:27','2019-01-29 20:36:27'),(1531,'mathematics','41.203.78.49',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:41:06','2019-01-29 20:41:06'),(1532,'crk','41.80.186.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 09:20:34','2019-01-30 09:20:34'),(1533,'biology','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:38','2019-01-30 15:50:53'),(1534,'commerce','54.211.28.234',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1535,'accounting','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1536,'crk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1537,'geography','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1538,'irk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1539,'insurance','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1540,'englishlit','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:56','2019-01-30 15:52:40'),(1541,'history','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:07','2019-01-30 15:51:07'),(1542,'government','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:09','2019-01-30 15:51:09'),(1543,'physics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1544,'economics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1545,'currentaffairs','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:40'),(1546,'english','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1547,'mathematics','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1548,'chemistry','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1549,'englishlit','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:16','2019-01-30 16:51:35'),(1550,'commerce','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:27'),(1551,'biology','54.226.7.228',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:34'),(1552,'geography','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1553,'civiledu','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1554,'currentaffairs','54.226.7.228',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1555,'history','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1556,'government','54.226.7.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1557,'english','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1558,'mathematics','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1559,'chemistry','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1560,'crk','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1561,'chemistry','41.216.173.30',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 16:01:01','2019-01-31 16:03:23'),(1562,'chemistry','45.33.136.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 23:43:59','2019-01-31 23:44:26'),(1563,'chemistry','41.203.78.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:52:42','2019-02-01 07:52:42'),(1564,'chemistry','197.210.53.198',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:55:26','2019-02-01 07:56:02'),(1565,'chemistry','197.210.53.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:57:16','2019-02-01 07:57:16'),(1566,'chemistry','45.33.136.190',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:27:53','2019-02-01 08:31:16'),(1567,'chemistry','197.211.60.139',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:43:16','2019-02-01 08:45:06'),(1568,'mathematics','197.211.60.139',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:45:55','2019-02-01 08:45:55'),(1569,'chemistry','197.210.29.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 09:32:41','2019-02-01 09:32:41'),(1570,'chemistry','105.112.98.24',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-02 22:45:13','2019-02-02 23:25:03'),(1571,'civiledu','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 20:57:22','2019-02-03 20:57:22'),(1572,'currentaffairs','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 21:10:15','2019-02-03 21:10:15'),(1573,'accounting','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1574,'chemistry','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1575,'crk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1576,'geography','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1577,'irk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1578,'insurance','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1579,'currentaffairs','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1580,'chemistry','41.66.199.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:36:31','2019-02-03 23:09:20'),(1581,'biology','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:54:09','2019-02-03 22:54:09'),(1582,'commerce','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 23:10:29','2019-02-03 23:10:29'),(1583,'geography','3.81.102.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 00:57:31','2019-02-04 00:57:31'),(1584,'mathematics','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1585,'commerce','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1586,'chemistry','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1587,'irk','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1588,'civiledu','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1589,'currentaffairs','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1590,'history','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1591,'commerce','54.162.226.75',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 23:35:46','2019-02-04 23:35:46'),(1592,'crk','54.162.82.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:35:33','2019-02-05 05:43:58'),(1593,'accounting','54.162.82.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:50:40','2019-02-05 05:50:40'),(1594,'history','54.90.106.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 07:25:12','2019-02-05 07:25:12'),(1595,'accounting','54.91.82.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 11:33:57','2019-02-05 11:33:57'),(1596,'chemistry','77.88.47.65',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-05 11:57:00','2020-03-07 02:21:05'),(1597,'geography','54.204.118.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 12:42:45','2019-02-05 12:42:45'),(1598,'chemistry','95.216.6.46',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 14:24:43','2019-02-05 14:25:02'),(1599,'geography','54.234.119.237',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 17:21:12','2019-02-05 17:21:12'),(1600,'irk','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 22:54:06','2019-02-05 22:54:06'),(1601,'chemistry','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 23:25:31','2019-02-05 23:25:31'),(1602,'accounting','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1603,'biology','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:23:05'),(1604,'physics','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1605,'chemistry','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1606,'geography','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1607,'economics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1608,'civiledu','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1609,'english','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1610,'mathematics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1611,'englishlit','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:51'),(1612,'government','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1613,'history','54.159.117.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:56','2019-02-06 01:22:56'),(1614,'physics','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:32:08'),(1615,'geography','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1616,'physics','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1617,'mathematics','41.191.104.236',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:50','2019-04-14 05:45:01'),(1618,'chemistry','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:33:26','2019-02-06 10:35:49'),(1619,'chemistry','41.191.107.136',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:04','2019-02-07 10:43:21'),(1620,'mathematics','41.191.107.136',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:11','2019-04-14 16:53:02'),(1621,'geography','41.191.107.136',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:15','2019-02-07 10:13:16'),(1622,'physics','41.191.107.136',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:40:28','2019-02-07 11:01:08'),(1623,'chemistry','41.191.107.212',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:49:30','2019-04-18 18:00:20'),(1624,'physics','41.191.107.212',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:34','2019-04-17 10:11:06'),(1625,'geography','41.191.107.212',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:44','2019-02-06 13:24:41'),(1626,'mathematics','41.191.107.212',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:49','2019-04-17 10:14:28'),(1627,'chemistry','41.191.107.52',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:54:59','2019-02-06 10:55:38'),(1628,'chemistry','41.191.104.115',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 11:10:51','2019-02-06 11:10:51'),(1629,'civiledu','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:13:06','2019-02-06 12:13:06'),(1630,'currentaffairs','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:35:08','2019-02-06 12:35:08'),(1631,'mathematics','41.191.107.220',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:39:15'),(1632,'mathematics','41.191.107.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:38:11'),(1633,'chemistry','41.191.107.220',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:02','2019-02-06 13:44:46'),(1634,'physics','41.191.107.220',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:55','2019-02-06 13:42:33'),(1635,'chemistry','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:03','2019-02-06 13:58:11'),(1636,'geography','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:46','2019-02-06 13:47:46'),(1637,'physics','41.191.104.99',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:51:59','2019-02-06 13:57:37'),(1638,'mathematics','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:56:24','2019-04-13 23:06:19'),(1639,'physics','41.191.107.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 14:43:26','2019-02-06 16:44:44'),(1640,'chemistry','54.221.129.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:09:36','2019-02-06 15:40:30'),(1641,'mathematics','41.191.104.121',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:15:51','2019-02-06 15:15:51'),(1642,'mathematics','41.191.104.217',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:29:45','2019-02-06 15:52:46'),(1643,'mathematics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1644,'biology','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1645,'physics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1646,'government','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1647,'economics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1648,'insurance','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1649,'chemistry','41.191.104.217',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:53:35','2019-02-06 15:55:08'),(1650,'chemistry','197.210.52.163',51,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:59:16','2020-04-12 16:16:23'),(1651,'chemistry','197.210.52.177',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:02:47','2019-02-06 16:09:41'),(1652,'chemistry','197.210.52.125',42,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:03:44','2019-11-29 22:14:03'),(1653,'chemistry','197.210.52.1',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:12','2019-02-06 16:04:36'),(1654,'chemistry','41.191.104.76',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:57','2019-02-06 16:04:57'),(1655,'mathematics','41.191.104.76',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:05:52','2019-04-17 07:41:52'),(1656,'chemistry','197.210.53.23',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:10:28','2020-02-04 09:59:59'),(1657,'chemistry','41.191.104.238',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:21','2019-02-06 16:23:37'),(1658,'mathematics','41.191.104.238',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:53','2019-02-06 17:51:13'),(1659,'geography','41.191.104.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:23:13','2019-02-06 16:23:13'),(1660,'physics','41.191.104.238',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:25:01','2019-02-06 17:52:29'),(1661,'mathematics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:23','2019-02-06 16:32:23'),(1662,'physics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:36','2019-02-06 16:32:36'),(1663,'chemistry','41.191.107.146',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:57:39','2019-02-06 16:57:39'),(1664,'physics','41.191.107.146',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:58:54','2019-02-06 17:00:38'),(1665,'physics','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:48','2019-02-06 17:03:48'),(1666,'geography','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:55','2019-02-06 17:03:55'),(1667,'chemistry','41.191.107.215',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:06:36','2019-03-28 16:12:49'),(1668,'mathematics','41.191.104.67',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:15:33','2019-02-06 17:20:02'),(1669,'chemistry','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:24:42','2019-02-06 17:27:26'),(1670,'physics','41.191.104.211',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:25:40','2019-02-06 17:26:06'),(1671,'mathematics','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:32','2019-04-14 07:05:25'),(1672,'geography','41.191.104.211',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:34','2019-02-06 17:27:34'),(1673,'geography','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:29:31','2019-02-07 13:38:12'),(1674,'physics','41.191.107.38',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:30:12','2019-02-07 16:06:38'),(1675,'mathematics','41.191.107.38',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:35:19','2019-04-13 08:12:17'),(1676,'geography','41.191.107.38',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:36:56','2019-02-07 16:06:34'),(1677,'mathematics','41.191.104.244',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:40:30','2019-04-14 21:51:22'),(1678,'physics','41.191.104.244',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:43:54','2019-02-06 17:46:16'),(1679,'geography','54.145.62.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 18:07:58','2019-02-06 18:07:58'),(1680,'english','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1681,'english','3.81.49.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1682,'mathematics','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1683,'physics','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1684,'commerce','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1685,'chemistry','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1686,'biology','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1687,'government','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1688,'civiledu','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1689,'irk','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1690,'currentaffairs','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1691,'biology','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:52'),(1692,'physics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1693,'government','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:35'),(1694,'geography','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1695,'economics','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1696,'irk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1697,'insurance','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1698,'mathematics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1699,'commerce','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1700,'crk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1701,'currentaffairs','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1702,'history','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:55'),(1703,'englishlit','54.159.238.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:48','2019-02-06 23:58:48'),(1704,'chemistry','129.205.112.31',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 04:25:52','2019-02-09 18:02:32'),(1705,'mathematics','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:08:57','2019-02-07 08:31:49'),(1706,'physics','41.191.107.132',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:24:48','2019-02-07 07:53:26'),(1707,'geography','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:52:40','2019-02-07 08:17:40'),(1708,'chemistry','41.191.107.132',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 08:14:41','2019-02-07 08:18:31'),(1709,'physics','41.191.107.129',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 14:01:28'),(1710,'physics','41.191.107.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 13:59:51'),(1711,'biology','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:01:37','2019-02-07 14:01:37'),(1712,'chemistry','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:03:41','2019-02-07 14:14:08'),(1713,'mathematics','41.191.107.129',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:15:41','2019-02-07 14:17:01'),(1714,'physics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:26:47','2019-02-07 14:47:40'),(1715,'chemistry','197.210.227.51',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:31:34','2019-02-07 14:40:43'),(1716,'physics','41.191.104.213',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:38:05','2019-02-07 14:59:23'),(1717,'chemistry','197.210.227.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:39:16','2019-02-07 14:39:16'),(1718,'chemistry','41.191.104.213',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:41:28','2019-02-07 15:01:58'),(1719,'chemistry','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:42:07','2019-02-07 14:42:07'),(1720,'economics','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:44:11','2019-02-07 14:44:11'),(1721,'geography','41.191.104.213',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:51:09','2019-02-07 14:51:09'),(1722,'mathematics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:53:38','2019-02-07 14:55:12'),(1723,'chemistry','41.191.107.34',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:18:05','2019-02-07 15:48:37'),(1724,'physics','41.191.107.34',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:30:55','2019-02-07 15:45:52'),(1725,'chemistry','41.191.107.38',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:54:06','2019-02-07 16:07:17'),(1726,'physics','41.191.104.81',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:07:36','2019-02-07 16:09:23'),(1727,'chemistry','41.191.104.81',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:12:44','2019-02-07 16:12:44'),(1728,'mathematics','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:46','2019-02-07 16:22:18'),(1729,'chemistry','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:54','2019-02-07 16:24:30'),(1730,'physics','41.191.107.206',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:57','2019-02-07 16:38:27'),(1731,'geography','41.191.107.206',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:59','2019-02-07 16:30:19'),(1732,'english','197.210.227.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:31:53','2019-02-07 16:31:53'),(1733,'history','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:33:37','2019-02-07 16:33:37'),(1734,'biology','41.191.107.206',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:03','2019-04-18 16:28:46'),(1735,'economics','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:39','2019-02-07 16:34:39'),(1736,'accounting','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:56','2019-02-07 16:34:56'),(1737,'english','184.73.22.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:38:25','2019-02-07 16:50:24'),(1738,'physics','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:43:12','2019-02-07 16:43:12'),(1739,'english','154.66.57.61',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:44:58','2019-02-07 16:47:26'),(1740,'accounting','41.191.107.193',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:45:10','2019-02-07 16:47:47'),(1741,'biology','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:50','2019-02-07 16:46:50'),(1742,'chemistry','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:55','2019-02-07 16:46:55'),(1743,'mathematics','41.191.107.193',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:48:25','2019-04-13 07:49:25'),(1744,'commerce','154.66.57.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:49:07','2019-02-07 16:49:08'),(1745,'mathematics','184.73.22.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:05:51','2019-02-07 17:05:51'),(1746,'englishlit','197.210.227.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:06:39','2019-02-07 17:06:57'),(1747,'mathematics','197.210.227.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:08:37','2019-02-07 17:08:37'),(1748,'mathematics','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:12:32','2019-02-07 17:12:32'),(1749,'english','197.210.227.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:13:32','2019-02-07 17:15:24'),(1750,'english','197.210.227.160',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:17:16','2019-02-07 17:17:16'),(1751,'government','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:04','2019-02-07 19:40:04'),(1752,'chemistry','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:05','2019-02-07 19:40:05'),(1753,'chemistry','41.203.78.86',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 22:56:58','2019-02-08 01:04:26'),(1754,'english','41.203.78.86',10687,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 23:11:07','2019-02-08 01:12:58'),(1755,'chemistry','41.203.72.82',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:02:21','2019-02-08 01:03:10'),(1756,'mathematics','41.203.78.86',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:13:49','2019-02-08 01:20:31'),(1757,'commerce','41.203.78.86',1400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:21:06','2019-02-08 01:25:03'),(1758,'accounting','129.205.112.31',637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 03:59:44','2019-02-10 07:56:43'),(1759,'commerce','129.205.112.31',16415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:02:10','2019-02-10 07:24:35'),(1760,'english','129.205.112.31',3880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:54:53','2019-02-09 20:30:32'),(1761,'mathematics','129.205.112.31',1581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 05:04:07','2019-02-10 08:18:03'),(1762,'economics','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:37:15','2019-02-08 09:37:15'),(1763,'currentaffairs','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:42:06','2019-02-08 09:42:06'),(1764,'commerce','41.203.78.102',5836,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 13:46:12','2019-02-08 21:42:21'),(1765,'english','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1766,'accounting','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1767,'biology','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1768,'englishlit','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1769,'government','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1770,'economics','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1771,'history','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1772,'insurance','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 16:42:58','2019-02-08 16:42:58'),(1773,'biology','54.161.98.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 17:53:20','2019-02-08 17:53:20'),(1774,'mathematics','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 20:43:14','2019-02-08 20:43:14'),(1775,'insurance','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:12:10','2019-02-08 21:12:10'),(1776,'chemistry','41.203.78.102',2128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:33:15','2019-02-08 22:12:38'),(1777,'mathematics','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:42:45','2019-02-08 21:51:29'),(1778,'english','41.203.78.102',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:43:28','2019-02-09 01:27:32'),(1779,'accounting','41.203.78.102',2720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:51:49','2019-02-08 21:56:42'),(1780,'biology','41.203.78.102',2400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:57:02','2019-02-08 22:05:16'),(1781,'physics','41.203.78.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:06:14','2019-02-08 22:07:44'),(1782,'englishlit','41.203.78.102',1880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:13:10','2019-02-08 22:20:30'),(1783,'government','41.203.78.102',2800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:21:29','2019-02-08 23:52:43'),(1784,'crk','41.203.78.102',3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:52:55','2019-02-09 00:00:48'),(1785,'chemistry','54.91.117.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:57:22','2019-02-08 23:57:22'),(1786,'geography','41.203.78.102',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:01:57','2019-02-09 00:24:16'),(1787,'economics','41.203.78.102',3720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:26:24','2019-02-09 00:34:36'),(1788,'irk','41.203.78.102',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:35:41','2019-02-09 00:37:20'),(1789,'civiledu','41.203.78.102',2240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:38:00','2019-02-09 00:44:30'),(1790,'insurance','41.203.78.102',1680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:46:06','2019-02-09 00:57:03'),(1791,'civiledu','52.55.225.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:48:42','2019-02-09 00:48:42'),(1792,'currentaffairs','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:57:53','2019-02-09 01:00:05'),(1793,'history','41.203.78.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 01:01:27','2019-02-09 01:01:41'),(1794,'government','54.197.84.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 03:29:54','2019-02-09 03:29:54'),(1795,'accounting','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 05:17:44','2019-02-09 05:17:44'),(1796,'crk','54.210.158.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 06:41:14','2019-02-09 06:41:14'),(1797,'chemistry','40.77.167.168',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 07:15:13','2020-01-13 09:41:58'),(1798,'mathematics','197.210.8.53',432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:27','2019-02-09 08:02:28'),(1799,'chemistry','197.210.8.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:53','2019-02-09 07:54:53'),(1800,'commerce','197.210.8.53',2379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:03:00','2019-02-09 09:22:09'),(1801,'mathematics','3.83.132.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:18:09','2019-02-09 08:18:09'),(1802,'biology','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:54:44','2019-02-09 08:54:44'),(1803,'chemistry','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:18:40','2019-02-09 09:18:40'),(1804,'englishlit','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:17','2019-02-09 09:19:17'),(1805,'mathematics','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:52','2019-02-09 09:19:52'),(1806,'economics','54.83.86.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 10:26:21','2019-02-09 10:26:21'),(1807,'chemistry','197.210.44.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:14:26','2019-02-09 11:15:08'),(1808,'physics','197.210.44.28',952,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:16:33','2019-02-09 12:01:21'),(1809,'commerce','197.210.227.64',78,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:22:57','2019-02-09 12:24:33'),(1810,'physics','54.167.138.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:50:33','2019-02-09 13:26:19'),(1811,'chemistry','157.55.39.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:39:52','2019-02-09 13:39:52'),(1812,'english','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:47:52','2019-02-09 13:47:52'),(1813,'government','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:53:44','2019-02-09 13:53:44'),(1814,'englishlit','54.160.227.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 14:42:34','2019-02-09 14:42:34'),(1815,'englishlit','34.207.56.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 17:36:00','2019-02-09 17:36:00'),(1816,'chemistry','46.229.168.134',103,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 18:20:56','2020-01-04 23:41:32'),(1817,'crk','54.205.112.119',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 18:24:29','2019-02-09 18:24:29'),(1818,'englishlit','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:31:53','2019-02-10 08:28:16'),(1819,'accounting','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:36:27','2019-02-09 20:36:27'),(1820,'history','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:41:04','2019-02-09 20:41:04'),(1821,'economics','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:52:59','2019-02-09 20:52:59'),(1822,'economics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 21:36:49','2019-02-09 21:36:49'),(1823,'chemistry','54.165.27.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 04:31:45','2019-02-10 04:31:45'),(1824,'geography','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:01:47','2019-02-10 08:01:47'),(1825,'physics','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:19:34','2019-02-10 08:25:15'),(1826,'history','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:37:28','2019-02-10 08:37:28'),(1827,'english','54.162.92.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 12:54:28','2019-02-10 12:54:28'),(1828,'mathematics','41.191.107.239',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:39:53','2019-02-10 14:01:17'),(1829,'physics','41.191.107.239',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:42','2019-02-10 13:48:33'),(1830,'history','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:47','2019-02-10 13:48:45'),(1831,'accounting','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:45:18','2019-02-10 13:52:35'),(1832,'mathematics','41.191.107.145',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:02:05','2019-02-11 14:40:35'),(1833,'economics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:04:14','2019-02-10 14:04:14'),(1834,'physics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:05:04','2019-02-10 14:05:04'),(1835,'geography','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:06:01','2019-02-10 14:06:01'),(1836,'government','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1837,'accounting','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1838,'physics','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1839,'crk','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1840,'civiledu','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1841,'insurance','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1842,'currentaffairs','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:28'),(1843,'history','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:30'),(1844,'english','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1845,'biology','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:25'),(1846,'chemistry','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1847,'irk','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1848,'englishlit','34.228.6.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:15','2019-02-11 02:52:15'),(1849,'chemistry','197.210.45.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 10:22:02','2019-02-11 10:22:02'),(1850,'chemistry','40.77.167.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:09:52','2019-02-11 13:09:52'),(1851,'biology','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:36:32','2019-02-11 13:36:32'),(1852,'history','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:37:35','2019-02-11 13:37:35'),(1853,'english','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1854,'accounting','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1855,'physics','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1856,'geography','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1857,'irk','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1858,'insurance','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1859,'currentaffairs','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1860,'mathematics','41.191.104.71',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:12:03','2019-02-11 14:12:03'),(1861,'mathematics','41.191.104.112',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:18:49','2019-02-11 14:18:49'),(1862,'chemistry','41.58.77.114',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:51','2019-02-11 14:28:05'),(1863,'physics','41.191.104.112',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:53','2019-02-11 14:26:11'),(1864,'history','41.191.104.112',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:23:33','2019-02-11 14:26:08'),(1865,'biology','41.58.77.114',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:24:08','2019-02-11 14:24:08'),(1866,'mathematics','41.58.77.114',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:25:00','2019-02-11 14:26:24'),(1867,'physics','41.191.104.234',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:35','2019-02-11 14:40:10'),(1868,'economics','41.191.104.234',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:52','2019-02-11 14:35:32'),(1869,'mathematics','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:41','2019-02-11 14:35:41'),(1870,'chemistry','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:47','2019-02-11 14:35:47'),(1871,'biology','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:37:04','2019-02-11 14:37:04'),(1872,'biology','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:45:01','2019-02-11 14:45:01'),(1873,'chemistry','105.112.99.29',197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:29:39','2019-02-11 16:54:32'),(1874,'physics','105.112.99.29',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:30:30','2019-02-11 16:50:11'),(1875,'biology','105.112.99.29',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:38:24','2019-02-11 16:41:30'),(1876,'mathematics','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1877,'commerce','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1878,'chemistry','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1879,'englishlit','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1880,'government','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1881,'irk','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1882,'insurance','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1883,'chemistry','40.77.167.19',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 08:00:52','2019-02-12 08:00:52'),(1884,'english','54.146.30.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:52:31','2019-02-12 09:52:31'),(1885,'chemistry','77.246.49.12',38,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:59:54','2019-02-12 10:43:38'),(1886,'chemistry','66.249.83.214',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:17:35','2019-02-15 07:42:21'),(1887,'chemistry','66.249.83.212',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:32:16','2019-02-17 16:13:54'),(1888,'geography','54.198.25.67',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 11:51:48','2019-02-12 11:51:48'),(1889,'english','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1890,'biology','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1891,'physics','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1892,'government','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1893,'irk','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 15:35:54'),(1894,'civiledu','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1895,'history','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:55:19'),(1896,'chemistry','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:13:08','2019-02-12 15:13:08'),(1897,'geography','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:27:03','2019-02-12 15:27:03'),(1898,'insurance','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:37:09','2019-02-12 15:37:09'),(1899,'currentaffairs','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:38:51','2019-02-12 15:38:51'),(1900,'accounting','54.224.187.178',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:15:56','2019-02-12 16:47:43'),(1901,'commerce','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:54:29','2019-02-12 16:54:29'),(1902,'chemistry','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:55:19','2019-02-12 16:55:19'),(1903,'english','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:56:44','2019-02-12 16:56:44'),(1904,'englishlit','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 17:05:53','2019-02-12 17:05:53'),(1905,'chemistry','77.246.53.3',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:29:38','2019-02-12 19:29:38'),(1906,'chemistry','46.229.168.132',61,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-12 19:33:18','2020-04-01 16:00:41'),(1907,'physics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:37:08','2019-02-12 19:37:08'),(1908,'mathematics','3.83.244.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 21:14:53','2019-02-12 21:14:53'),(1909,'chemistry','54.90.184.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:12:11','2019-02-12 23:12:11'),(1910,'accounting','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:50:49','2019-02-12 23:50:49'),(1911,'chemistry','82.145.222.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 02:31:59','2019-02-13 02:32:09'),(1912,'chemistry','41.220.28.0',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 03:41:16','2019-02-13 04:18:17'),(1913,'chemistry','40.77.167.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 04:07:04','2019-02-13 04:07:04'),(1914,'irk','54.226.159.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 05:17:46','2019-02-13 05:17:46'),(1915,'chemistry','77.246.53.157',1075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 06:15:44','2019-02-13 07:57:20'),(1916,'biology','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:18:12','2019-02-13 07:18:12'),(1917,'accounting','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:42:14','2019-02-13 07:42:14'),(1918,'chemistry','77.246.55.170',2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 09:57:35','2019-02-13 12:53:59'),(1919,'irk','54.234.114.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 10:48:37','2019-02-13 10:48:37'),(1920,'chemistry','77.246.49.61',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 13:40:12','2019-02-13 14:09:22'),(1921,'mathematics','77.246.49.61',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:09:22'),(1922,'mathematics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:11:21'),(1923,'chemistry','41.220.30.108',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:10','2019-02-13 14:13:10'),(1924,'physics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:17','2019-02-19 09:00:47'),(1925,'accounting','41.220.30.108',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:14:56','2019-02-13 14:17:32'),(1926,'insurance','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:41:06','2019-02-13 14:44:45'),(1927,'english','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1928,'mathematics','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1929,'accounting','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1930,'physics','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1931,'chemistry','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1932,'crk','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1933,'crk','54.211.35.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1934,'irk','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1935,'currentaffairs','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1936,'history','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1937,'mathematics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:12:14','2019-02-13 15:12:14'),(1938,'physics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:14:36','2019-02-13 15:14:37'),(1939,'chemistry','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:15:45','2019-02-13 15:15:45'),(1940,'irk','54.144.251.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:47:59','2019-02-13 15:47:59'),(1941,'physics','77.246.53.12',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:20:07','2019-02-13 16:34:41'),(1942,'mathematics','77.246.53.12',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:14','2019-02-13 16:35:19'),(1943,'chemistry','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:32','2019-02-13 16:34:32'),(1944,'accounting','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:48','2019-02-13 16:34:48'),(1945,'mathematics','77.246.53.162',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:07','2019-02-13 17:07:40'),(1946,'physics','77.246.53.162',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:43','2019-02-13 17:05:44'),(1947,'chemistry','77.246.53.162',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:21','2019-02-13 17:05:39'),(1948,'accounting','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:26','2019-02-13 16:54:33'),(1949,'commerce','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:57:16','2019-02-13 16:57:32'),(1950,'biology','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:59:47','2019-02-13 17:02:48'),(1951,'physics','54.159.21.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 18:06:23','2019-02-13 18:06:23'),(1952,'chemistry','46.229.168.150',12,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 02:03:11','2020-01-21 05:27:03'),(1953,'biology','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 02:28:08','2019-02-14 02:28:08'),(1954,'chemistry','41.86.149.34',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 07:40:21','2020-03-16 11:43:51'),(1955,'physics','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:41:02','2019-02-14 08:41:02'),(1956,'chemistry','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:45:15','2019-02-14 08:45:16'),(1957,'physics','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:45:52','2019-02-14 09:45:52'),(1958,'chemistry','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:12','2019-02-14 09:46:12'),(1959,'mathematics','77.246.49.1',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:22','2019-02-14 10:21:31'),(1960,'biology','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:31','2019-02-14 09:46:31'),(1961,'chemistry','66.249.93.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:08:04','2019-02-14 14:08:04'),(1962,'insurance','52.206.40.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:35:57','2019-02-14 14:35:57'),(1963,'irk','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:05:01','2019-02-14 16:05:01'),(1964,'mathematics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:25:27','2019-02-14 16:25:27'),(1965,'physics','107.167.107.223',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:26:57','2019-02-14 16:26:58'),(1966,'chemistry','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:28:35','2019-02-14 16:28:35'),(1967,'physics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:32:02','2019-02-14 16:32:02'),(1968,'physics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:02','2019-02-14 17:39:02'),(1969,'mathematics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:03','2019-02-14 17:39:03'),(1970,'chemistry','66.249.64.168',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:04','2019-02-15 07:38:28'),(1971,'mathematics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1972,'biology','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1973,'chemistry','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1974,'englishlit','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1975,'crk','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1976,'economics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1977,'civiledu','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1978,'mathematics','41.220.30.127',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:40:08','2019-02-14 18:40:09'),(1979,'chemistry','197.210.53.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 23:05:50','2019-02-14 23:11:24'),(1980,'chemistry','197.210.53.75',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 23:06:02','2019-10-28 09:52:49'),(1981,'physics','77.246.53.165',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:37:58','2019-02-15 02:38:49'),(1982,'physics','66.102.8.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:17','2019-02-15 02:56:50'),(1983,'physics','66.249.64.170',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:28','2019-02-15 08:55:28'),(1984,'physics','66.249.64.168',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:56:52','2019-02-16 03:08:43'),(1985,'mathematics','77.246.53.165',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:58:41','2019-02-15 02:58:41'),(1986,'chemistry','66.102.6.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 04:13:56','2019-02-15 04:13:56'),(1987,'chemistry','77.246.53.155',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:12:45','2019-02-15 05:12:46'),(1988,'physics','66.249.83.210',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:21:09','2019-02-17 08:51:10'),(1989,'chemistry','66.249.83.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:54','2019-02-15 05:37:54'),(1990,'chemistry','66.249.64.170',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:55','2019-02-15 05:40:03'),(1991,'chemistry','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:40:02','2019-02-15 05:40:02'),(1992,'chemistry','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 07:38:29','2019-02-15 07:38:29'),(1993,'physics','66.102.8.106',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:21','2019-02-16 03:07:38'),(1994,'physics','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:45','2019-02-15 08:54:45'),(1995,'physics','66.249.83.212',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:10','2019-02-16 03:29:02'),(1996,'physics','41.220.30.120',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:22','2019-02-15 08:59:22'),(1997,'history','54.166.99.0',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:39:50','2019-02-15 09:39:50'),(1998,'physics','185.26.180.219',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:40:20','2019-02-15 10:02:05'),(1999,'physics','77.246.55.130',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:34:33','2019-02-15 13:38:14'),(2000,'english','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:38:16','2019-02-15 13:38:16'),(2001,'insurance','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:22','2019-02-15 13:39:22'),(2002,'commerce','197.210.227.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:24','2019-02-15 13:39:24'),(2003,'commerce','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 14:41:28','2019-02-15 14:41:28'),(2004,'physics','66.249.83.214',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:06','2019-02-19 18:52:31'),(2005,'physics','77.246.53.177',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:34','2019-02-15 15:11:34'),(2006,'chemistry','66.249.83.198',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:13:48','2019-02-15 15:13:49'),(2007,'chemistry','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:15:21','2019-02-15 17:15:21'),(2008,'biology','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:32:07','2019-02-15 17:32:07'),(2009,'englishlit','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:50:05','2019-02-15 17:50:05'),(2010,'civiledu','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:58:30','2019-02-15 17:58:30'),(2011,'economics','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 18:01:11','2019-02-15 18:01:11'),(2012,'mathematics','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:23'),(2013,'englishlit','54.162.96.90',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:12'),(2014,'geography','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2015,'irk','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2016,'civiledu','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2017,'currentaffairs','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:25'),(2018,'history','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2019,'english','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2020,'economics','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2021,'insurance','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2022,'biology','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:18','2019-02-15 23:11:20'),(2023,'commerce','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:34:11','2019-02-16 11:34:11'),(2024,'economics','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:35:07','2019-02-16 11:35:07'),(2025,'economics','197.210.53.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:59:36','2019-02-16 11:59:36'),(2026,'economics','197.210.53.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:09:10','2019-02-16 12:09:10'),(2027,'physics','64.233.172.202',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:45:29','2019-02-16 12:45:29'),(2028,'chemistry','197.210.8.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 15:55:05','2019-02-16 15:56:43'),(2029,'chemistry','209.205.211.242',1740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:08:07','2019-02-20 09:17:37'),(2030,'biology','209.205.211.242',3303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:14:54','2019-02-19 18:49:01'),(2031,'mathematics','209.205.211.242',2635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 17:10:46','2019-02-17 21:51:53'),(2032,'english','209.205.211.242',3998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:01:15','2019-02-19 18:31:24'),(2033,'english','197.210.52.4',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:06:11','2019-02-16 18:06:11'),(2034,'physics','66.249.88.52',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:25:31','2019-02-16 18:25:32'),(2035,'physics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:27:41','2019-02-16 18:27:42'),(2036,'physics','209.205.211.242',2056,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:36:36','2019-02-19 18:57:19'),(2037,'economics','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:52:25','2019-02-16 18:52:25'),(2038,'insurance','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:53:03','2019-02-16 18:53:03'),(2039,'english','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2040,'accounting','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2041,'government','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2042,'crk','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2043,'geography','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2044,'economics','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2045,'insurance','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2046,'economics','209.205.211.242',3993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:07:13','2019-02-20 10:21:53'),(2047,'commerce','209.205.211.242',2963,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:32:01','2019-02-20 10:47:11'),(2048,'accounting','209.205.211.242',3180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:02:28','2019-02-20 10:34:51'),(2049,'government','209.205.211.242',4769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:18:37','2019-02-20 11:25:34'),(2050,'englishlit','209.205.211.242',2428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:34:54','2019-02-20 11:06:13'),(2051,'civiledu','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:45:29','2019-02-18 13:07:15'),(2052,'crk','209.205.211.242',2529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:02:00','2019-03-28 01:41:15'),(2053,'history','209.205.211.242',1491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:13:13','2019-02-20 11:54:00'),(2054,'geography','209.205.211.242',1807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:24:15','2019-02-18 13:11:51'),(2055,'irk','209.205.211.242',533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:57:46','2019-02-18 13:14:15'),(2056,'insurance','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 00:04:12','2019-02-18 13:21:54'),(2057,'chemistry','197.210.46.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 05:30:36','2019-02-17 05:30:36'),(2058,'mathematics','66.249.83.214',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-19 18:52:31'),(2059,'biology','66.249.83.212',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-17 09:09:38'),(2060,'physics','77.246.55.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:10:12','2019-02-17 09:10:33'),(2061,'mathematics','66.249.84.40',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:47','2019-02-17 10:32:48'),(2062,'mathematics','66.249.64.168',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:48','2019-02-17 10:32:48'),(2063,'mathematics','64.233.172.200',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:42','2019-02-17 10:33:42'),(2064,'mathematics','66.249.64.170',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:44','2019-02-17 10:33:44'),(2065,'mathematics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 16:14:46','2019-02-17 16:14:46'),(2066,'english','34.238.255.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 12:56:12','2019-02-18 12:56:12'),(2067,'currentaffairs','209.205.211.242',585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 13:24:51','2019-02-18 13:37:43'),(2068,'physics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:10:32','2019-02-18 17:10:32'),(2069,'mathematics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:11:34','2019-02-18 17:11:34'),(2070,'physics','77.246.53.136',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 19:24:42','2019-02-18 19:25:37'),(2071,'english','174.129.141.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 20:49:05','2019-02-18 20:49:05'),(2072,'chemistry','41.191.104.80',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 00:07:04','2019-04-18 08:45:16'),(2073,'insurance','3.82.5.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 01:58:28','2019-02-19 01:58:28'),(2074,'english','54.211.123.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 06:24:59','2019-02-19 06:24:59'),(2075,'chemistry','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:14:42','2019-02-19 10:14:42'),(2076,'englishlit','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:22:31','2019-02-19 10:22:31'),(2077,'economics','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:42:59','2019-02-19 10:42:59'),(2078,'chemistry','54.224.95.200',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 12:27:33','2019-02-19 12:27:33'),(2079,'insurance','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:12:57','2019-02-19 14:12:57'),(2080,'accounting','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:23:32','2019-02-19 14:23:32'),(2081,'civiledu','54.147.55.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:12:39','2019-02-19 18:12:39'),(2082,'physics','77.246.49.36',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:52:53','2019-02-19 18:53:54'),(2083,'chemistry','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:07','2019-02-19 18:53:10'),(2084,'biology','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:18','2019-02-19 18:53:48'),(2085,'mathematics','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:21','2019-02-19 18:53:47'),(2086,'government','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:02:12','2019-02-19 19:02:12'),(2087,'accounting','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:06:42','2019-02-19 19:06:42'),(2088,'chemistry','197.211.57.22',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 20:15:50','2019-02-19 20:22:45'),(2089,'economics','54.161.218.154',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:34','2019-02-19 21:58:35'),(2090,'accounting','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2091,'physics','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2092,'chemistry','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2093,'englishlit','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2094,'geography','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2095,'history','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2096,'english','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 00:48:47','2019-02-20 00:48:48'),(2097,'physics','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:00:30','2019-02-20 01:00:30'),(2098,'geography','66.249.70.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:02:46','2019-02-20 01:02:47'),(2099,'history','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:04:05','2019-02-20 01:04:05'),(2100,'economics','54.81.179.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:18:54','2019-02-20 01:18:54'),(2101,'chemistry','66.249.83.222',26,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2019-11-22 10:45:51'),(2102,'biology','66.249.83.192',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2020-03-04 20:11:48'),(2103,'physics','66.249.83.223',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:05','2019-02-22 08:52:17'),(2104,'physics','77.246.53.28',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:41','2019-02-20 05:28:41'),(2105,'chemistry','207.46.13.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:55:58','2019-02-20 05:55:58'),(2106,'insurance','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:05','2019-02-20 13:44:06'),(2107,'mathematics','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:23','2019-02-20 13:44:24'),(2108,'physics','54.204.105.177',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 15:14:53','2019-02-20 15:14:53'),(2109,'english','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:05:47','2019-02-20 18:05:47'),(2110,'biology','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:13:36','2019-02-20 18:13:37'),(2111,'physics','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2112,'chemistry','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2113,'crk','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2114,'geography','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2115,'economics','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2116,'insurance','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2117,'history','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2118,'currentaffairs','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2119,'mathematics','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:37','2019-02-20 18:36:37'),(2120,'biology','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:43','2019-02-20 18:36:43'),(2121,'english','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2122,'accounting','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2123,'government','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2124,'englishlit','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:49','2019-02-20 18:36:49'),(2125,'englishlit','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:29:11','2019-02-20 19:29:11'),(2126,'chemistry','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:54:43','2019-02-20 19:54:43'),(2127,'biology','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:55','2019-02-20 20:16:55'),(2128,'geography','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:59','2019-02-20 20:16:59'),(2129,'chemistry','105.112.26.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:32:19','2019-02-20 20:32:19'),(2130,'chemistry','54.83.94.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 23:36:55','2019-02-20 23:36:55'),(2131,'mathematics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2132,'mathematics','54.167.183.249',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2133,'commerce','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2134,'accounting','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2135,'physics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2136,'geography','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2137,'economics','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2138,'insurance','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2139,'english','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2140,'chemistry','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2141,'irk','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2142,'history','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2143,'chemistry','46.229.168.130',18,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2020-03-24 16:18:58'),(2144,'chemistry','46.229.168.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2019-02-21 14:32:12'),(2145,'geography','54.221.38.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 02:38:12','2019-02-22 02:38:12'),(2146,'mathematics','54.89.229.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 03:48:22','2019-02-22 03:48:22'),(2147,'chemistry','129.205.112.63',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:18:55','2019-02-22 06:19:17'),(2148,'mathematics','129.205.112.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:19:48','2019-02-22 06:19:48'),(2149,'mathematics','66.249.83.222',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 08:52:08','2019-02-27 03:45:37'),(2150,'economics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 09:26:06','2019-02-22 09:26:07'),(2151,'mathematics','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2152,'mathematics','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2153,'physics','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2154,'biology','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2155,'englishlit','34.201.133.169',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2156,'chemistry','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2157,'government','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2158,'crk','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2159,'geography','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2160,'civiledu','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2161,'civiledu','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2162,'history','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2163,'history','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2164,'economics','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2165,'chemistry','129.56.89.91',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 14:58:18','2019-02-22 14:58:54'),(2166,'mathematics','129.56.89.91',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 15:07:31','2019-02-22 15:07:31'),(2167,'economics','54.161.215.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 00:00:12','2019-02-23 00:00:12'),(2168,'history','3.93.218.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 04:23:21','2019-02-23 04:23:21'),(2169,'accounting','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2170,'biology','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2171,'chemistry','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2172,'government','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2173,'irk','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2174,'insurance','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2175,'currentaffairs','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2176,'chemistry','192.173.38.121',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 23:14:30','2019-02-23 23:14:42'),(2177,'english','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2178,'accounting','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2179,'government','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2180,'crk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2181,'geography','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2182,'irk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2183,'civiledu','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2184,'chemistry','160.120.230.179',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 23:58:16','2019-02-24 23:58:16'),(2185,'chemistry','197.210.45.125',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 10:22:09','2019-02-25 10:23:43'),(2186,'biology','197.210.28.208',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 12:45:32','2019-02-25 12:45:33'),(2187,'chemistry','207.46.13.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 09:41:52','2019-02-26 09:41:52'),(2188,'chemistry','129.205.113.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 15:05:12','2019-02-26 15:05:12'),(2189,'english','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2190,'english','3.87.158.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2191,'mathematics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2192,'commerce','3.87.158.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2193,'biology','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2194,'physics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2195,'geography','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2196,'government','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2197,'economics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2198,'history','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2199,'crk','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2200,'currentaffairs','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2201,'english','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2202,'mathematics','54.226.211.137',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:44'),(2203,'commerce','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2204,'chemistry','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2205,'government','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2206,'history','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2207,'accounting','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2208,'economics','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:30'),(2209,'irk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2210,'insurance','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2211,'chemistry','41.191.107.201',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:30:53','2019-02-26 19:30:53'),(2212,'chemistry','41.191.107.145',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:32:08','2019-02-26 19:33:01'),(2213,'physics','54.243.5.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 22:16:47','2019-02-26 22:16:47'),(2214,'accounting','54.166.233.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 23:08:29','2019-02-26 23:08:29'),(2215,'physics','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:36','2020-02-09 06:54:16'),(2216,'biology','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:43','2020-02-15 20:12:30'),(2217,'chemistry','66.249.83.223',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:44','2020-02-05 04:26:16'),(2218,'physics','77.246.53.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 03:45:58','2019-02-27 03:45:58'),(2219,'chemistry','66.249.93.52',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 11:18:17','2019-06-22 21:48:18'),(2220,'chemistry','41.191.104.245',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 12:41:52','2019-02-27 12:41:52'),(2221,'chemistry','66.249.93.48',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 12:41:34','2019-08-02 12:51:50'),(2222,'insurance','54.209.60.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 13:15:55','2019-02-28 13:15:55'),(2223,'mathematics','52.73.168.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 15:40:02','2019-02-28 15:40:02'),(2224,'chemistry','41.190.2.218',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:47:11','2019-03-01 08:49:37'),(2225,'mathematics','41.190.2.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:50:33','2019-03-01 08:50:34'),(2226,'english','41.190.2.218',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:52:26','2019-03-01 09:52:41'),(2227,'chemistry','66.249.66.158',82,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:22:29','2019-05-21 08:24:45'),(2228,'english','41.190.3.242',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:52:56','2019-03-01 10:52:56'),(2229,'physics','41.190.3.242',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:59:56','2019-03-01 10:59:56'),(2230,'english','41.190.2.156',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:08:07','2019-03-01 11:10:46'),(2231,'englishlit','41.190.2.156',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:11:29','2019-03-01 11:15:39'),(2232,'englishlit','41.190.31.166',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:22:14','2019-03-01 11:22:15'),(2233,'mathematics','41.242.89.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 14:24:39','2019-03-01 14:24:39'),(2234,'chemistry','54.85.62.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:23','2019-03-01 18:59:23'),(2235,'commerce','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2236,'physics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2237,'englishlit','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2238,'government','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2239,'crk','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2240,'economics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2241,'currentaffairs','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2242,'chemistry','88.6.244.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:08:40','2019-03-01 19:08:40'),(2243,'englishlit','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:21'),(2244,'english','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2245,'commerce','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:46'),(2246,'biology','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2247,'geography','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2248,'economics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2249,'irk','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2250,'history','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2251,'chemistry','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:58:25'),(2252,'government','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2253,'currentaffairs','107.20.60.54',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2254,'mathematics','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:05','2019-03-01 19:57:41'),(2255,'accounting','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2256,'physics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2257,'crk','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2258,'civiledu','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2259,'insurance','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2260,'chemistry','197.211.57.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 00:15:49','2019-03-02 00:15:49'),(2261,'mathematics','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:00:36','2019-03-02 04:00:36'),(2262,'geography','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:11:33','2019-03-02 04:11:33'),(2263,'insurance','3.89.38.207',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 06:24:49','2019-03-02 06:30:51'),(2264,'mathematics','54.80.44.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:08'),(2265,'biology','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:05'),(2266,'physics','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:39'),(2267,'chemistry','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:00'),(2268,'englishlit','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:52'),(2269,'economics','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2270,'civiledu','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2271,'commerce','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2272,'crk','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2273,'insurance','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2274,'currentaffairs','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:55'),(2275,'biology','105.112.44.175',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 15:21:52','2019-03-02 15:26:09'),(2276,'chemistry','105.112.21.63',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 16:03:37','2019-03-02 16:03:53'),(2277,'englishlit','169.159.66.161',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 17:05:42','2019-03-02 17:05:42'),(2278,'geography','34.229.78.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 22:36:51','2019-03-02 22:36:51'),(2279,'chemistry','105.112.23.37',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-03 21:25:44','2019-03-03 21:26:34'),(2280,'english','105.112.45.107',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 06:08:59','2019-03-04 06:09:55'),(2281,'chemistry','154.66.15.65',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 09:03:04','2019-03-04 09:03:04'),(2282,'chemistry','40.77.167.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 10:53:20','2019-05-08 11:01:31'),(2283,'chemistry','66.249.64.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 11:52:26','2019-03-04 11:52:26'),(2284,'chemistry','157.55.39.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 17:38:04','2019-03-04 17:38:04'),(2285,'english','129.56.36.43',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 20:56:28','2019-03-04 20:56:29'),(2286,'chemistry','66.249.93.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 22:00:50','2019-03-04 22:00:50'),(2287,'history','3.83.116.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 08:18:13','2019-03-05 08:18:13'),(2288,'english','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2289,'mathematics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2290,'biology','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2291,'irk','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2292,'insurance','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2293,'currentaffairs','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2294,'history','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2295,'commerce','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2296,'accounting','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2297,'economics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2298,'civiledu','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2299,'chemistry','129.205.112.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 05:43:39','2019-03-06 05:43:39'),(2300,'english','105.112.41.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 06:01:30','2019-03-06 06:01:30'),(2301,'chemistry','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:53:58','2019-03-07 07:53:58'),(2302,'english','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:03','2019-03-07 07:54:03'),(2303,'currentaffairs','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:05','2019-03-07 07:54:05'),(2304,'englishlit','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:11','2019-03-07 07:54:11'),(2305,'mathematics','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:13','2019-03-07 07:54:13'),(2306,'english','54.146.17.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 10:10:28','2019-03-07 10:10:28'),(2307,'chemistry','41.203.78.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 18:01:15','2019-03-07 18:01:40'),(2308,'mathematics','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:29:12','2019-03-08 00:29:12'),(2309,'accounting','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:43:38','2019-03-08 00:43:39'),(2310,'irk','129.205.112.111',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:47:07','2019-03-08 00:47:07'),(2311,'commerce','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:57:56','2019-03-08 00:57:56'),(2312,'mathematics','105.112.23.187',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 02:10:15','2019-03-08 02:10:16'),(2313,'chemistry','182.156.84.42',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 07:34:03','2019-03-08 07:34:38'),(2314,'english','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:32','2019-03-08 21:33:32'),(2315,'mathematics','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:51','2019-03-08 21:33:51'),(2316,'chemistry','66.249.66.128',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 22:28:29','2019-03-08 22:28:29'),(2317,'commerce','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2318,'accounting','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2319,'englishlit','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2320,'government','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2321,'crk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2322,'irk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2323,'civiledu','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2324,'biology','105.112.41.40',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 11:20:50','2019-03-10 11:20:50'),(2325,'english','66.249.66.159',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-10 18:44:59','2019-12-20 19:13:10'),(2326,'currentaffairs','66.249.66.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:01:44','2019-03-10 19:01:44'),(2327,'mathematics','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:07:00','2019-03-10 19:07:00'),(2328,'biology','66.249.66.159',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:11:15','2019-07-20 09:55:14'),(2329,'chemistry','197.242.96.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:22:23','2019-03-10 22:22:23'),(2330,'commerce','197.211.32.243',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:37:02','2019-03-10 22:37:05'),(2331,'english','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:35'),(2332,'commerce','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2333,'biology','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2334,'chemistry','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2335,'geography','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:27'),(2336,'currentaffairs','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:32'),(2337,'history','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:43'),(2338,'englishlit','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:37','2019-03-10 23:37:40'),(2339,'mathematics','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:47'),(2340,'physics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2341,'economics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2342,'civiledu','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2343,'english','105.112.106.77',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:59:59','2019-03-11 00:33:51'),(2344,'mathematics','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:03','2019-03-11 00:13:40'),(2345,'civiledu','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:29','2019-03-11 00:10:45'),(2346,'chemistry','41.216.168.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 10:36:04','2019-03-11 10:36:31'),(2347,'biology','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:11:03','2019-03-11 12:11:04'),(2348,'currentaffairs','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:16:12','2019-03-11 12:16:13'),(2349,'mathematics','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:21:12','2019-03-11 12:21:13'),(2350,'chemistry','197.210.62.63',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:26:12','2019-03-11 12:26:12'),(2351,'chemistry','197.210.54.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:24','2019-03-12 04:11:25'),(2352,'chemistry','197.210.54.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:37','2019-03-12 04:11:38'),(2353,'chemistry','207.46.13.222',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 23:05:23','2019-03-12 23:05:23'),(2354,'chemistry','105.112.16.104',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:30:57','2019-03-13 08:32:49'),(2355,'mathematics','105.112.16.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:33:15','2019-03-13 08:33:15'),(2356,'chemistry','157.55.39.236',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-14 04:31:32','2020-05-06 01:55:10'),(2357,'chemistry','129.18.151.222',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-14 17:26:09','2019-03-14 17:27:29'),(2358,'mathematics','18.207.245.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2359,'mathematics','18.207.245.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2360,'biology','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2361,'commerce','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2362,'physics','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2363,'chemistry','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2364,'economics','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2365,'irk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2366,'government','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2367,'history','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2368,'crk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2369,'physics','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:25','2019-03-16 12:35:39'),(2370,'mathematics','129.205.113.120',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:34','2019-03-16 12:33:03'),(2371,'commerce','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2372,'accounting','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2373,'chemistry','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2374,'englishlit','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2375,'civiledu','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2376,'insurance','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2377,'history','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2378,'english','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 12:33:00','2019-03-16 12:33:31'),(2379,'mathematics','105.178.112.15',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 13:18:33','2019-03-16 14:33:21'),(2380,'englishlit','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:40','2019-03-16 15:14:43'),(2381,'commerce','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:45','2019-03-16 15:15:22'),(2382,'history','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:47','2019-03-16 15:14:59'),(2383,'chemistry','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:49','2019-03-16 15:14:54'),(2384,'accounting','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:52','2019-03-16 15:15:17'),(2385,'civiledu','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:57','2019-03-16 15:15:01'),(2386,'insurance','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:15:19','2019-03-16 15:15:25'),(2387,'chemistry','40.77.167.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 18:24:33','2019-03-16 18:24:33'),(2388,'commerce','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2389,'accounting','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2390,'biology','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2391,'chemistry','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2392,'englishlit','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2393,'irk','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2394,'history','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2395,'mathematics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:53'),(2396,'accounting','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 08:48:07'),(2397,'biology','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:03:03'),(2398,'physics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:47'),(2399,'englishlit','100.24.30.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:02'),(2400,'currentaffairs','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:45'),(2401,'history','100.24.30.47',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:06'),(2402,'english','100.24.30.47',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:57:07','2019-03-17 09:11:58'),(2403,'economics','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:00:11'),(2404,'irk','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2405,'civiledu','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2406,'commerce','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2407,'crk','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2408,'geography','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2409,'english','3.93.187.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:32:15','2019-03-17 11:32:15'),(2410,'chemistry','37.9.87.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:48:48','2019-03-17 11:48:48'),(2411,'chemistry','94.130.237.95',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-18 23:20:28','2020-03-04 10:30:43'),(2412,'chemistry','46.229.168.133',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-19 07:43:34','2020-04-15 11:01:00'),(2413,'english','105.112.104.202',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 15:27:18','2019-03-19 15:27:19'),(2414,'chemistry','40.77.167.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 17:56:39','2019-03-19 17:56:39'),(2415,'chemistry','66.102.6.20',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 20:29:21','2019-03-19 20:29:22'),(2416,'chemistry','84.224.213.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 14:12:39','2019-03-20 14:12:39'),(2417,'english','105.112.104.10',340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:17:23','2019-03-20 20:12:29'),(2418,'irk','105.112.104.10',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:54:32','2019-03-20 19:54:32'),(2419,'accounting','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:07','2019-03-21 02:02:08'),(2420,'chemistry','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2421,'government','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2422,'geography','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2423,'irk','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2424,'currentaffairs','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2425,'history','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2426,'commerce','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2427,'biology','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2428,'chemistry','185.161.72.105',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 13:47:45','2019-03-21 13:47:45'),(2429,'english','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2430,'commerce','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2431,'physics','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2432,'government','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2433,'irk','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2434,'insurance','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2435,'currentaffairs','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2436,'physics','66.249.64.178',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-22 04:05:38','2019-09-25 11:24:23'),(2437,'chemistry','82.145.222.11',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 08:45:03','2019-03-22 08:53:13'),(2438,'crk','52.91.165.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 09:38:12','2019-03-22 09:38:12'),(2439,'economics','54.158.54.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 11:28:41','2019-03-22 11:28:41'),(2440,'history','54.90.213.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 12:47:11','2019-03-22 12:47:11'),(2441,'english','66.249.64.176',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:40:29','2019-04-12 08:26:44'),(2442,'commerce','66.249.64.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:50:23','2019-03-22 13:50:23'),(2443,'civiledu','66.249.64.178',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:55:48','2019-03-22 13:55:48'),(2444,'mathematics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2445,'chemistry','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2446,'crk','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2447,'geography','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2448,'economics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2449,'insurance','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2450,'history','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2451,'commerce','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2452,'physics','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2453,'englishlit','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:42'),(2454,'crk','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:00:30'),(2455,'economics','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2456,'irk','34.229.89.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2457,'history','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:43'),(2458,'english','34.229.89.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2459,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2460,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2461,'chemistry','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2462,'geography','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2463,'accounting','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2464,'civiledu','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2465,'insurance','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:42'),(2466,'currentaffairs','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:56'),(2467,'biology','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:37','2019-03-22 17:32:37'),(2468,'government','34.229.89.118',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:40','2019-03-22 17:32:45'),(2469,'mathematics','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:44','2019-03-22 17:32:44'),(2470,'english','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:18','2019-03-22 17:33:18'),(2471,'mathematics','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:19','2019-03-22 17:33:19'),(2472,'chemistry','41.191.107.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:21:08','2019-03-23 13:21:08'),(2473,'chemistry','41.191.107.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:44:44','2019-03-23 13:44:44'),(2474,'chemistry','129.205.112.163',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:17:58','2019-03-23 22:17:58'),(2475,'economics','129.205.112.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:18:49','2019-03-23 22:19:03'),(2476,'mathematics','197.210.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:44:13','2019-03-24 10:44:13'),(2477,'chemistry','197.210.226.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:46:33','2019-03-24 10:46:34'),(2478,'chemistry','197.211.53.242',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 10:42:54','2019-03-25 10:44:52'),(2479,'chemistry','41.203.117.95',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:03','2019-03-25 13:54:15'),(2480,'physics','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:28','2019-03-25 13:47:28'),(2481,'crk','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:13','2019-03-25 13:48:13'),(2482,'mathematics','41.203.117.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:31','2019-03-25 13:48:38'),(2483,'chemistry','41.203.117.96',143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:49:27','2019-03-25 14:31:34'),(2484,'accounting','41.203.117.96',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:30:45','2019-03-25 14:30:45'),(2485,'english','41.203.117.96',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:31:48','2019-03-25 14:31:48'),(2486,'currentaffairs','41.203.117.96',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:34:10','2019-03-28 05:33:36'),(2487,'english','105.112.46.123',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-26 13:20:41','2019-03-26 13:20:41'),(2488,'chemistry','46.229.168.153',58,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 15:28:52','2020-04-02 19:27:21'),(2489,'chemistry','46.229.168.140',6,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 21:40:59','2020-05-27 12:47:02'),(2490,'englishlit','41.80.214.85',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 06:56:24','2019-03-27 06:56:24'),(2491,'chemistry','73.59.41.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 21:49:59','2019-03-27 21:49:59'),(2492,'chemistry','41.203.72.196',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 08:11:19','2019-03-28 12:35:17'),(2493,'chemistry','40.77.167.104',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 15:19:42','2019-03-28 15:19:42'),(2494,'mathematics','129.205.112.28',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:06:58','2019-03-29 19:07:07'),(2495,'physics','129.205.112.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:07:30','2019-03-29 19:07:30'),(2496,'economics','3.80.51.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:44:22','2019-03-29 19:44:22'),(2497,'government','18.234.162.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 21:01:37','2019-03-29 21:01:37'),(2498,'chemistry','46.229.168.161',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-29 21:28:49','2019-12-18 04:07:27'),(2499,'irk','3.87.11.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 00:18:36','2019-03-30 00:18:36'),(2500,'geography','54.197.32.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 03:33:46','2019-03-30 03:33:46'),(2501,'biology','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:08:31','2019-03-30 08:08:31'),(2502,'insurance','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:26:32','2019-03-30 08:26:32'),(2503,'chemistry','3.84.72.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 02:49:20','2019-03-31 02:49:20'),(2504,'chemistry','34.204.94.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 04:43:23','2019-03-31 04:43:23'),(2505,'english','3.81.184.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 10:44:44','2019-03-31 10:44:44'),(2506,'chemistry','105.112.23.125',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:00:42','2019-03-31 13:15:36'),(2507,'english','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:09:11','2019-03-31 13:09:11'),(2508,'mathematics','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:11:16','2019-03-31 13:11:16'),(2509,'chemistry','197.211.47.194',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:03:32','2019-04-01 09:06:11'),(2510,'chemistry','41.76.196.129',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:06:31','2019-04-01 09:06:31'),(2511,'commerce','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2512,'biology','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2513,'government','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2514,'crk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2515,'irk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2516,'civiledu','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2517,'currentaffairs','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2518,'english','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:22','2019-04-02 02:07:22'),(2519,'biology','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:23','2019-04-02 02:07:27'),(2520,'commerce','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2521,'physics','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2522,'chemistry','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2523,'geography','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2524,'irk','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2525,'history','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2526,'government','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:28','2019-04-02 02:07:28'),(2527,'mathematics','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:41','2019-04-02 02:07:46'),(2528,'accounting','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2529,'englishlit','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2530,'currentaffairs','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:49'),(2531,'biology','3.86.140.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 04:02:20','2019-04-02 04:02:20'),(2532,'englishlit','3.94.89.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 06:08:13','2019-04-02 06:08:13'),(2533,'chemistry','41.184.180.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 08:54:01','2019-04-02 08:54:10'),(2534,'accounting','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:03:12','2019-04-02 10:03:12'),(2535,'government','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:26:32','2019-04-02 10:26:32'),(2536,'chemistry','207.46.13.126',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-02 13:11:18','2019-08-14 07:10:32'),(2537,'biology','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:17','2019-04-03 08:40:36'),(2538,'chemistry','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:29','2019-04-03 08:40:19'),(2539,'mathematics','105.112.44.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:41:16','2019-04-03 08:41:16'),(2540,'chemistry','209.97.150.141',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 09:48:38','2019-04-03 09:50:08'),(2541,'english','105.112.32.51',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:33','2019-04-03 11:02:48'),(2542,'biology','105.112.32.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:37','2019-04-03 11:02:37'),(2543,'chemistry','41.190.2.238',1555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:28:32','2019-04-03 11:47:36'),(2544,'mathematics','41.190.2.238',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:30:49','2019-04-03 11:30:49'),(2545,'physics','41.190.2.238',526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:47:52','2019-04-03 12:42:05'),(2546,'physics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:13:30','2019-04-03 15:13:31'),(2547,'chemistry','41.190.30.103',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:35:55','2019-04-03 15:36:14'),(2548,'mathematics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:39:13','2019-04-03 15:39:14'),(2549,'accounting','41.190.30.103',136,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:45:47','2019-04-03 15:46:17'),(2550,'economics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:49:22','2019-04-03 15:49:22'),(2551,'crk','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:51:56','2019-04-03 15:51:57'),(2552,'biology','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:54:17','2019-04-03 15:54:17'),(2553,'commerce','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:55:40','2019-04-03 15:55:40'),(2554,'government','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:58:11','2019-04-03 15:58:12'),(2555,'geography','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:00:47','2019-04-03 16:00:47'),(2556,'civiledu','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:02:39','2019-04-03 16:02:39'),(2557,'englishlit','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:05:21','2019-04-03 16:05:22'),(2558,'insurance','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:08:37','2019-04-03 16:08:38'),(2559,'currentaffairs','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:11:38','2019-04-03 16:11:38'),(2560,'history','41.190.30.103',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:14:03','2019-04-03 16:18:17'),(2561,'english','41.190.30.103',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:18:32','2019-04-03 16:20:28'),(2562,'government','41.190.2.134',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:33:07','2019-04-04 09:35:25'),(2563,'geography','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:38:24','2019-04-04 09:38:25'),(2564,'civiledu','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:39:50','2019-04-04 09:39:51'),(2565,'commerce','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:41:37','2019-04-04 09:41:37'),(2566,'crk','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:54:15','2019-04-04 09:54:16'),(2567,'economics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:57:56','2019-04-04 09:57:56'),(2568,'accounting','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:01:07','2019-04-04 10:01:07'),(2569,'mathematics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:06:55','2019-04-04 10:06:55'),(2570,'physics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:12:17','2019-04-04 10:12:17'),(2571,'history','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:21:45','2019-04-04 10:21:45'),(2572,'englishlit','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:24:08','2019-04-04 10:24:08'),(2573,'english','41.190.30.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:13:41','2019-04-04 13:13:42'),(2574,'mathematics','41.190.3.233',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:54:16','2019-04-04 13:54:16'),(2575,'chemistry','41.190.3.233',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:55:19','2019-04-04 13:55:19'),(2576,'chemistry','185.22.187.7',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 15:25:03','2019-04-04 15:25:20'),(2577,'chemistry','37.9.87.166',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-05 14:29:44','2019-10-25 17:45:28'),(2578,'irk','54.196.110.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 15:52:32','2019-04-05 15:52:32'),(2579,'mathematics','197.210.44.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:32','2019-04-05 16:49:32'),(2580,'chemistry','197.210.44.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:34','2019-04-05 16:49:34'),(2581,'chemistry','197.210.44.111',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:50:28','2019-04-05 16:51:41'),(2582,'chemistry','197.210.47.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:54:08','2019-04-05 16:54:09'),(2583,'chemistry','52.90.61.82',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:21:23','2019-04-05 18:36:20'),(2584,'currentaffairs','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:23:14','2019-04-05 18:23:14'),(2585,'crk','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:36:17','2019-04-05 18:36:17'),(2586,'civiledu','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:02','2019-04-05 18:37:02'),(2587,'english','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:32','2019-04-05 18:37:32'),(2588,'chemistry','157.55.39.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:59:25','2019-07-19 10:24:33'),(2589,'physics','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:17','2019-04-05 19:08:17'),(2590,'biology','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:21','2019-04-05 19:08:21'),(2591,'currentaffairs','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:29:36','2019-04-05 20:29:36'),(2592,'insurance','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:35:29','2019-04-05 20:35:29'),(2593,'physics','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:38:52','2019-04-05 21:38:52'),(2594,'irk','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:43:07','2019-04-05 21:43:07'),(2595,'chemistry','54.91.42.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:01','2019-04-05 21:54:36'),(2596,'commerce','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:13','2019-04-05 21:45:13'),(2597,'civiledu','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:50:08','2019-04-05 21:50:08'),(2598,'history','35.172.115.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 01:23:16','2019-04-06 01:23:16'),(2599,'currentaffairs','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:01','2019-04-06 03:46:01'),(2600,'crk','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:30','2019-04-06 03:46:30'),(2601,'englishlit','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 04:05:47','2019-04-06 04:05:47'),(2602,'accounting','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:26:27','2019-04-06 07:26:27'),(2603,'physics','3.85.62.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:19','2019-04-06 07:42:57'),(2604,'civiledu','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:26','2019-04-06 07:36:26'),(2605,'mathematics','197.210.61.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 14:29:44','2019-04-06 14:29:45'),(2606,'chemistry','207.46.13.167',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-06 18:40:36','2019-10-27 04:49:17'),(2607,'commerce','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2608,'accounting','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2609,'biology','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2610,'economics','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2611,'irk','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2612,'insurance','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2613,'currentaffairs','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2614,'english','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:24:22'),(2615,'mathematics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:02'),(2616,'biology','3.90.165.250',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:28'),(2617,'chemistry','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:47'),(2618,'government','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:16'),(2619,'geography','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:37'),(2620,'economics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:15'),(2621,'chemistry','141.0.13.241',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:16:18','2019-04-07 11:17:09'),(2622,'chemistry','105.112.104.108',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:17:50','2019-04-07 11:53:35'),(2623,'chemistry','82.145.222.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:22:54','2019-04-07 11:22:54'),(2624,'mathematics','105.112.104.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:46:52','2019-04-07 11:46:52'),(2625,'biology','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:15:42','2019-04-07 12:15:42'),(2626,'accounting','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:17:42','2019-04-07 12:17:42'),(2627,'chemistry','105.112.104.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:26:42','2019-04-07 13:27:24'),(2628,'biology','105.112.104.18',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:27:54','2019-04-07 13:28:33'),(2629,'mathematics','105.112.104.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:29:59','2019-04-07 13:29:59'),(2630,'chemistry','185.26.180.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:00:35','2019-04-07 16:00:35'),(2631,'chemistry','105.112.106.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:02:56','2019-04-07 16:02:56'),(2632,'chemistry','105.112.43.80',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 17:41:13','2019-04-07 17:41:38'),(2633,'chemistry','105.112.104.114',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:43:25','2019-04-08 04:55:15'),(2634,'mathematics','105.112.104.114',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:51:11','2019-04-08 04:51:12'),(2635,'chemistry','105.112.34.168',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 05:14:41','2019-04-08 05:14:55'),(2636,'chemistry','105.112.104.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 07:59:31','2019-04-08 07:59:31'),(2637,'chemistry','41.205.240.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:19:15','2019-04-09 00:19:15'),(2638,'economics','3.86.54.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:39:42','2019-04-09 00:39:42'),(2639,'commerce','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:29:18'),(2640,'accounting','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2641,'physics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2642,'crk','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2643,'economics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:23:09'),(2644,'insurance','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:44'),(2645,'history','3.88.201.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:56'),(2646,'mathematics','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:44:33','2019-04-09 09:44:33'),(2647,'accounting','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:54:57','2019-04-09 09:54:57'),(2648,'accounting','3.87.215.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 12:06:38','2019-04-09 12:06:38'),(2649,'physics','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:22','2019-04-09 17:06:22'),(2650,'economics','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:23','2019-04-09 17:05:23'),(2651,'accounting','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:47','2019-04-09 17:05:47'),(2652,'crk','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:57','2019-04-09 17:06:07'),(2653,'chemistry','207.46.13.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 02:00:09','2019-04-10 02:00:09'),(2654,'irk','54.173.242.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:23:34','2019-04-10 07:23:40'),(2655,'commerce','54.173.242.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:48:23','2019-04-10 07:48:23'),(2656,'government','54.147.61.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 09:44:06','2019-04-10 09:44:06'),(2657,'geography','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2658,'government','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2659,'economics','3.93.241.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 12:17:07','2019-04-10 12:17:07'),(2660,'irk','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:56','2019-04-10 14:28:56'),(2661,'history','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:57','2019-04-10 14:28:57'),(2662,'irk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:31','2019-04-10 15:59:53'),(2663,'accounting','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:33','2019-04-10 16:03:21'),(2664,'economics','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:47','2019-04-10 16:02:08'),(2665,'currentaffairs','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:51','2019-04-10 16:01:26'),(2666,'insurance','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:10','2019-04-10 16:01:37'),(2667,'biology','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:18','2019-04-10 16:02:37'),(2668,'commerce','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:48','2019-04-10 16:02:17'),(2669,'civiledu','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:49','2019-04-10 16:02:48'),(2670,'crk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:56','2019-04-10 16:02:27'),(2671,'government','3.80.78.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:02:58','2019-04-10 16:02:58'),(2672,'chemistry','207.46.13.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:32:08','2019-04-10 17:32:08'),(2673,'chemistry','66.249.69.48',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:41:29','2019-04-10 17:41:29'),(2674,'insurance','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:38:05','2019-04-10 18:38:05'),(2675,'civiledu','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:44:01','2019-04-10 18:44:01'),(2676,'irk','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:58:11','2019-04-10 18:58:11'),(2677,'government','3.87.45.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 20:21:49','2019-04-10 20:21:49'),(2678,'government','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:40','2019-04-10 22:50:40'),(2679,'geography','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:42','2019-04-10 22:50:42'),(2680,'english','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2681,'chemistry','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2682,'englishlit','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2683,'crk','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2684,'economics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:46'),(2685,'irk','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2686,'insurance','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2687,'biology','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:15','2019-04-11 00:10:18'),(2688,'mathematics','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:20','2019-04-11 00:11:23'),(2689,'government','54.86.96.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:30','2019-04-11 00:10:30'),(2690,'physics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:33','2019-04-11 00:11:18'),(2691,'accounting','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2692,'geography','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2693,'civiledu','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2694,'economics','3.93.17.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 02:50:27','2019-04-11 02:50:27'),(2695,'chemistry','197.253.24.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 10:49:51','2019-04-11 10:49:51'),(2696,'chemistry','157.55.39.202',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-11 12:13:39','2019-08-25 13:52:51'),(2697,'insurance','54.88.86.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 17:31:52','2019-04-11 17:31:52'),(2698,'chemistry','121.201.98.53',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 20:36:45','2019-04-11 20:36:50'),(2699,'english','41.191.107.216',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 06:44:42','2019-04-14 21:10:37'),(2700,'mathematics','41.191.104.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:09:38','2019-04-12 07:09:38'),(2701,'mathematics','41.191.107.41',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:45:52','2019-04-16 10:48:23'),(2702,'mathematics','41.191.107.131',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:54:27','2019-04-12 07:55:42'),(2703,'mathematics','41.191.104.115',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:01:58','2019-04-12 08:16:36'),(2704,'mathematics','41.191.107.49',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:17:28','2019-04-13 06:52:57'),(2705,'mathematics','41.191.104.102',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:25:53','2019-04-12 08:25:53'),(2706,'mathematics','66.249.64.180',125,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:28:03','2019-09-25 10:59:54'),(2707,'accounting','66.249.64.178',100,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:46:02','2019-09-30 03:38:01'),(2708,'chemistry','207.46.13.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:56:53','2019-04-12 08:56:53'),(2709,'mathematics','41.191.107.34',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:03:02','2019-04-13 23:22:24'),(2710,'english','41.191.107.34',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:06:00','2019-04-13 23:48:54'),(2711,'english','105.112.104.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 14:42:37','2019-04-12 14:42:37'),(2712,'chemistry','46.229.168.163',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 16:31:11','2020-04-13 20:58:16'),(2713,'mathematics','41.191.107.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:36:57','2019-04-13 06:40:11'),(2714,'mathematics','41.191.107.151',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:42:48','2019-04-15 12:15:35'),(2715,'english','41.191.107.49',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:53:45','2019-04-13 06:53:45'),(2716,'mathematics','41.191.107.229',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:15:13','2019-04-13 07:17:41'),(2717,'english','41.191.104.98',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:23:28','2019-04-13 07:26:33'),(2718,'mathematics','41.191.104.123',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:28:03','2019-04-13 07:33:06'),(2719,'english','41.191.107.56',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:34:59','2019-04-13 07:41:26'),(2720,'mathematics','41.191.107.56',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:35:12','2019-04-13 07:36:14'),(2721,'english','41.191.107.38',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:01:35','2019-04-15 22:19:39'),(2722,'mathematics','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:14:24','2019-04-13 08:22:39'),(2723,'mathematics','41.191.107.200',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:13:40','2019-04-13 15:16:42'),(2724,'english','41.191.104.245',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:19:40','2019-04-13 15:21:22'),(2725,'mathematics','41.191.104.245',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:20:48','2019-04-13 15:36:18'),(2726,'english','41.191.104.126',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:41:45','2019-04-13 16:13:10'),(2727,'biology','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:10:57','2019-04-13 16:10:57'),(2728,'mathematics','41.191.107.202',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:15:56','2019-04-15 09:45:36'),(2729,'english','41.191.107.202',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:18:30','2019-04-18 12:32:41'),(2730,'mathematics','41.191.107.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:27:24','2019-04-13 16:30:57'),(2731,'english','41.191.107.192',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:32:20','2019-04-14 16:42:26'),(2732,'english','41.191.107.207',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:35:14','2019-04-13 16:35:15'),(2733,'english','41.191.107.57',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:38:16','2019-04-14 18:25:42'),(2734,'biology','41.191.107.57',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:42:04','2019-04-13 16:42:04'),(2735,'english','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:06:49','2019-04-13 17:06:49'),(2736,'history','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:14:30','2019-04-13 17:14:30'),(2737,'english','41.191.107.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:03:33','2019-04-13 20:03:33'),(2738,'mathematics','41.191.104.69',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:53:34','2019-04-13 20:53:34'),(2739,'chemistry','68.38.183.43',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:59:58','2019-04-13 20:59:58'),(2740,'english','41.191.104.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:20:44','2019-04-17 07:51:45'),(2741,'mathematics','41.191.104.66',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:24:15','2019-04-14 05:46:29'),(2742,'english','41.191.107.150',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:03:19','2019-04-14 22:45:16'),(2743,'english','41.191.107.152',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:11:07','2019-04-13 22:21:17'),(2744,'mathematics','41.191.107.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:17:02','2019-04-13 22:17:02'),(2745,'english','41.191.107.200',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:23:24','2019-04-13 22:26:39'),(2746,'english','41.191.104.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:39:29','2019-04-13 22:41:41'),(2747,'english','41.191.107.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:51:32','2019-04-13 22:51:32'),(2748,'mathematics','41.191.107.222',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:54:57','2019-04-18 15:45:59'),(2749,'english','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:00:50','2019-04-13 23:00:50'),(2750,'english','41.191.107.137',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:32:04','2019-04-13 23:35:00'),(2751,'englishlit','18.232.74.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:13','2019-04-13 23:36:13'),(2752,'biology','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:44','2019-04-13 23:36:44'),(2753,'english','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:40:56','2019-04-13 23:40:56'),(2754,'mathematics','41.191.107.37',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:58:26','2019-04-14 00:21:39'),(2755,'biology','41.191.107.37',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:01:19','2019-04-14 00:01:19'),(2756,'english','41.191.107.37',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:09:50','2019-04-14 00:17:04'),(2757,'chemistry','157.55.39.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 04:27:16','2019-04-14 04:27:16'),(2758,'mathematics','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:15:55','2019-04-15 21:56:33'),(2759,'mathematics','41.191.104.105',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:19:56','2019-04-16 13:49:06'),(2760,'english','41.191.104.105',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:23:15','2019-04-16 14:41:34'),(2761,'english','41.191.104.247',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:34:00','2019-04-14 21:59:12'),(2762,'mathematics','41.191.107.39',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:52:06','2019-04-14 06:52:06'),(2763,'english','41.191.107.39',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:53:36','2019-04-16 11:08:43'),(2764,'mathematics','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:59:07','2019-04-14 06:59:07'),(2765,'english','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:01:04','2019-04-14 07:01:04'),(2766,'english','41.191.104.211',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:07:58','2019-04-17 08:04:27'),(2767,'english','41.191.104.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:15:46','2019-04-14 07:19:13'),(2768,'english','41.191.104.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:30:14','2019-04-14 07:32:46'),(2769,'chemistry','37.9.87.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 09:45:40','2019-04-14 09:45:40'),(2770,'irk','52.90.216.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 10:20:51','2019-04-14 10:20:51'),(2771,'biology','3.81.103.16',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 11:31:56','2019-04-19 04:55:11'),(2772,'accounting','34.204.107.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:03:29','2019-04-14 13:03:29'),(2773,'biology','41.191.107.44',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:11','2019-04-14 13:49:11'),(2774,'mathematics','41.191.107.44',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:49','2019-04-14 13:50:03'),(2775,'mathematics','41.191.104.250',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:35','2019-04-18 08:49:17'),(2776,'biology','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:42','2019-04-14 13:53:42'),(2777,'chemistry','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:47','2019-04-14 13:53:47'),(2778,'englishlit','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:18:28','2019-04-14 16:18:28'),(2779,'geography','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:22:19','2019-04-14 16:22:19'),(2780,'english','41.191.104.212',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:35:03','2019-04-17 05:50:48'),(2781,'english','41.191.107.136',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:55:31','2019-04-14 16:55:31'),(2782,'geography','54.152.49.211',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:59:08','2019-04-14 16:59:51'),(2783,'english','41.191.104.71',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:06:18','2019-04-14 17:13:26'),(2784,'english','41.191.104.116',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:16:25','2019-04-17 08:38:00'),(2785,'mathematics','41.191.104.116',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:25:32','2019-04-14 22:10:15'),(2786,'english','41.191.104.119',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:30:02','2019-04-14 17:44:00'),(2787,'english','41.191.107.55',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:47:44','2019-04-14 17:51:39'),(2788,'english','41.191.104.108',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:55:26','2019-04-14 18:02:51'),(2789,'english','41.191.107.205',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:07:34','2019-04-14 18:17:06'),(2790,'mathematics','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:30:52','2019-04-16 10:27:56'),(2791,'english','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:36:07','2019-04-16 10:29:42'),(2792,'english','41.191.104.240',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:37:18','2019-04-17 08:43:35'),(2793,'biology','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:48:01','2019-04-14 18:48:01'),(2794,'english','41.191.107.219',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:52:14','2019-04-14 18:52:15'),(2795,'english','41.191.107.129',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:56:38','2019-04-14 19:01:32'),(2796,'currentaffairs','3.90.232.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:06','2019-04-14 19:07:06'),(2797,'english','41.191.107.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:18','2019-04-14 19:09:59'),(2798,'english','41.191.104.227',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:14:06','2019-04-14 19:15:42'),(2799,'english','41.191.104.253',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:24:38','2019-04-14 19:24:38'),(2800,'english','41.191.104.112',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:46:42','2019-04-14 19:49:06'),(2801,'english','41.191.104.125',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:52:06','2019-04-14 19:52:07'),(2802,'english','41.191.104.252',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:13:43','2019-04-14 21:20:04'),(2803,'english','41.191.104.87',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:36:40','2019-04-14 21:43:10'),(2804,'english','41.191.107.237',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:45:45','2019-04-18 12:38:45'),(2805,'english','41.191.104.244',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:52:54','2019-04-14 21:58:31'),(2806,'chemistry','41.191.104.247',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:47','2019-04-14 21:59:47'),(2807,'biology','41.191.104.247',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:57','2019-04-14 22:02:53'),(2808,'biology','41.191.104.116',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:07:01','2019-04-14 22:10:51'),(2809,'currentaffairs','54.83.92.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:19:54','2019-04-14 22:19:54'),(2810,'english','41.191.107.43',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:31:31','2019-04-14 22:37:38'),(2811,'biology','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:38:27','2019-04-14 22:38:27'),(2812,'english','41.191.104.236',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:47:43','2019-04-14 22:51:24'),(2813,'english','41.191.107.215',86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:57:31','2019-04-21 07:04:12'),(2814,'english','41.191.104.122',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 23:14:59','2019-04-14 23:16:16'),(2815,'currentaffairs','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 04:56:40','2019-04-15 04:56:40'),(2816,'biology','41.191.104.236',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:06:52','2019-04-15 05:06:52'),(2817,'biology','41.191.107.143',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:09:27','2019-04-15 05:09:27'),(2818,'english','41.191.107.143',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:10:01','2019-04-17 21:35:39'),(2819,'chemistry','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:25:39','2019-04-15 05:25:39'),(2820,'chemistry','197.210.45.192',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:57:49','2019-04-15 05:58:34'),(2821,'english','41.191.107.151',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:44:16','2019-04-15 12:15:57'),(2822,'mathematics','41.191.104.230',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:47:22','2019-04-15 06:47:22'),(2823,'chemistry','100.24.41.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:39:29','2019-04-15 08:39:29'),(2824,'economics','100.24.41.153',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:41:00','2019-04-15 08:46:51'),(2825,'mathematics','41.191.107.45',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:19:04','2019-04-15 09:19:04'),(2826,'english','41.191.107.45',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:21:49','2019-04-15 09:23:48'),(2827,'physics','41.191.107.202',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:44:31','2019-04-15 09:44:31'),(2828,'accounting','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:45','2019-04-15 10:30:45'),(2829,'insurance','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:59','2019-04-15 10:30:59'),(2830,'accounting','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:29','2019-04-15 12:13:29'),(2831,'biology','54.146.247.244',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:34','2019-04-15 12:16:32'),(2832,'biology','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:17:48','2019-04-15 12:17:48'),(2833,'government','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:19:13','2019-04-15 12:19:13'),(2834,'mathematics','41.191.104.246',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:58:00','2019-04-15 12:58:00'),(2835,'english','41.191.104.246',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 13:05:40','2019-04-15 13:27:26'),(2836,'english','41.191.107.235',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:15:42','2019-04-15 14:15:42'),(2837,'english','41.191.107.149',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:19:44','2019-04-15 14:20:56'),(2838,'english','41.191.104.248',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:29:00','2019-04-15 14:31:19'),(2839,'english','41.191.107.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:32:49','2019-04-19 06:55:21'),(2840,'english','41.191.104.235',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:42:02','2019-04-17 08:31:05'),(2841,'mathematics','41.191.104.235',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:44:03','2019-04-15 14:44:48'),(2842,'english','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:39:05','2019-04-15 21:39:05'),(2843,'mathematics','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:41:15','2019-04-15 21:41:15'),(2844,'english','41.191.104.83',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:47:14','2019-04-15 21:48:53'),(2845,'english','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:51:15','2019-04-15 21:53:42'),(2846,'mathematics','41.191.107.201',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:59:07','2019-04-15 21:59:07'),(2847,'english','41.191.107.201',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:01:58','2019-04-15 22:03:34'),(2848,'mathematics','41.191.104.80',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:08:37','2019-04-18 08:45:25'),(2849,'english','41.191.104.80',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:11:48','2019-04-15 22:11:48'),(2850,'mathematics','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:24:37','2019-04-15 22:24:37'),(2851,'english','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:26:42','2019-04-15 22:26:42'),(2852,'mathematics','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2853,'commerce','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2854,'biology','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2855,'physics','34.207.128.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2856,'economics','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2857,'irk','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2858,'civiledu','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2859,'accounting','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2860,'chemistry','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:37:13'),(2861,'currentaffairs','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2862,'english','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2863,'government','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2864,'crk','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2865,'biology','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2866,'mathematics','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2867,'english','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2868,'chemistry','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2869,'government','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2870,'crk','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2871,'economics','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2872,'englishlit','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2873,'geography','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2874,'irk','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2875,'civiledu','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2876,'insurance','3.91.220.96',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2877,'insurance','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2878,'history','3.91.220.96',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2879,'history','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2880,'mathematics','54.224.201.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:37:58','2019-04-16 03:10:18'),(2881,'english','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2882,'accounting','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2883,'englishlit','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2884,'government','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2885,'crk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2886,'currentaffairs','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:59:59'),(2887,'commerce','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2888,'geography','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2889,'economics','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2890,'irk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2891,'civiledu','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2892,'history','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2893,'biology','54.224.201.145',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 03:10:11','2019-04-16 03:10:17'),(2894,'mathematics','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:12:18','2019-04-16 09:12:18'),(2895,'biology','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:29:02','2019-04-16 09:29:02'),(2896,'english','41.191.104.232',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:42:38','2019-04-16 09:48:20'),(2897,'english','41.191.107.41',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:49:42','2019-04-16 10:49:42'),(2898,'english','41.191.104.94',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:52:36','2019-04-16 11:05:20'),(2899,'mathematics','41.191.104.94',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:01:04','2019-04-16 13:37:18'),(2900,'english','41.191.107.223',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:14:00','2019-04-16 11:14:00'),(2901,'english','41.191.104.243',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:01:15','2019-04-16 13:01:15'),(2902,'english','41.191.104.113',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:04:04','2019-04-22 16:45:32'),(2903,'chemistry','157.55.39.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:39:34','2019-04-16 14:39:34'),(2904,'irk','54.226.182.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:47:43','2019-04-16 14:47:43'),(2905,'english','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:32:59'),(2906,'mathematics','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:46'),(2907,'accounting','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:50'),(2908,'biology','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:08'),(2909,'chemistry','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:33'),(2910,'currentaffairs','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:17'),(2911,'history','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:26'),(2912,'english','41.191.107.232',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-16 22:12:50','2020-01-17 15:50:46'),(2913,'mathematics','41.191.107.48',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:08:33','2019-04-17 05:08:33'),(2914,'english','41.191.107.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:11:56','2019-04-17 05:21:50'),(2915,'english','41.191.104.209',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:29:28','2019-04-17 05:35:08'),(2916,'english','41.191.104.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:38:16','2019-04-17 05:43:44'),(2917,'english','41.191.104.101',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:55:22','2019-04-17 05:57:06'),(2918,'english','41.191.104.215',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:08:35','2019-04-17 08:14:14'),(2919,'english','41.191.104.229',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:15:48','2019-04-17 08:15:48'),(2920,'english','41.191.107.157',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:54:44','2019-04-17 09:04:13'),(2921,'english','41.191.104.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:09:49','2019-04-17 09:14:17'),(2922,'english','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:34'),(2923,'mathematics','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:47'),(2924,'accounting','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2925,'englishlit','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:17'),(2926,'crk','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2927,'civiledu','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2928,'history','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:43'),(2929,'english','41.191.107.158',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:17:03','2019-04-17 09:21:36'),(2930,'english','41.191.104.79',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:43:16','2019-04-17 09:52:06'),(2931,'economics','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:54:34','2019-04-17 09:54:34'),(2932,'english','41.191.107.212',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:58:06','2019-04-18 18:02:13'),(2933,'biology','41.191.107.212',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:26','2019-04-17 10:10:02'),(2934,'chemistry','41.242.60.178',3655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:43','2019-04-18 16:24:22'),(2935,'mathematics','41.242.60.178',4368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:06:02','2019-04-18 16:14:42'),(2936,'history','41.191.107.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:11:59','2019-04-17 10:17:23'),(2937,'geography','41.242.60.178',4586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:46:59','2019-04-18 15:58:23'),(2938,'biology','41.242.60.178',3792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:47:33','2019-04-18 16:20:34'),(2939,'english','41.191.104.97',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 14:41:16','2019-04-17 14:41:16'),(2940,'chemistry','105.112.120.90',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:08','2019-04-17 19:01:28'),(2941,'crk','105.112.120.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:50','2019-04-17 18:54:50'),(2942,'chemistry','107.167.107.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:06:47','2019-04-18 08:06:48'),(2943,'english','41.242.60.178',10980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:10:26','2019-04-18 15:55:34'),(2944,'mathematics','105.112.22.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:05:20','2019-04-18 11:05:20'),(2945,'crk','41.242.60.178',5752,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:17:29','2019-04-18 15:57:03'),(2946,'chemistry','207.46.13.94',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-18 11:50:50','2019-12-16 22:19:20'),(2947,'chemistry','207.46.13.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:28','2019-04-18 11:52:29'),(2948,'chemistry','207.46.13.91',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:51','2019-04-18 11:52:52'),(2949,'chemistry','207.46.13.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:53:29','2019-04-18 11:53:29'),(2950,'english','104.133.10.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 12:22:48','2019-04-18 12:22:49'),(2951,'economics','41.242.60.178',4544,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:20','2019-04-18 15:59:44'),(2952,'irk','41.242.60.178',3510,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:42','2019-04-18 16:01:01'),(2953,'civiledu','41.242.60.178',4680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:03','2019-04-18 16:02:40'),(2954,'currentaffairs','41.242.60.178',4120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:25','2019-04-18 16:29:06'),(2955,'history','41.242.60.178',4000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:46','2019-04-18 16:13:14'),(2956,'commerce','41.242.60.178',4160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:30','2019-04-18 16:16:35'),(2957,'accounting','41.242.60.178',3955,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:52','2019-04-18 16:18:32'),(2958,'physics','41.242.60.178',3529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:35:37','2019-04-18 16:22:15'),(2959,'englishlit','41.242.60.178',3287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:20','2019-04-18 16:26:08'),(2960,'government','41.242.60.178',2998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:42','2019-04-18 16:27:48'),(2961,'english','41.191.104.254',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:11:36','2019-04-18 18:05:09'),(2962,'english','41.191.104.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:14:50','2019-04-18 15:14:50'),(2963,'english','41.191.107.222',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:36:08','2019-04-18 15:37:19'),(2964,'english','41.191.107.203',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:47:57','2019-04-28 08:22:11'),(2965,'mathematics','41.191.107.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:08:54','2019-04-18 16:08:54'),(2966,'english','41.191.107.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:11:13','2019-04-18 16:11:13'),(2967,'english','18.205.17.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:14:02','2019-04-18 17:14:02'),(2968,'crk','105.112.120.55',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:31:40','2019-04-18 17:32:05'),(2969,'english','41.191.104.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:37:57','2019-04-18 17:39:42'),(2970,'history','3.87.15.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 20:46:27','2019-04-18 20:46:27'),(2971,'chemistry','54.36.150.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 00:33:38','2019-04-19 00:33:38'),(2972,'mathematics','41.191.104.212',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:14:26','2019-04-19 03:14:26'),(2973,'biology','41.191.104.123',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:26:07','2019-04-19 03:26:39'),(2974,'currentaffairs','50.17.23.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:47:16','2019-04-19 03:47:16'),(2975,'economics','54.211.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 08:17:33','2019-04-19 08:17:33'),(2976,'chemistry','105.112.53.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:25:47','2019-04-19 11:25:47'),(2977,'english','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:28','2019-04-19 11:43:28'),(2978,'mathematics','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:34','2019-04-19 11:43:35'),(2979,'chemistry','129.56.87.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:45:39','2019-04-19 11:45:39'),(2980,'english','150.70.168.140',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:52:20','2019-04-19 11:52:20'),(2981,'chemistry','45.56.148.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:08:00','2019-04-19 12:08:00'),(2982,'chemistry','197.210.29.247',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:11:16','2019-04-19 12:11:16'),(2983,'chemistry','41.203.78.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:30:23','2019-04-19 12:31:44'),(2984,'chemistry','54.36.150.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 15:16:27','2019-04-19 15:16:27'),(2985,'chemistry','197.210.226.150',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:13:39','2019-04-19 17:13:39'),(2986,'chemistry','197.210.227.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:14:17','2019-04-19 17:14:17'),(2987,'chemistry','141.0.12.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 19:46:58','2019-04-19 19:46:58'),(2988,'chemistry','105.112.37.27',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:20:05','2019-04-19 21:26:36'),(2989,'physics','105.112.37.27',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:27:16','2019-04-19 21:28:59'),(2990,'chemistry','141.0.13.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:52:32','2019-04-19 21:52:32'),(2991,'chemistry','129.205.112.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:54:09','2019-04-19 21:54:09'),(2992,'chemistry','54.36.148.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 22:05:06','2019-04-19 22:05:06'),(2993,'accounting','3.81.231.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 03:16:50','2019-04-20 03:16:50'),(2994,'chemistry','197.210.53.127',62,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:17:30','2020-05-25 11:23:46'),(2995,'chemistry','46.229.168.145',6,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:50:25','2020-02-23 12:52:02'),(2996,'physics','3.84.223.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 06:58:19','2019-04-20 06:58:19'),(2997,'chemistry','129.205.112.93',82,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 07:41:38','2019-08-22 14:35:12'),(2998,'chemistry','54.36.149.78',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 10:51:52','2019-04-20 10:51:52'),(2999,'chemistry','197.210.45.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 11:27:41','2019-04-20 11:27:41'),(3000,'chemistry','141.0.13.88',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 12:34:07','2019-09-06 19:28:17'),(3001,'chemistry','197.149.95.94',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 14:34:54','2019-04-20 14:35:18'),(3002,'chemistry','197.210.52.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:06:20','2019-04-20 15:06:53'),(3003,'chemistry','197.210.53.251',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:07:19','2019-04-20 15:08:04'),(3004,'chemistry','105.112.68.65',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 18:16:36','2019-04-20 18:17:01'),(3005,'chemistry','213.205.240.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 20:44:50','2019-04-20 20:44:50'),(3006,'biology','66.249.69.154',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 01:47:39','2019-04-21 01:47:40'),(3007,'mathematics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:24','2019-04-21 02:39:48'),(3008,'commerce','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3009,'accounting','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3010,'physics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3011,'chemistry','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3012,'government','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3013,'geography','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:49'),(3014,'irk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3015,'currentaffairs','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:39','2019-04-21 02:39:41'),(3016,'biology','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:48','2019-04-21 02:39:48'),(3017,'crk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3018,'economics','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3019,'english','54.162.77.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:51','2019-04-21 02:39:51'),(3020,'chemistry','207.46.13.23',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 06:08:10','2019-04-21 06:08:10'),(3021,'chemistry','40.77.167.30',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 07:33:49','2019-04-21 07:33:49'),(3022,'chemistry','197.210.52.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:52:14','2019-04-21 20:54:39'),(3023,'mathematics','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:06','2019-04-21 20:54:06'),(3024,'chemistry','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:30','2019-04-21 20:54:30'),(3025,'chemistry','3.95.160.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:01:30','2019-04-21 21:01:30'),(3026,'mathematics','197.210.52.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:08:15','2019-04-21 21:08:15'),(3027,'geography','18.212.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 22:48:55','2019-04-21 22:48:55'),(3028,'english','3.90.10.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 00:18:21','2019-04-22 00:18:21'),(3029,'mathematics','41.191.104.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:45:03','2019-04-22 16:45:03'),(3030,'biology','41.191.104.113',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:47:55','2019-04-22 16:47:55'),(3031,'chemistry','54.36.149.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 18:08:13','2019-04-22 18:08:13'),(3032,'economics','3.91.230.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 21:54:59','2019-04-22 21:54:59'),(3033,'english','3.92.201.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 00:59:05','2019-04-23 00:59:05'),(3034,'biology','66.249.66.158',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 01:15:09','2019-07-28 01:21:20'),(3035,'mathematics','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:10','2019-04-23 03:28:10'),(3036,'civiledu','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:12','2019-04-23 03:28:12'),(3037,'physics','18.212.208.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:29:49','2019-04-23 04:14:14'),(3038,'commerce','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:49:07','2019-04-23 03:49:07'),(3039,'crk','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:57:30','2019-04-23 03:57:30'),(3040,'history','54.159.47.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 21:59:22','2019-04-23 21:59:22'),(3041,'irk','52.204.101.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 03:42:30','2019-04-24 03:42:30'),(3042,'chemistry','207.46.13.180',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:12','2019-04-24 08:03:12'),(3043,'chemistry','207.46.13.159',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:17','2019-04-24 08:03:17'),(3044,'chemistry','207.46.13.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:22','2019-04-24 08:03:22'),(3045,'chemistry','207.46.13.87',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:28','2019-08-04 15:43:48'),(3046,'english','66.249.66.158',87,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-25 18:26:25','2020-01-23 20:32:43'),(3047,'chemistry','1.127.110.152',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 00:54:05','2019-04-26 00:54:20'),(3048,'chemistry','40.77.167.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 03:53:28','2019-04-26 03:53:28'),(3049,'currentaffairs','3.90.189.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 05:24:35','2019-04-26 05:24:35'),(3050,'chemistry','197.210.44.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 10:16:42','2019-04-26 10:16:42'),(3051,'chemistry','1.127.106.232',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:04:42','2019-04-26 12:04:42'),(3052,'physics','1.127.106.232',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:40:22','2019-04-26 12:47:18'),(3053,'chemistry','46.229.168.138',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-26 13:52:16','2020-02-26 17:26:37'),(3054,'mathematics','1.127.109.88',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:09:51','2019-04-27 00:22:30'),(3055,'commerce','1.127.109.88',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:23:12','2019-04-27 00:24:06'),(3056,'biology','1.127.109.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:47:44','2019-04-27 00:47:44'),(3057,'chemistry','40.77.167.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:58:09','2019-04-27 00:58:09'),(3058,'physics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:19'),(3059,'english','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:06'),(3060,'government','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3061,'accounting','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3062,'biology','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3063,'crk','3.89.242.31',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3064,'chemistry','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3065,'geography','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:14'),(3066,'englishlit','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3067,'economics','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3068,'irk','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3069,'currentaffairs','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3070,'history','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3071,'mathematics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:22','2019-04-27 01:11:29'),(3072,'commerce','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:31','2019-04-27 01:12:19'),(3073,'biology','100.25.216.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 02:25:13','2019-04-27 02:25:13'),(3074,'crk','3.82.139.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 06:35:55','2019-04-27 06:35:55'),(3075,'chemistry','46.229.168.154',17,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-27 07:27:19','2020-03-26 03:24:26'),(3076,'commerce','52.91.249.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 08:35:06','2019-04-27 08:35:06'),(3077,'currentaffairs','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 09:50:55','2019-04-27 09:50:55'),(3078,'chemistry','154.118.65.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:30','2019-04-27 10:57:30'),(3079,'commerce','34.228.140.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:38','2019-04-27 10:57:38'),(3080,'biology','1.127.106.17',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:45:45','2019-04-27 12:46:43'),(3081,'mathematics','1.127.106.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:47:05','2019-04-27 12:48:52'),(3082,'englishlit','52.23.198.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 13:44:10','2019-04-27 13:44:10'),(3083,'chemistry','66.249.73.80',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 21:38:40','2019-04-27 21:38:40'),(3084,'mathematics','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3085,'english','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3086,'accounting','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3087,'physics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3088,'chemistry','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3089,'biology','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3090,'government','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3091,'economics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3092,'civiledu','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3093,'insurance','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:12'),(3094,'chemistry','41.203.78.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 08:55:23','2019-04-28 08:55:37'),(3095,'chemistry','41.190.2.64',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:52:36','2019-04-28 11:56:48'),(3096,'chemistry','41.190.3.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:56:16','2019-04-28 11:56:16'),(3097,'chemistry','157.55.39.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 21:48:24','2019-04-28 21:48:24'),(3098,'chemistry','40.77.167.71',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-29 06:23:21','2019-11-07 16:42:12'),(3099,'chemistry','41.190.2.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:39:52','2019-04-29 10:39:52'),(3100,'biology','41.191.104.87',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:40:48','2019-04-29 10:40:48'),(3101,'insurance','52.204.170.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 21:28:49','2019-04-29 21:28:49'),(3102,'crk','3.85.56.1',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 22:14:35','2019-04-29 22:14:35'),(3103,'accounting','3.85.173.186',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 23:37:13','2019-04-29 23:37:13'),(3104,'chemistry','157.55.39.12',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 07:21:41','2019-06-12 00:41:53'),(3105,'commerce','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3106,'biology','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3107,'physics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3108,'government','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3109,'irk','34.224.60.217',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:24:47'),(3110,'currentaffairs','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3111,'history','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3112,'english','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3113,'crk','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3114,'economics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3115,'civiledu','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3116,'insurance','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3117,'geography','34.224.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:33:31','2019-04-30 09:33:31'),(3118,'chemistry','46.229.168.151',51,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-30 09:38:26','2019-12-01 18:07:27'),(3119,'chemistry','154.68.194.212',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 16:36:27','2019-04-30 16:37:47'),(3120,'chemistry','157.55.39.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 04:27:55','2019-05-01 04:27:55'),(3121,'chemistry','54.36.148.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 05:05:50','2019-05-01 05:05:50'),(3122,'biology','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3123,'physics','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:50'),(3124,'englishlit','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3125,'government','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3126,'civiledu','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3127,'currentaffairs','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3128,'history','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3129,'mathematics','54.226.59.135',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:23','2019-05-01 07:01:57'),(3130,'english','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:54'),(3131,'commerce','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:46'),(3132,'accounting','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3133,'irk','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3134,'geography','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:42','2019-05-01 07:01:56'),(3135,'insurance','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:58:08','2019-05-01 06:58:08'),(3136,'chemistry','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 07:01:56','2019-05-01 07:01:56'),(3137,'chemistry','197.210.45.72',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:45:40','2019-05-01 10:59:40'),(3138,'mathematics','197.210.45.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:53:54','2019-05-01 10:55:42'),(3139,'english','197.210.45.72',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:55:54','2019-05-01 10:57:36'),(3140,'biology','41.191.104.237',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 14:18:27','2019-05-01 14:18:27'),(3141,'chemistry','197.210.54.37',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:20','2019-05-02 10:53:48'),(3142,'chemistry','197.210.54.223',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:32','2019-05-02 10:47:10'),(3143,'chemistry','197.210.55.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 10:14:45','2019-05-02 10:50:02'),(3144,'chemistry','197.210.226.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:20:04','2019-05-02 11:20:04'),(3145,'chemistry','197.210.226.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:22:30','2019-05-02 11:22:30'),(3146,'chemistry','197.210.8.29',630,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:34:06','2019-05-02 12:14:01'),(3147,'chemistry','197.210.54.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 13:47:41','2019-05-02 13:48:21'),(3148,'chemistry','129.205.112.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 04:12:08','2019-05-03 04:12:09'),(3149,'chemistry','197.210.29.46',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 07:52:22','2019-05-03 08:00:45'),(3150,'chemistry','197.210.54.222',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:06:50','2019-05-03 09:26:09'),(3151,'chemistry','197.210.55.133',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:07:57','2019-05-03 09:13:11'),(3152,'chemistry','197.210.54.105',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:11:28','2019-05-03 09:28:30'),(3153,'chemistry','197.210.55.36',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:54:00','2019-05-03 08:55:53'),(3154,'mathematics','105.112.10.87',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 11:24:44','2019-05-03 11:24:44'),(3155,'chemistry','197.210.60.42',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 12:22:25','2019-05-03 13:34:02'),(3156,'mathematics','197.210.60.42',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 13:36:32','2019-05-03 13:54:05'),(3157,'mathematics','197.210.55.133',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:55:08','2019-05-04 06:23:05'),(3158,'mathematics','197.210.54.38',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:57:02','2019-05-04 06:24:02'),(3159,'mathematics','197.210.54.132',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:59:05','2019-05-04 06:07:02'),(3160,'mathematics','197.210.54.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 06:25:03','2019-05-04 06:25:03'),(3161,'chemistry','41.190.3.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 12:28:58','2019-05-04 12:28:58'),(3162,'chemistry','197.210.44.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 15:39:23','2019-05-05 15:39:23'),(3163,'chemistry','40.77.167.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 21:50:59','2019-07-20 03:21:08'),(3164,'mathematics','18.204.19.147',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3165,'physics','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3166,'accounting','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:49'),(3167,'englishlit','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3168,'economics','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3169,'irk','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3170,'insurance','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3171,'geography','18.204.19.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:44','2019-05-06 23:11:44'),(3172,'english','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:08'),(3173,'commerce','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:01'),(3174,'chemistry','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3175,'currentaffairs','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3176,'accounting','23.22.231.188',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 02:31:16','2019-05-08 02:31:16'),(3177,'insurance','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 13:09:16','2019-05-08 13:09:17'),(3178,'physics','66.249.66.158',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 14:31:06','2019-05-08 14:31:06'),(3179,'biology','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 22:48:34','2019-05-08 22:48:34'),(3180,'economics','105.112.38.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 13:52:26','2019-05-09 13:52:26'),(3181,'mathematics','3.80.87.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 18:51:06','2019-05-09 18:51:06'),(3182,'chemistry','187.85.6.94',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 20:51:54','2019-05-09 20:52:08'),(3183,'englishlit','54.196.16.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 00:29:52','2019-05-10 00:29:52'),(3184,'englishlit','105.112.106.10',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 06:29:03','2019-05-10 06:29:03'),(3185,'chemistry','129.56.111.134',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 07:46:16','2019-05-10 07:49:26'),(3186,'chemistry','129.205.112.138',591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 09:28:33','2019-05-10 11:48:10'),(3187,'chemistry','207.46.13.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 10:25:32','2019-05-10 10:25:32'),(3188,'english','129.205.112.138',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 11:48:25','2019-05-10 11:52:58'),(3189,'english','129.205.112.140',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 18:19:45','2019-05-10 18:19:45'),(3190,'chemistry','172.90.37.138',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:27:48','2019-05-13 00:36:13'),(3191,'biology','172.90.37.138',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:31:17','2019-05-11 14:31:17'),(3192,'geography','3.93.186.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 17:05:27','2019-05-11 17:05:27'),(3193,'chemistry','54.197.219.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 21:40:32','2019-05-11 21:40:32'),(3194,'english','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3195,'mathematics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3196,'commerce','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3197,'biology','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3198,'physics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3199,'economics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3200,'irk','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3201,'economics','54.164.105.120',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 01:32:51','2019-05-12 01:32:51'),(3202,'biology','66.249.64.176',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-12 05:47:32','2019-09-21 02:44:48'),(3203,'mathematics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3204,'commerce','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3205,'biology','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3206,'englishlit','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3207,'economics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3208,'civiledu','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3209,'history','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3210,'chemistry','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3211,'government','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3212,'crk','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3213,'geography','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3214,'civiledu','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3215,'currentaffairs','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3216,'history','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3217,'mathematics','3.81.224.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:05:34','2019-05-12 07:05:34'),(3218,'english','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3219,'mathematics','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:59:25'),(3220,'commerce','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:48'),(3221,'physics','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:27'),(3222,'crk','34.229.209.208',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3223,'irk','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3224,'currentaffairs','34.229.209.208',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3225,'chemistry','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:58:54'),(3226,'government','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:45:06'),(3227,'economics','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:49:05'),(3228,'biology','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:49:05'),(3229,'insurance','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:58:54'),(3230,'accounting','34.229.209.208',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:38','2019-05-12 09:58:38'),(3231,'geography','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:42','2019-05-12 09:58:54'),(3232,'civiledu','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3233,'history','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3234,'currentaffairs','54.80.195.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 10:51:10','2019-05-12 10:51:10'),(3235,'chemistry','46.229.168.131',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 23:53:27','2020-05-04 19:51:47'),(3236,'biology','54.146.12.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 01:52:08','2019-05-13 01:52:08'),(3237,'physics','3.82.108.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 03:15:59','2019-05-13 03:15:59'),(3238,'physics','54.152.180.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 06:31:46','2019-05-13 06:31:46'),(3239,'english','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 07:47:11','2019-05-13 07:47:11'),(3240,'mathematics','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 08:15:22','2019-05-13 08:15:22'),(3241,'commerce','3.84.15.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 09:46:15','2019-05-13 09:46:15'),(3242,'commerce','54.157.233.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 12:58:13','2019-05-13 12:58:13'),(3243,'irk','54.175.238.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 17:30:45','2019-05-13 17:30:45'),(3244,'economics','18.206.157.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 19:50:15','2019-05-13 19:50:15'),(3245,'accounting','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3246,'englishlit','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3247,'government','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3248,'crk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3249,'geography','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3250,'irk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3251,'currentaffairs','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3252,'economics','18.234.203.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:23:50','2019-05-14 09:23:50'),(3253,'physics','66.249.64.180',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-14 11:36:21','2019-08-24 00:09:49'),(3254,'biology','54.221.14.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 17:29:34','2019-05-14 17:29:34'),(3255,'chemistry','46.229.168.162',43,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-15 05:36:54','2020-03-22 22:42:10'),(3256,'crk','3.94.115.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 08:37:16','2019-05-15 08:37:16'),(3257,'english','54.159.102.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 10:04:02','2019-05-15 10:04:02'),(3258,'currentaffairs','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:34:44','2019-05-15 14:34:44'),(3259,'geography','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:57:11','2019-05-15 14:57:11'),(3260,'government','54.224.250.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 18:04:50','2019-05-15 18:04:50'),(3261,'government','3.84.0.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:54:43','2019-05-15 19:54:43'),(3262,'chemistry','77.88.47.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:56:40','2019-05-15 19:56:40'),(3263,'englishlit','3.84.53.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 23:23:15','2019-05-15 23:23:15'),(3264,'crk','107.20.105.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:20:12','2019-05-16 00:20:12'),(3265,'chemistry','34.228.195.54',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:22:33','2019-05-16 03:09:28'),(3266,'chemistry','40.77.167.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:07:33','2019-05-16 11:07:33'),(3267,'englishlit','52.202.251.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:24:33','2019-05-16 11:24:33'),(3268,'chemistry','5.255.250.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-16 21:12:24','2019-08-21 01:57:50'),(3269,'accounting','54.92.151.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 21:37:19','2019-05-16 21:37:19'),(3270,'chemistry','46.229.168.146',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 02:19:29','2020-04-16 08:40:54'),(3271,'chemistry','46.229.168.139',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 17:44:01','2020-05-30 04:55:22'),(3272,'commerce','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3273,'government','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3274,'crk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3275,'irk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3276,'insurance','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3277,'currentaffairs','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3278,'history','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3279,'mathematics','105.112.52.3',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 21:46:44','2019-05-17 21:46:44'),(3280,'chemistry','54.36.148.94',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-18 05:43:40','2020-05-29 00:37:58'),(3281,'chemistry','3.84.208.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 09:11:50','2019-05-18 09:11:50'),(3282,'chemistry','40.77.167.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 16:21:00','2019-05-18 16:21:00'),(3283,'accounting','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:09','2019-05-18 18:40:09'),(3284,'history','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:52','2019-05-18 18:40:52'),(3285,'mathematics','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:39'),(3286,'english','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:50'),(3287,'commerce','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:44'),(3288,'physics','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:42'),(3289,'biology','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3290,'crk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3291,'irk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3292,'currentaffairs','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3293,'economics','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3294,'history','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3295,'accounting','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:37','2019-05-18 19:44:37'),(3296,'englishlit','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:47','2019-05-18 19:44:47'),(3297,'insurance','3.80.150.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 22:44:14','2019-05-18 22:44:14'),(3298,'chemistry','157.55.39.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 04:44:12','2019-05-19 04:44:12'),(3299,'history','3.94.79.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 06:05:58','2019-05-19 06:05:58'),(3300,'chemistry','40.77.167.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 16:57:00','2019-05-19 16:57:00'),(3301,'insurance','54.163.157.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 03:05:04','2019-05-20 03:05:04'),(3302,'chemistry','157.55.39.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 13:59:47','2019-05-20 13:59:47'),(3303,'english','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3304,'mathematics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3305,'biology','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3306,'physics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3307,'crk','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3308,'economics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3309,'insurance','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3310,'english','54.91.198.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 17:32:47','2019-05-21 17:32:47'),(3311,'physics','54.145.4.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 18:22:25','2019-05-21 18:22:25'),(3312,'mathematics','54.234.10.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 02:40:52','2019-05-22 02:40:52'),(3313,'mathematics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3314,'physics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3315,'crk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3316,'geography','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3317,'irk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3318,'civiledu','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3319,'history','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3320,'chemistry','95.216.226.236',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 05:15:03','2019-05-25 05:21:26'),(3321,'government','52.55.44.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 07:55:42','2019-05-23 07:55:42'),(3322,'civiledu','54.208.169.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 10:29:28','2019-05-23 10:29:28'),(3323,'chemistry','139.78.253.195',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:06:11','2019-05-23 23:22:30'),(3324,'chemistry','3.85.143.239',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:44:40','2019-05-23 21:04:27'),(3325,'chemistry','40.77.167.134',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 23:49:56','2019-07-17 20:20:15'),(3326,'chemistry','54.36.149.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 01:52:33','2019-05-24 01:52:33'),(3327,'english','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3328,'biology','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3329,'chemistry','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3330,'englishlit','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3331,'geography','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3332,'economics','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3333,'irk','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3334,'chemistry','173.212.246.232',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 07:36:57','2019-05-24 07:37:03'),(3335,'chemistry','197.210.47.154',119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 16:46:41','2019-05-24 17:36:26'),(3336,'chemistry','185.20.6.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:01:25','2019-05-24 18:01:25'),(3337,'chemistry','197.210.54.59',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:29:11','2019-05-24 18:29:11'),(3338,'chemistry','197.210.55.73',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:36:24','2019-05-24 18:37:10'),(3339,'currentaffairs','197.210.55.73',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:38:00','2019-05-24 18:38:00'),(3340,'chemistry','197.210.227.35',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:20:02','2019-05-25 14:21:17'),(3341,'chemistry','197.210.226.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:21:41','2019-05-25 14:22:30'),(3342,'mathematics','197.210.227.35',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:23:25','2019-05-25 14:25:38'),(3343,'mathematics','197.210.226.250',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:24:57','2019-05-25 14:24:57'),(3344,'chemistry','207.46.13.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-26 03:26:44','2019-08-07 06:55:06'),(3345,'chemistry','54.36.148.190',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 05:37:38','2019-05-28 05:37:38'),(3346,'chemistry','197.253.9.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 10:08:10','2019-05-28 10:08:10'),(3347,'chemistry','105.112.41.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 21:38:58','2019-05-29 21:38:58'),(3348,'chemistry','93.158.161.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 23:17:18','2019-05-29 23:17:18'),(3349,'chemistry','62.210.202.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 07:54:02','2019-05-30 07:54:08'),(3350,'chemistry','197.210.227.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:02','2019-05-30 10:34:02'),(3351,'chemistry','197.210.226.60',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:40','2019-05-30 10:34:40'),(3352,'chemistry','100.43.85.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 19:55:06','2019-05-30 19:55:06'),(3353,'chemistry','207.46.13.20',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-31 10:40:41','2019-09-14 00:58:44'),(3354,'chemistry','141.0.13.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-31 10:57:54','2019-05-31 10:57:54'),(3355,'biology','105.112.46.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-01 12:10:54','2019-06-01 12:19:36'),(3356,'chemistry','157.55.39.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-03 17:51:53','2019-06-03 17:51:53'),(3357,'accounting','209.205.209.34',522,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 19:18:46','2020-05-29 19:55:11'),(3358,'economics','209.205.209.34',1892,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 20:32:30','2020-05-30 17:12:57'),(3359,'chemistry','157.55.39.53',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 21:15:44','2019-10-07 21:10:09'),(3360,'history','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:18:40','2019-06-05 02:18:40'),(3361,'irk','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:42:34','2019-06-05 02:42:34'),(3362,'accounting','54.234.117.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 06:15:30','2019-06-05 06:15:30'),(3363,'accounting','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:14:25','2019-06-05 08:14:25'),(3364,'geography','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:53:33','2019-06-05 08:53:33'),(3365,'accounting','3.84.113.32',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:33','2019-06-05 09:00:49'),(3366,'chemistry','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:39','2019-06-05 09:00:39'),(3367,'insurance','54.146.5.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 11:54:23','2019-06-05 11:54:23'),(3368,'chemistry','105.112.53.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 13:10:39','2019-06-05 13:12:41'),(3369,'chemistry','100.43.85.122',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-05 13:15:48','2020-03-08 10:35:22'),(3370,'chemistry','76.1.76.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 14:34:50','2019-06-05 14:35:18'),(3371,'chemistry','197.210.55.175',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:11:03','2019-06-05 16:12:43'),(3372,'chemistry','197.210.54.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:12:00','2019-06-05 16:12:00'),(3373,'mathematics','197.211.32.242',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 20:45:55','2019-06-05 20:45:56'),(3374,'currentaffairs','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:19:16','2019-06-05 23:19:16'),(3375,'insurance','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:31:01','2019-06-05 23:31:01'),(3376,'englishlit','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:36:02','2019-06-05 23:36:02'),(3377,'chemistry','97.116.149.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-07 14:42:32','2019-06-07 14:42:32'),(3378,'chemistry','207.46.13.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 02:59:43','2019-06-08 02:59:43'),(3379,'mathematics','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3380,'accounting','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3381,'biology','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3382,'chemistry','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3383,'geography','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3384,'civiledu','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3385,'currentaffairs','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3386,'chemistry','54.226.148.240',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:42:27','2019-06-08 11:42:27'),(3387,'biology','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3388,'government','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3389,'crk','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3390,'economics','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3391,'civiledu','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3392,'insurance','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3393,'currentaffairs','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3394,'chemistry','41.217.123.66',142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:01','2019-06-08 15:05:05'),(3395,'english','41.217.123.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:48','2019-06-08 13:21:48'),(3396,'chemistry','197.242.107.128',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:49:30','2019-06-08 15:55:27'),(3397,'english','197.242.107.128',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:56:31','2019-06-08 15:56:36'),(3398,'english','197.242.108.36',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 16:54:19','2019-06-08 16:57:53'),(3399,'physics','197.242.116.150',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:11:54','2019-06-08 20:49:56'),(3400,'english','197.242.116.150',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:31:40','2019-06-08 21:06:14'),(3401,'chemistry','197.242.116.150',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:36:15','2019-06-08 21:06:22'),(3402,'physics','162.213.3.221',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-09 05:09:58','2019-06-09 05:09:58'),(3403,'chemistry','105.112.23.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 09:15:53','2019-06-10 13:05:55'),(3404,'chemistry','197.149.92.146',56,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-10 12:11:23','2020-02-25 16:32:20'),(3405,'chemistry','41.75.207.170',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 12:27:15','2019-06-14 07:43:40'),(3406,'chemistry','207.46.13.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 22:01:38','2019-06-10 22:01:38'),(3407,'chemistry','40.77.167.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 08:14:51','2019-06-11 08:14:51'),(3408,'chemistry','129.56.38.156',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 21:53:28','2019-06-11 21:54:00'),(3409,'irk','34.201.166.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:03:53','2019-06-12 03:03:53'),(3410,'biology','3.94.159.33',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:45:38','2019-06-12 04:28:00'),(3411,'english','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:51:24','2019-06-12 03:51:24'),(3412,'accounting','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:52:12','2019-06-12 03:52:12'),(3413,'crk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:20:40','2019-06-12 04:20:40'),(3414,'geography','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:38:56','2019-06-12 04:38:56'),(3415,'government','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:41:50','2019-06-12 04:41:50'),(3416,'irk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:42:17','2019-06-12 04:42:17'),(3417,'physics','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:51:23','2019-06-12 04:51:23'),(3418,'english','154.118.8.161',198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:36:41','2019-06-12 14:02:53'),(3419,'chemistry','154.118.8.161',91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:39:30','2019-06-12 12:18:14'),(3420,'physics','154.118.8.161',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:40:15','2019-06-12 12:04:32'),(3421,'chemistry','54.83.120.25',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 21:54:54','2019-06-12 22:18:00'),(3422,'chemistry','3.90.108.129',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 22:47:16','2019-06-13 00:16:33'),(3423,'chemistry','46.229.168.142',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-13 04:36:54','2020-02-13 17:27:20'),(3424,'chemistry','41.78.172.115',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 15:09:45','2019-06-14 12:18:50'),(3425,'chemistry','105.112.106.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:18','2019-06-13 18:32:18'),(3426,'english','105.112.106.235',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:48','2019-06-13 18:32:50'),(3427,'english','41.75.207.170',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:42:12','2019-06-14 07:42:12'),(3428,'physics','41.75.207.170',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:43:30','2019-06-14 07:44:40'),(3429,'physics','66.249.83.16',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-14 08:47:03','2019-09-05 01:30:44'),(3430,'chemistry','105.112.33.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 20:32:24','2019-06-14 20:32:24'),(3431,'english','197.242.114.252',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 05:49:46','2019-06-15 06:28:24'),(3432,'chemistry','105.112.45.8',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 08:23:34','2019-06-15 08:24:00'),(3433,'english','41.217.116.6',99,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:13:31','2019-06-15 14:39:43'),(3434,'biology','18.206.190.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:27:51','2019-06-15 12:27:51'),(3435,'chemistry','3.81.65.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 13:16:11','2019-06-15 13:16:11'),(3436,'accounting','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:47','2019-06-15 14:20:47'),(3437,'english','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:58','2019-06-15 14:20:58'),(3438,'chemistry','197.210.52.46',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-15 14:26:37','2020-02-06 08:45:34'),(3439,'chemistry','197.210.53.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:27:22','2019-06-15 14:27:22'),(3440,'currentaffairs','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:46:51','2019-06-15 14:46:51'),(3441,'mathematics','34.239.126.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 15:58:44','2019-06-15 15:58:44'),(3442,'chemistry','197.210.53.178',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:40:54','2019-06-15 21:42:38'),(3443,'chemistry','197.210.52.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:42:12','2019-06-15 21:42:32'),(3444,'chemistry','46.229.168.147',51,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-15 21:50:41','2020-06-11 21:19:10'),(3445,'chemistry','197.210.53.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:20:17','2019-06-15 22:20:17'),(3446,'biology','54.237.246.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:32:27','2019-06-15 22:32:27'),(3447,'biology','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:11:58','2019-06-15 23:11:58'),(3448,'irk','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:27:36','2019-06-15 23:27:36'),(3449,'physics','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 00:17:33','2019-06-16 00:17:33'),(3450,'irk','34.228.23.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 01:44:49'),(3451,'accounting','34.228.23.109',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 02:01:41'),(3452,'chemistry','45.55.21.112',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:27:31','2019-06-16 02:28:29'),(3453,'chemistry','105.14.195.18',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:48:24','2019-06-17 01:41:38'),(3454,'physics','66.249.83.18',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-16 12:16:03','2019-09-15 16:06:04'),(3455,'englishlit','54.164.133.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 17:50:46','2019-06-16 17:50:46'),(3456,'mathematics','54.196.189.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:52'),(3457,'mathematics','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3458,'english','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3459,'englishlit','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:55','2019-06-16 19:48:55'),(3460,'chemistry','206.189.171.227',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 02:00:46','2019-06-17 02:02:05'),(3461,'chemistry','41.190.16.26',6367,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 07:08:02','2019-07-23 11:35:50'),(3462,'mathematics','3.91.71.81',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:35:54','2019-06-17 09:22:24'),(3463,'englishlit','3.91.71.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:37:04','2019-06-17 09:22:24'),(3464,'english','3.91.71.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 09:10:38','2019-06-17 09:10:38'),(3465,'mathematics','107.21.78.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 10:58:09','2019-06-17 10:58:09'),(3466,'currentaffairs','34.238.242.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 13:56:42','2019-06-17 13:56:42'),(3467,'commerce','34.227.190.206',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 21:33:57','2019-06-17 21:33:57'),(3468,'chemistry','66.249.83.16',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-18 02:33:50','2019-11-06 14:40:47'),(3469,'currentaffairs','3.91.183.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 06:29:09','2019-06-18 06:29:09'),(3470,'chemistry','66.249.69.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 07:22:19','2019-06-18 07:22:19'),(3471,'economics','41.190.16.26',4519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:08:32','2019-07-23 11:57:15'),(3472,'commerce','41.190.16.26',5932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:28','2019-07-23 11:33:05'),(3473,'english','41.190.16.26',6405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:29','2019-07-23 11:25:21'),(3474,'chemistry','100.43.90.165',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 06:10:09','2019-06-19 06:10:09'),(3475,'mathematics','41.190.16.26',1164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 10:57:58','2019-07-23 11:30:59'),(3476,'chemistry','129.56.101.165',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 17:58:38','2019-06-19 18:00:41'),(3477,'chemistry','82.145.223.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:25','2019-06-20 01:08:25'),(3478,'chemistry','41.203.78.211',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:32','2019-06-20 01:08:32'),(3479,'accounting','41.190.16.26',2791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 12:19:54','2019-07-23 11:33:51'),(3480,'biology','41.190.16.26',3586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 13:01:43','2019-07-23 11:34:35'),(3481,'biology','66.249.66.208',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-21 06:35:47','2019-10-29 04:39:15'),(3482,'mathematics','34.229.108.180',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-21 23:58:00','2019-06-21 23:58:00'),(3483,'chemistry','157.55.39.173',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-22 05:09:56','2019-06-22 05:09:56'),(3484,'chemistry','100.43.85.201',11,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 16:57:01','2019-12-08 06:55:23'),(3485,'chemistry','5.255.250.164',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 22:01:02','2019-09-08 03:42:02'),(3486,'chemistry','46.229.168.152',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-23 06:10:52','2020-05-29 19:42:11'),(3487,'chemistry','77.88.47.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 13:02:24','2019-06-23 13:02:24'),(3488,'chemistry','207.46.13.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 20:52:25','2019-06-23 20:52:25'),(3489,'physics','41.190.16.26',1049,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 08:37:20','2019-07-23 11:35:12'),(3490,'chemistry','93.158.166.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 11:27:50','2019-06-24 11:27:50'),(3491,'english','3.90.20.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 17:28:04','2019-06-24 17:28:04'),(3492,'irk','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:07:15','2019-06-24 19:07:15'),(3493,'commerce','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:10:29','2019-06-24 19:10:29'),(3494,'geography','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:24:40','2019-06-24 19:24:40'),(3495,'chemistry','207.46.13.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 21:37:18','2019-06-24 21:37:18'),(3496,'biology','52.90.179.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 22:59:08','2019-06-24 22:59:08'),(3497,'economics','3.89.60.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 00:47:23','2019-06-25 00:47:23'),(3498,'mathematics','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 04:00:29','2019-06-25 04:00:29'),(3499,'englishlit','41.190.16.26',1730,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:34','2019-07-23 11:44:00'),(3500,'government','41.190.16.26',1944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:47','2019-07-23 11:47:36'),(3501,'crk','41.190.16.26',2466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:59','2019-07-23 11:48:21'),(3502,'geography','41.190.16.26',1488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:13','2019-07-23 11:57:01'),(3503,'irk','41.190.16.26',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:46','2019-07-23 11:57:27'),(3504,'civiledu','41.190.16.26',960,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:58','2019-07-23 11:57:42'),(3505,'currentaffairs','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:26','2019-07-23 11:58:09'),(3506,'history','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:40','2019-07-23 11:58:22'),(3507,'chemistry','154.120.89.121',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 08:40:28','2019-06-25 08:55:46'),(3508,'chemistry','100.43.91.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 09:22:05','2019-06-25 09:22:05'),(3509,'chemistry','46.229.168.148',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 14:14:29','2019-08-05 06:27:37'),(3510,'chemistry','37.9.87.211',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 07:15:23','2019-06-26 07:15:23'),(3511,'chemistry','154.113.84.24',291,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-26 08:20:23','2019-11-05 14:51:24'),(3512,'biology','154.113.84.24',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:12:21','2019-06-26 14:55:23'),(3513,'english','154.113.84.24',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:13:32','2019-06-26 14:55:25'),(3514,'english','105.112.53.54',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:32:43','2019-06-26 14:23:50'),(3515,'biology','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:47','2019-06-26 14:23:47'),(3516,'physics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:51','2019-06-26 14:23:52'),(3517,'chemistry','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:53','2019-06-26 14:23:53'),(3518,'mathematics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:54','2019-06-26 14:23:54'),(3519,'economics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:56','2019-06-26 14:23:56'),(3520,'physics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:26','2019-06-26 14:55:26'),(3521,'mathematics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:28','2019-06-26 14:55:29'),(3522,'economics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:30','2019-06-26 14:55:30'),(3523,'chemistry','41.217.123.115',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:22','2019-06-26 18:34:34'),(3524,'history','41.217.123.115',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:45','2019-06-26 18:04:21'),(3525,'chemistry','207.46.13.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 18:31:26','2019-06-26 18:31:26'),(3526,'mathematics','197.210.243.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:11:39','2019-06-27 19:11:39'),(3527,'english','197.210.243.239',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:12:15','2019-06-27 19:14:45'),(3528,'economics','197.210.243.239',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:14:54','2019-06-27 19:16:28'),(3529,'chemistry','185.26.180.221',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:56:48','2019-06-27 19:56:48'),(3530,'chemistry','77.88.5.10',4,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 01:59:49','2019-09-18 15:11:44'),(3531,'chemistry','105.112.18.14',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:46','2019-06-28 03:11:47'),(3532,'biology','105.112.18.14',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:52','2019-06-28 03:13:33'),(3533,'chemistry','40.77.167.115',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 03:52:03','2020-03-19 20:45:55'),(3534,'economics','197.210.58.211',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 04:41:14','2019-06-28 04:44:00'),(3535,'chemistry','54.36.150.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 16:41:57','2019-06-28 16:41:57'),(3536,'chemistry','54.36.150.166',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 19:07:14','2019-06-28 19:07:14'),(3537,'history','154.120.95.55',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 22:43:11','2019-06-28 22:43:11'),(3538,'chemistry','66.249.64.176',131,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 23:46:36','2019-09-30 03:33:36'),(3539,'chemistry','107.3.154.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 02:57:34','2019-06-30 05:13:41'),(3540,'chemistry','40.77.167.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 05:06:27','2019-06-29 05:06:27'),(3541,'civiledu','52.207.228.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 07:20:25','2019-06-29 07:20:25'),(3542,'englishlit','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:09:53','2019-06-29 08:09:53'),(3543,'crk','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:11:50','2019-06-29 08:11:50'),(3544,'government','34.235.169.213',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:16:14','2019-06-29 16:16:14'),(3545,'insurance','54.146.66.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:57:38','2019-06-29 16:57:38'),(3546,'physics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:19:06','2019-06-29 18:19:06'),(3547,'mathematics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:23:50','2019-06-29 18:23:50'),(3548,'insurance','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:30:42','2019-06-29 18:30:42'),(3549,'crk','54.227.42.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 19:50:41','2019-06-29 19:50:41'),(3550,'government','3.82.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 20:28:23','2019-06-29 20:28:23'),(3551,'english','52.91.23.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 03:47:35','2019-06-30 03:47:35'),(3552,'mathematics','107.3.154.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 05:14:08','2019-06-30 05:14:08'),(3553,'chemistry','37.9.87.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 17:29:41','2019-06-30 17:29:41'),(3554,'chemistry','154.118.47.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 07:13:55','2019-07-01 07:14:33'),(3555,'chemistry','46.229.168.135',87,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 09:26:34','2020-01-31 22:31:52'),(3556,'english','209.205.209.34',8089,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 19:21:38','2020-05-30 17:19:39'),(3557,'chemistry','197.211.53.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 21:31:20','2019-07-01 21:31:40'),(3558,'chemistry','157.55.39.182',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 05:23:02','2019-07-02 05:23:02'),(3559,'chemistry','93.158.161.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 15:43:59','2019-07-02 15:43:59'),(3560,'history','209.205.209.34',650,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:22:26','2020-05-30 18:38:30'),(3561,'physics','209.205.209.34',1763,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:36:44','2020-05-30 15:29:21'),(3562,'chemistry','129.56.51.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 18:42:17','2019-07-02 18:42:17'),(3563,'chemistry','197.210.28.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:11:10','2019-07-02 20:11:22'),(3564,'geography','197.210.28.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:17:11','2019-07-02 20:17:11'),(3565,'biology','54.147.7.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 22:46:21','2019-07-02 22:46:21'),(3566,'biology','209.205.209.34',5018,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-03 05:37:07','2020-05-30 18:25:53'),(3567,'chemistry','64.233.172.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:09:13','2019-07-03 19:09:14'),(3568,'history','3.95.227.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:48:54','2019-07-03 19:48:54'),(3569,'chemistry','37.9.87.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 08:05:14','2019-07-04 08:05:14'),(3570,'geography','3.95.241.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 16:23:04','2019-07-04 16:23:04'),(3571,'chemistry','105.112.48.115',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 19:52:32','2019-07-04 20:12:07'),(3572,'mathematics','105.112.48.115',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:07:51','2019-07-04 20:13:22'),(3573,'physics','105.112.48.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:12:30','2019-07-04 20:12:30'),(3574,'chemistry','91.242.162.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:05:11','2019-07-06 06:05:11'),(3575,'history','18.232.141.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:40:14','2019-07-06 06:40:14'),(3576,'chemistry','154.118.37.114',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:14:49','2019-07-06 18:14:49'),(3577,'chemistry','91.242.162.3',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:41:15','2019-07-06 19:28:38'),(3578,'chemistry','91.242.162.36',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 09:39:14','2019-07-07 09:39:14'),(3579,'chemistry','197.210.65.91',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 17:22:08','2019-07-07 17:22:57'),(3580,'chemistry','141.8.143.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 19:45:26','2019-07-07 19:45:26'),(3581,'chemistry','91.242.162.25',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-07 19:49:57','2019-09-10 11:10:42'),(3582,'mathematics','129.205.113.212',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:16'),(3583,'chemistry','129.205.113.212',33,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:27'),(3584,'accounting','129.205.113.212',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:04'),(3585,'economics','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:43'),(3586,'government','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:32:17'),(3587,'commerce','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3588,'geography','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3589,'crk','129.205.113.212',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:11'),(3590,'currentaffairs','129.205.113.212',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:01','2019-07-07 22:32:40'),(3591,'englishlit','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:23','2019-07-07 22:27:11'),(3592,'physics','129.205.113.212',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:26','2019-07-07 22:32:46'),(3593,'history','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:32:41'),(3594,'irk','129.205.113.212',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3595,'civiledu','129.205.113.212',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3596,'biology','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:56','2019-07-07 22:33:24'),(3597,'insurance','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:23:58','2019-07-07 22:32:21'),(3598,'english','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:25:57','2019-07-07 22:33:06'),(3599,'chemistry','198.144.145.220',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:29:31','2019-07-07 21:29:54'),(3600,'chemistry','41.203.78.249',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 09:28:28','2019-07-08 09:31:26'),(3601,'physics','66.249.88.36',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 10:04:41','2019-07-08 10:04:42'),(3602,'mathematics','197.210.8.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 11:09:57','2019-07-08 11:09:57'),(3603,'chemistry','169.239.188.48',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-08 11:26:53','2019-08-27 13:36:26'),(3604,'english','3.85.90.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 15:56:12','2019-07-08 15:56:12'),(3605,'chemistry','105.112.66.91',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:33:56','2019-07-08 21:35:52'),(3606,'english','105.112.66.91',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:53:51','2019-07-08 21:53:51'),(3607,'commerce','209.205.209.34',1403,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:05:44'),(3608,'chemistry','209.205.209.34',3228,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:38:59'),(3609,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3610,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3611,'english','41.78.172.115',90,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 07:23:35','2019-11-27 13:09:02'),(3612,'englishlit','41.78.172.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:24:07','2019-07-09 07:24:33'),(3613,'government','41.78.172.115',105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:25:34','2019-07-16 07:09:26'),(3614,'chemistry','129.56.37.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:43:13','2019-07-09 07:43:14'),(3615,'mathematics','209.205.209.34',2378,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 08:37:56','2020-05-30 17:58:26'),(3616,'chemistry','192.151.145.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 12:04:16','2019-07-09 12:04:31'),(3617,'physics','105.112.74.109',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:45:55','2019-07-09 21:20:51'),(3618,'government','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:53:35','2019-07-09 20:53:35'),(3619,'englishlit','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:55:52','2019-07-09 20:55:52'),(3620,'english','105.112.74.109',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:56:28','2019-07-09 21:24:57'),(3621,'mathematics','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 21:10:35','2019-07-09 21:10:35'),(3622,'chemistry','91.242.162.49',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 22:37:01','2019-07-09 23:20:10'),(3623,'physics','66.249.64.29',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 02:22:25','2019-07-10 02:22:25'),(3624,'mathematics','41.78.172.115',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 08:51:07','2019-07-15 16:59:28'),(3625,'chemistry','129.56.36.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 10:15:55','2019-07-10 10:16:28'),(3626,'chemistry','91.242.162.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 18:09:11','2019-07-10 18:09:11'),(3627,'chemistry','154.160.30.70',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 19:00:58','2019-07-10 19:01:06'),(3628,'chemistry','129.205.112.207',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 23:16:02','2019-07-10 23:16:41'),(3629,'english','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3630,'mathematics','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3631,'commerce','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3632,'chemistry','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3633,'irk','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3634,'civiledu','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3635,'history','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3636,'chemistry','41.203.78.28',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:47:47','2019-07-11 11:21:52'),(3637,'english','41.203.78.28',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 11:35:10','2019-07-11 11:35:10'),(3638,'chemistry','157.55.39.101',14,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 17:52:52','2020-01-09 17:51:46'),(3639,'chemistry','66.249.88.68',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3640,'chemistry','66.249.88.65',76,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3641,'chemistry','82.145.223.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:34','2019-07-12 01:28:34'),(3642,'chemistry','129.205.112.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:40','2019-07-12 01:28:40'),(3643,'chemistry','54.162.122.174',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 08:18:20','2019-07-12 10:00:37'),(3644,'chemistry','40.77.167.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 11:56:19','2019-07-12 11:56:19'),(3645,'physics','66.102.6.44',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 18:47:05','2019-07-12 18:47:05'),(3646,'chemistry','105.112.40.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 14:34:42','2019-07-13 14:34:42'),(3647,'english','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:22:10','2019-07-13 15:22:10'),(3648,'englishlit','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:28:12','2019-07-13 15:28:12'),(3649,'currentaffairs','105.112.23.162',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 19:42:12','2019-07-13 19:42:12'),(3650,'chemistry','197.210.47.253',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 23:32:27','2019-07-13 23:32:37'),(3651,'chemistry','197.210.226.221',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-14 08:42:39','2019-07-14 08:42:39'),(3652,'chemistry','41.58.163.166',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 03:36:09','2019-07-15 03:38:30'),(3653,'chemistry','197.210.45.131',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:01:08','2019-07-15 11:02:28'),(3654,'chemistry','207.46.13.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:30:08','2019-07-15 11:30:08'),(3655,'chemistry','105.112.121.65',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 01:47:52','2019-07-16 01:54:58'),(3656,'geography','209.205.209.34',1148,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-16 04:33:29','2020-05-30 17:26:43'),(3657,'chemistry','157.55.39.75',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 22:12:07','2019-07-16 22:12:07'),(3658,'chemistry','41.223.213.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 00:56:58','2019-07-17 01:11:43'),(3659,'english','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:53:17','2019-07-17 05:53:18'),(3660,'mathematics','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:55:34','2019-07-17 05:55:34'),(3661,'government','209.205.209.34',2686,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:52:58','2020-05-30 18:38:59'),(3662,'crk','209.205.209.34',3361,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:54:29','2020-05-30 12:48:20'),(3663,'chemistry','197.242.111.36',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 08:00:14','2019-07-17 08:08:20'),(3664,'chemistry','41.203.78.33',425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 09:54:12','2019-07-17 11:26:32'),(3665,'chemistry','69.171.251.8',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:55','2019-07-17 10:23:56'),(3666,'chemistry','69.171.251.23',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3667,'chemistry','69.171.251.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3668,'englishlit','209.205.209.34',1090,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 12:39:36','2020-05-30 15:26:43'),(3669,'irk','209.205.209.34',1003,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 17:02:18','2020-05-30 18:50:40'),(3670,'chemistry','41.223.215.235',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:10:02','2019-07-17 17:11:19'),(3671,'chemistry','41.223.213.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:16:10','2019-07-17 17:16:10'),(3672,'chemistry','35.153.135.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 00:14:01','2019-07-18 00:14:01'),(3673,'chemistry','154.118.46.101',392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 03:48:26','2019-07-18 05:29:47'),(3674,'chemistry','5.255.250.162',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-18 06:37:25','2019-09-08 14:04:58'),(3675,'chemistry','154.118.61.127',1190,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 08:56:03','2019-07-18 09:20:17'),(3676,'irk','34.238.242.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:04:13','2019-07-18 09:04:13'),(3677,'english','154.118.61.127',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:09','2019-07-18 09:18:21'),(3678,'commerce','154.118.61.127',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:43','2019-07-18 09:19:05'),(3679,'accounting','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:11','2019-07-18 09:29:34'),(3680,'biology','154.118.61.127',378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:25','2019-07-18 09:19:44'),(3681,'englishlit','154.118.61.127',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:33','2019-07-18 09:30:44'),(3682,'government','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:49','2019-07-18 09:31:01'),(3683,'crk','154.118.61.127',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:17','2019-07-18 09:31:18'),(3684,'economics','154.118.61.127',584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:55','2019-07-18 09:31:56'),(3685,'civiledu','154.118.61.127',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:27:48','2019-07-18 09:27:51'),(3686,'mathematics','154.118.61.127',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:28:55','2019-07-18 09:29:06'),(3687,'physics','154.118.61.127',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:29:57','2019-07-18 09:30:06'),(3688,'geography','154.118.61.127',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:31:27','2019-07-18 09:31:38'),(3689,'chemistry','178.255.215.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 18:42:41','2019-07-18 18:42:41'),(3690,'chemistry','157.55.39.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 22:58:37','2019-07-19 04:22:47'),(3691,'chemistry','154.118.59.83',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 05:44:42','2019-07-19 06:04:52'),(3692,'chemistry','41.203.78.52',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 16:01:50','2019-07-19 16:28:25'),(3693,'chemistry','197.242.102.82',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:28:00','2019-07-20 04:29:38'),(3694,'english','197.242.102.82',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:31:50','2019-07-20 11:59:47'),(3695,'mathematics','197.242.102.82',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:48:08','2019-07-20 04:48:08'),(3696,'chemistry','40.77.167.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 06:20:29','2019-07-20 06:20:29'),(3697,'biology','197.242.102.82',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:04:42','2019-07-20 11:58:12'),(3698,'physics','152.9.196.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:47:30','2019-07-20 11:47:30'),(3699,'mathematics','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:14','2019-07-20 14:11:14'),(3700,'chemistry','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:27','2019-07-20 14:11:27'),(3701,'chemistry','207.46.13.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 21:45:31','2019-07-20 21:45:31'),(3702,'english','41.217.118.129',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 05:37:39','2019-07-21 05:37:39'),(3703,'chemistry','41.203.78.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 15:30:53','2019-07-21 15:32:05'),(3704,'chemistry','157.55.39.239',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-22 03:02:39','2020-03-31 17:07:02'),(3705,'biology','54.91.22.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 06:50:06','2019-07-22 06:50:06'),(3706,'chemistry','93.80.129.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 07:59:39','2019-07-22 07:59:39'),(3707,'mathematics','3.84.79.213',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 08:19:57','2019-07-22 08:19:58'),(3708,'chemistry','207.46.13.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 06:32:43','2019-07-23 06:32:43'),(3709,'chemistry','154.118.66.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 07:11:56','2019-07-23 07:11:56'),(3710,'chemistry','54.36.150.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 12:38:55','2019-07-23 12:38:56'),(3711,'english','154.118.66.199',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:20:16','2019-07-23 19:20:16'),(3712,'chemistry','197.210.57.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:36:14','2019-07-23 19:45:25'),(3713,'chemistry','197.210.57.16',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:38:03','2019-07-23 19:46:41'),(3714,'chemistry','197.211.57.133',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 20:29:13','2019-07-23 20:30:01'),(3715,'chemistry','54.36.150.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 00:15:09','2019-07-24 00:15:09'),(3716,'chemistry','207.46.13.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 01:42:30','2019-07-24 01:42:30'),(3717,'english','154.120.114.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 03:35:04','2019-07-24 03:35:04'),(3718,'englishlit','41.80.181.76',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 06:15:35','2019-07-25 05:43:43'),(3719,'chemistry','54.172.234.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 08:19:54','2019-07-24 08:49:47'),(3720,'chemistry','40.77.167.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 16:39:03','2019-07-25 16:39:03'),(3721,'chemistry','40.77.167.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 23:17:21','2019-07-25 23:17:21'),(3722,'insurance','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:14','2019-07-26 05:17:07'),(3723,'accounting','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:44','2019-07-26 05:17:08'),(3724,'englishlit','41.203.78.111',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:14','2019-07-26 05:17:17'),(3725,'government','41.203.78.111',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:58','2019-07-26 05:17:11'),(3726,'currentaffairs','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:26','2019-07-26 05:17:13'),(3727,'economics','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:27','2019-07-26 05:17:14'),(3728,'geography','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:29','2019-07-26 05:17:16'),(3729,'english','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:36','2019-07-26 05:17:19'),(3730,'chemistry','66.249.64.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 15:13:58','2019-07-26 15:13:58'),(3731,'chemistry','207.46.13.115',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-27 00:45:02','2020-01-23 09:22:32'),(3732,'chemistry','157.55.39.89',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 07:32:50','2019-07-27 07:32:50'),(3733,'chemistry','46.229.168.137',45,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-07-27 09:18:32','2020-07-05 12:08:49'),(3734,'mathematics','3.85.206.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 10:07:21','2019-07-27 10:09:00'),(3735,'english','154.118.28.124',72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 12:49:22','2019-07-28 06:55:02'),(3736,'chemistry','40.77.167.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 15:09:18','2019-07-28 15:09:18'),(3737,'chemistry','201.186.162.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 17:45:36','2019-07-28 17:45:37'),(3738,'chemistry','80.248.10.224',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:34:33','2019-07-29 00:37:02'),(3739,'physics','80.248.10.224',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:35:39','2019-07-29 00:35:39'),(3740,'biology','154.118.28.124',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 09:57:14','2019-07-29 09:57:14'),(3741,'english','41.203.78.138',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 16:14:46','2019-07-29 16:14:46'),(3742,'chemistry','54.36.149.43',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-29 16:22:54','2020-05-29 00:45:16'),(3743,'insurance','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:39','2019-07-30 02:31:46'),(3744,'accounting','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:43','2019-07-30 02:31:31'),(3745,'englishlit','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:46','2019-07-30 02:31:23'),(3746,'government','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:49','2019-07-30 02:31:29'),(3747,'currentaffairs','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:51','2019-07-30 02:31:19'),(3748,'economics','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:53','2019-07-30 02:31:42'),(3749,'geography','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:56','2019-07-30 02:31:40'),(3750,'english','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:01','2019-07-30 02:31:25'),(3751,'mathematics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:04','2019-07-30 02:31:26'),(3752,'commerce','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:06','2019-07-30 02:31:28'),(3753,'biology','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:19','2019-07-30 02:31:32'),(3754,'physics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:22','2019-07-30 02:31:34'),(3755,'chemistry','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:24','2019-07-30 02:31:35'),(3756,'crk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:28','2019-07-30 02:31:37'),(3757,'history','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:30','2019-07-30 02:31:38'),(3758,'irk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:49','2019-07-30 02:31:43'),(3759,'civiledu','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:52','2019-07-30 02:31:44'),(3760,'insurance','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:01','2019-07-30 03:25:41'),(3761,'accounting','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3762,'englishlit','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:33'),(3763,'government','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3764,'currentaffairs','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:30'),(3765,'economics','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:39'),(3766,'geography','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:04','2019-07-30 03:25:39'),(3767,'english','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:05','2019-07-30 03:25:33'),(3768,'mathematics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3769,'commerce','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3770,'biology','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3771,'physics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3772,'chemistry','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:37'),(3773,'crk','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:38'),(3774,'history','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:10','2019-07-30 03:25:38'),(3775,'irk','198.23.156.170',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:11','2019-07-30 03:25:40'),(3776,'civiledu','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:12','2019-07-30 03:25:40'),(3777,'chemistry','54.36.148.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 12:20:11','2019-07-30 12:20:11'),(3778,'history','34.229.51.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 14:05:01','2019-07-30 14:05:01'),(3779,'english','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3780,'commerce','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3781,'chemistry','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3782,'englishlit','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3783,'government','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3784,'crk','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3785,'insurance','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3786,'chemistry','93.158.161.52',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 13:53:11','2019-07-31 13:53:11'),(3787,'chemistry','95.70.149.106',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 17:40:54','2019-07-31 17:40:58'),(3788,'chemistry','197.210.52.110',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-31 23:43:35','2020-05-25 11:22:19'),(3789,'physics','197.210.52.34',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 23:44:25','2019-07-31 23:44:25'),(3790,'chemistry','129.205.113.242',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 11:01:44','2019-08-01 11:38:22'),(3791,'chemistry','46.229.168.136',5,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-01 13:52:01','2020-03-24 23:22:11'),(3792,'chemistry','207.46.13.109',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 15:09:54','2019-08-01 15:09:54'),(3793,'chemistry','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:06:12','2019-08-01 17:06:12'),(3794,'english','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:07:32','2019-08-01 17:07:32'),(3795,'crk','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:17:03','2019-08-01 17:17:04'),(3796,'mathematics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3797,'accounting','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3798,'physics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3799,'chemistry','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3800,'englishlit','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3801,'crk','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3802,'currentaffairs','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3803,'chemistry','85.104.168.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 06:18:15','2019-08-02 06:18:15'),(3804,'chemistry','102.67.6.4',86,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-02 11:56:48','2020-02-06 09:19:26'),(3805,'chemistry','41.203.78.141',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 17:46:29','2019-08-02 17:50:14'),(3806,'physics','141.0.13.86',225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 19:55:06','2019-08-02 20:20:39'),(3807,'chemistry','54.89.107.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 12:30:12','2019-08-03 12:30:12'),(3808,'chemistry','40.77.167.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 14:46:31','2019-08-03 14:46:31'),(3809,'chemistry','197.210.62.39',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 15:09:21','2019-08-03 15:11:54'),(3810,'chemistry','41.190.3.29',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:05:32','2019-08-03 20:06:34'),(3811,'chemistry','157.55.39.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:11:00','2019-08-03 20:11:00'),(3812,'chemistry','105.112.112.6',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 00:43:46','2019-08-04 00:43:46'),(3813,'chemistry','41.190.31.100',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 14:53:51','2019-08-04 14:54:18'),(3814,'chemistry','129.18.141.135',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:26:00','2019-08-04 21:27:04'),(3815,'chemistry','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:29:51','2019-08-04 21:29:51'),(3816,'chemistry','24.59.53.207',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:30:40','2019-08-04 21:31:48'),(3817,'chemistry','73.251.19.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:32:47','2019-08-05 19:48:27'),(3818,'chemistry','54.36.150.27',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 04:34:37','2020-04-20 23:49:30'),(3819,'englishlit','105.112.16.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:00:40','2019-08-05 08:00:40'),(3820,'chemistry','41.215.245.118',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:34:13','2019-08-05 21:13:05'),(3821,'mathematics','41.215.245.118',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:03:37','2019-08-05 21:14:43'),(3822,'chemistry','54.36.150.94',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:51:17','2019-08-05 09:51:17'),(3823,'chemistry','108.5.104.122',121,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 11:40:26','2019-08-10 00:14:27'),(3824,'chemistry','172.58.231.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 11:41:16','2019-08-05 11:41:16'),(3825,'chemistry','105.112.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 16:00:47','2019-08-05 16:00:47'),(3826,'mathematics','3.208.18.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 18:34:25','2019-08-05 18:34:25'),(3827,'chemistry','51.75.58.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-06 06:04:58','2019-08-06 06:04:58'),(3828,'english','105.112.46.183',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 17:24:18','2019-08-06 20:33:07'),(3829,'chemistry','157.55.39.189',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 20:45:44','2019-08-29 20:50:04'),(3830,'chemistry','154.120.111.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:02:33','2019-08-06 21:02:33'),(3831,'chemistry','41.184.168.168',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:47:59','2019-08-07 07:40:56'),(3832,'chemistry','76.169.69.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:59:50','2019-08-06 22:00:41'),(3833,'chemistry','197.210.28.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 22:09:16','2019-08-06 22:09:16'),(3834,'chemistry','197.242.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:24:27','2019-08-07 05:24:27'),(3835,'chemistry','54.162.105.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:45:21','2019-08-07 05:45:21'),(3836,'chemistry','105.112.99.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:37:02','2019-08-07 07:37:02'),(3837,'chemistry','197.255.3.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:53:01','2019-08-07 07:53:01'),(3838,'chemistry','105.112.66.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:07:50','2019-08-07 08:07:50'),(3839,'chemistry','197.210.10.11',99,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:28:59','2019-08-07 08:32:24'),(3840,'mathematics','197.210.10.11',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:32:47','2019-08-07 08:32:50'),(3841,'chemistry','102.67.3.4',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:36:49','2019-08-07 08:58:38'),(3842,'chemistry','41.164.52.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:03:24','2019-08-07 10:03:24'),(3843,'chemistry','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:05:52','2019-08-07 10:05:52'),(3844,'mathematics','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:06:42','2019-08-07 10:06:42'),(3845,'chemistry','197.149.90.214',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:24:50','2019-08-07 10:26:08'),(3846,'chemistry','41.203.73.88',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:39:15','2019-08-07 11:39:55'),(3847,'physics','209.136.56.4',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:54:06','2019-08-12 23:34:33'),(3848,'chemistry','197.242.98.242',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:04:40','2019-08-07 12:08:12'),(3849,'chemistry','66.249.83.192',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:30:34','2020-01-09 11:42:25'),(3850,'chemistry','41.58.96.12',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 14:11:55','2019-08-07 14:12:42'),(3851,'chemistry','197.210.65.148',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 18:36:06','2019-08-07 18:36:06'),(3852,'economics','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:15','2019-08-08 06:27:15'),(3853,'commerce','197.210.226.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:24','2019-08-08 06:27:24'),(3854,'commerce','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:29:02','2019-08-08 06:29:02'),(3855,'chemistry','196.6.204.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 08:52:03','2019-08-08 08:52:36'),(3856,'chemistry','105.112.112.43',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 13:28:20','2019-08-08 13:28:58'),(3857,'chemistry','197.210.45.222',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 23:36:48','2019-08-08 23:37:30'),(3858,'chemistry','207.46.13.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 05:43:38','2019-08-09 05:43:38'),(3859,'chemistry','197.210.44.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 08:23:41','2019-08-09 08:23:41'),(3860,'chemistry','107.167.108.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 13:55:03','2019-08-09 13:55:03'),(3861,'chemistry','141.0.12.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:36:14','2019-08-09 14:40:11'),(3862,'english','141.0.12.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:40:26','2019-08-09 14:40:26'),(3863,'chemistry','154.113.86.202',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 15:44:28','2019-08-09 15:45:32'),(3864,'english','54.196.180.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 19:46:19','2019-08-09 19:46:19'),(3865,'chemistry','41.190.31.199',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:16:32','2019-08-09 22:00:42'),(3866,'mathematics','41.190.31.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:19:49','2019-08-09 21:19:49'),(3867,'crk','41.190.31.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:38:51','2019-08-09 21:38:54'),(3868,'chemistry','129.205.113.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 05:01:10','2019-08-10 05:01:50'),(3869,'chemistry','41.217.117.119',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 06:33:30','2019-08-10 06:33:30'),(3870,'currentaffairs','54.85.115.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 10:57:06','2019-08-10 10:57:06'),(3871,'history','18.206.174.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 13:08:50','2019-08-10 13:08:50'),(3872,'chemistry','100.43.81.123',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 14:14:16','2019-08-10 14:14:17'),(3873,'english','184.72.210.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 04:30:40','2019-08-11 04:30:40'),(3874,'chemistry','66.249.88.116',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:14:03','2019-08-11 14:14:03'),(3875,'chemistry','157.55.39.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:28:36','2019-08-11 14:28:36'),(3876,'insurance','3.88.255.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 17:15:20','2019-08-11 17:15:20'),(3877,'english','197.242.117.204',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 21:39:05','2019-08-11 21:40:36'),(3878,'chemistry','207.46.13.52',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 04:20:20','2019-08-12 04:20:20'),(3879,'economics','34.227.176.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 20:07:33','2019-08-12 20:07:33'),(3880,'chemistry','105.112.16.68',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 08:45:00','2019-08-13 08:45:03'),(3881,'chemistry','46.229.168.141',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 22:26:44','2019-09-04 10:48:38'),(3882,'chemistry','34.204.200.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:43:45','2019-08-14 03:43:46'),(3883,'chemistry','18.205.192.78',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:52:28','2019-08-14 04:56:47'),(3884,'biology','54.162.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 12:09:34','2019-08-14 12:09:34'),(3885,'chemistry','154.120.99.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 15:57:20','2019-08-14 16:01:54'),(3886,'chemistry','105.112.98.5',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 00:49:21','2019-08-15 01:14:50'),(3887,'chemistry','197.210.61.7',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 15:41:08','2019-08-15 15:41:09'),(3888,'mathematics','41.203.78.198',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:01:08','2019-08-16 05:59:18'),(3889,'chemistry','207.46.13.149',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:44:55','2019-08-15 18:44:58'),(3890,'chemistry','207.46.13.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 19:29:33','2019-08-15 19:29:33'),(3891,'physics','41.203.78.198',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 06:16:07','2019-08-16 06:17:30'),(3892,'commerce','154.118.43.180',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 11:29:52','2019-08-16 11:29:52'),(3893,'accounting','54.198.77.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 15:23:17','2019-08-16 15:23:17'),(3894,'mathematics','197.242.99.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:04:35','2019-08-17 03:06:16'),(3895,'english','197.242.99.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:06:56','2019-08-17 03:06:56'),(3896,'chemistry','207.46.13.1',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 14:03:29','2019-08-17 14:03:30'),(3897,'crk','105.112.42.138',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 16:15:38','2019-08-17 16:15:41'),(3898,'chemistry','129.205.112.252',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:23:17','2019-08-17 22:29:43'),(3899,'english','129.205.112.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:27:47','2019-08-17 22:27:47'),(3900,'chemistry','197.242.101.185',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 13:44:15','2019-08-18 13:45:05'),(3901,'chemistry','18.232.124.77',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 14:54:17','2019-08-18 15:09:41'),(3902,'english','82.145.222.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:13:30','2019-08-18 20:13:30'),(3903,'physics','82.145.222.187',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:29','2019-08-18 20:14:41'),(3904,'biology','82.145.222.187',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:57','2019-08-18 20:18:29'),(3905,'chemistry','82.145.222.187',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:17:25','2019-08-18 20:20:03'),(3906,'chemistry','157.55.39.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 08:32:02','2019-08-19 08:32:02'),(3907,'chemistry','154.118.15.197',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 11:05:07','2019-08-19 11:07:21'),(3908,'chemistry','154.118.25.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 13:15:15','2019-08-19 13:15:15'),(3909,'chemistry','35.242.171.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 15:59:15','2019-08-19 15:59:20'),(3910,'chemistry','40.77.167.133',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 20:09:27','2019-08-19 20:09:27'),(3911,'chemistry','154.118.17.37',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 07:44:43','2019-08-20 07:44:57'),(3912,'chemistry','154.113.84.131',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 08:32:47','2019-08-20 08:33:28'),(3913,'mathematics','197.210.29.72',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 10:20:40','2019-08-20 10:21:02'),(3914,'chemistry','154.113.84.148',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 15:22:38','2019-08-20 15:24:56'),(3915,'chemistry','169.159.87.27',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 21:11:10','2019-08-20 21:11:12'),(3916,'physics','66.249.88.71',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-21 12:32:59','2019-08-21 12:33:01'),(3917,'englishlit','3.81.145.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 08:13:22','2019-08-22 08:13:22'),(3918,'chemistry','105.112.39.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 13:11:13','2019-08-22 13:14:10'),(3919,'biology','129.205.112.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:29:46','2019-08-22 14:29:46'),(3920,'mathematics','129.205.112.93',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:30:42','2019-08-22 14:32:55'),(3921,'english','129.205.112.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:36:50','2019-08-22 14:36:53'),(3922,'chemistry','41.184.168.107',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:19:24','2019-09-06 17:21:30'),(3923,'chemistry','41.58.210.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:22:34','2019-08-22 19:22:34'),(3924,'accounting','34.227.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:52:08','2019-08-22 19:52:08'),(3925,'chemistry','157.55.39.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 21:25:26','2019-08-22 21:25:26'),(3926,'chemistry','129.205.112.83',485,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 10:26:23','2019-08-23 10:47:40'),(3927,'english','197.242.102.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 14:25:28','2019-08-23 14:25:28'),(3928,'chemistry','207.46.13.154',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:07:03','2019-11-18 02:00:21'),(3929,'english','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:19','2019-08-23 20:31:22'),(3930,'geography','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:51','2019-08-23 20:31:54'),(3931,'physics','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:33:18','2019-08-23 20:33:21'),(3932,'government','129.205.112.109',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:34:13','2019-08-23 20:35:30'),(3933,'chemistry','129.205.112.109',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:37:45','2019-08-23 20:40:50'),(3934,'chemistry','40.77.167.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 09:58:33','2019-08-24 09:58:33'),(3935,'biology','197.210.62.41',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 10:11:54','2019-08-24 10:11:56'),(3936,'english','3.92.165.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 02:48:10','2019-08-26 02:48:10'),(3937,'chemistry','129.205.112.98',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 14:07:19','2019-08-27 09:07:12'),(3938,'englishlit','41.80.80.75',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:38:33','2019-08-26 16:38:36'),(3939,'mathematics','129.205.112.98',368,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:54:38','2019-08-27 18:32:30'),(3940,'physics','197.210.64.64',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 05:43:46','2019-08-27 05:43:48'),(3941,'chemistry','66.102.8.114',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 12:39:36','2019-08-27 12:39:38'),(3942,'chemistry','169.239.188.14',185,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 13:39:29','2019-08-27 13:43:17'),(3943,'mathematics','107.22.87.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:02:33','2019-08-28 05:02:33'),(3944,'chemistry','129.205.112.99',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:04:37','2019-08-28 12:15:39'),(3945,'chemistry','3.87.39.253',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 06:57:54','2019-08-28 06:57:55'),(3946,'physics','41.203.78.236',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 10:23:20','2019-08-29 07:46:26'),(3947,'english','129.205.112.99',15637,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 11:37:09','2019-09-01 08:17:00'),(3948,'mathematics','129.205.112.99',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:19:14','2019-09-01 05:59:18'),(3949,'commerce','129.205.112.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:22:31','2019-08-28 12:22:34'),(3950,'chemistry','207.46.13.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-29 11:21:14','2019-08-29 11:21:14'),(3951,'chemistry','40.77.167.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-30 05:57:46','2019-08-30 05:57:46'),(3952,'chemistry','66.249.83.64',25,'',NULL,'',NULL,NULL,NULL,'','','2019-08-30 11:25:31','2019-08-30 11:25:32'),(3953,'chemistry','157.55.39.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-31 02:12:18','2019-08-31 02:12:18'),(3954,'chemistry','197.210.8.81',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 08:57:11','2019-08-31 08:59:21'),(3955,'mathematics','18.212.178.244',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 09:18:17','2019-08-31 09:18:17'),(3956,'chemistry','197.255.172.32',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 11:43:45','2019-08-31 11:43:45'),(3957,'accounting','129.205.112.99',5,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 16:55:58','2019-08-31 16:55:59'),(3958,'biology','129.205.112.99',45,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 16:56:17','2019-08-31 17:39:24'),(3959,'chemistry','105.112.46.156',8,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 17:20:01','2019-08-31 17:20:21'),(3960,'chemistry','41.190.3.191',48,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 19:13:59','2019-08-31 19:17:54'),(3961,'chemistry','35.192.166.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-01 13:20:44','2019-09-01 13:20:44'),(3962,'chemistry','154.66.37.174',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 06:43:23','2019-09-02 06:43:56'),(3963,'chemistry','197.253.59.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 07:37:32','2019-09-02 07:37:32'),(3964,'english','105.112.66.6',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 11:05:53','2019-09-02 11:05:53'),(3965,'chemistry','105.112.75.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 15:41:26','2019-09-02 15:41:56'),(3966,'chemistry','54.36.150.178',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 02:18:15','2019-09-03 02:18:18'),(3967,'physics','197.210.28.217',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 05:11:07','2019-09-03 05:11:09'),(3968,'mathematics','3.88.69.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 11:24:03','2019-09-03 11:24:03'),(3969,'chemistry','197.210.226.232',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:32','2019-09-03 13:34:57'),(3970,'chemistry','197.210.227.69',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:56','2019-09-03 13:27:38'),(3971,'chemistry','197.210.226.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:25:32','2019-09-03 13:25:32'),(3972,'chemistry','197.210.227.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:33:08','2019-09-03 13:33:08'),(3973,'chemistry','197.210.226.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:36:44','2019-09-03 13:36:47'),(3974,'chemistry','54.36.150.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 23:05:24','2019-09-03 23:05:24'),(3975,'mathematics','54.221.189.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-04 18:49:49','2019-09-04 18:49:49'),(3976,'history','3.90.177.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:03:49','2019-09-05 06:03:49'),(3977,'mathematics','3.90.177.176',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:04:44','2019-09-05 06:04:44'),(3978,'accounting','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3979,'geography','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3980,'english','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:23'),(3981,'economics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3982,'mathematics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3983,'civiledu','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3984,'insurance','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3985,'chemistry','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3986,'currentaffairs','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3987,'englishlit','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3988,'history','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3989,'government','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3990,'biology','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3991,'chemistry','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3992,'englishlit','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3993,'geography','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3994,'economics','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3995,'irk','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3996,'civiledu','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3997,'chemistry','41.217.84.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:16:54','2019-09-05 16:16:54'),(3998,'chemistry','3.84.149.56',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:15','2019-09-05 16:17:16'),(3999,'chemistry','47.206.102.2',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:40','2019-09-05 16:18:25'),(4000,'chemistry','91.242.162.70',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:21','2019-09-06 12:27:22'),(4001,'mathematics','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:51','2019-09-07 12:05:12'),(4002,'chemistry','91.242.162.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:23:18','2019-09-06 15:33:50'),(4003,'mathematics','41.184.168.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:42:47','2019-09-06 15:42:47'),(4004,'mathematics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4005,'biology','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4006,'physics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4007,'chemistry','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4008,'englishlit','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4009,'economics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4010,'insurance','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4011,'english','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 05:35:36','2019-09-07 13:17:14'),(4012,'chemistry','129.205.112.115',71,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 08:22:52','2019-09-07 08:36:32'),(4013,'chemistry','154.118.11.75',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 19:29:07','2019-09-07 19:36:47'),(4014,'chemistry','41.190.3.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 21:38:56','2019-09-07 21:38:57'),(4015,'biology','154.118.37.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 05:09:59','2019-09-08 05:09:59'),(4016,'chemistry','77.88.5.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 09:42:20','2019-09-08 09:42:20'),(4017,'chemistry','207.46.13.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 14:03:52','2019-09-09 14:03:52'),(4018,'mathematics','54.209.217.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 18:28:02','2019-09-09 18:28:02'),(4019,'biology','54.226.212.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 01:20:10','2019-09-10 01:20:10'),(4020,'english','197.242.108.80',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 06:32:36','2019-09-10 06:32:36'),(4021,'economics','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:35:23','2019-09-10 16:35:24'),(4022,'english','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:36:16','2019-09-10 16:36:16'),(4023,'commerce','3.89.252.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 18:39:39','2019-09-10 18:39:39'),(4024,'chemistry','91.242.162.73',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:08:33','2019-10-24 12:14:06'),(4025,'physics','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4026,'chemistry','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4027,'englishlit','54.91.126.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:32:57'),(4028,'government','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4029,'crk','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4030,'civiledu','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4031,'history','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:09'),(4032,'chemistry','207.46.13.197',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:55:18','2019-09-10 19:55:18'),(4033,'chemistry','197.210.29.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 20:02:55','2019-09-10 20:02:55'),(4034,'accounting','18.234.153.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 22:03:30','2019-09-10 22:03:30'),(4035,'chemistry','110.44.120.215',208,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 01:19:49','2019-09-12 06:46:02'),(4036,'mathematics','110.44.120.215',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:04','2019-09-16 16:31:02'),(4037,'accounting','110.44.120.215',124,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:48','2019-09-13 05:09:09'),(4038,'physics','110.44.120.215',1180,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:45:48','2019-09-20 12:59:42'),(4039,'biology','110.44.120.215',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:53:41','2019-09-17 03:03:55'),(4040,'biology','110.44.120.206',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:08','2019-09-11 15:42:20'),(4041,'mathematics','110.44.120.206',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:16','2019-09-11 10:51:39'),(4042,'chemistry','110.44.120.206',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:48','2019-09-11 15:41:47'),(4043,'chemistry','129.56.92.16',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 13:46:20','2019-09-11 13:46:52'),(4044,'physics','66.249.64.176',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:39:39','2019-09-21 02:46:11'),(4045,'biology','66.249.64.178',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:49:48','2019-09-30 03:47:58'),(4046,'accounting','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:50:53','2019-09-11 16:50:55'),(4047,'mathematics','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:18','2019-09-11 16:51:19'),(4048,'chemistry','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:23','2019-09-11 16:51:24'),(4049,'biology','108.177.7.94',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:26','2019-09-11 16:54:23'),(4050,'biology','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:43','2019-09-11 16:51:45'),(4051,'chemistry','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:46','2019-09-11 16:51:47'),(4052,'physics','108.177.7.91',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:16','2019-09-11 16:53:33'),(4053,'accounting','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:49','2019-09-11 16:52:51'),(4054,'physics','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:54:16','2019-09-11 16:54:18'),(4055,'accounting','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:57:33','2019-09-11 16:57:34'),(4056,'chemistry','66.249.64.180',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:58:44','2019-09-17 21:57:53'),(4057,'accounting','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:07:30','2019-09-11 17:07:32'),(4058,'biology','104.132.0.101',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:23','2019-09-11 17:08:58'),(4059,'chemistry','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:50','2019-09-11 17:08:51'),(4060,'chemistry','34.236.170.225',11,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 17:38:25','2019-09-11 19:05:17'),(4061,'mathematics','35.243.2.1',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:39:59','2019-09-11 19:40:00'),(4062,'physics','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:09','2019-09-11 19:40:10'),(4063,'chemistry','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:40','2019-09-11 19:40:42'),(4064,'biology','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:53','2019-09-11 19:41:54'),(4065,'mathematics','35.243.2.2',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:59','2019-09-11 19:42:01'),(4066,'accounting','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:42:51','2019-09-11 19:42:53'),(4067,'mathematics','35.234.176.172',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:37:08','2019-09-11 22:37:10'),(4068,'physics','35.234.176.173',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:37:39','2019-09-11 22:37:41'),(4069,'biology','35.234.176.171',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:38:37','2019-09-11 22:38:39'),(4070,'chemistry','35.234.176.171',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:41:31','2019-09-11 22:41:33'),(4071,'currentaffairs','35.174.166.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 23:13:34','2019-09-11 23:13:34'),(4072,'mathematics','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:42','2019-09-12 00:09:58'),(4073,'biology','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:50','2019-09-12 00:09:22'),(4074,'accounting','108.177.6.58',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:09:14','2019-09-12 00:09:16'),(4075,'physics','108.177.6.58',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:11:56','2019-09-12 00:12:18'),(4076,'biology','103.10.28.200',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 01:50:53','2019-09-12 01:51:21'),(4077,'chemistry','216.10.240.90',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 03:25:50','2019-09-12 03:25:51'),(4078,'physics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:44:02','2019-09-12 06:45:27'),(4079,'chemistry','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:01','2019-09-12 06:46:03'),(4080,'biology','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:36','2019-09-12 06:46:38'),(4081,'mathematics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:48','2019-09-12 06:47:16'),(4082,'chemistry','41.184.239.224',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:00:01','2019-09-12 08:01:26'),(4083,'physics','121.220.192.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:50:39','2019-09-12 08:50:40'),(4084,'biology','1.144.106.173',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:20:55','2019-09-12 09:20:57'),(4085,'accounting','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:35:59','2019-09-12 09:36:01'),(4086,'mathematics','202.51.76.34',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:37:29','2019-09-13 05:07:49'),(4087,'mathematics','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:14','2019-09-12 09:55:15'),(4088,'biology','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:34','2019-09-12 09:55:36'),(4089,'mathematics','49.195.140.246',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:57','2019-09-12 09:55:59'),(4090,'biology','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:14:20','2019-09-12 10:14:21'),(4091,'mathematics','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:17:03','2019-09-12 10:17:04'),(4092,'physics','175.37.109.166',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:04:59','2019-09-12 11:09:15'),(4093,'mathematics','14.200.41.186',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:06:08','2019-09-12 11:06:10'),(4094,'mathematics','211.30.203.218',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:09:11','2019-09-12 11:09:13'),(4095,'physics','120.17.45.139',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 11:11:29','2019-09-12 11:11:31'),(4096,'chemistry','120.17.45.139',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:12:10','2019-09-12 11:12:11'),(4097,'biology','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:14:53','2019-09-12 11:14:55'),(4098,'mathematics','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:01','2019-09-12 11:17:03'),(4099,'chemistry','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:06','2019-09-12 11:17:09'),(4100,'mathematics','124.180.202.128',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:23:33','2019-09-12 11:23:35'),(4101,'mathematics','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:26:22','2019-09-12 11:26:24'),(4102,'biology','175.37.109.166',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:46:31','2019-09-12 11:47:01'),(4103,'biology','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:48:41','2019-09-12 11:48:43'),(4104,'mathematics','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:49:54','2019-09-12 11:49:56'),(4105,'biology','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:43:46','2019-09-12 14:43:47'),(4106,'physics','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:49:17','2019-09-12 14:49:19'),(4107,'biology','27.34.20.106',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:02','2019-09-12 14:54:04'),(4108,'chemistry','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:14','2019-09-12 14:54:16'),(4109,'physics','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:26','2019-09-12 14:54:28'),(4110,'physics','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:58:24','2019-09-12 14:58:26'),(4111,'biology','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:59:49','2019-09-12 14:59:51'),(4112,'chemistry','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:00:06','2019-09-12 15:00:08'),(4113,'biology','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:01:16','2019-09-12 15:01:18'),(4114,'physics','110.44.127.178',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:02','2019-09-12 15:29:03'),(4115,'physics','27.34.17.16',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:40','2019-09-12 15:30:08'),(4116,'physics','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:50:55','2019-09-12 15:50:57'),(4117,'biology','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:51:13','2019-09-12 15:51:15'),(4118,'chemistry','91.242.162.72',3,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 18:05:30','2019-09-12 18:20:23'),(4119,'chemistry','49.195.156.140',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:06:39','2019-09-12 19:06:41'),(4120,'biology','202.51.88.114',60,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:10:30','2019-09-12 19:16:01'),(4121,'biology','49.181.243.120',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 20:37:28','2019-09-12 20:37:58'),(4122,'chemistry','91.242.162.45',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:30:11','2019-09-12 23:30:11'),(4123,'physics','220.240.160.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:51:25','2019-09-12 23:51:26'),(4124,'chemistry','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:57:36','2019-09-12 23:57:37'),(4125,'biology','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:59:54','2019-09-12 23:59:56'),(4126,'mathematics','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 00:00:25','2019-09-13 00:00:27'),(4127,'biology','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:33:57','2019-09-13 01:33:58'),(4128,'mathematics','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:37:24','2019-09-13 01:37:26'),(4129,'physics','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:15:58','2019-09-13 02:15:59'),(4130,'accounting','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:16:14','2019-09-13 02:16:16'),(4131,'biology','27.34.17.16',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:07:26','2019-09-13 03:07:28'),(4132,'chemistry','141.8.132.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:10:44','2019-09-13 03:10:44'),(4133,'physics','1.144.105.17',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 04:06:29','2019-09-13 04:06:31'),(4134,'biology','125.254.44.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:00:53','2019-09-13 05:00:54'),(4135,'physics','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:08:24','2019-09-13 05:08:25'),(4136,'mathematics','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4137,'biology','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:15'),(4138,'government','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4139,'english','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4140,'economics','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4141,'insurance','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4142,'accounting','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4143,'currentaffairs','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4144,'chemistry','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4145,'history','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:17'),(4146,'englishlit','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4147,'physics','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:06','2019-09-13 06:03:07'),(4148,'physics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:16','2019-09-13 06:03:17'),(4149,'mathematics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:42','2019-09-13 06:03:43'),(4150,'chemistry','27.34.48.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:06:07','2019-09-13 06:09:13'),(4151,'biology','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:09:23','2019-09-13 06:09:24'),(4152,'commerce','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:50','2019-09-13 06:20:51'),(4153,'physics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4154,'government','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4155,'economics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4156,'irk','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4157,'currentaffairs','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4158,'history','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4159,'biology','175.35.106.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:16:45','2019-09-13 07:16:46'),(4160,'physics','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:29:45','2019-09-13 07:29:47'),(4161,'chemistry','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:31:28','2019-09-13 07:31:29'),(4162,'mathematics','27.34.70.161',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:32:08','2019-09-13 07:32:44'),(4163,'physics','1.41.245.225',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:14:08','2019-09-13 08:14:09'),(4164,'biology','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:40:42','2019-09-13 08:40:44'),(4165,'mathematics','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:45:42','2019-09-13 08:45:43'),(4166,'chemistry','110.150.214.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 09:32:23','2019-09-13 09:32:24'),(4167,'accounting','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:12','2019-09-13 11:01:14'),(4168,'mathematics','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:24','2019-09-13 11:01:25'),(4169,'physics','66.249.64.166',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:33:40','2019-09-13 14:33:41'),(4170,'accounting','66.249.64.180',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:39:00','2019-09-25 11:14:55'),(4171,'chemistry','220.244.110.40',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:15:30','2019-09-13 23:15:32'),(4172,'mathematics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:18','2019-09-13 23:46:20'),(4173,'physics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:45','2019-09-13 23:46:47'),(4174,'mathematics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:03:10','2019-09-14 01:03:12'),(4175,'physics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:04:12','2019-09-14 01:04:14'),(4176,'mathematics','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:11:39','2019-09-14 03:11:40'),(4177,'biology','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:12:05','2019-09-14 03:12:06'),(4178,'mathematics','3.92.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 06:23:58','2019-09-14 06:23:58'),(4179,'physics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:10:22','2019-09-14 08:10:23'),(4180,'mathematics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:11:18','2019-09-14 08:11:20'),(4181,'mathematics','211.27.254.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:53:20','2019-09-14 08:53:22'),(4182,'chemistry','41.86.6.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:55:03','2019-09-14 08:55:59'),(4183,'mathematics','66.249.66.212',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:03:19','2019-10-01 13:36:10'),(4184,'accounting','66.249.66.212',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:11:53','2019-10-10 06:34:01'),(4185,'biology','66.249.66.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:13:24','2019-10-09 01:01:54'),(4186,'chemistry','66.249.66.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:14:57','2019-10-29 04:35:40'),(4187,'physics','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:15:49','2019-10-10 06:52:10'),(4188,'chemistry','207.46.13.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:21:21','2019-09-14 13:21:21'),(4189,'chemistry','129.56.90.193',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:23:39','2019-09-14 13:25:42'),(4190,'chemistry','185.20.6.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:12:04','2019-09-14 14:12:04'),(4191,'chemistry','54.91.254.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:13:12','2019-09-14 14:13:12'),(4192,'chemistry','3.95.179.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:15:08','2019-09-14 14:15:08'),(4193,'mathematics','54.167.105.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 23:41:30','2019-09-14 23:41:30'),(4194,'physics','110.44.120.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 02:50:34','2019-09-15 02:50:36'),(4195,'chemistry','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:14:22','2019-09-15 04:15:04'),(4196,'biology','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:15:02','2019-09-15 04:15:37'),(4197,'accounting','113.199.203.102',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:16:18','2019-09-15 04:16:20'),(4198,'chemistry','35.172.100.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 07:24:14','2019-09-15 07:24:28'),(4199,'mathematics','54.221.170.133',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 13:27:05','2019-09-15 13:59:54'),(4200,'crk','54.221.170.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 14:16:11','2019-09-15 14:16:11'),(4201,'chemistry','54.36.148.104',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 18:59:31','2019-09-15 18:59:31'),(4202,'mathematics','34.207.243.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 19:16:51','2019-09-15 19:16:51'),(4203,'mathematics','47.30.248.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 04:20:11','2019-09-16 04:20:13'),(4204,'mathematics','49.195.29.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 06:12:19','2019-09-16 06:12:21'),(4205,'chemistry','157.51.26.93',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:06:39','2019-09-16 11:06:40'),(4206,'mathematics','41.86.152.178',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:19:00','2019-09-16 11:19:01'),(4207,'english','105.112.45.87',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 12:37:29','2019-09-16 12:37:56'),(4208,'mathematics','154.120.94.26',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 13:28:56','2019-09-16 13:28:57'),(4209,'physics','157.51.31.138',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-16 14:16:36','2019-09-16 14:17:04'),(4210,'chemistry','157.51.31.138',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 14:17:05','2019-09-16 14:17:32'),(4211,'physics','49.126.207.89',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:02:39','2019-09-16 16:12:06'),(4212,'chemistry','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:12:11','2019-09-16 16:12:12'),(4213,'biology','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:16:05','2019-09-16 16:16:06'),(4214,'chemistry','197.210.44.251',16,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:25:35','2019-09-16 16:28:49'),(4215,'chemistry','197.210.62.38',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:26','2019-09-16 16:29:26'),(4216,'chemistry','197.210.45.121',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:50','2019-09-16 16:29:50'),(4217,'mathematics','3.95.23.58',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:40:13','2019-09-16 16:40:13'),(4218,'chemistry','27.34.70.118',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:54:28','2019-09-17 01:54:29'),(4219,'physics','27.34.70.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:55:46','2019-09-17 01:57:21'),(4220,'physics','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:44:39','2019-09-17 06:44:41'),(4221,'biology','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:48:22','2019-09-17 06:48:23'),(4222,'physics','113.199.202.174',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:16:31','2019-09-17 07:16:33'),(4223,'biology','43.245.95.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:55:04','2019-09-17 07:57:24'),(4224,'chemistry','197.210.141.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 08:18:07','2019-09-17 08:18:07'),(4225,'physics','27.34.48.127',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-17 13:39:15','2019-09-17 13:39:17'),(4226,'chemistry','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:39:29','2019-09-17 13:39:30'),(4227,'biology','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:42:20','2019-09-17 13:42:22'),(4228,'chemistry','41.190.2.129',92,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:53:44','2019-09-18 12:00:00'),(4229,'mathematics','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:56:08','2019-09-18 11:06:40'),(4230,'mathematics','34.230.32.127',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 19:04:41','2019-09-17 19:04:41'),(4231,'crk','105.112.52.75',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 20:33:57','2019-09-17 20:34:00'),(4232,'mathematics','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 21:53:45','2019-09-17 21:53:47'),(4233,'biology','66.249.64.180',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-17 22:13:17','2019-09-25 11:22:46'),(4234,'chemistry','91.242.162.56',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 00:16:39','2019-09-18 00:16:39'),(4235,'physics','49.181.255.251',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:11:15','2019-09-18 02:11:47'),(4236,'chemistry','49.181.255.251',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:12:23','2019-09-18 02:12:24'),(4237,'physics','110.44.127.203',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:21:31','2019-09-18 02:21:32'),(4238,'chemistry','40.77.167.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 03:04:48','2019-09-18 03:04:48'),(4239,'chemistry','49.180.134.8',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 04:19:37','2019-09-18 04:19:38'),(4240,'government','41.190.2.129',658,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-18 04:37:51','2019-09-18 11:14:19'),(4241,'english','35.233.231.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 05:38:18','2019-09-18 05:38:18'),(4242,'english','41.190.2.129',77,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:17:49','2019-09-18 09:59:30'),(4243,'biology','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:26:52','2019-09-18 11:11:13'),(4244,'chemistry','197.210.226.214',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 10:04:09','2019-09-18 10:04:09'),(4245,'english','188.29.164.19',28,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:23:26','2019-09-18 11:25:54'),(4246,'commerce','41.190.2.129',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:28:08','2019-09-18 11:56:09'),(4247,'chemistry','66.249.83.20',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 11:46:32','2019-11-06 14:40:23'),(4248,'english','105.112.41.25',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:49:33','2019-09-18 11:49:33'),(4249,'chemistry','105.112.38.22',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:07:36','2019-09-18 12:07:36'),(4250,'english','105.112.38.22',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:09:51','2019-09-18 12:11:42'),(4251,'chemistry','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:22','2019-09-18 12:49:23'),(4252,'chemistry','157.55.39.178',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:23','2019-09-18 12:49:23'),(4253,'biology','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:38','2019-09-18 12:49:38'),(4254,'english','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:50:03','2019-09-18 12:50:03'),(4255,'chemistry','197.210.65.154',21,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:11:00','2019-09-18 14:14:29'),(4256,'government','197.210.65.154',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:15:12','2019-09-18 14:17:53'),(4257,'government','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:22:02','2019-09-18 14:22:03'),(4258,'chemistry','41.190.2.121',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:24:39','2019-09-18 14:24:39'),(4259,'commerce','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:25:26','2019-09-18 14:25:26'),(4260,'english','197.149.125.34',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:29:51','2019-09-18 15:03:08'),(4261,'economics','105.112.29.230',10,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:08:25','2019-09-18 17:49:38'),(4262,'commerce','41.190.30.252',119,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 15:20:43','2019-09-19 15:57:17'),(4263,'commerce','105.112.29.213',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:29:15','2019-09-18 15:29:15'),(4264,'government','41.190.30.252',245,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:07:56','2019-09-20 12:55:06'),(4265,'english','105.112.41.242',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:10:59','2019-09-18 16:12:46'),(4266,'english','41.190.30.252',301,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:30:17','2019-09-20 12:50:25'),(4267,'mathematics','41.190.2.209',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:45:19','2019-09-18 16:45:20'),(4268,'chemistry','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:05','2019-09-19 15:57:38'),(4269,'mathematics','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:20','2019-09-19 15:57:59'),(4270,'biology','41.190.30.252',602,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:26:22','2019-09-20 12:54:08'),(4271,'chemistry','150.70.167.82',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 18:31:12','2019-09-26 00:57:44'),(4272,'chemistry','40.77.167.63',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 01:09:50','2020-01-08 07:44:01'),(4273,'mathematics','41.217.116.241',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 03:47:25','2019-09-19 03:54:42'),(4274,'government','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:20:51','2019-09-19 07:20:52'),(4275,'biology','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:22:21','2019-09-19 07:22:22'),(4276,'mathematics','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4277,'chemistry','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4278,'englishlit','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4279,'crk','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4280,'geography','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4281,'currentaffairs','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4282,'history','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:55'),(4283,'english','45.222.100.155',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:45:54','2019-09-19 08:47:36'),(4284,'biology','27.34.25.22',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 10:47:54','2019-09-19 10:47:56'),(4285,'physics','27.34.70.49',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 12:46:48','2019-09-19 13:37:35'),(4286,'chemistry','41.138.163.117',264,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 16:24:08','2019-09-20 08:36:52'),(4287,'physics','27.34.70.50',260,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-19 17:28:13','2019-09-19 18:55:53'),(4288,'chemistry','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 17:50:14','2019-09-19 17:50:15'),(4289,'biology','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 18:55:47','2019-09-19 18:55:48'),(4290,'chemistry','54.36.148.175',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 20:34:08','2019-09-19 20:34:08'),(4291,'english','41.217.116.241',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 05:04:08','2019-09-20 05:04:56'),(4292,'biology','110.44.125.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:16:05','2019-09-20 13:16:59'),(4293,'physics','103.95.16.239',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:20','2019-09-20 13:33:21'),(4294,'physics','103.94.222.78',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:40','2019-09-20 13:33:42'),(4295,'physics','103.58.145.248',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:47:59','2019-09-20 14:02:35'),(4296,'chemistry','103.58.145.248',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:49:11','2019-09-20 13:49:13'),(4297,'physics','27.34.26.105',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:02','2019-09-20 13:51:04'),(4298,'biology','27.34.26.105',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:12','2019-09-20 13:53:00'),(4299,'biology','103.58.145.248',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:49','2019-09-20 13:58:53'),(4300,'physics','27.34.70.223',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 14:15:53','2019-09-20 14:15:54'),(4301,'biology','27.34.104.212',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:24','2019-09-20 15:10:26'),(4302,'biology','27.34.69.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:35','2019-09-20 15:10:36'),(4303,'physics','43.228.192.35',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:33:07','2019-09-27 00:26:30'),(4304,'mathematics','43.228.192.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:34:07','2019-09-20 15:36:30'),(4305,'accounting','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:08','2019-09-20 18:55:09'),(4306,'englishlit','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4307,'government','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4308,'geography','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4309,'irk','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4310,'civiledu','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4311,'history','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4312,'biology','103.95.16.185',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 19:02:51','2019-09-20 19:02:52'),(4313,'chemistry','93.158.166.147',2,'','NG','','Lagos',NULL,NULL,'','','2019-09-20 20:08:32','2019-10-24 17:47:31'),(4314,'physics','27.34.25.249',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-20 22:44:30','2019-09-20 22:44:31'),(4315,'biology','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:44:50','2019-09-20 22:44:51'),(4316,'chemistry','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:46:10','2019-09-20 22:46:12'),(4317,'chemistry','35.173.47.43',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 00:22:18','2019-09-21 00:22:22'),(4318,'mathematics','66.249.64.178',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 02:47:16','2019-09-21 02:47:18'),(4319,'chemistry','3.81.148.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:13:38','2019-09-21 05:13:46'),(4320,'chemistry','154.120.114.154',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:17:33','2019-09-21 06:18:06'),(4321,'chemistry','54.89.142.238',106,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 08:00:06','2019-09-21 08:09:05'),(4322,'chemistry','91.242.162.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 11:12:15','2019-09-21 11:12:15'),(4323,'commerce','41.190.31.67',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:09:29','2019-09-21 19:06:59'),(4324,'government','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:11:30','2019-09-21 15:11:31'),(4325,'mathematics','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:12:57','2019-09-21 15:12:58'),(4326,'chemistry','105.112.53.39',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 18:24:08','2019-09-21 18:28:24'),(4327,'english','197.210.44.0',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 20:50:21','2019-09-21 20:50:21'),(4328,'mathematics','18.234.75.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 21:50:19','2019-09-21 21:50:19'),(4329,'mathematics','34.207.140.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 22:36:26','2019-09-21 22:36:26'),(4330,'biology','27.34.68.44',36,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:18'),(4331,'biology','27.34.68.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:16'),(4332,'chemistry','34.228.212.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 07:07:50','2019-09-22 07:07:50'),(4333,'chemistry','91.242.162.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 09:55:37','2019-09-22 09:55:37'),(4334,'commerce','41.190.3.118',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 10:30:11','2019-09-22 10:32:00'),(4335,'mathematics','35.175.238.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 22:29:35','2019-09-22 22:29:35'),(4336,'biology','103.232.154.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 01:46:19','2019-09-23 01:46:20'),(4337,'biology','27.34.104.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 02:47:02','2019-09-23 02:47:03'),(4338,'mathematics','105.112.27.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 15:37:49','2019-09-23 15:37:50'),(4339,'chemistry','154.113.86.210',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:52:59','2019-09-24 08:58:26'),(4340,'mathematics','154.113.86.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:58:49','2019-09-24 08:58:49'),(4341,'mathematics','154.113.86.202',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 09:42:16','2019-09-24 09:42:41'),(4342,'currentaffairs','54.173.205.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 12:53:57','2019-09-24 12:53:57'),(4343,'english','105.112.52.225',21,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:28:15','2019-09-24 16:49:26'),(4344,'biology','105.112.52.225',663,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:30:16','2019-09-24 14:54:54'),(4345,'chemistry','105.112.52.225',22,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:32:07','2019-09-24 15:00:30'),(4346,'currentaffairs','105.112.52.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 13:34:54','2019-09-24 13:34:54'),(4347,'commerce','105.112.52.225',598,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:30:24','2019-09-24 14:57:46'),(4348,'accounting','105.112.52.225',341,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:33:47','2019-09-24 14:59:43'),(4349,'physics','105.112.52.225',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:55:31','2019-09-24 15:02:06'),(4350,'mathematics','105.112.52.225',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:58:41','2019-09-24 14:58:42'),(4351,'english','41.190.31.234',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 15:47:34','2019-09-24 15:47:34'),(4352,'physics','54.198.206.199',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 21:19:56','2019-09-24 21:19:56'),(4353,'government','52.5.110.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 02:40:21','2019-09-25 02:40:21'),(4354,'biology','105.112.41.33',286,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 03:16:07','2019-09-25 12:05:04'),(4355,'english','154.118.20.99',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 04:50:44','2019-09-25 04:58:16'),(4356,'physics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 05:48:27','2019-09-25 05:48:29'),(4357,'mathematics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 07:16:11','2019-09-25 07:16:13'),(4358,'accounting','105.112.41.33',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:01','2019-09-25 10:01:11'),(4359,'mathematics','105.112.41.33',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:41','2019-09-25 09:14:48'),(4360,'physics','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:25:33','2019-09-25 11:45:37'),(4361,'chemistry','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:53:46','2019-09-25 08:53:47'),(4362,'government','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:02:04','2019-09-25 09:02:04'),(4363,'commerce','105.112.41.33',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:12:58','2019-09-25 09:46:15'),(4364,'english','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:24:47','2019-09-25 09:45:39'),(4365,'history','54.92.191.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 16:07:48','2019-09-25 16:07:48'),(4366,'biology','154.118.42.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 21:32:52','2019-09-25 21:32:53'),(4367,'chemistry','91.242.162.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 03:32:45','2019-09-26 03:54:55'),(4368,'english','154.118.17.103',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 07:55:26','2019-09-26 07:58:00'),(4369,'chemistry','37.9.87.217',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 08:32:29','2019-09-28 02:46:55'),(4370,'civiledu','105.112.44.193',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:35:16','2019-09-26 09:59:45'),(4371,'insurance','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:22','2019-09-26 09:59:23'),(4372,'currentaffairs','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:32','2019-09-26 09:59:32'),(4373,'chemistry','105.112.44.193',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:04:54','2019-09-26 11:38:07'),(4374,'biology','105.112.44.193',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:20','2019-09-26 19:16:16'),(4375,'englishlit','105.112.44.193',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:28','2019-09-26 11:34:05'),(4376,'physics','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:10:00','2019-09-26 11:29:36'),(4377,'accounting','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:14:27','2019-09-26 10:17:13'),(4378,'irk','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:33:54','2019-09-26 10:33:54'),(4379,'government','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:01:08','2019-09-26 11:01:09'),(4380,'commerce','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:28:09','2019-09-26 11:28:10'),(4381,'chemistry','157.55.39.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 18:38:53','2019-11-24 22:31:16'),(4382,'chemistry','154.118.37.164',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:42:25','2019-09-26 21:43:27'),(4383,'mathematics','154.118.37.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:43:52','2019-09-26 21:43:52'),(4384,'government','52.73.45.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 00:37:59','2019-09-27 00:37:59'),(4385,'irk','54.175.103.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 05:05:42','2019-09-27 05:05:42'),(4386,'chemistry','36.99.136.130',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4387,'chemistry','111.7.100.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4388,'chemistry','111.7.100.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:44','2019-10-09 11:27:44'),(4389,'physics','49.244.242.12',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:00:55','2019-09-27 12:00:56'),(4390,'chemistry','157.55.39.74',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:45:44','2019-09-27 12:45:44'),(4391,'english','197.210.54.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 17:55:01','2019-09-27 17:55:01'),(4392,'economics','54.234.192.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 00:10:36','2019-09-28 00:10:36'),(4393,'englishlit','54.91.218.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 02:43:56','2019-09-28 02:43:56'),(4394,'english','154.120.93.57',595,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:40:25','2019-10-01 11:59:48'),(4395,'biology','154.120.93.57',225,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:57:15','2019-09-28 16:09:59'),(4396,'chemistry','105.112.23.210',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:27:45','2019-09-28 11:29:58'),(4397,'physics','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:20','2019-09-28 11:55:21'),(4398,'accounting','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:43','2019-09-28 11:55:45'),(4399,'englishlit','54.172.49.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 15:59:20','2019-09-28 15:59:20'),(4400,'chemistry','154.120.93.57',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 16:06:01','2019-09-28 16:08:44'),(4401,'biology','171.76.250.218',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 18:56:35','2019-09-28 18:58:46'),(4402,'mathematics','105.112.11.104',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 20:48:14','2019-09-28 20:48:14'),(4403,'mathematics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:28'),(4404,'biology','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:29'),(4405,'physics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4406,'chemistry','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4407,'crk','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4408,'economics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4409,'civiledu','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4410,'civiledu','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 23:37:51','2019-09-28 23:37:51'),(4411,'chemistry','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 00:03:54','2019-09-29 00:03:54'),(4412,'physics','54.224.133.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:24:13','2019-09-29 01:52:53'),(4413,'english','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4414,'mathematics','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4415,'accounting','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4416,'crk','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4417,'civiledu','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:54'),(4418,'insurance','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:54','2019-09-29 01:52:54'),(4419,'physics','3.95.189.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 02:51:59','2019-09-29 02:51:59'),(4420,'chemistry','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 06:16:54','2019-09-29 06:16:56'),(4421,'physics','93.71.107.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:18','2019-09-29 07:40:10'),(4422,'chemistry','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:31','2019-09-29 07:39:32'),(4423,'biology','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:40:23','2019-09-29 07:40:25'),(4424,'mathematics','154.120.93.57',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:15:50','2019-09-29 18:43:31'),(4425,'commerce','154.120.93.57',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:31:37','2019-09-29 18:37:10'),(4426,'chemistry','5.255.250.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 10:22:17','2019-10-15 18:07:00'),(4427,'chemistry','107.167.107.151',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:05','2019-09-29 13:44:39'),(4428,'chemistry','105.112.113.181',90,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:22','2019-09-29 13:42:00'),(4429,'mathematics','105.112.113.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:35:38','2019-09-29 13:35:38'),(4430,'chemistry','36.252.98.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:43:36','2019-09-29 13:43:38'),(4431,'chemistry','82.145.220.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 18:07:39','2019-09-29 18:07:47'),(4432,'chemistry','129.56.100.60',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:15:36','2019-09-30 09:16:57'),(4433,'english','129.56.100.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:16:16','2019-09-30 09:16:25'),(4434,'government','41.190.2.44',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:13:45','2019-09-30 14:15:39'),(4435,'biology','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:04','2019-09-30 13:57:15'),(4436,'mathematics','41.190.2.44',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:57','2019-09-30 14:29:55'),(4437,'chemistry','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:43:01','2019-09-30 17:46:58'),(4438,'english','41.190.2.44',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:45:04','2019-09-30 17:49:27'),(4439,'commerce','41.190.2.44',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:54:47','2019-09-30 18:56:36'),(4440,'history','54.147.150.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 15:44:23','2019-09-30 15:44:23'),(4441,'government','41.58.215.64',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:08:17','2019-09-30 18:08:17'),(4442,'mathematics','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:30:32','2019-09-30 18:30:33'),(4443,'government','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:31:38','2019-09-30 18:31:38'),(4444,'biology','27.33.202.67',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 00:15:27','2019-10-01 00:15:29'),(4445,'chemistry','197.210.63.23',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 06:59:39','2019-10-01 07:17:32'),(4446,'physics','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:29:40','2019-10-26 17:47:17'),(4447,'biology','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:39:21','2019-10-12 01:46:00'),(4448,'chemistry','197.210.246.222',930,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 14:56:07','2019-10-08 18:45:58'),(4449,'chemistry','196.220.144.2',702,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 15:04:34','2019-10-06 18:10:34'),(4450,'physics','171.76.168.198',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 20:07:42','2019-10-01 20:07:43'),(4451,'english','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4452,'commerce','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4453,'chemistry','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4454,'economics','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4455,'insurance','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4456,'currentaffairs','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4457,'history','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:35'),(4458,'english','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4459,'commerce','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4460,'englishlit','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4461,'government','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4462,'crk','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4463,'insurance','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4464,'currentaffairs','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:34'),(4465,'english','154.118.21.211',125,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 07:40:32','2019-10-02 08:32:13'),(4466,'chemistry','41.184.176.252',1053,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 10:36:18','2020-01-27 12:19:42'),(4467,'accounting','54.84.164.37',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 12:49:33','2019-10-02 12:49:33'),(4468,'chemistry','3.87.61.43',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-02 13:16:54','2019-10-02 13:16:57'),(4469,'english','197.210.246.222',520,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:48:04','2019-10-08 18:55:26'),(4470,'mathematics','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:50:53','2019-10-02 19:50:56'),(4471,'history','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:52:48','2019-10-02 19:52:51'),(4472,'english','196.220.144.2',291,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:15:37','2019-10-06 20:24:53'),(4473,'mathematics','196.220.144.2',1403,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:35:07','2019-10-06 18:58:12'),(4474,'physics','196.220.144.2',960,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:39:30','2019-10-06 19:09:01'),(4475,'economics','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:50:04','2019-10-08 18:48:36'),(4476,'biology','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:52:35','2019-10-08 18:56:29'),(4477,'commerce','197.210.246.222',320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:56:17','2019-10-02 20:58:19'),(4478,'accounting','197.210.246.222',760,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:58:36','2019-10-08 18:48:07'),(4479,'chemistry','100.43.90.108',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 03:16:03','2019-10-04 02:08:43'),(4480,'physics','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:07','2019-10-03 05:18:08'),(4481,'chemistry','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:34','2019-10-03 05:18:36'),(4482,'english','154.120.87.191',165,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 06:04:34','2019-10-03 16:10:48'),(4483,'english','35.210.215.17',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 07:46:05','2019-10-03 07:46:05'),(4484,'chemistry','5.255.250.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 09:44:47','2019-10-03 09:44:47'),(4485,'chemistry','105.112.41.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 10:51:00','2019-10-03 10:51:26'),(4486,'physics','54.242.236.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 13:11:23','2019-10-03 13:11:23'),(4487,'chemistry','207.46.13.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 16:53:40','2019-10-03 16:53:40'),(4488,'currentaffairs','3.82.243.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 21:55:12','2019-10-03 21:55:12'),(4489,'english','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 05:55:09','2019-10-04 06:29:52'),(4490,'englishlit','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:24:38','2019-10-04 06:29:57'),(4491,'insurance','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:29:57','2019-10-04 06:32:40'),(4492,'government','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:15','2019-10-04 06:33:46'),(4493,'currentaffairs','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:33','2019-10-04 06:32:04'),(4494,'crk','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:31:19','2019-10-04 06:33:25'),(4495,'commerce','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:32:20','2019-10-04 06:33:41'),(4496,'english','41.217.46.141',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 07:54:54','2019-10-04 09:02:54'),(4497,'government','3.85.89.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 09:20:47','2019-10-04 09:20:47'),(4498,'mathematics','3.87.186.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 11:42:15','2019-10-04 11:42:15'),(4499,'english','197.210.44.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:52:50','2019-10-04 14:55:58'),(4500,'mathematics','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:55:40','2019-10-04 14:55:40'),(4501,'chemistry','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:01:20','2019-10-04 15:01:20'),(4502,'biology','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:10:50','2019-10-04 15:10:51'),(4503,'englishlit','196.220.144.2',1080,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-04 21:36:39','2019-10-06 19:21:44'),(4504,'government','196.220.144.2',1001,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:40:51','2019-10-06 19:06:34'),(4505,'geography','196.220.144.2',1320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:43:47','2019-10-06 19:15:16'),(4506,'civiledu','196.220.144.2',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:48:25','2019-10-04 21:51:04'),(4507,'history','52.206.150.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 23:32:16','2019-10-04 23:32:16'),(4508,'physics','119.160.67.57',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 03:40:07','2019-10-05 03:40:08'),(4509,'english','41.217.100.83',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 05:04:25','2019-10-05 06:01:53'),(4510,'chemistry','54.36.149.48',47,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-05 06:27:28','2020-05-06 15:23:56'),(4511,'irk','52.205.10.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 13:25:19','2019-10-05 13:25:19'),(4512,'english','154.118.67.81',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 18:02:59','2019-10-05 20:13:49'),(4513,'physics','110.44.115.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 02:22:30','2019-10-06 02:22:31'),(4514,'mathematics','105.112.17.47',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 05:36:53','2019-10-06 05:37:17'),(4515,'english','41.217.97.111',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:14:35','2019-10-06 11:53:33'),(4516,'government','54.224.0.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:26:54','2019-10-06 06:26:54'),(4517,'irk','54.243.12.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 11:38:30','2019-10-06 11:38:30'),(4518,'economics','196.220.144.2',521,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-06 18:16:49','2019-10-06 19:02:58'),(4519,'history','174.129.83.246',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 18:59:36','2019-10-06 18:59:36'),(4520,'accounting','196.220.144.2',280,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 19:24:55','2019-10-06 19:26:22'),(4521,'english','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:32','2019-10-07 02:07:33'),(4522,'mathematics','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4523,'physics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4524,'englishlit','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4525,'crk','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4526,'economics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4527,'civiledu','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4528,'commerce','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4529,'accounting','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4530,'geography','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4531,'irk','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4532,'economics','18.204.201.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 07:02:49','2019-10-07 07:02:49'),(4533,'english','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4534,'biology','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4535,'englishlit','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4536,'crk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4537,'geography','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4538,'economics','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:11'),(4539,'irk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4540,'insurance','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4541,'currentaffairs','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4542,'history','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4543,'chemistry','40.77.167.166',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 14:48:22','2020-04-16 19:24:46'),(4544,'english','154.120.92.245',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:16:45','2019-10-08 08:28:43'),(4545,'chemistry','207.46.13.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:29:00','2019-10-08 08:29:00'),(4546,'chemistry','197.210.60.68',198,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 13:13:26','2019-10-08 13:25:10'),(4547,'chemistry','91.242.162.77',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 17:35:58','2019-10-08 18:04:36'),(4548,'englishlit','197.210.246.222',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-08 18:46:58','2019-10-08 18:47:31'),(4549,'biology','196.220.144.2',80,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:06:19','2019-10-08 19:06:44'),(4550,'commerce','196.220.144.2',240,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:07:20','2019-10-08 19:08:52'),(4551,'chemistry','66.249.66.208',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 00:58:25','2019-10-26 17:44:22'),(4552,'mathematics','66.249.66.208',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 01:11:04','2019-10-26 17:53:47'),(4553,'chemistry','34.229.149.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 04:15:06','2019-10-09 04:15:06'),(4554,'commerce','54.242.23.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 06:59:31','2019-10-09 06:59:31'),(4555,'chemistry','36.99.136.139',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:44'),(4556,'chemistry','36.99.136.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:43'),(4557,'chemistry','54.36.150.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 12:06:00','2019-10-09 12:06:00'),(4558,'chemistry','35.175.120.211',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 02:34:06','2019-10-10 04:07:28'),(4559,'insurance','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:18','2019-11-12 01:51:04'),(4560,'accounting','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:22','2019-11-12 01:51:08'),(4561,'englishlit','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:25','2019-11-12 01:51:13'),(4562,'government','198.187.29.38',1680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:30','2019-11-12 01:51:18'),(4563,'currentaffairs','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:34','2019-11-12 01:51:24'),(4564,'economics','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:38','2019-11-12 01:51:29'),(4565,'geography','198.187.29.38',1760,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:43','2019-11-12 01:51:33'),(4566,'english','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:50','2019-11-12 01:51:37'),(4567,'mathematics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:54','2019-11-12 01:51:41'),(4568,'commerce','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:58','2019-11-12 01:51:45'),(4569,'biology','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:09','2019-11-12 01:51:48'),(4570,'physics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:13','2019-11-12 01:51:52'),(4571,'chemistry','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:17','2019-11-12 01:51:56'),(4572,'crk','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:20','2019-11-12 01:52:00'),(4573,'history','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:24','2019-11-12 01:52:04'),(4574,'irk','198.187.29.38',810,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:35','2019-11-12 01:52:07'),(4575,'civiledu','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:38','2019-11-12 01:52:11'),(4576,'english','54.147.174.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-11 01:20:30','2019-10-11 01:20:30'),(4577,'chemistry','105.112.51.58',49,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 09:52:44','2019-10-11 09:54:21'),(4578,'chemistry','182.140.244.74',11,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 11:22:18','2019-10-11 11:22:28'),(4579,'mathematics','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4580,'accounting','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4581,'biology','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4582,'government','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4583,'crk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4584,'geography','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4585,'irk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4586,'insurance','54.224.74.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 00:50:18','2019-10-12 00:50:18'),(4587,'mathematics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:33:21','2019-10-12 01:33:22'),(4588,'physics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:39:23','2019-10-12 01:39:25'),(4589,'accounting','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:48:29','2019-10-26 17:37:06'),(4590,'currentaffairs','105.112.40.99',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 05:00:59','2019-10-12 05:00:59'),(4591,'biology','105.112.40.100',10,'',NULL,'',NULL,NULL,NULL,'','','2019-10-12 16:50:45','2019-10-12 16:51:53'),(4592,'currentaffairs','3.87.162.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 01:34:03','2019-10-13 01:34:03'),(4593,'commerce','54.83.149.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 06:55:56','2019-10-13 06:55:56'),(4594,'chemistry','41.217.58.69',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 07:04:52','2019-10-13 09:28:40'),(4595,'crk','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:00','2019-10-13 11:14:03'),(4596,'chemistry','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:11','2019-10-13 11:14:14'),(4597,'currentaffairs','18.212.242.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:31:55','2019-10-13 11:31:55'),(4598,'biology','171.76.195.83',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:53:18','2019-10-13 11:53:45'),(4599,'physics','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:13','2019-10-13 12:00:14'),(4600,'chemistry','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:35','2019-10-13 12:00:36'),(4601,'government','54.89.105.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 14:56:23','2019-10-13 14:56:23'),(4602,'chemistry','129.56.105.4',53,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:17:44','2019-10-13 15:21:07'),(4603,'mathematics','129.56.105.4',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:23:57','2019-10-13 15:24:00'),(4604,'chemistry','3.92.76.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 02:02:14','2019-10-14 02:02:17'),(4605,'history','3.94.214.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 04:11:49','2019-10-14 04:11:49'),(4606,'chemistry','197.210.64.86',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 07:32:24','2019-10-14 07:32:27'),(4607,'history','3.89.135.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 08:16:22','2019-10-14 08:16:22'),(4608,'chemistry','157.55.39.168',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 09:16:59','2019-10-14 09:17:00'),(4609,'mathematics','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:57:53','2019-10-14 16:35:36'),(4610,'commerce','41.190.30.180',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:59:39','2019-10-14 16:45:26'),(4611,'government','41.190.30.180',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:00:51','2019-10-14 16:25:28'),(4612,'biology','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:03:11','2019-10-14 16:35:03'),(4613,'chemistry','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:09:18','2019-10-14 16:33:53'),(4614,'english','41.190.30.180',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:13:01','2019-10-14 16:38:31'),(4615,'mathematics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4616,'mathematics','3.88.110.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4617,'englishlit','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4618,'commerce','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4619,'crk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4620,'accounting','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4621,'biology','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4622,'economics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4623,'irk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4624,'geography','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4625,'insurance','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4626,'currentaffairs','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4627,'mathematics','18.215.162.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 07:32:53','2019-10-15 07:32:53'),(4628,'chemistry','105.112.26.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 11:12:59','2019-10-15 11:12:59'),(4629,'english','34.227.191.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 14:04:54','2019-10-15 14:04:54'),(4630,'irk','34.207.92.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 16:11:12','2019-10-15 16:11:12'),(4631,'english','105.112.120.131',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:31:08','2019-10-16 00:50:07'),(4632,'physics','105.112.120.131',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:33:25','2019-10-16 00:33:25'),(4633,'history','54.237.235.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 03:43:24','2019-10-16 03:43:24'),(4634,'government','41.190.31.103',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:29:16','2019-10-16 06:29:16'),(4635,'biology','41.190.31.103',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:30:16','2019-10-16 06:31:46'),(4636,'economics','35.173.136.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 11:30:36','2019-10-16 11:30:36'),(4637,'commerce','3.86.101.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 13:52:29','2019-10-16 13:52:29'),(4638,'english','105.112.46.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 16:05:22','2019-10-16 16:08:03'),(4639,'insurance','34.203.203.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 14:09:34','2019-10-17 14:09:34'),(4640,'chemistry','3.85.245.126',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 17:30:44','2019-10-17 17:55:33'),(4641,'english','41.217.98.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 22:28:02','2019-10-17 22:28:02'),(4642,'english','41.217.89.22',145,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 04:35:09','2019-10-18 06:06:03'),(4643,'chemistry','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:23:36','2019-10-18 06:23:36'),(4644,'accounting','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:59:21','2019-10-18 06:59:21'),(4645,'commerce','154.120.107.217',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 07:40:00','2019-10-18 07:41:16'),(4646,'commerce','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 08:40:41','2019-10-18 08:40:41'),(4647,'mathematics','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 09:07:15','2019-10-18 09:07:15'),(4648,'chemistry','41.191.105.90',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 15:48:28','2019-10-18 15:49:58'),(4649,'mathematics','54.234.162.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 18:25:03','2019-10-18 18:25:03'),(4650,'english','105.112.46.232',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 19:58:44','2019-10-20 16:01:53'),(4651,'mathematics','105.112.46.232',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 20:37:17','2019-10-18 20:37:38'),(4652,'english','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4653,'mathematics','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4654,'accounting','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4655,'englishlit','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4656,'biology','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4657,'government','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4658,'chemistry','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4659,'geography','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4660,'irk','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4661,'civiledu','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4662,'currentaffairs','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:13'),(4663,'government','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:41:48','2019-10-19 05:41:48'),(4664,'english','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:45:20','2019-10-19 05:45:20'),(4665,'mathematics','197.210.44.151',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:55','2019-10-19 08:59:56'),(4666,'biology','197.210.44.151',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:56','2019-10-19 09:27:54'),(4667,'english','105.112.73.172',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 09:37:46','2019-10-19 09:37:48'),(4668,'chemistry','207.46.13.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 15:25:34','2019-10-19 15:25:34'),(4669,'chemistry','3.209.80.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 16:51:54','2019-10-19 16:51:54'),(4670,'english','18.206.241.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 04:13:55','2019-10-20 04:13:55'),(4671,'mathematics','54.80.29.100',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:33:07','2019-10-20 12:33:46'),(4672,'chemistry','207.46.13.122',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:35:39','2019-10-20 12:35:39'),(4673,'mathematics','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4674,'accounting','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4675,'englishlit','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4676,'government','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4677,'crk','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4678,'insurance','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4679,'currentaffairs','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:17','2019-10-20 16:35:17'),(4680,'chemistry','105.112.41.90',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 17:54:25','2019-10-20 17:54:28'),(4681,'english','105.112.44.170',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 18:58:27','2019-10-20 18:58:27'),(4682,'chemistry','141.8.188.161',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 21:56:45','2019-10-20 21:56:46'),(4683,'irk','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:28:19','2019-10-21 01:28:19'),(4684,'mathematics','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:36:39','2019-10-21 01:36:39'),(4685,'chemistry','197.210.64.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 05:52:18','2019-10-21 05:52:19'),(4686,'insurance','52.90.91.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 08:46:16','2019-10-21 08:46:16'),(4687,'chemistry','197.210.8.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:11:30','2019-10-21 10:11:30'),(4688,'chemistry','197.210.47.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:26:02','2019-10-21 10:26:26'),(4689,'mathematics','197.210.47.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:27:16','2019-10-21 10:27:16'),(4690,'chemistry','34.228.38.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 15:27:28','2019-10-21 15:27:28'),(4691,'chemistry','141.8.143.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 20:01:50','2019-10-21 20:01:50'),(4692,'chemistry','54.36.149.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 03:32:50','2019-10-22 03:32:50'),(4693,'currentaffairs','3.95.63.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 10:54:12','2019-10-22 10:54:12'),(4694,'english','41.203.78.1',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:10:05','2019-10-22 13:10:05'),(4695,'biology','54.196.129.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:22:41','2019-10-22 13:22:41'),(4696,'chemistry','197.210.53.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:09:28','2020-04-07 17:00:28'),(4697,'chemistry','197.210.53.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:10:41','2019-10-22 15:10:41'),(4698,'commerce','3.87.222.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:12:55','2019-10-22 17:12:55'),(4699,'physics','66.249.64.239',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:37:27','2019-10-22 17:37:29'),(4700,'currentaffairs','18.212.225.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 21:17:58','2019-10-22 21:17:58'),(4701,'accounting','54.89.96.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 23:16:46','2019-10-22 23:16:46'),(4702,'government','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 01:59:48','2019-10-23 01:59:48'),(4703,'mathematics','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 02:02:09','2019-10-23 02:02:09'),(4704,'chemistry','66.249.88.71',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 08:13:03','2019-10-23 14:35:06'),(4705,'englishlit','3.85.139.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 11:12:36','2019-10-23 11:12:36'),(4706,'english','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4707,'mathematics','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4708,'accounting','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:13'),(4709,'government','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4710,'crk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4711,'irk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4712,'civiledu','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4713,'chemistry','66.249.83.18',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:35:06','2019-11-06 14:40:34'),(4714,'chemistry','197.211.57.153',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:36:10','2019-10-23 14:40:46'),(4715,'mathematics','197.211.57.153',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:37:19','2019-10-23 14:38:17'),(4716,'chemistry','74.125.210.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:38:27','2019-10-23 14:38:27'),(4717,'history','3.84.20.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 17:22:28','2019-10-23 17:22:28'),(4718,'english','105.112.44.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 18:01:51','2019-10-23 18:01:51'),(4719,'english','105.112.53.50',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:15:14','2019-10-23 20:15:14'),(4720,'biology','3.89.55.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:28:18','2019-10-23 20:28:18'),(4721,'history','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 00:17:49','2019-10-24 00:17:49'),(4722,'english','41.190.3.189',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 03:02:51','2019-10-24 03:02:52'),(4723,'chemistry','197.253.35.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:18:00','2019-10-24 07:18:00'),(4724,'chemistry','91.242.162.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:42:43','2019-10-24 07:52:10'),(4725,'chemistry','41.203.73.203',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:45:04','2019-10-24 08:53:03'),(4726,'biology','41.203.73.203',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:53:59','2019-10-24 08:54:01'),(4727,'chemistry','129.205.112.139',108,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 11:19:07','2019-10-24 12:02:39'),(4728,'chemistry','154.120.87.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 17:55:11','2019-10-24 17:56:27'),(4729,'chemistry','54.36.148.163',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 19:43:38','2019-10-24 19:43:39'),(4730,'accounting','34.204.7.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 06:14:19','2019-10-25 06:14:19'),(4731,'history','23.22.145.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 07:34:04','2019-10-25 07:34:04'),(4732,'mathematics','129.205.112.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:18:03','2019-10-25 09:18:03'),(4733,'commerce','129.205.112.139',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:29:16','2019-10-25 09:31:21'),(4734,'english','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4735,'biology','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4736,'physics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4737,'government','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4738,'crk','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:03'),(4739,'economics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4740,'civiledu','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4741,'chemistry','100.43.81.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:45:17','2019-10-25 16:45:17'),(4742,'crk','18.212.239.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 18:29:40','2019-10-25 18:29:40'),(4743,'commerce','35.173.231.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 23:55:41','2019-10-25 23:55:41'),(4744,'accounting','54.234.193.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 02:03:11','2019-10-26 02:03:11'),(4745,'english','197.242.102.245',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:44:02','2019-10-26 12:15:20'),(4746,'mathematics','197.242.102.245',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:46:55','2019-10-26 05:46:55'),(4747,'chemistry','41.203.73.208',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 09:43:31','2019-10-26 09:47:32'),(4748,'biology','54.81.220.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 15:10:39','2019-10-26 15:10:39'),(4749,'geography','18.204.197.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 16:03:30','2019-10-26 16:03:30'),(4750,'insurance','54.80.115.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 18:02:39','2019-10-26 18:02:39'),(4751,'commerce','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4752,'accounting','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4753,'biology','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4754,'chemistry','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4755,'physics','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4756,'government','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4757,'crk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4758,'englishlit','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:35'),(4759,'irk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4760,'insurance','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4761,'history','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4762,'chemistry','120.18.21.195',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:10','2019-10-27 05:56:57'),(4763,'mathematics','120.18.21.195',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:46','2019-10-27 05:25:47'),(4764,'crk','18.205.116.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:31:51','2019-10-27 05:31:51'),(4765,'english','154.120.107.117',322,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 06:13:42','2019-10-27 10:26:33'),(4766,'commerce','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4767,'accounting','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4768,'biology','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4769,'chemistry','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:52'),(4770,'englishlit','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4771,'government','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4772,'irk','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4773,'chemistry','157.55.39.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:39:09','2019-10-27 14:39:09'),(4774,'englishlit','3.88.251.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:47:29','2019-10-27 14:47:29'),(4775,'commerce','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 18:59:58','2019-10-27 18:59:58'),(4776,'crk','3.88.198.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:12:54','2019-10-28 01:12:54'),(4777,'chemistry','40.77.167.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:42:41','2019-10-28 01:42:41'),(4778,'biology','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 04:16:20','2019-10-28 04:16:20'),(4779,'government','18.232.138.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 06:35:55','2019-10-28 06:35:55'),(4780,'physics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:30:28','2019-10-28 07:30:29'),(4781,'mathematics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:31:02','2019-10-28 07:31:04'),(4782,'government','3.95.66.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 08:05:51','2019-10-28 08:05:51'),(4783,'english','105.112.72.133',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:29:38','2019-10-28 09:29:39'),(4784,'chemistry','197.210.52.23',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:51:40','2019-10-28 09:53:37'),(4785,'chemistry','197.210.53.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:53:00','2019-10-28 09:53:00'),(4786,'crk','3.90.3.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:10:58','2019-10-28 11:10:58'),(4787,'chemistry','197.210.8.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:13:17','2019-10-28 11:13:17'),(4788,'currentaffairs','197.210.8.173',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:14:37','2019-10-28 11:14:46'),(4789,'civiledu','34.207.224.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 17:19:22','2019-10-28 17:19:22'),(4790,'biology','3.89.72.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 03:11:01','2019-10-29 03:11:01'),(4791,'government','54.89.226.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 05:28:30','2019-10-29 05:28:30'),(4792,'economics','3.93.216.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 06:59:51','2019-10-29 06:59:51'),(4793,'english','105.112.40.87',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 09:57:48','2019-10-29 12:46:07'),(4794,'english','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 11:36:32','2019-10-29 11:36:32'),(4795,'accounting','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 12:02:06','2019-10-29 12:02:06'),(4796,'mathematics','105.112.73.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:23:32','2019-10-29 15:23:32'),(4797,'english','41.190.30.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:36:54','2019-10-29 15:36:54'),(4798,'mathematics','105.112.17.202',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:55:44','2019-10-29 15:55:44'),(4799,'english','196.27.128.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:57:02','2019-10-29 15:57:02'),(4800,'chemistry','196.27.128.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:59:40','2019-10-29 15:59:41'),(4801,'mathematics','154.68.226.2',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:06:09','2019-10-29 16:06:09'),(4802,'english','197.210.227.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:21:51','2019-10-29 16:21:51'),(4803,'english','107.167.106.232',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:41:14','2019-10-29 16:42:06'),(4804,'mathematics','18.206.56.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:46:50','2019-10-29 16:46:50'),(4805,'english','105.112.73.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:52:32','2019-10-29 16:52:33'),(4806,'englishlit','197.211.58.67',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:08:44','2019-10-29 17:08:44'),(4807,'government','197.211.58.70',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:11:12','2019-10-29 17:11:13'),(4808,'chemistry','129.56.94.58',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:18','2019-10-29 17:48:50'),(4809,'mathematics','197.210.85.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:26','2019-10-29 17:48:26'),(4810,'mathematics','129.56.94.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:49:32','2019-10-29 17:49:35'),(4811,'chemistry','197.210.53.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:31:50','2019-10-29 19:31:50'),(4812,'english','105.112.53.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:33:58','2019-10-29 19:33:58'),(4813,'chemistry','197.210.52.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:34:08','2019-10-29 19:34:08'),(4814,'mathematics','105.112.53.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:35:34','2019-10-29 19:35:34'),(4815,'chemistry','136.243.91.32',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 20:51:17','2020-01-07 22:24:25'),(4816,'english','54.198.170.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 22:10:58','2019-10-29 22:10:58'),(4817,'physics','3.81.122.72',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:05:58','2019-10-29 23:38:38'),(4818,'english','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4819,'mathematics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4820,'commerce','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4821,'englishlit','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4822,'economics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:39'),(4823,'civiledu','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:39','2019-10-29 23:38:39'),(4824,'mathematics','52.205.254.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 03:27:41','2019-10-30 03:27:41'),(4825,'accounting','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4826,'englishlit','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4827,'geography','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4828,'economics','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4829,'irk','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:56'),(4830,'civiledu','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4831,'currentaffairs','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4832,'mathematics','197.210.226.198',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-30 04:44:48','2020-05-28 20:25:41'),(4833,'english','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:02:12','2019-10-30 06:02:12'),(4834,'physics','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:03:57','2019-10-30 06:03:57'),(4835,'mathematics','34.226.220.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 07:03:46','2019-10-30 07:03:46'),(4836,'chemistry','197.210.57.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 12:45:49','2019-10-30 12:45:49'),(4837,'economics','107.23.28.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 18:15:18','2019-10-30 18:15:18'),(4838,'civiledu','18.214.99.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 19:00:42','2019-10-30 19:00:42'),(4839,'chemistry','197.210.65.172',97,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:11:50'),(4840,'chemistry','197.210.65.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:02:02'),(4841,'chemistry','197.210.57.224',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:55:52','2019-10-30 20:55:53'),(4842,'mathematics','197.210.57.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:56:37','2019-10-30 20:56:37'),(4843,'mathematics','197.210.57.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4844,'mathematics','197.210.57.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4845,'mathematics','197.210.57.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4846,'chemistry','197.210.57.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4847,'chemistry','197.211.58.123',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:15','2019-10-31 11:21:15'),(4848,'mathematics','197.211.58.123',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:24','2019-10-31 13:23:52'),(4849,'chemistry','91.242.162.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 17:52:10','2019-10-31 17:52:10'),(4850,'chemistry','197.210.84.213',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 18:55:16','2019-10-31 18:58:56'),(4851,'insurance','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 20:05:10','2019-10-31 20:05:10'),(4852,'history','18.206.189.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 04:45:22','2019-11-01 04:45:22'),(4853,'crk','54.86.61.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 06:49:49','2019-11-01 06:49:49'),(4854,'biology','54.198.198.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 07:35:21','2019-11-01 07:35:21'),(4855,'english','105.112.77.49',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:39:35','2019-11-01 09:39:36'),(4856,'government','54.174.215.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:52:23','2019-11-01 09:52:23'),(4857,'economics','107.22.138.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 11:25:59','2019-11-01 11:25:59'),(4858,'chemistry','34.207.95.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 14:53:34','2019-11-01 14:53:34'),(4859,'english','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 16:08:03','2019-11-01 16:08:03'),(4860,'englishlit','54.236.206.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 22:07:32','2019-11-01 22:07:32'),(4861,'biology','175.37.47.44',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 23:06:13','2019-11-01 23:06:14'),(4862,'accounting','54.90.121.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 06:44:10','2019-11-02 06:44:10'),(4863,'chemistry','40.77.167.175',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:15:55','2019-11-02 07:15:56'),(4864,'history','35.171.19.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:52:07','2019-11-02 07:52:07'),(4865,'english','105.112.73.230',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:32:09','2019-11-02 13:32:09'),(4866,'crk','3.84.129.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:39:50','2019-11-02 13:39:50'),(4867,'chemistry','197.211.58.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 14:34:58','2019-11-02 14:34:58'),(4868,'commerce','54.162.250.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 16:05:23','2019-11-02 16:05:23'),(4869,'accounting','35.172.138.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 18:09:32','2019-11-02 18:09:32'),(4870,'economics','100.27.31.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 20:25:53','2019-11-02 20:25:53'),(4871,'insurance','18.205.22.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 04:08:45','2019-11-03 04:08:45'),(4872,'englishlit','34.204.2.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 07:47:31','2019-11-03 07:47:31'),(4873,'mathematics','105.112.40.245',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 12:10:24','2019-11-03 12:12:07'),(4874,'chemistry','197.211.58.152',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 17:54:39','2019-11-03 17:55:20'),(4875,'commerce','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:18:15','2019-11-03 19:18:15'),(4876,'english','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:41:39','2019-11-03 19:41:39'),(4877,'physics','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 20:10:58','2019-11-03 20:10:58'),(4878,'crk','54.242.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 21:58:54','2019-11-03 21:58:54'),(4879,'chemistry','197.210.58.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:22:50','2019-11-03 23:22:50'),(4880,'chemistry','197.210.57.85',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:23:06','2019-11-03 23:23:09'),(4881,'chemistry','41.58.233.184',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 00:27:44','2019-11-04 00:30:17'),(4882,'crk','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 01:28:20','2019-11-04 01:28:20'),(4883,'english','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4884,'biology','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4885,'mathematics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4886,'physics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4887,'englishlit','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4888,'government','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4889,'civiledu','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4890,'crk','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4891,'insurance','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4892,'geography','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4893,'currentaffairs','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4894,'accounting','3.84.43.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 19:32:08','2019-11-04 19:32:08'),(4895,'english','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:48','2019-11-05 02:19:48'),(4896,'commerce','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4897,'accounting','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4898,'englishlit','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4899,'crk','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4900,'geography','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4901,'insurance','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4902,'chemistry','54.36.148.22',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:26:28','2019-11-05 02:26:30'),(4903,'mathematics','34.229.222.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 10:07:21','2019-11-05 10:07:21'),(4904,'chemistry','154.120.94.130',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 12:22:45','2019-11-05 12:23:42'),(4905,'commerce','197.211.58.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 19:23:50','2019-11-05 19:23:51'),(4906,'mathematics','18.209.50.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 20:22:48','2019-11-05 20:22:48'),(4907,'chemistry','89.234.68.70',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:17:05','2019-11-06 04:17:44'),(4908,'chemistry','83.71.247.36',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:21:42','2019-11-06 04:22:32'),(4909,'english','18.233.99.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 07:47:51','2019-11-06 07:47:51'),(4910,'currentaffairs','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 09:50:51','2019-11-06 09:50:51'),(4911,'accounting','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 10:24:20','2019-11-06 10:24:20'),(4912,'mathematics','54.145.206.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 12:14:51','2019-11-06 12:14:51'),(4913,'insurance','3.82.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 16:51:53','2019-11-06 16:51:53'),(4914,'history','54.84.14.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 23:14:10','2019-11-06 23:14:10'),(4915,'history','18.212.250.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 02:06:08','2019-11-07 02:06:08'),(4916,'mathematics','197.211.58.187',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 11:26:16','2019-11-07 11:28:37'),(4917,'englishlit','52.205.0.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 16:47:19','2019-11-07 16:47:19'),(4918,'chemistry','66.249.64.116',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 17:17:10','2020-01-25 10:15:50'),(4919,'irk','18.212.71.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 18:58:31','2019-11-07 18:58:31'),(4920,'accounting','54.225.61.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 21:07:53','2019-11-07 21:07:53'),(4921,'english','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:28:09','2019-11-08 00:28:09'),(4922,'history','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:36:53','2019-11-08 00:36:53'),(4923,'crk','35.172.133.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 05:00:20','2019-11-08 05:00:20'),(4924,'commerce','54.91.119.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 06:26:52','2019-11-08 06:26:52'),(4925,'accounting','34.207.107.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 09:53:52','2019-11-08 09:53:52'),(4926,'economics','54.157.32.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 11:20:44','2019-11-08 11:20:44'),(4927,'english','66.249.66.210',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 14:58:50','2019-11-08 14:58:51'),(4928,'chemistry','54.234.228.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 17:47:37','2019-11-08 17:47:37'),(4929,'insurance','3.88.176.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 19:01:26','2019-12-23 08:02:50'),(4930,'chemistry','157.55.39.209',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 21:25:34','2019-11-08 21:25:35'),(4931,'chemistry','91.242.162.26',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:13:24','2019-11-08 22:13:25'),(4932,'englishlit','18.212.146.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:21:32','2019-11-08 22:21:32'),(4933,'chemistry','197.210.70.127',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 00:49:45','2019-11-09 02:10:25'),(4934,'history','197.210.70.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:10:38','2019-11-09 01:10:38'),(4935,'english','197.210.70.127',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:12:33','2019-11-09 02:27:22'),(4936,'crk','34.227.56.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:23:16','2019-11-09 02:23:16'),(4937,'english','197.210.70.11',596,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:29:42','2019-11-09 02:43:37'),(4938,'mathematics','197.210.70.11',115,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:48:03','2019-11-09 03:02:34'),(4939,'commerce','197.210.70.11',887,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-09 03:04:20','2019-11-09 03:25:18'),(4940,'accounting','197.210.70.11',514,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:25:25','2019-11-09 03:37:34'),(4941,'biology','197.210.70.11',549,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:37:38','2019-11-09 07:08:42'),(4942,'physics','54.224.42.134',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 05:11:09','2019-11-09 05:11:09'),(4943,'physics','197.210.70.11',62,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:08:48','2019-11-09 07:17:18'),(4944,'chemistry','197.210.70.11',322,'','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:22:44','2020-01-16 09:56:50'),(4945,'englishlit','197.210.70.11',361,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:33:50','2019-11-09 07:42:56'),(4946,'government','197.210.70.11',438,'Nigeria','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:43:01','2019-11-09 08:01:54'),(4947,'irk','197.210.70.11',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:06:48','2019-11-09 08:07:41'),(4948,'mathematics','197.210.70.169',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:46','2019-11-09 08:08:46'),(4949,'crk','197.210.70.169',391,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:53','2019-11-09 08:46:48'),(4950,'civiledu','197.210.70.169',393,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:09:11','2019-11-09 09:00:04'),(4951,'insurance','197.210.70.169',350,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:11:33','2019-11-09 09:05:35'),(4952,'history','197.210.70.169',50,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:13:57','2019-11-09 08:15:02'),(4953,'geography','197.210.70.169',236,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:16:57','2019-11-09 08:47:31'),(4954,'economics','197.210.70.169',461,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:22:02','2019-11-09 08:53:44'),(4955,'irk','197.210.70.169',33,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:13','2019-11-09 08:57:41'),(4956,'currentaffairs','197.210.70.169',44,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:59','2019-11-09 09:06:11'),(4957,'physics','197.210.70.169',68,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:30:48','2019-11-09 08:33:02'),(4958,'government','197.210.70.169',285,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:32:21','2019-11-09 08:38:37'),(4959,'physics','3.85.57.153',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:37:56','2019-11-09 08:37:56'),(4960,'chemistry','159.138.155.115',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:57:32','2019-11-09 08:57:32'),(4961,'commerce','54.87.49.120',3,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 10:09:51'),(4962,'accounting','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 09:33:31'),(4963,'chemistry','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4964,'government','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4965,'irk','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4966,'civiledu','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4967,'history','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4968,'englishlit','54.87.49.120',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:36:47','2019-11-09 09:36:47'),(4969,'english','105.112.45.248',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:58:49','2019-11-09 09:58:49'),(4970,'english','54.158.200.213',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 12:26:02','2019-11-09 12:26:02'),(4971,'crk','3.95.160.82',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 14:20:40','2019-11-09 14:20:40'),(4972,'mathematics','18.206.174.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 06:53:11','2019-11-10 06:53:11'),(4973,'accounting','54.90.247.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 09:13:09','2019-11-10 09:13:09'),(4974,'chemistry','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:29:58','2019-11-10 11:29:58'),(4975,'english','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:56:18','2019-11-10 11:56:18'),(4976,'mathematics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4977,'commerce','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4978,'physics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4979,'englishlit','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:03'),(4980,'crk','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4981,'geography','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4982,'economics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4983,'mathematics','54.175.81.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 21:05:09','2019-11-10 21:05:09'),(4984,'biology','3.90.109.201',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:25'),(4985,'biology','3.90.109.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:10'),(4986,'chemistry','102.134.115.193',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 14:41:27','2019-11-11 14:46:16'),(4987,'chemistry','54.36.148.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 16:31:40','2019-11-11 16:31:40'),(4988,'economics','3.91.196.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 18:48:42','2019-11-11 18:48:42'),(4989,'mathematics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4990,'commerce','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4991,'biology','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:46'),(4992,'physics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4993,'economics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4994,'currentaffairs','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4995,'history','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4996,'english','54.90.246.133',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:35:46','2019-11-11 20:35:46'),(4997,'mathematics','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:33:47','2019-11-11 23:33:47'),(4998,'insurance','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:47:30','2019-11-11 23:47:30'),(4999,'chemistry','14.210.2.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 02:24:20','2019-11-12 02:24:20'),(5000,'chemistry','3.233.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 05:05:46','2019-11-12 05:05:46'),(5001,'biology','54.92.179.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 08:42:22','2019-11-12 08:42:22'),(5002,'history','54.85.253.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 09:42:51','2019-11-12 09:42:51'),(5003,'chemistry','197.210.71.200',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 12:32:36','2019-11-12 12:32:37'),(5004,'chemistry','223.73.239.66',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 15:29:45','2019-11-12 15:29:46'),(5005,'chemistry','41.190.30.18',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 18:17:17','2019-11-12 18:17:43'),(5006,'englishlit','3.92.166.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 20:15:35','2019-11-12 20:15:35'),(5007,'accounting','103.10.31.31',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:23:01','2019-11-13 05:29:07'),(5008,'physics','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:54','2019-11-13 05:28:55'),(5009,'biology','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:59','2019-11-13 05:29:00'),(5010,'accounting','54.166.15.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 08:33:25','2019-11-13 08:33:25'),(5011,'biology','66.249.64.116',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 09:19:50','2019-11-13 09:19:52'),(5012,'history','54.159.26.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 11:22:16','2019-11-13 11:22:16'),(5013,'physics','66.249.64.112',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 12:14:10','2020-01-11 03:27:45'),(5014,'accounting','3.88.111.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 17:40:10','2019-11-13 17:40:10'),(5015,'chemistry','207.46.13.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 19:01:59','2019-11-13 19:01:59'),(5016,'economics','3.88.230.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:09','2019-11-13 20:05:09'),(5017,'english','105.112.77.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:42','2019-11-13 20:05:45'),(5018,'chemistry','105.112.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 00:12:42','2019-11-14 00:12:42'),(5019,'insurance','3.87.3.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 04:04:18','2019-11-14 04:04:18'),(5020,'english','104.133.10.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:36','2019-11-14 06:14:47'),(5021,'crk','104.133.10.100',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:48','2019-11-14 06:11:51'),(5022,'chemistry','91.242.162.9',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:50:51','2019-11-14 06:50:52'),(5023,'englishlit','34.239.138.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 08:49:26','2019-11-14 08:49:26'),(5024,'english','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5025,'mathematics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5026,'chemistry','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:12','2019-11-14 10:38:15'),(5027,'physics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:14','2019-11-14 10:38:17'),(5028,'commerce','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:19','2019-11-14 10:38:23'),(5029,'currentaffairs','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:21','2019-11-14 10:38:24'),(5030,'government','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:22','2019-11-14 10:38:25'),(5031,'accounting','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:24','2019-11-14 10:38:27'),(5032,'economics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:25','2019-11-14 10:38:28'),(5033,'biology','104.132.127.96',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:27','2019-11-14 10:44:31'),(5034,'geography','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:29','2019-11-14 10:38:32'),(5035,'history','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:31','2019-11-14 10:38:34'),(5036,'insurance','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:33','2019-11-14 10:38:36'),(5037,'civiledu','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:35','2019-11-14 10:38:38'),(5038,'crk','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:37','2019-11-14 10:38:40'),(5039,'englishlit','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:38','2019-11-14 10:38:41'),(5040,'mathematics','197.156.253.124',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 11:11:37','2019-11-14 11:13:49'),(5041,'crk','34.229.192.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:42:00','2019-11-14 12:42:00'),(5042,'chemistry','105.112.113.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:43:31','2019-11-14 12:43:31'),(5043,'english','154.118.34.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 15:44:21','2019-11-14 15:44:24'),(5044,'chemistry','82.145.221.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 17:59:18','2019-11-14 17:59:18'),(5045,'physics','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:46:23','2019-11-14 18:46:23'),(5046,'english','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:53:00','2019-11-14 18:53:00'),(5047,'commerce','3.87.121.240',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-14 19:14:45','2019-11-14 19:14:45'),(5048,'crk','34.238.39.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 22:51:14','2019-11-14 22:51:14'),(5049,'economics','34.228.32.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 02:11:21','2019-11-15 02:11:21'),(5050,'chemistry','105.112.55.179',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:49:45','2019-11-15 08:02:02'),(5051,'physics','105.112.55.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:51:09','2019-11-15 07:51:09'),(5052,'chemistry','105.112.72.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 12:48:53','2019-11-15 12:50:34'),(5053,'accounting','34.203.12.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 19:40:58','2019-11-15 19:40:58'),(5054,'commerce','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5055,'accounting','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5056,'biology','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5057,'chemistry','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:32'),(5058,'geography','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5059,'economics','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5060,'insurance','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5061,'biology','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5062,'chemistry','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5063,'englishlit','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5064,'geography','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5065,'economics','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5066,'irk','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5067,'currentaffairs','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5068,'mathematics','18.212.5.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 08:58:36','2019-11-16 08:58:36'),(5069,'english','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:23:31','2019-11-16 11:23:31'),(5070,'mathematics','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:21','2019-11-16 11:30:21'),(5071,'mathematics','105.112.183.226',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:22','2019-11-16 11:30:23'),(5072,'english','105.112.183.226',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:32:08','2019-11-16 11:32:09'),(5073,'chemistry','3.88.21.220',320,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:53:05','2019-11-16 14:57:29'),(5074,'english','34.207.122.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:55:25','2019-11-16 14:55:25'),(5075,'chemistry','41.58.118.229',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:02:07','2019-11-16 15:05:13'),(5076,'physics','41.58.118.229',147,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:06:10','2019-11-16 15:11:36'),(5077,'mathematics','41.58.118.229',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:17:15','2019-11-16 15:17:18'),(5078,'chemistry','34.227.24.189',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:20:27','2019-11-16 15:20:41'),(5079,'english','41.58.118.229',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-16 15:21:00','2019-11-16 15:23:00'),(5080,'government','41.58.118.229',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:23:59','2019-11-16 15:24:02'),(5081,'chemistry','105.112.183.165',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:28:10','2019-11-16 15:28:10'),(5082,'chemistry','18.212.227.139',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:30:31','2019-11-16 15:30:34'),(5083,'chemistry','34.238.168.46',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:34:19','2019-11-16 15:42:25'),(5084,'chemistry','54.88.106.95',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:46:48','2019-11-16 15:46:51'),(5085,'chemistry','34.227.27.84',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:59:45','2019-11-16 16:02:50'),(5086,'english','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 16:19:39','2019-11-16 16:19:42'),(5087,'english','197.210.28.14',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 17:38:36','2019-11-16 17:38:36'),(5088,'geography','3.92.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 02:58:10','2019-11-17 02:58:10'),(5089,'mathematics','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:39:52','2019-11-17 05:56:58'),(5090,'english','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:40:15','2019-11-17 05:56:35'),(5091,'english','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:04:57','2019-11-17 07:04:57'),(5092,'commerce','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:11:06','2019-11-17 07:11:06'),(5093,'currentaffairs','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:58:01','2019-11-17 07:58:01'),(5094,'economics','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 08:25:21','2019-11-17 08:25:21'),(5095,'mathematics','100.26.97.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 10:58:29','2019-11-17 10:58:29'),(5096,'englishlit','100.27.23.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:42:13','2019-11-17 11:42:13'),(5097,'chemistry','3.226.254.115',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:59:22','2019-11-17 12:24:41'),(5098,'mathematics','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:07:43','2019-11-17 13:07:43'),(5099,'insurance','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:16:37','2019-11-17 13:16:37'),(5100,'commerce','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:52'),(5101,'accounting','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:49'),(5102,'physics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:50'),(5103,'crk','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:46'),(5104,'geography','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:42'),(5105,'economics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:44'),(5106,'history','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:40'),(5107,'accounting','3.90.28.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 01:39:00','2019-11-18 01:39:00'),(5108,'englishlit','54.145.175.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:30:31','2019-11-18 11:30:31'),(5109,'chemistry','154.68.195.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:44:51','2019-11-18 11:44:51'),(5110,'chemistry','105.112.177.109',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 16:07:34','2019-11-18 16:09:34'),(5111,'history','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 22:55:46','2019-12-08 23:07:31'),(5112,'biology','52.90.143.9',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:27:47','2019-11-25 19:20:30'),(5113,'english','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5114,'commerce','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5115,'government','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5116,'crk','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5117,'insurance','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5118,'currentaffairs','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5119,'chemistry','157.55.39.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:14:36','2019-11-19 04:14:36'),(5120,'history','54.152.47.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:20:09','2019-11-19 04:20:09'),(5121,'crk','3.87.113.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 06:24:27','2019-11-19 06:24:27'),(5122,'commerce','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:06:20','2019-11-19 09:06:20'),(5123,'biology','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:12:53','2019-11-19 09:12:53'),(5124,'chemistry','129.56.29.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:13:53','2019-11-19 09:13:53'),(5125,'mathematics','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:13:31','2019-11-19 10:13:31'),(5126,'commerce','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:15:00','2019-11-19 10:15:00'),(5127,'english','105.112.61.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:46:39','2019-11-19 10:46:39'),(5128,'accounting','3.87.101.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 11:57:03','2019-11-19 11:57:03'),(5129,'accounting','54.90.128.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 13:36:06','2019-11-19 13:36:06'),(5130,'economics','54.198.9.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 14:11:01','2019-11-19 14:11:01'),(5131,'chemistry','82.145.221.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 17:06:44','2019-11-19 17:06:59'),(5132,'commerce','34.207.90.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 18:09:26','2019-11-19 18:09:26'),(5133,'insurance','35.175.235.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 21:47:15','2019-11-19 21:47:15'),(5134,'economics','54.243.7.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 23:21:26','2019-11-19 23:21:26'),(5135,'englishlit','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 00:51:45','2019-11-20 00:51:45'),(5136,'accounting','3.81.87.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 03:46:05','2019-11-20 03:46:05'),(5137,'crk','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 05:37:07','2019-11-20 05:37:07'),(5138,'geography','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 06:00:11','2019-11-20 06:00:11'),(5139,'englishlit','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:11:12','2019-11-20 13:11:12'),(5140,'physics','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:12:49','2019-11-20 13:12:49'),(5141,'commerce','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:10:33','2019-11-20 14:10:33'),(5142,'english','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:24:22','2019-11-20 14:24:22'),(5143,'englishlit','3.86.15.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:59:45','2019-11-20 14:59:45'),(5144,'crk','54.211.114.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 18:58:30','2019-11-20 18:58:30'),(5145,'englishlit','54.227.23.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 20:17:56','2019-11-20 20:17:56'),(5146,'economics','54.173.226.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 02:00:33','2019-11-21 02:00:33'),(5147,'currentaffairs','3.87.237.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 15:38:11','2019-11-21 15:38:11'),(5148,'englishlit','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:11:52','2019-11-21 19:11:52'),(5149,'civiledu','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:27:16','2019-11-21 19:27:16'),(5150,'english','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:41:38','2019-11-21 19:41:38'),(5151,'accounting','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 20:05:16','2019-11-21 20:05:16'),(5152,'chemistry','61.138.222.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 02:40:12','2019-11-22 02:40:12'),(5153,'commerce','34.229.113.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 05:56:54','2019-11-22 05:56:54'),(5154,'english','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5155,'mathematics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5156,'physics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5157,'crk','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5158,'geography','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5159,'insurance','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5160,'history','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5161,'mathematics','41.191.105.89',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:47:00','2019-11-22 09:47:25'),(5162,'mathematics','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:28:36','2019-11-22 18:28:36'),(5163,'irk','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:38:47','2019-11-22 18:38:47'),(5164,'chemistry','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:24:34','2019-11-22 19:24:37'),(5165,'mathematics','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:26:12','2019-11-22 19:26:15'),(5166,'chemistry','154.160.27.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 20:46:34','2019-11-22 20:46:34'),(5167,'government','34.235.143.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 23:08:27','2019-11-22 23:08:27'),(5168,'commerce','3.93.212.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:05:01','2019-11-23 01:05:01'),(5169,'insurance','107.23.192.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:56:47','2019-11-23 01:56:47'),(5170,'english','54.87.140.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 03:56:10','2019-11-23 03:56:10'),(5171,'crk','3.80.89.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 04:32:38','2019-11-23 04:32:38'),(5172,'chemistry','40.77.167.170',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 06:00:38','2019-11-23 06:00:39'),(5173,'mathematics','3.87.21.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 13:23:50','2019-11-23 13:23:50'),(5174,'chemistry','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:04:39','2019-11-23 14:04:39'),(5175,'geography','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:13:49','2019-11-23 14:13:49'),(5176,'chemistry','3.82.225.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:59:38','2019-11-23 14:59:38'),(5177,'currentaffairs','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 18:52:45','2019-11-23 18:52:45'),(5178,'geography','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 19:17:25','2019-11-23 19:17:25'),(5179,'english','54.90.185.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 20:11:52','2019-11-23 20:11:52'),(5180,'geography','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 21:06:07','2019-11-23 21:06:07'),(5181,'chemistry','3.87.114.3',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 00:02:34','2019-11-24 00:03:13'),(5182,'geography','3.92.185.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 03:57:44','2019-11-24 03:57:44'),(5183,'englishlit','18.212.68.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 07:58:51','2019-11-24 07:58:51'),(5184,'chemistry','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 08:41:40','2019-11-24 08:41:40'),(5185,'currentaffairs','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 09:06:30','2019-11-24 09:06:30'),(5186,'biology','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 11:46:34','2019-11-24 11:46:34'),(5187,'commerce','3.94.119.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 13:14:32','2019-11-24 13:14:32'),(5188,'economics','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 14:33:11','2019-11-24 14:33:11'),(5189,'commerce','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:06:24','2019-11-24 15:06:24'),(5190,'english','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:27:19','2019-11-24 15:27:19'),(5191,'chemistry','159.138.159.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 18:34:43','2020-01-29 06:08:04'),(5192,'physics','35.173.191.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:09:52','2019-11-24 19:09:52'),(5193,'englishlit','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:56:50','2019-11-24 19:56:50'),(5194,'mathematics','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 20:10:28','2019-11-24 20:10:28'),(5195,'geography','3.95.237.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:00:07','2019-11-24 22:00:07'),(5196,'chemistry','129.205.112.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:36:55','2019-11-24 22:36:55'),(5197,'mathematics','34.239.115.115',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-25 00:20:37'),(5198,'accounting','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5199,'geography','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5200,'economics','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5201,'insurance','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5202,'currentaffairs','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5203,'history','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5204,'government','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:14:49','2019-11-25 00:14:49'),(5205,'biology','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:26:53','2019-11-25 00:26:53'),(5206,'chemistry','91.242.162.34',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:29:05','2019-11-25 00:29:05'),(5207,'mathematics','54.161.28.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 01:18:44','2019-11-25 01:18:44'),(5208,'insurance','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:18:39','2019-11-25 02:18:39'),(5209,'english','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:50:26','2019-11-25 02:50:26'),(5210,'biology','3.80.24.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 13:54:57','2019-11-25 13:54:57'),(5211,'accounting','54.174.106.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:15:50','2019-11-25 22:15:50'),(5212,'chemistry','54.36.150.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:39:17','2019-11-25 22:39:17'),(5213,'chemistry','59.62.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:05:11','2019-11-26 00:05:11'),(5214,'biology','52.207.70.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:23:52','2019-11-26 00:23:52'),(5215,'currentaffairs','3.92.68.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 04:10:20','2019-11-26 04:10:20'),(5216,'biology','3.80.157.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 09:41:29','2019-11-26 09:41:29'),(5217,'currentaffairs','34.201.221.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 13:34:13','2019-11-26 13:34:13'),(5218,'biology','54.226.198.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 19:19:54','2019-11-26 19:19:54'),(5219,'currentaffairs','3.90.165.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 23:25:19','2019-11-26 23:25:19'),(5220,'irk','3.87.128.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 02:59:37','2019-11-27 02:59:37'),(5221,'chemistry','197.210.85.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 04:36:41','2019-11-27 04:36:41'),(5222,'chemistry','52.91.32.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 06:56:10','2019-11-27 06:56:10'),(5223,'chemistry','3.84.51.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 08:55:13','2019-11-27 08:55:13'),(5224,'englishlit','54.205.247.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 09:48:58','2019-11-27 09:48:58'),(5225,'biology','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 12:58:49','2019-11-27 12:58:49'),(5226,'irk','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 13:14:40','2019-11-27 13:14:40'),(5227,'insurance','54.198.168.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 14:09:50','2019-11-27 14:09:50'),(5228,'economics','52.90.222.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 17:06:53','2019-11-27 17:06:53'),(5229,'history','3.92.231.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 18:56:25','2019-11-27 18:56:25'),(5230,'chemistry','18.234.89.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:41:07','2019-11-27 19:41:07'),(5231,'chemistry','49.87.102.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:46:18','2019-11-27 19:46:18'),(5232,'accounting','54.161.90.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 20:54:04','2019-11-27 20:54:04'),(5233,'chemistry','27.214.192.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 23:04:04','2019-11-27 23:04:04'),(5234,'chemistry','34.230.10.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 01:37:13','2019-11-28 01:37:13'),(5235,'irk','18.209.6.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 04:53:50','2019-11-28 04:53:50'),(5236,'biology','3.82.192.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:53:14','2019-11-28 07:53:15'),(5237,'history','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:55:43','2019-11-28 07:55:43'),(5238,'commerce','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5239,'englishlit','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5240,'currentaffairs','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 08:20:01','2019-11-28 08:20:01'),(5241,'mathematics','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:18:07','2019-11-28 10:18:07'),(5242,'chemistry','105.112.55.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:31:45','2019-11-28 10:31:45'),(5243,'commerce','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:42:22','2019-11-28 10:42:22'),(5244,'crk','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 11:14:13','2019-11-28 11:14:13'),(5245,'economics','18.234.45.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 12:07:05','2019-11-28 12:07:05'),(5246,'commerce','52.200.202.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 14:58:46','2019-11-28 14:58:46'),(5247,'biology','41.190.3.204',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 16:57:43','2019-11-28 16:57:44'),(5248,'chemistry','54.36.148.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 17:06:02','2019-11-28 17:06:03'),(5249,'crk','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:31:30','2019-11-28 19:31:30'),(5250,'accounting','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:33:45','2019-11-28 19:33:45'),(5251,'economics','3.85.242.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:37'),(5252,'commerce','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:38'),(5253,'accounting','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5254,'biology','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5255,'physics','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5256,'crk','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5257,'geography','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5258,'currentaffairs','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5259,'geography','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 06:56:30','2019-11-29 06:56:30'),(5260,'economics','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 07:23:58','2019-11-29 07:23:58'),(5261,'commerce','3.90.78.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 09:46:03','2019-11-29 09:46:03'),(5262,'crk','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 14:54:27','2019-11-29 14:54:27'),(5263,'english','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:32:55','2019-11-29 16:32:55'),(5264,'insurance','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:33:40','2019-11-29 16:33:40'),(5265,'biology','54.165.28.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 17:08:15','2019-11-29 17:13:52'),(5266,'englishlit','3.91.91.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 20:29:30','2019-11-29 20:29:30'),(5267,'chemistry','197.210.53.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 22:14:15','2019-11-29 22:14:15'),(5268,'geography','3.80.133.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 00:24:52','2019-11-30 00:24:52'),(5269,'crk','54.144.64.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 03:05:17','2019-11-30 03:05:17'),(5270,'chemistry','141.0.13.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 04:28:46','2019-11-30 04:28:50'),(5271,'crk','34.235.132.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 09:54:43','2019-11-30 09:54:43'),(5272,'economics','3.84.73.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 14:56:44','2019-11-30 14:56:44'),(5273,'chemistry','54.196.143.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 15:46:01','2019-11-30 15:46:01'),(5274,'physics','174.129.162.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 17:01:07','2019-11-30 17:01:07'),(5275,'commerce','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:18:36','2019-11-30 19:18:36'),(5276,'englishlit','3.84.92.186',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:29:52','2019-11-30 19:36:20'),(5277,'english','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:34:16','2019-11-30 19:34:16'),(5278,'crk','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 02:44:38','2019-12-01 02:44:38'),(5279,'englishlit','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 03:14:33','2019-12-01 03:14:33'),(5280,'economics','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:41:42','2019-12-01 06:41:42'),(5281,'chemistry','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:51:45','2019-12-01 06:51:45'),(5282,'chemistry','207.46.13.30',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 08:20:41','2019-12-01 08:20:42'),(5283,'government','3.94.79.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 09:03:08','2019-12-01 09:03:08'),(5284,'chemistry','197.211.58.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 10:28:55','2019-12-01 10:28:55'),(5285,'english','3.83.92.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 13:54:48','2019-12-01 13:54:48'),(5286,'chemistry','182.247.60.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:04:17','2019-12-02 05:04:17'),(5287,'physics','18.212.94.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:51:40','2019-12-02 05:51:40'),(5288,'english','196.13.161.254',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:09:22','2019-12-02 11:11:49'),(5289,'chemistry','196.13.161.254',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:14:59','2019-12-02 12:04:31'),(5290,'currentaffairs','3.86.66.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:36:59','2019-12-02 11:36:59'),(5291,'chemistry','80.248.3.98',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 12:03:05','2019-12-02 12:03:05'),(5292,'currentaffairs','18.212.29.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 13:05:10','2019-12-02 13:05:10'),(5293,'civiledu','34.227.18.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:34:27','2019-12-02 16:34:27'),(5294,'chemistry','124.112.95.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:43:26','2019-12-02 16:43:26'),(5295,'english','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:15:18','2019-12-02 20:15:18'),(5296,'englishlit','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:44:03','2019-12-02 20:44:03'),(5297,'accounting','54.89.129.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 21:26:25','2019-12-02 21:26:25'),(5298,'chemistry','70.49.10.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 04:21:31','2019-12-03 04:21:32'),(5299,'english','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:12','2019-12-03 05:44:12'),(5300,'commerce','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5301,'accounting','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5302,'economics','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5303,'irk','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5304,'insurance','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5305,'history','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5306,'commerce','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5307,'accounting','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5308,'chemistry','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5309,'government','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5310,'geography','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5311,'civiledu','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5312,'history','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5313,'english','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5314,'commerce','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5315,'englishlit','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5316,'crk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5317,'irk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:21'),(5318,'insurance','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5319,'currentaffairs','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5320,'irk','3.82.106.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 20:45:47','2019-12-03 20:45:47'),(5321,'mathematics','52.90.36.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 22:27:46','2019-12-03 22:27:46'),(5322,'government','54.152.243.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 01:01:26','2019-12-04 01:01:26'),(5323,'chemistry','207.46.13.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 03:26:32','2019-12-04 03:26:32'),(5324,'insurance','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 04:39:43','2019-12-04 04:39:43'),(5325,'chemistry','14.134.201.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:29:57','2019-12-04 06:29:57'),(5326,'chemistry','218.73.129.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:30:25','2019-12-04 06:30:25'),(5327,'commerce','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:53:13','2019-12-04 06:53:13'),(5328,'crk','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:05:20','2019-12-04 07:05:20'),(5329,'english','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:15:26','2019-12-04 07:15:26'),(5330,'mathematics','41.190.3.143',119,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:24:47','2019-12-05 00:11:26'),(5331,'biology','41.190.3.143',168,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:28:53','2019-12-05 12:00:11'),(5332,'chemistry','197.211.58.2',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:19:02','2019-12-04 15:19:02'),(5333,'currentaffairs','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:20:27','2019-12-04 15:20:27'),(5334,'mathematics','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:26:56','2019-12-04 15:26:56'),(5335,'chemistry','105.112.181.189',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:14:48','2019-12-04 17:14:58'),(5336,'geography','18.208.212.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:29:42','2019-12-04 17:29:42'),(5337,'english','41.190.3.143',91,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:55:40','2019-12-05 06:58:47'),(5338,'government','41.190.3.143',84,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:56:50','2019-12-05 06:41:34'),(5339,'commerce','41.190.3.143',175,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:57:42','2019-12-05 06:53:25'),(5340,'chemistry','41.190.3.143',140,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 19:01:13','2019-12-05 07:14:29'),(5341,'mathematics','54.172.178.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 20:35:24','2019-12-04 20:35:24'),(5342,'geography','54.172.178.184',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 21:08:09','2019-12-04 21:36:53'),(5343,'english','54.163.0.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 23:30:16','2019-12-04 23:30:16'),(5344,'geography','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:01:50','2019-12-05 01:01:50'),(5345,'history','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:18:02','2019-12-05 01:18:02'),(5346,'geography','204.236.206.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:22:32','2019-12-05 07:22:32'),(5347,'physics','54.86.78.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:59:42','2019-12-05 07:59:42'),(5348,'englishlit','54.172.67.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 09:02:59','2019-12-05 09:02:59'),(5349,'currentaffairs','3.91.46.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 10:24:47','2019-12-05 10:24:47'),(5350,'biology','174.129.108.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 14:55:19','2019-12-05 14:55:19'),(5351,'chemistry','105.112.179.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 17:00:52','2019-12-05 17:00:52'),(5352,'commerce','3.84.85.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:00:24','2019-12-05 18:23:26'),(5353,'english','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:44:01','2019-12-05 18:44:01'),(5354,'economics','3.88.46.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 19:56:33','2019-12-05 19:56:33'),(5355,'history','54.81.95.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 20:35:42','2019-12-05 20:35:42'),(5356,'chemistry','113.138.129.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:25','2019-12-05 21:06:25'),(5357,'chemistry','40.77.167.50',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:35','2019-12-05 21:06:35'),(5358,'mathematics','18.233.165.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 22:52:02','2019-12-05 22:52:02'),(5359,'englishlit','54.175.59.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 00:21:22','2019-12-06 00:21:22'),(5360,'chemistry','52.90.137.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 01:50:04','2019-12-06 01:50:04'),(5361,'geography','3.87.199.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 02:52:45','2019-12-06 02:52:45'),(5362,'mathematics','3.88.194.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 04:08:29','2019-12-06 04:08:29'),(5363,'government','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:32:21','2019-12-06 05:32:21'),(5364,'mathematics','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:40:15','2019-12-06 05:40:15'),(5365,'insurance','34.227.157.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 06:43:30','2019-12-06 06:43:30'),(5366,'physics','54.172.2.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 10:09:01','2019-12-06 10:09:01'),(5367,'biology','66.249.88.17',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 14:07:38','2020-02-15 20:12:28'),(5368,'chemistry','197.210.84.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:36:43','2019-12-06 18:36:43'),(5369,'crk','197.210.84.159',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:40:55','2019-12-06 19:11:31'),(5370,'biology','34.205.127.71',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5371,'biology','34.205.127.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5372,'accounting','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:12:45','2019-12-07 10:12:45'),(5373,'history','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:34:21','2019-12-07 10:34:21'),(5374,'chemistry','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5375,'englishlit','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5376,'government','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5377,'crk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5378,'irk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5379,'civiledu','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5380,'currentaffairs','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5381,'irk','54.242.7.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 01:13:25','2019-12-08 01:13:25'),(5382,'englishlit','54.242.126.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 06:59:59','2019-12-08 06:59:59'),(5383,'chemistry','40.77.167.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 15:51:20','2019-12-08 15:51:20'),(5384,'chemistry','197.210.47.7',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:00:48','2019-12-08 16:00:49'),(5385,'chemistry','197.210.47.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:17:03','2019-12-08 16:17:03'),(5386,'insurance','54.152.41.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 17:44:29','2019-12-08 17:44:29'),(5387,'chemistry','93.158.161.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 18:45:52','2019-12-08 18:45:52'),(5388,'economics','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 19:54:55','2019-12-08 19:54:55'),(5389,'biology','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 20:26:43','2019-12-08 20:26:43'),(5390,'commerce','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5391,'english','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5392,'accounting','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5393,'accounting','3.82.25.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5394,'physics','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:42'),(5395,'biology','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5396,'geography','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5397,'economics','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5398,'crk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5399,'civiledu','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5400,'irk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5401,'chemistry','40.77.167.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 00:56:26','2019-12-09 00:56:26'),(5402,'accounting','54.226.206.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 03:42:51','2019-12-09 03:42:51'),(5403,'history','52.206.133.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 04:25:20','2019-12-09 04:25:20'),(5404,'biology','54.173.252.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 05:46:38','2019-12-09 05:46:39'),(5405,'irk','18.234.114.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 11:05:35','2019-12-09 11:05:35'),(5406,'chemistry','54.36.148.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:28:12','2019-12-09 16:28:16'),(5407,'biology','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:39'),(5408,'englishlit','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:38'),(5409,'crk','54.89.129.103',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:48:45'),(5410,'commerce','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5411,'economics','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5412,'irk','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5413,'physics','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5414,'chemistry','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5415,'insurance','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:40'),(5416,'currentaffairs','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5417,'commerce','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:17:25','2019-12-09 19:17:25'),(5418,'economics','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:32:29','2019-12-09 19:32:29'),(5419,'civiledu','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 22:44:39','2019-12-09 22:44:39'),(5420,'english','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:24','2019-12-09 23:12:24'),(5421,'geography','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:35','2019-12-09 23:12:35'),(5422,'chemistry','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:27:16','2019-12-09 23:27:16'),(5423,'chemistry','40.77.167.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:01:39','2019-12-10 00:01:39'),(5424,'accounting','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:03:12','2019-12-10 00:03:12'),(5425,'insurance','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:37:10','2019-12-10 00:37:10'),(5426,'crk','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 01:09:15','2019-12-10 01:09:15'),(5427,'chemistry','100.27.31.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 02:44:54','2019-12-10 02:44:54'),(5428,'commerce','54.237.164.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 04:47:40','2019-12-10 04:47:40'),(5429,'english','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:13:52','2019-12-10 06:13:52'),(5430,'geography','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:33:46','2019-12-10 06:33:46'),(5431,'economics','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:51:24','2019-12-10 06:51:24'),(5432,'accounting','54.242.54.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 07:57:03','2019-12-10 07:57:03'),(5433,'insurance','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:23:16','2019-12-10 09:23:16'),(5434,'chemistry','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:37:33','2019-12-10 09:37:33'),(5435,'crk','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:18:58','2019-12-10 10:18:58'),(5436,'englishlit','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:59:01','2019-12-10 10:59:01'),(5437,'government','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:19:21','2019-12-10 11:19:21'),(5438,'english','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:50:52','2019-12-10 11:50:52'),(5439,'geography','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:05:06','2019-12-10 12:05:06'),(5440,'irk','54.226.150.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:45:46','2019-12-10 12:45:46'),(5441,'commerce','3.90.68.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 13:50:00','2019-12-10 13:50:00'),(5442,'government','3.82.210.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 14:37:36','2019-12-10 14:37:36'),(5443,'crk','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:21:52','2019-12-10 15:21:52'),(5444,'economics','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:35:48','2019-12-10 15:35:48'),(5445,'currentaffairs','35.168.14.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 16:27:37','2019-12-10 16:27:37'),(5446,'geography','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:35:21','2019-12-10 20:35:21'),(5447,'economics','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:39:50','2019-12-10 20:39:50'),(5448,'accounting','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:37','2019-12-10 20:59:37'),(5449,'english','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:50','2019-12-10 20:59:50'),(5450,'crk','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 21:34:22','2019-12-10 21:34:22'),(5451,'englishlit','54.165.112.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 00:04:55','2019-12-11 00:04:55'),(5452,'government','34.201.143.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 03:16:18','2019-12-11 03:16:18'),(5453,'englishlit','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:53:05','2019-12-11 04:53:05'),(5454,'insurance','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:55:54','2019-12-11 04:55:54'),(5455,'chemistry','105.112.179.103',425,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 06:39:31','2019-12-11 07:10:00'),(5456,'mathematics','105.112.179.103',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:10:34','2019-12-11 07:10:34'),(5457,'mathematics','105.112.16.69',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:18:04','2019-12-11 07:18:48'),(5458,'chemistry','3.229.122.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:58:12','2019-12-11 09:05:40'),(5459,'geography','174.129.57.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 09:22:20','2019-12-11 09:22:20'),(5460,'crk','54.90.130.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 12:16:19','2019-12-11 12:16:19'),(5461,'chemistry','188.180.82.238',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 13:07:40','2019-12-11 13:09:06'),(5462,'chemistry','41.203.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 15:02:50','2019-12-11 15:02:50'),(5463,'chemistry','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 22:51:11','2019-12-11 22:51:11'),(5464,'accounting','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:23:14','2019-12-11 23:23:14'),(5465,'englishlit','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:52:10','2019-12-11 23:52:10'),(5466,'physics','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 00:19:17','2019-12-12 00:19:17'),(5467,'commerce','54.197.2.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 01:28:00','2019-12-12 01:28:00'),(5468,'englishlit','3.93.184.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 03:07:29','2019-12-12 03:07:29'),(5469,'crk','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 09:35:33','2019-12-12 09:35:33'),(5470,'english','18.209.36.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 11:09:56','2019-12-12 11:09:56'),(5471,'chemistry','34.228.199.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 13:40:09','2019-12-12 13:40:09'),(5472,'englishlit','3.85.74.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 14:21:15','2019-12-12 14:21:15'),(5473,'chemistry','100.27.31.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 16:34:32','2019-12-12 16:34:32'),(5474,'government','54.236.209.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 19:00:46','2019-12-12 19:00:46'),(5475,'crk','18.205.239.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:05:15','2019-12-12 20:05:15'),(5476,'crk','197.210.84.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:31:16','2019-12-12 20:40:53'),(5477,'economics','34.239.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 21:01:23','2019-12-12 21:01:23'),(5478,'english','54.172.192.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 23:30:27','2019-12-12 23:30:27'),(5479,'chemistry','40.77.167.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 02:15:26','2019-12-13 02:15:26'),(5480,'chemistry','114.229.7.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 03:41:13','2019-12-13 03:41:13'),(5481,'chemistry','105.112.80.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 08:56:22','2019-12-13 08:56:45'),(5482,'mathematics','34.203.244.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 09:11:37','2019-12-13 09:11:37'),(5483,'physics','110.44.121.20',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 10:10:52','2019-12-13 10:10:53'),(5484,'chemistry','105.112.24.37',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:15:54','2019-12-13 11:15:55'),(5485,'mathematics','105.112.179.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:03','2019-12-13 11:29:48'),(5486,'physics','105.112.179.227',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:26','2019-12-13 11:30:06'),(5487,'physics','3.93.52.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 12:46:32','2019-12-13 12:46:32'),(5488,'history','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:34','2019-12-13 21:12:28'),(5489,'currentaffairs','129.205.112.254',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:39','2019-12-13 21:09:28'),(5490,'chemistry','129.205.112.254',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:44','2019-12-13 21:12:08'),(5491,'mathematics','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:54','2019-12-13 21:11:38'),(5492,'government','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:59','2019-12-13 21:11:53'),(5493,'physics','129.205.112.254',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:04','2019-12-13 21:12:23'),(5494,'englishlit','129.205.112.254',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:09','2019-12-13 21:12:13'),(5495,'economics','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:15','2019-12-13 21:12:38'),(5496,'commerce','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:40','2019-12-13 21:12:33'),(5497,'english','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:47','2019-12-13 21:11:28'),(5498,'accounting','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:50','2019-12-13 21:10:34'),(5499,'geography','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:30','2019-12-13 21:10:38'),(5500,'crk','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:35','2019-12-13 21:11:58'),(5501,'irk','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:15','2019-12-13 21:09:43'),(5502,'biology','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:30','2019-12-13 21:12:18'),(5503,'insurance','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:01:20','2019-12-13 21:13:30'),(5504,'civiledu','129.205.112.254',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:03:35','2019-12-13 21:11:03'),(5505,'currentaffairs','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 18:57:39','2019-12-13 18:57:39'),(5506,'currentaffairs','54.226.13.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 19:41:05','2019-12-13 19:41:05'),(5507,'mathematics','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 20:26:39','2019-12-13 20:26:39'),(5508,'civiledu','3.83.131.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 23:08:17','2019-12-13 23:08:17'),(5509,'englishlit','54.163.205.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 02:02:08','2019-12-14 02:02:08'),(5510,'english','3.84.191.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:05:13','2019-12-14 03:05:13'),(5511,'physics','105.112.178.117',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:10:23','2019-12-14 03:22:06'),(5512,'biology','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:35:59','2019-12-14 03:40:01'),(5513,'accounting','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:37:14','2019-12-14 03:40:02'),(5514,'mathematics','105.112.177.67',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:11','2019-12-14 03:40:22'),(5515,'physics','105.112.177.67',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:58','2019-12-14 03:44:29'),(5516,'accounting','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:12:59','2019-12-14 04:12:59'),(5517,'mathematics','105.112.177.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:16:55','2019-12-14 04:16:55'),(5518,'mathematics','105.112.179.177',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:17:37','2019-12-14 04:17:38'),(5519,'chemistry','58.19.12.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:18:56','2019-12-14 04:18:56'),(5520,'mathematics','105.112.176.112',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:39:57','2019-12-14 04:44:54'),(5521,'mathematics','105.112.23.162',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:29:29','2019-12-14 05:38:43'),(5522,'mathematics','105.112.178.10',110,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:40:14','2019-12-14 06:24:21'),(5523,'english','105.112.178.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:20:57','2019-12-14 06:20:58'),(5524,'physics','105.112.178.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:22:14','2019-12-14 06:23:31'),(5525,'mathematics','105.112.176.255',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:48:33','2019-12-14 06:54:19'),(5526,'mathematics','105.112.177.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:16:27','2019-12-14 07:52:21'),(5527,'physics','105.112.177.210',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:18:35','2019-12-14 07:19:49'),(5528,'mathematics','34.229.0.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 14:14:24','2019-12-14 14:14:24'),(5529,'chemistry','3.94.129.211',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:29:03','2019-12-14 18:49:30'),(5530,'crk','3.82.19.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:54:57','2019-12-14 18:54:57'),(5531,'mathematics','105.112.74.0',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:40:25','2019-12-14 19:50:59'),(5532,'mathematics','105.112.178.125',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:55:19','2019-12-14 19:57:26'),(5533,'english','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:42'),(5534,'accounting','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:43'),(5535,'government','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5536,'crk','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5537,'economics','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5538,'insurance','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5539,'currentaffairs','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5540,'mathematics','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 02:56:53','2019-12-15 02:56:53'),(5541,'irk','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 03:08:39','2019-12-15 03:08:39'),(5542,'mathematics','105.112.24.144',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 05:33:44','2019-12-15 05:33:44'),(5543,'mathematics','105.112.24.123',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:27:08','2019-12-15 06:28:35'),(5544,'biology','105.112.24.123',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:28:39','2019-12-15 06:28:39'),(5545,'commerce','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:52:53','2019-12-15 07:52:53'),(5546,'government','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:53:27','2019-12-15 07:53:27'),(5547,'mathematics','105.112.75.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:03:20','2019-12-15 08:03:20'),(5548,'mathematics','105.112.178.111',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:24:49','2019-12-15 08:24:49'),(5549,'chemistry','89.163.242.18',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:57:38','2019-12-15 08:57:38'),(5550,'mathematics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:59:24','2019-12-15 09:11:12'),(5551,'commerce','105.112.16.234',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:01:55','2019-12-15 09:05:33'),(5552,'englishlit','105.112.16.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:05:43','2019-12-15 09:05:44'),(5553,'economics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:07:37','2019-12-15 09:09:01'),(5554,'mathematics','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:32'),(5555,'commerce','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:33'),(5556,'accounting','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5557,'englishlit','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5558,'crk','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5559,'geography','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5560,'currentaffairs','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5561,'insurance','18.206.121.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:44:42','2019-12-15 10:44:42'),(5562,'mathematics','197.210.44.70',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 11:39:41','2019-12-15 11:40:19'),(5563,'english','54.226.135.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 13:31:12','2019-12-15 13:31:12'),(5564,'crk','34.207.159.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 14:25:42','2019-12-15 14:25:42'),(5565,'chemistry','197.210.8.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:09:00','2019-12-15 15:09:49'),(5566,'mathematics','105.112.181.210',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:31:11','2019-12-15 15:31:12'),(5567,'chemistry','197.211.58.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 16:28:08','2019-12-15 16:28:08'),(5568,'civiledu','107.22.61.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 21:18:49','2019-12-15 21:18:49'),(5569,'mathematics','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 22:16:18','2019-12-15 22:16:18'),(5570,'geography','18.206.180.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 00:01:24','2019-12-16 00:01:24'),(5571,'accounting','3.95.7.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 01:08:36','2019-12-16 01:08:36'),(5572,'chemistry','105.112.99.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:48:06','2019-12-16 04:48:06'),(5573,'geography','34.207.88.147',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:49:45','2019-12-16 08:10:20'),(5574,'mathematics','105.112.24.13',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 05:19:46','2019-12-16 05:19:46'),(5575,'english','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:18:08','2019-12-16 06:18:08'),(5576,'geography','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:30:45','2019-12-16 06:30:45'),(5577,'chemistry','105.112.30.62',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 11:31:31','2019-12-16 11:34:57'),(5578,'chemistry','207.46.13.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 12:26:05','2019-12-16 12:26:05'),(5579,'physics','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 16:53:46','2019-12-16 16:53:46'),(5580,'englishlit','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 17:13:34','2019-12-16 17:13:34'),(5581,'geography','3.92.69.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 18:41:59','2019-12-16 18:41:59'),(5582,'biology','52.202.45.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 21:27:25','2019-12-16 21:27:25'),(5583,'currentaffairs','3.95.195.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 22:56:29','2019-12-16 22:56:29'),(5584,'economics','3.81.134.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 23:46:29','2019-12-16 23:46:29'),(5585,'commerce','54.164.27.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 00:54:33','2019-12-17 00:54:33'),(5586,'commerce','3.92.4.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 04:14:33','2019-12-17 04:14:33'),(5587,'chemistry','197.210.61.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 06:57:40','2019-12-17 06:57:40'),(5588,'chemistry','102.134.114.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:37','2019-12-17 07:45:37'),(5589,'mathematics','102.134.114.193',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:57','2019-12-17 07:47:44'),(5590,'mathematics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:30:56','2019-12-17 08:30:56'),(5591,'physics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:32:55','2019-12-17 08:32:55'),(5592,'englishlit','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:58:40','2019-12-17 08:58:40'),(5593,'chemistry','151.80.39.216',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:17:12','2019-12-30 07:30:25'),(5594,'chemistry','151.80.39.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:23:31','2019-12-17 09:23:31'),(5595,'chemistry','5.196.87.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:30:13','2020-01-07 19:20:55'),(5596,'chemistry','151.80.39.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:39:21','2019-12-17 09:45:56'),(5597,'geography','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:13:13','2019-12-17 10:13:13'),(5598,'government','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:29:20','2019-12-17 10:29:20'),(5599,'mathematics','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:55:34','2019-12-17 10:55:34'),(5600,'mathematics','105.112.178.120',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:24:11','2019-12-17 13:24:11'),(5601,'english','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:31:22','2019-12-17 13:31:22'),(5602,'insurance','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:39:48','2019-12-17 13:39:48'),(5603,'mathematics','105.112.23.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:00:33','2019-12-17 14:00:33'),(5604,'history','54.91.62.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:51:56','2019-12-17 14:51:56'),(5605,'chemistry','106.56.38.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 21:15:06','2019-12-17 21:15:06'),(5606,'chemistry','182.110.22.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 22:30:20','2019-12-17 22:30:20'),(5607,'geography','54.204.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 00:38:06','2019-12-18 00:38:06'),(5608,'chemistry','154.120.93.60',252,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:40:21','2019-12-18 06:53:13'),(5609,'english','154.120.93.60',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:48:52','2019-12-18 06:48:55'),(5610,'mathematics','154.120.93.60',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:53:33','2019-12-18 06:53:56'),(5611,'chemistry','197.210.65.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:44','2019-12-18 07:42:44'),(5612,'chemistry','197.210.64.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:51','2019-12-18 07:42:51'),(5613,'accounting','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 09:13:48','2019-12-18 09:13:48'),(5614,'chemistry','197.210.227.76',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:32:30','2019-12-18 13:51:25'),(5615,'chemistry','197.210.226.124',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:33:10','2019-12-19 08:29:25'),(5616,'chemistry','197.210.227.42',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:50:23','2019-12-18 13:52:09'),(5617,'mathematics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5618,'commerce','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5619,'physics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5620,'englishlit','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5621,'crk','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5622,'currentaffairs','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5623,'history','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5624,'english','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5625,'accounting','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5626,'biology','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:07'),(5627,'englishlit','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5628,'geography','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5629,'irk','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5630,'insurance','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5631,'chemistry','69.30.213.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 14:31:25','2019-12-18 14:31:25'),(5632,'physics','105.112.176.201',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 05:24:23','2019-12-19 05:24:23'),(5633,'chemistry','5.189.172.182',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:05:46','2019-12-19 07:06:30'),(5634,'government','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:12:43','2019-12-19 07:12:43'),(5635,'history','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:33:41','2019-12-19 07:33:41'),(5636,'irk','52.91.34.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 09:17:34','2019-12-19 09:17:34'),(5637,'englishlit','54.88.253.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 10:35:04','2019-12-19 10:35:04'),(5638,'economics','105.112.177.36',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:42:18','2019-12-19 16:42:19'),(5639,'chemistry','105.112.177.36',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:43:25','2019-12-19 16:45:28'),(5640,'chemistry','105.112.177.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:02:16','2019-12-19 17:02:16'),(5641,'commerce','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:40:56','2019-12-19 17:40:56'),(5642,'biology','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:43:13','2019-12-19 17:43:13'),(5643,'mathematics','197.210.53.166',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 18:09:35','2019-12-19 18:09:35'),(5644,'insurance','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:04:27','2019-12-20 01:04:27'),(5645,'biology','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:31:54','2019-12-20 01:31:54'),(5646,'economics','54.146.230.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 05:50:03','2019-12-20 05:50:03'),(5647,'history','3.85.190.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 07:45:09','2019-12-20 07:45:09'),(5648,'history','54.80.62.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 08:26:39','2019-12-20 08:26:39'),(5649,'accounting','54.198.39.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:15:34','2019-12-20 10:15:34'),(5650,'chemistry','197.210.61.37',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:58:34','2019-12-20 11:00:32'),(5651,'englishlit','34.202.161.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 15:24:52','2019-12-20 15:24:52'),(5652,'chemistry','3.85.93.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 16:07:34','2019-12-20 16:07:34'),(5653,'irk','3.87.205.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 21:37:02','2019-12-20 21:37:02'),(5654,'economics','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:05:01','2019-12-21 03:05:01'),(5655,'crk','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:09:00','2019-12-21 03:09:00'),(5656,'chemistry','41.190.31.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 06:38:03','2019-12-21 06:38:04'),(5657,'commerce','54.234.19.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 07:41:34','2019-12-21 07:41:34'),(5658,'chemistry','154.120.111.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:08:50','2019-12-21 08:08:50'),(5659,'chemistry','207.46.13.100',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:11:14','2019-12-21 08:11:14'),(5660,'accounting','3.82.104.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:03:47','2019-12-21 09:03:47'),(5661,'english','154.120.82.204',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:45:44','2019-12-21 09:45:44'),(5662,'crk','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 10:54:28','2019-12-21 10:54:28'),(5663,'history','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:24:32','2019-12-21 11:24:32'),(5664,'chemistry','197.210.71.189',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:53:25','2019-12-21 11:55:06'),(5665,'economics','54.234.34.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:08:12','2019-12-21 17:08:12'),(5666,'chemistry','196.220.136.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:23:29','2019-12-21 17:23:29'),(5667,'government','52.200.198.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 19:00:57','2019-12-21 19:00:57'),(5668,'chemistry','54.145.127.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 20:50:25','2019-12-21 20:50:25'),(5669,'geography','34.239.125.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 22:50:03','2019-12-21 22:50:03'),(5670,'economics','54.144.125.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 23:56:36','2019-12-21 23:56:36'),(5671,'commerce','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:51:11','2019-12-22 00:51:11'),(5672,'government','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:59:35','2019-12-22 00:59:35'),(5673,'insurance','54.82.100.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 06:04:36','2019-12-22 06:04:36'),(5674,'economics','3.91.31.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:14:42','2019-12-22 07:14:42'),(5675,'crk','100.24.16.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:56:40','2019-12-22 07:56:40'),(5676,'englishlit','54.174.249.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 12:39:37','2019-12-22 12:39:37'),(5677,'chemistry','106.57.151.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 14:24:18','2019-12-22 14:24:18'),(5678,'chemistry','58.62.85.244',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 15:07:13','2019-12-22 15:07:13'),(5679,'chemistry','113.121.210.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 16:19:36','2019-12-22 16:19:36'),(5680,'chemistry','197.211.58.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 18:58:28','2019-12-22 18:58:28'),(5681,'crk','18.208.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 19:35:12','2019-12-22 19:35:12'),(5682,'english','52.91.199.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 20:40:32','2019-12-22 20:40:32'),(5683,'crk','54.197.16.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 22:29:28','2019-12-22 22:29:28'),(5684,'chemistry','207.46.13.32',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 05:30:59','2019-12-23 19:53:30'),(5685,'chemistry','41.58.249.101',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 07:32:16','2019-12-23 07:41:55'),(5686,'accounting','3.88.176.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 08:35:37','2019-12-23 08:35:37'),(5687,'chemistry','52.207.237.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 10:59:07','2019-12-23 10:59:07'),(5688,'physics','54.90.171.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 12:33:14','2019-12-23 12:33:14'),(5689,'englishlit','3.94.55.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 14:39:35','2019-12-23 14:39:35'),(5690,'chemistry','105.112.24.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 16:46:27','2019-12-23 16:46:27'),(5691,'english','34.230.73.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 17:01:58','2019-12-23 17:01:58'),(5692,'englishlit','3.81.216.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 21:28:10','2019-12-23 21:28:10'),(5693,'currentaffairs','107.22.114.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 22:06:26','2019-12-23 22:06:26'),(5694,'englishlit','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:36:52','2019-12-24 00:36:52'),(5695,'crk','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:42:20','2019-12-24 00:42:20'),(5696,'chemistry','3.88.226.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 02:28:27','2019-12-24 02:28:27'),(5697,'economics','18.212.81.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 03:34:43','2019-12-24 03:34:43'),(5698,'government','3.84.146.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 04:34:22','2019-12-24 04:34:22'),(5699,'crk','54.89.84.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 07:50:50','2019-12-24 07:50:50'),(5700,'chemistry','41.203.73.248',604,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:03:43','2019-12-24 09:45:17'),(5701,'english','41.203.73.248',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:12:17','2019-12-24 09:12:20'),(5702,'mathematics','41.203.73.248',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:29:46','2019-12-24 09:32:59'),(5703,'chemistry','41.203.73.144',121,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 10:18:01','2019-12-24 11:28:03'),(5704,'physics','41.203.73.144',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 11:28:36','2019-12-24 11:28:39'),(5705,'english','54.234.136.92',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 11:35:59','2019-12-24 11:35:59'),(5706,'english','108.173.207.253',10,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 18:30:37','2019-12-24 18:32:01'),(5707,'english','54.86.42.151',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 19:06:22','2019-12-24 19:06:22'),(5708,'physics','54.162.161.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 02:38:17','2019-12-25 02:38:17'),(5709,'currentaffairs','54.158.129.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 09:00:12','2019-12-25 09:00:12'),(5710,'currentaffairs','34.201.150.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 10:02:21','2019-12-25 10:02:21'),(5711,'chemistry','197.211.58.122',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 12:27:20','2019-12-25 12:27:41'),(5712,'civiledu','184.72.131.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 14:01:27','2019-12-25 14:01:27'),(5713,'english','41.190.31.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:21:37','2019-12-25 17:21:37'),(5714,'english','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:51:12','2019-12-25 17:51:12'),(5715,'accounting','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 18:07:03','2019-12-25 18:07:03'),(5716,'englishlit','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 19:07:55','2019-12-25 19:07:55'),(5717,'commerce','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:07','2019-12-26 09:45:08'),(5718,'chemistry','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5719,'englishlit','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5720,'government','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5721,'geography','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5722,'irk','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5723,'insurance','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5724,'chemistry','197.210.53.171',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:00','2019-12-26 11:07:17'),(5725,'chemistry','197.210.52.12',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:37','2020-04-07 18:47:51'),(5726,'chemistry','197.210.53.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:49','2019-12-26 10:58:49'),(5727,'chemistry','159.138.149.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:12','2019-12-26 12:40:12'),(5728,'chemistry','159.138.158.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:19','2019-12-26 12:40:19'),(5729,'chemistry','159.138.155.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:40','2019-12-26 12:40:40'),(5730,'chemistry','159.138.157.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:42','2019-12-26 12:40:42'),(5731,'chemistry','159.138.153.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:37','2019-12-26 12:41:37'),(5732,'chemistry','159.138.148.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:39','2019-12-26 12:41:39'),(5733,'chemistry','40.77.167.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 16:52:21','2019-12-26 16:52:21'),(5734,'chemistry','151.80.39.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 18:13:53','2019-12-26 18:13:53'),(5735,'mathematics','54.92.139.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 19:28:36','2019-12-26 19:28:36'),(5736,'commerce','3.83.25.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 21:13:20','2019-12-26 21:13:20'),(5737,'government','3.86.200.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 22:19:35','2019-12-26 22:19:35'),(5738,'insurance','54.236.119.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 01:39:51','2019-12-27 01:39:51'),(5739,'english','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:11:47','2019-12-27 04:11:47'),(5740,'crk','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:17:19','2019-12-27 04:17:19'),(5741,'mathematics','105.112.18.136',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 08:38:34','2019-12-27 08:38:35'),(5742,'civiledu','52.4.139.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 11:24:11','2019-12-27 11:24:11'),(5743,'mathematics','52.70.132.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:02:50','2019-12-27 12:02:50'),(5744,'chemistry','54.36.149.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:04:00','2019-12-27 12:04:00'),(5745,'geography','34.229.11.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 15:04:56','2019-12-27 15:04:56'),(5746,'economics','54.82.208.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 17:32:43','2019-12-27 17:32:43'),(5747,'geography','3.95.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 18:44:54','2019-12-27 18:44:54'),(5748,'chemistry','41.203.73.152',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:28:07','2019-12-28 05:58:59'),(5749,'geography','18.232.139.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:38:53','2019-12-27 19:38:53'),(5750,'chemistry','207.46.13.72',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:58:11','2019-12-27 19:58:11'),(5751,'english','18.212.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 21:36:45','2019-12-27 21:36:45'),(5752,'geography','3.81.112.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 22:26:48','2019-12-27 22:26:48'),(5753,'englishlit','3.95.29.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 07:09:48','2019-12-28 07:09:48'),(5754,'geography','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 08:46:11','2019-12-28 08:46:11'),(5755,'chemistry','157.55.39.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:01:00','2019-12-28 13:56:07'),(5756,'physics','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:07:43','2019-12-28 09:07:43'),(5757,'currentaffairs','3.90.16.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:52:08','2019-12-28 09:52:08'),(5758,'chemistry','198.27.70.196',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 13:04:37','2019-12-28 13:05:18'),(5759,'economics','54.208.246.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 16:54:27','2019-12-28 16:54:27'),(5760,'physics','3.90.201.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 21:17:55','2019-12-28 21:17:55'),(5761,'englishlit','54.88.31.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 22:11:00','2019-12-28 22:11:00'),(5762,'chemistry','46.229.168.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 00:53:10','2019-12-29 00:53:10'),(5763,'mathematics','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 01:48:09','2019-12-29 01:48:09'),(5764,'geography','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:00:13','2019-12-29 02:00:13'),(5765,'government','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:45:45','2019-12-29 02:45:45'),(5766,'mathematics','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 03:11:26','2019-12-29 03:11:26'),(5767,'mathematics','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:29:09','2019-12-29 04:29:09'),(5768,'insurance','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:50:21','2019-12-29 04:50:21'),(5769,'accounting','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 06:48:58','2019-12-29 06:48:58'),(5770,'history','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 07:05:29','2019-12-29 07:05:29'),(5771,'geography','18.212.192.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 14:35:59','2019-12-29 14:35:59'),(5772,'chemistry','159.138.157.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 15:56:34','2019-12-29 15:56:34'),(5773,'chemistry','159.138.156.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:52','2019-12-29 16:06:52'),(5774,'chemistry','159.138.156.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:54','2019-12-29 16:06:54'),(5775,'chemistry','159.138.151.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:08','2019-12-29 16:17:08'),(5776,'chemistry','159.138.155.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:10','2019-12-29 16:17:10'),(5777,'chemistry','54.173.230.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 17:07:40','2019-12-29 17:07:40'),(5778,'chemistry','77.88.5.57',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 20:09:09','2020-02-17 06:41:03'),(5779,'chemistry','105.112.37.95',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 22:46:03','2019-12-29 22:48:25'),(5780,'accounting','54.162.107.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 00:28:34','2019-12-30 00:28:34'),(5781,'chemistry','5.196.87.181',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:24:52','2019-12-30 07:24:52'),(5782,'chemistry','5.196.87.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:28:37','2019-12-30 07:28:37'),(5783,'chemistry','151.80.39.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:31:37','2019-12-30 07:31:37'),(5784,'history','3.80.177.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 10:00:20','2019-12-30 10:00:20'),(5785,'chemistry','41.87.80.10',177,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:52:05','2020-01-03 12:40:11'),(5786,'english','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:05','2020-01-03 09:47:26'),(5787,'biology','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:35','2020-01-06 10:18:55'),(5788,'physics','41.87.80.10',238,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 12:26:15','2020-01-14 13:07:03'),(5789,'chemistry','197.210.71.107',112,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 18:08:04','2019-12-30 21:50:09'),(5790,'government','54.227.176.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 01:11:30','2019-12-31 01:11:30'),(5791,'englishlit','107.22.1.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 02:42:52','2019-12-31 02:42:52'),(5792,'geography','41.87.80.10',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:35','2020-01-03 09:11:05'),(5793,'mathematics','41.87.80.10',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:42','2020-01-03 12:40:26'),(5794,'commerce','41.87.80.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 11:27:07','2019-12-31 15:11:01'),(5795,'physics','197.210.85.161',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:01','2019-12-31 21:44:09'),(5796,'geography','197.210.85.161',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:36','2019-12-31 21:17:50'),(5797,'commerce','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:39','2019-12-31 17:35:25'),(5798,'biology','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:27:53','2019-12-31 17:50:46'),(5799,'mathematics','197.210.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:22','2019-12-31 17:35:22'),(5800,'english','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:50','2019-12-31 17:50:42'),(5801,'chemistry','197.210.85.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 19:06:57','2019-12-31 21:19:14'),(5802,'biology','54.89.212.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 20:08:07','2019-12-31 20:08:07'),(5803,'history','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:24:33','2019-12-31 21:24:33'),(5804,'insurance','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:51:19','2019-12-31 21:51:19'),(5805,'economics','3.83.156.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 23:11:47','2019-12-31 23:11:47'),(5806,'economics','54.159.177.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 00:29:53','2020-01-01 00:29:53'),(5807,'history','34.235.146.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 02:22:24','2020-01-01 02:22:24'),(5808,'physics','197.210.70.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:22:07','2020-01-01 06:22:07'),(5809,'accounting','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:52:22','2020-01-01 06:52:22'),(5810,'chemistry','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 07:22:30','2020-01-01 07:22:30'),(5811,'history','3.82.145.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 12:16:11','2020-01-01 12:16:11'),(5812,'physics','197.210.64.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:45','2020-01-01 13:42:45'),(5813,'geography','197.210.65.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:52','2020-01-01 13:42:52'),(5814,'physics','197.210.47.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:07:21','2020-01-01 14:07:21'),(5815,'irk','3.86.222.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:39:17','2020-01-01 14:39:17'),(5816,'crk','54.173.160.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 19:37:03','2020-01-01 19:37:03'),(5817,'economics','54.81.159.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 20:29:55','2020-01-01 20:29:55'),(5818,'commerce','34.207.138.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 23:01:12','2020-01-01 23:01:12'),(5819,'crk','3.84.24.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 04:49:38','2020-01-02 04:49:38'),(5820,'chemistry','197.210.227.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:20:08','2020-01-02 05:20:08'),(5821,'chemistry','197.210.226.177',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:22:40','2020-01-02 05:23:22'),(5822,'chemistry','197.210.227.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:23:39','2020-01-02 05:24:16'),(5823,'accounting','3.81.217.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 06:18:28','2020-01-02 06:18:28'),(5824,'economics','3.84.17.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 10:40:34','2020-01-02 10:40:34'),(5825,'chemistry','159.138.152.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:40','2020-01-02 11:34:40'),(5826,'chemistry','159.138.154.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:41','2020-01-02 11:34:41'),(5827,'chemistry','159.138.149.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:19','2020-01-02 13:42:19'),(5828,'chemistry','159.138.155.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:22','2020-01-02 13:42:22'),(5829,'english','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:16','2020-01-02 13:48:16'),(5830,'chemistry','197.210.53.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:29','2020-01-02 13:48:29'),(5831,'biology','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:54','2020-01-02 13:48:54'),(5832,'chemistry','40.77.167.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 14:52:08','2020-01-02 14:52:08'),(5833,'chemistry','173.252.87.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:12:40','2020-01-02 15:12:40'),(5834,'chemistry','105.112.96.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:14:54','2020-01-02 15:15:27'),(5835,'government','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:23:11','2020-01-02 15:23:11'),(5836,'chemistry','197.210.29.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:01:48','2020-01-02 16:01:48'),(5837,'chemistry','54.198.147.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:20:52','2020-01-02 16:20:52'),(5838,'geography','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:21:06','2020-01-02 18:21:06'),(5839,'government','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:53:06','2020-01-02 18:53:06'),(5840,'chemistry','141.0.12.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:46:34','2020-01-02 19:46:34'),(5841,'chemistry','54.36.148.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:54:13','2020-01-02 19:54:13'),(5842,'chemistry','107.167.116.51',81,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:22:38','2020-01-02 20:56:21'),(5843,'chemistry','69.171.251.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:25:00','2020-01-02 20:25:00'),(5844,'chemistry','173.252.95.39',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:27:00','2020-01-02 20:27:01'),(5845,'chemistry','105.112.107.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:44:23','2020-01-02 20:44:23'),(5846,'chemistry','197.210.85.199',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:48:24','2020-01-02 21:10:22'),(5847,'chemistry','173.252.127.12',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:56:49','2020-01-02 20:56:52'),(5848,'physics','107.167.107.19',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:06:13','2020-01-02 23:06:17'),(5849,'physics','105.112.121.61',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:07:14','2020-01-02 23:08:11'),(5850,'physics','107.167.107.16',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:19','2020-01-02 23:12:21'),(5851,'physics','105.112.112.87',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:44','2020-01-02 23:12:47'),(5852,'commerce','18.206.201.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:19:52','2020-01-02 23:19:52'),(5853,'economics','50.19.154.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:46:41','2020-01-03 01:31:33'),(5854,'accounting','50.19.154.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:56:30','2020-01-03 00:56:30'),(5855,'crk','3.82.121.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 03:17:13','2020-01-03 03:17:13'),(5856,'insurance','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 05:01:58','2020-01-03 05:01:58'),(5857,'mathematics','105.112.177.41',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 07:28:37','2020-01-03 07:28:38'),(5858,'accounting','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:14:39','2020-01-03 09:14:39'),(5859,'englishlit','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:40:09','2020-01-03 09:40:09'),(5860,'chemistry','173.252.127.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5861,'chemistry','173.252.127.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5862,'chemistry','69.171.251.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 10:12:20','2020-01-03 10:12:20'),(5863,'english','52.23.234.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 11:11:09','2020-01-03 11:11:09'),(5864,'chemistry','54.36.149.6',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 12:32:58','2020-01-03 12:32:58'),(5865,'chemistry','173.252.127.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5866,'chemistry','173.252.127.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5867,'accounting','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:47:56','2020-01-03 22:47:56'),(5868,'crk','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:59:55','2020-01-03 22:59:55'),(5869,'crk','18.234.186.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 00:39:01','2020-01-04 00:39:01'),(5870,'accounting','52.206.79.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 01:50:47','2020-01-04 01:50:47'),(5871,'mathematics','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5872,'commerce','3.83.117.183',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:17'),(5873,'accounting','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5874,'englishlit','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5875,'crk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5876,'irk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5877,'civiledu','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5878,'chemistry','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:25:30','2020-01-04 07:25:30'),(5879,'physics','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:54:21','2020-01-04 07:54:21'),(5880,'accounting','54.211.18.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 08:33:09','2020-01-04 08:33:09'),(5881,'englishlit','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:26:47','2020-01-04 09:26:47'),(5882,'physics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:28:39','2020-01-04 09:28:39'),(5883,'insurance','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:47:41','2020-01-04 09:47:41'),(5884,'geography','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:14','2020-01-04 09:54:14'),(5885,'english','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:18','2020-01-04 09:54:18'),(5886,'mathematics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:24','2020-01-04 09:54:24'),(5887,'chemistry','159.138.158.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:29:58','2020-01-04 10:29:58'),(5888,'chemistry','159.138.153.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:30:00','2020-01-04 10:30:00'),(5889,'currentaffairs','34.203.237.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 13:00:10','2020-01-04 13:00:10'),(5890,'chemistry','159.138.152.167',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 14:50:39','2020-01-04 14:50:39'),(5891,'english','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:36:52','2020-01-04 15:36:52'),(5892,'englishlit','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:40:27','2020-01-04 15:40:27'),(5893,'crk','35.174.5.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 19:26:20','2020-01-04 19:26:20'),(5894,'chemistry','197.210.226.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:08:58','2020-01-04 22:08:58'),(5895,'economics','18.232.58.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:09:24','2020-01-04 22:09:24'),(5896,'chemistry','18.206.248.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 00:08:29','2020-01-05 00:08:29'),(5897,'government','34.207.181.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 01:22:25','2020-01-05 01:22:25'),(5898,'englishlit','3.92.193.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 02:40:51','2020-01-05 02:40:51'),(5899,'crk','52.23.188.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 05:08:41','2020-01-05 05:08:41'),(5900,'english','52.207.216.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 07:59:31','2020-01-05 07:59:31'),(5901,'english','150.70.168.143',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 13:37:22','2020-01-05 13:37:25'),(5902,'english','35.173.133.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 16:54:20','2020-01-05 16:54:20'),(5903,'chemistry','159.138.154.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:07','2020-01-05 19:39:07'),(5904,'chemistry','159.138.157.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:10','2020-01-05 19:39:10'),(5905,'chemistry','197.211.58.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:13:15','2020-01-05 20:13:24'),(5906,'physics','66.102.8.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:39:20','2020-01-05 20:39:20'),(5907,'biology','66.102.8.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:40:26','2020-01-05 20:41:57'),(5908,'english','66.102.8.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:41:46','2020-01-05 20:41:46'),(5909,'physics','197.210.71.215',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:23','2020-01-05 21:15:06'),(5910,'geography','197.210.71.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:29','2020-01-05 20:46:29'),(5911,'mathematics','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:44','2020-01-05 20:51:35'),(5912,'chemistry','197.210.71.215',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:04','2020-04-05 08:30:45'),(5913,'biology','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:51','2020-01-05 20:52:21'),(5914,'commerce','197.210.71.215',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:48:01','2020-01-05 20:52:36'),(5915,'chemistry','40.77.167.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 04:41:04','2020-01-06 04:41:04'),(5916,'physics','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 06:59:39','2020-01-06 06:59:39'),(5917,'biology','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:25','2020-01-06 07:01:25'),(5918,'chemistry','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:36','2020-01-06 07:01:36'),(5919,'biology','54.196.116.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 08:39:32','2020-01-06 08:39:32'),(5920,'currentaffairs','52.90.145.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 09:20:05','2020-01-06 09:20:05'),(5921,'currentaffairs','54.81.36.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 10:59:33','2020-01-06 10:59:33'),(5922,'civiledu','54.165.53.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 14:25:40','2020-01-06 14:25:40'),(5923,'english','54.165.254.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 19:05:30','2020-01-06 19:05:30'),(5924,'englishlit','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 20:46:10','2020-01-06 20:46:10'),(5925,'accounting','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 23:28:47','2020-01-06 23:28:47'),(5926,'chemistry','40.77.167.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 00:55:53','2020-01-07 00:55:53'),(5927,'chemistry','197.210.85.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 10:49:45','2020-01-07 10:49:45'),(5928,'chemistry','114.119.144.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 16:29:50','2020-01-07 16:29:50'),(5929,'mathematics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:22','2020-01-07 19:50:22'),(5930,'biology','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5931,'physics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5932,'chemistry','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5933,'englishlit','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5934,'government','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5935,'history','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5936,'history','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:03:53','2020-01-08 00:03:53'),(5937,'mathematics','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:14:17','2020-01-08 00:14:17'),(5938,'commerce','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 02:50:48','2020-01-08 02:50:48'),(5939,'government','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:21:02','2020-01-08 03:21:02'),(5940,'physics','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:30','2020-01-08 03:49:31'),(5941,'accounting','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:55','2020-01-08 03:49:56'),(5942,'mathematics','105.112.24.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 05:26:53','2020-01-08 05:26:53'),(5943,'insurance','18.234.250.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:04:04','2020-01-08 07:04:04'),(5944,'chemistry','157.55.39.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:32:02','2020-01-08 07:32:03'),(5945,'english','3.90.5.24',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 08:20:47','2020-01-08 08:20:48'),(5946,'chemistry','197.210.152.54',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 09:59:01','2020-01-08 10:01:03'),(5947,'biology','197.210.152.54',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:01:17','2020-01-08 10:01:54'),(5948,'crk','54.175.37.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:33:34','2020-01-08 10:33:34'),(5949,'english','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 11:25:14','2020-01-08 11:25:14'),(5950,'mathematics','3.89.141.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 18:26:35','2020-01-08 18:26:35'),(5951,'geography','3.90.5.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 21:36:06','2020-01-08 21:36:06'),(5952,'economics','54.224.174.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 01:24:15','2020-01-09 01:24:15'),(5953,'geography','3.92.200.47',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 02:38:09','2020-01-09 02:46:31'),(5954,'english','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:01:22','2020-01-09 05:01:22'),(5955,'geography','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:35:09','2020-01-09 05:35:09'),(5956,'chemistry','114.119.158.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 08:20:35','2020-01-09 08:20:35'),(5957,'chemistry','197.210.84.180',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:25','2020-01-09 11:42:25'),(5958,'chemistry','66.249.93.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:27','2020-01-09 11:42:29'),(5959,'geography','3.81.50.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 15:48:20','2020-01-09 15:48:20'),(5960,'englishlit','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:10:05','2020-01-09 17:10:05'),(5961,'physics','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:29:29','2020-01-09 17:29:29'),(5962,'currentaffairs','54.91.26.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 20:05:46','2020-01-09 20:05:46'),(5963,'biology','54.90.217.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 23:39:42','2020-01-09 23:39:42'),(5964,'economics','3.88.190.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 04:30:45','2020-01-10 04:30:45'),(5965,'chemistry','159.138.155.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:39','2020-01-10 05:45:39'),(5966,'chemistry','159.138.148.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:42','2020-01-10 05:45:42'),(5967,'physics','3.90.20.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 07:05:46','2020-01-10 07:05:46'),(5968,'mathematics','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 09:57:03','2020-01-10 09:57:03'),(5969,'geography','54.242.86.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 14:16:02','2020-01-10 14:16:02'),(5970,'mathematics','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:33:50','2020-01-10 15:33:50'),(5971,'government','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:52:04','2020-01-10 15:52:04'),(5972,'mathematics','105.112.177.83',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 16:08:56','2020-01-10 16:08:57'),(5973,'mathematics','54.92.183.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 17:00:01','2020-01-10 17:00:01'),(5974,'accounting','54.175.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 19:11:24','2020-01-10 19:11:24'),(5975,'history','54.196.1.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 20:19:00','2020-01-10 20:19:00'),(5976,'insurance','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:04:48','2020-01-11 00:04:48'),(5977,'englishlit','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:23:07','2020-01-11 00:23:07'),(5978,'chemistry','157.55.39.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 07:47:08','2020-01-11 07:47:08'),(5979,'geography','3.85.229.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 08:19:26','2020-01-11 08:19:26'),(5980,'currentaffairs','54.210.29.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 09:17:59','2020-01-11 09:17:59'),(5981,'chemistry','129.205.112.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:01:54','2020-01-11 10:01:54'),(5982,'chemistry','114.119.163.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:12:45','2020-01-11 10:12:45'),(5983,'biology','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:49:13','2020-01-11 10:49:13'),(5984,'english','41.190.3.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:50:45','2020-01-11 10:53:17'),(5985,'government','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:03','2020-01-11 10:57:03'),(5986,'currentaffairs','3.81.114.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:29','2020-01-11 10:57:29'),(5987,'accounting','34.224.97.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 20:14:24','2020-01-11 20:14:24'),(5988,'history','34.228.161.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 03:43:41','2020-01-12 03:43:41'),(5989,'chemistry','54.36.150.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 07:38:14','2020-01-12 07:38:17'),(5990,'chemistry','66.249.66.159',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:18:04','2020-01-12 20:11:39'),(5991,'chemistry','207.46.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:37:09','2020-01-12 16:37:09'),(5992,'chemistry','41.206.30.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 11:30:26','2020-01-13 11:30:26'),(5993,'chemistry','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:08','2020-01-13 17:08:08'),(5994,'biology','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:51','2020-01-13 17:08:51'),(5995,'biology','3.95.28.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:38:02','2020-01-13 17:38:02'),(5996,'chemistry','105.112.21.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:40:01','2020-01-13 17:42:28'),(5997,'history','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 19:43:41','2020-01-13 19:43:41'),(5998,'insurance','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:27','2020-01-13 20:05:27'),(5999,'economics','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:30','2020-01-13 20:05:30'),(6000,'mathematics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6001,'commerce','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6002,'biology','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6003,'government','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6004,'economics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6005,'irk','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6006,'insurance','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6007,'english','18.209.172.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:02:39','2020-01-13 22:02:39'),(6008,'economics','3.83.111.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:58:30','2020-01-13 22:58:30'),(6009,'history','54.159.7.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 01:49:56','2020-01-14 01:49:56'),(6010,'accounting','18.215.161.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 03:52:50','2020-01-14 03:52:50'),(6011,'mathematics','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:35:01','2020-01-14 04:35:01'),(6012,'chemistry','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:56:46','2020-01-14 04:56:46'),(6013,'chemistry','105.112.106.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 06:53:23','2020-01-14 06:53:23'),(6014,'irk','34.237.245.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 10:17:26','2020-01-14 10:17:26'),(6015,'physics','197.210.64.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 12:36:48','2020-01-14 12:36:48'),(6016,'chemistry','162.238.118.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:13:49','2020-01-14 13:13:49'),(6017,'crk','54.145.57.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:25:40','2020-01-14 13:25:40'),(6018,'mathematics','52.91.218.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:29:53','2020-01-14 14:29:56'),(6019,'biology','52.91.218.226',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:31:04','2020-01-14 14:31:07'),(6020,'physics','197.210.226.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 16:50:50','2020-01-14 16:50:50'),(6021,'commerce','54.152.183.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 17:45:43','2020-01-14 17:45:43'),(6022,'chemistry','197.211.58.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 19:02:46','2020-01-14 19:02:46'),(6023,'accounting','18.206.115.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:06:49','2020-01-14 20:06:49'),(6024,'physics','197.210.227.105',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:18:08','2020-01-14 21:20:01'),(6025,'chemistry','105.112.112.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:27:30','2020-01-14 20:27:30'),(6026,'physics','197.210.227.176',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:14:48','2020-01-14 21:18:53'),(6027,'physics','197.210.226.126',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:19:38','2020-01-14 21:19:39'),(6028,'biology','66.249.66.128',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 22:53:39','2020-01-14 22:53:41'),(6029,'economics','34.229.47.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 01:05:22','2020-01-15 01:05:22'),(6030,'chemistry','18.212.26.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 02:18:02','2020-01-15 02:18:02'),(6031,'chemistry','54.208.21.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 05:24:27','2020-01-15 05:24:27'),(6032,'chemistry','159.138.152.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:16','2020-01-15 07:37:16'),(6033,'chemistry','159.138.157.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:19','2020-01-15 07:37:19'),(6034,'government','100.26.203.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:42:28','2020-01-15 08:42:28'),(6035,'chemistry','197.210.29.194',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:53:58','2020-01-15 08:54:11'),(6036,'physics','34.236.147.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 09:37:53','2020-01-15 09:37:56'),(6037,'economics','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 12:29:24','2020-01-15 12:29:24'),(6038,'insurance','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 14:56:31','2020-01-15 14:56:31'),(6039,'economics','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:09:36','2020-01-15 15:09:36'),(6040,'crk','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:19:41','2020-01-15 15:19:41'),(6041,'chemistry','197.210.45.172',92,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:26:03','2020-01-15 15:31:10'),(6042,'commerce','18.209.5.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 17:07:51','2020-01-15 17:07:51'),(6043,'chemistry','197.211.58.205',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 20:53:18','2020-01-15 20:53:44'),(6044,'chemistry','197.211.58.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:03','2020-01-15 21:02:03'),(6045,'englishlit','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:38','2020-01-15 21:02:38'),(6046,'accounting','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:11:49','2020-01-15 21:11:49'),(6047,'chemistry','76.227.27.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:26:06','2020-01-15 21:35:01'),(6048,'english','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:19:54','2020-01-15 22:19:54'),(6049,'crk','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:34:26','2020-01-15 22:34:26'),(6050,'chemistry','159.138.158.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:24','2020-01-16 03:41:24'),(6051,'chemistry','159.138.154.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:27','2020-01-16 03:41:27'),(6052,'chemistry','37.150.17.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 09:03:33','2020-01-16 09:03:33'),(6053,'english','54.226.244.165',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 10:17:00','2020-01-16 10:17:03'),(6054,'insurance','34.229.6.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 12:22:59','2020-01-16 12:22:59'),(6055,'englishlit','100.26.51.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 14:37:15','2020-01-16 14:37:15'),(6056,'accounting','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:45:59','2020-01-16 15:45:59'),(6057,'physics','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:48:23','2020-01-16 15:48:23'),(6058,'english','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:15:39','2020-01-16 18:15:39'),(6059,'currentaffairs','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:19:03','2020-01-16 18:19:03'),(6060,'chemistry','18.205.239.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 19:22:43','2020-01-16 19:22:43'),(6061,'crk','54.209.182.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 20:55:34','2020-01-16 20:55:34'),(6062,'crk','52.87.197.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 21:40:29','2020-01-16 21:40:29'),(6063,'englishlit','54.90.245.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 22:42:09','2020-01-16 22:42:09'),(6064,'englishlit','52.91.61.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 00:58:04','2020-01-17 00:58:04'),(6065,'chemistry','174.129.61.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 03:28:11','2020-01-17 03:28:11'),(6066,'government','3.85.188.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 04:20:24','2020-01-17 04:20:24'),(6067,'chemistry','159.138.155.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:19','2020-01-17 05:35:19'),(6068,'chemistry','159.138.154.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:20','2020-02-24 05:01:25'),(6069,'crk','18.234.143.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 07:39:30','2020-01-17 07:39:30'),(6070,'chemistry','159.138.150.55',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 10:29:28','2020-01-17 10:29:29'),(6071,'chemistry','159.138.153.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:18','2020-01-17 13:26:18'),(6072,'chemistry','159.138.156.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:21','2020-01-17 13:26:21'),(6073,'accounting','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:31:59','2020-01-17 18:31:59'),(6074,'english','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:32:57','2020-01-17 18:32:57'),(6075,'history','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 23:43:23','2020-01-17 23:43:23'),(6076,'chemistry','84.241.193.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 02:10:58','2020-01-18 02:10:58'),(6077,'economics','54.147.112.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:09:08','2020-01-18 04:09:08'),(6078,'chemistry','159.138.128.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:53','2020-01-18 04:22:53'),(6079,'chemistry','159.138.150.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:55','2020-01-18 04:22:55'),(6080,'accounting','52.207.178.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:28:30','2020-01-18 11:06:20'),(6081,'history','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:30:16','2020-01-18 10:30:16'),(6082,'englishlit','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:36:43','2020-01-18 10:36:43'),(6083,'chemistry','197.210.65.53',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-18 21:33:39','2020-04-21 11:21:31'),(6084,'chemistry','197.210.65.246',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:05','2020-01-18 21:51:06'),(6085,'chemistry','197.210.65.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:24','2020-01-18 21:51:24'),(6086,'chemistry','197.210.65.33',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:40','2020-01-18 21:51:44'),(6087,'chemistry','197.210.64.160',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:52:12','2020-01-18 21:52:15'),(6088,'physics','197.210.47.29',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:54:25','2020-01-18 21:54:28'),(6089,'mathematics','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:39:47','2020-01-19 11:39:47'),(6090,'government','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:50:10','2020-01-19 11:50:10'),(6091,'chemistry','5.186.127.79',196,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:25:22','2020-03-07 23:25:18'),(6092,'englishlit','5.186.127.79',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:58:08','2020-02-03 17:34:24'),(6093,'commerce','3.82.117.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 14:53:51','2020-01-19 14:53:51'),(6094,'english','54.225.22.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 18:38:53','2020-01-19 18:38:53'),(6095,'chemistry','41.190.31.147',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 22:23:33','2020-01-19 22:23:33'),(6096,'geography','18.232.68.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 05:23:53','2020-01-20 05:23:53'),(6097,'geography','54.159.45.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:03:51','2020-01-20 06:03:51'),(6098,'geography','100.27.24.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:45:32','2020-01-20 06:45:32'),(6099,'physics','54.227.113.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 13:15:49','2020-01-20 13:15:49'),(6100,'geography','34.203.192.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:05:57','2020-01-20 14:05:57'),(6101,'english','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:10:11','2020-01-20 14:10:14'),(6102,'accounting','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:13:50','2020-01-20 14:13:53'),(6103,'biology','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:17:51','2020-01-20 14:17:54'),(6104,'chemistry','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:21:26','2020-01-20 14:21:29'),(6105,'commerce','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:31:36','2020-01-20 14:31:39'),(6106,'geography','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:36:02','2020-01-20 14:36:05'),(6107,'history','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:38:08','2020-01-20 14:38:11'),(6108,'physics','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:44:17','2020-01-20 14:44:20'),(6109,'chemistry','34.203.190.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:47:27','2020-01-20 14:47:27'),(6110,'englishlit','18.208.215.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 15:44:11','2020-01-20 15:44:11'),(6111,'biology','54.163.24.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 20:05:22','2020-01-20 20:05:22'),(6112,'currentaffairs','54.224.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 21:53:39','2020-01-20 21:53:39'),(6113,'biology','54.224.78.213',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 22:15:45','2020-01-20 22:15:47'),(6114,'englishlit','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:06:37','2020-01-21 04:06:37'),(6115,'physics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:24:39','2020-01-21 04:24:39'),(6116,'economics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:38:24','2020-01-21 04:38:24'),(6117,'mathematics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:05:21','2020-01-21 05:05:21'),(6118,'commerce','34.207.229.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:42:09','2020-01-21 05:42:09'),(6119,'mathematics','3.80.112.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 08:48:34','2020-01-21 08:48:34'),(6120,'chemistry','159.138.156.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:02','2020-01-21 09:08:02'),(6121,'chemistry','159.138.155.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:05','2020-01-21 09:08:05'),(6122,'insurance','34.201.67.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:58:44','2020-01-21 09:58:44'),(6123,'chemistry','34.201.67.206',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 10:24:35','2020-01-21 10:24:39'),(6124,'crk','3.84.124.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 11:25:57','2020-01-21 11:25:57'),(6125,'english','54.82.117.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 12:39:35','2020-01-21 12:39:38'),(6126,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6127,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6128,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6129,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6130,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6131,'chemistry','197.210.65.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:51:28','2020-01-21 16:51:28'),(6132,'geography','34.235.141.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 17:46:43','2020-01-21 17:46:43'),(6133,'mathematics','54.221.179.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 23:42:47','2020-01-21 23:42:47'),(6134,'accounting','54.88.104.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 05:24:34','2020-01-22 05:24:34'),(6135,'chemistry','52.91.210.222',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:50'),(6136,'chemistry','52.91.210.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:17'),(6137,'english','197.210.45.42',52,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:07:55','2020-01-22 10:20:09'),(6138,'chemistry','197.210.45.42',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:16:58','2020-01-22 10:17:01'),(6139,'english','197.210.84.40',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 11:05:36','2020-01-22 11:07:18'),(6140,'accounting','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:06:53','2020-01-22 14:06:56'),(6141,'biology','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:16:26','2020-01-22 14:16:29'),(6142,'chemistry','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:17:57','2020-01-22 14:18:00'),(6143,'commerce','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:24:26','2020-01-22 14:24:28'),(6144,'english','3.85.50.174',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:28:45','2020-01-22 14:31:27'),(6145,'geography','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:44:20','2020-01-22 14:44:23'),(6146,'government','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:49:57','2020-01-22 14:50:00'),(6147,'history','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:52:09','2020-01-22 14:52:12'),(6148,'physics','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:57:23','2020-01-22 14:57:26'),(6149,'mathematics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:06:42','2020-01-22 19:06:42'),(6150,'physics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:10:39','2020-01-22 19:10:40'),(6151,'physics','105.112.178.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 01:21:24','2020-01-23 01:21:24'),(6152,'history','54.242.9.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 07:11:29','2020-01-23 07:11:29'),(6153,'accounting','3.95.2.128',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:02:04','2020-01-23 12:49:19'),(6154,'biology','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:11:55','2020-01-23 12:54:42'),(6155,'chemistry','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:16:26','2020-01-23 12:57:07'),(6156,'commerce','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:25:56','2020-01-23 13:00:45'),(6157,'geography','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:34:50','2020-01-23 13:07:52'),(6158,'government','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:42:08','2020-01-23 13:08:44'),(6159,'english','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:43:06','2020-01-23 13:02:16'),(6160,'history','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:46:06','2020-01-23 13:11:05'),(6161,'physics','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:53:50','2020-01-23 13:18:26'),(6162,'chemistry','78.67.8.249',190,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 11:18:52','2020-05-28 07:54:26'),(6163,'biology','54.226.136.136',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 11:47:50','2020-01-23 11:47:50'),(6164,'insurance','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:24:44','2020-01-23 12:24:44'),(6165,'economics','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:33:40','2020-01-23 12:33:40'),(6166,'chemistry','3.83.32.171',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 14:11:16','2020-01-23 14:46:53'),(6167,'history','54.80.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 15:21:18','2020-01-23 15:21:18'),(6168,'accounting','54.227.208.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 19:10:55','2020-01-23 19:10:55'),(6169,'chemistry','114.119.129.17',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:30:35','2020-01-23 22:30:35'),(6170,'chemistry','54.145.181.222',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:34:50','2020-01-23 22:34:50'),(6171,'english','66.249.66.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:23:18','2020-01-24 01:23:18'),(6172,'chemistry','159.138.153.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:26','2020-01-24 01:38:26'),(6173,'chemistry','159.138.155.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:28','2020-01-24 01:38:28'),(6174,'irk','54.221.33.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 02:21:24','2020-01-24 02:21:24'),(6175,'crk','3.92.163.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 07:56:53','2020-01-24 07:56:53'),(6176,'chemistry','159.138.155.158',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:33:54','2020-01-24 09:33:54'),(6177,'chemistry','159.138.155.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:02','2020-01-24 09:34:02'),(6178,'chemistry','159.138.159.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:05','2020-01-24 09:34:05'),(6179,'chemistry','159.138.158.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:55','2020-01-24 11:45:55'),(6180,'chemistry','159.138.152.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:58','2020-01-24 11:45:58'),(6181,'commerce','54.234.15.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 12:20:42','2020-01-24 12:20:42'),(6182,'crk','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:21:36','2020-01-24 16:21:36'),(6183,'accounting','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:29:29','2020-01-24 16:29:29'),(6184,'english','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:48','2020-01-24 18:50:48'),(6185,'mathematics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6186,'commerce','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6187,'chemistry','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6188,'geography','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6189,'economics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6190,'insurance','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6191,'chemistry','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:38:45','2020-01-24 19:38:47'),(6192,'chemistry','159.138.155.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:17','2020-01-24 19:48:17'),(6193,'chemistry','159.138.157.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:20','2020-01-24 19:48:20'),(6194,'economics','54.234.219.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 21:16:38','2020-01-24 21:16:38'),(6195,'chemistry','54.82.250.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 00:25:04','2020-01-25 00:25:04'),(6196,'geography','52.91.20.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 02:53:58','2020-01-25 02:53:58'),(6197,'government','52.205.208.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 05:54:14','2020-01-25 05:54:14'),(6198,'government','3.82.98.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 06:50:25','2020-01-25 06:50:25'),(6199,'economics','18.232.150.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 07:40:32','2020-01-25 07:40:32'),(6200,'chemistry','66.249.64.112',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:00:41','2020-01-25 10:06:05'),(6201,'chemistry','66.249.64.114',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:11:26','2020-01-25 10:25:38'),(6202,'insurance','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:06:32','2020-01-25 11:06:32'),(6203,'crk','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:16:24','2020-01-25 11:16:24'),(6204,'mathematics','105.112.177.119',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 12:21:44','2020-01-25 12:24:10'),(6205,'economics','184.72.97.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:05:36','2020-01-25 15:05:36'),(6206,'english','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6207,'economics','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6208,'englishlit','54.172.2.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 16:46:58','2020-01-25 16:46:58'),(6209,'english','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 18:56:16','2020-01-25 18:56:16'),(6210,'commerce','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 19:01:52','2020-01-25 19:01:52'),(6211,'crk','54.227.219.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:07:54','2020-01-25 23:07:54'),(6212,'crk','34.227.56.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:54:31','2020-01-25 23:54:31'),(6213,'geography','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 09:48:50','2020-01-26 09:48:50'),(6214,'physics','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:42','2020-01-26 13:25:42'),(6215,'insurance','54.163.34.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:44','2020-01-26 13:53:10'),(6216,'englishlit','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 14:26:21','2020-01-26 14:26:21'),(6217,'chemistry','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 15:31:14','2020-01-26 15:31:14'),(6218,'currentaffairs','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:40:36','2020-01-26 16:40:36'),(6219,'english','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:56:27','2020-01-26 16:56:27'),(6220,'mathematics','54.234.126.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 17:35:46','2020-01-26 17:35:46'),(6221,'englishlit','3.80.203.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 18:54:41','2020-01-26 18:54:41'),(6222,'mathematics','3.92.208.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 19:40:52','2020-01-26 19:40:52'),(6223,'englishlit','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:07:23','2020-01-26 22:07:23'),(6224,'commerce','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:27:30','2020-01-26 22:27:30'),(6225,'crk','3.81.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 23:10:54','2020-01-26 23:10:54'),(6226,'economics','54.237.215.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 00:37:31','2020-01-27 00:37:31'),(6227,'government','100.24.9.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 02:34:55','2020-01-27 02:34:55'),(6228,'mathematics','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6229,'biology','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6230,'chemistry','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6231,'englishlit','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6232,'government','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6233,'civiledu','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6234,'currentaffairs','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:27','2020-01-27 04:08:27'),(6235,'english','3.89.150.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 06:06:57','2020-01-27 06:06:57'),(6236,'chemistry','114.119.167.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 07:14:52','2020-01-27 07:14:52'),(6237,'english','54.167.78.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 08:12:16','2020-01-27 08:12:16'),(6238,'biology','3.94.145.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:10:32','2020-01-27 12:10:32'),(6239,'crk','41.184.176.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:18:46','2020-01-27 12:18:46'),(6240,'english','52.205.236.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 14:56:14','2020-01-27 14:56:14'),(6241,'chemistry','105.112.38.62',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 15:47:21','2020-01-27 15:51:48'),(6242,'insurance','34.239.130.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 16:38:00','2020-01-27 16:38:00'),(6243,'chemistry','114.119.133.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 19:10:16','2020-01-27 19:10:16'),(6244,'chemistry','3.92.236.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 20:56:15','2020-01-27 20:56:15'),(6245,'chemistry','35.173.249.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 22:22:57','2020-01-27 22:22:57'),(6246,'chemistry','114.119.163.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 23:25:06','2020-01-27 23:25:06'),(6247,'commerce','3.95.235.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 00:29:02','2020-01-28 00:29:02'),(6248,'chemistry','151.80.39.47',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 01:56:45','2020-04-02 23:36:26'),(6249,'chemistry','114.119.131.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 02:19:39','2020-01-28 02:19:39'),(6250,'chemistry','114.119.146.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 03:40:30','2020-01-28 03:40:30'),(6251,'chemistry','159.138.158.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:23','2020-01-28 06:57:23'),(6252,'chemistry','159.138.151.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:26','2020-01-28 06:57:26'),(6253,'mathematics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6254,'accounting','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6255,'physics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6256,'government','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6257,'crk','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:04'),(6258,'insurance','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6259,'currentaffairs','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6260,'geography','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:08:11','2020-01-28 11:08:11'),(6261,'englishlit','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:17:47','2020-01-28 11:17:47'),(6262,'accounting','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:22:33','2020-01-28 11:22:33'),(6263,'chemistry','157.55.39.83',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:38:03','2020-01-28 11:38:03'),(6264,'economics','35.171.182.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:01:23','2020-01-28 14:01:23'),(6265,'economics','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:18','2020-01-28 14:44:18'),(6266,'english','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:19','2020-01-28 14:44:19'),(6267,'physics','3.94.103.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 18:25:15','2020-01-28 18:25:15'),(6268,'commerce','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:38','2020-01-29 02:20:38'),(6269,'accounting','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6270,'physics','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6271,'government','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6272,'crk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6273,'irk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6274,'currentaffairs','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6275,'english','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:42','2020-01-29 02:55:43'),(6276,'mathematics','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6277,'accounting','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6278,'government','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6279,'insurance','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6280,'currentaffairs','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6281,'history','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:44'),(6282,'chemistry','159.138.159.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:08:05','2020-01-29 06:08:05'),(6283,'mathematics','3.83.117.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:37:49','2020-01-29 06:37:49'),(6284,'geography','18.232.162.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 08:36:32','2020-01-29 08:36:32'),(6285,'insurance','52.90.181.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 12:12:29','2020-01-29 12:12:29'),(6286,'chemistry','18.234.111.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 14:21:47','2020-01-29 14:21:47'),(6287,'commerce','54.87.20.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 15:21:30','2020-01-29 15:21:30'),(6288,'mathematics','52.90.10.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 16:29:01','2020-01-29 16:29:01'),(6289,'chemistry','207.46.13.92',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:25:12','2020-01-29 18:25:12'),(6290,'mathematics','3.81.141.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:38:00','2020-01-29 18:38:00'),(6291,'government','41.190.3.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:13:05','2020-01-29 19:13:06'),(6292,'chemistry','207.46.13.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:32:15','2020-01-29 19:32:15'),(6293,'commerce','3.88.140.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 21:29:47','2020-01-29 21:29:47'),(6294,'biology','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:49:14','2020-01-30 01:49:14'),(6295,'english','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:50:59','2020-01-30 01:50:59'),(6296,'mathematics','54.91.188.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 03:44:50','2020-01-30 03:44:50'),(6297,'english','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:22:30','2020-01-30 05:22:30'),(6298,'government','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:24:43','2020-01-30 05:24:43'),(6299,'englishlit','3.80.30.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 06:21:01','2020-01-30 06:21:01'),(6300,'economics','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:13:00','2020-01-30 08:13:00'),(6301,'crk','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:15:11','2020-01-30 08:15:11'),(6302,'geography','18.207.190.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 10:50:25','2020-01-30 10:50:25'),(6303,'english','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:28:50','2020-01-30 13:28:50'),(6304,'civiledu','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:59:42','2020-01-30 13:59:42'),(6305,'geography','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 14:27:14','2020-01-30 14:27:14'),(6306,'insurance','34.237.245.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:05:29','2020-01-30 16:05:29'),(6307,'chemistry','46.229.161.131',212,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-04-19 15:14:37'),(6308,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6309,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6310,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6311,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6312,'physics','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:01:23','2020-01-30 20:01:23'),(6313,'geography','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:23:45','2020-01-30 20:23:45'),(6314,'chemistry','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 21:51:40','2020-01-30 21:51:40'),(6315,'englishlit','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 22:08:33','2020-01-30 22:08:33'),(6316,'currentaffairs','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:21:19','2020-01-31 01:21:19'),(6317,'government','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:38:18','2020-01-31 01:38:18'),(6318,'economics','54.89.156.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:05:07','2020-01-31 03:05:07'),(6319,'chemistry','207.46.13.209',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:23:54','2020-01-31 12:04:42'),(6320,'english','105.112.182.82',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 06:30:35','2020-01-31 06:32:01'),(6321,'physics','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:12:51','2020-01-31 07:12:51'),(6322,'english','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:23:23','2020-01-31 07:23:23'),(6323,'economics','54.210.244.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:58:52','2020-01-31 07:58:52'),(6324,'englishlit','3.86.29.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 10:32:00','2020-01-31 10:32:00'),(6325,'chemistry','54.237.205.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 12:11:56','2020-01-31 12:11:56'),(6326,'mathematics','52.86.208.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 15:08:11','2020-01-31 15:08:11'),(6327,'accounting','3.86.202.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 17:15:43','2020-01-31 17:15:43'),(6328,'insurance','3.91.133.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 18:38:12','2020-01-31 18:38:12'),(6329,'mathematics','3.82.155.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 22:46:02','2020-01-31 22:46:02'),(6330,'insurance','18.234.65.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 23:57:02','2020-01-31 23:57:02'),(6331,'commerce','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:38:11','2020-02-01 00:38:11'),(6332,'english','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:08','2020-02-01 00:43:08'),(6333,'physics','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:27','2020-02-01 00:43:27'),(6334,'english','105.112.59.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:48:46','2020-02-01 04:48:46'),(6335,'englishlit','54.209.65.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:57:37','2020-02-01 04:57:37'),(6336,'geography','52.91.111.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 06:32:15','2020-02-01 06:32:15'),(6337,'english','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6338,'mathematics','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6339,'biology','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6340,'chemistry','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6341,'englishlit','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6342,'insurance','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6343,'history','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6344,'economics','54.87.59.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:18:15','2020-02-01 12:18:15'),(6345,'insurance','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:55:22','2020-02-01 12:55:22'),(6346,'civiledu','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 13:00:35','2020-02-01 13:00:35'),(6347,'accounting','34.203.212.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 14:38:27','2020-02-01 14:38:27'),(6348,'biology','34.228.168.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 01:57:16','2020-02-02 01:57:16'),(6349,'english','54.227.175.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 03:18:24','2020-02-02 03:18:24'),(6350,'government','52.23.185.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 05:33:56','2020-02-02 05:33:56'),(6351,'crk','52.23.225.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 08:26:03','2020-02-02 08:26:03'),(6352,'history','54.152.74.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 10:18:23','2020-02-02 10:18:23'),(6353,'civiledu','54.175.193.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 14:11:21','2020-02-02 14:11:21'),(6354,'chemistry','34.229.20.78',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:23'),(6355,'chemistry','34.229.20.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:22'),(6356,'chemistry','105.112.178.165',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 19:12:14','2020-02-02 19:31:58'),(6357,'biology','18.212.175.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 23:50:11','2020-02-02 23:50:11'),(6358,'currentaffairs','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 00:42:03','2020-02-03 00:42:03'),(6359,'history','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:15','2020-02-03 01:17:15'),(6360,'government','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:42','2020-02-03 01:17:42'),(6361,'economics','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:35:23','2020-02-03 01:35:23'),(6362,'economics','52.204.49.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 02:42:06','2020-02-03 02:42:06'),(6363,'economics','3.90.112.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 04:45:10','2020-02-03 04:45:10'),(6364,'english','34.228.141.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 06:53:18','2020-02-03 06:53:18'),(6365,'accounting','54.175.163.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 07:43:49','2020-02-03 07:43:49'),(6366,'chemistry','105.112.75.189',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:18:05','2020-02-03 09:50:11'),(6367,'biology','66.249.88.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:41:16','2020-02-03 09:41:18'),(6368,'chemistry','105.112.55.63',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:08:19','2020-02-03 10:31:05'),(6369,'chemistry','197.210.71.2',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:30:49','2020-02-03 10:30:59'),(6370,'mathematics','5.186.127.79',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:01:59','2020-03-08 01:56:09'),(6371,'english','5.186.127.79',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:02:29','2020-02-03 19:50:47'),(6372,'history','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:40:14','2020-02-03 19:40:14'),(6373,'chemistry','54.227.12.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 21:50:10','2020-02-03 21:50:10'),(6374,'crk','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 01:59:00','2020-02-04 01:59:00'),(6375,'commerce','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 02:10:16','2020-02-04 02:10:16'),(6376,'chemistry','105.112.178.251',234,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 03:42:45','2020-02-04 05:35:31'),(6377,'crk','54.174.29.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 08:39:40','2020-02-04 08:39:40'),(6378,'chemistry','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:58:55','2020-02-04 09:58:55'),(6379,'irk','54.145.39.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:59:39','2020-02-04 09:59:39'),(6380,'mathematics','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:00:08','2020-02-04 10:00:08'),(6381,'economics','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:48:18','2020-02-04 10:48:18'),(6382,'accounting','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:54:29','2020-02-04 10:54:29'),(6383,'civiledu','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 11:29:41','2020-02-04 11:29:41'),(6384,'economics','54.162.191.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:01:04','2020-02-04 12:01:04'),(6385,'chemistry','159.138.155.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:43:25','2020-02-04 12:43:25'),(6386,'crk','3.83.164.35',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:13:32','2020-02-04 14:20:46'),(6387,'irk','3.83.164.35',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:18:49','2020-02-04 14:24:05'),(6388,'english','3.83.164.35',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:25:01','2020-02-04 14:28:15'),(6389,'mathematics','3.83.164.35',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 14:29:22','2020-02-04 14:33:35'),(6390,'civiledu','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:34:31','2020-02-04 14:39:09'),(6391,'insurance','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:40:01','2020-02-04 14:43:43'),(6392,'chemistry','129.56.111.10',6,'','NG','','Lagos',NULL,NULL,'','','2020-02-04 14:41:58','2020-02-05 06:14:39'),(6393,'economics','129.56.111.10',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:42:39','2020-02-04 14:42:39'),(6394,'currentaffairs','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:44:50','2020-02-04 14:48:55'),(6395,'government','18.207.229.112',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 15:33:33','2020-02-04 15:33:33'),(6396,'mathematics','190.120.217.202',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 16:44:57','2020-02-04 16:44:57'),(6397,'government','54.81.18.48',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 17:27:35','2020-02-04 17:46:16'),(6398,'crk','54.81.18.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 17:46:16','2020-02-04 17:46:16'),(6399,'chemistry','197.211.61.135',16,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 19:19:08','2020-02-04 19:24:05'),(6400,'chemistry','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:15:38','2020-02-04 20:15:38'),(6401,'geography','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:28:22','2020-02-04 20:28:22'),(6402,'government','34.233.134.3',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 21:13:57','2020-02-04 21:13:57'),(6403,'commerce','52.91.40.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 22:24:13','2020-02-04 22:24:13'),(6404,'economics','34.228.184.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 00:11:53','2020-02-05 00:11:53'),(6405,'economics','18.215.150.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 03:12:14','2020-02-05 03:12:14'),(6406,'insurance','54.237.226.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 04:33:22','2020-02-05 04:33:22'),(6407,'chemistry','207.46.13.202',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 05:48:51','2020-02-05 07:58:31'),(6408,'chemistry','206.189.180.4',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:11:56','2020-02-05 06:12:29'),(6409,'physics','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:13:27','2020-02-05 06:13:27'),(6410,'biology','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:14:43','2020-02-05 06:14:43'),(6411,'chemistry','159.138.152.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 09:26:20','2020-02-05 09:26:20'),(6412,'englishlit','34.228.66.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 10:25:53','2020-02-05 10:25:53'),(6413,'chemistry','207.46.13.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:16:47','2020-02-05 12:16:47'),(6414,'economics','52.87.240.0',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:48:30','2020-02-05 12:51:43'),(6415,'englishlit','52.87.240.0',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:52:17','2020-02-05 12:55:42'),(6416,'chemistry','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:42:37','2020-02-05 13:42:40'),(6417,'biology','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:43:23','2020-02-05 13:43:27'),(6418,'chemistry','159.138.156.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:18','2020-02-05 14:20:18'),(6419,'chemistry','159.138.156.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:20','2020-02-05 14:20:20'),(6420,'english','18.233.225.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:35:35','2020-02-05 14:35:35'),(6421,'chemistry','159.138.158.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:22','2020-02-05 16:03:22'),(6422,'chemistry','159.138.158.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:24','2020-02-05 16:03:24'),(6423,'chemistry','149.28.23.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:07:00','2020-02-05 16:07:01'),(6424,'chemistry','197.210.45.223',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:12:02','2020-02-05 19:12:03'),(6425,'crk','54.147.234.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:55:34','2020-02-05 19:55:34'),(6426,'crk','34.227.152.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 00:47:24','2020-02-06 00:47:24'),(6427,'insurance','54.198.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:07:31','2020-02-06 05:07:31'),(6428,'mathematics','54.198.78.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:13:14','2020-02-06 05:39:35'),(6429,'chemistry','105.112.178.38',113,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:24:23','2020-02-06 08:18:18'),(6430,'chemistry','197.210.52.78',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:45:06','2020-02-06 09:09:46'),(6431,'chemistry','197.210.53.153',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:52:38','2020-02-06 09:16:07'),(6432,'chemistry','197.210.52.148',167,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:56:55','2020-02-06 09:16:55'),(6433,'chemistry','197.210.53.241',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:57:58','2020-02-06 09:03:21'),(6434,'english','197.210.53.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:03','2020-02-06 09:17:03'),(6435,'english','197.210.53.153',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:17','2020-02-06 09:17:20'),(6436,'accounting','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:19:37','2020-02-06 09:19:40'),(6437,'biology','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:20','2020-02-06 09:20:23'),(6438,'physics','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:51','2020-02-06 09:20:54'),(6439,'english','102.67.6.4',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:35','2020-02-06 09:21:38'),(6440,'englishlit','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:36','2020-02-06 09:21:39'),(6441,'mathematics','102.67.6.4',90,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:48','2020-02-06 09:22:30'),(6442,'government','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:53','2020-02-06 09:21:56'),(6443,'crk','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:07','2020-02-06 09:22:11'),(6444,'geography','197.210.52.46',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:18','2020-02-06 09:22:21'),(6445,'economics','197.210.52.148',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:28','2020-02-06 09:22:31'),(6446,'irk','197.210.52.46',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:48','2020-02-06 09:22:50'),(6447,'civiledu','197.210.52.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:57','2020-02-06 09:23:00'),(6448,'insurance','197.210.53.228',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:13','2020-02-06 09:24:16'),(6449,'biology','102.67.6.4',45,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:44','2020-02-06 09:25:01'),(6450,'history','197.210.53.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:25:32','2020-02-06 09:25:35'),(6451,'chemistry','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:05:57','2020-02-06 11:05:57'),(6452,'physics','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:34:52','2020-02-06 11:34:52'),(6453,'chemistry','129.18.170.187',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 12:20:37','2020-02-06 12:20:49'),(6454,'english','41.184.164.93',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 14:04:50','2020-02-06 14:04:53'),(6455,'englishlit','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:10:15','2020-02-06 14:10:15'),(6456,'crk','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:31:21','2020-02-06 14:31:21'),(6457,'chemistry','197.211.61.128',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:45:01','2020-02-06 14:45:39'),(6458,'englishlit','54.242.25.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 15:06:36','2020-02-06 15:06:36'),(6459,'currentaffairs','3.84.248.139',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 16:33:00','2020-02-06 16:33:00'),(6460,'chemistry','159.138.153.33',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 19:22:39','2020-02-06 19:22:42'),(6461,'crk','3.88.183.247',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 21:12:07','2020-02-06 21:12:07'),(6462,'englishlit','18.232.114.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 22:46:55','2020-02-06 22:46:55'),(6463,'economics','54.227.10.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 01:41:04','2020-02-07 01:41:04'),(6464,'english','3.86.106.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 02:18:26','2020-02-07 02:18:26'),(6465,'biology','35.174.9.116',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:28:22','2020-02-07 04:28:23'),(6466,'government','35.174.9.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:47:35','2020-02-07 04:47:35'),(6467,'crk','54.157.234.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 09:15:39','2020-02-07 09:15:39'),(6468,'mathematics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:24','2020-02-07 10:02:27'),(6469,'chemistry','41.184.164.93',46,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:52','2020-02-13 12:05:06'),(6470,'physics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:03:10','2020-02-07 10:03:13'),(6471,'chemistry','34.207.81.136',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 12:31:01','2020-02-07 12:31:01'),(6472,'chemistry','159.138.148.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:48','2020-02-07 13:54:48'),(6473,'chemistry','159.138.151.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:51','2020-02-07 13:54:51'),(6474,'chemistry','159.138.156.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:39','2020-02-07 14:47:39'),(6475,'chemistry','159.138.152.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:40','2020-02-07 14:47:40'),(6476,'english','52.201.218.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 18:39:18','2020-02-07 18:39:18'),(6477,'chemistry','105.112.117.84',293,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:30:28','2020-02-07 20:00:57'),(6478,'english','105.112.117.84',104,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:48:33','2020-02-07 20:02:22'),(6479,'biology','3.87.229.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 20:58:03','2020-02-07 20:58:03'),(6480,'englishlit','54.226.235.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 05:22:08','2020-02-08 05:22:08'),(6481,'currentaffairs','18.212.207.50',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 12:56:59','2020-02-08 13:19:35'),(6482,'english','105.112.121.51',3687,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:00:54','2020-02-08 16:40:24'),(6483,'chemistry','105.112.121.51',247,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:17:20','2020-02-08 16:40:24'),(6484,'mathematics','105.112.121.51',280,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 14:55:34','2020-02-08 16:40:25'),(6485,'currentaffairs','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6486,'biology','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6487,'civiledu','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6488,'accounting','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6489,'history','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6490,'government','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6491,'crk','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6492,'geography','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6493,'physics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6494,'irk','105.112.121.51',180,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:28'),(6495,'commerce','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:51','2020-02-08 16:40:24'),(6496,'englishlit','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:24'),(6497,'economics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:23'),(6498,'civiledu','34.230.4.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 17:05:03','2020-02-08 17:05:03'),(6499,'englishlit','54.167.22.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 20:45:17','2020-02-08 20:45:17'),(6500,'english','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:52:30','2020-02-08 20:52:30'),(6501,'accounting','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:59:40','2020-02-08 20:59:40'),(6502,'chemistry','105.112.23.32',172,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:31:48','2020-02-09 02:17:39'),(6503,'commerce','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6504,'physics','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6505,'chemistry','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6506,'englishlit','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6507,'crk','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6508,'geography','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:19'),(6509,'history','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:19','2020-02-08 23:44:19'),(6510,'physics','66.249.83.192',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 06:54:16','2020-02-09 06:54:18'),(6511,'mathematics','105.112.38.128',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:07:48','2020-02-09 11:09:27'),(6512,'biology','105.112.38.128',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:10:56','2020-02-09 11:10:57'),(6513,'biology','105.112.57.10',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:16:17','2020-02-09 11:16:56'),(6514,'chemistry','105.112.176.118',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 13:28:05','2020-02-09 14:36:23'),(6515,'chemistry','105.112.38.60',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 21:58:06','2020-02-09 21:58:42'),(6516,'englishlit','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6517,'civiledu','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6518,'mathematics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6519,'physics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6520,'currentaffairs','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6521,'commerce','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6522,'government','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6523,'accounting','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6524,'english','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6525,'chemistry','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6526,'crk','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6527,'history','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6528,'economics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:45'),(6529,'irk','105.112.121.100',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6530,'biology','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6531,'geography','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6532,'mathematics','3.88.254.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 23:58:44','2020-02-09 23:58:44'),(6533,'commerce','54.234.42.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 04:53:06','2020-02-10 04:53:06'),(6534,'insurance','52.205.252.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 12:48:35','2020-02-10 12:48:35'),(6535,'biology','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:31:06','2020-02-10 13:33:56'),(6536,'geography','54.86.139.235',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:34:52','2020-02-10 13:40:06'),(6537,'government','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:38:55','2020-02-10 13:41:36'),(6538,'chemistry','159.138.159.131',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 14:59:24','2020-02-10 14:59:25'),(6539,'chemistry','66.102.8.239',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 19:24:51','2020-03-10 07:49:39'),(6540,'mathematics','54.198.180.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 23:23:53','2020-02-10 23:23:53'),(6541,'geography','34.228.215.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 03:09:40','2020-02-11 03:09:40'),(6542,'economics','54.86.162.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 06:23:36','2020-02-11 06:23:36'),(6543,'chemistry','159.138.128.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:43','2020-02-11 08:08:43'),(6544,'chemistry','159.138.157.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:44','2020-02-11 08:08:44'),(6545,'crk','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:19:44','2020-02-11 08:19:44'),(6546,'geography','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:28:36','2020-02-11 08:28:36'),(6547,'geography','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:07:20','2020-02-11 11:07:20'),(6548,'english','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:29:21','2020-02-11 11:29:21'),(6549,'physics','52.90.177.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 20:57:31','2020-02-11 20:57:31'),(6550,'chemistry','54.36.148.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 21:31:54','2020-02-11 21:31:55'),(6551,'englishlit','52.23.243.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 00:28:14','2020-02-12 00:28:14'),(6552,'mathematics','105.112.59.79',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 01:05:16','2020-02-12 01:05:16'),(6553,'currentaffairs','54.172.153.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 04:22:50','2020-02-12 04:22:50'),(6554,'biology','54.81.207.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 06:05:04','2020-02-12 06:05:04'),(6555,'geography','3.83.240.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 07:57:33','2020-02-12 07:57:33'),(6556,'chemistry','114.119.164.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 09:32:25','2020-02-12 09:32:25'),(6557,'chemistry','159.138.157.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:57','2020-02-12 12:35:57'),(6558,'chemistry','159.138.155.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:59','2020-02-12 12:35:59'),(6559,'mathematics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:18:10','2020-02-12 16:18:10'),(6560,'physics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:23:01','2020-02-12 16:23:01'),(6561,'chemistry','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:44:21','2020-02-12 16:44:21'),(6562,'biology','66.249.88.14',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 17:50:44','2020-02-15 20:12:28'),(6563,'geography','18.212.14.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 21:05:47','2020-02-12 21:05:47'),(6564,'government','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:08:36','2020-02-12 22:08:36'),(6565,'mathematics','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:15:14','2020-02-12 22:15:14'),(6566,'mathematics','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:42:26','2020-02-13 01:42:26'),(6567,'accounting','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:51:06','2020-02-13 01:51:06'),(6568,'history','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:03:04','2020-02-13 03:03:04'),(6569,'englishlit','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:13:21','2020-02-13 03:13:21'),(6570,'chemistry','54.36.150.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 06:05:15','2020-02-13 06:05:15'),(6571,'irk','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6572,'geography','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6573,'accounting','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6574,'currentaffairs','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6575,'english','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6576,'government','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6577,'mathematics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6578,'civiledu','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6579,'physics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6580,'crk','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6581,'biology','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6582,'commerce','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6583,'englishlit','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6584,'history','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6585,'chemistry','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6586,'economics','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:47:15','2020-02-13 09:50:43'),(6587,'chemistry','159.138.152.95',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 16:01:29','2020-02-13 16:01:33'),(6588,'geography','3.85.140.177',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-13 18:30:03','2020-02-13 18:30:03'),(6589,'chemistry','107.167.108.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 22:22:25','2020-02-13 22:22:25'),(6590,'accounting','18.206.218.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 03:40:45','2020-02-14 03:40:45'),(6591,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6592,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6593,'chemistry','159.138.153.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:50','2020-02-14 08:34:50'),(6594,'chemistry','159.138.150.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:53','2020-02-14 08:34:53'),(6595,'chemistry','159.138.158.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:49','2020-02-14 08:40:49'),(6596,'chemistry','159.138.151.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:52','2020-02-14 08:40:52'),(6597,'chemistry','54.36.150.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 09:29:11','2020-02-14 09:29:11'),(6598,'commerce','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:16','2020-02-14 12:46:16'),(6599,'physics','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6600,'government','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6601,'geography','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6602,'irk','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6603,'currentaffairs','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6604,'history','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6605,'english','54.234.90.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 13:13:09','2020-02-14 13:13:09'),(6606,'government','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 15:59:30','2020-02-14 15:59:34'),(6607,'physics','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 16:21:32','2020-02-14 16:21:35'),(6608,'mathematics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6609,'physics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6610,'englishlit','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6611,'english','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6612,'biology','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6613,'irk','3.84.126.190',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:53'),(6614,'government','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6615,'currentaffairs','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6616,'economics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6617,'commerce','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6618,'geography','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6619,'civiledu','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6620,'accounting','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6621,'history','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6622,'chemistry','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6623,'crk','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6624,'crk','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6625,'currentaffairs','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6626,'geography','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6627,'economics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6628,'civiledu','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6629,'irk','52.205.39.67',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:40'),(6630,'englishlit','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6631,'government','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6632,'chemistry','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6633,'history','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6634,'physics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6635,'biology','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6636,'accounting','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6637,'mathematics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6638,'english','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6639,'commerce','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:38','2020-02-14 17:43:41'),(6640,'history','54.161.219.62',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-14 18:19:40','2020-02-14 18:19:40'),(6641,'chemistry','207.46.13.106',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 13:28:42','2020-02-26 14:54:53'),(6642,'mathematics','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6643,'commerce','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6644,'chemistry','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6645,'englishlit','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6646,'government','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6647,'insurance','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6648,'history','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6649,'chemistry','157.55.39.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 18:35:48','2020-02-15 18:35:48'),(6650,'biology','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 20:12:28','2020-02-15 20:12:30'),(6651,'insurance','107.22.1.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 00:40:58','2020-02-16 00:40:58'),(6652,'economics','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:40:03','2020-02-16 01:40:03'),(6653,'history','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:59:35','2020-02-16 01:59:35'),(6654,'economics','100.26.204.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 04:49:19','2020-02-16 04:49:19'),(6655,'history','54.173.184.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 07:23:00','2020-02-16 07:23:00'),(6656,'chemistry','54.158.124.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 08:06:19','2020-02-16 08:06:19'),(6657,'accounting','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 09:59:42','2020-02-16 09:59:42'),(6658,'history','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 10:06:30','2020-02-16 10:06:30'),(6659,'biology','54.81.159.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:49:34','2020-02-16 16:58:41'),(6660,'english','54.81.159.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:52:09','2020-02-16 16:56:21'),(6661,'chemistry','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:21','2020-02-16 16:54:24'),(6662,'commerce','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:43','2020-02-16 16:54:46'),(6663,'accounting','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:06','2020-02-16 16:55:09'),(6664,'mathematics','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:58','2020-02-16 16:56:01'),(6665,'irk','52.91.167.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 22:51:34','2020-02-16 22:51:34'),(6666,'crk','34.233.126.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 01:08:54','2020-02-17 01:08:54'),(6667,'economics','54.234.27.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 05:03:19','2020-02-17 05:03:19'),(6668,'commerce','54.221.92.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 06:44:50','2020-02-17 06:44:50'),(6669,'chemistry','159.138.128.150',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:05:44','2020-02-17 07:05:44'),(6670,'english','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6671,'mathematics','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6672,'accounting','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6673,'englishlit','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6674,'government','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:10'),(6675,'civiledu','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-17 07:26:10'),(6676,'insurance','34.229.240.235',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-19 13:08:34'),(6677,'biology','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:53:21','2020-02-17 07:53:21'),(6678,'chemistry','41.190.3.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 09:00:45','2020-02-17 09:00:46'),(6679,'accounting','34.224.39.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 10:20:33','2020-02-17 10:20:33'),(6680,'english','197.156.253.124',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 11:19:47','2020-02-17 11:19:47'),(6681,'crk','184.72.213.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 13:48:40','2020-02-17 13:48:40'),(6682,'accounting','54.165.1.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 17:44:51','2020-02-17 17:44:51'),(6683,'economics','54.83.109.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 20:16:53','2020-02-17 20:16:53'),(6684,'chemistry','5.255.250.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 21:22:58','2020-02-17 21:22:58'),(6685,'government','54.221.59.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 23:17:36','2020-02-17 23:17:36'),(6686,'chemistry','34.201.122.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 00:07:06','2020-02-18 00:07:06'),(6687,'government','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:37:21','2020-02-18 02:37:21'),(6688,'geography','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:43:15','2020-02-18 02:43:15'),(6689,'mathematics','52.87.200.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 03:25:39','2020-02-18 03:25:39'),(6690,'commerce','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:40:17','2020-02-18 05:40:17'),(6691,'economics','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:53:54','2020-02-18 05:53:54'),(6692,'chemistry','54.224.96.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:08:00','2020-02-18 11:08:00'),(6693,'insurance','54.224.96.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:30:46','2020-02-18 11:30:46'),(6694,'crk','18.212.173.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 13:09:34','2020-03-20 07:37:00'),(6695,'chemistry','114.119.134.79',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 15:47:10','2020-02-18 15:47:10'),(6696,'englishlit','100.24.12.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 18:48:21','2020-02-18 18:48:21'),(6697,'crk','3.85.34.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 22:20:53','2020-02-18 22:20:53'),(6698,'chemistry','196.220.136.213',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 00:45:34','2020-02-19 00:45:35'),(6699,'english','54.147.36.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 03:54:04','2020-02-19 03:54:04'),(6700,'crk','34.229.241.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 05:30:54','2020-02-19 05:30:54'),(6701,'chemistry','41.184.42.114',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 13:13:14','2020-02-19 13:13:37'),(6702,'english','54.227.161.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 15:50:25','2020-02-19 15:50:25'),(6703,'chemistry','82.145.222.210',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:03:16','2020-02-19 18:03:27'),(6704,'chemistry','54.36.150.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:07:42','2020-02-19 18:07:46'),(6705,'englishlit','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:26:35','2020-02-19 19:26:35'),(6706,'chemistry','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:27:02','2020-02-19 19:27:02'),(6707,'physics','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:53:17','2020-02-19 19:53:17'),(6708,'english','204.236.246.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 22:37:37','2020-02-19 22:37:37'),(6709,'englishlit','34.230.79.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 00:17:30','2020-02-20 00:17:30'),(6710,'currentaffairs','54.242.206.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 01:18:47','2020-02-20 01:18:47'),(6711,'crk','3.85.213.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 04:49:03','2020-02-20 04:49:03'),(6712,'englishlit','3.81.90.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 08:44:59','2020-02-20 08:44:59'),(6713,'government','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:23','2020-02-20 10:57:04'),(6714,'physics','3.81.90.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:35','2020-02-20 09:14:41'),(6715,'irk','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:28:55','2020-02-20 10:57:05'),(6716,'currentaffairs','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:33:57','2020-02-20 10:57:05'),(6717,'history','3.81.90.103',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:37:42','2020-02-20 10:45:58'),(6718,'history','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6719,'chemistry','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6720,'accounting','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6721,'commerce','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6722,'physics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6723,'civiledu','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6724,'crk','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6725,'economics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6726,'currentaffairs','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6727,'biology','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6728,'government','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6729,'english','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6730,'irk','35.168.19.41',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6731,'englishlit','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6732,'geography','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6733,'mathematics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6734,'geography','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:07','2020-02-20 11:04:56'),(6735,'commerce','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:45','2020-02-20 10:57:04'),(6736,'chemistry','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6737,'geography','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6738,'englishlit','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6739,'history','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6740,'accounting','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6741,'english','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6742,'commerce','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6743,'crk','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6744,'civiledu','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6745,'physics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6746,'mathematics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6747,'government','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6748,'irk','54.162.219.78',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6749,'biology','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6750,'economics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:11','2020-02-20 10:47:14'),(6751,'currentaffairs','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:12','2020-02-20 10:47:15'),(6752,'economics','3.81.90.103',3,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 11:01:05'),(6753,'civiledu','3.81.90.103',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 10:57:05'),(6754,'government','18.207.192.142',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 13:42:22','2020-02-20 13:42:22'),(6755,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6756,'chemistry','54.167.198.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6757,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6758,'english','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:31','2020-02-20 17:26:32'),(6759,'accounting','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6760,'biology','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6761,'government','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6762,'crk','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6763,'currentaffairs','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6764,'history','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6765,'crk','3.80.65.155',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:00:34','2020-02-20 18:00:34'),(6766,'biology','3.80.65.155',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:13:55','2020-02-20 18:13:55'),(6767,'english','204.236.203.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 21:11:32','2020-02-20 21:11:32'),(6768,'mathematics','3.89.145.218',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 22:35:41','2020-02-20 22:35:41'),(6769,'chemistry','46.229.168.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:29:39','2020-02-21 02:29:39'),(6770,'chemistry','157.55.39.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:49:20','2020-02-21 02:49:20'),(6771,'english','54.147.53.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 03:48:00','2020-02-21 03:48:00'),(6772,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6773,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6774,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6775,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6776,'currentaffairs','3.90.168.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 19:24:12','2020-02-21 19:24:12'),(6777,'chemistry','34.226.190.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 20:12:12','2020-02-21 20:12:12'),(6778,'currentaffairs','18.234.246.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 21:02:21','2020-02-21 21:02:21'),(6779,'civiledu','54.162.109.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 23:30:06','2020-02-21 23:30:06'),(6780,'english','3.92.223.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:55:12','2020-02-22 03:55:12'),(6781,'chemistry','159.138.153.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:52','2020-02-22 03:58:52'),(6782,'chemistry','159.138.155.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:53','2020-02-22 03:58:53'),(6783,'englishlit','54.234.225.91',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 04:45:49','2020-02-22 04:45:49'),(6784,'accounting','3.81.14.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 06:32:53','2020-02-22 06:32:53'),(6785,'biology','3.85.195.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 08:05:36','2020-02-22 08:05:36'),(6786,'english','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:02','2020-02-22 12:38:03'),(6787,'commerce','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6788,'physics','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6789,'englishlit','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6790,'crk','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6791,'currentaffairs','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6792,'history','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:04'),(6793,'biology','3.88.4.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 21:11:38','2020-02-22 21:11:39'),(6794,'chemistry','35.173.57.84',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 00:53:28','2020-02-23 01:21:39'),(6795,'government','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:01:42','2020-02-23 13:01:42'),(6796,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6797,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6798,'commerce','54.196.170.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 14:07:46','2020-02-23 14:07:46'),(6799,'chemistry','54.36.150.158',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 15:20:46','2020-02-23 15:20:49'),(6800,'insurance','35.173.187.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 17:32:21','2020-02-23 17:32:21'),(6801,'crk','3.86.33.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 20:19:46','2020-02-23 20:19:46'),(6802,'english','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6803,'mathematics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6804,'commerce','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6805,'physics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6806,'government','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6807,'geography','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6808,'currentaffairs','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:05'),(6809,'chemistry','159.138.156.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 05:01:23','2020-02-24 05:01:23'),(6810,'mathematics','54.205.146.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 06:01:05','2020-02-24 06:01:05'),(6811,'geography','54.159.1.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 08:03:19','2020-02-24 08:03:19'),(6812,'economics','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 12:58:49','2020-02-24 12:58:49'),(6813,'geography','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 13:18:08','2020-02-24 13:18:08'),(6814,'english','3.81.236.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 15:33:14','2020-02-24 15:33:14'),(6815,'geography','54.210.217.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 17:00:33','2020-02-24 17:00:33'),(6816,'chemistry','105.112.55.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 19:06:53','2020-02-24 23:57:08'),(6817,'chemistry','34.227.17.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:20:04','2020-03-05 17:43:13'),(6818,'physics','34.227.17.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:52:30','2020-02-24 23:52:30'),(6819,'englishlit','54.92.166.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 02:36:43','2020-02-25 02:36:43'),(6820,'geography','35.175.234.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 03:33:37','2020-02-25 03:33:37'),(6821,'currentaffairs','52.87.168.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 06:07:47','2020-02-25 06:07:47'),(6822,'biology','18.233.100.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 09:34:43','2020-02-25 09:34:43'),(6823,'chemistry','157.55.39.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 11:42:40','2020-02-25 11:42:40'),(6824,'physics','66.249.80.52',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 15:14:29','2020-02-25 15:14:31'),(6825,'physics','107.23.131.74',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 18:59:40','2020-02-25 19:13:57'),(6826,'english','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6827,'mathematics','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6828,'commerce','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:57'),(6829,'biology','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6830,'currentaffairs','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6831,'history','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6832,'englishlit','35.170.185.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:56:19','2020-02-25 19:56:19'),(6833,'mathematics','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:37:16','2020-02-25 20:37:16'),(6834,'biology','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:57:18','2020-02-25 20:57:18'),(6835,'chemistry','185.26.180.143',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:07:17','2020-02-25 21:07:19'),(6836,'chemistry','192.95.16.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:56:59','2020-02-25 21:56:59'),(6837,'geography','3.92.190.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 23:13:07','2020-02-25 23:13:07'),(6838,'government','54.146.199.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 01:42:52','2020-02-26 01:42:52'),(6839,'mathematics','3.89.35.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 04:40:50','2020-02-26 04:40:50'),(6840,'history','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:21:37','2020-02-26 05:21:37'),(6841,'accounting','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:41:03','2020-02-26 05:41:03'),(6842,'biology','54.91.45.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 07:38:13','2020-02-26 07:38:13'),(6843,'chemistry','54.221.93.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:04:36','2020-02-26 09:15:23'),(6844,'chemistry','66.102.8.241',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6845,'chemistry','66.249.80.50',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6846,'chemistry','66.102.8.243',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-03-09 23:52:26'),(6847,'physics','66.249.88.65',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:22:54','2020-02-26 12:22:56'),(6848,'biology','54.235.235.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:50:49','2020-02-26 12:50:49'),(6849,'geography','54.161.25.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 17:04:18','2020-02-26 17:04:18'),(6850,'english','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6851,'mathematics','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6852,'biology','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6853,'chemistry','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6854,'government','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6855,'geography','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:01'),(6856,'irk','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:01','2020-02-27 04:05:01'),(6857,'accounting','54.197.40.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 05:01:31','2020-02-27 05:01:31'),(6858,'history','107.20.37.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 13:39:41','2020-02-27 13:39:41'),(6859,'chemistry','3.80.114.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 23:45:34','2020-02-27 23:45:34'),(6860,'english','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:45:04','2020-02-28 13:47:42'),(6861,'government','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:50:32','2020-02-28 13:52:07'),(6862,'commerce','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:54:04','2020-02-28 13:55:34'),(6863,'biology','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:57:38','2020-02-28 13:59:56'),(6864,'mathematics','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:59:07','2020-02-28 13:59:48'),(6865,'biology','52.204.53.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:24'),(6866,'biology','52.204.53.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:22'),(6867,'insurance','3.89.28.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 02:19:14','2020-02-29 02:19:14'),(6868,'economics','54.86.68.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 03:27:08','2020-02-29 03:27:08'),(6869,'accounting','18.207.149.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 06:17:21','2020-02-29 06:17:21'),(6870,'crk','54.224.249.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 07:18:55','2020-02-29 07:18:55'),(6871,'chemistry','49.70.183.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:00:47','2020-02-29 10:00:47'),(6872,'chemistry','34.226.148.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6873,'chemistry','34.226.148.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6874,'biology','54.234.130.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:39:43','2020-02-29 10:39:43'),(6875,'history','54.172.167.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 14:10:22','2020-02-29 14:10:22'),(6876,'chemistry','66.249.88.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:08','2020-02-29 15:50:09'),(6877,'chemistry','66.102.6.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:09','2020-02-29 15:50:09'),(6878,'irk','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:58:08','2020-02-29 15:58:08'),(6879,'chemistry','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:59:27','2020-02-29 15:59:27'),(6880,'history','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 19:55:14','2020-02-29 19:55:14'),(6881,'crk','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 20:06:10','2020-02-29 20:06:10'),(6882,'commerce','52.202.140.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 22:45:59','2020-02-29 22:45:59'),(6883,'chemistry','223.245.212.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 23:22:31','2020-02-29 23:22:31'),(6884,'biology','18.212.32.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 00:01:45','2020-03-01 00:01:45'),(6885,'accounting','52.23.172.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 01:53:29','2020-03-01 01:53:29'),(6886,'chemistry','1.203.150.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 02:14:54','2020-03-01 02:14:54'),(6887,'economics','54.156.62.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 06:18:07','2020-03-01 06:18:07'),(6888,'government','35.173.129.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 08:48:14','2020-03-01 08:48:14'),(6889,'chemistry','3.84.9.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 10:00:47','2020-03-01 10:00:47'),(6890,'geography','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 11:39:24','2020-03-01 11:39:24'),(6891,'government','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 12:03:05','2020-03-01 12:03:05'),(6892,'economics','18.209.9.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 16:36:07','2020-03-01 16:36:07'),(6893,'insurance','54.87.188.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 18:39:16','2020-03-01 18:39:16'),(6894,'englishlit','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:12:13','2020-03-01 23:12:13'),(6895,'english','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:29:26','2020-03-01 23:29:26'),(6896,'commerce','54.163.13.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 03:36:21','2020-03-02 03:36:21'),(6897,'crk','54.198.115.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 08:50:58','2020-03-02 08:50:58'),(6898,'crk','34.229.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 09:24:47','2020-03-02 09:24:47'),(6899,'chemistry','197.210.64.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 16:39:01','2020-03-02 16:39:01'),(6900,'english','105.112.55.216',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:24:46','2020-03-02 17:24:54'),(6901,'englishlit','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:46:18','2020-03-02 17:46:18'),(6902,'physics','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:59:07','2020-03-02 17:59:07'),(6903,'english','3.91.231.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 19:29:38','2020-03-02 19:29:38'),(6904,'currentaffairs','54.167.241.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 20:17:40','2020-03-02 20:17:40'),(6905,'chemistry','36.249.227.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:16:09','2020-03-02 21:16:09'),(6906,'chemistry','114.227.162.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:19:42','2020-03-02 21:19:42'),(6907,'englishlit','54.91.143.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 23:10:58','2020-03-02 23:10:58'),(6908,'englishlit','54.88.133.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 01:40:43','2020-03-03 01:40:43'),(6909,'government','34.228.244.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 05:09:18','2020-03-03 05:09:18'),(6910,'chemistry','141.8.188.144',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 08:07:45','2020-03-03 08:07:45'),(6911,'chemistry','82.145.220.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 09:48:31','2020-03-03 09:48:49'),(6912,'economics','3.80.28.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:11:56','2020-03-03 10:11:56'),(6913,'chemistry','82.145.209.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:36:44','2020-03-03 10:36:44'),(6914,'english','18.212.178.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:54:12','2020-03-03 10:54:12'),(6915,'chemistry','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:08:29','2020-03-03 12:08:29'),(6916,'biology','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:20:31','2020-03-03 12:20:31'),(6917,'chemistry','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:27','2020-03-03 13:36:27'),(6918,'mathematics','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:47','2020-03-03 13:36:47'),(6919,'english','52.87.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 17:00:16','2020-03-03 17:00:16'),(6920,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6921,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6922,'chemistry','40.77.167.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:37:26','2020-03-03 19:37:26'),(6923,'biology','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6924,'physics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6925,'geography','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6926,'economics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6927,'irk','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6928,'civiledu','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:58'),(6929,'currentaffairs','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:58','2020-03-03 20:05:58'),(6930,'biology','197.210.53.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:43:36','2020-03-03 20:43:38'),(6931,'physics','103.221.233.72',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 04:04:33','2020-03-04 04:25:46'),(6932,'english','105.112.182.249',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 10:31:20','2020-03-04 10:31:20'),(6933,'english','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:04:45','2020-03-04 11:04:45'),(6934,'accounting','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:05:53','2020-03-04 11:05:53'),(6935,'chemistry','197.210.53.87',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:39:34','2020-03-04 12:39:35'),(6936,'chemistry','197.210.52.235',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:04','2020-03-04 12:40:06'),(6937,'mathematics','197.210.53.94',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:07','2020-03-04 12:46:33'),(6938,'english','18.207.127.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 21:42:11','2020-03-04 21:42:11'),(6939,'chemistry','5.196.87.151',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 22:56:07','2020-04-02 22:19:08'),(6940,'englishlit','35.175.218.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 00:22:30','2020-03-05 00:22:30'),(6941,'commerce','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 02:31:37','2020-03-05 02:31:37'),(6942,'chemistry','54.89.222.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 04:03:59','2020-03-05 04:03:59'),(6943,'commerce','3.85.195.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 12:01:13','2020-03-05 12:01:13'),(6944,'crk','54.81.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 19:11:38','2020-03-05 19:11:38'),(6945,'mathematics','107.22.108.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 20:30:46','2020-03-05 20:30:46'),(6946,'english','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:08:59','2020-03-05 22:08:59'),(6947,'accounting','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6948,'biology','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6949,'chemistry','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6950,'irk','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6951,'insurance','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6952,'history','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6953,'geography','54.242.26.49',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 02:38:31','2020-03-06 02:55:09'),(6954,'biology','35.153.139.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 07:52:20','2020-03-06 07:52:20'),(6955,'geography','107.23.228.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 12:34:01','2020-03-06 12:34:01'),(6956,'currentaffairs','35.173.223.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 13:38:42','2020-03-06 13:38:42'),(6957,'chemistry','35.153.102.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 14:20:41','2020-03-06 14:20:41'),(6958,'biology','3.86.217.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 15:34:02','2020-03-06 15:34:02'),(6959,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6960,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6961,'chemistry','183.166.134.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:16:38','2020-03-06 21:16:38'),(6962,'chemistry','54.81.120.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:29:55','2020-03-06 21:29:55'),(6963,'mathematics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 23:47:39','2020-03-06 23:47:39'),(6964,'physics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 00:22:50','2020-03-07 00:22:50'),(6965,'mathematics','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 02:56:44','2020-03-07 02:56:44'),(6966,'physics','18.234.121.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 06:30:53','2020-03-07 06:30:53'),(6967,'chemistry','197.210.65.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:18:55','2020-03-07 08:18:55'),(6968,'chemistry','197.210.64.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:19:20','2020-03-07 08:19:20'),(6969,'chemistry','197.210.64.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:20:36','2020-03-07 08:20:36'),(6970,'english','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:01'),(6971,'accounting','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:02'),(6972,'geography','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6973,'irk','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6974,'civiledu','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6975,'insurance','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6976,'history','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6977,'english','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:35','2020-03-07 14:55:35'),(6978,'biology','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:36','2020-03-07 14:55:37'),(6979,'chemistry','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:37','2020-03-07 14:55:38'),(6980,'geography','52.90.45.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 15:21:48','2020-03-07 15:21:48'),(6981,'accounting','35.173.220.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 19:36:21','2020-03-07 19:36:21'),(6982,'commerce','5.186.127.79',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:16:03','2020-03-08 01:58:17'),(6983,'accounting','5.186.127.79',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:24:36','2020-03-08 01:52:42'),(6984,'biology','5.186.127.79',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 02:01:14','2020-03-08 02:01:15'),(6985,'englishlit','54.242.45.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 10:11:30','2020-03-08 10:11:30'),(6986,'chemistry','112.114.88.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:37:05','2020-03-08 13:37:05'),(6987,'history','54.174.12.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:54:38','2020-03-08 13:54:38'),(6988,'chemistry','54.173.164.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 16:27:27','2020-03-08 16:27:27'),(6989,'biology','52.90.68.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 17:35:15','2020-03-08 17:35:15'),(6990,'chemistry','114.119.164.166',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 18:08:08','2020-03-25 11:05:38'),(6991,'chemistry','60.185.69.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 20:52:07','2020-03-08 20:52:07'),(6992,'chemistry','197.210.227.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:17:20','2020-03-08 21:17:20'),(6993,'chemistry','197.210.226.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:18:58','2020-03-08 21:18:58'),(6994,'chemistry','197.210.226.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:19:11','2020-03-08 21:19:11'),(6995,'chemistry','114.119.160.43',3,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:20','2020-06-23 16:54:17'),(6996,'chemistry','161.151.254.43',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:41','2020-03-08 22:39:44'),(6997,'chemistry','161.151.254.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:41:32','2020-03-08 22:41:35'),(6998,'insurance','18.234.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 04:42:23','2020-03-09 04:42:23'),(6999,'chemistry','114.119.161.43',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 05:05:47','2020-04-06 00:24:10'),(7000,'economics','3.208.8.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 06:44:35','2020-03-09 06:44:35'),(7001,'chemistry','114.119.166.156',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 08:22:53','2020-03-10 01:02:52'),(7002,'history','54.175.112.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 09:37:37','2020-03-09 09:37:37'),(7003,'history','197.210.53.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:45:49','2020-03-09 12:45:50'),(7004,'chemistry','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:00','2020-03-09 12:56:20'),(7005,'history','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:03','2020-03-09 12:56:24'),(7006,'mathematics','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:04','2020-03-09 12:56:26'),(7007,'chemistry','197.210.53.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:59:22','2020-03-09 12:59:22'),(7008,'english','197.210.53.133',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:06:27','2020-03-09 13:06:27'),(7009,'accounting','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:29:10','2020-03-09 13:29:10'),(7010,'history','3.93.0.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 14:25:16','2020-03-09 14:25:16'),(7011,'crk','3.84.223.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 22:45:44','2020-03-09 22:45:44'),(7012,'chemistry','67.86.217.149',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:10:20','2020-04-07 19:16:09'),(7013,'chemistry','108.41.239.178',421,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:11:34','2020-04-13 13:17:04'),(7014,'commerce','3.84.214.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 01:51:20','2020-03-10 01:51:20'),(7015,'chemistry','197.210.70.26',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 04:06:56','2020-03-10 04:07:00'),(7016,'chemistry','197.210.70.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:17','2020-03-10 05:19:17'),(7017,'mathematics','197.210.70.216',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:26','2020-03-10 05:19:26'),(7018,'mathematics','197.210.71.234',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:08','2020-03-10 05:20:08'),(7019,'mathematics','197.210.70.250',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:21','2020-03-10 05:20:21'),(7020,'chemistry','197.210.70.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:35','2020-03-10 05:20:35'),(7021,'mathematics','197.210.71.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:53','2020-03-10 05:20:53'),(7022,'mathematics','197.210.70.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:52:55','2020-03-10 05:52:55'),(7023,'chemistry','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:05','2020-03-10 05:55:05'),(7024,'mathematics','197.210.70.182',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:15','2020-03-10 05:55:16'),(7025,'mathematics','197.210.174.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:58','2020-03-10 05:55:59'),(7026,'mathematics','108.41.239.178',367,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:06','2020-04-12 16:31:22'),(7027,'biology','197.210.70.40',46,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:35','2020-03-10 05:57:24'),(7028,'biology','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:55','2020-03-10 05:56:56'),(7029,'biology','197.210.70.170',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:58:15','2020-03-10 05:58:18'),(7030,'accounting','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:15:57','2020-03-10 06:15:57'),(7031,'crk','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:24:17','2020-03-10 06:24:17'),(7032,'chemistry','197.211.61.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 07:49:41','2020-03-10 07:49:41'),(7033,'chemistry','114.119.167.13',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 08:49:55','2020-03-31 11:06:57'),(7034,'economics','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:06:10','2020-03-10 09:06:10'),(7035,'irk','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:16:37','2020-03-10 09:16:37'),(7036,'chemistry','34.205.63.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 10:16:06','2020-03-10 10:16:06'),(7037,'government','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:04:13','2020-03-10 12:04:13'),(7038,'chemistry','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:21:49','2020-03-10 12:21:49'),(7039,'biology','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:06:43','2020-03-10 14:06:43'),(7040,'geography','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:12:24','2020-03-10 14:12:24'),(7041,'history','3.95.217.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 15:16:08','2020-03-10 15:16:08'),(7042,'commerce','18.212.139.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 16:38:48','2020-03-10 16:38:48'),(7043,'english','197.210.45.11',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:10:47','2020-03-10 17:41:19'),(7044,'geography','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:50','2020-03-10 17:41:20'),(7045,'mathematics','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:51','2020-03-10 17:41:21'),(7046,'economics','174.129.129.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:44:51','2020-03-10 17:44:51'),(7047,'government','54.234.46.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 19:25:59','2020-03-10 19:25:59'),(7048,'chemistry','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:21:32','2020-03-10 20:21:32'),(7049,'insurance','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:37:32','2020-03-10 20:37:32'),(7050,'chemistry','66.249.83.200',73,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-03-19 07:35:53'),(7051,'chemistry','66.249.83.204',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-04-26 10:46:35'),(7052,'englishlit','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:31:52','2020-03-11 02:31:52'),(7053,'english','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:42:48','2020-03-11 02:42:48'),(7054,'chemistry','116.31.102.8',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:21:00','2020-03-11 05:21:30'),(7055,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7056,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7057,'crk','35.174.12.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 10:23:39','2020-03-11 10:43:26'),(7058,'chemistry','52.90.116.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 11:19:41','2020-03-11 11:19:41'),(7059,'english','197.210.65.20',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:49','2020-03-11 13:34:49'),(7060,'biology','197.210.47.25',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:52','2020-03-11 13:34:52'),(7061,'chemistry','197.210.64.50',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:53','2020-03-11 13:34:54'),(7062,'mathematics','197.210.64.137',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:55','2020-03-11 13:34:56'),(7063,'chemistry','157.55.39.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:47:42','2020-03-11 14:47:42'),(7064,'chemistry','41.190.30.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:53:34','2020-03-11 14:53:35'),(7065,'english','54.221.96.198',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 15:42:57','2020-03-11 15:43:28'),(7066,'chemistry','197.211.61.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 16:33:36','2020-03-11 16:33:36'),(7067,'english','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:58:34','2020-03-11 18:58:34'),(7068,'englishlit','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:59:49','2020-03-11 18:59:49'),(7069,'physics','54.196.100.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:38:57','2020-03-11 19:38:57'),(7070,'chemistry','54.196.100.247',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:59:42','2020-03-11 19:59:42'),(7071,'english','3.82.116.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 20:42:05','2020-03-11 20:42:05'),(7072,'currentaffairs','54.211.73.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 21:57:05','2020-03-11 21:57:05'),(7073,'englishlit','54.234.241.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 01:46:19','2020-03-12 02:20:47'),(7074,'chemistry','54.167.99.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 05:23:04','2020-03-12 05:23:04'),(7075,'government','54.226.177.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:03:06','2020-03-12 06:03:06'),(7076,'economics','3.88.159.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:56:58','2020-03-12 06:56:58'),(7077,'mathematics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7078,'commerce','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7079,'english','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7080,'physics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:38'),(7081,'biology','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7082,'crk','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7083,'englishlit','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7084,'geography','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7085,'government','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7086,'insurance','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7087,'history','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7088,'currentaffairs','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:39','2020-03-12 07:43:39'),(7089,'chemistry','54.90.183.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 08:12:53','2020-03-12 08:12:53'),(7090,'english','3.83.156.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 10:27:53','2020-03-12 10:27:53'),(7091,'crk','3.89.215.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:13:49','2020-03-12 11:13:49'),(7092,'chemistry','3.90.255.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:50:26','2020-03-12 11:50:27'),(7093,'english','197.210.44.229',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 13:37:55','2020-03-12 13:37:55'),(7094,'mathematics','197.210.29.214',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:31:12','2020-03-12 15:31:12'),(7095,'chemistry','197.210.29.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:35:28','2020-03-12 15:36:34'),(7096,'chemistry','197.210.61.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:09','2020-03-12 15:38:09'),(7097,'chemistry','172.58.236.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:33','2020-03-12 15:41:06'),(7098,'biology','197.210.70.44',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 16:21:26','2020-03-12 16:21:28'),(7099,'biology','197.210.226.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:14:12','2020-03-12 17:14:14'),(7100,'biology','3.92.167.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:33:54','2020-03-12 17:33:54'),(7101,'chemistry','54.174.77.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 18:08:05','2020-03-12 18:08:05'),(7102,'english','129.205.113.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 20:47:35','2020-03-12 20:47:35'),(7103,'crk','52.90.72.30',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 00:32:24','2020-03-13 00:32:24'),(7104,'currentaffairs','52.91.74.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 03:07:06','2020-03-13 03:07:06'),(7105,'chemistry','66.249.88.54',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 04:13:43','2020-03-13 22:03:51'),(7106,'biology','54.226.184.43',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:52:03','2020-03-13 09:52:04'),(7107,'english','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:56:39','2020-03-13 09:56:39'),(7108,'accounting','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:58:08','2020-03-13 09:58:08'),(7109,'chemistry','3.92.56.188',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7110,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7111,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7112,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7113,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7114,'chemistry','54.242.59.9',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 16:39:40','2020-03-13 16:39:41'),(7115,'chemistry','207.46.13.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 20:02:53','2020-03-13 20:02:53'),(7116,'chemistry','54.146.129.212',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7117,'chemistry','54.146.129.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7118,'chemistry','66.249.83.202',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 22:03:49','2020-03-13 22:03:51'),(7119,'biology','54.152.253.226',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 02:58:06','2020-03-14 02:58:06'),(7120,'mathematics','66.249.83.200',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 08:36:31','2020-03-14 08:36:33'),(7121,'english','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7122,'mathematics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7123,'chemistry','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:35'),(7124,'economics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:35','2020-03-14 10:43:36'),(7125,'civiledu','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:36','2020-03-14 10:43:36'),(7126,'insurance','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7127,'currentaffairs','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7128,'commerce','34.239.245.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:45:23','2020-03-14 10:45:23'),(7129,'chemistry','3.90.43.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 13:49:52','2020-03-14 13:49:52'),(7130,'crk','54.161.109.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 14:49:17','2020-03-14 14:49:17'),(7131,'english','52.91.100.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:07:53','2020-03-14 18:07:53'),(7132,'chemistry','86.121.62.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:41:03','2020-03-14 18:41:03'),(7133,'chemistry','3.87.81.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:54:06','2020-03-14 18:54:06'),(7134,'chemistry','5.255.250.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:21:06','2020-03-14 19:21:06'),(7135,'chemistry','105.112.38.232',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:05','2020-03-15 06:16:13'),(7136,'mathematics','105.112.38.232',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:50','2020-03-14 19:55:10'),(7137,'chemistry','54.146.242.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:53:47','2020-03-14 19:53:51'),(7138,'mathematics','54.145.20.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 20:35:13','2020-03-14 20:35:13'),(7139,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7140,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7141,'chemistry','18.209.61.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:43:11','2020-03-14 22:43:11'),(7142,'biology','14.199.220.107',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:46:33','2020-03-14 22:46:34'),(7143,'economics','3.82.205.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:07:15','2020-03-15 01:07:15'),(7144,'chemistry','66.249.64.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:41:19','2020-03-15 01:41:22'),(7145,'geography','18.209.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 02:28:10','2020-03-15 02:28:10'),(7146,'geography','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:36:57','2020-03-15 03:36:57'),(7147,'biology','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:42:39','2020-03-15 03:42:39'),(7148,'mathematics','105.112.38.221',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 07:08:04','2020-03-15 07:08:05'),(7149,'physics','54.209.184.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 10:35:32','2020-03-15 10:35:32'),(7150,'chemistry','61.177.20.67',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:07:25','2020-03-15 11:08:03'),(7151,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7152,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7153,'englishlit','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:00:27','2020-03-15 13:00:27'),(7154,'geography','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:12:58','2020-03-15 13:12:58'),(7155,'chemistry','66.249.80.40',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:13:16','2020-03-15 13:13:18'),(7156,'currentaffairs','54.157.45.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:17:59','2020-03-15 14:17:59'),(7157,'chemistry','114.119.165.83',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:58:19','2020-04-09 07:14:34'),(7158,'mathematics','197.210.70.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 15:43:48','2020-03-15 15:43:56'),(7159,'biology','3.80.249.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 16:18:19','2020-03-15 16:18:19'),(7160,'chemistry','40.77.167.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 17:54:45','2020-03-15 17:54:45'),(7161,'chemistry','54.234.65.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:02:01','2020-03-15 19:02:01'),(7162,'chemistry','192.3.183.226',69,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:05:22','2020-03-16 02:10:39'),(7163,'physics','54.175.61.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:07:09','2020-03-15 23:07:09'),(7164,'mathematics','54.152.128.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:41:27','2020-03-15 23:41:27'),(7165,'chemistry','5.255.250.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 01:11:48','2020-03-16 01:11:48'),(7166,'geography','100.27.28.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 02:48:46','2020-03-16 02:48:46'),(7167,'government','18.204.205.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 03:52:44','2020-03-16 03:52:44'),(7168,'mathematics','52.87.174.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 04:36:55','2020-03-16 04:36:55'),(7169,'history','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:37:41','2020-03-16 06:37:41'),(7170,'biology','34.230.5.124',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:40'),(7171,'biology','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:39'),(7172,'crk','35.173.183.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:03:46','2020-03-16 09:03:46'),(7173,'chemistry','66.249.88.55',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:48:48','2020-03-16 09:48:49'),(7174,'geography','54.226.6.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 14:13:41','2020-03-16 14:13:41'),(7175,'mathematics','105.112.153.142',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:02:32','2020-03-16 17:02:47'),(7176,'physics','105.112.153.142',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:03:09','2020-03-16 17:03:10'),(7177,'english','105.112.153.142',480,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:04:23','2020-03-16 20:08:50'),(7178,'accounting','54.144.114.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 21:09:52','2020-03-16 21:09:52'),(7179,'history','54.152.71.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 07:17:16','2020-03-17 07:17:16'),(7180,'english','41.86.149.34',280,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 09:42:41','2020-03-17 12:11:29'),(7181,'english','105.112.22.72',440,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 15:51:33','2020-03-17 16:19:25'),(7182,'chemistry','105.112.22.72',323,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 16:24:18','2020-03-17 17:11:03'),(7183,'physics','105.112.22.72',164,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 17:05:04','2020-03-17 17:28:30'),(7184,'mathematics','105.112.22.72',149,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:14:51','2020-03-17 17:38:27'),(7185,'government','105.112.22.72',276,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:40:56','2020-03-17 17:50:13'),(7186,'englishlit','105.112.47.130',334,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:54:27','2020-03-17 18:14:37'),(7187,'government','105.112.47.130',22,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:56:02','2020-03-17 17:56:03'),(7188,'crk','105.112.47.130',543,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:16:10','2020-03-17 18:30:39'),(7189,'english','105.112.47.130',40,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:18:33','2020-03-17 18:18:35'),(7190,'accounting','105.112.47.130',158,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:35:02','2020-03-17 18:37:47'),(7191,'chemistry','34.227.17.84',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:52:23','2020-03-17 18:52:23'),(7192,'chemistry','144.76.67.169',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 00:01:13','2020-03-18 00:01:58'),(7193,'chemistry','54.36.149.77',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:03:44','2020-03-18 05:03:44'),(7194,'economics','52.201.123.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:33:29','2020-03-18 05:33:29'),(7195,'history','3.93.187.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 11:38:00','2020-03-18 11:38:00'),(7196,'english','129.205.113.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:00:34','2020-03-18 20:00:34'),(7197,'chemistry','66.249.88.56',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:39:56','2020-03-18 20:39:58'),(7198,'irk','54.90.235.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:56:56','2020-03-18 20:56:56'),(7199,'chemistry','54.36.150.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 21:24:26','2020-03-18 21:24:26'),(7200,'crk','18.232.99.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 23:57:52','2020-03-18 23:57:52'),(7201,'commerce','3.88.101.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 01:46:16','2020-03-19 01:46:16'),(7202,'accounting','3.81.2.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 05:42:19','2020-03-19 05:42:19'),(7203,'chemistry','66.102.8.229',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 07:35:52','2020-03-19 07:35:54'),(7204,'economics','18.209.171.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 08:15:35','2020-03-19 08:15:35'),(7205,'chemistry','3.87.142.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 11:32:20','2020-03-19 11:32:20'),(7206,'government','54.172.25.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 12:12:58','2020-03-19 12:12:58'),(7207,'economics','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:31:06','2020-03-19 14:31:06'),(7208,'commerce','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:35:27','2020-03-19 14:35:27'),(7209,'geography','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:55:22','2020-03-19 14:55:22'),(7210,'government','54.242.179.61',1,'Nigeria','NG','LA','Lagos','Lagos','','6.4531','3.3958','2020-03-19 20:38:35','2020-03-19 20:38:35'),(7211,'chemistry','18.207.197.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 21:48:48','2020-03-19 21:48:48'),(7212,'english','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:32:19','2020-03-20 00:32:19'),(7213,'englishlit','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:50:34','2020-03-20 00:50:34'),(7214,'chemistry','114.119.165.169',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 01:18:55','2020-04-05 03:27:02'),(7215,'accounting','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7216,'biology','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7217,'chemistry','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7218,'crk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7219,'geography','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:26'),(7220,'irk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7221,'civiledu','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7222,'crk','3.93.49.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 08:22:17','2020-03-20 08:22:17'),(7223,'chemistry','197.210.71.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 09:39:01','2020-03-20 09:39:01'),(7224,'chemistry','117.63.134.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:39:07','2020-03-20 14:39:07'),(7225,'chemistry','41.190.2.160',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:55:17','2020-03-20 14:55:40'),(7226,'physics','18.234.143.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 16:22:33','2020-03-20 16:22:33'),(7227,'currentaffairs','3.88.171.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 18:44:05','2020-03-20 18:44:05'),(7228,'englishlit','3.80.210.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 19:58:26','2020-03-20 19:58:26'),(7229,'crk','54.234.191.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 22:13:05','2020-03-20 22:13:05'),(7230,'englishlit','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:13:40','2020-03-21 00:13:40'),(7231,'economics','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:45:11','2020-03-21 00:45:11'),(7232,'government','54.81.79.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:06:58','2020-03-21 02:06:58'),(7233,'chemistry','36.49.27.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:48:44','2020-03-21 02:48:44'),(7234,'irk','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:15:05','2020-03-21 04:15:05'),(7235,'english','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:39:38','2020-03-21 04:39:38'),(7236,'englishlit','41.80.20.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 05:52:43','2020-03-21 05:53:35'),(7237,'chemistry','154.113.86.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 08:44:48','2020-03-21 08:44:48'),(7238,'chemistry','54.36.150.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 10:28:05','2020-03-21 10:28:05'),(7239,'chemistry','42.49.170.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 12:22:18','2020-03-21 12:22:18'),(7240,'english','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:55','2020-03-21 13:16:56'),(7241,'commerce','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:56','2020-03-21 13:16:58'),(7242,'physics','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:59','2020-03-21 13:18:04'),(7243,'englishlit','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:00','2020-03-21 13:17:01'),(7244,'insurance','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:01','2020-03-21 13:18:05'),(7245,'currentaffairs','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:18:05'),(7246,'history','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:17:03'),(7247,'accounting','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:03','2020-03-21 13:18:04'),(7248,'government','18.234.135.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:16'),(7249,'economics','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7250,'civiledu','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7251,'chemistry','102.89.3.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 14:16:11','2020-03-21 14:16:11'),(7252,'accounting','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:30:53','2020-03-22 03:30:53'),(7253,'englishlit','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:32:36','2020-03-22 03:32:36'),(7254,'chemistry','116.248.186.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 12:56:38','2020-03-22 12:56:38'),(7255,'accounting','105.112.52.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 15:00:00','2020-03-22 15:00:02'),(7256,'commerce','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7257,'physics','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7258,'englishlit','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7259,'government','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7260,'crk','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7261,'insurance','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7262,'history','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7263,'chemistry','59.63.75.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 17:32:33','2020-03-22 17:32:34'),(7264,'mathematics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7265,'biology','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7266,'physics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7267,'chemistry','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7268,'geography','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7269,'irk','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7270,'currentaffairs','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:33'),(7271,'commerce','3.89.66.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 23:32:36','2020-03-22 23:32:36'),(7272,'chemistry','77.88.5.109',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 01:02:57','2020-05-28 06:27:27'),(7273,'crk','52.90.48.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 04:30:54','2020-03-23 04:30:54'),(7274,'biology','3.92.24.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 08:53:22','2020-03-23 08:53:22'),(7275,'mathematics','54.165.10.238',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 10:35:39','2020-03-23 10:35:39'),(7276,'economics','54.164.64.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 13:08:24','2020-03-23 13:08:24'),(7277,'geography','18.209.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 14:04:53','2020-03-23 14:04:53'),(7278,'geography','3.89.20.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 15:04:00','2020-03-23 15:04:00'),(7279,'englishlit','54.210.71.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:16:17','2020-03-23 23:16:17'),(7280,'geography','54.91.123.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:54:39','2020-03-23 23:54:39'),(7281,'currentaffairs','18.234.156.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 01:21:49','2020-03-24 01:21:49'),(7282,'physics','18.215.170.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 02:05:13','2020-03-24 02:05:13'),(7283,'english','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7284,'mathematics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7285,'physics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7286,'irk','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7287,'civiledu','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7288,'insurance','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7289,'currentaffairs','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7290,'physics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 07:37:59','2020-03-24 07:37:59'),(7291,'mathematics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 08:09:12','2020-03-24 08:09:12'),(7292,'mathematics','100.24.26.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 14:18:48','2020-03-24 14:18:48'),(7293,'accounting','52.87.217.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 04:37:55','2020-03-25 04:37:55'),(7294,'chemistry','114.119.160.245',41,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-25 10:25:16','2020-06-23 19:50:56'),(7295,'history','52.23.203.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 12:19:56','2020-03-25 12:19:56'),(7296,'chemistry','154.118.9.188',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 14:09:50','2020-03-25 14:09:50'),(7297,'commerce','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7298,'chemistry','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7299,'englishlit','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7300,'crk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:53'),(7301,'geography','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7302,'irk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7303,'insurance','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7304,'biology','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7305,'physics','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7306,'chemistry','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7307,'crk','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:20'),(7308,'geography','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7309,'civiledu','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7310,'currentaffairs','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7311,'english','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7312,'commerce','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7313,'biology','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7314,'government','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7315,'geography','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7316,'civiledu','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7317,'currentaffairs','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7318,'history','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 08:23:17','2020-03-26 08:23:17'),(7319,'economics','3.84.167.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:17:04','2020-03-26 09:17:04'),(7320,'english','197.211.61.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:24:43','2020-03-26 09:24:43'),(7321,'biology','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:33:58','2020-03-26 11:33:59'),(7322,'chemistry','102.89.3.190',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:00','2020-03-26 11:34:00'),(7323,'commerce','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:01','2020-03-26 11:34:01'),(7324,'crk','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:22','2020-03-26 12:14:19'),(7325,'commerce','102.89.3.190',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:23','2020-03-26 12:11:33'),(7326,'crk','102.89.3.190',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:08','2020-03-26 12:08:09'),(7327,'commerce','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:09','2020-03-26 12:14:21'),(7328,'crk','102.89.3.126',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:11:32','2020-03-26 12:11:32'),(7329,'crk','102.89.2.115',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:21:27','2020-03-26 12:22:22'),(7330,'crk','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:44','2020-03-26 12:22:45'),(7331,'commerce','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:46','2020-03-26 12:22:46'),(7332,'crk','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:40','2020-03-26 12:23:40'),(7333,'commerce','197.210.84.177',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:41','2020-03-26 12:23:42'),(7334,'crk','197.210.84.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:11','2020-03-26 12:24:12'),(7335,'commerce','197.210.84.39',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:12','2020-03-26 12:24:13'),(7336,'crk','197.210.84.227',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:09','2020-03-26 12:29:09'),(7337,'commerce','197.210.84.119',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:10','2020-03-26 12:29:10'),(7338,'crk','197.210.84.207',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:03','2020-03-26 12:32:04'),(7339,'commerce','197.210.84.125',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:05','2020-03-26 12:32:06'),(7340,'crk','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:21','2020-03-26 12:36:21'),(7341,'commerce','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:22','2020-03-26 12:36:22'),(7342,'crk','197.210.84.31',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:30','2020-03-26 12:36:30'),(7343,'commerce','197.210.84.245',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:31','2020-03-26 12:36:32'),(7344,'crk','197.210.84.165',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:47','2020-03-26 12:37:47'),(7345,'commerce','197.210.84.17',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:48','2020-03-26 12:37:48'),(7346,'crk','197.210.85.81',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:57','2020-03-26 12:37:57'),(7347,'commerce','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:58','2020-03-26 12:37:58'),(7348,'crk','197.210.84.67',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:00','2020-03-26 12:44:00'),(7349,'commerce','197.210.84.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:01','2020-03-26 12:44:01'),(7350,'english','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:13','2020-03-26 13:09:04'),(7351,'mathematics','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:14','2020-03-26 13:09:05'),(7352,'english','197.210.85.140',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:15','2020-03-26 14:03:15'),(7353,'mathematics','197.210.85.254',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:16','2020-03-26 14:03:17'),(7354,'english','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:01','2020-03-26 14:10:37'),(7355,'mathematics','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:03','2020-03-26 14:10:38'),(7356,'irk','3.94.121.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:26:17','2020-03-26 19:26:17'),(7357,'chemistry','114.119.161.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:45:34','2020-03-26 19:45:34'),(7358,'crk','174.129.131.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 22:50:44','2020-03-26 22:50:44'),(7359,'commerce','3.91.233.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 01:48:15','2020-03-27 01:48:15'),(7360,'accounting','54.208.155.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 05:24:26','2020-03-27 05:24:26'),(7361,'economics','52.91.100.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:22:14','2020-03-27 09:22:14'),(7362,'chemistry','66.102.8.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:51:49','2020-03-27 09:51:51'),(7363,'government','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 10:43:15','2020-03-27 10:43:15'),(7364,'chemistry','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:21:50','2020-03-27 11:21:50'),(7365,'english','102.89.0.135',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:47','2020-03-27 11:36:38'),(7366,'mathematics','102.89.1.184',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:48','2020-04-27 18:37:31'),(7367,'mathematics','102.89.1.114',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:33:55','2020-03-27 11:33:55'),(7368,'mathematics','102.89.0.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:36:39','2020-03-27 11:36:39'),(7369,'geography','54.209.201.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 13:36:58','2020-03-27 13:36:58'),(7370,'commerce','54.162.99.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 14:52:49','2020-03-27 14:52:49'),(7371,'economics','34.227.72.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 17:36:43','2020-03-27 17:36:43'),(7372,'crk','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 19:48:01','2020-03-27 19:48:01'),(7373,'insurance','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 20:10:12','2020-03-27 20:10:12'),(7374,'mathematics','18.212.220.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 22:19:25','2020-03-27 22:19:25'),(7375,'englishlit','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:27:23','2020-03-27 23:27:23'),(7376,'english','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:38:18','2020-03-27 23:38:18'),(7377,'crk','54.91.106.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 02:52:57','2020-03-28 02:52:57'),(7378,'english','54.204.180.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 04:14:13','2020-03-28 04:14:13'),(7379,'accounting','105.112.31.78',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:01:29','2020-03-28 06:01:32'),(7380,'chemistry','105.112.31.78',218,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 06:16:34','2020-03-28 10:26:50'),(7381,'mathematics','105.112.31.78',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:21:28','2020-03-28 06:21:37'),(7382,'crk','105.112.31.78',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:24:50','2020-03-28 06:24:54'),(7383,'crk','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:58:54','2020-03-28 06:58:57'),(7384,'mathematics','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:59:17','2020-03-28 06:59:19'),(7385,'biology','3.81.58.70',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:00:16','2020-03-28 07:28:03'),(7386,'biology','18.212.96.129',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:28:19','2020-03-28 07:29:29'),(7387,'chemistry','18.212.96.129',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 07:29:37','2020-03-28 07:46:04'),(7388,'mathematics','18.212.96.129',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:30:36','2020-03-28 07:30:39'),(7389,'chemistry','54.196.165.71',160,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:19:31','2020-03-28 08:21:56'),(7390,'crk','3.82.235.188',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:53:24','2020-03-28 08:53:24'),(7391,'chemistry','157.55.39.86',7,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 09:13:40','2020-03-28 09:13:40'),(7392,'physics','54.145.168.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 14:48:56','2020-03-28 14:48:56'),(7393,'english','35.172.185.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 17:23:34','2020-03-28 17:23:34'),(7394,'currentaffairs','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 18:18:16','2020-03-28 18:18:16'),(7395,'englishlit','54.84.20.113',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 18:46:01','2020-03-28 18:46:01'),(7396,'crk','34.207.92.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 20:17:19','2020-03-28 20:17:19'),(7397,'englishlit','54.227.76.74',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 22:38:07','2020-03-28 22:38:07'),(7398,'chemistry','100.26.102.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 23:45:57','2020-03-28 23:45:57'),(7399,'english','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:26:48','2020-03-29 01:26:48'),(7400,'government','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:48:28','2020-03-29 01:48:28'),(7401,'currentaffairs','54.166.138.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 02:46:57','2020-03-29 02:46:57'),(7402,'economics','54.224.84.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 03:48:49','2020-03-29 03:48:49'),(7403,'chemistry','3.235.65.91',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 05:20:26','2020-03-29 05:44:48'),(7404,'english','54.174.190.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 10:18:53','2020-03-29 10:18:53'),(7405,'civiledu','54.172.166.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:13:13','2020-03-29 11:13:13'),(7406,'chemistry','54.174.40.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:55:39','2020-03-29 11:55:39'),(7407,'chemistry','180.103.58.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:00:01','2020-03-29 12:00:01'),(7408,'chemistry','82.145.220.58',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:01:04','2020-03-29 12:01:05'),(7409,'mathematics','54.92.219.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:42:18','2020-03-29 12:42:18'),(7410,'mathematics','18.206.91.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 13:35:15','2020-03-29 13:35:15'),(7411,'chemistry','58.255.198.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 14:37:51','2020-03-29 14:37:51'),(7412,'chemistry','111.160.25.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 17:47:36','2020-03-29 17:47:36'),(7413,'chemistry','18.206.237.17',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 18:38:42','2020-03-29 18:38:45'),(7414,'currentaffairs','54.163.120.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 19:48:21','2020-03-29 19:48:21'),(7415,'chemistry','54.145.49.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 21:49:35','2020-03-29 21:49:35'),(7416,'englishlit','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:05:16','2020-03-30 01:05:16'),(7417,'accounting','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:33:36','2020-03-30 01:33:36'),(7418,'commerce','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7419,'accounting','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7420,'physics','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7421,'geography','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7422,'civiledu','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7423,'currentaffairs','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7424,'history','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7425,'mathematics','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:50:17','2020-03-31 05:50:17'),(7426,'commerce','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:51:26','2020-03-31 05:51:26'),(7427,'geography','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 07:58:39','2020-03-31 10:19:30'),(7428,'biology','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:01:26','2020-03-31 09:22:41'),(7429,'currentaffairs','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:27:55','2020-03-31 09:50:10'),(7430,'government','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:46:16','2020-03-31 10:11:00'),(7431,'civiledu','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:00:56','2020-03-31 09:10:50'),(7432,'english','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:08:10','2020-03-31 10:09:09'),(7433,'mathematics','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7434,'commerce','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 10:07:16'),(7435,'chemistry','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7436,'crk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7437,'irk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7438,'englishlit','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 16:48:59','2020-03-31 16:48:59'),(7439,'physics','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 17:25:08','2020-03-31 17:25:08'),(7440,'geography','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 18:36:35','2020-03-31 18:36:35'),(7441,'currentaffairs','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 19:04:20','2020-03-31 19:04:20'),(7442,'currentaffairs','54.224.172.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 21:22:54','2020-03-31 21:22:54'),(7443,'chemistry','197.210.84.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:38','2020-03-31 22:04:43'),(7444,'chemistry','197.210.84.199',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:50','2020-03-31 22:04:55'),(7445,'chemistry','197.210.84.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:05:03','2020-03-31 22:05:05'),(7446,'physics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:04:01','2020-04-01 02:04:01'),(7447,'mathematics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:10:56','2020-04-01 02:10:56'),(7448,'mathematics','3.80.85.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 04:50:44','2020-04-01 04:50:44'),(7449,'mathematics','18.212.146.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 06:03:05','2020-04-01 06:03:05'),(7450,'chemistry','114.119.163.81',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 09:42:15','2020-04-01 09:42:15'),(7451,'chemistry','197.211.57.245',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 12:50:39','2020-04-01 12:52:16'),(7452,'english','34.230.39.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 16:42:36','2020-04-01 16:42:36'),(7453,'mathematics','18.234.121.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 19:01:10','2020-04-01 19:01:10'),(7454,'accounting','54.147.176.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 20:49:28','2020-04-01 20:49:28'),(7455,'biology','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:56','2020-04-01 21:17:56'),(7456,'physics','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7457,'government','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7458,'geography','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7459,'economics','54.147.176.88',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-22 05:41:24'),(7460,'civiledu','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7461,'insurance','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7462,'chemistry','54.36.148.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 00:49:26','2020-04-02 00:49:29'),(7463,'history','54.236.10.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 03:47:55','2020-04-02 03:47:55'),(7464,'chemistry','197.210.70.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 20:57:50','2020-04-02 20:57:52'),(7465,'economics','34.229.174.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 01:39:45','2020-04-03 01:39:45'),(7466,'history','3.81.12.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 02:51:48','2020-04-03 02:51:48'),(7467,'government','102.89.1.199',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 11:46:35','2020-04-03 11:46:36'),(7468,'commerce','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7469,'accounting','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7470,'crk','54.224.177.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:53:40'),(7471,'economics','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7472,'civiledu','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7473,'currentaffairs','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7474,'history','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7475,'physics','54.227.76.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 18:36:02','2020-04-03 18:36:02'),(7476,'english','3.85.190.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 21:48:32','2020-04-03 21:48:32'),(7477,'commerce','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 23:42:41','2020-04-03 23:42:41'),(7478,'economics','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 00:01:21','2020-04-04 00:01:21'),(7479,'chemistry','207.46.13.220',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 01:45:34','2020-04-04 10:12:07'),(7480,'government','54.209.223.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 02:40:53','2020-04-04 02:40:53'),(7481,'geography','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:46:07','2020-04-04 03:46:07'),(7482,'chemistry','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:56:04','2020-04-04 03:56:04'),(7483,'government','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 04:24:02','2020-04-04 04:24:02'),(7484,'economics','54.87.134.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:29:31','2020-04-04 08:29:31'),(7485,'mathematics','105.112.56.96',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:37:54','2020-04-04 08:42:05'),(7486,'english','197.210.71.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:22:13','2020-04-04 10:22:13'),(7487,'chemistry','197.211.61.123',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:43:13','2020-04-04 10:46:06'),(7488,'physics','197.211.61.123',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:46:42','2020-04-04 10:46:42'),(7489,'english','197.211.61.123',726,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:11','2020-04-04 12:22:56'),(7490,'commerce','3.80.214.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:21','2020-04-04 10:47:21'),(7491,'english','197.211.61.125',406,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-04 12:41:24','2020-04-04 13:00:00'),(7492,'chemistry','197.211.61.125',10,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:00:38','2020-04-04 13:13:18'),(7493,'insurance','3.86.32.0',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:22:34','2020-04-04 13:22:34'),(7494,'englishlit','52.23.172.123',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:17:24','2020-04-04 14:17:24'),(7495,'chemistry','157.55.39.42',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:48:38','2020-04-04 14:48:38'),(7496,'chemistry','66.249.64.104',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:18:30','2020-04-04 17:18:31'),(7497,'english','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:20:12','2020-04-04 17:20:12'),(7498,'crk','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:30:11','2020-04-04 17:30:11'),(7499,'crk','54.163.215.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 22:41:54','2020-04-04 22:41:54'),(7500,'physics','52.91.100.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 04:23:04','2020-04-05 04:23:04'),(7501,'biology','3.81.133.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 05:11:31','2020-04-05 05:11:31'),(7502,'englishlit','54.89.124.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 06:31:33','2020-04-05 06:31:33'),(7503,'chemistry','197.210.71.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:23:44','2020-04-05 08:23:44'),(7504,'chemistry','197.210.71.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:35','2020-04-05 08:28:01'),(7505,'chemistry','197.210.71.175',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:53','2020-04-05 08:29:40'),(7506,'chemistry','197.210.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:28:36','2020-04-05 08:28:36'),(7507,'english','197.210.71.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:32:51','2020-04-05 08:32:53'),(7508,'english','197.210.174.172',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:34:34','2020-04-05 08:34:37'),(7509,'currentaffairs','3.87.91.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 09:08:45','2020-04-05 09:08:45'),(7510,'crk','18.206.247.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:11:56','2020-04-05 10:11:56'),(7511,'englishlit','3.208.20.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:55:11','2020-04-05 10:55:11'),(7512,'chemistry','66.249.88.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 11:30:48','2020-04-05 11:30:50'),(7513,'economics','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:16:19','2020-04-05 12:16:19'),(7514,'government','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:53:23','2020-04-05 12:53:23'),(7515,'english','34.233.133.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 13:47:53','2020-04-05 13:47:53'),(7516,'mathematics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7517,'commerce','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7518,'biology','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7519,'physics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7520,'chemistry','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7521,'englishlit','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:26'),(7522,'history','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:26','2020-04-06 12:14:26'),(7523,'accounting','54.152.156.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:19:13','2020-04-06 12:19:13'),(7524,'accounting','3.80.94.111',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 15:07:41','2020-04-06 15:07:41'),(7525,'chemistry','105.112.115.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 22:20:42','2020-04-06 22:20:42'),(7526,'commerce','34.227.162.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 06:35:37','2020-04-07 06:35:37'),(7527,'crk','107.23.255.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 08:35:49','2020-04-07 08:35:49'),(7528,'physics','18.212.66.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 09:45:19','2020-04-07 09:45:19'),(7529,'mathematics','34.236.143.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 13:42:20','2020-04-07 13:42:20'),(7530,'chemistry','64.233.172.196',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 14:19:21','2020-04-07 14:19:22'),(7531,'chemistry','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:06','2020-04-07 16:55:06'),(7532,'chemistry','197.210.53.20',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:14','2020-04-07 16:55:14'),(7533,'chemistry','197.210.52.112',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:33','2020-04-07 16:55:33'),(7534,'geography','3.95.225.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 17:53:36','2020-04-07 17:53:36'),(7535,'chemistry','197.210.52.88',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:07:14','2020-04-07 19:19:19'),(7536,'chemistry','197.210.53.6',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:32:43','2020-04-07 18:39:36'),(7537,'chemistry','197.210.52.36',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:34:00','2020-04-07 18:43:49'),(7538,'chemistry','197.210.53.99',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:05','2020-04-07 19:17:34'),(7539,'chemistry','197.210.52.22',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:27','2020-04-07 18:48:54'),(7540,'english','197.210.53.99',695,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:56'),(7541,'english','197.210.53.6',765,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:31'),(7542,'english','197.210.53.65',848,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:28:00'),(7543,'english','197.210.52.12',917,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:55'),(7544,'english','197.210.52.88',795,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:55'),(7545,'english','197.210.52.36',477,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:58'),(7546,'geography','18.205.107.57',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 20:02:08','2020-04-07 20:02:08'),(7547,'english','108.41.239.178',1802,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-12 16:31:21'),(7548,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7549,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7550,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7551,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7552,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7553,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7554,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7555,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7556,'irk','108.41.239.178',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:01','2020-04-12 16:31:20'),(7557,'civiledu','108.41.239.178',626,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7558,'insurance','108.41.239.178',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:23'),(7559,'currentaffairs','108.41.239.178',429,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7560,'physics','54.156.62.219',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 00:38:52','2020-04-08 00:38:52'),(7561,'englishlit','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:17:24','2020-04-08 01:17:24'),(7562,'geography','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:43:32','2020-04-08 01:43:32'),(7563,'currentaffairs','3.94.134.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 03:38:40','2020-04-08 03:38:40'),(7564,'chemistry','77.88.5.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-08 04:45:23','2020-04-08 04:45:23'),(7565,'english','18.206.175.184',3,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:05'),(7566,'chemistry','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7567,'government','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7568,'geography','18.206.175.184',2,'','NG','','Lagos',NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7569,'irk','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7570,'civiledu','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7571,'currentaffairs','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7572,'mathematics','3.95.38.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 10:05:10','2020-04-08 10:05:10'),(7573,'geography','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 11:58:50','2020-04-08 11:58:50'),(7574,'physics','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 12:09:29','2020-04-08 12:09:29'),(7575,'mathematics','34.230.69.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 13:57:51','2020-04-08 13:57:51'),(7576,'accounting','54.152.166.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 03:29:44','2020-04-09 03:29:44'),(7577,'chemistry','34.203.216.217',233,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 06:33:24','2020-04-09 06:37:01'),(7578,'chemistry','197.210.70.115',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 11:54:08','2020-04-09 16:40:18'),(7579,'chemistry','197.210.71.11',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:31','2020-04-09 17:27:14'),(7580,'chemistry','197.210.70.183',287,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:58','2020-04-09 17:20:35'),(7581,'english','197.210.70.109',813,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:40:07'),(7582,'english','197.210.70.69',465,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:38:21'),(7583,'english','197.210.70.149',469,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:25:34'),(7584,'english','197.210.70.211',792,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:31'),(7585,'english','197.210.70.81',624,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7586,'english','197.210.70.183',315,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:35'),(7587,'english','197.210.70.205',600,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7588,'english','197.210.71.235',595,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:17'),(7589,'english','197.210.70.27',674,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:52'),(7590,'english','197.210.70.15',552,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:44'),(7591,'english','197.210.71.79',478,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:33'),(7592,'english','197.210.70.251',820,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:20:15'),(7593,'english','197.210.70.95',701,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:25:00'),(7594,'english','197.210.70.115',676,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:47','2020-04-09 17:26:31'),(7595,'english','197.210.70.225',620,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:48','2020-04-09 17:26:34'),(7596,'english','197.210.70.53',679,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:33'),(7597,'english','197.210.70.239',623,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:24:53'),(7598,'english','197.210.70.217',663,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:30'),(7599,'english','197.210.70.1',515,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:51','2020-04-09 17:24:27'),(7600,'english','197.210.70.137',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:52','2020-04-09 17:25:32'),(7601,'english','197.210.71.11',588,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:58','2020-04-09 17:19:49'),(7602,'english','197.210.70.41',639,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:59','2020-04-09 17:25:34'),(7603,'english','197.210.70.121',555,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:00','2020-04-09 17:25:35'),(7604,'english','197.210.70.189',462,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:01','2020-04-09 17:25:35'),(7605,'english','197.210.70.171',473,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:04','2020-04-09 17:26:34'),(7606,'english','197.210.71.167',510,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:14','2020-04-09 17:24:21'),(7607,'chemistry','197.210.70.109',327,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:42','2020-04-09 17:24:47'),(7608,'mathematics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:35'),(7609,'mathematics','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:28'),(7610,'mathematics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:18:51'),(7611,'mathematics','197.210.70.171',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:24:24'),(7612,'mathematics','197.210.71.167',520,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:25:25'),(7613,'mathematics','197.210.70.69',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:19:18'),(7614,'mathematics','197.210.70.115',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:18:11'),(7615,'mathematics','197.210.70.149',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:51'),(7616,'mathematics','197.210.70.137',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:38'),(7617,'mathematics','197.210.70.95',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:35'),(7618,'mathematics','197.210.70.121',360,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:39'),(7619,'mathematics','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:07'),(7620,'accounting','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:37'),(7621,'accounting','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:18:19'),(7622,'commerce','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:19:14'),(7623,'commerce','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:51'),(7624,'commerce','197.210.70.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 15:19:39'),(7625,'commerce','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:33'),(7626,'accounting','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:18'),(7627,'accounting','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:43'),(7628,'commerce','197.210.71.11',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:44'),(7629,'accounting','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:27:00'),(7630,'commerce','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:26:47'),(7631,'commerce','197.210.71.79',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:24:23'),(7632,'biology','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:20:25'),(7633,'commerce','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:17'),(7634,'mathematics','197.210.70.15',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:30'),(7635,'biology','197.210.71.11',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:40','2020-04-09 17:26:43'),(7636,'biology','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:20:31'),(7637,'biology','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:26:10'),(7638,'commerce','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:56'),(7639,'accounting','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:27:03'),(7640,'biology','197.210.70.41',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:55'),(7641,'biology','197.210.70.251',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:26:55'),(7642,'accounting','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:25:57'),(7643,'biology','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:26:42'),(7644,'physics','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:19:26'),(7645,'biology','197.210.71.167',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:25:49'),(7646,'physics','197.210.70.95',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:26:56'),(7647,'physics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:59'),(7648,'englishlit','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:11'),(7649,'physics','197.210.70.81',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:26:59'),(7650,'physics','197.210.70.239',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:19:05'),(7651,'physics','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:50'),(7652,'biology','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:20:21'),(7653,'englishlit','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:12'),(7654,'physics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:18:58'),(7655,'chemistry','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:51','2020-04-09 16:40:16'),(7656,'chemistry','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:18:32'),(7657,'physics','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:26:02'),(7658,'chemistry','197.210.71.167',480,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:53','2020-04-09 17:27:14'),(7659,'englishlit','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:54','2020-04-09 17:18:22'),(7660,'englishlit','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:55','2020-04-09 17:26:25'),(7661,'englishlit','197.210.70.121',357,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:56','2020-04-09 17:26:21'),(7662,'government','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:17'),(7663,'chemistry','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:09'),(7664,'government','197.210.70.27',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:27'),(7665,'englishlit','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:18:20'),(7666,'chemistry','197.210.70.225',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:07'),(7667,'government','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:20:42'),(7668,'chemistry','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:19:30'),(7669,'chemistry','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:24:47'),(7670,'crk','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:59','2020-04-09 17:24:54'),(7671,'government','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:26:18'),(7672,'crk','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:25:01'),(7673,'government','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 15:51:08'),(7674,'englishlit','197.210.70.81',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:01','2020-04-09 17:26:17'),(7675,'crk','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:03','2020-04-09 17:27:20'),(7676,'geography','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:04','2020-04-09 17:27:21'),(7677,'geography','197.210.70.27',278,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:19:43'),(7678,'crk','197.210.70.81',237,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:20:43'),(7679,'government','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:08','2020-04-09 17:27:30'),(7680,'geography','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:25'),(7681,'government','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:27:17'),(7682,'crk','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:37'),(7683,'government','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:27:27'),(7684,'crk','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:25:07'),(7685,'geography','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:19:46'),(7686,'economics','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:20:58'),(7687,'economics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:26:24'),(7688,'geography','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:25:03'),(7689,'government','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:20:43'),(7690,'crk','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 16:39:57'),(7691,'crk','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 17:20:43'),(7692,'geography','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:26:23'),(7693,'economics','197.210.71.79',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:20:49'),(7694,'crk','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:27:27'),(7695,'geography','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:15','2020-04-09 17:27:29'),(7696,'economics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:17','2020-04-09 17:27:42'),(7697,'economics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:18','2020-04-09 17:25:03'),(7698,'irk','197.210.70.15',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:19:50'),(7699,'economics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:26:12'),(7700,'economics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:27:42'),(7701,'irk','197.210.71.167',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:20','2020-04-09 17:20:47'),(7702,'civiledu','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:43'),(7703,'irk','197.210.70.53',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:25:11'),(7704,'economics','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:32'),(7705,'irk','197.210.70.41',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:18:38'),(7706,'currentaffairs','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:23','2020-04-09 17:25:07'),(7707,'irk','197.210.70.81',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:25:14'),(7708,'civiledu','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:19:55'),(7709,'insurance','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:20:58'),(7710,'currentaffairs','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:21:02'),(7711,'insurance','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:27:50'),(7712,'currentaffairs','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:21:07'),(7713,'civiledu','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 16:40:24'),(7714,'currentaffairs','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:28','2020-04-09 16:40:39'),(7715,'civiledu','197.210.70.27',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:27:51'),(7716,'history','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:21:10'),(7717,'currentaffairs','197.210.71.11',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:20:06'),(7718,'civiledu','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:27:39'),(7719,'currentaffairs','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 17:20:11'),(7720,'insurance','197.210.70.205',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 15:22:09'),(7721,'insurance','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 16:34:20'),(7722,'insurance','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:33','2020-04-09 17:27:51'),(7723,'civiledu','197.210.70.95',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:27:39'),(7724,'irk','197.210.71.11',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:25:10'),(7725,'civiledu','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 16:29:46'),(7726,'insurance','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:27:52'),(7727,'civiledu','197.210.70.211',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:20:55'),(7728,'irk','197.210.70.69',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:18:39'),(7729,'currentaffairs','197.210.70.53',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:20:06'),(7730,'civiledu','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:47'),(7731,'currentaffairs','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:48'),(7732,'currentaffairs','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:48'),(7733,'history','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:28:00'),(7734,'history','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:55'),(7735,'economics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:42'),(7736,'irk','197.210.70.217',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:20:51'),(7737,'insurance','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:40','2020-04-09 17:19:57'),(7738,'insurance','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:18:43'),(7739,'insurance','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 16:40:38'),(7740,'history','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:21:10'),(7741,'history','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:20:11'),(7742,'history','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 16:40:37'),(7743,'history','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 17:21:05'),(7744,'history','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:28:01'),(7745,'history','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:27:54'),(7746,'mathematics','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:22'),(7747,'commerce','197.210.70.41',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:24'),(7748,'commerce','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:38'),(7749,'biology','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:27:10'),(7750,'mathematics','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:47'),(7751,'commerce','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:24:39'),(7752,'commerce','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:59','2020-04-09 17:26:44'),(7753,'mathematics','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:25:39'),(7754,'accounting','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:24:41'),(7755,'commerce','197.210.70.53',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:04','2020-04-09 17:24:17'),(7756,'mathematics','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:05','2020-04-09 17:25:37'),(7757,'accounting','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:06','2020-04-09 17:19:01'),(7758,'biology','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:26:47'),(7759,'biology','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:18:58'),(7760,'commerce','197.210.70.109',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:19:01'),(7761,'commerce','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:20:12'),(7762,'accounting','197.210.70.171',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:11','2020-04-09 17:26:47'),(7763,'accounting','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:12','2020-04-09 17:26:40'),(7764,'mathematics','197.210.70.189',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:26:31'),(7765,'englishlit','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:27:13'),(7766,'accounting','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:25:40'),(7767,'accounting','197.210.70.53',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:20:21'),(7768,'biology','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:56'),(7769,'commerce','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:39'),(7770,'accounting','197.210.71.235',319,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:19:25'),(7771,'physics','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:25:59'),(7772,'chemistry','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:19','2020-04-09 17:26:05'),(7773,'accounting','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:26:47'),(7774,'physics','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:19:23'),(7775,'government','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:22','2020-04-09 17:24:50'),(7776,'englishlit','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:24','2020-04-09 17:26:21'),(7777,'physics','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:25','2020-04-09 16:31:21'),(7778,'englishlit','197.210.70.211',398,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 17:27:22'),(7779,'biology','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 16:39:44'),(7780,'government','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 16:40:23'),(7781,'chemistry','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 17:26:09'),(7782,'irk','197.210.71.235',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:29','2020-04-09 17:25:52'),(7783,'englishlit','197.210.70.205',438,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:30','2020-04-09 17:27:13'),(7784,'irk','197.210.70.27',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:19:47'),(7785,'civiledu','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:26:16'),(7786,'civiledu','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 16:34:11'),(7787,'government','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 17:26:23'),(7788,'crk','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:17'),(7789,'civiledu','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:38'),(7790,'geography','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:25:05'),(7791,'government','197.210.70.189',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:27:08'),(7792,'government','197.210.71.79',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:24:48'),(7793,'history','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:36','2020-04-09 16:40:38'),(7794,'currentaffairs','197.210.70.69',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:38','2020-04-09 16:32:06'),(7795,'civiledu','197.210.70.189',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:39','2020-04-09 17:21:04'),(7796,'geography','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:41','2020-04-09 17:27:25'),(7797,'chemistry','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:26:14'),(7798,'irk','197.210.70.239',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:19:59'),(7799,'government','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:24:54'),(7800,'civiledu','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:43','2020-04-09 17:26:17'),(7801,'crk','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:24:50'),(7802,'geography','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:27:23'),(7803,'economics','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:18:37'),(7804,'currentaffairs','197.210.70.225',437,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:21:06'),(7805,'physics','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:59'),(7806,'physics','197.210.70.137',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:55'),(7807,'economics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:47','2020-04-09 17:25:08'),(7808,'crk','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:20:52'),(7809,'geography','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:27:37'),(7810,'irk','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:49','2020-04-09 17:20:45'),(7811,'currentaffairs','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:21:03'),(7812,'government','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:27:14'),(7813,'biology','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:24:31'),(7814,'currentaffairs','197.210.70.121',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:53','2020-04-09 17:27:52'),(7815,'irk','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:34'),(7816,'crk','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:29'),(7817,'economics','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 17:20:58'),(7818,'history','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 16:32:01'),(7819,'crk','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:59','2020-04-09 17:25:00'),(7820,'englishlit','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:24:53'),(7821,'irk','197.210.70.171',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:27:35'),(7822,'crk','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:38:38'),(7823,'history','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:42'),(7824,'insurance','197.210.70.95',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:19:56'),(7825,'geography','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:09'),(7826,'crk','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:33:56'),(7827,'irk','197.210.70.189',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:27:33'),(7828,'insurance','197.210.70.251',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:25:11'),(7829,'civiledu','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:07','2020-04-09 17:20:56'),(7830,'insurance','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 16:34:15'),(7831,'irk','197.210.70.149',176,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 17:27:41'),(7832,'currentaffairs','197.210.70.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 16:40:42'),(7833,'economics','197.210.70.121',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 17:25:07'),(7834,'commerce','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:50'),(7835,'commerce','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:41'),(7836,'crk','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:20:44'),(7837,'chemistry','197.210.70.251',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:05'),(7838,'mathematics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:19:13'),(7839,'englishlit','197.210.71.235',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:07'),(7840,'commerce','197.210.70.137',236,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:26:31'),(7841,'commerce','197.210.71.167',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:24:23'),(7842,'biology','197.210.70.137',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:26:06'),(7843,'mathematics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:20:20'),(7844,'accounting','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:25:53'),(7845,'biology','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:46','2020-04-09 17:26:11'),(7846,'accounting','197.210.70.239',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:26:54'),(7847,'government','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:27:08'),(7848,'physics','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:48','2020-04-09 17:26:05'),(7849,'physics','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:24:29'),(7850,'physics','197.210.71.167',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:19:22'),(7851,'englishlit','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:26:09'),(7852,'physics','197.210.70.149',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:50','2020-04-09 17:26:08'),(7853,'chemistry','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:27:13'),(7854,'geography','197.210.70.137',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:25:02'),(7855,'geography','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:20:50'),(7856,'geography','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:25:06'),(7857,'accounting','197.210.71.11',119,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:20:26'),(7858,'physics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:19:05'),(7859,'chemistry','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:18:26'),(7860,'crk','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 16:39:56'),(7861,'geography','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:25:18'),(7862,'government','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:24:59'),(7863,'economics','197.210.70.217',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:27:25'),(7864,'government','197.210.70.239',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:27:11'),(7865,'economics','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:26:31'),(7866,'irk','197.210.70.1',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:19:46'),(7867,'insurance','197.210.70.225',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 16:40:29'),(7868,'irk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:20:55'),(7869,'economics','197.210.70.183',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:27:43'),(7870,'civiledu','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:58','2020-04-09 17:27:43'),(7871,'currentaffairs','197.210.70.149',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 17:21:04'),(7872,'civiledu','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 16:31:55'),(7873,'history','197.210.70.81',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 16:30:00'),(7874,'civiledu','197.210.70.41',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:27:44'),(7875,'currentaffairs','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:28:03'),(7876,'insurance','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:20:03'),(7877,'economics','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:19:53'),(7878,'irk','197.210.70.95',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:19:52'),(7879,'currentaffairs','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:03'),(7880,'currentaffairs','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:10'),(7881,'history','197.210.70.121',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 16:29:54'),(7882,'insurance','197.210.70.239',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 16:40:27'),(7883,'irk','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 17:27:47'),(7884,'biology','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:19:01'),(7885,'commerce','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:25:59'),(7886,'englishlit','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:56','2020-04-09 16:33:35'),(7887,'physics','197.210.70.115',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:57','2020-04-09 17:26:57'),(7888,'englishlit','197.210.70.53',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:26:09'),(7889,'crk','197.210.70.211',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:14'),(7890,'geography','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:27'),(7891,'crk','197.210.70.27',317,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:27:27'),(7892,'physics','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:20:31'),(7893,'chemistry','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:18:23'),(7894,'biology','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:20:24'),(7895,'economics','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 15:51:41'),(7896,'englishlit','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:27:12'),(7897,'accounting','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:20:23'),(7898,'commerce','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:26:40'),(7899,'chemistry','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:19:34'),(7900,'irk','197.210.70.115',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:27:38'),(7901,'physics','197.210.70.183',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:25:59'),(7902,'accounting','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:00'),(7903,'economics','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:45'),(7904,'government','197.210.70.205',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:04','2020-04-09 17:26:07'),(7905,'crk','197.210.70.225',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 17:27:17'),(7906,'geography','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:40:36'),(7907,'geography','197.210.70.251',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:38:42'),(7908,'insurance','197.210.70.121',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:27:49'),(7909,'englishlit','197.210.70.137',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:26:15'),(7910,'chemistry','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:20:41'),(7911,'economics','197.210.70.109',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 16:40:33'),(7912,'mathematics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 17:26:43'),(7913,'insurance','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 16:40:42'),(7914,'economics','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:27:31'),(7915,'englishlit','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:24:55'),(7916,'irk','197.210.70.109',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:18:37'),(7917,'mathematics','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:25:46'),(7918,'mathematics','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:43'),(7919,'commerce','197.210.70.95',222,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:45'),(7920,'accounting','197.210.70.115',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:21','2020-04-09 17:19:09'),(7921,'biology','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:27:04'),(7922,'commerce','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:26:35'),(7923,'physics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:23','2020-04-09 17:26:48'),(7924,'physics','197.210.70.225',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:24','2020-04-09 17:26:55'),(7925,'irk','197.210.70.137',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:25','2020-04-09 17:27:41'),(7926,'chemistry','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:26','2020-04-09 17:19:10'),(7927,'englishlit','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:24:44'),(7928,'irk','197.210.70.225',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 16:19:11'),(7929,'government','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:26:12'),(7930,'crk','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:28','2020-04-09 17:24:46'),(7931,'englishlit','197.210.70.217',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:24:57'),(7932,'civiledu','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:19:55'),(7933,'government','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:42'),(7934,'englishlit','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:54'),(7935,'civiledu','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:31','2020-04-09 17:18:40'),(7936,'englishlit','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:27:09'),(7937,'geography','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 16:31:42'),(7938,'government','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:25:00'),(7939,'currentaffairs','197.210.70.189',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:33','2020-04-09 17:28:02'),(7940,'insurance','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:34','2020-04-09 17:25:10'),(7941,'insurance','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:27:49'),(7942,'civiledu','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:25'),(7943,'crk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:23'),(7944,'currentaffairs','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:13'),(7945,'geography','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:04'),(7946,'mathematics','197.210.70.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:16','2020-04-09 17:19:16'),(7947,'crk','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:23','2020-04-09 17:27:26'),(7948,'biology','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:25','2020-04-09 17:24:31'),(7949,'chemistry','197.210.70.41',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:26','2020-04-09 17:19:28'),(7950,'physics','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:29','2020-04-09 17:24:35'),(7951,'accounting','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:30','2020-04-09 17:26:46'),(7952,'englishlit','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:33','2020-04-09 17:27:10'),(7953,'englishlit','197.210.70.27',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:34','2020-04-09 17:24:45'),(7954,'geography','197.210.70.189',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:37','2020-04-09 17:25:02'),(7955,'crk','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:41','2020-04-09 17:27:28'),(7956,'economics','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:42','2020-04-09 17:20:52'),(7957,'geography','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:46','2020-04-09 17:27:26'),(7958,'civiledu','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:47','2020-04-09 17:26:19'),(7959,'insurance','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:27:47'),(7960,'insurance','197.210.71.235',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:19:59'),(7961,'currentaffairs','197.210.71.235',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:50','2020-04-09 17:25:28'),(7962,'history','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:05'),(7963,'history','197.210.70.189',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:03'),(7964,'civiledu','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:55','2020-04-09 17:27:40'),(7965,'insurance','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:56','2020-04-09 17:27:32'),(7966,'currentaffairs','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:57','2020-04-09 17:25:24'),(7967,'currentaffairs','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:58','2020-04-09 17:20:07'),(7968,'mathematics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:20:18'),(7969,'biology','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:19:04'),(7970,'physics','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:18','2020-04-09 17:20:28'),(7971,'biology','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:32','2020-04-09 17:26:52'),(7972,'chemistry','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:52','2020-04-09 17:26:57'),(7973,'chemistry','197.210.70.211',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:54','2020-04-09 17:20:38'),(7974,'irk','197.210.71.79',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:04','2020-04-09 17:20:50'),(7975,'civiledu','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:18','2020-04-09 17:21:29'),(7976,'insurance','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:20','2020-04-09 17:18:43'),(7977,'insurance','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:23','2020-04-09 17:27:58'),(7978,'currentaffairs','197.210.70.81',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:28','2020-04-09 17:27:55'),(7979,'currentaffairs','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:31','2020-04-09 17:27:56'),(7980,'government','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:34','2020-04-09 17:24:55'),(7981,'government','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 17:27:26'),(7982,'history','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 16:40:41'),(7983,'accounting','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:38','2020-04-09 17:20:26'),(7984,'history','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:39','2020-04-09 17:20:15'),(7985,'accounting','197.210.70.27',233,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:40','2020-04-09 17:19:23'),(7986,'history','197.210.70.95',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:41','2020-04-09 16:19:47'),(7987,'economics','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:27:56','2020-04-09 17:27:35'),(7988,'chemistry','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:01','2020-04-09 17:27:09'),(7989,'mathematics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:14','2020-04-09 17:25:47'),(7990,'accounting','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:34','2020-04-09 17:20:17'),(7991,'biology','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:35','2020-04-09 17:26:04'),(7992,'biology','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:36','2020-04-09 17:24:26'),(7993,'englishlit','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:45','2020-04-09 17:20:33'),(7994,'chemistry','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:54','2020-04-09 17:19:28'),(7995,'economics','197.210.70.211',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:12','2020-04-09 17:26:24'),(7996,'geography','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:15','2020-04-09 17:27:26'),(7997,'geography','197.210.70.239',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:20','2020-04-09 17:27:32'),(7998,'civiledu','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:28','2020-04-09 17:20:03'),(7999,'government','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:22','2020-04-09 17:27:20'),(8000,'irk','197.210.70.211',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:38','2020-04-09 17:26:26'),(8001,'insurance','197.210.70.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:20:02'),(8002,'history','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:08'),(8003,'history','197.210.70.217',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:07'),(8004,'history','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:47','2020-04-09 17:20:12'),(8005,'history','197.210.70.211',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:52','2020-04-09 17:21:12'),(8006,'history','197.210.70.205',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:55','2020-04-09 17:21:06'),(8007,'commerce','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:09','2020-04-09 17:20:20'),(8008,'physics','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:11','2020-04-09 17:20:37'),(8009,'civiledu','197.210.70.149',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:49','2020-04-09 17:21:00'),(8010,'economics','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:52','2020-04-09 17:20:57'),(8011,'currentaffairs','197.210.70.183',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:09','2020-04-09 17:27:59'),(8012,'history','197.210.70.137',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:13','2020-04-09 16:34:24'),(8013,'crk','197.210.70.137',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:38:31','2020-04-09 17:19:42'),(8014,'accounting','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:39:37','2020-04-09 17:26:43'),(8015,'biology','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:12','2020-04-09 17:27:01'),(8016,'geography','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:28','2020-04-09 17:20:54'),(8017,'insurance','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:33','2020-04-09 17:21:00'),(8018,'economics','197.210.70.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 17:20:44','2020-04-09 17:20:50'),(8019,'civiledu','18.232.76.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:01:19','2020-04-10 02:01:19'),(8020,'economics','3.88.169.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:51:46','2020-04-10 02:51:46'),(8021,'history','3.82.157.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 05:11:10','2020-04-10 05:11:10'),(8022,'mathematics','54.196.241.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 06:19:44','2020-04-10 06:19:44'),(8023,'history','3.88.70.16',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:01:55','2020-04-10 15:25:17'),(8024,'commerce','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8025,'physics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8026,'chemistry','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8027,'englishlit','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:14'),(8028,'crk','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8029,'irk','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:16'),(8030,'currentaffairs','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:17'),(8031,'english','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:14','2020-04-10 15:25:14'),(8032,'geography','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:15','2020-04-10 15:25:15'),(8033,'economics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:16','2020-04-10 15:25:16'),(8034,'commerce','54.89.208.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 17:29:46','2020-04-10 17:29:46'),(8035,'chemistry','197.210.8.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 18:23:00','2020-04-10 18:23:00'),(8036,'crk','35.173.248.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 19:52:55','2020-04-10 19:52:55'),(8037,'chemistry','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:34','2020-04-10 22:44:37'),(8038,'englishlit','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8039,'government','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8040,'geography','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8041,'economics','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8042,'civiledu','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8043,'insurance','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:38','2020-04-10 22:44:38'),(8044,'economics','52.55.93.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 23:42:01','2020-04-10 23:42:01'),(8045,'government','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:41:11','2020-04-11 01:41:11'),(8046,'chemistry','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:45:12','2020-04-11 01:45:12'),(8047,'geography','35.175.184.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 02:56:41','2020-04-11 02:56:41'),(8048,'government','34.224.58.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 04:37:27','2020-04-11 04:37:27'),(8049,'chemistry','116.88.133.110',51,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-11 05:33:06','2020-04-19 15:27:03'),(8050,'economics','3.90.47.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 05:55:15','2020-04-11 05:55:15'),(8051,'english','3.82.203.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 07:21:01','2020-04-11 07:21:01'),(8052,'biology','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8053,'government','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8054,'irk','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:09'),(8055,'civiledu','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:09'),(8056,'insurance','3.80.112.97',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:22:11'),(8057,'currentaffairs','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:10'),(8058,'history','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:10','2020-04-11 08:18:10'),(8059,'crk','54.83.85.175',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:06:53','2020-04-11 12:07:40'),(8060,'englishlit','34.229.42.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:50:10','2020-04-11 12:50:10'),(8061,'english','3.85.102.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 14:35:24','2020-04-11 14:35:24'),(8062,'crk','52.203.28.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 15:29:45','2020-04-11 15:29:45'),(8063,'crk','3.81.73.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 18:10:31','2020-04-11 18:10:31'),(8064,'commerce','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8065,'accounting','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8066,'physics','54.175.255.15',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 02:11:02'),(8067,'englishlit','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:20'),(8068,'government','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8069,'irk','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8070,'currentaffairs','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8071,'english','54.175.255.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 02:31:32','2020-04-12 02:31:32'),(8072,'currentaffairs','18.206.125.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 08:03:24','2020-04-12 08:03:24'),(8073,'mathematics','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8074,'mathematics','197.210.53.31',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:17'),(8075,'english','197.210.53.138',219,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 17:58:35'),(8076,'commerce','197.210.53.223',76,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:19'),(8077,'mathematics','197.210.53.138',290,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:36'),(8078,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8079,'english','197.210.53.31',62,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8080,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8081,'mathematics','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:31:54'),(8082,'mathematics','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8083,'english','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8084,'commerce','197.210.53.138',259,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:40'),(8085,'english','197.210.53.232',75,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:52'),(8086,'english','197.210.53.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8087,'commerce','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8088,'accounting','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8089,'currentaffairs','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:40'),(8090,'history','197.210.53.232',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8091,'civiledu','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8092,'history','197.210.53.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8093,'history','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8094,'currentaffairs','197.210.52.179',142,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8095,'civiledu','197.210.52.179',163,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8096,'history','197.210.52.170',110,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8097,'history','197.210.52.179',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:43'),(8098,'accounting','197.210.53.138',234,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-30 18:08:11'),(8099,'insurance','197.210.52.170',143,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:42'),(8100,'accounting','197.210.53.232',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:31:01'),(8101,'commerce','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:18','2020-04-12 13:30:55'),(8102,'biology','197.210.53.138',185,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:21','2020-04-30 17:57:35'),(8103,'physics','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:23'),(8104,'physics','197.210.53.138',234,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:49'),(8105,'mathematics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:52'),(8106,'accounting','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:52'),(8107,'biology','197.210.53.223',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:49'),(8108,'biology','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:24'),(8109,'physics','197.210.53.223',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:53'),(8110,'physics','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8111,'government','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8112,'englishlit','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:30'),(8113,'englishlit','197.210.53.138',160,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:15'),(8114,'physics','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8115,'englishlit','197.210.53.232',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:32'),(8116,'chemistry','197.210.53.138',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:53'),(8117,'government','197.210.53.138',182,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:57:07'),(8118,'chemistry','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:33'),(8119,'biology','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8120,'chemistry','197.210.53.232',111,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:25','2020-04-12 13:19:31'),(8121,'englishlit','197.210.52.170',122,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:30'),(8122,'chemistry','197.210.53.223',75,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:31'),(8123,'government','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:30'),(8124,'government','197.210.53.223',77,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:32'),(8125,'crk','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:30'),(8126,'government','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:30:56'),(8127,'crk','197.210.53.223',109,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:34'),(8128,'crk','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:35'),(8129,'geography','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:33'),(8130,'economics','197.210.53.138',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 17:58:26'),(8131,'geography','197.210.53.138',179,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 18:08:29'),(8132,'economics','197.210.53.223',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-12 13:19:39'),(8133,'crk','197.210.53.138',296,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-30 18:13:36'),(8134,'geography','197.210.53.31',71,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:32','2020-04-12 13:19:36'),(8135,'irk','197.210.53.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:36'),(8136,'irk','197.210.52.179',98,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:38'),(8137,'irk','197.210.52.170',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:30:47'),(8138,'economics','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:41'),(8139,'geography','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8140,'economics','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:37'),(8141,'irk','197.210.53.31',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8142,'economics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:41'),(8143,'civiledu','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:39'),(8144,'irk','197.210.53.223',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:37'),(8145,'civiledu','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:31:53'),(8146,'insurance','197.210.53.31',130,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:40'),(8147,'currentaffairs','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:31:54'),(8148,'currentaffairs','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:19:39'),(8149,'insurance','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:37','2020-04-12 13:19:40'),(8150,'currentaffairs','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:39','2020-04-12 13:19:42'),(8151,'crk','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:47','2020-04-12 13:30:50'),(8152,'commerce','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:53','2020-04-12 13:31:38'),(8153,'englishlit','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:58','2020-04-12 13:31:01'),(8154,'chemistry','197.210.52.106',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 16:15:11','2020-04-12 16:15:17'),(8155,'chemistry','105.112.50.114',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:16:45','2020-04-12 16:22:27'),(8156,'accounting','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8157,'crk','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8158,'history','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8159,'government','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8160,'commerce','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8161,'geography','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8162,'physics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8163,'biology','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8164,'englishlit','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8165,'economics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8166,'biology','34.224.87.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 03:38:22','2020-04-13 03:38:22'),(8167,'accounting','54.162.182.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 07:00:45','2020-04-13 07:00:45'),(8168,'chemistry','154.118.48.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 08:54:43','2020-04-13 08:54:59'),(8169,'chemistry','41.217.88.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 09:03:00','2020-04-13 09:03:00'),(8170,'chemistry','54.36.149.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:40:53','2020-04-13 23:40:53'),(8171,'chemistry','54.36.148.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:51:04','2020-04-13 23:51:04'),(8172,'chemistry','54.36.148.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:59:53','2020-04-13 23:59:53'),(8173,'chemistry','54.36.148.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:02:02','2020-04-14 00:02:02'),(8174,'chemistry','54.36.148.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:04:51','2020-04-14 00:04:52'),(8175,'insurance','54.166.10.181',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-14 00:24:25','2020-04-20 18:30:46'),(8176,'mathematics','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:41:23','2020-04-14 05:41:23'),(8177,'chemistry','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:48:13','2020-04-14 05:48:13'),(8178,'accounting','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:48','2020-04-14 09:01:50'),(8179,'physics','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:50','2020-04-14 09:01:50'),(8180,'chemistry','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8181,'englishlit','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8182,'civiledu','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8183,'currentaffairs','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8184,'history','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8185,'geography','18.206.240.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 10:07:05','2020-04-14 10:11:06'),(8186,'physics','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:00:35','2020-04-14 16:00:35'),(8187,'englishlit','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:37:56','2020-04-14 16:37:56'),(8188,'geography','18.206.195.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 17:01:28','2020-04-14 17:01:28'),(8189,'chemistry','217.146.176.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 18:42:57','2020-04-14 18:42:58'),(8190,'currentaffairs','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 20:54:30','2020-04-14 20:54:30'),(8191,'mathematics','54.163.208.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 00:52:55','2020-04-15 00:52:55'),(8192,'geography','100.26.52.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 01:58:43','2020-04-15 01:58:43'),(8193,'physics','34.235.149.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 02:45:09','2020-04-15 02:45:09'),(8194,'mathematics','3.87.134.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 03:39:42','2020-04-15 03:39:42'),(8195,'mathematics','34.201.57.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 04:44:44','2020-04-15 04:44:44'),(8196,'accounting','3.84.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 06:20:10','2020-04-15 06:20:10'),(8197,'chemistry','197.210.53.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:40:42','2020-04-15 10:40:43'),(8198,'chemistry','197.210.52.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:42:02','2020-04-15 10:42:02'),(8199,'insurance','52.91.233.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 15:29:09','2020-04-15 15:29:09'),(8200,'civiledu','54.242.136.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 17:12:47','2020-04-15 17:12:47'),(8201,'accounting','3.94.112.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 18:27:15','2020-04-15 18:55:50'),(8202,'history','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 19:09:02','2020-04-15 19:09:02'),(8203,'english','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8204,'commerce','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8205,'accounting','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8206,'government','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8207,'geography','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8208,'economics','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8209,'insurance','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8210,'mathematics','3.85.212.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 02:18:36','2020-04-16 02:18:36'),(8211,'economics','18.234.50.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 12:59:34','2020-04-16 12:59:34'),(8212,'history','18.215.157.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 13:52:47','2020-04-16 13:52:47'),(8213,'chemistry','197.210.44.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:42','2020-04-16 18:43:09'),(8214,'chemistry','197.210.64.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:58','2020-04-16 18:42:58'),(8215,'chemistry','197.210.65.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:43:29','2020-04-16 18:43:29'),(8216,'chemistry','197.210.47.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:44:34','2020-04-16 18:44:34'),(8217,'chemistry','197.210.64.155',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:45:46','2020-04-16 18:45:48'),(8218,'crk','3.87.156.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 22:43:05','2020-04-16 22:43:05'),(8219,'commerce','18.207.198.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:03:48','2020-04-17 02:03:48'),(8220,'commerce','54.237.135.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:41:43','2020-04-17 02:41:43'),(8221,'physics','66.249.88.30',50,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-20 17:05:28'),(8222,'physics','66.249.81.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-17 08:08:43'),(8223,'physics','41.144.89.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:44','2020-04-17 08:08:46'),(8224,'economics','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:53:39','2020-04-17 08:53:39'),(8225,'geography','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:14:00','2020-04-17 09:14:00'),(8226,'government','18.206.205.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:56:27','2020-04-17 10:02:57'),(8227,'chemistry','18.206.205.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 10:01:34','2020-04-17 10:01:34'),(8228,'commerce','3.83.68.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 11:09:10','2020-04-17 11:09:10'),(8229,'chemistry','197.210.60.237',244,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 12:26:25','2020-04-17 12:32:16'),(8230,'economics','18.212.205.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 13:09:33','2020-04-17 13:09:33'),(8231,'chemistry','207.46.13.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 15:19:30','2020-04-17 15:19:30'),(8232,'english','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 16:39:41','2020-04-17 16:39:41'),(8233,'englishlit','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:10:38','2020-04-17 17:10:38'),(8234,'insurance','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:26:22','2020-04-17 17:26:22'),(8235,'crk','18.234.121.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 18:20:42','2020-04-17 18:20:42'),(8236,'chemistry','197.210.84.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 20:34:57','2020-04-17 20:34:57'),(8237,'crk','3.92.82.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 22:15:16','2020-04-17 22:15:16'),(8238,'physics','18.234.86.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 03:54:15','2020-04-18 03:54:15'),(8239,'currentaffairs','100.27.24.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 06:16:30','2020-04-18 06:16:30'),(8240,'crk','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:33:36','2020-04-18 07:33:36'),(8241,'englishlit','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:34:50','2020-04-18 07:34:50'),(8242,'english','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:35:39','2020-04-18 07:35:39'),(8243,'englishlit','107.23.21.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 08:31:03','2020-04-18 08:31:03'),(8244,'biology','3.93.151.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 11:56:02','2020-04-18 11:56:02'),(8245,'english','197.210.45.162',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 14:25:05','2020-04-18 14:25:07'),(8246,'currentaffairs','52.201.218.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 15:20:26','2020-04-18 15:20:26'),(8247,'economics','54.208.89.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:02:52','2020-04-18 18:02:52'),(8248,'chemistry','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:03'),(8249,'english','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:04'),(8250,'chemistry','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8251,'english','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8252,'english','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8253,'chemistry','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8254,'english','197.210.47.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:30:57','2020-04-18 18:31:00'),(8255,'chemistry','197.210.47.50',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8256,'english','197.210.47.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8257,'mathematics','197.210.47.209',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8258,'physics','197.210.47.182',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8259,'biology','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8260,'accounting','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8261,'english','197.210.65.39',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:34:12'),(8262,'commerce','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8263,'english','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8264,'accounting','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8265,'commerce','197.210.65.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8266,'biology','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8267,'biology','197.210.64.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:12'),(8268,'accounting','197.210.64.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8269,'commerce','197.210.47.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8270,'irk','197.210.47.117',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:50'),(8271,'english','197.210.47.142',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8272,'economics','197.210.47.112',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8273,'geography','197.210.47.125',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:34:50','2020-04-18 18:34:52'),(8274,'civiledu','197.210.47.139',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8275,'english','197.210.64.74',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8276,'insurance','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8277,'currentaffairs','197.210.47.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:59','2020-04-18 18:57:01'),(8278,'economics','197.210.64.116',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8279,'english','197.210.47.248',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8280,'irk','197.210.47.33',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:15','2020-04-18 19:01:17'),(8281,'civiledu','197.210.47.240',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:18','2020-04-18 19:01:20'),(8282,'mathematics','197.210.65.174',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8283,'english','197.210.65.168',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8284,'biology','197.210.65.164',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8285,'commerce','197.210.65.181',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8286,'english','197.210.47.9',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:07','2020-04-18 19:03:09'),(8287,'mathematics','197.210.47.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8288,'biology','197.210.47.19',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8289,'accounting','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8290,'english','197.210.65.0',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8291,'irk','197.210.64.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:25'),(8292,'civiledu','197.210.65.126',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8293,'economics','197.210.65.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8294,'biology','197.210.65.15',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8295,'accounting','197.210.65.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8296,'english','197.210.65.11',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8297,'commerce','197.210.65.26',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8298,'accounting','197.210.64.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8299,'mathematics','197.210.64.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8300,'english','197.210.47.101',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8301,'commerce','197.210.47.108',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8302,'biology','197.210.65.132',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:37'),(8303,'english','197.210.47.62',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:12:53'),(8304,'accounting','197.210.47.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:38'),(8305,'physics','197.210.47.32',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:36','2020-04-18 19:09:38'),(8306,'civiledu','197.210.64.42',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8307,'english','197.210.65.69',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8308,'insurance','197.210.65.75',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8309,'irk','197.210.65.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:30','2020-04-18 19:11:31'),(8310,'physics','197.210.47.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8311,'biology','197.210.47.56',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8312,'chemistry','197.210.47.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:52','2020-04-18 19:12:55'),(8313,'english','197.210.64.106',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8314,'government','197.210.65.97',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8315,'chemistry','197.210.65.99',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8316,'englishlit','197.210.64.37',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8317,'english','197.210.65.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8318,'biology','197.210.65.196',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8319,'accounting','197.210.65.206',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8320,'commerce','197.210.65.198',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8321,'physics','197.210.64.111',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:07'),(8322,'english','197.210.64.140',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8323,'englishlit','197.210.64.82',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8324,'chemistry','197.210.64.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:07','2020-04-18 19:56:10'),(8325,'english','197.210.65.23',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:35','2020-04-18 19:56:38'),(8326,'englishlit','197.210.64.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:37','2020-04-18 19:56:39'),(8327,'government','197.210.47.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:38','2020-04-18 19:56:40'),(8328,'chemistry','197.210.65.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:39','2020-04-18 19:56:41'),(8329,'mathematics','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8330,'accounting','197.210.47.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8331,'biology','197.210.65.134',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8332,'english','197.210.64.213',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8333,'english','197.210.65.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8334,'commerce','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8335,'mathematics','197.210.64.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8336,'irk','197.210.65.92',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:17','2020-04-18 19:59:19'),(8337,'accounting','3.208.18.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 06:23:07','2020-04-19 06:23:07'),(8338,'chemistry','40.77.167.36',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 07:38:38','2020-04-19 16:13:18'),(8339,'mathematics','105.112.179.226',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:23'),(8340,'accounting','105.112.179.226',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:52:55'),(8341,'government','105.112.179.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 11:58:19'),(8342,'english','105.112.179.226',480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:24'),(8343,'physics','105.112.179.226',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:55:09'),(8344,'biology','105.112.179.226',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:57:24'),(8345,'commerce','105.112.179.226',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:05:08','2020-04-19 12:57:24'),(8346,'chemistry','105.112.179.226',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:48:05','2020-04-19 12:55:09'),(8347,'chemistry','105.112.22.76',49,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:16:51','2020-04-19 13:26:58'),(8348,'biology','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:23:32','2020-04-19 13:23:33'),(8349,'mathematics','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:28:01','2020-04-19 13:28:01');\nINSERT INTO `api_call_ip_address` VALUES (8350,'mathematics','197.210.45.45',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:23:32'),(8351,'english','197.210.45.45',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8352,'commerce','197.210.45.45',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8353,'accounting','197.210.45.45',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8354,'english','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8355,'mathematics','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8356,'accounting','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8357,'commerce','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8358,'commerce','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8359,'accounting','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8360,'english','197.210.63.48',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:43:25'),(8361,'mathematics','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8362,'history','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8363,'currentaffairs','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8364,'insurance','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8365,'government','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8366,'crk','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8367,'geography','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8368,'history','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8369,'currentaffairs','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8370,'insurance','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8371,'english','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8372,'currentaffairs','197.210.45.45',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:11:15'),(8373,'insurance','197.210.45.45',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8374,'history','197.210.45.45',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8375,'chemistry','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8376,'physics','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8377,'biology','197.210.45.45',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:13:01','2020-04-19 19:24:58'),(8378,'mathematics','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8379,'chemistry','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:31:55'),(8380,'physics','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8381,'english','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8382,'biology','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:17:47','2020-04-19 21:17:49'),(8383,'english','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8384,'accounting','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8385,'englishlit','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8386,'economics','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8387,'civiledu','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8388,'insurance','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8389,'history','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8390,'currentaffairs','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:34:27','2020-04-19 21:34:29'),(8391,'chemistry','54.36.150.129',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:45:45','2020-04-19 22:45:45'),(8392,'chemistry','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:47:37'),(8393,'physics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8394,'mathematics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8395,'english','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8396,'biology','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:54:25','2020-04-19 22:54:27'),(8397,'chemistry','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8398,'physics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8399,'mathematics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8400,'english','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8401,'physics','3.93.200.226',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 00:55:26','2020-04-20 01:33:19'),(8402,'history','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:07:59','2020-04-20 01:07:59'),(8403,'currentaffairs','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:20:29','2020-04-20 01:20:29'),(8404,'englishlit','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:46:52','2020-04-20 01:46:52'),(8405,'chemistry','54.85.179.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:14:11','2020-04-20 03:14:11'),(8406,'english','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8407,'history','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8408,'insurance','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8409,'currentaffairs','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8410,'english','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8411,'biology','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:53:43'),(8412,'commerce','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8413,'accounting','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8414,'mathematics','102.89.2.214',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:56:26','2020-04-20 03:56:28'),(8415,'mathematics','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 04:11:00','2020-04-20 04:11:00'),(8416,'geography','3.92.207.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 06:39:01','2020-04-20 06:39:01'),(8417,'geography','3.80.247.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 07:47:21','2020-04-20 07:47:21'),(8418,'biology','218.26.54.96',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 09:58:41','2020-04-20 09:58:42'),(8419,'physics','3.90.203.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 11:17:13','2020-04-20 11:17:13'),(8420,'geography','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:08:33','2020-04-20 12:08:33'),(8421,'englishlit','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:30:06','2020-04-20 12:30:06'),(8422,'civiledu','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8423,'english','197.210.8.224',720,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 14:29:47'),(8424,'insurance','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8425,'currentaffairs','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8426,'chemistry','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8427,'mathematics','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8428,'physics','197.210.8.224',680,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8429,'commerce','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8430,'biology','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8431,'currentaffairs','54.145.65.159',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:05:19','2020-04-20 14:05:19'),(8432,'chemistry','54.36.148.196',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:35:15','2020-04-20 14:35:15'),(8433,'biology','66.249.83.204',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:44:36','2020-04-20 14:44:37'),(8434,'chemistry','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:50:33'),(8435,'english','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8436,'mathematics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8437,'physics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8438,'commerce','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:52:12','2020-04-20 14:52:14'),(8439,'chemistry','102.89.0.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 18:20:36','2020-04-20 18:20:36'),(8440,'chemistry','102.89.0.10',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:21:01','2020-04-20 18:24:58'),(8441,'physics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8442,'mathematics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8443,'english','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:58'),(8444,'physics','54.166.10.181',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:55:28','2020-04-20 18:55:28'),(8445,'mathematics','35.153.167.2',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 20:10:20','2020-04-20 20:10:20'),(8446,'mathematics','52.91.67.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 23:39:22','2020-04-20 23:39:22'),(8447,'physics','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8448,'chemistry','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8449,'english','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8450,'mathematics','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8451,'accounting','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8452,'biology','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8453,'chemistry','105.112.182.146',64,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:25:58','2020-04-21 19:28:52'),(8454,'biology','105.112.182.146',147,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:31:52','2020-04-21 20:02:15'),(8455,'physics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:00:51','2020-04-21 18:36:52'),(8456,'chemistry','197.210.64.120',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:02:51','2020-04-21 10:02:53'),(8457,'history','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8458,'currentaffairs','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8459,'english','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8460,'insurance','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8461,'commerce','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:24','2020-04-21 19:24:43'),(8462,'mathematics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:33','2020-04-21 18:43:38'),(8463,'chemistry','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8464,'english','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8465,'mathematics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8466,'physics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8467,'mathematics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8468,'english','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8469,'physics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8470,'chemistry','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8471,'chemistry','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8472,'mathematics','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8473,'english','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8474,'commerce','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8475,'english','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8476,'mathematics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8477,'physics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8478,'chemistry','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8479,'english','105.112.182.146',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:29','2020-04-21 11:08:28'),(8480,'chemistry','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8481,'english','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8482,'physics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8483,'mathematics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8484,'english','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8485,'mathematics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8486,'biology','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8487,'physics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8488,'chemistry','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8489,'mathematics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8490,'physics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8491,'english','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8492,'english','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8493,'englishlit','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8494,'physics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8495,'mathematics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8496,'mathematics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8497,'physics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8498,'english','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8499,'chemistry','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8500,'physics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8501,'mathematics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8502,'english','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8503,'chemistry','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8504,'physics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8505,'english','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8506,'chemistry','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8507,'mathematics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8508,'physics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8509,'english','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8510,'mathematics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8511,'mathematics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8512,'physics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8513,'english','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8514,'chemistry','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8515,'mathematics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8516,'english','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8517,'chemistry','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8518,'physics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8519,'mathematics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8520,'physics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8521,'chemistry','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:58'),(8522,'english','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8523,'english','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8524,'physics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8525,'chemistry','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8526,'mathematics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8527,'physics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8528,'mathematics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8529,'chemistry','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8530,'english','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8531,'englishlit','41.80.21.184',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:46:19','2020-04-21 11:46:21'),(8532,'chemistry','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8533,'mathematics','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8534,'biology','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8535,'english','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8536,'mathematics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8537,'chemistry','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8538,'physics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8539,'english','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8540,'accounting','105.112.182.146',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:21:36','2020-04-21 19:33:14'),(8541,'mathematics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8542,'english','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8543,'chemistry','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8544,'physics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8545,'english','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8546,'mathematics','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8547,'biology','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8548,'commerce','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8549,'physics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8550,'chemistry','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8551,'english','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8552,'mathematics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8553,'chemistry','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8554,'mathematics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8555,'english','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8556,'physics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8557,'history','54.242.239.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 14:06:07','2020-04-21 14:06:07'),(8558,'government','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 15:55:50','2020-04-21 15:55:51'),(8559,'history','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 16:23:43','2020-04-21 16:23:43'),(8560,'chemistry','197.210.28.55',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 18:02:59','2020-04-21 18:03:01'),(8561,'mathematics','3.81.94.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 19:58:20','2020-04-21 19:58:20'),(8562,'biology','105.112.18.128',77,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:18:41','2020-04-21 23:24:00'),(8563,'physics','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:18:53','2020-04-21 23:00:17'),(8564,'accounting','105.112.18.128',42,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:35:26','2020-04-21 23:10:50'),(8565,'chemistry','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:37:37','2020-04-21 20:58:32'),(8566,'mathematics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8567,'chemistry','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8568,'english','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:14'),(8569,'physics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8570,'english','102.89.1.175',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:09:09','2020-04-21 21:42:43'),(8571,'english','102.89.1.91',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:10:02','2020-04-21 21:25:29'),(8572,'english','102.89.0.89',20,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:11:30','2020-04-21 21:11:32'),(8573,'chemistry','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8574,'mathematics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8575,'physics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8576,'chemistry','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8577,'english','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8578,'mathematics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8579,'physics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8580,'chemistry','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:07','2020-04-21 21:42:43'),(8581,'physics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8582,'mathematics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8583,'commerce','105.112.18.128',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 22:04:53','2020-04-21 22:49:43'),(8584,'mathematics','105.112.18.128',7,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 22:27:23','2020-04-21 22:27:24'),(8585,'english','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8586,'irk','102.89.1.102',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8587,'insurance','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8588,'civiledu','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8589,'geography','105.112.18.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:32:29','2020-04-21 23:32:29'),(8590,'mathematics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8591,'physics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8592,'english','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8593,'chemistry','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8594,'physics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8595,'mathematics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8596,'english','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8597,'biology','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8598,'insurance','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:44','2020-04-21 23:46:47'),(8599,'english','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8600,'chemistry','197.210.46.117',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-05-25 11:18:27'),(8601,'geography','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8602,'history','52.207.122.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:21:54','2020-04-22 06:21:54'),(8603,'chemistry','102.89.2.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:27:13','2020-04-22 06:27:13'),(8604,'mathematics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8605,'english','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8606,'physics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8607,'chemistry','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8608,'biology','105.112.28.69',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 08:37:38','2020-04-22 09:14:05'),(8609,'physics','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:37:13','2020-04-22 11:01:24'),(8610,'biology','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:45:01','2020-04-22 10:48:10'),(8611,'accounting','105.112.31.149',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:07:02','2020-04-22 10:07:52'),(8612,'economics','105.112.31.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:16:04','2020-04-22 10:16:05'),(8613,'biology','105.112.30.170',28,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 11:06:24','2020-04-22 12:40:53'),(8614,'accounting','105.112.30.170',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 11:33:34','2020-04-22 11:59:20'),(8615,'chemistry','41.190.12.66',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:15:54','2020-04-22 12:17:36'),(8616,'biology','41.190.12.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:16:26','2020-04-22 12:18:01'),(8617,'chemistry','105.112.176.19',468,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 12:22:58','2020-04-22 12:30:38'),(8618,'chemistry','41.190.12.130',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:35:57','2020-04-22 12:39:25'),(8619,'biology','41.190.12.130',9,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:37:06','2020-04-22 12:41:42'),(8620,'english','41.190.12.130',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:39:46','2020-04-22 12:43:48'),(8621,'insurance','197.210.84.226',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:37:40','2020-04-22 13:37:42'),(8622,'insurance','197.210.84.190',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:40:05','2020-04-22 13:40:07'),(8623,'chemistry','54.82.80.108',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 14:30:16','2020-04-22 14:30:16'),(8624,'crk','34.229.173.152',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:15:56','2020-04-22 16:15:56'),(8625,'physics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8626,'english','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8627,'chemistry','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8628,'mathematics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8629,'biology','105.112.183.159',84,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:46:06','2020-04-22 22:39:25'),(8630,'accounting','105.112.183.159',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:48:17','2020-04-22 22:31:08'),(8631,'english','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:13:11','2020-04-22 18:13:11'),(8632,'commerce','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:34:19','2020-04-22 18:34:19'),(8633,'currentaffairs','3.94.91.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:10:02','2020-04-22 19:10:02'),(8634,'chemistry','105.112.183.159',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:38:14','2020-04-22 19:41:59'),(8635,'chemistry','157.55.39.45',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:52:26','2020-04-22 19:52:27'),(8636,'physics','105.112.183.159',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 21:25:48','2020-04-22 22:40:27'),(8637,'economics','54.166.255.13',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 22:23:41','2020-04-22 22:23:41'),(8638,'commerce','105.112.183.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 23:09:25','2020-04-22 23:09:26'),(8639,'chemistry','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:00:28','2020-04-23 00:00:28'),(8640,'government','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:24:21','2020-04-23 00:24:21'),(8641,'mathematics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:39:20','2020-04-23 01:39:20'),(8642,'government','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:47:47','2020-04-23 01:47:47'),(8643,'economics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:48:36','2020-04-23 01:48:36'),(8644,'geography','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:36:53','2020-04-23 02:36:53'),(8645,'commerce','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:53:38','2020-04-23 02:53:38'),(8646,'chemistry','105.112.61.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:54:52','2020-04-23 02:54:52'),(8647,'insurance','54.86.197.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 06:26:13','2020-04-23 06:26:13'),(8648,'crk','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:16:42','2020-04-23 10:16:42'),(8649,'englishlit','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:34:38','2020-04-23 10:34:38'),(8650,'english','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 11:05:41','2020-04-23 11:05:41'),(8651,'biology','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8652,'mathematics','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8653,'crk','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8654,'english','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8655,'civiledu','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8656,'economics','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8657,'crk','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 14:30:55','2020-04-23 14:30:55'),(8658,'biology','54.224.0.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 17:35:04','2020-04-23 17:35:04'),(8659,'chemistry','40.77.167.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 19:39:50','2020-04-23 19:39:50'),(8660,'physics','54.174.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:04:30','2020-04-23 22:04:30'),(8661,'englishlit','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:50:05','2020-04-23 22:50:05'),(8662,'currentaffairs','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 23:11:05','2020-04-23 23:11:05'),(8663,'crk','18.234.95.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 00:49:03','2020-04-24 00:49:03'),(8664,'chemistry','102.134.114.129',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 01:33:54','2020-04-24 01:38:52'),(8665,'englishlit','54.209.127.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 02:15:39','2020-04-24 02:15:39'),(8666,'english','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:17:39','2020-04-24 03:17:39'),(8667,'government','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:43:50','2020-04-24 03:43:50'),(8668,'chemistry','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 04:48:11','2020-04-24 04:48:11'),(8669,'economics','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 05:19:42','2020-04-24 05:19:42'),(8670,'mathematics','54.196.250.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 08:15:48','2020-04-24 08:15:48'),(8671,'insurance','3.82.47.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 09:43:06','2020-04-24 09:43:06'),(8672,'civiledu','100.24.31.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:26:45','2020-04-24 10:26:45'),(8673,'mathematics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8674,'commerce','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8675,'biology','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8676,'chemistry','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:08'),(8677,'government','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8678,'geography','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8679,'economics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8680,'physics','188.164.100.205',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:39:15','2020-04-24 10:39:17'),(8681,'chemistry','35.171.2.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 14:25:12','2020-04-24 14:25:12'),(8682,'mathematics','54.145.214.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 17:31:43','2020-04-24 17:31:43'),(8683,'chemistry','54.36.148.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 18:06:18','2020-04-24 18:06:18'),(8684,'accounting','34.239.139.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 23:10:31','2020-04-24 23:10:31'),(8685,'chemistry','54.227.8.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 01:51:07','2020-04-25 01:51:07'),(8686,'chemistry','105.112.47.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 04:58:07','2020-04-25 04:58:07'),(8687,'mathematics','34.204.43.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 05:02:06','2020-04-25 05:02:06'),(8688,'currentaffairs','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:33:21','2020-04-25 06:33:21'),(8689,'biology','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:58:18','2020-04-25 06:58:18'),(8690,'english','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:13','2020-04-25 07:02:13'),(8691,'commerce','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:32','2020-04-25 07:02:32'),(8692,'geography','54.162.26.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 08:14:44','2020-04-25 08:14:44'),(8693,'biology','41.190.31.157',123,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 14:18:38','2020-04-25 15:45:29'),(8694,'english','41.190.31.157',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:19:08','2020-04-25 15:19:08'),(8695,'chemistry','41.190.31.157',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:34:32','2020-04-25 15:49:01'),(8696,'mathematics','18.207.244.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:00:51','2020-04-25 19:00:51'),(8697,'geography','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:43:51','2020-04-25 19:43:51'),(8698,'chemistry','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 20:00:20','2020-04-25 20:00:20'),(8699,'geography','54.196.233.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 22:34:56','2020-04-25 22:34:56'),(8700,'geography','54.226.23.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 23:54:11','2020-04-25 23:54:11'),(8701,'physics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:34:21','2020-04-26 03:34:21'),(8702,'englishlit','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:46:24','2020-04-26 03:46:24'),(8703,'english','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:15:25','2020-04-26 04:15:25'),(8704,'geography','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:21:18','2020-04-26 04:21:18'),(8705,'economics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:38:52','2020-04-26 04:38:52'),(8706,'currentaffairs','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 05:01:46','2020-04-26 05:01:46'),(8707,'crk','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:37:57','2020-04-26 07:37:57'),(8708,'geography','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:39:49','2020-04-26 07:39:49'),(8709,'englishlit','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:24:17','2020-04-26 08:24:17'),(8710,'commerce','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:32:11','2020-04-26 08:32:11'),(8711,'biology','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:36:32','2020-04-26 08:36:32'),(8712,'mathematics','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:08:49','2020-04-26 09:08:49'),(8713,'english','34.207.68.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:44:24','2020-04-26 09:44:24'),(8714,'mathematics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:12:46','2020-04-26 11:12:46'),(8715,'physics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:15:20','2020-04-26 11:15:20'),(8716,'crk','54.152.233.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 12:24:21','2020-04-26 12:24:21'),(8717,'mathematics','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:36:48','2020-04-26 14:36:48'),(8718,'biology','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:55:09','2020-04-26 14:55:09'),(8719,'economics','18.215.246.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 21:05:56','2020-04-26 21:05:56'),(8720,'mathematics','3.81.151.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 01:31:08','2020-04-27 01:31:08'),(8721,'biology','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:05','2020-04-27 02:58:05'),(8722,'chemistry','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:38','2020-04-27 02:58:38'),(8723,'accounting','34.235.166.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 03:48:21','2020-04-27 03:48:21'),(8724,'history','54.224.76.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 05:14:17','2020-04-27 05:14:17'),(8725,'chemistry','52.201.249.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 08:03:17','2020-04-27 08:03:17'),(8726,'biology','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8727,'physics','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8728,'crk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8729,'geography','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8730,'irk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8731,'insurance','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8732,'history','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8733,'chemistry','54.234.116.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:51'),(8734,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8735,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8736,'government','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:13:02','2020-04-27 10:13:02'),(8737,'physics','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:23:37','2020-04-27 11:23:37'),(8738,'commerce','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:41:20','2020-04-27 11:41:20'),(8739,'chemistry','99.7.238.16',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:37:52','2020-04-27 13:42:57'),(8740,'physics','99.7.238.16',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:43:03','2020-04-27 13:43:03'),(8741,'chemistry','77.88.5.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:54:22','2020-04-27 13:54:22'),(8742,'biology','3.88.17.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:37:10','2020-04-27 14:37:10'),(8743,'mathematics','197.210.8.233',680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:44:44','2020-04-27 15:08:49'),(8744,'chemistry','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8745,'english','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8746,'physics','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8747,'economics','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:20:06','2020-04-27 20:20:06'),(8748,'commerce','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:39:52','2020-04-27 20:39:52'),(8749,'history','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:49:28','2020-04-27 20:49:28'),(8750,'government','107.21.137.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 02:38:07','2020-04-28 02:38:07'),(8751,'commerce','3.95.203.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 05:37:46','2020-04-28 05:37:46'),(8752,'crk','3.91.54.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:01:44','2020-04-28 07:01:44'),(8753,'geography','18.212.75.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:55:58','2020-04-28 07:55:58'),(8754,'physics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8755,'english','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8756,'mathematics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8757,'chemistry','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8758,'chemistry','196.222.104.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:11:38','2020-04-28 10:21:09'),(8759,'physics','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8760,'chemistry','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8761,'crk','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8762,'geography','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8763,'economics','18.209.104.117',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 11:04:14'),(8764,'currentaffairs','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8765,'history','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8766,'economics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:46:56','2020-04-28 11:46:56'),(8767,'english','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:47:28','2020-04-28 11:47:28'),(8768,'commerce','105.112.70.76',56,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:08:02','2020-04-28 13:10:12'),(8769,'accounting','105.112.70.76',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:11:44','2020-04-28 13:22:13'),(8770,'biology','105.112.70.76',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:29:15','2020-04-28 12:29:15'),(8771,'government','3.84.75.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 13:46:11','2020-04-28 13:46:11'),(8772,'economics','3.80.87.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 14:32:49','2020-04-28 14:32:49'),(8773,'physics','54.210.29.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:28:17','2020-04-28 15:28:17'),(8774,'insurance','197.210.227.65',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:30:30','2020-04-28 16:09:26'),(8775,'insurance','197.210.227.77',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:32:37','2020-04-28 15:41:11'),(8776,'accounting','197.210.227.77',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:38:20','2020-04-28 16:20:02'),(8777,'insurance','197.210.227.25',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:43:40','2020-04-28 17:43:09'),(8778,'insurance','197.210.226.63',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:02:54','2020-04-28 17:36:29'),(8779,'insurance','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:05:09','2020-04-28 16:05:11'),(8780,'englishlit','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:47','2020-04-28 16:07:49'),(8781,'government','197.210.227.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:51','2020-04-28 16:07:53'),(8782,'currentaffairs','197.210.226.63',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:54','2020-04-28 17:56:54'),(8783,'economics','197.210.227.25',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:58','2020-04-28 17:33:39'),(8784,'geography','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:02','2020-04-28 16:20:19'),(8785,'english','197.210.227.25',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:06','2020-04-28 17:57:58'),(8786,'mathematics','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:09','2020-04-28 16:09:56'),(8787,'commerce','197.210.227.25',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:13','2020-04-28 17:33:53'),(8788,'biology','197.210.227.25',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:17','2020-04-28 17:44:06'),(8789,'physics','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:20','2020-04-28 16:10:08'),(8790,'crk','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:28','2020-04-28 16:10:15'),(8791,'history','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:32','2020-04-28 16:08:35'),(8792,'irk','197.210.227.233',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:36','2020-04-28 16:08:38'),(8793,'civiledu','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:39','2020-04-28 17:47:22'),(8794,'accounting','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:28','2020-04-28 16:09:30'),(8795,'englishlit','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:32','2020-04-28 16:09:34'),(8796,'government','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:35','2020-04-28 16:09:38'),(8797,'currentaffairs','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:39','2020-04-28 16:09:41'),(8798,'economics','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:42','2020-04-28 16:09:45'),(8799,'geography','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:46','2020-04-28 16:09:48'),(8800,'english','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:50','2020-04-28 16:09:52'),(8801,'commerce','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:58','2020-04-28 16:10:00'),(8802,'biology','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:02','2020-04-28 16:10:04'),(8803,'chemistry','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:09','2020-04-28 16:10:12'),(8804,'history','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:17','2020-04-28 16:10:19'),(8805,'irk','197.210.226.63',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:20','2020-04-28 16:10:22'),(8806,'civiledu','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:23','2020-04-28 16:10:25'),(8807,'government','3.80.238.158',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:15:49','2020-04-28 16:15:49'),(8808,'englishlit','197.210.226.63',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:03','2020-04-28 17:41:09'),(8809,'government','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:06','2020-04-28 17:56:50'),(8810,'currentaffairs','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:10','2020-04-28 17:46:35'),(8811,'economics','197.210.226.63',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:14','2020-04-28 17:45:40'),(8812,'mathematics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:24','2020-04-28 17:46:51'),(8813,'physics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:35','2020-04-28 17:47:04'),(8814,'chemistry','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:40','2020-04-28 17:47:08'),(8815,'crk','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:45','2020-04-28 17:47:11'),(8816,'history','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:49','2020-04-28 16:20:51'),(8817,'irk','197.210.227.77',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:04','2020-04-28 16:21:05'),(8818,'civiledu','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:07','2020-04-28 16:21:10'),(8819,'geography','3.93.153.210',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:54:50','2020-04-28 17:00:53'),(8820,'accounting','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:23','2020-04-28 17:47:35'),(8821,'englishlit','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:26','2020-04-28 17:47:39'),(8822,'government','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:30','2020-04-28 17:46:31'),(8823,'currentaffairs','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:33','2020-04-28 17:36:51'),(8824,'geography','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:41','2020-04-28 17:33:43'),(8825,'mathematics','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:48','2020-04-28 17:33:50'),(8826,'chemistry','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:02','2020-04-28 17:39:24'),(8827,'history','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:09','2020-04-28 17:47:15'),(8828,'irk','197.210.227.25',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:13','2020-04-28 17:44:24'),(8829,'civiledu','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:15','2020-04-28 17:56:36'),(8830,'insurance','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:24','2020-04-28 17:55:24'),(8831,'accounting','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:28','2020-04-28 17:44:57'),(8832,'government','197.210.227.122',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:36','2020-04-28 17:45:31'),(8833,'currentaffairs','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:39','2020-04-28 17:55:39'),(8834,'economics','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:43','2020-04-28 17:49:01'),(8835,'geography','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:47','2020-04-28 17:47:55'),(8836,'english','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:50','2020-04-28 17:47:59'),(8837,'insurance','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:54','2020-04-28 17:56:39'),(8838,'accounting','197.210.226.66',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:58','2020-04-28 17:55:28'),(8839,'englishlit','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:02','2020-04-28 17:56:46'),(8840,'geography','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:17','2020-04-28 17:46:43'),(8841,'accounting','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:30','2020-04-28 17:43:13'),(8842,'economics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:52','2020-04-28 17:36:54'),(8843,'geography','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:56','2020-04-28 17:57:18'),(8844,'commerce','197.210.227.96',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:24','2020-04-28 17:46:56'),(8845,'crk','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:39','2020-04-28 17:37:41'),(8846,'irk','197.210.227.1',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:46','2020-04-28 17:47:19'),(8847,'geography','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:55','2020-04-28 17:49:05'),(8848,'english','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:58','2020-04-28 17:55:52'),(8849,'mathematics','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:07','2020-04-28 17:55:55'),(8850,'commerce','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:11','2020-04-28 17:39:13'),(8851,'biology','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:14','2020-04-28 17:39:17'),(8852,'physics','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:18','2020-04-28 17:56:07'),(8853,'crk','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:25','2020-04-28 17:39:27'),(8854,'history','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:28','2020-04-28 17:56:28'),(8855,'irk','197.210.226.66',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:32','2020-04-28 17:56:32'),(8856,'insurance','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:40:58','2020-04-28 17:46:20'),(8857,'government','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:41:11','2020-04-28 17:48:52'),(8858,'currentaffairs','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:35','2020-04-28 17:47:47'),(8859,'economics','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:38','2020-04-28 17:57:01'),(8860,'geography','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:42','2020-04-28 17:43:44'),(8861,'physics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:07','2020-04-28 17:44:09'),(8862,'crk','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:14','2020-04-28 17:48:22'),(8863,'history','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:18','2020-04-28 17:44:21'),(8864,'civiledu','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:25','2020-04-28 17:44:44'),(8865,'englishlit','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:45:04','2020-04-28 17:45:06'),(8866,'english','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:44','2020-04-28 17:46:47'),(8867,'biology','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:57','2020-04-28 17:56:03'),(8868,'insurance','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:47:29','2020-04-28 17:47:32'),(8869,'mathematics','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:00','2020-04-28 17:48:03'),(8870,'commerce','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:05','2020-04-28 17:48:07'),(8871,'biology','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:08','2020-04-28 17:48:11'),(8872,'chemistry','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:16','2020-04-28 17:48:19'),(8873,'history','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:24','2020-04-28 17:48:27'),(8874,'englishlit','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:29','2020-04-28 17:55:32'),(8875,'government','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:33','2020-04-28 17:55:35'),(8876,'economics','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:41','2020-04-28 17:55:44'),(8877,'commerce','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:56','2020-04-28 17:55:59'),(8878,'chemistry','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:08','2020-04-28 17:56:10'),(8879,'crk','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:22','2020-04-28 17:56:24'),(8880,'accounting','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:41','2020-04-28 17:56:43'),(8881,'government','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:16','2020-04-28 18:02:16'),(8882,'commerce','105.112.16.71',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:49','2020-04-28 18:02:49'),(8883,'biology','105.112.16.71',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:06:21','2020-04-28 18:11:14'),(8884,'english','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:20:03','2020-04-28 18:20:03'),(8885,'commerce','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:32:41','2020-04-28 18:32:41'),(8886,'accounting','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:33:53','2020-04-28 18:33:53'),(8887,'biology','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:55:42','2020-04-28 18:55:42'),(8888,'history','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:58:00','2020-04-28 18:58:00'),(8889,'chemistry','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:04:13','2020-04-28 19:04:13'),(8890,'chemistry','41.217.104.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:28:12','2020-04-28 19:28:26'),(8891,'economics','35.175.150.1',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 20:02:33','2020-04-28 20:02:33'),(8892,'commerce','52.23.234.72',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:03:58','2020-04-28 21:03:58'),(8893,'commerce','105.112.176.198',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:35:39','2020-04-28 22:06:40'),(8894,'biology','105.112.176.198',21,'','NG','','Lagos',NULL,NULL,'','','2020-04-28 21:49:14','2020-04-28 23:16:53'),(8895,'accounting','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:07:36','2020-04-28 22:07:37'),(8896,'mathematics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:15:12','2020-04-28 22:15:12'),(8897,'physics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:19:21','2020-04-28 22:19:21'),(8898,'government','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:21:48','2020-04-28 22:21:48'),(8899,'insurance','34.229.212.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 23:55:04','2020-04-28 23:55:04'),(8900,'english','35.170.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 01:09:28','2020-04-29 01:09:28'),(8901,'crk','54.204.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 02:49:37','2020-04-29 02:49:37'),(8902,'crk','34.229.217.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 08:41:40','2020-04-29 08:41:40'),(8903,'chemistry','52.54.222.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 09:31:21','2020-04-29 09:31:21'),(8904,'physics','3.86.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 11:56:45','2020-04-29 11:56:45'),(8905,'english','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:13:54','2020-04-29 14:13:54'),(8906,'currentaffairs','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:28:47','2020-04-29 14:28:47'),(8907,'crk','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 16:51:12','2020-04-29 16:51:12'),(8908,'mathematics','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:19:40','2020-04-29 17:19:40'),(8909,'biology','105.112.176.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:26:33','2020-04-29 18:09:50'),(8910,'commerce','105.112.176.237',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:29:23','2020-04-29 18:01:40'),(8911,'englishlit','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:42:30','2020-04-29 17:42:30'),(8912,'accounting','105.112.176.237',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:02:58','2020-04-29 18:02:58'),(8913,'biology','105.112.179.192',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:33:15','2020-04-29 19:16:31'),(8914,'currentaffairs','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:36:50','2020-04-29 18:36:50'),(8915,'economics','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:47:33','2020-04-29 18:47:33'),(8916,'physics','105.112.179.192',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:05:41','2020-04-29 19:30:14'),(8917,'englishlit','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:09:49','2020-04-29 19:09:49'),(8918,'mathematics','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:10:38','2020-04-29 19:10:38'),(8919,'commerce','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:41:21','2020-04-29 19:41:21'),(8920,'chemistry','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:58:11','2020-04-29 19:58:11'),(8921,'government','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:21:57','2020-04-29 20:21:57'),(8922,'commerce','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:18','2020-04-29 20:27:18'),(8923,'commerce','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:44','2020-04-29 20:27:44'),(8924,'english','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:28:17','2020-04-29 21:37:09'),(8925,'biology','105.112.24.82',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:47:45','2020-04-29 22:13:57'),(8926,'government','3.87.44.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:09:09','2020-04-29 21:09:09'),(8927,'accounting','105.112.24.82',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:11:05','2020-04-29 22:06:33'),(8928,'mathematics','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:43','2020-04-29 21:59:17'),(8929,'physics','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:54','2020-04-29 21:36:55'),(8930,'chemistry','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 22:39:32','2020-04-29 22:39:32'),(8931,'chemistry','54.36.148.219',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 23:51:25','2020-04-29 23:51:25'),(8932,'chemistry','54.36.148.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:02:17','2020-04-30 00:02:17'),(8933,'chemistry','54.36.148.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:13:27','2020-04-30 00:13:27'),(8934,'physics','3.95.148.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:16:11','2020-04-30 00:16:11'),(8935,'chemistry','54.36.148.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:24:14','2020-04-30 00:24:14'),(8936,'chemistry','54.36.148.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:57:32','2020-04-30 00:57:32'),(8937,'chemistry','54.36.148.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 01:26:38','2020-04-30 01:26:38'),(8938,'english','3.83.49.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 04:59:57','2020-04-30 04:59:57'),(8939,'physics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 11:48:10','2020-04-30 11:48:12'),(8940,'mathematics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:14:32','2020-04-30 12:14:35'),(8941,'accounting','3.90.113.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:48:25','2020-04-30 12:48:25'),(8942,'geography','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:50:57','2020-04-30 12:50:59'),(8943,'commerce','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:51:24','2020-04-30 12:51:26'),(8944,'physics','54.167.205.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 13:29:15','2020-04-30 13:29:15'),(8945,'insurance','54.160.135.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 16:43:16','2020-04-30 16:43:16'),(8946,'chemistry','157.55.39.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:40:23','2020-04-30 17:40:23'),(8947,'insurance','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:56:54','2020-04-30 17:59:10'),(8948,'currentaffairs','197.210.53.138',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:10','2020-04-30 18:08:22'),(8949,'economics','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:15','2020-04-30 17:59:31'),(8950,'geography','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:18','2020-04-30 18:00:52'),(8951,'english','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:22','2020-04-30 17:59:44'),(8952,'commerce','197.210.53.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:29','2020-04-30 17:57:31'),(8953,'physics','197.210.52.197',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:39','2020-04-30 18:01:14'),(8954,'history','197.210.53.151',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:53','2020-04-30 18:13:42'),(8955,'irk','197.210.53.138',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:58','2020-04-30 18:13:47'),(8956,'civiledu','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:01','2020-04-30 17:59:07'),(8957,'insurance','197.210.52.197',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:05','2020-04-30 17:58:07'),(8958,'government','197.210.53.151',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:16','2020-04-30 17:58:18'),(8959,'currentaffairs','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:20','2020-04-30 17:58:22'),(8960,'geography','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:28','2020-04-30 17:58:31'),(8961,'biology','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:43','2020-04-30 17:58:46'),(8962,'physics','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:47','2020-04-30 18:08:48'),(8963,'irk','197.210.52.31',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:01','2020-04-30 18:01:32'),(8964,'accounting','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:12','2020-04-30 17:59:14'),(8965,'englishlit','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:15','2020-04-30 18:12:52'),(8966,'government','197.210.52.67',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:19','2020-04-30 18:12:56'),(8967,'currentaffairs','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:23','2020-04-30 18:10:46'),(8968,'geography','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:37','2020-04-30 17:59:39'),(8969,'mathematics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:46','2020-04-30 18:01:00'),(8970,'commerce','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:51','2020-04-30 17:59:53'),(8971,'biology','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:56','2020-04-30 18:08:45'),(8972,'chemistry','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:07','2020-04-30 18:00:09'),(8973,'crk','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:11','2020-04-30 18:00:13'),(8974,'history','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:16','2020-04-30 18:11:26'),(8975,'irk','197.210.52.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:20','2020-04-30 18:00:21'),(8976,'civiledu','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:22','2020-04-30 18:00:25'),(8977,'insurance','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:26','2020-04-30 18:10:30'),(8978,'accounting','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:30','2020-04-30 18:10:34'),(8979,'englishlit','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:34','2020-04-30 18:10:38'),(8980,'government','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:38','2020-04-30 18:00:40'),(8981,'currentaffairs','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:42','2020-04-30 18:12:59'),(8982,'economics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:46','2020-04-30 18:13:04'),(8983,'english','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:54','2020-04-30 18:00:56'),(8984,'commerce','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:03','2020-04-30 18:13:19'),(8985,'biology','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:07','2020-04-30 18:11:09'),(8986,'chemistry','197.210.52.197',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:16','2020-04-30 18:13:31'),(8987,'crk','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:21','2020-04-30 18:01:23'),(8988,'civiledu','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:34','2020-04-30 18:01:36'),(8989,'insurance','197.210.52.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:05','2020-04-30 18:12:44'),(8990,'englishlit','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:12','2020-04-30 18:08:15'),(8991,'government','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:16','2020-04-30 18:08:18'),(8992,'economics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:24','2020-04-30 18:10:50'),(8993,'english','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:31','2020-04-30 18:08:33'),(8994,'chemistry','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:50','2020-04-30 18:08:52'),(8995,'history','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:56','2020-04-30 18:08:59'),(8996,'irk','197.210.52.197',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:00','2020-04-30 18:09:02'),(8997,'civiledu','197.210.53.138',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:03','2020-04-30 18:13:51'),(8998,'geography','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:52','2020-04-30 18:10:54'),(8999,'english','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:56','2020-04-30 18:10:58'),(9000,'mathematics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:59','2020-04-30 18:13:16'),(9001,'commerce','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:03','2020-04-30 18:11:05'),(9002,'physics','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:11','2020-04-30 18:11:14'),(9003,'crk','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:20','2020-04-30 18:11:22'),(9004,'irk','197.210.53.91',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:28','2020-04-30 18:11:29'),(9005,'civiledu','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:31','2020-04-30 18:11:33'),(9006,'accounting','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:12:46','2020-04-30 18:12:48'),(9007,'geography','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:05','2020-04-30 18:13:08'),(9008,'english','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:09','2020-04-30 18:13:12'),(9009,'biology','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:21','2020-04-30 18:13:23'),(9010,'physics','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:25','2020-04-30 18:13:28'),(9011,'chemistry','129.205.113.173',4,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:44:54','2020-04-30 18:51:44'),(9012,'chemistry','40.77.167.109',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 19:59:37','2020-04-30 19:59:37'),(9013,'chemistry','18.212.194.164',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 22:59:35','2020-04-30 22:59:35'),(9014,'mathematics','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:52:42','2020-04-30 23:52:43'),(9015,'chemistry','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:32','2020-04-30 23:58:33'),(9016,'biology','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:49','2020-04-30 23:58:50'),(9017,'physics','197.210.63.5',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9018,'mathematics','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9019,'chemistry','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9020,'english','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9021,'english','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9022,'accounting','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9023,'chemistry','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9024,'government','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9025,'economics','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:09'),(9026,'irk','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9027,'civiledu','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9028,'chemistry','54.152.163.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 06:38:44','2020-05-01 06:38:44'),(9029,'civiledu','54.85.192.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 07:42:44','2020-05-01 07:42:44'),(9030,'chemistry','50.66.43.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 08:44:35','2020-05-01 08:44:35'),(9031,'accounting','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:23:43','2020-05-01 09:23:45'),(9032,'biology','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:26:39','2020-05-01 09:26:41'),(9033,'chemistry','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:28:41','2020-05-01 09:28:43'),(9034,'commerce','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:31:07','2020-05-01 09:31:09'),(9035,'geography','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:32:07','2020-05-01 09:32:09'),(9036,'government','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:33:07','2020-05-01 09:33:09'),(9037,'englishlit','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:34:23','2020-05-01 09:34:25'),(9038,'english','3.92.79.199',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:35:10','2020-05-01 09:36:06'),(9039,'physics','54.197.3.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:32','2020-05-01 09:36:32'),(9040,'history','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:45','2020-05-01 09:36:47'),(9041,'physics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:37:23','2020-05-01 09:37:25'),(9042,'crk','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:02','2020-05-01 09:38:04'),(9043,'irk','3.92.79.199',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:36','2020-05-01 09:38:37'),(9044,'mathematics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:40:07','2020-05-01 09:40:09'),(9045,'civiledu','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:44:20','2020-05-01 09:44:22'),(9046,'insurance','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:45:12','2020-05-01 09:45:14'),(9047,'mathematics','18.212.127.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 10:27:34','2020-05-01 10:27:34'),(9048,'chemistry','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 11:53:35','2020-05-01 11:53:35'),(9049,'civiledu','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:07:15','2020-05-01 12:07:15'),(9050,'geography','35.171.18.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:48:39','2020-05-01 12:48:39'),(9051,'accounting','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 13:58:07','2020-05-01 15:50:39'),(9052,'english','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:12:28','2020-05-01 15:32:24'),(9053,'government','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:27:18','2020-05-01 15:42:41'),(9054,'geography','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:34:50','2020-05-01 14:34:50'),(9055,'irk','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:40:41','2020-05-01 15:22:36'),(9056,'economics','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:52:00','2020-05-01 15:03:28'),(9057,'chemistry','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:13:35','2020-05-01 15:13:35'),(9058,'civiledu','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:59:12','2020-05-01 15:59:12'),(9059,'physics','54.147.40.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 17:31:20','2020-05-01 17:31:20'),(9060,'englishlit','3.80.145.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:30:32','2020-05-01 18:30:32'),(9061,'geography','3.81.84.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:59:33','2020-05-01 18:59:33'),(9062,'mathematics','54.152.182.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 19:39:12','2020-05-01 19:39:12'),(9063,'currentaffairs','54.147.140.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 20:19:55','2020-05-01 20:46:03'),(9064,'mathematics','18.232.86.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 01:07:21','2020-05-02 01:07:21'),(9065,'physics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 02:21:54','2020-05-02 02:21:54'),(9066,'mathematics','54.159.74.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 05:28:06','2020-05-02 05:28:06'),(9067,'mathematics','3.95.199.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 11:49:15','2020-05-02 11:49:54'),(9068,'geography','54.160.152.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 12:51:05','2020-05-02 12:51:05'),(9069,'accounting','54.242.134.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 13:44:35','2020-05-02 13:44:35'),(9070,'civiledu','54.80.130.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 14:38:04','2020-05-02 14:38:04'),(9071,'insurance','34.227.221.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 16:37:38','2020-05-02 16:37:38'),(9072,'chemistry','34.226.155.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 17:58:23','2020-05-02 18:51:09'),(9073,'history','34.226.155.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 18:31:23','2020-05-02 18:31:23'),(9074,'mathematics','54.166.138.44',41,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-02 21:12:05','2020-05-03 16:51:28'),(9075,'english','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:19','2020-05-02 21:57:19'),(9076,'commerce','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9077,'physics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9078,'geography','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9079,'economics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9080,'civiledu','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9081,'insurance','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9082,'chemistry','3.83.147.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 22:48:32','2020-05-02 22:48:32'),(9083,'currentaffairs','107.21.76.29',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:19:42','2020-05-03 05:43:14'),(9084,'mathematics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:23:15','2020-05-03 05:35:39'),(9085,'commerce','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:24:10','2020-05-03 05:36:03'),(9086,'accounting','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:18','2020-05-03 05:36:47'),(9087,'biology','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:59','2020-05-03 05:37:26'),(9088,'physics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:26:47','2020-05-03 05:38:06'),(9089,'chemistry','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:27:25','2020-05-03 05:38:29'),(9090,'englishlit','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:16','2020-05-03 05:38:53'),(9091,'government','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:51','2020-05-03 05:39:37'),(9092,'crk','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:29:36','2020-05-03 05:40:00'),(9093,'geography','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:30:23','2020-05-03 05:40:40'),(9094,'economics','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:07','2020-05-03 05:41:19'),(9095,'irk','107.21.76.29',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:39','2020-05-03 05:41:43'),(9096,'civiledu','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:32:21','2020-05-03 05:42:07'),(9097,'insurance','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:33:00','2020-05-03 05:42:48'),(9098,'history','107.21.76.29',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:34:12','2020-05-03 05:44:29'),(9099,'english','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:17'),(9100,'mathematics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:16'),(9101,'commerce','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9102,'biology','3.83.109.40',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9103,'englishlit','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9104,'accounting','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9105,'crk','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9106,'currentaffairs','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9107,'physics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9108,'economics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9109,'history','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9110,'government','3.83.55.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:34:46','2020-05-03 09:34:46'),(9111,'economics','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9112,'english','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:36'),(9113,'commerce','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9114,'accounting','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9115,'geography','54.235.52.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 11:00:21','2020-05-03 11:00:21'),(9116,'commerce','54.146.7.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 12:56:31','2020-05-03 12:56:31'),(9117,'economics','54.91.125.121',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 15:12:25','2020-05-03 15:12:25'),(9118,'mathematics','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:18:04','2020-05-03 16:18:04'),(9119,'englishlit','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:19:28','2020-05-03 16:19:28'),(9120,'commerce','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:02','2020-05-03 16:52:05'),(9121,'accounting','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:26','2020-05-03 16:52:28'),(9122,'biology','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:51','2020-05-03 16:52:53'),(9123,'physics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:53:34','2020-05-03 16:53:36'),(9124,'chemistry','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:00','2020-05-03 16:54:02'),(9125,'englishlit','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:48','2020-05-03 16:54:51'),(9126,'government','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:55:31','2020-05-03 16:55:34'),(9127,'crk','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:56:11','2020-05-03 16:56:13'),(9128,'geography','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:04','2020-05-03 16:57:06'),(9129,'economics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:24','2020-05-03 16:57:26'),(9130,'irk','54.166.138.44',30,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:51','2020-05-03 16:57:53'),(9131,'civiledu','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:17','2020-05-03 16:58:19'),(9132,'insurance','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:58','2020-05-03 16:59:00'),(9133,'currentaffairs','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:59:20','2020-05-03 16:59:22'),(9134,'history','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:00:11','2020-05-03 17:50:17'),(9135,'mathematics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:10','2020-05-03 17:43:43'),(9136,'commerce','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:38','2020-05-03 17:44:06'),(9137,'accounting','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:04','2020-05-03 17:44:35'),(9138,'biology','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:28','2020-05-03 17:44:59'),(9139,'physics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:59','2020-05-03 17:45:22'),(9140,'chemistry','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:03:27','2020-05-03 17:45:51'),(9141,'englishlit','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:02','2020-05-03 17:46:17'),(9142,'crk','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:28','2020-05-03 17:47:18'),(9143,'government','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:57','2020-05-03 17:46:53'),(9144,'geography','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:27','2020-05-03 17:47:43'),(9145,'economics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:55','2020-05-03 17:48:08'),(9146,'irk','3.95.205.237',180,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:29','2020-05-03 17:48:30'),(9147,'civiledu','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:57','2020-05-03 17:48:54'),(9148,'insurance','3.95.205.237',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:23','2020-05-03 17:49:18'),(9149,'currentaffairs','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:55','2020-05-03 17:49:38'),(9150,'insurance','18.234.85.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:51:52','2020-05-03 17:51:52'),(9151,'chemistry','54.81.105.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 19:38:19','2020-05-03 19:38:19'),(9152,'civiledu','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:43:29','2020-05-03 19:43:29'),(9153,'englishlit','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:54:13','2020-05-03 19:54:13'),(9154,'chemistry','105.112.115.225',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 20:27:24','2020-05-03 20:27:24'),(9155,'crk','34.233.133.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 21:37:40','2020-05-03 21:37:40'),(9156,'english','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 23:39:58','2020-05-03 23:39:58'),(9157,'crk','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 00:00:14','2020-05-04 00:00:14'),(9158,'english','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9159,'english','34.201.133.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9160,'physics','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9161,'accounting','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9162,'englishlit','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9163,'geography','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9164,'government','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9165,'economics','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9166,'civiledu','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9167,'irk','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9168,'insurance','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9169,'crk','54.146.129.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 04:53:02','2020-05-04 04:53:02'),(9170,'biology','54.82.169.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 05:39:54','2020-05-04 05:39:54'),(9171,'government','18.212.134.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 07:54:46','2020-05-04 07:54:46'),(9172,'chemistry','41.190.3.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 08:37:26','2020-05-04 08:37:29'),(9173,'chemistry','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:07:07','2020-05-04 09:07:07'),(9174,'economics','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:24:40','2020-05-04 09:24:40'),(9175,'mathematics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:05:23','2020-05-04 10:16:55'),(9176,'commerce','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:06:28','2020-05-04 10:17:26'),(9177,'accounting','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:07:00','2020-05-04 10:18:01'),(9178,'biology','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:17','2020-05-04 10:18:33'),(9179,'physics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:52','2020-05-04 10:18:59'),(9180,'chemistry','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:09:47','2020-05-04 10:19:29'),(9181,'chemistry','197.211.53.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:17','2020-05-04 10:10:17'),(9182,'englishlit','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:27','2020-05-04 10:20:35'),(9183,'government','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:11','2020-05-04 10:21:10'),(9184,'crk','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:46','2020-05-04 10:21:49'),(9185,'economics','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:14','2020-05-04 10:22:21'),(9186,'geography','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:42','2020-05-04 10:22:44'),(9187,'irk','54.226.73.173',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:13:40','2020-05-04 10:23:05'),(9188,'civiledu','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:14:36','2020-05-04 10:24:07'),(9189,'insurance','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:05','2020-05-04 10:24:41'),(9190,'currentaffairs','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:37','2020-05-04 10:25:21'),(9191,'history','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:16:05','2020-05-04 10:25:43'),(9192,'physics','34.230.85.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 11:44:10','2020-05-04 11:44:10'),(9193,'englishlit','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 12:53:41','2020-05-04 12:53:41'),(9194,'currentaffairs','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 13:03:08','2020-05-04 13:03:08'),(9195,'english','54.91.147.136',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 13:59:39','2020-05-04 14:10:23'),(9196,'crk','54.167.221.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 16:21:35','2020-05-04 16:21:35'),(9197,'mathematics','34.227.100.151',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 18:01:31','2020-05-04 18:53:32'),(9198,'commerce','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:06','2020-05-04 18:53:59'),(9199,'accounting','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:40','2020-05-04 18:54:21'),(9200,'biology','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:08','2020-05-04 18:54:50'),(9201,'physics','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:52','2020-05-04 18:48:01'),(9202,'chemistry','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:22','2020-05-04 18:55:24'),(9203,'englishlit','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:55','2020-05-04 18:55:50'),(9204,'government','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:06:25','2020-05-04 18:56:46'),(9205,'irk','34.227.100.151',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:05','2020-05-04 18:58:12'),(9206,'geography','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:32','2020-05-04 18:57:53'),(9207,'economics','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:56','2020-05-04 18:57:27'),(9208,'crk','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:08:29','2020-05-04 18:57:05'),(9209,'civiledu','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:22','2020-05-04 18:58:33'),(9210,'insurance','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:52','2020-05-04 18:59:01'),(9211,'currentaffairs','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:10:36','2020-05-04 18:59:20'),(9212,'history','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:11:01','2020-05-04 18:59:44'),(9213,'englishlit','54.91.12.60',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:19:14','2020-05-04 18:19:14'),(9214,'english','34.227.100.151',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:41:22','2020-05-04 18:56:16'),(9215,'chemistry','77.88.5.170',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:43:38','2020-05-04 18:43:38'),(9216,'chemistry','54.90.243.173',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 19:36:36','2020-05-04 19:36:36'),(9217,'economics','18.208.245.55',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 20:24:40','2020-05-04 20:24:40'),(9218,'government','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:34:09','2020-05-04 22:34:09'),(9219,'crk','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:56:00','2020-05-04 22:56:00'),(9220,'english','34.230.41.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 01:39:36','2020-05-05 01:39:36'),(9221,'english','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9222,'biology','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9223,'chemistry','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9224,'government','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9225,'irk','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:53'),(9226,'civiledu','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9227,'insurance','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9228,'currentaffairs','54.82.122.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 15:55:27','2020-05-05 15:55:27'),(9229,'currentaffairs','35.171.182.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 17:52:25','2020-05-05 17:52:25'),(9230,'civiledu','54.162.194.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:44:31','2020-05-05 18:44:31'),(9231,'chemistry','105.112.22.22',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:54:47','2020-05-05 18:55:46'),(9232,'economics','3.81.61.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 20:23:57','2020-05-05 20:23:57'),(9233,'civiledu','34.229.1.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:13:48','2020-05-05 21:13:48'),(9234,'english','35.175.224.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:50:44','2020-05-05 21:50:44'),(9235,'english','66.249.64.72',7,'',NULL,'',NULL,NULL,NULL,'','','2020-05-05 22:53:19','2020-05-05 22:53:19'),(9236,'accounting','3.89.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 23:06:38','2020-05-05 23:06:38'),(9237,'biology','66.249.64.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 04:40:45','2020-05-06 04:40:46'),(9238,'biology','3.82.138.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 11:39:57','2020-05-06 11:39:57'),(9239,'government','54.159.33.148',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 15:34:04','2020-05-06 15:34:04'),(9240,'chemistry','54.36.149.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:24:22','2020-05-06 16:24:22'),(9241,'chemistry','54.36.148.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:28:45','2020-05-06 16:28:45'),(9242,'chemistry','54.36.149.15',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:32:20','2020-05-06 16:32:20'),(9243,'chemistry','105.112.52.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 17:44:03','2020-05-06 17:44:03'),(9244,'government','35.153.179.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:00:30','2020-05-06 18:00:30'),(9245,'crk','107.22.153.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:46:09','2020-05-06 18:46:09'),(9246,'insurance','52.207.168.128',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 20:37:45','2020-05-06 20:37:45'),(9247,'crk','54.152.178.63',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 22:54:07','2020-05-06 22:54:07'),(9248,'chemistry','102.89.2.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 23:18:18','2020-05-06 23:18:18'),(9249,'english','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9250,'commerce','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9251,'chemistry','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9252,'government','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9253,'irk','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9254,'civiledu','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9255,'insurance','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:11'),(9256,'chemistry','197.210.46.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:09:52','2020-05-25 11:09:52'),(9257,'chemistry','197.210.198.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:16:21','2020-05-25 11:16:21'),(9258,'chemistry','197.210.53.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:23:10','2020-05-25 11:23:15'),(9259,'chemistry','157.55.39.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:55:56','2020-05-25 11:55:56'),(9260,'commerce','3.94.205.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:06:49','2020-05-25 12:06:49'),(9261,'economics','54.226.128.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:53:03','2020-05-25 12:53:03'),(9262,'crk','54.91.154.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 14:42:35','2020-05-25 14:42:35'),(9263,'mathematics','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:28:22','2020-05-25 15:28:22'),(9264,'chemistry','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:33:33','2020-05-25 15:33:33'),(9265,'economics','54.91.243.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 17:58:39','2020-05-25 17:58:39'),(9266,'mathematics','66.249.66.136',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:15:02','2020-05-25 19:15:05'),(9267,'chemistry','15.236.101.59',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:49:10','2020-05-25 19:51:59'),(9268,'government','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:08:24','2020-05-25 21:08:24'),(9269,'chemistry','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:16:46','2020-05-25 21:16:46'),(9270,'chemistry','197.210.70.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:21:23','2020-05-25 22:21:23'),(9271,'geography','18.212.164.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:31:38','2020-05-25 22:31:38'),(9272,'government','54.81.15.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 23:48:45','2020-05-25 23:48:45'),(9273,'commerce','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 00:35:21','2020-05-26 00:35:21'),(9274,'economics','34.203.224.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 01:14:02','2020-05-26 01:14:02'),(9275,'crk','18.232.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 02:43:23','2020-05-26 02:43:23'),(9276,'insurance','18.212.41.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 04:09:34','2020-05-26 04:09:34'),(9277,'englishlit','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 06:53:11','2020-05-26 06:53:11'),(9278,'chemistry','41.190.31.41',122,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:00:17','2020-05-26 07:07:55'),(9279,'irk','41.190.31.41',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:09:11','2020-05-26 07:09:13'),(9280,'english','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:27','2020-05-26 07:19:27'),(9281,'english','41.190.31.41',839,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:30','2020-05-26 10:55:38'),(9282,'civiledu','54.159.94.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:11:23','2020-05-26 08:11:23'),(9283,'chemistry','105.112.24.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:25:30','2020-05-26 08:25:30'),(9284,'crk','3.87.153.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 09:29:02','2020-05-26 09:29:02'),(9285,'crk','52.90.24.192',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 11:46:19','2020-05-26 11:46:19'),(9286,'physics','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 21:42:14','2020-05-26 21:42:14'),(9287,'english','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:01:46','2020-05-26 22:01:46'),(9288,'chemistry','197.210.84.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:06:54','2020-05-26 22:09:09'),(9289,'currentaffairs','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:28:46','2020-05-26 23:28:46'),(9290,'englishlit','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:33:46','2020-05-26 23:33:46'),(9291,'englishlit','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 02:53:40','2020-05-27 02:53:40'),(9292,'economics','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 03:19:57','2020-05-27 03:19:57'),(9293,'chemistry','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:08:27','2020-05-27 04:08:27'),(9294,'crk','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:26:11','2020-05-27 04:26:11'),(9295,'insurance','18.209.13.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 05:07:33','2020-05-27 05:07:33'),(9296,'government','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:46:52','2020-05-27 06:46:52'),(9297,'crk','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:59:51','2020-05-27 06:59:51'),(9298,'geography','34.201.141.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 08:25:36','2020-05-27 08:25:36'),(9299,'english','3.84.219.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 10:53:47','2020-05-27 10:53:47'),(9300,'chemistry','169.255.236.30',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:14:45','2020-05-27 11:16:08'),(9301,'chemistry','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:29:07','2020-05-27 12:32:12'),(9302,'physics','41.190.30.150',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:34:30','2020-05-27 12:20:54'),(9303,'economics','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:37:24','2020-05-27 12:37:24'),(9304,'government','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:40:47','2020-05-27 12:23:05'),(9305,'biology','41.190.30.150',79,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:43:55','2020-05-27 12:19:37'),(9306,'biology','34.228.70.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:47:18','2020-05-27 11:47:18'),(9307,'mathematics','41.190.30.150',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:48:42','2020-05-27 12:17:48'),(9308,'english','41.190.30.150',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:50:16','2020-05-27 12:13:47'),(9309,'geography','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:53:34','2020-05-27 12:15:29'),(9310,'history','41.190.30.150',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:57:18','2020-05-27 11:57:22'),(9311,'englishlit','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 12:01:50','2020-05-27 12:07:14'),(9312,'chemistry','34.204.193.85',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 15:13:53','2020-05-27 15:45:24'),(9313,'currentaffairs','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:35:28','2020-05-27 17:35:28'),(9314,'civiledu','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:48:39','2020-05-27 17:48:39'),(9315,'chemistry','41.190.14.68',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:10','2020-05-27 17:54:19'),(9316,'english','41.190.14.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:32','2020-05-27 17:51:35'),(9317,'english','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:17:07','2020-05-27 20:17:07'),(9318,'chemistry','94.130.16.50',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:08','2020-05-27 20:36:12'),(9319,'biology','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:43','2020-05-27 20:33:43'),(9320,'accounting','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:51:21','2020-05-27 20:51:21'),(9321,'chemistry','154.66.36.151',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:46:00','2020-05-27 22:52:44'),(9322,'english','154.66.36.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:48:02','2020-05-27 22:48:02'),(9323,'chemistry','105.112.70.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 23:32:12','2020-05-27 23:32:12'),(9324,'chemistry','157.55.39.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 03:31:42','2020-05-28 03:31:42'),(9325,'english','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:40','2020-05-28 04:32:41'),(9326,'mathematics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9327,'biology','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9328,'economics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9329,'irk','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9330,'insurance','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9331,'history','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9332,'chemistry','196.32.235.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:01:12','2020-05-28 05:01:12'),(9333,'chemistry','129.205.112.224',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:51:40','2020-05-28 05:53:11'),(9334,'mathematics','129.205.112.224',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:55:48','2020-05-28 05:59:02'),(9335,'chemistry','82.145.210.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:57:23','2020-05-28 05:57:23'),(9336,'chemistry','185.26.180.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 07:18:49','2020-05-28 07:18:49'),(9337,'geography','54.196.45.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:04:20','2020-05-28 09:04:20'),(9338,'chemistry','197.210.226.225',105,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:25:44','2020-05-28 10:24:13'),(9339,'chemistry','197.210.226.44',55,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:27:16','2020-05-28 10:22:52'),(9340,'chemistry','197.210.227.211',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:30:21','2020-05-28 10:21:54'),(9341,'english','197.210.227.211',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:54:07','2020-05-28 09:54:10'),(9342,'english','197.210.226.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:55:01','2020-05-28 09:55:04'),(9343,'english','197.210.226.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 10:03:53','2020-05-28 10:09:18'),(9344,'physics','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:10:25','2020-05-28 13:10:25'),(9345,'chemistry','197.210.44.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:26:05','2020-05-28 13:26:05'),(9346,'government','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:29:47','2020-05-28 13:29:47'),(9347,'chemistry','197.210.52.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:54:51','2020-05-28 14:08:36'),(9348,'chemistry','197.210.52.59',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:57:55','2020-05-28 13:57:55'),(9349,'chemistry','197.210.52.25',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:58:05','2020-05-28 13:58:13'),(9350,'chemistry','197.210.52.232',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:06:52','2020-05-28 14:06:55'),(9351,'chemistry','197.210.53.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:08:55','2020-05-28 14:53:41'),(9352,'chemistry','197.210.52.82',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:19:48','2020-05-28 14:54:31'),(9353,'chemistry','197.210.53.190',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:14','2020-05-28 14:53:55'),(9354,'insurance','197.210.53.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:51','2020-05-28 14:49:51'),(9355,'physics','197.210.53.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:50:15','2020-05-28 14:50:15'),(9356,'mathematics','197.210.53.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:51:48','2020-05-28 14:52:01'),(9357,'mathematics','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:34','2020-05-28 14:52:34'),(9358,'english','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:52','2020-05-28 14:52:52'),(9359,'english','197.210.52.82',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:07','2020-05-28 14:53:16'),(9360,'chemistry','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:33','2020-05-28 14:53:33'),(9361,'insurance','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:20:04','2020-05-28 15:20:04'),(9362,'chemistry','129.205.112.208',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:37:00','2020-05-28 15:38:41'),(9363,'crk','18.208.110.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:19:54','2020-05-28 17:19:54'),(9364,'chemistry','129.56.80.227',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:42:36','2020-05-28 17:57:17'),(9365,'chemistry','197.210.226.198',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 18:07:17','2020-05-28 19:14:47'),(9366,'chemistry','197.210.226.91',1562,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:09:38','2020-05-28 20:03:58'),(9367,'chemistry','197.210.226.220',2081,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:11:37','2020-05-28 20:03:48'),(9368,'english','197.210.226.220',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:05:42','2020-05-28 20:15:39'),(9369,'english','197.210.226.91',1080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:06:07','2020-05-28 20:15:26'),(9370,'english','197.210.226.198',2840,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:07:48','2020-05-28 20:15:35'),(9371,'mathematics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:07','2020-05-28 20:23:22'),(9372,'mathematics','197.210.226.91',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:15','2020-05-28 20:25:33'),(9373,'biology','197.210.226.198',1480,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:01','2020-05-28 20:41:32'),(9374,'biology','197.210.226.91',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:14','2020-05-28 20:41:25'),(9375,'civiledu','197.210.226.198',1960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:42:54','2020-05-28 21:07:50'),(9376,'civiledu','197.210.226.91',1560,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:43:16','2020-05-28 21:09:58'),(9377,'civiledu','197.210.226.220',1320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:45:38','2020-05-28 21:10:08'),(9378,'physics','197.210.226.220',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:19','2020-05-28 20:49:51'),(9379,'physics','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:27','2020-05-28 20:49:39'),(9380,'government','197.210.226.91',1400,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:05','2020-05-28 20:57:45'),(9381,'government','197.210.226.220',960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:12','2020-05-28 20:57:41'),(9382,'government','197.210.226.198',1680,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:52:42','2020-05-28 20:56:48'),(9383,'insurance','197.210.226.91',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:58:57','2020-05-28 21:03:46'),(9384,'insurance','197.210.226.220',1360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:59:01','2020-05-28 21:03:58'),(9385,'history','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:48','2020-05-28 21:02:54'),(9386,'history','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:53','2020-05-28 21:02:49'),(9387,'geography','197.210.226.91',760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:05:51','2020-05-28 21:08:55'),(9388,'geography','197.210.226.198',640,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:06:05','2020-05-28 21:07:54'),(9389,'geography','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:07:55','2020-05-28 21:08:51'),(9390,'economics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:09:59','2020-05-28 21:15:23'),(9391,'economics','197.210.226.91',1160,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:15','2020-05-28 21:15:30'),(9392,'economics','197.210.226.198',1720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:42','2020-05-28 21:15:34'),(9393,'commerce','197.210.226.91',1760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:15','2020-05-28 21:17:42'),(9394,'commerce','197.210.226.198',2080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:19','2020-05-28 21:17:46'),(9395,'commerce','197.210.226.220',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:14:56','2020-05-28 21:15:26'),(9396,'geography','3.82.229.138',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 22:59:25','2020-05-28 22:59:25'),(9397,'chemistry','54.36.148.3',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 23:37:10','2020-05-28 23:37:10'),(9398,'chemistry','54.36.148.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:24:10','2020-05-29 00:24:10'),(9399,'chemistry','54.36.148.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:31:09','2020-05-29 00:31:09'),(9400,'geography','54.164.65.241',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:26:22','2020-05-29 01:59:55'),(9401,'economics','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:34:57','2020-05-29 01:34:57'),(9402,'english','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 02:28:56','2020-05-29 02:28:56'),(9403,'mathematics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9404,'biology','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9405,'government','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9406,'geography','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9407,'economics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9408,'currentaffairs','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9409,'history','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9410,'geography','54.164.210.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:31:40','2020-05-29 08:31:40'),(9411,'chemistry','197.210.64.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:43:12','2020-05-29 21:25:53'),(9412,'physics','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:30:46','2020-05-29 09:30:46'),(9413,'englishlit','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:48:29','2020-05-29 09:48:29'),(9414,'biology','3.85.236.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:29:11','2020-05-29 11:29:11'),(9415,'chemistry','34.239.119.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:51:20','2020-05-29 11:51:20'),(9416,'chemistry','185.20.6.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:58:05','2020-05-29 11:58:05'),(9417,'currentaffairs','54.85.98.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 12:25:10','2020-05-29 12:25:10'),(9418,'physics','3.81.136.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 15:59:43','2020-05-29 15:59:43'),(9419,'mathematics','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 16:57:16','2020-05-29 16:57:16'),(9420,'geography','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 17:11:25','2020-05-29 17:11:25'),(9421,'geography','3.86.16.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:01:00','2020-05-29 19:01:00'),(9422,'mathematics','34.229.23.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:42:00','2020-05-29 19:42:00'),(9423,'government','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:04:38','2020-05-29 21:04:38'),(9424,'history','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:37:50','2020-05-29 21:37:50'),(9425,'mathematics','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:09:44','2020-05-29 23:09:44'),(9426,'accounting','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:39:35','2020-05-29 23:39:35'),(9427,'mathematics','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:47'),(9428,'commerce','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:48'),(9429,'accounting','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9430,'biology','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9431,'geography','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9432,'irk','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9433,'currentaffairs','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9434,'accounting','3.89.232.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 08:21:13','2020-05-30 08:21:13'),(9435,'biology','54.208.77.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 11:46:23','2020-05-30 11:46:23'),(9436,'chemistry','144.76.56.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 17:12:22','2020-05-30 17:12:22'),(9437,'accounting','3.94.91.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 18:38:25','2020-05-30 18:38:25'),(9438,'insurance','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 11:49:35','2020-06-01 11:49:35'),(9439,'economics','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 12:10:32','2020-06-01 12:10:32'),(9440,'english','54.159.64.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:04:44','2020-06-01 13:04:44'),(9441,'mathematics','52.2.222.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:49:07','2020-06-01 13:49:07'),(9442,'englishlit','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9443,'crk','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9444,'economics','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:42:44','2020-06-01 14:42:44'),(9445,'crk','54.174.23.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:33:34','2020-06-01 16:33:34'),(9446,'geography','54.174.23.76',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:19','2020-06-01 17:19:55'),(9447,'mathematics','54.174.23.76',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:29','2020-06-01 17:43:19'),(9448,'biology','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9449,'chemistry','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9450,'englishlit','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9451,'government','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9452,'economics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:55','2020-06-01 17:19:55'),(9453,'english','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:18','2020-06-01 17:43:18'),(9454,'accounting','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9455,'physics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9456,'insurance','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:20','2020-06-01 17:43:20'),(9457,'history','3.85.59.140',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 20:12:18','2020-06-01 20:33:55'),(9458,'physics','35.172.115.238',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 23:04:28','2020-06-01 23:04:28'),(9459,'english','54.209.246.16',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 01:03:57','2020-06-02 01:03:57'),(9460,'currentaffairs','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:01:14','2020-06-02 02:01:14'),(9461,'englishlit','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:06:10','2020-06-02 02:06:10'),(9462,'insurance','54.211.248.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 04:46:23','2020-06-02 04:46:23'),(9463,'crk','54.205.222.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 05:30:27','2020-06-02 05:30:27'),(9464,'economics','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:20:56','2020-06-02 06:20:56'),(9465,'chemistry','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:38:36','2020-06-02 06:38:36'),(9466,'englishlit','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 07:02:43','2020-06-02 07:02:43'),(9467,'government','54.196.8.56',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 08:34:31','2020-06-02 08:34:31'),(9468,'geography','54.86.69.81',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 10:40:11','2020-06-02 10:40:11'),(9469,'chemistry','41.190.12.59',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-02 10:55:51','2020-06-02 10:55:54'),(9470,'english','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 12:19:33','2020-06-02 12:19:33'),(9471,'economics','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 23:59:57','2020-06-02 23:59:57'),(9472,'currentaffairs','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 00:22:59','2020-06-03 00:22:59'),(9473,'civiledu','35.173.231.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 02:25:11','2020-06-03 02:25:11'),(9474,'english','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 04:48:53','2020-06-03 05:17:39'),(9475,'accounting','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9476,'government','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9477,'civiledu','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9478,'insurance','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9479,'currentaffairs','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:42'),(9480,'history','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9481,'biology','3.208.9.26',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:51:48','2020-06-03 05:51:48'),(9482,'accounting','3.81.96.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 06:39:27','2020-06-03 06:39:27'),(9483,'economics','34.228.56.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:19:49','2020-06-03 12:19:49'),(9484,'englishlit','34.228.56.210',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:47:48','2020-06-03 12:51:59'),(9485,'mathematics','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9486,'commerce','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9487,'accounting','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9488,'biology','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9489,'englishlit','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9490,'government','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9491,'crk','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9492,'geography','52.91.141.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 18:34:51','2020-06-03 18:34:51'),(9493,'mathematics','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:32','2020-06-03 19:33:45'),(9494,'commerce','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:54','2020-06-03 19:36:09'),(9495,'currentaffairs','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:05','2020-06-03 19:34:05'),(9496,'crk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:11','2020-06-03 19:35:12'),(9497,'chemistry','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:57','2020-06-03 19:36:15'),(9498,'irk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:26','2020-06-03 19:36:00'),(9499,'english','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:36','2020-06-03 19:35:36'),(9500,'englishlit','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:54:43','2020-06-03 19:54:43'),(9501,'government','54.85.212.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 21:33:59','2020-06-03 21:33:59'),(9502,'insurance','3.86.225.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 23:35:47','2020-06-03 23:35:47'),(9503,'crk','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 00:57:31','2020-06-04 00:57:31'),(9504,'physics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:23:50','2020-06-04 06:23:50'),(9505,'mathematics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:34:26','2020-06-04 06:34:26'),(9506,'geography','34.205.74.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 07:10:34','2020-06-04 07:10:34'),(9507,'economics','54.242.18.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 08:36:04','2020-06-04 08:36:04'),(9508,'geography','3.83.161.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:26:27','2020-06-04 10:53:11'),(9509,'english','3.83.161.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:49:32','2020-06-04 10:49:32'),(9510,'mathematics','54.91.240.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 12:15:58','2020-06-04 12:15:58'),(9511,'biology','3.87.239.123',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 15:09:53','2020-06-04 15:09:53'),(9512,'chemistry','41.190.12.5',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-04 15:57:02','2020-06-04 15:57:05'),(9513,'geography','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:22:59','2020-06-04 16:22:59'),(9514,'physics','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:23:13','2020-06-04 16:23:13'),(9515,'englishlit','3.94.109.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:58:33','2020-06-04 16:58:33'),(9516,'currentaffairs','54.159.111.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:11:39','2020-06-04 19:11:39'),(9517,'english','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:37:05','2020-06-04 19:37:08'),(9518,'mathematics','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:44:40','2020-06-04 19:51:52'),(9519,'biology','18.207.247.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:57:06','2020-06-04 19:57:06'),(9520,'physics','54.196.42.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 00:29:32','2020-06-05 00:29:32'),(9521,'geography','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 02:42:52','2020-06-05 02:42:52'),(9522,'government','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:47','2020-06-05 03:06:47'),(9523,'mathematics','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:51','2020-06-05 03:06:51'),(9524,'history','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 07:51:51','2020-06-05 07:51:51'),(9525,'accounting','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 08:06:02','2020-06-05 08:06:02'),(9526,'accounting','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:31','2020-06-05 15:31:38'),(9527,'crk','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:41','2020-06-05 15:31:44'),(9528,'accounting','54.160.137.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 17:41:28','2020-06-05 17:41:28'),(9529,'biology','18.205.22.3',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:49:31','2020-06-05 18:55:02'),(9530,'commerce','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:01','2020-06-05 18:55:02'),(9531,'accounting','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9532,'government','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9533,'economics','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9534,'insurance','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9535,'history','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9536,'history','52.91.27.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 23:09:41','2020-06-05 23:09:41'),(9537,'history','3.85.77.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 01:06:10','2020-06-06 01:06:10'),(9538,'accounting','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:12:01','2020-06-06 03:12:01'),(9539,'chemistry','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:28:00','2020-06-06 03:28:00'),(9540,'irk','3.91.16.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 05:27:37','2020-06-06 05:27:37'),(9541,'english','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9542,'physics','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9543,'englishlit','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9544,'government','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:40'),(9545,'economics','3.90.106.57',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 17:12:22'),(9546,'irk','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9547,'history','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9548,'commerce','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9549,'physics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9550,'chemistry','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9551,'crk','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9552,'economics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9553,'civiledu','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9554,'insurance','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9555,'insurance','52.207.159.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 15:54:55','2020-06-06 15:54:55'),(9556,'economics','52.70.110.33',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 18:01:25','2020-06-06 18:01:25'),(9557,'history','52.90.40.161',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 19:35:54','2020-06-06 20:01:45'),(9558,'accounting','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:44','2020-06-06 20:01:45'),(9559,'biology','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9560,'chemistry','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9561,'crk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9562,'irk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9563,'civiledu','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9564,'history','54.210.221.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 21:37:33','2020-06-06 21:37:33'),(9565,'economics','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:20:46','2020-06-07 00:20:46'),(9566,'englishlit','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:46:15','2020-06-07 00:46:15'),(9567,'english','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9568,'mathematics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9569,'physics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9570,'chemistry','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:16'),(9571,'government','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9572,'crk','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9573,'insurance','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9574,'irk','54.224.8.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 05:20:52','2020-06-07 05:20:52'),(9575,'commerce','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:08:43','2020-06-07 08:08:43'),(9576,'english','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:42:36','2020-06-07 08:42:36'),(9577,'crk','54.221.109.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 10:13:14','2020-06-07 10:13:14'),(9578,'economics','54.225.32.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:34:16','2020-06-07 12:34:16'),(9579,'english','52.72.124.107',400,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:53:32','2020-06-07 13:40:54'),(9580,'government','3.93.176.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 15:19:14','2020-06-07 15:19:14'),(9581,'chemistry','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:21:24','2020-06-07 17:21:24'),(9582,'economics','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:49:48','2020-06-07 17:49:48'),(9583,'government','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:52:13','2020-06-07 17:52:13'),(9584,'geography','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:53:52','2020-06-07 17:53:52'),(9585,'crk','105.112.176.254',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-07 19:15:46','2020-06-07 19:15:48'),(9586,'commerce','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:29:05','2020-06-07 21:29:05'),(9587,'english','54.90.107.82',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:36:38','2020-06-07 22:14:18'),(9588,'insurance','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:52:14','2020-06-07 21:52:14'),(9589,'english','54.83.121.94',680,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 23:24:33','2020-06-08 00:10:20'),(9590,'crk','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 00:57:41','2020-06-08 00:57:41'),(9591,'english','3.80.114.187',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:05:57','2020-06-08 01:07:20'),(9592,'civiledu','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:19:10','2020-06-08 01:19:10'),(9593,'englishlit','54.87.33.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 02:09:25','2020-06-08 02:09:25'),(9594,'english','54.196.250.109',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:14:09','2020-06-08 06:58:08'),(9595,'crk','3.80.171.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:47:50','2020-06-08 07:07:58'),(9596,'english','3.80.171.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:55:00','2020-06-08 06:55:00'),(9597,'english','54.167.101.91',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 13:03:52','2020-06-08 13:05:05'),(9598,'physics','3.95.171.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 15:20:45','2020-06-08 15:20:45'),(9599,'english','52.203.0.65',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 16:36:54','2020-06-08 16:36:54'),(9600,'english','34.201.76.45',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:10:20','2020-06-08 17:17:39'),(9601,'history','34.201.76.45',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:19:47','2020-06-08 17:19:50'),(9602,'englishlit','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:33:25','2020-06-08 17:33:25'),(9603,'currentaffairs','54.204.150.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:27:19','2020-06-08 18:27:19'),(9604,'history','3.87.156.54',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:58:06','2020-06-08 19:42:37'),(9605,'insurance','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:18:35','2020-06-08 20:18:35'),(9606,'crk','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:21:48','2020-06-08 20:21:48'),(9607,'englishlit','18.207.128.248',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:58:53','2020-06-08 20:58:53'),(9608,'chemistry','3.93.176.236',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 21:53:07','2020-06-08 21:53:07'),(9609,'economics','54.82.36.157',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 23:04:51','2020-06-08 23:04:51'),(9610,'government','54.86.240.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:01:33','2020-06-09 00:01:33'),(9611,'crk','3.85.86.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:37:54','2020-06-09 00:37:54'),(9612,'geography','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 02:38:55','2020-06-09 02:38:55'),(9613,'english','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:10:07','2020-06-09 03:10:07'),(9614,'history','3.83.163.75',680,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:12:41','2020-06-09 05:07:42'),(9615,'mathematics','3.83.163.75',320,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:02:16','2020-06-09 04:41:32'),(9616,'english','3.83.163.75',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:41:57','2020-06-09 05:07:46'),(9617,'history','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:33','2020-06-09 10:53:29'),(9618,'english','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:36','2020-06-09 10:53:32'),(9619,'mathematics','52.23.182.126',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 10:54:17','2020-06-09 11:12:18'),(9620,'mathematics','35.175.193.162',1596,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 14:27:00','2020-06-09 16:15:07'),(9621,'economics','54.204.126.52',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 15:24:33','2020-06-09 15:24:33'),(9622,'currentaffairs','54.91.74.154',3,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:21:57','2020-06-09 17:25:11'),(9623,'civiledu','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:24:52','2020-06-09 17:24:52'),(9624,'mathematics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9625,'government','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9626,'crk','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9627,'geography','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9628,'economics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:11'),(9629,'insurance','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:11','2020-06-09 17:25:11'),(9630,'history','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:06','2020-06-09 17:36:08'),(9631,'english','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:09','2020-06-09 17:36:12'),(9632,'history','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:51:30','2020-06-09 17:51:30'),(9633,'english','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 19:54:48','2020-06-09 19:54:48'),(9634,'economics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:09:36','2020-06-09 20:09:36'),(9635,'mathematics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:17:47','2020-06-09 20:17:47'),(9636,'biology','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:20:39','2020-06-09 20:20:39'),(9637,'accounting','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:32:25','2020-06-09 20:32:25'),(9638,'geography','54.175.242.92',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 22:47:17','2020-06-09 22:47:17'),(9639,'mathematics','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9640,'biology','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9641,'chemistry','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9642,'crk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9643,'geography','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:58'),(9644,'irk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9645,'insurance','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9646,'economics','3.94.91.40',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 06:49:53','2020-06-10 06:49:53'),(9647,'english','54.164.250.86',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 07:55:11','2020-06-10 07:55:14'),(9648,'biology','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:01','2020-06-10 10:14:17'),(9649,'english','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:04','2020-06-10 10:14:20'),(9650,'geography','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:43:01','2020-06-10 09:43:01'),(9651,'currentaffairs','34.228.169.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 10:40:47','2020-06-10 10:40:47'),(9652,'physics','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:41','2020-06-10 12:30:40'),(9653,'english','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:51','2020-06-10 12:30:44'),(9654,'physics','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:32:35','2020-06-10 12:32:35'),(9655,'government','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:52:28','2020-06-10 12:52:28'),(9656,'insurance','34.229.159.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 14:58:20','2020-06-10 14:58:20'),(9657,'mathematics','35.173.239.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 15:35:55','2020-06-10 15:35:55'),(9658,'crk','3.86.97.187',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 16:58:01','2020-06-10 16:58:01'),(9659,'history','34.229.88.249',470,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:16','2020-06-10 17:23:26'),(9660,'english','34.229.88.249',482,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:19','2020-06-10 17:23:29'),(9661,'history','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:02','2020-06-10 18:16:04'),(9662,'english','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:05','2020-06-10 18:16:08'),(9663,'mathematics','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:05:59','2020-06-10 22:05:59'),(9664,'geography','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:27:25','2020-06-10 22:27:25'),(9665,'geography','52.72.218.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:19:39','2020-06-11 01:19:39'),(9666,'english','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:59:15','2020-06-11 01:59:15'),(9667,'geography','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 02:27:07','2020-06-11 02:27:07'),(9668,'mathematics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:11:45','2020-06-11 03:11:45'),(9669,'englishlit','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:26:44','2020-06-11 03:26:44'),(9670,'economics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:33:39','2020-06-11 03:33:39'),(9671,'physics','54.237.231.196',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:12:05','2020-06-11 06:34:08'),(9672,'english','54.237.231.196',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:28:30','2020-06-11 06:34:10'),(9673,'geography','54.82.9.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 07:31:00','2020-06-11 07:31:00'),(9674,'physics','34.201.154.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 08:15:39','2020-06-11 08:15:39'),(9675,'englishlit','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:18:15','2020-06-11 09:18:15'),(9676,'currentaffairs','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:53:23','2020-06-11 09:53:23'),(9677,'geography','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 17:57:01','2020-06-11 17:57:01'),(9678,'chemistry','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:07:43','2020-06-11 18:07:43'),(9679,'government','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:18:55','2020-06-11 18:18:55'),(9680,'mathematics','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:29:47','2020-06-11 18:29:47'),(9681,'mathematics','34.204.107.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 20:09:41','2020-06-11 20:09:41'),(9682,'history','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:07:01','2020-06-11 21:07:01'),(9683,'accounting','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:15:15','2020-06-11 21:15:15'),(9684,'mathematics','54.81.240.233',280,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 06:45:16','2020-06-12 07:03:55'),(9685,'mathematics','54.162.119.234',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 07:52:29','2020-06-12 07:54:13'),(9686,'accounting','54.224.233.71',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 08:25:02','2020-06-12 08:25:02'),(9687,'mathematics','34.203.222.37',720,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-12 09:06:04','2020-06-12 09:50:04'),(9688,'mathematics','52.90.186.75',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:37:46','2020-06-12 10:44:14'),(9689,'biology','3.89.193.33',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:55:51','2020-06-12 10:55:51'),(9690,'englishlit','41.90.5.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:05:39','2020-06-12 13:05:41'),(9691,'history','54.236.252.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:33:09','2020-06-12 13:33:09'),(9692,'mathematics','3.81.215.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:39:44','2020-06-12 16:01:07'),(9693,'history','54.165.172.105',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:55:54','2020-06-12 15:55:54'),(9694,'accounting','3.86.93.233',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 17:29:11','2020-06-12 17:29:11'),(9695,'irk','3.208.21.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 20:36:13','2020-06-12 20:36:13'),(9696,'biology','54.152.97.16',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 22:32:45','2020-06-12 22:32:45'),(9697,'mathematics','54.226.209.23',800,'','US','','Virginia',NULL,NULL,'','','2020-06-12 23:38:09','2020-06-13 00:51:21'),(9698,'mathematics','52.91.175.68',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 01:40:43','2020-06-13 01:40:45'),(9699,'mathematics','54.152.163.102',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 02:16:58','2020-06-13 02:23:32'),(9700,'mathematics','54.163.49.62',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-13 06:48:30','2020-06-13 07:42:02'),(9701,'economics','3.80.186.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 07:05:55','2020-06-13 07:05:55'),(9702,'english','34.226.218.50',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:26:06','2020-06-13 08:33:08'),(9703,'insurance','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:28:58','2020-06-13 08:28:58'),(9704,'economics','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:55:48','2020-06-13 08:55:48'),(9705,'history','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 09:26:26','2020-06-13 09:26:26'),(9706,'history','34.235.159.175',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 11:48:21','2020-06-13 11:48:21'),(9707,'english','3.92.177.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 12:37:38','2020-06-13 12:37:38'),(9708,'englishlit','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:26:25','2020-06-13 14:26:25'),(9709,'economics','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:48:24','2020-06-13 14:48:24'),(9710,'irk','3.82.202.68',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 17:12:27','2020-06-13 17:12:27'),(9711,'mathematics','3.88.29.43',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 22:46:42','2020-06-13 22:46:45'),(9712,'english','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:02:32','2020-06-13 23:02:32'),(9713,'biology','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:10:31','2020-06-13 23:10:31'),(9714,'commerce','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:11:36','2020-06-13 23:11:36'),(9715,'crk','18.212.212.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 00:37:04','2020-06-14 00:37:04'),(9716,'economics','54.144.12.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 03:33:29','2020-06-14 03:33:29'),(9717,'government','18.215.251.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 05:40:04','2020-06-14 05:40:04'),(9718,'chemistry','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 06:42:21','2020-06-14 06:42:21'),(9719,'economics','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:03:38','2020-06-14 08:03:38'),(9720,'geography','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:07:21','2020-06-14 08:07:21'),(9721,'commerce','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:44:47','2020-06-14 08:44:47'),(9722,'biology','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:49:18','2020-06-14 08:49:18'),(9723,'insurance','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 11:39:05','2020-06-14 11:39:05'),(9724,'crk','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 12:49:53','2020-06-14 12:49:53'),(9725,'government','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 13:52:33','2020-06-14 13:52:33'),(9726,'civiledu','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:41:47','2020-06-14 15:41:47'),(9727,'english','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:45:01','2020-06-14 15:45:01'),(9728,'englishlit','34.207.148.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 16:28:31','2020-06-14 16:28:31'),(9729,'chemistry','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:15:57','2020-06-14 22:15:57'),(9730,'crk','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:29:17','2020-06-14 22:29:17'),(9731,'history','54.83.174.162',560,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:21','2020-06-15 02:23:52'),(9732,'english','54.83.174.162',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:28','2020-06-15 02:23:55'),(9733,'english','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:12:28','2020-06-15 06:12:28'),(9734,'englishlit','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:21:57','2020-06-15 06:21:57'),(9735,'currentaffairs','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:11:29','2020-06-15 08:11:29'),(9736,'physics','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:22:03','2020-06-15 08:22:03'),(9737,'crk','18.212.75.232',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 09:01:28','2020-06-15 09:01:28'),(9738,'englishlit','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:24:36','2020-06-15 10:24:36'),(9739,'insurance','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:29:58','2020-06-15 10:29:58'),(9740,'chemistry','54.172.215.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:11:58','2020-06-15 12:11:58'),(9741,'history','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:21:57','2020-06-15 12:23:22'),(9742,'english','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:22:00','2020-06-15 12:23:25'),(9743,'economics','184.73.145.115',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 13:15:25','2020-06-15 13:15:25'),(9744,'government','54.84.68.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 14:07:49','2020-06-15 14:07:49'),(9745,'crk','34.239.49.32',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 15:22:17','2020-06-15 15:22:17'),(9746,'english','54.242.223.207',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 16:33:06','2020-06-15 16:33:06'),(9747,'geography','54.242.223.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 16:43:55','2020-06-15 16:43:55'),(9748,'englishlit','41.80.97.78',40,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-06-16 02:45:58','2020-06-16 02:46:01'),(9749,'history','54.172.25.21',1840,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:41','2020-06-16 07:01:25'),(9750,'english','54.172.25.21',2080,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:44','2020-06-16 07:11:56'),(9751,'economics','3.82.194.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 04:52:57','2020-06-16 04:52:57'),(9752,'currentaffairs','52.54.215.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-16 05:58:53','2020-06-16 05:58:53'),(9753,'civiledu','34.205.23.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 07:14:44','2020-06-16 07:14:44'),(9754,'english','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 09:59:20','2020-06-16 09:59:20'),(9755,'history','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:29','2020-06-16 10:27:07'),(9756,'english','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:32','2020-06-16 10:27:10'),(9757,'accounting','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:15:35','2020-06-16 10:15:35'),(9758,'biology','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:36:24','2020-06-16 10:36:24'),(9759,'physics','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:16:12','2020-06-16 13:22:05'),(9760,'english','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:17:24','2020-06-16 13:22:09'),(9761,'history','34.224.165.104',480,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:48','2020-06-16 15:44:51'),(9762,'english','34.224.165.104',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:51','2020-06-16 15:44:55'),(9763,'history','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:39','2020-06-16 18:19:42'),(9764,'english','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:44','2020-06-16 18:19:45'),(9765,'english','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:30'),(9766,'accounting','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:31'),(9767,'biology','18.205.237.24',2,'','US','','Virginia',NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9768,'physics','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9769,'government','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9770,'currentaffairs','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9771,'history','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9772,'geography','54.92.200.132',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 22:39:24','2020-06-16 22:39:24'),(9773,'physics','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 01:48:53','2020-06-17 01:48:53'),(9774,'government','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 02:03:54','2020-06-17 02:03:54'),(9775,'englishlit','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:26:11','2020-06-17 03:26:11'),(9776,'insurance','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:55:22','2020-06-17 03:55:22'),(9777,'biology','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:51','2020-06-17 05:30:54'),(9778,'english','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:54','2020-06-17 05:30:56'),(9779,'english','3.90.249.44',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 09:46:18','2020-06-17 09:46:55'),(9780,'chemistry','105.112.87.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-17 09:58:18','2020-06-17 09:58:20'),(9781,'chemistry','66.249.88.14',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-06-17 09:59:01','2020-06-17 09:59:04'),(9782,'mathematics','3.88.138.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 10:39:06','2020-06-17 10:39:06'),(9783,'geography','34.229.135.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:18:07','2020-06-17 11:18:07'),(9784,'economics','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:30','2020-06-17 11:34:32'),(9785,'english','35.174.4.0',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:32','2020-06-17 12:40:24'),(9786,'commerce','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:38:34','2020-06-17 12:38:36'),(9787,'history','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:40:18','2020-06-17 12:40:21'),(9788,'economics','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:13:12','2020-06-17 14:13:12'),(9789,'geography','18.205.18.35',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:36:52','2020-06-17 14:55:05'),(9790,'english','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 15:17:53','2020-06-17 15:17:53'),(9791,'english','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:50','2020-06-17 20:31:50'),(9792,'mathematics','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9793,'biology','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9794,'physics','54.161.200.177',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 21:32:59'),(9795,'chemistry','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9796,'irk','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9797,'civiledu','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9798,'geography','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:59:12','2020-06-17 20:59:12'),(9799,'englishlit','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 22:04:38','2020-06-17 22:04:38'),(9800,'biology','3.80.178.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 23:41:46','2020-06-17 23:41:46'),(9801,'currentaffairs','18.234.191.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 00:56:37','2020-06-18 00:56:37'),(9802,'physics','34.228.64.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 03:47:00','2020-06-18 03:47:00'),(9803,'mathematics','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:16:20','2020-06-18 06:16:20'),(9804,'geography','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:41:02','2020-06-18 06:41:02'),(9805,'mathematics','34.230.69.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 07:24:35','2020-06-18 07:24:35'),(9806,'government','23.20.220.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:17:08','2020-06-18 08:17:08'),(9807,'commerce','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:15','2020-06-18 08:57:15'),(9808,'accounting','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9809,'englishlit','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9810,'geography','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9811,'economics','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9812,'insurance','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9813,'history','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9814,'history','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 09:42:52','2020-06-18 09:42:52'),(9815,'mathematics','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:15:46','2020-06-18 10:15:46'),(9816,'accounting','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:16:19','2020-06-18 10:16:19'),(9817,'accounting','54.210.194.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 22:40:17','2020-06-18 22:40:17'),(9818,'biology','3.80.246.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 23:21:08','2020-06-18 23:21:08'),(9819,'history','54.83.113.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 02:45:33','2020-06-19 02:45:33'),(9820,'accounting','52.90.48.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 06:38:29','2020-06-19 06:38:29'),(9821,'irk','52.201.246.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 08:58:17','2020-06-19 08:58:17'),(9822,'economics','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:17:42','2020-06-19 21:17:42'),(9823,'insurance','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:35:24','2020-06-19 21:35:24'),(9824,'economics','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:10:39','2020-06-19 23:10:39'),(9825,'history','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:30:20','2020-06-19 23:30:20'),(9826,'economics','54.196.106.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 02:31:48','2020-06-20 02:31:48'),(9827,'englishlit','18.233.155.89',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 04:55:13','2020-06-20 04:55:13'),(9828,'history','52.91.173.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 06:51:56','2020-06-20 06:51:56'),(9829,'irk','52.203.62.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 09:34:33','2020-06-20 09:34:33'),(9830,'english','54.87.80.5',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:00:50','2020-06-20 12:00:50'),(9831,'commerce','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:48:20','2020-06-20 13:11:36'),(9832,'mathematics','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:36'),(9833,'biology','54.165.162.104',37,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:12:18'),(9834,'englishlit','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:28'),(9835,'crk','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:33:04'),(9836,'economics','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:17'),(9837,'irk','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:58'),(9838,'civiledu','54.165.162.104',23,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:25'),(9839,'english','54.165.162.104',22,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:11:35'),(9840,'accounting','54.165.162.104',25,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9841,'government','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9842,'insurance','54.165.162.104',14,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:10:29'),(9843,'currentaffairs','54.165.162.104',26,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:12:18'),(9844,'geography','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:42','2020-06-20 13:11:16'),(9845,'physics','54.165.162.104',32,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:46','2020-06-20 13:12:18'),(9846,'history','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:57','2020-06-20 13:12:19'),(9847,'chemistry','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:07:22','2020-06-20 13:10:58'),(9848,'economics','54.145.114.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 16:22:38','2020-06-20 16:22:38'),(9849,'government','18.207.167.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 17:33:28','2020-06-20 17:33:28'),(9850,'chemistry','34.229.200.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 18:50:32','2020-06-20 18:50:32'),(9851,'geography','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 20:55:26','2020-06-20 20:55:26'),(9852,'commerce','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:27:07','2020-06-20 21:27:07'),(9853,'biology','54.234.45.227',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:34:23','2020-06-20 22:01:46'),(9854,'english','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:03:31','2020-06-21 00:03:31'),(9855,'insurance','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:07:20','2020-06-21 00:07:20'),(9856,'crk','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:30:51','2020-06-21 00:30:51'),(9857,'english','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:08:21','2020-06-21 03:08:21'),(9858,'englishlit','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:28:58','2020-06-21 03:28:58'),(9859,'civiledu','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:13:32','2020-06-21 04:13:32'),(9860,'crk','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:36:06','2020-06-21 04:36:06'),(9861,'government','54.227.23.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 10:01:04','2020-06-21 10:01:04'),(9862,'history','18.206.211.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 12:36:25','2020-06-21 12:36:25'),(9863,'physics','3.80.240.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 15:52:13','2020-06-21 15:52:13'),(9864,'englishlit','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:00:57','2020-06-21 17:00:57'),(9865,'english','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:13:38','2020-06-21 17:13:38'),(9866,'currentaffairs','34.238.151.127',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 18:19:01','2020-06-21 18:19:01'),(9867,'crk','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:44:26','2020-06-21 21:44:26'),(9868,'englishlit','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:54:44','2020-06-21 21:54:44'),(9869,'economics','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:08:26','2020-06-21 22:08:26'),(9870,'chemistry','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:33:17','2020-06-21 22:33:17'),(9871,'insurance','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:20:32','2020-06-21 23:20:32'),(9872,'government','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:37:50','2020-06-21 23:37:50'),(9873,'crk','3.84.250.255',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 00:51:48','2020-06-22 00:51:48'),(9874,'geography','54.221.187.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 01:53:56','2020-06-22 01:53:56'),(9875,'english','18.209.110.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 03:40:04','2020-06-22 03:40:04'),(9876,'economics','34.230.36.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 13:54:50','2020-06-22 13:54:50'),(9877,'currentaffairs','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 15:38:47','2020-06-22 15:38:47'),(9878,'civiledu','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 16:11:57','2020-06-22 16:11:57'),(9879,'biology','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:24:35','2020-06-22 18:24:35'),(9880,'english','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:41:12','2020-06-22 18:41:12'),(9881,'accounting','54.90.154.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 20:56:27','2020-06-22 20:56:27'),(9882,'mathematics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9883,'accounting','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9884,'biology','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9885,'economics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9886,'insurance','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9887,'currentaffairs','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9888,'history','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9889,'geography','54.196.101.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 05:30:08','2020-06-23 05:30:08'),(9890,'physics','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:13:29','2020-06-23 09:13:29'),(9891,'government','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:42:29','2020-06-23 09:42:29'),(9892,'englishlit','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 10:04:23','2020-06-23 10:04:23'),(9893,'insurance','35.153.133.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 11:44:24','2020-06-23 11:44:24'),(9894,'crk','34.205.18.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:01:55','2020-06-23 13:07:27'),(9895,'government','34.205.18.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:39:31','2020-06-23 13:39:31'),(9896,'chemistry','41.190.30.186',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-23 14:36:31','2020-06-23 14:36:38'),(9897,'accounting','54.227.55.70',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 18:14:12','2020-06-23 18:14:12'),(9898,'mathematics','18.209.61.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 19:02:39','2020-06-23 19:02:39'),(9899,'geography','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:24:58','2020-06-23 20:24:58'),(9900,'economics','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:45:09','2020-06-23 20:45:09'),(9901,'geography','3.89.130.67',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 21:21:11','2020-06-23 21:21:11'),(9902,'geography','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:28:57','2020-06-23 22:28:57'),(9903,'english','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:39:49','2020-06-23 22:39:49'),(9904,'physics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 02:49:35','2020-06-24 02:49:35'),(9905,'mathematics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 03:07:03','2020-06-24 03:07:03'),(9906,'englishlit','54.158.85.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 04:02:10','2020-06-24 04:02:10'),(9907,'currentaffairs','18.204.209.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 05:53:24','2020-06-24 05:53:24'),(9908,'geography','54.158.151.153',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:14:42','2020-06-24 07:14:42'),(9909,'biology','54.81.22.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:52:37','2020-06-24 07:52:37'),(9910,'physics','34.207.160.124',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 12:25:46','2020-06-24 12:25:46'),(9911,'geography','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:49:47','2020-06-24 14:49:47'),(9912,'mathematics','107.21.199.228',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:55:40','2020-06-24 15:41:17'),(9913,'government','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 15:12:17','2020-06-24 15:12:17'),(9914,'mathematics','54.162.201.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 16:28:06','2020-06-24 16:28:06'),(9915,'accounting','18.206.251.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 04:06:31','2020-06-25 04:06:31'),(9916,'biology','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 05:08:21','2020-06-25 05:08:21'),(9917,'history','3.84.8.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 08:20:25','2020-06-25 08:20:25'),(9918,'history','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:40:28','2020-06-25 09:40:28'),(9919,'english','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:50:38','2020-06-25 09:50:38'),(9920,'accounting','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 12:06:48','2020-06-25 12:06:48'),(9921,'irk','54.234.51.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 14:44:49','2020-06-25 14:44:49'),(9922,'economics','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 02:40:10','2020-06-26 02:40:10'),(9923,'insurance','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 03:05:31','2020-06-26 03:05:31'),(9924,'history','52.90.69.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 05:53:52','2020-06-26 05:53:52'),(9925,'history','34.207.74.169',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 06:38:00','2020-06-26 06:38:00'),(9926,'englishlit','54.91.84.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 08:40:21','2020-06-26 08:40:21'),(9927,'irk','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:42:58','2020-06-26 09:42:58'),(9928,'economics','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:46:26','2020-06-26 09:46:26'),(9929,'commerce','54.175.1.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 12:27:10','2020-06-26 12:27:10'),(9930,'english','3.94.119.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 15:45:31','2020-06-26 15:45:31'),(9931,'crk','18.207.229.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 17:10:47','2020-06-26 17:10:47'),(9932,'accounting','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9933,'biology','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9934,'crk','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9935,'physics','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9936,'economics','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9937,'chemistry','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9938,'irk','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9939,'insurance','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9940,'currentaffairs','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9941,'history','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9942,'history','54.236.208.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9943,'economics','34.205.32.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 20:26:36','2020-06-26 20:26:36'),(9944,'chemistry','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:19:29','2020-06-26 22:19:29'),(9945,'government','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:28:09','2020-06-26 22:28:09'),(9946,'geography','3.87.90.156',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 00:28:07','2020-06-27 00:28:07'),(9947,'crk','35.175.174.168',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 13:22:54','2020-06-27 13:22:54'),(9948,'government','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 18:54:24','2020-06-27 18:54:24'),(9949,'history','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 19:36:24','2020-06-27 19:36:24'),(9950,'mathematics','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:03:20','2020-06-27 20:03:20'),(9951,'physics','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:47:39','2020-06-27 20:47:39'),(9952,'biology','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:49:44','2020-06-27 20:49:44'),(9953,'currentaffairs','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:41:30','2020-06-27 22:47:05'),(9954,'english','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 23:00:09'),(9955,'biology','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 22:47:05'),(9956,'government','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9957,'geography','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9958,'insurance','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9959,'history','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9960,'mathematics','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:08:42','2020-06-27 23:08:42'),(9961,'englishlit','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:16:39','2020-06-27 23:16:39'),(9962,'english','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:05:48','2020-06-28 00:26:33'),(9963,'crk','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:22:50','2020-06-28 00:32:46'),(9964,'insurance','3.90.110.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:16:59','2020-06-28 02:16:59'),(9965,'englishlit','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:55:43','2020-06-28 02:55:43'),(9966,'crk','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:06:30','2020-06-28 03:06:30'),(9967,'chemistry','34.227.105.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:45:11','2020-06-28 03:45:11'),(9968,'economics','54.152.205.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 05:31:01','2020-06-28 05:31:01'),(9969,'geography','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:34:01','2020-06-28 06:34:01'),(9970,'economics','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:52:00','2020-06-28 06:52:00'),(9971,'economics','54.236.22.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 12:40:35','2020-06-28 12:40:35'),(9972,'currentaffairs','100.26.43.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 13:51:22','2020-06-28 13:51:22'),(9973,'mathematics','34.201.45.145',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:38:42','2020-06-28 16:38:42'),(9974,'commerce','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9975,'accounting','34.201.45.145',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:53:13'),(9976,'biology','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9977,'chemistry','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9978,'geography','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9979,'irk','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9980,'insurance','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:23','2020-06-28 16:39:23'),(9981,'english','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9982,'biology','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9983,'physics','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9984,'chemistry','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9985,'englishlit','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9986,'civiledu','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:28'),(9987,'currentaffairs','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:28','2020-06-28 23:19:28'),(9988,'geography','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:24:53','2020-06-29 01:24:53'),(9989,'history','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:51:44','2020-06-29 01:51:44'),(9990,'englishlit','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:10:38','2020-06-29 02:10:38'),(9991,'english','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:15:48','2020-06-29 02:15:48'),(9992,'physics','18.232.165.163',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 05:11:32','2020-06-29 05:11:32'),(9993,'chemistry','35.172.134.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 06:37:11','2020-06-29 06:37:11'),(9994,'chemistry','54.85.126.38',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:18:44','2020-06-29 10:18:44'),(9995,'biology','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:59:34','2020-06-29 10:59:34'),(9996,'accounting','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:24:56','2020-06-29 11:24:56'),(9997,'geography','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:33:40','2020-06-29 11:33:40'),(9998,'mathematics','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:38:46','2020-06-29 11:38:46'),(9999,'mathematics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 13:50:54','2020-06-29 13:50:54'),(10000,'geography','3.84.39.14',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:15:45','2020-06-29 14:49:49'),(10001,'economics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:32:34','2020-06-29 14:32:34'),(10002,'english','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 15:13:58','2020-06-29 15:13:58'),(10003,'mathematics','54.172.215.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 16:01:15','2020-06-29 16:01:15'),(10004,'physics','54.167.221.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 20:53:21','2020-06-29 20:53:21'),(10005,'currentaffairs','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 21:44:22','2020-06-29 21:44:22'),(10006,'englishlit','3.87.114.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 23:55:57','2020-06-29 23:55:57'),(10007,'biology','54.165.2.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 00:45:46','2020-06-30 00:45:46'),(10008,'chemistry','54.166.139.196',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 02:22:51','2020-06-30 02:22:51'),(10009,'physics','3.92.221.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 03:02:17','2020-06-30 03:02:17'),(10010,'mathematics','184.72.82.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 04:50:03','2020-06-30 04:50:03'),(10011,'government','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 06:53:24','2020-06-30 06:53:24'),(10012,'mathematics','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:00:07','2020-06-30 07:00:07'),(10013,'geography','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:09:39','2020-06-30 07:09:39'),(10014,'mathematics','52.202.65.159',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 08:52:07','2020-06-30 08:52:07'),(10015,'history','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:08:39','2020-06-30 09:37:56'),(10016,'accounting','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 10:04:26'),(10017,'physics','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 09:37:55'),(10018,'chemistry','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10019,'englishlit','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10020,'irk','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10021,'civiledu','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10022,'english','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:00','2020-06-30 15:33:00'),(10023,'commerce','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10024,'accounting','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10025,'chemistry','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10026,'government','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10027,'geography','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10028,'civiledu','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10029,'accounting','52.55.83.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 17:10:09','2020-06-30 17:10:09'),(10030,'biology','54.89.237.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:04:39','2020-06-30 19:04:39'),(10031,'commerce','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10032,'accounting','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10033,'chemistry','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10034,'irk','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10035,'civiledu','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10036,'insurance','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10037,'currentaffairs','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10038,'biology','54.234.3.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 20:15:32','2020-06-30 20:15:32'),(10039,'history','34.227.88.114',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 21:38:23','2020-06-30 21:38:23'),(10040,'history','54.86.39.12',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 22:33:09','2020-06-30 22:33:09'),(10041,'accounting','54.172.57.23',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 01:19:58','2020-07-01 01:19:58'),(10042,'irk','3.86.160.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 04:51:36','2020-07-01 04:51:36'),(10043,'chemistry','54.91.179.155',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 08:07:07','2020-07-01 08:07:07'),(10044,'physics','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 10:50:24','2020-07-01 10:50:24'),(10045,'economics','23.20.242.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 11:31:17','2020-07-01 11:31:17'),(10046,'insurance','54.87.197.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 12:53:01','2020-07-01 12:53:01'),(10047,'economics','3.91.214.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 14:03:22','2020-07-01 14:03:22'),(10048,'history','54.84.225.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 15:25:35','2020-07-01 15:25:35'),(10049,'history','3.94.169.218',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 16:02:27','2020-07-01 16:02:27'),(10050,'economics','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 17:46:59','2020-07-01 17:46:59'),(10051,'irk','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:20:57','2020-07-01 18:20:57'),(10052,'englishlit','54.84.229.165',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:58:33','2020-07-01 18:58:33'),(10053,'commerce','34.228.230.135',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 00:24:39','2020-07-02 00:24:39'),(10054,'english','52.91.78.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 01:41:45','2020-07-02 01:41:45'),(10055,'crk','184.72.205.154',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 02:39:16','2020-07-02 02:39:16'),(10056,'economics','52.91.54.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 04:40:45','2020-07-02 04:40:45'),(10057,'chemistry','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:11:03','2020-07-02 06:11:03'),(10058,'government','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:42:32','2020-07-02 06:42:32'),(10059,'government','34.239.131.100',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:04:51','2020-07-02 08:04:51'),(10060,'economics','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:41:05','2020-07-02 08:41:05'),(10061,'commerce','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:56:42','2020-07-02 08:56:42'),(10062,'geography','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:38:08','2020-07-02 09:38:08'),(10063,'biology','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:54:27','2020-07-02 09:54:27'),(10064,'crk','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:13:25','2020-07-02 11:13:25'),(10065,'insurance','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:14:35','2020-07-02 11:14:35'),(10066,'english','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:36:17','2020-07-02 11:36:17'),(10067,'english','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:32:13','2020-07-02 14:32:13'),(10068,'englishlit','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:43:14','2020-07-02 14:43:14'),(10069,'crk','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:08:57','2020-07-02 15:08:57'),(10070,'civiledu','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:35:16','2020-07-02 15:35:16'),(10071,'physics','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:42:25','2020-07-02 15:42:25'),(10072,'economics','54.234.26.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 16:32:16','2020-07-02 16:32:16'),(10073,'crk','34.201.40.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 17:47:14','2020-07-02 17:47:14'),(10074,'history','54.164.23.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 21:46:06','2020-07-02 21:46:06'),(10075,'government','3.84.186.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 22:58:39','2020-07-02 22:58:39'),(10076,'physics','18.208.193.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:11:53','2020-07-03 00:11:53'),(10077,'biology','54.160.208.244',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:48:21','2020-07-03 00:48:21'),(10078,'englishlit','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:15:26','2020-07-03 02:15:26'),(10079,'english','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:23:09','2020-07-03 02:23:09'),(10080,'currentaffairs','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:26:38','2020-07-03 04:26:38'),(10081,'insurance','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:57:52','2020-07-03 04:57:52'),(10082,'englishlit','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:03:51','2020-07-03 05:03:51'),(10083,'economics','54.172.4.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:40:21','2020-07-03 05:40:21'),(10084,'crk','204.236.197.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:18:22','2020-07-03 06:18:22'),(10085,'chemistry','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:58:20','2020-07-03 06:58:20'),(10086,'economics','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 07:05:43','2020-07-03 07:05:43'),(10087,'government','34.235.117.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:09:45','2020-07-03 08:09:45'),(10088,'crk','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:52:38','2020-07-03 08:52:38'),(10089,'geography','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 09:01:32','2020-07-03 09:01:32'),(10090,'english','54.144.92.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 11:49:20','2020-07-03 11:49:20'),(10091,'currentaffairs','54.89.189.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 21:42:09','2020-07-03 21:42:09'),(10092,'civiledu','54.91.226.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 22:22:22','2020-07-03 22:22:22'),(10093,'english','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:22:03','2020-07-04 00:22:03'),(10094,'biology','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:38:50','2020-07-04 00:38:50'),(10095,'history','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:48:34','2020-07-04 01:48:34'),(10096,'accounting','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:56:25','2020-07-04 01:56:25'),(10097,'history','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:54','2020-07-04 06:18:57'),(10098,'english','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:57','2020-07-04 06:19:00'),(10099,'mathematics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10100,'accounting','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10101,'physics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10102,'englishlit','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10103,'crk','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10104,'geography','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10105,'civiledu','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10106,'history','54.162.152.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 09:43:19','2020-07-04 09:43:19'),(10107,'geography','3.93.171.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 10:35:06','2020-07-04 10:35:06'),(10108,'english','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:36:34','2020-07-04 11:36:34'),(10109,'englishlit','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:38:05','2020-07-04 11:38:05'),(10110,'crk','3.81.50.112',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 15:36:29','2020-07-04 15:36:29'),(10111,'physics','34.224.81.74',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 16:13:25','2020-07-04 16:13:25'),(10112,'mathematics','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:24:26','2020-07-04 19:24:26'),(10113,'biology','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:58:10','2020-07-04 19:58:10'),(10114,'geography','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:24:53','2020-07-04 20:24:53'),(10115,'accounting','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:51:26','2020-07-04 20:51:26'),(10116,'geography','54.152.35.97',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:04:02','2020-07-04 22:04:02'),(10117,'mathematics','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:51:02','2020-07-04 22:51:02'),(10118,'geography','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:11:06','2020-07-04 23:11:06'),(10119,'english','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:13:22','2020-07-04 23:13:22'),(10120,'mathematics','184.72.78.80',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 00:30:41','2020-07-05 00:30:41'),(10121,'physics','18.234.140.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 03:22:51','2020-07-05 03:22:51'),(10122,'englishlit','54.81.208.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 04:42:18','2020-07-05 04:42:18'),(10123,'currentaffairs','3.92.239.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 05:50:06','2020-07-05 05:50:06'),(10124,'biology','3.94.250.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 07:05:26','2020-07-05 07:05:26'),(10125,'mathematics','18.234.172.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 10:56:25','2020-07-05 10:56:25'),(10126,'history','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:16:14','2020-07-05 14:16:14'),(10127,'accounting','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:18:21','2020-07-05 14:18:21'),(10128,'government','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:30','2020-07-05 18:09:38'),(10129,'insurance','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:32','2020-07-05 18:09:42'),(10130,'mathematics','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:34','2020-07-05 18:09:46'),(10131,'chemistry','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:36','2020-07-05 18:09:40'),(10132,'englishlit','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:44','2020-07-05 18:09:48'),(10133,'accounting','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:50','2020-07-05 18:09:52'),(10134,'accounting','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:25:43','2020-07-05 23:25:43'),(10135,'mathematics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10136,'commerce','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10137,'physics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10138,'chemistry','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10139,'economics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10140,'civiledu','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10141,'currentaffairs','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:09','2020-07-05 23:26:09'),(10142,'biology','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:48:59','2020-07-05 23:48:59'),(10143,'biology','100.24.36.11',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 01:28:52','2020-07-06 01:28:52'),(10144,'history','18.206.244.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 03:18:07','2020-07-06 03:18:07'),(10145,'history','54.89.235.4',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 04:39:50','2020-07-06 04:39:50'),(10146,'accounting','3.86.51.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 05:43:10','2020-07-06 05:43:10'),(10147,'physics','3.82.188.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 10:53:25','2020-07-06 10:53:25'),(10148,'physics','54.157.235.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 15:25:50','2020-07-06 15:25:50'),(10149,'economics','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:18:01','2020-07-06 16:18:01'),(10150,'insurance','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:25:30','2020-07-06 16:25:30'),(10151,'commerce','3.81.6.59',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 17:19:24','2020-07-06 17:19:24'),(10152,'economics','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:18:54','2020-07-06 18:18:54'),(10153,'history','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:49:09','2020-07-06 18:49:09'),(10154,'history','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 20:27:09','2020-07-06 20:27:09'),(10155,'economics','3.93.171.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 22:14:21','2020-07-06 22:14:21'),(10156,'irk','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:20:52','2020-07-06 23:20:52'),(10157,'englishlit','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:45:32','2020-07-06 23:45:32'),(10158,'commerce','18.207.123.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 03:59:46','2020-07-07 03:59:46'),(10159,'english','3.88.230.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 05:07:19','2020-07-07 05:07:19'),(10160,'economics','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:15:10','2020-07-07 09:15:10');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `biology` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=385 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `biology` VALUES (1,'In the egg of bird, the embryo is located in the','Chalaza','Yolk  ','albumen  ','embryo','','','d','','utme','2003',163,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(2,'One distinctive feature in the life history  of liverworts is that they exhibit','alternation of generation  ','vegetative reproduction  ','sexual reproduction','sexual reproduction','','','a','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(3,'The umbrella-shaped fruiting body of a fully developed mushroom is the','pileus  ','Mycelium','basidium  ','Stipe','','','a','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:33'),(4,'The similarly  among organisms belonging to the same group will be least within each','family  ','order  ','kingdom   ','species','','','c','','utme','2003',141,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(5,'Hermaphroditic reproduction can be found among the','arthropods and nematodes  ','Pisces and amphibians   ','annelids and molluscs','coelenterates and  platyghelminthes','','','d','','utme','2003',157,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(6,'An insect whose economic importance is both harmful and beneficial is the','tests fly  ','black','mosquito   ','butterfly','','','d','','utme','2003',165,'Admin','0000-00-00 00:00:00','2020-07-06 21:00:19'),(7,'The cell component that is present in a prokaryotic cell is the','chloroplast   ','ribosome','mitochondrion   ','nuclear envelope','','','b','','utme','2003',151,'Admin','0000-00-00 00:00:00','2020-07-05 17:03:16'),(8,'The stunted group of a leguminous plant suffering from nitrogen deficiency may be corrected by inoculating the soil with','denitrifying bacteria  ','saprophytic bacteria','Rhizobium   ','nitrosomonas','','','c','','utme','2003',167,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:43'),(9,'If water that has been coloured red is poured at the base of a wilting plant, it will appear as a red stain in the cells of','Xylem  ',' epidermis  ','phloem  ','parench','','','a','','utme','2003',159,'Admin','0000-00-00 00:00:00','2020-06-29 19:41:56'),(10,'The dark reaction of photosynthesis involves the  ','reduction of carbon (IV) oxides to organic compounds  ','release of oxygen and the splitting of water','photolysis of water and the production of starch  ','splitting of water into hydrogen ions.','','','a','','utme','2003',150,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:33'),(11,'Organisms I, II, III and IV have surface volume ratios  of 1:2, 1:3, 1:4, 1:5, respectively. The organism that is likely to have the most complex transport system is','IV','III  ','I  ','II','','','a','','utme','2003',135,'Admin','0000-00-00 00:00:00','2020-06-23 13:00:42'),(12,'The part of the mammalian digestive  system where absorption of nutrients takes place is the','ileum  ','colon  ','esophagus  ','duodenum','','','a','','utme','2003',143,'Admin','0000-00-00 00:00:00','2020-07-05 20:02:33'),(13,'The best method of propagating sugarcane by','seed sowing  ','layering','grafting  ','stem cuttings','','','d','','utme','2003',148,'Admin','0000-00-00 00:00:00','2020-07-01 08:28:38'),(14,'In mammalian males, the excretory and reproductive  systems share the','ureter     ','vas deferens  ','urethra  ','Testes.','','','c','','utme','2003',158,'Admin','0000-00-00 00:00:00','2020-06-28 18:28:06'),(15,'Metabolic production of urea is carried out in the','Urinary bladder and kidney','liver   ','pancreas  ','kidney and malphigian tubule','','','b','','utme','2003',149,'Admin','0000-00-00 00:00:00','2020-07-05 12:12:30'),(16,'The structure can be found in the','sympathetic and parasympathetic nervous systems  ','peripheral and central nervous systems','peripheral nervous system only  ','central nervous system only','','','b','','utme','2003',149,'Admin','0000-00-00 00:00:00','2020-07-06 21:00:19'),(17,'The point marked I is referred to as  ','myelin sheath','dendrites  ','axon  ','node of Ranvier','','','d','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-07-06 18:47:54'),(18,'Homologous pairs of chromosomes separate during','cytolysis   ','cleavage','mitosis  ','Meiosis','','','d','','utme','2003',157,'Admin','0000-00-00 00:00:00','2020-06-30 09:43:18'),(19,'An example of a caryopsis is','guava   ','maize grain','coconut','tomato','','','b','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-07-05 13:25:05'),(20,'The response of plants to external stimuli in a non-directional manner is known as ','tactic movement','phototropism  ','geotropism','nastic  movement','','','d','','utme','2003',159,'Admin','0000-00-00 00:00:00','2020-06-26 00:14:46'),(21,'The most important hormone that induces the ripening of fruit is','ethylene  ','indole acetic acid','gibberellin  ','cytokinin','','','a','','utme','2003',152,'Admin','0000-00-00 00:00:00','2020-07-05 12:54:12'),(22,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','a','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-07-06 21:00:19'),(23,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','c','','utme','2003',173,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:43'),(24,'One example of fossil fuel is','limestone  ','coral  ','coal  ','firewood','','','b','','utme','2003',146,'Admin','0000-00-00 00:00:00','2020-07-02 10:11:17'),(25,'The most effective method of dealing with non-gradable pollutants by  \\\\','dumping  ','recycling  ','incineration  ','Burying','','','d','','utme','2003',143,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(26,'The correct sequence of biomes from northern to southern Nigeria is','gulnea savanna _ sudan savanna_ tropical rain forest_ sahel savanna_eetuarine  ','estuarine_tripical rainforest_guinea savanna _ sahel_ savanna  ','sahel savanna_ tropical_rain forest_ estuarine _guinea savanna','sahel savanna_sudan savanna_guinea savanna _tropical rain forest_estuarine','','','b','','utme','2003',145,'Admin','0000-00-00 00:00:00','2020-06-26 19:07:57'),(27,'Mycorrhiza is an association  between fungi and','protozoans','roots of higher plants','bacteria','filamentous algae','','','d','','utme','2003',153,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(28,'A limiting factor in a plant population near a chemical factory is likely to be','light  ','humidity  ','wind  ','PH.','','','d','','utme','2003',168,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(29,'Soil fertility can best be conserved and renewed by the activities of','earthworms  ','man  ','rodents  ','microbes','','','b','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:13'),(30,'The pioneer organism in ecological  succession are usually the','mosses  ','lichens  ','ferns','Algae','','','d','','utme','2003',173,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(31,'If a DNA strand has a base sequence TCA, its complementary strand must be','ATG  ','TAG','GAT  ','AGT','','','d','','utme','2003',152,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(32,'A man and his wife are both heterozygous for the sickle cell trait. The likely percentage of their offspring that will be either carriers of sicklers is','75%','50%','25%','100%','','','d','','utme','2003',188,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(33,'If the pair of alleles for baidness is given as Bb, a female carrier will be denoted by','XbY   ','XBXB  ','XBY','XBXb','','','a','','utme','2003',161,'Admin','0000-00-00 00:00:00','2020-06-30 09:41:20'),(34,'An organ  that has been extensively used to test the chromosome theory of heredity is','Drosophila   melanogaster','Muscat domestic  ','Zea mays  ','homo sapiens','','','c','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-06-28 08:22:56'),(35,'A feature association with the Y- chromosome in humans is  ','Drosophila melanogaster','prominent fingernails  ','facial hairs  ','enlarged breast','','','b','','utme','2003',140,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(36,'The type of reproduction that leads to variation in animal and plant population is','  budding',' sexual','vegatative','asexual','','','a','','utme','2003',156,'Admin','0000-00-00 00:00:00','2020-06-28 12:26:38'),(37,'An insect with a mandibulate  mouth part will obtain its food by','biting and chewing   ','chewing and sucking  ','chewing  ','Sucking','','','c','','utme','2003',153,'Admin','0000-00-00 00:00:00','2020-06-28 20:07:07'),(38,'An argument against Lamarck’s theory of evolution is that  ','disuse of  body part cannot weaken the part  ','disused part is dropped off in the offspring  ','acquired traits cannot be passed onto the offspring  ','traits cannot be acquired through constant use of body parts','','','b','','utme','2003',152,'Admin','0000-00-00 00:00:00','2020-07-05 23:34:28'),(39,'Spines and shells on animals are adaptations for','camouflage  ','chemical defence','physical defence  ','mimicry','','','c','','utme','2003',152,'Admin','0000-00-00 00:00:00','2020-07-05 10:36:28'),(40,'An example of cryptic colouration is the','mottled colours on moths that rest o lichens  ','bright colour of an insect pollinated flower','green colour of a plant  ','bright marks on a poisonous tropical frog on variegated  leaves','','','d','','utme','2003',135,'Admin','0000-00-00 00:00:00','2020-07-05 05:57:10'),(41,'Which of the following requires the use of carbon dating to prove that evolution has occurred?  ','comparative anatomy  ','biochemical similarities   ','molecular records','fossil records','','','d','','utme','2003',157,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(42,'The inactive state exhibited by an animal during hot dry seasons is termed  ','aestivation','dormancy  ','resting','Hibernation','','','a','','utme','2003',143,'Admin','0000-00-00 00:00:00','2020-07-01 09:30:58'),(43,'The rods in the retina of the eye are examples of','cells   ','Tissues  ','organs  ','systems','','','a','','utme','2004',166,'Admin','0000-00-00 00:00:00','2020-07-03 09:31:26'),(44,'The absence of special food and water-conducting systems  restricts the body size in','algae, liverworts and mosses  ','liverworts, mosses and ferns  ','the bryophytes and the pteriodophytes  ','the thallophytes and the pteriodphytes','','','a','','utme','2004',140,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(45,'A plant like feature I Euglena is the','Pellicle  ','pigment sport','large vacuole   ','gullet','','','b','','utme','2004',168,'Admin','0000-00-00 00:00:00','2020-06-28 18:28:06'),(46,'The most common characteristic of the fungal hyphae is the possession of  ','cell like compartments with one nucleus each  ','cell walls that are true are both rigid and chitinous  ','a multicellular mycelium in strate  ','cell like partitions formed  by cross walls','','','b','','utme','2004',152,'Admin','0000-00-00 00:00:00','2020-06-28 20:31:07'),(47,'Insects are considered the most successful among the invertebrates because they','possess exoskeletons',' survive in various environmental conditions  ','have wings for flight  ',' possess the ability to change their forms','','','a','','utme','2004',157,'Admin','0000-00-00 00:00:00','2020-07-05 07:22:37'),(48,'The larval stage of a mosquito is called','wriggler  ','Grub  ','maggot  ','Caterpillar','','','a','','utme','2004',179,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(49,'The function of the long-winged reproductive in a  termite colony is to','disperse the population  ',' feed the young   ','participate in swarming','protect the young','','','c','','utme','2004',141,'Admin','0000-00-00 00:00:00','2020-07-06 09:50:31'),(50,'A peculiar characteristic of mammals is that they  ','have teeth  ','are warm blooded  ','haelungs','have sebaceous glands','','','d','','utme','2004',137,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(51,'In the internal structure of plants, a wide pith in the centre is common to','dicot stems and moocot stems','dicot stems and monocot roots','dicot roots and monocot roots','dicotroots and monocot stems','','','b','','utme','2004',162,'Admin','0000-00-00 00:00:00','2020-07-05 14:55:27'),(52,'The gall bladder of mammal has a duct connected to','liver  ',' duodenum  ','small intestine','pancreas','','','b','','utme','2004',148,'Admin','0000-00-00 00:00:00','2020-07-06 10:23:02'),(53,'Al living cells require water because it','is a medium for all metabolic reactions  ','is a medium that neutralizes acids in cells','is the main source of energy for the cells','prevents the development of disease in cells.','','','a','','utme','2004',157,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(54,'The Breakdown of fats and oils into simpler absorbable compounds is catalyzed by the group of enzymes called','lipases   ','hydrolases  ','amylases','peptidases','','','a','','utme','2004',146,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(55,'The surface of an alveolus in a mammal is well supplied with tiny blood vessels known as','arterioles  ','Venules','arteries  ','capillaries','','','d','','utme','2004',138,'Admin','0000-00-00 00:00:00','2020-06-26 12:51:14'),(56,'The anaerobic fermentation of a glucose molecule yields.','38ATP molecules  ','2ATP molecules and alcohol','Pyruvic acid and alcohol  ','water and carbon (IV) oxide','','','b','','utme','2004',142,'Admin','0000-00-00 00:00:00','2020-07-05 19:58:22'),(57,'The opening of the stoma is controlled by the  ','presence of a pore  ','increase in solute concentration  in the guard cells  ','presence of guard cells','decrease in solute concentration in the guard cells','','','b','','utme','2004',161,'Admin','0000-00-00 00:00:00','2020-07-05 15:17:54'),(58,'The type of reproduction that is common to both Hydra and yeast is','conjugation','binary fission','grafting  ','Budding','','','d','','utme','2004',160,'Admin','0000-00-00 00:00:00','2020-07-06 14:24:12'),(59,'The eggs of birds contain relatively larger quantities of yolk than those of amphibians and reptiles because','birds are generally bigger in size','embroyonic development is longer in birds  ','those of birds are fertilized internally  ','birds lay shelled eggs','','','b','','utme','2004',172,'Admin','0000-00-00 00:00:00','2020-07-06 16:04:52'),(60,'Epigeal germination of a seed is characterized by','more rapid  elongation of the hypocotyl than the epicotyl','more rapid elongation of the epicotyl than the hypocotyl  ','equal growth rate of both the hypocotyl and epicotyl  ','lack of growth of the hypocotyl','','','a','','utme','2004',157,'Admin','0000-00-00 00:00:00','2020-07-06 13:52:41'),(61,'Nervous control differs from hormonal control in that the former  ','involves only chemical  transmission','is a slower process','produces short term changes  ','has no specific pathway','','','c','','utme','2004',144,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(62,'If a nursing mother is not  producing enough milk, her hormonal system is probably deficient in','prollactine  ','estosterone','thyroxin','insulin','','','a','','utme','2004',143,'Admin','0000-00-00 00:00:00','2020-07-05 10:47:45'),(63,'The two key cations involved in the action potential of nervous transmissions are ','Na+ and Fe2+',' Mg2+ and K+','Na+ and K+  ','Fe2+ and Mg 2+','','','c','','utme','2004',170,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(64,'A caterpillar and an aphid living in different parts of the same plant can be said to',' occupy the same ecological riches   ',' Be in different habitats  ','occupy different ecological riches  ','be in  similar micro habitats','','','c','','utme','2004',152,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(65,'Use the table below to answer questions 33 and 34\\nZone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nHigh relative humidity will be expected in zones \\n','I and II','I and IV  ','II and III  ','II and IV','','','c','','utme','2004',154,'Admin','0000-00-00 00:00:00','2020-07-05 12:12:30'),(66,'Zone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nWhich of the zones is likely to be a desert\\n','I  ','II  ','III  ','IV','','','a','','utme','2004',148,'Admin','0000-00-00 00:00:00','2020-07-06 17:57:16'),(67,'The association between termites and the cellulose digesting protozoans in heir guts is an example of  ','saprophytism  ','mutualism','parasitism  ','commensalism','','','b','','utme','2004',137,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(68,'The progressive loss of energy at each level in a food chain  leads to','an increase in biomass at each successive level  ','a decrease in biomass at each successive level  ','an increase in the number of organisms at each successive level','an increase in the total weight of living matter at each successive level.','','','b','','utme','2004',161,'Admin','0000-00-00 00:00:00','2020-07-01 08:26:42'),(69,'One adaptation of reptiles of water loss is the presence of','Keratinous scales  ','claws on Limbs  ','Long tails   ','long stickly tongues','','','a','','utme','2004',150,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:33'),(70,'A state in Nigeria that is most susceptible to desert encroachment is','Kwara  ','Taraba  ','Kaduna','Katsina','','','d','','utme','2004',159,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(71,'The Scarcity of food causes a sudden decrease in population size by','decrease the reproductive rate','bringing about immigration','raising the mortality rate','minimizing the rate of competition','','','a','','utme','2004',140,'Admin','0000-00-00 00:00:00','2020-07-05 13:25:05'),(72,'The soil type that will be most difficult to plough in a wet season is one that is  ','loamy   ','clayey  ','sandy  ','silty','','','b','','utme','2004',145,'Admin','0000-00-00 00:00:00','2020-07-05 10:11:04'),(73,'A farm practice that results in he loss of soil fertility is','mixed farming','bush fallowing','shifting cultivation  ','continuous cropping','','','d','','utme','2004',158,'Admin','0000-00-00 00:00:00','2020-07-02 10:27:34'),(74,'Paternity disputes can most accurately be resolved though the use of','Gringer printing   ','blood group typing   ','DNA analysis   ','tongue rolling','','','c','','utme','2004',145,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(75,'In a mendelian cross of red and white varieties of the four o’clock pant, the F1 generation expresses incomplete dominance by having flowers which are','white  ','red  ','pink  ','multi-coloured','','','c','','utme','2004',165,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(76,'Identical twins inherit their genes from','Different eggs and sperms','The same egg and sperm  ','two egg and a sperm  ','one egg and two sperms','','','b','','utme','2004',156,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(77,'Sex –linked genes are located on','Y-chromostome  ','X and Y chromosomes  ','Homologens chromosomes  ','X-Chromosome','','','d','','utme','2004',165,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(78,'Which of the following is an example of intraspecific competition?','a lizard and an ant eater chasing an insect  ','a worker termite and a solider in a limited space  ','a hawk and an eagle targeting the same chicken','yam and potato shoots growing out through the same window','','','b','','utme','2004',160,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(79,'Plants survive hot dry condition by  ','storing water in large parenchyma cells','producing numerous leaves  ','having numerous stomata  ','having every green leaves','','','a','','utme','2004',141,'Admin','0000-00-00 00:00:00','2020-07-05 10:11:04'),(80,'Rodents gnaw on food with their','molar teeth  ','strong jaws   ','flat-ridged teeth  ','chisel like front teeth','','','d','','utme','2004',146,'Admin','0000-00-00 00:00:00','2020-07-05 15:46:31'),(81,'The sports and stripes of the leopard and tiger and example of','cryptic colouration  ','warning colouration  ','Disruptive colouration  ','counter shading','','','c','','utme','2004',146,'Admin','0000-00-00 00:00:00','2020-07-04 18:12:18'),(82,'An evidence of the relationship between living organisms and their extinct relatives can best be obtained from','Embryology  ','Comparative anatomy  ','comparative physiology','all of the above','','','d','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-07-06 10:46:52'),(83,'The organelle common to both plant and animal cells is the','centriole','plasmalemma  ','cell wall','chloroplast','','','c','','utme','2005',146,'Admin','0000-00-00 00:00:00','2020-07-03 16:37:23'),(84,'Which of the following is likely to have a higher concentration of mitochondria? ',' Sperm cell',' white blood cell  ',' Egg cell','red blood cell','','','a','','utme','2005',156,'Admin','0000-00-00 00:00:00','2020-07-05 14:55:27'),(85,'The hyphal wall of fungi is rigid  owing to the presence of','cell wall','lignin  ','cellulose  ','chitia','','','d','','utme','2005',149,'Admin','0000-00-00 00:00:00','2020-07-05 07:41:15'),(86,'Angiosperms and gymnosperms belong to the class','schizophyta  ','spermatophyte  ','pteridophyta  ','bryophta','','','b','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-05 12:01:48'),(87,'An example of a adially symmetrical organism is','planaria  ','Hydra   ','tapeworm  ','roundworm','','','b','','utme','2005',163,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(88,'the leech and the earthworm belong to the','molluscs  ','crustaceans','arachnids  ','annelids','','','d','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(89,'I. Rettus rattus   II. Agama agama  II Bufo regularis  IV. Tilapia Zill. The order of evolutionary advancement  of the above','I, II and III , IV  ','I, IV, III, II  ','II, III, IV, I','IV, III, II, I','','','d','','utme','2005',161,'Admin','0000-00-00 00:00:00','2020-06-29 16:20:57'),(90,'The stage in the life history  of a moth responsible for the destruction of agricultural crops is the','nymph','imago','pupa   ','caterpillar','','','d','','utme','2005',160,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(91,'The blackly is a vector of','material','trypanosomiasis','onchocerciasis','yellow fever','','','c','','utme','2005',167,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(92,'The transition from amphibians to mammals involves the limbs becoming arranged to support the weight  more effectively requiring modifications in the','collar bones and coccyx','pectoral and pelvic girdles','scapulae and clavicles   ','vertebrae and sternum','','','b','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(93,'The main function of the caudal fin in tilapia  is to  ','propel it forward in water  ','seer it while changing directions  ','balance it in eater','enable it to float in water','','','a','','utme','2005',179,'Admin','0000-00-00 00:00:00','2020-07-05 09:38:37'),(94,'In the root vascular system, the stele is directly surrounding by the','pericycle  ','cortex','endodermis  ','Parenchyma','','','c','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-06-30 23:54:22'),(95,'The only vein that caries pure oxygenated blood is the  ','renal vein  ','Pulmonary vein  ','hepatic vein','sciatic vein','','','b','','utme','2005',159,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(96,'The function of the fluid filled pericardium is to','reduce the friction caused by the pumping movements of the heart   ','supply the heart with oxygen and nutrients  ','prevent disease organisms from attacking the heart  ','reduce the  intensity of the pumping action of the heart','','','a','','utme','2005',158,'Admin','0000-00-00 00:00:00','2020-07-06 18:47:54'),(97,'The mammalian lung is made air light by the','pleural cavity  ','mucous membrane','pleural membrane  ','diaphragm','','','a','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-05 17:03:16'),(98,'A test tube containing yeast in glucose solution was suspended in a converted conical flask containing alkaline pyrogallol. The  bubbles of carbon (IV) oxide produced indicate that the yeast cells are','respiring in the absence of oxygen  ','librating oxygen  on their own','living and consuming oxygen  ','being killed by the alcohol produced','','','a','','utme','2005',163,'Admin','0000-00-00 00:00:00','2020-07-05 16:28:07'),(99,'The urinary tubules of the kidney function through  ','osmosis and diffusion  ','active transport and osmosis  ','ultra filtration and selective re-absorption','active transport and cytoplasmic streaming  ','','','c','','utme','2005',164,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(100,'Excess water  in plants is excreted as water vapour and droplets respectively through  ','respiration and guttation  ','transpiration and guttation','photosynthesis and guttation','guttation and condensation','','','b','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-03 16:39:40'),(101,'When bacteria swim from cold to warm regions, this is known as','negative chemotaxis  ','positive thermotaxis  ','positive phototaxis','negative phototaxis','','','b','','utme','2005',160,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(102,'Hydrostatic skeleton is the type of supporting system found in','Mammals  ','reptiles  ','oligochaetes   ','arthropods','','','c','','utme','2005',170,'Admin','0000-00-00 00:00:00','2020-07-05 13:25:05'),(103,'Which of the following is a homeostatic response in humans?','withdrawing the hand from a hot object','the mouth getting watery when food is lighted  ','yawning owing to tiredness  ','shivering in a cold environment','','','d','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(104,'The optimal temperature  for breeding cockroaches is','15oC','19oC  ','24oC  ','33oC','','','c','','utme','2005',162,'Admin','0000-00-00 00:00:00','2020-07-01 08:35:54'),(105,'At which temperature will cockroaches not survive after 10 days?   ','15oC','19oC  ','24oC  ','33oC','','','a','','utme','2005',157,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:33'),(106,'The mambilla plateau is a unique Nigeria biome located in','Plateau State  ','Borno state  ','Taraba state  ','Benue state','','','a','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-05 14:55:27'),(107,'In Nigeria, the Guinea Savanna belt borders the','mangrove swamps and the Sahel  savanna  ','rainforests and the Sudan savanna  ','deserts and the Sudan savanna  ','rainforests and the desert.','','','b','','utme','2005',156,'Admin','0000-00-00 00:00:00','2020-07-05 09:06:19'),(108,'The population density of Tridax in an abandoned square farmland of side 200m was found to be 5 plants per m2. The population size of the plant on the farm is','40','4000','40000','200000','','','d','','utme','2005',153,'Admin','0000-00-00 00:00:00','2020-07-03 15:44:08'),(109,'Secondary succession is much faster then primary succession because','pioneer colonizers are more in number  ','soil is already present  ','Secondary series require less nutrients  ','species competition is increased','','','b','','utme','2005',152,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(110,'Which of the following is used to test for the presence of lime in a soil sample? ','H2SO4(aq)  ','NaOH(aq)','Hcl(aq)  ','HNO3(aq)','','','c','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-02 15:56:39'),(111,'The importance of practicing crop rotation  in agriculture is to','maintain soil fertility','improve the nutritional value of crops   ','control soil erosion   ','ensure the growth of crops.','','','a','','utme','2005',155,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(112,'The recycling method of solid waste disposal is unsuitable for','organic matter  ','glass  ','plastics','metal scraps','','','a','','utme','2005',149,'Admin','0000-00-00 00:00:00','2020-07-05 13:50:08'),(113,'A non-renewable alternative source of energy is','wind generators  ','solar panels  ','nuclear energy','hydroelectric power','','','c','','utme','2005',146,'Admin','0000-00-00 00:00:00','2020-07-05 16:32:30'),(114,'Which of the following gis the best explanation for a child who is phenol-typically short and born of two tall parents?','The father possesses a gene for shortness  ','The mother possesses a gene for shortness  ','Nature makes the child short  ','Both parents posses genes for shortness.','','','d','','utme','2005',152,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(115,'A yellow maize is crossed with the a white maize and the first filial generation produce yellow maize only. The white trait is said to exhibit  ','dominance',' recessiveness','codominance  ','Incomplete  dominance','','','b','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:33'),(116,'The association in which one member benefits and the other is relatively unaffected by the interaction is termed  ','symbiosis','parasitism','commensalism  ','Mutualism','','','c','','utme','2005',152,'Admin','0000-00-00 00:00:00','2020-06-29 17:13:41'),(117,'When a peacock displays its colourful  feathers, it is  ','ready for a fight  ','protecting itself from predators  ','protecting its mate from predator','courting a female','','','d','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(118,'When an animal has a dark coloured dorsal surface and light coloured ventral surface, this is an adaptation called  ','concealment coloration  ','countershading','colour blending  ','disruptive coloration','','','b','','utme','2005',154,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(119,'The only caste in the termite colony whose members can feed themselves are the  ','reproductive',' workers  ','nymhs  ','soldiers','','','b','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(120,'An evidence of a common ancestry for fishes, amphibians, reptiles, birds and mammals is the','possession of wings by bird and bats','cold-bloodedness of fishes, amphibians and reptiles  ','presence of gill clefts in vertebrate embryos','','','','c','','utme','2005',166,'Admin','0000-00-00 00:00:00','2020-06-27 16:43:43'),(121,'Mendel, s second law of inheritance states that','alleles separate predictably  ','alleles segregate  independently','chromosomes segregate independently  ','alleles combine randomly','','','b','','utme','2006',148,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(122,'One advantage of variation in a species population  is that individuals','easily reach their reproduction age','with favoured trait become dominant','are better adapted  to changes','are easily  recognized by mates','','','c','','utme','2006',163,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(123,'The two normal types of sex chromosomes are','xxy and xyy','xx and xyy  ','xx and xy  ','xy and xxy','','','c','','utme','2006',155,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(124,'Hassan and Hussain are identical twins but Hasan grows taller and fatter than Hussain. This is probably  because  ','Hussain in endowed with genes for shortness and thinness  ','They are raised in different environments','they have dissimilar genotypes  ','Hassan inherits genes for tallness and fatness from the father.','','','b','','utme','2006',157,'Admin','0000-00-00 00:00:00','2020-07-05 19:58:22'),(125,'Population that doubles in size to constant intervals is an indication of','sigmoid   ','population explosion  ','rapid growth','  exponential growth','','','d','','utme','2006',142,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(126,'The causative reagent of typhoid fever is  ','Entamoeba','Salmonella','Shigella  ','Escherichia','','','b','','utme','2006',164,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(127,'The  soil type that contains nutrients which are not readily available for plants is ',' sandy  ','Alluvial  ','loamy  ','clayey  ','','','d','','utme','2006',153,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(128,'Grasses recover quickly from bush fires in the savanna  because of their  ','succulent stems   ','rapid growth  ','fibrous roots  ','perennating organs','','','d','','utme','2006',164,'Admin','0000-00-00 00:00:00','2020-07-01 08:15:51'),(129,'The main purpose of establishing shelter belts in the sahel region to  ','break the harmattan wind  ','beautify the region  ',' check desert encroachment  ','provide wood fuel','','','a','','utme','2006',145,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(130,'Climax communities in a biotic succession are usually characterized by','a constant change in the appearance of the commodities  ','a stable composition of plant and animal species  ','rapid changes in the plant and animal species  ','different species that are constantly changing','','','b','','utme','2006',130,'Admin','0000-00-00 00:00:00','2020-06-22 02:59:57'),(131,'The product of excretion common to the mammalian kidney lung and skin is','Urea  ','carbon (IV)oxides  ','mineral salt','water','','','d','','utme','2006',149,'Admin','0000-00-00 00:00:00','2020-07-03 16:46:45'),(132,'In rabbits, the chamber of the heart that receives oxygenated blood from the lungs is the  ','left auricle','right auricle','left ventricle','right ventricle','','','a','','utme','2006',145,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(133,'One basic similarly between nervous and endocrine system is that both  ','produce precise and short –lived  effects  ','Involve the use of chemical substances  ','transmit very fast impulses  ','produce widespread effects.','','','b','','utme','2006',150,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(134,'Night blindness result from a deficiency of  ','Vitamin E  ','Vitamin K  ','Vitamin C  ','Vitamin A','','','d','','utme','2006',146,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(135,'Water is necessary for a germinating seed because  it','wets the soil for proper germination  ','protects the seed from desiccation  ','activates the enzymes','promotes aerobic respiration  ','','','c','','utme','2006',159,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(136,'An increase  in air pressure in the lings is due to the','increase in the volume of the thoracic cavity  ','relaxation of the diaphragm','upward movement of the ribs','contraction intercostal muscles','','','b','','utme','2006',169,'Admin','0000-00-00 00:00:00','2020-07-06 11:14:44'),(137,'In the transverse section of a dicot stem, the region lying between the endodermis and the vascular bundle is the','parenchyma  ','Pholem','phypodermis  ','pericyle','','','d','','utme','2006',144,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(138,'A unique characteristic of the cervical vertebrae  is the present  of','long transverse processes  ','zygaphphysis   ','vertebraterial canal  ','large centrum','','','c','','utme','2006',153,'Admin','0000-00-00 00:00:00','2020-07-01 09:25:25'),(139,'Which of following produces both hormones and enzymes?','Gall blader  ','Lieum  ','Pancreas  ','kidney','','','c','','utme','2006',161,'Admin','0000-00-00 00:00:00','2020-07-05 19:58:22'),(140,'The formation of water in tissue  respiration  results from the  ','combination of water  molecules','breakdown of water molecules  ','reduction of carbon (IV) oxide','reduction of oxygen by hydrogen','','','d','','utme','2006',151,'Admin','0000-00-00 00:00:00','2020-07-06 13:52:41'),(141,'The organ situated in the pericardial cavity of a mammal is the','stomach  ','Liver  ','Liver','spleen','','','c','','utme','2006',139,'Admin','0000-00-00 00:00:00','2020-06-26 00:14:46'),(142,'Mammals are  capable  of producing hypertonic urine mainly because of re-absorption in the  ','urethra  ','loop of henle  ','ureater  ','Bowman’s capsule','','','b','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-06-28 19:37:27'),(143,'The mammalian vain which starts with and ends in a capillary network is the','hepatic portal vein','pulmonary vein  ','renal vein','measenteric vein','','','a','','utme','2006',154,'Admin','0000-00-00 00:00:00','2020-07-06 21:00:19'),(144,'The part of the mammalian skin involved in temperature regulation is the','sebaceous gland  ','sweat gland','hair follicle  ','hair pailla','','','b','','utme','2006',173,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(145,'The variation illustrated is','physiological   ','discontinuous  ','morphological   ',' biochemical','','','c','','utme','2006',140,'Admin','0000-00-00 00:00:00','2020-07-01 09:41:56'),(146,'The change in the length of the necks of the giraffes shown was brought about by  ','predation','symbiosis','natural selection','geographical isolation','','','c','','utme','2006',146,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(147,'Which of the following vertebrates has the most simple structured heart?','fish  ','Mammal','Amphibian  ','Reptile','','','a','','utme','2006',141,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(148,'The role of the Golgi com plex in a eukaryotic cell is to  ','transport genetic material out of the cell','transport organic materials in and out of the cell','provide attachment for ribosomal granules','conduct ions and out of the cell','','','b','','utme','2006',160,'Admin','0000-00-00 00:00:00','2020-07-06 13:44:46'),(149,'The dominant phase in the life cycle of a bryophyte is the','prothallus  ','Gametangium  ','saprophyte   ','gametophyte','','','d','','utme','2006',148,'Admin','0000-00-00 00:00:00','2020-07-05 15:46:31'),(150,'The evidence that supports the advancement of  fern over mosses is derived from ','biochemical similarities  ','','physiological records  ','molecular records','','','b','','utme','2006',160,'Admin','0000-00-00 00:00:00','2020-07-01 08:32:59'),(151,'A characteristic that best exemplifies the evolutionary advancement of mammals over other  vertebrates in the  ','terrestrial mode of life  ','possession  of paired limbs  ','a false foot  ','radial symmetry','','','c','','utme','2006',146,'Admin','0000-00-00 00:00:00','2020-07-06 18:47:54'),(152,'An organism which exhibits extracelluar digestion is  ','Paramecium','Rhizopus  ','Spirogyra  ','Amoeba  ','','','b','','utme','2006',154,'Admin','0000-00-00 00:00:00','2020-07-01 08:35:54'),(153,'The chromosomes of members of the kingdom  monera are within the','nucleus  ',' nucleolus  ',' cytoplasm   ',' Nucleoplasm','','','c','','utme','2007',163,'Admin','0000-00-00 00:00:00','2020-07-06 03:41:44'),(154,'A water medium is necessary for fertilization in','angisperms','ferns  ','fungi  ','conifers','','','b','','utme','2007',169,'Admin','0000-00-00 00:00:00','2020-07-01 09:27:01'),(155,'The process of shedding the exoskeleton of an arthropod is known as','instar formation','metamorphosis  ','tagmosis  ','Ecdysis','','','d','','utme','2007',161,'Admin','0000-00-00 00:00:00','2020-07-05 15:17:54'),(156,'The part labeled IV is responsible for','ingestion   ','locomotion  ',' osmoregualtion  ','respiration','','','c','','utme','2007',150,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(157,'Which of the following is common to the mosquito, housefly and blackfly?  ','Their  immature stages are aquatic   ','They undergo complete metamorphosis  ','Their adults have two pairs of wings   ','They are parasites of man','','','b','','utme','2007',147,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(158,'Which of the following has the most primitive respiratory system?','Fish','Snail  ','Mouse','insect','','','b','','utme','2007',143,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(159,'Moncot stems differ from dioct  stems in that monocots have','fewer vascular bundies',' no cambium  ','phloem with parenchyma   ',' no pith','','','b','','utme','2007',145,'Admin','0000-00-00 00:00:00','2020-06-30 15:19:11'),(160,'In mammals , the  organ directly on top of the kidney is the','prostate gland  ',' pancrease   ','thyroid gland  ',' adrenal gland','','','d','','utme','2007',137,'Admin','0000-00-00 00:00:00','2020-07-05 10:36:28'),(161,'The photosynthetic pigment is include  ','melanin and haemoglobin  ',' chlorophyll and carotenoids  ',' carotenoids and haemoglobin  ',' chloroplasts and cytochromes','','','b','','utme','2007',147,'Admin','0000-00-00 00:00:00','2020-07-05 10:36:28'),(162,'The pancreas secretes enzymes for the digestion of  ','fats, vitamins and cellulose',' fats, carbohydrates and vitamins  ','proteins, celluclose and minerals  ','fats, proteins and carbohydrates','','','d','','utme','2007',142,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(163,'Which of the following uses diffusion as the principal method of gaseous exchange?','Rate  ','lizard','Earthworm  ','Grasshopper','','','c','','utme','2007',152,'Admin','0000-00-00 00:00:00','2020-07-03 11:08:30'),(164,'The opening  and closing of the stoma are regulated by','osmosis   ','diffusion  ','transpiration  ','respiration','','','a','','utme','2007',142,'Admin','0000-00-00 00:00:00','2020-07-02 10:11:27'),(165,'The waste product of plants used in the conversion of hide to leather is','resin  ','tannin  ','gum  ','Alkaloid','','','b','','utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-05 05:57:10'),(166,'The correct sequence of the movement of urea during urine formation is','Convoluted tubule_ glomerulus_Henle’s loop_ Bowman’s capsule_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tuble_ Henle’s loop_collecting tubule','convoluted tubule_ Bowman’s capsule_Henle’s loop _ glomerulus_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tubule_ Henle’s loop_convoluted tubule_collecting tubule','','','d','','utme','2007',144,'Admin','0000-00-00 00:00:00','2020-07-05 16:28:07'),(167,'Pineapple is an example of','a composite fruit  ','a simple fruit','an aggregate fruit','a dehiscent fruit','','','a','','utme','2007',137,'Admin','0000-00-00 00:00:00','2020-07-06 10:23:02'),(168,'Stunted growth and poor root development are a result of as deficiency in  ','calcium  ','sulphur  ','iron  ','phosphorous','','','a','','utme','2007',164,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(169,'The highest level of ecological organization is the','niche','biosphere  ','population  ','Ecosystem','','','d','','utme','2007',150,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(170,'A biotic factor which affects the distribution and abundance of organisms in a terrestrial  habitat is','competition  ','temperature  ','light  ','pH','','','a','','utme','2007',140,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(171,'Which of the following is an example of parasitism?  ','Mistletoe growing on an orange tree','Fungi growing on a dead  tree branch  ','cattle egrets taking ticks from the body of cattle','a squirrel living in an abandoned nest of a bird','','','a','','utme','2007',138,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(172,'The organs that will be most useful  to giant  African rats in finding their way in underground habitats are the  ','Eyes   ','vibrissae','tails  ','Nostrils','','','b','','utme','2007',134,'Admin','0000-00-00 00:00:00','2020-07-06 18:47:54'),(173,'One adaptation  shown by hydrophytes in fresh water habitats is the','poor  development of roots and xylem tissues  ','well developed roots and supporting system  ','leaves reduced to spines  ','waxy  cuticle on shoot surface','','','a','','utme','2007',141,'Admin','0000-00-00 00:00:00','2020-07-06 03:41:44'),(174,'The mangrove swamp in Nigeria is restricted to the','Guinea savanna','Tropical rainforest','Sudan savanna   ','Sahel savanna','','','b','','utme','2007',141,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:43'),(175,'In which of the following Nigerian states can montane vegetation be found?','Plateau','Taraba  ','Enugu  ','Bauchi','','','a','','utme','2007',137,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(176,'The increasing order of the particle size in the following soil types  is','clay_silt_sand_gravel  ','Silt_clay-sand_gravel  ','clay_sand_slit_gravel','silt_sand_clay gravel','','','a','','utme','2007',168,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(177,'A crucible  of 5gm weighted 10gm after filling with fresh soil. It is hen healed in an oven at 100oC for 1 hour. After cooling in a desiccators, the  weight was 8gm. The percentage of water in the soil is  ','20%','40%','6%','80%','','','b','','utme','2007',162,'Admin','0000-00-00 00:00:00','2020-07-05 09:38:37'),(178,'The causative agent of bird flu is a','virus  ','bacterium  ','fungus  ','protozoan   ','','','a','','utme','2007',146,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(179,'An accurate identification  of a rapist can be carried out by conducting a','blood group test  ','behavioural traits test  ','DNA analysis   ','RNA analysis','','','c','','utme','2007',161,'Admin','0000-00-00 00:00:00','2020-07-05 20:02:33'),(180,'Which of  the following is true of cloning?','it involves the asexual multiplication of the tissues of the original organisms  ',' the clone is similar to but not exactly like the original organism   ','Only one cell of the original organism is needed to initiate the process','it is welcomed as an ethically  and morally sound science','','','c','','utme','2007',153,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:13'),(181,'An example of a sex-linked  trait is the','ability to roll the tongue','possession of facial hair in adult humans  ','ability to grow long hair in females  ','colour of the skin in human','','','c','','utme','2007',157,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(182,'Which of the following factors can bring about competition in a population? ',' Drought   ','Mortality','Dispersion   ','Emigration','','','d','','utme','2007',136,'Admin','0000-00-00 00:00:00','2020-07-05 23:34:28'),(183,'In lizards, the lowering  of the gular fold is used to','attract mates  ','frighten enemies','catch insects   ','defend their territory','','','b','','utme','2007',146,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(184,'The type of protective adaptation exhibited by the animals is  ','flash colouration   ','disruptive  colouration','warming colouration','countershading  colouration','','','d','','utme','2007',150,'Admin','0000-00-00 00:00:00','2020-07-05 09:03:15'),(185,'An example of a fish that aestivates is','lung fish   ','shark','cat fish','croaker','','','a','','utme','2007',151,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:13'),(186,'The theory  which supports the view that the large muscles developed by an athlete will be passed on to the offspring was proposed by','Darwin  ','Lamarck   ','Pasteur   ','Mendel.','','','b','','utme','2007',128,'Admin','0000-00-00 00:00:00','2020-07-01 09:54:22'),(187,'In terms of the number of individuals, which of the following  taxa is most inclusive?','order','family','class  ','species','','','c','','utme','2008',150,'Admin','0000-00-00 00:00:00','2020-07-05 10:11:04'),(188,'A characteristic that can possibly be shared by both living  and non-living organisms is  ','locomotion  ','irritability','increase in biomass','increase in size','','','d','','utme','2008',154,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(189,'The cell of an onion bulb can be differentiated from a cheek cell by the presence of  ','plasmalemma  ',' chloroplast','cell wall  ',' nucleus','','','c','','utme','2008',140,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(190,'In plants, the structure that performs  a similar  function with the testis is in mammals  is the   ','stigma','filament  ','anther','replace','','','c','','utme','2008',162,'Admin','0000-00-00 00:00:00','2020-07-06 17:57:16'),(191,'The bacteria type that are arranged in chains are the','Staphylococci  ','clostridia','streptococci','Bacilli','','','c','','utme','2008',147,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(192,'The most abundant group of organism in the animal kingdom is','Mammalian','Aves  ','Annelida  ','Insecta','','','d','','utme','2008',126,'Admin','0000-00-00 00:00:00','2020-07-01 09:32:36'),(193,'Radial symmetry is a feature common to the  ','platyhelminthes','nematodes  ','coelentrates','arthropods','','','c','','utme','2008',150,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(194,'Which of the following  is used mainly for balancing in fish?','The causal fin  ','the pectoral fin','the anal fin  ','The dorsal fin','','','d','','utme','2008',153,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:13'),(195,'The beak of a duck is structurally adapted  for','scooping and sieving food  ','catching and gasping food  ','picking and cracking food  ','boring and sucking food  ','','','a','','utme','2008',146,'Admin','0000-00-00 00:00:00','2020-07-05 23:34:28'),(196,'The most important characteristic that makes reptiles to conquer terrestrial habitats is the possession of','long tail','scaly skin','sharp claw','amniotic egg','','','b','','utme','2008',152,'Admin','0000-00-00 00:00:00','2020-07-05 09:38:37'),(197,'Inn a dictyledonous stem, the zone between the epidermis and the pericycle is the','cortex  ','stele','xylem','phloem','','','a','','utme','2008',150,'Admin','0000-00-00 00:00:00','2020-07-06 17:57:16'),(198,'The order of passage of food in the digestive system is','ileum caecum large intestine rectum','ileum colon caecum rectum','large intestine ileum caecum rectum','colon caeum ileum rectum  ','','','b','','utme','2008',142,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(199,'Insectivorous plants traps and kill their prey to derive  ','phosphorous  ','calcium  ','nitrogen','Zinc','','','c','','utme','2008',142,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(200,'In the alimentary system of a bird, the function  of teeth is carried out by the','crop  ','Beak  ','Gizzard','tongue','','','c','','utme','2008',126,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(201,'What will happen when two equal  sized pieces of unripe pawpaw labeled X and Y are dropped into equal volumes of concentrated salt solution and distilled water respectively?  ','Pawpaw X will become  turgid  ','Both  will increase in size','pawpaw Y will become turgid','Both will decrease in size','','','c','','utme','2008',147,'Admin','0000-00-00 00:00:00','2020-06-26 12:17:15'),(202,'Exhaled air differs from inhaled air in that it  ','contains less amount of carbon (IV) oxide  ','is usually lower in temperature','often has more oxygen  ','usually has more water vapour','','','d','','utme','2008',131,'Admin','0000-00-00 00:00:00','2020-06-26 02:21:15'),(203,'In the mammalian kidney,  the Bowman’s  capsule is located in the','ureter','Pelvis  ','cortex','medulla  ','','','d','','utme','2008',165,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(204,'A plant  parenchyma cell also acts as a supporting tissue when it','becomes faccid  ','contains cystals  ','becomes turgid','is pigmented','','','c','','utme','2008',141,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(205,'During ovulation, an egg is released from the','corpus luteum  ','ovarian funnel  ','Graafian follicle','fallopian tube','','','c','','utme','2008',147,'Admin','0000-00-00 00:00:00','2020-07-05 17:03:16'),(206,'The transmission of impulses along a nerve fibre is characterized by','hormonal and temperature changes   ','electrical and ionic changes  ','hormonal changes  ','electrostatic changes','','','b','','utme','2008',132,'Admin','0000-00-00 00:00:00','2020-07-05 12:54:12'),(207,'The major consequences of bush burning in an ecosystem is  ','the loss of water absorbing ability of the soil','the loss of biological diversity','a decrease in animal population','an increase in soil fertility','','','b','','utme','2008',147,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(208,'Which of the following associations is an example of mutalism?','hydra viridis and zoochlorellae','human and lice   ','Shark and Remora fish  ','Bread and Rhizopus stolonifer  ','','','a','','utme','2008',160,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(209,'In a typical freshwater habitat, the edge of the stream or pond constitutes the','tidal zone  ','interidal zone  ','littoral zone  ','euphotic zone','','','c','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(210,'The main ecological  problem facing interidal organisms is','dessciation','floatation','salinity','humidity','','','a','','utme','2008',157,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(211,'Stomata  of some plants are sunken and protected by hairs. These are features of ','mesophytes','epiphtes  ','hydrophytes  ','Xerophytes','','','d','','utme','2008',169,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(212,'An ecological factor that will have the most  limiting effect on the abundance of phytoplankton in a turbid pond is   ','pH  ','oxygen','light  ','temperature','','','c','','utme','2008',161,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(213,'In an experiment to determine the percentage of air in a soil  sample, the  Following readings were recorded:\\nVolume of water inn a measuring cylinder = 500cm3  \\nVolume of soil added to water= 350cm2\\nVolume of water andn soil after stirring= 800cm2\\nThe percentage of air in the soil sample is \\n','6.25%','10. 36%    ','14.28%','43.28%','','','c','','utme','2008',148,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(214,'A boy who is fond of swimming in a pond finds himself passing urine with traces of blood. He is likely to have contracted  ','Schistosomiasis','onchoerciasis','poliomyelitis  ','salmonellosis','','','a','','utme','2008',155,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:43'),(215,'The easiest way to establish  the level of pollution in a local stream is to measure the level of','oxygen','carbon(IV) oxide','ammonia','alkalinity','','','a','','utme','2008',160,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(216,'Which of the following is a major case of variation among  organisms?  ','inbreeding  ','backcrossing   ','sexual reproduction','Gene dominance','','','c','','utme','2008',150,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(217,'The Rhesus factor of blood was first identified in a category of  ','monkeys   ','human females','human males  ','chimpanzees','','','a','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-06-26 12:17:15'),(218,'Genetically modified food products have not become  universally accepted because','They are not tasty as others produced  by conventional means','they are usually costlier than others produced by conventional means','their  efforts on human consumers is not yet fully understood   ','the technology can be applied only  in developed  countries','','','c','','utme','2008',157,'Admin','0000-00-00 00:00:00','2020-07-06 10:46:52'),(219,'A major  adaptive feature of endo-parasites is the   ','loss of the organ of movement  ','presence of claws  ','loss of the central nervous system  ','presence of piercing mouthparts','','','a','','utme','2008',166,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(220,'The ability of a chameleon to change its colour is an adaptive feature for  ','attraction','defence  ','display','attack     ','','','b','','utme','2008',142,'Admin','0000-00-00 00:00:00','2020-07-05 07:22:37'),(221,'Which of the following is the most advanced evolutionary development in plants?  (a) possession of unicellular structures  ','possession of unicellular structures  ','Development of flowers','dispersal of spores  ','Development of secondary thickening','','','b','','utme','2008',141,'Admin','0000-00-00 00:00:00','2020-07-05 20:50:41'),(222,'The natural process that produces adaptive evolutionary  changes is  ','mutation  ','gene flow  ','genetic drift','natural selection','','','d','','utme','2008',154,'Admin','0000-00-00 00:00:00','2020-07-06 17:57:16'),(223,'What is the level of organization  of an onion bulb?','tissue  ','organ','systemic','organism','','','b','','utme','2009',152,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(224,'A characteristic exhibited by all living organism is  ','sexual reproduction   ','aerobic respiration  ','the ability to move from one place to another  ','the ability to remove unwanted substances.','','','d','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(225,'In a cell, the genes are carried by  ','nuclear membranes','chromatin threads  ','lysosomes','mitochondria','','','b','','utme','2009',153,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(226,'Alternation of a sexual and sexual modes of reproduction is found in','blue-green algae  ',' Euglena','fern',' maize','','','c','','utme','2009',155,'Admin','0000-00-00 00:00:00','2020-07-05 09:58:58'),(227,'The first terrestrial vertebratese volved from','pisces  ','Reptilia  ','Amphibia  ','Mammalia','','','c','','utme','2009',158,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(228,'In plants, the structures that play roles similar to the arteries and veins of animals are the  ','xylem and phloem','root hairs and xylem  ','lenticels and phloem  ','roots and stems','','','a','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-01 09:17:19'),(229,'A blue-green alga is not a protophytes because','it is aquatic  ','its cells are prokaryotic','it cannot move','it is not a green plant','','','b','','utme','2009',212,'Admin','0000-00-00 00:00:00','2020-07-05 10:11:04'),(230,'The feature that makes locomotion in water easy for fish is the','scaly body','slimy body  ','steam lined body','lateral line','','','c','','utme','2009',155,'Admin','0000-00-00 00:00:00','2020-07-05 16:28:07'),(231,'Bird toes suitable for digging have claws that are  ','blunt','curved  ','hooked','sharp','','','a','','utme','2009',165,'Admin','0000-00-00 00:00:00','2020-07-05 17:03:16'),(232,'Chewing the cud is an adaptation peculiar to','herbivores','omnivores  ','rodents   ','ruminants','','','d','','utme','2009',167,'Admin','0000-00-00 00:00:00','2020-07-06 17:57:16'),(233,'Which of the following is an example of a carnivorous plant?','Hydra','Bladderwort','Yeast','Spirogyra','','','b','','utme','2009',171,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(234,'The part of the alimentary system of a bird where food is  ground into small particles is the','cloaca  ','stomach  ','crop  ','gizzard','','','d','','utme','2009',138,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(235,'Which of the following describes the sequence of blood flow fro the heart to a tissue?','Heart_artery_arteriole _ tissue','Heart_vein_venule _tissue','Heart _ venule _vein_tissue','Heart _arteriole _artery_tissue','','','a','','utme','2009',157,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(236,'The enzymes of the glycolytic pathway are located in  the','mitochondria  ','gastric juice','plasma','cytoplasm','','','d','','utme','2009',135,'Admin','0000-00-00 00:00:00','2020-07-01 09:41:56'),(237,'In insects, the structure that performs  the same function as the kidney in man is the','nephridium','flame cell  ','malphigiann tubule','trachea','','','c','','utme','2009',170,'Admin','0000-00-00 00:00:00','2020-07-05 19:58:22'),(238,'The axial  skeleton is found in the','skull , ribs, vertebral column and breast bone   ','skull humerus, vertebral column and ribs  ',' breastbone, clavicle, rids and vertebral column',' femur, sternum, ulnae and skull','','','a','','utme','2009',161,'Admin','0000-00-00 00:00:00','2020-07-03 16:41:52'),(239,'The reproductive  system of a male mammal is made up of  ','claspers, prostrate, gland, sperm duct and vas deferns','testis, prostrate gland, sperm duct and vas deferns  ','oviduct , urethra, testis and sperm  duct','testis, uterus, prostrate gland and sperm duct.','','','b','','utme','2009',142,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:13'),(240,'In a bean seed, absorption of water at the beginning  of germination is through the  ','hilum','micropyle  ','testa  ','plumule','','','b','','utme','2009',147,'Admin','0000-00-00 00:00:00','2020-07-06 16:02:42'),(241,'The most important ecological factor in a terrestrial environment is','rainfall',' humidity','wind',' soil','','','a','','utme','2009',166,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(242,'The association between bacteria residing I the caecum and the ruminant is  ','parasitism  ','predation  ','saprophytism  ','mutalism','','','d','','utme','2009',164,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(243,'A marine protozoan is likely to have no contractile acuole  mainly because the cytoplasm is  ','isotonic to sea water','hypotonic to sea water','hypertonic to sea water','impervious to seas water','','','a','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-05 14:55:27'),(244,'In freshwater  marshes and swamps, the most important abiotic factor that organisms have to','nature  of substratum  ','high salinity  ','high temperature  ','low pH','','','a','','utme','2009',148,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(245,'Which of the following biomass could be characterized by very low rainfall, cold nights, hardays and fast blooming plants?  ','Northern Guinea savanna','southern Guinea savanna  ','Tropical desert',' montane forest','','','b','','utme','2009',146,'Admin','0000-00-00 00:00:00','2020-07-03 11:04:21'),(246,'The optimum temperature  for the growth of the organism is','25oC','50oC','75oC   ','100oC','','','b','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-05 16:32:30'),(247,'Mass of a crucible = 10g\\n Mass of a crucible and soil before heating = -29g.\\nMass of a crucible and sol after heating = 18g. From the information above, determine the percentage of wter in the given soil sample?  \\n','20%','25%','40%','50%','','','d','','utme','2009',144,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(248,'I Onchocerciasis  II Schistosomiasis  \\nIII Salmonellosis  IV Meningitis \\nWhich of the diseases listed above are associated with water? \\n','I and II only  ','II, III and IV  ','I, II and III  ','II and IV','','','c','','utme','2009',167,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(249,'The major cause of global warming is the','Burning of fossil fuel','construction of dams','use of electricity  ','exploration of space','','','a','','utme','2009',150,'Admin','0000-00-00 00:00:00','2020-07-03 16:35:08'),(250,'The uniqueness of an individual organism in a population is accounted for by','evolution','variation  ','adaptation','mutation','','','b','','utme','2009',169,'Admin','0000-00-00 00:00:00','2020-07-01 04:25:15'),(251,'A phenotypic character with intermediate forms that can be graded from one extreme to the other is referred to as','discontinous variation   ','continuous variation','a mutant','a genome','','','b','','utme','2009',146,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(252,'A farmer’s assumption that the seed from a good harvest will produce a good yield is explained by the theory  of','evolution','adaptation','variation','heredity','','','d','','utme','2009',157,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(253,'In Mendelian inheritance, discontinuous characters are controlled by the','centromeres','alleles','chromosomes','chromatids','','','b','','utme','2009',170,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(254,'A woman with the ability to roll her tongue (Tt) marries a man who cannot roll his tongue  (tt). What is the probability of each of their children being a tongue roller?','100%','75%','50%','25%','','','c','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-01 09:51:33'),(255,'A health condition that isi known to have resulted from gene mutation is  ','heamophilia ','colour blindeness  ',' sickle cell anaemia  ',' anaemia  ','','','c','','utme','2009',152,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(256,'Plants that grow in an area that is neither too wet nor too dry are','xerophytes  ','mesophytes  ','epiphytes','hydrophytes','','','b','','utme','2009',162,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(257,'The part of a domestic fowl responsible  for preventing heat loss is the  ','filoplume ','contour feather  ',' down feather',' quill','','','c','','utme','2009',151,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(258,'Which of the following animals is most adapted for water conservation?','Earthworms  ','mammals   ','Flatworms  ','Insects','','','d','','utme','2009',139,'Admin','0000-00-00 00:00:00','2020-07-05 15:46:31'),(259,'The specialized pigment cells that are involved in colouration and colour change in animals are the','xanthophyl','chromatophores','chlorophyll','mechanic','','','d','','utme','2009',139,'Admin','0000-00-00 00:00:00','2020-07-06 10:23:02'),(260,'During the dry season in the tropics, the body metabolism of some animals slows to a minimal level in a process referred to as','hibernation','aestivation','dormancy','sense scense  ','','','b','','utme','2009',140,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:43'),(261,'According to Darwin, the driving force behind evolutionary change is','atural selection','genetic drift  ','mutation','gene flow','','','a','','utme','2009',155,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(262,'Which of the following characterizes a mature plant cell?','The cytoplasm fills up the entire cell space',' The nucleus is pushed to the centre of the cell',' the cell wall is made up of cellulose','The nucleus is small and irregular in shape','','','d','','utme','2010',189,'Admin','0000-00-00 00:00:00','2020-07-05 09:06:19'),(263,'Which of the following is NOT a function of the nucleus of a cell?  ','it controls the life processes of the cell','It translates genetic formation for   the manufacture of proteins','it stores and carries hereditary information  ','it sis a reservoir of energy for the cell','','','d','','utme','2010',178,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(264,'The dominant phase in the life cycle of a fern is the','gametophyte  ',' prothallus','sporophyte  ',' antheridium','','','c','','utme','2010',169,'Admin','0000-00-00 00:00:00','2020-07-03 11:10:36'),(265,'Parental care is exhibited by','toads','snails',' earthworms',' birds','','','d','','utme','2010',180,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(266,'Which of the following groups of cells is devoid of true nuclei?','viruses','algae  ','Monera','Fungi','','','c','','utme','2010',183,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(267,'Which of the following is true of the transverse section of a dicot stem?','The epidermis is completely encircled by the cortex','The xylem is more interiorly located than the phloem',' The cambium lies between the cortex and the vascular bundles','The vascular bundles are randomly scattered within the  cortex','','','b','','utme','2010',175,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(268,'Which of the following is lacking in the diet of a person with kwashiorkor?','Vitamins  ','Proteins','Carbohydrates  ','Minerals','','','b','','utme','2010',185,'Admin','0000-00-00 00:00:00','2020-07-05 15:46:31'),(269,'The mode of nutrition of sundew and bladderwort can be described as','autotrophic  ','saprophytic  ','holozoic   ','chemosynthetic','','','c','','utme','2010',150,'Admin','0000-00-00 00:00:00','2020-07-06 01:28:52'),(270,'When a mixture of a food substance fand Benedict’s solution was warmed, the solution changed from blue to brick red . This indicates the presence of','reducing  sugar','fatty acid','sucrose  ','amino acid','','','a','','utme','2010',163,'Admin','0000-00-00 00:00:00','2020-06-30 20:04:25'),(271,'The primary structure responsible for pumping blood for circulation through the mammalian circulatory systems is the','veins  ','right auricle  ','arteries','left ventricle','','','d','','utme','2010',186,'Admin','0000-00-00 00:00:00','2020-07-06 13:44:46'),(272,'Circulation of blood to all parts of the body except the lungs is through  ','the pulmonary artery  ','systemic circulation','the lymphatic system','pulmonary circulation','','','b','','utme','2010',180,'Admin','0000-00-00 00:00:00','2020-07-02 19:58:28'),(273,'Yeast respires anaerobically  to covert simple sugar to carbon (IV) oxide and','alcohol  ','acid','oxygen','water','','','a','','utme','2010',190,'Admin','0000-00-00 00:00:00','2020-07-05 15:46:31'),(274,'The sheet of muscle that separates the thoracic and the abdominal cavities is the ','diaphragm  ','intercostal muscles',' pleural membrane   ',' pericardium','','','c','','utme','2010',180,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(275,'The oily substance that lubricates the mammalian hair to keep it flexible ad water repellent is secreted by the','sweat glands','sebaceous glands','fatty  cells','granular layer','','','b','','utme','2010',178,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(276,'The outer layer of the kidney where the Bowman’s capsules are found is the','cortex','pelvis  ','medulla','pyramid','','','a','','utme','2010',181,'Admin','0000-00-00 00:00:00','2020-07-05 23:48:58'),(277,'Which of the following stimuli is likely to elicit a nastic response in an organism? ','Touch  ','Light intensity  ','Chemical substances  ','gravity','','','a','','utme','2010',168,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(278,'In the male reproductive system of a mammal, sperm is stored in the','van deferens  ','urethra','epididymis  ','seminiferous tubules   ','','','c','','utme','2010',179,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(279,'Chemosynthetic organism are capable  of manufacturing their food  from simple inorganic substances through the process of','oxidation','denitrification','reduction','phosphorylation','','','a','','utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-01 09:31:58'),(280,'The part of the human gut  that has an acidic  content is the','stomach  ','duodenum  ','ileum','colon','','','a','','utme','2010',181,'Admin','0000-00-00 00:00:00','2020-07-05 15:17:54'),(281,'I. Stomata _ spirogyra   II alveoli _ earthworm  III malpighian tubule_mammal Iv.Contractile vacuole _protozoa \\nWhich of the above structures is correctly matched with the organisms in which it is found? \\n','III  ','II   ','I','IV','','','d','','utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-01 08:58:41'),(282,'A food chain always begins with a  ','consumer  ','decomposer  ','producer','primary  consumer','','','c','','utme','2010',177,'Admin','0000-00-00 00:00:00','2020-07-06 13:44:46'),(283,'Mycorrhizae promote plant growth by','absorbing inorganic ions from the soil  ','protecting it from infection','helping it to utilize atmospheric nitrogen','serving as a growth regulator','','','a','','utme','2010',199,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(284,'The barrier between maternal and foetal blood is the','placenta  ','liver','umbilical chord  ','uterine wall','','','a','','utme','2010',160,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(285,'The blood component  that has the greatest affinity for oxygen is the ','lymphocytes',' leucocytes','erythorocytes  ','thromboytes','','','c','','utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-04 18:11:47'),(286,'Which of the following organisms is mainly  found in the marine habitat?','Achatina  ','Tilapia  ','Dog fish  ','Tortoise','','','c','','utme','2010',169,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(287,'The two halves of the pelvic girdle are jointed together at the  ','public  symphysis  ','ilium  ','pubis  ','obturator foramen','','','a','','utme','2010',200,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(288,'I. Adoption of appropriate nocturnal habits   II. Burrowing   III. adjusting their  internal body temperature   IV. Possession of many sweat pores.\\nWhich of the above are ways in which desert animals adapt to extreme heat of environment?  \\n','I and IV only  ','II and III only  ','I and II only  ','I, II and III only','','','d','','utme','2010',181,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(289,'Low annual rainfall, sparse vegetation, high dermal temperatures and cold nights are characteristics features of the','tropical  rainforest  ','desert   ','mundane forest','guinea savanna','','','b','','utme','2010',178,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(290,'The average number of individuals of a species  per unit area of the habitat is the ',' population density','population frequency  ','population size','population distribution','','','a','','utme','2010',203,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(291,'The loss of soil through erosion can be reduced by','watering','crop rotation  ','maturing  ','irrigation','','','b','','utme','2010',189,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(292,'The vector for yellow fever is  ','edges mosquito  ','anopheles mosquito  ','tsetse fly  ','blackly','','','a','','utme','2010',194,'Admin','0000-00-00 00:00:00','2020-07-06 11:14:44'),(293,'The protozoan plasmodium falciparum is transmitted by','female anopheles mosquitoes  ','female Aedes mosquitoes  ','female Culex mosquitoes   ','Female  blackfly','','','a','','utme','2010',164,'Admin','0000-00-00 00:00:00','2020-07-05 12:01:48'),(294,'A dilute solution of phenylthiocarbamide tastes bitter to some people  and is tasteless to others. This is an example of  ','taste bud variation','discontinuous variation   ','morphological variation',' continuous variation','','','b','','utme','2010',184,'Admin','0000-00-00 00:00:00','2020-07-05 19:58:22'),(295,'Throxne and adrenalin are examples of hormones which control','blood grouping','tongue rolling  ','behavioural patterns','colour variation ','','','c','','utme','2010',184,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(296,'A pair of genes that control a trait is referred to as','anallele','recessive','dominant  ','ahybrid','','','a','','utme','2010',201,'Admin','0000-00-00 00:00:00','2020-07-05 12:54:12'),(297,'The chromosome number of a cell before and after the process of meiosis is conventionally represented as','2n_2n   ','n_n  ','n-2n  ','2n-n','','','d','','utme','2010',189,'Admin','0000-00-00 00:00:00','2020-07-05 10:11:04'),(298,'If both parents are heterozygous for trait, he probability that an offspring will be recessive for that trait is','¾   ','½    ','¼','1','','','c','','utme','2010',183,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:42'),(299,'At what stage in the life history of a mammal is the sex of an individual set?','At adolescence','At puberty  ','At birth  ','At conception','','','d','','utme','2010',191,'Admin','0000-00-00 00:00:00','2020-07-01 23:18:28'),(300,'The main distinguishing features between the soldier termite and other members of the caste are the','presence of wings, possession of a small head and large thorax','presence of wings, possession of a large thorax  and a small head','absence of wings, possession off strong mandibles and a large head','absence of wings, possession of big head and the absence of mandible.','','','c','','utme','2010',177,'Admin','0000-00-00 00:00:00','2020-07-01 08:56:12'),(301,'The flippers of a whale  and the fins of a fish are examples of','divergent evolution  ','co evolution','continuous variation','convergent evolution','','','a','','utme','2010',185,'Admin','0000-00-00 00:00:00','2020-07-05 09:38:37'),(302,'The function of the red head in male Agama lizards is to','scare other males from the territory  ','attract female lizards for mating purposes  ','warn predators of the distastefulness of the animal  ','Conceal and camouflage the animal from predators','','','b','','utme','2011',123,'Admin','0000-00-00 00:00:00','2020-07-06 18:47:54'),(303,'In which of the following species is the biomass of an individual the smallest?','Agama sp  ','Bufo sp','spirogyra sp   ','Tilapia sp','','','c','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(304,'Seed plants are divided into','angiosperms and gymnosperms','monocotyledons and dicotyledons','thallophyes and pbryophytes  ','Tracheophytes and ferns','','','a','','utme','2011',135,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(305,'In which of the following groups of vertebrates is parental  care mostly exhibited? ','  Amphibia','Aves  ','Mammalia  ','Reptilia','','','c','','utme','2011',155,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(306,'The adult form of III is a vector of  ','river blindness','cholera','elephantiasis','sleeping sickness','','','c','','utme','2011',160,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(307,'The adaptive importance of nuptial flight from termite colonies is to','provide abundant food for birds and other animals during the early rains','ensure cross breeding between members of one colony  and another','expel  the reproductive so as to provide  enough food for other members','disperse the reproductive in order to establish  new colonies','','','d','','utme','2011',142,'Admin','0000-00-00 00:00:00','2020-07-05 17:03:16'),(308,'Which of the following can cause shrinkage  of living cells?  ','Isotonic solution   ','Delonized water  ','Hypertonic solution','hypotonic solution','','','c','','utme','2011',153,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(309,'Which of the following is true of leucocytes?  ','They are most numerous and ramify all cells  ','They are large and nucleated  ','They are involved in blood clotting','They are respiratory pigments','','','b','','utme','2011',153,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(310,'The conversion of a nutrient into a molecule in the body of a consumer is referred to a s  ','assimilation','absorption  ','inhibition','digestion','','','d','','utme','2011',192,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(311,'The ability  of a living organism to detect and respond to changes in the environment is referred to as','irritability','growth    ','taxis','locomotion','','','a','','utme','2011',143,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(312,'In mammals, the exchange of nutrients and metabolic products occurs in the','oesophagus','trachea','lymph   ','lungs','','','c','','utme','2011',149,'Admin','0000-00-00 00:00:00','2020-07-06 21:00:19'),(313,'An example of an endospermous seed is   ','cashew  nut  ','cottons seed','bean seed  ','maize grain','','','d','','utme','2011',148,'Admin','0000-00-00 00:00:00','2020-07-03 11:33:24'),(314,'I. Parasitism _ Sundew    II Autrrophism_Amoeba    III Saprophytism_ Alga  IV. Heterotrophism- Agama. Which of the above modes of nutrition is correctly matched with the organism that  exhibits it?','III','IV  ','I','II','','','b','','utme','2011',147,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(315,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nIn which of the test tubes will glucose be detected after complete hydrolysis?\\n','II and III only','I only','I, II and III   ','I and II only','','','a','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-06-30 23:12:46'),(316,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nThe enzyme involved in the hydrolysis is\\n','erepsin  ','perilymph   ','maltase  ','rennin','','','c','','utme','2011',158,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(317,'The part of the mammalian ear responsible for the maintenance of balance is the ','pinna   ',' perilymph  ',' Ossicles   ',' cochlea','','','d','','utme','2011',158,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(318,'The path followed by air as it passes through the lungs in mammals is  ','bronchi_ trachea_ alveoli_ bronchioles  ','Trachea _ Bronchiole _ bronchi_ alveoli   ','bornchioles _ alveoli _ bronchi_ trachea   ','trachea_ bronchi _ bronchioles_ alveoli','','','d','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-07-05 16:32:30'),(319,'The movement response of a cockroach away  from a light source can be described as  ','negative phototaxism  ','negative photropism','positive  photropism  ','positive phototaxism','','','a','','utme','2011',144,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(320,'The vascular tissues in higher plants are responsible for  ','suction pressure  ','transpiration pull','the transport of gases and water   ','the movement of food and water','','','d','','utme','2011',163,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(321,'Which of the following organs regulates the levels of water, salts, hydrogen ions and urea in the mammalian blood?','kidney','bladder  ','colon  ','liver','','','a','','utme','2011',141,'Admin','0000-00-00 00:00:00','2020-07-05 10:47:45'),(322,'The sequence of the one way gaseous exchange mechanism in a fish is','gills _ operculum _ mouth','mouth_operculum_ gills  ','mouth _gills _operculum','operculum _ gills_ mouth','','','c','','utme','2011',148,'Admin','0000-00-00 00:00:00','2020-07-05 15:46:31'),(323,'The  type of asexual reproduction that is common to both paramecium and protists is','speculation  ','fragmentation','fission','budding','','','c','','utme','2011',139,'Admin','0000-00-00 00:00:00','2020-07-06 13:52:41'),(324,'In nature, plants and animals are perpetually engaged in mutulism because  ','all animals rely on food produced  by plants','they  utilize respiratory wastes of each other  ','they are neighbours  ','they are rivals','','','b','','utme','2011',119,'Admin','0000-00-00 00:00:00','2020-07-05 09:03:15'),(325,'In an experiment to determine the percentage of humus and water in a soil sample, the following results were obtained. \\nWeight of the evaporating basin alone = 80.5g   Weight of basin and soil = 101.5g    Weight after drying the soil in the oven = 99.0g    Weight of basin and roasted soil = 95.5h\\nThe percentage of humus in the soil sample is  \\n','17.60%','26.70%','16.20%','16.70%','','','d','','utme','2011',133,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(326,'An example of a filter-feeding animals is','butterly  ','whale','mosquito  ','shark','','','b','','utme','2011',136,'Admin','0000-00-00 00:00:00','2020-07-01 09:17:19'),(327,'Which of the  following is a feature of the population Pyramid of a developing country?  ','Low birth rate','low death rate  ','short lifespan','long lifespan','','','c','','utme','2011',150,'Admin','0000-00-00 00:00:00','2020-07-01 09:35:56'),(328,'the interaction of a community of organisms with its abiotic environment constitutes','a food chain','an ecosystem  ','a microhabitat','a niche','','','b','','utme','2011',160,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(329,'The vector of the malaria parasite is a','female anopheles mosquito  ','male culex mosquitoes','female culex mosquito  ','female Aids mosquito','','','a','','utme','2011',155,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(330,'Which of the following  instruments is used  to measure relative humidity?','Thermometer  ','Hygrometer  ','Anemometer','Hydrometer','','','b','','utme','2011',162,'Admin','0000-00-00 00:00:00','2020-07-04 00:37:46'),(331,'Exo-erythrocytic phase  of the life cycle  of malaria parasite occurs in the','reticuloendothelial cells of humans','maphigian tubules of mosquito','brain of humans  ','liver  of humans','','','d','','utme','2011',152,'Admin','0000-00-00 00:00:00','2020-07-06 18:47:54'),(332,'Habitats are generally classified into  ','aquatic and terrestrial','arboreal  and marine biomes','microhabitats and macro habitats','biotic and abiotic','','','a','','utme','2011',161,'Admin','0000-00-00 00:00:00','2020-06-29 17:23:26'),(333,'Drancunculiasis can be contacted  through  ','drinking contaminated water','bathing in contaminated water  ','bites of blackfly   ','eating contaminated food','','','b','','utme','2011',163,'Admin','0000-00-00 00:00:00','2020-07-03 10:33:20'),(334,'Which of the following groups of environmental factors are density dependent?  ','Temperature, salinity, predation and disease   ',' Food, predation, disease and accumulation of metabolites  ','Temperature, food disease and light  ','food, salinity, accumulation  of metabolites and light','','','b','','utme','2011',166,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(335,'Millet, sorghum, maize and onions are common crops grown in Nigerian in the  (a) Sudan savanna','montane forests   ','Sahel savanna','Tropical rainforests','','','','a','','utme','2011',134,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(336,'In which of the following biomes is the south western part of Nigeria located?  ','Tropical rainforest  ','Tropical woodland  ','desert','Temperature forest','','','a','','utme','2011',153,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(337,'Lack of space in a population  could lead to an increase in','birth rate','disease rate','drought   ','water  scarcity','','','b','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(338,'The inheritable characters that are determined by a gene located only on the X-chromosome is  ','sex linked','homozygous  ','dominant  ','recessive','','','a','','utme','2011',145,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(339,'If the cross of a red  flowered plant with a white flowered plant produces a pink flowered plant, it is an example of','incomplete dominance  ',' mutation  ',' linkage','co dominance','','','d','','utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(340,'Which of the following theories was NOT considered by Darwin in his evolutionary theory?','survival of the fittest  ','use and disuse  ','competition ',' variation','','','b','','utme','2011',140,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(341,'The crossing of individuals of the same species with different genetic characters is',' polygenic inheritance  ',' non disjunction  ','inbreeding','cross breeding','','','c','','utme','2011',145,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(342,'The number of alleles controlling  blood groups in humans is','4','5','2','3','','','d','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-07-06 11:25:56'),(343,'During blood transfusion, agglutination may occur as a result of the reaction between','two different antigens  ','two different antibodies  ','similar antigens and antibodies  ','contrasting antigens and antibodies','','','d','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-07-05 10:36:28'),(344,'The fallacy in Lamarck’s evolutionary theory was the  assumption that','acquired traits  are heritable','acquired traits are seldom formed','traits  are acquired  through the use of body parts  ','traits are acquired through disuse  of body parts.','','','c','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(345,'The brightly coloured eye spots on the hind wings of a moth are an example of ',' disruptive colouration',' continuous variation    ','divergent  Evolution','convergent  evolution','','','d','','utme','2011',143,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(346,'Which of the following is most advanced in the evolutionary trend of animals?  ',' Liver fluke  ','Earthworm','Snail  ','cockroach','','','d','','utme','2012',171,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(347,'Which of the following is the lowest category of  classification?  ','Class   ','species  ','Family','Genus','','','b','','utme','2012',160,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(348,'Plants  that show secondary growth are usually found among the','thallophytes','pteridophytes','monocotyledons  ','dicotyledons','','','d','','utme','2012',162,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(349,'The fungi are a distinct group of eukaryotes mainly  because they have  ','spores  ','no chlorophyll  ','many fruiting bodies','sexual and asexual reproduction','','','d','','utme','2012',164,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(350,'An arthropod that is destructive at the early stage of its life cycle is','butterfly  ','mosquito  ','bee','millipede','','','a','','utme','2012',141,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(351,'An animal body that can be cut along its axis in any plane to give two identical parts is said to be  ','radically  symmetrical','bilaterally symmetrical','asymmetrical','symmetrical','','','a','','utme','2012',141,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(352,'Which  of the following possesses mammary gland?','Dogfish','Whale  ','Shark  ','Catfish','','','b','','utme','2012',178,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(353,'The feature  that links birds to reptiles in evolution is the possession of  ','feathers  ','beak  ','skeleton','scales','','','d','','utme','2012',148,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(354,'Counter shading is an adaptive  feature that enables animals to  ','flight enemies  ','remain undetected','warn enemies  ','attract mates','','','b','','utme','2012',152,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(355,'Which of the following plant structures lacks a waterproof of cuticle?  ','leaf  ','stem  ','root','shoot','','','c','','utme','2012',158,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(356,'In the mammalian male reproductive system, the part that serves as a passage for both urine and semen is the ','urethra  ','ureter  ','bladder','seminal vesicle','','','a','','utme','2012',147,'Admin','0000-00-00 00:00:00','2020-07-06 13:44:46'),(357,'In plants, which of the  following is required in minute quantities  for growth?','copper  ','potassium','phosphorous','sodium  ','','','a','','utme','2012',155,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(358,'Which of the following organisms is both parasitic and  autotrophic?  ','Sundew  ','Loranthus','Rhizopus  ','tapeworm','','','a','','utme','2012',152,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(359,'A function of the hydrochloric acid produced in the human stomach during digestion is to  ','neutralize the effect of bile   ','coagulate milk protein and emulsify fats  ','stop the action of ptyalin  ','break up food into smaller particles','','','c','','utme','2012',162,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(360,'Which of the following is a polysaccharide?','Glucose  ','sucrose','Maltose   ','Cellulose','','','d','','utme','2012',155,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(361,'In the kidney of mammals, the site of ultra filtration is the','urinferous tuble','Bowman capsule  ','loop of Henle  ','renal tuble','','','b','','utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(362,'Which of the following  is involved1 in secondary  thickening in plants?','collenchyma  and  xylem cells  ','Vascular cambium and collenchyma’s cells  ','vascular cambium and cork cambium','Cork cambium and sclerenchyma','','','c','','utme','2012',153,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(363,'An example of a fruit  that develops from a single carpel is','(a)okro  ','tomato','bean  ','orange','','','c','','utme','2012',145,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(364,'Plant  growth can be artificially stimulated by the addition of  ','gibberellin  ','kinin','abscisic acid  ','ethylene','','','a','','utme','2012',152,'Admin','0000-00-00 00:00:00','2020-07-06 17:02:33'),(365,'The autonomic nervous system consists of neurons that control the','voluntary  muscle','heart beat','tongue  ','hands','','','b','','utme','2012',159,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(366,'Plants of temperate origin can be grown in tropical areas in the vegetation zones of the','rain forest   ','Guinea savanna   ','Sudan savanna','montane forest','','','d','','utme','2012',159,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(367,'The water cycle is maintained mainly by   ','evaporation  of water in the environment  ','evaporation and condensation of water  in the environment  ','condensation of water in the environment  ','transpiration and respiration in plants','','','b','','utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(368,'Organisms living in an estuarine habitat are adapted to  ','withstand   wide fluctuations in temperature   ','survive only in water with low salinity   ','withstand wide fluctuations in salinity   ','feed only on phytoplankton and dead organic matter.','','','c','','utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-07 07:42:10'),(369,'The presence of stilt roots, pneumatophores, sunken stomata and salt glands are adaptive features of plants found in the','tropical rainforest','mangrove swamps  ','grassland  ','montane forest','','','b','','utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(370,'Which of the following animals an exist solely on the water they get from food and metabolic reactions?  ','Forest arboreal dwellers  ','Desert dwellers','forest ground dwellers','rainforest dwellers','','','b','','utme','2012',159,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(371,'The most likely first colonizers of a bare rock are  ','mosses  ','ferns','lichen  ','fungi','','','c','','utme','2012',153,'Admin','0000-00-00 00:00:00','2020-07-06 20:21:16'),(372,'The carrying capacity of a habitat is reached when the population growth begins to','increase slowly','increase exponentially','slow down','remain steady','','','d','','utme','2012',168,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(373,'The abiotic factors that  control human population include  ','disease and famine  ','space and rainfall  ','flooding and earthquake   ','temperature','','','a','','utme','2012',147,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(374,'An indigenous method of renewing and maintaining  soil fertility is by','clearing farms a by burning','planting one crop type  ','adding inorganic fertilizers yearly   ','crop rotation and shifting cultivation','','','d','','utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(375,'The disease caused by water-brone pathogen include','gonrrhoea and poliomyelitis   ','typhoid and syphilis   ','tuberculosis and cholera','typhoid and cholera','','','d','','utme','2012',158,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(376,'Which of the following is true in blood transfusion?','a person of blood group AB can donate blood only to another person of blood group AB','Persons of blood groups A and B can donate or receive blood from each other','A person of blood group AB can receive blood only from persons of blood group A or B  ','A person of blood group O can donate only to a person of blood group O.','','','a','','utme','2012',156,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(377,'A yellow maize is planted and all the fruits obtained are of yellow seeds. When they are cross bred, yellow seeds and white seeds are obtained in a ratio 3:1. The yellow seed is said to be  ','non heritable','sex linked','a recessive trait  ','a dominant trait','','','d','','utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(378,'When a colour blind man marries a carrier woman. What is the probability of their offspring being colorblind?','25%','50%','75%','100%','','','c','','utme','2012',156,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(379,'The correct base pairing for DNA is','adenine _ thymine and guanine_ cytosine  ','adenine_ guanine and thymine_ cytosine  ','adenine_ cytosine and guanine_ thymine  ','adenine_ adenine  and cytosine_cytosine','','','a','','utme','2012',150,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(380,'The short thick beak in birds is an adaptation for','crushing seeds','sucking nectar  ','tearing flesh','straining mud','','','a','','utme','2012',176,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(381,'The basking of Agama lizards in the sun is to','chance the colour of their body  ','raise their body temperature to become active','fight to defend their territories','attract the female for courtship','','','b','','utme','2012',147,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:23'),(382,'The significance of a very large number  of termites involved in nuptial swarming is to','provide birds with plenty of food','ensure their perpetuation despite predatory pressure  ','search for a favourable place to breed  ','ensure that every individual gets a mate.','','','c','','utme','2012',159,'Admin','0000-00-00 00:00:00','2020-07-06 19:27:31'),(383,'The use and disuse of body parts and the inheritance of acquired traits were used to explain  ','Darwin’s theory','Lamarck’s theory','genetic drift  ','gene flow','','','b','','utme','2012',143,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04'),(384,'From his study of Galapagos finches, Darwin derived his theory of evolution from ',' comparative anatomy','comparative physiology',' fossil remains  ','comparative embryology.','','','a','','utme','2012',133,'Admin','0000-00-00 00:00:00','2020-07-06 11:08:04');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `chemistry` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `chemistry` VALUES (1,'25cm3 of a gas X contains Zmolecules at 150C and 75mmHg. How many molecules will 25cmm3 of another gas Y contain at the same temperature and pressure','2Y','2Z','Z','Y','','','c','','utme','2001',1193,'Admin','0000-00-00 00:00:00','2020-07-05 12:08:49'),(2,'What mass of water is produced when 8.0g of hydriogen reacts with excess oxygen [H = 1, O = 16]','36.0g','8.0g','72.0g','16.0g','','','c','','utme','2001',1146,'Admin','0000-00-00 00:00:00','2020-07-05 08:30:51'),(3,'A particle that contains 9 protons, 10 neutrons and 10electrons is a','Neghative ion','Positive ion','Neutral atom of a non metal','Neutral atom of a metal','','','a','','utme','2001',1125,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(4,'Cancerous growths are cured by exposure to','ɣ-rays',' β – rays',' ἀ – rays','X -rays','','','a','','utme','2001',1137,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(5,'An oxide X02 has a vapour density of 32. What is the atomic mass of X [O = 16]','32','20','14','12','','','a','','utme','2001',1140,'Admin','0000-00-00 00:00:00','2020-06-29 12:37:14'),(6,'Milikan’s contribution to the development of atomic theory is the determination of','Charge on electron','Positive rays','Charge to amss ratio','Cathode rays','','','c','','utme','2001',1099,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(7,'Four elements W, X, Y, and Z have atomic numbers 2, 6, 16 and 20 respectively. Which of these elements is a metal','X','W','Z','Y','','','c','','utme','2001',1197,'Admin','0000-00-00 00:00:00','2020-07-05 00:30:21'),(8,'An element X with relative atomic mass 16.2 contains two isotopes      X  with relative abundance of 90% and      X with relative abundance of 10%. The value of m is','16','18','12','14','','','b','','utme','2001',1181,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(9,'Which of the following statements is correct about the average kinetic energy of the molecules of a gas','It inctreasaes with increase in pressure','It increases at constant pressure','It increases with increase in temperature','It increases in volume','','','c','','utme','2001',1182,'Admin','0000-00-00 00:00:00','2020-07-05 10:04:46'),(10,'The pollution from petroleum spillage in rivers and lakes can best be dispersed by','Pouring detergents','Passing of ships through the area','Pouring organic solvents','Evaporation','','','a','','utme','2001',1183,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(11,'Deliquenscent substances are used for','Cooling','Wetting','Melting','Drying','','','d','','utme','2001',1178,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(12,'Pure solvents are obtained by','Distillation','Condensation','Extraction','EvapopraTION','','','a','','utme','2001',1103,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(13,'What is the decrease in volume of air when pyrogallol is shaken with 30.00cm3 of air','15.00cm3','6.00cm3','0.63cm3','0.06cm3','','','b','','utme','2001',1135,'Admin','0000-00-00 00:00:00','2020-06-26 21:37:33'),(14,'Environmental pollution is worsened by the release from automobile exhausts of','Water vapour','Steam','Smoke','Heavy metals','','','c','','utme','2001',1147,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(15,'The chemiocal used for coagulation in water purification is','Aluminum tetraoxosulphate(VI)','Copper tetratoxosulphate (VI)','Sodium tetraoxosulphate(VI)','Calcium tetraoxosulphate (VI)','','','a','','utme','2001',1140,'Admin','0000-00-00 00:00:00','2020-07-06 10:25:19'),(16,'Phosphorous is stored under water to precvent it from','Dehydrating','Becoming inert','Smelling','Catching fire','','','d','','utme','2001',1067,'Admin','0000-00-00 00:00:00','2020-07-05 00:30:21'),(17,'In which of the following reactuions does reduction take place','Fe2+ - e-   Fe3+','2O2-  → O2 + 4e-','Cr - 2e-  → Cr2+','2H+  +  2e-   →H2','','','d','','utme','2001',1149,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(18,'P(g) + O(g)    ⇌ 3R(s)  +  S(g)   ΔH is negative which of the following will increase the yield of R','Using a larger closed vessel','Increasing the temperature','Removing some S','Adding a positive catalyst','','','c','','utme','2001',1154,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(19,'A metal M displaces zinc from zinc chloride solution. This shows that','M is more electronegative than zinc','Zinc is above hydrogen in the series','M is more electropositive than zinc','Electrons flow from zinc to M','','','c','','utme','2001',1206,'Admin','0000-00-00 00:00:00','2020-07-06 10:25:19'),(20,'Which of the following best explains the increase in the rate of a chemical reaction as the temperature rises','The bonds in the reacting molecules are more readily broken','The molecules collisions become more violent','A lower proportion of the molecules has the necessary minimum energy to react','The collision frequency of the molecules increases','','','d','','utme','2001',1126,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(21,'What current in amperes will deposit 2.7g of aluminium in 2 hours [Al = 27, f = 96500 C mol-1]','32','8','4','16','','','c','','utme','2001',1123,'Admin','0000-00-00 00:00:00','2020-07-03 06:58:20'),(22,'Ethanoic acid is','Tribasic','Unionizeable','Monobasic','Dibasic','','','c','','utme','2001',1148,'Admin','0000-00-00 00:00:00','2020-07-05 05:55:40'),(23,'C(s) + 2S (g)  → CS2 (g)      Δ H = +89kJ mol-1. The chemical equation above implies that','Each of carbon and sulphur has 89kJ of energy','Both carbon and sulphur contribute 89kJ of energy','89kJ of energy is released','89kJ is absorbed','','','d','','utme','2001',1099,'Admin','0000-00-00 00:00:00','2020-07-06 13:44:46'),(24,' 2SO2(g) + O2(g) ⇌  2SO3(g)  The equilibrium constant for the reaction above is increased by  [ΔH = -189kJ mol -1]','Increasing the temperature of the system','Increasing the pressure of the system','The addition of a catalyst to the system','Increasing the surface area of the vessel','','','b','','utme','2001',1143,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(25,'3CU(s)  +  8HNO3(aq) →  3Cu(NO3)2(aq)  +  4H2O(I)  +  2NO(g)  In the equation above, copper is','An electron acceptor','A base','An oxidizing agent','A reducing agent','','','d','','utme','2001',1125,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(26,'When ΔH is negative, a reaction is said to be','Ionic','Reversible','Exothermic','Endothermic','','','c','','utme','2001',1160,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(27,'As the concentration of an electrolyte reduces, the conductivity','Reduces to zero','Decreases','Increases','Is unaffected','','','b','','utme','2001',1138,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(28,'In which of the following reactions has the oxidation number of nitrogen increased','2NO(g)  +  Br2(l)  → 2NOBr(l)','2NO2(g)  +  O2(g)   → 2NO2(g)','FeSO4(aq)  +  NO(g) → Fe(NO)SO4(s)','2NO(g)  +  CI2(g) →  2NOCI(l)','','','b','','utme','2001',1046,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(29,'NH3(g)  +  HCI(g)  → NH4CI(s) The entropy change in the system is','Negative','Indeterminate','Positive','Zero','','','b','','utme','2001',1109,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(30,'Fermentation is the','Breaking down of carbohydrate to glucose','Conversion of sugar to alcohol in the presence of yeast','Breaking down of sugar to carbohydrate','Conversion of alcohol to sugar in the presence of yeast','','','b','','utme','2001',1139,'Admin','0000-00-00 00:00:00','2020-07-06 15:13:42'),(31,'The general formula for the alkanals is','ROH','R2CO','RCOOR1','RCHO','','','d','','utme','2001',1150,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(32,'The main impurity in iron ore during the extraction of iron is','Silicon (IV) oxide','Carbon(IV) oxide','Calciumtrioxosilicate','Sulphur(II) oxide','','','a','','utme','2001',1131,'Admin','0000-00-00 00:00:00','2020-07-06 15:13:42'),(33,'During the vulcanization of rubber, sulphur is added to','Break down rubber polymer','Lengthen the chain of rubber','Bind rubber molecules together','Act as a catalyst','','','c','','utme','2001',1117,'Admin','0000-00-00 00:00:00','2020-07-06 12:51:38'),(34,'Catalytic hydrogenation of benzene produces','Oil','Cyclohexane','Cycloexane','Margarine','','','c','','utme','2001',1200,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(35,'A trihydric alkanol is','glycerol','phenol','glycol','ethanol','','','a','','utme','2001',1095,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(36,'When chlorine is passed into water and the resulting solution exposed to sunlight, the product formed are','Chlorine gas and hydrogen','Oxygen and oxochlorate(l) acid','Hydrochloric acid and oxygen','','','','b','','utme','2001',1168,'Admin','0000-00-00 00:00:00','2020-07-06 22:28:24'),(37,'Proteins in acid solution undergo','Polymerization','Substitution','Fermentation','Hydrolysis','','','d','','utme','2001',1138,'Admin','0000-00-00 00:00:00','2020-07-01 02:09:38'),(38,'A characteristic reaction of the compounds with the general formula CnH2n is','Esterification','Polymerization','Decarboxylation','Substitution','','','b','','utme','2001',1158,'Admin','0000-00-00 00:00:00','2020-07-06 12:51:38'),(39,'The pair of organic compounds that are isomers is','Benzene and methylbenzene','Trichloromethane and Tetrachloromethane','Ethanol and propanone','But-1-ene and but-2-ene','','','d','','utme','2001',1105,'Admin','0000-00-00 00:00:00','2020-07-06 22:20:34'),(40,'A burning candle produces water and','Carbon(II)oxide','Carbon(IV) oxide','Oxygen','Hydrogen','','','d','','utme','2001',1156,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(41,'The gas that can best be collected by downward displacement of air is','Chlorine','Sulphur(IV)oxide','Ammonia','Carbon(IV)oxide','','','c','','utme','2001',1178,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(42,'Which of the following metals burns brick with a brick-red','Pb','Ca','Na','Ma','','','b','','utme','2001',1133,'Admin','0000-00-00 00:00:00','2020-07-06 10:25:19'),(43,'Which of the followinig respresents hybridization in ethyne?','Sp2','Sp2d','Sp3','sp','','','d','','utme','2001',1152,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(44,'When sodium reacts with water, the resulting solution is','weakly acdic','neutral','acidic','alkaline','','','d','','utme','2001',1157,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(45,'Which of the following gases contains the least number of atoms at s.t.p','4 moles of chlorine','3 moles of ozone','1 mole of butane','7 moles of argon','','','c','','utme','2002',1117,'Admin','0000-00-00 00:00:00','2020-07-05 08:30:51'),(46,'A compound contains 31.91% potassium, 28.93% chlorine and the rest oxygen. What is the chemical formular of the compound','KCLO3','KCLO4','KCLO','KCLO2','','','a','','utme','2002',1074,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(47,'The formula CH2O for ethanoic acid is regarded as its','General formula','Structural formula','Molecular formula','Empirical formula','','','d','','utme','2002',1098,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(48,'A little quantity of Trichloromethane (b.pt.600C) was added to a large quantity of ethanol (b.pt.780C). the most probable boiling point of the resultant mixture is from','699C – 700C','820C – 840C','600C – 780C','700C – 744C','','','d','','utme','2002',1101,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(49,'The chromatographic separation of ink is based on the ability of the components to','React with each other','React with the solvent','Dissolve in each other in the column','Move at different speeds in the column','','','d','','utme','2002',1115,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(50,'Steam changes the colour of anhydrous cobalt(II) chloride from','White to red','Blue to white','White to green','Blue to pink','','','d','','utme','2002',1091,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(51,'Which of the following solutions containing only hydroxyl ions will liberate hydrogen gas when reacted with magnesium metal','1.0 x 10-2 mol dm-3','1.0 x 10-4 mol dm -3','1.0 x 10-5 mol dm-3','1.0 x 10-12 mol dm-3','','','d','','utme','2002',1081,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(52,'The substance least considered as a source of environmental pollution is','Silicate minerals','Uranium','Lead compounds','Organophosphorous compounds','','','a','','utme','2002',1123,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(53,'The property which makes alcohol soluble in water is the','Hydrogen bonding','Covalent nature','Ionic character','Boiling point','','','c','','utme','2002',1133,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(54,'The furring of kettles is caused by the presence in water of','Calcium trioxocarbonate(IV)','Calcium tetraoxosulphate(VI)','CALCIUM HYDROXIDE','Calcium hydrofentrioxocarbonate(IV)','','','d','','utme','2002',1182,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(55,'Tetraoxosulphate(VI) acid burns the skin by','Heating','Hydration','Dehydration','Hydrolysis','','','c','','utme','2002',1138,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(56,'When a salt loses its water of crystallization to the atmosphere on exposure, the process is said to be','Deliquescence','Effervescence','Efflorescence','Fluorescence','','','c','','utme','2002',1165,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(57,'Three drops of a 1.0 mol dm-3 solution of Na OH are added to 20cm3 of a solution of pH8.4. the pH of the resulting solution will be','Greater than 8.4','Unaltered','Close to that of pure water','Less than 8.4','','','a','','utme','2002',1108,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(58,'The solubility of a salt of molar mass 101g at 200C is 0.34mol dm-3. If 3.40g of the salt is dissolved completely in 250cm3 of water in a beaker, the resulting solution is','Unsaturated','A suspension','Saturated','Supersaturated','','','a','','utme','2002',1091,'Admin','0000-00-00 00:00:00','2020-07-06 13:44:46'),(59,'25cm3 of a 0.2mol dm-3 solution of Na2CO3 requires 20cm3 of  solution of HCl for neutralization. The concentration of the solution is','0.6 mol dm-3','0.5 mol dm-3','0.4 mol dm-3','0.2 mol dm-3','','','b','','utme','2002',1113,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(60,'which of the following chlorides would exhibit the least ionic character','AlCl3','CaCl2','MgCi2','LiCl','','','a','','utme','2002',1136,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(61,'If 0.75 mole of cyclopropane and 0.66 mole of oxygen are mixed in a vessel with a total pressure of 0.7 atmosphere. What is the partial pressure of oxygen in the mixture','0.55 atmosphere','0.44 atmosphere','0.33 atmosphere','0.22 atmosphere','','','c','','utme','2002',1100,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(62,'The processes which return carbon(IV) oxide to the atmosphere include','Photosynthesis, decay and respiration','Photosynthesis, respiration and transpiration','Respiration, decay and combustion','Ozone, depletion, combustion and decay','','','c','','utme','2002',1136,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(63,'Which of the following statements is true of a proton.','The total mass of the protons in a particular nucleus always half the nuclear mass','The mass of a proton is 1840 times the mass of an electron','The mass proton is 1.0008g','The mass of a proton is one-twelfth the molar mass of carbon','','','b','','utme','2002',1095,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(64,'A gas X diffuses twice as fast as gas Y under the same conditions. If the relative molecular mass of X is 28. Calculate the relative molecular mass of Y','120','14','56','112','','','d','','utme','2002',1114,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(65,'A fixed mass of gas has a  volume of 92cm3 at 30C. What will be be its volume at 180C if the pressure remains constant','15.3cm3','87.3cm3','97.0cm3','552.0cm3','','','c','','utme','2002',1101,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(66,'The postulate of Dalton’s atomic theory which still holds is that','Particles of different elements combine in a simple whole number ratio','Atoms can neither be created nor destroyed','The particles of the same element are exactly alike','All elements are made of small indivisible particles','','','a','','utme','2002',1097,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(67,'Ordinary glass is manufactured from silica, Ca CO3 and','K2CO3','NaHCO3','Na2CO3','K2SO4','','','c','','utme','2002',1122,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(68,'A rock sample was added to cold dilute HNMO3. The gas evolved was passed into a solution of acidified K2Cr2O7 and the solution turned green. The rock sample contains','NO3-','Cl-','SO42-','SO32-','','','d','','utme','2002',1076,'Admin','0000-00-00 00:00:00','2020-06-28 02:40:53'),(69,'Hydrogen is readily released when dilute hydrochloric acid reacts with','Au','Cu','Na','Ag','','','c','','utme','2002',1079,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(70,'The most important use of hydrogen is in the','Hydrogenation of oils','Manufacture of methyl alcohol','Manufacture of ammonia','Manufacture of ethyl alcohol','','','c','','utme','2002',1123,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(71,'Which of the following gives a precipitate when treated with NaOH solution','Na2CO3','CH3COONa','NH4Cl','AlCl3','','','d','','utme','2002',1165,'Admin','0000-00-00 00:00:00','2020-07-05 09:38:37'),(72,'The intermediate product formed when ethanol is progressively oxidized to ethanoic acid with potassium heptaoxodichromate(VI) is','Ethanol','Methanol','Butanal','Propanal','','','a','','utme','2002',1104,'Admin','0000-00-00 00:00:00','2020-06-23 19:50:56'),(73,'The gas that gives brown colouration in brown ring test','Co2','NO2','NO','CO','','','b','','utme','2002',1034,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(74,'The boiling of fat and aqueous caustic soda is referred as','Saponification','Esterification','Acidification','Hydrolysis','','','a','','utme','2002',1140,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(75,'What volume of oxygen is produced from the decomposition of 2 moles of KClO3 at s.t.p   [Molar volume of a gas at s.t.p = 22.4 dm3]','22.4 dm3','33.6 dm3','44.8 dm3','67.2 dm3','','','d','','utme','2003',1062,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(76,'Which of the following is a physical change','Burning kerosene','Freezing ice-cream','Exposing white phosphorus to air','Dissolving calcium in water','','','b','','utme','2003',1123,'Admin','0000-00-00 00:00:00','2020-07-04 01:06:28'),(77,'What is the percentage by mass of oxygen in Al2(SO4)3.2H2O','14.29%','25.39%','50.79%','59.25%','','','d','','utme','2003',1104,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(78,'The filter in a cigarette reduces the nicotine content by','Burning','Adsorption','Evaporation','Absorption','','','b','','utme','2003',1121,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(79,'3Cu  +  pHNO3  → 3Cu(NO3)2  +  4H2O  + xNO   In the equation above, the values of p and x respectively are','1 and 3','2 and 3','6 and 2','8 and 2','','','d','','utme','2003',1113,'Admin','0000-00-00 00:00:00','2020-07-05 14:49:36'),(80,'Neutral atoms of neon with atomic number 10 have the same number of electrons as','O2+','Ca2+','K+','Mg2+','','','d','','utme','2003',1079,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(81,'The noble gases owe their inactivity to','Octet configuration','Cyclic shape','Hexagonal shape','Obtuse configuration','','','a','','utme','2003',1117,'Admin','0000-00-00 00:00:00','2020-07-06 13:52:41'),(82,'According to the kinetic theory, an increase in temperature causes the kinetic energy of particles to','Decrease','Increase','Remain constant','Be zero','','','b','','utme','2003',1083,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(83,' I.  H = 1s1\\nII. O = 1s22s22p4\\nIII. N = 1s22s22p3\\nIV. Zn = 1s22s22p63s23p64s23d10\\nFrom the above, which of the following pairs is likely to be paramagnetic?\\n','I and II','I and  III','I    and IV','III  and IV','','','a','','utme','2003',1105,'Admin','0000-00-00 00:00:00','2020-07-05 08:30:51'),(84,'A gas exerts pressure on its container because','Some of its molecules are moving faster than others','Of the collision of the molecules with each other','Of the mass of the molecules of gas','The molecules of a gas collide with the walls of the container','','','d','','utme','2003',1099,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(85,'When cathode rays are detected onto the electrode of an electrometer, the instrument becomes','Negatively charged','Positively charged','Neutral','Bipolar','','','a','','utme','2003',1125,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(86,'The weakest attractive force that can be observed between two molecules is','Ionic','Covalent','Coordinate covalent','Van der Waals','','','d','','utme','2003',1119,'Admin','0000-00-00 00:00:00','2020-06-28 05:39:13'),(87,'A consequence of global warming is','Air pollution','Water pollution','Increased humidity','Flooding','','','d','','utme','2003',1126,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(88,'Which of the following ions is acidic','K+','NO-3','S2-','H3O+','','','d','','utme','2003',1148,'Admin','0000-00-00 00:00:00','2020-07-05 11:25:15'),(89,'The structural component that makes detergent dissolve more quickly in water than soap is','–SO3 –Na+','–COO-Na+','–SO4- Na+','–COO-K+','','','a','','utme','2003',1131,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(90,'A liquid that will dissolve fast is','Hydrochloric acid','Calcium hydroxide','Kerosene','Water','','','c','','utme','2003',1093,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(91,'What mass of K2CrO4 is required to prepare 250cm3 of 0.020 mol dm-3 solution   [K2CrO4 = 194.2g mol-1]','0.97g','9.70g','19.42g','97.10g','','','a','','utme','2003',1161,'Admin','0000-00-00 00:00:00','2020-07-06 15:55:15'),(92,'Farmlands affected by crude –oil spillage can be decontaminated by','Adding acidic solutions','Using aerobic bacteria','Pouring water on the affected area','Burning off the oil from the area','','','b','','utme','2003',1141,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(93,'When 10g of sodium hydroxide is dissolved in 1000cm3 of water, the solution formed is approximately   [Na = 23, H = 1, O = 16]','0.01 mol dm-3','0.10 mol dm-3','0.25 mol dm-3','0.50 mol dm-3','','','c','','utme','2003',1125,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(94,'A charge in the temperature of a saturated solution disturbs the equilibrium between the','Dissolved solute and the solvent','Solvent and the undissolved solute','Dissolved solute and the undissolved solute','Dissolved solute and the solution','','','c','','utme','2003',1127,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(95,'If an equilibrium reaction has   H>0, the reaction will proceed favourably in the forward direction at','High temperature','Any temperature','Low temperature','Minimum temperature','','','a','','utme','2003',1082,'Admin','0000-00-00 00:00:00','2020-07-05 07:28:24'),(96,'The commonest feature of the reactions at the anode is that','Electrons are consumed','Oxidation is involved','Ions are reduced','Electrode dissolves','','','b','','utme','2003',1085,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(97,'Which of the following will change when a catalyst is added to a chemical reaction','The activation energy','The potential energy of the reactants','The heat of reaction','The potential energy of the products','','','a','','utme','2003',1073,'Admin','0000-00-00 00:00:00','2020-07-05 20:36:19'),(98,'If Y is an oxidizing agent that reacts with a reducing agent, Z, which of the following is correct','Y increases in oxidation number','Y becomes reduced','Z loses protons','Z gains protons','','','b','','utme','2003',1143,'Admin','0000-00-00 00:00:00','2020-06-26 20:43:36'),(99,'When at equilibrium, which of the reactions below will shift to the right if the pressure is increased and the temperature is kept constant',' 2SO3(g)  ⇌  2SO2(g)  +  O2(g)',' 2CO2(g)  ⇌ 2CO(g)  +  O2(g)',' 2H2(g)  +  O2(g) ⇌  2H2O(g)',' 2NO(g)   ⇌ N2(g)  +  O2(g)','','','c','','utme','2003',1085,'Admin','0000-00-00 00:00:00','2020-06-28 02:43:14'),(100,'In the electrolysis of a concentrated solution of sodium chloride using inert electrodes, which of the following ions are discharged at the cathode and anode respectively','Na+ and Cl-','Na+ and OH-','H+ and OH-','H+ and Cl-','','','d','','utme','2003',1127,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(101,' CO(g) + H2O(g) ⇌  CO2(g)  +  H2(g)\\nFrom the reaction above, calculate the standard heat change if the standard enthalpies of formation of CO2 (g), H2O (g) and CO (g) in kJ mol-1 are -394, -242 and -110 respectively.\\n','-262 kJ  mol-1','-42kJ mol-1','+42 kJ mol-1','+262 kJ mol-1','','','b','','utme','2003',1084,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(102,'When sugar is dissolved in tea, the reaction is always accompanied by','Positive entropy change','Negative entropy change','No entropy change','A minimum entropy change','','','a','','utme','2003',1069,'Admin','0000-00-00 00:00:00','2020-07-05 00:30:21'),(103,'Which of the following is an electrolyte','Alcohol','Sodium acetate solution','Solid potassium hydroxide','Mercury','','','b','','utme','2003',1151,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(104,'Chlorine gas is prepared in the laboratory by','Adding concentrated hydrochloric acid to solid manganese (IV) oxide','Adding concentrated tetraoxosulphate (VI) acid to solid sodium chloride','Dropping concentrated hydrochloric acid onto potassium tetraoxomanganate (VII) crystals','Oxidizing concentrated hydrochloric acid using potassium heptaoxodichromate (VI) crystals','','','a','','utme','2003',1127,'Admin','0000-00-00 00:00:00','2020-07-06 13:10:23'),(105,'Metals of the first transition series have special proper ties which are different from those of groups I and II elements because they have partially filled','s  orbitals','p orbitals','d orbitals','f orbitals','','','c','','utme','2003',1137,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(106,'Hydrogen can be displaced form a hot alkaline solution by','Fe','Cu','Ca','Sn','','','d','','utme','2003',1086,'Admin','0000-00-00 00:00:00','2020-07-05 20:36:19'),(107,'Which of the following statements is true of sulphur (IV) oxide','It forms Tetraoxosulphate (VI) acid with water','It is an odourless gas','It is an acid anhydride','It forms white precipitate with acidified barium chloride','','','c','','utme','2003',1159,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(108,'The salt that will form a precipitate soluble in excess ammonia solution is','Ca(NO3)2','Cu(NO3)2','Mg(NO3)2','Al(NO3)3','','','b','','utme','2003',1063,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(109,'The metal that liberates hydrogen from cold water in bubbles only is','Na','K','Ca','Al','','','c','','utme','2003',1089,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(110,'Chlorine gas turns a damp starch-iodide paper','Pink','Colourless','Red','Dark blue','','','d','','utme','2003',1108,'Admin','0000-00-00 00:00:00','2020-07-05 09:03:09'),(111,'The modern process of manufacturing steel from iron is by','Treatment with acids','Oxidation','Blast reduction','Treatment with alkalis','','','c','','utme','2003',1063,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(112,'Ethene reacts with hydrogen bromide to give','CH2Br2','CH3CH2Br','C2H2Br2','CHBr3','','','b','','utme','2003',1058,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(113,'Carbohydrates are compounds containing carbon, hydrogen and oxygen in the ratio','3:01:01','2:01:01','1:02:01','1:01:01','','','c','','utme','2003',1076,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(114,'How many isomers does pentane have','6','5','4','3','','','d','','utme','2003',1138,'Admin','0000-00-00 00:00:00','2020-07-04 01:06:28'),(115,'The leachate of a certain plant ash is used in local soap making because it contains','Sodium chloride and potassium hydroxide','Sodium hydroxide','Potassium hydroxide','Soluble carbonates and hydrogen carbonates','','','c','','utme','2003',1129,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(116,'The formula for ethyl butanoate is','C3H7COOC2H5','C2H5COOC3H7','C4H9COOC2H5','C2H5COOC4H9','','','a','','utme','2003',1099,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(117,'The type of reaction that is peculiar to benzene is','Addition','Hydrolysis','Polymerization','Substitution','','','d','','utme','2003',1084,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(118,'Ethanol reacts with excess acidified K2Cr2O7 to produce','Ethanoic acid','Ethanol','Ethyl ethanoate','Ethanoic acid','','','d','','utme','2003',1084,'Admin','0000-00-00 00:00:00','2020-07-05 00:30:21'),(119,'A compound contains 40.0% carbon, 6.7% hydrogen and 53.3% oxygen. If the molar mass of the compound is 180, find the molecular formula  [H = 1, C = 12, O = 16]','CH2O','C3H6O3','C6H12O6','C6H6O3','','','c','','utme','2003',1100,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(120,'The process by which atoms are rearranged into different molecular structures in the petroleum refining process is referred to as','Catalytic cracking','Hydrocracking','Polymerization','Reforming','','','d','','utme','2003',1118,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(121,'Which of the following is found in cotton','Starch','Cellulose','fat','oil','','','b','','utme','2003',1095,'Admin','0000-00-00 00:00:00','2020-07-05 08:30:51'),(122,'the principal constituent of natural gas is methane','ethane','propane','butane','butane','','','a','','utme','2003',1066,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(123,'When a solid substance disappears completely as a gas on heating, the substance is said to have under gone','Evaporation','Distillation','Crystallization','Sublimation','','','d','','utme','2004',1177,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(124,'A chemical reaction is always associated with','An increase in the composition of one of the substances','A change in the volume of the reactants','A change in the nature of the reactants','The formation of new substances','','','d','','utme','2004',1096,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(125,'If a solution contains 4.8g of Tetraoxosulphate (VI) acid. Calculate the amount of copper(II) oxide that will react with it  [CU = 64, O = 16, S = 32, H = 1]','0.8g','4.0g','40.0g','80.0g','','','b','','utme','2004',1103,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(126,'What volume of gas is evolved at s.t.p. if 2g of calcium trioxocarbonate(IV) is added to a solution of hydrochloric acid    [Ca = 40, C = 12, O = 16, CI = 35.5, H = 1, Molar volume of a gas at s.t.p = 22.4dm3]','112cm3','224cm3','448cm3','224cm3','','','c','','utme','2004',1102,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(127,'According to Charles  law, the volume of a gas becomes zero at','00C','-1000C','-2730C','-3730C','','','c','','utme','2004',1075,'Admin','0000-00-00 00:00:00','2020-07-06 13:44:46'),(128,'It is difficult to achieve an orderly arrangement of the molecules of a gas because they','Have no definite shape','Have little force attraction between them','Can collide with one another in the container','Are too small in size','','','b','','utme','2004',1118,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(129,'A given volume of methane diffuses in 20s. how long will it take the same volume of sulphur(IV) oxide to diffuse under the same conditions    [C = 12, H = 1, S = 32, O = 16]','5s','20s','40s','60s','','','c','','utme','2004',1110,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(130,'An electron can be added to a halogen atom to form a halide ion with','2 valence electrons','3 valence electrons','7 valence electrons','Valence electrons','','','d','','utme','2004',1105,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(131,'The shape of the s-orbital is','Spherical','Elliptical','Spiral','Circular','','','a','','utme','2004',1167,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(132,'The property of chlorine which causes hydrogen chloride to be more ionic than the chlorine molecule is its','Electrovalency','Electron affinity','Electropositivity','Electronegativity','','','d','','utme','2004',1079,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(133,'Chlorine consisting of two isotopes of mass numbers 35 and 37 in the ratio 3:1 has an atomic mass of 35.5. Calculate the relative abundance of the isotope of mass number 37.','20','25','60','75','','','b','','utme','2004',1094,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(134,'Which of the following mixtures of gases is likely to burn in flame','Neon and hydrogen','Nitrogen and helium','Helium and neon','Neon and nitrogen','','','a','','utme','2004',1079,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(135,'Hardness of water is caused by the presence of the ions of','Magnesium and silver','Calcium and magnesium','Sodium and potassium','Calcium and sodium','','','b','','utme','2004',1170,'Admin','0000-00-00 00:00:00','2020-06-29 12:37:14'),(136,'Pollution of underground water by metal ions is very likely in a soil that has high','Acidity','Alkalinity','Chloride content','Nitrate content','','','a','','utme','2004',1108,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(137,'A carcinogenic substance is','Asbestos dust','Sawdust','Nitrogen(II) oxide','Carbon (II) oxide','','','a','','utme','2004',1046,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(138,'The solubility in mol dm-3 of 20g of CuSO4 dissolved in 100g of water at 1800C is  [Cu = 64, S = 32, O = 16]','0.13','0.25','1.25','2','','','c','','utme','2004',1087,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(139,'Calcium Tetraoxosulphate(VI) dissolves in water only sparingly to form a','Solution','Suspension','Precipitate','Colloid','','','d','','utme','2004',1085,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(140,'Which of these compounds is a normal salt','NaHS','NaSO4','NaHCO3','Na2CO3','','','d','','utme','2004',1042,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(141,'What volume of 0.5mol dm-3 H2SO4 will exactly neutralize 20cm3 of 0.1 mol dm-3 NaOH solution','2.0cm3','5.0cm3','6.8cm3','8.3cm3','','','a','','utme','2004',1157,'Admin','0000-00-00 00:00:00','2020-07-06 22:19:40'),(142,'The oxidation state of chlorine in HClO4 is','-5','-1','1','7','','','d','','utme','2004',1130,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(143,'ZnO(s) + CO (g) → Zn(s) + CO2 (g). ','Decomposed','Displaced','Oxidized','Reduced','','','d','','utme','2004',1108,'Admin','0000-00-00 00:00:00','2020-07-05 12:23:51'),(144,'Which of the following acts as both a reducing and an oxidizing agent','H2','SO2','H2S','CO2','','','b','','utme','2004',1124,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(145,'In the electrolysis of brine, the anode is','Platinum','Copper','Zinc','Carbon','','','d','','utme','2004',1042,'Admin','0000-00-00 00:00:00','2020-07-05 14:55:27'),(146,'The mass of silver deposited when a current of 10A is passed through a solution of silver salt for 4830s is    [Ag = 108, F = 96500 Cmol-1]','108.0g','54.0g','27.0g','13.5g','','','b','','utme','2004',1138,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(147,' 2CO(g)  +  O2(g) →  2CO2(g)\\nGiven that   Δ H [CO] is 110.4kJ mol-1 and Δ H [CO2] is -393.0kJ mol-1, the energy change for the reaction above is\\n','-503.7kJ','-282.6kJ','+282.6kJ','+503.7kJ','','','N','','utme','2004',1069,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(148,'Which of the following hydrogen halides has the highest entropy value','HF','HCl','HBr','Hl','','','a','','utme','2004',1022,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(149,' N2O4(g)    ⇌  2NO2(g)','A constant volume','An increase in pressure','A decrease in pressure',' A decrease in volume','','','c','','utme','2004',1090,'Admin','0000-00-00 00:00:00','2020-07-04 01:06:28'),(150,'Which of the following shows little or no net reaction when the volume of the system is decreased',' H2(g)  +  l2(g)  ⇌  2Hl(g)','2NO2(g)  ⇌  N2O4(g)',' PCl5(g)   ⇌ PCl3(g)  + Cl2(g)',' 203(g)   ⇌  3O2(g)','','','a','','utme','2004',1130,'Admin','0000-00-00 00:00:00','2020-07-06 12:51:35'),(151,'The allotrope of carbon used in the decolourization of sugar is','Graphite','Soot','Charcoal','Lampblack','','','c','','utme','2004',1084,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(152,'Which of the following gases can be collected by the method of downward delivery','Chlorine','Oxygen','Ammonia','Hydrogen','','','a','','utme','2004',1124,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(153,'Which steam is passed over red-hot carbon, the substances produced are','Hydrogen and trioxocarbonate(IV) acid','Hydrogen, oxygen and carbon(IV) oxide','Hydrogen and carbon (II) oxide','Hydrogen and carbon (IV) oxide','','','c','','utme','2004',1140,'Admin','0000-00-00 00:00:00','2020-06-28 17:55:51'),(154,' sulphur (IV) oxide bleaches by','Reduction','Oxidation','Hydration','Absorption','','','a','','utme','2004',1133,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:43'),(155,'Carbon is tetravalent because','The electrons in both the 2s and 2p orbitals are equivalent','The electrons in all the orbitals of carbon are equivalent','The 2s and 2p atomic orbitals hybridize','All the atomic orbitals of carbon hybridize','','','c','','utme','2004',1103,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(156,'Aluminium hydroxide is used in the dyeing industry as a','Salt','Dye','Mordant','Dispersant','','','c','','utme','2004',1048,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(157,'Alloys are best prepared by','Electroplating','Arc-welding','Reducing a mixture of their metallic oxides','Cooling a molten mixture of the metals','','','d','','utme','2004',1139,'Admin','0000-00-00 00:00:00','2020-06-23 19:50:55'),(158,'Transition metals posses variable oxidation states because they have','Electrons in the d orbitals','Electrons in the s orbitals','A variable number of electrons in the p orbitals','Partially filled p orbitals','','','d','','utme','2004',1135,'Admin','0000-00-00 00:00:00','2020-07-06 15:13:42'),(159,'Sodium metal is always kept under oil because it','Readily reacts with water','Is reduced by atmospheric nitrogen','Reacts vigorously on exposure to air','Reacts with oxygen and carbon(IV) oxide','','','c','','utme','2004',1101,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(160,'Oxyacetylene flame is used for iron-welding because it',' makes the iron metal solidity very quickly','Combines with oxygen to give a pop sound','Evolves a lot of heat when burnt','Dissociates to produce carbon (IV) oxide and oxygen','','','c','','utme','2004',1051,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(161,'The alkyl group can be represented by the general formula','CnH2n+1','CnH2n','CnH2n+2','CnH2n-2','','','a','','utme','2004',1044,'Admin','0000-00-00 00:00:00','2020-06-20 18:17:59'),(162,'An isomer of C5H12 is','Butane','2-methylbutane','2-methylprpane','2-ethylbutane','','','b','','utme','2004',1133,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:17'),(163,'A characteristic of the alkane family is','Addition reaction','Elimination reaction','Substitution reaction','Neutralization reaction','','','c','','utme','2004',1054,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(164,'Which of these reagents can confirm the presence of a triple bond','Bromine water','Acidified KMnO4 ','Copper (I) chloride','Bromine gas','','','c','','utme','2004',1093,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(165,'Vulcanization involves the removal of','A monomer','The single bond','The double bond','A polymer','','','c','','utme','2004',1066,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:02'),(166,'The reaction above is','Carboxylation','Decarboxylation','Acidification','Esterification','','','b','','utme','2004',1096,'Admin','0000-00-00 00:00:00','2020-06-27 15:16:18'),(167,' Alkanol + Alkanoic acid ⇌  Ester + water.\\nThe reverse reaction of the equation above is known as\\n','Hydrolysis','Saponification','Hydration','Fermentation','','','a','','utme','2004',1045,'Admin','0000-00-00 00:00:00','2020-07-06 10:39:02'),(168,'In the production of soap, concentrated sodium chloride solution is added to','Increase the solubility of the soap','Decrease the solubility of the soap','Saponify the soap','Emulsify the soap','','','b','','utme','2004',1048,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(169,'The gas that can be dried using concentrated Tetraoxosulphate (VI) acid is','Ammonia','Hydrogen bromide','Sulphur (IV) oxide','Hydrogen sulphide','','','c','','utme','2005',1248,'Admin','0000-00-00 00:00:00','2020-06-28 08:46:50'),(170,'The property used in the industrial preparation of nitrogen and oxygen from air is','Rate of diffusion','Solubility','Density','Boiling point','','','d','','utme','2005',1162,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(171,'A dense white fume is formed when ammonia gas reacts with','H2(g)','O2(g)','HCI(g)','Cl2(g)','','','c','','utme','2005',1123,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(172,'In a flame test for calcium, the flame appears','Blue when viewed through a blue glass','Green when viewed through a blue glass','Orange-red when viewed through a blue glass','Brick-red when viewed through a blue glass','','','c','','utme','2005',1189,'Admin','0000-00-00 00:00:00','2020-07-06 16:46:20'),(173,'Which of the following alloys contain iron','Steel and permalloy','Duralumlin and steel','nd Soft Solder a Duralumlin ','Brass and bronze','','','a','','utme','2005',1113,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(174,'To obtain pure carbon(II) oxide from its mixture with carbon (IV)oxide, the mixture should be','Bubbled through concentrated Tetraoxosulphate(VI) acid','Bubbled through sodium hydroxide','Passed over heated copper(II) oxide','Bubbled through water','','','b','','utme','2005',1245,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(175,'N2(g)  +  3H2(g)  ⇌   2NH2(g)   Δ H = - 90kJ  In the equation above, the yield of ammonia can be decreased by','Adding a catalyst','Removing ammonia','Increasing the pressure','Increasing the temperature','','','d','','utme','2005',1134,'Admin','0000-00-00 00:00:00','2020-07-05 08:30:51'),(176,'Metalloids are also referred to as','Metals','Semi-metals','Colloids','Non-metals','','','b','','utme','2005',1101,'Admin','0000-00-00 00:00:00','2020-06-30 23:46:55'),(177,'The ores that can be concentrated by flotation are','Nitride ores','Chloride ores','Oxide ores','Sulphide ores','','','d','','utme','2005',1113,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(178,'The most suitable metal that can be used as a lightening  conductor is','Aluminium','Iron','Copper','Silver','','','d','','utme','2005',1196,'Admin','0000-00-00 00:00:00','2020-07-06 15:13:42'),(179,'NH4CI(g) ⇌   NH3(g)  +  HCI(g)   The reaction above can only attain equilibrium if','It is in a closed system','It is in an open system','One of the products is removed','A gaseous reactant is added','','','a','','utme','2005',1092,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(180,'When pure aluminum metal is heated to red hot in the presence of nitrogen gas, the compound formed is','AI2N','AIN','AI2N2','AI2N3','','','b','','utme','2005',1201,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(181,'The most abundant element on the earth’s crust is','Oxygen','Fluorine','hydrogen','nitrogen','','','a','','utme','2005',1181,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(182,'The pressure of 100cm3 of oxygen at 350C is 750mmHg. What will be the volume of the gas if the pressure is reduced to 100mmHg  without changing the temperature','850cm3','750cm3','650cm3','580cm3','','','b','','utme','2005',1183,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(183,'What is the valence shell electron configuration of the element with atomic number 17','1s22s22p63s23p5','1s22s22p63s23p4','3s23p5','2s22p6','','','a','','utme','2005',1140,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(184,'A heterogeneous mixture can be defined as any mixture','Whose composition is uniform','Whose composition is not uniform','Formed by solids and liquids','Of a solute and a solvent','','','b','','utme','2005',1099,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(185,'The density of a certain gas is 1.98g dm-3 at s.t.p. What is the molecular mass of the gas   [Molar volume of a gas at s.t.p = 22.4dm-3]','26.0g','31.0g','54.0g','44.0g','','','d','','utme','2005',1139,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(186,'Treatment of cancer   II. Detection of leakages in water mains   III. Detection of the ages of ancient tools    Which combination of the above refers to the uses of radioactive isotopes?','I, II and III','I, II, III and IV','II and III','I and II','','','a','','utme','2005',1194,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(187,'An element will readily form an electrovalent compound if its electron configuration is','2,8,8','2,,8,4','2,8,5','2,8,1','','','d','','utme','2005',1160,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(188,'How many moles of limestone will be required to produce 5.6g of CaO','0.20 mol','1, 12mol','0.10 mol','0.56 mol','','','c','','utme','2005',1194,'Admin','0000-00-00 00:00:00','2020-07-05 08:30:51'),(189,'The shape of the hydrocarbon compound CH4 is','Square planar','Tetrahedral','Planar','Linear','','','b','','utme','2005',1138,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(190,'Which of these properties gives a solid its definite shape','Weak intermolecular attraction','High boiling point','High melting point','Strong intermolecular attraction','','','d','','utme','2005',1171,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(191,'The component of an atom that contributes least to its mass is the','Nucleus','Neutron','Electron','Proton','','','c','','utme','2005',1170,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(192,'Sugar is separated from its impurities by','Distillation','Evaporation','Precipitation','Crystallization','','','d','','utme','2005',1171,'Admin','0000-00-00 00:00:00','2020-07-06 13:52:41'),(193,'Equal moles of ethyne and hydrogen iodide react to give','CH2 = CH2','CH2 = CHI','CH2 – CHI','CH2 – CI3','','','b','','utme','2005',1214,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(194,'How many hydrogen atoms does a single ring cycloalkane have less than the corresponding open- chain alkane','Three','One','Four','Two','','','d','','utme','2005',1203,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(195,'The decolourization of the purple colour of a tetraoxomanganate (VII) ion is a test for','Alkanals','Alkanes','Alkenes','Alkanols','','','c','','utme','2005',1155,'Admin','0000-00-00 00:00:00','2020-06-28 02:42:53'),(196,'In the purification of impure samples of ethyl ethanoate synthesized by esterification, concentrated sodium trioxocarbonate(IV) solution is used to remove','Water','Acidic impurities','Basic impurities','Ethoxyethane','','','b','','utme','2005',1195,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(197,'A substance that is used as a ripening agent for fruits is','Propene','Methane','Ethene','Butane','','','c','','utme','2005',1100,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(198,'Which of the following are structural isomers','Propanoic acid and propan-1, 2-diol','Ethanoic acid and propanoic acid','Ethan-1, 2 –diol and ethanoic acid','Propanal and propanone','','','d','','utme','2005',1156,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(199,'The enzyme responsible for converting sucrose into two simple isomeric sugars is','Invertase','Amylase','Lactose','Maltase','','','a','','utme','2005',1181,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(200,'Natural water collected from rivers and ponds contains oxygen, carbon(IV) oxide and','Chlorine','Hydrogen','Sulphur(IV) oxide','Nitrogen','','','c','','utme','2005',1135,'Admin','0000-00-00 00:00:00','2020-07-05 20:36:19'),(201,'Kerosene is commonly used to remove the red colour stain of palm oil from clothes because it','Helps to spread the oil over a larger surface area','Makes the oil evaporate easily by dissolving it','Helps to dilute the oil and reduce its colour','Reacts with the oil to form an odourless compound','','','b','','utme','2005',1160,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(202,'25cm3 of a mixture of noble gases was obtained from air after the removal of other constituents. What was the original volume of air','125cm3','1250cm3','2500cm3','80cm3','','','c','','utme','2005',1149,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(203,'The solubility curve shows the variation of solute concentration with','Volume','Vapour density','Pressure','Temperature','','','d','','utme','2005',1132,'Admin','0000-00-00 00:00:00','2020-06-28 22:29:32'),(204,'The air around smelting industries is likely to contain','CO2, SO3 and H2','SO2N2 and CO2','H2, SO2 and CO2','H2S, CO and N2','','','b','','utme','2005',1204,'Admin','0000-00-00 00:00:00','2020-07-05 12:56:06'),(205,'When water boilers are used for a long period of time, the solid substances left behind as scale are','Magnesium trioxosilicate (IV) and calcium Tetraoxosulphate(VI)','Magnesium trioxosilicate(IV) and rust','Clay and magnesium trioxosilicate (IV)','clay and rust','','','','','utme','2005',1147,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(206,'The gas that is the most dangerous pollutant to humans is','Carbon(IV) oxide','Nitrogen (II)oxide','Hydrogen sulphide','Sulphur(IV) oxide','','','c','','utme','2005',1239,'Admin','0000-00-00 00:00:00','2020-07-05 03:04:24'),(207,'In which of the following reactions can the oxidation number of nitrogen be said to have increased','FeSO4(aq)  +  NO(g) →   Fe(NO)SO4(S)','2NO(g)  +  O2(g) → 2NO2(g)','NO(g)  +  CI2(g)  → NOCI2(l)','NO(g)  +  Br2(l)   → NOBr2(l)','','','b','','utme','2005',1181,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(208,'A concentrated solution containing H+, Cu2+, OH- and Cl- was electrolyzed using platinum electrodes. The ion that will be discharged at the cathode is','OH-','Cl-','Cu2+','H+','','','c','','utme','2005',1104,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(209,'Phenolphthalein in acidic solution is','Colourless','Yellow','Red','Orange','','','a','','utme','2005',1115,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:19'),(210,'When sulphur (IV) oxide is passed into a solution of sodium hydroxide for a long time. It eventually produces a solution of','Na2SO4','NaHSO4','Na2SO3','NaHSO3','','','d','','utme','2005',1126,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:17'),(211,'What is the correct IUPAC name for NO2','Dioxonitrate(III) ion','Dioxonitrate(IV) ION','trioxonitrate(iii) ion','trioxonitrate(iv) ion','','','a','','utme','2005',1150,'Admin','0000-00-00 00:00:00','2020-07-06 10:39:02'),(212,'What will happen if an aluminum spoon is used to stir a solution of iron (II) trioxonitrate(V)','The spoon will be reduced while the iron(II) ions will be oxidized','The spoon will be oxidized while the iron (II) ions will be reduced to the metal','The spoon will be reduced','The spoon will increase in size','','','b','','utme','2005',1236,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(213,'Which of the following equimolar solutions will have the highest pH','NH4OH','CH3COONa','HCI','NaOH','','','c','','utme','2005',1131,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(214,'2H2 + O2  → 2H2O  ΔH = -571Kj  In equation above, how much heat will be liberated if 12.0g of hydrogen is burnt in excess oxygen?','-1713kJ','+1142kJ','-571kJ','-1142kJ','','','a','','utme','2005',1181,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(215,'Which of the following ions requires the largest quantity of electricity for discharge at an electrode','2.5 moles of Cu2+','4.0 moles of CI-','2.0 moles of Al3+','3.0 moles of Na+','','','c','','utme','2005',1173,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:17'),(216,'H2(g)  +  Br2(g) →  2BHr(g)  The reaction above is carried out at 250C. If Δ H is kJ mol-1 and   Δ S is -106J mol-1K-1 the reaction will','Proceed spontaneously at lower temperatures','Not proceed spontaneously at the given temperature','Proceed spontaneously at the given temperature','[proceed in the reverse direction at the given temperature','','','d','','utme','2006',1103,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(217,'Na2CO3(aq)  +  2HCI(aq)  → 2NaCI(aq)  +  H2O(l)  +  CO2(g)    How many moles of sodium trioxocarbonate (IV) are there in a 25cm3 solution which required 10cm3 of 0.05 mol dm-3 hydrochloric acid solution to neutralize it?','0.100mloe','0.001mole','1.000mole','0.010mole','','','d','','utme','2006',1091,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(218,'The ion that can be used as an oxidizing agent is','Fe3+','F-','Ca2+','Au3+','','','c','','utme','2006',1086,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(219,'Zinc and carbon rods are used as anode and cathode respectively in a','Voltaic cell','Lead accumulator','Leclanche cell','Daniel cell','','','c','','utme','2006',1106,'Admin','0000-00-00 00:00:00','2020-07-05 17:03:16'),(220,'Trioxonitrate(V) acid is not used for preparing hydrogen gas from metals because it','Renders the metal passive','Is strongly oxidizing','Is volatile','','','','a','','utme','2006',1127,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(221,'Forms a layer of oxide on the metal   If the heat of combustion of hydrogen is -285.8kJ. what is the heat of formation of water','-285.8Kj','-571.6kJ','+571kJ','+285.8kJ','','','a','','utme','2006',1139,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(222,'In the electrolysis of CuSO4(aq) using platinum electrodes, the reaction at the anode is','4H+  +  4e-  → 2H2','2OH  +  2OH-  →  2H2O + O2','2OH-  - 2e-    → 2OH','4OH-  -  4e- →  2H2O + O2','','','d','','utme','2006',1119,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(223,'IN which of the following is the oxidation number of sulphur equal to -2','H2S','SO3','S8','SO2','','','a','','utme','2006',1121,'Admin','0000-00-00 00:00:00','2020-06-28 00:48:30'),(224,'5SO2(g)  +  2KMnO4(aq)  +  2H2O(l)  ⇌   K2SO4(aq)  +  2MnSO4(aq)  +   2H2HSO4(aq)   In the reaction above, the products give a','Colourless solution','Purple precipitate','Purple solution','Colourless precipitate','','','a','','utme','2006',1127,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(225,'The solution that will conduct the highest amount of electricity is','2.0 moldm-3 of ethanoic acid','0.5 mol dm-3 of ethanoic acid','2.0 mol dm-3 of hydrochloric acid','0.5 moldm-3 of hydrochloric acid','','','c','','utme','2006',1089,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(226,'What is the mola. Mass of a substance, if 0.4 mole of the substance has a mass of 25.0g','6.3g','40.0g','62.5g','2.5g','','','c','','utme','2006',1174,'Admin','0000-00-00 00:00:00','2020-06-28 02:40:53'),(227,'The order in which a mixture of sand ammonium chloride and sodium chloride can be separated is','Sublimation   dissolution  filtration  evaporation','Dissolution  dryness  filtration  evaporation','Filtration  sublimation  evaporation  dryness','Dissolution  filtration  sublimation  evaporation','','','a','','utme','2006',1072,'Admin','0000-00-00 00:00:00','2020-07-06 15:13:42'),(228,'The volume of 2.5 moles of oxygen at s.t.p is','56.0dm3','84.0dm3','50.0dm3','20.0dm3','','','a','','utme','2006',1099,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(229,'[Molar volume of a gas at s.t.p + 22.4dm3} Nuclear fission involves the splitting of a heavy element into two nuclei of','Equal masses with a release of energy','Nearly equal masses with a release of energy and radiation','Equal masses with a release of energy and radiation','Unequal masses without any release of energy','','','b','','utme','2006',1133,'Admin','0000-00-00 00:00:00','2020-07-05 21:51:34'),(230,'2C2H2(g)  +  5O2(g)     4CO2(g)  +  2H2O(g) In the reaction, the mass of carbon (IV) oxide produced on burning 78g of ethyne is [C = 12, O = 16, H = 1]','39','352g','264g','156g','','','c','','utme','2006',1057,'Admin','0000-00-00 00:00:00','2020-07-05 15:11:43'),(231,'A particle that contain s 11protons, 12 neutrons and 10 electrons is probably a','Metallic ion','Non-metallic ion','Neutral metal','Neutral non-metal','','','a','','utme','2006',1152,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(232,'The element with the electron configuration 1s22s22p3 is','Oxygen','Chlorine','Nitrogen','Calcium','','','c','','utme','2006',1156,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(233,'A difference between chemical and physical change is that in a chemical change','Heat is supplied',' A new substance is formed','Oxygen is consumed','A reversible process occurs','','','b','','utme','2006',1184,'Admin','0000-00-00 00:00:00','2020-06-27 16:41:02'),(234,'A degree in atomic size and an increase in knuckler charge across a period lead to','A decrease in covalency in bond formation','An increase in chemical reactivity','An increase in the tendency to loss electrons','A decrease in electro positivity','','','d','','utme','2006',1088,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(235,'The idea of planetary electrons was that of','Bohr','Thompson','Rutherford','Dalton','','','a','','utme','2006',1130,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(236,'If 30cm3 of a gas at 500C is warmed to 800C at a fixed pressure. The fractional increase in volume is','0.91','0.009','1.09','0.093','','','d','','utme','2006',1159,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(237,'Which of the following has an isomer','C4H10','C6H6','C2H4','C2H6','','','a','','utme','2006',1158,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(238,'An example of aliphatic unsaturated hydrocarbon is','Butanol','Propene','Pentane','Benzene','','','b','','utme','2006',1108,'Admin','0000-00-00 00:00:00','2020-07-06 13:52:41'),(239,'One mole of a hydrocarbon contains 36g of carbon and its vapour density is 20. The structure of the hydrocarbon is','CH3CH2CH3','CH3CH = CH2','CH3CH2C = CH','CH3C = CH','','','d','','utme','2006',1110,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(240,'CH3-CH2-C = CH  The hybridization in the compound above is','Sp3 and sp','Sp3 and sp2','Sp','Sp2','','','a','','utme','2006',1155,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(241,'Nigerian crude oil is described as light crude because of its','Low aliphatic hydrocarbon content','Low sulphur content','High natural gas content','High octane number','','','c','','utme','2006',1145,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(242,'The gas obtained as a product of anaerobic action ob organic matter buried in the earth is','Nitrogen(IV) oxide','Carbon(IV) oxide','Methane','Ethene','','','c','','utme','2006',1124,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(243,'When a crystal was added to the clear solution of its salt, the crystal did not dissolve and the solution remained unchanged. This showed that the solution was','Supersaturated','Unsaturated','Saturated','Concentrated','','','c','','utme','2006',1127,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(244,'The produce of the combustion of candle wax are','Carbon(IV) oxide and water','Oxygen and water','Hydrogen and water','Carbon(II)oxide an d water','','','a','','utme','2006',1112,'Admin','0000-00-00 00:00:00','2020-07-06 15:13:42'),(245,'When 5.0cm3 of a saturated solution of sugar of molar mass 342g at 400C was evaporated to dryness, 34.2g of dry solid was obtained. The solubility of sugar at 400C is','7.0 mol dm-3','3.5 mol dm-3','2.0 mol dm-3','10.0mol dm-3','','','c','','utme','2006',1162,'Admin','0000-00-00 00:00:00','2020-06-26 23:08:25'),(246,'Which of the following results in the fall of acid rain','Gaseous hydrocarbons','Oxide of lead','Particulate matter','Oxides of sulphur','','','d','','utme','2006',1083,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(247,'Water has the ability to dissolve almost all substances because its molecule has a structure with','One positive end and one neutral end','Two positive ends','One positive end and one negative end','Two negative ends','','','c','','utme','2006',1137,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(248,'An emulsion may be produced by shaking a detergent solution with','Palm wine','Palm oil','Ethanoic acid','Water','','','d','','utme','2006',1092,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(249,'One heating may be produced by shaking a detergent solution with','Cu(NO3)2','AgNO3','Ca(NO3)2','NaNO3','','','b','','utme','2006',1082,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(250,'Dynamic equilibrium describes a situation where','A reaction gives back the reactants','Reactants are converted to products','The concentration of reactants and products is equal','Both forward and reverse reaction proceed at the same rate','','','d','','utme','2006',1159,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(251,'The raw material used for the smelting of iron ore in a furnace is','Zn(NO3)2','CaSO4','CuSO4','CaCO3','','','d','','utme','2006',1124,'Admin','0000-00-00 00:00:00','2020-07-06 22:31:06'),(252,'Carbon exists naturally in the combined state as','Diamond','Coal','Wood','Graphite','','','c','','utme','2006',1101,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(253,'The sulphide which is insoluble in dilute hydrochloric acid is','CuS','Na2S','FeS','ZnS','','','a','','utme','2006',1103,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(254,'The efficiency of a solid catalyst to increase reaction rates depends on its','Concentration','Solubility','Quantity','Surface area','','','d','','utme','2006',1146,'Admin','0000-00-00 00:00:00','2020-06-29 14:50:50'),(255,'In the industrial production of H2 from natural gas, the CO2 produced along with the H2 is removed by','Passing the mixture into lime water','Washing under pressure','Drying over phosphorous(V)oxide','Using ammoniac copper(l) chloride','','','b','','utme','2006',1097,'Admin','0000-00-00 00:00:00','2020-07-06 13:10:23'),(256,'Which of the following typically represents a photochemical reaction','Conversion of dinitrogen (IV) oxide to nitrogen(IV) oxide','Conversion of silver halides to grey metallic silver','Decomposition of calcium hydroxide to its oxide','Formation of water from hydrogen and oxygen molecules','','','b','','utme','2006',1147,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(257,'Group IA metals are not found free in nature because they','Have high melting and boiling points','Conduct heat and electricity','Are very reactive and unstable','Are malleable and ductile','','','c','','utme','2006',1108,'Admin','0000-00-00 00:00:00','2020-07-05 05:55:40'),(258,'The characteristic colour of the flame shown when a copper salt moistened with concentrated hydrochloric acid on platinum is put on a bunzen burner is','Green','Lilac','Yellow','Brick-red','','','a','','utme','2006',1102,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(259,'The ion that will give a white precipitate with aqueous NaOH and soluble in excess of the base is','Zn2+','Mg2+','Ca2+','Cu2+','','','a','','utme','2006',1099,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(260,'Which of he following pairs of substances will react further with oxygen to form a higher oxide','SO2 and NO','CO2 and H2O','CO and CO2','NO and H2O','','','a','','utme','2006',1057,'Admin','0000-00-00 00:00:00','2020-07-06 15:47:24'),(261,'Which of the following is an example of a mixture','Blood','Sand','Washing soda','Common salt','','','a','','utme','2010',1274,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(262,'Calculate the percentage by mass of nitrogen in calcium trioxonitrate (V)   {Ca = 40, N = 14, O = 16}','13.10%','17.10%','27.60%','8.5','','','d','','utme','2010',1186,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(263,'The droplets of water observed around a bottle of milk taken out of though refrigerator is due to the fact that the','Temperature of the milk drops as it loses heat into the surroundings','Saturated vapour pressure of the milk is equal to the atmospheric pressure','Water vapour in the air around loses some of its energy to the bottle','Water vapour in the air around the bottle gains some energy from the bottle','','','c','','utme','2010',1231,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(264,'The volume of a gas is Vcm3 at P mm Hg. What is the new volume of the gas if the pressure is reduced to half at constant temperature','2 V cm3','V  2cm3','V cm3','4 V cm3','','','a','','utme','2010',1213,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(265,'Moving from left to right across a period, the general rise in the first ionization energy can be attributed to the','Increase in nuclear charge','Decrease in screening effect','Increase in screening effect','Decrease in nuclear charge','','','a','','utme','2010',1244,'Admin','0000-00-00 00:00:00','2020-07-05 09:10:52'),(266,'How many unpaired electron(s) are there in the nitrogen  sub - levels','2','1','0','3','','','d','','utme','2010',1176,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(267,'The stability of the noble gases is due to the fact that they','Have duplet or octet electron configurations','Belong to group zero of the periodic table','Are volatile in nature','Have no electron in their outermost shells','','','a','','utme','2010',1243,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:34'),(268,'The maximum number of electrons in the L shell of an atom is','8','18','32','2','','','a','','utme','2010',1221,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(269,'Elements in the same periodic table have the same','Atomic number','Chemical properties','Physical properties','Number of shells','','','d','','utme','2010',1277,'Admin','0000-00-00 00:00:00','2020-07-05 17:03:16'),(270,'A noble gas with a high power of fog penetration used in aerodrome beacons is','Argon','Helium','Neon','Krypton','','','c','','utme','2010',1205,'Admin','0000-00-00 00:00:00','2020-07-07 06:54:49'),(271,'Permanent hardness of water can be removed by','Adding slaked lime','Adding caustic soda','Boiling','Filtration','','','b','','utme','2010',1251,'Admin','0000-00-00 00:00:00','2020-07-05 18:09:36'),(272,'Substances employed as drying agents are usually','Hygroscopic','Efflorescent','Acidic','Amphoteric','','','a','','utme','2010',1197,'Admin','0000-00-00 00:00:00','2020-07-06 10:46:52'),(273,'Calculate the solubility in mol dm -3 of 40g of Cu So4 dissolved in 100g of water at 1200C  {Cu = 64, S = 32, 0 = 16}','2.5','0.4','0.25','4','','','a','','utme','2010',1206,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(274,'Coffee stains can best be removed by','Turpentine','A solution of borax in water','Ammonia solution','Kerosene','','','b','','utme','2010',1174,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(275,'Carbon (II) oxide is considered dangerous if inhaled mainly because it','Competes with oxygen in the blood','Competes with carbon (IV) oxide in the blood','Can cause lung cancer','Can cause injury to the nervous system','','','a','','utme','2010',1236,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(276,'The acid that is used to remove rust is','Hydrochloric','Trioxonitrate (V)','Tetraoxosulphate (VI)','Boric','','','b','','utme','2010',1241,'Admin','0000-00-00 00:00:00','2020-07-07 05:02:19'),(277,'Calculate the volume of 0.5 mol dm-3 H2SO4 that is neutralized by 25cm3 of 0.1 mol dm-3 NaOH','2.5cm3','0.4cm3','0.1cm3','5.0cm3','','','a','','utme','2010',1221,'Admin','0000-00-00 00:00:00','2020-07-06 12:52:01'),(278,'The colour of methyl orange in alkaline medium is','Pink','Orange','Red','Yellow','','','d','','utme','2010',1183,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(279,'Which of the following salts is slightly soluble in water','CaSO4','Na2CO3','PbCl2','AgCl','','','a','','utme','2010',1262,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(280,'6AgNO3(aq)  +  PH3(g) +    3H2O(l)      →    6Ag(s)+   H3PO3(aq)   +    6HNO3(aq)  In the reaction above, the reducing agent is','H2O(l)','PH3(g)','AgNO3(aq)','HNO3(AQ)','','','b','','utme','2010',1227,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(281,'The IUPAC nomencalatyre of the compound LiAIH4 is','Aluminium tetrahydrido lithium','Tetrahydrido lithium aluminate (III)','Lithium aluminium hydride','Lithium tetrahydridoaluminate (III)','','','d','','utme','2010',1234,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(282,'Iron can be protected from corrosion by coating the surface with','Silver','Copper','Zinc','Gold','','','c','','utme','2010',1190,'Admin','0000-00-00 00:00:00','2020-07-05 12:23:51'),(283,'What quantity of aluminum is deposited when a current of 10A is passed through a solution of an aluminum salt for 1930s  {AI = 27, F = 96500 C mol-}','1.8g','5.4g','14.2g','0.2g','','','a','','utme','2010',1295,'Admin','0000-00-00 00:00:00','2020-07-05 10:04:46'),(284,'In which of the following is the entropy change positive','Reaction between an acid and a base','Addition of concentrated acid to water','Dissolution of sodium metal in water','Thermal dissociation of ammonium chloride','','','c','','utme','2010',1254,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(285,'If a reaction is exothermic and thee is a great disorder, it means that','The reaction is in a state of equilibrium','There will be a large increase in free energy','There will be a large decrease in free energy','The reaction is static','','','b','','utme','2010',1159,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(286,'In the preparation of oxygen by heating KCIO3 in the presence of MnC2, only moderate hear is needed because the catalyst acts by','Increasing the surface area of the reactant','Increasing the rate of the reaction','Lowering the energy barrier of the reaction','Lowering the pressure of the reaction','','','c','','utme','2010',1234,'Admin','0000-00-00 00:00:00','2020-07-06 16:48:29'),(287,'2H2(g) +    O2(g)  ⇌ 2H2O(g)    ΔH   =  - ve  What happens to the equilibrium constant of the reaction above if the temperature is increased?','It becomes zero','It decreases','It increases','It is unaffected','','','b','','utme','2010',1293,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14'),(288,'To a solution of an unknown compound, a little dilute Tetraoxosulphate (IV) acid was added with some freshly prepared (II) Tetraoxosulphate (VI) Solution. The brown ring observed after the addition of a stream of concentrated  Tetraoxosulphate (VI) acid confirmed the presence of','CI','SO','NO','CO','','','c','','utme','2010',1210,'Admin','0000-00-00 00:00:00','2020-07-06 17:36:03'),(289,'Which of the following is used as a rocket fuel','CH3COOH','H2SO4','HCL','HNO3','','','d','','utme','2010',1235,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(290,'A constituent common to moist air, it gradually rusts. This is due to the formation of','Silver','Copper','Tin','Lead','','','c','','utme','2010',1231,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(291,'When iron is exposed to moist air, it gradually rusts. This is due to the formation of','Anahydrous  iron (III) oxide','Anhydrous iron (II) oxide','Hydrated iron (II) oxide','Hydrated iron  (III) oxide','','','d','','utme','2010',1231,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:00'),(292,'A compound gives an orange red colour to a non luminous flame. This compound is likely to contain','Ca2+','Fe3+','Fe2+','Na+','','','a','','utme','2010',1208,'Admin','0000-00-00 00:00:00','2020-07-06 15:13:42'),(293,'Stainless steel is used for making','Tools','Coins and medals','Moving parts of clocks','Magnets','','','a','','utme','2010',1218,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:53'),(294,'The residual solids from the fractional distillation of petroleum are used as','Raw materials for the cracking process','Fuel for driving tractors','Fuel for jet engines','Coatings for pipes','','','d','','utme','2010',1226,'Admin','0000-00-00 00:00:00','2020-07-05 15:17:54'),(295,'Which of the following is used as fuel in miners’ lamp','Ethyne','Ethane','Ethane','Ethanol','','','a','','utme','2010',1215,'Admin','0000-00-00 00:00:00','2020-07-06 13:32:17'),(296,'Which of the following organic compounds is very soluble in water','C2H2','C2H4','CH3COOC2H5','CH3COOH','','','d','','utme','2010',1259,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(297,'Benzene reacts with hydrogen in the presence of nickel catalyst at 1800C to give','Toluene','Cyclopentane','Cyclohexane','Xylene','','','c','','utme','2010',1241,'Admin','0000-00-00 00:00:00','2020-07-07 03:07:30'),(298,'Which of the following is used to hasten the ripening of fruit','Ethanol','Ethyne','Ethane','Ethane','','','d','','utme','2010',1251,'Admin','0000-00-00 00:00:00','2020-07-06 17:51:55'),(299,'The final products of the reaction between methane and chloride in the presence of ultraviolet light are hydrogen chloride and','Dichloromethane','Tetrachloromethane','Chloromethane','Trichloromethane','','','b','','utme','2010',1224,'Admin','0000-00-00 00:00:00','2020-07-06 15:13:42'),(300,'The correct order of increasing boiling points of the following  compounds C3H7OH, C7H16 and C4H10 is','C4H10  →  C7H16 → C3H7OH','C7H16 → C3H7OH → C4H16','C4H10  → C3H7OH  → C4H10','C3H7OH →  C4H10  → C7H16','','','a','','utme','2010',1265,'Admin','0000-00-00 00:00:00','2020-07-06 19:26:14'),(301,'One of the major uses of Alkanes is','In the hydrogenation of oils','In the textile industries','In the production of plastics','As domestic and industrial fuels','','','d','','utme','2010',1184,'Admin','0000-00-00 00:00:00','2020-07-01 21:44:02'),(302,'The haloalkanes used in the dry cleaning industries are','Chloroethane and dichloroethene','trichloroethene and tetrachloroethene','chloromethane and dichloroethene','Trichloromethane and tetrachloromethane','','','d','','utme','2010',1260,'Admin','0000-00-00 00:00:00','2020-07-01 22:26:29'),(303,' Two hydrocarbons X and Y were treated with bromine water. Decolorized the solution and Y did not. Which class of compound does Y belong','Alkynes','Alkenes','Alkanes','Benzene','','','c','','utme','2010',1176,'Admin','0000-00-00 00:00:00','2020-07-05 20:36:19'),(304,'The compound that is used as an anaesthetic is','CHCI3','CH2C2','CH3CI','CCI4','','','a','','utme','2010',1191,'Admin','0000-00-00 00:00:00','2020-07-07 03:05:14');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `civiledu` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=437 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `civiledu` VALUES (1,'Who among the following could be described as the founding father of Nigerian nationalism?','Nnamdi Azikiwe','Herbert Macauley','Ahmadu Bello','Obafemi Awolowo','','','b','','wassce','2014',65,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:33'),(2,'Rule of Law means','supremacy of the law','absence of legal immunity','peace, order and stability','obedience to any authority','','','a','','wassce','2014',73,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:44'),(3,'A major characteristic of civil society is','the desire to win election','corporate responsibility','social responsibility','political gerrymandering.','','','b','','wassce','2014',68,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:32'),(4,'Citizenship status is acquired through','birth, indigenization, colonization and referendum','association, convention, naturalization and incorporation','birth, naturalization, honorary and registration','registration, inter-relationship, integration and declaration.','','','c','','wassce','2014',65,'Admin','2016-11-26 14:40:53','2020-05-28 21:10:05'),(5,'Human Rights are basic natural rights which people enjoy primarily because they are','members of a political party','international citizens','members of a community','human beings.','','','d','','wassce','2014',65,'Admin','2016-11-26 14:40:53','2020-05-28 21:07:45'),(6,'Interpersonal relationship exists when','citizens pay their taxes regularly to inland revenue service','citizens are politically conscious and participate in voting','there is interaction between persons in a social setting.','groups share social interest and communal aspiration','','','d','','wassce','2014',62,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:13'),(7,'Cultism can be described to be','amiable','attractive','dangerous','harmless.','','','c','','wassce','2014',62,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:40'),(8,'Based on the statements above, the decision of the student on having a bullet proof vest shows that cultism','spreads fear and terror.','is a training ground for armed forces.','breeds courageous graduates.','propagates self - defence.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','a','','wassce','2014',75,'Admin','2016-11-26 14:40:53','2020-06-09 18:24:55'),(9,'It could be inferred from the statements above that cultism in schools could lead to','sudden prosperity.','uninterrupted academic calender.','popularity on campus.','untimely death.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','d','','wassce','2014',73,'Admin','2016-11-26 14:40:53','2020-05-28 21:09:28'),(10,'Victims of human trafficking are usually compelled to engage in','lucrative employment','visiting tourist sites','part - time studies','forced labour.','','','d','','wassce','2014',67,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:40'),(11,'One habit which People Living With HIV/AIDS (PLWHAs) must avoid to remain healthy and productive is','regular contact with healthy people.','self - pity and self - medication','participation in profitable ventures','pursuit of academic studies.','','','b','','wassce','2014',68,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:13'),(12,'Youth empowerment is best described as the','training given to individuals for acquiring means livelihood','practice of engaging in prospective career','provision of subsidized meals to the citizens by government,','mobilization of citizens for political rally.','','','a','','wassce','2014',62,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:01'),(13,'The National Assembly, Presidency and Court which are inter - related and interdependent in our democracy constitute the','tiers of government','types of democracy','forms of government.','arms of government','','','d','','wassce','2014',59,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:36'),(14,'A system of government that listens to public opinion and tolerates opposition is','dictatorial regime','capitalist regime','democratic regime','socialist regime','','','c','','wassce','2014',67,'Admin','2016-11-26 14:40:54','2020-05-28 21:06:40'),(15,'A situation where most citizens fail to vote in elections could be described as political','socialization','culture.','apathy','legitimacy','','','c','','wassce','2014',60,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:57'),(16,'The division of Nigeria into various constituencies with each electing a person to represent it in the National Assembly is a demonstration of','checks and balances','popular participation','political rivalry among the constituents','drive towards secession in the country.','','','b','','wassce','2014',79,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:53'),(17,'In Nigeria, public servants are expected to be','non - partisan','political','ambitious','apolitical','','','a','','wassce','2014',62,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:37'),(18,'The principle that public servants cannot be held responsible for their official actions denotes','impartiality','accountability','anonymity','neutrality.','','','c','','wassce','2014',77,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:05'),(19,'Universal Declaration of Human Rights (UDHR) is based on the resolution of the','Human Rights Watch','United Nations Organization','Amnesty International','League of Nations.','','','b','','wassce','2014',62,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:55'),(20,'According to the story, Imoh’s parents were','wealthy couple','prominent politicians','honest and responsible','religious fanatics','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','c','','wassce','2014',73,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:41'),(21,'What value did Imoh demonstrate.','Tolerance','Confidence','Fair play','Honesty','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','d','','wassce','2014',62,'Admin','2016-11-26 14:40:54','2020-05-28 21:08:52'),(22,'Conflicts are better resolved in the society through','tribunal','litigation.','dialogue','the court','','','c','','wassce','2014',69,'Admin','2016-11-26 14:40:54','2020-06-09 11:26:22'),(23,'To prevent the spread of HIV/AIDS, people should be encouraged to','avoid casual sexual activities','marry very early in life','engage in gainful employment','pursue higher education','','','a','','wassce','2014',74,'Admin','2016-11-26 14:40:54','2020-05-28 21:08:49'),(24,'The nearest government to the people and an important means of promoting grassroots development is the','state government','unitary government','local government','federal government','','','c','','wassce','2014',65,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:44'),(25,'Democratic governance is usually characterized by','free, fair and credible elections','buoyant and competitive economy','accessible employment opportunities','youth participation in governance','','','a','','wassce','2014',78,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:55'),(26,'Political apathy often leads to','low level of participation','good governance','political stability','low literacy level','','','a','','wassce','2014',70,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:46'),(27,'Which of the following is not necessary for public servants to perform effectively?','In - service training','Appointment based on nepotism','Value re - orientation for public servants','Incentives for meeting set goals','','','b','','wassce','2014',66,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:09'),(28,'One of the conditions which can limit the enjoyment of Human Rights in Nigeria is the','acceptance of foreign aid by the government','improvement in literacy level of the citizens','declaration of state of emergency by government','periodic review of the constitution by government','','','c','','wassce','2014',69,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:01'),(29,'The implication of positive communal relationships is that it','promotes solidarity and love','ensures obedience to constituted authority','encourages ethnic diversity','promotes rural-urban drift.','','','a','','wassce','2014',69,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:07'),(30,'One major factor that attracts some Nigerians into human trafficking is','over - population related issues','influx of foreigners into the country','insatiable quest for quick wealth','influence of Western and social media','','','c','','wassce','2014',70,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:37'),(31,'One of the reasons most HIV/AIDS patients are \treluctant to disclose their status is because of','the incurable nature of the ailment','fear of social stigmatization.','lack of sufficient public awareness','shortage of health counsellors','','','b','','wassce','2014',56,'Admin','2016-11-26 14:40:54','2020-05-28 21:09:48'),(32,'The position of the court on this matter justifies the essence of the','rule of law','legislature','police command','separation of powers','The Bawali High Court has ordered the police in Area Z Command to produce Mr. Zeb, who is in police custody for an alleged offence. The court insists that Mr. Zeb cannot be punished until he is found guilty of breach of any law of the land by a court of competent jurisdiction.','','a','','wassce','2014',66,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:01'),(33,'Leaders can best protect the interests of their followers by','embarking on periodic constitutional review','creating socio - economic opportunities for foreigners','creating conducive atmosphere for participation','rewarding supporters with contracts','','','c','','wassce','2014',72,'Admin','2016-11-26 14:40:54','2020-05-28 21:10:05'),(34,'The most popular means through which citizens of a country can participate in politics is by','being members of political parties','engaging in constructive criticism','engaging in political debates','voting in elections','','','d','','wassce','2014',70,'Admin','2016-11-26 14:40:54','2020-05-28 21:08:51'),(35,'Civil societies are vital for the promotion of popular participation because they are','profit - oriented organizations','engaged in developmental programmes','involved in political education','formidable oppositions to government','','','c','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-05-28 21:10:00'),(36,'From this dialogue, it is very likely that Wanja will be exhibiting the following characters except','disobedience to constituted authority','truancy and perpetual lateness to school','hospitable attitude towards people','arrogance and unruly behaviour.','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:21'),(37,'Which of the following may result from Wanja’s habit?','Humility for elders','Criminality in the society','Advocacy for hard drugs by NGOs','Excellent performance in school','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',65,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:45'),(38,'From Ada’s admonition, it could be deduced that taking hard drugs could','make people respect the addicts.','lead to insanity of the addicts','make people to adore the drug addicts','ensure courteous behaviour by the addicts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',71,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:51'),(39,'From the above dialogue, Wanja’s behaviour could be curtailed by','sending him abroad for further studies','financial inducement','re - orientation and rehabilitation','indulging him with expensive gifts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',56,'Admin','2016-11-26 14:40:55','2020-05-28 21:10:01'),(40,'Which of the following governmental agencies is the most capable of controlling the activities of Wanja and his group?','National Agency for Food and Drug Administration and Control (NAFDAC)','National Orientation Agency (NO A)','National Emergency Management Agency (NEMA)','National Drug Law Enforcement Agency (NDLEA)','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','d','','wassce','2014',48,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:08'),(41,'One of the major barriers to national development is the','low poverty level','existence of multi - party system','prevalence of corrupt practices','persistent rural - urban migration','','','c','','wassce','2014',57,'Admin','2016-11-26 14:40:55','2020-05-28 21:07:29'),(42,'The quotation above shows that the speaker is concerned about','nationalism','revolution','tourism','welfarism','“Here is your country. Cherish these natural wonders, cherish the natural resources, cherish the history and romance as sacred heritage, for your children and your children’s children. Do not let selfish men or greedy interests skin your country of its beauty, its riches...”','','a','','wassce','2014',67,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:52'),(43,'A major benefit of youth empowerment is','dependence on foreign aid.','discouragement of patriotism','reduction in crime rate','negation to national prosperity','','','c','','wassce','2014',51,'Admin','2016-11-26 14:40:55','2020-05-28 21:08:56'),(44,'When leaders like Chief Bilisi place self interest above public good, the result is that','rebellion becomes inevitable','cooperation of citizens is guaranteed','International support for the regime is ensured','society becomes more peaceful and orderly.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','a','','wassce','2014',51,'Admin','2016-11-26 14:40:55','2020-05-28 21:08:44'),(45,'The condition of disorderly behaviour exhibited by the mob in the story best describes the','ineffectiveness of the police','breakdown of law and order','importance of ministerial position','need for stiffer security measures','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','b','','wassce','2014',59,'Admin','2016-11-26 14:40:55','2020-05-28 21:10:07'),(46,'A major lesson Nigerians could learn from the story is that','leaders can empower voters by giving them money','security officials should use brutal force on citizens','the underprivileged should not vie for elective positions','greed and related vices can cause serious breach of  the law.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','d','','wassce','2014',65,'Admin','2016-11-26 14:40:55','2020-05-28 21:09:17'),(47,'Which of the following is not a function of the Independent National Electoral Commission (INEC)?','Administering oath of office to elected officers','Conducting periodic elections','Recruitment of electoral officers.','Registration of political parties','','','a','','neco','2014',65,'Admin','2016-11-26 17:20:10','2020-05-28 21:08:06'),(48,'The upper legislative chamber of the National Assembly of Nigeria is also known as the','honourables','house of commons.','house of lords','senate','','','d','','neco','2014',62,'Admin','2016-11-26 17:20:14','2020-05-28 21:07:57'),(49,'Cooperation between one country and another can be described as','bilateral','international','multilateral','multinational.','','','a','','neco','2014',74,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:50'),(50,'The “right to vote and be voted for” can only be enjoyed by Nigerian citizens who attain the age of','13.','15.','16.','18.','','','d','','neco','2014',66,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:57'),(51,'A representative of a commonwealth country in another member state is known as a / an.','ambassador','attaché.','consul-general.','high commissioner.','','','d','','neco','2014',82,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:53'),(52,'The following are values that promote interpersonal relationship, except','caring.','honesty.','patience','properties.','','','d','','neco','2014',69,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:04'),(53,'The responsibilities of government to   its citizens include the following, except','creating employment opportunity','maintenance of law and order','payment of property tax to its citizens','protection of lives and property','','','c','','neco','2014',52,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:24'),(54,'Most African countries owed their creation to','African Union (AU).','Commonwealth of Nations.','Ethnic and tribal leaders.','European Colonialists','','','a','','neco','2014',66,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:12'),(55,'The structure of the Nigerian legislature is - in nature','bicameral','confederal','federal','unicameral','','','a','','neco','2014',59,'Admin','2016-11-26 17:20:14','2020-05-28 21:09:28'),(56,'The most effective approach towards the elimination of sexually transmitted diseases is by','abstinence.','Casual sex.','use of condom.','use of drugs','','','a','','neco','2014',69,'Admin','2016-11-26 17:20:14','2020-05-28 21:06:17'),(57,'The first executive president of Nigeria is/was','Abubakar Tafawa Balewa','Goodluck Jonathan','NnamdiAzikiwe.','Shehu Shagari.','','','d','','neco','2014',65,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:25'),(58,'One of the aims of citizenship education is to produce students with','creative skill.','high sense of entrepreneurial skill.','high sense of patriotism.','manipulative skills.','','','c','','neco','2014',60,'Admin','2016-11-26 17:20:15','2020-05-28 21:08:35'),(59,'The symbol for the campaign against AIDs is Ribbon','black','blue','green','red','','','d','','neco','2014',84,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:59'),(60,'ln 2013, Nigeria celebrated her ______ independence anniversary','50th','51st','52nd','54th','','','d','','neco','2014',71,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:45'),(61,'In democracy, lack of press freedom leads to the denial of freedom of','association','expression','movement','voting','','','b','','neco','2014',52,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:30'),(62,'Franchise means right to','contest for political post','join association','live in Nigeria','vote and be voted for','','','d','','neco','2014',62,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:45'),(63,'How many members constitute the lower legislative chamber in Nigeria?','300','302','312','360','','','d','','neco','2014',63,'Admin','2016-11-26 17:20:15','2020-06-09 11:27:27'),(64,'How many senators are elected from each state in Nigeria?','2','3','4','5','','','b','','neco','2014',55,'Admin','2016-11-26 17:20:15','2020-05-28 21:10:08'),(65,'When was the first HIV/AIDs case reported in Nigeria?','1980','1983','1985','1987','','','c','','neco','2014',61,'Admin','2016-11-26 17:20:15','2020-05-28 21:09:56'),(66,'Which of the following system of government advocates equitable distribution of wealth?','Aristocracy','Capitalism','Plutocracy','Socialism','','','d','','neco','2014',65,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:59'),(67,'The right of an individual to seek redress in a law court is categorized under','economic.','political','procedural,','social','','','c','','neco','2014',65,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:52'),(68,'The National Youths Service Corps Scheme was established in Nigeria in','1970','1971','1973','1975.','','','c','','neco','2014',69,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:30'),(69,'Which of the following is a legal obligation of a citizen?','Giving financial assistance to the poor','Helping in community development','Payment of taxes','Respecting the national symbols','','','c','','neco','2014',66,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:44'),(70,'Which of these is not a system of government?','Anarchy','Monarchy','Oligarchy','Socialism','','','d','','neco','2014',75,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:55'),(71,'The laws made by the third tier of government in Nigeria are refer to as','bye-laws.','constitutional laws.','decrees.','edicts','','','a','','neco','2014',75,'Admin','2016-11-26 17:20:16','2020-05-28 21:08:48'),(72,'What does “35% affirmative action” of the present administration stand for? More','PDP  stalwarts   should   be engaged in government','political positions for women in government','women to be considered for campaign','women to be elected as governors','','','b','','neco','2014',73,'Admin','2016-11-26 17:20:16','2020-05-28 21:09:53'),(73,'A political party’s programme is known as its','constitution.','document.','functions.','manifesto.','','','d','','neco','2014',57,'Admin','2016-11-26 17:20:16','2020-05-28 21:10:07'),(74,'How many Senator(s) represent the Federal Capital Territory in the senate?','1','2','3','4','','','a','','neco','2014',78,'Admin','2016-11-26 17:20:16','2020-06-09 11:28:16'),(75,'The International Court of Justice is located in','Britain.','Netherlands.','Nigeria.','Norway.','','','b','','neco','2014',65,'Admin','2016-11-26 17:20:17','2020-05-28 21:08:14'),(76,'The headquarters of United Nations is located in','Abuja.','England','Hague.','New York.','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:40'),(77,'One advantage of Bi-cameral legislature is that it','guards against intra-party clashes.','is the only system available.','prevents arbitrary law making','projects party manifestoes.','','','c','','neco','2014',56,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:19'),(78,'Public Complaints Commission in Nigeria is also known as','elder’s forum.','judiciary.','ombudsman.','people’s court.','','','c','','neco','2014',66,'Admin','2016-11-26 17:20:17','2020-05-28 21:08:15'),(79,'The public service structure of Nigeria is an offshoot of','America.','British.','Canada.','India.','','','b','','neco','2014',68,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:44'),(80,'A de-facto authority is mostly associated with','anarchy.','customs and tradition.','force.','law.','','','b','','neco','2014',68,'Admin','2016-11-26 17:20:17','2020-05-28 21:08:51'),(81,'The United Nations universal declaration on human rights was proposed in the year','1925','1930','1946','1948','','','d','','neco','2014',65,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:37'),(82,'Political apathy can be discouraged through the following, except','educating the electorate.','good governance.','independent judiciary.','press censorship.','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:17','2020-05-28 21:08:48'),(83,'One of the civic responsibilities of a citizen is to obey','bye-laws.','constituted authority.','court judgments.','edicts.','','','b','','neco','2014',61,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:21'),(84,'Which of the following is not a function of political parties?','Aggregation of opinion','Educating the government','Interest articulation','Unifying factor.','','','d','','neco','2014',49,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:52'),(85,'Nigeria is now hundred years since amalgamation which means she has celebrated — anniversary.','amalgamation.','centenary.','golden jubilee.','independence.','','','b','','neco','2014',46,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:54'),(86,'Which of the following bodies is responsible for defending the country against external aggression? The','Army','Civil defense.','Customs.','Police.','','','a','','neco','2014',72,'Admin','2016-11-26 17:20:17','2020-06-09 11:26:22'),(87,'One of the following is a country as well as a continent.','Africa','Antarctica','Asia','Australia','','','d','','neco','2014',68,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:57'),(88,'In a parliamentary system of government, the powers of the executive is vested in the office of the','minister.','premier','president.','prime minister.','','','d','','neco','2014',54,'Admin','2016-11-26 17:20:17','2020-06-09 11:27:27'),(89,'One of the major problems facing local government administration in Nigeria is','insufficient councilors','lack of control by the central government','lack of funds','leadership','','','c','','neco','2014',59,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:40'),(90,'The land contention between Nigeria and Cameroon is called','Bakassi Penisula','Bonny Island','Calabar River','Lekki Penisula','','','a','','neco','2014',58,'Admin','2016-11-26 17:20:17','2020-05-28 21:09:25'),(91,'The headquarters of ECOWAS is located in','Abuja','Accra','Adis-Ababa','Lome','','','d','','neco','2014',78,'Admin','2016-11-26 17:20:17','2020-05-28 21:10:01'),(92,'Human rights abuse can be prevented through the following, except','constitutional means','court of law','mass literacy','protest','','','d','','neco','2014',60,'Admin','2016-11-26 17:20:18','2020-05-28 21:10:07'),(93,'The public Service is a branch of the ____ arm of government','civilian','executive','judiciary','legislative','','','b','','neco','2014',63,'Admin','2016-11-26 17:20:18','2020-05-28 21:09:56'),(94,'When the national flag is flown half mask, it is a sign of national','centenary celebration','children’s day','independence','mourning','','','d','','neco','2014',64,'Admin','2016-11-26 17:20:18','2020-05-28 21:09:56'),(95,'One of the ways to ensure a free and fair election is to','allow parties to campaign on election day','appoint a politician as the chairman of the electoral commission','ensure INEC chairman is appointed from a pressure group','guarantee the security of electoral officers and materials','','','d','','neco','2014',67,'Admin','2016-11-26 17:20:18','2020-05-28 21:09:56'),(96,'How many colours are in the traffic light?','2','3','4','5','','','b','','neco','2014',68,'Admin','2016-11-26 17:20:18','2020-05-28 21:08:44'),(97,'The channel through which political parties make their program known to the people is ..............','canvassing','campaigning','convincing','coronation','','','b','','wassce','2012',66,'Admin','2016-11-26 17:47:57','2020-05-28 21:09:04'),(98,'What arm of the criminal justice system is prison?','first','second','third','none','','','c','','wassce','2012',73,'Admin','2016-11-26 17:47:58','2020-05-28 21:10:07'),(99,'................ is the apex body saddled by law to fight corruption and other related offences','IRS','ICPC','EFCC','NPF','','','c','','wassce','2012',77,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:36'),(100,'The responsibility of protecting past and present high ranking government officials falls on ...............','police','army','civil defense corps','SSS','','','a','','wassce','2012',69,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:56'),(101,'............ is obtained from the Nigerian immigration services as a requirement to travel out of the country','ticket','yellow card','passport','national ID card','','','c','','wassce','2012',54,'Admin','2016-11-26 17:47:58','2020-05-28 21:10:01'),(102,'There are ............. local government in Nigeria','700','714','744','774','','','d','','wassce','2012',78,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:40'),(103,'Local government is the ............... tier of government','1st','2nd','3rd','4th','','','c','','wassce','2012',71,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:23'),(104,'Television and radio are example  of ......... media','print','electronic','advertising','mass','','','b','','wassce','2012',96,'Admin','2016-11-26 17:47:58','2020-05-28 21:10:01'),(105,'Newspapers and magazine and example of ..... media','print','electronic','advertising','mass','','','a','','wassce','2012',74,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:20'),(106,'One of the listed criteria qualifies one for election .......','certificate','beauty','height','citizenship','','','d','','wassce','2012',80,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:53'),(107,'The following are duties to be performed by the citizens of a country EXCEPT','Destroying government properties','obey law and order','payment of tax','show loyalty','','','a','','wassce','2012',81,'Admin','2016-11-26 17:47:58','2020-05-28 21:08:10'),(108,'The form of government in which the electorate exercise their governing power directly through their elected \trepresentation is called ........','supremacy','democracy','autocracy','charismatic','','','b','','wassce','2012',79,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:45'),(109,'Punishment for law breaking include the following except ..........','freedom of movement','detention','sanctions','political instability','','','d','','wassce','2012',73,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:52'),(110,'The act of counting the numbers of people living in a country in order to determine the total numbers of \tpeople in a state is known as .......','election','national population census','voting','rights','','','b','','wassce','2012',92,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:51'),(111,'The last population census in Nigeria was conducted in ...........','2003','2006','2007','2005','','','b','','wassce','2012',83,'Admin','2016-11-26 17:47:58','2020-06-09 11:28:16'),(112,'The 219 chibok girls were ................ while ..............','abducted, praying in the mosque','kidnaped, praying in the church','abducted, wondering along the street of chibok town','kidnaped, preparing to write their WAEC examination','','','d','','wassce','2012',68,'Admin','2016-11-26 17:47:58','2020-05-28 21:09:16'),(113,'The following are types of drugs except','cannabis','depressants','benzodiazepine pines','steroids','','','c','','wassce','2012',94,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:39'),(114,'Cocaine, morphine and heroin are example of','tobacco','steroids','narcotics','inhalants','','','c','','wassce','2012',84,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:49'),(115,'......... refer to a group of drugs that are inhaled in the form of a gas or solvent','hallucinogens','stimulants','inhalants','gasoline','','','c','','wassce','2012',85,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:45'),(116,'Cannabis is also called .........','barbiturates','cassava','marijuana','caffeine','','','b','','wassce','2012',81,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:28'),(117,'Which of the following is the most common forms of drug abuse','drug trafficking','self medication','drug combination','frequent use','','','b','','wassce','2012',75,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:47'),(118,'The following factors are responsible for drug abuse except','family upbringing','high stress level','poverty','foster parenthood','','','d','','wassce','2012',78,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:39'),(119,'........ is the type of parenthood where a different couple raise a particular child that is not their own','helicopter parent','foster parenthood','slow parenting','different parenthood','','','b','','wassce','2012',65,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:04'),(120,'One of the following is a cause of single parents in Nigeria','slow parenting','social group','nature of work','divorce','','','d','','wassce','2012',71,'Admin','2016-11-26 17:47:59','2020-05-28 21:08:09'),(121,'.......... strengthens the sensitive mental and emotional bond between the parent and children','narcissistic parenting','attachment parenting','positive parenting','teenage parenting','','','b','','wassce','2012',65,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:33'),(122,'........... is the verdict that results when a law court declares a defendant guilty of a crime','immunity clause','conviction','customary clause','traditions','','','b','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:32'),(123,'The clause which exempts the president from being prosecuted while still in office is called','military clause','special clause','conviction clause','immunity clause','','','d','','wassce','2012',61,'Admin','2016-11-26 17:47:59','2020-05-28 21:08:32'),(124,'All the following can limit the right of a citizen except','war','state of emergency','universality','military rule','','','c','','wassce','2012',69,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:59'),(125,'The following are causes of emergency rule except','crisis','blood lettings','stage peaceful protest','sabotage / terrorism','','','c','','wassce','2012',60,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:40'),(126,'The World AIDs Day is usually ..........................','June 12th every year','May second every year','October 1st every year','December 1st every year','','','d','','wassce','2012',77,'Admin','2016-11-26 17:47:59','2020-05-28 21:10:07'),(127,'One of the following is not human right group','Constitutional Right Project (CRP)','National Association of Democratic Lawyers (NADL)','Nigeria Bar Association (NBA)','Civil Liberties Organization (CLO)','','','c','','wassce','2012',73,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:59'),(128,'One of the following is not a pressure group','National Association of Nigeria Student (NANS)','Nigeria Labour Congress (NLC)','Academic Staff Union of Universities (ASUU)','Committee for Defense of Human Right (CDHR)','','','d','','wassce','2012',81,'Admin','2016-11-26 17:47:59','2020-05-28 21:08:47'),(129,'One of the following is not a political party','PDP','APGA','ANPC','CPC','','','c','','wassce','2012',72,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:49'),(130,'One of the following is a social group','dangote group of companies','rotary club','Millan group','human right Africa','','','c','','wassce','2012',73,'Admin','2016-11-26 17:47:59','2020-05-28 21:10:00'),(131,'The organization with the motives and goals of helping people is called','social group','charity group','pressure group','human right group','','','b','','wassce','2012',82,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:35'),(132,'The following are the reasons why people do not participate in polities except','illiteracy','lack of justice','multi-party system','religion','','','c','','wassce','2012',71,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:48'),(133,'............... is the prejudicial treatment of fellow human being','god fatherism','independence','justice','discrimination','','','d','','wassce','2012',72,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:48'),(134,'Laws are interpreted by the','Judiciary','President','Legislature','Executive','','','a','','wassce','2012',96,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:55'),(135,'The president belongs to ............... arm of the government','Executive','Judiciary','Military','Legislature','','','a','','wassce','2012',65,'Admin','2016-11-26 17:47:59','2020-05-28 21:09:48'),(136,'The process whereby an individual choose to favour a person who come from his family or tribe over other people or tribes is known as','stereotype','ethnicity','nepotism','favouritism','','','c','','wassce','2012',69,'Admin','2016-11-26 17:47:59','2020-05-28 21:08:47'),(137,'When a group of people believe in and keep to certain norms, values and ways of life of their community since its creation, we call this .................','religion','stereotypes','traditions','custom','','','c','','wassce','2012',69,'Admin','2016-11-26 17:48:00','2020-05-28 21:08:43'),(138,'Traffic lights are also known and referred to as','three directives light','spotlight','flow traffic directive','informative sign','','','b','','wassce','2012',71,'Admin','2016-11-26 17:48:00','2020-05-28 21:08:15'),(139,'One of the following is not a federal road agencies','DTO','FRSC','TRACE','VIO','','','c','','wassce','2012',72,'Admin','2016-11-26 17:48:00','2020-05-28 21:09:49'),(140,'One of the following is a regulatory prohibitory sign','stop police','speed limit','t junction','ferry','','','a','','wassce','2012',79,'Admin','2016-11-26 17:48:00','2020-05-28 21:09:24'),(141,'The traffic light has how many colours','3','4','5','2','','','a','','wassce','2012',61,'Admin','2016-11-26 17:48:00','2020-05-28 21:08:22'),(142,'From the basic road traffic regulation pedestrians should not attempt to cross the road when the light are ............. and ...............','green and yellow','green and red','yellow and red','red and yellow','','','a','','wassce','2012',60,'Admin','2016-11-26 17:48:00','2020-05-28 21:07:53'),(143,'Motorcyclists must always protect their heads with safety ............. which must be properly fastened','seat belt','head guild','helmets','cap cycles','','','c','','wassce','2012',88,'Admin','2016-11-26 17:48:00','2020-05-28 21:09:24'),(144,'Pedestrians should always cross road using','stop hold','parked vehicles','zebra crossing','bridge','','','c','','wassce','2012',70,'Admin','2016-11-26 17:48:00','2020-05-28 21:08:53'),(145,'The former NAFDAC DG Prof Dora Akunyili died on','June 9. 2014','June 17, 2014','June 7, 2014','May 27, 2014','','','c','','wassce','2012',87,'Admin','2016-11-26 17:48:00','2020-05-28 21:09:58'),(146,'Political values are acquired in any given society through','Political re-orientation','Political campaign','Political socialization','Political indoctrination','','','c','','neco','2012',60,'Admin','2016-11-26 18:05:51','2020-05-28 21:09:37'),(147,'To ensure the rights and freedom of citizens; the power of the arms of government must be','fused','incorporated','separated','rotated','','','c','','neco','2012',73,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:43'),(148,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social right','','','b','','neco','2012',63,'Admin','2016-11-26 18:05:52','2020-05-28 21:07:24'),(149,'The commission charged with the conduct of federal \telections in Nigeria between 2014 and 2015 is..........','Nec','fedeco','Inec','Necon','','','c','','neco','2012',66,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:49'),(150,'The colour of the Nigeria flag is ..............., anytime it \tis half masked it means that the nation is ...............','green white green - rejoicing','white green white - mourning','green white green - mourning','green white blue - voting','','','c','','neco','2012',64,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:25'),(151,'Which of the following is used in gauging public opinion','Constitution','Educational Institution','Mass media','Electoral college','','','c','','neco','2012',65,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:52'),(152,'In Nigeria, The agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil  defense corps','Police','','','d','','neco','2012',68,'Admin','2016-11-26 18:05:52','2020-05-28 21:07:58'),(153,'The National Assembly in Nigeria is primarily responsible for','executing laws','Interpreting laws','ratifying appointment','making laws','','','d','','neco','2012',70,'Admin','2016-11-26 18:05:52','2020-05-28 21:09:55'),(154,'The major factor militating against efficient operation \tof electoral commission in Nigeria is .......................','Inadequate public support','Population size','Inadequate skilled manpower','excessive political interference','','','d','','neco','2012',56,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:32'),(155,'When Ebola disease is very rampant ............. count \ttheir loses while ......... smile to the bank','fish sellers, bush meat sellers','bush meat sellers, fish sellers','bread sellers, fish sellers','students, teachers','','','b','','neco','2012',86,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:40'),(156,'Workers in the Public Corporations are known as','Civil servants','Private employees','Public servants','Professional employees','','','c','','neco','2012',70,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:24'),(157,'Membership of a society is','conventional','Mandatory','Voluntary','Constitutional','','','c','','neco','2012',59,'Admin','2016-11-26 18:05:53','2020-05-28 21:10:06'),(158,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','Police, Army, sovereignty and custom','','','c','','neco','2012',74,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:41'),(159,'Citizenship is acquired by an alien through','registration','birth','Conferment','Naturalization','','','d','','neco','2012',64,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:17'),(160,'The office responsible for announcing the result of an election is known as','ballot officer','presiding officer','Returning officer','Electoral officer','','','c','','neco','2012',72,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:57'),(161,'Law made by military governments are called','decrees','Bye-laws','Edicts','acts','','','a','','neco','2012',62,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:40'),(162,'The ultimate aim of political parties is to','implement people oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','neco','2012',59,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:49'),(163,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their member','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','neco','2012',61,'Admin','2016-11-26 18:05:53','2020-05-28 21:07:51'),(164,'Public servants in Nigeria belong to the ............. arm of government','military','executive','legislature','judiciary','','','b','','neco','2012',72,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:09'),(165,'One of the main duties of the local government service commission is to','supervise and manage the personnel of local government','conduct election into local council','create an enabling working environment for council workers','handle request for the creation of more local government','','','a','','neco','2012',65,'Admin','2016-11-26 18:05:53','2020-05-28 21:10:06'),(166,'The option A4 model was used in the conduct of the','2007 election','1983 election','1993 election','1999 election','','','c','','neco','2012',87,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:43'),(167,'The following is the function of a responsible parenthood','care and love','gambling','Drug addition','fighting','','','a','','neco','2012',68,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:55'),(168,'Custom refers to .............','tradition or social value or patterns','image of a country','sharing similar or common ethnic background','A state of feeling of oneness among the people','','','a','','neco','2012',64,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:43'),(169,'The term V. I. O. mean','Vehicle inspection officer','vehicle implementation officer','vehicle induce operation','vehicle induction officer','','','a','','neco','2012',62,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:15'),(170,'Which of these countries operate a unitary system of \tgovernment','Nigeria','U. S. A','Ghana','Britain','','','d','','neco','2012',69,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:04'),(171,'Which of the following are not fundamental human right','right to life','right to gainful employment','right to vote and be voted for','right to overthrow a government','','','d','','neco','2012',71,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:36'),(172,'A constitution that is very easy to amend is called a ...... constitution','rigid','flexible','an easy','simple','','','b','','neco','2012',66,'Admin','2016-11-26 18:05:53','2020-05-28 21:06:06'),(173,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate','','','d','','neco','2012',71,'Admin','2016-11-26 18:05:53','2020-05-28 21:08:15'),(174,'One judicial function performed by the executive is','granting of amnesty','implementing judicial order','ensuring obedience to the law','appointing judges','','','a','','neco','2012',68,'Admin','2016-11-26 18:05:53','2020-05-28 21:09:16'),(175,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary','','','a','','neco','2012',69,'Admin','2016-11-26 18:05:54','2020-05-28 21:10:06'),(176,'The private ownership of the means of production is a feature of','capitalism','Socialism','Communalism','Communism','','','a','','neco','2012',76,'Admin','2016-11-26 18:05:54','2020-05-28 21:10:07'),(177,'A government is said to be legitimate if it','has the people’s mandate to rule','is not oppressive','provide social services for the people','accepts people’s criticism','','','a','','neco','2012',63,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:05'),(178,'All type of government perform all the following functions except','providing welfare and developmental facilities','maintaining law and order','encouraging the struggle for power','encouraging trade with other state','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:56'),(179,'A coup d’etat is regarded as','A source of political legitimacy','A manipulation of the constitution','A constitutional way of changing the government','an unconstitutional way of changing the government','','','d','','neco','2012',76,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:05'),(180,'Which of the following is an advantage of local government','Agents for money based politics','electoral commissions','training grounds for political leaders','agents of pressure group','','','c','','neco','2012',71,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:13'),(181,'Public Corporations are financed','by tax payers','with private funds','with entrepreneurial funds','by political parties','','','a','','neco','2012',83,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:12'),(182,'A manifesto refers to','the register of party members','rejected ballot papers','valid ballot papers','Document containing the aims and programmes of   a political party','','','d','','neco','2012',71,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:12'),(183,'Which of the following is not a duty of a citizen','obedience to the law','payment of taxes','service to the Nation','giving alms to the poor','','','d','','neco','2012',67,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:40'),(184,'The police perform all the following function except','public execution of law breaker','controlling and directing traffic','protection of life and property','enforcement of law and orders','','','a','','neco','2012',67,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:24'),(185,'An agreed set of rules prescribing the governance of a country can be called the','constitution','charter','manifesto','programme','','','a','','neco','2012',70,'Admin','2016-11-26 18:05:54','2020-05-28 21:08:51'),(186,'The lack of interest in politics by many citizens in a country is called','civic agitation','mass apathy','mass protest','political unrest','','','b','','neco','2012',73,'Admin','2016-11-26 18:05:54','2020-05-28 21:07:20'),(187,'The following are ways to prevent drug addiction except','civic education','law enforcement and regulation','mass media effort','voting at election','','','d','','neco','2012',74,'Admin','2016-11-26 18:05:54','2020-05-28 21:10:06'),(188,'The following are examples of pressure group except','N. U. R. T','NBA','NLC','PDP','','','d','','neco','2012',62,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:37'),(189,'The following are Road Traffic signs except','Regulatory sign','Informative sign','Warning sign','Philosophy sign','','','d','','neco','2012',65,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:29'),(190,'The function of Federal Road Safety Corp (FRSC) is','Enforcing the traffic regulation on road','making law','executing law','Interpreting law','','','a','','neco','2012',67,'Admin','2016-11-26 18:05:54','2020-05-28 21:10:00'),(191,'The function of vehicle inspection officer (VIO) is','ensuring the road wordiness of vehicle on the road','protection of life and property','collection of tax','counting of votes cast at election','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:36'),(192,'Colonization of Africa was mainly motivated by','security consideration','economic reasons','religious reasons','cultural factor','','','b','','neco','2012',80,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:45'),(193,'Which of these is a type of parenthood','single parenthood','ethnic parenthood','village parenthood','clan parenthood','','','a','','neco','2012',58,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:35'),(194,'Decrees are laws made by ............','Democratic government','The prime minister','The military','Parliaments','','','c','','neco','2012',60,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:12'),(195,'Austerity measure was first introduced in Nigeria by ..........','President Babangida','Olusegun Obasanjo','President Sehu Shagari','President Goodluck Jonathan','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-05-28 21:09:13'),(196,'Before crossing the road you are expected to ...........','Look left and then right','Look left, right and left again','Look back and left','Look forward for oncoming okada','','','b','','wassce','2013',92,'Admin','2016-11-27 17:07:11','2020-06-09 11:30:04'),(197,'.............. was the capital of Nigeria before .................','Abuja - Lagos','Lagos - Abuja','Ikeja - Abuja','Benin - Abuja','','','b','','wassce','2013',75,'Admin','2016-11-27 17:07:15','2020-05-28 21:08:47'),(198,'The primary duty of the police force is to','Make law','Interpret the law','Deal with danfo and okada drivers','Non of the above','','','d','','wassce','2013',71,'Admin','2016-11-27 17:07:19','2020-05-28 21:09:26'),(199,'The law is enforced by','Military','Legislators','Police force','Area boys','','','c','','wassce','2013',80,'Admin','2016-11-27 17:07:27','2020-05-28 21:09:38'),(200,'Which of the following is NOT an offence','Tax avoidance','Tax evidence','Stealing by trick','Money laundering','','','a','','wassce','2013',62,'Admin','2016-11-27 17:07:31','2020-06-09 11:30:04'),(201,'Some core Rights or Freedoms in the Universal Declaration of Human Rights of 1948 are','The right to life and right to freedom of opinion and expression','The right to fight and smoke in the public place','The right to attack your enemies and the right to make slanderous speeches','None of the above','','','a','','wassce','2013',73,'Admin','2016-11-27 17:07:35','2020-05-28 21:09:33'),(202,'Cultism can lead to','Immoral activities and indiscipline','Maintenance of law and order in the society','Corrupt free society','Sound cultural development','','','a','','wassce','2013',65,'Admin','2016-11-27 17:07:39','2020-05-28 21:09:16'),(203,'Popular participation can','promote political awareness and education','Lead to political apathy','lead to the election of wrong leaders','to political instability','','','a','','wassce','2013',84,'Admin','2016-11-27 17:07:47','2020-05-28 21:08:43'),(204,'One of the ways to prevent the spread of HIV/AIDs is','Not to eat in fast food joints','Not to shake hands with anybody','To avoid any object contaminated with blood','Sleep under a mosquito net','','','c','','wassce','2013',60,'Admin','2016-11-27 17:07:51','2020-05-28 21:09:33'),(205,'Nigeria became independent in ........... and a Republic in ................ Respectively','1963 and 1960','1960 and 1963','1954 and 1960','None of the above','','','b','','wassce','2013',83,'Admin','2016-11-27 17:07:55','2020-05-28 21:09:57'),(206,'The process of enlightening or training citizens on their rights and responsibilities is known as','Workshop training','Citizenship Education','Political Education','Citizenship Rights','','','b','','wassce','2013',75,'Admin','2016-11-27 17:07:55','2020-06-25 23:00:26'),(207,'The ideas, things or principles cherished by the people in a community are referred to as','rights','culture','values','due process','','','c','','wassce','2013',84,'Admin','2016-11-27 17:08:03','2020-06-09 11:29:06'),(208,'The illicit or illegal business in the sales and \ttransportation of human beings for economic and other selfish purposes is known as','Human capital development','Human traffic rule disobedience','Human trafficking','Mans inhumanity to man','','','c','','wassce','2013',66,'Admin','2016-11-27 17:08:03','2020-05-28 21:09:44'),(209,'An indifference attitude towards political activities by the citizens of a state is termed','political apathy','political unrest','political ideology','political disunity','','','a','','wassce','2013',88,'Admin','2016-11-27 17:08:07','2020-06-09 18:24:55'),(210,'For which of these can someone be arrested while driving on a high way','driving and laughing','driving and singing','driving and eating or receiving phone call','driving and crying','','','c','','wassce','2013',68,'Admin','2016-11-27 17:08:11','2020-05-28 21:09:33'),(211,'The process in which every qualified citizen of a state has the right to vote is called ............ suffrage','universal adult','democratic','tax payer','communal','','','a','','wassce','2013',78,'Admin','2016-11-27 17:08:11','2020-05-28 21:08:09'),(212,'The armed forces and the police are part of the ........ organ of government','executive','judicial','legislative','informative','','','a','','wassce','2013',76,'Admin','2016-11-27 17:08:14','2020-06-09 11:29:06'),(213,'The exercise of arbitrary power, whims and caprices constitutes a negation of .........','rule of law','fundamental human right','checks and balance','indirect rule','','','a','','wassce','2013',67,'Admin','2016-11-27 17:08:15','2020-05-28 21:09:43'),(214,'Which of the following concepts confirms the general acceptance and recognition of a government?','Democratic powers','Legitimacy','sovereignty','popular democracy','','','b','','wassce','2013',77,'Admin','2016-11-27 17:08:15','2020-06-09 11:27:27'),(215,'Which of the following can cause Human Trafficking in a country','poverty, youth unemployment and greed','Sound education and proper counselling','Social and economic contentment','B and C above','','','a','','wassce','2013',84,'Admin','2016-11-27 17:08:15','2020-05-28 21:10:06'),(216,'The use of drugs through self - medication or without due medical prescription is referred to as','Personal drug administration','Drug abuse','Human right abuse','Drug trafficking','','','b','','wassce','2013',76,'Admin','2016-11-27 17:08:15','2020-05-28 21:08:57'),(217,'An important characteristics of Democracy is','The absence of free press and mass media','Unequal political rights','Respect for principle of rule of law','The absence of separation of powers between the   arms and levels of government','','','c','','wassce','2013',70,'Admin','2016-11-27 17:08:15','2020-05-28 21:06:51'),(218,'Which one of the following is the founding father of Nigeria nationalism?','Goodluck Jonathan','Oba Kosoko','Herbert Macaulay','Olusegun Obasanjo','','','c','','wassce','2013',85,'Admin','2016-11-27 17:08:19','2020-06-09 18:24:55'),(219,'The use of illicit or hard drugs such as marijuana (Indian hemp) heroine, morphine etc. is known as','Human right abuse','Drug trafficking','Drug enhancement','Drug abuse','','','d','','wassce','2013',71,'Admin','2016-11-27 17:08:23','2020-05-28 21:10:06'),(220,'The farthest government to the people is the ............ government','Local','State','Federal','A and B above','','','c','','wassce','2013',87,'Admin','2016-11-27 17:08:23','2020-05-28 21:10:06'),(221,'An instrument for exercise of power for controlling, administering and managing the affairs of people based on laws is the','Civil service','Executive','Government','State','','','c','','wassce','2013',81,'Admin','2016-11-27 17:08:23','2020-05-28 21:09:57'),(222,'The ideology which emphasizes a classless society is','Communism','Capitalism','Totalitarianism','Feudalism','','','a','','wassce','2013',67,'Admin','2016-11-27 17:08:27','2020-05-28 21:09:00'),(223,'Which of the following constitutes drug abuse','taking less than the dose recommended by the doctor','taking more than the dose recommended by the doctor','taking the exact dose recommended by the doctor','A and B above','','','d','','wassce','2013',73,'Admin','2016-11-27 17:08:31','2020-05-28 21:08:56'),(224,'The power to legislate is usually exercised by','parliament','executive','judiciary','the president','','','a','','wassce','2013',71,'Admin','2016-11-27 17:08:39','2020-05-28 21:09:53'),(225,'Membership of a state is known as','citizenship','statism','patriotism','indigenousness','','','a','','wassce','2013',75,'Admin','2016-11-27 17:08:39','2020-05-28 21:09:49'),(226,'The process of learning the political attitudes, values and beliefs that are relevant to the political system is known as','political culture','political socialization','political participation','political science','','','b','','wassce','2013',89,'Admin','2016-11-27 17:08:39','2020-06-09 11:29:06'),(227,'The system of government in which all aspects of life are controlled by the government is','democracy','totalitarianism','capitalism','socialism','','','b','','wassce','2013',75,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:47'),(228,'It is an offense to drive along the high way','without putting on the seat belt','and talk or smile at the same time','and make phone calls at the same time','A and C above','','','d','','wassce','2013',73,'Admin','2016-11-27 17:08:43','2020-05-28 21:07:21'),(229,'The individual rights would be better protected if enshrined in the ..................','Courts','Constitutions','Bible and Quran','National Newspapers','','','b','','wassce','2013',67,'Admin','2016-11-27 17:08:43','2020-06-09 11:26:22'),(230,'What is the minimum age for voters in Nigeria','15','20','18','50','','','c','','wassce','2013',78,'Admin','2016-11-27 17:08:43','2020-06-09 11:29:06'),(231,'Which of these characteristics of the civil service ensure continuity of government?','Neutrality','Permanence','Bureaucracy','Loyalty','','','a','','wassce','2013',78,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:44'),(232,'Public corporation are owned by the','government','banks','private individuals','foreigners','','','a','','wassce','2013',84,'Admin','2016-11-27 17:08:43','2020-06-09 11:30:04'),(233,'The principle of equality before the law is the same as','social equality','social injustices','checks and balances','democratic justices','','','a','','wassce','2013',68,'Admin','2016-11-27 17:08:43','2020-05-28 21:10:06'),(234,'The organ of government which are normally fused in a military regime are the','judiciary and legislative','civil service and executive','legislative and executive','legislative and judiciary','','','c','','wassce','2013',78,'Admin','2016-11-27 17:08:43','2020-05-28 21:08:26'),(235,'The illegal sales and transportation of human beings for economic and some other selfish purpose is termed','Slave Trade','Survival of the Fittest','Gross Human Right Abuse','Human Trafficking','','','d','','wassce','2013',82,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:20'),(236,'The lack of interest in politics and political activities by the citizens of a country is known as','political disinterestedness','political culture','political disintegration','political apathy','','','d','','wassce','2013',70,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:40'),(237,'Popular participation refers to','Political Apathy','The active involvement of citizens in the social political activities of a country','The rule of the party with the largest number of supporters','The rule of a prominent and popular politician','','','b','','wassce','2013',63,'Admin','2016-11-27 17:08:43','2020-06-09 11:28:16'),(238,'The rule of law simply means','The ruling of a lawful leader','The absence of political instability','Supremacy of the law','The ruling of legislators','','','c','','wassce','2013',70,'Admin','2016-11-27 17:08:43','2020-05-28 21:09:21'),(239,'Cultism is ........, and so it should be ........','useful - allowed','cultural - encouraged','dangerous - discouraged','amiable - supported','','','c','','wassce','2013',79,'Admin','2016-11-27 17:08:43','2020-05-28 21:10:07'),(240,'Drug abuse can be curbed by','encouraging the use of enhancement drugs in sports','teaching youths moral and religious principles','encouraging rural urban migration','None of the above','','','b','','wassce','2013',70,'Admin','2016-11-27 17:08:44','2020-05-28 21:07:42'),(241,'A problem commonly faced by most people living with HIV/AIDs is of','Stigmatization','Non availability of drugs','Government insincerity','Lost of appetite','','','a','','wassce','2013',91,'Admin','2016-11-27 17:08:44','2020-06-09 11:30:04'),(242,'Which of the following type of government is hereditary?','Democracy','Oligarchy','Monarchy','Fascism','','','c','','wassce','2013',69,'Admin','2016-11-27 17:08:44','2020-05-28 21:09:28'),(243,'An organization whose ultimate aim is to gain the control of government and implement its programmes is known as a','Trade Union','Local Government','Political Party','Pressure Group','','','c','','wassce','2013',68,'Admin','2016-11-27 17:08:44','2020-05-28 21:09:25'),(244,'The president belongs to .......... arm of the government','Legislative','Judiciary','Executive','Anti-crime','','','c','','wassce','2013',72,'Admin','2016-11-27 17:08:44','2020-05-28 21:08:45'),(245,'In Nigeria the outbreak of Ebola disease was first observed in the year','2012','2013','1960','2014','','','d','','wassce','2013',73,'Admin','2016-11-27 17:08:44','2020-06-09 11:30:04'),(246,'Juvenile delinquency and cultism are ......... and should be .........','undesirable - encouraged','desirable - discouraged','undesirable - discouraged','desirable - discouraged','','','c','','neco','2013',77,'Admin','2016-11-27 17:44:15','2020-05-28 21:09:41'),(247,'Those who consume fish and vegetable frequently stand the chance of contacting the','HIV/AIDs disease','Ebola disease','Typhoid and yellow fever disease','None of the above','','','d','','neco','2013',67,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:33'),(248,'The primary function of the legislature is the','monitoring the executive','making of laws','voting of bills','appointment of ministers','','','b','','neco','2013',57,'Admin','2016-11-27 17:44:16','2020-06-09 11:28:16'),(249,'Ejiro, the senior brother of Omonigho had fever last week. The doctor prescribed a certain drug for him, He was asked to take one tablet, three times a day for four days. He took the drug as recommend for the first and second day and stopped. Five days later he took one tablet in the morning and one again at night. Omonigho’s action can be said to be a kind of','bad drug administration','drug Abuse','drug trafficking','Human trafficking','','','b','','neco','2013',71,'Admin','2016-11-27 17:44:16','2020-05-28 21:07:29'),(250,'When a constitution is difficult to amend it is said to be','rigid','flexible','written','federal','','','a','','neco','2013',59,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:29'),(251,'If Omonigho had taken the tablet one three times a day for six days his action constitutes a kind of','good drug administration','drug abuse','drug trafficking','none of the abuse','','','b','','neco','2013',78,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:35'),(252,'Ejiro, who is not sick decide to take the same drug for the same duration as recommended for Omonigho by the doctor.Ejiro’s action can be described as a form of','preventive measure','drug abuse','drug trafficking','Self help activity','','','b','','neco','2013',69,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:11'),(253,'As Mr Umukoro got to Oghara junction, near Sapele, he packed the bus and bought some roasted monkey bush meat. Some of the passengers in the bus followed suit, that day was a good Friday. On motion Mr Umukoro, the driver and some of the passengers were doing justice to the monkey bush meat. No sooner had they started than they were stopped and Mr Umukoro was fined by men of the FRSC. If the fine was proper which of the reasons bellow could be responsible for it','some of the passengers ate the bush meat while the bus was on motion','Mr Umukoro, the driver was driving and eating at the same time','They were not supposed to eat monkey bush meat because they can contact the Ebola virus from it.','They were not expected to eat and any kind of meat on a good Friday','','','b','','neco','2013',73,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:20'),(254,'The Ebola virus sneaked into Nigeria through','The Liberian born American, Mr Patrick Sawyer','The Ghanaian born American, Mr Patrick Sayer','Members of the Boko Haram','Monkeys and bats','','','a','','neco','2013',77,'Admin','2016-11-27 17:44:16','2020-05-28 21:10:06'),(255,'As a citizen you can be deprived of your Fundamental Human Rights during','Emergency Rule','Election period','National day celebration','National public holidays','','','a','','neco','2013',68,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:59'),(256,'Malaria fever can be transmitted through','hand shaking','eating of unbalanced diet','mosquito bite','eating of bush meat such as bat and monkey','','','c','','neco','2013',73,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:59'),(257,'Plenty of money in the society, not backed by commensurate productive activities can lead to','deflation','inflation','National developmental','cashless society','','','b','','neco','2013',75,'Admin','2016-11-27 17:44:16','2020-05-28 21:10:05'),(258,'In the year 2014, the Nigerian President Good luck Ebelle Jonathan  urged Nigerians to .......... the rumors  that drinking and bathing with salt water prevents or cures Ebola virus','ignore','accept','welcome','embrace','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:53'),(259,'The primary duty of the army is to','execute the law','interpret the law','overthrow the government when there is anarchy','defend the country against external aggression','','','d','','neco','2013',79,'Admin','2016-11-27 17:44:16','2020-05-28 21:08:48'),(260,'The first known outbreak of Ebola was in ................','2014, in Sierra Leone','1976, in a remote village near the Ebola River in Congo','2014, in port Harcourt, Nigeria','Enugu, during the Nigeria - Biafra war','','','b','','neco','2013',73,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:49'),(261,'On a particular day in 2014, the National flag was flown half mask. This act symbolizes','National tailors day','National mourning','Children’s day','Golden jubilee celebration','','','b','','neco','2013',86,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:41'),(262,'Vehicles are expected to continue with their journey when the traffic light shows ...............','Red','Blue','Yellow','Green','','','d','','neco','2013',70,'Admin','2016-11-27 17:44:16','2020-05-28 21:09:16'),(263,'In which of the following system is survival of the fittest mostly practiced','Communist system','Capitalist system','Feudalist','Totalistic system','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:16','2020-05-28 21:08:59'),(264,'For now the Ebola disease has','no known cure','several known cures','cannot kill its action','no physically observable symptoms','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-05-28 21:08:46'),(265,'Some years ago a popular Governor in one of the states in Nigeria was asked to mention some mineral \tresources from his state. He made mention of “Fanta, Pepsi, Coca cola. The governor is','right','wrong','illiterate','unpatriotic','','','b','','neco','2013',68,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:26'),(266,'If you were to be in the Governor’s shoes which of the following would you have chosen?','Miranda and seven up','coca cola and Fanta','petroleum','stock, bonds and cash','','','c','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:15'),(267,'The right practice of democracy can','ensure equity, justice and far play','discourage political education and awareness’','political unrest','lawlessness','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:00'),(268,'Political Apathy can lead to','very fast pace of development','the emergence of sound democratic government','wrong set of people coming into power','development of sound political culture','','','c','','neco','2013',68,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:17'),(269,'Human traffickers usually engage their victims .........','in educative programs','in forced labour','in skill acquisition activities','in recreational activities','','','b','','neco','2013',57,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:48'),(270,'During a particular voting exercise if majority of the \tpeople refuse to vote, this can be described as','political stubbornness','political apathy','political awareness','political socialization','','','b','','neco','2013',71,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:13'),(271,'Mr Dickson’s little son, clement was sent away from school because he has not paid his school fees of \tN=11,000. That same day as Mr Dickson boarded a Danfo bus he noticed that the purse of a fellow passenger dropped on the floor of the bus. Mr Dickson tactically picked up the purse, opened it and saw a handsome sum of N=100,000. No body in the bus noticed him, neither did the fellow passenger. As a patriotic and good citizen of Nigeria, what is Mr Dickson expected to do','Pay his tithe (1/10 of the money) to the church take the rest and pray for forgiveness','Draw the attention of the fellow passenger and give the money back to him /her','Use part of the money to pay his son’s fess and keep the rest because opportunity comes but once','Leave the purse on the floor, and mind his business','','','b','','neco','2013',66,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:55'),(272,'Public corporations are','meant to make profit','not meant to make profit','not expected to produce','established to gather public opinion','','','b','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:42'),(273,'The attitude of the crowd towards, the sick man was that of ............','indifference','friendliness','hospitality','political apathy','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',78,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:57'),(274,'Which of the following could be a possible reason for the crowds attitude towards the sick man','They were afraid that he might be an unknown soldier','They kept their distance so as not to contact the Ebola virus, in case he has it','They were not used to helping visitors','They kept their distance so as not to contact the HIV/AIDs virus, in case he has it','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','b','','neco','2013',76,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:36'),(275,'If the crowd insisted on keeping their distance what appropriate action could they have taken','call the appropriate health department to intervene','left him to his fate','stone him to death','desert him','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',68,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:50'),(276,'If the crowd suspected that he had the Ebola virus and wish to call the Ebola emergency line, which one of the following could they have called?','08023169485','0803361424','08023361936','08027063614','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:05'),(277,'Any forms of restricted franchise is a violation of the principle of','political equality','sovereignty','legality','constitutionalism','','','a','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:00'),(278,'Which of the following is not the civic obligation of a citizen','payment of taxes','freedom of conscience and speech','voting during elections','obedience to law','','','b','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:05'),(279,'A sovereign state is one','whose citizens are free to evade responsibility','whose governments decisions are made independent of foreign interference','which has a president and a prime minister','where its citizens can speak without fear or favour','','','b','','neco','2013',78,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:22'),(280,'Jamiu and Onome were among those standing inside a BRT bus in Lagos. Onome mistakenly stepped on Jamiu and Jamiu gave Onome a very dirty slap. As a law a biding citizen of the country which of the following reactions is expected of Onome','Turn the other chick for another slap','Slap Jamiu back and prepare for any fight that might ensure','Let Jamiu know that he, Onome stepped on him inadvertently, but pardon him to avoid escalating the matter','Push Jamiu down from the moving bus','','','c','','neco','2013',65,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:20'),(281,'Juvenile delinquency refers to','active youths participation in sports','wrong doings by the youths','Refusal to worship God by the youths','Urban Rural migration by the youth','','','b','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:37'),(282,'Psychopathy is a form of ................ behaviour','Normal','abnormal','desired','valued','','','b','','neco','2013',61,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:29'),(283,'Consumers of ......... especially ........... and ..............stand the a great risk of contacting the Ebola disease','fish, tilapia, titus','bush meat, monkey, bat','meat, cow, dog','vegetable, water leaf, bitter leaf','','','b','','neco','2013',62,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:00'),(284,'Government is the machinery established to manage the affairs of','the state','the civil service','peasants and students','strangers','','','a','','neco','2013',76,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:49'),(285,'The judicial organs of government is the body which','makes the law','implements the law','interpreters the law','rewards lawmakers','','','c','','neco','2013',71,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:56'),(286,'The Ebola disease is usually acquired when a person comes in contact with','the blood or bodily fluids of an infested organism','anybody whose name is Bola','any animal','snake fish','','','a','','neco','2013',53,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:32'),(287,'The prime minister is vested with the powers of the executive in ........... system of government','a parliamentary','a presidential','a monarchical','unitary','','','a','','neco','2013',65,'Admin','2016-11-27 17:44:17','2020-05-28 21:10:07'),(288,'Through which of these can citizenship status be acquired','birth, naturalization, honorary and registration','birth, colonization and integration','referendum, incorporation and acceptance','convention registration and colonization','','','a','','neco','2013',79,'Admin','2016-11-27 17:44:17','2020-05-28 21:09:44'),(289,'That which people enjoy primarily because they are human beings are called ...............','Human Obligation','Constitutional Right','Human Right','Democratic Right','','','c','','neco','2013',77,'Admin','2016-11-27 17:44:18','2020-05-28 21:08:36'),(290,'Which of these categories of people stand the greatest risk of contacting the Ebola virus .........','Lecturers and students in the school','Health workers and their family members','Hunters and their family members','b and c above','','','d','','neco','2013',57,'Admin','2016-11-27 17:44:18','2020-05-28 21:10:01'),(291,'It is often said that public servants cannot be held responsible for their actions. This principle denotes .................','anonymity','civic irresponsibility','accountability','neutrality','','','a','','neco','2013',68,'Admin','2016-11-27 17:44:18','2020-05-28 21:09:41'),(292,'Free, fair and credible elections are attributes of .......','undemocratic government','democratic government','military regime','monarchical governance','','','b','','neco','2013',72,'Admin','2016-11-27 17:44:18','2020-05-28 21:09:53'),(293,'The followings are symptoms of Ebola excepts','sudden fever and vomiting','headaches and diarrhea','muscle pains','frequent hunger and increase thirst for water','','','d','','neco','2013',83,'Admin','2016-11-27 17:44:18','2020-05-28 21:09:48'),(294,'Public service belongs to ................','the legislative arm of government','the judiciary arm of government','senate arm of government','the executive arm of government','','','d','','neco','2013',75,'Admin','2016-11-27 17:44:18','2020-05-28 21:09:56'),(295,'Human traffickers usually force their victims to engage in','rewarding exercise','religious activities','forced labour','useful trade','','','c','','wassce','2011',82,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:55'),(296,'Public servants in Nigeria are expected to be .............','involved in politics','non-partisan','ambitious politically','partial','','','b','','wassce','2011',74,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:37'),(297,'HIV and Ebola can be contacted through contact with','Non infected person','contaminated medical equipment such as needles and syringes','Very sick person','Healthy reptiles','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:24','2020-05-28 21:08:41'),(298,'Which of the following is not a preventive measure against the acquisition of the Ebola disease...........','Do not touch an infected person or their body fluids including blood, vomit, urine, saliva','Wash your hands regularly with soap and water and apply sanitizers frequently','Beware of hand shake and go for medical checkup as soon as possible when sick','Do not bath with medicated soap','','','d','','wassce','2011',73,'Admin','2016-12-12 19:40:24','2020-05-28 21:08:27'),(299,'Nigeria celebrated her centenary anniversary in the ......','1954','1960','1963','2014','','','d','','wassce','2011',79,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:26'),(300,'Which of the following are Ebola Emergency lines','08023169484 or 08033086660','08023361936 or 08034623521','08023164216 or 08033065936','08055281400 or 08023361936','','','a','','wassce','2011',76,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:56'),(301,'An individual with feverish condition who has taken Panadol is advised to see the ............ if the feverish condition persists after .......... days','father, four','pastor, three','doctor, three','doctor, ten','','','c','','wassce','2011',85,'Admin','2016-12-12 19:40:24','2020-05-28 21:09:49'),(302,'Which of these is NOT undesirable in the society','cultism','terrorism','patriotism','vandalism','','','c','','wassce','2011',85,'Admin','2016-12-12 19:40:25','2020-05-28 21:10:07'),(303,'As at 2014 Nigeria has .......... states','47','37','60','57','','','b','','wassce','2011',70,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:21'),(304,'The Boko Haram insurgency started around','2009','2014','1960','1963','','','a','','wassce','2011',77,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:52'),(305,'A sense of right and wrong guiding a person’s action is known as','attitude','conscience','action','manner','','','b','','wassce','2011',72,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:40'),(306,'Which of the following is a bad habit capable of leading to future psychological and physiological ill health','self Actualization','Self Meditation','Self Medication','Self Appraisal','','','c','','wassce','2011',77,'Admin','2016-12-12 19:40:25','2020-05-28 21:08:27'),(307,'Civic Education is also known as ....................','Organizational Structure','Citizenship Education','Customers Opinion','Government Policy','','','b','','wassce','2011',82,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:56'),(308,'The number of Girls abducted by members of Boko Haram at Chibok in 2014 is roughly','200','219','419','180','','','b','','wassce','2011',73,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:51'),(309,'The Ebola virus can be prevented by','washing our hands regularly and applying sanitizer','washing our head always','taking drugs regularly','eating balanced diet','','','a','','wassce','2011',74,'Admin','2016-12-12 19:40:25','2020-05-28 21:08:31'),(310,'If six political parties contest for an election (A, B, C, D, E, F), what is the probability that party C will wine the election','1/3','1/4','1/6','1/2','','','c','','wassce','2011',72,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:58'),(311,'Another word for abduction is ...........................','to steal','to adopt','to kidnap','to kill','','','c','','wassce','2011',84,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:29'),(312,'In Lagos state and some other states in Nigeria, motorcycle (okada) riders are expected to wear ............ while on motion','Boot','Hand glove','Crash helmet','Black coloured shirt','','','c','','wassce','2011',63,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:43'),(313,'In Lagos state, the BRT lane is reserved for ....... only','The governor','Soldiers','Commercial buses','BRT buses','','','d','','wassce','2011',78,'Admin','2016-12-12 19:40:25','2020-05-28 21:10:07'),(314,'Mondays and Thursday are days meant for in between environmental sanitation exercise in ........... and .......... states respectively','Lagos and Edo','Edo and Lagos','Abuja and Lagos','Delta and Lagos','','','b','','wassce','2011',90,'Admin','2016-12-12 19:40:25','2020-06-25 23:00:18'),(315,'One way for Nigerians to maintain steady good health is by','taking malaria medicine everyday','bathing with salt water and eating bitter kola always','taking balance diet and engaging in regular physical exercise','taking alcohol and cigarettes regularly','','','c','','wassce','2011',66,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:04'),(316,'Which of the following is the cleanest source of water in Nigeria','pond water','river water','rain water','lagoon water','','','c','','wassce','2011',77,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:44'),(317,'Which of these tax below is paid by nearly everybody in Nigeria','Direct tax','Excise tax','Proportional tax','Regressive','','','b','','wassce','2011',77,'Admin','2016-12-12 19:40:25','2020-05-28 21:10:00'),(318,'Which of the following was a former military head of state in Nigeria','MKO Abiola','Goodluck Jonathan','General Idiagbon','General Babagida','','','d','','wassce','2011',75,'Admin','2016-12-12 19:40:25','2020-05-28 21:07:29'),(319,'The three larges and most influential ethnic groups in Nigeria are','Yoruba, Edo and Hausa','Igbo, Iteskiri and Hausa','Hausa, Igbo and Yoruba','Fulani, Yoruba and Efik','','','c','','wassce','2011',84,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:52'),(320,'The former National anthem begins with.......................','Nigeria We Hail Thee','Arise O Compatriots','I pledge to Nigeria my Country','So help me God','','','a','','wassce','2011',78,'Admin','2016-12-12 19:40:25','2020-05-28 21:09:53'),(321,'NUC and NBA stands for ......... and ......... respectively','National University Commission and Nigeria Bar Association','Nigeria Bar Association and National University Commission','National Union Congress and Nigeria Basketball Authority','National Utilities Commission and Nigeria Bar Association','','','a','','wassce','2011',70,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:25'),(322,'General Murtala Mohammed was assassinated on his way to work in ..............','February 13, 1976','June 12, 1993','October 1, 1960','June 8, 1998','','','a','','wassce','2011',80,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:55'),(323,'Naira and Kobo was introduced in Nigeria in ..............','2nd July,1963','1st January 1972','June 12, 1993','March13, 1995','','','b','','wassce','2011',84,'Admin','2016-12-12 19:40:26','2020-05-28 21:10:06'),(324,'In the General election of June 12 1993, the two main candidates that contested for the post of presidency were ......','MKO Abiola and Olusegun Obasanjo','MKO Abiola and Tofa','Atiku and Olusegun Obasanjo','Yaradua and Goodluck Jonathan','','','b','','wassce','2011',79,'Admin','2016-12-12 19:40:26','2020-05-28 21:08:57'),(325,'A committee of PDP members is made up of 9 Hausas, 8 Igbo and 7 Yorubas. If the president wishes to choose just one person to be his special adviser, find the probability that the person chosen is neither Hausa nor Yoruba','7/24','2/3','3/8','1/3','','','d','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-06-09 11:27:27'),(326,'Driving, especially along the highway requires serious  ...........','concentration','meditation','concentration','perambulation','','','c','','wassce','2011',79,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:20'),(327,'A Taxi diver who mistakenly Jams and kills someone is guilty of ............... and he will receive ................ punishment than if it were a case of ........','murder, less, manslaughter','man slaughter, less, murder','manslaughter, more, murder','civil offence, less, murder','','','b','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-05-28 21:08:06'),(328,'The full meaning of NYSC is ..............','Now Your Suffering Continues','Nigeria Youths Serving Christ','National Youth Service Corps','Nigerian Youth Service Corps','','','c','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-05-28 21:08:09'),(329,'The NYSC was established in the year .................','May 22, 1973','June 15, 1960','May 22, 1963','August 20,1993','','','a','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:20'),(330,'One of the main objectives of establishing the NYSC is to .................','Enable the youths to have some practical experience \t\t     after schooling','Forster National unity','Engage the young graduates because “Idle mind is the devil’s workshop”','Create employment for the young graduates','','','b','','wassce','2011',59,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:01'),(331,'Those eligible to partake in the scheme are those','Those seeking for admission into the higher institutions','Who have successfully completed their studies from higher institution .eg. college of education, \t\t     polytechnic & university','Who are looking for something to keep them busy','Who are from poor family background','','','b','','wassce','2011',71,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:24'),(332,'The age limit for the service is ..............','25','35','30','18','','','c','','wassce','2011',72,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:12'),(333,'At the end of the service year each corper will be given ......... as an evidence that he or she has successfully completed the service','NYSC passport','National ID Card','NYSC discharge certificate','Letter of appreciation','','','c','','wassce','2011',83,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:42'),(334,'Which of the following is true','The CD (Community Development) exercise   embarked by corpers is not paid for by the community','Corpers collect extra money for embarking on the C.D','Corpers are not usually given monthly allowances','The aim of the NYSC scheme is to foster disunity   in the country','','','a','','wassce','2011',77,'Admin','2016-12-12 19:40:26','2020-05-28 21:09:49'),(335,'The killing of NYSC members in certain parts of the country  ................','Contradicts the goal of establishing the scheme','Is in line with the aims of establishing the scheme','Is not a serious matter','Enhances national unity','','','a','','wassce','2011',67,'Admin','2016-12-12 19:40:26','2020-05-28 21:10:05'),(336,'Nigeria is a ............. state','Communist','Capitalist','socialist','Feudalist','','','b','','wassce','2011',74,'Admin','2016-12-12 19:40:27','2020-05-28 21:10:07'),(337,'Some years to come, when you become the President of Nigeria, which of the options below will you choose \tto eradicate porzverty in the country','carry all the poor people away from Nigeria to another country so when there are no poor people poverty will be gone forever','print plenty Naira Notes and give millions to every Nigeria','Import plenty Agricultural and Manufactured goods','None of the above','','','d','','wassce','2011',79,'Admin','2016-12-12 19:40:27','2020-05-28 21:08:39'),(338,'On the 18th of November 2014 in Yobe, some crowds lynched a suspected suicide bomber. The action of the crowd is .....','right because ‘he who kills by the sword must die by the sword’','wrong because they have unlawfully taken the law into their hands, they should have handed the suicide  bomber over to the police','right because we all have to fights against all forms of terrorism','right so that others will learn lesson from this action','','','b','','wassce','2011',66,'Admin','2016-12-12 19:40:27','2020-05-28 21:09:57'),(339,'In the year 2014 the catholic church in Nigeria suspended the usual hand shaking (as a sign of peace) among its members just after the “Lord’s prayer” The most likely reason for this action is to prevent the \t\tspread of ............, in case a member has it','HIV/AIDs virus','The Ebola virus','Evil and demonic spirit','malaria fever','','','b','','wassce','2011',80,'Admin','2016-12-12 19:40:27','2020-05-28 21:09:42'),(340,'Decrees are laws made by .............','the parliament','the judiciary','the military','senators','','','c','','wassce','2011',71,'Admin','2016-12-12 19:40:27','2020-05-28 21:09:28'),(341,'The document containing the aims and programs of a political party is called ...........','register','manifesto','memorandum of party','party library','','','b','','wassce','2011',81,'Admin','2016-12-12 19:40:27','2020-06-09 11:26:22'),(342,'The former PHCN is a good example of .................. in Nigeria','civil service','perfect competition','public corporation','private monopoly','','','c','','wassce','2011',89,'Admin','2016-12-12 19:40:27','2020-05-28 21:09:44'),(343,'Orderliness can be defined as','being punctual to work','studying diligently in school','doing things in a proper way','learning the Western way of life','','','c','','wassce','2016',69,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:25'),(344,'The Traffic in Persons Prohibition and Administration Act was passed in Nigeria in','December 2001.','October 2002','August 2003','April 2004.','','','c','','wassce','2016',65,'Admin','2016-12-12 19:57:13','2020-05-28 21:10:00'),(345,'The process of enabling someone to perform an action which adds value to his/her life is known as','employment','recruitment','socialization','empowerment','','','d','','wassce','2016',66,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:53'),(346,'Rates are collected in Nigeria by','Federal Inland Revenue Service','State Ministry of Finance','Local Government Councils','Council of Traditional Rulers','','','c','','wassce','2016',72,'Admin','2016-12-12 19:57:13','2020-05-28 21:08:56'),(347,'The Fourth Schedule of the 1999 Constitution of Nigeria outlines the functions of','federal government','local government','national government','state government','','','b','','wassce','2016',65,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:37'),(348,'Lack of interest in politics by citizens in the country is referred to as political','ignorance','apathy','participation','socialization','','','b','','wassce','2016',69,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:36'),(349,'Which of the following instruments is not used by a civil society group?','Propaganda','Boycott','Protest','Violence','','','d','','wassce','2016',74,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:56'),(350,'The administrative class in the public service is to','implement policies','formulate policies','veto policies','oversee policies','','','a','','wassce','2016',56,'Admin','2016-12-12 19:57:13','2020-05-28 21:10:06'),(351,'“We the people of the Federal Republic of Nigeria” is usually the opening phrase of the preamble to','coup announcement','government gazettes','constitution','mansard','','','c','','wassce','2016',56,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:37'),(352,'One of the responsibilities of a good citizen is to','possess an international passport','enjoy all amenities provided by government','serve the country when required','develop his potentialities to the fullest','','','c','','wassce','2016',68,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:14'),(353,'Naturalized citizens cannot be denied their legal status as members of a country unless if they','are jailed for one year within seven years of acquiring citizenship','are found guilty to be spies or secret agents for another country','refuse to represent the country in an international sporting event','give adequate information to the host country','','','a','','wassce','2016',67,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:59'),(354,'Citizenship education influences an individual to be','patriotic','educated','complacent','competent','','','a','','wassce','2016',79,'Admin','2016-12-12 19:57:13','2020-05-28 21:09:45'),(355,'Which of the following is not an example of orderliness?','Listening skill','Driving skill','Decorum','Deviance','','','d','','wassce','2016',62,'Admin','2016-12-12 19:57:14','2020-05-28 21:06:15'),(356,'Which of the following statements is not correct?','Valid driver’s license must be obtained before attempting to drive','Flowing garment can be worn on a motorcycle or bicycle','Headlights should be used during unfavourable weather','Drivers must not engage in distractive activities while driving','','','d','','wassce','2016',60,'Admin','2016-12-12 19:57:14','2020-05-28 21:10:05'),(357,'Cultism can best be discouraged through','mentoring of cultists by the rich','provision of jobs for cultists','sensitization on the dangers of cultism','establishment of cultists support groups','','','c','','wassce','2016',67,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:50'),(358,'Which of the following is a consequence of drug abuse?','Depression','Victimization','Inefficiency','Cowardice','','','a','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:52'),(359,'The effect of human trafficking on the victims is','illiteracy','affluence','exposure','exploitation','','','d','','wassce','2016',58,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:05'),(360,'The general attitude of government and society towards cultism is that of','affection','sympathy','abhorrence','support','','','c','','wassce','2016',75,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:52'),(361,'Drug abuse can be prevented by','fighting drug addicts','poverty reduction','reducing drugs in circulation','legal sanction','','','b','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:41'),(362,'A major factor responsible for human trafficking is','hunger','illiteracy','greed','joblessness','','','c','','wassce','2016',71,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:16'),(363,'People Living With HIV/AIDS (PLWHA) can be supported by','billing them for antiretroviral therapy','providing drugs for them at subsidized rates','providing special attires for them','providing accommodation for them in designated locations','','','b','','wassce','2016',74,'Admin','2016-12-12 19:57:14','2020-06-09 11:28:16'),(364,'Cult members are particularly hostile to','lecturers','perceived enemies','their group members','all students','','','b','','wassce','2016',66,'Admin','2016-12-12 19:57:14','2020-05-28 21:08:39'),(365,'Drug law enforcement agencies in Nigeria are not empowered to','execute drug suspects','arrest drug barons','prosecute drug traffickers','rehabilitate drug addicts','','','a','','wassce','2016',59,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:04'),(366,'Which of the following is not a means of reducing the incidence of HIV/AIDS in our society?','Education and enlightenment programs','The use of specially designed cutlery by victims','Avoiding pre-marital and extra-marital sex','Upholding the value of chastity','','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:14','2020-05-28 21:10:08'),(367,'Youth empowerment promotes','self-reliance','youthful exuberance','pursuit of higher education','foreign scholarship','','','a','','wassce','2016',74,'Admin','2016-12-12 19:57:14','2020-05-28 21:09:22'),(368,'The Supreme Court of Nigeria helps in law','drafting','application','interpretation','enforcement','','','c','','wassce','2016',69,'Admin','2016-12-12 19:57:15','2020-05-28 21:08:49'),(369,'Democracy thrives most where there is','nonpartisan judiciary','freedom of speech and association','absence of universal suffrage','one-party system','','','b','','wassce','2016',66,'Admin','2016-12-12 19:57:15','2020-05-28 21:08:51'),(370,'Rule of law is limited by the following except','state of emergency','habeas corpus','illiteracy','immunity','','','c','','wassce','2016',68,'Admin','2016-12-12 19:57:15','2020-05-28 21:10:00'),(371,'Preventive measures of HIV/AIDS do not include','abstinence','screening of blood before transfusion','use of barrier method','stigmatization of victims','','','d','','wassce','2016',62,'Admin','2016-12-12 19:57:15','2020-05-28 21:07:40'),(372,'One of reasons leaders fail to protect the interest of their followers is','selfishness','inadequate finance','ignorance','rigid policies','','','a','','wassce','2016',67,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:21'),(373,'Which of the following is not a form of political participation?','Taking part in voters’ registration exercise','Voting during elections','Joining political party','Ballot box stuffing during elections','','','d','','wassce','2016',85,'Admin','2016-12-12 19:57:15','2020-05-28 21:10:00'),(374,'Civil Society groups perform the following roles during general elections except','educating the voters','serving as watchdog','counting votes','stimulating participation','','','c','','wassce','2016',59,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:41'),(375,'Which of the following is not an example of civil society group?','United Action for Democracy','United Nations Organization','Transition Monitoring Group','Amnesty International','','','b','','wassce','2016',76,'Admin','2016-12-12 19:57:15','2020-05-28 21:10:02'),(376,'One of the major complaints against public service is','inefficiency','understaffing','victimization','discrimination','','','a','','wassce','2016',65,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:42'),(377,'Which of the following is not a way of improving public service?','Politicization','Refresher courses','The use of Code Conduct Bureau','Reformation','','','a','','wassce','2016',76,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:39'),(378,'Children that are not cared for are mostly prone to','criminal attitudes','terminal diseases','examination failure','forced migration','','','a','','wassce','2016',75,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:56'),(379,'The motherland in the monologue could best be described as','a nation in transition','a morally upgrading country','a socially viable nation','an ethically bankrupt country','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','b','','wassce','2016',64,'Admin','2016-12-12 19:57:15','2020-05-28 21:08:14'),(380,'In spite of the state of affairs reflected in the above monologue, the citizens can make the country better by being committed to','promoting inter-communal relations','strengthening capacity building','championing moral values','encouraging interpersonal relations','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','c','','wassce','2016',65,'Admin','2016-12-12 19:57:15','2020-05-28 21:09:49'),(381,'Based on the monologue above, the best approach to curb moral decadence in the motherland is by','value re-orientation','introducing war against corruption','legalizing capital punishment','sending corrupt officials on exile','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','a','','wassce','2016',63,'Admin','2016-12-12 19:57:16','2020-05-28 21:10:01'),(382,'The most important contribution of responsible parenthood to national development is that it','increases youthful population','fosters national integration','augments the nation workforce','breeds dependable citizenry','','','c','','wassce','2016',66,'Admin','2016-12-12 19:57:16','2020-06-25 23:00:33'),(383,'Which of the following can not be easily abused?','Cosmetics','Stimulant','Tobacco','Narcotics','','','a','','wassce','2016',62,'Admin','2016-12-12 19:57:16','2020-05-28 21:10:00'),(384,'Dr. Fajir cannot exercise some basic rights because he','was a suspect in a criminal case','was found guilty of a criminal offence','failed to comply with court order','embezzled public fund','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','b','','wassce','2016',102,'Admin','2016-12-12 19:57:16','2020-07-03 22:22:22'),(385,'According to the above story, the open trial of Dr. Fajir and his representation by lawyers of his choice in a court of competent jurisdiction is an indication of','respect for habeas corpus','freedom of expression','respect for human rights','freedom of legal representation','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','c','','wassce','2016',67,'Admin','2016-12-12 19:57:16','2020-05-28 21:09:48'),(386,'Based on the above story, which of the following would Dr.Fajir not be allowed to do while in prison?','Voting during elections','Engaging in hard labour','Participating in prison fellowship','Writing examination','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','a','','wassce','2016',64,'Admin','2016-12-12 19:57:16','2020-05-28 21:09:01'),(387,'The most important place for building good values is the','social welfare centre','workplace','family','media houses','','','c','','wassce','2016',58,'Admin','2016-12-12 19:57:16','2020-05-28 21:09:49'),(388,'Citizen’s compliance with tenets of the Nigerian National Pledge will enable the country to','receive reciprocal assistance','witness value clarification','get international aid','experience development','','','b','','wassce','2016',60,'Admin','2016-12-12 19:57:16','2020-05-28 21:09:17'),(389,'Which of the following statements may be true about the behaviour of the candidates in the diagram?','The candidates are doing what is ethical','Candidates involved in malpractice should be banned for life','Their action can also affect innocent candidates','Their misconduct will guarantee a reliable certificate','','','b','','wassce','2015',64,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:09'),(390,'Based on the above diagram, the candidates would not have cheated if','they were well-spaced','there was an invigilator','they were hardworking','there was nobody to copy from','','','c','','wassce','2015',67,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:29'),(391,'In which year did the United Nations General Assembly adopt the Universal Declaration of Human Rights?','1945','1946','1947','1948','','','a','','wassce','2015',60,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:29'),(392,'Two forms of road signs are regulatory and','punitive','informative','persuasive','inhibitive','','','b','','wassce','2015',67,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:21'),(393,'Which of the following factors does not affect interpersonal relationship?','Communication','Withdrawal','Compatibility','Forgiveness','','','b','','wassce','2015',69,'Admin','2016-12-12 20:15:41','2020-05-28 21:08:59'),(394,'The following cadre of students are the main target for campus cult membership except','students from wealthy homes','students from influential parents','bold and morally sound students','wayward and fun-loving students','','','c','','wassce','2015',66,'Admin','2016-12-12 20:15:41','2020-05-28 21:09:56'),(395,'The National Agency for Food and Drug Administration and Control (NAFDAC) was established in','1993','1996','1999','2001','','','a','','wassce','2015',77,'Admin','2016-12-12 20:15:42','2020-05-28 21:10:00'),(396,'National Agency for the Prohibition of Traffic in Persons (NAPTIP) is an initiative of','Federal Government of Nigeria','United States Agency for International Development','Woman Trafficking and Child Labour Eradication \tFoundation','United Nations Office on Drugs and Crime','','','a','','wassce','2015',60,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:24'),(397,'World AIDS day is observed on','20th May','30th July','27th August','1th December','','','d','','wassce','2015',57,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:04'),(398,'An enabling environment created to help an individual have effective control of his/her situation is known as','reinforcement','empowerment','endowment','enhancement','','','b','','wassce','2015',71,'Admin','2016-12-12 20:15:42','2020-05-28 21:08:09'),(399,'In order to avoid undue interference in the process of governance, there should be','clear cut separation of governmental powers','proper fusion of governmental powers and functions','more roles for traditional rulers in the governmental process','additional responsibility for local government council','','','a','','wassce','2015',78,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:57'),(400,'Red-tapism is one the shortcomings of','private enterprise','public service','non-governmental organization','pressure groups','','','b','','wassce','2015',67,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:57'),(401,'An ideology that aims at promoting national consciousness and identity is','nationalism','socialization','civic culture','progressivism','','','a','','wassce','2015',62,'Admin','2016-12-12 20:15:42','2020-05-28 21:08:05'),(402,'Human rights are described as inviolable mainly because they are','authoritative declaration','enforceable everywhere','not to be unnecessarily taken away','legal declaration instruments','','','d','','wassce','2015',50,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:53'),(403,'Law and order can best be maintained in Nigeria through the','prohibition of public protest','enforcement of rules and regulations','use of divide and rule policy','promotion of indigenization policy','','','b','','wassce','2015',80,'Admin','2016-12-12 20:15:42','2020-05-28 21:08:41'),(404,'A responsible parent is someone who','cares and provides for the children','indulges the children because of love','works in order to receive salary','employs house-helps to take care of the children','','','a','','wassce','2015',59,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:39'),(405,'A major way of promoting responsible parenthood is through','sex education','sound education','population control measures','tax reduction measures','','','a','','wassce','2015',71,'Admin','2016-12-12 20:15:42','2020-05-28 21:10:05'),(406,'Which of the following is not included in the stages of interpersonal relationship?','Rejuvenation','Deterioration','Termination','Continuation','','','c','','wassce','2015',65,'Admin','2016-12-12 20:15:42','2020-05-28 21:10:01'),(407,'Cultism in tertiary institutions in Nigeria was originally introduced to','perpetuate the use of local gin and alcohol','harass opponents of university administrators','fight colonialism and oppressive rules','promote inter-communal marriages.','','','c','','wassce','2015',78,'Admin','2016-12-12 20:15:42','2020-05-28 21:07:52'),(408,'Which of the following is not a function of the National Drug Law Enforcement Agency (NDLEA)?','Applying and implementing all drug laws','Arresting, investigating and prosecuting drug traffickers','Undertaking the registration of companies dealing \tin drugs','Carrying out enlightenment campaigns on drug trafficking','','','c','','wassce','2015',58,'Admin','2016-12-12 20:15:42','2020-05-28 21:09:59'),(409,'An individual who finds it difficult to control in-take of drug is known as drug','baron','traffickers','mogul','addict','','','d','','wassce','2015',62,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:44'),(410,'The NDLEA personnel are not usually found in','international airports','seaports','border crossings','foreign embassies','','','d','','wassce','2015',84,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:32'),(411,'Which of the following statements best describes Human Trafficking?','Recruitment of youths as casual workers','Desperate desire by youths to travel abroad','Buying and selling of humans for selfish purposes','Transportation of gods and service through human portage','','','c','','wassce','2015',61,'Admin','2016-12-12 20:15:43','2020-06-09 11:26:22'),(412,'From the above write-up what category of Kantoguan youth deserves to be effectively empowered?','Children of the ruling political class','Unemployed youths and school drop-outs','University undergraduates','Youth wing of religious organizations','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','b','','wassce','2015',68,'Admin','2016-12-12 20:15:43','2020-05-28 21:10:02'),(413,'The responsibility of empowering the youth rests mostly with','the political class','religious organizations','university administrators','national government','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','d','','wassce','2015',67,'Admin','2016-12-12 20:15:43','2020-05-28 21:08:31'),(414,'Based on the write-up, what immediate measures can those in authority take to empower the youths?','Build more youth orientation camps in the country','Enhance religious and moral education in schools and colleges','Provide entrepreneurial training with adequate fund','Provide free meal for the teeming unemployed youths','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','c','','wassce','2015',65,'Admin','2016-12-12 20:15:43','2020-06-09 18:24:55'),(415,'A very important segment of the society which is distinct from government, business and home is the','civil society','public service','mass media','traditional institution','','','a','','wassce','2015',74,'Admin','2016-12-12 20:15:43','2020-05-28 21:08:22'),(416,'HIV/AIDS is generally described as terminal in nature because it is','preventable','transmittable','avertable','incurable','','','d','','wassce','2015',70,'Admin','2016-12-12 20:15:43','2020-05-28 21:10:07'),(417,'Inter-communal relationship is best described as','the interaction between individuals, groups or organizations with common aspirations','the interaction among individuals and professionals in a social setting','loyalty to community leaders so as to achieve rapid communal development','respect for collective national symbols in order to foster nationalistic feeling','','','a','','wassce','2015',58,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:44'),(418,'A situation whereby someone is obliged to inform a superior about his actions and decisions for the purpose of control is','probity','self-discipline','accountability','fair play','','','c','','wassce','2015',73,'Admin','2016-12-12 20:15:43','2020-05-28 21:07:46'),(419,'The above quotation summarizes the','Universal Declaration of Human Rights.','African Charter on Human Rights.','Geneva Conventions and Protocols.','United Nations Organization Charter.','“All human beings are born free and equal in dignity and rights. They are endowed with reason and \t\tconscience and should act towards one another in a spirit of brotherhood”.','','a','','wassce','2015',57,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:32'),(420,'Effective and responsible parenthood is primarily','a national duty','a military duty','a political duty','an economic duty','','','a','','wassce','2015',58,'Admin','2016-12-12 20:15:43','2020-05-28 21:08:13'),(421,'Association and affiliation between two or more people is called','multilateral relations','bilateral relations','inter-communal relations','interpersonal relations','','','d','','wassce','2015',64,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:53'),(422,'A bill passed by the National Assembly requires the assent of the president before it becomes law. The law can be declared null and void by the court of law. The process above emphasizes the','supremacy of judiciary over other arms of government','relationship among the arms of government','importance of law makers in a democracy','fundamentals of the rule of law.','','','d','','wassce','2015',51,'Admin','2016-12-12 20:15:43','2020-05-28 21:09:17'),(423,'The idea that “Law should be impartial with the people who break it” implies','principle of fair hearing','right to legal representation','equality before the law','prerogative writ of habeas corpus','','','c','','wassce','2015',74,'Admin','2016-12-12 20:15:43','2020-07-02 15:35:16'),(424,'The foreign policy objective of Nigeria as enshrined in the 1999 Constitution exclude the promotion of','national interest','African integration','support for donor agencies','just world economic order','','','c','','wassce','2015',70,'Admin','2016-12-12 20:15:43','2020-05-28 21:10:05'),(425,'Democracy can promote national development if there is','good governance','promotion of culture','immunity for leaders','registration of parties','','','a','','wassce','2015',61,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:53'),(426,'A major civil society group which campaigned against military rule prior to the advent of the Fourth Republic in Nigeria is the','Campaign for Democracy','Save Nigeria Group','Civil Liberties Organization','National Democratic Coalition','','','a','','wassce','2015',62,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:49'),(427,'Which of the following function is not performed by the Public Service Commission?','Evaluating the performance of ministries and departments','Advising government on technical matters','Preparing the annual budget and assenting to it','Organizing enlightenment program and training','','','d','','wassce','2015',81,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:33'),(428,'Which of the following is a major challenge to civil society in Nigeria?','Value disorientation','Diverse political interests','Inadequate funding','Unstable political system','','','a','','wassce','2015',63,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:08'),(429,'Democracy is yet to take firm root in Africa because','it retards African development','African leaders are not experienced enough','most African leaders detest the will of the people','it is an expensive system of government','','','c','','wassce','2015',58,'Admin','2016-12-12 20:15:44','2020-05-28 21:08:27'),(430,'Nationalism ensures the following except','national consciousness','secession in a country','national integration','unity in a country','','','b','','wassce','2015',71,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:46'),(431,'Justice demands that people should always do what is','persistently convenient','consistently right','individually acceptable','courageously necessary','','','b','','wassce','2015',54,'Admin','2016-12-12 20:15:44','2020-06-25 23:00:18'),(432,'Orderliness in the society is good mainly because it','discourages poverty','promotes peace and stability','guarantees employment for youths','ensures maximum rewards from leaders','','','b','','wassce','2015',67,'Admin','2016-12-12 20:15:44','2020-05-28 21:10:01'),(433,'Which of the following is necessary for the effective application of the rule of law?','Political will to ensure that laws are obeyed','Employment opportunities for all citizens','The fusion of the three arms of government','Extension of the retirement age of judges','','','a','','wassce','2015',64,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:41'),(434,'Ade’s action as shown in the dialogue is a demonstration of political','wisdom','apathy','lawlessness','participation','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','b','','wassce','2015',63,'Admin','2016-12-12 20:15:44','2020-05-28 21:08:31'),(435,'It could be inferred from the dialogue that failure to vote in an election would','guarantee citizens’ rights','encourage the emergence of responsive government','promote accountability in governance','perpetuate irresponsible leadership','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','d','','wassce','2015',66,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:45'),(436,'From the above dialogue, political leaders can encourage citizens to perform their civic duties by','fulfilling their electoral promises','travelling overseas to seek for foreign investors','engaging in religious activities','visiting all the local governments in the country','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','a','','wassce','2015',69,'Admin','2016-12-12 20:15:44','2020-05-28 21:09:22');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `commerce` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=888 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `commerce` VALUES (1,'Ships that sail across the ocean and operate on scheduled time are ','ferries ','ocean liners ','tramp steamers  ','coastal liner','','','b','','utme','2004',309,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(2,'Non-insurable risks include ','gambling ','damage to property','death','marine ','','','a','','utme','2004',308,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(3,'The program that makes up the operating system in a computer is         ','micro program','system flowchart','system software','syntax','','','c','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(4,'When an organization studies a market that is underserved by others and creates a product or service for the segment, it is engaged in','market integration  ','market positioning','market orchestration','product differentiation','','','c','','utme','2004',300,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(5,'Coverage against unexpected events is called',' insurance ','assurance   ','warranty','reinsurance','','','a','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(6,'An insured risk which occurs accidentally as a result of defects in a ship is','a voyage policy    ','a total loss','an emergency     ','a particular average','','','d','','utme','2004',300,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(7,'Communication enhances business activities by','facilitating interaction between producers and consumers ','facilitating interaction among media houses','ensuring the movement of goods from the producer to the consumer','keeping the goods safe until they are needed','','','a','','utme','2004',307,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(8,'In business, the computer is very important  especially in  ','financial management','marketing management   ','educational  management    ','information management','','','d','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(9,'What is the most important use of promotion in marketing?     ','Persuasion   ','Conviction','Information ','Education','','','c','','utme','2004',296,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(10,'The current highest decision-making body on  privatization and commercialization of public enterprises in Nigeria is the','National Council on Privatization','Securities and Exchange Commission','Nigeria Investment Promotion Commission','Bureau of Public Enterprises','','','d','','utme','2004',302,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(11,'The members of the Niger Basin Commission  include  ','Guinea, Ghana and Niger Republic','Burkina Faso, Guinea and Nigeria ','The Gambia, Benin Republic and Chad Republic',' Nigeria, The Gambia and Cameroon','','','d','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(12,'Business environment refers to all elements that are  ','outside an organization but relevant to its operations ','inside an organization but irrelevant to its operations   ','internal to an organization and relevant to its operations','external to an organization but indirectly related to its  operations','','','d','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(13,'Consumer rights include the right to   ','credit','free samples of a product  ','redress','a share of profits','','','c','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:42'),(14,'One important requirement for the membership of the ECOWAS is ','integrity ','independence ','landmass   ','population','','','b','','utme','2004',299,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(15,'In Nigeria, the body that ensures that its members operate according to their professional ethics is the   ','SON  ','NPF   ','MAN ','NAFDAC','','','a','','utme','2004',306,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(16,'A transporter who had to sell some perishable goods without the prior authority of the owner  becomes an agent by   ','conduct ','necessity','ratification  ','estoppel','','','b','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(17,'Poor sewage disposal, oil spill and indiscriminate refuse dumping all ','lead to  land pollution','water pollution   ','land and water pollution','air and water pollution','','','d','','utme','2004',304,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(18,'One of the advantages of commercialization is that it','encourages entrepreneurship','increases the salaries of workers','motivates government to establish more  businesses   ','gives workers on-the-job training','','','a','','utme','2004',304,'Admin','0000-00-00 00:00:00','2020-06-19 01:06:41'),(19,'A common element in all contracts is    ','offer','  consideration   ','acceptance ','agreement','','','d','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(20,'Sources of finance to a business include personal  savings, shares, debentures and ','loans from IMF   ','bank overdrafts ','central bank loans','money from political parties','','','b','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(21,'Charges for loans paid by commercial banks to the Central Bank of Nigeria are called   ','bank rates   ','credit charges   ','interest rates',' bank charges','','','a','','utme','2004',299,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(22,'In the primary market, new shares are issued  through  ','personal selling, publicity and advertising  ','a prospectus, an offer for sale and a bill of exchange   ','advertising, a prospectus and a bill of exchange','a prospectus, an offer for sale and placing','','','b','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(23,'The instruments of credit include ','billboards and postal stamps','payment vouchers and statement of account','bills of exchange and promissory notes','bills of exchange and salary vouchers','','','c','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:41'),(24,'The shares of a company listed on the stock exchange for sale are referred to as','registered shares  ','deferred shares ','issued shares       ','quoted shares','','','d','','utme','2004',306,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(25,'What is the role of the capital market in the privatization exercise in Nigeria?    ','Selling the shares and stocks of the companies to be  privatized ','Encouraging private companies to  participate in the exercise ','Negotiating with individuals who want to buy public companies','Advertising for government','','','a','','utme','2004',305,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(26,'In international trade, documentary credit is also known as   ','credit note   ','letters of credit','bankers\\' draft       ','letter of hypothecation','','','b','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-05 14:08:23'),(27,'A specialized institution in Nigeria that deals in  capital investments in the form of stocks, shares, bonds and debentures is the ','Securities and Exchange Commission ','commodity market','Nigerian Stock Exchange ','Central Bank of Nigeria','','','a','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(28,'A group of assets which a business acquires with the intention of reselling them are referred to as','  current assets    ','investment assets','fixed assets    ','intangible assets','','','b','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(29,'Authorized share capital is also known as','called-up share capital    ','paid-up share capital ','registered share capital  ','issued share capital','','','c','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(30,'An action taken by a company outside its object clause is regarded as ','ultra vires    ','a trespass   ','uberrima fides    ','caveat emptor','','','a','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(31,'The strategy adopted by a firm that ceases to operate at one or more locations because of inactivity is  ','rejuvenation ','focus','diversification     ','consolidation','','','c','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-06-15 00:24:01'),(32,'A written partnership contract is known as','an invoice ',' a deed      ','a prospectus','a proposal','','','b','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:43'),(33,'The merger of a textile mill, a cement company and a tannery is referred to as ','  conglomerate merger ',' horizontal merger ','lateral merger',' vertical merger','','','d','','utme','2004',300,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(34,'As the branches indicate, iv is','commerce','exchange ','finance      ','construction','','','d','','utme','2004',313,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(35,'What does v represent?','Aids to trade','Advertising  ','Manufacturing  ','Industry','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(36,'The most important function of commerce is','helping people to improve their profits','facilitating exchanges among individuals and firms ','assisting trade through banking and insurance   ','enhancing business relationships','','','b','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:43'),(37,'The acronym PLC is used to identify a ','company limited by shares ','private company limited by shares','public company limited by shares','company limited by guarantee','','','c','','utme','2004',303,'Admin','0000-00-00 00:00:00','2020-07-05 14:08:23'),(38,'Commerce includes all the occupations concerned with ','sales  ','production','marketing    ','distribution ','','','d','','utme','2004',303,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(39,'Factors of production can be described as the','resources required for the provision of goods and services   ','skills involved in deciding and directing the flow of goods  ','monetary tools employed by government to ensure stable production      ','elements involved in the process of formulating policies\\' on production ','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(40,'Fluctuations in the supply of goods may be eliminated if the distribution system maintains','modern technology ','a team of retailers','warehouse services  ','sufficient middlemen','','','a','','utme','2004',319,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(41,'Loan schemes by thrift societies are ','mortgage schemes   ','conventional schemes   ','mutual schemes     ','unconventional schemes ','','','c','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(42,'An internal demand for goods to be purchased or drawn from stock is','a quotation','a requisition   ','a tender  ','an order','','','b','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-06-20 18:26:09'),(43,'The term 4 net 7 on an invoice means that','4% surcharge will be made unless payment is made within seven days   ','4% discount will be allowed on the price charged only if the goods are bought within seven days  ','4% discount will be allowed on the price charged if payment is made after seven days ','4% discount will be allowed on the price charged if payment is made within even days.','','','d','','utme','2004',298,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(44,'An order sent by an importer to an overseas supplier stating the details of goods required is known as   ','A export invoice    ','ship\\'s manifest','an indent    ','bill of lading','','','c','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(45,'Organizing trade fairs in Nigeria is the responsibility of   ','National Directorate of Employment  ','Federal Ministry of Commerce','trade associations   ','chambers of commerce ','','','d','','utme','2004',319,'Admin','0000-00-00 00:00:00','2020-07-06 19:29:39'),(46,'International fade takes place as a result of','uniformity in costs of production','inequitable distribution of natural resources','parity in the level of industrialization','similarities in climatic conditions.','','','b','','utme','2004',309,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(47,'The use of vending machines in retailing is hindered in a developing economy owing to','poor distribution network   ','low level of education    ','ineffective communication system','lack of steady power supply.','','','d','','utme','2004',308,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(48,'Manufactures’ Association  of Nigeria contributes to development by advising the government on','industrial policy and harmony   ','budget and control ','budget and industrial policy','environmental protection policy ','','','a','','utme','2004',298,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(49,'Discounts offered by firms to middlemen for bulk purchases are ','A   trade discounts','sales  bonanza    ','cash discounts ','seasonal','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(50,'Goods are  of merchantable  quality if they','conform to description  ','are of equal weight','are of the same quality ','conform to buyers\\' purpose','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-06-29 09:34:40'),(51,'A floating policy is an example of','marine insurance    ','actuaries insurance ','motor insurance    ','fire insurance.','','','b','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(52,'The most important benefit of insurance is that it Provides ','control over activities','the insured with a right to premium','the insured with a right to full compensation','protection against risks.','','','d','','utme','2005',116,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:13'),(53,'Which part of the computer system does the keyboard device belong to? ','Output unit ',' Logic unit ','Input unit ','Control unit.','','','c','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(54,'The Lake Chad Basin Commission was formed in ','1974','1984','1954','1964','','','d','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(55,'A major disadvantage of the privatisation policy is that ','the economy would be private-sector-led ','citizens would benefit less from government','more money would be brought into circulation','government would loss control of the economy.','','','d','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(56,'The most important right of the employee in discharging his duties to the employer is the right to ','regular emoluments  ','job security ','working facilities  ','annual leave. ','','','b','','utme','2005',121,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(57,'The most dangerous pollution is','water ','noise pollution','soil pollution   ','air pollution.','','','d','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(58,'The primary objective of consumer protection laws is to ensure that consumers derive maximum satisfaction from goods and services','consumers buy goods and services at cheap rates   ','manufacturers of goods and service providers overcome ','Internal competition','manufacturers of goods and service providers get optimum profit','','','a','','utme','2005',118,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(59,'The compensation the insured gets depends heavily on the ','economic situation','premium paid ','risk suffered','insurer\\'s buoyancy','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(60,'The computer that functions by taking discrete numbers and  performing mathematical calculations is called ','mainframe ','digital ','hybride','analogue.','','','c','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(61,'Commercialization of government corporations brings about an increase in the level of','money supply in the economy','distrust among business operators','competition among business operators','social responsibility','','','c','','utme','2005',116,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:11'),(62,'The difference between personal selling and sales promotion is that while sales promotion includes free gifts and samples, personal selling involves','distributing instructional posters','face-to-face communication with customers','premium programming for customers','publishing promotional booklets.','','','b','','utme','2005',121,'Admin','0000-00-00 00:00:00','2020-06-30 13:51:34'),(63,'The type of communication from a superior to a subordinate in an organization is referred to as','horizontal communication','lateral communication','downward communication','upward communication.','','','c','','utme','2005',124,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(64,'A step-by-step method of carrying out functions in  an office is known as','procedure','organizing',' policy ','programme.','','','a','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(65,'The best means of sending unwritten messages simultaneously   to   many   branches   of  an organization within a country is the','television',' telephone   ','telegraph   ','radio.','','','c','','utme','2005',154,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(66,'The   media    used   for   inter-departmental communication include.','circulars, advertisement and notice boards','memoranda, circulars and the telephone','memoranda, advertising and face-to-face','memoranda, advertising and the grapevine','','','b','','utme','2005',111,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(67,'An instrument that is traded in the second-tier foreign exchange market is','money order','stock ','travellers\\' cheque  ','debenture.','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:58'),(68,'The development of a container and a graphic design for a product is called ','packaging ','promotion','processing  ','production.','','','a','','utme','2005',115,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(69,'A business firm that is involved in conveying goods or people is known as a ','consignor','commercial firm ','carrier','transporter','','','c','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:11'),(70,'The factors essential for tourism are','accessibility, capital, amenities and schools','goods weather, amenities, accessibility and scenery.','amenities, capital, accessibility and markets','good weather, capital, schools and scenery.','','','b','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(71,'In GIF contracts, risk passes at the time of shipment but the property does not pass until','there is physical transfer of goods','the shipping manifests are signed','the shipping documents are transferred','the goods on board are delivered.','','','b','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(72,'A partnership is dissolved when','the business suffers a loss','there is bankruptcy','there is consistent theft','there is a misunderstanding between partners','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(73,'One of the disadvantages of sole proprietorship is','secrecy of annual reports','pride of ownership ','limited liability','unlimited liability.','','','d','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(74,'The most important concept in production is','utility ','wealth creation','transformation  ','distribution.','','','a','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:32'),(75,'An acquired firm in a merger will always receive a',' premium  ',' grant ','share ','discount','','','b','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-07-05 14:08:23'),(76,'Occupations are classified into','production, labour and economics','extraction, construction and manufacturing','industry, commerce and serves','trade, aids to trade and services.','','','c','','utme','2005',128,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(77,'The Nigerian Telecommunications Limited is a','Jointly owned company ','public corporation ','privately owned company ','public company. ','','','b','','utme','2005',118,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(78,'An engineer in government employ is to be rendering   ','primary service   ','tertiary service ','indirect service   ','direct service. ','','','c','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(79,'The availability of goods and services is brought to the notice of consumers through','personal selling  ','public relations','the telephone  ','advertising.','','','d','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(80,'The necessary documents used in foreign trade are ','bill of lading, invoice and letter of inquiry','indent, bill of exchange, bill of lading and invoice','invoice, shipping note, bill of lading and freight note   ','shipping note, certificate of origin and visible exports.','','','c','','utme','2005',117,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(81,'A cheque drawn by a bank official on the bank\\'s deposits in another bank on a customer\\'s instructions is known as ','promissary note',' bankdraft   ','bankers\\' order  ',' travellers cheque.','','','c','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(82,'A type of credit offered by both commercial and merchant banks in Nigeria is ','trade credit','line of credit ','discounting facility ','overdraft.','','','d','','utme','2005',122,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(83,'A major function of a chamber of commerce is',' increasing productivity','promoting both home and foreign trade','promoting trade in a particular line',' maximizing profit.','','','b','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(84,'Which of the middlemen in the channel of distribution has title to the goods he distributes?','The merchant wholesaler ','The agent','the limited wholesaler ','The retailer','','','a','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(85,'Which of the following confirms the accuracy of the duty charged on imported goods?',' An indent ','Consular invoice',' Consignment note  ','Shipping note.','','','b','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(86,'The association that comprises all types of businesses is referred to as',' chamber of commerce   ',' trust','trade association   ',' cartel.','','','a','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(87,'Wholesalers can be divided into',' sales agents and brokers   ',' full service wholesalers and merchant wholesalers',' cooperative wholesale society and limited service wholesalers ',' merchant wholesalers and agent middlemen.','','','b','','utme','2005',124,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(88,'In Nigeria the ministry in charge of registering trade associations is that of ',' industries',' commerce ','culture and tourism ',' finance.','','','b','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(89,'Invisible imports consists of',' cement, shipping and consultancy services',' banking   drinks, insurance and technical services.   ','','tourism, banking, canned foods and cement.','','','c','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-06-03 19:33:54'),(90,'The bank that discounts bills of exchange is the ','central bank  ',' mortgage bank','development bank  ','commercial bank.','','','d','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(91,'The market where only indigenous firms are considered is the ','money market ',' second-tier securities market ',' local market ',' stock exchange.','','','b','','utme','2005',119,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(92,'From which of the following sources can partnerships increase their capital?',' Admission of a new partner',' Sale of shares   ','Discharge of a mortgage','Grants from relations.','','','a','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:33'),(93,'The excess of the assets over the liabilities of a business is called ','working capital','net worth ','capital employed ',' initial capital','','','a','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(94,'Initial public offering is undertaken through the','secondary securities market','first-tier securities market','primary securities market','second-tier securities market','','','b','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(95,'The major participants in the stock market when stock prices are rising generally are the','bulls ','registrars ','bears ','companies','','','a','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-06-21 12:45:22'),(96,'The fixed and current assets of a business are called ',' called-up capital    ','capital employed',' paid-up capital  ','authorized capital.','','','b','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(97,'To increase the supply of money in a country, the central bank has to ','reduce cash ratio',' sell securities in the open market',' call on special deposits ',' raise cash ratio.','','','a','','utme','2005',111,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(98,'A good financial instrument which serves as a  hedge against inflation is ','a bond  ','a share',' an option ',' a warrant.','','','a','','utme','2005',117,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(99,'One advantage of a crossed cheque is that it can','only be paid into a savings account','be cashed over the bank\\'s counter','only be paid into the owner\\'s account',' be cashed by anyone','','','c','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(100,'Given\\n    N\\n Sales    15 000\\n Opening stock  5 600\\n Purchases   9 700\\n Closing stock  4 400\\n Gross profit  4 500\\n Net profit   2 000\\nFrom the data above, calculate the rate of turnover \\n',' 3.50 times ','3.00 times ',' 2.00 times ',' 2.18 times.','','','d','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-06-28 23:59:18'),(101,'question','optiona','optionb','optionc','optiond','','image','answer','solution','utme','examye',47,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:34'),(102,'Tourism can be classified as ',' tangible import',' intangible import',' visible export ','invisible export','','','d','','utme','2006',86,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:04'),(103,'The input, output and central processing units are the basic components of a computer\\'s','memory ',' printer ',' hardware ',' software','','','c','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-05 16:27:05'),(104,'An employer insures against his employees\\' dishonesty by taking up  ','fidelity guarantee insurance   ',' accident insurance   ','group life assurance  ','endowment policy.','','','a','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-06-07 21:43:49'),(105,'Payment made to the insured by the insurer outside its legal obligation is ','premium paid',' exgratia payment ','surrender value',' sum assured.','','','b','','utme','2006',89,'Admin','0000-00-00 00:00:00','2020-06-17 12:38:35'),(106,'An important social reason for development tourism in Nigeria is the  ','promotion of culture interaction   ',' provision of job opportunities','improvement of her balance of payments','encouragement of international relations.','','','a','','utme','2006',87,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:57'),(107,'The mode of transportation that conveys a limited variety of products through fixed laid routes is','waterways  ','Broad ','rail  ','pipeline.','','','d','','utme','2006',89,'Admin','0000-00-00 00:00:00','2020-06-07 13:28:50'),(108,'A computer that can be used in weather forecast is ','  a hybrid computer ',' an analog computer','a mainframe computer ',' a digital computer.','','','d','','utme','2006',96,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:00'),(109,'The setting of objectives for an organization and determining how to accomplish them is ','social responsibility  ','planning  ','organizing',' decision-making.','','','b','','utme','2006',95,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(110,'An aspect of marketing that stimulates buying by providing free gifts is ',' advertising  ',' personal selling ','publicity ',' sales promotion,','','','d','','utme','2006',89,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(111,'The limit of functions, activities and personnel that a supervisor can effectively manage  in a business organization  is  ','spun of control ',' delegation of authority ','chain of command ',' authority and responsibility','','','a','','utme','2006',113,'Admin','0000-00-00 00:00:00','2020-07-06 19:29:39'),(112,'A seller attracts and retains patronage by',' enhancing public relations ',' enhancing sales promotion  ','  rendering pre-sales service',' rendering customer service.','','','d','','utme','2006',85,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:46'),(113,'A bond which attracts only interest but leaves the capital unpaid is referred to as','a long-term loan','a development bond ',' a redeemable bond','  an irredeemable bond.','','','d','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:38'),(114,'A public company has 2 000 000 ordinary shares of 50k each and offers 50% for subscription at N2 per share. If the shares were fully subscribed, calculate the issued capital.','  N4 000 000     ',' N2 000 000','N1 000 000     ','  N500 000.','','','b','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-06-21 12:45:34'),(115,'The main requirement for admission to the second-tier securities market is the ','provision of a three-year trading record   ','disclosure of all trading activities   ',' creation of a good atmosphere for growth and development   ','guaranteeing of dividends to shareholders.','','','b','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:12'),(116,'What is the capital employed?','N200 000','N340 000','N170 000','N300 000','','','d','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:30'),(117,'Which of the following is a development bank in Nigeria?','Union Bank Plc   ','First Bank Plc','First City Monument Bank ','Federal Mortgage Bank.','','','d','','utme','2006',98,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:24'),(118,'Trading on the stock exchange in anticipation of  price change in the market value of shares is','speculation  ','forecasting ','expectation','projection.','','','a','','utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(119,'A financial institution which uses its capital strength to acquire controlling interests in other firms can be regarded as a','subsidiary company','holding company ','trust   ','cartel.','','','b','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:22'),(120,'A current account is beneficial to its holder as','cheques can be issued to anybody','customers cannot withdraw frequently','it is only the holder that can make withdrawals','it allows customers the use of passbooks.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(121,'The conversion of raw materials into finished products creates ','form utility ','marginal utility','place utility ','time utility.','','','a','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:11'),(122,'The factor which critically determines the choice of occupation is ','training  ','skill ','interest','aptitude.','','','c','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-05-29 19:55:10'),(123,'Capital to a business is technically  ','an expense','a liability ','  an asset ','a profit.','','','c','','utme','2006',98,'Admin','0000-00-00 00:00:00','2020-04-28 16:20:30'),(124,'I. Wholesaling  II. Fishing  III. Canning IV. Retailing  The sequence in which the occupational activities above are performed is','Ill, II, I and IV     ','Ill, I, IV and II','I, II, III and IV      ','II, III, I and IV.','','','d','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:50'),(125,'The development of commerce resulted from','trading ','competition ','importation','specialization.','','','a','','utme','2006',90,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:44'),(126,'The difference between a private and public limited liability company is that the former','is unable to offer shares to the public','is unable to declare and pay dividend','has a higher number of shareholders','pays higher salaries to its managers.','','','a','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:38'),(127,'Materials used for further production of goods and  services are known as ','export goods','intermediate goods ','capital goods','  consumer goods.','','','c','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-02 19:24:00'),(128,'A liquidator\\'s fee is to be charged to the','realization account  ','trading account','revaluation account ','reconstruction account.','','','a','','utme','2006',95,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:06'),(129,'The safety and quality of products are the social responsibility of ','the Standards Organization of Nigeria  ','the Manufacturers Association of Nigeria','the Corporate Affairs Commission','business organizations.','','','a','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:53'),(130,'A   feature   common   to   privatization   and commercialization is  ','profit-making    ','credit sales ','market expansion ','price increases.','','','a','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:22'),(131,'A protection right which can be reviewed or renewed after seven years is known as ','patent','design ','registration name ','trade mark','','','a','','utme','2006',87,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(132,'The headquarters of the Lake Chad Basin Commission is in ','Niamey ','N\\'Djamena','Abuja ','Lagos.','','','b','','utme','2006',87,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(133,'In Nigeria, the main source of pollution is','domestic waste   ','organic waste','gas flaring   ','industrial waste.','','','d','','utme','2006',85,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:22'),(134,'‘Safeguarding the health of the nation\\' is the slogan used by ','NDLEA ','NHIS ','NAFDAC ','EPI.','','','c','','utme','2006',90,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:30'),(135,'When one person approves an act previously done by another in the former\\'s name without authority, this is known as   ','ratification ','estoppels','illegality ','misrepresentation.','','','b','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-06-02 21:15:31'),(136,'The members of ECOWAS include',' Nigeria, Chad, Gabon and Cape Verde','  Burkina Faso, Nigeria, Niger and Mauritania','Guinea, Mali, Cameroon and Nigeria','Togo, Niger, Nigeria and Ghana.','','','d','','utme','2006',89,'Admin','0000-00-00 00:00:00','2020-06-14 23:22:42'),(137,'The most important advantage of privatization is the enhancement of ','liquidity ','accountability','profitability  ','efficiency.','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:28'),(138,'A trade association consists of members engaged in the same trade while a chamber of commerce is','highly regulated by a government agency','not restricted on a particular industry','made up of members that are registered',' made up of firms in the banking industry.','','','b','','utme','2006',85,'Admin','0000-00-00 00:00:00','2020-06-07 20:31:17'),(139,'Hire purchase is beneficial to the seller because',' it enhances his living standard ','it increases his turnover ','people pay instalmentally',' of the patronage he enjoys.','','','b','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-05-30 18:05:44'),(140,'Consumerism aims at protecting the consumer from','harmful products  ','drug addiction','smoking cigarettes ','alcohol consumption. ','','','a','','utme','2006',89,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(141,'The major types of warehouses are ','manufacturer, bonded, departmental and private  ','bonded, public, cold room and private','manufacturer, bonded, public and departmental','wholesaler, manufacturer, public and bonded.','','','d','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-06-10 01:20:00'),(142,'The Customs and Excise Department is responsible for the collection of','royalties ','tariffs','taxes ','charges.','','','b','','utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:14'),(143,'A shop which consists of many stores trading under a single roof and which stocks varieties of gods with each unit having its own head is a ','multiple shop  ','supermarket ','superstore','departmental store.','','','d','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-06-07 23:48:24'),(144,'An objective of the farmers\\' association is to','ensure that the prices of goods are fair and reasonable  ','correct the imbalance between consumers and producers ','improve the methods of selling and advertising   ','provide a stable market outlet for farm inputs,','','','a','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(145,'The documents used in the purchase and sale of goods which contain other terms of trade are','debit note and credit note ','delivery note and advice not   ','invoice and order      ','quotation and invoice.','','','c','','utme','2006',86,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:58'),(146,'In international trade, exchanging goods for other goods and services purchased instead of paying in foreign currency is known as ','countertrade','balance of trade ','balance of payments','terms of trade.','','','a','','utme','2006',81,'Admin','0000-00-00 00:00:00','2020-06-17 12:38:34'),(147,'The role of a wholesaler in the channel of distribution is to    ','produce goods in large quantities and sell in small quantities ','buy goods directly from the manufacturers','buy good in large quantities and sell in small quantities','sell goods directly to the consumers ','','','c','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-06-17 20:42:21'),(148,'Foreign trade also involves ','providing services for other countries    ','specialisation and the exchange of goods in a country   ','buying and selling within a country ','the exchange of goods and services between firms. ','','','a','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:46'),(149,'Consumers require protection against exploitation to ensure ','adequate consumer awareness','availability of product variety','the sale of quality products','increased aggregate demand.','','','c','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:48'),(150,'The business environment that takes into cognizance the age distribution, ethnic mix and educational level of the consumer is','demographic environment','economic environment','cultural environment','natural environment.','','','a','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:17'),(151,'An agent who takes title to goods and has authority  to buy and sell on behalf of another is','a jobber   ','a broker  ','a factor','an auctioneer.','','','c','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-07 21:24:30'),(152,'Citizens are against privatisation mainly because of ','the rationalization of organizations','increased prices of goods and services','the likelihood of monopoly','ineffective management.','','','b','','utme','2007',55,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:44'),(153,'The major achievement of ECOWAS is','the expansion of regional trade','the emergence of a monetary union','infrastructure! development in member countries','mobility of labour among member countries.','','','a','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(154,'An announcement of a person\\'s willingness to enter into a contract is referred to as ','a proxy','an offer ','a consideration ','an acceptance.','','','b','','utme','2007',63,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(155,'The macro-environmental forces and trends which are a constraint on business operations are  referred to as  ','technological factors','economic factors   ','external factors ','internal factors.','','','c','','utme','2007',56,'Admin','0000-00-00 00:00:00','2020-06-11 19:03:43'),(156,'Which of the following best describes inputs for any production activity?   ','Natural resources.',' Business resources.','Human resources.','Material resources.','','','a','','utme','2007',63,'Admin','0000-00-00 00:00:00','2020-06-18 06:47:29'),(157,'Personal selling is most effective in marketing industrial goods because it involves','recognition and attachment to customers','personal interaction and information gathering','demonstrations and product acceptability','after-sales services and product demonstrations.','','','b','','utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-01 15:33:05'),(158,'The controllable variables that a firm uses to achieve its marketing objectives are called','marketing principles ','marketing mix','marketing concepts','marketing functions.','','','c','','utme','2007',59,'Admin','0000-00-00 00:00:00','2020-05-28 21:13:25'),(159,'Public relations and advertising are similar in terms of','communicating product information','customer education ','the mode of operation','creating a favourable attitude.','','','a','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:49'),(160,'A major function of an entrepreneur is','decision-making ','encouraging competition','human-resource training','motivating employees.','','','a','','utme','2007',63,'Admin','0000-00-00 00:00:00','2020-06-07 15:26:41'),(161,'A Memorandum of Association is applicable to a',' sole trader ','joint-stock company',' partnership   ',' public corporation.','','','b','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(162,'The sustainable growth of commerce is largely due to ','marketing   ','advertising','exchange ','branding.','','','c','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:59'),(163,'A major advantage of a cooperative society is that it ','gives members the opportunity to unite','draws members closer to government','promotes awareness among members','encourages thrift among members.','','','d','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-05 16:18:17'),(164,'The making of doors from timber planks is a type of ','manufacturing ','tertiary production','secondary production   ','primary production.','','','c','','utme','2007',57,'Admin','0000-00-00 00:00:00','2020-06-15 00:24:01'),(165,'Law-making is an example of ','indirect service','commercial occupation ','direct service','industrial occupation.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(166,'A document which advertises the shares of a company is known as a  ','memorandum of satisfaction   ','dividend warrant     ','deed','prospectus.','','','d','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-06-21 12:47:16'),(167,'The scope of economic activities can be enlarged by    ','transportation and trading   ','business and its promotion  ','trading and aids to trade','insurance and banking.','','','c','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-02 17:01:47'),(168,'The creation of utilities to satisfy human wants is referred to as   ','production  ','consumption','industrialization    ','occupation.','','','a','','utme','2007',56,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(169,'A major criticism of a cooperative society is','limited capital ','granting excessive loans to members   ','selling goods on credit to non- members    ','management incompetence.','','','d','','utme','2007',61,'Admin','0000-00-00 00:00:00','2020-07-05 16:27:05'),(170,'An economic activity which deals with natural resources is a form of  ','extraction','refining   ','construction ','manufacturing.','','','a','','utme','2007',66,'Admin','0000-00-00 00:00:00','2020-06-08 09:48:58'),(171,'The first stage in tourism planning is','assessing feedback from tourists','preparing a list of tourist attractions','creating recreational opportunities','building community support.','','','b','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:17'),(172,'An agreement by the insurer to compensate the insured for losses suffered is   ','policy','surrender value   ','caveat emptor ','indemnity.','','','d','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:10'),(173,'One of the functions of the Nigeria Ports Authority is the provision of  ','facilities to enhance the speedy loading and offloading of ','facilities to ensure that goods get to their destinations  ','shelter for operators of cargoes',' courier services to ensure speedy delivery.','','','a','','utme','2007',52,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(174,'The   World   Tourism   Organization   has   its headquarters in ','New York    ','Paris','Madrid     ','London.','','','a','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-06-07 21:59:23'),(175,'Digital computer is divided into ','analogue, hybrid and mini ','super, mainframe, mini and micro    ','mainframe, hybrid and micro','super, mainframe, micro and analogue.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:35'),(176,'A distinctive advantage of GSM is its ','mobility',' cost   ','stability   ','coverage.','','','a','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(177,'In the permanent storage device, DASD means','Data Access Storage Device','Data Access Systems Device','Direct Access Systems Device','Direct Access Storage Device.','','','d','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:07'),(178,'The major determinant of fire insurance premium is the ','type and structure of the property to be insured ','usefulness of the property to the owner','owner of the property to be insured','extent of fire damage anticipated.','','','a','','utme','2007',57,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(179,'The Internet is a system of telecommunications used for   ','communicating long-distance messages ','sending and receiving text messages','sending electronic messages .','communicating messages through telegrams.','','','c','','utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(180,'A written  agreement for  hiring  a  ship for transporting goods is a ','consular invoice','bill of lading ','charter party ','certificate of origin.','','','c','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:18'),(181,'The major function of a trade association is that it','liaises with foreign trade associations','helps to promote foreign trade','facilitates members\\' access to credit facilities','helps to promote research on behalf of members.','','','d','','utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(182,'A major setback of international trade is','inadequate exports','economic sanctions','devaluation of currency','exchange rate appreciation.','','','b','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:30'),(183,'Which of the following requires payment into the payee\\'s account?   ','Crossed cheque.','Traveller’s cheque.    ',' Open cheque.','Certified cheque.','','','a','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(184,'The traditional way of paying cooperative dividend is to distribute profit in proportion to members\\'','subscriptions  ','total savings','volume of purchases   ','contributions.','','','c','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:50'),(185,'The abbreviation C & F indicates that the','production cost excludes the cost of carriage','selling price includes the cost of carriage','cost of production includes delivery charges','cost price includes the cost of carriage.','','','b','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-06-01 16:22:10'),(186,'The sale of foreign investment and gold reserves can be used to ','correct adverse balance of trade','increase invisible imports','correct adverse balance of payments','correct a budget deficit.','','','a','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(187,'A share premium is an example of','issued capital ','capital stock ','equity capital','capital reserve.','','','d','','utme','2007',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(188,'A major benefit a debtor can derive from using a credit facility is ','better service  ','goodwill','convenience    ','control.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-06-08 12:12:26'),(189,'The function  of money that facilitates the comparison of the quality of goods as a basis of exchange is the   ','unit of account','measure of value ','store of value','medium of exchange','','','b','','utme','2007',62,'Admin','0000-00-00 00:00:00','2020-06-21 12:48:00'),(190,'The difference between the buying and selling price of shares is known as   ','brokerage','margin   ','jobber\\'s turn   ','gross profit.','','','c','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:44'),(191,'Which of the following is a risk-free security?','Preference share.   ','Ordinary share.','Treasury bill.    ','Debenture.','','','c','','utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-05 14:08:23'),(192,'The central bank controls the quantity of money in circulation through  ','open-market operations','decreasing the tax rate ','issuing new currencies    ','increasing the tax rate.','','','d','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-07 16:25:04'),(193,'The selling of new shares to existing shareholders is referred to as ','public issue ','offer for sale','rights issue  ','bonus issue.','','','c','','utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(194,'A new company requiring a large amount of equity finance may source funds from the','capital market   ','central bank','money market    ','commercial banks.','','','d','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(195,'A credit instrument which also serves as a legal tender is   ','cheque    ','paper money','voucher   ','money order.','','','b','','utme','2007',59,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(196,'The body regulating the sale and purchase of shares in Nigeria is the ',' Corporate   Affairs Commission   ','Securities   and   Exchange Commission    ','Securities   and   Exchange Tribunal     ','Nigerian Stock Exchange.','','','b','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(197,'An aspect of commerce that facilitates the distribution of products is ','transportation ','advertising  ','branding ','trading ','','','a','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(198,'An activity that involves derivation of raw materials from land and sea is ','construction ','farming ','agriculture ','extraction ','','','d','','utme','2008',72,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:08'),(199,'The art of soap-making is an example of ','Primary occupation ','Secondary occupation ','Tertiary occupation ','Construction occupation ','','','b','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(200,'Given: I. shoe marker    II. Policeman     III. Fisherman    IV. Gardener    V. Broker .    The persons engaged in primary occupation are \\n','I, III and IV ','III and IV','III and V','I , II and V','','','b','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-06 19:29:39'),(201,'The process of changing the form of a raw material is known as  ','fabrication ','extraction ','conversion ','production ','','','d','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(202,'In the long run, all factors of production are ','fixed ','variable ','marginal ','constant ','','','b','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(203,'The quality and quantity of production mostly depend  on the ','effectiveness of factors ','availability of factors','level of education of entrepreneurs ','level of cooperation among workers','','','a','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(204,'The promotion of savings culture is a feature of a ','trade association ','consumers  cooperative society ','thrift cooperative society ','business association ','','','c','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(205,'A document which gives a legal status to a company is the certificate of ','incorporation ','trading ','commencement of business','business registration','','','a','','utme','2008',64,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(206,'A proposed company may not be registered if ','the name conflicts with that of another ','it does not put ‘limited’ after its proposed name ','it has no paid-up capital ','it has no asset of its own.','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-06-28 21:35:02'),(207,'An example of a cartel is ','OPEC','ECOWAS ','AU ','EU','','','a','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(208,'The cheapest source of funds available to a company is through ','the sale of shares','retained profits ','the sale of bonds','lease financing','','','b','','utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(209,'The components of capital employed in a business are ','owners’ equity and long-term debts ','total assets and current liabilities ','share capital and long-term debts','share capital and current liabilities.','','','b','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(210,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. What is the company’s authorized share capital?','N2500 000','N4000 0000','N5000 000','N7500 000','','','a','','utme','2008',58,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(211,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. Determine the company’s reserve share capital ','N2500 000','N1000 000','N1500 000','N2000 000','','','b','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(212,'In order to prevent liquidity problems in commercial banks, the central bank uses.','moral suasion  ','fiscal policy','reserve ratio','taxation ','','','c','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(213,'An account maintained with a commercial bank for the purpose of foreign exchange transaction is the ','foreign account ','International account ','domiciliary account ','foreign reserves account ','','','c','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(214,'A trader who gives credit stands to enjoy ','higher profit ','cash discount ','increased sales ','trade discount','','','c','','utme','2008',70,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(215,'A person who buys new issues with a view of reselling at a higher price in the near future is referred to as a ','bull ','bear ','dealer ','stage','','','a','','utme','2008',73,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(216,'A source of capital that has both elements of debt and equity is a ','debenture ','warrant ','loan ','share','','','d','','utme','2008',87,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(217,'A type of retail trade where a group of similar states which is owned by a firm operates in different locations is a ','conglomerate ','chain store','departmental store ','supermarket ','','','b','','utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-06 19:29:39'),(218,'A warehouse which is used to store goods whose customs duty is not yet paid is a ','wholesale warehouse','bonded warehouse','public warehouse','branded warehouse','','','b','','utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:24'),(219,'Balance of payments is made up of ','visible  and current  items ','invisible and capital items ','current and capital items','visible and invisible items','','','d','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(220,'Most of the barriers to international trade have been eliminated through ','diversification ','globalization ','commercialization ','privatization ','','','b','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(221,'A document sent by a seller to inform a buyer about the prices of goods is the ','catalogue ','price list','credit note','proforma invoice ','','','b','','utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(222,'Which ‘FOB’ is written on a document, it implies that the buyer bears the ','cost of goods and advert ','loading cost and insurance ','insurance and transport costs','transport and communication costs','','','c','','utme','2008',62,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(223,'A crossed cheque with the inscription ‘not negotiable’ must be paid into the ','current account of the drawer ','current account of the payee of the drawer ','savings account of the payee','fixed account of the payee','','','b','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(224,'The pooling of business information for the benefit of members is a major function of a ','pressure group ','trade association ','cultural group ','trade union ','','','b','','utme','2008',64,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(225,'An association to which all chambers of commerce in Nigeria are affiliated is the ','Nigeria Labour Congress ','National Association of Chambers of Commerce, Industry, Mines and Agriculture','Nigeria Association of Chambers of Commerce, Industry, Mines and Agriculture ','Nigeria Stock Exchange ','','','c','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(226,'The resources which are necessary for business development include ','manufacturing, materials, mentors and money ','merchant, materials, mentors and money','man, money, materials and machines','machines, manufacturing, money and materials','','','c','','utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(227,'The four Ps of marketing are','product, place, process and promotion ','price, product, property and place','price, product, place and promotion ','price, production, place and property ','','','c','','utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(228,'Personal selling is used for the purpose of ','establishing the company ','providing information ','creating product awareness','launchers ','','','c','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(229,'Ships used for international transport are ','trawlers ','yachts','ocean liners ','launchers ','','','c','','utme','2008',60,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(230,'A function generally performed by authorities of both the air and seaports is the ','maintenance of warehouses where goods can be stored','provision of facilities for loading and unloading  of cargoes ','maintenance of security and order at the ports.','provision of facilities for landing and refueling at the ports.','','','d','','utme','2008',64,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(231,'A major factor hindering effective communication process is ','climatic condition ','social unrest ','distance ','noise ','','','d','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(232,'The fear of many communities concerning tourism development is the ','influence of foreign culture ','fear of disease transmission ','fear of pollution ','religious intolerance ','','','a','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(233,'The development of tourism in Nigeria  will enhance ','agriculture ','revenue generation ','export ','labour mobility ','','','b','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(234,'A historical building is a feature of ','cultural tourism ','industrial tourism ','agricultural  tourism','D. ecological   tourism','','','a','','utme','2008',72,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(235,'The sum of money paid by a policy-holder to an insurer is referred to as ','interest ','premium ','gross profit ','sales revenue','','','b','','utme','2008',60,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(236,'An example of a non-insurable risk is ','burglary ','speculation ','fire ','accident ','','','b','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(237,'The coordinating section of the central processing unit that manages the flow of data is the ','arithmetic logic unit','control unit','magnetic unit','register','','','b','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-06-26 07:25:21'),(238,'An agreement between two parties which is enforceable by law is a ','promise ','warranty ','contract ','condition ','','','c','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(239,'The implied provisions in every sale of goods as contained in the ales of Goods Act of 1893 are conditions and ','consideration ','sureties ','warranties ','guaranties ','','','c','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(240,'When an employee incurs expenses while executing his normal duty, the employer is responsible for his ','safety ','family’s security ','family’s welfare ','indemnification ','','','d','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(241,'The body charged with divesting government interests in public enterprises is ','SON','NPC','BPE ','NDE','','','c','','utme','2008',72,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(242,'The practice whereby government relinquishes its ownership interest in a public enterprises is ','commercialization ','indigenization ','privatization ','nationalization ','','','c','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(243,'A factor is a business environment which increases the rate of product obsolescence is ','technology ','political','legal ','economic','','','a','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(244,'Which of the following is a form of social responsibility of a business? ','selling goods  at cheaper prices ','using the best technology available ','maintaining  tidy and safe environment ','Meeting contractor’s obligation ','','','c','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-06 19:29:39'),(245,'A computer component that decodes and interprets instructions and also directs program implementation  is ','memory unit','Central processing unit ','control unit ','system unit','','','b','','utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-28 00:18:00'),(246,'Which software program can be used to generate ','MS Word ','Database ','MS Excel','Adobe','','','c','','utme','2008',60,'Admin','0000-00-00 00:00:00','2020-07-06 19:29:39'),(247,'The central focus of commercial activities is ','pricing   ','advertising ','trading ','marketing ','','','c','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(248,'An aid to trade associated with communications is ','banking ','transportation','warehousing ','insurance ','','','b','','utme','2009',72,'Admin','0000-00-00 00:00:00','2020-06-06 00:46:01'),(249,'The services of a textile worker are an example of ','extractive activity ','commercial activity ','manufacturing ','construction ','','','c','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:45'),(250,'Resources harnessed in certain proportion to create goods and services are ','factors of production ','technology and labour ','land and entrepreneur ','raw materials ','','','a','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:19'),(251,'Primary production is associated with ','banking ','manufacturing ','agriculture ','construction ','','','c','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-17 21:27:38'),(252,'The major components of modern retailing include ','branding, doorstep  selling and customer stimulation ','branding, sales promotion and mail order ','chain stores, customer stimulation and doorstep selling ','branding, supermarkets and after-sales service','','','d','','utme','2009',59,'Admin','0000-00-00 00:00:00','2020-06-09 05:44:47'),(253,'A chain store usually combines the features of ','multiple shops and departmental stores ','hypermarkets and stalls ','multiple shops and hypermarkets','mail order business and multiple shops','','','a','','utme','2009',71,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:29'),(254,'One of the functions of the wholesalers is to ','forecast prices','reduce prices of goods','political unrest ','analyse sales periodically ','','','c','','utme','2009',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:15'),(255,'An artificial barrier to international trade is ','political unrest  ','culture of the people','unit of measurement ','custom duties','','','d','','utme','2009',58,'Admin','0000-00-00 00:00:00','2020-06-21 12:44:38'),(256,'The most commonly used commercial documents are ','order notes, debit notes, invoices and quotations ','letters of enquiry, consignment notes, receipts and invoices ','credit notes, statement of accounts, dispatch order and bills ','balance sheet, receipts, invoices and manifests.','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(257,'The term free on board means that the price includes ','costs and insurance only ','costs and freight only','freight and insurance only','costs, insurance and freight ','','','d','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:09'),(258,'If a buyer is given 12.5% discount on N50000 worth of goods, how much will he pay?','N56 250','N43 750','N43 250','N6250','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-06-14 23:22:42'),(259,'A cheque which a bank draws on its own funds is a','bankdraft ','cashier’s cheque ','bank cheque ','crossed cheque','','','a','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:55'),(260,'Billboards and posters are forms of ','electronic media ','print media','outdoor media ','window display media','','','c','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-19 01:07:50'),(261,'A collective term for advertising, personal selling and publicity is ','exhibition ','promotion ','trade fair ','mechanizing','','','a','','utme','2009',53,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:21'),(262,'The central bank differs from commercial banks  because it ','renders service to customers','carriers but foreign exchange transactions ','issues currencies ','discounts bills','','','c','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(263,'One of he facilities enjoyed by a current account holder is ','a dividend  ','a bonus','an overdraft ','interest on deposits','','','c','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-05 19:44:36'),(264,'In which of the following will be number of words used determine the cost of the message sent?','telephone','telegram ','e-mail','telex','','','b','','utme','2009',52,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:24'),(265,'The transmission of telephone services from one country to another is facilitated by ','communication satellite ','international facility ','interconnectivity ','internet services','','','a','','utme','2009',65,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:32'),(266,'The principle of insurance which entitles an insurance company to take any advantage due to the insured after full indemnity is ','contribution  ','subrogation ','proximate cause ','utmost good faith ','','','b','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(267,'A risk that can be estimated and calculated to be compensated is ','a delivery risk ','an insurable risk','a credit risk ','a systematic risk ','','','b','','utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-21 12:44:43'),(268,'The most important reason for the existence of insurance business is to ','prevent the occurrence of any loss','spread losses to all covered participants','provide for the replacement of facilities','encourage individuals to save','','','b','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(269,'One major advantage of transportation to a business is to','extend the firm’s market coverage','ensure that goods are produced faster','procure raw materials cheaply ','ensure the quality of products','','','a','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-06-07 15:26:41'),(270,'Warehousing is important to manufacturers because it helps to ','improve the quality of goods ','produce goods in advance','meet the demand of customers ','determine input requirements','','','b','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:42'),(271,'One of the major problems of a sole proprietor is sourcing for ','raw materials ','labour ','machineries ','funds','','','d','','utme','2009',66,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(272,'In a public limited liability company, planning is carried out by ','the chairman of the board ','the board of directors ','shareholders','employees','','','b','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(273,'Partnerships are most effective where ','the partners are family friends ','professionals are involved','members can easily raise enough capital ','government regulations are favourable ','','','b','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-06-04 16:16:05'),(274,'The type of partnership in which all partners are jointly liable in bearing risk is ','limited partnership ','partnership-at will','ordinary partnership ','industrial partnership ','','','c','','utme','2009',67,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:05'),(275,'The financial instrument that entitles the holder to receive dividend and capital gains is a ','share  ','bond ','bill of exchange ','treasury bill ','','','a','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-07 21:43:49'),(276,'The circulating capital of a business enterprise is classified into ','cash, work-in progress and debtors ','cash, vehicles, land and buildings ','debtors, stock of raw materials and fittings ','pre-payments, debtors and equipment.','','','a','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(277,'If a firm has a turnover of N50 000 and the cost of goods sold is N40 000, what is the percentage of gross profit on sale? ','30.50%','20.50%','20.00%','D.10.0%','','','c','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(278,'A body established to protect the interest of members against the exploitation of retail traders and manufacturers is the ','wholesalers association ','consumer’s  association ','government agency ','workers’ union ','','','b','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:06'),(279,'The manufactures’ Association of Nigeria is an example of a ','labour union ','pressure group ','conglomerate ','cartel','','','b','','utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-03 17:59:32'),(280,'The characteristic which ensures that money is free from forgery is its ','legality ','durability ','recognition ','credibility ','','','b','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-03 17:59:32'),(281,'The major dealers on the stock market are the ','agents ','jobbers ','investors ','brokers','','','d','','utme','2009',63,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:37'),(282,'The daily official publications of the Nigerian Stock Exchange give detailed information on the ','changes in the official rules set by the market ','method of transactions agreed upon by members ','participation of members in a day ','changes in the price of securities','','','c','','utme','2009',67,'Admin','0000-00-00 00:00:00','2020-07-05 19:44:36'),(283,'The function which ensures that set objectives are attained by an organization is ','planning ','directing ','staffing ','controlling ','','','d','','utme','2009',69,'Admin','0000-00-00 00:00:00','2020-06-17 21:05:20'),(284,'An organizational structure that is military in nature is the ','line structure ','staff structure ','line and staff structure ','functional structure ','','','d','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:59'),(285,'The efficiency of an organization is enhanced by ','government assistance ','the host community ','customer support ','skilled manpower ','','','d','','utme','2009',53,'Admin','0000-00-00 00:00:00','2020-06-21 12:51:53'),(286,'The concept which focuses on consumers in decision-making is ','selling concept ','marketing concept ','product concept ','production concept ','','','b','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-05-28 21:17:45'),(287,'Market skimming is an example of ','market penetration ','Sales promotion ','pricing policy','advertising ','','','a','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(288,'The most important attributes in a sale of goods contract are ','offer and consideration','price and goods ','offer and acceptance ','demand and supply','','','c','','utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(289,'Unresolved disputes between the employer and employees are usually referred to the ','code of conduct bureau','personnel unit ','disciplinary committee','industrial arbitration tribunal ','','','d','','utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-05 20:20:17'),(290,'The process of eliminating a virus from a computer program is ','programming ','debugging ','formatting ','looping','','','c','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-06-07 15:56:17'),(291,'The primary memory component of a computer is the ','cache ','console ','assemblers','compilers ','','','b','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(292,'A customer with XYZ Plc sent money through his account to his sister’s  account in another branch. This is an example of ','e-business','e –commerce ','e-finance ','D e-banking ','','','d','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-21 12:49:34'),(293,'The economic environment of a business is concerned with ','climatic conditions','changing values ','the growth rate','the interest rate','','','c','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-06-02 20:36:27'),(294,'A firm that disposes its wastes properly is discharging its ','community responsibility ','environmental responsibility ','civic responsibility ','social responsibility ','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:10'),(295,'The wealth of a nation depend on the volume of its','bilateral trade activities','commercial activities','multilateral trade activities','stock market','','','b','','utme','2010',78,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(296,'Which of the following can be used to differentiate skilled and unskilled lab our? ','education and training','available resources ','level of commitment','salaries and wages','','','a','','utme','2010',86,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(297,'A doctor who attends to patients at home after his official duty is','A community development worker','a direct service worker','an indirect service worker ','a direct and an indirect worker','','','b','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(298,'Manufacturing and construction activities are class8ified under','Primary production','Tertiary production','secondary production','direct production','','','c','','utme','2010',83,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(299,'The reward of rent, wages, interest and profits accrue from','capitals, labour, land, and entrepreneur respectively','land entrepreneur, labour and capital respectively','land, labour, capital, and entrepreneur respectively','labour, entrepreneur, land and capital respectively.','','','c','','utme','2010',76,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(300,'The factor of production that is subject to depreciation is','capital ','land','labour','entrepreneur','','','a','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(301,'Division of labour ultimately leads to ','conservation','integration','specialization','repetition','','','c','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(302,'A worker who process rice is engaged in','constructive activity','commercial activity','extractive activity','Manufacturing activity','','','d','','utme','2010',73,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(303,'After- sales service is a function usually rendered by','a retailer','a wholesaler ','an agent ','an entrepreneur ','','','a','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(304,'A trend is retailing which enables consumers to have free access to different products is ','after sales service ','branding ','self-service','vending machine','','','c','','utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(305,'The activity which entails buying of goods in bulk and selling in small quantities to retailers is ','assembling ','wholesaling ','retailing ','merchandising ','','','b','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(306,'The comparison of a country’s visible and invisible exports and imports expressed in monetary term is ','balance of payment ','terms of trade','balance of trade','terms of payment ','','','c','','utme','2010',73,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(307,'The document that gives an importer a freehand to obtain goods from any manufacturer is ','a consular invoice ','a closed indent ','an open indent ','a freight note','','','c','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(308,'Entrepot trade usually occurs in ','exchanging goods within a nation ','exchanging goods among countries ','importing goods among countries ','exporting goods to be re-exported ','','','c','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(309,'The document issued to a port authority when goods are deposited is a ','dock landing account ','bill of sight ','bill of lading ','dock warrant ','','','d','','utme','2010',72,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(310,'The details of the goods required by the purchaser is outlined in ','a consular invoice ','an indent ','an invoice ','a certificate of origin ','','','c','','utme','2010',72,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(311,'Selling goods in foreign countries at prices below their marginal cost is ','dumping ','depreciation ','devaluation ','discounting ','','','a','','utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-05 20:20:17'),(312,'A process of creating more market for a product is through ','consumerism ','marketing ','advertising ','repositioning.','','','c','','utme','2010',84,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(313,'One of the merits of television as a medium of advertising is that it ','is prone to censorship ','is relatively cheap ','has more sensory stimulation ','has more network coverage','','','c','','utme','2010',71,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(314,'The best mode of ensuring that items posted get to the named addressed is through','recorded delivery ','registered mail','certificate of posting ','express mail','','','b','','utme','2010',83,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(315,'A businessman who undertakes the hull insurance policy is aiming at ','covering losses on damages to the cargo ','protecting injured crew in the ship ','averting payment of the freight ','covering damages to the body of the ship ','','','a','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(316,'An agent who brings a customer into business contact with his principal is known as ','a del credere agent ','an auctioneer','a factor','a broker','','','d','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(317,'A major hindrance to tourism growth in Nigeria is ','absence of genuine tour operators ','lack of tourism master plan ','inadequate tourist centres','non-compliance to immigration laws.','','','b','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(318,'The warehouse that is owned and controlled by the government is a ','wholesalers’ warehouse ','public warehouse ','state warehouse','manufacturers’ warehouse','','','b','','utme','2010',79,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(319,'One of the main features of a partnership is ','limited liability ','lack of corporate existence ','unlimited membership ','lack of mutual confidence','','','b','','utme','2010',70,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(320,'An arrangement by independent firms to share the market of their products on quota basis is referred to as  ','trust ','integration ','syndicate ','cartel','','','d','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(321,'An illegal arrangement by manufacturers to control the price or condition of sale of a product is ','ring ','factoring ','consortium ','merger','','','c','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(322,'A public company with an authorized capital of N60,000, issued 36,000 shraes at 150k each. What is its capital?','N60,000','N36,000','N54,000','N90,000','','','c','','utme','2010',61,'Admin','0000-00-00 00:00:00','2020-06-26 22:34:10'),(323,'One of the functions of NACCIMA is ','negotiating with labour unions in matters of wages and conditions of service','pooling of members’ resources for long-term investment ','disseminating information to members on matters relating to tariffs ','ensuring uniformity in labour matters and industrial relations.','','','d','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(324,'A characteristic of money which ensures that its value is not lost is ','homogeneity ','easy portability ','divisibility ','relative scarcity ','','','d','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(325,'The instrument used in the capital market is ','treasury bill ','bill of exchange ','stock ','debenture ','','','c','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(326,'A pre-requisite for admission into the second-tier securities Market is for a company to ','make 20% of its equity share available to he public for subscription ','have a minimum of 100 shareholders ','have a maximum of 100 shareholders ','make 10% of its equity share available to the public for subscription','','','d','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(327,'The tree components of staffing are ','recruitment, interview and appointment ','recruitment, test and placement ','recruitment, selection and appointment ','recruitment, selection and placement ','','','d','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(328,'Which of the following is a matter of personal preference on the part of a superior officer?','Unity of command ','span of control ','delegation of authority ','unity of direction','','','c','','utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(329,'The conversion of raw materials into finished goods leads to the creation of ','form utility ','product utility ','possession utility ','place utility ','','','a','','utme','2010',78,'Admin','0000-00-00 00:00:00','2020-06-28 23:10:13'),(330,'The main concern of marketing concept is to ','reduce the number of retail outlets ','identify consumer needs and satisfy them ','increase sales to meet consumer needs ','encourage division of labour.','','','b','','utme','2010',72,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(331,'The best pricing strategy for a company that produces warm clothing is ','target return pricing ','bid pricing ','variable pricing ','product line pricing ','','','d','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(332,'The deliberate and sustained efforts of an organization towards the creation of goodwill for its products and services is through ','Public relations ','advertising ','sales promotion ','rebranding ','','','a','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(333,'The label on a product such as ‘pampers’ is a type of ','trademark  ','branding ','packaging ','patent right','','','a','','utme','2010',83,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(334,'An opportunity to reject a binding contract at will by a third party is said to be a ','valid contract ','quasi contract ','voidable contract','conditional  contract','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(335,'An agency contract must involve ','a principal and a consumer','a principal  and a producer ','a principal and a third party ','a principal and a third party ','','','d','','utme','2010',80,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(336,'The difference between trademark and patent right is that the latter ','gives exclusive right to import a particular good ','is conferred by the government ','confers monopoly  on a product ','confers exclusive right to publish literary works.','','','c','','utme','2010',81,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(337,'Which of the following is a function of consumerism? ','Protecting consumers’ rights ','providing consumers’ choice','providing consumers’ needs','Making profiteering impossible','','','a','','utme','2010',78,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(338,'A printed copy of processed information from the computer is the ','soft copy ','file copy ','scanned copy ','hard copy ','','','d','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(339,'The central working system of a computer used for data processing is the ','memory unit ','monitor ','floppy disk drive ','hard drive','','','b','','utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(340,'The major problem confronting Cyber Café operators is ','Advanced fee fraud by clientele ','poor network coverage ','high operating costs ','copyright violations by clients','','','c','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(341,'A device that enables the downloading of information from the internet is the ','floppy drive ','compact disk ','modem ','blue tooth ','','','c','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(342,'In e-baking, ATM means ','authentic Teller Machine','Automatic Teller Machine ','All-purpose Teller Machine','Automated Teller Machine','','','d','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(343,'One way by which a business can discharge its social responsibility to its community is to ','hold monthly meetings of its customers','build houses for its executives ','award scholarship to staff children ','build public health centres.','','','d','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-06-29 11:30:32'),(344,'The most important function of commerce is in ','enhancing business relationships ','helping people to improve their profits ','facilitating exchange among individuals and firms','assisting trade through banking and insurance','','','c','','utme','2011',86,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(345,'The three main classifications of occupation are ','construction, trade and services ','manufacturing, industry and services ','farming, banking and trading  ','industry, commerce and services','','','d','','utme','2011',89,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(346,'An oil exploration company is engaged in ','tertiary production ','constructive occupation ','extractive occupation ','secondary production','','','c','','utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(347,'Services rendered to the public is provided by ','Government ','civil servants ','professionals ','domestic servants ','','','b','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(348,'The creation of goods and services to satisfy human wants is referred to as ','manufacturing ','commercialization ','Production ','entrepreneurship ','','','c','','utme','2011',86,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(349,'Which of the following is a limitation  of division of labour? ','decline in craftsmanship ','monotony of work ','reduction in output','reduction in labour force','','','d','','utme','2011',88,'Admin','0000-00-00 00:00:00','2020-06-30 13:21:59'),(350,'Resources obtained from the extractive sector that are transformed into finished products are examples of ','primary production ','tertiary production ','direct production ','secondary production.','','','a','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(351,'An individual that links the producer with the retailer is ','an agent ','a wholesaler ','an entrepreneur ','a principal ','','','b','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(352,'One of the functions of a retailer is the ','financing of production activities ','provision of credit facilities to relations ','provision of jobs for customers ','breaking of bulk','','','b','','utme','2011',82,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(353,'The main aim of selling directly to the consumers by manufacturers is to ','reduce transportation cost','make contact with individual consumers ','discourage the activities of middlemen ','maximize profit margin','','','c','','utme','2011',107,'Admin','0000-00-00 00:00:00','2020-07-05 19:44:36'),(354,'Balance of payment problems arise if a country’s ','exports is more than imports','imports is more than exports','currently is devaluated','Invisible exports is more than visible exports ','','','b','','utme','2011',85,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(355,'The three components of a country’s balance of payment are ','Current account, capital account and monetary movement account ','capital account, trade account and business record ','sales account, profit and loss account and capital account ','monetary movement account, trade account and ales ledger.','','','a','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-03 15:33:33'),(356,'A document that indicates obligation that is transferable by delivery and endorsement is a ','bill of lading ','bill of exchange ','documentary evidence ','negotiable instrument ','','','a','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-06-21 12:52:16'),(357,'The document which can be exchanged for a bill of lading is ','freight note ','mate receipt ','export invoice ','ship report','','','a','','utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-05 16:27:05'),(358,'The price quoted which includes the cost of insurance, freight and all delivery charges to the importer’s warehouse is ','Free Alongside Ship','Franco ','Free on Board ','Free on Rail','','','c','','utme','2011',93,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(359,'The purchase of goods under the CWO system of payment implies that ','money must be enclosed when ordering ','payment must be made on delivery ','payment must be made on the spot.','cash must be paid on the spot ','','','b','','utme','2011',79,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:07'),(360,'The most effective but limited medium of advertising in Nigeria is ','billboard ','television ','newspaper ','radio ','','','a','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(361,'A cheque that has been drawn but not presented for payment can still be honoured ','within 6 months ','after 9 months ','within 9 months ','after 6 months','','','a','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-05-30 18:05:44'),(362,'The major source of income to commercial banks is ','loans ','deposits ','interests ','overdrafts ','','','b','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-06-26 10:59:33'),(363,'An ancillary to trade that easily links suppliers with consumers is ','tourism  ','banking ','communication ','transportation','','','c','','utme','2011',77,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(364,'Mr. Lawal insured his warehouse against burglary but it was later gutted buy fire. This implies that ','the loss should be borne by the insurer ','Mr. Lawal is liable  only for half of the estimated loss ','the insurer should make a consolation payment for the loss','the loss should be borne by Mr. Lawal','','','d','','utme','2011',80,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(365,'The agreement of insurers to spread risks  among themselves is a major feature of ','reinsurance','life assurance ','underwriter','marine insurance ','','','a','','utme','2011',83,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(366,'Inbound tourism occurs when ','non-residents of a country travel to other countries ','residents of a country travel to other countries ','non-residents of a country travel countries ','residents of a country travel within it','','','d','','utme','2011',97,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(367,'One of the major disadvantages of pipeline transportation is its ','high cost of construction ','limitation in scope ','vulnerability to climatic changes ','high maintenance cost ','','','a','','utme','2011',93,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(368,'The business organization that can effectively combine management with control is ','private limited liability company ','sole proprietorship ','public limited liability company ','co-operative society ','','','b','','utme','2011',88,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(369,'When two or more companies agree to execute a project too large for one to handle, this is referred to as ','an amalgamation ','a cartel ','a merger ','a consortium ','','','d','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(370,'In the event of voluntary liquidation, the appointment of a liquidator is the responsibility of the ','directors ','creditors ','promoters ','court ','','','a','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(371,'A source of business financing which involves pledging of a specific asset is ','bond ','mortgage ','debentures ','loan','','','b','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(372,'An example of a trade association is ','ALGON','NLC','NURTW','NULGE','','','a','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-07-06 19:29:39'),(373,'A broker is an agent who links a potential investor with ','a shareholder who wants to register a company ','Other members of the exchange who want to trade ','government official on the exchange ','a quoted company ','','','d','','utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-26 10:59:30'),(374,'Second-tier securities Market differs from the first-tier securities Market in that the former is ','Highly restricted ','regulated by the SEC','regulated by the NIPC','Less restricted ','','','a','','utme','2011',80,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(375,'A communication process providing information for decision-making in an organization is the ','Management Information System','Transmission Control Protocol ','Information Retrieval System ','File Transfer Protocol.','','','c','','utme','2011',82,'Admin','0000-00-00 00:00:00','2020-06-21 12:50:08'),(376,'The managerial ability of a supervisor in an organization may be underutilized if the ','morale of the supervised is high ','span of control is wide','span of control is narrow','morale of the supervised is low','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(377,'The arrangement and interrelationship of the various components and positions of a business is referred to as ','organizational structure ','clarity of objective ','unity of direction ','line structure','','','a','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(378,'The variety of goods and services which a company offers for sale is its ','place mix ','promotion mix ','price mix','product mix','','','d','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(379,'Activities undertaken to create awareness for goods by conducting contests is ','marketing concept ','consumerism ','sales promotion ','marketing mix','','','c','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(380,'The slogan, a wonderful world,  used by a communication network is a form of ','product differentiation ','persuasive advertising ','publicity ','packaging ','','','b','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(381,'To make a simple contract valid, the intention must be ','legal and written ','legal and binding ','legal and attractive ','legal and harmonious ','','','b','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(382,'The major parties to an agency relationship are the ','principal and the creditor ','bailee and the bailor','principal and the agent','shareholder and the creditor ','','','c','','utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(383,'One of the obligations of an employer to an employee is to ','Indemnify  him against liabilities incurred on duty ','award scholarship to his children ','terminate his appointment  without prior notice','indemnify him against injuries caused through negligence ','','','a','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(384,'The body charged with the responsibility of regulating foods and drugs in Nigeria is the ','SON','NDLEA','NAFDAC','CAC','','','c','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-06-30 13:22:27'),(385,'The physical components of a computer system refers to the ','system unit ','hardware ','software ','compact disk ','','','b','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(386,'An example of a computer operating system is ','the pagemaker ','the Word Perfect ','Microsoft Word 2000','Windows 2000','','','d','','utme','2011',79,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(387,'Intranet differs from extranet in that the former ','requires a modem before it could be used ','can generally be accessed by the public ','is restricted to employees of an organization ','requires internet protocols','','','c','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(388,'A software application which enables a user to display and interact with texts, images and videos is the ','web server','internet Protocol','coreldraw ','web browser ','','','c','','utme','2011',78,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(389,'A predominant mark-up language for web pages is ','IP','HTTP','HTML','TCP','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(390,'The symbol @ in an internet mail address is used  to  ','separate the user name from the machine name ','link the user with other internet users ','locate the addresses of internet  uses ','link the user with the machine.','','','c','','utme','2011',105,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(391,'A business organization is said to be socially responsible when it ','gets involve in issues relating to the society ','rewards its staff for long-term service','offers discounts to customers','invites the public to its annual general  meetings.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-06-25 23:55:56'),(392,'One of the major benefits of commerce to government is to ','improve the standard of living ','generate revenue for growth and development ','encourage cooperation among public organizations ','encourage the development of socio-cultural values','','','b','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-02 22:50:01'),(393,'An example of an activity in the construction industry is ','blacksmithing  ','bricklaying ','car assembling ','shoemaking ','','','c','','utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(394,'One of the inputs in production that can be motivated by remuneration is ','capital ','entrepreneur ','labour ','land ','','','c','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-05-28 21:12:51'),(395,'The allocation of tasks to different skills in a production process is referred to as ','production technique ','production function ','division of labour','delegation of responsibility ','','','c','','utme','2012',68,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(396,'The sales of goods through a medium that accepts money and deliver the items to the customer is ','an automated teller machine ','a vending machine','a counting machine','a branding machine','','','b','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-06 18:47:54'),(397,'The main purpose of branding is to ','create identity for a product ','make a product look attractive ','create product awareness ','increase sales volume ','','','a','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(398,'The basis for international trade is embedded in the principle of ','absolute advantage ','globalization ','deregulation','comparative advantage ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(399,'The major problem encountered in international trade is that of  ','distance ','differences in culture ','politics ','differences in currency ','','','d','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(400,'The document a seller uses in dispatching goods to a customer by a carrier is ','a bill of lading ','an invoice ','an advice note','a delivery note','','','d','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(401,'A document which serves as an order with details of goods required by an intending purchaser is   ','a freight note ','an indent ','a bill of lading ','a waybill','','','b','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(402,'If a customer pays within nine days of receiving goods and takes advantage of 3% off the invoice price, this is stated as ','3/9; net 3. ','9/27; net 30','30; net 9/3','9/30; net 3.','','','d','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(403,'Which of the following is a characteristic of a bearer cheque? ','it is made with transverse lines ','it is made payable to whoever presents it','It is made without teraservers lines','it is only payable into the payee’s account ','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-06-21 12:46:23'),(404,'A bill of exchange paid before its due date at an amount less than its face value is said to have been ','accepted ','rejected','discounted ','dishonoured ','','','c','','utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(405,'The most effective type of advertising for branding products is ','mass advertising ','persuasive advertising ','informative advertising ','competitive advertising ','','','c','','utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(406,'A current account holder pays fees for services in form of ','bank charges ','inertest rates','commission on turnover','minimum lending rate','','','a','','utme','2012',74,'Admin','0000-00-00 00:00:00','2020-06-01 15:33:05'),(407,'Printed messages sent by cable are recorded as ','telegram ','SMS','telex','MMS','','','a','','utme','2012',50,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(408,'Communication is relevant to business activities because it ','creates wealth for people ','reduces the cost and risk of traveling ','connects people','enhances delivery of goods and services','','','b','','utme','2012',68,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(409,'The right of an insurance company to stand in place of an insured against a third party, who is liable for the occurrence of a loss, is the principle of ','proximate cause','insurable interest ','insurance priority ','subrogation ','','','c','','utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(410,'Assurance is different from insurance in that the former is based on ','probability ','possibility ','risk ','uncertainty ','','','b','','utme','2012',50,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(411,'A person who undertakes a life insurance is said to be an ','Insurer ','assurer ','assured ','insured ','','','d','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(412,'Tourism serves the purpose of ','cross-cultural understanding and peaceful interaction ','opening avenues for leaving the country','economic development and naturalization ','exploiting the country’s natural endowment','','','d','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-05 20:20:17'),(413,'The type of letters that are delivered through the normal mail or by airmail express service is referred to as ','Inland letters ','registered letters','airmail letters','express letters','','','c','','utme','2012',60,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(414,'A business organization that exploits the capabilities of a member to remedy the weaknesses of another is a ','joint venture ','partnership ','nominal partnership ','cooperative ','','','d','','utme','2012',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(415,'The most important business objective is to ','improve investments ','provide quality  products','target consumers for satisfaction ','carve a niche for the business ','','','c','','utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(416,'In case of liquidation of a public limited liability company, those that are first paid are ','ordinary shareholders ','preference shareholders ','cumulative preference shareholders ','debenture holders','','','d','','utme','2012',56,'Admin','0000-00-00 00:00:00','2020-05-28 21:16:47'),(417,'A feature common to public and private limited liability companies is that ','both can sue and  be sued ','the minimum number of their shareholders is five','the transfer of their shares  is not restricted ','their annual accounts are published for public use','','','a','','utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(418,'A business organization can obtain long-term financing through ','bank overdraft ','the sale of shares ','credit purchases ','bureau de change ','','','b','','utme','2012',74,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(419,'The portion of the authorized share capital given out to the public for subscription is ','called-up capital ','issued capital ','paid up capital ','reserved capital ','','','b','','utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(420,'A company has an authorized capital of 40 million shares at N1 each, out of which 32 million are issued and fully paid-up. What happens to the remaining 8million shares?','it has been issued but not paid-up ','it has been applied for but not issued ','it is not paid up','it is not yet been issued ','','','d','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(421,'If the rate of turnover of a company in 1999 was 4 times while the average stock was N49, 600, determine the turnover.','N199, 400','N198, 400','N100, 200','N99, 200','','','b','','utme','2012',56,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(422,'Given:  N\\n Opening stock  1,800\\n Purchases   2, 800\\n Sales    8,000\\n Closing stock    350\\n Carriage on sales    500\\n Calculate the value of the unused stock.\\n','N 800','N500','N350','N320','','','c','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:24'),(423,'The main objective of a trade association is to ','protect is members against litigation ','boost the trade of its members ','secure credit for its members ','protect its members against victimization ','','','d','','utme','2012',52,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(424,'The promotion and protection of trade, industry and agriculture thorugh trade fairs is a function of ','NACRDB','NACCIMA','the Consumer Protection Council ','the Chamber of Commerce ','','','d','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(425,'Dealing in quoted securities on the Nigeria Stock Exchange is restricted to authorized ','companies ','brokers ','investors ','principals','','','b','','utme','2012',64,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(426,'Securities that entitle the investor to coupon rates are ','bonds ','equities ','warrants ','treasury bills','','','b','','utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(427,'Under what management function will the motivation of employees fall?','staffing ','controlling ','organizing ','directing ','','','b','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-28 21:35:02'),(428,'The promotion of team spirit in an organization is referred to as ','Unit of direction ','spirit de corps ','unity of purpose','discipline ','','','a','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(429,'One of the characteristics of a good organizational chart is that it should ','be rigid ','show government policy','facilitate communication ','be acceptable ','','','c','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(430,'An organization which focuses on consumer satisfaction is practicing ','consumerism ','market segmentation ','selling concept ','marketing concept ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(431,'Goods and Services are made available to consumers through','the channel of distribution ','sales promotion ','the advertising agency','the middlemen ','','','a','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(432,'A person who in consideration for an extra commission, takes responsibility for goods sold on credit and in case of default is a ','commission agent','del credere agent ','broker ','factor ','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(433,'Yahaya bought a piece of furniture on a credit sale agreement from Ahmed and resold it to Ali before all installments were made. The court upheld that Ahmed could not recover possession of the items from Ali. The reason for the judement was because ','ownership was transferred on completion of installment ','ownership was transferred on delivery ','Yahaya could not pass title to a third party ','Ali was still indebted to Yahaya','','','b','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-08 12:12:26'),(434,'The body which ensures that consumers are protected against harmful product in Nigeria is ','NAFDAC ','NDLEA','SON','CPC','','','a','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(435,'The process of decoding data in a computer is known as ','dilution ','default drive ','decryption ','data security ','','','c','','utme','2012',60,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(436,'Which of the following is a type of system software? ','Utility programs ','Registers ','Hard drives ','Packages','','','a','','utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(437,'Computers that process all data as binary zeros and ones are ','analog computers ','digital computers ','hybrid computers','desktop computers','','','b','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(438,'Modern mans of payment is greatly facilitated by ','e-commerce ','paper money ','e-banking ','D credit transfer ','','','c','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(439,'The provision of quality and safe products which guarantee the health of consumers is an example of ','quality control ','price control ','civic responsibility ','social responsibility ','','','a','','utme','2012',64,'Admin','0000-00-00 00:00:00','2020-07-04 01:14:19'),(440,'A business organization must always consider the overall effect of its actions on the ','competitor ','product ','profit ','society ','','','c','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-06-27 20:17:34'),(441,'The type of labour that makes use of physical effort in production processes is the ','unskilled labour','skilled labour','blue-collar job','white-collar job','','','a','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(442,'The assembling of products into usable forms is known as ','creation ','manufacturing ','construction ','formation ','','','c','','utme','2013',57,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(443,'The final link in the chain of distribution is ','Middlemen ','wholesaling ','consumer ','retailing ','','','c','','utme','2013',50,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(444,'A country is said to be experiencing an unfavourable balance of trade if her','exports exceed imports ','visible exports  exceed  visible imports ','imports and export are equal ','visible imports exceed visible exports ','','','d','','utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(445,'Trading position of Nigeria is the same as her ','desire  to trade with many countries','willingness to grant credit to foreigners ','balance of trade ','terms of trade','','','a','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(446,'The role of customs and excise authority includes the ','provision of a good transport system to facilitate imports and exports ','provision of security at the port ','control of the flow of goods in and out of the country ','provision of dockyards for ship repairs ','','','c','','utme','2013',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(447,'The document lodged with the customs authorities before a ship can leave the port is a ','shipping note ','ship report ','ship manifest','dock warrant ','','','c','','utme','2013',69,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(448,'The document which must be endorsed by the ambassador of a country of destination before shipment of goods is a ','consular invoice ','certificate of origin ','bill of lading ','closed indent ','','','b','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(449,'A country’s terms of trade are said to improve when the ratio of her export ','decreases ','remains constant ','increases ','equals import','','','c','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(450,'Which of the following advertising medium appeals to only the literate it the society?','Radio advertising ','Print Media advertising ','Television advertising ','Cinema advertising ','','','b','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(451,'The two main forms of communication are ','oral and written ','verbal and non-verbal ','e-mail and fax','traditional and modern media ','','','b','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(452,'The most reliable and efficient means of conveying urgent documents is through','postal order ','ordinary letters ','registered letters ','courier services','','','d','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-05 14:08:23'),(453,'An undertaking given by a person to another assuring his integrity is ','proximate clause ','fidelity guarantee ','subrogation ','insurable interest ','','','b','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(454,'If Mr. N takes a fire insurance policy with average clause, his compensation will be ','N5, 000','N7, 500','N70, 000','N75,000','','','b','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(455,'The difference between indemnity insurance and non-indemnity insurance is that the latter provides ','cover for exporters against risks ','cover for importers against risks ','full payment to the insured ','consolation payment to the insured ','','','d','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-06 19:29:39'),(456,'An importance of warehousing is in the ','production of goods ','transportation of goods ','Importation of goods ','repackaging of goods','','','a','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(457,'In order to increase the capital owned, a sole trader may ','seek for bank loan ','issue debentures ','acquire extra shop fittings on credit ','draw less of his profit for personal use','','','d','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(458,'A business partner who provides capital but abstains from participation in administration of a firm is a ','general partner ','nominal partner ','secret partner ','dormant partner ','','','d','','utme','2013',58,'Admin','0000-00-00 00:00:00','2020-07-04 01:13:49'),(459,'Which of the following will NOT be stated in a Memorandum of Association? ','Name clause ','Rights of shareholders ','object clause ','Registered office','','','d','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(460,'The amount of authorized capital that shareholders have subscribed to is ','issued share capital ','authorized share capital ','owner’s equity ','working capital ','','','c','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(461,'The rate of turnover of a firm in a given year is 5 times while the average stock is \\n N12.500. what is the turnover of the firm? \\n','N24,000','N46,500','N62, 500','N65,000','','','b','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(462,'A lawyer that defrauds his client may be derobed by the Nigerian Bar Association in order to ','protect other lawyers ','protect the integrity of the association','compensate the affected client ','prevent the client from sueing the association ','','','c','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(463,'In the Nigeria GSM industry, a parliament is organized by the Nigerian Communication Commission in order to ','increase profit of service providers ','protect the interest of government ','encourage more people into the business ','protect the interest of consumers ','','','b','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(464,'Trade Fairs in Nigeria are organized by ','the Federal Government ','Manufactures’ Association of Nigeria','Ministry of Commerce and industry ','Chambers of commerce','','','d','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(465,'Money is generally acceptable for transactions due to','the legal backing ','the rule of law ','it’s acceptability in the global market ','the Central Bank Governor’s signature ','','','d','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-04 01:15:58'),(466,'Which of the following is a quality of money?  ','Availability','Scarcity  ','Indivisibility ','Convertibility ','','','a','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(467,'Money can simply be referred to as a ','measure of value','standard of value','means of settlement ','durable asset for doing business','','','a','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(468,'Gilt-edged securities are issued mainly by ','individuals ','non-governmental organizations','government ','multi-national companies ','','','c','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(469,'The initial function of a manager is ','setting up an organization ','coordinating ','planning ','provision of welfare package ','','','b','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(470,'The most suitable organizational structure for small or medium-sized enterprises is ','line structure ','staff structure ','committee structure ','functional structure ','','','a','','utme','2013',53,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(471,'In a staff-authority relationship, the opinion of a specialist is one department to another is ','a directive ','an advice ','a command','a delegation ','','','b','','utme','2013',60,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(472,'Management of a business involves he development of ideas for the ','distribution of goods and services that human wants','transportation of goods and services that goods and services that human wants ','transfer of little of ownership of goods and services to individuals.','production of goods and services that satisfy human needs.','','','d','','utme','2013',50,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(473,'Which of the following is used as a pricing policy? ','packaging ','market selection ','labeling ','market skimming ','','','d','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(474,'The essential utility derived from the use of a product is known as ','augmented benefit','branded benefit ','core benefit ','formal benefit','','','c','','utme','2013',58,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(475,'The breaking down of a market into separate and identifiable elements is known as ','differentiation ','segmentation ','skimming ','penetration ','','','b','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(476,'A contract that is acknowledged before the law court is referred to as ','informal contract','formal contract ','contract of records ','specialty contract ','','','b','','utme','2013',57,'Admin','0000-00-00 00:00:00','2020-07-04 01:24:25'),(477,'An agent employed to sell goods delivered to him by the principal is referred to as a ','Special agent ','del credere agent ','factor ','universal agent','','','b','','utme','2013',64,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(478,'A motor dealer who agreed to sell a car to Mr. X but sold and delivered it to Mr. Y on the delivery date agreed with Mr. X. He has discharged the contract by ','performance ','frustration ','an agreement ','breach ','','','d','','utme','2013',60,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(479,'A contract can be terminated through ','physical combat ','family intervention ','frustration ','consultation ','','','d','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(480,'The right of retain possession of goods until the contract price is paid is referred to as ','a promise ','ultra vires ','a branch ','a lien ','','','a','','utme','2013',53,'Admin','0000-00-00 00:00:00','2020-07-04 01:30:02'),(481,'The sole legal right held by the author to publish his book is a ','trademark ','copyright ','patent right ','book mark','','','b','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(482,'The process of transferring data from one computer to another is referred to as ','down loading ','faxing ','browsing ','decoding ','','','a','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-06-26 08:15:36'),(483,'The physical component of a computer system is ','software ','hardware ','hard disk','floppy disk ','','','b','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-04 01:21:28'),(484,'A computer accessory through which information can be retrieved is the ','hard disk ','input  device ','control unit ','floppy disk ','','','d','','utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(485,'The type of computer application software used mainly for management information is ','Corel draw ','AutoCAD','data base','word perfect','','','c','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(486,'To meet security requirement before gaining access to data, a computer operator supplies ','an e-mail address ','a yahoo address ','a password ','a modem','','','c','','utme','2013',57,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(487,'A major factor that affects business operations is ','technology ','supply ','product ','rivalry ','','','a','','utme','2013',55,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(488,'The environmental hazard that is most difficult to control is ','land pollution','water pollution ','air pollution','political unrest ','','','c','','utme','2013',56,'Admin','0000-00-00 00:00:00','2020-06-29 08:30:03'),(489,'Which of the following can be defined as trade and aids to trade?','Advertising','Commerce','Wholesaling','Retailing','','','b','','wassce','2000',57,'Admin','2016-11-14 07:16:10','2020-06-21 12:50:20'),(490,'Which of the following is not a source of finance to a sole proprietor?','Trade Credit','Overdrafts','Debentures','Leasing of equipment','','','d','','wassce','2000',44,'Admin','2016-11-14 07:16:10','2020-06-20 13:09:09'),(491,'Partners who allow their names to be used in a partnership but do not take part in the management of the business are','active partners','limited partners','general partners','nominal partners','','','d','','wassce','2000',48,'Admin','2016-11-14 07:16:10','2020-05-28 21:17:31'),(492,'A private company is one which','must publish its audited account','floats its shares on the stock exchange market','restricts the rights to transfer its shares','is owned by a maximum of twenty members merger','','','c','','wassce','2000',55,'Admin','2016-11-14 07:16:10','2020-06-08 06:41:19'),(493,'The coming together of two or more firms at different stages of production is','horizontal merger','vertical merger','amalgamation','cartel','','','b','','wassce','2000',53,'Admin','2016-11-14 07:16:10','2020-07-04 01:13:49'),(494,'The total value of fixed and current assets is?','working capital','capital employed','Fixed capital','capital owned','','','b','','wassce','2000',46,'Admin','2016-11-14 07:16:10','2020-07-04 01:30:02'),(495,'What is P in the above equation?','Purchases returns','Net Profit','Sales','Carriage outwards','Use the following equation to answer question   Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-06-21 12:49:42'),(496,'What is G in the above equation?','Sales returns','Carriage inwards','Purchases','Sales','Use the following equation to answer question  Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',45,'Admin','2016-11-14 07:16:10','2020-06-08 09:48:58'),(497,'Which of the following is true about cumulative preference shares?','Unpaid dividends are carried forward','Shareholders can secure capital refund on demand','Shareholders are entitled to further share of profit','Dividends are paid into a special account','','','a','','wassce','2000',45,'Admin','2016-11-14 07:16:10','2020-06-01 19:32:09'),(498,'A debenture is mortgaged when it is','not secured on the assets of a company','secured on the assets of a company','irredeemable','redeemable','','','b','','wassce','2000',45,'Admin','2016-11-14 07:16:10','2020-06-21 12:48:14'),(499,'A retail outlet which sells a fairly narrow range of goods with a number of branches in different towns is a','supermarket','mail-order shop','mobile shop','multiple shop','','','a','','wassce','2000',46,'Admin','2016-11-14 07:16:10','2020-05-28 21:15:40'),(500,'A consignment note is used when','goods are wrapped and labeled for easy identification','goods are dispatched to agents through transporters','damaged goods are being returned','there is over-invoicing','','','b','','wassce','2000',45,'Admin','2016-11-14 07:16:10','2020-07-04 01:21:28'),(501,'Which of the following is not contained in an advice note?','Type of goods','Price of goods','Date of dispatch','Means of dispatch','','','d','','wassce','2000',44,'Admin','2016-11-14 07:16:10','2020-06-26 10:59:28'),(502,'A refund of the duty collected on goods imported and processed for re- export is','excise duty','excise draw back','preferential duty','value added tax','','','b','','wassce','2000',46,'Admin','2016-11-14 07:16:11','2020-07-04 01:24:25'),(503,'When a country’s total visible and invisible exports are more than its visible and invisible imports, it has','favourable balance of payments','favourable balance of trade','unfavourable balance of trade','unfavourable balance of payments','','','a','','wassce','2000',45,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:29'),(504,'Which of the following is not a function of a retailer?','Supplying goods to final consumers','Bulk breaking','Giving information to the wholesaler','Branding and packaging of goods','','','d','','wassce','2000',38,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:09'),(505,'A merchant who wishes to order goods from a foreign country sends','an invoice','an indent','an advice note','a credit note','','','b','','wassce','2000',42,'Admin','2016-11-14 07:16:11','2020-06-17 12:38:35'),(506,'The production of goods in anticipation of demand is \tpossible because of the existence of','Packaging','advertising','warehousing','branding','','','c','','wassce','2000',48,'Admin','2016-11-14 07:16:11','2020-05-28 21:15:48'),(507,'Which of the following is sent in reply to a letter of enquiry?','Quotation','Order','Consumer invoice','Advice note','','','b','','wassce','2000',50,'Admin','2016-11-14 07:16:11','2020-05-28 21:16:09'),(508,'The abbreviated phrase E & OE is usually printed on','an invoice','a cheque','a delivery note','a debit note','','','a','','wassce','2000',41,'Admin','2016-11-14 07:16:11','2020-06-21 12:49:02'),(509,'Which of the following refers to a price reduction based on the size of order?','Cash discount','Trade discount','Seasonal discount','Cash on delivery','','','b','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-06-04 05:19:44'),(510,'Which of the following is not a means of payment in foreign trade?','Telegraphic money order','Specially crossed cheque','Letters of credit','Debit transfer','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:11','2020-07-04 01:15:58'),(511,'A bill of exchange on maturity is allowed','seven days of grace','five days of grace','four days of grace','three days of grace','','','a','','wassce','2000',49,'Admin','2016-11-14 07:16:11','2020-05-28 21:15:32'),(512,'Which of the following is not a financial institution?','Commodity Board','Insurance company','Clearing house','Stock exchange','','','a','','wassce','2000',46,'Admin','2016-11-14 07:16:11','2020-07-06 17:19:24'),(513,'When a customer writes a cheque in his own name and withdraws cash with it from his account he is both the','drawee and the payee','drawer and the payer','drawee and the drawer','drawer and the payee','','','c','','wassce','2000',42,'Admin','2016-11-14 07:16:11','2020-07-04 01:21:28'),(514,'Which of the following is a means of payment through the post office?','Standing Order','Promissory note','Money order','Telegraphic transfer','','','c','','wassce','2000',42,'Admin','2016-11-14 07:16:11','2020-07-05 20:20:17'),(515,'Which of the following encourages people to save towards owning a house?','Merchant bank','Development bank','Mortgage bank','Commercial bank','','','c','','wassce','2000',32,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:40'),(516,'Which of the following services is not rendered by commercial banks?','Business advice','Currency notes issue','Accepting deposits','Credit transfer','','','b','','wassce','2000',46,'Admin','2016-11-14 07:16:11','2020-06-01 15:59:44'),(517,'A retirement insurance policy which enables the assured to receive income for a specific period is','annuity','endowment','whole life','fidelity guarantee','','','a','','wassce','2000',46,'Admin','2016-11-14 07:16:11','2020-06-21 12:52:27'),(518,'A house worth  N50.000 was insured against fire for  N30,000. Fire destroyed and caused damages worth N20.000 on the house. Under which insurance principle will the owner be entitled to a compensation of  N20,000?','Contribution','Subrogation','Indemnity','Uberrimaefidei','','','c','','wassce','2000',57,'Admin','2016-11-14 07:16:11','2020-07-06 19:29:39'),(519,'When an insurance company indemnifies the insured and takes over his rights, this is known as','abandonment','subrogation','proximate cause','contribution','','','b','','wassce','2000',43,'Admin','2016-11-14 07:16:11','2020-06-19 01:07:50'),(520,'In Public Limited Liability Companies, equities are referred to as','preference shares','authorized capital','ordinary shares','called-up capital','','','c','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-06-07 15:56:17'),(521,'The method of sending messages by the teleprinter is','telephone','cablegram','telex','railex','','','c','','wassce','2000',44,'Admin','2016-11-14 07:16:11','2020-06-21 12:49:26'),(522,'The information on terms of carriage of mails is found in','business journal','post office guide','trade directory','service manual','','','b','','wassce','2000',41,'Admin','2016-11-14 07:16:11','2020-06-02 10:35:32'),(523,'Rail transport is less flexible than road transport because','rail lines run between specific terminals','train is slow over long distances','only bulky goods are carried by rail','road transport is suitable for short distances','','','a','','wassce','2000',42,'Admin','2016-11-14 07:16:11','2020-05-28 21:17:07'),(524,'Which of the following is used for moving only goods from one seaport to another?','Ocean liner','Cargo liner','Ferry','Coaster','','','b','','wassce','2000',47,'Admin','2016-11-14 07:16:11','2020-06-21 12:47:42'),(525,'The marketing activity that stimulates immediate demand for a product is','sales promotion','publicity','consumer relations','personal selling','','','a','','wassce','2000',49,'Admin','2016-11-14 07:16:11','2020-06-21 12:51:26'),(526,'Which of these is not a basic marketing function?','Exchange','Production','Facilitation','Information','','','b','','wassce','2000',55,'Admin','2016-11-14 07:16:11','2020-06-07 13:28:50'),(527,'Branding is a tool for','competitive advertising','consumerism','marketing research','pricing policy','','','a','','wassce','2000',36,'Admin','2016-11-14 07:16:12','2020-07-04 01:13:49'),(528,'Firms wishing to defend established products as well as launch new ones will make use of','franchising','product differentiation','branding','advertising','','','d','','wassce','2000',38,'Admin','2016-11-14 07:16:12','2020-07-04 01:21:28'),(529,'Which of the following is a method of sales promotion?','Radio giggles','Poster display','Trade fair','Television broadcast','','','c','','wassce','2000',47,'Admin','2016-11-14 07:16:12','2020-05-28 21:16:50'),(530,'The deliberate and sustained efforts to maintain a good image of a company is known as','personal relations','public relations','professional relations','industrial relations','','','b','','wassce','2000',39,'Admin','2016-11-14 07:16:12','2020-05-28 21:16:45'),(531,'A contract of sale where ownership passes to the buyer on the payment of the first instalment is known as','hire purchase','lease','cash on delivery','credit sale','','','d','','wassce','2000',39,'Admin','2016-11-14 07:16:12','2020-06-06 18:41:37'),(532,'Which of the following agents guarantees payment transactions entered into on behalf of the principal?','Auctioneer','Factor','Broker','Del credere','','','d','','wassce','2000',54,'Admin','2016-11-14 07:16:12','2020-06-08 12:12:26'),(533,'Which of the following is not a means of consumer protection?','Price control','Sale of Goods Act','Trade Description Act','Tax laws','','','d','','wassce','2000',49,'Admin','2016-11-14 07:16:12','2020-06-07 15:49:24'),(534,'Which of the following is a basic requirement for a valid contract?','Representation','Consideration','Interest','Performance','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:12','2020-06-28 21:35:02'),(535,'A counter-offer in a contract is regarded as','an acceptance','an invitation to treat','a rejection','a consideration','','','c','','wassce','2000',39,'Admin','2016-11-14 07:16:12','2020-06-21 12:46:39'),(536,'Which of the following is not a right of the consumer?','Safety','Choice','Discount','Value','','','c','','wassce','2000',51,'Admin','2016-11-14 07:16:12','2020-05-28 21:15:13'),(537,'Which of the following is an agreement to transport goods but not a document of title?','Air-waybill','Bill of lading','Charter party','Freight note','','','c','','wassce','2000',51,'Admin','2016-11-14 07:16:12','2020-07-04 01:21:28'),(538,'In which of the following classes of occupation would you place a doctor?','Extractive','Commercial','Direct services','Indirect services','','','c','','wassce','2000',51,'Admin','2016-11-14 07:16:12','2020-07-04 01:21:28'),(539,'Commercialization is good for the Nigerian economy because it','creates room for competition','increases the cost of living','leads to the reduction of workforce','leads to uneven distribution of wealth','','','a','','neco','2013',63,'Admin','2016-11-14 08:18:40','2020-06-09 05:44:47'),(540,'Obtaining feedback on the quality and performance of competing products of different manufacturers, explains the retailer’s function of','after sales service','granting to credits to consumers','market research','stocking variety of goods','','','d','','neco','2013',50,'Admin','2016-11-14 08:18:41','2020-05-28 21:15:17'),(541,'The direct contact of a seller with potential buyers with a view to making sales is called','advertising','personal selling','public relations','publicity','','','b','','neco','2013',61,'Admin','2016-11-14 08:18:41','2020-07-04 01:13:49'),(542,'The process of dividing a total market into groups made up of people with similar need refers to marketing','function','mix','research','segmentation','','','d','','neco','2013',58,'Admin','2016-11-14 08:18:41','2020-05-28 21:14:46'),(543,'The final link in the chain of distribution is the','agent','consumer','manufacturer','retailer','','','b','','neco','2013',53,'Admin','2016-11-14 08:18:41','2020-05-28 21:17:21'),(544,'Platinum Habib Bank Plc. is an example of __ bank.','central','commercial','development','merchant','','','b','','neco','2013',50,'Admin','2016-11-14 08:18:41','2020-07-04 01:30:02'),(545,'Which of the following is NOT a means of payment through the post office?','Giro system','Money order','Postage stamp','Standing order','','','d','','neco','2013',70,'Admin','2016-11-14 08:18:41','2020-06-26 10:59:32'),(546,'Branch managers who virtually have no control on goods they sell is a disadvantage of __  store.','chain','departmental','mail order','super','','','a','','neco','2013',58,'Admin','2016-11-14 08:18:41','2020-07-04 01:21:28'),(547,'Instrument used in place of legal tender but not freely acceptable are called ___ money.','bank','commodity','gold - backed','representative','','','d','','neco','2013',49,'Admin','2016-11-14 08:18:41','2020-07-04 01:30:02'),(548,'The assurance policy in which the assured pays lump sum of money which matures at his retirement is ___assurance.','annuity','endowment','life','term','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:41','2020-06-21 12:50:18'),(549,'By making it possible for wholesalers to keep surplus stock until demand improves, the warehouse performs the function of','employment creation','price stabilization','production planning','storage','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:41','2020-07-04 01:21:28'),(550,'Calculate the net profit.','30,000','33,000','38,000','40,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','b','','neco','2013',63,'Admin','2016-11-14 08:18:41','2020-06-06 18:41:37'),(551,'Calculate the total liabilities.','40,000','50,000','55,000','57,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','c','','neco','2013',62,'Admin','2016-11-14 08:18:41','2020-06-07 21:43:49'),(552,'Calculate the current assets.','15,000','20,000','30,000','45,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','a','','neco','2013',51,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:17'),(553,'Ensuring free movement of factors of production among member states through the removal of obstacles is one of \t\tthe objectives of','ECOWAS','LCBC','NBC','OAU','','','a','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-06-06 19:57:45'),(554,'Which of the following documents contains the name of the company, registration number and signature of the registrar?','Articles of association','Certificate of incorporation','Certificate of trading','Memorandum of association','','','d','','neco','2013',58,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:34'),(555,'The method of shopping on the internet by using the computer to browse the website of the manufacturer is known as','e-banking','e-commerce','e-exchange','e-trade','','','d','','neco','2013',52,'Admin','2016-11-14 08:18:42','2020-07-05 16:18:17'),(556,'The development of a container and a graphic design for a product is known as','advertising','branding','packaging','trade mark','','','c','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-06-21 12:52:48'),(557,'When an agent is appointed verbally or in writing by the principal to act on his behalf, the appointment is said to be by','estoppels','express','implication','ratification','','','d','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-04 01:24:24'),(558,'The features of an entrepreneur consist of the following, EXCEPT','coordinating factors of production','earning wages as income','efficiency in management','maintaining good communication','','','b','','neco','2013',53,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:40'),(559,'Another name for trade discount is _________ discount,','cash','functional','quality','quantity','','','d','','neco','2013',45,'Admin','2016-11-14 08:18:42','2020-07-05 16:18:17'),(560,'Those engaged in extraction, manufacturing, and construction occupations are called ___ workers.','commercial','direct','indirect','industrial','','','d','','neco','2013',62,'Admin','2016-11-14 08:18:42','2020-07-04 01:30:02'),(561,'Which of these is NOT a source of capital to First Bank of Nigeria Plc?','Equipment leasing','Lean from friends','Profit plough back','Sales of shares','','','b','','neco','2013',61,'Admin','2016-11-14 08:18:42','2020-07-04 01:13:49'),(562,'In trading, profit and loss account, carriage outward is','added to purchases','deducted from purchases','deducted from sales','treated as expenses','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-06-21 12:51:54'),(563,'The pricing policy adopted by firms selling to wealthy people is','market penetration','market skimming','pricing above the market','pricing with the market','','','b','','neco','2013',51,'Admin','2016-11-14 08:18:42','2020-06-21 12:52:40'),(564,'Which of the following is NOT a function of courier companies?','Ensuring international transmission of message','Providing door to door delivery services','Providing efficient means of mail delivery','Undertaking the shipment of export and import','','','d','','neco','2013',46,'Admin','2016-11-14 08:18:42','2020-06-21 12:48:38'),(565,'“MTN, Your Best Connection” is an example of ___ advertisement.','competitive','direct','informative','mass','','','a','','neco','2013',62,'Admin','2016-11-14 08:18:42','2020-05-28 21:16:14'),(566,'The assertion ‘consumers are always right’ refers to marketing','board.','concept','function','mix','','','b','','neco','2013',52,'Admin','2016-11-14 08:18:42','2020-07-04 01:24:25'),(567,'Which of the following is charged by the NIPOST on postal order?','Dividend','Interest','Poundage','Premium','','','c','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-07-04 01:13:49'),(568,'The following are characteristics of debenture holders, EXCEPT','being one of the sources of long term loan to public companies.','being paid interest','they are creditors of the company','they are entitled to profits','','','d','','neco','2013',49,'Admin','2016-11-14 08:18:42','2020-07-04 01:14:19'),(569,'The money paid to savings account holders by banks after a period of transaction is called','dividend','gain','interest','premium','','','c','','neco','2013',49,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:29'),(570,'Double coincidence of wants is a disadvantage of','business','buying and selling','credit sales','trade by barter','','','d','','neco','2013',61,'Admin','2016-11-14 08:18:42','2020-05-30 18:05:44'),(571,'Price quotation which excludes all delivery charges is called','cost and freight','ex - ship','ex - warehouse','free - on - board','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:42','2020-06-01 21:20:10'),(572,'Which of the following does NOT appear on a cheque on presentation for payment?','Amount in words and figures','Date of withdrawal','Name of the cashier','Name of the payee','','','c','','neco','2013',41,'Admin','2016-11-14 08:18:42','2020-05-28 21:14:25'),(573,'The aspect of production which provides goods and services for immediate consumption is called ___ production.','direct','indirect','primary','secondary','','','a','','neco','2013',53,'Admin','2016-11-14 08:18:42','2020-06-17 12:38:34'),(574,'The actual gain made by a business after all expenses has been deducted is called','gross profit','margin','mark-up','net profit','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-06-19 01:06:41'),(575,'The following documents are used between buyers and sellers, EXCEPT','catalogue','dispatch rate','invoice','license','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:05'),(576,'The total assets of a business less current liabilities refers to _____ capital.','authorized','called up','employed','owned','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-06-21 12:52:31'),(577,'The following are merits of industrial integration, EXCEPT','controlling output and price','eliminating waste','leading to monopoly','preventing over production','','','c','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-06-21 12:45:47'),(578,'The use of middlemen by manufacturers become necessary where the goods','are of low rate of turnover','are susceptible to faking or adulteration','involved are branded','produced are in large quantities','','','d','','neco','2013',60,'Admin','2016-11-14 08:18:42','2020-06-18 06:47:29'),(579,'The oldest form of business enterprise in Nigeria is','partnership','private liability company','public enterprise','sole proprietorship','','','d','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-05-28 21:17:13'),(580,'Social responsibilities of a business to the consumers \tinclude the following, EXCEPT','educating the customers','ensuring truth in advertisement','granting credit facilities','providing of quality product','','','c','','neco','2013',50,'Admin','2016-11-14 08:18:42','2020-07-04 01:15:58'),(581,'Products that have stayed long on themselves in a shop can be sold easily through','branding','discounting','doorstep selling','franchising','','','b','','neco','2013',50,'Admin','2016-11-14 08:18:42','2020-07-04 01:13:49'),(582,'The durable capital of an enterprise which is used continuously for further production is called ___ capital.','called up','circulating','fixed','liquid','','','c','','neco','2013',50,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:38'),(583,'A manufacturer is said to have performed all the necessary marketing functions in the distribution channel when the goods move from','manufacturer ? consumer','manufacturer ? retailer ? consumer','manufacturer ? wholesaler ? retailer ? consumer','manufacturer ? wholesaler ?jobber ? retailer ?consumer','','','c','','neco','2013',61,'Admin','2016-11-14 08:18:43','2020-06-28 21:35:02'),(584,'Which of the following is NOT a reason for government’s ownership of Nigerian Ports Authority (NPA)?','Avoiding wasteful competition and duplication','Generating revenue','High capital requirement','Making profit','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:43','2020-06-02 19:24:00'),(585,'The first step for a businessman who wishes to engage in international trade is to','ask the exporter to move the goods to the shipping company for delivery','engage the services of clearing agent to clear the goods on his behalf','establish contact with the foreign trading partner','fill an application for import form with a bank','','','c','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:12'),(586,'A law made by a country to prohibit importation of certain goods into the country is called _____ laws.','export','import','protectionist','tariff','','','c','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:37'),(587,'Which of the following towns was NOT an initial commercial centre in Nigeria?','Kano','Lagos','Maiduguri','Yola','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:43','2020-07-04 01:24:25'),(588,'Management function which arranges people, time, money and equipment, to achieve the objectives of an organization is referred to as','directing','motivating','organizing','planning','','','c','','neco','2013',62,'Admin','2016-11-14 08:18:43','2020-06-17 21:05:20'),(589,'Bridging the gap between producers and consumers is the sole purpose of','distribution','hawking','retailing','warehousing','','','c','','neco','2013',56,'Admin','2016-11-14 08:18:43','2020-06-21 12:45:39'),(590,'Which of the following is NOT a characteristic of labour? It is','fixed in supply','geographically mobile','man made','perishable in nature','','','a','','neco','2013',58,'Admin','2016-11-14 08:18:43','2020-07-04 01:14:19'),(591,'One of the problems associated with home trade is the','absence of currency exchange','better knowledge of the markets','inadequacy of storage facilities','proximity of buyers and sellers','','','c','','neco','2013',55,'Admin','2016-11-14 08:18:43','2020-06-21 12:48:32'),(592,'An instruction from a current account holder requesting to pay a named person or organization a. specified amount is \t\tcalled','bankers order','certified cheque','internal transfer','money order','','','b','','neco','2013',54,'Admin','2016-11-14 08:18:43','2020-07-04 01:13:49'),(593,'Which of the following is NOT a commercial occupation?','Advertising','Agriculture','Communication','Insurance','','','b','','neco','2013',62,'Admin','2016-11-14 08:18:43','2020-06-21 12:46:21'),(594,'In the marketing mix, place refers to','channel of distribution','location of the factory','the market place','where the product is located','','','d','','neco','2013',79,'Admin','2016-11-14 08:18:43','2020-06-17 12:38:35'),(595,'Which of the following is NOT an attribute of an effective business manager?','Altruism','Empathy','Objectivity','Subjectivity','','','d','','neco','2013',61,'Admin','2016-11-14 08:18:43','2020-07-04 01:14:19'),(596,'The ability of money to be divided into smaller units for easy exchange of goods and services explains','divisibility','durability','recognisability','stability','','','a','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-06-21 12:51:46'),(597,'Which of the following is NOT a role of trade association?','Eliminating competition among members','Ensuring uniformity in mode of operation','Establishing link between government and associations','Promoting members interest','','','a','','neco','2013',63,'Admin','2016-11-14 08:18:43','2020-06-21 12:49:32'),(598,'The transfer of enterprises from private to state ownership for economic or social reasons is referred to as','commercialization','indigenization','industrialization','naturalization','','','d','','neco','2013',60,'Admin','2016-11-14 08:18:43','2020-05-28 21:17:21'),(599,'The major divisions of Commerce are','import, export and transport','trade, communication and warehousing','trade and auxiliaries to trade','exchange, consumption and production','','','c','','wassce','1990',51,'Admin','2016-11-14 20:22:14','2020-06-05 16:26:04'),(600,'Which of the following statements is not true?','Commercial services are the life blood of a country economic system','There cannot occur commercial services until goods have been produced.','Without commercial services most goods and services will not be produced','There is no stage of production that does not employ commercial services.','','','b','','wassce','1990',43,'Admin','2016-11-14 20:22:15','2020-06-02 16:26:09'),(601,'The three main divisions of production include industrial','commercial and banking services','commercial and services','transportation and services','manufacturing and services','','','b','','wassce','1990',38,'Admin','2016-11-14 20:22:15','2020-06-05 21:55:09'),(602,'Which of the following is one of the functions of commerce?','Manufacturing','Growing of tomatoes','Storage of goods','Construction of Roads','','','c','','wassce','1990',47,'Admin','2016-11-14 20:22:15','2020-07-06 19:29:39'),(603,'Which of the following does not belong to the extractive industry?','Farming','Insuring','Mining','Drilling','','','b','','wassce','1990',49,'Admin','2016-11-14 20:22:15','2020-06-21 12:45:06'),(604,'The average stock is','N=2000','N=3000','N=5000','N=6000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','c','','wassce','1990',50,'Admin','2016-11-14 20:22:15','2020-06-21 12:47:54'),(605,'The cost of goods sold is','N=6000','N=10000','N=42000','N=16000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','a','','wassce','1990',48,'Admin','2016-11-14 20:22:15','2020-07-04 01:14:19'),(606,'The oldest and commonest form of business in Nigeria is','partnership','the co-operative society','sole proprietorship','joint stock venture','','','c','','wassce','1990',45,'Admin','2016-11-14 20:22:15','2020-05-28 21:16:59'),(607,'If a retailer Mr. Aigbojie buys goods manufactured by Adefila Limited from wholesaler Mrs. Jumai, who will prepare the delivery note?','Mr. Aigbojie','Adefila Limited','Mr. Jumai','Mr. Aigbojie and Adefila Limited','','','c','','wassce','1990',43,'Admin','2016-11-14 20:22:15','2020-05-28 21:16:54'),(608,'Which of the following is not a factor of production?','Capital','land','Labour','Staffing','','','d','','wassce','1990',57,'Admin','2016-11-14 20:22:15','2020-05-28 21:16:58'),(609,'In which class of occupation would you place a taxi-driver?','Extractive','Indirect services','Personal services','Commercial services','','','d','','wassce','1990',46,'Admin','2016-11-14 20:22:15','2020-06-21 12:52:34'),(610,'The purpose of issuing a credit note is to','correct errors of overcharging','correct errors of undercharging','write off  bad debts','encourage immediate payment','','','a','','wassce','1990',35,'Admin','2016-11-14 20:22:16','2020-07-04 01:14:19'),(611,'The exchange of goods for other goods in home trade is known as','entrepot trade','home trade','barter trade','foreign trade','','','c','','wassce','1990',40,'Admin','2016-11-14 20:22:16','2020-06-21 12:48:52'),(612,'Which of the following advertising media combines the advantages of sound and motion?','Radio','Neon signs','Press','Television','','','d','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-06-11 00:27:36'),(613,'Which of the following is a form of sales promotion?','Promotion through radio','Advertising by television','Distributing printed sales literature','Offering free samples to customers','','','d','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-06-21 12:49:08'),(614,'Efforts geared towards establishing and maintaining good image for a company is termed','human relations','professional relations','public relations','trade relations','','','c','','wassce','1990',42,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:30'),(615,'Which of the following is sent as a reply to an inquiry?','Tender','Estimate','Statement','Quotation','','','d','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-06-21 12:48:18'),(616,'Which of the following statements best describes net profit? The excess of','total revenue over total expenditure','total capital income over expenditure','sales over purchases','total capital formation over capital consumption','','','a','','wassce','1990',35,'Admin','2016-11-14 20:22:16','2020-06-09 05:44:47'),(617,'A business is in existence primarily to','make profit','provide goods and services','provide employment','compete with others in business','','','a','','wassce','1990',49,'Admin','2016-11-14 20:22:16','2020-06-21 12:46:22'),(618,'A number of shops under one roof is the feature of a','supermarket','chain store','department store','mail order business','','','c','','wassce','1990',45,'Admin','2016-11-14 20:22:16','2020-05-28 21:16:49'),(619,'An agreement between two parties which will give rise to enforceable rights and obligation is known as','a warrant','a contract','a consideration','an offer','','','b','','wassce','1990',53,'Admin','2016-11-14 20:22:16','2020-07-04 01:14:19'),(620,'Auctions and Tenders become binding when they are','accepted','offered','received','advertised','','','a','','wassce','1990',45,'Admin','2016-11-14 20:22:16','2020-07-06 08:30:44'),(621,'The organized efforts of consumers to protect themselves against the unfair practices of businessmen is called','strike','consumerism','amalgamation','propaganda','','','d','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-06-28 21:35:02'),(622,'Which of the following is the most suitable means of \ttransporting bulky goods from Lagos to Kaduna? By','Train','Airplane','Ship','Lorry','','','a','','wassce','1990',43,'Admin','2016-11-14 20:22:16','2020-05-28 21:14:42'),(623,'Which of the following is the quickest and accurate means of communication?','Telegram','Express mail','Courier services','Telex','','','d','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:37'),(624,'Which of the following is the safest means of sending a postal order from Lagos to a friend in Jos?','Special delivery','Recorded delivery','Registered letter','First class mail','','','b','','wassce','1990',39,'Admin','2016-11-14 20:22:16','2020-06-21 12:52:46'),(625,'One of the objectives of the indigenization programme of the Federal Government of Nigeria is to','encourage the use of local raw materials','expel all foreigners from Nigeria','make Nigerian businessmen very rich','maximize local retention of profits','','','d','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-06-08 11:23:41'),(626,'The law which stipulates that labels should give an accurate account of a product is the','price control act','consumer credit act','trade description act','hire purchase act','','','c','','wassce','1990',34,'Admin','2016-11-14 20:22:16','2020-07-04 01:15:58'),(627,'Which of the following is not an essential of a contract?','Offer and acceptance','Intention to create legal relations','All contracts written out','Legality of object','','','c','','wassce','1990',42,'Admin','2016-11-14 20:22:16','2020-06-03 15:33:33'),(628,'One advantage of personal selling is','low cost','immediate feedback','the appeal to many people at a time','self service','','','b','','wassce','1990',49,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:26'),(629,'Charges paid by a ship for staying at a port beyond agreed sailing time is called','profit','interest','holding','demurrage','','','d','','wassce','1990',47,'Admin','2016-11-14 20:22:16','2020-07-04 01:15:58'),(630,'Entrepot Trade refers to','importing for domestic consumption','importing for industrial use','importing for government concerns','importing for re-export','','','d','','wassce','1990',40,'Admin','2016-11-14 20:22:16','2020-05-28 21:17:00'),(631,'Which of the following could account for a favourable balance of payment?','High capital repayments','high debt service repayment','higher imports than exports','Higher exports than imports','','','d','','wassce','1990',40,'Admin','2016-11-14 20:22:16','2020-06-09 05:44:47'),(632,'Which of the following is not part of the facilities provided by the Nigerian Ports Authority?','Dredging','Warehousing','Collection of customs duties','Loading and off-loading of cargoes','','','c','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-06-17 12:38:36'),(633,'The main purpose of branding is to','increase the quantity of goods demanded','differentiate goods from other similar goods made by other producers','increase the selling price of goods','enhance turnover of goods','','','b','','wassce','1990',40,'Admin','2016-11-14 20:22:16','2020-05-28 21:14:08'),(634,'An individual who makes the final use of goods and services provided by a firm is the','manufacturer','wholesaler','consumer','retailer','','','c','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-06-05 21:55:09'),(635,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','cartel','trust','holding company','consortium','','','a','','wassce','1990',42,'Admin','2016-11-14 20:22:16','2020-07-04 01:21:28'),(636,'When a business is insolvent it may result in','incorporation','recuperation','liquidation','restoration','','','c','','wassce','1990',36,'Admin','2016-11-14 20:22:16','2020-07-04 01:15:58'),(637,'In insurance the term Uberrimaefidei stands for','utmost good faith','subrogation','insurable interest','indemnity against loss','','','a','','wassce','1990',49,'Admin','2016-11-14 20:22:16','2020-07-04 01:24:24'),(638,'Fidelity guarantee is an insurance cover against loss arising from','trade debts','personal accidents','dishonest staff','fire disaster','','','c','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-04 01:15:58'),(639,'Which of the following is a type of marine insurance?','Endowment','Freight','Accident','Fidelity','','','b','','wassce','1990',32,'Admin','2016-11-14 20:22:17','2020-06-21 12:51:16'),(640,'The word Ltd written after the name of a company means that','the individual member’s capital is limited','the total sum of the company’s capital is limited','members are liable to the extent of their holding','company’s location is limited','','','c','','wassce','1990',43,'Admin','2016-11-14 20:22:17','2020-05-28 21:16:04'),(641,'Which of the following is a public corporation? The','Nigeria Breweries Limited','Nigerian Ports Authority','Lagos Chamber of Commerce','Nigerian Bottling Company','','','b','','wassce','1990',47,'Admin','2016-11-14 20:22:17','2020-06-05 23:11:52'),(642,'Which of the following is not required in a Memorandum of Association? The','name of the company','location of the company','names of the Board of Directors','limitation of member’s liability','','','c','','wassce','1990',44,'Admin','2016-11-14 20:22:17','2020-06-17 12:38:35'),(643,'The amount paid by the insurance company to the insured upon giving up his policy is called','Surrender value','cash bonus','assured sum','dividend','','','a','','wassce','1990',38,'Admin','2016-11-14 20:22:17','2020-06-21 12:49:52'),(644,'The amount paid by the assured to the insurer is called','interest','premium','dividend','indemnity','','','b','','wassce','1990',55,'Admin','2016-11-14 20:22:17','2020-07-04 01:24:25'),(645,'With the exception of life assurance and personal accident insurance, contracts of insurance are contracts of','premium','indemnity','proximate cause','utmost good faith','','','b','','wassce','1990',44,'Admin','2016-11-14 20:22:17','2020-06-03 12:51:44'),(646,'An author’s exclusive right to published and unpublished works is known as','patent right','fundamental human right','copyright','authorship','','','c','','wassce','1990',42,'Admin','2016-11-14 20:22:17','2020-06-17 12:38:35'),(647,'The cost which is incurred as a result of failure to load or unload a ship at the ports within a specified period is referred to as','demurrage charges','premium charges','trade charges','excess charges','','','a','','utme','2016',50,'Admin','2016-11-14 20:59:47','2020-07-04 01:24:25'),(648,'The process whereby a firm directs its marketing efforts towards a single market by the use of a particular marketing mix is referred to as','concentration segmentation','marketing concept','consumer orientation','market penetration','','','d','','utme','2016',53,'Admin','2016-11-14 20:59:49','2020-06-21 12:46:03'),(649,'The function of money that is mostly affected by inflation is','store of value','medium of exchange','measure of value','unit of account','','','a','','utme','2016',56,'Admin','2016-11-14 20:59:49','2020-06-21 12:52:04'),(650,'Ordinary warehouse is usually owned and used by','government','agents','retailers','wholesalers','','','d','','utme','2016',55,'Admin','2016-11-14 20:59:49','2020-06-06 17:47:17'),(651,'The winding up of a firm by a resolution of its shareholders is an example of','voluntary liquidation','bankruptcy','recession','involuntary liquidation.','','','a','','utme','2016',43,'Admin','2016-11-14 20:59:49','2020-07-04 01:15:58'),(652,'Which of the following is used for temporary storage of data on a computer?','RAM.','ROM.','floppy disk.','flash disk.','','','a','','utme','2016',53,'Admin','2016-11-14 20:59:49','2020-06-07 15:26:41'),(653,'An advantage of the Second-Tier Securities Market to an economy is in','creating avenues for investment','regulating competition amongst companies','granting financial assistance to consumers','increasing companies profit margins-.','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:49','2020-07-06 18:47:54'),(654,'The  lumbering of trees by a furniture company is an example of','primary production','secondary production','tertiary production','Indirect production','','','a','','utme','2016',48,'Admin','2016-11-14 20:59:49','2020-07-05 14:08:23'),(655,'Which of the following types of occupation involves services that can be referred to as auxiliaries’ trade?','Constructive occupation','Manufacturing occupation.','Industrial occupation.','Commercial occupation','','','d','','utme','2016',62,'Admin','2016-11-14 20:59:49','2020-05-28 21:16:19'),(656,'The transformation of cotton into clothing is an example of','secondary production','tertiary production','primary production','direct production','','','a','','utme','2016',43,'Admin','2016-11-14 20:59:50','2020-05-28 21:15:24'),(657,'A basic concept of advertising that reveals the essential message an advertiser wishes to communicate is referred to as the','medium','theme','target','reach','','','a','','utme','2016',49,'Admin','2016-11-14 20:59:50','2020-06-21 12:46:37'),(658,'The type of wholesaler that combines selling, delivery and collection in one operation is','specialist   wholesaler','rack jobber','drop shipment','truck. wholesaler','','','a','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-06-14 23:22:42'),(659,'Given: - [Index of export price] / [Index of import price]  x 100  The formula can be used to determine the','terms of payment','balance of payments','terms of trade','import tariffs.','','','c','','utme','2016',54,'Admin','2016-11-14 20:59:50','2020-05-28 21:17:37'),(660,'Commission on turnover is usually a benefit accruable to the','drawer','drawee','payer','payee','','','d','','utme','2016',49,'Admin','2016-11-14 20:59:50','2020-06-04 05:19:44'),(661,'Avast is an example of','a web browser','a search engine','an antivirus','a spread sheet','','','c','','utme','2016',53,'Admin','2016-11-14 20:59:50','2020-07-04 01:14:19'),(662,'The component of balance of payments which shows how the balance of both current and capital accounts are settled is \t\t\tknown as','current account','monetary movement account','capital account.','social welfare account','','','b','','utme','2016',57,'Admin','2016-11-14 20:59:50','2020-05-28 21:13:53'),(663,'The act of interpreting ideas within an organization is','motivating','organizing','planning .','communicating','','','d','','utme','2016',44,'Admin','2016-11-14 20:59:50','2020-05-28 21:17:22'),(664,'One of the duties of the employer to his employee is to','delegate his duties to other staff','charge the employee on the use of equipment','serve faithfully and honestly','provide job security.','','','d','','utme','2016',53,'Admin','2016-11-14 20:59:50','2020-06-21 12:47:26'),(665,'The buying and selling of goods and services is referred, to as','trading','marketing','insurance','advertising','','','a','','utme','2016',55,'Admin','2016-11-14 20:59:50','2020-07-04 01:30:02'),(666,'A document that serves as an instrument for preferential tariff is referred to as','an indent','a certificate of origin','a consular invoice','an advice note.','','','b','','utme','2016',55,'Admin','2016-11-14 20:59:50','2020-07-04 01:30:02'),(667,'Funds used for paying wages, salaries and payments for raw materials are categorized under','liquid capital','circulating capital','fixed capital','nominal capital.','','','b','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-05-30 18:05:44'),(668,'A formal letter to a dealer to enquire details about certain items for sale is referred to as','an inquiry','an invoice','an order','a quotation','','','a','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-05 16:18:17'),(669,'The pricing policy that seeks ,to set .prices relatively high in order to attract the wealthy segment of the market is','target return pricing','market skimming','variable pricing.','market penetration','','','b','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-07 07:46:12'),(670,'In the transportation industry, dead freight is used to describe the','cost paid for an empty space left in the ship','charge for each day a performance was delayed','persons that hire a ship for a specific purpose.','cost of shipping a particular cargo for a specific voyage','','','a','','utme','2016',47,'Admin','2016-11-14 20:59:50','2020-07-04 01:24:25'),(671,'When expenses on trading are deducted, the result is the','rate of turn over','net profit','gross profit','cost of goods sold.','','','b','','utme','2016',74,'Admin','2016-11-14 20:59:50','2020-06-17 12:38:34'),(672,'A supplier of flour who intends to sign a contract with a baker \tthrough post can establish a binding agreement only','after the offeror has made an offer.','when the offeror’s letter has reached the offeree.','when the. Offeree’s letter has been posted.','after the offeree’s letter has been received by the offeror.','','','d','','utme','2016',44,'Admin','2016-11-14 20:59:50','2020-06-02 17:01:47'),(673,'Which of the following is a modern trend in retailing?','Kiosk','Mobile shop','Vending machine.','Tied shop','','','c','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-05-28 21:16:46'),(674,'Which of the following is a traditional medium of communication used to mark festivals?','Palm frond.','Metal gong.','Talking drum.','Gun blast.','','','c','','utme','2016',55,'Admin','2016-11-14 20:59:50','2020-07-04 01:15:58'),(675,'One of the functions of the retailer is','granting credit facilities to close relatives','provision of after-sales services','branding and packaging of goods.','warehousing of goods.','','','b','','utme','2016',53,'Admin','2016-11-14 20:59:50','2020-06-21 12:48:40'),(676,'One of the factors of determining the volume of production is','availability of forex','availability of storage facilities.','the location of the business.','the number of skilled manpower.','','','b','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-07-05 20:20:17'),(677,'Which of the following is the best method for computing working capital?','Total assets less current liabilities.','Current liabilities less current assets.','Fixed liabilities less current assets.','Current assets less current liabilities.','','','a','','utme','2016',55,'Admin','2016-11-14 20:59:50','2020-06-17 12:38:35'),(678,'The minimum lending rate of a bank is a component of its','current assets','debit balance.','credit balance.','fixed assets.','','','a','','utme','2016',49,'Admin','2016-11-14 20:59:51','2020-05-28 21:15:29'),(679,'One of the functions of the Nigerian Ports Authority is that it','gives preferential treatment to Nigerian investors','provides credit facilities to importers.','encourages the growth of infant industries.','provides warehousing facilities at the docks.','','','d','','utme','2016',55,'Admin','2016-11-14 20:59:51','2020-07-04 01:13:49'),(680,'An ancillary to trade which promotes socio-cultural development all over the world is','transportation','communication','tourism.','insurance.','','','c','','utme','2016',61,'Admin','2016-11-14 20:59:51','2020-06-06 17:47:17'),(681,'An association that acts as a watchdog between  entrepreneurs and government to protect trade from any unfavourable laws is said','cartel','syndicate','Chamber of Commerce','Nigeria Bar Association.','','','c','','utme','2016',52,'Admin','2016-11-14 20:59:51','2020-06-21 12:51:58'),(682,'Labour as an input in production can be motivated by','training','profit.','remuneration.','promotion','','','c','','utme','2016',52,'Admin','2016-11-14 20:59:51','2020-06-21 12:50:41'),(683,'Discharging certain duties by an organization to the public to gain high patronage is a concern of financial responsibility','economic responsibility.','legal responsibility.','financial responsibility.','social responsibility.','','','d','','utme','2016',58,'Admin','2016-11-14 20:59:51','2020-06-09 05:44:47'),(684,'Complying with the rules relating to the conduct of business activities in a country is an aspect of','cultural environment.','demographic environment.','legal environment','politician environment','','','c','','utme','2016',54,'Admin','2016-11-14 20:59:51','2020-06-20 18:34:20'),(685,'Which of the following is NOT backed by gold but by government securities?','Fiduciary note.','Fiat money.','Token money.','Commodity money.','','','a','','utme','2016',47,'Admin','2016-11-14 20:59:51','2020-05-28 21:17:27'),(686,'Which of the following is a legal tender?','Cheque.','Traveller’scheque.','Bank note','Goldsmith receipt.','','','c','','utme','2016',47,'Admin','2016-11-14 20:59:51','2020-05-28 21:14:48'),(687,'Where a manufacturer collects money from wholesalers in exchange for goods produced is referred to as','charge account.','trading checks.','trade credit.','I owe you.','','','c','','utme','2016',47,'Admin','2016-11-14 20:59:51','2020-06-21 12:53:02'),(688,'Quantity discount is offered mainly to persuade the buyer to','defer payment.','make prompt purchases.','make advance payment.','purchase more','','','b','','utme','2016',68,'Admin','2016-11-14 20:59:51','2020-05-28 21:17:14'),(689,'The placement of workers based on their qualifications can be categorized under','public sector','skilled labour','private sector.','unskilled labour','','','b','','utme','2016',44,'Admin','2016-11-14 20:59:51','2020-05-28 21:17:44'),(690,'A group of computers that exchange data is referred to as','an information bank.','a network.','a database.','an intranet site.','','','b','','utme','2016',42,'Admin','2016-11-14 20:59:51','2020-06-05 21:55:09'),(691,'The form of credit sales common to low income groups is','hire purchase','club trading','book-me-down.','credit trading.','','','a','','utme','2016',54,'Admin','2016-11-14 20:59:51','2020-06-13 21:50:18'),(692,'Petrol voucher is an example of a','bank draft.','legal tender.','token money','partial money.','','','d','','utme','2016',43,'Admin','2016-11-14 20:59:51','2020-06-21 12:49:40'),(693,'One of the major reasons for merger is to','reduce the number of unskilled manpower','increase the number of skilled manpower.','prevent liquidation.','liberalize the market.','','','c','','utme','2016',52,'Admin','2016-11-14 20:59:51','2020-06-07 21:59:23'),(694,'A major function of commerce is to','facilitate human satisfaction through exchange','eliminate trade barriers','provide raw materials for manufacturers','influence government policies','','','a','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-04 01:24:25'),(695,'The major factors that facilitate merchandising are','communication, advertising and banking','trading, warehousing and production','management, insurance and advertising','banking, insurance and transportation.','','','d','','utme','2000',42,'Admin','2016-11-14 21:29:41','2020-05-28 21:17:17'),(696,'Production involves','making goods available where and when needed','changing the form of goods, moving and making them available as needed','the manufacturing of goods and provision of services','the assembling of all necessary parts to produce a finished product.','','','b','','utme','2000',44,'Admin','2016-11-14 21:29:44','2020-07-05 19:44:36'),(697,'The application of division of labour should generally bring about','increase in the quantity of goods and services','increase in the variety of goods and services','cheapness of goods and services','cost efficiency in the production of goods and services.','','','a','','utme','2000',40,'Admin','2016-11-14 21:29:44','2020-06-15 00:24:01'),(698,'The term Plc implies that the shares are available','to the public at the company','privately on the stock exchange','publicly on the stock exchange','publicly in commercial banks.','','','c','','utme','2000',48,'Admin','2016-11-14 21:29:45','2020-06-02 22:53:54'),(699,'Which of these is both merit and demerit in partnership?','The number of partners','Its unlimited nature','The bearing of risk','The withdrawal of a major partner.','','','a','','utme','2000',55,'Admin','2016-11-14 21:29:45','2020-06-05 16:26:04'),(700,'The measure of independence available to the individual business units that come together is the main difference between','vertical and horizontal, integration','mergers and acquisitions','consortium and amalgamation','trust and cartel.','','','b','','utme','2000',47,'Admin','2016-11-14 21:29:45','2020-05-28 21:15:26'),(701,'Government policies relating to the establishment and operations of businesses are targeted at','increasing the profits of business owners','the general improvement of the economy','even spread of facilities and employment','diversification and expansion of businesses.','','','b','','utme','2000',46,'Admin','2016-11-14 21:29:45','2020-07-04 01:13:49'),(702,'On liquidation of a public limited liability company, the residual owners are the','creditors','ordinary   shareholders','preference shareholders','debenture holders.','','','b','','utme','2000',40,'Admin','2016-11-14 21:29:45','2020-07-04 01:21:28'),(703,'Bank overdraft as a short term source of fund is','an overdrawn account','granted to a newly opened account','repayable after more than a year','a current liability.','','','d','','utme','2000',61,'Admin','2016-11-14 21:29:45','2020-06-02 22:50:01'),(704,'The share capital value that forms part of the balance sheet total is the','paid-up share capital','called-up share capital','authorized share capital','issued share capital.','','','a','','utme','2000',41,'Admin','2016-11-14 21:29:45','2020-05-28 21:16:57'),(705,'The main factors militating against the rapid growth of trade in Nigeria are','inadequate transportation network and huge capital outlay','lack of motivation and government attitude towards trade','lack of good transportation network and insecurity of investments','huge capital outlay and government attitude to trade.','','','a','','utme','2000',50,'Admin','2016-11-14 21:29:45','2020-06-03 15:33:33'),(706,'The current trends in retailing competition in Nigeria are','advertising and sales promotion strategies','branding, enterprising and differentiation of goods and services','self-service, after-sales services and branding strategies','after-sales services and sales promotion strategies.','','','a','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-05-28 21:16:27'),(707,'The function of a merchant wholesaler is to','buy in bulk, store and sell to retailers as desired','possess title to the goods, store and sell to retailers','bring buyers and sellers together','find markets for producers’ finished goods.','','','a','','utme','2000',49,'Admin','2016-11-14 21:29:45','2020-07-06 19:29:39'),(708,'An invoice can be described as a','contractual agreement for the sale of goods','document specifying quantity, description, prices and total value of purchases','receipt containing necessary information about the goods','letter specifying the contractual sales of goods between two parties.','','','b','','utme','2000',54,'Admin','2016-11-14 21:29:45','2020-06-26 10:59:28'),(709,'Ocean liners are subdivided into','passenger liners and cargo liners','coastal liners and cargo liners','cargo liners and tramp liners','passenger liners and tramp liners.','','','a','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-06-21 12:48:24'),(710,'Tourists with no fixed address in a town may receive their letters from the post office through a','recorded delivery','poste restante','parcel post','postmaster.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-07-04 01:21:28'),(711,'The insurance principle that requires full disclosure of information on the insured is known as','indemnity','uberrimaefidei','subrogation','caveat emptor.','','','b','','utme','2000',64,'Admin','2016-11-14 21:29:45','2020-06-21 12:50:49'),(712,'Mr. Olatunde took up a fire insurance on a property valued at N 1000 and the amount insured is  N800. The property caught fire causing a loss of  N400. If the insurance was taken with the \tclause ‘with average’, what is the amount to be paid by the insurance company?','N320','N420','N460','N560.','','','a','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-07-04 01:21:28'),(713,'The Central Bank differs from commercial banks because it','renders service to customers','carries out foreign exchange transactions','issues currencies','discounts bills.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-05-28 21:16:32'),(714,'A bank form used to transfer money from personal to creditor’s account is called','debit transfer form','credit transfer form','customer transfer form','bank transfer form.','','','a','','utme','2000',46,'Admin','2016-11-14 21:29:45','2020-05-28 21:17:25'),(715,'The computer using linear integrated circuit technology coupled with quantification of data in terms of length and distance is known as','digital computer','analogue computer','mainframe computer','hybrid computer.','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-05 16:27:05'),(716,'A printer that burns the print image onto the photosensitive drum is called','dot matrix printer','daisy wheel printer','laser printer','thermal printer.','','','c','','utme','2000',48,'Admin','2016-11-14 21:29:45','2020-06-21 12:44:32'),(717,'A console is a device used in','moving an indicator on the screen','communicating between operator and programme','holding magnetic tape reel','forming characters by heating sensitive ribbon.','','','a','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-07-04 01:15:58'),(718,'A form of money that has gone out of use is','paper money','bank money','commodity money','foreign money.','','','c','','utme','2000',49,'Admin','2016-11-14 21:29:45','2020-05-28 21:17:36'),(719,'The major condition for obtaining loan in thrift, credit and loans cooperative societies is','provision of collateral security','a high level of education','possession of a large business','an approved project plan.','','','a','','utme','2000',52,'Admin','2016-11-14 21:29:45','2020-07-04 01:13:49'),(720,'The Stock Exchange helps to provide capital for industrial projects because it','determines value of shares, stocks and other securities','assists government in implementing its monetary policies','assists companies to change their securities into cash','renders agency services to organizations and governments.','','','c','','utme','2000',42,'Admin','2016-11-14 21:29:45','2020-05-28 21:16:20'),(721,'A shortcoming of the Second-tier Foreign Exchange Market in Nigeria is that it','serves as a mechanism for evaluating an unrealistic exchange rate for the naira','creates unhealthy competition amongst users of foreign exchange','contributes to destabilizing national resource allocation','contributes to flooding the market with foreign essential commodities.','','','b','','utme','2000',55,'Admin','2016-11-14 21:29:46','2020-07-04 01:14:19'),(722,'The chart above represents the','product mix relationship','marketing mix relationship','promotion mix relationship','advertising mix relationship.','','','b','','utme','2000',49,'Admin','2016-11-14 21:29:46','2020-05-28 21:16:27'),(723,'A group of specialized functions of marketing is','buying, selling, storing and information','buying, selling, advertising and packaging','buying, selling, labelling and promotion','buying, selling, skimming and pricing.','','','c','','utme','2000',57,'Admin','2016-11-14 21:29:46','2020-06-21 12:52:18'),(724,'The type of advertising that seeks to persuade consumers to buy a particular product is','informative advertising','competitive advertising','persuasive advertising','mass and specific advertising.','','','c','','utme','2000',53,'Admin','2016-11-14 21:29:46','2020-07-04 01:24:24'),(725,'The practice whereby soft drink manufacturers give away caps, bags and other items when consumers buy their product is a \t\tform of','marketing strategy','publicity','advertising','sales promotion.','','','d','','utme','2000',62,'Admin','2016-11-14 21:29:46','2020-06-18 06:47:29'),(726,'The most important advantage of personal selling is that it','allows sellers to perceive buyers’ needs','allows sellers to sell their goods quickly','takes place easily on the highways','takes place without the permission of government.','','','a','','utme','2000',55,'Admin','2016-11-14 21:29:46','2020-05-28 21:13:04'),(727,'The role of public relations is principally to','sustain good relationship','create good image','carry out publicity','advertise a firm’s products.','','','b','','utme','2000',51,'Admin','2016-11-14 21:29:46','2020-06-17 12:38:35'),(728,'The basic elements of a valid contract are','offer, acceptance, consideration and witness','offer, intention, acceptance and legality','offer, acceptance, intention, capacity and legality','offer, acceptance, capacity, legality and consideration.','','','d','','utme','2000',49,'Admin','2016-11-14 21:29:46','2020-06-21 12:49:00'),(729,'A bus driver operating between Lagos and Jos pledged the owner’s credit in Benin in order to have the engine repaired and the bill sent to the owner. This is a case of','del credere agency','agency by necessity','agency by ratification','agency by estoppel.','','','b','','utme','2000',55,'Admin','2016-11-14 21:29:46','2020-07-04 01:21:28'),(730,'After registration, a certificate of trading is usually issued to a','partnership','public company','private company','sole proprietorship.','','','b','','utme','2000',40,'Admin','2016-11-14 21:29:46','2020-05-28 21:17:21'),(731,'An aspect of the law which allows an exclusive right for a limited number of years is a','copyright','trade mark','ratification','patent','','','d','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-06-01 15:59:44'),(732,'The first known legislation to protect consumer rights in Nigeria is the','Usury Laws','Hire Purchase Act','Sale of Goods Act','Food and Drugs Act.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:46','2020-06-08 06:41:19'),(733,'The main difference between nationalization and indigenization is in terms of','shareholding','profit','technology','efficiency.','','','b','','utme','2000',59,'Admin','2016-11-14 21:29:46','2020-05-28 21:17:26'),(734,'The primary objectives of a trade association is to','undertake research work on behalf of members','establish easy link with government','exchange information and negotiate as a pressure group','operate as a group against other groups.','','','c','','utme','2000',64,'Admin','2016-11-14 21:29:46','2020-05-28 21:16:43'),(735,'A chamber of commerce is an association made up of','entrepreneurs','manufacturers','merchants','importers.','','','b','','utme','2000',54,'Admin','2016-11-14 21:29:46','2020-07-04 01:14:19'),(736,'The composite functions of management are','planning, supervising, communicating','planning, controlling, organizing and directing','coordinating,  supervising,  staffing  and communicating','directing,  supervising, motivating and controlling.','','','b','','utme','2000',48,'Admin','2016-11-14 21:29:46','2020-06-15 00:24:01'),(737,'The three components of staffing are','recruitment, selection and placement','recruitment, interview and appointment','recruitment, test and placement','recruitment, procurement and appointment','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:46','2020-05-28 21:17:42'),(738,'The legal aspect of business is designed to','protect business organizations and consumers','safeguard consumers from undue business practices','protect infant industries from collapse','encourage free exchanges among businesses.','','','a','','utme','2000',54,'Admin','2016-11-14 21:29:46','2020-06-21 12:51:57'),(739,'In an organization, civic consideration arises from','the profit derived from the environment','its operations within the environment','its social negative impacts on the community','the fact that it is registered in that locality','','','b','','utme','2000',46,'Admin','2016-11-14 21:29:46','2020-05-28 21:15:54'),(740,'The instrument establishing the Economic Community of West African States in 1975 is','a decree','an act','a treaty','constitution','','','c','','utme','2000',52,'Admin','2016-11-14 21:29:46','2020-05-28 21:16:07'),(741,'One of the functions of the Niger Basin Commission is to','ensure equal treatment of African nations','foster closer co-operation among West African nations','map out regulations that will guide all forms of navigation','guarantee freedom of navigation for all West African nations.','','','c','','utme','2000',55,'Admin','2016-11-14 21:29:46','2020-07-04 01:24:25'),(742,'The pivot on which the wheel of commerce rotates is','tariff','trade','taxation','price.','','','d','','utme','2001',73,'Admin','2016-11-15 07:01:48','2020-05-28 21:15:59'),(743,'A distinguishing characteristic of labour is that it is','constant','expensive','mobile','cheap','','','c','','utme','2001',78,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:25'),(744,'Land as a factor of production does not vary in','quantity','nature','quality \t\t\t\t.','cost.','','','b','','utme','2001',82,'Admin','2016-11-15 07:01:48','2020-05-28 21:15:03'),(745,'Which of the following services does a lawyer render?','industrial services','indirect services','direct services','commercial services.','','','c','','utme','2001',80,'Admin','2016-11-15 07:01:48','2020-07-04 01:13:49'),(746,'The partner that only contributes part of the capital used in the formation and running of a business is known as','a passive partner','an active partner','a dormant partner','a nominal partner.','','','c','','utme','2001',78,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:05'),(747,'One major advantage of a credit and thrift cooperative is that','it can approach government for a loan','it encourages saving habits','there are no legal restrictions','each member has a vote during meetings.','','','b','','utme','2001',84,'Admin','2016-11-15 07:01:48','2020-07-04 01:21:28'),(748,'A form of ownership which exploits the strength of one partner to remedy the weaknesses of the other is a','joint partnership','cooperative','corporation','joint venture.','','','a','','utme','2001',81,'Admin','2016-11-15 07:01:48','2020-06-17 21:05:20'),(749,'At the collapse of a business enterprise, the person appointed to dispose of the assets is called','a broker','an auctioneer','a liquidator','an auditor.','','','c','','utme','2001',83,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:25'),(750,'Entrusting the management of a company to the courts to enable the settlement of the company’s obligations is an indication of','distress','closure','bankruptcy','liquidation.','','','c','','utme','2001',76,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:44'),(751,'The financial instrument for borrowing in which the collateral is usually more than the amount borrowed is','trust certificate','detachable warrant','mortgage bond','convertible securities.','','','c','','utme','2001',81,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:17'),(752,'I.   Personal Savings, II.   Retained Earnings, III. Accrued Taxes. Which of the items above constitute internal sources of financing for companies?','I and II','I and III','II and III','I, II and III.','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-06-03 17:59:32'),(753,'The difference between total current assets and total current liabilities of a business is known as','quick ratio','liquidity ratio','working capital','circulating capital.','','','c','','utme','2001',83,'Admin','2016-11-15 07:01:48','2020-07-04 01:21:28'),(754,'One of the reasons why wholesaling must continue is that','the tax paid by wholesalers on their profit enhances national revenue','by creating artificial scarcity, the wholesaler is enhancing competition in the economy','the wholesaler provides technical advice to the retailer','the gap between manufacturers and retailers is reduced by wholesalers.','','','d','','utme','2001',93,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:33'),(755,'A merchant wholesaler is referred to as','del-credere agent','a broker','rack jobber','a factor.','','','a','','utme','2001',80,'Admin','2016-11-15 07:01:48','2020-05-28 21:17:28'),(756,'A pro-forma invoice is sent to inform a buyer about the','quantity of goods','prices of goods','designation of goods','quality of goods.','','','c','','utme','2001',77,'Admin','2016-11-15 07:01:48','2020-06-17 21:27:38'),(757,'The balance of payments of countries is','a record of imports and exports','a systematic record of transactions among countries at a given time','the current and the capital accounts and their payments','the trade relationships and payments among nations.','','','a','','utme','2001',64,'Admin','2016-11-15 07:01:48','2020-06-18 06:47:29'),(758,'The major procedures in the purchase and sale of goods are enquiry','quotation, order and invoice','placement, order and invoice','bargain, order and invoice','order, sale and invoice.','','','a','','utme','2001',76,'Admin','2016-11-15 07:01:48','2020-06-05 21:55:09'),(759,'The trade discount receivable by Mr. Bacus is','N= 4,500','N= 7,500','N= 10,500','N= 12,000.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',81,'Admin','2016-11-15 07:01:49','2020-07-04 01:14:19'),(760,'If  Mr. Bacus fulfils his promise, he will be entitled to a cash discount of','N= 2,760','N= 3,000','N= 6,500','N= 9,500.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',70,'Admin','2016-11-15 07:01:49','2020-06-07 16:30:54'),(761,'Bank Giro is a method of settling debt from a','customer to a bank','bank to a customer','customer to another','bank to another.','','','a','','utme','2001',81,'Admin','2016-11-15 07:01:49','2020-07-04 01:21:28'),(762,'Warehousing is a productive function because it increases the','quantity of goods','utility of goods','quality of goods','price of goods.','','','a','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:26'),(763,'A factor necessary for siting a warehouse is nearness to','raw materials','labour','capital','consumers.','','','d','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-06-21 12:50:27'),(764,'Pooling of risk in insurance means that','compensations are paid out of a common fund','two people can pool their risks to be insured','two insurance companies can buy two policies','insurance companies should encourage taking risks','','','a','','utme','2001',78,'Admin','2016-11-15 07:01:49','2020-05-28 21:14:14'),(765,'The indemnification of Ama by his insurance company after a fire disaster means that he','has been guaranteed by the insurance company','will be cleared of any fault by the insurance company','has been covered by the insurance company','will be covered to the limit of the amount in the policy.','','','b','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-07-04 01:13:49'),(766,'The major difference between insurance and assurance is that while insurance','takes care of uncertainty, assurance takes care of risks','takes care of risks, assurance takes care  uncertainty','hinges on probabilities, assurance is based on possibilities','is about indemnity assurance is about life in the future.','','','c','','utme','2001',81,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:13'),(767,'A documentary bill will normally be accompanied by','sales invoice, bill of lading and insurance certificate','clean bill, bill of lading and insurance certificate','bill of lading, consular invoice and insurance certificate','consular invoice, FOB certificate and bill of  lading.','','','d','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-06-26 10:59:35'),(768,'Which of the following best describes the classification of computers?','Mini-computer, speed and size','Micro-computer, cost and abilities','Mini-computer, micro-computer and work station','Mini-computer, hybrid and digit','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-06-02 22:55:42'),(769,'The temporary working area of the central processing unit is called the','C-D ROM','C-D RAM','ROM','RAM.','','','b','','utme','2001',75,'Admin','2016-11-15 07:01:49','2020-06-15 00:24:01'),(770,'The significance of money to modern economic systems is that it','is used as a means payment','promotes specialization and exchange','measures value and promotes exchange','causes inflation and deflation in the economy','','','c','','utme','2001',67,'Admin','2016-11-15 07:01:49','2020-05-28 21:15:35'),(771,'One major characteristic of credit unions and thrift societies is that','the legal processes involved in their formation are rigid','membership compulsory to people in the same line of  business','the contribution of every member depends the member’s ability','a minimum of ten people in the same line of business can form the union','','','c','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-05-28 21:16:28'),(772,'The Nigerian Stock Exchange publishes a daily official list that gives full information on the','method of transactions agreed to by members','number of participating members in a day','changes in the prices and earnings of security','changes in the official rules set by the man','','','c','','utme','2001',70,'Admin','2016-11-15 07:01:49','2020-07-04 01:24:25'),(773,'The main factors that determine the value stock on the Stock Exchange are dividend an','the psychology of the market','capital gain','capital appreciation','warrant payment','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-06-02 10:21:57'),(774,'One of the main objectives of the Second- tier Securities Market in Nigeria is to','achieve a realistic exchange rate for the naira','eliminate currency  dealings in the black market','assist companies to raise capital','attract investment flow.','','','d','','utme','2001',69,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:02'),(775,'The activities aimed at finding out customers’ needs and satisfaction can be described as','socio-marketing','macro-marketing','micro-marketing','conceptual marketing.','','','d','','utme','2001',76,'Admin','2016-11-15 07:01:49','2020-06-21 12:48:17'),(776,'The most effective type of advertising for branded products is','direct advertising','indirect advertising','informative advertising','competitive advertising.','','','d','','utme','2001',73,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:42'),(777,'Which of these companies are more engaged in public relations activities?','I and II','I and III','II and IV','Ill and IV.','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','b','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-06-21 12:45:24'),(778,'Which of these companies offers after-sales services?','IV','Ill','II','I','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','c','','utme','2001',71,'Admin','2016-11-15 07:01:49','2020-05-28 21:15:47'),(779,'Who are the parties to the contract of renting the room?','Musa and Jacob','Musa and Audu','Adamu and Musa','Audu and Jocob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-06-21 12:52:51'),(780,'Who is the offeree in this contract?','Musa','Audu','Adamu','Jacob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-05 16:27:05'),(781,'The maximum number of shareholders in a public liability company is','twenty','fifty','one hundred','unlimited.','','','d','','utme','2001',80,'Admin','2016-11-15 07:01:49','2020-05-28 21:17:31'),(782,'One way by which government reduces the repatriation of capital   is through','nationalization','divestiture','indigenization','naturalization.','','','c','','utme','2001',70,'Admin','2016-11-15 07:01:49','2020-05-28 21:14:31'),(783,'One of the major functions of a chamber of commerce is to','promote and protect trade, industry and agriculture','advise members on regulations of other countries','settle disputes that arise out of trade','publish books and periodicals desired by members.','','','a','','utme','2001',74,'Admin','2016-11-15 07:01:49','2020-06-21 12:44:58'),(784,'Departmentalization is an aspect of','planning','organizing','directing','controlling.','','','b','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-05-28 21:15:26'),(785,'A functional organizational structure is where','staff performing the same functions are grouped together','departments performing similar functions are grouped together','activities of similar nature are-grouped together','staff performing similar functions are grouped together.','','','c','','utme','2001',69,'Admin','2016-11-15 07:01:49','2020-07-05 16:27:05'),(786,'In the line type of organizational structure','the lines of authority are vertical','there is the application of division of labour','specialization is carried to a maximum degree','the lines of authority are horizontal.','','','c','','utme','2001',67,'Admin','2016-11-15 07:01:49','2020-06-17 12:38:35'),(787,'Proper disposal of waste by business firms is one way of discharging their','responsibility to government','environmental responsibility','community responsibility','responsibility to customers.','','','b','','utme','2001',64,'Admin','2016-11-15 07:01:49','2020-06-07 23:48:24'),(788,'One of the obstacles  to achieving the objectives of ECOWAS is','lack of a common currency','colonial linkages','sovereignty of states','language differences.','','','d','','utme','2001',89,'Admin','2016-11-15 07:01:49','2020-07-04 01:30:02'),(789,'One of the main objectives of establishing the Niger River Basin Commission was to','embark on a comprehensive survey of the available water resources','carry out research for the development of fresh water fisheries','develop infrastructure to facilitate economic activities','promote trade among member-states to improve standards of living.','','','c','','utme','2001',77,'Admin','2016-11-15 07:01:50','2020-06-21 12:45:07'),(790,'The most important factor that delayed the development of commerce in Nigeria was','the inefficient means of communication','that there were few entrepreneurs','the unavailability of infrastructure facilities','that there were few developed markets.','','','c','','utme','2002',116,'Admin','2016-11-15 07:26:05','2020-06-02 22:55:42'),(791,'Secondary production has to do with changing the','shape of raw materials through construction operations','physical form of raw materials into finished goods','utility of raw materials by an engineering process','nature of raw materials through manufacturing processes.','','','b','','utme','2002',127,'Admin','2016-11-15 07:26:08','2020-07-04 01:24:25'),(792,'The major responsibility of an entrepreneur is','employing all factors of production in the business','coordinating and determining the proportion of what to produce','planning and organizing all activities in the business','directing and controlling all the affairs of the business.','','','a','','utme','2002',113,'Admin','2016-11-15 07:26:08','2020-07-05 14:08:23'),(793,'Which of the following best describes the scope of commerce?','All forms of commercial exchanges and the manufacturing industry','Buying and selling and the construction industry','All occupational exchanges relating to industries and commercial activities','Buying and selling as well as the extraction of natural resources.','','','c','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-07-04 01:15:58'),(794,'Capital as a factor of production can be used as','money that is regarded as asset','goods that are useful in business','input for further production','services that provide satisfaction','','','c','','utme','2002',124,'Admin','2016-11-15 07:26:08','2020-07-06 18:47:54'),(795,'The agency that currently oversees the privatization and commercialization processes in Nigeria is the','Securities and Exchange Commission','Technical Committee on Privatization and Commercialization','Nigerian Stock Exchange','Bureau of Public Enterprises.','','','d','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-06-07 16:25:04'),(796,'Okeze contracted to sell TV sets to Ojo. Unknown to them, the sets were stolen in transit.   This contract may be terminated on the grounds of','bankruptcy','frustration','fraudulence','breach of contract.','','','b','','utme','2002',108,'Admin','2016-11-15 07:26:08','2020-06-17 12:38:36'),(797,'Which of the following countries are members the Lake Chad Basin Commission?','Niger and Cameroun','Benin and Niger','Chad and Benin','Nigeria and Mali.','','','a','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-05-28 21:16:54'),(798,'A core investor in the current phase of privatization in Nigeria is one who','can afford to buy most the shares of the enterprises','will be at the core of the enterprises','can mobilize foreign currency equivalent to the value of the enterprises','has the technical know-how of the enterprises','','','a','','utme','2002',112,'Admin','2016-11-15 07:26:08','2020-06-28 21:35:02'),(799,'The agency in Nigeria which ensures that products conform to government quality specifications is the','Standards Organization of Nigeria','Nigerian Consumers’ Association','Manufacturers’ Association of Nigeria','Nigerian Chamber of Commerce.','','','a','','utme','2002',109,'Admin','2016-11-15 07:26:08','2020-07-04 01:30:02'),(800,'Awarding scholarships and sponsoring sports by a business organization are examples of','advertising strategy','economic responsibility','marketing strategy','social responsibility','','','c','','utme','2002',118,'Admin','2016-11-15 07:26:08','2020-06-05 16:26:04'),(801,'The commercialization of public enterprises aimed at','increasing efficiency and making the enterprises self-sufficient','advertising a promoting the goods and services of the enterprises','increased assistance and patronage of the enterprises by the public','selling the goods and services of the enterprises.','','','a','','utme','2002',121,'Admin','2016-11-15 07:26:08','2020-07-04 01:13:49'),(802,'An author’s exclusive right to his published an unpublished works is known as','authors right','constitutional right','patent right','copyright','','','d','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-06-15 09:15:09'),(803,'Under the endowment policy, the money handed over to the insured at the expiration of the stipulated time or at death is the','indemnity','surrender value','lump sum benefit','insurance premium','','','c','','utme','2002',120,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:33'),(804,'The machine used for sending telex messages is known as a','radar','fax machine','Dictaphone','teleprinter.','','','b','','utme','2002',127,'Admin','2016-11-15 07:26:08','2020-07-04 01:15:58'),(805,'Which of these insurance principles requires a close connection between the actual loss suffered and the risk insured','Indemnity','Proximate cause','Contribution','Subrogation.','','','b','','utme','2002',120,'Admin','2016-11-15 07:26:08','2020-05-28 21:16:06'),(806,'The unit through which results of a processed data are displayed is the','logic unit','display unit','control unit','output unit.','','','d','','utme','2002',119,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:18'),(807,'Which of the following is used to inform the addressee that a registered parcel is ready for collection?','Express label','Counterfoil','Telegram','Slip.','','','d','','utme','2002',116,'Admin','2016-11-15 07:26:08','2020-05-30 18:05:44'),(808,'The type of computer commonly found in offices is','laptop','desktop','the hybrid computer','the mainframe computer.','','','c','','utme','2002',114,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:36'),(809,'The mode of transporting crude oil to the ports for export purposes is by','tanker','rail','road','pipeline.','','','d','','utme','2002',117,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:45'),(810,'The temporary insurance certificate issued to the insured before drawing up a policy is a','cover  note','testimonial','time policy','proposal  form.','','','a','','utme','2002',119,'Admin','2016-11-15 07:26:08','2020-06-06 13:30:40'),(811,'The bulls and bears in the Stock Exchange market help to minimize','the number of shares and bonds sold','price increases of securities','fluctuations in the prices of securities','the elasticity of the prices of securities.','','','a','','utme','2002',127,'Admin','2016-11-15 07:26:08','2020-06-21 12:45:21'),(812,'Debentures differ from shares in that','they are secured on the company’s assets','ownership is open to the public','they form part of the capital of the business','rewards are usually paid out of profits.','','','c','','utme','2002',111,'Admin','2016-11-15 07:26:08','2020-05-28 21:17:40'),(813,'The Stock Exchange is a market where','long-term securities are sold','all types of securities are sold','short-term securities are sold','medium-term securities are sold.','','','b','','utme','2002',119,'Admin','2016-11-15 07:26:08','2020-06-03 15:33:33'),(814,'A retail cooperative society aims at','hoarding manufactured goods','cutting off the profit of middlemen','lending money to members at low interest rates','encouraging members to save money.','','','b','','utme','2002',112,'Admin','2016-11-15 07:26:08','2020-05-28 21:12:32'),(815,'A bill of exchange already accepted can be discounted by the holder in','the central bank','at least two banks','his bank','any bank.','','','d','','utme','2002',115,'Admin','2016-11-15 07:26:08','2020-05-28 21:16:46'),(816,'The document issued by the seller which gives details of the goods he sells is known as','catalogue','tender','price list','invoice','','','d','','utme','2002',110,'Admin','2016-11-15 07:26:09','2020-06-07 21:43:49'),(817,'Given:  I.Retail; II.Export; III.Transport; IV.Import; V.Insurance; VI.Banking and finance; VII. Wholesale; VIII. Communication. Which of the above are aids to trade?','I, II,  III and VIII','III, V, VI and VIII','I, II, III and VI','II, V, VI and VII','','','b','','utme','2002',122,'Admin','2016-11-15 07:26:09','2020-07-04 01:30:02'),(818,'The organizational structure that relates the positions of specialists to the line managers is called','line structure','staff structure','line and staff structure','functional structure.','','','d','','utme','2002',118,'Admin','2016-11-15 07:26:09','2020-06-21 12:45:01'),(819,'A wholesaler who possesses the tittle to the goods he sells is known as','a merchant wholesaler','a multiple wholesaler','a general wholesaler','an agent wholesaler.','','','d','','utme','2002',124,'Admin','2016-11-15 07:26:09','2020-06-08 09:48:58'),(820,'An important principle of a good organizational structure is','ideal standard','span of control','clarity of mission','adequacy of resources.','','','b','','utme','2002',117,'Admin','2016-11-15 07:26:09','2020-06-08 09:48:58'),(821,'A company that is registered with the Corporate Affairs Commission only without being enlisted on the Stock Exchange is a','public liability company','joint venture company','limited company','registered company.','','','d','','utme','2002',116,'Admin','2016-11-15 07:26:09','2020-06-02 19:24:00'),(822,'A contract for the sale of goods involves the','producer, seller and the buyer of goods','offering of goods to customers','transfer of the title to goods for money','exchange of goods.','','','c','','utme','2002',113,'Admin','2016-11-15 07:26:09','2020-07-04 01:15:58'),(823,'The total of the share capital which a company would be allowed to issue is known as','called-up capital','paid-up capital','nominal capital','issued  capital.','','','d','','utme','2002',109,'Admin','2016-11-15 07:26:09','2020-05-28 21:17:03'),(824,'The process of mobilizing, engaging  and maintaining workers to work for an organization is referred to as','staffing','selection','recruitment','employment.','','','d','','utme','2002',118,'Admin','2016-11-15 07:26:09','2020-06-09 05:44:47'),(825,'Recognized members of the Stock Exchange who buy and sell securities on their own behalf are known as','bolls','jobbers','brokers','stags.','','','c','','utme','2002',113,'Admin','2016-11-15 07:26:09','2020-07-04 01:15:58'),(826,'Which of the following involves foreign trade?','Supermarkets','Chain stores','Departmental stores','Commodity markets.','','','d','','utme','2002',120,'Admin','2016-11-15 07:26:09','2020-05-28 21:17:21'),(827,'Which of the following is a function of employers’ association?','Undertaking research on behalf of employees','Promotion of thrift in workers','Promotion of workers’ welfare','Dissemination of information through sponsored journals.','','','c','','utme','2002',131,'Admin','2016-11-15 07:26:09','2020-05-28 21:17:46'),(828,'Which of the following industries is normally located near the \tsource of its raw materials?','Footwear industry','Cement industry','Textile  industry','Automobile assembly.','','','b','','utme','2002',124,'Admin','2016-11-15 07:26:09','2020-06-05 16:26:04'),(829,'One of the most important function of marketing is','encouraging research activities to meet needs','creating classes of merchants among businessmen','the extension of markets for businesses','providing finances to businesses','','','a','','utme','2002',124,'Admin','2016-11-15 07:26:09','2020-05-28 21:15:52'),(830,'Securities on which the buyers are not issued with certificates are called','authorized securities','inscribed securities','bearer securities','registered securities.','','','b','','utme','2002',118,'Admin','2016-11-15 07:26:09','2020-07-04 01:21:28'),(831,'In product pricing, which of these elements needs more consideration than others?','the demand for the product','the demography of the buyers of the product','the economic conditions in the market','the cost of producing the product.','','','d','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-06-17 21:05:20'),(832,'The principal objectives of the Central Bank of Nigeria can be classified broadly into','bankers’ bank, lender of last resort and issuance of currency','service, currency management and financial intermediation','banking services, foreign exchange operations and open','markets operations service, monetary policy and developmental functions.','','','a','','utme','2002',130,'Admin','2016-11-15 07:26:09','2020-06-21 12:50:12'),(833,'The letters E and OE stand for','errors of exception','errors  and omissions expected','estimated and order error','end of error.','','','b','','utme','2002',118,'Admin','2016-11-15 07:26:09','2020-07-06 18:47:54'),(834,'An important issue for consideration in the product element of the marketing mix is the','adequate promotion of the product','channel of distribution of the product','price of the product','planning and development of the product.','','','d','','utme','2002',117,'Admin','2016-11-15 07:26:09','2020-05-28 21:16:14'),(835,'group of companies is a collection of','subsidiaries and their holding company','firms','associates and their holding company','industries.','','','a','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-06-06 00:46:01'),(836,'Which of the following is an example of trade associations?','European Union','National Marketing Board','Organization of African Unity','National Farmers’ Council.','','','b','','utme','2002',127,'Admin','2016-11-15 07:26:09','2020-06-07 21:24:30'),(837,'Which of the following determines the quality of goods that a retailer sells','The mode of contract of sales','The type of manufacturer','The regulations regarding sales in the area','The location of his shop.','','','b','','utme','2002',125,'Admin','2016-11-15 07:26:09','2020-07-04 01:14:19'),(838,'An advantage of hire purchase to the consumer is the','economies of scale in production','possession of goods before payment','increase in turnover and profits','low interest rate chargeable.','','','b','','utme','2002',111,'Admin','2016-11-15 07:26:09','2020-05-28 21:16:06'),(839,'The founders’ shares are usually referred to as deferred shares because the holders','are entitled to cumulative dividends','receive their dividends after other shareholders','receive   their   dividends   before   other shareholders','are not entitled to any dividends.','','','a','','utme','2002',127,'Admin','2016-11-15 07:26:09','2020-05-28 21:17:37'),(840,'An example of a service -rendering trade association is','Nigerian Bar Association','Association of Nigerian Miners','Cocoa Farmers ’Association','Manufacturers ’Association of Nigeria.','','','a','','utme','2003',88,'Admin','2016-11-15 10:56:19','2020-06-21 12:45:43'),(841,'An obstacle to international trade is','trade imbalance between   countries','availability of  local market','quantity and quality of labour','cost of finance','','','a','','utme','2003',68,'Admin','2016-11-15 10:56:19','2020-05-28 21:16:38'),(842,'The right  of ownership with respect to goods or property is','right of occupancy','proxy','title','certificate of occupancy','','','c','','utme','2003',92,'Admin','2016-11-15 10:56:19','2020-07-04 01:13:49'),(843,'The main motive of chambers of commerce and trade associations is to','assist government in achieving its objectives','protect the interest of consumers','maximize profit','protect and promote the interests of members','','','a','','utme','2003',84,'Admin','2016-11-15 10:56:19','2020-07-04 01:24:25'),(844,'A pattern that shows the kinds of participants involved in the production, distribution and ultimate use of a product is referred to as','selection','strategy','structure','synergy','','','b','','utme','2003',86,'Admin','2016-11-15 10:56:19','2020-07-04 01:15:58'),(845,'Goods that are manufactured or acquired by the seller after the contract of sale are','specialty goods','future goods','specific goods','general goods','','','c','','utme','2003',80,'Admin','2016-11-15 10:56:19','2020-06-12 07:30:50'),(846,'What was the amount paid by Ojo?','N382,500','N425,000','N363,375','N61,625','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','c','','utme','2003',79,'Admin','2016-11-15 10:56:19','2020-05-28 21:11:21'),(847,'How much was the trade discount?','N42,500','N27,500','N22,500','N20,000','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','a','','utme','2003',84,'Admin','2016-11-15 10:56:20','2020-06-21 12:44:54'),(848,'The basic function of the Nigerian Ports Authority is to','ensure that the right caliber of personnel is  employed at the ports','coordinate and regulate the activities of  shipping lines','facilitate and control the movement of goods and services into and out of the country','coordinate the activities of all the seaports in the country','','','d','','utme','2003',80,'Admin','2016-11-15 10:56:20','2020-05-28 21:17:34'),(849,'The concept that refers to the sale, transfer or exchange of goods and services is','industry','trade','tariff','marketing','','','b','','utme','2003',84,'Admin','2016-11-15 10:56:20','2020-05-28 21:16:15'),(850,'A guarantee given by one person or party to another in which \tthe integrity of the person is assured is','fidelity','term assurance','subrogation','indemnity','','','a','','utme','2003',71,'Admin','2016-11-15 10:56:20','2020-05-28 21:17:13'),(851,'A firm that adapts itself to delivering the desired satisfaction more effectively and efficiently than its competitors is said to be practicing','price concept','distribution concept','product concept','marketing concept','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:20','2020-05-28 21:17:45'),(852,'The payment made periodically in respect of an insurance policy entered into is known as','bond','commission','premium','surrender value','','','c','','utme','2003',78,'Admin','2016-11-15 10:56:20','2020-06-03 17:26:46'),(853,'An example of service rendered by NIPOST is','electronic mail','courier','telephone','mail delivery','','','d','','utme','2003',86,'Admin','2016-11-15 10:56:24','2020-05-28 21:17:19'),(854,'The focal point of marketing is','the competitor','the buyer','profit-making','sales','','','d','','utme','2003',89,'Admin','2016-11-15 10:56:24','2020-07-05 19:44:36'),(855,'The type of marine insurance which covers either damage or loss to the vessel and such as caused by it to other vessels is','hull insurance','time insurance','freight insurance','cargo insurance','','','a','','utme','2003',86,'Admin','2016-11-15 10:56:24','2020-07-04 01:14:19'),(856,'The management function that makes the difference in intensity of behaviour is','coordinating','controlling','motivation','planning','','','c','','utme','2003',82,'Admin','2016-11-15 10:56:24','2020-06-21 12:48:10'),(857,'One of the functions of seaports is the provision of','berthing and landing facilities','loading and off-loading facilities','control room for relaying radio messages','warehouses for storage of cargo.','','','b','','utme','2003',84,'Admin','2016-11-15 10:56:24','2020-07-04 01:15:58'),(858,'The process of dividing tasks into jobs and departments and of delegating authority is known as','staffing','leading','directing','organizing','','','d','','utme','2003',83,'Admin','2016-11-15 10:56:25','2020-06-21 12:46:14'),(859,'Communication process involves the transmission of a message over a selected channel to the','receiver','audience','sender','encoder','','','b','','utme','2003',81,'Admin','2016-11-15 10:56:28','2020-05-28 21:17:09'),(860,'Stimulation of demand is a kind of communication in marketing which connotes','personal selling','sales promotion','advertising','merchandising','','','c','','utme','2003',77,'Admin','2016-11-15 10:56:29','2020-07-04 01:30:02'),(861,'A functional structure is an organizational structure in which','abstract rules are applied','equity prevails','a specialist enforces his directives','there is no hierarchy.','','','c','','utme','2003',73,'Admin','2016-11-15 10:56:29','2020-07-04 01:13:49'),(862,'Entrepreneurship mainly involves','risk-taking','initiating','skilled manpower','knowledge','','','a','','utme','2003',80,'Admin','2016-11-15 10:56:29','2020-05-28 21:15:18'),(863,'In the event of the liquidation of a company the first to be settled are','debenture holders','members  of the  board','preference shareholders','ordinary shareholders.','','','a','','utme','2003',87,'Admin','2016-11-15 10:56:29','2020-06-21 12:51:36'),(864,'The business organization established mainly for the purpose of carrying out specific assignments for a specific duration is a','joint venture','cooperative society','partnership','company.','','','a','','utme','2003',77,'Admin','2016-11-15 10:56:29','2020-05-28 21:11:56'),(865,'Which of these factors of production is relatively fixed in supply?','Capital','Entrepreneur','Human resources','Natural resources','','','d','','utme','2003',81,'Admin','2016-11-15 10:56:29','2020-06-21 12:45:26'),(866,'The location of a business is mostly influenced by','market outlet','management decision','capital','environment','','','d','','utme','2003',122,'Admin','2016-11-15 10:56:29','2020-07-07 03:59:46'),(867,'The evolution of commerce in Nigeria is traceable to the','period of barter economy as human needs became limitless','desire by human beings to satisfy their needs through the services of other people in the society','development of human civilizations and the desire to meet their needs','primitive stage of existence of  human beings.','','','b','','utme','2003',83,'Admin','2016-11-15 10:56:29','2020-05-28 21:14:50'),(868,'One of the requirements necessary for setting up a business is','registration','advertisement','knowledge of the business','documentation','','','c','','utme','2003',85,'Admin','2016-11-15 10:56:29','2020-06-03 17:59:32'),(869,'The assembling of products into usable forms is known as','construction','manufacturing','formation','creation','','','b','','utme','2003',89,'Admin','2016-11-15 10:56:29','2020-07-06 19:29:39'),(870,'The government’s policy thrust on the business environment is to','promote experts','attract investors','be self-sufficient','increase production','','','b','','utme','2003',76,'Admin','2016-11-15 10:56:29','2020-07-04 01:24:25'),(871,'Social responsibility is the ability of an organization to','tackle the socio-economic problem of its community','meet the needs of its community','contribute to sustaining   and developing its community','operate without disrupting the very essence of the environment.','','','c','','utme','2003',81,'Admin','2016-11-15 10:56:29','2020-05-28 21:17:37'),(872,'The act of a person employing another to enter into a contract on his behalf is known as','business','sale of goods','bilateral agreement','agency','','','d','','utme','2003',86,'Admin','2016-11-15 10:56:29','2020-05-28 21:16:13'),(873,'The ECOBANK is the initiative of','some well-meaning Nigerian shareholders','the Federal Government of  Nigeria','West African states to foster trade','the Lagos State Government to enhance capital mobilization.','','','c','','utme','2003',82,'Admin','2016-11-15 10:56:29','2020-06-21 12:51:08'),(874,'Privatization is concerned with','equal ownership between  the public and the government','the dilution of ownership among the public','the individual ownership of companies','government ownership of companies.','','','c','','utme','2003',83,'Admin','2016-11-15 10:56:29','2020-06-21 12:48:57'),(875,'Electronic computers differ from human beings in that they process data and minimize errors in a','faster and more accurate manner','more organized manner','faster but less accurate manner','slower but more accurate manner','','','a','','utme','2003',86,'Admin','2016-11-15 10:56:29','2020-05-28 21:16:53'),(876,'A major benefit derivable from the privatization and commercialization of public enterprises in Nigeria is','increase in wages','employment generation','information technology','revenue generation','','','d','','utme','2003',82,'Admin','2016-11-15 10:56:29','2020-07-04 01:24:25'),(877,'The device which interprets and carries out the instructions presented to it by the computer program is known as','software','microprocessor','mouse','hard-disk','','','b','','utme','2003',83,'Admin','2016-11-15 10:56:33','2020-07-04 01:14:19'),(878,'The market structure, business conditions and financial systems in Nigeria constitute the','economic environment','political environment','cultural environment','technological environment','','','a','','utme','2003',75,'Admin','2016-11-15 10:56:34','2020-06-06 19:57:45'),(879,'The protection of consumers against exploitation by manufacturers is to ensure','that there are varieties of products','that the right quality of goods and services is sold','increase in production capacity','increase in the level of consumer awareness.','','','b','','utme','2003',82,'Admin','2016-11-15 10:56:34','2020-07-04 01:30:02'),(880,'The most widely used computer language that focuses on solving science-oriented problems is','FORTRAN','BASIC','ADA','COBOL','','','a','','utme','2003',102,'Admin','2016-11-15 10:56:34','2020-06-03 20:19:25'),(881,'Banks are engaged in the business of buying and selling of','bills of exchange','instruments of credit','intangible products','land','','','a','','utme','2003',87,'Admin','2016-11-15 10:56:34','2020-07-05 16:27:05'),(882,'A source of short-term finance to companies is','share capital','debentures','retained earnings','corporate tax','','','c','','utme','2003',85,'Admin','2016-11-15 10:56:34','2020-05-28 21:16:42'),(883,'The body charged with the responsibility to register shares for subscription on the stock market in Nigeria is the','Securities and Exchange Commission','Nigerian Stock Exchange','Nigerian Deposit Insurance Company','Central Bank of Nigeria,','','','a','','utme','2003',86,'Admin','2016-11-15 10:56:34','2020-07-05 16:18:17'),(884,'An essential factor for evaluating the different sources of funds for a business is the','decree establishing the business','ownership structure of the business concern','size and the type of the business','burden of cost and repayment','','','b','','utme','2003',72,'Admin','2016-11-15 10:56:34','2020-07-04 01:30:02'),(885,'Money can simply be referred to as a','medium of exchange','means for the settlement of debts','durable asset for doing business','stands of value','','','a','','utme','2003',91,'Admin','2016-11-15 10:56:34','2020-07-06 18:47:54'),(886,'A type of  long-term loan granted to companies with fixed interest as well as with redeemable and irredeemable features is referred to as','a debenture','a bond','a term loan','an overdraft','','','a','','utme','2003',88,'Admin','2016-11-15 10:56:34','2020-06-02 21:15:31'),(887,'Public debt management is one of the functions of a','merchant bank','central bank','commercial bank','development bank.','','','b','','utme','2003',83,'Admin','2016-11-15 10:56:38','2020-06-21 12:46:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `crk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=696 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `crk` VALUES (1,'In Jesus’ teaching on the mount, the only justifiable reason for divorce is ','indolence ','insubordination ',' infidelity ','infertility','','','c','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-07-05 20:39:45'),(2,'According to John’s Gospel, Lazarus was from: ','Jerusalem  ','Teberias ','Bethany ','Galilee','','','c','','post-utme','2006',57,'Admin','0000-00-00 00:00:00','2020-06-03 16:59:52'),(3,'Jesus’ new commandment according to the Gospel of Jesus of John is ','salvation ','love ','peace ','spirit','','','b','','post-utme','2006',58,'Admin','0000-00-00 00:00:00','2020-05-04 18:25:28'),(4,'The thief as described by Jesus comes to ','destroy, kill and steal ','destroy, steal and kill ','kill, destroy and kill ','steal, kill and destroy ','','','d','','post-utme','2006',63,'Admin','0000-00-00 00:00:00','2020-06-03 00:21:19'),(5,'The agony of Jesus in the Garden of Gethsemane is a ','sign of abandonment ','manifestation of human weakness ','punishment ','preparation for his death','','','d','','post-utme','2006',58,'Admin','0000-00-00 00:00:00','2020-07-04 02:00:18'),(6,'Eutychus fell from the third storey to the ground when Paul  prolonged his sermon at ','Troas ','Ephesus ','Miletus ','Corinth.','','','a','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-07-06 20:25:16'),(7,'Charismatic leaders in the Book of Judges arose in Israel to ','revive faith in Yahweh ','rally the tribe together ','lead the Israel to battles ','settle dispute','','','c','','post-utme','2006',60,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:53'),(8,'What did God create on the fifth day? ','the firmament  ','the two great light ','water under the heaven ','living Creature','','','d','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-06 06:14:35'),(9,'Joshua and Caleb were from the tribe of ','Judah and Rueben ','Reuben and Dan ','Ephraim and Reuben ','Judah and Ephraim','','','d','','post-utme','2006',64,'Admin','0000-00-00 00:00:00','2020-07-04 01:50:42'),(10,'Manahem, the son of Gadi reigned over Israel for ','eight years ','twenty years ','six month ','ten years.','','','d','','post-utme','2006',61,'Admin','0000-00-00 00:00:00','2020-06-01 16:49:21'),(11,'The death of Adonibezek in Bezek was a typical proof of ','cowardice ','nemesis ','insanity ','absurdity','','','b','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-05-04 10:21:48'),(12,'In order that Benjamin might be brought to Egypt, Joseph  ','Reuben ','Judah ','Simon ','Zebulon','','','c','','post-utme','2006',61,'Admin','0000-00-00 00:00:00','2020-06-03 16:31:47'),(13,'When Paul came to Rome, the first set of people to whom he preached were the ','Romans ','Jews ','Greeks ','Samaritans.','','','b','','post-utme','2006',60,'Admin','0000-00-00 00:00:00','2020-07-05 14:07:59'),(14,'The three sons of Noah Sdhem, Ham and ','Lot ','Hirah ','Cain ','Japeth.','','','d','','post-utme','2006',64,'Admin','0000-00-00 00:00:00','2020-06-04 16:42:04'),(15,'The renowned interpreters of the Mosaic Law in the time of Jesus were the ','Sadducees ','Scribes ','Herodians ','Pharisees','','','d','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-07-04 02:00:18'),(16,'The mother of Esau is ','Ruth ','Ester ','Rebecca ','Jezebel  ','','','c','','post-utme','2006',66,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:46'),(17,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) Who was the speaker? ','Joseph ','Jacob ','Job ','James','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-05 14:30:11'),(18,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29)  When did he say this? ','When he was about to die ','When he was seriously sick ','When he offended God ','When his brother cheated him','','','a','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-06-05 22:20:30'),(19,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) What was his wish? ','he wanted to buried at Canaan in the cave at Ephron ','he wanted to be buried at Jericho ','he wanted to commune with his ancestors ','he wanted to be closed to his fathers.','','','a','','post-utme','2006',54,'Admin','0000-00-00 00:00:00','2020-06-05 08:30:12'),(20,'Who was authorized by God to go and liberate the Israelites the Egyptian bondage? ','Joshua ','Daniel ','Solomon ','Moses.','','','d','','post-utme','2006',61,'Admin','0000-00-00 00:00:00','2020-07-06 09:49:51'),(21,'The names of the two kings of Jericho destroyed by the Israelites during the conquest were ','Adonija and Haggith ','Shion and Og ','Zadok and Benaiah ','Hiram and Jeroboam.','','','b','','post-utme','2006',60,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(22,'Who is an atheist? ','someone who does believe in God ','someone who rejects completely the idea of a divine being ','someone who believes that it is impossible to know if there is God or not ','someone who abuses religious people.','','','b','','post-utme','2006',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:50:42'),(23,'What is meant by the Christian doctrine that God is Trinity? ','the idea started in Trinidad and Tobago ','God is three persons in one ','God is omnipotent ','God is the Holy Spirit','','','b','','post-utme','2006',57,'Admin','0000-00-00 00:00:00','2020-06-01 17:02:24'),(24,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus                              ','','','d','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-06-05 07:13:26'),(25,'The person who the Bible calls the son of consolation is ','Barsabas ','Barabbas ','Barnabas ','Bathsheba','','','c','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-05-04 18:32:57'),(26,'Who do people say the son of man is? Jesus asks this question to know people’s ','desires ','demand  ','mind ','opinion','','','c','','post-utme','2007',57,'Admin','0000-00-00 00:00:00','2020-05-06 09:49:40'),(27,'In Peter’s teaching,” God…………..the proud and gives grace to the humble','receives ','relegates ','resists ','restores.','','','c','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-05-04 18:25:29'),(28,'The lesson which Jesus teaches in the parable of the Good Samaritan is that your neighbor is','only your friend  ','your next of kin  ','a distant friend ','anyone who needs your  help','','','d','','post-utme','2007',50,'Admin','0000-00-00 00:00:00','2020-06-06 09:25:49'),(29,'Amram and Jochebad gave birth to : ','Mirian ','Jedida ','Jethro ','Hur','','','a','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-05 22:20:30'),(30,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Zipporah and Pauh ','Pauh and Miriam ','Shiphrah and Zipporah ','Shiprah and Puah','','','d','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-03 21:46:48'),(31,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2007',53,'Admin','0000-00-00 00:00:00','2020-05-04 18:17:40'),(32,'Daniel was delivered from the den of lions for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power','','','b','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(33,'Which of the following carried Judah into captivity ','Pharaoh Neco of Egypt ','Goliath of Philistia ','Assyrian ','Nebuchadnezzar of Babylon','','','d','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-06 09:49:52'),(34,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','slaughter of all his sons ','city of Jerusalem ','feasting of the children of Israel ','','','b','','post-utme','2007',57,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:47'),(35,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-05-03 17:23:11'),(36,'The king of Persia who made it possible for the return of the exiles from Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-07-06 20:42:46'),(37,'The meaning of Emmanuel is ','laughter ','“for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2007',63,'Admin','0000-00-00 00:00:00','2020-07-06 20:42:46'),(38,'“Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2007',51,'Admin','0000-00-00 00:00:00','2020-04-12 16:21:21'),(39,'One of the following said: “the lion has roared who will not fear? The Lord has spoken, who can  but prophesy?” ','Nathan ','Jeremiah ','Amos ','Hosea','','','c','','post-utme','2007',52,'Admin','0000-00-00 00:00:00','2020-05-03 17:04:29'),(40,'Where did Paul cure a slave girl who had a spirit of divination ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-06 16:57:28'),(41,'Joshua’s first victory was over the people of ','Ai ','Gibeon ','Gilgal ','Jericho','','','d','','post-utme','2007',49,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(42,'Josiah’s reign was popular because of his ','allies ','victory ','violence ','reforms','','','d','','post-utme','2007',51,'Admin','0000-00-00 00:00:00','2020-06-05 14:28:50'),(43,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-05 14:37:47'),(44,'Who baptized the Ethiopian Eunuch? ','Paul ','peter ','Philip ','Rufus','','','c','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-04-12 16:22:43'),(45,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2007',58,'Admin','0000-00-00 00:00:00','2020-06-04 09:19:51'),(46,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah.','','','c','','post-utme','2007',55,'Admin','0000-00-00 00:00:00','2020-06-03 10:25:24'),(47,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2007',57,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:43'),(48,'The person who the Bible calls the consolation is:  ','Barsabbas ','Barabbas ','Barnabs ','Bathsheba','','','c','','post-utme','2008',62,'Admin','0000-00-00 00:00:00','2020-07-07 06:44:19'),(49,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','Slaughter of his son ','city of Jerusalem ','feasting of hiss children of Israel','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-04-28 17:39:27'),(50,'Daniel was delivered from the den of lion for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power.','','','b','','post-utme','2008',63,'Admin','0000-00-00 00:00:00','2020-06-06 09:27:58'),(51,'Name three places Christian religious people look up to find the truth about the nature of God','In the sacred scripture ','In the religious leader ','In the church ','In their conscience.','','','d','','post-utme','2008',49,'Admin','0000-00-00 00:00:00','2020-06-03 00:49:59'),(52,'Explain why Jesus was identified as the lamb by John (Jn:1:29 ) ','lamb of God is a figurative language which describes Christ sacrificial mission in the word ','he is being compared to the Passover Lamb that would atone for the sins of all world ','Because the lamb is attentive to his owner ','it shows patience, meekness, gentleness and innocence','','','b','','post-utme','2008',46,'Admin','0000-00-00 00:00:00','2020-07-05 20:47:31'),(53,'Who do people say the son of man is? Jesus asks this question to know people’s ','desire ','demand ','mind ','pinion','','','c','','post-utme','2008',52,'Admin','0000-00-00 00:00:00','2020-06-02 19:21:58'),(54,'In Peter’s teaching,” God…………the proud and gives grace to the humble ','receives ','relegates ','resists ','restores','','','c','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-06-04 16:47:29'),(55,'The lesson, who Jesus teaches in the parable of the Good Samaritan is that your neighbor is ','only your friend ','your next of king ','a distant friend ','anyone who needs your help','','','d','','post-utme','2008',44,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(56,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus','','','d','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-06-04 11:53:53'),(57,'Which of the following carried Judah into captivity ','pharaoh  Neco of Egypt ','Goliath of philistia ','Assyrians ','Nebuchadnezzar of Babylon','','','d','','post-utme','2008',39,'Admin','0000-00-00 00:00:00','2020-07-04 02:00:18'),(58,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2008',63,'Admin','0000-00-00 00:00:00','2020-06-02 00:32:35'),(59,'Amram and Jochebad gave birth to : ','Miriam ','jedida ','Jethro ','Hur','','','a','','post-utme','2008',55,'Admin','0000-00-00 00:00:00','2020-06-02 19:15:10'),(60,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Ziporah and Puah ','Puah and Miriam ','Shiphrah and Zipporah ','Shiphrah and Puah','','','d','','post-utme','2008',53,'Admin','0000-00-00 00:00:00','2020-06-02 04:54:19'),(61,'The king of Persia who made it possible for the return of the exiles form Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-06-05 16:12:11'),(62,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2008',49,'Admin','0000-00-00 00:00:00','2020-06-02 21:01:28'),(63,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah','','','c','','post-utme','2008',47,'Admin','0000-00-00 00:00:00','2020-07-07 06:44:19'),(64,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2008',44,'Admin','0000-00-00 00:00:00','2020-06-02 20:29:37'),(65,'The meaning of Emmanuel is ','laughter ','for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-06-03 00:49:59'),(66,'Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-06-05 16:39:17'),(67,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2008',57,'Admin','0000-00-00 00:00:00','2020-06-04 15:35:42'),(68,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-05 13:42:57'),(69,'One of the following said: “the lion has roared who will not fear? ','Nathan ','Jeremiah ','Amos ','Hosea','','','a','','post-utme','2008',54,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:48'),(70,'Josiah’s reign was popular because of his ','Allies ','victory ','violence ','reforms','','','d','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-04 23:38:14'),(71,'Where did Paul cure a slave girl who had a spirit of divination? ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(72,'Who baptized the Ethiopian Eunuch? ','Paul ','Peter ','Philip ','Rufus','','','c','','post-utme','2008',47,'Admin','0000-00-00 00:00:00','2020-07-05 13:42:57'),(73,'Joshua’s first victory was over the people of ','Ai ','Gideon ','Gilgal ','Jericho ','','','d','','post-utme','2008',56,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:43'),(74,'“There shall be neither dew nor rain this year except by my word” Who said this?','Moses ','Pharaoh ','Elijah ','Esther ','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-06 13:41:06'),(75,'In the case before Solomon over the deal and the living, child the mother of the dead child supported. ','Giving the living child to her opponent ','Killing the living child ','joint ownership of the living child ','king Solomon having the living child','','','b','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(76,'Before Moses died. God appointed ………. to succeed him ','Aaron ','Balaam','Joshua ','Manasseh ','','','c','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-07 06:44:19'),(77,'Those bitten by the serpent were treated by ','Drinking from the Red sea ','fasting for seven day ','looking at the bronze serpent ','call upon the lord ','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-05-06 18:15:56'),(78,'In order that Benjamin might be brought to Egypt, Joseph detained ','Ruben ','Levi ','Jacob ','Simoen ','','','d','','post-utme','2009',51,'Admin','0000-00-00 00:00:00','2020-06-03 17:17:59'),(79,'Those inspired by God to lead the tribes of Israel in battle were the ','Judges  ','Captains of Guard  ','priest  ','prophet  ','','','a','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-06-02 00:05:53'),(80,'God told Samuel that he, would punish Eli because he  ','did not correct his son’s sinful behavior ','did not offer sacrifice as the: Law ','did not warn the people of Israel to stop surfing ','Warned his sons against rape and drunkenness','','','a','','post-utme','2009',48,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:53'),(81,'The sun stood still when ','Moses led Israel across the Red sea ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorite at Gideon ','','','d','','post-utme','2009',53,'Admin','0000-00-00 00:00:00','2020-07-06 10:55:24'),(82,'Who is reputed for pulling down the altar of Baal at the risk of annoying his father? ','Joseph ','Jesse ','Gideon   ','Samuel ','','','c','','post-utme','2009',55,'Admin','0000-00-00 00:00:00','2020-07-05 22:20:39'),(83,'In the trade treated between King Solomon and Lebanon, Solomon was to supply wheat and oil while Hiram was to supply','Grains only ','precious stories ','wheat advice ','Timber ','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-01 17:30:28'),(84,'Which prophet cried thus “woe is me” for lost, I am a man of unclean lips ','Hosea ','Jeremiah ','Isaiah ','Micah ','','','c','','post-utme','2009',47,'Admin','0000-00-00 00:00:00','2020-07-07 06:44:19'),(85,'Hosanna means  ','Ride on in majesty ','Ride on Glory ','Ride on to die ','Save me','','','d','','post-utme','2009',54,'Admin','0000-00-00 00:00:00','2020-06-06 13:41:06'),(86,'The conversion of Paul was made possible by','Simeon ','Zacchaccus ','the risen Lord ','Mathew ','','','c','','post-utme','2009',50,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:53'),(87,'Let his habitation be made desolate, and let there be no one to live in it’ who is being referred to here?  ','King soul ','Judas Iscariot ','Stephen ','Barnabas ','','','b','','post-utme','2009',57,'Admin','0000-00-00 00:00:00','2020-06-05 16:39:17'),(88,'The proconsul when Paul arrived in commit was called','Festus ','portions ','Pilate ','Gallio ','','','d','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-06-04 11:55:48'),(89,'‘Now I known that Lord has sent his angel to deliver me ……”who said this? ','Joseph ','Moses ','Paul ','Peter ','','','d','','post-utme','2009',47,'Admin','0000-00-00 00:00:00','2020-06-03 19:53:49'),(90,'The seven deacons were appointed by ','conduct a mission to the Gentiles','Replace the twelve ','Lead the church in Jerusalem ','Help in the distribution of food ','','','d','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-06-02 23:03:00'),(91,'What did God create on the 6th day ','The firmament ','light ','Dry land and sea ','man and living creatures ','','','d','','post-utme','2009',47,'Admin','0000-00-00 00:00:00','2020-06-05 16:07:18'),(92,'Joshua’s first victory was in ','Ai ','Gibeon ','Jordan ','Giligal ','','','c','','post-utme','2009',40,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:48'),(93,'In the parable of the sower, the seeds on the good ground represent those who ','Accept and live by the world of God ','feed the poor ','Have and love riches ','Give alms in market places ','','','a','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-06 16:57:28'),(94,'Which prophet encouraged Jeroboam I to  revolt at the initial stage? ','Micaiah ','Jeremiah ','Nathan ','Joel ','','','d','','post-utme','2009',55,'Admin','0000-00-00 00:00:00','2020-06-04 16:42:04'),(95,'‘This had is gone: and where shall I go’ who is being referred to here ','Isaac ','Joseph ','Peter ','Silas ','','','b','','post-utme','2009',48,'Admin','0000-00-00 00:00:00','2020-07-04 01:50:42'),(96,'According to Psalm 51, the sacrifice acceptable to God is','A clean hear ','Obedience ','A blemish less lamb ','A broken spirit ','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-02 17:32:10'),(97,'A would –be apostle who puts his hand to the plaughjsa and looks back lacks ','faith ','Kindness ','Repentance ','Total commitment ','','','d','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-06-01 22:36:17'),(98,'For which of these prophets of God did the Bible record explicitly to have abandoned an agribusiness for a call to serve God? ','Elisha ','Ezekiel ','Elijah ','Obadiah.','','','a','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-06-04 07:43:17'),(99,'Why did David spare the life of Saul at Ziph? ','he recognized Gods anointing on Saul ','Saul was also an Israelite ','He did not want blood shed ','He was Saul’s in- law','','','a','','post-utme','2010',58,'Admin','0000-00-00 00:00:00','2020-06-03 12:32:46'),(100,'Deborah was a judge when Israel was under the yoke of ','Moab ','Midian ','Canaan ','Philistine','','','c','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:46'),(101,'The treatment of those  bitten by fiery serpent was to ','drink from the Red sea ','look at the bronze serpent ','fast for seven days ','call upon the lord','','','b','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-07-05 22:20:39'),(102,'Which of these was detained by Joseph in order that Benjamin might be brought to Egypt ','Reuben ','Levi ','Judah ','Simon','','','d','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-05-04 18:57:04'),(103,'In the biblical account of creation, man was permitted to ','plant fruit trees for food ','water the garden ','make garment of hides and skin ','name all the creatures','','','d','','post-utme','2010',49,'Admin','0000-00-00 00:00:00','2020-05-03 17:14:14'),(104,'Each of these spies sent out by Moses on God’s command to report on the nature of the promised land was a ','great warrior ','wise judge ','priest ','leaders in his own tribe','','','d','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-06-03 00:28:51'),(105,'God reveal to Samuel that he was going to punish Eli because he ','did not correct his sons sinful behavior ','did not offer sacrifice as the law required ','did not warn the people of Israel to stop sinning ','warned his sons but did not punish them','','','d','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(106,'The sun stood still when ','Moses led the Israelites out of Egypt ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorites at Gideon','','','d','','post-utme','2010',56,'Admin','0000-00-00 00:00:00','2020-05-03 17:47:17'),(107,'When was this statement made? ‘I repent that I Made Saul king \\'','at the anointing of Saul ','When Saul failed to ray ','When Saul disobeyed God over Amalek ','When Saul finished the morning offering','','','c','','post-utme','2010',55,'Admin','0000-00-00 00:00:00','2020-05-03 17:23:11'),(108,'The commander of David’s army was ','Abner ','Joab ','Abiathar ','Adonijah','','','b','','post-utme','2010',54,'Admin','0000-00-00 00:00:00','2020-07-06 10:55:25'),(109,'That was the sin of David that involved Bathseba? ','Murder ','adultery ','dishonesty ','arrogance','','','a','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-06-03 20:00:32'),(110,'What is the meaning of Emmanuel? ','Son of Emmaus ','God is our Redeemer ','God with us ','Saviour','','','c','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(111,'What specific reply did John the Baptist give to the soldiers during his preaching ','collect no more than is appointed you ','do not begin to say to yourselves: we have Abraham as our father ','bear fruits that befit repentance ','be content with your wages','','','d','','post-utme','2010',56,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:53'),(112,'Jesus taught that one should make friends quickly with one’s ','enemy ','neighbor ','master ','accuser','','','d','','post-utme','2010',57,'Admin','0000-00-00 00:00:00','2020-06-02 23:31:40'),(113,'The Pharisees and the Scribes accused the disciples of Jesus transgressing the tradition of the elders because they ','did not regard synagogue rules ','did not pray before meals ','ate with unwashed hands ','disobeyed the elders','','','c','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:46'),(114,'If anyone would be first, he must be last of all and servant of all. What does this saying of Jesus teach? ','endurance ','lack of ambition ','humility ','relaxation','','','c','','post-utme','2010',50,'Admin','0000-00-00 00:00:00','2020-07-07 06:44:19'),(115,'Which religious groups asked Jesus about payment of taxes to Ceaser? ','Pharisees and Sadducces ','Pharisees and Herodians ','Sadducces and herodians ','Herodians and Zealots','','','b','','post-utme','2010',43,'Admin','0000-00-00 00:00:00','2020-05-03 05:39:59'),(116,'To whom was the body of Jesus Christ given for burial after His death? ','Nicodemus the Pharisee ','Simon of Cyrene ','Simon the disciple ','Joseph of Arimathea.','','','b','','post-utme','2010',55,'Admin','0000-00-00 00:00:00','2020-07-04 01:50:42'),(117,'Paul was accused of apparently being a preacher of foreign divinities in Athens because he preached Jesus and the ','Cross ','Law ','resurrection ','second coming','','','c','','post-utme','2010',51,'Admin','0000-00-00 00:00:00','2020-06-01 21:55:41'),(118,'What specifically makes Samson a unique prophet of God? ','He was a Nazarene ','He loved honey ','He killed many at his death ','He spoke with power in riddles','','','a','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-05-04 18:50:19'),(119,'“It is not the sound of shouting for victory, or the sound of the cry of defeat, but the sound of singing that I hear” When was this statement made? ','at the consecration of the Israelites ','at the crossing of the Red Sea ','during the fall of Jericho ','in a strange worship of a god','','','d','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-06-05 23:41:23'),(120,'“Blessed be the Lord God of Israel is a hymn of praise by ','the virgin Mary at the Annunciation ','Zachariah at the birth of John the Baptist ','Simeon at the presentation of Jesus in the temple ','Elizabeth at the visit of Mary','','','b','','post-utme','2010',55,'Admin','0000-00-00 00:00:00','2020-06-02 16:50:26'),(121,'The shema emphasizes the ','unity of God ','richness of the spirit of God ','omnipotence of God ','crucial role o’ Israel in the world.','','','c','','post-utme','2010',54,'Admin','0000-00-00 00:00:00','2020-06-04 08:05:52'),(122,'The expression ‘dry bones’ in Ezekiel refers to ','an Israelites proverb ','the whole house of Israel ','the slain in the valley ','sinful Israelites and Judean','','','b','','post-utme','2010',56,'Admin','0000-00-00 00:00:00','2020-06-01 20:20:10'),(123,'What Josiah, the king of Judah, is best remembered for in Jewish history is ','His ability to destroy all the shine of Baals','His order that the bones and tombs of the prophets of God must be preserved ','His strong opposition to Pharaoh-Neco of Egypt ','His reparation of the temples of God','','','d','','post-utme','2011',52,'Admin','0000-00-00 00:00:00','2020-05-04 10:11:46'),(124,'After receiving an order from God, Jonah went down to…………….  ','Joppa ','Tarshish  ','Nineveh','Jerusalem ','','','b','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-25 23:11:50'),(125,'True religion, according to Amos’ submission, is the one in which  ','God is always appeased with sacrifices and tithes ','Foods and drinks are served as a mark of love ','Justice and righteousness flows like an endless stream  ','Feast and solemn assemblies play important roles ','','','c','','post-utme','2011',60,'Admin','0000-00-00 00:00:00','2020-07-04 01:50:42'),(126,'The last born of Gomer for Hoshea was ………….  ','Jezreel','Loammi ','Diblaim  ','Loruhamah ','','','b','','post-utme','2011',49,'Admin','0000-00-00 00:00:00','2020-06-04 08:59:04'),(127,'According to Paul in Romans, the law and the prophets bore witness to the righteousness of God but man could not be justified until he  ','Had faith in Jesus ','Saw the glory of God ','Made a serious personal effort ','submitted wholly to the law ','','','a','','post-utme','2011',54,'Admin','0000-00-00 00:00:00','2020-07-05 19:08:13'),(128,'One of the following was not among the religious sects in the New Testament ','The Pharisees','The Nazarenes ','The Essences   ','The Sadducees','','','c','','post-utme','2011',57,'Admin','0000-00-00 00:00:00','2020-07-06 09:49:51'),(129,'One of the following  is not correct about the order of creation in the Creation Stories ','the evening came before the morning ','darkness came before light','animals were created before man ','the morning came before the evening','','','d','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-06-03 16:31:47'),(130,'What was Cain’s immediate reaction to the acceptance of Abel’s offering?','He offered another sacrifice ','He was angry and his countenance fell ','He was angry with God','He was angry with Abel ','','','b','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(131,'Pick the odd out of the following characters:  ','Saul   ','David','Jonathan','Solomon','','','c','','post-utme','2011',49,'Admin','0000-00-00 00:00:00','2020-07-07 06:44:19'),(132,'“Talitha cumi”  means  ','Dorcas, Arise','Little girl, I say to you, arise ','Thy will be done','Jesus is coming','','','b','','post-utme','2011',57,'Admin','0000-00-00 00:00:00','2020-06-03 00:49:59'),(133,'Who according to James blaspheme the honourable name by which Christians are called','Non believers','Pagan rulers','Antichrists','Rich people','','','d','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-06-04 16:42:04'),(134,'Who was the last person Jesus appeared to after his resurrection according to Paul?','Mary Magdalene','Joseph of Arimathea  ','Paul','Thomas','','','c','','post-utme','2011',46,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(135,'How many disciples of Jesus Christ were fishermen? ','two  ','three  ','four','five','','','c','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-02 02:39:16'),(136,'Who among the seven deacons was an evangelist who had four daughters who prophesied?  ','Stephen','Philip ','Barnabas   ','Nicholas','','','b','','post-utme','2011',51,'Admin','0000-00-00 00:00:00','2020-07-06 09:49:52'),(137,'“God has given your enemy into your hand this day, now, therefore, let me pin him to the earth with one stroke of the spear, and I will not strike him twice”. This statement was made to David by','Abishai ','Abner    ','Ahimelech ','David’s armour bearer','','','a','','post-utme','2011',60,'Admin','0000-00-00 00:00:00','2020-07-06 10:55:24'),(138,'The phrase ‘you cows of Bashan’ referred to ','Cows in the land of Bashan  ','The fat and greedy men of Israel who oppress the priest ','The fat and greedy women of Israel who oppress the poor  ','The fat rich women of Samaria who oppress the poor.','','','d','','post-utme','2011',54,'Admin','0000-00-00 00:00:00','2020-07-05 14:30:11'),(139,'The book of _______ mostly emphasized social justice ','Amos ','Ezekiel  ','Hoshea  ','Isaiah.','','','a','','post-utme','2011',49,'Admin','0000-00-00 00:00:00','2020-05-04 18:25:29'),(140,'Among the spiritual gifts, love is supreme because it ','facilitates development ','gives room for friendship ','has eternal value ','promotes understanding','','','c','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(141,'John the Baptist describes Jesus to his two disciples as the ','beloved Son of God ','great one of Israel ','holy one of God','lamb of God.','','','d','','post-utme','2011',54,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(142,'Joseph’s brothers hated him the more because ','he dreamed about his future dominion over his family members ','he used to give his father evil reports about them ','his father had him at his old age ','his father made a special robe for him','','','a','','post-utme','2011',55,'Admin','0000-00-00 00:00:00','2020-07-04 02:00:18'),(143,'After eating the forbidden fruit Adam’s and Eve’s eyes opened and they realized that they ','had sinned against God','had disobeyed God   ','were naked  ','had been deceived by the serpent.','','','c','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-09 11:39:08'),(144,'What did Ahab do to Prophet Micaiah for speaking the truth about the war between Israel and Syria? ','he promoted him ','he gave him a gift ','he denied him any fox ','he imprisoned him.','','','d','','post-utme','2011',63,'Admin','0000-00-00 00:00:00','2020-07-04 01:50:42'),(145,'The Amalekites who opposed the Israelites in the wilderness were from the lineage of  ','Benjamin ','Jacob ','Esau ','Reuben','','','c','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-01 22:16:23'),(146,'During the period of three and a half years of drought in Israel, the man who hid one hundred prophets of God in a cave was  ','Isaiah  ','Lisha ','Elijah ','Obadiah','','','d','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-03 01:56:55'),(147,'During his first missionary journey, Paul first recorded sermon was delivered at  ','Perga   ','Iconium ','Antioch','Lystra ','','','c','','post-utme','2011',54,'Admin','0000-00-00 00:00:00','2020-06-06 17:09:24'),(148,'In his second letter to the Christians in Thessalonians, Paul admonished them to have nothing to do with anyone who refused to obey what he wrote in the letter. What did Paul think would happen to the person?  ','The person would be encouraged  ','The person would be ashamed  ','The person would be disturbed  ','The person would repent','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-05-28 14:27:57'),(149,'In the Sermon on the Mount, the meek are blessed because  ','They shall see God  ','They shall be exalted  ','They shall inherit the earth  ','They shall be called sons of God ','','','b','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-07-04 02:00:18'),(150,'Which of the following is not a natural miracle:  ','Stilling of the storm  ','Walking on the sea  ','Raising of Lazarus from the dead  ','Feeding the five thousand','','','d','','post-utme','2012',46,'Admin','0000-00-00 00:00:00','2020-06-05 23:25:07'),(151,'The prophet whose message was primarily on social justice and true religion is  ','Isaiah  ','Agabus  ','Amos  ','Jeremiah','','','d','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:53'),(152,'The prophet who prophesied that Paul would be arrested in Jerusalem is  ','Isaiah  ','Agabus  ','Philip  ','Stephen  ','','','b','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-06-06 06:14:35'),(153,'One of the lessons one can derive from the story of Deborah the Prophetess is that  ','Women are not good warriors  ','Women should not be allowed to take leadership roles  ','Women’s rights should be fought for by all ','God can use anyone regardless of their gender and tribes.','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-06 10:48:19'),(154,'One of the following is not among the reasons why Jesus taught in Parables  ','to fulfill the prophecy in Psalm 78:2  ','to create understanding  ','to make people learn the unknown through the known  ','to show the omniscient power of Jesus','','','b','','post-utme','2012',48,'Admin','0000-00-00 00:00:00','2020-07-05 14:37:47'),(155,'The disciple in Damascus who prayed for Saul (Paul) to receive his sight after his conversions was  ','Ananias ','Sapphira  ','Barnabas  ','Thomas ','','','a','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-04 15:17:57'),(156,'According to James, one of the causes of wars among Christians is ','their passions  ','their wickedness  ','their faith without work  ','their pride','','','a','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-02 19:54:32'),(157,'One of the following was not among the decisions reached at the Council of Jerusalem concerning the Gentiles who became Christians:  ','That Gentiles should obtain from what has been sacrificed to idols  ','The Gentiles should abstain from blood  ','That Gentiles should abstain from what is strangled ','That Gentiles should abstain from love of the world ','','','d','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:50:42'),(158,'“Thy glory, O Israel upon thy high places! How are the mighty fallen! Tell it not in the streets of Ashkelon… How  are the mighty fallen in the midst of the battle!” The above dirge was written by David when  ','He killed Goliath  ','Uriah the Hittite died  ','Saul and Jonathan died  ','Abner was killed by Joab','','','c','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-07 09:02:33'),(159,'Who was one of the Seven Deacons who had four daughters who were prophetesses?  ','Nicolaus  ','Stephen  ','Prochorus  ','Philip ','','','d','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-06-05 15:31:42'),(160,'According to the Letter to the Hebrews, why should Christians lay aside every weight and sin which clings so closely?  ','Sin is contagious  ','Christian can easily be influenced by sinners  ','Christians are surrounded by so great a cloud of witness  ','No sinner will inherit the kingdom of God ','','','c','','post-utme','2012',52,'Admin','0000-00-00 00:00:00','2020-05-04 18:50:18'),(161,'“To obey is better than sacrifice” came from  ','Prophet Daniel  ','Prophet Ezekiel  ','Prophet Elijah  ','Prophet Samuel ','','','d','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:53'),(162,'The three sons of Saul who lost their live on Mount Gilboa were  ','Jonathan, Ishbosheth and Abinadab  ','Abinadab, Jonathan and Ishbosheth  ','Jonathan, Abinadab and Malchisua  ','Ishbosheth, Malchishau and Abinadab','','','c','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-06-02 13:34:07'),(163,'The original name of Shadrach was  ','Daniel  ','Mishael  ','Hananiah  ','Azariah','','','c','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-06-04 17:25:08'),(164,'The person who was invited to nurse Moses was ','Jochebed  ','Puah  ','Shiphrah  ','Miriam ','','','a','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-06-05 16:01:12'),(165,'“… But let judgment run down as waters, and righteousness as a mighty stream… “Fairness, judgment and righteousness were set aside during the time of  ________ for burnt and meat offerings.','Amos  ','Hosea  ','Ezekiel  ','Hezekiah ','','','a','','post-utme','2012',54,'Admin','0000-00-00 00:00:00','2020-06-01 22:36:17'),(166,'Eli’s inability to discipline his sons led to all the following except  ','God’s curse on his family  ','the extension of his life span  ','the cancellation of priesthood from his lineage','the death of his sons','','','b','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-06-05 14:28:50'),(167,'Who was the King of Judah who witnessed the second deportation?  ','Gedaliah  ','Jehoiachin  ','Zedekiah ','Jehoiakim','','','c','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:53'),(168,'Paul, the apostle to the gentile, was a native of  ','Perga in Pamphylis  ','Rome  ','Jerusalem  ','Tarsus ','','','b','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-04 01:50:42'),(169,'In the Sermon on the Mount, Jesus taught his disciples that whenever they faced persecution, they should  ','be more serious with their drive for souls ','be rejoiced and be exceedingly glad  ','withdraw and  be less active  ','resist persecution and fight for their rights  ','','','b','','post-utme','2012',55,'Admin','0000-00-00 00:00:00','2020-06-04 07:43:17'),(170,'According to Peter, Judgment of God must first begin in  ','the house of God  ','the public places  ','the midst of criminals ','the government auditoria ','','','a','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-06-02 22:04:55'),(171,'Paul told the believers in Corinth that no one can say Jesus is Lord except by  ','knowledge  ','revelation  ','grace  ','the Holy Spirit ','','','a','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(172,'Render to Caesar the things that they are Caesar’s and to God the things are God’s, the above quotation emphasizes  ','Obedience to divine authority  ','Striking a balance between civil and divine authorities ','Disobedience to civil authority  ','Total rejection of both divine and civil authorities','','','b','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-06-03 22:25:14'),(173,'The women sang and said David slain his ten thousands and Saul his  ','five thousands   ','thousand  ','thousands   ','six thousand','','','c','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-06-06 06:03:06'),(174,'Israel went into Assyria captivity in','720BC  ','730 AD   ','750BC','722 BC','','','d','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-05 23:25:07'),(175,'A prophet mostly emphasized the holiness of God. This prophet was  ','Hosea  ','Jeremiah  ','Ezekiel   ','Isaiah','','','d','','post-utme','2013',56,'Admin','0000-00-00 00:00:00','2020-05-04 18:42:36'),(176,'One of the following was not among the religious sects in the New Testament  ','The Pharisees   ','The Nazarenes','The Essenes','The Sadducees','','','c','','post-utme','2013',48,'Admin','0000-00-00 00:00:00','2020-06-05 16:39:17'),(177,'“Talitha cumi” means','Dorcas, Arise   ','Little girl, I say to you, arise  ','Thy will be done','Jesus is coming','','','b','','post-utme','2013',43,'Admin','0000-00-00 00:00:00','2020-05-03 17:47:17'),(178,'Who was the secretary employed by Jeremiah to write his prophecy?','Amanuensis  ','Amos  ','Baruch  ','Joshua','','','c','','post-utme','2013',43,'Admin','0000-00-00 00:00:00','2020-07-06 21:33:58'),(179,'Who among the seven deacons was an evangelist  who had four daughters who prophesied?  ','Stephen  ','Philip   ','Barnabas   ','Nicholas','','','b','','post-utme','2013',49,'Admin','0000-00-00 00:00:00','2020-05-06 07:44:53'),(180,'The son of Solomon who made unwise decisions was ….','Jeroboam      ','Rechoboam','Rehoboam    ','Asa','','','c','','post-utme','2013',49,'Admin','0000-00-00 00:00:00','2020-06-03 19:53:06'),(181,'The book of ____ mostly emphasized social justice','Amos   ','Ezekiel   ','Hoshea','Isaiah','','','a','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-06 10:55:24'),(182,'In one of the missionary journeys, Paul was stoned   to a state of coma in  ','Antioch in Pisidia   ','Iconium  ','Lystra   ','Antioch of Syria','','','c','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-06-03 23:38:30'),(183,'Moses spoke  to the Israelites to fear not, but be calm, confident and see the salvation of God at  ','Pi-Hahirotti   ','Meribah   ','Wilderness of Sinai ','d.Elim','','','a','','post-utme','2013',56,'Admin','0000-00-00 00:00:00','2020-06-05 16:39:17'),(184,'One of the following is not in the Pentateuch  ','Exodus    ','Judges     ','Leviticus   ','Numbers','','','b','','post-utme','2013',52,'Admin','0000-00-00 00:00:00','2020-05-04 18:42:36'),(185,'The sons of Samuel who did not walk in his ways were:','Phinehas and Hophni    ','Hophni and Amos  ','Joel and Phinehas        ','Abijah and Joel','','','d','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-03 20:02:33'),(186,'What was the second temptation of Jesus according to the Gospel according to Luke?','The Devil wanted Jesus to worship him  ','The Devil wanted Jesus to deny God','The Devil wanted Jesus to jump from the pinnacle of the Temple    ','The devil wanted Jesus to turn stones to bread','','','a','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-20 13:10:09'),(187,'Jonah refused to go to Nineveh because  ','Ninevites were in human and wicked','God was merciful, gracious and could forgive them  ','he was timid to deliver the message  ','he did not want to endanger his life','','','b','','post-utme','2013',57,'Admin','0000-00-00 00:00:00','2020-05-03 17:31:33'),(188,'‘Those who honour me I will honour , and those who despise  me shall be lightly esteemed.’ Who was being addressed?  ','Eli   ','Samuel','Hophni   ','Joshua','','','a','','post-utme','2013',47,'Admin','0000-00-00 00:00:00','2020-06-03 08:50:55'),(189,'Amos reference to ‘cows of Bashan’ was a metaphoric allusion to  ','women of Samaria  ','rich people of Samaria   ','poor people of Samaria  ','illustrious sons of Samaria','','','a','','post-utme','2013',48,'Admin','0000-00-00 00:00:00','2020-06-07 19:15:46'),(190,'Amos explained true religion as  ','singing of praises to God  ','self-righteousness','fasting and praying  ','being just and righteous','','','d','','post-utme','2013',52,'Admin','0000-00-00 00:00:00','2020-06-06 17:09:24'),(191,'Who was the prophet who said “I will put my law within them, and will write it upon their heart….”?  ','Isaiah  ','Jeremiah','Hosea   ','Amos','','','b','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-07-06 16:57:28'),(192,'The relationship between God and Israel was described by Hosea as that of a','faithless wife and a loving husband','a loving wife and a faithless husband  ','a penitent wife and aggressive husband  ','a faithless husband and a faithless and nonchalant wife.','','','d','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-04-28 17:37:40'),(193,'One of the following is not among the “I am” Sayings of Jesus  ','I am the bread of life','I am the gate of life','I am the good shepherd','I am the way','','','b','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-06-06 13:41:06'),(194,'In what way was Moses a prototype of Jesus Christ?','Moses was a great prophet who led Israel out of Egypt','Moses did not die naturally','Moses appeared to Jesus on Mount of Transfiguration','Moses was persecuted by his people','','','a','','post-utme','2013',53,'Admin','0000-00-00 00:00:00','2020-06-05 07:20:23'),(195,'“O dry bones, hear the word of the Lord… “The dry bones mentioned by Prophet Ezekiel  in the statement above refer to the','Amalakite king and soldiers  ','Whole house of Israel  ','Hittites and the Assyrians  ','Babylonians troubling Israel','','','b','','post-utme','2013',55,'Admin','0000-00-00 00:00:00','2020-06-05 07:33:29'),(196,'The eunuch who went to Jerusalem to worship in Acts 8:27 was a  ','minister of God  ','minister of Candace the queen Gaza  ','minister of Candace the king of the Ethiopians','minister of Candace the queen of the Ethiopians','','','d','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-03 20:02:33'),(197,'At the time of creation, the river that flowed out of Eden to water the garden divided into','Pishon, Hauijah, Gihon and Tigris','Tigris, Cush, Assune and Hauijah','Pishon, Tigris, Gihon and Euphrates','Euphrates, Gihon, Assyna and Tigris','','','c','','wassce','2005',69,'Admin','2016-11-12 11:56:06','2020-06-06 06:14:35'),(198,'During the creative activity of God, He made the beasts','in His own image','to multiply on the earth','according to their kinds','to serve the needs of man','','','c','','wassce','2005',66,'Admin','2016-11-12 11:56:06','2020-06-07 19:15:48'),(199,'“Two nations are in your womb, and two peoples born of you shall be divided”. The two people are','Moses and Jacob','Jacob and Benjamin','Esau and Ishmael','Esau and Jacob','','','d','','wassce','2005',49,'Admin','2016-11-12 11:56:06','2020-07-07 06:44:19'),(200,'Moses was nursed by','Pharaoh’s daughter','Rachael','his mother','Rebecca','','','c','','wassce','2005',55,'Admin','2016-11-12 11:56:06','2020-07-05 14:07:59'),(201,'The name Ichabod means','Yahweh is God','beloved of  Yahweh','I have asked him from the Lord','the glory has departed from Israel.','','','d','','wassce','2005',60,'Admin','2016-11-12 11:56:06','2020-06-05 15:31:42'),(202,'When Saul and his troops came after David in the wilderness of Ziph, David and Abishai went to Saul’s camp \t\tto','slay him','surprise him','capture him alive','dialogue with him','','','b','','wassce','2005',59,'Admin','2016-11-12 11:56:06','2020-06-06 06:14:35'),(203,'Saul’s death on Mount Gilboa was in consequence of his','sin of disobedience','resorting to the witch of Endor','loss of confidence in David','armour bearer’s obedience','','','a','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-05-03 17:04:30'),(204,'Naboth would not give the vineyard to Ahab because it was','under cultivation','inherited from his father','better than Ahab’s offer','undervalued by the king','','','b','','wassce','2005',56,'Admin','2016-11-12 11:56:06','2020-07-06 09:49:51'),(205,'A good example of parental responsibility was demonstrated by','Samuel','Eli','David','Asa','','','b','','wassce','2005',66,'Admin','2016-11-12 11:56:06','2020-06-07 19:15:46'),(206,'When God said to Solomon, “Ask what I shall give you”, he requested for','long life and prosperity','power and assistance against his enemies','peace and understanding to serve God','wisdom and understanding to serve the people','','','d','','wassce','2005',53,'Admin','2016-11-12 11:56:06','2020-06-04 09:19:51'),(207,'The remote cause of the fall of Jerusalem was','Josiah’s death at the battle of Megiddo','the military might of Israel’s enemies','the sins of Manasseh, the king','Judah’s with holding of tribute to Nebuchadnezzar','','','c','','wassce','2005',58,'Admin','2016-11-12 11:56:06','2020-07-04 02:00:18'),(208,'Nebuchadnezzar punished those who refused to worship the golden image by throwing them into','the River Nile','the rivers of  Babylon','a furnace','a lion’s den','','','c','','wassce','2005',54,'Admin','2016-11-12 11:56:06','2020-06-05 14:35:45'),(209,'The wife of Hosea was called','Gomer','B . Rahab','Jael','Hagar','','','a','','wassce','2005',54,'Admin','2016-11-12 11:56:06','2020-06-04 23:38:14'),(210,'As a reward for their faith, Shadrach, Meshack and Abednego were','asked to return to Jerusalem','granted respectable positions','offered money by the king','made to praise Yahweh','','','b','','wassce','2005',49,'Admin','2016-11-12 11:56:06','2020-05-05 18:27:24'),(211,'Who among the prophets was referred to as a prophet of doom?','Isaiah','Ezekiel','Amos','Jeremiah','','','d','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-07-05 20:50:41'),(212,'Jonah typified Jesus Christ when he','surrendered himself to be swallowed by the fish','offered to lose his life that others might be saved','rejected the message of God','announced destruction for the Ninevites','','','b','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-06-06 06:10:46'),(213,'The message of Amos was mainly about','the love of God','man’s response to God’s love.','the holiness of God','social justice','','','d','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-06-03 12:47:33'),(214,'Before Joseph and Mary came together, she was found to be with a child','to be called Jesus','of the Holy Spirit','who shall be called Emmanuel','spoken of by the prophets','','','b','','wassce','2005',57,'Admin','2016-11-12 11:56:06','2020-07-05 20:39:45'),(215,'“How is it that you, a Jew, ask a drink of me, a woman of \tSamaria?” The speaker was surprised because','Jesus was God and not human','the Jews could only buy water from Samaria','the Jews had no dealings with Samaria','it was unlawful for a man to receive water from a woman','','','c','','wassce','2005',58,'Admin','2016-11-12 11:56:06','2020-05-01 09:38:03'),(216,'Jesus said “Not everyone who says to me ‘Lord, Lord,’ shall enter into the kingdom of heaven, but he who','hears the word of God”.','prays and fasts’','prophesies in my name”','does the will of my father”','','','d','','wassce','2005',61,'Admin','2016-11-12 11:56:06','2020-06-03 17:17:59'),(217,'According to Jesus, a disciple must not','hate his parents and family','bear his own cross','be a poor man','count the cost','','','d','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-06 10:55:24'),(218,'Instead of being unnecessarily anxious about life and the affairs of this world, Jesus taught us to','relax our minds and wait for the manna from above','seek first the kingdom of God and its righteousness','seek water baptism and qualify for divine healing','repent of our sins and preach the gospel.','','','b','','wassce','2005',54,'Admin','2016-11-12 11:56:07','2020-06-03 16:39:32'),(219,'According to Jesus, the seventy disciples who returned from a successful missionary work should rejoice because','the demons were subject to them','the sick were healed through their ministry','the lame walked just at their command','their names were written in heaven','','','d','','wassce','2005',62,'Admin','2016-11-12 11:56:07','2020-06-05 14:28:50'),(220,'The seeds that fell among thorns represent those who hear the word of God but lose it because','they refuse to be baptized in water','their parental background does not allow them to believe','the cares of the world and delight in riches choke the word','the unbelievers do not permit new converts to receive the word','','','c','','wassce','2005',61,'Admin','2016-11-12 11:56:07','2020-06-06 06:20:32'),(221,'The rich man who ignored the needs of Lazarus lacked','a sense of proportion','parental care','human sympathy','spiritual contentment','','','a','','wassce','2005',52,'Admin','2016-11-12 11:56:07','2020-07-04 01:50:42'),(222,'Abiding in Christ’s love demands that we','have hope for the future','keep His commandments','imitate one another','manifest the peace of God','','','b','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-06-07 19:15:47'),(223,'According to Jesus, a good shepherd lays down his life for the sheep but a hireling','sells them off for personal profit','abandons the sheep in the face of danger','protects some of the sheep leaving others to danger','asks for better pay before doing his work.','','','b','','wassce','2005',55,'Admin','2016-11-12 11:56:07','2020-06-06 06:10:46'),(224,'The arrest of Jesus by his enemies was','an accident of faith','a result of his tough teaching','a fulfilment of the scriptures','a ploy to see his miraculous powers','','','b','','wassce','2005',55,'Admin','2016-11-12 11:56:07','2020-07-05 14:37:47'),(225,'The final trial of Jesus was presided over by','Herod','Caiaphas','the High Priest','Pilate','','','d','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-07-04 02:00:18'),(226,'Before his ascension, Jesus commissioned his disciples to go to all nations and','cast out demons','heal the sick','raise the dead','make disciples of them','','','d','','wassce','2005',55,'Admin','2016-11-12 11:56:07','2020-05-04 18:42:36'),(227,'The experience which totally changed Paul’s focus in life was his','witnessing the martyrdom of Stephen','determination to wipe out the church','participation in the council of Jerusalem','encounter with Jesus on the road to Damascus','','','d','','wassce','2005',58,'Admin','2016-11-12 11:56:07','2020-06-05 15:31:43'),(228,'Herod persecuted the early church because he was','opposed to the Apostles’ teaching','impressed by his growing popularity after killing James','unhappy that the Jewish leaders were not doing enough havoc to the apostles','asserting the extended powers granted him Rome.','','','b','','wassce','2005',60,'Admin','2016-11-12 11:56:07','2020-06-06 06:14:35'),(229,'One of the early Christians who sold his property and gave the money to the apostles was','Barnabas','Stephen','Barabbas','Matthias','','','a','','wassce','2005',51,'Admin','2016-11-12 11:56:07','2020-06-05 23:41:23'),(230,'Which of the following was not characteristic of the Early Church?','Constant change in leadership','Devotion to the teachings of the apostles','Breaking bread in members’ homes','Communal fellowship','','','a','','wassce','2005',63,'Admin','2016-11-12 11:56:07','2020-07-05 20:50:41'),(231,'“Father forgive them for they know not what they do” was the prayer said by','Philip','Peter','Paul','Stephen','','','d','','wassce','2005',59,'Admin','2016-11-12 11:56:07','2020-07-05 20:39:45'),(232,'Paul argued that Jesus died for us while we were yet sinners in order to','prove that he was not an ordinary man','show Gods’ love for sinful man','warn us to desist from sin','give us power to possess the earth','','','b','','wassce','2005',61,'Admin','2016-11-12 11:56:07','2020-06-02 17:49:19'),(233,'Paul, in Romans, taught that Christians are Abraham’s descendants by','grace','faith','circumcision','law','','','b','','wassce','2005',51,'Admin','2016-11-12 11:56:07','2020-07-05 13:42:57'),(234,'According to Romans, when civil authorities punish evil doers, they do so as the','agents of God’s wrath','supervisory authority','agents of the darkness of this world','representatives of angelic powers','','','a','','wassce','2005',60,'Admin','2016-11-12 11:56:07','2020-06-02 16:50:26'),(235,'Paul said he was not fit to be called an apostle because he','was not called like the others','was not a Jew','persecuted the Early Church','was only a distributor of letters','','','c','','wassce','2005',52,'Admin','2016-11-12 11:56:07','2020-07-05 13:46:53'),(236,'In Romans, Paul admonished Christians, in their dealings with secular powers, to','reject all secular laws','pray for the leaders','refuse to pay tax to them','respect the authorities','','','d','','wassce','2005',69,'Admin','2016-11-12 11:56:07','2020-07-04 02:00:18'),(237,'Paul taught that by our common faith in Jesus and baptism, the difference between Jews and Gentiles has become','permanent','temporal','irrelevant','real','','','c','','wassce','2005',60,'Admin','2016-11-12 11:56:07','2020-06-05 16:39:17'),(238,'The Philippians’ gifts to Paul were for','the growth of the church','his sustenance','distribution to the saints','other Christian prisoners','','','b','','wassce','2005',62,'Admin','2016-11-12 11:56:07','2020-06-06 06:20:32'),(239,'Which of the following does not relate to the new life in Christ?','Baptism','Circumcision','Grace of God','Faith','','','b','','wassce','2005',58,'Admin','2016-11-12 11:56:07','2020-06-04 16:42:04'),(240,'Paul taught the Colossians that the relationship between wives and their husbands should be as','is fitting in the Lord','the culture demands','is written in the law','the husband commands','','','a','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-06-03 21:46:48'),(241,'At the coming of the Lord, unbelievers will','be condemned','have a desolate land','be hit by famine','die in divine war','','','a','','wassce','2005',64,'Admin','2016-11-12 11:56:07','2020-07-07 06:44:19'),(242,'Paul compares the manifestations of spiritual gifts in individual members of the Church to the','unity of the human body','rights of the individual members of the Church','rights of the different parts of the body','unity of the Church','','','a','','wassce','2005',65,'Admin','2016-11-12 11:56:07','2020-06-03 16:59:52'),(243,'Paul wrote to the Thessalonians about idleness because he \tlearnt that they were','among the idlest people in Asia','forcing Christians to work in the Church','unwilling to give offerings','expecting the second coming of Christ','','','d','','wassce','2005',51,'Admin','2016-11-12 11:56:07','2020-06-05 07:20:23'),(244,'Paul appealed to Philemon to forgive Onesimus on the basis of','equality','righteousness','love','faith','','','a','','wassce','2005',66,'Admin','2016-11-12 11:56:07','2020-06-02 19:21:58'),(245,'James recommends the anointing oil of the elders because such anointing','prepares the sick for his last journey','makes the sick holy and righteous','promotes physical recovery','ensures forgiveness to the sick','','','d','','wassce','2005',68,'Admin','2016-11-12 11:56:08','2020-06-03 20:02:33'),(246,'Peter advised his fellow elders to tend the flock of God that was in their charge','with care','willingly','by example','domineeringly','','','a','','wassce','2005',65,'Admin','2016-11-12 11:56:08','2020-06-05 15:31:43'),(247,'In Timothy, Paul urges Christians to pray for kings and those in authority for the achievement of','a successful Christian life','godly and acceptable life','peace and exaltation in life','quiet and peaceable life.','','','d','','utme','2009',59,'Admin','2016-11-12 12:16:55','2020-07-07 06:44:19'),(248,'According to Galatians, one of the benefits of being a joint heir with Christ is having His Spirit in','worship','the heart','the body','prayers','','','b','','utme','2009',50,'Admin','2016-11-12 12:16:57','2020-06-05 15:31:44'),(249,'According to Ephesians, children who obey their parents in the Lord will','be happy','go to heaven','have long life','be great.','','','c','','utme','2009',53,'Admin','2016-11-12 12:16:57','2020-07-05 20:47:32'),(250,'According to Thessalonians, the day of the Lord will not come unless the','living die first','scoffers come first','dead rise first','rebellion comes first.','','','d','','utme','2009',66,'Admin','2016-11-12 12:16:58','2020-06-05 16:07:18'),(251,'In Romans, Paul condemned sin taking over mortal bodies in the new life as instruments of','greediness','wickedness','sadness','foolishness.','','','b','','utme','2009',77,'Admin','2016-11-12 12:16:58','2020-06-05 14:28:50'),(252,'In his teaching on partiality, James declares that mercy triumphs over','judgment','righteousness','grace','faith.','','','a','','utme','2009',84,'Admin','2016-11-12 12:16:58','2020-06-07 19:15:46'),(253,'In Paul’s arrangement of the spiritual gifts in Corinthians, the last is','the utterance of wisdom','interpretation of tongues','gifts of healing','various kinds of tongues.','','','b','','utme','2009',64,'Admin','2016-11-12 12:16:58','2020-06-02 16:31:56'),(254,'In His sermon on the Mount, Jesus said that the poor in spirit are blessed for they would','be satisfied','be comforted on the last day','inherit the kingdom of heaven','inherit the earth.','','','a','','utme','2009',68,'Admin','2016-11-12 12:16:58','2020-07-07 06:44:19'),(255,'According to Matthew, the stone on the tomb of Jesus was removed by','an angel','a Roman soldier','Mary Magdalene','Peter and John.','','','a','','utme','2009',63,'Admin','2016-11-12 12:16:58','2020-06-05 22:20:30'),(256,'Angel Gabriel told Zachariah that he would become dumb until John was born because he','looked down on the Angel','was advanced in age','disagreed with Elizabeth, his wife','did not believe God’s words.','','','d','','utme','2009',58,'Admin','2016-11-12 12:16:58','2020-05-04 10:21:47'),(257,'“...but should write to them to abstain from the pollutions of idols and from unchastity and from what is strangled and from blood...” The statement above was made at the Council of Jerusalem by','Philip','Simon','James','Peter','','','d','','utme','2009',59,'Admin','2016-11-12 12:16:58','2020-07-07 09:02:33'),(258,'In the country of the Gerasenes, Jesus healed the','man possessed of demons','paralytic at the pool','leper','blind man.','','','a','','utme','2009',49,'Admin','2016-11-12 12:16:58','2020-06-05 14:28:50'),(259,'Following the death of Stephen, the only group of believers not scattered by the great persecution was the','deacons','apostles','prophets','disciples.','','','d','','utme','2009',67,'Admin','2016-11-12 12:16:58','2020-06-05 15:31:44'),(260,'According to Luke, when Moses and Elijah appeared during the Transfiguration, they spoke of Jesus’','departure','second coming','resurrection','trials.','','','a','','utme','2009',51,'Admin','2016-11-12 12:16:58','2020-07-06 10:55:25'),(261,'The baptism of Jesus by John in River Jordan was to','convince others that John was His forerunner','ensure that proper baptism must be in a river','service as an example','fulfil all righteousness.','','','d','','utme','2009',63,'Admin','2016-11-12 12:16:58','2020-07-04 02:00:18'),(262,'Herod was delighted to see Jesus because he had heard of Him for so long and wanted to','send Him to Rome','sentence Him to death','see Him perform miracles','make Him his friend.','','','c','','utme','2009',74,'Admin','2016-11-12 12:16:58','2020-06-06 06:10:46'),(263,'“Do you understand what you are reading?” Philip asked the Ethiopian eunuch the question above when he found him reading the book of','Hosea','Ezekiel','Jeremiah','Isaiah.','','','d','','utme','2009',71,'Admin','2016-11-12 12:16:58','2020-07-07 06:44:19'),(264,'“Unbind him, and let him go.” The statement was made by Jesus when','He raised to life the dead Lazarus','He healed the son of the widow at Nain','He healed the centurion’s servant','a boy bound by Satan was brought to Him.','','','a','','utme','2009',71,'Admin','2016-11-12 12:16:58','2020-06-03 09:02:55'),(265,'In Luke, at the Last Supper, Jesus revealed His','resurrection','imminent sufferings','love for His disciples','ascension.','','','b','','utme','2009',54,'Admin','2016-11-12 12:16:58','2020-07-05 20:47:32'),(266,'The good shepherd according to Jesus is one who','lays down his life for his sheep','goes about with his sheep','keeps many healthy sheep','feeds his sheep in green pastures.','','','a','','utme','2009',69,'Admin','2016-11-12 12:16:58','2020-06-05 23:25:07'),(267,'Jesus: stilling of the storm was to','escape from danger','impress His disciples','demonstrate His power','help the fishermen.','','','c','','utme','2009',51,'Admin','2016-11-12 12:16:58','2020-06-02 14:11:16'),(268,'“Can any one forbid water for baptizing these people who have received the Holy Spirit just as we have?” The statement above was made by Peter at the conversion of','Herod','Lydia','Saul','Cornelius.','','','d','','utme','2009',63,'Admin','2016-11-12 12:16:58','2020-06-03 19:53:49'),(269,'The disciple who replaced Judas Iscariot was','Justus','Stephen','Mathias','Luke.','','','c','','utme','2009',54,'Admin','2016-11-12 12:16:58','2020-06-01 22:36:17'),(270,'The message in the parable of the weeds is to','make Christians to be aware of the evil one','remind Christians to pray always','teach Christians to be aware of false teaching','warn Christians on what will happen at the close of age','','','c','','utme','2009',62,'Admin','2016-11-12 12:16:58','2020-07-04 01:50:42'),(271,'The sin of the sons of Eli was that they treated the offering of the LORD with','suspicion','contempt','disgust','jealousy.','','','b','','utme','2009',76,'Admin','2016-11-12 12:16:58','2020-06-09 11:38:06'),(272,'In order for the people of Israel to be ready to meet the LORD by the third day at Mount Sinai, they were','not to drink alcohol','to wear white garments','to wash their garments everyday','not to go near a woman.','','','c','','utme','2009',65,'Admin','2016-11-12 12:16:58','2020-06-28 00:22:49'),(273,'For worshipping the molten calf, God described the Israelites as','a stubborn nation','an unholy nation','a stiff-necked people','an unrighteous people','','','c','','utme','2009',62,'Admin','2016-11-12 12:16:58','2020-07-04 02:00:18'),(274,'“1 will not eat until I have told my errand” In the statement above, the errand of Abraham’s servant was to','find a wife for Isaac','deliver the camels to Laban','assess Isaac’s future wife','deliver Isaac’s message to Laban','','','a','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-06-05 07:13:26'),(275,'Saul leant from Samuel’s spirit that the LORD would','give the Philistines into his hands','afflict him with sickness','because Isaac’s future wife','pardon his iniquity','','','c','','utme','2009',73,'Admin','2016-11-12 12:16:58','2020-07-06 10:55:25'),(276,'“My spirit shall not abide in man forever, for he is flesh...” When God made the statement above, He concluded that man’s days shall be','one hundred years','one hundred and fifty years','eighty years','one hundred and twenty years.','','','a','','utme','2009',55,'Admin','2016-11-12 12:16:59','2020-06-03 01:56:55'),(277,'According to proverbs, a son that is attentive to a father’s instruction will','be rich','have eternal life','gain insight','be forgiven his sins','','','b','','utme','2009',59,'Admin','2016-11-12 12:16:59','2020-06-05 15:31:41'),(278,'When God called Moses to deliver the Israelites, he resisted because he could not speak and he was told to','perform some signs with his rod','wait for a sign from God','go with Joshua who would speak for him','go with Aaron who would speak for him','','','d','','utme','2009',66,'Admin','2016-11-12 12:16:59','2020-06-07 19:15:47'),(279,'David was anointed king over Judah at','Zuph','Bethlehem','Hebron','Gibeon.','','','c','','utme','2009',68,'Admin','2016-11-12 12:16:59','2020-07-06 11:14:44'),(280,'“Behold, if people of Israel are to come, let us deal shrewdly with them, lest they multiply.....” ln the statement, the first step by the king of Egypt was to','cast all Hebrew male children into the Nile','impose heavy tax on them','kill Hebrew male children','set taskmasters over them to afflict them with burdens','','','d','','utme','2009',64,'Admin','2016-11-12 12:16:59','2020-06-04 08:59:04'),(281,'“Let the waters under the heavens be gathered together into one place, and let the dry land appear.” In the statement above  the dry land and the water refer to','earth and oceans','firmament and seas','firmament and oceans','earth and seas','','','d','','utme','2009',70,'Admin','2016-11-12 12:16:59','2020-06-04 09:55:10'),(282,'What did Gideon call the altar which he built to the LORD?','The LORD is merciful','The LORD is peace','Jehovah Jireh','The LORD is great','','','a','','utme','2009',64,'Admin','2016-11-12 12:16:59','2020-04-09 17:27:26'),(283,'When King Nebuchadnezzar besieged Judah, he took away all classes of people but spared the','poorest people of the land','palace guards','children and the aged','priests and prophets','','','a','','utme','2009',67,'Admin','2016-11-12 12:16:59','2020-06-07 19:15:48'),(284,'After Prophet Ezekiel had eaten what he was offered, he was sent to speak to','a people of hard language','the house of Israel','the house of Judah','a people of foreign language','','','b','','utme','2009',62,'Admin','2016-11-12 12:16:59','2020-07-04 02:00:18'),(285,'Josiah believed that the wrath of the LORD was kindled against him and all Judah because','they did not observe the Passover','there was an unholy thing in their midst','the people have forgotten God','their fathers were disobedient to God.','','','b','','utme','2009',68,'Admin','2016-11-12 12:16:59','2020-06-04 05:15:45'),(286,'“Son of man, stand upon your feet, and I will speak with you.” What happened to the Son of man after the instruction above?','The Spirit entered him.','He became terrified.','The angels gave him support.','He began to prophesy.','','','a','','utme','2009',62,'Admin','2016-11-12 12:16:59','2020-04-30 18:00:11'),(287,'God had pity on the people of Nineveh because','they listened to Jonah’s message','the king punished all the violent people in the land','they turned from their evil way.','they made sacrifices of sin offering to God.','','','c','','utme','2009',53,'Admin','2016-11-12 12:16:59','2020-06-03 09:02:55'),(288,'The Kingdom of Israel was divided because the','kingdom was too large to be administered','leadership wanted to create more nations','followership wanted more nations','last two kings made unwise policies.','','','d','','utme','2009',67,'Admin','2016-11-12 12:16:59','2020-06-02 22:29:56'),(289,'“Behold, I am the LORD, the God of all flesh; is anything too hard for me...” The statement above suggests that God is','merciful','awesome','most powerful','not changeable.','','','b','','utme','2009',63,'Admin','2016-11-12 12:16:59','2020-06-02 23:46:46'),(290,'Immediately after the contest on Mount Carmel, Elijah prayed and God answered him with','thunder','rainfall','a whirlwind','a heavy storm.','','','a','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-07-02 17:47:14'),(291,'Prophet Amos told Israel to hate evil, love good and establish justice in the gate so that God would','heal their diseases','give them good leaders','be gracious to them','multiply their descendants.','','','c','','utme','2009',70,'Admin','2016-11-12 12:16:59','2020-06-02 19:15:10'),(292,'In addition to the declaration of freedom to the exiles in Babylon, King Cyrus ordered for','free will offering for the house of God in Jerusalem','the release of Jewish, slaves in the empire','security check on the Jews before departure','support from craftsmen in Babylon.','','','a','','utme','2009',69,'Admin','2016-11-12 12:16:59','2020-06-04 16:49:21'),(293,'“Am I God, to kill and to make alive, that this man sends words to me to cure a man of his leprosy...” Prophet Elisha responded to the king’s reaction in the statement above by','directing the nation of Israel to pray and fast','requesting the leper to come to his house','directing the leper to go to River Jordan','asking the leper to offer a sacrifice.','','','b','','utme','2009',59,'Admin','2016-11-12 12:16:59','2020-07-04 02:00:18'),(294,'According to Prophet Jeremiah, one of the promises of God was that He would give the Israelites','new priests','new commandments','kings after His own heart','shepherds after His own heart.','','','c','','utme','2009',63,'Admin','2016-11-12 12:16:59','2020-05-04 18:17:41'),(295,'Prophet Hosea named his second child Not Pitied because God would no more pity the','kings of Judah','kings of Israel','house of Judah','house of Israel.','','','c','','utme','2009',60,'Admin','2016-11-12 12:16:59','2020-07-06 10:55:24'),(296,'“Test your servants for ten days; let us be given vegetables to eat and water to drink...” In the statement above, Daniel was talking to','King Darius','the chief of the eunuchs','the steward of the chief eunuch.','King Artaxerxes.','','','b','','utme','2009',60,'Admin','2016-11-12 12:16:59','2020-07-04 02:00:18'),(297,'God blessed and hallowed the seventh day because','it was the day He rested from creation','it was the day He created man','He wanted it to be a day of worship','He saw that all He had created was good.','','','a','','utme','2011',62,'Admin','2016-11-12 12:27:45','2020-06-06 06:20:32'),(298,'Noah’s ark was sustained during the flood by its','resting on the highest mountains','being rowed on the waters','floating on the water','being anchored safely','','','c','','utme','2011',52,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(299,'God visited the children of Israel on Mount Sinai during the giving of  the commandments through','a storm','mist and dew','smoke and fire','a still small voice','','','c','','utme','2011',62,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(300,'When asked to interpret Pharaoh’s dream, Joseph’s first response was','...God has revealed to Pharaoh what he is about to do.','...It is not in me; God will give Pharaoh a favourable answer.','...God will shortly bring it to pass.','…let Pharaoh select a man discrete and wise','','','b','','utme','2011',73,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(301,'When Joshua fell upon his face during Israel’s defeat at Ai, God told him to rise and','send more courageous soldiers to Ai','encourage the people','pray fervently against their enemies','sanctify the people','','','d','','utme','2011',52,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(302,'God guided Abraham’s steward in choosing a wife for Isaac by','teaching him how to select a good woman','leading a lady to fulfil his prayer request','taking him to Abraham’s fatherland','giving him an exemplary woman.','','','c','','utme','2011',58,'Admin','2016-11-12 12:27:46','2020-06-02 22:34:11'),(303,'Why was God angry with Eli?','Eli’s sons disregarded the people’s warning','Eli’s sons were wicked people.','Eli’s sons dishonoured God and he treated them with levity.','Eli’s sons were appointed as priests against God’s will.','','','c','','utme','2011',61,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(304,'Laxity in disciplining children is dangerous to both the family and society as exemplified by','Jonathan','Tamar','Absalom','Ahikam.','','','c','','utme','2011',62,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(305,'God promised Abraham that nations of the earth shall be blessed through him because','he had obeyed Him','his descendants had obeyed Him','of his kindness to Hagar','of  his exemplary leadership.','','','a','','utme','2011',66,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(306,'The punishment for Adam and Eve’s sin was that they','were driven out of the garden','would be naked forever','would never fellowship with God','would be enemies of crawling animals.','','','a','','utme','2011',51,'Admin','2016-11-12 12:27:46','2020-07-06 20:25:16'),(307,'‘Do not destroy him; for who can stretch out his hand on the LORD’S anointed, and be guiltless?’ In the statement above, David was acknowledging God’s role in','Abishai’s command','Saul’s leadership','Samuel’s priesthood','Elijah’s prophet hood.','','','b','','utme','2011',56,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(308,'Saul’s decision to consult a medium displayed his lack of','faith in his army','faith in God','leadership qualities','respect for the dead.','','','b','','utme','2011',75,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(309,'Solomon made the most unwise decision by engaging in','marriages to foreign women','alliances with his brothers','so many wars of conquest','developmental works.','','','a','','utme','2011',80,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(310,'The man of God whose word was ignored by Kings Ahab and Jehoshaphat was','Elijah','Zedekiah','Malakiah','Micaiah','','','d','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-06-04 16:47:29'),(311,'Baal did not answer his worshippers at the contest on Mount Carmel because he','was annoyed with their sacrifice','did not hear','wanted to disgrace his worshippers','was asleep.','','','b','','utme','2011',75,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(312,'The workmen who repaired the house of the LORD during Josiah’s religious reforms were not made to account for the money given them because they','did not receive the money directly','lacked accounting capabilities','bribed the Temple officials','were honest workmen.','','','a','','utme','2011',89,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(313,'During Jehoiakim’s reign, Judah was destroyed as punishment for Manasseh’s sin of','keeping Temple prostitutes in the land','defiling the vessels in the Temple','offering unacceptable sacrifice','shedding innocent blood.','','','a','','utme','2011',59,'Admin','2016-11-12 12:27:46','2020-07-07 06:44:19'),(314,'Nehemiah responded to the opposition of the enemies of Israel by','telling the people not to say a word','reporting the issue to King Artaxerxes','inviting them to dialogue in the King’s court','asking God to return their taunt back to them.','','','d','','utme','2011',69,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(315,'Nebuchadnezzar ordered his subjects to worship the image he set up whenever they','heard his voice','saw him stand before the image','heard the sound of the horn','were told to do so.','','','c','','utme','2011',62,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(316,'‘What is this that you have done!”  The people in the ship asked Jonah the question above because','he was fast asleep in the ship','they knew he was fleeing from the LORD','he lied to them about his presence in the ship','they realized that he had made attempts to commit suicide.','','','b','','utme','2011',57,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(317,'What shall I do with you, O Ephraim? What shall I do with you, O Judah? Your love is like a morning cloud...” In the statement above, the love of Israel is compared to a morning cloud because it','disappears fast','withers','is cloudy','darkens the day','','','a','','utme','2011',61,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(318,'According to Amos, God desires knowledge of Him rather than','fervent prayers','dependency on the Law','the multitude of prophecies','burnt offerings','','','d','','utme','2011',68,'Admin','2016-11-12 12:27:46','2020-05-05 18:27:24'),(319,'In his vision, Isaiah’s guilt was taken away and his sin forgiven after','the angel of the LORD appeared to him','his mouth was touched with a burning coal','the seraphim had spoken to him','he had agreed to serve God.','','','b','','utme','2011',59,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(320,'The prophet who was ordained from the womb for God’s service was','Jeremiah','Isaiah','Ezekiel','Hosea.','','','a','','utme','2011',66,'Admin','2016-11-12 12:27:46','2020-07-07 06:16:58'),(321,'According to Jeremiah, the anger of God towards Israel would only be reduced by','His mercy','the prophet’s repentance','the prophet’s prayers','His glory.','','','a','','utme','2011',68,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(322,'When Zechariah saw the angel of the Lord standing on the right side of the altar of incense, he','cried out to him','was troubled and afraid','rejoiced in the Lord','left the Temple immediately.','','','b','','utme','2011',50,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(323,'‘Follow me and leave the dead to bury their own dead’ By this statement, Jesus means that','disciples shall not attend burials','there is no life after death','following Him comes before anything else','shall leave their families in God’s care','','','c','','utme','2011',64,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(324,'The disciples became terrified when they saw Jesus walking on the sea because','they thought He would drown','they thought He was a ghost','they lacked faith in Him','there was a great storm.','','','c','','utme','2011',58,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(325,'The Jews sought to kill Jesus after He healed the man at the pool of Bethzatha because they thought that He','claimed to have authority to forgive sins','made Himself equal with God','did not agree with the law of Moses','said that He was born before Abraham.','','','c','','utme','2011',56,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(326,'In the parable of the sower, the seed that fell among the thorns symbolized the one who hears the word but','does not understand it','loses it to the enemy','does not immediately receive it','the cares of the world choke it.','','','d','','utme','2011',63,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(327,'Jesus encouraged His followers to rejoice when they were \tpersecuted because','great would be their reward in heaven','angels would come to their aid','they would not lack anything good','all their sins would be forgiven.','','','a','','utme','2011',61,'Admin','2016-11-12 12:27:47','2020-07-05 14:30:11'),(328,'‘Blessed are you, Simon Bar-Jona ! For flesh and blood has not revealed this to you...’ As exemplified by the statement above, for believers to be able to identify with Jesus, they must','offer their lives','be led by the Spirit','keep all the commandments','vow not to deny Him.','','','b','','utme','2011',54,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(329,'Jesus drove the money changers and sellers of doves out of the Temple because','the people defiled it with dubious business','there was no need for animal sacrifice anymore','the people were disobedient to the Law','animals and birds were not allowed in it.','','','a','','utme','2011',73,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(330,'The tearing of the curtain of the Temple into two at the death of Jesus signifies','the passing away of the prophets','direct access to God through Christ','that Jesus was a powerful person','that God was truly with Jesus.','','','b','','utme','2011',67,'Admin','2016-11-12 12:27:47','2020-06-04 16:47:29'),(331,'“Tell people, His disciples came by night and stole him away while we were asleep...” The intention of the speaker in the statement above was to','implicate the disciples','absolve the soldiers from all blame','deny the resurrection story','convince the authority','','','c','','utme','2011',80,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(332,'Jesus charged His followers to walk in the light while they had the light so that they may','have eternal life','become custodians of it','have the light of life','become sons of it.','','','c','','utme','2011',62,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(333,'In the early Church, believer devoted themselves to the','daily distribution of food','apostles’ teaching and fellowship','breaking of bread in the Temple','performance of miracles','','','c','','utme','2011',61,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(334,'The disciple that went to preach in Samaria after the great persecution in Jerusalem was','Philip','Andrew','Peter','James.','','','a','','utme','2011',61,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(335,'Saul was convened so that he might','cause confusion among the Jews','help Peter in his work','not be killed for his sins','spread the word to the Gentiles.','','','d','','utme','2011',73,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(336,'What effect did the decision of the Council of Jerusalem have on the early Church?','Members became more untied','the Church experienced freedom from persecution','The Jews became leaders of the community.','Gentiles were free to be members of the Church','','','d','','utme','2011',64,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(337,'Paul in Romans stated that the righteousness of God has been manifested through','the Law','the priests','faith in Jesus','Temple sacrifices.','','','c','','utme','2011',66,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(338,'According to Romans, all who were baptized into Christ were also baptized into His','crucifixion','persecution','suffering','death','','','d','','utme','2011',67,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(339,'According to Paul in Philippians, humility means giving consideration to other people’s','wealth','weakness','interests','needs.','','','c','','utme','2011',68,'Admin','2016-11-12 12:27:47','2020-06-03 23:52:04'),(340,'In Corinthians, believers are taught to forgive one another in order to','keep Satan from gaining advantage','prevent the wrongdoer from losing his salvation','remove the curse from the offender','discourage the offender from committing more sin.','','','a','','utme','2011',65,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(341,'In Corinthians, Paul stated that by one Spirit we were','free from bondage of sin','united into one church','committee to Christian service','baptized into one body','','','d','','utme','2011',62,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(342,'Paul commended the churches in Macedonia for giving out of their freewill to the','saints','poor','priests','sick.','','','b','','utme','2011',66,'Admin','2016-11-12 12:27:47','2020-05-04 18:50:20'),(343,'‘Pay all of  them their dues, taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honour to whom honour is due’. Paul made the statement above to the Church at','Thessalonica','Rome','Corinth','Ephesus.','','','b','','utme','2011',62,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(344,'At the second coming of Christ, those who are alive shall be','bound for life','caught up together with the Lord','separated from the dead','taken to the new Jerusalem','','','b','','utme','2011',63,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(345,'According to James, treatment of brethren at fellowship should not be based on','appearance','sentiments','gender','age.','','','a','','utme','2011',58,'Admin','2016-11-12 12:27:47','2020-07-04 01:50:42'),(346,'Peter in his epistle, charged his fellow elders to','take care of their families','be strong in their faith','have compassion on the weak','tend the flock of God.','','','d','','utme','2011',60,'Admin','2016-11-12 12:27:47','2020-07-07 06:16:58'),(347,'The land, the sea and vegetation were created on the','first day','second day','third day','fifth day.','','','c','','wassce','2008',53,'Admin','2016-11-12 12:38:50','2020-05-04 10:21:47'),(348,'God blessed the seventh day and hallowed it because it marked the day that He','completed His work of creation','handed over the earth to Adam','saw all His created work as perfect','rested from His work of creation.','','','d','','wassce','2008',56,'Admin','2016-11-12 12:38:50','2020-06-04 11:55:48'),(349,'Which of the following was not part of the honour done to Joseph when Pharaoh made him a ruler in Egypt?','Joseph was made to address the people','The land of Goshen was given to Joseph','Joseph was dressed in garments of fine linen','A gold chain was put around Joseph’s neck.','','','b','','wassce','2008',59,'Admin','2016-11-12 12:38:50','2020-06-05 14:35:45'),(350,'What was Moses’ reaction when God called him to liberate his people from Egypt?','He was afraid of being punished for his previous offence','His people would think he was too young to lead them','His people would not listen to him','His father in-law would not allow him to go.','','','c','','wassce','2008',61,'Admin','2016-11-12 12:38:50','2020-07-05 19:08:13'),(351,'God led the Israelites in the wilderness during the day in form of','fire','light','cloud','rainbow.','','','c','','wassce','2008',49,'Admin','2016-11-12 12:38:50','2020-06-03 23:35:53'),(352,'When Moses stayed away for too long on the mountain, the people of Israel','prayed and fasted','embarked on farming','returned to Egypt','made and worshipped idol.','','','d','','wassce','2008',57,'Admin','2016-11-12 12:38:50','2020-06-05 14:35:45'),(353,'God provided water for the Israelites by asking Moses to strike the rock at trice wilderness of','Rephidium','sin','Massah','Paran.','','','b','','wassce','2008',52,'Admin','2016-11-12 12:38:50','2020-06-04 23:38:14'),(354,'When the Spirit of the Lord departed from Saul','a new spirit entered into him','an evil spirit from God tormented him','he consulted an oracle','he went into hiding.','','','b','','wassce','2008',61,'Admin','2016-11-12 12:38:50','2020-07-07 06:44:19'),(355,'When David spared the life of Saul the second time he took away his','bow and arrow','spear and jar of water','royal crown and armour','spear and iron shield.','','','b','','wassce','2008',59,'Admin','2016-11-12 12:38:50','2020-06-07 19:15:48'),(356,'Solomon first applied wisdom granted to him by God at Gibeon by the','establishment of high places in Judah','utterances of proverbs and parables','marriage alliances with foreign nations','judgment between the two harlots.','','','d','','wassce','2008',59,'Admin','2016-11-12 12:38:50','2020-07-06 16:57:28'),(357,'In his reform, King Josiah first attacked the','prostitutes that came around the temple at night','priests that made burnt offerings in the temple','Canaanite divinities - the Baal and Ashera','traders who profaned the temple.','','','c','','wassce','2008',63,'Admin','2016-11-12 12:38:50','2020-06-05 15:31:43'),(358,'A good example of parental responsibility was demonstrated by','Asa','Jeroboam','Joel','Rehoboam.','','','a','','wassce','2008',53,'Admin','2016-11-12 12:38:50','2020-07-06 20:25:16'),(359,'Gomer’s attitude towards her loving husband symbolizes','Hosea’s unfaithfulness to God','Israel’s faithfulness to God','God’s love for Israel','God’s hatred for Israel’s iniquities.','','','b','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-06-06 13:41:06'),(360,'The universal nature of God was demonstrated in the salvation of the people of','Joppa','Tarshish','Tekoa','Nineveh.','','','d','','wassce','2008',63,'Admin','2016-11-12 12:38:51','2020-06-05 16:12:11'),(361,'Ahab was condemned for allowing Jericho to be rebuilt although that city had been','under Joshua’s curse','devastated by an earthquake','the scene of unexplained fatal accidents','the site for Canaanite human sacrifice.','','','a','','wassce','2008',71,'Admin','2016-11-12 12:38:51','2020-07-07 06:44:19'),(362,'Amos declared that God hated solemn feasts, songs and sacrifices because the people of Israel were','unjust and unrighteous','unforgiving and unrepentant','despicable and untruthful','luxurious and arrogant.','','','a','','wassce','2008',64,'Admin','2016-11-12 12:38:51','2020-06-02 22:53:54'),(363,'At Ezekiel’s call he beheld','the love of God','God’s glory','power of God','God’s mercy.','','','b','','wassce','2008',49,'Admin','2016-11-12 12:38:51','2020-07-04 01:50:42'),(364,'In spite of Israel’s faithlessness, Jeremiah saw a ray of hope for them if only they should','forgive one another','repent and return to God','always swear by God','show favour to strangers.','','','b','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-07-04 01:50:42'),(365,'Jesus came to John at River Jordan to','proclaim himself as Messiah','disclose himself to John','call some of John’s disciples','receive baptism like others.','','','d','','wassce','2008',55,'Admin','2016-11-12 12:38:51','2020-05-04 18:50:19'),(366,'“Blessed are the peace makers for','theirs is the kingdom of God”','they shall be called sons of God”','they shall inherit the earth”','they shall be comforted”.','','','b','','wassce','2008',51,'Admin','2016-11-12 12:38:51','2020-06-02 13:05:28'),(367,'According to the Mosaic law, the only authority to declare a leper healed was','Jesus Christ','the Emperor','the priest','the elders.','','','c','','wassce','2008',73,'Admin','2016-11-12 12:38:51','2020-06-03 16:31:47'),(368,'Which of the following did not happen immediately after Jesus had yielded up his spirit on the cross?','The curtain of the temple was torn into two','Joseph of Arimathea removed his body for burial','The earth shook, the rocks were split','The tombs of the saints were opened.','','','b','','wassce','2008',47,'Admin','2016-11-12 12:38:51','2020-07-05 20:50:41'),(369,'According to Matthew, the disciples were sent out with the charge to go nowhere among the Gentiles nor enter any town of the','Jews','Samaritans','Israelites','Unbelievers.','','','b','','wassce','2008',47,'Admin','2016-11-12 12:38:51','2020-06-07 19:15:47'),(370,'Which of the following miracles shows Jesus’ power over nature?','Walking on the sea','Healing of the leper','Healing of the woman with issue of blood','Raising of Lazarus from the dead','','','a','','wassce','2008',56,'Admin','2016-11-12 12:38:51','2020-05-04 18:17:40'),(371,'The fate that would befall those who do not receive the gospel of Jesus would be','rejection by men','lack of peace in the family','condemnation by the church','condemnation by God.','','','d','','wassce','2008',53,'Admin','2016-11-12 12:38:51','2020-07-05 22:20:39'),(372,'Which, according to Luke, were the last words of Jesus?','“Eli. Eli, lamasabach-thani”','“Father forgive them for they know not what they do”','“Truly, I say to you, today you will be with me in paradise”','“Father unto thy hands I commit my spirit”','','','d','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-06-05 07:13:26'),(373,'The first five disciples that Jesus called as recorded in the Synoptic gospels were','Peter, Andrew, James, John and Levi','Peter, Andrew, James, John and Thomas','Peter, Andrew, James. John and Zebedee','Peter, Andrew, James, John and Judas Iscariot.','','','b','','wassce','2008',60,'Admin','2016-11-12 12:38:51','2020-04-12 13:30:50'),(374,'Peter’s general outlook towards Gentile converts was significantly changed by the conversion of','people of Lydda','the people of Samaria','Simon the magician','Cornelius the centurion.','','','d','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-06-07 19:15:47'),(375,'Which Jewish party was bitterly opposed to the disciples for preaching the resurrection of Jesus?','The Pharisees','The Sadducees .','The Zealots','The Sanhedrin.','','','b','','wassce','2008',51,'Admin','2016-11-12 12:38:51','2020-07-07 06:44:19'),(376,'When Peter was in prison the Church','appealed to the authorities','lived in fear','prayed ceaselessly','fought for his release.','','','c','','wassce','2008',45,'Admin','2016-11-12 12:38:51','2020-06-05 06:55:18'),(377,'The miracles of Jesus in St. John’s Gospel are referred to as signs’ of the','manifestations of Jesus as the Messiah','consuming power of God’s glory','judgment that will come upon unbelievers','second coming of Jesus.','','','a','','wassce','2008',45,'Admin','2016-11-12 12:38:51','2020-06-03 23:35:53'),(378,'Believers according to Jesus in John’s gospel, become his friends, if they imbibe his teaching on','forgiveness','obedience','love','faith.','','','c','','wassce','2008',55,'Admin','2016-11-12 12:38:51','2020-06-02 18:34:11'),(379,'The miracles of Jesus recorded in John’s gospel are called','works','signs','powers','wonders.','','','b','','wassce','2008',61,'Admin','2016-11-12 12:38:51','2020-05-04 18:57:05'),(380,'The result of justification by faith is','divine protection','peace with God','forgiveness of sins','answered prayers.','','','c','','wassce','2008',45,'Admin','2016-11-12 12:38:51','2020-07-06 08:36:21'),(381,'Which of the following is the result of Christian baptism?','Fulfilment of all righteousness','Walking in the newness of life','Ability to fast always','Yielding of one’s life to prayer.','','','b','','wassce','2008',46,'Admin','2016-11-12 12:38:51','2020-06-03 08:24:31'),(382,'Sin that reigns in our mortal bodies makes us obey','one another','rules and regulations','our passions','our rulers.','','','c','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-06-02 23:31:40'),(383,'Paul considered himself unfit to be called an apostle because he','did not see Jesus','persecuted the church','worked hard to attain his position','was the least among the believers.','','','d','','wassce','2008',44,'Admin','2016-11-12 12:38:51','2020-05-04 18:17:40'),(384,'Paul says that only the heathen who are led astray by dumb idols could say','“Jesus is Lord!”','“Praise ye the Lord!”','“Hail the messiah!”','“Jesus be cursed!”','','','d','','wassce','2008',51,'Admin','2016-11-12 12:38:51','2020-06-05 16:07:18'),(385,'In the Epistle to Galatians, Christians are children of God through','faith in Christ','keeping of the law','helping the needy','baptism and confirmation','','','a','','wassce','2008',47,'Admin','2016-11-12 12:38:51','2020-07-04 02:00:18'),(386,'Christ demonstrated humility by','riding on an ass to Jerusalem','allowing John to baptize him','taking the form of a servant','eating with sinners','','','c','','wassce','2008',68,'Admin','2016-11-12 12:38:51','2020-07-04 01:50:42'),(387,'Peter admonished Christians to be sober and watchful in order to a void','temptation','God’s wrath','the devourer','damnation','','','a','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-06-05 15:31:42'),(388,'New life in Christ means','paying your tithe regularly','helping the poor and the needy','being dead to sin','getting baptized.','','','c','','wassce','2008',45,'Admin','2016-11-12 12:38:52','2020-06-02 00:05:53'),(389,'In Romans, Paul taught that where there is no law, there is no','transgression','peace','reward','punishment','','','a','','wassce','2008',52,'Admin','2016-11-12 12:38:52','2020-04-12 16:31:19'),(390,'The purpose of grace is to','justify the law','cancel the law','fight the law','establish the law','','','b','','wassce','2008',67,'Admin','2016-11-12 12:38:52','2020-06-04 08:05:52'),(391,'In Romans. Paul stressed that the righteousness of God is','faith in the law for all who believe','works of the law for all who believe','fervent prayers by all believers','faith in Jesus Christ for all who believe','','','d','','wassce','2008',64,'Admin','2016-11-12 12:38:52','2020-05-05 20:14:54'),(392,'The concept of  forgiveness does not include','reconciliation','restoration','peace','wealth','','','d','','wassce','2008',37,'Admin','2016-11-12 12:38:52','2020-05-06 08:07:05'),(393,'Paul said in Galatians that, before faith came, we were confined under','grace','the law','righteousness','love','','','b','','wassce','2008',61,'Admin','2016-11-12 12:38:52','2020-07-04 02:00:18'),(394,'In his letter to Philemon Paul did not ask him to','grant freedom to his slave Onesimus','allow Onesimus become a servant of God','forgive Onesimus for his earlier misbehaviour','prepare a feast for him.','','','a','','wassce','2008',50,'Admin','2016-11-12 12:38:52','2020-07-04 01:50:42'),(395,'Peter enjoined humility because the humble shall','not be tempted','be blessed','receive God’s grace','have long life.','','','b','','wassce','2008',58,'Admin','2016-11-12 12:38:52','2020-07-05 14:07:59'),(396,'Paul, unhappy with high incidence of idleness among the Thessalonians, commanded them to','assist those brothers who live in Idleness','exhort the busy-bodies to leave the church','ensure that any one who does not work must not eat','regard the lazy ones as enemies','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:52','2020-06-03 09:02:55'),(397,'The new covenant between God and the Israelites is centered on','religious doctrines','intensive teaching','collective responsibility','individual responsibility.','','','a','','utme','2013',65,'Admin','2016-11-12 12:51:29','2020-07-07 06:44:19'),(398,'The ark that God commanded Noah to build was made of','acacia wood','gopher wood','cedar wood','cypress wood','','','c','','utme','2013',58,'Admin','2016-11-12 12:51:29','2020-06-06 09:27:58'),(399,'During Moses leadership in Israel, he exhibited most importantly, the talent of a','mediator','warrior','seer','preacher.','','','b','','utme','2013',50,'Admin','2016-11-12 12:51:29','2020-07-07 07:29:26'),(400,'Moses ran away from Egypt after killing an Egyptian because he felt that he might be','endangering other Israelites by his actions','killed by the Egyptian mob','imprisoned by the Egyptian security officers','killed by Pharaoh of Egypt.','','','d','','utme','2013',62,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(401,'How did God guide Eleazar in choosing a wife for lsaac?','He caused Rebekah to give him free accommodation','He made Rebekah’s parents willing to release her','He caused His angel to go ahead of him','He revealed to Rebekah before Eleazar’s arrival','','','d','','utme','2013',61,'Admin','2016-11-12 12:51:30','2020-07-06 21:33:58'),(402,'David’s immediate reaction to the news that the hearts of the Israelites have gone after Absalom was to','Weep for Judah','flee to the wilderness','mobilize his army','plead with Absalom','','','c','','utme','2013',57,'Admin','2016-11-12 12:51:30','2020-07-04 01:50:42'),(403,'David’s inaction at Ammon’s incest with Tamar showed his','lack of control over his children','excessive love for Ammon','ability to forgive as a leader','wisdom and strength of character','','','a','','utme','2013',70,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(404,'The young man of Egypt took David to the band of the Amalekites because','he was afraid for his life','he sought revenge against his former master','David was kind to him','the spirit of God was working through him.','','','d','','utme','2013',54,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(405,'Because David sought God’s will to pursue the Amalekites \twho had invaded Ziklag, he was rewarded with victory and','many new territories','spoils','many prisoners of war','favour','','','b','','utme','2013',61,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(406,'‘...why then have you not kept watch over your lord the king?...” The question above by David was addressed to','Amasa','Joab','Abishai','Abner.','','','c','','utme','2013',64,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(407,'Solomon’s wisdom surpassed the wisdom of all the people of the East and all wisdom of Egypt because he','prayed and fasted daily','employed the service of seers','judged difficult cases','got his wisdom from God.','','','d','','utme','2013',65,'Admin','2016-11-12 12:51:30','2020-07-05 14:37:47'),(408,'Saul relied on a medium because God did not answer him through','dreams, visions and prophets','inspiration, tambourines and prophets','dreams, urim and prophets','lyre, urim and prophets.','','','c','','utme','2013',60,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(409,'When Naboth refused to exchange his vineyard with King Ahab, Ahab reacted by','taking to prayers and fasting','going to his house vexed and sullen','ordering the killing of Naboth','forcefully taking it from him.','','','d','','utme','2013',56,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(410,'The sins of Israel during the reign of Ahab consisted of','worship of the king','trampling upon the poor','worship of idols','desecrating the Temple','','','d','','utme','2013',57,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(411,'The book of the law was found in the house of the LORD during the reign of king','Josiah','Ahab','Omri','Hezekiah.','','','c','','utme','2013',67,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(412,'King Josiah was killed by Pharaoh Neco in a battle at','Syria','Meggiddo','Megiddo','Egypt.','','','c','','utme','2013',70,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(413,'The major reason God allowed the Babylonian attack on the city of Jerusalem was to','demonstrate the ability of God to deliver His people from captivity','set a trap for the Babylonians and destroy them','restore the people of Judah and their leaders to the true worship of God','punish the people of Judah and their leaders for their sins.','','','c','','utme','2013',70,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(414,'When the three Hebrew men refused to worship the King’s image, he commanded that they be','thrown into a furnace','stoned','beheaded','thrown into the lion’s den.','','','c','','utme','2013',65,'Admin','2016-11-12 12:51:30','2020-05-03 05:29:38'),(415,'Jonah’s explanation to the LORD for resisting His first call teaches us that God is','repentant of evil','not ready to act fast','quick to anger','not sincere in His call.','','','c','','utme','2013',62,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(416,'Before his call, Amos was a','herdsman','seer','farmer','prophet.','','','a','','utme','2013',55,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(417,'Amos’ prophecies which were considered as a conspiracy against the northern kingdom were reported to the king by','Micaiah','Amaziah','Hilkiah','Micah.','','','a','','utme','2013',56,'Admin','2016-11-12 12:51:30','2020-06-26 22:10:01'),(418,'How did God help Jeremiah overcome his inability to speak as prophet?','He put out His hands and touched his mouth.','He sent the Seraphim to speak to him.','He gave him a cake of honey to eat.','He touched his mouth with a burning coal.','','','d','','utme','2013',62,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(419,'Prophet Ezekiel was set upon his feet to hear the LORD speak when','an angel of the LORD lifted him','a voice from heaven commanded him to do so','the Spirit entered into him','He was made to touch the ephod','','','d','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(420,'According to Jeremiah, the people of Israel were in exile because of their','impatience and immorality','rebellion against Nebuchadnezzar','maltreatment of the poor','unfaithfulness and faithlessness.','','','b','','utme','2013',65,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(421,'‘‘... and many will rejoice at his birth; for he will be great before the Lord...” In the statement above, the angel made this pronouncement because of','Elizabeth’s disbelief because of her bareness','Mary’s holy nature','Zachariah’s fervent prayers','Joseph’s hesitation to marry Mary.','','','a','','utme','2013',61,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(422,'One quality of a good disciple that was exhibited by the first followers of Jesus was','faith','piousness','diligence','resourcefulness.','','','c','','utme','2013',61,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(423,'“Lord, if you will, you can make me clean.” The statement above was made by the','leper','paralytic','centurion servant','epileptic boy.','','','d','','utme','2013',62,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(424,'The disciples of Jesus could not heal the boy with epilepsy because they','did not fast','had little faith','were powerless','did not pray.','','','a','','utme','2013',67,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(425,'The seeds that fell among the thorns in the parable of the sower refer to people that heard the word of God but','the evil one snatched it','had no faith to nurture it','the criticism of others quenched it','the cares of the words choked it.','','','d','','utme','2013',68,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(426,'The promise to those who are persecuted for righteousness sake is that they will','inherit the earth','inherit the kingdom of heaven','see God','be called sons of God.','','','b','','utme','2013',64,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(427,'According to Peter during the great confession, people believed that Jesus was','the Messiah','a priest','the Son of God','one of the prophets.','','','c','','utme','2013',66,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(428,'‘‘... Behold, your king is coming to you, humble, and mounted on an ass...,” The prophecy in the statement above was fulfilled during Jesus','birth in a manger','transfiguration','triumphal entry','baptism by John','','','d','','utme','2013',67,'Admin','2016-11-12 12:51:30','2020-07-07 07:29:26'),(429,'After His arrest, Jesus was taken to','Pontiphas','Agrippa','Caiaphas','Pilate','','','a','','utme','2013',61,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(430,'According to Mark, the young man that the women saw in Jesus’ tomb told them to go with the disciples and wait for Him in','Bethlehem','Jerusalem','Bethany','Galilee','','','a','','utme','2013',59,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(431,'“He was not the light but was sent to bear witness to the light.” The statement above refers to','Simeon','Jesus','John the Baptist','Peter Barjona','','','b','','utme','2013',64,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(432,'The appointment of deacons became necessary because of the complaint by the','Gentile converts','Hellenists','Pharisees','Sadducees','','','d','','utme','2013',60,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(433,'According to Paul, before his conversion, he persecuted the church violently to','make it desirable to the Gentiles','purge it','destroy it','have it conform to the Law.','','','d','','utme','2013',58,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(434,'“Lord, I have heard from many about this man, how much evil he has done to thy saints at Jerusalem...” Ananias’ response above to God’s request for him to meet Saul shows that he','felt that Saul should not be forgiven','felt that Saul should be punished','was not interested in meeting Saul','was afraid to meet Saul.','','','a','','utme','2013',60,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(435,'“It is necessary to circumcise them, and to charge them to keep the law of Moses.” In response to the Pharisees’ statement above, Peter rebuked them, by saying that God has','made circumcision for only those in leadership','chosen the Israelites among other people','cleansed the Gentiles’ heart by faith','put the yoke upon the Gentiles’ necks.','','','a','','utme','2013',75,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(436,'According to Galatians, judgment is without mercy to one who has shown no mercy, yet mercy triumphs over','tribulation','the law','judgment','punishment.','','','a','','utme','2013',64,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(437,'According to Colossians, the Lord does not wish that any should perish, but that all should','rejoice','be saved','be humble','repent','','','b','','utme','2013',75,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(438,'According to Peter, when Christians humble themselves, God will','protect them','direct their ways','grant them eternal life','exalt them.','','','d','','utme','2013',63,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(439,'According to Paul in his letter to Philemon, forgiveness should not be by compulsion but by','justification','faith','free will','His grace.','','','b','','utme','2013',64,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(440,'In Corinthians, Paul said that one can only say Jesus is Lord by','denouncing the law','faith','grace','the Holy Spirit.','','','b','','utme','2013',68,'Admin','2016-11-12 12:51:31','2020-07-06 03:08:11'),(441,'When Christians give freely, God will supply','only for those that give','their needs according to His riches in glory','their needs according to the measure they give','their needs day by day.','','','d','','utme','2013',68,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(442,'Paul in Timothy urged believers to make supplications, prayers, intercession and thanksgivings for all those who','are in authority','have accepted Christ','have wronged them','are the need','','','c','','utme','2013',70,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(443,'According to Thessalonians, the second coming of the Lord will be','with the blowing of a trumpet','after scoffers have come','when the elements are dissolved','like a thief in the night.','','','b','','utme','2013',53,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(444,'According to James, when we meet various trails in life, we should','bless God’s name','call upon the name of the Lord','count it all joy','rejoice because the Lord is good.','','','d','','utme','2013',67,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(445,'“As each has received a gift, employ it for one another, as good stewards of God’s varied grace...” In the statement above, Peter teaches believers in virtue of','hospitality','giving','communion','fellowship.','','','a','','utme','2013',59,'Admin','2016-11-12 12:51:31','2020-07-07 07:29:26'),(446,'What in the creation account, gave man an edge over every other creature?','Other creatures were made for man','Man alone was created in the Image of God','Man had the rare privilege to dwell in Eden','Satan acknowledged his privileged position','','','b','','wassce','2009',61,'Admin','2016-11-12 13:02:28','2020-07-06 10:55:25'),(447,'At Shechem, God appeared to Abram and told him that','he should continue on his journey southward.','he should leave his country and Kindred.','the land would be given to his descendants.','in the land he should build an altar.','','','c','','wassce','2009',51,'Admin','2016-11-12 13:02:29','2020-06-02 22:53:54'),(448,'In their dealings with God, Abraham and Sarah learnt the \tfollowing lessons except that God is','able to bless the righteous.','faithful to His promise','all powerful-nothing is too hard for Him.','not in a hurry to carry out His promises.','','','c','','wassce','2009',59,'Admin','2016-11-12 13:02:29','2020-07-06 09:49:51'),(449,'Pharaoh’s horsemen and his army overtook the fleeing Hebrews encamped by the sea at','Migdol.','Etham.','Phiahiroth.','Meriba.','','','c','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-06-04 16:40:09'),(450,'The episode of David and Bathsheba, Uriah’s wife was in \tviolation of God’s','sixth commandment.','seventh commandment,','eight commandment.','ninth commandment.','','','a','','wassce','2009',55,'Admin','2016-11-12 13:02:30','2020-07-07 06:44:19'),(451,'When the people of Israel received the encouraging report \tgiven by two of the twelve spies, they decided to','stone Moses for taking them out of Egypt.','choose Caleb as their leader and go back to Egypt.','stone the two spies who gave the report.','raise an army to fight the Canaanites.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-07-05 14:07:59'),(452,'Which of the following tribes accompanied Deborah and Barak to the war against Jabin and Sisera?','Naphtali and Zebulum','Issachar and Reuben','Ephraim and Dan','Judah and Benjamin','','','a','','wassce','2009',57,'Admin','2016-11-12 13:02:30','2020-07-05 13:46:53'),(453,'On matters of parental responsibility, Samuel could not be commended because he','made his children judges instead of priests.','wanted his children to succeed him.','did nothing to stop his children’s immoral behaviours.','did not care what happened to Israel after his death.','','','c','','wassce','2009',66,'Admin','2016-11-12 13:02:30','2020-07-06 03:08:11'),(454,'Eli, the priest in Shiloh, was condemned because he','allowed his children to deprive God of His share of sacrifice.','allowed the Ark of God to be taken to the battle field','did not take God’s message through Samuel seriously.','officiated at the temple without the assistance of the prophet.','','','c','','wassce','2009',50,'Admin','2016-11-12 13:02:30','2020-06-06 17:09:24'),(455,'David’s first Contact with Saul was because he was','skillful in playing.','victorious over Goliath.','a man of valour.','a shepherd boy.','','','a','','wassce','2009',52,'Admin','2016-11-12 13:02:30','2020-06-03 23:31:55'),(456,'David showed Nathan the prophet that he had repented of his sin by','refusing to marry Uriah’s wife.','confessing that he had sinned.','offering to compensate Uriah’s family','making sacrifice to please God.','','','b','','wassce','2009',54,'Admin','2016-11-12 13:02:30','2020-05-05 20:49:11'),(457,'Elijah was a prophet during the reign of','Gideon.','David.','Ahab.','Rehoboam.','','','c','','wassce','2009',53,'Admin','2016-11-12 13:02:30','2020-06-05 16:07:18'),(458,'When God ordered famine on Israel, Elijah was fed by the ravens at','Brook Cherith.','River Jordan.','River Kishon','Mount Carmel.','','','a','','wassce','2009',50,'Admin','2016-11-12 13:02:30','2020-07-05 20:47:31'),(459,'“The Lord forbid that I should give you the inheritance of my fathers”. The inheritance referred to here is','birth right.','the world.','the kingship.','a vineyard.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:30','2020-06-09 11:38:06'),(460,'The king of Judah who suffered in the hands of Nebuchadnezzar was','Jehoachin.','Manasseh.','Josiah.','Zedekiah.','','','d','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-06-07 19:15:48'),(461,'The punishment of Israel according to the vision of Jeremiah includes all the following except','occupation of the land by foreigners.','restoration of their kings and priests.','destruction of their flocks and herds.','consumption of their harvest by their enemies.','','','a','','wassce','2009',76,'Admin','2016-11-12 13:02:30','2020-07-05 13:42:57'),(462,'Complete this statement “Holy, Holy, Holy is the Lord of Hosts,','the Seraphim’s bow to His glory”.','the whole earth will sing His glory”.','the whole earth is full of His glory”.','His creatures will rise to praise His Holy name”.','','','c','','wassce','2009',44,'Admin','2016-11-12 13:02:30','2020-07-05 20:47:31'),(463,'When Isaiah saw the Lord in His holiness and glory, he exclaimed','“Blessed is me for 1 am truly holy”.','“Woe is me! For I am lost”','“Blessed be the name of the Lord”.','“I am finished, for I have seen a holy God”.','','','b','','wassce','2009',57,'Admin','2016-11-12 13:02:30','2020-06-06 06:14:35'),(464,'Jeremiah said the people of Judah were in a state of mourning because,','they sinned against God.','their vessels were empty','their farms were destroyed.','there was drought in the land.','','','a','','wassce','2009',47,'Admin','2016-11-12 13:02:30','2020-07-07 06:44:19'),(465,'The king planned to set Daniel over the whole kingdom because,','he was the most educated of all.','an excellent spirit was in him.','he wanted to favour a foreigner.','Daniel brought information to the king.','','','b','','wassce','2009',55,'Admin','2016-11-12 13:02:30','2020-06-06 11:00:47'),(466,'God spoke through Amos that He would punish Israel for the following sins except that they','sold the righteous for silver.','sold the needy for a pair of shoes.','trampled the head of the poor into the dust.','pursued their brothers with the swords.','','','d','','wassce','2009',52,'Admin','2016-11-12 13:02:30','2020-07-04 02:00:18'),(467,'The first batch of Jewish exiles to rebuild the temple was under the leadership of','Joshua.','Hanani.','Sheshbazzar.','Zerubabel.','','','d','','wassce','2009',54,'Admin','2016-11-12 13:02:30','2020-07-04 01:50:42'),(468,'Which two tribes in Israel led in the rebuilding of the temple after the exile?','Judah and Benjamin','Naphtali and Joseph','Manasseh and Reuben','Judah and Ephraim','','','c','','wassce','2009',48,'Admin','2016-11-12 13:02:30','2020-06-02 18:34:11'),(469,'After his baptism Jesus began to','proclaim the kingdom of God.','baptize others.','confront religious leaders.','teach in parables.','','','a','','wassce','2009',66,'Admin','2016-11-12 13:02:30','2020-07-05 13:42:57'),(470,'The devout man in Jerusalem whom the Lord promised would see Christ before his death was named','Zechariah.','Joseph.','Stephen','Simeon.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:30','2020-07-06 09:49:51'),(471,'Jesus ordered the seventy disciples not to salute any one because','their mission required urgency.','it is not part of their mission to salute people.','they may forget their mission.','salutations to strangers defile the Jews.','','','a','','wassce','2009',54,'Admin','2016-11-12 13:02:30','2020-07-06 20:25:16'),(472,'Jesus teaches, “Let your light so shine before men...” By light Jesus refers to,','the Christian character and virtues in us.','the bright lights at the altar in the church.','the light that shows the right way.','our knowledge of the scripture.','','','a','','wassce','2009',55,'Admin','2016-11-12 13:02:30','2020-06-04 11:53:53'),(473,'“And if anyone will not receive you or listen to your words, shake off the dust from your feet as you leave that house.” This is a sign of','forgiveness','rebuke','acceptance','condemnation.','','','d','','wassce','2009',51,'Admin','2016-11-12 13:02:30','2020-07-04 02:00:18'),(474,'“Foxes have holes and birds of the air have nets; but the son of man has nowhere to lay His head”. By this statement, Jesus meant that His disciples','would not grow rich.','would not enjoy good houses.','had a lot of task ahead.','had a lot of enemies.','','','c','','wassce','2009',53,'Admin','2016-11-12 13:02:30','2020-07-04 01:50:42'),(475,'The treasures which Jesus wants us to lay in heaven include','generosity and kindness.','love and mercy.','works of righteousness','gold and silver.','','','c','','wassce','2009',58,'Admin','2016-11-12 13:02:30','2020-06-05 15:31:44'),(476,'“No one can serve two masters...” This means that one should not','be idolatrous.','belong to two religions.','worship money.','bean unbeliever.','','','a','','wassce','2009',50,'Admin','2016-11-12 13:02:30','2020-06-02 00:05:53'),(477,'Whoever drinks the water Jesus gives will never thirst? What is this water?','The spirit of God.','Holy and anointed water.','The word of God.','Law of God.','','','a','','wassce','2009',45,'Admin','2016-11-12 13:02:31','2020-07-06 03:08:11'),(478,'Jesus said “I am the bread of life; he who comes to me shall not hunger...” ‘Bread of life’ in this context means the','body of Jesus Christ.','manna given to the Israelites.','holy bread of life.','spiritual food through Jesus.','','','d','','wassce','2009',54,'Admin','2016-11-12 13:02:31','2020-07-06 09:49:52'),(479,'John’s summary of God’s love for the world is that He','sent his son to judge the world righteously.','created man in his own image with authority.','made light that the world might walk in it.','gave his only son to save all believers.','','','d','','wassce','2009',42,'Admin','2016-11-12 13:02:31','2020-07-04 02:00:18'),(480,'According to John’s Gospel, Lazarus was from','Bethany','Galilee.','Jerusalem.','Bethsaida.','','','a','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-06-01 21:26:02'),(481,'Jesus said to Martha, “...and whoever live and believes in me shall never die...” Jesus talks about','physical death.','spiritual death.','emotional death.','natural death.','','','b','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-07-07 06:44:19'),(482,'The meeting of the Christian Council of Jerusalem was chaired by','Peter.','Paul.','James.','John.','','','a','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-07-06 20:42:46'),(483,'Paul wished to retain Onesimus with him but did not do so because','Onesimus was unwilling to stay with him.','he was afraid of Philemon’s reaction.','he did not like such a favour to be imposed on Philemon.','Onesimus would soon be released from jail.','','','c','','wassce','2009',59,'Admin','2016-11-12 13:02:31','2020-07-07 06:44:19'),(484,'Paul and his associates gave the Thessalonian believers an \timportant example to imitate. This example was to','be ready to help the poor always','toil, labour and work to earn a living','depend on foreign aids for sustenance.','suffer imprisonment without complaint.','','','b','','wassce','2009',39,'Admin','2016-11-12 13:02:31','2020-06-02 19:15:10'),(485,'Peter urged all Christians to endure sufferings in faith conscious of the fact that','Jesus, himself also resisted suffering','the devil could lure them from faith with suffering.','only the physical body is affected.','suffering is temporary and leads to eternal glory.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-06-05 16:12:11'),(486,'Paul’s teaching in Colossians on love, respect and obedience concerns','Christian giving.','family relationship.','master servant relationship.','Christian relations with their enemies.','','','b','','wassce','2009',58,'Admin','2016-11-12 13:02:31','2020-06-03 18:47:07'),(487,'According to Peter, God set up the state for the purpose of','silencing the ignorance of foolish men.','collecting appropriate taxes from its citizens','carrying out appropriate sanctions for the guilty','ensuring the protection of its citizens','','','d','','wassce','2009',48,'Admin','2016-11-12 13:02:31','2020-04-28 16:20:47'),(488,'In Paul’s epistle to the Thessalonians, any Christian living \tin idleness should be','thrown out of the Church.','looked at as an enemy.','sympathized with','avoided by the others.','','','d','','wassce','2009',52,'Admin','2016-11-12 13:02:31','2020-06-03 09:02:55'),(489,'The two major obstacles against Abraham’s hope for a son were','impotency and old age','faithlessness and unbelief.','old age and barrenness.','sin and doubt.','','','b','','wassce','2009',56,'Admin','2016-11-12 13:02:31','2020-05-04 18:25:29'),(490,'The theme justification by faith can only be achieved through','sacrifices to Jesus.','resurrection of Jesus.','redemptive power of Jesus.','response of angels to Jesus.','','','c','','wassce','2009',58,'Admin','2016-11-12 13:02:31','2020-07-07 06:44:19'),(491,'According to Paul in Romans, if it is the adherents of the law who are to be the heirs of Abraham then faith in Jesus is','null and void.','not attainable','.     \t\t\t\\nbeyond the reach of Gentiles','transgression of the law.','','','a','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-07-05 20:47:32'),(492,'“Your blood be upon your heads! I am innocent. From now on I will go to the Gentiles.” This was Paul’s utterance at','Antioch.','Corinth.','Lystra.','Ephesus.','','','d','','wassce','2009',52,'Admin','2016-11-12 13:02:31','2020-07-05 22:20:39'),(493,'The preaching of the resurrection of Jesus by his disciples \twas opposed by the','Jews.','Elders.','Sadducees.','Pharisees.','','','c','','wassce','2009',51,'Admin','2016-11-12 13:02:31','2020-06-06 06:10:46'),(494,'The first missionary journey was started by Paul and','Judas','.      \\nBarabbas.','Timothy.','Barnabas.','','','d','','wassce','2009',54,'Admin','2016-11-12 13:02:31','2020-06-07 19:15:46'),(495,'During the election to replace Judas among the twelve, Peter quoted from the book of','Joel.','Psalms.','Isaiah.','Ezekiel.','','','b','','wassce','2009',61,'Admin','2016-11-12 13:02:31','2020-07-04 02:00:18'),(496,'What was Herod’s reaction when he heard the news about Jesus’ birth?','He sent gifts','He was excited','He was troubled','He became calm','','','c','','utme','2015',60,'Admin','2016-11-12 13:28:12','2020-07-05 13:46:53'),(497,'“....... Behold, I will bring evil upon you; I will utterly sweep you away .....” Elijah pronounced destruction on Ahab with the statement above for his sin of','the killing of God’s prophets','worship of other gods','going to war against Ramoth-gilead','greed, covetousness and murder','','','a','','utme','2015',53,'Admin','2016-11-12 13:28:14','2020-06-05 16:01:12'),(498,'The ruler of the synagogue whose child Jesus raised to life was','Zebedee','a widow','Jairus','a centurion','','','c','','utme','2015',55,'Admin','2016-11-12 13:28:14','2020-05-04 18:32:58'),(499,'According to Amos, true religion entails','engaging in sacrifices and burnt offerings','being just and righteous','fasting and praying always','engaging in holy feasts and assemblies','','','b','','utme','2015',55,'Admin','2016-11-12 13:28:14','2020-07-06 10:48:19'),(500,'Paul in Romans said that the righteousness of God has been manifested through faith in Jesus Christ for','the exaltation of the authority','the cleansing of the sinners','the dead in Christ','all those who believe','','','d','','utme','2015',50,'Admin','2016-11-12 13:28:14','2020-04-12 16:22:21'),(501,'“I tell you, if these were silent, the very stones would cry out.” Jesus’ statement above was made when','He was rebuked by the Pharisees for eating with sinners','the scribes and the chief priest came to arrest Him','He consoled a woman on His way to the cross','the Pharisees asked Him to rebuke His disciples','','','d','','utme','2015',59,'Admin','2016-11-12 13:28:15','2020-07-06 21:33:58'),(502,'Before Moses brought the Israelites to meet God on Mount Sinai, he charged them to','touch the mountain at the sight of smoke','ensure they eat very well','wash the garments and be consecrated','mate with their wives for three days','','','c','','utme','2015',49,'Admin','2016-11-12 13:28:15','2020-06-04 23:38:14'),(503,'In His teaching about Himself, Jesus said the hireling is not a good shepherd because he','leaves the sheep and flees at the sight of danger','owns the sheep but does not care for them','cares for the sheep but does not discipline them','is the gate-keeper who shuts the sheep out','','','a','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-06-06 09:27:58'),(504,'God displayed His supremacy when Ahab was king during \tthe','incidence of Naboth’s vineyard','war with Ramoth-gilead','inciting of Jehoshaphat against him','contest of Mount Carmel','','','d','','utme','2015',51,'Admin','2016-11-12 13:28:15','2020-06-06 13:41:06'),(505,'In his teaching on effective prayer, James said that the prayer of faith would','influence the authority','heal and cleanse sins','ensure salvation for the sick','enhance commitment to church','','','b','','utme','2015',42,'Admin','2016-11-12 13:28:15','2020-06-06 06:20:32'),(506,'Paul in Thessalonians declared that at the second coming \tof the Lord, those who are alive will not precede those that are','ignorant','condemned','asleep','faithful','','','c','','utme','2015',36,'Admin','2016-11-12 13:28:15','2020-06-02 16:31:56'),(507,'When Ezekiel ate the scroll that was given to him his call. it signified that','God would always go before him','his sins were forgiven','he would never be hungry','he was filled with God’s word','','','d','','utme','2015',41,'Admin','2016-11-12 13:28:15','2020-07-06 03:08:11'),(508,'“ ..... I will surely tear the kingdom from you and will give it to your servant .....” An unwise decision of Solomon that resulted in God making the pronouncement above was his','dependence on other nations for supplies','policy of forced labour','neglect of God for other gods','heavy taxation on the people','','','c','','utme','2015',50,'Admin','2016-11-12 13:28:15','2020-07-06 11:14:44'),(509,'God fed the Israelites with Manna at the wilderness of','Zin','Elim','Sinai','Sin','','','d','','utme','2015',56,'Admin','2016-11-12 13:28:15','2020-06-04 23:38:14'),(510,'“The very stone which the builders rejected has become the head of the corner” The statement above in Peter was directed to those who','did not believe in Jesus’ preciousness','built the Temple of Jerusalem','don’t offer spiritual sacrifice','are hard hearted against Jesus Christ','','','d','','utme','2015',58,'Admin','2016-11-12 13:28:15','2020-06-02 23:03:00'),(511,'A good example of parental responsibility was demonstrated by','Samuel','Eli','Asa','David','','','c','','utme','2015',42,'Admin','2016-11-12 13:28:15','2020-06-02 22:34:11'),(512,'Why did Pilate send Jesus to Herod during the trial?','Jesus, as a Galilean was under Herod’s jurisdiction','Pilate had no power to pass the death sentence','Herod’s court was the last point before crucifixion','Herod had longed to see Jesus perform miracles','','','a','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-06-06 06:14:35'),(513,'Who was the king that granted Nehemiah permission to go and rebuild Jerusalem?','Darius','Nebuchadnezzar','Artaxerxes','Cyrus','','','c','','utme','2015',53,'Admin','2016-11-12 13:28:15','2020-07-05 20:39:45'),(514,'“Shall l pursue after this band? Shall l overtake them?” David’s dependence on God for direction is depicted in the statement above when','Absalom had revolted against him','Saul was within his grasp','the Amalekites had raided Ziklag','he was to go against Goliath','','','c','','utme','2015',51,'Admin','2016-11-12 13:28:15','2020-06-02 17:49:19'),(515,'A parable that teaches a lesson on the demands of the kingdom is that of the','lost coin','Weeds','Samaritan','prodigal son','','','c','','utme','2015',51,'Admin','2016-11-12 13:28:15','2020-07-07 06:44:19'),(516,'Paul admonished the Romans to live a new life in Christ by yielding themselves to God as men who','have been brought from death to life','will meet Christ in God’s Kingdom','will receive judgment on the last day','have suffered for the sake of the gospel','','','a','','utme','2015',42,'Admin','2016-11-12 13:28:15','2020-05-04 18:25:28'),(517,'An action that demonstrated Solomon’s wisdom was his','judgment of the prostitute’s child','reliance on a medium','alliance with other nations','taxation policy for his building works','','','a','','utme','2015',54,'Admin','2016-11-12 13:28:15','2020-07-05 14:30:11'),(518,'According to Corinthians, Paul while defending himself advised believers to boast only of the things that','exhibit their authority','show their weakness','display their exaltation','depict their righteousness','','','d','','utme','2015',57,'Admin','2016-11-12 13:28:15','2020-06-06 09:27:58'),(519,'The most important aspect of the religious reforms of King Josiah was the','renewal of the covenant','cleaning of the Temple','discovery of the tomb of the man of God','discovery of the book of the law','','','d','','utme','2015',50,'Admin','2016-11-12 13:28:15','2020-07-07 06:44:19'),(520,'Cornelius who was converted and baptized by Peter was a','member of the Sanhedrin','centurion','Gentile who persecuted the church','scribe','','','b','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-06-01 20:20:10'),(521,'David was successful as a leader in Israel because','he submitted to God’s guidance','of his training as a solider','of the love of his people','of his life as a shepherd','','','a','','utme','2015',49,'Admin','2016-11-12 13:28:15','2020-06-03 19:53:49'),(522,'The action that portrayed Moses as a leader of the Israelites was his','request to Pharaoh to spare Israelite’s sons','disobedience to Pharaoh and escape','killing of an Egyptian who fought with a Hebrew','protection of the daughter of Jethro','','','c','','utme','2015',46,'Admin','2016-11-12 13:28:16','2020-06-03 23:08:46'),(523,'“How is it that you have agreed together to tempt the spirit of the Lord ....” The statement above was made in reference to the greed of','Gehazi and Naaman','Ahab and Jezebel','Judas and scribes','Ananias and Sapphira','','','d','','utme','2015',49,'Admin','2016-11-12 13:28:16','2020-07-04 01:50:42'),(524,'The king who captured and drove the Israelites into exile during the reign of Jehoiachin was','Nebuchadnezzar','Darius','Cyrus','Artaxerxes','','','a','','utme','2015',57,'Admin','2016-11-12 13:28:16','2020-05-04 18:57:04'),(525,'Nebuchadnezzar decreed that all his subjects should worship the image he had set up whenever they','desired something from him','saw him stand before it','looked upon it','heard the sound of music','','','d','','utme','2015',43,'Admin','2016-11-12 13:28:16','2020-04-28 17:34:07'),(526,'“The Son of man must suffer many things, and be rejected by the elders .....” Jesus made the statement above after He','cleansed the Temple','demanded to know who people thought He was','taught on the Mount','was asked by Pilate if He was the King of the Jews','','','b','','utme','2015',51,'Admin','2016-11-12 13:28:16','2020-06-04 08:59:04'),(527,'How old was Abram when God appeared to him the second time?','105 years','75 years','99 years','85 years','','','c','','utme','2015',57,'Admin','2016-11-12 13:28:16','2020-06-09 11:39:08'),(528,'“Leaves the dead to bury their own dead ....” Jesus’ statement above to the man He asked to follow Him was indicative of','His power over death','His desire to save the man','the futility of life','the cost of discipleship','','','d','','utme','2015',53,'Admin','2016-11-12 13:28:16','2020-07-05 20:47:31'),(529,'Paul in Romans advised believers to respect those in authority to avoid God’s wrath and also for the sake of','conscience','Christ','faith','others','','','a','','utme','2015',48,'Admin','2016-11-12 13:28:16','2020-05-04 18:50:19'),(530,'“What is this conversation which you are holding with each other ...” Jesus made the statement above to','Cleopas and the other disciple when','they were on their way to Emmaus','He was about to be arrested','they were gathered in a room after His resurrection','','','a','','utme','2015',63,'Admin','2016-11-12 13:28:16','2020-06-06 11:00:47'),(531,'A key requirement for healing as exemplified by the disciple’s inability to heal the epileptic boy is','righteousness','power','humility','Faith','','','b','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-06-06 06:20:32'),(532,'According to Paul in Philippians, Jesus demonstrated humility when He','had pity on the possessed man','likened Himself to God','forgave those who crucified Him','took the form of man','','','d','','utme','2015',67,'Admin','2016-11-12 13:28:16','2020-06-03 19:53:49'),(533,'“Holy, holy, holy is the Lord of host ....” The statement above was made in reference to the call of','Ezekiel','Jeremiah','Amos','Isaiah','','','d','','utme','2015',52,'Admin','2016-11-12 13:28:16','2020-06-05 14:35:45'),(534,'For obeying His word, God rewarded Shiphrah and Puah with','families','positions','servants','wealth','','','a','','utme','2015',41,'Admin','2016-11-12 13:28:16','2020-05-03 17:31:33'),(535,'In his teaching on Spiritual gifts in Corinthians, Paul said that all gifts are inspired by','the same Spirit','prayer','the individual’s ability','grace','','','a','','utme','2015',64,'Admin','2016-11-12 13:28:16','2020-06-05 22:12:32'),(536,'When David’s son Absalom rebelled against him, David was forced to','flee from Jerusalem','abdicate the throne','divide his kingdom','surrender to him','','','a','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-07-06 21:33:58'),(537,'“Go and stand in the temple and speak to the people all the words of this life.” The angel’s statement above to Peter was after','the murmurings of the Hellenists','his release from prison','his vision of eating unclean meat','he received the Holy Spirit','','','b','','utme','2015',44,'Admin','2016-11-12 13:28:16','2020-07-06 10:55:24'),(538,'In His sermon on the Mount, Jesus discouraged His listeners from laying up treasures on earth because','it would create enmity','they would not be respected','thieves would steal them','the earth would pass away','','','d','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-06-03 16:31:47'),(539,'Paul returned Philemon’s slave back to him, to ensure that','Philemon forgave and accepted the slave','the slave can complete his service time','he would be welcome when he left prison','he could boast of Philemon’s obedience','','','b','','utme','2015',43,'Admin','2016-11-12 13:28:16','2020-07-05 14:07:59'),(540,'One of the prophets that prophesied hope for Israel in spite of God’s promise of punishment was','Amos','Jeremiah','Obadiah','Hosea','','','b','','utme','2015',62,'Admin','2016-11-12 13:28:16','2020-04-28 17:56:22'),(541,'The church that was commended for giving even when in extreme poverty was in','Galatia','Corinth','Macedonia','Thessalonica','','','d','','utme','2015',54,'Admin','2016-11-12 13:28:16','2020-06-03 19:35:12'),(542,'“........ I am the Lord, and there is no other, besides me \tthere is no God....” God’s statement above through Isaiah depicts','assurance to Isaiah of His existence','Israel’s acceptance of His Supremacy','His divine nature','His sovereignty','','','c','','utme','2015',55,'Admin','2016-11-12 13:28:16','2020-06-03 23:08:46'),(543,'Believers today are partakers of the New Covenant through','partaking in baptism by immersion','the gift of the spirit','adherence to all the sacraments','obedience to church leadership','','','b','','utme','2015',48,'Admin','2016-11-12 13:28:16','2020-06-07 19:15:47'),(544,'God’s message through Jonah’s was to the people of','Joppa','Tarshish','Samaira','Nineveh','','','d','','utme','2015',53,'Admin','2016-11-12 13:28:16','2020-06-05 14:28:50'),(545,'Amos is often referred to as a prophet of','doom','love','hope','justice','','','a','','utme','2015',46,'Admin','2016-11-12 13:28:16','2020-07-05 20:50:41'),(546,'On the fourth day, God created the sun, moon and stars for the following purposes except','to separate the day from the night.','for signs of seasons, days and years.','to give light upon the earth.','to dry up flood from the face of the earth.','','','a','','wassce','2010',63,'Admin','2016-11-12 13:36:18','2020-07-07 06:44:19'),(547,'Which of the following rivers flowed out of Eden to water \tits garden? River','Abana','Pharpar','Pishon','Nile','','','c','','wassce','2010',53,'Admin','2016-11-12 13:36:21','2020-05-03 17:47:16'),(548,'The wife of Moses was called','Rebecca.','Rachel.','Zipporah.','Deborah','','','c','','wassce','2010',57,'Admin','2016-11-12 13:36:21','2020-05-03 17:31:32'),(549,'When Joseph was sent to his brothers, he met them pasturing at','Hebron.','Bethel.','Beersheba','Dothan','','','d','','wassce','2010',54,'Admin','2016-11-12 13:36:21','2020-06-01 22:38:15'),(550,'How old was Joshua before he died?','95 years','98 years','110 years','111 years','','','c','','wassce','2010',50,'Admin','2016-11-12 13:36:21','2020-06-05 15:31:44'),(551,'Why was Saul asked to destroy the Amalekites?','They were worshipping false gods','They opposed the Israelites when they left Egypt','They did not assist the Israelites','God did not like the Amalekites','','','b','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-05 20:39:45'),(552,'The first king of Israel lost his throne because he','was a weak king.','knew little about governance.','lost the support of Yahweh.','was irresponsible.','','','d','','wassce','2010',60,'Admin','2016-11-12 13:36:21','2020-06-06 17:09:24'),(553,'During the Ammonite war Uriah disobeyed King David by refusing to go to his house to sleep because','it was wrong to go home drunk.','his wife would regard him as a coward.','it would be unpatriotic to break military vow.','he suspected that the king had lost interest in the battle.','','','c','','wassce','2010',60,'Admin','2016-11-12 13:36:21','2020-06-02 00:32:35'),(554,'When Abner wanted to transfer his allegiance to David, the latter gave him the condition to','openly submit to Joab.','convince all Israel to come over to David.','restore his wife Michal to him.','slay Ishbosheth. Saul’s successor.','','','c','','wassce','2010',42,'Admin','2016-11-12 13:36:21','2020-04-12 13:19:32'),(555,'God said to Solomon in a dream, <em>“Ask what I shall give you”</em>. What did Solomon ask for?','Power and authority','Great wealth and riches','Stable and long term in office','An understanding mind','','','d','','wassce','2010',54,'Admin','2016-11-12 13:36:21','2020-06-06 09:27:58'),(556,'Solomon showed lack of wisdom when he','put up temples for the gods of his wives','married many wives with children','invited the Queen of Sheba','gave out judgment to two harlots.','','','a','','wassce','2010',53,'Admin','2016-11-12 13:36:21','2020-06-02 13:05:28'),(557,'Solomon told Hiram, King of Tyre that he had decided to build a temple for the Lord because','the Lord had given him peace and all good things.','his father, David, never intended to build one.','he wanted to force Hiram to come to his aid.','Hiram had entered into a marriage alliance with his father.','','','a','','wassce','2010',51,'Admin','2016-11-12 13:36:21','2020-07-04 02:00:18'),(558,'Elijah destroyed the prophets of Baal','to oppose Baal worship.','as an act of revenge.','as an act of sacrifice.','to shame Jezebel.','','','a','','wassce','2010',51,'Admin','2016-11-12 13:36:21','2020-07-06 03:08:11'),(559,'Who was the king who reintroduced the Passover feast in Israel?','Jeroboam','Asa','Josiah','Rehoboam','','','c','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-06-03 19:53:49'),(560,'Who was the prophet responsible for the re-building of the Temple during the exile?','Ezra','Isaiah','Jeremiah','Ezekiel','','','a','','wassce','2010',54,'Admin','2016-11-12 13:36:21','2020-07-04 01:50:42'),(561,'Which of the following prophets taught that Yahweh was merciful?','Isaiah','Hosea','Amos','Ezekiel','','','b','','wassce','2010',56,'Admin','2016-11-12 13:36:21','2020-06-03 16:39:32'),(562,'Daniel was delivered from the lion’s den because','of his faith in God’s power.','of the king’s prayers.','he was able to charm the lions.','the lions were kind to him.','','','a','','wassce','2010',58,'Admin','2016-11-12 13:36:21','2020-06-04 16:42:04'),(563,'The person who discovered the book of law in the sanctuary during the reign of Josiah was','Zedekiah','Huldah.','Hilkiah','Jeremiah.','','','c','','wassce','2010',58,'Admin','2016-11-12 13:36:21','2020-06-05 22:20:30'),(564,'According to Amos’ prophecy, the “Day of the Lord” to the Israelites would be a day of','victory over enemies','happiness.','doom.','national triumph.','','','c','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-06-05 23:25:07'),(565,'Isaiah said that when Israel spread forth their hands, God would hide his face because they were','making many prayers','offering vain sacrifices.','worshipping God with their hearts.','observing elaborate feasts.','','','b','','wassce','2010',46,'Admin','2016-11-12 13:36:22','2020-06-03 01:56:55'),(566,'From Luke’s account of the baptism of Jesus, which of the following happened before the voice was heard?','John was reluctant to baptize Him.','John called Jesus the Lamb of God.','Jesus arrived with Peter, James and John','The Holy Spirit descended upon Jesus.','','','d','','wassce','2010',68,'Admin','2016-11-12 13:36:22','2020-06-04 15:17:57'),(567,'Before their first encounter with Jesus, Peter and Andrew were','preachers.','tax collectors.','fishermen.','tent makers.','','','c','','wassce','2010',45,'Admin','2016-11-12 13:36:22','2020-06-05 06:55:18'),(568,'By the action of the Good Samaritan, Christians are encouraged to','go out to the streets and look for someone to help.','always travel with enough money in case the need arises to help.','show compassion and render help to the needy.','avoid travelling on lonely roads where armed robbers could attack.','','','c','','wassce','2010',55,'Admin','2016-11-12 13:36:22','2020-07-06 10:48:19'),(569,'The <em>lost sheep</em> and the <em>lost coin</em> share the following except that','both of them are lost and need to be found','it is their owners’ responsibility to look for them.','the coin, may not know that it is lost.','their owners rejoice when they are found.','','','a','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-06-07 19:15:47'),(570,'The parable of the rich man and Lazarus indicates that','poverty is a mark of righteousness.','death is a leveler for rich and poor','only poor people will die physically.','all rich men are going to hell fire.','','','b','','wassce','2010',43,'Admin','2016-11-12 13:36:22','2020-06-03 22:25:14'),(571,'In one of the resurrection appearances Jesus asked his disciples, whether they had anything to eat as he','was hungry after three days in the grave without food.','suspected that the disciples stock may have finished','wanted to prove to them that he was not a ghost.','wanted to replenish the food stuff.','','','b','','wassce','2010',48,'Admin','2016-11-12 13:36:22','2020-07-05 19:08:13'),(572,'By introducing Jesus as the Lamb, John was pointing to','Jesus’ sacrificial death.','Jesus’ miraculous healing.','the Jewish yearly sacrifices.','the priestly function of Jesus','','','a','','wassce','2010',71,'Admin','2016-11-12 13:36:22','2020-07-05 19:08:13'),(573,'St. John refers to Jesus’ miracles as ‘signs’ because they convey the following ideas except','acceptance of Jesus as son of God.','proofs of the kingdom of God.','faith in Jesus as the means to eternal life.','demand for more wonders.','','','d','','wassce','2010',48,'Admin','2016-11-12 13:36:22','2020-07-05 19:08:13'),(574,'Apart from the miracles at the wedding feast, another miracle of Jesus at Cana in Galilee was','feeding the four thousand.','healing the noble man’s son.','healing of a man born blind','healing a paralytic man.','','','d','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-06-03 18:36:41'),(575,'At whose well did Jesus meet the Samaritan woman?','Abraham','Isaac','Jacob','Joseph','','','c','','wassce','2010',53,'Admin','2016-11-12 13:36:22','2020-07-06 10:48:19'),(576,'The lame man who was healed at the pool of Bethizatha was charged by the Jews for breaking the law of the Sabbath \tbecause he','consulted Jesus on the Sabbath day.','was carrying his pallet on a Sabbath day.','was on a journey on a Sabbath day.','was seen with Jesus on a Sabbath day.','','','b','','wassce','2010',57,'Admin','2016-11-12 13:36:22','2020-06-05 06:55:18'),(577,'The descent of the Holy Spirit on the day of  Pentecost was prophesied by','Amos.','Joel.','David.','Ezekiel.','','','b','','wassce','2010',60,'Admin','2016-11-12 13:36:22','2020-06-05 15:31:42'),(578,'When the apostles in Jerusalem heard that Samaria had received the gospel, they sent to them','Mark and Barnabas.','Peter and John.','Paul and John.','Peter and Paul.','','','b','','wassce','2010',66,'Admin','2016-11-12 13:36:22','2020-06-25 23:11:47'),(579,'The conversion of the Ethiopian eunuch confirms the','universality of the gospel.','work of the Apostles.','work of Philip in Samaria','the love of God for the eunuch.','','','a','','wassce','2010',54,'Admin','2016-11-12 13:36:22','2020-06-05 15:31:43'),(580,'After his conversion, Paul was introduced to the disciples in Jerusalem by','Peter','Ananias.','Barnabas.','Philip','','','c','','wassce','2010',51,'Admin','2016-11-12 13:36:22','2020-07-04 02:00:18'),(581,'Before Barnabas and Saul were sent on missionary journey, the elders, laid hands on them. The laying on of  hands signifies','confirmation.','selection.','commissioning.','protection','','','c','','wassce','2010',61,'Admin','2016-11-12 13:36:22','2020-07-05 20:47:31'),(582,'The man who delivered judgment of the Jerusalem Council on the admission of Gentiles into the Church was','Peter.','Paul.','Barnabas.','James.','','','d','','wassce','2010',51,'Admin','2016-11-12 13:36:22','2020-06-03 17:17:59'),(583,'Why according to Paul must Christians be subject to civil authority?','To receive God’s approval','To avoid God’s wrath','God has commanded it','It is an Old Testament law','','','b','','wassce','2010',57,'Admin','2016-11-12 13:36:22','2020-06-02 14:11:16'),(584,'In the Epistle to the Romans, justification is received through','faith in Jesus.','moral uprightness','observance of the law.','giving of alms','','','a','','wassce','2010',55,'Admin','2016-11-12 13:36:22','2020-05-06 18:56:02'),(585,'By saying that no human being will be justified in the sight of God by works: Paul meant that','the mosaic law was useless in ensuring justification for man.','the law had been weakened in human flesh.','knowledge of sin came through the law.','Moses who gave the law was not justified by the law.','','','b','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-06-05 15:31:43'),(586,'Paul’s greatest writing about spiritual gift is found in his letter to the','Galatians.','Ephesians.','Romans.','Corinthians','','','d','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-06-07 19:15:47'),(587,'In Corinthians, Paul cited all the following resurrection appearances of Jesus except','Cephas.','The Twelve.','Mary Magdalene','James.','','','d','','wassce','2010',50,'Admin','2016-11-12 13:36:22','2020-07-04 02:00:18'),(588,'According to Peter, a Christian should exercise his freedom by','doing what is right.','claiming his freedom at all cost.','enduring pain while suffering.','using it as a pretext for evil.','','','a','','wassce','2010',65,'Admin','2016-11-12 13:36:22','2020-07-06 11:14:44'),(589,'In which of the following ways did the Philippians share in Paul’s suffering while in prison?','Appealing for the release of Paul','Sending him relief materials','Continuing in prayer for him','Remaining in partnership with him in receiving.','','','b','','wassce','2010',53,'Admin','2016-11-12 13:36:22','2020-06-03 18:36:41'),(590,'What advice did Peter give to the elders of the church in their relationship with the younger members?','Work as if being under external constraint','Work without a domineering spirit','Work with a desire for material gains','Control their flocks with firm hands','','','b','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-06-04 23:38:14'),(591,'In Philippians, Paul taught that Jesus ‘humility and death on the cross earned Him','salvation for Israel.','adoption as son of God.','exaltation as Lord.','eternal life in the kingdom.','','','c','','wassce','2010',56,'Admin','2016-11-12 13:36:22','2020-07-07 06:44:19'),(592,'Why did Paul wish to retain Onesimus?','To protect him from persecution','Christianity was opposed to slavery','Philemon had earnestly requested that from Paul','To serve him during his imprisonment','','','b','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-06-07 19:15:47'),(593,'James teaches that the man who shall be blessed is he who','hears the word of God.','knows the law perfectly.','does the word he hears.','teaches the word of God well.','','','c','','wassce','2010',59,'Admin','2016-11-12 13:36:23','2020-07-05 20:50:41'),(594,'Through God the Christian is no longer a slave but a son, and if a son then','a master.','a redeemed.','an heir.','a beneficiary.','','','c','','wassce','2010',59,'Admin','2016-11-12 13:36:23','2020-07-06 10:48:19'),(595,'Peter recommends submission to the civil authority so as to','silence the ungodly.','encourage the believers.','promote faith in God.','live as free men.','','','a','','wassce','2010',64,'Admin','2016-11-12 13:36:23','2020-06-01 21:26:02'),(596,'What was God’s purpose in creating man?','To be master of all creation','To help Him look after the garden','To name the things He created','To multiply and fill the earth','','','d','','utme','2010',76,'Admin','2016-11-12 13:46:53','2020-07-07 05:54:48'),(597,'Isaac’s prayer to God for his barren wife showed that he','truly loved her','sincerely loved his God','had faith in God','was tired of being childless','','','c','','utme','2010',64,'Admin','2016-11-12 13:46:54','2020-07-07 05:54:48'),(598,'In God’s covenant with Israel, the central theme was','restoration','circumcision','obedience','salvation','','','c','','utme','2010',73,'Admin','2016-11-12 13:46:54','2020-07-07 06:44:19'),(599,'‘Who am I that I should go to Pharoah......’ When Moses resisted God’s call with the state¬ment above, it portrayed his','stubbornness','incompetence','lack of strength','lack of eloquence','','','d','','utme','2010',63,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(600,'What was Samson’s major achievement as Israel’s leader?','He suppressed the Philistines','He captured the city of Jericho','He saved the Israelites from the Amorites','He secured permanent independence for Israel','','','a','','utme','2010',59,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(601,'God guided the Israelites on their way from Egypt to the Promised Land by','the work of two angels','dividing the Red Sea','a pillar of cloud and a pillar of fire','miracles that gave them direction on the way','','','d','','utme','2010',62,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(602,'‘Deal gently for my sake with the young man Absalom.’ David’s statement above exhibited his','indulgent love for his son','willingness to forgive his competitors','desire to punish Absalom himself','high level of parental control','','','a','','utme','2010',54,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(603,'How did king Asa prove to be a godly king?','He killed all the prophets of Baal at Mount Carmel.','He saved Judah from the Philistine menace','He instituted spiritual reforms that removed all idols and prostitution in the land.','He made the worship of Yahweh mandatory for every Jew and sojourner.','','','c','','utme','2010',66,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(604,'The Hebrew midwives who obeyed God rather than Pharaoh were blessed with','favour from all the Israelites','long life in Canaan','resources','families','','','d','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(605,'When Saul disobeyed God’s command, Samuel rebuked him by saying that','the sword would never depart from his house','to obey was better than sacrifice','he should fear the LORD and obey the people’s voice.','though he was little, yet he was the head.','','','b','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(606,'David’s behaviour after Prophet Nathan accused him of murder and adultery showed his','justification','repentance','greed','righteousness','','','b','','utme','2010',78,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(607,'How did King Solomon demonstrate his wisdom in settling the dispute over the ownership of a baby by the two \\nProstitutes?','He interrogated them for seven days until the truth was discovered.','He interrogated them for only three days and the truth was revealed','He asked them to divide the child into two and the mother was known.','He threatened to give the child to a neutral woman and the mother was known.','','','c','','utme','2010',72,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(608,'The prophet who made known the imminent divi¬sion of the kingdom of Israel during Solomon’s reign was','Jehu','Ahijah','Elisha','Elijah','','','b','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(609,'Naaman’s leprosy was transferred to Gehazi be¬cause Gehazi was','ambitious','anxious','covetous','contemptuous','','','c','','utme','2010',54,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(610,'Obadiah who was m charge of Ahab’s house hold demonstrated reverence for the LORD by','giving Elijah the bull for the sacrifice on Mount Carmel.','rebuking Ahab and Jezebel for their evil deeds','hiding a hundred prophets of God from Jezebel’s wrath.','helping Elijah to kill the prophets of Baal on Mount Carmel.','','','c','','utme','2010',59,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(611,'Although Josiah removed the vessels of Baal and Asherah from the Temple, God did not turn from the fierceness of His \twrath because”','the people did not remove them completely','Jehoahaz, Josiah’s son, had provoked Him','Manasseh had provoked Him','the people had opposed Josiah.','','','c','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(612,'What was Nehemiah’s initial reaction to the news about the ruins of Jerusalem?','He tasked the people on what to contribute','He called for volunteers to assist him','He fasted and prayed for forgiveness of sins','He asked for permission to travel home.','','','c','','utme','2010',93,'Admin','2016-11-12 13:46:55','2020-07-02 15:08:57'),(613,'After the dedication of the Temple, Ezra studied the law of the LORD in order to','defend the Jews against the Babylonians','become the first judge in Jerusalem','enhance his prophetic status','teach His statutes and ordinances in Israel.','','','d','','utme','2010',76,'Admin','2016-11-12 13:46:55','2020-07-07 06:44:19'),(614,'Daniel became distinguished above all other pre¬sidents and satraps because','an excellent spirit was in him','the spirit of Darius was in him','he was a good administrator','he was highly educated.','','','a','','utme','2010',62,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(615,'How did the Ninevites react to Jonah’s message?','They did not believe it','They believed it for a while','They repented of their sins','They ordered him out of their city','','','c','','utme','2010',56,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(616,'In Prophet Hosea’s analysis, harlotry is equivalent to Israel’s','prostitution','idolatrous practices','religious practices','adultery.','','','b','','utme','2010',60,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(617,'‘... But let justice roll down like waters, and righteousness like an overflowing stream.’ Amos’ statement above suggests that the society was terribly','vindictive','abusive','oppressive','destructive','','','c','','utme','2010',72,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(618,'Isaiah emphasized holiness above all things be¬cause God','knew their hearts were right with him','was not interested in their sacrifices','who called them is holy','was searching their sinful   hearts.','','','c','','utme','2010',60,'Admin','2016-11-12 13:46:55','2020-06-25 23:26:59'),(619,'God told Ezekiel that the house of Israel would not listen to him because they','were a people of foreign speech','had forsaken His laws','were of a stubborn heart','had not truly repented','','','c','','utme','2010',79,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(620,'According to Isaiah, God sent him to','proclaim liberty to the captives','proclaim victory over Israel’s enemies','be a watchman over Israel','destroy and overthrow nations.','','','a','','utme','2010',66,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(621,'Jesus was tempted by the devil so as to','fulfil all righteousness','show His power over forces of nature','show that no one is above temptation','test the devil’s power','','','c','','utme','2010',79,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(622,'‘Depart from me, for l am a sinful man, oh Lord.’ This statement was uttered by Peter at the','last supper','garden of Gethsemane','call of the disciples','transfiguration','','','c','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-07-07 06:44:19'),(623,'The impact of Jesus’ miracle of turning water into wine was that the','servants were astonished','master of ceremony believed','disciples believed more in Him','people glorified God.','','','c','','utme','2010',62,'Admin','2016-11-12 13:46:55','2020-07-07 05:54:48'),(624,'After the healing of the demoniac in the country of the Gerasenes, the people begged Jesus to (Mark 5:15-19)','stay with them','visit them always','go away from them','heal their sick.','','','c','','utme','2010',73,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(625,'Jesus told the parable of the lost sheep in order to illustrate that','every believer ought to rejoice with those who rejoice.','no person can hide from God','God’s love is unlimited','there is joy in heaven over a sinner who repents','','','d','','utme','2010',68,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(626,'According to Jesus, the seventy disciples should rejoice because','their names were written in heaven','their faith and zeal were increased','of the submission of evil Spirits to them','of the fall of Satan from heaven like lightening.','','','a','','utme','2010',71,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(627,'According to Mark, after the transfiguration, Jesus charged His disciples to','be prepared for persecution','tell no one what they had seen','have no hands in His betrayal','go to the Gentiles immediately','','','b','','utme','2010',73,'Admin','2016-11-12 13:46:56','2020-07-04 01:50:42'),(628,'According to Luke, the multitude that followed Jesus during the triumphal entry rejoiced and praised God with a loud voice because (Luke 19:37-39)','they realized that Jesus was a prophet','of the mighty works He had done','He was riding on a colt in humility','they believed He was their Messiah','','','b','','utme','2010',74,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(629,'‘Truly, I say to you, today you will be with me in paradise.....’ Jesus made the statement above to one of the \t\tcriminals because he (Luke 23:42-43)','respected Him','praised Him','rebuked his partner','was repentant','','','d','','utme','2010',67,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(630,'The message of the risen Christ to the women who came early to the tomb was to be relayed to the disciples and (Mark 16:7)','the Jews','the Sadducees','Thomas','Peter','','','d','','utme','2010',75,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(631,'According to the Gospel of John, Jesus is the true vine while the vinedresser is (John 15:1)','the Holy Spirit','His father','the gardener','His mother','','','b','','utme','2010',66,'Admin','2016-11-12 13:46:56','2020-07-06 09:49:52'),(632,'‘...Why has Satan filled your heart to lie to the Holy Spirit..’ Peter rebuked Ananias in the statement above for his sin of (Acts 5:3-4)','greed','insincerity','covetousness','partiality.','','','b','','utme','2010',69,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(633,'Paul informed the Galatians that the gospel he preached came through (Gal. 3:23-29)','a revelation of Jesus Christ','his desire to lead them','inspiration from the angels','the faith of men.','','','a','','utme','2010',61,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(634,'‘You son of the devil, you enemy of all righteous¬ness, full of all deceit and villainy .....’ This statement of Paul was addressed to (Acts 13:6-11)','Elymas, the magician','Paulus, the proconsul','Simon, the Magician','Demetrius, the silversmith','','','a','','utme','2010',70,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(635,'‘Unless you are circumcised according to the custom of Moses, you cannot be saved.’ The statement above by the men from Judea led to the','murmurs of the Hellenists','convening of the Jerusalem Council','persecution that scattered the disciples','circumcision of the Gentiles.','','','b','','utme','2010',77,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(636,'According to Galatians, the Law was added be¬cause of','righteousness','transgressions','grace','persecution.','','','b','','utme','2010',74,'Admin','2016-11-12 13:46:56','2020-07-05 13:46:53'),(637,'According to Galatians, the death of Christ has eliminate all forms of','suffering','differences','condemnation','poverty.','','','c','','utme','2010',63,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(638,'Peter in his teaching no humility, admonishes Christians to','safeguard their faith','seek things that are above','be gentle in spirit','avoid life’s anxiety','','','b','','utme','2010',57,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(639,'Paul in Corinthians advised that Christians should re-affirm their love for those who','are kind to them','wrong them','humble themselves','are in authority.','','','b','','utme','2010',64,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(640,'According to Corinthians, variety of gifts are inspired by','fervent prayers','angels of God','constant fasting','the same Spirit','','','d','','utme','2010',61,'Admin','2016-11-12 13:46:56','2020-07-07 06:44:19'),(641,'According to Paul in Corinthians, generosity produce','righteousness','salvation','the grace of God','thanksgiving to God','','','d','','utme','2010',78,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(642,'Busy bodies and those living in idleness in the church at Thessalonica were admonished to','pray for those in authority for peace','do their work in quietness and earn a living','appeal to those in authority to create jobs','endure persecution from their masters.','','','b','','utme','2010',59,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(643,'Paul in Thessalonians told believers that the coming of the Lord would be accompanied by','songs of praise','the sound of the trumpet','signs and wonders','wailing and mourning','','','b','','utme','2010',66,'Admin','2016-11-12 13:46:56','2020-07-07 05:54:48'),(644,'James stated in his epistle that when believers meet various trials, their faith produces','weakness','strength','steadfastness','righteousness','','','c','','utme','2010',72,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(645,'Peter in his epistle enjoined servants to be sub¬missive to their masters with all','gentleness','seriousness','respect','humility.','','','c','','utme','2010',70,'Admin','2016-11-12 13:46:56','2020-06-25 23:26:59'),(646,'According to Joseph’s interpretation to Pharaoh’s dreams; the seven empty ears blighted by the east wind represented seven years of','famine.','abundance.','farming.','Harvest','','','a','','wassce','2011',58,'Admin','2016-11-12 14:29:10','2020-05-04 10:11:47'),(647,'Moses was born at a period when the Hebrew were','suffering.','increasing.','backsliding.','rejoicing.','','','a','','wassce','2011',59,'Admin','2016-11-12 14:29:12','2020-06-03 16:31:47'),(648,'“…who is the Lord that I should heed his voice and let Israel go”? After this statement, Pharaoh','engaged Israel into forced labour with task masters.','ordered midwives to kill all males born to Israelites.','asked Israelites to fetch their own straws to produce bricks.','decreed that Israelites’ male babies be drowned in the Nile.','','','c','','wassce','2011',53,'Admin','2016-11-12 14:29:12','2020-07-05 20:39:45'),(649,'The name Moses means','baptized in water','abandoned in water.','drawn out of water.','thrown into water.','','','c','','wassce','2011',69,'Admin','2016-11-12 14:29:12','2020-06-06 06:10:46'),(650,'After the departure of the Israelites God made Pharaoh pursue them in order to','force Israel to return to Egypt.','hasten Israel’s journey through the wilderness.','make Israel obey Moses.','get glory over Pharaoh and his host.','','','d','','wassce','2011',69,'Admin','2016-11-12 14:29:12','2020-06-07 19:15:47'),(651,'Who among the following kings was raised by God against the Israelites for going after the Canaanite gods?','Agap','Jabin','Zebah','Zalmunnal','','','c','','wassce','2011',53,'Admin','2016-11-12 14:29:12','2020-07-05 20:47:32'),(652,'Deborah, a prophetess who was a judge in Israel was the wife of','Joshua.','Abijah.','Lappidoth.','Sisera.','','','c','','wassce','2011',56,'Admin','2016-11-12 14:29:12','2020-07-06 20:42:46'),(653,'The sons of Eli were regarded as worthless men for all the following reasons except','sleeping with the women at the tent of meeting','failing to attend the places of worship regularly.','taking the meat for sacrifice before boiling.','showing no respect for God.','','','b','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-04 02:00:18'),(654,'Who was the first king of Israel?','Kish','David','Solomon','Saul','','','d','','wassce','2011',57,'Admin','2016-11-12 14:29:13','2020-07-07 06:44:19'),(655,'Joel and Abijah were the sons of','Eli.','Saul','Samuel','David.','','','c','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-07-04 01:50:42'),(656,'“...Behold, to obey is better than sacrifice and to hearken than the fat of rams”. This statement was Samuel’s reaction to','David’s defense of his sin.','Saul’s defense of disobedience.','King Agag’s defense of his victory.','Eli’s defense of the sins of his sons.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-06-04 11:55:48'),(657,'On Mount Gilboa, king Saul decided to commit suicide in order to avoid','ridicule from the Philistines.','witnessing the death of his sons','being killed by his armour-bearer.','the agony of the injuries received.','','','a','','wassce','2011',53,'Admin','2016-11-12 14:29:13','2020-06-06 13:41:06'),(658,'David bitterly mourned when Abner was slain by','Ishbosheth.','Absalom.','Asahel.','Joab.','','','d','','wassce','2011',36,'Admin','2016-11-12 14:29:13','2020-04-12 16:21:50'),(659,'One of the main features of Solomon’s prayer at the dedication of the Temple was the','celebration of God who is faithful to his covenant','recognition that God loves sacrifices.','assertion that God dwells in man-made houses.','proclamation that no prayers be henceforth made outside the temple.','','','d','','wassce','2011',54,'Admin','2016-11-12 14:29:13','2020-06-04 10:05:36'),(660,'In spite of Solomon’s apostasy, his empire remained intact until his death because','God deferred, for David’s sake, the punishment due to him','he won decisive victories over his enemies.','he always took wise decisions','. \\nhe made surrounding nations fight among themselves.','','','a','','wassce','2011',79,'Admin','2016-11-12 14:29:13','2020-07-04 01:50:42'),(661,'“Your father made our yoke heavy. Now therefore, lighten the hard service of your father.” These were the words of','Jeroboam','Solomon','.         \\nDavid','Ahijah.','','','a','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-06-03 15:39:55'),(662,'Obadiah, Ahabs servant, made history for himself by','arresting the prophets of Yahweh','. \\nexecuting all the prophets.','hiding and feeding some of the prophets in a cave.','D inciting the prophets to rebel against king Ahab.','','','c','','wassce','2011',49,'Admin','2016-11-12 14:29:13','2020-05-05 20:50:50'),(663,'The contest between Elijah and the prophets of Baal took place at mount','Olive.','Tabor.','Sinai','Camel.','','','d','','wassce','2011',45,'Admin','2016-11-12 14:29:13','2020-06-02 20:14:19'),(664,'King Jehoshaphat was commended for adopting his father’s policies which included','removing Maacah, his grandmother from being queen.','waging wars with the king of Israel.','allowing the cult prostitutes to operate.','burning of incense at the high places.','','','a','','wassce','2011',54,'Admin','2016-11-12 14:29:13','2020-06-02 22:53:54'),(665,'God’s constant love for unfaithful Israel is demonstrated in the book of','Amos','Isaiah','Hosea','Ezekiel','','','c','','wassce','2011',42,'Admin','2016-11-12 14:29:13','2020-06-02 23:46:46'),(666,'During the rebuilding of the temple, Zerubbabel rejected the offer of help from the','inhabitants of Ammon.','people of Samaria.','friends of Sanballat and Tobiah','governors of the provinces beyond the rivers.','','','c','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-07-06 20:25:16'),(667,'“And I asked them concerning the Jews that survived, who has escaped exile, and concerning Jerusalem...” These were the words of','Jeremiah.','Nehemiah','Ezra.','Hanani.','','','b','','wassce','2011',47,'Admin','2016-11-12 14:29:13','2020-06-04 16:33:45'),(668,'The presentation of Myrrh to Jesus signifies Jesus’','humility and servant hood.','suffering and impending death.','lordship on earth.','kingship and messiah ship.','','','b','','wassce','2011',68,'Admin','2016-11-12 14:29:13','2020-05-06 18:56:03'),(669,'“My son your sins are forgiven”. These were the words of Jesus to the','demoniac.','paralytic.','man born blind','centurion’s servant.','','','b','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-05-05 17:49:32'),(670,'Peter called for the construction of three booths for Jesus, Moses and Elijah, respectively during','the transfiguration.','the Ascension.','Jesus’ arrest.','the Passover feast.','','','a','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-06-03 19:53:06'),(671,'The incidents that took place following Jesus’ death on the cross did not include the','tearing into two of the temple’s veil.','quaking of the earth that broke the rocks.','the opening of the tombs.','trembling of the chief priest and his conversion.','','','b','','wassce','2011',56,'Admin','2016-11-12 14:29:13','2020-06-01 17:30:28'),(672,'“How is it that you a Jew ask a drink of me...” This statement was made by the','Gentile woman.','woman of Samaria.','possessed woman.','woman of Galilee','','','b','','wassce','2011',49,'Admin','2016-11-12 14:29:13','2020-07-07 06:44:19'),(673,'The Jews showed their hatred for Paul and Barnabas in Pisidia by','dragging out the apostles for stoning.','insisting and driving them out of the Synagogue.','influencing leading men in the city to drive them out.','beating and stoning them in the Synagogue','','','c','','wassce','2011',48,'Admin','2016-11-12 14:29:13','2020-07-05 20:50:41'),(674,'When Jesus said “apart from me you can do nothing”, he \tmeant that Christians','pray without ceasing','. \\nmust faithfully trust in Him always.','cannot pass examinations if they did not pray.','should expect God to do everything for them.','','','b','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-06-05 14:28:50'),(675,'On the day of Ascension, Jesus promised his disciples','peace in the kingdom of God.','amazing grace.','power of  the Holy Ghost.','His abiding physical presence.','','','c','','wassce','2011',38,'Admin','2016-11-12 14:29:13','2020-05-06 18:15:56'),(676,'On Ascension Day two men in white robes inform the disciples that Jesus would','send for them.','be seen in heaven.','prepare a place for them.','come again.','','','d','','wassce','2011',68,'Admin','2016-11-12 14:29:13','2020-07-07 06:44:19'),(677,'“Go up and join this chariot”.  This statement was made to','John.','Paul.','James.','Philip.','','','d','','wassce','2011',51,'Admin','2016-11-12 14:29:13','2020-06-01 12:26:04'),(678,'Saul was converted on his journey to','Samaria','Jerusalem.','Salamis.','Damascus.','','','d','','wassce','2011',54,'Admin','2016-11-12 14:29:13','2020-06-02 13:34:07'),(679,'Which of the following places was not visited by Paul during his first missionary journey?','Salamis','Athens','Antioch of Syria','Antioch of Pisidia','','','a','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-07-06 16:57:28'),(680,'Paul was stoned and dragged out of the city by','the Lyconians and the Ephesians.','enemies of the healed lame man','. \\nJews from Antioch and Iconium.','Jews in the Synagogue.','','','a','','wassce','2011',56,'Admin','2016-11-12 14:29:13','2020-05-05 21:55:28'),(681,'The resurrection of Jesus is significant to Christians for it \tmarked the','end of the Jewish faith.','assurance of eternal life for Christians.','beginning of Christianity','end of Jesus’ earthly ministry.','','','b','','wassce','2011',57,'Admin','2016-11-12 14:29:13','2020-07-06 09:49:51'),(682,'According to Paul, ‘As sin reigned in death, grace also might reign through righteousness to','faith in God’.','the knowledge of God’.','eternal life','the glory of the father’.','','','c','','wassce','2011',49,'Admin','2016-11-12 14:29:13','2020-06-03 12:47:33'),(683,'Paul in Romans declared “for as by one man’s disobedience many were made sinners, so by one man’s obedience many will be made...”','innocent.','righteous.','faithful.','Christians.','','','b','','wassce','2011',40,'Admin','2016-11-12 14:29:14','2020-07-04 01:50:42'),(684,'Which of the following is not true about spiritual gifts as taught by Paul?','Gifts should be used with all modesty','No gift can be independent of others','Gifts have nothing to do with the level of one’s faith','Specific gifts perform specific functions','','','b','','wassce','2011',60,'Admin','2016-11-12 14:29:14','2020-06-02 14:11:16'),(685,'In his comparison of the human body with the body of Christ, Paul did not mention the','hand.','foot.','eye.','nose.','','','d','','wassce','2011',52,'Admin','2016-11-12 14:29:14','2020-06-04 12:16:02'),(686,'The New Life in Christ operates through','humility.','the name of Jesus.','one body.','wisdom.','','','b','','wassce','2011',58,'Admin','2016-11-12 14:29:14','2020-06-04 16:33:45'),(687,'‘Death is swallowed up in victory, “oh death, where is your victory”? This statement is found in the book of','Corinthians.','Romans.','Galatians.','Philemon','','','a','','wassce','2011',59,'Admin','2016-11-12 14:29:14','2020-06-04 23:38:14'),(688,'According to Paul in Corinthians the gospel message could only be lifeless when Christians','deny the resurrection message.','persecute one another.','gossip among themselves.','entertain idolatrous practices.','','','a','','wassce','2011',64,'Admin','2016-11-12 14:29:14','2020-07-07 06:44:19'),(689,'Paul asked the Thessalonians to imitate his action of','demanding support from his converts.','performing miracles','healing the sick.','working for his personal upkeep.','','','d','','wassce','2011',61,'Admin','2016-11-12 14:29:14','2020-06-07 19:15:48'),(690,'With respect to the date of the Parosia, Paul advised Thessalonians to','be sober in maintaining their hope of salvation.','disregard all speculations about it.','know that the day would be announced later.','enjoy peace and security in the face of danger.','','','a','','wassce','2011',66,'Admin','2016-11-12 14:29:14','2020-07-07 06:44:19'),(691,'Paul, pleaded with Philemon to forgive','Barnabas.','Timothy.','Onesimus.','Silas','','','c','','wassce','2011',87,'Admin','2016-11-12 14:29:14','2020-07-06 09:49:51'),(692,'James strongly condemned partiality in the Church for all the following reasons except that it','is contrary to Christ’s example of humility','accords due respect to the rich who merit it.','is a transgression of the commandment of God.','does not harmonize with the Christian virtue of love.','','','d','','wassce','2011',55,'Admin','2016-11-12 14:29:14','2020-07-04 02:00:18'),(693,'The Galatians, were reminded by Paul that they were Abraham’s offspring and heirs according to','promise.','good works.','law.','grace.','','','a','','wassce','2011',52,'Admin','2016-11-12 14:29:14','2020-04-30 18:00:12'),(694,'According to Paul in Galatians, law ceased to be our custodian as soon as','it was made available to us.','Christ adopted us as his children.','we adopted the faith of Abraham.','we stopped worshipping the elemental spirits.','','','b','','wassce','2011',47,'Admin','2016-11-12 14:29:14','2020-07-06 11:14:44'),(695,'James advised Christians to portray their faith in Jesus by','listening to the word of God always.','converting others to Christ.','practicalizing their Christian belief','constant prayer and fasting.','','','c','','wassce','2011',63,'Admin','2016-11-12 14:29:14','2020-06-06 09:25:49');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `currentaffairs` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `currentaffairs` VALUES (1,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013',391,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(2,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(3,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013',384,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(4,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013',388,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(5,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013',398,'Admin','0000-00-00 00:00:00','2020-06-26 00:23:20'),(6,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013',397,'Admin','0000-00-00 00:00:00','2020-06-09 11:40:50'),(7,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013',407,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(8,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013',390,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(9,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013',380,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(10,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013',418,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(11,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013',418,'Admin','0000-00-00 00:00:00','2020-05-04 18:52:36'),(12,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013',382,'Admin','0000-00-00 00:00:00','2020-05-04 18:52:37'),(13,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013',402,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(14,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013',403,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(15,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-06-09 11:40:50'),(16,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013',390,'Admin','0000-00-00 00:00:00','2020-06-09 11:40:50'),(17,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013',420,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(18,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013',406,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(19,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013',397,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(20,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013',412,'Admin','0000-00-00 00:00:00','2020-07-03 21:42:09'),(21,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013',397,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(22,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013',387,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(23,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013',377,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(24,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013',400,'Admin','0000-00-00 00:00:00','2020-06-26 00:23:05'),(25,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013',400,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(26,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013',392,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(27,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013',404,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(28,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(29,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013',403,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:20'),(30,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013',398,'Admin','0000-00-00 00:00:00','2020-06-26 00:22:32'),(31,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013',395,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(32,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013',407,'Admin','0000-00-00 00:00:00','2020-06-26 00:22:49'),(33,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013',424,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(34,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013',389,'Admin','0000-00-00 00:00:00','2020-06-09 11:40:50'),(35,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013',401,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(36,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013',405,'Admin','0000-00-00 00:00:00','2020-05-04 18:52:37'),(37,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013',404,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(38,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:18'),(39,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013',396,'Admin','0000-00-00 00:00:00','2020-05-04 18:52:37'),(40,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013',400,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(41,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013',415,'Admin','0000-00-00 00:00:00','2020-05-05 15:55:27'),(42,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013',410,'Admin','0000-00-00 00:00:00','2020-05-04 18:59:19'),(43,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013',429,'Admin','0000-00-00 00:00:00','2020-07-03 04:26:38'),(44,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013',445,'Admin','0000-00-00 00:00:00','2020-07-05 05:50:06');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `economics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=658 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `economics` VALUES (1,'Which of the following is the best general definition of the study of economics? ','the best way invest in the stock market','business decision making under foreign competition ','individual and social choice','inflation unemployment in a growing economy','','','c','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-06-20 11:06:04'),(2,'What implication does resources scarcity have for the satisfaction of wants?','not all wants can be satisfied ','we will never be faced with the need to make choice ','we must develop ways to decreases our individual wants ','the discovery of new resource.','','','a','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-07-05 06:06:11'),(3,'In economics , rational decision-making requires that: ','one’s choices be arrived at logically and without error   ','one’s choice be consistent with one’s goals ','one’s choice never very ','one makes choice that do not involve trade-offs','','','b','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:12'),(4,'What happens to a supply curve when the variables that are normally held constant are allowed to changer? ','the curve flattens out','there is a movement along the curve','the curve shifts ','the curve becomes steeper.','','','c','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-06-20 17:53:27'),(5,'If the price of Pepsi decrease relative to the price of coke and 7-up the demand for ','coke will decrease ','7-up will decrease ','coke and 7-up will increase','coke and 7-up will decrease.','','','d','','post-utme','2006',89,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:55'),(6,'Suppose wages paid by a firm increase what would reasonably be expected to happen to the equilibrium price and equilibrium quantity for the firm’s output? ','price increase,  quantity decreases ','price decrease, quantity decrease','price decreases, quantity increase','price increases, quantity increase.','','','a','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-06-22 17:07:52'),(7,'When a nation’s exports are greater than its imports ','the net foreign trade is zero ','an unfavourable balance of payments exists ','a favourable balance of trade exists ','a favourable balance of payment exists.','','','d','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-06-23 17:38:40'),(8,'Inflation is likely to benefit ','persons with bank savings','persons who live on fixed pension funds ','creditors ','debtors.','','','d','','post-utme','2006',60,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(9,'For which market model is there a very large number of firms? ','monopolistic competition','oligopoly ','pure monopoly ','pure- competition','','','d','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-06-29 19:39:34'),(10,'Which of the following is an economic cost ','uninsurable risk ','normal profit ','economic profit ','monopoly profit.','','','b','','post-utme','2006',73,'Admin','0000-00-00 00:00:00','2020-07-05 20:36:19'),(11,'Which tends to be a progressive tax in Nigeria? ','income tax ','property tax ','sales tax ','import- duties.','','','a','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-07-05 18:25:09'),(12,'A deficit budget is usually drawn up during ','economic buoyancy ','inflationary period ','war time ','economic recession.','','','d','','post-utme','2006',62,'Admin','0000-00-00 00:00:00','2020-06-23 18:24:35'),(13,'A drawer of a cheque is the ','person who is to be paid ','bank on which the cheque is drawn ','person who writes out the cheque ','bank official who certifies the payment. ','','','c','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-06-21 11:23:07'),(14,'The liability of a sole trade is','indeterminate ','unlimited ','limited ','transferable','','','b','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(15,'Which of the following is regarded as fixed cost? ','cost of raw materials ','labour wages ','rent land ','cost of light.                                                                                                                                                                                                                   ','','','c','','post-utme','2006',73,'Admin','0000-00-00 00:00:00','2020-06-26 16:47:37'),(16,'Which of the following is not a member of OPEC?','Indonesia',' Iran ','Venezuela','Egypt','','','d','','post-utme','2006',64,'Admin','0000-00-00 00:00:00','2020-06-29 15:54:28'),(17,'The creation of utility can be referred to as ','value added ','profit marginalization ','production','entrepreneurship.','','','c','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-06-22 19:17:29'),(18,'The production within the domestic territory of a country is called the ','net national product ','gross domestic product ','disposable income','gross national product.','','','b','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-06-21 11:54:56'),(19,'Suppose a consumer’s income increases from N30,000 to N36, 000. As a result the consumer increases her purchase of compact discs (CDS) from 25 CDS to 30CDS.What is consumer’s income elasticity of demand for CDS?','0.5','1,0 ','1','1.5','','','b','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-07-06 18:18:54'),(20,'The Multiplier is always the reciprocal of ','MPC ','MPS ','APC','APS','','','b','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-20 16:20:14'),(21,'If the marginal propensity to save is 0.4 and consumption expenditure changes by N10 million , the equilibrium  level of income will change by ','N15.0million ','N4,0million','N2.5million ','N25million.','','','d','','post-utme','2006',73,'Admin','0000-00-00 00:00:00','2020-06-20 12:44:16'),(22,'Economic freedom is brought about by the existence of ','Government ','Money ','Availability of Credit ','choice','','','d','','post-utme','2006',73,'Admin','0000-00-00 00:00:00','2020-07-05 20:28:43'),(23,'The only essential attribute of the good currency is ','scarcity ','homogeneity','acceptability ','cognoscibility.','','','c','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-07-05 19:44:36'),(24,'Economic is founded on the principle that: ','Human wants are more than human needs ','Material things are more than human wants ','Human wants are limitless while the means to satisfy them are limited  ','Human while are easy to define','','','c','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-06-20 16:11:03'),(25,'The capitalist system is characterized by all the following except: ','private ownership of the means of production ','Equitable distribution of income and wealth  ','capital accumulation  ','markets and  prices coordinate economic activities','','','b','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(26,'If the equation relating consumption (C) to income (Y) is C=  N7,500+0.2Y,then ','consumption is inversely related to income','consumptions is the independent variable and income is the dependent variable ','if income is N15,000, the consumption is N10,500 ','if consumption is N30,000 then income is N10,000','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(27,'The reason for the law of demand can best be explained in terms of ','supply ','complementary ','the rationing function of prices ','diminishing marginal utility','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:52'),(28,'The demand curve for the pure monopolists is ','perfectly  price elastic ','perfectly price inelastic ','down sloping ','up sloping ','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:13'),(29,'Which of the following statements is correct? The Central  Bank ','prints the country’s currency ','handles the collection of depts. Owed to the government','lends money to businessmen ','issues the country’s currency','','','d','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-24 01:02:32'),(30,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','Consumers are rational','Consumers are willing to make choices ','Consumers make consistent choices','','','d','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:15'),(31,'The slope of the budget constraint ','changes as the marginal rate of satisfaction changes ','is the ration of the prices of the two goods? ','is the ratio of the budget of total utility? ','Equals one, since the consumer can buy combination along the budget constraint.','','','b','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-29 19:55:53'),(32,'Disposable income equals ','Personal income less business profits ','personal income less taxes and subsidies ','personal income less taxes plus subsidies ','National income plus transfer payments','','','c','','post-utme','2007',63,'Admin','0000-00-00 00:00:00','2020-06-20 16:00:38'),(33,'The ‘term’ of trade’ means ','The trade agreement between two countries ','The difference in the volumes of exports of two countries ','The value of a unit of export in relation to the value of a unit of import ','None of the above.','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(34,'The burden of tax on a commodity whose demand is infinitely inelastic ','is Zero ','will be borne by sellers alone ','will be borne by buyers alone ','it impossible to tell','','','c','','post-utme','2007',62,'Admin','0000-00-00 00:00:00','2020-06-20 13:07:07'),(35,'Inflation can be curbed by ','Increasing aggregate demand ','paying higher wages ','reducing aggregate demand ','A deficit budget','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-23 17:31:04'),(36,'The supply and demand for goods and service are influenced by the ','Super markets ','Entrepreneurs ','Mechanism of the law ','price mechanism.','','','d','','post-utme','2007',63,'Admin','0000-00-00 00:00:00','2020-06-23 18:43:10'),(37,'In a sole proprietorship, the decisions are made by the ','Government ','Board of directors ','Shareholder’s Conference ','Owner','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-20 16:27:29'),(38,'Which of the following are direct taxes? ','Income and company taxes ','Sale taxes ','commodity taxes ','Excise Duties','','','a','','post-utme','2007',59,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:06'),(39,'The production within the domestic territory of a country is called the ','Net national product ','Gross domestic ','Disposable income ','Gross national product','','','b','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-06-18 17:54:36'),(40,'A producer sustains a loss in the short run if? ','marginal revenue is less than price ','price is less than average cost','marginal cost is less than marginal  revenue ','average variable cost is less than average cost','','','b','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-04 20:54:08'),(41,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with terms funds ','deals with money only while capital market deals with capital as well ','is limited in scope while capital market is not ','uses interest rate while capital market does not','','','a','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-20 15:20:35'),(42,'A production possibility curve shows ','how much of  the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combinations of two commodities that can be produced.','','','d','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-06-28 17:00:29'),(43,'The situation in which the total amount of government spending exceeds total called ','balance budget ','budget surplus ','budget deficit ','fiscal surplus ','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-06-28 16:47:08'),(44,'The maximization of profit tends to be driving force in the economic decision making of  ','entrepreneurs  ','workers ','consumers ','legislators','','','a','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:27'),(45,'Which of the following equations is the correct one about Net National Product (NNP)? ','NNP= Gross National Product (GNP) - Depreciation ','NNP=  Gross National product (GNP Net incomes from abroad ','NNP= Gross Domestic product (GDP) – Deprecation ','NNP = Gross Domestic product (GDP) – Net incomes from aboard','','','a','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-05 19:44:36'),(46,'Middlemen in a economy perform the function of ','protection ','hoarding ','distribution ','exchange','','','c','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(47,'Which of the following statement is false? ','Ends in Economic are the resources with which it can attain our goals','Tables and graphs are focus of arithmetic technique used in economics to present ideas pictorially ','Three basic question every economy must answer are hat to produce, how to produce and for whom to produce ','A and B are substitutes if the supply of an increase, the price B will tend to increase.','','','a','','post-utme','2008',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(48,' If the equation relating consumption (C) to income (Y) is C= N7,500 + 0.2Y, then ','consumption is inversely related to income ','consumption is the independent inversely related to income is the dependent variable ','if income is N15,000, the  consumption is 10,500 ','if consumption is N300,000, then income is N10,000','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-05 14:17:17'),(49,'Which of the following best describes a perfectly inelastic demand function? ','The quantity demand is insensitive to changes in price ','Price is insensitive changes in quantity ','price and quantity demanded changes by some percentage ','The demand function is horizontal.','','','a','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-06-29 03:31:05'),(50,' Which of the following statement is false? ','An economy where economic decision making is shared by individuals and government is known as mixed economy ','Given that apples and pears are substitutes, If the price of pear fall ','An elasticity of demand measured between two point on a demanded curve is called a point elasticity ','A and B are complements. If the supply of A decreases, the price B are tend to fall','','','c','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(51,'Which of the following statement is true? ','if cross price elasticity that of demand between two goals, A and B, is negative we can conclude that A and B are substitutes ','the co-efficient of elasticity of demand is measured as a ration of change in quantity demand to change in price ','A market will be in disequilibrium when demand is not equal to supply ','All the above.','','','c','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:57'),(52,'The reason for the law of demand can best be explained in terms of: ','supply ','complementary goods ','the rationing function of price ','diminishing marginal utility.','','','d','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-06 02:26:29'),(53,'The demand curve for the pure monopolists is ','perfectly price elastic ','perfectly price inelastic ','down sloping ','up sloping','','','c','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-05 06:06:11'),(54,'Which of the following statement is correct? The Central bank ','prints the country’s currency ','handles the collection of debts of owed to the government ','leads money to businessmen ','issue the country’s currency.','','','d','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-06-24 01:02:32'),(55,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','consumers are rational ','consumers make consistent ','choices.','','','d','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-06-22 17:42:28'),(56,'Which of the following equation is the correct one about Net National Product (NNP)? ','NNP= Gross National product (GNP) – Depreciation ','NNP = Gross National product (GNP) + Net incomes from abroad. ','NNP = Gross Domestic product (GDP) – Depreciation ','NNP = Gross Domestic product (GDP) – Net incomes from abroad.','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-20 16:26:07'),(57,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with long term funds. ','deals with money only while capital as well ','is limited in scope while capital market does not. ','Uses interest rates while capital market does nor.','','','a','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-06-20 16:21:51'),(58,'A production possibility curve shows ','how much of the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combination of two commodities that can be produced.','','','d','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:55'),(59,'The situation in which the total amount of government spending excesses total revenues is called a:  ','balance budget ','budget surplus. ','budget difficult ','fiscal surplus','','','c','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-06-29 19:38:15'),(60,'The maximization of profit tends to be the driving force in the economics decision making of:','entrepreneurs. ','Workers ','consumers ','legislators.','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-22 19:17:29'),(61,'Which of these factors does not cause a change in demand? ','Income ','Population ','price of the commodity itself.','Quantity of commodity','','','d','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-06-23 13:18:06'),(62,'When the demand for a commodity is inelastic, total revenue will fall if ','price is increase ','price remains constant ','price is reduced ','The commodity is a luxury.','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:52'),(63,'An economic system in which most capital goods are owned by individual and private firms is known as ','planned economy ','Capitalist economy. ','Mixed economy ','Socialist economy.','','','b','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:40'),(64,'Which of the following is the most liquid asset to a commercial bank? ','cash ','money at call ','stock and shares ','Treasury Bills.','','','a','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(65,'A recovery point on an indifference curve, the ','Total utility is decreasing ','Level of utility is constant ','Consumer is satisfied ','','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:11'),(66,'Which of the following does not hinder the efficient distribution of goods in West Africa? ','Government participation in the distribution trade ','Inadequate storage facilities for agricultural goods ','Inadequate credit facilities for potential distribution ','the tendency to hoard and smuggle.','','','a','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-20 11:23:09'),(67,'Which of the following is the most important reason why wages differ among occupation? ','Length and cost of training ','Supply of Labour ','Attractiveness ','Influence of trade Unions','','','c','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-05 07:48:54'),(68,'Tax incidence is the analysis of  ','How progressive a tax is ','How distorting a tax is ','Who ultimately pays the tax ','How a tax is collected.','','','c','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-06-21 11:54:56'),(69,' A monopolist will practice price discrimination in two market if ','there is a patent of the commodity ','There is free flow of information in the market ','The markets have different elasticity of demand ','The cost of separating the markets is low.','','','c','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-06-20 16:01:47'),(70,'Which of the following is regarded as fixed cost? ','Cost of raw materials ','rent on land ','Labour wages ','cost of light.','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-06-22 18:03:29'),(71,'Given that fixed cost is N500.00, Variable cost is N1,500.00 and output is 40 units, what will be the average cost of producing one units? ','N12.50.00 ','N50.00 ','N37.50 ','N500.00','','','b','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:55'),(72,'For two substitute goods, the gross elasticity of demand is ','Greater than one but lee than zero ','zero ','Negative ','Positive ','','','d','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-23 12:02:30'),(73,'If a person receives a higher wage than would be necessary to induce him to work, he is be receiving','rent ','profit ',' interest ',' gain ','','','a','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-06-29 18:43:58'),(74,'Which if this is likely to be inflationary ','Tax increase ','Budget surplus ','increase in unemployment ','wage increase ','','','d','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-06-20 16:27:29'),(75,'A characteristic of a debenture is that ','Its yield is based on profit ','Its yield is a fixed rate of interest ','It has no redemption date ','There is a voting when interest is paid ','','','b','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:15'),(76,'Which of these is not included in measuring national income by the income approach? ','Wages and salaries of public servants ','students branches and scholarships ','profit of international ','income of self-employment persons ','','','b','','post-utme','2009',77,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:06'),(77,'The revenue accruing to the seller of commodity X as a result of a fall in price will ','increase','fall ','first fall but increase later  ','Remain unchanged ','','','b','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-20 16:21:51'),(78,'Deflation is persistence fall in price in the general price level and is usually caused by ','A reduction in total demand ',' An increase in government spending ',' an increase in money supply to banks ','An increase in aggregate demand ','','','a','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(79,'Under partnership, investors who have no desire to be actively involved in the day-to-day management of such organization are called ','Stock brokers ','Sleeping partners ','part-time investor ','Ordinary partners ','','','b','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-06-29 18:13:47'),(80,'In a sole proprietorship decision are made by the ','Government ','Board of directors ','Management ','Owners.','','','d','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-20 17:53:27'),(81,'A greater burden of taxes on essential goods in borne by the ','middle income group ','Higher income group ','Lower earning people ','People falling between the middle and higher income group ','','','c','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(82,'Demand as a factor of production is ','a composite demand ','joint demand ','A derived demand','An elasticity of demand ','','','c','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-06-29 19:14:25'),(83,'One disadvantage of sole proprietorship is its ','Limited liability ',' High profit ','High sense of ownership ','Low credit rating ','','','d','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:24'),(84,'The monetary system that requires double coincidence of wants is known as ','The gold standard ','The gold standard ','The commodity system ','The gold standard ','','','b','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-07-05 16:27:05'),(85,'The marginal theory of distribution makes an assertion that the price of any factor depends upon its marginal ','Unity ','Productivity ','rate of substitution ','revenue ','','','b','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(86,'By using exchanges controls, a country tries to eliminate a balance of payment deficit by ','limited her imports to its currency value of exports ','Reducing the nation’s domestic piece level ','limiting her exports to its currency value of exports ','Undervaluing, the country’s currency.','','','d','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-07-06 02:26:29'),(87,'Economics of scale operates only when ','Marginal cost is falling with output fixed cost is variable ','fixed cost is variable ','variable cost is less than fixed cost ','variable cost is equal to cost of output.','','','b','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:06'),(88,'If an increase in income induces a reduction in the demand for beans, beans can be referred to as: ','A normal good ','An inferior good ','A substitute ','A dash ','','','b','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-07-02 16:32:16'),(89,'Optimum population is desirable because it enable an economy to attain maximum ','per capital income ','per capital output ','per capital real income ','per capital revenue ','','','b','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-07-05 14:08:23'),(90,'Marginal cost curve intersects average cost curve ','from above at its lowest point ','from below the lowest point ','from below at its lowest point ','from below after the lowest point ','','','c','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-05 06:06:10'),(91,'The concept of economic efficiency refers to: ','obtaining the maximum output from available resources at the lowest possible cost ','Conservation of natural gas and oil deposits ','equity in the distribution of national resource ','Producing without waste ','','','a','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-06-23 18:13:33'),(92,'A major factor affecting the value of money is the: ','price level ','banking habit ','Transaction motive ','Divisible nature of money ','','','a','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:26'),(93,'Which of the following is an example of invisible item on balance of payments account?','Shipping and aviation ',' Import and Export ','Merchandise ','Bullion ','','','a','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-05 14:08:23'),(94,'The best index for indentation comparison of standard of living is the ','Gross national product ','Net national income ','per capital income ','Gross national income.','','','c','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(95,'A major obstacle to economic development in many African countries ','A rise in industrial output ','Low farm productivity ','Free interaction ','Controlled international relations.','','','b','','post-utme','2009',69,'Admin','0000-00-00 00:00:00','2020-06-21 11:55:10'),(96,'The most popularly adopted industrialization strategy in West African ','import substitution ','Export promotion ','parts development ','infant industries potation.','','','b','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-07-05 07:48:54'),(97,'The basic concepts of Economics are ','choice, scarcity, resources and efficiency   ','wants, scarcity, choice, scale of preference and opportunity cost','wants, scarcity and choice  ','wants, choice, scale of preference and opportunity cost ','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-06-29 19:18:06'),(98,'In Economics human wants are usually described as  ','many','insatiable ','limited','numerous','','','b','','post-utme','2011',90,'Admin','0000-00-00 00:00:00','2020-06-22 21:24:12'),(99,'Basic economic problems of society include the following except:  ','what to produce','how to produce ','where to produce  ','for whom to produce ','','','c','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-06-28 16:35:07'),(100,'An economic system can be defined as an ',' arrangement specifying how production and consumption are controlled in a   society ','arrangement whereby goods are distributed in a society  ','arrangement whereby human wants are satisfied in a society  ','arrangement specifying how productive resources are distributed in a society ','','','a','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-06-19 17:20:12'),(101,'The following are features of a free market economy except ','private ownership of properties  ','existence of competition ','high level of profit maximization by private investors  ','joint decision-making by the citizens in a society.','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-06-22 19:37:13'),(102,'In a capitalist society, production and consumption are regulated by the: ','demand for the commodity ','the government  ','price system  ','private individuals ','','','c','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:06'),(103,'The following are advantages of socialism except ','equitable distribution of resources','absence of exploitation  ','equitable distribution of income ','promotion of high standard of living ','','','d','','post-utme','2011',81,'Admin','0000-00-00 00:00:00','2020-06-22 17:35:20'),(104,'Marginal Produce (MP) is best defined as ',' Total produce/no of labour','Change in total product/ change in variable factor','Total product/ fixed factor','Average product/ no of Labour','','','b','','post-utme','2011',82,'Admin','0000-00-00 00:00:00','2020-06-29 18:13:47'),(105,'Which of the following is NOT a limitation to division of labour and specialization ','the size of the market','availability of capital ','interdependence among the workers ','the nature of the product ','','','b','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:17'),(106,'The following are the advantages of internal economics of large scale production except ','financial economics ','administrative economics ','technical economics ','market economics','','','b','','post-utme','2011',76,'Admin','0000-00-00 00:00:00','2020-06-22 19:37:13'),(107,'Which of the following is TRUE of marginal cost? ','it is a cost incurred by the firm on variable inputs ','it is the cost of producing one extra unit of a commodity at any output level ','it is the sum of the fixed cost and variable cost','it is referred to as overhead cost','','','b','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-05 07:48:54'),(108,'Which of the following items is NOT a variable cost? ','cost of machine ','cost of electricity ','salaries and wages','cost of raw materials.','','','a','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-06-20 11:38:31'),(109,'Which of the following is NOT True of a market demand schedule? ','it is a schedule of all consumers of a commodity in a market ','it is the aggregate demand schedule of all consumers of a commodity in a market ','it is a table showing the different quantities of a community which a consumer would purchase at various prices ','it is a table showing the composite demand schedule of all consumers of a commodity in a market.','','','c','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-05 06:06:11'),(110,'Supply is said to be inelastic when the coefficient of elasticity of supply is ','2.5','0.5','zero ','infinity ','','','b','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:30'),(111,'Price legislation can be defined as ','how price fluctuates in the market','how prices are controlled in the market  ','how to avoid inflation  ','how the government fixes the prices of essential commodities.','','','d','','post-utme','2011',63,'Admin','0000-00-00 00:00:00','2020-06-23 18:13:33'),(112,'Price discrimination exists when  ','The same product of the same quality is sold for different prices of the same buyer  ','The same product of the same quality is sold for different prices to different buyers  ','Different products are sold for the same price to the same buyers  ','Different products are sold for the same price to different buyers.','','','b','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-06-29 19:39:34'),(113,'A commodity is said to be price inelastic if  ','Changes in the quantity purchased of a good is less than proportionate changes in its price  ','Changes in the quantity purchased of a good is proportional to changes in its price  ','Changes in the quantity purchased of a good is more than proportionate changes in its price  ','The quantity purchased of a good never responds to change in its price.','','','a','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-06 09:13:41'),(114,'The parameter ‘b’ in a consumption function of the form; C = a + bY; where Y is the National income is  ','Marginal benefit of consumption  ','Marginal propensity to purchase  ','Marginal propensity to consume  ','Marginal propensity to save ','','','c','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-06-23 18:24:35'),(115,'Indifference curve and isoquant are respectively relevant is  ','Theories of consumer behaviours and production  ','Theories of human indifference and production  ','Theories of trade and production  ','Theories of production and trade','','','a','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-06-20 11:31:22'),(116,'Perfect price elastic supply means  ','No change in supply as price changes  ','Any change in price completely stops supply  ','Changes in price double supply  ','A change in price leads to proportionate change in supply','','','b','','post-utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:25'),(117,'Change in demand and change in quantity demanded are not the same because  ','All factors affecting change in demand also affect change in quantity demanded except income  ','All factors affecting change in demand are not affecting change in quantity demanded except income  ','Many factors leads to change in demand but only change in price affect change in quantity demanded   ','Many factors leads to change in demand but only change in income affect change in quantity demanded','','','c','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-26 16:47:37'),(118,'The following is the main difference between firm and industry  ','Industry is the group of firms producing related products  ','Industry is the group of firms in the manufacturing sector  ','Industry is the group of firms in different sectors of the economy  ','Industry is the group of firms with a single pressure group','','','a','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-05 14:17:17'),(119,'Roles of central bank include the following except  ','Lender of last resort to commercial bank  ','Banker to commercial bank  ','Regulator to both the money and capital markets ','Receipt  of government deposits','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-06-29 19:26:06'),(120,'Ordinary shareholders and preferential shareholders are different because ','Preferential shareholders participate and can vote and be voted for during the  AGM  ','ordinary shareholders are given priority in case the company is liquidated  ','Preferential shareholders are prominent shareholders than ordinary shareholders  ','Ordinary shareholders are the core shareholders in the company','','','d','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-05 07:48:54'),(121,' Yam and palm oil are together; therefore  ','Yam is a substitute good while palm oil is a complementary good  ','Yam is complimentary good while palm oil is a substitute good  ','Yam and oil are complimentary goods ','Yam and beans are substitute goods','','','c','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-05 10:51:05'),(122,'Private and public limited liability companies are not the same because  ','Former is limited to fifty shareholders but not the later  ','both are not legal entities  ','Former is established secretly but latter is located in central places  ','Former is managed by board of directors but latter is managed by board of management.','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-06 02:26:29'),(123,'If salary of worker increases from 50,000 to 80,000 Naira and average price of certain commodities consumed by the worker increase from 120 Naira to 160 Naira then  ','The nominal income increases but leave the real income constant  ','The real income increases, but nominal income has reduced  ','The nominal income increases, but real income decreases  ','Both the nominal and real income increase','','','d','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-06-20 08:27:11'),(124,'Discount rate means  ','Rate at which money are borrowed from commercial bank  ','Rate at which bank receive deposit from the public  ','Central bank rate on the money borrowed by commercial banks  ','Commercial bank rate on the money borrowed from other commercial bank','','','c','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(125,'When the government expenditure and income are the same in fiscal year, this is referred as;','Net balance  ','Zero balanced budget  ','Balanced budget  ','Net income ','','','c','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-06-20 12:46:10'),(126,'Inflation as a result of increase in the payment for factors of production is called  ','Cost-pull inflation  ','Demand-push inflation  ','Cost-push inflation  ','Demand pull inflation ','','','c','','post-utme','2012',61,'Admin','0000-00-00 00:00:00','2020-06-20 16:03:31'),(127,'When Lump-sun tax is paid by a producer, it means that;  ','The tax is paid proportional to the quantity of output produced  ','The tax is paid regardless of volume of output  ','The tax is paid in arrears  ','The tax is returned to the producer after the payment','','','b','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:55'),(128,'The following is not correct  ','Average variable cost equals average total cost minus average fixed cost   ','Average fixed cost equals average variable cost minus average total cost  ','Average total cost equals average variable cost plus average fixed cost  ','Average total cost minus average variable cost equals average fixed cost ','','','b','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-06-20 16:00:38'),(129,'Normal profit means;  ','All the accountant cost are covered but not all the economist cost  ','All the economist cost are covered but not all the accountant cost  ','More than economist cost are covered  ','None of the economist and Accountant costs is covered ','','','a','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:42'),(130,'If the price of commodity X increases because of the increase in the price vis-à-vis the increase in demand  for other commodities are likely to be  ','Complimentary  ','Substitute  ','Compose  ','Intermediate','','','a','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-05 10:51:05'),(131,'The following may not inflate the National Income figure ','Student’s bursary  ','Owners occupied houses  ','Office Inducement  ','Intermediate goods','','','b','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-06-20 16:21:51'),(132,'Legal Entity means  ','A company is owned by large number of people  ','A company is owned by small number of people  ','A company is insulated against litigation  ','A company is not insulated against litigation ','','','d','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(133,'In the ownership structure of joint stock company the following is correct;  ','Ordinary shareholders are stronger than preferential shareholders  ','Preferential shareholder are stronger than ordinary shareholders  ','Ordinary shareholders are settled first in case of company’s liquidation  ','Ordinary and preferential shareholders are perpetual rivals ','','','a','','post-utme','2012',54,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:55'),(134,'The difference between the output proceedings of Nigerians abroad and foreigners in Nigeria is known as;  ','Net export to abroad  ','Net import from abroad  ','Net income from abroad  ','Net income to abroad','','','a','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:25'),(135,'A stock variable is measured;  ','Over a period  ','At a point  ','Consistently  ','Intermittently ','','','b','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-06-26 18:56:00'),(136,'The following is not true of price mechanism ','Equilibrium price is determined by forces of demand and supply  ','Individual households and firms pursue personal interest  ','Producers and consumers are rational in decision making ','Price control in prominent in the commodity and input markets.','','','d','','post-utme','2012',55,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(137,'In the short run, all of the following are applicable except  ','Output may be increased by changing all factors by the same proportion  ','Diminishing returns   ','There are sunk costs ','The total cost curve is the same as the total variable cost curve ','','','a','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-06-29 19:55:53'),(138,'The sum of MPS and MPC is  ','greater than 1 but less than infinity  ','greater than 0 but less than 1 ','equal to 1 ','none of the above','','','c','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-06-29 19:38:28'),(139,'For a perfectly competitive market, the shape of the --------- is horizontal while the ----------- is downward slopping  ','industry’s demand curve/industry’s supply curve  ','firm’s supply curve/industry’s demand curve  ','firm’s demand curve/industry’s demand curve  ','industry’s demand curve/firm’s demand curve','','','c','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-29 19:07:49'),(140,'Demand for money is: ','Composite demand  ','Derive demand  ','Joint demand  ','C and B ','','','b','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-06-28 16:35:07'),(141,'If the cross elasticity of demand between X and Y is zero, then   ','X and Y are substitutes ','X and Y are complements ','X and Y are dependent on each other  ','X and Y are independent of each other ','','','d','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-06-29 19:18:06'),(142,'Which of the following correctly defines inflation? ','A one-time increase in commodity prices ','A period when prices increase rapidly','A sustained increase in the overall price level ','An increase in the overall level of business activity','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-06-20 14:01:15'),(143,'If a market for good X is in disequilibrium, which of the following statements is true about the quantity of X that is actually exchanged?  ','It is determined by the forces of demand  ','it is determined by the forces of supply  ','it is determined by both demand and supply forces  ','it is determined by the forces of demand or supply whichever is shorter ','','','c','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-23 18:33:33'),(144,'How can we eliminate a surplus in a commodity market? ','Increase quantity supplied ','Decrease quantity demanded  ','Allowing price to fall towards equilibrium  ','Allowing price to rise towards equilibrium ','','','c','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-06-28 12:40:35'),(145,'Identify one among the following which is NOT part of the objectives or functions of the African Development Bank (ADB). ','Provision of technical assistance for development projects   ','Provision of funds for the supply and demand of infrastructural facilities  ','Adoption of a common tariff policy for trade and development  ','Provision of fund for agricultural development','','','c','','post-utme','2013',76,'Admin','0000-00-00 00:00:00','2020-06-23 11:16:52'),(146,'When the product of any one firm in an industry is not  perceived by consumers as a perfect substitute for the product of any other firm in the same industry, we have ','Perfect competition','Monopoly  ','Oligopolist ','Monopolistic competition   ','','','b','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:25'),(147,'In which of the following situations do we have a free good?  ','At zero price, more is demanded than supplied  ','At zero price, quantity supplied exceeds quantity demanded  ','At equilibrium price, quantity supply is equal to quantity demanded. ','Any quantity can be obtained when the price is low ','','','b','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:11'),(148,'In economics, a commodity is said to have an opportunity cost because  ','The price of the commodity is high  ','The commodity is scarce  ','Another good may have been purchased instead of it  ','The commodity provides many benefits','','','c','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-06-29 19:39:38'),(149,'One among the following options is not correct ','Any point inside the production possibility curve indicates unemployment or underemployment  ','Increase in the price of a commodity leads to a fall in the demand for its substitute ','The fixing of price above the equilibrium price level leads to surplus of the commodity ','An increase in both market supply and market demand may not result in a change in equilibrium price and quantity. ','','','d','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-05-29 20:45:24'),(150,'A country’s aggregate consumption was N20 million when its GDP was N100million. Following an increase in GDP to N120 million, consumption increased to N25 million. The marginal propensity to consume is given as','0.25','0.5','0.75','0.8','','','a','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(151,'Which of the following is not a measure for controlling inflation by the central bank?  ','Open market operation  ',' Reserve requirements  ','Sale of treasury bills ',' change of central Bank Governor','','','d','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-06-20 16:28:28'),(152,'A 50% increase in the quantity demanded of a commodity, following a 100% decrease in its price, shows that the commodity has ','Fairly elastic demand  ','Unitary elastic demand','Inelastic demand','Perfectly elastic demand ','','','c','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:06'),(153,'A total utility is increasing, marginal utility is  ','Negative and decreasing  ','Positive and increasing  ','positive and decreasing   ','Zero','','','c','','post-utme','2013',69,'Admin','0000-00-00 00:00:00','2020-05-28 21:15:17'),(154,'Which of the following statements is true? ','Disposable income is the only variable that determines consumption   ','Investment spending is positively related to the rate of interest   ','imports lead to a decrease in the level of exports  ','Imports lead to a decrease in spending on locally produced goods and services.','','','d','','post-utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(155,'Which of the following will benefit a producer who wants to maximize profit?  ','reduce price when demand is inelastic ','increase price when demand is elastic   ','reduce price when demand is elastic  ','fixed the price of his commodity based on the price of other producers.','','','c','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-06-26 18:21:05'),(156,'Based on the fact that demand curve shows the maximum price at which consumers will buy, it then shows ','average benefit   ','marginal benefit  ','total benefit  ','optimal satisfaction ','','','b','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-06-29 19:38:28'),(157,'Money that a government has required to be accepted in settlement of debts is ','commodity money  ','currency value  ','barter   ','legal tender ','','','d','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-02 18:11:20'),(158,'Which of the following is one of the responsibilities of the Central Bank of Nigeria? ','issuing new bond to finance public sector borrowing requirements  ','auditing the various agencies and departments of government  ','loaning money to other countries that transact business with Nigeria  ','assisting banks that are in financial position ','','','a','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(159,'The law of comparative cost and absolute cost advantage are not the same is that; ','Former require that one of the countries has absolute advantage in the two goods but latter does not   ','Former requires one country to have at least absolute advantage in one of the trading goods over the other country but latter does not.','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in all the goods.  ','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in at least one of the goods.','','','d','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-06 02:26:29'),(160,'When demand for a product is price inelastic, the following can happen  ','Consumers suffer the entire increase in tax on the product   ','producer suffers the entire increase in tax on the product  ','producer suffers larger proportion of the increase in tax on the product  ','consumers suffer larger proportion of the increase in tax on the product ','','','d','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:55'),(161,'Disposable income means:','Income that is lost after tax has been removed   ','Income that could be spent when tax has been removed   ','Income that tax authority mandated to be given to charity when tax has been removed  ','Income to be disposed secretly for future spending after tax has been removed ','','','b','','post-utme','2013',95,'Admin','0000-00-00 00:00:00','2020-07-06 22:14:21'),(162,'In economics, the pleasure, happiness, or satisfaction received from a product is called: ','Marginal cost ','Rational outcome ','Status fulfillment ','Utility.','','','d','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:42'),(163,'A person should consume more of something when its marginal: ','benefit exceeds its marginal cost ','cost benefit ','cost equal its marginal benefit ','benefit is still positive.','','','a','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-06-18 18:54:02'),(164,'Macroeconomics can best be described as the: ','analysis of how a consumer tries to spend income ','study of the large  aggregates of the economy or the economy as whole ','analysis of  how firms attempt to maximum their profits ','study of how supply and demand determine price in individual markets.','','','b','','post-utme','2010',48,'Admin','0000-00-00 00:00:00','2020-06-29 12:00:08'),(165,'When economics say that people act rationally in their self-interest, they mean that individual: ','look and pursue opportunities to increase their utility ','generally disregard the interest of others ','are mainly creatures of habit ','are unpredictable','','','a','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-04 01:38:11'),(166,'As it relates to international trade, dumping: ','is a form of price discrimination illegal under U.S antitrust laws ','is the practice of selling goods in a foreign market at less than the cost ','Constitutes a general case for permanent tariffs ','is defined as selling more goods than allowed by an import quota.','','','b','','post-utme','2010',72,'Admin','0000-00-00 00:00:00','2020-07-05 06:06:11'),(167,'A nation’s production possibility curve is bowed out from the origin because:','wants are virtually unlimited ','the originator of the idea drew it this way and modem economists follow this convention ','resources are scare ','resources are not equally efficiency in producing every good.','','','d','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-06-20 12:38:09'),(168,'If the production possibilities, curve were a straight down sloping line, this would suggest that: ','it is possible to produce  more of both products ','resources are perfectly shift able between the production  of these two goods ','both products are equally capable of satisfying consumer wants ','the two products have identical price.','','','b','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:21'),(169,'Productive efficiency refers to: ','the use of the least-cost method of production ','the production of the product-mix most wanted by society ','the full employment of all available resources ','production at some point inside of the production possibilities curve.','','','a','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-06-23 18:33:33'),(170,'Which of the following statement is correct? ','if demand increase and supply decrease equilibrium price will fall ','if supply increase and demand decrease, equilibrium price will fall ','It demand decrease and supply increase increases, equilibrium price will rise ','If supply declines and demand remain constant, equilibrium price will fall.','','','b','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-19 18:08:35'),(171,'If depreciation exceeds gross investment: ','the economy’s stock of capital may be either growing or shrinking  ','the economy’s stock of capital is growing ','net investment is zero ','the economy’s stock of capital is shrinking.','','','d','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-29 05:31:23'),(172,'Assuming the total population is 100 million, the civilian labour force is 50 million and 47 million workers are employed, the unemployment rate is ','3%','6%','7%','5.30%','','','b','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-06-20 19:14:40'),(173,'Unemployment involving a mismatch of the skills of unemployment workers and the skill required for available jobs is called: ','frictional unemployment ','structural unemployment ','cynical unemployment ','','','','b','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-06-29 19:15:52'),(174,'The greater is the marginal propensity to consume, the: ','smaller is the marginal propensity to save ','higher is the interest rate ','lower is the average propensity to consume ','lower is the rice level.','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-06-29 19:55:53'),(175,'Investment and saving are, respectively: ','income and wealth ','stock & flows ','injection: and leakages ','leakages and injections:','','','c','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-06-29 19:18:06'),(176,'The amount by which government expenditures exceed revenues during a particular year is the: ','public debt ','budget deficit ','full- employment ','GDP gap.','','','a','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-05-28 21:14:03'),(177,'The value of money varies ','inversely with the price of level ','directly with the volume of employment ','directly with the price level ','directly with the interest rate.','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-05 14:17:17'),(178,'If actual reserves in the banking system are #40,000, excess reserves are #10,000, and checkable deposits are #240,000, then the legal reserve requirement is: ','10%','12.50%','20%','5%','','','b','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-06-23 15:51:16'),(179,'The discount rate is the interest: ','rate at which the Central Bank of Nigeria lends in the Nigeria Government ','yield on long-term government bonds ','rate at which commercial banks lend to the public ','rate at which the Central Banks of Nigeria lend to commercial banks.','','','d','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-06-20 11:25:10'),(180,'Assume a household would consume N100 worth of goods and services per week if its weekly income were zero and would spend an additional N80 per week for each 100 of additional income, if C represents consumption and Y income the equation that summarizes this relationship is','C =8+100Y ','C=100+8Y ','C = 100+80Y ','C=80+1Y','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:40'),(181,'For a bicycle company, an economist predicted that, other things being equal, a rise in consumer incomes will increase the demand for bicycles. This prediction is based on the assumption that: ','there are many goods that are substitutes for bicycles ',' there are many goods that are many goods that are substitutes for bicycles','there are many goods that are substitutes for bicycles ','bicycles are normal goods','','','d','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-06-23 17:32:42'),(182,'A demand curve which is parallel to the horizontal axis is','perfectly inelastic ','perfectly elastic ','relatively inelastic ','relatively elastic.','','','b','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-06-20 16:28:28'),(183,'Allocative efficiency occurs only at that output where: ','marginal benefit exceeds marginal cost the by greatest ','consumer surplus exceeds producer surplus by the greatest amount ','the areas of consumer and producer surplus are equal ','the combined amounts of consumer surplus and producer surplus are maximizes.','','','d','','post-utme','2010',58,'Admin','0000-00-00 00:00:00','2020-06-29 19:40:25'),(184,'The primary problem of economics is: ','to obtain more equitable distribution of money income ','production of a given output with the lowest cost combination of factors of production ','Adoption of capital- intensive technology ','Increasing the quantity of the fixed factor of production.  ','','','b','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-06-28 17:00:29'),(185,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',75,'Admin','2016-11-12 19:57:40','2020-06-23 15:52:02'),(186,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',79,'Admin','2016-11-12 20:04:09','2020-06-24 08:09:12'),(187,'The economic system in which resources are privately owned is known as','capitalism','socialism','Communism','unitarism','','','a','','wassce','2001',76,'Admin','2016-11-12 20:04:11','2020-06-23 15:46:31'),(188,'Quasi-rent refers to','Payment made on acquisition of firm’s premises','Payment  made  for  the  procurement  of  tools  and equipment','Returns on investment','Payment made on  any  factor  of  production  that  is temporarily fixed in supply','','','d','','wassce','2001',66,'Admin','2016-11-12 20:04:11','2020-06-24 10:03:13'),(189,'The reward for entrepreneurship is','rent','wages','Interest','profit','','','d','','wassce','2001',64,'Admin','2016-11-12 20:04:11','2020-06-23 18:13:33'),(190,'Which of the following is function of an entrepreneur?','Avoidance of risks','Decision making','Employment control','Organizing unions','','','b','','wassce','2001',69,'Admin','2016-11-12 20:04:11','2020-05-28 21:13:56'),(191,'The difference between the highest and lowest in a set of data is the','Range','median','variance','mode','','','a','','wassce','2001',84,'Admin','2016-11-12 20:04:11','2020-06-18 18:34:39'),(192,'In which of the following economic systems is the consumer referred to as King?','Capitalist economy','Socialist economy','Communist economy','Mixed Economy','','','a','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-06-24 08:20:27'),(193,'The dispersal of people in a country is called','mobility of people','geographical distribution','occupational distribution','state distribution','','','a','','wassce','2001',80,'Admin','2016-11-12 20:04:11','2020-07-05 10:51:05'),(194,'In a country with ageing population, the total population','comprises young school leavers only','comprises mainly women','is increasing at a low rate','has reached the optimum level','','','c','','wassce','2001',82,'Admin','2016-11-12 20:04:11','2020-06-02 23:25:22'),(195,'Population growth can be controlled by all the following except','legalizing abortion','incentives on immigration','family planning','limiting number of children per family','','','b','','wassce','2001',70,'Admin','2016-11-12 20:04:11','2020-07-05 18:18:47'),(196,'Performance of one task in a production process is known as','Specialization','standardization','division of labour','segmentation','','','a','','wassce','2001',83,'Admin','2016-11-12 20:04:11','2020-06-29 18:13:47'),(197,'The marginal product at the fourth variable factor is','12','9','8','6','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',83,'Admin','2016-11-12 20:04:11','2020-07-04 18:08:31'),(198,'The difference between the highest and the least marginal','product of the variable factor is    \\n\t3','8','10','12','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','a','','wassce','2001',67,'Admin','2016-11-12 20:04:11','2020-06-21 11:19:35'),(199,'The average product of the variable factor when four units are employed is','6','8','12','48','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',72,'Admin','2016-11-12 20:04:11','2020-06-20 16:06:40'),(200,'The cost incurred by using both fixed and variable factors in production is called','marginal cost','fixed cost','total cost','average cost','','','c','','wassce','2001',85,'Admin','2016-11-12 20:04:11','2020-07-05 07:48:54'),(201,'Consumers buy more of a commodity at a lower price than at a higher price because','producers like to produce more','in any given situation, people like to buy more','consumers like to show off','with the same amount of money, they will be able to buy more','','','d','','wassce','2001',67,'Admin','2016-11-12 20:04:11','2020-06-20 14:44:01'),(202,'The demand for a commodity not directly for immediate consumption but for the production of another commodity is','competitive demand','derived demand','composite demand','joint demand','','','b','','wassce','2001',74,'Admin','2016-11-12 20:04:11','2020-06-20 16:03:31'),(203,'Which of the following is a luxury item?','Petrol','Textbook','Pencil','Gold','','','d','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-06-20 16:22:56'),(204,'If the quantity demanded of a particular commodity is represented by the function Qd = 30 - 2p. What is the quantity demanded at a price of twelve Naira?','6 units','8 units','10 units','12 units','','','a','','wassce','2001',70,'Admin','2016-11-12 20:04:11','2020-07-05 06:06:11'),(205,'The responsiveness of demand to a change in income is the measurement of','foreign exchange rate','cross elasticity of demand','income elasticity of demand','price index elasticity','','','c','','wassce','2001',73,'Admin','2016-11-12 20:04:11','2020-06-24 08:34:56'),(206,'The upward sloping of the supply curve indicates that','more will be supplied as price rises','less will be supplied as price rises','supply is not a function of price','supply is static and demand is dynamic','','','a','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-06-28 17:00:25'),(207,'Monoculture agriculture means','the cultivation of seasonal crops','the cultivation of one major crop','plantation agriculture','shifting cultivation!','','','b','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-06-22 17:07:52'),(208,'Industries are not sited in most rural areas of Nigeria because','of inadequate basic infrastructure','they lack raw materials','there is no appropriate government policy','the climate is not conducive','','','a','','wassce','2001',84,'Admin','2016-11-12 20:04:11','2020-06-22 18:58:28'),(209,'Which of the following business units can issue shares?','Sole trader','Private limited company','Central Bank','Supermarket','','','b','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-06-23 11:16:39'),(210,'When the government initiates measures to make an organization in which it has substantial interest more profit \toriented, such a business is described as being','indigenized','restructured','Privatized','commercialized','','','d','','wassce','2001',58,'Admin','2016-11-12 20:04:11','2020-06-21 11:19:35'),(211,'Which of the following is not a trade union in Nigeria?','Nigerian Labour Congress','Academic Staff Union of Universities','Nigerian Economic Society','Nigerian Union of Journalists','','','c','','wassce','2001',79,'Admin','2016-11-12 20:04:12','2020-06-29 18:43:48'),(212,'The monopolist power can be controlled by the government through','Labour union','Price legislation','import restrictions','export promotion','','','b','','wassce','2001',79,'Admin','2016-11-12 20:04:12','2020-07-05 08:23:15'),(213,'Which of the following is not a condition for a perfect market?','Homogenous commodity','Ignorance of consumers','Perfect information','Free entry and exit','','','b','','wassce','2001',81,'Admin','2016-11-12 20:04:12','2020-06-22 17:20:37'),(214,'The reward for shareholdership of a company is','Wages','interest','dividends','profit','','','c','','wassce','2001',78,'Admin','2016-11-12 20:04:12','2020-06-22 18:51:40'),(215,'In a public corporation, the risks of business are borne by the','workers','tax payers','board members','treasury','','','b','','wassce','2001',83,'Admin','2016-11-12 20:04:12','2020-06-29 12:00:08'),(216,'One of the functions of money is','double coincidence of wants','unit of account','indivisibility','making payments through banks only','','','b','','wassce','2001',80,'Admin','2016-11-12 20:04:12','2020-07-05 20:28:43'),(217,'Money is demanded for which of the following reasons?','To meet unforeseen contingencies','To solve the problem of inflation','It is easily divisible','It is portable','','','a','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-06-23 12:30:42'),(218,'The Quantity Theory of money states that a reduction in the quantity of money in circulation would bring about','a geometrical fall in prices','a proprotionate fall in price','a rise in prices','an unequal fall in prices','','','b','','wassce','2001',69,'Admin','2016-11-12 20:04:12','2020-07-05 10:54:55'),(219,'Which of the following is the most liquid asset?','Bank notes','Silver','Bank deposit','Cheques','','','b','','wassce','2001',89,'Admin','2016-11-12 20:04:12','2020-06-24 08:34:56'),(220,'The situation in which there is a persistent fall in the general price level is referred to as','devaluation','depreciation','deflation','inflation','','','c','','wassce','2001',65,'Admin','2016-11-12 20:04:12','2020-06-24 10:03:13'),(221,'Commercial banks settle their daily interbank indebtedness through the','Money Market','Finance House','Acceptance House','Clearing House','','','d','','wassce','2001',72,'Admin','2016-11-12 20:04:12','2020-06-22 19:23:34'),(222,'One disadvantage of inflation is that','fixed income earners gain','fixed income earners lose','businessmen lose','standard of living rises','','','b','','wassce','2001',77,'Admin','2016-11-12 20:04:12','2020-06-20 15:52:50'),(223,'Short-term loans can be sourced from','the central bank','development banks','mortgage banks','commercial banks','','','d','','wassce','2001',70,'Admin','2016-11-12 20:04:12','2020-07-05 10:39:31'),(224,'If there is an increase in wages and salaries without a corresponding increase in the supply of goods and services, the situation will lead to','a reduction in aggregate demand','inflation','depression','budget surplus','','','b','','wassce','2001',84,'Admin','2016-11-12 20:04:12','2020-06-18 19:02:21'),(225,'Public expenditure can be financed from all the following sources except','borrowing','grant-in-aid','royalties and rents','Mobilization fees','','','a','','wassce','2001',77,'Admin','2016-11-12 20:04:12','2020-07-04 01:38:11'),(226,'Which of the following is a direct tax?','Import duty','Export duty','Capital gain tax','Sales tax','','','c','','wassce','2001',83,'Admin','2016-11-12 20:04:12','2020-07-05 06:06:10'),(227,'Tax evasions means','postponing payment of tax','tax payment according to ability to pay','making false declaration of taxable income','paying little amount of money as tax','','','c','','wassce','2001',83,'Admin','2016-11-12 20:04:12','2020-06-29 19:14:25'),(228,'A greater burden of tax on a product with high price elasticity of demand rests mainly on the','producer','teacher','civil servant','middlemen','','','a','','wassce','2001',74,'Admin','2016-11-12 20:04:12','2020-07-05 18:25:09'),(229,'An ad valorem tax refers to a tax','imposed on exports','on goods manufactured in the country','based on the value of the commodity','levied on income','','','c','','wassce','2001',87,'Admin','2016-11-12 20:04:12','2020-06-28 17:00:10'),(230,'Which of the following is associated with the development of the petroleum industry in Nigeria?','Neglect of agriculture','Increase in population growth','Increase in the rate of Unemployment','Decrease in the rate of inflation','','','a','','wassce','2001',86,'Admin','2016-11-12 20:04:12','2020-07-04 01:38:11'),(231,'The following are examples of economic goods except','bottled water','air','household utensils','shelter','','','b','','wassce','2010',71,'Admin','2016-11-12 20:44:26','2020-06-19 07:04:46'),(232,'A tent-making factory offers','personal services','indirect services','social services','reflex services','','','b','','wassce','2010',66,'Admin','2016-11-12 20:44:28','2020-06-29 19:40:25'),(233,'In which of the following economic systems do we have mostly private ownership of resources and individual','decision making?','Capitalist system','Socialist system','Mixed system','','','a','','wassce','2010',79,'Admin','2016-11-12 20:44:29','2020-06-29 12:00:08'),(234,'The sum of items divided by the number of items is the','Frequency','mean','median','mode','','','b','','wassce','2010',58,'Admin','2016-11-12 20:44:29','2020-06-23 11:16:52'),(235,'Find the median of the following set of scores: 8, 9, 6, 5, 10','9','8','6','5','','','b','','wassce','2010',69,'Admin','2016-11-12 20:44:29','2020-07-05 18:18:47'),(236,'Which of the following causes the demand curve to shift to the right?','A reduction in the size of population','An increase in the income of the buyer','The availability of substitutes','A decrease in price of the good','','','d','','wassce','2010',74,'Admin','2016-11-12 20:44:29','2020-06-28 16:31:28'),(237,'Goods for which demand rises as income rises are','complementary goods','inferior goods','normal goods','substitutes','','','c','','wassce','2010',71,'Admin','2016-11-12 20:44:29','2020-06-29 05:31:23'),(238,'The slope of a supply curve is','Horizontal','uniform','positive','vertical','','','c','','wassce','2010',66,'Admin','2016-11-12 20:44:29','2020-06-22 17:42:28'),(239,'Equilibrium price is the price at which quantity','demanded is greater than quantity supplied','supplied is greater than quantity demanded','demanded is equal to quantity supplied','supplied equals quantity produced','','','c','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-06-20 11:23:09'),(240,'A decrease in supply with demand remaining unchanged will cause the equilibrium price for a good to','be unchanged','remain elastic','remain inelastic','rise','','','d','','wassce','2010',63,'Admin','2016-11-12 20:44:29','2020-05-28 21:15:07'),(241,'At the highest level of total utility, marginal utility is','Negative','positive and falling','positive and rising','zero','','','d','','wassce','2010',54,'Admin','2016-11-12 20:44:29','2020-06-29 19:07:29'),(242,'The law of diminishing marginal utility states that, the more a commodity is consumed the','higher the satisfaction derived from an additional unit','higher the price to be paid','lower the quantity supplied','lower the rate of increase in the total utility derived','','','d','','wassce','2010',71,'Admin','2016-11-12 20:44:29','2020-06-29 19:07:49'),(243,'Greater inter-dependence among workers in production is associated with','utility','manufacturing','division of labour','factory workers','','','c','','wassce','2010',65,'Admin','2016-11-12 20:44:29','2020-07-05 14:17:17'),(244,'If TC, FC and VC represent total cost, fixed cost and variable cost respectively, which of the following is\\n\tcorrect?','TC = FC-VC','FC = TC + VC','TC > FC + VC','TC = FC + VC','','','d','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-06-29 19:40:25'),(245,'The reward to land as a factor of production is','Profit','rent','interest','wage','','','b','','wassce','2010',70,'Admin','2016-11-12 20:44:29','2020-06-23 15:46:31'),(246,'A firm is said to be a public joint stock company when it','is owned by the government','sells its shares to members of the public','operates as a government corporation','is not legally recognized as a firm','','','b','','wassce','2010',83,'Admin','2016-11-12 20:44:29','2020-06-20 16:12:15'),(247,'All the following are sources of finance to a joint stock company except','debentures','cooperative loans','shares','bank loans','','','b','','wassce','2010',66,'Admin','2016-11-12 20:44:29','2020-06-29 18:43:58'),(248,'The public sector of an economy includes','cooperative societies','nationalized industries','joint stock companies','pressure groups','','','b','','wassce','2010',77,'Admin','2016-11-12 20:44:29','2020-06-29 19:07:49'),(249,'One advantage of the Sole Proprietorship over other forms of business organizations is that it can','make very high profits','employ many workers','keep its affairs private','produce on a very large scale','','','c','','wassce','2010',56,'Admin','2016-11-12 20:44:33','2020-06-21 10:20:59'),(250,'Which of the following is obtainable in a perfect market?','P = MR >AR','MR = MC>P','MR < P','P = MR = MC','','','d','','wassce','2010',60,'Admin','2016-11-12 20:44:33','2020-06-20 09:04:01'),(251,'The wholesaler performs the following functions except','breaking the bulk','offering credit facilities to consumers','financing manufacturers','buying in bulk from manufacturers','','','b','','wassce','2010',72,'Admin','2016-11-12 20:44:33','2020-06-20 16:21:51'),(252,'Age Group\t[0 -15\t\t30%], [16 - 40\t\t27%], [41 - 60\t\t25%], [61 and above\t18%] The data shows the age distribution of a country \\n\tin 1983. Using the data, calculate the percentage of working population in 1983.','48%','52%','57%','70%','','','b','','wassce','2010',70,'Admin','2016-11-12 20:44:33','2020-06-29 12:00:08'),(253,'A country whose population size is too small relative to its resources is','over populated','optimally populated','under populated','producing the optimum output','','','c','','wassce','2010',65,'Admin','2016-11-12 20:44:33','2020-06-29 18:43:48'),(254,'An efficient weapon used in resolving disputes between employers and employees is','co – operation','collective bargaining','display of placards','legal action','','','b','','wassce','2010',54,'Admin','2016-11-12 20:44:33','2020-06-22 18:56:26'),(255,'Which of the following does not explain why a school principal earns more salary than a school messenger?','Length of training','Demand and Supply','Cost of training','The messenger is a non-teaching staff','','','b','','wassce','2010',61,'Admin','2016-11-12 20:44:33','2020-06-23 18:33:33'),(256,'The role of government in promoting agricultural development includes the following except','paying the wages of all farmers','establishing and funding research','formulation of policies','provision of rural infrastructure','','','a','','wassce','2010',78,'Admin','2016-11-12 20:44:33','2020-06-25 15:25:41'),(257,'The following are advantages of large scale agriculture except','use of simple implements','use of sophisticated implements','increase in employment','integration of crop and animal farming','','','a','','wassce','2010',71,'Admin','2016-11-12 20:44:33','2020-06-29 19:26:17'),(258,'The following are all factors determining the location of industry except','minimum wage rate','availability of labour','nearness to raw materials','proximity to market','','','a','','wassce','2010',75,'Admin','2016-11-12 20:44:33','2020-06-20 17:54:56'),(259,'Which of the following is not a concept in National income accounting?','Domestic National Product (DNP)','Gross National Product (GNP)','Gross Domestic Product (GDP)','Net Domestic Product (NDP)','','','a','','wassce','2010',82,'Admin','2016-11-12 20:44:34','2020-06-20 18:14:10'),(260,'Which of the following equations is appropriate for determining the Net Domestic Product (NDP)?','NDP = GNP – depreciation','NDP = GDP + Net Income from abroad','NDP = GDP – depreciation','NDP = GDP x Net Income from abroad','','','c','','wassce','2010',80,'Admin','2016-11-12 20:44:34','2020-06-23 17:37:28'),(261,'Which of the following over estimates the value of national income?','Incomplete statistical data','Wrong timing of computation','Changes in prices of goods within the year','Double counting','','','d','','wassce','2010',71,'Admin','2016-11-12 20:44:34','2020-06-22 17:11:33'),(262,'The total stock of money available for use in an economy is','a function of money','a characteristic of money','the demand for money','the supply of money','','','d','','wassce','2010',68,'Admin','2016-11-12 20:44:34','2020-07-05 07:48:54'),(263,'Which of the following is not a reason for holding money?','Ostentation','Speculation','Transactions','Precautionary','','','a','','wassce','2010',63,'Admin','2016-11-12 20:44:34','2020-07-05 20:28:43'),(264,'The best way of combating demand-pull inflation is to','increase income taxes','reduce income taxes','increase import duties','increase salaries and wages','','','a','','wassce','2010',60,'Admin','2016-11-12 20:44:34','2020-06-20 11:06:41'),(265,'In which of the following ways has','Increase in money supply','A fall in real income','Appreciation in the value of money','Increased employment','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:34','2020-06-29 03:37:16'),(266,'Which of the following is a legal tender?','Bank notes','Bank overdrafts','Bills of exchange','Money order','','','a','','wassce','2010',61,'Admin','2016-11-12 20:44:34','2020-06-26 16:33:46'),(267,'The Central Bank controls money supply through all the following except','lending to the public','bank rate','legal reserve requirements','open market operation','','','a','','wassce','2010',71,'Admin','2016-11-12 20:44:34','2020-06-23 17:31:04'),(268,'One of the functions of the Central Bank is','production of goods','issuing of currency','presenting budgets','printing of cheque book','','','b','','wassce','2010',65,'Admin','2016-11-12 20:44:34','2020-06-29 12:00:08'),(269,'The function of the Central Bank as a lender of last resort means that when all other sources fail','the consumer can always borrow money from the Central Bank','the government can ask the Central Bank to print more money','commercial banks can raise loans from the Central Bank','commercial banks can deposit money with the Central Bank','','','c','','wassce','2010',79,'Admin','2016-11-12 20:44:34','2020-07-03 07:05:43'),(270,'One disadvantage of direct taxes is that they','allocate scarce resources','are not rigid','can be progressive.','can be evaded','','','d','','wassce','2010',78,'Admin','2016-11-12 20:44:34','2020-06-22 17:07:52'),(271,'Human wants are','Limited','scarce','unlimited','in grades','','','c','','wassce','2012',72,'Admin','2016-11-12 21:02:57','2020-06-23 18:43:10'),(272,'The difference between the money cost and the real cost of any item is that','real cost is the alternative forgone while the money cost is the actual amount paid for buying the item','the real cost is the opportunity cost, while the money cost is the marginal cost','money cost is the opportunity cost, while the real cost is the actual cost in monetary terms','money cost is always greater than real cost','','','a','','wassce','2012',69,'Admin','2016-11-12 21:03:03','2020-06-29 19:15:52'),(273,'The Production Possibility Curve (PPC) indicates that as \tmore of one good is produced','less of the other good is produced','the same quantity of the other good is produced','more of the other good is produced','none of the other good is produced','','','a','','wassce','2012',64,'Admin','2016-11-12 21:03:03','2020-06-24 09:02:48'),(274,'An arrangement of data in rows and columns is referred to as a','Graph','bar chart','pie chart','Table','','','d','','wassce','2012',76,'Admin','2016-11-12 21:03:03','2020-06-23 13:19:57'),(275,'A normal demand curve slopes','downwards from left to right','upwards from right to left','downwards from right to left','upwards from left to right','','','a','','wassce','2012',59,'Admin','2016-11-12 21:03:03','2020-06-04 00:11:10'),(276,'The co-efficient of income elasticity of demand for inferior goods is','Positive','equal to one','less than one','negative','','','d','','wassce','2012',61,'Admin','2016-11-12 21:03:03','2020-06-21 11:55:10'),(277,'If a 20% rise in the price of  Whisky leads to a 30% increase in quantity demanded of Schnapps, the cross elasticity of demand is','3.0','2.5','2.3','1.5','','','d','','wassce','2012',57,'Admin','2016-11-12 21:03:04','2020-07-05 16:27:05'),(278,'Palm oil and palm kernel have','competitive supply','excess supply','joint supply','composite supply','','','c','','wassce','2012',65,'Admin','2016-11-12 21:03:04','2020-06-29 05:31:23'),(279,'A supply curve which is vertical has an elasticity co-efficient of','0','0.5','1.5','2','','','a','','wassce','2012',88,'Admin','2016-11-12 21:03:04','2020-07-06 09:13:41'),(280,'If the current price of an apple is twice that of last year, it implies that the value of money is','Stable','falling','rising','getting stronger','','','b','','wassce','2012',62,'Admin','2016-11-12 21:03:04','2020-07-05 20:36:19'),(281,'Price fixed above the equilibrium is to','protect agricultural producers','discourage agricultural producers','lower the prices of agricultural produce','favour consumers','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-06-18 19:52:04'),(282,'A consumer purchasing a commodity X will maximize his satisfaction if','Px = Mux','Px  >_  MUx','Px > Mux','Px < Mux','','','a','','wassce','2012',65,'Admin','2016-11-12 21:03:04','2020-06-29 19:14:25'),(283,'When total utility is constant, it means marginal utility is','Increasing','zero','decreasing','one','','','b','','wassce','2012',61,'Admin','2016-11-12 21:03:04','2020-06-20 08:22:32'),(284,'A rational consumer is one who','spends his income to maximize satisfaction','is not influenced by advertisement','behaves in a particular way all the time','knows the prices of all goods and buys the cheapest','','','a','','wassce','2012',62,'Admin','2016-11-12 21:03:04','2020-06-22 21:24:12'),(285,'Which of the following is not true about land?','The supply is fixed','Land is mobile','It is subject to diminishing returns','Land is heterogeneous','','','b','','wassce','2012',52,'Admin','2016-11-12 21:03:04','2020-06-29 19:07:49'),(286,'The type of production that involves the tapping and \tharnessing of natural resources is','primary production','secondary production','tertiary production','industrial production','','','a','','wassce','2012',64,'Admin','2016-11-12 21:03:04','2020-06-29 19:15:06'),(287,'Which of the following does not change in the short run?','Variable cost','Marginal cost','Total cost','Fixed cost','','','d','','wassce','2012',70,'Admin','2016-11-12 21:03:04','2020-06-22 17:03:20'),(288,'The resources used in production are called','variable inputs','factors of production','capital for production','fixed inputs','','','b','','wassce','2012',79,'Admin','2016-11-12 21:03:04','2020-06-23 11:21:34'),(289,'A firm will shut down in the long run if its earning is','less than normal profit','greater than normal profit','equal to super normal profit','less than super normal profit','','','a','','wassce','2012',54,'Admin','2016-11-12 21:03:04','2020-05-28 21:14:20'),(290,'A market structure where profit is maximized when marginal \trevenue, marginal cost and price are equal is known as','perfect competition','monopoly','oligopoly','imperfect competition','','','a','','wassce','2012',74,'Admin','2016-11-12 21:03:04','2020-06-29 05:31:23'),(291,'In which of the following markets does a firm have power to \tmake super normal profits both in the short run and long run?','Monopol','Duopoly','Oligopoly','Monopsony','','','a','','wassce','2012',66,'Admin','2016-11-12 21:03:04','2020-07-05 16:27:05'),(292,'If there arc no barriers to entering a market, it means that','anyone can become a buyer or seller','unwanted goods can always enter the market','the market becomes a dumping ground','the goods are not inspected','','','a','','wassce','2012',63,'Admin','2016-11-12 21:03:04','2020-06-29 12:00:08'),(293,'A firm’s main aim is to','survive in business','maximize profits','increase its market share','satisfy the ambitions of its managers','','','b','','wassce','2012',67,'Admin','2016-11-12 21:03:04','2020-06-29 18:43:58'),(294,'One good reason for the elimination of middlemen is that they','cause increase in price','help in price stability','grade and blend goods','are too many','','','a','','wassce','2012',73,'Admin','2016-11-12 21:03:08','2020-06-23 18:33:33'),(295,'The increase in population growth in big cities is referred to as','settlement','migration','industrialization','Urbanization','','','d','','wassce','2012',63,'Admin','2016-11-12 21:03:08','2020-07-05 10:51:05'),(296,'Frictional unemployment can be reduced by','encouraging the use of retraining schemes','removing barriers to labour mobility','restricting the introduction of new technology','lowering the level of wages paid to young people','','','a','','wassce','2012',74,'Admin','2016-11-12 21:03:08','2020-06-22 20:35:00'),(297,'If the labour force of a country is 2.5 million and 2 million are employed, what is the unemployment rate?','0.2%','20%','200%','250%','','','b','','wassce','2012',71,'Admin','2016-11-12 21:03:08','2020-07-06 09:13:41'),(298,'The grouping of population according to the economic activities people engage in is','age distribution','sex distribution','geographical distribution','occupational distribution','','','d','','wassce','2012',75,'Admin','2016-11-12 21:03:08','2020-06-20 13:44:19'),(299,'Natural growth rate of population can be defined as the','difference between birth rate and death rate','number of births in a year','increase in the population growth in a year','difference between the total population and the death rate','','','a','','wassce','2012',79,'Admin','2016-11-12 21:03:08','2020-06-29 19:15:06'),(300,'Which of the following is not a consequence of increased unemployment?','A fall in tax revenue for the government','A reduction in trade union’s influence','A fall in the death rate','An increase in the labour force','','','c','','wassce','2012',66,'Admin','2016-11-12 21:03:08','2020-06-29 19:38:28'),(301,'The following are features of subsistence agriculture except','little capital','processing of raw materials','small allotments of land','use of crude implements','','','b','','wassce','2012',71,'Admin','2016-11-12 21:03:08','2020-06-23 12:30:55'),(302,'Which of the following is not true of small companies?','The cannot benefit from economics of scale','are a good source of new jobs','can satisfy demand in specialist markets','have a good record of technical innovations','','','d','','wassce','2012',81,'Admin','2016-11-12 21:03:08','2020-06-23 15:52:02'),(303,'The effect of privatization on the industrial sector of a country is that it','ensures efficiency','discourages efficiency','leads to decrease in output','leads to liquidation','','','a','','wassce','2012',71,'Admin','2016-11-12 21:03:08','2020-06-29 19:39:38'),(304,'The production strategy used in an over populated country is','import substitution','capital intensive','labour intensive','first come first employed','','','c','','wassce','2012',63,'Admin','2016-11-12 21:03:08','2020-06-29 05:31:23'),(305,'National income is used to measure','a country’s population size','a country’s economic growth','the human level of development','the flow of imports to a country','','','b','','wassce','2012',59,'Admin','2016-11-12 21:03:09','2020-06-20 08:22:45'),(306,'A tax is regressive if the','rate of tax is constant at all income levels','rate of tax decreases as income increases','rate of tax increases as income increases','tax is direct rather than indirect','','','b','','wassce','2012',69,'Admin','2016-11-12 21:03:09','2020-06-23 12:42:53'),(307,'When a country’s net income from abroad is added to its total \toutput, the result is','gross domestic product','net national product','gross national product','net domestic product','','','c','','wassce','2012',62,'Admin','2016-11-12 21:03:09','2020-06-29 19:14:25'),(308,'A fall in national output will necessitate','a rise in expenditure on imports','a rise in the level of savings','an increase in consumption expenditure','a rise in the standard of living','','','a','','wassce','2012',75,'Admin','2016-11-12 21:03:09','2020-07-05 10:54:55'),(309,'The demand for money to take advantage of changes in bond \tprices is the','unforeseen motive','transaction motive','speculative motive','precautionary motive','','','d','','wassce','2012',60,'Admin','2016-11-12 21:03:09','2020-07-05 14:17:17'),(310,'Cost push inflation is caused by a','rise in the cost of production','decrease in the transportation cost','rise in demand for goods','decrease in the cost of production','','','c','','wassce','2012',71,'Admin','2016-11-12 21:03:09','2020-06-24 08:59:15'),(311,'Deposits held in a commercial bank are part of','money supply','transfer payments','ordinary shares','treasury bills','','','a','','wassce','2012',77,'Admin','2016-11-12 21:03:12','2020-07-05 18:25:09'),(312,'One profitable form of business undertaken by the commercial banks is','the issuing of cheques','the payment of standing order','lending money to borrowers','accepting cheques from customers','','','c','','wassce','2012',68,'Admin','2016-11-12 21:03:13','2020-06-22 17:20:37'),(313,'When governments want to discourage consumption, they \ttax goods whose demand','price inelastic','abnormal in nature','price elastic','normal in nature','','','c','','wassce','2012',67,'Admin','2016-11-12 21:03:13','2020-07-05 18:18:47'),(314,'A rise in government expenditure can lead to','higher inflation','higher unemployment','lower profits for industries','lower importation of raw materials by industries','','','a','','wassce','2012',91,'Admin','2016-11-12 21:03:13','2020-06-29 19:17:32'),(315,'Tariff is used to protect domestic industries by making foreign goods relatively','cheaper in the domestic market','more expensive in the domestic market','more expensive in the international market','cheaper in the international market','','','b','','wassce','2012',74,'Admin','2016-11-12 21:03:13','2020-06-29 18:43:58'),(316,'Musa has a choice of buying a shirt, a book and a bag. What is the opportunity cost of buying a book?','A bag only','A book and a bag','A shirt and a bag','A shirt only','','','c','','utme','2009',84,'Admin','2016-11-12 21:38:46','2020-06-20 16:20:14'),(317,'A typical feature of a market economy is that','all producers make profit','full employment exists','consumer sovereignty exists','there is equality of economic agents','','','c','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-06-29 19:38:28'),(318,'The privatization exercise in Nigeria is a move towards a','mixed economy','subsistence economy','market economy','command economy','','','c','','utme','2009',97,'Admin','2016-11-12 21:38:47','2020-07-05 19:44:36'),(319,'A high rent on land will affect the cost of producing maize','positively','negatively','at the early stage of production','at the later stage of production','','','b','','utme','2009',99,'Admin','2016-11-12 21:38:47','2020-06-22 19:34:28'),(320,'If the  active  population  is 50  million and unemployed is 5 million, what is the unemployment rate?','10%','45%','55%','90%','','','a','','utme','2009',91,'Admin','2016-11-12 21:38:47','2020-06-29 19:26:06'),(321,'A cumulative frequency graph is','a histogram','an ogive','a bar chart','a pie chart','','','b','','utme','2009',95,'Admin','2016-11-12 21:38:47','2020-06-20 15:20:35'),(322,'A movement along the same demand curve is caused by the','price of the product','price of other products','income of the consumer','taste of the consumer','','','a','','utme','2009',88,'Admin','2016-11-12 21:38:47','2020-06-29 19:17:32'),(323,'The demand curve for a luxury good is','negatively sloped','parallel to the price axis','parallel to the quantity axis','positive sloped','','','d','','utme','2009',84,'Admin','2016-11-12 21:38:47','2020-06-20 12:48:47'),(324,'Price elasticity of demand is expressed as','percentage change in price percentage change in quantity demanded','percentage change in quantity demanded percentage change in Income','percentage change in Income percentage change in quantity demanded','percentage change in quantity demande percentage change in price','','','d','','utme','2009',84,'Admin','2016-11-12 21:38:47','2020-06-23 18:43:10'),(325,'A major assumption in cardinal utility theory is that','utility is measurable','utility is not measurable','total utility equals marginal utility','total utility is constant','','','a','','utme','2009',94,'Admin','2016-11-12 21:38:47','2020-07-05 14:08:23'),(326,'A supply curve is positively sloped because','supply always exceeds demand','demand always exceeds supply','price is an incentive to consumers','price is an incentive to producers','','','d','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-06-29 12:00:08'),(327,'The short-run supply curve for medical doctors is more  likely to be','perfectly elastic','perfectly inelastic','fairly inelastic','fairly elastic','','','b','','utme','2009',85,'Admin','2016-11-12 21:38:47','2020-06-29 19:40:21'),(328,'If the price of an item changes by 8% and quantity supplied changes from 600 units to 660 units, the price elasticity of supply is','0.80','1.25','2.00','10.00','','','b','','utme','2009',95,'Admin','2016-11-12 21:38:47','2020-07-05 20:36:19'),(329,'In a regulated market, price is determined by','Consumers','producers','auction','government','','','d','','utme','2009',91,'Admin','2016-11-12 21:38:47','2020-06-29 06:50:37'),(330,'A decrease in supply without a corresponding change in demand will lead to','an increase in equilibrium price and a decrease equilibrium quantity','a decrease in equilibrium price and an increase in equilibrium quantity','a decrease in equilibrium price and equilibrium quantity','an increase in equilibrium price and quantity','','','a','','utme','2009',80,'Admin','2016-11-12 21:38:47','2020-06-25 15:25:41'),(331,'Production takes place when','output is transformed into input','machines replace human effort','input is transformed into output','there is specialization and division of labour','','','c','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-05 08:23:15'),(332,'The marginal product of the 5th unit of capital is','42','85','114','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','d','','utme','2009',80,'Admin','2016-11-12 21:38:47','2020-06-20 12:47:15'),(333,'Determine the average product of the 4th unit of capital','53','86','212','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','a','','utme','2009',87,'Admin','2016-11-12 21:38:47','2020-06-22 17:11:33'),(334,'Which of the following can be deduced from law of variable proportions when total output is rising?','MP is greater than AP','MP is less than AP','MP is equal to AP','MP is equal to zero','','','d','','utme','2009',97,'Admin','2016-11-12 21:38:47','2020-06-29 06:50:37'),(335,'As the level of output increases, the average fixed cost of a firm will','continue to increase','remain uncharged','continue to decrease','be equal to the total cost','','','c','','utme','2009',105,'Admin','2016-11-12 21:38:48','2020-06-23 13:00:47'),(336,'The shape of the long-run average cost curve is best explained by the','law of diminishing returns','law of returns to scale','cost of fixed inputs','cost of variable inputs','','','a','','utme','2009',102,'Admin','2016-11-12 21:38:48','2020-06-23 17:32:42'),(337,'The supply curve of a perfectly competitive firm is identical to its','total cost','marginal cost','fixed cost','variable cost','','','b','','utme','2009',86,'Admin','2016-11-12 21:38:48','2020-07-06 09:13:41'),(338,'If a monopolist is incurring short–run losses, this means that his','selling price is above the short–run marginal cost','selling price is below the short–run marginal cost','average revenue is greater than marginal revenue','average revenue is less than marginal revenue','','','b','','utme','2009',92,'Admin','2016-11-12 21:38:48','2020-06-20 15:56:59'),(339,'In the long run, one of the characteristics of monopolistic competitive firms is that the','make  abnormal profits','suffer losses','make normal profits','collude with each other','','','a','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-07-05 18:18:47'),(340,'In developing countries, it is easier to obtain accurate national income estimates through the','GNP','GDP','NDP','NNP','','','b','','utme','2009',98,'Admin','2016-11-12 21:38:48','2020-06-23 18:57:11'),(341,'Double counting is a problem in computing national income when using the','expenditure method','income method','output method','value–added method','','','c','','utme','2009',80,'Admin','2016-11-12 21:38:48','2020-06-20 18:03:22'),(342,'In the circular flow of income, an increase in saving causes','an increase in imports','a decrease in the income stream','an increase in household consumption','a decrease in exports','','','b','','utme','2009',87,'Admin','2016-11-12 21:38:48','2020-06-29 18:43:48'),(343,'The ability of commercial banks to create money depends on the','Ratio','liquidity ratio','interest rate','capital base','','','b','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-06-18 19:18:19'),(344,'The reform in the banking sector in Nigeria is principally \tmotivated by the need to','increase the capital base of banks','provide more money to run the economy','minimize the rate of bank failures','enhance efficiency in bank operations','','','a','','utme','2009',102,'Admin','2016-11-12 21:38:48','2020-06-29 12:00:08'),(345,'A manufacturer who wants to build a new plant will source funds from the','commercial banks','money market','capital market','government','','','c','','utme','2009',93,'Admin','2016-11-12 21:38:48','2020-06-20 16:28:28'),(346,'Cost–push inflation occurs when','production cost is high','factor prices decrease','there is too much money in circulation','government embarks on deficit financing','','','a','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-06-23 15:44:38'),(347,'If government expenditure exceeds revenue, this results in','balanced budget','national debt','budget deficit','budget surplus','','','c','','utme','2009',104,'Admin','2016-11-12 21:38:48','2020-06-29 19:39:38'),(348,'The Basic Needs Approach to development is directed a','poverty alleviation','provision of educational infrastructure','provision of health services','improvement in worker’s income','','','a','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-07-05 10:39:31'),(349,'The major reason why countries strive to achieve optimum growth is to','be self–sufficient','raise general living standards','raise the level of production','reduce aggregate expenditure','','','b','','utme','2009',96,'Admin','2016-11-12 21:38:48','2020-06-29 19:39:34'),(350,'According to the theory of comparative advantage, specialization will result in','labour–intensive method of production','capital–intensive method of production','efficient allocation of resources','efficient distribution of output','','','c','','utme','2009',94,'Admin','2016-11-12 21:38:48','2020-06-29 19:38:15'),(351,'Dumping in international trade means selling a good at a','higher price at home than abroad','lower price at home than abroad','price that equates marginal cost with marginal revenue','price above marginal cost abroad','','','a','','utme','2009',100,'Admin','2016-11-12 21:38:48','2020-06-22 19:17:29'),(352,'Guided deregulation as currently practiced in Nigeria implies that','market forces determine interest and exchange rates','government alone determines interest and exchange rates','market forces and government determine interest and exchange rates','exchange rate is regulated while interest rate is fixed','','','c','','utme','2009',83,'Admin','2016-11-12 21:38:48','2020-06-29 19:38:15'),(353,'An important function of the world bank is to','provide short–term loans to members','encourage trade between members','promote capital–intensive productions','provide long–term loans to members','','','d','','utme','2009',89,'Admin','2016-11-12 21:38:48','2020-06-29 19:14:25'),(354,'The major problem confronting a sole proprietor is','high level of risk','limited expertise','limited source of capital','high taxation','','','c','','utme','2009',88,'Admin','2016-11-12 21:38:48','2020-06-28 17:00:10'),(355,'A public liability company is run on a daily basis by','the chief executive','the shareholders','the board of directors','financial consultants','','','c','','utme','2009',95,'Admin','2016-11-12 21:38:48','2020-06-28 17:00:18'),(356,'The marketing of agricultural products in Nigeria can be improved by','a massive production of farm produce','re–establishing the marketing boards','establishing more agricultural banks','processing of farm produce','','','b','','utme','2009',86,'Admin','2016-11-12 21:38:48','2020-06-29 05:31:23'),(357,'To enhance the competitiveness of domestic agricultural products, there is need to','ban the importation of agricultural products','increase the exportation of agricultural products','improve the quality of domestic agricultural products','increase the output of domestic agricultural products','','','c','','utme','2009',81,'Admin','2016-11-12 21:38:48','2020-06-29 12:00:08'),(358,'In Nigeria, the location of a steel industry at Ajaokuta is due to','the availability of transport network','the proximity to source of power','the proximity to large deposits of iron ore','political consideration.','','','c','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-07-05 08:23:15'),(359,'Industries for consumer goods are concentrated in urban centres as result of','large market','power supply','government policy','weather conditions','','','a','','utme','2009',90,'Admin','2016-11-12 21:38:48','2020-06-29 19:18:06'),(360,'The current industrial development strategy in Nigeria is aimed at encouraging','small–scale industries','medium–scale Industries','small – and medium–scale Industries','medium–and large–scale Industries','','','c','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-06-24 08:09:24'),(361,'Activities in the oil and gas industry are classified into','oil exportation and distribution','refining and marketing of finished products','upstream and downstream','exploration and drilling','','','c','','utme','2009',94,'Admin','2016-11-12 21:38:48','2020-06-29 19:38:28'),(362,'High dependency ratio is influenced by','high infant mortality rate','the level of income','high birth rate','inadequate medical care for children','','','c','','utme','2009',96,'Admin','2016-11-12 21:38:48','2020-06-23 17:48:06'),(363,'Occupational distribution of population determines the','size of a population available and willing to work','population density of a place','dependency ratio of a country','size and categories of the labour force','','','a','','utme','2009',98,'Admin','2016-11-12 21:38:48','2020-07-05 14:17:17'),(364,'The mobility of labour is mainly determined by','the age of workers','government policy','trade unions','wage rate differentials','','','d','','utme','2009',96,'Admin','2016-11-12 21:38:49','2020-06-28 16:35:07'),(365,'When workers have a union, the supply of labour is said to be','Monopolistic','oligopolistic','Monoposonistic','competitive','','','b','','utme','2009',97,'Admin','2016-11-12 21:38:49','2020-07-04 01:38:11'),(366,'Economics is the study of human behaviour as it relates to the','efficient allocation of resources','operation of companies','production of goods','generation of income','','','a','','utme','2010',110,'Admin','2016-11-12 22:11:49','2020-07-06 11:55:33'),(367,'A classroom teacher is promoted to the rank of a principal. This is an example of','vertical mobility','lateral mobility','social mobility','horizontal mobility','','','d','','utme','2010',95,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(368,'The downturn in the prices of shares on stock markets is a \thighlight of','efficient allocation of resources','the regulatory nature of the market','the invisible hand','consumer rationality','','','b','','utme','2010',111,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(369,'If  X = 6 and N = 6, determine the value of   Efx.','36','12','1','72','','','a','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(370,'The standard deviation of a set of data is','always measured from the mode','always measured from the median','the most representative of averages','a measure of dispersion','','','d','','utme','2010',101,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(371,'The mean is the best measure of central tendency because it','is not affected by extreme values in a data','is a balancing point in an observation','is a midpoint value in an array of data','can be calculated from incomplete data','','','b','','utme','2010',96,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(372,'The most popular sizes of dresses and shoes are determined by the','Range','mode','mean','median','','','d','','utme','2010',113,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(373,'If  the demand for a good is more elastic than its supply, the tax burden is borne','equally by consumers and producers','more by consumers','more by producers','more by retailers and producers','','','c','','utme','2010',97,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(374,'If  the price of a commodity with elastic demand increases, the revenue accruing to the producer will','Double','be constant','increase','decrease','','','d','','utme','2010',107,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(375,'An excess demand for beans will result from','an increase in the price of  beans','a decrease in the price of  beans','an increase in the supply of  beans','a decrease in the supply of  beans','','','b','','utme','2010',105,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(376,'Consumer surplus tends to be higher when demand is','perfectly elastic','inelastic','elastic','unitary elastic','','','c','','utme','2010',82,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(377,'One of  the assumptions of ordinal utility theory is that','choice is not consistent','total utility is a function of price','utility can be ranked','satisfaction is measurable','','','c','','utme','2010',100,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(378,'The law of diminishing marginal utility explains why','the slope of a normal demand curve is negative','the slope of a normal demand curve is positive','an abnormal demand curve slopes upward','the consumption of inferior goods increases with income','','','a','','utme','2010',109,'Admin','2016-11-12 22:11:50','2020-07-04 20:54:08'),(379,'If a consumer plans to spend 120k on four oranges but spent 80k, his consumer surplus is','N = 1.50','N = 1.00','N = 0.40','N = 2.0','','','c','','utme','2010',107,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(380,'A set of  factors that can shift the supply curve are changes in','weather, price and technology','technology, price and taste','technology, weather and population','population, price and taste','','','c','','utme','2010',123,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(381,'If  the coefficient of price elasticity of supply is greater than one, the supply is said to be','perfectly elastic','infinitely inelastic','fairly inelastic','fairly elastic','','','d','','utme','2010',99,'Admin','2016-11-12 22:11:50','2020-07-01 17:51:13'),(382,'If commodity X is a by-product of commodity Y, this implies that both commodities are','in competitive supply','jointly supplied','in composite supply','in excess supply','','','c','','utme','2010',104,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(383,'In perfect competition, price is determined by the','Government','buyers','sellers','market','','','d','','utme','2010',92,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(384,'In order to reduce hardship faced by consumers due to high prices, government can introduce','maximum prices','minimum prices','commodity boards','price control boards','','','d','','utme','2010',107,'Admin','2016-11-12 22:11:50','2020-07-06 11:55:33'),(385,'Average product is less than marginal product when','there is constant returns to scale','there is decreasing returns to scale','there is increasing returns to scale','diminishing returns set in','','','c','','utme','2010',105,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(386,'A firm enjoying economics of scale is said to be','reducing average cost as production increases','maximizing profits as production increases','benefiting from the activities of other firms','having an upward - sloping average cost curve','','','a','','utme','2010',94,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(387,'The rising portion of the long - run average cost curve of a','firm is an indication that it is experiencing \\n\tincreasing efficiency','diseconomies of scale','economics of scale','increasing marginal returns','','','b','','utme','2010',92,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(388,'An industry’s supply curve is more likely to be elastic when firms are','enjoying free entry and exit','operating below capacity','operating at full capacity','maximizing profits','','','b','','utme','2010',91,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(389,'One of  the characteristics of  monopolistic competition is that','there is mobility of factors of production','consumers have perfect knowledge of price','no single seller dominates the market','the firms are price – takers','','','a','','utme','2010',109,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(390,'The demand curve for factors of production','is perfectly elastic','slopes downwards','slopes upwards','is perfectly inelastic','','','b','','utme','2010',98,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(391,'An agreement among firms on price and segmentation is termed','Cartel','haggling','collusion','specialization','','','b','','utme','2010',96,'Admin','2016-11-12 22:11:51','2020-06-30 11:55:27'),(392,'In national income accounting, tax is determined by the','level of  income','level of investment','level of consumption','rate of savings','','','a','','utme','2010',95,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(393,'A decrease in aggregate spending in an economy will ultimately lead to','Boom','deflation','inflation','recession','','','b','','utme','2010',100,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(394,'If  MPC is 0.7 while government expenditure increased by N= 150m, the equilibrium national income is','N= 214 million','N= 105 million','N= 45 million','N= 500 million','','','b','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(395,'The function of money which makes division of  labour \tpossible is its','unit of account','medium of exchange','store of value','standard of deferred payment','','','b','','utme','2010',111,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(396,'By buying treasury bills, the Central Bank of  Nigeria intends \tto','increase money supply in the economy','reduce money supply in the economy','reduce the cash reserve ratio for banks','increase the capital base of commercial banks','','','b','','utme','2010',112,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(397,'The velocity of money is represented as','money supply /real GDP','real GDPmoney supply','nominal GDP/real GDP','money supply/nominal GDP','','','a','','utme','2010',104,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(398,'One of the functions of commercial banks is','maintaining stable price in the economy','granting loans to customers','regulating monetary policies','issuing bank notes and coins','','','b','','utme','2010',108,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(399,'A strategy for curbing unemployment is to','implement government stabilization policy','increase government expenditure and decrease taxes','increase taxes and decrease government expenditure','ensure even distribution of job opportunities','','','b','','utme','2010',109,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(400,'In Nigeria, the huge public debt is as a result of','balanced budgeting','surplus budgeting','deficit budgeting','zero budgeting','','','c','','utme','2010',99,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(401,'National development plans in Nigeria fail mainly because of','over dependence on foreign aids','poor implementation strategies','inadequate funding of projects','shortage of skilled manpower','','','b','','utme','2010',101,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(402,'The ultimate aim of agricultural policies in Nigeria is to achieve','food sufficiency','full employment','industrialization','industrial capacity utilization','','','c','','utme','2010',93,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(403,'Government can boost agricultural output in Nigeria primarily by','embarking on buffer stock programs','granting subsidies on farm Inputs','placing embargo on food importation','placing farmers on monthly income','','','c','','utme','2010',102,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(404,'Localization of industries refers to the','spread of firms producing different products','concentration of firms of an industry','siting of industries near the market','siting of firms producing different products','','','b','','utme','2010',104,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(405,'in developing countries, governments influence the location of  industries in order to','spread development','encourage entrepreneurs','redistribute wealth','encourage industries to earn high profits','','','a','','utme','2010',100,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(406,'A disadvantage of Nigeria’s dependence on imported petroleum products is the','instability in the demand to the  products','instability in the supply for the products','dominance of multinational firms','poor maintenance of the refineries','','','b','','utme','2010',104,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(407,'The maximum number of shareholders  for a limited liability company is','Twenty','seven','five','infinite','','','d','','utme','2010',97,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(408,'The primary motive for an individual engaging in production is to','make profit','redistribute wealth','satisfy basic human wants','put inputs into use','','','a','','utme','2010',113,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(409,'One of  the characteristics of  free trade zone is','common tariff against non-member countries','free factor mobility within the zone','different trade policies of non-member countries','harmonized trade among member countries','','','b','','utme','2010',110,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(410,'If  Nigeria imports vehicles from Japan, the transaction will appear as a','debit on Japan’s balance of payments','credit on Nigeria’s balance of trade','credit on Japan’s balance of payments','credit on Nigeria’s balance of payments','','','a','','utme','2010',99,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(411,'One of  the objectives of ADB is to','provide subsidies on imported goods to members countries','promote economic and social development of member countries','mobilize short-term loans for member countries','provide technical assistance to only poor member countries','','','c','','utme','2010',98,'Admin','2016-11-12 22:11:51','2020-07-01 17:51:13'),(412,'The choice of the method of production in an economy is determined by the','level of income','rate of population growth','level of technical know-how','availability of natural resources','','','c','','utme','2010',110,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(413,'The amount of labour hired depends on the','number of skilled labour available','marginal productivity of labour','skill of labour','price of other inputs','','','b','','utme','2010',91,'Admin','2016-11-12 22:11:51','2020-07-06 11:55:33'),(414,'Economic as a field of study is a','pure science','political science','social science','physical science','','','c','','wassce','2003',66,'Admin','2016-11-12 22:37:36','2020-07-06 09:13:41'),(415,'The three major agents of an economic system are the','consumers, workers and producers','markets, telecommunication and banks','schools, hospitals and universities','individuals, firms and government','','','d','','wassce','2003',67,'Admin','2016-11-12 22:37:37','2020-06-22 21:24:12'),(416,'Which of the following  is  not  an  advantage  of  tabular presentation of data?','enables easy location of required figures','makes for easy comparison of figures','occupies more space than mathematical equation','shows whether the figures are increasing or decreasing','','','c','','wassce','2003',89,'Admin','2016-11-12 22:37:37','2020-06-24 08:59:27'),(417,'The problem of scarcity is reduced by','controlling consumption of goods and services','producing everything needed by consumers','ensuring efficient allocation of resources','restricting consumer choices and tastes','','','c','','wassce','2003',82,'Admin','2016-11-12 22:37:37','2020-07-04 01:38:11'),(418,'The reward for labour is','wages','profit','rend','dividends','','','a','','wassce','2003',67,'Admin','2016-11-12 22:37:38','2020-06-23 18:57:11'),(419,'Which of the following factors of production consists of man made goods?','Land','Labour','Capital','Entrepreneur','','','c','','wassce','2003',68,'Admin','2016-11-12 22:37:38','2020-06-06 18:47:00'),(420,'One major function of the entrepreneur is','bearing of risk','maximizing profits','taking charge of day to day management','determining the selling price of his products','','','c','','wassce','2003',69,'Admin','2016-11-12 22:37:38','2020-07-06 09:13:41'),(421,'A major limiting factor of mass production is','efficient management','adequate labour supply','small size of the market','adequate  supply of raw materials','','','c','','wassce','2003',81,'Admin','2016-11-12 22:37:38','2020-06-22 20:35:00'),(422,'Division of labour leads to','improved craftsmanship','the production of standardized goods','increase in the cost of goods','trade by barter','','','b','','wassce','2003',73,'Admin','2016-11-12 22:37:38','2020-06-23 18:24:35'),(423,'Which of the following is  an  advantage of localization of \\n\tindustry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2003',78,'Admin','2016-11-12 22:37:38','2020-06-20 16:12:15'),(424,'The additional satisfaction derived from the consumption of one more unit of a good is called','marginal product','marginal utility','marginal revenue','marginal cost','','','b','','wassce','2003',78,'Admin','2016-11-12 22:37:38','2020-07-05 07:48:54'),(425,'West  African   countries  have  low  levels  of  economic \tdevelopment due to','underpopulation','inadequate labour','failure to plan','ineffective plan implementation','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:38','2020-06-20 11:55:12'),(426,'When the total product is at its maximum, marginal \\n\tproduct is','increasing','positive','negative','zero','','','d','','wassce','2003',89,'Admin','2016-11-12 22:37:38','2020-06-24 08:09:24'),(427,'Marginal cost can be derived from the','total product','total revenue','total cost','average fixed cost','','','d','','wassce','2003',74,'Admin','2016-11-12 22:37:38','2020-06-22 17:20:37'),(428,'The market supply curve slopes upwards from left to right indicating that','at a lower price, more is supplied','two commodities can be supplied at the same time','at a lower price, less is supplied','producers pay high taxes','','','c','','wassce','2003',60,'Admin','2016-11-12 22:37:38','2020-06-20 16:04:39'),(429,'The marginal revenue when output is 4 units is','5 naira','8 naira','56 naira','61 naira','Use the data below to answer question:  Output [1, 2, 3, 4, 5]  Total Revenue(N=) [40, 49, 56, 61, 65]','','a','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-06-20 13:41:33'),(430,'The term under population refers to a situation where the population is','dispersed over the country','small in relation to available resources','greater than the available resources','concentrated in a few areas','','','b','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-07-04 20:54:08'),(431,'West African countries experience rapid population growth due to','existence of birth control clinics','early marriages','adequate sex education in schools','late marriages','','','b','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-02 15:47:02'),(432,'Which of the following could be  used  to  measure  the efficiency of labour?','Education and training','Rate of inflation','Level of unemployment','Input-Output ratio','','','d','','wassce','2003',72,'Admin','2016-11-12 22:37:38','2020-06-23 12:42:53'),(433,'Which of the following is necessary for the survival of small firms in West Africa?','Access to land for development','Inadequate collaterals for bank loans','Government assistance in the form of loans and tax holidays','High transportation costs.','','','c','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-06-23 11:16:39'),(434,'A normal demand curve slopes','downwards from left to right','upwards from left to right','downwards from right to left','upwards from the origin','','','a','','wassce','2003',89,'Admin','2016-11-12 22:37:38','2020-06-29 19:39:38'),(435,'If the quantity demanded of a commodity increases from 20 to 30 units when there is an increase in price from 4 naira to 5 naira, the elasticity of demand is','0','1','2','5','','','c','','wassce','2003',79,'Admin','2016-11-12 22:37:38','2020-07-05 10:54:55'),(436,'Price elasticity of supply measures the responsiveness of','quantity supplied to   changes in suppliers’ income','changes in prices of other commodities','a change in the prices of the commodity','a change in the demand for the product','','','c','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-06-29 18:43:58'),(437,'The most common type of business in West African countries is','joint stock companies','sole proprietorships','partnerships','public enterprises','','','b','','wassce','2003',75,'Admin','2016-11-12 22:37:38','2020-06-24 08:20:27'),(438,'Which of the following is a type of business organization?','Stock exchange','Insurance company','Chain stores','Co-operative','','','b','','wassce','2003',62,'Admin','2016-11-12 22:37:38','2020-07-04 01:38:11'),(439,'One advantage of the sole proprietorship is that','control and supervision is under one man','accounts must be publicized','it is always successful','funds are easy to obtain','','','a','','wassce','2003',66,'Admin','2016-11-12 22:37:38','2020-06-29 19:39:34'),(440,'The shares which do not carry any fixed rate of dividend are known as','debentures','cumulative preference shares','ordinary shares','participating preference shares','','','c','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-06-20 12:47:15'),(441,'The economic goal of public corporations is to','maximize profit','expand assets','minimize costs','provide essential services.','','','d','','wassce','2003',74,'Admin','2016-11-12 22:37:38','2020-06-20 15:12:27'),(442,'One of the factors responsible for low agricultural \\n\tproduction in West Africa is','inadequate labour','shortage of land','inadequate implements','inadequate research','','','c','','wassce','2003',81,'Admin','2016-11-12 22:37:38','2020-06-20 13:44:19'),(443,'Efficient distribution of goods in West Africa will be \\n\tfacilitated by','poor storage facilities','adequate transportation system','high standard of living','high cost of living','','','b','','wassce','2003',71,'Admin','2016-11-12 22:37:38','2020-06-29 05:31:23'),(444,'The demand for money is','derived demand','composite demand','joint demand','complimentary demand','','','a','','wassce','2003',75,'Admin','2016-11-12 22:37:39','2020-05-28 21:13:53'),(445,'Money becomes a very poor store of value in a period of','deflation','depression','recession','inflation','','','d','','wassce','2003',73,'Admin','2016-11-12 22:37:39','2020-06-29 12:00:08'),(446,'A continuous fall in the general price level is called','recession','depression','deflation','stagflation','','','c','','wassce','2003',87,'Admin','2016-11-12 22:37:39','2020-07-06 02:26:29'),(447,'Which of the following is a function of the central bank?','Accepting deposits from the public','Lending to the commercial bank','Discounting bills of exchange','Agent of payment for individuals','','','b','','wassce','2003',63,'Admin','2016-11-12 22:37:39','2020-06-23 15:51:16'),(448,'Cost-push inflation is likely to arise when','there is an increase in government spending','there is an increase in direct taxes','demand for higher wages is granted','there is a decrease in bank lending','','','c','','wassce','2003',74,'Admin','2016-11-12 22:37:39','2020-06-23 13:00:47'),(449,'The most important function of merchant banks is the','issuing of currency','provision of short term loans','provision of medium and long term loans','provision of short and long term loans','','','c','','wassce','2003',78,'Admin','2016-11-12 22:37:39','2020-06-24 08:59:27'),(450,'Precautionary motive relates to','demand for money','demand for goods','supply of money','supply of goods','','','a','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-06 09:56:29'),(451,'Invisible trade refers to trade in','services','goods and services','tangible goods','crude oil','','','a','','wassce','2003',68,'Admin','2016-11-12 22:37:39','2020-06-20 13:01:14'),(452,'When the demand for foreign exchange exceeds its supply, the value of the domestic currency','appreciates','depreciates','inflates','expands','','','b','','wassce','2003',70,'Admin','2016-11-12 22:37:39','2020-06-20 17:53:27'),(453,'Which of the following is part of the capital account of the balance of payments?','Net investment from abroad','Import of machinery','Insurance','Transportation costs','','','a','','wassce','2003',80,'Admin','2016-11-12 22:37:39','2020-06-26 16:46:06'),(454,'The most common index for measuring development is','the level of illiteracy','the per capital income','nutritional levels','population growth rate','','','b','','wassce','2003',67,'Admin','2016-11-12 22:37:39','2020-06-22 20:12:10'),(455,'Governments of West African countries levy taxes to','prevent prices from falling','make people richer','limit the number of banks','finance government projects','','','d','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-06-24 09:02:48'),(456,'Which of the following is a direct tax?','Import duties','Purchase tax','Export duties','Personal income tax','','','d','','wassce','2003',82,'Admin','2016-11-12 22:37:39','2020-06-21 11:19:21'),(457,'The tax whose rate increases as the level of income increases is known as','regressive tax','proportional tax','progressive tax','company tax','','','c','','wassce','2003',117,'Admin','2016-11-12 22:37:39','2020-07-03 05:40:21'),(458,'Public expenditure on education and health is known as expenditure on','general services','social services','commercial services','economic services','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-05 10:51:05'),(459,'Budget deficit can be financed by','reducing the level of taxation','printing more money','lending to financial institutions','employing more workers','','','b','','wassce','2003',66,'Admin','2016-11-12 22:37:39','2020-07-04 01:38:11'),(460,'A major problem facing the Economic Community of West African States (ECOWAS) as an economic integration, is the','increasing population','willingness of member to co-operate','geographical contiguity','weak trade relations','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-06-29 19:39:34'),(461,'In a socialist economy, the means of production is owned and controlled by the','state','rich','Entrepreneur','traders','','','a','','wassce','2003',70,'Admin','2016-11-12 22:37:39','2020-07-04 20:54:08'),(462,'It is necessary to estimate the national income of a country because it','indicates the overall performance of the economy','ensures equitable distribution of wealth','assists investors in identifying profitable ventures','enables governments to conserve national resources','','','a','','wassce','2003',64,'Admin','2016-11-12 22:37:39','2020-06-18 19:46:15'),(463,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','perfect competition','monopsony','duopoly','cartel','','','d','','wassce','2003',77,'Admin','2016-11-12 22:37:39','2020-07-05 16:27:05'),(464,'Which of the following is an economic activity?','Attending a town’s meeting','A visit to the stadium','Payment of school fee','Arresting a petty thief','','','c','','wassce','2004',71,'Admin','2016-11-12 23:04:46','2020-07-05 16:27:05'),(465,'The reward for land as a factor of production is','interest','rent','dividend','wages','','','b','','wassce','2004',71,'Admin','2016-11-12 23:04:46','2020-07-05 18:18:47'),(466,'The three broad categories of production are','direct, secondary and extractive','primary, tertiary and direct','primary, secondary and tertiary','secondary, primary and indirect','','','c','','wassce','2004',72,'Admin','2016-11-12 23:04:46','2020-06-20 15:39:15'),(467,'A carpenter’s consumer good include:  I.  a kilogram of rice II.  3 pairs of shoes    III.  4 pairs of socks   IV. 3 screw-drivers','I and IV only','I, II, III and IV','I, II and IV only','I, II and III only','','','a','','wassce','2004',67,'Admin','2016-11-12 23:04:46','2020-06-20 12:44:16'),(468,'In a capitalist system, the means of production is owned and controlled by','the government','politicians','private individuals','the workers','','','c','','wassce','2004',70,'Admin','2016-11-12 23:04:46','2020-07-05 07:41:15'),(469,'Mixed economy refers to a system in which the means of production are controlled by','private enterprise and the government','private individuals','the government only','the workers and businessmen','','','a','','wassce','2004',76,'Admin','2016-11-12 23:04:46','2020-06-23 13:00:47'),(470,'An economic good is described as a good which','yield utility and commands a price','is useful and occupies a space','is in high demand and transferable','has unlimited supply','','','a','','wassce','2004',63,'Admin','2016-11-12 23:04:46','2020-06-22 17:11:33'),(471,'The concept of opportunity cost is important to the firm because it','determines the prices of the firm’s products','increases the level of output of the firm','leads to maximum satisfaction of the consumers','Guides firms in allocating scarce resources','','','d','','wassce','2004',81,'Admin','2016-11-12 23:04:46','2020-07-04 01:38:11'),(472,'As a firm expands, it enjoys some advantages called','variable proportions','diminishing marginal returns','internal economics of scale','decreasing returns to scale','','','c','','wassce','2004',71,'Admin','2016-11-12 23:04:46','2020-06-23 18:57:11'),(473,'Division of labour is limited by','the size of the market','the productivity of capital','cost of production','factors of production','','','a','','wassce','2004',66,'Admin','2016-11-12 23:04:46','2020-06-26 18:21:05'),(474,'An entrepreneur is likely to make more profits when','expenditure is more than revenue','competitors charge lower prices','cost per unit output falls','quantity of output reduces','','','c','','wassce','2004',68,'Admin','2016-11-12 23:04:46','2020-06-22 21:21:21'),(475,'Natural growth rate is','birth rate less death rate','death rate less migration','death rate plus birth rate','birth rate plus migration','','','a','','wassce','2004',68,'Admin','2016-11-12 23:04:46','2020-06-23 18:13:33'),(476,'A major effect of aging populations is','reduced labour force','rise in prices of commodities','reduced infrastructure','neglect of agriculture','','','a','','wassce','2004',83,'Admin','2016-11-12 23:04:46','2020-07-05 20:36:19'),(477,'One of the problems associated with the middleman in the distribution of goods is that he','buys in large quantities','hoards goods','grants credit to the retailer','sells varieties of goods','','','b','','wassce','2004',73,'Admin','2016-11-12 23:04:46','2020-06-28 17:00:25'),(478,'The distribution of goods is said to be completed when it reaches the','wholesalers','consumers','retailers','manufacturers','','','b','','wassce','2004',76,'Admin','2016-11-12 23:04:46','2020-06-21 09:17:49'),(479,'The gap between demand and  supply  curves  below the equilibrium price indicates','excess demand','excess supply','equilibrium quantity','equilibrium price','','','a','','wassce','2004',82,'Admin','2016-11-12 23:04:46','2020-06-29 19:26:17'),(480,'Demand for inferior good is an example of','expansion of demand','contraction of demand','individual demand','abnormal demand','','','d','','wassce','2004',76,'Admin','2016-11-12 23:04:46','2020-06-29 18:43:48'),(481,'When a change in price does not affect the quantity demanded of a commodity, the price elasticity of demand is','fairly inelastic','infinitely elastic','perfectly inelastic','unitary elastic','','','c','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-06-29 19:17:32'),(482,'For both the monopolist and the perfectly competitive firm, profit maximizing output occurs at the point where the','marginal cost curve cuts the marginal revenue curve from below','marginal revenue curve cuts the marginal output from above','marginal cost curve intersects the X-axis','marginal revenue curve intersects the Y-axis','','','a','','wassce','2004',77,'Admin','2016-11-12 23:04:47','2020-06-22 21:21:21'),(483,'The market structure in which the operators are many and none of them can influence the price is','imperfect market','perfect market','oligopolistic market','stock market','','','b','','wassce','2004',75,'Admin','2016-11-12 23:04:47','2020-07-05 10:39:31'),(484,'One main benefit of partnerships is','the possibility of raising funds on the stock exchange','the possibility of attracting twenty one or more members','that members can specialize in various functions','that it enjoys its own separate legal entity.','','','c','','wassce','2004',69,'Admin','2016-11-12 23:04:47','2020-06-19 17:59:47'),(485,'Joint ventures are partnerships involving','the poor and the rich','employers and workers','government and private investor','multi-nationals and individual','','','c','','wassce','2004',89,'Admin','2016-11-12 23:04:47','2020-06-23 12:02:30'),(486,'The value of money is best determined by','input-output ratio','the purchasing power','the importance people attach to it','economics of scale','','','b','','wassce','2004',72,'Admin','2016-11-12 23:04:47','2020-06-23 18:33:33'),(487,'Which of the following will be an effect of inflation?','Wages earners will gain','Borrowing of money will be restricted','Money lenders will gain','Borrowers of money will gain','','','d','','wassce','2004',80,'Admin','2016-11-12 23:04:47','2020-06-20 16:06:40'),(488,'Government can control inflation by','printing more money','reducing the rate of taxes','reducing the level of expenditure','establishing more banks','','','c','','wassce','2004',87,'Admin','2016-11-12 23:04:47','2020-07-04 01:38:11'),(489,'The market consisting  of  a  network  of  dealers  where \tcurrencies can be bought and sold is known as','capital market','foreign exchange market','commodity market','the stock market','','','b','','wassce','2004',71,'Admin','2016-11-12 23:04:47','2020-06-23 11:18:04'),(490,'Open Market Operation (OMO) means the','provision of credit facilities by commercial banks','provision of credit facilities by the mortgage banks','buying and selling of government securities by the central bank','procedure for the establishment of commercial banks','','','c','','wassce','2004',71,'Admin','2016-11-12 23:04:47','2020-06-20 14:11:06'),(491,'Which of the following is an advantage of  localization of industry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2004',72,'Admin','2016-11-12 23:04:47','2020-07-05 20:36:19'),(492,'Which of the following will ensure efficiency in the industrial sector of your country?','Indigenization','Privatization','Nationalization','Liquidation','','','b','','wassce','2004',76,'Admin','2016-11-12 23:04:47','2020-07-05 19:44:36'),(493,'The number of people who are qualified to work and who offer themselves for employment are called','migrant labour','working population','labour turnover','mobility of labour','','','b','','wassce','2004',74,'Admin','2016-11-12 23:04:47','2020-06-20 12:44:30'),(494,'When the general price level persistently falls, the rate of  unemployment','rises','stagnates','rapidly reduces','equals natural growth rate','','','a','','wassce','2004',81,'Admin','2016-11-12 23:04:47','2020-06-23 18:13:33'),(495,'Which of the following is not a direct effort to increase agricultural production?','Operation feed the nation','Use of improved seedlings','Increased loans to farmer and co-operative societies','National Youth Service Corps','','','d','','wassce','2004',75,'Admin','2016-11-12 23:04:47','2020-07-05 19:44:36'),(496,'To ensure high employment rates, developing countries should','build more universities','protect infant industries','organize trade fairs','prevent rural-urban drift','','','b','','wassce','2004',78,'Admin','2016-11-12 23:04:47','2020-07-04 01:38:11'),(497,'The act of selling goods in foreign markets at prices below those charged at home markets is called','exchange','specialization','dumping','exporting','','','c','','wassce','2004',76,'Admin','2016-11-12 23:04:47','2020-07-05 06:06:11'),(498,'Taxes levied on commodities are','direct taxes','indirect taxes','poll taxes','investment taxes','','','b','','wassce','2004',80,'Admin','2016-11-12 23:04:47','2020-06-29 05:31:23'),(499,'One disadvantage of direct taxes is that','government’s revenue is reduced','price of essential commodities fall','people are discouraged from additional work','firms make more profits','','','c','','wassce','2004',74,'Admin','2016-11-12 23:04:47','2020-06-23 18:13:33'),(500,'International trade is an application of the principle of','industrial production','mass production','regional co-operation','comparative costs advantage','','','d','','wassce','2004',75,'Admin','2016-11-12 23:04:47','2020-06-29 19:15:06'),(501,'Trade among West African countries is poor because the','countries are self-sufficient','communication links are weak','number of banks is insufficient','people are not enterprising','','','b','','wassce','2004',81,'Admin','2016-11-12 23:04:47','2020-07-05 06:06:10'),(502,'A policy by which governments restrict the amount of \\n\tforeign currencies bought and sold is known as','devaluation','credit creation','exchange control','export promotion','','','c','','wassce','2004',71,'Admin','2016-11-12 23:04:47','2020-06-20 16:00:38'),(503,'Which of the following items is under the capital account of a balance of payments','Repayments of foreign loans','Visible imports','Invisible exports','Cocoa export','','','a','','wassce','2004',85,'Admin','2016-11-12 23:04:47','2020-07-05 18:25:09'),(504,'A surplus in the balance of payments should be used to','subsidize multi-national companies','build infrastructure for friendly nations','make donation to developed countries','buy investments overseas','','','d','','wassce','2004',85,'Admin','2016-11-12 23:04:47','2020-07-05 10:54:55'),(505,'Development planning which takes an overall view of the economy is described as','Aggregate economic planning','Disaggregated economic planning','Sectorial economic planning','System economic planning','','','a','','wassce','2004',79,'Admin','2016-11-12 23:04:47','2020-06-29 19:38:28'),(506,'The national income of a country can be estimated by the','cost-benefit method','distribution method','expenditure method','consumption method','','','c','','wassce','2004',74,'Admin','2016-11-12 23:04:51','2020-06-26 18:56:00'),(507,'Which of the following is excluded when estimating national income?','Dividends','Wages and salaries','Transfer payment','Profits','','','c','','wassce','2004',59,'Admin','2016-11-12 23:04:51','2020-06-20 08:32:40'),(508,'The economic Community of West African States (ECOWAS) has been slow in achieving its objectives because of','political instability in member state','the activities of multi-national','inadequate personnel at the secretariat','inadequate international support','','','a','','wassce','2004',60,'Admin','2016-11-12 23:04:51','2020-06-20 11:25:10'),(509,'A major achievement of  the  Organization  of  Petroleum Exporting Countries (OPEC) is that','crude oil price has increased tremendously','petroleum products prices have remained low','producing countries are highly industrialized','price of crude oil has remained relatively stable.','','','d','','wassce','2004',81,'Admin','2016-11-12 23:04:51','2020-07-05 07:41:15'),(510,'Economic activities are undertaken to solve the problem of','consumption','opportunity cost','production','scarcity','','','b','','wassce','2005',77,'Admin','2016-11-12 23:29:58','2020-06-20 08:30:52'),(511,'Farming, mining and fishing are','primary production','secondary production','tertiary production','intermediate production','','','a','','wassce','2005',82,'Admin','2016-11-12 23:29:58','2020-06-02 19:43:39'),(512,'A list of consumers’ wants arranged in order of priority is known as','a budget','an opportunity cost','a scale of preference','choice','','','c','','wassce','2005',83,'Admin','2016-11-12 23:29:58','2020-06-29 05:31:23'),(513,'The 150.00 Naira which Olu would have used to purchase a textbook was used to buy a T-shirt. This implies that','Olu’s real cost is 150.00 Naira','Olu’s opportunity cost is the T-shirt','Olu’s opportunity cost is the textbook','Olu’s money cost is also the real cost.','','','c','','wassce','2005',70,'Admin','2016-11-12 23:29:58','2020-06-29 12:00:08'),(514,'The remuneration of the entrepreneur as a factor of production is called','wages','salary','interest','profit','','','d','','wassce','2005',78,'Admin','2016-11-12 23:29:58','2020-06-29 18:13:47'),(515,'The production factor, whose entire world supply is fixed is','land','skilled labour','capital goods','entrepreneurship','','','a','','wassce','2005',62,'Admin','2016-11-12 23:29:58','2020-06-29 19:18:06'),(516,'When all factor inputs are reduced by half, the production possibility curve will shift','outwards','inwards','downwards','upwards','','','b','','wassce','2005',72,'Admin','2016-11-12 23:29:59','2020-07-04 01:38:11'),(517,'When a worker changes from one type of job to another, it is called','geographical mobility of labour','occupational mobility of labour','immobility of labour','rural-urban migration.','','','b','','wassce','2005',78,'Admin','2016-11-12 23:29:59','2020-06-26 18:21:05'),(518,'Which of the following determines the sizes of a country’s population?    (l) Birth rate    (ll) Death rate     \\n\t(lll) Migration rate     (lV) lmportation rate    (V) Unemployment','l), (ll) and (V)','(ll) and (lV)','(I), (II) and (lll)','(I) and (V)','','','c','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-07-05 18:25:09'),(519,'Age distribution is important because it helps the \tgovernment to','check rural-urban drift','determine the number of foreigners','determine the number of factories','undertake effective planning','','','d','','wassce','2005',73,'Admin','2016-11-12 23:29:59','2020-07-04 01:38:11'),(520,'A group of firms producing similar commodities for the same market constitute','a cartel','an industry','a co-operative','wholesalers','','','b','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-06-29 18:43:48'),(521,'A factor that has slowed down the rate of industrial development in West Africa is','inadequate technology','increasing rate of manpower production','increased demand for local goods','intervention of the government in business activities.','','','a','','wassce','2005',59,'Admin','2016-11-12 23:29:59','2020-06-20 08:30:52'),(522,'To achieve an equilibrium position, the consumer must buy so much of each commodity whose price is equal its','marginal utility','total utility','average utility','variable utility','','','a','','wassce','2005',80,'Admin','2016-11-12 23:29:59','2020-06-24 10:03:13'),(523,'Price control refers to','the ways of making more goods available in the market','a policy of ensuring stable price in the market','a general reduction in the price level','effective working of the forces of demand and supply','','','b','','wassce','2005',66,'Admin','2016-11-12 23:29:59','2020-06-29 19:40:21'),(524,'The desire for goods without the ability to pay is called','choice','effective demand','joint demand','wants','','','d','','wassce','2005',67,'Admin','2016-11-12 23:29:59','2020-06-20 14:44:01'),(525,'Amount of goods offered to the market at respective prices and presented in a table is called','price schedule','supply schedule','scale of preference','demand schedule','','','b','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-06-29 19:38:28'),(526,'At the equilibrium price, quantity demanded is','greater than quantity supplied','equal to quantity supplied','less than quantity supplied','equal to excess supply','','','b','','wassce','2005',69,'Admin','2016-11-12 23:29:59','2020-06-24 08:09:12'),(527,'lf the government fixed a price of a commodity above the equilibrium price, the quantity supplied will be','less than quantity demanded','equal to the quantity demanded','greater than quantity demanded','equal to zero','','','c','','wassce','2005',81,'Admin','2016-11-12 23:29:59','2020-06-23 17:37:28'),(528,'One of the factors determining price elasticity of demand for a commodity is the','availability of close substitutes','number of producers','government policy','price of other commodities.','','','a','','wassce','2005',74,'Admin','2016-11-12 23:29:59','2020-05-28 21:15:26'),(529,'lf elasticity of demand for a commodity is less than one, demand is','unitary elastic','inelastic','infinitely elastic','zero elastic','','','b','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-06-29 19:39:38'),(530,'The transfer of ownership of a public enterprise to  individuals and firms is called','commercialization','nationalization','privatization','restructuring','','','c','','wassce','2005',73,'Admin','2016-11-12 23:29:59','2020-06-20 08:38:09'),(531,'One-man businesses are popular in West Africa because of all the following except the','ease of entry','small capital required','limited entrepreneurial skill needed','tendency to become joint-stock companies.','','','d','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-04 01:38:11'),(532,'Wholesalers are often criticized because they','help to break the bulk','finance producers','increase prices','provide after-scale services','','','c','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-06-29 12:00:08'),(533,'ln which of the following business units are the owners mostly the customers?','Co-operatives','Limited liability companies','Partnerships','Public corporations','','','a','','wassce','2005',81,'Admin','2016-11-12 23:29:59','2020-07-04 01:38:11'),(534,'information about new goods is passed on to buyers through','advertising','retail trade','the manufacturer','wholesale trade','','','a','','wassce','2005',80,'Admin','2016-11-12 23:29:59','2020-06-29 19:39:38'),(535,'The profit of the producer can be calculated as','total cost less total revenue','average revenue less average cost','total revenue less total cost','marginal revenue less marginal cost','','','c','','wassce','2005',73,'Admin','2016-11-12 23:29:59','2020-06-29 19:38:28'),(536,'The direct exchange of one good for another without the use of money is known as','foreign exchange','exchange rate','expenditure','barter','','','d','','wassce','2005',78,'Admin','2016-11-12 23:29:59','2020-06-22 18:51:40'),(537,'Acceptability, durability, homogeneity and portability are all \tattributes of good','markets','money','banks','government','','','b','','wassce','2005',72,'Admin','2016-11-12 23:29:59','2020-06-29 19:38:14'),(538,'The term demand for money means','desire to borrow money from people','desire of an individual to invest all his money in  projects','willingness of people to hold money','willingness of people to keep all their resources in  assets.','','','c','','wassce','2005',72,'Admin','2016-11-12 23:29:59','2020-06-24 08:59:15'),(539,'A persistent and appreciable rise in the general level of prices is known as','depreciation','inflation','deflation','production','','','b','','wassce','2005',77,'Admin','2016-11-12 23:29:59','2020-06-20 16:28:41'),(540,'To a commercial bank, deposits are','liabilities','assets','capital','cash at hand','','','d','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-06-23 11:19:12'),(541,'The lender of last resort in the banking system is the','industrial bank','mortgage bank','commercial bank','central bank','','','d','','wassce','2005',74,'Admin','2016-11-12 23:29:59','2020-06-23 18:39:35'),(542,'Discounting a bill of exchange means the bill is','cashed over the counter','sold on the stock exchange','bought for less than its face value','sold to the highest bidder','','','c','','wassce','2005',77,'Admin','2016-11-12 23:29:59','2020-07-05 07:41:15'),(543,'The central bank controls credit in the economy through the use of','legal tender','travelers cheque','foreign exchange instruments','open market operations','','','d','','wassce','2005',80,'Admin','2016-11-12 23:29:59','2020-07-04 20:54:08'),(544,'Among the principles of taxation propounded by Adam Smith was that','a tax should be impossible to evade','a tax should be convenient to pay','no tax should be levied on food','there should be no taxation without representation','','','b','','wassce','2005',74,'Admin','2016-11-12 23:29:59','2020-06-19 17:20:12'),(545,'Mr. Bala’s income is $800.00 per month while that of Mr. Jatau is $1,200.00. lf Messrs Bala and Jatau pay $80.00 and $120.00 respectively as taxes, the tax system is','progressive','regressive','proportional','ad-valorem','','','c','','wassce','2005',81,'Admin','2016-11-12 23:29:59','2020-06-23 18:33:33'),(546,'Government revenue from the groundnut industry is from','licenses','rents','royalties','taxes','','','d','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-06 16:18:01'),(547,'The theory of comparative cost advantage is associated with','Alfred Marshal','Adam Smith','David Ricardo','J.B. Say','','','c','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-06-29 19:17:32'),(548,'When the value of a nation’s exports is greater than its imports','a favourable balance of trade exists','an unfavourable balance of payment exists','the net foreign trade is zero','inflation occurs','','','a','','wassce','2005',76,'Admin','2016-11-12 23:29:59','2020-06-29 19:07:49'),(549,'To improve the balance of payments position of West African countries, there must be','removal of barriers to importation of goods and services','increased rate of exportation of goods and services','increased domestic consumption of foreign produced goods','the development of the local market.','','','b','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-06-22 18:00:28'),(550,'The Economic Community of West African State (ECOWAS) is an example of','bilateral trade','economic integration','regional marketing board','international competition','','','b','','wassce','2005',83,'Admin','2016-11-12 23:30:00','2020-06-29 19:55:53'),(551,'One reason for the low agricultural production in West African countries is that','agriculture employs the highest percentage of the labour force','too much money is invested in agriculture','farmers lack the finance and technology required','the farms are too large','','','c','','wassce','2005',78,'Admin','2016-11-12 23:30:00','2020-06-20 11:31:22'),(552,'Mono-product economies are those that','produce one main commodity','produce only raw materials','depend on the export of their raw materials','specialize in agricultural industries','','','a','','wassce','2005',76,'Admin','2016-11-12 23:30:00','2020-07-04 01:38:11'),(553,'.\\n\\n\tAn essential characteristics of a market economy is','government control','producer surplus','consumer surplus','consumer sovereignty','','','d','','wassce','2005',86,'Admin','2016-11-12 23:30:00','2020-07-06 02:26:29'),(554,'ln a capitalist system, goods are produced for those who','want them most but cannot pay for them','can pay for them but do not want them','want them and can also pay for them','are dependent on the labour force','','','c','','wassce','2005',57,'Admin','2016-11-12 23:30:00','2020-06-29 05:31:23'),(555,'An economy which exhibits features of both private and State enterprises is known as a','capitalist economy','mixed economy','communist economy','socialist economy','','','b','','wassce','2005',67,'Admin','2016-11-12 23:30:00','2020-07-05 10:54:55'),(556,'ln calculating the national income of a country x, the cost of both raw materials and the finished products \t\twere included. This is a case of','double counting','price fluctuations','price differentiation','price discrimination','','','a','','wassce','2005',78,'Admin','2016-11-12 23:30:00','2020-07-05 20:36:19'),(557,'Economic development is defined as','outward shift of the production possibility curve','availability of more goods and services','growth accompanied by qualitative change in living standards.','growth in the national income','','','c','','wassce','2005',66,'Admin','2016-11-12 23:30:00','2020-06-20 15:56:59'),(558,'Which of the following is not an objective of the \\n\tOrganization of Petroleum Exporting Countries (OPEC)?','Stabilization of oil prices','Co-ordinating oil prices','Harmonizing oil prices','Stagnation of developed economies.','','','d','','wassce','2005',108,'Admin','2016-11-12 23:30:00','2020-07-07 09:15:10'),(559,'The study of Economics enables individuals to','change jobs.','evade taxes.','accumulate huge wealth','make national decision','','','d','','wassce','2006',71,'Admin','2016-11-12 23:59:28','2020-06-29 19:14:25'),(560,'Most of the problems of economies arise as a result of','demands for scarce resource','increase in  the demand for more goods and services.','the desire of producers to supply more goods and services.','the need to reduce the level of poverty.','','','a','','wassce','2006',72,'Admin','2016-11-12 23:59:29','2020-07-05 10:54:55'),(561,'Which of the following tools of economic analysis is used when data contains more than one category?','Bars charts','Component bar charts','Graphs','Symbolical statement','','','b','','wassce','2006',66,'Admin','2016-11-12 23:59:29','2020-06-29 05:31:23'),(562,'The reward of capital as a factor of production is','rent','wage','interest','commission.','','','c','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-06-26 19:25:30'),(563,'Mining is an example of','tertiary production','primary production','secondary production','advanced production','','','b','','wassce','2006',67,'Admin','2016-11-12 23:59:29','2020-06-29 03:34:17'),(564,'An owner-manager of a firm can also be called','shareholder','an entrepreneur','an employer','a chairman','','','b','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-06-20 15:12:27'),(565,'If the fixed cost of a firm is 800 Naira and its variable cost is \t2,700 Naira while its total output is 100 units, what is the average cost of the firm?','25 Naira','35 Naira','45 Naira','50 Naira','','','b','','wassce','2006',69,'Admin','2016-11-12 23:59:29','2020-06-28 17:00:25'),(566,'Distribution of good and services is hindered by','good road network','efficient storage facilities','too many middlemen.','Adequate market information.','','','c','','wassce','2006',55,'Admin','2016-11-12 23:59:29','2020-06-29 05:31:23'),(567,'A movement along the same demand curve either upwards \tor downwards as a result of changes in price implies','a change in demand','a change in quantity demanded.','an increase in demand','a shift in the demand curve to the right.','','','b','','wassce','2006',77,'Admin','2016-11-12 23:59:29','2020-06-21 11:22:54'),(568,'Middlemen in an economy perform the function of','distribution','exchange','hoarding.','protection.','','','a','','wassce','2006',73,'Admin','2016-11-12 23:59:29','2020-07-05 10:51:05'),(569,'One of the factors affecting geographical distribution of population is','high birth rate','high death rate','encouragement of early marriage in the rural areas','climatic conditions of  the different parts of the country','','','d','','wassce','2006',63,'Admin','2016-11-12 23:59:30','2020-07-05 20:36:19'),(570,'Standardization of products or services is a feature of','large firms','retailers','small firms','wholesalers.','','','a','','wassce','2006',59,'Admin','2016-11-12 23:59:30','2020-06-22 17:07:52'),(571,'The amount of satisfaction obtained from the consumption of a commodity at a particular time is called','marginal utility','diminishing utility','total utility','average utility','','','c','','wassce','2006',66,'Admin','2016-11-12 23:59:30','2020-07-05 14:17:17'),(572,'What are inferior goods? These are goods','that are generally in short supply.','that are no longer in demand','whose demand falls as income increases','whose price falls as demand increases','','','c','','wassce','2006',74,'Admin','2016-11-12 23:59:30','2020-07-05 10:39:31'),(573,'In the analysis of utility theory, the basis of demand is','marginal utility','average utility','fixed utility','diminishing utility','','','a','','wassce','2006',68,'Admin','2016-11-12 23:59:30','2020-06-29 19:39:38'),(574,'In the normal market situation, when the price of a commodity rises, the','demand for the commodity will rise','demand for the commodity will fall','supply of the commodity will be constant','Supply of the commodity will fall.','','','b','','wassce','2006',74,'Admin','2016-11-12 23:59:30','2020-06-24 08:59:27'),(575,'When the quantity of a commodity supplied increases and the quantity demanded decreases there will be','a rise in price','no change in price','price fluctuation','a fall in price.','','','d','','wassce','2006',71,'Admin','2016-11-12 23:59:30','2020-06-28 17:00:18'),(576,'The market price of a commodity is normally determined by the','law of demand','interaction of the forces of demand and supply.','total number of people in the market','total quantity of the commodity in the market.','','','b','','wassce','2006',61,'Admin','2016-11-12 23:59:30','2020-06-21 10:20:59'),(577,'The mechanism which allows the price of a commodity to be fixed either above or below the equilibrium is known as','monopolistic competition','price discrimination','perfect competitive market','price control','','','d','','wassce','2006',61,'Admin','2016-11-12 23:59:30','2020-06-28 16:59:16'),(578,'A debenture holder is entitled to payments in the form of','allowance','interest','salary','donation','','','b','','wassce','2006',69,'Admin','2016-11-12 23:59:30','2020-07-04 01:38:11'),(579,'The main difference between a private and a public \\n\tenterprise is the','amount of profit realized','mode of operation','objective of the business','ownership structure','','','d','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-06-29 12:00:08'),(580,'The total amount of money raised by a company through insurance of shares to the public is','debentures','nominal capital','ordinary shares','paid-up capital','','','b','','wassce','2006',71,'Admin','2016-11-12 23:59:30','2020-07-05 14:17:17'),(581,'Buying and selling of shares is a function performed mostly \tby the','insurance companies','stock exchange','merchant banks','discount houses','','','b','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-05 18:18:47'),(582,'Which of the following is not reason for establishing public \tenterprises?','Discouraging investors','Opening up neglected parts of the country','Effective control of a natural monopoly','Rapid economic development','','','a','','wassce','2006',77,'Admin','2016-11-12 23:59:30','2020-06-29 19:39:34'),(583,'For a monopolist, the average revenue (AR) curve is  above','the total cost curve','the same as the marginal cost curve','above the marginal revenue curve','the same at that of the perfect competitor.','','','c','','wassce','2006',72,'Admin','2016-11-12 23:59:30','2020-06-20 10:15:25'),(584,'Advertising expenses would not be necessary under perfect competition because','consumers would have complete knowledge of goods','cost of production would be at the maximum level','.  \\n\tevery firm  would enjoy the benefits of large scale production','incomes of the consumers in the community would be high.','','','a','','wassce','2006',70,'Admin','2016-11-12 23:59:30','2020-07-04 01:38:11'),(585,'The equilibrium level of output of a monopolist is determined at a point where','marginal cost equal average  revenue','marginal cost equals average cost','marginal cost equals marginal  revenue','marginal  revenue equals average cost','','','c','','wassce','2006',70,'Admin','2016-11-12 23:59:30','2020-06-23 15:46:31'),(586,'.\\n\\nWhich of the following is a legal tender in West Africa?','Treasury bill','Share','Credit card','Currency','','','d','','wassce','2006',65,'Admin','2016-11-12 23:59:30','2020-06-29 18:43:58'),(587,'The policy of government to increase the supply of money to meet its own expenditure plans is likely to be','speculative','deflationary','inflationary','contractionary','','','c','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-06-23 18:33:33'),(588,'The tendency for prices to rise while the value of money falls is known as','bills of exchange','inflation','depreciation','deflation.','','','b','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-06-29 19:26:17'),(589,'One way to solve the economic problem of inflation in a country is by increasing the','supply of commodities','supply of currency','salaries of workers','demand for commodities.','','','a','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-06-22 18:07:49'),(590,'The motive for holding money for investing in securities is \treferred to as','transactionary','speculative','accumulation','deflationary','','','b','','wassce','2006',70,'Admin','2016-11-12 23:59:30','2020-06-23 15:46:31'),(591,'A cheque book is issued to customers of a bank operating a','savings account','time deposit account','current account','fixed deposit account','','','c','','wassce','2006',73,'Admin','2016-11-12 23:59:30','2020-06-20 18:14:10'),(592,'Amount proposed for payments of wages and salaries in a budget is regarded as part of','recurrent expenditure','direct investment','recurrent revenue','capital receipt','','','a','','wassce','2006',64,'Admin','2016-11-12 23:59:30','2020-07-05 20:28:43'),(593,'The difference between the Gross National Product (GNP) and the Gross Domestic Product(GDP) is','total interest payment','net income generated internally','total national savings','net income from abroad.','','','d','','wassce','2006',75,'Admin','2016-11-12 23:59:30','2020-07-05 14:17:17'),(594,'Which of the following agricultural systems is mainly for the','cultivation of food crops for family consumption?','Co-operative farming','Commercial farming','Subsistence farming','','','c','','wassce','2006',72,'Admin','2016-11-12 23:59:30','2020-06-24 01:02:32'),(595,'Agriculture is important to the economy of West African countries because it is the source of','power','equipment supply','industrial  input','technological progress','','','c','','wassce','2006',77,'Admin','2016-11-12 23:59:30','2020-06-23 18:43:10'),(596,'The economic system in which the state takes the','economic decisions through details planning is','capitalism','socialism','traditional economic system','','','b','','wassce','2006',69,'Admin','2016-11-12 23:59:30','2020-06-18 18:36:30'),(597,'A mixed economy combines the characteristics of both','planned  and capitalist economics','exchange subsistence economies','subsistence and planned economies','capitalist and exchange economics','','','a','','wassce','2006',66,'Admin','2016-11-12 23:59:30','2020-07-05 06:06:10'),(598,'In a rapidly growing economy, a change in technology which is labour saving is likely to cause','residual unemployment','structure unemployment','disguised unemployment','frictional unemployment','','','d','','wassce','2006',75,'Admin','2016-11-12 23:59:30','2020-06-29 19:17:32'),(599,'Which of the following is a form of tax evasion?','Wrong declaration of earnings','Payments of flat rate tax','constant employment','Low capacity utilization','','','a','','wassce','2006',59,'Admin','2016-11-12 23:59:31','2020-06-22 18:56:26'),(600,'Where the burden of a tax finally rest is called','tax object','tax rate','incidence of taxation','system of taxation.','','','c','','wassce','2006',64,'Admin','2016-11-12 23:59:31','2020-06-29 18:43:58'),(601,'An increase in the quantity of goods and services produced \tin a country which raises her national income is known as','economic development','economic growth','domestic investment','productivity.','','','b','','wassce','2006',66,'Admin','2016-11-12 23:59:31','2020-06-22 19:23:34'),(602,'The formula “index of export prices” / “Index of import prices”   x 100   is used to measure the','volume of trade between countries','direction of international trade','commodity terms of trade','volume of imports','','','a','','wassce','2006',81,'Admin','2016-11-12 23:59:31','2020-06-23 15:51:16'),(603,'Which of the following is an invisible item?','Banking services','Petroleum products','Processed rice','Processed milk','','','a','','wassce','2006',73,'Admin','2016-11-12 23:59:31','2020-06-20 10:33:10'),(604,'In an attempt to correct a deficit balance of payments, a country may decide to increase','domestic production','imports','domestic expenditure','tax on infant industries.','','','a','','wassce','2006',72,'Admin','2016-11-12 23:59:31','2020-06-22 17:35:20'),(605,'Which of the following is an objective of economic integration?','Harmonization of cultural practices','Free movement of persons, goods and services','Payment of high tariffs','Dumping of goods in less developed countries','','','b','','wassce','2006',81,'Admin','2016-11-12 23:59:31','2020-06-23 15:52:02'),(606,'One of the functions of the International Monetary Fund (IMF) is to','devalue the currency of member states','reduce drastically the size of deficit financing of member states','give financial assistance to member states that have temporary balance of payment difficulties','the rapid industrialization process in the less developed nations of the world','','','c','','wassce','2006',68,'Admin','2016-11-12 23:59:31','2020-06-26 16:46:06'),(607,'The full meaning of OPEC is','Oil and Petroleum Exporting Countries','Original Petroleum Exporting Companies','Organization of Petrol Exporting Countries','Organization of Petroleum Exporting Countries','','','d','','wassce','2006',58,'Admin','2016-11-12 23:59:31','2020-06-20 13:07:07'),(608,'The three principal economic units in any system are','trade, industry and banking','workers, consumers and shareholder','households, firms and government','companies, industry and plants','','','c','','wassce','2007',86,'Admin','2016-11-13 15:46:54','2020-06-29 19:26:17'),(609,'The satisfaction derived from the use of a commodity is its','demand','elasticity','wealth','utility','','','d','','wassce','2007',71,'Admin','2016-11-13 15:46:55','2020-07-05 14:17:17'),(610,'The reward which accrues to labour for participating in production is','interest','wage','bonus','profit','','','b','','wassce','2007',68,'Admin','2016-11-13 15:46:55','2020-06-23 15:44:26'),(611,'The Malthusian theory of population does not concern itself with','growth of food production in arithmetical progression','growth of population in geometric progression','positive checks to population growth','development and growth of manpower','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:55','2020-06-29 12:00:08'),(612,'One characteristic of labour is that it is','fixed in demand','fixed in supply','mobile','untrainable','','','c','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-29 06:50:37'),(613,'A country where labour is not sufficient to make proper use of the natural resources is said to have an','active population','optimum population','over-population','under-population','','','d','','wassce','2007',65,'Admin','2016-11-13 15:46:56','2020-06-29 19:07:29'),(614,'When population is classified according to professions, it is called','geographical distribution of population','age distribution of population','sex distribution of population','occupational distribution of population','','','d','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-29 19:38:14'),(615,'What must be added to variable cost to give total cost?','Average total cost','Average variable cost','Fixed cost','Marginal cost','','','c','','wassce','2007',58,'Admin','2016-11-13 15:46:56','2020-06-29 12:00:08'),(616,'Revenue is the','total profit made after sales','amount spent on purchases','amount of goods produced','total money realized from sales.','','','d','','wassce','2007',72,'Admin','2016-11-13 15:46:56','2020-06-24 08:20:15'),(617,'Given that TR is total revenue, then TRn - TR(n-1) can be used to find the','marginal revenue','marginal cost','average cost','average revenue','','','a','','wassce','2007',70,'Admin','2016-11-13 15:46:56','2020-07-05 10:54:55'),(618,'The lower the price of a commodity, the greater the quantity demanded. This is based on the assumption that consumers’','income is diminished','income remains the same','utility is diminished','population is high','','','b','','wassce','2007',74,'Admin','2016-11-13 15:46:56','2020-07-05 07:41:15'),(619,'The demand for beans in bags is given by the function Q - 36 + 0.4P = 0. Where P is price in Naira and Q is quantity, find Q when P = 20 Naira.','12 bags','24 bags','28 bags','30 bags','','','c','','wassce','2007',70,'Admin','2016-11-13 15:46:56','2020-06-23 18:01:11'),(620,'If the price of good X rises and the quantity demanded of good Y increases then the two goods X and Y must be','inferior good','substitutes','complements','free goods','','','b','','wassce','2007',61,'Admin','2016-11-13 15:46:56','2020-07-05 08:23:15'),(621,'Use the following  demand schedule to answer question Price (N=) [15, 13]\tQuantity Demanded[60, 70] The percentage change in quantity demanded is','12.7%','15.7%','16.7%','19.7%','','','c','','wassce','2007',70,'Admin','2016-11-13 15:46:56','2020-06-20 16:27:29'),(622,'In a situation where demand is perfectly elastic, imposition of a tax on a commodity to raise its price will result in','consumers increasing their demand for the product','consumers demand for the product remaining unchanged','consumers shifting completely to substitute products','suppliers increases the supply of the product','','','c','','wassce','2007',82,'Admin','2016-11-13 15:46:56','2020-06-21 11:23:07'),(623,'Patents are examples of','natural barriers to entry','legal barriers to entry','illegal barriers to entry','unnatural barriers to entry','','','b','','wassce','2007',60,'Admin','2016-11-13 15:46:56','2020-06-20 18:03:22'),(624,'Which of the following is a characteristic of monopoly?','Many sellers','Homogeneous commodity.','A single seller','Perfect knowledge','','','c','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-06-29 12:00:08'),(625,'When a firm is nationalized','former owners are removed without compensation','it has the right to draw on state funds for capital investment','it must break even within a specified period','workers take control of the firm','','','b','','wassce','2007',53,'Admin','2016-11-13 15:46:56','2020-06-29 03:33:37'),(626,'The practice whereby a business is owned by two or more independent firms is termed','indigenization','joint venture','commercialization','foreign investment','','','b','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-29 19:18:06'),(627,'The main objective of privatizing a government business is to','create additional employment','increase expenditure','source for new funds','increase the level of efficiency','','','d','','wassce','2007',67,'Admin','2016-11-13 15:46:56','2020-06-20 08:02:36'),(628,'The return on investment that is just sufficient to satisfy the owner of a business is called','economic profit','business profit','normal profit','excess profit','','','c','','wassce','2007',65,'Admin','2016-11-13 15:46:56','2020-06-29 12:00:08'),(629,'Which of the following is a middlemen in the chain of distribution?','An entrepreneur','A producer','A banker','A retailer','','','d','','wassce','2007',65,'Admin','2016-11-13 15:46:56','2020-06-20 11:11:44'),(630,'A negative effect of the presence of a large number of middlemen in the distributive network is','greater variety of goods','greater quality of goods','lower price of goods','higher price of goods','','','d','','wassce','2007',73,'Admin','2016-11-13 15:46:56','2020-06-29 19:18:06'),(631,'An example of a producer good is a','tin of milk','hammer','loaf of bread','shirt','','','c','','wassce','2007',61,'Admin','2016-11-13 15:46:56','2020-06-24 10:03:13'),(632,'To promote the development of the agricultural sector, governments of West African countries should','encourage rural-urban drift','discourage foreign investment in agriculture','support the marketing of farm produce','reduces tariff on food import','','','c','','wassce','2007',74,'Admin','2016-11-13 15:46:56','2020-07-06 02:26:29'),(633,'The most important quality of money is that it must be','relatively scarce','generally acceptable','portable','durable','','','b','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-06-23 17:37:28'),(634,'A certain amount of money is needed for everyday expenditure like buying of goods, transportation and others. This is','transaction demand for money','precautionary demand for money','derived demand for money','speculative demand for money','','','a','','wassce','2007',69,'Admin','2016-11-13 15:46:57','2020-06-19 07:30:51'),(635,'Long-term loans can be secured from','commercial banks','discount houses','development banks','acceptance houses','','','c','','wassce','2007',67,'Admin','2016-11-13 15:46:57','2020-06-29 19:40:25'),(636,'The value of money is generally measured in relation to the','interest rate charged on bank loan','general price level','size of a country’s gold stock','volume of imports','','','b','','wassce','2007',62,'Admin','2016-11-13 15:46:57','2020-06-29 12:00:08'),(637,'Which of the following is true under rapid inflation? People','demand less foreign exchange','set up businesses','to pay their taxes','hardly want to lend money','','','d','','wassce','2007',69,'Admin','2016-11-13 15:46:57','2020-07-05 06:06:11'),(638,'Which of the following financial institutions was originally known as a Building Society?','Development bank','Insurance company','Mortgage bank','Merchant bank','','','c','','wassce','2007',77,'Admin','2016-11-13 15:46:57','2020-06-22 17:35:20'),(639,'A non-bank financial intermediary which is regarded as a pool of risks is the','cooperative society','stock exchange','insurance company','post office','','','c','','wassce','2007',65,'Admin','2016-11-13 15:46:57','2020-06-20 16:05:26'),(640,'A foreign exchange market deals in','treasury bills','currencies','government bonds','commodities','','','b','','wassce','2007',66,'Admin','2016-11-13 15:46:57','2020-06-20 18:04:42'),(641,'Which of the following institutions assists the government in managing the national debt?','Commercial Banks','The Central Bank','The Capital Market','The World Bank','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-06-29 19:39:38'),(642,'If tax takes a larger proportion of the income of people with \tlower income, the tax is','progressive','proportional','regressive','ad-valorem','','','c','','wassce','2007',72,'Admin','2016-11-13 15:46:57','2020-07-04 01:38:11'),(643,'Which of Ike following is an example of direct tax?','Import duties','Income tax','Export duties','Purchase tax','','','b','','wassce','2007',54,'Admin','2016-11-13 15:46:57','2020-07-06 09:13:41'),(644,'Monetary control measures are coordinated by','development banks','merchant banks','commercial banks','the Central banks','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:57','2020-07-02 08:41:05'),(645,'A country whose economy is buoyant is likely to have','a weak currency','devaluation from time to time','a strong currency','balance of payment problem','','','c','','wassce','2007',53,'Admin','2016-11-13 15:46:57','2020-06-29 05:31:23'),(646,'The Net National Product (NNP) is Gross National Product (GNP) less','domestic product','foreign product','depreciation','investment','','','c','','wassce','2007',63,'Admin','2016-11-13 15:46:57','2020-06-20 13:07:07'),(647,'If the population of a country is low and the Gross National Product is high, the per capita income will be','high','low','average','unitary','','','a','','wassce','2007',81,'Admin','2016-11-13 15:46:57','2020-06-23 17:37:28'),(648,'The population of a country in a certain year was fifty million and the per capita income was $2050. What was the national income?','$ 750,000 million','$100,250 million','$ 102,500 million','125,050 million','','','c','','wassce','2007',77,'Admin','2016-11-13 15:46:57','2020-06-26 16:48:35'),(649,'One of the advantages of capitalism is that','consumers are exploited','private initiative is discouraged','efficient allocation of resources is assured','job security is assured','','','c','','wassce','2007',60,'Admin','2016-11-13 15:46:57','2020-07-05 20:28:43'),(650,'Which of the following contributes the highest amount of foreign exchange to the economy of West African nations?','Construction, manufacturing and banking','Shipping, trading and fishing','Power, telecommunications and sports','Extraction, farming and tourism','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-06-23 15:44:26'),(651,'International trade depends on the concept of','marginal cost advantage','comparative cost disadvantage','Comparative cost advantage','absolute cost','','','c','','wassce','2007',70,'Admin','2016-11-13 15:46:57','2020-06-22 18:03:29'),(652,'One advantage of international trade is that','countries depend on each other','it introduces variation in prices','it increases demand for foreign goods','it makes variety of goods available','','','d','','wassce','2007',69,'Admin','2016-11-13 15:46:57','2020-06-18 17:54:36'),(653,'The practice of selling goods overseas and often below the cost of production is known as','retailing','dumping','internal trade','advertising','','','b','','wassce','2007',65,'Admin','2016-11-13 15:46:57','2020-06-29 05:31:23'),(654,'A summary of all the receipts and payments of a country in \tinternational transactions is called','terms of trade','balance of payment','balance of payment adjustment','capital account','','','b','','wassce','2007',67,'Admin','2016-11-13 15:46:57','2020-06-29 12:00:08'),(655,'4Which of the following countries export cocoa?','Liberia and The Gambia','Ghana and Sierra Leone','Nigeria and Ghana','Sierra Leone and Nigeria','','','c','','wassce','2007',68,'Admin','2016-11-13 15:46:57','2020-06-21 11:19:21'),(656,'Which of the following are examples of transfer payments?','Gifts and donations','Rents and rates','Profits and dividends','Internal and external debts','','','a','','wassce','2007',74,'Admin','2016-11-13 15:46:57','2020-06-29 19:18:06'),(657,'ECA means','Economic Commission for Africa','Economic Community of Africa','Exporting Countries of Africa','Economic Conference on Africa','','','a','','wassce','2007',72,'Admin','2016-11-13 15:46:57','2020-07-05 14:17:17');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `english` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=597 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `english` VALUES (1,' He put…………..  eggs in a basket.','white dozen eggs ','a dozen white eggs  ',' a white dozen eggs ','dozen white','most appropriate option','','b','','utme','2003',3788,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(2,'The reason why he was not offered admission was …………… his results could not be found.','that   ','when  ','owing to ','because ','most appropriate option','','a','','utme','2003',3617,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(3,'Course………….  writers are to reflect local colour',' material\\'s ','materials\\'','materials ','material ','most appropriate option','','b','','utme','2003',3810,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(4,'If you saw the photograph of the man……………………you be able to identify him?','could','would   ','can ','will ','most appropriate option','','b','','utme','2003',3846,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(5,'As Obande does not know anyone in this city, he hopes that some kind …………  will put him up for the night','man','men ','inhabitants ','individuals','most appropriate option','','a','','utme','2003',3750,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(6,' The doctor asked the patient what………….','The problem is   ',' Is your problem ','The problem was. ',' Is the problem','most appropriate option','','c','','utme','2003',3676,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(7,'The woman is one? of the …………. of the society.','elitist  ',' elites ','ellte','elitists ','most appropriate option','','c','','utme','2003',3753,'Admin','0000-00-00 00:00:00','2020-07-04 14:10:08'),(8,'Three quarters of the people in the village  killed but only half of then \\n          huts……. affected  \\n','were/ were ','was/was','were/ was','was/were ','most appropriate option','','c','','utme','2003',3717,'Admin','0000-00-00 00:00:00','2020-07-04 06:19:00'),(9,'The armed robbers went into the house and robbed the three','woman occupants','women\\'s occupants ','woman\\'s occupants','   women occupants.','most appropriate option','','a','','utme','2003',3848,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:04'),(10,' It was a free-for-all and the students were blamed for taking the law','in their own hands ','into their own hands ','into their hands ','in their hands.','most appropriate option','','b','','utme','2003',3727,'Admin','0000-00-00 00:00:00','2020-07-05 09:36:55'),(11,'The candidate\\'s charisma should be a..………factor in winning the election. ','determinant ','determinate','determining ','determinable ','most appropriate option','','c','','utme','2003',3767,'Admin','0000-00-00 00:00:00','2020-06-24 02:31:06'),(12,'I can\\'t stand people prying into my private life. \\'Ladi said \\'………… agree Agbenu','Me too ','Likewise myself ','Me neither ','I also ','most appropriate option','','b','','utme','2003',3705,'Admin','0000-00-00 00:00:00','2020-07-05 13:36:55'),(13,' Four weeks ..................  enough for the police to  conclude   their','were',' is ',' are ',' has been','most appropriate option','','b','','utme','2003',3683,'Admin','0000-00-00 00:00:00','2020-07-05 13:04:57'),(14,'  It is bad to take………… property without permission. ','someone else\\'s ','someone’s else',' someone\\'s ','someone\\'s else\\'s\\' ','most appropriate option','','b','','utme','2003',3636,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(15,'Classmate……………………….  I haven\\'t seen for years, wrote to me last week.','whose ','which ','that',' whom','most appropriate option','','d','','utme','2003',3718,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(16,'If you would do me this favour,  I …………..  be very grateful','should',' would ',' shall ','will','most appropriate option','','b','','utme','2003',3690,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:46'),(17,'Ali plays ……….violin with remarkable skill','a    ','the','their ','some ','most appropriate option','','b','','utme','2003',3725,'Admin','0000-00-00 00:00:00','2020-07-06 10:31:55'),(18,'1 have the ……… of meeting the President.','privilege  ','privelege ','previlege ','privilege ','most appropriate option','','d','','utme','2003',3690,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(19,'The sergeant spoke to me in a ……………  manner','Coarse','causal     ','coerce    ','course ','most appropriate option','','a','','utme','2003',3734,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(20,'Idakwo ran……………. miss the train','lest he may',' lest ha should','lest he almost   ','lest he will ','most appropriate option','','b','','utme','2003',3805,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(21,'How is the new editor ……………on with hit work','moving','getting','pushing ','going','most appropriate option','','b','','utme','2003',3666,'Admin','0000-00-00 00:00:00','2020-07-05 19:50:42'),(22,'  Be careful not to…………….  this money ','loose  ',' loss ',' lost',' loss','most appropriate option','','b','','utme','2003',3724,'Admin','0000-00-00 00:00:00','2020-07-05 09:02:47'),(23,'Nowadays, many graduates are not Will disposed to teaching……………..','are they','aren\\'t they?','do they?    ',' they are?','most appropriate option','','a','','utme','2003',3591,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(24,'Adike ………….. a message from the club regularly.','Receive ',' had received ',' receive',' has received ','most appropriate option','','a','','utme','2003',3690,'Admin','0000-00-00 00:00:00','2020-06-25 15:55:24'),(25,'It is often……. that inflation ……….  from too much money chasing very few goods.    ','said/results','say/result      ','said/result   ','say/ resulted','most appropriate option','','a','','utme','2003',3678,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(26,'','spot    ','Law   ','North ','naught ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3684,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(27,'','cost    ','won’t    ','hope    ','coast ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3802,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(28,'','there   ','dear    ','fair         ','bear','choose the option that has a different vowel sound from the others.','','c','','utme','2003',3792,'Admin','0000-00-00 00:00:00','2020-07-05 05:57:10'),(29,'','wife','of','off','laugh','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3786,'Admin','0000-00-00 00:00:00','2020-07-06 20:44:05'),(30,'','chef','chief','shoe','ocean','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3808,'Admin','0000-00-00 00:00:00','2020-07-04 14:10:08'),(31,'If he went to London, he would see the Queen','He did not go to London and did not see the Queen',' He would like to see the Queen when he goes to London','When he goes to London, he will see the Queen ','He did not see the queen when he went to London.','that best explains the information conveyed ','','c','','utme','2003',3653,'Admin','0000-00-00 00:00:00','2020-07-05 09:57:53'),(32,'Ngozi has always considered her father to be an impassioned man ','Her father is a very strict man  ','Her father is a very lively man ','Her father is an emotional man ','Her father is a disciplined man ','that best explains the information conveyed ','','c','','utme','2003',3736,'Admin','0000-00-00 00:00:00','2020-06-28 00:26:33'),(33,'The manager paid us in hard currency  ','We were paid in a strong and stable currency ','We were paid in new notes ','We were paid in new notes','We were paid in foreign currency.','that best explains the information conveyed ','','a','','utme','2003',3748,'Admin','0000-00-00 00:00:00','2020-07-05 09:36:55'),(34,'The elders rebuked ','Olu for talking issue with his principal. ','Olu was scolded for acting in collusion with his principal ','Olu was reprimanded for arguing with his principal','Olu was blamed for issuing a statement denying his principal.','that best explains the information conveyed ','','b','','utme','2003',3902,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(35,'In spite of his humble beginning, Audu now throws his weight around ','His noble birth notwithstanding, Audu is a corrupt man ','From his poor background, Audu is now a rich man ','Despite his obvious poverty, Audu is a proud man ','Audu is arrogant despite his simple upbringing .','that best explains the information conveyed ','','d','','utme','2003',3707,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:06'),(36,' <u>Ch</u>alet','chairman','College','champagne','Chemical','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.  ','','c','','utme','2003',3736,'Admin','0000-00-00 00:00:00','2020-07-05 13:04:57'),(37,'Tee<u>th</u>','taught','tank','though','thought',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2003',3753,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:39'),(38,'Co<u>n</u>crete ','anxious ','concern ',' consider ','attend ',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3726,'Admin','0000-00-00 00:00:00','2020-07-05 12:34:12'),(39,'He is well known for his <i>inordinate</i> ambition ','passionate ','sound ','excessive','moderate ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3709,'Admin','0000-00-00 00:00:00','2020-06-28 16:15:50'),(40,'A <i>conservative</i> estimate put the number of missing persons at forty.','an accurate ','An incorrect ','A rough ','Primitive ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3797,'Admin','0000-00-00 00:00:00','2020-06-24 01:31:22'),(41,'Agbenu was <i>ecstatic</i> about her result ','sad','dispassionate ','mad ','pessimistic ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3748,'Admin','0000-00-00 00:00:00','2020-07-06 12:33:08'),(42,'Students could be <i>timid</i>','Pugnacious ','friendly ','bold ','covetous','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3828,'Admin','0000-00-00 00:00:00','2020-06-25 15:50:53'),(43,'The labour leader’s <i>recalcitrant</i> stance was applauded ','flexible ','uncompromising ','well-informed ','stubborn ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3799,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(44,'The company has continued to <i>monopolize</i> the distribution of the products.','regularize ','liberalize ','centralize ','specialize ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3718,'Admin','0000-00-00 00:00:00','2020-06-20 18:01:53'),(45,'The doctor examined the patient <i>painstakingly</i> ','Carefully ','Perfunctorily ','Professionally ','Painfully ','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3678,'Admin','0000-00-00 00:00:00','2020-07-06 20:25:16'),(46,'Toyin is married to an <i>impatient, self-centred man ','a tolerant ','a tolerable','a fretful ','an edgy','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3747,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:35'),(47,'The agency has sworn to deal  with all the <i>apostles</i>  of confederation ','opponents ','apostates ','Proponents ','Protagonists ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3695,'Admin','0000-00-00 00:00:00','2020-07-05 09:36:55'),(48,'The members of the congregation were <i>inspired</i> by the sermon ','enthralled ','disenchanted ','disoriented ','bewitched ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3769,'Admin','0000-00-00 00:00:00','2020-06-22 19:23:39'),(49,'<i>Gregarious</i> animals can be found in the zoo.','lonely ','tame ','wild ','various ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3845,'Admin','0000-00-00 00:00:00','2020-07-06 20:42:46'),(50,'I am <i>loath</i> to do the assignment ','unwilling ','waiting ','dying ','willing ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3754,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(51,'Only those who are <i>gullible</i> fall victim to his trickery ','astute ','Courteous ','saucy ','devastated','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3790,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(52,'A cool bath in a hot weather can be truly <i>invigorating</i> ','debilitating ','devastating ','disgusting ','unpalatable','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3670,'Admin','0000-00-00 00:00:00','2020-07-05 06:07:11'),(53,'The witness decided to <i>conceal</i> the evidence ','waive ','divulge ','hide','destroy ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3705,'Admin','0000-00-00 00:00:00','2020-06-30 19:49:20'),(54,'The President SPOKE to the press ','Did the Present write to the press?','Did the president speak to the press?','Who spoke to the press?','Are these the pressmen that the President spoke to?','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','a','','utme','2003',3639,'Admin','0000-00-00 00:00:00','2020-07-05 10:04:45'),(55,'My MOTHER served rice and fresh fish stew for dinner.','Did your mother serve rice and fresh fish stew for lunch?','Who served rice and fresh fish stew for dinner?','What kind of meal did your mother serve for dinner?','what kind of meal did your mother serve for dinner? ','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','b','','utme','2003',3780,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:30'),(56,'Mark<u>e</u>t  ','mortgage ',' bachelor ',' get ',' enter ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3678,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(57,'c<u>olo</u>nel ',' golden',' girl',' colony ',' goal ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3779,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(58,'t<u>e</u>nd ','caned ',' jeopardy ','turned ',' earned ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3761,'Admin','0000-00-00 00:00:00','2020-07-06 02:26:29'),(59,'The boys knew that a storm was <i>imminent</i>','Impending ','encroaching ','possible ','threatening ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3701,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(60,'The leader has the <i>unstinting</i> support of his party ','cautious ','uninspiring ','unsparing ','laudable ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3669,'Admin','0000-00-00 00:00:00','2020-07-05 09:58:58'),(61,'The <i>essence</i> of governance is to seek the good and well-being of the majority of the people ','characteristics ','importance ','Secret ','Goal','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3638,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(62,'The carpenter built a <i>commodious</i> wardrobe ','wide ','gigantic ','small ','spacious','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3677,'Admin','0000-00-00 00:00:00','2020-07-05 12:34:12'),(63,'The company is to <i>shed</i> three thousand staff this year ','Throw up ','placate ','lay off','demote ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3789,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(64,'A few years ago, nobody would have believed that the economy would <i>turn around </i>','change ','deteriorate ','improve ','stagnate ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3751,'Admin','0000-00-00 00:00:00','2020-07-05 20:28:43'),(65,'The man’s story sounded <i>plausible</i> to his audience ','credible ','entertaining ','fantastic ','credulous ','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3848,'Admin','0000-00-00 00:00:00','2020-07-05 11:32:58'),(66,'Before announcing his retirement, Ochima resolved to <i>settle an account with</i> the bank.','get  back at ','pay back all he owes ','close his account with ','retire his loans from ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3730,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(67,'He shared his room with a person whose behaviour was quite <i>nauseating</i> ','disgusting ','disrespectful ','disagraceful ','discouraging ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3783,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(68,'From what she said, one may <i>infer</i> that she does not like the course','agree ','deduce ','suppose ','realize ','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3753,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(69,'The party supporters <i>vilified</i> the Chairman for the role he played in the crisis that rocked the party ','impeached ','condemned ','challenged ','elected','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3657,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(70,'Publishing as a business venture has become a <i>hot potato</i> in Nigeria. ','unacceptable  ','unpleasant ','expensive                                                              ','profitable','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3661,'Admin','0000-00-00 00:00:00','2020-06-24 02:45:55'),(71,'The <i>cynics</i>  feared that the nation’s nascent democracy would fail','illusionists','pessimists','delinquents','critics','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3655,'Admin','0000-00-00 00:00:00','2020-07-05 12:34:12'),(72,'The nurse was in favour of <i>voluntary eutheanasia</i>','a sleeping pill','a major operation','a painless death','a simple operation','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3749,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(73,'There was a <i>glut</i> of oil on the market','an abundance of','an increase in','a variety of','an accumulation of','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3723,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(74,'Typist','refuse  (noun)','superb','propose','rebel (verb)','choose the option that has the same stress pattern as the given word.','','a','','utme','2003',3695,'Admin','0000-00-00 00:00:00','2020-07-05 11:24:59'),(75,'Cement','perfect (adjective)','include','interest','employ(noun)','choose the option that has the same stress pattern as the given word.','','b','','utme','2003',3641,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(76,'I shall find time for my ……… when I get …… with this difficult assignment.','Pat time /over','pass-time/over','pastime/through','pastime/through','choose the option that best completes the gap(s).','','d','','utme','2004',3688,'Admin','0000-00-00 00:00:00','2020-07-05 13:25:05'),(77,'Agbo says he is not afraid of ………','anybody','nothing','nobody','no one','choose the option that best completes the gap(s).','','a','','utme','2004',3611,'Admin','0000-00-00 00:00:00','2020-06-30 09:39:24'),(78,'It is …….. responsibility to look after their parents in old age.','theirs’','their','theirs','their’s','choose the option that best completes the gap(s).','','b','','utme','2004',3839,'Admin','0000-00-00 00:00:00','2020-07-02 19:40:21'),(79,'One needs to exemplify or ………. the aspect of the subject being discussed','supply','declare','satisfy','demonstrate','choose the option that best completes the gap(s).','','d','','utme','2004',3876,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(80,'……………his illness, Muhammad could not come to school.','with reference to','referring to','owing to','due to .','choose the option that best completes the gap(s).','','d','','utme','2004',3825,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(81,'After so many trials, the experiment………….','paid up','paid for','paid out','paid off','choose the option that best completes the gap(s).','','d','','utme','2004',3796,'Admin','0000-00-00 00:00:00','2020-07-06 10:19:49'),(82,'People dislike Mariam because she is ……………','trickful',' trickish','trickly','tricker','choose the option that best completes the gap(s).','','c','','utme','2004',3768,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(83,'The reporter said that the Honourable speaker………….. impeached ','is to be','might have been','may have being','will have been','choose the option that best completes the gap(s).','','b','','utme','2004',3745,'Admin','0000-00-00 00:00:00','2020-07-05 11:25:15'),(84,'Actually, he forgot the one to …………… the job was given.','whom','who','whomever','whoever','choose the option that best completes the gap(s).','','a','','utme','2004',3655,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(85,'You may not have heard the last word on the matter……..','may you have','haven’t you','have you','mayn’t have you?','choose the option that best completes the gap(s).','','c','','utme','2004',3679,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:59'),(86,'All God’s prophets were given the great……….to preach salvation to people.','commission','commition','commission','commission','choose the option that best completes the gap(s).','','d','','utme','2004',3826,'Admin','0000-00-00 00:00:00','2020-07-06 16:00:29'),(87,'Ali goes to the stadium regularly, but he …………… to the church for months.','hasn’t been','haven’t been','didn’t go','hadn’t been','choose the option that best completes the gap(s).','','a','','utme','2004',3795,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(88,'Each of the houses…………',' have got',' Have','has','were given a new look.','choose the option that best completes the gap(s).','','c','','utme','2004',3774,'Admin','0000-00-00 00:00:00','2020-06-23 18:57:03'),(89,'The minister addressed the workers to boost their…………',' Morale','morality',' mural',' moral','choose the option that best completes the gap(s).','','a','','utme','2004',3598,'Admin','0000-00-00 00:00:00','2020-06-23 11:21:26'),(90,'I don’t coming home, is he?......... he is isn’t.','Yes','No','won','now','choose the option that best completes the gap(s).','','b','','utme','2004',3758,'Admin','0000-00-00 00:00:00','2020-07-06 20:42:46'),(91,'………..as a federal capital only……….. the last twenty years.','has existed/for','existed/over','was existing/from','is existing/in','choose the option that best completes the gap(s).','','a','','utme','2004',3680,'Admin','0000-00-00 00:00:00','2020-07-05 19:58:22'),(92,'No teacher of honour would subject his student to any form of ……..','harassment','Harassment','harassment','harassment','choose the option that best completes the gap(s).','','b','','utme','2004',3686,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(93,'Each producer  is able to place a price on his product by considering its…………','worth','choice','judgement','assessment','choose the option that best completes the gap(s).','','a','','utme','2004',3724,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(94,'The police claim that a number of stolen cars…………. recovered.','has being','is being','has been','have been','choose the option that best completes the gap(s).','','c','','utme','2004',3728,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(95,'The storm………….. Havoc on several buildings in the village.','wreaked','wrecked','made','did','choose the option that best completes the gap(s).','','a','','utme','2004',3689,'Admin','0000-00-00 00:00:00','2020-06-25 16:33:40'),(96,'The chairman refused to shake…………. with the secretary','hand','his hand','hands','his hands','choose the option that best completes the gap(s).','','c','','utme','2004',3724,'Admin','0000-00-00 00:00:00','2020-07-05 09:02:47'),(97,'The poor widow who could not buy the clothes was seen…….her wool into……….yesterday','to spin/yards','spinning/yarn','making/tailoring','to spill/clothes','choose the option that best completes the gap(s).','','b','','utme','2004',3671,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(98,'He not only looked after the children when their parents died, ………..sponsored their education to university.','but also','also he','but he','also','choose the option that best completes the gap(s).','','a','','utme','2004',3766,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(99,'His supporters railed round him in moments of …………..','criticism','Crisis','acrimony','disillusionment.','choose the option that best completes the gap(s).','','b','','utme','2004',3793,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(100,'The interpreter was wrong because he gave the congregation a ………… translation of the pastor’s statement.','literal','unilateral','literary','lateral','choose the option that best completes the gap(s).','','a','','utme','2004',3695,'Admin','0000-00-00 00:00:00','2020-07-05 20:28:43'),(101,'Ju<u>dge</u>','gear','spinach','pleasure','camouflage','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','d','','utme','2004',3755,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(102,'caus<u>ed</u>','chanced','frost','released','realized','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','b','','utme','2004',3709,'Admin','0000-00-00 00:00:00','2020-07-05 13:04:57'),(103,'mis<u>chi</u>ef ','Christmas','ritual','Brochure','Champagne','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','a','','utme','2004',3577,'Admin','0000-00-00 00:00:00','2020-07-05 22:09:41'),(104,'Everyone was ready to play the evil’s advocate in the impeachment controversy.','everyone was willing to speak against the impeachment to encourage discussion on it.','everyone was willing to defend an unpopular point of view concerning the impeachment.','everyone was willing to fight for the defenceless citizens no matter the consequences.','everyone was willing to be an evil genius in the controversy','that best explains the information conveyed in the sentence.','','a','','utme','2004',3614,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:39'),(105,'Adamu’s father is a key figure in that ministry','The ministry trusts Adamu’s father as a central figure','Adamu’s father is a figurehead in the ministry','Adamu’s father’s position is essential in the ministry.','Adamu’s father keeps the key to the ministry.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3799,'Admin','0000-00-00 00:00:00','2020-06-24 02:46:11'),(106,'The government warns that drink-driving is punishable under the law.','a drunkard driving can be punished','driving while drunk is an offence','driving while drinking is an offence','drinking and driving is an offence.','that best explains the information conveyed in the sentence.','','a','','utme','2004',3658,'Admin','0000-00-00 00:00:00','2020-07-06 20:42:46'),(107,'In many countries, democracy is ostensibly being practiced.','democracy is indeed being practiced  in many countries','many countries have effective democracy.','many countries have democracy in practice','democracy is apparently practice in many countries.','that best explains the information conveyed in the sentence.','','d','','utme','2004',3820,'Admin','0000-00-00 00:00:00','2020-06-24 00:28:06'),(108,'The investigators stated clearly that they had reached a dead end in their scrutiny of suspects in the murder case.','the investigators did not know what to do with the suspect’s murder','The investigators had evidence to sentence the suspects to death in the end.','there was no further progress in the investigation of the murder suspects.','the end had come for the suspects in the murder case.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3692,'Admin','0000-00-00 00:00:00','2020-07-04 20:54:08'),(109,'',' Secondment','Orthopaedic',' oriental','photographic','choose the option that has a different stress pattern from the others.','','a','','utme','2004',3700,'Admin','0000-00-00 00:00:00','2020-06-22 19:01:14'),(110,'','ratify',' famous',' result',' taxi','choose the option that has a different stress pattern from the others.','','c','','utme','2004',3724,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(111,'Sailors are unusually <i>dauntless</i> in their exploits','selfless','ruthless','excited','frightened','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3675,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(112,'The <i>potency</i> of the drug has been acknowledged.','action','loss','inefficacy','power','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3582,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(113,'The dictator wanted <i>tractable</i> men in his cabinet.','reliable','intelligent ','tough','unruly','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3710,'Admin','0000-00-00 00:00:00','2020-07-06 10:31:55'),(114,'After the war, the victors became increasingly <i>vindictive</i>','friendly','vociferous','arrogant','treacherous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3862,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:59'),(115,'The ship was <i>imperiled</i> by high winds','piloted','destroyed','deceived','saved','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3741,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(116,'Beauty queens sometime wear <i>outlandish</i>  dresses.','beautiful','flashy','familiar','attractive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3680,'Admin','0000-00-00 00:00:00','2020-06-24 00:31:00'),(117,'The journalist said he was working <i>freelance</i>','tirelessly','satisfactorily','without a pay','dependently','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3714,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(118,'My father’s presentation was rather <i>causal</i>','formal','vital','informal ','divisive','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3696,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(119,'The flying Eagles put up a <i>plucky</i> defence against their opponents.','strong','weak','careless','tactful','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3718,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(120,'The man who scare the girl was a bit <i>deranged</i>','sane ','amorous','crazy','dangerous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3654,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(121,'The injured man is determined to <i>get back</i> at his assailant.','attack','identify','visit','forgive','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3804,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(122,'The player <i>writhed in pain</i> after the fall.','remained still','cried out','walked out','shook violently','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3782,'Admin','0000-00-00 00:00:00','2020-07-04 06:19:00'),(123,'The noise of the fan <i>unnerved</i>  the star player.','refreshed','confused','helped','calmed','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3757,'Admin','0000-00-00 00:00:00','2020-07-04 16:22:16'),(124,'The team got <i>an ecstatic</i> welcome from the crowd.','An unexpected','a joyous','a cold','a thunderous','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3696,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:59'),(125,'We found a <i>shady</i> place for the display.','an open','an unsafe','a stuffy','an enclosed','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3639,'Admin','0000-00-00 00:00:00','2020-07-07 00:32:25'),(126,'expostulate','exposTUlate','expostuLATE','EXpostulate','exPOStulate','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2004',3617,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(127,'sufficiency','sufFIciency','SUFficiency','sufficienCY','suffiCIENcy','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2004',3786,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(128,'The town was in such a <i>turmoil</i> that the dance was called off.','mourning state','rainy state','state of darkness','state of confusion','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3742,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(129,'The festivals create in the people a feeling of price in the cultural <i>heritage</i>  ','history','heirloom','legacy','possession','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3657,'Admin','0000-00-00 00:00:00','2020-06-24 01:21:07'),(130,'<i>Funnily enough,</i> the priest prayed for the robber who shot him.','Timidly','Unexpectedly','Disappointingly','Fearlessly.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3574,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(131,'The presence of the captain makes the sailors <i>ill at ease</i>.','uncomfortable ','sickly ','impatient','easily ill','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3667,'Admin','0000-00-00 00:00:00','2020-07-05 09:57:53'),(132,'The press describe the efforts of the government in <i>pejorative</i> terms.','critical','contemptible','palpable','superlative','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3663,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(133,'Okonkwo manages his household <i>with a heavy hand.</i>','like a powerful dictator','using the cane on every occasion','without tolerating weakness','like a heavy weight champion.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3799,'Admin','0000-00-00 00:00:00','2020-06-22 21:24:04'),(134,'The school’s badge is the <i>insignia</i> of office for all the prefects in the school.','Power','symbol','seal','recognition','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3683,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(135,'Ibro shows enough <i>liberality</i>  with his meager income.','generosity','frugality','prodigality','insensitivity','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3678,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(136,'It is a <i>misnomer</i> to call three thousand naira a living wage.','an incontrovertible assertion','an appropriate term','a wrong description','a mishmash','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3757,'Admin','0000-00-00 00:00:00','2020-07-05 13:36:55'),(137,'His plans <i>boomeranged</i> on him','bounce','fell','catapulted','backfired','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3704,'Admin','0000-00-00 00:00:00','2020-07-04 06:19:00'),(138,'The manager’s knowledge of the strike is of <i>the utmost</i>  importance.','standard','genuine','paramount','basic','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3665,'Admin','0000-00-00 00:00:00','2020-06-18 18:17:39'),(139,'There has been a <i>downturn</i> in the affairs of the company.','a massive increase','little progress','a turn-around','a decline','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3664,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(140,'The <i>mottled</i> skin of a person with HIV indicates an advance stage  of its development.','Brown ','spotted','scaly','pimply','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3744,'Admin','0000-00-00 00:00:00','2020-06-27 21:59:39'),(141,'In spite of constant financial support from his father, Udenyi treats his studies with considerable <i>levity</i>.','seriousness','enthusiasm ','wastefulness','lassitude','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3788,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(142,'The prosecutor was fully able to <i>substantiate</i> the charge.','expatiate on','prove','dismiss','weaken','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3757,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(143,'The teacher wants MY pen.','Does the teacher want his pen?','What does the teacher want?','Does the teacher want your ruler?','Who wants my pen?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','a','','utme','2004',3756,'Admin','0000-00-00 00:00:00','2020-07-06 16:01:47'),(144,'The student BOUGHT the book.','Who bought the book?','Did the student steal the book?','What did the student buy?','How will the student get the book?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','b','','utme','2004',3764,'Admin','0000-00-00 00:00:00','2020-07-05 20:28:43'),(145,'n<u>i</u>ne','pint','gill','pin','click','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2004',3694,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:06'),(146,'b<u>ea</u>r','beer','steer','rare','fear','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','d','','utme','2004',3711,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(147,'',' Circulation','eleven',' impossible','criticism','choose the option that has the stress on the first syllable.','','d','','utme','2004',3782,'Admin','0000-00-00 00:00:00','2020-07-06 20:25:16'),(148,'','bachelor','condemn',' afternoon','intact ','choose the option that has the stress on the first syllable.','','a','','utme','2004',3819,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:04'),(149,'',' foul','tout','owl','foe','choose the option that has a different vowel sound from the others.','','d','','utme','2004',3784,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(150,'','alter',' water',' pot','hall','choose the option that has a different vowel sound from the others.','','c','','utme','2004',3674,'Admin','0000-00-00 00:00:00','2020-07-05 19:58:22'),(151,'If the rain hadn’t fallen, we wouldn’t have missed the match.','The rain is falling, so we will miss the match.','The rain fell, so we didn’t watch the match','The rain fell, so we watched the match','The rain didn’t fall, so we didn’t watch the match.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3839,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(152,'The class was tired of the new boy jawing away all the time.','He bit off people’s jaws','He was always chewing in the class.','He was always making trouble for the class','He talked continuously in the class','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3758,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(153,'The new Headmaster hoped that his men would pull together','He expected that the men would cooperate with him','He thought that the men would compose themselves at work','He was certain that they would resign en masse','He was certain that their condition would improve under him.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3799,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(154,'If the trader paid in full, his order was not pruned down.','The trader who made full payment did not have his order reduced','The trader who made some payment did not have his order delayed.','Unless the trader paid in full his order would be rejected.','As the trader did not increase his order, he did not need to pay in full','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3755,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(155,'The men were not pawns in someone else’s political game.','The action they executed was their idea','The men used someone else’s plain','They were used by someone’s political game','They love playing political games','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(156,'The crisis ended as suddenly as it began','The crisis ha suddenly as it began','The crisis will not end suddenly','The crisis stopped almost immediately','The crisis will stop immediately.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3771,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(157,'One thing I will not be complaining about in my new job is a lack of excitement','The job is bad  ','The job is exiting','The job is not too exciting','The job has been previously done','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3747,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(158,'The Governor parried all the questions put to him by the journalist.','The Governor answered all the questions brilliantly','The Governor evaded all the questions','The Governor failed all the questions','The Governor mastered all the questions','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3800,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(159,'if I visited England, I might go to Manchester City ','When I go to England, I could go to Manchester City','Whenever I visit England, I must go to Manchester City','I did not go to England and could not go to Manchester City','I could not visit Manchester City because I did not want to go to England.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3843,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(160,'The man puts his foot down whenever he is convince of his action','He desires to assert his will in the situation','He makes his mark wherever he goes','His attitude demonstrates someone who likes  to oppress others around him','He demonstrates firmness of character','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3721,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(161,'The teacher recounted two events that were <i>analogous</i>  with  each other','similar with','Advantageous to','distant from','different from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3854,'Admin','0000-00-00 00:00:00','2020-07-05 12:25:49'),(162,'The Principal was filled with <i>scorn</i>  when we gave  our reason for coming late','contempt','sympathy ','anger','pity','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3859,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:59'),(163,'After fifty years, he could not find anyone who was <i>contemporary</i> with him at college','strange to','friendly with','belonged to','contented against','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-07-05 12:34:12'),(164,'Idris gives me a <i>sour</i> look every time I pass by him','bad','satisfactory','friendly','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3790,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(165,'The officer was given an <i>invidious</i> task','vivid','cruel','pleasant','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3840,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(166,'The views of the plateau are in stark contrast to the <i>workaday</i> cottages below','ordinary an uninteresting','beautiful an interesting','comfortable an fascinating','ugly an unfascinating','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3743,'Admin','0000-00-00 00:00:00','2020-07-05 20:28:43'),(167,'The President can afford to dispense with some of his <i>henchmen</i>','detractors','body guards','sycophants','advisers','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3833,'Admin','0000-00-00 00:00:00','2020-07-05 08:42:31'),(168,'Asabe bought a <i>glossy</i>  pair of shoes ','smooth and shiny','rough an dull','smooth and shining','rough an gummy','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3927,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(169,'Manu is hard to convince because he is an <i>opinionated</i>  person','an objective','an imperative','a subjective','a discursive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3809,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(170,'Some people consider the leather uphoistery and thick rugs a bit <i>sumptuous</i>  ','expensive','desirable','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3711,'Admin','0000-00-00 00:00:00','2020-07-06 10:19:49'),(171,'The dramatist provided as satisfactory <i>denouement</i>  to the play','audition','climax','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3851,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(172,'Many Nigerians are <i>wary</i> of night journeys','worried about','unscarred of','satisfied with','troubled about','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3765,'Admin','0000-00-00 00:00:00','2020-06-20 18:04:59'),(173,'The proprietor accuse Uche of silently<i> acquiescing</i>  to the students’ demands','submitting to','adjusting','compromising on','resisting','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3877,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(174,'No wonder Sikemi later became a detective; she has been very <i>observant </i>','curious','perceptive','inductive','inquisitive','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3816,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(175,'Nigeria has been playing a <i>vital role</i> in the political an economic development of Africa','creditable','crucial','respectable','laudable','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3713,'Admin','0000-00-00 00:00:00','2020-07-04 06:19:00'),(176,'Emeka’s painting was <i>so realistic</i>  that it could almost have been a photograph','picture square','concrete','lively','authentic','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3868,'Admin','0000-00-00 00:00:00','2020-07-05 13:04:57'),(177,'<i>Courteously</i>, Ade stood back to let his teacher go first through the door','patiently','politely','carefully','calmly','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3808,'Admin','0000-00-00 00:00:00','2020-07-05 09:02:47'),(178,'Many people use to lie in <i>poverty</i>','instability','want','difficult','the slums','choose the option nearest in meaning to the word or phrase  in italics ','','c','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(179,'<i>Accountability</i> is certainly a desirable quality in a politician','respectability','responsibility','courage','Diligence','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3786,'Admin','0000-00-00 00:00:00','2020-07-05 05:57:10'),(180,'The <i>common</i> practice among some media practitioners is to be sensational in their reporting','prevalent','rampant','ordinary','cogent','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3791,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(181,'That <i>fateful</i> decision change the company’s outlook in many ways.','wonderful','uncontrollable','disastrous','unsuccessful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3867,'Admin','0000-00-00 00:00:00','2020-07-05 11:32:58'),(182,'The accident victim received a <i>superficial</i> wound from the crash','a serious','a painless','an internal','an external','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3800,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(183,'The boxer <i>fizzled</i> out just in the sixth round','knocked out his opponent','showed off his talents','became tire out fought on spiritedly','surrendered rather disappointingly','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3728,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(184,'The manager describe Mfon as a man of vehement <i>character</i>','weak an uninterested','strong an insistent','troublesome an noisy','clever and helpful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3727,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(185,'Obi’s dog is old but still <i>lively</i>','attractive','howling','barking','frisky','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3805,'Admin','0000-00-00 00:00:00','2020-07-05 12:25:49'),(186,'His <i>taciturnity</i> amaze everyone in one court during the legal tussle','obliviousness','reticence','sensibility ','pervasiveness','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3841,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(187,'The greatness of the creator of the universe is always <i>inexpressible</i> to many adherents of certain faiths','inevitable','wonderful','unbearable','ineffable','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3788,'Admin','0000-00-00 00:00:00','2020-07-05 11:32:58'),(188,'We <i>made a pile</i> in the business deal','lost a lot of money','earned a lot of money','broke even        ','cut corners','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3738,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(189,'Yesterday, my mother asked me.... ',' If I am tired? ','are you tired?',' whether was I tired?','If I was tired','choose the option that best completes the gap(s)','','d','','utme','2005',3787,'Admin','0000-00-00 00:00:00','2020-06-22 18:00:19'),(190,'The Bank Manager assured us that there was nothing to worry about','as regard to the loan ','with regards to the loan','in regard of the loan  ','with regard to the loan','choose the option that best completes the gap(s)','','b','','utme','2005',3875,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(191,'The first prize was','a carved wooden, attractive ','a wooden attractive carved   ',' an attractive carved wooden   ','a carved attractive wooden tray ','choose the option that best completes the gap(s)','','c','','utme','2005',3843,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(192,'Tsadu always cautions that difficult jobs should be done','step from step ','step by step','steps after steps    ','steps by steps','choose the option that best completes the gap(s)','','b','','utme','2005',3856,'Admin','0000-00-00 00:00:00','2020-06-28 16:15:50'),(193,'I was often angry …… Oche since he differed…   me often','with/to ','about/with   ','against/from','with/with','choose the option that best completes the gap(s)','','d','','utme','2005',3736,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(194,'I am writing to you for ……..  reasons','concerned ','several','plenty ','myriad of','choose the option that best completes the gap(s)','','b','','utme','2005',3898,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:58'),(195,'As we sat ………the silence, my eyes……..  the room','under/looked  ','over/surrounded ',' in/roamed',' along/observed','choose the option that best completes the gap(s)','','c','','utme','2005',3772,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(196,'Is it true that Okoro……..  when the gates were closed?','had returned','would return  ','should return    ','would have returned','choose the option that best completes the gap(s)','','a','','utme','2005',3875,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(197,'The public library has stopped………. books to readers','borrowing','lending ','renting ','loaning','choose the option that best completes the gap(s)','','a','','utme','2005',3696,'Admin','0000-00-00 00:00:00','2020-07-05 13:25:05'),(198,'We won\\'t leave until it ……..  Raining','will stop ','stopped','stops    ','has stopped','choose the option that best completes the gap(s)','','c','','utme','2005',3830,'Admin','0000-00-00 00:00:00','2020-07-05 11:32:58'),(199,'The …………   event marked the beginning of a new life for the entire cabinet','historical  ','historicity of the','historic ','history of the','choose the option that best completes the gap(s)','','c','','utme','2005',3748,'Admin','0000-00-00 00:00:00','2020-07-05 20:28:43'),(200,'The train ………. before I arrived','was leaving   ','has left','had left   ','would leave ','choose the option that best completes the gap(s)','','c','','utme','2005',3741,'Admin','0000-00-00 00:00:00','2020-07-05 10:04:45'),(201,'You can travel on your own ……….. ?','isn\\'t it','can\\'t you   ','won\\'t you  ','shan\\'t you','choose the option that best completes the gap(s)','','b','','utme','2005',3753,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:57'),(202,'The man is refurbishing the flat with a view to ……. it.','sell   ','selling ','have sold ','be selling  ','choose the option that best completes the gap(s)','','d','','utme','2005',3666,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(203,'The Secretary-General was shocked at the number of…….','child\\'s soldiers   ','childish soldiers  ','children soldiers ','child soldiers','choose the option that best completes the gap(s)','','d','','utme','2005',3770,'Admin','0000-00-00 00:00:00','2020-07-05 09:02:47'),(204,'In spite of Shade\\'s good looks, her hair is always………','unkept','unkempt   ','unwashed','uncared for','choose the option that best completes the gap(s)','','b','','utme','2005',3779,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(205,'By the end of the football match today, we ……. the best player','could have known  ','might have known','will have known ','would have known ','choose the option that best completes the gap(s)','','d','','utme','2005',3854,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(206,'It is African for a younger person to show……..to elders','understanding ','indifference ','deference','satisfaction ','choose the option that best completes the gap(s)','','c','','utme','2005',3737,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(207,'A nursery rhyme is used to teach pupils how to spell the word','hipoppotemus','hippoppotemus','hipoppotamus ','hippopotamus','choose the option that best completes the gap(s)','','d','','utme','2005',3688,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(208,'b<u>ee</u>r','bear',' pear ',' fair',' pier','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','d','','utme','2005',3746,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(209,'g<u>uar</u>d','gourd','guide','argue','chat','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','c','','utme','2005',3864,'Admin','0000-00-00 00:00:00','2020-07-06 12:33:08'),(210,'l<u>u</u>ck','lock','lack','brother','turn','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','a','','utme','2005',3765,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(211,'fi<u>l</u>m','salt','walk','pslam','chalk','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','a','','utme','2005',3863,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(212,'heal<u>th</u>y    ','father','path','they','that','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2005',3765,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(213,'E<u>n</u>glish','single','impugn','ink','orange','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2005',3795,'Admin','0000-00-00 00:00:00','2020-06-28 16:15:50'),(214,'jurisprudence','JUrisprudence','juRISprudence',' jurisPRUdence','jurispruDENCE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3719,'Admin','0000-00-00 00:00:00','2020-07-05 07:02:05'),(215,'suburbanite','SUburbanite','suBURbanite','  suburBAnite','suburbaNITE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3812,'Admin','0000-00-00 00:00:00','2020-06-26 23:44:55'),(216,'departmentalize','departMENtalize         ','dePARTmentalize     ','DEpartmentalize','departmenTAIize','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','d','','utme','2005',3758,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(217,'refuse(noun)','reform   ','intact   ','obscure','phantom','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(218,'downtrodden','downgrading','prescribing','functional','internal','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3909,'Admin','0000-00-00 00:00:00','2020-07-05 09:36:55'),(219,'','interpreter',' remarkable','  impossible ','criticism','choose the option that has a different stress pattern from the others','','a','','utme','2005',3892,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(220,'','  impound','canoe','  subject(verb)',' knowledge','choose the option that has a different stress pattern from the others','','d','','utme','2005',3777,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(221,'Your mother CAN cook the meal',' Who will cook the meal?','Can my father cook the meal?','Isn\\'t my mother able to cook the meal7','What can my mother do?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','c','','utme','2005',3837,'Admin','0000-00-00 00:00:00','2020-07-06 10:31:55'),(222,'The EAGLES won the match','Did the Eagles lose the match?','Who won the match?','What did the Eagles win?','Did the Eagles win the match?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','b','','utme','2005',3827,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(223,'The police claim that a number of stolen cars…… recovered ','have been ','has been  ','has being',' have being ','choose the option that best completes the gap(s).','','b','','utme','2006',3775,'Admin','0000-00-00 00:00:00','2020-06-24 00:44:19'),(224,'     ………….  been there to look for her several times without success.','He\\'ll','He’s  ','Is he ','He is','choose the option that best completes the gap(s).','','b','','utme','2006',3693,'Admin','0000-00-00 00:00:00','2020-06-30 09:36:59'),(225,' Until he lost the election, Agbo…………… to be the Student Union president.','had been hoping ','has been hoping   ','would have hoped   ',' has hoped ','choose the option that best completes the gap(s).','','b','','utme','2006',3809,'Admin','0000-00-00 00:00:00','2020-06-24 04:44:01'),(226,'The old man was rushed to hospital when his blood  pressure dropped to a ……..  level','dangerously lowly','dangerous lowly ',' dangerously low',' dangerous low','choose the option that best completes the gap(s).','','c','','utme','2006',3694,'Admin','0000-00-00 00:00:00','2020-07-05 14:37:47'),(227,'If he ……… for admission, I am sure he would succeed','will apply ','applied ','had applied ','has applied','choose the option that best completes the gap(s).','','c','','utme','2006',3621,'Admin','0000-00-00 00:00:00','2020-07-05 06:07:11'),(228,'The ……….   robber showed no mercy during the attack. ','loquacious ','senseless ','ruthless ','benevolent','choose the option that best completes the gap(s).','','c','','utme','2006',3873,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(229,'Did you have ……… when you went to visit the medical doctor? ','diarrhea ','diarrhea','diarhoea  ','diarrhea ','choose the option that best completes the gap(s).','','a','','utme','2006',3695,'Admin','0000-00-00 00:00:00','2020-06-26 00:04:04'),(230,'Your performance will improve if you…….  Hard','are practicing ','practical ','would practice ','practise','choose the option that best completes the gap(s).','','b','','utme','2006',3702,'Admin','0000-00-00 00:00:00','2020-07-05 12:23:51'),(231,'The brave hunter killed the ………… in the forest ','big spitting cobra black','Black big spitting cobra ','big black spitting cobra ','big spitting black cobra ','choose the option that best completes the gap(s).','','c','','utme','2006',3657,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(232,'He wrote to you,……….  ?','hadn’t he ','wouldn’t  he ','didn’t he','hasn’t he','choose the option that best completes the gap(s).','','c','','utme','2006',3695,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(233,'The clubs were not…….. on a solid ethical base ','funded','found ','created ','founded ','choose the option that best completes the gap(s).','','d','','utme','2006',3684,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(234,'I watched him as he……  the hole','dug ','digs','is digging ','dugged','choose the option that best completes the gap(s).','','a','','utme','2006',3618,'Admin','0000-00-00 00:00:00','2020-06-24 01:21:27'),(235,'His father hardly misses the news because he goes about with his………..  Radio','pointable ','potable ','potable','portable','choose the option that best completes the gap(s).','','d','','utme','2006',3726,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(236,'The investigation Commission has treated all the …… submitted to it by the warring factions','protests ','petitions ','applications','enquires ','choose the option that best completes the gap(s).','','b','','utme','2006',3702,'Admin','0000-00-00 00:00:00','2020-07-05 13:25:05'),(237,'Olu brought his clothes and those of his………..','Senior brother’s','elder brothers','elder brother’s ','senior brother.','choose the option that best completes the gap(s).','','c','','utme','2006',3720,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:58'),(238,'Our neigbour was attracted by the ………. from my mother’s cooking ','flavour','stench','scent','aroma ','choose the option that best completes the gap(s).','','d','','utme','2006',3750,'Admin','0000-00-00 00:00:00','2020-07-06 12:33:08'),(239,'Everybody is allowed to ………. his views on state matters ','Air ','hear ','show ','share ','choose the option that best completes the gap(s).','','a','','utme','2006',3812,'Admin','0000-00-00 00:00:00','2020-07-06 14:14:06'),(240,'Despite all preparations, the wedding did not …..','come along ','come by','come on ','come off','choose the option that best completes the gap(s).','','d','','utme','2006',3724,'Admin','0000-00-00 00:00:00','2020-07-06 20:25:16'),(241,'For beating ……. his course mate, Agbaji was……… from the university.','up/rusticated ','on/expelled','at/removed ','away/sent out ','choose the option that best completes the gap(s).','','a','','utme','2006',3741,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(242,'We have been living peacefully here but……….. hear rumours of war.','again ','slowly','occasionally ','eventually','choose the option that best completes the gap(s).','','c','','utme','2006',3793,'Admin','0000-00-00 00:00:00','2020-07-05 07:35:21'),(243,'Genealogy ','GeneaLOGY','geneAlogy','geNEalogy ','GEnealogy ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','b ','','utme','2006',3746,'Admin','0000-00-00 00:00:00','2020-07-06 03:08:11'),(244,'Catholicism ','caTHOlicism ','catholiCism','CAtholicism ','cathoLIcism ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2006',3678,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(245,'','ability ','Registration ',' quadruplicate ','revivalist ','choose the option that has a different stress pattern from the others. ','','a','','utme','2006',3775,'Admin','0000-00-00 00:00:00','2020-06-24 00:30:46'),(246,'','competent ','represent ',' syllabus ','quality ','choose the option that has a different stress pattern from the others. ','','b','','utme','2006',3752,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(247,'apparent ','arrested ','telephone ','paragraph ','appetite ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3596,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(248,'Unfair ','insight ','towards ','first-class','instant ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3812,'Admin','0000-00-00 00:00:00','2020-07-03 11:49:20'),(249,'Dovetail ','proviso ','simplicity ','jargon ','psychiatry ','choose the option that has the same stress pattern as the given word.','','a','','utme','2006',3879,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(250,'',' Insult (noun)','prepare ',' provoke','pronounce ','choose the option that has the stress on the first syllable.','','a','','utme','2006',3700,'Admin','0000-00-00 00:00:00','2020-06-22 17:54:43'),(251,'','Frequent (verb)','mature ','madam','convict (verb)','choose the option that has the stress on the first syllable.','','c','','utme','2006',3658,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(252,'In our college, the regulations concerning resists are a grey area','The regulations have just been revised','The regulations have often been ignored','The regulations are perfectly clear','The regulations are not very clear.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3722,'Admin','0000-00-00 00:00:00','2020-07-06 20:44:05'),(253,'Ogiri takes after his father, he fawns upon anyone with influence.','Like his father, Ogiri likes to flatter people with influence in society','Like his father, Ogiri hates influential people','Ogiri. who always follows his father, tries to act like an influential man','Ogiri, who looks like his father, follows rich and influential people about','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3754,'Admin','0000-00-00 00:00:00','2020-06-22 20:27:47'),(254,'You are to write a report and give it to the security office','After writing your report, give it to the security office','You are writing a report, as the security office directed','The report you are writing should be given to the security office','You have been ordered to write a report, which you wilt give to the security office ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3685,'Admin','0000-00-00 00:00:00','2020-07-05 13:25:05'),(255,'After the war the victors became Increasingly vindictive ','Vengeful attacks were Incessantly carried out on those who lost the war ','  Friendly measures were taken to heal the wounds','Repressive measures were taken against those who lost the war','Those who won the war became treacherous ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:06'),(256,'The prefect reeled off the names of all the students who Drake the library law.','The prefect gave a disjointed list of the students in the law library.','  The prefect omitted the names of the students who broke into the law library ','The prefect submitted a complete list of the students who stole library books','The prefect gave an accurate list of the students who disobeyed library regulations.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3604,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:59'),(257,'1 owe you far less than you owe me','My debt to you is greater than yours to me','Your debt is not much greater than mine','What we owe each other Is approximately the same','I owe you something, but you owe me much more','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3679,'Admin','0000-00-00 00:00:00','2020-06-28 20:49:15'),(258,'The dispute over land acquisition has now come a head','The problem has reached crisis proportions ','The problem has now been referred to the headquarters ','Because of the dispute, land acquisition has now been halted ','The problem has now been solved ','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3692,'Admin','0000-00-00 00:00:00','2020-07-05 12:25:49'),(259,'He has hardly spoken when the bell rang ','He found it difficult to speak, and then the bell rang','When the bell rang, he was still speaking ','The bell rang very soon after he spoke','He spoke in a harsh manner and the bell rang ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3665,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(260,'I think she takes her guardian’s support for granted ','Her guardian has been helping her for a long time, and she is very grateful to him. ','She wants her guardian to grant her more support.','She thinks her guardian will no longer support her as he has been doing.',' Her guardian has been helping her for a long time, but she does not show enough gratitude. ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3644,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(261,'The class has fallen in with the teacher\\'s plans','The class has ignored the plans','The class has rejected the plans',' The class has accepted the plans','The class has modified the plans','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3807,'Admin','0000-00-00 00:00:00','2020-07-06 03:08:11'),(262,'The move to expel the chairman was <i>sanctioned</i> by members of the party       ','unleashed  ','opposed ','supported',' initiated','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3724,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:04'),(263,'Because Jamiu is so <i>easily offended,</i> he was not considered for the post of headboy','Irritable    ','stubborn   ','troublesome ','docile','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3719,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(264,'The witness provided a <i>monstrous</i> account of the event','supportive  ','tragic','shocking ','verbatim','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3684,'Admin','0000-00-00 00:00:00','2020-07-05 08:42:31'),(265,'Adamu is rather <i>meddlesome</i> in dealing with his friends','impertinent ','intimidating ','quarrelsome',' uncaring','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3504,'Admin','0000-00-00 00:00:00','2020-06-30 09:20:53'),(266,'The commander said that the battle would be sustained, total and <i>relentless</i>','continuous ','brutal   ','fierce ','innocuous','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3732,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:04'),(267,'The government has announced its <i>preparedness for</i> the scheme','determination ','regret ','pleasure ','readiness','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3641,'Admin','0000-00-00 00:00:00','2020-07-05 06:07:11'),(268,'The chairman advised the participants to follow <i>convention</i> in stating their points.','eloquence ','advice ','prudence ','tradition','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3671,'Admin','0000-00-00 00:00:00','2020-06-23 21:14:40'),(269,'His discovery of the vaccine became a <i>quantum leap</i> in the search for a scientific cure for the illness','victorious battle ','slow but steady step',' great improvement   ','fast but sure step','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3659,'Admin','0000-00-00 00:00:00','2020-06-24 08:56:15'),(270,'After the meeting, I read a <i>leer</i> on his face as he looked at the woman.   ','satisfying meaning ','bad look ','pleasant disposition ','poor smile','choose the option nearest in meaning to the word or phrase in italics','','b','','utme','2006',3745,'Admin','0000-00-00 00:00:00','2020-07-06 12:33:08'),(271,'His loss suddenly became <i>redeemable</i> ','Incurable  ','exclusive','recoverable ','repulsive','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3703,'Admin','0000-00-00 00:00:00','2020-07-05 09:57:53'),(272,'The plan has gone <i>awry</i>','wide   ','wrong   ','well    ',' wild','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3709,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(273,'The judge emphasized his <i>morbid</i> desire in his judgement','inordinate ','uncritical ','ravenous ',' Unpleasant','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3690,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(274,'77. The recommended novel has a <i>convoluted</i> theme',' a simple ','an attractive ','a disgusting ','a complicated ','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3586,'Admin','0000-00-00 00:00:00','2020-06-22 19:01:14'),(275,'The party men <i>reveled</i> all night when the election results were announced.','Celebrated ','mourned','fought ','discussed ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3629,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(276,'He is <i>prolific</i>  writer ','a very productive','a well-known','a clever ','an influential ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3777,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(277,'h<u>ur</u>t','hut ','girl ','hate   ','hot','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3697,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(278,'c<u>o</u>ck','cop   ','cope ','cork ','cup','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3647,'Admin','0000-00-00 00:00:00','2020-06-24 02:26:33'),(279,'s<u>ay</u>s','fierce  ','dam','wet','rain','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','c','','utme','2006',3770,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(280,'c<u>h</u>aracter','unique   ','charade   ','arch   ','church ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3817,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(281,'  bush<u>es</u>','shapes ','shoes  ','rapes   ','rakes','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3745,'Admin','0000-00-00 00:00:00','2020-07-04 14:10:08'),(282,'gara<u>ge</u>','gear   ','sure   ','pressure ','measure','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2006',3738,'Admin','0000-00-00 00:00:00','2020-07-06 20:42:46'),(283,'The usually hostile crowd was captivated by the .player\\'s <i>winsome</i> attitude','obnoxious  ','friendly  ','colourful  ','drunken','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3610,'Admin','0000-00-00 00:00:00','2020-06-26 11:13:16'),(284,'The reporter made a <i>masterly</i> analysis of the situation','an unskilful ','a mistaken ','an indepth','a proper','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3747,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(285,'He has no reason to <i>have his heart in his mouth</i>',' think negatively',' feel guilty ',' be afraid',' be confident','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3768,'Admin','0000-00-00 00:00:00','2020-07-02 11:34:10'),(286,'That little boy has become quite <i>chubby</i>','thin    ',' intelligent   ','huge    ','tall','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3677,'Admin','0000-00-00 00:00:00','2020-07-04 20:54:08'),(287,'Akpan was able to <i>douse</i> the flames with the new piece of equipment','reduce ','extinguish ','ignite ','reinforce','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3659,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(288,'He gave himself up by his <i>plebeian</i> tastes','robust ','voracious ','patrician   ','laughable','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3750,'Admin','0000-00-00 00:00:00','2020-07-05 19:08:13'),(289,'<i>No sooner had</i> he arrived than it started to rain',' Long before ',' Seldom ','Simultaneously','Just before','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3708,'Admin','0000-00-00 00:00:00','2020-07-05 10:30:00'),(290,'The action was <i>premeditated</i>','unnecessary ','catastrophic ','unplanned ','uncoordinated','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3736,'Admin','0000-00-00 00:00:00','2020-07-06 12:33:08'),(291,'A <i>tentative</i> solution was provided','A convincing ',' provisional','An amicable ','A definite','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3638,'Admin','0000-00-00 00:00:00','2020-07-04 14:10:08'),(292,'The chief said he would use the power <i>inherent</i> in his office to stop the celebration',' unrelated to ',' common to ',' allotted to ',' impervious to','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3744,'Admin','0000-00-00 00:00:00','2020-06-23 20:21:38'),(293,'In our last play, Segun acted the <i>hero</i>','villain  ',' devil ','criminal ',' assassin','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3739,'Admin','0000-00-00 00:00:00','2020-07-06 03:08:11'),(294,'The police found a <i>conclusive</i> proof of the boy\\'s guilt','a corroborative ','A doubtful ','a consolatory',' an incriminating','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2006',3741,'Admin','0000-00-00 00:00:00','2020-06-20 18:05:46'),(295,'The point you have made is quite <i>apt</i>','illogical ','helpful ','irrelevant ','insensitive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3829,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(296,'The man drew a sword as people <i>congregated round</i> him','praised',' gathered round ',' mobbed ',' fled from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3783,'Admin','0000-00-00 00:00:00','2020-07-02 11:07:20'),(297,'The notice reads, No <i>cash</i> transactions in this hall\\'','money   ','gainful ','business ','cheque','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3746,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(298,' He <i>deprecated</i> the attempts made to unseat him.','despised','challenged    ','resisted','condemned','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3682,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:19'),(299,'The striking workers have vowed not to return to work until the decision is <i>reversed.</i> ','rescinded         ','dismissed','implemented    ','reverted. ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3765,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(300,'The police are not happy with the growing number of <i>depraved</i> people around the politician.','violent ','immoral ','indolent ','loquacious ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3687,'Admin','0000-00-00 00:00:00','2020-07-06 10:48:19'),(301,'The last criticism at the rally was made <i>in ignorance</i>','uniformed ','objective ','unimpeaccable','impeccable ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3586,'Admin','0000-00-00 00:00:00','2020-07-05 13:36:55'),(302,'The astute businessman neatly <i>fended</i> off questions off questions about his private life.','asked ','explained ','welcomed','sidestepped.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3635,'Admin','0000-00-00 00:00:00','2020-07-04 11:36:34'),(303,'We were warned not to indulge in <i>recriminations.</i>','counter-charges      ','indiscretions  ','accusation','frivolous allegations.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3707,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(304,'The shortage of petrol was a <i>perennial</i> problem','a recurring   ','a seasonal ','an annual','an incurable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3759,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(305,'The rest of the boys admire Olu\\'s <i>verve</i>','intelligence','work  ','handsomeness     ',' energy.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3729,'Admin','0000-00-00 00:00:00','2020-06-26 02:16:59'),(306,'He holds on firmly to his <i>hackneyed</i> view of life','wayward  ','principled',' obsolete','positive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3657,'Admin','0000-00-00 00:00:00','2020-07-02 11:27:13'),(307,'I visited Amina <i>umpteen times</i> in her college, but she never came to me','often   ',' seldom   ',' twice   ','occasionally.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3666,'Admin','0000-00-00 00:00:00','2020-06-28 18:34:03'),(308,'The debt the company incurred became rather <i>intolerable</i>. ','inevitable   ','unprecedented','insupportable ','dangerous.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3742,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(309,'The tax rebate was a <i>concession</i> given to the civil servants ','a donation ',' an allowance','an incentive  ','an emolument. ','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2007',3698,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(310,' <i>Beads</i> of sweat ran down Ngozi\\'s armpit','Pools','Springs   ','Ponds    ','Rivulets.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3834,'Admin','0000-00-00 00:00:00','2020-07-05 14:07:59'),(311,'The noise across the road  <i>drowned</i> the sound of the keyboard in my room',' neutralized ',' overshadowed','balanced   ','equalized.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3751,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(312,'Things may change soon, but at the moment our economic situation is <i>precarious.</i>',' redeemable','buoyant ','uncertain   ',' unattractive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3821,'Admin','0000-00-00 00:00:00','2020-07-06 20:42:46'),(313,'shoe<u>s</u>','horse','house','loss','reason','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2007',3757,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(314,'E<u>ngs</u>lish','end','thin','think','edge','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3776,'Admin','0000-00-00 00:00:00','2020-07-05 19:08:13'),(315,'clo<u>ths</u>e','thomas','three','they','mouth','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3753,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(316,'p<u>os</u>table','paw','pot','port','post','choose the option that has the same vowel sound as the letter(s) underlined.','','b','','utme','2007',3661,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:58'),(317,'bl<u>ues</u>','book','root','foot','look','choose the option that has the same vowel sound as the letter(s) underlined.','','d','','utme','2007',3778,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(318,'p<u>ears</u>','dear','year','there','near','choose the option that has the same vowel sound as the letter(s) underlined.','','a','','utme','2007',3753,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(319,'The refugees were received at the <i>transit</i> camp.','passage ',' permanent ','temporary ','nearby.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3673,'Admin','0000-00-00 00:00:00','2020-07-05 12:25:49'),(320,'The man paid a large sum to <i>redeem</i> his mortgaged property ','ransom ','acquire ','pawn ','recover.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3737,'Admin','0000-00-00 00:00:00','2020-07-06 10:48:19'),(321,'Lami and her husband are simply <i>munificent</i>','a wealthy   ','angry   ','happy  ','niggardly.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3800,'Admin','0000-00-00 00:00:00','2020-06-24 02:20:41'),(322,'Is it necessary for us to go?\\' she asked in her <i>shrill</i> voice ','angry ','quiet',' indistinct ','aggressive.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3626,'Admin','0000-00-00 00:00:00','2020-07-05 08:56:24'),(323,'The police demanded a <i>factual</i> account of the accident','a supportive  ','an uncorroborated','an admissible ','an undisguised.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3746,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(324,'The suggestions he made were very <i>unobtrusive</i>','forceful   ','helpful ','sincere    ','reasonable.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3718,'Admin','0000-00-00 00:00:00','2020-07-05 10:51:05'),(325,'Mr. Adeyemo is quite a <i>conceited</i> young man','a resourceful','a practical ','an experienced ','an unassuming.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3782,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(326,'The stadium was <i>seething</i> with people when we entered',' filled ',' crowded ','empty   ','noisy.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3751,'Admin','0000-00-00 00:00:00','2020-07-07 00:32:25'),(327,'The Vice-Chancellor <i>relinquished</i> power at the end of busterm ','abandoned   ','wielded  ','gave up',' clung on to.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3803,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(328,'The students were <i>undeterred</i> by the noisy lecture environment. ','frustrated  ','encouraged','discouraged','challenged.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3787,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(329,'For anything to do with academic work, he has a great  a <i>version</i>','conversion ','attention','contempt  ','predilection.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3715,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:58'),(330,'The study he carried out of the problem was quite <i>comprehensive</i>','detailed ',' sketch  ','inscrutable ','complete.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3719,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(331,'The man advised his wife to steer a <i>middle course</i> the argument between her and her employers','be recalcitrant  ','be unrepentant','be compromising','be unrelenting','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3801,'Admin','0000-00-00 00:00:00','2020-07-05 07:02:05'),(332,'Do not be <i>discouraged</i> by failure in life.','overjoyed','dissuaded','actuated ','disoriented.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3688,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(333,'Otokpa took after his late father who was a <i>tee totaller.</i>','a drunk ',' careless ','a disciplinarian ','sober','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3753,'Admin','0000-00-00 00:00:00','2020-07-05 13:50:08'),(334,'capitalism    ','capiTAIism   ','capitaLIsm','caPItalism ','CApitalism.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2007',3667,'Admin','0000-00-00 00:00:00','2020-07-05 19:50:42'),(335,'association ','aSSociation    ','associaTION','associAtion   ','Association.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2007',3817,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(336,'advertisement ','adVERtisement  ','advertiseMENT',' adverTISEment   ','ADvertisement.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2007',3736,'Admin','0000-00-00 00:00:00','2020-06-22 19:34:19'),(337,'',' intact  ',' integral ','negotiate ','about.','choose the option that has the stress on the first syllable.','','b','','utme','2007',3713,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(338,'','conduce   ',' renewal ','calendar ','reproduce.','choose the option that has the stress on the first syllable.','','c','','utme','2007',3702,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(339,'','understand   ','address ','afternoon ','taxi.','choose the option that has the stress on the first syllable.','','d','','utme','2007',3743,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:57'),(340,'',' superior ','surcharge','slaughter ','superman.','choose the option that has a different stress pattern from the others.','','a','','utme','2007',3566,'Admin','0000-00-00 00:00:00','2020-07-05 12:06:12'),(341,'','education ','individual ','agriculture','Cinderella.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3718,'Admin','0000-00-00 00:00:00','2020-07-05 10:04:45'),(342,'','cigarette ','European ','evacuee','expedite.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3555,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(343,'Because of his …… nature, Ayo was tricked out of his wrist watch. ','kind   ','pliable  ',' uncompromising ','uncalculating ','choose the option that best completes the gap(s).','','a','','utme','2007',3693,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(344,'He says he ............. find me a job, but will accommodate me.','could not ','was notable to','is not able to','cannot be able to ','choose the option that best completes the gap(s).','','a','','utme','2007',3729,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(345,'The idle steward could not see ....... on the wall, and he lost his job.','the writing','what will be written ','the handwriting','what is written','choose the option that best completes the gap(s).','','c','','utme','2007',3738,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(346,'... went to the stadium to watch a football match.','Amadi and me  ','Amadi and I   ','Me and  Amadi   ','Amadi and myself  ','choose the option that best completes the gap(s).','','b','','utme','2007',3679,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(347,' If he arrived late, everyone... …….. him','would have blamed   ','will blame ','would  blame ','must blame','choose the option that best completes the gap(s).','','a','','utme','2007',3714,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(348,'When they examined his body, they found that he ...',' had been dead  ',' had been dying  ','died  ','was dead','choose the option that best completes the gap(s).','','d','','utme','2007',3691,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(349,'The rain fell for days... ','on ending ','at ending ','on end  ','at end','choose the option that best completes the gap(s).','','c','','utme','2007',3700,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(350,'Yesterday in the hall, Ola said that ...........  his watch.','he had mislaid ','he had forgot ','ne has misplaced  ','he have lost ','choose the option that best completes the gap(s).','','a','','utme','2007',3637,'Admin','0000-00-00 00:00:00','2020-06-20 16:05:18'),(351,'Government should invest more in …...   training.','teacher\\'s  ','teacher  ','teachers  ','teachers','choose the option that best completes the gap(s).','','b','','utme','2007',3566,'Admin','0000-00-00 00:00:00','2020-07-07 00:32:25'),(352,'The team has benefitted from the coach\\'s ………. of experience. ','minefield ','reservoir ','wealth ','world ','choose the option that best completes the gap(s).','','c','','utme','2007',3790,'Admin','0000-00-00 00:00:00','2020-06-24 20:30:05'),(353,'There was …………. any traffic as he drove home.',' hardly ',' normally ','usually  ','no ','choose the option that best completes the gap(s).','','a','','utme','2007',3840,'Admin','0000-00-00 00:00:00','2020-07-06 10:19:49'),(354,'I look forward to ……. you next week.','seen ','seeing  ',' be seeing ','see ','choose the option that best completes the gap(s).','','b','','utme','2007',3748,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(355,'The girl cannot speak with a clear voice; she is always ………. ','blabbing ',' vociferating ',' stuttering ','gesticulating ','choose the option that best completes the gap(s).','','c','','utme','2007',3683,'Admin','0000-00-00 00:00:00','2020-07-06 02:26:29'),(356,'The politician …….. the family of the deceased.  ',' greeted  ',' condoled  ','wept over ','commiserated with ','choose the option that best completes the gap(s).','','d','','utme','2007',3744,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(357,'Making a phone call instead of paying a visit represents a …….  trend ',' sudden new major social  ',' new social sudden major',' new sudden major social','sudden social new major','choose the option that best completes the gap(s).','','c','','utme','2007',3730,'Admin','0000-00-00 00:00:00','2020-06-20 17:56:48'),(358,'Our soldiers are starting to zero …………. the enemy.','at    ','in on ',' unto ','on at ','choose the option that best completes the gap(s).','','b','','utme','2007',3488,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(359,'My father has been away on a journey but my mother  says she …...he …… this Friday.',' expects/would arrive','expected/win arrive ','expects/will arrive','expected/would arrive ','choose the option that best completes the gap(s).','','a','','utme','2007',3759,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(360,'Kola was fined; ……….. thieves were given a jail sentence.','the rest of the','rest ','the rest','rest off ','choose the option that best completes the gap(s).','','a','','utme','2007',3690,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:39'),(361,'I………  to pursue my education.','did not chance   ','did not have the opportunity','was not chanced    ','was not opportuned ','choose the option that best completes the gap(s).','','a','','utme','2007',3727,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(362,'Didn\\'t .......  draw your attention to the entry requirements?','anyone ','everyone ','everybody','no body','choose the option that best completes the gap(s).','','a','','utme','2007',3694,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(363,'He could not have rewarded them more handsomely.','He did not reward them very well,','He rewarded them well, and he was also a good- looking man.','He rewarded them very well.','He spoke to them in a very generous way.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3637,'Admin','0000-00-00 00:00:00','2020-07-06 02:26:29'),(364,'My advice to Tolu was: \\'Look before you leap.\\'','Tolu was advised to consider her opinions before reaching any decisions.','Tolu was advised to consider the possible consequences before taking action.','Tolu was advised to weigh her decisions by looking and leaping.  ','Tolu was advised to leap only after looking.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2007',3767,'Admin','0000-00-00 00:00:00','2020-07-05 19:58:22'),(365,'The official had allegedly been taking bribes.','Some people accused the official of taking bribes.','The official had been taking bribes without feeling any guilt.  ','It was proved that the official had been taking bribes ','The official accused some people of taking bribes.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3753,'Admin','0000-00-00 00:00:00','2020-06-26 00:04:04'),(366,'Emeka hardly ever holds with my view on good governance.','Emeka sometimes opposes my idea of good governance.  ','My view on what good Governance is conforms with that of Emeka.','Emeka never really supports my opinion of good governance ','Emeka may never hold a view which conflicts with mine on good governance.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3674,'Admin','0000-00-00 00:00:00','2020-07-05 13:50:08'),(367,'The next village is at least 30 kilometres away.','The next village is 30 kilometres away, possibly less. ','The next village is approximately 30 kilometres away.    ','The next village is   only 30 kilometres away.','The next village is 30 kilometres away, or possibly more.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3727,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(368,'The woman won\\'t have lived through the night. ','It was likely that the woman died before morning ','The woman survived her ordeal but not without some help .   ','From all indications, the woman was taken much worse, though she overcame her ordeal','The woman might not have lived if she hadn’t got the right support','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3710,'Admin','0000-00-00 00:00:00','2020-07-01 20:38:45'),(369,'There\\'s a door at either end of the building.','The building has two ends and two doors. ','The building has two ends, but only one doc\\'','The building has two ends, but I do not know which of the two has a door. ','The building has many ends each with a door.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3611,'Admin','0000-00-00 00:00:00','2020-06-24 02:48:08'),(370,'We have to iron out our differences at once.','We must clear up without delay our misunderstanding ','We must sure that our problems are eliminated  at all costs ','We have to settle our disagreement once and for all.   ','We have to solve some of our problems for now.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3620,'Admin','0000-00-00 00:00:00','2020-06-24 02:21:03'),(371,'There should be a level playing field for women entering  politics.  ','Women should not be allowed to enter  politics   ','Sports facilities should be provided for women entering politics.','Special privileges should be  given to women who want to enter politics','Men and women should be able to compete are political arena on an equal basis.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3678,'Admin','0000-00-00 00:00:00','2020-06-24 01:24:12'),(372,'The country is holding its first free elections for five years. ','The last time the country held free electors  was five years ago. ','The first free elections in the  country have now taken five years to conduct.','The country held elections five years ago but they were not free. ','There were elections in the country five years ago.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3790,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:35'),(373,'He needn\\'t have bought that new table ','It isn\\'t possible that he bought the table ','He bought the table, but it wasn\\'t necessary ','He didn’t buy the table because it wasn\\'t necessary','He doesn\\'t need to buy the table ','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3660,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(374,'Thanks to that phone call, I was able to obtain the visa,','in spite of that phone call, I obtained the vist ',' It was because of that phone call that the visa','I am grateful to whoever phoned me and I obtained the visa','If I had not recieved that phone call, I would not have obtained the visa.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3752,'Admin','0000-00-00 00:00:00','2020-07-07 00:32:25'),(375,'It is likely that the governor will exact his pound of flesh ','He will probably demand a hefty  bribe ','He will probably engineer the assassination of his opponents ','He will probably impose crushing new taxes','He will probably demand for and get all that is due to him ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3794,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(376,'It was too cold for him to go out ','He had a bad cold, and did not go out,','Although it was very cold, he still went out ','As it was very cold, he did not go out','He was afraid to go out that day.','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3647,'Admin','0000-00-00 00:00:00','2020-06-20 15:20:26'),(377,'Ado and Abu are always together these days. They must be up to something.','They must have reconciled after their quarrel','They are probably planning something bar','They are capable of a praiseworthy achievement ','They bear some responsibility for what has happened.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3685,'Admin','0000-00-00 00:00:00','2020-07-05 11:32:58'),(378,'He wants the meeting to be adjourned,','He wants the meeting closed ','He wants the meeting cancelled ','He wants the meeting to continue till another day ','He want  the meeting to another day without delay ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3685,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(379,'My father is one of the vociferous few challenging the company’s appointment of the manager.','My father is the one who shouts with a loud voice against the appointment of the manager','My father and others speak on behalf of the company against the appointment of the manager','My father is one of those objecting to the appointment of the manager','My father is agitated by the appointment of the manager','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3741,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(380,'The voyagers fetched up in Nigeria','the foreigners finally settled in Nigeria','The journey by sea ended in Nigeria','The travellers made a stopover in Nigeria','The discoverers landed in Nigeria after a long journey,','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3802,'Admin','0000-00-00 00:00:00','2020-07-05 11:32:58'),(381,'In those days in this school, everyone who spoke in a','language other than English paid a fine of ten naira','  Everyone of us paid a fine of ten naira because we did not always speak in English  ',' Everyone would pay a fine of ten naira for wanting to use a language other than English ','Those who spoke a language other than English on the premises paid a fine  of ten naira ','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3667,'Admin','0000-00-00 00:00:00','2020-07-05 10:30:00'),(382,'The officer has discussed the vexed issue of incessant power failure','In anger, the officer explained the problem of constant power failure','The officer added his voice to the much discussed problem of power cut','The officer\\'s explanations angered those who have suffered the effects of frequency power failure ','The officer told the people not , to be angered by the frequent power cut','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3616,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(383,'The weather condition now <i>prevailin</i>g in the town is unbearable   ','widespread   ','dominant','unconscious ','disappointed','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3722,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(384,'The lady was  completely <i>nonplussed when her suitor</i>  rejected her gifts ','unpuzzled ','surprised ',' unconscious ','disappointed  ','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3746,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(385,'As a public officer, he should act with <i>scrupulous</i>  honesty at all times  ','impeccable  ','careless ','transparent ','uncompromising ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3811,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:58'),(386,'Men from the agency went into the market in search of <i>unwholesome</i>  food items ','banned ','imported ','healthy ','uncooked ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3725,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(387,'The condition of the hostels has become <i>deplorable </i>','admirable ','regrettable ','bearable ','malignant','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3771,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(388,'The plan to merge the two local government areas has met with much <i>apathy.</i>','hospitality ','criticism ','consideration ','enthusiasm ','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3825,'Admin','0000-00-00 00:00:00','2020-06-29 08:43:38'),(389,'There is now a <i>dearth</i>  of talent in the industry; she said ','a lack ','an abundance ','a rebirth ','a shortage ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3625,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(390,'The students  <i>vandalized </i> their hostel curing the riot.','  deserted ','Unrepaired  ',' protected','decorated.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3746,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(391,'His <i>kind-hearted</i> master bought him a motorcycle',' stingy   ','generous    ',' shrewd ','angry.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3560,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(392,'<i>Mutual</i> love is what Kabi and Musa have in common, and nothing else.   ',' insincere     ','unhappy','one-sided    ','disrespectful. ','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3673,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(393,'Always strive to get what is <i>legitimate,</i>','illicit    ','legal',' good    ','impure','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3769,'Admin','0000-00-00 00:00:00','2020-07-05 14:37:47'),(394,'Some aspects of their culture are <i>out of date</i>','genuine  ','pragmatic ','fashionable ','fake','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3747,'Admin','0000-00-00 00:00:00','2020-07-05 07:34:59'),(395,'On the first day of her examination, Amina felt very <i>confident.</i>','excited ','dull  ','beefed up','strung up. ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3731,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(396,'My father is always very <i>frank</i> about his intentions','open   ','objective','secretive','deceitful','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3682,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(397,'The speaker was rather <i>bold</i> in his presentation of the case ','unfair ','reserved ','ashamed ','formal','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3773,'Admin','0000-00-00 00:00:00','2020-06-25 15:35:47'),(398,'The doctor tried to <i>soothe</i> the patient before the operation  ','examine   ',' treat ',' calm ','induce','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3675,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(399,'The charge brought against my brother was hardly <i>tenable\\\\</i>','sensible  ','defensible   ','meaningful',' flimsy','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3757,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(400,'The man described his son as a <i>willful</i> character','   wicked ','obstinate','wild    ','tricky.','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3757,'Admin','0000-00-00 00:00:00','2020-07-06 20:44:05'),(401,'Our teacher described Agbo\\'s story as a <i>phantom</i>','scary  ','realistic ','fanciful   ','interesting ','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3721,'Admin','0000-00-00 00:00:00','2020-07-05 07:35:21'),(402,'I find the way she approaches her customers quite <i>repugnant</i> ','unpleasant   ','attractive. ','ungodly    ','encouraging','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3765,'Admin','0000-00-00 00:00:00','2020-07-05 09:58:58'),(403,'Participation in the programme is <i>optional</i>','unnecessary   ',' recommended','hard to justify   ','a matter of choice','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3644,'Admin','0000-00-00 00:00:00','2020-07-02 11:02:49'),(404,'Scientists have <i>invented</i> ways of preserving fruits much longer   ','coined ','devised   ','arranged','organized','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3640,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(405,'The attempt to count the population was <i>largely</i> successful.  ',' mostly ','completely   ',' hardly','totally.','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3662,'Admin','0000-00-00 00:00:00','2020-06-26 18:58:51'),(406,'The governor has <i>approved</i>  the award of the contract','appreciated ',' acknowledged ','vetoed ','endorsed','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3646,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(407,'I cannot stand Simon, I find his attitude <i>offensive</i>','unapproachable   ',' obnoxious ','wicked','  unpardonable','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3691,'Admin','0000-00-00 00:00:00','2020-07-05 09:02:47'),(408,'The  man would not <i>withdraw</i>  what hi hid ','take back   ',' takeout   ','take','tike from','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3610,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(409,'The <i>disagreement</i> between the two men became obvious during the meeting','insult','confrontation','passion','insinuation','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3769,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(410,'The principal  detested his <i>recalcitrant</i> attitude ','disobedient ','arrogant ','voracious ','vengeful ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3818,'Admin','0000-00-00 00:00:00','2020-07-06 10:23:02'),(411,'The union officials suddenly became <i>reactive</i>','unruly ','impatient ','calm  ','submissive ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3682,'Admin','0000-00-00 00:00:00','2020-07-05 12:25:49'),(412,'The popularity of the military dictator <i>waned</i>  after war ','increased ','changed ','declined ','skyrocketed.','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3658,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(413,'The chairman addressed the………… ','university French teacher','university of French teachers ','French one hundred university teachers ','university French one hundred teacher ','choose the option  best completes the gap(s) .','','a','','utme','2008',3771,'Admin','0000-00-00 00:00:00','2020-07-05 05:57:10'),(414,'Kanuri is a language.........','I can\\'t speak it well ','that I cant speak it well ','of which I can\\'t speak it well','I can\\'t speak well ','choose the option  best completes the gap(s) .','','d','','utme','2008',3702,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(415,'Last Tuesday, Ochonu asked me.........',' had I come yesterday ','did you come yesterday ','whether I had come the day before ','If I had come yesterday','choose the option  best completes the gap(s) .','','c','','utme','2008',3728,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(416,'The young man has..... to sober...……  after being drunk.','began/up ','begun/in    ','begun/up    ','began/down','choose the option  best completes the gap(s) .','','c','','utme','2008',3782,'Admin','0000-00-00 00:00:00','2020-07-05 16:32:30'),(417,'My mother had........  the fire wood before it began to rain. ','splitting ','splited  ','splitted','splitting','choose the option  best completes the gap(s) .','','a','','utme','2008',3651,'Admin','0000-00-00 00:00:00','2020-07-05 07:28:24'),(418,'The police officer warned the... communities against taking the law……… hands','feuding/into their own ','feudal/ to their own ','feuding to their own   ','feudal/in their own','choose the option  best completes the gap(s) .','','a','','utme','2008',3683,'Admin','0000-00-00 00:00:00','2020-06-27 14:04:21'),(419,'Agbo could not travel as he had come...…  influenza','over with ','down with ','in from ','on to ','choose the option  best completes the gap(s) .','','b','','utme','2008',3632,'Admin','0000-00-00 00:00:00','2020-06-28 20:48:47'),(420,'When he.........from his journey, I want to see him.','returns ','might have returned ','returned ','must have returned ','choose the option  best completes the gap(s) .','','a','','utme','2008',3716,'Admin','0000-00-00 00:00:00','2020-07-04 20:54:08'),(421,'I knocked his door, but he.........','has already ten ','left already ','would already leave','had already left ','choose the option  best completes the gap(s) .','','d','','utme','2008',3671,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(422,'………of the students  turned up, so the lecture was cancelled.','few ','Little',' A few  ',' A little','choose the option  best completes the gap(s) .','','a','','utme','2008',3675,'Admin','0000-00-00 00:00:00','2020-06-29 02:38:04'),(423,'He brought a  ……… against his neighbour.','complaint ','complains','complain ','complaining ','choose the option  best completes the gap(s) .','','a','','utme','2008',3639,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(424,'The hotel lacks the ..……. for accommodating so many guests.','ability','capability','capacity','competence ','choose the option  best completes the gap(s) .','','c','','utme','2008',3686,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(425,'If you are not careful, you would .......... your money.','toss  ','lose','loose   ','lost','choose the option  best completes the gap(s) .','','b','','utme','2008',3766,'Admin','0000-00-00 00:00:00','2020-07-05 08:56:24'),(426,'You must practise in order to................perfection.','obtain   ','have','get ','achieve','choose the option  best completes the gap(s) .','','d','','utme','2008',3734,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(427,'The condition of the room was so………... so I went outside ','intolerant','intolerable ','inconstant ','invariabl ','choose the option  best completes the gap(s) .','','b','','utme','2008',3772,'Admin','0000-00-00 00:00:00','2020-07-06 20:25:16'),(428,'You don\\'t like Mathematics, ........... you?','do','don\\'t','cant ','can ','choose the option  best completes the gap(s) .','','a','','utme','2008',3757,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(429,'They have had their debt written ........... by their creditors.','down ','on ','up ','off','choose the option  best completes the gap(s) .','','d','','utme','2008',3697,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(430,'Uncle Ochai now has enough money to complete his…….. building.','two storey ','two-storeyed ','two-story ','two storeyed ','choose the option  best completes the gap(s) .','','a','','utme','2008',3662,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(431,'By the end of this month……….for three years in this school.','I will study ','I  will have been studying ','I  am studying','I had been studying ','choose the option  best completes the gap(s) .','','b','','utme','2008',3788,'Admin','0000-00-00 00:00:00','2020-07-05 12:34:12'),(432,'He ……… the picture on table','laid ','lay ',' lied  ','Iain ','choose the option  best completes the gap(s) .','','a','','utme','2008',3751,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(433,'Sc<u>oo</u> led ','cold ','could ','court','you','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3661,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(434,'sh<u>ir</u> t  ','shut ','shade','surf','shed','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','c','','utme','2008',3718,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(435,'w<u>ai</u> st ','fete ','says','plait','breakfast ','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3647,'Admin','0000-00-00 00:00:00','2020-07-05 11:32:58'),(436,'<u>th</u> atch ','clothing   ','mother','then ','method','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2008',3676,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(437,'<u> ch</u> ateau  ','chart    ','church ','champagne',' chemical.','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2008',3704,'Admin','0000-00-00 00:00:00','2020-06-26 03:21:41'),(438,' ju<u>dge</u> ','measure','General ','Pressure','Grace ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2008',3781,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(439,'','distress','control','bottom','report','choose the option has a different stress pattern from the others.','','c','','utme','2008',3819,'Admin','0000-00-00 00:00:00','2020-07-06 03:08:11'),(440,'','original','deplorable','ability','revolution','choose the option has a different stress pattern from the others.','','d','','utme','2008',3744,'Admin','0000-00-00 00:00:00','2020-07-06 20:25:16'),(441,'','release','exit','exchange','explode','choose the option has a different stress pattern from the others.','','b','','utme','2008',3708,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(442,'','bachelor','forget','cement','ago','choose the option that has the stress on the first syllable.','','a','','utme','2008',3721,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(443,'','librarian','immunize','militia','continuous','choose the option that has the stress on the first syllable.','','a','','utme','2008',3778,'Admin','0000-00-00 00:00:00','2020-07-02 02:22:07'),(444,'','july','litereture','august','oesophagus','choose the option that has the stress on the first syllable.','','d','','utme','2008',3673,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(445,'xenophobia   ','XEndphobia   ','xeNOphobia',' xenoPHObia     ','xenophoBIA.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2008',3739,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(446,'photography ','phoTOgraphy   ','PHOtograhy',' photoGRAphy   ','photograPHY','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2008',3639,'Admin','0000-00-00 00:00:00','2020-07-03 14:34:39'),(447,'melodramatic ','MEIodramatic  ','meLOdramatic',' meloDRAmatic ','melodraMAtic.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2008',3729,'Admin','0000-00-00 00:00:00','2020-07-06 16:25:36'),(448,'It was our collective idea but Ado was doing every­ thing to steal the snow  ',' Ado was not part of the planning but he tried to rub us of the benefits of it.',' We planned the show together out Ado was trying to abort it. ','It was a joint project but Ado is trying to attract the most attention','We collated the idea for the show but Ado was trying to steal the programme.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3699,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(449,'As we watched, he just popped along to the shop for some bread  ',' He has walked slowly to the shop.',' He stole some bread from the shop but we could not stop him',' He broke into the bread shop before our very eyes    ','He went quickly to the shop for some bread.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3629,'Admin','0000-00-00 00:00:00','2020-07-05 12:23:51'),(450,'In all ramifications, Chief Adeyemi was a successful principal of the school','He was partly a failure and partly a success    ','Everyone admitted that he was largely successful during his tenure ','He was not totally successful in the school  ','His tenure witnessed a huge success ','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3811,'Admin','0000-00-00 00:00:00','2020-07-06 22:52:23'),(451,'I couldn\\'t buy the biscuit because of the hold-up in the supermarket. ','The shop had not opened.','The attendant was slow  ',' Armed robbers were',' There was nobody to attend to me.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3711,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(452,'You could have heard the sound, if you weren\\'t asleep.','You were not asleep so you heard the sound.','You were asleep so you did not hear the sound.','You heard the sound though you were asleep.','You did not hear the sound though you were not asleep','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3745,'Admin','0000-00-00 00:00:00','2020-07-04 20:54:08'),(453,'Musa will not well because he has an itching palm.','He has rashes in his palm ','He is always looking for something to touch ','He is always read to accept bribe','He is always tapping people on the back','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3864,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(454,'Emeka was always conspicuous by his absence when it came to attending lecturers.','That Emeka always attended lecturer made him conspicuous at school.','Emeka’s absence from lecturers was all too glaring. ','It was obvious that Emeka was not present at lectures   ','What made Emeka conspicuous was his occasional absence from school','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3767,'Admin','0000-00-00 00:00:00','2020-06-28 11:09:14'),(455,'He was injured by friend fire. ','He was wounded in a war by a friend of his who fired a shot mistakenly.','He was injured by a gunshot that was fired by a friend. ','He was gut in a war by a weapon fired by his own side    ','it was a war and he was hit by a bomb fired by an unknown soldier.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3651,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:04'),(456,'Kola visits us on occasions, and I don\\'t like that.','I do not like Kola because he visits us only when an event is being celebrated. ','I hate the fact that Kola only visits us when something is being celebrated.','That Kola does not visit us often is something I object to.   ','Kola seldom visits us and that is because he is a fair-weather friend.','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3654,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(457,'At the time I arrived, Olu was lying in third place.',' Olu\\'s third position coincided with my arrival.',' When I arrived Olu was sleeping in the space reserved for him.',' It was a competition and Olu was in third position when I arrived. ','On my arrival at the competition, Olu went to sleep.','select the option that best explains the information conveyed in the sentence. ','','a','','utme','2009',3583,'Admin','0000-00-00 00:00:00','2020-06-24 00:11:34'),(458,'We had difficulty eating the meat because was <i>leathery.</i>   ','bitter    ','stringy ','tough ','tender.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3740,'Admin','0000-00-00 00:00:00','2020-07-07 05:07:19'),(459,'The boy is <i>indolent</i> to do well at school?','intelligent ','industrious  ','inactive  ','stothful.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3716,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(460,'Salasi\\'s <i>tremendous</i> effort has yielded results.','absolute  ','insignificant  ','unimaginable','prohibitive','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3706,'Admin','0000-00-00 00:00:00','2020-07-06 10:23:02'),(461,'The <i>computerised</i> service of the new banks is heart­  warming. ','manual ','mechanical ','electrical','condensed.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3658,'Admin','0000-00-00 00:00:00','2020-07-06 20:44:05'),(462,'Life has become a <i>misery</i> for many owing to the harsh economic condition in the country','drudgery   ','ridicule   ','ritual ','comfort. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3722,'Admin','0000-00-00 00:00:00','2020-07-07 00:32:25'),(463,'The company director has a <i>vivacious</i> personality. ','a positive ','an unmanageable','an unimpressive ','a gregarious.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3668,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(464,'Young people have a <i>penchant</i> for fast cats ','likeness','passion ','madness ','dislike. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3642,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(465,'Most of his latest actions are <i>militant</i> in nature ','commanding ','civil ','zealous ','passionate. ','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3787,'Admin','0000-00-00 00:00:00','2020-07-03 23:33:55'),(466,'His ideas sounded quite palatable yet they were <i>jettisoned</i> by the group, ','accepted ','clumped ','denied ','criticized.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3781,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(467,'The compulsory leave made her feel <i>listless</i>',' restful   ',' great  ',' fat   ','energetic.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3742,'Admin','0000-00-00 00:00:00','2020-06-24 02:23:21'),(468,'A novel is an <i>embellished</i> \\' falsehood\\', said the teacher','enriched ',' exaggerated ','adorned ','Obliterated.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3740,'Admin','0000-00-00 00:00:00','2020-07-05 07:02:05'),(469,' I have had enough of your <i>impudence</i>','politeness ','incivility ','arrogance ','boldness.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3495,'Admin','0000-00-00 00:00:00','2020-06-23 12:02:21'),(470,'We were <i>collectively</i> responsible for keeping the machine in good shape.','jointly ','severally ','dutifully ','socially.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3820,'Admin','0000-00-00 00:00:00','2020-07-06 12:33:08'),(471,'His comment was not <i>printable</i>','punishable  ','suitable ','offensive ','unfair.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3658,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(472,'<i>Curiously,</i> he escaped unhurt ','interestingly','unsurprisingly ','annoyingly ','unusually.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3784,'Admin','0000-00-00 00:00:00','2020-07-05 12:25:49'),(473,'Agwube\\'s explanation of her poor performance at the examination only <i>begged the question.</i>','delayed her punishment   ','sounded quite convincing ',' did not address the issue','overflogged the matter','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3737,'Admin','0000-00-00 00:00:00','2020-07-02 14:34:34'),(474,'We have every need to preserve some of our national monuments for <i>posterity.</i> ','prosperity ','future','national pride   ','collective gain.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3782,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(475,'He <i>commands</i> the confidence and respect of all his subordinates ','requests',' enjoys   ','enforces','conjures.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3758,'Admin','0000-00-00 00:00:00','2020-07-05 08:42:31'),(476,'The president has mapped out so many <i>laudable</i> projects to embark upon ','laughable   ','good',' praiseworthy   ','valuable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3710,'Admin','0000-00-00 00:00:00','2020-07-05 14:37:47'),(477,'Adamu\\'s father is a <i>stern</i> man ','wicked ','strict','playful ','conservative.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3685,'Admin','0000-00-00 00:00:00','2020-07-05 09:36:55'),(478,'Nobody knew the source of the <i>altercation</i> between the couple  ','alter ego ','quarrel   ','deep love','wealth.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3637,'Admin','0000-00-00 00:00:00','2020-07-05 22:09:41'),(479,'His poetry is said to be <i>inscrutable  </i> ','ludicrous','unlearnable ','inseparable ','mysterious.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3728,'Admin','0000-00-00 00:00:00','2020-07-05 19:08:13'),(480,'Hers was a <i>specious</i> argument about the government of the day ','misleading ','precious ','spacious ','true.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3730,'Admin','0000-00-00 00:00:00','2020-07-05 20:28:43'),(481,'The Lagos bus conductor r wore his professional <i>livery</i>','badge   ','shoe ',' uniform ','cap.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3795,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(482,'If Joy hadn\\'t been <i>tripped up</i> halfway through the race, she would have came first  ','discouraged','disqualified ','interrupted   ','exhausted.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3764,'Admin','0000-00-00 00:00:00','2020-07-06 15:58:35'),(483,'There must be something <i>sinister</i> about her late arrival','reasonable ','joyful ','hopeful ','ominous.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3783,'Admin','0000-00-00 00:00:00','2020-07-05 07:28:24'),(484,'The <i>unification</i> of the country has brought about great technological advancement ','A restoration','agreement','cohesion ','stability.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3806,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(485,' His <i>amnesia</i> has affected his career ','loss of focus','loss of sight','loss of memory ','loss of direction.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3689,'Admin','0000-00-00 00:00:00','2020-07-05 13:46:39'),(486,' Idris\\' <i>forbearance</i> endeared him to us ','hard work','patience ','wisdom ','good manners.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3619,'Admin','0000-00-00 00:00:00','2020-07-05 08:42:31'),(487,'They hated the police and, by <i>implication,</i> me','extension',' inference ','examination','application','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3701,'Admin','0000-00-00 00:00:00','2020-07-02 14:34:34'),(488,'He is really very mean. He…… not lend me the money I wanted. ','should ','could  ','would','won\\'t  ','choose the option that best completes the gap(s).','','c','','utme','2009',3698,'Admin','0000-00-00 00:00:00','2020-07-06 21:02:03'),(489,'When the cashier told him to join the queue, he considered it……. his dignity.','a drawback to ','an affront on','withdrawal from  ','a strain on ','choose the option that best completes the gap(s).','','b','','utme','2009',3729,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(490,'If anyone greets you, it is only polite to return….. Greeting','your  ','the one\\'s   ','Anyone\\'s ','one\\'s ','choose the option that best completes the gap(s).','','d','','utme','2009',3625,'Admin','0000-00-00 00:00:00','2020-06-25 15:50:53'),(491,'Amina lives…..  campus.','in the. ',' on','at the ','inside','choose the option that best completes the gap(s).','','b','','utme','2009',3764,'Admin','0000-00-00 00:00:00','2020-07-06 03:17:05'),(492,'An acceptance of the offer would be a departure from the several rejections that….. ','had taken place ','have taken place','take place ','took place ','choose the option that best completes the gap(s).','','a','','utme','2009',3738,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(493,' The….. part of a new book is often written by a more experienced writer than the author. ','foreward','foreword','forward  ','forword  ','choose the option that best completes the gap(s).','','b','','utme','2009',3809,'Admin','0000-00-00 00:00:00','2020-07-06 21:22:44'),(494,'The officer acted in….. the instructions. ','accordance ','accordance to','accordance of','accordance with ','choose the option that best completes the gap(s).','','d','','utme','2009',3636,'Admin','0000-00-00 00:00:00','2020-07-06 10:48:19'),(495,'The bomb was... …….','detonated  ','dismantled ','deactivated ',' depleted','choose the option that best completes the gap(s).','','a','','utme','2009',3705,'Admin','0000-00-00 00:00:00','2020-07-05 16:57:52'),(496,'If you want to succeed in life, don\\'t be envious….. other people\\'s achievement ','of     ',' to    ','with    ','on','choose the option that best completes the gap(s).','','a','','utme','2009',3723,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(497,'They are taught to value honour….. their lives.  ','from','in',' than ','above','choose the option that best completes the gap(s).','','b','','utme','2009',3774,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(498,'Our plan for the trip fell............when the rich man did not give us a life….. ?','off/boat','through/line','down/jacket ','in/help','choose the option that best completes the gap(s).','','b','','utme','2009',3706,'Admin','0000-00-00 00:00:00','2020-06-20 11:37:58'),(499,'1 missed the match though it was shown on television on  two…….. nights. ','concurrent ','consistent ','concrete ','conservative ','choose the option that best completes the gap(s).','','d','','utme','2009',3639,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(500,'The company paid some money to Abu to... …..  him for the losses he suffered during the accident.','indemnify ',' condole with ','settle ','recompense','choose the option that best completes the gap(s).','','a','','utme','2009',3805,'Admin','0000-00-00 00:00:00','2020-07-05 05:57:10'),(501,'You are just-putting the hat on. ……?','don\\'t you  ','isn\\'t it ',' aren\\'t you  ','not so','choose the option that best completes the gap(s).','','c','','utme','2009',3771,'Admin','0000-00-00 00:00:00','2020-06-29 17:53:41'),(502,'Government\\'s frowned upon politicians who are out to…….... Wealth','gain  ',' amass  ','steal ','waste','choose the option that best completes the gap(s).','','b','','utme','2009',3806,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(503,'I tried to discourage him, but he persisted……… revealing the secret to his son','for  ','in','  on ','to ','choose the option that best completes the gap(s).','','b','','utme','2009',3866,'Admin','0000-00-00 00:00:00','2020-07-05 09:57:53'),(504,'He was determined to……... all opposition into submission','push ','cow ','box   ','pound ','choose the option that best completes the gap(s).','','b','','utme','2009',3805,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(505,'I am told that the market is.-, in to the interests of people from all ………….of life','tuned/walks ','constructed /places ','designed/places  ','set/works ','choose the option that best completes the gap(s).','','a','','utme','2009',3787,'Admin','0000-00-00 00:00:00','2020-06-24 19:38:11'),(506,'Uche has been in ……….with his pen pal  for years.','exchange','correspondence ','favour  ','cord','choose the option that best completes the gap(s).','','a','','utme','2009',3675,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(507,'Abba became …….... about his inability to pass the examination.','despondent ','disenchanted ','dogmatic','joyful','choose the option that best completes the gap(s).','','a','','utme','2009',3737,'Admin','0000-00-00 00:00:00','2020-06-24 02:00:11'),(508,'c<u>aug</u>ht','hot','water','sup','wrong','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','b ','','utme','2009',3746,'Admin','0000-00-00 00:00:00','2020-07-05 19:50:42'),(509,' c<u>ou</u>ntry','worry','courteous','bought','poultry','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','a','','utme','2009',3698,'Admin','0000-00-00 00:00:00','2020-07-06 12:33:08'),(510,' tr<u>a</u>p','wonder','because','plait','quantity','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','c','','utme','2009',3676,'Admin','0000-00-00 00:00:00','2020-07-05 11:25:15'),(511,'  re<u>s</u>t','result','show','unasked','wise','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3673,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:19'),(512,'  <u>th</u>ought','taught','weather','theatre','fate','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3727,'Admin','0000-00-00 00:00:00','2020-07-06 02:26:29'),(513,'sheer','dear','shirt','spare','shade','choose the option that rhymes with the given word.','','a','','utme','2009',3672,'Admin','0000-00-00 00:00:00','2020-07-06 08:30:44'),(514,'great','creek','crate','knit','treat','choose the option that rhymes with the given word.','','b','','utme','2009',3750,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(515,'own','brown','frown','gown','phone','choose the option that rhymes with the given word.','','d','','utme','2009',3875,'Admin','0000-00-00 00:00:00','2020-07-05 07:35:21'),(516,'ceremoniously ','CEremoniously   ','ceREmoniously','cereMOniously      ','ceremoNlously.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2009',3785,'Admin','0000-00-00 00:00:00','2020-06-30 09:38:38'),(517,'  understandable ','unDERstandable','understandABLE','UNderstandable ','underSTANDable.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2009',3702,'Admin','0000-00-00 00:00:00','2020-07-06 10:44:25'),(518,' management ','MAnagement ','maNAgement','manaGEment ','manageMENT','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2009',3756,'Admin','0000-00-00 00:00:00','2020-07-04 00:27:31'),(519,'I AM called Uche a pilot. ','What did Lam call Uche',' Did Okoro call Uche a pilot?    ','Did I am Uche a driver? ','Did Lam wish Uche to be a pilot?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','b','','utme','2009',3762,'Admin','0000-00-00 00:00:00','2020-07-05 11:26:28'),(520,'The girl DANCED in the village square.   ','Who danced  in the village square?  ',' Is this the village square where the girl danced? ','Did the girl dance in the village square? ','Did the girl sing in the  village square?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','d','','utme','2009',3693,'Admin','0000-00-00 00:00:00','2020-06-26 09:18:28'),(521,'My father READ the newspaper.','Did my father steal the newspaper? ','Who read the newspaper?',' What did my father read?','Whose father read the newspaper?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','a','','utme','2009',3682,'Admin','0000-00-00 00:00:00','2020-06-26 20:09:08'),(522,'Though Mr, Iro is our new chairman, he views other members with jaundiced eye, ',' He takes a rather forceful position on dealing with his members.','He takes an unfavourable position concerning his members','He takes a sickly view of his members. ','He takes a rather hazy view of his members.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3812,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:57'),(523,'People are not interested in who rules ','People are not ruled by the leaders they want ','People are not concerned about who rules them ','The rulers are not concerned about the people ','People who rule are not interested in the ruled.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3836,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(524,'It is always good to steer a middle course in whatever one does. ','It is always good to get midway in anything one does. ','It is always good to act with moderation. ','It is always good to move away from the forefront','It is always good to work very hard.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3749,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(525,'The witness said he had no axe to grind with his brothers.',' He had no hatred for the brothers ','He had no axe and therefore stole the matchet ','He had no axe and therefore borrowed their matchet ','He had no vested interest in the brothers.',' select the option that best explains the Information conveyed In the sentence. ','','d','','utme','2010',3789,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(526,'The footballers moved with their tails between their legs.','They moved happily because they won the match','They were unhappy because they had been despised  by their opponents. ','They were ashamed because they had been defeated ','they moved with their tails between their legs.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3879,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(527,'The headmaster managed to talk his way out of having  to give a speech ','He delivered a speech despite the difficulty ','He managed to give a speech out of a difficult situation ','He managed to get himself out of a difficult situation','He managed to talk on his way.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3785,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(528,'As regards the matter, we have crossed the rubicon','We are completely at a toss','We are irrevocably committed ',' We are already quaffed','We are perfectly committed.  ',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3748,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(529,'Uche is full of himself ','He is concerted ','He is complete  ','He is a rich man ','He is careful.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3744,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(530,'As debutants in that tournament, the Super Eagles were up against their first opponents by three goals to nil','The Super Eagles were playing in the tournament for the first time, but they won their match by three goals to nothing ','Though the Super Eagles were rated as the weakest side in the tournament they won their first match by three goals to nil ','Even though the Super Eagles were playing without some of their regulars, they won their match by three goals to nil.','As the best attackers in the match. the Super Eagles easily defeated their opponents by three goals to nothing.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3796,'Admin','0000-00-00 00:00:00','2020-07-07 08:22:00'),(531,'The woman was mournful as her husband was found dead drunk  ','She was sad because her husband was absolutely drunk ','She was apprehensive that her husband would drink again as soon as he recovered from the drunken stupor. ','She was sad because her husband was drunk and always as helpless as a dead  man ','She was mourning because her husband drank and died.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3739,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(532,'I am optimistic about the Interview though It was a <i>mind- bending</i>  exercise, ','an enervating ','a debilitating','a difficult ','an easy','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3792,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(533,'The trader was amused by the  <i>cutthroat</i>  rush for the goods ','worrisome','strange ','lacklustre ','mad','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3809,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(534,'The teacher said that All\\'s essay was full of many  <i>redundant</i>  details ','unexplained ','strange','necessary ','useful','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3785,'Admin','0000-00-00 00:00:00','2020-06-30 09:37:15'),(535,'His father surmounted the  <i>myriad</i>  of obstacles on his way ','most ','few ','all ','many','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3752,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(536,'Her  <i>ingenuous</i>  smile drew our attention ','witty',' naive ','clever ','arrogant','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3828,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(537,'Ndeni gave a  <i>flawless</i>  speech at the party ','a wonderful ','a careless ','an interesting ','an imperfect','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3858,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(538,' Beneath Ado\\'s  <i>guff</i>  exterior, he\\'s really very kind-hearted','nice','harsh ','rough ','gentle','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3738,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(539,'The captain says sports is being  <i>debased</i>  by commercial sponsorship ','localized ','perverted','elevated ','overvalued','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3716,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(540,'Governing a country is not always as  <i>straightforward as</i>  people sometimes imagine.','complicated','troublesome   ','untoward   ','Irksome','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3637,'Admin','0000-00-00 00:00:00','2020-07-05 20:47:13'),(541,'The crowd was very  <i>receptive </i>  to the speaker\\'s suggestion ','disobedient ','repellent ','alert','Hostile','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3765,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(542,'There was a general  <i>acquiescence</i>  on the new drug law ','resistance ','discrepancy ','compromise','agreement','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3751,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(543,'Aisha seems to feel  <i>ambivalent</i>  about her future','decisive ','anxious ','ambitious ','inconsiderate','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3677,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(544,'The report of the committee contained a  <i>plethora</i>  of details',' shortage ','simplicity ','multitude',' spectrum','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3728,'Admin','0000-00-00 00:00:00','2020-07-07 07:46:12'),(545,'The weather was still very  <i>heavy and sultry </i> ','wintry and shadowy ','cold and friendly ','cloudy and thundery','hot and uncomfortable','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3685,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(546,'Ada gave her husband a look that made words  <i>superfluous</i> ','redundant ','spurious ','unnecessary',' scanty.','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3815,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(547,'A political  <i>impasse</i>  does not offer the best opportunity for merrymaking ','manifesto ','party ','gridlock',' rally','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3802,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(548,'We were all  <i>enthusiastic</i>  as we awaited the result of the election ','bemused ','agitated ','elated','nervous','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3840,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(549,'The uniform makes the guards look  <i>absurd</i>  ','dirty','smart ','sensible','ridiculous','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3739,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(550,'The law is often  <i>tardy</i>  in reacting to changing attitude',' quick','low ','exclusive ','generous','choose the option nearest  in meaning to the word or phrase in Italics.','','b','','utme','2010',3810,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(551,'Isa and llu  <i>ate sumptuous</i>  meals on their brother\\'s wedding day','expensive ','foreign ','insipid','cheap','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3853,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(552,'Kaltume  <i>crouched</i>  over the papers on her desk ','wrote on  ','stood on ','walked over','bent over','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3744,'Admin','0000-00-00 00:00:00','2020-07-05 20:47:13'),(553,'The <i> panacea</i>  for a country\\'s economic mess lies in systematic planning and hard work ','cure  ','hope','foresight ','trouble','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3903,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(554,'Thousands of workers have been victims of  <i>retrenchment</i>  since the military came back to power.','unemployment ','trench mentality ','suffering ','increase in penury','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3704,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(555,'The principal gave his speech   <i>off hand</i>  at the sports  meeting ','calmly ','Beautifully ','unconcerned','unprepared','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3665,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(556,'Jankoli was dressed in an old  <i>assortment</i>  of clothes','avalanche ','homogeneity ','sameness','melange','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3768,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(557,'The girl\\'s father was  <i>astounded</i>  to see her appear from the shrine ','collected ','overwhelmed','embarrassed ','astonished','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3723,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(558,'The director\\'s remark was extremely  <i>apposite</i>  to the issue being discussed ','appropriate','inconsequential ','emphatic ','adequate','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3859,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(559,'Her reputation is without a  <i>blemish </i> ','struggle','problem ','fault ','blessing','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3765,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(560,'Ugo is  <i>eligible</i>  for the post of secretary ','nominated','invited','qualified ','intelligent','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3703,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(561,'This is an  <i>abridged</i> version of No Longer at Ease','an outdated    ','an enlarged ','an illustrated ','a shortened','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3829,'Admin','0000-00-00 00:00:00','2020-07-06 20:44:05'),(562,'Lemoti ………..','is gifted only not ','is only not gifted  ','not only ','is only gifted','choose the option that best completes the gap(s)','','b','','utme','2010',3874,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(563,'He can recall the important dates in the nation\\'s history; it is interesting to listen as he rattles…….','off','over','up   ','out','choose the option that best completes the gap(s)','','a','','utme','2010',3677,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(564,'The boy told his mother','that was the girl he told her about ','that was the girl I told you about her','that was the girl I told her about ','that is the girl he told her about','choose the option that best completes the gap(s)','','a','','utme','2010',3864,'Admin','0000-00-00 00:00:00','2020-07-05 20:47:13'),(565,'Last Monday his father asked me, .......','if\\' had come some days before ','if I had come the day before','did you come yesterday ','had I come yesterday','choose the option that best completes the gap(s)','','a','','utme','2010',3781,'Admin','0000-00-00 00:00:00','2020-07-05 10:51:05'),(566,'His wife was badly injured in the fracas, but I think  she will pull','up  ','over ','through ','back','choose the option that best completes the gap(s)','','c','','utme','2010',3777,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(567,'A wide range of options','is ','were   ','are',' was','choose the option that best completes the gap(s)','','d','','utme','2010',3677,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(568,'One of the women who .... in the premises.... been  ordered to quit ','sells/have ','sell/has  ','sell/have','sells/has','choose the option that best completes the gap(s)','','b','','utme','2010',3681,'Admin','0000-00-00 00:00:00','2020-07-06 22:16:30'),(569,'The new trade agreement should facilitate…..... ','more economic rapid growth  ','economic more rapid  growth ','rapid economic more growth   ','more rapid economic growth.','choose the option that best completes the gap(s)','','d','','utme','2010',3805,'Admin','0000-00-00 00:00:00','2020-07-05 20:47:13'),(570,'The principal said that he was pleased......... my effort.',' on ','of ','with','about','choose the option that best completes the gap(s)','','c','','utme','2010',3752,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(571,'Paper is made…….. wood pulp ','on ','of ','from ','with','choose the option that best completes the gap(s)','','c','','utme','2010',3718,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(572,'Long after everyone…... the hall, Obi still sat inside.','left','is leaving ','has left','had left','choose the option that best completes the gap(s)','','d','','utme','2010',3773,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(573,'They are the.... dresses ','babys\\' ','baby ','babies','babies\\'','choose the option that best completes the gap(s)','','d','','utme','2010',3782,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(574,'The politician was sent …….. exile','onto ','into','on ','to','choose the option that best completes the gap(s)','','c','','utme','2010',3755,'Admin','0000-00-00 00:00:00','2020-07-05 22:09:41'),(575,'When we looked up, we …….... the plane some miles away. ','site ','cited ','sited ','sighted','choose the option that best completes the gap(s)','','d','','utme','2010',3808,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(576,'Vital... is still spread ……..... word of mouth in most villages in Africa. ','information/from  ','information/with','information/by ','information/through ','choose the option that best completes the gap(s)','','c','','utme','2010',3692,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(577,'Western  education is one of the ... of colonial rule','legacies  ','evidence ','remnants ','inheritance ','choose the option that best completes the gap(s)','','a','','utme','2010',3739,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(578,'The Federal Government has .... child trafficking ','postulated  ','projected ','prescribed ','proscribed','choose the option that best completes the gap(s)','','d','','utme','2010',3889,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(579,'The man was happy that his son confessed his guilt and so the others were .... ','implicated','accused ','punished ','Exonerated','choose the option that best completes the gap(s)','','d','','utme','2010',3762,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(580,'  Based on the facts before me, I have no alternative...........to hold you responsible ','only ','as ','than ','but','choose the option that best completes the gap(s)','','c','','utme','2010',3775,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(581,'Many people would always find reasons to ... the law','arrogate ','debase  ',' circumvent ','circumspect','choose the option that best completes the gap(s)','','c','','utme','2010',3647,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(582,'c<u>oup</u> ','whup  ','shoot ','couple ','scout','choose the option that has the same vowel sound as the one represented by the letters underlined.','','b','','utme','2010',3882,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(583,'ind<u>i</u>ct ','bright   ','fish ','pick ','brick','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3702,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(584,'r<u>oa</u>red ','towered ','coast ','brought ','rod','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3728,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(585,'shea<u>th </u>','bathe ','length ','months ','paths','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2010',3758,'Admin','0000-00-00 00:00:00','2020-06-29 10:43:59'),(586,'<u>h</u>igh ','what  ','honest ','who ','vehicle','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3829,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(587,'o<u>f </u>course  ','plough ','dough ','over ','orphan','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3719,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(588,'boys ','stays  ',' moist ','noise ','elbows','choose the option that rhymes with the given word.','','c','','utme','2010',3892,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(589,'shine ','clean ','fine ',' machine ','lain','choose the option that rhymes with the given word.','','c','','utme','2010',3624,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(590,'seer ','snare   ','spare','spear ','square','choose the option that rhymes with the given word.','','c','','utme','2010',3694,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(591,'political ','politiCAL  ','POlitical','poliTlcal','poLltical','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3827,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(592,'satisfactory ','satisfacTORY  ','saTISfactory','SATisfactory ','satisFACtory','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3675,'Admin','0000-00-00 00:00:00','2020-07-06 12:30:06'),(593,'captivity ','captiviTY   ','captiVIty  ','capTlvity','CAPtivity','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','c','','utme','2010',3683,'Admin','0000-00-00 00:00:00','2020-07-06 12:28:50'),(594,'EMEKA finished his home work yesterday ','Was Emeka helped to do his home work? ','Did Emeka do his home work yesterday?','When did Emeka finish his home work? ','Who finished his home work yesterday','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','d','','utme','2010',3722,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(595,'Taiwo SAILED to London','Did Taiwo fly to London?',' Did Taiwo sail to Brazil','Did Taiwo sail to London?','Where did Taiwo sail to?','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','a','','utme','2010',3691,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17'),(596,'My bag is made of LEATHER ','Whose bag is made of leather? ','Is my bag made of polythene? ','Is Abu\\'s bag made of leather? ','Is my bag made of leather','the word in capital letters has the <i>emphatic stress.</i> Choose the option to which the given sentence relates','','b','','utme','2010',3758,'Admin','0000-00-00 00:00:00','2020-07-07 09:04:17');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `englishlit` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `englishlit` VALUES (1,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son','question is on William Shakespeare\\'s hamlet','','d','','post-utme','2006',105,'Admin','0000-00-00 00:00:00','2020-06-25 11:28:50'),(2,'Prince Hamlet refrains from killing King Claudius while the latter is praying because ','he does not want to murder a pious man ','he is not yet fully convinced of his uncle’s guilt  ','King Claudius might thereby gain eternal life ','murder of a person paying is an unpardonable sin ','question is on William Shakespeare\\'s hamlet','','b','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(3,'Which of these best describes setting in a novel? ','the place where an event takes place ','the time when an event takes place ','the place and time of an event ','the back ground of an event ','question is on William Shakespeare\\'s hamlet','','c','','post-utme','2006',99,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:28'),(4,'The farm Flincomb-Ash is symbolic of: ','Tess\\'s fallen state ','Tess\\'s innocence ','Tess\\'s happiness ','the suffering and ill-luck that is Tess\\'s fate','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','d','','post-utme','2006',107,'Admin','0000-00-00 00:00:00','2020-06-20 17:54:59'),(5,'Prince, in the novel, is','the title of Tess\\'s ravisher ','Angel Clare\\'s other name  ','the name of a horse ','the name of Tess\\'s brother ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-06-20 18:04:44'),(6,'The period Tess spends at Talbothays is the period of her:','the happiest period of her life ','the period she suffers most horribly in the novel ','the period she falls into temptation ','the period when she became pregnant ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','a','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(7,'The play starts with a ','flashback ','prayer ','muezzin ','dialogue ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(8,'Caliph: \\\"Atthiru invites Mallam because ','Mallam has offended the caliph ','Mai Worno needs to be talked to ','Attahiru wants Mallam to explain the dream he had ','Mallam and Mai Wurno are friends ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',119,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(9,'Caliph: \\\"You have spoken well. I agree with the Waziri\\' s suggestion. You shall be organize your men and build in new well in the market. “That is our judgement\\\". What informed this statement? ','Waziri fight with the white man ','Waziri\\'s disagreement with Sarkin Zango ','the dispute between Caliph Attahiru and Prince Muhammed al-Tahir  ','the dispute between Sarkin Zango and Sarkin Fatake.','question is on Attahiru, Ahmed Yerima\\'s play','','d','','post-utme','2006',100,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(10,'A five-line poem that treats a nonsensical subject with humour is a ','quartet ','limerick  ','panegyric  ','sestet.','','','b','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(11,'Which of the following statement is most true about poetry?  ','the meanings of words are more important than their sounds  ','the sounds of words are more important than their meanings  ','the sounds of words are often more important than their meaning  ','sounds and meanings of words are of little consequence ','','','a','','post-utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(12,'The expression “coin of gold” in “Naett, coin of gold” is ','personification ','epithet  ','metonymy  ','metaphor ','','','d','','post-utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(13,'What figure of speech is “shining coal”?  ','paradox ','irony  ','oxymoron','paronomasia','','','c','','post-utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-05 20:20:17'),(14,'The rhythm of the poem “Serenade” is  ','blue  ','jolting  ','jerky ','measured','','','c','','post-utme','2006',105,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(15,'Which of these best defined exposition in drama? ','the author’s own general introduction to the play  ','the author’s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals ','the first performance of the play on stage ','','','c','','post-utme','2006',106,'Admin','0000-00-00 00:00:00','2020-06-23 12:42:54'),(16,'The tone or mood of the speaker in the poem is:  ','neutral  ','angry  ','happy  ','sad ','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.\\nAnd a few leaves lay on the starving sod,\\n…. They had fallen from an ash, and were gray\\n','','d','','post-utme','2006',112,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(17,'Starving sod\\\" here is: ','a metaphor ','a personification ','a simile ','a paradox.','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.','','b','','post-utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-05 09:02:47'),(18,'In Leopold Sedar Senghor\\'s \\\"I will pronounce Your Name\\\" Naeth represents ','Africa ','Senegal ','the poet\\'s mother ','the poet\\'s lover.','','','b','','post-utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-06 21:27:17'),(19,'In Ofeimu\\'s \\\"we must learn Again to fly\\\" \\'Cumulus\\' symbolizes ','acloud ','old age ','sounded masses ','black hair.','','','b','','post-utme','2006',110,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(20,'A brief but witty expression is called: ','song ','epigram','enecdote ','joke ','','','b','','post-utme','2006',93,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(21,'Pastoral poetry refers to the poetic composition of ','clergyman ','friare ','scops ','shepherds.','','','d','','post-utme','2006',116,'Admin','0000-00-00 00:00:00','2020-07-06 20:44:05'),(22,'A literary composition that employs wit and humor to ridicule person or institution is','drama ','satire','norella ','clergy.','','','b','','post-utme','2006',107,'Admin','0000-00-00 00:00:00','2020-06-23 18:24:36'),(23,'In a tragedy, the moment when the protagonist suffers a reversal of fortune is know as ','eatharsis ','exposition ','enagnonsis ','peripeteia ','','','d','','post-utme','2006',111,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(24,'“When he was turned over, his eyeballs stared upward in amazement and horror, his mouth was locked torn wide: his trouser soaked with blood, were torn  open, and exposed to the cold , white air of morning the thick hairs of his groin, mattered together, black and rust red, and wound that seemed to be throbbing still\\\". This passage achieves realism through the use of ','details ','simple words ','the long sentence ','the past tense ','','','a','','post-utme','2007',109,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(25,'Earth has not anything to; show more  fair. Dull would he be of soul who could pass by a sight so touching in its majesty. This city now doth, like a garment, wear the beauty of the morning. It is suggested in this line that ','the beauty of the morning gains from the beauty of the city',' the beauty of the city gains  from the beauty of the morning','the beauty of the city and the beauty of the morning are unrelated ','there is no beauty on earth.','','','d','','post-utme','2007',112,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:13'),(26,'\\\"Of 0 cam fasten nut one cup upon him with that which he had drunk tonight already. He\\'ll be as full of quarrel and offence as my young mistress\\' dog ... \\\" Shakespeare, Othello  from the statement above it can be inferred that the speaker is ','disobedient ','quarrelsome ','drunkard ','scheming ','','','d','','post-utme','2007',114,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(27,'\\\"That that is why we must acc-c-cept the universal d-d-dome, b-b-because there is no d-d-d-direction, The b-b-bridge is the d-d-dome of religion and b-b- bridges d-don\\'t just g-g-go from here to the there; a bridge also face backwards\\\". Wole Soyinka, The Interpreters. The idiolectical feature of the character\\'s speech is the ','repetition of consonant sounds ','repetition of initial consonant sounds ','duplication of consonant sound clusters ','multiplication of diphthongs.','','','c','','post-utme','2007',107,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:16'),(28,'\\\"As virtuous men pass wildly away, and higher to their souls, to go,  Whilst some of their sad friends to say,  \\\"The breadth goes now\\\", and some say \\\"No\\\".  The tone of this poem is generally ','appreciative ','serious','imaginative ','conversational.','','','d','','post-utme','2007',108,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(29,'I am alone, And the murmur of my lips carry song and tears homewards from a plain a way from home. Okogbule Wonodi. \\\"Lament for Shola\\\". The poet-persona here expresses a feeling of ','love ','anger ','nostalgia ','sorrow ','','','c','','post-utme','2007',98,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(30,'One rhyme scheme typical of the English sonnet is ','bba abba cde cde ','bba abba cde dce ','abab cdcd efef gg ','abcd babb cde cc','','','c','','post-utme','2007',117,'Admin','0000-00-00 00:00:00','2020-06-25 11:47:16'),(31,'Face thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2007',96,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(32,'A short witty statement is an ','epistle ','eulogy','epigram ','anecdote','','','c','','post-utme','2007',95,'Admin','0000-00-00 00:00:00','2020-07-05 20:20:17'),(33,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2007',91,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(34,'A literary device that creates a mental picture of a situation is ','imagery','symbolism ','flashback ','epilogue.','','','a','','post-utme','2007',110,'Admin','0000-00-00 00:00:00','2020-07-03 11:35:35'),(35,'Periphrasis in poetic diction is marked by ','circumlocution ','irony ','proverb ','parable.','','','a','','post-utme','2007',107,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(36,'A deliberate imitation of a literary style with the intention to ridicule is ','lampoon ','prosody ','pun ','parody.','','','d','','post-utme','2007',94,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(37,'What happened to Tess at the end of Thomas Herds Tess of the D\\'urbervilles?','She is executed for committing murder ','She got married to Angel Clare ','She got married to Alec D’Urbervilles ','She gave birth to a baby boy.','','','c','','post-utme','2007',93,'Admin','0000-00-00 00:00:00','2020-06-25 15:13:37'),(38,'The wood where Alec raped Tess is known as: ','Chase borough ','The Chase ','Greenhill ','Trantridge.','','','b','','post-utme','2007',97,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(39,'The name of the place where Tess and Angel Clare meet each other the second time is: ','Tratridge ','Brazil ','Dubeyfield','Talbothays farm.','','','d','','post-utme','2007',107,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(40,'\\\"Taxi Driver\\\" in Timothy Wangusa\\'s \\\"A Taxi Driver on his Death\\\" can be interpreted as a metaphor describing ','a careful driver ','a ruthless dictator ','a drunkard ','a careless man.','','','b','','post-utme','2007',99,'Admin','0000-00-00 00:00:00','2020-06-23 12:49:17'),(41,'The tone in Dennis Brutus\\' \\\"A Troubadour I Traverse .... \\\" can be described as: ','defiant ','submissive ','regretful ','arrogant.','','','a','','post-utme','2007',103,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(42,'\\\"Naett\\\" in Leopold Sedar Senmghor\\'s \\\"I will Pronounce you Name\\\" refers to: ','South Africa ','a women ','a man ','Black Africa.','','','d','','post-utme','2007',90,'Admin','0000-00-00 00:00:00','2020-06-25 11:03:08'),(43,'\\\"Cloud I, early sequestered from my tribe, Free a lead - tethered scribe.\\\" The above lines\\' from J.P. Clark\\'s \\\"Agbor Dancer\\\" suggests that the persona is: ','one with his tribe ','alienated from his tribe ','one of the dancers ','one of the drummers.','','','b','','post-utme','2007',106,'Admin','0000-00-00 00:00:00','2020-06-24 08:34:58'),(44,'The name of the author of \\\"We Must Learn to Fly\\\" is: ','Dennis Brutus ','Leopold Sedar Senghor ','Odia Ofeimun ','Wole Soyinka.','','','c','','post-utme','2007',113,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(45,'One of the following is a characteristic of a novel: ','It is written only in dialogues ','It adopts the poetic form ','It is written mainly in prose','It employs phrases and sentences.','','','d','','post-utme','2007',103,'Admin','0000-00-00 00:00:00','2020-06-25 11:41:15'),(46,'The law protecting works of art from unlawful reproduction is called: ','plagiarism ','illegal photocopying ','It is written mainly in prose','copyright.','','','d','','post-utme','2007',97,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(47,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son. ','','','d','','post-utme','2007',111,'Admin','0000-00-00 00:00:00','2020-06-25 11:06:30'),(48,'What figure of speech does the following quotation contain? A life\\'s but a walking shadow (Macbeth)','a metaphor ','an image ','a synecdoche ','an allusion','','','a','','post-utme','2008',87,'Admin','0000-00-00 00:00:00','2020-06-24 08:20:16'),(49,'Which of the following statement is most true about poetry? ','the meanings of words are more important than their sounds ','the sounds of words are more important than their meanings ','the sounds of words are often more important than their meanings ','sounds and meanings of words are of little consequence','','','a','','post-utme','2008',105,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(50,'Which of these best define exposition in drama?','the author\\'s own general introduction to the play ','the author\\'s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals','the first performance of the play on stage.','','','c','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:41'),(51,'When the speaker in a poem cannot be identified with poet, that speaker is called: ','a persona ','a dramatic persona ','a soliloquist','a ventriloquist.','','','a','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(52,'Which of these definitions best described a lyric? ','a short poem','a short poem in which the poet is speaking','a poem expressing a personal idea, feeling or mood','a poem divided into stanza.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-06-24 10:03:14'),(53,'An autobiographical novel is: ','a novel written about another novelist ','a true account of a novelist\\'s life by himself ','a novel in which h the novel 1st draws mainly on materials from his own life ','a novel using the\\' I\\' pronoun.','','','c','','post-utme','2008',106,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(54,'Plot in prose fiction is best defined as:  ','the cause and effect sequence of events  ','the brief summary of events  ','the central event  ','the subject-matter of a novel.','','','a','','post-utme','2008',113,'Admin','0000-00-00 00:00:00','2020-07-03 11:35:35'),(55,'Which of these is not true about unity of action in a novel? ','action may be unified through a single main character  ','action may be unified by being set in one place  ','action may be unified by many characters  ','action may be unified by using set in one consistent point of view.','','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-06 16:57:28'),(56,'Action in a novel is best defined as:  ','the summary of the novel’s story  ','what the characters do or say in the novel  ','the numerous sub-plots of the novel put together ','the totality of all the episodes in a novel leading to the conclusion','','','b','','post-utme','2008',100,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(57,'Suspense in a novel means:  ','the postponement of the hero’s death till the last possible moment ','the intense emotions that the author conveys  ','the inconclusive end of a novel  ','when we are curious about what happens next in a novel.','','','d','','post-utme','2008',96,'Admin','0000-00-00 00:00:00','2020-06-25 11:42:49'),(58,'A realistic novel is one in which the characters are:  ','real   ','historical ','just of above average intelligence  ','the types that we meet in everyday life.','','','a','','post-utme','2008',101,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(59,'Theme is best defined as:  ','the subject – matter of a novel or play ','the central idea in a play or novel  ','the point of view in that novel  ','the sum-total of all the characters’ experiences','','','a','','post-utme','2008',101,'Admin','0000-00-00 00:00:00','2020-07-06 21:27:17'),(60,'What kind of repetition is used in the extract?  ','anaphora ','single word repetition  ','line repetition  ','phrase repetition.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',96,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:29'),(61,'A part from emphasis, what other effect does the repetition have?  ','makes the poem rhythmical  ','makes the poem tedious  ','makes the poem -notonous  ','makes the poem exhilarating.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-06-20 15:59:09'),(62,'The following line from a poem:  Western wind, when will thou blow? Is an example of: ','rhetorical question  ','caesura  ','alliteration  ','nature imagery.','','','a','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(63,'Identify the odd one out of these types of imagery  ','visual imagery  ','tactile imagery  ','synesthesia  ','literal imagery.','','','d','','post-utme','2008',110,'Admin','0000-00-00 00:00:00','2020-06-23 17:31:05'),(64,'When a poet uses mainly soft vowel sounds in a poem, the texture of the poem is ','mellifluous ','harsh ','assonantal ','neutral ','','','a','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(65,'The sounds in the following lines may be described as an example of: The moan of doves in immemorial elms, and murmuring of innumerable bees ','alliteration ','euphony ','cacophony ','a mixture of all the above.','','','b','','post-utme','2008',113,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(66,'\\\"The man dies in him who keeps silent in the face of tyranny.\\\" This statement can be described as: ','Metaphoric ','Literal ','Tragic ','A smile.','','','a','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-06-25 12:01:13'),(67,'The literary technique in which a reader is taken to the past of a current action in known as:','rewinding ','fast forward ','flashback ','repetition.','','','c','','post-utme','2008',102,'Admin','0000-00-00 00:00:00','2020-06-21 11:55:11'),(68,'One rhyme scheme typical of the English sonnet is ','abba abba cde dce ','abba abba cde cde ','abab cdcd efef gg ','abcd babb cde cc.','','','c','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-06-23 12:49:17'),(69,'The speaker of the above except is a ','son of Lord Montague ',' nephew to Lady Capulet ','kinsman to the Prince ',' servant to Paris.','\\\" ... This is a Montague, our foe; A villain, that is hither come in spit. To scorn at out solemnity this night. William Shakespeare: Romeo and Juliet I:V,61-63. ','','b','','post-utme','2008',89,'Admin','0000-00-00 00:00:00','2020-07-06 20:44:05'),(70,'In Gbemisola Adeoti\\'s \\\"Naked Soles\\\", the expression \\\"red milk of grief\\' means ','wine ','sea ','ink ','blood.','','','d','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-06 21:27:17'),(71,'Farce thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(72,'A short witty statement is an ','epistle ','eulogy ','epigram ','anecdote.','','','c','','post-utme','2008',109,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(73,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2008',89,'Admin','0000-00-00 00:00:00','2020-06-25 11:47:16'),(74,'Literary device that creates a mental picture of   a situation is ','imagery ','symbolism ','flashback ','epilogue','','','a','','post-utme','2008',98,'Admin','0000-00-00 00:00:00','2020-06-23 12:42:54'),(75,'To whom does her in line 5 refers to?  ','God  ','Letter  ','World ','Nature','This is my letter to the world\\nThat never wrote to me\\nThe simple news nature told\\nWith tender majesty\\nHer message is committed\\nTo hands, I cannot see;\\nFor love of her, set countrymen,\\nJudge tenderly one me.\\n','','d','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(76,'The suddenly her heart was whipped up, she now rode on strange waves: alone defying the wind and the rain; alone, fighting hunger and thirst in the desert, alone, struggling with strange demons in the forest bringing  glad tidings to her people. The mood of the lady in this  passage is one of ','simple defiance ','defeat  ','triumphant  ','depression','','','c','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(77,'Mother, didn’t you hear me? I’ve brought the goat, hen and yams. Don’t you want them anymore? Why do you continue to look at me like that? I haven’t done anything wrong, again, have I, answer me, speak to me, mother’  The  dominant mood in this passage is one of ','sadness ','anxiety  ','anger  ','nonchalance.','','','b','','post-utme','2009',102,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(78,'What distinguishes poetry from other  forms of literature is its  ','Rhyme and verse ','rhythm and metaphor ','emotion and feeling  ','irony and paradox','','','a','','post-utme','2009',104,'Admin','0000-00-00 00:00:00','2020-07-05 18:09:48'),(79,'Assonance poetry is the repetition of ','internal vowels in words ','consonant sounds in words ','final sounds at the end of a line 1 ','final sounds at the beginning of a line','','','a','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(80,'There knells a jigger, a louse , a weevil, a flea, a bedbug! He is mistletoe, a parasite that lives on the trees of other people’s! the speaker uses a string of ','metaphors  ','parables  ','hyperboles  ','riddles','','','a','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-06-23 11:16:54'),(81,'As literacy form the short  story is most closely related to ','the discourse ','the novel  ','story telling  ','poetry ','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-06-20 16:19:35'),(82,'A poem written on a grand theme, in an appropriately grand style, dealing, with heroic figures is called ','an epigram  ','an epic ','a soliloquy ','heroic poem','','','b','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(83,'The literary device which uses ridicule to correct social ills is known as ','anecdote  ','saturation  ','hyperbole  ','satire.','','','d','','post-utme','2009',113,'Admin','0000-00-00 00:00:00','2020-07-03 11:35:35'),(84,'Characterization is a novel means the ','list of characters featuring in it ','peculiar materialisms of the narrator ','mode of presenting the fictional individuals ','list of those that act the novel.','','','d','','post-utme','2009',111,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(85,'Caricature is used to ','censure an individual by emphasizing his weakness ','expose the folly  in literature  ','ridicule a person by distorting his most prominent features ','elicit the artistic potential of dramatist.','','','c','','post-utme','2009',99,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(86,'The branch of knowledge that places emphasis on beauty is ','philosophy ','ode to pretty ','philology ','aesthetics.','','','d','','post-utme','2009',101,'Admin','0000-00-00 00:00:00','2020-07-06 21:27:17'),(87,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','‘You kiss her on the cheek \\nYou kiss her open-sore lips\\nAs white people do.\\nYou suck slimy saliva\\nFrom each other’s moths.\\nAs white people do.\\nOkot P’ Breck’s song of larie\\n','','b','','post-utme','2009',98,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(88,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','','','d','','post-utme','2009',113,'Admin','0000-00-00 00:00:00','2020-07-05 07:48:06'),(89,'‘Beholds her, single in the field you solitary Highland Lass! Reaping and singing, by herself stop here, or gently pass! Alone she cuts and blinds the gram, and sings a melancholy strain, O listen! For the Vale profound Is overflowing with the sound. The rhyming schema in the first stanza of The Solitary Reaper above is ','abcbddee ','ababccdd ','alxabcdd ','abcbddef','','','a','','post-utme','2009',104,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(90,'The tone of the poet is ','optimistic ','dupplicatory  ','sympathetic ','piteous','These only tears\\nDripping down the tears on your depressed face.\\nWill one day be staunche.\\nI swear’ \\n','','a','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-06 10:26:08'),(91,'The literary device  which anticipates that an event will take place is best described as ','parody ','flashback ','foreshadowing ','rising action ','','','c','','post-utme','2009',96,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(92,'The multiple deaths in the play serve as a punishment for ','impatience on the part of  Romeo and Juliet; ','imposing life partners on children ','disobedience of the protagonists  ','Tybalt’s fiery temper.','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',95,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(93,'Romeo’s death becomes inevitable because ','Emire Lawrence’s is not delivered: ','Juliet is married to Paris ','Romeo kills Tybalt in a duel ','Juliet has committed suicide.','Question is based on William Shakespeare’s Romeo and Juliet','','a','','post-utme','2009',98,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(94,'Before he met Juliet, Romeo was in love with ','country Paris ','Rosaline  ','Benvolio  ','Mercuito','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(95,'The major reason for Juliet’s  grief is ','The death of her cousin; ','her reluctant marriage to Romeo  ','the banishment of her lover ','her imminent death.','Question is based on William Shakespeare’s Romeo and Juliet','','c','','post-utme','2009',101,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(96,'Winston Smith begins his rebellion against the power of the state by ','educating the youth  ','keeping a private diary  ','purchasing arms ','disobeying Big Brother.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',108,'Admin','0000-00-00 00:00:00','2020-06-23 15:51:17'),(97,'In the novel, Orwell attempts  to ','eulogizes the beauty of the socialist system; ','condemn the disgusting hypocrisy of all communist systems; ','satirize the artificiality  of a machine controlled society ','deride the political lock jam in Nigeria.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',101,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(98,'“The experts, of course disagree the urine test they ordered ‘said, Negative’. The lives above from acqah’s in the Nanel of the soul depict ','awareness ','inevitability ','progress ','contradiction.','Question is based on selected poems','','d','','post-utme','2009',101,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(99,'In Kunene’s Heritage of Liberation, freedom is to be achieved through the efforts of ','the new generation  ','the old generation ','present generation ','successive generations.','Question is based on selected poems','','d','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(100,'The thematic pre-occupation of de Graft’s  Sons and Daughters can be summarized as ','the import of Western education ','the roles of women in modern economy ','how to become a lawyer ','dimly life in the face of social changes.','','','d','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(101,'Lawyer Bonu in de Grafts Sons and Daughters can be described as a: ','caring father ','faithful husband ','deceitful friend ','shrewd politician.','','','d','','post-utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-06 16:57:28'),(102,'De graft’s Sons and Daughters is structured into: ','three acts ','four scenes ','two acts ','five Episodes.','','','a','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(103,'The central  conflict in de Graft’s Sons and Daughter is primarily: ','political ','generational ','racial','communal','','','d','','post-utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(104,'He already had five wives and was soon going to break the legs of the antelope for the sixth time’. The expression ‘break the legs of the antelope’ means to: ','be ON honeymoon ','offer ritual sacrifice ','hunt for antelopes  ','have a  new baby.','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',105,'Admin','0000-00-00 00:00:00','2020-06-22 18:03:31'),(105,'The medal in Oyono’s The Old man and the  two sons and his: ','house ','horse  ','land ','Job','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',114,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(106,'Kelara in Oyono’s The Old man and the Medal is: ','Mvodo’s sister ','commandant’s maid  ','Meka’s wife ','Agatha’s cousin.','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(107,'In Oyonon’s The Old Man and the Medal, Ignatius Obebe isa : ','driver ','soldier ','carpenter ','catechist.','Question is  based on Oyono’s Old man hand the medal','','d','','post-utme','2010',86,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:13'),(108,'The medal in Oyono’s The Old man and the medal is a symbol of: ','colonial deceit ','African pride  ','genuine reward for loyalty ','respect and honour','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(109,'Dancing through blooming thorns” in Gbemisola  Adeoti’s Naked soles” connotes: ','hoeing a field of thorns ','dancing  in a keen competition ','being merry amidst suffering','playing flowers and plants.','Question is are based on selected African poems.','','c','','post-utme','2010',99,'Admin','0000-00-00 00:00:00','2020-07-06 21:27:17'),(110,'In Gbemisola Adeoti’s Naked Soles”, the expression red milk of grief’ refers to: ','wine  ','Ink ','blood ','palm-oil','Question is are based on selected African poems.','','c','','post-utme','2010',99,'Admin','0000-00-00 00:00:00','2020-07-03 11:35:35'),(111,'In Masizi Kunene’s “A Heritage of Liberation; this season’ refers to the period of: ','oppression ','freedom  ','migration  ','resettlement','Question is are based on selected African poems.','','b','','post-utme','2010',97,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(112,'“Eagle in Kunene’s  “A Heritage  of  Liberation” is a symbol of: ','deceit ','peace ','agility ','death.','Question is are based on selected African poems.','','d','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(113,'The tone in Gbemisola Adeoti’s Naked soles” is that of ','reconciliation  ','lamentation  ','exhortation ','admiration','Question is are based on selected African poems.','','b','','post-utme','2010',99,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:16'),(114,'The attitude of the poet-Persona toward bats in D.H. Lawrence’s “Bats” is that of ','revulsion ','veneration  ','admiration  ','indifference.','Questions is based on Non-African Poetry','','a','','post-utme','2010',106,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(115,'In China, according to D.H. Lawrence, bats are symbols of: ','death  ','birth ','caution ','joy','Questions is based on Non-African Poetry','','d','','post-utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-05 12:55:32'),(116,'In Wendy Cope’s Sonnet VII,  poetry is regarded as a God –given weapon to: ','musicians ','recluses ','nomads ','pilgrims.','Questions is based on Non-African Poetry','','b','','post-utme','2010',108,'Admin','0000-00-00 00:00:00','2020-07-03 11:35:35'),(117,'The greatest challenge to the poet-persona in Andrew Marvell’s “To His Coy Mistress’ is : ','chariot ','love  ','time ','youth','Questions is based on Non-African Poetry','','c','','post-utme','2010',108,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(118,'But the pigs were so clever that they could think of a way around every difficulty. As for the horses, they know every inch of the field and in fact understood the business of mowing and raking”. The dominant literary device in the excerpt above is ','repetition ','mimesis ','ellipsis ','personification.','Question is  based on literary appreciation','','d','','post-utme','2010',107,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(119,'“The dairy maids and men had flocked down from their cottages and out of the dairy-house with the arrival of the cows from the meads: the maids walking in  patterns, not on account of weather, but to keep their shoes above the mulch of the barton”. The setting of the above  passage can be described as: ','urban  ','celestial ','pastoral  ','religious.','Question is  based on literary appreciation','','c','','post-utme','2010',92,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(120,'“O mother, my mother!...How could I be expected to know? I was a child when I left this house four months ago. Why didn’t  you tell me there was danger in men-folk? Why didn’t you warn me?” the speech above achieves its literary effect through the use of: ','litotes  ','onomatopoeia ','allusion  ','repetition.','Question is  based on literary appreciation','','d','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:59'),(121,'“The animals saw no reason to disbelieve him, especially as they could no longer remember very clearly  what conditions had been like before the rebellion. All the same, there were days when they felt that they would sooner have had less figures and more food”. The tone of the passage above is quite: ','exhilarating ','cynical ','optimistic ','obsequious.','Question is  based on literary appreciation','','b','','post-utme','2010',99,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(122,'“We are tired of waiting for another war our trees their leaves have shed the winter has come and gone spring flowers have blossomed and withered” in line 2 of the poem above, the poet uses:','ellipsis ','alliteration ','inversion  ','oxymoron.','Question is  based on literary appreciation','','c','','post-utme','2010',111,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(123,'The poet personal in the poem above is: ','resigned to fate  ','a holy man  ','a daily traveler  ','suffering but optimistic. ','“I come and go\\na pilgrim\\ngrubbily unkempt\\nstubbornly cheerful\\ndefiantly whistling hope\\nand grubbing for crumbs of success\\nout of all near-defeats.\\n','','d','','post-utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(124,'A novel that has a very strong presence of the supernatural is known as ______ ','faction  ','gothic  ','travel tale  ','fairy novel ','','','d','','post-utme','2012',111,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:13'),(125,'In a tragic-comedy, the unknotting of the plot, the resolution of the mystery and the resolution of the misunderstanding is called  ','exposition   ','denouement   ','catharsis  ','hubris','','','b','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-06-12 13:05:40'),(126,'The exclusive right given to authors to protect their works from unlawful production or reproduction is   ','A copyright  ','an authority to write  ','an author’s right   ','a constitutional provision ','','','a','','post-utme','2012',111,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(127,'An epic deals with  ','humour  ','tragedy  ','gothic  ','hero','','','d','','post-utme','2012',101,'Admin','0000-00-00 00:00:00','2020-07-05 09:02:47'),(128,'The sudden revelation of events as they happen is called  ','epiphany  ','revelation  ','relay-events  ','resonance ','','','d','','post-utme','2012',100,'Admin','0000-00-00 00:00:00','2020-07-05 12:54:12'),(129,'Comic relief is used in a work of art to  ','to suspend disbelief  ','to maneuver the portal of narration  ','to create chiaroscuro  ','to suspend to tension ','','','d','','post-utme','2012',107,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(130,'The image in this excerpt suggest ','happiness  ','sorrow ','anger  ','kindness','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','b','','post-utme','2012',106,'Admin','0000-00-00 00:00:00','2020-06-20 11:38:33'),(131,'The world as used above is an example of  ','irony  ','metaphor ','exaggeration  ','parody ','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','c','','post-utme','2012',95,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:59'),(132,'This extract is an example of  ','dirge  ','satire  ','ode  ','sonnet','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',109,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(133,'The general  idea in the extract is ','neglect  ','praise  ','ridicule  ','worship','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',105,'Admin','0000-00-00 00:00:00','2020-06-23 15:52:06'),(134,'  The central motif in this excerpt is  ','religious  ','pride  ','poverty  ','deceit ','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',103,'Admin','0000-00-00 00:00:00','2020-06-25 11:15:14'),(135,'The extract is an example of  ','pun  ','hyperbole  ','Irony  ','parody','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',95,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(136,'“Your hand is heavy, Night, upon by brow” is an example of  ','hyperbole  ','onomatopoeia  ','apostrophe  ','oxymoron ','','','a','','post-utme','2012',111,'Admin','0000-00-00 00:00:00','2020-06-22 17:40:20'),(137,'From this passage, the people that the writer admire are  ','poor  ','brilliant   ','rich   ','unassuming ','(Extract for question)\\nThe human beings who I most admire are those without sterling qualities but are extraordinary in their ordinariness, the unsung heroes who will never be in the limelight or boulevard of fame, people who do great things when no one is watching or those who are not marked with the maple leaves of chieftaincy titles. They only wear fate, hard work, perseverance, anonymity and time. Yet, they are passionate, caring, visionary, sincere, determined and honest. These qualities mold those that are special without being aware. I strive to stay true to some of these qualities that I admire. To find a person with a few of these qualities is rare these days. To know someone who has all of them is amazing and a true blessing. [Excerpt from Tomorrow Left Us Yesterday-Tayo Olafioye]\\n','','d','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(138,'The writer informs the reader that people with good qualities are  ','many  ','few  ','fearful  ','famous','','','b','','post-utme','2012',104,'Admin','0000-00-00 00:00:00','2020-06-25 11:48:35'),(139,'Aaron’s brother who trains as an accountant is  ','George  ','Awere  ','Owusu  ','Kofi','Question is based on Joe de Graft’s Sons and daughters','','d','','post-utme','2012',116,'Admin','0000-00-00 00:00:00','2020-06-25 12:01:13'),(140,'Which of the following is true of the Awere?  ','He is the fiancé of Maanan  ','He is a chartered accountant   ','He wins a scholarship to Goldsmith College  ','He wants to study dance and choreography ','Question is based on Joe de Graft’s Sons and daughters','','a','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:01'),(141,'The conflict in the play centres around  ','gender  ','generation  ','religion  ','ethnicity ','Question is based on Joe de Graft’s Sons and daughters','','b','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:25'),(142,' The text of Shakespeare’s Romeo and Juliet is sourced in ','1623 second Folio  ','1590 rehearsal guide  ','1599 Quarto  ','1616 manuscript ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','a','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-06-25 23:38:59'),(143,'“There’s no trust No faith, no honesty in men, all perjured, All forsworn, all naught, all dissembles” The speaker of the above excerpt is ','Nurse  ','Juliet  ','Balthasaar  ','Capulet ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','b','','post-utme','2012',100,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(144,'Another Suitor of Juliet in the play is  ','Mercutio  ','Gregory  ','Duke  ','Paris','Question is drawn from William Shakespeare’s ROMEO and JULIET','','d','','post-utme','2012',108,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(145,'In the novel, the Ministry that is responsible for news, entertainment and fine arts in the Ministry of  ','Peace  ','Love  ','Plenty  ','Truth','Question is based on George Orwell’s Nineteen Eight Four','','d','','post-utme','2012',97,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:16'),(146,'The Ministry of Plenty in the Novel is responsible for  ','War  ','economic affairs  ','Population  ','Agriculture ','Question is based on George Orwell’s Nineteen Eight Four','','b','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-07-05 12:54:12'),(147,'The national day in The Old Man and the Medal is  ','1st of October  ','27th of May  ','12th June  ','14th July','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','d','','post-utme','2012',108,'Admin','0000-00-00 00:00:00','2020-07-06 16:57:28'),(148,'In Joys of Motherhood, Dr Meers is  ','Nnaife’s master  ','Nnuego’s uncle  ','The District Officer  ','An ombudsman','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','a','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(149,'“ I don’t see how any mother who cares for the modesty of her daughter can coolly sit down there and defend such waywardness”. “way wardness” in the except above refers to  ','sexual immorality  ','painting  ','dancing  ','disobedience ','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:17'),(150,'Aaron’s painting is purchased by an American collector for the sum of ','250 dollars  ','220 pounds ','260 cedis  ','280 francs ','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(151,'James Ofosu is pleased with George because he studies ','Law  ','Accountancy ','Engineering   ','Medicine ','Question is  based  on Joe de Graft’s Sons and Daughters.','','d','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-07-06 21:27:17'),(152,'Joe de Graft’s Sons and daughters is an example of ','domestic comedy ','dark comedy ','restoration comedy ','comedy of error','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-05-04 18:49:13'),(153,'The central conflict in the play is about  ','Lawyer Bonu’s attempt to seduce Maanan  ','career choice for James Ofosu’s children  ','Hannah’s lack of respect for James  ','Fosuwa’s bid to force Lawyer Bonu on Maanan','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-06-22 18:58:30'),(154,'David Rubadiri in “An African Thunderstorm” paints a graphic picture of the Thunderstorm through  the use of ',' simile and personification  ',' Irony and imagery',' hyperbole and rhyme ','innuendo and satire ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-06-25 11:56:29'),(155,'In Andrew Marvell’s “To his Coy mistress”, the poet adopts a consistent rhyming scheme of ','sestet    ','Couplet ',' tercet  ','free verse','Question is based on African and Non-African Poetry  ','','b','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:16'),(156,'Mazisi Kunene is an African poet from  ','Ghana ','Nigeria  ','Malawi  ','South Africa','Question is based on African and Non-African Poetry  ','','d','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:13'),(157,'In T.S. Eliot’s “The Journey of the Magi”, the journey can be described as  ','delightful   ','unnecessary ','allegorical  ','symbolic ','Question is based on African and Non-African Poetry  ','','c','','post-utme','2013',97,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(158,'The dominant figurative device  in Kobena Acquah’s “In the Navel of the Soul” is','metaphor   ','assonance  ','paradox   ','euphemism ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',102,'Admin','0000-00-00 00:00:00','2020-07-06 20:44:05'),(159,'‘fellow wayfarer…what good news do you bring me?\\\" The statement above is addressed by Meka to','the Commandant’s messenger ','a passing dog   ','a dove ','Engamba ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(160,'Gullet is so named by the natives because of his  ','razor-sharp wit  ','long neck ','closeness to the people ','hostility ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','b','','post-utme','2013',108,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(161,'The medal in the novel is a symbol of  ','ungodliness   ','victory   ','admiration ','deceit ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','d','','post-utme','2013',95,'Admin','0000-00-00 00:00:00','2020-06-26 18:35:18'),(162,'In the Joys of Motherhood, the joy of a mother is predicated on having ','husband    ','sons ','daughters   ','wealth ','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','b','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-06-25 12:00:05'),(163,'The protagonist of the novel is  ','Nwokocha Agbadi ','Nnaife  ','Nwakusor ','Nnu Ego.','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','d','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(164,'From the conclusion of the novel, the author implies that ','rebellion is fruitless ','opposition pays ','two and two make four ','knowledge gives freedom.','Question is based on George Orwell’s Nineteen Eighty Four','','a','','post-utme','2013',103,'Admin','0000-00-00 00:00:00','2020-07-06 21:27:17'),(165,'“It was an enormous  pyramidal structure of glittering white concret, soaring up, terrace after terrace, 300 metres into the air”.','Being described in the except above is  ','The party secretariat','O’ Brien’s  residence  ','The ministry of truth ','The Ministry of Plenty ','','c','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-07-06 21:27:17'),(166,'In the novel, Oceania is at war with  ','Romania   ','Catalonia    ','Eastasia ','Rhodeia','','','c','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-07-05 09:02:47'),(167,'“Minipax” in the true sense means ','ministry of Truth ','Ministry of Love  ','Ministry of War  ','Ministry of Plenty ','Question is based on George Orwell’s Nineteen Eighty Four','','d','','post-utme','2013',106,'Admin','0000-00-00 00:00:00','2020-07-04 00:06:14'),(168,'In the Newspeak language, “duckspeak” is a word that simultaneously  refers to ','love and admiration  ','knowledge and ignorance  ','now and then ','abuse and praise ','Question is based on George Orwell’s Nineteen Eighty Four','','b','','post-utme','2013',111,'Admin','0000-00-00 00:00:00','2020-07-04 11:53:19'),(169,'Hermeneutics is an art of  ','Calculation  ','exaggeration ','composition  ','interpretation ','Question is based on General literary principles.','','d','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-06-23 13:19:59'),(170,'A poem written in unrhymed five stress lines is called  ','ballad  ','Blank verse ','sonnet      ','Ode','Question is based on General literary principles.','','b','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-06-25 11:42:01'),(171,'The type of sonnet that has an octave and a sestet has its origin in  ','England  ','Spain ','Portugal   ','Italy','Question is based on General literary principles.','','d','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-07 09:03:27'),(172,'The tone of the excerpt above is  ','jubilant  ','condemnatory ','adulatory  ','defiant ','“We own this land \\n And the swamps\\n The palms\\n And the mangroves;\\n We ‘ll die defending them”\\n Tony Afejuku “Land Song”  \\n','','d','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-06-27 12:56:48'),(173,'The figurative devices in the excerpt above are  ','rhyme and metaphor  ','alliteration and assonance  ','repetition and simile  ','rhyme and onomatopoeia ','“Her voice is a shell borne by the waves to crack the egg my soul sorely craves”\\nSegun Adekoya  “Love Blues” \\n','','a','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-06 16:57:28'),(174,'A speech in a play in which a character speaks his or her thoughts alone is','monologue','an aside','a soliloquy','an epilogue','','','c','','wassce','2015',78,'Admin','2016-12-12 05:41:49','2020-06-25 23:38:59'),(175,'In Literature, repetition is used essentially for','rhyme','suspense','allusion','emphasis','','','d','','wassce','2015',83,'Admin','2016-12-12 05:41:49','2020-07-04 00:06:13'),(176,'The pattern of poem without reference to its content is referred to as the','limerick','metre','free verse','form','','','c','','wassce','2015',93,'Admin','2016-12-12 05:41:49','2020-07-05 07:43:12'),(177,'The performers in a play constitute the','chorus','characters','audience','cast','','','b','','wassce','2015',86,'Admin','2016-12-12 05:41:49','2020-07-05 12:54:12'),(178,'The stanza is an example of','appellation','apostrophe','euphemism','elegy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',100,'Admin','2016-12-12 05:41:49','2020-07-07 09:03:27'),(179,'Pan is used here as','an allusion','symbol','irony','metonymy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','a','','wassce','2015',98,'Admin','2016-12-12 05:41:49','2020-06-25 11:32:22'),(180,'The rhyme scheme of the stanza is','abcabcc','ababcdd','babaccc','bcbccaa','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',91,'Admin','2016-12-12 05:41:49','2020-07-04 11:53:19'),(181,'A metrical foot in which a stressed syllable is followed by an unstressed syllable is','iambic','spondaic','trochaic','dactylic','','','c','','wassce','2015',84,'Admin','2016-12-12 05:41:49','2020-06-24 08:59:29'),(182,'________ is the location of the action of the plot','Setting','Narrative technique','Point of view','Characterization','','','a','','wassce','2015',92,'Admin','2016-12-12 05:41:49','2020-06-25 23:38:59'),(183,'A ballad is essentially a ____________ poem','descriptive','dramatic','pastoral','narrative','','','d','','wassce','2015',94,'Admin','2016-12-12 05:41:49','2020-07-04 11:53:19'),(184,'The first four lines of the Shakespearean sonnet rhyme','abcd','abba','abab','cdcd','','','c','','wassce','2015',84,'Admin','2016-12-12 05:41:49','2020-06-24 20:35:01'),(185,'A story in which characters or actions represent abstract ideas or moral qualities is','an epic','a legend','an allegory','a satire','','','c','','wassce','2015',73,'Admin','2016-12-12 05:41:49','2020-06-22 18:03:31'),(186,'The use of imagery in prose or verse','appeals to the senses','develop the plot','create confusion','obscures meaning','','','a','','wassce','2015',85,'Admin','2016-12-12 05:41:49','2020-07-05 07:43:12'),(187,'The lines illustrate','soliloquy','parallelism','dialogue','contrast','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','b','','wassce','2015',90,'Admin','2016-12-12 05:41:49','2020-07-04 11:53:19'),(188,'‘heads’ in the second line is an example of','synecdoche','inversion','epithet','conceit','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','a','','wassce','2015',90,'Admin','2016-12-12 05:41:49','2020-07-05 20:20:17'),(189,'A character that develops in the course of  a novel or play is described as','flat','antagonist','round','protagonist','','','c','','wassce','2015',91,'Admin','2016-12-12 05:41:49','2020-07-07 09:03:27'),(190,'A dirge is a poem sung','to send a child to sleep','to make workers happy','at a birthday party','at a funeral','','','d','','wassce','2015',93,'Admin','2016-12-12 05:41:49','2020-07-05 13:46:39'),(191,'In drama, the ___________ creates humour','hero','clown','villain','chorus','','','b','','wassce','2015',89,'Admin','2016-12-12 05:41:50','2020-07-04 00:06:13'),(192,'<em>Let me not love thee if l love thee not</em> illustrates','metaphor','proverb','paradox','meiosis','','','c','','wassce','2015',93,'Admin','2016-12-12 05:41:50','2020-06-24 08:59:16'),(193,'__________ is a literary device used to express something unpleasant in a more acceptable manner','Epilogue','Epigram','Euphemism','Eulogy','','','c','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-06-22 18:51:42'),(194,'The writer’s attitude to the couple is one of','resignation','indifference','patronage','praise','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','a','','wassce','2015',97,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:18'),(195,'The dominant literary device used in the passage is','litotes','personification','simile','paradox','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',90,'Admin','2016-12-12 05:41:50','2020-06-25 11:56:29'),(196,'The rhetorical question that ends the passage stresses the','wickedness of thieves','poverty of the couple','security of the hut','filthiness of the surroundings','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',83,'Admin','2016-12-12 05:41:50','2020-06-25 11:49:23'),(197,'The expression ‘such a rude room of such a poor pair’ illustrates','onomatopoeia','pun','rhyme','alliteration','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',73,'Admin','2016-12-12 05:41:50','2020-07-04 00:06:13'),(198,'The setting is','dawn','sunset','midday','night','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',90,'Admin','2016-12-12 05:41:50','2020-06-23 18:01:13'),(199,'The rhyme scheme is','aabbccddeeff','ababababaabb','abcaabbcabab','abbaabcaabab','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',84,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:17'),(200,'The theme of the poem is','the love of mother','invoking the spirit of womanhood','admiration for women’s hard work','the suffering of women','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',84,'Admin','2016-12-12 05:41:50','2020-06-25 11:47:16'),(201,'The literary device used in line 7 is','conceit','personification','hyperbole','pathos','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',82,'Admin','2016-12-12 05:41:50','2020-07-05 07:48:06'),(202,'The poet’s tone is one of','sadness','joy','condemnation','sarcasm','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',85,'Admin','2016-12-12 05:41:50','2020-06-22 21:21:23'),(203,'“To bring forth sons and daughters brave” illustrates','paradox','zeugma','inversion','epigram','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','c','','wassce','2015',83,'Admin','2016-12-12 05:41:50','2020-07-05 13:46:39'),(204,'The speaker is','Gonzalo','Antonio','Prospero','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',94,'Admin','2016-12-12 05:41:50','2020-07-06 16:57:28'),(205,'The addressee is','Ariel','Ferdinand','Caliban','Miranda','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',72,'Admin','2016-12-12 05:41:50','2020-07-04 11:53:19'),(206,'The “impostor” is','Sebastian','Antonio','Ferdinand','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',105,'Admin','2016-12-12 05:41:50','2020-07-07 09:03:27'),(207,'The “advocate” and the “impostor” are','conspirators','enemies','suspicious of each other','attracted to each other','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',77,'Admin','2016-12-12 05:41:50','2020-07-06 10:26:08'),(208,'The speaker’s utterance betrays his','anger','pretense','hatred','sorrow','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','b','','wassce','2015',84,'Admin','2016-12-12 05:41:50','2020-07-04 11:53:19'),(209,'The speaker is','Gonzalo','Antonio','Sebastian','Alonso','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',107,'Admin','2016-12-12 05:41:50','2020-07-04 00:06:13'),(210,'“these words” refer to','the shipwreck','the son’s disappearance','the daughter’s wedding','Prospero’s magic','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','b','','wassce','2015',79,'Admin','2016-12-12 05:41:50','2020-06-25 11:45:32'),(211,'Where did the wedding take place?','Algiers','Milan','Tunis','Naples','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','c','','wassce','2015',93,'Admin','2016-12-12 05:41:50','2020-07-04 00:06:13'),(212,'The setting is','outside Prospero’s cell','on a ship','in front of Prospero’s cell','another part of the island','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',71,'Admin','2016-12-12 05:41:50','2020-06-24 08:59:16'),(213,'“.... in my rate” means','I’m very certain','so far as I can see','there’s no doubt','as it appears','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',94,'Admin','2016-12-12 05:41:50','2020-06-23 11:18:06'),(214,'Ariel has ‘come’ because','he has been invited by Prospero','he wants to make a request','he desires a meeting','flying is no problem to him','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',84,'Admin','2016-12-12 05:41:50','2020-06-26 18:35:17'),(215,'Prospero has actually','raised a storm at sea','punished Miranda','dismissed Fedinand','commanded Ariel to disappear','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',91,'Admin','2016-12-12 05:41:50','2020-06-24 09:02:49'),(216,'Before Ariel’s entry','Ferdinand has brought in some wood','Prospero has put Miranda to sleep','Caliban had been swearing at Prospero','Trinculo had discovered Caliban’s cloak','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',92,'Admin','2016-12-12 05:41:50','2020-06-23 15:51:17'),(217,'‘Ariel and all his quality’ mean Ariel and','all at his command','the quality of a spirit','his band of spirits','an ability to cause mischief','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','d','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-07-05 13:46:39'),(218,'Soon after, Ariel','files off to do his duty','recounts the confusion on board the ship','kneels down to worship Prospero','calls Ceres and another spirit','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',99,'Admin','2016-12-12 05:41:50','2020-07-04 00:06:13'),(219,'X and Y are','Antonio and Alonso','Sebastian and Alonso','Antonio and Gonzalo','Sebastian and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','a','','wassce','2015',93,'Admin','2016-12-12 05:41:51','2020-06-20 16:28:43'),(220,'“We two” are','Antonio and Adrian','Sebastian and Adrian','Sebastian and Francisco','Antonio and Sebastian','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',123,'Admin','2016-12-12 05:41:51','2020-07-04 11:53:19'),(221,'The situation in the extract is highly','satirical','prophetic','ironical','comical','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','c','','wassce','2015',88,'Admin','2016-12-12 05:41:51','2020-07-05 18:09:44'),(222,'What has happened to all the other characters in the scene?','They have been made deaf and dumb','Ariel has put them all to sleep','They have been sent away','Prospero has put them to sleep','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','b','','wassce','2015',90,'Admin','2016-12-12 05:41:51','2020-07-04 11:53:19'),(223,'The “two” later plot to','kill all the other characters','escape from the island','kill Prospero and Miranda','kill Alonso and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',95,'Admin','2016-12-12 05:41:51','2020-07-05 12:54:12'),(224,'‘I simply don’t understand what the matter with everybody is today. Everybody let me down, and ...’ The speaker above is referring to','Fosuwa and Maidservant','Hannah and George','Aaron and Maanan','Lawyer B and Mrs B','Based on J.C. De Graft’s  \tSons and Daughter. ','','b','','utme','2010',130,'Admin','2016-12-12 07:52:46','2020-07-06 20:44:05'),(225,'Maanan expresses dislike for Lawyer B because of','his condemnation of  her choice career','his recent advances towards her','the betrayal of her father’s trust','the betrayal of his wife’s trust','Based on J.C. De Graft’s  \tSons and Daughter. ','','c','','utme','2010',126,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(226,'The traditional order in the play is represented by','Mrs. B','Hannah','Maanan','Aunt','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',130,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(227,'Where does the play take place?','On the street','In George’s place','In Aunt’s house','In Ofosu’s place','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',125,'Admin','2016-12-12 07:52:47','2020-07-07 09:03:27'),(228,'‘O’ deadly sin! O rude unthankfulness! Thy fault our law calls death, but the kind Prince, Taking thy \t\tpart, hath rushed aside the law and turned that black word.....’ Deadly sin refers to the','suicide of Juliet','suicide of  Romeo','murder of  Paris','murder of  Tybalt','Based on William Shakespeare’s  \tRomeo and Juliet.','','d','','utme','2010',114,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(229,'The play is mostly written in','blank verse','free verse','metres','foot','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',98,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(230,'‘O” serpent heart, hid with a flowering face!’ The statement refers to','Juliet','Romeo','Tybalt','Benvolio','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',120,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(231,'The spatial setting of the play is','Athens','Verona','Padua','Venice','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',120,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(232,'Romeo is banished to Mantua because he','kills Tybalt in a street duel','marries Juliet without parental consent','attends Capulet’s party uninvited','attempts to kill Paris his rival','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',149,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(233,'In the novel, the society puts high value on','egalitarianism','male ascendancy','procreation','gender equity','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',124,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(234,'The medicine man links the lump discovered on the head of Nnu Ego at birth, to the','possession of physical admirable qualities that makes her an epitome of perfection','wound inflicted on the slave woman buried with Agbadi’s wife','coming back of the Agunwa to the society to live again','ill-luck and tragic events attributed to a predestined fate.','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',130,'Admin','2016-12-12 07:52:47','2020-07-07 09:03:27'),(235,'The constant companions of  Nnaife family are','togetherness and happiness','poverty and hunger','sickness and joblessness','disagreement and humiliation','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',131,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(236,'The disagreement between Mvondo and Nticentres on the latter’s claim to have','Assisted Meka in getting the medal','eaten the entire entrails of a sheep','eaten more than his share of the food','been in a Whiteman’s office','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','a','','utme','2010',104,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(237,'In the novel, the colonialists treat the Africans with','kids gloves','disdain','indifference','honour','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','b','','utme','2010',114,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(238,'The Ministry of Peace is concerned with making','instruments','weapons','wars','reconciliation','Based on George Orwell’s  \tNineteen Eighty-Four.','','d','','utme','2010',118,'Admin','2016-12-12 07:52:47','2020-07-07 09:03:27'),(239,'The subject matter of the novel is','Totalitarian dictatorship','exploitation and cruelty','retributive justice','class segregation','Based on George Orwell’s  \tNineteen Eighty-Four.','','a','','utme','2010',123,'Admin','2016-12-12 07:52:47','2020-07-07 09:03:27'),(240,'How did Winston start his rebellion against the state?','By engaging in anti-party activities','By keeping a private diary','When he started a secret affair','When he spied on the party','Based on George Orwell’s  \tNineteen Eighty-Four.','','b','','utme','2010',118,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(241,'The party seeks power for','the nation','its own sake','its members','peoples’ sake','','','b','','utme','2010',131,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(242,'A play which mainly aims at provoking excessive laughter is \tcalled','a tragi-comedy','comedy','a farce','satire','','','c','','utme','2010',115,'Admin','2016-12-12 07:52:47','2020-07-06 21:27:17'),(243,'Both comedy and tragedy have','happy ending','climax','tragic hero','stanza','','','b','','utme','2010',128,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(244,'A formal dignified speech or writing praising a person or a thing for past or present deeds is','premiere','eulogy','anthology','lampoon','','','b','','utme','2010',124,'Admin','2016-12-12 07:52:47','2020-07-07 09:03:27'),(245,'The narrative style in which the hero tells his own story directly is the','objective','subjective','first-person','third-person','','','c','','utme','2010',123,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(246,'The physical, historical or cultural background of a literary work is referred to as','episode','plot','time','setting','','','d','','utme','2010',126,'Admin','2016-12-12 07:52:47','2020-07-06 19:29:45'),(247,'A plot structure that defies chronology can be described as','open-ended','circular','episodic','organic','','','c','','utme','2010',131,'Admin','2016-12-12 07:52:47','2020-07-07 09:03:27'),(248,'Pun as a literary device deals with','placing two opposite phrase','placing words side by side','playing on words','arrangement of words','','','c','','utme','2010',116,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(249,'In a narrative poem, the poet attempts to','summarize a story','describe a place','preach a sermon','tell a story','','','d','','utme','2010',136,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(250,'The account of experiences of an individual during the course \tof a journey is known as','a travelogue','an autobiography','a catalogue','a memoir','','','a','','utme','2010',124,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(251,'Satirical writing employs','epigram','synecdoche','irony','onomatopoeia','','','c','','utme','2010',125,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(252,'The person being addressed above is a','soldier','student','domestic servant','lawyer','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','c','','utme','2010',111,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(253,'From the tone of the speech above, the speaker is obviously','enraged','lackadaisical','elated','happy','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','a','','utme','2010',130,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(254,'The mood conveyed in the excerpt above is one of','sadness','frustration','sympathy','dilemma','‘That year the harvest was sad, like a funeral, and many farmers wept as they dug up the miserable yams. One man tied his cloth to a tree branch and hanged himself.’ (Chinua Achebe: Things Fall Apart)','','a','','utme','2010',130,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(255,'The rhyme scheme in the excerpt above is','bbaa','aabb','abab','abba','That age is best which is the first,<br> \tWhen youth and blood are warmer, <br> \tBut being spent, the worse, and worst <br> \tTime still succeed the former. ','','c','','utme','2010',125,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(256,'The subject matter of the extract above is','Storm','sea waves','house movement','earthquake','But the towering earth was tired sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of a million years was lost\t','','d','','utme','2010',110,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(257,'From the poem above, shadow means','famine','bleak future','period of sufferings','abstract ideas','And your laughter like a flame<br>\t \tPiercing the shadows<br> \tHas revealed Africa to me beyond<br> \tThe snow of yesterday<br>','','c','','utme','2010',143,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(258,'The speaker in the excerpt above is','hopeless','uncertain','afraid','confident','Don’t panic. Be calm. If you are somehow upset.... try to regain your exposure.','','c','','utme','2010',128,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(259,'The poem can be described as','a lyric','an epic','a sonnet','an elegy','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',136,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(260,'The theme of the poem is','futility of  life','distortion of  life','creation of  life','vanity of  life','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',111,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(261,'The rhyme scheme of the stanza above is','aabb','abab','bbaa','abba','A cursing rogue with a merry farce,<br>  \tA bundle of rags upon a crutch, ,<br> \tStumbled upon that windy place,<br> \tCalled cruachan, and it was as much.\t','','b','','utme','2010',119,'Admin','2016-12-12 07:52:48','2020-07-06 19:29:45'),(262,'In the play, Fasuwa represents the','new culture','patriarchy','old order','African civilization.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',115,'Admin','2016-12-12 10:46:52','2020-06-20 16:22:58'),(263,'The play opens with a conversation between Aaron and Awere about','Aaron’s choice of course','Maanan’s encounter with the lawyer','George and Kofi','Hannah and George.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',94,'Admin','2016-12-12 10:46:52','2020-06-23 18:39:36'),(264,'‘I still think you can do something about it... persuade him; make him see how frustrating the whole business is bound to be for you.’  <em>The whole business in the excerpt above refers to </em>','marriage proposal','career choice','business contract','political transition.','Based on J.C. De Graft’s Sons and  \tDaughters.','','b','','utme','2008',103,'Admin','2016-12-12 10:46:52','2020-07-07 09:03:27'),(265,'The central conflict in the play is','religious','romantic','generational','communal.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',111,'Admin','2016-12-12 10:46:52','2020-06-20 14:01:17'),(266,'The change in fortune is achieved in the play when','James agrees that Aaron and Maanan should study what they want','Lawyer B harasses Maanan in his office','Haanah, James’ wife convinces him','Aaron and Maanan agree to read the courses James chooses for them.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',120,'Admin','2016-12-12 10:46:52','2020-07-04 11:53:19'),(267,'‘l will be brief, for my short date of breath Is not so long as is a tedious tale.’ The statement above is in reference to the speaker’s','retirement','imminent death','state of health','short-tempered nature.','Based on William Shakespeare’s Romeo and Juliet.','','b','','utme','2008',115,'Admin','2016-12-12 10:46:53','2020-07-04 11:53:19'),(268,'Romeo’s death becomes inevitable because','Friar Lawrence’s letter is not delivered','Juliet is married to Paris','Romeo kills Tybalt in a duel','Juliet has committed suicide.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',116,'Admin','2016-12-12 10:46:53','2020-06-25 15:13:37'),(269,'The multiple deaths in the play serve as a punishment for','imposing life partner on Children','treating others with hatred','disobeying one’s own parents','shedding kinsmen’s blood.','Based on William Shakespeare’s Romeo and Juliet.','','a','','utme','2008',111,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:18'),(270,'The major reason for Juliet’s grief is','the death of her cousin','her reluctant marriage to the County','the banishment of her lover','her imminent death.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-25 11:42:01'),(271,'The chorus in the prologue of the play is essentially meant to','foreshadow the play','highlight the characters','estimate the actions','introduce the play.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',103,'Admin','2016-12-12 10:46:53','2020-07-04 11:53:19'),(272,'In the novel, Big Brother metaphorizes a','totalitarian authority','benevolent leader','revolutionary leader.','party brotherhood.','Based on George Orwell’s Nineteen  \tEighty-Four.','','a','','utme','2008',86,'Admin','2016-12-12 10:46:53','2020-06-23 15:46:32'),(273,'In the novel, Orwell attempts to','satirize the artificiality of a machine ‘controlled society','eulogize the beauty of the socialist system','condemn the disgusting hypocrisy of all communist    \t systems','laud the boundless possibilities of the human intellect.','Based on George Orwell’s Nineteen  \tEighty-Four.','','c','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-22 17:42:29'),(274,'Winston Smith begins his rebellion against the power of the state by','purchasing arms','keeping a private diary','opposing the law','educating the youth.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',84,'Admin','2016-12-12 10:46:53','2020-06-20 15:59:09'),(275,'The Ministry of Truth is concerned with','news, entertainment, education and fine arts','propaganda, war, publishing and enlightenment','investigation, propaganda and fine arts','economic affairs, education and propaganda.','Based on George Orwell’s Nineteen  \tEighty-Four.','','d','','utme','2008',117,'Admin','2016-12-12 10:46:53','2020-07-06 20:44:05'),(276,'The events following the ceremony confirm Meka’s','disillusion with the whites','satisfaction with the medal','contribution to the colonialists','admiration for the church.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','a','','utme','2008',111,'Admin','2016-12-12 10:46:53','2020-06-23 18:13:36'),(277,'“ ‘ By my mother!’ said Engamba. The night rat doesn’t tell what happened to him in the dark! Men are born and die...”  In the statement above, The night rat doesn’t tell what happened to him in the dark! refers to','the Whiteman’s treatment of Meka','Meka’s treatment of the medal in the whitewashed circle','people’s unwillingness to talk about how Whiteman treat them','people’s freedom of expression.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',144,'Admin','2016-12-12 10:46:53','2020-07-07 09:03:27'),(278,'In the novel, the expression  <em>fobreak the leg of an antelope</em> means','hunting','marriage','fighting','honeymoon.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',95,'Admin','2016-12-12 10:46:53','2020-06-23 15:44:44'),(279,'Ona has to leave her father’s house because','of her love for Agbadi','that is the tradition','her father is dead','of the safety of her child.','Based on Buchi Emecheta’s The Joys of Motherhood.','','a','','utme','2008',103,'Admin','2016-12-12 10:46:53','2020-07-03 11:35:35'),(280,'Nnaife’s conscription into the army is portrayed as part of','family conflict','British oppression','family tradition','societal intrigue.','Based on Buchi Emecheta’s The Joys of Motherhood.','','d','','utme','2008',103,'Admin','2016-12-12 10:46:53','2020-06-25 11:06:31'),(281,'The attitude of Nnu Ego when she was told that her Chi would not give her a child is one of','indifference','despair','apathy','hope.','Based on Buchi Emecheta’s The Joys of Motherhood.','','b','','utme','2008',103,'Admin','2016-12-12 10:46:53','2020-06-23 11:21:36'),(282,'The subject matter of Adeoti’s Naked Soles is','soul and mind','hunger and strife','suffering and despair','hatred and bitterness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',105,'Admin','2016-12-12 10:46:53','2020-07-04 00:06:13'),(283,'Rubadiri’s <em>An African Thunderstorm</em> appeals to the readers’ sense of','sight and taste','feeling and sight','smell, taste and hearing','sight, smell and hearing.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','b','','utme','2008',104,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:17'),(284,'‘The experts, of course Disagree. The urine test they ordered Said, Negative.’ The lines above from Acqah’s “In the Navel of the Soul” depict','contradiction','inevitability','progress','awareness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','a','','utme','2008',104,'Admin','2016-12-12 10:46:53','2020-07-05 07:48:06'),(285,'In Kunene’s ‘A Heritage of Liberation,’ freedom is to be achieved through the efforts of','the old generation','new generation','present generation','successive generations.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',109,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:17'),(286,'Launko’s ‘End of the’ War suggests that war brings about','ultimate solution to all problems','partial solution to problems','multifaceted problems','only temporary relief.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',108,'Admin','2016-12-12 10:46:53','2020-07-05 09:02:47'),(287,'The persona in the poem <em>Give Me The Minstrel’s Seat</em> discourages','togetherness','hatred','isolation','poverty.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',103,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:18'),(288,'Marvel’s To ‘His Coy Mistress’ is written mainly in','alternate rhymes','blank verse','heroic couplets','middle rhymes.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-07-07 09:03:27'),(289,'The attitude of the poet-persona to bats, in Lawrence’s Baf is one of','satisfaction','reverence','hatred','repulsion.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',120,'Admin','2016-12-12 10:46:53','2020-07-05 20:20:17'),(290,'The language used, in Eliot’s ‘The Journey of the’ Magi is generally','difficult','complex','simple','complicated.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',117,'Admin','2016-12-12 10:46:53','2020-06-23 17:38:42'),(291,'In Cope’s <em>Sonnet VII</em>, poetry is','a popular act','a boring act','an idle hobby','a useless undertaking.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',114,'Admin','2016-12-12 10:46:53','2020-07-05 07:43:12'),(292,'An interlude is a brief','presentation in the interval of a dramatic performance','play before the main dramatic performance','presentation after the main dramatic performance','dialogue between two persons.','Based on General Literary Principles.','','a','','utme','2008',122,'Admin','2016-12-12 10:46:53','2020-06-26 18:35:18'),(293,'An epic is a heroic story which includes','ballad','lyric','myth','dialogue.','Based on General Literary Principles.','','c','','utme','2008',109,'Admin','2016-12-12 10:46:53','2020-07-06 21:27:17'),(294,'Farce can be described as a dramatic piece marked by','movement from serious to the light-hearted mood','comic and exaggerated actions','actions devoid of meaning','gloomy actions with momentary reliefs.','Based on General Literary Principles.','','b','','utme','2008',102,'Admin','2016-12-12 10:46:53','2020-06-25 11:09:03'),(295,'A long story narrating a series of complicated events is called a','saga .','discourse','monologue','harangue.','Based on General Literary Principles.','','d','','utme','2008',121,'Admin','2016-12-12 10:46:53','2020-07-04 00:06:13'),(296,'Oxymoron is the use of two contrasting words that are','placed far apart','different in meaning','placed side by side','similar in meaning.','Based on General Literary Principles.','','c','','utme','2008',99,'Admin','2016-12-12 10:46:54','2020-07-07 09:03:27'),(297,'A line or a group of lines repeated in the course of a poem is called','chorus','refrain','repetition','prologue.','Based on General Literary Principles.','','b','','utme','2008',87,'Admin','2016-12-12 10:46:54','2020-07-07 09:03:27'),(298,'Limerick is a light verse which consists of five lines that are','anapestic','trochaic','spondaic','dactylic.','Based on General Literary Principles.','','d','','utme','2008',93,'Admin','2016-12-12 10:46:54','2020-06-23 12:49:17'),(299,'A short narrative or lyrical poem intended to be sung is a','leich','lay','lauda','letrilla.','Based on General Literary Principles.','','a','','utme','2008',107,'Admin','2016-12-12 10:46:54','2020-06-25 23:38:59'),(300,'A figurative device in which a statement is made and then withdrawn is referred to as','metanoia','metaphysical','metalanguage','metalepsis.','Based on General Literary Principles.','','d','','utme','2008',103,'Admin','2016-12-12 10:46:54','2020-07-06 23:45:32'),(301,'A literary work which imitates another in a distorted form is called','exodium','isocohen','metonymy','burlesque.','Based on General Literary Principles.','','d','','utme','2008',101,'Admin','2016-12-12 10:46:54','2020-06-25 11:09:03'),(302,'‘You do not have to be brutal to be a soldier, or rather you are brutal not because you are a soldier, but because there is a sadist, a rapist, a fascist and a murderer in you who is waiting for war and army uniforms to give them expression.’ ( Festus lyayi: Heroes ) The speaker here contends that','soldiers are generally wicked','human nature has to do with a profession','soldiers are characteristically gentle','the latent brutality in man finds expression in war.','based on Literary Appreciation.','','b','','utme','2008',131,'Admin','2016-12-12 10:46:54','2020-06-26 18:35:17'),(303,'‘But the towering earth was tired of sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of million years was lost.’ The subject matter of the passage is','earthquake','Demolition','flood','storm.','based on Literary Appreciation.','','a','','utme','2008',100,'Admin','2016-12-12 10:46:54','2020-06-23 17:38:42'),(304,'The image depicted is one of','destruction','dejection','happiness','admiration.','based on Literary Appreciation.','','a','','utme','2008',103,'Admin','2016-12-12 10:46:54','2020-06-22 19:01:24'),(305,'The tone of the poem above is','satiric','affectionate','indifferent','sympathetic.','based on Literary Appreciation.','','b','','utme','2008',113,'Admin','2016-12-12 10:46:54','2020-07-04 00:06:13'),(306,'Life, though a vanity Yet, not purposeful In drawling<br> resignation Life’s spice is in strive<br> From the extract above, the poet suggests that','life is full of care','there can’t be life without strive','life is worthwhile without care','strive makes life worth living.','based on Literary Appreciation.','','b','','utme','2008',94,'Admin','2016-12-12 10:46:54','2020-07-06 21:27:17'),(307,'The subject of the poem above is','a prostitute','the lying father','the son','the orphan.','based on Literary Appreciation.','','c','','utme','2008',92,'Admin','2016-12-12 10:46:54','2020-06-20 12:47:17'),(308,'The dominant rhetorical device in the excerpt above is','rhyme','alliteration','repetition','onomatopoeia.','based on Literary Appreciation.','','b','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-06-24 08:20:29'),(309,'The expression “The child is the father of the man” in the poem above is an example of','paradox','metaphor','simile','ellipsis','based on Literary Appreciation.','','a','','utme','2008',130,'Admin','2016-12-12 10:46:54','2020-07-03 05:03:51'),(310,'The technique employed in narrating the excerpt above is','flashback','stream of consciousness','foreshadowing','play-within-the-play.','based on Literary Appreciation.','','b','','utme','2008',119,'Admin','2016-12-12 10:46:54','2020-06-25 11:03:08'),(311,'The poet’s tone above can be described as','lamentative','satiric','imploring','adoring.','based on Literary Appreciation.','','a','','utme','2008',115,'Admin','2016-12-12 10:46:54','2020-06-27 12:56:48'),(312,'In the play, the character of Lawyer B is represented through the use of','flashback','dialogue','play-within-the-play','irony','','','d','','utme','2009',98,'Admin','2016-12-12 17:55:00','2020-07-05 12:55:32'),(313,'James Ofosu’s desire is to see Maanan trained as','a choreographer','an attorney','an accountant','a surgeon','','','b','','utme','2009',113,'Admin','2016-12-12 17:55:00','2020-06-23 18:33:36'),(314,'The plot of the play is,','linear','cyclical','complicated','episodic','','','d','','utme','2009',116,'Admin','2016-12-12 17:55:01','2020-07-06 21:27:17'),(315,'What causes the strained relationship between James and Lawyer B?','Betrayal of trust','Standard of education','Working experience','Family differences','','','a','','utme','2009',129,'Admin','2016-12-12 17:55:01','2020-07-05 07:43:12'),(316,'‘Now look what we have: a permanent bloom of ugly paper flowers! The device used by Aaron in the excerpt above is','suspense','rhetorical question','oxymoron','allegory','','','c','','utme','2009',113,'Admin','2016-12-12 17:55:01','2020-07-07 09:03:27'),(317,'When Friar Lawrence asks if the bride is ready, he wants to know if','Juliet is prepared','Rosaline is prepared','the corpse is ready','the bride is dressed','based on William Shake¬speare’s  \tRomeo and Juliet.','','c','','utme','2009',101,'Admin','2016-12-12 17:55:01','2020-06-24 10:03:28'),(318,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nWhat makes Juliet’s night so tedious is the','murder of Tybalt by Romeo','arranged marriage between her and Paris','Eagerness’ to be married to Romeo','unconsummated marriage with Romeo','based on William Shake¬speare’s  \tRomeo and Juliet.','','d','','utme','2009',99,'Admin','2016-12-12 17:55:01','2020-06-23 15:52:06'),(319,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nThe literary device used in the excerpt is','euphemism','simile','sarcasm','bathos','based on William Shake¬speare’s  \tRomeo and Juliet.','','b','','utme','2009',106,'Admin','2016-12-12 17:55:01','2020-07-06 16:57:28'),(320,'The atmosphere of tragedy in the play is created through the use of','dreams and foreboding','fights and quarrels','wars and hatred','ideas and dramatization','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',105,'Admin','2016-12-12 17:55:01','2020-06-23 17:31:05'),(321,'Shakespeare depicts love and idealism through the','party at tire Capulets’','lovers’ tomb at the end','brawl between Romeo and Tybalt','balcony scene in the second Act.','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',111,'Admin','2016-12-12 17:55:01','2020-06-23 18:01:13'),(322,'In the novel, the party approves separation of couples only','on condition of infidelity','where there are no children','in situation of irreconcilable differences','on the death of one of the couples','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',125,'Admin','2016-12-12 17:55:01','2020-07-07 09:03:27'),(323,'One of the themes of the novel is','colonialism','repression','senility','destruction','based on George Orwell’s  \tNineteen Eighty-Four','','b','','utme','2009',114,'Admin','2016-12-12 17:55:01','2020-06-25 11:30:46'),(324,'Newspeak, the official language of Oceania, is devised to','meet the ideological needs of Ingsoc','help devoted party men and women','provide a medium of expression for world-view only','assist by cutting the choice of words for party members.','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',113,'Admin','2016-12-12 17:55:01','2020-06-26 18:35:17'),(325,'The main concern of Winston in the novel is to','take power for himself','acquire wealth','overthrow the party','bring social change','based on George Orwell’s  \tNineteen Eighty-Four','','d','','utme','2009',97,'Admin','2016-12-12 17:55:01','2020-06-25 11:32:22'),(326,'“We are hereto die of raget !say die of rage because this time the uncircumcised have gone too far...” The word uncircumcised in the statement above by Nli refers to','Nua and Mvondo','the whites','the people of Doum','the white farmers.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','b','','utme','2009',91,'Admin','2016-12-12 17:55:01','2020-06-25 23:38:59'),(327,'The only two sons of Meka die fighting for','independence','the colonialists','the church','the in people.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',103,'Admin','2016-12-12 17:55:01','2020-06-25 23:38:59'),(328,'In the novel; Africanness is .achieved in both','setting and characterization','narration and style','diction and syntax','pun and style','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',95,'Admin','2016-12-12 17:55:01','2020-07-05 12:55:32'),(329,'What prompts Nnu Ego to run to the effigy of her chi is that ...','she is worried and sick','she is pregnant','the chi asks her to come','milk is dripping from her breasts.','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','d','','utme','2009',111,'Admin','2016-12-12 17:55:02','2020-06-25 11:28:50'),(330,'In the society of Nwokocha Agbadi, a man’s social rating determined by his','oratorical power','physical prowess','gentle men','altruistic actions','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',126,'Admin','2016-12-12 17:55:02','2020-07-07 09:03:27'),(331,'‘look at me jubilant for being given another opportunity to \tlive longer, and see this foolish woman eager to end her own life when her Maker is not yet ready for her...’The opportunity referred to in the extract above is','the misunderstanding between Nnaife and his wife','narrowly escaping being knocked down','the driver’s encounter with Nnu Ego','ominous visit of Agunwa','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',107,'Admin','2016-12-12 17:55:02','2020-06-23 11:21:36'),(332,'Thorn in “Adeoti’sNaked Soles” symbolizes','victory','bleakness','destruction','suffering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',90,'Admin','2016-12-12 17:55:02','2020-06-23 12:30:56'),(333,'‘Pregnant clouds Ride Safely on its back’ Pregnant clouds in Rubadiri’s “An AfricanThunderstorm implies”','uncertainty','calmness','disbelief','fertility','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',117,'Admin','2016-12-12 17:55:02','2020-06-26 18:35:18'),(334,'The phrase the sunset in Kunene’s “A Heritage of Liberation” refers to','critical need','old age','patience','caution','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',122,'Admin','2016-12-12 17:55:02','2020-06-26 18:35:18'),(335,'‘The silence of the battlefield heralds the widow’s anguish’ The widow in the lines above in Launko’s “Endof the War” is in anguish because of the','confirmation of her husband’s death','uncertainty over her husband returning alive','delay in the husband’s return from the battlefield','death of all the soldiers in the battlefield','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',105,'Admin','2016-12-12 17:55:02','2020-06-25 11:47:16'),(336,'The end of “Give Me The Minstrel’s Seat”, seems to suggest that one needs the','support of others','complete command of one’s wives','support of one’s kinsmen','aid of poets','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',116,'Admin','2016-12-12 17:55:02','2020-07-07 09:03:27'),(337,'According to “Give Me The Minstrels Seat”, a woman is','a necessary evil','only fulfilled when married','naturally jealous','a harbinger of good luck','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',103,'Admin','2016-12-12 17:55:02','2020-06-25 23:38:59'),(338,'In Marvel’s “To His Coy Mistress”, the poet-persona tries to','Build up the climax of expectation of women','discuss how a woman labour hard','meet the people’s expectation in a religious adventure','discuss the nature of man and the value of time.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',93,'Admin','2016-12-12 17:55:02','2020-07-05 13:46:39'),(339,'In Lawrence’s Bat, the poet’s attitude to bat is one of','fear','sarcasm','contempt','flattering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',99,'Admin','2016-12-12 17:55:02','2020-06-23 18:43:11'),(340,'The first stariza of Eliot’s “The Journey of the Magi” depict the','hazards of the journey','increment of fortune for the pilgrims','blind acceptance of faith','journey as an influential factor.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',110,'Admin','2016-12-12 17:55:02','2020-06-25 23:38:59'),(341,'In cope’s “Sonnet VII”, poets are presented; as','recluses','travelers','sociologists','searchers','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',118,'Admin','2016-12-12 17:55:02','2020-06-25 11:09:03'),(342,'A poetic devices in which an idea in a line runs into another is called','rhyme scheme','enjambment','end rhyme','pathos','based on General Literary Principles.','','b','','utme','2009',121,'Admin','2016-12-12 17:55:02','2020-07-04 11:53:19'),(343,'The use of sound pattern to suggest meaning in poetry is','rhythm','mimics','lyric','metonymy','based on General Literary Principles.','','a','','utme','2009',119,'Admin','2016-12-12 17:55:02','2020-06-25 23:38:59'),(344,'A conscious imitation of a literary work by another with the aim of ridicule is','mimesis','performance','mockery','parody','based on General Literary Principles.','','d','','utme','2009',109,'Admin','2016-12-12 17:55:02','2020-06-25 12:01:13'),(345,'The use of gestures to communicate in drama is known as','burlesque','soliloquy','mime','melodrama','based on General Literary Principles.','','c','','utme','2009',112,'Admin','2016-12-12 17:55:03','2020-07-07 09:03:27'),(346,'A short and witty remark is','a limerick','a tercel','an epigram','a litotes','based on General Literary Principles.','','c','','utme','2009',102,'Admin','2016-12-12 17:55:03','2020-06-26 18:35:17'),(347,'An expression that signifies a whole through its significant parts is','synesthesia','synecdoche','metonymy','allegory','based on General Literary Principles.','','b','','utme','2009',98,'Admin','2016-12-12 17:55:03','2020-06-25 11:30:46'),(348,'a structural arrangement of units of composition by which one element of equal importance with another is similarly placed is called','repetition','paradox','refrain','parallelism','based on General Literary Principles.','','d','','utme','2009',95,'Admin','2016-12-12 17:55:03','2020-06-25 11:48:35'),(349,'The pride that contributes to the fall of a tragic character in a play is known as','hamartia','catharsis','hubris','epistasis','based on General Literary Principles.','','a','','utme','2009',111,'Admin','2016-12-12 17:55:03','2020-06-24 20:35:01'),(350,'metrical foot of two stressed or long syllables is called','a spondee','a trochee','an anapest','an iamb','based on General Literary Principles.','','a','','utme','2009',111,'Admin','2016-12-12 17:55:03','2020-07-04 00:06:13'),(351,'A group of three lyric stanzas in classical Greek poetry is referred to as','triplet','triolet','trilogy.','triad','based on General Literary Principles.','','b','','utme','2009',108,'Admin','2016-12-12 17:55:03','2020-06-22 17:35:22'),(352,'Biokun:  I did it for her! Let them laugh!<br>\\n\t\t\t\tLet them condemn me. I who have always <br>\t\\n\t\t\t\tderided superstition. I have gone bach to the <br>\\n\t\t\t\tshrine of Olokun. At least if he dies, Oroki <br>\\n\t\t\t\twill know I tried everything. <br>\\n\t\t\t\t(Femi I Qsofisan: No More the Wasted Breed)<br>\\nBiokun’s mood in this passage is one of','desperation','frustration','anger','anxiety','based on Literary Appreciation','','b','','utme','2009',123,'Admin','2016-12-12 17:55:03','2020-07-07 09:03:27'),(353,'\t‘My song is the root<br>\\n\ttouching other roots <br>\\n\tin a covenant below the crust..’<br>\\n\t(Niyi  Osundare: Waiting Laughters)<br>\\n\\nThe imagery used in the second line of the extract above is','olfactory','visual','tactile','auditory','based on Literary Appreciation','','c','','utme','2009',99,'Admin','2016-12-12 17:55:03','2020-06-23 17:38:42'),(354,'‘The huge sacrifice that <br>\\n\twards off death <br>\\n\tThe big offering that <br>\\n\tprevents diseases....’ <br>\\n\t( Temi Osofison: Morountodun ) <br>\\nThe poem above can best be described as','epic','heroic','praise','quatrain','based on Literary Appreciation','','d','','utme','2009',111,'Admin','2016-12-12 17:55:03','2020-07-07 09:03:27'),(355,'Why blame her who denies love for the asking <br><br>\\n\tAnd not the Birds and Moths and Beetles <br>\\n\tThat after deep draughts from rich nectar wells <br>\\n\tFlee the drained petals to virgin flowers. <br>\\nThe lines above are an indictment of','adultery','gluttony','flirtation','infertility','based on Literary Appreciation','','b','','utme','2009',96,'Admin','2016-12-12 17:55:03','2020-06-22 19:37:14'),(356,'\tOh, the market is set like the hub of a wheel <br>\\n\tAnd it pulfs \tlike a magnet strong <br>\\n\tIt is easy to tell <br>\\n\tHow it casts its spell <br>\\n\tAnd draws all the crowds along. <br><br>\\nThe sound device used in the extract above is','rhyme','alliteration','emphasis','assonance','based on Literary Appreciation','','a','','utme','2009',111,'Admin','2016-12-12 17:55:03','2020-06-26 18:35:18'),(357,'A reference beyond the immediate purview of what is being presented is known as','allusion','diversion','inversion','imagery','based on Literary Appreciation','','a','','utme','2009',113,'Admin','2016-12-12 17:55:03','2020-06-23 11:19:13'),(358,'‘The how is her barber’ The line is an example','metaphor','hyperbole','personification','litotes','based on Literary Appreciation','','a','','utme','2009',106,'Admin','2016-12-12 17:55:04','2020-07-04 00:06:13'),(359,'‘From the sky suspended <br>\\n\tthe strings of tattered pants <br>\\n\tmarched on trembling feet <br>\\n\tunder stone heavy-kits <br>\\n\tmarched, on their breast <br>\\n\tscared, monogram of skulls and bones.’ <br>\\n\t( Ossie Enejwe: Mass for the Dead ) <br><br>\\n“The subject matter of the extract above is','wastage','war','love','hatred','based on Literary Appreciation','','b','','utme','2009',107,'Admin','2016-12-12 17:55:04','2020-06-25 23:38:59'),(360,'‘Tonderai was assisted by the villages in placing his truck box into the back for the car and he got into the passenger side of the truck. Initially, he was a bit nervous and clearly uncomfortable, his young mind was asking how someone whom, he had almost caused a serious accident could be his benefactor.’ ( Daniel T. Manyika: Two worlds Apart )\\n\\n<br><br>The narrative point of view used in the extract above can best be described as','omniscient','subjective','panoramic','scenic','based on Literary Appreciation','','a','','utme','2009',102,'Admin','2016-12-12 17:55:04','2020-06-26 18:35:17'),(361,'‘Me to the Orangery<br> \\n\tSolitude invites, <br>\\n\ta wagtail, to tell the<br>  \t\t\t\\n\ttangled-wood-tale.’ <br>\\n\t( Christopher Okigbo: Heavengate ) <br><br>\\nThe complexity of the poem can be ascribed to the poet’s use of','archaic diction','structural inversion','compound words','extended met','based on Literary Appreciation','','b','','utme','2009',137,'Admin','2016-12-12 17:55:04','2020-07-04 00:06:13');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `entertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `entertainment` VALUES (1,'What year was ?Africa Queen? music track released by Tu-face Idibia?','2001','2002','2003','2004','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track ?African Queen? came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D?Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D?Banj  first album released?','2002','2005','2001','2004','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `fashion` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `fashion` VALUES (1,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,' ?Ole ku? dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Nigeria won Miss World','2000','2001','2002','2003','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknowledge` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `section` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'used by zh round 3',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknowledge` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many planets do we have?','10','9','8','6','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' What is the position of the Earth from the Sun?','1','2','3','4','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,' What year was Facebook created?','2001','2002','2003','2004','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'The first university in the world was?','Oxford','Al-Azhear of Cairo','Harvard','MIT','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year did Nigeria became a republic?','1960','1965','1963','1914','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,' What year did Tsunami occur','2000','2004','2005','2006','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' When did World War 1 started','1918','1901','1914','1910','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknwbrag` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknwbrag` VALUES (1,'What year was “Africa Queen” music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track “African Queen” came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo’ hit records','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D’Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D’Banj  first album released?','2002','2005','2001','2004','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'How many planets do we have?','10','9','8','6','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What is the position of the Earth from the Sun?','1','2','3','4','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What year was Facebook created?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'The first university in the world was…','Oxford','Al-Azhear of Cairo','Harvard','MIT','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' What year did Nigeria became a republic?','1960','1965','1963','1914','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' What year did Tsunami occur','2000','2004','2005','2006','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' When did World War 1 started','1918','1901','1914','1910','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(54,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(55,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(56,' ‘Ole ku’ dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(57,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(58,'What year did Nigeria won Miss World','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(59,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(60,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(61,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(62,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(63,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(65,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(66,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(67,'Who was the last successful Manchester United Coach?',' Sir Ali Ferguson.',' Alex Ferguson.',' Sir Alex Ferguson',' Sir Alex Fergson','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(68,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(69,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(70,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(71,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(72,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(74,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(75,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(76,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(77,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(78,'Which Nigeria football club won the Premiership title back –to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(79,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(80,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(81,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(82,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(83,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(84,'How many rings are in the Olympic colours?','6','5','4','3','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(85,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(86,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(87,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(88,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(89,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(90,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(91,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(92,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(93,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(94,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(95,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(96,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(97,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(98,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(99,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(100,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(101,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(102,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(103,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(104,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(105,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(106,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(107,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(108,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(109,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(110,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(111,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(112,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(113,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(114,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(115,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(116,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(117,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(118,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(119,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(120,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(121,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(122,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(123,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(124,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(125,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(126,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(127,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(128,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(129,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(130,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(131,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(132,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(133,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(134,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(135,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(136,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `geography` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=237 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `geography` VALUES (1,'The earth rotates through 150 of longitude once in  ','a minute  ','an hour  ','24 hours  ','a day','','','b','','post-utme','2006',157,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(2,'Aeolian erosion refers to the work of ','Plants ','Wind  ','Ice ','running water','','','b','','post-utme','2006',144,'Admin','0000-00-00 00:00:00','2020-07-05 23:34:28'),(3,'The scale of a map is the ratio between the  ','distance over the land and the distance over the water ','distance on the map and the distance on the globe ','vertical and horizontal differences  ','distance on the map and that on the earth’s surface ','','','d','','post-utme','2006',139,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(4,'Which of the following scales should show the greatest amount of detail on a map?  ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2006',138,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(5,'Which of the following statements is not true for lines of latitude?  ','they form parallel circles   ','they range from 00 to 1800 N and S  ','only one line is also a Great Circle ','They form parallel circles','','','b','','post-utme','2006',148,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(6,'Large in area and high in population, which of the following countries fits this description?','Lesotho  ','Togo ','Nigeria  ','Zaire','','','c','','post-utme','2006',174,'Admin','0000-00-00 00:00:00','2020-07-05 12:06:12'),(7,'One of these is NOT a landform in Africa   ','Scarp ','Inselberg  ','Drumlin','Doline','','','c','','post-utme','2006',167,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(8,' Which of these does not lie in the principal earthquake region of the world? ','Japan ','Kenya  ','Iran   ','Turkey ','','','b','','post-utme','2006',142,'Admin','0000-00-00 00:00:00','2020-06-24 06:27:31'),(9,'Which  of   these  soil  groups  is  considered   the  most  productive?   ','Chernozems   ','Latosols  ','Podozols   ','Sierozems','','','a','','post-utme','2006',158,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(10,'One example of inland drainage lake in  Africa is  ','Lake Chad ','Lake Victoria ','Lake Malawi ','Lake Turkana','','','a','','post-utme','2006',138,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:41'),(11,'The African river that crosses the equator twice is  ','Zaire ','Nile ','Mississippi  ','Amazon','','','a','','post-utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(12,'Some rivers in their delta regions breaks into many branches before entering the sea. These divisions are known as  ',' Creeks ','Distributaries','Tributaries ','Effluents','','','b','','post-utme','2006',155,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(13,'Kariba Dam is found in River  ','Zambezi ','Congo  ','Niger  ','Nile','','','a','','post-utme','2006',151,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:07'),(14,'The major air mass affecting the climate of West Africa in summer is the  ','harmattan wind  ','tropical continental  ','warm equatorial  ','tropical maritime ','','','b','','post-utme','2006',150,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(15,'If a map has a scale of 1:50,000 and a cocoa plantation is represented on the map by a rectangle 4cm by 3cm, what is the area of the plantation?  ','3 sq. km  ','30 sq. km  ','12 sq. km  ','20 sq. km','','','a','','post-utme','2006',156,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(16,'The gap between two ranges within which transportation is usually possible in a mountainous regions is called  ','Valley  ','Col  ','ridge  ','Spur','','','b','','post-utme','2006',131,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(17,'What are greenhouse gasses?  ','Gases found around green houses in botanical gardens  ','Gases which are able to trap heat on the earth surface  ','Gases which help global circulation of winds and plants it growths  ','Gases which help farmers grow certain crops during the dry seasons','','','b','','post-utme','2006',166,'Admin','0000-00-00 00:00:00','2020-07-04 20:24:53'),(18,'The doldrums refer to  ','land areas bordering the confluence of the blue and white Nile  ','areas intense weather activities around the Mediterranean  ','areas of South Atlantic where cold and warm currents meet  ','area within a few degrees north and south of the equator.','','','d','','post-utme','2006',138,'Admin','0000-00-00 00:00:00','2020-06-26 16:33:09'),(19,'Nigeria Sat I is designed by primarily to  ','help GSM provider in achieving a wide national coverage  ','strengthen rapid response by Nigeria’s Armed Forces  ','help in the 2006 Census  ','provide information about various regions of the earth','','','d','','post-utme','2006',149,'Admin','0000-00-00 00:00:00','2020-07-05 23:34:28'),(20,'The major sedimentary minerals found in Nigeria include:  ','tin, columbite and gold ','tin, coal and salt  ','limestone, columbite and diamond  ','limestone, petroleum and coal','','','d','','post-utme','2006',157,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:46'),(21,'The cloud which are white globular masses, forming ripples in the sky is called  ','Cirrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2006',147,'Admin','0000-00-00 00:00:00','2020-06-26 19:30:36'),(22,'Which of the following routes must have least gradient?  ','Motorway ','Rail line  ','Bush path  ','Carnal ','','','b','','post-utme','2006',143,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(23,'The foremost producers of petroleum in the Middle East are:  ','Saudi Arabia, Kuwait, Libya and Iran  ','Saudi Arabia, Iraq, Iran and Kuwait  ','Saudi Arabia, Iran, Venezuela and Oman ','Saudi Arabia, Iraq, Libya and Venezuela','','','b','','post-utme','2006',153,'Admin','0000-00-00 00:00:00','2020-07-05 19:50:42'),(24,'Which of the following is not an Anglophone country  ','Ghana  ','Gambia  ','Liberia  ','Senegal','','','d','','post-utme','2007',167,'Admin','0000-00-00 00:00:00','2020-06-23 23:57:31'),(25,'The shallow part of the sea which separates the deep from the land is called  ','off shore coastal lowland  ','the on-shore tidal current  ','continental shelf formation  ','coastal coral cliff ','','','c','','post-utme','2007',126,'Admin','0000-00-00 00:00:00','2020-06-23 21:53:24'),(26,'The port that handle the highest volume of cocoa export in Nigeria is  ','Sapele  ','Warri  ','Lagos  ','Port Harcourt','','','c','','post-utme','2007',142,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(27,'One major characteristics of rural settlements is that  ','are heterogeneous  ','are homogenous  ','are large in size  ','have more problems than urban settlements','','','b','','post-utme','2007',177,'Admin','0000-00-00 00:00:00','2020-06-26 19:05:36'),(28,'Industrialization in Nigeria can best be promoted through the development of  ','textile industry  ','leather industry  ','iron and steel industry  ','automobile industry ','','','c','','post-utme','2007',149,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(29,'Most of the industries located in rural areas are  ','low energy consumers  ','high energy consumers  ','raw materials oriented  ','transport oriented ','','','c','','post-utme','2007',168,'Admin','0000-00-00 00:00:00','2020-07-05 12:06:12'),(30,'The distribution of minerals resources in Nigeria is related to its:  ','relief  ','soil  ','vegetation  ','geology ','','','a','','post-utme','2007',145,'Admin','0000-00-00 00:00:00','2020-06-28 12:02:26'),(31,'Which of the ocean currents is classified as cool?  ','Benguela  ','Kuro Siwo  ','Gulf Scream  ','Mozambique ','','','a','','post-utme','2007',155,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:12'),(32,'The sea area with the highest degree of salinity is the ','Baltic Sea  ','Caspian Sea  ','Dead Sea  ','Mediterranean Sea','','','c','','post-utme','2007',141,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(33,'The thermometric scale usually employed to described the absolute temperature of the atmosphere is  ','Centigrade  ','Celsius  ','Kelvin  ','Fahrenheit ','','','c','','post-utme','2007',160,'Admin','0000-00-00 00:00:00','2020-07-06 10:25:19'),(34,'If the temperature at sea level in a particular place is 200C, place 3500m above sea level in the same area will have a temperature of  ','- 2.750C   ','2.250C  ','22750C  ','22.750C','','','a','','post-utme','2007',158,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(35,'Which of the following is not a form of precipitation? ','Dew   ','Snow   ','hail ','fog ','','','d','','post-utme','2007',148,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(36,'Which of the following pressure belts does not experienced descending air?  ','600N  ','600S  ','00 latitude   ','300N','','','a','','post-utme','2007',146,'Admin','0000-00-00 00:00:00','2020-07-05 19:50:42'),(37,'In the tropics, the most variable climatic element inter-annually is  ','temperature  ','solar radiation   ','pressure  ','prairies ','','','a','','post-utme','2007',161,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(38,'Soil that are formed by the wind deposition are called ','Laterites  ','loess  ','podsols  ','prairies ','','','b','','post-utme','2007',142,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(39,'Desert soil are usually deficient in ','fertility  ','light grey colour  ','humus content  ','horizons ','','','c','','post-utme','2007',152,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(40,'Podsols and laterites share the following characteristics in common, except  ','infertility  ','high degree of leaching  ','associated with forest vegetation  ','colour ','','','c','','post-utme','2007',135,'Admin','0000-00-00 00:00:00','2020-07-06 10:25:19'),(41,'The forest type which is the most rich in tree species is the  ','tropical  ','Deciduous  ','Coniferous  ','Mediterranean ','','','a','','post-utme','2007',141,'Admin','0000-00-00 00:00:00','2020-07-05 09:06:19'),(42,'Linseed oil is associated with  ','flax  ','coconut  ','olives  ','rapeseeds','','','a','','post-utme','2007',157,'Admin','0000-00-00 00:00:00','2020-07-06 14:19:58'),(43,'Which of the following is not correct with regards to the solar system?  ','The planets all orbit round the sun  ','The sun is only a source of the energy needed on the planets  ','The earth as well as other planets rotate round the sun  ','all the planets have definite orbits around the sun','','','c','','post-utme','2007',151,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(44,'Fossil fuel reserves are found in the Lake Chad basin because  ','The basin lies approximately along he axis on which the rich Bakassi oil fields are found  ','The basin is at the edge of the desert with conditions similar to that of Iraq  ','it is an inland drainage basin with many large rivers emptying into it  ','Its rocks are sedimentary ','','','d','','post-utme','2007',147,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(45,'Which of the following is correct?  ','The Canaries current is cold and washes the coast of NE Africa  ','The Peruvian current is warm and washes the West coast of America  ','The Gulf stream is warm and moves north eastward on the Atlantic  ','The middle east current is warm and washes the coast of Saudi Arabia ','','','c','','post-utme','2007',149,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(46,'Which of the following formulae is the correct one for converting X0 Fahrenheit temperature reading into Centigrade temperature readings (Y0)?  ','Y = (X + 32)5/90C ','Y = (X – 32)5/90C  ','Y =  (X – 32)9/50C  ','Y = (X+32)9/50C','','','c','','post-utme','2007',146,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(47,'Oxbow lakes are found in  ','lower courses of some rivers ','wind bow out sites  ','places with history of tectonism ','areas of subsidence ','','','a','','post-utme','2008',141,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:39'),(48,'Coombes are associated with  ','honey-bee farms  ','Karst environment  ','rift valley system  ','cases in the desert','','','b','','post-utme','2008',164,'Admin','0000-00-00 00:00:00','2020-07-05 12:06:12'),(49,'The Stevenson’s screen is used to keep  ','barometer   ','thermometers  ','hygrometers  ','evapori meters','','','b','','post-utme','2008',151,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:57'),(50,'Global Positioning Systems (GPS) help in  ','combating crime  ','providing early warning against disasters  ','climate change monitoring ','locating positions on the earth surface ','','','d','','post-utme','2008',142,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(51,'One of these is not a factor of population growth  ','poverty  ','migration  ','prosperity  ','housing ','','','a','','post-utme','2008',153,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:05'),(52,'Which of the following is not a major problem of Kainji Dam?  ','increase in the herds of the cattle that depends on its waters  ','increase in usage of Niger in Niger Republic  ','silting of the dam  ','growing demand for irrigation water','','','b','','post-utme','2008',164,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(53,'The East Africa large lakes are together described as  ','Great Lakes St Lawrence Sea Ways  ','Rift Valley Lakes  ','Sources of large rivers like Nile  ','products of the formation of Mt Kilimanjaro ','','','b','','post-utme','2008',147,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(54,'One of these is not true of rain gauges:  ','Rain gauge provide excellent measurement of rainfall ','Their measurements may be affected by the particular type used ','Their readings may be influenced by slope of the land  ','Rain splashes during heavy rains may lead to over estimation ','','','c','','post-utme','2008',157,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(55,'South East Asia is noted for its regular experience of  ','hurricane  ','tornadoes  ','typhoons  ','strong wind','','','c','','post-utme','2008',147,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(56,'Horse latitudes refers to  ','areas around the gulf of guinea ','areas around the equator  ','areas around the Mediterranean sea  ','areas around latitude 300 in both hemispheres.','','','d','','post-utme','2008',157,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(57,'“High uniform temperature and heavy well distributed rainfall throughout the year” described ','Equaterial rainforest climate  ','Mid altitude friendly environment  ','the zone of forest with a lot of agricultural potentials  ','the great Amazon basin including the Brazilian forests','','','a','','post-utme','2008',152,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(58,'On of the following is least important to ocean movement  ','salinity of the ocean water  ','temperature of the water  ','planetary wind  ','curvature of the coastal areas','','','d','','post-utme','2008',138,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(59,'The cloud which are white globular masses, forming ripples in the sky is called ','Citrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2008',159,'Admin','0000-00-00 00:00:00','2020-07-05 12:01:48'),(60,'Which one of the following seas has highest degree of salinity in the world?  ','Caspian sea  ','Mediterranean sea  ','Dead Sea  ','Red sea','','','c','','post-utme','2008',163,'Admin','0000-00-00 00:00:00','2020-07-06 09:46:08'),(61,'Which of the following landforms is NOT due to the process of glacier erosion? ','Come  ','valley -bench  ','Hanging valley  ','Esker','','','b','','post-utme','2008',151,'Admin','0000-00-00 00:00:00','2020-07-05 19:50:42'),(62,'Which of the following rivers does NOT drain into Atlantic Ocean? ','The Niger  ','The Indus  ','The Amazon  ','The Volta','','','b','','post-utme','2008',167,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:18'),(63,'Which features on a  topographic sheet would you analyze to characterize the configuration of the area covered by the sheet  ','Isoyet and Isolines  ','ranges and spot heights ','Contour lines for cross section','Contour lines for slope estimates  ','','','d','','post-utme','2008',148,'Admin','0000-00-00 00:00:00','2020-07-06 10:25:19'),(64,'The greatest challenge to future use of automobiles is  ','advances in air travel  ','identification of alternative to fossil fuels  ','changing and more reliable technology for rail transport ','population growth ','','','b','','post-utme','2008',131,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(65,'The statements ‘one cm 2 km can be represented by the ratio of  ','1:50,000 ','1:500,000  ','120,000','1:200,000','','','d','','post-utme','2008',153,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(66,'What is the Local Standard time in New York (750W) when it is 2 p.m. in Accra?  ','7 p.m. (19hrs)  ','7 a.m. (0700hrs)  ','9 p.m. (2100hrs)  ','9 a.m. (0900hrs)','','','d','','post-utme','2008',136,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:25'),(67,'On any day in the year at a specific time  ','the sun is overhead along the equator  ','the sun is overhead along the topic of cancer  ','the North Pole has 24 hours of daylight  ','one half of the earth is in darkness','','','d','','post-utme','2008',143,'Admin','0000-00-00 00:00:00','2020-06-24 08:59:12'),(68,'Which of the following is not a true feature produced by volcanic activity? ','horst  ','caldera  ','dyke  ','geyser ','','','a','','post-utme','2008',161,'Admin','0000-00-00 00:00:00','2020-07-05 19:50:42'),(69,'Which is the main crop grown in the Ghezira plains ','Wheat  ','Millet  ','Rice  ','Cotton','','','d','','post-utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-04 23:11:06'),(70,'Which of the following countries has a large number of people of Africa descent? ','England  ','Canada  ','Chile  ','Brazil ','','','d','','post-utme','2008',131,'Admin','0000-00-00 00:00:00','2020-06-24 08:09:10'),(71,'When it is 1200 noon on longitude 300E. What is the time on longitude 150W.  ','9.00 a.m. ','5.00 p.m.  ','9.00 p.m.  ','5.00 a.m. ','','','a','','post-utme','2008',149,'Admin','0000-00-00 00:00:00','2020-07-05 09:06:19'),(72,'Which of the following Nigerian towns is Not situated near a big river? ','Lokoja ','Onitsha  ','Jebba  ','Abuja','','','d','','post-utme','2008',137,'Admin','0000-00-00 00:00:00','2020-07-05 12:01:48'),(73,'Fishing is the mainstay of the economy of  ','Libya  ','Iran  ','Iceland  ','Chad','','','c','','post-utme','2008',137,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(74,'Which of the following features is produced by wave deposition  ','caves  ','stack  ','tomobolo  ','blow holes','','','c','','post-utme','2009',148,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(75,'Which of the following is the major factor responsible for Japan’s unparalleled industrial growth in the last few decades? ','Japan’s proximity to mainland ','Japan’s cargo population    ','availability of abundant coal and petroleum ','technological proficiency','','','d','','post-utme','2009',166,'Admin','0000-00-00 00:00:00','2020-06-28 11:31:25'),(76,'Which of the following timber trees are found in the tropical rain forest of Africa? ','Obeche and teak  ','Mahogany and teak  ','Obeche and Mahogany ','Iroko and Eucalyptus','','','c','','post-utme','2009',149,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(77,'Which of the following basins has the highest population concentration? the ','Indus  ','Niger  ','Nile  ','Mississippi ','','','b','','post-utme','2009',162,'Admin','0000-00-00 00:00:00','2020-06-26 18:50:24'),(78,'Which of these economic activities is LEAST characteristics of typical urban centres?  ','Commerce ','quarrying  ','transportation  ','manufacturing ','','','b','','post-utme','2009',140,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(79,'In Karst region, when several dolines are joined together to form depression, it is known as ','cave  ','uvala  ','stalactite  ','calcite pallar','','','b','','post-utme','2009',155,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(80,'Rural settlements can be distinguished from urban settlements by their?  ','function  and population  ','Site and function  ','demography and morphology  ','morphology and location ','','','a','','post-utme','2009',149,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(81,'The scientist who propounded the theory of continental drift was?  ','Francis bacon  ','Alfred Wegener   ','Authur Holmes ','Williams Davis','','','b','','post-utme','2009',139,'Admin','0000-00-00 00:00:00','2020-06-27 17:54:36'),(82,'The major world exports of wool are  ','Britain, Australia, Mediterranean Europe and Argentina   ','New Zealand, Uruguay, Australia and Argentina  ','Australia, India, Paraguay and Argentina  ','New Zealand, India, Uruguay and Peru','','','b','','post-utme','2009',150,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(83,'Blantyre, Rio Janeiro, New York and Lagos are similar in that they all serves as their countries ','major seaport  ','political headquarter ','commercial centres ','cultural centres','','','c','','post-utme','2009',129,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:46'),(84,'The dawn is a temperature grassland found in? ','Australia  ','South America  ','Eurasia  ','South Africa','','','a','','post-utme','2009',142,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(85,'Commercial grape cultivation is associated with?  ','cool temperature climate  ','monsoon regions  ','Mediterranean regions  ','Montane climate ','','','c','','post-utme','2009',142,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(86,'The highest volume of shipping across the Atlantic ocean is  ','between Europe and Africa  ','between North America and Europe  ','between African and South America ','between North America and South America','','','b','','post-utme','2009',159,'Admin','0000-00-00 00:00:00','2020-06-23 12:30:39'),(87,'The Ukraine of economic activities  ','commercial grain agriculture  and livestock random ','plantation agriculture and nomadic herding.','','','','','a','','post-utme','2009',144,'Admin','0000-00-00 00:00:00','2020-07-05 12:01:48'),(88,'All planets have satellites except:  ','Earth & Venus ','Mars & Mercury  ','Mercury & Venus  ','Neptune & Venus','','','c','','post-utme','2010',151,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(89,'Which of the following location in Nigeria has the least mean annual rainfall total?  ','Sokoto  ','Maiduguri  ','Potiskum  ','Nguru','','','b','','post-utme','2010',162,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(90,'Which of the following is not the Karst features? ','Poljes  ','Uvala  ','Kopjes  ','Dolines ','','','c','','post-utme','2010',143,'Admin','0000-00-00 00:00:00','2020-06-24 21:22:06'),(91,'The world’s longest river is ','Amazon  ','Mississippi  ','Nile  ','Chang Jiang','','','c','','post-utme','2010',136,'Admin','0000-00-00 00:00:00','2020-06-24 19:53:51'),(92,'One of these is a features of rejuvenated river: ','Incised menders  ','Braided channel  ','delta  ','Levees ','','','a','','post-utme','2010',135,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(93,'Which one of these is not a thermometric scale:  ','Celsius  ','Kelvin  ','Fahrenheit  ','Octas ','','','d','','post-utme','2010',157,'Admin','0000-00-00 00:00:00','2020-06-30 19:41:19'),(94,'Which of these is not a form of condensation? ','Snow ','Rime  ','Cloud  ','Fog','','','b','','post-utme','2010',158,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(95,'Cyclones are centres of  ','relative low pressure  ','relative high pressure  ','Tsunamis  ','turning around of winds','','','a','','post-utme','2010',150,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:11'),(96,'The best natural harbour in West Africa is at  ','Lome  ','Tema ','Lagos ','Freetown ','','','d','','post-utme','2010',149,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(97,'Sandstone is metamorphosed into  ','Slate  ','Schist  ','graphite  ','Quartzite ','','','d','','post-utme','2010',137,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(98,'The navigability of River Nile is limited because  ','it is too long  ','it is too shallow  ','it flows during the wet season only  ','it has several cataracts. ','','','d','','post-utme','2010',151,'Admin','0000-00-00 00:00:00','2020-07-05 12:06:12'),(99,'The cloud which is closely associated with thunderstorms is  ','strato-cumulus  ','Cirrocumulus  ','Cumulus-nimbus  ','Alto-stratus ','','','c','','post-utme','2010',153,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(100,'Drought-tolerant plants are  ','Epiphytes  ','Hydrophytes  ','Droughytes  ','Xerophytes ','','','d','','post-utme','2010',160,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(101,'Campos is the name for the grassland in  ','North America  ','South America  ','Africa  ','Asia ','','','b','','post-utme','2010',144,'Admin','0000-00-00 00:00:00','2020-06-25 15:30:45'),(102,'When the moon comes in between the earth and the sun in a perfect straight line, it is known as','Eclipse of the moon  ','Lunar eclipse ','solar eclipse  ','eclipse of the earth ','','','c','','post-utme','2010',157,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:07'),(103,'The earth rotates ','South East-South West  ','South West South West  ','West East  ','East West','','','c','','post-utme','2010',140,'Admin','0000-00-00 00:00:00','2020-06-28 08:04:19'),(104,'A degree latitudinal distance is approximately ','70km  ','111km  ','180km  ','360km','','','b','','post-utme','2010',157,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(105,'Large masswa of moving ice in the oceans are  ','glacier  ','iceberg  ','ice-sheet  ','ice-caps','','','b','','post-utme','2010',156,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(106,'The world driest desert is  ','Atacama  ','Sahara  ','Kalahari  ','California ','','','a','','post-utme','2010',153,'Admin','0000-00-00 00:00:00','2020-06-24 19:53:51'),(107,'A line joining places of equal salinity is  ','isohaline  ','Isoneph  ','Isohyets  ','Isohel','','','a','','post-utme','2010',163,'Admin','0000-00-00 00:00:00','2020-06-28 12:12:57'),(108,'Which of these is not on the western side of continental land masses? ','Agulhas  ','Canary  ','Penivian  ','California','','','a','','post-utme','2010',153,'Admin','0000-00-00 00:00:00','2020-07-05 19:50:42'),(109,'In general, temperature decreases from the equator towards the Poles because  ','angle of incidence of sun’s rays increases towards the poles ','angles of incidence sun’s rays decreases towards the poles  ','Snow-cover of the higher latitudes reduces the temperature  ','snow falls rather than rain in the pole','','','a','','post-utme','2010',150,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(110,'Which of the following continents is crossed by both the Tropic of Cancer and Tropic of Capricorn?  ','Asia  ','South America ','North America  ','Africa','','','d','','post-utme','2010',142,'Admin','0000-00-00 00:00:00','2020-07-06 10:25:19'),(111,'The sea bed, bordering the continents which is covered by the shallow water is known as ','continental slope ','coral reef ','continental shelf  ','continental platform  ','','','c','','post-utme','2010',150,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:57'),(112,'The result of football match completed at 6.00p.m. at Accra (Ghana) and immediately announced over the wireless was heard at 12.00noon same day at another city. The longitude of the city is ','900E  ','600E  ','900W  ','450W ','','','c','','post-utme','2010',162,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(113,'Soil that are formed by wind deposition are called  ','laterites  ','prairies  ','podsols   ','Loess  ','','','d','','post-utme','2011',152,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(114,'Which of the following is not a feature of sea deposition ','Shoal ','Beach ','Spit ','coal','','','d','','post-utme','2011',142,'Admin','0000-00-00 00:00:00','2020-06-30 19:41:19'),(115,'Which of the following terms is associated with glaciations? ','Arête   ','Bay   ','Stacks   ','Reef   ','','','a','','post-utme','2011',155,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(116,'The lower part of a river valley that has been submerged by the sea is called ','Estuary   ','Reef    ','Spit   ','Bar  ','','','b','','post-utme','2011',155,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(117,'Which of the following is a cold ocean current ','Mozambique   ','gulf stream ','Kuro Siwo  ','Benguela   ','','','d','','post-utme','2011',135,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(118,'The most important cause of tides is the,','distribution of the prevailing winds ','rotation of the earth on its own axis  ','inclination of the earth’s axis  ','gravity attraction of the moon ','','','d','','post-utme','2011',157,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(119,'Desert soils are usually deficient in ','fertility  ','humus content ','horizon ','light grey colour   ','','','b','','post-utme','2011',161,'Admin','0000-00-00 00:00:00','2020-06-24 20:51:34'),(120,'At the summer solstice [June 21st], which of the following latitudes will have the longest day ','700S   ','900S  ','300N   ','650N   ','','','d','','post-utme','2011',146,'Admin','0000-00-00 00:00:00','2020-07-02 10:38:51'),(121,'Cyclones refer to ','centers of relatively high pressure ','centers of relatively low pressure ','centers Tsunamis ','centers in the desert ','','','b','','post-utme','2011',140,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(122,'The wearing away of the sides and bottom of a river channel is called ','corrasion ','corrosion ','hydraulic action ','Complicated erosion ','','','a','','post-utme','2011',148,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(123,'When the moon comes in between the earth and the sun in a straight line, it is known as  ','solar eclipse ','eclipse of the earth ','eclipse of the moon ','lunar eclipse ','','','a','','post-utme','2011',145,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(124,'A degree of latitudinal distance is approximately  ','111km  ','221KM ',' 121km  ','212km  ','','','a','','post-utme','2011',141,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(125,'Which of the following places in Nigeria has the highest mean annual rainfall amount ','Sokoto  ','Maiduguri  ','Nguru   ','Kano  ','','','c','','post-utme','2011',165,'Admin','0000-00-00 00:00:00','2020-06-28 12:12:57'),(126,'The formulae for converting temperature from a centigrade (0C) to a Fahrenheit (0F) thermometric scale? ','0F = 1.8 x 0C + 32  ','0F = 0.5x 0C + 32  ','0F = 1.8x 0C – 32   ','0F = 0.5x 0C – 32  ','','','a','','post-utme','2011',146,'Admin','0000-00-00 00:00:00','2020-07-05 23:34:28'),(127,'The Northern Hemisphere’s Spring Equinox is during the month of','February ','march ','April   ','May  ','','','b','','post-utme','2011',167,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:01'),(128,'Noonday sun is vertically overhead along the Tropic of Cancer during the month of  ','June  ','July  ','August  ','September ','','','a','','post-utme','2011',135,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(129,'An instrument used in measuring the atmospheric pressure is called ','Barometer ','Thermomete','Hygrometer','Presometer','','','a','','post-utme','2011',143,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(130,'Orographic rainfall is also called ','Relief rainfall','cyclonic rainfall ','convectional rainfall ','frontal rainfall ','','','a','','post-utme','2011',148,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:11'),(131,'The forest type which is richest in tree species is the ','Deciduous forest ','Mediterranean forest ','Tropical Lowland  rainforest ','coniferous forest  ','','','c','','post-utme','2011',128,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(132,'Which of the following statements is not true for lines of latitudes?','they range from 00 to 1800 North and South ','they range from 00 to 900 North and South ','They vary in D. they form parallel circles','only one line is a great circle.','','','a','','post-utme','2011',129,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(133,'The earths rotates through 150C of longitude in  ','24hrs  ','15hrs  ','4hrs   ','1hrs   ','','','d','','post-utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-02 10:35:31'),(134,'What is the local standard time in New York (750W) when it is 2pm in Accra? ','9.00pm  ','9.00 pm  ','7.00pm   ','7.00am ','','','b','','post-utme','2011',132,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(135,'Aeolian erosion refers to the work of  ','Wind ','Running water  ','Glacier  ','Ice  ','','','a','','post-utme','2011',130,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:24'),(136,'Which of the following landforms is the results of  river rejuvenated?  ','Ox-box lake ','flood plain ','terrace  ','alluvial fan  ','','','c','','post-utme','2011',175,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(137,'The representative fraction of 1:50,000 can be converted to the following  ','one cm to 5km  ','one cm to 0.05km  ','one cm to 2km  ','one cm to 4km  ','','','b','','post-utme','2011',146,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:13'),(138,'Which of the following is not a rapid type of mass movement? ','Solidification ','Rockfall  ','Mudflow  ','Debris Slide','','','a','','post-utme','2012',166,'Admin','0000-00-00 00:00:00','2020-07-06 10:25:19'),(139,'A front in which warm air is overtaken and lifted off the ground by cold air in a depression is known as  ','Cold front  ','Warm front  ','Mixed front  ','Occluded','','','d','','post-utme','2012',146,'Admin','0000-00-00 00:00:00','2020-07-05 23:34:28'),(140,'The earth’s atmosphere is said to be stable  ','when the environmental laps rate is greater than the adiabatic lapse rate  ','When the adiabatic lapse rate is greater than the environmental lapse rate  ','When the environmental lapse rate is equal to the adiabatic lapse rate  ','When the environmental lapse rate is not equal to the adiabatic lapse rate.','','','b','','post-utme','2012',148,'Admin','0000-00-00 00:00:00','2020-07-05 09:13:36'),(141,'Environmental lapse rate is  ','The rate of temperature changes of an air parcel undergoing vertical displacement  ','The rate of temperature decrease of an air parcel undergoing horizontal displacement  ','The actual rate decrease of temperature with increase in altitude at a given place at a given moment  ','The rate of horizontal temperature gradient of an air parcel','','','c','','post-utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-05 23:34:28'),(142,'What is the Centigrade equivalent of 950 Fahrenheit? ','1390C  ','37.20C  ','350C','3.60C','','','c','','post-utme','2012',167,'Admin','0000-00-00 00:00:00','2020-07-04 16:41:24'),(143,'Which of the following States in Nigeria would a person NOT pass over by crow fly (direct distance) from Ibadan to Makurdi? ','Osun  ','Ondo ','Kogi  ','Enugu','','','d','','post-utme','2012',188,'Admin','0000-00-00 00:00:00','2020-07-02 09:38:08'),(144,'The Latitude which marks the limits of the overhead sun’s apparent movement is  ','0','66.5','32.5','23.5','','','d','','post-utme','2012',176,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:28'),(145,'Which of the following features is not commonly associated with a river at the floodplain stage? ','Meanders  ','Levees ','Braided channel  ','Knick point ','','','a','','post-utme','2012',162,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(146,'The World’s richest fishing grounds are found  ','On the continental shelves  ','In oceanic deeps ','In big and fast-flowing river  ','In river estuaries ','','','a','','post-utme','2012',148,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(147,'A deflation hollow is produced by  ','River erosion  ','Water action in a limestone area  ','Wind erosion in deserts  ','Wave erosion on the coast ','','','c','','post-utme','2012',164,'Admin','0000-00-00 00:00:00','2020-06-30 07:09:39'),(148,'Akosomo dam is on the River  ','Niger  ','Nile  ','Congo  ','Volta','','','d','','post-utme','2012',143,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(149,'Which of the following is a not characteristic of the International Date Line? ','The Line is approximately along the 1800 meridian  ','The line has a zigzag shape  ','Local time is the same on either side of the line  ','A traveler gains a day when crossing the line from the west to the east ','','','c','','post-utme','2012',135,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(150,'Which of the following African cities is situated near the confluence of rivers? ','Niamey  ','Freetown  ','Cairo  ','Khartoum ','','','d','','post-utme','2012',155,'Admin','0000-00-00 00:00:00','2020-07-05 12:06:12'),(151,'Ferrel’s law states that winds deflect to the  ','Left in the northern  ','Right in the Northern hemisphere and to the left in the Southern hemisphere  ','Right in both hemispheres  ','Left in both hemisphere.','','','b','','post-utme','2012',147,'Admin','0000-00-00 00:00:00','2020-06-26 19:05:36'),(152,'Given an environmental lapse tate of 0.650C per 100 metres, a place with sea level temperature of 400 and 2500 metre above the sea level will approximately have a temperature of  ','31.250C  ','23.750C  ','32.50C  ','28.250C ','','','b','','post-utme','2012',174,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(153,'At the summer solstice (June 21), which of the following latitudes will have the shortest night?','30 “N  ','30 “S  ','50 “N  ','50 “S','','','c','','post-utme','2012',138,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(154,'Which of the following landforms result from wind deposition? ','Playa  ','Barchan  ','Bajada  ','Fan','','','b','','post-utme','2012',176,'Admin','0000-00-00 00:00:00','2020-07-05 12:01:48'),(155,'Which of the following farming practices can be used to check soil erosion? ','Contour ploughing  ','Ploughing of land upslope  ','Bush burning  ','Shifting','','','a','','post-utme','2012',160,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(156,'Aeolian erosion refers to the work of  ','Plants  ','Wind  ','Ice  ','Running water','','','b','','post-utme','2012',180,'Admin','0000-00-00 00:00:00','2020-07-04 22:04:02'),(157,'The difference in the readings on the dry and wet bulb thermometers used to determine  ','Relative humidity  ','Temperature range  ','Evaporation  ','Transpiration ','','','a','','post-utme','2012',150,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(158,'Which of the following scales should show the greatest amount of detail on a map? ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2012',147,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(159,'Sandstone is metamorphosed into  ','Slate  ','Quartzite  ','Schiest  ','Graphite ','','','b','','post-utme','2012',147,'Admin','0000-00-00 00:00:00','2020-06-24 20:01:33'),(160,'In humid areas, farmers add lime to the soil to  ','reduce acidity  ','Act as fertilizer  ','Facilitate the absorption of nutrient  ','Encourage the farmer','','','a','','post-utme','2012',165,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(161,'In the hydrological cycle, the transfer of water from the earth’s surface to the atmosphere is by ',' Evaporation only  ','Transpiration Only  ','Evaporation  ','Condensation ','','','c','','post-utme','2012',139,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(162,'The second Equinox in any year take place during the month of','March   ','June   ','September   ','December','','','c','','post-utme','2013',156,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:15'),(163,'Which of the following countries in Africa would a person NOT pass over by crow fly (direct distance) from Abidjan to Cairo?  ','Niger    ','Libya','Burkina Faso  ','Chad','','','c','','post-utme','2013',172,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(164,'The main work of a river in its torrent stage is  ','Widening its valley','Down cutting','Deposition  ','Bifurcation','','','a','','post-utme','2013',164,'Admin','0000-00-00 00:00:00','2020-07-05 12:01:48'),(165,'Which of the locations in Nigeria has the highest mean annual rainfall total ?  ','Benin City  ','Port-Harcourt  ','C.Calabar   ','Ondo','','','b','','post-utme','2013',130,'Admin','0000-00-00 00:00:00','2020-06-22 20:43:10'),(166,'The world’s longest river is  ','River Amazon    ','River-Mississippi   ','River Nile  ','River Chang Jiang','','','c','','post-utme','2013',171,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(167,'Which of the following is a feature  of a rejuvenated river?','Incised meanders   ',' Braided channel   ','Delta   ','Levees','','','a','','post-utme','2013',157,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(168,'Which of the following is not a thermometric scale?','Celsius     ','Kelvin','Fahrenheit   ','Octas','','','d','','post-utme','2013',150,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(169,'Which of the following is not a form of condensation?  ','Snow  ','Rime  ','C.Cloud  ','Fog','','','d','','post-utme','2013',158,'Admin','0000-00-00 00:00:00','2020-06-24 08:34:52'),(170,'The surface of discontinuity between the earth’s crust and the mantle is know as','Lithosphere   ','Barysphere','Mohocivic Discontinuity','Gutenburg discontinuity','','','b','','post-utme','2013',149,'Admin','0000-00-00 00:00:00','2020-07-02 10:38:45'),(171,'Where is Sahel Savanna vegetation belt found in Nigeria?','Northwest   ','Northeast','Both Northwest and Northeast','From the middle belt to the north','','','b','','post-utme','2013',144,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:57'),(172,'The largest soil group, found in the temperate grasslands, having a deep, black, nutrient-rich','A-horizon, a compact  B-horizon and a zone of calcium carbonate accumulation is called a','Chernozem  ','Pedocal   ','Podsol  ','Chestnut','','a','','post-utme','2013',158,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(173,'Drought-tolerant plants are known as  ','Epiphytes  ',' Hydrophytes','Drouphytes','Xerophytes','','','d','','post-utme','2013',136,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(174,'The major disadvantage of the River Nile as a trade route is that  ','it is too long   ','it is too shallow   ','it flows during the wet season only   ','it has several cataracts','','','d','','post-utme','2013',148,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(175,'The earth rotates from  ','Southeast to Southwest','Southwest  to Southeast','West to East  ','East to West','','','c','','post-utme','2013',146,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(176,'The tropical maritime air mass attains its maximum incursion over West African hinterlands','When the sun is overhead on the tropic of Capricorn  ','When the sun is overhead on the tropic of Cancer ','When the sun is overhead on the Equator','When the sun is overhead on both the tropic of Cancer and Tropic of Capricom','','','c','','post-utme','2013',150,'Admin','0000-00-00 00:00:00','2020-07-01 23:15:08'),(177,'A line joining places of equal salinity is known as','Isohaline   ','Isoneph','Isohyet   ','Isohel','','','a','','post-utme','2013',155,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(178,'Which of the following continents has the largest area with a tropical type of climate?','Asia   ','South America','North America  ','Africa','','','a','','post-utme','2013',142,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07'),(179,'One hour’s difference in mean solar time represents what angular difference in longitude?','15o ','23.5o  ','90o','66.5o','','','a','','post-utme','2013',149,'Admin','0000-00-00 00:00:00','2020-07-06 10:28:25'),(180,'An extended urban area, typically consisting of several towns merging with the suburbs of one or more cities can best be referred to as  ','Conurbation','Urban decay  ','Growth pole','Urban Inertia','','','a','','post-utme','2013',145,'Admin','0000-00-00 00:00:00','2020-06-26 19:30:36'),(181,'Which of the following terms is not associated with desert-type topography?','Zuegen    ','Yardang  ','Mesa  ','Uvala','','','d','','post-utme','2013',138,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(182,'The major characteristics of a karst scenery include','Excessive overland flow','Extensive and long surface flow  ','An underground network of caves and streams','Frequent  surface drainage','','','c','','post-utme','2013',152,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(183,'Which of the following landforms originates from Aeolian erosion?','Deflation hollow  ','Sand dune  ','Playa   ','Wadi','','','a','','post-utme','2013',146,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(184,'The cheapest means of transport for a long distance travel is by   ','Air   ','Rail','Water   ','Road','','','c','','post-utme','2013',176,'Admin','0000-00-00 00:00:00','2020-07-05 09:13:36'),(185,'A traveler crossing the international Date line from America to Asia at 1.00 P.M. on Saturday, July 13th, 2013, would have to change his watch to 1.00 P.m. on','Sunday, July 14th, 2013','Friday, July 12th 2013','Saturday, July 13th, 2013','Monday, July 15th, 2013','','','a','','post-utme','2013',148,'Admin','0000-00-00 00:00:00','2020-06-24 20:01:33'),(186,'The shaduf method of irrigation was first practiced in','Sudan   ','Ghana   ','Egypt    ','Mali','','','c','','post-utme','2013',158,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(187,'Climate is the: ','Prevailing weather conditions of a region for 10 years ','Prevailing weather conditions of a region for 15 years  ','Prevailing weather conditions of a region for 35 years  ','Prevailing weather conditions of a region for 20 years  ','','','c','','post-utme-aaua','2014',140,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(188,'Igneous rocks are rocks formed by','The cooling of molten minerals from a liquid into a solid.','The change of minerals from a solid into a liquid','The deposition of minerals. ','The deposition of minerals a solid into a liquid. ','','','a','','post-utme-aaua','2014',118,'Admin','0000-00-00 00:00:00','2020-06-28 18:12:02'),(189,'Temperature is a measure of: ','The average hotness','The average coolness','The average heat. ','The average emission.','','','c','','post-utme-aaua','2014',144,'Admin','0000-00-00 00:00:00','2020-07-05 09:06:19'),(190,'Isotherm refers to: ','Line that connects points of equal sunshine','Line that connects points of equal rainfall','Line that connects points of equal pressure.  ','Line that connects points of equal temperature','','','d','','post-utme-aaua','2014',145,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(191,'The longest river in Africa is:  ','River Nile. ','River Niger. ','River Benue','River Zambezi ','','','a','','post-utme-aaua','2014',150,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(192,'Isobar refers to: ','Line that connects points of equal humidity. ','Line that connects points of equal rainfall.   ','Line that connects points of equal pressure.  ','Line that connects points of equal temperature. ','','','c','','post-utme-aaua','2014',133,'Admin','0000-00-00 00:00:00','2020-06-24 20:51:34'),(193,'Topographic maps are: ','Representations of features on the Earth\\'s surface','Features on the Earth\\'s surface. ','Detailed and accurate graphic representations of features on the Earth\\'s surface ','Geographic coordinate grid on the Earth\\'s surface. ','','','c','','post-utme-aaua','2014',128,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(194,'Lesotho is in: ','South Africa','West Africa.   ','East Africa','Central Africa','','','c','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-28 12:36:08'),(195,'Weathering of rocks is: ','The formations of rocks','The breaking down of rocks.   ','The deformations of rocks','The accumulation of rocks. ','','','b','','post-utme-aaua','2014',119,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(196,'Scale of a map is defined as: ','The ratio of a distance on the drawing board to the corresponding distance on the ground. ','The ratio of a distance on the map to the corresponding distance on the ground','The ratio of a distance on the tape to the corresponding distance on the ground. ','The ratio of a distance on the ruler to the corresponding distance on the ground','','','b','','post-utme-aaua','2014',124,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(197,'The capital of Niger state in Nigeria is: ','Gusau','Yola','Makurdi','Minna','','','d','','post-utme-aaua','2014',124,'Admin','0000-00-00 00:00:00','2020-07-05 09:13:36'),(198,'A valley is a:   ','Highland between hills','Lowland between hills','Rock between hills','Highland between trees. ','','','b','','post-utme-aaua','2014',150,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(199,'Nigeria has a total land area of: ','923,768 km2 ','823,768 km2 ','623,768 km2 ','723,768 km2 ','','','a','','post-utme-aaua','2014',133,'Admin','0000-00-00 00:00:00','2020-06-23 11:19:09'),(200,'A lake is a:   ','Large body of water surrounded by forest. ','Large body of water surrounded by land. ','Large body of water surrounded by rocks','Large body of water surrounded by water. ','','','b','','post-utme-aaua','2014',137,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(201,'Nigeria is having','574 Local Government Areas','674 Local Government Areas. ','774 Local Government Areas. ','874 Local Government Areas','','','c','','post-utme-aaua','2014',119,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(202,'An island is a:   ','Piece of land surrounded by water.   ','Piece of land surrounded by land. ','Piece of land surrounded by forest. ','Piece of land surrounded by rocks. ','','','a','','post-utme-aaua','2014',130,'Admin','0000-00-00 00:00:00','2020-06-30 19:45:12'),(203,'The ethnic groups in Nigeria are: ','More than 250  ','More than 150   ','More than 100   ','Less than 150 ','','','a','','post-utme-aaua','2014',129,'Admin','0000-00-00 00:00:00','2020-06-21 00:07:22'),(204,'Orographic rainfall is a:   ','Temperate rainfall','Relief rainfall. ','Coastal rainfall','Forest rainfall.   ','b','','','','post-utme-aaua','2014',141,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(205,'One major societal issues in Nigeria is: ','Poor feeding. ','Poor human rights','Poor language','Poor religion. ','','','b','','post-utme-aaua','2014',134,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(206,'The United Nations estimate of Nigeria population in 2009 was','154,729,000','144,729,000.00','164,729,000.00','184,729,000.00','','','b','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(207,'Nigeria lies between','Latitudes 4° and 13°N and longitudes 2° and 15°E. ','Latitudes 5° and 14°N and longitudes 4° and 15°E. ','Latitudes 4° and 14°N and longitudes 2° and 15°E. ','Latitudes 2° and 15°N and longitudes 4° and 14°E. ','','','c','','post-utme-aaua','2014',130,'Admin','0000-00-00 00:00:00','2020-06-24 06:48:22'),(208,'Kinshasa is a: ','Central African City ','North African City ','East African City ','South African City ','','','a','','post-utme-aaua','2014',135,'Admin','0000-00-00 00:00:00','2020-07-05 10:54:25'),(209,'Freetown is a: ','North African City ','West African City ','South African City ','East African City ','','','b','','post-utme-aaua','2014',144,'Admin','0000-00-00 00:00:00','2020-06-24 20:35:53'),(210,'Which one of the following countries is having the highest quality of life? ','Sweden  ','Austria ','United States of America ','England  ','','','a','','post-utme-aaua','2014',153,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(211,'Nairobi is a: ','North African City ','West African City ','South African City ','East African City ','','','d','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-24 19:00:47'),(212,'The most populated country in the world is: ','Austria ','China ','United States of America ','Brazil ','','','b','','post-utme-aaua','2014',150,'Admin','0000-00-00 00:00:00','2020-06-27 13:56:47'),(213,'Casablanca is a','North African City ','West African City ','South African City ','Central African City ','','','a','','post-utme-aaua','2014',143,'Admin','0000-00-00 00:00:00','2020-06-23 18:01:08'),(214,'The World largest Ocean is: ','Pacific Ocean ','Atlantic Ocean ','Indian Ocean ','Arctic Ocean ','','','a','','post-utme-aaua','2014',132,'Admin','0000-00-00 00:00:00','2020-06-24 21:22:06'),(215,'Dominican Republic is in: ','Europe ','Africa ','America ','Asia ','','','c','','post-utme-aaua','2014',154,'Admin','0000-00-00 00:00:00','2020-06-28 16:09:46'),(216,'The World Longest Coastlines is in: ','Austria ','England  ','United States of America ','Canada ','','','d','','post-utme-aaua','2014',130,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(217,'Which of the following is an evidence to show that the earth is spherical in shape? ','Elliptical orbit ','Ea th s  u ed ho izo','Revolution of the earth ','Seasonal changes ','','','b','','post-utme-aaua','2014',143,'Admin','0000-00-00 00:00:00','2020-07-06 09:26:24'),(218,'A lines drawn on a maps to show places of equal rainfall is called ','Rainline ','Isotope ','Isotherm ','Hydrotope ','','','b','','post-utme-aaua','2014',134,'Admin','0000-00-00 00:00:00','2020-07-05 07:29:59'),(219,'Wind erosion is most common in ','Rocky areas ','Riverine areas ','Arid areas ','Humid areas ','','','c','','post-utme-aaua','2014',108,'Admin','0000-00-00 00:00:00','2020-06-24 09:07:37'),(220,'The act of graphical representation of places with identified scale and legend is called ','Scaling ','Mapping  ','Sketching ','Drawing ','','','b','','post-utme-aaua','2014',135,'Admin','0000-00-00 00:00:00','2020-06-24 06:48:22'),(221,'A piece of land almost surrounded by water is called ','Headland ','Peninsula ','Island   ','Plateau ','','','c','','post-utme-aaua','2014',135,'Admin','0000-00-00 00:00:00','2020-06-28 10:15:16'),(222,'Planet warming the use of water transport is limited by all the following except  ','Wide valleys   ','Waterfalls ','Seasonality  ','Narrow gorges   ','','','a','','post-utme-aaua','2014',138,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(223,'To obtain the climate of a place the average atmospheric weather conditions should be considered ','20years ','24years','35years ','10years ','','','c','','post-utme-aaua','2014',163,'Admin','0000-00-00 00:00:00','2020-06-24 08:34:52'),(224,'Which of the following is a major hindrance to H.E.P.','Inadequate capital  ','Unavailability of good sites  ','Absence of domestic market  ','Sufficient volume of water  ','','','d','','post-utme-aaua','2014',146,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(225,'Isotherms are lines drawn on maps joining places having equal ','Temperature   ','Cloud cover ','Pressure ','Water level ','','','a','','post-utme-aaua','2014',136,'Admin','0000-00-00 00:00:00','2020-06-28 16:10:11'),(226,'Precipitation include all the following except ','Fog','Snow ','Dust   ','Dew ','','','c','','post-utme-aaua','2014',125,'Admin','0000-00-00 00:00:00','2020-06-24 20:01:33'),(227,'The location of iron and steel industry at Ajaokuta in Nigeria is best explained by the presence of ','Limestone and coal  ','Iron ore   ','Bauxite  ','Manganese ','','','b','','post-utme-aaua','2014',141,'Admin','0000-00-00 00:00:00','2020-07-05 09:06:19'),(228,'Settlements can be classified according to all the following except the   ','The arrangements of the building   ','Number of people per settlements   ','Functions  ','The type of people that live in the area   ','','','d','','post-utme-aaua','2014',133,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(229,'The average hurricane exists, on the average, for about ________. ','one week ','two weeks ','three weeks ','four weeks ','','','d','','post-utme-aaua','2014',156,'Admin','0000-00-00 00:00:00','2020-06-28 21:01:33'),(230,'……...Refers to the nature of the surface of an area and the features that abound therein above the sea level','Barchans ','Relief   ','Plateaux   ','Plain','','','b','','post-utme-aaua','2014',140,'Admin','0000-00-00 00:00:00','2020-07-06 23:02:23'),(231,'Any buoyant parcel of air is said to exhibit ________. ','Instability ','The dry adiabatic lapse rate ','The moist adiabatic lapse rate ','Advection','','','a','','post-utme-aaua','2014',142,'Admin','0000-00-00 00:00:00','2020-06-28 18:27:14'),(232,'The north east and south west trade winds meet along a plane surface where they continuously rub ','Abnormal front  ','Leeward front  ','Intertropical front ','Windward front  ','','','c','','post-utme-aaua','2014',150,'Admin','0000-00-00 00:00:00','2020-07-02 02:05:08'),(233,'________ is the time of day when tornadoes are most likely to occur','Dawn ','Mid-afternoon ','Evening ','Noon ','','','b','','post-utme-aaua','2014',122,'Admin','0000-00-00 00:00:00','2020-06-29 06:05:59'),(234,'Crude oil is ------------  rock mineral   ','An igneous   ','A sedimentary  ','A metamorphic  ','A plutonic  ','','','b','','post-utme-aaua','2014',126,'Admin','0000-00-00 00:00:00','2020-06-26 12:10:18'),(235,'The new name of Calicut, a famous city of Kerala is ','Kozhikode','Trivendrum','Kalighat ','Koderma ','','','a','','post-utme-aaua','2014',130,'Admin','0000-00-00 00:00:00','2020-06-30 06:57:39'),(236,'An anemometer is used to measure','wind vane','wind direction','wind speed','wind pressure','','','c','','post-utme-aaua','2014',124,'Admin','0000-00-00 00:00:00','2020-06-29 05:14:07');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `government` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=724 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `government` VALUES (1,'In which of the following countries is governmental powers most fused? ','Nigeria ','United States of America ','France ','Canada','','','c','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(2,'The benefits of separation of powers include the following except ','prevention of tyranny ','check of abuse ','promoting democracy with free and fair election ','avoidance of arbitrariness','','','c','','post-utme','2006',59,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:45'),(3,'Laws made by state   government are known as ','edicts ','bye-law ','acts  ','decrees','','','a','','post-utme','2006',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:23'),(4,'In a parliamentary system of government, the function of the head of state and the head of government are vested in ','the inner cabinet ','an individual ','two different individuals ','the ministerial council','','','c','','post-utme','2006',64,'Admin','0000-00-00 00:00:00','2020-07-06 10:39:02'),(5,'In a modern democracy, the ultimate source of sovereignty is the ','legislature and executive ','judiciary ','ruling political party ','people','','','d','','post-utme','2006',62,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:54'),(6,'The British took over Nigeria through ','negotiation ','bargaining  ','war ','the sea','','','a','','post-utme','2006',67,'Admin','0000-00-00 00:00:00','2020-06-07 14:14:55'),(7,'Politics is an act for ','man to govern himself ','man to create governments ','states to control its destiny ','man to dominant others','','','a','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:19'),(8,'A major issue that distinguishes pressure groups from political parties is ','membership drive ','objective ','vomiting pattern ','ideology','','','b','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-07-05 07:43:12'),(9,'A nation consist of people with ','common history ','common ancestry ','a  shared set of values ','A, B and C above','','','d','','post-utme','2006',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:10'),(10,'A totalitarian state is based on  ','multi-party system ','total protection of civic rights ','the totality of the state processes ','coercion as the instrument of government','','','d','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-06-08 22:20:25'),(11,'A political concept that defines  the beliefs, attitudes and values of a society is called ','political socialization ','political culture ','political transformation ','referendum','','','b','','post-utme','2006',63,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(12,'The agent of political socialization generally regarded as the most important is ','family ','peer group','school ','churches and mosques','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-06-01 17:39:17'),(13,'A political ideology that defines a system of societal organization in which the state controls the commanding heights of the economy is called ','Totalitarianism ','Communalism ','socialism ','communism ','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:05'),(14,'Which of the following best describes French colonial policy in Africa? ','policy of association ','policy of Casus Belli ','policy hostility ','policy of assimilation','','','d','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-05-30 11:12:52'),(15,'What was the primary purpose of the Sir Henry Willink Commission of Inquiry? ','to approve the independence of Nigeria ','to allay the fears of minorities in Nigeria ','to amalgamate northern and southern  Nigeria ','to make Lagos a British Colony','','','b','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(16,'The military coup of July 25, 1975 which toppled General Yakubu Gowon from power  took place when he was attending which important event? ','OAU Summit in Kampala ','UN General Assembly in New York ','Assembly of Heads of states of ECOWAS in Monrovia ','The Olympic Games','','','a','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(17,'Which of the following political parties did not participate in the 1979 General Elections in Nigeria? ','Unity Party of Nigeria ','National Party of Nigeria ','social Democratic Party ','Great Nigeria People’s Party','','','c','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-06-03 13:35:42'),(18,'Alhaji Shehu Shagari was sworn in as President of the Federal Republic of Nigeria in 1979 by ',' Justice Fata Williams ','Justice Adetokunbo Ademola ','Justice Salihu Modibbo  Alfa Belgore ','Justice Isa Mohammed','','','b','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-06 10:19:49'),(19,'The electorate is generally  understood to refer to ','elected members of the National- Assembly ','elected members of the state house of assembly  ','candidates who can contest elections ','those citizens qualified to vote at elections','','','d','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(20,'Into how many local government areas in Nigeria officially delineated? ','654','650','820','774','','','d','','post-utme','2006',52,'Admin','0000-00-00 00:00:00','2020-07-07 06:03:18'),(21,'The centenary anniversary of the amalgamation of Northern and Southern Nigeria will be celebrated in ','2060','2063','2014','2007','','','c','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(22,'Which of these men introduced indirect rule in Nigeria? ','Mungo Park ','Dr. Nnamdi Azikiwe ','Lord Lugard ','Sir James Robertson.','','','c','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(23,'Democracy was first practiced in ','Ghana ','United States of America ','Greece ','Britain','','','c','','post-utme','2007',54,'Admin','0000-00-00 00:00:00','2020-06-28 19:50:01'),(24,'Which of these countries has the highest population in West Africa? ','Mauritania','Ghana ','The Gambia ','Nigeria.','','','d','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:22'),(25,'This African ruler resisted colonial rule and was later exiled by the colonial  officials ','Alaafin of Oyo ','Oba of Benin ','King Jaja of Opobo','Onisanbo of Ogbooro.','','','c','','post-utme','2007',60,'Admin','0000-00-00 00:00:00','2020-06-01 15:56:28'),(26,'The following countries are settler colonies except  ','Nigeria ','south Africa ','Angola ','Mozambique.','','','a','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:25'),(27,'Nigeria gained independence from colonial rule on ','1-Oct-60','November, 1963 ','29-May-99','1-Nov-60','','','a','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-06-29 06:43:13'),(28,'All but one of the following is not a symbol of political culture ','a national flag ','the government ','an anthem ','the constitution.','','','b','','post-utme','2007',64,'Admin','0000-00-00 00:00:00','2020-06-01 14:52:45'),(29,'All but one of these is not an agency of political socialization ','the constitution ','the family ','peer group ','schools ','','','a','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-06-08 06:39:30'),(30,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives ','propaganda ','lobbying ','assault ','boycott','','','c','','post-utme','2007',57,'Admin','0000-00-00 00:00:00','2020-07-06 18:04:33'),(31,'The following are Anglophone West African countries except ','Ghana ','Nigeria ','Kenya ','The Gambia.','','','c','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-07-05 18:18:47'),(32,'A Nigerian who has been the secretary of the Commonwealth of Nations Organizations is ','Dr. Ibrahim Gambari ','Professor Adebayo Adedeji ','Chief Jaja Nwachukwu ','Chief Emeka Anyaoku','','','d','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-05 13:36:55'),(33,'How many countries are in Africa? ','fifteen ','fifty-three ','fifty','fifty-five','','','b','','post-utme','2007',59,'Admin','0000-00-00 00:00:00','2020-07-05 11:24:59'),(34,'Economic Community of West African States (ECOWAS) was based on the initiative of the heads of state  of these two countries ','Nigeria and Ghana ','Nigeria and Togo ','Senegal and Cote d’lvoire ','B and C above','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:08'),(35,'ECOWAS Treaty was signed on ','28-May-74','1-Oct-60','12-Jun-75','none of the above','','','d','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-06-08 19:25:57'),(36,'In which city was the ECOWAS Treaty signed ','Lagos ','Banjul ','Accra ','Abuja','','','a','','post-utme','2007',64,'Admin','0000-00-00 00:00:00','2020-06-28 19:59:00'),(37,'A capitalist state is based on ','religion ','creating job opportunities ','dictatorship ','free trade','','','d','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-06-03 23:07:15'),(38,'In politics, power is all of the following except ','capacity to affect the actions of others ','ability to make people do things they otherwise not do ','an object ','it is part of a relationship ','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-06-02 19:43:39'),(39,'Every political system performs the following basic functions except ','rule making ','rule transformation ','rule enforcement ','rule adjudication .','','','b','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-06-28 19:50:01'),(40,'These are common forms of governments except ','federal ','Unitary ','Plural ','confederal','','','c','','post-utme','2007',60,'Admin','0000-00-00 00:00:00','2020-06-08 19:25:57'),(41,'In a federal system ','the centre is weak ','plurality is abnormal ','there is nothing like autonomous units ','there is unit in diversity ','','','d','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-06-11 19:38:47'),(42,'The legislature performs the following functions except ','determines  the general direction of public policies ','investigating and monitoring the activities of the officials of government ','exercises power of appointment of government officials ','enforcing the law','','','d','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(43,'The independence constitution of 1960 ','introduced bicameral legislature ','catered for the three  regions of Nigeria ','provided for emergency powers ','provided for fundamental human rights','','','d','','post-utme','2007',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(44,'Nigeria became a republic in ','1960','1961','1963','1914','','','c','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:08'),(45,'The amalgamation of the northern and southern protectorates and the colony of Lagos was in','1960','1966','1914','1957','','','c','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-07-07 05:56:59'),(46,'catered for the three  regions of Nigeria ','a renewed concept in international studies ','limited to the west ','a process of making the world  smaller ','an increasing integration of the world.','','','b','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:45'),(47,'The French colonial policy of Assimilation  was intended to ','to transfer technology to Africa ','to make Frenchmen out of African ','to produce well educated Africans ','to prepare Africans for the Olympic Games','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-05 18:09:38'),(48,'One of these is not a characteristic  of the state ','selection of political leaders ','a written constitution ','monopoly of the legitimate use of armed force ','sovereignty','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:09'),(49,'The Economic Community of West African States was established in ','May-75','May-63','May-66','May-96','','','a','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-06-15 03:13:34'),(50,'Nigeria became a republic on ','29-May-99','1-Oct-60','1-Jan-66','1-Oct-63','','','d','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(51,'Which of the following is not one of the functions of the modern legislatures? ','making laws  ','collecting taxes ','Ratification of treaties ','Performing oversight functions ','','','c','','post-utme','2008',62,'Admin','0000-00-00 00:00:00','2020-06-02 03:30:59'),(52,'The European Union (EU) is an ','Economic organization ','Association of former British colonies  ','Organization of European states ','Union  of European  organization','','','c','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-06-20 13:07:40'),(53,'What was the name of the highest ruling body during General Babangida’s rule?  ','The presidency  ','Armed Forces Ruling Council ','The National Council of states  ',' The Federal  Executive Council','','','b','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:09'),(54,'One of the following is not a specialized agency to the United Nations Organization ','security council ','International Labour Organization ','World Health Organization ','UNESCO','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-06-02 23:25:45'),(55,'Under which of the following conditions can a Nigerian be deprived of is or her citizenship? ','If married to a foreign  National ','If one holds a dual citizenship  ','If convicted of Armed robbery ','if one Abuse the National Flag.','','','b','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:16'),(56,'The first indigenous Governor-General of Nigeria is ','Donald Cameron ','Sir James Robertson  ','Sir Adesoji Aderemi  (the  Oni of Ife) ','Rt. Hon. Nnamdi  Aziwe','','','a','','post-utme','2008',60,'Admin','0000-00-00 00:00:00','2020-06-07 05:54:17'),(57,'The Action Group crisis was is in which year? ','1966','1962','1963','1965','','','b','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-05 22:09:41'),(58,'Free education was introduced in west region by which of these premiers? ','Chief Obafemi Awolowo ','Chief S.L. Akintola  ','Chief Michael Adekunle Ajasin ','Chief Bola Ige','','','a','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-07-05 20:02:33'),(59,'What does INEC stand for? ','Independent  National Elections Committee ','Independent  Newspapers executive  Committee ','Independent National Export Council ','independent National Electoral Commission ','','','d','','post-utme','2008',60,'Admin','0000-00-00 00:00:00','2020-06-03 20:01:15'),(60,'The government of one of the following countries operates an unwritten constitution ','The United States ','The Union of Soviet Socialist Republics ','Post –apartheid  South Africa ','The United Kingdom ','','','d','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-06-09 18:23:25'),(61,'The Oldest written constitution is ','American constitution ','British Constitution ','German constitution ','Roman Constitution ','','','a','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(62,'The EFCC was established to ','Arrest and try corrupt politicians ','Combat economic and financial crimes in Nigeria ','Arrest, detain and prosecute corrupt state governors and legislators  ','Assist the World Bank in monitoring economic projects in Nigeria.','','','c','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-05 22:20:39'),(63,'The four British colonial territories in West Africa were ','Senegal, Ghana, Sierra Leone and Nigeria ','Nigeria, Ghana, Sierra Leone and Gambia ','Nigeria, Ghana, Togo and Gambia ','Gambia, Guinea, Ghana and Gabon','','','c','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-07 06:03:18'),(64,'In many countries, citizenship can be acquired through the following processes except ','nationalization ','naturalization ','registration ','birth','','','a','','post-utme','2008',55,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(65,'Which of the following does not describe a party system? ','one dominant party system  ','two party system','three party system ','multi party system','','','c','','post-utme','2008',52,'Admin','0000-00-00 00:00:00','2020-05-28 20:54:46'),(66,'ECOMOG was set up primarily to ','drive away the Europeans from West Africa ','serve as a peace keeping force for ECOWAS ','help  Nigeria to control Africa  ','promote rapid economic development among ECOWAS members','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-06 18:04:33'),(67,'The principle since independence include the following except ','peaceful coexistence ','legal  equality of state ','political dependence ','Non- alignment','','','c','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(68,'The body charged with the trial of persons accused of crimes  against humanity is ','criminal Court of Justice ','International Criminal Court ','International Court of Justice ','ICPC','','','b','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-05-28 20:51:59'),(69,'The independence of the judiciary can be enhance by the following except ','when judges hold office for a fixed term ','when judges cannot be removed from offence even whey they commit crimes ','appointment of judges by and independent body','political neutrality of judges','','','b','','post-utme','2008',60,'Admin','0000-00-00 00:00:00','2020-07-07 05:56:59'),(70,'Which of the following is not  a feature of Nigeria’s electoral system? ','direct election ','proportional representation ','general election  ','secret ballot','','','b','','post-utme','2008',57,'Admin','0000-00-00 00:00:00','2020-07-06 09:13:41'),(71,'Laws made by local governments are called ','Acts of Parliament ','Local Government Acts ','Bye-laws ','Local Government Decrees','','','c','','post-utme','2008',64,'Admin','0000-00-00 00:00:00','2020-07-06 08:36:21'),(72,'In the pre-colonial era, which of the following was not a feature of the emirate administration? ','Madawakin ','Waziri ','Sarkin Dogari ','Sarkin Emir','','','d','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-06-01 21:20:10'),(73,'Federalism was introduced in Nigeria by the ','Lyttleton Constitution ','Clifford constitution ','Macpheson constitution ','1999 constitution.','','','a','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-06-28 13:05:03'),(74,'Traditional rulers were restricted to ceremonial rules by the local  government  reforms of ','1966','1976','1984','1987','','','b','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-06-11 00:27:36'),(75,'In a parliamentary system, who ensures that members are in the house to vote on major issues? ','party leaders ','speaker of  the house ','clerk of the house  ','whip','','','d','','post-utme','2009',58,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:50'),(76,'A system in which no single person serves as the chief executive  is know as ','republican ','Revolutionary  ','Collegial  ','Parliamentary ','','','d','','post-utme','2009',69,'Admin','0000-00-00 00:00:00','2020-07-07 08:16:55'),(77,'A social system in which power is derived  from control over land is called ','Oligarchy  ','Feudalisms ','Socialism ','Welfarism ','','','b','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(78,'“Rule of law” refers to situations in which ','Lawyers are the rulers  ','Laws are supreme ','the judiciary is independent ','parliament makes laws ','','','b','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-07-05 06:14:01'),(79,'An important principle of the civil service is ','Authoritarianism  ','Anonymity ','Repotism  ','partisanship.','','','b','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:22'),(80,'Which of these constitutions recognized local government is the third tier of government? ','The 1946 constitution ','The 1960 constitution','The  1963 constitution ','the 1979 constitution.','','','d','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-06-01 19:05:27'),(81,'A condition for judicial indolence is the appointment of judges by the  ','civil service commission ','judicial service commission ','low review constitution ',' code of conduct Bureau','','','b','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-06 12:33:08'),(82,'The minorities  Commission appointed in Nigeria in 1957 recommended that ','More states should be create in the federation ','No more states should created before independence ','Nigeria should revert to a unitary structure ','The legislature  should legislature should legislature for the minority areas ','','','b','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-06-30 15:24:32'),(83,'The second military coup data in Nigeria took place on ','15-Jan-66','1-Oct-66','29-Jul-66','13-Feb-76','','','c','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(84,'One of these was in existence  before the outbreak of the Second World War ','The OAU  ','League of Nations ','The UNOD  ','The Commonwealth of nations ','','','b','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:54'),(85,'In important advantage of creating more constituents in a federal state is to ','Enhance the people’s participation in government ','Enable ambitions politicians gain political power ','Make the states gain more power from the federal government ','curb the excesses of the federal government','','','a','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-06-02 14:29:53'),(86,'Under the Presidential system ','The party with the majority of seat forms the executive ','there is the principles of collective responsibility ','the president may come from any of the parties ','the states take instructions from the federal government','','','c','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:51:47'),(87,'Public opinion is important because it ','Tells government what action it must take ','Lets government know what the people want ','Allows police to manage crisis ','Mothers the minorities in resource learn areas ','','','b','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-06-09 11:35:43'),(88,'Bicameral legislature exists ','where two cameras are used to monitor court proceedings ','To prevent the concentration of power on legislative house ','To provide jobs for more politicians ','to ensure that just laws are passed.','','','d','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-06-01 20:56:12'),(89,'Africans were first elected to the legislature council in British West African ','Ghana ','Sierra Leone ','The Gambia ','Nigeria','','','d','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(90,'One of the functions of the ministry of External Affairs is the ','Deportation of illegal aliens ','Issuance of passports ','Defense of the country’s boarders ','Promotion of national interest','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(91,'The leader of the northern people’s congress was ','Yakubu Maitama Sule ','Abubakar Tafawa Balewa ','Aminu Kano ','Ahmadu Bello','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-06-24 00:49:42'),(92,'The idea of democracy started with the ','Romans ','Pensions ','Greeks ','Egyptians','','','c','','post-utme','2009',55,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(93,'In the Marxist theory, those who live by selling, their labour are called ','Bourgeoisie ','Proletariat ','Feudal lords ','Slaves','','','b','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-06-07 23:48:24'),(94,'Which of the following NOT an acceptable means of achieving democracy? ','Referendums ','Recall ','Initiative ','Riots','','','d','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-03 08:09:45'),(95,'The branch of government responsible for implementing laws is the ','executive ','Legislature ','Judiciary ','Police ','','','a','','post-utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-05 13:04:57'),(96,'In a democracy, sovereignty is vested in ','The community ','Public officials ','judges  ','the head of state ','','','a','','post-utme','2009',68,'Admin','0000-00-00 00:00:00','2020-06-04 15:05:43'),(97,'Universal Adult Suffrage means all ','Adult citizens can vote ','citizens vote ','Qualified citizens  can vote ','Literate citizens can vote ','','','a','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-05 18:25:09'),(98,'A bill that applies to the whole population and is intended to promote the general welfare is called ','A private bill ','a decree ','an appropriation bill ','a public deal ','','','d','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-06-03 11:07:56'),(99,'The Arthur Richards Constitution was designed to last ','nine years  ','five years ','twelve years  ','six year','','','a','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-06-28 20:14:50'),(100,'Under the 1963 Republican constitution the president exercise ','judicial powers  ','executive powers  ','nominal powers ','concurrent powers','','','c','','post-utme','2010',58,'Admin','0000-00-00 00:00:00','2020-06-04 01:15:28'),(101,'The Clifford Constitution was notable for ','amalgamating the Northern and southern provinces ','introducing indirect rule ','establishing the legislature  council ','creating a Northern majority in the legislature council.','','','c','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(102,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as ','exclusive ','extra-ordinary  ','residual  ','concurrent','','','d','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-28 13:05:03'),(103,'During the period 1960-1966, Nigerian was governed under the ','presidential system of government ','Westminster system of government ','confederal system of government ','Unitary system of government.','','','b','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-06-02 04:01:57'),(104,'Which of the following in the Sokoto Caliphate performed functions similar to that of the Bashorun in Oyo Kingdom? ','Waziri ','Galadima ','Ma’aji  ','Alkali  ','','','a','','post-utme','2010',50,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:26'),(105,'In the Igbo political system, the most senior  member of the council of elders is the ','Okpara  ',' Obi  ',' Eze  ',' Ofo','','','a','','post-utme','2010',58,'Admin','0000-00-00 00:00:00','2020-05-28 20:53:10'),(106,'A non-monarchial state can best be described as a ','republic ','confederation ','nation ','federation ','','','a','','post-utme','2010',55,'Admin','0000-00-00 00:00:00','2020-06-01 11:59:30'),(107,'Proportional representation favours a ','multi-party system ','three party system ','two-party system ','one party system ','','','a','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:23'),(108,'One major factor that differentiates the presidential from the parliamentary system is  ','separation of the powers ','judicial independence  ','passage of bills ','party system','','','a','','post-utme','2010',80,'Admin','0000-00-00 00:00:00','2020-07-07 05:56:59'),(109,'A state with a hegemonic party is one in which ','there is one dominant party ','there is no opposition party  ','there is only one party  ','other parties are officially recognized.','','','a','','post-utme','2010',56,'Admin','0000-00-00 00:00:00','2020-06-03 13:11:16'),(110,'In the First Republic, Politics in Northern Nigeria was dominated by: ','NEPU ','UMBC ','NCNC ','NPC','','','d','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(111,'The creation of classless society is the ultimate aim of ','communism ','socialism  ','fascism ','capitalism.','','','a','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-06-04 11:53:53'),(112,'Herbert Macaulay was the first president of ','NCNC ',' AG  ','UMBC ','NEPU','','','a','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:44'),(113,'A special election organized to decide on a political issue is known as ','plebiscite ','by-election  ','general election ','primary election.','','','a','','post-utme','2010',46,'Admin','0000-00-00 00:00:00','2020-07-06 09:13:41'),(114,'Equality before the law is a component of: ','separation of powers ','checks and balances ','the rule of law  ','constitutional law','','','c','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-06 10:39:02'),(115,'In the process of implementing laws, the executive sometimes performs: ','judicial function ','bureaucratic function ','oversight function ','legislative function','','','a','','post-utme','2010',72,'Admin','0000-00-00 00:00:00','2020-07-07 08:16:55'),(116,'Which of the these was the main organ of the defunct OAU? ','The liberation committee ','The Council of Ministers  ','The commission for Mediation, Conciliation and Arbitration ','the Assembly of Heads of the state and Government.','','','d','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(117,'Nigeria hosted the commonwealth conference which eventually led to the independence of ','Mozambique ','Namibia  ','Zimbabwe ','Malawi','','','b','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(118,'Multilaterism in Nigeria’s foreign policy entails ','Africa being the centre piece of Nigeria’s foreign policy ','Non aligned posture in international affairs ',' Quest   for a permanent membership  of the UN security Council ','Membership of International Organizations','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-05 07:48:54'),(119,'The ancient Greeks practiced: ','direct democracy ','representative democracy ','liberal democracy ','benevolent dictatorships','','','a','','post-utme','2010',72,'Admin','0000-00-00 00:00:00','2020-06-15 07:59:32'),(120,'Fascism originated from ','Greece ','Italy  ','China  ','Germany','','','b','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-06-03 11:07:56'),(121,'According to Karl Marx, the mode of production that precedes capitalism is ','mercantilism ','feudalism ','socialism ','communalism','','','b','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-06-08 22:11:22'),(122,'One of the distinctive features of a democracy is that it ','Connotes civil rule ','facilitates popular participation ','provides for a unicameral legislature ','is not associated with one party state.','','','d','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:37'),(123,'Serfs are the dominated class under ','capitalisms ','socialism ','fascism ','feudalism ','','','a','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-06-02 14:57:28'),(124,'A human community that is usually cohesive and homogeneous is ','state ','kinship','clan','Nation.','','','d','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(125,'Which of the following made the earliest contact with the Nigerian society? ','The British  ','The Portuguese ','The French ','The Germans','','','b','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-05 07:43:12'),(126,'Under the 1963 Republican Constitution, the president exercised ','Judicial powers ','executive powers ','nominal powers ','concurrent powers.','','','c','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-05 07:43:12'),(127,'The principle of federal character was first enunciated in the: ','1989 constitution ','1963 constitution','1999 constitution ','1979 constitution','','','d','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-07-05 07:48:54'),(128,'Between 1960 and 1966, Nigeria was governed under the  ','presidential system of government ','Westminster system of government ','confederal system of government ','unitary system of government.','','','b','','post-utme','2011',76,'Admin','0000-00-00 00:00:00','2020-07-07 05:56:59'),(129,'One major factor that differentiates the presidential from the parliamentary system is: ','separation of powers','judicial independence ','passage of bills  ','party system.','','','a','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:39'),(130,'A major feature of the policy of deregulation in Nigeria is the: ','enthronement of market forces mechanism ','increasing dominance of the economy by the state ','proliferations of public corporations ','phenomenal increase in direct foreign investment','','','a','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-06-19 20:41:22'),(131,'Bicameral legislature exists: ','where cameramen are allowed to cover the proceedings of the legislature ','to prevent the concentration of power in one legislative house ','to provide jobs for more politicians ','to ensure that just laws are passed','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-06-11 19:38:47'),(132,'A major issue that distinguishes pressure groups from political parties is: ','membership drive  ','the objective','the voting pattern ','the ideology','','','b','','post-utme','2011',60,'Admin','0000-00-00 00:00:00','2020-06-08 06:31:49'),(133,'Equality before the law is a component of: ','separation of powers','checks and balances ','the rule of law','constitutional law.','','','c','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-06-08 22:11:22'),(134,'A law passed by the legislature and assented to by the executive is: ','an act','a presidential proclamation ','a decree   ','a legislative order','','','a','','post-utme','2011',63,'Admin','0000-00-00 00:00:00','2020-06-03 17:39:34'),(135,'The principle of checks and balances empowers the judiciary to: ','invalidate the actions of the other arms ','administer the criminal justice system ','abrogate the law','apply the law','','','a','','post-utme','2011',76,'Admin','0000-00-00 00:00:00','2020-07-05 07:28:25'),(136,'In a parliamentary, the term shadow cabinet is often used to refer to the: ','back benchers in the house ','deputy prime ministers and assistant ministers ','rebellious members of the ruling party ','portfolio designates of the party in opposition.','','','d','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-06-28 20:24:18'),(137,'The fundamental assumption on which the idea of the rule of law is based is: ','supremacy of the constitution','rationality of human beings ','equality of human beings','love for social justice.','','','a','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-05 07:48:07'),(138,'Associations whose main interest is to influence public policies without attempting to capture state power are: ','communal groups','trade unions  ','political parties','pressure groups ','','','d','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-05 07:27:41'),(139,'Multilaterism in Nigeria’s foreign policy entails: ','Africa being the centre piece of Nigeria’s foreign policy ','Non-aligned posture in international affairs ','Quest for a permanent membership of the UN Security Council ','Membership of International Organizations','','','d','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-06-08 06:31:49'),(140,'The set of policies on the basis of which countries interact with one another is called: ','Diplomacy','Foreign policy ','National policy ','International relations.','','','b','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-07-05 12:55:32'),(141,'After the defeat of Germany in World War 1, her former colonies were administered under the League of Nations as: ','occupied territories ','trust territories  ','crown colonies ','protectorates.','','','b','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-07-07 05:56:59'),(142,'The Nigeria-Cameroon crisis over Bakaasi peninsula occurred owning to the interpretation of the Treaty of 1913 and the:','resolution of the OAU ','Maroua Accord','decision of the ECOWAS Tribunal ','decision of the International Court of Justice ','','','b','','post-utme','2011',81,'Admin','0000-00-00 00:00:00','2020-06-11 00:27:36'),(143,'The first Nigeria leader to become chairman of the Organization of African Unity was:  ','Tafawa Balewa','Murtala Mohammed','Yakubu Gowon  ','Aguiyi-Ironsi','','','c','','post-utme','2011',60,'Admin','0000-00-00 00:00:00','2020-06-07 15:49:24'),(144,'Nigeria’s non-aligned policy was criticized because of the: ','ECOWAS Treaty ','Nuclear Test Ban Treaty  ','Anglo-Nigerian Pact ','Non-Proliferation Treaty ','','','c','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(145,'Fascism originated from: ','Greece','Italy ','China ','Germany ','','','b','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-05 11:24:59'),(146,'Diarchy refers to the: ','rule by the government and the opposition parties ','mixture of parliamentary and presidential systems ','rule by political and economic elites ','rule by the military and civilians.','','','c','','post-utme','2011',56,'Admin','0000-00-00 00:00:00','2020-06-02 03:30:59'),(147,'A major flaw in liberal democracy is: ','the limitation of the freedom of expression ','its emphasis on political rights over economic rights ','that it promotes political instability ','its emphasis on collective ownership.','','','b','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:37'),(148,'Under military regimes in Nigeria, the branches of government that were fused are: ','executive and the legislature','executive and the judiciary ','legislature and the judiciary ','executive, the legislative and the judiciary ','','','a','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-06-01 22:48:11'),(149,'Which of the following does not described a party system? ','one dominant party system  ','two party system  ','three party system  ','multi-party system','','','b','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:34'),(150,'Laws made by local governments are called  ','Acts of Parliament ','Local Government Acts ','Bye-laws  ','Local Government Decrees ','','','b','','post-utme','2012',53,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(151,'The commission established to handle the electoral activities in the Second Republic of Nigeria was ','National Electoral Commission  ','National Electoral Commission of Nigeria  ','Federal Electoral Commission  ','Independent National Electoral Commission','','','c','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:08'),(152,'The principle of checks and balances modifies the theory of  ','Rule of law ','Supremacy of law  ','Separation of powers  ','Delegated Legislation ','','','c','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-06-15 03:13:34'),(153,'The European Union (EU) is an  ','Economic organization  ','Association of former British Colonies ','Organization of European States ','Union European organization ','','','c','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:39'),(154,'In Nigeria, promotion of judges is the responsibility of the ','Chief Justice of the Federation  ','Judicial Service Commission  ','Council of Legal Education  ','Attorney-General and Minister of Justice ','','','b','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-06-19 20:41:22'),(155,'The Legislature in Nigeria under the 1999 constitution is composed  ','109 senators and 360 members of the House of Representative  ','109 senators and 350 members of the House of Representative  ','108 senators and 350 members of the House of Representative  ','100 senators and 250 members of the House of the Representative ','','','a','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-06-01 19:05:27'),(156,'Under a parliamentary system of government, the cabinet holds office at the pleasure of the ','head state ','electorate  ','legislature  ','opposition ','','','c','','post-utme','2012',55,'Admin','0000-00-00 00:00:00','2020-05-28 20:54:43'),(157,'The ultimate authority in a State is referred to as  ','president  ','sovereignty ','legislature  ','legitimacy ','','','b','','post-utme','2012',50,'Admin','0000-00-00 00:00:00','2020-06-03 23:45:22'),(158,'The most important aspect of political participation in a democracy is  ','attending political rallies  ','voting in elections  ','registration with a political party  ','the observance of electoral processes ','','','b','','post-utme','2012',54,'Admin','0000-00-00 00:00:00','2020-07-05 13:36:55'),(159,'One of the foremost theorists of federalism was A. ','A.V Dicey  ','B. K.C Wheare ','C. Karl Marx  ','Baron de Montesquieu ','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-06-24 00:49:42'),(160,'The judicial organ of the United Nations is the  ','security council  ','European court  ','general assembly  ','International court of Justice  ','','','d','','post-utme','2012',50,'Admin','0000-00-00 00:00:00','2020-07-07 06:03:18'),(161,'The Universal Negro Improvement Association was founded by  ','Casely Hayford  ','Herber Macauly  ','Marcus Garvey  ','W.E.B. Du Bois','','','c','','post-utme','2012',61,'Admin','0000-00-00 00:00:00','2020-07-05 22:09:41'),(162,'The Chick’s Commission in Nigeria was set up to look into  ','state’s creation  ','revenue allocation  ','minorities issues  ','extra-judicial killings','','','b','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-05-30 11:12:52'),(163,'Nigeria observed the principal of collective responsibility between  ','1960 and 1966 ','1979 and 1983  ','1985 and 1993 ','1999 and 2003','','','a','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(164,'The method used to determine the possible outcome of an electoral contest is ','conduct of elections into local government offices  ','registration of political party  ','conduct of gubernatorial elections  ','delineation of electoral constituencies ','','','a','','post-utme','2012',51,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:39'),(165,'The principle of checks and balances empowers the judiciary to  ','apply the law  ','administer the criminal justice system  ','abrogate the law  ','invalidate the actions of the other arms ','','','d','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-06-07 14:14:55'),(166,'The final stage in the process of enacting legislation is  ','assent  ','final reading  ','notification  ','guillotine  ','','','a','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-07 06:03:18'),(167,'Every political system performs the following basic functions excepts  ','Rule making  ','Rule transformation  ','Rule enforcement  ','Rule adjudication ','','','b','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(168,'Globalization is all but one of these ','A renewed concepts in international studies  ','Limitation to the domination of the West  ','A process of making the world smaller  ','An increasing integration of the world ','','','c','','post-utme','2012',57,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(169,'A major factor that differentiates International politics from domestic politics is that International politics ','has no centralized institution of government ','cannot enforce sanctions  ','has centralized organs of administration  ','has a central law making body','','','a','','post-utme','2012',56,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:25'),(170,'Globalization encompasses all the following except  ','market integration  ','internationalization of politics  ','technology improvement  ','economic liberalism ','','','d','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(171,'The ten non-permanent members of the security council are elected by the  ','general assembly ','trusteeship council  ','security council  ','economic and social council ','','','a','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:53'),(172,'Under the independence constitution of Nigeria, Dr. Nnamdi Azikwe was  ','Prime Minister ','Governor General  ','Lieutenant – Government ','Head of State','','','b','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(173,'Which organ is referred to as ‘the last hope’ of the common man  ','the parliament   ','the judiciary  ','the executive  ','the legislature','','','b','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:12'),(174,'What does INEC stand for?','Independent National Election Committee  ','Independent Newspapers Executive Committee  ','Independent National Export Council  ','Independent National Electoral Commission','','','d','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:31'),(175,'Which of the following is not a feature of Nigeria’s electoral system?  ','direct election   ','general election  ','Proportional representation  ','secret ballot','','','c','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:16'),(176,'The head of the Nigerian judiciary is the','Chief Justice of the Federation','Solicitor-General of the Federation  ','Attorney-General and Minister of Justice  ','President of the Court of Appeal','','','a','','post-utme','2013',63,'Admin','0000-00-00 00:00:00','2020-06-29 05:40:22'),(177,'Manipulation of electoral boundaries for electoral purposes is known as  ','delimitation   ','gerrymandering','devolution   ','deconcentration','','','b','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-06-26 22:08:23'),(178,'A mechanism used in parliament to limit debate is called  ','guillotine','adjournment   ','Motion of censor   ','delimitation','','','a','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-06-24 00:49:42'),(179,'A major function of the State Independent Electoral Commissions in Nigeria is the  ','Conduct of elections into local government offices  ','registration of political parties','conduct of gubernatorial elections','delineation of electoral constituencies','','','a','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-04 01:08:03'),(180,'In politics, power is all of the following except  ','capacity to affect the actions of others  ','Ability to make people do things they otherwise would not do   ','An object   ','it is part of a relationship','','','c','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:57:25'),(181,'Political activity at the diplomatic level is called  ','International relations','International law','International politics','All of the above','','','d','','post-utme','2013',45,'Admin','0000-00-00 00:00:00','2020-06-11 01:05:51'),(182,'Which of these is not an instrument of foreign policy','war    ','diplomacy  ','subversion   ','foreign aid','','','d','','post-utme','2013',56,'Admin','0000-00-00 00:00:00','2020-07-07 05:56:59'),(183,'The principles that have guided Nigeria’s foreign policy since independence include the following except  ','peaceful coexistence   ','political dependence  ','legal equality of states  ','non-alignment','','','b','','post-utme','2013',50,'Admin','0000-00-00 00:00:00','2020-06-19 20:41:22'),(184,'The independence  of the judiciary can be enhanced by the following except  ','when judges hold office for a fixed term','when judges cannot be removed from office even when they commit crimes','Appointment of judges by an independent body','political neutrality of judges','','','b','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-06-11 00:27:36'),(185,'The Aba women riot in Nigeria took place in   ','1960','1950','1922','1929','','','d','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-05-28 20:55:52'),(186,'The pressure group that resorts to unconventional methods to achieve its objectives is called ',' an institutional group  ',' a promotional group',' an interest group   ',' an anomic group','','','d','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-06-04 07:43:17'),(187,'All but one of the following is not a symbol of political culture','A national flag','The government   ','An anthem  ','The constitution','','','b','','post-utme','2013',53,'Admin','0000-00-00 00:00:00','2020-06-15 03:13:34'),(188,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives',' propaganda','Lobbying  ','Assault',' Boycott','','','c','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(189,'A capitalist state is based on','religion   ','creating job  opportunities  ','Dictatorship   ','Free trade','','','d','','post-utme','2013',47,'Admin','0000-00-00 00:00:00','2020-07-05 22:20:39'),(190,'A major flaw in a liberal democracy is','that it promotes political instability','the limitation of the freedom of expression','its emphasis on political rights over economic rights','its emphasis on collection ownership','','','c','','post-utme','2013',51,'Admin','0000-00-00 00:00:00','2020-06-08 06:39:30'),(191,'Nigeria’s voting at the United Nations is guided primarily by','her national interests   ','world peace   ','the cold war  ','her concern for Africa','','','a','','post-utme','2013',53,'Admin','0000-00-00 00:00:00','2020-07-05 18:18:47'),(192,'On the basis of its structure, a political party can be classified an indirect if','it controls government indirectly  ','it contests elections by proxy','its membership is acquired through other groups  ','it campaigns for votes through agents.','','','c','','post-utme','2013',54,'Admin','0000-00-00 00:00:00','2020-07-05 06:14:01'),(193,'The study of government essentially facilitates the understanding of the','governance of human societies','functioning of the entire social formation  ','observance of fundamental human rights','organization of the executive arm of government','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-06-13 21:10:54'),(194,'In judicial administration, the term ‘the bench’ refers to the  ','lawyers   ','litigants    ','registrars','judges','','','d','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:04'),(195,'How does the president relieve a minister of his appointment in a presidential system of government?','In consultation with the legislature','In consultation with the judiciary  ','by executive action','after serving a full tenure','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-06-23 09:42:29'),(196,'An elected legislator in a presidential system can lose his seat through  ','recall  ','cross-carpeting','a vote of no confidence','impeachment','','','a','','post-utme','2013',69,'Admin','0000-00-00 00:00:00','2020-07-05 20:02:33'),(197,'Which of the following modern principles of democracy is found in the Yoruba traditional political system  ','checks and balances  ','the constitution','multipartism  ','bicameralism','','','a','','post-utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-04 01:09:40'),(198,'The subject matter of politics is best described  as   ','political parties','political power  ','elections','people','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-05-28 20:56:11'),(199,'Government as an institution of a state can best be defined as a body that','recruits and trains political leaders','settles disputes and interprets laws for the state.','Legislates, executes and interprets laws for the state.','conducts elections for the state.','','','c','','wassce','2000',54,'Admin','2016-11-13 16:14:19','2020-07-05 18:18:47'),(200,'Political authority is the','legitimate right to exercise political power.','ability to control political behaviour.','right to participate in political campaigns.','right to form political parties.','','','a','','wassce','2000',49,'Admin','2016-11-13 16:14:22','2020-05-28 20:57:30'),(201,'The rule of law refers to the principle of','legality and impartiality','the supreme power of rulers.','the immunity of judges from legal actions.','the orderly execution of government policies.','','','a','','wassce','2000',45,'Admin','2016-11-13 16:14:22','2020-06-07 16:01:59'),(202,'Freedom of speech is a fundamental human right enjoyed by citizens but it may be limited if','loyalty is not shown to the ruling party','it exposes the wrong doings of the government','it endangers the security of the state.','it is used to cause embarrassment to the judiciary.','','','c','','wassce','2000',56,'Admin','2016-11-13 16:14:22','2020-06-08 06:58:20'),(203,'Which of the following is an obligation of a citizen?','Attending political rallies','Taking part in Independence Day celebrations','Contesting elections','Paying respect to the national flag.','','','d','','wassce','2000',47,'Admin','2016-11-13 16:14:22','2020-05-28 20:53:18'),(204,'The extent to which the citizens regard the institutions, officials and activities of government as right and acceptable is known as','power','legitimacy','influence','authority.','','','b','','wassce','2000',40,'Admin','2016-11-13 16:14:22','2020-05-28 20:56:48'),(205,'Diplomatic immunity is a limitation to','the theory of separation of powers.','principles of checks and balances.','parliamentary supremacy.','the rule of law','','','d','','wassce','2000',41,'Admin','2016-11-13 16:14:22','2020-06-04 05:15:45'),(206,'A federal state is always expensive to run because','every parliamentarian wants to become rich','government departments are duplicated','judges are highly paid from the consolidated fund.','maintenance of the army involves high expenditure.','','','b','','wassce','2000',57,'Admin','2016-11-13 16:14:22','2020-06-28 10:15:16'),(207,'In which of the following party systems are all shades of opinions and interests adequately represented?','Zero-party','One-party','Two-party','Multi-party','','','d','','wassce','2000',45,'Admin','2016-11-13 16:14:23','2020-05-28 20:57:26'),(208,'Veto power in a presidential system lies with the','Attorney General','Chief of Army Staff','Executive President','Prime Minister.','','','c','','wassce','2000',58,'Admin','2016-11-13 16:14:23','2020-06-26 22:08:23'),(209,'Which of the following is the lowest class of people in the hierarchy of a feudal system?','Nobles','Serfs','Lords','Manor.','','','b','','wassce','2000',43,'Admin','2016-11-13 16:14:23','2020-06-01 21:50:21'),(210,'Mussolini’s fascism and Hitler’s Nazism are good examples of','anarchy','feudalism','totalitarianism','oligarchy','','','c','','wassce','2000',44,'Admin','2016-11-13 16:14:23','2020-07-06 10:39:02'),(211,'Which of the following is supreme in a federal system?','Judiciary','legislature','Constitution','Executive.','','','c','','wassce','2000',61,'Admin','2016-11-13 16:14:23','2020-07-07 06:03:18'),(212,'An order directing a detainee to be brought before the court is called','habeas corpus','an appearance','an injunction','a referendum','','','a','','wassce','2000',48,'Admin','2016-11-13 16:14:23','2020-05-28 20:56:35'),(213,'Which of the following is a feature of an elite party?','Members are recruited from the working class.','The leadership is composed of aristocrats and wealthy merchants.','It usually consists of existing associations, clubs and trade unions.','Its leadership has certain techniques which attract supporters.','','','b','','wassce','2000',47,'Admin','2016-11-13 16:14:23','2020-06-28 20:14:50'),(214,'All undesirable feature of capitalism is','exploitation','market economy','profit motive','free competition','','','a','','wassce','2000',52,'Admin','2016-11-13 16:14:23','2020-06-29 06:43:13'),(215,'The system of voting on behalf of another person is known as','voting by lot','casting votes.','voting by proxy','preference voting','','','c','','wassce','2000',56,'Admin','2016-11-13 16:14:23','2020-07-06 09:13:41'),(216,'Authoritarianism is least Inherent in','feudalism','fascism','democracy','monarchy','','','c','','wassce','2000',78,'Admin','2016-11-13 16:14:23','2020-07-07 08:16:55'),(217,'In which of the following systems of government are ceremonial and executive powers usually fused?','Parliamentary','Presidential','Collegial','Confederal.','','','b','','wassce','2000',57,'Admin','2016-11-13 16:14:23','2020-06-03 23:45:22'),(218,'The programme of a political party is known as its','constitution','document','manifesto','propaganda','','','c','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-07-07 08:16:55'),(219,'Which of the following is a source of a country’s constitution','Mandamus','Judicial precedents','Injunctions','Political decisions','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:23','2020-06-03 23:45:22'),(220,'The acquisition of political power through hereditary means is a feature of','Communalism','Capitalism','Oligarchy','Monarch','','','d','','wassce','2000',38,'Admin','2016-11-13 16:14:23','2020-06-03 13:35:42'),(221,'Which of the following factors limits the expression of public opinion?','The type of government in a state','The establishment of private media organizations.','The high literacy rate of the citizens','Religious belief of the citizens.','','','a','','wassce','2000',40,'Admin','2016-11-13 16:14:23','2020-06-30 15:24:32'),(222,'If the federal government and the unit governments are to \tpreserve their autonomy, the','Federal government must be supreme','Unit governments must be supreme','Judiciary must be supreme','Constitution must be supreme','','','d','','wassce','2000',56,'Admin','2016-11-13 16:14:23','2020-06-19 20:41:22'),(223,'Which of the following best describes the relationship between the central and the component government in a confederation?','The central government collects revenue for component government','The central and component governments have equal powers','The central government legislates for the component governments.','The central government is weaker than the component government.','','','d','','wassce','2000',51,'Admin','2016-11-13 16:14:23','2020-05-28 20:56:22'),(224,'The administrative head of a public corporation in Nigeria is the','Managing Directors','Secretary','Board of Directors','Chairman','','','a','','wassce','2000',45,'Admin','2016-11-13 16:14:23','2020-06-07 14:14:55'),(225,'The appointment, promotion and discipline of civil servants are the responsibility of the','Civil Service Union','Judicial Service Commission','Civil Service Commission','Electoral Commission.','','','c','','wassce','2000',50,'Admin','2016-11-13 16:14:23','2020-06-03 11:04:32'),(226,'Red tapism in the civil service refers to','The use of red tapes on legal documents.','Sloness of action','Prevent entrance','the co-operation between civil servant s and politicians','','','b','','wassce','2000',72,'Admin','2016-11-13 16:14:23','2020-07-05 22:09:41'),(227,'The grant of the right to vote is called','enfranchisement','disqualification','prohibition','participation','','','a','','wassce','2000',57,'Admin','2016-11-13 16:14:23','2020-06-03 13:35:42'),(228,'The system which allows private individuals and companies to own and control the means of production is known as','socialism','fascism','capitalism','communism','','','c','','wassce','2000',52,'Admin','2016-11-13 16:14:24','2020-06-29 00:24:38'),(229,'Which of the following factors may work against a representative system of government?','High literacy of the electorate','The introduction of universal adult suffrage','Independent electoral commission','Rigging of elections','','','d','','wassce','2000',58,'Admin','2016-11-13 16:14:24','2020-07-05 22:09:41'),(230,'The powers allocated to the central government in a federation are contained in the','central legislative list','exclusive legislative list','residual legislative list','concurrent legislative list.','','','b','','wassce','2000',46,'Admin','2016-11-13 16:14:24','2020-06-08 19:25:57'),(231,'The Nigerian federal legislature is called the','Senate','Congress','National Assembly','House of Representatives','','','c','','wassce','2000',52,'Admin','2016-11-13 16:14:24','2020-07-04 01:08:03'),(232,'Delegated legislation has the advantage of','enlightening the public about law making procedure','saving parliamentary time','reducing the expenses of the legislature','preventing the executive from becoming too powerful.','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-06-28 13:05:03'),(233,'Nigeria’s first constitution was the','Lyttleton Constitution','Clifford Constitution','Macpherson constitution','Independence Constitution','','','b','','wassce','2000',42,'Admin','2016-11-13 16:14:24','2020-07-04 01:08:03'),(234,'The Nigerian Macpherson Constitution of 1951 was significant for','the introduction of Electoral College','providing for the office of the Prime Minister','the creation of states.','establishing the Supreme Court','','','a','','wassce','2000',54,'Admin','2016-11-13 16:14:24','2020-07-04 01:09:40'),(235,'The concept of regionalism in Nigeria was first introduced by the','Independence Constitution','Macpherson Constitution','Richard’s Constitution','Lyttleton Constitution','','','c','','wassce','2000',57,'Admin','2016-11-13 16:14:24','2020-07-07 06:03:18'),(236,'Immediately after the Nigerian Civil War, Gowon’s regime embarked on','rejuvenation, resettlement and reconstruction','reconciliation, rehabilitation and reconstruction','rebuilding, rejuvenation and rehabilitation','rehabilitation, renaissance and repression.','','','b','','wassce','2000',58,'Admin','2016-11-13 16:14:24','2020-06-07 21:11:23'),(237,'Which of the following military regimes in Nigeria played a prominent role in the liberation of colonized African states?','Aguiyi Ironsi','Murtala / Obasanjo','Muhammadu Buhari','Ibrahim Babangida','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-05-28 20:57:04'),(238,'Traditional rulers appointed by the British to implement indirect rule in Eastern Nigeria were called','palace chiefs','village chiefs','warrant chiefs','crown chiefs','','','c','','wassce','2000',51,'Admin','2016-11-13 16:14:24','2020-05-28 20:57:29'),(239,'The bill introduced by a member of the legislature is known as','a-private member’s bill','an executive bill','a state bill','a political party’s bill','','','a','','wassce','2000',65,'Admin','2016-11-13 16:14:24','2020-06-13 21:10:54'),(240,'In the federation of Nigeria, states are equally represented in the','Senate','House of Representatives','Judiciary','National Population Commission','','','a','','wassce','2000',56,'Admin','2016-11-13 16:14:24','2020-07-05 07:28:25'),(241,'In pre-colonial Igboland, administrative meetings were presided over by the','Mazi','Ogbuefi','Ozo title holder','Okpara','','','c','','wassce','2000',47,'Admin','2016-11-13 16:14:24','2020-06-08 22:11:22'),(242,'Checks and balances was a feature of pre-colonial political administration of the','Hausa','Yoruba','1gbo','Fulani','','','b','','wassce','2000',50,'Admin','2016-11-13 16:14:24','2020-07-05 13:04:57'),(243,'Which of the following groups had the best egalitarian traditional political system?','Hausa/Fulani','Yoruba','lgbo','Edo','','','c','','wassce','2000',76,'Admin','2016-11-13 16:14:24','2020-06-01 16:22:10'),(244,'In the pre-colonial Hausa/Fulani system, the appointment of an Emir in the Caliphate was approved by the','Sardauna of Sokoto and the Alkali','Galadima and the Waziri','Shehu of Bomo and the Galadima','Sultan of Sokoto and the Emir of Gwandu','','','d','','wassce','2000',58,'Admin','2016-11-13 16:14:24','2020-05-28 20:57:10'),(245,'The French policy of Assimilation in West Africa was a form of','indirect rule','direct rule','democratic rule','monarchy','','','b','','wassce','2000',49,'Admin','2016-11-13 16:14:24','2020-05-28 20:56:15'),(246,'One of the problems facing the Economic Community of West African States (ECOWAS) is that','member states do not attend meetings regularly','member states do not have a common currency','some members states want to contribute larger funds to the community','it is a rival to the Organization of African Unity','','','b','','wassce','2000',49,'Admin','2016-11-13 16:14:24','2020-06-11 19:38:47'),(247,'The world organization which existed before the United Nations Organization was the','League of Nations','European Economic Community','Organization of African Unity','Commonwealth of Nations.','','','a','','wassce','2000',65,'Admin','2016-11-13 16:14:24','2020-07-05 07:48:54'),(248,'Which of the following bodies is the most representative organ of the United Nations organization (UNO)?','The Economic and Social Council','The Trusteeship Council','The Security Council','The General Assembly.','','','d','','wassce','2000',53,'Admin','2016-11-13 16:14:24','2020-06-07 20:19:16'),(249,'Which of the following is NOT a feature of a state?','Government','Nationality','Sovereignty','Territory','','','b','','neco','2013',72,'Admin','2016-11-13 16:50:50','2020-06-24 00:49:42'),(250,'The legitimacy of government is established when','civil service commission reflects federal character','electoral commission is well funded','free and fair elections are conducted','ministers are appointed to head ministries','','','c','','neco','2013',75,'Admin','2016-11-13 16:50:50','2020-06-28 10:15:16'),(251,'The United Nations Organization (UNO) was founded in','1919','1935','1939','1945','','','d','','neco','2013',58,'Admin','2016-11-13 16:50:50','2020-06-29 05:40:22'),(252,'Which of these best defines a state? A/An','country made up of heterogeneous people','.\\ncountry with definite territory free from external control.','independent country free from external control.','organized body of people occupying a definite territory with sovereign government.','','','b','','neco','2013',66,'Admin','2016-11-13 16:50:50','2020-06-07 16:15:41'),(253,'To ensure impartiality and independence of electoral commission, the body should be','funded by political parties','headed by a justice of the Supreme Court','headed by a professor of political science','independent of government control','','','d','','neco','2013',62,'Admin','2016-11-13 16:50:50','2020-06-01 18:18:05'),(254,'The term ‘collective responsibility’ is an indispensable feature of ___ system of government.','diarchy','federal','parliamentary','presidential','','','c','','neco','2013',62,'Admin','2016-11-13 16:50:51','2020-06-04 07:18:21'),(255,'The Chick’s commission was set up to look into the issue of revenue allocation in','1946','1951','1953','1957','','','c','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-06-29 05:40:22'),(256,'In the Igbo pre-colonial administration, the council of elders was normally presided over by','Eze','Obi','Okpara','Onowu','','','c','','neco','2013',64,'Admin','2016-11-13 16:50:51','2020-06-02 15:56:37'),(257,'In Nigeria, the head of the electoral commission is called the','Administrative Secretary','Chairman','Electoral Commissioner','Presiding Officer','','','b','','neco','2013',82,'Admin','2016-11-13 16:50:51','2020-07-05 18:25:09'),(258,'Authority is the','ability to compel others to do what they do not want','ability to delegate power to other bodies','ability to rule without fear or favour','capacity to encourage others to do what they intended doing','','','d','','neco','2013',71,'Admin','2016-11-13 16:50:51','2020-05-28 20:56:14'),(259,'The Economic Community of West African States (ECOWAS) was formed on','28th May, 1975','29th May, 1976','28th June, 1975','28th July, 1975','','','a','','neco','2013',75,'Admin','2016-11-13 16:50:51','2020-07-05 22:09:41'),(260,'Revenue allocation means the sharing of the','national cake among the people','wealth of a nation among different levels of government','wealth of a nation among the state governments for specific purposes','wealth of a nation between the federal and local governments','','','b','','neco','2013',51,'Admin','2016-11-13 16:50:51','2020-05-28 20:56:19'),(261,'The first military intervention in Nigeria politics was in','1960','1962.','1963','1966','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:51','2020-07-04 01:08:03'),(262,'To contest an election, a candidate must be a member of a','campaign organization.','civil society organization.','national assembly','political party.','','','d','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-05-28 20:57:41'),(263,'Military rule is an example of ______ authority.','charismatic','coercive','delegated','legal','','','b','','neco','2013',65,'Admin','2016-11-13 16:50:51','2020-07-06 18:04:33'),(264,'Which of these countries is NOT a member of Economic Community of West African States (ECOWAS).','Cameroon','Cape Verde','Ghana','Guinea','','','a','','neco','2013',58,'Admin','2016-11-13 16:50:51','2020-07-05 12:55:32'),(265,'Who among the following was NOT an officer in the pre-colonial Yoruba society?','Aremo','Are-Onakakanfo','Balogun','Oluwo','','','d','','neco','2013',68,'Admin','2016-11-13 16:50:51','2020-05-30 17:36:31'),(266,'The 1957 commission of enquiry which investigated the problems of ethnic domination in Nigeria was chaired by','Arthur Richard.','Frederick Lugard.','Henry Willink.','Hicks Phillipon','','','c','','neco','2013',57,'Admin','2016-11-13 16:50:51','2020-05-28 20:56:46'),(267,'Which of these groups of people had no right to make law under the pre-colonial Igbo political structure?','Age grades','Council of Elders','Osu','Priests','','','c','','neco','2013',84,'Admin','2016-11-13 16:50:51','2020-07-05 13:42:57'),(268,'21.\tIn a parliamentary system of government a general election is usually conducted after','dissolution of parliament.','plebiscite.','referendum.','resolution.','','','a','','neco','2013',75,'Admin','2016-11-13 16:50:51','2020-05-28 20:57:05'),(269,'A nation is made up of people who share','heterogeneous characteristics.','homogeneous and heterogeneous characteristics.','homogeneous characteristics.','same government only.','','','a','','neco','2013',73,'Admin','2016-11-13 16:50:51','2020-05-28 20:57:44'),(270,'The Commonwealth of Nations consists of states formerly under ___colony.','Belgium','British','French','Portuguese','','','b','','neco','2013',70,'Admin','2016-11-13 16:50:51','2020-07-04 01:09:40'),(271,'Which of these is a feature of Nigeria federalism?','Conflict of authority does not arise','Minority groups are equally benefited','Parliamentary supremacy','Secession is constitutionally forbidden','','','b','','neco','2013',57,'Admin','2016-11-13 16:50:51','2020-06-17 21:32:41'),(272,'Under the 1979 Nigeria constitution, the national assembly was made up of the','House of Chiefs and the Senate.','House of Lords and the House of Representatives.','Lower House and House of Representatives.','Senate and House of Representatives.','','','d','','neco','2013',68,'Admin','2016-11-13 16:50:51','2020-07-05 12:55:32'),(273,'','In a single member constituency the voters in that constituency have the right to','declare a winner of an election in their constituency','.\\nelect many representatives.','elect one representative.','','','a','','neco','2013',70,'Admin','2016-11-13 16:50:51','2020-07-06 10:19:49'),(274,'Before the British colonialism in Nigeria, which of these was an instrument for dispensation of justice in !gbo land?','Cult','Land','Masquerade','Ofo','','','d','','neco','2013',57,'Admin','2016-11-13 16:50:51','2020-05-28 20:57:36'),(275,'The special box prepared by the electoral commission into which voters cast their votes is called','ballot box.','ballot paper.','logo.','polling booth.','','','a','','neco','2013',59,'Admin','2016-11-13 16:50:51','2020-06-20 13:07:40'),(276,'An electoral officer charged with the responsibility of announcing election result at the local government level is known as','administrative secretary.','chairman.','polling clerk','presiding officer','','','d','','neco','2013',59,'Admin','2016-11-13 16:50:51','2020-06-04 01:15:28'),(277,'The idea of federalism in Nigeria started with ______ constitution.','Clifford','Independence','Lyttleton','Macpherson','','','d','','neco','2013',68,'Admin','2016-11-13 16:50:52','2020-07-06 08:36:21'),(278,'Under the 1979 constitution of Nigeria, each state was allowed to elect','as many senators as the state could finance','five senators','from two to five senators depending on the population','three senators','','','b','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-06-04 15:05:43'),(279,'In the pre-colonial Hause/Fulani society, the political head was called','Alkali','Galadima','Ma `aji','Wasiri','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-05-28 20:57:04'),(280,'In dividing a country into constituencies, it is important to','ask for permission from the traditional ruler in that area','consider historical','display the voters register','involve the politicians in the areas','','','b','','neco','2013',80,'Admin','2016-11-13 16:50:52','2020-07-06 10:19:49'),(281,'The head of the Oyomesi in pre-colonial Yoruba traditional society was','Alaafin','Are - onakakanfo','Baale','Bashorun','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-05-28 20:57:24'),(282,'The age qualification required for a Nigerian to contest as a Senator is','18','21','30','40','','','d','','neco','2013',66,'Admin','2016-11-13 16:50:52','2020-07-05 12:55:32'),(283,'Nigeria is presently divided into how many federal constituencies?','6','36','109','360','','','c','','neco','2013',63,'Admin','2016-11-13 16:50:52','2020-07-07 06:03:18'),(284,'Before an election is conducted, the country is divided into electoral districts mainly to','avoid double voting','avoid secret voting','enable the electoral commission have more people to register','make it possible for all people in various parts of the country to be represented.','','','d','','neco','2013',59,'Admin','2016-11-13 16:50:52','2020-06-18 22:38:07'),(285,'The following were the consequences of the Nigeria civil war EXCEPT the','creation of more states','disruption of educational and economic activities','general feelings of insecurity','loss of lives and properties','','','a','','neco','2013',55,'Admin','2016-11-13 16:50:52','2020-06-01 16:22:10'),(286,'The parties that formed the coalition government in 1960 were ___ and ___','AG, NCNC','AG, NPC','NCNC.NEPU','NPC, NCNC','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-06-04 16:16:05'),(287,'In Igbo assembly during the pre-colonial era, decisions were normally reached by','balloting.','consensus','hand raising','queuing','','','b','','neco','2013',70,'Admin','2016-11-13 16:50:52','2020-06-29 05:05:38'),(288,'Which of the following is a function of an electoral commission?','Contesting elections','Organizing and conducting elections','Organizing political parties','Settling disputes among political parties','','','b','','neco','2013',69,'Admin','2016-11-13 16:50:52','2020-06-01 20:56:12'),(289,'The cultural organisation which metamorphosed into \tNorthern People’s Congress (NPC) was','Arewa Consultative Forum','Borno Youth Movement','Egbe Omo Oduduwa','Jamiyyar Mutanen Arewa','','','d','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-06-19 22:15:44'),(290,'Before a candidate is declared winner under absolute majority system of voting, the candidate must score more than ___ of the total vote cast.','half','one - quarter','one - third','three - quarter','','','a','','neco','2013',63,'Admin','2016-11-13 16:50:52','2020-07-04 01:09:40'),(291,'Nigeria became a member country of the Common wealth of Nations on 1st October','1922','1951','1960','1963','','','c','','neco','2013',80,'Admin','2016-11-13 16:50:52','2020-06-29 06:19:10'),(292,'A constitution that requires stringent procedures for amendment is termed ___ constitution.','federal','flexible','rigid','unitary','','','c','','neco','2013',60,'Admin','2016-11-13 16:50:52','2020-06-04 16:16:05'),(293,'To conduct local government elections, the electoral commission divides the local government area into','branches','constituencies','secretariats','wards.','','','d','','neco','2013',61,'Admin','2016-11-13 16:50:52','2020-07-06 10:19:49'),(294,'Agents of political socialization include the following EXCEPT','educational institutions','political godfathers','political parties','religious institutions','','','b','','neco','2013',61,'Admin','2016-11-13 16:50:52','2020-07-04 01:09:40'),(295,'Ownership of land is a common feature of','aristocracy','capitalism','communalism','feudalism.','','','d','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-07-05 20:02:33'),(296,'The term of the Secretary-General of United Nations (UN) is for ___ years.','eight','five','four','six','','','b','','neco','2013',60,'Admin','2016-11-13 16:50:52','2020-06-01 19:05:27'),(297,'How many members of the security council of the United Nations (UN) exercise veto power?','Eight','Five','Four','Six','','','b','','neco','2013',62,'Admin','2016-11-13 16:50:52','2020-06-11 00:27:36'),(298,'The head of the electoral commission at the local government area is referred to as the','chairman','electoral officer','resident commissioner','returning officer','','','d','','neco','2013',76,'Admin','2016-11-13 16:50:52','2020-07-04 01:09:40'),(299,'Who was the leader of the Northern Elements Progressive Union (NEPU)?','Alhaji Balarabe Musa','Alhaji Umaru Dikko','Mallam Aminu Kano','Sir Abubakar Tafawa Balewa','','','c','','neco','2013',66,'Admin','2016-11-13 16:50:53','2020-06-04 09:11:56'),(300,'Which of the following is NOT a source of local government finance?','Commercial ventures','Grants','Rates','Sale of bonds','','','d','','neco','2013',75,'Admin','2016-11-13 16:50:53','2020-07-06 08:36:21'),(301,'The first ever civilian - to - civilian transition was recorded in Nigeria in','1966','1979','1999','2003','','','d','','neco','2013',71,'Admin','2016-11-13 16:50:53','2020-07-07 08:16:55'),(302,'A manifesto is essential to political parties because it enables them to','assess the electorates','gauge public opinion','manipulate election','present programme of action','','','d','','neco','2013',65,'Admin','2016-11-13 16:50:53','2020-07-06 10:19:49'),(303,'The two Greek words that make up democracy are ___ and ___ ,','arita, demo','demo, aria','demo, krat','demo, kratia','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:53','2020-06-17 21:05:20'),(304,'The Headquarters of Organization of Petroleum Exporting Countries (OPEC) is located in','Algiers','Baghdad','Riyadh','Vienna','','','d','','neco','2013',63,'Admin','2016-11-13 16:50:53','2020-07-04 01:08:03'),(305,'The term, “Quorum” means the number of legislators chat','are absent from a day’s proceeding.','assent to any particular bill','belong to the opposition party in the house','must be present before business could start','','','d','','neco','2013',67,'Admin','2016-11-13 16:50:53','2020-07-06 08:36:21'),(306,'The process of sensitizing the electorate on the need to vote on the election day and also observe the rules and regulations of election is referred to as','campaign','free and fair election','gerrymandering','political socialization.','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:53','2020-06-29 05:08:52'),(307,'Which of the following is NOT a feature of the civil service?','Anonymity','Expertise','Impartiality','Rigidity','','','d','','neco','2013',81,'Admin','2016-11-13 16:50:53','2020-07-07 05:56:59'),(308,'In a federal state, power is shared','between the center government and the local authorities','among the state of the federation','among the major regions of the country','between the center government and other co-ordinate units.','','','d','','wassce','1999',60,'Admin','2016-11-13 17:15:28','2020-06-15 03:05:56'),(309,'In a federal system of government, the center is','superior to the other components','inferior to the other components','weak to the other components','equal to the other components','','','a','','wassce','1999',78,'Admin','2016-11-13 17:15:29','2020-06-02 14:29:53'),(310,'In a presidential system of government, ministers are','individually responsible to the president','individually responsible to the senate','collectively responsible to the president','collectively responsible to the electorate','','','a','','wassce','1999',57,'Admin','2016-11-13 17:15:29','2020-07-06 18:04:33'),(311,'The principle of collectively responsibility implies that','individual views cannot be expressed','decisions taken are defended in spite of individual opinions','those who hold different views must acquiesce','government cannot be personalized','','','b','','wassce','1999',63,'Admin','2016-11-13 17:15:29','2020-06-03 17:39:34'),(312,'A government controlled by a few people for their own interests is said to be','an autocracy','a tyranny','an oligarchy','a meritocracy','','','c','','wassce','1999',63,'Admin','2016-11-13 17:15:29','2020-06-17 20:48:37'),(313,'In the parliamentary system of government, formal legislation can take the following forms except','royal proclamations','order in council','acts of parliament','ministerial pronouncement','','','a','','wassce','1999',48,'Admin','2016-11-13 17:15:29','2020-05-28 20:56:46'),(314,'One of the distinctive features of democracy is that it','connotes civil rule','facilitates popular','provides for a unicameral legislature','is not associated with one-party system','','','b','','wassce','1999',41,'Admin','2016-11-13 17:15:29','2020-05-28 20:57:02'),(315,'A hereditary system of government is','an oligarchy','a gerontocracy','an aristocracy','a monarchy','','','d','','wassce','1999',44,'Admin','2016-11-13 17:15:29','2020-06-03 15:39:55'),(316,'The separation of judicial, legislative and executive function is designed to','promote freedom','prevent tyranny','promote peace','prevent anarchy','','','b','','wassce','1999',48,'Admin','2016-11-13 17:15:29','2020-06-04 03:05:30'),(317,'Bicameral legislature are a common feature of','monarchical systems','confederal systems','federal systems','unitary systems','','','c','','wassce','1999',42,'Admin','2016-11-13 17:15:29','2020-06-24 00:49:42'),(318,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as','exclusive','extra-ordinary','residual','concurrent.','','','d','','wassce','1999',51,'Admin','2016-11-13 17:15:29','2020-06-29 05:40:22'),(319,'The most important function of the exclusive organ of government is to','formulate policies','give assent to bills','control foreign policies','enforce laws.','','','a','','wassce','1999',63,'Admin','2016-11-13 17:15:29','2020-06-01 16:14:00'),(320,'The process of learning the norms and values associated with a political system is referred to as political','socialization','indoctrination','culture','participation','','','a','','wassce','1999',49,'Admin','2016-11-13 17:15:29','2020-06-08 00:19:55'),(321,'Which of the following best describes the role of the civil service?','Promoting the interest of civil servants','Advising government and implementing its policies','Keeping records for government','Providing information on government and its agencies.','','','d','','wassce','1999',50,'Admin','2016-11-13 17:15:30','2020-06-04 23:41:17'),(322,'One instrument for safeguarding the rights of citizens is','judicial interpretation','presidential pardon','legislative intervention','writ of habeas corpus','','','d','','wassce','1999',45,'Admin','2016-11-13 17:15:30','2020-07-04 01:09:40'),(323,'Legislative control over delegated legislation can be performed through','withdrawal of delegated powers by the judiciary','nullification of unconstitutional legislation','investigation into the exercise of delegated powers','approval of legislation by the Chief Justice.','','','c','','wassce','1999',49,'Admin','2016-11-13 17:15:30','2020-05-28 20:56:32'),(324,'The feature which best differentiates pressure group from political parties is that they do not','have interest in politics','seek to influences public opinion','have permanent organization','nominate ministers','','','d','','wassce','1999',51,'Admin','2016-11-13 17:15:30','2020-06-26 22:08:23'),(325,'The notion of equality before the law is the same as the principle of','supremacy of the constitution','rule of law','independence of the judiciary','nominate ministers','','','b','','wassce','1999',62,'Admin','2016-11-13 17:15:30','2020-06-26 22:08:23'),(326,'A constitution is classified as unwritten when it','does not emanate from the legislature','provides for separation of powers','originates from Britain','is not contained in any single document','','','d','','wassce','1999',39,'Admin','2016-11-13 17:15:30','2020-07-07 06:03:18'),(327,'.\\n\\nA state is said to be fascist when','its leader is patriotic but the citizens are not','all rights and liberties are subordinated to state interest','its citizens are fanatically in love with their leader','all rights and liberties are placed above state interests.','','','b','','wassce','1999',46,'Admin','2016-11-13 17:15:30','2020-07-06 18:04:33'),(328,'A dominant two-party system is operated in','the United Kingdom and the United States','India and Pakistan','France and Germany','South Africa and Senegal','','','a','','wassce','1999',56,'Admin','2016-11-13 17:15:30','2020-06-07 14:38:47'),(329,'Indirect legislation can be achieved by','judicial interpretation and precedent','passing a private member’s bill','second read of the law','the two legislative chambers considering a bill','','','a','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-06-13 21:10:54'),(330,'Naturalization is a process of acquiring citizenship by','persons of dual nationality','foreign visitors to a country','resident foreigners of good character','persons born abroad.','','','c','','wassce','1999',44,'Admin','2016-11-13 17:15:30','2020-07-05 12:55:32'),(331,'The ideology which states that each person is the best judge of what is in his self-interest is','liberalism','socialism','fascism','feudalism','','','a','','wassce','1999',44,'Admin','2016-11-13 17:15:30','2020-06-10 19:55:35'),(332,'The Code of Conduct Bureau was established essentiality to','ensure the independence of the public service','enhance probity and accountability in public service','probe public office holders','reduce corruption in public life.','','','b','','wassce','1999',55,'Admin','2016-11-13 17:15:30','2020-07-05 06:14:01'),(333,'The British Government revoked the Character of the Royal Niger Company and took over the administration of Nigeria in','1861','1861','1900','1914','','','c','','wassce','1999',48,'Admin','2016-11-13 17:15:30','2020-05-28 20:56:47'),(334,'The Independence constitution can be described as','monarchical and presidential','republican and parliamentary','monarchical and parliamentary','federal and republican','','','c','','wassce','1999',52,'Admin','2016-11-13 17:15:30','2020-06-07 16:13:37'),(335,'Which of the following parties formed the opposition in the House of Representatives during Nigeria’s First Republic?','AG and UMBC','NCNC AND NEPU','NPC and NNDP','NCNC and AG','','','a','','wassce','1999',48,'Admin','2016-11-13 17:15:30','2020-05-28 20:56:57'),(336,'The first Head of Government in Independent Nigeria was','Nnamdi Azikiwe','Ahmadu Bello','Tafawa Balewa','Herbert Macaulay','','','c','','wassce','1999',50,'Admin','2016-11-13 17:15:30','2020-06-18 22:38:07'),(337,'A feature common to the 1963, 1979 and 1989 constitutions of Nigeria was that they provided for a','republican system','prime minister','ceremonial head of state','president as head of government','','','a','','wassce','1999',66,'Admin','2016-11-13 17:15:30','2020-07-05 20:02:33'),(338,'The Lagos Colony and Protectorate was amalgamated with The Protectorate of Southern','1886','1893','1906','1922','','','c','','wassce','1999',48,'Admin','2016-11-13 17:15:30','2020-07-05 18:18:47'),(339,'During the 1957 constitutional conference, the Willink Commission was set up to','recommend a date for independence','suggest an equitable revenue allocation  \tformula','create new regions in Nigeria','recommend solutions to the problem of the minorities','','','d','','wassce','1999',49,'Admin','2016-11-13 17:15:30','2020-05-28 20:57:43'),(340,'The duty of an Alkali under the Hausa-Fulan political system is to','adjudicate under Islamic laws','make Islamic laws','execute Islamic laws','make treaties under Islamic laws','','','a','','wassce','1999',48,'Admin','2016-11-13 17:15:30','2020-06-28 19:54:32'),(341,'The motion for self-government in Nigeria was proposed by Chief Anthony Enahoro in','1956','1953','1956','1958','','','b','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-07-04 01:09:40'),(342,'The legislative functions of the government of Benin Kingdom were performed by the','Esama','Ndichie','Uzama','Enigie','','','c','','wassce','1999',55,'Admin','2016-11-13 17:15:30','2020-05-28 20:56:32'),(343,'The highest ruling body under the Murtala Obasanjo regime differed remarkably from that of the Gowon','administration because of the','inclusion of civilians as members','exclusion of military governors from the council','inclusion of the Chief justice as member','','','b','','wassce','1999',53,'Admin','2016-11-13 17:15:30','2020-06-07 21:11:23'),(344,'Decree No.34 of May 1966 is also known as the','State Security Decree','Suspension and Modification Decree','Public Order Decree','Unification Decree','','','d','','wassce','1999',54,'Admin','2016-11-13 17:15:30','2020-07-06 18:04:33'),(345,'In 1979, the Unity Party of Nigeria contested and won gubernatorial elections in','Lagos, Ogun, imo, Oyo and Bendel','Lagos, Kwara,Oyo,Ogun, and Benue','Lagos, Ogun,Oyo,Ondo and Bendel','Lagos, Kwara,Ogun,Oyo,Ondo','','','c','','wassce','1999',48,'Admin','2016-11-13 17:15:31','2020-06-15 03:05:56'),(346,'Rate are usually collected in Nigeria by','ministries of commerce in the states','local government councils','the department of Inland Revenue','the traditional rulers','','','b','','wassce','1999',63,'Admin','2016-11-13 17:15:31','2020-07-05 06:14:01'),(347,'One of the main reasons for the creation of more local governments in Nigeria is to','make them more responsive to people’s needs','weaken the powers of traditional authorities','make them more receptive to traditional rule','establish them as the third tier in the federal structure','','','a','','wassce','1999',58,'Admin','2016-11-13 17:15:31','2020-06-11 00:27:36'),(348,'Based on its objectives, the Organization of African Unity can primarily be classified as','a social organization','a political organization','a cultural organization','an economic organization','','','b','','wassce','1999',57,'Admin','2016-11-13 17:15:31','2020-06-26 22:08:23'),(349,'Nigeria’s role in ECOMOG is essentially informed by her','desire for peace and stability','chairmanship of ECOWAS.','desire to establish democracy','member ship of ECOWAS.','','','a','','wassce','1999',49,'Admin','2016-11-13 17:15:31','2020-07-04 01:09:40'),(350,'The annual budget of the OAU is approved by the','Council of Ministers','Secretary General','Assembly of Heads of State and Government','General Assembly','','','c','','wassce','1999',59,'Admin','2016-11-13 17:15:31','2020-06-29 05:40:22'),(351,'The major strategy used by OPEC to influence oil price is by','allocating production quotas to members','influencing buyers at the international market to buyer at high prices','allowing member countries to produce at their discretion','increasing the supply of the commodity','','','a','','wassce','1999',40,'Admin','2016-11-13 17:15:31','2020-07-05 18:25:09'),(352,'Nigeria’s was suspended from the Commonwealth because of her','tacit approval of military dictatorship','negative position towards other nations','complete negligence of freedom of the press','violation of fundamental human rights','','','d','','wassce','1999',62,'Admin','2016-11-13 17:15:31','2020-07-04 01:09:40'),(353,'Nigeria’s non-aligned policy means that she will','have nothing to do with the super-powers','not take sides in international issues based on ideological considerations','avoid having any dealing with any country with Ideological','relate only with member countries of the Non-Aligned Movement','','','b','','wassce','1999',60,'Admin','2016-11-13 17:15:31','2020-07-06 10:19:49'),(354,'One of the underlying principles of Nigerian foreign policy is','encouragement of peace-keeping operations in Africa','interference in the internal activities of other countries','non-commitment towards Africa unity','respect for sovereign equality of all states.','','','d','','wassce','1999',61,'Admin','2016-11-13 17:15:31','2020-06-07 16:15:41'),(355,'Before a new member is admitted to the United Nations Organization, its application must be approved by all','permanent members of the Security Council','members of the General Assembly','members of the Economic and Social Council','members of the International Court of Justice','','','a','','wassce','1999',53,'Admin','2016-11-13 17:15:31','2020-07-05 11:24:59'),(356,'Which of the following international organizations was in existence before the outbreak of the Second World War?','The OAU','The League of Nations','The UNO','The ECOWAS','','','b','','wassce','1999',54,'Admin','2016-11-13 17:15:31','2020-07-06 10:39:02'),(357,'The organ of the United Nations Organization responsible for the former colonies of defeated World War II power is the','General Assembly','Security Council','Economic and Social Council','Trusteeship Council','','','d','','wassce','1999',55,'Admin','2016-11-13 17:15:31','2020-07-07 08:16:55'),(358,'The Land Use Decree of 1978 vested the ownership of land in Nigeria in the','State Governments','Federal Government','Local Governments','Local Chiefs','','','a','','utme','2016',56,'Admin','2016-11-13 17:26:43','2020-07-07 08:16:55'),(359,'During the civil war, the major power that expressed moral support for Biafra’s self-determination was','Great Britain','the United States','China','France','','','d','','utme','2016',65,'Admin','2016-11-13 17:26:44','2020-06-29 06:43:13'),(360,'How many states were created in Nigeria in 1967?','4','12','19','21','','','b','','utme','2016',59,'Admin','2016-11-13 17:26:45','2020-05-28 20:56:18'),(361,'Decree 34 of 1966 was unacceptable to many Nigeria because it was','seen as an instrument of impoverishment','perceived to abolish the federal system','promulgated without consultation with the people','considered as alien','','','b','','utme','2016',51,'Admin','2016-11-13 17:26:45','2020-06-28 10:15:16'),(362,'The Mid-Western Region was created in Nigeria in','1961','1962','1963','1964','','','c','','utme','2016',60,'Admin','2016-11-13 17:26:45','2020-06-10 19:55:35'),(363,'A major contentious issues confronting Nigerian Federalism is','poverty','education','health care delivery','revenue allocation','','','d','','utme','2016',42,'Admin','2016-11-13 17:26:45','2020-06-26 22:08:23'),(364,'A constitution of any country is basically','a mere piece of paper','a guide to how the country should be governed','a document stating what the leaders should do','a document stating how to power','','','b','','utme','2016',54,'Admin','2016-11-13 17:26:45','2020-05-28 20:55:40'),(365,'The term, Rule of Law means','nobody is above the law','everybody is equal before the law','we are being governed by lawyers','A and B above','','','d','','utme','2016',61,'Admin','2016-11-13 17:26:45','2020-05-28 20:57:06'),(366,'A good example of a country which operates a cabinet system of government is','France','United Kingdom','United States','Soviet Union','','','b','','utme','2016',50,'Admin','2016-11-13 17:26:45','2020-06-04 23:41:17'),(367,'Indirect Rule was first introduced into Nigeria by','Dame Margery Perham','Sir Donald Cameron','Sir Frederick Lugard','Sir Arthur Richards','','','c','','utme','2016',55,'Admin','2016-11-13 17:26:45','2020-06-18 22:38:07'),(368,'France introduced the policy of assimilation in her colonies primarily to','teach them the art of leadership','give them a sound education','change their way of life','discourage them from ritual killings','','','c','','utme','2016',42,'Admin','2016-11-13 17:26:45','2020-05-28 20:55:36'),(369,'The first Governor-General of Nigeria was','Lord Lugard','Dr. Nnamdi Azikwe','Sir James Robertson','Major-General Aguiyi Ironsi','','','a','','utme','2016',47,'Admin','2016-11-13 17:26:45','2020-06-01 17:39:17'),(370,'A disadvantage of the one-party system is that it','emphasizes political differences','makes accountability difficult','negates freedom of association','delays decision - making','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:45','2020-07-05 20:02:33'),(371,'A typical form of delegated legislation is','an act','a bill','a decree','a bye-law','','','d','','utme','2016',65,'Admin','2016-11-13 17:26:45','2020-07-04 01:08:03'),(372,'In federalism system of Government currency, Armed forces and National defense is the primary function o','f\\nLocal government Chairman','Armed Forces Ruling Council','Security and Exchange Commission','Exclusive list','','','d','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-07-04 01:09:40'),(373,'An electoral process in which candidates are selected for elective offices by party members is','Primary election','Electoral College','Bye election','General election','','','a','','utme','2016',80,'Admin','2016-11-13 17:26:45','2020-05-28 20:57:45'),(374,'The system of indirect rule failed in the former Eastern Nigeria primarily because','of the fragmented political structures','the chief refused to cooperate with colonial officer','the high incidence of taxation chief refused to cooperate with colonial officers','the colonial officers imposed warrant chiefs on the people','','','d','','utme','2016',67,'Admin','2016-11-13 17:26:45','2020-06-07 15:49:24'),(375,'Citizenship refers to the','legal status of a member of a state','indigenous member of a state','highest position in a state','social status of a person in a state','','','b','','utme','2016',80,'Admin','2016-11-13 17:26:45','2020-07-05 07:43:12'),(376,'Before Nigeria became a republic, the highest body charged with the administration of justice was the','Supreme Court','Court of Appeal','Privy court','High Court','','','c','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-06-10 19:55:35'),(377,'Nigeria’s withdrawal from the Edinburgh Commonwealth Games in July 1986 was in protest against British','supply of arms of Rhodesia','failure to improve sanctions on South Africa','negative utterances on Nigeria','support for UNITA rebels in Angola','','','b','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-06-29 06:43:13'),(378,'Which of these is not the supreme organ of the OAU?','the council of Ministers','The Administrative Secretary General','the Assembly of Heads of States and Government','Appointment of staff','','','d','','utme','2016',60,'Admin','2016-11-13 17:26:45','2020-06-03 23:45:22'),(379,'Which of the following electoral bodies in Nigeria conducted elections from 1979 to 1983?','Federal Electoral Commission','National Electoral Commission','National Electoral Commission of Nigeria','Independent National Electoral commission','','','b','','utme','2016',65,'Admin','2016-11-13 17:26:45','2020-07-04 01:08:03'),(380,'The Queen can do no wrong means','the Queen is above the law','the Queen acts on the advice of their ministers on matter of public policy','The Queen is the effective centre of power in the United Kingdom','The Queen has the loyalty of a vast number of the British population','','','a','','utme','2016',55,'Admin','2016-11-13 17:26:45','2020-05-28 20:55:37'),(381,'The main attributes of a state are','government, the police and the armed forces','population, territory, government and sovereignty','federal state and local governments','the press, the legislature, the executive and the judiciary','','','b','','utme','2016',73,'Admin','2016-11-13 17:26:45','2020-07-06 12:33:08'),(382,'Islam was introduced in Northern Nigeria','before the 13th century','in the 17th century','after the jihad of Uthman Dan Fodio','by the British in the early 20th century','','','c','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-06-01 14:52:45'),(383,'The Aro age-grade system in igboland was','a religious organization','a political organization','a commercial organization','an imperial organization','','','b','','utme','2016',51,'Admin','2016-11-13 17:26:46','2020-07-05 06:14:01'),(384,'ECOWAS comprises','16 independent states','The whole Africa','All West African states','English speaking countries only','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:46','2020-06-19 22:15:44'),(385,'Prior to the formation of the OAU in 1963, Nigeria Identified with the','Brazzaville Group','Casablanca group','Libreville Group','Monrovia Group','','','a','','utme','2016',58,'Admin','2016-11-13 17:26:46','2020-06-08 06:58:20'),(386,'How many countries are founding members of O. P. E. C?','13','5','18','25','','','b','','utme','2016',57,'Admin','2016-11-13 17:26:46','2020-06-01 14:52:27'),(387,'The foremost British trading company on the West African coast was','Royal Niger Company','United African Company','Lever Brothers','John Holt and Sons','','','c','','utme','2016',57,'Admin','2016-11-13 17:26:46','2020-05-28 20:56:49'),(388,'The Zikist Movement was popular for its','philosophy of non-violence','promotion of mass literacy','militant nationalism','encouragement of multi-party system','','','c','','utme','2016',62,'Admin','2016-11-13 17:26:46','2020-07-04 01:09:40'),(389,'Which of the following sets of factors contributed to the development of nationalism in Nigeria?','Racial discrimination and oppression','Corruption and ethnicity','Paternalism and indirect rule','Election malpractices and party differences','','','a','','utme','2016',59,'Admin','2016-11-13 17:26:46','2020-07-05 07:27:41'),(390,'Which constitution was created to legislate for the Lagos Colony and the Southern Provinces?','The Richard Constitution','The Clifford Constitution','The Lyttletion Constitution','the MacPherson Constitution','','','b','','utme','2016',57,'Admin','2016-11-13 17:26:46','2020-05-28 20:54:53'),(391,'Judges in Nigeria enjoy security of tenure','if they are appointed by the president','if they have the support of the Nigerian Bar Association','if they are of good behaviour','during the life of the government which appoints them','','','c','','utme','2016',64,'Admin','2016-11-13 17:26:46','2020-06-29 05:40:22'),(392,'Before the 1963 Constitution, the highest court of appeal for Nigeria was the','Supreme Court','Federal Court of Appeal','Privy Council','Federal High Court','','','c','','utme','2016',60,'Admin','2016-11-13 17:26:46','2020-05-28 20:57:39'),(393,'Which of the following is NOT a function of the Police Force in Nigeria?','Traffic control','Arrest of criminals','making of law','Prosecution of criminals','','','c','','utme','2016',62,'Admin','2016-11-13 17:26:46','2020-07-04 01:08:03'),(394,'In Nigeria, the highest court for Muslims is the','Alkali Court','Sharia Court of Appeal','Supreme Court','Upper Area Court','','','b','','utme','2016',63,'Admin','2016-11-13 17:26:46','2020-07-05 06:14:01'),(395,'Who was appointed by the federal government of Nigeria as the administrator of western region in 1962?','Dr. M. A. Majekodunmi','Chief Odeleye Fadahunsi','Chief S. L. Akintola','Chief Remi Fani Kayode','','','c','','utme','2016',54,'Admin','2016-11-13 17:26:46','2020-07-05 18:25:09'),(396,'The head of state in the first republic of Nigeria was','an executive president','a nominal president','a party leader','a nominee of the whole country','','','b','','utme','2016',65,'Admin','2016-11-13 17:26:46','2020-05-28 20:57:39'),(397,'Which of the following parties formed the opposition in the House of Representatives during Nigerian first republic?','NCNC and NEPU','AG and UMBC','NPC and NNDP','NCNC and MDF','','','b','','utme','2016',65,'Admin','2016-11-13 17:26:46','2020-07-05 13:42:57'),(398,'A prominent feature of a presidential system of government is','dual executive','vote of no confidence','the rule of law','separation of powers','','','d','','utme','2016',65,'Admin','2016-11-13 17:26:46','2020-06-15 03:05:56'),(399,'The executive checks the excesses of the legislature through','assent to bills','the use of veto power','the ratification of treaties','issuance of orders','','','b','','utme','2016',56,'Admin','2016-11-13 17:26:46','2020-06-03 11:07:56'),(400,'The consciousness of a common identity of a people is called','nationalism','integration','indoctrination','emancipation','','','b','','utme','2016',61,'Admin','2016-11-13 17:26:46','2020-06-29 05:40:22'),(401,'Citizenship of a state by descent requires that','one is born and bred in the state','one’s mother was born in the state','one’s grandparents were citizens of that state','one is domiciled in that state','','','a','','utme','2016',62,'Admin','2016-11-13 17:26:46','2020-06-13 21:10:54'),(402,'In order to dispense justice impartially, the judiciary primarily needs','discipline','logistics','motivation','independence','','','d','','utme','2016',61,'Admin','2016-11-13 17:26:46','2020-06-04 16:16:05'),(403,'A state with a hegemonic political party is one in which','there is one dominant party','there is no opposition party','there is only one party','other parties are officially recognized','','','a','','utme','2016',66,'Admin','2016-11-13 17:26:46','2020-05-28 20:56:56'),(404,'Nigeria commitment to the liberation of Africa could best be seen in her policy towards','Namibia and Mozambique','the Congo and Zimbabwe','Sierra Leone and Chad','South Africa and Angola','','','d','','utme','2016',50,'Admin','2016-11-13 17:26:46','2020-06-28 19:54:32'),(405,'The set of policies on the basis of which countries interact with one another is called','constructive engagement policy','socio-economic policy','national policy','foreign policy','','','d','','utme','2016',88,'Admin','2016-11-13 17:26:46','2020-06-30 06:53:23'),(406,'Nigeria’s membership of the UN complements her foreign policy in the area of','bilateral diplomacy','regional diplomacy','sub-regional diplomacy','multi-lateral diplomacy','','','d','','utme','2016',71,'Admin','2016-11-13 17:26:47','2020-06-04 09:11:56'),(407,'Nigeria teamed up with other developing countries to assert a neutral posture under the platform of','Nationalist Movement','Pan - African Movement','Non - aligned Movement','Negritude Movement','','','c','','utme','2016',65,'Admin','2016-11-13 17:26:47','2020-06-01 22:48:11'),(408,'Nation-state is synonymous with','liberation','sovereignty','nationalism','self-actualization','','','b','','utme','2010',71,'Admin','2016-11-13 18:33:18','2020-07-06 21:08:04'),(409,'A fundamental component of political culture is','community structure','family values','economic values','social values','','','d','','utme','2010',84,'Admin','2016-11-13 18:33:18','2020-07-06 21:08:04'),(410,'A form of oligarchy in which gifted people are at the helm of affairs is','plutocracy','theocracy','gerontocracy','aristocracy','','','d','','utme','2010',71,'Admin','2016-11-13 18:33:18','2020-07-06 21:08:04'),(411,'A state that is ruled by an elected citizen is','a republic','a plutocracy','an empire','a monarchy.','','','a','','utme','2010',75,'Admin','2016-11-13 18:33:18','2020-07-06 21:08:04'),(412,'A true democracy in the modern sense exists where the','majority of the people vote','majority of the people rule','elite rules','elected representatives rule.','','','d','','utme','2010',73,'Admin','2016-11-13 18:33:18','2020-07-06 21:08:04'),(413,'In a parliamentary system, when the legislature passes a vote of no confidence on the executive, it means that the','executive is required to resign','legislature ceases to trust the executive','legislature commences legal proceeding against the executive','executive is expected to go on suspension','','','a','','utme','2010',77,'Admin','2016-11-13 18:33:18','2020-07-07 06:03:18'),(414,'The legislative body of the United States of America is the','Congress','National Assembly','Council','Parliament','','','a','','utme','2010',61,'Admin','2016-11-13 18:33:18','2020-07-06 21:08:04'),(415,'Unicameralism is a feature of the legislature in','the United Kingdom','the United States','Ghana','Israel','','','a','','utme','2010',65,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(416,'The upper house in most federal systems is created to','oversee and check the lower house','prevent excesses of the executive','enable experienced elders make inputs to governance','ensure equality of federating units','','','d','','utme','2010',73,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(417,'In which of the following systems is the power of the component units more than that of the central government?','Unitary.','Federal.','Confederal','Monarchical.','','','c','','utme','2010',69,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(418,'One of the general tenets of fascist doctrine is that the leader is','subordinate to the law of the state','weak relative to the constitution','subordinate to the norms of the society','supreme relative to the constitution','','','d','','utme','2010',73,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(419,'In a cabinet system of government, executive power is exercised by the','president','monarch','dominant party','head of government','','','d','','utme','2010',69,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(420,'The principle of separation of powers is best practiced in the','monarchical system','parliamentary system.','feudal system','presidential system','','','d','','utme','2010',66,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(421,'A typical form of delegated legislation is','a decree','a bill','a bye-law','an act','','','c','','utme','2010',69,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(422,'16.\tThe rights of a citizen can be withdrawn by the state if the person','is convicted of a serious crime','leaves the country permanently','is pronounced dead','opposes the government violently.','','','a','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(423,'An electoral process in which candidates are selected for elective offices by party members is','bye election','electoral college','general election','primary election.','','','d','','utme','2010',73,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(424,'In theory, one major advantage of the one-party systems is that it','promotes greater mass participation in government','serves as an instrument of national integration','guarantees social justice','eliminates intra-party conflict.','','','b','','utme','2010',69,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(425,'A tactic employed by pressure groups to achieve their objectives is','propaganda','electioneering campaign','lobbying','memorandum.','','','c','','utme','2010',69,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(426,'Public opinion can be measured through','strike action','referendum','rumour','negotiation.','','','b','','utme','2010',63,'Admin','2016-11-13 18:33:19','2020-07-06 08:36:21'),(427,'Which of the following is the main function of the civil service?','Supporting the party in power.','Allocating resources to the federating units.','Mobilizing grassroots support for government.','Implementing government policies.','','','d','','utme','2010',63,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(428,'Who was the political head of the Old Oyo Empire?','Aremo.','Oyomesi.','Alaafin.','Bashorun.','','','c','','utme','2010',68,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(429,'The Igbo political system was based on','family ties','Umunna','Umuada','age grades','','','d','','utme','2010',79,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(430,'The Aro age-grade system in lgboland was','a commercial organization','a political organization','an imperial organization','a religious organization.','','','d','','utme','2010',67,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(431,'France introduced the policy of assimilation in her colonies primarily to','change their way of life','give them a sound education','discourage them from ritual killings','teach them the art of leadership','','','a','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-06-28 03:25:43'),(432,'The foremost British trading company on the West African coast was','Lever Brothers','United African Company','John Holt and. Sons','Royal Niger Company','','','b','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(433,'Which of these rulers resisted colonial rule and was deported to Calabar?','Oba Ovoramwen.','King Dosunmu','King Jaja.','King Kosoko','','','b','','utme','2010',61,'Admin','2016-11-13 18:33:19','2020-07-07 08:16:55'),(434,'Nigerian nationalism was described as two-phased by','James S. Coleman','Edward Wilmot Blyden','David Ricardo','John Payne Jackson.','','','a','','utme','2010',67,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(435,'One major weakness of the Independence constitution is that it','gave full powers to the Supreme Court in Nigeria','gave total independence to Nigeria','empowered Britain to continue to rule','failed to provide the country with full sovereignty.','','','d','','utme','2010',69,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(436,'The first law-making body in Nigeria after amalgamation was','Legislative Council','National Assembly','Regional Assembly','Nigerian Council.','','','a','','utme','2010',72,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(437,'The designation of ministers as chief executives and accounting officers was recommended by a commission headed by','Simeon Adebo','S.J.Cookey','Dotun Philips.','Jerome Udoji.','','','d','','utme','2010',69,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(438,'A major shortcoming of the Ombudsman is','its inability to restrain bureaucratic excesses','lack of clear-cut mandate','lack of executive power to enforce decisions','lack of adequate resources.','','','c','','utme','2010',67,'Admin','2016-11-13 18:33:19','2020-06-28 06:34:31'),(439,'One of the strong points of the multi-party system in Nigeria’s Fourth Republic is','government interference','wider political participation','wider anti-democracy campaign','the provision for a bicameral legislature.','','','b','','utme','2010',75,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(440,'In which of the following is the ceremonial and executive powers fused?','Federal system of government','Parliamentary system of government','Unitary system of government','Presidential system of government','','','d','','utme','2010',62,'Admin','2016-11-13 18:33:19','2020-07-06 21:08:04'),(441,'A major contentious issue confronting Nigerian federalism is','health care delivery','education','revenue allocation','poverty','','','c','','utme','2010',74,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(442,'The main purpose of establishing public enterprises in Nigeria is to','enrich the elite','provide essential services','compete with the private sector','increase government revenue','','','b','','utme','2010',77,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(443,'Parastatals are established to','expand business transactions','maximize government profits','render social services','enhance entrepreneurial skills','','','c','','utme','2010',67,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(444,'The General Purpose Committee of the local government is the','body responsible for supervising self-help projects','local government public relations unit','body for awarding contracts','cabinet of the local government.','','','d','','utme','2010',68,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(445,'The highest organ of the state during the Babangida Regime was the','Armed Forces Ruling Council','Supreme Military Council','Federal Executive Council .','Provisional Ruling Council.','','','d','','utme','2010',74,'Admin','2016-11-13 18:33:20','2020-06-28 03:25:43'),(446,'Decree 34 of 1966 was unacceptable to many Nigerians because it was','promulgated without consultation with the people','perceived to abolish the federal system','considered as alien','seen as an instrument of impoverishment','','','a','','utme','2010',77,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(447,'Nigeria broke diplomatic relations with France in 1961 because of:','her poor relations with the francophone countries','General de-Gaulle’s negative attitude towards her','France’s diplomatic relations with Israel','France’s atomic test in the Sahara Desert','','','d','','utme','2010',76,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(448,'An attribute that Nigeria shares with most non-aligned countries is','her large population','her heterogeneous population','her large size','the state of  her economy.','','','d','','utme','2010',71,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(449,'Nigeria spearheaded the formation of ECOWAS during the regime of','Murtala Muhammed','Yakubu Gowon','Ibrahim Babangida','Olusegun Obasanjo.','','','b','','utme','2010',87,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(450,'Nigeria was classified as a front line state for','spearheading the formation of African Union','supporting the liberation efforts in Southern Africa','helping to end the crisis in Liberia','participating in peacekeeping in the Congo','','','b','','utme','2010',64,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(451,'The prominent role Nigeria played in the UN in the 70’s earned her.','permanent representation at the UN','membership of the Security Council','chairmanship of the General Assembly','non-permanent membership position.','','','b','','utme','2010',82,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(452,'The head of Nigeria’s foreign mission in a Commonwealth nation is known as','ambassador','charge d’affaires.','attaché','high Commissioner','','','d','','utme','2010',63,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(453,'One major function of the Authority of Heads of State and Government of ECOWAS is','appointing staff of the Secretariat','appointing the Executive Secretary','preparing the budget of the Community','organizing international conferences','','','b','','utme','2010',60,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(454,'The tenure of non-permanent members of the Security Council is','4 years','2 years','6 years','5 years','','','b','','utme','2010',83,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(455,'The Secretary-General of the United Nations is appointed by the','Permanent members of the Security Council on the   recommendation of the General Assembly','General Assembly on the recommendation of the Security Council','General Assembly in plenary session','Security Council acting alone.','','','b','','utme','2010',64,'Admin','2016-11-13 18:33:20','2020-06-28 06:34:31'),(456,'The approval of treaties and agreements of the Economic Community of West African States is the responsibility of the','Council of Ministers','ECOWAS Tribunal','Assembly of Heads of State and Government','Secretariat.','','','c','','utme','2010',80,'Admin','2016-11-13 18:33:20','2020-07-06 21:08:04'),(457,'The distinctive attribute of a state is the monopoly of','control','power','violence','justice.','','','b','','utme','2012',60,'Admin','2016-11-13 18:42:18','2020-07-04 01:08:03'),(458,'State as a political entity refers to','an organized group within a definite territory','an association of men in a given society','a branch of a nation','a geographical location.','','','a','','utme','2012',65,'Admin','2016-11-13 18:42:19','2020-07-05 07:28:25'),(459,'Political values are acquired in any given society through','political re-orientation','political campaign','political socialization','political indoctrination.','','','c','','utme','2012',86,'Admin','2016-11-13 18:42:19','2020-07-05 07:28:25'),(460,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate.','','','d','','utme','2012',70,'Admin','2016-11-13 18:42:19','2020-06-29 05:05:38'),(461,'One judicial function performed by the executive is','granting of amnesty','implementing judicial orders','ensuring obedience to the law','appointing judges.','','','a','','utme','2012',65,'Admin','2016-11-13 18:42:19','2020-06-29 06:19:10'),(462,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary.','','','c','','utme','2012',61,'Admin','2016-11-13 18:42:19','2020-05-28 20:56:47'),(463,'A political system which empowers the leader with the ultimate responsibility to execute laws is','parliamentarianism','presidentialism','dictatorship','autocracy.','','','b','','utme','2012',65,'Admin','2016-11-13 18:42:19','2020-06-03 08:11:39'),(464,'A bill is a draft which is awaiting the consideration of the','executive','party caucus','legislature','judiciary.','','','c','','utme','2012',68,'Admin','2016-11-13 18:42:19','2020-07-07 06:03:18'),(465,'The private ownership of the means of production is a feature of','capitalism','socialism','communalism','communism.','','','a','','utme','2012',56,'Admin','2016-11-13 18:42:19','2020-06-02 14:57:28'),(466,'In a feudal system, the two major classes are the serfs and the','masses','vassals','lords','elite.','','','c','','utme','2012',64,'Admin','2016-11-13 18:42:19','2020-05-28 20:54:22'),(467,'An example of a country with a flexible constitution is','South Africa','Britain','Benin Republic','the United States of America.','','','d','','utme','2012',61,'Admin','2016-11-13 18:42:19','2020-06-03 08:11:39'),(468,'The rule of law is a negation of','equality before the law','supremacy of the law','limited power','absolute power.','','','d','','utme','2012',62,'Admin','2016-11-13 18:42:19','2020-06-03 11:04:32'),(469,'To ensure the rights and freedom of citizens, the powers of the arms of government must be','fused','incorporated','separated','rotated.','','','c','','utme','2012',61,'Admin','2016-11-13 18:42:19','2020-06-03 01:20:16'),(470,'Delegated legislation is made by bodies other than the','president','governor','parliament','judiciary','','','c','','utme','2012',66,'Admin','2016-11-13 18:42:19','2020-05-28 20:55:29'),(471,'The bringing of a session of a parliament to an end through royal proclamation is known as','political impasse','dissolution of parliament','vote of no confidence','prorogation of parliament.','','','b','','utme','2012',57,'Admin','2016-11-13 18:42:19','2020-07-04 01:09:40'),(472,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social light.','','','c','','utme','2012',65,'Admin','2016-11-13 18:42:19','2020-06-01 22:41:27'),(473,'The commission charged with the conduct of federal elections in Nigeria is','NEC','FEDECO','INEC','NECON.','','','c','','utme','2012',71,'Admin','2016-11-13 18:42:19','2020-06-11 19:38:47'),(474,'An electoral system in which parties are assigned seats in the parliament commensurate to the number of votes polled is','absolute majority','simple majority','proportional representation.','indirect election.','','','c','','utme','2012',64,'Admin','2016-11-13 18:42:19','2020-06-17 21:32:41'),(475,'An intra-party activity for the selection of candidates for elective positions is known as','primary election','general election','mid-term election','bye-election.','','','a','','utme','2012',70,'Admin','2016-11-13 18:42:19','2020-06-30 15:24:32'),(476,'The primary aim of pressure groups is to','attract people’s attention','protects the interest of members','capture political power','fight corrupt officials.','','','b','','utme','2012',67,'Admin','2016-11-13 18:42:19','2020-07-04 01:08:03'),(477,'Which of the following is used in gauging public opinion?','Constitution','.\t\t\\nEducational institution.','Mass media.','Electoral college.','','','c','','utme','2012',62,'Admin','2016-11-13 18:42:19','2020-06-07 16:01:59'),(478,'A permanent structure that facilitates continuity and guarantees orderly conduct in governance is','bureaucracy','public corporation','ombudsman','political party.','','','a','','utme','2012',72,'Admin','2016-11-13 18:42:19','2020-06-07 16:20:36'),(479,'In the Hausa pre-colonial political system, a district was headed by','a hakimi','a dagaci','an alkali','a waziri.','','','d','','utme','2012',59,'Admin','2016-11-13 18:42:19','2020-06-01 16:38:38'),(480,'Which of the following ensured the practice of democracy in the pre-colonial Yoruba political system?','Checks and balances.','Fusion of power.','Individual responsibility.','The rule of law.','','','a','','utme','2012',63,'Admin','2016-11-13 18:42:19','2020-07-04 01:08:03'),(481,'Colonization of Africa was mainly motivated by','security considerations','economic reasons','religious reasons','cultural factors.','','','b','','utme','2012',71,'Admin','2016-11-13 18:42:19','2020-06-17 21:05:20'),(482,'The French colonial system was underlined by the policy of','assimilation','paternalism','socialism','indirect rule.','','','a','','utme','2012',70,'Admin','2016-11-13 18:42:19','2020-06-03 15:39:55'),(483,'Radical nationalism in Nigeria is generally attributed to the influence of','Aminu Kano','Herbert Macaulay','Nnamdi Azikiwe','Mbonu Ojike.','','','b','','utme','2012',66,'Admin','2016-11-13 18:42:19','2020-05-30 18:38:29'),(484,'Two foreigners that directly aroused nationalist feelings among Nigerians are','Edward Blyden and Payne Jackson','Casely Hayford and James Horton','W.E.du Bois and H. O. Davies','Marcus Garvey and Casely Hayford.','','','d','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-06-03 23:09:08'),(485,'Members of the Senate in Nigeria’s First Republic were','elected directly by the people','elected by electoral college','nominated by regional and federal governments','nominated by the president of the house.','','','b','','utme','2012',54,'Admin','2016-11-13 18:42:19','2020-06-07 15:49:24'),(486,'In Nigeria, the agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil Defense Corps','Police.','','','d','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-05-28 20:57:05'),(487,'The National Assembly in Nigeria is primarily responsible for','executing laws','interpreting laws','ratifying appointments','making laws.','','','d','','utme','2012',64,'Admin','2016-11-13 18:42:20','2020-07-06 10:39:02'),(488,'The major factor militating against the efficient operation of electoral commissions in Nigeria is','inadequate public support','population size','inadequate skilled manpower','excessive political interference.','','','d','','utme','2012',64,'Admin','2016-11-13 18:42:20','2020-07-07 05:56:59'),(489,'A major objective of the Public Complaints Commission is','training and promotion of public servants','settlement of disputes among individuals','addressing the grievances of individuals and groups','fighting corruption and indiscipline.','','','d','','utme','2012',61,'Admin','2016-11-13 18:42:20','2020-06-04 23:41:17'),(490,'The three registered political parties at the inception of Nigeria’s Fourth Republic were','PDP, DPP and PPA','PDP, AD and APP','PDP,  AD and PPA','PDP, APP and AC.','','','b','','utme','2012',63,'Admin','2016-11-13 18:42:20','2020-06-03 08:11:39'),(491,'The Sharia legal system was first introduced in the Fourth Republic in','Kano State','Katsina State','Zamfara State','Sokoto State.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-06-29 05:40:22'),(492,'Quota system and federal character principles were entrenched in the 1979 Constitution to ensure','loyalty','economic empowerment','equity','even development.','','','d','','utme','2012',69,'Admin','2016-11-13 18:42:20','2020-06-29 05:05:38'),(493,'Workers in the public corporations are known as','civil servants','private employees','public servants','professional employees.','','','c','','utme','2012',63,'Admin','2016-11-13 18:42:20','2020-07-04 01:08:03'),(494,'The central objective of privatization in Nigeria is to','reduce the retrenchment of workers','encourage prompt payment of salaries','improve standard of living','improve the efficiency of enterprises.','','','d','','utme','2012',61,'Admin','2016-11-13 18:42:20','2020-07-06 18:04:33'),(495,'Military intervention in Nigeria arose from','perceived incapability of civilians to govern','international pressure for change','the desire for a military government','civilians’ desire to relinquish power.','','','a','','utme','2012',64,'Admin','2016-11-13 18:42:20','2020-06-02 23:25:45'),(496,'The first institution introduced by the military to exercise legislative power was the','Supreme Military Council','Armed Forces Ruling Council','Federal Executive Council','Provisional Ruling Council.','','','a','','utme','2012',59,'Admin','2016-11-13 18:42:20','2020-05-28 20:56:07'),(497,'The main focus of Nigeria’s foreign policy since independence centres on','south-south cooperation','sub-regionalism','globalism','Afrocentric.','','','d','','utme','2012',66,'Admin','2016-11-13 18:42:20','2020-07-06 09:13:41'),(498,'The country that championed decolonization in Africa was','Nigeria','South Africa','Ghana','Kenya.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-07-04 01:08:03'),(499,'A major drawback to the NEPAD initiative is its','articulation by few African leaders','affiliation to the African union','inability to empower the youth','reliance on Western donors for funds.','','','d','','utme','2012',50,'Admin','2016-11-13 18:42:20','2020-06-03 11:31:39'),(500,'The structure of the African Union includes','The Court of Justice, Pan African Congress and People’s Assembly','Pan African Parliament, the Court of Justice and the Peace and Security Council','Specialized Technical Commission, the Court of Justice and Humanitarian Board','People’s Assembly, Humanitarian Board and the Peace and Security Council.','','','b','','utme','2012',61,'Admin','2016-11-13 18:42:20','2020-07-05 20:02:33'),(501,'ECOMOG at the initial stage of its intervention in Liberia was perceived as','neutral','incompetent','partisan','invaders.','','','d','','utme','2012',75,'Admin','2016-11-13 18:42:20','2020-06-04 02:27:47'),(502,'The African leader mostly credited for spearheading the formation of the African Union is','Muammar Ghaddafi','Abdelaziz Bouteflika','Abdoulaye Wade','Thabo Mbeki.','','','a','','utme','2012',53,'Admin','2016-11-13 18:42:20','2020-07-05 06:14:01'),(503,'One of the programmes binding members of the Commonwealth is the','food and aid programme','cultural programmes','agenda for peace','scholarship scheme.','','','d','','utme','2012',67,'Admin','2016-11-13 18:42:20','2020-07-05 18:25:09'),(504,'As part of the reforms in the UN, two slots were proposed in the Security Council for','Asia','Africa','America','Europe.','','','b','','utme','2012',59,'Admin','2016-11-13 18:42:20','2020-06-29 05:40:22'),(505,'The founding members of OPEC are','Algeria, Iran, Iraq, Saudi Arabia and Kuwait','Nigeria, Libya, Iran, Iraq and, Saudi Arabia','Venezuela, Nigeria, Libya, Iran and Iraq','Saudi Arabia, Iran, Iraq, Kuwait and Venezuela.','','','d','','utme','2012',69,'Admin','2016-11-13 18:42:20','2020-06-26 22:08:23'),(506,'Power that is delegated is exercised','indirectly','by devolution','directly','by coercion.','','','a','','utme','2013',51,'Admin','2016-11-13 20:36:42','2020-06-28 13:53:16'),(507,'De jure sovereignty is acquired through','force','law','grant','treaty.','','','b','','utme','2013',59,'Admin','2016-11-13 20:36:42','2020-06-29 06:43:13'),(508,'A group of people who live together under a common law within a definite territory is a','state','community','nation-state','nation.','','','a','','utme','2013',56,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(509,'Political socialization is associated with','free choice of party programmes','military take over of civilian government','the transmission of political values','political transition.','','','c','','utme','2013',57,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(510,'According to Aristotle, a form of government in which the few rule for the benefit of all is','polyarchy','diarchy','aristocracy','autocracy.','','','c','','utme','2013',71,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(511,'Rule by the old people is known as','theocracy','monarchy','gerontocracy','feudalism.','','','c','','utme','2013',64,'Admin','2016-11-13 20:36:43','2020-07-04 01:08:03'),(512,'As an executive, the commissioner is charged with the responsibility of','making laws','implementing laws','writing laws','giving loans.','','','b','','utme','2013',76,'Admin','2016-11-13 20:36:43','2020-07-05 18:09:29'),(513,'Rule adjudication is a primary function of the','legislature','judiciary','executive','government.','','','b','','utme','2013',60,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(514,'The judiciary controls the executive in federal states through','motions','delegated legislation','judicial overview','judicial review.','','','d','','utme','2013',68,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(515,'One major advantage of the unitary system is that it tends to make government','strong and stable','free of controversy','distant from the people','popular among the masses.','','','a','','utme','2013',70,'Admin','2016-11-13 20:36:43','2020-07-02 22:58:39'),(516,'The presidential system differs from the parliamentary system of government in that','the tenure of office of the president is limited','the principle of collective responsibility applies','executive and legislative powers are fused','powers of the three arms of government are merged.','','','a','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(517,'Which of the following advocates’ equitable distribution of wealth?','Plutocracy.','Capitalism.','Aristocracy.','Socialism.','','','d','','utme','2013',58,'Admin','2016-11-13 20:36:43','2020-07-05 06:14:01'),(518,'A constitution that is difficult to amend is','flexible','rigid','written','unwritten.','','','c','','utme','2013',66,'Admin','2016-11-13 20:36:43','2020-06-03 23:09:08'),(519,'Which of the following constitutions is more suitable for centralization of political power?','Flexible constitution.','Unwritten constitution.','Rigid constitution','Written constitution.','','','d','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-07-04 01:09:40'),(520,'The act of transferring autonomous powers to subordinate agencies is','devolution','concentration','deconcentration','delegation.','','','a','','utme','2013',73,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(521,'Which of the following types of citizenship cannot be withdrawn?','Citizenship by naturalization.','Citizenship by conquest.','Citizenship by birth.','Honorary citizenship.','','','c','','utme','2013',51,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(522,'The right of citizens to vote is','adult suffrage','universal suffrage','nationality suffrage','electoral suffrage.','','','b','','utme','2013',63,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(523,'A political party is different from a pressure group in its','source of finance','objective','organization','strategy.','','','b','','utme','2013',58,'Admin','2016-11-13 20:36:43','2020-07-05 07:27:41'),(524,'One of the functions of pressure groups is to','contest elections to serve the people','nominate the president','prepare the budget','articulate the opinion of their members.','','','d','','utme','2013',78,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(525,'Public opinion refers to the','aggregate of attitudes held by members of the national assembly','aggregate views of groups on particular government activities','views held by the president of a country','views of the Chief Justice of a country.','','','b','','utme','2013',65,'Admin','2016-11-13 20:36:43','2020-06-29 00:24:38'),(526,'The class that oversees the implementation of government decisions and policies is the','Administrative','Executive','Clerical','Technical.','','','b','','utme','2013',71,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(527,'The performance of ritual rites in the Yoruba empire is the responsibility of the','Oyo mesi','Aare-ona kakanfo','Oba','Ogboni.','','','d','','utme','2013',57,'Admin','2016-11-13 20:36:43','2020-06-28 13:53:16'),(528,'Under the emirate system, the commander of the army is the','Alkali','Hakimi','Sarkin Fada','Madawaki.','','','d','','utme','2013',58,'Admin','2016-11-13 20:36:43','2020-07-04 01:09:40'),(529,'The indirect rule system of administration was more successful in Northern Nigeria because','the people were mainly interested in being governed indirectly','of the existence of an organized structure in the area','the Europeans ensured that the farmlands of the natives were not confiscated','the natives showed little or no resistance.','','','b','','utme','2013',63,'Admin','2016-11-13 20:36:43','2020-07-05 07:28:25'),(530,'The earliest nationalist activities in Nigeria were spearheaded by','educated elites','trade unions','traditional rulers','political parties.','','','a','','utme','2013',56,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(531,'The first notable nationalist movement in West Africa was the','National Congress of British West Africa','West African Students Union','Nigeria Youth Movement','Aborigines Rights Protection Society.','','','a','','utme','2013',56,'Admin','2016-11-13 20:36:44','2020-06-04 07:43:17'),(532,'In Nigeria’s First Republic, the Prime Minister was both the','Head of government and a lawmaker','Head of State and Commander-in-Chief of the armed forces','Commander-in-Chief of the armed forces and Party leader','Head of State and Party leader.','','','a','','utme','2013',75,'Admin','2016-11-13 20:36:44','2020-07-04 01:09:40'),(533,'Under the 1979 Constitution, statutory allocation of revenue to local government councils is the responsibility of the','Council of State','Houses of Assembly','National Economic Council','Federal Legislature.','','','d','','utme','2013',72,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(534,'Under Nigeria’s Second Republic, the Senate was under the leadership of','John Wash Pam','J. S. Tarka','Joseph Wayas','Godwin Ume-Ezeoke.','','','c','','utme','2013',73,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(535,'The Revenue Mobilization, Allocation and Fiscal Commission is statutorily empowered to determine the remuneration of','all civil servants','only elected representatives','political office holders','employees of public corporations.','','','a','','utme','2013',58,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(536,'The primary function of the Code of Conduct Bureau is to','ensure due process by public officers','ensure minimum standard of morality','retain custody of declarations','receive declaration of assets.','','','d','','utme','2013',70,'Admin','2016-11-13 20:36:44','2020-06-15 07:59:32'),(537,'The party system practiced in Nigeria’s Third Republic was','multi-party','two-party','zero-party','one-party.','','','b','','utme','2013',63,'Admin','2016-11-13 20:36:44','2020-06-29 05:40:22'),(538,'Nigeria adopted a federal system of government because of','the fear of domination of minorities','uneven development','the availability of limited resource','the adoption of a state religion.','','','a','','utme','2013',66,'Admin','2016-11-13 20:36:44','2020-07-05 11:24:59'),(539,'The highest policy making body under the Gowon Regime was the','Federal Executive Council','Armed Forces Ruling Council','Provisional Ruling Council','Supreme Military Council.','','','d','','utme','2013',72,'Admin','2016-11-13 20:36:44','2020-07-07 08:16:55'),(540,'Nigeria became a federation of thirty-six states during the era of','Yakubu Gowon','Ibrahim Babangida','Sani Abacha','Abdulsalami Abubakar.','','','d','','utme','2013',63,'Admin','2016-11-13 20:36:44','2020-06-29 05:08:52'),(541,'Which of the following headed the committee that recommended the suitability of Abuja as a new federal city?','Justice Akinola Aguda.','Justice Buba Ardo.','Justice Atanda Fatai Williams.','Justice Udo Udoma.','','','a','','utme','2013',70,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(542,'A public corporation is managed by','the board of directors','a minister','a general manager','the board of governors.','','','a','','utme','2013',66,'Admin','2016-11-13 20:36:44','2020-06-29 00:24:38'),(543,'A major source of revenue in the post -1976 local government in Nigeria is','the joint state-local government account','internally generated revenue','the federation account','grants and loans.','','','c','','utme','2013',65,'Admin','2016-11-13 20:36:44','2020-07-04 01:08:03'),(544,'The Provisional Ruling Council was the highest ruling body during the regime of','Sani Abacha','Muhammadu Buhari','Ibrahim Babangida','Murtala Muhammed.','','','c','','utme','2013',62,'Admin','2016-11-13 20:36:44','2020-06-29 06:43:13'),(545,'Nigeria’s non-alignment policy in the sixties lacked real substance because of her','close ties with Britain','Afrocentric policy','poor economic potential','partnership with Asian countries.','','','a','','utme','2013',71,'Admin','2016-11-13 20:36:44','2020-06-29 06:43:13'),(546,'Under the Technical Aid Corps, Nigerian experts are deployed to','Asia, Africa and the Pacific','Africa, the Pacific and the Caribbean','Europe, South America and Asia','the Pacific, the Caribbean and Europe.','','','b','','utme','2013',61,'Admin','2016-11-13 20:36:44','2020-06-29 06:19:10'),(547,'The centre-piece of Nigeria’s foreign policy covers only','Asia','Europe','Africa','Latin America.','','','c','','utme','2013',56,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(548,'Which of the following countries pioneered the establishment of ECOWAS alongside Nigeria?','Cameroun.','Ghana.','Togo.','Algeria.','','','c','','utme','2013',61,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(549,'Nigeria’s role in the African Union was most prominent during the regime of','President Ibrahim Babangida','President Olusegun Obasanjo','President Shehu Shagari','President Umaru Yar’adua.','','','b','','utme','2013',51,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(550,'A representative of a Commonwealth country in another member state is known as','High Commissioner','Consul-General','Ambassador','Attaché.','','','a','','utme','2013',66,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(551,'The organ of UN that promotes voluntary co­operation among member states in diverse areas is the','Security Council','International Court of Justice','General Assembly','Economic and Social Council.','','','d','','utme','2013',64,'Admin','2016-11-13 20:36:44','2020-05-28 20:57:26'),(552,'The main representative body of the United Nations is the','Secretariat','Security Council','General Assembly','Trusteeship Council.','','','b','','utme','2013',68,'Admin','2016-11-13 20:36:44','2020-06-28 13:53:16'),(553,'The AU differs from the OAU in having','no assembly of Heads of State','effective tools for decision enforcement.','no permanent headquarters','a minimum of divergent viewpoints','','','b','','utme','2013',69,'Admin','2016-11-13 20:36:44','2020-06-28 20:14:50'),(554,'OPEC has strong influence with the','IMF','EU','ADB','AU.','','','d','','utme','2013',71,'Admin','2016-11-13 20:36:44','2020-07-05 13:04:57'),(555,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','police, army, sovereignty custom.','','','c','','utme','2014',60,'Admin','2016-11-13 20:49:36','2020-06-15 03:13:34'),(556,'The process of taking part in political and public affairs can be termed political','recognition','culture','participation','socialization','','','d','','utme','2014',70,'Admin','2016-11-13 20:49:40','2020-05-28 20:57:42'),(557,'Membership of a society is','conventional','mandatory','voluntary','constitutional','','','c','','utme','2014',86,'Admin','2016-11-13 20:49:40','2020-07-04 01:08:03'),(558,'In a democratic political system, the political sovereign is usually the','constitution','political parties','electorate','legislature','','','c','','utme','2014',51,'Admin','2016-11-13 20:49:40','2020-06-08 22:11:22'),(559,'One basic feature of a monarchical form of government is that','separation of powers is absolute','members of the executive are elected','succession is through heredity','the ruler has a fixed tenure','','','c','','utme','2014',57,'Admin','2016-11-13 20:49:40','2020-05-28 20:53:51'),(560,'One main advantage of bicameral legislature is that it','makes for quick deliberation during emergencies','makes passage of bills easy','is less cumbersome to pass bills','is not easy to manipulate bills','','','d','','utme','2014',56,'Admin','2016-11-13 20:49:40','2020-05-28 20:57:21'),(561,'The court that has ultimate power to interprets the constitution is the','Supreme Court','Magistrate Court','High Court','Court of Appeal','','','a','','utme','2014',68,'Admin','2016-11-13 20:49:40','2020-06-26 22:08:23'),(562,'Unitary system of government is more suitable to a country','that is sparsely populated','that possesses a strong and modern army','with a robust and dynamic economy','with a relatively small area and a homogenous population','','','d','','utme','2014',67,'Admin','2016-11-13 20:49:40','2020-07-05 06:14:01'),(563,'An example of a country ruled by a constitutional monarch is','Uganda','Morocco','Italy','Libya','','','c','','utme','2014',63,'Admin','2016-11-13 20:49:40','2020-05-28 20:56:42'),(564,'The development of a classless society is the goal of','conservatism','feudalism','liberalism','maxims','','','d','','utme','2014',61,'Admin','2016-11-13 20:49:40','2020-06-08 06:39:30'),(565,'A flexible constitution is one which is','easily amended','popular with the legislators','known to all the citizens','written by the parliament','','','a','','utme','2014',57,'Admin','2016-11-13 20:49:40','2020-06-02 14:29:53'),(566,'Which of the following is a feature of checks and balances?','judicial precedent','Judicial immunity','Judicial review','Code of conduct','','','c','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-06-29 05:40:22'),(567,'Laws made by military governments at the state level are called','decrees','bye-laws','edicts','acts','','','a','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-06-29 06:43:13'),(568,'Citizenship is acquired by an alien through','registration','birth','conferment','naturalization','','','d','','utme','2014',58,'Admin','2016-11-13 20:49:40','2020-07-04 01:09:40'),(569,'The officer responsible for announcing the result of an election is known as','ballot officer','presiding office','returning officer','electoral officer','','','c','','utme','2014',67,'Admin','2016-11-13 20:49:40','2020-07-05 13:04:57'),(570,'The ultimate aim of political parties is to','implement people-oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','utme','2014',68,'Admin','2016-11-13 20:49:40','2020-07-07 05:56:59'),(571,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their members','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','utme','2014',59,'Admin','2016-11-13 20:49:40','2020-06-29 05:40:22'),(572,'Which of the following is not a dimension of public opinion?','Polling','Orientation','intensity','Substance','','','a','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-06-01 22:41:28'),(573,'The body that is responsible for the appointment, discipline, promotion and dismissal of civil servants is the','Ministry of Establishment','Bureau for Public Service Reforms','Civil Service Commission','Ministry of Labour and Productivity','','','c','','utme','2014',60,'Admin','2016-11-13 20:49:40','2020-05-28 20:57:43'),(574,'In the pre-colonial Hausa political system, the Madawaki performed the function of','Minister of Education','Minister of Defense','Minister of Interior','Minister of works','','','b','','utme','2014',53,'Admin','2016-11-13 20:49:40','2020-06-13 21:10:54'),(575,'In the Old Oyo Empire, the Ajele','ensured good governance of the districts','mobilized the army','was the Head of the army','ensured the safety of all trade routes','','','a','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-06-13 21:10:54'),(576,'The General Strike of 1945 was caused primarily by the','harshness in trade laws as it concerns the Africans','government’s rejection of a demand for an increase of 50 percent in the cost of living allowance','persistent implementation of discriminatory laws','disparity in the criteria for employment','','','a','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-06-13 21:10:54'),(577,'Before 1945, the component units of Nigeria were','districts','provinces','states','regions','','','b','','utme','2014',52,'Admin','2016-11-13 20:49:41','2020-07-04 01:09:40'),(578,'Nationalists agitation began in Nigeria with the','Lagos protest against water rate in 1908','introduction of indirect rule','annexation of Lagos in 1861','formation of West Africa Youth League','','','b','','utme','2014',47,'Admin','2016-11-13 20:49:41','2020-05-28 20:57:06'),(579,'The emergence of nationalism was essentially the result of the ills of','independence','slavery','colonialism','imperialism','','','c','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-06-29 05:40:22'),(580,'Which of the following nationalists was the founder of Nigeria’s first political party?','Abubakar Tafawa Balewa','Ahmadu Bello','Nnamdi Azikiwe','Herbert Macaulay','','','d','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-05-28 20:56:39'),(581,'The division of powers between the federal and regional governments into exclusive, concurrent and residual lists was done by the','1999 Constitution','Independence Constitution','Republican Constitution','1979 Constitution','','','b','','utme','2014',55,'Admin','2016-11-13 20:49:41','2020-05-28 20:56:47'),(582,'The Nigerian Independence Constitution was modified by the','1963 Constitution','1999 Constitution','1989 Constitution','1979 Constitution','','','a','','utme','2014',65,'Admin','2016-11-13 20:49:41','2020-07-04 01:09:40'),(583,'The President of Nigeria was indirectly elected through secret ballot for a period of five years by the senate in','1983','1960','1963','1979','','','c','','utme','2014',46,'Admin','2016-11-13 20:49:41','2020-07-06 12:33:08'),(584,'The main function of the Federal Character Commission in Nigeria is','ensuring fair representation of all states in the public service','reviewing unfair administrative decisions','settling disputes among societies','providing free social services to the citizens','','','a','','utme','2014',50,'Admin','2016-11-13 20:49:41','2020-05-28 20:57:44'),(585,'The power of appointing the chairman of the Independent National Electoral Commission is vested in the','Judicial Council','Council of State','President','Senate','','','c','','utme','2014',61,'Admin','2016-11-13 20:49:41','2020-06-28 19:50:01'),(586,'The NCNC and the NPC facilitated the creation of the','Mid-West Region','Northern Region','Western Region','Eastern Region','','','a','','utme','2014',59,'Admin','2016-11-13 20:49:41','2020-07-04 01:09:40'),(587,'One of the major problems of Nigerian federalism is','lack of revenue to cater for the demands of the federation','inadequate manpower to fill vacancies','imbalance in the structure and sizes of units of federation','pre-colonial administrative structure among the units of federation','','','c','','utme','2014',55,'Admin','2016-11-13 20:49:41','2020-07-07 06:03:18'),(588,'Which of the following was done during the Gowon administration to reduce regional structural imbalance in the federation?','Appointment of ministers','Creation of states','Increase in revenue allocation','Formation of political parties','','','b','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-06-01 15:56:28'),(589,'A problem of public corporations in Nigeria is','choice of leadership','public control','emphasis on subsidies','wastage of resources','','','d','','utme','2014',65,'Admin','2016-11-13 20:49:41','2020-06-01 21:20:10'),(590,'One feature of public corporations that was weakened by privatization is','social control','national integration','social harmony','government control','','','d','','utme','2014',62,'Admin','2016-11-13 20:49:41','2020-06-15 03:05:56'),(591,'One of the main duties of the Local Government Service Commission is to','supervise and manage the personnel of local governments','conduct election into Local Council','create an enabling working environment for council workers','handle requests for the creation of more local governments','','','a','','utme','2014',68,'Admin','2016-11-13 20:49:41','2020-06-28 19:50:01'),(592,'The option A4 model was used in the conduct of the','2007 elections','1983 elections','1993 elections','1999 elections','','','c','','utme','2014',61,'Admin','2016-11-13 20:49:41','2020-06-29 05:40:22'),(593,'The review of Nigeria foreign policy under the Murtala/Obasanjo regime was done by','Udoji Committee','Aboyade Committee','Adedeji Commission','Philips Commission','','','c','','utme','2014',51,'Admin','2016-11-13 20:49:41','2020-06-01 19:18:32'),(594,'Which of the following is a guiding principle of Nigeria’s foreign policy?','Total opposition to the Cold War','Posting of only carrier diplomats as envoys','Interference in the affairs of African countries','Decolonization of all African states','','','d','','utme','2014',69,'Admin','2016-11-13 20:49:41','2020-06-01 18:18:05'),(595,'The Technical Aids Corps was established during the regime of','Olusegun Obasanjo','Sani Abacha','Ibrahim Babangida','Muhanmmadu Buhari','','','a','','utme','2014',56,'Admin','2016-11-13 20:49:41','2020-06-29 05:40:22'),(596,'The granting of asylum to Charles Taylor by Nigeria was to','protect Nigerians in Liberia','promote peace in Liberia','defy the western powers','Control Liberia','','','b','','utme','2014',60,'Admin','2016-11-13 20:49:41','2020-06-08 06:39:30'),(597,'Nigeria is regarded as a frontline state because she','sent policemen for peacekeeping in Namibia','assisted the liberation struggle in Southern Africa','assisted ECOMOG troops in Liberia','sent troops for peacekeeping Somalia.','','','b','','utme','2014',54,'Admin','2016-11-13 20:49:41','2020-07-05 13:36:55'),(598,'The reason behind Nigeria’s suspension from the Commonwealth in 1995 was','legal','political','economic','socio-cultural','','','b','','utme','2014',60,'Admin','2016-11-13 20:49:41','2020-07-06 08:36:21'),(599,'Commonwealth nations are represented in other member nations by','charge d’ affaires','ambassadors','high commissioners','attaches','','','c','','utme','2014',63,'Admin','2016-11-13 20:49:41','2020-06-02 15:56:37'),(600,'The UN succeeded the','Warsaw Pact','NATO','SEATO','League of Nations','','','d','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-07-07 08:16:55'),(601,'The number of permanent members of the UN Security Council is','eight','five','six','seven','','','b','','utme','2014',56,'Admin','2016-11-13 20:49:41','2020-07-04 01:08:03'),(602,'The Secretary General of the OAU holds office for a renewable period of','six years','three years','four years','five years','','','c','','utme','2014',65,'Admin','2016-11-13 20:49:41','2020-07-04 01:09:40'),(603,'Former colonies of Britain belong to the association known as','OECD','NATO','European Union','Commonwealth','','','d','','utme','2014',52,'Admin','2016-11-13 20:49:41','2020-06-08 06:58:20'),(604,'Government refers to all the following, except','an institution of the state','the process of ruling a political community','the exercise of power and authority','the act of civil disobedience.','','','d','','wassce','1988',48,'Admin','2016-11-13 21:14:25','2020-07-05 07:48:54'),(605,'Government as the act of governing means the','activities of pressure groups and political parties','act of vetoing a bill','orders of judiciary and legislature','activities by which governmental policies are made and implemented','','','d','','wassce','1988',62,'Admin','2016-11-13 21:14:26','2020-06-11 01:05:51'),(606,'Unwritten constitution means that the constitution is','not written down','based only on conventions.','not contained in any single book','in draft','','','c','','wassce','1988',49,'Admin','2016-11-13 21:14:26','2020-06-08 22:20:25'),(607,'The delegation of Administrative Powers to the local units with the central supervision and control is called.','devolution','decentralization','deconcentration','centralization','','','a','','wassce','1988',81,'Admin','2016-11-13 21:14:26','2020-06-04 05:15:45'),(608,'Which of the following is not the function of the government?','Building of roads, bridges, canals, etc.','Provision of education.','Maintenance of relations with other states.','Provision of all the material needs of all citizens.','','','d','','wassce','1988',64,'Admin','2016-11-13 21:14:26','2020-06-29 05:40:22'),(609,'A flexible constitution can only be amended by','two-third (2/3) majority vote in the legislature.','referendum.','three-quarter (3/4) majority vote in the legislature.','simple majority vote in the legislature.','','','d','','wassce','1988',30,'Admin','2016-11-13 21:14:26','2020-05-28 20:54:27'),(610,'Which one of the following countries has an unwritten constitution?','Great Britain','France','United States of America','Federal Republic of Germany','','','a','','wassce','1988',64,'Admin','2016-11-13 21:14:26','2020-06-09 11:20:18'),(611,'A rigid constitution is said to be best suited for a','Federal Government','Socialist','Military Government','Unitary Government','','','a','','wassce','1988',52,'Admin','2016-11-13 21:14:26','2020-06-28 20:24:18'),(612,'Federal Election were held in Nigeria in','1946, 1951, 1954, 1979 and 1983','1954, 1959, 1964, 1979 and 1983.','1923, 1946, 1951, 1979 and 1983','1954, 1960, 1964, 1979 and 1983','','','b','','wassce','1988',55,'Admin','2016-11-13 21:14:26','2020-06-07 16:13:37'),(613,'The two components of sovereignty are','the rule of law and fundamental human rights.','political power and political authority','political culture and political socialization.','political independence and supreme authority of the state within its territory.','','','d','','wassce','1988',40,'Admin','2016-11-13 21:14:26','2020-06-26 22:08:23'),(614,'Nigeria broke diplomatic relations with Israel in 1973 because of Israeli.','recognition of Biafra.','occupation of Egyptian territory','refusal to give aid to Nigeria.','economic relations with South Africa.','','','b','','wassce','1988',57,'Admin','2016-11-13 21:14:26','2020-06-04 07:18:21'),(615,'The United Nations Organization [UNO] has its headquarters in','Britain','USSR','USA','China','','','c','','wassce','1988',53,'Admin','2016-11-13 21:14:26','2020-07-04 01:09:40'),(616,'The state is different from the government because','The state unlike the government is permanent','.\\nThe government is made up of powerful people.','Members of the government are elected.','The state is created by God.','','','a','','wassce','1988',43,'Admin','2016-11-13 21:14:26','2020-05-28 20:57:01'),(617,'A state is a special form of human association because it','has a legitimate monopoly of life and death penalties over its citizens','is the richest association in society.','has a constitution approved by the citizens','can punish law breakers','','','a','','wassce','1988',47,'Admin','2016-11-13 21:14:26','2020-05-28 20:57:14'),(618,'Which of the following is not relevant to communism','Democracy','Violent revolution','Friedrich Engels','Private Enterprise.','','','d','','wassce','1988',41,'Admin','2016-11-13 21:14:26','2020-06-11 01:05:51'),(619,'A Nigeria citizen can only be deprived of his citizenship if he is','condemned to death.','convicted by a Court of law','married to a foreigner','holding a dual citizenship.','','','d','','wassce','1988',50,'Admin','2016-11-13 21:14:26','2020-06-01 19:18:32'),(620,'In the process of governing. OUTPUT refers to','the influence of pressure group','demand of the political system','the decision of the government.','the opinion of the electorate','','','d','','wassce','1988',41,'Admin','2016-11-13 21:14:26','2020-05-04 18:56:46'),(621,'Another word for red-tapism is','democracy','autocracy','idiosyncrasy.','bureaucracy','','','d','','wassce','1988',46,'Admin','2016-11-13 21:14:27','2020-06-15 03:13:34'),(622,'Rule adjudication is the main function of the','Executive','President','legislature','judiciary','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-06-17 21:32:41'),(623,'The major problem that arose from the 1979 election centred around the','inability of many voters to find their names on the voters register','cancellation of election results in many constituencies because of alleged irregularities','inability of some dissatisfied candidates to seek redress in the Court of law.','controversy over the presidential election result.','','','d','','wassce','1988',60,'Admin','2016-11-13 21:14:27','2020-07-05 07:27:41'),(624,'The following are the key factors which influence Nigeria’s foreign relations except','peaceful co-existence','economic dependence.','non-interference','respect for territorial integrity.','','','b','','wassce','1988',43,'Admin','2016-11-13 21:14:27','2020-06-28 13:05:03'),(625,'The independent of Nigeria was in 1945 with the coming to power in Britain of','Conservative party','Tory party','Liberal party','Labour party','','','d','','wassce','1988',56,'Admin','2016-11-13 21:14:27','2020-05-28 20:56:13'),(626,'Which of the following is not an accepted way of resolving international conflict','Diplomacy.','Non-military use of force.','Propaganda','Nuclear war.','','','d','','wassce','1988',56,'Admin','2016-11-13 21:14:27','2020-07-05 07:28:25'),(627,'The membership of the Council of States in Nigeria is made up of','Federal Ministers','State commissioners','State governors','the State Governors and the Head of State.','','','d','','wassce','1988',42,'Admin','2016-11-13 21:14:27','2020-06-29 05:40:22'),(628,'The common wealth is','an economic organization','made up of all independent ex-colonies of Britain','made up of all countries who are friendly with Britain.','made up of independent European countries.','','','b','','wassce','1988',56,'Admin','2016-11-13 21:14:27','2020-06-03 23:07:15'),(629,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known as the','Bales','Obas','Ogboni','Oyomesi.','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:27','2020-06-26 22:08:23'),(630,'The declaration of a state of emergency in Western Nigeria was protected by the constitution of','1954','1951','1960','1963','','','d','','wassce','1988',52,'Admin','2016-11-13 21:14:27','2020-05-28 20:57:29'),(631,'The primary purpose of the state is to','establish a system of law and order','train people to become good citizens','cater for all the needs of the citizens','ensure the self sufficiency of its people','','','a','','wassce','1988',44,'Admin','2016-11-13 21:14:27','2020-05-28 20:57:13'),(632,'The Armed Forces Ruling Council came into existence under the','Buhari Administration','Gowon  Administration','Ironsi Administration','Babangida Administration','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-06-15 03:05:56'),(633,'Which of the following is not a specialized agency of the United Nations Organization?','World Health Organization','The Food and Agriculture Organization','The international Labour Organization','General Assembly','','','d','','wassce','1988',72,'Admin','2016-11-13 21:14:27','2020-06-29 05:08:52'),(634,'The creation of the office of the Prime Minister in Nigeria was accomplished in','1951','1954','1957','1959','','','c','','wassce','1988',44,'Admin','2016-11-13 21:14:27','2020-06-02 03:30:59'),(635,'Which of the following is not a function of a party secretariat?','Electing the leader of the party','Organizing party conferences','Publishing the party’s manifesto','Planning party strategy to win election','','','a','','wassce','1988',50,'Admin','2016-11-13 21:14:27','2020-07-05 20:02:33'),(636,'The first Military President of Nigeria is','Lt. General Olusegun Obasanjo','Major General J.T.U. Aguiyi-Ironsi','Major General Ibrahim Babangida','General Murtala Muhammed','','','c','','wassce','1988',49,'Admin','2016-11-13 21:14:27','2020-07-06 12:33:08'),(637,'The following factors favoured the introduction of indirect rule in Nigeria except the','Shortage of manpower','Shortage of funds','Existence of a system of taxation','Existence of educated elites','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:27','2020-06-04 11:53:53'),(638,'The psychological support a regime gets from its citizens. If they believe the regime is right and ought to be obeyed is known as','Sovereignty','power','authority','legitimacy','','','d','','wassce','1988',38,'Admin','2016-11-13 21:14:27','2020-06-07 23:48:24'),(639,'The voluntary activities of members of a society in the selection of rulers is known as','political participation','political socialization','political decision','political culture','','','a','','wassce','1988',52,'Admin','2016-11-13 21:14:27','2020-05-28 20:57:40'),(640,'Residual powers under the Nigerian independence constitution were the powers exercised by','the Federal Government','the Regional Governments','the Local Government','both the Federal and Regional Governments','','','b','','wassce','1988',54,'Admin','2016-11-13 21:14:27','2020-06-29 00:24:38'),(641,'The highest court of appeal under the Republican constitution of Nigeria was the','Federal High Court','Judicial Committee of the Privy Council','Regional court of Appeal','Supreme Court','','','d','','wassce','1988',42,'Admin','2016-11-13 21:14:27','2020-05-28 20:56:18'),(642,'Nigeria became a federation of 19 states in','1875','1976','1967','1978','','','b','','wassce','1988',47,'Admin','2016-11-13 21:14:27','2020-05-28 20:56:07'),(643,'A popular form of proportional representation is','communal representation','single transferable vote','the alternative vote','the second ballot','','','a','','wassce','1988',53,'Admin','2016-11-13 21:14:27','2020-07-06 12:33:08'),(644,'A political concept that is composed of the attitudes, beliefs, emotions and values of a society is called political','culture','single transferable vote','authority','socialization','','','a','','wassce','1988',58,'Admin','2016-11-13 21:14:28','2020-06-15 03:05:56'),(645,'flexible constitution is advantageous because it','guarantees political stability','prevents the passing of hasty bills by the legislature','can cope with emergency periods','allows for continuity','','','c','','wassce','1988',51,'Admin','2016-11-13 21:14:28','2020-05-28 20:54:10'),(646,'The Economic community of West Africa state (E.C.O.W.A.S) is','an economic association','a political association','a cultural association','a social association','','','a','','wassce','1988',49,'Admin','2016-11-13 21:14:28','2020-07-04 01:09:40'),(647,'Which of the following is not an aim of the Organization of African Unity (O.A.U)','Promotion of unity and solidarity among African states','Co-operation of efforts to achieve a better life for the African people','Defense of the sovereignty and independence of African state','Enthronement of democratic governments in Africa.','','','d','','wassce','1988',47,'Admin','2016-11-13 21:14:28','2020-07-05 07:28:25'),(648,'It is the duty of a government to perform all the following functions, except','Preventing internal disorder','Ensuring security of life and property','Providing basic welfare services','Providing all the needs of its citizens','','','d','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-05-28 20:57:31'),(649,'Which of the following concepts is out of place?','Fascism','Welfarism','Totalitarianism','Authoritarianism','','','b','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-05 07:43:12'),(650,'The primary objective of all political parties is to','Promote the general interest of members of the public','Eradicate corruption in public life','Control the government','Campaign for vote','','','c','','wassce','1988',42,'Admin','2016-11-13 21:14:28','2020-07-07 05:56:59'),(651,'The French policy of Assimilation','was a device to transfer technology to Africa','was the same in theory as the British policy of indirect rule','was aimed at converting Africans to Frenchmen','enabled the French to stay in Africa','','','c','','wassce','1988',51,'Admin','2016-11-13 21:14:28','2020-06-03 13:35:42'),(652,'Military Governors were members of the Supreme Military Council under the','Murtala Mohammed Regime','Yakubu Gowon Regime','Ibrahim Babangida Regime','Olusegun Obasanjo Regime','','','b','','wassce','1988',46,'Admin','2016-11-13 21:14:28','2020-06-28 19:54:32'),(653,'The use of forced labour was one of the features of','British colonial policy','French colonial policy','American colonial policy','Divide and rule policy','','','b','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-07-07 08:16:55'),(654,'The controversy over the 1979 Presidential election result was','over the dispute on the conduct of the election','because educated Nigerians did not approve who received the number of votes','due to the interpretation of ¼   of the vote cast in 2/3 of all the states in the Federation.','because the winning candidate did not pay his taxes as and when due in the past three years.','','','c','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-07-04 01:08:03'),(655,'All the following were frontline fighters for Nigeria’s Independence except','Obafemi Awolowo','Nnamdi Azikiwe','Lateef Jakande','Amino Kano','','','c','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-05-28 20:56:14'),(656,'It is argued that most of the new States of Africa cannot remain faithful to the doctrines of non-alignment mainly because of','corruption','ethnic problems','bad leadership','poor economy','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:28','2020-06-03 13:35:42'),(657,'The first political party in Nigeria was','National Council of Nigerian Citizens (N.C.N.C)','Nigerian National Democratic Party (N.N.D.P)','Action group (A. G)','Northern Peoples Congress (N.P.C)','','','b','','wassce','1988',49,'Admin','2016-11-13 21:14:28','2020-06-08 19:25:57'),(658,'To which of these countries did Nigeria send peacekeeping force?','South Africa','Angola','Chad','Namibia','','','c','','wassce','1988',54,'Admin','2016-11-13 21:14:28','2020-06-04 07:18:21'),(659,'In the federation, the purpose of enumerating the powers of the central government is to','ensure efficient administration','ensure greater unity','reduce the financial burden of the units','limit its powers against those of the units','','','d','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-06-01 16:22:10'),(660,'The ultimate aim of a communist system of government is \tthe distribution of goods and services according to','age','qualification','party loyalty','need, want and ability','','','d','','wassce','1988',64,'Admin','2016-11-13 21:14:28','2020-07-05 18:18:47'),(661,'Under what system of government does the state require ownership and control of the means of production for its use in benefiting the population?','Capitalism','Socialism','Feudalism','Welfarism','','','b','','wassce','1988',51,'Admin','2016-11-13 21:14:28','2020-06-08 06:39:30'),(662,'The question of civil war was raised for the first time at the \tmeeting of the O.A.U in September 1967 in','Kampala','Addis Ababa','Lagos','Kinshasa','','','d','','wassce','1988',51,'Admin','2016-11-13 21:14:28','2020-05-28 20:54:51'),(663,'Nigeria objected to the discussion of the civil war in the O.A. U. summit on the grounds that','it amount to interference in its internal affairs','some African countries recognized Biafra','Tanzania and Ivory Coast recognized Biafra','the resolution of the conflict was difficult','','','a','','wassce','1988',45,'Admin','2016-11-13 21:14:28','2020-06-15 07:59:32'),(664,'Government is the machinery established to manage the affairs of','rulers','aliens','the civil service','the state','','','d','','wassce','1989',58,'Admin','2016-11-13 21:30:41','2020-05-28 20:56:36'),(665,'The judicial organ of government is the body which','implements the law','makes the law','punishes lawmakers','interprets the law','','','d','','wassce','1989',52,'Admin','2016-11-13 21:30:42','2020-06-02 19:43:39'),(666,'Which of the following is a false description of the first Nigeria Prime Minister? He','was first among equals','presided over the cabinet','was the Head of Government','exercised the prerogative of mercy','','','d','','wassce','1989',58,'Admin','2016-11-13 21:30:42','2020-07-07 05:56:59'),(667,'The twelve state structure was created in Nigeria in','1965','1966','1967','1974','','','c','','wassce','1989',55,'Admin','2016-11-13 21:30:42','2020-05-28 20:56:09'),(668,'The laws which the state legislators make normally pass through','the commissioner','the process of deliberations','the judiciary','some committees in the civil service','','','b','','wassce','1989',77,'Admin','2016-11-13 21:30:42','2020-07-02 06:42:32'),(669,'In the parliamentary system of government, ministers are','chosen from the House as well as outside','collectively responsible to parliament','representatives of various interests in the country','not members of the legislature','','','b','','wassce','1989',61,'Admin','2016-11-13 21:30:42','2020-06-26 22:08:23'),(670,'Any type of restricted franchise is a violation of principle of','constitutionalism','sovereignty','political equally','popular election','','','c','','wassce','1989',45,'Admin','2016-11-13 21:30:42','2020-05-28 20:56:10'),(671,'Which of the following is not the responsibility of the Electoral Commission in Nigeria?','Swearing in of members of the House of Assembly','Counting and publication of election results','delimitation of constituencies','Compilation of electoral register','','','a','','wassce','1989',56,'Admin','2016-11-13 21:30:42','2020-06-30 15:24:32'),(672,'Which of the following is not civic obligation of a citizen?','Obedience to law','payment of taxes','voting during elections','freedom of conscience and religion','','','d','','wassce','1989',66,'Admin','2016-11-13 21:30:42','2020-07-07 05:56:59'),(673,'The study of Government offers an individual all the following, except a','knowledge of his rights and duties','training in good citizenship','knowledge of the processes of government','training to become a judge','','','d','','wassce','1989',55,'Admin','2016-11-13 21:30:42','2020-06-08 00:19:55'),(674,'Voting started in Nigeria in 1923 because the Clifford Constitution of 1922 granted','decolonization','independence','an elective principle','self-government','','','c','','wassce','1989',60,'Admin','2016-11-13 21:30:42','2020-07-04 01:08:03'),(675,'The organ of the UNO which can impose mandatory sanctions on any of its members is the','International Court of Justice','Economic and Social Council','General Assembly','Security Council','','','d','','wassce','1989',53,'Admin','2016-11-13 21:30:42','2020-05-28 20:54:50'),(676,'A unified - local government system was adopted in Nigeria under the','Tafawa Balewa administration','Yakubu Gowon administration','Shehu Shagari administration','Murtala / Obasanjo administration','','','d','','wassce','1989',53,'Admin','2016-11-13 21:30:42','2020-05-28 20:57:39'),(677,'The two parties which formed the coalition government in 1959 were the','NPC and the NCNC','NCNC and the AG','NPC and the NNA','PRP and the UPGA','','','a','','wassce','1989',52,'Admin','2016-11-13 21:30:42','2020-06-03 20:01:34'),(678,'Which of the following is not written into independence constitution of 1960?','Fundamental human rights','Exclusive powers','Concurrent list','Role of political parties','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-06-08 06:31:49'),(679,'The process of depriving persons of the right of voting is known as','enfranchisement','disqualification','dismissal','disenfranchisement','','','d','','wassce','1989',46,'Admin','2016-11-13 21:30:42','2020-07-05 06:14:01'),(680,'The predominant influence of Northern Nigeria in the First Republic violated the federal principle of','effective co-operation among the constituent units','geographical contiguity','unity','absence of marked inequalities among the component units','','','d','','wassce','1989',52,'Admin','2016-11-13 21:30:42','2020-06-29 05:08:52'),(681,'Bicameralism refers to','a one chamber legislature','the process of voting in the legislature','the upper chamber in a legislature','a two-chamber legislature','','','d','','wassce','1989',58,'Admin','2016-11-13 21:30:43','2020-05-28 20:57:30'),(682,'The head of state under the independence constitution of Nigeria was','an absolute monarch','a constitution monarch','imposed by the British','invested with executive power','','','b','','wassce','1989',52,'Admin','2016-11-13 21:30:43','2020-07-05 07:43:12'),(683,'The principle of separation of powers implies that the three main organs of government work','separately','independently but co-operatively','against one another','reluctantly and gradually for the executive','','','b','','wassce','1989',44,'Admin','2016-11-13 21:30:43','2020-06-08 19:25:57'),(684,'The emergency powers conferred on the Federal Government under the independence constitution was first exercised in the','Western Region','Mid-Western Region','Eastern Region','Northern Region','','','a','','wassce','1989',46,'Admin','2016-11-13 21:30:43','2020-07-06 18:04:33'),(685,'A sovereign state in one','whose constitution can only be changed by a military government','where its citizens can speak without fear or favour','in which sovereignty is invested in the military','whose government decisions are made independent of foreign interference','','','d','','wassce','1989',58,'Admin','2016-11-13 21:30:43','2020-07-06 18:04:33'),(686,'Which of the following is not a component of political culture?','Attitudes','Beliefs','Emotions','Age','','','d','','wassce','1989',55,'Admin','2016-11-13 21:30:43','2020-07-07 08:16:55'),(687,'Representative democracy is characterized by','free election and proper register of voters','unlimited expenditure of political parties','a politically educated electorate','representation of the poor only','','','a','','wassce','1989',51,'Admin','2016-11-13 21:30:43','2020-06-26 22:08:23'),(688,'The ratification of the appointment and dismissal of an Emir in the pre-colonial Fulani Empire was done by the','Empire of Lafiagi and the Etsu of pategi','Emirs of Kano and Katsina','Emirs of Gwandu and Sokoto','Emir of llorin','','','c','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-10 19:55:35'),(689,'The primary function of a legislature is the','appointment of the president','making of laws','voting of bills','monitoring of the judiciary','','','b','','wassce','1989',45,'Admin','2016-11-13 21:30:43','2020-06-03 20:01:34'),(690,'Which of the following title among the Igbos in the pre-colonial era required substantial wealth before one could acquire it','Ofo','Okpara','Ozo','Eze','','','c','','wassce','1989',51,'Admin','2016-11-13 21:30:43','2020-06-29 06:43:13'),(691,'According to Marxist theory, those who own and control the means of production in a capitalist society are','exploiters','colonialists','workers','bourgeoisie','','','d','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-03 12:38:14'),(692,'The head of the Oyomesi in the old Oyo Empire was','Aremo','Are Onakakanfo','Olowo','Bashorun','','','d','','wassce','1989',56,'Admin','2016-11-13 21:30:43','2020-07-05 07:27:41'),(693,'The head of the Nigerian Mission to the Commonwealth of Nations is','an Ambassador','a Consular','the Minister of External Affairs','a High Commissioner','','','d','','wassce','1989',51,'Admin','2016-11-13 21:30:43','2020-05-28 20:55:52'),(694,'While political parties aim at forming a government, pressure groups aim at','imposing a military rule','causing social unrest','influencing government decisions','controlling a nation’s economy','','','c','','wassce','1989',53,'Admin','2016-11-13 21:30:43','2020-07-04 01:09:40'),(695,'Nigeria does not maintain diplomatic relations with South Africa because of the latter’s','industrial policy','apartheid policy','foreign policy','agricultural policy','','','b','','wassce','1989',44,'Admin','2016-11-13 21:30:43','2020-06-04 03:05:30'),(696,'Which of the following countries does not operate a federal constitution?','USA','Canada','Nigeria','France','','','d','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-06-26 22:08:23'),(697,'Socialism developed as a protest against the evils of','monarchy','oligarchy','feudalism','capitalism','','','d','','wassce','1989',51,'Admin','2016-11-13 21:30:43','2020-07-05 22:09:41'),(698,'The major advantage of the secret ballot is that','it is faster than other systems','nobody can be prevented from voting','it ensures the anonymity of each voter','losers can ask for another secret vote','','','c','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-06 09:13:41'),(699,'One of the first action of military governments when they take over power in Nigeria is to','detain all the politicians','appoint new ministers and commissioners','tour the country to explain why they have taken over','suspend the constitution','','','d','','wassce','1989',45,'Admin','2016-11-13 21:30:43','2020-06-08 22:11:22'),(700,'A parliamentary-cabinet system of government is practiced in','Canada','Nigeria','the Soviet Union','all European countries','','','a','','wassce','1989',56,'Admin','2016-11-13 21:30:43','2020-06-15 03:13:34'),(701,'Foreign policy refers to','a policy made by a foreign country','a policy made by a country for foreigners','a policy made by a country when it is at war','the general principles which govern a state’s international behaviour','','','d','','wassce','1989',75,'Admin','2016-11-13 21:30:43','2020-06-07 16:20:36'),(702,'The constitution of the Federal Republic of Nigeria','promotes unity in diversity','allows for the dominance of the minority ethnic groups','concentrates governmental power at one level of government','advances the interest of the rich','','','a','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-06-29 05:40:22'),(703,'Which of the following is not an objective in foreign policy?','Prestige','Large population','Territorial integrity','Survival','','','b','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-29 00:24:38'),(704,'The principle of anonymity of civil servants means that they are','career officers','not the servants of a particular government','trained for the duties they perform','not credited or blamed for anything they do','','','d','','wassce','1989',62,'Admin','2016-11-13 21:30:43','2020-05-28 20:57:21'),(705,'During the 1964 Federal elections there was a total boycott of voting in','the Western Region','Lagos','the Northern Region','the Eastern Region','','','d','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-05-28 20:57:10'),(706,'Which of the following is not a pressure group? The','Nigerian Farmers’ Council','Nigerian Union of Teachers','National Party of Nigeria','Academic Staff Union of Universities','','','c','','wassce','1989',38,'Admin','2016-11-13 21:30:43','2020-06-28 20:24:18'),(707,'Which of the following is not a public corporation? The','Nigerian Ports Authority','National Sports Commission','National Youth Service Corps','Nigerian Railway Corporation','','','c','','wassce','1989',50,'Admin','2016-11-13 21:30:43','2020-07-04 01:08:03'),(708,'Which of the following is not an academic discipline in which a student of Government can specialize','Public Administration','Local Government','Political Territory','Public Education','','','d','','wassce','1989',50,'Admin','2016-11-13 21:30:43','2020-06-02 04:01:57'),(709,'The Republican Constitution of 1963 was indigenous because it was approved by','a referendum','the representatives of the people in parliament','the British parliament','the colonial government','','','b','','wassce','1989',49,'Admin','2016-11-13 21:30:43','2020-06-02 23:25:45'),(710,'Local government reforms were carried out by the Federal Military Government in','1966','1967','1970','1976','','','d','','wassce','1989',46,'Admin','2016-11-13 21:30:44','2020-05-28 20:56:30'),(711,'With which country did Nigeria break diplomatic relations in 1963 for exploding a nuclear device in the Sahara?','The Soviet Union','The U.S.A','China','France','','','d','','wassce','1989',56,'Admin','2016-11-13 21:30:44','2020-05-28 20:57:37'),(712,'The first political party in Nigeria was formed after the introduction of the','Richard constitution','Clifford constitution','Bourdillon constitution','Macpherson constitution','','','b','','wassce','1989',53,'Admin','2016-11-13 21:30:44','2020-07-05 12:55:32'),(713,'Which of the following did not formally recognize Biafra’ as an independent state?','Sierra Leone','Tanzania','Gabon','Zambia','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:44','2020-06-26 22:08:23'),(714,'When there is a conflict between the regional and federal laws under the concurrent legislative list, the','Federal laws would prevail','Federal laws would be declared null and void','regional laws would prevail','Head of State would settle the conflict','','','a','','wassce','1989',50,'Admin','2016-11-13 21:30:44','2020-07-05 18:25:09'),(715,'Nigeria hosted the meeting of Commonwealth Heads of State in','1965','1966','1967','1968','','','b','','wassce','1989',46,'Admin','2016-11-13 21:30:44','2020-07-06 18:04:33'),(716,'A fascist regime is both','representative and accountable','responsive and responsible','fair and legitimate','authoritarian and totalitarian','','','d','','wassce','1989',49,'Admin','2016-11-13 21:30:44','2020-05-28 20:56:49'),(717,'Which of the following is not a function of the Secretary-General of the United Nations Organization?','Supervising the Secretariat','Interpreting the treaties','Alerting the Security Council on any matter that may threaten international peace','Making annual report','','','b','','wassce','1989',47,'Admin','2016-11-13 21:30:44','2020-07-05 07:28:25'),(718,'Capitalism often encourages','Private ownership of the means of production','Deconcentration of political and economic powers in the same hands','A centrally planned economy','Public ownership of all forms enterprises','','','a','','wassce','1989',54,'Admin','2016-11-13 21:30:44','2020-06-28 19:50:01'),(719,'Which of the following African countries has diplomatic relations with South Africa?','Malawi','Zambia','Gabon','Tanzania','','','a','','wassce','1989',57,'Admin','2016-11-13 21:30:44','2020-07-07 06:03:18'),(720,'Citizens who are legally qualified to vote form','Political parties','A Trade Union Congress','Members of the House of House Assembly','The electorate','','','d','','wassce','1989',51,'Admin','2016-11-13 21:30:44','2020-07-04 01:09:40'),(721,'Election among candidates from the same party before the final elections are called','Primaries','Running Mates','Second ballots','Party conventions','','','a','','wassce','1989',56,'Admin','2016-11-13 21:30:44','2020-06-15 07:59:32'),(722,'Which of the following countries is not a member of the Economic Community of West African States (ECOWAS)?','Nigeria','Cameroun','Ghana','Togo','','','b','','wassce','1989',45,'Admin','2016-11-13 21:30:44','2020-06-03 13:35:42'),(723,'The international organization formed after the Second World War to guarantee international peace and security is the','World Bank','United Nations Organization','League of Nations','British Commonwealth of Nations','','','b','','wassce','1989',59,'Admin','2016-11-13 21:30:44','2020-06-23 13:39:31');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `history` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `history` VALUES (1,'Islam was introduced in Northern Nigeria  ','before the 13th century  ','in the 17th century  ','in the 19th century  ','in the 18th century ','','','a','','posr-utme-aaua','2013',563,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:55'),(2,'Lagos became the crown colony in  ','1914','1861','1886','29-Mar-05','','','c','','posr-utme-aaua','2013',562,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(3,'In the pre-colonial Igbo political system, which of the following was the most democratic organ of government','The Umand ','Eze  ','Isu  ','Ohanaeze','','','d','','posr-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(4,'A historical feature of the legislative council that met in 1923 was that for the first time it  ','included the official members who were Nigerians  ','included only British officials  ','included elected African members ','acted in a deliberative capacity  ','','','d','','posr-utme-aaua','2013',585,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(5,'When was the emirate system of administration introduced in Northern Nigeria? ','19th century ','20th century ','18th century  ','17th century ','','','c','','posr-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-06-29 18:06:41'),(6,'Pre-colonial Igbo society was  ','centralised ','acephalous','feudal  ','capitalist ','','','b','','posr-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(7,'The Colonial Administration in Nigeria was  ','Authoritarian','Democratic  ','A&B  ','None of the above ','','','a','','posr-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(8,'In the traditional Hausa-Fulani political system, political authority was vested in the  ','Emir  ','Talakawa  ','Alkali ','Emirate Council ','','','a','','posr-utme-aaua','2013',576,'Admin','0000-00-00 00:00:00','2020-07-05 06:21:33'),(9,'In the Oyo empire, the Alaafin was ','an absolute monarch  ','popularly elected  ','a constitutional  monarch ','worshipped as deity ','','','a','','posr-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(10,'The concept of Indirect Rule in Nigeria is usually associated with  ','Sir George T.  Goldie  ','Claude Macdonald  ','Lord Lugard  ','Consul Philip ','','','c','','posr-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-07-04 01:48:34'),(11,'The Lagos Colony and the Southern Protectorate of Nigeria were joined in the year ','1904','1906','1910','1914','','','b','','posr-utme-aaua','2013',574,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:57'),(12,'The Committee that recommended Abuja as the New Federal Capital was headed by  ','Graham Douglas  ','Mamman Nasir  ','Rotimi Williams  ','Akinola Aguda ','','','d','','posr-utme-aaua','2013',601,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(13,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known ','Ogbon','Oyo Mesi ','Baale','Ohanaeze','','','b','','posr-utme-aaua','2013',600,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(14,'Galadima in the emirate refers to  ','a village head  ','the office in charge of the army  ','the administrator of the capital city  ','a judge ','','','c','','posr-utme-aaua','2013',612,'Admin','0000-00-00 00:00:00','2020-07-06 04:39:50'),(15,'Which of the following was the last to win Independence from colonial rule?  ','Cote d I oi e','Algeria  ','Tanzania  ','Angola ','','','d','','posr-utme-aaua','2013',588,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(16,'Which of the following made the earliest contact with the Nigerian societies?  ','The Portuguese ','The Germans  ','The British ','The French','','','a','','posr-utme-aaua','2013',600,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(17,'In the pre-colonial Yoruba society, the power of the Oyo Mesi were checked by  ','Baale  ','Ogboni  ','Are Ona Kankafo  ','Bashorun ','','','d','','posr-utme-aaua','2013',568,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(18,'The Ogboni Cult in the pre-colonial Yoruba political system played the role of the  ','judiciary  ','executive  ','police  ','legislation ','','','a','','posr-utme-aaua','2013',594,'Admin','0000-00-00 00:00:00','2020-07-06 18:49:09'),(19,'The Aro system in Igboland was a ','Political organisation  ','Commercial organisation  ','Religious organisation  ','Imperial organisation ','','','c','','posr-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(20,'Which of the following formalised colonial penetration into Africa?  ','Paris Treaty  ','Berlin Conference  ','Lagos Treaty  ','Cape Coast ','','','b','','posr-utme-aaua','2013',592,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(21,'An acephalous pre-colonial system is best represented by the  ','Oyo Empire  ','Igbo political organisation  ','Ijaw political organisation  ','Benin Empire ','','','b','','posr-utme-aaua','2013',598,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:55'),(22,'The use of forced labour was one of the features of  ','British colonial policy  ','French colonial policy  ','American colonial policy  ','divide and rule ','','','b','','posr-utme-aaua','2013',585,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(23,'During the early colonial period in Nigeria, the governor ruled the protectorate by  ','Crown Colony Orders  ','Proclamation  ','Order?in-Council  ','The Act of Parliament ','','','d','','posr-utme-aaua','2013',577,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:55'),(24,'The ratification of the appointment and dismissal of an emir in the pre-colonial Fulani empire was done by','Emir of Kano  ','Emir of Sokoto  ','Emir of Gwandu  ','B & C','','','d','','posr-utme-aaua','2013',587,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:55'),(25,'In the Hausa/Fulani traditional political system jingali was  ','one of the sources of revenue to cattle owners  ','tax paid on cattle  ','a property tax paid to land owners ','a type of flat rate tax ','','','b','','posr-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(26,'Which of the following titles among the Igbos in the pre-colonial era required substantial wealth before one could acquire it?','Obi  ','Eze  ','Ozo  ','Ofo ','','','c','','posr-utme-aaua','2013',606,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(27,'Nigerian educated elites agitated against colonial rule  ','by bribing colonial governors  ','through lobbying  ','through newspapers ','by fighting civil war ','','','c','','posr-utme-aaua','2013',595,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(28,'In the absence of the existence of traditional rulers in the Igbo communities the British Colonial administration appointed','Eze  ','Obi  ','Ozo  ','Warrant chiefs ','','','d','','posr-utme-aaua','2013',587,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(29,'The colonial government whose constitution introduced elective principle into Nigerian politics was  ','Arthur Richards  ','Fredrick Lugard  ','Hugh Clifford  ','John Macpherson ','','','c','','posr-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:55'),(30,'The introduction of indirect rule in eastern Nigeria led to the Aba Women Riots of  ','1914','1929','1935','1916','','','b','','posr-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-07-06 20:27:09'),(31,'A chief could be deposed in the pre-colonial era if he  ','violated the written constitution  ','persistently neglected the advice of the elders  ','refuse to collect taxes for the Britishs  ','married too many wives ','','','b','','posr-utme-aaua','2013',558,'Admin','0000-00-00 00:00:00','2020-07-06 09:57:52'),(32,'Which of the following in the pre-colonial era had integrated political structure  ','Tiv  ','Ilaje ','Jukun  ','Nupe ','','','d','','posr-utme-aaua','2013',553,'Admin','0000-00-00 00:00:00','2020-07-06 03:18:07'),(33,'The Yoruba, Edo, Nupe, and Ibo languages are classified as belonging to the  ','Arabic  ','Kwa-sub group  ','Kaw sub group  ','Kai sub group ','','','b','','posr-utme-aaua','2013',571,'Admin','0000-00-00 00:00:00','2020-07-04 09:43:19'),(34,'Archaeology findings in Ugbo-Ukwu are suggestive of rich  ','Agricultural potentials  ','cultural civilization  ','mineral deposit  ','all of the above ','','','b','','posr-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(35,'Geographically, Nigeria lies between latitudes  ','40 and 140  ','4 and 100   ','140 and 4  ','all of the above ','','','a','','posr-utme-aaua','2013',600,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(36,'Ali Ghaji s  eig  e ded i  Ka e  Bo o in  ','1501','1502','1503','1504','','','d','','posr-utme-aaua','2013',587,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:57'),(37,'All of the following are renowned historians except  ','Prof Ade Ajayi ','Prof Toyin Falola  ','Prof Obaro Ikime  ','Prof Akin Oyebade ','','','d','','posr-utme-aaua','2013',600,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(38,'In Yorubaland, the concept which derived mainly from the wave of dispersal that attended the process of state formation is known as','Omo iya  ','Ebi  ','Oduduwa  ','all of the above ','','','b','','posr-utme-aaua','2013',594,'Admin','0000-00-00 00:00:00','2020-06-27 17:55:17'),(39,'Oron and Ekoi people of the Cross River Basin might have migrated to Nigeria through the  ','sea  ','mountain  ','sky  ','none ','','','a','','posr-utme-aaua','2013',548,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(40,'The Portuguese first visited Benin around  ','1485','1484','1486','1483','','','a','','posr-utme-aaua','2013',592,'Admin','0000-00-00 00:00:00','2020-07-05 14:16:14'),(41,'Songhai Empire fell in... ','1591','1691','1791','1891','','','a','','posr-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:55'),(42,'The Head of the Sokoto Caliphate was known as  ','Sultan  ','Caliph  ','Emir  ','Alhaji ','','','b','','posr-utme-aaua','2013',593,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(43,'The Ekitiparapo war lasted for  ','10 years  ','16 years  ','100years','50 years ','','','b','','posr-utme-aaua','2013',596,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:54'),(44,'Yoruba inter-state wars lasted for  ','16 years  ','10 years  ','100 years  ','50 years ','','','c','','posr-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:55'),(45,'The Sokoto Jihad led to the formation of Islamic States in following States except  ','Senegal  ','Mali  ','Chad  ','Togo ','','','d','','posr-utme-aaua','2013',610,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(46,'Be li   Af i a   o fe e e took pla e et ee  ','1884 and 1885  ','1885 and 1886  ','1886 and 1887  ','1883 and 1884 ','','','a','','posr-utme-aaua','2013',566,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:55'),(47,'???. and slave raiding were complementary exercises among the Yoruba  ','farming  ','hunting  ','war  ','diplomacy ','','','c','','posr-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-06-28 20:47:48'),(48,'The 1804 Jihad in Northern Nigeria could be referred to all except  ','Sokoto Jihad  ','Uthman Dan Fodiyo Jihad  ','Fulani Jihad  ','Seku Ahmadu Jihad ','','','d','','posr-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(49,'Samori Toure was captured in 1893 by  ','French imperialism  ','British imperialism  ','Germany imperialist  ','none of the above ','','','a','','posr-utme-aaua','2013',587,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56'),(50,'The first independence day speech in Nigeria was given by??.','Muhammadu Buhari','Obafemi Awolowo','Tafawa Balewa','Nnamdi Azikwe','','','c','','posr-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-04 06:18:56');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `image` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `url` text NOT NULL,\n  `name` varchar(200) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `insurance` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `insurance` VALUES (1,'Which of the following policies will prevent loss of home if the wage earner dies?','Term assurance','Endowment assurance','Mortgage insurance','Whole life assurance','','','c','','wassce','2014',50,'Admin','2017-01-09 12:28:06','2020-05-28 21:03:35'),(2,'One of the objectives of buying a term assurance policy is to','protect  dependants  in  case  of  death  of  the  life assured','reduce financial burden of the life assured','supplement retirement income  of  the  life  assured','maximize savings from the life assured','','','a','','wassce','2014',49,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:19'),(3,'An assurance policy taken by experts to cover possible negligence arising from their duties is','consequential loss','professional indemnity','cargo','freight','','','b','','wassce','2014',59,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:19'),(4,'The class of insurance that  covers  legal  liability to a third party for bodily injury and property damage caused by goods supplied is','employer’s liability','public liability','professional indemnity','products liability','','','d','','wassce','2014',55,'Admin','2017-01-09 12:28:08','2020-05-28 21:02:19'),(5,'The  type  of  cover  that  is  designed  against  loss  of earnings following loss caused by fire and special perils is','product guarantee insurance','materials damage cover','fire damage policy','consequential loss cover','','','d','','wassce','2014',37,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:13'),(6,'Which  of  the  following  risks  is  covered  by  insurance policy?','An investment loss on the stock market','Dishonesty of an employee leading to fraud','Failure of a business venture','Rise and fall of prices of goods in the market','','','b','','wassce','2014',52,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:43'),(7,'In  classification  of  risks, what is the name given to a risk  where  the  causes  of  events are linked to factors \tthat are due to the society we live in?','Dynamic risk','Particular risk','Speculative risk','Fundamental risk','','','a','','wassce','2014',47,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:46'),(8,'The evidence of the insurance contract is','proposal form','policy','schedule','endorsement','','','b','','wassce','2014',45,'Admin','2017-01-09 12:28:08','2020-05-28 21:02:54'),(9,'The right of the insurer to step in place of the insured for the purpose of recovering damages is called','representation','indemnity','subrogation','contribution','','','c','','wassce','2014',52,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:49'),(10,'Which of the following is a contract of benefit?','Personal accident insurance','Business interruption insurance','Fire insurance','Money insurance','','','a','','wassce','2014',52,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:40'),(11,'Which of the following is not a feature of insurable interest?','Loss suffered','subject matter','Legal relationship','Financial value','','','a','','wassce','2014',56,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:00'),(12,'A prospective insured in an engineering insurance may be advised to purchase one of the following classes of insurance','fire cover','boiler cover','tempest cover','equipment cover','','','d','','wassce','2014',57,'Admin','2017-01-09 12:28:08','2020-05-28 21:02:39'),(13,'The class of non-life insurance policy where cover note is issued is','fire insurance','burglary insurance','motor insurance','fidelity guarantee','','','c','','wassce','2014',47,'Admin','2017-01-09 12:28:08','2020-05-28 21:02:46'),(14,'Abandonment is mostly applicable to','marine insurance','motor insurance','fire insurance','engineering insurance','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:08','2020-05-28 21:03:37'),(15,'Which of the following is not a benefit covered under a personal accident policy?','Death','Temporary disablement','Loss of baggage','Medical expenses','','','c','','wassce','2014',51,'Admin','2017-01-09 12:28:09','2020-05-28 20:59:43'),(16,'In the preparation of food for eat - in - customers, the cooks made a mistake in using excess quantity of an \tingredient. A customer ate and  suffered  poisoning. \tWhich policy of the operator would pick this liability?','Public liability','Personal liability','All risks insurance','Loss of profit insurance','','','a','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:29'),(17,'How much premium will the insurer charge?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','b','','wassce','2014',63,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:30'),(18,'How  much  premium  will  the  insurer  return  to  the insured?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','a','','wassce','2014',51,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:26'),(19,'A policy that combines cover for many perils as a single policy  to  suit  the  insurance  needs of  an insured is','accident policy','protection policy','paternal policy','packaged policy','','','d','','wassce','2014',56,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:34'),(20,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:55'),(21,'The document that sets out the list of items covered in insurance is a','manifest','bill of lading','policy list','policy specification or form','','','d','','wassce','2014',67,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:50'),(22,'One of the information contained in a motor insurance cover note is the','behaviour of the insured','occupation of the insured','commencement date','previous and present insurance history','','','c','','wassce','2014',55,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:45'),(23,'In property insurance, which of the following is not a direct loss?','Reinstating the property destroyed','Replacing the property destroyed','Repairing the property damaged','Replacing third party property damaged','','','d','','wassce','2014',56,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:49'),(24,'Ade insured his property for N= 350,000.00. The property is subject to average condition. He suffered a loss amounting to N= 30,000.00 with the value of the property at the time of loss to be N= 370,000.00. How much will the insurer pay?','N= 14,583.33','N= 28,378.38','N= 30,000.00','N= 31,714.29','','','d','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:02:14'),(25,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of dispute','resolution of policy','','','a','','wassce','2014',54,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:50'),(26,'An insurer who buys reinsurance cover is insured as','retrocession','retrocedant','cession','cadent','','','d','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:02:24'),(27,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:48'),(28,'Family income option in a life policy provides that','the beneficiary will be paid for life','the beneficiary receives the policy sum','interest will be added monthly','salary will be paid to the insured until death','','','b','','wassce','2014',45,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:25'),(29,'A provision in a policy that exempts an insurer from liability if the loss is less than a certain amount is','excess','transfer','lay days','franchise','','','a','','wassce','2014',66,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:13'),(30,'Which of the following policies is a peril covered under a standard fire policy?','Lightning','Storm','Civil commotion','Escape of oil','','','a','','wassce','2014',46,'Admin','2017-01-09 12:28:09','2020-05-28 21:00:44'),(31,'A type of reinsurance where cession and acceptance is obligatory is','treaty','captive','facultative','retrocession','','','a','','wassce','2014',58,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:20'),(32,'A contract sold  by  insurance companies that  pay  a monthly or  quarterly income  benefit for the  life  of a person is','endowment','annuity','income','freight','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:34'),(33,'George effected two personal accident policies. The first policy provides N= 25,000.00 cover for loss of limb. The second policy provides N= 30,000.00 cover for loss of limb. What is the total amount that  George  will receive in the event of a valid loss of limb claim?','N= 5,000.00','N= 25,000.00','N= 30,000.00','N= 55,000.00','','','a','','wassce','2014',54,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:50'),(34,'Renewal notice is  used by  insurers  to  remind the insured of the','reduction of cover','continuation of cover','expiration of cover','increase of cover','','','b','','wassce','2014',57,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:52'),(35,'Risk Net Insurance Brokers Limited placed a business with an insurance company, in return the broker will be entitled to','fees','commission','profit','revenue','','','b','','wassce','2014',52,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:14'),(36,'The professional service required for effective claims administration by insurers would be provided by','loss assessors','risk managers','loss adjusters','claims consultants','','','c','','wassce','2014',60,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:09'),(37,'Which  of the following activities is  not a  function of the  Chartered  Insurance  Institute  of  Nigeria?','Setting a standard for members','Promoting Professional growth','Promoting the interest of insurers','Specifying professional qualification','','','d','','wassce','2014',54,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:17'),(38,'Effective supervision and licensing of insurance firms in Nigeria is the function of','National Insurance Commission','Institute of Loss Adjusters of Nigeria','Chartered Insurance Institute of Nigeria','Nigerian Corporation of Registered Insurance Brokers','','','a','','wassce','2014',57,'Admin','2017-01-09 12:28:09','2020-05-28 21:02:11'),(39,'The payment made when the insured is  not  entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','wassce','2014',59,'Admin','2017-01-09 12:28:09','2020-05-28 21:03:43'),(40,'The owner of a life assurance policy who enters into an agreement to sell the ownership of the policy and beneficiary rights upon the death of the insured is called','an underwriter','a aviator','a factor','an assessor','','','d','','wassce','2014',48,'Admin','2017-01-09 12:28:10','2020-05-28 21:02:36'),(41,'A small fixed sum retained by the insured in the form of a claim is','slip','severity','excess','frequency','','','b','','wassce','2014',51,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:28'),(42,'A voucher signed by the insured before collecting his claim is','money collect receipt','discharge voucher','payment receipt','pay - in - slip','','','b','','wassce','2014',56,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:57'),(43,'To which of the following parties does the principle of utmost good faith apply in a contract of insurance?','The proposer only','The insurer only','The insurer and proposer','The third party and insured','','','c','','wassce','2014',58,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:42'),(44,'Insurers A and B cover a risk at the ratio of 2:5 for the sum insured of N= 1,800. How much would insurer  A get from the risk?','N= 1,285.00','N= 771.00','N= 514.00','N= 180.00','','','c','','wassce','2014',59,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:09'),(45,'The consideration paid for insurance contract is','money','commission','premium','fee','','','c','','wassce','2014',50,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:37'),(46,'The alternative to seeking for surrender value in a life assurance contract is','automatic non - forfeiture','revival condition','paid-up policy','standing order','','','c','','wassce','2014',50,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:37'),(47,'Which of the following is a risk covered in endowment assurance?','Permanent disability','Bodily injury','Temporary disability','Death cover','','','d','','wassce','2014',44,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:40'),(48,'A <em>revival clause</em> in a life policy will allow an insured to revive a policy that lapsed on account of nonpayment of premium, provided the insured','can prove he is sick at the time','cannot fall sick after the policy','can prove he is in good health','can recover from the ill health','','','a','','wassce','2014',42,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:29'),(49,'Which of  the  following  risks  are  covered  under engineering insurance?','Material damage and liability cover','Boiler and special perils cover','Computer and explosion cover','Property damage and business interruption cover','','','d','','wassce','2014',43,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:13'),(50,'Which of the following is not a function of an insurance broker?','Assisting clients in paying premium','Maintaining proper records of claims','Assisting clients in connecting to insurers','Assisting clients in effecting uninsured loss','','','a','','wassce','2014',56,'Admin','2017-01-09 12:28:10','2020-05-28 21:03:55'),(51,'The primary function of insurance is','making profit','managing of risk','spreading of risk','prevention of accident','','','c','','model','1',61,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:32'),(52,'An  insurance  feature  that  requires  the  parties  to disclose  all  material  facts  about  the  agreement is known as','Adhesion','Disclosure','Material fact','Utmost good faith','','','b','','model','1',58,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:27'),(53,'An insurance principle that requires the insured to be honest and disclose all relevant facts is called','subrogation','utmost good faith','proximate cause','insurable interest','','','b','','model','1',58,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:40'),(54,'The facts which might influence any party’s willingness to enter the contract or reject it is called','insurable fact','insurance fact','insured fact','material fact','','','d','','model','1',45,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:58'),(55,'A  statement  of  fact  that  the insured must have an interest in the object of the contract is called','warranty','insurable interest','subrogation','object interest','','','b','','model','1',51,'Admin','2017-01-09 13:02:56','2020-05-28 21:03:45'),(56,'A fundamental condition which must be filled  by the  insured for compensation is','warranty','obligation','interest','premium','','','a','','model','1',59,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:53'),(57,'The object of an insurance policy is equally known as','insurance title','insurance premium','subject matter','risk object','','','c','','model','1',53,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:20'),(58,'In insurance contract the insured is the','offeror','offeree','Actuary','Ofree','','','a','','model','1',59,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:46'),(59,'In insurance contract offeree is the','insured','insurance company','client','Third party','','','b','','model','1',44,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:49'),(60,'An individual who is interested in taking an insurance policy must fill a form of application called:','premium slip','policy document','proposal form','claim form','','','c','','model','1',61,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:49'),(61,'The payment made by the insured to the insurer upon which the validity of insurance is based is called','Exgratia payment','Loss payment','Compensation','Premium','','','d','','model','1',60,'Admin','2017-01-09 13:02:57','2020-05-28 21:00:15'),(62,'The temporary document issued by the insurer to the insured while the policy is being prepared is','insurance certificate','promissory note','exchange slip','cover note','','','d','','model','1',57,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:01'),(63,'The evidence of the contractual agreement between the insured and insurer is','policy','proposal form','insurance certificate','cover note','','','a','','model','1',47,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:44'),(64,'Which of these is an aid to trade?','cover note','insurance','premium','policy','','','b','','model','1',61,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:18'),(65,'The following are exempted from a contract because they do not have the contractual capacity except','Drunkard','Alien','Mental patient','Adult','','','d','','model','1',50,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:22'),(66,'Insured is likewise known as','insuree','Insurer','policy holder','contractor','','','c','','model','1',66,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:06'),(67,'Insurance contract is between','Broker and Agent','Insured and Insurer','Insurer  and Agent','Insured and Agent','','','b','','model','1',54,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:46'),(68,'The buyer of insurance product is','Agent','Broker','Insured','Insurer','','','c','','model','1',52,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:13'),(69,'The seller of insurance product is','Insurer','Insured','Broker','Agent','','','a','','model','1',46,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:24'),(70,'Which of this is an odd one out?','offer and acceptance','contractual capacity','legality of object','Adhesion','','','d','','model','1',57,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:56'),(71,'The uncertainty as to the occurrence of a loos is','Hazard','Loss','Risk','insurance','','','c','','model','1',43,'Admin','2017-01-09 13:02:57','2020-05-28 21:01:40'),(72,'The risks which affect the society and whose causes are beyond human control is','particular risk','static','fundamental','speculative','','','c','','model','1',47,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:53'),(73,'Risks that are peculiar to an individual actions and decision is known as','fundamental risk','particular risk','pure risk','speculative risk','','','b','','model','1',49,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:49'),(74,'Risk of loss resulting from change in culture and taste is called','static risk','pure risk','dynamic risk','speculative risk','','','c','','model','1',52,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:09'),(75,'The following risks are insurable except','particular','pure','static','dynamic risk','','','d','','model','1',64,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:51'),(76,'The following are insurable except','Marine','Goods','Gambling','Accident','','','c','','model','1',46,'Admin','2017-01-09 13:02:57','2020-05-28 21:03:52'),(77,'The following are non-insurable except','Lose of profit as a result of change in fashion','Speculation','Lose of profit as a result of maladministration','Fire','','','d','','model','1',45,'Admin','2017-01-09 13:02:57','2020-05-28 21:01:50'),(78,'Factors which may influence the occurrence of a loss is','Risk','Loss','Peril','Hazard','','','d','','model','1',42,'Admin','2017-01-09 13:02:57','2020-05-28 21:02:32'),(79,'Hazard that relates to the attitude of the insured is known as','Physical hazard','Good physical hazard','Moral hazard','Good moral hazard','','','c','','model','1',60,'Admin','2017-01-09 13:02:57','2020-07-05 18:09:31'),(80,'Hazard that relates to the subject matter of insurance is called','moral','physical','peril','Good peril','','','b','','model','1',57,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:38'),(81,'The following are examples of bad moral hazard except','Fraudulent activities','Carelessness','Honesty','Unreasonableness','','','c','','model','1',48,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:29'),(82,'The cause of a loss is known as','Risk','Peril','Hazard','Moral','','','b','','model','1',48,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:51'),(83,'The  principle  of  insurance  which  states  that a person must be in a legally recognized relationship to what is  insured  such  that  he  will  benefit  from its existence or suffer by its loss is','utmost good faith','insurable interest','proximate cause','subrogation','','','b','','model','1',60,'Admin','2017-01-09 13:02:58','2020-05-28 21:02:37'),(84,'A person who has lawful possession of goods belonging to another is known as','Owner','Bailee','Agent','Trustee','','','b','','model','1',57,'Admin','2017-01-09 13:02:58','2020-05-28 21:02:26'),(85,'Transfer of rights and liabilities under a contract with the consent of the other party is known as','Assignment','liability','Interest','Legality','','','a','','model','1',56,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:54'),(86,'Another name for utmost good faith is','cadent','cede','ex gratia','uberrimae fidei','','','d','','model','1',60,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:38'),(87,'The principle of insurance which states that the insure should be truthful and disclose all material fact is','subrogation','utmost good faith','indemnity','insurable interest','','','b','','model','1',57,'Admin','2017-01-09 13:02:58','2020-05-28 21:01:53'),(88,'A miss statement of fact that is made by the insured or his broker to an underwriter during negotiation is called','annuity','misrepresentation','endorsement','disclosure','','','b','','model','1',47,'Admin','2017-01-09 13:02:58','2020-05-28 21:00:51'),(89,'Indemnity is provided through the following media except','cash','commission','reinstatement','repair','','','b','','model','1',48,'Admin','2017-01-09 13:02:58','2020-05-28 21:02:34'),(90,'Any circumstance that promotes the probability of a loss is called','accident','hazard','loss','risk','','','b','','model','1',77,'Admin','2017-01-09 13:02:58','2020-07-06 16:25:30'),(91,'A financial compensation sufficient to return the insured back to the original position after loss is known as','deposit','loan','indemnity','profit','','','c','','model','1',52,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:15'),(92,'Another name for business interruption insurance is','property insurance','consequential loss','credit insurance','excess loss','','','b','','model','1',58,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:34'),(93,'Subrogation principle can be applied in the following insurance policies except in','aviation policy','engineering policy','life policy','marine policy','','','c','','model','1',58,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:24'),(94,'Payment of claims  in  liability  insurance are usually made in favour of','insurance agent','a third party','employees','employers','','','b','','model','1',69,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:40'),(95,'The person  that  brings  an insurance  contract  into existence between  the principal and third party  is a/an','agent','bailee','contractor','insurer','','','a','','model','1',55,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:56'),(96,'“Hull” in marine policy refers to the','boiler','cost of transporting the goods','goods on board','ship','','','d','','model','1',61,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:29'),(97,'A formal document containing the condition of the insurance contract is called','agreement','contract form','contract slip','policy document','','','d','','model','1',42,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:43'),(98,'Engineering insurance covers the following except','boiler explosion','building and civil','business interruption','machinery breakdown','','','c','','model','1',58,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:22'),(99,'A policy designed to protect individuals against negligence while carrying out their daily activities is called','business interruption','employers liability','engineering','professional indemnity','','','d','','model','1',45,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:32'),(100,'Unlawful breaking and entering into any premises or place of safe keeping is covered under which of these policies?','burglary','business interruption','employers liability','public liability','','','a','','model','1',49,'Admin','2017-01-09 13:02:58','2020-05-28 21:03:38'),(101,'When someone is placed back in the same financial position that he was in just prior to a loss, that is ----','Actual cash value','Consideration','Contribution','Indemnity','','','d','','model','2',51,'Admin','2017-01-09 13:21:17','2020-05-28 21:03:00'),(102,'Insurable interest means','Interest gained on money in a bank','Interest payable on a loan','Financial interest a person has in something he expects to inherit','The financial interest a person has in something of value','','','d','','model','2',60,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:45'),(103,'Below are insurable policies except','Earthquake','Fire','Life','Marine','','','a','','model','2',55,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:49'),(104,'The term pooling of risks in insurance means that','Many who face risks pay premium so that those who suffer loss may be reimbursed','Insurance companies share heavy losses','Insurance company re-assures with another','Insurance companies operates pool betting business','','','a','','model','2',56,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:44'),(105,'Which of the following is not a principle of insurance?','Indemnity','Compensation','Proximate cause','Insurable interest','','','b','','model','2',60,'Admin','2017-01-09 13:21:18','2020-05-28 21:02:12'),(106,'The amount of money paid periodically by an insured to the insurance company to cover risk is called','Commission','Premium','Cover note','Dividend','','','b','','model','2',60,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:06'),(107,'Insurance was developed as a result of the existence of','Hazards','Loss','Risk','Indemnity','','','c','','model','2',60,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:17'),(108,'Which of the following is not a function of insurance?','Serves as collateral','Encouraging saving','Provides insecurity','Reduces risks','','','c','','model','2',66,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:55'),(109,'In the utmost good faith principle, the value of the subject matter should','Be over stated','Understated','Not be stated','Not be overstated nor understated','','','d','','model','2',47,'Admin','2017-01-09 13:21:18','2020-05-28 21:03:20'),(110,'Which of the following is non- insurable risk?','Gambling','Accident','Fire','Theft','','','a','','model','2',56,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:54'),(111,'Which of the following is a temporary document given to the insured in an insurance contract?','Cover note','Subrogation','Policy document','Reinsurance','','','a','','model','2',65,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:46'),(112,'Hazard that deals with the human habits and character that arises from human attitude and the conduct of people is called','physical','Moral','Static','Dynamic','','','b','','model','2',40,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:56'),(113,'A peril is best defined as','Chance of a loss','The occurrence of a loan','The cause of a loss','The result of a loss','','','c','','model','2',53,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:42'),(114,'One of the essential features of insurance contract is','Premium','Subrogation','Interest','Disclosure','','','d','','model','2',56,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:09'),(115,'Insurance  feature  that  emphasized   the  fact  that insurance contract is a contract between the insurer and  the  insured  and  which states  that  the insured must  adhere to  the  agreement  is  called','Disclosure','Warranty','Adhesion','Material facts','','','c','','model','2',45,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:59'),(116,'The principle that requires the insured to disclose to the insurer all matters relating to the object of insurance is called','Uberrimae fidei','Proximate cause','Abandonment','Subrogation','','','a','','model','2',49,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:35'),(117,'There must  be  a  close  connection  between  the loss actually suffered and the risk is relating to the principle  of','Abandonment','Proximate cause','Utmost good faith','Adhesion','','','b','','model','2',52,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:35'),(118,'The principle of subrogation imposed an obligation on the insured to','Disclose all material information','Have financial risks in the object','Press for compensation','Surrender legal right after compensation','','','d','','model','2',44,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:43'),(119,'Which of the following is not a principle of insurance','Indemnity','Insurable risk','Subrogation','Insurable interest','','','b','','model','2',55,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:55'),(120,'An application form which is filled by anyone taking out an insurance policy is called','A policy form','A claim form','A proposal form','Proximate cause form','','','c','','model','2',47,'Admin','2017-01-09 13:21:19','2020-05-28 20:59:45'),(121,'Insurance is necessary because of the need to','Pool resources together','Meet uncertainties in future','Make profit','Lend money to individual','','','b','','model','2',58,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:49'),(122,'The policy that covers debt that cannot be recovered is called','Life assurance','Motor vehicle policy','Comprehensive policy','Bad debt insurance policy','','','d','','model','2',46,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:09'),(123,'Risk whose cause is beyond human control is','Fundamental','Speculative','Particular','Static','','','a','','model','2',54,'Admin','2017-01-09 13:21:19','2020-05-28 21:01:53'),(124,'Cover note usually run for about','One month','Two days','5 years','3 days','','','a','','model','2',57,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:23'),(125,'A card used by motorist in the West African sub-region is called','Brown card','Certificate','Insurance card','visa card','','','a','','model','2',56,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:10'),(126,'Uncertainty of loss is known as','Risk','Certainty','Insurance','Hazard','','','a','','model','2',81,'Admin','2017-01-09 13:21:19','2020-06-23 11:44:24'),(127,'Re-insurance contract is between','Re-insurer and insurer','Re- insurance and insurance','Co-insurer and insurer','Insurance broker and re-insurer','','','a','','model','2',53,'Admin','2017-01-09 13:21:19','2020-05-28 21:02:39'),(128,'The continuation of insurance contract after expiration is','Renewal','Revival','Resuscitation','Rejuvenation','','','a','','model','2',45,'Admin','2017-01-09 13:21:19','2020-05-28 21:00:26'),(129,'The  payment  made  by  underwriter  as  a  form  of  \tkindness  without  admission  of  liability  so  as  to maintain goodwill is known as ------------','Kindness payment','Ex-gratia payment','Favour payment','Claim','','','b','','model','2',44,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:28'),(130,'One of the following is the duty of the insured in insurance claim process','Late report of the loss','Little idea of the loss size','Quick report of the loss','Hiding fact','','','c','','model','2',45,'Admin','2017-01-09 13:21:19','2020-05-28 21:03:18'),(131,'The prices set by the insurer for the insurance cover is known as','Due','Levy','Premium','Charge','','','c','','model','2',57,'Admin','2017-01-09 13:21:20','2020-07-05 18:09:42'),(132,'The transfer of risk already undertaken from one insurance company to another is','Over insurance','Re insurance','Under insurance','Group insurance','','','b','','model','2',52,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:42'),(133,'When an insured person admits that he has indemnified, he means that','The damage proper by has been recovered','He was paid premium fully','The insurance company has restored him to his former position','He was paid his premium fully','','','c','','model','2',49,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:16'),(134,'A house worth N=60,000 insured against fire for N=40,000.  Fire destroyed and cause damage worth N=30,000. On the house under which insurance principle will the owner be entitled to compensation of N=30,000.','Contribution','Subrogation','indemnity','Uberrimae fidei','','','c','','model','2',55,'Admin','2017-01-09 13:21:20','2020-05-28 21:01:51'),(135,'The person who calculate the amount given to the insured if he does not want to continue with the contract of insurance is called','Actuary','Insurance agent','Insurance broker','Assessor loss adjuster','','','d','','model','2',60,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:54'),(136,'The amount given to the insured if he does not want the contract to continue is called','Insurance broker','Premium','Surrender value','Assessor loss adjuster','','','c','','model','2',56,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:44'),(137,'The sum paid for transporting the goods or for the hire of a ship is called','Marine cargo','Freight insurance','Hull insurance','Risk insurance','','','b','','model','2',59,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:32'),(138,'The duty of the loss adjuster in insurance claims is to','Make loss','Prevent loss','Safeguard loss','Recommend appropriate payment','','','d','','model','2',49,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:47'),(139,'Consequential loss is also known as','Business interruption insurance','Credit insurance','Excess loss','Property insurance','','','a','','model','2',51,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:01'),(140,'Subrogation principle can be applied in the following insurance policies except in','motor','Life','Marine','Aviation','','','b','','model','2',72,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:13'),(141,'The acronym “CllN” refers to','Certified insurance institute','Certified insured institute','Certified international institute','Chartered insurance institute','','','d','','model','2',61,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:44'),(142,'Amount paid to the beneficiary upon the death of the insured is','Premium','Compensation','Declaration','Death benefit','','','d','','model','2',57,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:19'),(143,'The clauses in the policy which make alterations or additions to the information stated in the policy is known as','correction','Modification','Change','Endorsement','','','d','','model','2',45,'Admin','2017-01-09 13:21:20','2020-05-28 21:01:41'),(144,'The date on which an insurance or reinsurance contract comes into force is known as','Starting point date','Inception date','Beginning date','Commencement date','','','b','','model','2',53,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:38'),(145,'Factor that causes an exposure to injury, loss or damage is','Risk','Hazard','Peril','Accident','','','b','','model','2',41,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:11'),(146,'Workman compensation is also referred to as','Fidelity insurance','Employment liability','Public liability','Product liability','','','a','','model','2',51,'Admin','2017-01-09 13:21:20','2020-05-28 21:01:59'),(147,'An insurance cover for lawyers, accountants and brokers is','Employment','Professional','Public','Product','','','b','','model','2',49,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:55'),(148,'The deliberate or intentional throwing over board of part of a cargo to lighten the ship in the interest of the reminder of the cargo is','Barratry','Jettison','Breach','Caveat emptor','','','b','','model','2',56,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:16'),(149,'The wrongful act willfully committed by either the master or the prejudice of either the owner or crew to the chatterer of the ship is','Barratry','Caveat emptor','Bailee','Jettison','','','a','','model','2',42,'Admin','2017-01-09 13:21:20','2020-05-28 21:03:30'),(150,'The legal right to insure a subject matter is','Indemnity','Subject Matter','Subrogation','Insurable interest','','','d','','model','2',49,'Admin','2017-01-09 13:21:20','2020-05-28 21:02:37'),(151,'--------- shows what the insured should do or not do to maintain the existence of the policy','Cover note','Policy','Warranty','Certificate','','','c','','model','3',61,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:50'),(152,'The uncertainty of an event occurring is known as','Hazard','Risk','Loss','Accident','','','b','','model','3',50,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:29'),(153,'The provider of protection to an insurance  company against the excess risk it has given insurance covers is called','Assurer','Insuring','Reinsurer','Insurer','','','c','','model','3',48,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:33'),(154,'---------- is the evidence cover of the risk given to the insured by the insurer','Cover','Policy','Claim','Compensation','','','b','','model','3',56,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:50'),(155,'------------ is the protection which the insured buys for his risk','Indemnity','Compensation','Cover','Subrogation','','','c','','model','3',54,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:28'),(156,'A temporary certificate to show that a cover is in existence is called','Policy','Certificate','Cover note','Claim slip','','','c','','model','3',50,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:59'),(157,'------------ is used to bring amendment in a policy that is either to add in a new thing or removal of an existing thing in the policy','Excess','Endorsement','Claim form','Policy','','','b','','model','3',47,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:56'),(158,'The cause of a loss is known as','Peril','Hazard','Loss','Risk','','','a','','model','3',63,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:55'),(159,'The price of insurance is known as','Rate','Interest','Premium','Profit','','','c','','model','3',50,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:56'),(160,'The monetary consideration paid by the insured to the insurers for the insurance granted by the policy is called','Premium','Money','Price','Benefit','','','a','','model','3',55,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:01'),(161,'------------- is a policy designed to place the insured in the same financial position as he was immediately before the happening of the event insured against','Indemnity','Subrogation','Surrender value','Actuary','','','a','','model','3',54,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:15'),(162,'The essential value of valid contract that states that the parties to a contract must be in perfect agreement and have a common mind is','Consideration','Perpetual existence','Excess','Consensus ad-idem','','','d','','model','3',53,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:19'),(163,'A  Statement signed by the insured, certifying the Statement','Certificate','Declaration','Confirmation slip','Accuracy statement','','','b','','model','3',43,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:34'),(164,'Change for the transportation of goods by water is called','Bill','Ticket','Freight','Consideration','','','c','','model','3',63,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:54'),(165,'Life assurance provides dual benefits of savings and ------------ to a policy holder','Acceptance','Consideration','Contribution','Security','','','d','','model','3',65,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:39'),(166,'Another name for consequential loss is','Stop loss','Credit insurance','Business interruption insurance','Excess loss','','','c','','model','3',53,'Admin','2017-01-09 13:38:38','2020-05-28 21:02:50'),(167,'Subrogation principle can be applied in the following insurance policies except in -------- policy','Life','Motor','Theft','Burglary','','','a','','model','3',45,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:28'),(168,'A place where the business of insurance is transacted is called a/an','Insurance market','Brokerage firm','Insurance house','Insurance conference room','','','a','','model','3',48,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:34'),(169,'A customer that suffers loss or sustain injury while using a business outfit that belongs to another perosn, can sue the property owner under -------------- insurance','Professional indemnity','Public liability','Employers’ liability','Personal accident','','','b','','model','3',47,'Admin','2017-01-09 13:38:38','2020-05-28 21:03:30'),(170,'The type of questionnaire drawn up by   insurers, requesting certain information to assess risk is --------- form','Acceptance','Compensation','Credit','Proposal','','','d','','model','3',48,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:37'),(171,'The shifting of responsibility of one’s own losses to another is known as ---------- transfer','Fund','Risk','Business','Policy','','','b','','model','3',46,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:35'),(172,'A financial compensation sufficient to return the insured back to his original position after loss is known as','Deposit','Loan','Indemnity','Overdraft','','','c','','model','3',51,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:35'),(173,'The following are types of life assurances,  except','annuity','Endowment','Hire purchase','Whole life','','','c','','model','3',52,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:14'),(174,'A marine policy that provider cover for the construction of sea vessels is called --------- policy','Building','Mixed','Port','Valued','','','a','','model','3',87,'Admin','2017-01-09 13:38:39','2020-07-02 11:14:35'),(175,'Spreading of risk to ensure that no insurer is liquidated by the occurrence of a large loss is the concept of','Insurance','Re insurance','Renewal','Treaty','','','b','','model','3',62,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:25'),(176,'The person  that  brings  an  insurance  contract into existence  between  the principal  and  third  party is a/an','Agent','Bailee','Contractor','Insurer','','','a','','model','3',58,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:58'),(177,'Any circumstance that promotes the probability of a loss is called','Accident','Hazard','Loss','Risk','','','b','','model','3',44,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:54'),(178,'Indemnity is provided through the following media except','Cash','Commission','Reinstatement','Repair','','','b','','model','3',60,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:35'),(179,'The policy that covers loss of cash while in transit or at home is --------------- insurance','Burglary','Business interruption','Credit','Money','','','d','','model','3',48,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:57'),(180,'A person who makes an insurance claim is called','Actuary','Adjustor','Claimant','Client','','','c','','model','3',58,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:56'),(181,'To break or act contrary to a law or promise means','Breach','Shake','Confirm','Disagreement','','','a','','model','3',48,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:54'),(182,'A professional officer of an insurance company whose duty among others is to calculate the premium to be \tpaid by the insured is called','Agent','Principal','Actuarist','Adjuster','','','c','','model','3',52,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:39'),(183,'Which of these is insurable?','Fire','Inflation','Bad publicity','Riot and war','','','a','','model','3',63,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:43'),(184,'The principle that requires all material facts to be disclosed is known as','Indemnity','Fidelity','Proximate cause','Utmost good faith','','','d','','model','3',57,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:39'),(185,'In insurance contract, failure to disclose all relevant material facts will render the contract','legal','Voidable','Void','Implied','','','c','','model','3',57,'Admin','2017-01-09 13:38:39','2020-05-28 21:01:55'),(186,'Any information that will influence a prudent insurer is called','contract','misrepresentation','disclosure','Material facts','','','d','','model','3',51,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:49'),(187,'The insurance principle which implies that a proof is required that the direct and immediate cause of the loss suffered was by the occurrence of the risk insured against is called','Indemnity','Proximate cause','Insurable interest','Utmost good faith','','','b','','model','3',56,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:48'),(188,'Method of providing indemnity whereby subject matter is being restored to its former position is','Repairs','Cash','Reinstatement','Replacement','','','c','','model','3',56,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:20'),(189,'A relief to insurer of each and every loss which does not exceed a specified amount is','Excess','Franchise','Deductible','Annuity','','','b','','model','3',65,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:45'),(190,'When an   insurer agrees   to   replace   irreparably damaged or stolen goods with similar type it is called','Reinstatement','Cash','Repairs','Replacement','','','d','','model','3',43,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:07'),(191,'Cover note usually run for about','21 days','one month','12 months','3 month','','','b','','model','3',63,'Admin','2017-01-09 13:38:39','2020-05-28 21:03:34'),(192,'The process of changing anything wrong with the policy to make it current is','Endorsement','Specification','Rectification','Correction','','','c','','model','3',43,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:10'),(193,'A syndicate or an insurance company that transfer risk under re-insurance is','Cede','Cession','Commutation','Cedant','','','d','','model','3',47,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:53'),(194,'A particular risk which is transferred to another re-insurance under a re-insurance treaty is','Cedant','Cession','Facultative','Cede','','','b','','model','3',55,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:56'),(195,'Application by the insured to the insurer for the payment of money due under his contract of insurance is','Proof','Evidence','Claim','Compensation','','','c','','model','3',54,'Admin','2017-01-09 13:38:39','2020-05-28 21:02:26'),(196,'The following are the methods of claim settlement except','Cash','Repair','Reinstatement','Repayment','','','d','','model','3',60,'Admin','2017-01-09 13:38:40','2020-05-28 21:03:38'),(197,'Person who makes claim is called','Claimant','Client','Insured','Insurer','','','a','','model','3',48,'Admin','2017-01-09 13:38:40','2020-05-28 21:02:05'),(198,'A payment made by insurer as a form of sympathy to maintain goodwill is','Compensation payment','Contract payment','Charity payment','Ex - gratia payment','','','d','','model','3',60,'Admin','2017-01-09 13:38:40','2020-05-28 21:03:25'),(199,'The policy that provides protection for goods or cargoes and ships against the perils of the sea is','Fire','Marine','Aviation','Credit','','','b','','model','3',62,'Admin','2017-01-09 13:38:40','2020-05-28 21:03:57'),(200,'Another name for an insured in a life insurance contract is','Insurer','Assured','Assurer','Agent','','','b','','model','3',43,'Admin','2017-01-09 13:38:40','2020-05-28 21:02:24'),(201,'Insurance is defined as','risking of loss','pooling of risk','gathering of risk','waiving of risk','','','b','','model','4',52,'Admin','2017-01-09 13:49:45','2020-05-28 21:03:11'),(202,'In a contract of insurance, a firm statement is usually made by a person known as the','offeror','offeree','insur','client','','','a','','model','4',52,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:14'),(203,'The premium paid by the insured to the insurance company is','capital','commission','common fund','consideration','','','d','','model','4',62,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:15'),(204,'The insured is also known as','the client','the consumer','the policy holder','agent','','','c','','model','4',53,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:50'),(205,'The coming together of minds of  the two parties to the insurance contract is called','surrender value','acceptance','consensus ad-idem','adhesion','','','c','','model','4',52,'Admin','2017-01-09 13:49:46','2020-05-28 21:02:58'),(206,'Uberrimae fidei is equally known as','contract','agreement','consensus','utmost good faith','','','d','','model','4',58,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:38'),(207,'The legal right that a person must have to enable him or her to insure his or her property is known as','freedom','franchise','insurable interest','Access right','','','c','','model','4',46,'Admin','2017-01-09 13:49:46','2020-05-28 21:02:21'),(208,'An undertaking by the insured that certain things shall be done or not be done or certain things shall be put in place or not in place is called','warranties and representation','utmost good faith and uberrimae fidei','insurable and non-insurable','subrogation and indemnity','','','a','','model','4',43,'Admin','2017-01-09 13:49:46','2020-05-28 21:02:05'),(209,'In insurance, uncertainty of loss means','hazard','risk','accident','earthquake','','','b','','model','4',46,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:33'),(210,'Occurrence of an unplanned event is called','hazard','loss','risk','speculation','','','c','','model','4',53,'Admin','2017-01-09 13:49:46','2020-05-28 21:01:51'),(211,'An insurance contract where both parties signed the agreement which involve mutuality of agreement is known as','unilateral contract','multilateral contract','bilateral contract','united contract','','','c','','model','4',42,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:54'),(212,'An insurance contract which does not involve mutuality of agreement in which only one of the parties involved in the contract makes promises that are legally binding is called','double contract','single contract','multilateral contract','unilateral contract','','','d','','model','4',59,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:51'),(213,'Insurance is a contract that is based on','possibility','probability','positivity','negativity','','','b','','model','4',60,'Admin','2017-01-09 13:49:46','2020-05-28 21:03:57'),(214,'Assurance is a contract that is based on','negativity','possibility','positivity','probability','','','d','','model','4',44,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:57'),(215,'With insurance contract there is','certainty of occurrence','uncertainty of occurrence','certainty of reward','uncertainty  of reward','','','b','','model','4',60,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:32'),(216,'With assurance contract there is','uncertainly of reward','certainty of reward','certainty of occurrence','uncertainty of occurrence','','','c','','model','4',59,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:40'),(217,'Indemnity is not applicable in','assurance contract','insurance contract','insurance terms','insurance content','','','a','','model','4',61,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:46'),(218,'Non- indemnity insurance means that the assured can','be restored back to his former position','not be restored back to his former position','be brought back to contract','not be brought back to contract','','','b','','model','4',57,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:19'),(219,'A seller of insurance product is','insurer','promisor','client','insured','','','a','','model','4',46,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:25'),(220,'A buyer of insurance product is','insured','promise','insurer','insuree','','','a','','model','4',52,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:22'),(221,'A contract which has no legal effect is called','voidable contract','legal contract','void contract','valid contract','','','c','','model','4',55,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:45'),(222,'A contract that is contrary to public policy is','valid contract','legal contract','illegal contract','voidable contract','','','c','','model','4',61,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:44'),(223,'Which of the following cannot enter into an insurance contract?','adult','insured','minor','insurer','','','c','','model','4',56,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:34'),(224,'Risk that affect the society and whose causes are beyond human control is','particular risk','pure risk','fundamental risk','static risk','','','c','','model','4',57,'Admin','2017-01-09 13:49:47','2020-05-28 21:01:42'),(225,'The process of evaluating and minimizing risk is','risk management','risk certainty','risk insurance','risk re-grouping','','','a','','model','4',51,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:22'),(226,'Another name for utmost good faith','expirit - de - corps','uberrimae fidei','caveat emptor','proximate cause','','','b','','model','4',56,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:27'),(227,'Inter company agreement in which insurers agreed to waive their right against each other for loss is','knock for knock agreement','employers’ liability','tit for tat agreement','salvage agreement','','','a','','model','4',51,'Admin','2017-01-09 13:49:47','2020-05-28 20:59:38'),(228,'Contribution will only arise when','two or more parties disagree','two or more parties are promisor','two or more policies of indemnity exist','one policy of indemnity exist','','','c','','model','4',59,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:43'),(229,'One of the following is a condition for contribution','bilateral interest','multilatual interest','two subject matter','common subject matter','','','d','','model','4',54,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:28'),(230,'one of these is a content of a proposal form','children of the proposer','education of the proposer','occupation of the proposer','educational','','','c','','model','4',57,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:52'),(231,'The statement “ I to the best of my knowledge hereby confirm that the statements contained in this prosal form are true and correct” represents','confirmation','declaration','witnessing','humility','','','b','','model','4',53,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:09'),(232,'When the proposer fails to fill the proposal form truthfully, the contract will become','voidable','illegal','void','enforceable','','','c','','model','4',73,'Admin','2017-01-09 13:49:47','2020-05-28 21:02:58'),(233,'Proposal form is used in the following classes of insurance except','Accident','theft','life','large risk of fire','','','d','','model','4',46,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:50'),(234,'The following classes of insurance apply the use of proposal form except','public liability','large risk of marine insurance','small risk of marine insurance','theft','','','b','','model','4',53,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:24'),(235,'Proposal form is not applicable to the following except','aviation','engineering','large risk of fire','fidelity guarantee','','','d','','model','4',52,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:38'),(236,'Which of the method below can be used to provide indemnity in the event of loss','moral advice','resolution of policy','cash payment','professional encouragement','','','c','','model','4',61,'Admin','2017-01-09 13:49:47','2020-05-28 21:03:46'),(237,'A card used by motorist in the West African sub-region is called','insurance certificate','insurance register','insurance green card','Ecowas brown card','','','d','','model','4',46,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:48'),(238,'Situation that are not included in the policy are usually referred to as','condition','exception','preamble','operative clause','','','b','','model','4',55,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:30'),(239,'The part of a policy form that shows the name and address of the company is known as','heading','conclusion','condition','preamble','','','a','','model','4',60,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:54'),(240,'One of these shows the introduction to the details of the insurance policy, parties as well as the premium for the contract','preamble','heading','exception','condition','','','a','','model','4',47,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:42'),(241,'Policy condition which are automatically applicable and not stated in the contract of agreement is known as','agreed condition','agreed negotiation','implied condition','expressed condition','','','c','','model','4',64,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:23'),(242,'A written amendment in addition or alterations to the information stated in the policy is called','endorsement','specification','construction','attestation','','','a','','model','4',40,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:33'),(243,'The process of changing what is wrong in the policy is called','specification','attestation clause','rectification','justification','','','c','','model','4',55,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:34'),(244,'The process of transferring risk from one insurer to another is called','contribution','re-insurance','re-processing','re-activating','','','b','','model','4',60,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:17'),(245,'A reminder to the insured that this existing contract is due to expire is','proposal form','slip','claim form','renewal notice','','','d','','model','4',51,'Admin','2017-01-09 13:49:48','2020-05-28 21:02:19'),(246,'One of these is a form of motor vehicle insurance policy','comprehensive','1st party only','2nd party only','accident','','','a','','model','4',57,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:49'),(247,'Third party provides cover only for damages to','assurer','insurer','2nd party','another person','','','d','','model','4',55,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:32'),(248,'The type of cover for violent and forcible entry into a premises is called','burglary and theft','third party fire and theft','third party and theft','stealing','','','a','','model','4',48,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:15'),(249,'The deliberate throwing overboard of part of a cargo to lighten the ship is called','barratry','overthrown','voyaging','jettisoning','','','d','','model','4',67,'Admin','2017-01-09 13:49:48','2020-05-28 21:03:51'),(250,'The deliberate throwing overboard of part of a cargo without a good intention is called','jettison','barratry','voyaging','overboard','','','b','','model','4',47,'Admin','2017-01-09 13:49:48','2020-05-28 21:02:51'),(251,'Insurance premium depends on the','amount of profit to be made by the insurer','various insurance companies in a place','extent of the possible loss and the frequency of risk','supply and demand','','','c','','model','5',62,'Admin','2017-01-09 13:58:40','2020-05-28 21:02:25'),(252,'Subrogation in insurance means that','the insured could not make a profit from the insurer','the insured must be fully indemnified','the insurer must take the place of the insured','the insured should pool their risks','','','c','','model','5',58,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:37'),(253,'Payment by the insurer to the insured out of sympathy is known as','utmost good faith','proximate cause','peril','ex-gratia payment','','','d','','model','5',44,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:28'),(254,'If the insured does not want the contract to continue he receives','surrender value','consideration','premium','commission','','','a','','model','5',54,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:45'),(255,'Re-insurance means','accumulation of risk','multiplication of risk','transfer of risk','adding of risk','','','c','','model','5',58,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:39'),(256,'Another name for the assured is','insurance company’s client','insurance broker','insurance company','insurance agent','','','c','','model','5',56,'Admin','2017-01-09 13:58:44','2020-05-28 21:03:50'),(257,'One of the following is legally used by the insured while the policy is being processed','indemnity form','claim form','cover note','proposal form','','','c','','model','5',53,'Admin','2017-01-09 13:58:48','2020-05-28 21:02:56'),(258,'One of the following is necessary to meet uncertainties in future','profit','capital','borrowing','insurance','','','d','','model','5',49,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:48'),(259,'When an insured person admits that he has been indemnified, he means that','the insurance company has accepted his claims','the damaged property has been recovered','He has paid his premium','the insurance company has restored him to his former position','','','d','','model','5',60,'Admin','2017-01-09 13:58:48','2020-05-28 21:02:31'),(260,'If the insured has been fully indemnified, the insurers are entitled to take any advantage due to the insured. Principle of insurance involved is','insurable interest','contribution','indemnity','subrogation','','','d','','model','5',55,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:33'),(261,'The settlement of disagreement between the insured and the insurer is called','litigation','arbitration','negotiation','compromising','','','c','','model','5',44,'Admin','2017-01-09 13:58:48','2020-05-28 21:02:56'),(262,'One of this is a method of claim settlement','price','trade by barter','exchange','cash','','','d','','model','5',52,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:49'),(263,'Replacement of damaged property by the insurance company is','arbitration','negotiation','Re-instatement','rectification','','','c','','model','5',59,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:46'),(264,'A reminder to the insured who may have forgotten to seek for continuation after his policy expiry date is','notification message','renewal notice','registration notice','agreement notice','','','b','','model','5',54,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:55'),(265,'Which of the following risks is covered by insurance policy?','an investment loss on the stock market','dishonesty of an employee leading to fraud','failure of a business venture','rise and fall of prices of goods in the market','','','b','','model','5',56,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:52'),(266,'One of this is the evidence of insurance contract','schedule','policy','proposal form','endorsement','','','c','','model','5',52,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:29'),(267,'One of this is the consideration paid for insurance contract','fee','cheque','commission','premium','','','d','','model','5',45,'Admin','2017-01-09 13:58:48','2020-05-28 21:03:16'),(268,'The payment made when the insured is not entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','model','5',51,'Admin','2017-01-09 13:58:48','2020-05-28 21:02:01'),(269,'To which of the following does the principle of utmost good faith apply in a contract of insurance?','the insurer only','the proposer only','the third party and insured','insurer and proposer','','','d','','model','5',57,'Admin','2017-01-09 13:58:49','2020-05-28 21:03:56'),(270,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of policy','resolution of dispute','','','a','','model','5',59,'Admin','2017-01-09 13:58:49','2020-07-03 04:57:52'),(271,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','model','5',57,'Admin','2017-01-09 13:58:49','2020-05-28 21:03:46'),(272,'A factor which may influence the occurrence of a loss is','peril','loss','hazard','risk','','','c','','model','5',60,'Admin','2017-01-09 13:58:52','2020-05-28 21:03:15'),(273,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','model','5',55,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:45'),(274,'A reinsurance contract in which the reassured agrees to offer and the reinsurer agrees to accept all risks of certain size within a defined class is','underwriting','treaty','tort','syndicate','','','b','','model','5',49,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:11'),(275,'A contract which has no legal effect is called','void policy','voidable policy','legal policy','formal policy','','','a','','model','5',64,'Admin','2017-01-09 13:58:53','2020-05-28 21:02:31'),(276,'The contract aimed at providing specific payment at regular intervals for a fixed   period or for life is','accident','annuity','average','term','','','b','','model','5',64,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:54'),(277,'policy designed for the insured who is incapacitated to carry out normal duty is','medical expenses','temporary disablement','permanent disablement','medical expenses','','','b','','model','5',57,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:29'),(278,'Physical loss of limbs or total blindness injury is an example of','permanent disablement','temporary disablement','mid-term disablement','total disablement','','','a','','model','5',50,'Admin','2017-01-09 13:58:53','2020-05-28 21:02:34'),(279,'A policy that covers the peril of the sea is','aviation','marine','life','fire','','','b','','model','5',49,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:04'),(280,'An  attempt  to  deprive  someone of his  property is','theft','burglary','robbery','larceny','','','c','','model','5',47,'Admin','2017-01-09 13:58:53','2020-05-28 21:02:16'),(281,'The process of examining, accepting or rejecting risks and classifying the ones accepted is','underwriting','policy','procedures','warranty','','','a','','model','5',53,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:24'),(282,'The periodic payment made by the insured to the insurer as financial cost of obtaining insurance','annuity','premium','claim','dividend','','','b','','model','5',48,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:13'),(283,'The amount added to the standard premium in respect of the larger than standard risk presented by the proposer is called','premium increase','premium loading','premium payment','premium commission','','','b','','model','5',44,'Admin','2017-01-09 13:58:53','2020-05-28 21:01:46'),(284,'Return premium is the same thing as','premium payment','premium refund','premium tax','premium bonus','','','b','','model','5',56,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:57'),(285,'The principle of maritime law which makes owners of ship and cargo share in a lost incurred voluntarily is','general average','special average','specific average','particular average','','','a','','model','5',56,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:19'),(286,'The amount given to the insured if he does not want the contract to continue is called','premium','price','consideration','surrender value','','','d','','model','5',54,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:51'),(287,'Partial loss can be divided into','particular average and general average','particular average and total loss','actual loss and total loss','total loss and particular loss','','','a','','model','5',56,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:19'),(288,'Marine  losses are divided into','actual total and total loss','total loss and partial loss','partial loss and actual loss','average loss and partial loss','','','b','','model','5',58,'Admin','2017-01-09 13:58:53','2020-05-28 21:02:30'),(289,'The division of total loss are','average loss and partial loss','partial loss and full loss','total loss and actual loss','actual total loss and constructive total loss','','','d','','model','5',48,'Admin','2017-01-09 13:58:53','2020-05-28 21:03:24'),(290,'Marine insurance policy which covers all the ship or vessels belonging to one owner is','flect policy','mixed policy','value policy','fixed policy','','','a','','model','5',58,'Admin','2017-01-09 13:58:57','2020-05-28 21:03:45'),(291,'The full meaning of NAICOM is','Nigerian insurance company','national insurance commission','national insurer commission','national insured commission','','','b','','model','5',64,'Admin','2017-01-09 13:58:57','2020-05-28 21:03:48'),(292,'Speailative risks are','insurable risk','non insurable risk','financial risk','non financial risk','','','b','','model','5',63,'Admin','2017-01-09 13:58:57','2020-05-28 21:03:25'),(293,'The form of risk that can easily be calculated and estimated is known as','non insurable risk','non-financial risk','speculative risk','insurable risk','','','d','','model','5',57,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:24'),(294,'A risk that has its origin in the activities of an individual and the effects borne by this individual is called','pure risk','particular risk','speculative risk','fundamental risk','','','b','','model','5',42,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:46'),(295,'Business interruption insurance can also be called','consequential loss','constructive loss','partial  loss','general loss','','','a','','model','5',61,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:44'),(296,'The maximum number of days allowed for a policy holder to pay his renewal premium after it has become due is called','surrender value','conditions','days of grace','days of liberty','','','c','','model','5',55,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:42'),(297,'The  factor  that has  the  tendency  to  increase  the occurrence of a risk is called','risk','loss','hazard','peril','','','d','','model','5',55,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:39'),(298,'The cause of a loss is','peril','hazard','risk','loss','','','a','','model','5',61,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:33'),(299,'The party who proposes to the insurance company to insure his properly is called','offeree','offeror','acceptance party','offer client','','','b','','model','5',53,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:56'),(300,'One of these is a full time professional','broker','agent','factor','insurer','','','a','','model','5',53,'Admin','2017-01-09 13:58:58','2020-05-28 21:03:52'),(301,'Insurance against risk is possible because of the law of','large numbers','few numbers','inverse proportion','diminishing returns','','','a','','wassce','2015',52,'Admin','2017-01-09 14:33:34','2020-05-28 21:02:03'),(302,'Which  of  the  following  is  not  a  component  of  an insurance policy?','Signature clause','Particular clause','Recital clause','Operative clause','','','b','','wassce','2015',46,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:33'),(303,'Which of the following is a component of premium in insurance?','Margin','Reserve','Funds','Capital','','','c','','wassce','2015',49,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:10'),(304,'In which of the following classes of insurance is no <em>claim discount</em> applicable?','Money insurance','Marine insurance','Motor insurance','Aviation insurance','','','a','','wassce','2015',56,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:39'),(305,'The payment by an insurer to the insured in the event of loss is','claim','premium','fee','interest','','','a','','wassce','2015',53,'Admin','2017-01-09 14:33:34','2020-05-28 21:01:42'),(306,'Which of the following is the function of a loss adjuster?','Ensures payment of adequate compensation','Advises the insurer on claim','Operates with unlimited authority','Notifies insurer of the loss','','','a','','wassce','2015',50,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:27'),(307,'A fire insurance policy guaranteed by the insured to be in place for a stated period with a particular insurer is granted a _____________','no claim discount','fleet discount','long - term agreement discount','plurality discount','','','a','','wassce','2015',51,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:55'),(308,'A type of re - insurance  where  the re - insurer has  the option  to  accept  or  reject  any  risk  presented  for re-insurance is','stop loss','facultative','treaty','excess of loss','','','b','','wassce','2015',65,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:05'),(309,'A new Nissan car valued at N= 350,000 was used to replace a Peugeot car with a sum insured N= 250.000 in private policy. The Peugeot car enjoys a 25% no claim discount. If the rate of premium is 11% and the no claim discount is transferred to the  new vehicle, what  would be the premium for the new Nissan car?','N= 20,625','N= 27,500','N= 28,875','N= 38,500','','','b','','wassce','2015',58,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:24'),(310,'One of the features of term assurance is','investment','profit','protection','surrender','','','d','','wassce','2015',53,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:58'),(311,'Which  of  the  following  statements  is  true  about property insurance?','The probability that the event may occur','The probability that the event will not occur','The probability that the event may or may not occur','The probability that the event must occur','','','c','','wassce','2015',57,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:00'),(312,'In a life assurance contract, when does  the  principle of insurable interest arise?','At the beginning of the contract','At the time of claim','At the middle of the contract','At the time of payment of premium','','','a','','wassce','2015',55,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:34'),(313,'Which class of life assurance would a young couple who desires to start a new business in five years time purchase?','Whole life policy','Limited whole life policy','Keyman policy','Endowment policy','','','d','','wassce','2015',60,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:06'),(314,'In which of the following policies is <em>certificate of insurance</em>  used?','Burglary insurance','Product liability insurance','Employer’s liability insurance','Money insurance','','','c','','wassce','2015',44,'Admin','2017-01-09 14:33:34','2020-05-28 21:03:14'),(315,'Which  of  the  following  would  not  give  cause  for subrogation right?','Benefit','Contract','Statute','Salvage','','','a','','wassce','2015',45,'Admin','2017-01-09 14:33:35','2020-05-28 21:02:31'),(316,'Educational endowment policy is designed to protect the interest of','father','mother','child','uncle','','','c','','wassce','2015',45,'Admin','2017-01-09 14:33:35','2020-05-28 21:02:39'),(317,'A clause in an insurance policy that makes a claim jointly payable to the policyholder and the third party is','claim clause','mortgagee clause','mortgage clause','joint liability clause','','','d','','wassce','2015',47,'Admin','2017-01-09 14:33:35','2020-05-28 21:02:40'),(318,'The policy that covers  an  insured  employee  against injury  sustained  in  the  course  of  employment  is','professional indemnity','product liability','public liability','employer’s liability','','','d','','wassce','2015',60,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:58'),(319,'What is  the  maximum  liability which the insurer can pay on a particular loss?','Average','Sum insured','Franchise','Excess','','','a','','wassce','2015',51,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:22'),(320,'A policy taken to cover several shipments for a sum assured is','floating policy','valued policy','declaration policy','special policy','','','a','','wassce','2015',46,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:01'),(321,'A policy taken for full protection against fire and other risks such as flood, tempest, riot and civil commotion is','consequential loss','fire and all risks policy','combined householder’s policy','fire and special perils','','','a','','wassce','2015',56,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:55'),(322,'The  person  that   transfers  risks  to  the  insurance company is called','a broker','an insured','an underwriter','a loss adjuster','','','b','','wassce','2015',61,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:35'),(323,'A clause in marine insurance policy prohibiting the insured from giving up a damaged property is','deductible','abandonment','indemnity','compensation','','','a','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:23'),(324,'Insurance is described as a risk','avoidance mechanism','regulating mechanism','transfer mechanism','assessment mechanism','','','c','','wassce','2015',54,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:54'),(325,'A fire insurance policy valued at N= 250,000 is issued at the rate of 0.2%. How much would the premium be, if the policy is granted with 5% long - term agreement discount?','N= 475','N= 500','N= 12,500','N= 13,000','','','a','','wassce','2015',60,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:38'),(326,'What is the full meaning of “NCRIB” in the insurance industry?','National  Council of  Registered Insurance  Brokers','Nigerian  Council of  Registered Insurance  Brokers','Nigerian Corporation of Registered Insurance Brokers','National Corporation of Registered Insurance Brokers','','','b','','wassce','2015',57,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:18'),(327,'Which of the following is not a function of an insurance underwriter?','Determining rates and coverage for the risk','Deciding whether to take the risk','Looking for an insurer to take the risk','Deciding whether to reject the risk','','','a','','wassce','2015',48,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:28'),(328,'The cover that is taken at the option of the motor vehicle owner is','a comprehensive cover','an act only cover','a third party only cover','a special type cover','','','c','','wassce','2015',59,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:51'),(329,'The  sum  insured  for  a  risk  is  N= 150,000  and  was accepted  for  fire  insurance at a rate of  0.25%. How much will the insured pay as a premium?','N= 125','N= 375','N= 500','N= 875','','','b','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:58'),(330,'The amount payable to an insured in the event of fire damage of household items is the','cost of repair','actual cash value','replacement cost','sum insured','','','d','','wassce','2015',57,'Admin','2017-01-09 14:33:35','2020-05-28 21:02:48'),(331,'A motorist travelling from Ghana to Nigeria would be required to obtain one of the following types of motor insurance cover','green card','brown card','yellow card','purple card','','','b','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:56'),(332,'One of the benefits payable under personal accident insurance policy is','retirement benefit','surrender benefit','death benefit','transfer benefit','','','c','','wassce','2015',57,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:09'),(333,'A  trade  group for insurance  companies in  Nigeria is called','Chartered Insurance Institute of Nigeria','National Insurance Commission','Nigerian Corporation of Registered Insurance Brokers','Nigerian Insurers Association','','','d','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:27'),(334,'The process of  assessing  risks  in  insurance  and classifying them according to their degree of insurability so  that  the  appropriate  rate  may  be  assigned  is','inspecting','underwriting','surveying','evaluating','','','d','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:57'),(335,'Who  among  the  following  is  an  employer  of  loss adjuster?','Insurer','Broker','Insured','Agent','','','a','','wassce','2015',57,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:38'),(336,'The meaning of with <em>profit policy</em>  in life assurance is that the sum assured is paid','without profit','with profit','with interest','without interest','','','c','','wassce','2015',64,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:42'),(337,'The  document issued by  the  insurer when there is a change in the particulars of a risk insured is','endorsement','certificate','voucher','policy','','','a','','wassce','2015',52,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:39'),(338,'The amount charged when a ship overstays at the port under a marine contract is','penalty','fine','overcharge','demurrage','','','d','','wassce','2015',53,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:14'),(339,'Which of the following documents forms the basis of a contract in insurance business?','Policy document','Proposal form','Claim form','Discharge form','','','a','','wassce','2015',60,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:25'),(340,'The  difference  between  theft  and burglary insurance lies in evidence of','pilfering  of insured items','removal of insured items by tricks','forceful violent entry or exit affecting insured items','threat leading to loss of insured items','','','c','','wassce','2015',51,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:35'),(341,'The right of choice of option for method of indemnity is exercised by the','insured','insurance broker','insurance consultant','insurer','','','d','','wassce','2015',53,'Admin','2017-01-09 14:33:35','2020-05-28 21:03:30'),(342,'Cover note  in  motor  insurance is issued for a period not exceeding','30 days','60 days','90 days','120 days','','','a','','wassce','2015',52,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:50'),(343,'Which of the following activities is not involved in claims management?','Proof of loss','Particulars of loss','Premium calculation','Primary investigation','','','c','','wassce','2015',49,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:18'),(344,'Life  assurance  contract is useful to a policyholder in the area of','production','protection','industrialization','rehabilitation','','','b','','wassce','2015',60,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:37'),(345,'Which  of  the  following  functions  is  related  to  life assurance contract? Benefits are','determined  on  the  happening  of  insured  event','determined by the indemnity doctrine','determined at the inception of the policy','assessed by the extent of the loss','','','c','','wassce','2015',61,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:32'),(346,'The saving element in a permanent life assurance policy which represent the policyholder’s interest in the policy is','surrender value','cash value','sum assured','residual value','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:51'),(347,'Which of the following is a duty of an insured in an insurance contract?','Concealment of facts','Exposure of facts','Disclosure of facts','Acceptance of facts','','','c','','wassce','2015',52,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:57'),(348,'The principle of maritime law which makes owners of a ship and cargo share in a loss incurred voluntarily is','special average','general average','specific average','particular average','','','b','','wassce','2015',53,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:39'),(349,'Which of the following factors limits indemnity?','Cession','Re - insurance','Excess','Co - insurance','','','b','','wassce','2015',53,'Admin','2017-01-09 14:33:36','2020-05-28 21:02:32'),(350,'A  temporary  insurance  document  providing  coverage until a permanent policy is issued is','proposal form','cover note','policy document','insurance certificate','','','b','','wassce','2015',56,'Admin','2017-01-09 14:33:36','2020-05-28 21:03:40');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `irk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `irk` VALUES (1,'The reason Mecca suwar lay emphasis on oneness of Allah is because  ','it was the only way to call Mecca to Islam  ','it is the only article of faith  ','it is the only article of peace between Prophet Muhammad and the Mecca  ','the pre-Islamic Mecca were idolatrous ','','','d','','post-utme-aaua','2012',736,'Admin','0000-00-00 00:00:00','2020-06-06 13:29:01'),(2,'Uthman B. Affan reigned between  ','644 and 656 ','657 and 688  ','655 and 657  ','644 and 655  ','','','a','','post-utme-aaua','2012',774,'Admin','0000-00-00 00:00:00','2020-06-25 23:14:59'),(3,'The final and total prohibition of intoxicants is contained in Surah  ','al-Baqarah  ','an-Nisa  ','al-Maidah  ','al- I a  ','','','c','','post-utme-aaua','2012',749,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(4,'Hajjatul Wada of Prophet Muhammad was delivered in ','632','630','628','631','','','a','','post-utme-aaua','2012',755,'Admin','0000-00-00 00:00:00','2020-07-06 23:20:52'),(5,'Suratul-Kawthar was revealed following the _____ of the Mecca  ','uproar  ','insinuation  ','intolerance  ','resistance  ','','','b','','post-utme-aaua','2012',760,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(6,'Zakat is paid on the following except____  ','cash  ','cattle  ','slaves','all of the above ','','','c','','post-utme-aaua','2012',744,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(7,'The i itial suggestio  to o pile the Qu a   as aised   ','A u Bak  ','Umar B. Khattab  ','Zaid B. Thabit  ','Uthman B. Affan  ','','','b','','post-utme-aaua','2012',761,'Admin','0000-00-00 00:00:00','2020-06-06 13:39:22'),(8,'One importance of wearing the Ihram during Hajj is_____  ','it directs the mind of all Muslims towards Allah  ','it purifies the Muslims  ','it makes all Muslims equal  ','it distinguishes pilgrims by country of origin  ','','','c','','post-utme-aaua','2012',761,'Admin','0000-00-00 00:00:00','2020-06-26 10:34:52'),(9,'The reason for the declaration of Jihad against the Islamic state of Borno by Muhammad Bello wasbecause of the people','rebellion  ','extremism ','syncretism  ','fundamentalism ','','','c','','post-utme-aaua','2012',750,'Admin','0000-00-00 00:00:00','2020-06-06 13:43:36'),(10,'The oa d gi e  to P ophet Muhad is the first  e elatio  of the Qu a  tells us about ____ ','education  ','prosperity  ','worship  ','Allah ','','','a','','post-utme-aaua','2012',748,'Admin','0000-00-00 00:00:00','2020-06-06 13:39:22'),(11,'?eek k o ledge, e e  u to Chi a   ea s ____ ','go to China to seek knowledge  ','knowledge is found in China  ','go at any length to seek knowledge  ','knowledge must be sought in china   ','','','c','','post-utme-aaua','2012',765,'Admin','0000-00-00 00:00:00','2020-06-06 13:43:36'),(12,'The spokesman of the Muslims before Emperor Negus was ','Jaafar  ','Al-As  ','Abu Musa  ','Masa Musa  ','','','a','','post-utme-aaua','2012',736,'Admin','0000-00-00 00:00:00','2020-06-25 23:14:58'),(13,'The first place of Muslims ig atio   as ___','Abyssinia  ','Taif  ','Medina  ','Yathrib ','','','b','','post-utme-aaua','2012',744,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21'),(14,'Al-Tawrat was revealed to  ','Isa  ','Musa  ','Prophet Muhammad  ','Idris ','','','b','','post-utme-aaua','2012',741,'Admin','0000-00-00 00:00:00','2020-06-06 09:25:49'),(15,'Literally, Boko Haram means  ','book is forbidden  ','education is forbidden  ','Western education is forbidden  ','school is forbidden  ','','','c','','post-utme-aaua','2012',727,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(16,'Wudu means  ','ablution','dry ablution  ','water ablution  ','wet ablution ','','','b','','post-utme-aaua','2012',764,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21'),(17,'If Alhaji Musa Ayuba invested N10, 000: 00 in a business and made a profit of N2, 000: 00 at the','N215.00','N100: 00  ','N50:00  ','N1000:00 ','','','c','','post-utme-aaua','2012',759,'Admin','0000-00-00 00:00:00','2020-06-25 23:14:58'),(18,'Ibadah refers to  ','worship of ancestors  ','worship of the Prophet  ','worship of the caliphs ','worship of Allah  ','','','d','','post-utme-aaua','2012',775,'Admin','0000-00-00 00:00:00','2020-06-06 13:39:22'),(19,'Shirk means ____  ','monotheism ','polytheism','henotheism  ','syncretism ','','','b','','post-utme-aaua','2012',731,'Admin','0000-00-00 00:00:00','2020-06-05 22:12:32'),(20,'Which one of the following is not associated with shirk _____ ','idol worship  ','trinity  ','monotheism  ','henotheism ','','','c','','post-utme-aaua','2012',746,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(21,'If a Muslim prays five times daily on a regular basis, how many times will he have prayed a regular ','1825','1835','1835','1845','','','a','','post-utme-aaua','2012',715,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21'),(22,'Lakum dinukum wa Liya dinin means  ','religion is good  ','to you is my religion and to me yours  ','to you is your religion and to me is my religion ','my religion is better than yours  ','','','c','','post-utme-aaua','2012',725,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(23,'According to Islamic traditions, inability to marriage may rise as a consequence of   ','defects in sex organs  ','permanent illness  ','impotence  ','all of the above  ','','','d','','post-utme-aaua','2012',726,'Admin','0000-00-00 00:00:00','2020-06-06 13:43:36'),(24,'Walam yakun lahu Kufuwan Ahadun is_____  ','the second ayat of the 112th surah  ','sixth ayat of the 111th surah  ','fourth ayat of the 112th surah ','seventh ayat of the 114th surah  ','','','c','','post-utme-aaua','2012',776,'Admin','0000-00-00 00:00:00','2020-07-01 04:51:36'),(25,'The main message of ayay Amanar-Rasul is  ','the significance of knowledge  ','the articles of faith  ','the pillars of Islam  ','payment of Zakat ','','','b','','post-utme-aaua','2012',734,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21'),(26,'Talaq al-','irrevocable ','revocable  ','impermissible  ','detestable ','','','a','','post-utme-aaua','2012',730,'Admin','0000-00-00 00:00:00','2020-06-06 00:48:19'),(27,'The word Hafizi in Q.  82: 10 means  ','angels  ','jinns  ','spirits ','man  ','','','a','','post-utme-aaua','2012',736,'Admin','0000-00-00 00:00:00','2020-06-30 13:21:41'),(28,'When Prophet Muhammad got to Yathrib, he had to first and foremost settle the feud between  ','Aws and Khazraj  ','banu Nadir and Mecca  ','Mecca and Medina ','Aws and Nadir  ','','','a','','post-utme-aaua','2012',741,'Admin','0000-00-00 00:00:00','2020-06-06 13:39:22'),(29,'The prophet admonishes that if an abomination is found, a true Muslim should at least  ','hate if from his heart  ','change it with his hands immediately  ','condemn it publicly  ','declare Jihad  ','','','a','','post-utme-aaua','2012',741,'Admin','0000-00-00 00:00:00','2020-06-06 13:49:21'),(30,'The reason Q.  2: 219 forbids wine ad gambling is because  ','they lead one to greater sin than gain  ','they lead to poverty ultimately ','they lead to extravagance and intoxication  ','they make a Muslim to abandon religion  ','','','a','','post-utme-aaua','2012',747,'Admin','0000-00-00 00:00:00','2020-06-06 13:51:21');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `mathematics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `mathematics` VALUES (1,'A regular polygon has each of it angles at 160. What is the number of sides of the polygon? ','36','9','18','20','','','c','','post-utme','2006',1045,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:10'),(2,'A girl walks 30m from a point P on  a bearing of 040 to a point Q. she   then walks 30m on a bearing of 140 to a point R. the bearing of R from P is ','90','50 ','45','40','','','a','','post-utme','2006',1029,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(3,'How many different three digit numbers can be formed using the integers 1 to 6 if no integer 1 to 6 if no integer occurs twice in a number? ','720','1260','2520','5040','','','b','','post-utme','2006',1024,'Admin','0000-00-00 00:00:00','2020-07-06 02:35:45'),(4,'In how many different ways can the letters of the word GEOLOGY be arranged in order? ','720','1260','2520','5040','','','c','','post-utme','2006',1038,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(5,'A cyclist rode for 30minutes at xhkm/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14   ','x<20  ','x<29  ','x< 28','','','d','','post-utme','2006',1043,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:10'),(6,'A business invested a total of N200,000 in two companies which paid dividends of 5% and 7% respectively. If the received a total of N11, 600 as dividend, how much did he invest at 5% ','N160,000 ','N140,000 ','N120,000 ','N80,000','','','c','','post-utme','2006',1039,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(7,'In a class, 37 students take a least one of chemistry, Economics and Government, 8 students take Chemistry, 19 take Economics and 25 take Government, 12 students take Economics and Government but nobody takes Chemistry and Economics. How many students take both chemistry and Government? ','3','4','5','6','','','a','','post-utme','2006',1054,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:10'),(8,'Solve for p in the following  equation given in base two  11(p+ 110) = 1001p   ','10','11','110','111','','','b','','post-utme','2006',1051,'Admin','0000-00-00 00:00:00','2020-07-05 10:47:45'),(9,'Factorize 16(3x+2y)2-25 (a+2b)2','(12x +8y+5a+10b)(12x+8y-5a-10b)    ','(12x+8y-5a-10b) (12x+8y-5a-10b),    ','20 (3x +2y-a-2b)(3x+2y+a+2b)  ','20(3x+2y+a+2b) (3x+2y+a+2b).','','','a','','post-utme','2006',1034,'Admin','0000-00-00 00:00:00','2020-07-05 21:53:00'),(10,'1.3logx+logy =3. Then, y is  ','(10/x)3 ','(x/10)3  ','(x/10)-3 ','(10/x)1-1/3 ','','','a','','post-utme','2006',1047,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(11,'Z is partly constant and partly varies inversely as the square of d. when d = 1, z = 11 and when d = 2, z = 5. Find the value of z when d = 4.  ','2','3.5','5','5.5','','','b','','post-utme','2006',1012,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(12,'Expand the expression (x2-2x-3)(x2+x+1).  ','x4-4x2-5x-3  ','–x3-4x2+5x-3','x4-x3-4x2-5x-3  ','x4-4x2-5x -3','','','c','','post-utme','2006',1021,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(13,'The indefinite integral of the function f(x) = xcosx for any constant k, is ','–cos + sinx +k,  ','xsinx-cosx,   ','xsinx for any constant k,   ','x+sinx+cosx+k','','','c','','post-utme','2006',987,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(14,'The trigonometric expression cos 2A +sin 2A can be written as    ','cosA (cosA-sinA),    ','Cos2A +sin2A-2sinAcosA,  ','Cos2A + sin2A = Cos2A –sin2A+2sinAcosA','cos2A+sin2A','','','c','','post-utme','2006',1016,'Admin','0000-00-00 00:00:00','2020-07-06 19:37:13'),(15,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is with replacement: ','0.9','1','0.47','0.49','','','d','','post-utme','2006',1024,'Admin','0000-00-00 00:00:00','2020-07-05 07:22:37'),(16,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is without replacement ','0.1','0.47','0.42','0.21','','','b','','post-utme','2006',1093,'Admin','0000-00-00 00:00:00','2020-07-06 21:33:58'),(17,'The interior angles of a pentagon are: 180o, 118o, 78o, 84o and  x. The value of x is: ','80o ','108o  ','120o  ','134o','','','a','','post-utme','2007',1037,'Admin','0000-00-00 00:00:00','2020-07-06 21:00:19'),(18,'All the vertices of an isosceles triangle lie on a circle and each of the base angles  of the triangle is 65o. The angle subtended at the centre of the circle by the base of the triangle is: ','130o  ','115o  ','50o  ','65o','','','c','','post-utme','2007',1022,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(19,'A square tile measures 20cm by 20cm. How many of such tiles will cover a floor measuring 5m by 4m? ','500','400','320','250','','','a','','post-utme','2007',1048,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(20,'The volume of a certain sphere is numerically equal to twice its surface area. The diameter of the sphere is: ','6','9','12','','','','c','','post-utme','2007',1033,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(21,'A bearing of 310o, expressed as a compass bearing is: ','N50oW  ','N40oW  ','S40oW  ','S50oW','','','a','','post-utme','2007',993,'Admin','0000-00-00 00:00:00','2020-07-07 00:23:33'),(22,'Which of the following specified sets of data is not necessarily sufficient for the construction of a triangle? ','three angles  ','two sides and a right angle  ','two sides and an included angle ','three sides','','','a','','post-utme','2007',1057,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(23,'The average age of the three children in a family is 9 years. If the average age of their parent is 39 years, the average age of the whole family is: ','20 years  ','21years  ','24years  ','27years','','','b','','post-utme','2007',984,'Admin','0000-00-00 00:00:00','2020-07-05 22:13:27'),(24,'Evaluate x in base 3 if 41x-22x=17x. ','11','8','12','22','','','d','','post-utme','2007',1123,'Admin','0000-00-00 00:00:00','2020-07-06 19:37:13'),(25,'When the price of egg was raised by N2 an egg, the number of eggs which can be bought for N 120 is reduced by 5. The present price of an egg is ','N 6. ','N 7  ','N 8','N10','','','c','','post-utme','2007',1007,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(26,'How long will take a sum of money invested at 8% simple interest to double the original sum? ','8 years  ','10.5years  ','(1years ','12.5years','','','d','','post-utme','2007',1009,'Admin','0000-00-00 00:00:00','2020-07-06 17:57:16'),(27,'The journey from Lagos to Ibadan usually takes a motorist 1 hour 30 minutes. By increasing his average speed by 20km/hr, the motorist saves 15 minutes. His usual speed, in Km/hr is ','100','90','85','80','','','a','','post-utme','2007',1004,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(28,'The smallest section of a rod which can be cut 36cm in length is','90cm ','180cm ','360cm  ','540cm.','','','b','','post-utme','2007',1007,'Admin','0000-00-00 00:00:00','2020-07-07 00:23:33'),(29,'If x= 0.0012 + 0.00074 + 0.003174, what is the difference between x to 2 decimal places and x to 1 significant figure? ','0.01','0.0051','0.1','0.005','','','d','','post-utme','2007',1031,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(30,'In a survey of 100 students in an institution, 80 students speak Yoruba, 22 speak Igbo, while 6 speak neither Igbo nor Yoruba. How many students speak Yoruba and Igbo? ','96','8','64','12','','','b','','post-utme','2007',1042,'Admin','0000-00-00 00:00:00','2020-07-06 10:31:55'),(31,'The expression a 3 + b 3 is equal  to ','(a2 +b)(a-ab+b2 )','(a+b)(a2 –ab+b2 )  ','(a-b2)(a2-  ab+b)','(a­-b)(a2+ab+b2)','','','b','','post-utme','2008',1077,'Admin','0000-00-00 00:00:00','2020-07-07 00:32:25'),(32,'Factorize 16(3x +2y)2 -25(a+2b)2  ','(12x + 8y -5a-10b)(12x+8y-5a-10b)','20(3x +2y-a-2b)(3x+2y+a+1-2b) ','(12x +8y+5a+10b)(12x +8y-5a-10b)','20(3x +2y+ a+2b)(3x + 2y+a+2b)','','','a','','post-utme','2008',987,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:10'),(33,'A cone has base radius 4cm and  height 3cm. The area of its curved surface is','12pcm2     ','20pcm2','24pcm2 ','15cm2','','','b','','post-utme','2008',1011,'Admin','0000-00-00 00:00:00','2020-07-06 10:31:55'),(34,'A. cylinder has height 4cm and base radius 5cm.its volume to 3 significant figure is  ','314.2cm2 ','31.42 cm2 ','251 4cm2 ','251cm2','','','b','','post-utme','2008',1055,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(35,'A cyclist rode for 30minutes at xkm/hr and due to a breakdown, he had to push the bike for 2hrs at (x – 5) km/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14','x<29','x<28','x<20','','','c','','post-utme','2008',1037,'Admin','0000-00-00 00:00:00','2020-07-06 21:00:19'),(36,'The expression ax2 + bx takes the value 6 when x = 1 and 10 when x = 2. Find its value when  x = 5       ','10','12','6','.-10','','','a','','post-utme','2008',1058,'Admin','0000-00-00 00:00:00','2020-07-07 00:23:33'),(37,'Dividing 2x3 – x2 – 5x + 1 by x  + 3 gives the remainder ','.-3','47','61','-47','','','d','','post-utme','2008',1047,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(38,'The difference of two numbers is 10, while their product is 39. Find these numbers','– 3 and 10 or 13 and 10,','3 and – 10 or 3 and 13,  ','3 and – 3 or 3 and 13,     ',' – 3 and – 13 or   13 and  3 ','','','d','','post-utme','2008',1053,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:10'),(39,'The average age of x pupils in a class is 14 years 2 months. A pupils of 15years 2 months joins the class and  the average age is increased  by one month. Find x.      ','12, ',' 6, ','11,','14,','','','c','','post-utme','2008',1097,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(40,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. 13. How many learn both languages? ','60','45','15','120','','','c','','post-utme','2008',982,'Admin','0000-00-00 00:00:00','2020-07-05 16:28:07'),(41,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. How many learn Igbo only?   ','45','30','15','60','','','a','','post-utme','2008',1036,'Admin','0000-00-00 00:00:00','2020-07-07 00:32:25'),(42,'If the distance covered by a body in time t seconds is s = t2 - 6t2  - 5t, what is its initial velocity?  ','0ms-1    ','-4 ms-1 ','(13t2  - 12t + 5) ms-1   ','5ms-1 ','','','d','','post-utme','2008',1078,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(43,'The trigonometric expression cos2A + sin 2A can be written as:  ','cosA(cosA + sinA)  ','B.cos2A + sin2A – 2sinAcosA,  ','2sinAcosA + cos2A + sin2A,  ','D.cos2A +sinA  – 2sinAcosA','','','c','','post-utme','2008',970,'Admin','0000-00-00 00:00:00','2020-07-07 00:23:33'),(44,'With replacement ','0.9,','1, ','0.4,','0.49','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','d','','post-utme','2008',997,'Admin','0000-00-00 00:00:00','2020-07-07 00:23:33'),(45,'Without replacement ','0.1, ','0.47, ','0.42,   ','0.21','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','b','','post-utme','2008',1098,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(46,'The fair coins are tossed simultaneously. What is the probability of obtaining at least 1 tail turns up? ','1/4','3/4','1/2','1','','','b','','post-utme','2008',1052,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(47,'A regular polygon has each of it angles as 1600. What is the number of sides of the polygon?  ','18,    ','36,       ','9,     ','20','','','a','','post-utme','2008',1021,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(48,'One angle of an octagon is 1000 while the other sides are equal. Find each of these exterior angles. ','800,','600,','1400,           ','400,   ','','','d','','post-utme','2008',1027,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(49,'A sector circle of radius 7.2cm which subtends an angle of 3000 at the centre is used to   form a cone. What is the radius of the base of the cone?. ','6cm ','7cm ','8cm    ','9cm      ','','','a','','post-utme','2009',967,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(50,'If 32y – 6(3y) = 27, find y ','3','-1','2','-3','','','c','','post-utme','2009',1023,'Admin','0000-00-00 00:00:00','2020-07-05 22:13:27'),(51,'An (n-2)2 sided figure has n diagonal, find the number n of diagonal for a 25 sided Figure   ','8','7','6','10','','','b','','post-utme','2009',1059,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(52,'A sum of money was invested at 8% per annum simple interest. If after 4 years, the   money became ','N180 ','N 165 ','N15   ','N 200','','','d','','post-utme','2009',1085,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(53,'Two fair dice are rolled. What is the probability that both show up the same number of point?','1/36 ','7/36 ','½ ','1/6','','','d','','post-utme','2009',1051,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(54,'Find the probability of selecting a figure which is parallelogram from a square, a rectangle, a rhombus, a kite and a trapezium  ','3/5 ','2/5 ','1/5 ','1/5 ','','','a','','post-utme','2009',1131,'Admin','0000-00-00 00:00:00','2020-07-07 00:32:25'),(55,'A man kept 6 black, 5 brown and 7 purple shirts in a drawer. What is the probability of his picking a purple shirt with his eyes close ','1/7','7/18 ','11/18 ','7/11','','','b','','post-utme','2009',1025,'Admin','0000-00-00 00:00:00','2020-07-06 19:37:13'),(56,'If P varies inversely as V and V varies directly as R2, find the relationship between P and R given that R = 7 when P = 2 ','P = 98R2 ','PR2 = 98 ','P2R = 89 ','P = 1/98R ','','','b','','post-utme','2009',1134,'Admin','0000-00-00 00:00:00','2020-07-07 00:23:33'),(57,'If 7 and 189 are the first and fourth terms of a geometric progression respectively find the sum of the first three terms of the progression ','182','180','91','63','','','c','','post-utme','2009',1112,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(58,'Find the positive number n such that thrice its square is equal to twelve time the number ','1','4','2','5','','','b','','post-utme','2009',1095,'Admin','0000-00-00 00:00:00','2020-07-05 22:13:27'),(59,'Given a regular hexagon, calculate each interior angle of the hexagon ','60','30','120','15','','','c','','post-utme','2009',1084,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(60,'Factorize 6x2 – 14x – 12 ','2(x + 3)(3x – 2) ','6(x – 2)(x + 1) ','2(x – 3)(3x + 2) ','6(x + 2)(x – 1) ','','','c','','post-utme','2009',1051,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(61,'The value of (0.303)3 – (0.02)3 is ','0.019','0.0019','0.0268','0.000019','','','c','','post-utme','2009',1078,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(62,'What is the product of 27/5 ¸(3)3 and (1/5) ','5','3','2','1','','','c','','post-utme','2009',1065,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(63,'Find the probability that a number selected at random 40 to 50 is a prime number   ','3/11','5/11','5/10','4/10','','','a','','post-utme','2009',1033,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(64,'If the length of the sides of a right angled triangle are (3x + 1)cm, (3x – 1)cm and xcm, what is x ? ','2','6','18','12','','','d','','post-utme','2009',999,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:32'),(65,'A number of pencils were shared out among peter, Paul and Audu in the ratio 2:3:5 respectively. If Peter got 5, how many were shared? ','15','25','30','50','','','b','','post-utme','2009',973,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:10'),(66,'Solve 4x2 +20x -24 =0',' 1, 6',' -1, -6','6, -1','-6, 1','','','d','','post-utme','2013',1044,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(67,'What is the 15th term of the sequence -3, 2,7,…? ','65','66','68','67','','','d','','post-utme','2013',1014,'Admin','0000-00-00 00:00:00','2020-07-06 10:31:55'),(68,'What is the remainder when x3 +5x2-6x+1 is divided by x-1? ','-1','2','-2','1','','','d','','post-utme','2013',1038,'Admin','0000-00-00 00:00:00','2020-07-06 19:37:13'),(69,'If  are the roots of equation 6 +5x –x2 =0, find  x','11','-11','1','-1','','','b','','post-utme','2013',1057,'Admin','0000-00-00 00:00:00','2020-07-06 10:31:55'),(70,'Solve the equation  = 25x+4 ','-4, 2 ',' -4,-2 ','4, -2','4, 2','','','a','','post-utme','2013',999,'Admin','0000-00-00 00:00:00','2020-07-07 07:47:12'),(71,'What is the coordinate of centre of the circle X2+y2+2x-4y =10?  ','(-1,-2)','( 1, 2)',' (-1, 2) ',' (1, -2)','','','d','','post-utme','2013',974,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(72,'Solve the equation 3x+1 = 271-x  ','1/2','-1/2','3/4','-3/4','','','a','','post-utme','2013',1053,'Admin','0000-00-00 00:00:00','2020-07-06 23:58:10'),(73,'Given f(x) =3+x and g(x) =3-x, find g (f(x))','6','x','-x','0','','','b','','post-utme','2013',981,'Admin','0000-00-00 00:00:00','2020-07-07 07:40:22'),(74,'Differentiate sin (2x-5) with respect to x. ','cos (2x-5)','–cos (2x-5)   ',' 2cos (2x-5)','-2cos (2x-5)','','','c','','post-utme','2013',1058,'Admin','0000-00-00 00:00:00','2020-07-06 19:37:13');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `naijafb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `naijafb` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'What is the full meaning of APC','All progress Congress','Alliance progress Congress','All progressive Congress','Alliance progressive Congress','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full meaning of PDP','Power for the People','People Democracy Party','People Democratic Party','Share the money sharp sharp','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'How old was President Buhari when he won 2015 presidential general election','70','72','73','74','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'About how many million votes did General Buhari use to deaf President Goodluck Jonathan?','10.1 Million','5.1 Million','2.1 million','1.1 million','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Who was the spoken man of APC during the presidential elections?','Liel Mohammed','Lia Mohammed','Bello Mohammed','Adams Mohammed','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who was the spoken man of PDP during the presidential elections?','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'President Buhari is from what state?','Kano','Kaduna','Katsina','Jigawa','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many presidential elections did General Buhari contested in before wining in2015?','3','5','4','2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'The only woman that contested in 2015 presidential election was from which party','ANPP','CPC','AA','KOWA','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'What is the name of first female Nigerian to run for office as a democratic president?','Funmilayo Ransome Kuti','Remi Sonaiya','Oby Ezekweslli','Bola Ara','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'2015 general election INEC chairman was','Attahiru Hammed Jega','Attahiru Mohammed Jega','Attahiru Muhammadu Jega','Atta Muhammadu Jega','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'The official release of 2015 presidential general election results was on','March 30th','March 31th','March 29th','April 4th','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'2015 general presidential election took place on','14-Mar','28-Mar','1-Apr','14-Feb','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' The spokesperson for President Goodluck Jonathan?s during 2015 election was','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which country won 2015 FIFA U-17 world cup','Mali','Nigeria','Brazi','Spain','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' Nigeria became a republic in','1960','1962','1963','1965','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What day is regarded as democracy day?','27-May','1-May','29-May','25-May','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What day is regarded as workers? day?','27-May','1-May','29-May','25-May','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' What day is regarded as children?s day?','27-May','1-May','29-May','25-May','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,' In year 2015, Nigeria as an independent state will be how old','50','53','54','55','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' What are the colors of Nigeria Flag?','Green white green','Green and white','Green , green white','Green brown green','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,' Nigeria commercial capital is','Abuja','Port Harcourt','Lagos','Kano','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' How many states are in Nigeria?','37','36','35','34','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' Which of the following is not a minister of President Buhari administration 2015','Babatunde fashola','Chris Ngige','Kayode Fayemi','Solomon David','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' How many ministers were appointed by President Buhari Administration?','30','37','32','36','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Which Nigeria army office allegedly looted 32 billion naira?','Gen. Sambo Dasuki','Col. Sambo Dasuki','Major. Sambo Dasuki','Officer Sambo Dasuki','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' The full meaning of EFCC is','Economic and Financial Crimes Conduct','Economic and Finances Crimes Commission','Economic and Financial Crimes Commotion','Economic and Financial Crimes Commission','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' What is the Capital of Jigawa State?','Bornu','Maiduguri','Dutse','Makurdi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' What is the Capital of Benue State?','Bornu','Maiduguri','Dutse','Makurdi','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' What is the Capital of Zamfara State?','Bornu','Maiduguri','Gusau','Makudi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `physics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `physics` VALUES (1,'A 70kg man ascends a flight of stairs of height 4m in 7s. The power expended by the man is;','40W ','100W ','280W ','400W','','','a','','post-utme','2006',3823,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(2,'A body accelerates uniformly from rest at 6ms-2 for 8 seconds and then decelerates uniformly to rest in the next 5 seconds. The magnitude of the deceleration is: ','9.6ms-2 ','48 ms-2 ',' 24 ms-2 ','39.2 ms-2','','','a','','post-utme','2006',3755,'Admin','0000-00-00 00:00:00','2020-07-06 09:20:09'),(3,'A nail is pulled from a wall with a string tied to the nail. If the string is inclined at an angle of 30oC to the wall and the tension in the string is 50N, the effective force used in pulling the nail is: ','25N ','25√3 N ','50N ','50√3N','','','a','','post-utme','2006',3710,'Admin','0000-00-00 00:00:00','2020-07-05 07:35:21'),(4,'If M and R are the mass and radius of the earth respectively and G is the universal gravitational constant, the earth’s gravitational potential at an altitude H above the ground level is: ','A.-GM/H ','–GM/(R+H) ','C. -GM/2H ','D. –GM/(R-H)','','','b','','post-utme','2006',3782,'Admin','0000-00-00 00:00:00','2020-07-04 15:58:35'),(5,'Which of the following statements is not true? ','as the slope of an incline plane increases, the velocity ratio decreases, ','the efficiency of an incline plane decreases as the slope increases ','the effort required to push a given load up an incline plane increases as the slope increases','The mechanical advantage of smooth incline plane depends on the ratio of the length to the height of the plane.','','','d','','post-utme','2006',3715,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(6,'The ice and steam point of a thermometer are 20mm and 100mm respectively: A temperature of 75oC correspond to Ymm on the thermometer. What is Y? ','100mm ','70mm ','80mm ','60mm','','','c','','post-utme','2006',3729,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(7,'  An electric kettle with negligible heat capacity is rated at 2000W, if 2.0kg of water is put in it, how long will it take temperature of water to rise from 20oC to 100oC? (specific heat capacity of water = 4200J/Kg-1K-1) ','336s ','240s ',' 168s ','84s','','','a','','post-utme','2006',3721,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(8,' A quantity of ice –10oc is heated until temperature of heating vessel is 90oc. Which of the following constant is NOT required to determine the quantity of heat supplied to the vessel? ','Specific latent heat of vaporization ','specific heat capacity of ice ','specific latent heat of fusion ','specific heat capacity of water','','','a','','post-utme','2006',3729,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(9,'The scent from a jar of perfume open move through the air molecules by ','evaporation ','osmosis ','diffusion ','Convection','','','c','','post-utme','2006',3881,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(10,'  A convex lens of focal length 10.0cm is used to form a real image which is half the size of the object. How far from the object is the image? ','45cm ','30cm ','15cm ','20cm','','','c','','post-utme','2006',3714,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(11,'An object of height 3.00cm is placed 10cm from a biconvex lens of 15cm, the image of the object is ','real and 3.00cm tall ','virtual and 3.00cm tall ',' virtual and 9.00cm tall ','real and 9.00cm tall','','','c','','post-utme','2006',3768,'Admin','0000-00-00 00:00:00','2020-07-05 14:30:11'),(12,'The most suitable type of mirror used for the construction of search light is the: ','concave mirror ','Convex mirror ','Spherical mirror ','Parabolic Mirror','','','d','','post-utme','2006',3812,'Admin','0000-00-00 00:00:00','2020-07-02 15:52:12'),(13,'Light wave and ripples of water are similar because both','are longitudinal waves ','have the same velocity ','can be diffracted and refracted ','have the same frequency ','','','c','','post-utme','2006',3832,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(14,'Three 4Ω resistors were connected in series by Tola, while Ade connected the ','1:02','1:09','1:10','1:15','','','b','','post-utme','2006',3808,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:33'),(15,'A coil of copper wire of N turns is kept rotating between the poles of a magnet  such that the magnetic flux linking the coil changes continuously. Which of the  following statements is TRUE? ','An e.m.f is induced in the coil such that when  the change of flux is positive the e.m.f is positive, and when the change of flux is negative the e.m.f is negative. ','An e.m.f is induced in the coil whose magnitude  is inversely proportional to both the number of turns in the coil and the rate of  change of magnetic flux ','. An e.m.f is set up in the permanent magnet which  reduces the flux in the coil to zero ','A current flows in the coil and e.m.f is set  up proportional to both the rate of change of the flux and the number of turns','','','d','','post-utme','2006',3879,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(16,'The principle of operation of an induction coil is based on ','Ohm’s law ','Ampere’s Law ','Faraday’s Law ','Coulomb’s Law','','','c','','post-utme','2006',3781,'Admin','0000-00-00 00:00:00','2020-07-05 22:22:09'),(17,'Which of the following radiations cannot be deflected by an electric field or ','(i) and (ii) only ','(ii) only ','(iii) and (iv) only ','(i) and (iii) only','','','c','','post-utme','2006',3759,'Admin','0000-00-00 00:00:00','2020-06-30 10:03:52'),(18,'The half-life of a radioactive element is 9 days. What fraction of atoms has decayed in 36 days? ','16-Jan','¼ ',' ½ ','15/16','','','d','','post-utme','2006',3733,'Admin','0000-00-00 00:00:00','2020-07-05 22:22:09'),(19,'What is the dimension of pressure? ','ML-1T-2 ','MLT-2 ','ML2T-3 ','ML-3','','','a','','post-utme','2007',3789,'Admin','0000-00-00 00:00:00','2020-07-05 21:51:33'),(20,'Calculate the length of a displaced pendulum bob that passes its lowest point twice every second. [g=10ms-1] ','.100m ','0.253m ','0.450m ','0.58m','','','b','','post-utme','2007',3739,'Admin','0000-00-00 00:00:00','2020-07-05 07:35:21'),(21,'When a ball rolls on a  smooth level ground, the motion of its centre is ','translational ','Random ','Oscillatory ','Rotational','','','a','','post-utme','2007',3850,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(22,'A vehicle of mass m is driven by an engine of power P from rest. Find the minimum time it will take to acquire a speed v. ','mv2/p ','mv2/2p ','mv/p ','mv/2p','','','b','','post-utme','2007',3735,'Admin','0000-00-00 00:00:00','2020-07-05 10:49:51'),(23,'A box of mass 40kg is being dragged  along by the rope inclined at 60o to the horizontal. The frictional force between the box and the floor is 100N and the tension on the rope is 300N. How much work is done in dragging the box through a distance of 4m? ','680J ','200J ','100J ','400J','','','c','','post-utme','2007',3806,'Admin','0000-00-00 00:00:00','2020-07-05 21:51:33'),(24,'A body is projected from the earth’s surface with the hope of letting it escape from the earth gravitational field. What is the minimum escape velocity?  [Earth’s radius = 6.4 x 103km, g = 10 ms-2]','11.3kms-1 ','13.3kms-1 ','12.3kms-1 ','14.3kms-1 ','','','a','','post-utme','2007',3742,'Admin','0000-00-00 00:00:00','2020-07-05 22:22:09'),(25,'A uniform rod PQ of mass 2kg and length of 1m is pivoted at the end P, if a load of 14N is placed at the centre, find the force that should be applied vertically upwards at Q to maintain the rod in equilibrium ','7N ','28N ','68N ','17N','','','d','','post-utme','2007',3755,'Admin','0000-00-00 00:00:00','2020-07-04 15:58:35'),(26,'The energy contained in wire when it is extended by 0.02m by a force 500N is ','104J ','103J ','10J ','5J','','','d','','post-utme','2007',3857,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(27,'What is the acceleration due to gravity ‘g’ on the moon, if ‘g’ is   10ms-2 on the earth?','0.74ms-2 ','0.1ms-2 ','10.0 ms-2 ','1.67 ms-2','','','c','','post-utme','2007',3768,'Admin','0000-00-00 00:00:00','2020-07-05 07:06:45'),(28,'A 5kg block is released from rest on a smooth plane inclined at an angle of 30o to the horizontal. What is the acceleration down the plane?  [ g = 10ms-2]','5.0 ms-2 ',' 8.7 ms-2 ','25.0 ms-2 ','5.8 ms-2   ','','','a','','post-utme','2007',3900,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(29,'A rectangular metal block of volume 10-6m3 at 273K is heated to 573K, if the coefficient of linear expansion is 1.2 x 10-5K-1, the percentage change of its volume is ','1.50%','1.10%','0.10%','0.40%','','','b','','post-utme','2007',3715,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(30,'A temperature scale has a lower fixed point of 40mm and an upper fixed point of 200mm. What is the reading on this scale when the temperature reads 60oc? ','136.omm ','33.3mm ','96.0mm ','36.0mm','','','a','','post-utme','2007',3780,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(31,'A 500kg car was initially at rest travelled with an acceleration of 5ms-2, what is its kinetic energy after 4s ','2.5 x 103J ','105J ','5 x 103J ','5 x 105J','','','b','','post-utme','2007',3750,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:33'),(32,'The temperature at which the water vapour in the air saturates the air and begins to condense is','melting point ','triple point ','dew point ','melting point','','','c','','post-utme','2007',3739,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(33,'The period of a simple pendulum will increase by what factor of its extensible length increased by a factor of four ','2','4','2','¼','','','c','','post-utme','2007',3825,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(34,'An air column 10cm in length is trapped into the sealed end of a capillary tube by a 15cm column of mercury with the tube held vertically. On inverting the tube, the air column becomes 15cm long, what is the atmospheric pressure during the experiment? ','76cm ','75cm ','60cm ','70cm','','','b','','post-utme','2007',3726,'Admin','0000-00-00 00:00:00','2020-07-04 15:58:35'),(35,'An electric cell has an internal resistance of 2Ω. A current of 0.5A was measured when a resistor of resistance 5Ω was connected across it. Determine the electromotive force of the cell','3.5V ','2.5V ','4.5V ','2.35V','','','a','','post-utme','2007',3876,'Admin','0000-00-00 00:00:00','2020-07-06 12:39:16'),(36,'The speed of light in air is 3 x 108ms-1. If the refractive index of light from air to water is 4/3, calculate the speed of light in water ','2.25 x 108ms-2 ','2.25ms-1 ','4.00ms-1 ','4.33ms-1','','','c','','post-utme','2007',3762,'Admin','0000-00-00 00:00:00','2020-07-05 10:39:31'),(37,'It is known that an atomic nucleus comprises of positive charged protons. Which of the following also exist in the nucleus? ','a beta particle ','an Alpha particle ','A neutron ','An electron','','','c','','post-utme','2007',3801,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(38,'The silver wall of a vacuum flask prevents heat loss due to ','conduction ','Convection ','Radiation ','Diffraction','','','c','','post-utme','2007',3740,'Admin','0000-00-00 00:00:00','2020-07-05 07:06:45'),(39,'The electromagnetic waves that are sensitive to temperature changes are','ultra-violet rays ','Gamma rays ','infrared-rays ','X-rays','','','c','','post-utme','2007',3688,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(40,'Under constant tension and constant mass per unit length, the note produced by a plucked string is 500Hz when the length of the string is 0.90m, at what length is the frequency 150Hz?','6m ','3m ','5m ','4m','','','b','','post-utme','2007',3832,'Admin','0000-00-00 00:00:00','2020-07-05 22:22:09'),(41,'Two bodies P and Q are projected on the same horizontal plane, with the same initial speed but at different angles of 30o and 60o respectively to the horizontal. Neglecting air resistance, what is the ratio of range of P to that of Q? ','1:01','1:√3 ','√3:1 ','1:02','','','a','','post-utme','2007',3780,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:33'),(42,'A capacity of 2.0 x 10-11F and an inductor are joined in series. The value of the inductance that will give the circuit a resonant frequency of 200KHz is ','1/16H ','1/8H ','1/64H ','1/32H','','','d','','post-utme','2007',3826,'Admin','0000-00-00 00:00:00','2020-07-05 07:06:45'),(43,'Which of these is not a fundamental S.I unit ','Ampere ','Kelvin ','Seconds ','Radians','','','d','','post-utme','2009',3806,'Admin','0000-00-00 00:00:00','2020-07-05 22:22:09'),(44,'If two masses 40g and 60g respectively, are attached firmly to end of a light metre rule, what is the centre of gravity of the system? ','at the mid point of the metre rule ','40cm from the lighter mass ','40cm from the heavier masses ','60cm from the heavier masses ','','','c','','post-utme','2009',3890,'Admin','0000-00-00 00:00:00','2020-07-05 06:01:32'),(45,'To find the dept of the sea, a ship send out a second waves and an echo after one second. If the velocity of sound in water is 1500m/s, what is the depth of the sea ','0.75km ','1.50km ','2.20km ','3.00km ','','','a','','post-utme','2009',3637,'Admin','0000-00-00 00:00:00','2020-07-06 09:20:07'),(46,'A machine has a velocity ratio of 5, if it requires a 50kg weight to overcome 200kg weight, the efficiency is? ','4%','5%','40%','80%','','','d','','post-utme','2009',3777,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(47,'If the force on a charge of 0.2 Coulomb in an electric field is 4N, then electric intensity of the field is ','0.8','0.8N/C  ','20.0 N/C ','4.2 N/C ','','','c','','post-utme','2009',3754,'Admin','0000-00-00 00:00:00','2020-07-05 07:35:21'),(48,'The resistance of a wire depends on ','the length of the wire ','the diameter of the wire ','the temperature of the wire ','All of the above','','','d','','post-utme','2009',3870,'Admin','0000-00-00 00:00:00','2020-07-06 09:21:58'),(49,'Which of these is not contained in a dry cell? ','carbon rod ','paste of magnesium dioxide ','paste of ammonium chloride ','zinc case ','','','c','','post-utme','2009',3846,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:32'),(50,'When a yellow card is observed through a blue glass, the card would appear as ','black ','green ','red ','white ','','','a','','post-utme','2009',3840,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(51,'A devise that converts sound energy into electrical energy is ','the horn of a motor car ','An AC generator ','A microphone ','Telephone earpiece ','','','c','','post-utme','2009',3770,'Admin','0000-00-00 00:00:00','2020-07-05 12:56:06'),(52,'Radio waves have the velocity of 3 x 108ms-1. If a radio station sends out a broadcast on a frequency 800kHz, what is the wavelength of the broadcast? ','375.0m ','267.0m ','240.0m ','37.5m ','','','a','','post-utme','2009',3852,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43'),(53,'The mode of heat transfer which does not require material medium is','conduction ','radiation ','convection ','propagation','','','b','','post-utme','2009',3766,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(54,'The height at which the atmosphere ceases to exist is about 80km, if the atmosphere pressure on the ground level is 760mmHg, the pressure at height of 20km above the ground is ','380mmHg ','570mmHg ','190mmHg ','480mmHg','','','c','','post-utme','2009',3740,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(55,'A simple pendulum 0.6 long has a period of 1.55, what is the period of a similar pendulum 0.4 long in the same direction ','1.4 √1/3s ','1.5 √1/3s ','2.25s ','None of the above','','','d','','post-utme','2009',3734,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(56,'Which of the following  is common to evaporation and boiling, they ','take place at any temperature ','are surface phenomena ','involve change of state ','take place at a definite pressure ','','','b','','post-utme','2009',3797,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(57,'A house hold refrigerator is rated 200 watts. If electricity cost 5k per Kwh, what is the cost of operating it for 20 days ','N4.80  ','N48.00 ','N480.00 ','N4800.00 ','','','a','','post-utme','2009',3848,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(58,'The resistance of a 5m uniform wire of cross sectional area of 0.2 x 106m2 is 0.45. What is the resistivity of the material of the wire ','1.10 x 105 ohms ','4.25 x106Ωm ','2.40 x 107Ωm ','1.70 x 108Ωm ','','','a','','post-utme','2009',3814,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(59,'Which of the following instruments has a pure tone? ','guitar ','Vibrating String ','Turning forks ','Screen ','','','c','','post-utme','2009',3815,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(60,'Four lenses are being considered for use as a microscope object. Which of the following focal length is most suitable ','-5mm ','+5mm ','5cm ','+5cm ','','','b','','post-utme','2009',3709,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(61,'The product PV where P is pressure and V is a volume has the same unit as ','force ','power ','energy ','acceleration ','','','c','','post-utme','2009',3865,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(62,'The force with which an object is attracted to the earth is called ','acceleration ','mass ','gravity ','weight','','','d','','post-utme','2009',3775,'Admin','0000-00-00 00:00:00','2020-07-05 22:22:09'),(63,'The refractive index of a liquid is 1.5, if the velocity of light in a vacuum is 3.0 x 108ms-1, the velocity of light in the liquid is ','1.5 x 108ms-2 ','2.0 x 108ms-1 ','3.1 x 108ms-1','4.5 x 108ms-1 ','','','d','','post-utme','2009',3726,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(64,'A train has an initial velocity of 44m/s and an acceleration of -4m/s2 what is its velocity after 10seconds? ','2m/s ','4m/s ','8m/s ','12m/s ','','','b','','post-utme','2009',3789,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(65,'A man of mass 50kg ascends a flight of stair 5m high in 5 seconds. If acceleration due to gravity is 10ms-2 the power expanded is ','100W ','300W ','250W ','500W','','','d','','post-utme','2009',3869,'Admin','0000-00-00 00:00:00','2020-07-06 03:41:44'),(66,'Two strings of the same length and under the same tension give notes of frequency in the ratio 4:1, the masses of the string are in the ratio of ','2:01','1:02','1:04','1:16','','','d','','post-utme','2009',3724,'Admin','0000-00-00 00:00:00','2020-07-06 12:39:16'),(67,'Which of the following phenomena cannot be explained by the molecular theory of matter? ','evaporation ','expansion ','conduction ','radiation','','','d','','post-utme','2010',3757,'Admin','0000-00-00 00:00:00','2020-07-04 15:58:35'),(68,'The most likely measurement of length of an object using a venier caliper is: ','3.0cm ','3.3cm ','3.33cm ','3.333cm','','','b','','post-utme','2010',3903,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(69,'If 21g of alcohol of density 0.7gcm-3 is mixed with 10g of water, what would be the density of the resulting mixture? ','780gcm-3 ','0.78gcm-3 ','30gcm-3 ','10gcm-3','','','c','','post-utme','2010',3806,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(70,' For  a particle having an x co-ordinate that varies in time according to the express ion x = 4t -2t2 The instantaneous velocity for of the particle at t = 2.5s is:','12m/s ','6m/s ','0m/s ','10m/s','','','b','','post-utme','2010',3813,'Admin','0000-00-00 00:00:00','2020-07-05 07:02:05'),(71,'  A long-jumper leaves the ground at an angle of 20o above the horizontal and at speed of 11m/s. How far does it jumps in the horizontal direction? ','0.384m ','7.94m ','8.45m ','5m','','','d','','post-utme','2010',3764,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(72,'A mass of 0.5kg is attached to one end of a helical spring and produces an extension of 2.5cm. The mass now set into vertically oscillation of amplitude 10mm. The period of oscillation is: (g = 10m/s2) ','0.33s ','100s ','200s ','280s','','','a','','post-utme','2010',3747,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(73,'A boat is passing under a bridge. The deck of the boat is 15m below the bridge. A small package is to be dropped from the bridge onto the deck of the boat is 25m from just below the drop point. What speed is necessary to have the package land in the boat? (g= 9.8ms-2)','17m/s ','14m/s ','1.7m/s ','4.9m/s','','','b','','post-utme','2010',3892,'Admin','0000-00-00 00:00:00','2020-07-06 14:26:43'),(74,'A 0.60kg rubber stopper is whirled in a horizontal circle of 0.80m radius at a rate of 3.0 revolutions per second. What is the tension in the string? ','14N ','80N ','170N ','24N','','','c','','post-utme','2010',3846,'Admin','0000-00-00 00:00:00','2020-07-05 10:39:31'),(75,'An automobile is traveling at 60km/hr. calculate the angular velocity of the 0.35m radius wheels. ','16.67rad/s ','47.6 rad/s ','21 rad/s ','171.4 rad/s','','','b','','post-utme','2010',3747,'Admin','0000-00-00 00:00:00','2020-07-05 07:35:21'),(76,'An air bubble at the bottom of a lake has a volume of 20cm3, pressure of 4.9Pa, and temperature 4oc the bubble rises to the surface where the temperature is 20oc and the pressure 1.0Pa. Find the volume as the bubble reaches the surface. (take 1 atm = 1.0 x 105 N/m2) ','124cm3 ','319cm3 ','60cm3 ','104 cm3','','','d','','post-utme','2010',3816,'Admin','0000-00-00 00:00:00','2020-06-30 19:58:26'),(77,'  A gas at constant pressure of 4.0 x 105 Pa is cooled so that its volume decreases from 1.6m3 to 1.2m3. What work is performed by the gas? ','6.4 x 105 J ','3.2 x 105 J  ','1.6 x 105 J ','0.4 x 105 J  ','','','c','','post-utme','2010',3777,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(78,'Highly polished silvery  surfaces are: ','poor absorbers but good emitter of radiation ','good absorbers and good emitters of radiation ','poor emitters but good reflectors of radiation ','poor emitters and poor reflectors of radiation','','','c','','post-utme','2010',3768,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(79,'A 0.040kg string 0.80m long is stretched and vibrated in a fundamental mode with a frequency of 40Hz. What is the speed (of propagation) of the wave and tension in the string? ','64m/s ','340m/s ','32m/s ','128m/s','','','a','','post-utme','2010',3892,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(80,'What is the total power output of a source with intensity 0.050 W/m2 at a distance of 3.0m from the source? ','112W ','5.6W ','15W ','30W','','','b','','post-utme','2010',3695,'Admin','0000-00-00 00:00:00','2020-07-01 23:05:39'),(81,'The superposition of two or more waves to produce a maximum or zero effect at a point is known as: ','reflection ','refraction ','diffraction ','interference','','','d','','post-utme','2010',3817,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(82,'The acceleration due to gravity ','increases with increasing altitude ','decreases with increasing altitude ','increases with increase in the square of the altitude ','is not affected by the altitude','','','b','','post-utme','2010',3840,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(83,'Which of the following statements are correct of nuclear fission? During the process \\nI. energy is released \\nII. More neutrons are released than those that cause fission \\nIII. Small nuclei merge into large nuclei \\nIV. There is a loss on mass\\n','II and I only','III','I,II and IV','IV and III','','','c','','post-utme','2010',3846,'Admin','0000-00-00 00:00:00','2020-06-30 16:19:15'),(84,'Which of the following statements is not true? ','electric field intensity is force per unit charge. ','electric potential is a vector ','the S.I unit of electric field strength is N/C ','electric field intensity is equal to the potential gradient','','','b','','post-utme','2010',3731,'Admin','0000-00-00 00:00:00','2020-07-06 12:39:16'),(85,'Which of the following about electrolysis is false? ','liquid that conduct electricity and are split up chemically by the current are electrolyzed','the current into the electrolyte by the anode ','the current is taken away from the electrolyte by the cathode ','the container which holds the electrolyte and the electrode is the voltmeter','','','d','','post-utme','2010',3806,'Admin','0000-00-00 00:00:00','2020-07-05 10:49:51'),(86,'Which of the following is not true about the properties of x-rays? ','they are not deflected by magnetic or electric field','they ionized a gas making it a conductor ','they are massive ','they have high penetrating power ','','','c','','post-utme','2010',3826,'Admin','0000-00-00 00:00:00','2020-06-29 03:04:43'),(87,'A transformer is connected to a 240 V supply. The primary coil has 40 turns, and the secondary is found to be 960V. What is the ratio of the number of turns of the primary coil to the number of turns of the secondary coil? ','4:01','1:04','1:06','6:01','','','a','','post-utme','2010',3747,'Admin','0000-00-00 00:00:00','2020-07-01 23:11:39'),(88,'Which of the following is not true about an object that is projected upwards at angle θ? ','the velocity is maximum at the maximum height ','the acceleration along the horizontal direction is zero ','the maximum range (Rmax) for an object moving with speed u is given by u2/g ','the time it takes to get the maximum height is equal to the time it takes to come back to the point of projection','','','a','','post-utme','2010',3779,'Admin','0000-00-00 00:00:00','2020-07-05 14:30:11'),(89,'When three coplanar non-parallel forces are in equilibrium i. they can be represented in magnitude and direction by the three sides of a triangle taken in order ii. The lines of action meet at a point iii. The magnitude of any one force equals the magnitude of the other two forces iv. Any one force is the equivalent of the other two. Which of the following statements above are correct? ','i and iii only ','i and ii only','i, ii,iii and iv ','none of them','','','b','','post-utme','2010',3823,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(90,'Which of the following statements is not true about a body performing simple harmonic motion? ','the linear speed is the product of the angular speed and the radius or amplitude ','the linear acceleration is the product of the square of the angular speed and the displacement ','frequency is the number of complete revolution per second made by a vibrating body ','the S.I unit of amplitude is Hertz (Hz)','','','d','','post-utme','2010',3723,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(91,'In the force of gravity on an object of mass m, the gravitational field strength, g, is given by the following equation. ','g = √MF ','g = MF ','g = M√F ','g = F/M.','','','d','','post-utme','2010',3836,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(92,' A body of mass m slides down an inclined plane with a constant velocity. If the angle of the incline is Ø, the coefficient of kinetic friction between the body and the plane is  ','cot Ø ','cos Ø  ','tan Ø  ','sine Ø','','','c','','post-utme','2011',3829,'Admin','0000-00-00 00:00:00','2020-07-06 15:25:50'),(93,'the velocity of a 500 kg car moving long a straight  road, changes from 12 m/s to 20 m/s in 5 sec. calculate the average force moving the car. ','2000N  ','1600N  ','1200N  ','800N','','','d','','post-utme','2011',3727,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(94,'When a 2kg body is at a height 5m above the floor, its velocity  is 4m/s. What is its total energy  at this height? (acceleration due to gravity = 10m/s2)  ','80J  ','00J  ','  116J  ',' 180J','','','c','','post-utme','2011',3806,'Admin','0000-00-00 00:00:00','2020-07-05 07:06:45'),(95,'The density of sea water is 1030kg/m3. What is the pressure at a depth of  80 m below sea surface? Atmospheric pressure is 1.013 x 105 pa and acceleration  due to gravity is 10 m/s2  ','9.25 x  105 pa  ','8.24 105 pa   ','7.23 x 105 pa  ','8.34 x 109 pa','','','a','','post-utme','2011',3787,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(96,'6000 J of heat is delivered to 10g of dry ice at O0C. What is the final temperature if the container has a heat capacity of 20J/K? (specific heat of water = 4200j/kg.k, latent heat of fusion of ice = 3.33 x 105J/kg)  ','142.90C  ','63.60C  ','43.00C  ','00C','','','c','','post-utme','2011',3671,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(97,'A sample of radioactive substance, whose half-life is 16 days, registers 32 decays per second. How long will it take for the rate of decay to reduce to 2 decays per second? ','80 days  ','64 days  ','48 days  ','32 days','','','b','','post-utme','2011',3856,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(98,'When white light passes through a triangular prism, the emerging rays of light arranged in order of decreasing angle of deviation are ','red, orange, yellow, green  ','blue, green,  orange, yellow ','red, green, yellow, orange ','blue, green, yellow, orange','','','d','','post-utme','2011',3818,'Admin','0000-00-00 00:00:00','2020-07-05 07:06:45'),(99,' The electric field between two parallel plates is E.  A particle of mass m and carrying charge q is released at a point half the distance between the plates. The velocity  of the particle t  seconds after its release is  ','qEt/m ','qEt2  ','mqt2/2E  ','MQT/2E','','','','','post-utme','2011',3749,'Admin','0000-00-00 00:00:00','2020-07-06 12:39:16'),(100,'An airplane increases its speed 36 km/h to 360 km/h in 20.0 s. How far does it travel while accelerating.  ','4.4 km     ','1.1 km  ','2.3 km  ','1.0 km','','','b','','post-utme','2011',3702,'Admin','0000-00-00 00:00:00','2020-07-04 15:58:35'),(101,'An object is said to be in simple harmonic motion (SHM) if  ','the acceleration is directly proportional to the displacement and is directed towards the equilibrium position of the object. ','the acceleration is inversely proportional to the displacement and directed toward the equilibrium position  of the object  ','the displacement is directly proportional  to the momentum  and directed toward the equilibrium position of  the object ','the momentum is directly proportional to the displacement and directed toward the equilibrium position of the object.','','','a','','post-utme','2011',3787,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(102,'A wheel and axle is used to raise a weight of 600n with an effort of 300n. if the radii of the wheel and axle are 50 cm and 10 cm respectively, what is the efficiency of the system      ','40%','50%','20%','10%','','','a','','post-utme','2011',3728,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(103,'The  term “Viscosity” is used to describe  ','surface tension in fluids ','friction in fluids  ','surface tension in solids  ','moment in solids','','','b','','post-utme','2011',3863,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(104,' A particle is in equilibrium under the action of three forces. One force is 40N towards the west and another is 30N towards the south. What is the third force acting on the body?   ','40N, N530E  ','50N, N370E   ','50N, N530E     ','40N, N370E','','','b','','post-utme','2011',3744,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(105,'A hydraulic press works on the principle of transmission of   ','force  ','energy  ','volume  ','pressure','','','d','','post-utme','2011',3896,'Admin','0000-00-00 00:00:00','2020-07-05 12:48:44'),(106,'Which of the following is not a thermometer?  ','thermocouple  ','pyrometer  ','hydrometer  ','platinum resistance thermometer. ','','','c','','post-utme','2011',3639,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(107,'Dry air of column length 10 cm is trapped by a pellet of mercury of length 15 cm, with the open end uppermost. When the capillary is inverted the length of the air column increased to 25 cm while that of mercury remained constant. Calculate the atmospheric pressure (in cm of Hg.)  ','35 cm Hg  ','15 cm Hg  ','20 cm Hg  ','35 cm Hg','','','d','','post-utme','2011',3815,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(108,'Which of the following is not true about a chemical cell?   ','in primary cells the process through which current is generated is irreversible  ','secondary cells can be recharged after they run down by passing a current into the cell in the  reverse direction ','positive ions are attracted to the positive electrode where they become neutralized by acquiring electrons  ','primary cells  can be recharged','','','d','','post-utme','2011',3717,'Admin','0000-00-00 00:00:00','2020-07-06 03:41:44'),(109,'A cigarette lighter in a car is a resistor that, when activated, is connected across the 12 – V battery. If the lighter dissipates 33 W of power, find the current it delivers  to the lighter.  ','9.90 Ω  ','6.60 Ω  ','4.36','17.50Ω','','','c','','post-utme','2011',3803,'Admin','0000-00-00 00:00:00','2020-07-04 15:58:35'),(110,'A p-n junction can act as  ','an amplifier  ','a rectifier  ','an inductor ','a capacitor ','','','b','','post-utme','2011',3835,'Admin','0000-00-00 00:00:00','2020-07-06 16:32:29'),(111,'  Calcium has a work function of 19 eV with a wavelength of 150 nm. Calculate the maximum energy of a photo electron emitted. (1 eV = 16.1 x 10-19J, h = 6.6 x 10-34Js)            ','6.35 Ev  ','8.25 cV  ','14.60eV  ','None of above','','','d','','post-utme','2011',3921,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(112,'Sound waves were sent out from a source and after being reflected from  an obstacle were received by a sensor placed beside the source. If the waves were received 10 seconds after they were sent out, calculate  the distance between the  source and the obstacle (speed of sound = 330 m/s) ','990m  ','660m ','1320 m ','None of above','','','d','','post-utme','2011',3799,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(113,'Two plane mirrors are inclined at angle 45 to another. A ray of light has incident angle of 20 at the surface of the first mirror. The reflected ray is then incident on the second mirror. Calculate the angle of reflection at the second mirror ','65','45','25','20','','','c','','post-utme','2012',3748,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(114,'When the length of the string of a simple pendulum is L its period is 0.5π second is 0.5π seconds. The period when the length is increased to 4L will be ','0.5π seconds','π seconds ','2π seconds ','4π seconds','','','b','','post-utme','2012',3820,'Admin','0000-00-00 00:00:00','2020-07-06 03:41:44'),(115,'A uniform meter rule AB has a mass 15g. A 30g mass is suspended at the 10.0cm mark, and another 5g mass is suspended at the 65.0cm mark. Calculate the position of the fulcrum that will keep the meter rule balanced horizontally ','50.0cm ','32.0cm ','27.5cm ','17.9cm ','','','d','','post-utme','2012',3703,'Admin','0000-00-00 00:00:00','2020-07-04 15:58:35'),(116,'rectangular block measures 40cm x 25cm and made of material of density 7800kg/m3. Calculate the pressure the block exerts on the floor when it stands on the smallest of its surfaces ','3.12 x 103N/m2 ','3.90 x 103N/m2 ','1.9 x 104N/m2 ','3.12 x 104N/m2','','','b','','post-utme','2012',3887,'Admin','0000-00-00 00:00:00','2020-07-05 17:58:06'),(117,'A ship sinks to the bottom of a 250m deep lake. The atmospheric pressure over the lake is 1.03 x 105 Pa. Taking the density of water in the lake to be 1000 kg/m3, calculate the pressure exerted on the boat. [acceleration due to gravity = 10 m/s2] ','2.60 x 106Pa  ','2.50 x 106Pa ','2.60 x 105Pa ','1.03 x 105Pa','','','a','','post-utme','2012',3716,'Admin','0000-00-00 00:00:00','2020-07-05 06:01:32'),(118,'Three knives made of steel, plastic and flat wood respectively are placed on the table for an equal amount of time. The steel knife feels coldest to touched because','The steel knife has the lowest temperature ','The plastic and wooden knives have absorbed more heat from the environment than the steel knife. ','Both wooden and plastic knives have lower densities than the steel ','The steel knife conducts heat faster from the finger than the wooden and plastic knives ','','','d','','post-utme','2012',3759,'Admin','0000-00-00 00:00:00','2020-07-05 22:22:09'),(119,'Which of the following quantities is a scalar quantity?','Electric field ','Coulomb force','Electric potential ','Acceleration due to gravity','','','c','','post-utme','2012',3729,'Admin','0000-00-00 00:00:00','2020-07-05 21:51:33'),(120,'A car accelerates at 5.0m/s2 for 6s, the travels at the speed attained for 20s, and comes to rest after another 4.0s. Calculate the average velocity of the car during the motion.','25.0m/s','20.0m/s ','1.25m/s ','0.16m/s','','','a','','post-utme','2012',3797,'Admin','0000-00-00 00:00:00','2020-07-06 03:41:44'),(121,'Which of the following quantities is equal to the area under a velocity-time graph?','Acceleration ','Distance travelled ','Average Velocity of motion ','Total time taken.','','','b','','post-utme','2012',3840,'Admin','0000-00-00 00:00:00','2020-07-04 15:58:35'),(122,'A 25N force pulls a 2.0kg body up a 300 inclined plane. If force is parallel to the plane and the body moves up the plane at constant velocity. Calculate the magnitude of the frictional force between the body and the plane. [g =10m/s2]','25N','10N','5N','15N','','','d','','post-utme','2012',3835,'Admin','0000-00-00 00:00:00','2020-07-01 08:40:45'),(123,'The process by which solid change directly to vapour is called ','Evaporation','Fusion ','Condensation ','Sublimation ','','','d','','post-utme','2012',3701,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(124,'A coin is at the bottom of a bucket filled with a liquid whose refractive index is 1.35. The coin appears to be 12.0cm below the surface of the liquid. Calculate the depth of the liquid.','16.2cm  ','13.4cm  ','8.9cm  ','5.4cm','','','a','','post-utme','2012',3802,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(125,'A 3.0cm object is placed 12.0cm in front of bi-convex lens of focal length 8.0cm. Calculate the height of the image of the object.  ','3.0cm ','6.0cm ','12.0cm ','24.0cm','','','d','','post-utme','2012',3726,'Admin','0000-00-00 00:00:00','2020-06-30 08:12:29'),(126,'To use a milli-ammeter to measure current up to 10A, what connection needs to be made?','A small resistance must be connected in parallel with the milli-ammeter ','A small resistance must be connected in series with the milli-ammeter ','A high resistance must be connected in parallel with the milli-ammeter ','The milli-ammeter must be disconnected from the circuit.','','','b','','post-utme','2012',3808,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(127,'Two 2µF capacitors are connected in parallel. The combination is connected in series with a 6µF capacitor. What is the equivalent capacitor for the combination?','10.0µF  ','8.0µF  ','1.5µF  ','2.4µF','','','c','','post-utme','2012',3743,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(128,'Five 100-Watt bulbs are put on for 45days during which the home-owner is on vacation. If 1kW-hour of electricity cost N7.50, how much does it cost the home-owner? ','N168.75  ','N90.0  ','N4050.00  ','N810.00','','','d','','post-utme','2012',3786,'Admin','0000-00-00 00:00:00','2020-07-07 09:00:56'),(129,'To convert an a.c generator to d.c generator, one needs to ','Remove the brush touching the slip rings ','Laminate the armature ','Replace the permanent magnets with  iron-core armature. ','replace the slip rings with split rings','','','d','','post-utme','2012',3684,'Admin','0000-00-00 00:00:00','2020-07-06 13:58:33');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `proentertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `progeneral` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `category` varchar(30) COLLATE utf8_unicode_ci NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `progeneral` VALUES (1,'World environmental day happened last week in what day of the week','Tuesday','Wednesday','Thursday','Friday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'World environmental day is on every','5th of June','1st of June','4th of June','3rd of June','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'ECOWAS is now how many years old','30','40','20','35','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many people died by Boko Haram since the inception of new government','over 20','over 50','30','50','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Ghana petrol station explosion happened on ','Monday','Tuesday','Wednesday','Friday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Which Nigeria artiste was nominated for Black Canadian award','Yemi Alade','Tu-face','Psquare','Asa','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'The new Nigeria elected nation assembly is the ','7th ','8th ','5th ','6th ','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'President Buhari is to participate in G7 summit when','Friday','Saturday','Sunday','Monday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'President Buhari attended what \\\"G\\\" summit','G8','G7','G16','G10','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'APC house of representative  speaker election was won by','Tinub','Gbajabiamila','Saraki','Dark Mark','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which state reinstate 480 sacked workers','Lagos','Yobe','Sokoto','Ogun','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which Sokoto local government area reinstate 480 sacked workers',' North ','South ','East','West','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many petrol tanker truck accident happened last week in Nigeria','1','2','3','4','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Some part of Afghanistan district was captured by','Boko Haram','Taliban','Islamic State','Islamic brother hood','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which country was affect by middle east respiratory syndrome (MERS)','North Korea','South Korea','China','Japan','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria state governor rode Okada(Motor bike) to state house of assembly inauguration','Lagos governor','Ogun governor','Ekiti governor','Rivers governor','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'About how many people where on board in China ship disaster','about 300','about 200','over 400','over 500','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country in Africa asked Nigeria to help in training of army and police','Sudan','Egypt','South Sudan','Angola','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Which company sue PDP for 70 million campaign debt','Silon Concepts Limited','AIT','Media Technologies','Waat Concepts','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'The UEFA championship was played in','England','Moscow','Berlin','Paris','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Sexual intercourse with children under 11 bill was pass into laws when','5th of June','3rd June','4th of June','1st June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'did President Buhari travelled to Chad last week','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'What day of the week  did President Buhari travelled to Niger last week','Monday','Tuesday','Wednesday','Thursday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'How many special advisers did the president presented to Nation assembly','3','10','15','12','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What is the name of governor of Kano state','Abdulia Ganduje','El Rfia','Hammed Musa','Atiku Abubaka','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' How many CBN staff was sent to prison by EFCC ','10','8','7','6','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'When did world economic forum took place last week','4th of June','3rd of June','5th of June','1stof June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Elected FIFA president resignation news broke out when last week','Monday','Tuesday','Wednesday','Friday','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Health  workers strike enters week ?.. Last week','2','4','1','3','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'The new coach of Real Madrid was assigned on','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Serena Williams wins??.. Grand slam','14','15','18','20','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Who is the third tennis player to win 20 grand slam ','Rafi Nadal','Serena Williams','Venus Williams','Joko','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'How many passenger escape death as Aero aircraft developers fault mid air','100','120','about 100','over 120','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The world oldest cat dies at','12','20','22','27','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What was the score between Nigeria and Hungry in under 20 world cup match','4-0','2-0','1-0','2-2','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Nigeria team is to face which team in the round second round of under 20 world cup','Brazil','Germany','Italy','USA','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'In woman world cup, Germany defeated Ivory coast by','10-0','4-0','7-0','2-0','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'Which team won the UEFA championship title last week','Barcelona','Juventus','Real Madrid','Chelsea','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `propolitic` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `prosport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `protechy` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Anonymous',\n  `question_id` mediumint(9) NOT NULL,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `message` text COLLATE utf8mb4_unicode_ci,\n  `type` enum('1','2','3','4','5','6','7') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `status` enum('0','1') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question` VALUES (1,'Anonymous',4,'english',NULL,'1','0','2018-08-31 10:33:36','2018-08-31 10:33:36'),(2,'Anonymous',2,'english','You got busted','5','0','2018-08-31 11:05:51','2018-08-31 11:05:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question_type` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,\n  `description` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question_type` VALUES (1,'Question','There is an error in question',NULL,NULL),(2,'Option A','There is an error with option a',NULL,NULL),(3,'Option B','There is an error with option b',NULL,NULL),(4,'Option C','There is an error with option c',NULL,NULL),(5,'Option D','There is an error with option d',NULL,NULL),(6,'Answer','Something is wrong with the answer',NULL,NULL),(7,'Solution','Something is wrong with the solution',NULL,NULL);\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `socialfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `socialfb` VALUES (1,'What year was \\'Africa Queen\\' music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track \\'African Queen\\' came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D\\'Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D\\'Banj  first album released?','2002','2005','2001','2004','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What is the full meaning of NEA','National Entertainment Awards','Nigerian Entertainment Awards','Nigerian Entertainment Award','National Entertainment Award','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Nigerian Entertainment Award (NEA) 2015 was held in','Lagos Nigeria','Abuja Nigeria','New York USA','London Britain','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who won the best Female act award in Nigerian Entertainment Award (NEA)  2015','Cynthia Morgan','Yemi Alade','Seyi Shay','Tiwa savage','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Who won the best Film Director of the Year (Indigenous Films) in Nigerian Entertainment Award (NEA)  2015','Kunle Afolayan','Alex Konstantaras','Olanrewaju Abiodun','Chiwetel Ejiofor','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Best Male act was given to ??.. in Nigerian Entertainment Award (NEA) 2015','Olamide','Davido','Wizkid','Shizzi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Best Rap act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Best Pop act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Best Afrobeat Act was given to ?. In Nigerian Entertainment Award (NEA)  2015','2face Idibia','Femi Kuti','Baba Fryo','Alariwo','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Olamide life in concert \\'Beast Mode \\'hold this year on','March 10 2015','December 27 2015','December 31 2015','March 21 2015','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Which of the following guest artiste will not feature in Olamide life concert 2015','Davido','D?Banji','Wizkid','Olamide','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'what is the full meaning of KADAMFEST','Kaduna Music Festival','Kano  Music Festival','Kaduna  Music Festivals','Kano Music Festivals','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What edition is Miss World 2015','60th','61th','62nd','63rd','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Which country hosted Miss World 2015 edition','China','Japan','Singapore','India','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'What is the date of Miss World 2015 pageant?','10-Dec-15','16-Dec-15','19-Dec-15','21-Dec-15','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' Which country won Miss World 2015 pageant?','China','South Africa','Spain','Norway','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Tiwa Savage is how old in 2015','28','30','35','32','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Which of this song was release by Wizkid in 2015','On top matter','Love my babe','Expensive shit','Mummy mi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Who was the most nominated artiste for Tooxclusive award 2015','Davido','Olamide','Di?ja','Korede bello','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'Who is the fourth highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'Who is the Second highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Who is the third highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Who is the highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'30 days in Alanta was released on','31-Oct-15','31-Oct-14','1-May-15','1-May-14','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is Miss Nollywood Queen 2015','Miss Gwendolyn Okutele','Miss Adebayo Kemi','Miss Basira Malla','Miss Obichi Emeka','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' Miss Nollywood Queen 2015 is from what state','Enugu','Delta','Ondo','Lagos','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'What is the name of Olamide ablum released in 2015','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' What is the full meaning of SMD','Super Michael Data','Supreme Mavin Dynasty','Shoki Makossa Dance','Simple Motion Dance','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Who started SMD?','Olamide','Davido','P-Square','Don Jazzy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' What is the name of Olamide ablum released in 2012','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the name of Olamide ablum release in 2014','Rapsodi','YBNL','Street OT','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'\\'Yemi my lover\\' is in which Olamide album','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'What is the full name of Phyno','Godfrey Nelson','Azubuike Chibuzo Nelson','Phillip Onome','Paul Nwoko Godfrey','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,' Which of this artiste is not a Glo ambassador','D?Banj','Peter and Paul Okoye (PSquare)','Tu Face ','Wande Coal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,'Which of the following artiste is not a airtel ambassador','Phyno','Tu Face','Wande Coal','Patoranking','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sport` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','Sir Ali Ferguson.','Alex Ferguson.','Sir Alex Ferguson','Sir Alex Fergson','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'How many rings are in the Olympic colours?','6','5','4','3','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sportfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sportfb` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','?Sir Ali Ferguson.','?Alex Ferguson.','?Sir Alex Ferguson','?Sir Alex Fergson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'How many rings are in the Olympic colours?','6','5','4','3','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'When was Jose Mourinho sacked by Chelsea in 2015','15-Dec','5-Dec','27-Dec','17-Dec','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which coach is regarded as the Special One','Pep Guardiola','Raphael Benitez','Jose  Mourinho','?Sir Alex Ferguson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Which club in Nigeria premier league has the longest winning run in 2015','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' Which club in Nigeria premier league has the longest unbeating run in','Warri Wolves FC','Kano Pillars FC','Enyimba FC','Shooting Star FC','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' The 2015 Nigeria Professional Football League was won by','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The 2015 Nigeria Professional Football League second place winner was','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What is the name of Nigeria second football division','National Division league','Nigeria Second division league','Nigeria National league','Second National league','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'which of the following 2015 Nigeria Professional Football League was relegated','El-Kanemi Warriors','Enugu Rangers','Kwara United?','Abia Warriors','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'which of the following 2015 Nigeria Professional Football League was not relegated','Kwara United?','Bayelsa United','Sharks','El-Kanemi Warriors','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Kano Pillars\\' 12-year undefeated streak at home came to an end in a 2-1 loss to','Nasarawa United','Wikki Tourists','Kwara United?','Enyimba FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is the president of Nigeria football federation?','Amaju Pinnick','Alhaji Ibrahim Galadim','Alh. Aminu Maigari','Alhaji Ibrahim Pinnick','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' What is the full meaning of NFF','Nigeria Football Federation','Nation Football Federation','Nigerian Football Federation','National Football Federation','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'Which of the following is not a bet company in Nigeria','Bea Bet','Naira Bet','Surebet247 ','Bet9ja','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' Which of the following is the first sport betting website in Nigeria','Surebet247','360bet','Bet365NAIJA','Naira Bet','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Leicester City F.C. is also known as ','Lei City','The Eagle','The Foxes','Blue team','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' Leicester City F.C. is also known as the following expect','The Foxes','The Blues','The City ','Blue Army','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'Who is the current hit man for Leicester City','Jamie Vardy','Wes Morgan','Danny Simpson','Eden Hazard','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'Who is the current highest goal scorer as of December 2015 in English Premier League','Wilfried Bony','Robin van Persie','Diafra Sakho','Jamie Vardy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'Who won the Ballon D?or cup 2015','Lionel Messi ','Neymar ','Cristiano Ronaldo','Robin van Persie','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n"
  },
  {
    "path": "storage/backups/2020-07-15.sql",
    "content": "/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `accounting` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=515 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `accounting` VALUES (1,'The bad debt account is closed by transferring the balance to ','credit of capital account  ','debit of profit  and loss  ','debit of the debtors personal account ','credit of profit and loss account ','','','b','','post-utme','2010',100,'','0000-00-00 00:00:00','2020-07-14 13:21:23'),(2,'A credit note from a supplier would first be entered in the ','purchase book  ','sales book  ','returns inward book  ','returns outward','','','a','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:24'),(3,'Where a proprietor withdraws cash from the business for his private use, the entries would be ','credit cash account, debit proprietor\\'s account ','credit proprietor\\'s account, debit cash account ','credit proprietor\\'s account, debit   drawings   account    ','credit   cash account,  debit drawings account','','','d','','post-utme','2010',106,'','0000-00-00 00:00:00','2020-07-14 13:21:25'),(4,'Which   of the   following   is   a  long  term liability ','bank overdraft ','bank deposit ','good will ','debentures','','','d','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:26'),(5,'Which of the following is a function of the sales journal ','it records both cash and credit sales ','it shows the balance in the sales account ','it record credit sales only ','it shows the aggregate balances in the debtors lodger','','','a','','post-utme','2010',116,'','0000-00-00 00:00:00','2020-07-14 13:21:27'),(6,'Which of the following is the most liquid ','stock ','debtors ','machinery ','loose tools','','','b','','post-utme','2010',94,'','0000-00-00 00:00:00','2020-07-14 13:21:28'),(7,'A debit balance on a bank statement indicates that ','bank is a debtor to the customer ','customer is a debtor to the bank ','bank is not a creditor to the customer ','customer is not a debtor to the bank','','','b','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-07-14 13:21:29'),(8,'At the end of a trading period, wages will be  ','debited to trading account and shown as a current liability ','credited to profit and loss Account and shown as a current liability ','credited to trading account and shown as a current asset ','debited to profit and loss account and shown as a current liability','','','a','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:30'),(9,'Which of the following is not an asset ','Goodwill ','General reserves ','Debtors ','Prepayments','','','b','','post-utme','2010',116,'','0000-00-00 00:00:00','2020-07-14 13:21:31'),(10,'A company\\'s profit and loss account for a period  is  prepared by ','deducting total expenses from total revenues ','deducting total cash payments from total revenue ','deducting  all  outflows  of funds  from  all inwards of funds ','balancing its receipts and payments','','','a','','post-utme','2010',106,'','0000-00-00 00:00:00','2020-07-14 13:21:32'),(11,'The journal is a book ','of primary entry into which all transactions are entered before posting ','kept by journalist for reporting events ','of prime entry into which postings are made from the ledger  ','of analyzing major accounts','','','a','','post-utme','2010',98,'','0000-00-00 00:00:00','2020-07-14 13:21:33'),(12,'The receipts and payments of a club is the same  as ','  Profit and   loss  account  ','Trading Account ','Cash book ','control Account','','','c','','post-utme','2010',97,'','0000-00-00 00:00:00','2020-07-14 13:21:34'),(13,'In a balance sheet, bank overdraft is ','Current Asset ','Fixed asset ','long term liability ','Current Liability','','','d','','post-utme','2010',107,'','0000-00-00 00:00:00','2020-07-14 13:21:35'),(14,'Money set aside for the saving of business overheads    is    referred    to   ','Capital Expenditure  ','Revenue  Expenditure ','Revenue receipts','','','','c','','post-utme','2010',117,'','0000-00-00 00:00:00','2020-07-14 13:21:36'),(15,'Money spent on buying of plots of land by a firm is ','Capital Expenditure ','capital receipts ','Revenue Expenditure',' Revenue Receipts','','','a','','post-utme','2010',112,'','0000-00-00 00:00:00','2020-07-14 13:21:37'),(16,'Prepaid expenses  is an  item  in ','Fixed Asset  ','  Current    Asset   ','Liabilities ','Long term liabilities ','','','b','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-07-14 13:21:38'),(17,'Final accounts of (i) Cash book (ii) trading account  (iii) Profit and  loss account  (iv)Balance sheet  ','i only ','i and ii only','iii and iv only ','ii and iii  only','','','c','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-07-14 13:21:39'),(18,'Trading account is prepared to ascertain ','Gross profit ','Net profit ','Gross profit or Gross loss ',' Net profit or net loss','','','c','','post-utme','2010',105,'','0000-00-00 00:00:00','2020-07-14 13:21:40'),(19,'A statement that shows the financial position of a business is ','profit and loss account  ','Trading Account ','Statement of income  ',' Balance sheet','','','d','','post-utme','2010',97,'','0000-00-00 00:00:00','2020-07-14 13:21:41'),(20,'  Prepaid wages is an item in the (i)Balance Sheet (ii) Profit and loss account (iii)Trading  account (iv) Cash account ','i, ii, iii only ','ii, iii  ','i, ii ','iii, iv','','','a','','post-utme','2010',119,'','0000-00-00 00:00:00','2020-07-14 13:21:42'),(21,'Partnership    is    a    business    owned and controlled by ','Two members ','two to ten members ','Two to twenty person  ','Two to five persons','','','c','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:43'),(22,'If a   machine   cost   2000   naira   and its estimated   life   span   is   10   years   and its residual is 500 naira. The yearly value of depreciation  in  naira is ','250','180','150','130','','','c','','post-utme','2010',94,'','0000-00-00 00:00:00','2020-07-14 13:21:44'),(23,'Bad debt is also known as ','Unpaid debt','irrecoverable debt  ','Payment debt  ','current    debt','','','b','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-07-14 13:21:45'),(24,'Bad debt is an item in ','Trading, profit and loss account  ','consignment account  ','Balance sheet ','Receipt and expenditure AC','','','a','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-07-14 13:21:46'),(25,'The diary or events in which all financial transactions    are    recorded    for    easy reference and to assist in the double entry system is ','Ledger','Journal   ','Purchases and sales day books ','Debit and credit documents','','','a','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-07-14 13:21:47'),(26,'Which of the following is not a book of original entry? ','Cash book  ','Purchases journal  ','Sales journal ','Ledger','','','d','','post-utme','2011',101,'','0000-00-00 00:00:00','2020-07-14 13:21:48'),(27,'The test of arithmetical accuracy of all postings in the ledger is provided in the: ','Journal  ','Day book  ','Cash book  ','Trial balance','','','d','','post-utme','2011',120,'','0000-00-00 00:00:00','2020-07-14 13:21:49'),(28,'Errors   revealed   by   the   trial   balance include error of:  ','Principle  ','Single entry ','Omission  ','commission ','','','b','','post-utme','2011',106,'','0000-00-00 00:00:00','2020-07-14 13:21:50'),(29,'Accounting equation is given by  ','Assets - Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owner\\'s Equity = Liabilities ','Assets = Liabilities + Owner\\'s Equity','','','d','','post-utme','2011',92,'','0000-00-00 00:00:00','2020-07-14 13:21:51'),(30,'Which of the following is not a current asset?  ','Stock  ','Debtors  ','Creditors ','Cash','','','c','','post-utme','2011',119,'','0000-00-00 00:00:00','2020-07-14 13:21:52'),(31,'Final accounts of a company refers to: ','Trading and profit and loss account  ','Profit and loss account and balance sheet  ','Trading account and balance sheet  ','Trading , profit and loss account and balance sheet','','','d','','post-utme','2011',90,'','0000-00-00 00:00:00','2020-07-14 13:21:53'),(32,'A cheque which has been sent but has yet gone through the bank account of the receiver of it is known as:','Dishonoured cheque','Unpresented cheque ','Uncredited cheque','Unhonoured cheque','','','b','','post-utme','2011',107,'','0000-00-00 00:00:00','2020-07-14 13:21:54'),(33,'Which of the following does not appear in a bank statement?   ','Uncredited cheque ','Bank charges ','Dishonoured cheque ',' Dividend   received   on    behalf   of customer','','','d','','post-utme','2011',101,'','0000-00-00 00:00:00','2020-07-14 13:21:55'),(34,'Where a correct amount is entered, but in the wrong person\\'s account, is an error of  ','Principle  ',' Omission','Commission','Compensation','','','c','','post-utme','2011',103,'','0000-00-00 00:00:00','2020-07-14 13:21:56'),(35,'A credit balance of N350,000 in a cash account shows that  ','N350.000 was the total cash received  ','N350,000 was the total cash paid out  ','Cash at hand equals N350,000 ','N350,000 was the cash overspent','','','d','','post-utme','2011',111,'','0000-00-00 00:00:00','2020-07-14 13:21:56'),(36,'Which   accounting  concept  states; that revenues and expenses are recognized as they are earned or incurred and not when  money is received?','Entity   ','Realization','Accrual  ','Periodicity','','','c','','post-utme','2011',111,'','0000-00-00 00:00:00','2020-07-14 13:21:57'),(37,'Which of the following is not a business asset?','Deposit account in bank','Interest due on loan','Five acres of land','Library books owned by a lawyer ','','','b','','post-utme','2011',100,'','0000-00-00 00:00:00','2020-07-14 13:21:58'),(38,'Prime cost is','Direct cost of production','Cost of raw materials consume:','Cost of raw materials purchase-:','Indirect cost of production','','','a','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-07-14 13:21:59'),(39,'Subscription   received   in   respect of a future period is','Subscription deposit','Subscription in advance','Accrued subscription','Subscription in arrears','','','b','','post-utme','2011',116,'','0000-00-00 00:00:00','2020-07-14 13:22:01'),(40,'The petty cash book kept on imprest system should have','A credit balance only','A debit or nil balance','A debit balance only','Both debit and credit balance;','','','c','','post-utme','2011',99,'','0000-00-00 00:00:00','2020-07-14 13:22:02'),(41,'Wilson Company owns land which cost 14100, 000. If a \\\"quick sate\\\" of the land was necessary to generate cash, the company feels it would receive only N80, 000.    The company continues to report the asset on the balance sheet at N100, 000   This is justified under which of the following concepts?  ','The historical-cost principle.','The value is tied to objective and verifiable past transactions.','Neither of the above.',' Both \\\"a\\\" and \\\"b\\\"','','','a','','post-utme','2012',105,'','0000-00-00 00:00:00','2020-07-14 13:22:04'),(42,'Retained earnings will change over time because of several factors.  Which of the following factors would explain an increase in retained earning?','Net loss ','Net income,','Dividends ','investment by stakeholders.','','','b','','post-utme','2012',120,'','0000-00-00 00:00:00','2020-07-14 13:22:04'),(43,'Which of the following would not be included in a balance sheet?','Accounts receivable','Accounts payable  ','Sales','Cash','','','c','','post-utme','2012',98,'','0000-00-00 00:00:00','2020-07-14 13:22:05'),(44,'A company provided the following information about its balance sheet: Cash N100 Accounts receivable N500 Stockholders\\' equity 14700 Account payable N200 Bank loans Nl000 Based on the information provided, how much are Remington\\'s liabilities?','N200   ','N900   ','N 1,200   ','N 1,700','','','c','','post-utme','2012',106,'','0000-00-00 00:00:00','2020-07-14 13:22:06'),(45,'A complete set of financial statements for Hartman Company, at December 31, 1999, would include each of the following except:','Balance sheet as of December 31,1999 ','Income   statement   for   the   year   ended December 31, 1999.','Statement of projected cash flows for 2000  ','Notes containing additional information that is useful interpreting the financial statements.','','','c','','post-utme','2012',99,'','0000-00-00 00:00:00','2020-07-14 13:22:07'),(46,'If the equipment account has a balance of N22.500 and its accumulated account has a balance of N14,000 the book value of the equipment is:  ','N22.500   ','N8.500 ','N 14,000  ','N36.500','','','b','','post-utme','2012',112,'','0000-00-00 00:00:00','2020-07-14 13:22:08'),(47,'The balance unearned rent account for Jones Co. as at 31st Dec. is 1,200. If Jones Co tailed to record the adjusting entry for 600 of rent earned during December, the effect on the balance sheet and income statement','for December is:',' Liabilities   overstated—N60Q:   c:et income overstate d 44600',' Liabilities   understated   £4500:   net income  understated N600','Asset    understated—N600:     net    income  overstated N600',' Liabilities   overstated   N600:    net income understated N600','','d','','post-utme','2012',102,'','0000-00-00 00:00:00','2020-07-14 13:22:09'),(48,'If goods purchased on account is returned, the buyer may inform the seller of the details by issuing:','An invoice  ','A debt memorandum','A credit memorandum  ',' A bill','','','c','','post-utme','2012',104,'','0000-00-00 00:00:00','2020-07-14 13:22:10'),(49,'Which of the following entries classes the  owner\\'s drawing account at the end of the period?','Debit the drawing account, credit the owner\\'s capital account','Debit the income summary account credit the drawing account','Debit   the   drawing account credit income summary accounting','Debit the owner\\'s capital account, credit the drawing account','','','d','','post-utme','2012',99,'','0000-00-00 00:00:00','2020-07-14 13:22:11'),(50,'At the end the fiscal year, account receivable has a balance of 100,000 and allowance for doubtful account has a balance of 7,000. The expected that realized value of the  receivable is: account','N 107,000','N100,000','c. N93,000','N 147,000','','','c','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-07-14 13:22:12'),(51,'Which of the following accounts would be classified as a current on the balance sheet?','Office Equipment','Accumulated Depreciation','Land','Accounts receivable','','','d','','post-utme','2012',107,'','0000-00-00 00:00:00','2020-07-14 13:22:13'),(52,'A petty cash fund is:','Used to pay relatively small amount','reimbursed when the amount of money in the fund is reduced to a predetermined minimum amount','Established by estimating the amount of cash needed for disbursement of  relatively small amount during a specified period  ','All of the above','','','d','','post-utme','2012',90,'','0000-00-00 00:00:00','2020-07-14 13:22:14'),(53,'A debit may signify: ','an increase in the owner\\'s capital amount','an increase in a liability account','a decrease in an asset account','an increase in an asset account','','','d','','post-utme','2012',109,'','0000-00-00 00:00:00','2020-07-14 13:22:15'),(54,'The receipt of cash from customers in a payment of their account would recorded by a','Debit to account receivable; credit to cash ','b  Debit to cash credit to accounts receivable  ','Debit to cash, credit to accounts payable  ','Debit to account payable credit to cash','','','b','','post-utme','2012',110,'','0000-00-00 00:00:00','2020-07-14 13:22:16'),(55,'The essential amount of depreciation or equipment for a period is 2,000 the adjusting end to record depreciation would be','Debit depreciation expense, 2000, credit expense, 2,000','Debit equipment, 2,000; credit depreciation expense, 2,000','Debit accumulated depreciation, 2,000. credit depreciation expense 2,000    ','Debit depreciation expense, 2,000; credit accumulated depreciation 2,000.','','','d','','post-utme','2012',100,'','0000-00-00 00:00:00','2020-07-14 13:22:17'),(56,'Which of the following assets could be described as a current asset?','Stock of goods for resale','Machinery to manufacture goods for resale ',' Buildings to house the machinery','Land on which the buildings stand.','','','a','','post-utme','2012',108,'','0000-00-00 00:00:00','2020-07-14 13:22:18'),(57,'The purchase journal records:','invoices from creditors','Debtors\\' invoices','Cash payments to suppliers','Amounts owing to employees for wage;','','','a','','post-utme','2012',107,'','0000-00-00 00:00:00','2020-07-14 13:22:40'),(58,'If a business shows a debit balance in its own record of its bank balance, this indicates.','The business has a bank overdraft','The business is a debtor of the bank','The business has money in the bank','The ledger entry must be wrong.','','','a','','post-utme','2012',91,'','0000-00-00 00:00:00','2020-07-14 13:22:42'),(59,'If a business pays for only 11 months rent during a financial year, what accounting term is given to the outstanding term is given to the outstanding one month\\'s rent? Which of the following equations properly represents a derivation of the fundamental accounting equation?','Assets + liabilities = owner\\'s equity ','Assets = owner\\'s equity','Cash = assets.  ','Assets - liabilities = owner\\'s equity','','','d','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-07-14 13:22:45'),(60,'A business shows total debtors\\' balances of N400,000 in its ledger at the end of its financial year. A customer owing N40,000 is bankrupt, and there is no possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor\\'s total will be included as a current asset in the balance sheet?','N400,000,   ','N352,800    ','N352,000.  ','N436,200 ','','','c','','post-utme','2012',87,'','0000-00-00 00:00:00','2020-07-14 13:22:46'),(61,'To arrive at the gross profit of a trading  business, which one of the following formulate is applied?','Sales - (Opening Stock-Purchases-Closing Stock)','Sales - (Opening stock + Purchases + Closing Stock)','Sales - (Opening stock + Purchases - Closing Stock)','Sales - (Opening stock - purchases + closing stock)','','','c','','post-utme','2012',100,'','0000-00-00 00:00:00','2020-07-14 13:22:48'),(62,' Which one of the following is not part of a company\\'s equity capital?','Ordinary shares','Preference shares','Voting Shares','Equity shares','','','c','','post-utme','2012',89,'','0000-00-00 00:00:00','2020-07-14 13:22:50'),(63,' An expenditure whose benefit is finished or enjoyed immediately is called: ','Expense   ','Liability ','Cost ','Income','','','a','','post-utme','2012',104,'','0000-00-00 00:00:00','2020-07-14 13:22:52'),(64,'Where no partnership agreements exist, a partner who puts a sum of money into a firm in excess of the capital he has agreed to subscribe is entitled to interest rate per annum on such money ','15%','10%','5%','2%','','','c','','post-utme','2013',101,'','0000-00-00 00:00:00','2020-07-14 13:22:53'),(65,'MORADE had total assets of N760,000, capital stock of N150,000 and retained earnings of N215,000. What was Morade\\'s debt-to-equity ratio? ','2.63','1.08','0.52','0.48','','','b','','post-utme','2013',96,'','0000-00-00 00:00:00','2020-07-14 13:22:55'),(66,'9.   Which   of   the   following   is   a   correct expression of the accounting equation? ','Assets = Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owners\\' Equity = Liabilities ','Assets = Liabilities - Owner\\'s Equity','','','a','','post-utme','2013',97,'','0000-00-00 00:00:00','2020-07-14 13:22:57'),(67,'Which of these items would be accounted for as an expense? ','repayment of a bank loan ','dividends to stockholders ','the purchase of land ','payment of the current period\\'s rent','','','d','','post-utme','2013',109,'','0000-00-00 00:00:00','2020-07-14 13:22:58'),(68,'At the end the fiscal year, account receivable has a balance of Nl00,000 and allowance for  doubtful   account  has a balance   of N7,000. The expected net realized value of the account receivable is: ','Nl07,000 ','N100,000 ','N93,000 ','N7,000 ','','','c','','post-utme','2013',112,'','0000-00-00 00:00:00','2020-07-14 13:23:00'),(69,'A debit balance of Nl50,000 in a cash account   shows   that   ','  cash  has   been overspent   by   N150,000   ','  there   was N150,000 cash in hand ',' the total of cash received   was   less   than   N150,000   ','N150,000 was the total of cash paid out. ','','','b','','post-utme','2013',94,'','0000-00-00 00:00:00','2020-07-14 13:23:01'),(70,'Posting  the  transactions   in bookkeeping means ','making the first entry of a double entry transaction ','entering items in a cash book ','making the second  entry of a double entry transaction ','something other than the above.','','','a','','post-utme','2013',113,'','0000-00-00 00:00:00','2020-07-14 13:23:02'),(71,' On December 31, 2012, Infinite Grace had a note payable due on August 1, 2013. On January 20, 2013, Infinite Grace signed a financing agreement to borrow the balance of the note payable from a lending institution to refinance the note. The agreement does not expire within one year, and no violation of any provision in the financing agreement exists. On  February 1, 2013. Infinite Grace was informed by its financial advisor that the lender is not expected to be financially capable of honouring the agreement. Infinite Grace\\'s financial statements were issued on March 31, 2013. How should Infinite Grace classify the note on its balance sheet at December 31,2012? ','as a current liability because the financing agreement was signed after the balance sheet datecapable of honouring the agreement   ','as a current liability because the leader is not expected to be financially ',' as   a   long-term   liability because  the agreement  does   not  expire within one year ',' as a long-term liability because no violation of any provision in the financing agreement exists.','','','c','','post-utme','2013',102,'','0000-00-00 00:00:00','2020-07-14 13:23:03'),(72,'A business shows total debtors\\' balance of N400,000 in its ledger at the end of its financial customer owing N40,00 are bankrupt, and there is no  possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor’ total will be included as a current asset in the balance sheet? ','N400,000  ','N352,800  ','N352, 000  ','N36, 200','','','b','','post-utme','2013',99,'','0000-00-00 00:00:00','2020-07-14 13:23:04'),(73,'Companies and  Allied  Matters  Act. 1990 requires  every  company   to  keep  certain statutory books. Which of the following is not part of the statutory books to be kept by the company? ','register of directors and secretaries ','a register of charges (fixed and floating) ','minutes books of meetings of the company and meetings of its directors ','a register of companies in the same line of business','','','d','','post-utme','2013',94,'','0000-00-00 00:00:00','2020-07-14 13:23:06'),(74,'The    main    objective   of   the   financial statements is to ','provide a true and fair- view of the financial position of the business ','help managers take correct decisions ','show every transaction affects two items in the  balance sheet ','help owners of a business to plan for the future.','','','a','','post-utme','2013',88,'','0000-00-00 00:00:00','2020-07-14 13:23:07'),(75,' Impersonal accounts contain ','capital and cash account ','nominal account and real account ',' real and cash account ','capital and real act minis ','','','b','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-07-14 13:23:08'),(76,'One of (he following errors will affect the agreement of the trial balance ','error of omission ','trial balance error ','principle error ','error of original entry','','','b','','post-utme','2013',139,'','0000-00-00 00:00:00','2020-07-14 13:23:10'),(77,'Which of the following is a fictitious asset? ','prepayments ','preliminary expenses ','investment ','plant and machinery ','','','b','','post-utme','2013',84,'','0000-00-00 00:00:00','2020-07-14 13:23:11'),(78,'  Which of the following is not part of the main uses of the journal ',' purchase and sale   of   fixed   assets   on  credit   ','the  correction of errors ','writing off bad debts ','none of the above','','','d','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-07-14 13:23:12'),(79,'…………………checks the arithmetical accuracy of double entry accounts ','trading account ','profit and loss account ','balance sheet ','trial lance','','','d','','post-utme','2013',107,'','0000-00-00 00:00:00','2020-07-14 13:23:14'),(80,'The distinguishing feature between a two-column and three-columncash book is','discount column','cash column','bank column','ledger folio','','','a','','wassce','2013',104,'Admin','2016-11-15 20:31:29','2020-07-14 13:23:15'),(81,'The lodgment of business cash into the business bank account is an example of','contra entry','bank reconciliation','self balancing ledger','reversal entry','','','b','','wassce','2013',129,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:16'),(82,'credit balance is','a liability or an expense.','a liability or an income.','an expenditure or an income.','an asset or an expense.','','','b','','wassce','2013',94,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:17'),(83,'Which of the following is not a characteristic of a Trial Balance?','It has columns for debit and credit balances','Total of debit balance equals total of credit balance','It is a statement','It is an account','','','d','','wassce','2013',99,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:18'),(84,'The capital of a sole trader changes as a result of','paying wages by cash.','equipment purchased by cheque.','drawings by cheque.','purchases on credit.','','','c','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:20'),(85,'The order of financial accounting process involves: (I) recording; (II) presenting; (III) collecting; (IV) analyzing.','I, II. Ill and IV','II, III, I and IV','Ill, I, II and IV','IV, III, II and I','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:21'),(86,'A dishonoured cheque is','debited in the cash book.','credited in the cash book.','double entry in the cash book.','credited in the bank book.','','','c','','wassce','2013',95,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:22'),(87,'A petty cashier received a float of GHc 120 and spent GHc 84. The imprest is','GHc 204.','GHc 120.','GHc 84.','GHc 36.','','','d','','wassce','2013',91,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:23'),(88,'Which of the following is not a book of original entry?','Cash Book','Purchases Ledger','Returns Outwards Journal','General Journal','','','b','','wassce','2013',83,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:25'),(89,'The current ratio is','1.87 : 1.','1 : 1.87.','1 : 2.','2 : 1.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',107,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:26'),(90,'The capital employed is','N=740,000.','N=580,000.','N=370,000.','N=280,000.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','c','','wassce','2013',102,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:28'),(91,'The returns on capital employed is','17.2%','16.2%.','15.2%.','11.2%.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:29'),(92,'The double entry principle states that','every debit entry must have a corresponding credit entry','every credit entry must have a corresponding double entry','every debit entry must have a corresponding double entry','every asset must have a corresponding liability.','','','a','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:31'),(93,'Which of the following is a nominal account?','Machinery Account','Drawings Account','Debtors Account','Wages Account','','','d','','wassce','2013',109,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:32'),(94,'Reserves account is kept in the','private ledger.','creditors ledger.','nominal ledger.','debtors ledger.','','','c','','wassce','2013',96,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:33'),(95,'An advantage of control account is','locating figures.','adding figures.','changing figures.','locating errors.','','','d','','wassce','2013',103,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:34'),(96,'The accumulated fund of a not-for-profit making organization is','a fixed asset.','a current asset.','a liability.','capital.','','','d','','wassce','2013',97,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:35'),(97,'A business is treated as being separate from the owners. This statement is emphasized by','consistency concept.','realization concept.','going concern concept.','business entity concept.','','','d','','wassce','2013',100,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:37'),(98,'Which of the following is recorded on the debit side of the Trial Balance?','Bank overdraft','Returns outwards','Purchases','Capital','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:38'),(99,'Which of the following is determined in the Trading Account?','Factory overheads','Cost of goods sold','Prime cost','Net profit','','','b','','wassce','2013',105,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:39'),(100,'Cash receipts and payments involving discounts are entered in','three-column cash book.','two-column cash book.','analytical cash book.','petty cash book.','','','a','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:40'),(101,'The minimum number of persons required to form a partnership business is','2.','3.','5','10.','','','a','','wassce','2013',88,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:41'),(102,'Which of the following accounts has a credit balance?','Returns Inwards Account','Machinery Account','Sales Account','Cash Account','','','c','','wassce','2013',93,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:42'),(103,'The accounting principle that states that, in the preparation of accounting statement, revenue are recognized as        soon as goods are passed on to the customer is the','materiality concept.','matching concept.','consistency concept.','realization concept.','','','d','','wassce','2013',109,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:43'),(104,'Agreement between partners is contained in the Partnership','Act.','Deed.','Accord','Deal.','','','b','','wassce','2013',113,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:43'),(105,'A low current ratio in a business indicates that the business is','faced with long term loan repayment problem.','efficient in the utilization of its resources.','unable to pay its bills on time.','growing its net asset effectively.','','','c','','wassce','2013',122,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:44'),(106,'Which of the following is a recurrent expenditure in public sector accounting?','Purchase of vehicles','Purchase of drugs','Construction of boreholes','Construction of buildings','','','b','','wassce','2013',97,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:56'),(107,'In departmental accounts, administrative expenses are recorded in the','Trading Account.','Balance Sheet.','Profit and Loss Account.','Profit and Loss Appropriation Account.','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:57'),(108,'The Public Accounts Committee is an organ of','military regime.','parliament.','presidency.','councilors.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:58'),(109,'The balance at the end of the period is',' 270,000.','139,000.','131,000.','120,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','c','','wassce','2013',89,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:59'),(110,'The total expenditure for the period is','319,000.','270,000','139,000.','109,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','d','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:00'),(111,'Which of the following is not an item on the credit side of the purchases ledger control account?','Cash received','Cash payment','Contra settlement','Cheque payment','','','a','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:01'),(112,'When a business is purchased from a sole trader, the excess of the purchase price over the net assets is','reserve.','goodwill.','freehold.','valuation price.','','','b','','wassce','2013',93,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:02'),(113,'A set of instructions or programs which controls the operation of a computer is','software.','hardware.','monitor.','keyboard.','','','a','','wassce','2013',101,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:03'),(114,'The process of detecting, tracing and eliminating errors in a computer program is','reproduction.','debugging.','sorting.','retrieving.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:04'),(115,'In a not-for-profit making organization, the cash book is referred to as','income and expenditure account.','receipts and payments account.','two column cash book.','petty cash book.','','','b','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:05'),(116,'When the going concern concept is no longer applicable, the fixed assets are recorded at their','net book value.','realizable value.','gross value.','revalued amount.','','','b','','wassce','2013',105,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:06'),(117,'The cost of raw materials consumed is','GHc 58,000.','GHc 52,500.','GHc 52,000.','GHc 50,000.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','b','','wassce','2013',105,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:07'),(118,'The prime cost is','GHc 64,500.','GHc 64,000.','GHc 58,500.','GHc 52,500.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','a','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:07'),(119,'Which of the following relates to the essence of partnership? To','run a charity organization.','pursue a social objective.','form a business for profit.','run a religious objective.','','','c','','wassce','2013',92,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:08'),(120,'The basic assumption which underlines the preparation of periodic financial statement is known as accounting','bases.','techniques.','concepts.','method.','','','a','','wassce','2013',113,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:09'),(121,'Upon the dissolution of a partnership business, the party to be settled first out of the proceeds realized is','unsecured creditors.','partners’ loan and advances.','secured creditors.','partners’ capital.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:10'),(122,'Stock account is a type of','nominal account.','personal account.','real account.','fixed assets account.','','','c','','wassce','2013',96,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:11'),(123,'At the end of a trading period, cost of goods sold is debited to the trading account while cost of services is        debited to the','balance sheet.','manufacturing account.','trading account.','profit and loss account.','','','d','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:12'),(124,'Which of the following is not part of prime costof production?','Depreciation of factory equipment','Direct expenses','Direct wages','Carriage on raw materials','','','a','','wassce','2013',94,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:13'),(125,'Excess of current assets over current liabilities is','deferred capital.','nominal capital.','working capital','authorized capital.','','','c','','wassce','2013',82,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:14'),(126,'A statement showing a trader’s financial position as at a particular date is a/an','trading account.','profit and loss account.','balance sheet.','appropriation account.','','','c','','wassce','2013',107,'Admin','2016-11-15 20:31:31','2020-07-15 10:38:37'),(127,'A trading account is prepared to disclose the','net profit or loss for the year.','gross profit or loss for the year.','accumulated fund for the year.','gross profit on manufacturing.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:16'),(128,'Balance as per cash book 2, 970  Bank Charges 220 ;Unpresented cheques 3, 950; Uncredited cheques 4,178 ; Direct debit by bank 1, 000 . Determine  the balance as per bank Statement','N1,978','N1,962','N1,522','N2,522','','','d','','utme','2016',93,'Admin','2016-11-16 07:48:40','2020-07-14 13:24:17'),(129,'The records of Superstores shows a loan of  N14,000 from Bala, creditor N8, 000 and assets N190, 500. What is the firm’s capital?','184, 000','1 96, 500','212 000','168, 500','','','d','','utme','2016',99,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:18'),(130,'The major advantage of the journal proper is that it','helps in the preparation of the balance sheet','prevents fraud and theft of item of the business','serves as a book of instruction to the bookkeeper','helps the banking industry to be efficient.','','','b','','utme','2016',91,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:18'),(131,'One of the objectives of accounting is that it can be used for','business decision making','due process in business','motivating employees','determining the work force.','','','a','','utme','2016',90,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:19'),(132,'The ratio that gives the indication of the efficiency of a firm’s sales with respect to cost of goods sold is a','return on capital employed','gross profit margin','net profit margin','return on equity.','','','b','','utme','2016',102,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:20'),(133,'The instrument used in analysis and interpretation of financial statement is the','accounting ratios','income and expenditure extract','balance sheet extract','fund accounting.','','','a','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:21'),(134,'An item in the balance sheet of a limited liability company is','accrued expenses','lighting and heating','salaries and wages','general expenses.','','','a','','utme','2016',103,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:22'),(135,'The documents that provide instant information to firms on their transactions with banks are','bank statement and debit note','cheque stub and deposit slip','cheque book and cashbook','payslip and credit invoice.','','','a','','utme','2016',91,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:23'),(136,'Which of the following is the capital reserve of a company?','Accumulated depreciation.','Retained profit.','Share premium','Loss on forfeited shares','','','b','','utme','2016',97,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:24'),(137,'The effect of overstating-revenue expenditure in the profit and loss account is that the','opening stock will be increased','net profit will be understated','net profit will be overstated','opening stock will be decreased','','','b','','utme','2016',92,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:25'),(138,'Which of the following conditions would attract credit and debit notes to be used?','When goods are received from supplier.','When a trial balance is extracted','When a buyer is under or over charged.','When goods are sold to a buyer.','','','c','','utme','2016',112,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:26'),(139,'Given:  Drawings [3,500]; Net loss [2, 500]; Capital 1.1.2007 [35, 000], Additional capital [10, 000]. The adjusted capital as at 31 : 12 : 2007 is','N45, 000','N39,000','N35, 000','N46, 000','','','d','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:27'),(140,'A receipt is an evidence of','payments','stocking','delivery','discounts.','','','a','','utme','2016',91,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:28'),(141,'An organization which has records of only personal accounts is said to be operating on the basis of','single entry','real accounts','double entry','nominal accounts','','','a','','utme','2016',117,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:29'),(142,'A proprietor started business with N13, 000.  Assets and liabilities at the end of the year; fixed assets N8, 800, stock N2, 600, debtors  N1 , 000, cash N3, 000 and creditors N1 , 000. Determine the profit for the year?','N2, 400','N3, 000','N9, 800','N 1 , 400','','','d','','utme','2016',91,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:29'),(143,'Badge Plc issued 450, 000 ordinary shares, of 50K each at N1 .50 per share. Application and allotment 45k, 1st call 50k, 2nd call 55k. Determine the amount received on final call.','N225, 000','N236, 250','N 247, 500','N 202, 500','','','c','','utme','2016',107,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:30'),(144,'When goods are sent to the branch at cost plus mark­up, it means that the branch should sell at','a price above or below the stipulated price','any price but not below the transfer price','cost price','a price that is equal to the mark-up.','','','a','','utme','2016',83,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:31'),(145,'The income and expenditure account differs from receipts and payments account because it','accounts for notional charges','records transactions that relate to the period on cash basis','records transactions that relate to the period  on accrual basis','accounts for balance of cash at bank.','','','b','','utme','2016',105,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:32'),(146,'The major sources of revenue for the state and local governments is','value added tax','statutory allocation','taxes and levies','recurrent revenue.','','','b','','utme','2016',101,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:33'),(147,'Which of the following -is -correct about the imprest system?','II and IV','I, III and IV','I, II and III','III and IV','I.   The amount of the imprest is the same from one organization to another. II. At the end of a fixed period, the petty cashier received a fixed sum of money.  III.  At the end of a period, the petty-cashier is reimbursed, with the amount spent in that period. IV. The system is a method by which a measure  of control is kept on petty cash expenses','','c','','utme','2016',104,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:46'),(148,'When the fixed capital method is used, the partners share of profits and remunerations are credited to the','current account.','profit and Loss account.','profit and loss appropriation account.','capital account.','','','d','','utme','2016',110,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:47'),(149,'A discount that is allowed to encourage a debtor to pay off his debt within a period is the','trade discount','annual discount','periodic discount','cash discount.','','','d','','utme','2016',111,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:48'),(150,'The costs of acquiring fixed assets and bringing them into the firm is a','general expenses','recurrent expenditure','revenue expenditure','capital expenditure.','','','d','','utme','2016',106,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:49'),(151,'The impersonal account is subdivided into','realand nominal accounts','nominal and personal accounts','real and current accounts','personal and real accounts.','','','a','','utme','2016',98,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:50'),(152,'Opening balance of Diksacompany was 12, 202, closing balance N15,300, total cash received during the period N40, 000. What was the amount of cash paid during the same period?','N36. 902','N27,502','N12,498','N43.098','','','c','','utme','2016',110,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:51'),(153,'The total cash and cheques received from customers in a control account is derived from the','income and expenditure account','cashbook','purchases day book','sales journal','','','d','','utme','2016',97,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:52'),(154,'Which of the followings is a credit item in creditors ledger control account?','Returns outwards.','Discount Received.','Bad debts.','Purchases.','','','d','','utme','2016',122,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:53'),(155,'The trader’s capital in a single entry system is ascertained by preparing','gross profit','statement of affairs','suspense account','appropriation account','','','b','','utme','2016',101,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:54'),(156,'From the information above, sources of income for a Not-for-profit making organization include','I, III, IV','I, II, III','I, II, IV','I and IV','I.   Members subscription II.  Fines  from members  III. Donation  IV.  Loan from bank','','b','','utme','2016',95,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:55'),(157,'Clifford pays rent of  N200 per month for premises. He paid N 2,800 within the year, Compute the prepayment.','N300','N400','N660','N200','','','b','','utme','2016',109,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:56'),(158,'Purchases can be ascertained through the preparation of a','stock account','sales account','total debtors’ control account','total creditors, control account','','','d','','utme','2016',87,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:57'),(159,'When stock is withdrawn, for personal use, the accounting entries is to debit','stock account, credit drawings','drawing account credit stock account','personal account credit cash account','cash account, credit personal account.','','','b','','utme','2016',156,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:58'),(160,'Sundry debtors in the balance sheet of Onoja Bakery and Sons totaled N800,000. A provision of 2% was made for discount and 5% provision for bad and doubtful debts.  Find the amount for sundry debtors after provision.','N744,800','N 760,000','N784, 000','N744, 000','','','d','','utme','2016',93,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:59'),(161,'Which of the following is accounted for in receipts and payments account?','Accrued expenses on annual dances','Subscriptions due but not yet received','Interest on bank deposit','Depreciation of the club house.','','','c','','utme','2016',93,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:59'),(162,'When the purchase Consideration is lower than the net asset, the buyer has gained the advantage of','capital reserve','revenue reserve','net-income','net loss','','','a','','utme','2016',81,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:00'),(163,'An increase in government expenditure within a year is taken care of by means of','virement','financial regulations','supplementary estimate','warrant.','','','b','','utme','2016',96,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:01'),(164,'A business organization prepares departmental account in order to','ascertain the contribution of each department to the organization','ascertain interdepartmental transfer','build other branches','know the number of departments in the organization.','','','a','','utme','2016',92,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:02'),(165,'The objective of departmental account is to','ascertain the amount of profits or losses for the enterprise','ascertain the amount of profits or losses for each department','ascertain the cost of running the organization.','offset the loss of each department.','','','b','','utme','2016',108,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:03'),(166,'Which of the following expenses relate to the profit and loss account of a manufacturing firm?','Administrative overhead.','Direct labour','Direct materials.','Work-in-progress.','','','a','','utme','2016',102,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:04'),(167,'The difference between book keeping and accounting is that while','book keeping interprets data accounting records it','book keeping is regarded as  the language of the business, accounting ascertains its .strength and weakness','book keeping records data accounting interprets it','book keeping - summaries information, accounting communicates it.','','','c','','utme','2016',105,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:05'),(168,'Alaka who owed Saka N15, 000, settled his deb  after- deducting cash discount of 10%. To record the discount in the book of Saka, debit','Saka’s account and credit discount received account','Alaka’s account and credit discount received account','discount received account andcredit Alaka’s account','discount allowed account and credit Alaka’s account.','','','a','','utme','2016',111,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:06'),(169,'If the scrap value is now N15, 000, what will be the yearly depreciation using straight line method?','N11 000','N7, 000','N 4, 000','N24. 000','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','c','','utme','2016',104,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:07'),(170,'The yearly depreciation using the straight line method would be','N5,200','N6,500','N8, 800','N4, 400','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','a','','utme','2016',97,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:08'),(171,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N  5,000','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','c','','utme','2016',104,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:14'),(172,'The market value of goods produced is','N30,500','N3, 600','N31,600','N31,620','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','b','','utme','2016',126,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:15'),(173,'A suspense account is used to','agree the trial balance','record sales','record purchases','correct errors','','','a','','wassce','1997',61,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:16'),(174,'To correct an error, the Purchases Account was debited while Suspense Account was credited. Which  of  the following was the cause of the error?','Under casting of purchases','Overcasting of purchases','Original entry.','Transportation of returns outwards','','','a','','wassce','1997',71,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:17'),(175,'Subscription in advance is treated in the Balance Sheet of \tnon-profit making organizations as','current asset','fixed asset','Current liability','accumulated fund','','','c','','wassce','1997',96,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:18'),(176,'A Sales Day Book is used to record','cash sales of stock','credit sales of stock','cash and credit sales of stock','cash sales of fixed assets','','','b','','wassce','1997',91,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:19'),(177,'Which of the following is not a capital expenditure to a local government?','Beds','Theatre equipment','Incubators','Drugs','','','d','','wassce','1997',92,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:20'),(178,'A Receipt and Payments Account reveals','net profit','surplus','cash in hand','gross profit','','','c','','wassce','1997',99,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:21'),(179,'An example of appropriation of profit in a company is','salaries','rent income','debenture interest','dividend.','','','d','','wassce','1997',73,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:22'),(180,'In a partnership goodwill is recognized when','a new partner is admitted','a partner is dormant','the business is making huge profit','the business has good customer relations','','','a','','wassce','1997',88,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:23'),(181,'Which of the following is a normal account?','Machinery','Debtors','Creditors','Salaries','','','d','','wassce','1997',94,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:24'),(182,'The net book value at the time of sale was','N=  16,000','N=  14,000','N=  12,000','N= 6,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',93,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:25'),(183,'Accumulated depreciation at the time of sale was','N= 16,000','N=  14,000','N=  12,000','N=  8,000','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','b','','wassce','1997',76,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:25'),(184,'The prof it on sale was','N=  8,000','N=  7,000','N=  6,000','N=  1,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',81,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:26'),(185,'In Manufacturing Account, prime cost plus factory overhead is known as','conversion cost','cost of raw materials consumed','total cost','production cost','','','d','','wassce','1997',82,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:36'),(186,'Which of the following is an advantage of the imprest system?','Making high profits in the business','Rewarding the imprest holder','Easy preparation of the final accounts','Meeting small items of expenditure','','','d','','wassce','1997',78,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:37'),(187,'Where a business is purchased, the full amount of the purchase consideration is credited to','Purchase of Business Account','Creditor’s Account','Vendor’s Account','Purchaser’s Account.','','','a','','wassce','1997',76,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:38'),(188,'A financial plan of action expressed in monetary terms is known as','imprest','consolidated fund','warrant','budget','','','d','','wassce','1997',89,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:40'),(189,'Which of the following is not a source document for recording sales?','Debit note','Credit note','Receipt','Sales journal','','','d','','wassce','1997',105,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:41'),(190,'The mark-up is','N  15,000','N 9,000','N  4,000','N  3,000','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','d','','wassce','1997',82,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:42'),(191,'The double entry required for the mark-up is debit Branch','Sales Account, credit Branch Adjustment Account','Adjustment Account, credit Branch Stock Account','Stock Account, credit Branch Adjustment Account','Profit and Loss Account, credit Branch Stock Account,','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','c','','wassce','1997',73,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:43'),(192,'A ledger is a','book of accounts','summary of entries','book of original entry','double entry posting','','','d','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:44'),(193,'A real account is the account of','expenses or losses','gains or income','physical tangible items','fictitious items','','','c','','wassce','1997',87,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:45'),(194,'An item is fictitious because it','does not exist','is too costly','is worthless','cannot be sold for cash','','','a','','wassce','1997',80,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:46'),(195,'Which of the following is not a personal account?','Bolaji Account','Drawings Account','P.Z. Plc Account','Cash Account','','','c','','wassce','1997',90,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:47'),(196,'A provision is','an expense of business to be paid for in cash','an amount of loss from trading activities','a loss in value of all business assets','an expense the amount of which is not certain','','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:48'),(197,'A cash discount is a','Trading Account item','Profit and Loss Account item','Appropriation Account item','Receipts and Payments Account item','','','b','','wassce','1997',81,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:49'),(198,'The amount of capital expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','b','','wassce','1997',77,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:49'),(199,'The amount of revenue expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','c','','wassce','1997',100,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:50'),(200,'An expense becomes an accrual because it','is due for payment','is a Profit and Loss Account item','is a Trading Account item','is to be paid within the next one year','','','a','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:51'),(201,'The amount for which a business is sold is known as','goodwill','capital reserve','purchase consideration','premium','','','c','','wassce','1997',74,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:52'),(202,'The person, who is responsible for the formation of a company is called the','promoter','sponsor','shareholder','director','','','a','','wassce','1997',76,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:53'),(203,'The amount of a company’s profit given to a shareholder is known as','premium','dividend','interest','allotment','','','b','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:54'),(204,'Which of the following best describes the path of a transaction?','Source documents to Journal to Ledger','Source documents to Ledger to Journal','Journal to Ledger to source documents','Journal to source documents to Ledger','','','a','','wassce','1997',97,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:55'),(205,'Where there are no proper books of account, the capital at the commencement of a period is ascertained by preparing','Total Debtors and Creditors Accounts','Bank Reconciliation Statement','Statement of Affairs','Trading, Profit and Loss Accounts','','','c','','wassce','1997',94,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:56'),(206,'Rent receivable is a','current asset','current liability','contingent liability','fictitious asset','','','b','','wassce','1997',94,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:58'),(207,'Which of the following is a factory overhead?','carriage on raw materials','Purchase of raw materials','Production wages','Depreciation of factory equipment.','','','d','','wassce','1997',94,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:59'),(208,'The purchase consideration was','N  24,000','N 23,000','N  20,000','N 15,000','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','a','','wassce','1997',66,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:00'),(209,'The amount of goodwill was','N  4,000','N  3,000','N  2,000','N  1,000.','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','d','','wassce','1997',88,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:01'),(210,'When a share is sold for less than its nominal value, the difference is called','discount','reserve','premium','loss','','','a','','wassce','1997',83,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:02'),(211,'Which of the following serves the same purpose as a Trading Account?','Branch Adjustment Account','Goods sent to Branch Account','Branch Stock Account','Branch Debtors Account','','','c','','wassce','1997',91,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:03'),(212,'Which of the following is not a revenue receipt?','Receipt from sales of goods','Rent from premises sublet','Interest on savings account','cash on sale of fixed asset','','','d','','wassce','1997',90,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:03'),(213,'The art of collecting, recording, presenting and interpreting accounting data is','cost accounting','management accounting','financial accounting','data processing.','','','c','','wassce','2006',96,'Admin','2016-11-18 07:56:05','2020-07-14 13:26:04'),(214,'The depreciation method in which the number of years of the useful life of an asset is allocated in a reverse order is','straight line','reducing balance','sum of the years’ digits','revaluation.','','','c','','wassce','2006',105,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:05'),(215,'A system where a separate cash book is maintained for small payments is','single entry','imprest','float','reimbursement.','','','b','','wassce','2006',105,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:06'),(216,'Public sector accounting is practiced in','public limited companies','government organizations','profit making organizations','public trading companies.','','','b','','wassce','2006',121,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:07'),(217,'A book that contains the accounts for the financial transactions of an organization is the','journal','ledger','folio','register','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:08'),(218,'A sales ledger contains','creditors’ accounts','nominal accounts','real accounts','debtors’ accounts.','','','d','','wassce','2006',121,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:09'),(219,'Books of account consists of','ledgers and subsidiary books','ledgers and principal books','folios and subsidiary books','ledgers and cash book.','','','a','','wassce','2006',93,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:10'),(220,'The amount set aside out of profits earned by a company which are not meant for liability or contingency are','dividends','provisions','retained profits','reserves','','','d','','wassce','2006',105,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:11'),(221,'The basis of accounting which eliminates debtors and creditors is','cash basis','accrual basis','fund basis','commitment basis.','','','a','','wassce','2006',102,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:12'),(222,'Which of the following is not a revenue account?','Sales','Purchases','Discount received','Interest received','','','b','','wassce','2006',100,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:13'),(223,'If  no profit is to be retained, proposed preference shares dividend is','N  28,000','N  16,000','N  12,000.','N  4,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',87,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:14'),(224,'If  no profit is to be retained, proposed ordinary shares dividend is','N   48,000','N  44,000','N  40,000','N  28,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','c','','wassce','2006',95,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:15'),(225,'The dividend per ordinary share for the year is','N  0.88 kobo','N  0.40 kobo','N  0.20 kobo','N  0.17 kobo','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',97,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:16'),(226,'A customer who returns goods to the supplier because they are defective is issued a','debit note','credit note','delivery note','bank note.','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:17'),(227,'Cross referencing among different books of accounts is achieved with the use of','columns','reference numbers','folio','margin.','','','c','','wassce','2006',101,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:18'),(228,'In company accounts, profit after tax is shared in the','appropriation account','revaluation account','current account','realization account.','','','a','','wassce','2006',93,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:19'),(229,'Which of the following is not a source of revenue to a government?','Taxation','Sale of goods','Imposition of fines','Grants','','','b','','wassce','2006',102,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:20'),(230,'Whatever is fed into the computer is exactly what would be processed and produced as output. This is the concept of','sorting out','last in, first out','first in, first out','garbage in, garbage out.','','','d','','wassce','2006',101,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:20'),(231,'Bank reconciliation statement reconciles','bank and cash balances in the cash book','bank balance in the cash book and bank statement balance','cash balance in the cash book and bank statement balance','bank balance brought down and bank balance carried down in the cash bcok.','','','b','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:21'),(232,'The unit which keeps government’s books of accounts is the','Central Bank','Internal Audit Department','Treasury Department','Accountant General’s Department.','','','c','','wassce','2006',86,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:22'),(233,'Which of the following is not a debit item in a partnership \tappropriation account?','Interest on drawings','Partner’s salary','Interest on partner’s capital','Share of profit.','','','a','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:23'),(234,'Revenue is recognized in the profit and loss account as soon as a','debtor pays what is due from him','sale of goods takes place and money is received','sale of goods takes place whether or not money is received','sale of a fixed asset takes place.','','','c','','wassce','2006',93,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:24'),(235,'“A business unit is assumed to operate into foreseeable future and earn reasonable net income”. This statement is emphasized by the concept of','business entity','going concern','realization','accrual.','','','b','','wassce','2006',114,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:25'),(236,'Which of the following is not used in solving problems of incomplete records?','Control Accounts','Statement of affairs','Cash book','Balance sheet','','','d','','wassce','2006',110,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:26'),(237,'In a system of incomplete records, the opening capital is determined by preparing','statement of affairs','balance sheet','cash book','trial balance.','','','a','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:27'),(238,'Cost of raw materials consumed is','D113,000','D105,500','D98,000','D95,500.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','c','','wassce','2006',92,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:28'),(239,'Prime cost is','D120,500','D117,700','D114,900','D114,300.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','b','','wassce','2006',86,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:29'),(240,'Cost of goods manufactured is','D138,000','D131,800','D130,500','D123,000.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','a','','wassce','2006',82,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:30'),(241,'A set of instructions fed into a computer for accomplishing a given task is a/an','input','programme','output','data.','','','b','','wassce','2006',107,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:31'),(242,'Control accounts are also known as','contra accounts','total accounts','ledger accounts','integral accounts.','','','b','','wassce','2006',102,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:32'),(243,'Which of the following is charged to trading account?','Discounts allowed','Carriage outwards','Salaries','Carriage inwards.','','','d','','wassce','2006',105,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:33'),(244,'Which of the following is not a debit item in a creditor’s control \taccount?','Cash paid','Returns outwards','Purchases','Discounts received','','','c','','wassce','2006',96,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:34'),(245,'Using the straight line method, the depreciation charged for year 2002 was','N 160,000','N  130.000','N  100,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:35'),(246,'Using the reducing balance method, the depreciation charged for year 2002 was','N 100,000','N  90,000','N  80,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:36'),(247,'Using the reducing balance method, the depreciation charged for year 2003 was','N  160,000','N  150,000','N   130,000','N  120,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','b','','wassce','2006',90,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:37'),(248,'Which of the following is not a revenue expenditure?','Payment: of salaries','Payment for advertisement','Purchases of motor vehicle','Purchases of goods.','','','c','','wassce','2006',87,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:38'),(249,'The amount allowed off the cost price of an article to stimulate patronage is','cash discount','trade discount','discount on debt','discount on bills.','','','b','','wassce','2006',101,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:39'),(250,'Which of the following is a Journal as well as an account?','Sales day book','Cash book','General journal','Purchases journal','','','c','','wassce','2006',93,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:40'),(251,'Which of the following columns of a three column cash book \tare memoranda?  I. Discount received  II. Discount allowed III. Cash IV. Bank','I and II only','I and III only','II and III only','ll and IV only.','','','d','','wassce','2006',112,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:48'),(252,'The adjusted cash book balance is','D11,200','D8,400','D6,200','D5,600','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','d','','wassce','2006',99,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:49'),(253,'The balance as per bank statement is','D10,900','D8,400','D5,600','D2,800','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','b','','wassce','2006',96,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:50'),(254,'Where the head office maintains all books of account, goods sent to branch is credited to','Goods Sent to Branch Account','Branch Stock Account','Branch Stock Adjustment Account','Head Office Current Account','','','a','','wassce','2006',91,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:51'),(255,'Which of the following is not a purpose for preparing departmental accounts? To','compare the results of different departments','employ staff into different departments','reward departmental managers','obtain information for formulating policies.','','','b','','wassce','2006',89,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:52'),(256,'Rent expenses for the year 2005 is','N 11,400','N  11,300','N  11,200','N  10,200.','Rent accrued 1st January, 2005 [600], Rent paid in 2005 [11,300], Rent prepaid 31st December, 2005 [500]','','c','','wassce','2006',119,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:53'),(257,'Which of the following is not classified as an overhead?','Factory rates','Factory power','Factory building extension','Factory depreciation.','','','c','','wassce','2006',100,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:54'),(258,'The objective of accounting information is to enable users to','prepare the financial statements.','value stock','make decisions','prepare budgets','','','c','','wassce','2012',103,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:55'),(259,'Trade discounts are given for','bulk purchases','prompt payment','quick delivery','cash payment','','','a','','wassce','2012',96,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:56'),(260,'When closing stock is overstated, it would reduce','cost of sales and increase gross profit.','gross profit and increase cost of sales.','purchases and increase sales.','sales and increase purchases.','','','a','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:58'),(261,'Which of the following is not a source document?','Journal proper','Sales invoice','Debit note','Credit note','','','a','','wassce','2012',98,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:59'),(262,'A fixed asset fully written-down by a trader is now considered to be worth N5,000. The double entry required to effect       this is: debit','Asset Account; credit Purchases Account.','Asset Account; credit Capital Account.','Capital Account; credit Asset Account.','Capital Account; credit Profit and Loss Account.','','','b','','wassce','2012',92,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:00'),(263,'Which of the following is a book of original entry?','Ledger','Balance sheet','Bank statement','Sales journal','','','d','','wassce','2012',104,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:01'),(264,'A Balance Sheet shows only','fixed assets and current assets','assets and long term liabilities.','assets and liabilities','assets and capital','','','c','','wassce','2012',89,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:02'),(265,'The process of entering transaction from one book to another is','reading.','posting.','numbering','listing','','','b','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:02'),(266,'which of the following is a Trading Account item?','Discounts allowed','Discounts received','Carriage outwards','Carriage inwards','','','d','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:03'),(267,'The addition of prime cost and factory overheads is','total factory overheads.','market value of goods produced.','cost of goods produced','work-in-progress.','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:04'),(268,'Capital receipt is collected','on sales of motor vehicle.','on sales of stock in trade.','from trade debtor','from trading activities.','','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:05'),(269,'Which of the following is an example of factory overheads?','Salary of marketing officer','Salary of production officer','Salary of accounting officer','Wages of machine operator','','','d','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:06'),(270,'Osa started business with Le40,000 cash. The accounting entry is debit','Cash Account; credit Capital Account.','Capital Account; credit Cash Account.','Purchases Account; credit Cash Account.','Expenses Account; credit Capital Account.','','','a','','wassce','2012',99,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:07'),(271,'Branch Stock Account is used to determine the','net value of goods sent to branch.','gross profit of the branch.','branch credit sales.','branch net profit or loss.','','','b','','wassce','2012',96,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:08'),(272,'The name given to a budget in public service accounting is','vote.','subvention.','general order.','estimate.','','','d','','wassce','2012',95,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:09'),(273,'Which of the following is not prepared by a partnership?','Trading Account','Profit and Loss Account','Income and Expenditure Account','Profit and Loss Appropriation Account','','','c','','wassce','2012',102,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:10'),(274,'A partner who only makes capital contribution but does not take part in the management of the partnership business is a/an','ordinary partner','limited partner','dormant partner','nominal partner','','','d','','wassce','2012',98,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:11'),(275,'Which of the following is component of prime cost?','Depreciation','Royalty','Factory rent','Factory electricity','','','d','','wassce','2012',106,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:12'),(276,'The concept which establishes the rule for the periodic recognition of revenue as soon as it is capable of objective measurement is','going concern.','entity.','consistency.','realization.','','','d','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:13'),(277,'Rent accrued in 2009 was D140. In 2010, D900 was paid while D160 was outstanding. Rent for 2010 was','D1,200.','D1.060.','D920.','D880.','','','c','','wassce','2012',82,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:14'),(278,'Which of the following is not an input device?','Card reader','Paper top reader','Alpha-numeric keyboard','Line printer','','','d','','wassce','2012',74,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:35'),(279,'The equivalent of Income and Expenditure Account in a trading concern is','Trading Account.','Profit and Loss Account.','Appropriation Account.','Balance Sheet.','','','b','','wassce','2012',106,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:36'),(280,'The term used to denote the capital of a not-for-profit making \torganization is','annuity fund.','nominal capital.','circulating capital.','cumulated fund','','','d','','wassce','2012',97,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:37'),(281,'The portion of authorized capital that has been allotted to subscribers is','called up capital','paid up capital.','issued capital','nominal capital.','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:38'),(282,'Partners whose liabilities are restricted to their financial contribution to the partnership in the event of winding up are','ordinary partners','limited partners','dormant partners','sleeping partners','','','b','','wassce','2012',84,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:39'),(283,'If creditors at 1/1/10 were Le 3,000; creditors at 31/12/10 Le 5,500 and payments to creditors Le 29,000. The purchases figure for 2010 is','Le 34,500','Le 32,000','Le 31,500','Le 26,500','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:40'),(284,'Which of the following is not found in the personal ledger?','Debtors Account','Creditors Account','Capital Account','Nominal Account','','','c','','wassce','2012',105,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:41'),(285,'The Sales Ledger Control Account is also referred to as','Bought Ledger Control Account.','Purchases Account.','Total Debtors Account.','Total Creditors Account.','','','c','','wassce','2012',96,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:42'),(286,'Capital expenditure for the year was','Le 545,000','Le 490,000','Le 450,000','Le 300,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','b','','wassce','2012',99,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:43'),(287,'The amount of recurrent expenditure was','Le 245,000.','Le 175,000','Le 135,00.','Le 80,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','c','','wassce','2012',95,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:44'),(288,'An increase in the provision for doubtful debts results in a/an','increase in the gross profit.','decrease in the gross profit.','decrease in the net profit.','increase in the net profit.','','','c','','wassce','2012',83,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:47'),(289,'Which of the following errors affects the agreement of a Trial Balance?','Wrong addition in the sales account','Crediting a purchase to A. Tambi’s account instead of F. Tambi’s account','Failure to enter sales in the books','Posting the purchase of a van to the debit side of the purchases account','','','a','','wassce','2012',92,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:53'),(290,'The excess of the value of assets over the purchase \tconsideration on acquisition of a business is credited to','share capital account.','goodwill account.','capital reserve account','general reserve account.','','','c','','wassce','2012',96,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:55'),(291,'Shares of N3 nominal value were issued at a price of  N4. The difference of N1 is a','commission.','discount.','premium.','bonus.','','','c','','wassce','2012',102,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:59'),(292,'Which of the following is not the purpose of control account?','Check on errors of addition','Locate errors','Locate missing figures','Monitor the cash book','','','d','','wassce','2012',101,'Admin','2016-12-13 21:23:14','2020-07-14 13:28:00'),(293,'Which of the following is not part of the Central Processing Unit of a computer?','Arithmetical and Logical unit','Memory unit','Input unit','Control unit','','','c','','wassce','2012',110,'Admin','2016-12-13 21:23:14','2020-07-14 13:28:01'),(294,'The double entry to record the proceeds on disposal of assets is debit','Bank Account; credit Asset Disposal Account.','Asset Disposal Account; credit Bank Account.','Provision for Depreciation Account; credit Asset Disposal Account','Asset Disposal Account; credit Provision for Depreciation Account.','','','a','','wassce','2012',87,'Admin','2016-12-13 21:23:14','2020-07-14 13:28:10'),(295,'An underwriter for a company’s share is paid','Interest.','commission.','dividend.','salary.','','','b','','wassce','2012',100,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:11'),(296,'Which of the following is found in a Memorandum of \tAssociation?','Names of directors','Appointment of directors','Object of the business','Payment of dividend','','','c','','wassce','2012',98,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:12'),(297,'Administrative, selling and distribution expenses in a \tmanufacturing firm are recorded in','Trading Account.','Manufacturing Account.','Profit and Loss Account.','Balance Sheet.','','','c','','wassce','2012',118,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:25'),(298,'Which of the following is not a revenue to a local government?','Fines','Licenses','Personal income tax','Tenement rates','','','c','','wassce','2012',91,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:26'),(299,'The capital is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','a','','wassce','2012',95,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:27'),(300,'The liability is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','d','','wassce','2012',115,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:28'),(301,'Which of the following is not an item in the profit and loss account?','Drawings','Interest','Balances','Bad debts','','','a','','wassce','2012',95,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:29'),(302,'A loss made on the disposal of a fixed asset is debited to','Sales Account.','Purchases Account.','Profit and Loss Account.','Capital Account.','','','c','','wassce','2012',99,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:30'),(303,'Which of the following describes a trial balance?','It is a special account','It is a list of balances in the books','It reveals the financial position of a business','It shows all the entries in the books of a business','','','b','','wassce','2015',75,'Admin','2016-12-14 06:09:04','2020-07-14 13:28:31'),(304,'Which of the following is not a feature of accounting information?','Affordability','Timeliness','Accuracy','Completeness','','','a','','wassce','2015',87,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:32'),(305,'Which of the following is the equation for determining net profit or loss from the records of a firm?','Closing Capital - Drawings - Capital Introduced','Opening Capital + Drawings - Closing Capital','Closing Capital + Opening Capital - Drawings','Closing Capital + Drawings - Opening Capital','','','d','','wassce','2015',98,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:33'),(306,'Purchase invoice is first entered in the','purchases account','cash book','sales journal','purchase journal','','','d','','wassce','2015',91,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:34'),(307,'Assets acquired is recorded by debiting','Asset Account, crediting Cash Account','Cash Account, crediting Asset Account','Purchase of Business Account, crediting Sale of Business Account','Asset Account, crediting Purchase of business Account','','','a','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:35'),(308,'Goods returned to a supplier is','debited to Returns outwards account','credited to Returns outwards account','debited to Returns inwards account','credited to Returns inwards account','','','b','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:36'),(309,'Which of the following is a real account?','Plant account','Salaries account','Creditors account','Trading account','','','a','','wassce','2015',89,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:37'),(310,'The accounting ledger for goods sold on credit are debit','Debtors Account, credit Sales Account','Creditors Account, credit Sales Account','Sales Account, credit Debtors Account','Sales Account, credit Creditors Account','','','a','','wassce','2015',82,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:38'),(311,'Which of the following is not a book of original entry?','Sales journal','Purchases account','Cash account','Return inwards journal','','','c','','wassce','2015',91,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:39'),(312,'What is the ledger entry for the sale of plant and machinery on credit to Wilson?','Credit Sales Account and debit Cash Account','Credit Plant and Machinery Account and debit Wilson’s Account','Credit Sales Account and debit Wilson’s Account','Credit Plant and Machinery Account and debit Cash Account','','','b','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:40'),(313,'Discount Received Account is a','real account','personal account','nominal account','profit and loss account','','','c','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:41'),(314,'Which of the following accounts has a credit balance?','Capital','Cash','Drawings','Premises','','','a','','wassce','2015',76,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:42'),(315,'The accounting entry to correct sales day book overcast is','debit Sales Account and credit Debtors Account','debit Suspense Account and credit Sales Account','debit Debtors Account and credit Suspense Account','debit Sales Account and credit Suspense Account','','','d','','wassce','2015',95,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:43'),(316,'Which of the following expresses the accounting equating?','Capital + Assets = Liabilities','Assets - Liabilities = Capital','Liabilities + Current Assets = Fixed Assets','Liabilities - Capital = Current Assets','','','b','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:44'),(317,'When the invoice of a customer is overcast, the supplier will send to him a','cheque','payment voucher','debit note','credit note','','','d','','wassce','2015',74,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:45'),(318,'Unpresented cheques are cheque','that have been recorded in the cash book, but not by the bank','that have been received by the bank, but recorded in the cash book','returned by the bank','written, but not handed over to customers','','','a','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:46'),(319,'The cost of putting goods into a saleable condition is charged to','balance sheet','trial balance','profit and loss account','trading account','','','d','','wassce','2015',95,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:47'),(320,'Which of the following is not a method of depreciating fixed assets?','Revaluation','Straight line','Diminishing balance','Obsolescence','','','d','','wassce','2015',65,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:59'),(321,'In preparing a profit and loss account, a decrease in provision for doubtful debts accounts is treated as','Currentability','expenses','Income','Current asset','','','c','','wassce','2015',93,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:00'),(322,'Which of the following items is found in the sales ledger control account?','Discount received','Total credit purchases','Discount allowed','Returns outwards','','','a','','wassce','2015',80,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:01'),(323,'The process of using sales ledger balance to cancel off purchases ledger balance is','balancing','set off','reconciliation','cancelling','','','b','','wassce','2015',98,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:02'),(324,'The total of the returns outwards journal is posted to the','credit side of the returns outwards book','debit side of the returns outwards account','debit side of the purchases returns book','credit side of the returns outwards account','','','d','','wassce','2015',105,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:03'),(325,'Which of the following is not revealed by a firm’s accounting records?','Profit of a period','Quality of labour force','Credit worthiness','Value of assets','','','b','','wassce','2015',89,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:04'),(326,'In the balance sheet of a social club, subscription owing is treated as a','current liability','current asset','tangible asset','long-term liability','','','b','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:05'),(327,'The accounting concept that allows the cost of kitchen cutlery to be expensed, though it will be used for more than one year is','materiality','accrual','going concern','business entity','','','a','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:07'),(328,'The accounting concept that assumes that a business will continue operating for an indefinite period is','business entity','going concern','consistency','duality','','','b','','wassce','2015',74,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:08'),(329,'The accounting concept that states that a firm’s financial affairs must be separated from that of the owner’s private transactions is','business entity','going concern','consistency','duality','','','a','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:09'),(330,'Goodwill is recognized in partnership accounts when','the business makes a huge profit','the business has good customer relationship','a partner is dormant','a new partner is admitted','','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:10'),(331,'In which of the following accounts is interest on partners capital found?','Profit and loss','Trading','Income surplus','Profit and loss appropriation.','','','d','','wassce','2015',93,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:11'),(332,'Which of the following is not stated in the partnership agreement?','Profit sharing ratio','Interest on capital','Interest on fixed asset','Purpose of partnership','','','c','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:13'),(333,'How much was paid for goodwill?','GHc/ 350,000','GHc/ 260,000','GHc/  90,000','GHc/ 60,000','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:14'),(334,'The double entry to record the goodwill in the books is debit','Cash Account and credit Goodwill Account','Goodwill Account and credit Purchase of Business Account','Goodwill Account and credit Cash Account','Purchase of Business Account and credit Cash Account','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','b','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:15'),(335,'The document which sets out the internal arrangement for the proper management of a company is the','prospectus','article of association','memorandum of association','certificate of incorporation','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','c','','wassce','2015',85,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:16'),(336,'A person who has applied to purchase shares in a company is referred to as','a promoter','a subscriber','an allottee','an underwriter','','','b','','wassce','2015',94,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:19'),(337,'Which of the following expenses is allocated according to the floor \tarea?','Wages and Salaries','Rent and rates','Canteen expenses','Discount allowed','','','b','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:20'),(338,'Goods stolen at the branch is debited to','Defalcations Account','Branch Stock Account','Branch Adjustment Account','Branch Debtors Account','','','c','','wassce','2015',85,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:21'),(339,'Which of the following is a source of revenue for a local government?','Personal income tax','Company registration fees','Royalties','Market tolls','','','d','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:22'),(340,'The instrument used to release fund which the minister of finance had earlier withheld is','reserve expenditure warrant','supplementary general warrant','provisional general warrant','supplementary statutory warrant','','','b','','wassce','2015',95,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:23'),(341,'Which of the following relates to cash basis of accounting?','Accruals and prepayments are considered','Debtors and creditors are recorded','Fixed assets are written off in the year of purchase','Profits are maximized','','','d','','wassce','2015',83,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:24'),(342,'Which of the following is found on the credit side of a partnership’s appropriation of profit account?','Interest on capital','Interest on drawings','share of profit','Drawings','','','b','','wassce','2015',74,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:25'),(343,'Which of the following is a spreadsheet application?','Excel','Word','Internet','Windows','','','a','','wassce','2015',82,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:26'),(344,'The quality of output information depends on the','quality of input data','time of processing','speed of processing','quantity of output device','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:07','2020-07-14 13:29:27'),(345,'The source document used to make entries in the purchases day book is','debit note','credit note','invoice','receipt','','','a','','wassce','2014',84,'Admin','2016-12-14 06:44:38','2020-07-14 13:29:28'),(346,'book that contains individual accounts of suppliers is the','purchases ledger','general ledger','nominal ledger','sales ledger','','','a','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:29'),(347,'In the operation of an imprest system of petty cash, the','petty cashier pays all expenses','petty cashier pays money to the accountant','petty cashier regularly begins each period with the same amount of money','main cashier accounts to the petty cashier for some expenses made by him','','','c','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:30'),(348,'An example of a credit entry in a profit and loss account is','carriage inwards','carriage outwards','discounts allowed','discounts received','','','d','','wassce','2014',69,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:30'),(349,'Which of the following subsidiary books involves cash movement?','Sales day book','Purchases day book','Returns inwards book','Petty cash book','','','d','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:32'),(350,'The accounting treatment for a dishonoured cheque is; debit','Customer’s Account; Credit Bank Account','Bank Account; Credit Customer’s Account','Customer’s Account; Credit Sales Account','Sales Account; Credit Customer’s Account\\\\','','','a','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:32'),(351,'Net turnover is referred to as','purchases','assets','sales','profits','','','c','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:33'),(352,'Which of the following transactions will result in disagreement between the cash book and the bank statement?','Selling of goods on credit to a customer','Withdrawal of goods by the proprietor for his personal use','Cheque paid directly into the bank account by a customer','Omission of purchases received from a supplier on credit','','','c','','wassce','2014',76,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:34'),(353,'Purchases Account is overcast by N200, while Wages Account is under cast by N200. This is','an error of omission','a compensating error','an error of commission','an error of principle','','','b','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:35'),(354,'Which of the following is used to record the disposal of a fixed asset?','Journal  Proper','Petty  Cash  Book','Sales Day Book','Purchases Day Book','','','a','','wassce','2014',75,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:36'),(355,'The annual depreciation is','N9,000','N8,500','N8,000','N6,500','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',95,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:38'),(356,'The accumulated depreciation as at 31/12/2013 is','N18,500','N17,000','N16,000','N8,000','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',98,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:39'),(357,'An error of principle is made, if','an entry has been made in the wrong class of account','a transaction has been completely omitted','an entry has been made on the wrong side of the two accounts concerned','a transaction is entered in both accounts for the wrong amount','','','a','','wassce','2014',98,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:40'),(358,'Which of the following is entered in the general journal?','Purchase of goods','Sale of goods on credit','Returns inwards','Acquisition of fixed assets','','','d','','wassce','2014',86,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:42'),(359,'The cost of carriage outward is classified as','a selling and distribution expense','an administrative expense','a trading expense','a finance expense','','','a','','wassce','2014',82,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:43'),(360,'The purchase of ten ceiling fans by Akpan Electronic Enterprises will be recorded as','an acquisition of fixed asset','an expense in its general office expense account','part of capital in the capital account','an acquisition of stock','','','d','','wassce','2014',104,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:44'),(361,'Which of the following accounts would appear in the nominal ledger?  (I)  Sanison’s account (a debtor)  ( II) Motor vehicle account (III) Sales account  (IV)  Rent and rates account','I, II and III only','I, III and IV only','II, III and IV only','Ill and IV only','','','b','','wassce','2014',87,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:45'),(362,'The sum of direct cost in a manufacturing account is','production cost','prime cost','total cost','finance cost','','','b','','wassce','2014',79,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:46'),(363,'Net profit in a business is','the amount of money taken out of the business by the owner','the cash in the business bank account','the difference between sales and cost of sales','sale revenue less cost of sales and expenses','','','d','','wassce','2014',95,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:47'),(364,'An example of a self-balancing account is the','suspense account','creditor’s account','control account','debtor’s accoun','','','c','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:48'),(365,'The gross profit is','GHc/  2,160,000','GHc/ 1440,000','GHc/ 1,080,000','GHc/ 720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',90,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:49'),(366,'The cost of sales is','GHc/  2,160,000t','GHc/ 1440,000','GHc/ 1,080,000','GHc/  720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',94,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:50'),(367,'Which of the following is not an administrative expenses in a \tmanufacturing organization?','Discounts allowed','Office electricity','Stationery','Insurance','','','a','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:51'),(368,'When an asset is sold, the entries for the accumulated depreciation are: debit','Asset Disposal Account; credit Provision for Depreciation Account.','Provision for Depreciation Account; Credit Asset Disposal Account','Fixed Asset Account; Credit Asset Disposal Account','Asset Disposal Account; Credit Fixed Asset Account','','','b','','wassce','2014',78,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:52'),(369,'A petty cash account has an imprest of D28,000. The account has a debit balance of D5.000. How much cash is needed to restore the imprest?','D33,000','D28,000','D23,000','D5,000','','','c','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:53'),(370,'In a not - for - profit making organization, when the total income \tis less than the total expenditure, the difference is a','surplus','shortfall','loss','deficit','','','d','','wassce','2014',94,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:54'),(371,'The accounting concept underlying the treatment of personal expenses of the business owner as drawing is','periodicity','accrual','entity','materiality','','','c','','wassce','2014',88,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:55'),(372,'Which of the following items is not contained in the Receipts and Payments Account?','Subscription paid in advance','tock paid for in advance','Outstanding wages and salaries','Donations','','','c','','wassce','2014',81,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:56'),(373,'The concept that states that a business should not lay claim to any profits before it is earned with reasonable certainty is','consistency concept','prudence concept','accrual concept','going concern concept','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:57'),(374,'When shares are issued above their nominal value, the \texcess above the nominal value is','credited to Profit and Loss Account','debited to Share Premium Account','credited to Share Capital Account','credited to share Premium Account','','','d','','wassce','2014',90,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:58'),(375,'Shares issued below nominal value are referred to as shares at','premium','discount','face value','cumulative value','','','b','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:59'),(376,'The accounting ratio used to measure the average number of days for which suppliers remain unpaid is','stock turnover','creditors’ payment period','debtors collection period','return on capital employed','','','b','','wassce','2014',91,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:00'),(377,'When the purchase consideration exceeds the value of business, the difference is','profit','discount','goodwill','reserve','','','c','','wassce','2014',97,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:01'),(378,'The primary classification of government expenditure is based on','Programs','funds','activity','project','','','b','','wassce','2014',91,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:02'),(379,'An example of input device of a computer is','an optical character reader','a graph plotter','a visual display unit','printer','','','a','','wassce','2014',72,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:03'),(380,'The accounting concept which states that expenditure involving insignificant amounts should be regarded as expenses and not assets is','business entity','materiality','dual aspect','realization','','','b','','wassce','2014',109,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:04'),(381,'A company made a net profit of N2,000,000 for the year and its net profit percentage is 25%. What is the total sales   for the year?','N8,000,000','N6,000,000','N800,000','N500,000','','','a','','wassce','2014',96,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:05'),(382,'Which of the following information is recorded in the returns outwards book?','Goods purchased on credit and subsequently returned to supplier','Fixed asset bought on credit and subsequently returned to supplier','Cash payment received from a customer and subsequently returned to supplier','Goods sold to a customer and subsequently returned to the business.','','','a','','wassce','2014',97,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:06'),(383,'Calculate the stock figure to be included in the balance sheet at the year end.','D408,000','D346,000','D284,000','D62,000',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',78,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:07'),(384,'The concept applied in answering question 42 above is','matching','consistency','prudence','entity',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',76,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:13'),(385,'Subscriptions in advance is classified in the balance sheet as','an asset','a liability','a deficit','a surplus','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:15'),(386,'Which of the following items is not treated in the Profit and Loss Account?','Office expenses','Salaries and allowances','Carriage inwards','Discounts allowed','','','c','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:16'),(387,'The document prepared by a local/district government to present its annual estimates for a planning period is','a balance sheet','budget','an income and expenditure account','a cash book','','','b','','wassce','2014',81,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:17'),(388,'A manufacturing account is drawn up by','firms providing personal services','firms engaged solely in buying and selling of goods','firms which make and sell articles','non - trading organization.','','','c','','wassce','2014',87,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:19'),(389,'Which of the following is not a factory overhead cost?','Manufacturing wages','Factory rent','Depreciation of machinery','Salary of factory guard','','','a','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:19'),(390,'A collection of fields relating to one logically definable unit of business information is known as','data','character','byte','record','','','d','','wassce','2014',97,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:20'),(391,'The principle of double entry book - keeping states that','every debtor must have a creditor','every account debited must be immediately credited','for every debit entry, there must be a corresponding credit entry','for every double debit, there must be a double credit.','','','c','','wassce','2014',87,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:21'),(392,'The accounting principle that is applied to check arbitrary actions on the part of accountants is','consistency','materiality','objectivity','realization','','','a','','utme','2004',114,'Admin','2016-12-15 06:52:04','2020-07-14 13:30:22'),(393,'The loss of equipment in a fire disaster results in','a decrease in current assets','an increase in liabilities and assets','a decrease in assets and capital','an increase in liabilities and a decrease in  assets.','','','c','','utme','2004',106,'Admin','2016-12-15 06:52:06','2020-07-14 13:30:23'),(394,'A source document is used for verifying the','amount due to creditors','actual cost of an asset','selling price of goods','amount due from debtors','','','c','','utme','2004',119,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:24'),(395,'The rule of accounting equation requires that account payable should be placed under','liabilities','equities','assets','capital','','','a','','utme','2004',107,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:25'),(396,'A debit in the suspense account will appear in the balance sheet as','a current asset','a current liability','capital','drawings','','','a','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:26'),(397,'The recipient whose name appears on a cheque is called a','payee','drawer','drawee','payee','','','d','','utme','2004',102,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:27'),(398,'The imprest account is subsidiary to the','ledger account','bank account','cash book','petty cash','','','d','','utme','2004',113,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:28'),(399,'The three-column cash book differs from the two-column cash book in','cash column','discount column','bank column','folio column','','','b','','utme','2004',116,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:29'),(400,'Zakari started a business on January 2000. He bought a shop costing N 54,000 and stock worth N 7,600.  Profit for the year amounted to N 22,100. His closing capital was N 73,800. Zakari’s personal drawings amounted to','N 2,300','N9,900','N 17,100','N 19,500','','','b','','utme','2004',128,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:30'),(401,'The balance on the provision for depreciation account is','added to fixed assets on the balance sheet','deducted from fixed assets on the balance sheet','deducted from the profit and loss account','added to the current liabilities of the account','','','b','','utme','2004',114,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:31'),(402,'Given: Rates paid during the year amounted to N 2,250 at N125 per month and N 1,035 was paid for electricity in the same period at N 115 per month. Determine the amount of prepaid rates','N 345','N 750','N 1,380','N 1,500','','','b','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:32'),(403,'Where closing stock is undervalued, the effect is','an increase in gross profit','a decrease in gross profit','an increase in purchases','a decrease in purchases','','','b','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:33'),(404,'At the year end, the purchases ledger showed a debit balance of N 108. The total on the debit side of the purchases ledger control account will be','N 22,966','N 22,156','N 21,834','N 21,054','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','a','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:34'),(405,'The balancing figure in the purchases ledger control account is','N 15,828','N 15,720','N 14,940','N 14,694','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','d','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:35'),(406,'In a sales ledger, contra entry is found on the','debit side of the debtors’ control account','debit side of the creditors’ control account','credit side of the debtors’ control account','credit side of the creditors’ control account','','','c','','utme','2004',102,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:36'),(407,'The beginning and ending accounts receivable balances were N 20,000 and N 30,000 respectively.The collection from customers during the period was N 70.000. What was the total sale on account?','N 20,000','N 60,000','N 80,000','N 120,000','','','b','','utme','2004',117,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:37'),(408,'Determine how much to be charged to profit and loss account.','N 606','N 786','N 791','N 856','Given: General expenses account Paid by cheque [ N671 ]; Paid by cash [N 70 ]; Accrued b/f [N 65 ] Accrued c/f [N 115 ]','','c','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:37'),(409,'In converting single entry to final account, the balancing figures on the income and expenses accounts are transferred to the','revenue and expenditure account','receipts and payments account','profit and loss appropriation account','profit and loss account','','','d','','utme','2004',126,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:38'),(410,'Determine the amount for the beginning inventory','N 20,140','N10,240','N 8,140','N 7,240','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',109,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:39'),(411,'What is the figure for purchases?','N 2,400','N 2,500','N 4,200','N 5,200','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',119,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:40'),(412,'Cost classification in relation to charges is determined by the level of','raw materials','labour','activity','profitability','','','c','','utme','2004',119,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:41'),(413,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N 5,000','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','c','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:42'),(414,'The market value of goods produced is','N 30,500','N 30,600','N 31,600','N 31,620','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','b','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:43'),(415,'The accumulated fund is','N 9,400','N 9,300','N 9,200','N 9,100','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:44'),(416,'In the balance sheet, the subscription in arrears will be','N 200','N 300','N 1,200','N 1,300','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:45'),(417,'Where the debit side of the income and expenditure account is higher than the credit side, the difference is','deficit','surplus','gain','loss','','','a','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:52'),(418,'In the balance sheet of a not-for-profit-making organization, subscription paid in advance is regarded as a','current asset','current liability','capital','reserve','','','b','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:53'),(419,'A rapidly growing business organization with multiple units that is interested in comparing the performances and weaknesses of each unit should adopt.','manufacturing accounts','consolidated accounts','departmental accounts','joint venture accounts','','','c','','utme','2004',129,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:54'),(420,'How are credit sales by a department treated?','the same way as normal debtors’ transactions','in a different way from normal debtors’ transactions','as an addition to the sales manager’s account','as an addition to the production manager’s account','','','a','','utme','2004',102,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:55'),(421,'Discounts granted to branch customers are treated as a debit to branch','stock account and a credit to branch debtors’ account','discount account and a credit to branch bank account','stock account and a credit to branch bank account','discount account and a credit to branch debtors’ account','','','a','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:56'),(422,'Transfers from the head office to branches are best carried out at','cost price','selling price','cost plus mark-up','market price','','','c','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:57'),(423,'On dissolution, the final distribution of cash to partners is based on','partnership agreement','Articles of Association','goodwill','capital balances.','','','d','','utme','2004',117,'Admin','2016-12-15 06:52:08','2020-07-14 13:30:58'),(424,'The balance of profit and loss account will be','N 4,000','N 2,800','N 1,500','N 300','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','a','','utme','2004',121,'Admin','2016-12-15 06:52:08','2020-07-14 13:30:59'),(425,'What is Kunle’s share of the profit?','N 600','N 300','N180','N 120','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','d','','utme','2004',111,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:00'),(426,'When a new partner is admitted to a partnership, there is a need to revalue the','capital of the business','capital and liabilities of the business','assets and capital of the business','assets and liabilities of the business','','','d','','utme','2004',132,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:01'),(427,'The accounting entry to record the premium on goodwill is to debit','cash and credit old partners’ capital','goodwill and credit revaluation','assets and credit capital','capital and credit assets','','','b','','utme','2004',132,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:08'),(428,'The expenses incurred in promoting a company are','promoters’ expenses','floating expenses','preliminary expenses','the Board’s expenses','','','c','','utme','2004',133,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:09'),(429,'Debentures can be redeemed out of','existing share capital reserve','existing general reserve','proceeds from new issue of shares','withholding tax.','','','a','','utme','2004',119,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:10'),(430,'Share premium is an example of','revenue reserves','capital reserves','general reserves','loan capital','','','b','','utme','2004',128,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:11'),(431,'According to the provisions of the 1999 Constitution, all revenues generated by the Federal Government must be paid into the?','Consolidated Revenue Fund','Federation Account','Revenue Mobilization Allocation and Fiscal Commission’s Account','Equalization Fund','','','a','','utme','2004',136,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:12'),(432,'The budget statement presented to the legislature by the Chief Executive is called','an appropriation act','a budget bill','an appropriation bill','a budget proposal','','','c','','utme','2004',113,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:13'),(433,'The statement of assets and liabilities in the public sector can be described as the','income and expenditure account of government','appropriation account of government','balance sheet of government','funds flow statement of government','','','d','','utme','2004',119,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:14'),(434,'A company has departments X, Y and Z. Department X occupies a space twice that of Y while Z   occupies half the space of  Y. If the company pays N 70 000 on rent, what is the amount of rent that should be allocated to Y?','N 30,000','N 40,000','N 20,000','N 10, 000.','','','c','','utme','2007',114,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:15'),(435,'Calculate the total figure for the receipts and payments account.','N 11,410','N  13,630','N  9, 310','N  11, 530.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','d','','utme','2007',121,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:16'),(436,'Determine the opening cash balance of the club','N 3070','N 2220','N 5710','N 4320.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','b','','utme','2007',114,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:17'),(437,'Purchases of raw materials amount to N  81 000, direct labour is N  38 000 and factory overhead N  29 000. Calculate the prime cost.','N 176,000','N 170,000','N 167,000','N  156,000.','Stock at start: Raw materials [N57, 000]; Work-in-progress [42, 000]; Finished goods [71, 000 ]','','a','','utme','2007',127,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:18'),(438,'I.Profits and losses will be shared unequally II.  Interest is not allowed on capital, III. Salaries are not allowed. IV. Interest is charged on drawings. Which of  the following would apply where there is no agreement during partnership formation?','I only','I, II and III','I, II and IV','II and III.','','','c','','utme','2007',123,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:19'),(439,'The value of goods sent to branch is','N 4 000','N 6000','N 8000','N 2000','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','c','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:19'),(440,'Determine the closing stock.','N 5 500','N  6500','N 2500','N 4500','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','a','','utme','2007',116,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:20'),(441,'Expenses paid during the conversion of a partnership to a \tcompany are','debited to the partners’ capital account','debited to the realization account','debited to the cash account.','credited to the realization account','','','d','','utme','2007',124,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:21'),(442,'In the trading and profit and loss account of a manufacturing organization, purchases is','always the same amount as the total factory overhead cost','given separately','equivalent to the total cost of goods manufactured','always the same as the prime cost.','','','b','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:22'),(443,'Goods worth N 50 000 were sent at different times from head office to the branch during the year. By the end of the period, only N  40 000 worth of goods had arrived at the branch. Which of the following is correct about the treatment of this transaction?','Branch should debit goods received from head office with N 50 000.','Head office should debit goods sent to branch account with N 10 000.','Head office should debit goods sent to branch account with N 50 000.','Branch should debit goods received from head office with N  10000.','','','b','','utme','2007',115,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:23'),(444,'An accounting ratio that considers only quick assets to determine the short-term safety margin of a firm is the','fixed assets ratio','capital gearing ratio','current assets ratio','acid test ratio.','','','d','','utme','2007',113,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:24'),(445,'What would be the total amount received on second call?','N 240, 000','N 280 ,000','N 40,000','N 56,000.','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','c','','utme','2007',120,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:25'),(446,'The total amount of money received on application was','N  5600,00','N  220,000','N  800, 000','N  1 000 000','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','a','','utme','2007',124,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:46'),(447,'Determine the working capital.','N 7,38,0000','N 8,48,0000','N  5 480 000','N  6 480 000.','Shaku Company Ltd: Stock [N 3,600, 000]; Cash at hand [N800, 000]; Cash in bank [2,400, 000]; Debtors [ 580, 000]; Trade creditors [N 920, 000 ]; \tBank overdraft [ N200, 000 ]; Tax liabilities [N600, 000]; Salary owed to staff {N 180, 000]','','c','','utme','2007',115,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:47'),(448,'The receipts and payments account of a not-for-profit-making organization plays a similar role in a profit-making organization as','a cash account','a balance sheet','an income account','an expenses account','','','b','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:48'),(449,'Osei and Yabo were in partnership sharing profits and losses in the ratio of 3:2. On admitting Takwa, the profit and loss sharing ratio was changed to 1:1:1  Suppose Takwa paid N  30 000 for goodwill this amount would be','credited to Takwa’s current account','debited to goodwill account','shared to all the partners’ capital account','credited to the old partners’ capital account.','','','b','','utme','2007',132,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:49'),(450,'The amount of subscriptions accrued is reported in the balance sheet under','fixed asset','long-term liability','current asset','current liability.','','','d','','utme','2007',123,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:50'),(451,'The lighting charge to be apportioned to Zema is','N 891','N 819','N 927','N 975','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','b','','utme','2007',122,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:51'),(452,'Find the salary charged to Zera product.','N 1 854','N 1 845','N 1 062','N 1 134.','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','c','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:51'),(453,'The gross profit disclosed in the branch stock adjustment account represents','head office profit','unrealized profit','estimated profit','branch profit','','','d','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:52'),(454,'Partners’ share of profit is credited to','a partner’s current account','a partner’s capital account','the profit and loss account','the profit and loss appropriation account','','','a','','utme','2007',125,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:53'),(455,'A pension granted to any past president or vice-president shall be charged to the','consolidated revenue fund','special pension fund','contingency fund','development fund.','','','b','','utme','2007',125,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:03'),(456,'The federal government approved  N 140 m to local governments W, X, Y and Z. The amount is to be shared on the basis of 40% equality. 35% population and 25% internal revenue generation. Calculate the share of local government W on equality.','N 35 m','N 14 m .','N 56 m','N 28 m.','','','c','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:04'),(457,'Stock valuation is useful because it informs the sales department on the','prices of the competing goods','prices that will affect profitability','number of goods to produce','number of goods to sell.','','','b','','utme','2007',109,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:05'),(458,'Using the straight-line method, the depreciation of the asset in \tthe first year was','N  210 m','N 343m','N 105m','N 270m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','c','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:06'),(459,'What was the asset value at the beginning of the third year?','N 63 m','N 133 m','N 36m','N 28 m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','d','','utme','2007',132,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:07'),(460,'The drawings for the period stand at','N  2 750','N  3 750','N  2 500','N 2 570.','Given: Opening capital [N7, 000 ]; Additional capital [N3, 500 ]; Net profit [N2 500 ]; Closing capital [N10, 250]','','a','','utme','2007',118,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:08'),(461,'I.    Facilitating the preparation of final accounts II.   Making the existence of error easy to detect III. Checking the accuracy of postings periodically. From the above, which of the following are among the uses of control accounts?','I, II and III','I and III','II and III','I and II.','','','c','','utme','2007',137,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:09'),(462,'Determine the amount provided for discount allowed on debtors.','N 1 000','N 3000','N 900','N1500.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',129,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:10'),(463,'The provision for bad debt is','N2 000','N 800','N3 000','N1 900.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:11'),(464,'The amount to be charged to the profit and loss account is','N 30,000','N25,000','N 5 ,000','N20,000.','Given: Prepaid b/f [N10, 000 ]; Cash paid during the year  [N20, 000]; Prepaid c/f [N5, 000] ','','b','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:12'),(465,'The purchases ledger control account showed a credit balance of N 525 000 on April 30, 2006. This amount shows','what the debtors of a business enterprise owed the business','the total amount which each debtor owed the business','what a business enterprise owed its creditors','the total amount which a business enterprise owed each creditor.','','','c','','utme','2007',120,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:12'),(466,'Find the value of the total assets?','N 17 700','N 10,500','N 20,000','N 15,400.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','d','','utme','2007',130,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:13'),(467,'What will be the equity of the business?','N 12,800','N 4,900','N 8,200','N 9,500.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','c','','utme','2007',117,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:14'),(468,'Journal proper is used in recording','transactions that are not regular','returns from customers','credit sales','the receipt and payment of  money','','','a','','utme','2007',132,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:15'),(469,'The process whereby a cheque received by one person is given to another for payment is known as','cheque crossing','payment in cheque','cheque transfer','cheque endorsement.','','','c','','utme','2007',125,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:16'),(470,'Calculate the balance in the bank statement','N 10 740','N11 860','N 17 500','N16,380.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','c','','utme','2007',117,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:17'),(471,'What is the adjusted cash book balance?','N 14,680','N 15,560','N 16,440','N17,000.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','a','','utme','2007',122,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:18'),(472,'The fourth stage of the accounting information system is','recording','interpreting','summarizing','classifying.','','','c','','utme','2007',120,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:19'),(473,'How much is sundry expenses?','N 2 700','N 2,250','N1,550','N2000.','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','a','','utme','2007',111,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:20'),(474,'The total of the trial balance is','N 6 600','N 6 650','N 5 600','N 5 900','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','b','','utme','2007',116,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:21'),(475,'If Mr. Ajasin paid his creditors N 5 000 out of N 20 000 owed, what would be the effect of this transaction on the accounting equation?','A decrease .in the total liabilities and assets by N5 000.','An increase in total liabilities and owners’ equity by N15 000.','An increase in the total assets by N15 000','A decrease in owners’ equity by N 5 000.','','','a','','utme','2007',130,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:22'),(476,'Which of the following branches of accounting was first developed?','Cost accounting','Financial accounting','Management accounting','Petroleum accounting','','','b','','utme','2009',113,'Admin','2016-12-16 21:08:06','2020-07-14 13:32:23'),(477,'The accounting convention which states that the performance of a business should be determined by matching all expenses against all revenues is','accruals','materiality','objectivity','periodicity','','','a','','utme','2009',116,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:24'),(478,'The process of bookkeeping includes records produced from','ledgers','source documents','minutes of meeting','intuitive reasoning','','','b','','utme','2009',122,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:24'),(479,'Musa, a prepaid customer of XYZ and KLM, bought  N1500 recharge card from XYZ and  N2000 recharge card from KLM for business calls. The entry to record these transaction is debit','telephone  N 3,500, credit XYZ and KLM  N 3,500','telephone N 3,500. credit cash  N 3,500','sundries N 3,500, credit KLM  N 3,500','sundries  N 3.500, credit telephone  N3,500','','','a','','utme','2009',123,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:25'),(480,'What is the total debit for the trial balance?','N  4 690 000','N 2 620 000','N  2 520 000','N 1 565 000','Given: Capital [N 2, 375, 000 ]; Debtors [N 495, 000 ]; Motor vehicles [N 870, 000 ]; Creditors [N 245,000 ]; Prepayments [N 500, 000 ]; Bills receivable [N 505, 000 ]; Furniture [N 150, 000 ]','','c','','utme','2009',111,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:26'),(481,'If Odukoya takes money out of the business bank account for his own private use, the effect of the transaction is','increase in assets and increase in capital','increase in assets and decrease in capital','decrease in capital and increase in assets','decrease in capital and decrease in assets.','','','d','','utme','2009',116,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:27'),(482,'What are the current liabilities?','I and II','IV and V','Ill and V','II and IV','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','b','','utme','2009',105,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:28'),(483,'Find the fixed assets','I, II and V','I, II and IV','I, II and III','Ill, IV and V','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','c','','utme','2009',129,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:35'),(484,'Cash discount is often recorded on','the debit side of the cash book','the credit side of the cash book','the folio column of the cash book','both credit and debit side of the cash book','','','d','','utme','2009',100,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:54'),(485,'The standing order is a payment instruction given by a','customer to the bank','bank to the customers','bank to an employee','customer to a fellow customer','','','a','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:55'),(486,'Which of the following should not be added or subtracted from the bank statement balance to determine the adjusted cash balance?','Error by the bank','Under casting of the cash book','Overcasting of the cash book','Bank service charges','','','a','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:56'),(487,'Calculate the balance as per bank statement at the end of the year','24,700','25,200','26,200','27,700','Given: Balance as per cash book [N20,000 ]; Unpresented cheques [N 5,200 ]; Direct credit to the bank [\t  N 1,000 ]; \tDirect debit from the bank [N 1,000 ]; Credit in the cash book [N 500 ]','','a','','utme','2009',125,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:56'),(488,'Determine the capital of the business','N 9,400','N 6,000','N 3,400','N 3,000','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','d','','utme','2009',128,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:57'),(489,'What is the net working capital?','N 2,600','N1,800','N 800','N 600','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','c','','utme','2009',131,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:58'),(490,'Which of the following items are current assets?','Stock, bills receivable, cash and debtors','Stock, bills payable, cash and debtors','Stock, bad debt, bills receivable and cash','Stock, work-in-progress, cash and bills payable.','','','a','','utme','2009',117,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:59'),(491,'Using FIFO method, what is the value of the closing stock?','N 34,000','N 29,000','N 17,000','N 12,000','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','c','','utme','2009',111,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:00'),(492,'What is the value of closing stock using simple average?','N 11,500','N 17,000','N 17,500','N 28,500','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','d','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:01'),(493,'Which of the following methods gives a conservative closing stock value during a period of rising prices?','LIFO','FIFO','Simple average','Periodic simple average','','','a','','utme','2009',105,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:02'),(494,'Apart from the common control accounts, a control account can also be opened for','sales account','purchases account','cash account','wages account','','','c','','utme','2009',108,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:03'),(495,'Which of the following is a debit item in the purchases ledger control account?','Balance b/d','Cheque dishonoured','Purchases','Balance c/d','','','d','','utme','2009',118,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:04'),(496,'Which of the following is an item in the debit side of the sales ledger control account?','Interest charged by suppliers','Bills receivable honoured','Transfer of credit balances from credit control account','Transfer of debit balances from creditors control account','','','a','','utme','2009',108,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:05'),(497,'The costs incurred by departments that support the production department with such activities as maintenance, production control and storage are called','autonomous costs','service costs','supporting costs','subsidiary costs','','','b','','utme','2009',107,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:17'),(498,'Determine the gross profit','N 49,000','N 48,000','N 31,000','N30,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',127,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:18'),(499,'What is the net profit?','N  46,000','N 45,000','N  28,000','N  27,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:19'),(500,'Receipts and payments account is a summary of the','budget','trading account','cash book','profit and loss account','','','c','','utme','2009',124,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:20'),(501,'What is the accumulated fund?','23,700','27,750','29,650','51,650','Given: Furniture and fittings [N 20,000]  Equipment [N15,000] Bank overdrafts [ N6,500] Bar creditors [ N4,800 ] Subscription in arrears [ N4,700 ] Subscription in advance [ N650]','','b','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:21'),(502,'I.  Space occupied by each department    II. Average value of stock held by each department III. \tDepartmental turnover  IV. Number of articles sold by each department. From the information given, the two most logical bases for apportioning expenses that are common to departments are','I and II','I and III','II and III','Ill and IV','','','b','','utme','2009',113,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:22'),(503,'One of the purposes of maintaining the account of a branch at the head office is to','record charges in shareholdings','record charges in liabilities','check the excesses of customers','check the excesses of members of staff.','','','d','','utme','2009',124,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:23'),(504,'Which of the following is a common cause of a discrepancy between head office and branch trial balance?','Debtors and cash in transit','Creditors and cash in transit','Stock and cash in transit','Stock and prepayments','','','a','','utme','2009',118,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:24'),(505,'Sule and Ahmad are in partnership sharing profits and losses equally. If  Khadija is admitted as a new partner to take 1/5 th as her share, what is the new profit or loss sharing ratio?','Sule1/3 , Ahmad 1/3 and Khadija 1/3','Sule1/5, Ahmad 1/5 and Khadija 3/5','Sule2/5,  Ahmad2/5 and Khadija 1/5','Sule ,2/5, Ahmad and 1/5 Khadija 2/5','','','c','','utme','2009',134,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:30'),(506,'In partnership account, conversion of non-cash assets into cash \t\tis referred to as','realization','disposal','dissolution','revaluation','','','c','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:31'),(507,'The share premium account would be','credited with application and allotment  N 187,500','debited with application and allotment  N 375,000','credited with application and allotment  N 375,000','debited with application and allotment  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','c','','utme','2009',110,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:32'),(508,'The second and final call account was debited with','ordinary share capital account  N 187,500','12% preference share capital  N  375,000','bank account  N 187,500','12% preference share capital account  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','d','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:33'),(509,'Provision for bad and doubtful debts in companies final accounts is treated in','trading account','profit and loss account','fund flow statement','cash flow statement','','','b','','utme','2009',111,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:34'),(510,'The book value per share is obtained by dividing','shareholders equity by outstanding shares','total assets by outstanding shares','gross profit by outstanding shares','net profit by outstanding shares','','','a','','utme','2009',126,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:35'),(511,'Expenditure incurred on consumables and goods for resale is','revenue expenditure','capital expenditure','sunk cost','miscellaneous expenses','','','a','','utme','2009',141,'Admin','2016-12-16 21:08:08','2020-07-14 02:26:47'),(512,'Replacement and renewal of fixed assets are','revenue receipt','capital receipt','capital expenditure','revenue expenditure','','','c','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-14 02:28:17'),(513,'Which of the following is credited to the consolidated revenue fund?','Recurrent expenditure','Capital expenditure','Transfers to revenue fund','Internal revenue','','','c','','utme','2009',115,'Admin','2016-12-16 21:08:09','2020-07-14 01:50:57'),(514,'One of the reasons for the existence of the public sector is to','take adequate care of the needy','supplement the commercial sector','provide cheap services to all citizens','correct perceived inequalities.','','','c','','utme','2009',120,'Admin','2016-12-16 21:08:09','2020-07-14 02:14:16');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `api_call_ip_address` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `ipAddress` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `requestCount` int(11) NOT NULL DEFAULT '1',\n  `countryName` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `countryCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `cityName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `zipCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `latitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `longitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=10463 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `api_call_ip_address` VALUES (1,'chemistry','41.204.237.6',55,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:16:31','2019-10-11 19:53:51'),(2,'english','41.204.237.6',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-22 17:05:06'),(3,'physics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(4,'government','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(5,'irk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(6,'civiledu','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(7,'currentaffairs','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(8,'economics','197.255.171.219',494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:28:05','2018-11-16 16:14:04'),(9,'english','197.255.171.219',622,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 16:17:59','2018-11-16 17:04:20'),(10,'english','105.112.40.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 20:56:48','2018-11-16 20:56:48'),(11,'chemistry','66.249.66.146',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 02:15:11','2019-01-20 17:41:49'),(12,'chemistry','105.112.27.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 18:01:33','2018-11-17 18:01:33'),(13,'chemistry','105.112.34.182',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 19:42:35','2018-11-17 19:48:36'),(14,'english','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:11:14','2018-11-18 07:11:16'),(15,'mathematics','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:23:49','2018-11-18 07:23:58'),(16,'english','35.187.100.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:08:37','2018-11-18 15:08:37'),(17,'english','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(18,'biology','54.157.207.237',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:22:23'),(19,'physics','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(20,'chemistry','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(21,'englishlit','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(22,'currentaffairs','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(23,'history','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(24,'mathematics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(25,'commerce','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(26,'biology','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:10'),(27,'physics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(28,'englishlit','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(29,'government','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(30,'economics','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:59:54'),(31,'chemistry','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(32,'crk','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(33,'irk','54.242.159.164',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:01:08'),(34,'insurance','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(35,'currentaffairs','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(36,'history','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(37,'english','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:10','2018-11-18 16:00:23'),(38,'civiledu','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:23','2018-11-18 16:00:23'),(39,'chemistry','38.132.114.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:11:29','2018-11-18 16:11:29'),(40,'biology','154.118.73.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:26:38','2018-11-19 07:42:11'),(41,'mathematics','154.118.73.218',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:57:21','2018-11-19 08:27:22'),(42,'biology','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(43,'physics','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(44,'englishlit','54.226.211.137',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:04'),(45,'crk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(46,'geography','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(47,'civiledu','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(48,'currentaffairs','54.226.211.137',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:12'),(49,'chemistry','105.112.34.116',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 11:42:43','2018-11-19 12:07:25'),(50,'biology','105.112.34.116',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 12:03:49','2018-11-19 12:04:31'),(51,'chemistry','105.112.32.113',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 15:15:17','2018-11-19 15:15:17'),(52,'chemistry','105.112.38.168',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:39:07','2018-11-19 16:39:53'),(53,'chemistry','105.112.33.204',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:41:17','2018-11-19 17:08:45'),(54,'chemistry','105.112.34.113',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 17:16:16','2018-11-19 17:50:41'),(55,'chemistry','105.112.39.125',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 18:09:49','2018-11-19 18:10:22'),(56,'commerce','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(57,'accounting','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(58,'biology','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(59,'physics','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(60,'geography','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(61,'civiledu','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(62,'currentaffairs','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(63,'mathematics','154.120.115.82',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 09:18:07','2018-11-20 09:18:27'),(64,'accounting','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(65,'chemistry','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(66,'government','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(67,'crk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(68,'geography','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(69,'irk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(70,'currentaffairs','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(71,'chemistry','197.210.55.232',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:36:42','2018-11-21 16:04:23'),(72,'chemistry','197.210.55.152',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:51:48','2018-11-21 16:04:07'),(73,'mathematics','197.210.55.232',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:25','2018-11-21 16:04:26'),(74,'english','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(75,'mathematics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(76,'commerce','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(77,'geography','54.235.56.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(78,'economics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(79,'civiledu','54.235.56.218',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(80,'insurance','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(81,'mathematics','197.210.55.49',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:06:37','2018-11-21 16:12:12'),(82,'accounting','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(83,'physics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(84,'government','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(85,'crk','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(86,'history','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(87,'mathematics','197.210.53.227',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:39:55','2018-11-21 18:46:03'),(88,'mathematics','197.210.53.213',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:41:49','2018-11-21 18:50:09'),(89,'mathematics','197.210.53.241',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:50:32','2018-11-21 18:50:33'),(90,'physics','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(91,'englishlit','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(92,'government','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(93,'geography','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(94,'irk','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(95,'civiledu','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(96,'history','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:34'),(97,'mathematics','105.112.39.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:03:34','2018-11-21 20:03:35'),(98,'chemistry','105.112.39.146',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:35:42','2018-11-21 21:02:43'),(99,'biology','197.210.29.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:41:34','2018-11-21 20:41:35'),(100,'commerce','41.203.72.24',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 08:31:50','2018-11-22 08:31:54'),(101,'biology','154.118.57.75',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:21:36','2018-11-22 09:21:42'),(102,'english','154.118.57.75',430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:32:20','2018-11-22 09:48:24'),(103,'mathematics','154.118.57.75',138,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:34:54','2018-11-22 09:48:24'),(104,'commerce','154.118.57.75',67,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:36:29','2018-11-22 09:37:01'),(105,'mathematics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(106,'biology','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(107,'physics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(108,'chemistry','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(109,'geography','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(110,'economics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(111,'irk','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(112,'crk','105.112.32.158',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:17:53','2018-11-22 12:19:16'),(113,'crk','105.112.26.27',714,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:39:40','2018-11-22 12:50:37'),(114,'geography','105.112.26.27',333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:51:29','2018-11-22 12:56:58'),(115,'irk','105.112.26.27',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:56:49','2018-11-22 12:56:57'),(116,'mathematics','197.210.52.148',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:57','2018-11-22 20:15:32'),(117,'mathematics','197.210.53.170',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:41'),(118,'mathematics','197.210.53.74',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:25'),(119,'commerce','197.210.53.170',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:42','2018-11-22 20:14:59'),(120,'commerce','197.210.52.148',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-22 20:14:57','2020-02-06 09:18:23'),(121,'commerce','197.210.53.74',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:58','2018-11-22 20:15:00'),(122,'accounting','197.210.53.170',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:17'),(123,'accounting','197.210.53.74',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:31'),(124,'accounting','197.210.52.148',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:02','2018-11-22 20:15:34'),(125,'chemistry','45.222.98.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 08:18:28','2018-11-23 08:29:56'),(126,'crk','105.112.46.53',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 09:29:55','2018-11-23 10:34:53'),(127,'chemistry','105.112.46.53',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 13:13:27','2018-11-23 13:56:23'),(128,'chemistry','105.112.45.132',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:12:24','2018-11-23 16:12:25'),(129,'chemistry','105.112.42.3',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:18:35','2018-11-23 17:30:48'),(130,'accounting','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(131,'biology','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(132,'physics','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(133,'irk','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(134,'civiledu','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(135,'currentaffairs','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(136,'history','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(137,'chemistry','122.172.127.49',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:22:39','2018-11-23 18:25:03'),(138,'physics','122.172.127.49',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:25:06','2018-11-23 18:25:21'),(139,'chemistry','105.112.41.195',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 19:35:37','2019-03-06 06:04:52'),(140,'chemistry','105.112.29.74',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 20:03:18','2018-11-23 22:58:38'),(141,'chemistry','105.112.40.253',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 09:25:34','2018-11-24 09:25:34'),(142,'english','41.203.72.10',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:16:56','2018-11-24 13:19:08'),(143,'accounting','41.203.72.10',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:21:12','2018-11-27 06:00:10'),(144,'english','105.112.44.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 14:40:08','2018-11-24 14:40:08'),(145,'chemistry','105.112.43.82',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 19:55:21','2018-11-24 20:10:56'),(146,'chemistry','105.112.46.85',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 20:28:29','2018-11-28 09:54:04'),(147,'chemistry','105.112.41.167',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:10:36','2018-11-24 21:25:21'),(148,'chemistry','105.112.40.197',880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:57:55','2018-11-24 22:40:30'),(149,'english','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(150,'physics','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(151,'englishlit','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(152,'crk','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(153,'geography','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(154,'civiledu','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(155,'insurance','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(156,'chemistry','105.112.44.13',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 08:45:46','2018-11-25 09:31:13'),(157,'chemistry','105.112.41.148',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 09:44:43','2018-11-25 10:48:33'),(158,'chemistry','66.102.8.72',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:23:12','2018-11-25 10:23:13'),(159,'chemistry','108.177.7.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:28:48','2018-11-25 10:28:49'),(160,'chemistry','108.177.6.56',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:36','2018-11-25 10:29:54'),(161,'chemistry','108.177.6.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:41','2018-11-25 10:29:42'),(162,'chemistry','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:50','2018-11-25 10:29:51'),(163,'civiledu','108.177.6.53',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:53','2018-11-25 10:29:54'),(164,'commerce','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:56','2018-11-25 10:29:57'),(165,'crk','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:58','2018-11-25 10:29:58'),(166,'chemistry','108.177.6.58',200,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-25 10:30:05','2019-09-12 00:12:04'),(167,'insurance','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:10','2018-11-25 10:30:11'),(168,'history','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:12','2018-11-25 10:30:12'),(169,'geography','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:15','2018-11-25 10:30:15'),(170,'geography','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:18','2018-11-25 10:30:19'),(171,'commerce','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:19','2018-11-25 10:30:20'),(172,'englishlit','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:20'),(173,'crk','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:21'),(174,'geography','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:21','2018-11-25 10:30:21'),(175,'civiledu','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:22','2018-11-25 10:30:23'),(176,'civiledu','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:24','2018-11-25 10:30:24'),(177,'insurance','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:25','2018-11-25 10:30:25'),(178,'englishlit','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:27','2018-11-25 10:30:27'),(179,'commerce','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:29','2018-11-25 10:30:29'),(180,'history','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:35','2018-11-25 10:30:35'),(181,'insurance','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:37','2018-11-25 10:30:37'),(182,'currentaffairs','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:42','2018-11-25 10:30:42'),(183,'chemistry','108.177.7.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:45','2018-11-25 10:31:04'),(184,'history','108.177.7.81',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:11','2018-11-25 10:31:39'),(185,'english','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:43','2018-11-25 10:31:43'),(186,'economics','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:47','2018-11-25 10:31:48'),(187,'mathematics','108.177.7.81',60,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:52','2019-09-11 16:49:44'),(188,'englishlit','108.177.7.81',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:32:37'),(189,'chemistry','66.249.88.76',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:31:59'),(190,'crk','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:10','2018-11-25 10:32:10'),(191,'insurance','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:14','2018-11-25 10:32:14'),(192,'civiledu','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:17','2018-11-25 10:32:18'),(193,'geography','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:21','2018-11-25 10:32:22'),(194,'chemistry','104.133.10.99',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:47:20','2018-11-25 10:48:39'),(195,'chemistry','105.112.46.101',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:07:44','2018-11-25 12:07:44'),(196,'chemistry','105.112.33.216',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:33:34','2018-11-25 12:56:01'),(197,'currentaffairs','105.112.33.216',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:56:40','2018-11-25 13:10:15'),(198,'economics','105.112.33.216',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:10:36','2018-11-25 13:16:55'),(199,'chemistry','105.112.40.40',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:15:46','2018-11-25 13:19:21'),(200,'chemistry','105.112.42.88',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:21:39','2018-11-25 13:21:39'),(201,'chemistry','105.112.41.248',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:01:24','2018-11-25 17:01:24'),(202,'english','105.112.41.248',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:04:33','2018-11-25 17:13:28'),(203,'english','105.112.41.0',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:18:30','2018-11-25 17:55:36'),(204,'english','197.210.53.141',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 19:58:43','2018-11-25 20:00:07'),(205,'english','197.210.52.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:07','2018-11-25 20:00:41'),(206,'english','197.210.53.23',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:21','2018-11-25 20:00:55'),(207,'english','105.112.43.127',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:19:59','2018-11-25 20:20:01'),(208,'english','197.211.63.176',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:00:14','2018-11-26 05:00:51'),(209,'commerce','197.211.63.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:10','2018-11-26 05:01:10'),(210,'mathematics','197.211.63.176',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:21','2018-11-26 10:14:10'),(211,'biology','105.112.42.191',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:08','2018-11-26 09:33:08'),(212,'accounting','105.112.42.191',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:09','2018-11-26 09:33:12'),(213,'english','41.76.197.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:38','2018-11-26 10:12:41'),(214,'currentaffairs','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:50','2018-11-26 10:12:50'),(215,'government','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:54','2018-11-26 10:12:54'),(216,'civiledu','41.76.197.2',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:58','2018-11-26 10:13:05'),(217,'englishlit','41.76.197.2',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:13:14','2018-11-27 16:00:52'),(218,'english','129.56.76.55',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:51:31','2018-11-26 10:52:34'),(219,'mathematics','129.56.76.55',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:52:19','2018-11-26 10:52:28'),(220,'english','197.210.227.200',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 11:27:18','2018-11-26 11:27:18'),(221,'english','105.112.28.18',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:05:44','2018-11-26 13:06:45'),(222,'physics','105.112.28.18',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:07:06','2018-11-26 13:34:17'),(223,'physics','105.112.21.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:05:04','2018-11-26 16:05:04'),(224,'english','197.210.63.52',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:11:53','2018-11-26 16:11:56'),(225,'english','197.211.61.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:28:59','2018-11-26 16:28:59'),(226,'currentaffairs','197.211.61.82',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:29:23','2018-11-28 11:57:35'),(227,'chemistry','77.88.47.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 22:02:53','2019-04-15 13:33:36'),(228,'mathematics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(229,'chemistry','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(230,'government','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(231,'economics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(232,'civiledu','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(233,'currentaffairs','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(234,'history','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(235,'commerce','41.203.72.10',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 05:53:52','2018-11-27 06:00:02'),(236,'physics','41.203.72.10',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:00:04','2018-11-27 06:01:08'),(237,'english','41.190.30.106',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:14:24','2018-11-27 06:21:01'),(238,'civiledu','41.190.30.106',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:21:10','2018-11-27 06:21:10'),(239,'civiledu','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:03','2018-11-27 06:38:04'),(240,'english','41.190.2.145',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:07','2018-11-27 06:39:15'),(241,'mathematics','41.190.2.145',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:09','2018-11-27 06:38:26'),(242,'insurance','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:14','2018-11-27 06:38:14'),(243,'chemistry','41.190.2.145',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:27','2018-11-27 06:38:37'),(244,'chemistry','105.112.27.114',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:39:39','2018-11-27 06:41:07'),(245,'englishlit','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(246,'government','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(247,'crk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(248,'geography','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(249,'irk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(250,'insurance','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(251,'history','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(252,'physics','105.112.28.250',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 08:14:13','2018-11-27 08:14:48'),(253,'english','197.211.61.80',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:09','2018-11-27 13:40:37'),(254,'mathematics','197.211.61.80',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:21','2018-11-27 13:38:36'),(255,'english','197.210.226.36',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:47:29','2018-11-27 13:47:32'),(256,'english','197.210.29.222',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:18:13','2018-11-27 14:20:00'),(257,'commerce','197.210.29.222',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:20:17','2018-11-27 14:20:22'),(258,'english','105.112.120.89',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:34:35','2018-11-27 14:37:02'),(259,'crk','105.112.120.89',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:38:57','2018-11-27 14:40:34'),(260,'mathematics','129.205.114.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:17','2018-11-27 14:40:17'),(261,'english','129.205.114.24',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:21','2018-11-27 14:41:29'),(262,'chemistry','129.205.114.24',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:42:02','2018-11-27 14:42:57'),(263,'physics','129.205.114.24',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:43:24','2018-11-27 14:44:50'),(264,'english','129.56.65.7',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:45:40','2018-11-27 16:45:49'),(265,'biology','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:46:22','2018-11-27 16:49:06'),(266,'accounting','129.56.65.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:26','2018-11-27 16:49:26'),(267,'geography','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:40','2018-11-27 16:59:23'),(268,'physics','105.112.26.254',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 17:27:44','2018-11-27 17:27:56'),(269,'english','129.56.60.65',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 18:02:16','2018-11-27 18:02:18'),(270,'english','105.112.34.100',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 19:45:56','2018-11-27 19:46:05'),(271,'chemistry','105.112.46.246',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:12:41','2018-11-27 20:12:45'),(272,'mathematics','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:30','2018-11-27 20:13:30'),(273,'currentaffairs','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:37','2018-11-27 20:13:38'),(274,'chemistry','5.102.173.71',20,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-28 03:23:29','2020-04-23 13:10:36'),(275,'english','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(276,'mathematics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(277,'accounting','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(278,'biology','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(279,'physics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(280,'economics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(281,'insurance','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(282,'english','197.210.29.201',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:58:56','2018-11-28 06:59:01'),(283,'currentaffairs','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:28','2018-11-28 07:00:28'),(284,'mathematics','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:50','2018-11-28 07:00:50'),(285,'currentaffairs','197.210.226.232',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:01:32','2018-11-28 07:02:24'),(286,'mathematics','105.112.68.162',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:39:34','2018-11-28 07:40:17'),(287,'english','129.56.51.37',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:53:25','2018-11-28 09:57:29'),(288,'englishlit','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:54:29','2018-11-28 17:19:35'),(289,'mathematics','129.56.51.37',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:57:49','2018-11-28 09:57:52'),(290,'chemistry','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:36:59','2018-11-28 13:36:59'),(291,'english','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:50:26','2018-11-28 13:50:26'),(292,'mathematics','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:51:25','2018-11-28 13:51:25'),(293,'geography','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:52:11','2018-11-28 13:52:11'),(294,'accounting','105.112.42.193',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 14:17:01','2018-11-28 14:17:30'),(295,'english','105.112.46.85',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:11','2018-11-28 17:19:16'),(296,'history','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:55','2018-11-28 17:20:33'),(297,'english','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:31','2018-11-28 17:48:31'),(298,'mathematics','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:35','2018-11-28 17:48:40'),(299,'chemistry','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:49:26','2018-11-28 17:50:45'),(300,'biology','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:50:12','2018-11-28 17:50:16'),(301,'accounting','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:52:59','2018-11-28 17:52:59'),(302,'history','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:53:04','2018-11-28 17:53:09'),(303,'physics','105.112.26.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 02:32:12','2018-11-29 02:33:14'),(304,'english','105.112.3.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:04:28','2018-11-29 05:07:31'),(305,'english','197.210.226.122',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:31:51','2018-11-29 05:33:21'),(306,'english','197.210.226.203',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:33:22','2018-11-29 05:37:32'),(307,'mathematics','197.210.226.122',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:38:12','2018-11-29 05:38:14'),(308,'english','102.163.30.124',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:45:54','2018-11-29 07:47:50'),(309,'accounting','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(310,'commerce','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(311,'biology','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(312,'physics','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(313,'chemistry','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(314,'englishlit','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(315,'geography','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(316,'crk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(317,'currentaffairs','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(318,'history','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(319,'irk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(320,'insurance','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(321,'chemistry','105.112.68.243',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 11:06:07','2018-11-29 11:06:07'),(322,'chemistry','197.149.95.62',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:08:23','2018-11-29 13:08:50'),(323,'english','197.211.60.94',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:18:57','2018-11-29 13:19:11'),(324,'english','129.56.159.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:43','2018-11-30 05:15:43'),(325,'mathematics','129.56.159.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:54','2018-11-30 05:15:55'),(326,'english','129.56.190.68',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 14:03:21','2018-11-30 14:03:21'),(327,'commerce','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(328,'physics','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(329,'chemistry','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(330,'englishlit','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(331,'government','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(332,'currentaffairs','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(333,'history','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(334,'mathematics','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(335,'crk','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(336,'geography','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(337,'history','105.112.47.245',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 19:21:33','2018-11-30 19:21:33'),(338,'english','105.112.46.230',2160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 21:59:34','2018-12-01 00:55:45'),(339,'commerce','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(340,'biology','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(341,'englishlit','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(342,'government','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(343,'civiledu','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(344,'insurance','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(345,'history','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(346,'english','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(347,'accounting','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(348,'physics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(349,'geography','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(350,'economics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(351,'english','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:57:37','2018-12-01 00:57:45'),(352,'physics','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:08','2018-12-01 00:58:11'),(353,'englishlit','105.112.68.163',840,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:33','2018-12-01 01:55:58'),(354,'english','101.206.169.22',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:48:58','2018-12-01 03:50:48'),(355,'geography','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:15','2018-12-01 03:49:15'),(356,'history','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:20','2018-12-01 03:49:20'),(357,'economics','101.206.169.22',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:50:52','2018-12-01 03:50:57'),(358,'physics','101.206.169.22',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:51:11','2018-12-01 03:51:31'),(359,'physics','105.112.21.158',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:34:50','2018-12-01 09:35:53'),(360,'biology','105.112.21.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:39:19','2018-12-01 09:39:19'),(361,'economics','105.112.32.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 14:44:33','2018-12-01 14:48:45'),(362,'english','192.241.239.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:43:19','2018-12-01 19:43:34'),(363,'economics','192.241.239.137',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:45:45','2018-12-01 19:45:48'),(364,'crk','41.90.4.17',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:39:33','2018-12-02 16:39:35'),(365,'english','105.112.68.194',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:46:19','2018-12-02 16:46:49'),(366,'englishlit','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:48:58','2018-12-02 16:48:58'),(367,'government','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:50:02','2018-12-02 16:50:02'),(368,'mathematics','105.112.35.216',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 20:03:41','2018-12-02 20:05:19'),(369,'mathematics','197.210.44.169',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 07:17:58','2018-12-03 07:17:58'),(370,'english','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:44:57','2019-01-01 08:57:25'),(371,'physics','66.249.66.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:47:01','2018-12-11 00:12:59'),(372,'commerce','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:52:28','2018-12-10 06:37:01'),(373,'mathematics','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:53:01','2019-01-01 09:08:53'),(374,'english','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(375,'mathematics','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(376,'accounting','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(377,'crk','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(378,'geography','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(379,'civiledu','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(380,'insurance','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(381,'english','197.210.55.187',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:21:56','2018-12-04 05:22:40'),(382,'english','197.210.55.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:22:22','2018-12-04 05:23:48'),(383,'english','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:46','2018-12-04 05:23:46'),(384,'economics','197.210.55.77',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:50','2018-12-04 05:23:55'),(385,'government','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:19','2018-12-04 05:24:19'),(386,'currentaffairs','197.210.55.77',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:20','2018-12-04 05:27:52'),(387,'biology','41.203.72.24',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 08:44:56','2018-12-04 08:45:38'),(388,'physics','129.18.144.249',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:37:18','2018-12-04 11:37:48'),(389,'mathematics','129.18.144.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:38:26','2018-12-04 11:38:26'),(390,'chemistry','129.18.144.249',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:39:19','2018-12-04 12:05:27'),(391,'chemistry','41.58.182.193',441,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:28:25','2019-02-18 09:48:30'),(392,'biology','41.58.182.193',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:59:24','2019-01-14 13:14:55'),(393,'accounting','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(394,'mathematics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(395,'crk','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(396,'commerce','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(397,'geography','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(398,'physics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(399,'englishlit','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(400,'economics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(401,'irk','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(402,'insurance','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(403,'civiledu','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(404,'history','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(405,'chemistry','5.255.250.167',134,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-06 10:34:57','2020-03-09 20:47:54'),(406,'english','198.54.114.114',2064829,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 23:13:35','2019-01-05 10:14:01'),(407,'mathematics','197.210.54.46',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:39:25','2018-12-07 14:39:27'),(408,'chemistry','107.167.108.170',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:41:02','2018-12-07 14:41:16'),(409,'english','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(410,'commerce','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(411,'physics','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(412,'crk','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(413,'civiledu','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(414,'insurance','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(415,'currentaffairs','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(416,'chemistry','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(417,'geography','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(418,'irk','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(419,'chemistry','93.158.161.84',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 12:23:24','2019-08-28 13:58:43'),(420,'mathematics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(421,'physics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(422,'englishlit','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(423,'government','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(424,'economics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(425,'irk','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(426,'civiledu','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(427,'chemistry','41.190.2.156',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 21:46:56','2018-12-08 21:53:59'),(428,'mathematics','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(429,'english','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(430,'commerce','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(431,'englishlit','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(432,'government','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(433,'economics','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(434,'crk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(435,'civiledu','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(436,'geography','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(437,'currentaffairs','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(438,'history','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(439,'irk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(440,'english','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:24:35','2019-01-21 04:56:34'),(441,'accounting','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:27:10','2018-12-10 05:27:10'),(442,'economics','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:28:56','2018-12-11 00:19:57'),(443,'currentaffairs','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:26:15','2018-12-10 06:26:15'),(444,'mathematics','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:32:16','2018-12-10 06:32:17'),(445,'government','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 09:31:31','2018-12-10 09:31:32'),(446,'crk','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:34:20','2018-12-10 11:34:20'),(447,'geography','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:40:41','2018-12-10 11:40:41'),(448,'english','66.249.66.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:01:44','2018-12-12 11:56:08'),(449,'crk','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:02:21','2018-12-11 00:02:21'),(450,'mathematics','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:13:24','2018-12-11 00:13:24'),(451,'english','105.112.45.33',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 12:02:56','2018-12-11 12:38:16'),(452,'chemistry','93.158.166.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 14:37:30','2018-12-11 14:37:30'),(453,'chemistry','180.76.15.21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 16:53:35','2018-12-11 16:53:35'),(454,'chemistry','180.76.15.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 19:26:46','2018-12-11 19:26:46'),(455,'english','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(456,'mathematics','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(457,'accounting','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(458,'biology','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(459,'geography','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(460,'economics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(461,'history','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(462,'physics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(463,'government','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(464,'irk','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(465,'civiledu','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(466,'chemistry','180.76.15.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 23:48:00','2018-12-11 23:48:00'),(467,'chemistry','180.76.15.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 00:21:20','2018-12-12 00:21:20'),(468,'chemistry','180.76.15.14',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 07:46:34','2018-12-12 07:46:34'),(469,'chemistry','154.113.73.98',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:36','2018-12-12 10:41:28'),(470,'mathematics','154.113.73.98',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:49','2018-12-12 10:36:58'),(471,'crk','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:20','2018-12-12 11:59:20'),(472,'physics','66.249.66.148',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:38','2019-01-21 04:57:41'),(473,'english','105.112.47.144',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:00:13','2018-12-12 22:58:12'),(474,'englishlit','105.112.47.144',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:02:31','2018-12-12 12:04:05'),(475,'accounting','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 21:01:10','2018-12-12 21:01:10'),(476,'chemistry','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 22:50:15','2018-12-12 22:50:15'),(477,'english','105.112.46.125',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:28:26','2018-12-13 08:44:01'),(478,'economics','105.112.46.125',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:29:01','2018-12-13 08:29:01'),(479,'english','105.112.41.38',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:57:18','2018-12-13 12:33:26'),(480,'english','129.56.134.30',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 09:16:11','2018-12-13 09:16:17'),(481,'chemistry','93.158.161.83',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-13 09:55:28','2019-08-18 19:16:42'),(482,'government','105.112.41.38',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:18','2018-12-13 10:21:18'),(483,'economics','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:51','2018-12-13 10:46:29'),(484,'biology','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:30:17','2018-12-13 10:32:39'),(485,'chemistry','105.112.41.38',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:47:04','2018-12-13 11:10:33'),(486,'accounting','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:57:43','2018-12-13 11:01:54'),(487,'mathematics','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:05:06','2018-12-13 11:15:23'),(488,'englishlit','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:10:58','2018-12-13 11:14:55'),(489,'chemistry','180.76.15.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 15:45:10','2018-12-13 15:45:10'),(490,'chemistry','180.76.15.16',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:18:30','2018-12-13 16:18:31'),(491,'irk','54.227.19.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:32:52','2018-12-13 16:32:52'),(492,'chemistry','180.76.15.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:51:50','2018-12-13 16:51:50'),(493,'english','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:37','2018-12-13 19:06:38'),(494,'mathematics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:40','2018-12-13 19:08:24'),(495,'crk','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:57','2018-12-13 19:06:58'),(496,'economics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:01','2018-12-13 19:08:24'),(497,'government','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:14','2018-12-13 19:07:14'),(498,'civiledu','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(499,'biology','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(500,'history','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:42','2018-12-13 19:07:42'),(501,'chemistry','178.154.171.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 21:33:50','2018-12-13 21:33:50'),(502,'chemistry','180.76.15.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 00:15:20','2018-12-14 00:15:20'),(503,'chemistry','180.76.15.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 07:43:39','2018-12-14 07:43:39'),(504,'chemistry','197.211.61.108',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 15:01:10','2018-12-14 15:01:10'),(505,'english','105.112.46.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 21:38:58','2018-12-14 21:38:59'),(506,'mathematics','105.112.32.198',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 15:16:16','2018-12-15 15:16:17'),(507,'english','105.112.38.110',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:20:52','2018-12-15 19:20:28'),(508,'biology','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:25:40','2018-12-15 18:25:40'),(509,'economics','105.112.38.110',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:21:25','2018-12-15 19:30:28'),(510,'accounting','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:30:34','2018-12-15 19:30:34'),(511,'physics','175.126.202.88',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 00:43:36','2018-12-16 00:44:38'),(512,'accounting','105.112.34.239',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 10:25:26','2018-12-16 10:25:26'),(513,'accounting','105.112.41.67',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 15:44:34','2018-12-16 16:36:06'),(514,'accounting','105.112.29.182',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 16:52:50','2018-12-16 17:06:10'),(515,'accounting','105.112.34.195',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 17:18:42','2018-12-16 18:36:42'),(516,'chemistry','197.211.56.111',287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:10:04','2018-12-16 19:21:43'),(517,'accounting','105.112.46.33',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:32:00','2018-12-16 19:34:06'),(518,'english','105.112.46.33',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:36:15','2018-12-16 19:36:15'),(519,'mathematics','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(520,'englishlit','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(521,'government','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(522,'economics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(523,'civiledu','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(524,'insurance','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(525,'history','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(526,'accounting','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(527,'physics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(528,'chemistry','197.211.61.98',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:12:52','2018-12-17 06:13:44'),(529,'mathematics','197.211.61.98',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:14:29','2018-12-17 06:14:29'),(530,'english','105.112.45.142',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:21:44','2018-12-17 06:21:44'),(531,'commerce','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(532,'mathematics','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(533,'englishlit','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(534,'accounting','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(535,'crk','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(536,'civiledu','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(537,'irk','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(538,'insurance','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(539,'currentaffairs','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(540,'history','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(541,'crk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(542,'geography','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(543,'economics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(544,'history','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(545,'chemistry','197.210.45.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 17:24:25','2018-12-17 17:39:16'),(546,'mathematics','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:41','2018-12-17 18:04:43'),(547,'english','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:52','2018-12-17 18:04:56'),(548,'chemistry','197.210.227.233',92,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 21:46:03','2020-04-28 16:08:26'),(549,'crk','41.90.4.25',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 05:23:20','2018-12-18 05:23:20'),(550,'mathematics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(551,'chemistry','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(552,'englishlit','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(553,'government','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(554,'economics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(555,'currentaffairs','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(556,'history','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(557,'english','197.149.92.146',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 15:42:59','2019-01-21 14:07:29'),(558,'english','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(559,'physics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(560,'government','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(561,'crk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(562,'economics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(563,'irk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(564,'history','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(565,'mathematics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(566,'commerce','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(567,'biology','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(568,'physics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(569,'crk','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(570,'civiledu','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(571,'mathematics','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(572,'commerce','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(573,'accounting','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(574,'biology','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(575,'government','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(576,'geography','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(577,'insurance','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(578,'english','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(579,'chemistry','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(580,'crk','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(581,'currentaffairs','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(582,'english','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:07:37','2018-12-19 07:07:37'),(583,'currentaffairs','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:08:26','2018-12-19 07:08:26'),(584,'chemistry','141.8.142.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 10:43:20','2018-12-19 10:43:20'),(585,'chemistry','129.205.114.31',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 14:19:13','2018-12-19 14:46:54'),(586,'chemistry','197.210.45.94',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 18:51:50','2018-12-19 19:42:45'),(587,'chemistry','197.210.226.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:52:25','2018-12-19 19:52:25'),(588,'chemistry','197.210.226.37',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:53:27','2018-12-19 19:53:31'),(589,'chemistry','129.205.114.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 22:33:31','2018-12-19 22:33:31'),(590,'chemistry','197.210.131.150',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 06:24:47','2018-12-20 06:43:46'),(591,'english','41.58.233.100',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:12:36','2018-12-20 09:15:21'),(592,'commerce','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(593,'biology','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(594,'physics','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(595,'englishlit','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(596,'geography','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(597,'history','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(598,'mathematics','105.112.37.70',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 19:08:41','2018-12-20 19:08:41'),(599,'english','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(600,'commerce','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(601,'geography','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(602,'economics','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(603,'civiledu','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(604,'insurance','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(605,'history','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(606,'currentaffairs','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:19','2018-12-21 08:05:19'),(607,'biology','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:51','2018-12-21 08:05:51'),(608,'english','105.112.47.163',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:24:03','2018-12-21 10:19:51'),(609,'chemistry','105.112.47.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:39:11','2018-12-21 08:39:37'),(610,'physics','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:45:24','2018-12-21 08:45:25'),(611,'mathematics','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(612,'chemistry','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(613,'englishlit','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(614,'geography','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(615,'civiledu','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(616,'currentaffairs','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(617,'history','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(618,'mathematics','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:33:23','2018-12-22 05:33:23'),(619,'english','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:35:01','2018-12-22 05:35:01'),(620,'chemistry','197.211.61.114',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:26:13','2018-12-22 11:17:52'),(621,'english','197.211.61.114',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:31:29','2018-12-22 10:01:02'),(622,'mathematics','197.211.61.114',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 10:51:19','2018-12-22 11:44:17'),(623,'biology','197.211.61.114',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:15:56','2018-12-22 11:38:07'),(624,'economics','197.211.61.114',601,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:45:00','2018-12-22 11:54:26'),(625,'english','105.112.46.179',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:02:33','2018-12-22 12:32:21'),(626,'biology','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:12:59','2018-12-22 12:12:59'),(627,'mathematics','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:14:25','2018-12-22 12:14:25'),(628,'biology','105.112.27.90',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 14:12:09','2018-12-22 14:12:19'),(629,'biology','105.112.28.72',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 08:30:27','2018-12-23 08:31:00'),(630,'mathematics','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:34','2018-12-23 10:24:34'),(631,'commerce','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(632,'biology','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(633,'government','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(634,'crk','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(635,'civiledu','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(636,'history','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(637,'english','102.163.30.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 14:59:34','2018-12-23 14:59:34'),(638,'chemistry','94.130.64.96',101,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-24 16:32:40','2019-10-29 05:22:55'),(639,'chemistry','87.250.224.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 15:07:57','2018-12-25 15:07:57'),(640,'english','105.112.46.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 16:28:23','2018-12-25 16:28:24'),(641,'chemistry','197.242.105.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 21:07:41','2018-12-25 21:07:41'),(642,'mathematics','129.56.150.67',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 06:03:54','2018-12-26 06:03:54'),(643,'currentaffairs','105.112.43.199',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 07:57:50','2018-12-26 08:02:07'),(644,'economics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:16','2018-12-26 08:24:50'),(645,'english','105.112.43.199',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:19','2018-12-26 08:13:25'),(646,'biology','105.112.43.199',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:13:33','2018-12-26 08:15:51'),(647,'mathematics','105.112.43.199',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:19:50','2018-12-26 08:19:50'),(648,'chemistry','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:21:57','2018-12-26 08:22:00'),(649,'physics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:23:21','2018-12-26 08:23:26'),(650,'biology','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(651,'physics','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(652,'government','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(653,'geography','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(654,'civiledu','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(655,'currentaffairs','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(656,'history','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(657,'accounting','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(658,'chemistry','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(659,'irk','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(660,'english','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(661,'commerce','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(662,'physics','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(663,'englishlit','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(664,'irk','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(665,'civiledu','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(666,'currentaffairs','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(667,'commerce','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(668,'accounting','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(669,'biology','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(670,'chemistry','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(671,'economics','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(672,'irk','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(673,'currentaffairs','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(674,'mathematics','197.211.63.177',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 09:02:54','2018-12-28 09:02:54'),(675,'english','66.249.75.30',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:23:21','2018-12-28 10:23:21'),(676,'government','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:24:59','2018-12-28 10:24:59'),(677,'geography','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:28:56','2018-12-28 10:28:56'),(678,'mathematics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:30:30','2018-12-28 10:30:30'),(679,'physics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:43:38','2018-12-28 10:43:39'),(680,'physics','119.4.252.222',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 13:32:48','2018-12-28 13:32:48'),(681,'mathematics','105.112.40.153',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:15','2018-12-29 06:30:15'),(682,'english','105.112.40.153',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:27','2018-12-29 06:30:31'),(683,'mathematics','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(684,'english','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(685,'commerce','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(686,'physics','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(687,'biology','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(688,'englishlit','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(689,'government','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(690,'chemistry','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(691,'geography','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(692,'currentaffairs','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 11:39:05'),(693,'irk','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 12:00:15'),(694,'insurance','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(695,'biology','197.211.61.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-30 18:14:56','2018-12-30 18:14:56'),(696,'englishlit','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 08:59:20','2019-01-01 08:59:20'),(697,'civiledu','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 09:06:49','2019-01-01 09:06:49'),(698,'mathematics','197.210.227.192',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 13:01:04','2019-01-01 13:01:05'),(699,'english','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:15','2019-01-02 13:19:15'),(700,'mathematics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:33','2019-01-02 13:19:33'),(701,'physics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:52','2019-01-02 13:19:52'),(702,'chemistry','216.244.66.249',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-03 00:12:52','2020-05-01 01:03:29'),(703,'chemistry','129.56.72.46',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:37:05','2019-01-03 15:53:03'),(704,'physics','129.56.72.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:42:55','2019-01-03 15:42:55'),(705,'english','129.56.72.46',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:43:08','2019-01-03 15:43:45'),(706,'chemistry','197.211.61.138',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-04 14:31:06','2019-01-04 14:31:06'),(707,'chemistry','54.36.222.37',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:24:51','2019-01-05 15:25:12'),(708,'chemistry','105.112.68.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:25:43','2019-01-05 15:25:43'),(709,'chemistry','41.58.55.77',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:20:09','2019-01-05 16:29:28'),(710,'government','41.58.55.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:30:37','2019-01-05 16:30:37'),(711,'english','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:28','2019-01-06 16:30:29'),(712,'physics','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:33','2019-01-06 16:30:33'),(713,'english','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(714,'mathematics','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(715,'physics','54.163.211.17',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(716,'englishlit','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(717,'crk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(718,'government','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(719,'irk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(720,'economics','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(721,'history','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(722,'insurance','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(723,'currentaffairs','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(724,'mathematics','105.112.16.240',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(725,'physics','105.112.16.240',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(726,'english','35.171.138.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:39:33','2019-01-07 09:39:33'),(727,'chemistry','141.8.142.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:47:24','2019-01-07 09:47:24'),(728,'chemistry','129.56.36.237',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 14:52:19','2019-01-07 14:54:09'),(729,'chemistry','129.56.35.102',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:18:44','2019-01-08 07:43:45'),(730,'mathematics','129.56.35.102',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:20:24','2019-01-08 07:41:53'),(731,'mathematics','105.112.23.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:11:31','2019-01-08 09:11:31'),(732,'english','105.112.32.121',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:42:08','2019-01-08 09:42:22'),(733,'chemistry','197.211.61.143',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:10:03','2019-01-08 14:10:20'),(734,'chemistry','154.68.226.2',118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:34:37','2019-01-08 14:39:59'),(735,'english','154.68.226.2',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:39:32','2019-01-08 14:39:32'),(736,'chemistry','105.112.75.253',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:28:30','2019-01-08 18:28:52'),(737,'chemistry','105.112.33.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:43:41','2019-01-08 18:43:41'),(738,'chemistry','35.192.130.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 23:46:16','2019-01-08 23:46:25'),(739,'mathematics','105.112.18.0',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 07:37:37','2019-01-09 07:37:38'),(740,'chemistry','154.118.13.144',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:11:55','2019-01-09 08:13:04'),(741,'mathematics','154.118.13.144',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:12:11','2019-01-09 08:12:47'),(742,'mathematics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(743,'commerce','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(744,'accounting','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(745,'government','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(746,'economics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(747,'civiledu','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(748,'currentaffairs','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(749,'chemistry','41.77.168.134',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:45:00','2019-01-09 08:58:31'),(750,'mathematics','41.77.168.134',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:48:48','2019-01-09 08:48:48'),(751,'english','41.77.168.134',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:58:57','2019-01-09 09:03:34'),(752,'commerce','54.196.34.230',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:52:38'),(753,'accounting','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(754,'chemistry','54.196.34.230',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:19:42'),(755,'englishlit','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(756,'economics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(757,'irk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(758,'insurance','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(759,'physics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(760,'government','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(761,'crk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(762,'geography','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(763,'civiledu','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(764,'history','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(765,'chemistry','80.248.6.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:06:19','2019-01-09 10:06:19'),(766,'chemistry','154.118.61.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:32:10','2019-01-09 10:32:45'),(767,'english','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(768,'mathematics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(769,'commerce','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(770,'accounting','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(771,'physics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(772,'government','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(773,'insurance','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(774,'chemistry','197.242.96.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:31:54','2019-01-09 12:36:27'),(775,'commerce','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(776,'accounting','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(777,'physics','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(778,'government','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(779,'crk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(780,'irk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(781,'history','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(782,'chemistry','197.211.61.140',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:31:17','2019-01-09 13:31:45'),(783,'chemistry','197.210.28.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:45:23','2019-01-09 13:45:42'),(784,'chemistry','105.112.26.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:11:31','2019-01-09 16:11:31'),(785,'chemistry','212.100.76.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:20:25','2019-01-09 16:20:25'),(786,'english','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(787,'commerce','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(788,'chemistry','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(789,'accounting','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(790,'crk','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(791,'englishlit','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(792,'geography','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(793,'economics','54.234.47.73',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:14:14'),(794,'irk','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(795,'history','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(796,'insurance','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(797,'chemistry','51.75.71.123',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 23:42:44','2019-01-09 23:43:14'),(798,'chemistry','129.205.114.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 01:56:23','2019-01-10 01:56:30'),(799,'mathematics','197.210.47.164',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:43:39','2019-01-10 09:02:20'),(800,'chemistry','197.210.47.164',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:49:36','2019-01-10 08:58:38'),(801,'mathematics','163.172.103.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 09:01:09','2019-01-10 09:01:09'),(802,'chemistry','41.223.145.174',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 14:44:39','2019-01-10 14:44:40'),(803,'english','54.82.110.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 20:51:21','2019-01-10 20:51:21'),(804,'english','105.112.46.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:06:16','2019-01-10 21:06:16'),(805,'english','54.80.138.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:20','2019-01-10 21:09:20'),(806,'accounting','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(807,'physics','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(808,'chemistry','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(809,'government','54.80.138.166',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(810,'geography','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:23'),(811,'insurance','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(812,'history','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(813,'commerce','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:33','2019-01-10 21:45:05'),(814,'crk','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:45:05'),(815,'economics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:23'),(816,'civiledu','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:25'),(817,'mathematics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:45:05'),(818,'biology','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:21:37'),(819,'irk','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:45:05'),(820,'currentaffairs','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:34:23'),(821,'mathematics','105.112.46.80',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:40:26','2019-01-10 21:40:35'),(822,'chemistry','197.210.226.19',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 06:57:07','2019-01-11 07:15:56'),(823,'chemistry','197.210.53.216',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:13','2019-01-11 07:55:13'),(824,'chemistry','197.210.52.249',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:24','2019-02-01 07:57:34'),(825,'chemistry','197.210.53.38',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:33','2019-01-11 07:55:33'),(826,'chemistry','141.0.12.246',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 08:09:00','2019-01-11 08:09:00'),(827,'chemistry','93.158.161.104',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-11 11:59:42','2019-11-14 01:45:39'),(828,'mathematics','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(829,'physics','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(830,'chemistry','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(831,'government','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(832,'geography','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(833,'economics','54.205.11.114',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(834,'currentaffairs','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(835,'english','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(836,'commerce','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(837,'biology','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(838,'crk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(839,'irk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(840,'insurance','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(841,'civiledu','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(842,'history','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(843,'chemistry','197.210.227.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:05:33','2019-01-11 19:05:33'),(844,'english','197.210.227.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:09:52','2019-01-11 19:09:52'),(845,'englishlit','197.211.61.137',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 22:39:43','2019-01-11 22:39:43'),(846,'physics','197.242.97.253',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:01:48','2019-01-11 23:05:05'),(847,'mathematics','197.242.97.253',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:06:07','2019-01-11 23:31:02'),(848,'chemistry','197.211.61.137',101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:08:07','2019-01-11 23:30:04'),(849,'irk','197.211.61.137',2640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:30:32','2019-01-12 01:52:58'),(850,'civiledu','197.211.61.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:38:40','2019-01-12 00:01:30'),(851,'crk','197.211.61.137',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 01:59:32','2019-01-12 02:01:42'),(852,'chemistry','154.113.86.220',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 12:01:05','2019-01-12 12:05:52'),(853,'chemistry','197.210.55.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:02','2019-01-12 13:17:02'),(854,'chemistry','197.210.54.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:27','2019-01-12 13:17:35'),(855,'chemistry','197.210.54.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:18:25','2019-01-12 13:18:25'),(856,'english','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(857,'mathematics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(858,'commerce','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(859,'biology','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(860,'physics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(861,'irk','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(862,'insurance','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(863,'english','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(864,'biology','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(865,'physics','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(866,'government','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(867,'irk','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(868,'civiledu','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(869,'insurance','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(870,'chemistry','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(871,'englishlit','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(872,'history','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(873,'english','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(874,'mathematics','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(875,'biology','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(876,'geography','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(877,'irk','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(878,'insurance','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(879,'history','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(880,'english','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:04:50','2019-01-12 20:04:50'),(881,'chemistry','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:05:26','2019-01-12 20:05:27'),(882,'irk','197.210.47.86',180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:21:42','2019-01-12 20:26:58'),(883,'insurance','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:27:49','2019-01-12 20:27:49'),(884,'mathematics','197.210.47.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:36:53','2019-01-12 20:39:06'),(885,'chemistry','154.120.102.146',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 00:32:56','2019-01-13 00:33:43'),(886,'english','197.210.54.214',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:56:19'),(887,'english','197.210.54.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:02:41'),(888,'mathematics','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:09:53','2019-01-13 08:09:53'),(889,'mathematics','197.210.55.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:10:36','2019-01-13 08:10:36'),(890,'english','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:51:48','2019-01-13 08:51:48'),(891,'english','197.210.55.13',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:59:29','2019-01-13 08:59:29'),(892,'chemistry','197.210.44.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:00:31','2019-01-13 11:00:31'),(893,'english','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(894,'commerce','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(895,'biology','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(896,'chemistry','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(897,'englishlit','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(898,'government','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(899,'history','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(900,'english','197.210.226.45',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 14:49:00','2019-01-13 14:49:00'),(901,'physics','197.210.227.184',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(902,'physics','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(903,'english','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:59:10','2019-01-13 15:59:10'),(904,'english','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:02:36','2019-01-13 16:02:36'),(905,'biology','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:05:26','2019-01-13 16:05:26'),(906,'biology','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:10:47','2019-01-13 16:12:44'),(907,'physics','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:39:55','2019-01-13 16:39:55'),(908,'economics','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:33:11','2019-01-13 17:41:35'),(909,'mathematics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(910,'english','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(911,'accounting','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(912,'physics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(913,'chemistry','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(914,'englishlit','54.87.49.142',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(915,'crk','54.87.49.142',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(916,'government','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(917,'geography','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(918,'economics','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(919,'commerce','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(920,'civiledu','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(921,'currentaffairs','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(922,'history','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(923,'english','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(924,'commerce','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(925,'physics','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(926,'englishlit','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(927,'geography','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(928,'insurance','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(929,'currentaffairs','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(930,'mathematics','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(931,'accounting','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(932,'crk','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(933,'mathematics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(934,'commerce','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(935,'government','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(936,'chemistry','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(937,'crk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(938,'englishlit','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(939,'economics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(940,'irk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(941,'geography','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(942,'insurance','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(943,'civiledu','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(944,'currentaffairs','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(945,'chemistry','41.58.81.61',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 06:35:26','2019-01-14 11:20:24'),(946,'chemistry','67.222.154.247',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:40:10','2019-01-14 07:40:10'),(947,'mathematics','41.58.182.193',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:50:27','2019-01-14 15:09:22'),(948,'commerce','41.58.182.193',2080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 09:57:28','2019-01-14 13:27:13'),(949,'chemistry','154.120.102.252',854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:00:36','2019-01-14 10:20:54'),(950,'accounting','41.58.182.193',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:01:42','2019-01-14 13:14:55'),(951,'commerce','197.211.61.136',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:38:39','2019-01-14 10:38:59'),(952,'biology','41.58.81.61',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:18:50','2019-01-14 11:19:07'),(953,'chemistry','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:24:11','2019-01-14 11:24:11'),(954,'english','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:25:28','2019-01-14 11:25:28'),(955,'english','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(956,'commerce','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(957,'accounting','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(958,'government','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(959,'crk','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(960,'civiledu','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(961,'insurance','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(962,'chemistry','73.142.154.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:37:12','2019-01-14 11:37:12'),(963,'chemistry','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:10:52','2019-01-14 14:26:38'),(964,'geography','154.118.29.188',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:50:28','2019-01-14 14:27:52'),(965,'history','154.118.29.188',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:23:24'),(966,'economics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:27:38'),(967,'insurance','154.118.29.188',95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:24:14'),(968,'english','154.118.29.188',71,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:24','2019-01-14 14:25:44'),(969,'crk','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:33','2019-01-14 14:23:40'),(970,'englishlit','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:39','2019-01-14 14:27:06'),(971,'biology','154.118.29.188',77,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:19','2019-01-14 14:25:59'),(972,'accounting','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:21','2019-01-14 14:26:39'),(973,'mathematics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:22','2019-01-14 14:25:10'),(974,'physics','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:27','2019-01-14 14:27:00'),(975,'currentaffairs','154.118.29.188',109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:29','2019-01-14 14:24:12'),(976,'commerce','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:24:22'),(977,'irk','154.118.29.188',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:27:24'),(978,'civiledu','154.118.29.188',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:39','2019-01-14 14:27:37'),(979,'government','154.118.29.188',112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:45','2019-01-14 14:27:52'),(980,'english','105.112.26.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:16:02','2019-01-14 13:16:02'),(981,'physics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:23:47','2019-01-14 13:23:47'),(982,'chemistry','102.176.244.209',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:27:15','2019-01-14 13:27:15'),(983,'englishlit','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:28:42','2019-01-14 13:28:42'),(984,'chemistry','3.82.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:46'),(985,'chemistry','54.221.199.147',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:47'),(986,'english','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:18:34'),(987,'mathematics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(988,'government','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(989,'crk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(990,'economics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(991,'irk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(992,'civiledu','54.83.84.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(993,'insurance','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:41'),(994,'geography','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:09'),(995,'economics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:58','2019-01-14 14:35:25'),(996,'civiledu','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:04','2019-01-14 14:37:40'),(997,'chemistry','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:12','2019-01-14 14:37:32'),(998,'irk','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:34','2019-01-14 14:37:32'),(999,'mathematics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:38','2019-01-14 14:34:17'),(1000,'currentaffairs','41.217.124.252',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:52','2019-01-14 14:36:53'),(1001,'crk','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:59','2019-01-14 14:33:56'),(1002,'physics','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:04','2019-01-14 14:34:57'),(1003,'english','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:10','2019-01-14 14:36:11'),(1004,'accounting','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:16','2019-01-14 14:37:41'),(1005,'commerce','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:24','2019-01-14 14:36:54'),(1006,'government','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:33:56','2019-01-14 14:35:57'),(1007,'englishlit','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:34:57','2019-01-14 14:36:30'),(1008,'accounting','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1009,'physics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1010,'chemistry','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1011,'currentaffairs','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1012,'history','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1013,'biology','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:25','2019-01-14 14:37:26'),(1014,'history','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:36:21','2019-01-14 14:37:39'),(1015,'mathematics','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:40:53','2019-01-14 15:01:48'),(1016,'insurance','154.120.104.84',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:10','2019-01-14 14:59:05'),(1017,'history','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:40','2019-01-14 14:58:06'),(1018,'government','154.120.104.84',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:00:27'),(1019,'currentaffairs','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:37'),(1020,'economics','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:20'),(1021,'civiledu','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:51','2019-01-14 14:59:48'),(1022,'biology','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:58','2019-01-14 15:01:49'),(1023,'chemistry','154.120.104.84',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:04','2019-01-14 15:01:09'),(1024,'englishlit','154.120.104.84',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:05','2019-01-14 15:01:56'),(1025,'commerce','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:07','2019-01-14 15:01:04'),(1026,'crk','154.120.104.84',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1027,'geography','154.120.104.84',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 14:59:41'),(1028,'english','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1029,'irk','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:44:31','2019-01-14 15:01:38'),(1030,'physics','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:46:00','2019-01-14 15:00:40'),(1031,'accounting','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:48:21','2019-01-14 15:01:46'),(1032,'crk','54.224.217.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 15:45:45','2019-01-14 15:45:45'),(1033,'commerce','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:22:40','2019-01-14 16:22:40'),(1034,'history','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:24:24','2019-01-14 16:24:24'),(1035,'chemistry','168.253.115.37',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:46:30','2019-01-14 16:46:30'),(1036,'chemistry','197.242.101.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 17:00:07','2019-01-14 17:00:08'),(1037,'chemistry','105.112.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:34:19','2019-01-14 18:34:19'),(1038,'english','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:33','2019-01-14 18:52:34'),(1039,'chemistry','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:40','2019-01-14 18:52:40'),(1040,'mathematics','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:00','2019-01-14 18:53:01'),(1041,'biology','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:10','2019-01-14 18:53:11'),(1042,'english','218.94.63.46',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1043,'english','218.94.63.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:03'),(1044,'economics','218.94.63.46',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1045,'english','197.211.61.152',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 03:35:57','2019-01-15 03:36:17'),(1046,'chemistry','154.118.16.190',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:40:00'),(1047,'chemistry','154.118.16.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:39:18'),(1048,'chemistry','105.112.37.149',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:48:36','2019-01-15 10:57:07'),(1049,'economics','105.112.37.149',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:50:17','2019-01-15 15:03:40'),(1050,'commerce','41.222.43.114',164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:59:58','2019-01-15 14:58:39'),(1051,'currentaffairs','41.222.43.114',176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:04','2019-01-15 14:59:14'),(1052,'accounting','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:13','2019-01-15 14:57:38'),(1053,'history','41.222.43.114',156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:17','2019-01-15 14:58:14'),(1054,'crk','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:27','2019-01-15 14:56:43'),(1055,'irk','41.222.43.114',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:33','2019-01-15 14:59:08'),(1056,'economics','41.222.43.114',171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:38','2019-01-15 14:57:48'),(1057,'mathematics','41.222.43.114',147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:48','2019-01-15 14:58:28'),(1058,'physics','41.222.43.114',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:58','2019-01-15 14:56:23'),(1059,'civiledu','41.222.43.114',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:03','2019-01-15 14:58:33'),(1060,'english','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:19','2019-01-15 14:58:49'),(1061,'insurance','41.222.43.114',178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:33','2019-01-15 14:59:03'),(1062,'government','41.222.43.114',170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:48','2019-01-15 14:58:58'),(1063,'chemistry','41.222.43.114',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:58','2019-01-15 14:58:44'),(1064,'geography','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:04','2019-01-15 14:53:49'),(1065,'biology','41.222.43.114',149,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:13','2019-01-15 14:55:33'),(1066,'englishlit','41.222.43.114',166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:03:14','2019-01-15 14:58:08'),(1067,'chemistry','197.210.45.97',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:04:32','2019-01-15 11:04:46'),(1068,'economics','197.210.45.97',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:15:28','2019-01-15 11:40:03'),(1069,'biology','197.210.45.97',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:17:50','2019-01-15 11:18:29'),(1070,'chemistry','169.159.108.237',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:25:31','2019-01-15 11:25:31'),(1071,'chemistry','129.18.141.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:50:09','2019-01-15 11:50:09'),(1072,'english','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:29','2019-01-15 12:33:29'),(1073,'mathematics','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:44','2019-01-15 12:33:45'),(1074,'chemistry','154.117.120.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:34:24','2019-01-15 12:34:24'),(1075,'englishlit','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:46','2019-01-15 13:57:08'),(1076,'crk','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:47','2019-01-15 13:56:49'),(1077,'accounting','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:48','2019-01-15 13:57:48'),(1078,'history','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:58','2019-01-15 13:56:58'),(1079,'mathematics','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:03','2019-01-15 13:57:03'),(1080,'economics','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:13','2019-01-15 13:57:28'),(1081,'geography','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:18','2019-01-15 13:57:18'),(1082,'chemistry','41.184.122.84',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-15 13:57:23','2019-11-12 12:30:51'),(1083,'biology','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:33','2019-01-15 13:57:53'),(1084,'insurance','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:38','2019-01-15 13:58:43'),(1085,'civiledu','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:43','2019-01-15 13:58:53'),(1086,'irk','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:58','2019-01-15 13:57:58'),(1087,'physics','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:03','2019-01-15 13:58:48'),(1088,'currentaffairs','41.184.122.84',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:13','2019-01-15 13:58:38'),(1089,'commerce','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:33','2019-01-15 13:58:33'),(1090,'english','41.217.112.165',595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:13:18','2019-01-15 18:35:09'),(1091,'mathematics','41.217.112.165',682,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:37:42','2019-01-15 20:35:48'),(1092,'mathematics','154.118.11.179',218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:09:53','2019-01-15 21:33:28'),(1093,'mathematics','105.112.19.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:11:19','2019-01-15 20:11:19'),(1094,'chemistry','154.118.11.179',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:00:39','2019-01-15 21:00:39'),(1095,'english','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1096,'commerce','54.211.194.179',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1097,'biology','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1098,'chemistry','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1099,'accounting','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1100,'physics','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1101,'englishlit','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1102,'geography','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1103,'government','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1104,'civiledu','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1105,'currentaffairs','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1106,'crk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1107,'history','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1108,'economics','54.211.194.179',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1109,'irk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1110,'english','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1111,'mathematics','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1112,'commerce','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1113,'biology','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1114,'englishlit','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1115,'government','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1116,'history','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1117,'accounting','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1118,'crk','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1119,'economics','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1120,'civiledu','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1121,'insurance','54.90.226.10',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1122,'chemistry','105.112.18.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:40:38','2019-01-16 06:40:39'),(1123,'chemistry','105.112.26.11',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:57:01','2019-01-16 06:57:01'),(1124,'english','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:11:18','2019-01-16 08:11:18'),(1125,'economics','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:12:44','2019-01-16 08:12:44'),(1126,'government','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:37:13','2019-01-16 08:37:13'),(1127,'commerce','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1128,'accounting','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1129,'physics','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1130,'geography','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1131,'civiledu','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1132,'insurance','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1133,'history','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1134,'english','54.235.31.132',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 10:26:39','2019-01-16 10:26:39'),(1135,'government','54.90.239.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:30:56','2019-01-16 12:30:56'),(1136,'economics','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:34:56','2019-01-16 12:34:57'),(1137,'insurance','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:48:13','2019-01-16 13:48:13'),(1138,'civiledu','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:55:55','2019-01-16 13:55:55'),(1139,'government','54.226.242.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 15:41:22','2019-01-16 15:41:22'),(1140,'economics','197.210.64.25',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:45:11','2019-01-16 16:54:28'),(1141,'chemistry','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:58:41','2019-01-16 16:58:53'),(1142,'mathematics','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:59:05','2019-01-16 17:07:06'),(1143,'mathematics','41.138.87.73',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 17:49:50','2019-01-16 17:53:24'),(1144,'chemistry','173.225.16.67',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 18:43:39','2019-01-19 04:12:25'),(1145,'commerce','34.207.210.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 19:50:10','2019-01-16 19:50:29'),(1146,'biology','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 20:40:19','2019-01-16 20:40:19'),(1147,'chemistry','41.138.81.104',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:39:14','2019-01-16 21:39:58'),(1148,'history','41.138.81.104',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:40:15','2019-01-16 21:41:27'),(1149,'accounting','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 22:44:31','2019-01-16 22:44:31'),(1150,'mathematics','3.83.38.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 04:39:27','2019-01-17 04:39:27'),(1151,'english','102.176.244.209',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 13:44:54','2019-01-21 11:05:17'),(1152,'chemistry','197.255.52.86',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:42:55','2019-01-17 14:43:15'),(1153,'accounting','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1154,'physics','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1155,'chemistry','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1156,'englishlit','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1157,'government','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1158,'geography','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1159,'insurance','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1160,'biology','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1161,'crk','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1162,'civiledu','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1163,'chemistry','68.13.248.93',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 02:01:44','2019-01-18 02:02:05'),(1164,'chemistry','72.183.76.77',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 03:28:05','2019-01-18 03:29:19'),(1165,'chemistry','197.211.61.152',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 07:10:31','2019-01-18 07:12:13'),(1166,'biology','54.162.164.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 09:21:43','2019-01-18 09:21:43'),(1167,'chemistry','105.112.112.103',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:18:21','2019-01-18 10:19:31'),(1168,'chemistry','197.210.221.158',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:20:34','2019-01-18 10:21:00'),(1169,'chemistry','165.73.192.11',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:30:28','2019-01-18 10:30:38'),(1170,'chemistry','197.210.47.116',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:39:50','2020-04-21 15:26:10'),(1171,'history','66.249.93.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 11:29:27','2019-01-18 11:29:27'),(1172,'chemistry','154.118.20.163',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:12:36','2019-01-18 12:12:36'),(1173,'chemistry','129.56.80.136',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:13:30','2019-01-18 12:14:17'),(1174,'mathematics','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:14:30','2019-01-18 12:14:30'),(1175,'english','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:15:08','2019-01-18 12:15:09'),(1176,'history','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:34:02','2019-01-18 13:34:02'),(1177,'mathematics','41.203.72.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:35:18','2019-01-18 13:35:19'),(1178,'english','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:46:36','2019-01-18 13:46:36'),(1179,'chemistry','41.191.104.66',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:54:05','2019-01-18 13:54:05'),(1180,'chemistry','72.182.201.96',96,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 14:53:27','2019-01-18 14:54:54'),(1181,'chemistry','66.249.73.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:35:04','2019-01-18 16:35:04'),(1182,'commerce','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1183,'physics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1184,'chemistry','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1185,'englishlit','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1186,'geography','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1187,'crk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1188,'irk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:38'),(1189,'currentaffairs','54.211.126.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1190,'civiledu','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1191,'history','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1192,'insurance','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1193,'biology','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:40:42'),(1194,'government','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:38'),(1195,'economics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:47'),(1196,'english','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1197,'accounting','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1198,'mathematics','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:40:42','2019-01-18 16:40:42'),(1199,'crk','54.161.130.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 17:33:33','2019-01-18 17:33:33'),(1200,'chemistry','102.134.114.214',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 20:59:05','2019-01-18 20:59:42'),(1201,'government','54.227.72.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 22:16:13','2019-01-18 22:16:13'),(1202,'government','54.91.120.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 01:06:53','2019-01-19 01:06:53'),(1203,'accounting','54.227.122.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 04:33:38','2019-01-19 04:33:38'),(1204,'commerce','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1205,'physics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1206,'government','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1207,'geography','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1208,'economics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1209,'irk','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1210,'civiledu','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1211,'crk','54.221.144.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:40:28','2019-01-19 07:40:28'),(1212,'chemistry','129.56.27.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 09:08:03','2019-01-19 09:08:03'),(1213,'chemistry','142.120.136.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 10:20:14','2019-01-19 10:20:14'),(1214,'chemistry','178.5.57.197',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 11:52:36','2019-01-19 11:54:27'),(1215,'chemistry','163.172.103.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 12:08:33','2019-01-19 12:08:33'),(1216,'chemistry','41.190.2.147',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:15:10','2019-01-19 13:19:19'),(1217,'chemistry','105.176.145.237',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:26:28','2019-01-19 13:31:47'),(1218,'biology','105.176.145.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:33:44','2019-01-19 13:33:44'),(1219,'english','197.211.61.157',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 17:04:45','2019-01-19 17:04:45'),(1220,'english','54.162.8.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:40:29','2019-01-19 20:40:29'),(1221,'mathematics','51.15.164.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:50:22','2019-01-19 20:50:22'),(1222,'history','66.249.88.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:16:25','2019-01-20 07:16:25'),(1223,'history','66.249.93.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:27:21','2019-01-20 07:27:21'),(1224,'chemistry','197.210.29.161',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 11:59:53','2019-01-20 12:02:04'),(1225,'english','54.87.9.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 15:47:38','2019-01-20 15:47:38'),(1226,'chemistry','66.249.66.148',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 17:41:21','2019-01-20 17:44:12'),(1227,'chemistry','46.229.168.129',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-20 18:19:28','2020-03-16 03:20:32'),(1228,'english','54.205.83.37',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1229,'mathematics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1230,'government','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1231,'accounting','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1232,'geography','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1233,'crk','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1234,'economics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1235,'economics','54.205.83.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1236,'civiledu','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1237,'insurance','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1238,'currentaffairs','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1239,'history','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1240,'history','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:05:55','2019-01-21 05:05:55'),(1241,'mathematics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1242,'commerce','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1243,'physics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1244,'englishlit','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1245,'geography','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1246,'economics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1247,'currentaffairs','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1248,'english','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1249,'biology','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1250,'chemistry','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1251,'crk','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1252,'history','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1253,'chemistry','41.190.3.176',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 08:43:52','2019-01-21 08:49:54'),(1254,'chemistry','41.191.104.112',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 13:29:06','2019-02-11 14:20:17'),(1255,'chemistry','197.210.226.53',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:14:04','2019-01-21 17:18:25'),(1256,'chemistry','197.210.226.64',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:19:47','2019-01-21 17:49:54'),(1257,'chemistry','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:21:23','2019-01-21 17:21:23'),(1258,'mathematics','197.210.227.233',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:29:23','2019-01-21 17:29:23'),(1259,'mathematics','197.210.226.64',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:48:04','2019-05-25 14:23:44'),(1260,'chemistry','197.210.52.70',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 18:43:18','2019-01-26 10:26:21'),(1261,'mathematics','105.112.23.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 23:50:11','2019-01-21 23:50:11'),(1262,'chemistry','41.191.104.126',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 12:07:26','2019-01-22 12:13:11'),(1263,'chemistry','105.112.27.156',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:30:44','2019-01-22 13:33:01'),(1264,'english','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:36','2019-01-22 13:33:36'),(1265,'commerce','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:56','2019-01-22 13:33:56'),(1266,'mathematics','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:34:19','2019-01-22 13:34:19'),(1267,'english','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1268,'accounting','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1269,'government','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1270,'civiledu','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1271,'insurance','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1272,'currentaffairs','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1273,'history','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1274,'chemistry','41.191.107.133',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:40:08','2019-01-22 14:40:08'),(1275,'chemistry','41.191.107.216',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 15:11:15','2019-04-12 06:41:44'),(1276,'chemistry','41.191.107.208',154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 16:28:30','2019-01-22 16:33:44'),(1277,'biology','54.147.167.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:04:47','2019-01-22 18:04:47'),(1278,'insurance','54.81.167.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:45:46','2019-01-22 18:45:46'),(1279,'biology','197.211.61.167',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 19:57:02','2019-01-22 19:57:02'),(1280,'commerce','3.81.140.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 20:21:37','2019-01-22 20:21:37'),(1281,'chemistry','41.191.104.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:21:52','2019-01-22 21:21:52'),(1282,'chemistry','41.191.104.124',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:28:37','2019-01-27 21:27:34'),(1283,'englishlit','54.172.206.195',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:57:00','2019-01-22 21:57:00'),(1284,'chemistry','197.211.60.92',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 02:17:56','2019-01-23 02:20:31'),(1285,'chemistry','66.249.93.42',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 04:09:58','2019-02-14 14:08:04'),(1286,'chemistry','41.191.107.155',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 10:14:34','2019-01-23 10:14:45'),(1287,'chemistry','41.191.104.86',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 12:43:27','2019-01-23 12:43:27'),(1288,'chemistry','41.191.107.198',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:01:14','2019-01-23 13:08:26'),(1289,'chemistry','41.191.104.249',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:08:39','2019-01-23 13:15:36'),(1290,'mathematics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1291,'english','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1292,'biology','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1293,'commerce','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1294,'physics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1295,'englishlit','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1296,'chemistry','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1297,'government','54.162.153.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1298,'irk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1299,'crk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1300,'geography','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1301,'civiledu','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1302,'currentaffairs','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1303,'economics','212.100.95.210',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:14:58','2019-01-24 08:14:59'),(1304,'chemistry','66.249.93.44',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:24:17','2019-02-04 14:03:36'),(1305,'english','41.191.107.227',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:51:56','2019-01-24 09:52:02'),(1306,'chemistry','41.191.107.227',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 09:32:48','2019-01-24 09:34:19'),(1307,'english','41.191.107.206',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 10:03:24','2019-04-18 16:27:25'),(1308,'english','41.217.124.194',937,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 12:30:40','2019-01-24 13:11:10'),(1309,'mathematics','41.217.124.194',363,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 13:22:56','2019-01-24 13:37:40'),(1310,'commerce','54.91.221.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:05:23','2019-01-24 14:05:23'),(1311,'english','41.191.107.138',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:21:11','2019-04-14 17:04:58'),(1312,'chemistry','41.191.107.138',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:33:41','2019-01-27 21:20:19'),(1313,'commerce','41.217.124.194',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:39:06','2019-01-24 14:39:31'),(1314,'english','41.191.104.91',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:49:01','2019-04-15 21:32:14'),(1315,'mathematics','41.191.104.91',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 15:18:28','2019-04-15 21:20:52'),(1316,'history','3.82.242.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 00:01:01','2019-01-25 00:01:01'),(1317,'englishlit','54.82.44.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:01:01','2019-01-25 04:01:01'),(1318,'chemistry','105.112.96.148',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:45:44','2019-01-25 04:45:44'),(1319,'chemistry','41.190.2.209',15,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 05:44:24','2019-09-18 16:51:41'),(1320,'chemistry','197.210.8.9',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 06:10:55','2019-01-25 08:35:26'),(1321,'history','54.161.164.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 08:01:07','2019-01-25 08:01:07'),(1322,'chemistry','197.210.60.170',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:01:12','2019-01-25 11:01:12'),(1323,'english','197.210.60.170',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:04:07','2019-01-25 11:07:03'),(1324,'chemistry','41.190.30.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:53:49','2019-01-25 11:53:49'),(1325,'biology','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:35:12','2019-01-25 14:35:38'),(1326,'englishlit','41.190.31.164',116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:41:44','2019-01-25 14:56:06'),(1327,'chemistry','197.210.52.237',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:07','2019-01-25 14:51:53'),(1328,'chemistry','197.210.52.239',162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:30','2019-01-25 14:52:22'),(1329,'chemistry','197.210.52.138',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:52:01','2019-01-25 14:52:32'),(1330,'government','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:53:59','2019-01-25 14:53:59'),(1331,'chemistry','197.210.44.60',2108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:58:41','2019-01-25 16:28:06'),(1332,'commerce','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:08:21','2019-01-25 15:08:21'),(1333,'accounting','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:09:36','2019-01-25 15:10:08'),(1334,'crk','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:11:50','2019-01-25 15:12:13'),(1335,'economics','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:16:03','2019-01-25 15:16:03'),(1336,'chemistry','185.118.165.15',126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:21:37','2019-01-25 15:27:32'),(1337,'chemistry','105.112.38.7',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:49:44','2019-01-25 20:14:22'),(1338,'mathematics','105.112.38.7',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:55:45','2019-01-25 20:02:25'),(1339,'english','105.112.38.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:12:22','2019-01-25 20:12:23'),(1340,'chemistry','105.112.98.242',1160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:23:43','2019-01-25 22:04:17'),(1341,'chemistry','197.210.62.66',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 22:14:16','2019-04-19 16:33:37'),(1342,'chemistry','197.210.226.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:16:32','2019-01-26 10:16:32'),(1343,'chemistry','197.210.52.4',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:20:35','2019-01-26 10:38:06'),(1344,'chemistry','197.210.45.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:38:39','2019-01-26 10:40:16'),(1345,'chemistry','197.210.227.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:58:13','2019-01-26 10:58:13'),(1346,'mathematics','197.210.227.236',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:08:55','2019-01-26 11:32:01'),(1347,'mathematics','197.210.227.193',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:10:35','2019-01-26 11:45:54'),(1348,'mathematics','197.210.226.194',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:17:53','2019-01-26 11:44:49'),(1349,'mathematics','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:47:35','2019-01-26 11:51:16'),(1350,'mathematics','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:48:03','2019-01-26 11:48:03'),(1351,'mathematics','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:50:09','2019-01-26 11:50:10'),(1352,'mathematics','54.161.51.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:52:23','2019-01-26 11:52:23'),(1353,'english','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:34:52','2019-01-26 12:34:53'),(1354,'english','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:39:32','2019-01-26 12:39:33'),(1355,'english','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:41:59','2019-01-26 12:47:45'),(1356,'english','197.210.8.2',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:13:52','2019-01-26 13:40:15'),(1357,'english','197.210.28.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:55:37','2019-01-26 13:58:04'),(1358,'english','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:08:24','2019-01-26 14:08:24'),(1359,'english','197.210.52.84',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:09:01','2019-01-26 14:15:02'),(1360,'english','197.210.52.208',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:10:08','2019-01-26 14:11:18'),(1361,'chemistry','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:16:42','2019-01-26 14:16:43'),(1362,'chemistry','197.210.52.208',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:20:31','2019-01-26 14:50:18'),(1363,'chemistry','197.210.52.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:45:38','2019-01-26 14:45:39'),(1364,'chemistry','197.210.47.74',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:53:11','2019-01-26 15:07:24'),(1365,'chemistry','105.112.98.2',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:41:26','2019-01-26 16:41:29'),(1366,'biology','41.203.78.47',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:56:45','2019-01-26 16:56:45'),(1367,'chemistry','105.112.98.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 09:04:09','2019-01-27 09:04:09'),(1368,'chemistry','105.112.99.102',833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:41:18','2019-01-27 19:46:51'),(1369,'biology','105.112.99.102',778,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:37','2019-01-27 19:46:51'),(1370,'physics','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1371,'economics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1372,'commerce','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:34'),(1373,'crk','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:37'),(1374,'mathematics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:44'),(1375,'english','105.112.99.102',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:46:51'),(1376,'geography','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:47:37'),(1377,'government','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:43','2019-01-27 19:47:37'),(1378,'accounting','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:45','2019-01-27 19:47:40'),(1379,'history','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:46','2019-01-27 19:43:54'),(1380,'englishlit','105.112.99.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:47:38'),(1381,'currentaffairs','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:48:50'),(1382,'civiledu','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:14:14','2019-01-27 19:47:37'),(1383,'mathematics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1384,'chemistry','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1385,'biology','105.112.98.183',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1386,'physics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1387,'english','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1388,'economics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1389,'commerce','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1390,'crk','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1391,'geography','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1392,'civiledu','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1393,'government','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1394,'englishlit','105.112.98.183',518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1395,'accounting','105.112.98.183',519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1396,'currentaffairs','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1397,'history','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:43','2019-01-27 21:21:57'),(1398,'chemistry','41.191.104.92',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:53:33','2019-01-27 20:54:45'),(1399,'biology','41.191.104.92',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:55:04','2019-01-27 20:55:04'),(1400,'chemistry','41.191.104.121',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:01:54','2019-02-06 15:11:52'),(1401,'mathematics','41.191.107.223',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:14:36','2019-04-16 11:16:36'),(1402,'mathematics','41.191.107.138',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:19:15','2019-04-13 21:33:36'),(1403,'physics','41.191.107.138',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:20:04','2019-01-27 21:23:56'),(1404,'mathematics','41.191.104.124',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:26:45','2019-01-27 21:34:02'),(1405,'physics','41.191.104.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:27:11','2019-01-27 21:27:24'),(1406,'biology','41.191.104.74',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:07:34','2019-01-27 22:12:08'),(1407,'biology','41.191.107.130',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:13:49','2019-01-27 22:13:59'),(1408,'biology','41.191.104.244',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:46:09','2019-01-27 22:46:50'),(1409,'biology','41.191.107.128',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:56:46','2019-01-27 23:56:03'),(1410,'chemistry','41.191.107.128',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:55:10','2019-01-27 23:55:51'),(1411,'economics','41.191.107.128',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:56:39','2019-01-27 23:56:41'),(1412,'geography','41.191.107.128',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:57:14','2019-01-28 15:11:27'),(1413,'biology','41.191.104.89',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:59:44'),(1414,'biology','41.191.104.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:51:19'),(1415,'biology','41.191.104.121',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:55:36','2019-01-28 00:56:31'),(1416,'chemistry','41.191.104.89',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:58:40','2019-01-28 09:07:28'),(1417,'biology','41.191.104.85',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:08:49','2019-01-28 01:15:07'),(1418,'biology','41.191.107.221',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:27:22','2019-01-28 01:29:30'),(1419,'biology','41.191.107.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:33:26','2019-01-28 01:33:26'),(1420,'biology','41.191.104.235',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:48:38','2019-01-28 01:48:38'),(1421,'mathematics','41.191.107.235',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:55:16','2019-01-28 09:02:13'),(1422,'chemistry','41.191.107.235',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:56:12','2019-01-28 08:59:29'),(1423,'mathematics','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:03:14','2019-01-28 09:03:14'),(1424,'physics','41.191.107.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:04:58','2019-01-28 09:04:58'),(1425,'mathematics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:50','2019-01-28 09:08:18'),(1426,'physics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:54','2019-01-28 09:08:18'),(1427,'geography','41.191.104.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:07:07','2019-01-28 09:08:12'),(1428,'chemistry','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:36:06','2019-01-28 10:36:06'),(1429,'english','41.191.107.141',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:49:24','2019-01-28 10:51:33'),(1430,'chemistry','46.229.168.149',23,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-28 11:21:50','2019-12-12 15:32:00'),(1431,'english','3.87.136.203',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:28:02','2019-01-28 14:24:49'),(1432,'englishlit','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:41:29','2019-01-28 11:41:29'),(1433,'mathematics','41.191.107.194',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:14','2019-01-28 12:06:41'),(1434,'chemistry','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:20','2019-01-28 12:01:32'),(1435,'physics','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:50','2019-01-28 12:03:12'),(1436,'geography','41.191.107.194',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:52:52','2019-01-28 12:03:18'),(1437,'chemistry','41.191.104.251',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:08:23','2019-01-28 12:09:42'),(1438,'physics','41.191.107.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:22:50','2019-01-28 12:22:50'),(1439,'physics','41.191.104.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:14','2019-01-28 12:29:14'),(1440,'chemistry','41.191.104.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:28','2019-01-28 12:32:08'),(1441,'mathematics','41.191.104.83',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:30:25','2019-01-28 12:34:16'),(1442,'mathematics','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:35:42','2019-01-28 12:56:25'),(1443,'geography','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:40:50','2019-01-28 12:52:24'),(1444,'chemistry','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:02','2019-01-28 13:03:30'),(1445,'physics','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:08','2019-01-28 12:53:41'),(1446,'geography','41.191.104.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:04:49','2019-01-28 13:17:51'),(1447,'mathematics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:08:42','2019-04-13 07:20:19'),(1448,'physics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:12:38','2019-01-28 13:14:17'),(1449,'chemistry','41.191.104.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:16:02','2019-01-28 13:16:02'),(1450,'geography','41.191.104.104',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:24','2019-01-28 13:30:58'),(1451,'chemistry','41.191.104.104',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:32','2019-01-28 13:28:22'),(1452,'physics','41.191.104.104',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:20:17','2019-01-28 13:22:40'),(1453,'chemistry','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:33:01','2019-01-28 13:35:54'),(1454,'physics','41.191.107.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:35:11','2019-01-28 13:40:07'),(1455,'mathematics','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:36:00','2019-01-28 13:41:19'),(1456,'mathematics','41.191.107.42',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:39','2019-01-28 13:53:09'),(1457,'chemistry','41.191.107.42',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:55','2019-02-06 14:53:26'),(1458,'geography','41.191.107.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:43:17','2019-01-28 13:43:17'),(1459,'physics','41.191.107.139',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:57:59','2019-01-28 14:02:46'),(1460,'chemistry','41.191.107.139',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:06','2019-01-28 14:04:13'),(1461,'mathematics','41.191.107.139',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:21','2019-01-28 14:04:17'),(1462,'geography','41.191.107.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:01:42','2019-01-28 14:01:42'),(1463,'mathematics','41.191.104.126',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:04:59','2019-04-13 16:07:19'),(1464,'physics','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:05:50','2019-01-28 14:06:23'),(1465,'biology','3.87.136.203',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:26:19','2019-01-28 14:28:08'),(1466,'mathematics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:18','2019-01-28 14:27:18'),(1467,'physics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:22','2019-01-28 14:27:22'),(1468,'chemistry','41.191.107.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:30:58','2019-01-28 14:30:58'),(1469,'physics','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:45','2019-01-28 14:40:48'),(1470,'chemistry','41.191.107.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:52','2019-01-28 14:40:52'),(1471,'chemistry','41.191.107.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:53:59','2019-01-28 14:53:59'),(1472,'mathematics','41.191.104.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:04','2019-01-28 15:06:48'),(1473,'physics','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:27','2019-01-28 15:00:27'),(1474,'chemistry','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:33','2019-01-28 15:00:33'),(1475,'geography','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:38','2019-01-28 15:00:38'),(1476,'mathematics','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:03:29','2019-01-28 15:08:10'),(1477,'physics','105.176.90.140',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:02','2019-01-28 15:18:49'),(1478,'chemistry','105.176.90.140',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:37','2019-01-28 15:04:37'),(1479,'geography','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:52','2019-01-28 15:08:28'),(1480,'mathematics','41.191.107.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:05:29','2019-01-28 15:08:01'),(1481,'physics','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:08:08','2019-01-28 15:08:08'),(1482,'mathematics','41.191.107.128',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:10:31','2019-01-28 15:10:39'),(1483,'physics','41.191.104.241',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:14','2019-01-28 15:28:02'),(1484,'chemistry','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:51','2019-01-28 15:27:55'),(1485,'mathematics','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:51','2019-01-28 15:28:09'),(1486,'geography','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:57','2019-01-28 15:28:35'),(1487,'geography','41.191.104.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:30:25','2019-01-28 15:32:10'),(1488,'mathematics','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:31:56','2019-01-28 15:31:56'),(1489,'physics','41.191.104.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:00','2019-01-28 15:32:07'),(1490,'chemistry','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:04','2019-01-28 15:32:04'),(1491,'physics','41.191.104.121',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:49:37','2019-02-06 14:58:19'),(1492,'geography','41.191.104.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:43','2019-01-28 15:58:43'),(1493,'geography','41.191.104.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:53','2019-01-28 15:58:53'),(1494,'chemistry','197.210.47.34',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 21:35:41','2019-01-28 21:40:22'),(1495,'chemistry','41.203.78.54',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 22:07:08','2019-07-20 14:00:13'),(1496,'chemistry','105.112.28.85',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 02:40:05','2019-01-29 02:40:42'),(1497,'chemistry','41.190.2.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 07:03:46','2019-01-29 07:03:46'),(1498,'chemistry','41.76.82.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 09:57:24','2019-01-29 09:57:24'),(1499,'english','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1500,'mathematics','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1501,'commerce','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1502,'englishlit','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1503,'crk','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1504,'geography','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1505,'insurance','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1506,'biology','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1507,'chemistry','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1508,'economics','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1509,'civiledu','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1510,'chemistry','41.203.78.51',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 13:55:15','2019-01-29 14:10:57'),(1511,'chemistry','154.120.108.55',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:17:52','2019-01-29 14:29:07'),(1512,'chemistry','154.118.21.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:37:44','2019-01-29 14:38:42'),(1513,'chemistry','197.210.28.128',997,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:55:16','2019-01-29 16:55:38'),(1514,'chemistry','197.210.53.210',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:47:02','2019-01-29 18:06:59'),(1515,'chemistry','197.210.52.103',295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:49:25','2019-01-29 18:50:59'),(1516,'chemistry','197.210.53.88',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:56:42','2019-01-29 17:56:42'),(1517,'chemistry','197.210.53.26',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:09:55','2019-01-29 18:22:46'),(1518,'chemistry','197.210.53.74',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:10:35','2019-01-29 18:10:35'),(1519,'chemistry','197.210.52.203',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:16:48','2019-02-06 16:04:53'),(1520,'chemistry','197.210.52.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:35:19','2019-01-29 18:39:12'),(1521,'chemistry','197.210.52.202',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:43:20','2019-02-06 16:09:29'),(1522,'chemistry','197.210.53.106',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:44:33','2019-01-29 18:45:54'),(1523,'chemistry','197.210.53.114',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:19','2019-04-20 15:08:50'),(1524,'chemistry','197.210.52.185',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:40','2019-01-29 18:51:44'),(1525,'chemistry','197.210.52.26',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:51:14','2019-01-29 18:51:36'),(1526,'englishlit','197.211.63.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:31:42','2019-01-29 20:31:42'),(1527,'chemistry','197.210.227.126',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:25','2019-01-29 20:32:25'),(1528,'chemistry','197.210.227.15',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:43','2019-01-29 20:32:43'),(1529,'chemistry','197.210.226.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:01','2019-01-29 20:37:21'),(1530,'chemistry','197.210.227.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:27','2019-01-29 20:36:27'),(1531,'mathematics','41.203.78.49',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:41:06','2019-01-29 20:41:06'),(1532,'crk','41.80.186.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 09:20:34','2019-01-30 09:20:34'),(1533,'biology','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:38','2019-01-30 15:50:53'),(1534,'commerce','54.211.28.234',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1535,'accounting','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1536,'crk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1537,'geography','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1538,'irk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1539,'insurance','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1540,'englishlit','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:56','2019-01-30 15:52:40'),(1541,'history','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:07','2019-01-30 15:51:07'),(1542,'government','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:09','2019-01-30 15:51:09'),(1543,'physics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1544,'economics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1545,'currentaffairs','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:40'),(1546,'english','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1547,'mathematics','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1548,'chemistry','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1549,'englishlit','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:16','2019-01-30 16:51:35'),(1550,'commerce','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:27'),(1551,'biology','54.226.7.228',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:34'),(1552,'geography','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1553,'civiledu','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1554,'currentaffairs','54.226.7.228',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1555,'history','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1556,'government','54.226.7.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1557,'english','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1558,'mathematics','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1559,'chemistry','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1560,'crk','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1561,'chemistry','41.216.173.30',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 16:01:01','2019-01-31 16:03:23'),(1562,'chemistry','45.33.136.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 23:43:59','2019-01-31 23:44:26'),(1563,'chemistry','41.203.78.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:52:42','2019-02-01 07:52:42'),(1564,'chemistry','197.210.53.198',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:55:26','2019-02-01 07:56:02'),(1565,'chemistry','197.210.53.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:57:16','2019-02-01 07:57:16'),(1566,'chemistry','45.33.136.190',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:27:53','2019-02-01 08:31:16'),(1567,'chemistry','197.211.60.139',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:43:16','2019-02-01 08:45:06'),(1568,'mathematics','197.211.60.139',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:45:55','2019-02-01 08:45:55'),(1569,'chemistry','197.210.29.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 09:32:41','2019-02-01 09:32:41'),(1570,'chemistry','105.112.98.24',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-02 22:45:13','2019-02-02 23:25:03'),(1571,'civiledu','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 20:57:22','2019-02-03 20:57:22'),(1572,'currentaffairs','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 21:10:15','2019-02-03 21:10:15'),(1573,'accounting','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1574,'chemistry','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1575,'crk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1576,'geography','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1577,'irk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1578,'insurance','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1579,'currentaffairs','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1580,'chemistry','41.66.199.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:36:31','2019-02-03 23:09:20'),(1581,'biology','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:54:09','2019-02-03 22:54:09'),(1582,'commerce','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 23:10:29','2019-02-03 23:10:29'),(1583,'geography','3.81.102.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 00:57:31','2019-02-04 00:57:31'),(1584,'mathematics','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1585,'commerce','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1586,'chemistry','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1587,'irk','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1588,'civiledu','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1589,'currentaffairs','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1590,'history','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1591,'commerce','54.162.226.75',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 23:35:46','2019-02-04 23:35:46'),(1592,'crk','54.162.82.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:35:33','2019-02-05 05:43:58'),(1593,'accounting','54.162.82.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:50:40','2019-02-05 05:50:40'),(1594,'history','54.90.106.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 07:25:12','2019-02-05 07:25:12'),(1595,'accounting','54.91.82.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 11:33:57','2019-02-05 11:33:57'),(1596,'chemistry','77.88.47.65',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-05 11:57:00','2020-03-07 02:21:05'),(1597,'geography','54.204.118.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 12:42:45','2019-02-05 12:42:45'),(1598,'chemistry','95.216.6.46',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 14:24:43','2019-02-05 14:25:02'),(1599,'geography','54.234.119.237',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 17:21:12','2019-02-05 17:21:12'),(1600,'irk','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 22:54:06','2019-02-05 22:54:06'),(1601,'chemistry','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 23:25:31','2019-02-05 23:25:31'),(1602,'accounting','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1603,'biology','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:23:05'),(1604,'physics','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1605,'chemistry','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1606,'geography','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1607,'economics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1608,'civiledu','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1609,'english','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1610,'mathematics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1611,'englishlit','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:51'),(1612,'government','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1613,'history','54.159.117.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:56','2019-02-06 01:22:56'),(1614,'physics','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:32:08'),(1615,'geography','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1616,'physics','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1617,'mathematics','41.191.104.236',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:50','2019-04-14 05:45:01'),(1618,'chemistry','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:33:26','2019-02-06 10:35:49'),(1619,'chemistry','41.191.107.136',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:04','2019-02-07 10:43:21'),(1620,'mathematics','41.191.107.136',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:11','2019-04-14 16:53:02'),(1621,'geography','41.191.107.136',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:15','2019-02-07 10:13:16'),(1622,'physics','41.191.107.136',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:40:28','2019-02-07 11:01:08'),(1623,'chemistry','41.191.107.212',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:49:30','2019-04-18 18:00:20'),(1624,'physics','41.191.107.212',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:34','2019-04-17 10:11:06'),(1625,'geography','41.191.107.212',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:44','2019-02-06 13:24:41'),(1626,'mathematics','41.191.107.212',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:49','2019-04-17 10:14:28'),(1627,'chemistry','41.191.107.52',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:54:59','2019-02-06 10:55:38'),(1628,'chemistry','41.191.104.115',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 11:10:51','2019-02-06 11:10:51'),(1629,'civiledu','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:13:06','2019-02-06 12:13:06'),(1630,'currentaffairs','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:35:08','2019-02-06 12:35:08'),(1631,'mathematics','41.191.107.220',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:39:15'),(1632,'mathematics','41.191.107.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:38:11'),(1633,'chemistry','41.191.107.220',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:02','2019-02-06 13:44:46'),(1634,'physics','41.191.107.220',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:55','2019-02-06 13:42:33'),(1635,'chemistry','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:03','2019-02-06 13:58:11'),(1636,'geography','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:46','2019-02-06 13:47:46'),(1637,'physics','41.191.104.99',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:51:59','2019-02-06 13:57:37'),(1638,'mathematics','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:56:24','2019-04-13 23:06:19'),(1639,'physics','41.191.107.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 14:43:26','2019-02-06 16:44:44'),(1640,'chemistry','54.221.129.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:09:36','2019-02-06 15:40:30'),(1641,'mathematics','41.191.104.121',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:15:51','2019-02-06 15:15:51'),(1642,'mathematics','41.191.104.217',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:29:45','2019-02-06 15:52:46'),(1643,'mathematics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1644,'biology','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1645,'physics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1646,'government','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1647,'economics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1648,'insurance','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1649,'chemistry','41.191.104.217',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:53:35','2019-02-06 15:55:08'),(1650,'chemistry','197.210.52.163',51,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:59:16','2020-04-12 16:16:23'),(1651,'chemistry','197.210.52.177',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:02:47','2019-02-06 16:09:41'),(1652,'chemistry','197.210.52.125',42,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:03:44','2019-11-29 22:14:03'),(1653,'chemistry','197.210.52.1',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:12','2019-02-06 16:04:36'),(1654,'chemistry','41.191.104.76',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:57','2019-02-06 16:04:57'),(1655,'mathematics','41.191.104.76',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:05:52','2019-04-17 07:41:52'),(1656,'chemistry','197.210.53.23',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:10:28','2020-02-04 09:59:59'),(1657,'chemistry','41.191.104.238',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:21','2019-02-06 16:23:37'),(1658,'mathematics','41.191.104.238',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:53','2019-02-06 17:51:13'),(1659,'geography','41.191.104.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:23:13','2019-02-06 16:23:13'),(1660,'physics','41.191.104.238',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:25:01','2019-02-06 17:52:29'),(1661,'mathematics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:23','2019-02-06 16:32:23'),(1662,'physics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:36','2019-02-06 16:32:36'),(1663,'chemistry','41.191.107.146',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:57:39','2019-02-06 16:57:39'),(1664,'physics','41.191.107.146',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:58:54','2019-02-06 17:00:38'),(1665,'physics','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:48','2019-02-06 17:03:48'),(1666,'geography','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:55','2019-02-06 17:03:55'),(1667,'chemistry','41.191.107.215',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:06:36','2019-03-28 16:12:49'),(1668,'mathematics','41.191.104.67',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:15:33','2019-02-06 17:20:02'),(1669,'chemistry','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:24:42','2019-02-06 17:27:26'),(1670,'physics','41.191.104.211',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:25:40','2019-02-06 17:26:06'),(1671,'mathematics','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:32','2019-04-14 07:05:25'),(1672,'geography','41.191.104.211',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:34','2019-02-06 17:27:34'),(1673,'geography','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:29:31','2019-02-07 13:38:12'),(1674,'physics','41.191.107.38',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:30:12','2019-02-07 16:06:38'),(1675,'mathematics','41.191.107.38',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:35:19','2019-04-13 08:12:17'),(1676,'geography','41.191.107.38',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:36:56','2019-02-07 16:06:34'),(1677,'mathematics','41.191.104.244',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:40:30','2019-04-14 21:51:22'),(1678,'physics','41.191.104.244',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:43:54','2019-02-06 17:46:16'),(1679,'geography','54.145.62.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 18:07:58','2019-02-06 18:07:58'),(1680,'english','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1681,'english','3.81.49.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1682,'mathematics','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1683,'physics','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1684,'commerce','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1685,'chemistry','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1686,'biology','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1687,'government','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1688,'civiledu','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1689,'irk','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1690,'currentaffairs','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1691,'biology','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:52'),(1692,'physics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1693,'government','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:35'),(1694,'geography','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1695,'economics','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1696,'irk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1697,'insurance','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1698,'mathematics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1699,'commerce','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1700,'crk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1701,'currentaffairs','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1702,'history','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:55'),(1703,'englishlit','54.159.238.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:48','2019-02-06 23:58:48'),(1704,'chemistry','129.205.112.31',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 04:25:52','2019-02-09 18:02:32'),(1705,'mathematics','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:08:57','2019-02-07 08:31:49'),(1706,'physics','41.191.107.132',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:24:48','2019-02-07 07:53:26'),(1707,'geography','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:52:40','2019-02-07 08:17:40'),(1708,'chemistry','41.191.107.132',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 08:14:41','2019-02-07 08:18:31'),(1709,'physics','41.191.107.129',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 14:01:28'),(1710,'physics','41.191.107.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 13:59:51'),(1711,'biology','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:01:37','2019-02-07 14:01:37'),(1712,'chemistry','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:03:41','2019-02-07 14:14:08'),(1713,'mathematics','41.191.107.129',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:15:41','2019-02-07 14:17:01'),(1714,'physics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:26:47','2019-02-07 14:47:40'),(1715,'chemistry','197.210.227.51',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:31:34','2019-02-07 14:40:43'),(1716,'physics','41.191.104.213',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:38:05','2019-02-07 14:59:23'),(1717,'chemistry','197.210.227.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:39:16','2019-02-07 14:39:16'),(1718,'chemistry','41.191.104.213',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:41:28','2019-02-07 15:01:58'),(1719,'chemistry','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:42:07','2019-02-07 14:42:07'),(1720,'economics','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:44:11','2019-02-07 14:44:11'),(1721,'geography','41.191.104.213',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:51:09','2019-02-07 14:51:09'),(1722,'mathematics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:53:38','2019-02-07 14:55:12'),(1723,'chemistry','41.191.107.34',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:18:05','2019-02-07 15:48:37'),(1724,'physics','41.191.107.34',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:30:55','2019-02-07 15:45:52'),(1725,'chemistry','41.191.107.38',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:54:06','2019-02-07 16:07:17'),(1726,'physics','41.191.104.81',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:07:36','2019-02-07 16:09:23'),(1727,'chemistry','41.191.104.81',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:12:44','2019-02-07 16:12:44'),(1728,'mathematics','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:46','2019-02-07 16:22:18'),(1729,'chemistry','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:54','2019-02-07 16:24:30'),(1730,'physics','41.191.107.206',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:57','2019-02-07 16:38:27'),(1731,'geography','41.191.107.206',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:59','2019-02-07 16:30:19'),(1732,'english','197.210.227.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:31:53','2019-02-07 16:31:53'),(1733,'history','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:33:37','2019-02-07 16:33:37'),(1734,'biology','41.191.107.206',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:03','2019-04-18 16:28:46'),(1735,'economics','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:39','2019-02-07 16:34:39'),(1736,'accounting','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:56','2019-02-07 16:34:56'),(1737,'english','184.73.22.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:38:25','2019-02-07 16:50:24'),(1738,'physics','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:43:12','2019-02-07 16:43:12'),(1739,'english','154.66.57.61',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:44:58','2019-02-07 16:47:26'),(1740,'accounting','41.191.107.193',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:45:10','2019-02-07 16:47:47'),(1741,'biology','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:50','2019-02-07 16:46:50'),(1742,'chemistry','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:55','2019-02-07 16:46:55'),(1743,'mathematics','41.191.107.193',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:48:25','2019-04-13 07:49:25'),(1744,'commerce','154.66.57.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:49:07','2019-02-07 16:49:08'),(1745,'mathematics','184.73.22.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:05:51','2019-02-07 17:05:51'),(1746,'englishlit','197.210.227.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:06:39','2019-02-07 17:06:57'),(1747,'mathematics','197.210.227.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:08:37','2019-02-07 17:08:37'),(1748,'mathematics','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:12:32','2019-02-07 17:12:32'),(1749,'english','197.210.227.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:13:32','2019-02-07 17:15:24'),(1750,'english','197.210.227.160',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:17:16','2019-02-07 17:17:16'),(1751,'government','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:04','2019-02-07 19:40:04'),(1752,'chemistry','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:05','2019-02-07 19:40:05'),(1753,'chemistry','41.203.78.86',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 22:56:58','2019-02-08 01:04:26'),(1754,'english','41.203.78.86',10687,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 23:11:07','2019-02-08 01:12:58'),(1755,'chemistry','41.203.72.82',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:02:21','2019-02-08 01:03:10'),(1756,'mathematics','41.203.78.86',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:13:49','2019-02-08 01:20:31'),(1757,'commerce','41.203.78.86',1400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:21:06','2019-02-08 01:25:03'),(1758,'accounting','129.205.112.31',637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 03:59:44','2019-02-10 07:56:43'),(1759,'commerce','129.205.112.31',16415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:02:10','2019-02-10 07:24:35'),(1760,'english','129.205.112.31',3880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:54:53','2019-02-09 20:30:32'),(1761,'mathematics','129.205.112.31',1581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 05:04:07','2019-02-10 08:18:03'),(1762,'economics','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:37:15','2019-02-08 09:37:15'),(1763,'currentaffairs','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:42:06','2019-02-08 09:42:06'),(1764,'commerce','41.203.78.102',5836,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 13:46:12','2019-02-08 21:42:21'),(1765,'english','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1766,'accounting','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1767,'biology','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1768,'englishlit','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1769,'government','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1770,'economics','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1771,'history','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1772,'insurance','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 16:42:58','2019-02-08 16:42:58'),(1773,'biology','54.161.98.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 17:53:20','2019-02-08 17:53:20'),(1774,'mathematics','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 20:43:14','2019-02-08 20:43:14'),(1775,'insurance','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:12:10','2019-02-08 21:12:10'),(1776,'chemistry','41.203.78.102',2128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:33:15','2019-02-08 22:12:38'),(1777,'mathematics','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:42:45','2019-02-08 21:51:29'),(1778,'english','41.203.78.102',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:43:28','2019-02-09 01:27:32'),(1779,'accounting','41.203.78.102',2720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:51:49','2019-02-08 21:56:42'),(1780,'biology','41.203.78.102',2400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:57:02','2019-02-08 22:05:16'),(1781,'physics','41.203.78.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:06:14','2019-02-08 22:07:44'),(1782,'englishlit','41.203.78.102',1880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:13:10','2019-02-08 22:20:30'),(1783,'government','41.203.78.102',2800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:21:29','2019-02-08 23:52:43'),(1784,'crk','41.203.78.102',3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:52:55','2019-02-09 00:00:48'),(1785,'chemistry','54.91.117.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:57:22','2019-02-08 23:57:22'),(1786,'geography','41.203.78.102',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:01:57','2019-02-09 00:24:16'),(1787,'economics','41.203.78.102',3720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:26:24','2019-02-09 00:34:36'),(1788,'irk','41.203.78.102',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:35:41','2019-02-09 00:37:20'),(1789,'civiledu','41.203.78.102',2240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:38:00','2019-02-09 00:44:30'),(1790,'insurance','41.203.78.102',1680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:46:06','2019-02-09 00:57:03'),(1791,'civiledu','52.55.225.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:48:42','2019-02-09 00:48:42'),(1792,'currentaffairs','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:57:53','2019-02-09 01:00:05'),(1793,'history','41.203.78.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 01:01:27','2019-02-09 01:01:41'),(1794,'government','54.197.84.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 03:29:54','2019-02-09 03:29:54'),(1795,'accounting','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 05:17:44','2019-02-09 05:17:44'),(1796,'crk','54.210.158.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 06:41:14','2019-02-09 06:41:14'),(1797,'chemistry','40.77.167.168',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 07:15:13','2020-01-13 09:41:58'),(1798,'mathematics','197.210.8.53',432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:27','2019-02-09 08:02:28'),(1799,'chemistry','197.210.8.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:53','2019-02-09 07:54:53'),(1800,'commerce','197.210.8.53',2379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:03:00','2019-02-09 09:22:09'),(1801,'mathematics','3.83.132.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:18:09','2019-02-09 08:18:09'),(1802,'biology','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:54:44','2019-02-09 08:54:44'),(1803,'chemistry','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:18:40','2019-02-09 09:18:40'),(1804,'englishlit','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:17','2019-02-09 09:19:17'),(1805,'mathematics','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:52','2019-02-09 09:19:52'),(1806,'economics','54.83.86.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 10:26:21','2019-02-09 10:26:21'),(1807,'chemistry','197.210.44.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:14:26','2019-02-09 11:15:08'),(1808,'physics','197.210.44.28',952,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:16:33','2019-02-09 12:01:21'),(1809,'commerce','197.210.227.64',78,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:22:57','2019-02-09 12:24:33'),(1810,'physics','54.167.138.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:50:33','2019-02-09 13:26:19'),(1811,'chemistry','157.55.39.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:39:52','2019-02-09 13:39:52'),(1812,'english','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:47:52','2019-02-09 13:47:52'),(1813,'government','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:53:44','2019-02-09 13:53:44'),(1814,'englishlit','54.160.227.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 14:42:34','2019-02-09 14:42:34'),(1815,'englishlit','34.207.56.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 17:36:00','2019-02-09 17:36:00'),(1816,'chemistry','46.229.168.134',103,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 18:20:56','2020-01-04 23:41:32'),(1817,'crk','54.205.112.119',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 18:24:29','2019-02-09 18:24:29'),(1818,'englishlit','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:31:53','2019-02-10 08:28:16'),(1819,'accounting','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:36:27','2019-02-09 20:36:27'),(1820,'history','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:41:04','2019-02-09 20:41:04'),(1821,'economics','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:52:59','2019-02-09 20:52:59'),(1822,'economics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 21:36:49','2019-02-09 21:36:49'),(1823,'chemistry','54.165.27.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 04:31:45','2019-02-10 04:31:45'),(1824,'geography','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:01:47','2019-02-10 08:01:47'),(1825,'physics','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:19:34','2019-02-10 08:25:15'),(1826,'history','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:37:28','2019-02-10 08:37:28'),(1827,'english','54.162.92.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 12:54:28','2019-02-10 12:54:28'),(1828,'mathematics','41.191.107.239',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:39:53','2019-02-10 14:01:17'),(1829,'physics','41.191.107.239',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:42','2019-02-10 13:48:33'),(1830,'history','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:47','2019-02-10 13:48:45'),(1831,'accounting','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:45:18','2019-02-10 13:52:35'),(1832,'mathematics','41.191.107.145',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:02:05','2019-02-11 14:40:35'),(1833,'economics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:04:14','2019-02-10 14:04:14'),(1834,'physics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:05:04','2019-02-10 14:05:04'),(1835,'geography','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:06:01','2019-02-10 14:06:01'),(1836,'government','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1837,'accounting','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1838,'physics','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1839,'crk','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1840,'civiledu','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1841,'insurance','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1842,'currentaffairs','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:28'),(1843,'history','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:30'),(1844,'english','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1845,'biology','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:25'),(1846,'chemistry','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1847,'irk','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1848,'englishlit','34.228.6.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:15','2019-02-11 02:52:15'),(1849,'chemistry','197.210.45.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 10:22:02','2019-02-11 10:22:02'),(1850,'chemistry','40.77.167.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:09:52','2019-02-11 13:09:52'),(1851,'biology','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:36:32','2019-02-11 13:36:32'),(1852,'history','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:37:35','2019-02-11 13:37:35'),(1853,'english','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1854,'accounting','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1855,'physics','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1856,'geography','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1857,'irk','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1858,'insurance','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1859,'currentaffairs','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1860,'mathematics','41.191.104.71',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:12:03','2019-02-11 14:12:03'),(1861,'mathematics','41.191.104.112',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:18:49','2019-02-11 14:18:49'),(1862,'chemistry','41.58.77.114',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:51','2019-02-11 14:28:05'),(1863,'physics','41.191.104.112',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:53','2019-02-11 14:26:11'),(1864,'history','41.191.104.112',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:23:33','2019-02-11 14:26:08'),(1865,'biology','41.58.77.114',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:24:08','2019-02-11 14:24:08'),(1866,'mathematics','41.58.77.114',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:25:00','2019-02-11 14:26:24'),(1867,'physics','41.191.104.234',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:35','2019-02-11 14:40:10'),(1868,'economics','41.191.104.234',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:52','2019-02-11 14:35:32'),(1869,'mathematics','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:41','2019-02-11 14:35:41'),(1870,'chemistry','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:47','2019-02-11 14:35:47'),(1871,'biology','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:37:04','2019-02-11 14:37:04'),(1872,'biology','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:45:01','2019-02-11 14:45:01'),(1873,'chemistry','105.112.99.29',197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:29:39','2019-02-11 16:54:32'),(1874,'physics','105.112.99.29',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:30:30','2019-02-11 16:50:11'),(1875,'biology','105.112.99.29',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:38:24','2019-02-11 16:41:30'),(1876,'mathematics','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1877,'commerce','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1878,'chemistry','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1879,'englishlit','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1880,'government','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1881,'irk','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1882,'insurance','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1883,'chemistry','40.77.167.19',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 08:00:52','2019-02-12 08:00:52'),(1884,'english','54.146.30.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:52:31','2019-02-12 09:52:31'),(1885,'chemistry','77.246.49.12',38,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:59:54','2019-02-12 10:43:38'),(1886,'chemistry','66.249.83.214',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:17:35','2019-02-15 07:42:21'),(1887,'chemistry','66.249.83.212',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:32:16','2019-02-17 16:13:54'),(1888,'geography','54.198.25.67',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 11:51:48','2019-02-12 11:51:48'),(1889,'english','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1890,'biology','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1891,'physics','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1892,'government','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1893,'irk','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 15:35:54'),(1894,'civiledu','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1895,'history','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:55:19'),(1896,'chemistry','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:13:08','2019-02-12 15:13:08'),(1897,'geography','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:27:03','2019-02-12 15:27:03'),(1898,'insurance','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:37:09','2019-02-12 15:37:09'),(1899,'currentaffairs','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:38:51','2019-02-12 15:38:51'),(1900,'accounting','54.224.187.178',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:15:56','2019-02-12 16:47:43'),(1901,'commerce','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:54:29','2019-02-12 16:54:29'),(1902,'chemistry','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:55:19','2019-02-12 16:55:19'),(1903,'english','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:56:44','2019-02-12 16:56:44'),(1904,'englishlit','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 17:05:53','2019-02-12 17:05:53'),(1905,'chemistry','77.246.53.3',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:29:38','2019-02-12 19:29:38'),(1906,'chemistry','46.229.168.132',61,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-12 19:33:18','2020-04-01 16:00:41'),(1907,'physics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:37:08','2019-02-12 19:37:08'),(1908,'mathematics','3.83.244.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 21:14:53','2019-02-12 21:14:53'),(1909,'chemistry','54.90.184.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:12:11','2019-02-12 23:12:11'),(1910,'accounting','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:50:49','2019-02-12 23:50:49'),(1911,'chemistry','82.145.222.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 02:31:59','2019-02-13 02:32:09'),(1912,'chemistry','41.220.28.0',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 03:41:16','2019-02-13 04:18:17'),(1913,'chemistry','40.77.167.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 04:07:04','2019-02-13 04:07:04'),(1914,'irk','54.226.159.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 05:17:46','2019-02-13 05:17:46'),(1915,'chemistry','77.246.53.157',1075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 06:15:44','2019-02-13 07:57:20'),(1916,'biology','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:18:12','2019-02-13 07:18:12'),(1917,'accounting','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:42:14','2019-02-13 07:42:14'),(1918,'chemistry','77.246.55.170',2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 09:57:35','2019-02-13 12:53:59'),(1919,'irk','54.234.114.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 10:48:37','2019-02-13 10:48:37'),(1920,'chemistry','77.246.49.61',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 13:40:12','2019-02-13 14:09:22'),(1921,'mathematics','77.246.49.61',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:09:22'),(1922,'mathematics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:11:21'),(1923,'chemistry','41.220.30.108',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:10','2019-02-13 14:13:10'),(1924,'physics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:17','2019-02-19 09:00:47'),(1925,'accounting','41.220.30.108',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:14:56','2019-02-13 14:17:32'),(1926,'insurance','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:41:06','2019-02-13 14:44:45'),(1927,'english','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1928,'mathematics','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1929,'accounting','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1930,'physics','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1931,'chemistry','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1932,'crk','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1933,'crk','54.211.35.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1934,'irk','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1935,'currentaffairs','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1936,'history','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1937,'mathematics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:12:14','2019-02-13 15:12:14'),(1938,'physics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:14:36','2019-02-13 15:14:37'),(1939,'chemistry','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:15:45','2019-02-13 15:15:45'),(1940,'irk','54.144.251.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:47:59','2019-02-13 15:47:59'),(1941,'physics','77.246.53.12',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:20:07','2019-02-13 16:34:41'),(1942,'mathematics','77.246.53.12',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:14','2019-02-13 16:35:19'),(1943,'chemistry','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:32','2019-02-13 16:34:32'),(1944,'accounting','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:48','2019-02-13 16:34:48'),(1945,'mathematics','77.246.53.162',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:07','2019-02-13 17:07:40'),(1946,'physics','77.246.53.162',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:43','2019-02-13 17:05:44'),(1947,'chemistry','77.246.53.162',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:21','2019-02-13 17:05:39'),(1948,'accounting','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:26','2019-02-13 16:54:33'),(1949,'commerce','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:57:16','2019-02-13 16:57:32'),(1950,'biology','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:59:47','2019-02-13 17:02:48'),(1951,'physics','54.159.21.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 18:06:23','2019-02-13 18:06:23'),(1952,'chemistry','46.229.168.150',12,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 02:03:11','2020-01-21 05:27:03'),(1953,'biology','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 02:28:08','2019-02-14 02:28:08'),(1954,'chemistry','41.86.149.34',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 07:40:21','2020-03-16 11:43:51'),(1955,'physics','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:41:02','2019-02-14 08:41:02'),(1956,'chemistry','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:45:15','2019-02-14 08:45:16'),(1957,'physics','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:45:52','2019-02-14 09:45:52'),(1958,'chemistry','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:12','2019-02-14 09:46:12'),(1959,'mathematics','77.246.49.1',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:22','2019-02-14 10:21:31'),(1960,'biology','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:31','2019-02-14 09:46:31'),(1961,'chemistry','66.249.93.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:08:04','2019-02-14 14:08:04'),(1962,'insurance','52.206.40.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:35:57','2019-02-14 14:35:57'),(1963,'irk','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:05:01','2019-02-14 16:05:01'),(1964,'mathematics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:25:27','2019-02-14 16:25:27'),(1965,'physics','107.167.107.223',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:26:57','2019-02-14 16:26:58'),(1966,'chemistry','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:28:35','2019-02-14 16:28:35'),(1967,'physics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:32:02','2019-02-14 16:32:02'),(1968,'physics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:02','2019-02-14 17:39:02'),(1969,'mathematics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:03','2019-02-14 17:39:03'),(1970,'chemistry','66.249.64.168',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:04','2019-02-15 07:38:28'),(1971,'mathematics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1972,'biology','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1973,'chemistry','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1974,'englishlit','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1975,'crk','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1976,'economics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1977,'civiledu','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1978,'mathematics','41.220.30.127',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:40:08','2019-02-14 18:40:09'),(1979,'chemistry','197.210.53.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 23:05:50','2019-02-14 23:11:24'),(1980,'chemistry','197.210.53.75',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 23:06:02','2019-10-28 09:52:49'),(1981,'physics','77.246.53.165',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:37:58','2019-02-15 02:38:49'),(1982,'physics','66.102.8.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:17','2019-02-15 02:56:50'),(1983,'physics','66.249.64.170',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:28','2019-02-15 08:55:28'),(1984,'physics','66.249.64.168',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:56:52','2019-02-16 03:08:43'),(1985,'mathematics','77.246.53.165',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:58:41','2019-02-15 02:58:41'),(1986,'chemistry','66.102.6.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 04:13:56','2019-02-15 04:13:56'),(1987,'chemistry','77.246.53.155',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:12:45','2019-02-15 05:12:46'),(1988,'physics','66.249.83.210',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:21:09','2019-02-17 08:51:10'),(1989,'chemistry','66.249.83.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:54','2019-02-15 05:37:54'),(1990,'chemistry','66.249.64.170',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:55','2019-02-15 05:40:03'),(1991,'chemistry','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:40:02','2019-02-15 05:40:02'),(1992,'chemistry','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 07:38:29','2019-02-15 07:38:29'),(1993,'physics','66.102.8.106',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:21','2019-02-16 03:07:38'),(1994,'physics','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:45','2019-02-15 08:54:45'),(1995,'physics','66.249.83.212',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:10','2019-02-16 03:29:02'),(1996,'physics','41.220.30.120',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:22','2019-02-15 08:59:22'),(1997,'history','54.166.99.0',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:39:50','2019-02-15 09:39:50'),(1998,'physics','185.26.180.219',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:40:20','2019-02-15 10:02:05'),(1999,'physics','77.246.55.130',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:34:33','2019-02-15 13:38:14'),(2000,'english','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:38:16','2019-02-15 13:38:16'),(2001,'insurance','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:22','2019-02-15 13:39:22'),(2002,'commerce','197.210.227.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:24','2019-02-15 13:39:24'),(2003,'commerce','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 14:41:28','2019-02-15 14:41:28'),(2004,'physics','66.249.83.214',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:06','2019-02-19 18:52:31'),(2005,'physics','77.246.53.177',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:34','2019-02-15 15:11:34'),(2006,'chemistry','66.249.83.198',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:13:48','2019-02-15 15:13:49'),(2007,'chemistry','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:15:21','2019-02-15 17:15:21'),(2008,'biology','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:32:07','2019-02-15 17:32:07'),(2009,'englishlit','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:50:05','2019-02-15 17:50:05'),(2010,'civiledu','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:58:30','2019-02-15 17:58:30'),(2011,'economics','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 18:01:11','2019-02-15 18:01:11'),(2012,'mathematics','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:23'),(2013,'englishlit','54.162.96.90',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:12'),(2014,'geography','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2015,'irk','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2016,'civiledu','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2017,'currentaffairs','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:25'),(2018,'history','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2019,'english','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2020,'economics','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2021,'insurance','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2022,'biology','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:18','2019-02-15 23:11:20'),(2023,'commerce','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:34:11','2019-02-16 11:34:11'),(2024,'economics','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:35:07','2019-02-16 11:35:07'),(2025,'economics','197.210.53.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:59:36','2019-02-16 11:59:36'),(2026,'economics','197.210.53.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:09:10','2019-02-16 12:09:10'),(2027,'physics','64.233.172.202',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:45:29','2019-02-16 12:45:29'),(2028,'chemistry','197.210.8.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 15:55:05','2019-02-16 15:56:43'),(2029,'chemistry','209.205.211.242',1740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:08:07','2019-02-20 09:17:37'),(2030,'biology','209.205.211.242',3303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:14:54','2019-02-19 18:49:01'),(2031,'mathematics','209.205.211.242',2635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 17:10:46','2019-02-17 21:51:53'),(2032,'english','209.205.211.242',3998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:01:15','2019-02-19 18:31:24'),(2033,'english','197.210.52.4',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:06:11','2019-02-16 18:06:11'),(2034,'physics','66.249.88.52',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:25:31','2019-02-16 18:25:32'),(2035,'physics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:27:41','2019-02-16 18:27:42'),(2036,'physics','209.205.211.242',2056,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:36:36','2019-02-19 18:57:19'),(2037,'economics','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:52:25','2019-02-16 18:52:25'),(2038,'insurance','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:53:03','2019-02-16 18:53:03'),(2039,'english','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2040,'accounting','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2041,'government','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2042,'crk','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2043,'geography','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2044,'economics','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2045,'insurance','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2046,'economics','209.205.211.242',3993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:07:13','2019-02-20 10:21:53'),(2047,'commerce','209.205.211.242',2963,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:32:01','2019-02-20 10:47:11'),(2048,'accounting','209.205.211.242',3180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:02:28','2019-02-20 10:34:51'),(2049,'government','209.205.211.242',4769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:18:37','2019-02-20 11:25:34'),(2050,'englishlit','209.205.211.242',2428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:34:54','2019-02-20 11:06:13'),(2051,'civiledu','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:45:29','2019-02-18 13:07:15'),(2052,'crk','209.205.211.242',2529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:02:00','2019-03-28 01:41:15'),(2053,'history','209.205.211.242',1491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:13:13','2019-02-20 11:54:00'),(2054,'geography','209.205.211.242',1807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:24:15','2019-02-18 13:11:51'),(2055,'irk','209.205.211.242',533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:57:46','2019-02-18 13:14:15'),(2056,'insurance','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 00:04:12','2019-02-18 13:21:54'),(2057,'chemistry','197.210.46.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 05:30:36','2019-02-17 05:30:36'),(2058,'mathematics','66.249.83.214',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-19 18:52:31'),(2059,'biology','66.249.83.212',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-17 09:09:38'),(2060,'physics','77.246.55.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:10:12','2019-02-17 09:10:33'),(2061,'mathematics','66.249.84.40',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:47','2019-02-17 10:32:48'),(2062,'mathematics','66.249.64.168',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:48','2019-02-17 10:32:48'),(2063,'mathematics','64.233.172.200',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:42','2019-02-17 10:33:42'),(2064,'mathematics','66.249.64.170',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:44','2019-02-17 10:33:44'),(2065,'mathematics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 16:14:46','2019-02-17 16:14:46'),(2066,'english','34.238.255.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 12:56:12','2019-02-18 12:56:12'),(2067,'currentaffairs','209.205.211.242',585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 13:24:51','2019-02-18 13:37:43'),(2068,'physics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:10:32','2019-02-18 17:10:32'),(2069,'mathematics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:11:34','2019-02-18 17:11:34'),(2070,'physics','77.246.53.136',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 19:24:42','2019-02-18 19:25:37'),(2071,'english','174.129.141.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 20:49:05','2019-02-18 20:49:05'),(2072,'chemistry','41.191.104.80',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 00:07:04','2019-04-18 08:45:16'),(2073,'insurance','3.82.5.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 01:58:28','2019-02-19 01:58:28'),(2074,'english','54.211.123.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 06:24:59','2019-02-19 06:24:59'),(2075,'chemistry','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:14:42','2019-02-19 10:14:42'),(2076,'englishlit','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:22:31','2019-02-19 10:22:31'),(2077,'economics','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:42:59','2019-02-19 10:42:59'),(2078,'chemistry','54.224.95.200',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 12:27:33','2019-02-19 12:27:33'),(2079,'insurance','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:12:57','2019-02-19 14:12:57'),(2080,'accounting','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:23:32','2019-02-19 14:23:32'),(2081,'civiledu','54.147.55.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:12:39','2019-02-19 18:12:39'),(2082,'physics','77.246.49.36',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:52:53','2019-02-19 18:53:54'),(2083,'chemistry','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:07','2019-02-19 18:53:10'),(2084,'biology','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:18','2019-02-19 18:53:48'),(2085,'mathematics','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:21','2019-02-19 18:53:47'),(2086,'government','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:02:12','2019-02-19 19:02:12'),(2087,'accounting','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:06:42','2019-02-19 19:06:42'),(2088,'chemistry','197.211.57.22',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 20:15:50','2019-02-19 20:22:45'),(2089,'economics','54.161.218.154',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:34','2019-02-19 21:58:35'),(2090,'accounting','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2091,'physics','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2092,'chemistry','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2093,'englishlit','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2094,'geography','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2095,'history','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2096,'english','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 00:48:47','2019-02-20 00:48:48'),(2097,'physics','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:00:30','2019-02-20 01:00:30'),(2098,'geography','66.249.70.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:02:46','2019-02-20 01:02:47'),(2099,'history','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:04:05','2019-02-20 01:04:05'),(2100,'economics','54.81.179.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:18:54','2019-02-20 01:18:54'),(2101,'chemistry','66.249.83.222',26,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2019-11-22 10:45:51'),(2102,'biology','66.249.83.192',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2020-03-04 20:11:48'),(2103,'physics','66.249.83.223',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:05','2019-02-22 08:52:17'),(2104,'physics','77.246.53.28',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:41','2019-02-20 05:28:41'),(2105,'chemistry','207.46.13.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:55:58','2019-02-20 05:55:58'),(2106,'insurance','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:05','2019-02-20 13:44:06'),(2107,'mathematics','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:23','2019-02-20 13:44:24'),(2108,'physics','54.204.105.177',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 15:14:53','2019-02-20 15:14:53'),(2109,'english','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:05:47','2019-02-20 18:05:47'),(2110,'biology','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:13:36','2019-02-20 18:13:37'),(2111,'physics','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2112,'chemistry','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2113,'crk','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2114,'geography','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2115,'economics','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2116,'insurance','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2117,'history','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2118,'currentaffairs','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2119,'mathematics','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:37','2019-02-20 18:36:37'),(2120,'biology','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:43','2019-02-20 18:36:43'),(2121,'english','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2122,'accounting','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2123,'government','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2124,'englishlit','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:49','2019-02-20 18:36:49'),(2125,'englishlit','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:29:11','2019-02-20 19:29:11'),(2126,'chemistry','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:54:43','2019-02-20 19:54:43'),(2127,'biology','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:55','2019-02-20 20:16:55'),(2128,'geography','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:59','2019-02-20 20:16:59'),(2129,'chemistry','105.112.26.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:32:19','2019-02-20 20:32:19'),(2130,'chemistry','54.83.94.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 23:36:55','2019-02-20 23:36:55'),(2131,'mathematics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2132,'mathematics','54.167.183.249',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2133,'commerce','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2134,'accounting','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2135,'physics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2136,'geography','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2137,'economics','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2138,'insurance','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2139,'english','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2140,'chemistry','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2141,'irk','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2142,'history','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2143,'chemistry','46.229.168.130',18,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2020-03-24 16:18:58'),(2144,'chemistry','46.229.168.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2019-02-21 14:32:12'),(2145,'geography','54.221.38.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 02:38:12','2019-02-22 02:38:12'),(2146,'mathematics','54.89.229.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 03:48:22','2019-02-22 03:48:22'),(2147,'chemistry','129.205.112.63',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:18:55','2019-02-22 06:19:17'),(2148,'mathematics','129.205.112.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:19:48','2019-02-22 06:19:48'),(2149,'mathematics','66.249.83.222',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 08:52:08','2019-02-27 03:45:37'),(2150,'economics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 09:26:06','2019-02-22 09:26:07'),(2151,'mathematics','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2152,'mathematics','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2153,'physics','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2154,'biology','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2155,'englishlit','34.201.133.169',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2156,'chemistry','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2157,'government','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2158,'crk','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2159,'geography','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2160,'civiledu','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2161,'civiledu','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2162,'history','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2163,'history','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2164,'economics','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2165,'chemistry','129.56.89.91',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 14:58:18','2019-02-22 14:58:54'),(2166,'mathematics','129.56.89.91',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 15:07:31','2019-02-22 15:07:31'),(2167,'economics','54.161.215.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 00:00:12','2019-02-23 00:00:12'),(2168,'history','3.93.218.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 04:23:21','2019-02-23 04:23:21'),(2169,'accounting','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2170,'biology','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2171,'chemistry','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2172,'government','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2173,'irk','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2174,'insurance','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2175,'currentaffairs','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2176,'chemistry','192.173.38.121',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 23:14:30','2019-02-23 23:14:42'),(2177,'english','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2178,'accounting','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2179,'government','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2180,'crk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2181,'geography','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2182,'irk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2183,'civiledu','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2184,'chemistry','160.120.230.179',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 23:58:16','2019-02-24 23:58:16'),(2185,'chemistry','197.210.45.125',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 10:22:09','2019-02-25 10:23:43'),(2186,'biology','197.210.28.208',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 12:45:32','2019-02-25 12:45:33'),(2187,'chemistry','207.46.13.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 09:41:52','2019-02-26 09:41:52'),(2188,'chemistry','129.205.113.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 15:05:12','2019-02-26 15:05:12'),(2189,'english','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2190,'english','3.87.158.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2191,'mathematics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2192,'commerce','3.87.158.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2193,'biology','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2194,'physics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2195,'geography','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2196,'government','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2197,'economics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2198,'history','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2199,'crk','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2200,'currentaffairs','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2201,'english','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2202,'mathematics','54.226.211.137',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:44'),(2203,'commerce','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2204,'chemistry','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2205,'government','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2206,'history','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2207,'accounting','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2208,'economics','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:30'),(2209,'irk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2210,'insurance','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2211,'chemistry','41.191.107.201',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:30:53','2019-02-26 19:30:53'),(2212,'chemistry','41.191.107.145',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:32:08','2019-02-26 19:33:01'),(2213,'physics','54.243.5.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 22:16:47','2019-02-26 22:16:47'),(2214,'accounting','54.166.233.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 23:08:29','2019-02-26 23:08:29'),(2215,'physics','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:36','2020-02-09 06:54:16'),(2216,'biology','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:43','2020-02-15 20:12:30'),(2217,'chemistry','66.249.83.223',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:44','2020-02-05 04:26:16'),(2218,'physics','77.246.53.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 03:45:58','2019-02-27 03:45:58'),(2219,'chemistry','66.249.93.52',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 11:18:17','2019-06-22 21:48:18'),(2220,'chemistry','41.191.104.245',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 12:41:52','2019-02-27 12:41:52'),(2221,'chemistry','66.249.93.48',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 12:41:34','2019-08-02 12:51:50'),(2222,'insurance','54.209.60.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 13:15:55','2019-02-28 13:15:55'),(2223,'mathematics','52.73.168.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 15:40:02','2019-02-28 15:40:02'),(2224,'chemistry','41.190.2.218',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:47:11','2019-03-01 08:49:37'),(2225,'mathematics','41.190.2.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:50:33','2019-03-01 08:50:34'),(2226,'english','41.190.2.218',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:52:26','2019-03-01 09:52:41'),(2227,'chemistry','66.249.66.158',82,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:22:29','2019-05-21 08:24:45'),(2228,'english','41.190.3.242',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:52:56','2019-03-01 10:52:56'),(2229,'physics','41.190.3.242',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:59:56','2019-03-01 10:59:56'),(2230,'english','41.190.2.156',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:08:07','2019-03-01 11:10:46'),(2231,'englishlit','41.190.2.156',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:11:29','2019-03-01 11:15:39'),(2232,'englishlit','41.190.31.166',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:22:14','2019-03-01 11:22:15'),(2233,'mathematics','41.242.89.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 14:24:39','2019-03-01 14:24:39'),(2234,'chemistry','54.85.62.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:23','2019-03-01 18:59:23'),(2235,'commerce','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2236,'physics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2237,'englishlit','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2238,'government','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2239,'crk','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2240,'economics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2241,'currentaffairs','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2242,'chemistry','88.6.244.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:08:40','2019-03-01 19:08:40'),(2243,'englishlit','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:21'),(2244,'english','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2245,'commerce','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:46'),(2246,'biology','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2247,'geography','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2248,'economics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2249,'irk','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2250,'history','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2251,'chemistry','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:58:25'),(2252,'government','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2253,'currentaffairs','107.20.60.54',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2254,'mathematics','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:05','2019-03-01 19:57:41'),(2255,'accounting','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2256,'physics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2257,'crk','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2258,'civiledu','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2259,'insurance','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2260,'chemistry','197.211.57.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 00:15:49','2019-03-02 00:15:49'),(2261,'mathematics','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:00:36','2019-03-02 04:00:36'),(2262,'geography','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:11:33','2019-03-02 04:11:33'),(2263,'insurance','3.89.38.207',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 06:24:49','2019-03-02 06:30:51'),(2264,'mathematics','54.80.44.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:08'),(2265,'biology','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:05'),(2266,'physics','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:39'),(2267,'chemistry','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:00'),(2268,'englishlit','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:52'),(2269,'economics','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2270,'civiledu','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2271,'commerce','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2272,'crk','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2273,'insurance','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2274,'currentaffairs','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:55'),(2275,'biology','105.112.44.175',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 15:21:52','2019-03-02 15:26:09'),(2276,'chemistry','105.112.21.63',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 16:03:37','2019-03-02 16:03:53'),(2277,'englishlit','169.159.66.161',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 17:05:42','2019-03-02 17:05:42'),(2278,'geography','34.229.78.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 22:36:51','2019-03-02 22:36:51'),(2279,'chemistry','105.112.23.37',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-03 21:25:44','2019-03-03 21:26:34'),(2280,'english','105.112.45.107',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 06:08:59','2019-03-04 06:09:55'),(2281,'chemistry','154.66.15.65',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 09:03:04','2019-03-04 09:03:04'),(2282,'chemistry','40.77.167.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 10:53:20','2019-05-08 11:01:31'),(2283,'chemistry','66.249.64.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 11:52:26','2019-03-04 11:52:26'),(2284,'chemistry','157.55.39.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 17:38:04','2019-03-04 17:38:04'),(2285,'english','129.56.36.43',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 20:56:28','2019-03-04 20:56:29'),(2286,'chemistry','66.249.93.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 22:00:50','2019-03-04 22:00:50'),(2287,'history','3.83.116.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 08:18:13','2019-03-05 08:18:13'),(2288,'english','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2289,'mathematics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2290,'biology','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2291,'irk','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2292,'insurance','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2293,'currentaffairs','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2294,'history','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2295,'commerce','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2296,'accounting','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2297,'economics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2298,'civiledu','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2299,'chemistry','129.205.112.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 05:43:39','2019-03-06 05:43:39'),(2300,'english','105.112.41.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 06:01:30','2019-03-06 06:01:30'),(2301,'chemistry','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:53:58','2019-03-07 07:53:58'),(2302,'english','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:03','2019-03-07 07:54:03'),(2303,'currentaffairs','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:05','2019-03-07 07:54:05'),(2304,'englishlit','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:11','2019-03-07 07:54:11'),(2305,'mathematics','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:13','2019-03-07 07:54:13'),(2306,'english','54.146.17.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 10:10:28','2019-03-07 10:10:28'),(2307,'chemistry','41.203.78.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 18:01:15','2019-03-07 18:01:40'),(2308,'mathematics','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:29:12','2019-03-08 00:29:12'),(2309,'accounting','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:43:38','2019-03-08 00:43:39'),(2310,'irk','129.205.112.111',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:47:07','2019-03-08 00:47:07'),(2311,'commerce','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:57:56','2019-03-08 00:57:56'),(2312,'mathematics','105.112.23.187',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 02:10:15','2019-03-08 02:10:16'),(2313,'chemistry','182.156.84.42',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 07:34:03','2019-03-08 07:34:38'),(2314,'english','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:32','2019-03-08 21:33:32'),(2315,'mathematics','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:51','2019-03-08 21:33:51'),(2316,'chemistry','66.249.66.128',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 22:28:29','2019-03-08 22:28:29'),(2317,'commerce','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2318,'accounting','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2319,'englishlit','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2320,'government','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2321,'crk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2322,'irk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2323,'civiledu','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2324,'biology','105.112.41.40',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 11:20:50','2019-03-10 11:20:50'),(2325,'english','66.249.66.159',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-10 18:44:59','2019-12-20 19:13:10'),(2326,'currentaffairs','66.249.66.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:01:44','2019-03-10 19:01:44'),(2327,'mathematics','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:07:00','2019-03-10 19:07:00'),(2328,'biology','66.249.66.159',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:11:15','2019-07-20 09:55:14'),(2329,'chemistry','197.242.96.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:22:23','2019-03-10 22:22:23'),(2330,'commerce','197.211.32.243',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:37:02','2019-03-10 22:37:05'),(2331,'english','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:35'),(2332,'commerce','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2333,'biology','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2334,'chemistry','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2335,'geography','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:27'),(2336,'currentaffairs','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:32'),(2337,'history','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:43'),(2338,'englishlit','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:37','2019-03-10 23:37:40'),(2339,'mathematics','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:47'),(2340,'physics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2341,'economics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2342,'civiledu','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2343,'english','105.112.106.77',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:59:59','2019-03-11 00:33:51'),(2344,'mathematics','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:03','2019-03-11 00:13:40'),(2345,'civiledu','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:29','2019-03-11 00:10:45'),(2346,'chemistry','41.216.168.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 10:36:04','2019-03-11 10:36:31'),(2347,'biology','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:11:03','2019-03-11 12:11:04'),(2348,'currentaffairs','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:16:12','2019-03-11 12:16:13'),(2349,'mathematics','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:21:12','2019-03-11 12:21:13'),(2350,'chemistry','197.210.62.63',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:26:12','2019-03-11 12:26:12'),(2351,'chemistry','197.210.54.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:24','2019-03-12 04:11:25'),(2352,'chemistry','197.210.54.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:37','2019-03-12 04:11:38'),(2353,'chemistry','207.46.13.222',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 23:05:23','2019-03-12 23:05:23'),(2354,'chemistry','105.112.16.104',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:30:57','2019-03-13 08:32:49'),(2355,'mathematics','105.112.16.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:33:15','2019-03-13 08:33:15'),(2356,'chemistry','157.55.39.236',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-14 04:31:32','2020-05-06 01:55:10'),(2357,'chemistry','129.18.151.222',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-14 17:26:09','2019-03-14 17:27:29'),(2358,'mathematics','18.207.245.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2359,'mathematics','18.207.245.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2360,'biology','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2361,'commerce','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2362,'physics','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2363,'chemistry','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2364,'economics','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2365,'irk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2366,'government','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2367,'history','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2368,'crk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2369,'physics','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:25','2019-03-16 12:35:39'),(2370,'mathematics','129.205.113.120',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:34','2019-03-16 12:33:03'),(2371,'commerce','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2372,'accounting','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2373,'chemistry','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2374,'englishlit','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2375,'civiledu','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2376,'insurance','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2377,'history','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2378,'english','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 12:33:00','2019-03-16 12:33:31'),(2379,'mathematics','105.178.112.15',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 13:18:33','2019-03-16 14:33:21'),(2380,'englishlit','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:40','2019-03-16 15:14:43'),(2381,'commerce','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:45','2019-03-16 15:15:22'),(2382,'history','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:47','2019-03-16 15:14:59'),(2383,'chemistry','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:49','2019-03-16 15:14:54'),(2384,'accounting','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:52','2019-03-16 15:15:17'),(2385,'civiledu','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:57','2019-03-16 15:15:01'),(2386,'insurance','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:15:19','2019-03-16 15:15:25'),(2387,'chemistry','40.77.167.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 18:24:33','2019-03-16 18:24:33'),(2388,'commerce','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2389,'accounting','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2390,'biology','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2391,'chemistry','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2392,'englishlit','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2393,'irk','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2394,'history','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2395,'mathematics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:53'),(2396,'accounting','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 08:48:07'),(2397,'biology','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:03:03'),(2398,'physics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:47'),(2399,'englishlit','100.24.30.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:02'),(2400,'currentaffairs','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:45'),(2401,'history','100.24.30.47',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:06'),(2402,'english','100.24.30.47',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:57:07','2019-03-17 09:11:58'),(2403,'economics','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:00:11'),(2404,'irk','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2405,'civiledu','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2406,'commerce','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2407,'crk','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2408,'geography','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2409,'english','3.93.187.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:32:15','2019-03-17 11:32:15'),(2410,'chemistry','37.9.87.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:48:48','2019-03-17 11:48:48'),(2411,'chemistry','94.130.237.95',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-18 23:20:28','2020-03-04 10:30:43'),(2412,'chemistry','46.229.168.133',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-19 07:43:34','2020-04-15 11:01:00'),(2413,'english','105.112.104.202',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 15:27:18','2019-03-19 15:27:19'),(2414,'chemistry','40.77.167.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 17:56:39','2019-03-19 17:56:39'),(2415,'chemistry','66.102.6.20',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 20:29:21','2019-03-19 20:29:22'),(2416,'chemistry','84.224.213.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 14:12:39','2019-03-20 14:12:39'),(2417,'english','105.112.104.10',340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:17:23','2019-03-20 20:12:29'),(2418,'irk','105.112.104.10',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:54:32','2019-03-20 19:54:32'),(2419,'accounting','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:07','2019-03-21 02:02:08'),(2420,'chemistry','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2421,'government','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2422,'geography','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2423,'irk','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2424,'currentaffairs','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2425,'history','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2426,'commerce','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2427,'biology','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2428,'chemistry','185.161.72.105',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 13:47:45','2019-03-21 13:47:45'),(2429,'english','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2430,'commerce','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2431,'physics','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2432,'government','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2433,'irk','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2434,'insurance','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2435,'currentaffairs','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2436,'physics','66.249.64.178',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-22 04:05:38','2019-09-25 11:24:23'),(2437,'chemistry','82.145.222.11',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 08:45:03','2019-03-22 08:53:13'),(2438,'crk','52.91.165.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 09:38:12','2019-03-22 09:38:12'),(2439,'economics','54.158.54.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 11:28:41','2019-03-22 11:28:41'),(2440,'history','54.90.213.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 12:47:11','2019-03-22 12:47:11'),(2441,'english','66.249.64.176',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:40:29','2019-04-12 08:26:44'),(2442,'commerce','66.249.64.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:50:23','2019-03-22 13:50:23'),(2443,'civiledu','66.249.64.178',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:55:48','2019-03-22 13:55:48'),(2444,'mathematics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2445,'chemistry','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2446,'crk','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2447,'geography','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2448,'economics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2449,'insurance','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2450,'history','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2451,'commerce','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2452,'physics','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2453,'englishlit','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:42'),(2454,'crk','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:00:30'),(2455,'economics','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2456,'irk','34.229.89.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2457,'history','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:43'),(2458,'english','34.229.89.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2459,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2460,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2461,'chemistry','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2462,'geography','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2463,'accounting','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2464,'civiledu','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2465,'insurance','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:42'),(2466,'currentaffairs','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:56'),(2467,'biology','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:37','2019-03-22 17:32:37'),(2468,'government','34.229.89.118',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:40','2019-03-22 17:32:45'),(2469,'mathematics','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:44','2019-03-22 17:32:44'),(2470,'english','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:18','2019-03-22 17:33:18'),(2471,'mathematics','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:19','2019-03-22 17:33:19'),(2472,'chemistry','41.191.107.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:21:08','2019-03-23 13:21:08'),(2473,'chemistry','41.191.107.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:44:44','2019-03-23 13:44:44'),(2474,'chemistry','129.205.112.163',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:17:58','2019-03-23 22:17:58'),(2475,'economics','129.205.112.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:18:49','2019-03-23 22:19:03'),(2476,'mathematics','197.210.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:44:13','2019-03-24 10:44:13'),(2477,'chemistry','197.210.226.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:46:33','2019-03-24 10:46:34'),(2478,'chemistry','197.211.53.242',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 10:42:54','2019-03-25 10:44:52'),(2479,'chemistry','41.203.117.95',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:03','2019-03-25 13:54:15'),(2480,'physics','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:28','2019-03-25 13:47:28'),(2481,'crk','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:13','2019-03-25 13:48:13'),(2482,'mathematics','41.203.117.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:31','2019-03-25 13:48:38'),(2483,'chemistry','41.203.117.96',143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:49:27','2019-03-25 14:31:34'),(2484,'accounting','41.203.117.96',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:30:45','2019-03-25 14:30:45'),(2485,'english','41.203.117.96',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:31:48','2019-03-25 14:31:48'),(2486,'currentaffairs','41.203.117.96',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:34:10','2019-03-28 05:33:36'),(2487,'english','105.112.46.123',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-26 13:20:41','2019-03-26 13:20:41'),(2488,'chemistry','46.229.168.153',58,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 15:28:52','2020-04-02 19:27:21'),(2489,'chemistry','46.229.168.140',6,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 21:40:59','2020-05-27 12:47:02'),(2490,'englishlit','41.80.214.85',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 06:56:24','2019-03-27 06:56:24'),(2491,'chemistry','73.59.41.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 21:49:59','2019-03-27 21:49:59'),(2492,'chemistry','41.203.72.196',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 08:11:19','2019-03-28 12:35:17'),(2493,'chemistry','40.77.167.104',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 15:19:42','2019-03-28 15:19:42'),(2494,'mathematics','129.205.112.28',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:06:58','2019-03-29 19:07:07'),(2495,'physics','129.205.112.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:07:30','2019-03-29 19:07:30'),(2496,'economics','3.80.51.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:44:22','2019-03-29 19:44:22'),(2497,'government','18.234.162.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 21:01:37','2019-03-29 21:01:37'),(2498,'chemistry','46.229.168.161',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-29 21:28:49','2019-12-18 04:07:27'),(2499,'irk','3.87.11.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 00:18:36','2019-03-30 00:18:36'),(2500,'geography','54.197.32.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 03:33:46','2019-03-30 03:33:46'),(2501,'biology','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:08:31','2019-03-30 08:08:31'),(2502,'insurance','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:26:32','2019-03-30 08:26:32'),(2503,'chemistry','3.84.72.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 02:49:20','2019-03-31 02:49:20'),(2504,'chemistry','34.204.94.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 04:43:23','2019-03-31 04:43:23'),(2505,'english','3.81.184.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 10:44:44','2019-03-31 10:44:44'),(2506,'chemistry','105.112.23.125',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:00:42','2019-03-31 13:15:36'),(2507,'english','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:09:11','2019-03-31 13:09:11'),(2508,'mathematics','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:11:16','2019-03-31 13:11:16'),(2509,'chemistry','197.211.47.194',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:03:32','2019-04-01 09:06:11'),(2510,'chemistry','41.76.196.129',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:06:31','2019-04-01 09:06:31'),(2511,'commerce','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2512,'biology','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2513,'government','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2514,'crk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2515,'irk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2516,'civiledu','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2517,'currentaffairs','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2518,'english','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:22','2019-04-02 02:07:22'),(2519,'biology','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:23','2019-04-02 02:07:27'),(2520,'commerce','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2521,'physics','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2522,'chemistry','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2523,'geography','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2524,'irk','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2525,'history','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2526,'government','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:28','2019-04-02 02:07:28'),(2527,'mathematics','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:41','2019-04-02 02:07:46'),(2528,'accounting','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2529,'englishlit','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2530,'currentaffairs','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:49'),(2531,'biology','3.86.140.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 04:02:20','2019-04-02 04:02:20'),(2532,'englishlit','3.94.89.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 06:08:13','2019-04-02 06:08:13'),(2533,'chemistry','41.184.180.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 08:54:01','2019-04-02 08:54:10'),(2534,'accounting','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:03:12','2019-04-02 10:03:12'),(2535,'government','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:26:32','2019-04-02 10:26:32'),(2536,'chemistry','207.46.13.126',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-02 13:11:18','2019-08-14 07:10:32'),(2537,'biology','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:17','2019-04-03 08:40:36'),(2538,'chemistry','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:29','2019-04-03 08:40:19'),(2539,'mathematics','105.112.44.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:41:16','2019-04-03 08:41:16'),(2540,'chemistry','209.97.150.141',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 09:48:38','2019-04-03 09:50:08'),(2541,'english','105.112.32.51',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:33','2019-04-03 11:02:48'),(2542,'biology','105.112.32.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:37','2019-04-03 11:02:37'),(2543,'chemistry','41.190.2.238',1555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:28:32','2019-04-03 11:47:36'),(2544,'mathematics','41.190.2.238',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:30:49','2019-04-03 11:30:49'),(2545,'physics','41.190.2.238',526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:47:52','2019-04-03 12:42:05'),(2546,'physics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:13:30','2019-04-03 15:13:31'),(2547,'chemistry','41.190.30.103',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:35:55','2019-04-03 15:36:14'),(2548,'mathematics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:39:13','2019-04-03 15:39:14'),(2549,'accounting','41.190.30.103',136,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:45:47','2019-04-03 15:46:17'),(2550,'economics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:49:22','2019-04-03 15:49:22'),(2551,'crk','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:51:56','2019-04-03 15:51:57'),(2552,'biology','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:54:17','2019-04-03 15:54:17'),(2553,'commerce','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:55:40','2019-04-03 15:55:40'),(2554,'government','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:58:11','2019-04-03 15:58:12'),(2555,'geography','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:00:47','2019-04-03 16:00:47'),(2556,'civiledu','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:02:39','2019-04-03 16:02:39'),(2557,'englishlit','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:05:21','2019-04-03 16:05:22'),(2558,'insurance','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:08:37','2019-04-03 16:08:38'),(2559,'currentaffairs','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:11:38','2019-04-03 16:11:38'),(2560,'history','41.190.30.103',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:14:03','2019-04-03 16:18:17'),(2561,'english','41.190.30.103',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:18:32','2019-04-03 16:20:28'),(2562,'government','41.190.2.134',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:33:07','2019-04-04 09:35:25'),(2563,'geography','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:38:24','2019-04-04 09:38:25'),(2564,'civiledu','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:39:50','2019-04-04 09:39:51'),(2565,'commerce','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:41:37','2019-04-04 09:41:37'),(2566,'crk','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:54:15','2019-04-04 09:54:16'),(2567,'economics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:57:56','2019-04-04 09:57:56'),(2568,'accounting','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:01:07','2019-04-04 10:01:07'),(2569,'mathematics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:06:55','2019-04-04 10:06:55'),(2570,'physics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:12:17','2019-04-04 10:12:17'),(2571,'history','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:21:45','2019-04-04 10:21:45'),(2572,'englishlit','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:24:08','2019-04-04 10:24:08'),(2573,'english','41.190.30.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:13:41','2019-04-04 13:13:42'),(2574,'mathematics','41.190.3.233',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:54:16','2019-04-04 13:54:16'),(2575,'chemistry','41.190.3.233',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:55:19','2019-04-04 13:55:19'),(2576,'chemistry','185.22.187.7',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 15:25:03','2019-04-04 15:25:20'),(2577,'chemistry','37.9.87.166',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-05 14:29:44','2019-10-25 17:45:28'),(2578,'irk','54.196.110.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 15:52:32','2019-04-05 15:52:32'),(2579,'mathematics','197.210.44.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:32','2019-04-05 16:49:32'),(2580,'chemistry','197.210.44.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:34','2019-04-05 16:49:34'),(2581,'chemistry','197.210.44.111',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:50:28','2019-04-05 16:51:41'),(2582,'chemistry','197.210.47.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:54:08','2019-04-05 16:54:09'),(2583,'chemistry','52.90.61.82',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:21:23','2019-04-05 18:36:20'),(2584,'currentaffairs','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:23:14','2019-04-05 18:23:14'),(2585,'crk','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:36:17','2019-04-05 18:36:17'),(2586,'civiledu','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:02','2019-04-05 18:37:02'),(2587,'english','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:32','2019-04-05 18:37:32'),(2588,'chemistry','157.55.39.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:59:25','2019-07-19 10:24:33'),(2589,'physics','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:17','2019-04-05 19:08:17'),(2590,'biology','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:21','2019-04-05 19:08:21'),(2591,'currentaffairs','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:29:36','2019-04-05 20:29:36'),(2592,'insurance','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:35:29','2019-04-05 20:35:29'),(2593,'physics','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:38:52','2019-04-05 21:38:52'),(2594,'irk','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:43:07','2019-04-05 21:43:07'),(2595,'chemistry','54.91.42.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:01','2019-04-05 21:54:36'),(2596,'commerce','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:13','2019-04-05 21:45:13'),(2597,'civiledu','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:50:08','2019-04-05 21:50:08'),(2598,'history','35.172.115.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 01:23:16','2019-04-06 01:23:16'),(2599,'currentaffairs','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:01','2019-04-06 03:46:01'),(2600,'crk','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:30','2019-04-06 03:46:30'),(2601,'englishlit','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 04:05:47','2019-04-06 04:05:47'),(2602,'accounting','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:26:27','2019-04-06 07:26:27'),(2603,'physics','3.85.62.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:19','2019-04-06 07:42:57'),(2604,'civiledu','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:26','2019-04-06 07:36:26'),(2605,'mathematics','197.210.61.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 14:29:44','2019-04-06 14:29:45'),(2606,'chemistry','207.46.13.167',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-06 18:40:36','2019-10-27 04:49:17'),(2607,'commerce','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2608,'accounting','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2609,'biology','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2610,'economics','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2611,'irk','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2612,'insurance','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2613,'currentaffairs','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2614,'english','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:24:22'),(2615,'mathematics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:02'),(2616,'biology','3.90.165.250',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:28'),(2617,'chemistry','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:47'),(2618,'government','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:16'),(2619,'geography','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:37'),(2620,'economics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:15'),(2621,'chemistry','141.0.13.241',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:16:18','2019-04-07 11:17:09'),(2622,'chemistry','105.112.104.108',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:17:50','2019-04-07 11:53:35'),(2623,'chemistry','82.145.222.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:22:54','2019-04-07 11:22:54'),(2624,'mathematics','105.112.104.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:46:52','2019-04-07 11:46:52'),(2625,'biology','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:15:42','2019-04-07 12:15:42'),(2626,'accounting','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:17:42','2019-04-07 12:17:42'),(2627,'chemistry','105.112.104.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:26:42','2019-04-07 13:27:24'),(2628,'biology','105.112.104.18',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:27:54','2019-04-07 13:28:33'),(2629,'mathematics','105.112.104.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:29:59','2019-04-07 13:29:59'),(2630,'chemistry','185.26.180.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:00:35','2019-04-07 16:00:35'),(2631,'chemistry','105.112.106.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:02:56','2019-04-07 16:02:56'),(2632,'chemistry','105.112.43.80',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 17:41:13','2019-04-07 17:41:38'),(2633,'chemistry','105.112.104.114',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:43:25','2019-04-08 04:55:15'),(2634,'mathematics','105.112.104.114',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:51:11','2019-04-08 04:51:12'),(2635,'chemistry','105.112.34.168',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 05:14:41','2019-04-08 05:14:55'),(2636,'chemistry','105.112.104.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 07:59:31','2019-04-08 07:59:31'),(2637,'chemistry','41.205.240.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:19:15','2019-04-09 00:19:15'),(2638,'economics','3.86.54.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:39:42','2019-04-09 00:39:42'),(2639,'commerce','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:29:18'),(2640,'accounting','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2641,'physics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2642,'crk','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2643,'economics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:23:09'),(2644,'insurance','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:44'),(2645,'history','3.88.201.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:56'),(2646,'mathematics','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:44:33','2019-04-09 09:44:33'),(2647,'accounting','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:54:57','2019-04-09 09:54:57'),(2648,'accounting','3.87.215.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 12:06:38','2019-04-09 12:06:38'),(2649,'physics','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:22','2019-04-09 17:06:22'),(2650,'economics','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:23','2019-04-09 17:05:23'),(2651,'accounting','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:47','2019-04-09 17:05:47'),(2652,'crk','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:57','2019-04-09 17:06:07'),(2653,'chemistry','207.46.13.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 02:00:09','2019-04-10 02:00:09'),(2654,'irk','54.173.242.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:23:34','2019-04-10 07:23:40'),(2655,'commerce','54.173.242.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:48:23','2019-04-10 07:48:23'),(2656,'government','54.147.61.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 09:44:06','2019-04-10 09:44:06'),(2657,'geography','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2658,'government','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2659,'economics','3.93.241.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 12:17:07','2019-04-10 12:17:07'),(2660,'irk','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:56','2019-04-10 14:28:56'),(2661,'history','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:57','2019-04-10 14:28:57'),(2662,'irk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:31','2019-04-10 15:59:53'),(2663,'accounting','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:33','2019-04-10 16:03:21'),(2664,'economics','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:47','2019-04-10 16:02:08'),(2665,'currentaffairs','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:51','2019-04-10 16:01:26'),(2666,'insurance','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:10','2019-04-10 16:01:37'),(2667,'biology','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:18','2019-04-10 16:02:37'),(2668,'commerce','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:48','2019-04-10 16:02:17'),(2669,'civiledu','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:49','2019-04-10 16:02:48'),(2670,'crk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:56','2019-04-10 16:02:27'),(2671,'government','3.80.78.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:02:58','2019-04-10 16:02:58'),(2672,'chemistry','207.46.13.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:32:08','2019-04-10 17:32:08'),(2673,'chemistry','66.249.69.48',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:41:29','2019-04-10 17:41:29'),(2674,'insurance','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:38:05','2019-04-10 18:38:05'),(2675,'civiledu','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:44:01','2019-04-10 18:44:01'),(2676,'irk','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:58:11','2019-04-10 18:58:11'),(2677,'government','3.87.45.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 20:21:49','2019-04-10 20:21:49'),(2678,'government','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:40','2019-04-10 22:50:40'),(2679,'geography','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:42','2019-04-10 22:50:42'),(2680,'english','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2681,'chemistry','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2682,'englishlit','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2683,'crk','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2684,'economics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:46'),(2685,'irk','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2686,'insurance','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2687,'biology','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:15','2019-04-11 00:10:18'),(2688,'mathematics','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:20','2019-04-11 00:11:23'),(2689,'government','54.86.96.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:30','2019-04-11 00:10:30'),(2690,'physics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:33','2019-04-11 00:11:18'),(2691,'accounting','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2692,'geography','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2693,'civiledu','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2694,'economics','3.93.17.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 02:50:27','2019-04-11 02:50:27'),(2695,'chemistry','197.253.24.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 10:49:51','2019-04-11 10:49:51'),(2696,'chemistry','157.55.39.202',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-11 12:13:39','2019-08-25 13:52:51'),(2697,'insurance','54.88.86.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 17:31:52','2019-04-11 17:31:52'),(2698,'chemistry','121.201.98.53',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 20:36:45','2019-04-11 20:36:50'),(2699,'english','41.191.107.216',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 06:44:42','2019-04-14 21:10:37'),(2700,'mathematics','41.191.104.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:09:38','2019-04-12 07:09:38'),(2701,'mathematics','41.191.107.41',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:45:52','2019-04-16 10:48:23'),(2702,'mathematics','41.191.107.131',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:54:27','2019-04-12 07:55:42'),(2703,'mathematics','41.191.104.115',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:01:58','2019-04-12 08:16:36'),(2704,'mathematics','41.191.107.49',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:17:28','2019-04-13 06:52:57'),(2705,'mathematics','41.191.104.102',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:25:53','2019-04-12 08:25:53'),(2706,'mathematics','66.249.64.180',125,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:28:03','2019-09-25 10:59:54'),(2707,'accounting','66.249.64.178',100,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:46:02','2019-09-30 03:38:01'),(2708,'chemistry','207.46.13.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:56:53','2019-04-12 08:56:53'),(2709,'mathematics','41.191.107.34',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:03:02','2019-04-13 23:22:24'),(2710,'english','41.191.107.34',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:06:00','2019-04-13 23:48:54'),(2711,'english','105.112.104.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 14:42:37','2019-04-12 14:42:37'),(2712,'chemistry','46.229.168.163',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 16:31:11','2020-04-13 20:58:16'),(2713,'mathematics','41.191.107.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:36:57','2019-04-13 06:40:11'),(2714,'mathematics','41.191.107.151',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:42:48','2019-04-15 12:15:35'),(2715,'english','41.191.107.49',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:53:45','2019-04-13 06:53:45'),(2716,'mathematics','41.191.107.229',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:15:13','2019-04-13 07:17:41'),(2717,'english','41.191.104.98',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:23:28','2019-04-13 07:26:33'),(2718,'mathematics','41.191.104.123',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:28:03','2019-04-13 07:33:06'),(2719,'english','41.191.107.56',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:34:59','2019-04-13 07:41:26'),(2720,'mathematics','41.191.107.56',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:35:12','2019-04-13 07:36:14'),(2721,'english','41.191.107.38',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:01:35','2019-04-15 22:19:39'),(2722,'mathematics','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:14:24','2019-04-13 08:22:39'),(2723,'mathematics','41.191.107.200',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:13:40','2019-04-13 15:16:42'),(2724,'english','41.191.104.245',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:19:40','2019-04-13 15:21:22'),(2725,'mathematics','41.191.104.245',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:20:48','2019-04-13 15:36:18'),(2726,'english','41.191.104.126',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:41:45','2019-04-13 16:13:10'),(2727,'biology','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:10:57','2019-04-13 16:10:57'),(2728,'mathematics','41.191.107.202',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:15:56','2019-04-15 09:45:36'),(2729,'english','41.191.107.202',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:18:30','2019-04-18 12:32:41'),(2730,'mathematics','41.191.107.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:27:24','2019-04-13 16:30:57'),(2731,'english','41.191.107.192',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:32:20','2019-04-14 16:42:26'),(2732,'english','41.191.107.207',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:35:14','2019-04-13 16:35:15'),(2733,'english','41.191.107.57',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:38:16','2019-04-14 18:25:42'),(2734,'biology','41.191.107.57',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:42:04','2019-04-13 16:42:04'),(2735,'english','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:06:49','2019-04-13 17:06:49'),(2736,'history','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:14:30','2019-04-13 17:14:30'),(2737,'english','41.191.107.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:03:33','2019-04-13 20:03:33'),(2738,'mathematics','41.191.104.69',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:53:34','2019-04-13 20:53:34'),(2739,'chemistry','68.38.183.43',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:59:58','2019-04-13 20:59:58'),(2740,'english','41.191.104.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:20:44','2019-04-17 07:51:45'),(2741,'mathematics','41.191.104.66',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:24:15','2019-04-14 05:46:29'),(2742,'english','41.191.107.150',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:03:19','2019-04-14 22:45:16'),(2743,'english','41.191.107.152',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:11:07','2019-04-13 22:21:17'),(2744,'mathematics','41.191.107.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:17:02','2019-04-13 22:17:02'),(2745,'english','41.191.107.200',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:23:24','2019-04-13 22:26:39'),(2746,'english','41.191.104.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:39:29','2019-04-13 22:41:41'),(2747,'english','41.191.107.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:51:32','2019-04-13 22:51:32'),(2748,'mathematics','41.191.107.222',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:54:57','2019-04-18 15:45:59'),(2749,'english','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:00:50','2019-04-13 23:00:50'),(2750,'english','41.191.107.137',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:32:04','2019-04-13 23:35:00'),(2751,'englishlit','18.232.74.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:13','2019-04-13 23:36:13'),(2752,'biology','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:44','2019-04-13 23:36:44'),(2753,'english','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:40:56','2019-04-13 23:40:56'),(2754,'mathematics','41.191.107.37',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:58:26','2019-04-14 00:21:39'),(2755,'biology','41.191.107.37',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:01:19','2019-04-14 00:01:19'),(2756,'english','41.191.107.37',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:09:50','2019-04-14 00:17:04'),(2757,'chemistry','157.55.39.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 04:27:16','2019-04-14 04:27:16'),(2758,'mathematics','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:15:55','2019-04-15 21:56:33'),(2759,'mathematics','41.191.104.105',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:19:56','2019-04-16 13:49:06'),(2760,'english','41.191.104.105',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:23:15','2019-04-16 14:41:34'),(2761,'english','41.191.104.247',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:34:00','2019-04-14 21:59:12'),(2762,'mathematics','41.191.107.39',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:52:06','2019-04-14 06:52:06'),(2763,'english','41.191.107.39',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:53:36','2019-04-16 11:08:43'),(2764,'mathematics','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:59:07','2019-04-14 06:59:07'),(2765,'english','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:01:04','2019-04-14 07:01:04'),(2766,'english','41.191.104.211',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:07:58','2019-04-17 08:04:27'),(2767,'english','41.191.104.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:15:46','2019-04-14 07:19:13'),(2768,'english','41.191.104.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:30:14','2019-04-14 07:32:46'),(2769,'chemistry','37.9.87.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 09:45:40','2019-04-14 09:45:40'),(2770,'irk','52.90.216.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 10:20:51','2019-04-14 10:20:51'),(2771,'biology','3.81.103.16',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 11:31:56','2019-04-19 04:55:11'),(2772,'accounting','34.204.107.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:03:29','2019-04-14 13:03:29'),(2773,'biology','41.191.107.44',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:11','2019-04-14 13:49:11'),(2774,'mathematics','41.191.107.44',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:49','2019-04-14 13:50:03'),(2775,'mathematics','41.191.104.250',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:35','2019-04-18 08:49:17'),(2776,'biology','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:42','2019-04-14 13:53:42'),(2777,'chemistry','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:47','2019-04-14 13:53:47'),(2778,'englishlit','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:18:28','2019-04-14 16:18:28'),(2779,'geography','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:22:19','2019-04-14 16:22:19'),(2780,'english','41.191.104.212',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:35:03','2019-04-17 05:50:48'),(2781,'english','41.191.107.136',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:55:31','2019-04-14 16:55:31'),(2782,'geography','54.152.49.211',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:59:08','2019-04-14 16:59:51'),(2783,'english','41.191.104.71',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:06:18','2019-04-14 17:13:26'),(2784,'english','41.191.104.116',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:16:25','2019-04-17 08:38:00'),(2785,'mathematics','41.191.104.116',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:25:32','2019-04-14 22:10:15'),(2786,'english','41.191.104.119',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:30:02','2019-04-14 17:44:00'),(2787,'english','41.191.107.55',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:47:44','2019-04-14 17:51:39'),(2788,'english','41.191.104.108',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:55:26','2019-04-14 18:02:51'),(2789,'english','41.191.107.205',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:07:34','2019-04-14 18:17:06'),(2790,'mathematics','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:30:52','2019-04-16 10:27:56'),(2791,'english','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:36:07','2019-04-16 10:29:42'),(2792,'english','41.191.104.240',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:37:18','2019-04-17 08:43:35'),(2793,'biology','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:48:01','2019-04-14 18:48:01'),(2794,'english','41.191.107.219',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:52:14','2019-04-14 18:52:15'),(2795,'english','41.191.107.129',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:56:38','2019-04-14 19:01:32'),(2796,'currentaffairs','3.90.232.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:06','2019-04-14 19:07:06'),(2797,'english','41.191.107.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:18','2019-04-14 19:09:59'),(2798,'english','41.191.104.227',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:14:06','2019-04-14 19:15:42'),(2799,'english','41.191.104.253',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:24:38','2019-04-14 19:24:38'),(2800,'english','41.191.104.112',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:46:42','2019-04-14 19:49:06'),(2801,'english','41.191.104.125',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:52:06','2019-04-14 19:52:07'),(2802,'english','41.191.104.252',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:13:43','2019-04-14 21:20:04'),(2803,'english','41.191.104.87',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:36:40','2019-04-14 21:43:10'),(2804,'english','41.191.107.237',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:45:45','2019-04-18 12:38:45'),(2805,'english','41.191.104.244',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:52:54','2019-04-14 21:58:31'),(2806,'chemistry','41.191.104.247',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:47','2019-04-14 21:59:47'),(2807,'biology','41.191.104.247',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:57','2019-04-14 22:02:53'),(2808,'biology','41.191.104.116',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:07:01','2019-04-14 22:10:51'),(2809,'currentaffairs','54.83.92.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:19:54','2019-04-14 22:19:54'),(2810,'english','41.191.107.43',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:31:31','2019-04-14 22:37:38'),(2811,'biology','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:38:27','2019-04-14 22:38:27'),(2812,'english','41.191.104.236',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:47:43','2019-04-14 22:51:24'),(2813,'english','41.191.107.215',86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:57:31','2019-04-21 07:04:12'),(2814,'english','41.191.104.122',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 23:14:59','2019-04-14 23:16:16'),(2815,'currentaffairs','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 04:56:40','2019-04-15 04:56:40'),(2816,'biology','41.191.104.236',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:06:52','2019-04-15 05:06:52'),(2817,'biology','41.191.107.143',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:09:27','2019-04-15 05:09:27'),(2818,'english','41.191.107.143',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:10:01','2019-04-17 21:35:39'),(2819,'chemistry','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:25:39','2019-04-15 05:25:39'),(2820,'chemistry','197.210.45.192',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:57:49','2019-04-15 05:58:34'),(2821,'english','41.191.107.151',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:44:16','2019-04-15 12:15:57'),(2822,'mathematics','41.191.104.230',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:47:22','2019-04-15 06:47:22'),(2823,'chemistry','100.24.41.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:39:29','2019-04-15 08:39:29'),(2824,'economics','100.24.41.153',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:41:00','2019-04-15 08:46:51'),(2825,'mathematics','41.191.107.45',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:19:04','2019-04-15 09:19:04'),(2826,'english','41.191.107.45',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:21:49','2019-04-15 09:23:48'),(2827,'physics','41.191.107.202',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:44:31','2019-04-15 09:44:31'),(2828,'accounting','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:45','2019-04-15 10:30:45'),(2829,'insurance','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:59','2019-04-15 10:30:59'),(2830,'accounting','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:29','2019-04-15 12:13:29'),(2831,'biology','54.146.247.244',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:34','2019-04-15 12:16:32'),(2832,'biology','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:17:48','2019-04-15 12:17:48'),(2833,'government','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:19:13','2019-04-15 12:19:13'),(2834,'mathematics','41.191.104.246',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:58:00','2019-04-15 12:58:00'),(2835,'english','41.191.104.246',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 13:05:40','2019-04-15 13:27:26'),(2836,'english','41.191.107.235',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:15:42','2019-04-15 14:15:42'),(2837,'english','41.191.107.149',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:19:44','2019-04-15 14:20:56'),(2838,'english','41.191.104.248',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:29:00','2019-04-15 14:31:19'),(2839,'english','41.191.107.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:32:49','2019-04-19 06:55:21'),(2840,'english','41.191.104.235',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:42:02','2019-04-17 08:31:05'),(2841,'mathematics','41.191.104.235',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:44:03','2019-04-15 14:44:48'),(2842,'english','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:39:05','2019-04-15 21:39:05'),(2843,'mathematics','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:41:15','2019-04-15 21:41:15'),(2844,'english','41.191.104.83',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:47:14','2019-04-15 21:48:53'),(2845,'english','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:51:15','2019-04-15 21:53:42'),(2846,'mathematics','41.191.107.201',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:59:07','2019-04-15 21:59:07'),(2847,'english','41.191.107.201',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:01:58','2019-04-15 22:03:34'),(2848,'mathematics','41.191.104.80',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:08:37','2019-04-18 08:45:25'),(2849,'english','41.191.104.80',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:11:48','2019-04-15 22:11:48'),(2850,'mathematics','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:24:37','2019-04-15 22:24:37'),(2851,'english','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:26:42','2019-04-15 22:26:42'),(2852,'mathematics','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2853,'commerce','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2854,'biology','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2855,'physics','34.207.128.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2856,'economics','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2857,'irk','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2858,'civiledu','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2859,'accounting','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2860,'chemistry','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:37:13'),(2861,'currentaffairs','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2862,'english','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2863,'government','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2864,'crk','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2865,'biology','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2866,'mathematics','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2867,'english','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2868,'chemistry','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2869,'government','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2870,'crk','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2871,'economics','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2872,'englishlit','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2873,'geography','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2874,'irk','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2875,'civiledu','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2876,'insurance','3.91.220.96',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2877,'insurance','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2878,'history','3.91.220.96',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2879,'history','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2880,'mathematics','54.224.201.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:37:58','2019-04-16 03:10:18'),(2881,'english','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2882,'accounting','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2883,'englishlit','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2884,'government','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2885,'crk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2886,'currentaffairs','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:59:59'),(2887,'commerce','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2888,'geography','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2889,'economics','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2890,'irk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2891,'civiledu','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2892,'history','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2893,'biology','54.224.201.145',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 03:10:11','2019-04-16 03:10:17'),(2894,'mathematics','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:12:18','2019-04-16 09:12:18'),(2895,'biology','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:29:02','2019-04-16 09:29:02'),(2896,'english','41.191.104.232',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:42:38','2019-04-16 09:48:20'),(2897,'english','41.191.107.41',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:49:42','2019-04-16 10:49:42'),(2898,'english','41.191.104.94',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:52:36','2019-04-16 11:05:20'),(2899,'mathematics','41.191.104.94',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:01:04','2019-04-16 13:37:18'),(2900,'english','41.191.107.223',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:14:00','2019-04-16 11:14:00'),(2901,'english','41.191.104.243',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:01:15','2019-04-16 13:01:15'),(2902,'english','41.191.104.113',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:04:04','2019-04-22 16:45:32'),(2903,'chemistry','157.55.39.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:39:34','2019-04-16 14:39:34'),(2904,'irk','54.226.182.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:47:43','2019-04-16 14:47:43'),(2905,'english','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:32:59'),(2906,'mathematics','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:46'),(2907,'accounting','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:50'),(2908,'biology','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:08'),(2909,'chemistry','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:33'),(2910,'currentaffairs','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:17'),(2911,'history','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:26'),(2912,'english','41.191.107.232',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-16 22:12:50','2020-01-17 15:50:46'),(2913,'mathematics','41.191.107.48',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:08:33','2019-04-17 05:08:33'),(2914,'english','41.191.107.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:11:56','2019-04-17 05:21:50'),(2915,'english','41.191.104.209',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:29:28','2019-04-17 05:35:08'),(2916,'english','41.191.104.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:38:16','2019-04-17 05:43:44'),(2917,'english','41.191.104.101',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:55:22','2019-04-17 05:57:06'),(2918,'english','41.191.104.215',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:08:35','2019-04-17 08:14:14'),(2919,'english','41.191.104.229',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:15:48','2019-04-17 08:15:48'),(2920,'english','41.191.107.157',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:54:44','2019-04-17 09:04:13'),(2921,'english','41.191.104.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:09:49','2019-04-17 09:14:17'),(2922,'english','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:34'),(2923,'mathematics','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:47'),(2924,'accounting','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2925,'englishlit','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:17'),(2926,'crk','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2927,'civiledu','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2928,'history','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:43'),(2929,'english','41.191.107.158',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:17:03','2019-04-17 09:21:36'),(2930,'english','41.191.104.79',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:43:16','2019-04-17 09:52:06'),(2931,'economics','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:54:34','2019-04-17 09:54:34'),(2932,'english','41.191.107.212',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:58:06','2019-04-18 18:02:13'),(2933,'biology','41.191.107.212',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:26','2019-04-17 10:10:02'),(2934,'chemistry','41.242.60.178',3655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:43','2019-04-18 16:24:22'),(2935,'mathematics','41.242.60.178',4368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:06:02','2019-04-18 16:14:42'),(2936,'history','41.191.107.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:11:59','2019-04-17 10:17:23'),(2937,'geography','41.242.60.178',4586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:46:59','2019-04-18 15:58:23'),(2938,'biology','41.242.60.178',3792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:47:33','2019-04-18 16:20:34'),(2939,'english','41.191.104.97',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 14:41:16','2019-04-17 14:41:16'),(2940,'chemistry','105.112.120.90',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:08','2019-04-17 19:01:28'),(2941,'crk','105.112.120.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:50','2019-04-17 18:54:50'),(2942,'chemistry','107.167.107.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:06:47','2019-04-18 08:06:48'),(2943,'english','41.242.60.178',10980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:10:26','2019-04-18 15:55:34'),(2944,'mathematics','105.112.22.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:05:20','2019-04-18 11:05:20'),(2945,'crk','41.242.60.178',5752,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:17:29','2019-04-18 15:57:03'),(2946,'chemistry','207.46.13.94',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-18 11:50:50','2019-12-16 22:19:20'),(2947,'chemistry','207.46.13.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:28','2019-04-18 11:52:29'),(2948,'chemistry','207.46.13.91',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:51','2019-04-18 11:52:52'),(2949,'chemistry','207.46.13.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:53:29','2019-04-18 11:53:29'),(2950,'english','104.133.10.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 12:22:48','2019-04-18 12:22:49'),(2951,'economics','41.242.60.178',4544,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:20','2019-04-18 15:59:44'),(2952,'irk','41.242.60.178',3510,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:42','2019-04-18 16:01:01'),(2953,'civiledu','41.242.60.178',4680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:03','2019-04-18 16:02:40'),(2954,'currentaffairs','41.242.60.178',4120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:25','2019-04-18 16:29:06'),(2955,'history','41.242.60.178',4000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:46','2019-04-18 16:13:14'),(2956,'commerce','41.242.60.178',4160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:30','2019-04-18 16:16:35'),(2957,'accounting','41.242.60.178',3955,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:52','2019-04-18 16:18:32'),(2958,'physics','41.242.60.178',3529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:35:37','2019-04-18 16:22:15'),(2959,'englishlit','41.242.60.178',3287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:20','2019-04-18 16:26:08'),(2960,'government','41.242.60.178',2998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:42','2019-04-18 16:27:48'),(2961,'english','41.191.104.254',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:11:36','2019-04-18 18:05:09'),(2962,'english','41.191.104.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:14:50','2019-04-18 15:14:50'),(2963,'english','41.191.107.222',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:36:08','2019-04-18 15:37:19'),(2964,'english','41.191.107.203',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:47:57','2019-04-28 08:22:11'),(2965,'mathematics','41.191.107.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:08:54','2019-04-18 16:08:54'),(2966,'english','41.191.107.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:11:13','2019-04-18 16:11:13'),(2967,'english','18.205.17.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:14:02','2019-04-18 17:14:02'),(2968,'crk','105.112.120.55',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:31:40','2019-04-18 17:32:05'),(2969,'english','41.191.104.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:37:57','2019-04-18 17:39:42'),(2970,'history','3.87.15.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 20:46:27','2019-04-18 20:46:27'),(2971,'chemistry','54.36.150.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 00:33:38','2019-04-19 00:33:38'),(2972,'mathematics','41.191.104.212',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:14:26','2019-04-19 03:14:26'),(2973,'biology','41.191.104.123',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:26:07','2019-04-19 03:26:39'),(2974,'currentaffairs','50.17.23.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:47:16','2019-04-19 03:47:16'),(2975,'economics','54.211.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 08:17:33','2019-04-19 08:17:33'),(2976,'chemistry','105.112.53.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:25:47','2019-04-19 11:25:47'),(2977,'english','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:28','2019-04-19 11:43:28'),(2978,'mathematics','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:34','2019-04-19 11:43:35'),(2979,'chemistry','129.56.87.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:45:39','2019-04-19 11:45:39'),(2980,'english','150.70.168.140',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:52:20','2019-04-19 11:52:20'),(2981,'chemistry','45.56.148.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:08:00','2019-04-19 12:08:00'),(2982,'chemistry','197.210.29.247',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:11:16','2019-04-19 12:11:16'),(2983,'chemistry','41.203.78.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:30:23','2019-04-19 12:31:44'),(2984,'chemistry','54.36.150.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 15:16:27','2019-04-19 15:16:27'),(2985,'chemistry','197.210.226.150',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:13:39','2019-04-19 17:13:39'),(2986,'chemistry','197.210.227.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:14:17','2019-04-19 17:14:17'),(2987,'chemistry','141.0.12.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 19:46:58','2019-04-19 19:46:58'),(2988,'chemistry','105.112.37.27',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:20:05','2019-04-19 21:26:36'),(2989,'physics','105.112.37.27',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:27:16','2019-04-19 21:28:59'),(2990,'chemistry','141.0.13.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:52:32','2019-04-19 21:52:32'),(2991,'chemistry','129.205.112.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:54:09','2019-04-19 21:54:09'),(2992,'chemistry','54.36.148.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 22:05:06','2019-04-19 22:05:06'),(2993,'accounting','3.81.231.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 03:16:50','2019-04-20 03:16:50'),(2994,'chemistry','197.210.53.127',62,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:17:30','2020-05-25 11:23:46'),(2995,'chemistry','46.229.168.145',6,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:50:25','2020-02-23 12:52:02'),(2996,'physics','3.84.223.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 06:58:19','2019-04-20 06:58:19'),(2997,'chemistry','129.205.112.93',82,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 07:41:38','2019-08-22 14:35:12'),(2998,'chemistry','54.36.149.78',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 10:51:52','2019-04-20 10:51:52'),(2999,'chemistry','197.210.45.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 11:27:41','2019-04-20 11:27:41'),(3000,'chemistry','141.0.13.88',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 12:34:07','2019-09-06 19:28:17'),(3001,'chemistry','197.149.95.94',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 14:34:54','2019-04-20 14:35:18'),(3002,'chemistry','197.210.52.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:06:20','2019-04-20 15:06:53'),(3003,'chemistry','197.210.53.251',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:07:19','2019-04-20 15:08:04'),(3004,'chemistry','105.112.68.65',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 18:16:36','2019-04-20 18:17:01'),(3005,'chemistry','213.205.240.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 20:44:50','2019-04-20 20:44:50'),(3006,'biology','66.249.69.154',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 01:47:39','2019-04-21 01:47:40'),(3007,'mathematics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:24','2019-04-21 02:39:48'),(3008,'commerce','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3009,'accounting','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3010,'physics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3011,'chemistry','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3012,'government','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3013,'geography','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:49'),(3014,'irk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3015,'currentaffairs','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:39','2019-04-21 02:39:41'),(3016,'biology','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:48','2019-04-21 02:39:48'),(3017,'crk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3018,'economics','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3019,'english','54.162.77.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:51','2019-04-21 02:39:51'),(3020,'chemistry','207.46.13.23',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 06:08:10','2019-04-21 06:08:10'),(3021,'chemistry','40.77.167.30',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 07:33:49','2019-04-21 07:33:49'),(3022,'chemistry','197.210.52.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:52:14','2019-04-21 20:54:39'),(3023,'mathematics','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:06','2019-04-21 20:54:06'),(3024,'chemistry','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:30','2019-04-21 20:54:30'),(3025,'chemistry','3.95.160.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:01:30','2019-04-21 21:01:30'),(3026,'mathematics','197.210.52.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:08:15','2019-04-21 21:08:15'),(3027,'geography','18.212.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 22:48:55','2019-04-21 22:48:55'),(3028,'english','3.90.10.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 00:18:21','2019-04-22 00:18:21'),(3029,'mathematics','41.191.104.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:45:03','2019-04-22 16:45:03'),(3030,'biology','41.191.104.113',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:47:55','2019-04-22 16:47:55'),(3031,'chemistry','54.36.149.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 18:08:13','2019-04-22 18:08:13'),(3032,'economics','3.91.230.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 21:54:59','2019-04-22 21:54:59'),(3033,'english','3.92.201.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 00:59:05','2019-04-23 00:59:05'),(3034,'biology','66.249.66.158',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 01:15:09','2019-07-28 01:21:20'),(3035,'mathematics','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:10','2019-04-23 03:28:10'),(3036,'civiledu','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:12','2019-04-23 03:28:12'),(3037,'physics','18.212.208.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:29:49','2019-04-23 04:14:14'),(3038,'commerce','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:49:07','2019-04-23 03:49:07'),(3039,'crk','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:57:30','2019-04-23 03:57:30'),(3040,'history','54.159.47.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 21:59:22','2019-04-23 21:59:22'),(3041,'irk','52.204.101.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 03:42:30','2019-04-24 03:42:30'),(3042,'chemistry','207.46.13.180',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:12','2019-04-24 08:03:12'),(3043,'chemistry','207.46.13.159',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:17','2019-04-24 08:03:17'),(3044,'chemistry','207.46.13.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:22','2019-04-24 08:03:22'),(3045,'chemistry','207.46.13.87',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:28','2019-08-04 15:43:48'),(3046,'english','66.249.66.158',87,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-25 18:26:25','2020-01-23 20:32:43'),(3047,'chemistry','1.127.110.152',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 00:54:05','2019-04-26 00:54:20'),(3048,'chemistry','40.77.167.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 03:53:28','2019-04-26 03:53:28'),(3049,'currentaffairs','3.90.189.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 05:24:35','2019-04-26 05:24:35'),(3050,'chemistry','197.210.44.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 10:16:42','2019-04-26 10:16:42'),(3051,'chemistry','1.127.106.232',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:04:42','2019-04-26 12:04:42'),(3052,'physics','1.127.106.232',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:40:22','2019-04-26 12:47:18'),(3053,'chemistry','46.229.168.138',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-26 13:52:16','2020-02-26 17:26:37'),(3054,'mathematics','1.127.109.88',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:09:51','2019-04-27 00:22:30'),(3055,'commerce','1.127.109.88',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:23:12','2019-04-27 00:24:06'),(3056,'biology','1.127.109.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:47:44','2019-04-27 00:47:44'),(3057,'chemistry','40.77.167.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:58:09','2019-04-27 00:58:09'),(3058,'physics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:19'),(3059,'english','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:06'),(3060,'government','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3061,'accounting','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3062,'biology','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3063,'crk','3.89.242.31',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3064,'chemistry','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3065,'geography','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:14'),(3066,'englishlit','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3067,'economics','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3068,'irk','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3069,'currentaffairs','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3070,'history','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3071,'mathematics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:22','2019-04-27 01:11:29'),(3072,'commerce','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:31','2019-04-27 01:12:19'),(3073,'biology','100.25.216.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 02:25:13','2019-04-27 02:25:13'),(3074,'crk','3.82.139.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 06:35:55','2019-04-27 06:35:55'),(3075,'chemistry','46.229.168.154',17,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-27 07:27:19','2020-03-26 03:24:26'),(3076,'commerce','52.91.249.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 08:35:06','2019-04-27 08:35:06'),(3077,'currentaffairs','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 09:50:55','2019-04-27 09:50:55'),(3078,'chemistry','154.118.65.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:30','2019-04-27 10:57:30'),(3079,'commerce','34.228.140.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:38','2019-04-27 10:57:38'),(3080,'biology','1.127.106.17',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:45:45','2019-04-27 12:46:43'),(3081,'mathematics','1.127.106.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:47:05','2019-04-27 12:48:52'),(3082,'englishlit','52.23.198.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 13:44:10','2019-04-27 13:44:10'),(3083,'chemistry','66.249.73.80',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 21:38:40','2019-04-27 21:38:40'),(3084,'mathematics','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3085,'english','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3086,'accounting','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3087,'physics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3088,'chemistry','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3089,'biology','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3090,'government','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3091,'economics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3092,'civiledu','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3093,'insurance','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:12'),(3094,'chemistry','41.203.78.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 08:55:23','2019-04-28 08:55:37'),(3095,'chemistry','41.190.2.64',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:52:36','2019-04-28 11:56:48'),(3096,'chemistry','41.190.3.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:56:16','2019-04-28 11:56:16'),(3097,'chemistry','157.55.39.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 21:48:24','2019-04-28 21:48:24'),(3098,'chemistry','40.77.167.71',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-29 06:23:21','2019-11-07 16:42:12'),(3099,'chemistry','41.190.2.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:39:52','2019-04-29 10:39:52'),(3100,'biology','41.191.104.87',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:40:48','2019-04-29 10:40:48'),(3101,'insurance','52.204.170.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 21:28:49','2019-04-29 21:28:49'),(3102,'crk','3.85.56.1',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 22:14:35','2019-04-29 22:14:35'),(3103,'accounting','3.85.173.186',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 23:37:13','2019-04-29 23:37:13'),(3104,'chemistry','157.55.39.12',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 07:21:41','2019-06-12 00:41:53'),(3105,'commerce','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3106,'biology','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3107,'physics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3108,'government','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3109,'irk','34.224.60.217',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:24:47'),(3110,'currentaffairs','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3111,'history','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3112,'english','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3113,'crk','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3114,'economics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3115,'civiledu','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3116,'insurance','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3117,'geography','34.224.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:33:31','2019-04-30 09:33:31'),(3118,'chemistry','46.229.168.151',51,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-30 09:38:26','2019-12-01 18:07:27'),(3119,'chemistry','154.68.194.212',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 16:36:27','2019-04-30 16:37:47'),(3120,'chemistry','157.55.39.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 04:27:55','2019-05-01 04:27:55'),(3121,'chemistry','54.36.148.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 05:05:50','2019-05-01 05:05:50'),(3122,'biology','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3123,'physics','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:50'),(3124,'englishlit','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3125,'government','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3126,'civiledu','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3127,'currentaffairs','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3128,'history','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3129,'mathematics','54.226.59.135',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:23','2019-05-01 07:01:57'),(3130,'english','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:54'),(3131,'commerce','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:46'),(3132,'accounting','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3133,'irk','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3134,'geography','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:42','2019-05-01 07:01:56'),(3135,'insurance','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:58:08','2019-05-01 06:58:08'),(3136,'chemistry','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 07:01:56','2019-05-01 07:01:56'),(3137,'chemistry','197.210.45.72',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:45:40','2019-05-01 10:59:40'),(3138,'mathematics','197.210.45.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:53:54','2019-05-01 10:55:42'),(3139,'english','197.210.45.72',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:55:54','2019-05-01 10:57:36'),(3140,'biology','41.191.104.237',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 14:18:27','2019-05-01 14:18:27'),(3141,'chemistry','197.210.54.37',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:20','2019-05-02 10:53:48'),(3142,'chemistry','197.210.54.223',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:32','2019-05-02 10:47:10'),(3143,'chemistry','197.210.55.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 10:14:45','2019-05-02 10:50:02'),(3144,'chemistry','197.210.226.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:20:04','2019-05-02 11:20:04'),(3145,'chemistry','197.210.226.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:22:30','2019-05-02 11:22:30'),(3146,'chemistry','197.210.8.29',630,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:34:06','2019-05-02 12:14:01'),(3147,'chemistry','197.210.54.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 13:47:41','2019-05-02 13:48:21'),(3148,'chemistry','129.205.112.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 04:12:08','2019-05-03 04:12:09'),(3149,'chemistry','197.210.29.46',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 07:52:22','2019-05-03 08:00:45'),(3150,'chemistry','197.210.54.222',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:06:50','2019-05-03 09:26:09'),(3151,'chemistry','197.210.55.133',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:07:57','2019-05-03 09:13:11'),(3152,'chemistry','197.210.54.105',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:11:28','2019-05-03 09:28:30'),(3153,'chemistry','197.210.55.36',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:54:00','2019-05-03 08:55:53'),(3154,'mathematics','105.112.10.87',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 11:24:44','2019-05-03 11:24:44'),(3155,'chemistry','197.210.60.42',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 12:22:25','2019-05-03 13:34:02'),(3156,'mathematics','197.210.60.42',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 13:36:32','2019-05-03 13:54:05'),(3157,'mathematics','197.210.55.133',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:55:08','2019-05-04 06:23:05'),(3158,'mathematics','197.210.54.38',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:57:02','2019-05-04 06:24:02'),(3159,'mathematics','197.210.54.132',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:59:05','2019-05-04 06:07:02'),(3160,'mathematics','197.210.54.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 06:25:03','2019-05-04 06:25:03'),(3161,'chemistry','41.190.3.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 12:28:58','2019-05-04 12:28:58'),(3162,'chemistry','197.210.44.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 15:39:23','2019-05-05 15:39:23'),(3163,'chemistry','40.77.167.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 21:50:59','2019-07-20 03:21:08'),(3164,'mathematics','18.204.19.147',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3165,'physics','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3166,'accounting','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:49'),(3167,'englishlit','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3168,'economics','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3169,'irk','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3170,'insurance','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3171,'geography','18.204.19.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:44','2019-05-06 23:11:44'),(3172,'english','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:08'),(3173,'commerce','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:01'),(3174,'chemistry','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3175,'currentaffairs','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3176,'accounting','23.22.231.188',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 02:31:16','2019-05-08 02:31:16'),(3177,'insurance','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 13:09:16','2019-05-08 13:09:17'),(3178,'physics','66.249.66.158',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 14:31:06','2019-05-08 14:31:06'),(3179,'biology','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 22:48:34','2019-05-08 22:48:34'),(3180,'economics','105.112.38.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 13:52:26','2019-05-09 13:52:26'),(3181,'mathematics','3.80.87.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 18:51:06','2019-05-09 18:51:06'),(3182,'chemistry','187.85.6.94',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 20:51:54','2019-05-09 20:52:08'),(3183,'englishlit','54.196.16.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 00:29:52','2019-05-10 00:29:52'),(3184,'englishlit','105.112.106.10',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 06:29:03','2019-05-10 06:29:03'),(3185,'chemistry','129.56.111.134',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 07:46:16','2019-05-10 07:49:26'),(3186,'chemistry','129.205.112.138',591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 09:28:33','2019-05-10 11:48:10'),(3187,'chemistry','207.46.13.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 10:25:32','2019-05-10 10:25:32'),(3188,'english','129.205.112.138',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 11:48:25','2019-05-10 11:52:58'),(3189,'english','129.205.112.140',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 18:19:45','2019-05-10 18:19:45'),(3190,'chemistry','172.90.37.138',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:27:48','2019-05-13 00:36:13'),(3191,'biology','172.90.37.138',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:31:17','2019-05-11 14:31:17'),(3192,'geography','3.93.186.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 17:05:27','2019-05-11 17:05:27'),(3193,'chemistry','54.197.219.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 21:40:32','2019-05-11 21:40:32'),(3194,'english','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3195,'mathematics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3196,'commerce','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3197,'biology','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3198,'physics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3199,'economics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3200,'irk','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3201,'economics','54.164.105.120',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 01:32:51','2019-05-12 01:32:51'),(3202,'biology','66.249.64.176',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-12 05:47:32','2019-09-21 02:44:48'),(3203,'mathematics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3204,'commerce','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3205,'biology','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3206,'englishlit','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3207,'economics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3208,'civiledu','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3209,'history','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3210,'chemistry','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3211,'government','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3212,'crk','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3213,'geography','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3214,'civiledu','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3215,'currentaffairs','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3216,'history','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3217,'mathematics','3.81.224.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:05:34','2019-05-12 07:05:34'),(3218,'english','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3219,'mathematics','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:59:25'),(3220,'commerce','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:48'),(3221,'physics','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:27'),(3222,'crk','34.229.209.208',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3223,'irk','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3224,'currentaffairs','34.229.209.208',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3225,'chemistry','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:58:54'),(3226,'government','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:45:06'),(3227,'economics','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:49:05'),(3228,'biology','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:49:05'),(3229,'insurance','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:58:54'),(3230,'accounting','34.229.209.208',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:38','2019-05-12 09:58:38'),(3231,'geography','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:42','2019-05-12 09:58:54'),(3232,'civiledu','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3233,'history','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3234,'currentaffairs','54.80.195.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 10:51:10','2019-05-12 10:51:10'),(3235,'chemistry','46.229.168.131',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 23:53:27','2020-05-04 19:51:47'),(3236,'biology','54.146.12.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 01:52:08','2019-05-13 01:52:08'),(3237,'physics','3.82.108.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 03:15:59','2019-05-13 03:15:59'),(3238,'physics','54.152.180.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 06:31:46','2019-05-13 06:31:46'),(3239,'english','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 07:47:11','2019-05-13 07:47:11'),(3240,'mathematics','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 08:15:22','2019-05-13 08:15:22'),(3241,'commerce','3.84.15.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 09:46:15','2019-05-13 09:46:15'),(3242,'commerce','54.157.233.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 12:58:13','2019-05-13 12:58:13'),(3243,'irk','54.175.238.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 17:30:45','2019-05-13 17:30:45'),(3244,'economics','18.206.157.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 19:50:15','2019-05-13 19:50:15'),(3245,'accounting','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3246,'englishlit','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3247,'government','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3248,'crk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3249,'geography','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3250,'irk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3251,'currentaffairs','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3252,'economics','18.234.203.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:23:50','2019-05-14 09:23:50'),(3253,'physics','66.249.64.180',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-14 11:36:21','2019-08-24 00:09:49'),(3254,'biology','54.221.14.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 17:29:34','2019-05-14 17:29:34'),(3255,'chemistry','46.229.168.162',43,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-15 05:36:54','2020-03-22 22:42:10'),(3256,'crk','3.94.115.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 08:37:16','2019-05-15 08:37:16'),(3257,'english','54.159.102.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 10:04:02','2019-05-15 10:04:02'),(3258,'currentaffairs','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:34:44','2019-05-15 14:34:44'),(3259,'geography','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:57:11','2019-05-15 14:57:11'),(3260,'government','54.224.250.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 18:04:50','2019-05-15 18:04:50'),(3261,'government','3.84.0.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:54:43','2019-05-15 19:54:43'),(3262,'chemistry','77.88.47.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:56:40','2019-05-15 19:56:40'),(3263,'englishlit','3.84.53.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 23:23:15','2019-05-15 23:23:15'),(3264,'crk','107.20.105.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:20:12','2019-05-16 00:20:12'),(3265,'chemistry','34.228.195.54',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:22:33','2019-05-16 03:09:28'),(3266,'chemistry','40.77.167.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:07:33','2019-05-16 11:07:33'),(3267,'englishlit','52.202.251.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:24:33','2019-05-16 11:24:33'),(3268,'chemistry','5.255.250.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-16 21:12:24','2019-08-21 01:57:50'),(3269,'accounting','54.92.151.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 21:37:19','2019-05-16 21:37:19'),(3270,'chemistry','46.229.168.146',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 02:19:29','2020-04-16 08:40:54'),(3271,'chemistry','46.229.168.139',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 17:44:01','2020-05-30 04:55:22'),(3272,'commerce','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3273,'government','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3274,'crk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3275,'irk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3276,'insurance','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3277,'currentaffairs','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3278,'history','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3279,'mathematics','105.112.52.3',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 21:46:44','2019-05-17 21:46:44'),(3280,'chemistry','54.36.148.94',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-18 05:43:40','2020-05-29 00:37:58'),(3281,'chemistry','3.84.208.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 09:11:50','2019-05-18 09:11:50'),(3282,'chemistry','40.77.167.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 16:21:00','2019-05-18 16:21:00'),(3283,'accounting','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:09','2019-05-18 18:40:09'),(3284,'history','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:52','2019-05-18 18:40:52'),(3285,'mathematics','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:39'),(3286,'english','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:50'),(3287,'commerce','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:44'),(3288,'physics','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:42'),(3289,'biology','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3290,'crk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3291,'irk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3292,'currentaffairs','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3293,'economics','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3294,'history','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3295,'accounting','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:37','2019-05-18 19:44:37'),(3296,'englishlit','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:47','2019-05-18 19:44:47'),(3297,'insurance','3.80.150.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 22:44:14','2019-05-18 22:44:14'),(3298,'chemistry','157.55.39.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 04:44:12','2019-05-19 04:44:12'),(3299,'history','3.94.79.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 06:05:58','2019-05-19 06:05:58'),(3300,'chemistry','40.77.167.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 16:57:00','2019-05-19 16:57:00'),(3301,'insurance','54.163.157.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 03:05:04','2019-05-20 03:05:04'),(3302,'chemistry','157.55.39.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 13:59:47','2019-05-20 13:59:47'),(3303,'english','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3304,'mathematics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3305,'biology','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3306,'physics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3307,'crk','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3308,'economics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3309,'insurance','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3310,'english','54.91.198.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 17:32:47','2019-05-21 17:32:47'),(3311,'physics','54.145.4.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 18:22:25','2019-05-21 18:22:25'),(3312,'mathematics','54.234.10.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 02:40:52','2019-05-22 02:40:52'),(3313,'mathematics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3314,'physics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3315,'crk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3316,'geography','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3317,'irk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3318,'civiledu','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3319,'history','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3320,'chemistry','95.216.226.236',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 05:15:03','2019-05-25 05:21:26'),(3321,'government','52.55.44.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 07:55:42','2019-05-23 07:55:42'),(3322,'civiledu','54.208.169.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 10:29:28','2019-05-23 10:29:28'),(3323,'chemistry','139.78.253.195',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:06:11','2019-05-23 23:22:30'),(3324,'chemistry','3.85.143.239',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:44:40','2019-05-23 21:04:27'),(3325,'chemistry','40.77.167.134',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 23:49:56','2019-07-17 20:20:15'),(3326,'chemistry','54.36.149.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 01:52:33','2019-05-24 01:52:33'),(3327,'english','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3328,'biology','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3329,'chemistry','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3330,'englishlit','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3331,'geography','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3332,'economics','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3333,'irk','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3334,'chemistry','173.212.246.232',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 07:36:57','2019-05-24 07:37:03'),(3335,'chemistry','197.210.47.154',119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 16:46:41','2019-05-24 17:36:26'),(3336,'chemistry','185.20.6.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:01:25','2019-05-24 18:01:25'),(3337,'chemistry','197.210.54.59',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:29:11','2019-05-24 18:29:11'),(3338,'chemistry','197.210.55.73',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:36:24','2019-05-24 18:37:10'),(3339,'currentaffairs','197.210.55.73',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:38:00','2019-05-24 18:38:00'),(3340,'chemistry','197.210.227.35',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:20:02','2019-05-25 14:21:17'),(3341,'chemistry','197.210.226.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:21:41','2019-05-25 14:22:30'),(3342,'mathematics','197.210.227.35',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:23:25','2019-05-25 14:25:38'),(3343,'mathematics','197.210.226.250',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:24:57','2019-05-25 14:24:57'),(3344,'chemistry','207.46.13.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-26 03:26:44','2019-08-07 06:55:06'),(3345,'chemistry','54.36.148.190',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 05:37:38','2019-05-28 05:37:38'),(3346,'chemistry','197.253.9.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 10:08:10','2019-05-28 10:08:10'),(3347,'chemistry','105.112.41.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 21:38:58','2019-05-29 21:38:58'),(3348,'chemistry','93.158.161.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 23:17:18','2019-05-29 23:17:18'),(3349,'chemistry','62.210.202.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 07:54:02','2019-05-30 07:54:08'),(3350,'chemistry','197.210.227.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:02','2019-05-30 10:34:02'),(3351,'chemistry','197.210.226.60',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:40','2019-05-30 10:34:40'),(3352,'chemistry','100.43.85.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 19:55:06','2019-05-30 19:55:06'),(3353,'chemistry','207.46.13.20',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-31 10:40:41','2019-09-14 00:58:44'),(3354,'chemistry','141.0.13.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-31 10:57:54','2019-05-31 10:57:54'),(3355,'biology','105.112.46.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-01 12:10:54','2019-06-01 12:19:36'),(3356,'chemistry','157.55.39.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-03 17:51:53','2019-06-03 17:51:53'),(3357,'accounting','209.205.209.34',522,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 19:18:46','2020-05-29 19:55:11'),(3358,'economics','209.205.209.34',1892,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 20:32:30','2020-05-30 17:12:57'),(3359,'chemistry','157.55.39.53',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 21:15:44','2019-10-07 21:10:09'),(3360,'history','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:18:40','2019-06-05 02:18:40'),(3361,'irk','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:42:34','2019-06-05 02:42:34'),(3362,'accounting','54.234.117.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 06:15:30','2019-06-05 06:15:30'),(3363,'accounting','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:14:25','2019-06-05 08:14:25'),(3364,'geography','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:53:33','2019-06-05 08:53:33'),(3365,'accounting','3.84.113.32',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:33','2019-06-05 09:00:49'),(3366,'chemistry','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:39','2019-06-05 09:00:39'),(3367,'insurance','54.146.5.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 11:54:23','2019-06-05 11:54:23'),(3368,'chemistry','105.112.53.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 13:10:39','2019-06-05 13:12:41'),(3369,'chemistry','100.43.85.122',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-05 13:15:48','2020-03-08 10:35:22'),(3370,'chemistry','76.1.76.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 14:34:50','2019-06-05 14:35:18'),(3371,'chemistry','197.210.55.175',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:11:03','2019-06-05 16:12:43'),(3372,'chemistry','197.210.54.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:12:00','2019-06-05 16:12:00'),(3373,'mathematics','197.211.32.242',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 20:45:55','2019-06-05 20:45:56'),(3374,'currentaffairs','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:19:16','2019-06-05 23:19:16'),(3375,'insurance','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:31:01','2019-06-05 23:31:01'),(3376,'englishlit','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:36:02','2019-06-05 23:36:02'),(3377,'chemistry','97.116.149.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-07 14:42:32','2019-06-07 14:42:32'),(3378,'chemistry','207.46.13.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 02:59:43','2019-06-08 02:59:43'),(3379,'mathematics','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3380,'accounting','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3381,'biology','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3382,'chemistry','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3383,'geography','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3384,'civiledu','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3385,'currentaffairs','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3386,'chemistry','54.226.148.240',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:42:27','2019-06-08 11:42:27'),(3387,'biology','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3388,'government','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3389,'crk','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3390,'economics','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3391,'civiledu','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3392,'insurance','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3393,'currentaffairs','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3394,'chemistry','41.217.123.66',142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:01','2019-06-08 15:05:05'),(3395,'english','41.217.123.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:48','2019-06-08 13:21:48'),(3396,'chemistry','197.242.107.128',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:49:30','2019-06-08 15:55:27'),(3397,'english','197.242.107.128',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:56:31','2019-06-08 15:56:36'),(3398,'english','197.242.108.36',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 16:54:19','2019-06-08 16:57:53'),(3399,'physics','197.242.116.150',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:11:54','2019-06-08 20:49:56'),(3400,'english','197.242.116.150',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:31:40','2019-06-08 21:06:14'),(3401,'chemistry','197.242.116.150',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:36:15','2019-06-08 21:06:22'),(3402,'physics','162.213.3.221',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-09 05:09:58','2019-06-09 05:09:58'),(3403,'chemistry','105.112.23.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 09:15:53','2019-06-10 13:05:55'),(3404,'chemistry','197.149.92.146',56,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-10 12:11:23','2020-02-25 16:32:20'),(3405,'chemistry','41.75.207.170',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 12:27:15','2019-06-14 07:43:40'),(3406,'chemistry','207.46.13.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 22:01:38','2019-06-10 22:01:38'),(3407,'chemistry','40.77.167.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 08:14:51','2019-06-11 08:14:51'),(3408,'chemistry','129.56.38.156',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 21:53:28','2019-06-11 21:54:00'),(3409,'irk','34.201.166.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:03:53','2019-06-12 03:03:53'),(3410,'biology','3.94.159.33',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:45:38','2019-06-12 04:28:00'),(3411,'english','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:51:24','2019-06-12 03:51:24'),(3412,'accounting','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:52:12','2019-06-12 03:52:12'),(3413,'crk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:20:40','2019-06-12 04:20:40'),(3414,'geography','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:38:56','2019-06-12 04:38:56'),(3415,'government','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:41:50','2019-06-12 04:41:50'),(3416,'irk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:42:17','2019-06-12 04:42:17'),(3417,'physics','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:51:23','2019-06-12 04:51:23'),(3418,'english','154.118.8.161',198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:36:41','2019-06-12 14:02:53'),(3419,'chemistry','154.118.8.161',91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:39:30','2019-06-12 12:18:14'),(3420,'physics','154.118.8.161',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:40:15','2019-06-12 12:04:32'),(3421,'chemistry','54.83.120.25',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 21:54:54','2019-06-12 22:18:00'),(3422,'chemistry','3.90.108.129',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 22:47:16','2019-06-13 00:16:33'),(3423,'chemistry','46.229.168.142',84,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-13 04:36:54','2020-07-10 20:02:07'),(3424,'chemistry','41.78.172.115',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 15:09:45','2019-06-14 12:18:50'),(3425,'chemistry','105.112.106.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:18','2019-06-13 18:32:18'),(3426,'english','105.112.106.235',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:48','2019-06-13 18:32:50'),(3427,'english','41.75.207.170',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:42:12','2019-06-14 07:42:12'),(3428,'physics','41.75.207.170',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:43:30','2019-06-14 07:44:40'),(3429,'physics','66.249.83.16',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-14 08:47:03','2019-09-05 01:30:44'),(3430,'chemistry','105.112.33.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 20:32:24','2019-06-14 20:32:24'),(3431,'english','197.242.114.252',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 05:49:46','2019-06-15 06:28:24'),(3432,'chemistry','105.112.45.8',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 08:23:34','2019-06-15 08:24:00'),(3433,'english','41.217.116.6',99,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:13:31','2019-06-15 14:39:43'),(3434,'biology','18.206.190.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:27:51','2019-06-15 12:27:51'),(3435,'chemistry','3.81.65.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 13:16:11','2019-06-15 13:16:11'),(3436,'accounting','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:47','2019-06-15 14:20:47'),(3437,'english','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:58','2019-06-15 14:20:58'),(3438,'chemistry','197.210.52.46',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-15 14:26:37','2020-02-06 08:45:34'),(3439,'chemistry','197.210.53.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:27:22','2019-06-15 14:27:22'),(3440,'currentaffairs','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:46:51','2019-06-15 14:46:51'),(3441,'mathematics','34.239.126.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 15:58:44','2019-06-15 15:58:44'),(3442,'chemistry','197.210.53.178',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:40:54','2019-06-15 21:42:38'),(3443,'chemistry','197.210.52.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:42:12','2019-06-15 21:42:32'),(3444,'chemistry','46.229.168.147',51,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-15 21:50:41','2020-06-11 21:19:10'),(3445,'chemistry','197.210.53.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:20:17','2019-06-15 22:20:17'),(3446,'biology','54.237.246.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:32:27','2019-06-15 22:32:27'),(3447,'biology','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:11:58','2019-06-15 23:11:58'),(3448,'irk','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:27:36','2019-06-15 23:27:36'),(3449,'physics','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 00:17:33','2019-06-16 00:17:33'),(3450,'irk','34.228.23.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 01:44:49'),(3451,'accounting','34.228.23.109',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 02:01:41'),(3452,'chemistry','45.55.21.112',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:27:31','2019-06-16 02:28:29'),(3453,'chemistry','105.14.195.18',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:48:24','2019-06-17 01:41:38'),(3454,'physics','66.249.83.18',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-16 12:16:03','2019-09-15 16:06:04'),(3455,'englishlit','54.164.133.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 17:50:46','2019-06-16 17:50:46'),(3456,'mathematics','54.196.189.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:52'),(3457,'mathematics','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3458,'english','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3459,'englishlit','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:55','2019-06-16 19:48:55'),(3460,'chemistry','206.189.171.227',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 02:00:46','2019-06-17 02:02:05'),(3461,'chemistry','41.190.16.26',6367,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 07:08:02','2019-07-23 11:35:50'),(3462,'mathematics','3.91.71.81',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:35:54','2019-06-17 09:22:24'),(3463,'englishlit','3.91.71.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:37:04','2019-06-17 09:22:24'),(3464,'english','3.91.71.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 09:10:38','2019-06-17 09:10:38'),(3465,'mathematics','107.21.78.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 10:58:09','2019-06-17 10:58:09'),(3466,'currentaffairs','34.238.242.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 13:56:42','2019-06-17 13:56:42'),(3467,'commerce','34.227.190.206',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 21:33:57','2019-06-17 21:33:57'),(3468,'chemistry','66.249.83.16',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-18 02:33:50','2019-11-06 14:40:47'),(3469,'currentaffairs','3.91.183.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 06:29:09','2019-06-18 06:29:09'),(3470,'chemistry','66.249.69.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 07:22:19','2019-06-18 07:22:19'),(3471,'economics','41.190.16.26',4519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:08:32','2019-07-23 11:57:15'),(3472,'commerce','41.190.16.26',5932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:28','2019-07-23 11:33:05'),(3473,'english','41.190.16.26',6405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:29','2019-07-23 11:25:21'),(3474,'chemistry','100.43.90.165',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 06:10:09','2019-06-19 06:10:09'),(3475,'mathematics','41.190.16.26',1164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 10:57:58','2019-07-23 11:30:59'),(3476,'chemistry','129.56.101.165',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 17:58:38','2019-06-19 18:00:41'),(3477,'chemistry','82.145.223.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:25','2019-06-20 01:08:25'),(3478,'chemistry','41.203.78.211',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:32','2019-06-20 01:08:32'),(3479,'accounting','41.190.16.26',2791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 12:19:54','2019-07-23 11:33:51'),(3480,'biology','41.190.16.26',3586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 13:01:43','2019-07-23 11:34:35'),(3481,'biology','66.249.66.208',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-21 06:35:47','2019-10-29 04:39:15'),(3482,'mathematics','34.229.108.180',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-21 23:58:00','2019-06-21 23:58:00'),(3483,'chemistry','157.55.39.173',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-22 05:09:56','2019-06-22 05:09:56'),(3484,'chemistry','100.43.85.201',11,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 16:57:01','2019-12-08 06:55:23'),(3485,'chemistry','5.255.250.164',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 22:01:02','2019-09-08 03:42:02'),(3486,'chemistry','46.229.168.152',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-23 06:10:52','2020-05-29 19:42:11'),(3487,'chemistry','77.88.47.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 13:02:24','2019-06-23 13:02:24'),(3488,'chemistry','207.46.13.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 20:52:25','2019-06-23 20:52:25'),(3489,'physics','41.190.16.26',1049,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 08:37:20','2019-07-23 11:35:12'),(3490,'chemistry','93.158.166.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 11:27:50','2019-06-24 11:27:50'),(3491,'english','3.90.20.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 17:28:04','2019-06-24 17:28:04'),(3492,'irk','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:07:15','2019-06-24 19:07:15'),(3493,'commerce','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:10:29','2019-06-24 19:10:29'),(3494,'geography','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:24:40','2019-06-24 19:24:40'),(3495,'chemistry','207.46.13.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 21:37:18','2019-06-24 21:37:18'),(3496,'biology','52.90.179.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 22:59:08','2019-06-24 22:59:08'),(3497,'economics','3.89.60.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 00:47:23','2019-06-25 00:47:23'),(3498,'mathematics','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 04:00:29','2019-06-25 04:00:29'),(3499,'englishlit','41.190.16.26',1730,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:34','2019-07-23 11:44:00'),(3500,'government','41.190.16.26',1944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:47','2019-07-23 11:47:36'),(3501,'crk','41.190.16.26',2466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:59','2019-07-23 11:48:21'),(3502,'geography','41.190.16.26',1488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:13','2019-07-23 11:57:01'),(3503,'irk','41.190.16.26',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:46','2019-07-23 11:57:27'),(3504,'civiledu','41.190.16.26',960,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:58','2019-07-23 11:57:42'),(3505,'currentaffairs','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:26','2019-07-23 11:58:09'),(3506,'history','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:40','2019-07-23 11:58:22'),(3507,'chemistry','154.120.89.121',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 08:40:28','2019-06-25 08:55:46'),(3508,'chemistry','100.43.91.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 09:22:05','2019-06-25 09:22:05'),(3509,'chemistry','46.229.168.148',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 14:14:29','2019-08-05 06:27:37'),(3510,'chemistry','37.9.87.211',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 07:15:23','2019-06-26 07:15:23'),(3511,'chemistry','154.113.84.24',291,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-26 08:20:23','2019-11-05 14:51:24'),(3512,'biology','154.113.84.24',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:12:21','2019-06-26 14:55:23'),(3513,'english','154.113.84.24',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:13:32','2019-06-26 14:55:25'),(3514,'english','105.112.53.54',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:32:43','2019-06-26 14:23:50'),(3515,'biology','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:47','2019-06-26 14:23:47'),(3516,'physics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:51','2019-06-26 14:23:52'),(3517,'chemistry','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:53','2019-06-26 14:23:53'),(3518,'mathematics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:54','2019-06-26 14:23:54'),(3519,'economics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:56','2019-06-26 14:23:56'),(3520,'physics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:26','2019-06-26 14:55:26'),(3521,'mathematics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:28','2019-06-26 14:55:29'),(3522,'economics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:30','2019-06-26 14:55:30'),(3523,'chemistry','41.217.123.115',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:22','2019-06-26 18:34:34'),(3524,'history','41.217.123.115',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:45','2019-06-26 18:04:21'),(3525,'chemistry','207.46.13.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 18:31:26','2019-06-26 18:31:26'),(3526,'mathematics','197.210.243.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:11:39','2019-06-27 19:11:39'),(3527,'english','197.210.243.239',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:12:15','2019-06-27 19:14:45'),(3528,'economics','197.210.243.239',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:14:54','2019-06-27 19:16:28'),(3529,'chemistry','185.26.180.221',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:56:48','2019-06-27 19:56:48'),(3530,'chemistry','77.88.5.10',4,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 01:59:49','2019-09-18 15:11:44'),(3531,'chemistry','105.112.18.14',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:46','2019-06-28 03:11:47'),(3532,'biology','105.112.18.14',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:52','2019-06-28 03:13:33'),(3533,'chemistry','40.77.167.115',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 03:52:03','2020-03-19 20:45:55'),(3534,'economics','197.210.58.211',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 04:41:14','2019-06-28 04:44:00'),(3535,'chemistry','54.36.150.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 16:41:57','2019-06-28 16:41:57'),(3536,'chemistry','54.36.150.166',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 19:07:14','2019-06-28 19:07:14'),(3537,'history','154.120.95.55',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 22:43:11','2019-06-28 22:43:11'),(3538,'chemistry','66.249.64.176',131,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 23:46:36','2019-09-30 03:33:36'),(3539,'chemistry','107.3.154.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 02:57:34','2019-06-30 05:13:41'),(3540,'chemistry','40.77.167.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 05:06:27','2019-06-29 05:06:27'),(3541,'civiledu','52.207.228.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 07:20:25','2019-06-29 07:20:25'),(3542,'englishlit','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:09:53','2019-06-29 08:09:53'),(3543,'crk','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:11:50','2019-06-29 08:11:50'),(3544,'government','34.235.169.213',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:16:14','2019-06-29 16:16:14'),(3545,'insurance','54.146.66.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:57:38','2019-06-29 16:57:38'),(3546,'physics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:19:06','2019-06-29 18:19:06'),(3547,'mathematics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:23:50','2019-06-29 18:23:50'),(3548,'insurance','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:30:42','2019-06-29 18:30:42'),(3549,'crk','54.227.42.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 19:50:41','2019-06-29 19:50:41'),(3550,'government','3.82.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 20:28:23','2019-06-29 20:28:23'),(3551,'english','52.91.23.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 03:47:35','2019-06-30 03:47:35'),(3552,'mathematics','107.3.154.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 05:14:08','2019-06-30 05:14:08'),(3553,'chemistry','37.9.87.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 17:29:41','2019-06-30 17:29:41'),(3554,'chemistry','154.118.47.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 07:13:55','2019-07-01 07:14:33'),(3555,'chemistry','46.229.168.135',87,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 09:26:34','2020-01-31 22:31:52'),(3556,'english','209.205.209.34',8089,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 19:21:38','2020-05-30 17:19:39'),(3557,'chemistry','197.211.53.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 21:31:20','2019-07-01 21:31:40'),(3558,'chemistry','157.55.39.182',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 05:23:02','2019-07-02 05:23:02'),(3559,'chemistry','93.158.161.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 15:43:59','2019-07-02 15:43:59'),(3560,'history','209.205.209.34',650,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:22:26','2020-05-30 18:38:30'),(3561,'physics','209.205.209.34',1763,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:36:44','2020-05-30 15:29:21'),(3562,'chemistry','129.56.51.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 18:42:17','2019-07-02 18:42:17'),(3563,'chemistry','197.210.28.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:11:10','2019-07-02 20:11:22'),(3564,'geography','197.210.28.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:17:11','2019-07-02 20:17:11'),(3565,'biology','54.147.7.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 22:46:21','2019-07-02 22:46:21'),(3566,'biology','209.205.209.34',5018,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-03 05:37:07','2020-05-30 18:25:53'),(3567,'chemistry','64.233.172.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:09:13','2019-07-03 19:09:14'),(3568,'history','3.95.227.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:48:54','2019-07-03 19:48:54'),(3569,'chemistry','37.9.87.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 08:05:14','2019-07-04 08:05:14'),(3570,'geography','3.95.241.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 16:23:04','2019-07-04 16:23:04'),(3571,'chemistry','105.112.48.115',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 19:52:32','2019-07-04 20:12:07'),(3572,'mathematics','105.112.48.115',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:07:51','2019-07-04 20:13:22'),(3573,'physics','105.112.48.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:12:30','2019-07-04 20:12:30'),(3574,'chemistry','91.242.162.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:05:11','2019-07-06 06:05:11'),(3575,'history','18.232.141.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:40:14','2019-07-06 06:40:14'),(3576,'chemistry','154.118.37.114',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:14:49','2019-07-06 18:14:49'),(3577,'chemistry','91.242.162.3',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:41:15','2019-07-06 19:28:38'),(3578,'chemistry','91.242.162.36',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 09:39:14','2019-07-07 09:39:14'),(3579,'chemistry','197.210.65.91',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 17:22:08','2019-07-07 17:22:57'),(3580,'chemistry','141.8.143.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 19:45:26','2019-07-07 19:45:26'),(3581,'chemistry','91.242.162.25',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-07 19:49:57','2019-09-10 11:10:42'),(3582,'mathematics','129.205.113.212',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:16'),(3583,'chemistry','129.205.113.212',33,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:27'),(3584,'accounting','129.205.113.212',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:04'),(3585,'economics','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:43'),(3586,'government','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:32:17'),(3587,'commerce','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3588,'geography','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3589,'crk','129.205.113.212',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:11'),(3590,'currentaffairs','129.205.113.212',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:01','2019-07-07 22:32:40'),(3591,'englishlit','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:23','2019-07-07 22:27:11'),(3592,'physics','129.205.113.212',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:26','2019-07-07 22:32:46'),(3593,'history','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:32:41'),(3594,'irk','129.205.113.212',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3595,'civiledu','129.205.113.212',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3596,'biology','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:56','2019-07-07 22:33:24'),(3597,'insurance','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:23:58','2019-07-07 22:32:21'),(3598,'english','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:25:57','2019-07-07 22:33:06'),(3599,'chemistry','198.144.145.220',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:29:31','2019-07-07 21:29:54'),(3600,'chemistry','41.203.78.249',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 09:28:28','2019-07-08 09:31:26'),(3601,'physics','66.249.88.36',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 10:04:41','2019-07-08 10:04:42'),(3602,'mathematics','197.210.8.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 11:09:57','2019-07-08 11:09:57'),(3603,'chemistry','169.239.188.48',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-08 11:26:53','2019-08-27 13:36:26'),(3604,'english','3.85.90.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 15:56:12','2019-07-08 15:56:12'),(3605,'chemistry','105.112.66.91',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:33:56','2019-07-08 21:35:52'),(3606,'english','105.112.66.91',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:53:51','2019-07-08 21:53:51'),(3607,'commerce','209.205.209.34',1403,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:05:44'),(3608,'chemistry','209.205.209.34',3228,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:38:59'),(3609,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3610,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3611,'english','41.78.172.115',90,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 07:23:35','2019-11-27 13:09:02'),(3612,'englishlit','41.78.172.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:24:07','2019-07-09 07:24:33'),(3613,'government','41.78.172.115',105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:25:34','2019-07-16 07:09:26'),(3614,'chemistry','129.56.37.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:43:13','2019-07-09 07:43:14'),(3615,'mathematics','209.205.209.34',2378,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 08:37:56','2020-05-30 17:58:26'),(3616,'chemistry','192.151.145.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 12:04:16','2019-07-09 12:04:31'),(3617,'physics','105.112.74.109',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:45:55','2019-07-09 21:20:51'),(3618,'government','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:53:35','2019-07-09 20:53:35'),(3619,'englishlit','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:55:52','2019-07-09 20:55:52'),(3620,'english','105.112.74.109',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:56:28','2019-07-09 21:24:57'),(3621,'mathematics','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 21:10:35','2019-07-09 21:10:35'),(3622,'chemistry','91.242.162.49',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 22:37:01','2019-07-09 23:20:10'),(3623,'physics','66.249.64.29',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 02:22:25','2019-07-10 02:22:25'),(3624,'mathematics','41.78.172.115',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 08:51:07','2019-07-15 16:59:28'),(3625,'chemistry','129.56.36.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 10:15:55','2019-07-10 10:16:28'),(3626,'chemistry','91.242.162.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 18:09:11','2019-07-10 18:09:11'),(3627,'chemistry','154.160.30.70',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 19:00:58','2019-07-10 19:01:06'),(3628,'chemistry','129.205.112.207',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 23:16:02','2019-07-10 23:16:41'),(3629,'english','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3630,'mathematics','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3631,'commerce','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3632,'chemistry','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3633,'irk','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3634,'civiledu','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3635,'history','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3636,'chemistry','41.203.78.28',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:47:47','2019-07-11 11:21:52'),(3637,'english','41.203.78.28',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 11:35:10','2019-07-11 11:35:10'),(3638,'chemistry','157.55.39.101',14,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 17:52:52','2020-01-09 17:51:46'),(3639,'chemistry','66.249.88.68',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3640,'chemistry','66.249.88.65',76,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3641,'chemistry','82.145.223.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:34','2019-07-12 01:28:34'),(3642,'chemistry','129.205.112.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:40','2019-07-12 01:28:40'),(3643,'chemistry','54.162.122.174',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 08:18:20','2019-07-12 10:00:37'),(3644,'chemistry','40.77.167.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 11:56:19','2019-07-12 11:56:19'),(3645,'physics','66.102.6.44',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 18:47:05','2019-07-12 18:47:05'),(3646,'chemistry','105.112.40.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 14:34:42','2019-07-13 14:34:42'),(3647,'english','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:22:10','2019-07-13 15:22:10'),(3648,'englishlit','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:28:12','2019-07-13 15:28:12'),(3649,'currentaffairs','105.112.23.162',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 19:42:12','2019-07-13 19:42:12'),(3650,'chemistry','197.210.47.253',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 23:32:27','2019-07-13 23:32:37'),(3651,'chemistry','197.210.226.221',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-14 08:42:39','2019-07-14 08:42:39'),(3652,'chemistry','41.58.163.166',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 03:36:09','2019-07-15 03:38:30'),(3653,'chemistry','197.210.45.131',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:01:08','2019-07-15 11:02:28'),(3654,'chemistry','207.46.13.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:30:08','2019-07-15 11:30:08'),(3655,'chemistry','105.112.121.65',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 01:47:52','2019-07-16 01:54:58'),(3656,'geography','209.205.209.34',1148,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-16 04:33:29','2020-05-30 17:26:43'),(3657,'chemistry','157.55.39.75',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 22:12:07','2019-07-16 22:12:07'),(3658,'chemistry','41.223.213.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 00:56:58','2019-07-17 01:11:43'),(3659,'english','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:53:17','2019-07-17 05:53:18'),(3660,'mathematics','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:55:34','2019-07-17 05:55:34'),(3661,'government','209.205.209.34',2686,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:52:58','2020-05-30 18:38:59'),(3662,'crk','209.205.209.34',3361,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:54:29','2020-05-30 12:48:20'),(3663,'chemistry','197.242.111.36',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 08:00:14','2019-07-17 08:08:20'),(3664,'chemistry','41.203.78.33',425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 09:54:12','2019-07-17 11:26:32'),(3665,'chemistry','69.171.251.8',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:55','2019-07-17 10:23:56'),(3666,'chemistry','69.171.251.23',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3667,'chemistry','69.171.251.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3668,'englishlit','209.205.209.34',1090,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 12:39:36','2020-05-30 15:26:43'),(3669,'irk','209.205.209.34',1003,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 17:02:18','2020-05-30 18:50:40'),(3670,'chemistry','41.223.215.235',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:10:02','2019-07-17 17:11:19'),(3671,'chemistry','41.223.213.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:16:10','2019-07-17 17:16:10'),(3672,'chemistry','35.153.135.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 00:14:01','2019-07-18 00:14:01'),(3673,'chemistry','154.118.46.101',392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 03:48:26','2019-07-18 05:29:47'),(3674,'chemistry','5.255.250.162',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-18 06:37:25','2019-09-08 14:04:58'),(3675,'chemistry','154.118.61.127',1190,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 08:56:03','2019-07-18 09:20:17'),(3676,'irk','34.238.242.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:04:13','2019-07-18 09:04:13'),(3677,'english','154.118.61.127',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:09','2019-07-18 09:18:21'),(3678,'commerce','154.118.61.127',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:43','2019-07-18 09:19:05'),(3679,'accounting','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:11','2019-07-18 09:29:34'),(3680,'biology','154.118.61.127',378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:25','2019-07-18 09:19:44'),(3681,'englishlit','154.118.61.127',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:33','2019-07-18 09:30:44'),(3682,'government','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:49','2019-07-18 09:31:01'),(3683,'crk','154.118.61.127',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:17','2019-07-18 09:31:18'),(3684,'economics','154.118.61.127',584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:55','2019-07-18 09:31:56'),(3685,'civiledu','154.118.61.127',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:27:48','2019-07-18 09:27:51'),(3686,'mathematics','154.118.61.127',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:28:55','2019-07-18 09:29:06'),(3687,'physics','154.118.61.127',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:29:57','2019-07-18 09:30:06'),(3688,'geography','154.118.61.127',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:31:27','2019-07-18 09:31:38'),(3689,'chemistry','178.255.215.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 18:42:41','2019-07-18 18:42:41'),(3690,'chemistry','157.55.39.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 22:58:37','2019-07-19 04:22:47'),(3691,'chemistry','154.118.59.83',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 05:44:42','2019-07-19 06:04:52'),(3692,'chemistry','41.203.78.52',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 16:01:50','2019-07-19 16:28:25'),(3693,'chemistry','197.242.102.82',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:28:00','2019-07-20 04:29:38'),(3694,'english','197.242.102.82',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:31:50','2019-07-20 11:59:47'),(3695,'mathematics','197.242.102.82',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:48:08','2019-07-20 04:48:08'),(3696,'chemistry','40.77.167.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 06:20:29','2019-07-20 06:20:29'),(3697,'biology','197.242.102.82',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:04:42','2019-07-20 11:58:12'),(3698,'physics','152.9.196.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:47:30','2019-07-20 11:47:30'),(3699,'mathematics','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:14','2019-07-20 14:11:14'),(3700,'chemistry','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:27','2019-07-20 14:11:27'),(3701,'chemistry','207.46.13.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 21:45:31','2019-07-20 21:45:31'),(3702,'english','41.217.118.129',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 05:37:39','2019-07-21 05:37:39'),(3703,'chemistry','41.203.78.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 15:30:53','2019-07-21 15:32:05'),(3704,'chemistry','157.55.39.239',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-22 03:02:39','2020-03-31 17:07:02'),(3705,'biology','54.91.22.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 06:50:06','2019-07-22 06:50:06'),(3706,'chemistry','93.80.129.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 07:59:39','2019-07-22 07:59:39'),(3707,'mathematics','3.84.79.213',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 08:19:57','2019-07-22 08:19:58'),(3708,'chemistry','207.46.13.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 06:32:43','2019-07-23 06:32:43'),(3709,'chemistry','154.118.66.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 07:11:56','2019-07-23 07:11:56'),(3710,'chemistry','54.36.150.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 12:38:55','2019-07-23 12:38:56'),(3711,'english','154.118.66.199',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:20:16','2019-07-23 19:20:16'),(3712,'chemistry','197.210.57.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:36:14','2019-07-23 19:45:25'),(3713,'chemistry','197.210.57.16',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:38:03','2019-07-23 19:46:41'),(3714,'chemistry','197.211.57.133',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 20:29:13','2019-07-23 20:30:01'),(3715,'chemistry','54.36.150.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 00:15:09','2019-07-24 00:15:09'),(3716,'chemistry','207.46.13.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 01:42:30','2019-07-24 01:42:30'),(3717,'english','154.120.114.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 03:35:04','2019-07-24 03:35:04'),(3718,'englishlit','41.80.181.76',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 06:15:35','2019-07-25 05:43:43'),(3719,'chemistry','54.172.234.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 08:19:54','2019-07-24 08:49:47'),(3720,'chemistry','40.77.167.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 16:39:03','2019-07-25 16:39:03'),(3721,'chemistry','40.77.167.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 23:17:21','2019-07-25 23:17:21'),(3722,'insurance','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:14','2019-07-26 05:17:07'),(3723,'accounting','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:44','2019-07-26 05:17:08'),(3724,'englishlit','41.203.78.111',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:14','2019-07-26 05:17:17'),(3725,'government','41.203.78.111',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:58','2019-07-26 05:17:11'),(3726,'currentaffairs','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:26','2019-07-26 05:17:13'),(3727,'economics','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:27','2019-07-26 05:17:14'),(3728,'geography','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:29','2019-07-26 05:17:16'),(3729,'english','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:36','2019-07-26 05:17:19'),(3730,'chemistry','66.249.64.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 15:13:58','2019-07-26 15:13:58'),(3731,'chemistry','207.46.13.115',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-27 00:45:02','2020-01-23 09:22:32'),(3732,'chemistry','157.55.39.89',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 07:32:50','2019-07-27 07:32:50'),(3733,'chemistry','46.229.168.137',45,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-07-27 09:18:32','2020-07-05 12:08:49'),(3734,'mathematics','3.85.206.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 10:07:21','2019-07-27 10:09:00'),(3735,'english','154.118.28.124',72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 12:49:22','2019-07-28 06:55:02'),(3736,'chemistry','40.77.167.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 15:09:18','2019-07-28 15:09:18'),(3737,'chemistry','201.186.162.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 17:45:36','2019-07-28 17:45:37'),(3738,'chemistry','80.248.10.224',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:34:33','2019-07-29 00:37:02'),(3739,'physics','80.248.10.224',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:35:39','2019-07-29 00:35:39'),(3740,'biology','154.118.28.124',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 09:57:14','2019-07-29 09:57:14'),(3741,'english','41.203.78.138',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 16:14:46','2019-07-29 16:14:46'),(3742,'chemistry','54.36.149.43',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-29 16:22:54','2020-05-29 00:45:16'),(3743,'insurance','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:39','2019-07-30 02:31:46'),(3744,'accounting','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:43','2019-07-30 02:31:31'),(3745,'englishlit','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:46','2019-07-30 02:31:23'),(3746,'government','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:49','2019-07-30 02:31:29'),(3747,'currentaffairs','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:51','2019-07-30 02:31:19'),(3748,'economics','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:53','2019-07-30 02:31:42'),(3749,'geography','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:56','2019-07-30 02:31:40'),(3750,'english','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:01','2019-07-30 02:31:25'),(3751,'mathematics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:04','2019-07-30 02:31:26'),(3752,'commerce','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:06','2019-07-30 02:31:28'),(3753,'biology','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:19','2019-07-30 02:31:32'),(3754,'physics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:22','2019-07-30 02:31:34'),(3755,'chemistry','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:24','2019-07-30 02:31:35'),(3756,'crk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:28','2019-07-30 02:31:37'),(3757,'history','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:30','2019-07-30 02:31:38'),(3758,'irk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:49','2019-07-30 02:31:43'),(3759,'civiledu','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:52','2019-07-30 02:31:44'),(3760,'insurance','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:01','2019-07-30 03:25:41'),(3761,'accounting','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3762,'englishlit','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:33'),(3763,'government','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3764,'currentaffairs','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:30'),(3765,'economics','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:39'),(3766,'geography','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:04','2019-07-30 03:25:39'),(3767,'english','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:05','2019-07-30 03:25:33'),(3768,'mathematics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3769,'commerce','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3770,'biology','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3771,'physics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3772,'chemistry','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:37'),(3773,'crk','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:38'),(3774,'history','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:10','2019-07-30 03:25:38'),(3775,'irk','198.23.156.170',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:11','2019-07-30 03:25:40'),(3776,'civiledu','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:12','2019-07-30 03:25:40'),(3777,'chemistry','54.36.148.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 12:20:11','2019-07-30 12:20:11'),(3778,'history','34.229.51.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 14:05:01','2019-07-30 14:05:01'),(3779,'english','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3780,'commerce','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3781,'chemistry','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3782,'englishlit','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3783,'government','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3784,'crk','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3785,'insurance','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3786,'chemistry','93.158.161.52',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 13:53:11','2019-07-31 13:53:11'),(3787,'chemistry','95.70.149.106',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 17:40:54','2019-07-31 17:40:58'),(3788,'chemistry','197.210.52.110',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-31 23:43:35','2020-05-25 11:22:19'),(3789,'physics','197.210.52.34',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 23:44:25','2019-07-31 23:44:25'),(3790,'chemistry','129.205.113.242',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 11:01:44','2019-08-01 11:38:22'),(3791,'chemistry','46.229.168.136',5,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-01 13:52:01','2020-03-24 23:22:11'),(3792,'chemistry','207.46.13.109',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 15:09:54','2019-08-01 15:09:54'),(3793,'chemistry','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:06:12','2019-08-01 17:06:12'),(3794,'english','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:07:32','2019-08-01 17:07:32'),(3795,'crk','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:17:03','2019-08-01 17:17:04'),(3796,'mathematics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3797,'accounting','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3798,'physics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3799,'chemistry','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3800,'englishlit','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3801,'crk','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3802,'currentaffairs','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3803,'chemistry','85.104.168.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 06:18:15','2019-08-02 06:18:15'),(3804,'chemistry','102.67.6.4',86,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-02 11:56:48','2020-02-06 09:19:26'),(3805,'chemistry','41.203.78.141',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 17:46:29','2019-08-02 17:50:14'),(3806,'physics','141.0.13.86',225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 19:55:06','2019-08-02 20:20:39'),(3807,'chemistry','54.89.107.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 12:30:12','2019-08-03 12:30:12'),(3808,'chemistry','40.77.167.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 14:46:31','2019-08-03 14:46:31'),(3809,'chemistry','197.210.62.39',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 15:09:21','2019-08-03 15:11:54'),(3810,'chemistry','41.190.3.29',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:05:32','2019-08-03 20:06:34'),(3811,'chemistry','157.55.39.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:11:00','2019-08-03 20:11:00'),(3812,'chemistry','105.112.112.6',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 00:43:46','2019-08-04 00:43:46'),(3813,'chemistry','41.190.31.100',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 14:53:51','2019-08-04 14:54:18'),(3814,'chemistry','129.18.141.135',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:26:00','2019-08-04 21:27:04'),(3815,'chemistry','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:29:51','2019-08-04 21:29:51'),(3816,'chemistry','24.59.53.207',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:30:40','2019-08-04 21:31:48'),(3817,'chemistry','73.251.19.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:32:47','2019-08-05 19:48:27'),(3818,'chemistry','54.36.150.27',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 04:34:37','2020-04-20 23:49:30'),(3819,'englishlit','105.112.16.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:00:40','2019-08-05 08:00:40'),(3820,'chemistry','41.215.245.118',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:34:13','2019-08-05 21:13:05'),(3821,'mathematics','41.215.245.118',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:03:37','2019-08-05 21:14:43'),(3822,'chemistry','54.36.150.94',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:51:17','2019-08-05 09:51:17'),(3823,'chemistry','108.5.104.122',121,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 11:40:26','2019-08-10 00:14:27'),(3824,'chemistry','172.58.231.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 11:41:16','2019-08-05 11:41:16'),(3825,'chemistry','105.112.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 16:00:47','2019-08-05 16:00:47'),(3826,'mathematics','3.208.18.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 18:34:25','2019-08-05 18:34:25'),(3827,'chemistry','51.75.58.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-06 06:04:58','2019-08-06 06:04:58'),(3828,'english','105.112.46.183',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 17:24:18','2019-08-06 20:33:07'),(3829,'chemistry','157.55.39.189',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 20:45:44','2019-08-29 20:50:04'),(3830,'chemistry','154.120.111.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:02:33','2019-08-06 21:02:33'),(3831,'chemistry','41.184.168.168',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:47:59','2019-08-07 07:40:56'),(3832,'chemistry','76.169.69.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:59:50','2019-08-06 22:00:41'),(3833,'chemistry','197.210.28.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 22:09:16','2019-08-06 22:09:16'),(3834,'chemistry','197.242.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:24:27','2019-08-07 05:24:27'),(3835,'chemistry','54.162.105.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:45:21','2019-08-07 05:45:21'),(3836,'chemistry','105.112.99.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:37:02','2019-08-07 07:37:02'),(3837,'chemistry','197.255.3.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:53:01','2019-08-07 07:53:01'),(3838,'chemistry','105.112.66.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:07:50','2019-08-07 08:07:50'),(3839,'chemistry','197.210.10.11',99,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:28:59','2019-08-07 08:32:24'),(3840,'mathematics','197.210.10.11',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:32:47','2019-08-07 08:32:50'),(3841,'chemistry','102.67.3.4',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:36:49','2019-08-07 08:58:38'),(3842,'chemistry','41.164.52.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:03:24','2019-08-07 10:03:24'),(3843,'chemistry','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:05:52','2019-08-07 10:05:52'),(3844,'mathematics','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:06:42','2019-08-07 10:06:42'),(3845,'chemistry','197.149.90.214',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:24:50','2019-08-07 10:26:08'),(3846,'chemistry','41.203.73.88',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:39:15','2019-08-07 11:39:55'),(3847,'physics','209.136.56.4',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:54:06','2019-08-12 23:34:33'),(3848,'chemistry','197.242.98.242',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:04:40','2019-08-07 12:08:12'),(3849,'chemistry','66.249.83.192',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:30:34','2020-01-09 11:42:25'),(3850,'chemistry','41.58.96.12',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 14:11:55','2019-08-07 14:12:42'),(3851,'chemistry','197.210.65.148',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 18:36:06','2019-08-07 18:36:06'),(3852,'economics','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:15','2019-08-08 06:27:15'),(3853,'commerce','197.210.226.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:24','2019-08-08 06:27:24'),(3854,'commerce','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:29:02','2019-08-08 06:29:02'),(3855,'chemistry','196.6.204.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 08:52:03','2019-08-08 08:52:36'),(3856,'chemistry','105.112.112.43',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 13:28:20','2019-08-08 13:28:58'),(3857,'chemistry','197.210.45.222',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 23:36:48','2019-08-08 23:37:30'),(3858,'chemistry','207.46.13.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 05:43:38','2019-08-09 05:43:38'),(3859,'chemistry','197.210.44.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 08:23:41','2019-08-09 08:23:41'),(3860,'chemistry','107.167.108.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 13:55:03','2019-08-09 13:55:03'),(3861,'chemistry','141.0.12.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:36:14','2019-08-09 14:40:11'),(3862,'english','141.0.12.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:40:26','2019-08-09 14:40:26'),(3863,'chemistry','154.113.86.202',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 15:44:28','2019-08-09 15:45:32'),(3864,'english','54.196.180.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 19:46:19','2019-08-09 19:46:19'),(3865,'chemistry','41.190.31.199',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:16:32','2019-08-09 22:00:42'),(3866,'mathematics','41.190.31.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:19:49','2019-08-09 21:19:49'),(3867,'crk','41.190.31.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:38:51','2019-08-09 21:38:54'),(3868,'chemistry','129.205.113.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 05:01:10','2019-08-10 05:01:50'),(3869,'chemistry','41.217.117.119',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 06:33:30','2019-08-10 06:33:30'),(3870,'currentaffairs','54.85.115.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 10:57:06','2019-08-10 10:57:06'),(3871,'history','18.206.174.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 13:08:50','2019-08-10 13:08:50'),(3872,'chemistry','100.43.81.123',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 14:14:16','2019-08-10 14:14:17'),(3873,'english','184.72.210.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 04:30:40','2019-08-11 04:30:40'),(3874,'chemistry','66.249.88.116',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:14:03','2019-08-11 14:14:03'),(3875,'chemistry','157.55.39.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:28:36','2019-08-11 14:28:36'),(3876,'insurance','3.88.255.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 17:15:20','2019-08-11 17:15:20'),(3877,'english','197.242.117.204',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 21:39:05','2019-08-11 21:40:36'),(3878,'chemistry','207.46.13.52',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 04:20:20','2019-08-12 04:20:20'),(3879,'economics','34.227.176.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 20:07:33','2019-08-12 20:07:33'),(3880,'chemistry','105.112.16.68',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 08:45:00','2019-08-13 08:45:03'),(3881,'chemistry','46.229.168.141',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 22:26:44','2019-09-04 10:48:38'),(3882,'chemistry','34.204.200.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:43:45','2019-08-14 03:43:46'),(3883,'chemistry','18.205.192.78',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:52:28','2019-08-14 04:56:47'),(3884,'biology','54.162.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 12:09:34','2019-08-14 12:09:34'),(3885,'chemistry','154.120.99.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 15:57:20','2019-08-14 16:01:54'),(3886,'chemistry','105.112.98.5',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 00:49:21','2019-08-15 01:14:50'),(3887,'chemistry','197.210.61.7',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 15:41:08','2019-08-15 15:41:09'),(3888,'mathematics','41.203.78.198',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:01:08','2019-08-16 05:59:18'),(3889,'chemistry','207.46.13.149',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:44:55','2019-08-15 18:44:58'),(3890,'chemistry','207.46.13.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 19:29:33','2019-08-15 19:29:33'),(3891,'physics','41.203.78.198',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 06:16:07','2019-08-16 06:17:30'),(3892,'commerce','154.118.43.180',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 11:29:52','2019-08-16 11:29:52'),(3893,'accounting','54.198.77.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 15:23:17','2019-08-16 15:23:17'),(3894,'mathematics','197.242.99.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:04:35','2019-08-17 03:06:16'),(3895,'english','197.242.99.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:06:56','2019-08-17 03:06:56'),(3896,'chemistry','207.46.13.1',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 14:03:29','2019-08-17 14:03:30'),(3897,'crk','105.112.42.138',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 16:15:38','2019-08-17 16:15:41'),(3898,'chemistry','129.205.112.252',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:23:17','2019-08-17 22:29:43'),(3899,'english','129.205.112.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:27:47','2019-08-17 22:27:47'),(3900,'chemistry','197.242.101.185',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 13:44:15','2019-08-18 13:45:05'),(3901,'chemistry','18.232.124.77',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 14:54:17','2019-08-18 15:09:41'),(3902,'english','82.145.222.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:13:30','2019-08-18 20:13:30'),(3903,'physics','82.145.222.187',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:29','2019-08-18 20:14:41'),(3904,'biology','82.145.222.187',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:57','2019-08-18 20:18:29'),(3905,'chemistry','82.145.222.187',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:17:25','2019-08-18 20:20:03'),(3906,'chemistry','157.55.39.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 08:32:02','2019-08-19 08:32:02'),(3907,'chemistry','154.118.15.197',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 11:05:07','2019-08-19 11:07:21'),(3908,'chemistry','154.118.25.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 13:15:15','2019-08-19 13:15:15'),(3909,'chemistry','35.242.171.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 15:59:15','2019-08-19 15:59:20'),(3910,'chemistry','40.77.167.133',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 20:09:27','2019-08-19 20:09:27'),(3911,'chemistry','154.118.17.37',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 07:44:43','2019-08-20 07:44:57'),(3912,'chemistry','154.113.84.131',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 08:32:47','2019-08-20 08:33:28'),(3913,'mathematics','197.210.29.72',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 10:20:40','2019-08-20 10:21:02'),(3914,'chemistry','154.113.84.148',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 15:22:38','2019-08-20 15:24:56'),(3915,'chemistry','169.159.87.27',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 21:11:10','2019-08-20 21:11:12'),(3916,'physics','66.249.88.71',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-21 12:32:59','2019-08-21 12:33:01'),(3917,'englishlit','3.81.145.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 08:13:22','2019-08-22 08:13:22'),(3918,'chemistry','105.112.39.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 13:11:13','2019-08-22 13:14:10'),(3919,'biology','129.205.112.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:29:46','2019-08-22 14:29:46'),(3920,'mathematics','129.205.112.93',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:30:42','2019-08-22 14:32:55'),(3921,'english','129.205.112.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:36:50','2019-08-22 14:36:53'),(3922,'chemistry','41.184.168.107',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:19:24','2019-09-06 17:21:30'),(3923,'chemistry','41.58.210.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:22:34','2019-08-22 19:22:34'),(3924,'accounting','34.227.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:52:08','2019-08-22 19:52:08'),(3925,'chemistry','157.55.39.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 21:25:26','2019-08-22 21:25:26'),(3926,'chemistry','129.205.112.83',485,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 10:26:23','2019-08-23 10:47:40'),(3927,'english','197.242.102.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 14:25:28','2019-08-23 14:25:28'),(3928,'chemistry','207.46.13.154',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:07:03','2019-11-18 02:00:21'),(3929,'english','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:19','2019-08-23 20:31:22'),(3930,'geography','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:51','2019-08-23 20:31:54'),(3931,'physics','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:33:18','2019-08-23 20:33:21'),(3932,'government','129.205.112.109',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:34:13','2019-08-23 20:35:30'),(3933,'chemistry','129.205.112.109',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:37:45','2019-08-23 20:40:50'),(3934,'chemistry','40.77.167.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 09:58:33','2019-08-24 09:58:33'),(3935,'biology','197.210.62.41',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 10:11:54','2019-08-24 10:11:56'),(3936,'english','3.92.165.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 02:48:10','2019-08-26 02:48:10'),(3937,'chemistry','129.205.112.98',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 14:07:19','2019-08-27 09:07:12'),(3938,'englishlit','41.80.80.75',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:38:33','2019-08-26 16:38:36'),(3939,'mathematics','129.205.112.98',368,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:54:38','2019-08-27 18:32:30'),(3940,'physics','197.210.64.64',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 05:43:46','2019-08-27 05:43:48'),(3941,'chemistry','66.102.8.114',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 12:39:36','2019-08-27 12:39:38'),(3942,'chemistry','169.239.188.14',185,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 13:39:29','2019-08-27 13:43:17'),(3943,'mathematics','107.22.87.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:02:33','2019-08-28 05:02:33'),(3944,'chemistry','129.205.112.99',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:04:37','2019-08-28 12:15:39'),(3945,'chemistry','3.87.39.253',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 06:57:54','2019-08-28 06:57:55'),(3946,'physics','41.203.78.236',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 10:23:20','2019-08-29 07:46:26'),(3947,'english','129.205.112.99',15637,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 11:37:09','2019-09-01 08:17:00'),(3948,'mathematics','129.205.112.99',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:19:14','2019-09-01 05:59:18'),(3949,'commerce','129.205.112.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:22:31','2019-08-28 12:22:34'),(3950,'chemistry','207.46.13.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-29 11:21:14','2019-08-29 11:21:14'),(3951,'chemistry','40.77.167.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-30 05:57:46','2019-08-30 05:57:46'),(3952,'chemistry','66.249.83.64',25,'',NULL,'',NULL,NULL,NULL,'','','2019-08-30 11:25:31','2019-08-30 11:25:32'),(3953,'chemistry','157.55.39.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-31 02:12:18','2019-08-31 02:12:18'),(3954,'chemistry','197.210.8.81',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 08:57:11','2019-08-31 08:59:21'),(3955,'mathematics','18.212.178.244',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 09:18:17','2019-08-31 09:18:17'),(3956,'chemistry','197.255.172.32',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 11:43:45','2019-08-31 11:43:45'),(3957,'accounting','129.205.112.99',5,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 16:55:58','2019-08-31 16:55:59'),(3958,'biology','129.205.112.99',45,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 16:56:17','2019-08-31 17:39:24'),(3959,'chemistry','105.112.46.156',8,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 17:20:01','2019-08-31 17:20:21'),(3960,'chemistry','41.190.3.191',48,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 19:13:59','2019-08-31 19:17:54'),(3961,'chemistry','35.192.166.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-01 13:20:44','2019-09-01 13:20:44'),(3962,'chemistry','154.66.37.174',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 06:43:23','2019-09-02 06:43:56'),(3963,'chemistry','197.253.59.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 07:37:32','2019-09-02 07:37:32'),(3964,'english','105.112.66.6',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 11:05:53','2019-09-02 11:05:53'),(3965,'chemistry','105.112.75.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 15:41:26','2019-09-02 15:41:56'),(3966,'chemistry','54.36.150.178',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 02:18:15','2019-09-03 02:18:18'),(3967,'physics','197.210.28.217',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 05:11:07','2019-09-03 05:11:09'),(3968,'mathematics','3.88.69.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 11:24:03','2019-09-03 11:24:03'),(3969,'chemistry','197.210.226.232',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:32','2019-09-03 13:34:57'),(3970,'chemistry','197.210.227.69',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:56','2019-09-03 13:27:38'),(3971,'chemistry','197.210.226.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:25:32','2019-09-03 13:25:32'),(3972,'chemistry','197.210.227.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:33:08','2019-09-03 13:33:08'),(3973,'chemistry','197.210.226.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:36:44','2019-09-03 13:36:47'),(3974,'chemistry','54.36.150.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 23:05:24','2019-09-03 23:05:24'),(3975,'mathematics','54.221.189.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-04 18:49:49','2019-09-04 18:49:49'),(3976,'history','3.90.177.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:03:49','2019-09-05 06:03:49'),(3977,'mathematics','3.90.177.176',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:04:44','2019-09-05 06:04:44'),(3978,'accounting','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3979,'geography','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3980,'english','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:23'),(3981,'economics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3982,'mathematics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3983,'civiledu','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3984,'insurance','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3985,'chemistry','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3986,'currentaffairs','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3987,'englishlit','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3988,'history','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3989,'government','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3990,'biology','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3991,'chemistry','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3992,'englishlit','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3993,'geography','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3994,'economics','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3995,'irk','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3996,'civiledu','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3997,'chemistry','41.217.84.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:16:54','2019-09-05 16:16:54'),(3998,'chemistry','3.84.149.56',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:15','2019-09-05 16:17:16'),(3999,'chemistry','47.206.102.2',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:40','2019-09-05 16:18:25'),(4000,'chemistry','91.242.162.70',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:21','2019-09-06 12:27:22'),(4001,'mathematics','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:51','2019-09-07 12:05:12'),(4002,'chemistry','91.242.162.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:23:18','2019-09-06 15:33:50'),(4003,'mathematics','41.184.168.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:42:47','2019-09-06 15:42:47'),(4004,'mathematics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4005,'biology','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4006,'physics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4007,'chemistry','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4008,'englishlit','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4009,'economics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4010,'insurance','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4011,'english','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 05:35:36','2019-09-07 13:17:14'),(4012,'chemistry','129.205.112.115',71,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 08:22:52','2019-09-07 08:36:32'),(4013,'chemistry','154.118.11.75',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 19:29:07','2019-09-07 19:36:47'),(4014,'chemistry','41.190.3.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 21:38:56','2019-09-07 21:38:57'),(4015,'biology','154.118.37.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 05:09:59','2019-09-08 05:09:59'),(4016,'chemistry','77.88.5.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 09:42:20','2019-09-08 09:42:20'),(4017,'chemistry','207.46.13.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 14:03:52','2019-09-09 14:03:52'),(4018,'mathematics','54.209.217.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 18:28:02','2019-09-09 18:28:02'),(4019,'biology','54.226.212.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 01:20:10','2019-09-10 01:20:10'),(4020,'english','197.242.108.80',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 06:32:36','2019-09-10 06:32:36'),(4021,'economics','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:35:23','2019-09-10 16:35:24'),(4022,'english','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:36:16','2019-09-10 16:36:16'),(4023,'commerce','3.89.252.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 18:39:39','2019-09-10 18:39:39'),(4024,'chemistry','91.242.162.73',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:08:33','2019-10-24 12:14:06'),(4025,'physics','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4026,'chemistry','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4027,'englishlit','54.91.126.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:32:57'),(4028,'government','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4029,'crk','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4030,'civiledu','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4031,'history','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:09'),(4032,'chemistry','207.46.13.197',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:55:18','2019-09-10 19:55:18'),(4033,'chemistry','197.210.29.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 20:02:55','2019-09-10 20:02:55'),(4034,'accounting','18.234.153.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 22:03:30','2019-09-10 22:03:30'),(4035,'chemistry','110.44.120.215',208,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 01:19:49','2019-09-12 06:46:02'),(4036,'mathematics','110.44.120.215',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:04','2019-09-16 16:31:02'),(4037,'accounting','110.44.120.215',124,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:48','2019-09-13 05:09:09'),(4038,'physics','110.44.120.215',1180,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:45:48','2019-09-20 12:59:42'),(4039,'biology','110.44.120.215',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:53:41','2019-09-17 03:03:55'),(4040,'biology','110.44.120.206',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:08','2019-09-11 15:42:20'),(4041,'mathematics','110.44.120.206',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:16','2019-09-11 10:51:39'),(4042,'chemistry','110.44.120.206',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:48','2019-09-11 15:41:47'),(4043,'chemistry','129.56.92.16',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 13:46:20','2019-09-11 13:46:52'),(4044,'physics','66.249.64.176',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:39:39','2019-09-21 02:46:11'),(4045,'biology','66.249.64.178',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:49:48','2019-09-30 03:47:58'),(4046,'accounting','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:50:53','2019-09-11 16:50:55'),(4047,'mathematics','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:18','2019-09-11 16:51:19'),(4048,'chemistry','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:23','2019-09-11 16:51:24'),(4049,'biology','108.177.7.94',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:26','2019-09-11 16:54:23'),(4050,'biology','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:43','2019-09-11 16:51:45'),(4051,'chemistry','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:46','2019-09-11 16:51:47'),(4052,'physics','108.177.7.91',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:16','2019-09-11 16:53:33'),(4053,'accounting','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:49','2019-09-11 16:52:51'),(4054,'physics','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:54:16','2019-09-11 16:54:18'),(4055,'accounting','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:57:33','2019-09-11 16:57:34'),(4056,'chemistry','66.249.64.180',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:58:44','2019-09-17 21:57:53'),(4057,'accounting','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:07:30','2019-09-11 17:07:32'),(4058,'biology','104.132.0.101',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:23','2019-09-11 17:08:58'),(4059,'chemistry','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:50','2019-09-11 17:08:51'),(4060,'chemistry','34.236.170.225',11,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 17:38:25','2019-09-11 19:05:17'),(4061,'mathematics','35.243.2.1',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:39:59','2019-09-11 19:40:00'),(4062,'physics','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:09','2019-09-11 19:40:10'),(4063,'chemistry','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:40','2019-09-11 19:40:42'),(4064,'biology','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:53','2019-09-11 19:41:54'),(4065,'mathematics','35.243.2.2',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:59','2019-09-11 19:42:01'),(4066,'accounting','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:42:51','2019-09-11 19:42:53'),(4067,'mathematics','35.234.176.172',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:37:08','2019-09-11 22:37:10'),(4068,'physics','35.234.176.173',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:37:39','2019-09-11 22:37:41'),(4069,'biology','35.234.176.171',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:38:37','2019-09-11 22:38:39'),(4070,'chemistry','35.234.176.171',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:41:31','2019-09-11 22:41:33'),(4071,'currentaffairs','35.174.166.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 23:13:34','2019-09-11 23:13:34'),(4072,'mathematics','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:42','2019-09-12 00:09:58'),(4073,'biology','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:50','2019-09-12 00:09:22'),(4074,'accounting','108.177.6.58',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:09:14','2019-09-12 00:09:16'),(4075,'physics','108.177.6.58',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:11:56','2019-09-12 00:12:18'),(4076,'biology','103.10.28.200',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 01:50:53','2019-09-12 01:51:21'),(4077,'chemistry','216.10.240.90',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 03:25:50','2019-09-12 03:25:51'),(4078,'physics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:44:02','2019-09-12 06:45:27'),(4079,'chemistry','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:01','2019-09-12 06:46:03'),(4080,'biology','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:36','2019-09-12 06:46:38'),(4081,'mathematics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:48','2019-09-12 06:47:16'),(4082,'chemistry','41.184.239.224',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:00:01','2019-09-12 08:01:26'),(4083,'physics','121.220.192.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:50:39','2019-09-12 08:50:40'),(4084,'biology','1.144.106.173',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:20:55','2019-09-12 09:20:57'),(4085,'accounting','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:35:59','2019-09-12 09:36:01'),(4086,'mathematics','202.51.76.34',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:37:29','2019-09-13 05:07:49'),(4087,'mathematics','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:14','2019-09-12 09:55:15'),(4088,'biology','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:34','2019-09-12 09:55:36'),(4089,'mathematics','49.195.140.246',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:57','2019-09-12 09:55:59'),(4090,'biology','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:14:20','2019-09-12 10:14:21'),(4091,'mathematics','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:17:03','2019-09-12 10:17:04'),(4092,'physics','175.37.109.166',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:04:59','2019-09-12 11:09:15'),(4093,'mathematics','14.200.41.186',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:06:08','2019-09-12 11:06:10'),(4094,'mathematics','211.30.203.218',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:09:11','2019-09-12 11:09:13'),(4095,'physics','120.17.45.139',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 11:11:29','2019-09-12 11:11:31'),(4096,'chemistry','120.17.45.139',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:12:10','2019-09-12 11:12:11'),(4097,'biology','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:14:53','2019-09-12 11:14:55'),(4098,'mathematics','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:01','2019-09-12 11:17:03'),(4099,'chemistry','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:06','2019-09-12 11:17:09'),(4100,'mathematics','124.180.202.128',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:23:33','2019-09-12 11:23:35'),(4101,'mathematics','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:26:22','2019-09-12 11:26:24'),(4102,'biology','175.37.109.166',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:46:31','2019-09-12 11:47:01'),(4103,'biology','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:48:41','2019-09-12 11:48:43'),(4104,'mathematics','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:49:54','2019-09-12 11:49:56'),(4105,'biology','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:43:46','2019-09-12 14:43:47'),(4106,'physics','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:49:17','2019-09-12 14:49:19'),(4107,'biology','27.34.20.106',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:02','2019-09-12 14:54:04'),(4108,'chemistry','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:14','2019-09-12 14:54:16'),(4109,'physics','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:26','2019-09-12 14:54:28'),(4110,'physics','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:58:24','2019-09-12 14:58:26'),(4111,'biology','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:59:49','2019-09-12 14:59:51'),(4112,'chemistry','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:00:06','2019-09-12 15:00:08'),(4113,'biology','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:01:16','2019-09-12 15:01:18'),(4114,'physics','110.44.127.178',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:02','2019-09-12 15:29:03'),(4115,'physics','27.34.17.16',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:40','2019-09-12 15:30:08'),(4116,'physics','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:50:55','2019-09-12 15:50:57'),(4117,'biology','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:51:13','2019-09-12 15:51:15'),(4118,'chemistry','91.242.162.72',3,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 18:05:30','2019-09-12 18:20:23'),(4119,'chemistry','49.195.156.140',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:06:39','2019-09-12 19:06:41'),(4120,'biology','202.51.88.114',60,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:10:30','2019-09-12 19:16:01'),(4121,'biology','49.181.243.120',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 20:37:28','2019-09-12 20:37:58'),(4122,'chemistry','91.242.162.45',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:30:11','2019-09-12 23:30:11'),(4123,'physics','220.240.160.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:51:25','2019-09-12 23:51:26'),(4124,'chemistry','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:57:36','2019-09-12 23:57:37'),(4125,'biology','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:59:54','2019-09-12 23:59:56'),(4126,'mathematics','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 00:00:25','2019-09-13 00:00:27'),(4127,'biology','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:33:57','2019-09-13 01:33:58'),(4128,'mathematics','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:37:24','2019-09-13 01:37:26'),(4129,'physics','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:15:58','2019-09-13 02:15:59'),(4130,'accounting','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:16:14','2019-09-13 02:16:16'),(4131,'biology','27.34.17.16',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:07:26','2019-09-13 03:07:28'),(4132,'chemistry','141.8.132.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:10:44','2019-09-13 03:10:44'),(4133,'physics','1.144.105.17',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 04:06:29','2019-09-13 04:06:31'),(4134,'biology','125.254.44.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:00:53','2019-09-13 05:00:54'),(4135,'physics','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:08:24','2019-09-13 05:08:25'),(4136,'mathematics','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4137,'biology','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:15'),(4138,'government','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4139,'english','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4140,'economics','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4141,'insurance','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4142,'accounting','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4143,'currentaffairs','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4144,'chemistry','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4145,'history','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:17'),(4146,'englishlit','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4147,'physics','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:06','2019-09-13 06:03:07'),(4148,'physics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:16','2019-09-13 06:03:17'),(4149,'mathematics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:42','2019-09-13 06:03:43'),(4150,'chemistry','27.34.48.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:06:07','2019-09-13 06:09:13'),(4151,'biology','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:09:23','2019-09-13 06:09:24'),(4152,'commerce','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:50','2019-09-13 06:20:51'),(4153,'physics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4154,'government','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4155,'economics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4156,'irk','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4157,'currentaffairs','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4158,'history','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4159,'biology','175.35.106.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:16:45','2019-09-13 07:16:46'),(4160,'physics','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:29:45','2019-09-13 07:29:47'),(4161,'chemistry','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:31:28','2019-09-13 07:31:29'),(4162,'mathematics','27.34.70.161',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:32:08','2019-09-13 07:32:44'),(4163,'physics','1.41.245.225',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:14:08','2019-09-13 08:14:09'),(4164,'biology','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:40:42','2019-09-13 08:40:44'),(4165,'mathematics','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:45:42','2019-09-13 08:45:43'),(4166,'chemistry','110.150.214.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 09:32:23','2019-09-13 09:32:24'),(4167,'accounting','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:12','2019-09-13 11:01:14'),(4168,'mathematics','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:24','2019-09-13 11:01:25'),(4169,'physics','66.249.64.166',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:33:40','2019-09-13 14:33:41'),(4170,'accounting','66.249.64.180',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:39:00','2019-09-25 11:14:55'),(4171,'chemistry','220.244.110.40',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:15:30','2019-09-13 23:15:32'),(4172,'mathematics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:18','2019-09-13 23:46:20'),(4173,'physics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:45','2019-09-13 23:46:47'),(4174,'mathematics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:03:10','2019-09-14 01:03:12'),(4175,'physics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:04:12','2019-09-14 01:04:14'),(4176,'mathematics','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:11:39','2019-09-14 03:11:40'),(4177,'biology','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:12:05','2019-09-14 03:12:06'),(4178,'mathematics','3.92.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 06:23:58','2019-09-14 06:23:58'),(4179,'physics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:10:22','2019-09-14 08:10:23'),(4180,'mathematics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:11:18','2019-09-14 08:11:20'),(4181,'mathematics','211.27.254.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:53:20','2019-09-14 08:53:22'),(4182,'chemistry','41.86.6.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:55:03','2019-09-14 08:55:59'),(4183,'mathematics','66.249.66.212',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:03:19','2019-10-01 13:36:10'),(4184,'accounting','66.249.66.212',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:11:53','2019-10-10 06:34:01'),(4185,'biology','66.249.66.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:13:24','2019-10-09 01:01:54'),(4186,'chemistry','66.249.66.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:14:57','2019-10-29 04:35:40'),(4187,'physics','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:15:49','2019-10-10 06:52:10'),(4188,'chemistry','207.46.13.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:21:21','2019-09-14 13:21:21'),(4189,'chemistry','129.56.90.193',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:23:39','2019-09-14 13:25:42'),(4190,'chemistry','185.20.6.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:12:04','2019-09-14 14:12:04'),(4191,'chemistry','54.91.254.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:13:12','2019-09-14 14:13:12'),(4192,'chemistry','3.95.179.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:15:08','2019-09-14 14:15:08'),(4193,'mathematics','54.167.105.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 23:41:30','2019-09-14 23:41:30'),(4194,'physics','110.44.120.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 02:50:34','2019-09-15 02:50:36'),(4195,'chemistry','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:14:22','2019-09-15 04:15:04'),(4196,'biology','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:15:02','2019-09-15 04:15:37'),(4197,'accounting','113.199.203.102',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:16:18','2019-09-15 04:16:20'),(4198,'chemistry','35.172.100.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 07:24:14','2019-09-15 07:24:28'),(4199,'mathematics','54.221.170.133',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 13:27:05','2019-09-15 13:59:54'),(4200,'crk','54.221.170.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 14:16:11','2019-09-15 14:16:11'),(4201,'chemistry','54.36.148.104',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 18:59:31','2019-09-15 18:59:31'),(4202,'mathematics','34.207.243.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 19:16:51','2019-09-15 19:16:51'),(4203,'mathematics','47.30.248.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 04:20:11','2019-09-16 04:20:13'),(4204,'mathematics','49.195.29.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 06:12:19','2019-09-16 06:12:21'),(4205,'chemistry','157.51.26.93',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:06:39','2019-09-16 11:06:40'),(4206,'mathematics','41.86.152.178',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:19:00','2019-09-16 11:19:01'),(4207,'english','105.112.45.87',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 12:37:29','2019-09-16 12:37:56'),(4208,'mathematics','154.120.94.26',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 13:28:56','2019-09-16 13:28:57'),(4209,'physics','157.51.31.138',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-16 14:16:36','2019-09-16 14:17:04'),(4210,'chemistry','157.51.31.138',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 14:17:05','2019-09-16 14:17:32'),(4211,'physics','49.126.207.89',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:02:39','2019-09-16 16:12:06'),(4212,'chemistry','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:12:11','2019-09-16 16:12:12'),(4213,'biology','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:16:05','2019-09-16 16:16:06'),(4214,'chemistry','197.210.44.251',16,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:25:35','2019-09-16 16:28:49'),(4215,'chemistry','197.210.62.38',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:26','2019-09-16 16:29:26'),(4216,'chemistry','197.210.45.121',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:50','2019-09-16 16:29:50'),(4217,'mathematics','3.95.23.58',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:40:13','2019-09-16 16:40:13'),(4218,'chemistry','27.34.70.118',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:54:28','2019-09-17 01:54:29'),(4219,'physics','27.34.70.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:55:46','2019-09-17 01:57:21'),(4220,'physics','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:44:39','2019-09-17 06:44:41'),(4221,'biology','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:48:22','2019-09-17 06:48:23'),(4222,'physics','113.199.202.174',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:16:31','2019-09-17 07:16:33'),(4223,'biology','43.245.95.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:55:04','2019-09-17 07:57:24'),(4224,'chemistry','197.210.141.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 08:18:07','2019-09-17 08:18:07'),(4225,'physics','27.34.48.127',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-17 13:39:15','2019-09-17 13:39:17'),(4226,'chemistry','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:39:29','2019-09-17 13:39:30'),(4227,'biology','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:42:20','2019-09-17 13:42:22'),(4228,'chemistry','41.190.2.129',92,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:53:44','2019-09-18 12:00:00'),(4229,'mathematics','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:56:08','2019-09-18 11:06:40'),(4230,'mathematics','34.230.32.127',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 19:04:41','2019-09-17 19:04:41'),(4231,'crk','105.112.52.75',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 20:33:57','2019-09-17 20:34:00'),(4232,'mathematics','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 21:53:45','2019-09-17 21:53:47'),(4233,'biology','66.249.64.180',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-17 22:13:17','2019-09-25 11:22:46'),(4234,'chemistry','91.242.162.56',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 00:16:39','2019-09-18 00:16:39'),(4235,'physics','49.181.255.251',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:11:15','2019-09-18 02:11:47'),(4236,'chemistry','49.181.255.251',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:12:23','2019-09-18 02:12:24'),(4237,'physics','110.44.127.203',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:21:31','2019-09-18 02:21:32'),(4238,'chemistry','40.77.167.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 03:04:48','2019-09-18 03:04:48'),(4239,'chemistry','49.180.134.8',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 04:19:37','2019-09-18 04:19:38'),(4240,'government','41.190.2.129',658,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-18 04:37:51','2019-09-18 11:14:19'),(4241,'english','35.233.231.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 05:38:18','2019-09-18 05:38:18'),(4242,'english','41.190.2.129',77,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:17:49','2019-09-18 09:59:30'),(4243,'biology','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:26:52','2019-09-18 11:11:13'),(4244,'chemistry','197.210.226.214',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 10:04:09','2019-09-18 10:04:09'),(4245,'english','188.29.164.19',28,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:23:26','2019-09-18 11:25:54'),(4246,'commerce','41.190.2.129',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:28:08','2019-09-18 11:56:09'),(4247,'chemistry','66.249.83.20',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 11:46:32','2019-11-06 14:40:23'),(4248,'english','105.112.41.25',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:49:33','2019-09-18 11:49:33'),(4249,'chemistry','105.112.38.22',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:07:36','2019-09-18 12:07:36'),(4250,'english','105.112.38.22',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:09:51','2019-09-18 12:11:42'),(4251,'chemistry','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:22','2019-09-18 12:49:23'),(4252,'chemistry','157.55.39.178',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:23','2019-09-18 12:49:23'),(4253,'biology','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:38','2019-09-18 12:49:38'),(4254,'english','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:50:03','2019-09-18 12:50:03'),(4255,'chemistry','197.210.65.154',21,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:11:00','2019-09-18 14:14:29'),(4256,'government','197.210.65.154',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:15:12','2019-09-18 14:17:53'),(4257,'government','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:22:02','2019-09-18 14:22:03'),(4258,'chemistry','41.190.2.121',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:24:39','2019-09-18 14:24:39'),(4259,'commerce','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:25:26','2019-09-18 14:25:26'),(4260,'english','197.149.125.34',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:29:51','2019-09-18 15:03:08'),(4261,'economics','105.112.29.230',10,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:08:25','2019-09-18 17:49:38'),(4262,'commerce','41.190.30.252',119,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 15:20:43','2019-09-19 15:57:17'),(4263,'commerce','105.112.29.213',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:29:15','2019-09-18 15:29:15'),(4264,'government','41.190.30.252',245,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:07:56','2019-09-20 12:55:06'),(4265,'english','105.112.41.242',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:10:59','2019-09-18 16:12:46'),(4266,'english','41.190.30.252',301,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:30:17','2019-09-20 12:50:25'),(4267,'mathematics','41.190.2.209',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:45:19','2019-09-18 16:45:20'),(4268,'chemistry','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:05','2019-09-19 15:57:38'),(4269,'mathematics','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:20','2019-09-19 15:57:59'),(4270,'biology','41.190.30.252',602,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:26:22','2019-09-20 12:54:08'),(4271,'chemistry','150.70.167.82',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 18:31:12','2019-09-26 00:57:44'),(4272,'chemistry','40.77.167.63',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 01:09:50','2020-01-08 07:44:01'),(4273,'mathematics','41.217.116.241',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 03:47:25','2019-09-19 03:54:42'),(4274,'government','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:20:51','2019-09-19 07:20:52'),(4275,'biology','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:22:21','2019-09-19 07:22:22'),(4276,'mathematics','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4277,'chemistry','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4278,'englishlit','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4279,'crk','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4280,'geography','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4281,'currentaffairs','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4282,'history','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:55'),(4283,'english','45.222.100.155',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:45:54','2019-09-19 08:47:36'),(4284,'biology','27.34.25.22',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 10:47:54','2019-09-19 10:47:56'),(4285,'physics','27.34.70.49',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 12:46:48','2019-09-19 13:37:35'),(4286,'chemistry','41.138.163.117',264,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 16:24:08','2019-09-20 08:36:52'),(4287,'physics','27.34.70.50',260,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-19 17:28:13','2019-09-19 18:55:53'),(4288,'chemistry','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 17:50:14','2019-09-19 17:50:15'),(4289,'biology','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 18:55:47','2019-09-19 18:55:48'),(4290,'chemistry','54.36.148.175',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 20:34:08','2019-09-19 20:34:08'),(4291,'english','41.217.116.241',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 05:04:08','2019-09-20 05:04:56'),(4292,'biology','110.44.125.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:16:05','2019-09-20 13:16:59'),(4293,'physics','103.95.16.239',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:20','2019-09-20 13:33:21'),(4294,'physics','103.94.222.78',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:40','2019-09-20 13:33:42'),(4295,'physics','103.58.145.248',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:47:59','2019-09-20 14:02:35'),(4296,'chemistry','103.58.145.248',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:49:11','2019-09-20 13:49:13'),(4297,'physics','27.34.26.105',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:02','2019-09-20 13:51:04'),(4298,'biology','27.34.26.105',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:12','2019-09-20 13:53:00'),(4299,'biology','103.58.145.248',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:49','2019-09-20 13:58:53'),(4300,'physics','27.34.70.223',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 14:15:53','2019-09-20 14:15:54'),(4301,'biology','27.34.104.212',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:24','2019-09-20 15:10:26'),(4302,'biology','27.34.69.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:35','2019-09-20 15:10:36'),(4303,'physics','43.228.192.35',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:33:07','2019-09-27 00:26:30'),(4304,'mathematics','43.228.192.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:34:07','2019-09-20 15:36:30'),(4305,'accounting','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:08','2019-09-20 18:55:09'),(4306,'englishlit','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4307,'government','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4308,'geography','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4309,'irk','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4310,'civiledu','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4311,'history','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4312,'biology','103.95.16.185',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 19:02:51','2019-09-20 19:02:52'),(4313,'chemistry','93.158.166.147',2,'','NG','','Lagos',NULL,NULL,'','','2019-09-20 20:08:32','2019-10-24 17:47:31'),(4314,'physics','27.34.25.249',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-20 22:44:30','2019-09-20 22:44:31'),(4315,'biology','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:44:50','2019-09-20 22:44:51'),(4316,'chemistry','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:46:10','2019-09-20 22:46:12'),(4317,'chemistry','35.173.47.43',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 00:22:18','2019-09-21 00:22:22'),(4318,'mathematics','66.249.64.178',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 02:47:16','2019-09-21 02:47:18'),(4319,'chemistry','3.81.148.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:13:38','2019-09-21 05:13:46'),(4320,'chemistry','154.120.114.154',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:17:33','2019-09-21 06:18:06'),(4321,'chemistry','54.89.142.238',106,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 08:00:06','2019-09-21 08:09:05'),(4322,'chemistry','91.242.162.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 11:12:15','2019-09-21 11:12:15'),(4323,'commerce','41.190.31.67',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:09:29','2019-09-21 19:06:59'),(4324,'government','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:11:30','2019-09-21 15:11:31'),(4325,'mathematics','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:12:57','2019-09-21 15:12:58'),(4326,'chemistry','105.112.53.39',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 18:24:08','2019-09-21 18:28:24'),(4327,'english','197.210.44.0',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 20:50:21','2019-09-21 20:50:21'),(4328,'mathematics','18.234.75.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 21:50:19','2019-09-21 21:50:19'),(4329,'mathematics','34.207.140.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 22:36:26','2019-09-21 22:36:26'),(4330,'biology','27.34.68.44',36,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:18'),(4331,'biology','27.34.68.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:16'),(4332,'chemistry','34.228.212.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 07:07:50','2019-09-22 07:07:50'),(4333,'chemistry','91.242.162.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 09:55:37','2019-09-22 09:55:37'),(4334,'commerce','41.190.3.118',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 10:30:11','2019-09-22 10:32:00'),(4335,'mathematics','35.175.238.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 22:29:35','2019-09-22 22:29:35'),(4336,'biology','103.232.154.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 01:46:19','2019-09-23 01:46:20'),(4337,'biology','27.34.104.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 02:47:02','2019-09-23 02:47:03'),(4338,'mathematics','105.112.27.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 15:37:49','2019-09-23 15:37:50'),(4339,'chemistry','154.113.86.210',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:52:59','2019-09-24 08:58:26'),(4340,'mathematics','154.113.86.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:58:49','2019-09-24 08:58:49'),(4341,'mathematics','154.113.86.202',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 09:42:16','2019-09-24 09:42:41'),(4342,'currentaffairs','54.173.205.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 12:53:57','2019-09-24 12:53:57'),(4343,'english','105.112.52.225',21,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:28:15','2019-09-24 16:49:26'),(4344,'biology','105.112.52.225',663,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:30:16','2019-09-24 14:54:54'),(4345,'chemistry','105.112.52.225',22,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:32:07','2019-09-24 15:00:30'),(4346,'currentaffairs','105.112.52.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 13:34:54','2019-09-24 13:34:54'),(4347,'commerce','105.112.52.225',598,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:30:24','2019-09-24 14:57:46'),(4348,'accounting','105.112.52.225',341,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:33:47','2019-09-24 14:59:43'),(4349,'physics','105.112.52.225',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:55:31','2019-09-24 15:02:06'),(4350,'mathematics','105.112.52.225',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:58:41','2019-09-24 14:58:42'),(4351,'english','41.190.31.234',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 15:47:34','2019-09-24 15:47:34'),(4352,'physics','54.198.206.199',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 21:19:56','2019-09-24 21:19:56'),(4353,'government','52.5.110.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 02:40:21','2019-09-25 02:40:21'),(4354,'biology','105.112.41.33',286,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 03:16:07','2019-09-25 12:05:04'),(4355,'english','154.118.20.99',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 04:50:44','2019-09-25 04:58:16'),(4356,'physics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 05:48:27','2019-09-25 05:48:29'),(4357,'mathematics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 07:16:11','2019-09-25 07:16:13'),(4358,'accounting','105.112.41.33',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:01','2019-09-25 10:01:11'),(4359,'mathematics','105.112.41.33',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:41','2019-09-25 09:14:48'),(4360,'physics','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:25:33','2019-09-25 11:45:37'),(4361,'chemistry','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:53:46','2019-09-25 08:53:47'),(4362,'government','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:02:04','2019-09-25 09:02:04'),(4363,'commerce','105.112.41.33',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:12:58','2019-09-25 09:46:15'),(4364,'english','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:24:47','2019-09-25 09:45:39'),(4365,'history','54.92.191.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 16:07:48','2019-09-25 16:07:48'),(4366,'biology','154.118.42.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 21:32:52','2019-09-25 21:32:53'),(4367,'chemistry','91.242.162.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 03:32:45','2019-09-26 03:54:55'),(4368,'english','154.118.17.103',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 07:55:26','2019-09-26 07:58:00'),(4369,'chemistry','37.9.87.217',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 08:32:29','2019-09-28 02:46:55'),(4370,'civiledu','105.112.44.193',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:35:16','2019-09-26 09:59:45'),(4371,'insurance','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:22','2019-09-26 09:59:23'),(4372,'currentaffairs','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:32','2019-09-26 09:59:32'),(4373,'chemistry','105.112.44.193',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:04:54','2019-09-26 11:38:07'),(4374,'biology','105.112.44.193',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:20','2019-09-26 19:16:16'),(4375,'englishlit','105.112.44.193',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:28','2019-09-26 11:34:05'),(4376,'physics','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:10:00','2019-09-26 11:29:36'),(4377,'accounting','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:14:27','2019-09-26 10:17:13'),(4378,'irk','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:33:54','2019-09-26 10:33:54'),(4379,'government','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:01:08','2019-09-26 11:01:09'),(4380,'commerce','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:28:09','2019-09-26 11:28:10'),(4381,'chemistry','157.55.39.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 18:38:53','2019-11-24 22:31:16'),(4382,'chemistry','154.118.37.164',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:42:25','2019-09-26 21:43:27'),(4383,'mathematics','154.118.37.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:43:52','2019-09-26 21:43:52'),(4384,'government','52.73.45.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 00:37:59','2019-09-27 00:37:59'),(4385,'irk','54.175.103.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 05:05:42','2019-09-27 05:05:42'),(4386,'chemistry','36.99.136.130',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4387,'chemistry','111.7.100.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4388,'chemistry','111.7.100.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:44','2019-10-09 11:27:44'),(4389,'physics','49.244.242.12',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:00:55','2019-09-27 12:00:56'),(4390,'chemistry','157.55.39.74',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:45:44','2019-09-27 12:45:44'),(4391,'english','197.210.54.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 17:55:01','2019-09-27 17:55:01'),(4392,'economics','54.234.192.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 00:10:36','2019-09-28 00:10:36'),(4393,'englishlit','54.91.218.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 02:43:56','2019-09-28 02:43:56'),(4394,'english','154.120.93.57',595,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:40:25','2019-10-01 11:59:48'),(4395,'biology','154.120.93.57',225,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:57:15','2019-09-28 16:09:59'),(4396,'chemistry','105.112.23.210',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:27:45','2019-09-28 11:29:58'),(4397,'physics','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:20','2019-09-28 11:55:21'),(4398,'accounting','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:43','2019-09-28 11:55:45'),(4399,'englishlit','54.172.49.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 15:59:20','2019-09-28 15:59:20'),(4400,'chemistry','154.120.93.57',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 16:06:01','2019-09-28 16:08:44'),(4401,'biology','171.76.250.218',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 18:56:35','2019-09-28 18:58:46'),(4402,'mathematics','105.112.11.104',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 20:48:14','2019-09-28 20:48:14'),(4403,'mathematics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:28'),(4404,'biology','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:29'),(4405,'physics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4406,'chemistry','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4407,'crk','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4408,'economics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4409,'civiledu','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4410,'civiledu','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 23:37:51','2019-09-28 23:37:51'),(4411,'chemistry','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 00:03:54','2019-09-29 00:03:54'),(4412,'physics','54.224.133.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:24:13','2019-09-29 01:52:53'),(4413,'english','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4414,'mathematics','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4415,'accounting','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4416,'crk','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4417,'civiledu','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:54'),(4418,'insurance','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:54','2019-09-29 01:52:54'),(4419,'physics','3.95.189.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 02:51:59','2019-09-29 02:51:59'),(4420,'chemistry','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 06:16:54','2019-09-29 06:16:56'),(4421,'physics','93.71.107.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:18','2019-09-29 07:40:10'),(4422,'chemistry','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:31','2019-09-29 07:39:32'),(4423,'biology','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:40:23','2019-09-29 07:40:25'),(4424,'mathematics','154.120.93.57',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:15:50','2019-09-29 18:43:31'),(4425,'commerce','154.120.93.57',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:31:37','2019-09-29 18:37:10'),(4426,'chemistry','5.255.250.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 10:22:17','2019-10-15 18:07:00'),(4427,'chemistry','107.167.107.151',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:05','2019-09-29 13:44:39'),(4428,'chemistry','105.112.113.181',90,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:22','2019-09-29 13:42:00'),(4429,'mathematics','105.112.113.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:35:38','2019-09-29 13:35:38'),(4430,'chemistry','36.252.98.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:43:36','2019-09-29 13:43:38'),(4431,'chemistry','82.145.220.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 18:07:39','2019-09-29 18:07:47'),(4432,'chemistry','129.56.100.60',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:15:36','2019-09-30 09:16:57'),(4433,'english','129.56.100.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:16:16','2019-09-30 09:16:25'),(4434,'government','41.190.2.44',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:13:45','2019-09-30 14:15:39'),(4435,'biology','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:04','2019-09-30 13:57:15'),(4436,'mathematics','41.190.2.44',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:57','2019-09-30 14:29:55'),(4437,'chemistry','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:43:01','2019-09-30 17:46:58'),(4438,'english','41.190.2.44',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:45:04','2019-09-30 17:49:27'),(4439,'commerce','41.190.2.44',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:54:47','2019-09-30 18:56:36'),(4440,'history','54.147.150.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 15:44:23','2019-09-30 15:44:23'),(4441,'government','41.58.215.64',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:08:17','2019-09-30 18:08:17'),(4442,'mathematics','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:30:32','2019-09-30 18:30:33'),(4443,'government','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:31:38','2019-09-30 18:31:38'),(4444,'biology','27.33.202.67',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 00:15:27','2019-10-01 00:15:29'),(4445,'chemistry','197.210.63.23',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 06:59:39','2019-10-01 07:17:32'),(4446,'physics','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:29:40','2019-10-26 17:47:17'),(4447,'biology','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:39:21','2019-10-12 01:46:00'),(4448,'chemistry','197.210.246.222',930,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 14:56:07','2019-10-08 18:45:58'),(4449,'chemistry','196.220.144.2',702,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 15:04:34','2019-10-06 18:10:34'),(4450,'physics','171.76.168.198',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 20:07:42','2019-10-01 20:07:43'),(4451,'english','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4452,'commerce','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4453,'chemistry','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4454,'economics','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4455,'insurance','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4456,'currentaffairs','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4457,'history','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:35'),(4458,'english','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4459,'commerce','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4460,'englishlit','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4461,'government','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4462,'crk','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4463,'insurance','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4464,'currentaffairs','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:34'),(4465,'english','154.118.21.211',125,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 07:40:32','2019-10-02 08:32:13'),(4466,'chemistry','41.184.176.252',1053,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 10:36:18','2020-01-27 12:19:42'),(4467,'accounting','54.84.164.37',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 12:49:33','2019-10-02 12:49:33'),(4468,'chemistry','3.87.61.43',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-02 13:16:54','2019-10-02 13:16:57'),(4469,'english','197.210.246.222',520,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:48:04','2019-10-08 18:55:26'),(4470,'mathematics','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:50:53','2019-10-02 19:50:56'),(4471,'history','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:52:48','2019-10-02 19:52:51'),(4472,'english','196.220.144.2',291,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:15:37','2019-10-06 20:24:53'),(4473,'mathematics','196.220.144.2',1403,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:35:07','2019-10-06 18:58:12'),(4474,'physics','196.220.144.2',960,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:39:30','2019-10-06 19:09:01'),(4475,'economics','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:50:04','2019-10-08 18:48:36'),(4476,'biology','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:52:35','2019-10-08 18:56:29'),(4477,'commerce','197.210.246.222',320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:56:17','2019-10-02 20:58:19'),(4478,'accounting','197.210.246.222',760,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:58:36','2019-10-08 18:48:07'),(4479,'chemistry','100.43.90.108',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 03:16:03','2019-10-04 02:08:43'),(4480,'physics','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:07','2019-10-03 05:18:08'),(4481,'chemistry','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:34','2019-10-03 05:18:36'),(4482,'english','154.120.87.191',165,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 06:04:34','2019-10-03 16:10:48'),(4483,'english','35.210.215.17',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 07:46:05','2019-10-03 07:46:05'),(4484,'chemistry','5.255.250.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 09:44:47','2019-10-03 09:44:47'),(4485,'chemistry','105.112.41.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 10:51:00','2019-10-03 10:51:26'),(4486,'physics','54.242.236.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 13:11:23','2019-10-03 13:11:23'),(4487,'chemistry','207.46.13.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 16:53:40','2019-10-03 16:53:40'),(4488,'currentaffairs','3.82.243.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 21:55:12','2019-10-03 21:55:12'),(4489,'english','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 05:55:09','2019-10-04 06:29:52'),(4490,'englishlit','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:24:38','2019-10-04 06:29:57'),(4491,'insurance','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:29:57','2019-10-04 06:32:40'),(4492,'government','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:15','2019-10-04 06:33:46'),(4493,'currentaffairs','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:33','2019-10-04 06:32:04'),(4494,'crk','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:31:19','2019-10-04 06:33:25'),(4495,'commerce','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:32:20','2019-10-04 06:33:41'),(4496,'english','41.217.46.141',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 07:54:54','2019-10-04 09:02:54'),(4497,'government','3.85.89.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 09:20:47','2019-10-04 09:20:47'),(4498,'mathematics','3.87.186.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 11:42:15','2019-10-04 11:42:15'),(4499,'english','197.210.44.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:52:50','2019-10-04 14:55:58'),(4500,'mathematics','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:55:40','2019-10-04 14:55:40'),(4501,'chemistry','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:01:20','2019-10-04 15:01:20'),(4502,'biology','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:10:50','2019-10-04 15:10:51'),(4503,'englishlit','196.220.144.2',1080,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-04 21:36:39','2019-10-06 19:21:44'),(4504,'government','196.220.144.2',1001,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:40:51','2019-10-06 19:06:34'),(4505,'geography','196.220.144.2',1320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:43:47','2019-10-06 19:15:16'),(4506,'civiledu','196.220.144.2',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:48:25','2019-10-04 21:51:04'),(4507,'history','52.206.150.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 23:32:16','2019-10-04 23:32:16'),(4508,'physics','119.160.67.57',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 03:40:07','2019-10-05 03:40:08'),(4509,'english','41.217.100.83',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 05:04:25','2019-10-05 06:01:53'),(4510,'chemistry','54.36.149.48',47,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-05 06:27:28','2020-05-06 15:23:56'),(4511,'irk','52.205.10.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 13:25:19','2019-10-05 13:25:19'),(4512,'english','154.118.67.81',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 18:02:59','2019-10-05 20:13:49'),(4513,'physics','110.44.115.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 02:22:30','2019-10-06 02:22:31'),(4514,'mathematics','105.112.17.47',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 05:36:53','2019-10-06 05:37:17'),(4515,'english','41.217.97.111',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:14:35','2019-10-06 11:53:33'),(4516,'government','54.224.0.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:26:54','2019-10-06 06:26:54'),(4517,'irk','54.243.12.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 11:38:30','2019-10-06 11:38:30'),(4518,'economics','196.220.144.2',521,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-06 18:16:49','2019-10-06 19:02:58'),(4519,'history','174.129.83.246',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 18:59:36','2019-10-06 18:59:36'),(4520,'accounting','196.220.144.2',280,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 19:24:55','2019-10-06 19:26:22'),(4521,'english','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:32','2019-10-07 02:07:33'),(4522,'mathematics','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4523,'physics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4524,'englishlit','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4525,'crk','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4526,'economics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4527,'civiledu','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4528,'commerce','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4529,'accounting','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4530,'geography','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4531,'irk','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4532,'economics','18.204.201.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 07:02:49','2019-10-07 07:02:49'),(4533,'english','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4534,'biology','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4535,'englishlit','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4536,'crk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4537,'geography','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4538,'economics','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:11'),(4539,'irk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4540,'insurance','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4541,'currentaffairs','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4542,'history','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4543,'chemistry','40.77.167.166',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 14:48:22','2020-04-16 19:24:46'),(4544,'english','154.120.92.245',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:16:45','2019-10-08 08:28:43'),(4545,'chemistry','207.46.13.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:29:00','2019-10-08 08:29:00'),(4546,'chemistry','197.210.60.68',198,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 13:13:26','2019-10-08 13:25:10'),(4547,'chemistry','91.242.162.77',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 17:35:58','2019-10-08 18:04:36'),(4548,'englishlit','197.210.246.222',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-08 18:46:58','2019-10-08 18:47:31'),(4549,'biology','196.220.144.2',80,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:06:19','2019-10-08 19:06:44'),(4550,'commerce','196.220.144.2',240,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:07:20','2019-10-08 19:08:52'),(4551,'chemistry','66.249.66.208',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 00:58:25','2019-10-26 17:44:22'),(4552,'mathematics','66.249.66.208',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 01:11:04','2019-10-26 17:53:47'),(4553,'chemistry','34.229.149.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 04:15:06','2019-10-09 04:15:06'),(4554,'commerce','54.242.23.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 06:59:31','2019-10-09 06:59:31'),(4555,'chemistry','36.99.136.139',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:44'),(4556,'chemistry','36.99.136.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:43'),(4557,'chemistry','54.36.150.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 12:06:00','2019-10-09 12:06:00'),(4558,'chemistry','35.175.120.211',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 02:34:06','2019-10-10 04:07:28'),(4559,'insurance','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:18','2019-11-12 01:51:04'),(4560,'accounting','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:22','2019-11-12 01:51:08'),(4561,'englishlit','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:25','2019-11-12 01:51:13'),(4562,'government','198.187.29.38',1680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:30','2019-11-12 01:51:18'),(4563,'currentaffairs','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:34','2019-11-12 01:51:24'),(4564,'economics','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:38','2019-11-12 01:51:29'),(4565,'geography','198.187.29.38',1760,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:43','2019-11-12 01:51:33'),(4566,'english','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:50','2019-11-12 01:51:37'),(4567,'mathematics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:54','2019-11-12 01:51:41'),(4568,'commerce','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:58','2019-11-12 01:51:45'),(4569,'biology','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:09','2019-11-12 01:51:48'),(4570,'physics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:13','2019-11-12 01:51:52'),(4571,'chemistry','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:17','2019-11-12 01:51:56'),(4572,'crk','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:20','2019-11-12 01:52:00'),(4573,'history','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:24','2019-11-12 01:52:04'),(4574,'irk','198.187.29.38',810,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:35','2019-11-12 01:52:07'),(4575,'civiledu','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:38','2019-11-12 01:52:11'),(4576,'english','54.147.174.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-11 01:20:30','2019-10-11 01:20:30'),(4577,'chemistry','105.112.51.58',49,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 09:52:44','2019-10-11 09:54:21'),(4578,'chemistry','182.140.244.74',11,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 11:22:18','2019-10-11 11:22:28'),(4579,'mathematics','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4580,'accounting','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4581,'biology','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4582,'government','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4583,'crk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4584,'geography','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4585,'irk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4586,'insurance','54.224.74.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 00:50:18','2019-10-12 00:50:18'),(4587,'mathematics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:33:21','2019-10-12 01:33:22'),(4588,'physics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:39:23','2019-10-12 01:39:25'),(4589,'accounting','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:48:29','2019-10-26 17:37:06'),(4590,'currentaffairs','105.112.40.99',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 05:00:59','2019-10-12 05:00:59'),(4591,'biology','105.112.40.100',10,'',NULL,'',NULL,NULL,NULL,'','','2019-10-12 16:50:45','2019-10-12 16:51:53'),(4592,'currentaffairs','3.87.162.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 01:34:03','2019-10-13 01:34:03'),(4593,'commerce','54.83.149.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 06:55:56','2019-10-13 06:55:56'),(4594,'chemistry','41.217.58.69',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 07:04:52','2019-10-13 09:28:40'),(4595,'crk','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:00','2019-10-13 11:14:03'),(4596,'chemistry','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:11','2019-10-13 11:14:14'),(4597,'currentaffairs','18.212.242.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:31:55','2019-10-13 11:31:55'),(4598,'biology','171.76.195.83',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:53:18','2019-10-13 11:53:45'),(4599,'physics','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:13','2019-10-13 12:00:14'),(4600,'chemistry','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:35','2019-10-13 12:00:36'),(4601,'government','54.89.105.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 14:56:23','2019-10-13 14:56:23'),(4602,'chemistry','129.56.105.4',53,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:17:44','2019-10-13 15:21:07'),(4603,'mathematics','129.56.105.4',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:23:57','2019-10-13 15:24:00'),(4604,'chemistry','3.92.76.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 02:02:14','2019-10-14 02:02:17'),(4605,'history','3.94.214.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 04:11:49','2019-10-14 04:11:49'),(4606,'chemistry','197.210.64.86',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 07:32:24','2019-10-14 07:32:27'),(4607,'history','3.89.135.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 08:16:22','2019-10-14 08:16:22'),(4608,'chemistry','157.55.39.168',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 09:16:59','2019-10-14 09:17:00'),(4609,'mathematics','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:57:53','2019-10-14 16:35:36'),(4610,'commerce','41.190.30.180',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:59:39','2019-10-14 16:45:26'),(4611,'government','41.190.30.180',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:00:51','2019-10-14 16:25:28'),(4612,'biology','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:03:11','2019-10-14 16:35:03'),(4613,'chemistry','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:09:18','2019-10-14 16:33:53'),(4614,'english','41.190.30.180',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:13:01','2019-10-14 16:38:31'),(4615,'mathematics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4616,'mathematics','3.88.110.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4617,'englishlit','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4618,'commerce','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4619,'crk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4620,'accounting','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4621,'biology','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4622,'economics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4623,'irk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4624,'geography','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4625,'insurance','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4626,'currentaffairs','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4627,'mathematics','18.215.162.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 07:32:53','2019-10-15 07:32:53'),(4628,'chemistry','105.112.26.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 11:12:59','2019-10-15 11:12:59'),(4629,'english','34.227.191.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 14:04:54','2019-10-15 14:04:54'),(4630,'irk','34.207.92.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 16:11:12','2019-10-15 16:11:12'),(4631,'english','105.112.120.131',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:31:08','2019-10-16 00:50:07'),(4632,'physics','105.112.120.131',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:33:25','2019-10-16 00:33:25'),(4633,'history','54.237.235.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 03:43:24','2019-10-16 03:43:24'),(4634,'government','41.190.31.103',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:29:16','2019-10-16 06:29:16'),(4635,'biology','41.190.31.103',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:30:16','2019-10-16 06:31:46'),(4636,'economics','35.173.136.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 11:30:36','2019-10-16 11:30:36'),(4637,'commerce','3.86.101.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 13:52:29','2019-10-16 13:52:29'),(4638,'english','105.112.46.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 16:05:22','2019-10-16 16:08:03'),(4639,'insurance','34.203.203.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 14:09:34','2019-10-17 14:09:34'),(4640,'chemistry','3.85.245.126',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 17:30:44','2019-10-17 17:55:33'),(4641,'english','41.217.98.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 22:28:02','2019-10-17 22:28:02'),(4642,'english','41.217.89.22',145,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 04:35:09','2019-10-18 06:06:03'),(4643,'chemistry','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:23:36','2019-10-18 06:23:36'),(4644,'accounting','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:59:21','2019-10-18 06:59:21'),(4645,'commerce','154.120.107.217',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 07:40:00','2019-10-18 07:41:16'),(4646,'commerce','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 08:40:41','2019-10-18 08:40:41'),(4647,'mathematics','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 09:07:15','2019-10-18 09:07:15'),(4648,'chemistry','41.191.105.90',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 15:48:28','2019-10-18 15:49:58'),(4649,'mathematics','54.234.162.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 18:25:03','2019-10-18 18:25:03'),(4650,'english','105.112.46.232',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 19:58:44','2019-10-20 16:01:53'),(4651,'mathematics','105.112.46.232',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 20:37:17','2019-10-18 20:37:38'),(4652,'english','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4653,'mathematics','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4654,'accounting','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4655,'englishlit','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4656,'biology','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4657,'government','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4658,'chemistry','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4659,'geography','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4660,'irk','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4661,'civiledu','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4662,'currentaffairs','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:13'),(4663,'government','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:41:48','2019-10-19 05:41:48'),(4664,'english','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:45:20','2019-10-19 05:45:20'),(4665,'mathematics','197.210.44.151',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:55','2019-10-19 08:59:56'),(4666,'biology','197.210.44.151',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:56','2019-10-19 09:27:54'),(4667,'english','105.112.73.172',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 09:37:46','2019-10-19 09:37:48'),(4668,'chemistry','207.46.13.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 15:25:34','2019-10-19 15:25:34'),(4669,'chemistry','3.209.80.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 16:51:54','2019-10-19 16:51:54'),(4670,'english','18.206.241.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 04:13:55','2019-10-20 04:13:55'),(4671,'mathematics','54.80.29.100',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:33:07','2019-10-20 12:33:46'),(4672,'chemistry','207.46.13.122',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:35:39','2019-10-20 12:35:39'),(4673,'mathematics','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4674,'accounting','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4675,'englishlit','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4676,'government','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4677,'crk','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4678,'insurance','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4679,'currentaffairs','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:17','2019-10-20 16:35:17'),(4680,'chemistry','105.112.41.90',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 17:54:25','2019-10-20 17:54:28'),(4681,'english','105.112.44.170',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 18:58:27','2019-10-20 18:58:27'),(4682,'chemistry','141.8.188.161',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 21:56:45','2019-10-20 21:56:46'),(4683,'irk','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:28:19','2019-10-21 01:28:19'),(4684,'mathematics','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:36:39','2019-10-21 01:36:39'),(4685,'chemistry','197.210.64.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 05:52:18','2019-10-21 05:52:19'),(4686,'insurance','52.90.91.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 08:46:16','2019-10-21 08:46:16'),(4687,'chemistry','197.210.8.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:11:30','2019-10-21 10:11:30'),(4688,'chemistry','197.210.47.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:26:02','2019-10-21 10:26:26'),(4689,'mathematics','197.210.47.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:27:16','2019-10-21 10:27:16'),(4690,'chemistry','34.228.38.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 15:27:28','2019-10-21 15:27:28'),(4691,'chemistry','141.8.143.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 20:01:50','2019-10-21 20:01:50'),(4692,'chemistry','54.36.149.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 03:32:50','2019-10-22 03:32:50'),(4693,'currentaffairs','3.95.63.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 10:54:12','2019-10-22 10:54:12'),(4694,'english','41.203.78.1',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:10:05','2019-10-22 13:10:05'),(4695,'biology','54.196.129.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:22:41','2019-10-22 13:22:41'),(4696,'chemistry','197.210.53.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:09:28','2020-04-07 17:00:28'),(4697,'chemistry','197.210.53.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:10:41','2019-10-22 15:10:41'),(4698,'commerce','3.87.222.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:12:55','2019-10-22 17:12:55'),(4699,'physics','66.249.64.239',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:37:27','2019-10-22 17:37:29'),(4700,'currentaffairs','18.212.225.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 21:17:58','2019-10-22 21:17:58'),(4701,'accounting','54.89.96.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 23:16:46','2019-10-22 23:16:46'),(4702,'government','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 01:59:48','2019-10-23 01:59:48'),(4703,'mathematics','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 02:02:09','2019-10-23 02:02:09'),(4704,'chemistry','66.249.88.71',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 08:13:03','2019-10-23 14:35:06'),(4705,'englishlit','3.85.139.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 11:12:36','2019-10-23 11:12:36'),(4706,'english','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4707,'mathematics','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4708,'accounting','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:13'),(4709,'government','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4710,'crk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4711,'irk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4712,'civiledu','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4713,'chemistry','66.249.83.18',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:35:06','2019-11-06 14:40:34'),(4714,'chemistry','197.211.57.153',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:36:10','2019-10-23 14:40:46'),(4715,'mathematics','197.211.57.153',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:37:19','2019-10-23 14:38:17'),(4716,'chemistry','74.125.210.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:38:27','2019-10-23 14:38:27'),(4717,'history','3.84.20.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 17:22:28','2019-10-23 17:22:28'),(4718,'english','105.112.44.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 18:01:51','2019-10-23 18:01:51'),(4719,'english','105.112.53.50',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:15:14','2019-10-23 20:15:14'),(4720,'biology','3.89.55.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:28:18','2019-10-23 20:28:18'),(4721,'history','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 00:17:49','2019-10-24 00:17:49'),(4722,'english','41.190.3.189',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 03:02:51','2019-10-24 03:02:52'),(4723,'chemistry','197.253.35.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:18:00','2019-10-24 07:18:00'),(4724,'chemistry','91.242.162.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:42:43','2019-10-24 07:52:10'),(4725,'chemistry','41.203.73.203',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:45:04','2019-10-24 08:53:03'),(4726,'biology','41.203.73.203',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:53:59','2019-10-24 08:54:01'),(4727,'chemistry','129.205.112.139',108,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 11:19:07','2019-10-24 12:02:39'),(4728,'chemistry','154.120.87.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 17:55:11','2019-10-24 17:56:27'),(4729,'chemistry','54.36.148.163',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 19:43:38','2019-10-24 19:43:39'),(4730,'accounting','34.204.7.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 06:14:19','2019-10-25 06:14:19'),(4731,'history','23.22.145.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 07:34:04','2019-10-25 07:34:04'),(4732,'mathematics','129.205.112.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:18:03','2019-10-25 09:18:03'),(4733,'commerce','129.205.112.139',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:29:16','2019-10-25 09:31:21'),(4734,'english','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4735,'biology','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4736,'physics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4737,'government','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4738,'crk','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:03'),(4739,'economics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4740,'civiledu','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4741,'chemistry','100.43.81.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:45:17','2019-10-25 16:45:17'),(4742,'crk','18.212.239.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 18:29:40','2019-10-25 18:29:40'),(4743,'commerce','35.173.231.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 23:55:41','2019-10-25 23:55:41'),(4744,'accounting','54.234.193.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 02:03:11','2019-10-26 02:03:11'),(4745,'english','197.242.102.245',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:44:02','2019-10-26 12:15:20'),(4746,'mathematics','197.242.102.245',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:46:55','2019-10-26 05:46:55'),(4747,'chemistry','41.203.73.208',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 09:43:31','2019-10-26 09:47:32'),(4748,'biology','54.81.220.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 15:10:39','2019-10-26 15:10:39'),(4749,'geography','18.204.197.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 16:03:30','2019-10-26 16:03:30'),(4750,'insurance','54.80.115.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 18:02:39','2019-10-26 18:02:39'),(4751,'commerce','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4752,'accounting','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4753,'biology','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4754,'chemistry','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4755,'physics','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4756,'government','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4757,'crk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4758,'englishlit','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:35'),(4759,'irk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4760,'insurance','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4761,'history','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4762,'chemistry','120.18.21.195',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:10','2019-10-27 05:56:57'),(4763,'mathematics','120.18.21.195',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:46','2019-10-27 05:25:47'),(4764,'crk','18.205.116.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:31:51','2019-10-27 05:31:51'),(4765,'english','154.120.107.117',322,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 06:13:42','2019-10-27 10:26:33'),(4766,'commerce','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4767,'accounting','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4768,'biology','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4769,'chemistry','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:52'),(4770,'englishlit','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4771,'government','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4772,'irk','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4773,'chemistry','157.55.39.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:39:09','2019-10-27 14:39:09'),(4774,'englishlit','3.88.251.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:47:29','2019-10-27 14:47:29'),(4775,'commerce','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 18:59:58','2019-10-27 18:59:58'),(4776,'crk','3.88.198.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:12:54','2019-10-28 01:12:54'),(4777,'chemistry','40.77.167.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:42:41','2019-10-28 01:42:41'),(4778,'biology','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 04:16:20','2019-10-28 04:16:20'),(4779,'government','18.232.138.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 06:35:55','2019-10-28 06:35:55'),(4780,'physics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:30:28','2019-10-28 07:30:29'),(4781,'mathematics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:31:02','2019-10-28 07:31:04'),(4782,'government','3.95.66.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 08:05:51','2019-10-28 08:05:51'),(4783,'english','105.112.72.133',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:29:38','2019-10-28 09:29:39'),(4784,'chemistry','197.210.52.23',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:51:40','2019-10-28 09:53:37'),(4785,'chemistry','197.210.53.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:53:00','2019-10-28 09:53:00'),(4786,'crk','3.90.3.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:10:58','2019-10-28 11:10:58'),(4787,'chemistry','197.210.8.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:13:17','2019-10-28 11:13:17'),(4788,'currentaffairs','197.210.8.173',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:14:37','2019-10-28 11:14:46'),(4789,'civiledu','34.207.224.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 17:19:22','2019-10-28 17:19:22'),(4790,'biology','3.89.72.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 03:11:01','2019-10-29 03:11:01'),(4791,'government','54.89.226.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 05:28:30','2019-10-29 05:28:30'),(4792,'economics','3.93.216.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 06:59:51','2019-10-29 06:59:51'),(4793,'english','105.112.40.87',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 09:57:48','2019-10-29 12:46:07'),(4794,'english','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 11:36:32','2019-10-29 11:36:32'),(4795,'accounting','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 12:02:06','2019-10-29 12:02:06'),(4796,'mathematics','105.112.73.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:23:32','2019-10-29 15:23:32'),(4797,'english','41.190.30.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:36:54','2019-10-29 15:36:54'),(4798,'mathematics','105.112.17.202',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:55:44','2019-10-29 15:55:44'),(4799,'english','196.27.128.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:57:02','2019-10-29 15:57:02'),(4800,'chemistry','196.27.128.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:59:40','2019-10-29 15:59:41'),(4801,'mathematics','154.68.226.2',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:06:09','2019-10-29 16:06:09'),(4802,'english','197.210.227.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:21:51','2019-10-29 16:21:51'),(4803,'english','107.167.106.232',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:41:14','2019-10-29 16:42:06'),(4804,'mathematics','18.206.56.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:46:50','2019-10-29 16:46:50'),(4805,'english','105.112.73.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:52:32','2019-10-29 16:52:33'),(4806,'englishlit','197.211.58.67',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:08:44','2019-10-29 17:08:44'),(4807,'government','197.211.58.70',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:11:12','2019-10-29 17:11:13'),(4808,'chemistry','129.56.94.58',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:18','2019-10-29 17:48:50'),(4809,'mathematics','197.210.85.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:26','2019-10-29 17:48:26'),(4810,'mathematics','129.56.94.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:49:32','2019-10-29 17:49:35'),(4811,'chemistry','197.210.53.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:31:50','2019-10-29 19:31:50'),(4812,'english','105.112.53.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:33:58','2019-10-29 19:33:58'),(4813,'chemistry','197.210.52.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:34:08','2019-10-29 19:34:08'),(4814,'mathematics','105.112.53.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:35:34','2019-10-29 19:35:34'),(4815,'chemistry','136.243.91.32',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 20:51:17','2020-01-07 22:24:25'),(4816,'english','54.198.170.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 22:10:58','2019-10-29 22:10:58'),(4817,'physics','3.81.122.72',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:05:58','2019-10-29 23:38:38'),(4818,'english','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4819,'mathematics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4820,'commerce','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4821,'englishlit','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4822,'economics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:39'),(4823,'civiledu','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:39','2019-10-29 23:38:39'),(4824,'mathematics','52.205.254.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 03:27:41','2019-10-30 03:27:41'),(4825,'accounting','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4826,'englishlit','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4827,'geography','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4828,'economics','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4829,'irk','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:56'),(4830,'civiledu','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4831,'currentaffairs','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4832,'mathematics','197.210.226.198',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-30 04:44:48','2020-05-28 20:25:41'),(4833,'english','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:02:12','2019-10-30 06:02:12'),(4834,'physics','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:03:57','2019-10-30 06:03:57'),(4835,'mathematics','34.226.220.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 07:03:46','2019-10-30 07:03:46'),(4836,'chemistry','197.210.57.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 12:45:49','2019-10-30 12:45:49'),(4837,'economics','107.23.28.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 18:15:18','2019-10-30 18:15:18'),(4838,'civiledu','18.214.99.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 19:00:42','2019-10-30 19:00:42'),(4839,'chemistry','197.210.65.172',97,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:11:50'),(4840,'chemistry','197.210.65.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:02:02'),(4841,'chemistry','197.210.57.224',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:55:52','2019-10-30 20:55:53'),(4842,'mathematics','197.210.57.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:56:37','2019-10-30 20:56:37'),(4843,'mathematics','197.210.57.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4844,'mathematics','197.210.57.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4845,'mathematics','197.210.57.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4846,'chemistry','197.210.57.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4847,'chemistry','197.211.58.123',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:15','2019-10-31 11:21:15'),(4848,'mathematics','197.211.58.123',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:24','2019-10-31 13:23:52'),(4849,'chemistry','91.242.162.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 17:52:10','2019-10-31 17:52:10'),(4850,'chemistry','197.210.84.213',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 18:55:16','2019-10-31 18:58:56'),(4851,'insurance','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 20:05:10','2019-10-31 20:05:10'),(4852,'history','18.206.189.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 04:45:22','2019-11-01 04:45:22'),(4853,'crk','54.86.61.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 06:49:49','2019-11-01 06:49:49'),(4854,'biology','54.198.198.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 07:35:21','2019-11-01 07:35:21'),(4855,'english','105.112.77.49',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:39:35','2019-11-01 09:39:36'),(4856,'government','54.174.215.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:52:23','2019-11-01 09:52:23'),(4857,'economics','107.22.138.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 11:25:59','2019-11-01 11:25:59'),(4858,'chemistry','34.207.95.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 14:53:34','2019-11-01 14:53:34'),(4859,'english','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 16:08:03','2019-11-01 16:08:03'),(4860,'englishlit','54.236.206.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 22:07:32','2019-11-01 22:07:32'),(4861,'biology','175.37.47.44',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 23:06:13','2019-11-01 23:06:14'),(4862,'accounting','54.90.121.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 06:44:10','2019-11-02 06:44:10'),(4863,'chemistry','40.77.167.175',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:15:55','2019-11-02 07:15:56'),(4864,'history','35.171.19.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:52:07','2019-11-02 07:52:07'),(4865,'english','105.112.73.230',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:32:09','2019-11-02 13:32:09'),(4866,'crk','3.84.129.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:39:50','2019-11-02 13:39:50'),(4867,'chemistry','197.211.58.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 14:34:58','2019-11-02 14:34:58'),(4868,'commerce','54.162.250.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 16:05:23','2019-11-02 16:05:23'),(4869,'accounting','35.172.138.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 18:09:32','2019-11-02 18:09:32'),(4870,'economics','100.27.31.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 20:25:53','2019-11-02 20:25:53'),(4871,'insurance','18.205.22.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 04:08:45','2019-11-03 04:08:45'),(4872,'englishlit','34.204.2.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 07:47:31','2019-11-03 07:47:31'),(4873,'mathematics','105.112.40.245',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 12:10:24','2019-11-03 12:12:07'),(4874,'chemistry','197.211.58.152',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 17:54:39','2019-11-03 17:55:20'),(4875,'commerce','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:18:15','2019-11-03 19:18:15'),(4876,'english','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:41:39','2019-11-03 19:41:39'),(4877,'physics','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 20:10:58','2019-11-03 20:10:58'),(4878,'crk','54.242.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 21:58:54','2019-11-03 21:58:54'),(4879,'chemistry','197.210.58.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:22:50','2019-11-03 23:22:50'),(4880,'chemistry','197.210.57.85',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:23:06','2019-11-03 23:23:09'),(4881,'chemistry','41.58.233.184',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 00:27:44','2019-11-04 00:30:17'),(4882,'crk','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 01:28:20','2019-11-04 01:28:20'),(4883,'english','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4884,'biology','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4885,'mathematics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4886,'physics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4887,'englishlit','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4888,'government','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4889,'civiledu','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4890,'crk','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4891,'insurance','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4892,'geography','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4893,'currentaffairs','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4894,'accounting','3.84.43.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 19:32:08','2019-11-04 19:32:08'),(4895,'english','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:48','2019-11-05 02:19:48'),(4896,'commerce','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4897,'accounting','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4898,'englishlit','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4899,'crk','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4900,'geography','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4901,'insurance','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4902,'chemistry','54.36.148.22',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:26:28','2019-11-05 02:26:30'),(4903,'mathematics','34.229.222.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 10:07:21','2019-11-05 10:07:21'),(4904,'chemistry','154.120.94.130',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 12:22:45','2019-11-05 12:23:42'),(4905,'commerce','197.211.58.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 19:23:50','2019-11-05 19:23:51'),(4906,'mathematics','18.209.50.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 20:22:48','2019-11-05 20:22:48'),(4907,'chemistry','89.234.68.70',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:17:05','2019-11-06 04:17:44'),(4908,'chemistry','83.71.247.36',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:21:42','2019-11-06 04:22:32'),(4909,'english','18.233.99.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 07:47:51','2019-11-06 07:47:51'),(4910,'currentaffairs','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 09:50:51','2019-11-06 09:50:51'),(4911,'accounting','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 10:24:20','2019-11-06 10:24:20'),(4912,'mathematics','54.145.206.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 12:14:51','2019-11-06 12:14:51'),(4913,'insurance','3.82.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 16:51:53','2019-11-06 16:51:53'),(4914,'history','54.84.14.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 23:14:10','2019-11-06 23:14:10'),(4915,'history','18.212.250.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 02:06:08','2019-11-07 02:06:08'),(4916,'mathematics','197.211.58.187',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 11:26:16','2019-11-07 11:28:37'),(4917,'englishlit','52.205.0.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 16:47:19','2019-11-07 16:47:19'),(4918,'chemistry','66.249.64.116',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 17:17:10','2020-01-25 10:15:50'),(4919,'irk','18.212.71.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 18:58:31','2019-11-07 18:58:31'),(4920,'accounting','54.225.61.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 21:07:53','2019-11-07 21:07:53'),(4921,'english','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:28:09','2019-11-08 00:28:09'),(4922,'history','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:36:53','2019-11-08 00:36:53'),(4923,'crk','35.172.133.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 05:00:20','2019-11-08 05:00:20'),(4924,'commerce','54.91.119.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 06:26:52','2019-11-08 06:26:52'),(4925,'accounting','34.207.107.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 09:53:52','2019-11-08 09:53:52'),(4926,'economics','54.157.32.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 11:20:44','2019-11-08 11:20:44'),(4927,'english','66.249.66.210',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 14:58:50','2019-11-08 14:58:51'),(4928,'chemistry','54.234.228.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 17:47:37','2019-11-08 17:47:37'),(4929,'insurance','3.88.176.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 19:01:26','2019-12-23 08:02:50'),(4930,'chemistry','157.55.39.209',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 21:25:34','2019-11-08 21:25:35'),(4931,'chemistry','91.242.162.26',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:13:24','2019-11-08 22:13:25'),(4932,'englishlit','18.212.146.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:21:32','2019-11-08 22:21:32'),(4933,'chemistry','197.210.70.127',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 00:49:45','2019-11-09 02:10:25'),(4934,'history','197.210.70.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:10:38','2019-11-09 01:10:38'),(4935,'english','197.210.70.127',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:12:33','2019-11-09 02:27:22'),(4936,'crk','34.227.56.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:23:16','2019-11-09 02:23:16'),(4937,'english','197.210.70.11',596,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:29:42','2019-11-09 02:43:37'),(4938,'mathematics','197.210.70.11',115,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:48:03','2019-11-09 03:02:34'),(4939,'commerce','197.210.70.11',887,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-09 03:04:20','2019-11-09 03:25:18'),(4940,'accounting','197.210.70.11',514,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:25:25','2019-11-09 03:37:34'),(4941,'biology','197.210.70.11',549,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:37:38','2019-11-09 07:08:42'),(4942,'physics','54.224.42.134',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 05:11:09','2019-11-09 05:11:09'),(4943,'physics','197.210.70.11',62,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:08:48','2019-11-09 07:17:18'),(4944,'chemistry','197.210.70.11',322,'','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:22:44','2020-01-16 09:56:50'),(4945,'englishlit','197.210.70.11',361,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:33:50','2019-11-09 07:42:56'),(4946,'government','197.210.70.11',438,'Nigeria','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:43:01','2019-11-09 08:01:54'),(4947,'irk','197.210.70.11',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:06:48','2019-11-09 08:07:41'),(4948,'mathematics','197.210.70.169',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:46','2019-11-09 08:08:46'),(4949,'crk','197.210.70.169',391,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:53','2019-11-09 08:46:48'),(4950,'civiledu','197.210.70.169',393,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:09:11','2019-11-09 09:00:04'),(4951,'insurance','197.210.70.169',350,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:11:33','2019-11-09 09:05:35'),(4952,'history','197.210.70.169',50,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:13:57','2019-11-09 08:15:02'),(4953,'geography','197.210.70.169',236,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:16:57','2019-11-09 08:47:31'),(4954,'economics','197.210.70.169',461,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:22:02','2019-11-09 08:53:44'),(4955,'irk','197.210.70.169',33,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:13','2019-11-09 08:57:41'),(4956,'currentaffairs','197.210.70.169',44,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:59','2019-11-09 09:06:11'),(4957,'physics','197.210.70.169',68,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:30:48','2019-11-09 08:33:02'),(4958,'government','197.210.70.169',285,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:32:21','2019-11-09 08:38:37'),(4959,'physics','3.85.57.153',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:37:56','2019-11-09 08:37:56'),(4960,'chemistry','159.138.155.115',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:57:32','2019-11-09 08:57:32'),(4961,'commerce','54.87.49.120',3,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 10:09:51'),(4962,'accounting','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 09:33:31'),(4963,'chemistry','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4964,'government','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4965,'irk','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4966,'civiledu','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4967,'history','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4968,'englishlit','54.87.49.120',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:36:47','2019-11-09 09:36:47'),(4969,'english','105.112.45.248',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:58:49','2019-11-09 09:58:49'),(4970,'english','54.158.200.213',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 12:26:02','2019-11-09 12:26:02'),(4971,'crk','3.95.160.82',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 14:20:40','2019-11-09 14:20:40'),(4972,'mathematics','18.206.174.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 06:53:11','2019-11-10 06:53:11'),(4973,'accounting','54.90.247.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 09:13:09','2019-11-10 09:13:09'),(4974,'chemistry','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:29:58','2019-11-10 11:29:58'),(4975,'english','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:56:18','2019-11-10 11:56:18'),(4976,'mathematics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4977,'commerce','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4978,'physics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4979,'englishlit','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:03'),(4980,'crk','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4981,'geography','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4982,'economics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4983,'mathematics','54.175.81.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 21:05:09','2019-11-10 21:05:09'),(4984,'biology','3.90.109.201',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:25'),(4985,'biology','3.90.109.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:10'),(4986,'chemistry','102.134.115.193',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 14:41:27','2019-11-11 14:46:16'),(4987,'chemistry','54.36.148.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 16:31:40','2019-11-11 16:31:40'),(4988,'economics','3.91.196.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 18:48:42','2019-11-11 18:48:42'),(4989,'mathematics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4990,'commerce','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4991,'biology','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:46'),(4992,'physics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4993,'economics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4994,'currentaffairs','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4995,'history','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4996,'english','54.90.246.133',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:35:46','2019-11-11 20:35:46'),(4997,'mathematics','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:33:47','2019-11-11 23:33:47'),(4998,'insurance','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:47:30','2019-11-11 23:47:30'),(4999,'chemistry','14.210.2.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 02:24:20','2019-11-12 02:24:20'),(5000,'chemistry','3.233.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 05:05:46','2019-11-12 05:05:46'),(5001,'biology','54.92.179.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 08:42:22','2019-11-12 08:42:22'),(5002,'history','54.85.253.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 09:42:51','2019-11-12 09:42:51'),(5003,'chemistry','197.210.71.200',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 12:32:36','2019-11-12 12:32:37'),(5004,'chemistry','223.73.239.66',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 15:29:45','2019-11-12 15:29:46'),(5005,'chemistry','41.190.30.18',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 18:17:17','2019-11-12 18:17:43'),(5006,'englishlit','3.92.166.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 20:15:35','2019-11-12 20:15:35'),(5007,'accounting','103.10.31.31',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:23:01','2019-11-13 05:29:07'),(5008,'physics','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:54','2019-11-13 05:28:55'),(5009,'biology','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:59','2019-11-13 05:29:00'),(5010,'accounting','54.166.15.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 08:33:25','2019-11-13 08:33:25'),(5011,'biology','66.249.64.116',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 09:19:50','2019-11-13 09:19:52'),(5012,'history','54.159.26.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 11:22:16','2019-11-13 11:22:16'),(5013,'physics','66.249.64.112',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 12:14:10','2020-01-11 03:27:45'),(5014,'accounting','3.88.111.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 17:40:10','2019-11-13 17:40:10'),(5015,'chemistry','207.46.13.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 19:01:59','2019-11-13 19:01:59'),(5016,'economics','3.88.230.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:09','2019-11-13 20:05:09'),(5017,'english','105.112.77.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:42','2019-11-13 20:05:45'),(5018,'chemistry','105.112.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 00:12:42','2019-11-14 00:12:42'),(5019,'insurance','3.87.3.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 04:04:18','2019-11-14 04:04:18'),(5020,'english','104.133.10.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:36','2019-11-14 06:14:47'),(5021,'crk','104.133.10.100',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:48','2019-11-14 06:11:51'),(5022,'chemistry','91.242.162.9',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:50:51','2019-11-14 06:50:52'),(5023,'englishlit','34.239.138.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 08:49:26','2019-11-14 08:49:26'),(5024,'english','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5025,'mathematics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5026,'chemistry','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:12','2019-11-14 10:38:15'),(5027,'physics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:14','2019-11-14 10:38:17'),(5028,'commerce','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:19','2019-11-14 10:38:23'),(5029,'currentaffairs','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:21','2019-11-14 10:38:24'),(5030,'government','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:22','2019-11-14 10:38:25'),(5031,'accounting','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:24','2019-11-14 10:38:27'),(5032,'economics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:25','2019-11-14 10:38:28'),(5033,'biology','104.132.127.96',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:27','2019-11-14 10:44:31'),(5034,'geography','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:29','2019-11-14 10:38:32'),(5035,'history','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:31','2019-11-14 10:38:34'),(5036,'insurance','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:33','2019-11-14 10:38:36'),(5037,'civiledu','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:35','2019-11-14 10:38:38'),(5038,'crk','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:37','2019-11-14 10:38:40'),(5039,'englishlit','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:38','2019-11-14 10:38:41'),(5040,'mathematics','197.156.253.124',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 11:11:37','2019-11-14 11:13:49'),(5041,'crk','34.229.192.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:42:00','2019-11-14 12:42:00'),(5042,'chemistry','105.112.113.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:43:31','2019-11-14 12:43:31'),(5043,'english','154.118.34.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 15:44:21','2019-11-14 15:44:24'),(5044,'chemistry','82.145.221.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 17:59:18','2019-11-14 17:59:18'),(5045,'physics','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:46:23','2019-11-14 18:46:23'),(5046,'english','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:53:00','2019-11-14 18:53:00'),(5047,'commerce','3.87.121.240',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-14 19:14:45','2019-11-14 19:14:45'),(5048,'crk','34.238.39.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 22:51:14','2019-11-14 22:51:14'),(5049,'economics','34.228.32.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 02:11:21','2019-11-15 02:11:21'),(5050,'chemistry','105.112.55.179',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:49:45','2019-11-15 08:02:02'),(5051,'physics','105.112.55.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:51:09','2019-11-15 07:51:09'),(5052,'chemistry','105.112.72.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 12:48:53','2019-11-15 12:50:34'),(5053,'accounting','34.203.12.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 19:40:58','2019-11-15 19:40:58'),(5054,'commerce','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5055,'accounting','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5056,'biology','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5057,'chemistry','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:32'),(5058,'geography','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5059,'economics','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5060,'insurance','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5061,'biology','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5062,'chemistry','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5063,'englishlit','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5064,'geography','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5065,'economics','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5066,'irk','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5067,'currentaffairs','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5068,'mathematics','18.212.5.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 08:58:36','2019-11-16 08:58:36'),(5069,'english','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:23:31','2019-11-16 11:23:31'),(5070,'mathematics','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:21','2019-11-16 11:30:21'),(5071,'mathematics','105.112.183.226',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:22','2019-11-16 11:30:23'),(5072,'english','105.112.183.226',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:32:08','2019-11-16 11:32:09'),(5073,'chemistry','3.88.21.220',320,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:53:05','2019-11-16 14:57:29'),(5074,'english','34.207.122.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:55:25','2019-11-16 14:55:25'),(5075,'chemistry','41.58.118.229',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:02:07','2019-11-16 15:05:13'),(5076,'physics','41.58.118.229',147,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:06:10','2019-11-16 15:11:36'),(5077,'mathematics','41.58.118.229',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:17:15','2019-11-16 15:17:18'),(5078,'chemistry','34.227.24.189',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:20:27','2019-11-16 15:20:41'),(5079,'english','41.58.118.229',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-16 15:21:00','2019-11-16 15:23:00'),(5080,'government','41.58.118.229',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:23:59','2019-11-16 15:24:02'),(5081,'chemistry','105.112.183.165',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:28:10','2019-11-16 15:28:10'),(5082,'chemistry','18.212.227.139',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:30:31','2019-11-16 15:30:34'),(5083,'chemistry','34.238.168.46',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:34:19','2019-11-16 15:42:25'),(5084,'chemistry','54.88.106.95',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:46:48','2019-11-16 15:46:51'),(5085,'chemistry','34.227.27.84',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:59:45','2019-11-16 16:02:50'),(5086,'english','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 16:19:39','2019-11-16 16:19:42'),(5087,'english','197.210.28.14',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 17:38:36','2019-11-16 17:38:36'),(5088,'geography','3.92.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 02:58:10','2019-11-17 02:58:10'),(5089,'mathematics','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:39:52','2019-11-17 05:56:58'),(5090,'english','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:40:15','2019-11-17 05:56:35'),(5091,'english','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:04:57','2019-11-17 07:04:57'),(5092,'commerce','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:11:06','2019-11-17 07:11:06'),(5093,'currentaffairs','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:58:01','2019-11-17 07:58:01'),(5094,'economics','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 08:25:21','2019-11-17 08:25:21'),(5095,'mathematics','100.26.97.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 10:58:29','2019-11-17 10:58:29'),(5096,'englishlit','100.27.23.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:42:13','2019-11-17 11:42:13'),(5097,'chemistry','3.226.254.115',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:59:22','2019-11-17 12:24:41'),(5098,'mathematics','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:07:43','2019-11-17 13:07:43'),(5099,'insurance','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:16:37','2019-11-17 13:16:37'),(5100,'commerce','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:52'),(5101,'accounting','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:49'),(5102,'physics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:50'),(5103,'crk','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:46'),(5104,'geography','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:42'),(5105,'economics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:44'),(5106,'history','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:40'),(5107,'accounting','3.90.28.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 01:39:00','2019-11-18 01:39:00'),(5108,'englishlit','54.145.175.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:30:31','2019-11-18 11:30:31'),(5109,'chemistry','154.68.195.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:44:51','2019-11-18 11:44:51'),(5110,'chemistry','105.112.177.109',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 16:07:34','2019-11-18 16:09:34'),(5111,'history','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 22:55:46','2019-12-08 23:07:31'),(5112,'biology','52.90.143.9',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:27:47','2019-11-25 19:20:30'),(5113,'english','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5114,'commerce','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5115,'government','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5116,'crk','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5117,'insurance','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5118,'currentaffairs','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5119,'chemistry','157.55.39.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:14:36','2019-11-19 04:14:36'),(5120,'history','54.152.47.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:20:09','2019-11-19 04:20:09'),(5121,'crk','3.87.113.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 06:24:27','2019-11-19 06:24:27'),(5122,'commerce','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:06:20','2019-11-19 09:06:20'),(5123,'biology','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:12:53','2019-11-19 09:12:53'),(5124,'chemistry','129.56.29.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:13:53','2019-11-19 09:13:53'),(5125,'mathematics','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:13:31','2019-11-19 10:13:31'),(5126,'commerce','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:15:00','2019-11-19 10:15:00'),(5127,'english','105.112.61.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:46:39','2019-11-19 10:46:39'),(5128,'accounting','3.87.101.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 11:57:03','2019-11-19 11:57:03'),(5129,'accounting','54.90.128.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 13:36:06','2019-11-19 13:36:06'),(5130,'economics','54.198.9.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 14:11:01','2019-11-19 14:11:01'),(5131,'chemistry','82.145.221.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 17:06:44','2019-11-19 17:06:59'),(5132,'commerce','34.207.90.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 18:09:26','2019-11-19 18:09:26'),(5133,'insurance','35.175.235.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 21:47:15','2019-11-19 21:47:15'),(5134,'economics','54.243.7.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 23:21:26','2019-11-19 23:21:26'),(5135,'englishlit','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 00:51:45','2019-11-20 00:51:45'),(5136,'accounting','3.81.87.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 03:46:05','2019-11-20 03:46:05'),(5137,'crk','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 05:37:07','2019-11-20 05:37:07'),(5138,'geography','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 06:00:11','2019-11-20 06:00:11'),(5139,'englishlit','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:11:12','2019-11-20 13:11:12'),(5140,'physics','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:12:49','2019-11-20 13:12:49'),(5141,'commerce','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:10:33','2019-11-20 14:10:33'),(5142,'english','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:24:22','2019-11-20 14:24:22'),(5143,'englishlit','3.86.15.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:59:45','2019-11-20 14:59:45'),(5144,'crk','54.211.114.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 18:58:30','2019-11-20 18:58:30'),(5145,'englishlit','54.227.23.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 20:17:56','2019-11-20 20:17:56'),(5146,'economics','54.173.226.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 02:00:33','2019-11-21 02:00:33'),(5147,'currentaffairs','3.87.237.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 15:38:11','2019-11-21 15:38:11'),(5148,'englishlit','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:11:52','2019-11-21 19:11:52'),(5149,'civiledu','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:27:16','2019-11-21 19:27:16'),(5150,'english','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:41:38','2019-11-21 19:41:38'),(5151,'accounting','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 20:05:16','2019-11-21 20:05:16'),(5152,'chemistry','61.138.222.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 02:40:12','2019-11-22 02:40:12'),(5153,'commerce','34.229.113.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 05:56:54','2019-11-22 05:56:54'),(5154,'english','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5155,'mathematics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5156,'physics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5157,'crk','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5158,'geography','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5159,'insurance','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5160,'history','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5161,'mathematics','41.191.105.89',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:47:00','2019-11-22 09:47:25'),(5162,'mathematics','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:28:36','2019-11-22 18:28:36'),(5163,'irk','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:38:47','2019-11-22 18:38:47'),(5164,'chemistry','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:24:34','2019-11-22 19:24:37'),(5165,'mathematics','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:26:12','2019-11-22 19:26:15'),(5166,'chemistry','154.160.27.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 20:46:34','2019-11-22 20:46:34'),(5167,'government','34.235.143.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 23:08:27','2019-11-22 23:08:27'),(5168,'commerce','3.93.212.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:05:01','2019-11-23 01:05:01'),(5169,'insurance','107.23.192.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:56:47','2019-11-23 01:56:47'),(5170,'english','54.87.140.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 03:56:10','2019-11-23 03:56:10'),(5171,'crk','3.80.89.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 04:32:38','2019-11-23 04:32:38'),(5172,'chemistry','40.77.167.170',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 06:00:38','2019-11-23 06:00:39'),(5173,'mathematics','3.87.21.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 13:23:50','2019-11-23 13:23:50'),(5174,'chemistry','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:04:39','2019-11-23 14:04:39'),(5175,'geography','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:13:49','2019-11-23 14:13:49'),(5176,'chemistry','3.82.225.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:59:38','2019-11-23 14:59:38'),(5177,'currentaffairs','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 18:52:45','2019-11-23 18:52:45'),(5178,'geography','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 19:17:25','2019-11-23 19:17:25'),(5179,'english','54.90.185.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 20:11:52','2019-11-23 20:11:52'),(5180,'geography','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 21:06:07','2019-11-23 21:06:07'),(5181,'chemistry','3.87.114.3',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 00:02:34','2019-11-24 00:03:13'),(5182,'geography','3.92.185.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 03:57:44','2019-11-24 03:57:44'),(5183,'englishlit','18.212.68.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 07:58:51','2019-11-24 07:58:51'),(5184,'chemistry','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 08:41:40','2019-11-24 08:41:40'),(5185,'currentaffairs','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 09:06:30','2019-11-24 09:06:30'),(5186,'biology','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 11:46:34','2019-11-24 11:46:34'),(5187,'commerce','3.94.119.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 13:14:32','2019-11-24 13:14:32'),(5188,'economics','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 14:33:11','2019-11-24 14:33:11'),(5189,'commerce','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:06:24','2019-11-24 15:06:24'),(5190,'english','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:27:19','2019-11-24 15:27:19'),(5191,'chemistry','159.138.159.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 18:34:43','2020-01-29 06:08:04'),(5192,'physics','35.173.191.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:09:52','2019-11-24 19:09:52'),(5193,'englishlit','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:56:50','2019-11-24 19:56:50'),(5194,'mathematics','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 20:10:28','2019-11-24 20:10:28'),(5195,'geography','3.95.237.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:00:07','2019-11-24 22:00:07'),(5196,'chemistry','129.205.112.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:36:55','2019-11-24 22:36:55'),(5197,'mathematics','34.239.115.115',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-25 00:20:37'),(5198,'accounting','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5199,'geography','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5200,'economics','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5201,'insurance','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5202,'currentaffairs','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5203,'history','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5204,'government','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:14:49','2019-11-25 00:14:49'),(5205,'biology','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:26:53','2019-11-25 00:26:53'),(5206,'chemistry','91.242.162.34',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:29:05','2019-11-25 00:29:05'),(5207,'mathematics','54.161.28.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 01:18:44','2019-11-25 01:18:44'),(5208,'insurance','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:18:39','2019-11-25 02:18:39'),(5209,'english','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:50:26','2019-11-25 02:50:26'),(5210,'biology','3.80.24.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 13:54:57','2019-11-25 13:54:57'),(5211,'accounting','54.174.106.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:15:50','2019-11-25 22:15:50'),(5212,'chemistry','54.36.150.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:39:17','2019-11-25 22:39:17'),(5213,'chemistry','59.62.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:05:11','2019-11-26 00:05:11'),(5214,'biology','52.207.70.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:23:52','2019-11-26 00:23:52'),(5215,'currentaffairs','3.92.68.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 04:10:20','2019-11-26 04:10:20'),(5216,'biology','3.80.157.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 09:41:29','2019-11-26 09:41:29'),(5217,'currentaffairs','34.201.221.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 13:34:13','2019-11-26 13:34:13'),(5218,'biology','54.226.198.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 19:19:54','2019-11-26 19:19:54'),(5219,'currentaffairs','3.90.165.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 23:25:19','2019-11-26 23:25:19'),(5220,'irk','3.87.128.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 02:59:37','2019-11-27 02:59:37'),(5221,'chemistry','197.210.85.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 04:36:41','2019-11-27 04:36:41'),(5222,'chemistry','52.91.32.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 06:56:10','2019-11-27 06:56:10'),(5223,'chemistry','3.84.51.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 08:55:13','2019-11-27 08:55:13'),(5224,'englishlit','54.205.247.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 09:48:58','2019-11-27 09:48:58'),(5225,'biology','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 12:58:49','2019-11-27 12:58:49'),(5226,'irk','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 13:14:40','2019-11-27 13:14:40'),(5227,'insurance','54.198.168.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 14:09:50','2019-11-27 14:09:50'),(5228,'economics','52.90.222.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 17:06:53','2019-11-27 17:06:53'),(5229,'history','3.92.231.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 18:56:25','2019-11-27 18:56:25'),(5230,'chemistry','18.234.89.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:41:07','2019-11-27 19:41:07'),(5231,'chemistry','49.87.102.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:46:18','2019-11-27 19:46:18'),(5232,'accounting','54.161.90.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 20:54:04','2019-11-27 20:54:04'),(5233,'chemistry','27.214.192.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 23:04:04','2019-11-27 23:04:04'),(5234,'chemistry','34.230.10.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 01:37:13','2019-11-28 01:37:13'),(5235,'irk','18.209.6.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 04:53:50','2019-11-28 04:53:50'),(5236,'biology','3.82.192.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:53:14','2019-11-28 07:53:15'),(5237,'history','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:55:43','2019-11-28 07:55:43'),(5238,'commerce','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5239,'englishlit','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5240,'currentaffairs','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 08:20:01','2019-11-28 08:20:01'),(5241,'mathematics','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:18:07','2019-11-28 10:18:07'),(5242,'chemistry','105.112.55.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:31:45','2019-11-28 10:31:45'),(5243,'commerce','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:42:22','2019-11-28 10:42:22'),(5244,'crk','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 11:14:13','2019-11-28 11:14:13'),(5245,'economics','18.234.45.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 12:07:05','2019-11-28 12:07:05'),(5246,'commerce','52.200.202.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 14:58:46','2019-11-28 14:58:46'),(5247,'biology','41.190.3.204',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 16:57:43','2019-11-28 16:57:44'),(5248,'chemistry','54.36.148.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 17:06:02','2019-11-28 17:06:03'),(5249,'crk','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:31:30','2019-11-28 19:31:30'),(5250,'accounting','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:33:45','2019-11-28 19:33:45'),(5251,'economics','3.85.242.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:37'),(5252,'commerce','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:38'),(5253,'accounting','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5254,'biology','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5255,'physics','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5256,'crk','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5257,'geography','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5258,'currentaffairs','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5259,'geography','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 06:56:30','2019-11-29 06:56:30'),(5260,'economics','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 07:23:58','2019-11-29 07:23:58'),(5261,'commerce','3.90.78.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 09:46:03','2019-11-29 09:46:03'),(5262,'crk','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 14:54:27','2019-11-29 14:54:27'),(5263,'english','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:32:55','2019-11-29 16:32:55'),(5264,'insurance','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:33:40','2019-11-29 16:33:40'),(5265,'biology','54.165.28.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 17:08:15','2019-11-29 17:13:52'),(5266,'englishlit','3.91.91.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 20:29:30','2019-11-29 20:29:30'),(5267,'chemistry','197.210.53.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 22:14:15','2019-11-29 22:14:15'),(5268,'geography','3.80.133.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 00:24:52','2019-11-30 00:24:52'),(5269,'crk','54.144.64.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 03:05:17','2019-11-30 03:05:17'),(5270,'chemistry','141.0.13.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 04:28:46','2019-11-30 04:28:50'),(5271,'crk','34.235.132.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 09:54:43','2019-11-30 09:54:43'),(5272,'economics','3.84.73.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 14:56:44','2019-11-30 14:56:44'),(5273,'chemistry','54.196.143.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 15:46:01','2019-11-30 15:46:01'),(5274,'physics','174.129.162.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 17:01:07','2019-11-30 17:01:07'),(5275,'commerce','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:18:36','2019-11-30 19:18:36'),(5276,'englishlit','3.84.92.186',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:29:52','2019-11-30 19:36:20'),(5277,'english','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:34:16','2019-11-30 19:34:16'),(5278,'crk','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 02:44:38','2019-12-01 02:44:38'),(5279,'englishlit','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 03:14:33','2019-12-01 03:14:33'),(5280,'economics','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:41:42','2019-12-01 06:41:42'),(5281,'chemistry','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:51:45','2019-12-01 06:51:45'),(5282,'chemistry','207.46.13.30',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 08:20:41','2019-12-01 08:20:42'),(5283,'government','3.94.79.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 09:03:08','2019-12-01 09:03:08'),(5284,'chemistry','197.211.58.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 10:28:55','2019-12-01 10:28:55'),(5285,'english','3.83.92.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 13:54:48','2019-12-01 13:54:48'),(5286,'chemistry','182.247.60.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:04:17','2019-12-02 05:04:17'),(5287,'physics','18.212.94.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:51:40','2019-12-02 05:51:40'),(5288,'english','196.13.161.254',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:09:22','2019-12-02 11:11:49'),(5289,'chemistry','196.13.161.254',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:14:59','2019-12-02 12:04:31'),(5290,'currentaffairs','3.86.66.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:36:59','2019-12-02 11:36:59'),(5291,'chemistry','80.248.3.98',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 12:03:05','2019-12-02 12:03:05'),(5292,'currentaffairs','18.212.29.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 13:05:10','2019-12-02 13:05:10'),(5293,'civiledu','34.227.18.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:34:27','2019-12-02 16:34:27'),(5294,'chemistry','124.112.95.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:43:26','2019-12-02 16:43:26'),(5295,'english','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:15:18','2019-12-02 20:15:18'),(5296,'englishlit','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:44:03','2019-12-02 20:44:03'),(5297,'accounting','54.89.129.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 21:26:25','2019-12-02 21:26:25'),(5298,'chemistry','70.49.10.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 04:21:31','2019-12-03 04:21:32'),(5299,'english','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:12','2019-12-03 05:44:12'),(5300,'commerce','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5301,'accounting','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5302,'economics','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5303,'irk','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5304,'insurance','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5305,'history','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5306,'commerce','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5307,'accounting','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5308,'chemistry','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5309,'government','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5310,'geography','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5311,'civiledu','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5312,'history','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5313,'english','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5314,'commerce','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5315,'englishlit','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5316,'crk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5317,'irk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:21'),(5318,'insurance','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5319,'currentaffairs','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5320,'irk','3.82.106.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 20:45:47','2019-12-03 20:45:47'),(5321,'mathematics','52.90.36.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 22:27:46','2019-12-03 22:27:46'),(5322,'government','54.152.243.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 01:01:26','2019-12-04 01:01:26'),(5323,'chemistry','207.46.13.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 03:26:32','2019-12-04 03:26:32'),(5324,'insurance','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 04:39:43','2019-12-04 04:39:43'),(5325,'chemistry','14.134.201.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:29:57','2019-12-04 06:29:57'),(5326,'chemistry','218.73.129.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:30:25','2019-12-04 06:30:25'),(5327,'commerce','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:53:13','2019-12-04 06:53:13'),(5328,'crk','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:05:20','2019-12-04 07:05:20'),(5329,'english','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:15:26','2019-12-04 07:15:26'),(5330,'mathematics','41.190.3.143',119,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:24:47','2019-12-05 00:11:26'),(5331,'biology','41.190.3.143',168,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:28:53','2019-12-05 12:00:11'),(5332,'chemistry','197.211.58.2',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:19:02','2019-12-04 15:19:02'),(5333,'currentaffairs','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:20:27','2019-12-04 15:20:27'),(5334,'mathematics','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:26:56','2019-12-04 15:26:56'),(5335,'chemistry','105.112.181.189',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:14:48','2019-12-04 17:14:58'),(5336,'geography','18.208.212.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:29:42','2019-12-04 17:29:42'),(5337,'english','41.190.3.143',91,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:55:40','2019-12-05 06:58:47'),(5338,'government','41.190.3.143',84,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:56:50','2019-12-05 06:41:34'),(5339,'commerce','41.190.3.143',175,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:57:42','2019-12-05 06:53:25'),(5340,'chemistry','41.190.3.143',140,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 19:01:13','2019-12-05 07:14:29'),(5341,'mathematics','54.172.178.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 20:35:24','2019-12-04 20:35:24'),(5342,'geography','54.172.178.184',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 21:08:09','2019-12-04 21:36:53'),(5343,'english','54.163.0.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 23:30:16','2019-12-04 23:30:16'),(5344,'geography','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:01:50','2019-12-05 01:01:50'),(5345,'history','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:18:02','2019-12-05 01:18:02'),(5346,'geography','204.236.206.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:22:32','2019-12-05 07:22:32'),(5347,'physics','54.86.78.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:59:42','2019-12-05 07:59:42'),(5348,'englishlit','54.172.67.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 09:02:59','2019-12-05 09:02:59'),(5349,'currentaffairs','3.91.46.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 10:24:47','2019-12-05 10:24:47'),(5350,'biology','174.129.108.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 14:55:19','2019-12-05 14:55:19'),(5351,'chemistry','105.112.179.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 17:00:52','2019-12-05 17:00:52'),(5352,'commerce','3.84.85.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:00:24','2019-12-05 18:23:26'),(5353,'english','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:44:01','2019-12-05 18:44:01'),(5354,'economics','3.88.46.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 19:56:33','2019-12-05 19:56:33'),(5355,'history','54.81.95.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 20:35:42','2019-12-05 20:35:42'),(5356,'chemistry','113.138.129.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:25','2019-12-05 21:06:25'),(5357,'chemistry','40.77.167.50',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:35','2019-12-05 21:06:35'),(5358,'mathematics','18.233.165.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 22:52:02','2019-12-05 22:52:02'),(5359,'englishlit','54.175.59.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 00:21:22','2019-12-06 00:21:22'),(5360,'chemistry','52.90.137.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 01:50:04','2019-12-06 01:50:04'),(5361,'geography','3.87.199.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 02:52:45','2019-12-06 02:52:45'),(5362,'mathematics','3.88.194.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 04:08:29','2019-12-06 04:08:29'),(5363,'government','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:32:21','2019-12-06 05:32:21'),(5364,'mathematics','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:40:15','2019-12-06 05:40:15'),(5365,'insurance','34.227.157.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 06:43:30','2019-12-06 06:43:30'),(5366,'physics','54.172.2.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 10:09:01','2019-12-06 10:09:01'),(5367,'biology','66.249.88.17',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 14:07:38','2020-02-15 20:12:28'),(5368,'chemistry','197.210.84.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:36:43','2019-12-06 18:36:43'),(5369,'crk','197.210.84.159',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:40:55','2019-12-06 19:11:31'),(5370,'biology','34.205.127.71',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5371,'biology','34.205.127.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5372,'accounting','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:12:45','2019-12-07 10:12:45'),(5373,'history','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:34:21','2019-12-07 10:34:21'),(5374,'chemistry','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5375,'englishlit','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5376,'government','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5377,'crk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5378,'irk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5379,'civiledu','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5380,'currentaffairs','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5381,'irk','54.242.7.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 01:13:25','2019-12-08 01:13:25'),(5382,'englishlit','54.242.126.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 06:59:59','2019-12-08 06:59:59'),(5383,'chemistry','40.77.167.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 15:51:20','2019-12-08 15:51:20'),(5384,'chemistry','197.210.47.7',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:00:48','2019-12-08 16:00:49'),(5385,'chemistry','197.210.47.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:17:03','2019-12-08 16:17:03'),(5386,'insurance','54.152.41.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 17:44:29','2019-12-08 17:44:29'),(5387,'chemistry','93.158.161.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 18:45:52','2019-12-08 18:45:52'),(5388,'economics','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 19:54:55','2019-12-08 19:54:55'),(5389,'biology','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 20:26:43','2019-12-08 20:26:43'),(5390,'commerce','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5391,'english','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5392,'accounting','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5393,'accounting','3.82.25.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5394,'physics','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:42'),(5395,'biology','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5396,'geography','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5397,'economics','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5398,'crk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5399,'civiledu','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5400,'irk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5401,'chemistry','40.77.167.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 00:56:26','2019-12-09 00:56:26'),(5402,'accounting','54.226.206.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 03:42:51','2019-12-09 03:42:51'),(5403,'history','52.206.133.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 04:25:20','2019-12-09 04:25:20'),(5404,'biology','54.173.252.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 05:46:38','2019-12-09 05:46:39'),(5405,'irk','18.234.114.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 11:05:35','2019-12-09 11:05:35'),(5406,'chemistry','54.36.148.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:28:12','2019-12-09 16:28:16'),(5407,'biology','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:39'),(5408,'englishlit','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:38'),(5409,'crk','54.89.129.103',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:48:45'),(5410,'commerce','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5411,'economics','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5412,'irk','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5413,'physics','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5414,'chemistry','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5415,'insurance','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:40'),(5416,'currentaffairs','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5417,'commerce','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:17:25','2019-12-09 19:17:25'),(5418,'economics','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:32:29','2019-12-09 19:32:29'),(5419,'civiledu','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 22:44:39','2019-12-09 22:44:39'),(5420,'english','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:24','2019-12-09 23:12:24'),(5421,'geography','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:35','2019-12-09 23:12:35'),(5422,'chemistry','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:27:16','2019-12-09 23:27:16'),(5423,'chemistry','40.77.167.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:01:39','2019-12-10 00:01:39'),(5424,'accounting','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:03:12','2019-12-10 00:03:12'),(5425,'insurance','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:37:10','2019-12-10 00:37:10'),(5426,'crk','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 01:09:15','2019-12-10 01:09:15'),(5427,'chemistry','100.27.31.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 02:44:54','2019-12-10 02:44:54'),(5428,'commerce','54.237.164.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 04:47:40','2019-12-10 04:47:40'),(5429,'english','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:13:52','2019-12-10 06:13:52'),(5430,'geography','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:33:46','2019-12-10 06:33:46'),(5431,'economics','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:51:24','2019-12-10 06:51:24'),(5432,'accounting','54.242.54.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 07:57:03','2019-12-10 07:57:03'),(5433,'insurance','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:23:16','2019-12-10 09:23:16'),(5434,'chemistry','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:37:33','2019-12-10 09:37:33'),(5435,'crk','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:18:58','2019-12-10 10:18:58'),(5436,'englishlit','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:59:01','2019-12-10 10:59:01'),(5437,'government','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:19:21','2019-12-10 11:19:21'),(5438,'english','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:50:52','2019-12-10 11:50:52'),(5439,'geography','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:05:06','2019-12-10 12:05:06'),(5440,'irk','54.226.150.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:45:46','2019-12-10 12:45:46'),(5441,'commerce','3.90.68.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 13:50:00','2019-12-10 13:50:00'),(5442,'government','3.82.210.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 14:37:36','2019-12-10 14:37:36'),(5443,'crk','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:21:52','2019-12-10 15:21:52'),(5444,'economics','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:35:48','2019-12-10 15:35:48'),(5445,'currentaffairs','35.168.14.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 16:27:37','2019-12-10 16:27:37'),(5446,'geography','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:35:21','2019-12-10 20:35:21'),(5447,'economics','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:39:50','2019-12-10 20:39:50'),(5448,'accounting','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:37','2019-12-10 20:59:37'),(5449,'english','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:50','2019-12-10 20:59:50'),(5450,'crk','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 21:34:22','2019-12-10 21:34:22'),(5451,'englishlit','54.165.112.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 00:04:55','2019-12-11 00:04:55'),(5452,'government','34.201.143.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 03:16:18','2019-12-11 03:16:18'),(5453,'englishlit','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:53:05','2019-12-11 04:53:05'),(5454,'insurance','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:55:54','2019-12-11 04:55:54'),(5455,'chemistry','105.112.179.103',425,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 06:39:31','2019-12-11 07:10:00'),(5456,'mathematics','105.112.179.103',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:10:34','2019-12-11 07:10:34'),(5457,'mathematics','105.112.16.69',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:18:04','2019-12-11 07:18:48'),(5458,'chemistry','3.229.122.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:58:12','2019-12-11 09:05:40'),(5459,'geography','174.129.57.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 09:22:20','2019-12-11 09:22:20'),(5460,'crk','54.90.130.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 12:16:19','2019-12-11 12:16:19'),(5461,'chemistry','188.180.82.238',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 13:07:40','2019-12-11 13:09:06'),(5462,'chemistry','41.203.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 15:02:50','2019-12-11 15:02:50'),(5463,'chemistry','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 22:51:11','2019-12-11 22:51:11'),(5464,'accounting','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:23:14','2019-12-11 23:23:14'),(5465,'englishlit','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:52:10','2019-12-11 23:52:10'),(5466,'physics','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 00:19:17','2019-12-12 00:19:17'),(5467,'commerce','54.197.2.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 01:28:00','2019-12-12 01:28:00'),(5468,'englishlit','3.93.184.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 03:07:29','2019-12-12 03:07:29'),(5469,'crk','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 09:35:33','2019-12-12 09:35:33'),(5470,'english','18.209.36.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 11:09:56','2019-12-12 11:09:56'),(5471,'chemistry','34.228.199.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 13:40:09','2019-12-12 13:40:09'),(5472,'englishlit','3.85.74.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 14:21:15','2019-12-12 14:21:15'),(5473,'chemistry','100.27.31.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 16:34:32','2019-12-12 16:34:32'),(5474,'government','54.236.209.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 19:00:46','2019-12-12 19:00:46'),(5475,'crk','18.205.239.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:05:15','2019-12-12 20:05:15'),(5476,'crk','197.210.84.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:31:16','2019-12-12 20:40:53'),(5477,'economics','34.239.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 21:01:23','2019-12-12 21:01:23'),(5478,'english','54.172.192.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 23:30:27','2019-12-12 23:30:27'),(5479,'chemistry','40.77.167.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 02:15:26','2019-12-13 02:15:26'),(5480,'chemistry','114.229.7.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 03:41:13','2019-12-13 03:41:13'),(5481,'chemistry','105.112.80.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 08:56:22','2019-12-13 08:56:45'),(5482,'mathematics','34.203.244.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 09:11:37','2019-12-13 09:11:37'),(5483,'physics','110.44.121.20',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 10:10:52','2019-12-13 10:10:53'),(5484,'chemistry','105.112.24.37',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:15:54','2019-12-13 11:15:55'),(5485,'mathematics','105.112.179.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:03','2019-12-13 11:29:48'),(5486,'physics','105.112.179.227',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:26','2019-12-13 11:30:06'),(5487,'physics','3.93.52.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 12:46:32','2019-12-13 12:46:32'),(5488,'history','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:34','2019-12-13 21:12:28'),(5489,'currentaffairs','129.205.112.254',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:39','2019-12-13 21:09:28'),(5490,'chemistry','129.205.112.254',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:44','2019-12-13 21:12:08'),(5491,'mathematics','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:54','2019-12-13 21:11:38'),(5492,'government','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:59','2019-12-13 21:11:53'),(5493,'physics','129.205.112.254',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:04','2019-12-13 21:12:23'),(5494,'englishlit','129.205.112.254',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:09','2019-12-13 21:12:13'),(5495,'economics','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:15','2019-12-13 21:12:38'),(5496,'commerce','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:40','2019-12-13 21:12:33'),(5497,'english','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:47','2019-12-13 21:11:28'),(5498,'accounting','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:50','2019-12-13 21:10:34'),(5499,'geography','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:30','2019-12-13 21:10:38'),(5500,'crk','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:35','2019-12-13 21:11:58'),(5501,'irk','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:15','2019-12-13 21:09:43'),(5502,'biology','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:30','2019-12-13 21:12:18'),(5503,'insurance','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:01:20','2019-12-13 21:13:30'),(5504,'civiledu','129.205.112.254',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:03:35','2019-12-13 21:11:03'),(5505,'currentaffairs','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 18:57:39','2019-12-13 18:57:39'),(5506,'currentaffairs','54.226.13.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 19:41:05','2019-12-13 19:41:05'),(5507,'mathematics','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 20:26:39','2019-12-13 20:26:39'),(5508,'civiledu','3.83.131.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 23:08:17','2019-12-13 23:08:17'),(5509,'englishlit','54.163.205.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 02:02:08','2019-12-14 02:02:08'),(5510,'english','3.84.191.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:05:13','2019-12-14 03:05:13'),(5511,'physics','105.112.178.117',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:10:23','2019-12-14 03:22:06'),(5512,'biology','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:35:59','2019-12-14 03:40:01'),(5513,'accounting','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:37:14','2019-12-14 03:40:02'),(5514,'mathematics','105.112.177.67',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:11','2019-12-14 03:40:22'),(5515,'physics','105.112.177.67',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:58','2019-12-14 03:44:29'),(5516,'accounting','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:12:59','2019-12-14 04:12:59'),(5517,'mathematics','105.112.177.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:16:55','2019-12-14 04:16:55'),(5518,'mathematics','105.112.179.177',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:17:37','2019-12-14 04:17:38'),(5519,'chemistry','58.19.12.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:18:56','2019-12-14 04:18:56'),(5520,'mathematics','105.112.176.112',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:39:57','2019-12-14 04:44:54'),(5521,'mathematics','105.112.23.162',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:29:29','2019-12-14 05:38:43'),(5522,'mathematics','105.112.178.10',110,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:40:14','2019-12-14 06:24:21'),(5523,'english','105.112.178.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:20:57','2019-12-14 06:20:58'),(5524,'physics','105.112.178.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:22:14','2019-12-14 06:23:31'),(5525,'mathematics','105.112.176.255',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:48:33','2019-12-14 06:54:19'),(5526,'mathematics','105.112.177.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:16:27','2019-12-14 07:52:21'),(5527,'physics','105.112.177.210',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:18:35','2019-12-14 07:19:49'),(5528,'mathematics','34.229.0.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 14:14:24','2019-12-14 14:14:24'),(5529,'chemistry','3.94.129.211',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:29:03','2019-12-14 18:49:30'),(5530,'crk','3.82.19.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:54:57','2019-12-14 18:54:57'),(5531,'mathematics','105.112.74.0',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:40:25','2019-12-14 19:50:59'),(5532,'mathematics','105.112.178.125',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:55:19','2019-12-14 19:57:26'),(5533,'english','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:42'),(5534,'accounting','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:43'),(5535,'government','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5536,'crk','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5537,'economics','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5538,'insurance','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5539,'currentaffairs','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5540,'mathematics','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 02:56:53','2019-12-15 02:56:53'),(5541,'irk','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 03:08:39','2019-12-15 03:08:39'),(5542,'mathematics','105.112.24.144',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 05:33:44','2019-12-15 05:33:44'),(5543,'mathematics','105.112.24.123',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:27:08','2019-12-15 06:28:35'),(5544,'biology','105.112.24.123',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:28:39','2019-12-15 06:28:39'),(5545,'commerce','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:52:53','2019-12-15 07:52:53'),(5546,'government','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:53:27','2019-12-15 07:53:27'),(5547,'mathematics','105.112.75.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:03:20','2019-12-15 08:03:20'),(5548,'mathematics','105.112.178.111',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:24:49','2019-12-15 08:24:49'),(5549,'chemistry','89.163.242.18',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:57:38','2019-12-15 08:57:38'),(5550,'mathematics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:59:24','2019-12-15 09:11:12'),(5551,'commerce','105.112.16.234',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:01:55','2019-12-15 09:05:33'),(5552,'englishlit','105.112.16.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:05:43','2019-12-15 09:05:44'),(5553,'economics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:07:37','2019-12-15 09:09:01'),(5554,'mathematics','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:32'),(5555,'commerce','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:33'),(5556,'accounting','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5557,'englishlit','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5558,'crk','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5559,'geography','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5560,'currentaffairs','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5561,'insurance','18.206.121.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:44:42','2019-12-15 10:44:42'),(5562,'mathematics','197.210.44.70',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 11:39:41','2019-12-15 11:40:19'),(5563,'english','54.226.135.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 13:31:12','2019-12-15 13:31:12'),(5564,'crk','34.207.159.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 14:25:42','2019-12-15 14:25:42'),(5565,'chemistry','197.210.8.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:09:00','2019-12-15 15:09:49'),(5566,'mathematics','105.112.181.210',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:31:11','2019-12-15 15:31:12'),(5567,'chemistry','197.211.58.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 16:28:08','2019-12-15 16:28:08'),(5568,'civiledu','107.22.61.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 21:18:49','2019-12-15 21:18:49'),(5569,'mathematics','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 22:16:18','2019-12-15 22:16:18'),(5570,'geography','18.206.180.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 00:01:24','2019-12-16 00:01:24'),(5571,'accounting','3.95.7.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 01:08:36','2019-12-16 01:08:36'),(5572,'chemistry','105.112.99.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:48:06','2019-12-16 04:48:06'),(5573,'geography','34.207.88.147',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:49:45','2019-12-16 08:10:20'),(5574,'mathematics','105.112.24.13',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 05:19:46','2019-12-16 05:19:46'),(5575,'english','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:18:08','2019-12-16 06:18:08'),(5576,'geography','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:30:45','2019-12-16 06:30:45'),(5577,'chemistry','105.112.30.62',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 11:31:31','2019-12-16 11:34:57'),(5578,'chemistry','207.46.13.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 12:26:05','2019-12-16 12:26:05'),(5579,'physics','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 16:53:46','2019-12-16 16:53:46'),(5580,'englishlit','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 17:13:34','2019-12-16 17:13:34'),(5581,'geography','3.92.69.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 18:41:59','2019-12-16 18:41:59'),(5582,'biology','52.202.45.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 21:27:25','2019-12-16 21:27:25'),(5583,'currentaffairs','3.95.195.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 22:56:29','2019-12-16 22:56:29'),(5584,'economics','3.81.134.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 23:46:29','2019-12-16 23:46:29'),(5585,'commerce','54.164.27.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 00:54:33','2019-12-17 00:54:33'),(5586,'commerce','3.92.4.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 04:14:33','2019-12-17 04:14:33'),(5587,'chemistry','197.210.61.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 06:57:40','2019-12-17 06:57:40'),(5588,'chemistry','102.134.114.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:37','2019-12-17 07:45:37'),(5589,'mathematics','102.134.114.193',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:57','2019-12-17 07:47:44'),(5590,'mathematics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:30:56','2019-12-17 08:30:56'),(5591,'physics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:32:55','2019-12-17 08:32:55'),(5592,'englishlit','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:58:40','2019-12-17 08:58:40'),(5593,'chemistry','151.80.39.216',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:17:12','2019-12-30 07:30:25'),(5594,'chemistry','151.80.39.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:23:31','2019-12-17 09:23:31'),(5595,'chemistry','5.196.87.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:30:13','2020-01-07 19:20:55'),(5596,'chemistry','151.80.39.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:39:21','2019-12-17 09:45:56'),(5597,'geography','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:13:13','2019-12-17 10:13:13'),(5598,'government','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:29:20','2019-12-17 10:29:20'),(5599,'mathematics','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:55:34','2019-12-17 10:55:34'),(5600,'mathematics','105.112.178.120',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:24:11','2019-12-17 13:24:11'),(5601,'english','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:31:22','2019-12-17 13:31:22'),(5602,'insurance','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:39:48','2019-12-17 13:39:48'),(5603,'mathematics','105.112.23.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:00:33','2019-12-17 14:00:33'),(5604,'history','54.91.62.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:51:56','2019-12-17 14:51:56'),(5605,'chemistry','106.56.38.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 21:15:06','2019-12-17 21:15:06'),(5606,'chemistry','182.110.22.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 22:30:20','2019-12-17 22:30:20'),(5607,'geography','54.204.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 00:38:06','2019-12-18 00:38:06'),(5608,'chemistry','154.120.93.60',252,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:40:21','2019-12-18 06:53:13'),(5609,'english','154.120.93.60',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:48:52','2019-12-18 06:48:55'),(5610,'mathematics','154.120.93.60',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:53:33','2019-12-18 06:53:56'),(5611,'chemistry','197.210.65.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:44','2019-12-18 07:42:44'),(5612,'chemistry','197.210.64.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:51','2019-12-18 07:42:51'),(5613,'accounting','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 09:13:48','2019-12-18 09:13:48'),(5614,'chemistry','197.210.227.76',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:32:30','2019-12-18 13:51:25'),(5615,'chemistry','197.210.226.124',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:33:10','2019-12-19 08:29:25'),(5616,'chemistry','197.210.227.42',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:50:23','2019-12-18 13:52:09'),(5617,'mathematics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5618,'commerce','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5619,'physics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5620,'englishlit','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5621,'crk','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5622,'currentaffairs','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5623,'history','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5624,'english','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5625,'accounting','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5626,'biology','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:07'),(5627,'englishlit','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5628,'geography','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5629,'irk','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5630,'insurance','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5631,'chemistry','69.30.213.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 14:31:25','2019-12-18 14:31:25'),(5632,'physics','105.112.176.201',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 05:24:23','2019-12-19 05:24:23'),(5633,'chemistry','5.189.172.182',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:05:46','2019-12-19 07:06:30'),(5634,'government','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:12:43','2019-12-19 07:12:43'),(5635,'history','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:33:41','2019-12-19 07:33:41'),(5636,'irk','52.91.34.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 09:17:34','2019-12-19 09:17:34'),(5637,'englishlit','54.88.253.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 10:35:04','2019-12-19 10:35:04'),(5638,'economics','105.112.177.36',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:42:18','2019-12-19 16:42:19'),(5639,'chemistry','105.112.177.36',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:43:25','2019-12-19 16:45:28'),(5640,'chemistry','105.112.177.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:02:16','2019-12-19 17:02:16'),(5641,'commerce','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:40:56','2019-12-19 17:40:56'),(5642,'biology','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:43:13','2019-12-19 17:43:13'),(5643,'mathematics','197.210.53.166',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 18:09:35','2019-12-19 18:09:35'),(5644,'insurance','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:04:27','2019-12-20 01:04:27'),(5645,'biology','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:31:54','2019-12-20 01:31:54'),(5646,'economics','54.146.230.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 05:50:03','2019-12-20 05:50:03'),(5647,'history','3.85.190.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 07:45:09','2019-12-20 07:45:09'),(5648,'history','54.80.62.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 08:26:39','2019-12-20 08:26:39'),(5649,'accounting','54.198.39.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:15:34','2019-12-20 10:15:34'),(5650,'chemistry','197.210.61.37',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:58:34','2019-12-20 11:00:32'),(5651,'englishlit','34.202.161.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 15:24:52','2019-12-20 15:24:52'),(5652,'chemistry','3.85.93.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 16:07:34','2019-12-20 16:07:34'),(5653,'irk','3.87.205.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 21:37:02','2019-12-20 21:37:02'),(5654,'economics','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:05:01','2019-12-21 03:05:01'),(5655,'crk','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:09:00','2019-12-21 03:09:00'),(5656,'chemistry','41.190.31.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 06:38:03','2019-12-21 06:38:04'),(5657,'commerce','54.234.19.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 07:41:34','2019-12-21 07:41:34'),(5658,'chemistry','154.120.111.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:08:50','2019-12-21 08:08:50'),(5659,'chemistry','207.46.13.100',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:11:14','2019-12-21 08:11:14'),(5660,'accounting','3.82.104.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:03:47','2019-12-21 09:03:47'),(5661,'english','154.120.82.204',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:45:44','2019-12-21 09:45:44'),(5662,'crk','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 10:54:28','2019-12-21 10:54:28'),(5663,'history','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:24:32','2019-12-21 11:24:32'),(5664,'chemistry','197.210.71.189',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:53:25','2019-12-21 11:55:06'),(5665,'economics','54.234.34.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:08:12','2019-12-21 17:08:12'),(5666,'chemistry','196.220.136.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:23:29','2019-12-21 17:23:29'),(5667,'government','52.200.198.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 19:00:57','2019-12-21 19:00:57'),(5668,'chemistry','54.145.127.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 20:50:25','2019-12-21 20:50:25'),(5669,'geography','34.239.125.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 22:50:03','2019-12-21 22:50:03'),(5670,'economics','54.144.125.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 23:56:36','2019-12-21 23:56:36'),(5671,'commerce','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:51:11','2019-12-22 00:51:11'),(5672,'government','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:59:35','2019-12-22 00:59:35'),(5673,'insurance','54.82.100.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 06:04:36','2019-12-22 06:04:36'),(5674,'economics','3.91.31.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:14:42','2019-12-22 07:14:42'),(5675,'crk','100.24.16.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:56:40','2019-12-22 07:56:40'),(5676,'englishlit','54.174.249.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 12:39:37','2019-12-22 12:39:37'),(5677,'chemistry','106.57.151.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 14:24:18','2019-12-22 14:24:18'),(5678,'chemistry','58.62.85.244',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 15:07:13','2019-12-22 15:07:13'),(5679,'chemistry','113.121.210.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 16:19:36','2019-12-22 16:19:36'),(5680,'chemistry','197.211.58.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 18:58:28','2019-12-22 18:58:28'),(5681,'crk','18.208.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 19:35:12','2019-12-22 19:35:12'),(5682,'english','52.91.199.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 20:40:32','2019-12-22 20:40:32'),(5683,'crk','54.197.16.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 22:29:28','2019-12-22 22:29:28'),(5684,'chemistry','207.46.13.32',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 05:30:59','2019-12-23 19:53:30'),(5685,'chemistry','41.58.249.101',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 07:32:16','2019-12-23 07:41:55'),(5686,'accounting','3.88.176.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 08:35:37','2019-12-23 08:35:37'),(5687,'chemistry','52.207.237.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 10:59:07','2019-12-23 10:59:07'),(5688,'physics','54.90.171.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 12:33:14','2019-12-23 12:33:14'),(5689,'englishlit','3.94.55.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 14:39:35','2019-12-23 14:39:35'),(5690,'chemistry','105.112.24.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 16:46:27','2019-12-23 16:46:27'),(5691,'english','34.230.73.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 17:01:58','2019-12-23 17:01:58'),(5692,'englishlit','3.81.216.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 21:28:10','2019-12-23 21:28:10'),(5693,'currentaffairs','107.22.114.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 22:06:26','2019-12-23 22:06:26'),(5694,'englishlit','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:36:52','2019-12-24 00:36:52'),(5695,'crk','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:42:20','2019-12-24 00:42:20'),(5696,'chemistry','3.88.226.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 02:28:27','2019-12-24 02:28:27'),(5697,'economics','18.212.81.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 03:34:43','2019-12-24 03:34:43'),(5698,'government','3.84.146.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 04:34:22','2019-12-24 04:34:22'),(5699,'crk','54.89.84.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 07:50:50','2019-12-24 07:50:50'),(5700,'chemistry','41.203.73.248',604,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:03:43','2019-12-24 09:45:17'),(5701,'english','41.203.73.248',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:12:17','2019-12-24 09:12:20'),(5702,'mathematics','41.203.73.248',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:29:46','2019-12-24 09:32:59'),(5703,'chemistry','41.203.73.144',121,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 10:18:01','2019-12-24 11:28:03'),(5704,'physics','41.203.73.144',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 11:28:36','2019-12-24 11:28:39'),(5705,'english','54.234.136.92',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 11:35:59','2019-12-24 11:35:59'),(5706,'english','108.173.207.253',10,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 18:30:37','2019-12-24 18:32:01'),(5707,'english','54.86.42.151',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 19:06:22','2019-12-24 19:06:22'),(5708,'physics','54.162.161.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 02:38:17','2019-12-25 02:38:17'),(5709,'currentaffairs','54.158.129.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 09:00:12','2019-12-25 09:00:12'),(5710,'currentaffairs','34.201.150.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 10:02:21','2019-12-25 10:02:21'),(5711,'chemistry','197.211.58.122',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 12:27:20','2019-12-25 12:27:41'),(5712,'civiledu','184.72.131.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 14:01:27','2019-12-25 14:01:27'),(5713,'english','41.190.31.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:21:37','2019-12-25 17:21:37'),(5714,'english','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:51:12','2019-12-25 17:51:12'),(5715,'accounting','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 18:07:03','2019-12-25 18:07:03'),(5716,'englishlit','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 19:07:55','2019-12-25 19:07:55'),(5717,'commerce','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:07','2019-12-26 09:45:08'),(5718,'chemistry','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5719,'englishlit','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5720,'government','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5721,'geography','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5722,'irk','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5723,'insurance','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5724,'chemistry','197.210.53.171',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:00','2019-12-26 11:07:17'),(5725,'chemistry','197.210.52.12',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:37','2020-04-07 18:47:51'),(5726,'chemistry','197.210.53.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:49','2019-12-26 10:58:49'),(5727,'chemistry','159.138.149.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:12','2019-12-26 12:40:12'),(5728,'chemistry','159.138.158.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:19','2019-12-26 12:40:19'),(5729,'chemistry','159.138.155.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:40','2019-12-26 12:40:40'),(5730,'chemistry','159.138.157.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:42','2019-12-26 12:40:42'),(5731,'chemistry','159.138.153.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:37','2019-12-26 12:41:37'),(5732,'chemistry','159.138.148.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:39','2019-12-26 12:41:39'),(5733,'chemistry','40.77.167.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 16:52:21','2019-12-26 16:52:21'),(5734,'chemistry','151.80.39.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 18:13:53','2019-12-26 18:13:53'),(5735,'mathematics','54.92.139.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 19:28:36','2019-12-26 19:28:36'),(5736,'commerce','3.83.25.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 21:13:20','2019-12-26 21:13:20'),(5737,'government','3.86.200.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 22:19:35','2019-12-26 22:19:35'),(5738,'insurance','54.236.119.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 01:39:51','2019-12-27 01:39:51'),(5739,'english','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:11:47','2019-12-27 04:11:47'),(5740,'crk','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:17:19','2019-12-27 04:17:19'),(5741,'mathematics','105.112.18.136',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 08:38:34','2019-12-27 08:38:35'),(5742,'civiledu','52.4.139.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 11:24:11','2019-12-27 11:24:11'),(5743,'mathematics','52.70.132.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:02:50','2019-12-27 12:02:50'),(5744,'chemistry','54.36.149.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:04:00','2019-12-27 12:04:00'),(5745,'geography','34.229.11.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 15:04:56','2019-12-27 15:04:56'),(5746,'economics','54.82.208.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 17:32:43','2019-12-27 17:32:43'),(5747,'geography','3.95.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 18:44:54','2019-12-27 18:44:54'),(5748,'chemistry','41.203.73.152',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:28:07','2019-12-28 05:58:59'),(5749,'geography','18.232.139.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:38:53','2019-12-27 19:38:53'),(5750,'chemistry','207.46.13.72',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:58:11','2019-12-27 19:58:11'),(5751,'english','18.212.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 21:36:45','2019-12-27 21:36:45'),(5752,'geography','3.81.112.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 22:26:48','2019-12-27 22:26:48'),(5753,'englishlit','3.95.29.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 07:09:48','2019-12-28 07:09:48'),(5754,'geography','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 08:46:11','2019-12-28 08:46:11'),(5755,'chemistry','157.55.39.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:01:00','2019-12-28 13:56:07'),(5756,'physics','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:07:43','2019-12-28 09:07:43'),(5757,'currentaffairs','3.90.16.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:52:08','2019-12-28 09:52:08'),(5758,'chemistry','198.27.70.196',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 13:04:37','2019-12-28 13:05:18'),(5759,'economics','54.208.246.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 16:54:27','2019-12-28 16:54:27'),(5760,'physics','3.90.201.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 21:17:55','2019-12-28 21:17:55'),(5761,'englishlit','54.88.31.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 22:11:00','2019-12-28 22:11:00'),(5762,'chemistry','46.229.168.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 00:53:10','2019-12-29 00:53:10'),(5763,'mathematics','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 01:48:09','2019-12-29 01:48:09'),(5764,'geography','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:00:13','2019-12-29 02:00:13'),(5765,'government','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:45:45','2019-12-29 02:45:45'),(5766,'mathematics','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 03:11:26','2019-12-29 03:11:26'),(5767,'mathematics','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:29:09','2019-12-29 04:29:09'),(5768,'insurance','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:50:21','2019-12-29 04:50:21'),(5769,'accounting','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 06:48:58','2019-12-29 06:48:58'),(5770,'history','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 07:05:29','2019-12-29 07:05:29'),(5771,'geography','18.212.192.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 14:35:59','2019-12-29 14:35:59'),(5772,'chemistry','159.138.157.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 15:56:34','2019-12-29 15:56:34'),(5773,'chemistry','159.138.156.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:52','2019-12-29 16:06:52'),(5774,'chemistry','159.138.156.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:54','2019-12-29 16:06:54'),(5775,'chemistry','159.138.151.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:08','2019-12-29 16:17:08'),(5776,'chemistry','159.138.155.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:10','2019-12-29 16:17:10'),(5777,'chemistry','54.173.230.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 17:07:40','2019-12-29 17:07:40'),(5778,'chemistry','77.88.5.57',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 20:09:09','2020-02-17 06:41:03'),(5779,'chemistry','105.112.37.95',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 22:46:03','2019-12-29 22:48:25'),(5780,'accounting','54.162.107.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 00:28:34','2019-12-30 00:28:34'),(5781,'chemistry','5.196.87.181',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:24:52','2019-12-30 07:24:52'),(5782,'chemistry','5.196.87.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:28:37','2019-12-30 07:28:37'),(5783,'chemistry','151.80.39.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:31:37','2019-12-30 07:31:37'),(5784,'history','3.80.177.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 10:00:20','2019-12-30 10:00:20'),(5785,'chemistry','41.87.80.10',177,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:52:05','2020-01-03 12:40:11'),(5786,'english','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:05','2020-01-03 09:47:26'),(5787,'biology','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:35','2020-01-06 10:18:55'),(5788,'physics','41.87.80.10',238,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 12:26:15','2020-01-14 13:07:03'),(5789,'chemistry','197.210.71.107',112,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 18:08:04','2019-12-30 21:50:09'),(5790,'government','54.227.176.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 01:11:30','2019-12-31 01:11:30'),(5791,'englishlit','107.22.1.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 02:42:52','2019-12-31 02:42:52'),(5792,'geography','41.87.80.10',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:35','2020-01-03 09:11:05'),(5793,'mathematics','41.87.80.10',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:42','2020-01-03 12:40:26'),(5794,'commerce','41.87.80.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 11:27:07','2019-12-31 15:11:01'),(5795,'physics','197.210.85.161',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:01','2019-12-31 21:44:09'),(5796,'geography','197.210.85.161',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:36','2019-12-31 21:17:50'),(5797,'commerce','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:39','2019-12-31 17:35:25'),(5798,'biology','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:27:53','2019-12-31 17:50:46'),(5799,'mathematics','197.210.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:22','2019-12-31 17:35:22'),(5800,'english','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:50','2019-12-31 17:50:42'),(5801,'chemistry','197.210.85.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 19:06:57','2019-12-31 21:19:14'),(5802,'biology','54.89.212.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 20:08:07','2019-12-31 20:08:07'),(5803,'history','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:24:33','2019-12-31 21:24:33'),(5804,'insurance','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:51:19','2019-12-31 21:51:19'),(5805,'economics','3.83.156.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 23:11:47','2019-12-31 23:11:47'),(5806,'economics','54.159.177.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 00:29:53','2020-01-01 00:29:53'),(5807,'history','34.235.146.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 02:22:24','2020-01-01 02:22:24'),(5808,'physics','197.210.70.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:22:07','2020-01-01 06:22:07'),(5809,'accounting','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:52:22','2020-01-01 06:52:22'),(5810,'chemistry','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 07:22:30','2020-01-01 07:22:30'),(5811,'history','3.82.145.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 12:16:11','2020-01-01 12:16:11'),(5812,'physics','197.210.64.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:45','2020-01-01 13:42:45'),(5813,'geography','197.210.65.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:52','2020-01-01 13:42:52'),(5814,'physics','197.210.47.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:07:21','2020-01-01 14:07:21'),(5815,'irk','3.86.222.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:39:17','2020-01-01 14:39:17'),(5816,'crk','54.173.160.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 19:37:03','2020-01-01 19:37:03'),(5817,'economics','54.81.159.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 20:29:55','2020-01-01 20:29:55'),(5818,'commerce','34.207.138.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 23:01:12','2020-01-01 23:01:12'),(5819,'crk','3.84.24.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 04:49:38','2020-01-02 04:49:38'),(5820,'chemistry','197.210.227.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:20:08','2020-01-02 05:20:08'),(5821,'chemistry','197.210.226.177',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:22:40','2020-01-02 05:23:22'),(5822,'chemistry','197.210.227.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:23:39','2020-01-02 05:24:16'),(5823,'accounting','3.81.217.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 06:18:28','2020-01-02 06:18:28'),(5824,'economics','3.84.17.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 10:40:34','2020-01-02 10:40:34'),(5825,'chemistry','159.138.152.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:40','2020-01-02 11:34:40'),(5826,'chemistry','159.138.154.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:41','2020-01-02 11:34:41'),(5827,'chemistry','159.138.149.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:19','2020-01-02 13:42:19'),(5828,'chemistry','159.138.155.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:22','2020-01-02 13:42:22'),(5829,'english','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:16','2020-01-02 13:48:16'),(5830,'chemistry','197.210.53.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:29','2020-01-02 13:48:29'),(5831,'biology','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:54','2020-01-02 13:48:54'),(5832,'chemistry','40.77.167.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 14:52:08','2020-01-02 14:52:08'),(5833,'chemistry','173.252.87.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:12:40','2020-01-02 15:12:40'),(5834,'chemistry','105.112.96.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:14:54','2020-01-02 15:15:27'),(5835,'government','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:23:11','2020-01-02 15:23:11'),(5836,'chemistry','197.210.29.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:01:48','2020-01-02 16:01:48'),(5837,'chemistry','54.198.147.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:20:52','2020-01-02 16:20:52'),(5838,'geography','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:21:06','2020-01-02 18:21:06'),(5839,'government','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:53:06','2020-01-02 18:53:06'),(5840,'chemistry','141.0.12.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:46:34','2020-01-02 19:46:34'),(5841,'chemistry','54.36.148.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:54:13','2020-01-02 19:54:13'),(5842,'chemistry','107.167.116.51',81,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:22:38','2020-01-02 20:56:21'),(5843,'chemistry','69.171.251.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:25:00','2020-01-02 20:25:00'),(5844,'chemistry','173.252.95.39',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:27:00','2020-01-02 20:27:01'),(5845,'chemistry','105.112.107.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:44:23','2020-01-02 20:44:23'),(5846,'chemistry','197.210.85.199',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:48:24','2020-01-02 21:10:22'),(5847,'chemistry','173.252.127.12',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:56:49','2020-01-02 20:56:52'),(5848,'physics','107.167.107.19',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:06:13','2020-01-02 23:06:17'),(5849,'physics','105.112.121.61',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:07:14','2020-01-02 23:08:11'),(5850,'physics','107.167.107.16',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:19','2020-01-02 23:12:21'),(5851,'physics','105.112.112.87',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:44','2020-01-02 23:12:47'),(5852,'commerce','18.206.201.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:19:52','2020-01-02 23:19:52'),(5853,'economics','50.19.154.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:46:41','2020-01-03 01:31:33'),(5854,'accounting','50.19.154.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:56:30','2020-01-03 00:56:30'),(5855,'crk','3.82.121.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 03:17:13','2020-01-03 03:17:13'),(5856,'insurance','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 05:01:58','2020-01-03 05:01:58'),(5857,'mathematics','105.112.177.41',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 07:28:37','2020-01-03 07:28:38'),(5858,'accounting','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:14:39','2020-01-03 09:14:39'),(5859,'englishlit','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:40:09','2020-01-03 09:40:09'),(5860,'chemistry','173.252.127.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5861,'chemistry','173.252.127.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5862,'chemistry','69.171.251.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 10:12:20','2020-01-03 10:12:20'),(5863,'english','52.23.234.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 11:11:09','2020-01-03 11:11:09'),(5864,'chemistry','54.36.149.6',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 12:32:58','2020-01-03 12:32:58'),(5865,'chemistry','173.252.127.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5866,'chemistry','173.252.127.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5867,'accounting','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:47:56','2020-01-03 22:47:56'),(5868,'crk','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:59:55','2020-01-03 22:59:55'),(5869,'crk','18.234.186.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 00:39:01','2020-01-04 00:39:01'),(5870,'accounting','52.206.79.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 01:50:47','2020-01-04 01:50:47'),(5871,'mathematics','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5872,'commerce','3.83.117.183',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:17'),(5873,'accounting','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5874,'englishlit','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5875,'crk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5876,'irk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5877,'civiledu','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5878,'chemistry','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:25:30','2020-01-04 07:25:30'),(5879,'physics','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:54:21','2020-01-04 07:54:21'),(5880,'accounting','54.211.18.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 08:33:09','2020-01-04 08:33:09'),(5881,'englishlit','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:26:47','2020-01-04 09:26:47'),(5882,'physics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:28:39','2020-01-04 09:28:39'),(5883,'insurance','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:47:41','2020-01-04 09:47:41'),(5884,'geography','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:14','2020-01-04 09:54:14'),(5885,'english','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:18','2020-01-04 09:54:18'),(5886,'mathematics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:24','2020-01-04 09:54:24'),(5887,'chemistry','159.138.158.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:29:58','2020-01-04 10:29:58'),(5888,'chemistry','159.138.153.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:30:00','2020-01-04 10:30:00'),(5889,'currentaffairs','34.203.237.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 13:00:10','2020-01-04 13:00:10'),(5890,'chemistry','159.138.152.167',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 14:50:39','2020-01-04 14:50:39'),(5891,'english','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:36:52','2020-01-04 15:36:52'),(5892,'englishlit','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:40:27','2020-01-04 15:40:27'),(5893,'crk','35.174.5.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 19:26:20','2020-01-04 19:26:20'),(5894,'chemistry','197.210.226.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:08:58','2020-01-04 22:08:58'),(5895,'economics','18.232.58.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:09:24','2020-01-04 22:09:24'),(5896,'chemistry','18.206.248.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 00:08:29','2020-01-05 00:08:29'),(5897,'government','34.207.181.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 01:22:25','2020-01-05 01:22:25'),(5898,'englishlit','3.92.193.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 02:40:51','2020-01-05 02:40:51'),(5899,'crk','52.23.188.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 05:08:41','2020-01-05 05:08:41'),(5900,'english','52.207.216.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 07:59:31','2020-01-05 07:59:31'),(5901,'english','150.70.168.143',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 13:37:22','2020-01-05 13:37:25'),(5902,'english','35.173.133.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 16:54:20','2020-01-05 16:54:20'),(5903,'chemistry','159.138.154.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:07','2020-01-05 19:39:07'),(5904,'chemistry','159.138.157.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:10','2020-01-05 19:39:10'),(5905,'chemistry','197.211.58.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:13:15','2020-01-05 20:13:24'),(5906,'physics','66.102.8.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:39:20','2020-01-05 20:39:20'),(5907,'biology','66.102.8.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:40:26','2020-01-05 20:41:57'),(5908,'english','66.102.8.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:41:46','2020-01-05 20:41:46'),(5909,'physics','197.210.71.215',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:23','2020-01-05 21:15:06'),(5910,'geography','197.210.71.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:29','2020-01-05 20:46:29'),(5911,'mathematics','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:44','2020-01-05 20:51:35'),(5912,'chemistry','197.210.71.215',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:04','2020-04-05 08:30:45'),(5913,'biology','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:51','2020-01-05 20:52:21'),(5914,'commerce','197.210.71.215',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:48:01','2020-01-05 20:52:36'),(5915,'chemistry','40.77.167.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 04:41:04','2020-01-06 04:41:04'),(5916,'physics','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 06:59:39','2020-01-06 06:59:39'),(5917,'biology','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:25','2020-01-06 07:01:25'),(5918,'chemistry','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:36','2020-01-06 07:01:36'),(5919,'biology','54.196.116.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 08:39:32','2020-01-06 08:39:32'),(5920,'currentaffairs','52.90.145.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 09:20:05','2020-01-06 09:20:05'),(5921,'currentaffairs','54.81.36.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 10:59:33','2020-01-06 10:59:33'),(5922,'civiledu','54.165.53.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 14:25:40','2020-01-06 14:25:40'),(5923,'english','54.165.254.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 19:05:30','2020-01-06 19:05:30'),(5924,'englishlit','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 20:46:10','2020-01-06 20:46:10'),(5925,'accounting','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 23:28:47','2020-01-06 23:28:47'),(5926,'chemistry','40.77.167.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 00:55:53','2020-01-07 00:55:53'),(5927,'chemistry','197.210.85.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 10:49:45','2020-01-07 10:49:45'),(5928,'chemistry','114.119.144.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 16:29:50','2020-01-07 16:29:50'),(5929,'mathematics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:22','2020-01-07 19:50:22'),(5930,'biology','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5931,'physics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5932,'chemistry','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5933,'englishlit','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5934,'government','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5935,'history','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5936,'history','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:03:53','2020-01-08 00:03:53'),(5937,'mathematics','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:14:17','2020-01-08 00:14:17'),(5938,'commerce','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 02:50:48','2020-01-08 02:50:48'),(5939,'government','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:21:02','2020-01-08 03:21:02'),(5940,'physics','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:30','2020-01-08 03:49:31'),(5941,'accounting','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:55','2020-01-08 03:49:56'),(5942,'mathematics','105.112.24.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 05:26:53','2020-01-08 05:26:53'),(5943,'insurance','18.234.250.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:04:04','2020-01-08 07:04:04'),(5944,'chemistry','157.55.39.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:32:02','2020-01-08 07:32:03'),(5945,'english','3.90.5.24',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 08:20:47','2020-01-08 08:20:48'),(5946,'chemistry','197.210.152.54',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 09:59:01','2020-01-08 10:01:03'),(5947,'biology','197.210.152.54',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:01:17','2020-01-08 10:01:54'),(5948,'crk','54.175.37.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:33:34','2020-01-08 10:33:34'),(5949,'english','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 11:25:14','2020-01-08 11:25:14'),(5950,'mathematics','3.89.141.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 18:26:35','2020-01-08 18:26:35'),(5951,'geography','3.90.5.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 21:36:06','2020-01-08 21:36:06'),(5952,'economics','54.224.174.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 01:24:15','2020-01-09 01:24:15'),(5953,'geography','3.92.200.47',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 02:38:09','2020-01-09 02:46:31'),(5954,'english','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:01:22','2020-01-09 05:01:22'),(5955,'geography','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:35:09','2020-01-09 05:35:09'),(5956,'chemistry','114.119.158.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 08:20:35','2020-01-09 08:20:35'),(5957,'chemistry','197.210.84.180',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:25','2020-01-09 11:42:25'),(5958,'chemistry','66.249.93.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:27','2020-01-09 11:42:29'),(5959,'geography','3.81.50.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 15:48:20','2020-01-09 15:48:20'),(5960,'englishlit','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:10:05','2020-01-09 17:10:05'),(5961,'physics','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:29:29','2020-01-09 17:29:29'),(5962,'currentaffairs','54.91.26.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 20:05:46','2020-01-09 20:05:46'),(5963,'biology','54.90.217.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 23:39:42','2020-01-09 23:39:42'),(5964,'economics','3.88.190.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 04:30:45','2020-01-10 04:30:45'),(5965,'chemistry','159.138.155.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:39','2020-01-10 05:45:39'),(5966,'chemistry','159.138.148.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:42','2020-01-10 05:45:42'),(5967,'physics','3.90.20.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 07:05:46','2020-01-10 07:05:46'),(5968,'mathematics','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 09:57:03','2020-01-10 09:57:03'),(5969,'geography','54.242.86.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 14:16:02','2020-01-10 14:16:02'),(5970,'mathematics','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:33:50','2020-01-10 15:33:50'),(5971,'government','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:52:04','2020-01-10 15:52:04'),(5972,'mathematics','105.112.177.83',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 16:08:56','2020-01-10 16:08:57'),(5973,'mathematics','54.92.183.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 17:00:01','2020-01-10 17:00:01'),(5974,'accounting','54.175.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 19:11:24','2020-01-10 19:11:24'),(5975,'history','54.196.1.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 20:19:00','2020-01-10 20:19:00'),(5976,'insurance','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:04:48','2020-01-11 00:04:48'),(5977,'englishlit','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:23:07','2020-01-11 00:23:07'),(5978,'chemistry','157.55.39.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 07:47:08','2020-01-11 07:47:08'),(5979,'geography','3.85.229.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 08:19:26','2020-01-11 08:19:26'),(5980,'currentaffairs','54.210.29.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 09:17:59','2020-01-11 09:17:59'),(5981,'chemistry','129.205.112.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:01:54','2020-01-11 10:01:54'),(5982,'chemistry','114.119.163.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:12:45','2020-01-11 10:12:45'),(5983,'biology','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:49:13','2020-01-11 10:49:13'),(5984,'english','41.190.3.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:50:45','2020-01-11 10:53:17'),(5985,'government','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:03','2020-01-11 10:57:03'),(5986,'currentaffairs','3.81.114.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:29','2020-01-11 10:57:29'),(5987,'accounting','34.224.97.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 20:14:24','2020-01-11 20:14:24'),(5988,'history','34.228.161.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 03:43:41','2020-01-12 03:43:41'),(5989,'chemistry','54.36.150.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 07:38:14','2020-01-12 07:38:17'),(5990,'chemistry','66.249.66.159',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:18:04','2020-01-12 20:11:39'),(5991,'chemistry','207.46.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:37:09','2020-01-12 16:37:09'),(5992,'chemistry','41.206.30.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 11:30:26','2020-01-13 11:30:26'),(5993,'chemistry','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:08','2020-01-13 17:08:08'),(5994,'biology','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:51','2020-01-13 17:08:51'),(5995,'biology','3.95.28.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:38:02','2020-01-13 17:38:02'),(5996,'chemistry','105.112.21.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:40:01','2020-01-13 17:42:28'),(5997,'history','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 19:43:41','2020-01-13 19:43:41'),(5998,'insurance','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:27','2020-01-13 20:05:27'),(5999,'economics','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:30','2020-01-13 20:05:30'),(6000,'mathematics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6001,'commerce','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6002,'biology','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6003,'government','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6004,'economics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6005,'irk','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6006,'insurance','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6007,'english','18.209.172.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:02:39','2020-01-13 22:02:39'),(6008,'economics','3.83.111.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:58:30','2020-01-13 22:58:30'),(6009,'history','54.159.7.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 01:49:56','2020-01-14 01:49:56'),(6010,'accounting','18.215.161.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 03:52:50','2020-01-14 03:52:50'),(6011,'mathematics','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:35:01','2020-01-14 04:35:01'),(6012,'chemistry','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:56:46','2020-01-14 04:56:46'),(6013,'chemistry','105.112.106.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 06:53:23','2020-01-14 06:53:23'),(6014,'irk','34.237.245.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 10:17:26','2020-01-14 10:17:26'),(6015,'physics','197.210.64.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 12:36:48','2020-01-14 12:36:48'),(6016,'chemistry','162.238.118.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:13:49','2020-01-14 13:13:49'),(6017,'crk','54.145.57.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:25:40','2020-01-14 13:25:40'),(6018,'mathematics','52.91.218.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:29:53','2020-01-14 14:29:56'),(6019,'biology','52.91.218.226',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:31:04','2020-01-14 14:31:07'),(6020,'physics','197.210.226.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 16:50:50','2020-01-14 16:50:50'),(6021,'commerce','54.152.183.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 17:45:43','2020-01-14 17:45:43'),(6022,'chemistry','197.211.58.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 19:02:46','2020-01-14 19:02:46'),(6023,'accounting','18.206.115.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:06:49','2020-01-14 20:06:49'),(6024,'physics','197.210.227.105',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:18:08','2020-01-14 21:20:01'),(6025,'chemistry','105.112.112.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:27:30','2020-01-14 20:27:30'),(6026,'physics','197.210.227.176',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:14:48','2020-01-14 21:18:53'),(6027,'physics','197.210.226.126',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:19:38','2020-01-14 21:19:39'),(6028,'biology','66.249.66.128',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 22:53:39','2020-01-14 22:53:41'),(6029,'economics','34.229.47.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 01:05:22','2020-01-15 01:05:22'),(6030,'chemistry','18.212.26.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 02:18:02','2020-01-15 02:18:02'),(6031,'chemistry','54.208.21.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 05:24:27','2020-01-15 05:24:27'),(6032,'chemistry','159.138.152.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:16','2020-01-15 07:37:16'),(6033,'chemistry','159.138.157.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:19','2020-01-15 07:37:19'),(6034,'government','100.26.203.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:42:28','2020-01-15 08:42:28'),(6035,'chemistry','197.210.29.194',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:53:58','2020-01-15 08:54:11'),(6036,'physics','34.236.147.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 09:37:53','2020-01-15 09:37:56'),(6037,'economics','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 12:29:24','2020-01-15 12:29:24'),(6038,'insurance','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 14:56:31','2020-01-15 14:56:31'),(6039,'economics','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:09:36','2020-01-15 15:09:36'),(6040,'crk','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:19:41','2020-01-15 15:19:41'),(6041,'chemistry','197.210.45.172',92,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:26:03','2020-01-15 15:31:10'),(6042,'commerce','18.209.5.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 17:07:51','2020-01-15 17:07:51'),(6043,'chemistry','197.211.58.205',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 20:53:18','2020-01-15 20:53:44'),(6044,'chemistry','197.211.58.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:03','2020-01-15 21:02:03'),(6045,'englishlit','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:38','2020-01-15 21:02:38'),(6046,'accounting','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:11:49','2020-01-15 21:11:49'),(6047,'chemistry','76.227.27.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:26:06','2020-01-15 21:35:01'),(6048,'english','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:19:54','2020-01-15 22:19:54'),(6049,'crk','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:34:26','2020-01-15 22:34:26'),(6050,'chemistry','159.138.158.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:24','2020-01-16 03:41:24'),(6051,'chemistry','159.138.154.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:27','2020-01-16 03:41:27'),(6052,'chemistry','37.150.17.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 09:03:33','2020-01-16 09:03:33'),(6053,'english','54.226.244.165',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 10:17:00','2020-01-16 10:17:03'),(6054,'insurance','34.229.6.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 12:22:59','2020-01-16 12:22:59'),(6055,'englishlit','100.26.51.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 14:37:15','2020-01-16 14:37:15'),(6056,'accounting','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:45:59','2020-01-16 15:45:59'),(6057,'physics','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:48:23','2020-01-16 15:48:23'),(6058,'english','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:15:39','2020-01-16 18:15:39'),(6059,'currentaffairs','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:19:03','2020-01-16 18:19:03'),(6060,'chemistry','18.205.239.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 19:22:43','2020-01-16 19:22:43'),(6061,'crk','54.209.182.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 20:55:34','2020-01-16 20:55:34'),(6062,'crk','52.87.197.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 21:40:29','2020-01-16 21:40:29'),(6063,'englishlit','54.90.245.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 22:42:09','2020-01-16 22:42:09'),(6064,'englishlit','52.91.61.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 00:58:04','2020-01-17 00:58:04'),(6065,'chemistry','174.129.61.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 03:28:11','2020-01-17 03:28:11'),(6066,'government','3.85.188.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 04:20:24','2020-01-17 04:20:24'),(6067,'chemistry','159.138.155.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:19','2020-01-17 05:35:19'),(6068,'chemistry','159.138.154.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:20','2020-02-24 05:01:25'),(6069,'crk','18.234.143.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 07:39:30','2020-01-17 07:39:30'),(6070,'chemistry','159.138.150.55',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 10:29:28','2020-01-17 10:29:29'),(6071,'chemistry','159.138.153.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:18','2020-01-17 13:26:18'),(6072,'chemistry','159.138.156.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:21','2020-01-17 13:26:21'),(6073,'accounting','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:31:59','2020-01-17 18:31:59'),(6074,'english','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:32:57','2020-01-17 18:32:57'),(6075,'history','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 23:43:23','2020-01-17 23:43:23'),(6076,'chemistry','84.241.193.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 02:10:58','2020-01-18 02:10:58'),(6077,'economics','54.147.112.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:09:08','2020-01-18 04:09:08'),(6078,'chemistry','159.138.128.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:53','2020-01-18 04:22:53'),(6079,'chemistry','159.138.150.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:55','2020-01-18 04:22:55'),(6080,'accounting','52.207.178.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:28:30','2020-01-18 11:06:20'),(6081,'history','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:30:16','2020-01-18 10:30:16'),(6082,'englishlit','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:36:43','2020-01-18 10:36:43'),(6083,'chemistry','197.210.65.53',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-18 21:33:39','2020-04-21 11:21:31'),(6084,'chemistry','197.210.65.246',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:05','2020-01-18 21:51:06'),(6085,'chemistry','197.210.65.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:24','2020-01-18 21:51:24'),(6086,'chemistry','197.210.65.33',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:40','2020-01-18 21:51:44'),(6087,'chemistry','197.210.64.160',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:52:12','2020-01-18 21:52:15'),(6088,'physics','197.210.47.29',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:54:25','2020-01-18 21:54:28'),(6089,'mathematics','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:39:47','2020-01-19 11:39:47'),(6090,'government','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:50:10','2020-01-19 11:50:10'),(6091,'chemistry','5.186.127.79',196,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:25:22','2020-03-07 23:25:18'),(6092,'englishlit','5.186.127.79',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:58:08','2020-02-03 17:34:24'),(6093,'commerce','3.82.117.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 14:53:51','2020-01-19 14:53:51'),(6094,'english','54.225.22.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 18:38:53','2020-01-19 18:38:53'),(6095,'chemistry','41.190.31.147',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 22:23:33','2020-01-19 22:23:33'),(6096,'geography','18.232.68.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 05:23:53','2020-01-20 05:23:53'),(6097,'geography','54.159.45.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:03:51','2020-01-20 06:03:51'),(6098,'geography','100.27.24.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:45:32','2020-01-20 06:45:32'),(6099,'physics','54.227.113.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 13:15:49','2020-01-20 13:15:49'),(6100,'geography','34.203.192.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:05:57','2020-01-20 14:05:57'),(6101,'english','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:10:11','2020-01-20 14:10:14'),(6102,'accounting','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:13:50','2020-01-20 14:13:53'),(6103,'biology','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:17:51','2020-01-20 14:17:54'),(6104,'chemistry','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:21:26','2020-01-20 14:21:29'),(6105,'commerce','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:31:36','2020-01-20 14:31:39'),(6106,'geography','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:36:02','2020-01-20 14:36:05'),(6107,'history','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:38:08','2020-01-20 14:38:11'),(6108,'physics','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:44:17','2020-01-20 14:44:20'),(6109,'chemistry','34.203.190.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:47:27','2020-01-20 14:47:27'),(6110,'englishlit','18.208.215.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 15:44:11','2020-01-20 15:44:11'),(6111,'biology','54.163.24.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 20:05:22','2020-01-20 20:05:22'),(6112,'currentaffairs','54.224.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 21:53:39','2020-01-20 21:53:39'),(6113,'biology','54.224.78.213',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 22:15:45','2020-01-20 22:15:47'),(6114,'englishlit','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:06:37','2020-01-21 04:06:37'),(6115,'physics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:24:39','2020-01-21 04:24:39'),(6116,'economics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:38:24','2020-01-21 04:38:24'),(6117,'mathematics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:05:21','2020-01-21 05:05:21'),(6118,'commerce','34.207.229.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:42:09','2020-01-21 05:42:09'),(6119,'mathematics','3.80.112.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 08:48:34','2020-01-21 08:48:34'),(6120,'chemistry','159.138.156.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:02','2020-01-21 09:08:02'),(6121,'chemistry','159.138.155.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:05','2020-01-21 09:08:05'),(6122,'insurance','34.201.67.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:58:44','2020-01-21 09:58:44'),(6123,'chemistry','34.201.67.206',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 10:24:35','2020-01-21 10:24:39'),(6124,'crk','3.84.124.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 11:25:57','2020-01-21 11:25:57'),(6125,'english','54.82.117.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 12:39:35','2020-01-21 12:39:38'),(6126,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6127,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6128,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6129,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6130,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6131,'chemistry','197.210.65.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:51:28','2020-01-21 16:51:28'),(6132,'geography','34.235.141.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 17:46:43','2020-01-21 17:46:43'),(6133,'mathematics','54.221.179.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 23:42:47','2020-01-21 23:42:47'),(6134,'accounting','54.88.104.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 05:24:34','2020-01-22 05:24:34'),(6135,'chemistry','52.91.210.222',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:50'),(6136,'chemistry','52.91.210.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:17'),(6137,'english','197.210.45.42',52,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:07:55','2020-01-22 10:20:09'),(6138,'chemistry','197.210.45.42',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:16:58','2020-01-22 10:17:01'),(6139,'english','197.210.84.40',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 11:05:36','2020-01-22 11:07:18'),(6140,'accounting','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:06:53','2020-01-22 14:06:56'),(6141,'biology','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:16:26','2020-01-22 14:16:29'),(6142,'chemistry','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:17:57','2020-01-22 14:18:00'),(6143,'commerce','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:24:26','2020-01-22 14:24:28'),(6144,'english','3.85.50.174',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:28:45','2020-01-22 14:31:27'),(6145,'geography','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:44:20','2020-01-22 14:44:23'),(6146,'government','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:49:57','2020-01-22 14:50:00'),(6147,'history','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:52:09','2020-01-22 14:52:12'),(6148,'physics','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:57:23','2020-01-22 14:57:26'),(6149,'mathematics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:06:42','2020-01-22 19:06:42'),(6150,'physics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:10:39','2020-01-22 19:10:40'),(6151,'physics','105.112.178.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 01:21:24','2020-01-23 01:21:24'),(6152,'history','54.242.9.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 07:11:29','2020-01-23 07:11:29'),(6153,'accounting','3.95.2.128',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:02:04','2020-01-23 12:49:19'),(6154,'biology','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:11:55','2020-01-23 12:54:42'),(6155,'chemistry','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:16:26','2020-01-23 12:57:07'),(6156,'commerce','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:25:56','2020-01-23 13:00:45'),(6157,'geography','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:34:50','2020-01-23 13:07:52'),(6158,'government','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:42:08','2020-01-23 13:08:44'),(6159,'english','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:43:06','2020-01-23 13:02:16'),(6160,'history','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:46:06','2020-01-23 13:11:05'),(6161,'physics','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:53:50','2020-01-23 13:18:26'),(6162,'chemistry','78.67.8.249',190,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 11:18:52','2020-05-28 07:54:26'),(6163,'biology','54.226.136.136',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 11:47:50','2020-01-23 11:47:50'),(6164,'insurance','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:24:44','2020-01-23 12:24:44'),(6165,'economics','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:33:40','2020-01-23 12:33:40'),(6166,'chemistry','3.83.32.171',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 14:11:16','2020-01-23 14:46:53'),(6167,'history','54.80.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 15:21:18','2020-01-23 15:21:18'),(6168,'accounting','54.227.208.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 19:10:55','2020-01-23 19:10:55'),(6169,'chemistry','114.119.129.17',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:30:35','2020-01-23 22:30:35'),(6170,'chemistry','54.145.181.222',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:34:50','2020-01-23 22:34:50'),(6171,'english','66.249.66.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:23:18','2020-01-24 01:23:18'),(6172,'chemistry','159.138.153.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:26','2020-01-24 01:38:26'),(6173,'chemistry','159.138.155.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:28','2020-01-24 01:38:28'),(6174,'irk','54.221.33.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 02:21:24','2020-01-24 02:21:24'),(6175,'crk','3.92.163.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 07:56:53','2020-01-24 07:56:53'),(6176,'chemistry','159.138.155.158',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:33:54','2020-01-24 09:33:54'),(6177,'chemistry','159.138.155.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:02','2020-01-24 09:34:02'),(6178,'chemistry','159.138.159.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:05','2020-01-24 09:34:05'),(6179,'chemistry','159.138.158.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:55','2020-01-24 11:45:55'),(6180,'chemistry','159.138.152.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:58','2020-01-24 11:45:58'),(6181,'commerce','54.234.15.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 12:20:42','2020-01-24 12:20:42'),(6182,'crk','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:21:36','2020-01-24 16:21:36'),(6183,'accounting','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:29:29','2020-01-24 16:29:29'),(6184,'english','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:48','2020-01-24 18:50:48'),(6185,'mathematics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6186,'commerce','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6187,'chemistry','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6188,'geography','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6189,'economics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6190,'insurance','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6191,'chemistry','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:38:45','2020-01-24 19:38:47'),(6192,'chemistry','159.138.155.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:17','2020-01-24 19:48:17'),(6193,'chemistry','159.138.157.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:20','2020-01-24 19:48:20'),(6194,'economics','54.234.219.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 21:16:38','2020-01-24 21:16:38'),(6195,'chemistry','54.82.250.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 00:25:04','2020-01-25 00:25:04'),(6196,'geography','52.91.20.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 02:53:58','2020-01-25 02:53:58'),(6197,'government','52.205.208.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 05:54:14','2020-01-25 05:54:14'),(6198,'government','3.82.98.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 06:50:25','2020-01-25 06:50:25'),(6199,'economics','18.232.150.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 07:40:32','2020-01-25 07:40:32'),(6200,'chemistry','66.249.64.112',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:00:41','2020-01-25 10:06:05'),(6201,'chemistry','66.249.64.114',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:11:26','2020-01-25 10:25:38'),(6202,'insurance','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:06:32','2020-01-25 11:06:32'),(6203,'crk','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:16:24','2020-01-25 11:16:24'),(6204,'mathematics','105.112.177.119',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 12:21:44','2020-01-25 12:24:10'),(6205,'economics','184.72.97.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:05:36','2020-01-25 15:05:36'),(6206,'english','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6207,'economics','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6208,'englishlit','54.172.2.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 16:46:58','2020-01-25 16:46:58'),(6209,'english','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 18:56:16','2020-01-25 18:56:16'),(6210,'commerce','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 19:01:52','2020-01-25 19:01:52'),(6211,'crk','54.227.219.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:07:54','2020-01-25 23:07:54'),(6212,'crk','34.227.56.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:54:31','2020-01-25 23:54:31'),(6213,'geography','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 09:48:50','2020-01-26 09:48:50'),(6214,'physics','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:42','2020-01-26 13:25:42'),(6215,'insurance','54.163.34.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:44','2020-01-26 13:53:10'),(6216,'englishlit','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 14:26:21','2020-01-26 14:26:21'),(6217,'chemistry','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 15:31:14','2020-01-26 15:31:14'),(6218,'currentaffairs','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:40:36','2020-01-26 16:40:36'),(6219,'english','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:56:27','2020-01-26 16:56:27'),(6220,'mathematics','54.234.126.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 17:35:46','2020-01-26 17:35:46'),(6221,'englishlit','3.80.203.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 18:54:41','2020-01-26 18:54:41'),(6222,'mathematics','3.92.208.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 19:40:52','2020-01-26 19:40:52'),(6223,'englishlit','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:07:23','2020-01-26 22:07:23'),(6224,'commerce','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:27:30','2020-01-26 22:27:30'),(6225,'crk','3.81.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 23:10:54','2020-01-26 23:10:54'),(6226,'economics','54.237.215.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 00:37:31','2020-01-27 00:37:31'),(6227,'government','100.24.9.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 02:34:55','2020-01-27 02:34:55'),(6228,'mathematics','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6229,'biology','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6230,'chemistry','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6231,'englishlit','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6232,'government','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6233,'civiledu','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6234,'currentaffairs','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:27','2020-01-27 04:08:27'),(6235,'english','3.89.150.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 06:06:57','2020-01-27 06:06:57'),(6236,'chemistry','114.119.167.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 07:14:52','2020-01-27 07:14:52'),(6237,'english','54.167.78.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 08:12:16','2020-01-27 08:12:16'),(6238,'biology','3.94.145.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:10:32','2020-01-27 12:10:32'),(6239,'crk','41.184.176.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:18:46','2020-01-27 12:18:46'),(6240,'english','52.205.236.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 14:56:14','2020-01-27 14:56:14'),(6241,'chemistry','105.112.38.62',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 15:47:21','2020-01-27 15:51:48'),(6242,'insurance','34.239.130.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 16:38:00','2020-01-27 16:38:00'),(6243,'chemistry','114.119.133.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 19:10:16','2020-01-27 19:10:16'),(6244,'chemistry','3.92.236.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 20:56:15','2020-01-27 20:56:15'),(6245,'chemistry','35.173.249.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 22:22:57','2020-01-27 22:22:57'),(6246,'chemistry','114.119.163.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 23:25:06','2020-01-27 23:25:06'),(6247,'commerce','3.95.235.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 00:29:02','2020-01-28 00:29:02'),(6248,'chemistry','151.80.39.47',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 01:56:45','2020-04-02 23:36:26'),(6249,'chemistry','114.119.131.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 02:19:39','2020-01-28 02:19:39'),(6250,'chemistry','114.119.146.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 03:40:30','2020-01-28 03:40:30'),(6251,'chemistry','159.138.158.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:23','2020-01-28 06:57:23'),(6252,'chemistry','159.138.151.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:26','2020-01-28 06:57:26'),(6253,'mathematics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6254,'accounting','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6255,'physics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6256,'government','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6257,'crk','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:04'),(6258,'insurance','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6259,'currentaffairs','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6260,'geography','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:08:11','2020-01-28 11:08:11'),(6261,'englishlit','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:17:47','2020-01-28 11:17:47'),(6262,'accounting','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:22:33','2020-01-28 11:22:33'),(6263,'chemistry','157.55.39.83',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:38:03','2020-01-28 11:38:03'),(6264,'economics','35.171.182.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:01:23','2020-01-28 14:01:23'),(6265,'economics','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:18','2020-01-28 14:44:18'),(6266,'english','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:19','2020-01-28 14:44:19'),(6267,'physics','3.94.103.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 18:25:15','2020-01-28 18:25:15'),(6268,'commerce','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:38','2020-01-29 02:20:38'),(6269,'accounting','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6270,'physics','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6271,'government','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6272,'crk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6273,'irk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6274,'currentaffairs','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6275,'english','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:42','2020-01-29 02:55:43'),(6276,'mathematics','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6277,'accounting','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6278,'government','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6279,'insurance','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6280,'currentaffairs','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6281,'history','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:44'),(6282,'chemistry','159.138.159.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:08:05','2020-01-29 06:08:05'),(6283,'mathematics','3.83.117.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:37:49','2020-01-29 06:37:49'),(6284,'geography','18.232.162.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 08:36:32','2020-01-29 08:36:32'),(6285,'insurance','52.90.181.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 12:12:29','2020-01-29 12:12:29'),(6286,'chemistry','18.234.111.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 14:21:47','2020-01-29 14:21:47'),(6287,'commerce','54.87.20.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 15:21:30','2020-01-29 15:21:30'),(6288,'mathematics','52.90.10.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 16:29:01','2020-01-29 16:29:01'),(6289,'chemistry','207.46.13.92',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:25:12','2020-01-29 18:25:12'),(6290,'mathematics','3.81.141.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:38:00','2020-01-29 18:38:00'),(6291,'government','41.190.3.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:13:05','2020-01-29 19:13:06'),(6292,'chemistry','207.46.13.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:32:15','2020-01-29 19:32:15'),(6293,'commerce','3.88.140.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 21:29:47','2020-01-29 21:29:47'),(6294,'biology','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:49:14','2020-01-30 01:49:14'),(6295,'english','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:50:59','2020-01-30 01:50:59'),(6296,'mathematics','54.91.188.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 03:44:50','2020-01-30 03:44:50'),(6297,'english','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:22:30','2020-01-30 05:22:30'),(6298,'government','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:24:43','2020-01-30 05:24:43'),(6299,'englishlit','3.80.30.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 06:21:01','2020-01-30 06:21:01'),(6300,'economics','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:13:00','2020-01-30 08:13:00'),(6301,'crk','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:15:11','2020-01-30 08:15:11'),(6302,'geography','18.207.190.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 10:50:25','2020-01-30 10:50:25'),(6303,'english','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:28:50','2020-01-30 13:28:50'),(6304,'civiledu','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:59:42','2020-01-30 13:59:42'),(6305,'geography','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 14:27:14','2020-01-30 14:27:14'),(6306,'insurance','34.237.245.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:05:29','2020-01-30 16:05:29'),(6307,'chemistry','46.229.161.131',212,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-04-19 15:14:37'),(6308,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6309,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6310,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6311,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6312,'physics','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:01:23','2020-01-30 20:01:23'),(6313,'geography','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:23:45','2020-01-30 20:23:45'),(6314,'chemistry','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 21:51:40','2020-01-30 21:51:40'),(6315,'englishlit','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 22:08:33','2020-01-30 22:08:33'),(6316,'currentaffairs','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:21:19','2020-01-31 01:21:19'),(6317,'government','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:38:18','2020-01-31 01:38:18'),(6318,'economics','54.89.156.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:05:07','2020-01-31 03:05:07'),(6319,'chemistry','207.46.13.209',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:23:54','2020-01-31 12:04:42'),(6320,'english','105.112.182.82',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 06:30:35','2020-01-31 06:32:01'),(6321,'physics','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:12:51','2020-01-31 07:12:51'),(6322,'english','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:23:23','2020-01-31 07:23:23'),(6323,'economics','54.210.244.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:58:52','2020-01-31 07:58:52'),(6324,'englishlit','3.86.29.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 10:32:00','2020-01-31 10:32:00'),(6325,'chemistry','54.237.205.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 12:11:56','2020-01-31 12:11:56'),(6326,'mathematics','52.86.208.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 15:08:11','2020-01-31 15:08:11'),(6327,'accounting','3.86.202.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 17:15:43','2020-01-31 17:15:43'),(6328,'insurance','3.91.133.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 18:38:12','2020-01-31 18:38:12'),(6329,'mathematics','3.82.155.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 22:46:02','2020-01-31 22:46:02'),(6330,'insurance','18.234.65.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 23:57:02','2020-01-31 23:57:02'),(6331,'commerce','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:38:11','2020-02-01 00:38:11'),(6332,'english','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:08','2020-02-01 00:43:08'),(6333,'physics','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:27','2020-02-01 00:43:27'),(6334,'english','105.112.59.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:48:46','2020-02-01 04:48:46'),(6335,'englishlit','54.209.65.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:57:37','2020-02-01 04:57:37'),(6336,'geography','52.91.111.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 06:32:15','2020-02-01 06:32:15'),(6337,'english','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6338,'mathematics','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6339,'biology','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6340,'chemistry','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6341,'englishlit','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6342,'insurance','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6343,'history','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6344,'economics','54.87.59.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:18:15','2020-02-01 12:18:15'),(6345,'insurance','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:55:22','2020-02-01 12:55:22'),(6346,'civiledu','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 13:00:35','2020-02-01 13:00:35'),(6347,'accounting','34.203.212.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 14:38:27','2020-02-01 14:38:27'),(6348,'biology','34.228.168.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 01:57:16','2020-02-02 01:57:16'),(6349,'english','54.227.175.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 03:18:24','2020-02-02 03:18:24'),(6350,'government','52.23.185.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 05:33:56','2020-02-02 05:33:56'),(6351,'crk','52.23.225.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 08:26:03','2020-02-02 08:26:03'),(6352,'history','54.152.74.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 10:18:23','2020-02-02 10:18:23'),(6353,'civiledu','54.175.193.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 14:11:21','2020-02-02 14:11:21'),(6354,'chemistry','34.229.20.78',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:23'),(6355,'chemistry','34.229.20.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:22'),(6356,'chemistry','105.112.178.165',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 19:12:14','2020-02-02 19:31:58'),(6357,'biology','18.212.175.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 23:50:11','2020-02-02 23:50:11'),(6358,'currentaffairs','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 00:42:03','2020-02-03 00:42:03'),(6359,'history','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:15','2020-02-03 01:17:15'),(6360,'government','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:42','2020-02-03 01:17:42'),(6361,'economics','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:35:23','2020-02-03 01:35:23'),(6362,'economics','52.204.49.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 02:42:06','2020-02-03 02:42:06'),(6363,'economics','3.90.112.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 04:45:10','2020-02-03 04:45:10'),(6364,'english','34.228.141.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 06:53:18','2020-02-03 06:53:18'),(6365,'accounting','54.175.163.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 07:43:49','2020-02-03 07:43:49'),(6366,'chemistry','105.112.75.189',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:18:05','2020-02-03 09:50:11'),(6367,'biology','66.249.88.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:41:16','2020-02-03 09:41:18'),(6368,'chemistry','105.112.55.63',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:08:19','2020-02-03 10:31:05'),(6369,'chemistry','197.210.71.2',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:30:49','2020-02-03 10:30:59'),(6370,'mathematics','5.186.127.79',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:01:59','2020-03-08 01:56:09'),(6371,'english','5.186.127.79',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:02:29','2020-02-03 19:50:47'),(6372,'history','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:40:14','2020-02-03 19:40:14'),(6373,'chemistry','54.227.12.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 21:50:10','2020-02-03 21:50:10'),(6374,'crk','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 01:59:00','2020-02-04 01:59:00'),(6375,'commerce','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 02:10:16','2020-02-04 02:10:16'),(6376,'chemistry','105.112.178.251',234,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 03:42:45','2020-02-04 05:35:31'),(6377,'crk','54.174.29.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 08:39:40','2020-02-04 08:39:40'),(6378,'chemistry','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:58:55','2020-02-04 09:58:55'),(6379,'irk','54.145.39.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:59:39','2020-02-04 09:59:39'),(6380,'mathematics','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:00:08','2020-02-04 10:00:08'),(6381,'economics','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:48:18','2020-02-04 10:48:18'),(6382,'accounting','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:54:29','2020-02-04 10:54:29'),(6383,'civiledu','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 11:29:41','2020-02-04 11:29:41'),(6384,'economics','54.162.191.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:01:04','2020-02-04 12:01:04'),(6385,'chemistry','159.138.155.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:43:25','2020-02-04 12:43:25'),(6386,'crk','3.83.164.35',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:13:32','2020-02-04 14:20:46'),(6387,'irk','3.83.164.35',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:18:49','2020-02-04 14:24:05'),(6388,'english','3.83.164.35',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:25:01','2020-02-04 14:28:15'),(6389,'mathematics','3.83.164.35',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 14:29:22','2020-02-04 14:33:35'),(6390,'civiledu','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:34:31','2020-02-04 14:39:09'),(6391,'insurance','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:40:01','2020-02-04 14:43:43'),(6392,'chemistry','129.56.111.10',6,'','NG','','Lagos',NULL,NULL,'','','2020-02-04 14:41:58','2020-02-05 06:14:39'),(6393,'economics','129.56.111.10',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:42:39','2020-02-04 14:42:39'),(6394,'currentaffairs','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:44:50','2020-02-04 14:48:55'),(6395,'government','18.207.229.112',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 15:33:33','2020-02-04 15:33:33'),(6396,'mathematics','190.120.217.202',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 16:44:57','2020-02-04 16:44:57'),(6397,'government','54.81.18.48',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 17:27:35','2020-02-04 17:46:16'),(6398,'crk','54.81.18.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 17:46:16','2020-02-04 17:46:16'),(6399,'chemistry','197.211.61.135',16,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 19:19:08','2020-02-04 19:24:05'),(6400,'chemistry','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:15:38','2020-02-04 20:15:38'),(6401,'geography','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:28:22','2020-02-04 20:28:22'),(6402,'government','34.233.134.3',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 21:13:57','2020-02-04 21:13:57'),(6403,'commerce','52.91.40.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 22:24:13','2020-02-04 22:24:13'),(6404,'economics','34.228.184.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 00:11:53','2020-02-05 00:11:53'),(6405,'economics','18.215.150.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 03:12:14','2020-02-05 03:12:14'),(6406,'insurance','54.237.226.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 04:33:22','2020-02-05 04:33:22'),(6407,'chemistry','207.46.13.202',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 05:48:51','2020-02-05 07:58:31'),(6408,'chemistry','206.189.180.4',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:11:56','2020-02-05 06:12:29'),(6409,'physics','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:13:27','2020-02-05 06:13:27'),(6410,'biology','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:14:43','2020-02-05 06:14:43'),(6411,'chemistry','159.138.152.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 09:26:20','2020-02-05 09:26:20'),(6412,'englishlit','34.228.66.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 10:25:53','2020-02-05 10:25:53'),(6413,'chemistry','207.46.13.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:16:47','2020-02-05 12:16:47'),(6414,'economics','52.87.240.0',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:48:30','2020-02-05 12:51:43'),(6415,'englishlit','52.87.240.0',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:52:17','2020-02-05 12:55:42'),(6416,'chemistry','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:42:37','2020-02-05 13:42:40'),(6417,'biology','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:43:23','2020-02-05 13:43:27'),(6418,'chemistry','159.138.156.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:18','2020-02-05 14:20:18'),(6419,'chemistry','159.138.156.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:20','2020-02-05 14:20:20'),(6420,'english','18.233.225.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:35:35','2020-02-05 14:35:35'),(6421,'chemistry','159.138.158.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:22','2020-02-05 16:03:22'),(6422,'chemistry','159.138.158.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:24','2020-02-05 16:03:24'),(6423,'chemistry','149.28.23.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:07:00','2020-02-05 16:07:01'),(6424,'chemistry','197.210.45.223',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:12:02','2020-02-05 19:12:03'),(6425,'crk','54.147.234.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:55:34','2020-02-05 19:55:34'),(6426,'crk','34.227.152.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 00:47:24','2020-02-06 00:47:24'),(6427,'insurance','54.198.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:07:31','2020-02-06 05:07:31'),(6428,'mathematics','54.198.78.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:13:14','2020-02-06 05:39:35'),(6429,'chemistry','105.112.178.38',113,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:24:23','2020-02-06 08:18:18'),(6430,'chemistry','197.210.52.78',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:45:06','2020-02-06 09:09:46'),(6431,'chemistry','197.210.53.153',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:52:38','2020-02-06 09:16:07'),(6432,'chemistry','197.210.52.148',167,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:56:55','2020-02-06 09:16:55'),(6433,'chemistry','197.210.53.241',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:57:58','2020-02-06 09:03:21'),(6434,'english','197.210.53.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:03','2020-02-06 09:17:03'),(6435,'english','197.210.53.153',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:17','2020-02-06 09:17:20'),(6436,'accounting','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:19:37','2020-02-06 09:19:40'),(6437,'biology','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:20','2020-02-06 09:20:23'),(6438,'physics','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:51','2020-02-06 09:20:54'),(6439,'english','102.67.6.4',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:35','2020-02-06 09:21:38'),(6440,'englishlit','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:36','2020-02-06 09:21:39'),(6441,'mathematics','102.67.6.4',90,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:48','2020-02-06 09:22:30'),(6442,'government','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:53','2020-02-06 09:21:56'),(6443,'crk','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:07','2020-02-06 09:22:11'),(6444,'geography','197.210.52.46',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:18','2020-02-06 09:22:21'),(6445,'economics','197.210.52.148',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:28','2020-02-06 09:22:31'),(6446,'irk','197.210.52.46',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:48','2020-02-06 09:22:50'),(6447,'civiledu','197.210.52.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:57','2020-02-06 09:23:00'),(6448,'insurance','197.210.53.228',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:13','2020-02-06 09:24:16'),(6449,'biology','102.67.6.4',45,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:44','2020-02-06 09:25:01'),(6450,'history','197.210.53.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:25:32','2020-02-06 09:25:35'),(6451,'chemistry','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:05:57','2020-02-06 11:05:57'),(6452,'physics','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:34:52','2020-02-06 11:34:52'),(6453,'chemistry','129.18.170.187',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 12:20:37','2020-02-06 12:20:49'),(6454,'english','41.184.164.93',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 14:04:50','2020-02-06 14:04:53'),(6455,'englishlit','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:10:15','2020-02-06 14:10:15'),(6456,'crk','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:31:21','2020-02-06 14:31:21'),(6457,'chemistry','197.211.61.128',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:45:01','2020-02-06 14:45:39'),(6458,'englishlit','54.242.25.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 15:06:36','2020-02-06 15:06:36'),(6459,'currentaffairs','3.84.248.139',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 16:33:00','2020-02-06 16:33:00'),(6460,'chemistry','159.138.153.33',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 19:22:39','2020-02-06 19:22:42'),(6461,'crk','3.88.183.247',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 21:12:07','2020-02-06 21:12:07'),(6462,'englishlit','18.232.114.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 22:46:55','2020-02-06 22:46:55'),(6463,'economics','54.227.10.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 01:41:04','2020-02-07 01:41:04'),(6464,'english','3.86.106.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 02:18:26','2020-02-07 02:18:26'),(6465,'biology','35.174.9.116',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:28:22','2020-02-07 04:28:23'),(6466,'government','35.174.9.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:47:35','2020-02-07 04:47:35'),(6467,'crk','54.157.234.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 09:15:39','2020-02-07 09:15:39'),(6468,'mathematics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:24','2020-02-07 10:02:27'),(6469,'chemistry','41.184.164.93',46,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:52','2020-02-13 12:05:06'),(6470,'physics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:03:10','2020-02-07 10:03:13'),(6471,'chemistry','34.207.81.136',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 12:31:01','2020-02-07 12:31:01'),(6472,'chemistry','159.138.148.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:48','2020-02-07 13:54:48'),(6473,'chemistry','159.138.151.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:51','2020-02-07 13:54:51'),(6474,'chemistry','159.138.156.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:39','2020-02-07 14:47:39'),(6475,'chemistry','159.138.152.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:40','2020-02-07 14:47:40'),(6476,'english','52.201.218.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 18:39:18','2020-02-07 18:39:18'),(6477,'chemistry','105.112.117.84',293,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:30:28','2020-02-07 20:00:57'),(6478,'english','105.112.117.84',104,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:48:33','2020-02-07 20:02:22'),(6479,'biology','3.87.229.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 20:58:03','2020-02-07 20:58:03'),(6480,'englishlit','54.226.235.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 05:22:08','2020-02-08 05:22:08'),(6481,'currentaffairs','18.212.207.50',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 12:56:59','2020-02-08 13:19:35'),(6482,'english','105.112.121.51',3687,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:00:54','2020-02-08 16:40:24'),(6483,'chemistry','105.112.121.51',247,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:17:20','2020-02-08 16:40:24'),(6484,'mathematics','105.112.121.51',280,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 14:55:34','2020-02-08 16:40:25'),(6485,'currentaffairs','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6486,'biology','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6487,'civiledu','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6488,'accounting','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6489,'history','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6490,'government','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6491,'crk','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6492,'geography','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6493,'physics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6494,'irk','105.112.121.51',180,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:28'),(6495,'commerce','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:51','2020-02-08 16:40:24'),(6496,'englishlit','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:24'),(6497,'economics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:23'),(6498,'civiledu','34.230.4.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 17:05:03','2020-02-08 17:05:03'),(6499,'englishlit','54.167.22.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 20:45:17','2020-02-08 20:45:17'),(6500,'english','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:52:30','2020-02-08 20:52:30'),(6501,'accounting','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:59:40','2020-02-08 20:59:40'),(6502,'chemistry','105.112.23.32',172,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:31:48','2020-02-09 02:17:39'),(6503,'commerce','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6504,'physics','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6505,'chemistry','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6506,'englishlit','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6507,'crk','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6508,'geography','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:19'),(6509,'history','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:19','2020-02-08 23:44:19'),(6510,'physics','66.249.83.192',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 06:54:16','2020-02-09 06:54:18'),(6511,'mathematics','105.112.38.128',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:07:48','2020-02-09 11:09:27'),(6512,'biology','105.112.38.128',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:10:56','2020-02-09 11:10:57'),(6513,'biology','105.112.57.10',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:16:17','2020-02-09 11:16:56'),(6514,'chemistry','105.112.176.118',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 13:28:05','2020-02-09 14:36:23'),(6515,'chemistry','105.112.38.60',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 21:58:06','2020-02-09 21:58:42'),(6516,'englishlit','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6517,'civiledu','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6518,'mathematics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6519,'physics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6520,'currentaffairs','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6521,'commerce','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6522,'government','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6523,'accounting','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6524,'english','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6525,'chemistry','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6526,'crk','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6527,'history','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6528,'economics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:45'),(6529,'irk','105.112.121.100',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6530,'biology','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6531,'geography','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6532,'mathematics','3.88.254.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 23:58:44','2020-02-09 23:58:44'),(6533,'commerce','54.234.42.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 04:53:06','2020-02-10 04:53:06'),(6534,'insurance','52.205.252.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 12:48:35','2020-02-10 12:48:35'),(6535,'biology','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:31:06','2020-02-10 13:33:56'),(6536,'geography','54.86.139.235',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:34:52','2020-02-10 13:40:06'),(6537,'government','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:38:55','2020-02-10 13:41:36'),(6538,'chemistry','159.138.159.131',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 14:59:24','2020-02-10 14:59:25'),(6539,'chemistry','66.102.8.239',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 19:24:51','2020-03-10 07:49:39'),(6540,'mathematics','54.198.180.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 23:23:53','2020-02-10 23:23:53'),(6541,'geography','34.228.215.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 03:09:40','2020-02-11 03:09:40'),(6542,'economics','54.86.162.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 06:23:36','2020-02-11 06:23:36'),(6543,'chemistry','159.138.128.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:43','2020-02-11 08:08:43'),(6544,'chemistry','159.138.157.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:44','2020-02-11 08:08:44'),(6545,'crk','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:19:44','2020-02-11 08:19:44'),(6546,'geography','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:28:36','2020-02-11 08:28:36'),(6547,'geography','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:07:20','2020-02-11 11:07:20'),(6548,'english','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:29:21','2020-02-11 11:29:21'),(6549,'physics','52.90.177.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 20:57:31','2020-02-11 20:57:31'),(6550,'chemistry','54.36.148.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 21:31:54','2020-02-11 21:31:55'),(6551,'englishlit','52.23.243.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 00:28:14','2020-02-12 00:28:14'),(6552,'mathematics','105.112.59.79',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 01:05:16','2020-02-12 01:05:16'),(6553,'currentaffairs','54.172.153.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 04:22:50','2020-02-12 04:22:50'),(6554,'biology','54.81.207.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 06:05:04','2020-02-12 06:05:04'),(6555,'geography','3.83.240.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 07:57:33','2020-02-12 07:57:33'),(6556,'chemistry','114.119.164.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 09:32:25','2020-02-12 09:32:25'),(6557,'chemistry','159.138.157.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:57','2020-02-12 12:35:57'),(6558,'chemistry','159.138.155.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:59','2020-02-12 12:35:59'),(6559,'mathematics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:18:10','2020-02-12 16:18:10'),(6560,'physics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:23:01','2020-02-12 16:23:01'),(6561,'chemistry','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:44:21','2020-02-12 16:44:21'),(6562,'biology','66.249.88.14',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 17:50:44','2020-02-15 20:12:28'),(6563,'geography','18.212.14.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 21:05:47','2020-02-12 21:05:47'),(6564,'government','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:08:36','2020-02-12 22:08:36'),(6565,'mathematics','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:15:14','2020-02-12 22:15:14'),(6566,'mathematics','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:42:26','2020-02-13 01:42:26'),(6567,'accounting','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:51:06','2020-02-13 01:51:06'),(6568,'history','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:03:04','2020-02-13 03:03:04'),(6569,'englishlit','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:13:21','2020-02-13 03:13:21'),(6570,'chemistry','54.36.150.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 06:05:15','2020-02-13 06:05:15'),(6571,'irk','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6572,'geography','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6573,'accounting','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6574,'currentaffairs','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6575,'english','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6576,'government','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6577,'mathematics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6578,'civiledu','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6579,'physics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6580,'crk','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6581,'biology','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6582,'commerce','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6583,'englishlit','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6584,'history','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6585,'chemistry','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6586,'economics','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:47:15','2020-02-13 09:50:43'),(6587,'chemistry','159.138.152.95',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 16:01:29','2020-02-13 16:01:33'),(6588,'geography','3.85.140.177',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-13 18:30:03','2020-02-13 18:30:03'),(6589,'chemistry','107.167.108.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 22:22:25','2020-02-13 22:22:25'),(6590,'accounting','18.206.218.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 03:40:45','2020-02-14 03:40:45'),(6591,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6592,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6593,'chemistry','159.138.153.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:50','2020-02-14 08:34:50'),(6594,'chemistry','159.138.150.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:53','2020-02-14 08:34:53'),(6595,'chemistry','159.138.158.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:49','2020-02-14 08:40:49'),(6596,'chemistry','159.138.151.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:52','2020-02-14 08:40:52'),(6597,'chemistry','54.36.150.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 09:29:11','2020-02-14 09:29:11'),(6598,'commerce','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:16','2020-02-14 12:46:16'),(6599,'physics','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6600,'government','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6601,'geography','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6602,'irk','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6603,'currentaffairs','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6604,'history','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6605,'english','54.234.90.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 13:13:09','2020-02-14 13:13:09'),(6606,'government','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 15:59:30','2020-02-14 15:59:34'),(6607,'physics','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 16:21:32','2020-02-14 16:21:35'),(6608,'mathematics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6609,'physics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6610,'englishlit','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6611,'english','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6612,'biology','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6613,'irk','3.84.126.190',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:53'),(6614,'government','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6615,'currentaffairs','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6616,'economics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6617,'commerce','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6618,'geography','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6619,'civiledu','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6620,'accounting','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6621,'history','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6622,'chemistry','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6623,'crk','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6624,'crk','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6625,'currentaffairs','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6626,'geography','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6627,'economics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6628,'civiledu','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6629,'irk','52.205.39.67',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:40'),(6630,'englishlit','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6631,'government','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6632,'chemistry','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6633,'history','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6634,'physics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6635,'biology','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6636,'accounting','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6637,'mathematics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6638,'english','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6639,'commerce','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:38','2020-02-14 17:43:41'),(6640,'history','54.161.219.62',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-14 18:19:40','2020-02-14 18:19:40'),(6641,'chemistry','207.46.13.106',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 13:28:42','2020-02-26 14:54:53'),(6642,'mathematics','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6643,'commerce','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6644,'chemistry','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6645,'englishlit','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6646,'government','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6647,'insurance','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6648,'history','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6649,'chemistry','157.55.39.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 18:35:48','2020-02-15 18:35:48'),(6650,'biology','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 20:12:28','2020-02-15 20:12:30'),(6651,'insurance','107.22.1.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 00:40:58','2020-02-16 00:40:58'),(6652,'economics','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:40:03','2020-02-16 01:40:03'),(6653,'history','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:59:35','2020-02-16 01:59:35'),(6654,'economics','100.26.204.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 04:49:19','2020-02-16 04:49:19'),(6655,'history','54.173.184.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 07:23:00','2020-02-16 07:23:00'),(6656,'chemistry','54.158.124.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 08:06:19','2020-02-16 08:06:19'),(6657,'accounting','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 09:59:42','2020-02-16 09:59:42'),(6658,'history','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 10:06:30','2020-02-16 10:06:30'),(6659,'biology','54.81.159.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:49:34','2020-02-16 16:58:41'),(6660,'english','54.81.159.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:52:09','2020-02-16 16:56:21'),(6661,'chemistry','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:21','2020-02-16 16:54:24'),(6662,'commerce','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:43','2020-02-16 16:54:46'),(6663,'accounting','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:06','2020-02-16 16:55:09'),(6664,'mathematics','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:58','2020-02-16 16:56:01'),(6665,'irk','52.91.167.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 22:51:34','2020-02-16 22:51:34'),(6666,'crk','34.233.126.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 01:08:54','2020-02-17 01:08:54'),(6667,'economics','54.234.27.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 05:03:19','2020-02-17 05:03:19'),(6668,'commerce','54.221.92.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 06:44:50','2020-02-17 06:44:50'),(6669,'chemistry','159.138.128.150',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:05:44','2020-02-17 07:05:44'),(6670,'english','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6671,'mathematics','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6672,'accounting','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6673,'englishlit','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6674,'government','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:10'),(6675,'civiledu','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-17 07:26:10'),(6676,'insurance','34.229.240.235',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-19 13:08:34'),(6677,'biology','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:53:21','2020-02-17 07:53:21'),(6678,'chemistry','41.190.3.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 09:00:45','2020-02-17 09:00:46'),(6679,'accounting','34.224.39.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 10:20:33','2020-02-17 10:20:33'),(6680,'english','197.156.253.124',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 11:19:47','2020-02-17 11:19:47'),(6681,'crk','184.72.213.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 13:48:40','2020-02-17 13:48:40'),(6682,'accounting','54.165.1.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 17:44:51','2020-02-17 17:44:51'),(6683,'economics','54.83.109.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 20:16:53','2020-02-17 20:16:53'),(6684,'chemistry','5.255.250.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 21:22:58','2020-02-17 21:22:58'),(6685,'government','54.221.59.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 23:17:36','2020-02-17 23:17:36'),(6686,'chemistry','34.201.122.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 00:07:06','2020-02-18 00:07:06'),(6687,'government','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:37:21','2020-02-18 02:37:21'),(6688,'geography','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:43:15','2020-02-18 02:43:15'),(6689,'mathematics','52.87.200.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 03:25:39','2020-02-18 03:25:39'),(6690,'commerce','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:40:17','2020-02-18 05:40:17'),(6691,'economics','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:53:54','2020-02-18 05:53:54'),(6692,'chemistry','54.224.96.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:08:00','2020-02-18 11:08:00'),(6693,'insurance','54.224.96.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:30:46','2020-02-18 11:30:46'),(6694,'crk','18.212.173.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 13:09:34','2020-03-20 07:37:00'),(6695,'chemistry','114.119.134.79',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 15:47:10','2020-02-18 15:47:10'),(6696,'englishlit','100.24.12.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 18:48:21','2020-02-18 18:48:21'),(6697,'crk','3.85.34.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 22:20:53','2020-02-18 22:20:53'),(6698,'chemistry','196.220.136.213',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 00:45:34','2020-02-19 00:45:35'),(6699,'english','54.147.36.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 03:54:04','2020-02-19 03:54:04'),(6700,'crk','34.229.241.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 05:30:54','2020-02-19 05:30:54'),(6701,'chemistry','41.184.42.114',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 13:13:14','2020-02-19 13:13:37'),(6702,'english','54.227.161.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 15:50:25','2020-02-19 15:50:25'),(6703,'chemistry','82.145.222.210',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:03:16','2020-02-19 18:03:27'),(6704,'chemistry','54.36.150.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:07:42','2020-02-19 18:07:46'),(6705,'englishlit','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:26:35','2020-02-19 19:26:35'),(6706,'chemistry','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:27:02','2020-02-19 19:27:02'),(6707,'physics','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:53:17','2020-02-19 19:53:17'),(6708,'english','204.236.246.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 22:37:37','2020-02-19 22:37:37'),(6709,'englishlit','34.230.79.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 00:17:30','2020-02-20 00:17:30'),(6710,'currentaffairs','54.242.206.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 01:18:47','2020-02-20 01:18:47'),(6711,'crk','3.85.213.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 04:49:03','2020-02-20 04:49:03'),(6712,'englishlit','3.81.90.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 08:44:59','2020-02-20 08:44:59'),(6713,'government','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:23','2020-02-20 10:57:04'),(6714,'physics','3.81.90.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:35','2020-02-20 09:14:41'),(6715,'irk','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:28:55','2020-02-20 10:57:05'),(6716,'currentaffairs','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:33:57','2020-02-20 10:57:05'),(6717,'history','3.81.90.103',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:37:42','2020-02-20 10:45:58'),(6718,'history','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6719,'chemistry','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6720,'accounting','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6721,'commerce','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6722,'physics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6723,'civiledu','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6724,'crk','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6725,'economics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6726,'currentaffairs','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6727,'biology','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6728,'government','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6729,'english','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6730,'irk','35.168.19.41',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6731,'englishlit','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6732,'geography','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6733,'mathematics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6734,'geography','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:07','2020-02-20 11:04:56'),(6735,'commerce','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:45','2020-02-20 10:57:04'),(6736,'chemistry','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6737,'geography','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6738,'englishlit','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6739,'history','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6740,'accounting','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6741,'english','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6742,'commerce','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6743,'crk','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6744,'civiledu','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6745,'physics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6746,'mathematics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6747,'government','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6748,'irk','54.162.219.78',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6749,'biology','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6750,'economics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:11','2020-02-20 10:47:14'),(6751,'currentaffairs','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:12','2020-02-20 10:47:15'),(6752,'economics','3.81.90.103',3,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 11:01:05'),(6753,'civiledu','3.81.90.103',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 10:57:05'),(6754,'government','18.207.192.142',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 13:42:22','2020-02-20 13:42:22'),(6755,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6756,'chemistry','54.167.198.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6757,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6758,'english','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:31','2020-02-20 17:26:32'),(6759,'accounting','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6760,'biology','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6761,'government','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6762,'crk','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6763,'currentaffairs','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6764,'history','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6765,'crk','3.80.65.155',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:00:34','2020-02-20 18:00:34'),(6766,'biology','3.80.65.155',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:13:55','2020-02-20 18:13:55'),(6767,'english','204.236.203.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 21:11:32','2020-02-20 21:11:32'),(6768,'mathematics','3.89.145.218',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 22:35:41','2020-02-20 22:35:41'),(6769,'chemistry','46.229.168.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:29:39','2020-02-21 02:29:39'),(6770,'chemistry','157.55.39.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:49:20','2020-02-21 02:49:20'),(6771,'english','54.147.53.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 03:48:00','2020-02-21 03:48:00'),(6772,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6773,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6774,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6775,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6776,'currentaffairs','3.90.168.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 19:24:12','2020-02-21 19:24:12'),(6777,'chemistry','34.226.190.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 20:12:12','2020-02-21 20:12:12'),(6778,'currentaffairs','18.234.246.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 21:02:21','2020-02-21 21:02:21'),(6779,'civiledu','54.162.109.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 23:30:06','2020-02-21 23:30:06'),(6780,'english','3.92.223.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:55:12','2020-02-22 03:55:12'),(6781,'chemistry','159.138.153.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:52','2020-02-22 03:58:52'),(6782,'chemistry','159.138.155.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:53','2020-02-22 03:58:53'),(6783,'englishlit','54.234.225.91',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 04:45:49','2020-02-22 04:45:49'),(6784,'accounting','3.81.14.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 06:32:53','2020-02-22 06:32:53'),(6785,'biology','3.85.195.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 08:05:36','2020-02-22 08:05:36'),(6786,'english','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:02','2020-02-22 12:38:03'),(6787,'commerce','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6788,'physics','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6789,'englishlit','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6790,'crk','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6791,'currentaffairs','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6792,'history','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:04'),(6793,'biology','3.88.4.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 21:11:38','2020-02-22 21:11:39'),(6794,'chemistry','35.173.57.84',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 00:53:28','2020-02-23 01:21:39'),(6795,'government','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:01:42','2020-02-23 13:01:42'),(6796,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6797,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6798,'commerce','54.196.170.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 14:07:46','2020-02-23 14:07:46'),(6799,'chemistry','54.36.150.158',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 15:20:46','2020-02-23 15:20:49'),(6800,'insurance','35.173.187.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 17:32:21','2020-02-23 17:32:21'),(6801,'crk','3.86.33.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 20:19:46','2020-02-23 20:19:46'),(6802,'english','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6803,'mathematics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6804,'commerce','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6805,'physics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6806,'government','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6807,'geography','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6808,'currentaffairs','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:05'),(6809,'chemistry','159.138.156.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 05:01:23','2020-02-24 05:01:23'),(6810,'mathematics','54.205.146.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 06:01:05','2020-02-24 06:01:05'),(6811,'geography','54.159.1.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 08:03:19','2020-02-24 08:03:19'),(6812,'economics','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 12:58:49','2020-02-24 12:58:49'),(6813,'geography','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 13:18:08','2020-02-24 13:18:08'),(6814,'english','3.81.236.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 15:33:14','2020-02-24 15:33:14'),(6815,'geography','54.210.217.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 17:00:33','2020-02-24 17:00:33'),(6816,'chemistry','105.112.55.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 19:06:53','2020-02-24 23:57:08'),(6817,'chemistry','34.227.17.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:20:04','2020-03-05 17:43:13'),(6818,'physics','34.227.17.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:52:30','2020-02-24 23:52:30'),(6819,'englishlit','54.92.166.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 02:36:43','2020-02-25 02:36:43'),(6820,'geography','35.175.234.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 03:33:37','2020-02-25 03:33:37'),(6821,'currentaffairs','52.87.168.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 06:07:47','2020-02-25 06:07:47'),(6822,'biology','18.233.100.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 09:34:43','2020-02-25 09:34:43'),(6823,'chemistry','157.55.39.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 11:42:40','2020-02-25 11:42:40'),(6824,'physics','66.249.80.52',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 15:14:29','2020-02-25 15:14:31'),(6825,'physics','107.23.131.74',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 18:59:40','2020-02-25 19:13:57'),(6826,'english','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6827,'mathematics','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6828,'commerce','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:57'),(6829,'biology','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6830,'currentaffairs','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6831,'history','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6832,'englishlit','35.170.185.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:56:19','2020-02-25 19:56:19'),(6833,'mathematics','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:37:16','2020-02-25 20:37:16'),(6834,'biology','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:57:18','2020-02-25 20:57:18'),(6835,'chemistry','185.26.180.143',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:07:17','2020-02-25 21:07:19'),(6836,'chemistry','192.95.16.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:56:59','2020-02-25 21:56:59'),(6837,'geography','3.92.190.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 23:13:07','2020-02-25 23:13:07'),(6838,'government','54.146.199.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 01:42:52','2020-02-26 01:42:52'),(6839,'mathematics','3.89.35.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 04:40:50','2020-02-26 04:40:50'),(6840,'history','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:21:37','2020-02-26 05:21:37'),(6841,'accounting','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:41:03','2020-02-26 05:41:03'),(6842,'biology','54.91.45.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 07:38:13','2020-02-26 07:38:13'),(6843,'chemistry','54.221.93.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:04:36','2020-02-26 09:15:23'),(6844,'chemistry','66.102.8.241',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6845,'chemistry','66.249.80.50',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6846,'chemistry','66.102.8.243',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-03-09 23:52:26'),(6847,'physics','66.249.88.65',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:22:54','2020-02-26 12:22:56'),(6848,'biology','54.235.235.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:50:49','2020-02-26 12:50:49'),(6849,'geography','54.161.25.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 17:04:18','2020-02-26 17:04:18'),(6850,'english','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6851,'mathematics','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6852,'biology','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6853,'chemistry','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6854,'government','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6855,'geography','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:01'),(6856,'irk','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:01','2020-02-27 04:05:01'),(6857,'accounting','54.197.40.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 05:01:31','2020-02-27 05:01:31'),(6858,'history','107.20.37.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 13:39:41','2020-02-27 13:39:41'),(6859,'chemistry','3.80.114.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 23:45:34','2020-02-27 23:45:34'),(6860,'english','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:45:04','2020-02-28 13:47:42'),(6861,'government','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:50:32','2020-02-28 13:52:07'),(6862,'commerce','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:54:04','2020-02-28 13:55:34'),(6863,'biology','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:57:38','2020-02-28 13:59:56'),(6864,'mathematics','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:59:07','2020-02-28 13:59:48'),(6865,'biology','52.204.53.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:24'),(6866,'biology','52.204.53.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:22'),(6867,'insurance','3.89.28.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 02:19:14','2020-02-29 02:19:14'),(6868,'economics','54.86.68.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 03:27:08','2020-02-29 03:27:08'),(6869,'accounting','18.207.149.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 06:17:21','2020-02-29 06:17:21'),(6870,'crk','54.224.249.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 07:18:55','2020-02-29 07:18:55'),(6871,'chemistry','49.70.183.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:00:47','2020-02-29 10:00:47'),(6872,'chemistry','34.226.148.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6873,'chemistry','34.226.148.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6874,'biology','54.234.130.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:39:43','2020-02-29 10:39:43'),(6875,'history','54.172.167.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 14:10:22','2020-02-29 14:10:22'),(6876,'chemistry','66.249.88.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:08','2020-02-29 15:50:09'),(6877,'chemistry','66.102.6.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:09','2020-02-29 15:50:09'),(6878,'irk','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:58:08','2020-02-29 15:58:08'),(6879,'chemistry','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:59:27','2020-02-29 15:59:27'),(6880,'history','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 19:55:14','2020-02-29 19:55:14'),(6881,'crk','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 20:06:10','2020-02-29 20:06:10'),(6882,'commerce','52.202.140.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 22:45:59','2020-02-29 22:45:59'),(6883,'chemistry','223.245.212.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 23:22:31','2020-02-29 23:22:31'),(6884,'biology','18.212.32.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 00:01:45','2020-03-01 00:01:45'),(6885,'accounting','52.23.172.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 01:53:29','2020-03-01 01:53:29'),(6886,'chemistry','1.203.150.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 02:14:54','2020-03-01 02:14:54'),(6887,'economics','54.156.62.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 06:18:07','2020-03-01 06:18:07'),(6888,'government','35.173.129.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 08:48:14','2020-03-01 08:48:14'),(6889,'chemistry','3.84.9.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 10:00:47','2020-03-01 10:00:47'),(6890,'geography','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 11:39:24','2020-03-01 11:39:24'),(6891,'government','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 12:03:05','2020-03-01 12:03:05'),(6892,'economics','18.209.9.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 16:36:07','2020-03-01 16:36:07'),(6893,'insurance','54.87.188.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 18:39:16','2020-03-01 18:39:16'),(6894,'englishlit','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:12:13','2020-03-01 23:12:13'),(6895,'english','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:29:26','2020-03-01 23:29:26'),(6896,'commerce','54.163.13.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 03:36:21','2020-03-02 03:36:21'),(6897,'crk','54.198.115.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 08:50:58','2020-03-02 08:50:58'),(6898,'crk','34.229.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 09:24:47','2020-03-02 09:24:47'),(6899,'chemistry','197.210.64.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 16:39:01','2020-03-02 16:39:01'),(6900,'english','105.112.55.216',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:24:46','2020-03-02 17:24:54'),(6901,'englishlit','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:46:18','2020-03-02 17:46:18'),(6902,'physics','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:59:07','2020-03-02 17:59:07'),(6903,'english','3.91.231.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 19:29:38','2020-03-02 19:29:38'),(6904,'currentaffairs','54.167.241.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 20:17:40','2020-03-02 20:17:40'),(6905,'chemistry','36.249.227.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:16:09','2020-03-02 21:16:09'),(6906,'chemistry','114.227.162.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:19:42','2020-03-02 21:19:42'),(6907,'englishlit','54.91.143.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 23:10:58','2020-03-02 23:10:58'),(6908,'englishlit','54.88.133.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 01:40:43','2020-03-03 01:40:43'),(6909,'government','34.228.244.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 05:09:18','2020-03-03 05:09:18'),(6910,'chemistry','141.8.188.144',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 08:07:45','2020-03-03 08:07:45'),(6911,'chemistry','82.145.220.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 09:48:31','2020-03-03 09:48:49'),(6912,'economics','3.80.28.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:11:56','2020-03-03 10:11:56'),(6913,'chemistry','82.145.209.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:36:44','2020-03-03 10:36:44'),(6914,'english','18.212.178.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:54:12','2020-03-03 10:54:12'),(6915,'chemistry','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:08:29','2020-03-03 12:08:29'),(6916,'biology','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:20:31','2020-03-03 12:20:31'),(6917,'chemistry','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:27','2020-03-03 13:36:27'),(6918,'mathematics','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:47','2020-03-03 13:36:47'),(6919,'english','52.87.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 17:00:16','2020-03-03 17:00:16'),(6920,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6921,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6922,'chemistry','40.77.167.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:37:26','2020-03-03 19:37:26'),(6923,'biology','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6924,'physics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6925,'geography','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6926,'economics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6927,'irk','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6928,'civiledu','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:58'),(6929,'currentaffairs','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:58','2020-03-03 20:05:58'),(6930,'biology','197.210.53.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:43:36','2020-03-03 20:43:38'),(6931,'physics','103.221.233.72',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 04:04:33','2020-03-04 04:25:46'),(6932,'english','105.112.182.249',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 10:31:20','2020-03-04 10:31:20'),(6933,'english','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:04:45','2020-03-04 11:04:45'),(6934,'accounting','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:05:53','2020-03-04 11:05:53'),(6935,'chemistry','197.210.53.87',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:39:34','2020-03-04 12:39:35'),(6936,'chemistry','197.210.52.235',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:04','2020-03-04 12:40:06'),(6937,'mathematics','197.210.53.94',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:07','2020-03-04 12:46:33'),(6938,'english','18.207.127.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 21:42:11','2020-03-04 21:42:11'),(6939,'chemistry','5.196.87.151',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 22:56:07','2020-04-02 22:19:08'),(6940,'englishlit','35.175.218.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 00:22:30','2020-03-05 00:22:30'),(6941,'commerce','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 02:31:37','2020-03-05 02:31:37'),(6942,'chemistry','54.89.222.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 04:03:59','2020-03-05 04:03:59'),(6943,'commerce','3.85.195.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 12:01:13','2020-03-05 12:01:13'),(6944,'crk','54.81.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 19:11:38','2020-03-05 19:11:38'),(6945,'mathematics','107.22.108.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 20:30:46','2020-03-05 20:30:46'),(6946,'english','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:08:59','2020-03-05 22:08:59'),(6947,'accounting','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6948,'biology','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6949,'chemistry','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6950,'irk','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6951,'insurance','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6952,'history','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6953,'geography','54.242.26.49',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 02:38:31','2020-03-06 02:55:09'),(6954,'biology','35.153.139.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 07:52:20','2020-03-06 07:52:20'),(6955,'geography','107.23.228.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 12:34:01','2020-03-06 12:34:01'),(6956,'currentaffairs','35.173.223.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 13:38:42','2020-03-06 13:38:42'),(6957,'chemistry','35.153.102.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 14:20:41','2020-03-06 14:20:41'),(6958,'biology','3.86.217.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 15:34:02','2020-03-06 15:34:02'),(6959,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6960,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6961,'chemistry','183.166.134.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:16:38','2020-03-06 21:16:38'),(6962,'chemistry','54.81.120.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:29:55','2020-03-06 21:29:55'),(6963,'mathematics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 23:47:39','2020-03-06 23:47:39'),(6964,'physics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 00:22:50','2020-03-07 00:22:50'),(6965,'mathematics','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 02:56:44','2020-03-07 02:56:44'),(6966,'physics','18.234.121.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 06:30:53','2020-03-07 06:30:53'),(6967,'chemistry','197.210.65.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:18:55','2020-03-07 08:18:55'),(6968,'chemistry','197.210.64.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:19:20','2020-03-07 08:19:20'),(6969,'chemistry','197.210.64.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:20:36','2020-03-07 08:20:36'),(6970,'english','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:01'),(6971,'accounting','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:02'),(6972,'geography','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6973,'irk','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6974,'civiledu','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6975,'insurance','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6976,'history','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6977,'english','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:35','2020-03-07 14:55:35'),(6978,'biology','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:36','2020-03-07 14:55:37'),(6979,'chemistry','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:37','2020-03-07 14:55:38'),(6980,'geography','52.90.45.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 15:21:48','2020-03-07 15:21:48'),(6981,'accounting','35.173.220.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 19:36:21','2020-03-07 19:36:21'),(6982,'commerce','5.186.127.79',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:16:03','2020-03-08 01:58:17'),(6983,'accounting','5.186.127.79',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:24:36','2020-03-08 01:52:42'),(6984,'biology','5.186.127.79',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 02:01:14','2020-03-08 02:01:15'),(6985,'englishlit','54.242.45.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 10:11:30','2020-03-08 10:11:30'),(6986,'chemistry','112.114.88.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:37:05','2020-03-08 13:37:05'),(6987,'history','54.174.12.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:54:38','2020-03-08 13:54:38'),(6988,'chemistry','54.173.164.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 16:27:27','2020-03-08 16:27:27'),(6989,'biology','52.90.68.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 17:35:15','2020-03-08 17:35:15'),(6990,'chemistry','114.119.164.166',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 18:08:08','2020-03-25 11:05:38'),(6991,'chemistry','60.185.69.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 20:52:07','2020-03-08 20:52:07'),(6992,'chemistry','197.210.227.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:17:20','2020-03-08 21:17:20'),(6993,'chemistry','197.210.226.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:18:58','2020-03-08 21:18:58'),(6994,'chemistry','197.210.226.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:19:11','2020-03-08 21:19:11'),(6995,'chemistry','114.119.160.43',3,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:20','2020-06-23 16:54:17'),(6996,'chemistry','161.151.254.43',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:41','2020-03-08 22:39:44'),(6997,'chemistry','161.151.254.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:41:32','2020-03-08 22:41:35'),(6998,'insurance','18.234.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 04:42:23','2020-03-09 04:42:23'),(6999,'chemistry','114.119.161.43',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 05:05:47','2020-04-06 00:24:10'),(7000,'economics','3.208.8.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 06:44:35','2020-03-09 06:44:35'),(7001,'chemistry','114.119.166.156',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 08:22:53','2020-03-10 01:02:52'),(7002,'history','54.175.112.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 09:37:37','2020-03-09 09:37:37'),(7003,'history','197.210.53.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:45:49','2020-03-09 12:45:50'),(7004,'chemistry','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:00','2020-03-09 12:56:20'),(7005,'history','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:03','2020-03-09 12:56:24'),(7006,'mathematics','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:04','2020-03-09 12:56:26'),(7007,'chemistry','197.210.53.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:59:22','2020-03-09 12:59:22'),(7008,'english','197.210.53.133',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:06:27','2020-03-09 13:06:27'),(7009,'accounting','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:29:10','2020-03-09 13:29:10'),(7010,'history','3.93.0.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 14:25:16','2020-03-09 14:25:16'),(7011,'crk','3.84.223.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 22:45:44','2020-03-09 22:45:44'),(7012,'chemistry','67.86.217.149',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:10:20','2020-04-07 19:16:09'),(7013,'chemistry','108.41.239.178',421,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:11:34','2020-04-13 13:17:04'),(7014,'commerce','3.84.214.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 01:51:20','2020-03-10 01:51:20'),(7015,'chemistry','197.210.70.26',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 04:06:56','2020-03-10 04:07:00'),(7016,'chemistry','197.210.70.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:17','2020-03-10 05:19:17'),(7017,'mathematics','197.210.70.216',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:26','2020-03-10 05:19:26'),(7018,'mathematics','197.210.71.234',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:08','2020-03-10 05:20:08'),(7019,'mathematics','197.210.70.250',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:21','2020-03-10 05:20:21'),(7020,'chemistry','197.210.70.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:35','2020-03-10 05:20:35'),(7021,'mathematics','197.210.71.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:53','2020-03-10 05:20:53'),(7022,'mathematics','197.210.70.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:52:55','2020-03-10 05:52:55'),(7023,'chemistry','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:05','2020-03-10 05:55:05'),(7024,'mathematics','197.210.70.182',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:15','2020-03-10 05:55:16'),(7025,'mathematics','197.210.174.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:58','2020-03-10 05:55:59'),(7026,'mathematics','108.41.239.178',367,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:06','2020-04-12 16:31:22'),(7027,'biology','197.210.70.40',46,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:35','2020-03-10 05:57:24'),(7028,'biology','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:55','2020-03-10 05:56:56'),(7029,'biology','197.210.70.170',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:58:15','2020-03-10 05:58:18'),(7030,'accounting','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:15:57','2020-03-10 06:15:57'),(7031,'crk','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:24:17','2020-03-10 06:24:17'),(7032,'chemistry','197.211.61.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 07:49:41','2020-03-10 07:49:41'),(7033,'chemistry','114.119.167.13',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 08:49:55','2020-03-31 11:06:57'),(7034,'economics','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:06:10','2020-03-10 09:06:10'),(7035,'irk','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:16:37','2020-03-10 09:16:37'),(7036,'chemistry','34.205.63.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 10:16:06','2020-03-10 10:16:06'),(7037,'government','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:04:13','2020-03-10 12:04:13'),(7038,'chemistry','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:21:49','2020-03-10 12:21:49'),(7039,'biology','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:06:43','2020-03-10 14:06:43'),(7040,'geography','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:12:24','2020-03-10 14:12:24'),(7041,'history','3.95.217.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 15:16:08','2020-03-10 15:16:08'),(7042,'commerce','18.212.139.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 16:38:48','2020-03-10 16:38:48'),(7043,'english','197.210.45.11',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:10:47','2020-03-10 17:41:19'),(7044,'geography','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:50','2020-03-10 17:41:20'),(7045,'mathematics','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:51','2020-03-10 17:41:21'),(7046,'economics','174.129.129.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:44:51','2020-03-10 17:44:51'),(7047,'government','54.234.46.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 19:25:59','2020-03-10 19:25:59'),(7048,'chemistry','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:21:32','2020-03-10 20:21:32'),(7049,'insurance','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:37:32','2020-03-10 20:37:32'),(7050,'chemistry','66.249.83.200',73,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-03-19 07:35:53'),(7051,'chemistry','66.249.83.204',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-04-26 10:46:35'),(7052,'englishlit','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:31:52','2020-03-11 02:31:52'),(7053,'english','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:42:48','2020-03-11 02:42:48'),(7054,'chemistry','116.31.102.8',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:21:00','2020-03-11 05:21:30'),(7055,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7056,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7057,'crk','35.174.12.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 10:23:39','2020-03-11 10:43:26'),(7058,'chemistry','52.90.116.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 11:19:41','2020-03-11 11:19:41'),(7059,'english','197.210.65.20',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:49','2020-03-11 13:34:49'),(7060,'biology','197.210.47.25',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:52','2020-03-11 13:34:52'),(7061,'chemistry','197.210.64.50',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:53','2020-03-11 13:34:54'),(7062,'mathematics','197.210.64.137',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:55','2020-03-11 13:34:56'),(7063,'chemistry','157.55.39.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:47:42','2020-03-11 14:47:42'),(7064,'chemistry','41.190.30.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:53:34','2020-03-11 14:53:35'),(7065,'english','54.221.96.198',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 15:42:57','2020-03-11 15:43:28'),(7066,'chemistry','197.211.61.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 16:33:36','2020-03-11 16:33:36'),(7067,'english','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:58:34','2020-03-11 18:58:34'),(7068,'englishlit','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:59:49','2020-03-11 18:59:49'),(7069,'physics','54.196.100.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:38:57','2020-03-11 19:38:57'),(7070,'chemistry','54.196.100.247',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:59:42','2020-03-11 19:59:42'),(7071,'english','3.82.116.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 20:42:05','2020-03-11 20:42:05'),(7072,'currentaffairs','54.211.73.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 21:57:05','2020-03-11 21:57:05'),(7073,'englishlit','54.234.241.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 01:46:19','2020-03-12 02:20:47'),(7074,'chemistry','54.167.99.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 05:23:04','2020-03-12 05:23:04'),(7075,'government','54.226.177.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:03:06','2020-03-12 06:03:06'),(7076,'economics','3.88.159.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:56:58','2020-03-12 06:56:58'),(7077,'mathematics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7078,'commerce','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7079,'english','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7080,'physics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:38'),(7081,'biology','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7082,'crk','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7083,'englishlit','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7084,'geography','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7085,'government','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7086,'insurance','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7087,'history','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7088,'currentaffairs','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:39','2020-03-12 07:43:39'),(7089,'chemistry','54.90.183.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 08:12:53','2020-03-12 08:12:53'),(7090,'english','3.83.156.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 10:27:53','2020-03-12 10:27:53'),(7091,'crk','3.89.215.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:13:49','2020-03-12 11:13:49'),(7092,'chemistry','3.90.255.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:50:26','2020-03-12 11:50:27'),(7093,'english','197.210.44.229',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 13:37:55','2020-03-12 13:37:55'),(7094,'mathematics','197.210.29.214',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:31:12','2020-03-12 15:31:12'),(7095,'chemistry','197.210.29.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:35:28','2020-03-12 15:36:34'),(7096,'chemistry','197.210.61.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:09','2020-03-12 15:38:09'),(7097,'chemistry','172.58.236.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:33','2020-03-12 15:41:06'),(7098,'biology','197.210.70.44',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 16:21:26','2020-03-12 16:21:28'),(7099,'biology','197.210.226.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:14:12','2020-03-12 17:14:14'),(7100,'biology','3.92.167.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:33:54','2020-03-12 17:33:54'),(7101,'chemistry','54.174.77.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 18:08:05','2020-03-12 18:08:05'),(7102,'english','129.205.113.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 20:47:35','2020-03-12 20:47:35'),(7103,'crk','52.90.72.30',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 00:32:24','2020-03-13 00:32:24'),(7104,'currentaffairs','52.91.74.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 03:07:06','2020-03-13 03:07:06'),(7105,'chemistry','66.249.88.54',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 04:13:43','2020-03-13 22:03:51'),(7106,'biology','54.226.184.43',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:52:03','2020-03-13 09:52:04'),(7107,'english','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:56:39','2020-03-13 09:56:39'),(7108,'accounting','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:58:08','2020-03-13 09:58:08'),(7109,'chemistry','3.92.56.188',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7110,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7111,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7112,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7113,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7114,'chemistry','54.242.59.9',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 16:39:40','2020-03-13 16:39:41'),(7115,'chemistry','207.46.13.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 20:02:53','2020-03-13 20:02:53'),(7116,'chemistry','54.146.129.212',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7117,'chemistry','54.146.129.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7118,'chemistry','66.249.83.202',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 22:03:49','2020-03-13 22:03:51'),(7119,'biology','54.152.253.226',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 02:58:06','2020-03-14 02:58:06'),(7120,'mathematics','66.249.83.200',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 08:36:31','2020-03-14 08:36:33'),(7121,'english','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7122,'mathematics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7123,'chemistry','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:35'),(7124,'economics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:35','2020-03-14 10:43:36'),(7125,'civiledu','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:36','2020-03-14 10:43:36'),(7126,'insurance','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7127,'currentaffairs','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7128,'commerce','34.239.245.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:45:23','2020-03-14 10:45:23'),(7129,'chemistry','3.90.43.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 13:49:52','2020-03-14 13:49:52'),(7130,'crk','54.161.109.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 14:49:17','2020-03-14 14:49:17'),(7131,'english','52.91.100.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:07:53','2020-03-14 18:07:53'),(7132,'chemistry','86.121.62.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:41:03','2020-03-14 18:41:03'),(7133,'chemistry','3.87.81.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:54:06','2020-03-14 18:54:06'),(7134,'chemistry','5.255.250.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:21:06','2020-03-14 19:21:06'),(7135,'chemistry','105.112.38.232',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:05','2020-03-15 06:16:13'),(7136,'mathematics','105.112.38.232',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:50','2020-03-14 19:55:10'),(7137,'chemistry','54.146.242.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:53:47','2020-03-14 19:53:51'),(7138,'mathematics','54.145.20.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 20:35:13','2020-03-14 20:35:13'),(7139,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7140,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7141,'chemistry','18.209.61.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:43:11','2020-03-14 22:43:11'),(7142,'biology','14.199.220.107',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:46:33','2020-03-14 22:46:34'),(7143,'economics','3.82.205.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:07:15','2020-03-15 01:07:15'),(7144,'chemistry','66.249.64.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:41:19','2020-03-15 01:41:22'),(7145,'geography','18.209.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 02:28:10','2020-03-15 02:28:10'),(7146,'geography','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:36:57','2020-03-15 03:36:57'),(7147,'biology','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:42:39','2020-03-15 03:42:39'),(7148,'mathematics','105.112.38.221',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 07:08:04','2020-03-15 07:08:05'),(7149,'physics','54.209.184.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 10:35:32','2020-03-15 10:35:32'),(7150,'chemistry','61.177.20.67',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:07:25','2020-03-15 11:08:03'),(7151,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7152,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7153,'englishlit','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:00:27','2020-03-15 13:00:27'),(7154,'geography','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:12:58','2020-03-15 13:12:58'),(7155,'chemistry','66.249.80.40',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:13:16','2020-03-15 13:13:18'),(7156,'currentaffairs','54.157.45.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:17:59','2020-03-15 14:17:59'),(7157,'chemistry','114.119.165.83',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:58:19','2020-04-09 07:14:34'),(7158,'mathematics','197.210.70.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 15:43:48','2020-03-15 15:43:56'),(7159,'biology','3.80.249.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 16:18:19','2020-03-15 16:18:19'),(7160,'chemistry','40.77.167.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 17:54:45','2020-03-15 17:54:45'),(7161,'chemistry','54.234.65.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:02:01','2020-03-15 19:02:01'),(7162,'chemistry','192.3.183.226',69,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:05:22','2020-03-16 02:10:39'),(7163,'physics','54.175.61.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:07:09','2020-03-15 23:07:09'),(7164,'mathematics','54.152.128.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:41:27','2020-03-15 23:41:27'),(7165,'chemistry','5.255.250.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 01:11:48','2020-03-16 01:11:48'),(7166,'geography','100.27.28.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 02:48:46','2020-03-16 02:48:46'),(7167,'government','18.204.205.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 03:52:44','2020-03-16 03:52:44'),(7168,'mathematics','52.87.174.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 04:36:55','2020-03-16 04:36:55'),(7169,'history','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:37:41','2020-03-16 06:37:41'),(7170,'biology','34.230.5.124',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:40'),(7171,'biology','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:39'),(7172,'crk','35.173.183.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:03:46','2020-03-16 09:03:46'),(7173,'chemistry','66.249.88.55',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:48:48','2020-03-16 09:48:49'),(7174,'geography','54.226.6.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 14:13:41','2020-03-16 14:13:41'),(7175,'mathematics','105.112.153.142',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:02:32','2020-03-16 17:02:47'),(7176,'physics','105.112.153.142',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:03:09','2020-03-16 17:03:10'),(7177,'english','105.112.153.142',480,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:04:23','2020-03-16 20:08:50'),(7178,'accounting','54.144.114.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 21:09:52','2020-03-16 21:09:52'),(7179,'history','54.152.71.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 07:17:16','2020-03-17 07:17:16'),(7180,'english','41.86.149.34',280,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 09:42:41','2020-03-17 12:11:29'),(7181,'english','105.112.22.72',440,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 15:51:33','2020-03-17 16:19:25'),(7182,'chemistry','105.112.22.72',323,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 16:24:18','2020-03-17 17:11:03'),(7183,'physics','105.112.22.72',164,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 17:05:04','2020-03-17 17:28:30'),(7184,'mathematics','105.112.22.72',149,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:14:51','2020-03-17 17:38:27'),(7185,'government','105.112.22.72',276,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:40:56','2020-03-17 17:50:13'),(7186,'englishlit','105.112.47.130',334,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:54:27','2020-03-17 18:14:37'),(7187,'government','105.112.47.130',22,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:56:02','2020-03-17 17:56:03'),(7188,'crk','105.112.47.130',543,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:16:10','2020-03-17 18:30:39'),(7189,'english','105.112.47.130',40,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:18:33','2020-03-17 18:18:35'),(7190,'accounting','105.112.47.130',158,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:35:02','2020-03-17 18:37:47'),(7191,'chemistry','34.227.17.84',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:52:23','2020-03-17 18:52:23'),(7192,'chemistry','144.76.67.169',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 00:01:13','2020-03-18 00:01:58'),(7193,'chemistry','54.36.149.77',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:03:44','2020-03-18 05:03:44'),(7194,'economics','52.201.123.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:33:29','2020-03-18 05:33:29'),(7195,'history','3.93.187.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 11:38:00','2020-03-18 11:38:00'),(7196,'english','129.205.113.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:00:34','2020-03-18 20:00:34'),(7197,'chemistry','66.249.88.56',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:39:56','2020-03-18 20:39:58'),(7198,'irk','54.90.235.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:56:56','2020-03-18 20:56:56'),(7199,'chemistry','54.36.150.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 21:24:26','2020-03-18 21:24:26'),(7200,'crk','18.232.99.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 23:57:52','2020-03-18 23:57:52'),(7201,'commerce','3.88.101.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 01:46:16','2020-03-19 01:46:16'),(7202,'accounting','3.81.2.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 05:42:19','2020-03-19 05:42:19'),(7203,'chemistry','66.102.8.229',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 07:35:52','2020-03-19 07:35:54'),(7204,'economics','18.209.171.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 08:15:35','2020-03-19 08:15:35'),(7205,'chemistry','3.87.142.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 11:32:20','2020-03-19 11:32:20'),(7206,'government','54.172.25.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 12:12:58','2020-03-19 12:12:58'),(7207,'economics','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:31:06','2020-03-19 14:31:06'),(7208,'commerce','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:35:27','2020-03-19 14:35:27'),(7209,'geography','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:55:22','2020-03-19 14:55:22'),(7210,'government','54.242.179.61',1,'Nigeria','NG','LA','Lagos','Lagos','','6.4531','3.3958','2020-03-19 20:38:35','2020-03-19 20:38:35'),(7211,'chemistry','18.207.197.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 21:48:48','2020-03-19 21:48:48'),(7212,'english','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:32:19','2020-03-20 00:32:19'),(7213,'englishlit','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:50:34','2020-03-20 00:50:34'),(7214,'chemistry','114.119.165.169',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 01:18:55','2020-04-05 03:27:02'),(7215,'accounting','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7216,'biology','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7217,'chemistry','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7218,'crk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7219,'geography','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:26'),(7220,'irk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7221,'civiledu','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7222,'crk','3.93.49.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 08:22:17','2020-03-20 08:22:17'),(7223,'chemistry','197.210.71.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 09:39:01','2020-03-20 09:39:01'),(7224,'chemistry','117.63.134.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:39:07','2020-03-20 14:39:07'),(7225,'chemistry','41.190.2.160',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:55:17','2020-03-20 14:55:40'),(7226,'physics','18.234.143.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 16:22:33','2020-03-20 16:22:33'),(7227,'currentaffairs','3.88.171.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 18:44:05','2020-03-20 18:44:05'),(7228,'englishlit','3.80.210.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 19:58:26','2020-03-20 19:58:26'),(7229,'crk','54.234.191.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 22:13:05','2020-03-20 22:13:05'),(7230,'englishlit','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:13:40','2020-03-21 00:13:40'),(7231,'economics','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:45:11','2020-03-21 00:45:11'),(7232,'government','54.81.79.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:06:58','2020-03-21 02:06:58'),(7233,'chemistry','36.49.27.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:48:44','2020-03-21 02:48:44'),(7234,'irk','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:15:05','2020-03-21 04:15:05'),(7235,'english','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:39:38','2020-03-21 04:39:38'),(7236,'englishlit','41.80.20.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 05:52:43','2020-03-21 05:53:35'),(7237,'chemistry','154.113.86.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 08:44:48','2020-03-21 08:44:48'),(7238,'chemistry','54.36.150.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 10:28:05','2020-03-21 10:28:05'),(7239,'chemistry','42.49.170.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 12:22:18','2020-03-21 12:22:18'),(7240,'english','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:55','2020-03-21 13:16:56'),(7241,'commerce','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:56','2020-03-21 13:16:58'),(7242,'physics','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:59','2020-03-21 13:18:04'),(7243,'englishlit','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:00','2020-03-21 13:17:01'),(7244,'insurance','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:01','2020-03-21 13:18:05'),(7245,'currentaffairs','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:18:05'),(7246,'history','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:17:03'),(7247,'accounting','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:03','2020-03-21 13:18:04'),(7248,'government','18.234.135.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:16'),(7249,'economics','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7250,'civiledu','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7251,'chemistry','102.89.3.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 14:16:11','2020-03-21 14:16:11'),(7252,'accounting','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:30:53','2020-03-22 03:30:53'),(7253,'englishlit','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:32:36','2020-03-22 03:32:36'),(7254,'chemistry','116.248.186.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 12:56:38','2020-03-22 12:56:38'),(7255,'accounting','105.112.52.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 15:00:00','2020-03-22 15:00:02'),(7256,'commerce','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7257,'physics','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7258,'englishlit','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7259,'government','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7260,'crk','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7261,'insurance','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7262,'history','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7263,'chemistry','59.63.75.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 17:32:33','2020-03-22 17:32:34'),(7264,'mathematics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7265,'biology','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7266,'physics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7267,'chemistry','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7268,'geography','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7269,'irk','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7270,'currentaffairs','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:33'),(7271,'commerce','3.89.66.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 23:32:36','2020-03-22 23:32:36'),(7272,'chemistry','77.88.5.109',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 01:02:57','2020-05-28 06:27:27'),(7273,'crk','52.90.48.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 04:30:54','2020-03-23 04:30:54'),(7274,'biology','3.92.24.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 08:53:22','2020-03-23 08:53:22'),(7275,'mathematics','54.165.10.238',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 10:35:39','2020-03-23 10:35:39'),(7276,'economics','54.164.64.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 13:08:24','2020-03-23 13:08:24'),(7277,'geography','18.209.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 14:04:53','2020-03-23 14:04:53'),(7278,'geography','3.89.20.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 15:04:00','2020-03-23 15:04:00'),(7279,'englishlit','54.210.71.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:16:17','2020-03-23 23:16:17'),(7280,'geography','54.91.123.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:54:39','2020-03-23 23:54:39'),(7281,'currentaffairs','18.234.156.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 01:21:49','2020-03-24 01:21:49'),(7282,'physics','18.215.170.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 02:05:13','2020-03-24 02:05:13'),(7283,'english','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7284,'mathematics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7285,'physics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7286,'irk','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7287,'civiledu','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7288,'insurance','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7289,'currentaffairs','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7290,'physics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 07:37:59','2020-03-24 07:37:59'),(7291,'mathematics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 08:09:12','2020-03-24 08:09:12'),(7292,'mathematics','100.24.26.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 14:18:48','2020-03-24 14:18:48'),(7293,'accounting','52.87.217.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 04:37:55','2020-03-25 04:37:55'),(7294,'chemistry','114.119.160.245',41,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-25 10:25:16','2020-06-23 19:50:56'),(7295,'history','52.23.203.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 12:19:56','2020-03-25 12:19:56'),(7296,'chemistry','154.118.9.188',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 14:09:50','2020-03-25 14:09:50'),(7297,'commerce','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7298,'chemistry','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7299,'englishlit','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7300,'crk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:53'),(7301,'geography','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7302,'irk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7303,'insurance','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7304,'biology','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7305,'physics','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7306,'chemistry','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7307,'crk','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:20'),(7308,'geography','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7309,'civiledu','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7310,'currentaffairs','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7311,'english','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7312,'commerce','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7313,'biology','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7314,'government','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7315,'geography','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7316,'civiledu','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7317,'currentaffairs','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7318,'history','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 08:23:17','2020-03-26 08:23:17'),(7319,'economics','3.84.167.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:17:04','2020-03-26 09:17:04'),(7320,'english','197.211.61.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:24:43','2020-03-26 09:24:43'),(7321,'biology','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:33:58','2020-03-26 11:33:59'),(7322,'chemistry','102.89.3.190',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:00','2020-03-26 11:34:00'),(7323,'commerce','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:01','2020-03-26 11:34:01'),(7324,'crk','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:22','2020-03-26 12:14:19'),(7325,'commerce','102.89.3.190',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:23','2020-03-26 12:11:33'),(7326,'crk','102.89.3.190',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:08','2020-03-26 12:08:09'),(7327,'commerce','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:09','2020-03-26 12:14:21'),(7328,'crk','102.89.3.126',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:11:32','2020-03-26 12:11:32'),(7329,'crk','102.89.2.115',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:21:27','2020-03-26 12:22:22'),(7330,'crk','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:44','2020-03-26 12:22:45'),(7331,'commerce','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:46','2020-03-26 12:22:46'),(7332,'crk','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:40','2020-03-26 12:23:40'),(7333,'commerce','197.210.84.177',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:41','2020-03-26 12:23:42'),(7334,'crk','197.210.84.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:11','2020-03-26 12:24:12'),(7335,'commerce','197.210.84.39',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:12','2020-03-26 12:24:13'),(7336,'crk','197.210.84.227',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:09','2020-03-26 12:29:09'),(7337,'commerce','197.210.84.119',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:10','2020-03-26 12:29:10'),(7338,'crk','197.210.84.207',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:03','2020-03-26 12:32:04'),(7339,'commerce','197.210.84.125',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:05','2020-03-26 12:32:06'),(7340,'crk','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:21','2020-03-26 12:36:21'),(7341,'commerce','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:22','2020-03-26 12:36:22'),(7342,'crk','197.210.84.31',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:30','2020-03-26 12:36:30'),(7343,'commerce','197.210.84.245',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:31','2020-03-26 12:36:32'),(7344,'crk','197.210.84.165',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:47','2020-03-26 12:37:47'),(7345,'commerce','197.210.84.17',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:48','2020-03-26 12:37:48'),(7346,'crk','197.210.85.81',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:57','2020-03-26 12:37:57'),(7347,'commerce','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:58','2020-03-26 12:37:58'),(7348,'crk','197.210.84.67',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:00','2020-03-26 12:44:00'),(7349,'commerce','197.210.84.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:01','2020-03-26 12:44:01'),(7350,'english','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:13','2020-03-26 13:09:04'),(7351,'mathematics','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:14','2020-03-26 13:09:05'),(7352,'english','197.210.85.140',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:15','2020-03-26 14:03:15'),(7353,'mathematics','197.210.85.254',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:16','2020-03-26 14:03:17'),(7354,'english','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:01','2020-03-26 14:10:37'),(7355,'mathematics','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:03','2020-03-26 14:10:38'),(7356,'irk','3.94.121.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:26:17','2020-03-26 19:26:17'),(7357,'chemistry','114.119.161.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:45:34','2020-03-26 19:45:34'),(7358,'crk','174.129.131.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 22:50:44','2020-03-26 22:50:44'),(7359,'commerce','3.91.233.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 01:48:15','2020-03-27 01:48:15'),(7360,'accounting','54.208.155.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 05:24:26','2020-03-27 05:24:26'),(7361,'economics','52.91.100.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:22:14','2020-03-27 09:22:14'),(7362,'chemistry','66.102.8.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:51:49','2020-03-27 09:51:51'),(7363,'government','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 10:43:15','2020-03-27 10:43:15'),(7364,'chemistry','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:21:50','2020-03-27 11:21:50'),(7365,'english','102.89.0.135',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:47','2020-03-27 11:36:38'),(7366,'mathematics','102.89.1.184',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:48','2020-04-27 18:37:31'),(7367,'mathematics','102.89.1.114',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:33:55','2020-03-27 11:33:55'),(7368,'mathematics','102.89.0.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:36:39','2020-03-27 11:36:39'),(7369,'geography','54.209.201.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 13:36:58','2020-03-27 13:36:58'),(7370,'commerce','54.162.99.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 14:52:49','2020-03-27 14:52:49'),(7371,'economics','34.227.72.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 17:36:43','2020-03-27 17:36:43'),(7372,'crk','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 19:48:01','2020-03-27 19:48:01'),(7373,'insurance','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 20:10:12','2020-03-27 20:10:12'),(7374,'mathematics','18.212.220.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 22:19:25','2020-03-27 22:19:25'),(7375,'englishlit','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:27:23','2020-03-27 23:27:23'),(7376,'english','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:38:18','2020-03-27 23:38:18'),(7377,'crk','54.91.106.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 02:52:57','2020-03-28 02:52:57'),(7378,'english','54.204.180.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 04:14:13','2020-03-28 04:14:13'),(7379,'accounting','105.112.31.78',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:01:29','2020-03-28 06:01:32'),(7380,'chemistry','105.112.31.78',218,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 06:16:34','2020-03-28 10:26:50'),(7381,'mathematics','105.112.31.78',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:21:28','2020-03-28 06:21:37'),(7382,'crk','105.112.31.78',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:24:50','2020-03-28 06:24:54'),(7383,'crk','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:58:54','2020-03-28 06:58:57'),(7384,'mathematics','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:59:17','2020-03-28 06:59:19'),(7385,'biology','3.81.58.70',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:00:16','2020-03-28 07:28:03'),(7386,'biology','18.212.96.129',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:28:19','2020-03-28 07:29:29'),(7387,'chemistry','18.212.96.129',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 07:29:37','2020-03-28 07:46:04'),(7388,'mathematics','18.212.96.129',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:30:36','2020-03-28 07:30:39'),(7389,'chemistry','54.196.165.71',160,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:19:31','2020-03-28 08:21:56'),(7390,'crk','3.82.235.188',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:53:24','2020-03-28 08:53:24'),(7391,'chemistry','157.55.39.86',7,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 09:13:40','2020-03-28 09:13:40'),(7392,'physics','54.145.168.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 14:48:56','2020-03-28 14:48:56'),(7393,'english','35.172.185.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 17:23:34','2020-03-28 17:23:34'),(7394,'currentaffairs','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 18:18:16','2020-03-28 18:18:16'),(7395,'englishlit','54.84.20.113',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 18:46:01','2020-03-28 18:46:01'),(7396,'crk','34.207.92.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 20:17:19','2020-03-28 20:17:19'),(7397,'englishlit','54.227.76.74',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 22:38:07','2020-03-28 22:38:07'),(7398,'chemistry','100.26.102.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 23:45:57','2020-03-28 23:45:57'),(7399,'english','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:26:48','2020-03-29 01:26:48'),(7400,'government','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:48:28','2020-03-29 01:48:28'),(7401,'currentaffairs','54.166.138.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 02:46:57','2020-03-29 02:46:57'),(7402,'economics','54.224.84.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 03:48:49','2020-03-29 03:48:49'),(7403,'chemistry','3.235.65.91',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 05:20:26','2020-03-29 05:44:48'),(7404,'english','54.174.190.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 10:18:53','2020-03-29 10:18:53'),(7405,'civiledu','54.172.166.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:13:13','2020-03-29 11:13:13'),(7406,'chemistry','54.174.40.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:55:39','2020-03-29 11:55:39'),(7407,'chemistry','180.103.58.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:00:01','2020-03-29 12:00:01'),(7408,'chemistry','82.145.220.58',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:01:04','2020-03-29 12:01:05'),(7409,'mathematics','54.92.219.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:42:18','2020-03-29 12:42:18'),(7410,'mathematics','18.206.91.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 13:35:15','2020-03-29 13:35:15'),(7411,'chemistry','58.255.198.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 14:37:51','2020-03-29 14:37:51'),(7412,'chemistry','111.160.25.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 17:47:36','2020-03-29 17:47:36'),(7413,'chemistry','18.206.237.17',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 18:38:42','2020-03-29 18:38:45'),(7414,'currentaffairs','54.163.120.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 19:48:21','2020-03-29 19:48:21'),(7415,'chemistry','54.145.49.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 21:49:35','2020-03-29 21:49:35'),(7416,'englishlit','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:05:16','2020-03-30 01:05:16'),(7417,'accounting','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:33:36','2020-03-30 01:33:36'),(7418,'commerce','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7419,'accounting','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7420,'physics','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7421,'geography','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7422,'civiledu','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7423,'currentaffairs','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7424,'history','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7425,'mathematics','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:50:17','2020-03-31 05:50:17'),(7426,'commerce','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:51:26','2020-03-31 05:51:26'),(7427,'geography','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 07:58:39','2020-03-31 10:19:30'),(7428,'biology','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:01:26','2020-03-31 09:22:41'),(7429,'currentaffairs','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:27:55','2020-03-31 09:50:10'),(7430,'government','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:46:16','2020-03-31 10:11:00'),(7431,'civiledu','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:00:56','2020-03-31 09:10:50'),(7432,'english','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:08:10','2020-03-31 10:09:09'),(7433,'mathematics','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7434,'commerce','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 10:07:16'),(7435,'chemistry','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7436,'crk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7437,'irk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7438,'englishlit','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 16:48:59','2020-03-31 16:48:59'),(7439,'physics','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 17:25:08','2020-03-31 17:25:08'),(7440,'geography','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 18:36:35','2020-03-31 18:36:35'),(7441,'currentaffairs','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 19:04:20','2020-03-31 19:04:20'),(7442,'currentaffairs','54.224.172.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 21:22:54','2020-03-31 21:22:54'),(7443,'chemistry','197.210.84.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:38','2020-03-31 22:04:43'),(7444,'chemistry','197.210.84.199',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:50','2020-03-31 22:04:55'),(7445,'chemistry','197.210.84.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:05:03','2020-03-31 22:05:05'),(7446,'physics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:04:01','2020-04-01 02:04:01'),(7447,'mathematics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:10:56','2020-04-01 02:10:56'),(7448,'mathematics','3.80.85.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 04:50:44','2020-04-01 04:50:44'),(7449,'mathematics','18.212.146.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 06:03:05','2020-04-01 06:03:05'),(7450,'chemistry','114.119.163.81',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 09:42:15','2020-04-01 09:42:15'),(7451,'chemistry','197.211.57.245',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 12:50:39','2020-04-01 12:52:16'),(7452,'english','34.230.39.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 16:42:36','2020-04-01 16:42:36'),(7453,'mathematics','18.234.121.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 19:01:10','2020-04-01 19:01:10'),(7454,'accounting','54.147.176.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 20:49:28','2020-04-01 20:49:28'),(7455,'biology','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:56','2020-04-01 21:17:56'),(7456,'physics','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7457,'government','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7458,'geography','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7459,'economics','54.147.176.88',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-22 05:41:24'),(7460,'civiledu','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7461,'insurance','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7462,'chemistry','54.36.148.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 00:49:26','2020-04-02 00:49:29'),(7463,'history','54.236.10.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 03:47:55','2020-04-02 03:47:55'),(7464,'chemistry','197.210.70.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 20:57:50','2020-04-02 20:57:52'),(7465,'economics','34.229.174.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 01:39:45','2020-04-03 01:39:45'),(7466,'history','3.81.12.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 02:51:48','2020-04-03 02:51:48'),(7467,'government','102.89.1.199',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 11:46:35','2020-04-03 11:46:36'),(7468,'commerce','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7469,'accounting','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7470,'crk','54.224.177.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:53:40'),(7471,'economics','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7472,'civiledu','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7473,'currentaffairs','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7474,'history','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7475,'physics','54.227.76.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 18:36:02','2020-04-03 18:36:02'),(7476,'english','3.85.190.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 21:48:32','2020-04-03 21:48:32'),(7477,'commerce','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 23:42:41','2020-04-03 23:42:41'),(7478,'economics','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 00:01:21','2020-04-04 00:01:21'),(7479,'chemistry','207.46.13.220',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 01:45:34','2020-04-04 10:12:07'),(7480,'government','54.209.223.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 02:40:53','2020-04-04 02:40:53'),(7481,'geography','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:46:07','2020-04-04 03:46:07'),(7482,'chemistry','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:56:04','2020-04-04 03:56:04'),(7483,'government','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 04:24:02','2020-04-04 04:24:02'),(7484,'economics','54.87.134.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:29:31','2020-04-04 08:29:31'),(7485,'mathematics','105.112.56.96',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:37:54','2020-04-04 08:42:05'),(7486,'english','197.210.71.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:22:13','2020-04-04 10:22:13'),(7487,'chemistry','197.211.61.123',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:43:13','2020-04-04 10:46:06'),(7488,'physics','197.211.61.123',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:46:42','2020-04-04 10:46:42'),(7489,'english','197.211.61.123',726,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:11','2020-04-04 12:22:56'),(7490,'commerce','3.80.214.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:21','2020-04-04 10:47:21'),(7491,'english','197.211.61.125',406,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-04 12:41:24','2020-04-04 13:00:00'),(7492,'chemistry','197.211.61.125',10,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:00:38','2020-04-04 13:13:18'),(7493,'insurance','3.86.32.0',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:22:34','2020-04-04 13:22:34'),(7494,'englishlit','52.23.172.123',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:17:24','2020-04-04 14:17:24'),(7495,'chemistry','157.55.39.42',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:48:38','2020-04-04 14:48:38'),(7496,'chemistry','66.249.64.104',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:18:30','2020-04-04 17:18:31'),(7497,'english','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:20:12','2020-04-04 17:20:12'),(7498,'crk','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:30:11','2020-04-04 17:30:11'),(7499,'crk','54.163.215.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 22:41:54','2020-04-04 22:41:54'),(7500,'physics','52.91.100.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 04:23:04','2020-04-05 04:23:04'),(7501,'biology','3.81.133.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 05:11:31','2020-04-05 05:11:31'),(7502,'englishlit','54.89.124.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 06:31:33','2020-04-05 06:31:33'),(7503,'chemistry','197.210.71.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:23:44','2020-04-05 08:23:44'),(7504,'chemistry','197.210.71.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:35','2020-04-05 08:28:01'),(7505,'chemistry','197.210.71.175',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:53','2020-04-05 08:29:40'),(7506,'chemistry','197.210.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:28:36','2020-04-05 08:28:36'),(7507,'english','197.210.71.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:32:51','2020-04-05 08:32:53'),(7508,'english','197.210.174.172',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:34:34','2020-04-05 08:34:37'),(7509,'currentaffairs','3.87.91.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 09:08:45','2020-04-05 09:08:45'),(7510,'crk','18.206.247.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:11:56','2020-04-05 10:11:56'),(7511,'englishlit','3.208.20.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:55:11','2020-04-05 10:55:11'),(7512,'chemistry','66.249.88.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 11:30:48','2020-04-05 11:30:50'),(7513,'economics','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:16:19','2020-04-05 12:16:19'),(7514,'government','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:53:23','2020-04-05 12:53:23'),(7515,'english','34.233.133.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 13:47:53','2020-04-05 13:47:53'),(7516,'mathematics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7517,'commerce','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7518,'biology','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7519,'physics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7520,'chemistry','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7521,'englishlit','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:26'),(7522,'history','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:26','2020-04-06 12:14:26'),(7523,'accounting','54.152.156.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:19:13','2020-04-06 12:19:13'),(7524,'accounting','3.80.94.111',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 15:07:41','2020-04-06 15:07:41'),(7525,'chemistry','105.112.115.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 22:20:42','2020-04-06 22:20:42'),(7526,'commerce','34.227.162.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 06:35:37','2020-04-07 06:35:37'),(7527,'crk','107.23.255.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 08:35:49','2020-04-07 08:35:49'),(7528,'physics','18.212.66.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 09:45:19','2020-04-07 09:45:19'),(7529,'mathematics','34.236.143.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 13:42:20','2020-04-07 13:42:20'),(7530,'chemistry','64.233.172.196',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 14:19:21','2020-04-07 14:19:22'),(7531,'chemistry','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:06','2020-04-07 16:55:06'),(7532,'chemistry','197.210.53.20',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:14','2020-04-07 16:55:14'),(7533,'chemistry','197.210.52.112',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:33','2020-04-07 16:55:33'),(7534,'geography','3.95.225.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 17:53:36','2020-04-07 17:53:36'),(7535,'chemistry','197.210.52.88',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:07:14','2020-04-07 19:19:19'),(7536,'chemistry','197.210.53.6',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:32:43','2020-04-07 18:39:36'),(7537,'chemistry','197.210.52.36',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:34:00','2020-04-07 18:43:49'),(7538,'chemistry','197.210.53.99',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:05','2020-04-07 19:17:34'),(7539,'chemistry','197.210.52.22',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:27','2020-04-07 18:48:54'),(7540,'english','197.210.53.99',695,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:56'),(7541,'english','197.210.53.6',765,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:31'),(7542,'english','197.210.53.65',848,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:28:00'),(7543,'english','197.210.52.12',917,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:55'),(7544,'english','197.210.52.88',795,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:55'),(7545,'english','197.210.52.36',477,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:58'),(7546,'geography','18.205.107.57',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 20:02:08','2020-04-07 20:02:08'),(7547,'english','108.41.239.178',1802,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-12 16:31:21'),(7548,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7549,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7550,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7551,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7552,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7553,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7554,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7555,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7556,'irk','108.41.239.178',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:01','2020-04-12 16:31:20'),(7557,'civiledu','108.41.239.178',626,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7558,'insurance','108.41.239.178',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:23'),(7559,'currentaffairs','108.41.239.178',429,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7560,'physics','54.156.62.219',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 00:38:52','2020-04-08 00:38:52'),(7561,'englishlit','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:17:24','2020-04-08 01:17:24'),(7562,'geography','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:43:32','2020-04-08 01:43:32'),(7563,'currentaffairs','3.94.134.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 03:38:40','2020-04-08 03:38:40'),(7564,'chemistry','77.88.5.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-08 04:45:23','2020-04-08 04:45:23'),(7565,'english','18.206.175.184',3,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:05'),(7566,'chemistry','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7567,'government','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7568,'geography','18.206.175.184',2,'','NG','','Lagos',NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7569,'irk','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7570,'civiledu','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7571,'currentaffairs','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7572,'mathematics','3.95.38.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 10:05:10','2020-04-08 10:05:10'),(7573,'geography','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 11:58:50','2020-04-08 11:58:50'),(7574,'physics','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 12:09:29','2020-04-08 12:09:29'),(7575,'mathematics','34.230.69.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 13:57:51','2020-04-08 13:57:51'),(7576,'accounting','54.152.166.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 03:29:44','2020-04-09 03:29:44'),(7577,'chemistry','34.203.216.217',233,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 06:33:24','2020-04-09 06:37:01'),(7578,'chemistry','197.210.70.115',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 11:54:08','2020-04-09 16:40:18'),(7579,'chemistry','197.210.71.11',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:31','2020-04-09 17:27:14'),(7580,'chemistry','197.210.70.183',287,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:58','2020-04-09 17:20:35'),(7581,'english','197.210.70.109',813,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:40:07'),(7582,'english','197.210.70.69',465,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:38:21'),(7583,'english','197.210.70.149',469,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:25:34'),(7584,'english','197.210.70.211',792,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:31'),(7585,'english','197.210.70.81',624,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7586,'english','197.210.70.183',315,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:35'),(7587,'english','197.210.70.205',600,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7588,'english','197.210.71.235',595,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:17'),(7589,'english','197.210.70.27',674,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:52'),(7590,'english','197.210.70.15',552,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:44'),(7591,'english','197.210.71.79',478,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:33'),(7592,'english','197.210.70.251',820,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:20:15'),(7593,'english','197.210.70.95',701,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:25:00'),(7594,'english','197.210.70.115',676,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:47','2020-04-09 17:26:31'),(7595,'english','197.210.70.225',620,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:48','2020-04-09 17:26:34'),(7596,'english','197.210.70.53',679,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:33'),(7597,'english','197.210.70.239',623,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:24:53'),(7598,'english','197.210.70.217',663,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:30'),(7599,'english','197.210.70.1',515,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:51','2020-04-09 17:24:27'),(7600,'english','197.210.70.137',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:52','2020-04-09 17:25:32'),(7601,'english','197.210.71.11',588,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:58','2020-04-09 17:19:49'),(7602,'english','197.210.70.41',639,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:59','2020-04-09 17:25:34'),(7603,'english','197.210.70.121',555,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:00','2020-04-09 17:25:35'),(7604,'english','197.210.70.189',462,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:01','2020-04-09 17:25:35'),(7605,'english','197.210.70.171',473,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:04','2020-04-09 17:26:34'),(7606,'english','197.210.71.167',510,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:14','2020-04-09 17:24:21'),(7607,'chemistry','197.210.70.109',327,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:42','2020-04-09 17:24:47'),(7608,'mathematics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:35'),(7609,'mathematics','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:28'),(7610,'mathematics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:18:51'),(7611,'mathematics','197.210.70.171',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:24:24'),(7612,'mathematics','197.210.71.167',520,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:25:25'),(7613,'mathematics','197.210.70.69',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:19:18'),(7614,'mathematics','197.210.70.115',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:18:11'),(7615,'mathematics','197.210.70.149',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:51'),(7616,'mathematics','197.210.70.137',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:38'),(7617,'mathematics','197.210.70.95',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:35'),(7618,'mathematics','197.210.70.121',360,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:39'),(7619,'mathematics','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:07'),(7620,'accounting','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:37'),(7621,'accounting','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:18:19'),(7622,'commerce','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:19:14'),(7623,'commerce','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:51'),(7624,'commerce','197.210.70.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 15:19:39'),(7625,'commerce','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:33'),(7626,'accounting','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:18'),(7627,'accounting','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:43'),(7628,'commerce','197.210.71.11',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:44'),(7629,'accounting','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:27:00'),(7630,'commerce','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:26:47'),(7631,'commerce','197.210.71.79',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:24:23'),(7632,'biology','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:20:25'),(7633,'commerce','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:17'),(7634,'mathematics','197.210.70.15',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:30'),(7635,'biology','197.210.71.11',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:40','2020-04-09 17:26:43'),(7636,'biology','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:20:31'),(7637,'biology','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:26:10'),(7638,'commerce','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:56'),(7639,'accounting','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:27:03'),(7640,'biology','197.210.70.41',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:55'),(7641,'biology','197.210.70.251',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:26:55'),(7642,'accounting','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:25:57'),(7643,'biology','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:26:42'),(7644,'physics','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:19:26'),(7645,'biology','197.210.71.167',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:25:49'),(7646,'physics','197.210.70.95',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:26:56'),(7647,'physics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:59'),(7648,'englishlit','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:11'),(7649,'physics','197.210.70.81',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:26:59'),(7650,'physics','197.210.70.239',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:19:05'),(7651,'physics','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:50'),(7652,'biology','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:20:21'),(7653,'englishlit','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:12'),(7654,'physics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:18:58'),(7655,'chemistry','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:51','2020-04-09 16:40:16'),(7656,'chemistry','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:18:32'),(7657,'physics','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:26:02'),(7658,'chemistry','197.210.71.167',480,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:53','2020-04-09 17:27:14'),(7659,'englishlit','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:54','2020-04-09 17:18:22'),(7660,'englishlit','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:55','2020-04-09 17:26:25'),(7661,'englishlit','197.210.70.121',357,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:56','2020-04-09 17:26:21'),(7662,'government','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:17'),(7663,'chemistry','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:09'),(7664,'government','197.210.70.27',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:27'),(7665,'englishlit','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:18:20'),(7666,'chemistry','197.210.70.225',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:07'),(7667,'government','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:20:42'),(7668,'chemistry','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:19:30'),(7669,'chemistry','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:24:47'),(7670,'crk','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:59','2020-04-09 17:24:54'),(7671,'government','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:26:18'),(7672,'crk','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:25:01'),(7673,'government','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 15:51:08'),(7674,'englishlit','197.210.70.81',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:01','2020-04-09 17:26:17'),(7675,'crk','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:03','2020-04-09 17:27:20'),(7676,'geography','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:04','2020-04-09 17:27:21'),(7677,'geography','197.210.70.27',278,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:19:43'),(7678,'crk','197.210.70.81',237,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:20:43'),(7679,'government','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:08','2020-04-09 17:27:30'),(7680,'geography','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:25'),(7681,'government','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:27:17'),(7682,'crk','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:37'),(7683,'government','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:27:27'),(7684,'crk','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:25:07'),(7685,'geography','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:19:46'),(7686,'economics','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:20:58'),(7687,'economics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:26:24'),(7688,'geography','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:25:03'),(7689,'government','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:20:43'),(7690,'crk','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 16:39:57'),(7691,'crk','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 17:20:43'),(7692,'geography','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:26:23'),(7693,'economics','197.210.71.79',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:20:49'),(7694,'crk','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:27:27'),(7695,'geography','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:15','2020-04-09 17:27:29'),(7696,'economics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:17','2020-04-09 17:27:42'),(7697,'economics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:18','2020-04-09 17:25:03'),(7698,'irk','197.210.70.15',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:19:50'),(7699,'economics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:26:12'),(7700,'economics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:27:42'),(7701,'irk','197.210.71.167',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:20','2020-04-09 17:20:47'),(7702,'civiledu','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:43'),(7703,'irk','197.210.70.53',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:25:11'),(7704,'economics','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:32'),(7705,'irk','197.210.70.41',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:18:38'),(7706,'currentaffairs','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:23','2020-04-09 17:25:07'),(7707,'irk','197.210.70.81',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:25:14'),(7708,'civiledu','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:19:55'),(7709,'insurance','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:20:58'),(7710,'currentaffairs','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:21:02'),(7711,'insurance','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:27:50'),(7712,'currentaffairs','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:21:07'),(7713,'civiledu','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 16:40:24'),(7714,'currentaffairs','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:28','2020-04-09 16:40:39'),(7715,'civiledu','197.210.70.27',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:27:51'),(7716,'history','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:21:10'),(7717,'currentaffairs','197.210.71.11',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:20:06'),(7718,'civiledu','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:27:39'),(7719,'currentaffairs','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 17:20:11'),(7720,'insurance','197.210.70.205',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 15:22:09'),(7721,'insurance','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 16:34:20'),(7722,'insurance','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:33','2020-04-09 17:27:51'),(7723,'civiledu','197.210.70.95',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:27:39'),(7724,'irk','197.210.71.11',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:25:10'),(7725,'civiledu','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 16:29:46'),(7726,'insurance','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:27:52'),(7727,'civiledu','197.210.70.211',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:20:55'),(7728,'irk','197.210.70.69',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:18:39'),(7729,'currentaffairs','197.210.70.53',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:20:06'),(7730,'civiledu','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:47'),(7731,'currentaffairs','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:48'),(7732,'currentaffairs','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:48'),(7733,'history','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:28:00'),(7734,'history','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:55'),(7735,'economics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:42'),(7736,'irk','197.210.70.217',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:20:51'),(7737,'insurance','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:40','2020-04-09 17:19:57'),(7738,'insurance','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:18:43'),(7739,'insurance','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 16:40:38'),(7740,'history','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:21:10'),(7741,'history','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:20:11'),(7742,'history','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 16:40:37'),(7743,'history','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 17:21:05'),(7744,'history','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:28:01'),(7745,'history','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:27:54'),(7746,'mathematics','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:22'),(7747,'commerce','197.210.70.41',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:24'),(7748,'commerce','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:38'),(7749,'biology','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:27:10'),(7750,'mathematics','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:47'),(7751,'commerce','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:24:39'),(7752,'commerce','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:59','2020-04-09 17:26:44'),(7753,'mathematics','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:25:39'),(7754,'accounting','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:24:41'),(7755,'commerce','197.210.70.53',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:04','2020-04-09 17:24:17'),(7756,'mathematics','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:05','2020-04-09 17:25:37'),(7757,'accounting','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:06','2020-04-09 17:19:01'),(7758,'biology','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:26:47'),(7759,'biology','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:18:58'),(7760,'commerce','197.210.70.109',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:19:01'),(7761,'commerce','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:20:12'),(7762,'accounting','197.210.70.171',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:11','2020-04-09 17:26:47'),(7763,'accounting','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:12','2020-04-09 17:26:40'),(7764,'mathematics','197.210.70.189',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:26:31'),(7765,'englishlit','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:27:13'),(7766,'accounting','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:25:40'),(7767,'accounting','197.210.70.53',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:20:21'),(7768,'biology','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:56'),(7769,'commerce','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:39'),(7770,'accounting','197.210.71.235',319,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:19:25'),(7771,'physics','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:25:59'),(7772,'chemistry','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:19','2020-04-09 17:26:05'),(7773,'accounting','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:26:47'),(7774,'physics','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:19:23'),(7775,'government','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:22','2020-04-09 17:24:50'),(7776,'englishlit','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:24','2020-04-09 17:26:21'),(7777,'physics','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:25','2020-04-09 16:31:21'),(7778,'englishlit','197.210.70.211',398,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 17:27:22'),(7779,'biology','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 16:39:44'),(7780,'government','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 16:40:23'),(7781,'chemistry','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 17:26:09'),(7782,'irk','197.210.71.235',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:29','2020-04-09 17:25:52'),(7783,'englishlit','197.210.70.205',438,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:30','2020-04-09 17:27:13'),(7784,'irk','197.210.70.27',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:19:47'),(7785,'civiledu','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:26:16'),(7786,'civiledu','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 16:34:11'),(7787,'government','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 17:26:23'),(7788,'crk','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:17'),(7789,'civiledu','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:38'),(7790,'geography','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:25:05'),(7791,'government','197.210.70.189',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:27:08'),(7792,'government','197.210.71.79',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:24:48'),(7793,'history','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:36','2020-04-09 16:40:38'),(7794,'currentaffairs','197.210.70.69',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:38','2020-04-09 16:32:06'),(7795,'civiledu','197.210.70.189',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:39','2020-04-09 17:21:04'),(7796,'geography','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:41','2020-04-09 17:27:25'),(7797,'chemistry','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:26:14'),(7798,'irk','197.210.70.239',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:19:59'),(7799,'government','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:24:54'),(7800,'civiledu','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:43','2020-04-09 17:26:17'),(7801,'crk','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:24:50'),(7802,'geography','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:27:23'),(7803,'economics','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:18:37'),(7804,'currentaffairs','197.210.70.225',437,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:21:06'),(7805,'physics','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:59'),(7806,'physics','197.210.70.137',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:55'),(7807,'economics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:47','2020-04-09 17:25:08'),(7808,'crk','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:20:52'),(7809,'geography','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:27:37'),(7810,'irk','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:49','2020-04-09 17:20:45'),(7811,'currentaffairs','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:21:03'),(7812,'government','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:27:14'),(7813,'biology','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:24:31'),(7814,'currentaffairs','197.210.70.121',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:53','2020-04-09 17:27:52'),(7815,'irk','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:34'),(7816,'crk','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:29'),(7817,'economics','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 17:20:58'),(7818,'history','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 16:32:01'),(7819,'crk','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:59','2020-04-09 17:25:00'),(7820,'englishlit','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:24:53'),(7821,'irk','197.210.70.171',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:27:35'),(7822,'crk','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:38:38'),(7823,'history','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:42'),(7824,'insurance','197.210.70.95',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:19:56'),(7825,'geography','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:09'),(7826,'crk','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:33:56'),(7827,'irk','197.210.70.189',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:27:33'),(7828,'insurance','197.210.70.251',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:25:11'),(7829,'civiledu','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:07','2020-04-09 17:20:56'),(7830,'insurance','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 16:34:15'),(7831,'irk','197.210.70.149',176,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 17:27:41'),(7832,'currentaffairs','197.210.70.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 16:40:42'),(7833,'economics','197.210.70.121',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 17:25:07'),(7834,'commerce','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:50'),(7835,'commerce','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:41'),(7836,'crk','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:20:44'),(7837,'chemistry','197.210.70.251',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:05'),(7838,'mathematics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:19:13'),(7839,'englishlit','197.210.71.235',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:07'),(7840,'commerce','197.210.70.137',236,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:26:31'),(7841,'commerce','197.210.71.167',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:24:23'),(7842,'biology','197.210.70.137',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:26:06'),(7843,'mathematics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:20:20'),(7844,'accounting','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:25:53'),(7845,'biology','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:46','2020-04-09 17:26:11'),(7846,'accounting','197.210.70.239',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:26:54'),(7847,'government','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:27:08'),(7848,'physics','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:48','2020-04-09 17:26:05'),(7849,'physics','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:24:29'),(7850,'physics','197.210.71.167',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:19:22'),(7851,'englishlit','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:26:09'),(7852,'physics','197.210.70.149',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:50','2020-04-09 17:26:08'),(7853,'chemistry','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:27:13'),(7854,'geography','197.210.70.137',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:25:02'),(7855,'geography','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:20:50'),(7856,'geography','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:25:06'),(7857,'accounting','197.210.71.11',119,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:20:26'),(7858,'physics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:19:05'),(7859,'chemistry','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:18:26'),(7860,'crk','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 16:39:56'),(7861,'geography','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:25:18'),(7862,'government','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:24:59'),(7863,'economics','197.210.70.217',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:27:25'),(7864,'government','197.210.70.239',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:27:11'),(7865,'economics','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:26:31'),(7866,'irk','197.210.70.1',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:19:46'),(7867,'insurance','197.210.70.225',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 16:40:29'),(7868,'irk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:20:55'),(7869,'economics','197.210.70.183',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:27:43'),(7870,'civiledu','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:58','2020-04-09 17:27:43'),(7871,'currentaffairs','197.210.70.149',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 17:21:04'),(7872,'civiledu','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 16:31:55'),(7873,'history','197.210.70.81',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 16:30:00'),(7874,'civiledu','197.210.70.41',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:27:44'),(7875,'currentaffairs','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:28:03'),(7876,'insurance','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:20:03'),(7877,'economics','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:19:53'),(7878,'irk','197.210.70.95',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:19:52'),(7879,'currentaffairs','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:03'),(7880,'currentaffairs','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:10'),(7881,'history','197.210.70.121',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 16:29:54'),(7882,'insurance','197.210.70.239',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 16:40:27'),(7883,'irk','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 17:27:47'),(7884,'biology','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:19:01'),(7885,'commerce','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:25:59'),(7886,'englishlit','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:56','2020-04-09 16:33:35'),(7887,'physics','197.210.70.115',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:57','2020-04-09 17:26:57'),(7888,'englishlit','197.210.70.53',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:26:09'),(7889,'crk','197.210.70.211',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:14'),(7890,'geography','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:27'),(7891,'crk','197.210.70.27',317,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:27:27'),(7892,'physics','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:20:31'),(7893,'chemistry','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:18:23'),(7894,'biology','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:20:24'),(7895,'economics','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 15:51:41'),(7896,'englishlit','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:27:12'),(7897,'accounting','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:20:23'),(7898,'commerce','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:26:40'),(7899,'chemistry','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:19:34'),(7900,'irk','197.210.70.115',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:27:38'),(7901,'physics','197.210.70.183',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:25:59'),(7902,'accounting','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:00'),(7903,'economics','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:45'),(7904,'government','197.210.70.205',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:04','2020-04-09 17:26:07'),(7905,'crk','197.210.70.225',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 17:27:17'),(7906,'geography','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:40:36'),(7907,'geography','197.210.70.251',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:38:42'),(7908,'insurance','197.210.70.121',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:27:49'),(7909,'englishlit','197.210.70.137',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:26:15'),(7910,'chemistry','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:20:41'),(7911,'economics','197.210.70.109',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 16:40:33'),(7912,'mathematics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 17:26:43'),(7913,'insurance','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 16:40:42'),(7914,'economics','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:27:31'),(7915,'englishlit','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:24:55'),(7916,'irk','197.210.70.109',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:18:37'),(7917,'mathematics','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:25:46'),(7918,'mathematics','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:43'),(7919,'commerce','197.210.70.95',222,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:45'),(7920,'accounting','197.210.70.115',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:21','2020-04-09 17:19:09'),(7921,'biology','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:27:04'),(7922,'commerce','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:26:35'),(7923,'physics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:23','2020-04-09 17:26:48'),(7924,'physics','197.210.70.225',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:24','2020-04-09 17:26:55'),(7925,'irk','197.210.70.137',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:25','2020-04-09 17:27:41'),(7926,'chemistry','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:26','2020-04-09 17:19:10'),(7927,'englishlit','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:24:44'),(7928,'irk','197.210.70.225',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 16:19:11'),(7929,'government','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:26:12'),(7930,'crk','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:28','2020-04-09 17:24:46'),(7931,'englishlit','197.210.70.217',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:24:57'),(7932,'civiledu','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:19:55'),(7933,'government','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:42'),(7934,'englishlit','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:54'),(7935,'civiledu','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:31','2020-04-09 17:18:40'),(7936,'englishlit','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:27:09'),(7937,'geography','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 16:31:42'),(7938,'government','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:25:00'),(7939,'currentaffairs','197.210.70.189',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:33','2020-04-09 17:28:02'),(7940,'insurance','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:34','2020-04-09 17:25:10'),(7941,'insurance','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:27:49'),(7942,'civiledu','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:25'),(7943,'crk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:23'),(7944,'currentaffairs','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:13'),(7945,'geography','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:04'),(7946,'mathematics','197.210.70.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:16','2020-04-09 17:19:16'),(7947,'crk','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:23','2020-04-09 17:27:26'),(7948,'biology','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:25','2020-04-09 17:24:31'),(7949,'chemistry','197.210.70.41',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:26','2020-04-09 17:19:28'),(7950,'physics','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:29','2020-04-09 17:24:35'),(7951,'accounting','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:30','2020-04-09 17:26:46'),(7952,'englishlit','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:33','2020-04-09 17:27:10'),(7953,'englishlit','197.210.70.27',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:34','2020-04-09 17:24:45'),(7954,'geography','197.210.70.189',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:37','2020-04-09 17:25:02'),(7955,'crk','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:41','2020-04-09 17:27:28'),(7956,'economics','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:42','2020-04-09 17:20:52'),(7957,'geography','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:46','2020-04-09 17:27:26'),(7958,'civiledu','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:47','2020-04-09 17:26:19'),(7959,'insurance','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:27:47'),(7960,'insurance','197.210.71.235',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:19:59'),(7961,'currentaffairs','197.210.71.235',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:50','2020-04-09 17:25:28'),(7962,'history','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:05'),(7963,'history','197.210.70.189',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:03'),(7964,'civiledu','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:55','2020-04-09 17:27:40'),(7965,'insurance','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:56','2020-04-09 17:27:32'),(7966,'currentaffairs','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:57','2020-04-09 17:25:24'),(7967,'currentaffairs','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:58','2020-04-09 17:20:07'),(7968,'mathematics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:20:18'),(7969,'biology','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:19:04'),(7970,'physics','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:18','2020-04-09 17:20:28'),(7971,'biology','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:32','2020-04-09 17:26:52'),(7972,'chemistry','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:52','2020-04-09 17:26:57'),(7973,'chemistry','197.210.70.211',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:54','2020-04-09 17:20:38'),(7974,'irk','197.210.71.79',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:04','2020-04-09 17:20:50'),(7975,'civiledu','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:18','2020-04-09 17:21:29'),(7976,'insurance','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:20','2020-04-09 17:18:43'),(7977,'insurance','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:23','2020-04-09 17:27:58'),(7978,'currentaffairs','197.210.70.81',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:28','2020-04-09 17:27:55'),(7979,'currentaffairs','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:31','2020-04-09 17:27:56'),(7980,'government','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:34','2020-04-09 17:24:55'),(7981,'government','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 17:27:26'),(7982,'history','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 16:40:41'),(7983,'accounting','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:38','2020-04-09 17:20:26'),(7984,'history','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:39','2020-04-09 17:20:15'),(7985,'accounting','197.210.70.27',233,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:40','2020-04-09 17:19:23'),(7986,'history','197.210.70.95',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:41','2020-04-09 16:19:47'),(7987,'economics','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:27:56','2020-04-09 17:27:35'),(7988,'chemistry','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:01','2020-04-09 17:27:09'),(7989,'mathematics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:14','2020-04-09 17:25:47'),(7990,'accounting','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:34','2020-04-09 17:20:17'),(7991,'biology','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:35','2020-04-09 17:26:04'),(7992,'biology','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:36','2020-04-09 17:24:26'),(7993,'englishlit','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:45','2020-04-09 17:20:33'),(7994,'chemistry','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:54','2020-04-09 17:19:28'),(7995,'economics','197.210.70.211',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:12','2020-04-09 17:26:24'),(7996,'geography','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:15','2020-04-09 17:27:26'),(7997,'geography','197.210.70.239',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:20','2020-04-09 17:27:32'),(7998,'civiledu','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:28','2020-04-09 17:20:03'),(7999,'government','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:22','2020-04-09 17:27:20'),(8000,'irk','197.210.70.211',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:38','2020-04-09 17:26:26'),(8001,'insurance','197.210.70.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:20:02'),(8002,'history','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:08'),(8003,'history','197.210.70.217',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:07'),(8004,'history','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:47','2020-04-09 17:20:12'),(8005,'history','197.210.70.211',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:52','2020-04-09 17:21:12'),(8006,'history','197.210.70.205',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:55','2020-04-09 17:21:06'),(8007,'commerce','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:09','2020-04-09 17:20:20'),(8008,'physics','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:11','2020-04-09 17:20:37'),(8009,'civiledu','197.210.70.149',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:49','2020-04-09 17:21:00'),(8010,'economics','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:52','2020-04-09 17:20:57'),(8011,'currentaffairs','197.210.70.183',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:09','2020-04-09 17:27:59'),(8012,'history','197.210.70.137',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:13','2020-04-09 16:34:24'),(8013,'crk','197.210.70.137',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:38:31','2020-04-09 17:19:42'),(8014,'accounting','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:39:37','2020-04-09 17:26:43'),(8015,'biology','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:12','2020-04-09 17:27:01'),(8016,'geography','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:28','2020-04-09 17:20:54'),(8017,'insurance','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:33','2020-04-09 17:21:00'),(8018,'economics','197.210.70.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 17:20:44','2020-04-09 17:20:50'),(8019,'civiledu','18.232.76.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:01:19','2020-04-10 02:01:19'),(8020,'economics','3.88.169.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:51:46','2020-04-10 02:51:46'),(8021,'history','3.82.157.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 05:11:10','2020-04-10 05:11:10'),(8022,'mathematics','54.196.241.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 06:19:44','2020-04-10 06:19:44'),(8023,'history','3.88.70.16',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:01:55','2020-04-10 15:25:17'),(8024,'commerce','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8025,'physics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8026,'chemistry','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8027,'englishlit','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:14'),(8028,'crk','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8029,'irk','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:16'),(8030,'currentaffairs','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:17'),(8031,'english','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:14','2020-04-10 15:25:14'),(8032,'geography','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:15','2020-04-10 15:25:15'),(8033,'economics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:16','2020-04-10 15:25:16'),(8034,'commerce','54.89.208.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 17:29:46','2020-04-10 17:29:46'),(8035,'chemistry','197.210.8.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 18:23:00','2020-04-10 18:23:00'),(8036,'crk','35.173.248.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 19:52:55','2020-04-10 19:52:55'),(8037,'chemistry','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:34','2020-04-10 22:44:37'),(8038,'englishlit','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8039,'government','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8040,'geography','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8041,'economics','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8042,'civiledu','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8043,'insurance','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:38','2020-04-10 22:44:38'),(8044,'economics','52.55.93.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 23:42:01','2020-04-10 23:42:01'),(8045,'government','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:41:11','2020-04-11 01:41:11'),(8046,'chemistry','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:45:12','2020-04-11 01:45:12'),(8047,'geography','35.175.184.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 02:56:41','2020-04-11 02:56:41'),(8048,'government','34.224.58.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 04:37:27','2020-04-11 04:37:27'),(8049,'chemistry','116.88.133.110',51,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-11 05:33:06','2020-04-19 15:27:03'),(8050,'economics','3.90.47.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 05:55:15','2020-04-11 05:55:15'),(8051,'english','3.82.203.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 07:21:01','2020-04-11 07:21:01'),(8052,'biology','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8053,'government','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8054,'irk','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:09'),(8055,'civiledu','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:09'),(8056,'insurance','3.80.112.97',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:22:11'),(8057,'currentaffairs','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:10'),(8058,'history','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:10','2020-04-11 08:18:10'),(8059,'crk','54.83.85.175',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:06:53','2020-04-11 12:07:40'),(8060,'englishlit','34.229.42.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:50:10','2020-04-11 12:50:10'),(8061,'english','3.85.102.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 14:35:24','2020-04-11 14:35:24'),(8062,'crk','52.203.28.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 15:29:45','2020-04-11 15:29:45'),(8063,'crk','3.81.73.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 18:10:31','2020-04-11 18:10:31'),(8064,'commerce','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8065,'accounting','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8066,'physics','54.175.255.15',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 02:11:02'),(8067,'englishlit','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:20'),(8068,'government','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8069,'irk','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8070,'currentaffairs','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8071,'english','54.175.255.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 02:31:32','2020-04-12 02:31:32'),(8072,'currentaffairs','18.206.125.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 08:03:24','2020-04-12 08:03:24'),(8073,'mathematics','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8074,'mathematics','197.210.53.31',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:17'),(8075,'english','197.210.53.138',219,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 17:58:35'),(8076,'commerce','197.210.53.223',76,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:19'),(8077,'mathematics','197.210.53.138',290,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:36'),(8078,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8079,'english','197.210.53.31',62,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8080,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8081,'mathematics','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:31:54'),(8082,'mathematics','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8083,'english','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8084,'commerce','197.210.53.138',259,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:40'),(8085,'english','197.210.53.232',75,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:52'),(8086,'english','197.210.53.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8087,'commerce','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8088,'accounting','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8089,'currentaffairs','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:40'),(8090,'history','197.210.53.232',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8091,'civiledu','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8092,'history','197.210.53.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8093,'history','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8094,'currentaffairs','197.210.52.179',142,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8095,'civiledu','197.210.52.179',163,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8096,'history','197.210.52.170',110,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8097,'history','197.210.52.179',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:43'),(8098,'accounting','197.210.53.138',234,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-30 18:08:11'),(8099,'insurance','197.210.52.170',143,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:42'),(8100,'accounting','197.210.53.232',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:31:01'),(8101,'commerce','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:18','2020-04-12 13:30:55'),(8102,'biology','197.210.53.138',185,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:21','2020-04-30 17:57:35'),(8103,'physics','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:23'),(8104,'physics','197.210.53.138',234,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:49'),(8105,'mathematics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:52'),(8106,'accounting','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:52'),(8107,'biology','197.210.53.223',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:49'),(8108,'biology','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:24'),(8109,'physics','197.210.53.223',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:53'),(8110,'physics','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8111,'government','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8112,'englishlit','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:30'),(8113,'englishlit','197.210.53.138',160,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:15'),(8114,'physics','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8115,'englishlit','197.210.53.232',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:32'),(8116,'chemistry','197.210.53.138',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:53'),(8117,'government','197.210.53.138',182,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:57:07'),(8118,'chemistry','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:33'),(8119,'biology','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8120,'chemistry','197.210.53.232',111,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:25','2020-04-12 13:19:31'),(8121,'englishlit','197.210.52.170',122,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:30'),(8122,'chemistry','197.210.53.223',75,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:31'),(8123,'government','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:30'),(8124,'government','197.210.53.223',77,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:32'),(8125,'crk','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:30'),(8126,'government','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:30:56'),(8127,'crk','197.210.53.223',109,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:34'),(8128,'crk','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:35'),(8129,'geography','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:33'),(8130,'economics','197.210.53.138',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 17:58:26'),(8131,'geography','197.210.53.138',179,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 18:08:29'),(8132,'economics','197.210.53.223',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-12 13:19:39'),(8133,'crk','197.210.53.138',296,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-30 18:13:36'),(8134,'geography','197.210.53.31',71,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:32','2020-04-12 13:19:36'),(8135,'irk','197.210.53.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:36'),(8136,'irk','197.210.52.179',98,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:38'),(8137,'irk','197.210.52.170',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:30:47'),(8138,'economics','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:41'),(8139,'geography','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8140,'economics','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:37'),(8141,'irk','197.210.53.31',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8142,'economics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:41'),(8143,'civiledu','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:39'),(8144,'irk','197.210.53.223',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:37'),(8145,'civiledu','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:31:53'),(8146,'insurance','197.210.53.31',130,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:40'),(8147,'currentaffairs','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:31:54'),(8148,'currentaffairs','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:19:39'),(8149,'insurance','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:37','2020-04-12 13:19:40'),(8150,'currentaffairs','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:39','2020-04-12 13:19:42'),(8151,'crk','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:47','2020-04-12 13:30:50'),(8152,'commerce','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:53','2020-04-12 13:31:38'),(8153,'englishlit','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:58','2020-04-12 13:31:01'),(8154,'chemistry','197.210.52.106',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 16:15:11','2020-04-12 16:15:17'),(8155,'chemistry','105.112.50.114',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:16:45','2020-04-12 16:22:27'),(8156,'accounting','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8157,'crk','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8158,'history','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8159,'government','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8160,'commerce','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8161,'geography','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8162,'physics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8163,'biology','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8164,'englishlit','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8165,'economics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8166,'biology','34.224.87.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 03:38:22','2020-04-13 03:38:22'),(8167,'accounting','54.162.182.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 07:00:45','2020-04-13 07:00:45'),(8168,'chemistry','154.118.48.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 08:54:43','2020-04-13 08:54:59'),(8169,'chemistry','41.217.88.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 09:03:00','2020-04-13 09:03:00'),(8170,'chemistry','54.36.149.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:40:53','2020-04-13 23:40:53'),(8171,'chemistry','54.36.148.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:51:04','2020-04-13 23:51:04'),(8172,'chemistry','54.36.148.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:59:53','2020-04-13 23:59:53'),(8173,'chemistry','54.36.148.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:02:02','2020-04-14 00:02:02'),(8174,'chemistry','54.36.148.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:04:51','2020-04-14 00:04:52'),(8175,'insurance','54.166.10.181',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-14 00:24:25','2020-04-20 18:30:46'),(8176,'mathematics','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:41:23','2020-04-14 05:41:23'),(8177,'chemistry','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:48:13','2020-04-14 05:48:13'),(8178,'accounting','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:48','2020-04-14 09:01:50'),(8179,'physics','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:50','2020-04-14 09:01:50'),(8180,'chemistry','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8181,'englishlit','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8182,'civiledu','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8183,'currentaffairs','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8184,'history','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8185,'geography','18.206.240.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 10:07:05','2020-04-14 10:11:06'),(8186,'physics','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:00:35','2020-04-14 16:00:35'),(8187,'englishlit','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:37:56','2020-04-14 16:37:56'),(8188,'geography','18.206.195.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 17:01:28','2020-04-14 17:01:28'),(8189,'chemistry','217.146.176.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 18:42:57','2020-04-14 18:42:58'),(8190,'currentaffairs','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 20:54:30','2020-04-14 20:54:30'),(8191,'mathematics','54.163.208.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 00:52:55','2020-04-15 00:52:55'),(8192,'geography','100.26.52.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 01:58:43','2020-04-15 01:58:43'),(8193,'physics','34.235.149.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 02:45:09','2020-04-15 02:45:09'),(8194,'mathematics','3.87.134.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 03:39:42','2020-04-15 03:39:42'),(8195,'mathematics','34.201.57.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 04:44:44','2020-04-15 04:44:44'),(8196,'accounting','3.84.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 06:20:10','2020-04-15 06:20:10'),(8197,'chemistry','197.210.53.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:40:42','2020-04-15 10:40:43'),(8198,'chemistry','197.210.52.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:42:02','2020-04-15 10:42:02'),(8199,'insurance','52.91.233.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 15:29:09','2020-04-15 15:29:09'),(8200,'civiledu','54.242.136.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 17:12:47','2020-04-15 17:12:47'),(8201,'accounting','3.94.112.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 18:27:15','2020-04-15 18:55:50'),(8202,'history','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 19:09:02','2020-04-15 19:09:02'),(8203,'english','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8204,'commerce','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8205,'accounting','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8206,'government','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8207,'geography','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8208,'economics','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8209,'insurance','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8210,'mathematics','3.85.212.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 02:18:36','2020-04-16 02:18:36'),(8211,'economics','18.234.50.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 12:59:34','2020-04-16 12:59:34'),(8212,'history','18.215.157.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 13:52:47','2020-04-16 13:52:47'),(8213,'chemistry','197.210.44.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:42','2020-04-16 18:43:09'),(8214,'chemistry','197.210.64.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:58','2020-04-16 18:42:58'),(8215,'chemistry','197.210.65.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:43:29','2020-04-16 18:43:29'),(8216,'chemistry','197.210.47.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:44:34','2020-04-16 18:44:34'),(8217,'chemistry','197.210.64.155',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:45:46','2020-04-16 18:45:48'),(8218,'crk','3.87.156.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 22:43:05','2020-04-16 22:43:05'),(8219,'commerce','18.207.198.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:03:48','2020-04-17 02:03:48'),(8220,'commerce','54.237.135.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:41:43','2020-04-17 02:41:43'),(8221,'physics','66.249.88.30',50,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-20 17:05:28'),(8222,'physics','66.249.81.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-17 08:08:43'),(8223,'physics','41.144.89.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:44','2020-04-17 08:08:46'),(8224,'economics','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:53:39','2020-04-17 08:53:39'),(8225,'geography','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:14:00','2020-04-17 09:14:00'),(8226,'government','18.206.205.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:56:27','2020-04-17 10:02:57'),(8227,'chemistry','18.206.205.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 10:01:34','2020-04-17 10:01:34'),(8228,'commerce','3.83.68.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 11:09:10','2020-04-17 11:09:10'),(8229,'chemistry','197.210.60.237',244,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 12:26:25','2020-04-17 12:32:16'),(8230,'economics','18.212.205.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 13:09:33','2020-04-17 13:09:33'),(8231,'chemistry','207.46.13.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 15:19:30','2020-04-17 15:19:30'),(8232,'english','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 16:39:41','2020-04-17 16:39:41'),(8233,'englishlit','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:10:38','2020-04-17 17:10:38'),(8234,'insurance','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:26:22','2020-04-17 17:26:22'),(8235,'crk','18.234.121.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 18:20:42','2020-04-17 18:20:42'),(8236,'chemistry','197.210.84.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 20:34:57','2020-04-17 20:34:57'),(8237,'crk','3.92.82.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 22:15:16','2020-04-17 22:15:16'),(8238,'physics','18.234.86.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 03:54:15','2020-04-18 03:54:15'),(8239,'currentaffairs','100.27.24.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 06:16:30','2020-04-18 06:16:30'),(8240,'crk','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:33:36','2020-04-18 07:33:36'),(8241,'englishlit','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:34:50','2020-04-18 07:34:50'),(8242,'english','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:35:39','2020-04-18 07:35:39'),(8243,'englishlit','107.23.21.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 08:31:03','2020-04-18 08:31:03'),(8244,'biology','3.93.151.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 11:56:02','2020-04-18 11:56:02'),(8245,'english','197.210.45.162',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 14:25:05','2020-04-18 14:25:07'),(8246,'currentaffairs','52.201.218.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 15:20:26','2020-04-18 15:20:26'),(8247,'economics','54.208.89.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:02:52','2020-04-18 18:02:52'),(8248,'chemistry','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:03'),(8249,'english','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:04'),(8250,'chemistry','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8251,'english','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8252,'english','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8253,'chemistry','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8254,'english','197.210.47.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:30:57','2020-04-18 18:31:00'),(8255,'chemistry','197.210.47.50',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8256,'english','197.210.47.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8257,'mathematics','197.210.47.209',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8258,'physics','197.210.47.182',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8259,'biology','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8260,'accounting','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8261,'english','197.210.65.39',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:34:12'),(8262,'commerce','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8263,'english','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8264,'accounting','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8265,'commerce','197.210.65.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8266,'biology','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8267,'biology','197.210.64.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:12'),(8268,'accounting','197.210.64.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8269,'commerce','197.210.47.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8270,'irk','197.210.47.117',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:50'),(8271,'english','197.210.47.142',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8272,'economics','197.210.47.112',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8273,'geography','197.210.47.125',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:34:50','2020-04-18 18:34:52'),(8274,'civiledu','197.210.47.139',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8275,'english','197.210.64.74',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8276,'insurance','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8277,'currentaffairs','197.210.47.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:59','2020-04-18 18:57:01'),(8278,'economics','197.210.64.116',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8279,'english','197.210.47.248',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8280,'irk','197.210.47.33',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:15','2020-04-18 19:01:17'),(8281,'civiledu','197.210.47.240',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:18','2020-04-18 19:01:20'),(8282,'mathematics','197.210.65.174',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8283,'english','197.210.65.168',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8284,'biology','197.210.65.164',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8285,'commerce','197.210.65.181',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8286,'english','197.210.47.9',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:07','2020-04-18 19:03:09'),(8287,'mathematics','197.210.47.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8288,'biology','197.210.47.19',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8289,'accounting','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8290,'english','197.210.65.0',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8291,'irk','197.210.64.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:25'),(8292,'civiledu','197.210.65.126',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8293,'economics','197.210.65.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8294,'biology','197.210.65.15',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8295,'accounting','197.210.65.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8296,'english','197.210.65.11',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8297,'commerce','197.210.65.26',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8298,'accounting','197.210.64.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8299,'mathematics','197.210.64.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8300,'english','197.210.47.101',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8301,'commerce','197.210.47.108',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8302,'biology','197.210.65.132',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:37'),(8303,'english','197.210.47.62',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:12:53'),(8304,'accounting','197.210.47.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:38'),(8305,'physics','197.210.47.32',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:36','2020-04-18 19:09:38'),(8306,'civiledu','197.210.64.42',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8307,'english','197.210.65.69',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8308,'insurance','197.210.65.75',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8309,'irk','197.210.65.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:30','2020-04-18 19:11:31'),(8310,'physics','197.210.47.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8311,'biology','197.210.47.56',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8312,'chemistry','197.210.47.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:52','2020-04-18 19:12:55'),(8313,'english','197.210.64.106',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8314,'government','197.210.65.97',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8315,'chemistry','197.210.65.99',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8316,'englishlit','197.210.64.37',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8317,'english','197.210.65.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8318,'biology','197.210.65.196',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8319,'accounting','197.210.65.206',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8320,'commerce','197.210.65.198',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8321,'physics','197.210.64.111',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:07'),(8322,'english','197.210.64.140',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8323,'englishlit','197.210.64.82',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8324,'chemistry','197.210.64.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:07','2020-04-18 19:56:10'),(8325,'english','197.210.65.23',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:35','2020-04-18 19:56:38'),(8326,'englishlit','197.210.64.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:37','2020-04-18 19:56:39'),(8327,'government','197.210.47.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:38','2020-04-18 19:56:40'),(8328,'chemistry','197.210.65.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:39','2020-04-18 19:56:41'),(8329,'mathematics','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8330,'accounting','197.210.47.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8331,'biology','197.210.65.134',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8332,'english','197.210.64.213',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8333,'english','197.210.65.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8334,'commerce','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8335,'mathematics','197.210.64.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8336,'irk','197.210.65.92',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:17','2020-04-18 19:59:19'),(8337,'accounting','3.208.18.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 06:23:07','2020-04-19 06:23:07'),(8338,'chemistry','40.77.167.36',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 07:38:38','2020-04-19 16:13:18'),(8339,'mathematics','105.112.179.226',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:23'),(8340,'accounting','105.112.179.226',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:52:55'),(8341,'government','105.112.179.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 11:58:19'),(8342,'english','105.112.179.226',480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:24'),(8343,'physics','105.112.179.226',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:55:09'),(8344,'biology','105.112.179.226',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:57:24'),(8345,'commerce','105.112.179.226',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:05:08','2020-04-19 12:57:24'),(8346,'chemistry','105.112.179.226',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:48:05','2020-04-19 12:55:09'),(8347,'chemistry','105.112.22.76',49,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:16:51','2020-04-19 13:26:58'),(8348,'biology','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:23:32','2020-04-19 13:23:33'),(8349,'mathematics','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:28:01','2020-04-19 13:28:01');\nINSERT INTO `api_call_ip_address` VALUES (8350,'mathematics','197.210.45.45',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:23:32'),(8351,'english','197.210.45.45',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8352,'commerce','197.210.45.45',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8353,'accounting','197.210.45.45',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8354,'english','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8355,'mathematics','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8356,'accounting','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8357,'commerce','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8358,'commerce','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8359,'accounting','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8360,'english','197.210.63.48',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:43:25'),(8361,'mathematics','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8362,'history','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8363,'currentaffairs','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8364,'insurance','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8365,'government','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8366,'crk','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8367,'geography','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8368,'history','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8369,'currentaffairs','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8370,'insurance','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8371,'english','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8372,'currentaffairs','197.210.45.45',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:11:15'),(8373,'insurance','197.210.45.45',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8374,'history','197.210.45.45',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8375,'chemistry','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8376,'physics','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8377,'biology','197.210.45.45',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:13:01','2020-04-19 19:24:58'),(8378,'mathematics','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8379,'chemistry','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:31:55'),(8380,'physics','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8381,'english','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8382,'biology','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:17:47','2020-04-19 21:17:49'),(8383,'english','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8384,'accounting','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8385,'englishlit','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8386,'economics','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8387,'civiledu','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8388,'insurance','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8389,'history','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8390,'currentaffairs','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:34:27','2020-04-19 21:34:29'),(8391,'chemistry','54.36.150.129',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:45:45','2020-04-19 22:45:45'),(8392,'chemistry','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:47:37'),(8393,'physics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8394,'mathematics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8395,'english','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8396,'biology','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:54:25','2020-04-19 22:54:27'),(8397,'chemistry','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8398,'physics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8399,'mathematics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8400,'english','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8401,'physics','3.93.200.226',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 00:55:26','2020-04-20 01:33:19'),(8402,'history','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:07:59','2020-04-20 01:07:59'),(8403,'currentaffairs','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:20:29','2020-04-20 01:20:29'),(8404,'englishlit','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:46:52','2020-04-20 01:46:52'),(8405,'chemistry','54.85.179.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:14:11','2020-04-20 03:14:11'),(8406,'english','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8407,'history','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8408,'insurance','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8409,'currentaffairs','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8410,'english','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8411,'biology','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:53:43'),(8412,'commerce','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8413,'accounting','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8414,'mathematics','102.89.2.214',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:56:26','2020-04-20 03:56:28'),(8415,'mathematics','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 04:11:00','2020-04-20 04:11:00'),(8416,'geography','3.92.207.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 06:39:01','2020-04-20 06:39:01'),(8417,'geography','3.80.247.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 07:47:21','2020-04-20 07:47:21'),(8418,'biology','218.26.54.96',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 09:58:41','2020-04-20 09:58:42'),(8419,'physics','3.90.203.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 11:17:13','2020-04-20 11:17:13'),(8420,'geography','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:08:33','2020-04-20 12:08:33'),(8421,'englishlit','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:30:06','2020-04-20 12:30:06'),(8422,'civiledu','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8423,'english','197.210.8.224',720,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 14:29:47'),(8424,'insurance','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8425,'currentaffairs','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8426,'chemistry','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8427,'mathematics','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8428,'physics','197.210.8.224',680,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8429,'commerce','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8430,'biology','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8431,'currentaffairs','54.145.65.159',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:05:19','2020-04-20 14:05:19'),(8432,'chemistry','54.36.148.196',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:35:15','2020-04-20 14:35:15'),(8433,'biology','66.249.83.204',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:44:36','2020-04-20 14:44:37'),(8434,'chemistry','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:50:33'),(8435,'english','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8436,'mathematics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8437,'physics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8438,'commerce','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:52:12','2020-04-20 14:52:14'),(8439,'chemistry','102.89.0.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 18:20:36','2020-04-20 18:20:36'),(8440,'chemistry','102.89.0.10',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:21:01','2020-04-20 18:24:58'),(8441,'physics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8442,'mathematics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8443,'english','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:58'),(8444,'physics','54.166.10.181',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:55:28','2020-04-20 18:55:28'),(8445,'mathematics','35.153.167.2',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 20:10:20','2020-04-20 20:10:20'),(8446,'mathematics','52.91.67.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 23:39:22','2020-04-20 23:39:22'),(8447,'physics','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8448,'chemistry','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8449,'english','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8450,'mathematics','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8451,'accounting','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8452,'biology','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8453,'chemistry','105.112.182.146',64,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:25:58','2020-04-21 19:28:52'),(8454,'biology','105.112.182.146',147,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:31:52','2020-04-21 20:02:15'),(8455,'physics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:00:51','2020-04-21 18:36:52'),(8456,'chemistry','197.210.64.120',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:02:51','2020-04-21 10:02:53'),(8457,'history','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8458,'currentaffairs','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8459,'english','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8460,'insurance','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8461,'commerce','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:24','2020-04-21 19:24:43'),(8462,'mathematics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:33','2020-04-21 18:43:38'),(8463,'chemistry','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8464,'english','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8465,'mathematics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8466,'physics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8467,'mathematics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8468,'english','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8469,'physics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8470,'chemistry','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8471,'chemistry','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8472,'mathematics','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8473,'english','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8474,'commerce','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8475,'english','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8476,'mathematics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8477,'physics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8478,'chemistry','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8479,'english','105.112.182.146',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:29','2020-04-21 11:08:28'),(8480,'chemistry','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8481,'english','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8482,'physics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8483,'mathematics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8484,'english','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8485,'mathematics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8486,'biology','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8487,'physics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8488,'chemistry','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8489,'mathematics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8490,'physics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8491,'english','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8492,'english','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8493,'englishlit','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8494,'physics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8495,'mathematics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8496,'mathematics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8497,'physics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8498,'english','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8499,'chemistry','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8500,'physics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8501,'mathematics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8502,'english','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8503,'chemistry','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8504,'physics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8505,'english','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8506,'chemistry','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8507,'mathematics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8508,'physics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8509,'english','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8510,'mathematics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8511,'mathematics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8512,'physics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8513,'english','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8514,'chemistry','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8515,'mathematics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8516,'english','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8517,'chemistry','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8518,'physics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8519,'mathematics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8520,'physics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8521,'chemistry','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:58'),(8522,'english','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8523,'english','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8524,'physics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8525,'chemistry','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8526,'mathematics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8527,'physics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8528,'mathematics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8529,'chemistry','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8530,'english','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8531,'englishlit','41.80.21.184',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:46:19','2020-04-21 11:46:21'),(8532,'chemistry','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8533,'mathematics','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8534,'biology','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8535,'english','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8536,'mathematics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8537,'chemistry','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8538,'physics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8539,'english','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8540,'accounting','105.112.182.146',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:21:36','2020-04-21 19:33:14'),(8541,'mathematics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8542,'english','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8543,'chemistry','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8544,'physics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8545,'english','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8546,'mathematics','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8547,'biology','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8548,'commerce','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8549,'physics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8550,'chemistry','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8551,'english','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8552,'mathematics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8553,'chemistry','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8554,'mathematics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8555,'english','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8556,'physics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8557,'history','54.242.239.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 14:06:07','2020-04-21 14:06:07'),(8558,'government','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 15:55:50','2020-04-21 15:55:51'),(8559,'history','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 16:23:43','2020-04-21 16:23:43'),(8560,'chemistry','197.210.28.55',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 18:02:59','2020-04-21 18:03:01'),(8561,'mathematics','3.81.94.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 19:58:20','2020-04-21 19:58:20'),(8562,'biology','105.112.18.128',77,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:18:41','2020-04-21 23:24:00'),(8563,'physics','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:18:53','2020-04-21 23:00:17'),(8564,'accounting','105.112.18.128',42,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:35:26','2020-04-21 23:10:50'),(8565,'chemistry','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:37:37','2020-04-21 20:58:32'),(8566,'mathematics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8567,'chemistry','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8568,'english','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:14'),(8569,'physics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8570,'english','102.89.1.175',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:09:09','2020-04-21 21:42:43'),(8571,'english','102.89.1.91',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:10:02','2020-04-21 21:25:29'),(8572,'english','102.89.0.89',20,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:11:30','2020-04-21 21:11:32'),(8573,'chemistry','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8574,'mathematics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8575,'physics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8576,'chemistry','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8577,'english','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8578,'mathematics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8579,'physics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8580,'chemistry','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:07','2020-04-21 21:42:43'),(8581,'physics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8582,'mathematics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8583,'commerce','105.112.18.128',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 22:04:53','2020-04-21 22:49:43'),(8584,'mathematics','105.112.18.128',7,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 22:27:23','2020-04-21 22:27:24'),(8585,'english','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8586,'irk','102.89.1.102',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8587,'insurance','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8588,'civiledu','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8589,'geography','105.112.18.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:32:29','2020-04-21 23:32:29'),(8590,'mathematics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8591,'physics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8592,'english','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8593,'chemistry','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8594,'physics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8595,'mathematics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8596,'english','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8597,'biology','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8598,'insurance','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:44','2020-04-21 23:46:47'),(8599,'english','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8600,'chemistry','197.210.46.117',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-05-25 11:18:27'),(8601,'geography','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8602,'history','52.207.122.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:21:54','2020-04-22 06:21:54'),(8603,'chemistry','102.89.2.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:27:13','2020-04-22 06:27:13'),(8604,'mathematics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8605,'english','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8606,'physics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8607,'chemistry','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8608,'biology','105.112.28.69',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 08:37:38','2020-04-22 09:14:05'),(8609,'physics','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:37:13','2020-04-22 11:01:24'),(8610,'biology','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:45:01','2020-04-22 10:48:10'),(8611,'accounting','105.112.31.149',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:07:02','2020-04-22 10:07:52'),(8612,'economics','105.112.31.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:16:04','2020-04-22 10:16:05'),(8613,'biology','105.112.30.170',28,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 11:06:24','2020-04-22 12:40:53'),(8614,'accounting','105.112.30.170',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 11:33:34','2020-04-22 11:59:20'),(8615,'chemistry','41.190.12.66',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:15:54','2020-04-22 12:17:36'),(8616,'biology','41.190.12.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:16:26','2020-04-22 12:18:01'),(8617,'chemistry','105.112.176.19',468,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 12:22:58','2020-04-22 12:30:38'),(8618,'chemistry','41.190.12.130',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:35:57','2020-04-22 12:39:25'),(8619,'biology','41.190.12.130',9,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:37:06','2020-04-22 12:41:42'),(8620,'english','41.190.12.130',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:39:46','2020-04-22 12:43:48'),(8621,'insurance','197.210.84.226',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:37:40','2020-04-22 13:37:42'),(8622,'insurance','197.210.84.190',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:40:05','2020-04-22 13:40:07'),(8623,'chemistry','54.82.80.108',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 14:30:16','2020-04-22 14:30:16'),(8624,'crk','34.229.173.152',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:15:56','2020-04-22 16:15:56'),(8625,'physics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8626,'english','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8627,'chemistry','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8628,'mathematics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8629,'biology','105.112.183.159',84,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:46:06','2020-04-22 22:39:25'),(8630,'accounting','105.112.183.159',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:48:17','2020-04-22 22:31:08'),(8631,'english','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:13:11','2020-04-22 18:13:11'),(8632,'commerce','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:34:19','2020-04-22 18:34:19'),(8633,'currentaffairs','3.94.91.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:10:02','2020-04-22 19:10:02'),(8634,'chemistry','105.112.183.159',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:38:14','2020-04-22 19:41:59'),(8635,'chemistry','157.55.39.45',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:52:26','2020-04-22 19:52:27'),(8636,'physics','105.112.183.159',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 21:25:48','2020-04-22 22:40:27'),(8637,'economics','54.166.255.13',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 22:23:41','2020-04-22 22:23:41'),(8638,'commerce','105.112.183.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 23:09:25','2020-04-22 23:09:26'),(8639,'chemistry','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:00:28','2020-04-23 00:00:28'),(8640,'government','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:24:21','2020-04-23 00:24:21'),(8641,'mathematics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:39:20','2020-04-23 01:39:20'),(8642,'government','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:47:47','2020-04-23 01:47:47'),(8643,'economics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:48:36','2020-04-23 01:48:36'),(8644,'geography','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:36:53','2020-04-23 02:36:53'),(8645,'commerce','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:53:38','2020-04-23 02:53:38'),(8646,'chemistry','105.112.61.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:54:52','2020-04-23 02:54:52'),(8647,'insurance','54.86.197.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 06:26:13','2020-04-23 06:26:13'),(8648,'crk','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:16:42','2020-04-23 10:16:42'),(8649,'englishlit','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:34:38','2020-04-23 10:34:38'),(8650,'english','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 11:05:41','2020-04-23 11:05:41'),(8651,'biology','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8652,'mathematics','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8653,'crk','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8654,'english','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8655,'civiledu','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8656,'economics','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8657,'crk','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 14:30:55','2020-04-23 14:30:55'),(8658,'biology','54.224.0.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 17:35:04','2020-04-23 17:35:04'),(8659,'chemistry','40.77.167.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 19:39:50','2020-04-23 19:39:50'),(8660,'physics','54.174.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:04:30','2020-04-23 22:04:30'),(8661,'englishlit','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:50:05','2020-04-23 22:50:05'),(8662,'currentaffairs','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 23:11:05','2020-04-23 23:11:05'),(8663,'crk','18.234.95.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 00:49:03','2020-04-24 00:49:03'),(8664,'chemistry','102.134.114.129',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 01:33:54','2020-04-24 01:38:52'),(8665,'englishlit','54.209.127.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 02:15:39','2020-04-24 02:15:39'),(8666,'english','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:17:39','2020-04-24 03:17:39'),(8667,'government','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:43:50','2020-04-24 03:43:50'),(8668,'chemistry','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 04:48:11','2020-04-24 04:48:11'),(8669,'economics','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 05:19:42','2020-04-24 05:19:42'),(8670,'mathematics','54.196.250.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 08:15:48','2020-04-24 08:15:48'),(8671,'insurance','3.82.47.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 09:43:06','2020-04-24 09:43:06'),(8672,'civiledu','100.24.31.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:26:45','2020-04-24 10:26:45'),(8673,'mathematics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8674,'commerce','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8675,'biology','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8676,'chemistry','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:08'),(8677,'government','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8678,'geography','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8679,'economics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8680,'physics','188.164.100.205',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:39:15','2020-04-24 10:39:17'),(8681,'chemistry','35.171.2.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 14:25:12','2020-04-24 14:25:12'),(8682,'mathematics','54.145.214.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 17:31:43','2020-04-24 17:31:43'),(8683,'chemistry','54.36.148.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 18:06:18','2020-04-24 18:06:18'),(8684,'accounting','34.239.139.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 23:10:31','2020-04-24 23:10:31'),(8685,'chemistry','54.227.8.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 01:51:07','2020-04-25 01:51:07'),(8686,'chemistry','105.112.47.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 04:58:07','2020-04-25 04:58:07'),(8687,'mathematics','34.204.43.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 05:02:06','2020-04-25 05:02:06'),(8688,'currentaffairs','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:33:21','2020-04-25 06:33:21'),(8689,'biology','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:58:18','2020-04-25 06:58:18'),(8690,'english','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:13','2020-04-25 07:02:13'),(8691,'commerce','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:32','2020-04-25 07:02:32'),(8692,'geography','54.162.26.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 08:14:44','2020-04-25 08:14:44'),(8693,'biology','41.190.31.157',123,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 14:18:38','2020-04-25 15:45:29'),(8694,'english','41.190.31.157',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:19:08','2020-04-25 15:19:08'),(8695,'chemistry','41.190.31.157',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:34:32','2020-04-25 15:49:01'),(8696,'mathematics','18.207.244.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:00:51','2020-04-25 19:00:51'),(8697,'geography','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:43:51','2020-04-25 19:43:51'),(8698,'chemistry','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 20:00:20','2020-04-25 20:00:20'),(8699,'geography','54.196.233.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 22:34:56','2020-04-25 22:34:56'),(8700,'geography','54.226.23.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 23:54:11','2020-04-25 23:54:11'),(8701,'physics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:34:21','2020-04-26 03:34:21'),(8702,'englishlit','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:46:24','2020-04-26 03:46:24'),(8703,'english','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:15:25','2020-04-26 04:15:25'),(8704,'geography','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:21:18','2020-04-26 04:21:18'),(8705,'economics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:38:52','2020-04-26 04:38:52'),(8706,'currentaffairs','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 05:01:46','2020-04-26 05:01:46'),(8707,'crk','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:37:57','2020-04-26 07:37:57'),(8708,'geography','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:39:49','2020-04-26 07:39:49'),(8709,'englishlit','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:24:17','2020-04-26 08:24:17'),(8710,'commerce','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:32:11','2020-04-26 08:32:11'),(8711,'biology','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:36:32','2020-04-26 08:36:32'),(8712,'mathematics','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:08:49','2020-04-26 09:08:49'),(8713,'english','34.207.68.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:44:24','2020-04-26 09:44:24'),(8714,'mathematics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:12:46','2020-04-26 11:12:46'),(8715,'physics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:15:20','2020-04-26 11:15:20'),(8716,'crk','54.152.233.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 12:24:21','2020-04-26 12:24:21'),(8717,'mathematics','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:36:48','2020-04-26 14:36:48'),(8718,'biology','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:55:09','2020-04-26 14:55:09'),(8719,'economics','18.215.246.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 21:05:56','2020-04-26 21:05:56'),(8720,'mathematics','3.81.151.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 01:31:08','2020-04-27 01:31:08'),(8721,'biology','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:05','2020-04-27 02:58:05'),(8722,'chemistry','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:38','2020-04-27 02:58:38'),(8723,'accounting','34.235.166.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 03:48:21','2020-04-27 03:48:21'),(8724,'history','54.224.76.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 05:14:17','2020-04-27 05:14:17'),(8725,'chemistry','52.201.249.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 08:03:17','2020-04-27 08:03:17'),(8726,'biology','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8727,'physics','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8728,'crk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8729,'geography','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8730,'irk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8731,'insurance','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8732,'history','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8733,'chemistry','54.234.116.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:51'),(8734,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8735,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8736,'government','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:13:02','2020-04-27 10:13:02'),(8737,'physics','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:23:37','2020-04-27 11:23:37'),(8738,'commerce','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:41:20','2020-04-27 11:41:20'),(8739,'chemistry','99.7.238.16',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:37:52','2020-04-27 13:42:57'),(8740,'physics','99.7.238.16',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:43:03','2020-04-27 13:43:03'),(8741,'chemistry','77.88.5.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:54:22','2020-04-27 13:54:22'),(8742,'biology','3.88.17.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:37:10','2020-04-27 14:37:10'),(8743,'mathematics','197.210.8.233',680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:44:44','2020-04-27 15:08:49'),(8744,'chemistry','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8745,'english','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8746,'physics','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8747,'economics','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:20:06','2020-04-27 20:20:06'),(8748,'commerce','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:39:52','2020-04-27 20:39:52'),(8749,'history','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:49:28','2020-04-27 20:49:28'),(8750,'government','107.21.137.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 02:38:07','2020-04-28 02:38:07'),(8751,'commerce','3.95.203.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 05:37:46','2020-04-28 05:37:46'),(8752,'crk','3.91.54.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:01:44','2020-04-28 07:01:44'),(8753,'geography','18.212.75.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:55:58','2020-04-28 07:55:58'),(8754,'physics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8755,'english','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8756,'mathematics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8757,'chemistry','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8758,'chemistry','196.222.104.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:11:38','2020-04-28 10:21:09'),(8759,'physics','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8760,'chemistry','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8761,'crk','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8762,'geography','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8763,'economics','18.209.104.117',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 11:04:14'),(8764,'currentaffairs','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8765,'history','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8766,'economics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:46:56','2020-04-28 11:46:56'),(8767,'english','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:47:28','2020-04-28 11:47:28'),(8768,'commerce','105.112.70.76',56,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:08:02','2020-04-28 13:10:12'),(8769,'accounting','105.112.70.76',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:11:44','2020-04-28 13:22:13'),(8770,'biology','105.112.70.76',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:29:15','2020-04-28 12:29:15'),(8771,'government','3.84.75.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 13:46:11','2020-04-28 13:46:11'),(8772,'economics','3.80.87.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 14:32:49','2020-04-28 14:32:49'),(8773,'physics','54.210.29.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:28:17','2020-04-28 15:28:17'),(8774,'insurance','197.210.227.65',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:30:30','2020-04-28 16:09:26'),(8775,'insurance','197.210.227.77',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:32:37','2020-04-28 15:41:11'),(8776,'accounting','197.210.227.77',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:38:20','2020-04-28 16:20:02'),(8777,'insurance','197.210.227.25',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:43:40','2020-04-28 17:43:09'),(8778,'insurance','197.210.226.63',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:02:54','2020-04-28 17:36:29'),(8779,'insurance','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:05:09','2020-04-28 16:05:11'),(8780,'englishlit','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:47','2020-04-28 16:07:49'),(8781,'government','197.210.227.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:51','2020-04-28 16:07:53'),(8782,'currentaffairs','197.210.226.63',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:54','2020-04-28 17:56:54'),(8783,'economics','197.210.227.25',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:58','2020-04-28 17:33:39'),(8784,'geography','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:02','2020-04-28 16:20:19'),(8785,'english','197.210.227.25',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:06','2020-04-28 17:57:58'),(8786,'mathematics','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:09','2020-04-28 16:09:56'),(8787,'commerce','197.210.227.25',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:13','2020-04-28 17:33:53'),(8788,'biology','197.210.227.25',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:17','2020-04-28 17:44:06'),(8789,'physics','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:20','2020-04-28 16:10:08'),(8790,'crk','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:28','2020-04-28 16:10:15'),(8791,'history','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:32','2020-04-28 16:08:35'),(8792,'irk','197.210.227.233',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:36','2020-04-28 16:08:38'),(8793,'civiledu','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:39','2020-04-28 17:47:22'),(8794,'accounting','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:28','2020-04-28 16:09:30'),(8795,'englishlit','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:32','2020-04-28 16:09:34'),(8796,'government','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:35','2020-04-28 16:09:38'),(8797,'currentaffairs','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:39','2020-04-28 16:09:41'),(8798,'economics','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:42','2020-04-28 16:09:45'),(8799,'geography','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:46','2020-04-28 16:09:48'),(8800,'english','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:50','2020-04-28 16:09:52'),(8801,'commerce','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:58','2020-04-28 16:10:00'),(8802,'biology','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:02','2020-04-28 16:10:04'),(8803,'chemistry','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:09','2020-04-28 16:10:12'),(8804,'history','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:17','2020-04-28 16:10:19'),(8805,'irk','197.210.226.63',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:20','2020-04-28 16:10:22'),(8806,'civiledu','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:23','2020-04-28 16:10:25'),(8807,'government','3.80.238.158',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:15:49','2020-04-28 16:15:49'),(8808,'englishlit','197.210.226.63',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:03','2020-04-28 17:41:09'),(8809,'government','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:06','2020-04-28 17:56:50'),(8810,'currentaffairs','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:10','2020-04-28 17:46:35'),(8811,'economics','197.210.226.63',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:14','2020-04-28 17:45:40'),(8812,'mathematics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:24','2020-04-28 17:46:51'),(8813,'physics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:35','2020-04-28 17:47:04'),(8814,'chemistry','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:40','2020-04-28 17:47:08'),(8815,'crk','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:45','2020-04-28 17:47:11'),(8816,'history','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:49','2020-04-28 16:20:51'),(8817,'irk','197.210.227.77',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:04','2020-04-28 16:21:05'),(8818,'civiledu','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:07','2020-04-28 16:21:10'),(8819,'geography','3.93.153.210',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:54:50','2020-04-28 17:00:53'),(8820,'accounting','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:23','2020-04-28 17:47:35'),(8821,'englishlit','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:26','2020-04-28 17:47:39'),(8822,'government','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:30','2020-04-28 17:46:31'),(8823,'currentaffairs','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:33','2020-04-28 17:36:51'),(8824,'geography','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:41','2020-04-28 17:33:43'),(8825,'mathematics','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:48','2020-04-28 17:33:50'),(8826,'chemistry','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:02','2020-04-28 17:39:24'),(8827,'history','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:09','2020-04-28 17:47:15'),(8828,'irk','197.210.227.25',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:13','2020-04-28 17:44:24'),(8829,'civiledu','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:15','2020-04-28 17:56:36'),(8830,'insurance','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:24','2020-04-28 17:55:24'),(8831,'accounting','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:28','2020-04-28 17:44:57'),(8832,'government','197.210.227.122',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:36','2020-04-28 17:45:31'),(8833,'currentaffairs','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:39','2020-04-28 17:55:39'),(8834,'economics','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:43','2020-04-28 17:49:01'),(8835,'geography','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:47','2020-04-28 17:47:55'),(8836,'english','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:50','2020-04-28 17:47:59'),(8837,'insurance','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:54','2020-04-28 17:56:39'),(8838,'accounting','197.210.226.66',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:58','2020-04-28 17:55:28'),(8839,'englishlit','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:02','2020-04-28 17:56:46'),(8840,'geography','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:17','2020-04-28 17:46:43'),(8841,'accounting','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:30','2020-04-28 17:43:13'),(8842,'economics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:52','2020-04-28 17:36:54'),(8843,'geography','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:56','2020-04-28 17:57:18'),(8844,'commerce','197.210.227.96',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:24','2020-04-28 17:46:56'),(8845,'crk','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:39','2020-04-28 17:37:41'),(8846,'irk','197.210.227.1',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:46','2020-04-28 17:47:19'),(8847,'geography','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:55','2020-04-28 17:49:05'),(8848,'english','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:58','2020-04-28 17:55:52'),(8849,'mathematics','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:07','2020-04-28 17:55:55'),(8850,'commerce','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:11','2020-04-28 17:39:13'),(8851,'biology','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:14','2020-04-28 17:39:17'),(8852,'physics','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:18','2020-04-28 17:56:07'),(8853,'crk','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:25','2020-04-28 17:39:27'),(8854,'history','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:28','2020-04-28 17:56:28'),(8855,'irk','197.210.226.66',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:32','2020-04-28 17:56:32'),(8856,'insurance','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:40:58','2020-04-28 17:46:20'),(8857,'government','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:41:11','2020-04-28 17:48:52'),(8858,'currentaffairs','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:35','2020-04-28 17:47:47'),(8859,'economics','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:38','2020-04-28 17:57:01'),(8860,'geography','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:42','2020-04-28 17:43:44'),(8861,'physics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:07','2020-04-28 17:44:09'),(8862,'crk','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:14','2020-04-28 17:48:22'),(8863,'history','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:18','2020-04-28 17:44:21'),(8864,'civiledu','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:25','2020-04-28 17:44:44'),(8865,'englishlit','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:45:04','2020-04-28 17:45:06'),(8866,'english','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:44','2020-04-28 17:46:47'),(8867,'biology','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:57','2020-04-28 17:56:03'),(8868,'insurance','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:47:29','2020-04-28 17:47:32'),(8869,'mathematics','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:00','2020-04-28 17:48:03'),(8870,'commerce','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:05','2020-04-28 17:48:07'),(8871,'biology','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:08','2020-04-28 17:48:11'),(8872,'chemistry','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:16','2020-04-28 17:48:19'),(8873,'history','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:24','2020-04-28 17:48:27'),(8874,'englishlit','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:29','2020-04-28 17:55:32'),(8875,'government','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:33','2020-04-28 17:55:35'),(8876,'economics','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:41','2020-04-28 17:55:44'),(8877,'commerce','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:56','2020-04-28 17:55:59'),(8878,'chemistry','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:08','2020-04-28 17:56:10'),(8879,'crk','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:22','2020-04-28 17:56:24'),(8880,'accounting','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:41','2020-04-28 17:56:43'),(8881,'government','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:16','2020-04-28 18:02:16'),(8882,'commerce','105.112.16.71',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:49','2020-04-28 18:02:49'),(8883,'biology','105.112.16.71',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:06:21','2020-04-28 18:11:14'),(8884,'english','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:20:03','2020-04-28 18:20:03'),(8885,'commerce','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:32:41','2020-04-28 18:32:41'),(8886,'accounting','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:33:53','2020-04-28 18:33:53'),(8887,'biology','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:55:42','2020-04-28 18:55:42'),(8888,'history','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:58:00','2020-04-28 18:58:00'),(8889,'chemistry','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:04:13','2020-04-28 19:04:13'),(8890,'chemistry','41.217.104.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:28:12','2020-04-28 19:28:26'),(8891,'economics','35.175.150.1',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 20:02:33','2020-04-28 20:02:33'),(8892,'commerce','52.23.234.72',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:03:58','2020-04-28 21:03:58'),(8893,'commerce','105.112.176.198',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:35:39','2020-04-28 22:06:40'),(8894,'biology','105.112.176.198',21,'','NG','','Lagos',NULL,NULL,'','','2020-04-28 21:49:14','2020-04-28 23:16:53'),(8895,'accounting','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:07:36','2020-04-28 22:07:37'),(8896,'mathematics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:15:12','2020-04-28 22:15:12'),(8897,'physics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:19:21','2020-04-28 22:19:21'),(8898,'government','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:21:48','2020-04-28 22:21:48'),(8899,'insurance','34.229.212.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 23:55:04','2020-04-28 23:55:04'),(8900,'english','35.170.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 01:09:28','2020-04-29 01:09:28'),(8901,'crk','54.204.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 02:49:37','2020-04-29 02:49:37'),(8902,'crk','34.229.217.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 08:41:40','2020-04-29 08:41:40'),(8903,'chemistry','52.54.222.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 09:31:21','2020-04-29 09:31:21'),(8904,'physics','3.86.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 11:56:45','2020-04-29 11:56:45'),(8905,'english','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:13:54','2020-04-29 14:13:54'),(8906,'currentaffairs','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:28:47','2020-04-29 14:28:47'),(8907,'crk','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 16:51:12','2020-04-29 16:51:12'),(8908,'mathematics','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:19:40','2020-04-29 17:19:40'),(8909,'biology','105.112.176.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:26:33','2020-04-29 18:09:50'),(8910,'commerce','105.112.176.237',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:29:23','2020-04-29 18:01:40'),(8911,'englishlit','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:42:30','2020-04-29 17:42:30'),(8912,'accounting','105.112.176.237',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:02:58','2020-04-29 18:02:58'),(8913,'biology','105.112.179.192',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:33:15','2020-04-29 19:16:31'),(8914,'currentaffairs','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:36:50','2020-04-29 18:36:50'),(8915,'economics','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:47:33','2020-04-29 18:47:33'),(8916,'physics','105.112.179.192',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:05:41','2020-04-29 19:30:14'),(8917,'englishlit','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:09:49','2020-04-29 19:09:49'),(8918,'mathematics','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:10:38','2020-04-29 19:10:38'),(8919,'commerce','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:41:21','2020-04-29 19:41:21'),(8920,'chemistry','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:58:11','2020-04-29 19:58:11'),(8921,'government','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:21:57','2020-04-29 20:21:57'),(8922,'commerce','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:18','2020-04-29 20:27:18'),(8923,'commerce','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:44','2020-04-29 20:27:44'),(8924,'english','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:28:17','2020-04-29 21:37:09'),(8925,'biology','105.112.24.82',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:47:45','2020-04-29 22:13:57'),(8926,'government','3.87.44.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:09:09','2020-04-29 21:09:09'),(8927,'accounting','105.112.24.82',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:11:05','2020-04-29 22:06:33'),(8928,'mathematics','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:43','2020-04-29 21:59:17'),(8929,'physics','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:54','2020-04-29 21:36:55'),(8930,'chemistry','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 22:39:32','2020-04-29 22:39:32'),(8931,'chemistry','54.36.148.219',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 23:51:25','2020-04-29 23:51:25'),(8932,'chemistry','54.36.148.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:02:17','2020-04-30 00:02:17'),(8933,'chemistry','54.36.148.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:13:27','2020-04-30 00:13:27'),(8934,'physics','3.95.148.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:16:11','2020-04-30 00:16:11'),(8935,'chemistry','54.36.148.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:24:14','2020-04-30 00:24:14'),(8936,'chemistry','54.36.148.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:57:32','2020-04-30 00:57:32'),(8937,'chemistry','54.36.148.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 01:26:38','2020-04-30 01:26:38'),(8938,'english','3.83.49.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 04:59:57','2020-04-30 04:59:57'),(8939,'physics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 11:48:10','2020-04-30 11:48:12'),(8940,'mathematics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:14:32','2020-04-30 12:14:35'),(8941,'accounting','3.90.113.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:48:25','2020-04-30 12:48:25'),(8942,'geography','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:50:57','2020-04-30 12:50:59'),(8943,'commerce','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:51:24','2020-04-30 12:51:26'),(8944,'physics','54.167.205.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 13:29:15','2020-04-30 13:29:15'),(8945,'insurance','54.160.135.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 16:43:16','2020-04-30 16:43:16'),(8946,'chemistry','157.55.39.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:40:23','2020-04-30 17:40:23'),(8947,'insurance','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:56:54','2020-04-30 17:59:10'),(8948,'currentaffairs','197.210.53.138',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:10','2020-04-30 18:08:22'),(8949,'economics','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:15','2020-04-30 17:59:31'),(8950,'geography','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:18','2020-04-30 18:00:52'),(8951,'english','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:22','2020-04-30 17:59:44'),(8952,'commerce','197.210.53.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:29','2020-04-30 17:57:31'),(8953,'physics','197.210.52.197',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:39','2020-04-30 18:01:14'),(8954,'history','197.210.53.151',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:53','2020-04-30 18:13:42'),(8955,'irk','197.210.53.138',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:58','2020-04-30 18:13:47'),(8956,'civiledu','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:01','2020-04-30 17:59:07'),(8957,'insurance','197.210.52.197',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:05','2020-04-30 17:58:07'),(8958,'government','197.210.53.151',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:16','2020-04-30 17:58:18'),(8959,'currentaffairs','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:20','2020-04-30 17:58:22'),(8960,'geography','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:28','2020-04-30 17:58:31'),(8961,'biology','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:43','2020-04-30 17:58:46'),(8962,'physics','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:47','2020-04-30 18:08:48'),(8963,'irk','197.210.52.31',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:01','2020-04-30 18:01:32'),(8964,'accounting','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:12','2020-04-30 17:59:14'),(8965,'englishlit','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:15','2020-04-30 18:12:52'),(8966,'government','197.210.52.67',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:19','2020-04-30 18:12:56'),(8967,'currentaffairs','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:23','2020-04-30 18:10:46'),(8968,'geography','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:37','2020-04-30 17:59:39'),(8969,'mathematics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:46','2020-04-30 18:01:00'),(8970,'commerce','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:51','2020-04-30 17:59:53'),(8971,'biology','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:56','2020-04-30 18:08:45'),(8972,'chemistry','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:07','2020-04-30 18:00:09'),(8973,'crk','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:11','2020-04-30 18:00:13'),(8974,'history','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:16','2020-04-30 18:11:26'),(8975,'irk','197.210.52.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:20','2020-04-30 18:00:21'),(8976,'civiledu','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:22','2020-04-30 18:00:25'),(8977,'insurance','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:26','2020-04-30 18:10:30'),(8978,'accounting','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:30','2020-04-30 18:10:34'),(8979,'englishlit','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:34','2020-04-30 18:10:38'),(8980,'government','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:38','2020-04-30 18:00:40'),(8981,'currentaffairs','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:42','2020-04-30 18:12:59'),(8982,'economics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:46','2020-04-30 18:13:04'),(8983,'english','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:54','2020-04-30 18:00:56'),(8984,'commerce','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:03','2020-04-30 18:13:19'),(8985,'biology','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:07','2020-04-30 18:11:09'),(8986,'chemistry','197.210.52.197',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:16','2020-04-30 18:13:31'),(8987,'crk','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:21','2020-04-30 18:01:23'),(8988,'civiledu','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:34','2020-04-30 18:01:36'),(8989,'insurance','197.210.52.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:05','2020-04-30 18:12:44'),(8990,'englishlit','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:12','2020-04-30 18:08:15'),(8991,'government','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:16','2020-04-30 18:08:18'),(8992,'economics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:24','2020-04-30 18:10:50'),(8993,'english','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:31','2020-04-30 18:08:33'),(8994,'chemistry','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:50','2020-04-30 18:08:52'),(8995,'history','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:56','2020-04-30 18:08:59'),(8996,'irk','197.210.52.197',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:00','2020-04-30 18:09:02'),(8997,'civiledu','197.210.53.138',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:03','2020-04-30 18:13:51'),(8998,'geography','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:52','2020-04-30 18:10:54'),(8999,'english','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:56','2020-04-30 18:10:58'),(9000,'mathematics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:59','2020-04-30 18:13:16'),(9001,'commerce','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:03','2020-04-30 18:11:05'),(9002,'physics','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:11','2020-04-30 18:11:14'),(9003,'crk','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:20','2020-04-30 18:11:22'),(9004,'irk','197.210.53.91',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:28','2020-04-30 18:11:29'),(9005,'civiledu','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:31','2020-04-30 18:11:33'),(9006,'accounting','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:12:46','2020-04-30 18:12:48'),(9007,'geography','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:05','2020-04-30 18:13:08'),(9008,'english','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:09','2020-04-30 18:13:12'),(9009,'biology','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:21','2020-04-30 18:13:23'),(9010,'physics','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:25','2020-04-30 18:13:28'),(9011,'chemistry','129.205.113.173',4,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:44:54','2020-04-30 18:51:44'),(9012,'chemistry','40.77.167.109',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 19:59:37','2020-04-30 19:59:37'),(9013,'chemistry','18.212.194.164',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 22:59:35','2020-04-30 22:59:35'),(9014,'mathematics','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:52:42','2020-04-30 23:52:43'),(9015,'chemistry','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:32','2020-04-30 23:58:33'),(9016,'biology','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:49','2020-04-30 23:58:50'),(9017,'physics','197.210.63.5',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9018,'mathematics','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9019,'chemistry','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9020,'english','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9021,'english','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9022,'accounting','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9023,'chemistry','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9024,'government','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9025,'economics','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:09'),(9026,'irk','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9027,'civiledu','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9028,'chemistry','54.152.163.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 06:38:44','2020-05-01 06:38:44'),(9029,'civiledu','54.85.192.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 07:42:44','2020-05-01 07:42:44'),(9030,'chemistry','50.66.43.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 08:44:35','2020-05-01 08:44:35'),(9031,'accounting','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:23:43','2020-05-01 09:23:45'),(9032,'biology','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:26:39','2020-05-01 09:26:41'),(9033,'chemistry','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:28:41','2020-05-01 09:28:43'),(9034,'commerce','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:31:07','2020-05-01 09:31:09'),(9035,'geography','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:32:07','2020-05-01 09:32:09'),(9036,'government','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:33:07','2020-05-01 09:33:09'),(9037,'englishlit','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:34:23','2020-05-01 09:34:25'),(9038,'english','3.92.79.199',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:35:10','2020-05-01 09:36:06'),(9039,'physics','54.197.3.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:32','2020-05-01 09:36:32'),(9040,'history','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:45','2020-05-01 09:36:47'),(9041,'physics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:37:23','2020-05-01 09:37:25'),(9042,'crk','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:02','2020-05-01 09:38:04'),(9043,'irk','3.92.79.199',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:36','2020-05-01 09:38:37'),(9044,'mathematics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:40:07','2020-05-01 09:40:09'),(9045,'civiledu','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:44:20','2020-05-01 09:44:22'),(9046,'insurance','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:45:12','2020-05-01 09:45:14'),(9047,'mathematics','18.212.127.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 10:27:34','2020-05-01 10:27:34'),(9048,'chemistry','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 11:53:35','2020-05-01 11:53:35'),(9049,'civiledu','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:07:15','2020-05-01 12:07:15'),(9050,'geography','35.171.18.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:48:39','2020-05-01 12:48:39'),(9051,'accounting','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 13:58:07','2020-05-01 15:50:39'),(9052,'english','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:12:28','2020-05-01 15:32:24'),(9053,'government','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:27:18','2020-05-01 15:42:41'),(9054,'geography','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:34:50','2020-05-01 14:34:50'),(9055,'irk','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:40:41','2020-05-01 15:22:36'),(9056,'economics','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:52:00','2020-05-01 15:03:28'),(9057,'chemistry','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:13:35','2020-05-01 15:13:35'),(9058,'civiledu','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:59:12','2020-05-01 15:59:12'),(9059,'physics','54.147.40.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 17:31:20','2020-05-01 17:31:20'),(9060,'englishlit','3.80.145.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:30:32','2020-05-01 18:30:32'),(9061,'geography','3.81.84.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:59:33','2020-05-01 18:59:33'),(9062,'mathematics','54.152.182.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 19:39:12','2020-05-01 19:39:12'),(9063,'currentaffairs','54.147.140.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 20:19:55','2020-05-01 20:46:03'),(9064,'mathematics','18.232.86.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 01:07:21','2020-05-02 01:07:21'),(9065,'physics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 02:21:54','2020-05-02 02:21:54'),(9066,'mathematics','54.159.74.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 05:28:06','2020-05-02 05:28:06'),(9067,'mathematics','3.95.199.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 11:49:15','2020-05-02 11:49:54'),(9068,'geography','54.160.152.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 12:51:05','2020-05-02 12:51:05'),(9069,'accounting','54.242.134.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 13:44:35','2020-05-02 13:44:35'),(9070,'civiledu','54.80.130.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 14:38:04','2020-05-02 14:38:04'),(9071,'insurance','34.227.221.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 16:37:38','2020-05-02 16:37:38'),(9072,'chemistry','34.226.155.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 17:58:23','2020-05-02 18:51:09'),(9073,'history','34.226.155.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 18:31:23','2020-05-02 18:31:23'),(9074,'mathematics','54.166.138.44',41,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-02 21:12:05','2020-05-03 16:51:28'),(9075,'english','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:19','2020-05-02 21:57:19'),(9076,'commerce','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9077,'physics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9078,'geography','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9079,'economics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9080,'civiledu','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9081,'insurance','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9082,'chemistry','3.83.147.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 22:48:32','2020-05-02 22:48:32'),(9083,'currentaffairs','107.21.76.29',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:19:42','2020-05-03 05:43:14'),(9084,'mathematics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:23:15','2020-05-03 05:35:39'),(9085,'commerce','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:24:10','2020-05-03 05:36:03'),(9086,'accounting','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:18','2020-05-03 05:36:47'),(9087,'biology','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:59','2020-05-03 05:37:26'),(9088,'physics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:26:47','2020-05-03 05:38:06'),(9089,'chemistry','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:27:25','2020-05-03 05:38:29'),(9090,'englishlit','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:16','2020-05-03 05:38:53'),(9091,'government','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:51','2020-05-03 05:39:37'),(9092,'crk','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:29:36','2020-05-03 05:40:00'),(9093,'geography','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:30:23','2020-05-03 05:40:40'),(9094,'economics','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:07','2020-05-03 05:41:19'),(9095,'irk','107.21.76.29',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:39','2020-05-03 05:41:43'),(9096,'civiledu','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:32:21','2020-05-03 05:42:07'),(9097,'insurance','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:33:00','2020-05-03 05:42:48'),(9098,'history','107.21.76.29',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:34:12','2020-05-03 05:44:29'),(9099,'english','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:17'),(9100,'mathematics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:16'),(9101,'commerce','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9102,'biology','3.83.109.40',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9103,'englishlit','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9104,'accounting','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9105,'crk','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9106,'currentaffairs','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9107,'physics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9108,'economics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9109,'history','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9110,'government','3.83.55.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:34:46','2020-05-03 09:34:46'),(9111,'economics','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9112,'english','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:36'),(9113,'commerce','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9114,'accounting','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9115,'geography','54.235.52.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 11:00:21','2020-05-03 11:00:21'),(9116,'commerce','54.146.7.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 12:56:31','2020-05-03 12:56:31'),(9117,'economics','54.91.125.121',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 15:12:25','2020-05-03 15:12:25'),(9118,'mathematics','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:18:04','2020-05-03 16:18:04'),(9119,'englishlit','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:19:28','2020-05-03 16:19:28'),(9120,'commerce','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:02','2020-05-03 16:52:05'),(9121,'accounting','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:26','2020-05-03 16:52:28'),(9122,'biology','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:51','2020-05-03 16:52:53'),(9123,'physics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:53:34','2020-05-03 16:53:36'),(9124,'chemistry','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:00','2020-05-03 16:54:02'),(9125,'englishlit','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:48','2020-05-03 16:54:51'),(9126,'government','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:55:31','2020-05-03 16:55:34'),(9127,'crk','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:56:11','2020-05-03 16:56:13'),(9128,'geography','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:04','2020-05-03 16:57:06'),(9129,'economics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:24','2020-05-03 16:57:26'),(9130,'irk','54.166.138.44',30,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:51','2020-05-03 16:57:53'),(9131,'civiledu','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:17','2020-05-03 16:58:19'),(9132,'insurance','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:58','2020-05-03 16:59:00'),(9133,'currentaffairs','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:59:20','2020-05-03 16:59:22'),(9134,'history','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:00:11','2020-05-03 17:50:17'),(9135,'mathematics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:10','2020-05-03 17:43:43'),(9136,'commerce','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:38','2020-05-03 17:44:06'),(9137,'accounting','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:04','2020-05-03 17:44:35'),(9138,'biology','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:28','2020-05-03 17:44:59'),(9139,'physics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:59','2020-05-03 17:45:22'),(9140,'chemistry','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:03:27','2020-05-03 17:45:51'),(9141,'englishlit','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:02','2020-05-03 17:46:17'),(9142,'crk','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:28','2020-05-03 17:47:18'),(9143,'government','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:57','2020-05-03 17:46:53'),(9144,'geography','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:27','2020-05-03 17:47:43'),(9145,'economics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:55','2020-05-03 17:48:08'),(9146,'irk','3.95.205.237',180,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:29','2020-05-03 17:48:30'),(9147,'civiledu','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:57','2020-05-03 17:48:54'),(9148,'insurance','3.95.205.237',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:23','2020-05-03 17:49:18'),(9149,'currentaffairs','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:55','2020-05-03 17:49:38'),(9150,'insurance','18.234.85.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:51:52','2020-05-03 17:51:52'),(9151,'chemistry','54.81.105.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 19:38:19','2020-05-03 19:38:19'),(9152,'civiledu','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:43:29','2020-05-03 19:43:29'),(9153,'englishlit','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:54:13','2020-05-03 19:54:13'),(9154,'chemistry','105.112.115.225',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 20:27:24','2020-05-03 20:27:24'),(9155,'crk','34.233.133.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 21:37:40','2020-05-03 21:37:40'),(9156,'english','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 23:39:58','2020-05-03 23:39:58'),(9157,'crk','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 00:00:14','2020-05-04 00:00:14'),(9158,'english','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9159,'english','34.201.133.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9160,'physics','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9161,'accounting','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9162,'englishlit','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9163,'geography','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9164,'government','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9165,'economics','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9166,'civiledu','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9167,'irk','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9168,'insurance','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9169,'crk','54.146.129.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 04:53:02','2020-05-04 04:53:02'),(9170,'biology','54.82.169.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 05:39:54','2020-05-04 05:39:54'),(9171,'government','18.212.134.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 07:54:46','2020-05-04 07:54:46'),(9172,'chemistry','41.190.3.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 08:37:26','2020-05-04 08:37:29'),(9173,'chemistry','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:07:07','2020-05-04 09:07:07'),(9174,'economics','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:24:40','2020-05-04 09:24:40'),(9175,'mathematics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:05:23','2020-05-04 10:16:55'),(9176,'commerce','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:06:28','2020-05-04 10:17:26'),(9177,'accounting','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:07:00','2020-05-04 10:18:01'),(9178,'biology','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:17','2020-05-04 10:18:33'),(9179,'physics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:52','2020-05-04 10:18:59'),(9180,'chemistry','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:09:47','2020-05-04 10:19:29'),(9181,'chemistry','197.211.53.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:17','2020-05-04 10:10:17'),(9182,'englishlit','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:27','2020-05-04 10:20:35'),(9183,'government','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:11','2020-05-04 10:21:10'),(9184,'crk','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:46','2020-05-04 10:21:49'),(9185,'economics','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:14','2020-05-04 10:22:21'),(9186,'geography','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:42','2020-05-04 10:22:44'),(9187,'irk','54.226.73.173',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:13:40','2020-05-04 10:23:05'),(9188,'civiledu','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:14:36','2020-05-04 10:24:07'),(9189,'insurance','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:05','2020-05-04 10:24:41'),(9190,'currentaffairs','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:37','2020-05-04 10:25:21'),(9191,'history','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:16:05','2020-05-04 10:25:43'),(9192,'physics','34.230.85.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 11:44:10','2020-05-04 11:44:10'),(9193,'englishlit','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 12:53:41','2020-05-04 12:53:41'),(9194,'currentaffairs','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 13:03:08','2020-05-04 13:03:08'),(9195,'english','54.91.147.136',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 13:59:39','2020-05-04 14:10:23'),(9196,'crk','54.167.221.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 16:21:35','2020-05-04 16:21:35'),(9197,'mathematics','34.227.100.151',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 18:01:31','2020-05-04 18:53:32'),(9198,'commerce','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:06','2020-05-04 18:53:59'),(9199,'accounting','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:40','2020-05-04 18:54:21'),(9200,'biology','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:08','2020-05-04 18:54:50'),(9201,'physics','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:52','2020-05-04 18:48:01'),(9202,'chemistry','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:22','2020-05-04 18:55:24'),(9203,'englishlit','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:55','2020-05-04 18:55:50'),(9204,'government','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:06:25','2020-05-04 18:56:46'),(9205,'irk','34.227.100.151',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:05','2020-05-04 18:58:12'),(9206,'geography','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:32','2020-05-04 18:57:53'),(9207,'economics','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:56','2020-05-04 18:57:27'),(9208,'crk','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:08:29','2020-05-04 18:57:05'),(9209,'civiledu','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:22','2020-05-04 18:58:33'),(9210,'insurance','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:52','2020-05-04 18:59:01'),(9211,'currentaffairs','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:10:36','2020-05-04 18:59:20'),(9212,'history','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:11:01','2020-05-04 18:59:44'),(9213,'englishlit','54.91.12.60',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:19:14','2020-05-04 18:19:14'),(9214,'english','34.227.100.151',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:41:22','2020-05-04 18:56:16'),(9215,'chemistry','77.88.5.170',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:43:38','2020-05-04 18:43:38'),(9216,'chemistry','54.90.243.173',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 19:36:36','2020-05-04 19:36:36'),(9217,'economics','18.208.245.55',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 20:24:40','2020-05-04 20:24:40'),(9218,'government','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:34:09','2020-05-04 22:34:09'),(9219,'crk','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:56:00','2020-05-04 22:56:00'),(9220,'english','34.230.41.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 01:39:36','2020-05-05 01:39:36'),(9221,'english','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9222,'biology','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9223,'chemistry','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9224,'government','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9225,'irk','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:53'),(9226,'civiledu','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9227,'insurance','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9228,'currentaffairs','54.82.122.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 15:55:27','2020-05-05 15:55:27'),(9229,'currentaffairs','35.171.182.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 17:52:25','2020-05-05 17:52:25'),(9230,'civiledu','54.162.194.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:44:31','2020-05-05 18:44:31'),(9231,'chemistry','105.112.22.22',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:54:47','2020-05-05 18:55:46'),(9232,'economics','3.81.61.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 20:23:57','2020-05-05 20:23:57'),(9233,'civiledu','34.229.1.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:13:48','2020-05-05 21:13:48'),(9234,'english','35.175.224.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:50:44','2020-05-05 21:50:44'),(9235,'english','66.249.64.72',7,'',NULL,'',NULL,NULL,NULL,'','','2020-05-05 22:53:19','2020-05-05 22:53:19'),(9236,'accounting','3.89.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 23:06:38','2020-05-05 23:06:38'),(9237,'biology','66.249.64.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 04:40:45','2020-05-06 04:40:46'),(9238,'biology','3.82.138.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 11:39:57','2020-05-06 11:39:57'),(9239,'government','54.159.33.148',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 15:34:04','2020-05-06 15:34:04'),(9240,'chemistry','54.36.149.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:24:22','2020-05-06 16:24:22'),(9241,'chemistry','54.36.148.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:28:45','2020-05-06 16:28:45'),(9242,'chemistry','54.36.149.15',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:32:20','2020-05-06 16:32:20'),(9243,'chemistry','105.112.52.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 17:44:03','2020-05-06 17:44:03'),(9244,'government','35.153.179.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:00:30','2020-05-06 18:00:30'),(9245,'crk','107.22.153.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:46:09','2020-05-06 18:46:09'),(9246,'insurance','52.207.168.128',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 20:37:45','2020-05-06 20:37:45'),(9247,'crk','54.152.178.63',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 22:54:07','2020-05-06 22:54:07'),(9248,'chemistry','102.89.2.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 23:18:18','2020-05-06 23:18:18'),(9249,'english','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9250,'commerce','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9251,'chemistry','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9252,'government','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9253,'irk','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9254,'civiledu','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9255,'insurance','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:11'),(9256,'chemistry','197.210.46.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:09:52','2020-05-25 11:09:52'),(9257,'chemistry','197.210.198.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:16:21','2020-05-25 11:16:21'),(9258,'chemistry','197.210.53.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:23:10','2020-05-25 11:23:15'),(9259,'chemistry','157.55.39.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:55:56','2020-05-25 11:55:56'),(9260,'commerce','3.94.205.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:06:49','2020-05-25 12:06:49'),(9261,'economics','54.226.128.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:53:03','2020-05-25 12:53:03'),(9262,'crk','54.91.154.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 14:42:35','2020-05-25 14:42:35'),(9263,'mathematics','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:28:22','2020-05-25 15:28:22'),(9264,'chemistry','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:33:33','2020-05-25 15:33:33'),(9265,'economics','54.91.243.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 17:58:39','2020-05-25 17:58:39'),(9266,'mathematics','66.249.66.136',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:15:02','2020-05-25 19:15:05'),(9267,'chemistry','15.236.101.59',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:49:10','2020-05-25 19:51:59'),(9268,'government','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:08:24','2020-05-25 21:08:24'),(9269,'chemistry','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:16:46','2020-05-25 21:16:46'),(9270,'chemistry','197.210.70.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:21:23','2020-05-25 22:21:23'),(9271,'geography','18.212.164.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:31:38','2020-05-25 22:31:38'),(9272,'government','54.81.15.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 23:48:45','2020-05-25 23:48:45'),(9273,'commerce','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 00:35:21','2020-05-26 00:35:21'),(9274,'economics','34.203.224.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 01:14:02','2020-05-26 01:14:02'),(9275,'crk','18.232.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 02:43:23','2020-05-26 02:43:23'),(9276,'insurance','18.212.41.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 04:09:34','2020-05-26 04:09:34'),(9277,'englishlit','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 06:53:11','2020-05-26 06:53:11'),(9278,'chemistry','41.190.31.41',122,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:00:17','2020-05-26 07:07:55'),(9279,'irk','41.190.31.41',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:09:11','2020-05-26 07:09:13'),(9280,'english','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:27','2020-05-26 07:19:27'),(9281,'english','41.190.31.41',839,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:30','2020-05-26 10:55:38'),(9282,'civiledu','54.159.94.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:11:23','2020-05-26 08:11:23'),(9283,'chemistry','105.112.24.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:25:30','2020-05-26 08:25:30'),(9284,'crk','3.87.153.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 09:29:02','2020-05-26 09:29:02'),(9285,'crk','52.90.24.192',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 11:46:19','2020-05-26 11:46:19'),(9286,'physics','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 21:42:14','2020-05-26 21:42:14'),(9287,'english','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:01:46','2020-05-26 22:01:46'),(9288,'chemistry','197.210.84.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:06:54','2020-05-26 22:09:09'),(9289,'currentaffairs','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:28:46','2020-05-26 23:28:46'),(9290,'englishlit','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:33:46','2020-05-26 23:33:46'),(9291,'englishlit','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 02:53:40','2020-05-27 02:53:40'),(9292,'economics','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 03:19:57','2020-05-27 03:19:57'),(9293,'chemistry','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:08:27','2020-05-27 04:08:27'),(9294,'crk','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:26:11','2020-05-27 04:26:11'),(9295,'insurance','18.209.13.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 05:07:33','2020-05-27 05:07:33'),(9296,'government','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:46:52','2020-05-27 06:46:52'),(9297,'crk','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:59:51','2020-05-27 06:59:51'),(9298,'geography','34.201.141.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 08:25:36','2020-05-27 08:25:36'),(9299,'english','3.84.219.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 10:53:47','2020-05-27 10:53:47'),(9300,'chemistry','169.255.236.30',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:14:45','2020-05-27 11:16:08'),(9301,'chemistry','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:29:07','2020-05-27 12:32:12'),(9302,'physics','41.190.30.150',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:34:30','2020-05-27 12:20:54'),(9303,'economics','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:37:24','2020-05-27 12:37:24'),(9304,'government','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:40:47','2020-05-27 12:23:05'),(9305,'biology','41.190.30.150',79,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:43:55','2020-05-27 12:19:37'),(9306,'biology','34.228.70.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:47:18','2020-05-27 11:47:18'),(9307,'mathematics','41.190.30.150',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:48:42','2020-05-27 12:17:48'),(9308,'english','41.190.30.150',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:50:16','2020-05-27 12:13:47'),(9309,'geography','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:53:34','2020-05-27 12:15:29'),(9310,'history','41.190.30.150',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:57:18','2020-05-27 11:57:22'),(9311,'englishlit','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 12:01:50','2020-05-27 12:07:14'),(9312,'chemistry','34.204.193.85',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 15:13:53','2020-05-27 15:45:24'),(9313,'currentaffairs','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:35:28','2020-05-27 17:35:28'),(9314,'civiledu','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:48:39','2020-05-27 17:48:39'),(9315,'chemistry','41.190.14.68',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:10','2020-05-27 17:54:19'),(9316,'english','41.190.14.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:32','2020-05-27 17:51:35'),(9317,'english','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:17:07','2020-05-27 20:17:07'),(9318,'chemistry','94.130.16.50',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:08','2020-05-27 20:36:12'),(9319,'biology','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:43','2020-05-27 20:33:43'),(9320,'accounting','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:51:21','2020-05-27 20:51:21'),(9321,'chemistry','154.66.36.151',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:46:00','2020-05-27 22:52:44'),(9322,'english','154.66.36.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:48:02','2020-05-27 22:48:02'),(9323,'chemistry','105.112.70.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 23:32:12','2020-05-27 23:32:12'),(9324,'chemistry','157.55.39.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 03:31:42','2020-05-28 03:31:42'),(9325,'english','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:40','2020-05-28 04:32:41'),(9326,'mathematics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9327,'biology','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9328,'economics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9329,'irk','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9330,'insurance','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9331,'history','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9332,'chemistry','196.32.235.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:01:12','2020-05-28 05:01:12'),(9333,'chemistry','129.205.112.224',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:51:40','2020-05-28 05:53:11'),(9334,'mathematics','129.205.112.224',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:55:48','2020-05-28 05:59:02'),(9335,'chemistry','82.145.210.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:57:23','2020-05-28 05:57:23'),(9336,'chemistry','185.26.180.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 07:18:49','2020-05-28 07:18:49'),(9337,'geography','54.196.45.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:04:20','2020-05-28 09:04:20'),(9338,'chemistry','197.210.226.225',105,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:25:44','2020-05-28 10:24:13'),(9339,'chemistry','197.210.226.44',55,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:27:16','2020-05-28 10:22:52'),(9340,'chemistry','197.210.227.211',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:30:21','2020-05-28 10:21:54'),(9341,'english','197.210.227.211',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:54:07','2020-05-28 09:54:10'),(9342,'english','197.210.226.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:55:01','2020-05-28 09:55:04'),(9343,'english','197.210.226.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 10:03:53','2020-05-28 10:09:18'),(9344,'physics','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:10:25','2020-05-28 13:10:25'),(9345,'chemistry','197.210.44.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:26:05','2020-05-28 13:26:05'),(9346,'government','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:29:47','2020-05-28 13:29:47'),(9347,'chemistry','197.210.52.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:54:51','2020-05-28 14:08:36'),(9348,'chemistry','197.210.52.59',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:57:55','2020-05-28 13:57:55'),(9349,'chemistry','197.210.52.25',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:58:05','2020-05-28 13:58:13'),(9350,'chemistry','197.210.52.232',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:06:52','2020-05-28 14:06:55'),(9351,'chemistry','197.210.53.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:08:55','2020-05-28 14:53:41'),(9352,'chemistry','197.210.52.82',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:19:48','2020-05-28 14:54:31'),(9353,'chemistry','197.210.53.190',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:14','2020-05-28 14:53:55'),(9354,'insurance','197.210.53.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:51','2020-05-28 14:49:51'),(9355,'physics','197.210.53.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:50:15','2020-05-28 14:50:15'),(9356,'mathematics','197.210.53.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:51:48','2020-05-28 14:52:01'),(9357,'mathematics','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:34','2020-05-28 14:52:34'),(9358,'english','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:52','2020-05-28 14:52:52'),(9359,'english','197.210.52.82',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:07','2020-05-28 14:53:16'),(9360,'chemistry','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:33','2020-05-28 14:53:33'),(9361,'insurance','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:20:04','2020-05-28 15:20:04'),(9362,'chemistry','129.205.112.208',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:37:00','2020-05-28 15:38:41'),(9363,'crk','18.208.110.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:19:54','2020-05-28 17:19:54'),(9364,'chemistry','129.56.80.227',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:42:36','2020-05-28 17:57:17'),(9365,'chemistry','197.210.226.198',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 18:07:17','2020-05-28 19:14:47'),(9366,'chemistry','197.210.226.91',1562,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:09:38','2020-05-28 20:03:58'),(9367,'chemistry','197.210.226.220',2081,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:11:37','2020-05-28 20:03:48'),(9368,'english','197.210.226.220',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:05:42','2020-05-28 20:15:39'),(9369,'english','197.210.226.91',1080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:06:07','2020-05-28 20:15:26'),(9370,'english','197.210.226.198',2840,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:07:48','2020-05-28 20:15:35'),(9371,'mathematics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:07','2020-05-28 20:23:22'),(9372,'mathematics','197.210.226.91',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:15','2020-05-28 20:25:33'),(9373,'biology','197.210.226.198',1480,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:01','2020-05-28 20:41:32'),(9374,'biology','197.210.226.91',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:14','2020-05-28 20:41:25'),(9375,'civiledu','197.210.226.198',1960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:42:54','2020-05-28 21:07:50'),(9376,'civiledu','197.210.226.91',1560,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:43:16','2020-05-28 21:09:58'),(9377,'civiledu','197.210.226.220',1320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:45:38','2020-05-28 21:10:08'),(9378,'physics','197.210.226.220',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:19','2020-05-28 20:49:51'),(9379,'physics','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:27','2020-05-28 20:49:39'),(9380,'government','197.210.226.91',1400,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:05','2020-05-28 20:57:45'),(9381,'government','197.210.226.220',960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:12','2020-05-28 20:57:41'),(9382,'government','197.210.226.198',1680,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:52:42','2020-05-28 20:56:48'),(9383,'insurance','197.210.226.91',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:58:57','2020-05-28 21:03:46'),(9384,'insurance','197.210.226.220',1360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:59:01','2020-05-28 21:03:58'),(9385,'history','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:48','2020-05-28 21:02:54'),(9386,'history','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:53','2020-05-28 21:02:49'),(9387,'geography','197.210.226.91',760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:05:51','2020-05-28 21:08:55'),(9388,'geography','197.210.226.198',640,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:06:05','2020-05-28 21:07:54'),(9389,'geography','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:07:55','2020-05-28 21:08:51'),(9390,'economics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:09:59','2020-05-28 21:15:23'),(9391,'economics','197.210.226.91',1160,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:15','2020-05-28 21:15:30'),(9392,'economics','197.210.226.198',1720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:42','2020-05-28 21:15:34'),(9393,'commerce','197.210.226.91',1760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:15','2020-05-28 21:17:42'),(9394,'commerce','197.210.226.198',2080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:19','2020-05-28 21:17:46'),(9395,'commerce','197.210.226.220',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:14:56','2020-05-28 21:15:26'),(9396,'geography','3.82.229.138',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 22:59:25','2020-05-28 22:59:25'),(9397,'chemistry','54.36.148.3',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 23:37:10','2020-05-28 23:37:10'),(9398,'chemistry','54.36.148.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:24:10','2020-05-29 00:24:10'),(9399,'chemistry','54.36.148.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:31:09','2020-05-29 00:31:09'),(9400,'geography','54.164.65.241',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:26:22','2020-05-29 01:59:55'),(9401,'economics','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:34:57','2020-05-29 01:34:57'),(9402,'english','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 02:28:56','2020-05-29 02:28:56'),(9403,'mathematics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9404,'biology','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9405,'government','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9406,'geography','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9407,'economics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9408,'currentaffairs','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9409,'history','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9410,'geography','54.164.210.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:31:40','2020-05-29 08:31:40'),(9411,'chemistry','197.210.64.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:43:12','2020-05-29 21:25:53'),(9412,'physics','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:30:46','2020-05-29 09:30:46'),(9413,'englishlit','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:48:29','2020-05-29 09:48:29'),(9414,'biology','3.85.236.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:29:11','2020-05-29 11:29:11'),(9415,'chemistry','34.239.119.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:51:20','2020-05-29 11:51:20'),(9416,'chemistry','185.20.6.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:58:05','2020-05-29 11:58:05'),(9417,'currentaffairs','54.85.98.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 12:25:10','2020-05-29 12:25:10'),(9418,'physics','3.81.136.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 15:59:43','2020-05-29 15:59:43'),(9419,'mathematics','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 16:57:16','2020-05-29 16:57:16'),(9420,'geography','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 17:11:25','2020-05-29 17:11:25'),(9421,'geography','3.86.16.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:01:00','2020-05-29 19:01:00'),(9422,'mathematics','34.229.23.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:42:00','2020-05-29 19:42:00'),(9423,'government','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:04:38','2020-05-29 21:04:38'),(9424,'history','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:37:50','2020-05-29 21:37:50'),(9425,'mathematics','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:09:44','2020-05-29 23:09:44'),(9426,'accounting','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:39:35','2020-05-29 23:39:35'),(9427,'mathematics','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:47'),(9428,'commerce','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:48'),(9429,'accounting','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9430,'biology','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9431,'geography','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9432,'irk','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9433,'currentaffairs','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9434,'accounting','3.89.232.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 08:21:13','2020-05-30 08:21:13'),(9435,'biology','54.208.77.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 11:46:23','2020-05-30 11:46:23'),(9436,'chemistry','144.76.56.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 17:12:22','2020-05-30 17:12:22'),(9437,'accounting','3.94.91.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 18:38:25','2020-05-30 18:38:25'),(9438,'insurance','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 11:49:35','2020-06-01 11:49:35'),(9439,'economics','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 12:10:32','2020-06-01 12:10:32'),(9440,'english','54.159.64.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:04:44','2020-06-01 13:04:44'),(9441,'mathematics','52.2.222.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:49:07','2020-06-01 13:49:07'),(9442,'englishlit','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9443,'crk','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9444,'economics','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:42:44','2020-06-01 14:42:44'),(9445,'crk','54.174.23.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:33:34','2020-06-01 16:33:34'),(9446,'geography','54.174.23.76',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:19','2020-06-01 17:19:55'),(9447,'mathematics','54.174.23.76',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:29','2020-06-01 17:43:19'),(9448,'biology','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9449,'chemistry','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9450,'englishlit','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9451,'government','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9452,'economics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:55','2020-06-01 17:19:55'),(9453,'english','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:18','2020-06-01 17:43:18'),(9454,'accounting','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9455,'physics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9456,'insurance','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:20','2020-06-01 17:43:20'),(9457,'history','3.85.59.140',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 20:12:18','2020-06-01 20:33:55'),(9458,'physics','35.172.115.238',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 23:04:28','2020-06-01 23:04:28'),(9459,'english','54.209.246.16',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 01:03:57','2020-06-02 01:03:57'),(9460,'currentaffairs','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:01:14','2020-06-02 02:01:14'),(9461,'englishlit','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:06:10','2020-06-02 02:06:10'),(9462,'insurance','54.211.248.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 04:46:23','2020-06-02 04:46:23'),(9463,'crk','54.205.222.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 05:30:27','2020-06-02 05:30:27'),(9464,'economics','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:20:56','2020-06-02 06:20:56'),(9465,'chemistry','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:38:36','2020-06-02 06:38:36'),(9466,'englishlit','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 07:02:43','2020-06-02 07:02:43'),(9467,'government','54.196.8.56',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 08:34:31','2020-06-02 08:34:31'),(9468,'geography','54.86.69.81',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 10:40:11','2020-06-02 10:40:11'),(9469,'chemistry','41.190.12.59',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-02 10:55:51','2020-06-02 10:55:54'),(9470,'english','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 12:19:33','2020-06-02 12:19:33'),(9471,'economics','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 23:59:57','2020-06-02 23:59:57'),(9472,'currentaffairs','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 00:22:59','2020-06-03 00:22:59'),(9473,'civiledu','35.173.231.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 02:25:11','2020-06-03 02:25:11'),(9474,'english','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 04:48:53','2020-06-03 05:17:39'),(9475,'accounting','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9476,'government','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9477,'civiledu','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9478,'insurance','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9479,'currentaffairs','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:42'),(9480,'history','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9481,'biology','3.208.9.26',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:51:48','2020-06-03 05:51:48'),(9482,'accounting','3.81.96.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 06:39:27','2020-06-03 06:39:27'),(9483,'economics','34.228.56.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:19:49','2020-06-03 12:19:49'),(9484,'englishlit','34.228.56.210',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:47:48','2020-06-03 12:51:59'),(9485,'mathematics','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9486,'commerce','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9487,'accounting','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9488,'biology','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9489,'englishlit','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9490,'government','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9491,'crk','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9492,'geography','52.91.141.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 18:34:51','2020-06-03 18:34:51'),(9493,'mathematics','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:32','2020-06-03 19:33:45'),(9494,'commerce','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:54','2020-06-03 19:36:09'),(9495,'currentaffairs','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:05','2020-06-03 19:34:05'),(9496,'crk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:11','2020-06-03 19:35:12'),(9497,'chemistry','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:57','2020-06-03 19:36:15'),(9498,'irk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:26','2020-06-03 19:36:00'),(9499,'english','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:36','2020-06-03 19:35:36'),(9500,'englishlit','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:54:43','2020-06-03 19:54:43'),(9501,'government','54.85.212.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 21:33:59','2020-06-03 21:33:59'),(9502,'insurance','3.86.225.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 23:35:47','2020-06-03 23:35:47'),(9503,'crk','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 00:57:31','2020-06-04 00:57:31'),(9504,'physics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:23:50','2020-06-04 06:23:50'),(9505,'mathematics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:34:26','2020-06-04 06:34:26'),(9506,'geography','34.205.74.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 07:10:34','2020-06-04 07:10:34'),(9507,'economics','54.242.18.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 08:36:04','2020-06-04 08:36:04'),(9508,'geography','3.83.161.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:26:27','2020-06-04 10:53:11'),(9509,'english','3.83.161.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:49:32','2020-06-04 10:49:32'),(9510,'mathematics','54.91.240.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 12:15:58','2020-06-04 12:15:58'),(9511,'biology','3.87.239.123',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 15:09:53','2020-06-04 15:09:53'),(9512,'chemistry','41.190.12.5',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-04 15:57:02','2020-06-04 15:57:05'),(9513,'geography','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:22:59','2020-06-04 16:22:59'),(9514,'physics','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:23:13','2020-06-04 16:23:13'),(9515,'englishlit','3.94.109.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:58:33','2020-06-04 16:58:33'),(9516,'currentaffairs','54.159.111.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:11:39','2020-06-04 19:11:39'),(9517,'english','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:37:05','2020-06-04 19:37:08'),(9518,'mathematics','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:44:40','2020-06-04 19:51:52'),(9519,'biology','18.207.247.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:57:06','2020-06-04 19:57:06'),(9520,'physics','54.196.42.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 00:29:32','2020-06-05 00:29:32'),(9521,'geography','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 02:42:52','2020-06-05 02:42:52'),(9522,'government','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:47','2020-06-05 03:06:47'),(9523,'mathematics','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:51','2020-06-05 03:06:51'),(9524,'history','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 07:51:51','2020-06-05 07:51:51'),(9525,'accounting','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 08:06:02','2020-06-05 08:06:02'),(9526,'accounting','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:31','2020-06-05 15:31:38'),(9527,'crk','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:41','2020-06-05 15:31:44'),(9528,'accounting','54.160.137.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 17:41:28','2020-06-05 17:41:28'),(9529,'biology','18.205.22.3',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:49:31','2020-06-05 18:55:02'),(9530,'commerce','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:01','2020-06-05 18:55:02'),(9531,'accounting','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9532,'government','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9533,'economics','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9534,'insurance','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9535,'history','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9536,'history','52.91.27.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 23:09:41','2020-06-05 23:09:41'),(9537,'history','3.85.77.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 01:06:10','2020-06-06 01:06:10'),(9538,'accounting','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:12:01','2020-06-06 03:12:01'),(9539,'chemistry','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:28:00','2020-06-06 03:28:00'),(9540,'irk','3.91.16.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 05:27:37','2020-06-06 05:27:37'),(9541,'english','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9542,'physics','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9543,'englishlit','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9544,'government','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:40'),(9545,'economics','3.90.106.57',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 17:12:22'),(9546,'irk','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9547,'history','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9548,'commerce','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9549,'physics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9550,'chemistry','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9551,'crk','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9552,'economics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9553,'civiledu','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9554,'insurance','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9555,'insurance','52.207.159.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 15:54:55','2020-06-06 15:54:55'),(9556,'economics','52.70.110.33',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 18:01:25','2020-06-06 18:01:25'),(9557,'history','52.90.40.161',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 19:35:54','2020-06-06 20:01:45'),(9558,'accounting','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:44','2020-06-06 20:01:45'),(9559,'biology','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9560,'chemistry','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9561,'crk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9562,'irk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9563,'civiledu','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9564,'history','54.210.221.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 21:37:33','2020-06-06 21:37:33'),(9565,'economics','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:20:46','2020-06-07 00:20:46'),(9566,'englishlit','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:46:15','2020-06-07 00:46:15'),(9567,'english','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9568,'mathematics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9569,'physics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9570,'chemistry','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:16'),(9571,'government','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9572,'crk','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9573,'insurance','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9574,'irk','54.224.8.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 05:20:52','2020-06-07 05:20:52'),(9575,'commerce','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:08:43','2020-06-07 08:08:43'),(9576,'english','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:42:36','2020-06-07 08:42:36'),(9577,'crk','54.221.109.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 10:13:14','2020-06-07 10:13:14'),(9578,'economics','54.225.32.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:34:16','2020-06-07 12:34:16'),(9579,'english','52.72.124.107',400,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:53:32','2020-06-07 13:40:54'),(9580,'government','3.93.176.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 15:19:14','2020-06-07 15:19:14'),(9581,'chemistry','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:21:24','2020-06-07 17:21:24'),(9582,'economics','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:49:48','2020-06-07 17:49:48'),(9583,'government','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:52:13','2020-06-07 17:52:13'),(9584,'geography','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:53:52','2020-06-07 17:53:52'),(9585,'crk','105.112.176.254',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-07 19:15:46','2020-06-07 19:15:48'),(9586,'commerce','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:29:05','2020-06-07 21:29:05'),(9587,'english','54.90.107.82',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:36:38','2020-06-07 22:14:18'),(9588,'insurance','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:52:14','2020-06-07 21:52:14'),(9589,'english','54.83.121.94',680,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 23:24:33','2020-06-08 00:10:20'),(9590,'crk','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 00:57:41','2020-06-08 00:57:41'),(9591,'english','3.80.114.187',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:05:57','2020-06-08 01:07:20'),(9592,'civiledu','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:19:10','2020-06-08 01:19:10'),(9593,'englishlit','54.87.33.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 02:09:25','2020-06-08 02:09:25'),(9594,'english','54.196.250.109',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:14:09','2020-06-08 06:58:08'),(9595,'crk','3.80.171.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:47:50','2020-06-08 07:07:58'),(9596,'english','3.80.171.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:55:00','2020-06-08 06:55:00'),(9597,'english','54.167.101.91',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 13:03:52','2020-06-08 13:05:05'),(9598,'physics','3.95.171.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 15:20:45','2020-06-08 15:20:45'),(9599,'english','52.203.0.65',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 16:36:54','2020-06-08 16:36:54'),(9600,'english','34.201.76.45',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:10:20','2020-06-08 17:17:39'),(9601,'history','34.201.76.45',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:19:47','2020-06-08 17:19:50'),(9602,'englishlit','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:33:25','2020-06-08 17:33:25'),(9603,'currentaffairs','54.204.150.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:27:19','2020-06-08 18:27:19'),(9604,'history','3.87.156.54',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:58:06','2020-06-08 19:42:37'),(9605,'insurance','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:18:35','2020-06-08 20:18:35'),(9606,'crk','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:21:48','2020-06-08 20:21:48'),(9607,'englishlit','18.207.128.248',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:58:53','2020-06-08 20:58:53'),(9608,'chemistry','3.93.176.236',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 21:53:07','2020-06-08 21:53:07'),(9609,'economics','54.82.36.157',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 23:04:51','2020-06-08 23:04:51'),(9610,'government','54.86.240.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:01:33','2020-06-09 00:01:33'),(9611,'crk','3.85.86.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:37:54','2020-06-09 00:37:54'),(9612,'geography','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 02:38:55','2020-06-09 02:38:55'),(9613,'english','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:10:07','2020-06-09 03:10:07'),(9614,'history','3.83.163.75',680,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:12:41','2020-06-09 05:07:42'),(9615,'mathematics','3.83.163.75',320,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:02:16','2020-06-09 04:41:32'),(9616,'english','3.83.163.75',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:41:57','2020-06-09 05:07:46'),(9617,'history','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:33','2020-06-09 10:53:29'),(9618,'english','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:36','2020-06-09 10:53:32'),(9619,'mathematics','52.23.182.126',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 10:54:17','2020-06-09 11:12:18'),(9620,'mathematics','35.175.193.162',1596,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 14:27:00','2020-06-09 16:15:07'),(9621,'economics','54.204.126.52',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 15:24:33','2020-06-09 15:24:33'),(9622,'currentaffairs','54.91.74.154',3,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:21:57','2020-06-09 17:25:11'),(9623,'civiledu','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:24:52','2020-06-09 17:24:52'),(9624,'mathematics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9625,'government','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9626,'crk','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9627,'geography','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9628,'economics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:11'),(9629,'insurance','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:11','2020-06-09 17:25:11'),(9630,'history','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:06','2020-06-09 17:36:08'),(9631,'english','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:09','2020-06-09 17:36:12'),(9632,'history','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:51:30','2020-06-09 17:51:30'),(9633,'english','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 19:54:48','2020-06-09 19:54:48'),(9634,'economics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:09:36','2020-06-09 20:09:36'),(9635,'mathematics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:17:47','2020-06-09 20:17:47'),(9636,'biology','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:20:39','2020-06-09 20:20:39'),(9637,'accounting','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:32:25','2020-06-09 20:32:25'),(9638,'geography','54.175.242.92',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 22:47:17','2020-06-09 22:47:17'),(9639,'mathematics','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9640,'biology','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9641,'chemistry','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9642,'crk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9643,'geography','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:58'),(9644,'irk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9645,'insurance','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9646,'economics','3.94.91.40',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 06:49:53','2020-06-10 06:49:53'),(9647,'english','54.164.250.86',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 07:55:11','2020-06-10 07:55:14'),(9648,'biology','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:01','2020-06-10 10:14:17'),(9649,'english','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:04','2020-06-10 10:14:20'),(9650,'geography','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:43:01','2020-06-10 09:43:01'),(9651,'currentaffairs','34.228.169.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 10:40:47','2020-06-10 10:40:47'),(9652,'physics','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:41','2020-06-10 12:30:40'),(9653,'english','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:51','2020-06-10 12:30:44'),(9654,'physics','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:32:35','2020-06-10 12:32:35'),(9655,'government','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:52:28','2020-06-10 12:52:28'),(9656,'insurance','34.229.159.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 14:58:20','2020-06-10 14:58:20'),(9657,'mathematics','35.173.239.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 15:35:55','2020-06-10 15:35:55'),(9658,'crk','3.86.97.187',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 16:58:01','2020-06-10 16:58:01'),(9659,'history','34.229.88.249',470,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:16','2020-06-10 17:23:26'),(9660,'english','34.229.88.249',482,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:19','2020-06-10 17:23:29'),(9661,'history','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:02','2020-06-10 18:16:04'),(9662,'english','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:05','2020-06-10 18:16:08'),(9663,'mathematics','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:05:59','2020-06-10 22:05:59'),(9664,'geography','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:27:25','2020-06-10 22:27:25'),(9665,'geography','52.72.218.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:19:39','2020-06-11 01:19:39'),(9666,'english','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:59:15','2020-06-11 01:59:15'),(9667,'geography','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 02:27:07','2020-06-11 02:27:07'),(9668,'mathematics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:11:45','2020-06-11 03:11:45'),(9669,'englishlit','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:26:44','2020-06-11 03:26:44'),(9670,'economics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:33:39','2020-06-11 03:33:39'),(9671,'physics','54.237.231.196',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:12:05','2020-06-11 06:34:08'),(9672,'english','54.237.231.196',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:28:30','2020-06-11 06:34:10'),(9673,'geography','54.82.9.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 07:31:00','2020-06-11 07:31:00'),(9674,'physics','34.201.154.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 08:15:39','2020-06-11 08:15:39'),(9675,'englishlit','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:18:15','2020-06-11 09:18:15'),(9676,'currentaffairs','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:53:23','2020-06-11 09:53:23'),(9677,'geography','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 17:57:01','2020-06-11 17:57:01'),(9678,'chemistry','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:07:43','2020-06-11 18:07:43'),(9679,'government','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:18:55','2020-06-11 18:18:55'),(9680,'mathematics','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:29:47','2020-06-11 18:29:47'),(9681,'mathematics','34.204.107.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 20:09:41','2020-06-11 20:09:41'),(9682,'history','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:07:01','2020-06-11 21:07:01'),(9683,'accounting','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:15:15','2020-06-11 21:15:15'),(9684,'mathematics','54.81.240.233',280,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 06:45:16','2020-06-12 07:03:55'),(9685,'mathematics','54.162.119.234',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 07:52:29','2020-06-12 07:54:13'),(9686,'accounting','54.224.233.71',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 08:25:02','2020-06-12 08:25:02'),(9687,'mathematics','34.203.222.37',720,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-12 09:06:04','2020-06-12 09:50:04'),(9688,'mathematics','52.90.186.75',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:37:46','2020-06-12 10:44:14'),(9689,'biology','3.89.193.33',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:55:51','2020-06-12 10:55:51'),(9690,'englishlit','41.90.5.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:05:39','2020-06-12 13:05:41'),(9691,'history','54.236.252.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:33:09','2020-06-12 13:33:09'),(9692,'mathematics','3.81.215.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:39:44','2020-06-12 16:01:07'),(9693,'history','54.165.172.105',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:55:54','2020-06-12 15:55:54'),(9694,'accounting','3.86.93.233',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 17:29:11','2020-06-12 17:29:11'),(9695,'irk','3.208.21.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 20:36:13','2020-06-12 20:36:13'),(9696,'biology','54.152.97.16',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 22:32:45','2020-06-12 22:32:45'),(9697,'mathematics','54.226.209.23',800,'','US','','Virginia',NULL,NULL,'','','2020-06-12 23:38:09','2020-06-13 00:51:21'),(9698,'mathematics','52.91.175.68',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 01:40:43','2020-06-13 01:40:45'),(9699,'mathematics','54.152.163.102',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 02:16:58','2020-06-13 02:23:32'),(9700,'mathematics','54.163.49.62',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-13 06:48:30','2020-06-13 07:42:02'),(9701,'economics','3.80.186.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 07:05:55','2020-06-13 07:05:55'),(9702,'english','34.226.218.50',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:26:06','2020-06-13 08:33:08'),(9703,'insurance','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:28:58','2020-06-13 08:28:58'),(9704,'economics','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:55:48','2020-06-13 08:55:48'),(9705,'history','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 09:26:26','2020-06-13 09:26:26'),(9706,'history','34.235.159.175',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 11:48:21','2020-06-13 11:48:21'),(9707,'english','3.92.177.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 12:37:38','2020-06-13 12:37:38'),(9708,'englishlit','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:26:25','2020-06-13 14:26:25'),(9709,'economics','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:48:24','2020-06-13 14:48:24'),(9710,'irk','3.82.202.68',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 17:12:27','2020-06-13 17:12:27'),(9711,'mathematics','3.88.29.43',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 22:46:42','2020-06-13 22:46:45'),(9712,'english','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:02:32','2020-06-13 23:02:32'),(9713,'biology','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:10:31','2020-06-13 23:10:31'),(9714,'commerce','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:11:36','2020-06-13 23:11:36'),(9715,'crk','18.212.212.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 00:37:04','2020-06-14 00:37:04'),(9716,'economics','54.144.12.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 03:33:29','2020-06-14 03:33:29'),(9717,'government','18.215.251.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 05:40:04','2020-06-14 05:40:04'),(9718,'chemistry','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 06:42:21','2020-06-14 06:42:21'),(9719,'economics','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:03:38','2020-06-14 08:03:38'),(9720,'geography','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:07:21','2020-06-14 08:07:21'),(9721,'commerce','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:44:47','2020-06-14 08:44:47'),(9722,'biology','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:49:18','2020-06-14 08:49:18'),(9723,'insurance','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 11:39:05','2020-06-14 11:39:05'),(9724,'crk','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 12:49:53','2020-06-14 12:49:53'),(9725,'government','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 13:52:33','2020-06-14 13:52:33'),(9726,'civiledu','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:41:47','2020-06-14 15:41:47'),(9727,'english','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:45:01','2020-06-14 15:45:01'),(9728,'englishlit','34.207.148.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 16:28:31','2020-06-14 16:28:31'),(9729,'chemistry','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:15:57','2020-06-14 22:15:57'),(9730,'crk','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:29:17','2020-06-14 22:29:17'),(9731,'history','54.83.174.162',560,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:21','2020-06-15 02:23:52'),(9732,'english','54.83.174.162',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:28','2020-06-15 02:23:55'),(9733,'english','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:12:28','2020-06-15 06:12:28'),(9734,'englishlit','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:21:57','2020-06-15 06:21:57'),(9735,'currentaffairs','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:11:29','2020-06-15 08:11:29'),(9736,'physics','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:22:03','2020-06-15 08:22:03'),(9737,'crk','18.212.75.232',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 09:01:28','2020-06-15 09:01:28'),(9738,'englishlit','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:24:36','2020-06-15 10:24:36'),(9739,'insurance','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:29:58','2020-06-15 10:29:58'),(9740,'chemistry','54.172.215.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:11:58','2020-06-15 12:11:58'),(9741,'history','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:21:57','2020-06-15 12:23:22'),(9742,'english','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:22:00','2020-06-15 12:23:25'),(9743,'economics','184.73.145.115',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 13:15:25','2020-06-15 13:15:25'),(9744,'government','54.84.68.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 14:07:49','2020-06-15 14:07:49'),(9745,'crk','34.239.49.32',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 15:22:17','2020-06-15 15:22:17'),(9746,'english','54.242.223.207',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 16:33:06','2020-06-15 16:33:06'),(9747,'geography','54.242.223.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 16:43:55','2020-06-15 16:43:55'),(9748,'englishlit','41.80.97.78',40,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-06-16 02:45:58','2020-06-16 02:46:01'),(9749,'history','54.172.25.21',1840,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:41','2020-06-16 07:01:25'),(9750,'english','54.172.25.21',2080,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:44','2020-06-16 07:11:56'),(9751,'economics','3.82.194.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 04:52:57','2020-06-16 04:52:57'),(9752,'currentaffairs','52.54.215.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-16 05:58:53','2020-06-16 05:58:53'),(9753,'civiledu','34.205.23.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 07:14:44','2020-06-16 07:14:44'),(9754,'english','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 09:59:20','2020-06-16 09:59:20'),(9755,'history','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:29','2020-06-16 10:27:07'),(9756,'english','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:32','2020-06-16 10:27:10'),(9757,'accounting','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:15:35','2020-06-16 10:15:35'),(9758,'biology','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:36:24','2020-06-16 10:36:24'),(9759,'physics','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:16:12','2020-06-16 13:22:05'),(9760,'english','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:17:24','2020-06-16 13:22:09'),(9761,'history','34.224.165.104',480,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:48','2020-06-16 15:44:51'),(9762,'english','34.224.165.104',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:51','2020-06-16 15:44:55'),(9763,'history','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:39','2020-06-16 18:19:42'),(9764,'english','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:44','2020-06-16 18:19:45'),(9765,'english','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:30'),(9766,'accounting','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:31'),(9767,'biology','18.205.237.24',2,'','US','','Virginia',NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9768,'physics','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9769,'government','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9770,'currentaffairs','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9771,'history','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9772,'geography','54.92.200.132',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 22:39:24','2020-06-16 22:39:24'),(9773,'physics','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 01:48:53','2020-06-17 01:48:53'),(9774,'government','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 02:03:54','2020-06-17 02:03:54'),(9775,'englishlit','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:26:11','2020-06-17 03:26:11'),(9776,'insurance','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:55:22','2020-06-17 03:55:22'),(9777,'biology','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:51','2020-06-17 05:30:54'),(9778,'english','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:54','2020-06-17 05:30:56'),(9779,'english','3.90.249.44',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 09:46:18','2020-06-17 09:46:55'),(9780,'chemistry','105.112.87.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-17 09:58:18','2020-06-17 09:58:20'),(9781,'chemistry','66.249.88.14',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-06-17 09:59:01','2020-06-17 09:59:04'),(9782,'mathematics','3.88.138.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 10:39:06','2020-06-17 10:39:06'),(9783,'geography','34.229.135.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:18:07','2020-06-17 11:18:07'),(9784,'economics','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:30','2020-06-17 11:34:32'),(9785,'english','35.174.4.0',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:32','2020-06-17 12:40:24'),(9786,'commerce','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:38:34','2020-06-17 12:38:36'),(9787,'history','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:40:18','2020-06-17 12:40:21'),(9788,'economics','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:13:12','2020-06-17 14:13:12'),(9789,'geography','18.205.18.35',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:36:52','2020-06-17 14:55:05'),(9790,'english','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 15:17:53','2020-06-17 15:17:53'),(9791,'english','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:50','2020-06-17 20:31:50'),(9792,'mathematics','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9793,'biology','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9794,'physics','54.161.200.177',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 21:32:59'),(9795,'chemistry','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9796,'irk','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9797,'civiledu','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9798,'geography','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:59:12','2020-06-17 20:59:12'),(9799,'englishlit','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 22:04:38','2020-06-17 22:04:38'),(9800,'biology','3.80.178.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 23:41:46','2020-06-17 23:41:46'),(9801,'currentaffairs','18.234.191.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 00:56:37','2020-06-18 00:56:37'),(9802,'physics','34.228.64.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 03:47:00','2020-06-18 03:47:00'),(9803,'mathematics','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:16:20','2020-06-18 06:16:20'),(9804,'geography','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:41:02','2020-06-18 06:41:02'),(9805,'mathematics','34.230.69.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 07:24:35','2020-06-18 07:24:35'),(9806,'government','23.20.220.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:17:08','2020-06-18 08:17:08'),(9807,'commerce','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:15','2020-06-18 08:57:15'),(9808,'accounting','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9809,'englishlit','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9810,'geography','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9811,'economics','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9812,'insurance','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9813,'history','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9814,'history','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 09:42:52','2020-06-18 09:42:52'),(9815,'mathematics','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:15:46','2020-06-18 10:15:46'),(9816,'accounting','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:16:19','2020-06-18 10:16:19'),(9817,'accounting','54.210.194.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 22:40:17','2020-06-18 22:40:17'),(9818,'biology','3.80.246.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 23:21:08','2020-06-18 23:21:08'),(9819,'history','54.83.113.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 02:45:33','2020-06-19 02:45:33'),(9820,'accounting','52.90.48.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 06:38:29','2020-06-19 06:38:29'),(9821,'irk','52.201.246.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 08:58:17','2020-06-19 08:58:17'),(9822,'economics','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:17:42','2020-06-19 21:17:42'),(9823,'insurance','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:35:24','2020-06-19 21:35:24'),(9824,'economics','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:10:39','2020-06-19 23:10:39'),(9825,'history','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:30:20','2020-06-19 23:30:20'),(9826,'economics','54.196.106.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 02:31:48','2020-06-20 02:31:48'),(9827,'englishlit','18.233.155.89',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 04:55:13','2020-06-20 04:55:13'),(9828,'history','52.91.173.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 06:51:56','2020-06-20 06:51:56'),(9829,'irk','52.203.62.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 09:34:33','2020-06-20 09:34:33'),(9830,'english','54.87.80.5',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:00:50','2020-06-20 12:00:50'),(9831,'commerce','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:48:20','2020-06-20 13:11:36'),(9832,'mathematics','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:36'),(9833,'biology','54.165.162.104',37,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:12:18'),(9834,'englishlit','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:28'),(9835,'crk','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:33:04'),(9836,'economics','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:17'),(9837,'irk','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:58'),(9838,'civiledu','54.165.162.104',23,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:25'),(9839,'english','54.165.162.104',22,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:11:35'),(9840,'accounting','54.165.162.104',25,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9841,'government','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9842,'insurance','54.165.162.104',14,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:10:29'),(9843,'currentaffairs','54.165.162.104',26,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:12:18'),(9844,'geography','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:42','2020-06-20 13:11:16'),(9845,'physics','54.165.162.104',32,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:46','2020-06-20 13:12:18'),(9846,'history','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:57','2020-06-20 13:12:19'),(9847,'chemistry','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:07:22','2020-06-20 13:10:58'),(9848,'economics','54.145.114.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 16:22:38','2020-06-20 16:22:38'),(9849,'government','18.207.167.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 17:33:28','2020-06-20 17:33:28'),(9850,'chemistry','34.229.200.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 18:50:32','2020-06-20 18:50:32'),(9851,'geography','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 20:55:26','2020-06-20 20:55:26'),(9852,'commerce','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:27:07','2020-06-20 21:27:07'),(9853,'biology','54.234.45.227',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:34:23','2020-06-20 22:01:46'),(9854,'english','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:03:31','2020-06-21 00:03:31'),(9855,'insurance','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:07:20','2020-06-21 00:07:20'),(9856,'crk','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:30:51','2020-06-21 00:30:51'),(9857,'english','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:08:21','2020-06-21 03:08:21'),(9858,'englishlit','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:28:58','2020-06-21 03:28:58'),(9859,'civiledu','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:13:32','2020-06-21 04:13:32'),(9860,'crk','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:36:06','2020-06-21 04:36:06'),(9861,'government','54.227.23.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 10:01:04','2020-06-21 10:01:04'),(9862,'history','18.206.211.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 12:36:25','2020-06-21 12:36:25'),(9863,'physics','3.80.240.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 15:52:13','2020-06-21 15:52:13'),(9864,'englishlit','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:00:57','2020-06-21 17:00:57'),(9865,'english','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:13:38','2020-06-21 17:13:38'),(9866,'currentaffairs','34.238.151.127',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 18:19:01','2020-06-21 18:19:01'),(9867,'crk','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:44:26','2020-06-21 21:44:26'),(9868,'englishlit','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:54:44','2020-06-21 21:54:44'),(9869,'economics','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:08:26','2020-06-21 22:08:26'),(9870,'chemistry','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:33:17','2020-06-21 22:33:17'),(9871,'insurance','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:20:32','2020-06-21 23:20:32'),(9872,'government','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:37:50','2020-06-21 23:37:50'),(9873,'crk','3.84.250.255',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 00:51:48','2020-06-22 00:51:48'),(9874,'geography','54.221.187.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 01:53:56','2020-06-22 01:53:56'),(9875,'english','18.209.110.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 03:40:04','2020-06-22 03:40:04'),(9876,'economics','34.230.36.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 13:54:50','2020-06-22 13:54:50'),(9877,'currentaffairs','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 15:38:47','2020-06-22 15:38:47'),(9878,'civiledu','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 16:11:57','2020-06-22 16:11:57'),(9879,'biology','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:24:35','2020-06-22 18:24:35'),(9880,'english','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:41:12','2020-06-22 18:41:12'),(9881,'accounting','54.90.154.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 20:56:27','2020-06-22 20:56:27'),(9882,'mathematics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9883,'accounting','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9884,'biology','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9885,'economics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9886,'insurance','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9887,'currentaffairs','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9888,'history','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9889,'geography','54.196.101.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 05:30:08','2020-06-23 05:30:08'),(9890,'physics','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:13:29','2020-06-23 09:13:29'),(9891,'government','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:42:29','2020-06-23 09:42:29'),(9892,'englishlit','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 10:04:23','2020-06-23 10:04:23'),(9893,'insurance','35.153.133.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 11:44:24','2020-06-23 11:44:24'),(9894,'crk','34.205.18.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:01:55','2020-06-23 13:07:27'),(9895,'government','34.205.18.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:39:31','2020-06-23 13:39:31'),(9896,'chemistry','41.190.30.186',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-23 14:36:31','2020-06-23 14:36:38'),(9897,'accounting','54.227.55.70',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 18:14:12','2020-06-23 18:14:12'),(9898,'mathematics','18.209.61.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 19:02:39','2020-06-23 19:02:39'),(9899,'geography','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:24:58','2020-06-23 20:24:58'),(9900,'economics','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:45:09','2020-06-23 20:45:09'),(9901,'geography','3.89.130.67',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 21:21:11','2020-06-23 21:21:11'),(9902,'geography','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:28:57','2020-06-23 22:28:57'),(9903,'english','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:39:49','2020-06-23 22:39:49'),(9904,'physics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 02:49:35','2020-06-24 02:49:35'),(9905,'mathematics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 03:07:03','2020-06-24 03:07:03'),(9906,'englishlit','54.158.85.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 04:02:10','2020-06-24 04:02:10'),(9907,'currentaffairs','18.204.209.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 05:53:24','2020-06-24 05:53:24'),(9908,'geography','54.158.151.153',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:14:42','2020-06-24 07:14:42'),(9909,'biology','54.81.22.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:52:37','2020-06-24 07:52:37'),(9910,'physics','34.207.160.124',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 12:25:46','2020-06-24 12:25:46'),(9911,'geography','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:49:47','2020-06-24 14:49:47'),(9912,'mathematics','107.21.199.228',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:55:40','2020-06-24 15:41:17'),(9913,'government','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 15:12:17','2020-06-24 15:12:17'),(9914,'mathematics','54.162.201.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 16:28:06','2020-06-24 16:28:06'),(9915,'accounting','18.206.251.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 04:06:31','2020-06-25 04:06:31'),(9916,'biology','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 05:08:21','2020-06-25 05:08:21'),(9917,'history','3.84.8.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 08:20:25','2020-06-25 08:20:25'),(9918,'history','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:40:28','2020-06-25 09:40:28'),(9919,'english','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:50:38','2020-06-25 09:50:38'),(9920,'accounting','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 12:06:48','2020-06-25 12:06:48'),(9921,'irk','54.234.51.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 14:44:49','2020-06-25 14:44:49'),(9922,'economics','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 02:40:10','2020-06-26 02:40:10'),(9923,'insurance','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 03:05:31','2020-06-26 03:05:31'),(9924,'history','52.90.69.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 05:53:52','2020-06-26 05:53:52'),(9925,'history','34.207.74.169',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 06:38:00','2020-06-26 06:38:00'),(9926,'englishlit','54.91.84.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 08:40:21','2020-06-26 08:40:21'),(9927,'irk','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:42:58','2020-06-26 09:42:58'),(9928,'economics','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:46:26','2020-06-26 09:46:26'),(9929,'commerce','54.175.1.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 12:27:10','2020-06-26 12:27:10'),(9930,'english','3.94.119.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 15:45:31','2020-06-26 15:45:31'),(9931,'crk','18.207.229.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 17:10:47','2020-06-26 17:10:47'),(9932,'accounting','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9933,'biology','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9934,'crk','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9935,'physics','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9936,'economics','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9937,'chemistry','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9938,'irk','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9939,'insurance','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9940,'currentaffairs','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9941,'history','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9942,'history','54.236.208.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9943,'economics','34.205.32.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 20:26:36','2020-06-26 20:26:36'),(9944,'chemistry','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:19:29','2020-06-26 22:19:29'),(9945,'government','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:28:09','2020-06-26 22:28:09'),(9946,'geography','3.87.90.156',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 00:28:07','2020-06-27 00:28:07'),(9947,'crk','35.175.174.168',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 13:22:54','2020-06-27 13:22:54'),(9948,'government','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 18:54:24','2020-06-27 18:54:24'),(9949,'history','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 19:36:24','2020-06-27 19:36:24'),(9950,'mathematics','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:03:20','2020-06-27 20:03:20'),(9951,'physics','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:47:39','2020-06-27 20:47:39'),(9952,'biology','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:49:44','2020-06-27 20:49:44'),(9953,'currentaffairs','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:41:30','2020-06-27 22:47:05'),(9954,'english','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 23:00:09'),(9955,'biology','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 22:47:05'),(9956,'government','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9957,'geography','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9958,'insurance','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9959,'history','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9960,'mathematics','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:08:42','2020-06-27 23:08:42'),(9961,'englishlit','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:16:39','2020-06-27 23:16:39'),(9962,'english','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:05:48','2020-06-28 00:26:33'),(9963,'crk','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:22:50','2020-06-28 00:32:46'),(9964,'insurance','3.90.110.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:16:59','2020-06-28 02:16:59'),(9965,'englishlit','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:55:43','2020-06-28 02:55:43'),(9966,'crk','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:06:30','2020-06-28 03:06:30'),(9967,'chemistry','34.227.105.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:45:11','2020-06-28 03:45:11'),(9968,'economics','54.152.205.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 05:31:01','2020-06-28 05:31:01'),(9969,'geography','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:34:01','2020-06-28 06:34:01'),(9970,'economics','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:52:00','2020-06-28 06:52:00'),(9971,'economics','54.236.22.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 12:40:35','2020-06-28 12:40:35'),(9972,'currentaffairs','100.26.43.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 13:51:22','2020-06-28 13:51:22'),(9973,'mathematics','34.201.45.145',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:38:42','2020-06-28 16:38:42'),(9974,'commerce','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9975,'accounting','34.201.45.145',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:53:13'),(9976,'biology','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9977,'chemistry','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9978,'geography','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9979,'irk','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9980,'insurance','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:23','2020-06-28 16:39:23'),(9981,'english','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9982,'biology','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9983,'physics','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9984,'chemistry','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9985,'englishlit','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9986,'civiledu','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:28'),(9987,'currentaffairs','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:28','2020-06-28 23:19:28'),(9988,'geography','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:24:53','2020-06-29 01:24:53'),(9989,'history','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:51:44','2020-06-29 01:51:44'),(9990,'englishlit','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:10:38','2020-06-29 02:10:38'),(9991,'english','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:15:48','2020-06-29 02:15:48'),(9992,'physics','18.232.165.163',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 05:11:32','2020-06-29 05:11:32'),(9993,'chemistry','35.172.134.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 06:37:11','2020-06-29 06:37:11'),(9994,'chemistry','54.85.126.38',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:18:44','2020-06-29 10:18:44'),(9995,'biology','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:59:34','2020-06-29 10:59:34'),(9996,'accounting','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:24:56','2020-06-29 11:24:56'),(9997,'geography','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:33:40','2020-06-29 11:33:40'),(9998,'mathematics','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:38:46','2020-06-29 11:38:46'),(9999,'mathematics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 13:50:54','2020-06-29 13:50:54'),(10000,'geography','3.84.39.14',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:15:45','2020-06-29 14:49:49'),(10001,'economics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:32:34','2020-06-29 14:32:34'),(10002,'english','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 15:13:58','2020-06-29 15:13:58'),(10003,'mathematics','54.172.215.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 16:01:15','2020-06-29 16:01:15'),(10004,'physics','54.167.221.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 20:53:21','2020-06-29 20:53:21'),(10005,'currentaffairs','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 21:44:22','2020-06-29 21:44:22'),(10006,'englishlit','3.87.114.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 23:55:57','2020-06-29 23:55:57'),(10007,'biology','54.165.2.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 00:45:46','2020-06-30 00:45:46'),(10008,'chemistry','54.166.139.196',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 02:22:51','2020-06-30 02:22:51'),(10009,'physics','3.92.221.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 03:02:17','2020-06-30 03:02:17'),(10010,'mathematics','184.72.82.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 04:50:03','2020-06-30 04:50:03'),(10011,'government','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 06:53:24','2020-06-30 06:53:24'),(10012,'mathematics','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:00:07','2020-06-30 07:00:07'),(10013,'geography','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:09:39','2020-06-30 07:09:39'),(10014,'mathematics','52.202.65.159',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 08:52:07','2020-06-30 08:52:07'),(10015,'history','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:08:39','2020-06-30 09:37:56'),(10016,'accounting','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 10:04:26'),(10017,'physics','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 09:37:55'),(10018,'chemistry','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10019,'englishlit','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10020,'irk','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10021,'civiledu','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10022,'english','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:00','2020-06-30 15:33:00'),(10023,'commerce','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10024,'accounting','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10025,'chemistry','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10026,'government','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10027,'geography','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10028,'civiledu','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10029,'accounting','52.55.83.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 17:10:09','2020-06-30 17:10:09'),(10030,'biology','54.89.237.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:04:39','2020-06-30 19:04:39'),(10031,'commerce','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10032,'accounting','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10033,'chemistry','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10034,'irk','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10035,'civiledu','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10036,'insurance','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10037,'currentaffairs','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10038,'biology','54.234.3.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 20:15:32','2020-06-30 20:15:32'),(10039,'history','34.227.88.114',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 21:38:23','2020-06-30 21:38:23'),(10040,'history','54.86.39.12',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 22:33:09','2020-06-30 22:33:09'),(10041,'accounting','54.172.57.23',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 01:19:58','2020-07-01 01:19:58'),(10042,'irk','3.86.160.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 04:51:36','2020-07-01 04:51:36'),(10043,'chemistry','54.91.179.155',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 08:07:07','2020-07-01 08:07:07'),(10044,'physics','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 10:50:24','2020-07-01 10:50:24'),(10045,'economics','23.20.242.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 11:31:17','2020-07-01 11:31:17'),(10046,'insurance','54.87.197.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 12:53:01','2020-07-01 12:53:01'),(10047,'economics','3.91.214.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 14:03:22','2020-07-01 14:03:22'),(10048,'history','54.84.225.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 15:25:35','2020-07-01 15:25:35'),(10049,'history','3.94.169.218',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 16:02:27','2020-07-01 16:02:27'),(10050,'economics','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 17:46:59','2020-07-01 17:46:59'),(10051,'irk','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:20:57','2020-07-01 18:20:57'),(10052,'englishlit','54.84.229.165',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:58:33','2020-07-01 18:58:33'),(10053,'commerce','34.228.230.135',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 00:24:39','2020-07-02 00:24:39'),(10054,'english','52.91.78.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 01:41:45','2020-07-02 01:41:45'),(10055,'crk','184.72.205.154',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 02:39:16','2020-07-02 02:39:16'),(10056,'economics','52.91.54.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 04:40:45','2020-07-02 04:40:45'),(10057,'chemistry','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:11:03','2020-07-02 06:11:03'),(10058,'government','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:42:32','2020-07-02 06:42:32'),(10059,'government','34.239.131.100',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:04:51','2020-07-02 08:04:51'),(10060,'economics','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:41:05','2020-07-02 08:41:05'),(10061,'commerce','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:56:42','2020-07-02 08:56:42'),(10062,'geography','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:38:08','2020-07-02 09:38:08'),(10063,'biology','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:54:27','2020-07-02 09:54:27'),(10064,'crk','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:13:25','2020-07-02 11:13:25'),(10065,'insurance','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:14:35','2020-07-02 11:14:35'),(10066,'english','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:36:17','2020-07-02 11:36:17'),(10067,'english','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:32:13','2020-07-02 14:32:13'),(10068,'englishlit','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:43:14','2020-07-02 14:43:14'),(10069,'crk','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:08:57','2020-07-02 15:08:57'),(10070,'civiledu','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:35:16','2020-07-02 15:35:16'),(10071,'physics','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:42:25','2020-07-02 15:42:25'),(10072,'economics','54.234.26.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 16:32:16','2020-07-02 16:32:16'),(10073,'crk','34.201.40.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 17:47:14','2020-07-02 17:47:14'),(10074,'history','54.164.23.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 21:46:06','2020-07-02 21:46:06'),(10075,'government','3.84.186.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 22:58:39','2020-07-02 22:58:39'),(10076,'physics','18.208.193.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:11:53','2020-07-03 00:11:53'),(10077,'biology','54.160.208.244',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:48:21','2020-07-03 00:48:21'),(10078,'englishlit','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:15:26','2020-07-03 02:15:26'),(10079,'english','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:23:09','2020-07-03 02:23:09'),(10080,'currentaffairs','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:26:38','2020-07-03 04:26:38'),(10081,'insurance','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:57:52','2020-07-03 04:57:52'),(10082,'englishlit','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:03:51','2020-07-03 05:03:51'),(10083,'economics','54.172.4.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:40:21','2020-07-03 05:40:21'),(10084,'crk','204.236.197.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:18:22','2020-07-03 06:18:22'),(10085,'chemistry','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:58:20','2020-07-03 06:58:20'),(10086,'economics','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 07:05:43','2020-07-03 07:05:43'),(10087,'government','34.235.117.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:09:45','2020-07-03 08:09:45'),(10088,'crk','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:52:38','2020-07-03 08:52:38'),(10089,'geography','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 09:01:32','2020-07-03 09:01:32'),(10090,'english','54.144.92.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 11:49:20','2020-07-03 11:49:20'),(10091,'currentaffairs','54.89.189.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 21:42:09','2020-07-03 21:42:09'),(10092,'civiledu','54.91.226.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 22:22:22','2020-07-03 22:22:22'),(10093,'english','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:22:03','2020-07-04 00:22:03'),(10094,'biology','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:38:50','2020-07-04 00:38:50'),(10095,'history','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:48:34','2020-07-04 01:48:34'),(10096,'accounting','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:56:25','2020-07-04 01:56:25'),(10097,'history','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:54','2020-07-04 06:18:57'),(10098,'english','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:57','2020-07-04 06:19:00'),(10099,'mathematics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10100,'accounting','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10101,'physics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10102,'englishlit','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10103,'crk','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10104,'geography','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10105,'civiledu','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10106,'history','54.162.152.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 09:43:19','2020-07-04 09:43:19'),(10107,'geography','3.93.171.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 10:35:06','2020-07-04 10:35:06'),(10108,'english','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:36:34','2020-07-04 11:36:34'),(10109,'englishlit','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:38:05','2020-07-04 11:38:05'),(10110,'crk','3.81.50.112',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 15:36:29','2020-07-04 15:36:29'),(10111,'physics','34.224.81.74',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 16:13:25','2020-07-04 16:13:25'),(10112,'mathematics','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:24:26','2020-07-04 19:24:26'),(10113,'biology','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:58:10','2020-07-04 19:58:10'),(10114,'geography','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:24:53','2020-07-04 20:24:53'),(10115,'accounting','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:51:26','2020-07-04 20:51:26'),(10116,'geography','54.152.35.97',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:04:02','2020-07-04 22:04:02'),(10117,'mathematics','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:51:02','2020-07-04 22:51:02'),(10118,'geography','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:11:06','2020-07-04 23:11:06'),(10119,'english','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:13:22','2020-07-04 23:13:22'),(10120,'mathematics','184.72.78.80',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 00:30:41','2020-07-05 00:30:41'),(10121,'physics','18.234.140.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 03:22:51','2020-07-05 03:22:51'),(10122,'englishlit','54.81.208.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 04:42:18','2020-07-05 04:42:18'),(10123,'currentaffairs','3.92.239.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 05:50:06','2020-07-05 05:50:06'),(10124,'biology','3.94.250.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 07:05:26','2020-07-05 07:05:26'),(10125,'mathematics','18.234.172.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 10:56:25','2020-07-05 10:56:25'),(10126,'history','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:16:14','2020-07-05 14:16:14'),(10127,'accounting','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:18:21','2020-07-05 14:18:21'),(10128,'government','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:30','2020-07-05 18:09:38'),(10129,'insurance','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:32','2020-07-05 18:09:42'),(10130,'mathematics','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:34','2020-07-05 18:09:46'),(10131,'chemistry','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:36','2020-07-05 18:09:40'),(10132,'englishlit','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:44','2020-07-05 18:09:48'),(10133,'accounting','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:50','2020-07-05 18:09:52'),(10134,'accounting','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:25:43','2020-07-05 23:25:43'),(10135,'mathematics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10136,'commerce','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10137,'physics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10138,'chemistry','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10139,'economics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10140,'civiledu','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10141,'currentaffairs','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:09','2020-07-05 23:26:09'),(10142,'biology','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:48:59','2020-07-05 23:48:59'),(10143,'biology','100.24.36.11',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 01:28:52','2020-07-06 01:28:52'),(10144,'history','18.206.244.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 03:18:07','2020-07-06 03:18:07'),(10145,'history','54.89.235.4',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 04:39:50','2020-07-06 04:39:50'),(10146,'accounting','3.86.51.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 05:43:10','2020-07-06 05:43:10'),(10147,'physics','3.82.188.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 10:53:25','2020-07-06 10:53:25'),(10148,'physics','54.157.235.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 15:25:50','2020-07-06 15:25:50'),(10149,'economics','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:18:01','2020-07-06 16:18:01'),(10150,'insurance','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:25:30','2020-07-06 16:25:30'),(10151,'commerce','3.81.6.59',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 17:19:24','2020-07-06 17:19:24'),(10152,'economics','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:18:54','2020-07-06 18:18:54'),(10153,'history','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:49:09','2020-07-06 18:49:09'),(10154,'history','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 20:27:09','2020-07-06 20:27:09'),(10155,'economics','3.93.171.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 22:14:21','2020-07-06 22:14:21'),(10156,'irk','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:20:52','2020-07-06 23:20:52'),(10157,'englishlit','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:45:32','2020-07-06 23:45:32'),(10158,'commerce','18.207.123.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 03:59:46','2020-07-07 03:59:46'),(10159,'english','3.88.230.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 05:07:19','2020-07-07 05:07:19'),(10160,'economics','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:15:10','2020-07-07 09:15:10'),(10161,'government','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:48:39','2020-07-07 09:48:39'),(10162,'chemistry','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 10:12:14','2020-07-07 10:12:14'),(10163,'government','54.221.150.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 11:33:19','2020-07-07 11:33:19'),(10164,'commerce','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:34','2020-07-07 12:23:34'),(10165,'economics','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:36','2020-07-07 12:23:36'),(10166,'biology','52.23.160.61',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:46:17','2020-07-07 13:24:15'),(10167,'geography','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:14:39','2020-07-07 13:14:39'),(10168,'currentaffairs','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:17:34','2020-07-07 13:17:34'),(10169,'insurance','54.152.5.128',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:14:12','2020-07-07 16:33:40'),(10170,'accounting','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:28:51','2020-07-07 14:36:55'),(10171,'commerce','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:31:07','2020-07-07 16:33:39'),(10172,'civiledu','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:34:07','2020-07-07 16:33:40'),(10173,'irk','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:47:28','2020-07-07 16:04:09'),(10174,'english','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:08:10','2020-07-07 15:08:10'),(10175,'crk','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:12:21','2020-07-07 15:12:21'),(10176,'currentaffairs','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:48:43','2020-07-07 16:00:50'),(10177,'chemistry','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:26:23','2020-07-07 16:45:13'),(10178,'englishlit','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:39','2020-07-07 16:33:39'),(10179,'economics','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10180,'history','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10181,'englishlit','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:11:13','2020-07-07 18:11:13'),(10182,'physics','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:38:18','2020-07-07 18:38:18'),(10183,'english','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:09:59','2020-07-07 19:09:59'),(10184,'civiledu','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:24:15','2020-07-07 19:24:15'),(10185,'crk','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:42:39','2020-07-07 19:42:39'),(10186,'crk','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 20:43:43','2020-07-07 20:43:43'),(10187,'economics','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 21:02:06','2020-07-07 21:02:06'),(10188,'crk','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:06:52','2020-07-07 23:06:52'),(10189,'mathematics','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:08:47','2020-07-07 23:08:47'),(10190,'history','54.235.227.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 00:51:52','2020-07-08 00:51:52'),(10191,'commerce','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:13'),(10192,'chemistry','54.224.19.167',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:17:55'),(10193,'englishlit','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:09'),(10194,'crk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:10'),(10195,'irk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:00'),(10196,'civiledu','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:06'),(10197,'currentaffairs','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:02'),(10198,'biology','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:26:00','2020-07-08 04:26:00'),(10199,'government','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:49:34','2020-07-08 04:49:34'),(10200,'physics','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 05:13:41','2020-07-08 05:13:41'),(10201,'englishlit','54.86.107.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:13:13','2020-07-08 06:13:13'),(10202,'currentaffairs','54.162.112.134',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:54:34','2020-07-08 06:54:34'),(10203,'englishlit','41.80.97.238',80,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-07-08 07:25:57','2020-07-08 07:28:00'),(10204,'crk','54.82.43.186',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 07:45:34','2020-07-08 07:45:34'),(10205,'englishlit','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:21:52','2020-07-08 09:21:52'),(10206,'insurance','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:44:49','2020-07-08 09:44:49'),(10207,'chemistry','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:54:11','2020-07-08 09:54:11'),(10208,'economics','52.91.173.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 10:49:13','2020-07-08 10:49:13'),(10209,'government','54.80.100.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 11:30:37','2020-07-08 11:30:37'),(10210,'crk','54.158.254.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:24:11','2020-07-08 12:24:11'),(10211,'english','18.207.151.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:58:44','2020-07-08 12:58:44'),(10212,'geography','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:02:59','2020-07-08 14:02:59'),(10213,'economics','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:07','2020-07-08 14:33:07'),(10214,'english','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:48','2020-07-08 14:33:48'),(10215,'commerce','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10216,'chemistry','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10217,'englishlit','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10218,'government','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10219,'economics','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10220,'insurance','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10221,'currentaffairs','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10222,'chemistry','212.7.216.22',41,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:34','2020-07-08 18:09:03'),(10223,'biology','212.7.216.22',42,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:53','2020-07-08 18:09:33'),(10224,'crk','212.7.216.22',40,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:11:50','2020-07-08 18:11:53'),(10225,'accounting','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 00:35:57','2020-07-09 00:35:57'),(10226,'currentaffairs','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:01:51','2020-07-09 01:01:51'),(10227,'civiledu','3.92.165.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:53:39','2020-07-09 01:53:39'),(10228,'biology','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:43:43','2020-07-09 03:43:43'),(10229,'english','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:48:40','2020-07-09 03:48:40'),(10230,'accounting','54.166.150.192',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 04:46:10','2020-07-09 04:46:10'),(10231,'insurance','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:51:46','2020-07-09 07:51:46'),(10232,'accounting','18.212.91.129',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:26','2020-07-09 07:52:33'),(10233,'englishlit','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:27','2020-07-09 07:52:27'),(10234,'english','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:28','2020-07-09 07:52:28'),(10235,'history','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:38','2020-07-09 07:52:38'),(10236,'geography','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:17:51','2020-07-09 15:17:51'),(10237,'history','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:21:14','2020-07-09 15:21:14'),(10238,'englishlit','3.85.20.113',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 16:51:17','2020-07-09 16:51:17'),(10239,'government','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:25:48','2020-07-09 17:25:48'),(10240,'english','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:47:06','2020-07-09 17:47:06'),(10241,'insurance','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 18:54:52','2020-07-09 18:54:52'),(10242,'physics','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 19:28:45','2020-07-09 19:28:45'),(10243,'crk','3.92.73.237',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 20:40:38','2020-07-09 20:40:38'),(10244,'biology','3.89.195.91',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:11:30','2020-07-10 00:11:30'),(10245,'mathematics','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:54:45','2020-07-10 00:54:45'),(10246,'geography','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 01:07:34','2020-07-10 01:07:34'),(10247,'accounting','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:08:59','2020-07-10 03:08:59'),(10248,'geography','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:12:39','2020-07-10 03:12:39'),(10249,'mathematics','34.229.218.101',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:56:28','2020-07-10 04:19:24'),(10250,'english','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:57:59','2020-07-10 03:57:59'),(10251,'geography','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 04:00:44','2020-07-10 04:00:44'),(10252,'physics','52.207.226.86',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 07:22:18','2020-07-10 07:22:18'),(10253,'englishlit','100.26.198.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 08:32:27','2020-07-10 08:32:27'),(10254,'currentaffairs','34.207.220.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 09:37:56','2020-07-10 09:37:56'),(10255,'biology','34.201.217.57',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 13:17:48','2020-07-10 13:17:48'),(10256,'mathematics','34.201.82.215',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:30:23','2020-07-10 17:26:20'),(10257,'government','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:49:19','2020-07-10 16:49:19'),(10258,'geography','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:57:20','2020-07-10 16:57:20'),(10259,'mathematics','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:29:32','2020-07-10 18:29:32'),(10260,'history','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:38:27','2020-07-10 18:38:27'),(10261,'accounting','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:51:34','2020-07-10 18:51:34'),(10262,'accounting','54.88.28.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 03:49:42','2020-07-11 03:49:42'),(10263,'biology','18.212.149.169',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 05:05:51','2020-07-11 05:05:51'),(10264,'history','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:21:44','2020-07-11 07:21:44'),(10265,'biology','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:43:14','2020-07-11 07:43:14'),(10266,'history','52.207.241.232',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 09:22:36','2020-07-11 09:22:36'),(10267,'english','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:03:15','2020-07-11 11:03:15'),(10268,'accounting','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:05:18','2020-07-11 11:05:18'),(10269,'chemistry','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 12:39:00','2020-07-11 12:39:02'),(10270,'mathematics','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:50:40','2020-07-11 13:50:43'),(10271,'english','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:52:41','2020-07-11 13:52:43'),(10272,'physics','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:54:53','2020-07-11 13:54:56'),(10273,'irk','3.87.253.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 13:57:22','2020-07-11 13:57:22'),(10274,'biology','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:58:09','2020-07-11 13:58:11'),(10275,'commerce','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:00:45','2020-07-11 14:00:47'),(10276,'accounting','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:02:26','2020-07-11 14:02:30'),(10277,'commerce','197.210.53.65',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:07:24','2020-07-11 14:07:27'),(10278,'biology','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:09:29','2020-07-11 14:09:31'),(10279,'englishlit','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:11:03','2020-07-11 14:11:06'),(10280,'government','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:12:42','2020-07-11 14:12:44'),(10281,'crk','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:14:42','2020-07-11 14:14:45'),(10282,'geography','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:16:22','2020-07-11 14:16:25'),(10283,'economics','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:18:03','2020-07-11 14:18:06'),(10284,'irk','197.210.53.29',30,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:19:52','2020-07-11 14:19:54'),(10285,'civiledu','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:21:54','2020-07-11 14:21:56'),(10286,'insurance','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:24:40','2020-07-11 14:24:42'),(10287,'currentaffairs','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:30:13','2020-07-11 14:30:16'),(10288,'history','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:31:59','2020-07-11 14:32:02'),(10289,'chemistry','129.205.113.79',4400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-11 14:33:08','2020-07-13 03:19:10'),(10290,'english','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:49'),(10291,'commerce','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:47:21'),(10292,'accounting','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:31'),(10293,'civiledu','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:49:01'),(10294,'insurance','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:09'),(10295,'currentaffairs','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:19'),(10296,'history','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:26'),(10297,'mathematics','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:15:58','2020-07-11 23:15:58'),(10298,'chemistry','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:21:17','2020-07-11 23:21:17'),(10299,'insurance','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:48:13','2020-07-11 23:48:13'),(10300,'english','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:09:33','2020-07-12 00:09:33'),(10301,'economics','3.82.54.117',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:10:41','2020-07-12 00:29:04'),(10302,'history','3.88.228.30',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 01:17:11','2020-07-12 01:17:11'),(10303,'history','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:50:23','2020-07-12 02:50:23'),(10304,'chemistry','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:58:58','2020-07-12 02:58:58'),(10305,'mathematics','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 03:10:59','2020-07-12 03:10:59'),(10306,'economics','3.87.92.43',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 04:42:49','2020-07-12 04:42:49'),(10307,'englishlit','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 05:52:03','2020-07-12 05:52:03'),(10308,'irk','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 06:21:53','2020-07-12 06:21:53'),(10309,'commerce','54.163.60.37',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 10:46:43','2020-07-12 10:46:43'),(10310,'english','3.94.101.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 12:43:58','2020-07-12 12:43:58'),(10311,'mathematics','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 14:59:40','2020-07-12 14:59:40'),(10312,'english','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:00:14','2020-07-12 15:00:14'),(10313,'chemistry','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:07:58','2020-07-12 15:07:58'),(10314,'economics','34.227.46.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 16:40:51','2020-07-12 16:40:51'),(10315,'chemistry','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:39:39','2020-07-12 17:39:39'),(10316,'english','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:54:55','2020-07-12 17:54:55'),(10317,'mathematics','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 18:17:06','2020-07-12 18:17:06'),(10318,'government','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:17:30','2020-07-12 19:17:30'),(10319,'geography','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:43:56','2020-07-12 19:43:56'),(10320,'biology','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:30:00','2020-07-12 20:30:00'),(10321,'commerce','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:32:43','2020-07-12 20:32:43'),(10322,'economics','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:03','2020-07-12 22:04:03'),(10323,'insurance','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:33','2020-07-12 22:04:33'),(10324,'crk','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:43:42','2020-07-12 22:43:42'),(10325,'english','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:02:31','2020-07-12 23:02:31'),(10326,'mathematics','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:14:52','2020-07-12 23:14:52'),(10327,'english','129.205.113.79',5320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-13 00:22:00','2020-07-13 03:18:50'),(10328,'mathematics','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:25','2020-07-13 03:18:54'),(10329,'commerce','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:30','2020-07-13 03:18:57'),(10330,'accounting','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:34','2020-07-13 03:19:00'),(10331,'biology','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:37','2020-07-13 03:19:03'),(10332,'physics','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:40','2020-07-13 03:19:07'),(10333,'englishlit','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:47','2020-07-13 03:19:13'),(10334,'government','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:09','2020-07-13 03:19:16'),(10335,'crk','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:12','2020-07-13 03:19:20'),(10336,'geography','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:16','2020-07-13 03:19:23'),(10337,'economics','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:19','2020-07-13 03:19:26'),(10338,'irk','129.205.113.79',3180,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:22','2020-07-13 03:19:29'),(10339,'civiledu','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:24','2020-07-13 03:18:24'),(10340,'insurance','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:28','2020-07-13 03:18:27'),(10341,'currentaffairs','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:24','2020-07-13 03:18:30'),(10342,'history','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:28','2020-07-13 03:18:40'),(10343,'civiledu','54.234.157.166',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:28:47','2020-07-13 02:28:47'),(10344,'physics','54.234.157.166',3,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:48:14','2020-07-13 02:57:04'),(10345,'biology','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10346,'chemistry','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10347,'englishlit','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10348,'government','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10349,'currentaffairs','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10350,'history','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10351,'englishlit','54.208.167.162',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 03:42:04','2020-07-13 03:42:04'),(10352,'economics','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:26:48','2020-07-13 04:26:48'),(10353,'crk','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:32:06','2020-07-13 04:32:06'),(10354,'mathematics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10355,'commerce','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10356,'biology','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10357,'government','3.83.177.66',3,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 07:20:14','2020-07-13 07:20:15'),(10358,'crk','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10359,'economics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10360,'insurance','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10361,'mathematics','52.70.110.88',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:58:11','2020-07-13 07:58:11'),(10362,'history','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 08:43:27','2020-07-13 08:43:27'),(10363,'crk','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 09:16:49','2020-07-13 09:16:49'),(10364,'government','35.173.241.103',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 12:01:52','2020-07-13 12:01:52'),(10365,'biology','35.173.241.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 12:19:03','2020-07-13 12:19:03'),(10366,'physics','3.80.67.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 13:51:28','2020-07-13 13:51:28'),(10367,'english','3.80.67.43',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 14:26:17','2020-07-13 14:33:36'),(10368,'currentaffairs','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:37:38','2020-07-13 15:37:38'),(10369,'englishlit','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:58:51','2020-07-13 15:58:51'),(10370,'crk','3.88.24.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 17:12:19','2020-07-13 17:12:19'),(10371,'insurance','3.88.24.28',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 17:29:37','2020-07-13 17:29:37'),(10372,'chemistry','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:17:46','2020-07-13 18:17:46'),(10373,'englishlit','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:33:29','2020-07-13 18:33:29'),(10374,'government','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:07:04','2020-07-13 20:07:04'),(10375,'crk','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:37:11','2020-07-13 20:37:11'),(10376,'economics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:39:05','2020-07-13 20:39:05'),(10377,'geography','18.207.196.180',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 21:02:47','2020-07-13 21:02:47'),(10378,'mathematics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 21:10:43','2020-07-13 21:10:43'),(10379,'english','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10380,'commerce','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10381,'accounting','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10382,'physics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10383,'economics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10384,'civiledu','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10385,'insurance','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10386,'english','3.90.9.102',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 22:41:54','2020-07-13 22:56:29'),(10387,'english','129.205.124.79',3480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:25:59','2020-07-14 02:30:06'),(10388,'mathematics','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:02','2020-07-14 02:30:10'),(10389,'commerce','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:06','2020-07-14 02:30:15'),(10390,'accounting','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:09','2020-07-14 02:30:18'),(10391,'biology','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:12','2020-07-14 02:30:22'),(10392,'physics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:16','2020-07-14 02:30:26'),(10393,'chemistry','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:19','2020-07-14 02:30:30'),(10394,'englishlit','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:22','2020-07-14 02:30:34'),(10395,'government','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:26','2020-07-14 02:30:39'),(10396,'crk','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:29','2020-07-14 02:30:43'),(10397,'geography','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:33','2020-07-14 02:30:47'),(10398,'economics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:36','2020-07-14 02:30:51'),(10399,'irk','129.205.124.79',2490,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:41','2020-07-14 02:29:45'),(10400,'civiledu','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:44','2020-07-14 02:29:50'),(10401,'insurance','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:47','2020-07-14 02:29:54'),(10402,'currentaffairs','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:50','2020-07-14 02:29:58'),(10403,'history','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:54','2020-07-14 02:30:02'),(10404,'mathematics','3.86.112.201',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 06:09:14','2020-07-14 06:09:14'),(10405,'economics','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 07:28:22','2020-07-14 07:28:22'),(10406,'english','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 08:04:24','2020-07-14 08:04:24'),(10407,'chemistry','129.205.113.93',443,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-14 09:05:47','2020-07-14 13:21:22'),(10408,'physics','129.205.113.93',212,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 09:08:38','2020-07-14 15:34:58'),(10409,'english','129.205.113.93',939,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:08:42','2020-07-14 14:50:30'),(10410,'currentaffairs','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:07','2020-07-14 10:09:07'),(10411,'mathematics','129.205.113.93',121,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:52','2020-07-14 15:32:06'),(10412,'commerce','129.205.113.93',1891,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:15:00','2020-07-14 15:55:42'),(10413,'biology','129.205.113.93',534,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:20:01','2020-07-14 13:14:00'),(10414,'englishlit','129.205.113.93',508,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:22:39','2020-07-14 15:00:25'),(10415,'government','129.205.113.93',1091,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:23:37','2020-07-14 15:55:56'),(10416,'civiledu','129.205.113.93',577,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:38:09','2020-07-14 13:42:59'),(10417,'crk','129.205.113.93',1240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:40:26','2020-07-14 14:22:30'),(10418,'economics','129.205.113.93',899,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:41:55','2020-07-14 14:38:54'),(10419,'civiledu','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:43:55','2020-07-14 10:43:55'),(10420,'geography','129.205.113.93',316,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:51:07','2020-07-14 15:05:11'),(10421,'insurance','129.205.113.93',471,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:54:35','2020-07-14 15:30:53'),(10422,'irk','129.205.113.93',50,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:58:36','2020-07-14 15:36:02'),(10423,'currentaffairs','129.205.113.93',63,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:59:48','2020-07-14 15:37:11'),(10424,'accounting','129.205.113.93',682,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:30:09','2020-07-14 13:33:35'),(10425,'history','129.205.113.93',67,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:33:06','2020-07-14 15:23:11'),(10426,'accounting','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:37:00','2020-07-14 12:37:00'),(10427,'english','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:39:37','2020-07-14 12:39:37'),(10428,'history','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:06:47','2020-07-14 13:06:47'),(10429,'biology','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:31:56','2020-07-14 13:31:56'),(10430,'mathematics','18.234.46.151',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 15:02:11','2020-07-14 15:02:11'),(10431,'english','54.90.207.165',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 18:07:02','2020-07-14 18:07:02'),(10432,'commerce','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10433,'physics','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10434,'chemistry','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10435,'englishlit','34.229.179.114',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10436,'government','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10437,'insurance','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10438,'currentaffairs','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:53','2020-07-14 19:16:53'),(10439,'geography','18.208.128.143',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 22:14:45','2020-07-14 22:14:45'),(10440,'english','3.95.191.40',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 23:24:07','2020-07-14 23:24:07'),(10441,'history','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 23:41:01','2020-07-14 23:41:01'),(10442,'mathematics','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:06:33','2020-07-15 00:06:33'),(10443,'englishlit','3.87.215.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:46:37','2020-07-15 00:46:37'),(10444,'insurance','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 03:51:06','2020-07-15 03:51:06'),(10445,'english','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 04:09:32','2020-07-15 04:09:32'),(10446,'crk','3.81.221.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 05:08:09','2020-07-15 05:08:09'),(10447,'chemistry','3.88.132.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:07:35','2020-07-15 08:07:35'),(10448,'mathematics','54.147.235.60',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:53:27','2020-07-15 09:41:51'),(10449,'crk','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:02:40','2020-07-15 09:02:40'),(10450,'biology','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:28:35','2020-07-15 09:28:35'),(10451,'physics','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:31:51','2020-07-15 09:31:51'),(10452,'geography','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:32:08','2020-07-15 10:32:08'),(10453,'accounting','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:38:37','2020-07-15 10:38:37'),(10454,'geography','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 11:56:02','2020-07-15 12:59:45'),(10455,'mathematics','3.83.193.244',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:33:30'),(10456,'commerce','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10457,'accounting','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10458,'englishlit','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10459,'crk','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10460,'civiledu','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10461,'insurance','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10462,'english','3.81.39.121',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 14:04:24','2020-07-15 14:04:24');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `biology` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=385 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `biology` VALUES (1,'In the egg of bird, the embryo is located in the','Chalaza','Yolk  ','albumen  ','embryo','','','d','','utme','2003',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:03'),(2,'One distinctive feature in the life history  of liverworts is that they exhibit','alternation of generation  ','vegetative reproduction  ','sexual reproduction','sexual reproduction','','','a','','utme','2003',184,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:04'),(3,'The umbrella-shaped fruiting body of a fully developed mushroom is the','pileus  ','Mycelium','basidium  ','Stipe','','','a','','utme','2003',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:05'),(4,'The similarly  among organisms belonging to the same group will be least within each','family  ','order  ','kingdom   ','species','','','c','','utme','2003',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:06'),(5,'Hermaphroditic reproduction can be found among the','arthropods and nematodes  ','Pisces and amphibians   ','annelids and molluscs','coelenterates and  platyghelminthes','','','d','','utme','2003',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:07'),(6,'An insect whose economic importance is both harmful and beneficial is the','tests fly  ','black','mosquito   ','butterfly','','','d','','utme','2003',183,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(7,'The cell component that is present in a prokaryotic cell is the','chloroplast   ','ribosome','mitochondrion   ','nuclear envelope','','','b','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:09'),(8,'The stunted group of a leguminous plant suffering from nitrogen deficiency may be corrected by inoculating the soil with','denitrifying bacteria  ','saprophytic bacteria','Rhizobium   ','nitrosomonas','','','c','','utme','2003',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:10'),(9,'If water that has been coloured red is poured at the base of a wilting plant, it will appear as a red stain in the cells of','Xylem  ',' epidermis  ','phloem  ','parench','','','a','','utme','2003',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:10'),(10,'The dark reaction of photosynthesis involves the  ','reduction of carbon (IV) oxides to organic compounds  ','release of oxygen and the splitting of water','photolysis of water and the production of starch  ','splitting of water into hydrogen ions.','','','a','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:11'),(11,'Organisms I, II, III and IV have surface volume ratios  of 1:2, 1:3, 1:4, 1:5, respectively. The organism that is likely to have the most complex transport system is','IV','III  ','I  ','II','','','a','','utme','2003',152,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:12'),(12,'The part of the mammalian digestive  system where absorption of nutrients takes place is the','ileum  ','colon  ','esophagus  ','duodenum','','','a','','utme','2003',167,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:13'),(13,'The best method of propagating sugarcane by','seed sowing  ','layering','grafting  ','stem cuttings','','','d','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:14'),(14,'In mammalian males, the excretory and reproductive  systems share the','ureter     ','vas deferens  ','urethra  ','Testes.','','','c','','utme','2003',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:26'),(15,'Metabolic production of urea is carried out in the','Urinary bladder and kidney','liver   ','pancreas  ','kidney and malphigian tubule','','','b','','utme','2003',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:27'),(16,'The structure can be found in the','sympathetic and parasympathetic nervous systems  ','peripheral and central nervous systems','peripheral nervous system only  ','central nervous system only','','','b','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:28'),(17,'The point marked I is referred to as  ','myelin sheath','dendrites  ','axon  ','node of Ranvier','','','d','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:29'),(18,'Homologous pairs of chromosomes separate during','cytolysis   ','cleavage','mitosis  ','Meiosis','','','d','','utme','2003',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:30'),(19,'An example of a caryopsis is','guava   ','maize grain','coconut','tomato','','','b','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:31'),(20,'The response of plants to external stimuli in a non-directional manner is known as ','tactic movement','phototropism  ','geotropism','nastic  movement','','','d','','utme','2003',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:32'),(21,'The most important hormone that induces the ripening of fruit is','ethylene  ','indole acetic acid','gibberellin  ','cytokinin','','','a','','utme','2003',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:33'),(22,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','a','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:34'),(23,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','c','','utme','2003',195,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:35'),(24,'One example of fossil fuel is','limestone  ','coral  ','coal  ','firewood','','','b','','utme','2003',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:36'),(25,'The most effective method of dealing with non-gradable pollutants by  \\\\','dumping  ','recycling  ','incineration  ','Burying','','','d','','utme','2003',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:37'),(26,'The correct sequence of biomes from northern to southern Nigeria is','gulnea savanna _ sudan savanna_ tropical rain forest_ sahel savanna_eetuarine  ','estuarine_tripical rainforest_guinea savanna _ sahel_ savanna  ','sahel savanna_ tropical_rain forest_ estuarine _guinea savanna','sahel savanna_sudan savanna_guinea savanna _tropical rain forest_estuarine','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(27,'Mycorrhiza is an association  between fungi and','protozoans','roots of higher plants','bacteria','filamentous algae','','','d','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:39'),(28,'A limiting factor in a plant population near a chemical factory is likely to be','light  ','humidity  ','wind  ','PH.','','','d','','utme','2003',200,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:40'),(29,'Soil fertility can best be conserved and renewed by the activities of','earthworms  ','man  ','rodents  ','microbes','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:40'),(30,'The pioneer organism in ecological  succession are usually the','mosses  ','lichens  ','ferns','Algae','','','d','','utme','2003',196,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:42'),(31,'If a DNA strand has a base sequence TCA, its complementary strand must be','ATG  ','TAG','GAT  ','AGT','','','d','','utme','2003',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:42'),(32,'A man and his wife are both heterozygous for the sickle cell trait. The likely percentage of their offspring that will be either carriers of sicklers is','75%','50%','25%','100%','','','d','','utme','2003',219,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:43'),(33,'If the pair of alleles for baidness is given as Bb, a female carrier will be denoted by','XbY   ','XBXB  ','XBY','XBXb','','','a','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:45'),(34,'An organ  that has been extensively used to test the chromosome theory of heredity is','Drosophila   melanogaster','Muscat domestic  ','Zea mays  ','homo sapiens','','','c','','utme','2003',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:46'),(35,'A feature association with the Y- chromosome in humans is  ','Drosophila melanogaster','prominent fingernails  ','facial hairs  ','enlarged breast','','','b','','utme','2003',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:47'),(36,'The type of reproduction that leads to variation in animal and plant population is','  budding',' sexual','vegatative','asexual','','','a','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:48'),(37,'An insect with a mandibulate  mouth part will obtain its food by','biting and chewing   ','chewing and sucking  ','chewing  ','Sucking','','','c','','utme','2003',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:49'),(38,'An argument against Lamarck’s theory of evolution is that  ','disuse of  body part cannot weaken the part  ','disused part is dropped off in the offspring  ','acquired traits cannot be passed onto the offspring  ','traits cannot be acquired through constant use of body parts','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:50'),(39,'Spines and shells on animals are adaptations for','camouflage  ','chemical defence','physical defence  ','mimicry','','','c','','utme','2003',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:51'),(40,'An example of cryptic colouration is the','mottled colours on moths that rest o lichens  ','bright colour of an insect pollinated flower','green colour of a plant  ','bright marks on a poisonous tropical frog on variegated  leaves','','','d','','utme','2003',155,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:52'),(41,'Which of the following requires the use of carbon dating to prove that evolution has occurred?  ','comparative anatomy  ','biochemical similarities   ','molecular records','fossil records','','','d','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:53'),(42,'The inactive state exhibited by an animal during hot dry seasons is termed  ','aestivation','dormancy  ','resting','Hibernation','','','a','','utme','2003',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:53'),(43,'The rods in the retina of the eye are examples of','cells   ','Tissues  ','organs  ','systems','','','a','','utme','2004',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:54'),(44,'The absence of special food and water-conducting systems  restricts the body size in','algae, liverworts and mosses  ','liverworts, mosses and ferns  ','the bryophytes and the pteriodophytes  ','the thallophytes and the pteriodphytes','','','a','','utme','2004',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:55'),(45,'A plant like feature I Euglena is the','Pellicle  ','pigment sport','large vacuole   ','gullet','','','b','','utme','2004',184,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:56'),(46,'The most common characteristic of the fungal hyphae is the possession of  ','cell like compartments with one nucleus each  ','cell walls that are true are both rigid and chitinous  ','a multicellular mycelium in strate  ','cell like partitions formed  by cross walls','','','b','','utme','2004',183,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:57'),(47,'Insects are considered the most successful among the invertebrates because they','possess exoskeletons',' survive in various environmental conditions  ','have wings for flight  ',' possess the ability to change their forms','','','a','','utme','2004',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:58'),(48,'The larval stage of a mosquito is called','wriggler  ','Grub  ','maggot  ','Caterpillar','','','a','','utme','2004',207,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:59'),(49,'The function of the long-winged reproductive in a  termite colony is to','disperse the population  ',' feed the young   ','participate in swarming','protect the young','','','c','','utme','2004',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:00'),(50,'A peculiar characteristic of mammals is that they  ','have teeth  ','are warm blooded  ','haelungs','have sebaceous glands','','','d','','utme','2004',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:01'),(51,'In the internal structure of plants, a wide pith in the centre is common to','dicot stems and moocot stems','dicot stems and monocot roots','dicot roots and monocot roots','dicotroots and monocot stems','','','b','','utme','2004',183,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:02'),(52,'The gall bladder of mammal has a duct connected to','liver  ',' duodenum  ','small intestine','pancreas','','','b','','utme','2004',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:03'),(53,'Al living cells require water because it','is a medium for all metabolic reactions  ','is a medium that neutralizes acids in cells','is the main source of energy for the cells','prevents the development of disease in cells.','','','a','','utme','2004',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:04'),(54,'The Breakdown of fats and oils into simpler absorbable compounds is catalyzed by the group of enzymes called','lipases   ','hydrolases  ','amylases','peptidases','','','a','','utme','2004',171,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(55,'The surface of an alveolus in a mammal is well supplied with tiny blood vessels known as','arterioles  ','Venules','arteries  ','capillaries','','','d','','utme','2004',158,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:06'),(56,'The anaerobic fermentation of a glucose molecule yields.','38ATP molecules  ','2ATP molecules and alcohol','Pyruvic acid and alcohol  ','water and carbon (IV) oxide','','','b','','utme','2004',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:07'),(57,'The opening of the stoma is controlled by the  ','presence of a pore  ','increase in solute concentration  in the guard cells  ','presence of guard cells','decrease in solute concentration in the guard cells','','','b','','utme','2004',184,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:08'),(58,'The type of reproduction that is common to both Hydra and yeast is','conjugation','binary fission','grafting  ','Budding','','','d','','utme','2004',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:09'),(59,'The eggs of birds contain relatively larger quantities of yolk than those of amphibians and reptiles because','birds are generally bigger in size','embroyonic development is longer in birds  ','those of birds are fertilized internally  ','birds lay shelled eggs','','','b','','utme','2004',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:10'),(60,'Epigeal germination of a seed is characterized by','more rapid  elongation of the hypocotyl than the epicotyl','more rapid elongation of the epicotyl than the hypocotyl  ','equal growth rate of both the hypocotyl and epicotyl  ','lack of growth of the hypocotyl','','','a','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(61,'Nervous control differs from hormonal control in that the former  ','involves only chemical  transmission','is a slower process','produces short term changes  ','has no specific pathway','','','c','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:12'),(62,'If a nursing mother is not  producing enough milk, her hormonal system is probably deficient in','prollactine  ','estosterone','thyroxin','insulin','','','a','','utme','2004',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:13'),(63,'The two key cations involved in the action potential of nervous transmissions are ','Na+ and Fe2+',' Mg2+ and K+','Na+ and K+  ','Fe2+ and Mg 2+','','','c','','utme','2004',188,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:14'),(64,'A caterpillar and an aphid living in different parts of the same plant can be said to',' occupy the same ecological riches   ',' Be in different habitats  ','occupy different ecological riches  ','be in  similar micro habitats','','','c','','utme','2004',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:15'),(65,'Use the table below to answer questions 33 and 34\\nZone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nHigh relative humidity will be expected in zones \\n','I and II','I and IV  ','II and III  ','II and IV','','','c','','utme','2004',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:16'),(66,'Zone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nWhich of the zones is likely to be a desert\\n','I  ','II  ','III  ','IV','','','a','','utme','2004',172,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:17'),(67,'The association between termites and the cellulose digesting protozoans in heir guts is an example of  ','saprophytism  ','mutualism','parasitism  ','commensalism','','','b','','utme','2004',156,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:18'),(68,'The progressive loss of energy at each level in a food chain  leads to','an increase in biomass at each successive level  ','a decrease in biomass at each successive level  ','an increase in the number of organisms at each successive level','an increase in the total weight of living matter at each successive level.','','','b','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:19'),(69,'One adaptation of reptiles of water loss is the presence of','Keratinous scales  ','claws on Limbs  ','Long tails   ','long stickly tongues','','','a','','utme','2004',178,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(70,'A state in Nigeria that is most susceptible to desert encroachment is','Kwara  ','Taraba  ','Kaduna','Katsina','','','d','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:20'),(71,'The Scarcity of food causes a sudden decrease in population size by','decrease the reproductive rate','bringing about immigration','raising the mortality rate','minimizing the rate of competition','','','a','','utme','2004',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:21'),(72,'The soil type that will be most difficult to plough in a wet season is one that is  ','loamy   ','clayey  ','sandy  ','silty','','','b','','utme','2004',167,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:22'),(73,'A farm practice that results in he loss of soil fertility is','mixed farming','bush fallowing','shifting cultivation  ','continuous cropping','','','d','','utme','2004',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:23'),(74,'Paternity disputes can most accurately be resolved though the use of','Gringer printing   ','blood group typing   ','DNA analysis   ','tongue rolling','','','c','','utme','2004',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:24'),(75,'In a mendelian cross of red and white varieties of the four o’clock pant, the F1 generation expresses incomplete dominance by having flowers which are','white  ','red  ','pink  ','multi-coloured','','','c','','utme','2004',192,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:25'),(76,'Identical twins inherit their genes from','Different eggs and sperms','The same egg and sperm  ','two egg and a sperm  ','one egg and two sperms','','','b','','utme','2004',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:26'),(77,'Sex –linked genes are located on','Y-chromostome  ','X and Y chromosomes  ','Homologens chromosomes  ','X-Chromosome','','','d','','utme','2004',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:27'),(78,'Which of the following is an example of intraspecific competition?','a lizard and an ant eater chasing an insect  ','a worker termite and a solider in a limited space  ','a hawk and an eagle targeting the same chicken','yam and potato shoots growing out through the same window','','','b','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:28'),(79,'Plants survive hot dry condition by  ','storing water in large parenchyma cells','producing numerous leaves  ','having numerous stomata  ','having every green leaves','','','a','','utme','2004',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:29'),(80,'Rodents gnaw on food with their','molar teeth  ','strong jaws   ','flat-ridged teeth  ','chisel like front teeth','','','d','','utme','2004',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:30'),(81,'The sports and stripes of the leopard and tiger and example of','cryptic colouration  ','warning colouration  ','Disruptive colouration  ','counter shading','','','c','','utme','2004',162,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:31'),(82,'An evidence of the relationship between living organisms and their extinct relatives can best be obtained from','Embryology  ','Comparative anatomy  ','comparative physiology','all of the above','','','d','','utme','2004',202,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:32'),(83,'The organelle common to both plant and animal cells is the','centriole','plasmalemma  ','cell wall','chloroplast','','','c','','utme','2005',176,'Admin','0000-00-00 00:00:00','2020-07-15 14:35:14'),(84,'Which of the following is likely to have a higher concentration of mitochondria? ',' Sperm cell',' white blood cell  ',' Egg cell','red blood cell','','','a','','utme','2005',185,'Admin','0000-00-00 00:00:00','2020-07-15 14:32:40'),(85,'The hyphal wall of fungi is rigid  owing to the presence of','cell wall','lignin  ','cellulose  ','chitia','','','d','','utme','2005',184,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(86,'Angiosperms and gymnosperms belong to the class','schizophyta  ','spermatophyte  ','pteridophyta  ','bryophta','','','b','','utme','2005',165,'Admin','0000-00-00 00:00:00','2020-07-15 14:32:40'),(87,'An example of a adially symmetrical organism is','planaria  ','Hydra   ','tapeworm  ','roundworm','','','b','','utme','2005',190,'Admin','0000-00-00 00:00:00','2020-07-15 14:32:40'),(88,'the leech and the earthworm belong to the','molluscs  ','crustaceans','arachnids  ','annelids','','','d','','utme','2005',175,'Admin','0000-00-00 00:00:00','2020-07-15 01:28:32'),(89,'I. Rettus rattus   II. Agama agama  II Bufo regularis  IV. Tilapia Zill. The order of evolutionary advancement  of the above','I, II and III , IV  ','I, IV, III, II  ','II, III, IV, I','IV, III, II, I','','','d','','utme','2005',193,'Admin','0000-00-00 00:00:00','2020-07-15 14:35:14'),(90,'The stage in the life history  of a moth responsible for the destruction of agricultural crops is the','nymph','imago','pupa   ','caterpillar','','','d','','utme','2005',193,'Admin','0000-00-00 00:00:00','2020-07-15 01:28:32'),(91,'The blackly is a vector of','material','trypanosomiasis','onchocerciasis','yellow fever','','','c','','utme','2005',204,'Admin','0000-00-00 00:00:00','2020-07-15 14:35:14'),(92,'The transition from amphibians to mammals involves the limbs becoming arranged to support the weight  more effectively requiring modifications in the','collar bones and coccyx','pectoral and pelvic girdles','scapulae and clavicles   ','vertebrae and sternum','','','b','','utme','2005',174,'Admin','0000-00-00 00:00:00','2020-07-15 01:18:54'),(93,'The main function of the caudal fin in tilapia  is to  ','propel it forward in water  ','seer it while changing directions  ','balance it in eater','enable it to float in water','','','a','','utme','2005',201,'Admin','0000-00-00 00:00:00','2020-07-15 14:32:40'),(94,'In the root vascular system, the stele is directly surrounding by the','pericycle  ','cortex','endodermis  ','Parenchyma','','','c','','utme','2005',176,'Admin','0000-00-00 00:00:00','2020-07-15 00:10:41'),(95,'The only vein that caries pure oxygenated blood is the  ','renal vein  ','Pulmonary vein  ','hepatic vein','sciatic vein','','','b','','utme','2005',178,'Admin','0000-00-00 00:00:00','2020-07-15 01:01:00'),(96,'The function of the fluid filled pericardium is to','reduce the friction caused by the pumping movements of the heart   ','supply the heart with oxygen and nutrients  ','prevent disease organisms from attacking the heart  ','reduce the  intensity of the pumping action of the heart','','','a','','utme','2005',184,'Admin','0000-00-00 00:00:00','2020-07-14 23:53:35'),(97,'The mammalian lung is made air light by the','pleural cavity  ','mucous membrane','pleural membrane  ','diaphragm','','','a','','utme','2005',175,'Admin','0000-00-00 00:00:00','2020-07-15 14:35:14'),(98,'A test tube containing yeast in glucose solution was suspended in a converted conical flask containing alkaline pyrogallol. The  bubbles of carbon (IV) oxide produced indicate that the yeast cells are','respiring in the absence of oxygen  ','librating oxygen  on their own','living and consuming oxygen  ','being killed by the alcohol produced','','','a','','utme','2005',201,'Admin','0000-00-00 00:00:00','2020-07-15 14:32:40'),(99,'The urinary tubules of the kidney function through  ','osmosis and diffusion  ','active transport and osmosis  ','ultra filtration and selective re-absorption','active transport and cytoplasmic streaming  ','','','c','','utme','2005',190,'Admin','0000-00-00 00:00:00','2020-07-14 23:54:09'),(100,'Excess water  in plants is excreted as water vapour and droplets respectively through  ','respiration and guttation  ','transpiration and guttation','photosynthesis and guttation','guttation and condensation','','','b','','utme','2005',159,'Admin','0000-00-00 00:00:00','2020-07-15 01:28:32'),(101,'When bacteria swim from cold to warm regions, this is known as','negative chemotaxis  ','positive thermotaxis  ','positive phototaxis','negative phototaxis','','','b','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(102,'Hydrostatic skeleton is the type of supporting system found in','Mammals  ','reptiles  ','oligochaetes   ','arthropods','','','c','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-07-15 01:20:24'),(103,'Which of the following is a homeostatic response in humans?','withdrawing the hand from a hot object','the mouth getting watery when food is lighted  ','yawning owing to tiredness  ','shivering in a cold environment','','','d','','utme','2005',188,'Admin','0000-00-00 00:00:00','2020-07-14 23:49:27'),(104,'The optimal temperature  for breeding cockroaches is','15oC','19oC  ','24oC  ','33oC','','','c','','utme','2005',193,'Admin','0000-00-00 00:00:00','2020-07-15 01:28:32'),(105,'At which temperature will cockroaches not survive after 10 days?   ','15oC','19oC  ','24oC  ','33oC','','','a','','utme','2005',179,'Admin','0000-00-00 00:00:00','2020-07-15 00:08:27'),(106,'The mambilla plateau is a unique Nigeria biome located in','Plateau State  ','Borno state  ','Taraba state  ','Benue state','','','a','','utme','2005',170,'Admin','0000-00-00 00:00:00','2020-07-15 14:35:14'),(107,'In Nigeria, the Guinea Savanna belt borders the','mangrove swamps and the Sahel  savanna  ','rainforests and the Sudan savanna  ','deserts and the Sudan savanna  ','rainforests and the desert.','','','b','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-07-15 01:18:54'),(108,'The population density of Tridax in an abandoned square farmland of side 200m was found to be 5 plants per m2. The population size of the plant on the farm is','40','4000','40000','200000','','','d','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-07-15 00:58:14'),(109,'Secondary succession is much faster then primary succession because','pioneer colonizers are more in number  ','soil is already present  ','Secondary series require less nutrients  ','species competition is increased','','','b','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-07-15 01:01:35'),(110,'Which of the following is used to test for the presence of lime in a soil sample? ','H2SO4(aq)  ','NaOH(aq)','Hcl(aq)  ','HNO3(aq)','','','c','','utme','2005',174,'Admin','0000-00-00 00:00:00','2020-07-15 14:35:14'),(111,'The importance of practicing crop rotation  in agriculture is to','maintain soil fertility','improve the nutritional value of crops   ','control soil erosion   ','ensure the growth of crops.','','','a','','utme','2005',187,'Admin','0000-00-00 00:00:00','2020-07-15 01:20:24'),(112,'The recycling method of solid waste disposal is unsuitable for','organic matter  ','glass  ','plastics','metal scraps','','','a','','utme','2005',180,'Admin','0000-00-00 00:00:00','2020-07-15 00:59:48'),(113,'A non-renewable alternative source of energy is','wind generators  ','solar panels  ','nuclear energy','hydroelectric power','','','c','','utme','2005',176,'Admin','0000-00-00 00:00:00','2020-07-15 01:18:54'),(114,'Which of the following gis the best explanation for a child who is phenol-typically short and born of two tall parents?','The father possesses a gene for shortness  ','The mother possesses a gene for shortness  ','Nature makes the child short  ','Both parents posses genes for shortness.','','','d','','utme','2005',182,'Admin','0000-00-00 00:00:00','2020-07-15 14:32:40'),(115,'A yellow maize is crossed with the a white maize and the first filial generation produce yellow maize only. The white trait is said to exhibit  ','dominance',' recessiveness','codominance  ','Incomplete  dominance','','','b','','utme','2005',165,'Admin','0000-00-00 00:00:00','2020-07-15 00:10:41'),(116,'The association in which one member benefits and the other is relatively unaffected by the interaction is termed  ','symbiosis','parasitism','commensalism  ','Mutualism','','','c','','utme','2005',176,'Admin','0000-00-00 00:00:00','2020-07-15 01:18:54'),(117,'When a peacock displays its colourful  feathers, it is  ','ready for a fight  ','protecting itself from predators  ','protecting its mate from predator','courting a female','','','d','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-07-15 01:01:00'),(118,'When an animal has a dark coloured dorsal surface and light coloured ventral surface, this is an adaptation called  ','concealment coloration  ','countershading','colour blending  ','disruptive coloration','','','b','','utme','2005',193,'Admin','0000-00-00 00:00:00','2020-07-15 14:35:14'),(119,'The only caste in the termite colony whose members can feed themselves are the  ','reproductive',' workers  ','nymhs  ','soldiers','','','b','','utme','2005',163,'Admin','0000-00-00 00:00:00','2020-07-15 01:28:32'),(120,'An evidence of a common ancestry for fishes, amphibians, reptiles, birds and mammals is the','possession of wings by bird and bats','cold-bloodedness of fishes, amphibians and reptiles  ','presence of gill clefts in vertebrate embryos','','','','c','','utme','2005',200,'Admin','0000-00-00 00:00:00','2020-07-15 01:01:35'),(121,'Mendel, s second law of inheritance states that','alleles separate predictably  ','alleles segregate  independently','chromosomes segregate independently  ','alleles combine randomly','','','b','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(122,'One advantage of variation in a species population  is that individuals','easily reach their reproduction age','with favoured trait become dominant','are better adapted  to changes','are easily  recognized by mates','','','c','','utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:28'),(123,'The two normal types of sex chromosomes are','xxy and xyy','xx and xyy  ','xx and xy  ','xy and xxy','','','c','','utme','2006',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:29'),(124,'Hassan and Hussain are identical twins but Hasan grows taller and fatter than Hussain. This is probably  because  ','Hussain in endowed with genes for shortness and thinness  ','They are raised in different environments','they have dissimilar genotypes  ','Hassan inherits genes for tallness and fatness from the father.','','','b','','utme','2006',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:30'),(125,'Population that doubles in size to constant intervals is an indication of','sigmoid   ','population explosion  ','rapid growth','  exponential growth','','','d','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:31'),(126,'The causative reagent of typhoid fever is  ','Entamoeba','Salmonella','Shigella  ','Escherichia','','','b','','utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:32'),(127,'The  soil type that contains nutrients which are not readily available for plants is ',' sandy  ','Alluvial  ','loamy  ','clayey  ','','','d','','utme','2006',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:33'),(128,'Grasses recover quickly from bush fires in the savanna  because of their  ','succulent stems   ','rapid growth  ','fibrous roots  ','perennating organs','','','d','','utme','2006',188,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:34'),(129,'The main purpose of establishing shelter belts in the sahel region to  ','break the harmattan wind  ','beautify the region  ',' check desert encroachment  ','provide wood fuel','','','a','','utme','2006',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:35'),(130,'Climax communities in a biotic succession are usually characterized by','a constant change in the appearance of the commodities  ','a stable composition of plant and animal species  ','rapid changes in the plant and animal species  ','different species that are constantly changing','','','b','','utme','2006',153,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:36'),(131,'The product of excretion common to the mammalian kidney lung and skin is','Urea  ','carbon (IV)oxides  ','mineral salt','water','','','d','','utme','2006',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:37'),(132,'In rabbits, the chamber of the heart that receives oxygenated blood from the lungs is the  ','left auricle','right auricle','left ventricle','right ventricle','','','a','','utme','2006',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:37'),(133,'One basic similarly between nervous and endocrine system is that both  ','produce precise and short –lived  effects  ','Involve the use of chemical substances  ','transmit very fast impulses  ','produce widespread effects.','','','b','','utme','2006',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:38'),(134,'Night blindness result from a deficiency of  ','Vitamin E  ','Vitamin K  ','Vitamin C  ','Vitamin A','','','d','','utme','2006',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:39'),(135,'Water is necessary for a germinating seed because  it','wets the soil for proper germination  ','protects the seed from desiccation  ','activates the enzymes','promotes aerobic respiration  ','','','c','','utme','2006',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:40'),(136,'An increase  in air pressure in the lings is due to the','increase in the volume of the thoracic cavity  ','relaxation of the diaphragm','upward movement of the ribs','contraction intercostal muscles','','','b','','utme','2006',194,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:41'),(137,'In the transverse section of a dicot stem, the region lying between the endodermis and the vascular bundle is the','parenchyma  ','Pholem','phypodermis  ','pericyle','','','d','','utme','2006',167,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(138,'A unique characteristic of the cervical vertebrae  is the present  of','long transverse processes  ','zygaphphysis   ','vertebraterial canal  ','large centrum','','','c','','utme','2006',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:43'),(139,'Which of following produces both hormones and enzymes?','Gall blader  ','Lieum  ','Pancreas  ','kidney','','','c','','utme','2006',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:44'),(140,'The formation of water in tissue  respiration  results from the  ','combination of water  molecules','breakdown of water molecules  ','reduction of carbon (IV) oxide','reduction of oxygen by hydrogen','','','d','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:49'),(141,'The organ situated in the pericardial cavity of a mammal is the','stomach  ','Liver  ','Liver','spleen','','','c','','utme','2006',152,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:50'),(142,'Mammals are  capable  of producing hypertonic urine mainly because of re-absorption in the  ','urethra  ','loop of henle  ','ureater  ','Bowman’s capsule','','','b','','utme','2006',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:51'),(143,'The mammalian vain which starts with and ends in a capillary network is the','hepatic portal vein','pulmonary vein  ','renal vein','measenteric vein','','','a','','utme','2006',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:52'),(144,'The part of the mammalian skin involved in temperature regulation is the','sebaceous gland  ','sweat gland','hair follicle  ','hair pailla','','','b','','utme','2006',190,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(145,'The variation illustrated is','physiological   ','discontinuous  ','morphological   ',' biochemical','','','c','','utme','2006',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:54'),(146,'The change in the length of the necks of the giraffes shown was brought about by  ','predation','symbiosis','natural selection','geographical isolation','','','c','','utme','2006',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:55'),(147,'Which of the following vertebrates has the most simple structured heart?','fish  ','Mammal','Amphibian  ','Reptile','','','a','','utme','2006',162,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:56'),(148,'The role of the Golgi com plex in a eukaryotic cell is to  ','transport genetic material out of the cell','transport organic materials in and out of the cell','provide attachment for ribosomal granules','conduct ions and out of the cell','','','b','','utme','2006',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:57'),(149,'The dominant phase in the life cycle of a bryophyte is the','prothallus  ','Gametangium  ','saprophyte   ','gametophyte','','','d','','utme','2006',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:58'),(150,'The evidence that supports the advancement of  fern over mosses is derived from ','biochemical similarities  ','','physiological records  ','molecular records','','','b','','utme','2006',188,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(151,'A characteristic that best exemplifies the evolutionary advancement of mammals over other  vertebrates in the  ','terrestrial mode of life  ','possession  of paired limbs  ','a false foot  ','radial symmetry','','','c','','utme','2006',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:00'),(152,'An organism which exhibits extracelluar digestion is  ','Paramecium','Rhizopus  ','Spirogyra  ','Amoeba  ','','','b','','utme','2006',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:01'),(153,'The chromosomes of members of the kingdom  monera are within the','nucleus  ',' nucleolus  ',' cytoplasm   ',' Nucleoplasm','','','c','','utme','2007',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:02'),(154,'A water medium is necessary for fertilization in','angisperms','ferns  ','fungi  ','conifers','','','b','','utme','2007',197,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(155,'The process of shedding the exoskeleton of an arthropod is known as','instar formation','metamorphosis  ','tagmosis  ','Ecdysis','','','d','','utme','2007',192,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:04'),(156,'The part labeled IV is responsible for','ingestion   ','locomotion  ',' osmoregualtion  ','respiration','','','c','','utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:05'),(157,'Which of the following is common to the mosquito, housefly and blackfly?  ','Their  immature stages are aquatic   ','They undergo complete metamorphosis  ','Their adults have two pairs of wings   ','They are parasites of man','','','b','','utme','2007',171,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(158,'Which of the following has the most primitive respiratory system?','Fish','Snail  ','Mouse','insect','','','b','','utme','2007',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:06'),(159,'Moncot stems differ from dioct  stems in that monocots have','fewer vascular bundies',' no cambium  ','phloem with parenchyma   ',' no pith','','','b','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:07'),(160,'In mammals , the  organ directly on top of the kidney is the','prostate gland  ',' pancrease   ','thyroid gland  ',' adrenal gland','','','d','','utme','2007',158,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:08'),(161,'The photosynthetic pigment is include  ','melanin and haemoglobin  ',' chlorophyll and carotenoids  ',' carotenoids and haemoglobin  ',' chloroplasts and cytochromes','','','b','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:09'),(162,'The pancreas secretes enzymes for the digestion of  ','fats, vitamins and cellulose',' fats, carbohydrates and vitamins  ','proteins, celluclose and minerals  ','fats, proteins and carbohydrates','','','d','','utme','2007',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:10'),(163,'Which of the following uses diffusion as the principal method of gaseous exchange?','Rate  ','lizard','Earthworm  ','Grasshopper','','','c','','utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:11'),(164,'The opening  and closing of the stoma are regulated by','osmosis   ','diffusion  ','transpiration  ','respiration','','','a','','utme','2007',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:12'),(165,'The waste product of plants used in the conversion of hide to leather is','resin  ','tannin  ','gum  ','Alkaloid','','','b','','utme','2007',157,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:13'),(166,'The correct sequence of the movement of urea during urine formation is','Convoluted tubule_ glomerulus_Henle’s loop_ Bowman’s capsule_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tuble_ Henle’s loop_collecting tubule','convoluted tubule_ Bowman’s capsule_Henle’s loop _ glomerulus_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tubule_ Henle’s loop_convoluted tubule_collecting tubule','','','d','','utme','2007',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:14'),(167,'Pineapple is an example of','a composite fruit  ','a simple fruit','an aggregate fruit','a dehiscent fruit','','','a','','utme','2007',160,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:15'),(168,'Stunted growth and poor root development are a result of as deficiency in  ','calcium  ','sulphur  ','iron  ','phosphorous','','','a','','utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:16'),(169,'The highest level of ecological organization is the','niche','biosphere  ','population  ','Ecosystem','','','d','','utme','2007',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:17'),(170,'A biotic factor which affects the distribution and abundance of organisms in a terrestrial  habitat is','competition  ','temperature  ','light  ','pH','','','a','','utme','2007',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:18'),(171,'Which of the following is an example of parasitism?  ','Mistletoe growing on an orange tree','Fungi growing on a dead  tree branch  ','cattle egrets taking ticks from the body of cattle','a squirrel living in an abandoned nest of a bird','','','a','','utme','2007',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:19'),(172,'The organs that will be most useful  to giant  African rats in finding their way in underground habitats are the  ','Eyes   ','vibrissae','tails  ','Nostrils','','','b','','utme','2007',158,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:20'),(173,'One adaptation  shown by hydrophytes in fresh water habitats is the','poor  development of roots and xylem tissues  ','well developed roots and supporting system  ','leaves reduced to spines  ','waxy  cuticle on shoot surface','','','a','','utme','2007',158,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:20'),(174,'The mangrove swamp in Nigeria is restricted to the','Guinea savanna','Tropical rainforest','Sudan savanna   ','Sahel savanna','','','b','','utme','2007',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:21'),(175,'In which of the following Nigerian states can montane vegetation be found?','Plateau','Taraba  ','Enugu  ','Bauchi','','','a','','utme','2007',157,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:22'),(176,'The increasing order of the particle size in the following soil types  is','clay_silt_sand_gravel  ','Silt_clay-sand_gravel  ','clay_sand_slit_gravel','silt_sand_clay gravel','','','a','','utme','2007',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:23'),(177,'A crucible  of 5gm weighted 10gm after filling with fresh soil. It is hen healed in an oven at 100oC for 1 hour. After cooling in a desiccators, the  weight was 8gm. The percentage of water in the soil is  ','20%','40%','6%','80%','','','b','','utme','2007',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:24'),(178,'The causative agent of bird flu is a','virus  ','bacterium  ','fungus  ','protozoan   ','','','a','','utme','2007',164,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(179,'An accurate identification  of a rapist can be carried out by conducting a','blood group test  ','behavioural traits test  ','DNA analysis   ','RNA analysis','','','c','','utme','2007',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:26'),(180,'Which of  the following is true of cloning?','it involves the asexual multiplication of the tissues of the original organisms  ',' the clone is similar to but not exactly like the original organism   ','Only one cell of the original organism is needed to initiate the process','it is welcomed as an ethically  and morally sound science','','','c','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:27'),(181,'An example of a sex-linked  trait is the','ability to roll the tongue','possession of facial hair in adult humans  ','ability to grow long hair in females  ','colour of the skin in human','','','c','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:28'),(182,'Which of the following factors can bring about competition in a population? ',' Drought   ','Mortality','Dispersion   ','Emigration','','','d','','utme','2007',157,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(183,'In lizards, the lowering  of the gular fold is used to','attract mates  ','frighten enemies','catch insects   ','defend their territory','','','b','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-07-15 09:28:35'),(184,'The type of protective adaptation exhibited by the animals is  ','flash colouration   ','disruptive  colouration','warming colouration','countershading  colouration','','','d','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:38'),(185,'An example of a fish that aestivates is','lung fish   ','shark','cat fish','croaker','','','a','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:39'),(186,'The theory  which supports the view that the large muscles developed by an athlete will be passed on to the offspring was proposed by','Darwin  ','Lamarck   ','Pasteur   ','Mendel.','','','b','','utme','2007',148,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:40'),(187,'In terms of the number of individuals, which of the following  taxa is most inclusive?','order','family','class  ','species','','','c','','utme','2008',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:41'),(188,'A characteristic that can possibly be shared by both living  and non-living organisms is  ','locomotion  ','irritability','increase in biomass','increase in size','','','d','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:42'),(189,'The cell of an onion bulb can be differentiated from a cheek cell by the presence of  ','plasmalemma  ',' chloroplast','cell wall  ',' nucleus','','','c','','utme','2008',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:43'),(190,'In plants, the structure that performs  a similar  function with the testis is in mammals  is the   ','stigma','filament  ','anther','replace','','','c','','utme','2008',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:44'),(191,'The bacteria type that are arranged in chains are the','Staphylococci  ','clostridia','streptococci','Bacilli','','','c','','utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:45'),(192,'The most abundant group of organism in the animal kingdom is','Mammalian','Aves  ','Annelida  ','Insecta','','','d','','utme','2008',152,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:46'),(193,'Radial symmetry is a feature common to the  ','platyhelminthes','nematodes  ','coelentrates','arthropods','','','c','','utme','2008',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:47'),(194,'Which of the following  is used mainly for balancing in fish?','The causal fin  ','the pectoral fin','the anal fin  ','The dorsal fin','','','d','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(195,'The beak of a duck is structurally adapted  for','scooping and sieving food  ','catching and gasping food  ','picking and cracking food  ','boring and sucking food  ','','','a','','utme','2008',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:49'),(196,'The most important characteristic that makes reptiles to conquer terrestrial habitats is the possession of','long tail','scaly skin','sharp claw','amniotic egg','','','b','','utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:50'),(197,'Inn a dictyledonous stem, the zone between the epidermis and the pericycle is the','cortex  ','stele','xylem','phloem','','','a','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:51'),(198,'The order of passage of food in the digestive system is','ileum caecum large intestine rectum','ileum colon caecum rectum','large intestine ileum caecum rectum','colon caeum ileum rectum  ','','','b','','utme','2008',167,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:52'),(199,'Insectivorous plants traps and kill their prey to derive  ','phosphorous  ','calcium  ','nitrogen','Zinc','','','c','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:52'),(200,'In the alimentary system of a bird, the function  of teeth is carried out by the','crop  ','Beak  ','Gizzard','tongue','','','c','','utme','2008',149,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:53'),(201,'What will happen when two equal  sized pieces of unripe pawpaw labeled X and Y are dropped into equal volumes of concentrated salt solution and distilled water respectively?  ','Pawpaw X will become  turgid  ','Both  will increase in size','pawpaw Y will become turgid','Both will decrease in size','','','c','','utme','2008',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:54'),(202,'Exhaled air differs from inhaled air in that it  ','contains less amount of carbon (IV) oxide  ','is usually lower in temperature','often has more oxygen  ','usually has more water vapour','','','d','','utme','2008',153,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:15'),(203,'In the mammalian kidney,  the Bowman’s  capsule is located in the','ureter','Pelvis  ','cortex','medulla  ','','','d','','utme','2008',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:15'),(204,'A plant  parenchyma cell also acts as a supporting tissue when it','becomes faccid  ','contains cystals  ','becomes turgid','is pigmented','','','c','','utme','2008',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:17'),(205,'During ovulation, an egg is released from the','corpus luteum  ','ovarian funnel  ','Graafian follicle','fallopian tube','','','c','','utme','2008',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:17'),(206,'The transmission of impulses along a nerve fibre is characterized by','hormonal and temperature changes   ','electrical and ionic changes  ','hormonal changes  ','electrostatic changes','','','b','','utme','2008',156,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:18'),(207,'The major consequences of bush burning in an ecosystem is  ','the loss of water absorbing ability of the soil','the loss of biological diversity','a decrease in animal population','an increase in soil fertility','','','b','','utme','2008',167,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:19'),(208,'Which of the following associations is an example of mutalism?','hydra viridis and zoochlorellae','human and lice   ','Shark and Remora fish  ','Bread and Rhizopus stolonifer  ','','','a','','utme','2008',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:20'),(209,'In a typical freshwater habitat, the edge of the stream or pond constitutes the','tidal zone  ','interidal zone  ','littoral zone  ','euphotic zone','','','c','','utme','2008',209,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:21'),(210,'The main ecological  problem facing interidal organisms is','dessciation','floatation','salinity','humidity','','','a','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:22'),(211,'Stomata  of some plants are sunken and protected by hairs. These are features of ','mesophytes','epiphtes  ','hydrophytes  ','Xerophytes','','','d','','utme','2008',192,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:23'),(212,'An ecological factor that will have the most  limiting effect on the abundance of phytoplankton in a turbid pond is   ','pH  ','oxygen','light  ','temperature','','','c','','utme','2008',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:24'),(213,'In an experiment to determine the percentage of air in a soil  sample, the  Following readings were recorded:\\nVolume of water inn a measuring cylinder = 500cm3  \\nVolume of soil added to water= 350cm2\\nVolume of water andn soil after stirring= 800cm2\\nThe percentage of air in the soil sample is \\n','6.25%','10. 36%    ','14.28%','43.28%','','','c','','utme','2008',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:25'),(214,'A boy who is fond of swimming in a pond finds himself passing urine with traces of blood. He is likely to have contracted  ','Schistosomiasis','onchoerciasis','poliomyelitis  ','salmonellosis','','','a','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:26'),(215,'The easiest way to establish  the level of pollution in a local stream is to measure the level of','oxygen','carbon(IV) oxide','ammonia','alkalinity','','','a','','utme','2008',189,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:27'),(216,'Which of the following is a major case of variation among  organisms?  ','inbreeding  ','backcrossing   ','sexual reproduction','Gene dominance','','','c','','utme','2008',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:40'),(217,'The Rhesus factor of blood was first identified in a category of  ','monkeys   ','human females','human males  ','chimpanzees','','','a','','utme','2008',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:41'),(218,'Genetically modified food products have not become  universally accepted because','They are not tasty as others produced  by conventional means','they are usually costlier than others produced by conventional means','their  efforts on human consumers is not yet fully understood   ','the technology can be applied only  in developed  countries','','','c','','utme','2008',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:42'),(219,'A major  adaptive feature of endo-parasites is the   ','loss of the organ of movement  ','presence of claws  ','loss of the central nervous system  ','presence of piercing mouthparts','','','a','','utme','2008',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:43'),(220,'The ability of a chameleon to change its colour is an adaptive feature for  ','attraction','defence  ','display','attack     ','','','b','','utme','2008',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:44'),(221,'Which of the following is the most advanced evolutionary development in plants?  (a) possession of unicellular structures  ','possession of unicellular structures  ','Development of flowers','dispersal of spores  ','Development of secondary thickening','','','b','','utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(222,'The natural process that produces adaptive evolutionary  changes is  ','mutation  ','gene flow  ','genetic drift','natural selection','','','d','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:46'),(223,'What is the level of organization  of an onion bulb?','tissue  ','organ','systemic','organism','','','b','','utme','2009',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(224,'A characteristic exhibited by all living organism is  ','sexual reproduction   ','aerobic respiration  ','the ability to move from one place to another  ','the ability to remove unwanted substances.','','','d','','utme','2009',188,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(225,'In a cell, the genes are carried by  ','nuclear membranes','chromatin threads  ','lysosomes','mitochondria','','','b','','utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(226,'Alternation of a sexual and sexual modes of reproduction is found in','blue-green algae  ',' Euglena','fern',' maize','','','c','','utme','2009',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(227,'The first terrestrial vertebratese volved from','pisces  ','Reptilia  ','Amphibia  ','Mammalia','','','c','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(228,'In plants, the structures that play roles similar to the arteries and veins of animals are the  ','xylem and phloem','root hairs and xylem  ','lenticels and phloem  ','roots and stems','','','a','','utme','2009',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(229,'A blue-green alga is not a protophytes because','it is aquatic  ','its cells are prokaryotic','it cannot move','it is not a green plant','','','b','','utme','2009',231,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(230,'The feature that makes locomotion in water easy for fish is the','scaly body','slimy body  ','steam lined body','lateral line','','','c','','utme','2009',179,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(231,'Bird toes suitable for digging have claws that are  ','blunt','curved  ','hooked','sharp','','','a','','utme','2009',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(232,'Chewing the cud is an adaptation peculiar to','herbivores','omnivores  ','rodents   ','ruminants','','','d','','utme','2009',200,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(233,'Which of the following is an example of a carnivorous plant?','Hydra','Bladderwort','Yeast','Spirogyra','','','b','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(234,'The part of the alimentary system of a bird where food is  ground into small particles is the','cloaca  ','stomach  ','crop  ','gizzard','','','d','','utme','2009',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(235,'Which of the following describes the sequence of blood flow fro the heart to a tissue?','Heart_artery_arteriole _ tissue','Heart_vein_venule _tissue','Heart _ venule _vein_tissue','Heart _arteriole _artery_tissue','','','a','','utme','2009',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(236,'The enzymes of the glycolytic pathway are located in  the','mitochondria  ','gastric juice','plasma','cytoplasm','','','d','','utme','2009',154,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(237,'In insects, the structure that performs  the same function as the kidney in man is the','nephridium','flame cell  ','malphigiann tubule','trachea','','','c','','utme','2009',193,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(238,'The axial  skeleton is found in the','skull , ribs, vertebral column and breast bone   ','skull humerus, vertebral column and ribs  ',' breastbone, clavicle, rids and vertebral column',' femur, sternum, ulnae and skull','','','a','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(239,'The reproductive  system of a male mammal is made up of  ','claspers, prostrate, gland, sperm duct and vas deferns','testis, prostrate gland, sperm duct and vas deferns  ','oviduct , urethra, testis and sperm  duct','testis, uterus, prostrate gland and sperm duct.','','','b','','utme','2009',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(240,'In a bean seed, absorption of water at the beginning  of germination is through the  ','hilum','micropyle  ','testa  ','plumule','','','b','','utme','2009',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(241,'The most important ecological factor in a terrestrial environment is','rainfall',' humidity','wind',' soil','','','a','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(242,'The association between bacteria residing I the caecum and the ruminant is  ','parasitism  ','predation  ','saprophytism  ','mutalism','','','d','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(243,'A marine protozoan is likely to have no contractile acuole  mainly because the cytoplasm is  ','isotonic to sea water','hypotonic to sea water','hypertonic to sea water','impervious to seas water','','','a','','utme','2009',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(244,'In freshwater  marshes and swamps, the most important abiotic factor that organisms have to','nature  of substratum  ','high salinity  ','high temperature  ','low pH','','','a','','utme','2009',183,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(245,'Which of the following biomass could be characterized by very low rainfall, cold nights, hardays and fast blooming plants?  ','Northern Guinea savanna','southern Guinea savanna  ','Tropical desert',' montane forest','','','b','','utme','2009',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(246,'The optimum temperature  for the growth of the organism is','25oC','50oC','75oC   ','100oC','','','b','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(247,'Mass of a crucible = 10g\\n Mass of a crucible and soil before heating = -29g.\\nMass of a crucible and sol after heating = 18g. From the information above, determine the percentage of wter in the given soil sample?  \\n','20%','25%','40%','50%','','','d','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(248,'I Onchocerciasis  II Schistosomiasis  \\nIII Salmonellosis  IV Meningitis \\nWhich of the diseases listed above are associated with water? \\n','I and II only  ','II, III and IV  ','I, II and III  ','II and IV','','','c','','utme','2009',197,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(249,'The major cause of global warming is the','Burning of fossil fuel','construction of dams','use of electricity  ','exploration of space','','','a','','utme','2009',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(250,'The uniqueness of an individual organism in a population is accounted for by','evolution','variation  ','adaptation','mutation','','','b','','utme','2009',191,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(251,'A phenotypic character with intermediate forms that can be graded from one extreme to the other is referred to as','discontinous variation   ','continuous variation','a mutant','a genome','','','b','','utme','2009',172,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(252,'A farmer’s assumption that the seed from a good harvest will produce a good yield is explained by the theory  of','evolution','adaptation','variation','heredity','','','d','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(253,'In Mendelian inheritance, discontinuous characters are controlled by the','centromeres','alleles','chromosomes','chromatids','','','b','','utme','2009',200,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(254,'A woman with the ability to roll her tongue (Tt) marries a man who cannot roll his tongue  (tt). What is the probability of each of their children being a tongue roller?','100%','75%','50%','25%','','','c','','utme','2009',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(255,'A health condition that isi known to have resulted from gene mutation is  ','heamophilia ','colour blindeness  ',' sickle cell anaemia  ',' anaemia  ','','','c','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(256,'Plants that grow in an area that is neither too wet nor too dry are','xerophytes  ','mesophytes  ','epiphytes','hydrophytes','','','b','','utme','2009',199,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(257,'The part of a domestic fowl responsible  for preventing heat loss is the  ','filoplume ','contour feather  ',' down feather',' quill','','','c','','utme','2009',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(258,'Which of the following animals is most adapted for water conservation?','Earthworms  ','mammals   ','Flatworms  ','Insects','','','d','','utme','2009',162,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(259,'The specialized pigment cells that are involved in colouration and colour change in animals are the','xanthophyl','chromatophores','chlorophyll','mechanic','','','d','','utme','2009',168,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(260,'During the dry season in the tropics, the body metabolism of some animals slows to a minimal level in a process referred to as','hibernation','aestivation','dormancy','sense scense  ','','','b','','utme','2009',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(261,'According to Darwin, the driving force behind evolutionary change is','atural selection','genetic drift  ','mutation','gene flow','','','a','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(262,'Which of the following characterizes a mature plant cell?','The cytoplasm fills up the entire cell space',' The nucleus is pushed to the centre of the cell',' the cell wall is made up of cellulose','The nucleus is small and irregular in shape','','','d','','utme','2010',230,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(263,'Which of the following is NOT a function of the nucleus of a cell?  ','it controls the life processes of the cell','It translates genetic formation for   the manufacture of proteins','it stores and carries hereditary information  ','it sis a reservoir of energy for the cell','','','d','','utme','2010',209,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(264,'The dominant phase in the life cycle of a fern is the','gametophyte  ',' prothallus','sporophyte  ',' antheridium','','','c','','utme','2010',210,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(265,'Parental care is exhibited by','toads','snails',' earthworms',' birds','','','d','','utme','2010',215,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(266,'Which of the following groups of cells is devoid of true nuclei?','viruses','algae  ','Monera','Fungi','','','c','','utme','2010',212,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(267,'Which of the following is true of the transverse section of a dicot stem?','The epidermis is completely encircled by the cortex','The xylem is more interiorly located than the phloem',' The cambium lies between the cortex and the vascular bundles','The vascular bundles are randomly scattered within the  cortex','','','b','','utme','2010',204,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(268,'Which of the following is lacking in the diet of a person with kwashiorkor?','Vitamins  ','Proteins','Carbohydrates  ','Minerals','','','b','','utme','2010',215,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(269,'The mode of nutrition of sundew and bladderwort can be described as','autotrophic  ','saprophytic  ','holozoic   ','chemosynthetic','','','c','','utme','2010',182,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(270,'When a mixture of a food substance fand Benedict’s solution was warmed, the solution changed from blue to brick red . This indicates the presence of','reducing  sugar','fatty acid','sucrose  ','amino acid','','','a','','utme','2010',201,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(271,'The primary structure responsible for pumping blood for circulation through the mammalian circulatory systems is the','veins  ','right auricle  ','arteries','left ventricle','','','d','','utme','2010',227,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(272,'Circulation of blood to all parts of the body except the lungs is through  ','the pulmonary artery  ','systemic circulation','the lymphatic system','pulmonary circulation','','','b','','utme','2010',211,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(273,'Yeast respires anaerobically  to covert simple sugar to carbon (IV) oxide and','alcohol  ','acid','oxygen','water','','','a','','utme','2010',226,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(274,'The sheet of muscle that separates the thoracic and the abdominal cavities is the ','diaphragm  ','intercostal muscles',' pleural membrane   ',' pericardium','','','c','','utme','2010',210,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(275,'The oily substance that lubricates the mammalian hair to keep it flexible ad water repellent is secreted by the','sweat glands','sebaceous glands','fatty  cells','granular layer','','','b','','utme','2010',202,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(276,'The outer layer of the kidney where the Bowman’s capsules are found is the','cortex','pelvis  ','medulla','pyramid','','','a','','utme','2010',219,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(277,'Which of the following stimuli is likely to elicit a nastic response in an organism? ','Touch  ','Light intensity  ','Chemical substances  ','gravity','','','a','','utme','2010',198,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(278,'In the male reproductive system of a mammal, sperm is stored in the','van deferens  ','urethra','epididymis  ','seminiferous tubules   ','','','c','','utme','2010',214,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(279,'Chemosynthetic organism are capable  of manufacturing their food  from simple inorganic substances through the process of','oxidation','denitrification','reduction','phosphorylation','','','a','','utme','2010',218,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(280,'The part of the human gut  that has an acidic  content is the','stomach  ','duodenum  ','ileum','colon','','','a','','utme','2010',217,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(281,'I. Stomata _ spirogyra   II alveoli _ earthworm  III malpighian tubule_mammal Iv.Contractile vacuole _protozoa \\nWhich of the above structures is correctly matched with the organisms in which it is found? \\n','III  ','II   ','I','IV','','','d','','utme','2010',221,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(282,'A food chain always begins with a  ','consumer  ','decomposer  ','producer','primary  consumer','','','c','','utme','2010',209,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(283,'Mycorrhizae promote plant growth by','absorbing inorganic ions from the soil  ','protecting it from infection','helping it to utilize atmospheric nitrogen','serving as a growth regulator','','','a','','utme','2010',238,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(284,'The barrier between maternal and foetal blood is the','placenta  ','liver','umbilical chord  ','uterine wall','','','a','','utme','2010',192,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(285,'The blood component  that has the greatest affinity for oxygen is the ','lymphocytes',' leucocytes','erythorocytes  ','thromboytes','','','c','','utme','2010',233,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(286,'Which of the following organisms is mainly  found in the marine habitat?','Achatina  ','Tilapia  ','Dog fish  ','Tortoise','','','c','','utme','2010',203,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(287,'The two halves of the pelvic girdle are jointed together at the  ','public  symphysis  ','ilium  ','pubis  ','obturator foramen','','','a','','utme','2010',226,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(288,'I. Adoption of appropriate nocturnal habits   II. Burrowing   III. adjusting their  internal body temperature   IV. Possession of many sweat pores.\\nWhich of the above are ways in which desert animals adapt to extreme heat of environment?  \\n','I and IV only  ','II and III only  ','I and II only  ','I, II and III only','','','d','','utme','2010',220,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(289,'Low annual rainfall, sparse vegetation, high dermal temperatures and cold nights are characteristics features of the','tropical  rainforest  ','desert   ','mundane forest','guinea savanna','','','b','','utme','2010',215,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(290,'The average number of individuals of a species  per unit area of the habitat is the ',' population density','population frequency  ','population size','population distribution','','','a','','utme','2010',237,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(291,'The loss of soil through erosion can be reduced by','watering','crop rotation  ','maturing  ','irrigation','','','b','','utme','2010',234,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(292,'The vector for yellow fever is  ','edges mosquito  ','anopheles mosquito  ','tsetse fly  ','blackly','','','a','','utme','2010',228,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(293,'The protozoan plasmodium falciparum is transmitted by','female anopheles mosquitoes  ','female Aedes mosquitoes  ','female Culex mosquitoes   ','Female  blackfly','','','a','','utme','2010',199,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(294,'A dilute solution of phenylthiocarbamide tastes bitter to some people  and is tasteless to others. This is an example of  ','taste bud variation','discontinuous variation   ','morphological variation',' continuous variation','','','b','','utme','2010',218,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(295,'Throxne and adrenalin are examples of hormones which control','blood grouping','tongue rolling  ','behavioural patterns','colour variation ','','','c','','utme','2010',219,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(296,'A pair of genes that control a trait is referred to as','anallele','recessive','dominant  ','ahybrid','','','a','','utme','2010',230,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(297,'The chromosome number of a cell before and after the process of meiosis is conventionally represented as','2n_2n   ','n_n  ','n-2n  ','2n-n','','','d','','utme','2010',217,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(298,'If both parents are heterozygous for trait, he probability that an offspring will be recessive for that trait is','¾   ','½    ','¼','1','','','c','','utme','2010',210,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(299,'At what stage in the life history of a mammal is the sex of an individual set?','At adolescence','At puberty  ','At birth  ','At conception','','','d','','utme','2010',220,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(300,'The main distinguishing features between the soldier termite and other members of the caste are the','presence of wings, possession of a small head and large thorax','presence of wings, possession of a large thorax  and a small head','absence of wings, possession off strong mandibles and a large head','absence of wings, possession of big head and the absence of mandible.','','','c','','utme','2010',207,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(301,'The flippers of a whale  and the fins of a fish are examples of','divergent evolution  ','co evolution','continuous variation','convergent evolution','','','a','','utme','2010',213,'Admin','0000-00-00 00:00:00','2020-07-15 08:55:17'),(302,'The function of the red head in male Agama lizards is to','scare other males from the territory  ','attract female lizards for mating purposes  ','warn predators of the distastefulness of the animal  ','Conceal and camouflage the animal from predators','','','b','','utme','2011',148,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:13'),(303,'In which of the following species is the biomass of an individual the smallest?','Agama sp  ','Bufo sp','spirogyra sp   ','Tilapia sp','','','c','','utme','2011',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:14'),(304,'Seed plants are divided into','angiosperms and gymnosperms','monocotyledons and dicotyledons','thallophyes and pbryophytes  ','Tracheophytes and ferns','','','a','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:15'),(305,'In which of the following groups of vertebrates is parental  care mostly exhibited? ','  Amphibia','Aves  ','Mammalia  ','Reptilia','','','c','','utme','2011',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:16'),(306,'The adult form of III is a vector of  ','river blindness','cholera','elephantiasis','sleeping sickness','','','c','','utme','2011',181,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(307,'The adaptive importance of nuptial flight from termite colonies is to','provide abundant food for birds and other animals during the early rains','ensure cross breeding between members of one colony  and another','expel  the reproductive so as to provide  enough food for other members','disperse the reproductive in order to establish  new colonies','','','d','','utme','2011',172,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(308,'Which of the following can cause shrinkage  of living cells?  ','Isotonic solution   ','Delonized water  ','Hypertonic solution','hypotonic solution','','','c','','utme','2011',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:19'),(309,'Which of the following is true of leucocytes?  ','They are most numerous and ramify all cells  ','They are large and nucleated  ','They are involved in blood clotting','They are respiratory pigments','','','b','','utme','2011',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:20'),(310,'The conversion of a nutrient into a molecule in the body of a consumer is referred to a s  ','assimilation','absorption  ','inhibition','digestion','','','d','','utme','2011',218,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:21'),(311,'The ability  of a living organism to detect and respond to changes in the environment is referred to as','irritability','growth    ','taxis','locomotion','','','a','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:22'),(312,'In mammals, the exchange of nutrients and metabolic products occurs in the','oesophagus','trachea','lymph   ','lungs','','','c','','utme','2011',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:23'),(313,'An example of an endospermous seed is   ','cashew  nut  ','cottons seed','bean seed  ','maize grain','','','d','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:24'),(314,'I. Parasitism _ Sundew    II Autrrophism_Amoeba    III Saprophytism_ Alga  IV. Heterotrophism- Agama. Which of the above modes of nutrition is correctly matched with the organism that  exhibits it?','III','IV  ','I','II','','','b','','utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:25'),(315,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nIn which of the test tubes will glucose be detected after complete hydrolysis?\\n','II and III only','I only','I, II and III   ','I and II only','','','a','','utme','2011',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:26'),(316,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nThe enzyme involved in the hydrolysis is\\n','erepsin  ','perilymph   ','maltase  ','rennin','','','c','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:27'),(317,'The part of the mammalian ear responsible for the maintenance of balance is the ','pinna   ',' perilymph  ',' Ossicles   ',' cochlea','','','d','','utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:28'),(318,'The path followed by air as it passes through the lungs in mammals is  ','bronchi_ trachea_ alveoli_ bronchioles  ','Trachea _ Bronchiole _ bronchi_ alveoli   ','bornchioles _ alveoli _ bronchi_ trachea   ','trachea_ bronchi _ bronchioles_ alveoli','','','d','','utme','2011',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:29'),(319,'The movement response of a cockroach away  from a light source can be described as  ','negative phototaxism  ','negative photropism','positive  photropism  ','positive phototaxism','','','a','','utme','2011',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:30'),(320,'The vascular tissues in higher plants are responsible for  ','suction pressure  ','transpiration pull','the transport of gases and water   ','the movement of food and water','','','d','','utme','2011',184,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:31'),(321,'Which of the following organs regulates the levels of water, salts, hydrogen ions and urea in the mammalian blood?','kidney','bladder  ','colon  ','liver','','','a','','utme','2011',164,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(322,'The sequence of the one way gaseous exchange mechanism in a fish is','gills _ operculum _ mouth','mouth_operculum_ gills  ','mouth _gills _operculum','operculum _ gills_ mouth','','','c','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:33'),(323,'The  type of asexual reproduction that is common to both paramecium and protists is','speculation  ','fragmentation','fission','budding','','','c','','utme','2011',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:34'),(324,'In nature, plants and animals are perpetually engaged in mutulism because  ','all animals rely on food produced  by plants','they  utilize respiratory wastes of each other  ','they are neighbours  ','they are rivals','','','b','','utme','2011',143,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:35'),(325,'In an experiment to determine the percentage of humus and water in a soil sample, the following results were obtained. \\nWeight of the evaporating basin alone = 80.5g   Weight of basin and soil = 101.5g    Weight after drying the soil in the oven = 99.0g    Weight of basin and roasted soil = 95.5h\\nThe percentage of humus in the soil sample is  \\n','17.60%','26.70%','16.20%','16.70%','','','d','','utme','2011',156,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:36'),(326,'An example of a filter-feeding animals is','butterly  ','whale','mosquito  ','shark','','','b','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:37'),(327,'Which of the  following is a feature of the population Pyramid of a developing country?  ','Low birth rate','low death rate  ','short lifespan','long lifespan','','','c','','utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:38'),(328,'the interaction of a community of organisms with its abiotic environment constitutes','a food chain','an ecosystem  ','a microhabitat','a niche','','','b','','utme','2011',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:39'),(329,'The vector of the malaria parasite is a','female anopheles mosquito  ','male culex mosquitoes','female culex mosquito  ','female Aids mosquito','','','a','','utme','2011',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:40'),(330,'Which of the following  instruments is used  to measure relative humidity?','Thermometer  ','Hygrometer  ','Anemometer','Hydrometer','','','b','','utme','2011',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:41'),(331,'Exo-erythrocytic phase  of the life cycle  of malaria parasite occurs in the','reticuloendothelial cells of humans','maphigian tubules of mosquito','brain of humans  ','liver  of humans','','','d','','utme','2011',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:42'),(332,'Habitats are generally classified into  ','aquatic and terrestrial','arboreal  and marine biomes','microhabitats and macro habitats','biotic and abiotic','','','a','','utme','2011',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:43'),(333,'Drancunculiasis can be contacted  through  ','drinking contaminated water','bathing in contaminated water  ','bites of blackfly   ','eating contaminated food','','','b','','utme','2011',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:44'),(334,'Which of the following groups of environmental factors are density dependent?  ','Temperature, salinity, predation and disease   ',' Food, predation, disease and accumulation of metabolites  ','Temperature, food disease and light  ','food, salinity, accumulation  of metabolites and light','','','b','','utme','2011',192,'Admin','0000-00-00 00:00:00','2020-07-14 13:31:56'),(335,'Millet, sorghum, maize and onions are common crops grown in Nigerian in the  (a) Sudan savanna','montane forests   ','Sahel savanna','Tropical rainforests','','','','a','','utme','2011',157,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:46'),(336,'In which of the following biomes is the south western part of Nigeria located?  ','Tropical rainforest  ','Tropical woodland  ','desert','Temperature forest','','','a','','utme','2011',175,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(337,'Lack of space in a population  could lead to an increase in','birth rate','disease rate','drought   ','water  scarcity','','','b','','utme','2011',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:48'),(338,'The inheritable characters that are determined by a gene located only on the X-chromosome is  ','sex linked','homozygous  ','dominant  ','recessive','','','a','','utme','2011',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:49'),(339,'If the cross of a red  flowered plant with a white flowered plant produces a pink flowered plant, it is an example of','incomplete dominance  ',' mutation  ',' linkage','co dominance','','','d','','utme','2011',203,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:50'),(340,'Which of the following theories was NOT considered by Darwin in his evolutionary theory?','survival of the fittest  ','use and disuse  ','competition ',' variation','','','b','','utme','2011',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:51'),(341,'The crossing of individuals of the same species with different genetic characters is',' polygenic inheritance  ',' non disjunction  ','inbreeding','cross breeding','','','c','','utme','2011',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:58'),(342,'The number of alleles controlling  blood groups in humans is','4','5','2','3','','','d','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(343,'During blood transfusion, agglutination may occur as a result of the reaction between','two different antigens  ','two different antibodies  ','similar antigens and antibodies  ','contrasting antigens and antibodies','','','d','','utme','2011',183,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:00'),(344,'The fallacy in Lamarck’s evolutionary theory was the  assumption that','acquired traits  are heritable','acquired traits are seldom formed','traits  are acquired  through the use of body parts  ','traits are acquired through disuse  of body parts.','','','c','','utme','2011',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:01'),(345,'The brightly coloured eye spots on the hind wings of a moth are an example of ',' disruptive colouration',' continuous variation    ','divergent  Evolution','convergent  evolution','','','d','','utme','2011',175,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(346,'Which of the following is most advanced in the evolutionary trend of animals?  ',' Liver fluke  ','Earthworm','Snail  ','cockroach','','','d','','utme','2012',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:10'),(347,'Which of the following is the lowest category of  classification?  ','Class   ','species  ','Family','Genus','','','b','','utme','2012',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:11'),(348,'Plants  that show secondary growth are usually found among the','thallophytes','pteridophytes','monocotyledons  ','dicotyledons','','','d','','utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:12'),(349,'The fungi are a distinct group of eukaryotes mainly  because they have  ','spores  ','no chlorophyll  ','many fruiting bodies','sexual and asexual reproduction','','','d','','utme','2012',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:13'),(350,'An arthropod that is destructive at the early stage of its life cycle is','butterfly  ','mosquito  ','bee','millipede','','','a','','utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:14'),(351,'An animal body that can be cut along its axis in any plane to give two identical parts is said to be  ','radically  symmetrical','bilaterally symmetrical','asymmetrical','symmetrical','','','a','','utme','2012',159,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:15'),(352,'Which  of the following possesses mammary gland?','Dogfish','Whale  ','Shark  ','Catfish','','','b','','utme','2012',205,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:16'),(353,'The feature  that links birds to reptiles in evolution is the possession of  ','feathers  ','beak  ','skeleton','scales','','','d','','utme','2012',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:17'),(354,'Counter shading is an adaptive  feature that enables animals to  ','flight enemies  ','remain undetected','warn enemies  ','attract mates','','','b','','utme','2012',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:18'),(355,'Which of the following plant structures lacks a waterproof of cuticle?  ','leaf  ','stem  ','root','shoot','','','c','','utme','2012',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:19'),(356,'In the mammalian male reproductive system, the part that serves as a passage for both urine and semen is the ','urethra  ','ureter  ','bladder','seminal vesicle','','','a','','utme','2012',168,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(357,'In plants, which of the  following is required in minute quantities  for growth?','copper  ','potassium','phosphorous','sodium  ','','','a','','utme','2012',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:21'),(358,'Which of the following organisms is both parasitic and  autotrophic?  ','Sundew  ','Loranthus','Rhizopus  ','tapeworm','','','a','','utme','2012',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:23'),(359,'A function of the hydrochloric acid produced in the human stomach during digestion is to  ','neutralize the effect of bile   ','coagulate milk protein and emulsify fats  ','stop the action of ptyalin  ','break up food into smaller particles','','','c','','utme','2012',183,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:24'),(360,'Which of the following is a polysaccharide?','Glucose  ','sucrose','Maltose   ','Cellulose','','','d','','utme','2012',188,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:25'),(361,'In the kidney of mammals, the site of ultra filtration is the','urinferous tuble','Bowman capsule  ','loop of Henle  ','renal tuble','','','b','','utme','2012',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:26'),(362,'Which of the following  is involved1 in secondary  thickening in plants?','collenchyma  and  xylem cells  ','Vascular cambium and collenchyma’s cells  ','vascular cambium and cork cambium','Cork cambium and sclerenchyma','','','c','','utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:27'),(363,'An example of a fruit  that develops from a single carpel is','(a)okro  ','tomato','bean  ','orange','','','c','','utme','2012',157,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:28'),(364,'Plant  growth can be artificially stimulated by the addition of  ','gibberellin  ','kinin','abscisic acid  ','ethylene','','','a','','utme','2012',178,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(365,'The autonomic nervous system consists of neurons that control the','voluntary  muscle','heart beat','tongue  ','hands','','','b','','utme','2012',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:29'),(366,'Plants of temperate origin can be grown in tropical areas in the vegetation zones of the','rain forest   ','Guinea savanna   ','Sudan savanna','montane forest','','','d','','utme','2012',189,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:30'),(367,'The water cycle is maintained mainly by   ','evaporation  of water in the environment  ','evaporation and condensation of water  in the environment  ','condensation of water in the environment  ','transpiration and respiration in plants','','','b','','utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:31'),(368,'Organisms living in an estuarine habitat are adapted to  ','withstand   wide fluctuations in temperature   ','survive only in water with low salinity   ','withstand wide fluctuations in salinity   ','feed only on phytoplankton and dead organic matter.','','','c','','utme','2012',172,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:32'),(369,'The presence of stilt roots, pneumatophores, sunken stomata and salt glands are adaptive features of plants found in the','tropical rainforest','mangrove swamps  ','grassland  ','montane forest','','','b','','utme','2012',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:33'),(370,'Which of the following animals an exist solely on the water they get from food and metabolic reactions?  ','Forest arboreal dwellers  ','Desert dwellers','forest ground dwellers','rainforest dwellers','','','b','','utme','2012',190,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:45'),(371,'The most likely first colonizers of a bare rock are  ','mosses  ','ferns','lichen  ','fungi','','','c','','utme','2012',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:46'),(372,'The carrying capacity of a habitat is reached when the population growth begins to','increase slowly','increase exponentially','slow down','remain steady','','','d','','utme','2012',198,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(373,'The abiotic factors that  control human population include  ','disease and famine  ','space and rainfall  ','flooding and earthquake   ','temperature','','','a','','utme','2012',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:49'),(374,'An indigenous method of renewing and maintaining  soil fertility is by','clearing farms a by burning','planting one crop type  ','adding inorganic fertilizers yearly   ','crop rotation and shifting cultivation','','','d','','utme','2012',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:50'),(375,'The disease caused by water-brone pathogen include','gonrrhoea and poliomyelitis   ','typhoid and syphilis   ','tuberculosis and cholera','typhoid and cholera','','','d','','utme','2012',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:51'),(376,'Which of the following is true in blood transfusion?','a person of blood group AB can donate blood only to another person of blood group AB','Persons of blood groups A and B can donate or receive blood from each other','A person of blood group AB can receive blood only from persons of blood group A or B  ','A person of blood group O can donate only to a person of blood group O.','','','a','','utme','2012',177,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(377,'A yellow maize is planted and all the fruits obtained are of yellow seeds. When they are cross bred, yellow seeds and white seeds are obtained in a ratio 3:1. The yellow seed is said to be  ','non heritable','sex linked','a recessive trait  ','a dominant trait','','','d','','utme','2012',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:53'),(378,'When a colour blind man marries a carrier woman. What is the probability of their offspring being colorblind?','25%','50%','75%','100%','','','c','','utme','2012',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:54'),(379,'The correct base pairing for DNA is','adenine _ thymine and guanine_ cytosine  ','adenine_ guanine and thymine_ cytosine  ','adenine_ cytosine and guanine_ thymine  ','adenine_ adenine  and cytosine_cytosine','','','a','','utme','2012',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:59'),(380,'The short thick beak in birds is an adaptation for','crushing seeds','sucking nectar  ','tearing flesh','straining mud','','','a','','utme','2012',204,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(381,'The basking of Agama lizards in the sun is to','chance the colour of their body  ','raise their body temperature to become active','fight to defend their territories','attract the female for courtship','','','b','','utme','2012',161,'Admin','0000-00-00 00:00:00','2020-07-14 06:48:10'),(382,'The significance of a very large number  of termites involved in nuptial swarming is to','provide birds with plenty of food','ensure their perpetuation despite predatory pressure  ','search for a favourable place to breed  ','ensure that every individual gets a mate.','','','c','','utme','2012',192,'Admin','0000-00-00 00:00:00','2020-07-14 02:25:41'),(383,'The use and disuse of body parts and the inheritance of acquired traits were used to explain  ','Darwin’s theory','Lamarck’s theory','genetic drift  ','gene flow','','','b','','utme','2012',160,'Admin','0000-00-00 00:00:00','2020-07-14 02:23:21'),(384,'From his study of Galapagos finches, Darwin derived his theory of evolution from ',' comparative anatomy','comparative physiology',' fossil remains  ','comparative embryology.','','','a','','utme','2012',146,'Admin','0000-00-00 00:00:00','2020-07-14 02:19:58');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `chemistry` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `chemistry` VALUES (1,'25cm3 of a gas X contains Zmolecules at 150C and 75mmHg. How many molecules will 25cmm3 of another gas Y contain at the same temperature and pressure','2Y','2Z','Z','Y','','','c','','utme','2001',1228,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:10'),(2,'What mass of water is produced when 8.0g of hydriogen reacts with excess oxygen [H = 1, O = 16]','36.0g','8.0g','72.0g','16.0g','','','c','','utme','2001',1187,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:11'),(3,'A particle that contains 9 protons, 10 neutrons and 10electrons is a','Neghative ion','Positive ion','Neutral atom of a non metal','Neutral atom of a metal','','','a','','utme','2001',1153,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:12'),(4,'Cancerous growths are cured by exposure to','ɣ-rays',' β – rays',' ἀ – rays','X -rays','','','a','','utme','2001',1170,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(5,'An oxide X02 has a vapour density of 32. What is the atomic mass of X [O = 16]','32','20','14','12','','','a','','utme','2001',1169,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(6,'Milikan’s contribution to the development of atomic theory is the determination of','Charge on electron','Positive rays','Charge to amss ratio','Cathode rays','','','c','','utme','2001',1121,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:15'),(7,'Four elements W, X, Y, and Z have atomic numbers 2, 6, 16 and 20 respectively. Which of these elements is a metal','X','W','Z','Y','','','c','','utme','2001',1229,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:16'),(8,'An element X with relative atomic mass 16.2 contains two isotopes      X  with relative abundance of 90% and      X with relative abundance of 10%. The value of m is','16','18','12','14','','','b','','utme','2001',1206,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:17'),(9,'Which of the following statements is correct about the average kinetic energy of the molecules of a gas','It inctreasaes with increase in pressure','It increases at constant pressure','It increases with increase in temperature','It increases in volume','','','c','','utme','2001',1208,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:18'),(10,'The pollution from petroleum spillage in rivers and lakes can best be dispersed by','Pouring detergents','Passing of ships through the area','Pouring organic solvents','Evaporation','','','a','','utme','2001',1218,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:19'),(11,'Deliquenscent substances are used for','Cooling','Wetting','Melting','Drying','','','d','','utme','2001',1207,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:20'),(12,'Pure solvents are obtained by','Distillation','Condensation','Extraction','EvapopraTION','','','a','','utme','2001',1128,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:22'),(13,'What is the decrease in volume of air when pyrogallol is shaken with 30.00cm3 of air','15.00cm3','6.00cm3','0.63cm3','0.06cm3','','','b','','utme','2001',1165,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(14,'Environmental pollution is worsened by the release from automobile exhausts of','Water vapour','Steam','Smoke','Heavy metals','','','c','','utme','2001',1176,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:24'),(15,'The chemiocal used for coagulation in water purification is','Aluminum tetraoxosulphate(VI)','Copper tetratoxosulphate (VI)','Sodium tetraoxosulphate(VI)','Calcium tetraoxosulphate (VI)','','','a','','utme','2001',1168,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:25'),(16,'Phosphorous is stored under water to precvent it from','Dehydrating','Becoming inert','Smelling','Catching fire','','','d','','utme','2001',1097,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(17,'In which of the following reactuions does reduction take place','Fe2+ - e-   Fe3+','2O2-  → O2 + 4e-','Cr - 2e-  → Cr2+','2H+  +  2e-   →H2','','','d','','utme','2001',1174,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(18,'P(g) + O(g)    ⇌ 3R(s)  +  S(g)   ΔH is negative which of the following will increase the yield of R','Using a larger closed vessel','Increasing the temperature','Removing some S','Adding a positive catalyst','','','c','','utme','2001',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:28'),(19,'A metal M displaces zinc from zinc chloride solution. This shows that','M is more electronegative than zinc','Zinc is above hydrogen in the series','M is more electropositive than zinc','Electrons flow from zinc to M','','','c','','utme','2001',1231,'Admin','0000-00-00 00:00:00','2020-07-15 06:08:31'),(20,'Which of the following best explains the increase in the rate of a chemical reaction as the temperature rises','The bonds in the reacting molecules are more readily broken','The molecules collisions become more violent','A lower proportion of the molecules has the necessary minimum energy to react','The collision frequency of the molecules increases','','','d','','utme','2001',1157,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:30'),(21,'What current in amperes will deposit 2.7g of aluminium in 2 hours [Al = 27, f = 96500 C mol-1]','32','8','4','16','','','c','','utme','2001',1159,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(22,'Ethanoic acid is','Tribasic','Unionizeable','Monobasic','Dibasic','','','c','','utme','2001',1180,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(23,'C(s) + 2S (g)  → CS2 (g)      Δ H = +89kJ mol-1. The chemical equation above implies that','Each of carbon and sulphur has 89kJ of energy','Both carbon and sulphur contribute 89kJ of energy','89kJ of energy is released','89kJ is absorbed','','','d','','utme','2001',1136,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(24,' 2SO2(g) + O2(g) ⇌  2SO3(g)  The equilibrium constant for the reaction above is increased by  [ΔH = -189kJ mol -1]','Increasing the temperature of the system','Increasing the pressure of the system','The addition of a catalyst to the system','Increasing the surface area of the vessel','','','b','','utme','2001',1165,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:34'),(25,'3CU(s)  +  8HNO3(aq) →  3Cu(NO3)2(aq)  +  4H2O(I)  +  2NO(g)  In the equation above, copper is','An electron acceptor','A base','An oxidizing agent','A reducing agent','','','d','','utme','2001',1164,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(26,'When ΔH is negative, a reaction is said to be','Ionic','Reversible','Exothermic','Endothermic','','','c','','utme','2001',1196,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:36'),(27,'As the concentration of an electrolyte reduces, the conductivity','Reduces to zero','Decreases','Increases','Is unaffected','','','b','','utme','2001',1165,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(28,'In which of the following reactions has the oxidation number of nitrogen increased','2NO(g)  +  Br2(l)  → 2NOBr(l)','2NO2(g)  +  O2(g)   → 2NO2(g)','FeSO4(aq)  +  NO(g) → Fe(NO)SO4(s)','2NO(g)  +  CI2(g) →  2NOCI(l)','','','b','','utme','2001',1083,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:38'),(29,'NH3(g)  +  HCI(g)  → NH4CI(s) The entropy change in the system is','Negative','Indeterminate','Positive','Zero','','','b','','utme','2001',1138,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(30,'Fermentation is the','Breaking down of carbohydrate to glucose','Conversion of sugar to alcohol in the presence of yeast','Breaking down of sugar to carbohydrate','Conversion of alcohol to sugar in the presence of yeast','','','b','','utme','2001',1163,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:40'),(31,'The general formula for the alkanals is','ROH','R2CO','RCOOR1','RCHO','','','d','','utme','2001',1183,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(32,'The main impurity in iron ore during the extraction of iron is','Silicon (IV) oxide','Carbon(IV) oxide','Calciumtrioxosilicate','Sulphur(II) oxide','','','a','','utme','2001',1165,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:42'),(33,'During the vulcanization of rubber, sulphur is added to','Break down rubber polymer','Lengthen the chain of rubber','Bind rubber molecules together','Act as a catalyst','','','c','','utme','2001',1155,'Admin','0000-00-00 00:00:00','2020-07-15 06:08:31'),(34,'Catalytic hydrogenation of benzene produces','Oil','Cyclohexane','Cycloexane','Margarine','','','c','','utme','2001',1227,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:50'),(35,'A trihydric alkanol is','glycerol','phenol','glycol','ethanol','','','a','','utme','2001',1127,'Admin','0000-00-00 00:00:00','2020-07-15 06:08:31'),(36,'When chlorine is passed into water and the resulting solution exposed to sunlight, the product formed are','Chlorine gas and hydrogen','Oxygen and oxochlorate(l) acid','Hydrochloric acid and oxygen','','','','b','','utme','2001',1202,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:52'),(37,'Proteins in acid solution undergo','Polymerization','Substitution','Fermentation','Hydrolysis','','','d','','utme','2001',1176,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(38,'A characteristic reaction of the compounds with the general formula CnH2n is','Esterification','Polymerization','Decarboxylation','Substitution','','','b','','utme','2001',1193,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:54'),(39,'The pair of organic compounds that are isomers is','Benzene and methylbenzene','Trichloromethane and Tetrachloromethane','Ethanol and propanone','But-1-ene and but-2-ene','','','d','','utme','2001',1135,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:55'),(40,'A burning candle produces water and','Carbon(II)oxide','Carbon(IV) oxide','Oxygen','Hydrogen','','','d','','utme','2001',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:56'),(41,'The gas that can best be collected by downward displacement of air is','Chlorine','Sulphur(IV)oxide','Ammonia','Carbon(IV)oxide','','','c','','utme','2001',1207,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:57'),(42,'Which of the following metals burns brick with a brick-red','Pb','Ca','Na','Ma','','','b','','utme','2001',1164,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:58'),(43,'Which of the followinig respresents hybridization in ethyne?','Sp2','Sp2d','Sp3','sp','','','d','','utme','2001',1179,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:59'),(44,'When sodium reacts with water, the resulting solution is','weakly acdic','neutral','acidic','alkaline','','','d','','utme','2001',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:00'),(45,'Which of the following gases contains the least number of atoms at s.t.p','4 moles of chlorine','3 moles of ozone','1 mole of butane','7 moles of argon','','','c','','utme','2002',1143,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:01'),(46,'A compound contains 31.91% potassium, 28.93% chlorine and the rest oxygen. What is the chemical formular of the compound','KCLO3','KCLO4','KCLO','KCLO2','','','a','','utme','2002',1109,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:02'),(47,'The formula CH2O for ethanoic acid is regarded as its','General formula','Structural formula','Molecular formula','Empirical formula','','','d','','utme','2002',1121,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(48,'A little quantity of Trichloromethane (b.pt.600C) was added to a large quantity of ethanol (b.pt.780C). the most probable boiling point of the resultant mixture is from','699C – 700C','820C – 840C','600C – 780C','700C – 744C','','','d','','utme','2002',1130,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(49,'The chromatographic separation of ink is based on the ability of the components to','React with each other','React with the solvent','Dissolve in each other in the column','Move at different speeds in the column','','','d','','utme','2002',1146,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(50,'Steam changes the colour of anhydrous cobalt(II) chloride from','White to red','Blue to white','White to green','Blue to pink','','','d','','utme','2002',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:07'),(51,'Which of the following solutions containing only hydroxyl ions will liberate hydrogen gas when reacted with magnesium metal','1.0 x 10-2 mol dm-3','1.0 x 10-4 mol dm -3','1.0 x 10-5 mol dm-3','1.0 x 10-12 mol dm-3','','','d','','utme','2002',1111,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(52,'The substance least considered as a source of environmental pollution is','Silicate minerals','Uranium','Lead compounds','Organophosphorous compounds','','','a','','utme','2002',1173,'Admin','0000-00-00 00:00:00','2020-07-14 23:38:29'),(53,'The property which makes alcohol soluble in water is the','Hydrogen bonding','Covalent nature','Ionic character','Boiling point','','','c','','utme','2002',1167,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:10'),(54,'The furring of kettles is caused by the presence in water of','Calcium trioxocarbonate(IV)','Calcium tetraoxosulphate(VI)','CALCIUM HYDROXIDE','Calcium hydrofentrioxocarbonate(IV)','','','d','','utme','2002',1214,'Admin','0000-00-00 00:00:00','2020-07-15 08:07:35'),(55,'Tetraoxosulphate(VI) acid burns the skin by','Heating','Hydration','Dehydration','Hydrolysis','','','c','','utme','2002',1170,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:12'),(56,'When a salt loses its water of crystallization to the atmosphere on exposure, the process is said to be','Deliquescence','Effervescence','Efflorescence','Fluorescence','','','c','','utme','2002',1188,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:40'),(57,'Three drops of a 1.0 mol dm-3 solution of Na OH are added to 20cm3 of a solution of pH8.4. the pH of the resulting solution will be','Greater than 8.4','Unaltered','Close to that of pure water','Less than 8.4','','','a','','utme','2002',1140,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:15'),(58,'The solubility of a salt of molar mass 101g at 200C is 0.34mol dm-3. If 3.40g of the salt is dissolved completely in 250cm3 of water in a beaker, the resulting solution is','Unsaturated','A suspension','Saturated','Supersaturated','','','a','','utme','2002',1121,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:16'),(59,'25cm3 of a 0.2mol dm-3 solution of Na2CO3 requires 20cm3 of  solution of HCl for neutralization. The concentration of the solution is','0.6 mol dm-3','0.5 mol dm-3','0.4 mol dm-3','0.2 mol dm-3','','','b','','utme','2002',1147,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:17'),(60,'which of the following chlorides would exhibit the least ionic character','AlCl3','CaCl2','MgCi2','LiCl','','','a','','utme','2002',1164,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(61,'If 0.75 mole of cyclopropane and 0.66 mole of oxygen are mixed in a vessel with a total pressure of 0.7 atmosphere. What is the partial pressure of oxygen in the mixture','0.55 atmosphere','0.44 atmosphere','0.33 atmosphere','0.22 atmosphere','','','c','','utme','2002',1141,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:19'),(62,'The processes which return carbon(IV) oxide to the atmosphere include','Photosynthesis, decay and respiration','Photosynthesis, respiration and transpiration','Respiration, decay and combustion','Ozone, depletion, combustion and decay','','','c','','utme','2002',1159,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:20'),(63,'Which of the following statements is true of a proton.','The total mass of the protons in a particular nucleus always half the nuclear mass','The mass of a proton is 1840 times the mass of an electron','The mass proton is 1.0008g','The mass of a proton is one-twelfth the molar mass of carbon','','','b','','utme','2002',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:21'),(64,'A gas X diffuses twice as fast as gas Y under the same conditions. If the relative molecular mass of X is 28. Calculate the relative molecular mass of Y','120','14','56','112','','','d','','utme','2002',1138,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:22'),(65,'A fixed mass of gas has a  volume of 92cm3 at 30C. What will be be its volume at 180C if the pressure remains constant','15.3cm3','87.3cm3','97.0cm3','552.0cm3','','','c','','utme','2002',1118,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:23'),(66,'The postulate of Dalton’s atomic theory which still holds is that','Particles of different elements combine in a simple whole number ratio','Atoms can neither be created nor destroyed','The particles of the same element are exactly alike','All elements are made of small indivisible particles','','','a','','utme','2002',1135,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:24'),(67,'Ordinary glass is manufactured from silica, Ca CO3 and','K2CO3','NaHCO3','Na2CO3','K2SO4','','','c','','utme','2002',1149,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(68,'A rock sample was added to cold dilute HNMO3. The gas evolved was passed into a solution of acidified K2Cr2O7 and the solution turned green. The rock sample contains','NO3-','Cl-','SO42-','SO32-','','','d','','utme','2002',1106,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(69,'Hydrogen is readily released when dilute hydrochloric acid reacts with','Au','Cu','Na','Ag','','','c','','utme','2002',1107,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:27'),(70,'The most important use of hydrogen is in the','Hydrogenation of oils','Manufacture of methyl alcohol','Manufacture of ammonia','Manufacture of ethyl alcohol','','','c','','utme','2002',1163,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:28'),(71,'Which of the following gives a precipitate when treated with NaOH solution','Na2CO3','CH3COONa','NH4Cl','AlCl3','','','d','','utme','2002',1202,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:29'),(72,'The intermediate product formed when ethanol is progressively oxidized to ethanoic acid with potassium heptaoxodichromate(VI) is','Ethanol','Methanol','Butanal','Propanal','','','a','','utme','2002',1137,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:30'),(73,'The gas that gives brown colouration in brown ring test','Co2','NO2','NO','CO','','','b','','utme','2002',1065,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:31'),(74,'The boiling of fat and aqueous caustic soda is referred as','Saponification','Esterification','Acidification','Hydrolysis','','','a','','utme','2002',1168,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:32'),(75,'What volume of oxygen is produced from the decomposition of 2 moles of KClO3 at s.t.p   [Molar volume of a gas at s.t.p = 22.4 dm3]','22.4 dm3','33.6 dm3','44.8 dm3','67.2 dm3','','','d','','utme','2003',1082,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:33'),(76,'Which of the following is a physical change','Burning kerosene','Freezing ice-cream','Exposing white phosphorus to air','Dissolving calcium in water','','','b','','utme','2003',1160,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(77,'What is the percentage by mass of oxygen in Al2(SO4)3.2H2O','14.29%','25.39%','50.79%','59.25%','','','d','','utme','2003',1129,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:35'),(78,'The filter in a cigarette reduces the nicotine content by','Burning','Adsorption','Evaporation','Absorption','','','b','','utme','2003',1138,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:36'),(79,'3Cu  +  pHNO3  → 3Cu(NO3)2  +  4H2O  + xNO   In the equation above, the values of p and x respectively are','1 and 3','2 and 3','6 and 2','8 and 2','','','d','','utme','2003',1146,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:37'),(80,'Neutral atoms of neon with atomic number 10 have the same number of electrons as','O2+','Ca2+','K+','Mg2+','','','d','','utme','2003',1115,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:38'),(81,'The noble gases owe their inactivity to','Octet configuration','Cyclic shape','Hexagonal shape','Obtuse configuration','','','a','','utme','2003',1158,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:39'),(82,'According to the kinetic theory, an increase in temperature causes the kinetic energy of particles to','Decrease','Increase','Remain constant','Be zero','','','b','','utme','2003',1122,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:40'),(83,' I.  H = 1s1\\nII. O = 1s22s22p4\\nIII. N = 1s22s22p3\\nIV. Zn = 1s22s22p63s23p64s23d10\\nFrom the above, which of the following pairs is likely to be paramagnetic?\\n','I and II','I and  III','I    and IV','III  and IV','','','a','','utme','2003',1136,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:41'),(84,'A gas exerts pressure on its container because','Some of its molecules are moving faster than others','Of the collision of the molecules with each other','Of the mass of the molecules of gas','The molecules of a gas collide with the walls of the container','','','d','','utme','2003',1130,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:42'),(85,'When cathode rays are detected onto the electrode of an electrometer, the instrument becomes','Negatively charged','Positively charged','Neutral','Bipolar','','','a','','utme','2003',1159,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:43'),(86,'The weakest attractive force that can be observed between two molecules is','Ionic','Covalent','Coordinate covalent','Van der Waals','','','d','','utme','2003',1156,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:44'),(87,'A consequence of global warming is','Air pollution','Water pollution','Increased humidity','Flooding','','','d','','utme','2003',1150,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:45'),(88,'Which of the following ions is acidic','K+','NO-3','S2-','H3O+','','','d','','utme','2003',1183,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:46'),(89,'The structural component that makes detergent dissolve more quickly in water than soap is','–SO3 –Na+','–COO-Na+','–SO4- Na+','–COO-K+','','','a','','utme','2003',1155,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:46'),(90,'A liquid that will dissolve fast is','Hydrochloric acid','Calcium hydroxide','Kerosene','Water','','','c','','utme','2003',1123,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:47'),(91,'What mass of K2CrO4 is required to prepare 250cm3 of 0.020 mol dm-3 solution   [K2CrO4 = 194.2g mol-1]','0.97g','9.70g','19.42g','97.10g','','','a','','utme','2003',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:48'),(92,'Farmlands affected by crude –oil spillage can be decontaminated by','Adding acidic solutions','Using aerobic bacteria','Pouring water on the affected area','Burning off the oil from the area','','','b','','utme','2003',1167,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:49'),(93,'When 10g of sodium hydroxide is dissolved in 1000cm3 of water, the solution formed is approximately   [Na = 23, H = 1, O = 16]','0.01 mol dm-3','0.10 mol dm-3','0.25 mol dm-3','0.50 mol dm-3','','','c','','utme','2003',1157,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:50'),(94,'A charge in the temperature of a saturated solution disturbs the equilibrium between the','Dissolved solute and the solvent','Solvent and the undissolved solute','Dissolved solute and the undissolved solute','Dissolved solute and the solution','','','c','','utme','2003',1154,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:51'),(95,'If an equilibrium reaction has   H>0, the reaction will proceed favourably in the forward direction at','High temperature','Any temperature','Low temperature','Minimum temperature','','','a','','utme','2003',1112,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(96,'The commonest feature of the reactions at the anode is that','Electrons are consumed','Oxidation is involved','Ions are reduced','Electrode dissolves','','','b','','utme','2003',1115,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:53'),(97,'Which of the following will change when a catalyst is added to a chemical reaction','The activation energy','The potential energy of the reactants','The heat of reaction','The potential energy of the products','','','a','','utme','2003',1097,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(98,'If Y is an oxidizing agent that reacts with a reducing agent, Z, which of the following is correct','Y increases in oxidation number','Y becomes reduced','Z loses protons','Z gains protons','','','b','','utme','2003',1176,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:04'),(99,'When at equilibrium, which of the reactions below will shift to the right if the pressure is increased and the temperature is kept constant',' 2SO3(g)  ⇌  2SO2(g)  +  O2(g)',' 2CO2(g)  ⇌ 2CO(g)  +  O2(g)',' 2H2(g)  +  O2(g) ⇌  2H2O(g)',' 2NO(g)   ⇌ N2(g)  +  O2(g)','','','c','','utme','2003',1114,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:05'),(100,'In the electrolysis of a concentrated solution of sodium chloride using inert electrodes, which of the following ions are discharged at the cathode and anode respectively','Na+ and Cl-','Na+ and OH-','H+ and OH-','H+ and Cl-','','','d','','utme','2003',1161,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:06'),(101,' CO(g) + H2O(g) ⇌  CO2(g)  +  H2(g)\\nFrom the reaction above, calculate the standard heat change if the standard enthalpies of formation of CO2 (g), H2O (g) and CO (g) in kJ mol-1 are -394, -242 and -110 respectively.\\n','-262 kJ  mol-1','-42kJ mol-1','+42 kJ mol-1','+262 kJ mol-1','','','b','','utme','2003',1118,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:07'),(102,'When sugar is dissolved in tea, the reaction is always accompanied by','Positive entropy change','Negative entropy change','No entropy change','A minimum entropy change','','','a','','utme','2003',1093,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:08'),(103,'Which of the following is an electrolyte','Alcohol','Sodium acetate solution','Solid potassium hydroxide','Mercury','','','b','','utme','2003',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(104,'Chlorine gas is prepared in the laboratory by','Adding concentrated hydrochloric acid to solid manganese (IV) oxide','Adding concentrated tetraoxosulphate (VI) acid to solid sodium chloride','Dropping concentrated hydrochloric acid onto potassium tetraoxomanganate (VII) crystals','Oxidizing concentrated hydrochloric acid using potassium heptaoxodichromate (VI) crystals','','','a','','utme','2003',1153,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(105,'Metals of the first transition series have special proper ties which are different from those of groups I and II elements because they have partially filled','s  orbitals','p orbitals','d orbitals','f orbitals','','','c','','utme','2003',1167,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(106,'Hydrogen can be displaced form a hot alkaline solution by','Fe','Cu','Ca','Sn','','','d','','utme','2003',1113,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:29'),(107,'Which of the following statements is true of sulphur (IV) oxide','It forms Tetraoxosulphate (VI) acid with water','It is an odourless gas','It is an acid anhydride','It forms white precipitate with acidified barium chloride','','','c','','utme','2003',1192,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:30'),(108,'The salt that will form a precipitate soluble in excess ammonia solution is','Ca(NO3)2','Cu(NO3)2','Mg(NO3)2','Al(NO3)3','','','b','','utme','2003',1088,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(109,'The metal that liberates hydrogen from cold water in bubbles only is','Na','K','Ca','Al','','','c','','utme','2003',1113,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:32'),(110,'Chlorine gas turns a damp starch-iodide paper','Pink','Colourless','Red','Dark blue','','','d','','utme','2003',1138,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(111,'The modern process of manufacturing steel from iron is by','Treatment with acids','Oxidation','Blast reduction','Treatment with alkalis','','','c','','utme','2003',1097,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:33'),(112,'Ethene reacts with hydrogen bromide to give','CH2Br2','CH3CH2Br','C2H2Br2','CHBr3','','','b','','utme','2003',1082,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(113,'Carbohydrates are compounds containing carbon, hydrogen and oxygen in the ratio','3:01:01','2:01:01','1:02:01','1:01:01','','','c','','utme','2003',1110,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(114,'How many isomers does pentane have','6','5','4','3','','','d','','utme','2003',1165,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:36'),(115,'The leachate of a certain plant ash is used in local soap making because it contains','Sodium chloride and potassium hydroxide','Sodium hydroxide','Potassium hydroxide','Soluble carbonates and hydrogen carbonates','','','c','','utme','2003',1164,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:37'),(116,'The formula for ethyl butanoate is','C3H7COOC2H5','C2H5COOC3H7','C4H9COOC2H5','C2H5COOC4H9','','','a','','utme','2003',1135,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:38'),(117,'The type of reaction that is peculiar to benzene is','Addition','Hydrolysis','Polymerization','Substitution','','','d','','utme','2003',1113,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(118,'Ethanol reacts with excess acidified K2Cr2O7 to produce','Ethanoic acid','Ethanol','Ethyl ethanoate','Ethanoic acid','','','d','','utme','2003',1108,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(119,'A compound contains 40.0% carbon, 6.7% hydrogen and 53.3% oxygen. If the molar mass of the compound is 180, find the molecular formula  [H = 1, C = 12, O = 16]','CH2O','C3H6O3','C6H12O6','C6H6O3','','','c','','utme','2003',1138,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(120,'The process by which atoms are rearranged into different molecular structures in the petroleum refining process is referred to as','Catalytic cracking','Hydrocracking','Polymerization','Reforming','','','d','','utme','2003',1152,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:42'),(121,'Which of the following is found in cotton','Starch','Cellulose','fat','oil','','','b','','utme','2003',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:43'),(122,'the principal constituent of natural gas is methane','ethane','propane','butane','butane','','','a','','utme','2003',1094,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:44'),(123,'When a solid substance disappears completely as a gas on heating, the substance is said to have under gone','Evaporation','Distillation','Crystallization','Sublimation','','','d','','utme','2004',1215,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:45'),(124,'A chemical reaction is always associated with','An increase in the composition of one of the substances','A change in the volume of the reactants','A change in the nature of the reactants','The formation of new substances','','','d','','utme','2004',1123,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:46'),(125,'If a solution contains 4.8g of Tetraoxosulphate (VI) acid. Calculate the amount of copper(II) oxide that will react with it  [CU = 64, O = 16, S = 32, H = 1]','0.8g','4.0g','40.0g','80.0g','','','b','','utme','2004',1125,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:39'),(126,'What volume of gas is evolved at s.t.p. if 2g of calcium trioxocarbonate(IV) is added to a solution of hydrochloric acid    [Ca = 40, C = 12, O = 16, CI = 35.5, H = 1, Molar volume of a gas at s.t.p = 22.4dm3]','112cm3','224cm3','448cm3','224cm3','','','c','','utme','2004',1135,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(127,'According to Charles  law, the volume of a gas becomes zero at','00C','-1000C','-2730C','-3730C','','','c','','utme','2004',1103,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(128,'It is difficult to achieve an orderly arrangement of the molecules of a gas because they','Have no definite shape','Have little force attraction between them','Can collide with one another in the container','Are too small in size','','','b','','utme','2004',1151,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(129,'A given volume of methane diffuses in 20s. how long will it take the same volume of sulphur(IV) oxide to diffuse under the same conditions    [C = 12, H = 1, S = 32, O = 16]','5s','20s','40s','60s','','','c','','utme','2004',1144,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(130,'An electron can be added to a halogen atom to form a halide ion with','2 valence electrons','3 valence electrons','7 valence electrons','Valence electrons','','','d','','utme','2004',1126,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:52'),(131,'The shape of the s-orbital is','Spherical','Elliptical','Spiral','Circular','','','a','','utme','2004',1198,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:53'),(132,'The property of chlorine which causes hydrogen chloride to be more ionic than the chlorine molecule is its','Electrovalency','Electron affinity','Electropositivity','Electronegativity','','','d','','utme','2004',1111,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:54'),(133,'Chlorine consisting of two isotopes of mass numbers 35 and 37 in the ratio 3:1 has an atomic mass of 35.5. Calculate the relative abundance of the isotope of mass number 37.','20','25','60','75','','','b','','utme','2004',1124,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:55'),(134,'Which of the following mixtures of gases is likely to burn in flame','Neon and hydrogen','Nitrogen and helium','Helium and neon','Neon and nitrogen','','','a','','utme','2004',1115,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:56'),(135,'Hardness of water is caused by the presence of the ions of','Magnesium and silver','Calcium and magnesium','Sodium and potassium','Calcium and sodium','','','b','','utme','2004',1192,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(136,'Pollution of underground water by metal ions is very likely in a soil that has high','Acidity','Alkalinity','Chloride content','Nitrate content','','','a','','utme','2004',1133,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(137,'A carcinogenic substance is','Asbestos dust','Sawdust','Nitrogen(II) oxide','Carbon (II) oxide','','','a','','utme','2004',1068,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(138,'The solubility in mol dm-3 of 20g of CuSO4 dissolved in 100g of water at 1800C is  [Cu = 64, S = 32, O = 16]','0.13','0.25','1.25','2','','','c','','utme','2004',1116,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:00'),(139,'Calcium Tetraoxosulphate(VI) dissolves in water only sparingly to form a','Solution','Suspension','Precipitate','Colloid','','','d','','utme','2004',1115,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(140,'Which of these compounds is a normal salt','NaHS','NaSO4','NaHCO3','Na2CO3','','','d','','utme','2004',1080,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:03'),(141,'What volume of 0.5mol dm-3 H2SO4 will exactly neutralize 20cm3 of 0.1 mol dm-3 NaOH solution','2.0cm3','5.0cm3','6.8cm3','8.3cm3','','','a','','utme','2004',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:04'),(142,'The oxidation state of chlorine in HClO4 is','-5','-1','1','7','','','d','','utme','2004',1163,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(143,'ZnO(s) + CO (g) → Zn(s) + CO2 (g). ','Decomposed','Displaced','Oxidized','Reduced','','','d','','utme','2004',1130,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:06'),(144,'Which of the following acts as both a reducing and an oxidizing agent','H2','SO2','H2S','CO2','','','b','','utme','2004',1154,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:40'),(145,'In the electrolysis of brine, the anode is','Platinum','Copper','Zinc','Carbon','','','d','','utme','2004',1069,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:09'),(146,'The mass of silver deposited when a current of 10A is passed through a solution of silver salt for 4830s is    [Ag = 108, F = 96500 Cmol-1]','108.0g','54.0g','27.0g','13.5g','','','b','','utme','2004',1162,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(147,' 2CO(g)  +  O2(g) →  2CO2(g)\\nGiven that   Δ H [CO] is 110.4kJ mol-1 and Δ H [CO2] is -393.0kJ mol-1, the energy change for the reaction above is\\n','-503.7kJ','-282.6kJ','+282.6kJ','+503.7kJ','','','N','','utme','2004',1101,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(148,'Which of the following hydrogen halides has the highest entropy value','HF','HCl','HBr','Hl','','','a','','utme','2004',1057,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:11'),(149,' N2O4(g)    ⇌  2NO2(g)','A constant volume','An increase in pressure','A decrease in pressure',' A decrease in volume','','','c','','utme','2004',1119,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(150,'Which of the following shows little or no net reaction when the volume of the system is decreased',' H2(g)  +  l2(g)  ⇌  2Hl(g)','2NO2(g)  ⇌  N2O4(g)',' PCl5(g)   ⇌ PCl3(g)  + Cl2(g)',' 203(g)   ⇌  3O2(g)','','','a','','utme','2004',1151,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(151,'The allotrope of carbon used in the decolourization of sugar is','Graphite','Soot','Charcoal','Lampblack','','','c','','utme','2004',1111,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:14'),(152,'Which of the following gases can be collected by the method of downward delivery','Chlorine','Oxygen','Ammonia','Hydrogen','','','a','','utme','2004',1148,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:15'),(153,'Which steam is passed over red-hot carbon, the substances produced are','Hydrogen and trioxocarbonate(IV) acid','Hydrogen, oxygen and carbon(IV) oxide','Hydrogen and carbon (II) oxide','Hydrogen and carbon (IV) oxide','','','c','','utme','2004',1173,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:16'),(154,' sulphur (IV) oxide bleaches by','Reduction','Oxidation','Hydration','Absorption','','','a','','utme','2004',1159,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:17'),(155,'Carbon is tetravalent because','The electrons in both the 2s and 2p orbitals are equivalent','The electrons in all the orbitals of carbon are equivalent','The 2s and 2p atomic orbitals hybridize','All the atomic orbitals of carbon hybridize','','','c','','utme','2004',1131,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:18'),(156,'Aluminium hydroxide is used in the dyeing industry as a','Salt','Dye','Mordant','Dispersant','','','c','','utme','2004',1076,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:25'),(157,'Alloys are best prepared by','Electroplating','Arc-welding','Reducing a mixture of their metallic oxides','Cooling a molten mixture of the metals','','','d','','utme','2004',1170,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:27'),(158,'Transition metals posses variable oxidation states because they have','Electrons in the d orbitals','Electrons in the s orbitals','A variable number of electrons in the p orbitals','Partially filled p orbitals','','','d','','utme','2004',1161,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:28'),(159,'Sodium metal is always kept under oil because it','Readily reacts with water','Is reduced by atmospheric nitrogen','Reacts vigorously on exposure to air','Reacts with oxygen and carbon(IV) oxide','','','c','','utme','2004',1137,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:29'),(160,'Oxyacetylene flame is used for iron-welding because it',' makes the iron metal solidity very quickly','Combines with oxygen to give a pop sound','Evolves a lot of heat when burnt','Dissociates to produce carbon (IV) oxide and oxygen','','','c','','utme','2004',1088,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:30'),(161,'The alkyl group can be represented by the general formula','CnH2n+1','CnH2n','CnH2n+2','CnH2n-2','','','a','','utme','2004',1072,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:31'),(162,'An isomer of C5H12 is','Butane','2-methylbutane','2-methylprpane','2-ethylbutane','','','b','','utme','2004',1174,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(163,'A characteristic of the alkane family is','Addition reaction','Elimination reaction','Substitution reaction','Neutralization reaction','','','c','','utme','2004',1081,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(164,'Which of these reagents can confirm the presence of a triple bond','Bromine water','Acidified KMnO4 ','Copper (I) chloride','Bromine gas','','','c','','utme','2004',1115,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:33'),(165,'Vulcanization involves the removal of','A monomer','The single bond','The double bond','A polymer','','','c','','utme','2004',1104,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(166,'The reaction above is','Carboxylation','Decarboxylation','Acidification','Esterification','','','b','','utme','2004',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:35'),(167,' Alkanol + Alkanoic acid ⇌  Ester + water.\\nThe reverse reaction of the equation above is known as\\n','Hydrolysis','Saponification','Hydration','Fermentation','','','a','','utme','2004',1077,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(168,'In the production of soap, concentrated sodium chloride solution is added to','Increase the solubility of the soap','Decrease the solubility of the soap','Saponify the soap','Emulsify the soap','','','b','','utme','2004',1074,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:44'),(169,'The gas that can be dried using concentrated Tetraoxosulphate (VI) acid is','Ammonia','Hydrogen bromide','Sulphur (IV) oxide','Hydrogen sulphide','','','c','','utme','2005',1281,'Admin','0000-00-00 00:00:00','2020-07-14 23:07:08'),(170,'The property used in the industrial preparation of nitrogen and oxygen from air is','Rate of diffusion','Solubility','Density','Boiling point','','','d','','utme','2005',1193,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:46'),(171,'A dense white fume is formed when ammonia gas reacts with','H2(g)','O2(g)','HCI(g)','Cl2(g)','','','c','','utme','2005',1154,'Admin','0000-00-00 00:00:00','2020-07-14 23:06:44'),(172,'In a flame test for calcium, the flame appears','Blue when viewed through a blue glass','Green when viewed through a blue glass','Orange-red when viewed through a blue glass','Brick-red when viewed through a blue glass','','','c','','utme','2005',1220,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(173,'Which of the following alloys contain iron','Steel and permalloy','Duralumlin and steel','nd Soft Solder a Duralumlin ','Brass and bronze','','','a','','utme','2005',1146,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(174,'To obtain pure carbon(II) oxide from its mixture with carbon (IV)oxide, the mixture should be','Bubbled through concentrated Tetraoxosulphate(VI) acid','Bubbled through sodium hydroxide','Passed over heated copper(II) oxide','Bubbled through water','','','b','','utme','2005',1277,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(175,'N2(g)  +  3H2(g)  ⇌   2NH2(g)   Δ H = - 90kJ  In the equation above, the yield of ammonia can be decreased by','Adding a catalyst','Removing ammonia','Increasing the pressure','Increasing the temperature','','','d','','utme','2005',1161,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(176,'Metalloids are also referred to as','Metals','Semi-metals','Colloids','Non-metals','','','b','','utme','2005',1130,'Admin','0000-00-00 00:00:00','2020-07-15 06:08:31'),(177,'The ores that can be concentrated by flotation are','Nitride ores','Chloride ores','Oxide ores','Sulphide ores','','','d','','utme','2005',1145,'Admin','0000-00-00 00:00:00','2020-07-14 23:07:08'),(178,'The most suitable metal that can be used as a lightening  conductor is','Aluminium','Iron','Copper','Silver','','','d','','utme','2005',1228,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(179,'NH4CI(g) ⇌   NH3(g)  +  HCI(g)   The reaction above can only attain equilibrium if','It is in a closed system','It is in an open system','One of the products is removed','A gaseous reactant is added','','','a','','utme','2005',1122,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:01'),(180,'When pure aluminum metal is heated to red hot in the presence of nitrogen gas, the compound formed is','AI2N','AIN','AI2N2','AI2N3','','','b','','utme','2005',1228,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(181,'The most abundant element on the earth’s crust is','Oxygen','Fluorine','hydrogen','nitrogen','','','a','','utme','2005',1217,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:03'),(182,'The pressure of 100cm3 of oxygen at 350C is 750mmHg. What will be the volume of the gas if the pressure is reduced to 100mmHg  without changing the temperature','850cm3','750cm3','650cm3','580cm3','','','b','','utme','2005',1215,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:04'),(183,'What is the valence shell electron configuration of the element with atomic number 17','1s22s22p63s23p5','1s22s22p63s23p4','3s23p5','2s22p6','','','a','','utme','2005',1175,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(184,'A heterogeneous mixture can be defined as any mixture','Whose composition is uniform','Whose composition is not uniform','Formed by solids and liquids','Of a solute and a solvent','','','b','','utme','2005',1128,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:06'),(185,'The density of a certain gas is 1.98g dm-3 at s.t.p. What is the molecular mass of the gas   [Molar volume of a gas at s.t.p = 22.4dm-3]','26.0g','31.0g','54.0g','44.0g','','','d','','utme','2005',1165,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:07'),(186,'Treatment of cancer   II. Detection of leakages in water mains   III. Detection of the ages of ancient tools    Which combination of the above refers to the uses of radioactive isotopes?','I, II and III','I, II, III and IV','II and III','I and II','','','a','','utme','2005',1221,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:40'),(187,'An element will readily form an electrovalent compound if its electron configuration is','2,8,8','2,,8,4','2,8,5','2,8,1','','','d','','utme','2005',1195,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:09'),(188,'How many moles of limestone will be required to produce 5.6g of CaO','0.20 mol','1, 12mol','0.10 mol','0.56 mol','','','c','','utme','2005',1223,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:10'),(189,'The shape of the hydrocarbon compound CH4 is','Square planar','Tetrahedral','Planar','Linear','','','b','','utme','2005',1163,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:11'),(190,'Which of these properties gives a solid its definite shape','Weak intermolecular attraction','High boiling point','High melting point','Strong intermolecular attraction','','','d','','utme','2005',1197,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:12'),(191,'The component of an atom that contributes least to its mass is the','Nucleus','Neutron','Electron','Proton','','','c','','utme','2005',1194,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:19'),(192,'Sugar is separated from its impurities by','Distillation','Evaporation','Precipitation','Crystallization','','','d','','utme','2005',1210,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(193,'Equal moles of ethyne and hydrogen iodide react to give','CH2 = CH2','CH2 = CHI','CH2 – CHI','CH2 – CI3','','','b','','utme','2005',1249,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:21'),(194,'How many hydrogen atoms does a single ring cycloalkane have less than the corresponding open- chain alkane','Three','One','Four','Two','','','d','','utme','2005',1228,'Admin','0000-00-00 00:00:00','2020-07-14 23:07:08'),(195,'The decolourization of the purple colour of a tetraoxomanganate (VII) ion is a test for','Alkanals','Alkanes','Alkenes','Alkanols','','','c','','utme','2005',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:23'),(196,'In the purification of impure samples of ethyl ethanoate synthesized by esterification, concentrated sodium trioxocarbonate(IV) solution is used to remove','Water','Acidic impurities','Basic impurities','Ethoxyethane','','','b','','utme','2005',1229,'Admin','0000-00-00 00:00:00','2020-07-14 23:07:08'),(197,'A substance that is used as a ripening agent for fruits is','Propene','Methane','Ethene','Butane','','','c','','utme','2005',1125,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:25'),(198,'Which of the following are structural isomers','Propanoic acid and propan-1, 2-diol','Ethanoic acid and propanoic acid','Ethan-1, 2 –diol and ethanoic acid','Propanal and propanone','','','d','','utme','2005',1189,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:26'),(199,'The enzyme responsible for converting sucrose into two simple isomeric sugars is','Invertase','Amylase','Lactose','Maltase','','','a','','utme','2005',1207,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:27'),(200,'Natural water collected from rivers and ponds contains oxygen, carbon(IV) oxide and','Chlorine','Hydrogen','Sulphur(IV) oxide','Nitrogen','','','c','','utme','2005',1163,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(201,'Kerosene is commonly used to remove the red colour stain of palm oil from clothes because it','Helps to spread the oil over a larger surface area','Makes the oil evaporate easily by dissolving it','Helps to dilute the oil and reduce its colour','Reacts with the oil to form an odourless compound','','','b','','utme','2005',1187,'Admin','0000-00-00 00:00:00','2020-07-14 23:07:08'),(202,'25cm3 of a mixture of noble gases was obtained from air after the removal of other constituents. What was the original volume of air','125cm3','1250cm3','2500cm3','80cm3','','','c','','utme','2005',1175,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:30'),(203,'The solubility curve shows the variation of solute concentration with','Volume','Vapour density','Pressure','Temperature','','','d','','utme','2005',1170,'Admin','0000-00-00 00:00:00','2020-07-14 23:07:08'),(204,'The air around smelting industries is likely to contain','CO2, SO3 and H2','SO2N2 and CO2','H2, SO2 and CO2','H2S, CO and N2','','','b','','utme','2005',1238,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(205,'When water boilers are used for a long period of time, the solid substances left behind as scale are','Magnesium trioxosilicate (IV) and calcium Tetraoxosulphate(VI)','Magnesium trioxosilicate(IV) and rust','Clay and magnesium trioxosilicate (IV)','clay and rust','','','','','utme','2005',1169,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:33'),(206,'The gas that is the most dangerous pollutant to humans is','Carbon(IV) oxide','Nitrogen (II)oxide','Hydrogen sulphide','Sulphur(IV) oxide','','','c','','utme','2005',1268,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(207,'In which of the following reactions can the oxidation number of nitrogen be said to have increased','FeSO4(aq)  +  NO(g) →   Fe(NO)SO4(S)','2NO(g)  +  O2(g) → 2NO2(g)','NO(g)  +  CI2(g)  → NOCI2(l)','NO(g)  +  Br2(l)   → NOBr2(l)','','','b','','utme','2005',1204,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(208,'A concentrated solution containing H+, Cu2+, OH- and Cl- was electrolyzed using platinum electrodes. The ion that will be discharged at the cathode is','OH-','Cl-','Cu2+','H+','','','c','','utme','2005',1138,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:36'),(209,'Phenolphthalein in acidic solution is','Colourless','Yellow','Red','Orange','','','a','','utme','2005',1144,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(210,'When sulphur (IV) oxide is passed into a solution of sodium hydroxide for a long time. It eventually produces a solution of','Na2SO4','NaHSO4','Na2SO3','NaHSO3','','','d','','utme','2005',1157,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:38'),(211,'What is the correct IUPAC name for NO2','Dioxonitrate(III) ion','Dioxonitrate(IV) ION','trioxonitrate(iii) ion','trioxonitrate(iv) ion','','','a','','utme','2005',1181,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(212,'What will happen if an aluminum spoon is used to stir a solution of iron (II) trioxonitrate(V)','The spoon will be reduced while the iron(II) ions will be oxidized','The spoon will be oxidized while the iron (II) ions will be reduced to the metal','The spoon will be reduced','The spoon will increase in size','','','b','','utme','2005',1270,'Admin','0000-00-00 00:00:00','2020-07-14 23:07:08'),(213,'Which of the following equimolar solutions will have the highest pH','NH4OH','CH3COONa','HCI','NaOH','','','c','','utme','2005',1154,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:47'),(214,'2H2 + O2  → 2H2O  ΔH = -571Kj  In equation above, how much heat will be liberated if 12.0g of hydrogen is burnt in excess oxygen?','-1713kJ','+1142kJ','-571kJ','-1142kJ','','','a','','utme','2005',1208,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(215,'Which of the following ions requires the largest quantity of electricity for discharge at an electrode','2.5 moles of Cu2+','4.0 moles of CI-','2.0 moles of Al3+','3.0 moles of Na+','','','c','','utme','2005',1199,'Admin','0000-00-00 00:00:00','2020-07-15 06:08:31'),(216,'H2(g)  +  Br2(g) →  2BHr(g)  The reaction above is carried out at 250C. If Δ H is kJ mol-1 and   Δ S is -106J mol-1K-1 the reaction will','Proceed spontaneously at lower temperatures','Not proceed spontaneously at the given temperature','Proceed spontaneously at the given temperature','[proceed in the reverse direction at the given temperature','','','d','','utme','2006',1133,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(217,'Na2CO3(aq)  +  2HCI(aq)  → 2NaCI(aq)  +  H2O(l)  +  CO2(g)    How many moles of sodium trioxocarbonate (IV) are there in a 25cm3 solution which required 10cm3 of 0.05 mol dm-3 hydrochloric acid solution to neutralize it?','0.100mloe','0.001mole','1.000mole','0.010mole','','','d','','utme','2006',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:52'),(218,'The ion that can be used as an oxidizing agent is','Fe3+','F-','Ca2+','Au3+','','','c','','utme','2006',1112,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:52'),(219,'Zinc and carbon rods are used as anode and cathode respectively in a','Voltaic cell','Lead accumulator','Leclanche cell','Daniel cell','','','c','','utme','2006',1132,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:39'),(220,'Trioxonitrate(V) acid is not used for preparing hydrogen gas from metals because it','Renders the metal passive','Is strongly oxidizing','Is volatile','','','','a','','utme','2006',1160,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:54'),(221,'Forms a layer of oxide on the metal   If the heat of combustion of hydrogen is -285.8kJ. what is the heat of formation of water','-285.8Kj','-571.6kJ','+571kJ','+285.8kJ','','','a','','utme','2006',1171,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:55'),(222,'In the electrolysis of CuSO4(aq) using platinum electrodes, the reaction at the anode is','4H+  +  4e-  → 2H2','2OH  +  2OH-  →  2H2O + O2','2OH-  - 2e-    → 2OH','4OH-  -  4e- →  2H2O + O2','','','d','','utme','2006',1154,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:56'),(223,'IN which of the following is the oxidation number of sulphur equal to -2','H2S','SO3','S8','SO2','','','a','','utme','2006',1149,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:57'),(224,'5SO2(g)  +  2KMnO4(aq)  +  2H2O(l)  ⇌   K2SO4(aq)  +  2MnSO4(aq)  +   2H2HSO4(aq)   In the reaction above, the products give a','Colourless solution','Purple precipitate','Purple solution','Colourless precipitate','','','a','','utme','2006',1161,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(225,'The solution that will conduct the highest amount of electricity is','2.0 moldm-3 of ethanoic acid','0.5 mol dm-3 of ethanoic acid','2.0 mol dm-3 of hydrochloric acid','0.5 moldm-3 of hydrochloric acid','','','c','','utme','2006',1122,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:59'),(226,'What is the mola. Mass of a substance, if 0.4 mole of the substance has a mass of 25.0g','6.3g','40.0g','62.5g','2.5g','','','c','','utme','2006',1208,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(227,'The order in which a mixture of sand ammonium chloride and sodium chloride can be separated is','Sublimation   dissolution  filtration  evaporation','Dissolution  dryness  filtration  evaporation','Filtration  sublimation  evaporation  dryness','Dissolution  filtration  sublimation  evaporation','','','a','','utme','2006',1105,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:01'),(228,'The volume of 2.5 moles of oxygen at s.t.p is','56.0dm3','84.0dm3','50.0dm3','20.0dm3','','','a','','utme','2006',1127,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:02'),(229,'[Molar volume of a gas at s.t.p + 22.4dm3} Nuclear fission involves the splitting of a heavy element into two nuclei of','Equal masses with a release of energy','Nearly equal masses with a release of energy and radiation','Equal masses with a release of energy and radiation','Unequal masses without any release of energy','','','b','','utme','2006',1171,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:03'),(230,'2C2H2(g)  +  5O2(g)     4CO2(g)  +  2H2O(g) In the reaction, the mass of carbon (IV) oxide produced on burning 78g of ethyne is [C = 12, O = 16, H = 1]','39','352g','264g','156g','','','c','','utme','2006',1086,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:04'),(231,'A particle that contain s 11protons, 12 neutrons and 10 electrons is probably a','Metallic ion','Non-metallic ion','Neutral metal','Neutral non-metal','','','a','','utme','2006',1179,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:05'),(232,'The element with the electron configuration 1s22s22p3 is','Oxygen','Chlorine','Nitrogen','Calcium','','','c','','utme','2006',1190,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:06'),(233,'A difference between chemical and physical change is that in a chemical change','Heat is supplied',' A new substance is formed','Oxygen is consumed','A reversible process occurs','','','b','','utme','2006',1214,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(234,'A degree in atomic size and an increase in knuckler charge across a period lead to','A decrease in covalency in bond formation','An increase in chemical reactivity','An increase in the tendency to loss electrons','A decrease in electro positivity','','','d','','utme','2006',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:08'),(235,'The idea of planetary electrons was that of','Bohr','Thompson','Rutherford','Dalton','','','a','','utme','2006',1155,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:09'),(236,'If 30cm3 of a gas at 500C is warmed to 800C at a fixed pressure. The fractional increase in volume is','0.91','0.009','1.09','0.093','','','d','','utme','2006',1190,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:10'),(237,'Which of the following has an isomer','C4H10','C6H6','C2H4','C2H6','','','a','','utme','2006',1182,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:11'),(238,'An example of aliphatic unsaturated hydrocarbon is','Butanol','Propene','Pentane','Benzene','','','b','','utme','2006',1132,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:12'),(239,'One mole of a hydrocarbon contains 36g of carbon and its vapour density is 20. The structure of the hydrocarbon is','CH3CH2CH3','CH3CH = CH2','CH3CH2C = CH','CH3C = CH','','','d','','utme','2006',1150,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:40'),(240,'CH3-CH2-C = CH  The hybridization in the compound above is','Sp3 and sp','Sp3 and sp2','Sp','Sp2','','','a','','utme','2006',1181,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(241,'Nigerian crude oil is described as light crude because of its','Low aliphatic hydrocarbon content','Low sulphur content','High natural gas content','High octane number','','','c','','utme','2006',1177,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:15'),(242,'The gas obtained as a product of anaerobic action ob organic matter buried in the earth is','Nitrogen(IV) oxide','Carbon(IV) oxide','Methane','Ethene','','','c','','utme','2006',1158,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:16'),(243,'When a crystal was added to the clear solution of its salt, the crystal did not dissolve and the solution remained unchanged. This showed that the solution was','Supersaturated','Unsaturated','Saturated','Concentrated','','','c','','utme','2006',1173,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(244,'The produce of the combustion of candle wax are','Carbon(IV) oxide and water','Oxygen and water','Hydrogen and water','Carbon(II)oxide an d water','','','a','','utme','2006',1145,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:17'),(245,'When 5.0cm3 of a saturated solution of sugar of molar mass 342g at 400C was evaporated to dryness, 34.2g of dry solid was obtained. The solubility of sugar at 400C is','7.0 mol dm-3','3.5 mol dm-3','2.0 mol dm-3','10.0mol dm-3','','','c','','utme','2006',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:18'),(246,'Which of the following results in the fall of acid rain','Gaseous hydrocarbons','Oxide of lead','Particulate matter','Oxides of sulphur','','','d','','utme','2006',1110,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(247,'Water has the ability to dissolve almost all substances because its molecule has a structure with','One positive end and one neutral end','Two positive ends','One positive end and one negative end','Two negative ends','','','c','','utme','2006',1164,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:21'),(248,'An emulsion may be produced by shaking a detergent solution with','Palm wine','Palm oil','Ethanoic acid','Water','','','d','','utme','2006',1115,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(249,'One heating may be produced by shaking a detergent solution with','Cu(NO3)2','AgNO3','Ca(NO3)2','NaNO3','','','b','','utme','2006',1112,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(250,'Dynamic equilibrium describes a situation where','A reaction gives back the reactants','Reactants are converted to products','The concentration of reactants and products is equal','Both forward and reverse reaction proceed at the same rate','','','d','','utme','2006',1187,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:24'),(251,'The raw material used for the smelting of iron ore in a furnace is','Zn(NO3)2','CaSO4','CuSO4','CaCO3','','','d','','utme','2006',1153,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:25'),(252,'Carbon exists naturally in the combined state as','Diamond','Coal','Wood','Graphite','','','c','','utme','2006',1131,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:26'),(253,'The sulphide which is insoluble in dilute hydrochloric acid is','CuS','Na2S','FeS','ZnS','','','a','','utme','2006',1133,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:27'),(254,'The efficiency of a solid catalyst to increase reaction rates depends on its','Concentration','Solubility','Quantity','Surface area','','','d','','utme','2006',1180,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:28'),(255,'In the industrial production of H2 from natural gas, the CO2 produced along with the H2 is removed by','Passing the mixture into lime water','Washing under pressure','Drying over phosphorous(V)oxide','Using ammoniac copper(l) chloride','','','b','','utme','2006',1127,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:29'),(256,'Which of the following typically represents a photochemical reaction','Conversion of dinitrogen (IV) oxide to nitrogen(IV) oxide','Conversion of silver halides to grey metallic silver','Decomposition of calcium hydroxide to its oxide','Formation of water from hydrogen and oxygen molecules','','','b','','utme','2006',1176,'Admin','0000-00-00 00:00:00','2020-07-15 06:08:31'),(257,'Group IA metals are not found free in nature because they','Have high melting and boiling points','Conduct heat and electricity','Are very reactive and unstable','Are malleable and ductile','','','c','','utme','2006',1129,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:32'),(258,'The characteristic colour of the flame shown when a copper salt moistened with concentrated hydrochloric acid on platinum is put on a bunzen burner is','Green','Lilac','Yellow','Brick-red','','','a','','utme','2006',1128,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:33'),(259,'The ion that will give a white precipitate with aqueous NaOH and soluble in excess of the base is','Zn2+','Mg2+','Ca2+','Cu2+','','','a','','utme','2006',1139,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:34'),(260,'Which of he following pairs of substances will react further with oxygen to form a higher oxide','SO2 and NO','CO2 and H2O','CO and CO2','NO and H2O','','','a','','utme','2006',1084,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(261,'Which of the following is an example of a mixture','Blood','Sand','Washing soda','Common salt','','','a','','utme','2010',1307,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:36'),(262,'Calculate the percentage by mass of nitrogen in calcium trioxonitrate (V)   {Ca = 40, N = 14, O = 16}','13.10%','17.10%','27.60%','8.5','','','d','','utme','2010',1225,'Admin','0000-00-00 00:00:00','2020-07-15 14:17:07'),(263,'The droplets of water observed around a bottle of milk taken out of though refrigerator is due to the fact that the','Temperature of the milk drops as it loses heat into the surroundings','Saturated vapour pressure of the milk is equal to the atmospheric pressure','Water vapour in the air around loses some of its energy to the bottle','Water vapour in the air around the bottle gains some energy from the bottle','','','c','','utme','2010',1260,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:38'),(264,'The volume of a gas is Vcm3 at P mm Hg. What is the new volume of the gas if the pressure is reduced to half at constant temperature','2 V cm3','V  2cm3','V cm3','4 V cm3','','','a','','utme','2010',1250,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:39'),(265,'Moving from left to right across a period, the general rise in the first ionization energy can be attributed to the','Increase in nuclear charge','Decrease in screening effect','Increase in screening effect','Decrease in nuclear charge','','','a','','utme','2010',1276,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(266,'How many unpaired electron(s) are there in the nitrogen  sub - levels','2','1','0','3','','','d','','utme','2010',1202,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:41'),(267,'The stability of the noble gases is due to the fact that they','Have duplet or octet electron configurations','Belong to group zero of the periodic table','Are volatile in nature','Have no electron in their outermost shells','','','a','','utme','2010',1275,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:42'),(268,'The maximum number of electrons in the L shell of an atom is','8','18','32','2','','','a','','utme','2010',1249,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:49'),(269,'Elements in the same periodic table have the same','Atomic number','Chemical properties','Physical properties','Number of shells','','','d','','utme','2010',1311,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:50'),(270,'A noble gas with a high power of fog penetration used in aerodrome beacons is','Argon','Helium','Neon','Krypton','','','c','','utme','2010',1239,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(271,'Permanent hardness of water can be removed by','Adding slaked lime','Adding caustic soda','Boiling','Filtration','','','b','','utme','2010',1281,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(272,'Substances employed as drying agents are usually','Hygroscopic','Efflorescent','Acidic','Amphoteric','','','a','','utme','2010',1225,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:53'),(273,'Calculate the solubility in mol dm -3 of 40g of Cu So4 dissolved in 100g of water at 1200C  {Cu = 64, S = 32, 0 = 16}','2.5','0.4','0.25','4','','','a','','utme','2010',1238,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:54'),(274,'Coffee stains can best be removed by','Turpentine','A solution of borax in water','Ammonia solution','Kerosene','','','b','','utme','2010',1207,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:55'),(275,'Carbon (II) oxide is considered dangerous if inhaled mainly because it','Competes with oxygen in the blood','Competes with carbon (IV) oxide in the blood','Can cause lung cancer','Can cause injury to the nervous system','','','a','','utme','2010',1271,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:56'),(276,'The acid that is used to remove rust is','Hydrochloric','Trioxonitrate (V)','Tetraoxosulphate (VI)','Boric','','','b','','utme','2010',1278,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(277,'Calculate the volume of 0.5 mol dm-3 H2SO4 that is neutralized by 25cm3 of 0.1 mol dm-3 NaOH','2.5cm3','0.4cm3','0.1cm3','5.0cm3','','','a','','utme','2010',1252,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:59'),(278,'The colour of methyl orange in alkaline medium is','Pink','Orange','Red','Yellow','','','d','','utme','2010',1221,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(279,'Which of the following salts is slightly soluble in water','CaSO4','Na2CO3','PbCl2','AgCl','','','a','','utme','2010',1296,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(280,'6AgNO3(aq)  +  PH3(g) +    3H2O(l)      →    6Ag(s)+   H3PO3(aq)   +    6HNO3(aq)  In the reaction above, the reducing agent is','H2O(l)','PH3(g)','AgNO3(aq)','HNO3(AQ)','','','b','','utme','2010',1260,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:02'),(281,'The IUPAC nomencalatyre of the compound LiAIH4 is','Aluminium tetrahydrido lithium','Tetrahydrido lithium aluminate (III)','Lithium aluminium hydride','Lithium tetrahydridoaluminate (III)','','','d','','utme','2010',1270,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(282,'Iron can be protected from corrosion by coating the surface with','Silver','Copper','Zinc','Gold','','','c','','utme','2010',1217,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:04'),(283,'What quantity of aluminum is deposited when a current of 10A is passed through a solution of an aluminum salt for 1930s  {AI = 27, F = 96500 C mol-}','1.8g','5.4g','14.2g','0.2g','','','a','','utme','2010',1328,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(284,'In which of the following is the entropy change positive','Reaction between an acid and a base','Addition of concentrated acid to water','Dissolution of sodium metal in water','Thermal dissociation of ammonium chloride','','','c','','utme','2010',1284,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:07'),(285,'If a reaction is exothermic and thee is a great disorder, it means that','The reaction is in a state of equilibrium','There will be a large increase in free energy','There will be a large decrease in free energy','The reaction is static','','','b','','utme','2010',1192,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:08'),(286,'In the preparation of oxygen by heating KCIO3 in the presence of MnC2, only moderate hear is needed because the catalyst acts by','Increasing the surface area of the reactant','Increasing the rate of the reaction','Lowering the energy barrier of the reaction','Lowering the pressure of the reaction','','','c','','utme','2010',1269,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:09'),(287,'2H2(g) +    O2(g)  ⇌ 2H2O(g)    ΔH   =  - ve  What happens to the equilibrium constant of the reaction above if the temperature is increased?','It becomes zero','It decreases','It increases','It is unaffected','','','b','','utme','2010',1325,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:10'),(288,'To a solution of an unknown compound, a little dilute Tetraoxosulphate (IV) acid was added with some freshly prepared (II) Tetraoxosulphate (VI) Solution. The brown ring observed after the addition of a stream of concentrated  Tetraoxosulphate (VI) acid confirmed the presence of','CI','SO','NO','CO','','','c','','utme','2010',1238,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:11'),(289,'Which of the following is used as a rocket fuel','CH3COOH','H2SO4','HCL','HNO3','','','d','','utme','2010',1262,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:12'),(290,'A constituent common to moist air, it gradually rusts. This is due to the formation of','Silver','Copper','Tin','Lead','','','c','','utme','2010',1263,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(291,'When iron is exposed to moist air, it gradually rusts. This is due to the formation of','Anahydrous  iron (III) oxide','Anhydrous iron (II) oxide','Hydrated iron (II) oxide','Hydrated iron  (III) oxide','','','d','','utme','2010',1260,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(292,'A compound gives an orange red colour to a non luminous flame. This compound is likely to contain','Ca2+','Fe3+','Fe2+','Na+','','','a','','utme','2010',1236,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(293,'Stainless steel is used for making','Tools','Coins and medals','Moving parts of clocks','Magnets','','','a','','utme','2010',1246,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:16'),(294,'The residual solids from the fractional distillation of petroleum are used as','Raw materials for the cracking process','Fuel for driving tractors','Fuel for jet engines','Coatings for pipes','','','d','','utme','2010',1263,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:17'),(295,'Which of the following is used as fuel in miners’ lamp','Ethyne','Ethane','Ethane','Ethanol','','','a','','utme','2010',1236,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(296,'Which of the following organic compounds is very soluble in water','C2H2','C2H4','CH3COOC2H5','CH3COOH','','','d','','utme','2010',1301,'Admin','0000-00-00 00:00:00','2020-07-15 06:08:31'),(297,'Benzene reacts with hydrogen in the presence of nickel catalyst at 1800C to give','Toluene','Cyclopentane','Cyclohexane','Xylene','','','c','','utme','2010',1279,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:39'),(298,'Which of the following is used to hasten the ripening of fruit','Ethanol','Ethyne','Ethane','Ethane','','','d','','utme','2010',1283,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:20'),(299,'The final products of the reaction between methane and chloride in the presence of ultraviolet light are hydrogen chloride and','Dichloromethane','Tetrachloromethane','Chloromethane','Trichloromethane','','','b','','utme','2010',1261,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:21'),(300,'The correct order of increasing boiling points of the following  compounds C3H7OH, C7H16 and C4H10 is','C4H10  →  C7H16 → C3H7OH','C7H16 → C3H7OH → C4H16','C4H10  → C3H7OH  → C4H10','C3H7OH →  C4H10  → C7H16','','','a','','utme','2010',1313,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(301,'One of the major uses of Alkanes is','In the hydrogenation of oils','In the textile industries','In the production of plastics','As domestic and industrial fuels','','','d','','utme','2010',1213,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(302,'The haloalkanes used in the dry cleaning industries are','Chloroethane and dichloroethene','trichloroethene and tetrachloroethene','chloromethane and dichloroethene','Trichloromethane and tetrachloromethane','','','d','','utme','2010',1286,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(303,' Two hydrocarbons X and Y were treated with bromine water. Decolorized the solution and Y did not. Which class of compound does Y belong','Alkynes','Alkenes','Alkanes','Benzene','','','c','','utme','2010',1210,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(304,'The compound that is used as an anaesthetic is','CHCI3','CH2C2','CH3CI','CCI4','','','a','','utme','2010',1228,'Admin','0000-00-00 00:00:00','2020-07-14 02:27:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `civiledu` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=437 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `civiledu` VALUES (1,'Who among the following could be described as the founding father of Nigerian nationalism?','Nnamdi Azikiwe','Herbert Macauley','Ahmadu Bello','Obafemi Awolowo','','','b','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:37'),(2,'Rule of Law means','supremacy of the law','absence of legal immunity','peace, order and stability','obedience to any authority','','','a','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:38'),(3,'A major characteristic of civil society is','the desire to win election','corporate responsibility','social responsibility','political gerrymandering.','','','b','','wassce','2014',89,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:39'),(4,'Citizenship status is acquired through','birth, indigenization, colonization and referendum','association, convention, naturalization and incorporation','birth, naturalization, honorary and registration','registration, inter-relationship, integration and declaration.','','','c','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:39'),(5,'Human Rights are basic natural rights which people enjoy primarily because they are','members of a political party','international citizens','members of a community','human beings.','','','d','','wassce','2014',78,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:40'),(6,'Interpersonal relationship exists when','citizens pay their taxes regularly to inland revenue service','citizens are politically conscious and participate in voting','there is interaction between persons in a social setting.','groups share social interest and communal aspiration','','','d','','wassce','2014',81,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:41'),(7,'Cultism can be described to be','amiable','attractive','dangerous','harmless.','','','c','','wassce','2014',82,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:42'),(8,'Based on the statements above, the decision of the student on having a bullet proof vest shows that cultism','spreads fear and terror.','is a training ground for armed forces.','breeds courageous graduates.','propagates self - defence.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','a','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:43'),(9,'It could be inferred from the statements above that cultism in schools could lead to','sudden prosperity.','uninterrupted academic calender.','popularity on campus.','untimely death.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','d','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:44'),(10,'Victims of human trafficking are usually compelled to engage in','lucrative employment','visiting tourist sites','part - time studies','forced labour.','','','d','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:45'),(11,'One habit which People Living With HIV/AIDS (PLWHAs) must avoid to remain healthy and productive is','regular contact with healthy people.','self - pity and self - medication','participation in profitable ventures','pursuit of academic studies.','','','b','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:46'),(12,'Youth empowerment is best described as the','training given to individuals for acquiring means livelihood','practice of engaging in prospective career','provision of subsidized meals to the citizens by government,','mobilization of citizens for political rally.','','','a','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:47'),(13,'The National Assembly, Presidency and Court which are inter - related and interdependent in our democracy constitute the','tiers of government','types of democracy','forms of government.','arms of government','','','d','','wassce','2014',74,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:48'),(14,'A system of government that listens to public opinion and tolerates opposition is','dictatorial regime','capitalist regime','democratic regime','socialist regime','','','c','','wassce','2014',83,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:49'),(15,'A situation where most citizens fail to vote in elections could be described as political','socialization','culture.','apathy','legitimacy','','','c','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:50'),(16,'The division of Nigeria into various constituencies with each electing a person to represent it in the National Assembly is a demonstration of','checks and balances','popular participation','political rivalry among the constituents','drive towards secession in the country.','','','b','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:51'),(17,'In Nigeria, public servants are expected to be','non - partisan','political','ambitious','apolitical','','','a','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:52'),(18,'The principle that public servants cannot be held responsible for their official actions denotes','impartiality','accountability','anonymity','neutrality.','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:53'),(19,'Universal Declaration of Human Rights (UDHR) is based on the resolution of the','Human Rights Watch','United Nations Organization','Amnesty International','League of Nations.','','','b','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:54'),(20,'According to the story, Imoh’s parents were','wealthy couple','prominent politicians','honest and responsible','religious fanatics','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:55'),(21,'What value did Imoh demonstrate.','Tolerance','Confidence','Fair play','Honesty','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','d','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:56'),(22,'Conflicts are better resolved in the society through','tribunal','litigation.','dialogue','the court','','','c','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:57'),(23,'To prevent the spread of HIV/AIDS, people should be encouraged to','avoid casual sexual activities','marry very early in life','engage in gainful employment','pursue higher education','','','a','','wassce','2014',99,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:57'),(24,'The nearest government to the people and an important means of promoting grassroots development is the','state government','unitary government','local government','federal government','','','c','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:58'),(25,'Democratic governance is usually characterized by','free, fair and credible elections','buoyant and competitive economy','accessible employment opportunities','youth participation in governance','','','a','','wassce','2014',97,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:59'),(26,'Political apathy often leads to','low level of participation','good governance','political stability','low literacy level','','','a','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:00'),(27,'Which of the following is not necessary for public servants to perform effectively?','In - service training','Appointment based on nepotism','Value re - orientation for public servants','Incentives for meeting set goals','','','b','','wassce','2014',83,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:01'),(28,'One of the conditions which can limit the enjoyment of Human Rights in Nigeria is the','acceptance of foreign aid by the government','improvement in literacy level of the citizens','declaration of state of emergency by government','periodic review of the constitution by government','','','c','','wassce','2014',93,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:02'),(29,'The implication of positive communal relationships is that it','promotes solidarity and love','ensures obedience to constituted authority','encourages ethnic diversity','promotes rural-urban drift.','','','a','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:03'),(30,'One major factor that attracts some Nigerians into human trafficking is','over - population related issues','influx of foreigners into the country','insatiable quest for quick wealth','influence of Western and social media','','','c','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:04'),(31,'One of the reasons most HIV/AIDS patients are \treluctant to disclose their status is because of','the incurable nature of the ailment','fear of social stigmatization.','lack of sufficient public awareness','shortage of health counsellors','','','b','','wassce','2014',77,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:05'),(32,'The position of the court on this matter justifies the essence of the','rule of law','legislature','police command','separation of powers','The Bawali High Court has ordered the police in Area Z Command to produce Mr. Zeb, who is in police custody for an alleged offence. The court insists that Mr. Zeb cannot be punished until he is found guilty of breach of any law of the land by a court of competent jurisdiction.','','a','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:06'),(33,'Leaders can best protect the interests of their followers by','embarking on periodic constitutional review','creating socio - economic opportunities for foreigners','creating conducive atmosphere for participation','rewarding supporters with contracts','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:07'),(34,'The most popular means through which citizens of a country can participate in politics is by','being members of political parties','engaging in constructive criticism','engaging in political debates','voting in elections','','','d','','wassce','2014',96,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:08'),(35,'Civil societies are vital for the promotion of popular participation because they are','profit - oriented organizations','engaged in developmental programmes','involved in political education','formidable oppositions to government','','','c','','wassce','2014',97,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:09'),(36,'From this dialogue, it is very likely that Wanja will be exhibiting the following characters except','disobedience to constituted authority','truancy and perpetual lateness to school','hospitable attitude towards people','arrogance and unruly behaviour.','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:10'),(37,'Which of the following may result from Wanja’s habit?','Humility for elders','Criminality in the society','Advocacy for hard drugs by NGOs','Excellent performance in school','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',79,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:11'),(38,'From Ada’s admonition, it could be deduced that taking hard drugs could','make people respect the addicts.','lead to insanity of the addicts','make people to adore the drug addicts','ensure courteous behaviour by the addicts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',85,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:12'),(39,'From the above dialogue, Wanja’s behaviour could be curtailed by','sending him abroad for further studies','financial inducement','re - orientation and rehabilitation','indulging him with expensive gifts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',77,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:13'),(40,'Which of the following governmental agencies is the most capable of controlling the activities of Wanja and his group?','National Agency for Food and Drug Administration and Control (NAFDAC)','National Orientation Agency (NO A)','National Emergency Management Agency (NEMA)','National Drug Law Enforcement Agency (NDLEA)','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','d','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:14'),(41,'One of the major barriers to national development is the','low poverty level','existence of multi - party system','prevalence of corrupt practices','persistent rural - urban migration','','','c','','wassce','2014',74,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:14'),(42,'The quotation above shows that the speaker is concerned about','nationalism','revolution','tourism','welfarism','“Here is your country. Cherish these natural wonders, cherish the natural resources, cherish the history and romance as sacred heritage, for your children and your children’s children. Do not let selfish men or greedy interests skin your country of its beauty, its riches...”','','a','','wassce','2014',88,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:15'),(43,'A major benefit of youth empowerment is','dependence on foreign aid.','discouragement of patriotism','reduction in crime rate','negation to national prosperity','','','c','','wassce','2014',65,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:16'),(44,'When leaders like Chief Bilisi place self interest above public good, the result is that','rebellion becomes inevitable','cooperation of citizens is guaranteed','International support for the regime is ensured','society becomes more peaceful and orderly.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','a','','wassce','2014',69,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:17'),(45,'The condition of disorderly behaviour exhibited by the mob in the story best describes the','ineffectiveness of the police','breakdown of law and order','importance of ministerial position','need for stiffer security measures','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','b','','wassce','2014',78,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:18'),(46,'A major lesson Nigerians could learn from the story is that','leaders can empower voters by giving them money','security officials should use brutal force on citizens','the underprivileged should not vie for elective positions','greed and related vices can cause serious breach of  the law.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','d','','wassce','2014',82,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:19'),(47,'Which of the following is not a function of the Independent National Electoral Commission (INEC)?','Administering oath of office to elected officers','Conducting periodic elections','Recruitment of electoral officers.','Registration of political parties','','','a','','neco','2014',80,'Admin','2016-11-26 17:20:10','2020-07-14 13:34:20'),(48,'The upper legislative chamber of the National Assembly of Nigeria is also known as the','honourables','house of commons.','house of lords','senate','','','d','','neco','2014',80,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:21'),(49,'Cooperation between one country and another can be described as','bilateral','international','multilateral','multinational.','','','a','','neco','2014',92,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:22'),(50,'The “right to vote and be voted for” can only be enjoyed by Nigerian citizens who attain the age of','13.','15.','16.','18.','','','d','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:23'),(51,'A representative of a commonwealth country in another member state is known as a / an.','ambassador','attaché.','consul-general.','high commissioner.','','','d','','neco','2014',107,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:24'),(52,'The following are values that promote interpersonal relationship, except','caring.','honesty.','patience','properties.','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:25'),(53,'The responsibilities of government to   its citizens include the following, except','creating employment opportunity','maintenance of law and order','payment of property tax to its citizens','protection of lives and property','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:26'),(54,'Most African countries owed their creation to','African Union (AU).','Commonwealth of Nations.','Ethnic and tribal leaders.','European Colonialists','','','a','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:27'),(55,'The structure of the Nigerian legislature is - in nature','bicameral','confederal','federal','unicameral','','','a','','neco','2014',80,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:28'),(56,'The most effective approach towards the elimination of sexually transmitted diseases is by','abstinence.','Casual sex.','use of condom.','use of drugs','','','a','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:28'),(57,'The first executive president of Nigeria is/was','Abubakar Tafawa Balewa','Goodluck Jonathan','NnamdiAzikiwe.','Shehu Shagari.','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:29'),(58,'One of the aims of citizenship education is to produce students with','creative skill.','high sense of entrepreneurial skill.','high sense of patriotism.','manipulative skills.','','','c','','neco','2014',78,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:30'),(59,'The symbol for the campaign against AIDs is Ribbon','black','blue','green','red','','','d','','neco','2014',110,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:31'),(60,'ln 2013, Nigeria celebrated her ______ independence anniversary','50th','51st','52nd','54th','','','d','','neco','2014',92,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:32'),(61,'In democracy, lack of press freedom leads to the denial of freedom of','association','expression','movement','voting','','','b','','neco','2014',63,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:33'),(62,'Franchise means right to','contest for political post','join association','live in Nigeria','vote and be voted for','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:34'),(63,'How many members constitute the lower legislative chamber in Nigeria?','300','302','312','360','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:35'),(64,'How many senators are elected from each state in Nigeria?','2','3','4','5','','','b','','neco','2014',70,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:36'),(65,'When was the first HIV/AIDs case reported in Nigeria?','1980','1983','1985','1987','','','c','','neco','2014',82,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:37'),(66,'Which of the following system of government advocates equitable distribution of wealth?','Aristocracy','Capitalism','Plutocracy','Socialism','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:38'),(67,'The right of an individual to seek redress in a law court is categorized under','economic.','political','procedural,','social','','','c','','neco','2014',83,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:39'),(68,'The National Youths Service Corps Scheme was established in Nigeria in','1970','1971','1973','1975.','','','c','','neco','2014',84,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:40'),(69,'Which of the following is a legal obligation of a citizen?','Giving financial assistance to the poor','Helping in community development','Payment of taxes','Respecting the national symbols','','','c','','neco','2014',87,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:40'),(70,'Which of these is not a system of government?','Anarchy','Monarchy','Oligarchy','Socialism','','','d','','neco','2014',92,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:41'),(71,'The laws made by the third tier of government in Nigeria are refer to as','bye-laws.','constitutional laws.','decrees.','edicts','','','a','','neco','2014',98,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:49'),(72,'What does “35% affirmative action” of the present administration stand for? More','PDP  stalwarts   should   be engaged in government','political positions for women in government','women to be considered for campaign','women to be elected as governors','','','b','','neco','2014',92,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:55'),(73,'A political party’s programme is known as its','constitution.','document.','functions.','manifesto.','','','d','','neco','2014',79,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:57'),(74,'How many Senator(s) represent the Federal Capital Territory in the senate?','1','2','3','4','','','a','','neco','2014',95,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:58'),(75,'The International Court of Justice is located in','Britain.','Netherlands.','Nigeria.','Norway.','','','b','','neco','2014',80,'Admin','2016-11-26 17:20:17','2020-07-14 13:34:59'),(76,'The headquarters of United Nations is located in','Abuja.','England','Hague.','New York.','','','d','','neco','2014',95,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:00'),(77,'One advantage of Bi-cameral legislature is that it','guards against intra-party clashes.','is the only system available.','prevents arbitrary law making','projects party manifestoes.','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:01'),(78,'Public Complaints Commission in Nigeria is also known as','elder’s forum.','judiciary.','ombudsman.','people’s court.','','','c','','neco','2014',86,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:02'),(79,'The public service structure of Nigeria is an offshoot of','America.','British.','Canada.','India.','','','b','','neco','2014',82,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:03'),(80,'A de-facto authority is mostly associated with','anarchy.','customs and tradition.','force.','law.','','','b','','neco','2014',80,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:04'),(81,'The United Nations universal declaration on human rights was proposed in the year','1925','1930','1946','1948','','','d','','neco','2014',76,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:05'),(82,'Political apathy can be discouraged through the following, except','educating the electorate.','good governance.','independent judiciary.','press censorship.','','','d','','neco','2014',87,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:06'),(83,'One of the civic responsibilities of a citizen is to obey','bye-laws.','constituted authority.','court judgments.','edicts.','','','b','','neco','2014',79,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:07'),(84,'Which of the following is not a function of political parties?','Aggregation of opinion','Educating the government','Interest articulation','Unifying factor.','','','d','','neco','2014',67,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:08'),(85,'Nigeria is now hundred years since amalgamation which means she has celebrated — anniversary.','amalgamation.','centenary.','golden jubilee.','independence.','','','b','','neco','2014',68,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:09'),(86,'Which of the following bodies is responsible for defending the country against external aggression? The','Army','Civil defense.','Customs.','Police.','','','a','','neco','2014',94,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:10'),(87,'One of the following is a country as well as a continent.','Africa','Antarctica','Asia','Australia','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:10'),(88,'In a parliamentary system of government, the powers of the executive is vested in the office of the','minister.','premier','president.','prime minister.','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:11'),(89,'One of the major problems facing local government administration in Nigeria is','insufficient councilors','lack of control by the central government','lack of funds','leadership','','','c','','neco','2014',71,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:12'),(90,'The land contention between Nigeria and Cameroon is called','Bakassi Penisula','Bonny Island','Calabar River','Lekki Penisula','','','a','','neco','2014',78,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:13'),(91,'The headquarters of ECOWAS is located in','Abuja','Accra','Adis-Ababa','Lome','','','d','','neco','2014',97,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:15'),(92,'Human rights abuse can be prevented through the following, except','constitutional means','court of law','mass literacy','protest','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:16'),(93,'The public Service is a branch of the ____ arm of government','civilian','executive','judiciary','legislative','','','b','','neco','2014',84,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:16'),(94,'When the national flag is flown half mask, it is a sign of national','centenary celebration','children’s day','independence','mourning','','','d','','neco','2014',78,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:17'),(95,'One of the ways to ensure a free and fair election is to','allow parties to campaign on election day','appoint a politician as the chairman of the electoral commission','ensure INEC chairman is appointed from a pressure group','guarantee the security of electoral officers and materials','','','d','','neco','2014',79,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:18'),(96,'How many colours are in the traffic light?','2','3','4','5','','','b','','neco','2014',78,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:19'),(97,'The channel through which political parties make their program known to the people is ..............','canvassing','campaigning','convincing','coronation','','','b','','wassce','2012',79,'Admin','2016-11-26 17:47:57','2020-07-14 13:35:20'),(98,'What arm of the criminal justice system is prison?','first','second','third','none','','','c','','wassce','2012',91,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:29'),(99,'................ is the apex body saddled by law to fight corruption and other related offences','IRS','ICPC','EFCC','NPF','','','c','','wassce','2012',97,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:30'),(100,'The responsibility of protecting past and present high ranking government officials falls on ...............','police','army','civil defense corps','SSS','','','a','','wassce','2012',83,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:31'),(101,'............ is obtained from the Nigerian immigration services as a requirement to travel out of the country','ticket','yellow card','passport','national ID card','','','c','','wassce','2012',70,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:32'),(102,'There are ............. local government in Nigeria','700','714','744','774','','','d','','wassce','2012',102,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:33'),(103,'Local government is the ............... tier of government','1st','2nd','3rd','4th','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:34'),(104,'Television and radio are example  of ......... media','print','electronic','advertising','mass','','','b','','wassce','2012',114,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:35'),(105,'Newspapers and magazine and example of ..... media','print','electronic','advertising','mass','','','a','','wassce','2012',94,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:36'),(106,'One of the listed criteria qualifies one for election .......','certificate','beauty','height','citizenship','','','d','','wassce','2012',103,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:37'),(107,'The following are duties to be performed by the citizens of a country EXCEPT','Destroying government properties','obey law and order','payment of tax','show loyalty','','','a','','wassce','2012',101,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:38'),(108,'The form of government in which the electorate exercise their governing power directly through their elected \trepresentation is called ........','supremacy','democracy','autocracy','charismatic','','','b','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:39'),(109,'Punishment for law breaking include the following except ..........','freedom of movement','detention','sanctions','political instability','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:40'),(110,'The act of counting the numbers of people living in a country in order to determine the total numbers of \tpeople in a state is known as .......','election','national population census','voting','rights','','','b','','wassce','2012',109,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:41'),(111,'The last population census in Nigeria was conducted in ...........','2003','2006','2007','2005','','','b','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:42'),(112,'The 219 chibok girls were ................ while ..............','abducted, praying in the mosque','kidnaped, praying in the church','abducted, wondering along the street of chibok town','kidnaped, preparing to write their WAEC examination','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:43'),(113,'The following are types of drugs except','cannabis','depressants','benzodiazepine pines','steroids','','','c','','wassce','2012',118,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:44'),(114,'Cocaine, morphine and heroin are example of','tobacco','steroids','narcotics','inhalants','','','c','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:45'),(115,'......... refer to a group of drugs that are inhaled in the form of a gas or solvent','hallucinogens','stimulants','inhalants','gasoline','','','c','','wassce','2012',109,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:46'),(116,'Cannabis is also called .........','barbiturates','cassava','marijuana','caffeine','','','b','','wassce','2012',107,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:47'),(117,'Which of the following is the most common forms of drug abuse','drug trafficking','self medication','drug combination','frequent use','','','b','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:47'),(118,'The following factors are responsible for drug abuse except','family upbringing','high stress level','poverty','foster parenthood','','','d','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:49'),(119,'........ is the type of parenthood where a different couple raise a particular child that is not their own','helicopter parent','foster parenthood','slow parenting','different parenthood','','','b','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:50'),(120,'One of the following is a cause of single parents in Nigeria','slow parenting','social group','nature of work','divorce','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:50'),(121,'.......... strengthens the sensitive mental and emotional bond between the parent and children','narcissistic parenting','attachment parenting','positive parenting','teenage parenting','','','b','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:51'),(122,'........... is the verdict that results when a law court declares a defendant guilty of a crime','immunity clause','conviction','customary clause','traditions','','','b','','wassce','2012',119,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:52'),(123,'The clause which exempts the president from being prosecuted while still in office is called','military clause','special clause','conviction clause','immunity clause','','','d','','wassce','2012',85,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:53'),(124,'All the following can limit the right of a citizen except','war','state of emergency','universality','military rule','','','c','','wassce','2012',87,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:54'),(125,'The following are causes of emergency rule except','crisis','blood lettings','stage peaceful protest','sabotage / terrorism','','','c','','wassce','2012',76,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:55'),(126,'The World AIDs Day is usually ..........................','June 12th every year','May second every year','October 1st every year','December 1st every year','','','d','','wassce','2012',92,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:56'),(127,'One of the following is not human right group','Constitutional Right Project (CRP)','National Association of Democratic Lawyers (NADL)','Nigeria Bar Association (NBA)','Civil Liberties Organization (CLO)','','','c','','wassce','2012',94,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:57'),(128,'One of the following is not a pressure group','National Association of Nigeria Student (NANS)','Nigeria Labour Congress (NLC)','Academic Staff Union of Universities (ASUU)','Committee for Defense of Human Right (CDHR)','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:58'),(129,'One of the following is not a political party','PDP','APGA','ANPC','CPC','','','c','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:59'),(130,'One of the following is a social group','dangote group of companies','rotary club','Millan group','human right Africa','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:00'),(131,'The organization with the motives and goals of helping people is called','social group','charity group','pressure group','human right group','','','b','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:01'),(132,'The following are the reasons why people do not participate in polities except','illiteracy','lack of justice','multi-party system','religion','','','c','','wassce','2012',89,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:02'),(133,'............... is the prejudicial treatment of fellow human being','god fatherism','independence','justice','discrimination','','','d','','wassce','2012',97,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:03'),(134,'Laws are interpreted by the','Judiciary','President','Legislature','Executive','','','a','','wassce','2012',111,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:04'),(135,'The president belongs to ............... arm of the government','Executive','Judiciary','Military','Legislature','','','a','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:04'),(136,'The process whereby an individual choose to favour a person who come from his family or tribe over other people or tribes is known as','stereotype','ethnicity','nepotism','favouritism','','','c','','wassce','2012',89,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:05'),(137,'When a group of people believe in and keep to certain norms, values and ways of life of their community since its creation, we call this .................','religion','stereotypes','traditions','custom','','','c','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:06'),(138,'Traffic lights are also known and referred to as','three directives light','spotlight','flow traffic directive','informative sign','','','b','','wassce','2012',86,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:07'),(139,'One of the following is not a federal road agencies','DTO','FRSC','TRACE','VIO','','','c','','wassce','2012',86,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:08'),(140,'One of the following is a regulatory prohibitory sign','stop police','speed limit','t junction','ferry','','','a','','wassce','2012',96,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:09'),(141,'The traffic light has how many colours','3','4','5','2','','','a','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:10'),(142,'From the basic road traffic regulation pedestrians should not attempt to cross the road when the light are ............. and ...............','green and yellow','green and red','yellow and red','red and yellow','','','a','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:11'),(143,'Motorcyclists must always protect their heads with safety ............. which must be properly fastened','seat belt','head guild','helmets','cap cycles','','','c','','wassce','2012',103,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:12'),(144,'Pedestrians should always cross road using','stop hold','parked vehicles','zebra crossing','bridge','','','c','','wassce','2012',89,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:13'),(145,'The former NAFDAC DG Prof Dora Akunyili died on','June 9. 2014','June 17, 2014','June 7, 2014','May 27, 2014','','','c','','wassce','2012',104,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:14'),(146,'Political values are acquired in any given society through','Political re-orientation','Political campaign','Political socialization','Political indoctrination','','','c','','neco','2012',78,'Admin','2016-11-26 18:05:51','2020-07-14 13:36:15'),(147,'To ensure the rights and freedom of citizens; the power of the arms of government must be','fused','incorporated','separated','rotated','','','c','','neco','2012',85,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:16'),(148,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social right','','','b','','neco','2012',80,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:17'),(149,'The commission charged with the conduct of federal \telections in Nigeria between 2014 and 2015 is..........','Nec','fedeco','Inec','Necon','','','c','','neco','2012',86,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:17'),(150,'The colour of the Nigeria flag is ..............., anytime it \tis half masked it means that the nation is ...............','green white green - rejoicing','white green white - mourning','green white green - mourning','green white blue - voting','','','c','','neco','2012',81,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:18'),(151,'Which of the following is used in gauging public opinion','Constitution','Educational Institution','Mass media','Electoral college','','','c','','neco','2012',77,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:19'),(152,'In Nigeria, The agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil  defense corps','Police','','','d','','neco','2012',89,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:20'),(153,'The National Assembly in Nigeria is primarily responsible for','executing laws','Interpreting laws','ratifying appointment','making laws','','','d','','neco','2012',84,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:21'),(154,'The major factor militating against efficient operation \tof electoral commission in Nigeria is .......................','Inadequate public support','Population size','Inadequate skilled manpower','excessive political interference','','','d','','neco','2012',70,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:22'),(155,'When Ebola disease is very rampant ............. count \ttheir loses while ......... smile to the bank','fish sellers, bush meat sellers','bush meat sellers, fish sellers','bread sellers, fish sellers','students, teachers','','','b','','neco','2012',100,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:23'),(156,'Workers in the Public Corporations are known as','Civil servants','Private employees','Public servants','Professional employees','','','c','','neco','2012',84,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:24'),(157,'Membership of a society is','conventional','Mandatory','Voluntary','Constitutional','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:25'),(158,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','Police, Army, sovereignty and custom','','','c','','neco','2012',101,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:26'),(159,'Citizenship is acquired by an alien through','registration','birth','Conferment','Naturalization','','','d','','neco','2012',86,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:27'),(160,'The office responsible for announcing the result of an election is known as','ballot officer','presiding officer','Returning officer','Electoral officer','','','c','','neco','2012',93,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:28'),(161,'Law made by military governments are called','decrees','Bye-laws','Edicts','acts','','','a','','neco','2012',78,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:29'),(162,'The ultimate aim of political parties is to','implement people oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','neco','2012',79,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:30'),(163,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their member','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','neco','2012',84,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:31'),(164,'Public servants in Nigeria belong to the ............. arm of government','military','executive','legislature','judiciary','','','b','','neco','2012',88,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:32'),(165,'One of the main duties of the local government service commission is to','supervise and manage the personnel of local government','conduct election into local council','create an enabling working environment for council workers','handle request for the creation of more local government','','','a','','neco','2012',88,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:33'),(166,'The option A4 model was used in the conduct of the','2007 election','1983 election','1993 election','1999 election','','','c','','neco','2012',103,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:34'),(167,'The following is the function of a responsible parenthood','care and love','gambling','Drug addition','fighting','','','a','','neco','2012',80,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:35'),(168,'Custom refers to .............','tradition or social value or patterns','image of a country','sharing similar or common ethnic background','A state of feeling of oneness among the people','','','a','','neco','2012',91,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:36'),(169,'The term V. I. O. mean','Vehicle inspection officer','vehicle implementation officer','vehicle induce operation','vehicle induction officer','','','a','','neco','2012',81,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:36'),(170,'Which of these countries operate a unitary system of \tgovernment','Nigeria','U. S. A','Ghana','Britain','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:37'),(171,'Which of the following are not fundamental human right','right to life','right to gainful employment','right to vote and be voted for','right to overthrow a government','','','d','','neco','2012',84,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:38'),(172,'A constitution that is very easy to amend is called a ...... constitution','rigid','flexible','an easy','simple','','','b','','neco','2012',91,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:39'),(173,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:40'),(174,'One judicial function performed by the executive is','granting of amnesty','implementing judicial order','ensuring obedience to the law','appointing judges','','','a','','neco','2012',85,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:41'),(175,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary','','','a','','neco','2012',90,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:42'),(176,'The private ownership of the means of production is a feature of','capitalism','Socialism','Communalism','Communism','','','a','','neco','2012',95,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:43'),(177,'A government is said to be legitimate if it','has the people’s mandate to rule','is not oppressive','provide social services for the people','accepts people’s criticism','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:44'),(178,'All type of government perform all the following functions except','providing welfare and developmental facilities','maintaining law and order','encouraging the struggle for power','encouraging trade with other state','','','c','','neco','2012',99,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:45'),(179,'A coup d’etat is regarded as','A source of political legitimacy','A manipulation of the constitution','A constitutional way of changing the government','an unconstitutional way of changing the government','','','d','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:46'),(180,'Which of the following is an advantage of local government','Agents for money based politics','electoral commissions','training grounds for political leaders','agents of pressure group','','','c','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:47'),(181,'Public Corporations are financed','by tax payers','with private funds','with entrepreneurial funds','by political parties','','','a','','neco','2012',109,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:48'),(182,'A manifesto refers to','the register of party members','rejected ballot papers','valid ballot papers','Document containing the aims and programmes of   a political party','','','d','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:48'),(183,'Which of the following is not a duty of a citizen','obedience to the law','payment of taxes','service to the Nation','giving alms to the poor','','','d','','neco','2012',88,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:49'),(184,'The police perform all the following function except','public execution of law breaker','controlling and directing traffic','protection of life and property','enforcement of law and orders','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:50'),(185,'An agreed set of rules prescribing the governance of a country can be called the','constitution','charter','manifesto','programme','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:51'),(186,'The lack of interest in politics by many citizens in a country is called','civic agitation','mass apathy','mass protest','political unrest','','','b','','neco','2012',96,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:52'),(187,'The following are ways to prevent drug addiction except','civic education','law enforcement and regulation','mass media effort','voting at election','','','d','','neco','2012',95,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:53'),(188,'The following are examples of pressure group except','N. U. R. T','NBA','NLC','PDP','','','d','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:54'),(189,'The following are Road Traffic signs except','Regulatory sign','Informative sign','Warning sign','Philosophy sign','','','d','','neco','2012',85,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:55'),(190,'The function of Federal Road Safety Corp (FRSC) is','Enforcing the traffic regulation on road','making law','executing law','Interpreting law','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:56'),(191,'The function of vehicle inspection officer (VIO) is','ensuring the road wordiness of vehicle on the road','protection of life and property','collection of tax','counting of votes cast at election','','','a','','neco','2012',109,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:57'),(192,'Colonization of Africa was mainly motivated by','security consideration','economic reasons','religious reasons','cultural factor','','','b','','neco','2012',96,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:58'),(193,'Which of these is a type of parenthood','single parenthood','ethnic parenthood','village parenthood','clan parenthood','','','a','','neco','2012',77,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:42'),(194,'Decrees are laws made by ............','Democratic government','The prime minister','The military','Parliaments','','','c','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:43'),(195,'Austerity measure was first introduced in Nigeria by ..........','President Babangida','Olusegun Obasanjo','President Sehu Shagari','President Goodluck Jonathan','','','c','','neco','2012',106,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:44'),(196,'Before crossing the road you are expected to ...........','Look left and then right','Look left, right and left again','Look back and left','Look forward for oncoming okada','','','b','','wassce','2013',110,'Admin','2016-11-27 17:07:11','2020-07-14 11:39:45'),(197,'.............. was the capital of Nigeria before .................','Abuja - Lagos','Lagos - Abuja','Ikeja - Abuja','Benin - Abuja','','','b','','wassce','2013',97,'Admin','2016-11-27 17:07:15','2020-07-14 11:39:46'),(198,'The primary duty of the police force is to','Make law','Interpret the law','Deal with danfo and okada drivers','Non of the above','','','d','','wassce','2013',91,'Admin','2016-11-27 17:07:19','2020-07-14 13:37:03'),(199,'The law is enforced by','Military','Legislators','Police force','Area boys','','','c','','wassce','2013',99,'Admin','2016-11-27 17:07:27','2020-07-14 13:37:04'),(200,'Which of the following is NOT an offence','Tax avoidance','Tax evidence','Stealing by trick','Money laundering','','','a','','wassce','2013',88,'Admin','2016-11-27 17:07:31','2020-07-14 13:37:20'),(201,'Some core Rights or Freedoms in the Universal Declaration of Human Rights of 1948 are','The right to life and right to freedom of opinion and expression','The right to fight and smoke in the public place','The right to attack your enemies and the right to make slanderous speeches','None of the above','','','a','','wassce','2013',94,'Admin','2016-11-27 17:07:35','2020-07-14 13:37:20'),(202,'Cultism can lead to','Immoral activities and indiscipline','Maintenance of law and order in the society','Corrupt free society','Sound cultural development','','','a','','wassce','2013',80,'Admin','2016-11-27 17:07:39','2020-07-14 13:37:40'),(203,'Popular participation can','promote political awareness and education','Lead to political apathy','lead to the election of wrong leaders','to political instability','','','a','','wassce','2013',106,'Admin','2016-11-27 17:07:47','2020-07-14 13:37:41'),(204,'One of the ways to prevent the spread of HIV/AIDs is','Not to eat in fast food joints','Not to shake hands with anybody','To avoid any object contaminated with blood','Sleep under a mosquito net','','','c','','wassce','2013',77,'Admin','2016-11-27 17:07:51','2020-07-14 13:37:42'),(205,'Nigeria became independent in ........... and a Republic in ................ Respectively','1963 and 1960','1960 and 1963','1954 and 1960','None of the above','','','b','','wassce','2013',107,'Admin','2016-11-27 17:07:55','2020-07-14 13:37:43'),(206,'The process of enlightening or training citizens on their rights and responsibilities is known as','Workshop training','Citizenship Education','Political Education','Citizenship Rights','','','b','','wassce','2013',94,'Admin','2016-11-27 17:07:55','2020-07-14 13:37:44'),(207,'The ideas, things or principles cherished by the people in a community are referred to as','rights','culture','values','due process','','','c','','wassce','2013',99,'Admin','2016-11-27 17:08:03','2020-07-14 13:37:45'),(208,'The illicit or illegal business in the sales and \ttransportation of human beings for economic and other selfish purposes is known as','Human capital development','Human traffic rule disobedience','Human trafficking','Mans inhumanity to man','','','c','','wassce','2013',78,'Admin','2016-11-27 17:08:03','2020-07-14 13:37:46'),(209,'An indifference attitude towards political activities by the citizens of a state is termed','political apathy','political unrest','political ideology','political disunity','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:07','2020-07-14 13:37:47'),(210,'For which of these can someone be arrested while driving on a high way','driving and laughing','driving and singing','driving and eating or receiving phone call','driving and crying','','','c','','wassce','2013',87,'Admin','2016-11-27 17:08:11','2020-07-14 13:37:48'),(211,'The process in which every qualified citizen of a state has the right to vote is called ............ suffrage','universal adult','democratic','tax payer','communal','','','a','','wassce','2013',89,'Admin','2016-11-27 17:08:11','2020-07-14 13:37:56'),(212,'The armed forces and the police are part of the ........ organ of government','executive','judicial','legislative','informative','','','a','','wassce','2013',85,'Admin','2016-11-27 17:08:14','2020-07-14 13:37:57'),(213,'The exercise of arbitrary power, whims and caprices constitutes a negation of .........','rule of law','fundamental human right','checks and balance','indirect rule','','','a','','wassce','2013',92,'Admin','2016-11-27 17:08:15','2020-07-14 13:37:59'),(214,'Which of the following concepts confirms the general acceptance and recognition of a government?','Democratic powers','Legitimacy','sovereignty','popular democracy','','','b','','wassce','2013',100,'Admin','2016-11-27 17:08:15','2020-07-14 13:37:59'),(215,'Which of the following can cause Human Trafficking in a country','poverty, youth unemployment and greed','Sound education and proper counselling','Social and economic contentment','B and C above','','','a','','wassce','2013',108,'Admin','2016-11-27 17:08:15','2020-07-14 13:38:01'),(216,'The use of drugs through self - medication or without due medical prescription is referred to as','Personal drug administration','Drug abuse','Human right abuse','Drug trafficking','','','b','','wassce','2013',93,'Admin','2016-11-27 17:08:15','2020-07-14 13:38:01'),(217,'An important characteristics of Democracy is','The absence of free press and mass media','Unequal political rights','Respect for principle of rule of law','The absence of separation of powers between the   arms and levels of government','','','c','','wassce','2013',86,'Admin','2016-11-27 17:08:15','2020-07-14 13:38:02'),(218,'Which one of the following is the founding father of Nigeria nationalism?','Goodluck Jonathan','Oba Kosoko','Herbert Macaulay','Olusegun Obasanjo','','','c','','wassce','2013',108,'Admin','2016-11-27 17:08:19','2020-07-14 13:38:03'),(219,'The use of illicit or hard drugs such as marijuana (Indian hemp) heroine, morphine etc. is known as','Human right abuse','Drug trafficking','Drug enhancement','Drug abuse','','','d','','wassce','2013',93,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:04'),(220,'The farthest government to the people is the ............ government','Local','State','Federal','A and B above','','','c','','wassce','2013',114,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:05'),(221,'An instrument for exercise of power for controlling, administering and managing the affairs of people based on laws is the','Civil service','Executive','Government','State','','','c','','wassce','2013',101,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:06'),(222,'The ideology which emphasizes a classless society is','Communism','Capitalism','Totalitarianism','Feudalism','','','a','','wassce','2013',88,'Admin','2016-11-27 17:08:27','2020-07-14 13:38:07'),(223,'Which of the following constitutes drug abuse','taking less than the dose recommended by the doctor','taking more than the dose recommended by the doctor','taking the exact dose recommended by the doctor','A and B above','','','d','','wassce','2013',93,'Admin','2016-11-27 17:08:31','2020-07-14 13:38:08'),(224,'The power to legislate is usually exercised by','parliament','executive','judiciary','the president','','','a','','wassce','2013',82,'Admin','2016-11-27 17:08:39','2020-07-14 13:38:09'),(225,'Membership of a state is known as','citizenship','statism','patriotism','indigenousness','','','a','','wassce','2013',94,'Admin','2016-11-27 17:08:39','2020-07-14 13:38:10'),(226,'The process of learning the political attitudes, values and beliefs that are relevant to the political system is known as','political culture','political socialization','political participation','political science','','','b','','wassce','2013',114,'Admin','2016-11-27 17:08:39','2020-07-14 13:38:11'),(227,'The system of government in which all aspects of life are controlled by the government is','democracy','totalitarianism','capitalism','socialism','','','b','','wassce','2013',96,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:18'),(228,'It is an offense to drive along the high way','without putting on the seat belt','and talk or smile at the same time','and make phone calls at the same time','A and C above','','','d','','wassce','2013',87,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:19'),(229,'The individual rights would be better protected if enshrined in the ..................','Courts','Constitutions','Bible and Quran','National Newspapers','','','b','','wassce','2013',81,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:20'),(230,'What is the minimum age for voters in Nigeria','15','20','18','50','','','c','','wassce','2013',98,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:21'),(231,'Which of these characteristics of the civil service ensure continuity of government?','Neutrality','Permanence','Bureaucracy','Loyalty','','','a','','wassce','2013',102,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:22'),(232,'Public corporation are owned by the','government','banks','private individuals','foreigners','','','a','','wassce','2013',99,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:23'),(233,'The principle of equality before the law is the same as','social equality','social injustices','checks and balances','democratic justices','','','a','','wassce','2013',85,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:24'),(234,'The organ of government which are normally fused in a military regime are the','judiciary and legislative','civil service and executive','legislative and executive','legislative and judiciary','','','c','','wassce','2013',92,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:24'),(235,'The illegal sales and transportation of human beings for economic and some other selfish purpose is termed','Slave Trade','Survival of the Fittest','Gross Human Right Abuse','Human Trafficking','','','d','','wassce','2013',107,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:25'),(236,'The lack of interest in politics and political activities by the citizens of a country is known as','political disinterestedness','political culture','political disintegration','political apathy','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:26'),(237,'Popular participation refers to','Political Apathy','The active involvement of citizens in the social political activities of a country','The rule of the party with the largest number of supporters','The rule of a prominent and popular politician','','','b','','wassce','2013',84,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:27'),(238,'The rule of law simply means','The ruling of a lawful leader','The absence of political instability','Supremacy of the law','The ruling of legislators','','','c','','wassce','2013',88,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:28'),(239,'Cultism is ........, and so it should be ........','useful - allowed','cultural - encouraged','dangerous - discouraged','amiable - supported','','','c','','wassce','2013',97,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:29'),(240,'Drug abuse can be curbed by','encouraging the use of enhancement drugs in sports','teaching youths moral and religious principles','encouraging rural urban migration','None of the above','','','b','','wassce','2013',91,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:30'),(241,'A problem commonly faced by most people living with HIV/AIDs is of','Stigmatization','Non availability of drugs','Government insincerity','Lost of appetite','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:31'),(242,'Which of the following type of government is hereditary?','Democracy','Oligarchy','Monarchy','Fascism','','','c','','wassce','2013',85,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:32'),(243,'An organization whose ultimate aim is to gain the control of government and implement its programmes is known as a','Trade Union','Local Government','Political Party','Pressure Group','','','c','','wassce','2013',81,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:33'),(244,'The president belongs to .......... arm of the government','Legislative','Judiciary','Executive','Anti-crime','','','c','','wassce','2013',93,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:34'),(245,'In Nigeria the outbreak of Ebola disease was first observed in the year','2012','2013','1960','2014','','','d','','wassce','2013',87,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:35'),(246,'Juvenile delinquency and cultism are ......... and should be .........','undesirable - encouraged','desirable - discouraged','undesirable - discouraged','desirable - discouraged','','','c','','neco','2013',94,'Admin','2016-11-27 17:44:15','2020-07-14 13:38:36'),(247,'Those who consume fish and vegetable frequently stand the chance of contacting the','HIV/AIDs disease','Ebola disease','Typhoid and yellow fever disease','None of the above','','','d','','neco','2013',87,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:37'),(248,'The primary function of the legislature is the','monitoring the executive','making of laws','voting of bills','appointment of ministers','','','b','','neco','2013',78,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:38'),(249,'Ejiro, the senior brother of Omonigho had fever last week. The doctor prescribed a certain drug for him, He was asked to take one tablet, three times a day for four days. He took the drug as recommend for the first and second day and stopped. Five days later he took one tablet in the morning and one again at night. Omonigho’s action can be said to be a kind of','bad drug administration','drug Abuse','drug trafficking','Human trafficking','','','b','','neco','2013',89,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:39'),(250,'When a constitution is difficult to amend it is said to be','rigid','flexible','written','federal','','','a','','neco','2013',79,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:40'),(251,'If Omonigho had taken the tablet one three times a day for six days his action constitutes a kind of','good drug administration','drug abuse','drug trafficking','none of the abuse','','','b','','neco','2013',100,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:41'),(252,'Ejiro, who is not sick decide to take the same drug for the same duration as recommended for Omonigho by the doctor.Ejiro’s action can be described as a form of','preventive measure','drug abuse','drug trafficking','Self help activity','','','b','','neco','2013',85,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:42'),(253,'As Mr Umukoro got to Oghara junction, near Sapele, he packed the bus and bought some roasted monkey bush meat. Some of the passengers in the bus followed suit, that day was a good Friday. On motion Mr Umukoro, the driver and some of the passengers were doing justice to the monkey bush meat. No sooner had they started than they were stopped and Mr Umukoro was fined by men of the FRSC. If the fine was proper which of the reasons bellow could be responsible for it','some of the passengers ate the bush meat while the bus was on motion','Mr Umukoro, the driver was driving and eating at the same time','They were not supposed to eat monkey bush meat because they can contact the Ebola virus from it.','They were not expected to eat and any kind of meat on a good Friday','','','b','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:43'),(254,'The Ebola virus sneaked into Nigeria through','The Liberian born American, Mr Patrick Sawyer','The Ghanaian born American, Mr Patrick Sayer','Members of the Boko Haram','Monkeys and bats','','','a','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:43'),(255,'As a citizen you can be deprived of your Fundamental Human Rights during','Emergency Rule','Election period','National day celebration','National public holidays','','','a','','neco','2013',86,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:44'),(256,'Malaria fever can be transmitted through','hand shaking','eating of unbalanced diet','mosquito bite','eating of bush meat such as bat and monkey','','','c','','neco','2013',88,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:45'),(257,'Plenty of money in the society, not backed by commensurate productive activities can lead to','deflation','inflation','National developmental','cashless society','','','b','','neco','2013',93,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:46'),(258,'In the year 2014, the Nigerian President Good luck Ebelle Jonathan  urged Nigerians to .......... the rumors  that drinking and bathing with salt water prevents or cures Ebola virus','ignore','accept','welcome','embrace','','','a','','neco','2013',98,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:47'),(259,'The primary duty of the army is to','execute the law','interpret the law','overthrow the government when there is anarchy','defend the country against external aggression','','','d','','neco','2013',97,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:48'),(260,'The first known outbreak of Ebola was in ................','2014, in Sierra Leone','1976, in a remote village near the Ebola River in Congo','2014, in port Harcourt, Nigeria','Enugu, during the Nigeria - Biafra war','','','b','','neco','2013',89,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:49'),(261,'On a particular day in 2014, the National flag was flown half mask. This act symbolizes','National tailors day','National mourning','Children’s day','Golden jubilee celebration','','','b','','neco','2013',103,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:50'),(262,'Vehicles are expected to continue with their journey when the traffic light shows ...............','Red','Blue','Yellow','Green','','','d','','neco','2013',97,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:51'),(263,'In which of the following system is survival of the fittest mostly practiced','Communist system','Capitalist system','Feudalist','Totalistic system','','','b','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:52'),(264,'For now the Ebola disease has','no known cure','several known cures','cannot kill its action','no physically observable symptoms','','','a','','neco','2013',86,'Admin','2016-11-27 17:44:17','2020-07-14 13:38:53'),(265,'Some years ago a popular Governor in one of the states in Nigeria was asked to mention some mineral \tresources from his state. He made mention of “Fanta, Pepsi, Coca cola. The governor is','right','wrong','illiterate','unpatriotic','','','b','','neco','2013',83,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:00'),(266,'If you were to be in the Governor’s shoes which of the following would you have chosen?','Miranda and seven up','coca cola and Fanta','petroleum','stock, bonds and cash','','','c','','neco','2013',93,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:01'),(267,'The right practice of democracy can','ensure equity, justice and far play','discourage political education and awareness’','political unrest','lawlessness','','','a','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:02'),(268,'Political Apathy can lead to','very fast pace of development','the emergence of sound democratic government','wrong set of people coming into power','development of sound political culture','','','c','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:03'),(269,'Human traffickers usually engage their victims .........','in educative programs','in forced labour','in skill acquisition activities','in recreational activities','','','b','','neco','2013',71,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:04'),(270,'During a particular voting exercise if majority of the \tpeople refuse to vote, this can be described as','political stubbornness','political apathy','political awareness','political socialization','','','b','','neco','2013',83,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:05'),(271,'Mr Dickson’s little son, clement was sent away from school because he has not paid his school fees of \tN=11,000. That same day as Mr Dickson boarded a Danfo bus he noticed that the purse of a fellow passenger dropped on the floor of the bus. Mr Dickson tactically picked up the purse, opened it and saw a handsome sum of N=100,000. No body in the bus noticed him, neither did the fellow passenger. As a patriotic and good citizen of Nigeria, what is Mr Dickson expected to do','Pay his tithe (1/10 of the money) to the church take the rest and pray for forgiveness','Draw the attention of the fellow passenger and give the money back to him /her','Use part of the money to pay his son’s fess and keep the rest because opportunity comes but once','Leave the purse on the floor, and mind his business','','','b','','neco','2013',75,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:06'),(272,'Public corporations are','meant to make profit','not meant to make profit','not expected to produce','established to gather public opinion','','','b','','neco','2013',98,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:07'),(273,'The attitude of the crowd towards, the sick man was that of ............','indifference','friendliness','hospitality','political apathy','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',102,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:08'),(274,'Which of the following could be a possible reason for the crowds attitude towards the sick man','They were afraid that he might be an unknown soldier','They kept their distance so as not to contact the Ebola virus, in case he has it','They were not used to helping visitors','They kept their distance so as not to contact the HIV/AIDs virus, in case he has it','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','b','','neco','2013',101,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(275,'If the crowd insisted on keeping their distance what appropriate action could they have taken','call the appropriate health department to intervene','left him to his fate','stone him to death','desert him','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(276,'If the crowd suspected that he had the Ebola virus and wish to call the Ebola emergency line, which one of the following could they have called?','08023169485','0803361424','08023361936','08027063614','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',90,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:10'),(277,'Any forms of restricted franchise is a violation of the principle of','political equality','sovereignty','legality','constitutionalism','','','a','','neco','2013',90,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:11'),(278,'Which of the following is not the civic obligation of a citizen','payment of taxes','freedom of conscience and speech','voting during elections','obedience to law','','','b','','neco','2013',97,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:12'),(279,'A sovereign state is one','whose citizens are free to evade responsibility','whose governments decisions are made independent of foreign interference','which has a president and a prime minister','where its citizens can speak without fear or favour','','','b','','neco','2013',99,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:13'),(280,'Jamiu and Onome were among those standing inside a BRT bus in Lagos. Onome mistakenly stepped on Jamiu and Jamiu gave Onome a very dirty slap. As a law a biding citizen of the country which of the following reactions is expected of Onome','Turn the other chick for another slap','Slap Jamiu back and prepare for any fight that might ensure','Let Jamiu know that he, Onome stepped on him inadvertently, but pardon him to avoid escalating the matter','Push Jamiu down from the moving bus','','','c','','neco','2013',85,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:14'),(281,'Juvenile delinquency refers to','active youths participation in sports','wrong doings by the youths','Refusal to worship God by the youths','Urban Rural migration by the youth','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:15'),(282,'Psychopathy is a form of ................ behaviour','Normal','abnormal','desired','valued','','','b','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:16'),(283,'Consumers of ......... especially ........... and ..............stand the a great risk of contacting the Ebola disease','fish, tilapia, titus','bush meat, monkey, bat','meat, cow, dog','vegetable, water leaf, bitter leaf','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:17'),(284,'Government is the machinery established to manage the affairs of','the state','the civil service','peasants and students','strangers','','','a','','neco','2013',102,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:18'),(285,'The judicial organs of government is the body which','makes the law','implements the law','interpreters the law','rewards lawmakers','','','c','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:19'),(286,'The Ebola disease is usually acquired when a person comes in contact with','the blood or bodily fluids of an infested organism','anybody whose name is Bola','any animal','snake fish','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:20'),(287,'The prime minister is vested with the powers of the executive in ........... system of government','a parliamentary','a presidential','a monarchical','unitary','','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:27'),(288,'Through which of these can citizenship status be acquired','birth, naturalization, honorary and registration','birth, colonization and integration','referendum, incorporation and acceptance','convention registration and colonization','','','a','','neco','2013',99,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:28'),(289,'That which people enjoy primarily because they are human beings are called ...............','Human Obligation','Constitutional Right','Human Right','Democratic Right','','','c','','neco','2013',93,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:29'),(290,'Which of these categories of people stand the greatest risk of contacting the Ebola virus .........','Lecturers and students in the school','Health workers and their family members','Hunters and their family members','b and c above','','','d','','neco','2013',78,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:45'),(291,'It is often said that public servants cannot be held responsible for their actions. This principle denotes .................','anonymity','civic irresponsibility','accountability','neutrality','','','a','','neco','2013',84,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:46'),(292,'Free, fair and credible elections are attributes of .......','undemocratic government','democratic government','military regime','monarchical governance','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:52'),(293,'The followings are symptoms of Ebola excepts','sudden fever and vomiting','headaches and diarrhea','muscle pains','frequent hunger and increase thirst for water','','','d','','neco','2013',105,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:53'),(294,'Public service belongs to ................','the legislative arm of government','the judiciary arm of government','senate arm of government','the executive arm of government','','','d','','neco','2013',97,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:54'),(295,'Human traffickers usually force their victims to engage in','rewarding exercise','religious activities','forced labour','useful trade','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:24','2020-07-14 13:39:55'),(296,'Public servants in Nigeria are expected to be .............','involved in politics','non-partisan','ambitious politically','partial','','','b','','wassce','2011',96,'Admin','2016-12-12 19:40:24','2020-07-14 13:39:56'),(297,'HIV and Ebola can be contacted through contact with','Non infected person','contaminated medical equipment such as needles and syringes','Very sick person','Healthy reptiles','','','b','','wassce','2011',113,'Admin','2016-12-12 19:40:24','2020-07-14 13:39:57'),(298,'Which of the following is not a preventive measure against the acquisition of the Ebola disease...........','Do not touch an infected person or their body fluids including blood, vomit, urine, saliva','Wash your hands regularly with soap and water and apply sanitizers frequently','Beware of hand shake and go for medical checkup as soon as possible when sick','Do not bath with medicated soap','','','d','','wassce','2011',91,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:09'),(299,'Nigeria celebrated her centenary anniversary in the ......','1954','1960','1963','2014','','','d','','wassce','2011',99,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:10'),(300,'Which of the following are Ebola Emergency lines','08023169484 or 08033086660','08023361936 or 08034623521','08023164216 or 08033065936','08055281400 or 08023361936','','','a','','wassce','2011',106,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:11'),(301,'An individual with feverish condition who has taken Panadol is advised to see the ............ if the feverish condition persists after .......... days','father, four','pastor, three','doctor, three','doctor, ten','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:12'),(302,'Which of these is NOT undesirable in the society','cultism','terrorism','patriotism','vandalism','','','c','','wassce','2011',103,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:13'),(303,'As at 2014 Nigeria has .......... states','47','37','60','57','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:14'),(304,'The Boko Haram insurgency started around','2009','2014','1960','1963','','','a','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:15'),(305,'A sense of right and wrong guiding a person’s action is known as','attitude','conscience','action','manner','','','b','','wassce','2011',88,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:16'),(306,'Which of the following is a bad habit capable of leading to future psychological and physiological ill health','self Actualization','Self Meditation','Self Medication','Self Appraisal','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:17'),(307,'Civic Education is also known as ....................','Organizational Structure','Citizenship Education','Customers Opinion','Government Policy','','','b','','wassce','2011',105,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:18'),(308,'The number of Girls abducted by members of Boko Haram at Chibok in 2014 is roughly','200','219','419','180','','','b','','wassce','2011',94,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:19'),(309,'The Ebola virus can be prevented by','washing our hands regularly and applying sanitizer','washing our head always','taking drugs regularly','eating balanced diet','','','a','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:21'),(310,'If six political parties contest for an election (A, B, C, D, E, F), what is the probability that party C will wine the election','1/3','1/4','1/6','1/2','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:24'),(311,'Another word for abduction is ...........................','to steal','to adopt','to kidnap','to kill','','','c','','wassce','2011',99,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:25'),(312,'In Lagos state and some other states in Nigeria, motorcycle (okada) riders are expected to wear ............ while on motion','Boot','Hand glove','Crash helmet','Black coloured shirt','','','c','','wassce','2011',74,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:26'),(313,'In Lagos state, the BRT lane is reserved for ....... only','The governor','Soldiers','Commercial buses','BRT buses','','','d','','wassce','2011',97,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:27'),(314,'Mondays and Thursday are days meant for in between environmental sanitation exercise in ........... and .......... states respectively','Lagos and Edo','Edo and Lagos','Abuja and Lagos','Delta and Lagos','','','b','','wassce','2011',102,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:28'),(315,'One way for Nigerians to maintain steady good health is by','taking malaria medicine everyday','bathing with salt water and eating bitter kola always','taking balance diet and engaging in regular physical exercise','taking alcohol and cigarettes regularly','','','c','','wassce','2011',86,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:29'),(316,'Which of the following is the cleanest source of water in Nigeria','pond water','river water','rain water','lagoon water','','','c','','wassce','2011',96,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:30'),(317,'Which of these tax below is paid by nearly everybody in Nigeria','Direct tax','Excise tax','Proportional tax','Regressive','','','b','','wassce','2011',101,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:31'),(318,'Which of the following was a former military head of state in Nigeria','MKO Abiola','Goodluck Jonathan','General Idiagbon','General Babagida','','','d','','wassce','2011',94,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:32'),(319,'The three larges and most influential ethnic groups in Nigeria are','Yoruba, Edo and Hausa','Igbo, Iteskiri and Hausa','Hausa, Igbo and Yoruba','Fulani, Yoruba and Efik','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:33'),(320,'The former National anthem begins with.......................','Nigeria We Hail Thee','Arise O Compatriots','I pledge to Nigeria my Country','So help me God','','','a','','wassce','2011',102,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:34'),(321,'NUC and NBA stands for ......... and ......... respectively','National University Commission and Nigeria Bar Association','Nigeria Bar Association and National University Commission','National Union Congress and Nigeria Basketball Authority','National Utilities Commission and Nigeria Bar Association','','','a','','wassce','2011',87,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:35'),(322,'General Murtala Mohammed was assassinated on his way to work in ..............','February 13, 1976','June 12, 1993','October 1, 1960','June 8, 1998','','','a','','wassce','2011',103,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:36'),(323,'Naira and Kobo was introduced in Nigeria in ..............','2nd July,1963','1st January 1972','June 12, 1993','March13, 1995','','','b','','wassce','2011',97,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:37'),(324,'In the General election of June 12 1993, the two main candidates that contested for the post of presidency were ......','MKO Abiola and Olusegun Obasanjo','MKO Abiola and Tofa','Atiku and Olusegun Obasanjo','Yaradua and Goodluck Jonathan','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:37'),(325,'A committee of PDP members is made up of 9 Hausas, 8 Igbo and 7 Yorubas. If the president wishes to choose just one person to be his special adviser, find the probability that the person chosen is neither Hausa nor Yoruba','7/24','2/3','3/8','1/3','','','d','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:38'),(326,'Driving, especially along the highway requires serious  ...........','concentration','meditation','concentration','perambulation','','','c','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:39'),(327,'A Taxi diver who mistakenly Jams and kills someone is guilty of ............... and he will receive ................ punishment than if it were a case of ........','murder, less, manslaughter','man slaughter, less, murder','manslaughter, more, murder','civil offence, less, murder','','','b','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:40'),(328,'The full meaning of NYSC is ..............','Now Your Suffering Continues','Nigeria Youths Serving Christ','National Youth Service Corps','Nigerian Youth Service Corps','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:41'),(329,'The NYSC was established in the year .................','May 22, 1973','June 15, 1960','May 22, 1963','August 20,1993','','','a','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:42'),(330,'One of the main objectives of establishing the NYSC is to .................','Enable the youths to have some practical experience \t\t     after schooling','Forster National unity','Engage the young graduates because “Idle mind is the devil’s workshop”','Create employment for the young graduates','','','b','','wassce','2011',84,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:43'),(331,'Those eligible to partake in the scheme are those','Those seeking for admission into the higher institutions','Who have successfully completed their studies from higher institution .eg. college of education, \t\t     polytechnic & university','Who are looking for something to keep them busy','Who are from poor family background','','','b','','wassce','2011',94,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:44'),(332,'The age limit for the service is ..............','25','35','30','18','','','c','','wassce','2011',92,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:45'),(333,'At the end of the service year each corper will be given ......... as an evidence that he or she has successfully completed the service','NYSC passport','National ID Card','NYSC discharge certificate','Letter of appreciation','','','c','','wassce','2011',105,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:46'),(334,'Which of the following is true','The CD (Community Development) exercise   embarked by corpers is not paid for by the community','Corpers collect extra money for embarking on the C.D','Corpers are not usually given monthly allowances','The aim of the NYSC scheme is to foster disunity   in the country','','','a','','wassce','2011',96,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:47'),(335,'The killing of NYSC members in certain parts of the country  ................','Contradicts the goal of establishing the scheme','Is in line with the aims of establishing the scheme','Is not a serious matter','Enhances national unity','','','a','','wassce','2011',86,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:48'),(336,'Nigeria is a ............. state','Communist','Capitalist','socialist','Feudalist','','','b','','wassce','2011',93,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:49'),(337,'Some years to come, when you become the President of Nigeria, which of the options below will you choose \tto eradicate porzverty in the country','carry all the poor people away from Nigeria to another country so when there are no poor people poverty will be gone forever','print plenty Naira Notes and give millions to every Nigeria','Import plenty Agricultural and Manufactured goods','None of the above','','','d','','wassce','2011',94,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:50'),(338,'On the 18th of November 2014 in Yobe, some crowds lynched a suspected suicide bomber. The action of the crowd is .....','right because ‘he who kills by the sword must die by the sword’','wrong because they have unlawfully taken the law into their hands, they should have handed the suicide  bomber over to the police','right because we all have to fights against all forms of terrorism','right so that others will learn lesson from this action','','','b','','wassce','2011',87,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:51'),(339,'In the year 2014 the catholic church in Nigeria suspended the usual hand shaking (as a sign of peace) among its members just after the “Lord’s prayer” The most likely reason for this action is to prevent the \t\tspread of ............, in case a member has it','HIV/AIDs virus','The Ebola virus','Evil and demonic spirit','malaria fever','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:52'),(340,'Decrees are laws made by .............','the parliament','the judiciary','the military','senators','','','c','','wassce','2011',90,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:53'),(341,'The document containing the aims and programs of a political party is called ...........','register','manifesto','memorandum of party','party library','','','b','','wassce','2011',100,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:53'),(342,'The former PHCN is a good example of .................. in Nigeria','civil service','perfect competition','public corporation','private monopoly','','','c','','wassce','2011',107,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:54'),(343,'Orderliness can be defined as','being punctual to work','studying diligently in school','doing things in a proper way','learning the Western way of life','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:55'),(344,'The Traffic in Persons Prohibition and Administration Act was passed in Nigeria in','December 2001.','October 2002','August 2003','April 2004.','','','c','','wassce','2016',89,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:56'),(345,'The process of enabling someone to perform an action which adds value to his/her life is known as','employment','recruitment','socialization','empowerment','','','d','','wassce','2016',88,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:58'),(346,'Rates are collected in Nigeria by','Federal Inland Revenue Service','State Ministry of Finance','Local Government Councils','Council of Traditional Rulers','','','c','','wassce','2016',93,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:59'),(347,'The Fourth Schedule of the 1999 Constitution of Nigeria outlines the functions of','federal government','local government','national government','state government','','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:00'),(348,'Lack of interest in politics by citizens in the country is referred to as political','ignorance','apathy','participation','socialization','','','b','','wassce','2016',92,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:01'),(349,'Which of the following instruments is not used by a civil society group?','Propaganda','Boycott','Protest','Violence','','','d','','wassce','2016',92,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:02'),(350,'The administrative class in the public service is to','implement policies','formulate policies','veto policies','oversee policies','','','a','','wassce','2016',75,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:02'),(351,'“We the people of the Federal Republic of Nigeria” is usually the opening phrase of the preamble to','coup announcement','government gazettes','constitution','mansard','','','c','','wassce','2016',80,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:04'),(352,'One of the responsibilities of a good citizen is to','possess an international passport','enjoy all amenities provided by government','serve the country when required','develop his potentialities to the fullest','','','c','','wassce','2016',87,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:05'),(353,'Naturalized citizens cannot be denied their legal status as members of a country unless if they','are jailed for one year within seven years of acquiring citizenship','are found guilty to be spies or secret agents for another country','refuse to represent the country in an international sporting event','give adequate information to the host country','','','a','','wassce','2016',82,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:06'),(354,'Citizenship education influences an individual to be','patriotic','educated','complacent','competent','','','a','','wassce','2016',99,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:07'),(355,'Which of the following is not an example of orderliness?','Listening skill','Driving skill','Decorum','Deviance','','','d','','wassce','2016',71,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:08'),(356,'Which of the following statements is not correct?','Valid driver’s license must be obtained before attempting to drive','Flowing garment can be worn on a motorcycle or bicycle','Headlights should be used during unfavourable weather','Drivers must not engage in distractive activities while driving','','','d','','wassce','2016',81,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:09'),(357,'Cultism can best be discouraged through','mentoring of cultists by the rich','provision of jobs for cultists','sensitization on the dangers of cultism','establishment of cultists support groups','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:10'),(358,'Which of the following is a consequence of drug abuse?','Depression','Victimization','Inefficiency','Cowardice','','','a','','wassce','2016',88,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:11'),(359,'The effect of human trafficking on the victims is','illiteracy','affluence','exposure','exploitation','','','d','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:11'),(360,'The general attitude of government and society towards cultism is that of','affection','sympathy','abhorrence','support','','','c','','wassce','2016',93,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:12'),(361,'Drug abuse can be prevented by','fighting drug addicts','poverty reduction','reducing drugs in circulation','legal sanction','','','b','','wassce','2016',92,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:14'),(362,'A major factor responsible for human trafficking is','hunger','illiteracy','greed','joblessness','','','c','','wassce','2016',94,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:14'),(363,'People Living With HIV/AIDS (PLWHA) can be supported by','billing them for antiretroviral therapy','providing drugs for them at subsidized rates','providing special attires for them','providing accommodation for them in designated locations','','','b','','wassce','2016',90,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:22'),(364,'Cult members are particularly hostile to','lecturers','perceived enemies','their group members','all students','','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:23'),(365,'Drug law enforcement agencies in Nigeria are not empowered to','execute drug suspects','arrest drug barons','prosecute drug traffickers','rehabilitate drug addicts','','','a','','wassce','2016',81,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:24'),(366,'Which of the following is not a means of reducing the incidence of HIV/AIDS in our society?','Education and enlightenment programs','The use of specially designed cutlery by victims','Avoiding pre-marital and extra-marital sex','Upholding the value of chastity','','','b','','wassce','2016',95,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:25'),(367,'Youth empowerment promotes','self-reliance','youthful exuberance','pursuit of higher education','foreign scholarship','','','a','','wassce','2016',88,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:26'),(368,'The Supreme Court of Nigeria helps in law','drafting','application','interpretation','enforcement','','','c','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:26'),(369,'Democracy thrives most where there is','nonpartisan judiciary','freedom of speech and association','absence of universal suffrage','one-party system','','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:27'),(370,'Rule of law is limited by the following except','state of emergency','habeas corpus','illiteracy','immunity','','','c','','wassce','2016',87,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:28'),(371,'Preventive measures of HIV/AIDS do not include','abstinence','screening of blood before transfusion','use of barrier method','stigmatization of victims','','','d','','wassce','2016',78,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:30'),(372,'One of reasons leaders fail to protect the interest of their followers is','selfishness','inadequate finance','ignorance','rigid policies','','','a','','wassce','2016',86,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:31'),(373,'Which of the following is not a form of political participation?','Taking part in voters’ registration exercise','Voting during elections','Joining political party','Ballot box stuffing during elections','','','d','','wassce','2016',96,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:32'),(374,'Civil Society groups perform the following roles during general elections except','educating the voters','serving as watchdog','counting votes','stimulating participation','','','c','','wassce','2016',74,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:33'),(375,'Which of the following is not an example of civil society group?','United Action for Democracy','United Nations Organization','Transition Monitoring Group','Amnesty International','','','b','','wassce','2016',88,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:34'),(376,'One of the major complaints against public service is','inefficiency','understaffing','victimization','discrimination','','','a','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:35'),(377,'Which of the following is not a way of improving public service?','Politicization','Refresher courses','The use of Code Conduct Bureau','Reformation','','','a','','wassce','2016',94,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:36'),(378,'Children that are not cared for are mostly prone to','criminal attitudes','terminal diseases','examination failure','forced migration','','','a','','wassce','2016',91,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:38'),(379,'The motherland in the monologue could best be described as','a nation in transition','a morally upgrading country','a socially viable nation','an ethically bankrupt country','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:39'),(380,'In spite of the state of affairs reflected in the above monologue, the citizens can make the country better by being committed to','promoting inter-communal relations','strengthening capacity building','championing moral values','encouraging interpersonal relations','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','c','','wassce','2016',84,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:40'),(381,'Based on the monologue above, the best approach to curb moral decadence in the motherland is by','value re-orientation','introducing war against corruption','legalizing capital punishment','sending corrupt officials on exile','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','a','','wassce','2016',84,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:41'),(382,'The most important contribution of responsible parenthood to national development is that it','increases youthful population','fosters national integration','augments the nation workforce','breeds dependable citizenry','','','c','','wassce','2016',91,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:42'),(383,'Which of the following can not be easily abused?','Cosmetics','Stimulant','Tobacco','Narcotics','','','a','','wassce','2016',78,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:43'),(384,'Dr. Fajir cannot exercise some basic rights because he','was a suspect in a criminal case','was found guilty of a criminal offence','failed to comply with court order','embezzled public fund','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','b','','wassce','2016',124,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:44'),(385,'According to the above story, the open trial of Dr. Fajir and his representation by lawyers of his choice in a court of competent jurisdiction is an indication of','respect for habeas corpus','freedom of expression','respect for human rights','freedom of legal representation','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','c','','wassce','2016',80,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:45'),(386,'Based on the above story, which of the following would Dr.Fajir not be allowed to do while in prison?','Voting during elections','Engaging in hard labour','Participating in prison fellowship','Writing examination','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','a','','wassce','2016',78,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:46'),(387,'The most important place for building good values is the','social welfare centre','workplace','family','media houses','','','c','','wassce','2016',76,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:47'),(388,'Citizen’s compliance with tenets of the Nigerian National Pledge will enable the country to','receive reciprocal assistance','witness value clarification','get international aid','experience development','','','b','','wassce','2016',82,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:48'),(389,'Which of the following statements may be true about the behaviour of the candidates in the diagram?','The candidates are doing what is ethical','Candidates involved in malpractice should be banned for life','Their action can also affect innocent candidates','Their misconduct will guarantee a reliable certificate','','','b','','wassce','2015',76,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:49'),(390,'Based on the above diagram, the candidates would not have cheated if','they were well-spaced','there was an invigilator','they were hardworking','there was nobody to copy from','','','c','','wassce','2015',86,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:50'),(391,'In which year did the United Nations General Assembly adopt the Universal Declaration of Human Rights?','1945','1946','1947','1948','','','a','','wassce','2015',81,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:50'),(392,'Two forms of road signs are regulatory and','punitive','informative','persuasive','inhibitive','','','b','','wassce','2015',86,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:52'),(393,'Which of the following factors does not affect interpersonal relationship?','Communication','Withdrawal','Compatibility','Forgiveness','','','b','','wassce','2015',83,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:53'),(394,'The following cadre of students are the main target for campus cult membership except','students from wealthy homes','students from influential parents','bold and morally sound students','wayward and fun-loving students','','','c','','wassce','2015',88,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:54'),(395,'The National Agency for Food and Drug Administration and Control (NAFDAC) was established in','1993','1996','1999','2001','','','a','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:55'),(396,'National Agency for the Prohibition of Traffic in Persons (NAPTIP) is an initiative of','Federal Government of Nigeria','United States Agency for International Development','Woman Trafficking and Child Labour Eradication \tFoundation','United Nations Office on Drugs and Crime','','','a','','wassce','2015',77,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:56'),(397,'World AIDS day is observed on','20th May','30th July','27th August','1th December','','','d','','wassce','2015',71,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:57'),(398,'An enabling environment created to help an individual have effective control of his/her situation is known as','reinforcement','empowerment','endowment','enhancement','','','b','','wassce','2015',90,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:58'),(399,'In order to avoid undue interference in the process of governance, there should be','clear cut separation of governmental powers','proper fusion of governmental powers and functions','more roles for traditional rulers in the governmental process','additional responsibility for local government council','','','a','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:59'),(400,'Red-tapism is one the shortcomings of','private enterprise','public service','non-governmental organization','pressure groups','','','b','','wassce','2015',90,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:00'),(401,'An ideology that aims at promoting national consciousness and identity is','nationalism','socialization','civic culture','progressivism','','','a','','wassce','2015',88,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:01'),(402,'Human rights are described as inviolable mainly because they are','authoritative declaration','enforceable everywhere','not to be unnecessarily taken away','legal declaration instruments','','','d','','wassce','2015',63,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:02'),(403,'Law and order can best be maintained in Nigeria through the','prohibition of public protest','enforcement of rules and regulations','use of divide and rule policy','promotion of indigenization policy','','','b','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:03'),(404,'A responsible parent is someone who','cares and provides for the children','indulges the children because of love','works in order to receive salary','employs house-helps to take care of the children','','','a','','wassce','2015',79,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:04'),(405,'A major way of promoting responsible parenthood is through','sex education','sound education','population control measures','tax reduction measures','','','a','','wassce','2015',95,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:05'),(406,'Which of the following is not included in the stages of interpersonal relationship?','Rejuvenation','Deterioration','Termination','Continuation','','','c','','wassce','2015',82,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:06'),(407,'Cultism in tertiary institutions in Nigeria was originally introduced to','perpetuate the use of local gin and alcohol','harass opponents of university administrators','fight colonialism and oppressive rules','promote inter-communal marriages.','','','c','','wassce','2015',101,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:07'),(408,'Which of the following is not a function of the National Drug Law Enforcement Agency (NDLEA)?','Applying and implementing all drug laws','Arresting, investigating and prosecuting drug traffickers','Undertaking the registration of companies dealing \tin drugs','Carrying out enlightenment campaigns on drug trafficking','','','c','','wassce','2015',72,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:08'),(409,'An individual who finds it difficult to control in-take of drug is known as drug','baron','traffickers','mogul','addict','','','d','','wassce','2015',77,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:09'),(410,'The NDLEA personnel are not usually found in','international airports','seaports','border crossings','foreign embassies','','','d','','wassce','2015',94,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:10'),(411,'Which of the following statements best describes Human Trafficking?','Recruitment of youths as casual workers','Desperate desire by youths to travel abroad','Buying and selling of humans for selfish purposes','Transportation of gods and service through human portage','','','c','','wassce','2015',81,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:31'),(412,'From the above write-up what category of Kantoguan youth deserves to be effectively empowered?','Children of the ruling political class','Unemployed youths and school drop-outs','University undergraduates','Youth wing of religious organizations','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','b','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:33'),(413,'The responsibility of empowering the youth rests mostly with','the political class','religious organizations','university administrators','national government','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','d','','wassce','2015',80,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:35'),(414,'Based on the write-up, what immediate measures can those in authority take to empower the youths?','Build more youth orientation camps in the country','Enhance religious and moral education in schools and colleges','Provide entrepreneurial training with adequate fund','Provide free meal for the teeming unemployed youths','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','c','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:36'),(415,'A very important segment of the society which is distinct from government, business and home is the','civil society','public service','mass media','traditional institution','','','a','','wassce','2015',97,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:36'),(416,'HIV/AIDS is generally described as terminal in nature because it is','preventable','transmittable','avertable','incurable','','','d','','wassce','2015',82,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:37'),(417,'Inter-communal relationship is best described as','the interaction between individuals, groups or organizations with common aspirations','the interaction among individuals and professionals in a social setting','loyalty to community leaders so as to achieve rapid communal development','respect for collective national symbols in order to foster nationalistic feeling','','','a','','wassce','2015',84,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:38'),(418,'A situation whereby someone is obliged to inform a superior about his actions and decisions for the purpose of control is','probity','self-discipline','accountability','fair play','','','c','','wassce','2015',92,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:39'),(419,'The above quotation summarizes the','Universal Declaration of Human Rights.','African Charter on Human Rights.','Geneva Conventions and Protocols.','United Nations Organization Charter.','“All human beings are born free and equal in dignity and rights. They are endowed with reason and \t\tconscience and should act towards one another in a spirit of brotherhood”.','','a','','wassce','2015',78,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:40'),(420,'Effective and responsible parenthood is primarily','a national duty','a military duty','a political duty','an economic duty','','','a','','wassce','2015',73,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:41'),(421,'Association and affiliation between two or more people is called','multilateral relations','bilateral relations','inter-communal relations','interpersonal relations','','','d','','wassce','2015',86,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:43'),(422,'A bill passed by the National Assembly requires the assent of the president before it becomes law. The law can be declared null and void by the court of law. The process above emphasizes the','supremacy of judiciary over other arms of government','relationship among the arms of government','importance of law makers in a democracy','fundamentals of the rule of law.','','','d','','wassce','2015',75,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:44'),(423,'The idea that “Law should be impartial with the people who break it” implies','principle of fair hearing','right to legal representation','equality before the law','prerogative writ of habeas corpus','','','c','','wassce','2015',105,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:45'),(424,'The foreign policy objective of Nigeria as enshrined in the 1999 Constitution exclude the promotion of','national interest','African integration','support for donor agencies','just world economic order','','','c','','wassce','2015',97,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:46'),(425,'Democracy can promote national development if there is','good governance','promotion of culture','immunity for leaders','registration of parties','','','a','','wassce','2015',79,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:47'),(426,'A major civil society group which campaigned against military rule prior to the advent of the Fourth Republic in Nigeria is the','Campaign for Democracy','Save Nigeria Group','Civil Liberties Organization','National Democratic Coalition','','','a','','wassce','2015',74,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:48'),(427,'Which of the following function is not performed by the Public Service Commission?','Evaluating the performance of ministries and departments','Advising government on technical matters','Preparing the annual budget and assenting to it','Organizing enlightenment program and training','','','d','','wassce','2015',104,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:49'),(428,'Which of the following is a major challenge to civil society in Nigeria?','Value disorientation','Diverse political interests','Inadequate funding','Unstable political system','','','a','','wassce','2015',85,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:50'),(429,'Democracy is yet to take firm root in Africa because','it retards African development','African leaders are not experienced enough','most African leaders detest the will of the people','it is an expensive system of government','','','c','','wassce','2015',82,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:52'),(430,'Nationalism ensures the following except','national consciousness','secession in a country','national integration','unity in a country','','','b','','wassce','2015',89,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:53'),(431,'Justice demands that people should always do what is','persistently convenient','consistently right','individually acceptable','courageously necessary','','','b','','wassce','2015',73,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:54'),(432,'Orderliness in the society is good mainly because it','discourages poverty','promotes peace and stability','guarantees employment for youths','ensures maximum rewards from leaders','','','b','','wassce','2015',82,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:55'),(433,'Which of the following is necessary for the effective application of the rule of law?','Political will to ensure that laws are obeyed','Employment opportunities for all citizens','The fusion of the three arms of government','Extension of the retirement age of judges','','','a','','wassce','2015',83,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:56'),(434,'Ade’s action as shown in the dialogue is a demonstration of political','wisdom','apathy','lawlessness','participation','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','b','','wassce','2015',84,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:57'),(435,'It could be inferred from the dialogue that failure to vote in an election would','guarantee citizens’ rights','encourage the emergence of responsive government','promote accountability in governance','perpetuate irresponsible leadership','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','d','','wassce','2015',92,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:59'),(436,'From the above dialogue, political leaders can encourage citizens to perform their civic duties by','fulfilling their electoral promises','travelling overseas to seek for foreign investors','engaging in religious activities','visiting all the local governments in the country','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','a','','wassce','2015',90,'Admin','2016-12-12 20:15:44','2020-07-14 02:24:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `commerce` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=888 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `commerce` VALUES (1,'Ships that sail across the ocean and operate on scheduled time are ','ferries ','ocean liners ','tramp steamers  ','coastal liner','','','b','','utme','2004',327,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:51'),(2,'Non-insurable risks include ','gambling ','damage to property','death','marine ','','','a','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:52'),(3,'The program that makes up the operating system in a computer is         ','micro program','system flowchart','system software','syntax','','','c','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:53'),(4,'When an organization studies a market that is underserved by others and creates a product or service for the segment, it is engaged in','market integration  ','market positioning','market orchestration','product differentiation','','','c','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:54'),(5,'Coverage against unexpected events is called',' insurance ','assurance   ','warranty','reinsurance','','','a','','utme','2004',325,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:55'),(6,'An insured risk which occurs accidentally as a result of defects in a ship is','a voyage policy    ','a total loss','an emergency     ','a particular average','','','d','','utme','2004',313,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:56'),(7,'Communication enhances business activities by','facilitating interaction between producers and consumers ','facilitating interaction among media houses','ensuring the movement of goods from the producer to the consumer','keeping the goods safe until they are needed','','','a','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:57'),(8,'In business, the computer is very important  especially in  ','financial management','marketing management   ','educational  management    ','information management','','','d','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:58'),(9,'What is the most important use of promotion in marketing?     ','Persuasion   ','Conviction','Information ','Education','','','c','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:59'),(10,'The current highest decision-making body on  privatization and commercialization of public enterprises in Nigeria is the','National Council on Privatization','Securities and Exchange Commission','Nigeria Investment Promotion Commission','Bureau of Public Enterprises','','','d','','utme','2004',313,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:00'),(11,'The members of the Niger Basin Commission  include  ','Guinea, Ghana and Niger Republic','Burkina Faso, Guinea and Nigeria ','The Gambia, Benin Republic and Chad Republic',' Nigeria, The Gambia and Cameroon','','','d','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:01'),(12,'Business environment refers to all elements that are  ','outside an organization but relevant to its operations ','inside an organization but irrelevant to its operations   ','internal to an organization and relevant to its operations','external to an organization but indirectly related to its  operations','','','d','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:02'),(13,'Consumer rights include the right to   ','credit','free samples of a product  ','redress','a share of profits','','','c','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:03'),(14,'One important requirement for the membership of the ECOWAS is ','integrity ','independence ','landmass   ','population','','','b','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:04'),(15,'In Nigeria, the body that ensures that its members operate according to their professional ethics is the   ','SON  ','NPF   ','MAN ','NAFDAC','','','a','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:05'),(16,'A transporter who had to sell some perishable goods without the prior authority of the owner  becomes an agent by   ','conduct ','necessity','ratification  ','estoppel','','','b','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:06'),(17,'Poor sewage disposal, oil spill and indiscriminate refuse dumping all ','lead to  land pollution','water pollution   ','land and water pollution','air and water pollution','','','d','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:07'),(18,'One of the advantages of commercialization is that it','encourages entrepreneurship','increases the salaries of workers','motivates government to establish more  businesses   ','gives workers on-the-job training','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:08'),(19,'A common element in all contracts is    ','offer','  consideration   ','acceptance ','agreement','','','d','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:09'),(20,'Sources of finance to a business include personal  savings, shares, debentures and ','loans from IMF   ','bank overdrafts ','central bank loans','money from political parties','','','b','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:10'),(21,'Charges for loans paid by commercial banks to the Central Bank of Nigeria are called   ','bank rates   ','credit charges   ','interest rates',' bank charges','','','a','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:12'),(22,'In the primary market, new shares are issued  through  ','personal selling, publicity and advertising  ','a prospectus, an offer for sale and a bill of exchange   ','advertising, a prospectus and a bill of exchange','a prospectus, an offer for sale and placing','','','b','','utme','2004',343,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:13'),(23,'The instruments of credit include ','billboards and postal stamps','payment vouchers and statement of account','bills of exchange and promissory notes','bills of exchange and salary vouchers','','','c','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:14'),(24,'The shares of a company listed on the stock exchange for sale are referred to as','registered shares  ','deferred shares ','issued shares       ','quoted shares','','','d','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:16'),(25,'What is the role of the capital market in the privatization exercise in Nigeria?    ','Selling the shares and stocks of the companies to be  privatized ','Encouraging private companies to  participate in the exercise ','Negotiating with individuals who want to buy public companies','Advertising for government','','','a','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:17'),(26,'In international trade, documentary credit is also known as   ','credit note   ','letters of credit','bankers\\' draft       ','letter of hypothecation','','','b','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:18'),(27,'A specialized institution in Nigeria that deals in  capital investments in the form of stocks, shares, bonds and debentures is the ','Securities and Exchange Commission ','commodity market','Nigerian Stock Exchange ','Central Bank of Nigeria','','','a','','utme','2004',321,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:19'),(28,'A group of assets which a business acquires with the intention of reselling them are referred to as','  current assets    ','investment assets','fixed assets    ','intangible assets','','','b','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:20'),(29,'Authorized share capital is also known as','called-up share capital    ','paid-up share capital ','registered share capital  ','issued share capital','','','c','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:21'),(30,'An action taken by a company outside its object clause is regarded as ','ultra vires    ','a trespass   ','uberrima fides    ','caveat emptor','','','a','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:22'),(31,'The strategy adopted by a firm that ceases to operate at one or more locations because of inactivity is  ','rejuvenation ','focus','diversification     ','consolidation','','','c','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:23'),(32,'A written partnership contract is known as','an invoice ',' a deed      ','a prospectus','a proposal','','','b','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:24'),(33,'The merger of a textile mill, a cement company and a tannery is referred to as ','  conglomerate merger ',' horizontal merger ','lateral merger',' vertical merger','','','d','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:25'),(34,'As the branches indicate, iv is','commerce','exchange ','finance      ','construction','','','d','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:26'),(35,'What does v represent?','Aids to trade','Advertising  ','Manufacturing  ','Industry','','','a','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:27'),(36,'The most important function of commerce is','helping people to improve their profits','facilitating exchanges among individuals and firms ','assisting trade through banking and insurance   ','enhancing business relationships','','','b','','utme','2004',327,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:28'),(37,'The acronym PLC is used to identify a ','company limited by shares ','private company limited by shares','public company limited by shares','company limited by guarantee','','','c','','utme','2004',309,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:29'),(38,'Commerce includes all the occupations concerned with ','sales  ','production','marketing    ','distribution ','','','d','','utme','2004',314,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:30'),(39,'Factors of production can be described as the','resources required for the provision of goods and services   ','skills involved in deciding and directing the flow of goods  ','monetary tools employed by government to ensure stable production      ','elements involved in the process of formulating policies\\' on production ','','','a','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:31'),(40,'Fluctuations in the supply of goods may be eliminated if the distribution system maintains','modern technology ','a team of retailers','warehouse services  ','sufficient middlemen','','','a','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:32'),(41,'Loan schemes by thrift societies are ','mortgage schemes   ','conventional schemes   ','mutual schemes     ','unconventional schemes ','','','c','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:33'),(42,'An internal demand for goods to be purchased or drawn from stock is','a quotation','a requisition   ','a tender  ','an order','','','b','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:34'),(43,'The term 4 net 7 on an invoice means that','4% surcharge will be made unless payment is made within seven days   ','4% discount will be allowed on the price charged only if the goods are bought within seven days  ','4% discount will be allowed on the price charged if payment is made after seven days ','4% discount will be allowed on the price charged if payment is made within even days.','','','d','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(44,'An order sent by an importer to an overseas supplier stating the details of goods required is known as   ','A export invoice    ','ship\\'s manifest','an indent    ','bill of lading','','','c','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:36'),(45,'Organizing trade fairs in Nigeria is the responsibility of   ','National Directorate of Employment  ','Federal Ministry of Commerce','trade associations   ','chambers of commerce ','','','d','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:37'),(46,'International fade takes place as a result of','uniformity in costs of production','inequitable distribution of natural resources','parity in the level of industrialization','similarities in climatic conditions.','','','b','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:38'),(47,'The use of vending machines in retailing is hindered in a developing economy owing to','poor distribution network   ','low level of education    ','ineffective communication system','lack of steady power supply.','','','d','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:39'),(48,'Manufactures’ Association  of Nigeria contributes to development by advising the government on','industrial policy and harmony   ','budget and control ','budget and industrial policy','environmental protection policy ','','','a','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:40'),(49,'Discounts offered by firms to middlemen for bulk purchases are ','A   trade discounts','sales  bonanza    ','cash discounts ','seasonal','','','a','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:40'),(50,'Goods are  of merchantable  quality if they','conform to description  ','are of equal weight','are of the same quality ','conform to buyers\\' purpose','','','a','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:41'),(51,'A floating policy is an example of','marine insurance    ','actuaries insurance ','motor insurance    ','fire insurance.','','','b','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:42'),(52,'The most important benefit of insurance is that it Provides ','control over activities','the insured with a right to premium','the insured with a right to full compensation','protection against risks.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(53,'Which part of the computer system does the keyboard device belong to? ','Output unit ',' Logic unit ','Input unit ','Control unit.','','','c','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:45'),(54,'The Lake Chad Basin Commission was formed in ','1974','1984','1954','1964','','','d','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(55,'A major disadvantage of the privatisation policy is that ','the economy would be private-sector-led ','citizens would benefit less from government','more money would be brought into circulation','government would loss control of the economy.','','','d','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(56,'The most important right of the employee in discharging his duties to the employer is the right to ','regular emoluments  ','job security ','working facilities  ','annual leave. ','','','b','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:47'),(57,'The most dangerous pollution is','water ','noise pollution','soil pollution   ','air pollution.','','','d','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:48'),(58,'The primary objective of consumer protection laws is to ensure that consumers derive maximum satisfaction from goods and services','consumers buy goods and services at cheap rates   ','manufacturers of goods and service providers overcome ','Internal competition','manufacturers of goods and service providers get optimum profit','','','a','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:49'),(59,'The compensation the insured gets depends heavily on the ','economic situation','premium paid ','risk suffered','insurer\\'s buoyancy','','','b','','utme','2005',142,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:50'),(60,'The computer that functions by taking discrete numbers and  performing mathematical calculations is called ','mainframe ','digital ','hybride','analogue.','','','c','','utme','2005',149,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:51'),(61,'Commercialization of government corporations brings about an increase in the level of','money supply in the economy','distrust among business operators','competition among business operators','social responsibility','','','c','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:52'),(62,'The difference between personal selling and sales promotion is that while sales promotion includes free gifts and samples, personal selling involves','distributing instructional posters','face-to-face communication with customers','premium programming for customers','publishing promotional booklets.','','','b','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:53'),(63,'The type of communication from a superior to a subordinate in an organization is referred to as','horizontal communication','lateral communication','downward communication','upward communication.','','','c','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:54'),(64,'A step-by-step method of carrying out functions in  an office is known as','procedure','organizing',' policy ','programme.','','','a','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:55'),(65,'The best means of sending unwritten messages simultaneously   to   many   branches   of  an organization within a country is the','television',' telephone   ','telegraph   ','radio.','','','c','','utme','2005',167,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:56'),(66,'The   media    used   for   inter-departmental communication include.','circulars, advertisement and notice boards','memoranda, circulars and the telephone','memoranda, advertising and face-to-face','memoranda, advertising and the grapevine','','','b','','utme','2005',119,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:57'),(67,'An instrument that is traded in the second-tier foreign exchange market is','money order','stock ','travellers\\' cheque  ','debenture.','','','b','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:58'),(68,'The development of a container and a graphic design for a product is called ','packaging ','promotion','processing  ','production.','','','a','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:59'),(69,'A business firm that is involved in conveying goods or people is known as a ','consignor','commercial firm ','carrier','transporter','','','c','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:01'),(70,'The factors essential for tourism are','accessibility, capital, amenities and schools','goods weather, amenities, accessibility and scenery.','amenities, capital, accessibility and markets','good weather, capital, schools and scenery.','','','b','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:02'),(71,'In GIF contracts, risk passes at the time of shipment but the property does not pass until','there is physical transfer of goods','the shipping manifests are signed','the shipping documents are transferred','the goods on board are delivered.','','','b','','utme','2005',146,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:03'),(72,'A partnership is dissolved when','the business suffers a loss','there is bankruptcy','there is consistent theft','there is a misunderstanding between partners','','','b','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:04'),(73,'One of the disadvantages of sole proprietorship is','secrecy of annual reports','pride of ownership ','limited liability','unlimited liability.','','','d','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:05'),(74,'The most important concept in production is','utility ','wealth creation','transformation  ','distribution.','','','a','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:06'),(75,'An acquired firm in a merger will always receive a',' premium  ',' grant ','share ','discount','','','b','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:06'),(76,'Occupations are classified into','production, labour and economics','extraction, construction and manufacturing','industry, commerce and serves','trade, aids to trade and services.','','','c','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:07'),(77,'The Nigerian Telecommunications Limited is a','Jointly owned company ','public corporation ','privately owned company ','public company. ','','','b','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:08'),(78,'An engineer in government employ is to be rendering   ','primary service   ','tertiary service ','indirect service   ','direct service. ','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:09'),(79,'The availability of goods and services is brought to the notice of consumers through','personal selling  ','public relations','the telephone  ','advertising.','','','d','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:10'),(80,'The necessary documents used in foreign trade are ','bill of lading, invoice and letter of inquiry','indent, bill of exchange, bill of lading and invoice','invoice, shipping note, bill of lading and freight note   ','shipping note, certificate of origin and visible exports.','','','c','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:11'),(81,'A cheque drawn by a bank official on the bank\\'s deposits in another bank on a customer\\'s instructions is known as ','promissary note',' bankdraft   ','bankers\\' order  ',' travellers cheque.','','','c','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:12'),(82,'A type of credit offered by both commercial and merchant banks in Nigeria is ','trade credit','line of credit ','discounting facility ','overdraft.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:13'),(83,'A major function of a chamber of commerce is',' increasing productivity','promoting both home and foreign trade','promoting trade in a particular line',' maximizing profit.','','','b','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:14'),(84,'Which of the middlemen in the channel of distribution has title to the goods he distributes?','The merchant wholesaler ','The agent','the limited wholesaler ','The retailer','','','a','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:15'),(85,'Which of the following confirms the accuracy of the duty charged on imported goods?',' An indent ','Consular invoice',' Consignment note  ','Shipping note.','','','b','','utme','2005',137,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:16'),(86,'The association that comprises all types of businesses is referred to as',' chamber of commerce   ',' trust','trade association   ',' cartel.','','','a','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:30'),(87,'Wholesalers can be divided into',' sales agents and brokers   ',' full service wholesalers and merchant wholesalers',' cooperative wholesale society and limited service wholesalers ',' merchant wholesalers and agent middlemen.','','','b','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:31'),(88,'In Nigeria the ministry in charge of registering trade associations is that of ',' industries',' commerce ','culture and tourism ',' finance.','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:32'),(89,'Invisible imports consists of',' cement, shipping and consultancy services',' banking   drinks, insurance and technical services.   ','','tourism, banking, canned foods and cement.','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:33'),(90,'The bank that discounts bills of exchange is the ','central bank  ',' mortgage bank','development bank  ','commercial bank.','','','d','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:34'),(91,'The market where only indigenous firms are considered is the ','money market ',' second-tier securities market ',' local market ',' stock exchange.','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:35'),(92,'From which of the following sources can partnerships increase their capital?',' Admission of a new partner',' Sale of shares   ','Discharge of a mortgage','Grants from relations.','','','a','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:36'),(93,'The excess of the assets over the liabilities of a business is called ','working capital','net worth ','capital employed ',' initial capital','','','a','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:51'),(94,'Initial public offering is undertaken through the','secondary securities market','first-tier securities market','primary securities market','second-tier securities market','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:52'),(95,'The major participants in the stock market when stock prices are rising generally are the','bulls ','registrars ','bears ','companies','','','a','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:53'),(96,'The fixed and current assets of a business are called ',' called-up capital    ','capital employed',' paid-up capital  ','authorized capital.','','','b','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:54'),(97,'To increase the supply of money in a country, the central bank has to ','reduce cash ratio',' sell securities in the open market',' call on special deposits ',' raise cash ratio.','','','a','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:55'),(98,'A good financial instrument which serves as a  hedge against inflation is ','a bond  ','a share',' an option ',' a warrant.','','','a','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:56'),(99,'One advantage of a crossed cheque is that it can','only be paid into a savings account','be cashed over the bank\\'s counter','only be paid into the owner\\'s account',' be cashed by anyone','','','c','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(100,'Given\\n    N\\n Sales    15 000\\n Opening stock  5 600\\n Purchases   9 700\\n Closing stock  4 400\\n Gross profit  4 500\\n Net profit   2 000\\nFrom the data above, calculate the rate of turnover \\n',' 3.50 times ','3.00 times ',' 2.00 times ',' 2.18 times.','','','d','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:58'),(101,'question','optiona','optionb','optionc','optiond','','image','answer','solution','utme','examye',60,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:59'),(102,'Tourism can be classified as ',' tangible import',' intangible import',' visible export ','invisible export','','','d','','utme','2006',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:00'),(103,'The input, output and central processing units are the basic components of a computer\\'s','memory ',' printer ',' hardware ',' software','','','c','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:01'),(104,'An employer insures against his employees\\' dishonesty by taking up  ','fidelity guarantee insurance   ',' accident insurance   ','group life assurance  ','endowment policy.','','','a','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:02'),(105,'Payment made to the insured by the insurer outside its legal obligation is ','premium paid',' exgratia payment ','surrender value',' sum assured.','','','b','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:14'),(106,'An important social reason for development tourism in Nigeria is the  ','promotion of culture interaction   ',' provision of job opportunities','improvement of her balance of payments','encouragement of international relations.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:15'),(107,'The mode of transportation that conveys a limited variety of products through fixed laid routes is','waterways  ','Broad ','rail  ','pipeline.','','','d','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 15:55:42'),(108,'A computer that can be used in weather forecast is ','  a hybrid computer ',' an analog computer','a mainframe computer ',' a digital computer.','','','d','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:17'),(109,'The setting of objectives for an organization and determining how to accomplish them is ','social responsibility  ','planning  ','organizing',' decision-making.','','','b','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:18'),(110,'An aspect of marketing that stimulates buying by providing free gifts is ',' advertising  ',' personal selling ','publicity ',' sales promotion,','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:19'),(111,'The limit of functions, activities and personnel that a supervisor can effectively manage  in a business organization  is  ','spun of control ',' delegation of authority ','chain of command ',' authority and responsibility','','','a','','utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:20'),(112,'A seller attracts and retains patronage by',' enhancing public relations ',' enhancing sales promotion  ','  rendering pre-sales service',' rendering customer service.','','','d','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:21'),(113,'A bond which attracts only interest but leaves the capital unpaid is referred to as','a long-term loan','a development bond ',' a redeemable bond','  an irredeemable bond.','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:22'),(114,'A public company has 2 000 000 ordinary shares of 50k each and offers 50% for subscription at N2 per share. If the shares were fully subscribed, calculate the issued capital.','  N4 000 000     ',' N2 000 000','N1 000 000     ','  N500 000.','','','b','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:23'),(115,'The main requirement for admission to the second-tier securities market is the ','provision of a three-year trading record   ','disclosure of all trading activities   ',' creation of a good atmosphere for growth and development   ','guaranteeing of dividends to shareholders.','','','b','','utme','2006',113,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:24'),(116,'What is the capital employed?','N200 000','N340 000','N170 000','N300 000','','','d','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:25'),(117,'Which of the following is a development bank in Nigeria?','Union Bank Plc   ','First Bank Plc','First City Monument Bank ','Federal Mortgage Bank.','','','d','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:25'),(118,'Trading on the stock exchange in anticipation of  price change in the market value of shares is','speculation  ','forecasting ','expectation','projection.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:26'),(119,'A financial institution which uses its capital strength to acquire controlling interests in other firms can be regarded as a','subsidiary company','holding company ','trust   ','cartel.','','','b','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:27'),(120,'A current account is beneficial to its holder as','cheques can be issued to anybody','customers cannot withdraw frequently','it is only the holder that can make withdrawals','it allows customers the use of passbooks.','','','a','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:28'),(121,'The conversion of raw materials into finished products creates ','form utility ','marginal utility','place utility ','time utility.','','','a','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:29'),(122,'The factor which critically determines the choice of occupation is ','training  ','skill ','interest','aptitude.','','','c','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:30'),(123,'Capital to a business is technically  ','an expense','a liability ','  an asset ','a profit.','','','c','','utme','2006',112,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:31'),(124,'I. Wholesaling  II. Fishing  III. Canning IV. Retailing  The sequence in which the occupational activities above are performed is','Ill, II, I and IV     ','Ill, I, IV and II','I, II, III and IV      ','II, III, I and IV.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:32'),(125,'The development of commerce resulted from','trading ','competition ','importation','specialization.','','','a','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:33'),(126,'The difference between a private and public limited liability company is that the former','is unable to offer shares to the public','is unable to declare and pay dividend','has a higher number of shareholders','pays higher salaries to its managers.','','','a','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:34'),(127,'Materials used for further production of goods and  services are known as ','export goods','intermediate goods ','capital goods','  consumer goods.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:35'),(128,'A liquidator\\'s fee is to be charged to the','realization account  ','trading account','revaluation account ','reconstruction account.','','','a','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:36'),(129,'The safety and quality of products are the social responsibility of ','the Standards Organization of Nigeria  ','the Manufacturers Association of Nigeria','the Corporate Affairs Commission','business organizations.','','','a','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:37'),(130,'A   feature   common   to   privatization   and commercialization is  ','profit-making    ','credit sales ','market expansion ','price increases.','','','a','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:38'),(131,'A protection right which can be reviewed or renewed after seven years is known as ','patent','design ','registration name ','trade mark','','','a','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:39'),(132,'The headquarters of the Lake Chad Basin Commission is in ','Niamey ','N\\'Djamena','Abuja ','Lagos.','','','b','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:39'),(133,'In Nigeria, the main source of pollution is','domestic waste   ','organic waste','gas flaring   ','industrial waste.','','','d','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:40'),(134,'‘Safeguarding the health of the nation\\' is the slogan used by ','NDLEA ','NHIS ','NAFDAC ','EPI.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:53'),(135,'When one person approves an act previously done by another in the former\\'s name without authority, this is known as   ','ratification ','estoppels','illegality ','misrepresentation.','','','b','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:54'),(136,'The members of ECOWAS include',' Nigeria, Chad, Gabon and Cape Verde','  Burkina Faso, Nigeria, Niger and Mauritania','Guinea, Mali, Cameroon and Nigeria','Togo, Niger, Nigeria and Ghana.','','','d','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:55'),(137,'The most important advantage of privatization is the enhancement of ','liquidity ','accountability','profitability  ','efficiency.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:55'),(138,'A trade association consists of members engaged in the same trade while a chamber of commerce is','highly regulated by a government agency','not restricted on a particular industry','made up of members that are registered',' made up of firms in the banking industry.','','','b','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:57'),(139,'Hire purchase is beneficial to the seller because',' it enhances his living standard ','it increases his turnover ','people pay instalmentally',' of the patronage he enjoys.','','','b','','utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:58'),(140,'Consumerism aims at protecting the consumer from','harmful products  ','drug addiction','smoking cigarettes ','alcohol consumption. ','','','a','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:59'),(141,'The major types of warehouses are ','manufacturer, bonded, departmental and private  ','bonded, public, cold room and private','manufacturer, bonded, public and departmental','wholesaler, manufacturer, public and bonded.','','','d','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:00'),(142,'The Customs and Excise Department is responsible for the collection of','royalties ','tariffs','taxes ','charges.','','','b','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:01'),(143,'A shop which consists of many stores trading under a single roof and which stocks varieties of gods with each unit having its own head is a ','multiple shop  ','supermarket ','superstore','departmental store.','','','d','','utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:03'),(144,'An objective of the farmers\\' association is to','ensure that the prices of goods are fair and reasonable  ','correct the imbalance between consumers and producers ','improve the methods of selling and advertising   ','provide a stable market outlet for farm inputs,','','','a','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:04'),(145,'The documents used in the purchase and sale of goods which contain other terms of trade are','debit note and credit note ','delivery note and advice not   ','invoice and order      ','quotation and invoice.','','','c','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:05'),(146,'In international trade, exchanging goods for other goods and services purchased instead of paying in foreign currency is known as ','countertrade','balance of trade ','balance of payments','terms of trade.','','','a','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:07'),(147,'The role of a wholesaler in the channel of distribution is to    ','produce goods in large quantities and sell in small quantities ','buy goods directly from the manufacturers','buy good in large quantities and sell in small quantities','sell goods directly to the consumers ','','','c','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:08'),(148,'Foreign trade also involves ','providing services for other countries    ','specialisation and the exchange of goods in a country   ','buying and selling within a country ','the exchange of goods and services between firms. ','','','a','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:08'),(149,'Consumers require protection against exploitation to ensure ','adequate consumer awareness','availability of product variety','the sale of quality products','increased aggregate demand.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:10'),(150,'The business environment that takes into cognizance the age distribution, ethnic mix and educational level of the consumer is','demographic environment','economic environment','cultural environment','natural environment.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:11'),(151,'An agent who takes title to goods and has authority  to buy and sell on behalf of another is','a jobber   ','a broker  ','a factor','an auctioneer.','','','c','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:11'),(152,'Citizens are against privatisation mainly because of ','the rationalization of organizations','increased prices of goods and services','the likelihood of monopoly','ineffective management.','','','b','','utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:12'),(153,'The major achievement of ECOWAS is','the expansion of regional trade','the emergence of a monetary union','infrastructure! development in member countries','mobility of labour among member countries.','','','a','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:14'),(154,'An announcement of a person\\'s willingness to enter into a contract is referred to as ','a proxy','an offer ','a consideration ','an acceptance.','','','b','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:15'),(155,'The macro-environmental forces and trends which are a constraint on business operations are  referred to as  ','technological factors','economic factors   ','external factors ','internal factors.','','','c','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:15'),(156,'Which of the following best describes inputs for any production activity?   ','Natural resources.',' Business resources.','Human resources.','Material resources.','','','a','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:16'),(157,'Personal selling is most effective in marketing industrial goods because it involves','recognition and attachment to customers','personal interaction and information gathering','demonstrations and product acceptability','after-sales services and product demonstrations.','','','b','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:17'),(158,'The controllable variables that a firm uses to achieve its marketing objectives are called','marketing principles ','marketing mix','marketing concepts','marketing functions.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:18'),(159,'Public relations and advertising are similar in terms of','communicating product information','customer education ','the mode of operation','creating a favourable attitude.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:19'),(160,'A major function of an entrepreneur is','decision-making ','encouraging competition','human-resource training','motivating employees.','','','a','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:20'),(161,'A Memorandum of Association is applicable to a',' sole trader ','joint-stock company',' partnership   ',' public corporation.','','','b','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:21'),(162,'The sustainable growth of commerce is largely due to ','marketing   ','advertising','exchange ','branding.','','','c','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:22'),(163,'A major advantage of a cooperative society is that it ','gives members the opportunity to unite','draws members closer to government','promotes awareness among members','encourages thrift among members.','','','d','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:23'),(164,'The making of doors from timber planks is a type of ','manufacturing ','tertiary production','secondary production   ','primary production.','','','c','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:24'),(165,'Law-making is an example of ','indirect service','commercial occupation ','direct service','industrial occupation.','','','c','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:25'),(166,'A document which advertises the shares of a company is known as a  ','memorandum of satisfaction   ','dividend warrant     ','deed','prospectus.','','','d','','utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:26'),(167,'The scope of economic activities can be enlarged by    ','transportation and trading   ','business and its promotion  ','trading and aids to trade','insurance and banking.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:27'),(168,'The creation of utilities to satisfy human wants is referred to as   ','production  ','consumption','industrialization    ','occupation.','','','a','','utme','2007',63,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:28'),(169,'A major criticism of a cooperative society is','limited capital ','granting excessive loans to members   ','selling goods on credit to non- members    ','management incompetence.','','','d','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:28'),(170,'An economic activity which deals with natural resources is a form of  ','extraction','refining   ','construction ','manufacturing.','','','a','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:29'),(171,'The first stage in tourism planning is','assessing feedback from tourists','preparing a list of tourist attractions','creating recreational opportunities','building community support.','','','b','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:30'),(172,'An agreement by the insurer to compensate the insured for losses suffered is   ','policy','surrender value   ','caveat emptor ','indemnity.','','','d','','utme','2007',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:31'),(173,'One of the functions of the Nigeria Ports Authority is the provision of  ','facilities to enhance the speedy loading and offloading of ','facilities to ensure that goods get to their destinations  ','shelter for operators of cargoes',' courier services to ensure speedy delivery.','','','a','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:32'),(174,'The   World   Tourism   Organization   has   its headquarters in ','New York    ','Paris','Madrid     ','London.','','','a','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:33'),(175,'Digital computer is divided into ','analogue, hybrid and mini ','super, mainframe, mini and micro    ','mainframe, hybrid and micro','super, mainframe, micro and analogue.','','','a','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:34'),(176,'A distinctive advantage of GSM is its ','mobility',' cost   ','stability   ','coverage.','','','a','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:35'),(177,'In the permanent storage device, DASD means','Data Access Storage Device','Data Access Systems Device','Direct Access Systems Device','Direct Access Storage Device.','','','d','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:36'),(178,'The major determinant of fire insurance premium is the ','type and structure of the property to be insured ','usefulness of the property to the owner','owner of the property to be insured','extent of fire damage anticipated.','','','a','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:37'),(179,'The Internet is a system of telecommunications used for   ','communicating long-distance messages ','sending and receiving text messages','sending electronic messages .','communicating messages through telegrams.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:38'),(180,'A written  agreement for  hiring  a  ship for transporting goods is a ','consular invoice','bill of lading ','charter party ','certificate of origin.','','','c','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:39'),(181,'The major function of a trade association is that it','liaises with foreign trade associations','helps to promote foreign trade','facilitates members\\' access to credit facilities','helps to promote research on behalf of members.','','','d','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:40'),(182,'A major setback of international trade is','inadequate exports','economic sanctions','devaluation of currency','exchange rate appreciation.','','','b','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:41'),(183,'Which of the following requires payment into the payee\\'s account?   ','Crossed cheque.','Traveller’s cheque.    ',' Open cheque.','Certified cheque.','','','a','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:42'),(184,'The traditional way of paying cooperative dividend is to distribute profit in proportion to members\\'','subscriptions  ','total savings','volume of purchases   ','contributions.','','','c','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:43'),(185,'The abbreviation C & F indicates that the','production cost excludes the cost of carriage','selling price includes the cost of carriage','cost of production includes delivery charges','cost price includes the cost of carriage.','','','b','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:44'),(186,'The sale of foreign investment and gold reserves can be used to ','correct adverse balance of trade','increase invisible imports','correct adverse balance of payments','correct a budget deficit.','','','a','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:45'),(187,'A share premium is an example of','issued capital ','capital stock ','equity capital','capital reserve.','','','d','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:46'),(188,'A major benefit a debtor can derive from using a credit facility is ','better service  ','goodwill','convenience    ','control.','','','c','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:47'),(189,'The function  of money that facilitates the comparison of the quality of goods as a basis of exchange is the   ','unit of account','measure of value ','store of value','medium of exchange','','','b','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:48'),(190,'The difference between the buying and selling price of shares is known as   ','brokerage','margin   ','jobber\\'s turn   ','gross profit.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:49'),(191,'Which of the following is a risk-free security?','Preference share.   ','Ordinary share.','Treasury bill.    ','Debenture.','','','c','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:50'),(192,'The central bank controls the quantity of money in circulation through  ','open-market operations','decreasing the tax rate ','issuing new currencies    ','increasing the tax rate.','','','d','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:51'),(193,'The selling of new shares to existing shareholders is referred to as ','public issue ','offer for sale','rights issue  ','bonus issue.','','','c','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:52'),(194,'A new company requiring a large amount of equity finance may source funds from the','capital market   ','central bank','money market    ','commercial banks.','','','d','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 01:36:39'),(195,'A credit instrument which also serves as a legal tender is   ','cheque    ','paper money','voucher   ','money order.','','','b','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:53'),(196,'The body regulating the sale and purchase of shares in Nigeria is the ',' Corporate   Affairs Commission   ','Securities   and   Exchange Commission    ','Securities   and   Exchange Tribunal     ','Nigerian Stock Exchange.','','','b','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:54'),(197,'An aspect of commerce that facilitates the distribution of products is ','transportation ','advertising  ','branding ','trading ','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:55'),(198,'An activity that involves derivation of raw materials from land and sea is ','construction ','farming ','agriculture ','extraction ','','','d','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:56'),(199,'The art of soap-making is an example of ','Primary occupation ','Secondary occupation ','Tertiary occupation ','Construction occupation ','','','b','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:57'),(200,'Given: I. shoe marker    II. Policeman     III. Fisherman    IV. Gardener    V. Broker .    The persons engaged in primary occupation are \\n','I, III and IV ','III and IV','III and V','I , II and V','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:58'),(201,'The process of changing the form of a raw material is known as  ','fabrication ','extraction ','conversion ','production ','','','d','','utme','2008',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:59'),(202,'In the long run, all factors of production are ','fixed ','variable ','marginal ','constant ','','','b','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:00'),(203,'The quality and quantity of production mostly depend  on the ','effectiveness of factors ','availability of factors','level of education of entrepreneurs ','level of cooperation among workers','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:01'),(204,'The promotion of savings culture is a feature of a ','trade association ','consumers  cooperative society ','thrift cooperative society ','business association ','','','c','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:02'),(205,'A document which gives a legal status to a company is the certificate of ','incorporation ','trading ','commencement of business','business registration','','','a','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:03'),(206,'A proposed company may not be registered if ','the name conflicts with that of another ','it does not put ‘limited’ after its proposed name ','it has no paid-up capital ','it has no asset of its own.','','','a','','utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:05'),(207,'An example of a cartel is ','OPEC','ECOWAS ','AU ','EU','','','a','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:55:05'),(208,'The cheapest source of funds available to a company is through ','the sale of shares','retained profits ','the sale of bonds','lease financing','','','b','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:06'),(209,'The components of capital employed in a business are ','owners’ equity and long-term debts ','total assets and current liabilities ','share capital and long-term debts','share capital and current liabilities.','','','b','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:07'),(210,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. What is the company’s authorized share capital?','N2500 000','N4000 0000','N5000 000','N7500 000','','','a','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:08'),(211,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. Determine the company’s reserve share capital ','N2500 000','N1000 000','N1500 000','N2000 000','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:09'),(212,'In order to prevent liquidity problems in commercial banks, the central bank uses.','moral suasion  ','fiscal policy','reserve ratio','taxation ','','','c','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:10'),(213,'An account maintained with a commercial bank for the purpose of foreign exchange transaction is the ','foreign account ','International account ','domiciliary account ','foreign reserves account ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:11'),(214,'A trader who gives credit stands to enjoy ','higher profit ','cash discount ','increased sales ','trade discount','','','c','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:12'),(215,'A person who buys new issues with a view of reselling at a higher price in the near future is referred to as a ','bull ','bear ','dealer ','stage','','','a','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:13'),(216,'A source of capital that has both elements of debt and equity is a ','debenture ','warrant ','loan ','share','','','d','','utme','2008',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:14'),(217,'A type of retail trade where a group of similar states which is owned by a firm operates in different locations is a ','conglomerate ','chain store','departmental store ','supermarket ','','','b','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:15'),(218,'A warehouse which is used to store goods whose customs duty is not yet paid is a ','wholesale warehouse','bonded warehouse','public warehouse','branded warehouse','','','b','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:16'),(219,'Balance of payments is made up of ','visible  and current  items ','invisible and capital items ','current and capital items','visible and invisible items','','','d','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:17'),(220,'Most of the barriers to international trade have been eliminated through ','diversification ','globalization ','commercialization ','privatization ','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:18'),(221,'A document sent by a seller to inform a buyer about the prices of goods is the ','catalogue ','price list','credit note','proforma invoice ','','','b','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:19'),(222,'Which ‘FOB’ is written on a document, it implies that the buyer bears the ','cost of goods and advert ','loading cost and insurance ','insurance and transport costs','transport and communication costs','','','c','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:20'),(223,'A crossed cheque with the inscription ‘not negotiable’ must be paid into the ','current account of the drawer ','current account of the payee of the drawer ','savings account of the payee','fixed account of the payee','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:21'),(224,'The pooling of business information for the benefit of members is a major function of a ','pressure group ','trade association ','cultural group ','trade union ','','','b','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:22'),(225,'An association to which all chambers of commerce in Nigeria are affiliated is the ','Nigeria Labour Congress ','National Association of Chambers of Commerce, Industry, Mines and Agriculture','Nigeria Association of Chambers of Commerce, Industry, Mines and Agriculture ','Nigeria Stock Exchange ','','','c','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:23'),(226,'The resources which are necessary for business development include ','manufacturing, materials, mentors and money ','merchant, materials, mentors and money','man, money, materials and machines','machines, manufacturing, money and materials','','','c','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:24'),(227,'The four Ps of marketing are','product, place, process and promotion ','price, product, property and place','price, product, place and promotion ','price, production, place and property ','','','c','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:25'),(228,'Personal selling is used for the purpose of ','establishing the company ','providing information ','creating product awareness','launchers ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:26'),(229,'Ships used for international transport are ','trawlers ','yachts','ocean liners ','launchers ','','','c','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:27'),(230,'A function generally performed by authorities of both the air and seaports is the ','maintenance of warehouses where goods can be stored','provision of facilities for loading and unloading  of cargoes ','maintenance of security and order at the ports.','provision of facilities for landing and refueling at the ports.','','','d','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:28'),(231,'A major factor hindering effective communication process is ','climatic condition ','social unrest ','distance ','noise ','','','d','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:29'),(232,'The fear of many communities concerning tourism development is the ','influence of foreign culture ','fear of disease transmission ','fear of pollution ','religious intolerance ','','','a','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:30'),(233,'The development of tourism in Nigeria  will enhance ','agriculture ','revenue generation ','export ','labour mobility ','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:31'),(234,'A historical building is a feature of ','cultural tourism ','industrial tourism ','agricultural  tourism','D. ecological   tourism','','','a','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:31'),(235,'The sum of money paid by a policy-holder to an insurer is referred to as ','interest ','premium ','gross profit ','sales revenue','','','b','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:32'),(236,'An example of a non-insurable risk is ','burglary ','speculation ','fire ','accident ','','','b','','utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:33'),(237,'The coordinating section of the central processing unit that manages the flow of data is the ','arithmetic logic unit','control unit','magnetic unit','register','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:34'),(238,'An agreement between two parties which is enforceable by law is a ','promise ','warranty ','contract ','condition ','','','c','','utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:35'),(239,'The implied provisions in every sale of goods as contained in the ales of Goods Act of 1893 are conditions and ','consideration ','sureties ','warranties ','guaranties ','','','c','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:36'),(240,'When an employee incurs expenses while executing his normal duty, the employer is responsible for his ','safety ','family’s security ','family’s welfare ','indemnification ','','','d','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:37'),(241,'The body charged with divesting government interests in public enterprises is ','SON','NPC','BPE ','NDE','','','c','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:38'),(242,'The practice whereby government relinquishes its ownership interest in a public enterprises is ','commercialization ','indigenization ','privatization ','nationalization ','','','c','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:39'),(243,'A factor is a business environment which increases the rate of product obsolescence is ','technology ','political','legal ','economic','','','a','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:40'),(244,'Which of the following is a form of social responsibility of a business? ','selling goods  at cheaper prices ','using the best technology available ','maintaining  tidy and safe environment ','Meeting contractor’s obligation ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:41'),(245,'A computer component that decodes and interprets instructions and also directs program implementation  is ','memory unit','Central processing unit ','control unit ','system unit','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:42'),(246,'Which software program can be used to generate ','MS Word ','Database ','MS Excel','Adobe','','','c','','utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:43'),(247,'The central focus of commercial activities is ','pricing   ','advertising ','trading ','marketing ','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:44'),(248,'An aid to trade associated with communications is ','banking ','transportation','warehousing ','insurance ','','','b','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:45'),(249,'The services of a textile worker are an example of ','extractive activity ','commercial activity ','manufacturing ','construction ','','','c','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:46'),(250,'Resources harnessed in certain proportion to create goods and services are ','factors of production ','technology and labour ','land and entrepreneur ','raw materials ','','','a','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:47'),(251,'Primary production is associated with ','banking ','manufacturing ','agriculture ','construction ','','','c','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:48'),(252,'The major components of modern retailing include ','branding, doorstep  selling and customer stimulation ','branding, sales promotion and mail order ','chain stores, customer stimulation and doorstep selling ','branding, supermarkets and after-sales service','','','d','','utme','2009',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:56'),(253,'A chain store usually combines the features of ','multiple shops and departmental stores ','hypermarkets and stalls ','multiple shops and hypermarkets','mail order business and multiple shops','','','a','','utme','2009',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:57'),(254,'One of the functions of the wholesalers is to ','forecast prices','reduce prices of goods','political unrest ','analyse sales periodically ','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:58'),(255,'An artificial barrier to international trade is ','political unrest  ','culture of the people','unit of measurement ','custom duties','','','d','','utme','2009',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:59'),(256,'The most commonly used commercial documents are ','order notes, debit notes, invoices and quotations ','letters of enquiry, consignment notes, receipts and invoices ','credit notes, statement of accounts, dispatch order and bills ','balance sheet, receipts, invoices and manifests.','','','b','','utme','2009',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:00'),(257,'The term free on board means that the price includes ','costs and insurance only ','costs and freight only','freight and insurance only','costs, insurance and freight ','','','d','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:01'),(258,'If a buyer is given 12.5% discount on N50000 worth of goods, how much will he pay?','N56 250','N43 750','N43 250','N6250','','','b','','utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:02'),(259,'A cheque which a bank draws on its own funds is a','bankdraft ','cashier’s cheque ','bank cheque ','crossed cheque','','','a','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:03'),(260,'Billboards and posters are forms of ','electronic media ','print media','outdoor media ','window display media','','','c','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:04'),(261,'A collective term for advertising, personal selling and publicity is ','exhibition ','promotion ','trade fair ','mechanizing','','','a','','utme','2009',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:05'),(262,'The central bank differs from commercial banks  because it ','renders service to customers','carriers but foreign exchange transactions ','issues currencies ','discounts bills','','','c','','utme','2009',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:06'),(263,'One of he facilities enjoyed by a current account holder is ','a dividend  ','a bonus','an overdraft ','interest on deposits','','','c','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:07'),(264,'In which of the following will be number of words used determine the cost of the message sent?','telephone','telegram ','e-mail','telex','','','b','','utme','2009',57,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:08'),(265,'The transmission of telephone services from one country to another is facilitated by ','communication satellite ','international facility ','interconnectivity ','internet services','','','a','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:09'),(266,'The principle of insurance which entitles an insurance company to take any advantage due to the insured after full indemnity is ','contribution  ','subrogation ','proximate cause ','utmost good faith ','','','b','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:10'),(267,'A risk that can be estimated and calculated to be compensated is ','a delivery risk ','an insurable risk','a credit risk ','a systematic risk ','','','b','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(268,'The most important reason for the existence of insurance business is to ','prevent the occurrence of any loss','spread losses to all covered participants','provide for the replacement of facilities','encourage individuals to save','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(269,'One major advantage of transportation to a business is to','extend the firm’s market coverage','ensure that goods are produced faster','procure raw materials cheaply ','ensure the quality of products','','','a','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:12'),(270,'Warehousing is important to manufacturers because it helps to ','improve the quality of goods ','produce goods in advance','meet the demand of customers ','determine input requirements','','','b','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:13'),(271,'One of the major problems of a sole proprietor is sourcing for ','raw materials ','labour ','machineries ','funds','','','d','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:14'),(272,'In a public limited liability company, planning is carried out by ','the chairman of the board ','the board of directors ','shareholders','employees','','','b','','utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:15'),(273,'Partnerships are most effective where ','the partners are family friends ','professionals are involved','members can easily raise enough capital ','government regulations are favourable ','','','b','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:16'),(274,'The type of partnership in which all partners are jointly liable in bearing risk is ','limited partnership ','partnership-at will','ordinary partnership ','industrial partnership ','','','c','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:17'),(275,'The financial instrument that entitles the holder to receive dividend and capital gains is a ','share  ','bond ','bill of exchange ','treasury bill ','','','a','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:18'),(276,'The circulating capital of a business enterprise is classified into ','cash, work-in progress and debtors ','cash, vehicles, land and buildings ','debtors, stock of raw materials and fittings ','pre-payments, debtors and equipment.','','','a','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:19'),(277,'If a firm has a turnover of N50 000 and the cost of goods sold is N40 000, what is the percentage of gross profit on sale? ','30.50%','20.50%','20.00%','D.10.0%','','','c','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:20'),(278,'A body established to protect the interest of members against the exploitation of retail traders and manufacturers is the ','wholesalers association ','consumer’s  association ','government agency ','workers’ union ','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:21'),(279,'The manufactures’ Association of Nigeria is an example of a ','labour union ','pressure group ','conglomerate ','cartel','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:22'),(280,'The characteristic which ensures that money is free from forgery is its ','legality ','durability ','recognition ','credibility ','','','b','','utme','2009',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:23'),(281,'The major dealers on the stock market are the ','agents ','jobbers ','investors ','brokers','','','d','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:24'),(282,'The daily official publications of the Nigerian Stock Exchange give detailed information on the ','changes in the official rules set by the market ','method of transactions agreed upon by members ','participation of members in a day ','changes in the price of securities','','','c','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:25'),(283,'The function which ensures that set objectives are attained by an organization is ','planning ','directing ','staffing ','controlling ','','','d','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:26'),(284,'An organizational structure that is military in nature is the ','line structure ','staff structure ','line and staff structure ','functional structure ','','','d','','utme','2009',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:27'),(285,'The efficiency of an organization is enhanced by ','government assistance ','the host community ','customer support ','skilled manpower ','','','d','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:37'),(286,'The concept which focuses on consumers in decision-making is ','selling concept ','marketing concept ','product concept ','production concept ','','','b','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:38'),(287,'Market skimming is an example of ','market penetration ','Sales promotion ','pricing policy','advertising ','','','a','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:38'),(288,'The most important attributes in a sale of goods contract are ','offer and consideration','price and goods ','offer and acceptance ','demand and supply','','','c','','utme','2009',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:40'),(289,'Unresolved disputes between the employer and employees are usually referred to the ','code of conduct bureau','personnel unit ','disciplinary committee','industrial arbitration tribunal ','','','d','','utme','2009',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:41'),(290,'The process of eliminating a virus from a computer program is ','programming ','debugging ','formatting ','looping','','','c','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:42'),(291,'The primary memory component of a computer is the ','cache ','console ','assemblers','compilers ','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:43'),(292,'A customer with XYZ Plc sent money through his account to his sister’s  account in another branch. This is an example of ','e-business','e –commerce ','e-finance ','D e-banking ','','','d','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:44'),(293,'The economic environment of a business is concerned with ','climatic conditions','changing values ','the growth rate','the interest rate','','','c','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:45'),(294,'A firm that disposes its wastes properly is discharging its ','community responsibility ','environmental responsibility ','civic responsibility ','social responsibility ','','','b','','utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:46'),(295,'The wealth of a nation depend on the volume of its','bilateral trade activities','commercial activities','multilateral trade activities','stock market','','','b','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(296,'Which of the following can be used to differentiate skilled and unskilled lab our? ','education and training','available resources ','level of commitment','salaries and wages','','','a','','utme','2010',93,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(297,'A doctor who attends to patients at home after his official duty is','A community development worker','a direct service worker','an indirect service worker ','a direct and an indirect worker','','','b','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:49'),(298,'Manufacturing and construction activities are class8ified under','Primary production','Tertiary production','secondary production','direct production','','','c','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(299,'The reward of rent, wages, interest and profits accrue from','capitals, labour, land, and entrepreneur respectively','land entrepreneur, labour and capital respectively','land, labour, capital, and entrepreneur respectively','labour, entrepreneur, land and capital respectively.','','','c','','utme','2010',93,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(300,'The factor of production that is subject to depreciation is','capital ','land','labour','entrepreneur','','','a','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(301,'Division of labour ultimately leads to ','conservation','integration','specialization','repetition','','','c','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(302,'A worker who process rice is engaged in','constructive activity','commercial activity','extractive activity','Manufacturing activity','','','d','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(303,'After- sales service is a function usually rendered by','a retailer','a wholesaler ','an agent ','an entrepreneur ','','','a','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(304,'A trend is retailing which enables consumers to have free access to different products is ','after sales service ','branding ','self-service','vending machine','','','c','','utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:55'),(305,'The activity which entails buying of goods in bulk and selling in small quantities to retailers is ','assembling ','wholesaling ','retailing ','merchandising ','','','b','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(306,'The comparison of a country’s visible and invisible exports and imports expressed in monetary term is ','balance of payment ','terms of trade','balance of trade','terms of payment ','','','c','','utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(307,'The document that gives an importer a freehand to obtain goods from any manufacturer is ','a consular invoice ','a closed indent ','an open indent ','a freight note','','','c','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(308,'Entrepot trade usually occurs in ','exchanging goods within a nation ','exchanging goods among countries ','importing goods among countries ','exporting goods to be re-exported ','','','c','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(309,'The document issued to a port authority when goods are deposited is a ','dock landing account ','bill of sight ','bill of lading ','dock warrant ','','','d','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(310,'The details of the goods required by the purchaser is outlined in ','a consular invoice ','an indent ','an invoice ','a certificate of origin ','','','c','','utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(311,'Selling goods in foreign countries at prices below their marginal cost is ','dumping ','depreciation ','devaluation ','discounting ','','','a','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(312,'A process of creating more market for a product is through ','consumerism ','marketing ','advertising ','repositioning.','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(313,'One of the merits of television as a medium of advertising is that it ','is prone to censorship ','is relatively cheap ','has more sensory stimulation ','has more network coverage','','','c','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:15'),(314,'The best mode of ensuring that items posted get to the named addressed is through','recorded delivery ','registered mail','certificate of posting ','express mail','','','b','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(315,'A businessman who undertakes the hull insurance policy is aiming at ','covering losses on damages to the cargo ','protecting injured crew in the ship ','averting payment of the freight ','covering damages to the body of the ship ','','','a','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(316,'An agent who brings a customer into business contact with his principal is known as ','a del credere agent ','an auctioneer','a factor','a broker','','','d','','utme','2010',105,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(317,'A major hindrance to tourism growth in Nigeria is ','absence of genuine tour operators ','lack of tourism master plan ','inadequate tourist centres','non-compliance to immigration laws.','','','b','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(318,'The warehouse that is owned and controlled by the government is a ','wholesalers’ warehouse ','public warehouse ','state warehouse','manufacturers’ warehouse','','','b','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(319,'One of the main features of a partnership is ','limited liability ','lack of corporate existence ','unlimited membership ','lack of mutual confidence','','','b','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(320,'An arrangement by independent firms to share the market of their products on quota basis is referred to as  ','trust ','integration ','syndicate ','cartel','','','d','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(321,'An illegal arrangement by manufacturers to control the price or condition of sale of a product is ','ring ','factoring ','consortium ','merger','','','c','','utme','2010',113,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(322,'A public company with an authorized capital of N60,000, issued 36,000 shraes at 150k each. What is its capital?','N60,000','N36,000','N54,000','N90,000','','','c','','utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:41'),(323,'One of the functions of NACCIMA is ','negotiating with labour unions in matters of wages and conditions of service','pooling of members’ resources for long-term investment ','disseminating information to members on matters relating to tariffs ','ensuring uniformity in labour matters and industrial relations.','','','d','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:42'),(324,'A characteristic of money which ensures that its value is not lost is ','homogeneity ','easy portability ','divisibility ','relative scarcity ','','','d','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(325,'The instrument used in the capital market is ','treasury bill ','bill of exchange ','stock ','debenture ','','','c','','utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:45'),(326,'A pre-requisite for admission into the second-tier securities Market is for a company to ','make 20% of its equity share available to he public for subscription ','have a minimum of 100 shareholders ','have a maximum of 100 shareholders ','make 10% of its equity share available to the public for subscription','','','d','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(327,'The tree components of staffing are ','recruitment, interview and appointment ','recruitment, test and placement ','recruitment, selection and appointment ','recruitment, selection and placement ','','','d','','utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(328,'Which of the following is a matter of personal preference on the part of a superior officer?','Unity of command ','span of control ','delegation of authority ','unity of direction','','','c','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:48'),(329,'The conversion of raw materials into finished goods leads to the creation of ','form utility ','product utility ','possession utility ','place utility ','','','a','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(330,'The main concern of marketing concept is to ','reduce the number of retail outlets ','identify consumer needs and satisfy them ','increase sales to meet consumer needs ','encourage division of labour.','','','b','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(331,'The best pricing strategy for a company that produces warm clothing is ','target return pricing ','bid pricing ','variable pricing ','product line pricing ','','','d','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:51'),(332,'The deliberate and sustained efforts of an organization towards the creation of goodwill for its products and services is through ','Public relations ','advertising ','sales promotion ','rebranding ','','','a','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(333,'The label on a product such as ‘pampers’ is a type of ','trademark  ','branding ','packaging ','patent right','','','a','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(334,'An opportunity to reject a binding contract at will by a third party is said to be a ','valid contract ','quasi contract ','voidable contract','conditional  contract','','','c','','utme','2010',115,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(335,'An agency contract must involve ','a principal and a consumer','a principal  and a producer ','a principal and a third party ','a principal and a third party ','','','d','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(336,'The difference between trademark and patent right is that the latter ','gives exclusive right to import a particular good ','is conferred by the government ','confers monopoly  on a product ','confers exclusive right to publish literary works.','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(337,'Which of the following is a function of consumerism? ','Protecting consumers’ rights ','providing consumers’ choice','providing consumers’ needs','Making profiteering impossible','','','a','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(338,'A printed copy of processed information from the computer is the ','soft copy ','file copy ','scanned copy ','hard copy ','','','d','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(339,'The central working system of a computer used for data processing is the ','memory unit ','monitor ','floppy disk drive ','hard drive','','','b','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(340,'The major problem confronting Cyber Café operators is ','Advanced fee fraud by clientele ','poor network coverage ','high operating costs ','copyright violations by clients','','','c','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(341,'A device that enables the downloading of information from the internet is the ','floppy drive ','compact disk ','modem ','blue tooth ','','','c','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(342,'In e-baking, ATM means ','authentic Teller Machine','Automatic Teller Machine ','All-purpose Teller Machine','Automated Teller Machine','','','d','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(343,'One way by which a business can discharge its social responsibility to its community is to ','hold monthly meetings of its customers','build houses for its executives ','award scholarship to staff children ','build public health centres.','','','d','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:10'),(344,'The most important function of commerce is in ','enhancing business relationships ','helping people to improve their profits ','facilitating exchange among individuals and firms','assisting trade through banking and insurance','','','c','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:11'),(345,'The three main classifications of occupation are ','construction, trade and services ','manufacturing, industry and services ','farming, banking and trading  ','industry, commerce and services','','','d','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:12'),(346,'An oil exploration company is engaged in ','tertiary production ','constructive occupation ','extractive occupation ','secondary production','','','c','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:13'),(347,'Services rendered to the public is provided by ','Government ','civil servants ','professionals ','domestic servants ','','','b','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:14'),(348,'The creation of goods and services to satisfy human wants is referred to as ','manufacturing ','commercialization ','Production ','entrepreneurship ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:21'),(349,'Which of the following is a limitation  of division of labour? ','decline in craftsmanship ','monotony of work ','reduction in output','reduction in labour force','','','d','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:22'),(350,'Resources obtained from the extractive sector that are transformed into finished products are examples of ','primary production ','tertiary production ','direct production ','secondary production.','','','a','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:23'),(351,'An individual that links the producer with the retailer is ','an agent ','a wholesaler ','an entrepreneur ','a principal ','','','b','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:24'),(352,'One of the functions of a retailer is the ','financing of production activities ','provision of credit facilities to relations ','provision of jobs for customers ','breaking of bulk','','','b','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:25'),(353,'The main aim of selling directly to the consumers by manufacturers is to ','reduce transportation cost','make contact with individual consumers ','discourage the activities of middlemen ','maximize profit margin','','','c','','utme','2011',117,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:26'),(354,'Balance of payment problems arise if a country’s ','exports is more than imports','imports is more than exports','currently is devaluated','Invisible exports is more than visible exports ','','','b','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:27'),(355,'The three components of a country’s balance of payment are ','Current account, capital account and monetary movement account ','capital account, trade account and business record ','sales account, profit and loss account and capital account ','monetary movement account, trade account and ales ledger.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:28'),(356,'A document that indicates obligation that is transferable by delivery and endorsement is a ','bill of lading ','bill of exchange ','documentary evidence ','negotiable instrument ','','','a','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:29'),(357,'The document which can be exchanged for a bill of lading is ','freight note ','mate receipt ','export invoice ','ship report','','','a','','utme','2011',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:30'),(358,'The price quoted which includes the cost of insurance, freight and all delivery charges to the importer’s warehouse is ','Free Alongside Ship','Franco ','Free on Board ','Free on Rail','','','c','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:31'),(359,'The purchase of goods under the CWO system of payment implies that ','money must be enclosed when ordering ','payment must be made on delivery ','payment must be made on the spot.','cash must be paid on the spot ','','','b','','utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:32'),(360,'The most effective but limited medium of advertising in Nigeria is ','billboard ','television ','newspaper ','radio ','','','a','','utme','2011',114,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:33'),(361,'A cheque that has been drawn but not presented for payment can still be honoured ','within 6 months ','after 9 months ','within 9 months ','after 6 months','','','a','','utme','2011',117,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:34'),(362,'The major source of income to commercial banks is ','loans ','deposits ','interests ','overdrafts ','','','b','','utme','2011',112,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:35'),(363,'An ancillary to trade that easily links suppliers with consumers is ','tourism  ','banking ','communication ','transportation','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:36'),(364,'Mr. Lawal insured his warehouse against burglary but it was later gutted buy fire. This implies that ','the loss should be borne by the insurer ','Mr. Lawal is liable  only for half of the estimated loss ','the insurer should make a consolation payment for the loss','the loss should be borne by Mr. Lawal','','','d','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:37'),(365,'The agreement of insurers to spread risks  among themselves is a major feature of ','reinsurance','life assurance ','underwriter','marine insurance ','','','a','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:38'),(366,'Inbound tourism occurs when ','non-residents of a country travel to other countries ','residents of a country travel to other countries ','non-residents of a country travel countries ','residents of a country travel within it','','','d','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:39'),(367,'One of the major disadvantages of pipeline transportation is its ','high cost of construction ','limitation in scope ','vulnerability to climatic changes ','high maintenance cost ','','','a','','utme','2011',105,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:40'),(368,'The business organization that can effectively combine management with control is ','private limited liability company ','sole proprietorship ','public limited liability company ','co-operative society ','','','b','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:41'),(369,'When two or more companies agree to execute a project too large for one to handle, this is referred to as ','an amalgamation ','a cartel ','a merger ','a consortium ','','','d','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:42'),(370,'In the event of voluntary liquidation, the appointment of a liquidator is the responsibility of the ','directors ','creditors ','promoters ','court ','','','a','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:43'),(371,'A source of business financing which involves pledging of a specific asset is ','bond ','mortgage ','debentures ','loan','','','b','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:44'),(372,'An example of a trade association is ','ALGON','NLC','NURTW','NULGE','','','a','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:45'),(373,'A broker is an agent who links a potential investor with ','a shareholder who wants to register a company ','Other members of the exchange who want to trade ','government official on the exchange ','a quoted company ','','','d','','utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:56'),(374,'Second-tier securities Market differs from the first-tier securities Market in that the former is ','Highly restricted ','regulated by the SEC','regulated by the NIPC','Less restricted ','','','a','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:56'),(375,'A communication process providing information for decision-making in an organization is the ','Management Information System','Transmission Control Protocol ','Information Retrieval System ','File Transfer Protocol.','','','c','','utme','2011',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:57'),(376,'The managerial ability of a supervisor in an organization may be underutilized if the ','morale of the supervised is high ','span of control is wide','span of control is narrow','morale of the supervised is low','','','c','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:05'),(377,'The arrangement and interrelationship of the various components and positions of a business is referred to as ','organizational structure ','clarity of objective ','unity of direction ','line structure','','','a','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:06'),(378,'The variety of goods and services which a company offers for sale is its ','place mix ','promotion mix ','price mix','product mix','','','d','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:07'),(379,'Activities undertaken to create awareness for goods by conducting contests is ','marketing concept ','consumerism ','sales promotion ','marketing mix','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:08'),(380,'The slogan, a wonderful world,  used by a communication network is a form of ','product differentiation ','persuasive advertising ','publicity ','packaging ','','','b','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:09'),(381,'To make a simple contract valid, the intention must be ','legal and written ','legal and binding ','legal and attractive ','legal and harmonious ','','','b','','utme','2011',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:10'),(382,'The major parties to an agency relationship are the ','principal and the creditor ','bailee and the bailor','principal and the agent','shareholder and the creditor ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:11'),(383,'One of the obligations of an employer to an employee is to ','Indemnify  him against liabilities incurred on duty ','award scholarship to his children ','terminate his appointment  without prior notice','indemnify him against injuries caused through negligence ','','','a','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:12'),(384,'The body charged with the responsibility of regulating foods and drugs in Nigeria is the ','SON','NDLEA','NAFDAC','CAC','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:13'),(385,'The physical components of a computer system refers to the ','system unit ','hardware ','software ','compact disk ','','','b','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:14'),(386,'An example of a computer operating system is ','the pagemaker ','the Word Perfect ','Microsoft Word 2000','Windows 2000','','','d','','utme','2011',93,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:15'),(387,'Intranet differs from extranet in that the former ','requires a modem before it could be used ','can generally be accessed by the public ','is restricted to employees of an organization ','requires internet protocols','','','c','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:17'),(388,'A software application which enables a user to display and interact with texts, images and videos is the ','web server','internet Protocol','coreldraw ','web browser ','','','c','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(389,'A predominant mark-up language for web pages is ','IP','HTTP','HTML','TCP','','','c','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:19'),(390,'The symbol @ in an internet mail address is used  to  ','separate the user name from the machine name ','link the user with other internet users ','locate the addresses of internet  uses ','link the user with the machine.','','','c','','utme','2011',118,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:20'),(391,'A business organization is said to be socially responsible when it ','gets involve in issues relating to the society ','rewards its staff for long-term service','offers discounts to customers','invites the public to its annual general  meetings.','','','a','','utme','2011',119,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:21'),(392,'One of the major benefits of commerce to government is to ','improve the standard of living ','generate revenue for growth and development ','encourage cooperation among public organizations ','encourage the development of socio-cultural values','','','b','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:22'),(393,'An example of an activity in the construction industry is ','blacksmithing  ','bricklaying ','car assembling ','shoemaking ','','','c','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:23'),(394,'One of the inputs in production that can be motivated by remuneration is ','capital ','entrepreneur ','labour ','land ','','','c','','utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:24'),(395,'The allocation of tasks to different skills in a production process is referred to as ','production technique ','production function ','division of labour','delegation of responsibility ','','','c','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:25'),(396,'The sales of goods through a medium that accepts money and deliver the items to the customer is ','an automated teller machine ','a vending machine','a counting machine','a branding machine','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:26'),(397,'The main purpose of branding is to ','create identity for a product ','make a product look attractive ','create product awareness ','increase sales volume ','','','a','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:27'),(398,'The basis for international trade is embedded in the principle of ','absolute advantage ','globalization ','deregulation','comparative advantage ','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:28'),(399,'The major problem encountered in international trade is that of  ','distance ','differences in culture ','politics ','differences in currency ','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:29'),(400,'The document a seller uses in dispatching goods to a customer by a carrier is ','a bill of lading ','an invoice ','an advice note','a delivery note','','','d','','utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:30'),(401,'A document which serves as an order with details of goods required by an intending purchaser is   ','a freight note ','an indent ','a bill of lading ','a waybill','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:31'),(402,'If a customer pays within nine days of receiving goods and takes advantage of 3% off the invoice price, this is stated as ','3/9; net 3. ','9/27; net 30','30; net 9/3','9/30; net 3.','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:32'),(403,'Which of the following is a characteristic of a bearer cheque? ','it is made with transverse lines ','it is made payable to whoever presents it','It is made without teraservers lines','it is only payable into the payee’s account ','','','b','','utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:33'),(404,'A bill of exchange paid before its due date at an amount less than its face value is said to have been ','accepted ','rejected','discounted ','dishonoured ','','','c','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:33'),(405,'The most effective type of advertising for branding products is ','mass advertising ','persuasive advertising ','informative advertising ','competitive advertising ','','','c','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:34'),(406,'A current account holder pays fees for services in form of ','bank charges ','inertest rates','commission on turnover','minimum lending rate','','','a','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:35'),(407,'Printed messages sent by cable are recorded as ','telegram ','SMS','telex','MMS','','','a','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:36'),(408,'Communication is relevant to business activities because it ','creates wealth for people ','reduces the cost and risk of traveling ','connects people','enhances delivery of goods and services','','','b','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:37'),(409,'The right of an insurance company to stand in place of an insured against a third party, who is liable for the occurrence of a loss, is the principle of ','proximate cause','insurable interest ','insurance priority ','subrogation ','','','c','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:39'),(410,'Assurance is different from insurance in that the former is based on ','probability ','possibility ','risk ','uncertainty ','','','b','','utme','2012',57,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:40'),(411,'A person who undertakes a life insurance is said to be an ','Insurer ','assurer ','assured ','insured ','','','d','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:41'),(412,'Tourism serves the purpose of ','cross-cultural understanding and peaceful interaction ','opening avenues for leaving the country','economic development and naturalization ','exploiting the country’s natural endowment','','','d','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(413,'The type of letters that are delivered through the normal mail or by airmail express service is referred to as ','Inland letters ','registered letters','airmail letters','express letters','','','c','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(414,'A business organization that exploits the capabilities of a member to remedy the weaknesses of another is a ','joint venture ','partnership ','nominal partnership ','cooperative ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:44'),(415,'The most important business objective is to ','improve investments ','provide quality  products','target consumers for satisfaction ','carve a niche for the business ','','','c','','utme','2012',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:45'),(416,'In case of liquidation of a public limited liability company, those that are first paid are ','ordinary shareholders ','preference shareholders ','cumulative preference shareholders ','debenture holders','','','d','','utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:46'),(417,'A feature common to public and private limited liability companies is that ','both can sue and  be sued ','the minimum number of their shareholders is five','the transfer of their shares  is not restricted ','their annual accounts are published for public use','','','a','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:47'),(418,'A business organization can obtain long-term financing through ','bank overdraft ','the sale of shares ','credit purchases ','bureau de change ','','','b','','utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:47'),(419,'The portion of the authorized share capital given out to the public for subscription is ','called-up capital ','issued capital ','paid up capital ','reserved capital ','','','b','','utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:48'),(420,'A company has an authorized capital of 40 million shares at N1 each, out of which 32 million are issued and fully paid-up. What happens to the remaining 8million shares?','it has been issued but not paid-up ','it has been applied for but not issued ','it is not paid up','it is not yet been issued ','','','d','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:50'),(421,'If the rate of turnover of a company in 1999 was 4 times while the average stock was N49, 600, determine the turnover.','N199, 400','N198, 400','N100, 200','N99, 200','','','b','','utme','2012',62,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(422,'Given:  N\\n Opening stock  1,800\\n Purchases   2, 800\\n Sales    8,000\\n Closing stock    350\\n Carriage on sales    500\\n Calculate the value of the unused stock.\\n','N 800','N500','N350','N320','','','c','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:52'),(423,'The main objective of a trade association is to ','protect is members against litigation ','boost the trade of its members ','secure credit for its members ','protect its members against victimization ','','','d','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:01'),(424,'The promotion and protection of trade, industry and agriculture thorugh trade fairs is a function of ','NACRDB','NACCIMA','the Consumer Protection Council ','the Chamber of Commerce ','','','d','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:02'),(425,'Dealing in quoted securities on the Nigeria Stock Exchange is restricted to authorized ','companies ','brokers ','investors ','principals','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:03'),(426,'Securities that entitle the investor to coupon rates are ','bonds ','equities ','warrants ','treasury bills','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:04'),(427,'Under what management function will the motivation of employees fall?','staffing ','controlling ','organizing ','directing ','','','b','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:05'),(428,'The promotion of team spirit in an organization is referred to as ','Unit of direction ','spirit de corps ','unity of purpose','discipline ','','','a','','utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:06'),(429,'One of the characteristics of a good organizational chart is that it should ','be rigid ','show government policy','facilitate communication ','be acceptable ','','','c','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:07'),(430,'An organization which focuses on consumer satisfaction is practicing ','consumerism ','market segmentation ','selling concept ','marketing concept ','','','d','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:08'),(431,'Goods and Services are made available to consumers through','the channel of distribution ','sales promotion ','the advertising agency','the middlemen ','','','a','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:09'),(432,'A person who in consideration for an extra commission, takes responsibility for goods sold on credit and in case of default is a ','commission agent','del credere agent ','broker ','factor ','','','b','','utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:10'),(433,'Yahaya bought a piece of furniture on a credit sale agreement from Ahmed and resold it to Ali before all installments were made. The court upheld that Ahmed could not recover possession of the items from Ali. The reason for the judement was because ','ownership was transferred on completion of installment ','ownership was transferred on delivery ','Yahaya could not pass title to a third party ','Ali was still indebted to Yahaya','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:11'),(434,'The body which ensures that consumers are protected against harmful product in Nigeria is ','NAFDAC ','NDLEA','SON','CPC','','','a','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:12'),(435,'The process of decoding data in a computer is known as ','dilution ','default drive ','decryption ','data security ','','','c','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:13'),(436,'Which of the following is a type of system software? ','Utility programs ','Registers ','Hard drives ','Packages','','','a','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:14'),(437,'Computers that process all data as binary zeros and ones are ','analog computers ','digital computers ','hybrid computers','desktop computers','','','b','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:14'),(438,'Modern mans of payment is greatly facilitated by ','e-commerce ','paper money ','e-banking ','D credit transfer ','','','c','','utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:15'),(439,'The provision of quality and safe products which guarantee the health of consumers is an example of ','quality control ','price control ','civic responsibility ','social responsibility ','','','a','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:17'),(440,'A business organization must always consider the overall effect of its actions on the ','competitor ','product ','profit ','society ','','','c','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:18'),(441,'The type of labour that makes use of physical effort in production processes is the ','unskilled labour','skilled labour','blue-collar job','white-collar job','','','a','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:19'),(442,'The assembling of products into usable forms is known as ','creation ','manufacturing ','construction ','formation ','','','c','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:20'),(443,'The final link in the chain of distribution is ','Middlemen ','wholesaling ','consumer ','retailing ','','','c','','utme','2013',64,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:21'),(444,'A country is said to be experiencing an unfavourable balance of trade if her','exports exceed imports ','visible exports  exceed  visible imports ','imports and export are equal ','visible imports exceed visible exports ','','','d','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:22'),(445,'Trading position of Nigeria is the same as her ','desire  to trade with many countries','willingness to grant credit to foreigners ','balance of trade ','terms of trade','','','a','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:23'),(446,'The role of customs and excise authority includes the ','provision of a good transport system to facilitate imports and exports ','provision of security at the port ','control of the flow of goods in and out of the country ','provision of dockyards for ship repairs ','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:24'),(447,'The document lodged with the customs authorities before a ship can leave the port is a ','shipping note ','ship report ','ship manifest','dock warrant ','','','c','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:25'),(448,'The document which must be endorsed by the ambassador of a country of destination before shipment of goods is a ','consular invoice ','certificate of origin ','bill of lading ','closed indent ','','','b','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:26'),(449,'A country’s terms of trade are said to improve when the ratio of her export ','decreases ','remains constant ','increases ','equals import','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:27'),(450,'Which of the following advertising medium appeals to only the literate it the society?','Radio advertising ','Print Media advertising ','Television advertising ','Cinema advertising ','','','b','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:28'),(451,'The two main forms of communication are ','oral and written ','verbal and non-verbal ','e-mail and fax','traditional and modern media ','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:29'),(452,'The most reliable and efficient means of conveying urgent documents is through','postal order ','ordinary letters ','registered letters ','courier services','','','d','','utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:30'),(453,'An undertaking given by a person to another assuring his integrity is ','proximate clause ','fidelity guarantee ','subrogation ','insurable interest ','','','b','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:31'),(454,'If Mr. N takes a fire insurance policy with average clause, his compensation will be ','N5, 000','N7, 500','N70, 000','N75,000','','','b','','utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:32'),(455,'The difference between indemnity insurance and non-indemnity insurance is that the latter provides ','cover for exporters against risks ','cover for importers against risks ','full payment to the insured ','consolation payment to the insured ','','','d','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:33'),(456,'An importance of warehousing is in the ','production of goods ','transportation of goods ','Importation of goods ','repackaging of goods','','','a','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:34'),(457,'In order to increase the capital owned, a sole trader may ','seek for bank loan ','issue debentures ','acquire extra shop fittings on credit ','draw less of his profit for personal use','','','d','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:35'),(458,'A business partner who provides capital but abstains from participation in administration of a firm is a ','general partner ','nominal partner ','secret partner ','dormant partner ','','','d','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:36'),(459,'Which of the following will NOT be stated in a Memorandum of Association? ','Name clause ','Rights of shareholders ','object clause ','Registered office','','','d','','utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:37'),(460,'The amount of authorized capital that shareholders have subscribed to is ','issued share capital ','authorized share capital ','owner’s equity ','working capital ','','','c','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:38'),(461,'The rate of turnover of a firm in a given year is 5 times while the average stock is \\n N12.500. what is the turnover of the firm? \\n','N24,000','N46,500','N62, 500','N65,000','','','b','','utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:39'),(462,'A lawyer that defrauds his client may be derobed by the Nigerian Bar Association in order to ','protect other lawyers ','protect the integrity of the association','compensate the affected client ','prevent the client from sueing the association ','','','c','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:40'),(463,'In the Nigeria GSM industry, a parliament is organized by the Nigerian Communication Commission in order to ','increase profit of service providers ','protect the interest of government ','encourage more people into the business ','protect the interest of consumers ','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:41'),(464,'Trade Fairs in Nigeria are organized by ','the Federal Government ','Manufactures’ Association of Nigeria','Ministry of Commerce and industry ','Chambers of commerce','','','d','','utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:42'),(465,'Money is generally acceptable for transactions due to','the legal backing ','the rule of law ','it’s acceptability in the global market ','the Central Bank Governor’s signature ','','','d','','utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:43'),(466,'Which of the following is a quality of money?  ','Availability','Scarcity  ','Indivisibility ','Convertibility ','','','a','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:44'),(467,'Money can simply be referred to as a ','measure of value','standard of value','means of settlement ','durable asset for doing business','','','a','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:45'),(468,'Gilt-edged securities are issued mainly by ','individuals ','non-governmental organizations','government ','multi-national companies ','','','c','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:46'),(469,'The initial function of a manager is ','setting up an organization ','coordinating ','planning ','provision of welfare package ','','','b','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:47'),(470,'The most suitable organizational structure for small or medium-sized enterprises is ','line structure ','staff structure ','committee structure ','functional structure ','','','a','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:48'),(471,'In a staff-authority relationship, the opinion of a specialist is one department to another is ','a directive ','an advice ','a command','a delegation ','','','b','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:49'),(472,'Management of a business involves he development of ideas for the ','distribution of goods and services that human wants','transportation of goods and services that goods and services that human wants ','transfer of little of ownership of goods and services to individuals.','production of goods and services that satisfy human needs.','','','d','','utme','2013',60,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:50'),(473,'Which of the following is used as a pricing policy? ','packaging ','market selection ','labeling ','market skimming ','','','d','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:51'),(474,'The essential utility derived from the use of a product is known as ','augmented benefit','branded benefit ','core benefit ','formal benefit','','','c','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:52'),(475,'The breaking down of a market into separate and identifiable elements is known as ','differentiation ','segmentation ','skimming ','penetration ','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:53'),(476,'A contract that is acknowledged before the law court is referred to as ','informal contract','formal contract ','contract of records ','specialty contract ','','','b','','utme','2013',64,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:54'),(477,'An agent employed to sell goods delivered to him by the principal is referred to as a ','Special agent ','del credere agent ','factor ','universal agent','','','b','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:55'),(478,'A motor dealer who agreed to sell a car to Mr. X but sold and delivered it to Mr. Y on the delivery date agreed with Mr. X. He has discharged the contract by ','performance ','frustration ','an agreement ','breach ','','','d','','utme','2013',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:56'),(479,'A contract can be terminated through ','physical combat ','family intervention ','frustration ','consultation ','','','d','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:57'),(480,'The right of retain possession of goods until the contract price is paid is referred to as ','a promise ','ultra vires ','a branch ','a lien ','','','a','','utme','2013',62,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:58'),(481,'The sole legal right held by the author to publish his book is a ','trademark ','copyright ','patent right ','book mark','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:59'),(482,'The process of transferring data from one computer to another is referred to as ','down loading ','faxing ','browsing ','decoding ','','','a','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:00'),(483,'The physical component of a computer system is ','software ','hardware ','hard disk','floppy disk ','','','b','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:01'),(484,'A computer accessory through which information can be retrieved is the ','hard disk ','input  device ','control unit ','floppy disk ','','','d','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:02'),(485,'The type of computer application software used mainly for management information is ','Corel draw ','AutoCAD','data base','word perfect','','','c','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:03'),(486,'To meet security requirement before gaining access to data, a computer operator supplies ','an e-mail address ','a yahoo address ','a password ','a modem','','','c','','utme','2013',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:04'),(487,'A major factor that affects business operations is ','technology ','supply ','product ','rivalry ','','','a','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:05'),(488,'The environmental hazard that is most difficult to control is ','land pollution','water pollution ','air pollution','political unrest ','','','c','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:06'),(489,'Which of the following can be defined as trade and aids to trade?','Advertising','Commerce','Wholesaling','Retailing','','','b','','wassce','2000',66,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:07'),(490,'Which of the following is not a source of finance to a sole proprietor?','Trade Credit','Overdrafts','Debentures','Leasing of equipment','','','d','','wassce','2000',57,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:08'),(491,'Partners who allow their names to be used in a partnership but do not take part in the management of the business are','active partners','limited partners','general partners','nominal partners','','','d','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:09'),(492,'A private company is one which','must publish its audited account','floats its shares on the stock exchange market','restricts the rights to transfer its shares','is owned by a maximum of twenty members merger','','','c','','wassce','2000',61,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:10'),(493,'The coming together of two or more firms at different stages of production is','horizontal merger','vertical merger','amalgamation','cartel','','','b','','wassce','2000',61,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:11'),(494,'The total value of fixed and current assets is?','working capital','capital employed','Fixed capital','capital owned','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:12'),(495,'What is P in the above equation?','Purchases returns','Net Profit','Sales','Carriage outwards','Use the following equation to answer question   Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',64,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:13'),(496,'What is G in the above equation?','Sales returns','Carriage inwards','Purchases','Sales','Use the following equation to answer question  Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:14'),(497,'Which of the following is true about cumulative preference shares?','Unpaid dividends are carried forward','Shareholders can secure capital refund on demand','Shareholders are entitled to further share of profit','Dividends are paid into a special account','','','a','','wassce','2000',56,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:15'),(498,'A debenture is mortgaged when it is','not secured on the assets of a company','secured on the assets of a company','irredeemable','redeemable','','','b','','wassce','2000',55,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:16'),(499,'A retail outlet which sells a fairly narrow range of goods with a number of branches in different towns is a','supermarket','mail-order shop','mobile shop','multiple shop','','','a','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:17'),(500,'A consignment note is used when','goods are wrapped and labeled for easy identification','goods are dispatched to agents through transporters','damaged goods are being returned','there is over-invoicing','','','b','','wassce','2000',57,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:18'),(501,'Which of the following is not contained in an advice note?','Type of goods','Price of goods','Date of dispatch','Means of dispatch','','','d','','wassce','2000',55,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:19'),(502,'A refund of the duty collected on goods imported and processed for re- export is','excise duty','excise draw back','preferential duty','value added tax','','','b','','wassce','2000',54,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:20'),(503,'When a country’s total visible and invisible exports are more than its visible and invisible imports, it has','favourable balance of payments','favourable balance of trade','unfavourable balance of trade','unfavourable balance of payments','','','a','','wassce','2000',51,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:21'),(504,'Which of the following is not a function of a retailer?','Supplying goods to final consumers','Bulk breaking','Giving information to the wholesaler','Branding and packaging of goods','','','d','','wassce','2000',44,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:22'),(505,'A merchant who wishes to order goods from a foreign country sends','an invoice','an indent','an advice note','a credit note','','','b','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:23'),(506,'The production of goods in anticipation of demand is \tpossible because of the existence of','Packaging','advertising','warehousing','branding','','','c','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:25'),(507,'Which of the following is sent in reply to a letter of enquiry?','Quotation','Order','Consumer invoice','Advice note','','','b','','wassce','2000',58,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:26'),(508,'The abbreviated phrase E & OE is usually printed on','an invoice','a cheque','a delivery note','a debit note','','','a','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:27'),(509,'Which of the following refers to a price reduction based on the size of order?','Cash discount','Trade discount','Seasonal discount','Cash on delivery','','','b','','wassce','2000',64,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:28'),(510,'Which of the following is not a means of payment in foreign trade?','Telegraphic money order','Specially crossed cheque','Letters of credit','Debit transfer','','','b','','wassce','2000',56,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:29'),(511,'A bill of exchange on maturity is allowed','seven days of grace','five days of grace','four days of grace','three days of grace','','','a','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:30'),(512,'Which of the following is not a financial institution?','Commodity Board','Insurance company','Clearing house','Stock exchange','','','a','','wassce','2000',56,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:31'),(513,'When a customer writes a cheque in his own name and withdraws cash with it from his account he is both the','drawee and the payee','drawer and the payer','drawee and the drawer','drawer and the payee','','','c','','wassce','2000',48,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:32'),(514,'Which of the following is a means of payment through the post office?','Standing Order','Promissory note','Money order','Telegraphic transfer','','','c','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:41'),(515,'Which of the following encourages people to save towards owning a house?','Merchant bank','Development bank','Mortgage bank','Commercial bank','','','c','','wassce','2000',42,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:42'),(516,'Which of the following services is not rendered by commercial banks?','Business advice','Currency notes issue','Accepting deposits','Credit transfer','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:43'),(517,'A retirement insurance policy which enables the assured to receive income for a specific period is','annuity','endowment','whole life','fidelity guarantee','','','a','','wassce','2000',58,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:44'),(518,'A house worth  N50.000 was insured against fire for  N30,000. Fire destroyed and caused damages worth N20.000 on the house. Under which insurance principle will the owner be entitled to a compensation of  N20,000?','Contribution','Subrogation','Indemnity','Uberrimaefidei','','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:45'),(519,'When an insurance company indemnifies the insured and takes over his rights, this is known as','abandonment','subrogation','proximate cause','contribution','','','b','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:46'),(520,'In Public Limited Liability Companies, equities are referred to as','preference shares','authorized capital','ordinary shares','called-up capital','','','c','','wassce','2000',62,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:47'),(521,'The method of sending messages by the teleprinter is','telephone','cablegram','telex','railex','','','c','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:48'),(522,'The information on terms of carriage of mails is found in','business journal','post office guide','trade directory','service manual','','','b','','wassce','2000',48,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:49'),(523,'Rail transport is less flexible than road transport because','rail lines run between specific terminals','train is slow over long distances','only bulky goods are carried by rail','road transport is suitable for short distances','','','a','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:50'),(524,'Which of the following is used for moving only goods from one seaport to another?','Ocean liner','Cargo liner','Ferry','Coaster','','','b','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:51'),(525,'The marketing activity that stimulates immediate demand for a product is','sales promotion','publicity','consumer relations','personal selling','','','a','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:52'),(526,'Which of these is not a basic marketing function?','Exchange','Production','Facilitation','Information','','','b','','wassce','2000',67,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:54'),(527,'Branding is a tool for','competitive advertising','consumerism','marketing research','pricing policy','','','a','','wassce','2000',47,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:55'),(528,'Firms wishing to defend established products as well as launch new ones will make use of','franchising','product differentiation','branding','advertising','','','d','','wassce','2000',45,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:56'),(529,'Which of the following is a method of sales promotion?','Radio giggles','Poster display','Trade fair','Television broadcast','','','c','','wassce','2000',62,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:57'),(530,'The deliberate and sustained efforts to maintain a good image of a company is known as','personal relations','public relations','professional relations','industrial relations','','','b','','wassce','2000',50,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:58'),(531,'A contract of sale where ownership passes to the buyer on the payment of the first instalment is known as','hire purchase','lease','cash on delivery','credit sale','','','d','','wassce','2000',53,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:59'),(532,'Which of the following agents guarantees payment transactions entered into on behalf of the principal?','Auctioneer','Factor','Broker','Del credere','','','d','','wassce','2000',67,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:00'),(533,'Which of the following is not a means of consumer protection?','Price control','Sale of Goods Act','Trade Description Act','Tax laws','','','d','','wassce','2000',59,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:01'),(534,'Which of the following is a basic requirement for a valid contract?','Representation','Consideration','Interest','Performance','','','b','','wassce','2000',60,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:02'),(535,'A counter-offer in a contract is regarded as','an acceptance','an invitation to treat','a rejection','a consideration','','','c','','wassce','2000',53,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:03'),(536,'Which of the following is not a right of the consumer?','Safety','Choice','Discount','Value','','','c','','wassce','2000',64,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:04'),(537,'Which of the following is an agreement to transport goods but not a document of title?','Air-waybill','Bill of lading','Charter party','Freight note','','','c','','wassce','2000',63,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:05'),(538,'In which of the following classes of occupation would you place a doctor?','Extractive','Commercial','Direct services','Indirect services','','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:06'),(539,'Commercialization is good for the Nigerian economy because it','creates room for competition','increases the cost of living','leads to the reduction of workforce','leads to uneven distribution of wealth','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:40','2020-07-14 12:58:07'),(540,'Obtaining feedback on the quality and performance of competing products of different manufacturers, explains the retailer’s function of','after sales service','granting to credits to consumers','market research','stocking variety of goods','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:08'),(541,'The direct contact of a seller with potential buyers with a view to making sales is called','advertising','personal selling','public relations','publicity','','','b','','neco','2013',70,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:09'),(542,'The process of dividing a total market into groups made up of people with similar need refers to marketing','function','mix','research','segmentation','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:11'),(543,'The final link in the chain of distribution is the','agent','consumer','manufacturer','retailer','','','b','','neco','2013',65,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:12'),(544,'Platinum Habib Bank Plc. is an example of __ bank.','central','commercial','development','merchant','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:13'),(545,'Which of the following is NOT a means of payment through the post office?','Giro system','Money order','Postage stamp','Standing order','','','d','','neco','2013',78,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:14'),(546,'Branch managers who virtually have no control on goods they sell is a disadvantage of __  store.','chain','departmental','mail order','super','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:15'),(547,'Instrument used in place of legal tender but not freely acceptable are called ___ money.','bank','commodity','gold - backed','representative','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:34'),(548,'The assurance policy in which the assured pays lump sum of money which matures at his retirement is ___assurance.','annuity','endowment','life','term','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:35'),(549,'By making it possible for wholesalers to keep surplus stock until demand improves, the warehouse performs the function of','employment creation','price stabilization','production planning','storage','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:36'),(550,'Calculate the net profit.','30,000','33,000','38,000','40,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','b','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:37'),(551,'Calculate the total liabilities.','40,000','50,000','55,000','57,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','c','','neco','2013',67,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:38'),(552,'Calculate the current assets.','15,000','20,000','30,000','45,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','a','','neco','2013',65,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:39'),(553,'Ensuring free movement of factors of production among member states through the removal of obstacles is one of \t\tthe objectives of','ECOWAS','LCBC','NBC','OAU','','','a','','neco','2013',76,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:40'),(554,'Which of the following documents contains the name of the company, registration number and signature of the registrar?','Articles of association','Certificate of incorporation','Certificate of trading','Memorandum of association','','','d','','neco','2013',65,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:41'),(555,'The method of shopping on the internet by using the computer to browse the website of the manufacturer is known as','e-banking','e-commerce','e-exchange','e-trade','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:42'),(556,'The development of a container and a graphic design for a product is known as','advertising','branding','packaging','trade mark','','','c','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:43'),(557,'When an agent is appointed verbally or in writing by the principal to act on his behalf, the appointment is said to be by','estoppels','express','implication','ratification','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:44'),(558,'The features of an entrepreneur consist of the following, EXCEPT','coordinating factors of production','earning wages as income','efficiency in management','maintaining good communication','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:46'),(559,'Another name for trade discount is _________ discount,','cash','functional','quality','quantity','','','d','','neco','2013',58,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:47'),(560,'Those engaged in extraction, manufacturing, and construction occupations are called ___ workers.','commercial','direct','indirect','industrial','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:48'),(561,'Which of these is NOT a source of capital to First Bank of Nigeria Plc?','Equipment leasing','Lean from friends','Profit plough back','Sales of shares','','','b','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:49'),(562,'In trading, profit and loss account, carriage outward is','added to purchases','deducted from purchases','deducted from sales','treated as expenses','','','d','','neco','2013',68,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:50'),(563,'The pricing policy adopted by firms selling to wealthy people is','market penetration','market skimming','pricing above the market','pricing with the market','','','b','','neco','2013',61,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:51'),(564,'Which of the following is NOT a function of courier companies?','Ensuring international transmission of message','Providing door to door delivery services','Providing efficient means of mail delivery','Undertaking the shipment of export and import','','','d','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:52'),(565,'“MTN, Your Best Connection” is an example of ___ advertisement.','competitive','direct','informative','mass','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:53'),(566,'The assertion ‘consumers are always right’ refers to marketing','board.','concept','function','mix','','','b','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:54'),(567,'Which of the following is charged by the NIPOST on postal order?','Dividend','Interest','Poundage','Premium','','','c','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:56'),(568,'The following are characteristics of debenture holders, EXCEPT','being one of the sources of long term loan to public companies.','being paid interest','they are creditors of the company','they are entitled to profits','','','d','','neco','2013',56,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:57'),(569,'The money paid to savings account holders by banks after a period of transaction is called','dividend','gain','interest','premium','','','c','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:58'),(570,'Double coincidence of wants is a disadvantage of','business','buying and selling','credit sales','trade by barter','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:59'),(571,'Price quotation which excludes all delivery charges is called','cost and freight','ex - ship','ex - warehouse','free - on - board','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:00'),(572,'Which of the following does NOT appear on a cheque on presentation for payment?','Amount in words and figures','Date of withdrawal','Name of the cashier','Name of the payee','','','c','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:01'),(573,'The aspect of production which provides goods and services for immediate consumption is called ___ production.','direct','indirect','primary','secondary','','','a','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:02'),(574,'The actual gain made by a business after all expenses has been deducted is called','gross profit','margin','mark-up','net profit','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:03'),(575,'The following documents are used between buyers and sellers, EXCEPT','catalogue','dispatch rate','invoice','license','','','d','','neco','2013',81,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:04'),(576,'The total assets of a business less current liabilities refers to _____ capital.','authorized','called up','employed','owned','','','d','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:05'),(577,'The following are merits of industrial integration, EXCEPT','controlling output and price','eliminating waste','leading to monopoly','preventing over production','','','c','','neco','2013',80,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:06'),(578,'The use of middlemen by manufacturers become necessary where the goods','are of low rate of turnover','are susceptible to faking or adulteration','involved are branded','produced are in large quantities','','','d','','neco','2013',74,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:07'),(579,'The oldest form of business enterprise in Nigeria is','partnership','private liability company','public enterprise','sole proprietorship','','','d','','neco','2013',79,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:08'),(580,'Social responsibilities of a business to the consumers \tinclude the following, EXCEPT','educating the customers','ensuring truth in advertisement','granting credit facilities','providing of quality product','','','c','','neco','2013',58,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:09'),(581,'Products that have stayed long on themselves in a shop can be sold easily through','branding','discounting','doorstep selling','franchising','','','b','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:10'),(582,'The durable capital of an enterprise which is used continuously for further production is called ___ capital.','called up','circulating','fixed','liquid','','','c','','neco','2013',59,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:11'),(583,'A manufacturer is said to have performed all the necessary marketing functions in the distribution channel when the goods move from','manufacturer ? consumer','manufacturer ? retailer ? consumer','manufacturer ? wholesaler ? retailer ? consumer','manufacturer ? wholesaler ?jobber ? retailer ?consumer','','','c','','neco','2013',73,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:12'),(584,'Which of the following is NOT a reason for government’s ownership of Nigerian Ports Authority (NPA)?','Avoiding wasteful competition and duplication','Generating revenue','High capital requirement','Making profit','','','d','','neco','2013',66,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:13'),(585,'The first step for a businessman who wishes to engage in international trade is to','ask the exporter to move the goods to the shipping company for delivery','engage the services of clearing agent to clear the goods on his behalf','establish contact with the foreign trading partner','fill an application for import form with a bank','','','c','','neco','2013',79,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:28'),(586,'A law made by a country to prohibit importation of certain goods into the country is called _____ laws.','export','import','protectionist','tariff','','','c','','neco','2013',74,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:29'),(587,'Which of the following towns was NOT an initial commercial centre in Nigeria?','Kano','Lagos','Maiduguri','Yola','','','d','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:31'),(588,'Management function which arranges people, time, money and equipment, to achieve the objectives of an organization is referred to as','directing','motivating','organizing','planning','','','c','','neco','2013',75,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:32'),(589,'Bridging the gap between producers and consumers is the sole purpose of','distribution','hawking','retailing','warehousing','','','c','','neco','2013',69,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:33'),(590,'Which of the following is NOT a characteristic of labour? It is','fixed in supply','geographically mobile','man made','perishable in nature','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:34'),(591,'One of the problems associated with home trade is the','absence of currency exchange','better knowledge of the markets','inadequacy of storage facilities','proximity of buyers and sellers','','','c','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:35'),(592,'An instruction from a current account holder requesting to pay a named person or organization a. specified amount is \t\tcalled','bankers order','certified cheque','internal transfer','money order','','','b','','neco','2013',68,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:36'),(593,'Which of the following is NOT a commercial occupation?','Advertising','Agriculture','Communication','Insurance','','','b','','neco','2013',78,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:37'),(594,'In the marketing mix, place refers to','channel of distribution','location of the factory','the market place','where the product is located','','','d','','neco','2013',85,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:38'),(595,'Which of the following is NOT an attribute of an effective business manager?','Altruism','Empathy','Objectivity','Subjectivity','','','d','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:39'),(596,'The ability of money to be divided into smaller units for easy exchange of goods and services explains','divisibility','durability','recognisability','stability','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:40'),(597,'Which of the following is NOT a role of trade association?','Eliminating competition among members','Ensuring uniformity in mode of operation','Establishing link between government and associations','Promoting members interest','','','a','','neco','2013',76,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:41'),(598,'The transfer of enterprises from private to state ownership for economic or social reasons is referred to as','commercialization','indigenization','industrialization','naturalization','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:42'),(599,'The major divisions of Commerce are','import, export and transport','trade, communication and warehousing','trade and auxiliaries to trade','exchange, consumption and production','','','c','','wassce','1990',65,'Admin','2016-11-14 20:22:14','2020-07-14 12:59:43'),(600,'Which of the following statements is not true?','Commercial services are the life blood of a country economic system','There cannot occur commercial services until goods have been produced.','Without commercial services most goods and services will not be produced','There is no stage of production that does not employ commercial services.','','','b','','wassce','1990',53,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:44'),(601,'The three main divisions of production include industrial','commercial and banking services','commercial and services','transportation and services','manufacturing and services','','','b','','wassce','1990',49,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:45'),(602,'Which of the following is one of the functions of commerce?','Manufacturing','Growing of tomatoes','Storage of goods','Construction of Roads','','','c','','wassce','1990',59,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:46'),(603,'Which of the following does not belong to the extractive industry?','Farming','Insuring','Mining','Drilling','','','b','','wassce','1990',61,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:47'),(604,'The average stock is','N=2000','N=3000','N=5000','N=6000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','c','','wassce','1990',62,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:48'),(605,'The cost of goods sold is','N=6000','N=10000','N=42000','N=16000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','a','','wassce','1990',59,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:49'),(606,'The oldest and commonest form of business in Nigeria is','partnership','the co-operative society','sole proprietorship','joint stock venture','','','c','','wassce','1990',52,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:50'),(607,'If a retailer Mr. Aigbojie buys goods manufactured by Adefila Limited from wholesaler Mrs. Jumai, who will prepare the delivery note?','Mr. Aigbojie','Adefila Limited','Mr. Jumai','Mr. Aigbojie and Adefila Limited','','','c','','wassce','1990',49,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:52'),(608,'Which of the following is not a factor of production?','Capital','land','Labour','Staffing','','','d','','wassce','1990',65,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:53'),(609,'In which class of occupation would you place a taxi-driver?','Extractive','Indirect services','Personal services','Commercial services','','','d','','wassce','1990',53,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:54'),(610,'The purpose of issuing a credit note is to','correct errors of overcharging','correct errors of undercharging','write off  bad debts','encourage immediate payment','','','a','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:55'),(611,'The exchange of goods for other goods in home trade is known as','entrepot trade','home trade','barter trade','foreign trade','','','c','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:56'),(612,'Which of the following advertising media combines the advantages of sound and motion?','Radio','Neon signs','Press','Television','','','d','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:57'),(613,'Which of the following is a form of sales promotion?','Promotion through radio','Advertising by television','Distributing printed sales literature','Offering free samples to customers','','','d','','wassce','1990',70,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:58'),(614,'Efforts geared towards establishing and maintaining good image for a company is termed','human relations','professional relations','public relations','trade relations','','','c','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:58'),(615,'Which of the following is sent as a reply to an inquiry?','Tender','Estimate','Statement','Quotation','','','d','','wassce','1990',55,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:59'),(616,'Which of the following statements best describes net profit? The excess of','total revenue over total expenditure','total capital income over expenditure','sales over purchases','total capital formation over capital consumption','','','a','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:00'),(617,'A business is in existence primarily to','make profit','provide goods and services','provide employment','compete with others in business','','','a','','wassce','1990',62,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:02'),(618,'A number of shops under one roof is the feature of a','supermarket','chain store','department store','mail order business','','','c','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:04'),(619,'An agreement between two parties which will give rise to enforceable rights and obligation is known as','a warrant','a contract','a consideration','an offer','','','b','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:06'),(620,'Auctions and Tenders become binding when they are','accepted','offered','received','advertised','','','a','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:07'),(621,'The organized efforts of consumers to protect themselves against the unfair practices of businessmen is called','strike','consumerism','amalgamation','propaganda','','','d','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:08'),(622,'Which of the following is the most suitable means of \ttransporting bulky goods from Lagos to Kaduna? By','Train','Airplane','Ship','Lorry','','','a','','wassce','1990',55,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:09'),(623,'Which of the following is the quickest and accurate means of communication?','Telegram','Express mail','Courier services','Telex','','','d','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:10'),(624,'Which of the following is the safest means of sending a postal order from Lagos to a friend in Jos?','Special delivery','Recorded delivery','Registered letter','First class mail','','','b','','wassce','1990',45,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:11'),(625,'One of the objectives of the indigenization programme of the Federal Government of Nigeria is to','encourage the use of local raw materials','expel all foreigners from Nigeria','make Nigerian businessmen very rich','maximize local retention of profits','','','d','','wassce','1990',54,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:12'),(626,'The law which stipulates that labels should give an accurate account of a product is the','price control act','consumer credit act','trade description act','hire purchase act','','','c','','wassce','1990',45,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:13'),(627,'Which of the following is not an essential of a contract?','Offer and acceptance','Intention to create legal relations','All contracts written out','Legality of object','','','c','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:14'),(628,'One advantage of personal selling is','low cost','immediate feedback','the appeal to many people at a time','self service','','','b','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:15'),(629,'Charges paid by a ship for staying at a port beyond agreed sailing time is called','profit','interest','holding','demurrage','','','d','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:16'),(630,'Entrepot Trade refers to','importing for domestic consumption','importing for industrial use','importing for government concerns','importing for re-export','','','d','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:17'),(631,'Which of the following could account for a favourable balance of payment?','High capital repayments','high debt service repayment','higher imports than exports','Higher exports than imports','','','d','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:18'),(632,'Which of the following is not part of the facilities provided by the Nigerian Ports Authority?','Dredging','Warehousing','Collection of customs duties','Loading and off-loading of cargoes','','','c','','wassce','1990',72,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:19'),(633,'The main purpose of branding is to','increase the quantity of goods demanded','differentiate goods from other similar goods made by other producers','increase the selling price of goods','enhance turnover of goods','','','b','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:20'),(634,'An individual who makes the final use of goods and services provided by a firm is the','manufacturer','wholesaler','consumer','retailer','','','c','','wassce','1990',57,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:21'),(635,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','cartel','trust','holding company','consortium','','','a','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:22'),(636,'When a business is insolvent it may result in','incorporation','recuperation','liquidation','restoration','','','c','','wassce','1990',43,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:23'),(637,'In insurance the term Uberrimaefidei stands for','utmost good faith','subrogation','insurable interest','indemnity against loss','','','a','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:24'),(638,'Fidelity guarantee is an insurance cover against loss arising from','trade debts','personal accidents','dishonest staff','fire disaster','','','c','','wassce','1990',54,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:25'),(639,'Which of the following is a type of marine insurance?','Endowment','Freight','Accident','Fidelity','','','b','','wassce','1990',50,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:26'),(640,'The word Ltd written after the name of a company means that','the individual member’s capital is limited','the total sum of the company’s capital is limited','members are liable to the extent of their holding','company’s location is limited','','','c','','wassce','1990',56,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:27'),(641,'Which of the following is a public corporation? The','Nigeria Breweries Limited','Nigerian Ports Authority','Lagos Chamber of Commerce','Nigerian Bottling Company','','','b','','wassce','1990',64,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:28'),(642,'Which of the following is not required in a Memorandum of Association? The','name of the company','location of the company','names of the Board of Directors','limitation of member’s liability','','','c','','wassce','1990',55,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:29'),(643,'The amount paid by the insurance company to the insured upon giving up his policy is called','Surrender value','cash bonus','assured sum','dividend','','','a','','wassce','1990',46,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:30'),(644,'The amount paid by the assured to the insurer is called','interest','premium','dividend','indemnity','','','b','','wassce','1990',59,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:31'),(645,'With the exception of life assurance and personal accident insurance, contracts of insurance are contracts of','premium','indemnity','proximate cause','utmost good faith','','','b','','wassce','1990',57,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:32'),(646,'An author’s exclusive right to published and unpublished works is known as','patent right','fundamental human right','copyright','authorship','','','c','','wassce','1990',54,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:34'),(647,'The cost which is incurred as a result of failure to load or unload a ship at the ports within a specified period is referred to as','demurrage charges','premium charges','trade charges','excess charges','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:47','2020-07-14 13:00:35'),(648,'The process whereby a firm directs its marketing efforts towards a single market by the use of a particular marketing mix is referred to as','concentration segmentation','marketing concept','consumer orientation','market penetration','','','d','','utme','2016',68,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:36'),(649,'The function of money that is mostly affected by inflation is','store of value','medium of exchange','measure of value','unit of account','','','a','','utme','2016',71,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:37'),(650,'Ordinary warehouse is usually owned and used by','government','agents','retailers','wholesalers','','','d','','utme','2016',68,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:38'),(651,'The winding up of a firm by a resolution of its shareholders is an example of','voluntary liquidation','bankruptcy','recession','involuntary liquidation.','','','a','','utme','2016',54,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:39'),(652,'Which of the following is used for temporary storage of data on a computer?','RAM.','ROM.','floppy disk.','flash disk.','','','a','','utme','2016',70,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:56'),(653,'An advantage of the Second-Tier Securities Market to an economy is in','creating avenues for investment','regulating competition amongst companies','granting financial assistance to consumers','increasing companies profit margins-.','','','a','','utme','2016',72,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:57'),(654,'The  lumbering of trees by a furniture company is an example of','primary production','secondary production','tertiary production','Indirect production','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:58'),(655,'Which of the following types of occupation involves services that can be referred to as auxiliaries’ trade?','Constructive occupation','Manufacturing occupation.','Industrial occupation.','Commercial occupation','','','d','','utme','2016',73,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:59'),(656,'The transformation of cotton into clothing is an example of','secondary production','tertiary production','primary production','direct production','','','a','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:00'),(657,'A basic concept of advertising that reveals the essential message an advertiser wishes to communicate is referred to as the','medium','theme','target','reach','','','a','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:01'),(658,'The type of wholesaler that combines selling, delivery and collection in one operation is','specialist   wholesaler','rack jobber','drop shipment','truck. wholesaler','','','a','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:02'),(659,'Given: - [Index of export price] / [Index of import price]  x 100  The formula can be used to determine the','terms of payment','balance of payments','terms of trade','import tariffs.','','','c','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:03'),(660,'Commission on turnover is usually a benefit accruable to the','drawer','drawee','payer','payee','','','d','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:04'),(661,'Avast is an example of','a web browser','a search engine','an antivirus','a spread sheet','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:05'),(662,'The component of balance of payments which shows how the balance of both current and capital accounts are settled is \t\t\tknown as','current account','monetary movement account','capital account.','social welfare account','','','b','','utme','2016',62,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:06'),(663,'The act of interpreting ideas within an organization is','motivating','organizing','planning .','communicating','','','d','','utme','2016',55,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:07'),(664,'One of the duties of the employer to his employee is to','delegate his duties to other staff','charge the employee on the use of equipment','serve faithfully and honestly','provide job security.','','','d','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:08'),(665,'The buying and selling of goods and services is referred, to as','trading','marketing','insurance','advertising','','','a','','utme','2016',66,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:09'),(666,'A document that serves as an instrument for preferential tariff is referred to as','an indent','a certificate of origin','a consular invoice','an advice note.','','','b','','utme','2016',64,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:10'),(667,'Funds used for paying wages, salaries and payments for raw materials are categorized under','liquid capital','circulating capital','fixed capital','nominal capital.','','','b','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:11'),(668,'A formal letter to a dealer to enquire details about certain items for sale is referred to as','an inquiry','an invoice','an order','a quotation','','','a','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:12'),(669,'The pricing policy that seeks ,to set .prices relatively high in order to attract the wealthy segment of the market is','target return pricing','market skimming','variable pricing.','market penetration','','','b','','utme','2016',75,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:13'),(670,'In the transportation industry, dead freight is used to describe the','cost paid for an empty space left in the ship','charge for each day a performance was delayed','persons that hire a ship for a specific purpose.','cost of shipping a particular cargo for a specific voyage','','','a','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:14'),(671,'When expenses on trading are deducted, the result is the','rate of turn over','net profit','gross profit','cost of goods sold.','','','b','','utme','2016',88,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:15'),(672,'A supplier of flour who intends to sign a contract with a baker \tthrough post can establish a binding agreement only','after the offeror has made an offer.','when the offeror’s letter has reached the offeree.','when the. Offeree’s letter has been posted.','after the offeree’s letter has been received by the offeror.','','','d','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:16'),(673,'Which of the following is a modern trend in retailing?','Kiosk','Mobile shop','Vending machine.','Tied shop','','','c','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:17'),(674,'Which of the following is a traditional medium of communication used to mark festivals?','Palm frond.','Metal gong.','Talking drum.','Gun blast.','','','c','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:18'),(675,'One of the functions of the retailer is','granting credit facilities to close relatives','provision of after-sales services','branding and packaging of goods.','warehousing of goods.','','','b','','utme','2016',63,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:19'),(676,'One of the factors of determining the volume of production is','availability of forex','availability of storage facilities.','the location of the business.','the number of skilled manpower.','','','b','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:20'),(677,'Which of the following is the best method for computing working capital?','Total assets less current liabilities.','Current liabilities less current assets.','Fixed liabilities less current assets.','Current assets less current liabilities.','','','a','','utme','2016',64,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:21'),(678,'The minimum lending rate of a bank is a component of its','current assets','debit balance.','credit balance.','fixed assets.','','','a','','utme','2016',57,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:28'),(679,'One of the functions of the Nigerian Ports Authority is that it','gives preferential treatment to Nigerian investors','provides credit facilities to importers.','encourages the growth of infant industries.','provides warehousing facilities at the docks.','','','d','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:29'),(680,'An ancillary to trade which promotes socio-cultural development all over the world is','transportation','communication','tourism.','insurance.','','','c','','utme','2016',75,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:30'),(681,'An association that acts as a watchdog between  entrepreneurs and government to protect trade from any unfavourable laws is said','cartel','syndicate','Chamber of Commerce','Nigeria Bar Association.','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:32'),(682,'Labour as an input in production can be motivated by','training','profit.','remuneration.','promotion','','','c','','utme','2016',64,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:32'),(683,'Discharging certain duties by an organization to the public to gain high patronage is a concern of financial responsibility','economic responsibility.','legal responsibility.','financial responsibility.','social responsibility.','','','d','','utme','2016',66,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:33'),(684,'Complying with the rules relating to the conduct of business activities in a country is an aspect of','cultural environment.','demographic environment.','legal environment','politician environment','','','c','','utme','2016',61,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:34'),(685,'Which of the following is NOT backed by gold but by government securities?','Fiduciary note.','Fiat money.','Token money.','Commodity money.','','','a','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:36'),(686,'Which of the following is a legal tender?','Cheque.','Traveller’scheque.','Bank note','Goldsmith receipt.','','','c','','utme','2016',56,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:37'),(687,'Where a manufacturer collects money from wholesalers in exchange for goods produced is referred to as','charge account.','trading checks.','trade credit.','I owe you.','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:38'),(688,'Quantity discount is offered mainly to persuade the buyer to','defer payment.','make prompt purchases.','make advance payment.','purchase more','','','b','','utme','2016',80,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:39'),(689,'The placement of workers based on their qualifications can be categorized under','public sector','skilled labour','private sector.','unskilled labour','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:40'),(690,'A group of computers that exchange data is referred to as','an information bank.','a network.','a database.','an intranet site.','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:41'),(691,'The form of credit sales common to low income groups is','hire purchase','club trading','book-me-down.','credit trading.','','','a','','utme','2016',67,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:42'),(692,'Petrol voucher is an example of a','bank draft.','legal tender.','token money','partial money.','','','d','','utme','2016',56,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:43'),(693,'One of the major reasons for merger is to','reduce the number of unskilled manpower','increase the number of skilled manpower.','prevent liquidation.','liberalize the market.','','','c','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:44'),(694,'A major function of commerce is to','facilitate human satisfaction through exchange','eliminate trade barriers','provide raw materials for manufacturers','influence government policies','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:46'),(695,'The major factors that facilitate merchandising are','communication, advertising and banking','trading, warehousing and production','management, insurance and advertising','banking, insurance and transportation.','','','d','','utme','2000',49,'Admin','2016-11-14 21:29:41','2020-07-14 13:01:46'),(696,'Production involves','making goods available where and when needed','changing the form of goods, moving and making them available as needed','the manufacturing of goods and provision of services','the assembling of all necessary parts to produce a finished product.','','','b','','utme','2000',52,'Admin','2016-11-14 21:29:44','2020-07-14 13:01:47'),(697,'The application of division of labour should generally bring about','increase in the quantity of goods and services','increase in the variety of goods and services','cheapness of goods and services','cost efficiency in the production of goods and services.','','','a','','utme','2000',54,'Admin','2016-11-14 21:29:44','2020-07-14 13:01:48'),(698,'The term Plc implies that the shares are available','to the public at the company','privately on the stock exchange','publicly on the stock exchange','publicly in commercial banks.','','','c','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:49'),(699,'Which of these is both merit and demerit in partnership?','The number of partners','Its unlimited nature','The bearing of risk','The withdrawal of a major partner.','','','a','','utme','2000',70,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:51'),(700,'The measure of independence available to the individual business units that come together is the main difference between','vertical and horizontal, integration','mergers and acquisitions','consortium and amalgamation','trust and cartel.','','','b','','utme','2000',52,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:52'),(701,'Government policies relating to the establishment and operations of businesses are targeted at','increasing the profits of business owners','the general improvement of the economy','even spread of facilities and employment','diversification and expansion of businesses.','','','b','','utme','2000',55,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:53'),(702,'On liquidation of a public limited liability company, the residual owners are the','creditors','ordinary   shareholders','preference shareholders','debenture holders.','','','b','','utme','2000',51,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:53'),(703,'Bank overdraft as a short term source of fund is','an overdrawn account','granted to a newly opened account','repayable after more than a year','a current liability.','','','d','','utme','2000',73,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:55'),(704,'The share capital value that forms part of the balance sheet total is the','paid-up share capital','called-up share capital','authorized share capital','issued share capital.','','','a','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:55'),(705,'The main factors militating against the rapid growth of trade in Nigeria are','inadequate transportation network and huge capital outlay','lack of motivation and government attitude towards trade','lack of good transportation network and insecurity of investments','huge capital outlay and government attitude to trade.','','','a','','utme','2000',66,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:56'),(706,'The current trends in retailing competition in Nigeria are','advertising and sales promotion strategies','branding, enterprising and differentiation of goods and services','self-service, after-sales services and branding strategies','after-sales services and sales promotion strategies.','','','a','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:57'),(707,'The function of a merchant wholesaler is to','buy in bulk, store and sell to retailers as desired','possess title to the goods, store and sell to retailers','bring buyers and sellers together','find markets for producers’ finished goods.','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:58'),(708,'An invoice can be described as a','contractual agreement for the sale of goods','document specifying quantity, description, prices and total value of purchases','receipt containing necessary information about the goods','letter specifying the contractual sales of goods between two parties.','','','b','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:59'),(709,'Ocean liners are subdivided into','passenger liners and cargo liners','coastal liners and cargo liners','cargo liners and tramp liners','passenger liners and tramp liners.','','','a','','utme','2000',63,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:00'),(710,'Tourists with no fixed address in a town may receive their letters from the post office through a','recorded delivery','poste restante','parcel post','postmaster.','','','b','','utme','2000',70,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:01'),(711,'The insurance principle that requires full disclosure of information on the insured is known as','indemnity','uberrimaefidei','subrogation','caveat emptor.','','','b','','utme','2000',74,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:02'),(712,'Mr. Olatunde took up a fire insurance on a property valued at N 1000 and the amount insured is  N800. The property caught fire causing a loss of  N400. If the insurance was taken with the \tclause ‘with average’, what is the amount to be paid by the insurance company?','N320','N420','N460','N560.','','','a','','utme','2000',62,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:04'),(713,'The Central Bank differs from commercial banks because it','renders service to customers','carries out foreign exchange transactions','issues currencies','discounts bills.','','','c','','utme','2000',71,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:05'),(714,'A bank form used to transfer money from personal to creditor’s account is called','debit transfer form','credit transfer form','customer transfer form','bank transfer form.','','','a','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:06'),(715,'The computer using linear integrated circuit technology coupled with quantification of data in terms of length and distance is known as','digital computer','analogue computer','mainframe computer','hybrid computer.','','','a','','utme','2000',75,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:07'),(716,'A printer that burns the print image onto the photosensitive drum is called','dot matrix printer','daisy wheel printer','laser printer','thermal printer.','','','c','','utme','2000',60,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:08'),(717,'A console is a device used in','moving an indicator on the screen','communicating between operator and programme','holding magnetic tape reel','forming characters by heating sensitive ribbon.','','','a','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:09'),(718,'A form of money that has gone out of use is','paper money','bank money','commodity money','foreign money.','','','c','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:17'),(719,'The major condition for obtaining loan in thrift, credit and loans cooperative societies is','provision of collateral security','a high level of education','possession of a large business','an approved project plan.','','','a','','utme','2000',64,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:18'),(720,'The Stock Exchange helps to provide capital for industrial projects because it','determines value of shares, stocks and other securities','assists government in implementing its monetary policies','assists companies to change their securities into cash','renders agency services to organizations and governments.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:19'),(721,'A shortcoming of the Second-tier Foreign Exchange Market in Nigeria is that it','serves as a mechanism for evaluating an unrealistic exchange rate for the naira','creates unhealthy competition amongst users of foreign exchange','contributes to destabilizing national resource allocation','contributes to flooding the market with foreign essential commodities.','','','b','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:20'),(722,'The chart above represents the','product mix relationship','marketing mix relationship','promotion mix relationship','advertising mix relationship.','','','b','','utme','2000',63,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:21'),(723,'A group of specialized functions of marketing is','buying, selling, storing and information','buying, selling, advertising and packaging','buying, selling, labelling and promotion','buying, selling, skimming and pricing.','','','c','','utme','2000',76,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:22'),(724,'The type of advertising that seeks to persuade consumers to buy a particular product is','informative advertising','competitive advertising','persuasive advertising','mass and specific advertising.','','','c','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:23'),(725,'The practice whereby soft drink manufacturers give away caps, bags and other items when consumers buy their product is a \t\tform of','marketing strategy','publicity','advertising','sales promotion.','','','d','','utme','2000',76,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:24'),(726,'The most important advantage of personal selling is that it','allows sellers to perceive buyers’ needs','allows sellers to sell their goods quickly','takes place easily on the highways','takes place without the permission of government.','','','a','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:33'),(727,'The role of public relations is principally to','sustain good relationship','create good image','carry out publicity','advertise a firm’s products.','','','b','','utme','2000',61,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:34'),(728,'The basic elements of a valid contract are','offer, acceptance, consideration and witness','offer, intention, acceptance and legality','offer, acceptance, intention, capacity and legality','offer, acceptance, capacity, legality and consideration.','','','d','','utme','2000',59,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:35'),(729,'A bus driver operating between Lagos and Jos pledged the owner’s credit in Benin in order to have the engine repaired and the bill sent to the owner. This is a case of','del credere agency','agency by necessity','agency by ratification','agency by estoppel.','','','b','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:36'),(730,'After registration, a certificate of trading is usually issued to a','partnership','public company','private company','sole proprietorship.','','','b','','utme','2000',52,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:37'),(731,'An aspect of the law which allows an exclusive right for a limited number of years is a','copyright','trade mark','ratification','patent','','','d','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:38'),(732,'The first known legislation to protect consumer rights in Nigeria is the','Usury Laws','Hire Purchase Act','Sale of Goods Act','Food and Drugs Act.','','','c','','utme','2000',71,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:39'),(733,'The main difference between nationalization and indigenization is in terms of','shareholding','profit','technology','efficiency.','','','b','','utme','2000',70,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:40'),(734,'The primary objectives of a trade association is to','undertake research work on behalf of members','establish easy link with government','exchange information and negotiate as a pressure group','operate as a group against other groups.','','','c','','utme','2000',75,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:41'),(735,'A chamber of commerce is an association made up of','entrepreneurs','manufacturers','merchants','importers.','','','b','','utme','2000',72,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:42'),(736,'The composite functions of management are','planning, supervising, communicating','planning, controlling, organizing and directing','coordinating,  supervising,  staffing  and communicating','directing,  supervising, motivating and controlling.','','','b','','utme','2000',60,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:43'),(737,'The three components of staffing are','recruitment, selection and placement','recruitment, interview and appointment','recruitment, test and placement','recruitment, procurement and appointment','','','a','','utme','2000',69,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:44'),(738,'The legal aspect of business is designed to','protect business organizations and consumers','safeguard consumers from undue business practices','protect infant industries from collapse','encourage free exchanges among businesses.','','','a','','utme','2000',64,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:45'),(739,'In an organization, civic consideration arises from','the profit derived from the environment','its operations within the environment','its social negative impacts on the community','the fact that it is registered in that locality','','','b','','utme','2000',62,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:46'),(740,'The instrument establishing the Economic Community of West African States in 1975 is','a decree','an act','a treaty','constitution','','','c','','utme','2000',72,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:46'),(741,'One of the functions of the Niger Basin Commission is to','ensure equal treatment of African nations','foster closer co-operation among West African nations','map out regulations that will guide all forms of navigation','guarantee freedom of navigation for all West African nations.','','','c','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:47'),(742,'The pivot on which the wheel of commerce rotates is','tariff','trade','taxation','price.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:48'),(743,'A distinguishing characteristic of labour is that it is','constant','expensive','mobile','cheap','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:49'),(744,'Land as a factor of production does not vary in','quantity','nature','quality \t\t\t\t.','cost.','','','b','','utme','2001',93,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:50'),(745,'Which of the following services does a lawyer render?','industrial services','indirect services','direct services','commercial services.','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:51'),(746,'The partner that only contributes part of the capital used in the formation and running of a business is known as','a passive partner','an active partner','a dormant partner','a nominal partner.','','','c','','utme','2001',88,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:52'),(747,'One major advantage of a credit and thrift cooperative is that','it can approach government for a loan','it encourages saving habits','there are no legal restrictions','each member has a vote during meetings.','','','b','','utme','2001',97,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:53'),(748,'A form of ownership which exploits the strength of one partner to remedy the weaknesses of the other is a','joint partnership','cooperative','corporation','joint venture.','','','a','','utme','2001',97,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:54'),(749,'At the collapse of a business enterprise, the person appointed to dispose of the assets is called','a broker','an auctioneer','a liquidator','an auditor.','','','c','','utme','2001',96,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:55'),(750,'Entrusting the management of a company to the courts to enable the settlement of the company’s obligations is an indication of','distress','closure','bankruptcy','liquidation.','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:56'),(751,'The financial instrument for borrowing in which the collateral is usually more than the amount borrowed is','trust certificate','detachable warrant','mortgage bond','convertible securities.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:57'),(752,'I.   Personal Savings, II.   Retained Earnings, III. Accrued Taxes. Which of the items above constitute internal sources of financing for companies?','I and II','I and III','II and III','I, II and III.','','','c','','utme','2001',106,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:58'),(753,'The difference between total current assets and total current liabilities of a business is known as','quick ratio','liquidity ratio','working capital','circulating capital.','','','c','','utme','2001',99,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:59'),(754,'One of the reasons why wholesaling must continue is that','the tax paid by wholesalers on their profit enhances national revenue','by creating artificial scarcity, the wholesaler is enhancing competition in the economy','the wholesaler provides technical advice to the retailer','the gap between manufacturers and retailers is reduced by wholesalers.','','','d','','utme','2001',108,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:00'),(755,'A merchant wholesaler is referred to as','del-credere agent','a broker','rack jobber','a factor.','','','a','','utme','2001',89,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:01'),(756,'A pro-forma invoice is sent to inform a buyer about the','quantity of goods','prices of goods','designation of goods','quality of goods.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:02'),(757,'The balance of payments of countries is','a record of imports and exports','a systematic record of transactions among countries at a given time','the current and the capital accounts and their payments','the trade relationships and payments among nations.','','','a','','utme','2001',74,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:03'),(758,'The major procedures in the purchase and sale of goods are enquiry','quotation, order and invoice','placement, order and invoice','bargain, order and invoice','order, sale and invoice.','','','a','','utme','2001',86,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:04'),(759,'The trade discount receivable by Mr. Bacus is','N= 4,500','N= 7,500','N= 10,500','N= 12,000.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',89,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(760,'If  Mr. Bacus fulfils his promise, he will be entitled to a cash discount of','N= 2,760','N= 3,000','N= 6,500','N= 9,500.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(761,'Bank Giro is a method of settling debt from a','customer to a bank','bank to a customer','customer to another','bank to another.','','','a','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:06'),(762,'Warehousing is a productive function because it increases the','quantity of goods','utility of goods','quality of goods','price of goods.','','','a','','utme','2001',86,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:07'),(763,'A factor necessary for siting a warehouse is nearness to','raw materials','labour','capital','consumers.','','','d','','utme','2001',101,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:08'),(764,'Pooling of risk in insurance means that','compensations are paid out of a common fund','two people can pool their risks to be insured','two insurance companies can buy two policies','insurance companies should encourage taking risks','','','a','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:09'),(765,'The indemnification of Ama by his insurance company after a fire disaster means that he','has been guaranteed by the insurance company','will be cleared of any fault by the insurance company','has been covered by the insurance company','will be covered to the limit of the amount in the policy.','','','b','','utme','2001',109,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:10'),(766,'The major difference between insurance and assurance is that while insurance','takes care of uncertainty, assurance takes care of risks','takes care of risks, assurance takes care  uncertainty','hinges on probabilities, assurance is based on possibilities','is about indemnity assurance is about life in the future.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:11'),(767,'A documentary bill will normally be accompanied by','sales invoice, bill of lading and insurance certificate','clean bill, bill of lading and insurance certificate','bill of lading, consular invoice and insurance certificate','consular invoice, FOB certificate and bill of  lading.','','','d','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:12'),(768,'Which of the following best describes the classification of computers?','Mini-computer, speed and size','Micro-computer, cost and abilities','Mini-computer, micro-computer and work station','Mini-computer, hybrid and digit','','','c','','utme','2001',103,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:13'),(769,'The temporary working area of the central processing unit is called the','C-D ROM','C-D RAM','ROM','RAM.','','','b','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:14'),(770,'The significance of money to modern economic systems is that it','is used as a means payment','promotes specialization and exchange','measures value and promotes exchange','causes inflation and deflation in the economy','','','c','','utme','2001',76,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:15'),(771,'One major characteristic of credit unions and thrift societies is that','the legal processes involved in their formation are rigid','membership compulsory to people in the same line of  business','the contribution of every member depends the member’s ability','a minimum of ten people in the same line of business can form the union','','','c','','utme','2001',103,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:16'),(772,'The Nigerian Stock Exchange publishes a daily official list that gives full information on the','method of transactions agreed to by members','number of participating members in a day','changes in the prices and earnings of security','changes in the official rules set by the man','','','c','','utme','2001',88,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:17'),(773,'The main factors that determine the value stock on the Stock Exchange are dividend an','the psychology of the market','capital gain','capital appreciation','warrant payment','','','c','','utme','2001',104,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:18'),(774,'One of the main objectives of the Second- tier Securities Market in Nigeria is to','achieve a realistic exchange rate for the naira','eliminate currency  dealings in the black market','assist companies to raise capital','attract investment flow.','','','d','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:19'),(775,'The activities aimed at finding out customers’ needs and satisfaction can be described as','socio-marketing','macro-marketing','micro-marketing','conceptual marketing.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:20'),(776,'The most effective type of advertising for branded products is','direct advertising','indirect advertising','informative advertising','competitive advertising.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:21'),(777,'Which of these companies are more engaged in public relations activities?','I and II','I and III','II and IV','Ill and IV.','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','b','','utme','2001',99,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:22'),(778,'Which of these companies offers after-sales services?','IV','Ill','II','I','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','c','','utme','2001',81,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:23'),(779,'Who are the parties to the contract of renting the room?','Musa and Jacob','Musa and Audu','Adamu and Musa','Audu and Jocob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',99,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:24'),(780,'Who is the offeree in this contract?','Musa','Audu','Adamu','Jacob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',95,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:36'),(781,'The maximum number of shareholders in a public liability company is','twenty','fifty','one hundred','unlimited.','','','d','','utme','2001',86,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:45'),(782,'One way by which government reduces the repatriation of capital   is through','nationalization','divestiture','indigenization','naturalization.','','','c','','utme','2001',85,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:46'),(783,'One of the major functions of a chamber of commerce is to','promote and protect trade, industry and agriculture','advise members on regulations of other countries','settle disputes that arise out of trade','publish books and periodicals desired by members.','','','a','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:47'),(784,'Departmentalization is an aspect of','planning','organizing','directing','controlling.','','','b','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:53'),(785,'A functional organizational structure is where','staff performing the same functions are grouped together','departments performing similar functions are grouped together','activities of similar nature are-grouped together','staff performing similar functions are grouped together.','','','c','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:55'),(786,'In the line type of organizational structure','the lines of authority are vertical','there is the application of division of labour','specialization is carried to a maximum degree','the lines of authority are horizontal.','','','c','','utme','2001',76,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:56'),(787,'Proper disposal of waste by business firms is one way of discharging their','responsibility to government','environmental responsibility','community responsibility','responsibility to customers.','','','b','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:57'),(788,'One of the obstacles  to achieving the objectives of ECOWAS is','lack of a common currency','colonial linkages','sovereignty of states','language differences.','','','d','','utme','2001',100,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:58'),(789,'One of the main objectives of establishing the Niger River Basin Commission was to','embark on a comprehensive survey of the available water resources','carry out research for the development of fresh water fisheries','develop infrastructure to facilitate economic activities','promote trade among member-states to improve standards of living.','','','c','','utme','2001',84,'Admin','2016-11-15 07:01:50','2020-07-14 13:03:59'),(790,'The most important factor that delayed the development of commerce in Nigeria was','the inefficient means of communication','that there were few entrepreneurs','the unavailability of infrastructure facilities','that there were few developed markets.','','','c','','utme','2002',125,'Admin','2016-11-15 07:26:05','2020-07-14 13:04:00'),(791,'Secondary production has to do with changing the','shape of raw materials through construction operations','physical form of raw materials into finished goods','utility of raw materials by an engineering process','nature of raw materials through manufacturing processes.','','','b','','utme','2002',134,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:01'),(792,'The major responsibility of an entrepreneur is','employing all factors of production in the business','coordinating and determining the proportion of what to produce','planning and organizing all activities in the business','directing and controlling all the affairs of the business.','','','a','','utme','2002',123,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:02'),(793,'Which of the following best describes the scope of commerce?','All forms of commercial exchanges and the manufacturing industry','Buying and selling and the construction industry','All occupational exchanges relating to industries and commercial activities','Buying and selling as well as the extraction of natural resources.','','','c','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:03'),(794,'Capital as a factor of production can be used as','money that is regarded as asset','goods that are useful in business','input for further production','services that provide satisfaction','','','c','','utme','2002',135,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:04'),(795,'The agency that currently oversees the privatization and commercialization processes in Nigeria is the','Securities and Exchange Commission','Technical Committee on Privatization and Commercialization','Nigerian Stock Exchange','Bureau of Public Enterprises.','','','d','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:05'),(796,'Okeze contracted to sell TV sets to Ojo. Unknown to them, the sets were stolen in transit.   This contract may be terminated on the grounds of','bankruptcy','frustration','fraudulence','breach of contract.','','','b','','utme','2002',121,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:05'),(797,'Which of the following countries are members the Lake Chad Basin Commission?','Niger and Cameroun','Benin and Niger','Chad and Benin','Nigeria and Mali.','','','a','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:06'),(798,'A core investor in the current phase of privatization in Nigeria is one who','can afford to buy most the shares of the enterprises','will be at the core of the enterprises','can mobilize foreign currency equivalent to the value of the enterprises','has the technical know-how of the enterprises','','','a','','utme','2002',128,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:07'),(799,'The agency in Nigeria which ensures that products conform to government quality specifications is the','Standards Organization of Nigeria','Nigerian Consumers’ Association','Manufacturers’ Association of Nigeria','Nigerian Chamber of Commerce.','','','a','','utme','2002',124,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:08'),(800,'Awarding scholarships and sponsoring sports by a business organization are examples of','advertising strategy','economic responsibility','marketing strategy','social responsibility','','','c','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:09'),(801,'The commercialization of public enterprises aimed at','increasing efficiency and making the enterprises self-sufficient','advertising a promoting the goods and services of the enterprises','increased assistance and patronage of the enterprises by the public','selling the goods and services of the enterprises.','','','a','','utme','2002',132,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:10'),(802,'An author’s exclusive right to his published an unpublished works is known as','authors right','constitutional right','patent right','copyright','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:11'),(803,'Under the endowment policy, the money handed over to the insured at the expiration of the stipulated time or at death is the','indemnity','surrender value','lump sum benefit','insurance premium','','','c','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:12'),(804,'The machine used for sending telex messages is known as a','radar','fax machine','Dictaphone','teleprinter.','','','b','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:13'),(805,'Which of these insurance principles requires a close connection between the actual loss suffered and the risk insured','Indemnity','Proximate cause','Contribution','Subrogation.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:14'),(806,'The unit through which results of a processed data are displayed is the','logic unit','display unit','control unit','output unit.','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:15'),(807,'Which of the following is used to inform the addressee that a registered parcel is ready for collection?','Express label','Counterfoil','Telegram','Slip.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:16'),(808,'The type of computer commonly found in offices is','laptop','desktop','the hybrid computer','the mainframe computer.','','','c','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:17'),(809,'The mode of transporting crude oil to the ports for export purposes is by','tanker','rail','road','pipeline.','','','d','','utme','2002',129,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:17'),(810,'The temporary insurance certificate issued to the insured before drawing up a policy is a','cover  note','testimonial','time policy','proposal  form.','','','a','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:18'),(811,'The bulls and bears in the Stock Exchange market help to minimize','the number of shares and bonds sold','price increases of securities','fluctuations in the prices of securities','the elasticity of the prices of securities.','','','a','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:19'),(812,'Debentures differ from shares in that','they are secured on the company’s assets','ownership is open to the public','they form part of the capital of the business','rewards are usually paid out of profits.','','','c','','utme','2002',125,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:26'),(813,'The Stock Exchange is a market where','long-term securities are sold','all types of securities are sold','short-term securities are sold','medium-term securities are sold.','','','b','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:27'),(814,'A retail cooperative society aims at','hoarding manufactured goods','cutting off the profit of middlemen','lending money to members at low interest rates','encouraging members to save money.','','','b','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:28'),(815,'A bill of exchange already accepted can be discounted by the holder in','the central bank','at least two banks','his bank','any bank.','','','d','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:29'),(816,'The document issued by the seller which gives details of the goods he sells is known as','catalogue','tender','price list','invoice','','','d','','utme','2002',120,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:30'),(817,'Given:  I.Retail; II.Export; III.Transport; IV.Import; V.Insurance; VI.Banking and finance; VII. Wholesale; VIII. Communication. Which of the above are aids to trade?','I, II,  III and VIII','III, V, VI and VIII','I, II, III and VI','II, V, VI and VII','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:31'),(818,'The organizational structure that relates the positions of specialists to the line managers is called','line structure','staff structure','line and staff structure','functional structure.','','','d','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:33'),(819,'A wholesaler who possesses the tittle to the goods he sells is known as','a merchant wholesaler','a multiple wholesaler','a general wholesaler','an agent wholesaler.','','','d','','utme','2002',139,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:34'),(820,'An important principle of a good organizational structure is','ideal standard','span of control','clarity of mission','adequacy of resources.','','','b','','utme','2002',127,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:35'),(821,'A company that is registered with the Corporate Affairs Commission only without being enlisted on the Stock Exchange is a','public liability company','joint venture company','limited company','registered company.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:36'),(822,'A contract for the sale of goods involves the','producer, seller and the buyer of goods','offering of goods to customers','transfer of the title to goods for money','exchange of goods.','','','c','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:37'),(823,'The total of the share capital which a company would be allowed to issue is known as','called-up capital','paid-up capital','nominal capital','issued  capital.','','','d','','utme','2002',119,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:38'),(824,'The process of mobilizing, engaging  and maintaining workers to work for an organization is referred to as','staffing','selection','recruitment','employment.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:39'),(825,'Recognized members of the Stock Exchange who buy and sell securities on their own behalf are known as','bolls','jobbers','brokers','stags.','','','c','','utme','2002',122,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:39'),(826,'Which of the following involves foreign trade?','Supermarkets','Chain stores','Departmental stores','Commodity markets.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:40'),(827,'Which of the following is a function of employers’ association?','Undertaking research on behalf of employees','Promotion of thrift in workers','Promotion of workers’ welfare','Dissemination of information through sponsored journals.','','','c','','utme','2002',146,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:41'),(828,'Which of the following industries is normally located near the \tsource of its raw materials?','Footwear industry','Cement industry','Textile  industry','Automobile assembly.','','','b','','utme','2002',134,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:42'),(829,'One of the most important function of marketing is','encouraging research activities to meet needs','creating classes of merchants among businessmen','the extension of markets for businesses','providing finances to businesses','','','a','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:43'),(830,'Securities on which the buyers are not issued with certificates are called','authorized securities','inscribed securities','bearer securities','registered securities.','','','b','','utme','2002',131,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:44'),(831,'In product pricing, which of these elements needs more consideration than others?','the demand for the product','the demography of the buyers of the product','the economic conditions in the market','the cost of producing the product.','','','d','','utme','2002',140,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:45'),(832,'The principal objectives of the Central Bank of Nigeria can be classified broadly into','bankers’ bank, lender of last resort and issuance of currency','service, currency management and financial intermediation','banking services, foreign exchange operations and open','markets operations service, monetary policy and developmental functions.','','','a','','utme','2002',145,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:46'),(833,'The letters E and OE stand for','errors of exception','errors  and omissions expected','estimated and order error','end of error.','','','b','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:47'),(834,'An important issue for consideration in the product element of the marketing mix is the','adequate promotion of the product','channel of distribution of the product','price of the product','planning and development of the product.','','','d','','utme','2002',134,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:48'),(835,'group of companies is a collection of','subsidiaries and their holding company','firms','associates and their holding company','industries.','','','a','','utme','2002',141,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:49'),(836,'Which of the following is an example of trade associations?','European Union','National Marketing Board','Organization of African Unity','National Farmers’ Council.','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:50'),(837,'Which of the following determines the quality of goods that a retailer sells','The mode of contract of sales','The type of manufacturer','The regulations regarding sales in the area','The location of his shop.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:51'),(838,'An advantage of hire purchase to the consumer is the','economies of scale in production','possession of goods before payment','increase in turnover and profits','low interest rate chargeable.','','','b','','utme','2002',121,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:52'),(839,'The founders’ shares are usually referred to as deferred shares because the holders','are entitled to cumulative dividends','receive their dividends after other shareholders','receive   their   dividends   before   other shareholders','are not entitled to any dividends.','','','a','','utme','2002',131,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:53'),(840,'An example of a service -rendering trade association is','Nigerian Bar Association','Association of Nigerian Miners','Cocoa Farmers ’Association','Manufacturers ’Association of Nigeria.','','','a','','utme','2003',100,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:54'),(841,'An obstacle to international trade is','trade imbalance between   countries','availability of  local market','quantity and quality of labour','cost of finance','','','a','','utme','2003',77,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:55'),(842,'The right  of ownership with respect to goods or property is','right of occupancy','proxy','title','certificate of occupancy','','','c','','utme','2003',107,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:56'),(843,'The main motive of chambers of commerce and trade associations is to','assist government in achieving its objectives','protect the interest of consumers','maximize profit','protect and promote the interests of members','','','a','','utme','2003',94,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:57'),(844,'A pattern that shows the kinds of participants involved in the production, distribution and ultimate use of a product is referred to as','selection','strategy','structure','synergy','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:58'),(845,'Goods that are manufactured or acquired by the seller after the contract of sale are','specialty goods','future goods','specific goods','general goods','','','c','','utme','2003',90,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:00'),(846,'What was the amount paid by Ojo?','N382,500','N425,000','N363,375','N61,625','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','c','','utme','2003',91,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:01'),(847,'How much was the trade discount?','N42,500','N27,500','N22,500','N20,000','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','a','','utme','2003',97,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:02'),(848,'The basic function of the Nigerian Ports Authority is to','ensure that the right caliber of personnel is  employed at the ports','coordinate and regulate the activities of  shipping lines','facilitate and control the movement of goods and services into and out of the country','coordinate the activities of all the seaports in the country','','','d','','utme','2003',91,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:03'),(849,'The concept that refers to the sale, transfer or exchange of goods and services is','industry','trade','tariff','marketing','','','b','','utme','2003',98,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:04'),(850,'A guarantee given by one person or party to another in which \tthe integrity of the person is assured is','fidelity','term assurance','subrogation','indemnity','','','a','','utme','2003',85,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:05'),(851,'A firm that adapts itself to delivering the desired satisfaction more effectively and efficiently than its competitors is said to be practicing','price concept','distribution concept','product concept','marketing concept','','','d','','utme','2003',107,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:06'),(852,'The payment made periodically in respect of an insurance policy entered into is known as','bond','commission','premium','surrender value','','','c','','utme','2003',91,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:08'),(853,'An example of service rendered by NIPOST is','electronic mail','courier','telephone','mail delivery','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:09'),(854,'The focal point of marketing is','the competitor','the buyer','profit-making','sales','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:09'),(855,'The type of marine insurance which covers either damage or loss to the vessel and such as caused by it to other vessels is','hull insurance','time insurance','freight insurance','cargo insurance','','','a','','utme','2003',99,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:10'),(856,'The management function that makes the difference in intensity of behaviour is','coordinating','controlling','motivation','planning','','','c','','utme','2003',93,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:12'),(857,'One of the functions of seaports is the provision of','berthing and landing facilities','loading and off-loading facilities','control room for relaying radio messages','warehouses for storage of cargo.','','','b','','utme','2003',94,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:13'),(858,'The process of dividing tasks into jobs and departments and of delegating authority is known as','staffing','leading','directing','organizing','','','d','','utme','2003',98,'Admin','2016-11-15 10:56:25','2020-07-14 13:05:13'),(859,'Communication process involves the transmission of a message over a selected channel to the','receiver','audience','sender','encoder','','','b','','utme','2003',94,'Admin','2016-11-15 10:56:28','2020-07-14 13:05:15'),(860,'Stimulation of demand is a kind of communication in marketing which connotes','personal selling','sales promotion','advertising','merchandising','','','c','','utme','2003',88,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:16'),(861,'A functional structure is an organizational structure in which','abstract rules are applied','equity prevails','a specialist enforces his directives','there is no hierarchy.','','','c','','utme','2003',77,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:17'),(862,'Entrepreneurship mainly involves','risk-taking','initiating','skilled manpower','knowledge','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:26'),(863,'In the event of the liquidation of a company the first to be settled are','debenture holders','members  of the  board','preference shareholders','ordinary shareholders.','','','a','','utme','2003',101,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:27'),(864,'The business organization established mainly for the purpose of carrying out specific assignments for a specific duration is a','joint venture','cooperative society','partnership','company.','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:28'),(865,'Which of these factors of production is relatively fixed in supply?','Capital','Entrepreneur','Human resources','Natural resources','','','d','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:29'),(866,'The location of a business is mostly influenced by','market outlet','management decision','capital','environment','','','d','','utme','2003',134,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:30'),(867,'The evolution of commerce in Nigeria is traceable to the','period of barter economy as human needs became limitless','desire by human beings to satisfy their needs through the services of other people in the society','development of human civilizations and the desire to meet their needs','primitive stage of existence of  human beings.','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:31'),(868,'One of the requirements necessary for setting up a business is','registration','advertisement','knowledge of the business','documentation','','','c','','utme','2003',96,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:32'),(869,'The assembling of products into usable forms is known as','construction','manufacturing','formation','creation','','','b','','utme','2003',100,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:32'),(870,'The government’s policy thrust on the business environment is to','promote experts','attract investors','be self-sufficient','increase production','','','b','','utme','2003',87,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:33'),(871,'Social responsibility is the ability of an organization to','tackle the socio-economic problem of its community','meet the needs of its community','contribute to sustaining   and developing its community','operate without disrupting the very essence of the environment.','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:34'),(872,'The act of a person employing another to enter into a contract on his behalf is known as','business','sale of goods','bilateral agreement','agency','','','d','','utme','2003',92,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:35'),(873,'The ECOBANK is the initiative of','some well-meaning Nigerian shareholders','the Federal Government of  Nigeria','West African states to foster trade','the Lagos State Government to enhance capital mobilization.','','','c','','utme','2003',92,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:37'),(874,'Privatization is concerned with','equal ownership between  the public and the government','the dilution of ownership among the public','the individual ownership of companies','government ownership of companies.','','','c','','utme','2003',89,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:38'),(875,'Electronic computers differ from human beings in that they process data and minimize errors in a','faster and more accurate manner','more organized manner','faster but less accurate manner','slower but more accurate manner','','','a','','utme','2003',96,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:39'),(876,'A major benefit derivable from the privatization and commercialization of public enterprises in Nigeria is','increase in wages','employment generation','information technology','revenue generation','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:46'),(877,'The device which interprets and carries out the instructions presented to it by the computer program is known as','software','microprocessor','mouse','hard-disk','','','b','','utme','2003',96,'Admin','2016-11-15 10:56:33','2020-07-14 13:05:47'),(878,'The market structure, business conditions and financial systems in Nigeria constitute the','economic environment','political environment','cultural environment','technological environment','','','a','','utme','2003',81,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:53'),(879,'The protection of consumers against exploitation by manufacturers is to ensure','that there are varieties of products','that the right quality of goods and services is sold','increase in production capacity','increase in the level of consumer awareness.','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:54'),(880,'The most widely used computer language that focuses on solving science-oriented problems is','FORTRAN','BASIC','ADA','COBOL','','','a','','utme','2003',111,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:55'),(881,'Banks are engaged in the business of buying and selling of','bills of exchange','instruments of credit','intangible products','land','','','a','','utme','2003',97,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:56'),(882,'A source of short-term finance to companies is','share capital','debentures','retained earnings','corporate tax','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:57'),(883,'The body charged with the responsibility to register shares for subscription on the stock market in Nigeria is the','Securities and Exchange Commission','Nigerian Stock Exchange','Nigerian Deposit Insurance Company','Central Bank of Nigeria,','','','a','','utme','2003',92,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:58'),(884,'An essential factor for evaluating the different sources of funds for a business is the','decree establishing the business','ownership structure of the business concern','size and the type of the business','burden of cost and repayment','','','b','','utme','2003',84,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:59'),(885,'Money can simply be referred to as a','medium of exchange','means for the settlement of debts','durable asset for doing business','stands of value','','','a','','utme','2003',104,'Admin','2016-11-15 10:56:34','2020-07-14 13:06:00'),(886,'A type of  long-term loan granted to companies with fixed interest as well as with redeemable and irredeemable features is referred to as','a debenture','a bond','a term loan','an overdraft','','','a','','utme','2003',102,'Admin','2016-11-15 10:56:34','2020-07-14 13:06:01'),(887,'Public debt management is one of the functions of a','merchant bank','central bank','commercial bank','development bank.','','','b','','utme','2003',202,'Admin','2016-11-15 10:56:38','2020-07-14 13:06:02');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `crk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=696 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `crk` VALUES (1,'In Jesus’ teaching on the mount, the only justifiable reason for divorce is ','indolence ','insubordination ',' infidelity ','infertility','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:54'),(2,'According to John’s Gospel, Lazarus was from: ','Jerusalem  ','Teberias ','Bethany ','Galilee','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:55'),(3,'Jesus’ new commandment according to the Gospel of Jesus of John is ','salvation ','love ','peace ','spirit','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:56'),(4,'The thief as described by Jesus comes to ','destroy, kill and steal ','destroy, steal and kill ','kill, destroy and kill ','steal, kill and destroy ','','','d','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:57'),(5,'The agony of Jesus in the Garden of Gethsemane is a ','sign of abandonment ','manifestation of human weakness ','punishment ','preparation for his death','','','d','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:58'),(6,'Eutychus fell from the third storey to the ground when Paul  prolonged his sermon at ','Troas ','Ephesus ','Miletus ','Corinth.','','','a','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:59'),(7,'Charismatic leaders in the Book of Judges arose in Israel to ','revive faith in Yahweh ','rally the tribe together ','lead the Israel to battles ','settle dispute','','','c','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:01'),(8,'What did God create on the fifth day? ','the firmament  ','the two great light ','water under the heaven ','living Creature','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(9,'Joshua and Caleb were from the tribe of ','Judah and Rueben ','Reuben and Dan ','Ephraim and Reuben ','Judah and Ephraim','','','d','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:03'),(10,'Manahem, the son of Gadi reigned over Israel for ','eight years ','twenty years ','six month ','ten years.','','','d','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:04'),(11,'The death of Adonibezek in Bezek was a typical proof of ','cowardice ','nemesis ','insanity ','absurdity','','','b','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:05'),(12,'In order that Benjamin might be brought to Egypt, Joseph  ','Reuben ','Judah ','Simon ','Zebulon','','','c','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:06'),(13,'When Paul came to Rome, the first set of people to whom he preached were the ','Romans ','Jews ','Greeks ','Samaritans.','','','b','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:07'),(14,'The three sons of Noah Sdhem, Ham and ','Lot ','Hirah ','Cain ','Japeth.','','','d','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:07'),(15,'The renowned interpreters of the Mosaic Law in the time of Jesus were the ','Sadducees ','Scribes ','Herodians ','Pharisees','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:08'),(16,'The mother of Esau is ','Ruth ','Ester ','Rebecca ','Jezebel  ','','','c','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:09'),(17,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) Who was the speaker? ','Joseph ','Jacob ','Job ','James','','','b','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:10'),(18,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29)  When did he say this? ','When he was about to die ','When he was seriously sick ','When he offended God ','When his brother cheated him','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:11'),(19,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) What was his wish? ','he wanted to buried at Canaan in the cave at Ephron ','he wanted to be buried at Jericho ','he wanted to commune with his ancestors ','he wanted to be closed to his fathers.','','','a','','post-utme','2006',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:12'),(20,'Who was authorized by God to go and liberate the Israelites the Egyptian bondage? ','Joshua ','Daniel ','Solomon ','Moses.','','','d','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:13'),(21,'The names of the two kings of Jericho destroyed by the Israelites during the conquest were ','Adonija and Haggith ','Shion and Og ','Zadok and Benaiah ','Hiram and Jeroboam.','','','b','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:14'),(22,'Who is an atheist? ','someone who does believe in God ','someone who rejects completely the idea of a divine being ','someone who believes that it is impossible to know if there is God or not ','someone who abuses religious people.','','','b','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:15'),(23,'What is meant by the Christian doctrine that God is Trinity? ','the idea started in Trinidad and Tobago ','God is three persons in one ','God is omnipotent ','God is the Holy Spirit','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:16'),(24,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus                              ','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:17'),(25,'The person who the Bible calls the son of consolation is ','Barsabas ','Barabbas ','Barnabas ','Bathsheba','','','c','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:18'),(26,'Who do people say the son of man is? Jesus asks this question to know people’s ','desires ','demand  ','mind ','opinion','','','c','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(27,'In Peter’s teaching,” God…………..the proud and gives grace to the humble','receives ','relegates ','resists ','restores.','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:20'),(28,'The lesson which Jesus teaches in the parable of the Good Samaritan is that your neighbor is','only your friend  ','your next of kin  ','a distant friend ','anyone who needs your  help','','','d','','post-utme','2007',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:21'),(29,'Amram and Jochebad gave birth to : ','Mirian ','Jedida ','Jethro ','Hur','','','a','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:22'),(30,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Zipporah and Pauh ','Pauh and Miriam ','Shiphrah and Zipporah ','Shiprah and Puah','','','d','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:22'),(31,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:23'),(32,'Daniel was delivered from the den of lions for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power','','','b','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:24'),(33,'Which of the following carried Judah into captivity ','Pharaoh Neco of Egypt ','Goliath of Philistia ','Assyrian ','Nebuchadnezzar of Babylon','','','d','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:25'),(34,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','slaughter of all his sons ','city of Jerusalem ','feasting of the children of Israel ','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:26'),(35,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:27'),(36,'The king of Persia who made it possible for the return of the exiles from Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:28'),(37,'The meaning of Emmanuel is ','laughter ','“for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:29'),(38,'“Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:30'),(39,'One of the following said: “the lion has roared who will not fear? The Lord has spoken, who can  but prophesy?” ','Nathan ','Jeremiah ','Amos ','Hosea','','','c','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:31'),(40,'Where did Paul cure a slave girl who had a spirit of divination ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:32'),(41,'Joshua’s first victory was over the people of ','Ai ','Gibeon ','Gilgal ','Jericho','','','d','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:33'),(42,'Josiah’s reign was popular because of his ','allies ','victory ','violence ','reforms','','','d','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:34'),(43,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:35'),(44,'Who baptized the Ethiopian Eunuch? ','Paul ','peter ','Philip ','Rufus','','','c','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:36'),(45,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:36'),(46,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah.','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:38'),(47,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:38'),(48,'The person who the Bible calls the consolation is:  ','Barsabbas ','Barabbas ','Barnabs ','Bathsheba','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:39'),(49,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','Slaughter of his son ','city of Jerusalem ','feasting of hiss children of Israel','','','b','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:40'),(50,'Daniel was delivered from the den of lion for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power.','','','b','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:41'),(51,'Name three places Christian religious people look up to find the truth about the nature of God','In the sacred scripture ','In the religious leader ','In the church ','In their conscience.','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:42'),(52,'Explain why Jesus was identified as the lamb by John (Jn:1:29 ) ','lamb of God is a figurative language which describes Christ sacrificial mission in the word ','he is being compared to the Passover Lamb that would atone for the sins of all world ','Because the lamb is attentive to his owner ','it shows patience, meekness, gentleness and innocence','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:43'),(53,'Who do people say the son of man is? Jesus asks this question to know people’s ','desire ','demand ','mind ','pinion','','','c','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:44'),(54,'In Peter’s teaching,” God…………the proud and gives grace to the humble ','receives ','relegates ','resists ','restores','','','c','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:45'),(55,'The lesson, who Jesus teaches in the parable of the Good Samaritan is that your neighbor is ','only your friend ','your next of king ','a distant friend ','anyone who needs your help','','','d','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:46'),(56,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus','','','d','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(57,'Which of the following carried Judah into captivity ','pharaoh  Neco of Egypt ','Goliath of philistia ','Assyrians ','Nebuchadnezzar of Babylon','','','d','','post-utme','2008',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:48'),(58,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:49'),(59,'Amram and Jochebad gave birth to : ','Miriam ','jedida ','Jethro ','Hur','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:49'),(60,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Ziporah and Puah ','Puah and Miriam ','Shiphrah and Zipporah ','Shiphrah and Puah','','','d','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:50'),(61,'The king of Persia who made it possible for the return of the exiles form Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:16'),(62,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2008',58,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:17'),(63,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah','','','c','','post-utme','2008',58,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:18'),(64,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2008',57,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:54'),(65,'The meaning of Emmanuel is ','laughter ','for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:55'),(66,'Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:56'),(67,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:57'),(68,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:58'),(69,'One of the following said: “the lion has roared who will not fear? ','Nathan ','Jeremiah ','Amos ','Hosea','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:59'),(70,'Josiah’s reign was popular because of his ','Allies ','victory ','violence ','reforms','','','d','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:00'),(71,'Where did Paul cure a slave girl who had a spirit of divination? ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:01'),(72,'Who baptized the Ethiopian Eunuch? ','Paul ','Peter ','Philip ','Rufus','','','c','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:02'),(73,'Joshua’s first victory was over the people of ','Ai ','Gideon ','Gilgal ','Jericho ','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:03'),(74,'“There shall be neither dew nor rain this year except by my word” Who said this?','Moses ','Pharaoh ','Elijah ','Esther ','','','c','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:04'),(75,'In the case before Solomon over the deal and the living, child the mother of the dead child supported. ','Giving the living child to her opponent ','Killing the living child ','joint ownership of the living child ','king Solomon having the living child','','','b','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:04'),(76,'Before Moses died. God appointed ………. to succeed him ','Aaron ','Balaam','Joshua ','Manasseh ','','','c','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:05'),(77,'Those bitten by the serpent were treated by ','Drinking from the Red sea ','fasting for seven day ','looking at the bronze serpent ','call upon the lord ','','','c','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:06'),(78,'In order that Benjamin might be brought to Egypt, Joseph detained ','Ruben ','Levi ','Jacob ','Simoen ','','','d','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:07'),(79,'Those inspired by God to lead the tribes of Israel in battle were the ','Judges  ','Captains of Guard  ','priest  ','prophet  ','','','a','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:08'),(80,'God told Samuel that he, would punish Eli because he  ','did not correct his son’s sinful behavior ','did not offer sacrifice as the: Law ','did not warn the people of Israel to stop surfing ','Warned his sons against rape and drunkenness','','','a','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:09'),(81,'The sun stood still when ','Moses led Israel across the Red sea ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorite at Gideon ','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:10'),(82,'Who is reputed for pulling down the altar of Baal at the risk of annoying his father? ','Joseph ','Jesse ','Gideon   ','Samuel ','','','c','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:11'),(83,'In the trade treated between King Solomon and Lebanon, Solomon was to supply wheat and oil while Hiram was to supply','Grains only ','precious stories ','wheat advice ','Timber ','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:12'),(84,'Which prophet cried thus “woe is me” for lost, I am a man of unclean lips ','Hosea ','Jeremiah ','Isaiah ','Micah ','','','c','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:13'),(85,'Hosanna means  ','Ride on in majesty ','Ride on Glory ','Ride on to die ','Save me','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:14'),(86,'The conversion of Paul was made possible by','Simeon ','Zacchaccus ','the risen Lord ','Mathew ','','','c','','post-utme','2009',60,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:15'),(87,'Let his habitation be made desolate, and let there be no one to live in it’ who is being referred to here?  ','King soul ','Judas Iscariot ','Stephen ','Barnabas ','','','b','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:16'),(88,'The proconsul when Paul arrived in commit was called','Festus ','portions ','Pilate ','Gallio ','','','d','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:17'),(89,'‘Now I known that Lord has sent his angel to deliver me ……”who said this? ','Joseph ','Moses ','Paul ','Peter ','','','d','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:18'),(90,'The seven deacons were appointed by ','conduct a mission to the Gentiles','Replace the twelve ','Lead the church in Jerusalem ','Help in the distribution of food ','','','d','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:19'),(91,'What did God create on the 6th day ','The firmament ','light ','Dry land and sea ','man and living creatures ','','','d','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(92,'Joshua’s first victory was in ','Ai ','Gibeon ','Jordan ','Giligal ','','','c','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:20'),(93,'In the parable of the sower, the seeds on the good ground represent those who ','Accept and live by the world of God ','feed the poor ','Have and love riches ','Give alms in market places ','','','a','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:21'),(94,'Which prophet encouraged Jeroboam I to  revolt at the initial stage? ','Micaiah ','Jeremiah ','Nathan ','Joel ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:22'),(95,'‘This had is gone: and where shall I go’ who is being referred to here ','Isaac ','Joseph ','Peter ','Silas ','','','b','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:23'),(96,'According to Psalm 51, the sacrifice acceptable to God is','A clean hear ','Obedience ','A blemish less lamb ','A broken spirit ','','','c','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:24'),(97,'A would –be apostle who puts his hand to the plaughjsa and looks back lacks ','faith ','Kindness ','Repentance ','Total commitment ','','','d','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:25'),(98,'For which of these prophets of God did the Bible record explicitly to have abandoned an agribusiness for a call to serve God? ','Elisha ','Ezekiel ','Elijah ','Obadiah.','','','a','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:26'),(99,'Why did David spare the life of Saul at Ziph? ','he recognized Gods anointing on Saul ','Saul was also an Israelite ','He did not want blood shed ','He was Saul’s in- law','','','a','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:27'),(100,'Deborah was a judge when Israel was under the yoke of ','Moab ','Midian ','Canaan ','Philistine','','','c','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:28'),(101,'The treatment of those  bitten by fiery serpent was to ','drink from the Red sea ','look at the bronze serpent ','fast for seven days ','call upon the lord','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:29'),(102,'Which of these was detained by Joseph in order that Benjamin might be brought to Egypt ','Reuben ','Levi ','Judah ','Simon','','','d','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:30'),(103,'In the biblical account of creation, man was permitted to ','plant fruit trees for food ','water the garden ','make garment of hides and skin ','name all the creatures','','','d','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:31'),(104,'Each of these spies sent out by Moses on God’s command to report on the nature of the promised land was a ','great warrior ','wise judge ','priest ','leaders in his own tribe','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:32'),(105,'God reveal to Samuel that he was going to punish Eli because he ','did not correct his sons sinful behavior ','did not offer sacrifice as the law required ','did not warn the people of Israel to stop sinning ','warned his sons but did not punish them','','','d','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:33'),(106,'The sun stood still when ','Moses led the Israelites out of Egypt ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorites at Gideon','','','d','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:34'),(107,'When was this statement made? ‘I repent that I Made Saul king \\'','at the anointing of Saul ','When Saul failed to ray ','When Saul disobeyed God over Amalek ','When Saul finished the morning offering','','','c','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:35'),(108,'The commander of David’s army was ','Abner ','Joab ','Abiathar ','Adonijah','','','b','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:36'),(109,'That was the sin of David that involved Bathseba? ','Murder ','adultery ','dishonesty ','arrogance','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:37'),(110,'What is the meaning of Emmanuel? ','Son of Emmaus ','God is our Redeemer ','God with us ','Saviour','','','c','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:38'),(111,'What specific reply did John the Baptist give to the soldiers during his preaching ','collect no more than is appointed you ','do not begin to say to yourselves: we have Abraham as our father ','bear fruits that befit repentance ','be content with your wages','','','d','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-15 03:50:53'),(112,'Jesus taught that one should make friends quickly with one’s ','enemy ','neighbor ','master ','accuser','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:52'),(113,'The Pharisees and the Scribes accused the disciples of Jesus transgressing the tradition of the elders because they ','did not regard synagogue rules ','did not pray before meals ','ate with unwashed hands ','disobeyed the elders','','','c','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:53'),(114,'If anyone would be first, he must be last of all and servant of all. What does this saying of Jesus teach? ','endurance ','lack of ambition ','humility ','relaxation','','','c','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:53'),(115,'Which religious groups asked Jesus about payment of taxes to Ceaser? ','Pharisees and Sadducces ','Pharisees and Herodians ','Sadducces and herodians ','Herodians and Zealots','','','b','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:54'),(116,'To whom was the body of Jesus Christ given for burial after His death? ','Nicodemus the Pharisee ','Simon of Cyrene ','Simon the disciple ','Joseph of Arimathea.','','','b','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:55'),(117,'Paul was accused of apparently being a preacher of foreign divinities in Athens because he preached Jesus and the ','Cross ','Law ','resurrection ','second coming','','','c','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:56'),(118,'What specifically makes Samson a unique prophet of God? ','He was a Nazarene ','He loved honey ','He killed many at his death ','He spoke with power in riddles','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-15 03:50:53'),(119,'“It is not the sound of shouting for victory, or the sound of the cry of defeat, but the sound of singing that I hear” When was this statement made? ','at the consecration of the Israelites ','at the crossing of the Red Sea ','during the fall of Jericho ','in a strange worship of a god','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:58'),(120,'“Blessed be the Lord God of Israel is a hymn of praise by ','the virgin Mary at the Annunciation ','Zachariah at the birth of John the Baptist ','Simeon at the presentation of Jesus in the temple ','Elizabeth at the visit of Mary','','','b','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:59'),(121,'The shema emphasizes the ','unity of God ','richness of the spirit of God ','omnipotence of God ','crucial role o’ Israel in the world.','','','c','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:00'),(122,'The expression ‘dry bones’ in Ezekiel refers to ','an Israelites proverb ','the whole house of Israel ','the slain in the valley ','sinful Israelites and Judean','','','b','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:01'),(123,'What Josiah, the king of Judah, is best remembered for in Jewish history is ','His ability to destroy all the shine of Baals','His order that the bones and tombs of the prophets of God must be preserved ','His strong opposition to Pharaoh-Neco of Egypt ','His reparation of the temples of God','','','d','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:02'),(124,'After receiving an order from God, Jonah went down to…………….  ','Joppa ','Tarshish  ','Nineveh','Jerusalem ','','','b','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:03'),(125,'True religion, according to Amos’ submission, is the one in which  ','God is always appeased with sacrifices and tithes ','Foods and drinks are served as a mark of love ','Justice and righteousness flows like an endless stream  ','Feast and solemn assemblies play important roles ','','','c','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:04'),(126,'The last born of Gomer for Hoshea was ………….  ','Jezreel','Loammi ','Diblaim  ','Loruhamah ','','','b','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:05'),(127,'According to Paul in Romans, the law and the prophets bore witness to the righteousness of God but man could not be justified until he  ','Had faith in Jesus ','Saw the glory of God ','Made a serious personal effort ','submitted wholly to the law ','','','a','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:06'),(128,'One of the following was not among the religious sects in the New Testament ','The Pharisees','The Nazarenes ','The Essences   ','The Sadducees','','','c','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:06'),(129,'One of the following  is not correct about the order of creation in the Creation Stories ','the evening came before the morning ','darkness came before light','animals were created before man ','the morning came before the evening','','','d','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:07'),(130,'What was Cain’s immediate reaction to the acceptance of Abel’s offering?','He offered another sacrifice ','He was angry and his countenance fell ','He was angry with God','He was angry with Abel ','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(131,'Pick the odd out of the following characters:  ','Saul   ','David','Jonathan','Solomon','','','c','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:09'),(132,'“Talitha cumi”  means  ','Dorcas, Arise','Little girl, I say to you, arise ','Thy will be done','Jesus is coming','','','b','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:10'),(133,'Who according to James blaspheme the honourable name by which Christians are called','Non believers','Pagan rulers','Antichrists','Rich people','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:11'),(134,'Who was the last person Jesus appeared to after his resurrection according to Paul?','Mary Magdalene','Joseph of Arimathea  ','Paul','Thomas','','','c','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:12'),(135,'How many disciples of Jesus Christ were fishermen? ','two  ','three  ','four','five','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:13'),(136,'Who among the seven deacons was an evangelist who had four daughters who prophesied?  ','Stephen','Philip ','Barnabas   ','Nicholas','','','b','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:14'),(137,'“God has given your enemy into your hand this day, now, therefore, let me pin him to the earth with one stroke of the spear, and I will not strike him twice”. This statement was made to David by','Abishai ','Abner    ','Ahimelech ','David’s armour bearer','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:15'),(138,'The phrase ‘you cows of Bashan’ referred to ','Cows in the land of Bashan  ','The fat and greedy men of Israel who oppress the priest ','The fat and greedy women of Israel who oppress the poor  ','The fat rich women of Samaria who oppress the poor.','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:16'),(139,'The book of _______ mostly emphasized social justice ','Amos ','Ezekiel  ','Hoshea  ','Isaiah.','','','a','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:17'),(140,'Among the spiritual gifts, love is supreme because it ','facilitates development ','gives room for friendship ','has eternal value ','promotes understanding','','','c','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:17'),(141,'John the Baptist describes Jesus to his two disciples as the ','beloved Son of God ','great one of Israel ','holy one of God','lamb of God.','','','d','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:18'),(142,'Joseph’s brothers hated him the more because ','he dreamed about his future dominion over his family members ','he used to give his father evil reports about them ','his father had him at his old age ','his father made a special robe for him','','','a','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:19'),(143,'After eating the forbidden fruit Adam’s and Eve’s eyes opened and they realized that they ','had sinned against God','had disobeyed God   ','were naked  ','had been deceived by the serpent.','','','c','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:20'),(144,'What did Ahab do to Prophet Micaiah for speaking the truth about the war between Israel and Syria? ','he promoted him ','he gave him a gift ','he denied him any fox ','he imprisoned him.','','','d','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:21'),(145,'The Amalekites who opposed the Israelites in the wilderness were from the lineage of  ','Benjamin ','Jacob ','Esau ','Reuben','','','c','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:22'),(146,'During the period of three and a half years of drought in Israel, the man who hid one hundred prophets of God in a cave was  ','Isaiah  ','Lisha ','Elijah ','Obadiah','','','d','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:23'),(147,'During his first missionary journey, Paul first recorded sermon was delivered at  ','Perga   ','Iconium ','Antioch','Lystra ','','','c','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:24'),(148,'In his second letter to the Christians in Thessalonians, Paul admonished them to have nothing to do with anyone who refused to obey what he wrote in the letter. What did Paul think would happen to the person?  ','The person would be encouraged  ','The person would be ashamed  ','The person would be disturbed  ','The person would repent','','','b','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:25'),(149,'In the Sermon on the Mount, the meek are blessed because  ','They shall see God  ','They shall be exalted  ','They shall inherit the earth  ','They shall be called sons of God ','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:26'),(150,'Which of the following is not a natural miracle:  ','Stilling of the storm  ','Walking on the sea  ','Raising of Lazarus from the dead  ','Feeding the five thousand','','','d','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:27'),(151,'The prophet whose message was primarily on social justice and true religion is  ','Isaiah  ','Agabus  ','Amos  ','Jeremiah','','','d','','post-utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:28'),(152,'The prophet who prophesied that Paul would be arrested in Jerusalem is  ','Isaiah  ','Agabus  ','Philip  ','Stephen  ','','','b','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:28'),(153,'One of the lessons one can derive from the story of Deborah the Prophetess is that  ','Women are not good warriors  ','Women should not be allowed to take leadership roles  ','Women’s rights should be fought for by all ','God can use anyone regardless of their gender and tribes.','','','b','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:29'),(154,'One of the following is not among the reasons why Jesus taught in Parables  ','to fulfill the prophecy in Psalm 78:2  ','to create understanding  ','to make people learn the unknown through the known  ','to show the omniscient power of Jesus','','','b','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:30'),(155,'The disciple in Damascus who prayed for Saul (Paul) to receive his sight after his conversions was  ','Ananias ','Sapphira  ','Barnabas  ','Thomas ','','','a','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:31'),(156,'According to James, one of the causes of wars among Christians is ','their passions  ','their wickedness  ','their faith without work  ','their pride','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:32'),(157,'One of the following was not among the decisions reached at the Council of Jerusalem concerning the Gentiles who became Christians:  ','That Gentiles should obtain from what has been sacrificed to idols  ','The Gentiles should abstain from blood  ','That Gentiles should abstain from what is strangled ','That Gentiles should abstain from love of the world ','','','d','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:33'),(158,'“Thy glory, O Israel upon thy high places! How are the mighty fallen! Tell it not in the streets of Ashkelon… How  are the mighty fallen in the midst of the battle!” The above dirge was written by David when  ','He killed Goliath  ','Uriah the Hittite died  ','Saul and Jonathan died  ','Abner was killed by Joab','','','c','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:34'),(159,'Who was one of the Seven Deacons who had four daughters who were prophetesses?  ','Nicolaus  ','Stephen  ','Prochorus  ','Philip ','','','d','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:35'),(160,'According to the Letter to the Hebrews, why should Christians lay aside every weight and sin which clings so closely?  ','Sin is contagious  ','Christian can easily be influenced by sinners  ','Christians are surrounded by so great a cloud of witness  ','No sinner will inherit the kingdom of God ','','','c','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:36'),(161,'“To obey is better than sacrifice” came from  ','Prophet Daniel  ','Prophet Ezekiel  ','Prophet Elijah  ','Prophet Samuel ','','','d','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:37'),(162,'The three sons of Saul who lost their live on Mount Gilboa were  ','Jonathan, Ishbosheth and Abinadab  ','Abinadab, Jonathan and Ishbosheth  ','Jonathan, Abinadab and Malchisua  ','Ishbosheth, Malchishau and Abinadab','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:38'),(163,'The original name of Shadrach was  ','Daniel  ','Mishael  ','Hananiah  ','Azariah','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:39'),(164,'The person who was invited to nurse Moses was ','Jochebed  ','Puah  ','Shiphrah  ','Miriam ','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:39'),(165,'“… But let judgment run down as waters, and righteousness as a mighty stream… “Fairness, judgment and righteousness were set aside during the time of  ________ for burnt and meat offerings.','Amos  ','Hosea  ','Ezekiel  ','Hezekiah ','','','a','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:41'),(166,'Eli’s inability to discipline his sons led to all the following except  ','God’s curse on his family  ','the extension of his life span  ','the cancellation of priesthood from his lineage','the death of his sons','','','b','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:42'),(167,'Who was the King of Judah who witnessed the second deportation?  ','Gedaliah  ','Jehoiachin  ','Zedekiah ','Jehoiakim','','','c','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:42'),(168,'Paul, the apostle to the gentile, was a native of  ','Perga in Pamphylis  ','Rome  ','Jerusalem  ','Tarsus ','','','b','','post-utme','2012',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:43'),(169,'In the Sermon on the Mount, Jesus taught his disciples that whenever they faced persecution, they should  ','be more serious with their drive for souls ','be rejoiced and be exceedingly glad  ','withdraw and  be less active  ','resist persecution and fight for their rights  ','','','b','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:44'),(170,'According to Peter, Judgment of God must first begin in  ','the house of God  ','the public places  ','the midst of criminals ','the government auditoria ','','','a','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:45'),(171,'Paul told the believers in Corinth that no one can say Jesus is Lord except by  ','knowledge  ','revelation  ','grace  ','the Holy Spirit ','','','a','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:46'),(172,'Render to Caesar the things that they are Caesar’s and to God the things are God’s, the above quotation emphasizes  ','Obedience to divine authority  ','Striking a balance between civil and divine authorities ','Disobedience to civil authority  ','Total rejection of both divine and civil authorities','','','b','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:08'),(173,'The women sang and said David slain his ten thousands and Saul his  ','five thousands   ','thousand  ','thousands   ','six thousand','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:09'),(174,'Israel went into Assyria captivity in','720BC  ','730 AD   ','750BC','722 BC','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:10'),(175,'A prophet mostly emphasized the holiness of God. This prophet was  ','Hosea  ','Jeremiah  ','Ezekiel   ','Isaiah','','','d','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:11'),(176,'One of the following was not among the religious sects in the New Testament  ','The Pharisees   ','The Nazarenes','The Essenes','The Sadducees','','','c','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:12'),(177,'“Talitha cumi” means','Dorcas, Arise   ','Little girl, I say to you, arise  ','Thy will be done','Jesus is coming','','','b','','post-utme','2013',57,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:12'),(178,'Who was the secretary employed by Jeremiah to write his prophecy?','Amanuensis  ','Amos  ','Baruch  ','Joshua','','','c','','post-utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:14'),(179,'Who among the seven deacons was an evangelist  who had four daughters who prophesied?  ','Stephen  ','Philip   ','Barnabas   ','Nicholas','','','b','','post-utme','2013',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:15'),(180,'The son of Solomon who made unwise decisions was ….','Jeroboam      ','Rechoboam','Rehoboam    ','Asa','','','c','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:16'),(181,'The book of ____ mostly emphasized social justice','Amos   ','Ezekiel   ','Hoshea','Isaiah','','','a','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:16'),(182,'In one of the missionary journeys, Paul was stoned   to a state of coma in  ','Antioch in Pisidia   ','Iconium  ','Lystra   ','Antioch of Syria','','','c','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:17'),(183,'Moses spoke  to the Israelites to fear not, but be calm, confident and see the salvation of God at  ','Pi-Hahirotti   ','Meribah   ','Wilderness of Sinai ','d.Elim','','','a','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:18'),(184,'One of the following is not in the Pentateuch  ','Exodus    ','Judges     ','Leviticus   ','Numbers','','','b','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:19'),(185,'The sons of Samuel who did not walk in his ways were:','Phinehas and Hophni    ','Hophni and Amos  ','Joel and Phinehas        ','Abijah and Joel','','','d','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:20'),(186,'What was the second temptation of Jesus according to the Gospel according to Luke?','The Devil wanted Jesus to worship him  ','The Devil wanted Jesus to deny God','The Devil wanted Jesus to jump from the pinnacle of the Temple    ','The devil wanted Jesus to turn stones to bread','','','a','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:21'),(187,'Jonah refused to go to Nineveh because  ','Ninevites were in human and wicked','God was merciful, gracious and could forgive them  ','he was timid to deliver the message  ','he did not want to endanger his life','','','b','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:22'),(188,'‘Those who honour me I will honour , and those who despise  me shall be lightly esteemed.’ Who was being addressed?  ','Eli   ','Samuel','Hophni   ','Joshua','','','a','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:23'),(189,'Amos reference to ‘cows of Bashan’ was a metaphoric allusion to  ','women of Samaria  ','rich people of Samaria   ','poor people of Samaria  ','illustrious sons of Samaria','','','a','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:24'),(190,'Amos explained true religion as  ','singing of praises to God  ','self-righteousness','fasting and praying  ','being just and righteous','','','d','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:25'),(191,'Who was the prophet who said “I will put my law within them, and will write it upon their heart….”?  ','Isaiah  ','Jeremiah','Hosea   ','Amos','','','b','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:26'),(192,'The relationship between God and Israel was described by Hosea as that of a','faithless wife and a loving husband','a loving wife and a faithless husband  ','a penitent wife and aggressive husband  ','a faithless husband and a faithless and nonchalant wife.','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:27'),(193,'One of the following is not among the “I am” Sayings of Jesus  ','I am the bread of life','I am the gate of life','I am the good shepherd','I am the way','','','b','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:28'),(194,'In what way was Moses a prototype of Jesus Christ?','Moses was a great prophet who led Israel out of Egypt','Moses did not die naturally','Moses appeared to Jesus on Mount of Transfiguration','Moses was persecuted by his people','','','a','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:28'),(195,'“O dry bones, hear the word of the Lord… “The dry bones mentioned by Prophet Ezekiel  in the statement above refer to the','Amalakite king and soldiers  ','Whole house of Israel  ','Hittites and the Assyrians  ','Babylonians troubling Israel','','','b','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:29'),(196,'The eunuch who went to Jerusalem to worship in Acts 8:27 was a  ','minister of God  ','minister of Candace the queen Gaza  ','minister of Candace the king of the Ethiopians','minister of Candace the queen of the Ethiopians','','','d','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:30'),(197,'At the time of creation, the river that flowed out of Eden to water the garden divided into','Pishon, Hauijah, Gihon and Tigris','Tigris, Cush, Assune and Hauijah','Pishon, Tigris, Gihon and Euphrates','Euphrates, Gihon, Assyna and Tigris','','','c','','wassce','2005',80,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:31'),(198,'During the creative activity of God, He made the beasts','in His own image','to multiply on the earth','according to their kinds','to serve the needs of man','','','c','','wassce','2005',81,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:32'),(199,'“Two nations are in your womb, and two peoples born of you shall be divided”. The two people are','Moses and Jacob','Jacob and Benjamin','Esau and Ishmael','Esau and Jacob','','','d','','wassce','2005',60,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:33'),(200,'Moses was nursed by','Pharaoh’s daughter','Rachael','his mother','Rebecca','','','c','','wassce','2005',73,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:34'),(201,'The name Ichabod means','Yahweh is God','beloved of  Yahweh','I have asked him from the Lord','the glory has departed from Israel.','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:35'),(202,'When Saul and his troops came after David in the wilderness of Ziph, David and Abishai went to Saul’s camp \t\tto','slay him','surprise him','capture him alive','dialogue with him','','','b','','wassce','2005',74,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:36'),(203,'Saul’s death on Mount Gilboa was in consequence of his','sin of disobedience','resorting to the witch of Endor','loss of confidence in David','armour bearer’s obedience','','','a','','wassce','2005',87,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:37'),(204,'Naboth would not give the vineyard to Ahab because it was','under cultivation','inherited from his father','better than Ahab’s offer','undervalued by the king','','','b','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:38'),(205,'A good example of parental responsibility was demonstrated by','Samuel','Eli','David','Asa','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:39'),(206,'When God said to Solomon, “Ask what I shall give you”, he requested for','long life and prosperity','power and assistance against his enemies','peace and understanding to serve God','wisdom and understanding to serve the people','','','d','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:40'),(207,'The remote cause of the fall of Jerusalem was','Josiah’s death at the battle of Megiddo','the military might of Israel’s enemies','the sins of Manasseh, the king','Judah’s with holding of tribute to Nebuchadnezzar','','','c','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:41'),(208,'Nebuchadnezzar punished those who refused to worship the golden image by throwing them into','the River Nile','the rivers of  Babylon','a furnace','a lion’s den','','','c','','wassce','2005',65,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:42'),(209,'The wife of Hosea was called','Gomer','B . Rahab','Jael','Hagar','','','a','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:43'),(210,'As a reward for their faith, Shadrach, Meshack and Abednego were','asked to return to Jerusalem','granted respectable positions','offered money by the king','made to praise Yahweh','','','b','','wassce','2005',61,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:44'),(211,'Who among the prophets was referred to as a prophet of doom?','Isaiah','Ezekiel','Amos','Jeremiah','','','d','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:44'),(212,'Jonah typified Jesus Christ when he','surrendered himself to be swallowed by the fish','offered to lose his life that others might be saved','rejected the message of God','announced destruction for the Ninevites','','','b','','wassce','2005',86,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:45'),(213,'The message of Amos was mainly about','the love of God','man’s response to God’s love.','the holiness of God','social justice','','','d','','wassce','2005',86,'Admin','2016-11-12 11:56:06','2020-07-15 03:50:53'),(214,'Before Joseph and Mary came together, she was found to be with a child','to be called Jesus','of the Holy Spirit','who shall be called Emmanuel','spoken of by the prophets','','','b','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:54'),(215,'“How is it that you, a Jew, ask a drink of me, a woman of \tSamaria?” The speaker was surprised because','Jesus was God and not human','the Jews could only buy water from Samaria','the Jews had no dealings with Samaria','it was unlawful for a man to receive water from a woman','','','c','','wassce','2005',70,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:01'),(216,'Jesus said “Not everyone who says to me ‘Lord, Lord,’ shall enter into the kingdom of heaven, but he who','hears the word of God”.','prays and fasts’','prophesies in my name”','does the will of my father”','','','d','','wassce','2005',75,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:02'),(217,'According to Jesus, a disciple must not','hate his parents and family','bear his own cross','be a poor man','count the cost','','','d','','wassce','2005',74,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:03'),(218,'Instead of being unnecessarily anxious about life and the affairs of this world, Jesus taught us to','relax our minds and wait for the manna from above','seek first the kingdom of God and its righteousness','seek water baptism and qualify for divine healing','repent of our sins and preach the gospel.','','','b','','wassce','2005',69,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:04'),(219,'According to Jesus, the seventy disciples who returned from a successful missionary work should rejoice because','the demons were subject to them','the sick were healed through their ministry','the lame walked just at their command','their names were written in heaven','','','d','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:05'),(220,'The seeds that fell among thorns represent those who hear the word of God but lose it because','they refuse to be baptized in water','their parental background does not allow them to believe','the cares of the world and delight in riches choke the word','the unbelievers do not permit new converts to receive the word','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:06'),(221,'The rich man who ignored the needs of Lazarus lacked','a sense of proportion','parental care','human sympathy','spiritual contentment','','','a','','wassce','2005',65,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:07'),(222,'Abiding in Christ’s love demands that we','have hope for the future','keep His commandments','imitate one another','manifest the peace of God','','','b','','wassce','2005',81,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:08'),(223,'According to Jesus, a good shepherd lays down his life for the sheep but a hireling','sells them off for personal profit','abandons the sheep in the face of danger','protects some of the sheep leaving others to danger','asks for better pay before doing his work.','','','b','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:09'),(224,'The arrest of Jesus by his enemies was','an accident of faith','a result of his tough teaching','a fulfilment of the scriptures','a ploy to see his miraculous powers','','','b','','wassce','2005',65,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:10'),(225,'The final trial of Jesus was presided over by','Herod','Caiaphas','the High Priest','Pilate','','','d','','wassce','2005',83,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:11'),(226,'Before his ascension, Jesus commissioned his disciples to go to all nations and','cast out demons','heal the sick','raise the dead','make disciples of them','','','d','','wassce','2005',63,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:12'),(227,'The experience which totally changed Paul’s focus in life was his','witnessing the martyrdom of Stephen','determination to wipe out the church','participation in the council of Jerusalem','encounter with Jesus on the road to Damascus','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:13'),(228,'Herod persecuted the early church because he was','opposed to the Apostles’ teaching','impressed by his growing popularity after killing James','unhappy that the Jewish leaders were not doing enough havoc to the apostles','asserting the extended powers granted him Rome.','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:14'),(229,'One of the early Christians who sold his property and gave the money to the apostles was','Barnabas','Stephen','Barabbas','Matthias','','','a','','wassce','2005',70,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:14'),(230,'Which of the following was not characteristic of the Early Church?','Constant change in leadership','Devotion to the teachings of the apostles','Breaking bread in members’ homes','Communal fellowship','','','a','','wassce','2005',82,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:15'),(231,'“Father forgive them for they know not what they do” was the prayer said by','Philip','Peter','Paul','Stephen','','','d','','wassce','2005',75,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:16'),(232,'Paul argued that Jesus died for us while we were yet sinners in order to','prove that he was not an ordinary man','show Gods’ love for sinful man','warn us to desist from sin','give us power to possess the earth','','','b','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:17'),(233,'Paul, in Romans, taught that Christians are Abraham’s descendants by','grace','faith','circumcision','law','','','b','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:18'),(234,'According to Romans, when civil authorities punish evil doers, they do so as the','agents of God’s wrath','supervisory authority','agents of the darkness of this world','representatives of angelic powers','','','a','','wassce','2005',77,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:19'),(235,'Paul said he was not fit to be called an apostle because he','was not called like the others','was not a Jew','persecuted the Early Church','was only a distributor of letters','','','c','','wassce','2005',70,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:20'),(236,'In Romans, Paul admonished Christians, in their dealings with secular powers, to','reject all secular laws','pray for the leaders','refuse to pay tax to them','respect the authorities','','','d','','wassce','2005',85,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:21'),(237,'Paul taught that by our common faith in Jesus and baptism, the difference between Jews and Gentiles has become','permanent','temporal','irrelevant','real','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:22'),(238,'The Philippians’ gifts to Paul were for','the growth of the church','his sustenance','distribution to the saints','other Christian prisoners','','','b','','wassce','2005',79,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:23'),(239,'Which of the following does not relate to the new life in Christ?','Baptism','Circumcision','Grace of God','Faith','','','b','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-15 13:50:19'),(240,'Paul taught the Colossians that the relationship between wives and their husbands should be as','is fitting in the Lord','the culture demands','is written in the law','the husband commands','','','a','','wassce','2005',89,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:25'),(241,'At the coming of the Lord, unbelievers will','be condemned','have a desolate land','be hit by famine','die in divine war','','','a','','wassce','2005',76,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:26'),(242,'Paul compares the manifestations of spiritual gifts in individual members of the Church to the','unity of the human body','rights of the individual members of the Church','rights of the different parts of the body','unity of the Church','','','a','','wassce','2005',81,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:27'),(243,'Paul wrote to the Thessalonians about idleness because he \tlearnt that they were','among the idlest people in Asia','forcing Christians to work in the Church','unwilling to give offerings','expecting the second coming of Christ','','','d','','wassce','2005',64,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:28'),(244,'Paul appealed to Philemon to forgive Onesimus on the basis of','equality','righteousness','love','faith','','','a','','wassce','2005',80,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:29'),(245,'James recommends the anointing oil of the elders because such anointing','prepares the sick for his last journey','makes the sick holy and righteous','promotes physical recovery','ensures forgiveness to the sick','','','d','','wassce','2005',87,'Admin','2016-11-12 11:56:08','2020-07-15 14:05:27'),(246,'Peter advised his fellow elders to tend the flock of God that was in their charge','with care','willingly','by example','domineeringly','','','a','','wassce','2005',78,'Admin','2016-11-12 11:56:08','2020-07-14 14:13:31'),(247,'In Timothy, Paul urges Christians to pray for kings and those in authority for the achievement of','a successful Christian life','godly and acceptable life','peace and exaltation in life','quiet and peaceable life.','','','d','','utme','2009',75,'Admin','2016-11-12 12:16:55','2020-07-14 14:13:32'),(248,'According to Galatians, one of the benefits of being a joint heir with Christ is having His Spirit in','worship','the heart','the body','prayers','','','b','','utme','2009',62,'Admin','2016-11-12 12:16:57','2020-07-14 14:13:33'),(249,'According to Ephesians, children who obey their parents in the Lord will','be happy','go to heaven','have long life','be great.','','','c','','utme','2009',69,'Admin','2016-11-12 12:16:57','2020-07-14 14:13:33'),(250,'According to Thessalonians, the day of the Lord will not come unless the','living die first','scoffers come first','dead rise first','rebellion comes first.','','','d','','utme','2009',80,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:34'),(251,'In Romans, Paul condemned sin taking over mortal bodies in the new life as instruments of','greediness','wickedness','sadness','foolishness.','','','b','','utme','2009',94,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:35'),(252,'In his teaching on partiality, James declares that mercy triumphs over','judgment','righteousness','grace','faith.','','','a','','utme','2009',96,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:36'),(253,'In Paul’s arrangement of the spiritual gifts in Corinthians, the last is','the utterance of wisdom','interpretation of tongues','gifts of healing','various kinds of tongues.','','','b','','utme','2009',80,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:37'),(254,'In His sermon on the Mount, Jesus said that the poor in spirit are blessed for they would','be satisfied','be comforted on the last day','inherit the kingdom of heaven','inherit the earth.','','','a','','utme','2009',86,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:38'),(255,'According to Matthew, the stone on the tomb of Jesus was removed by','an angel','a Roman soldier','Mary Magdalene','Peter and John.','','','a','','utme','2009',82,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:39'),(256,'Angel Gabriel told Zachariah that he would become dumb until John was born because he','looked down on the Angel','was advanced in age','disagreed with Elizabeth, his wife','did not believe God’s words.','','','d','','utme','2009',70,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:40'),(257,'“...but should write to them to abstain from the pollutions of idols and from unchastity and from what is strangled and from blood...” The statement above was made at the Council of Jerusalem by','Philip','Simon','James','Peter','','','d','','utme','2009',73,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:41'),(258,'In the country of the Gerasenes, Jesus healed the','man possessed of demons','paralytic at the pool','leper','blind man.','','','a','','utme','2009',65,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:42'),(259,'Following the death of Stephen, the only group of believers not scattered by the great persecution was the','deacons','apostles','prophets','disciples.','','','d','','utme','2009',89,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:43'),(260,'According to Luke, when Moses and Elijah appeared during the Transfiguration, they spoke of Jesus’','departure','second coming','resurrection','trials.','','','a','','utme','2009',61,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:43'),(261,'The baptism of Jesus by John in River Jordan was to','convince others that John was His forerunner','ensure that proper baptism must be in a river','service as an example','fulfil all righteousness.','','','d','','utme','2009',79,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:45'),(262,'Herod was delighted to see Jesus because he had heard of Him for so long and wanted to','send Him to Rome','sentence Him to death','see Him perform miracles','make Him his friend.','','','c','','utme','2009',85,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:47'),(263,'“Do you understand what you are reading?” Philip asked the Ethiopian eunuch the question above when he found him reading the book of','Hosea','Ezekiel','Jeremiah','Isaiah.','','','d','','utme','2009',79,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:47'),(264,'“Unbind him, and let him go.” The statement was made by Jesus when','He raised to life the dead Lazarus','He healed the son of the widow at Nain','He healed the centurion’s servant','a boy bound by Satan was brought to Him.','','','a','','utme','2009',90,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:48'),(265,'In Luke, at the Last Supper, Jesus revealed His','resurrection','imminent sufferings','love for His disciples','ascension.','','','b','','utme','2009',71,'Admin','2016-11-12 12:16:58','2020-07-15 03:50:53'),(266,'The good shepherd according to Jesus is one who','lays down his life for his sheep','goes about with his sheep','keeps many healthy sheep','feeds his sheep in green pastures.','','','a','','utme','2009',84,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:50'),(267,'Jesus: stilling of the storm was to','escape from danger','impress His disciples','demonstrate His power','help the fishermen.','','','c','','utme','2009',64,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:51'),(268,'“Can any one forbid water for baptizing these people who have received the Holy Spirit just as we have?” The statement above was made by Peter at the conversion of','Herod','Lydia','Saul','Cornelius.','','','d','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:52'),(269,'The disciple who replaced Judas Iscariot was','Justus','Stephen','Mathias','Luke.','','','c','','utme','2009',66,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:53'),(270,'The message in the parable of the weeds is to','make Christians to be aware of the evil one','remind Christians to pray always','teach Christians to be aware of false teaching','warn Christians on what will happen at the close of age','','','c','','utme','2009',76,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:54'),(271,'The sin of the sons of Eli was that they treated the offering of the LORD with','suspicion','contempt','disgust','jealousy.','','','b','','utme','2009',94,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:55'),(272,'In order for the people of Israel to be ready to meet the LORD by the third day at Mount Sinai, they were','not to drink alcohol','to wear white garments','to wash their garments everyday','not to go near a woman.','','','c','','utme','2009',82,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:56'),(273,'For worshipping the molten calf, God described the Israelites as','a stubborn nation','an unholy nation','a stiff-necked people','an unrighteous people','','','c','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:57'),(274,'“1 will not eat until I have told my errand” In the statement above, the errand of Abraham’s servant was to','find a wife for Isaac','deliver the camels to Laban','assess Isaac’s future wife','deliver Isaac’s message to Laban','','','a','','utme','2009',93,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:58'),(275,'Saul leant from Samuel’s spirit that the LORD would','give the Philistines into his hands','afflict him with sickness','because Isaac’s future wife','pardon his iniquity','','','c','','utme','2009',87,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:59'),(276,'“My spirit shall not abide in man forever, for he is flesh...” When God made the statement above, He concluded that man’s days shall be','one hundred years','one hundred and fifty years','eighty years','one hundred and twenty years.','','','a','','utme','2009',62,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:00'),(277,'According to proverbs, a son that is attentive to a father’s instruction will','be rich','have eternal life','gain insight','be forgiven his sins','','','b','','utme','2009',73,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:01'),(278,'When God called Moses to deliver the Israelites, he resisted because he could not speak and he was told to','perform some signs with his rod','wait for a sign from God','go with Joshua who would speak for him','go with Aaron who would speak for him','','','d','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:02'),(279,'David was anointed king over Judah at','Zuph','Bethlehem','Hebron','Gibeon.','','','c','','utme','2009',79,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:03'),(280,'“Behold, if people of Israel are to come, let us deal shrewdly with them, lest they multiply.....” ln the statement, the first step by the king of Egypt was to','cast all Hebrew male children into the Nile','impose heavy tax on them','kill Hebrew male children','set taskmasters over them to afflict them with burdens','','','d','','utme','2009',77,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:04'),(281,'“Let the waters under the heavens be gathered together into one place, and let the dry land appear.” In the statement above  the dry land and the water refer to','earth and oceans','firmament and seas','firmament and oceans','earth and seas','','','d','','utme','2009',83,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:04'),(282,'What did Gideon call the altar which he built to the LORD?','The LORD is merciful','The LORD is peace','Jehovah Jireh','The LORD is great','','','a','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-07-14 02:26:02'),(283,'When King Nebuchadnezzar besieged Judah, he took away all classes of people but spared the','poorest people of the land','palace guards','children and the aged','priests and prophets','','','a','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:18'),(284,'After Prophet Ezekiel had eaten what he was offered, he was sent to speak to','a people of hard language','the house of Israel','the house of Judah','a people of foreign language','','','b','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-07-15 14:05:27'),(285,'Josiah believed that the wrath of the LORD was kindled against him and all Judah because','they did not observe the Passover','there was an unholy thing in their midst','the people have forgotten God','their fathers were disobedient to God.','','','b','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-07-15 09:02:40'),(286,'“Son of man, stand upon your feet, and I will speak with you.” What happened to the Son of man after the instruction above?','The Spirit entered him.','He became terrified.','The angels gave him support.','He began to prophesy.','','','a','','utme','2009',79,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:21'),(287,'God had pity on the people of Nineveh because','they listened to Jonah’s message','the king punished all the violent people in the land','they turned from their evil way.','they made sacrifices of sin offering to God.','','','c','','utme','2009',68,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:21'),(288,'The Kingdom of Israel was divided because the','kingdom was too large to be administered','leadership wanted to create more nations','followership wanted more nations','last two kings made unwise policies.','','','d','','utme','2009',82,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:22'),(289,'“Behold, I am the LORD, the God of all flesh; is anything too hard for me...” The statement above suggests that God is','merciful','awesome','most powerful','not changeable.','','','b','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:23'),(290,'Immediately after the contest on Mount Carmel, Elijah prayed and God answered him with','thunder','rainfall','a whirlwind','a heavy storm.','','','a','','utme','2009',92,'Admin','2016-11-12 12:16:59','2020-07-15 09:16:12'),(291,'Prophet Amos told Israel to hate evil, love good and establish justice in the gate so that God would','heal their diseases','give them good leaders','be gracious to them','multiply their descendants.','','','c','','utme','2009',87,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:25'),(292,'In addition to the declaration of freedom to the exiles in Babylon, King Cyrus ordered for','free will offering for the house of God in Jerusalem','the release of Jewish, slaves in the empire','security check on the Jews before departure','support from craftsmen in Babylon.','','','a','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:26'),(293,'“Am I God, to kill and to make alive, that this man sends words to me to cure a man of his leprosy...” Prophet Elisha responded to the king’s reaction in the statement above by','directing the nation of Israel to pray and fast','requesting the leper to come to his house','directing the leper to go to River Jordan','asking the leper to offer a sacrifice.','','','b','','utme','2009',73,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:27'),(294,'According to Prophet Jeremiah, one of the promises of God was that He would give the Israelites','new priests','new commandments','kings after His own heart','shepherds after His own heart.','','','c','','utme','2009',74,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:28'),(295,'Prophet Hosea named his second child Not Pitied because God would no more pity the','kings of Judah','kings of Israel','house of Judah','house of Israel.','','','c','','utme','2009',77,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:29'),(296,'“Test your servants for ten days; let us be given vegetables to eat and water to drink...” In the statement above, Daniel was talking to','King Darius','the chief of the eunuchs','the steward of the chief eunuch.','King Artaxerxes.','','','b','','utme','2009',72,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:30'),(297,'God blessed and hallowed the seventh day because','it was the day He rested from creation','it was the day He created man','He wanted it to be a day of worship','He saw that all He had created was good.','','','a','','utme','2011',75,'Admin','2016-11-12 12:27:45','2020-07-14 14:14:31'),(298,'Noah’s ark was sustained during the flood by its','resting on the highest mountains','being rowed on the waters','floating on the water','being anchored safely','','','c','','utme','2011',64,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:32'),(299,'God visited the children of Israel on Mount Sinai during the giving of  the commandments through','a storm','mist and dew','smoke and fire','a still small voice','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:33'),(300,'When asked to interpret Pharaoh’s dream, Joseph’s first response was','...God has revealed to Pharaoh what he is about to do.','...It is not in me; God will give Pharaoh a favourable answer.','...God will shortly bring it to pass.','…let Pharaoh select a man discrete and wise','','','b','','utme','2011',83,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:33'),(301,'When Joshua fell upon his face during Israel’s defeat at Ai, God told him to rise and','send more courageous soldiers to Ai','encourage the people','pray fervently against their enemies','sanctify the people','','','d','','utme','2011',63,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:34'),(302,'God guided Abraham’s steward in choosing a wife for Isaac by','teaching him how to select a good woman','leading a lady to fulfil his prayer request','taking him to Abraham’s fatherland','giving him an exemplary woman.','','','c','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:35'),(303,'Why was God angry with Eli?','Eli’s sons disregarded the people’s warning','Eli’s sons were wicked people.','Eli’s sons dishonoured God and he treated them with levity.','Eli’s sons were appointed as priests against God’s will.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:36'),(304,'Laxity in disciplining children is dangerous to both the family and society as exemplified by','Jonathan','Tamar','Absalom','Ahikam.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-15 13:37:42'),(305,'God promised Abraham that nations of the earth shall be blessed through him because','he had obeyed Him','his descendants had obeyed Him','of his kindness to Hagar','of  his exemplary leadership.','','','a','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:38'),(306,'The punishment for Adam and Eve’s sin was that they','were driven out of the garden','would be naked forever','would never fellowship with God','would be enemies of crawling animals.','','','a','','utme','2011',64,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:39'),(307,'‘Do not destroy him; for who can stretch out his hand on the LORD’S anointed, and be guiltless?’ In the statement above, David was acknowledging God’s role in','Abishai’s command','Saul’s leadership','Samuel’s priesthood','Elijah’s prophet hood.','','','b','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:40'),(308,'Saul’s decision to consult a medium displayed his lack of','faith in his army','faith in God','leadership qualities','respect for the dead.','','','b','','utme','2011',86,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:41'),(309,'Solomon made the most unwise decision by engaging in','marriages to foreign women','alliances with his brothers','so many wars of conquest','developmental works.','','','a','','utme','2011',97,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:42'),(310,'The man of God whose word was ignored by Kings Ahab and Jehoshaphat was','Elijah','Zedekiah','Malakiah','Micaiah','','','d','','utme','2011',86,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:43'),(311,'Baal did not answer his worshippers at the contest on Mount Carmel because he','was annoyed with their sacrifice','did not hear','wanted to disgrace his worshippers','was asleep.','','','b','','utme','2011',87,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:43'),(312,'The workmen who repaired the house of the LORD during Josiah’s religious reforms were not made to account for the money given them because they','did not receive the money directly','lacked accounting capabilities','bribed the Temple officials','were honest workmen.','','','a','','utme','2011',108,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:44'),(313,'During Jehoiakim’s reign, Judah was destroyed as punishment for Manasseh’s sin of','keeping Temple prostitutes in the land','defiling the vessels in the Temple','offering unacceptable sacrifice','shedding innocent blood.','','','a','','utme','2011',70,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:45'),(314,'Nehemiah responded to the opposition of the enemies of Israel by','telling the people not to say a word','reporting the issue to King Artaxerxes','inviting them to dialogue in the King’s court','asking God to return their taunt back to them.','','','d','','utme','2011',84,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:46'),(315,'Nebuchadnezzar ordered his subjects to worship the image he set up whenever they','heard his voice','saw him stand before the image','heard the sound of the horn','were told to do so.','','','c','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:47'),(316,'‘What is this that you have done!”  The people in the ship asked Jonah the question above because','he was fast asleep in the ship','they knew he was fleeing from the LORD','he lied to them about his presence in the ship','they realized that he had made attempts to commit suicide.','','','b','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:48'),(317,'What shall I do with you, O Ephraim? What shall I do with you, O Judah? Your love is like a morning cloud...” In the statement above, the love of Israel is compared to a morning cloud because it','disappears fast','withers','is cloudy','darkens the day','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:49'),(318,'According to Amos, God desires knowledge of Him rather than','fervent prayers','dependency on the Law','the multitude of prophecies','burnt offerings','','','d','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:50'),(319,'In his vision, Isaiah’s guilt was taken away and his sin forgiven after','the angel of the LORD appeared to him','his mouth was touched with a burning coal','the seraphim had spoken to him','he had agreed to serve God.','','','b','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:51'),(320,'The prophet who was ordained from the womb for God’s service was','Jeremiah','Isaiah','Ezekiel','Hosea.','','','a','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:52'),(321,'According to Jeremiah, the anger of God towards Israel would only be reduced by','His mercy','the prophet’s repentance','the prophet’s prayers','His glory.','','','a','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:53'),(322,'When Zechariah saw the angel of the Lord standing on the right side of the altar of incense, he','cried out to him','was troubled and afraid','rejoiced in the Lord','left the Temple immediately.','','','b','','utme','2011',63,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:54'),(323,'‘Follow me and leave the dead to bury their own dead’ By this statement, Jesus means that','disciples shall not attend burials','there is no life after death','following Him comes before anything else','shall leave their families in God’s care','','','c','','utme','2011',73,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:55'),(324,'The disciples became terrified when they saw Jesus walking on the sea because','they thought He would drown','they thought He was a ghost','they lacked faith in Him','there was a great storm.','','','c','','utme','2011',70,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:56'),(325,'The Jews sought to kill Jesus after He healed the man at the pool of Bethzatha because they thought that He','claimed to have authority to forgive sins','made Himself equal with God','did not agree with the law of Moses','said that He was born before Abraham.','','','c','','utme','2011',68,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:56'),(326,'In the parable of the sower, the seed that fell among the thorns symbolized the one who hears the word but','does not understand it','loses it to the enemy','does not immediately receive it','the cares of the world choke it.','','','d','','utme','2011',77,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:57'),(327,'Jesus encouraged His followers to rejoice when they were \tpersecuted because','great would be their reward in heaven','angels would come to their aid','they would not lack anything good','all their sins would be forgiven.','','','a','','utme','2011',72,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:58'),(328,'‘Blessed are you, Simon Bar-Jona ! For flesh and blood has not revealed this to you...’ As exemplified by the statement above, for believers to be able to identify with Jesus, they must','offer their lives','be led by the Spirit','keep all the commandments','vow not to deny Him.','','','b','','utme','2011',71,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:59'),(329,'Jesus drove the money changers and sellers of doves out of the Temple because','the people defiled it with dubious business','there was no need for animal sacrifice anymore','the people were disobedient to the Law','animals and birds were not allowed in it.','','','a','','utme','2011',95,'Admin','2016-11-12 12:27:47','2020-07-15 05:08:09'),(330,'The tearing of the curtain of the Temple into two at the death of Jesus signifies','the passing away of the prophets','direct access to God through Christ','that Jesus was a powerful person','that God was truly with Jesus.','','','b','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:01'),(331,'“Tell people, His disciples came by night and stole him away while we were asleep...” The intention of the speaker in the statement above was to','implicate the disciples','absolve the soldiers from all blame','deny the resurrection story','convince the authority','','','c','','utme','2011',97,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:02'),(332,'Jesus charged His followers to walk in the light while they had the light so that they may','have eternal life','become custodians of it','have the light of life','become sons of it.','','','c','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:03'),(333,'In the early Church, believer devoted themselves to the','daily distribution of food','apostles’ teaching and fellowship','breaking of bread in the Temple','performance of miracles','','','c','','utme','2011',76,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:04'),(334,'The disciple that went to preach in Samaria after the great persecution in Jerusalem was','Philip','Andrew','Peter','James.','','','a','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:05'),(335,'Saul was convened so that he might','cause confusion among the Jews','help Peter in his work','not be killed for his sins','spread the word to the Gentiles.','','','d','','utme','2011',84,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:06'),(336,'What effect did the decision of the Council of Jerusalem have on the early Church?','Members became more untied','the Church experienced freedom from persecution','The Jews became leaders of the community.','Gentiles were free to be members of the Church','','','d','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:07'),(337,'Paul in Romans stated that the righteousness of God has been manifested through','the Law','the priests','faith in Jesus','Temple sacrifices.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:08'),(338,'According to Romans, all who were baptized into Christ were also baptized into His','crucifixion','persecution','suffering','death','','','d','','utme','2011',77,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:09'),(339,'According to Paul in Philippians, humility means giving consideration to other people’s','wealth','weakness','interests','needs.','','','c','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:10'),(340,'In Corinthians, believers are taught to forgive one another in order to','keep Satan from gaining advantage','prevent the wrongdoer from losing his salvation','remove the curse from the offender','discourage the offender from committing more sin.','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:22'),(341,'In Corinthians, Paul stated that by one Spirit we were','free from bondage of sin','united into one church','committee to Christian service','baptized into one body','','','d','','utme','2011',76,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:23'),(342,'Paul commended the churches in Macedonia for giving out of their freewill to the','saints','poor','priests','sick.','','','b','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:24'),(343,'‘Pay all of  them their dues, taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honour to whom honour is due’. Paul made the statement above to the Church at','Thessalonica','Rome','Corinth','Ephesus.','','','b','','utme','2011',75,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:25'),(344,'At the second coming of Christ, those who are alive shall be','bound for life','caught up together with the Lord','separated from the dead','taken to the new Jerusalem','','','b','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:26'),(345,'According to James, treatment of brethren at fellowship should not be based on','appearance','sentiments','gender','age.','','','a','','utme','2011',67,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:27'),(346,'Peter in his epistle, charged his fellow elders to','take care of their families','be strong in their faith','have compassion on the weak','tend the flock of God.','','','d','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:28'),(347,'The land, the sea and vegetation were created on the','first day','second day','third day','fifth day.','','','c','','wassce','2008',70,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:29'),(348,'God blessed the seventh day and hallowed it because it marked the day that He','completed His work of creation','handed over the earth to Adam','saw all His created work as perfect','rested from His work of creation.','','','d','','wassce','2008',72,'Admin','2016-11-12 12:38:50','2020-07-15 03:50:53'),(349,'Which of the following was not part of the honour done to Joseph when Pharaoh made him a ruler in Egypt?','Joseph was made to address the people','The land of Goshen was given to Joseph','Joseph was dressed in garments of fine linen','A gold chain was put around Joseph’s neck.','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:31'),(350,'What was Moses’ reaction when God called him to liberate his people from Egypt?','He was afraid of being punished for his previous offence','His people would think he was too young to lead them','His people would not listen to him','His father in-law would not allow him to go.','','','c','','wassce','2008',79,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:32'),(351,'God led the Israelites in the wilderness during the day in form of','fire','light','cloud','rainbow.','','','c','','wassce','2008',64,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:33'),(352,'When Moses stayed away for too long on the mountain, the people of Israel','prayed and fasted','embarked on farming','returned to Egypt','made and worshipped idol.','','','d','','wassce','2008',70,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:34'),(353,'God provided water for the Israelites by asking Moses to strike the rock at trice wilderness of','Rephidium','sin','Massah','Paran.','','','b','','wassce','2008',62,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:35'),(354,'When the Spirit of the Lord departed from Saul','a new spirit entered into him','an evil spirit from God tormented him','he consulted an oracle','he went into hiding.','','','b','','wassce','2008',66,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:35'),(355,'When David spared the life of Saul the second time he took away his','bow and arrow','spear and jar of water','royal crown and armour','spear and iron shield.','','','b','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:36'),(356,'Solomon first applied wisdom granted to him by God at Gibeon by the','establishment of high places in Judah','utterances of proverbs and parables','marriage alliances with foreign nations','judgment between the two harlots.','','','d','','wassce','2008',76,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:37'),(357,'In his reform, King Josiah first attacked the','prostitutes that came around the temple at night','priests that made burnt offerings in the temple','Canaanite divinities - the Baal and Ashera','traders who profaned the temple.','','','c','','wassce','2008',72,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:38'),(358,'A good example of parental responsibility was demonstrated by','Asa','Jeroboam','Joel','Rehoboam.','','','a','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:39'),(359,'Gomer’s attitude towards her loving husband symbolizes','Hosea’s unfaithfulness to God','Israel’s faithfulness to God','God’s love for Israel','God’s hatred for Israel’s iniquities.','','','b','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:41'),(360,'The universal nature of God was demonstrated in the salvation of the people of','Joppa','Tarshish','Tekoa','Nineveh.','','','d','','wassce','2008',77,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:42'),(361,'Ahab was condemned for allowing Jericho to be rebuilt although that city had been','under Joshua’s curse','devastated by an earthquake','the scene of unexplained fatal accidents','the site for Canaanite human sacrifice.','','','a','','wassce','2008',82,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(362,'Amos declared that God hated solemn feasts, songs and sacrifices because the people of Israel were','unjust and unrighteous','unforgiving and unrepentant','despicable and untruthful','luxurious and arrogant.','','','a','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:44'),(363,'At Ezekiel’s call he beheld','the love of God','God’s glory','power of God','God’s mercy.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:45'),(364,'In spite of Israel’s faithlessness, Jeremiah saw a ray of hope for them if only they should','forgive one another','repent and return to God','always swear by God','show favour to strangers.','','','b','','wassce','2008',63,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(365,'Jesus came to John at River Jordan to','proclaim himself as Messiah','disclose himself to John','call some of John’s disciples','receive baptism like others.','','','d','','wassce','2008',67,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:52'),(366,'“Blessed are the peace makers for','theirs is the kingdom of God”','they shall be called sons of God”','they shall inherit the earth”','they shall be comforted”.','','','b','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:58'),(367,'According to the Mosaic law, the only authority to declare a leper healed was','Jesus Christ','the Emperor','the priest','the elders.','','','c','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:59'),(368,'Which of the following did not happen immediately after Jesus had yielded up his spirit on the cross?','The curtain of the temple was torn into two','Joseph of Arimathea removed his body for burial','The earth shook, the rocks were split','The tombs of the saints were opened.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:00'),(369,'According to Matthew, the disciples were sent out with the charge to go nowhere among the Gentiles nor enter any town of the','Jews','Samaritans','Israelites','Unbelievers.','','','b','','wassce','2008',64,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:01'),(370,'Which of the following miracles shows Jesus’ power over nature?','Walking on the sea','Healing of the leper','Healing of the woman with issue of blood','Raising of Lazarus from the dead','','','a','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:02'),(371,'The fate that would befall those who do not receive the gospel of Jesus would be','rejection by men','lack of peace in the family','condemnation by the church','condemnation by God.','','','d','','wassce','2008',70,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:03'),(372,'Which, according to Luke, were the last words of Jesus?','“Eli. Eli, lamasabach-thani”','“Father forgive them for they know not what they do”','“Truly, I say to you, today you will be with me in paradise”','“Father unto thy hands I commit my spirit”','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:04'),(373,'The first five disciples that Jesus called as recorded in the Synoptic gospels were','Peter, Andrew, James, John and Levi','Peter, Andrew, James, John and Thomas','Peter, Andrew, James. John and Zebedee','Peter, Andrew, James, John and Judas Iscariot.','','','b','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:05'),(374,'Peter’s general outlook towards Gentile converts was significantly changed by the conversion of','people of Lydda','the people of Samaria','Simon the magician','Cornelius the centurion.','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:06'),(375,'Which Jewish party was bitterly opposed to the disciples for preaching the resurrection of Jesus?','The Pharisees','The Sadducees .','The Zealots','The Sanhedrin.','','','b','','wassce','2008',64,'Admin','2016-11-12 12:38:51','2020-07-15 03:50:53'),(376,'When Peter was in prison the Church','appealed to the authorities','lived in fear','prayed ceaselessly','fought for his release.','','','c','','wassce','2008',60,'Admin','2016-11-12 12:38:51','2020-07-15 13:50:19'),(377,'The miracles of Jesus in St. John’s Gospel are referred to as signs’ of the','manifestations of Jesus as the Messiah','consuming power of God’s glory','judgment that will come upon unbelievers','second coming of Jesus.','','','a','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(378,'Believers according to Jesus in John’s gospel, become his friends, if they imbibe his teaching on','forgiveness','obedience','love','faith.','','','c','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:18'),(379,'The miracles of Jesus recorded in John’s gospel are called','works','signs','powers','wonders.','','','b','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:19'),(380,'The result of justification by faith is','divine protection','peace with God','forgiveness of sins','answered prayers.','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:20'),(381,'Which of the following is the result of Christian baptism?','Fulfilment of all righteousness','Walking in the newness of life','Ability to fast always','Yielding of one’s life to prayer.','','','b','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:21'),(382,'Sin that reigns in our mortal bodies makes us obey','one another','rules and regulations','our passions','our rulers.','','','c','','wassce','2008',67,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:22'),(383,'Paul considered himself unfit to be called an apostle because he','did not see Jesus','persecuted the church','worked hard to attain his position','was the least among the believers.','','','d','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:23'),(384,'Paul says that only the heathen who are led astray by dumb idols could say','“Jesus is Lord!”','“Praise ye the Lord!”','“Hail the messiah!”','“Jesus be cursed!”','','','d','','wassce','2008',69,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:24'),(385,'In the Epistle to Galatians, Christians are children of God through','faith in Christ','keeping of the law','helping the needy','baptism and confirmation','','','a','','wassce','2008',59,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:25'),(386,'Christ demonstrated humility by','riding on an ass to Jerusalem','allowing John to baptize him','taking the form of a servant','eating with sinners','','','c','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:26'),(387,'Peter admonished Christians to be sober and watchful in order to a void','temptation','God’s wrath','the devourer','damnation','','','a','','wassce','2008',74,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:27'),(388,'New life in Christ means','paying your tithe regularly','helping the poor and the needy','being dead to sin','getting baptized.','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:28'),(389,'In Romans, Paul taught that where there is no law, there is no','transgression','peace','reward','punishment','','','a','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:29'),(390,'The purpose of grace is to','justify the law','cancel the law','fight the law','establish the law','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:30'),(391,'In Romans. Paul stressed that the righteousness of God is','faith in the law for all who believe','works of the law for all who believe','fervent prayers by all believers','faith in Jesus Christ for all who believe','','','d','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:31'),(392,'The concept of  forgiveness does not include','reconciliation','restoration','peace','wealth','','','d','','wassce','2008',49,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:32'),(393,'Paul said in Galatians that, before faith came, we were confined under','grace','the law','righteousness','love','','','b','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:33'),(394,'In his letter to Philemon Paul did not ask him to','grant freedom to his slave Onesimus','allow Onesimus become a servant of God','forgive Onesimus for his earlier misbehaviour','prepare a feast for him.','','','a','','wassce','2008',65,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:34'),(395,'Peter enjoined humility because the humble shall','not be tempted','be blessed','receive God’s grace','have long life.','','','b','','wassce','2008',69,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:35'),(396,'Paul, unhappy with high incidence of idleness among the Thessalonians, commanded them to','assist those brothers who live in Idleness','exhort the busy-bodies to leave the church','ensure that any one who does not work must not eat','regard the lazy ones as enemies','','','c','','wassce','2008',66,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:36'),(397,'The new covenant between God and the Israelites is centered on','religious doctrines','intensive teaching','collective responsibility','individual responsibility.','','','a','','utme','2013',76,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:37'),(398,'The ark that God commanded Noah to build was made of','acacia wood','gopher wood','cedar wood','cypress wood','','','c','','utme','2013',68,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:38'),(399,'During Moses leadership in Israel, he exhibited most importantly, the talent of a','mediator','warrior','seer','preacher.','','','b','','utme','2013',64,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:39'),(400,'Moses ran away from Egypt after killing an Egyptian because he felt that he might be','endangering other Israelites by his actions','killed by the Egyptian mob','imprisoned by the Egyptian security officers','killed by Pharaoh of Egypt.','','','d','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:40'),(401,'How did God guide Eleazar in choosing a wife for lsaac?','He caused Rebekah to give him free accommodation','He made Rebekah’s parents willing to release her','He caused His angel to go ahead of him','He revealed to Rebekah before Eleazar’s arrival','','','d','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:40'),(402,'David’s immediate reaction to the news that the hearts of the Israelites have gone after Absalom was to','Weep for Judah','flee to the wilderness','mobilize his army','plead with Absalom','','','c','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:41'),(403,'David’s inaction at Ammon’s incest with Tamar showed his','lack of control over his children','excessive love for Ammon','ability to forgive as a leader','wisdom and strength of character','','','a','','utme','2013',81,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:42'),(404,'The young man of Egypt took David to the band of the Amalekites because','he was afraid for his life','he sought revenge against his former master','David was kind to him','the spirit of God was working through him.','','','d','','utme','2013',67,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:43'),(405,'Because David sought God’s will to pursue the Amalekites \twho had invaded Ziklag, he was rewarded with victory and','many new territories','spoils','many prisoners of war','favour','','','b','','utme','2013',75,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:44'),(406,'‘...why then have you not kept watch over your lord the king?...” The question above by David was addressed to','Amasa','Joab','Abishai','Abner.','','','c','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:45'),(407,'Solomon’s wisdom surpassed the wisdom of all the people of the East and all wisdom of Egypt because he','prayed and fasted daily','employed the service of seers','judged difficult cases','got his wisdom from God.','','','d','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-15 03:50:53'),(408,'Saul relied on a medium because God did not answer him through','dreams, visions and prophets','inspiration, tambourines and prophets','dreams, urim and prophets','lyre, urim and prophets.','','','c','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:47'),(409,'When Naboth refused to exchange his vineyard with King Ahab, Ahab reacted by','taking to prayers and fasting','going to his house vexed and sullen','ordering the killing of Naboth','forcefully taking it from him.','','','d','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:48'),(410,'The sins of Israel during the reign of Ahab consisted of','worship of the king','trampling upon the poor','worship of idols','desecrating the Temple','','','d','','utme','2013',66,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:49'),(411,'The book of the law was found in the house of the LORD during the reign of king','Josiah','Ahab','Omri','Hezekiah.','','','c','','utme','2013',84,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:50'),(412,'King Josiah was killed by Pharaoh Neco in a battle at','Syria','Meggiddo','Megiddo','Egypt.','','','c','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:51'),(413,'The major reason God allowed the Babylonian attack on the city of Jerusalem was to','demonstrate the ability of God to deliver His people from captivity','set a trap for the Babylonians and destroy them','restore the people of Judah and their leaders to the true worship of God','punish the people of Judah and their leaders for their sins.','','','c','','utme','2013',82,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:52'),(414,'When the three Hebrew men refused to worship the King’s image, he commanded that they be','thrown into a furnace','stoned','beheaded','thrown into the lion’s den.','','','c','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:53'),(415,'Jonah’s explanation to the LORD for resisting His first call teaches us that God is','repentant of evil','not ready to act fast','quick to anger','not sincere in His call.','','','c','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-15 13:50:19'),(416,'Before his call, Amos was a','herdsman','seer','farmer','prophet.','','','a','','utme','2013',68,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:55'),(417,'Amos’ prophecies which were considered as a conspiracy against the northern kingdom were reported to the king by','Micaiah','Amaziah','Hilkiah','Micah.','','','a','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:56'),(418,'How did God help Jeremiah overcome his inability to speak as prophet?','He put out His hands and touched his mouth.','He sent the Seraphim to speak to him.','He gave him a cake of honey to eat.','He touched his mouth with a burning coal.','','','d','','utme','2013',70,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:57'),(419,'Prophet Ezekiel was set upon his feet to hear the LORD speak when','an angel of the LORD lifted him','a voice from heaven commanded him to do so','the Spirit entered into him','He was made to touch the ephod','','','d','','utme','2013',86,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:03'),(420,'According to Jeremiah, the people of Israel were in exile because of their','impatience and immorality','rebellion against Nebuchadnezzar','maltreatment of the poor','unfaithfulness and faithlessness.','','','b','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:05'),(421,'‘‘... and many will rejoice at his birth; for he will be great before the Lord...” In the statement above, the angel made this pronouncement because of','Elizabeth’s disbelief because of her bareness','Mary’s holy nature','Zachariah’s fervent prayers','Joseph’s hesitation to marry Mary.','','','a','','utme','2013',75,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:06'),(422,'One quality of a good disciple that was exhibited by the first followers of Jesus was','faith','piousness','diligence','resourcefulness.','','','c','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:07'),(423,'“Lord, if you will, you can make me clean.” The statement above was made by the','leper','paralytic','centurion servant','epileptic boy.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:08'),(424,'The disciples of Jesus could not heal the boy with epilepsy because they','did not fast','had little faith','were powerless','did not pray.','','','a','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:08'),(425,'The seeds that fell among the thorns in the parable of the sower refer to people that heard the word of God but','the evil one snatched it','had no faith to nurture it','the criticism of others quenched it','the cares of the words choked it.','','','d','','utme','2013',83,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:09'),(426,'The promise to those who are persecuted for righteousness sake is that they will','inherit the earth','inherit the kingdom of heaven','see God','be called sons of God.','','','b','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:10'),(427,'According to Peter during the great confession, people believed that Jesus was','the Messiah','a priest','the Son of God','one of the prophets.','','','c','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-07-15 09:16:12'),(428,'‘‘... Behold, your king is coming to you, humble, and mounted on an ass...,” The prophecy in the statement above was fulfilled during Jesus','birth in a manger','transfiguration','triumphal entry','baptism by John','','','d','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:12'),(429,'After His arrest, Jesus was taken to','Pontiphas','Agrippa','Caiaphas','Pilate','','','a','','utme','2013',70,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:13'),(430,'According to Mark, the young man that the women saw in Jesus’ tomb told them to go with the disciples and wait for Him in','Bethlehem','Jerusalem','Bethany','Galilee','','','a','','utme','2013',68,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:14'),(431,'“He was not the light but was sent to bear witness to the light.” The statement above refers to','Simeon','Jesus','John the Baptist','Peter Barjona','','','b','','utme','2013',71,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:15'),(432,'The appointment of deacons became necessary because of the complaint by the','Gentile converts','Hellenists','Pharisees','Sadducees','','','d','','utme','2013',69,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:16'),(433,'According to Paul, before his conversion, he persecuted the church violently to','make it desirable to the Gentiles','purge it','destroy it','have it conform to the Law.','','','d','','utme','2013',75,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:17'),(434,'“Lord, I have heard from many about this man, how much evil he has done to thy saints at Jerusalem...” Ananias’ response above to God’s request for him to meet Saul shows that he','felt that Saul should not be forgiven','felt that Saul should be punished','was not interested in meeting Saul','was afraid to meet Saul.','','','a','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-07-15 03:50:53'),(435,'“It is necessary to circumcise them, and to charge them to keep the law of Moses.” In response to the Pharisees’ statement above, Peter rebuked them, by saying that God has','made circumcision for only those in leadership','chosen the Israelites among other people','cleansed the Gentiles’ heart by faith','put the yoke upon the Gentiles’ necks.','','','a','','utme','2013',80,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:19'),(436,'According to Galatians, judgment is without mercy to one who has shown no mercy, yet mercy triumphs over','tribulation','the law','judgment','punishment.','','','a','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:20'),(437,'According to Colossians, the Lord does not wish that any should perish, but that all should','rejoice','be saved','be humble','repent','','','b','','utme','2013',86,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:21'),(438,'According to Peter, when Christians humble themselves, God will','protect them','direct their ways','grant them eternal life','exalt them.','','','d','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:22'),(439,'According to Paul in his letter to Philemon, forgiveness should not be by compulsion but by','justification','faith','free will','His grace.','','','b','','utme','2013',78,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:23'),(440,'In Corinthians, Paul said that one can only say Jesus is Lord by','denouncing the law','faith','grace','the Holy Spirit.','','','b','','utme','2013',81,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:24'),(441,'When Christians give freely, God will supply','only for those that give','their needs according to His riches in glory','their needs according to the measure they give','their needs day by day.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:25'),(442,'Paul in Timothy urged believers to make supplications, prayers, intercession and thanksgivings for all those who','are in authority','have accepted Christ','have wronged them','are the need','','','c','','utme','2013',78,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:26'),(443,'According to Thessalonians, the second coming of the Lord will be','with the blowing of a trumpet','after scoffers have come','when the elements are dissolved','like a thief in the night.','','','b','','utme','2013',61,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:27'),(444,'According to James, when we meet various trails in life, we should','bless God’s name','call upon the name of the Lord','count it all joy','rejoice because the Lord is good.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:28'),(445,'“As each has received a gift, employ it for one another, as good stewards of God’s varied grace...” In the statement above, Peter teaches believers in virtue of','hospitality','giving','communion','fellowship.','','','a','','utme','2013',66,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:29'),(446,'What in the creation account, gave man an edge over every other creature?','Other creatures were made for man','Man alone was created in the Image of God','Man had the rare privilege to dwell in Eden','Satan acknowledged his privileged position','','','b','','wassce','2009',78,'Admin','2016-11-12 13:02:28','2020-07-14 14:17:30'),(447,'At Shechem, God appeared to Abram and told him that','he should continue on his journey southward.','he should leave his country and Kindred.','the land would be given to his descendants.','in the land he should build an altar.','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:29','2020-07-14 14:17:31'),(448,'In their dealings with God, Abraham and Sarah learnt the \tfollowing lessons except that God is','able to bless the righteous.','faithful to His promise','all powerful-nothing is too hard for Him.','not in a hurry to carry out His promises.','','','c','','wassce','2009',74,'Admin','2016-11-12 13:02:29','2020-07-14 14:17:32'),(449,'Pharaoh’s horsemen and his army overtook the fleeing Hebrews encamped by the sea at','Migdol.','Etham.','Phiahiroth.','Meriba.','','','c','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:33'),(450,'The episode of David and Bathsheba, Uriah’s wife was in \tviolation of God’s','sixth commandment.','seventh commandment,','eight commandment.','ninth commandment.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-15 13:50:19'),(451,'When the people of Israel received the encouraging report \tgiven by two of the twelve spies, they decided to','stone Moses for taking them out of Egypt.','choose Caleb as their leader and go back to Egypt.','stone the two spies who gave the report.','raise an army to fight the Canaanites.','','','d','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:35'),(452,'Which of the following tribes accompanied Deborah and Barak to the war against Jabin and Sisera?','Naphtali and Zebulum','Issachar and Reuben','Ephraim and Dan','Judah and Benjamin','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:36'),(453,'On matters of parental responsibility, Samuel could not be commended because he','made his children judges instead of priests.','wanted his children to succeed him.','did nothing to stop his children’s immoral behaviours.','did not care what happened to Israel after his death.','','','c','','wassce','2009',81,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:37'),(454,'Eli, the priest in Shiloh, was condemned because he','allowed his children to deprive God of His share of sacrifice.','allowed the Ark of God to be taken to the battle field','did not take God’s message through Samuel seriously.','officiated at the temple without the assistance of the prophet.','','','c','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:38'),(455,'David’s first Contact with Saul was because he was','skillful in playing.','victorious over Goliath.','a man of valour.','a shepherd boy.','','','a','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:38'),(456,'David showed Nathan the prophet that he had repented of his sin by','refusing to marry Uriah’s wife.','confessing that he had sinned.','offering to compensate Uriah’s family','making sacrifice to please God.','','','b','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:39'),(457,'Elijah was a prophet during the reign of','Gideon.','David.','Ahab.','Rehoboam.','','','c','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:40'),(458,'When God ordered famine on Israel, Elijah was fed by the ravens at','Brook Cherith.','River Jordan.','River Kishon','Mount Carmel.','','','a','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:41'),(459,'“The Lord forbid that I should give you the inheritance of my fathers”. The inheritance referred to here is','birth right.','the world.','the kingship.','a vineyard.','','','d','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:42'),(460,'The king of Judah who suffered in the hands of Nebuchadnezzar was','Jehoachin.','Manasseh.','Josiah.','Zedekiah.','','','d','','wassce','2009',79,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:43'),(461,'The punishment of Israel according to the vision of Jeremiah includes all the following except','occupation of the land by foreigners.','restoration of their kings and priests.','destruction of their flocks and herds.','consumption of their harvest by their enemies.','','','a','','wassce','2009',89,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:44'),(462,'Complete this statement “Holy, Holy, Holy is the Lord of Hosts,','the Seraphim’s bow to His glory”.','the whole earth will sing His glory”.','the whole earth is full of His glory”.','His creatures will rise to praise His Holy name”.','','','c','','wassce','2009',57,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:45'),(463,'When Isaiah saw the Lord in His holiness and glory, he exclaimed','“Blessed is me for 1 am truly holy”.','“Woe is me! For I am lost”','“Blessed be the name of the Lord”.','“I am finished, for I have seen a holy God”.','','','b','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-07-15 13:50:19'),(464,'Jeremiah said the people of Judah were in a state of mourning because,','they sinned against God.','their vessels were empty','their farms were destroyed.','there was drought in the land.','','','a','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:47'),(465,'The king planned to set Daniel over the whole kingdom because,','he was the most educated of all.','an excellent spirit was in him.','he wanted to favour a foreigner.','Daniel brought information to the king.','','','b','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-15 09:16:12'),(466,'God spoke through Amos that He would punish Israel for the following sins except that they','sold the righteous for silver.','sold the needy for a pair of shoes.','trampled the head of the poor into the dust.','pursued their brothers with the swords.','','','d','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:49'),(467,'The first batch of Jewish exiles to rebuild the temple was under the leadership of','Joshua.','Hanani.','Sheshbazzar.','Zerubabel.','','','d','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:50'),(468,'Which two tribes in Israel led in the rebuilding of the temple after the exile?','Judah and Benjamin','Naphtali and Joseph','Manasseh and Reuben','Judah and Ephraim','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:51'),(469,'After his baptism Jesus began to','proclaim the kingdom of God.','baptize others.','confront religious leaders.','teach in parables.','','','a','','wassce','2009',78,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:52'),(470,'The devout man in Jerusalem whom the Lord promised would see Christ before his death was named','Zechariah.','Joseph.','Stephen','Simeon.','','','d','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:53'),(471,'Jesus ordered the seventy disciples not to salute any one because','their mission required urgency.','it is not part of their mission to salute people.','they may forget their mission.','salutations to strangers defile the Jews.','','','a','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:54'),(472,'Jesus teaches, “Let your light so shine before men...” By light Jesus refers to,','the Christian character and virtues in us.','the bright lights at the altar in the church.','the light that shows the right way.','our knowledge of the scripture.','','','a','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:55'),(473,'“And if anyone will not receive you or listen to your words, shake off the dust from your feet as you leave that house.” This is a sign of','forgiveness','rebuke','acceptance','condemnation.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:56'),(474,'“Foxes have holes and birds of the air have nets; but the son of man has nowhere to lay His head”. By this statement, Jesus meant that His disciples','would not grow rich.','would not enjoy good houses.','had a lot of task ahead.','had a lot of enemies.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:57'),(475,'The treasures which Jesus wants us to lay in heaven include','generosity and kindness.','love and mercy.','works of righteousness','gold and silver.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:58'),(476,'“No one can serve two masters...” This means that one should not','be idolatrous.','belong to two religions.','worship money.','bean unbeliever.','','','a','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:59'),(477,'Whoever drinks the water Jesus gives will never thirst? What is this water?','The spirit of God.','Holy and anointed water.','The word of God.','Law of God.','','','a','','wassce','2009',57,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:00'),(478,'Jesus said “I am the bread of life; he who comes to me shall not hunger...” ‘Bread of life’ in this context means the','body of Jesus Christ.','manna given to the Israelites.','holy bread of life.','spiritual food through Jesus.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:01'),(479,'John’s summary of God’s love for the world is that He','sent his son to judge the world righteously.','created man in his own image with authority.','made light that the world might walk in it.','gave his only son to save all believers.','','','d','','wassce','2009',52,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:02'),(480,'According to John’s Gospel, Lazarus was from','Bethany','Galilee.','Jerusalem.','Bethsaida.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:03'),(481,'Jesus said to Martha, “...and whoever live and believes in me shall never die...” Jesus talks about','physical death.','spiritual death.','emotional death.','natural death.','','','b','','wassce','2009',62,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:04'),(482,'The meeting of the Christian Council of Jerusalem was chaired by','Peter.','Paul.','James.','John.','','','a','','wassce','2009',76,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:04'),(483,'Paul wished to retain Onesimus with him but did not do so because','Onesimus was unwilling to stay with him.','he was afraid of Philemon’s reaction.','he did not like such a favour to be imposed on Philemon.','Onesimus would soon be released from jail.','','','c','','wassce','2009',64,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:05'),(484,'Paul and his associates gave the Thessalonian believers an \timportant example to imitate. This example was to','be ready to help the poor always','toil, labour and work to earn a living','depend on foreign aids for sustenance.','suffer imprisonment without complaint.','','','b','','wassce','2009',54,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:06'),(485,'Peter urged all Christians to endure sufferings in faith conscious of the fact that','Jesus, himself also resisted suffering','the devil could lure them from faith with suffering.','only the physical body is affected.','suffering is temporary and leads to eternal glory.','','','d','','wassce','2009',67,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:07'),(486,'Paul’s teaching in Colossians on love, respect and obedience concerns','Christian giving.','family relationship.','master servant relationship.','Christian relations with their enemies.','','','b','','wassce','2009',75,'Admin','2016-11-12 13:02:31','2020-07-15 03:50:53'),(487,'According to Peter, God set up the state for the purpose of','silencing the ignorance of foolish men.','collecting appropriate taxes from its citizens','carrying out appropriate sanctions for the guilty','ensuring the protection of its citizens','','','d','','wassce','2009',56,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:09'),(488,'In Paul’s epistle to the Thessalonians, any Christian living \tin idleness should be','thrown out of the Church.','looked at as an enemy.','sympathized with','avoided by the others.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:10'),(489,'The two major obstacles against Abraham’s hope for a son were','impotency and old age','faithlessness and unbelief.','old age and barrenness.','sin and doubt.','','','b','','wassce','2009',65,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:11'),(490,'The theme justification by faith can only be achieved through','sacrifices to Jesus.','resurrection of Jesus.','redemptive power of Jesus.','response of angels to Jesus.','','','c','','wassce','2009',71,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:12'),(491,'According to Paul in Romans, if it is the adherents of the law who are to be the heirs of Abraham then faith in Jesus is','null and void.','not attainable','.     \t\t\t\\nbeyond the reach of Gentiles','transgression of the law.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:13'),(492,'“Your blood be upon your heads! I am innocent. From now on I will go to the Gentiles.” This was Paul’s utterance at','Antioch.','Corinth.','Lystra.','Ephesus.','','','d','','wassce','2009',70,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:14'),(493,'The preaching of the resurrection of Jesus by his disciples \twas opposed by the','Jews.','Elders.','Sadducees.','Pharisees.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:15'),(494,'The first missionary journey was started by Paul and','Judas','.      \\nBarabbas.','Timothy.','Barnabas.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:16'),(495,'During the election to replace Judas among the twelve, Peter quoted from the book of','Joel.','Psalms.','Isaiah.','Ezekiel.','','','b','','wassce','2009',75,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:17'),(496,'What was Herod’s reaction when he heard the news about Jesus’ birth?','He sent gifts','He was excited','He was troubled','He became calm','','','c','','utme','2015',73,'Admin','2016-11-12 13:28:12','2020-07-14 14:18:18'),(497,'“....... Behold, I will bring evil upon you; I will utterly sweep you away .....” Elijah pronounced destruction on Ahab with the statement above for his sin of','the killing of God’s prophets','worship of other gods','going to war against Ramoth-gilead','greed, covetousness and murder','','','a','','utme','2015',62,'Admin','2016-11-12 13:28:14','2020-07-14 14:18:19'),(498,'The ruler of the synagogue whose child Jesus raised to life was','Zebedee','a widow','Jairus','a centurion','','','c','','utme','2015',67,'Admin','2016-11-12 13:28:14','2020-07-14 02:17:50'),(499,'According to Amos, true religion entails','engaging in sacrifices and burnt offerings','being just and righteous','fasting and praying always','engaging in holy feasts and assemblies','','','b','','utme','2015',70,'Admin','2016-11-12 13:28:14','2020-07-14 12:27:50'),(500,'Paul in Romans said that the righteousness of God has been manifested through faith in Jesus Christ for','the exaltation of the authority','the cleansing of the sinners','the dead in Christ','all those who believe','','','d','','utme','2015',67,'Admin','2016-11-12 13:28:14','2020-07-14 12:27:52'),(501,'“I tell you, if these were silent, the very stones would cry out.” Jesus’ statement above was made when','He was rebuked by the Pharisees for eating with sinners','the scribes and the chief priest came to arrest Him','He consoled a woman on His way to the cross','the Pharisees asked Him to rebuke His disciples','','','d','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:29'),(502,'Before Moses brought the Israelites to meet God on Mount Sinai, he charged them to','touch the mountain at the sight of smoke','ensure they eat very well','wash the garments and be consecrated','mate with their wives for three days','','','c','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:30'),(503,'In His teaching about Himself, Jesus said the hireling is not a good shepherd because he','leaves the sheep and flees at the sight of danger','owns the sheep but does not care for them','cares for the sheep but does not discipline them','is the gate-keeper who shuts the sheep out','','','a','','utme','2015',71,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:31'),(504,'God displayed His supremacy when Ahab was king during \tthe','incidence of Naboth’s vineyard','war with Ramoth-gilead','inciting of Jehoshaphat against him','contest of Mount Carmel','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:32'),(505,'In his teaching on effective prayer, James said that the prayer of faith would','influence the authority','heal and cleanse sins','ensure salvation for the sick','enhance commitment to church','','','b','','utme','2015',57,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:32'),(506,'Paul in Thessalonians declared that at the second coming \tof the Lord, those who are alive will not precede those that are','ignorant','condemned','asleep','faithful','','','c','','utme','2015',52,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:33'),(507,'When Ezekiel ate the scroll that was given to him his call. it signified that','God would always go before him','his sins were forgiven','he would never be hungry','he was filled with God’s word','','','d','','utme','2015',53,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:35'),(508,'“ ..... I will surely tear the kingdom from you and will give it to your servant .....” An unwise decision of Solomon that resulted in God making the pronouncement above was his','dependence on other nations for supplies','policy of forced labour','neglect of God for other gods','heavy taxation on the people','','','c','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:35'),(509,'God fed the Israelites with Manna at the wilderness of','Zin','Elim','Sinai','Sin','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:36'),(510,'“The very stone which the builders rejected has become the head of the corner” The statement above in Peter was directed to those who','did not believe in Jesus’ preciousness','built the Temple of Jerusalem','don’t offer spiritual sacrifice','are hard hearted against Jesus Christ','','','d','','utme','2015',66,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:37'),(511,'A good example of parental responsibility was demonstrated by','Samuel','Eli','Asa','David','','','c','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:38'),(512,'Why did Pilate send Jesus to Herod during the trial?','Jesus, as a Galilean was under Herod’s jurisdiction','Pilate had no power to pass the death sentence','Herod’s court was the last point before crucifixion','Herod had longed to see Jesus perform miracles','','','a','','utme','2015',80,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:39'),(513,'Who was the king that granted Nehemiah permission to go and rebuild Jerusalem?','Darius','Nebuchadnezzar','Artaxerxes','Cyrus','','','c','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:40'),(514,'“Shall l pursue after this band? Shall l overtake them?” David’s dependence on God for direction is depicted in the statement above when','Absalom had revolted against him','Saul was within his grasp','the Amalekites had raided Ziklag','he was to go against Goliath','','','c','','utme','2015',63,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:41'),(515,'A parable that teaches a lesson on the demands of the kingdom is that of the','lost coin','Weeds','Samaritan','prodigal son','','','c','','utme','2015',61,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:42'),(516,'Paul admonished the Romans to live a new life in Christ by yielding themselves to God as men who','have been brought from death to life','will meet Christ in God’s Kingdom','will receive judgment on the last day','have suffered for the sake of the gospel','','','a','','utme','2015',54,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:43'),(517,'An action that demonstrated Solomon’s wisdom was his','judgment of the prostitute’s child','reliance on a medium','alliance with other nations','taxation policy for his building works','','','a','','utme','2015',75,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:44'),(518,'According to Corinthians, Paul while defending himself advised believers to boast only of the things that','exhibit their authority','show their weakness','display their exaltation','depict their righteousness','','','d','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-07-15 14:05:27'),(519,'The most important aspect of the religious reforms of King Josiah was the','renewal of the covenant','cleaning of the Temple','discovery of the tomb of the man of God','discovery of the book of the law','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:46'),(520,'Cornelius who was converted and baptized by Peter was a','member of the Sanhedrin','centurion','Gentile who persecuted the church','scribe','','','b','','utme','2015',77,'Admin','2016-11-12 13:28:15','2020-07-15 03:50:53'),(521,'David was successful as a leader in Israel because','he submitted to God’s guidance','of his training as a solider','of the love of his people','of his life as a shepherd','','','a','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:55'),(522,'The action that portrayed Moses as a leader of the Israelites was his','request to Pharaoh to spare Israelite’s sons','disobedience to Pharaoh and escape','killing of an Egyptian who fought with a Hebrew','protection of the daughter of Jethro','','','c','','utme','2015',62,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:56'),(523,'“How is it that you have agreed together to tempt the spirit of the Lord ....” The statement above was made in reference to the greed of','Gehazi and Naaman','Ahab and Jezebel','Judas and scribes','Ananias and Sapphira','','','d','','utme','2015',58,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:57'),(524,'The king who captured and drove the Israelites into exile during the reign of Jehoiachin was','Nebuchadnezzar','Darius','Cyrus','Artaxerxes','','','a','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:58'),(525,'Nebuchadnezzar decreed that all his subjects should worship the image he had set up whenever they','desired something from him','saw him stand before it','looked upon it','heard the sound of music','','','d','','utme','2015',54,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:59'),(526,'“The Son of man must suffer many things, and be rejected by the elders .....” Jesus made the statement above after He','cleansed the Temple','demanded to know who people thought He was','taught on the Mount','was asked by Pilate if He was the King of the Jews','','','b','','utme','2015',65,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:59'),(527,'How old was Abram when God appeared to him the second time?','105 years','75 years','99 years','85 years','','','c','','utme','2015',69,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:00'),(528,'“Leaves the dead to bury their own dead ....” Jesus’ statement above to the man He asked to follow Him was indicative of','His power over death','His desire to save the man','the futility of life','the cost of discipleship','','','d','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:01'),(529,'Paul in Romans advised believers to respect those in authority to avoid God’s wrath and also for the sake of','conscience','Christ','faith','others','','','a','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:02'),(530,'“What is this conversation which you are holding with each other ...” Jesus made the statement above to','Cleopas and the other disciple when','they were on their way to Emmaus','He was about to be arrested','they were gathered in a room after His resurrection','','','a','','utme','2015',70,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:03'),(531,'A key requirement for healing as exemplified by the disciple’s inability to heal the epileptic boy is','righteousness','power','humility','Faith','','','b','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:04'),(532,'According to Paul in Philippians, Jesus demonstrated humility when He','had pity on the possessed man','likened Himself to God','forgave those who crucified Him','took the form of man','','','d','','utme','2015',78,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:05'),(533,'“Holy, holy, holy is the Lord of host ....” The statement above was made in reference to the call of','Ezekiel','Jeremiah','Amos','Isaiah','','','d','','utme','2015',61,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:06'),(534,'For obeying His word, God rewarded Shiphrah and Puah with','families','positions','servants','wealth','','','a','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:07'),(535,'In his teaching on Spiritual gifts in Corinthians, Paul said that all gifts are inspired by','the same Spirit','prayer','the individual’s ability','grace','','','a','','utme','2015',73,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:08'),(536,'When David’s son Absalom rebelled against him, David was forced to','flee from Jerusalem','abdicate the throne','divide his kingdom','surrender to him','','','a','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:09'),(537,'“Go and stand in the temple and speak to the people all the words of this life.” The angel’s statement above to Peter was after','the murmurings of the Hellenists','his release from prison','his vision of eating unclean meat','he received the Holy Spirit','','','b','','utme','2015',53,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:10'),(538,'In His sermon on the Mount, Jesus discouraged His listeners from laying up treasures on earth because','it would create enmity','they would not be respected','thieves would steal them','the earth would pass away','','','d','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:11'),(539,'Paul returned Philemon’s slave back to him, to ensure that','Philemon forgave and accepted the slave','the slave can complete his service time','he would be welcome when he left prison','he could boast of Philemon’s obedience','','','b','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:12'),(540,'One of the prophets that prophesied hope for Israel in spite of God’s promise of punishment was','Amos','Jeremiah','Obadiah','Hosea','','','b','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:13'),(541,'The church that was commended for giving even when in extreme poverty was in','Galatia','Corinth','Macedonia','Thessalonica','','','d','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:19'),(542,'“........ I am the Lord, and there is no other, besides me \tthere is no God....” God’s statement above through Isaiah depicts','assurance to Isaiah of His existence','Israel’s acceptance of His Supremacy','His divine nature','His sovereignty','','','c','','utme','2015',72,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:21'),(543,'Believers today are partakers of the New Covenant through','partaking in baptism by immersion','the gift of the spirit','adherence to all the sacraments','obedience to church leadership','','','b','','utme','2015',55,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:22'),(544,'God’s message through Jonah’s was to the people of','Joppa','Tarshish','Samaira','Nineveh','','','d','','utme','2015',64,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:23'),(545,'Amos is often referred to as a prophet of','doom','love','hope','justice','','','a','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:24'),(546,'On the fourth day, God created the sun, moon and stars for the following purposes except','to separate the day from the night.','for signs of seasons, days and years.','to give light upon the earth.','to dry up flood from the face of the earth.','','','a','','wassce','2010',77,'Admin','2016-11-12 13:36:18','2020-07-14 14:19:25'),(547,'Which of the following rivers flowed out of Eden to water \tits garden? River','Abana','Pharpar','Pishon','Nile','','','c','','wassce','2010',69,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:26'),(548,'The wife of Moses was called','Rebecca.','Rachel.','Zipporah.','Deborah','','','c','','wassce','2010',71,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:27'),(549,'When Joseph was sent to his brothers, he met them pasturing at','Hebron.','Bethel.','Beersheba','Dothan','','','d','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:28'),(550,'How old was Joshua before he died?','95 years','98 years','110 years','111 years','','','c','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:29'),(551,'Why was Saul asked to destroy the Amalekites?','They were worshipping false gods','They opposed the Israelites when they left Egypt','They did not assist the Israelites','God did not like the Amalekites','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:31'),(552,'The first king of Israel lost his throne because he','was a weak king.','knew little about governance.','lost the support of Yahweh.','was irresponsible.','','','d','','wassce','2010',74,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:32'),(553,'During the Ammonite war Uriah disobeyed King David by refusing to go to his house to sleep because','it was wrong to go home drunk.','his wife would regard him as a coward.','it would be unpatriotic to break military vow.','he suspected that the king had lost interest in the battle.','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:34'),(554,'When Abner wanted to transfer his allegiance to David, the latter gave him the condition to','openly submit to Joab.','convince all Israel to come over to David.','restore his wife Michal to him.','slay Ishbosheth. Saul’s successor.','','','c','','wassce','2010',55,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:35'),(555,'God said to Solomon in a dream, <em>“Ask what I shall give you”</em>. What did Solomon ask for?','Power and authority','Great wealth and riches','Stable and long term in office','An understanding mind','','','d','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:36'),(556,'Solomon showed lack of wisdom when he','put up temples for the gods of his wives','married many wives with children','invited the Queen of Sheba','gave out judgment to two harlots.','','','a','','wassce','2010',64,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:37'),(557,'Solomon told Hiram, King of Tyre that he had decided to build a temple for the Lord because','the Lord had given him peace and all good things.','his father, David, never intended to build one.','he wanted to force Hiram to come to his aid.','Hiram had entered into a marriage alliance with his father.','','','a','','wassce','2010',63,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:38'),(558,'Elijah destroyed the prophets of Baal','to oppose Baal worship.','as an act of revenge.','as an act of sacrifice.','to shame Jezebel.','','','a','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:39'),(559,'Who was the king who reintroduced the Passover feast in Israel?','Jeroboam','Asa','Josiah','Rehoboam','','','c','','wassce','2010',76,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:40'),(560,'Who was the prophet responsible for the re-building of the Temple during the exile?','Ezra','Isaiah','Jeremiah','Ezekiel','','','a','','wassce','2010',70,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:41'),(561,'Which of the following prophets taught that Yahweh was merciful?','Isaiah','Hosea','Amos','Ezekiel','','','b','','wassce','2010',71,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:42'),(562,'Daniel was delivered from the lion’s den because','of his faith in God’s power.','of the king’s prayers.','he was able to charm the lions.','the lions were kind to him.','','','a','','wassce','2010',74,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:43'),(563,'The person who discovered the book of law in the sanctuary during the reign of Josiah was','Zedekiah','Huldah.','Hilkiah','Jeremiah.','','','c','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:44'),(564,'According to Amos’ prophecy, the “Day of the Lord” to the Israelites would be a day of','victory over enemies','happiness.','doom.','national triumph.','','','c','','wassce','2010',78,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:45'),(565,'Isaiah said that when Israel spread forth their hands, God would hide his face because they were','making many prayers','offering vain sacrifices.','worshipping God with their hearts.','observing elaborate feasts.','','','b','','wassce','2010',57,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:48'),(566,'From Luke’s account of the baptism of Jesus, which of the following happened before the voice was heard?','John was reluctant to baptize Him.','John called Jesus the Lamb of God.','Jesus arrived with Peter, James and John','The Holy Spirit descended upon Jesus.','','','d','','wassce','2010',84,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:49'),(567,'Before their first encounter with Jesus, Peter and Andrew were','preachers.','tax collectors.','fishermen.','tent makers.','','','c','','wassce','2010',63,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:50'),(568,'By the action of the Good Samaritan, Christians are encouraged to','go out to the streets and look for someone to help.','always travel with enough money in case the need arises to help.','show compassion and render help to the needy.','avoid travelling on lonely roads where armed robbers could attack.','','','c','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:51'),(569,'The <em>lost sheep</em> and the <em>lost coin</em> share the following except that','both of them are lost and need to be found','it is their owners’ responsibility to look for them.','the coin, may not know that it is lost.','their owners rejoice when they are found.','','','a','','wassce','2010',73,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:52'),(570,'The parable of the rich man and Lazarus indicates that','poverty is a mark of righteousness.','death is a leveler for rich and poor','only poor people will die physically.','all rich men are going to hell fire.','','','b','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:53'),(571,'In one of the resurrection appearances Jesus asked his disciples, whether they had anything to eat as he','was hungry after three days in the grave without food.','suspected that the disciples stock may have finished','wanted to prove to them that he was not a ghost.','wanted to replenish the food stuff.','','','b','','wassce','2010',59,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:54'),(572,'By introducing Jesus as the Lamb, John was pointing to','Jesus’ sacrificial death.','Jesus’ miraculous healing.','the Jewish yearly sacrifices.','the priestly function of Jesus','','','a','','wassce','2010',85,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:55'),(573,'St. John refers to Jesus’ miracles as ‘signs’ because they convey the following ideas except','acceptance of Jesus as son of God.','proofs of the kingdom of God.','faith in Jesus as the means to eternal life.','demand for more wonders.','','','d','','wassce','2010',60,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:56'),(574,'Apart from the miracles at the wedding feast, another miracle of Jesus at Cana in Galilee was','feeding the four thousand.','healing the noble man’s son.','healing of a man born blind','healing a paralytic man.','','','d','','wassce','2010',79,'Admin','2016-11-12 13:36:22','2020-07-15 13:50:19'),(575,'At whose well did Jesus meet the Samaritan woman?','Abraham','Isaac','Jacob','Joseph','','','c','','wassce','2010',66,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:05'),(576,'The lame man who was healed at the pool of Bethizatha was charged by the Jews for breaking the law of the Sabbath \tbecause he','consulted Jesus on the Sabbath day.','was carrying his pallet on a Sabbath day.','was on a journey on a Sabbath day.','was seen with Jesus on a Sabbath day.','','','b','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(577,'The descent of the Holy Spirit on the day of  Pentecost was prophesied by','Amos.','Joel.','David.','Ezekiel.','','','b','','wassce','2010',75,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(578,'When the apostles in Jerusalem heard that Samaria had received the gospel, they sent to them','Mark and Barnabas.','Peter and John.','Paul and John.','Peter and Paul.','','','b','','wassce','2010',85,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:07'),(579,'The conversion of the Ethiopian eunuch confirms the','universality of the gospel.','work of the Apostles.','work of Philip in Samaria','the love of God for the eunuch.','','','a','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:08'),(580,'After his conversion, Paul was introduced to the disciples in Jerusalem by','Peter','Ananias.','Barnabas.','Philip','','','c','','wassce','2010',65,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:09'),(581,'Before Barnabas and Saul were sent on missionary journey, the elders, laid hands on them. The laying on of  hands signifies','confirmation.','selection.','commissioning.','protection','','','c','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:10'),(582,'The man who delivered judgment of the Jerusalem Council on the admission of Gentiles into the Church was','Peter.','Paul.','Barnabas.','James.','','','d','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:11'),(583,'Why according to Paul must Christians be subject to civil authority?','To receive God’s approval','To avoid God’s wrath','God has commanded it','It is an Old Testament law','','','b','','wassce','2010',72,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:12'),(584,'In the Epistle to the Romans, justification is received through','faith in Jesus.','moral uprightness','observance of the law.','giving of alms','','','a','','wassce','2010',71,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:13'),(585,'By saying that no human being will be justified in the sight of God by works: Paul meant that','the mosaic law was useless in ensuring justification for man.','the law had been weakened in human flesh.','knowledge of sin came through the law.','Moses who gave the law was not justified by the law.','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:15'),(586,'Paul’s greatest writing about spiritual gift is found in his letter to the','Galatians.','Ephesians.','Romans.','Corinthians','','','d','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:16'),(587,'In Corinthians, Paul cited all the following resurrection appearances of Jesus except','Cephas.','The Twelve.','Mary Magdalene','James.','','','d','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:17'),(588,'According to Peter, a Christian should exercise his freedom by','doing what is right.','claiming his freedom at all cost.','enduring pain while suffering.','using it as a pretext for evil.','','','a','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:18'),(589,'In which of the following ways did the Philippians share in Paul’s suffering while in prison?','Appealing for the release of Paul','Sending him relief materials','Continuing in prayer for him','Remaining in partnership with him in receiving.','','','b','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:19'),(590,'What advice did Peter give to the elders of the church in their relationship with the younger members?','Work as if being under external constraint','Work without a domineering spirit','Work with a desire for material gains','Control their flocks with firm hands','','','b','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:20'),(591,'In Philippians, Paul taught that Jesus ‘humility and death on the cross earned Him','salvation for Israel.','adoption as son of God.','exaltation as Lord.','eternal life in the kingdom.','','','c','','wassce','2010',72,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:21'),(592,'Why did Paul wish to retain Onesimus?','To protect him from persecution','Christianity was opposed to slavery','Philemon had earnestly requested that from Paul','To serve him during his imprisonment','','','b','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:22'),(593,'James teaches that the man who shall be blessed is he who','hears the word of God.','knows the law perfectly.','does the word he hears.','teaches the word of God well.','','','c','','wassce','2010',71,'Admin','2016-11-12 13:36:23','2020-07-14 14:20:23'),(594,'Through God the Christian is no longer a slave but a son, and if a son then','a master.','a redeemed.','an heir.','a beneficiary.','','','c','','wassce','2010',68,'Admin','2016-11-12 13:36:23','2020-07-14 14:20:23'),(595,'Peter recommends submission to the civil authority so as to','silence the ungodly.','encourage the believers.','promote faith in God.','live as free men.','','','a','','wassce','2010',78,'Admin','2016-11-12 13:36:23','2020-07-14 14:20:24'),(596,'What was God’s purpose in creating man?','To be master of all creation','To help Him look after the garden','To name the things He created','To multiply and fill the earth','','','d','','utme','2010',83,'Admin','2016-11-12 13:46:53','2020-07-14 14:20:25'),(597,'Isaac’s prayer to God for his barren wife showed that he','truly loved her','sincerely loved his God','had faith in God','was tired of being childless','','','c','','utme','2010',74,'Admin','2016-11-12 13:46:54','2020-07-14 14:20:26'),(598,'In God’s covenant with Israel, the central theme was','restoration','circumcision','obedience','salvation','','','c','','utme','2010',85,'Admin','2016-11-12 13:46:54','2020-07-14 14:20:27'),(599,'‘Who am I that I should go to Pharoah......’ When Moses resisted God’s call with the state¬ment above, it portrayed his','stubbornness','incompetence','lack of strength','lack of eloquence','','','d','','utme','2010',77,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:28'),(600,'What was Samson’s major achievement as Israel’s leader?','He suppressed the Philistines','He captured the city of Jericho','He saved the Israelites from the Amorites','He secured permanent independence for Israel','','','a','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:30'),(601,'God guided the Israelites on their way from Egypt to the Promised Land by','the work of two angels','dividing the Red Sea','a pillar of cloud and a pillar of fire','miracles that gave them direction on the way','','','d','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:31'),(602,'‘Deal gently for my sake with the young man Absalom.’ David’s statement above exhibited his','indulgent love for his son','willingness to forgive his competitors','desire to punish Absalom himself','high level of parental control','','','a','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:32'),(603,'How did king Asa prove to be a godly king?','He killed all the prophets of Baal at Mount Carmel.','He saved Judah from the Philistine menace','He instituted spiritual reforms that removed all idols and prostitution in the land.','He made the worship of Yahweh mandatory for every Jew and sojourner.','','','c','','utme','2010',80,'Admin','2016-11-12 13:46:55','2020-07-15 13:50:19'),(604,'The Hebrew midwives who obeyed God rather than Pharaoh were blessed with','favour from all the Israelites','long life in Canaan','resources','families','','','d','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:34'),(605,'When Saul disobeyed God’s command, Samuel rebuked him by saying that','the sword would never depart from his house','to obey was better than sacrifice','he should fear the LORD and obey the people’s voice.','though he was little, yet he was the head.','','','b','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:35'),(606,'David’s behaviour after Prophet Nathan accused him of murder and adultery showed his','justification','repentance','greed','righteousness','','','b','','utme','2010',90,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:36'),(607,'How did King Solomon demonstrate his wisdom in settling the dispute over the ownership of a baby by the two \\nProstitutes?','He interrogated them for seven days until the truth was discovered.','He interrogated them for only three days and the truth was revealed','He asked them to divide the child into two and the mother was known.','He threatened to give the child to a neutral woman and the mother was known.','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:37'),(608,'The prophet who made known the imminent divi¬sion of the kingdom of Israel during Solomon’s reign was','Jehu','Ahijah','Elisha','Elijah','','','b','','utme','2010',80,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:38'),(609,'Naaman’s leprosy was transferred to Gehazi be¬cause Gehazi was','ambitious','anxious','covetous','contemptuous','','','c','','utme','2010',64,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:39'),(610,'Obadiah who was m charge of Ahab’s house hold demonstrated reverence for the LORD by','giving Elijah the bull for the sacrifice on Mount Carmel.','rebuking Ahab and Jezebel for their evil deeds','hiding a hundred prophets of God from Jezebel’s wrath.','helping Elijah to kill the prophets of Baal on Mount Carmel.','','','c','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:40'),(611,'Although Josiah removed the vessels of Baal and Asherah from the Temple, God did not turn from the fierceness of His \twrath because”','the people did not remove them completely','Jehoahaz, Josiah’s son, had provoked Him','Manasseh had provoked Him','the people had opposed Josiah.','','','c','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:41'),(612,'What was Nehemiah’s initial reaction to the news about the ruins of Jerusalem?','He tasked the people on what to contribute','He called for volunteers to assist him','He fasted and prayed for forgiveness of sins','He asked for permission to travel home.','','','c','','utme','2010',110,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:42'),(613,'After the dedication of the Temple, Ezra studied the law of the LORD in order to','defend the Jews against the Babylonians','become the first judge in Jerusalem','enhance his prophetic status','teach His statutes and ordinances in Israel.','','','d','','utme','2010',83,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:43'),(614,'Daniel became distinguished above all other pre¬sidents and satraps because','an excellent spirit was in him','the spirit of Darius was in him','he was a good administrator','he was highly educated.','','','a','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-07-15 14:05:27'),(615,'How did the Ninevites react to Jonah’s message?','They did not believe it','They believed it for a while','They repented of their sins','They ordered him out of their city','','','c','','utme','2010',67,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:45'),(616,'In Prophet Hosea’s analysis, harlotry is equivalent to Israel’s','prostitution','idolatrous practices','religious practices','adultery.','','','b','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:46'),(617,'‘... But let justice roll down like waters, and righteousness like an overflowing stream.’ Amos’ statement above suggests that the society was terribly','vindictive','abusive','oppressive','destructive','','','c','','utme','2010',83,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:47'),(618,'Isaiah emphasized holiness above all things be¬cause God','knew their hearts were right with him','was not interested in their sacrifices','who called them is holy','was searching their sinful   hearts.','','','c','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:48'),(619,'God told Ezekiel that the house of Israel would not listen to him because they','were a people of foreign speech','had forsaken His laws','were of a stubborn heart','had not truly repented','','','c','','utme','2010',86,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:48'),(620,'According to Isaiah, God sent him to','proclaim liberty to the captives','proclaim victory over Israel’s enemies','be a watchman over Israel','destroy and overthrow nations.','','','a','','utme','2010',81,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:49'),(621,'Jesus was tempted by the devil so as to','fulfil all righteousness','show His power over forces of nature','show that no one is above temptation','test the devil’s power','','','c','','utme','2010',92,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:50'),(622,'‘Depart from me, for l am a sinful man, oh Lord.’ This statement was uttered by Peter at the','last supper','garden of Gethsemane','call of the disciples','transfiguration','','','c','','utme','2010',99,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:51'),(623,'The impact of Jesus’ miracle of turning water into wine was that the','servants were astonished','master of ceremony believed','disciples believed more in Him','people glorified God.','','','c','','utme','2010',73,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:52'),(624,'After the healing of the demoniac in the country of the Gerasenes, the people begged Jesus to (Mark 5:15-19)','stay with them','visit them always','go away from them','heal their sick.','','','c','','utme','2010',83,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:53'),(625,'Jesus told the parable of the lost sheep in order to illustrate that','every believer ought to rejoice with those who rejoice.','no person can hide from God','God’s love is unlimited','there is joy in heaven over a sinner who repents','','','d','','utme','2010',78,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:54'),(626,'According to Jesus, the seventy disciples should rejoice because','their names were written in heaven','their faith and zeal were increased','of the submission of evil Spirits to them','of the fall of Satan from heaven like lightening.','','','a','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:55'),(627,'According to Mark, after the transfiguration, Jesus charged His disciples to','be prepared for persecution','tell no one what they had seen','have no hands in His betrayal','go to the Gentiles immediately','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:56'),(628,'According to Luke, the multitude that followed Jesus during the triumphal entry rejoiced and praised God with a loud voice because (Luke 19:37-39)','they realized that Jesus was a prophet','of the mighty works He had done','He was riding on a colt in humility','they believed He was their Messiah','','','b','','utme','2010',83,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:57'),(629,'‘Truly, I say to you, today you will be with me in paradise.....’ Jesus made the statement above to one of the \t\tcriminals because he (Luke 23:42-43)','respected Him','praised Him','rebuked his partner','was repentant','','','d','','utme','2010',75,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:58'),(630,'The message of the risen Christ to the women who came early to the tomb was to be relayed to the disciples and (Mark 16:7)','the Jews','the Sadducees','Thomas','Peter','','','d','','utme','2010',90,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:59'),(631,'According to the Gospel of John, Jesus is the true vine while the vinedresser is (John 15:1)','the Holy Spirit','His father','the gardener','His mother','','','b','','utme','2010',81,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:00'),(632,'‘...Why has Satan filled your heart to lie to the Holy Spirit..’ Peter rebuked Ananias in the statement above for his sin of (Acts 5:3-4)','greed','insincerity','covetousness','partiality.','','','b','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:00'),(633,'Paul informed the Galatians that the gospel he preached came through (Gal. 3:23-29)','a revelation of Jesus Christ','his desire to lead them','inspiration from the angels','the faith of men.','','','a','','utme','2010',79,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:01'),(634,'‘You son of the devil, you enemy of all righteous¬ness, full of all deceit and villainy .....’ This statement of Paul was addressed to (Acts 13:6-11)','Elymas, the magician','Paulus, the proconsul','Simon, the Magician','Demetrius, the silversmith','','','a','','utme','2010',85,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:02'),(635,'‘Unless you are circumcised according to the custom of Moses, you cannot be saved.’ The statement above by the men from Judea led to the','murmurs of the Hellenists','convening of the Jerusalem Council','persecution that scattered the disciples','circumcision of the Gentiles.','','','b','','utme','2010',92,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:03'),(636,'According to Galatians, the Law was added be¬cause of','righteousness','transgressions','grace','persecution.','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:04'),(637,'According to Galatians, the death of Christ has eliminate all forms of','suffering','differences','condemnation','poverty.','','','c','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:05'),(638,'Peter in his teaching no humility, admonishes Christians to','safeguard their faith','seek things that are above','be gentle in spirit','avoid life’s anxiety','','','b','','utme','2010',69,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:06'),(639,'Paul in Corinthians advised that Christians should re-affirm their love for those who','are kind to them','wrong them','humble themselves','are in authority.','','','b','','utme','2010',84,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:07'),(640,'According to Corinthians, variety of gifts are inspired by','fervent prayers','angels of God','constant fasting','the same Spirit','','','d','','utme','2010',76,'Admin','2016-11-12 13:46:56','2020-07-15 13:37:42'),(641,'According to Paul in Corinthians, generosity produce','righteousness','salvation','the grace of God','thanksgiving to God','','','d','','utme','2010',90,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:09'),(642,'Busy bodies and those living in idleness in the church at Thessalonica were admonished to','pray for those in authority for peace','do their work in quietness and earn a living','appeal to those in authority to create jobs','endure persecution from their masters.','','','b','','utme','2010',73,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:10'),(643,'Paul in Thessalonians told believers that the coming of the Lord would be accompanied by','songs of praise','the sound of the trumpet','signs and wonders','wailing and mourning','','','b','','utme','2010',76,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:11'),(644,'James stated in his epistle that when believers meet various trials, their faith produces','weakness','strength','steadfastness','righteousness','','','c','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:12'),(645,'Peter in his epistle enjoined servants to be sub¬missive to their masters with all','gentleness','seriousness','respect','humility.','','','c','','utme','2010',81,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:13'),(646,'According to Joseph’s interpretation to Pharaoh’s dreams; the seven empty ears blighted by the east wind represented seven years of','famine.','abundance.','farming.','Harvest','','','a','','wassce','2011',75,'Admin','2016-11-12 14:29:10','2020-07-14 14:21:14'),(647,'Moses was born at a period when the Hebrew were','suffering.','increasing.','backsliding.','rejoicing.','','','a','','wassce','2011',68,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:14'),(648,'“…who is the Lord that I should heed his voice and let Israel go”? After this statement, Pharaoh','engaged Israel into forced labour with task masters.','ordered midwives to kill all males born to Israelites.','asked Israelites to fetch their own straws to produce bricks.','decreed that Israelites’ male babies be drowned in the Nile.','','','c','','wassce','2011',71,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:15'),(649,'The name Moses means','baptized in water','abandoned in water.','drawn out of water.','thrown into water.','','','c','','wassce','2011',79,'Admin','2016-11-12 14:29:12','2020-07-15 14:05:27'),(650,'After the departure of the Israelites God made Pharaoh pursue them in order to','force Israel to return to Egypt.','hasten Israel’s journey through the wilderness.','make Israel obey Moses.','get glory over Pharaoh and his host.','','','d','','wassce','2011',80,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:17'),(651,'Who among the following kings was raised by God against the Israelites for going after the Canaanite gods?','Agap','Jabin','Zebah','Zalmunnal','','','c','','wassce','2011',67,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:18'),(652,'Deborah, a prophetess who was a judge in Israel was the wife of','Joshua.','Abijah.','Lappidoth.','Sisera.','','','c','','wassce','2011',71,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:19'),(653,'The sons of Eli were regarded as worthless men for all the following reasons except','sleeping with the women at the tent of meeting','failing to attend the places of worship regularly.','taking the meat for sacrifice before boiling.','showing no respect for God.','','','b','','wassce','2011',75,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:20'),(654,'Who was the first king of Israel?','Kish','David','Solomon','Saul','','','d','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:21'),(655,'Joel and Abijah were the sons of','Eli.','Saul','Samuel','David.','','','c','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:28'),(656,'“...Behold, to obey is better than sacrifice and to hearken than the fat of rams”. This statement was Samuel’s reaction to','David’s defense of his sin.','Saul’s defense of disobedience.','King Agag’s defense of his victory.','Eli’s defense of the sins of his sons.','','','b','','wassce','2011',76,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:29'),(657,'On Mount Gilboa, king Saul decided to commit suicide in order to avoid','ridicule from the Philistines.','witnessing the death of his sons','being killed by his armour-bearer.','the agony of the injuries received.','','','a','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:30'),(658,'David bitterly mourned when Abner was slain by','Ishbosheth.','Absalom.','Asahel.','Joab.','','','d','','wassce','2011',52,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:31'),(659,'One of the main features of Solomon’s prayer at the dedication of the Temple was the','celebration of God who is faithful to his covenant','recognition that God loves sacrifices.','assertion that God dwells in man-made houses.','proclamation that no prayers be henceforth made outside the temple.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:32'),(660,'In spite of Solomon’s apostasy, his empire remained intact until his death because','God deferred, for David’s sake, the punishment due to him','he won decisive victories over his enemies.','he always took wise decisions','. \\nhe made surrounding nations fight among themselves.','','','a','','wassce','2011',88,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:33'),(661,'“Your father made our yoke heavy. Now therefore, lighten the hard service of your father.” These were the words of','Jeroboam','Solomon','.         \\nDavid','Ahijah.','','','a','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:34'),(662,'Obadiah, Ahabs servant, made history for himself by','arresting the prophets of Yahweh','. \\nexecuting all the prophets.','hiding and feeding some of the prophets in a cave.','D inciting the prophets to rebel against king Ahab.','','','c','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:35'),(663,'The contest between Elijah and the prophets of Baal took place at mount','Olive.','Tabor.','Sinai','Camel.','','','d','','wassce','2011',56,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:36'),(664,'King Jehoshaphat was commended for adopting his father’s policies which included','removing Maacah, his grandmother from being queen.','waging wars with the king of Israel.','allowing the cult prostitutes to operate.','burning of incense at the high places.','','','a','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:42'),(665,'God’s constant love for unfaithful Israel is demonstrated in the book of','Amos','Isaiah','Hosea','Ezekiel','','','c','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:43'),(666,'During the rebuilding of the temple, Zerubbabel rejected the offer of help from the','inhabitants of Ammon.','people of Samaria.','friends of Sanballat and Tobiah','governors of the provinces beyond the rivers.','','','c','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-15 09:16:12'),(667,'“And I asked them concerning the Jews that survived, who has escaped exile, and concerning Jerusalem...” These were the words of','Jeremiah.','Nehemiah','Ezra.','Hanani.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:51'),(668,'The presentation of Myrrh to Jesus signifies Jesus’','humility and servant hood.','suffering and impending death.','lordship on earth.','kingship and messiah ship.','','','b','','wassce','2011',87,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:52'),(669,'“My son your sins are forgiven”. These were the words of Jesus to the','demoniac.','paralytic.','man born blind','centurion’s servant.','','','b','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:53'),(670,'Peter called for the construction of three booths for Jesus, Moses and Elijah, respectively during','the transfiguration.','the Ascension.','Jesus’ arrest.','the Passover feast.','','','a','','wassce','2011',82,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:53'),(671,'The incidents that took place following Jesus’ death on the cross did not include the','tearing into two of the temple’s veil.','quaking of the earth that broke the rocks.','the opening of the tombs.','trembling of the chief priest and his conversion.','','','b','','wassce','2011',69,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:54'),(672,'“How is it that you a Jew ask a drink of me...” This statement was made by the','Gentile woman.','woman of Samaria.','possessed woman.','woman of Galilee','','','b','','wassce','2011',69,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:55'),(673,'The Jews showed their hatred for Paul and Barnabas in Pisidia by','dragging out the apostles for stoning.','insisting and driving them out of the Synagogue.','influencing leading men in the city to drive them out.','beating and stoning them in the Synagogue','','','c','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(674,'When Jesus said “apart from me you can do nothing”, he \tmeant that Christians','pray without ceasing','. \\nmust faithfully trust in Him always.','cannot pass examinations if they did not pray.','should expect God to do everything for them.','','','b','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:57'),(675,'On the day of Ascension, Jesus promised his disciples','peace in the kingdom of God.','amazing grace.','power of  the Holy Ghost.','His abiding physical presence.','','','c','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(676,'On Ascension Day two men in white robes inform the disciples that Jesus would','send for them.','be seen in heaven.','prepare a place for them.','come again.','','','d','','wassce','2011',83,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:59'),(677,'“Go up and join this chariot”.  This statement was made to','John.','Paul.','James.','Philip.','','','d','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:00'),(678,'Saul was converted on his journey to','Samaria','Jerusalem.','Salamis.','Damascus.','','','d','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:01'),(679,'Which of the following places was not visited by Paul during his first missionary journey?','Salamis','Athens','Antioch of Syria','Antioch of Pisidia','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:02'),(680,'Paul was stoned and dragged out of the city by','the Lyconians and the Ephesians.','enemies of the healed lame man','. \\nJews from Antioch and Iconium.','Jews in the Synagogue.','','','a','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:03'),(681,'The resurrection of Jesus is significant to Christians for it \tmarked the','end of the Jewish faith.','assurance of eternal life for Christians.','beginning of Christianity','end of Jesus’ earthly ministry.','','','b','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:04'),(682,'According to Paul, ‘As sin reigned in death, grace also might reign through righteousness to','faith in God’.','the knowledge of God’.','eternal life','the glory of the father’.','','','c','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:05'),(683,'Paul in Romans declared “for as by one man’s disobedience many were made sinners, so by one man’s obedience many will be made...”','innocent.','righteous.','faithful.','Christians.','','','b','','wassce','2011',58,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:06'),(684,'Which of the following is not true about spiritual gifts as taught by Paul?','Gifts should be used with all modesty','No gift can be independent of others','Gifts have nothing to do with the level of one’s faith','Specific gifts perform specific functions','','','b','','wassce','2011',77,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:07'),(685,'In his comparison of the human body with the body of Christ, Paul did not mention the','hand.','foot.','eye.','nose.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:08'),(686,'The New Life in Christ operates through','humility.','the name of Jesus.','one body.','wisdom.','','','b','','wassce','2011',78,'Admin','2016-11-12 14:29:14','2020-07-15 13:37:42'),(687,'‘Death is swallowed up in victory, “oh death, where is your victory”? This statement is found in the book of','Corinthians.','Romans.','Galatians.','Philemon','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:10'),(688,'According to Paul in Corinthians the gospel message could only be lifeless when Christians','deny the resurrection message.','persecute one another.','gossip among themselves.','entertain idolatrous practices.','','','a','','wassce','2011',84,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:11'),(689,'Paul asked the Thessalonians to imitate his action of','demanding support from his converts.','performing miracles','healing the sick.','working for his personal upkeep.','','','d','','wassce','2011',76,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:12'),(690,'With respect to the date of the Parosia, Paul advised Thessalonians to','be sober in maintaining their hope of salvation.','disregard all speculations about it.','know that the day would be announced later.','enjoy peace and security in the face of danger.','','','a','','wassce','2011',82,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:13'),(691,'Paul, pleaded with Philemon to forgive','Barnabas.','Timothy.','Onesimus.','Silas','','','c','','wassce','2011',101,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:14'),(692,'James strongly condemned partiality in the Church for all the following reasons except that it','is contrary to Christ’s example of humility','accords due respect to the rich who merit it.','is a transgression of the commandment of God.','does not harmonize with the Christian virtue of love.','','','d','','wassce','2011',72,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:15'),(693,'The Galatians, were reminded by Paul that they were Abraham’s offspring and heirs according to','promise.','good works.','law.','grace.','','','a','','wassce','2011',66,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:16'),(694,'According to Paul in Galatians, law ceased to be our custodian as soon as','it was made available to us.','Christ adopted us as his children.','we adopted the faith of Abraham.','we stopped worshipping the elemental spirits.','','','b','','wassce','2011',61,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:29'),(695,'James advised Christians to portray their faith in Jesus by','listening to the word of God always.','converting others to Christ.','practicalizing their Christian belief','constant prayer and fasting.','','','c','','wassce','2011',76,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:30');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `currentaffairs` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `currentaffairs` VALUES (1,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:03'),(2,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:04'),(3,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:15'),(4,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:16'),(5,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:17'),(6,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013',576,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:18'),(7,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:19'),(8,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013',565,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:20'),(9,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013',551,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:21'),(10,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:22'),(11,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:23'),(12,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013',554,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:24'),(13,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:25'),(14,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013',577,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:25'),(15,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:26'),(16,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013',559,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:27'),(17,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013',588,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:28'),(18,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013',585,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:29'),(19,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013',572,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:30'),(20,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013',595,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:31'),(21,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013',566,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:32'),(22,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013',550,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:33'),(23,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013',540,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:34'),(24,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:35'),(25,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:36'),(26,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013',564,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:37'),(27,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:38'),(28,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013',571,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:39'),(29,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:40'),(30,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:41'),(31,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:43'),(32,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:44'),(33,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:45'),(34,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013',560,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:47'),(35,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:48'),(36,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:49'),(37,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013',583,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:50'),(38,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013',564,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:51'),(39,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:52'),(40,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013',583,'Admin','0000-00-00 00:00:00','2020-07-14 15:37:11'),(41,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:56'),(42,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013',583,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:57'),(43,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013',600,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:56'),(44,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013',619,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:57');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `economics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=658 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `economics` VALUES (1,'Which of the following is the best general definition of the study of economics? ','the best way invest in the stock market','business decision making under foreign competition ','individual and social choice','inflation unemployment in a growing economy','','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:31'),(2,'What implication does resources scarcity have for the satisfaction of wants?','not all wants can be satisfied ','we will never be faced with the need to make choice ','we must develop ways to decreases our individual wants ','the discovery of new resource.','','','a','','post-utme','2006',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:32'),(3,'In economics , rational decision-making requires that: ','one’s choices be arrived at logically and without error   ','one’s choice be consistent with one’s goals ','one’s choice never very ','one makes choice that do not involve trade-offs','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:33'),(4,'What happens to a supply curve when the variables that are normally held constant are allowed to changer? ','the curve flattens out','there is a movement along the curve','the curve shifts ','the curve becomes steeper.','','','c','','post-utme','2006',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:34'),(5,'If the price of Pepsi decrease relative to the price of coke and 7-up the demand for ','coke will decrease ','7-up will decrease ','coke and 7-up will increase','coke and 7-up will decrease.','','','d','','post-utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:35'),(6,'Suppose wages paid by a firm increase what would reasonably be expected to happen to the equilibrium price and equilibrium quantity for the firm’s output? ','price increase,  quantity decreases ','price decrease, quantity decrease','price decreases, quantity increase','price increases, quantity increase.','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:36'),(7,'When a nation’s exports are greater than its imports ','the net foreign trade is zero ','an unfavourable balance of payments exists ','a favourable balance of trade exists ','a favourable balance of payment exists.','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:37'),(8,'Inflation is likely to benefit ','persons with bank savings','persons who live on fixed pension funds ','creditors ','debtors.','','','d','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:38'),(9,'For which market model is there a very large number of firms? ','monopolistic competition','oligopoly ','pure monopoly ','pure- competition','','','d','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:38'),(10,'Which of the following is an economic cost ','uninsurable risk ','normal profit ','economic profit ','monopoly profit.','','','b','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:39'),(11,'Which tends to be a progressive tax in Nigeria? ','income tax ','property tax ','sales tax ','import- duties.','','','a','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:40'),(12,'A deficit budget is usually drawn up during ','economic buoyancy ','inflationary period ','war time ','economic recession.','','','d','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:41'),(13,'A drawer of a cheque is the ','person who is to be paid ','bank on which the cheque is drawn ','person who writes out the cheque ','bank official who certifies the payment. ','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:42'),(14,'The liability of a sole trade is','indeterminate ','unlimited ','limited ','transferable','','','b','','post-utme','2006',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:43'),(15,'Which of the following is regarded as fixed cost? ','cost of raw materials ','labour wages ','rent land ','cost of light.                                                                                                                                                                                                                   ','','','c','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:44'),(16,'Which of the following is not a member of OPEC?','Indonesia',' Iran ','Venezuela','Egypt','','','d','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:45'),(17,'The creation of utility can be referred to as ','value added ','profit marginalization ','production','entrepreneurship.','','','c','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:46'),(18,'The production within the domestic territory of a country is called the ','net national product ','gross domestic product ','disposable income','gross national product.','','','b','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:47'),(19,'Suppose a consumer’s income increases from N30,000 to N36, 000. As a result the consumer increases her purchase of compact discs (CDS) from 25 CDS to 30CDS.What is consumer’s income elasticity of demand for CDS?','0.5','1,0 ','1','1.5','','','b','','post-utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:48'),(20,'The Multiplier is always the reciprocal of ','MPC ','MPS ','APC','APS','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:49'),(21,'If the marginal propensity to save is 0.4 and consumption expenditure changes by N10 million , the equilibrium  level of income will change by ','N15.0million ','N4,0million','N2.5million ','N25million.','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:50'),(22,'Economic freedom is brought about by the existence of ','Government ','Money ','Availability of Credit ','choice','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:51'),(23,'The only essential attribute of the good currency is ','scarcity ','homogeneity','acceptability ','cognoscibility.','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:52'),(24,'Economic is founded on the principle that: ','Human wants are more than human needs ','Material things are more than human wants ','Human wants are limitless while the means to satisfy them are limited  ','Human while are easy to define','','','c','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:53'),(25,'The capitalist system is characterized by all the following except: ','private ownership of the means of production ','Equitable distribution of income and wealth  ','capital accumulation  ','markets and  prices coordinate economic activities','','','b','','post-utme','2007',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:53'),(26,'If the equation relating consumption (C) to income (Y) is C=  N7,500+0.2Y,then ','consumption is inversely related to income','consumptions is the independent variable and income is the dependent variable ','if income is N15,000, the consumption is N10,500 ','if consumption is N30,000 then income is N10,000','','','c','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:55'),(27,'The reason for the law of demand can best be explained in terms of ','supply ','complementary ','the rationing function of prices ','diminishing marginal utility','','','d','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:55'),(28,'The demand curve for the pure monopolists is ','perfectly  price elastic ','perfectly price inelastic ','down sloping ','up sloping ','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:56'),(29,'Which of the following statements is correct? The Central  Bank ','prints the country’s currency ','handles the collection of depts. Owed to the government','lends money to businessmen ','issues the country’s currency','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:57'),(30,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','Consumers are rational','Consumers are willing to make choices ','Consumers make consistent choices','','','d','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:58'),(31,'The slope of the budget constraint ','changes as the marginal rate of satisfaction changes ','is the ration of the prices of the two goods? ','is the ratio of the budget of total utility? ','Equals one, since the consumer can buy combination along the budget constraint.','','','b','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:59'),(32,'Disposable income equals ','Personal income less business profits ','personal income less taxes and subsidies ','personal income less taxes plus subsidies ','National income plus transfer payments','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:00'),(33,'The ‘term’ of trade’ means ','The trade agreement between two countries ','The difference in the volumes of exports of two countries ','The value of a unit of export in relation to the value of a unit of import ','None of the above.','','','c','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:01'),(34,'The burden of tax on a commodity whose demand is infinitely inelastic ','is Zero ','will be borne by sellers alone ','will be borne by buyers alone ','it impossible to tell','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:03'),(35,'Inflation can be curbed by ','Increasing aggregate demand ','paying higher wages ','reducing aggregate demand ','A deficit budget','','','c','','post-utme','2007',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:04'),(36,'The supply and demand for goods and service are influenced by the ','Super markets ','Entrepreneurs ','Mechanism of the law ','price mechanism.','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:05'),(37,'In a sole proprietorship, the decisions are made by the ','Government ','Board of directors ','Shareholder’s Conference ','Owner','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:06'),(38,'Which of the following are direct taxes? ','Income and company taxes ','Sale taxes ','commodity taxes ','Excise Duties','','','a','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:07'),(39,'The production within the domestic territory of a country is called the ','Net national product ','Gross domestic ','Disposable income ','Gross national product','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:08'),(40,'A producer sustains a loss in the short run if? ','marginal revenue is less than price ','price is less than average cost','marginal cost is less than marginal  revenue ','average variable cost is less than average cost','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:09'),(41,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with terms funds ','deals with money only while capital market deals with capital as well ','is limited in scope while capital market is not ','uses interest rate while capital market does not','','','a','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:10'),(42,'A production possibility curve shows ','how much of  the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combinations of two commodities that can be produced.','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:11'),(43,'The situation in which the total amount of government spending exceeds total called ','balance budget ','budget surplus ','budget deficit ','fiscal surplus ','','','c','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:12'),(44,'The maximization of profit tends to be driving force in the economic decision making of  ','entrepreneurs  ','workers ','consumers ','legislators','','','a','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:13'),(45,'Which of the following equations is the correct one about Net National Product (NNP)? ','NNP= Gross National Product (GNP) - Depreciation ','NNP=  Gross National product (GNP Net incomes from abroad ','NNP= Gross Domestic product (GDP) – Deprecation ','NNP = Gross Domestic product (GDP) – Net incomes from aboard','','','a','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:13'),(46,'Middlemen in a economy perform the function of ','protection ','hoarding ','distribution ','exchange','','','c','','post-utme','2007',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:14'),(47,'Which of the following statement is false? ','Ends in Economic are the resources with which it can attain our goals','Tables and graphs are focus of arithmetic technique used in economics to present ideas pictorially ','Three basic question every economy must answer are hat to produce, how to produce and for whom to produce ','A and B are substitutes if the supply of an increase, the price B will tend to increase.','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:15'),(48,' If the equation relating consumption (C) to income (Y) is C= N7,500 + 0.2Y, then ','consumption is inversely related to income ','consumption is the independent inversely related to income is the dependent variable ','if income is N15,000, the  consumption is 10,500 ','if consumption is N300,000, then income is N10,000','','','c','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:16'),(49,'Which of the following best describes a perfectly inelastic demand function? ','The quantity demand is insensitive to changes in price ','Price is insensitive changes in quantity ','price and quantity demanded changes by some percentage ','The demand function is horizontal.','','','a','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:17'),(50,' Which of the following statement is false? ','An economy where economic decision making is shared by individuals and government is known as mixed economy ','Given that apples and pears are substitutes, If the price of pear fall ','An elasticity of demand measured between two point on a demanded curve is called a point elasticity ','A and B are complements. If the supply of A decreases, the price B are tend to fall','','','c','','post-utme','2008',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:18'),(51,'Which of the following statement is true? ','if cross price elasticity that of demand between two goals, A and B, is negative we can conclude that A and B are substitutes ','the co-efficient of elasticity of demand is measured as a ration of change in quantity demand to change in price ','A market will be in disequilibrium when demand is not equal to supply ','All the above.','','','c','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:19'),(52,'The reason for the law of demand can best be explained in terms of: ','supply ','complementary goods ','the rationing function of price ','diminishing marginal utility.','','','d','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:20'),(53,'The demand curve for the pure monopolists is ','perfectly price elastic ','perfectly price inelastic ','down sloping ','up sloping','','','c','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:21'),(54,'Which of the following statement is correct? The Central bank ','prints the country’s currency ','handles the collection of debts of owed to the government ','leads money to businessmen ','issue the country’s currency.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:22'),(55,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','consumers are rational ','consumers make consistent ','choices.','','','d','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:23'),(56,'Which of the following equation is the correct one about Net National Product (NNP)? ','NNP= Gross National product (GNP) – Depreciation ','NNP = Gross National product (GNP) + Net incomes from abroad. ','NNP = Gross Domestic product (GDP) – Depreciation ','NNP = Gross Domestic product (GDP) – Net incomes from abroad.','','','a','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:24'),(57,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with long term funds. ','deals with money only while capital as well ','is limited in scope while capital market does not. ','Uses interest rates while capital market does nor.','','','a','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:25'),(58,'A production possibility curve shows ','how much of the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combination of two commodities that can be produced.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:26'),(59,'The situation in which the total amount of government spending excesses total revenues is called a:  ','balance budget ','budget surplus. ','budget difficult ','fiscal surplus','','','c','','post-utme','2008',97,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:27'),(60,'The maximization of profit tends to be the driving force in the economics decision making of:','entrepreneurs. ','Workers ','consumers ','legislators.','','','a','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 02:16:53'),(61,'Which of these factors does not cause a change in demand? ','Income ','Population ','price of the commodity itself.','Quantity of commodity','','','d','','post-utme','2008',103,'Admin','0000-00-00 00:00:00','2020-07-14 02:10:22'),(62,'When the demand for a commodity is inelastic, total revenue will fall if ','price is increase ','price remains constant ','price is reduced ','The commodity is a luxury.','','','c','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:30'),(63,'An economic system in which most capital goods are owned by individual and private firms is known as ','planned economy ','Capitalist economy. ','Mixed economy ','Socialist economy.','','','b','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(64,'Which of the following is the most liquid asset to a commercial bank? ','cash ','money at call ','stock and shares ','Treasury Bills.','','','a','','post-utme','2008',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:32'),(65,'A recovery point on an indifference curve, the ','Total utility is decreasing ','Level of utility is constant ','Consumer is satisfied ','','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:33'),(66,'Which of the following does not hinder the efficient distribution of goods in West Africa? ','Government participation in the distribution trade ','Inadequate storage facilities for agricultural goods ','Inadequate credit facilities for potential distribution ','the tendency to hoard and smuggle.','','','a','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:34'),(67,'Which of the following is the most important reason why wages differ among occupation? ','Length and cost of training ','Supply of Labour ','Attractiveness ','Influence of trade Unions','','','c','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:35'),(68,'Tax incidence is the analysis of  ','How progressive a tax is ','How distorting a tax is ','Who ultimately pays the tax ','How a tax is collected.','','','c','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:36'),(69,' A monopolist will practice price discrimination in two market if ','there is a patent of the commodity ','There is free flow of information in the market ','The markets have different elasticity of demand ','The cost of separating the markets is low.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:39'),(70,'Which of the following is regarded as fixed cost? ','Cost of raw materials ','rent on land ','Labour wages ','cost of light.','','','b','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:40'),(71,'Given that fixed cost is N500.00, Variable cost is N1,500.00 and output is 40 units, what will be the average cost of producing one units? ','N12.50.00 ','N50.00 ','N37.50 ','N500.00','','','b','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:41'),(72,'For two substitute goods, the gross elasticity of demand is ','Greater than one but lee than zero ','zero ','Negative ','Positive ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:42'),(73,'If a person receives a higher wage than would be necessary to induce him to work, he is be receiving','rent ','profit ',' interest ',' gain ','','','a','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:43'),(74,'Which if this is likely to be inflationary ','Tax increase ','Budget surplus ','increase in unemployment ','wage increase ','','','d','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:44'),(75,'A characteristic of a debenture is that ','Its yield is based on profit ','Its yield is a fixed rate of interest ','It has no redemption date ','There is a voting when interest is paid ','','','b','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:45'),(76,'Which of these is not included in measuring national income by the income approach? ','Wages and salaries of public servants ','students branches and scholarships ','profit of international ','income of self-employment persons ','','','b','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:46'),(77,'The revenue accruing to the seller of commodity X as a result of a fall in price will ','increase','fall ','first fall but increase later  ','Remain unchanged ','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:47'),(78,'Deflation is persistence fall in price in the general price level and is usually caused by ','A reduction in total demand ',' An increase in government spending ',' an increase in money supply to banks ','An increase in aggregate demand ','','','a','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:48'),(79,'Under partnership, investors who have no desire to be actively involved in the day-to-day management of such organization are called ','Stock brokers ','Sleeping partners ','part-time investor ','Ordinary partners ','','','b','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:49'),(80,'In a sole proprietorship decision are made by the ','Government ','Board of directors ','Management ','Owners.','','','d','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:50'),(81,'A greater burden of taxes on essential goods in borne by the ','middle income group ','Higher income group ','Lower earning people ','People falling between the middle and higher income group ','','','c','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:51'),(82,'Demand as a factor of production is ','a composite demand ','joint demand ','A derived demand','An elasticity of demand ','','','c','','post-utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:52'),(83,'One disadvantage of sole proprietorship is its ','Limited liability ',' High profit ','High sense of ownership ','Low credit rating ','','','d','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:53'),(84,'The monetary system that requires double coincidence of wants is known as ','The gold standard ','The gold standard ','The commodity system ','The gold standard ','','','b','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:54'),(85,'The marginal theory of distribution makes an assertion that the price of any factor depends upon its marginal ','Unity ','Productivity ','rate of substitution ','revenue ','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:55'),(86,'By using exchanges controls, a country tries to eliminate a balance of payment deficit by ','limited her imports to its currency value of exports ','Reducing the nation’s domestic piece level ','limiting her exports to its currency value of exports ','Undervaluing, the country’s currency.','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:56'),(87,'Economics of scale operates only when ','Marginal cost is falling with output fixed cost is variable ','fixed cost is variable ','variable cost is less than fixed cost ','variable cost is equal to cost of output.','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:57'),(88,'If an increase in income induces a reduction in the demand for beans, beans can be referred to as: ','A normal good ','An inferior good ','A substitute ','A dash ','','','b','','post-utme','2009',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:58'),(89,'Optimum population is desirable because it enable an economy to attain maximum ','per capital income ','per capital output ','per capital real income ','per capital revenue ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:59'),(90,'Marginal cost curve intersects average cost curve ','from above at its lowest point ','from below the lowest point ','from below at its lowest point ','from below after the lowest point ','','','c','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:00'),(91,'The concept of economic efficiency refers to: ','obtaining the maximum output from available resources at the lowest possible cost ','Conservation of natural gas and oil deposits ','equity in the distribution of national resource ','Producing without waste ','','','a','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:01'),(92,'A major factor affecting the value of money is the: ','price level ','banking habit ','Transaction motive ','Divisible nature of money ','','','a','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:02'),(93,'Which of the following is an example of invisible item on balance of payments account?','Shipping and aviation ',' Import and Export ','Merchandise ','Bullion ','','','a','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:03'),(94,'The best index for indentation comparison of standard of living is the ','Gross national product ','Net national income ','per capital income ','Gross national income.','','','c','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:04'),(95,'A major obstacle to economic development in many African countries ','A rise in industrial output ','Low farm productivity ','Free interaction ','Controlled international relations.','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:05'),(96,'The most popularly adopted industrialization strategy in West African ','import substitution ','Export promotion ','parts development ','infant industries potation.','','','b','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:06'),(97,'The basic concepts of Economics are ','choice, scarcity, resources and efficiency   ','wants, scarcity, choice, scale of preference and opportunity cost','wants, scarcity and choice  ','wants, choice, scale of preference and opportunity cost ','','','b','','post-utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:07'),(98,'In Economics human wants are usually described as  ','many','insatiable ','limited','numerous','','','b','','post-utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:08'),(99,'Basic economic problems of society include the following except:  ','what to produce','how to produce ','where to produce  ','for whom to produce ','','','c','','post-utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:09'),(100,'An economic system can be defined as an ',' arrangement specifying how production and consumption are controlled in a   society ','arrangement whereby goods are distributed in a society  ','arrangement whereby human wants are satisfied in a society  ','arrangement specifying how productive resources are distributed in a society ','','','a','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:10'),(101,'The following are features of a free market economy except ','private ownership of properties  ','existence of competition ','high level of profit maximization by private investors  ','joint decision-making by the citizens in a society.','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:11'),(102,'In a capitalist society, production and consumption are regulated by the: ','demand for the commodity ','the government  ','price system  ','private individuals ','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:12'),(103,'The following are advantages of socialism except ','equitable distribution of resources','absence of exploitation  ','equitable distribution of income ','promotion of high standard of living ','','','d','','post-utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:13'),(104,'Marginal Produce (MP) is best defined as ',' Total produce/no of labour','Change in total product/ change in variable factor','Total product/ fixed factor','Average product/ no of Labour','','','b','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:15'),(105,'Which of the following is NOT a limitation to division of labour and specialization ','the size of the market','availability of capital ','interdependence among the workers ','the nature of the product ','','','b','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:16'),(106,'The following are the advantages of internal economics of large scale production except ','financial economics ','administrative economics ','technical economics ','market economics','','','b','','post-utme','2011',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:19'),(107,'Which of the following is TRUE of marginal cost? ','it is a cost incurred by the firm on variable inputs ','it is the cost of producing one extra unit of a commodity at any output level ','it is the sum of the fixed cost and variable cost','it is referred to as overhead cost','','','b','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:20'),(108,'Which of the following items is NOT a variable cost? ','cost of machine ','cost of electricity ','salaries and wages','cost of raw materials.','','','a','','post-utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:21'),(109,'Which of the following is NOT True of a market demand schedule? ','it is a schedule of all consumers of a commodity in a market ','it is the aggregate demand schedule of all consumers of a commodity in a market ','it is a table showing the different quantities of a community which a consumer would purchase at various prices ','it is a table showing the composite demand schedule of all consumers of a commodity in a market.','','','c','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:22'),(110,'Supply is said to be inelastic when the coefficient of elasticity of supply is ','2.5','0.5','zero ','infinity ','','','b','','post-utme','2011',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:23'),(111,'Price legislation can be defined as ','how price fluctuates in the market','how prices are controlled in the market  ','how to avoid inflation  ','how the government fixes the prices of essential commodities.','','','d','','post-utme','2011',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:24'),(112,'Price discrimination exists when  ','The same product of the same quality is sold for different prices of the same buyer  ','The same product of the same quality is sold for different prices to different buyers  ','Different products are sold for the same price to the same buyers  ','Different products are sold for the same price to different buyers.','','','b','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:25'),(113,'A commodity is said to be price inelastic if  ','Changes in the quantity purchased of a good is less than proportionate changes in its price  ','Changes in the quantity purchased of a good is proportional to changes in its price  ','Changes in the quantity purchased of a good is more than proportionate changes in its price  ','The quantity purchased of a good never responds to change in its price.','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:26'),(114,'The parameter ‘b’ in a consumption function of the form; C = a + bY; where Y is the National income is  ','Marginal benefit of consumption  ','Marginal propensity to purchase  ','Marginal propensity to consume  ','Marginal propensity to save ','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:27'),(115,'Indifference curve and isoquant are respectively relevant is  ','Theories of consumer behaviours and production  ','Theories of human indifference and production  ','Theories of trade and production  ','Theories of production and trade','','','a','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:28'),(116,'Perfect price elastic supply means  ','No change in supply as price changes  ','Any change in price completely stops supply  ','Changes in price double supply  ','A change in price leads to proportionate change in supply','','','b','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:29'),(117,'Change in demand and change in quantity demanded are not the same because  ','All factors affecting change in demand also affect change in quantity demanded except income  ','All factors affecting change in demand are not affecting change in quantity demanded except income  ','Many factors leads to change in demand but only change in price affect change in quantity demanded   ','Many factors leads to change in demand but only change in income affect change in quantity demanded','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:30'),(118,'The following is the main difference between firm and industry  ','Industry is the group of firms producing related products  ','Industry is the group of firms in the manufacturing sector  ','Industry is the group of firms in different sectors of the economy  ','Industry is the group of firms with a single pressure group','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:31'),(119,'Roles of central bank include the following except  ','Lender of last resort to commercial bank  ','Banker to commercial bank  ','Regulator to both the money and capital markets ','Receipt  of government deposits','','','b','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:32'),(120,'Ordinary shareholders and preferential shareholders are different because ','Preferential shareholders participate and can vote and be voted for during the  AGM  ','ordinary shareholders are given priority in case the company is liquidated  ','Preferential shareholders are prominent shareholders than ordinary shareholders  ','Ordinary shareholders are the core shareholders in the company','','','d','','post-utme','2012',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:43'),(121,' Yam and palm oil are together; therefore  ','Yam is a substitute good while palm oil is a complementary good  ','Yam is complimentary good while palm oil is a substitute good  ','Yam and oil are complimentary goods ','Yam and beans are substitute goods','','','c','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:44'),(122,'Private and public limited liability companies are not the same because  ','Former is limited to fifty shareholders but not the later  ','both are not legal entities  ','Former is established secretly but latter is located in central places  ','Former is managed by board of directors but latter is managed by board of management.','','','a','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:44'),(123,'If salary of worker increases from 50,000 to 80,000 Naira and average price of certain commodities consumed by the worker increase from 120 Naira to 160 Naira then  ','The nominal income increases but leave the real income constant  ','The real income increases, but nominal income has reduced  ','The nominal income increases, but real income decreases  ','Both the nominal and real income increase','','','d','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:45'),(124,'Discount rate means  ','Rate at which money are borrowed from commercial bank  ','Rate at which bank receive deposit from the public  ','Central bank rate on the money borrowed by commercial banks  ','Commercial bank rate on the money borrowed from other commercial bank','','','c','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:46'),(125,'When the government expenditure and income are the same in fiscal year, this is referred as;','Net balance  ','Zero balanced budget  ','Balanced budget  ','Net income ','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:48'),(126,'Inflation as a result of increase in the payment for factors of production is called  ','Cost-pull inflation  ','Demand-push inflation  ','Cost-push inflation  ','Demand pull inflation ','','','c','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:50'),(127,'When Lump-sun tax is paid by a producer, it means that;  ','The tax is paid proportional to the quantity of output produced  ','The tax is paid regardless of volume of output  ','The tax is paid in arrears  ','The tax is returned to the producer after the payment','','','b','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(128,'The following is not correct  ','Average variable cost equals average total cost minus average fixed cost   ','Average fixed cost equals average variable cost minus average total cost  ','Average total cost equals average variable cost plus average fixed cost  ','Average total cost minus average variable cost equals average fixed cost ','','','b','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:53'),(129,'Normal profit means;  ','All the accountant cost are covered but not all the economist cost  ','All the economist cost are covered but not all the accountant cost  ','More than economist cost are covered  ','None of the economist and Accountant costs is covered ','','','a','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:54'),(130,'If the price of commodity X increases because of the increase in the price vis-à-vis the increase in demand  for other commodities are likely to be  ','Complimentary  ','Substitute  ','Compose  ','Intermediate','','','a','','post-utme','2012',88,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(131,'The following may not inflate the National Income figure ','Student’s bursary  ','Owners occupied houses  ','Office Inducement  ','Intermediate goods','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:57'),(132,'Legal Entity means  ','A company is owned by large number of people  ','A company is owned by small number of people  ','A company is insulated against litigation  ','A company is not insulated against litigation ','','','d','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:58'),(133,'In the ownership structure of joint stock company the following is correct;  ','Ordinary shareholders are stronger than preferential shareholders  ','Preferential shareholder are stronger than ordinary shareholders  ','Ordinary shareholders are settled first in case of company’s liquidation  ','Ordinary and preferential shareholders are perpetual rivals ','','','a','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:59'),(134,'The difference between the output proceedings of Nigerians abroad and foreigners in Nigeria is known as;  ','Net export to abroad  ','Net import from abroad  ','Net income from abroad  ','Net income to abroad','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:01'),(135,'A stock variable is measured;  ','Over a period  ','At a point  ','Consistently  ','Intermittently ','','','b','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:02'),(136,'The following is not true of price mechanism ','Equilibrium price is determined by forces of demand and supply  ','Individual households and firms pursue personal interest  ','Producers and consumers are rational in decision making ','Price control in prominent in the commodity and input markets.','','','d','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:03'),(137,'In the short run, all of the following are applicable except  ','Output may be increased by changing all factors by the same proportion  ','Diminishing returns   ','There are sunk costs ','The total cost curve is the same as the total variable cost curve ','','','a','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:04'),(138,'The sum of MPS and MPC is  ','greater than 1 but less than infinity  ','greater than 0 but less than 1 ','equal to 1 ','none of the above','','','c','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:06'),(139,'For a perfectly competitive market, the shape of the --------- is horizontal while the ----------- is downward slopping  ','industry’s demand curve/industry’s supply curve  ','firm’s supply curve/industry’s demand curve  ','firm’s demand curve/industry’s demand curve  ','industry’s demand curve/firm’s demand curve','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:07'),(140,'Demand for money is: ','Composite demand  ','Derive demand  ','Joint demand  ','C and B ','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:08'),(141,'If the cross elasticity of demand between X and Y is zero, then   ','X and Y are substitutes ','X and Y are complements ','X and Y are dependent on each other  ','X and Y are independent of each other ','','','d','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:10'),(142,'Which of the following correctly defines inflation? ','A one-time increase in commodity prices ','A period when prices increase rapidly','A sustained increase in the overall price level ','An increase in the overall level of business activity','','','c','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:24'),(143,'If a market for good X is in disequilibrium, which of the following statements is true about the quantity of X that is actually exchanged?  ','It is determined by the forces of demand  ','it is determined by the forces of supply  ','it is determined by both demand and supply forces  ','it is determined by the forces of demand or supply whichever is shorter ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:25'),(144,'How can we eliminate a surplus in a commodity market? ','Increase quantity supplied ','Decrease quantity demanded  ','Allowing price to fall towards equilibrium  ','Allowing price to rise towards equilibrium ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:26'),(145,'Identify one among the following which is NOT part of the objectives or functions of the African Development Bank (ADB). ','Provision of technical assistance for development projects   ','Provision of funds for the supply and demand of infrastructural facilities  ','Adoption of a common tariff policy for trade and development  ','Provision of fund for agricultural development','','','c','','post-utme','2013',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:27'),(146,'When the product of any one firm in an industry is not  perceived by consumers as a perfect substitute for the product of any other firm in the same industry, we have ','Perfect competition','Monopoly  ','Oligopolist ','Monopolistic competition   ','','','b','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:28'),(147,'In which of the following situations do we have a free good?  ','At zero price, more is demanded than supplied  ','At zero price, quantity supplied exceeds quantity demanded  ','At equilibrium price, quantity supply is equal to quantity demanded. ','Any quantity can be obtained when the price is low ','','','b','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:29'),(148,'In economics, a commodity is said to have an opportunity cost because  ','The price of the commodity is high  ','The commodity is scarce  ','Another good may have been purchased instead of it  ','The commodity provides many benefits','','','c','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:30'),(149,'One among the following options is not correct ','Any point inside the production possibility curve indicates unemployment or underemployment  ','Increase in the price of a commodity leads to a fall in the demand for its substitute ','The fixing of price above the equilibrium price level leads to surplus of the commodity ','An increase in both market supply and market demand may not result in a change in equilibrium price and quantity. ','','','d','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:31'),(150,'A country’s aggregate consumption was N20 million when its GDP was N100million. Following an increase in GDP to N120 million, consumption increased to N25 million. The marginal propensity to consume is given as','0.25','0.5','0.75','0.8','','','a','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:37'),(151,'Which of the following is not a measure for controlling inflation by the central bank?  ','Open market operation  ',' Reserve requirements  ','Sale of treasury bills ',' change of central Bank Governor','','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:39'),(152,'A 50% increase in the quantity demanded of a commodity, following a 100% decrease in its price, shows that the commodity has ','Fairly elastic demand  ','Unitary elastic demand','Inelastic demand','Perfectly elastic demand ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:40'),(153,'A total utility is increasing, marginal utility is  ','Negative and decreasing  ','Positive and increasing  ','positive and decreasing   ','Zero','','','c','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:41'),(154,'Which of the following statements is true? ','Disposable income is the only variable that determines consumption   ','Investment spending is positively related to the rate of interest   ','imports lead to a decrease in the level of exports  ','Imports lead to a decrease in spending on locally produced goods and services.','','','d','','post-utme','2013',98,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:42'),(155,'Which of the following will benefit a producer who wants to maximize profit?  ','reduce price when demand is inelastic ','increase price when demand is elastic   ','reduce price when demand is elastic  ','fixed the price of his commodity based on the price of other producers.','','','c','','post-utme','2013',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:45'),(156,'Based on the fact that demand curve shows the maximum price at which consumers will buy, it then shows ','average benefit   ','marginal benefit  ','total benefit  ','optimal satisfaction ','','','b','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:46'),(157,'Money that a government has required to be accepted in settlement of debts is ','commodity money  ','currency value  ','barter   ','legal tender ','','','d','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:47'),(158,'Which of the following is one of the responsibilities of the Central Bank of Nigeria? ','issuing new bond to finance public sector borrowing requirements  ','auditing the various agencies and departments of government  ','loaning money to other countries that transact business with Nigeria  ','assisting banks that are in financial position ','','','a','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:54'),(159,'The law of comparative cost and absolute cost advantage are not the same is that; ','Former require that one of the countries has absolute advantage in the two goods but latter does not   ','Former requires one country to have at least absolute advantage in one of the trading goods over the other country but latter does not.','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in all the goods.  ','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in at least one of the goods.','','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:55'),(160,'When demand for a product is price inelastic, the following can happen  ','Consumers suffer the entire increase in tax on the product   ','producer suffers the entire increase in tax on the product  ','producer suffers larger proportion of the increase in tax on the product  ','consumers suffer larger proportion of the increase in tax on the product ','','','d','','post-utme','2013',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:56'),(161,'Disposable income means:','Income that is lost after tax has been removed   ','Income that could be spent when tax has been removed   ','Income that tax authority mandated to be given to charity when tax has been removed  ','Income to be disposed secretly for future spending after tax has been removed ','','','b','','post-utme','2013',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:57'),(162,'In economics, the pleasure, happiness, or satisfaction received from a product is called: ','Marginal cost ','Rational outcome ','Status fulfillment ','Utility.','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:07'),(163,'A person should consume more of something when its marginal: ','benefit exceeds its marginal cost ','cost benefit ','cost equal its marginal benefit ','benefit is still positive.','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:18'),(164,'Macroeconomics can best be described as the: ','analysis of how a consumer tries to spend income ','study of the large  aggregates of the economy or the economy as whole ','analysis of  how firms attempt to maximum their profits ','study of how supply and demand determine price in individual markets.','','','b','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:44'),(165,'When economics say that people act rationally in their self-interest, they mean that individual: ','look and pursue opportunities to increase their utility ','generally disregard the interest of others ','are mainly creatures of habit ','are unpredictable','','','a','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:01'),(166,'As it relates to international trade, dumping: ','is a form of price discrimination illegal under U.S antitrust laws ','is the practice of selling goods in a foreign market at less than the cost ','Constitutes a general case for permanent tariffs ','is defined as selling more goods than allowed by an import quota.','','','b','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:07'),(167,'A nation’s production possibility curve is bowed out from the origin because:','wants are virtually unlimited ','the originator of the idea drew it this way and modem economists follow this convention ','resources are scare ','resources are not equally efficiency in producing every good.','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:11'),(168,'If the production possibilities, curve were a straight down sloping line, this would suggest that: ','it is possible to produce  more of both products ','resources are perfectly shift able between the production  of these two goods ','both products are equally capable of satisfying consumer wants ','the two products have identical price.','','','b','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:16'),(169,'Productive efficiency refers to: ','the use of the least-cost method of production ','the production of the product-mix most wanted by society ','the full employment of all available resources ','production at some point inside of the production possibilities curve.','','','a','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:22'),(170,'Which of the following statement is correct? ','if demand increase and supply decrease equilibrium price will fall ','if supply increase and demand decrease, equilibrium price will fall ','It demand decrease and supply increase increases, equilibrium price will rise ','If supply declines and demand remain constant, equilibrium price will fall.','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:33'),(171,'If depreciation exceeds gross investment: ','the economy’s stock of capital may be either growing or shrinking  ','the economy’s stock of capital is growing ','net investment is zero ','the economy’s stock of capital is shrinking.','','','d','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:38'),(172,'Assuming the total population is 100 million, the civilian labour force is 50 million and 47 million workers are employed, the unemployment rate is ','3%','6%','7%','5.30%','','','b','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:39'),(173,'Unemployment involving a mismatch of the skills of unemployment workers and the skill required for available jobs is called: ','frictional unemployment ','structural unemployment ','cynical unemployment ','','','','b','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:40'),(174,'The greater is the marginal propensity to consume, the: ','smaller is the marginal propensity to save ','higher is the interest rate ','lower is the average propensity to consume ','lower is the rice level.','','','a','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:41'),(175,'Investment and saving are, respectively: ','income and wealth ','stock & flows ','injection: and leakages ','leakages and injections:','','','c','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:43'),(176,'The amount by which government expenditures exceed revenues during a particular year is the: ','public debt ','budget deficit ','full- employment ','GDP gap.','','','a','','post-utme','2010',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:44'),(177,'The value of money varies ','inversely with the price of level ','directly with the volume of employment ','directly with the price level ','directly with the interest rate.','','','a','','post-utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:45'),(178,'If actual reserves in the banking system are #40,000, excess reserves are #10,000, and checkable deposits are #240,000, then the legal reserve requirement is: ','10%','12.50%','20%','5%','','','b','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:46'),(179,'The discount rate is the interest: ','rate at which the Central Bank of Nigeria lends in the Nigeria Government ','yield on long-term government bonds ','rate at which commercial banks lend to the public ','rate at which the Central Banks of Nigeria lend to commercial banks.','','','d','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:47'),(180,'Assume a household would consume N100 worth of goods and services per week if its weekly income were zero and would spend an additional N80 per week for each 100 of additional income, if C represents consumption and Y income the equation that summarizes this relationship is','C =8+100Y ','C=100+8Y ','C = 100+80Y ','C=80+1Y','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:48'),(181,'For a bicycle company, an economist predicted that, other things being equal, a rise in consumer incomes will increase the demand for bicycles. This prediction is based on the assumption that: ','there are many goods that are substitutes for bicycles ',' there are many goods that are many goods that are substitutes for bicycles','there are many goods that are substitutes for bicycles ','bicycles are normal goods','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:49'),(182,'A demand curve which is parallel to the horizontal axis is','perfectly inelastic ','perfectly elastic ','relatively inelastic ','relatively elastic.','','','b','','post-utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:50'),(183,'Allocative efficiency occurs only at that output where: ','marginal benefit exceeds marginal cost the by greatest ','consumer surplus exceeds producer surplus by the greatest amount ','the areas of consumer and producer surplus are equal ','the combined amounts of consumer surplus and producer surplus are maximizes.','','','d','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:51'),(184,'The primary problem of economics is: ','to obtain more equitable distribution of money income ','production of a given output with the lowest cost combination of factors of production ','Adoption of capital- intensive technology ','Increasing the quantity of the fixed factor of production.  ','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:52'),(185,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',86,'Admin','2016-11-12 19:57:40','2020-07-14 14:27:52'),(186,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:09','2020-07-14 14:27:53'),(187,'The economic system in which resources are privately owned is known as','capitalism','socialism','Communism','unitarism','','','a','','wassce','2001',88,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:54'),(188,'Quasi-rent refers to','Payment made on acquisition of firm’s premises','Payment  made  for  the  procurement  of  tools  and equipment','Returns on investment','Payment made on  any  factor  of  production  that  is temporarily fixed in supply','','','d','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:55'),(189,'The reward for entrepreneurship is','rent','wages','Interest','profit','','','d','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:56'),(190,'Which of the following is function of an entrepreneur?','Avoidance of risks','Decision making','Employment control','Organizing unions','','','b','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:57'),(191,'The difference between the highest and lowest in a set of data is the','Range','median','variance','mode','','','a','','wassce','2001',98,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:58'),(192,'In which of the following economic systems is the consumer referred to as King?','Capitalist economy','Socialist economy','Communist economy','Mixed Economy','','','a','','wassce','2001',96,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:59'),(193,'The dispersal of people in a country is called','mobility of people','geographical distribution','occupational distribution','state distribution','','','a','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:00'),(194,'In a country with ageing population, the total population','comprises young school leavers only','comprises mainly women','is increasing at a low rate','has reached the optimum level','','','c','','wassce','2001',101,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:01'),(195,'Population growth can be controlled by all the following except','legalizing abortion','incentives on immigration','family planning','limiting number of children per family','','','b','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:02'),(196,'Performance of one task in a production process is known as','Specialization','standardization','division of labour','segmentation','','','a','','wassce','2001',99,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:03'),(197,'The marginal product at the fourth variable factor is','12','9','8','6','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',98,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:04'),(198,'The difference between the highest and the least marginal','product of the variable factor is    \\n\t3','8','10','12','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','a','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:04'),(199,'The average product of the variable factor when four units are employed is','6','8','12','48','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',85,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:05'),(200,'The cost incurred by using both fixed and variable factors in production is called','marginal cost','fixed cost','total cost','average cost','','','c','','wassce','2001',97,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:06'),(201,'Consumers buy more of a commodity at a lower price than at a higher price because','producers like to produce more','in any given situation, people like to buy more','consumers like to show off','with the same amount of money, they will be able to buy more','','','d','','wassce','2001',82,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:07'),(202,'The demand for a commodity not directly for immediate consumption but for the production of another commodity is','competitive demand','derived demand','composite demand','joint demand','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:14'),(203,'Which of the following is a luxury item?','Petrol','Textbook','Pencil','Gold','','','d','','wassce','2001',91,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:15'),(204,'If the quantity demanded of a particular commodity is represented by the function Qd = 30 - 2p. What is the quantity demanded at a price of twelve Naira?','6 units','8 units','10 units','12 units','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:16'),(205,'The responsiveness of demand to a change in income is the measurement of','foreign exchange rate','cross elasticity of demand','income elasticity of demand','price index elasticity','','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:17'),(206,'The upward sloping of the supply curve indicates that','more will be supplied as price rises','less will be supplied as price rises','supply is not a function of price','supply is static and demand is dynamic','','','a','','wassce','2001',102,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:18'),(207,'Monoculture agriculture means','the cultivation of seasonal crops','the cultivation of one major crop','plantation agriculture','shifting cultivation!','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:19'),(208,'Industries are not sited in most rural areas of Nigeria because','of inadequate basic infrastructure','they lack raw materials','there is no appropriate government policy','the climate is not conducive','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:19'),(209,'Which of the following business units can issue shares?','Sole trader','Private limited company','Central Bank','Supermarket','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:20'),(210,'When the government initiates measures to make an organization in which it has substantial interest more profit \toriented, such a business is described as being','indigenized','restructured','Privatized','commercialized','','','d','','wassce','2001',70,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:21'),(211,'Which of the following is not a trade union in Nigeria?','Nigerian Labour Congress','Academic Staff Union of Universities','Nigerian Economic Society','Nigerian Union of Journalists','','','c','','wassce','2001',96,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:22'),(212,'The monopolist power can be controlled by the government through','Labour union','Price legislation','import restrictions','export promotion','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:23'),(213,'Which of the following is not a condition for a perfect market?','Homogenous commodity','Ignorance of consumers','Perfect information','Free entry and exit','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:24'),(214,'The reward for shareholdership of a company is','Wages','interest','dividends','profit','','','c','','wassce','2001',94,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:25'),(215,'In a public corporation, the risks of business are borne by the','workers','tax payers','board members','treasury','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:26'),(216,'One of the functions of money is','double coincidence of wants','unit of account','indivisibility','making payments through banks only','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:27'),(217,'Money is demanded for which of the following reasons?','To meet unforeseen contingencies','To solve the problem of inflation','It is easily divisible','It is portable','','','a','','wassce','2001',104,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:28'),(218,'The Quantity Theory of money states that a reduction in the quantity of money in circulation would bring about','a geometrical fall in prices','a proprotionate fall in price','a rise in prices','an unequal fall in prices','','','b','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:29'),(219,'Which of the following is the most liquid asset?','Bank notes','Silver','Bank deposit','Cheques','','','b','','wassce','2001',106,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:30'),(220,'The situation in which there is a persistent fall in the general price level is referred to as','devaluation','depreciation','deflation','inflation','','','c','','wassce','2001',77,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:31'),(221,'Commercial banks settle their daily interbank indebtedness through the','Money Market','Finance House','Acceptance House','Clearing House','','','d','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:32'),(222,'One disadvantage of inflation is that','fixed income earners gain','fixed income earners lose','businessmen lose','standard of living rises','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:33'),(223,'Short-term loans can be sourced from','the central bank','development banks','mortgage banks','commercial banks','','','d','','wassce','2001',81,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:34'),(224,'If there is an increase in wages and salaries without a corresponding increase in the supply of goods and services, the situation will lead to','a reduction in aggregate demand','inflation','depression','budget surplus','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:35'),(225,'Public expenditure can be financed from all the following sources except','borrowing','grant-in-aid','royalties and rents','Mobilization fees','','','a','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:36'),(226,'Which of the following is a direct tax?','Import duty','Export duty','Capital gain tax','Sales tax','','','c','','wassce','2001',92,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:37'),(227,'Tax evasions means','postponing payment of tax','tax payment according to ability to pay','making false declaration of taxable income','paying little amount of money as tax','','','c','','wassce','2001',95,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:38'),(228,'A greater burden of tax on a product with high price elasticity of demand rests mainly on the','producer','teacher','civil servant','middlemen','','','a','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:39'),(229,'An ad valorem tax refers to a tax','imposed on exports','on goods manufactured in the country','based on the value of the commodity','levied on income','','','c','','wassce','2001',101,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:40'),(230,'Which of the following is associated with the development of the petroleum industry in Nigeria?','Neglect of agriculture','Increase in population growth','Increase in the rate of Unemployment','Decrease in the rate of inflation','','','a','','wassce','2001',98,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:41'),(231,'The following are examples of economic goods except','bottled water','air','household utensils','shelter','','','b','','wassce','2010',80,'Admin','2016-11-12 20:44:26','2020-07-14 14:28:42'),(232,'A tent-making factory offers','personal services','indirect services','social services','reflex services','','','b','','wassce','2010',81,'Admin','2016-11-12 20:44:28','2020-07-14 14:28:43'),(233,'In which of the following economic systems do we have mostly private ownership of resources and individual','decision making?','Capitalist system','Socialist system','Mixed system','','','a','','wassce','2010',93,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:44'),(234,'The sum of items divided by the number of items is the','Frequency','mean','median','mode','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:45'),(235,'Find the median of the following set of scores: 8, 9, 6, 5, 10','9','8','6','5','','','b','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:46'),(236,'Which of the following causes the demand curve to shift to the right?','A reduction in the size of population','An increase in the income of the buyer','The availability of substitutes','A decrease in price of the good','','','d','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:47'),(237,'Goods for which demand rises as income rises are','complementary goods','inferior goods','normal goods','substitutes','','','c','','wassce','2010',87,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:48'),(238,'The slope of a supply curve is','Horizontal','uniform','positive','vertical','','','c','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:49'),(239,'Equilibrium price is the price at which quantity','demanded is greater than quantity supplied','supplied is greater than quantity demanded','demanded is equal to quantity supplied','supplied equals quantity produced','','','c','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:50'),(240,'A decrease in supply with demand remaining unchanged will cause the equilibrium price for a good to','be unchanged','remain elastic','remain inelastic','rise','','','d','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:51'),(241,'At the highest level of total utility, marginal utility is','Negative','positive and falling','positive and rising','zero','','','d','','wassce','2010',63,'Admin','2016-11-12 20:44:29','2020-07-15 09:09:54'),(242,'The law of diminishing marginal utility states that, the more a commodity is consumed the','higher the satisfaction derived from an additional unit','higher the price to be paid','lower the quantity supplied','lower the rate of increase in the total utility derived','','','d','','wassce','2010',87,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:53'),(243,'Greater inter-dependence among workers in production is associated with','utility','manufacturing','division of labour','factory workers','','','c','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:54'),(244,'If TC, FC and VC represent total cost, fixed cost and variable cost respectively, which of the following is\\n\tcorrect?','TC = FC-VC','FC = TC + VC','TC > FC + VC','TC = FC + VC','','','d','','wassce','2010',93,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:55'),(245,'The reward to land as a factor of production is','Profit','rent','interest','wage','','','b','','wassce','2010',85,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:57'),(246,'A firm is said to be a public joint stock company when it','is owned by the government','sells its shares to members of the public','operates as a government corporation','is not legally recognized as a firm','','','b','','wassce','2010',100,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:58'),(247,'All the following are sources of finance to a joint stock company except','debentures','cooperative loans','shares','bank loans','','','b','','wassce','2010',73,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:59'),(248,'The public sector of an economy includes','cooperative societies','nationalized industries','joint stock companies','pressure groups','','','b','','wassce','2010',89,'Admin','2016-11-12 20:44:29','2020-07-14 14:29:00'),(249,'One advantage of the Sole Proprietorship over other forms of business organizations is that it can','make very high profits','employ many workers','keep its affairs private','produce on a very large scale','','','c','','wassce','2010',69,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:01'),(250,'Which of the following is obtainable in a perfect market?','P = MR >AR','MR = MC>P','MR < P','P = MR = MC','','','d','','wassce','2010',73,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:03'),(251,'The wholesaler performs the following functions except','breaking the bulk','offering credit facilities to consumers','financing manufacturers','buying in bulk from manufacturers','','','b','','wassce','2010',83,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:05'),(252,'Age Group\t[0 -15\t\t30%], [16 - 40\t\t27%], [41 - 60\t\t25%], [61 and above\t18%] The data shows the age distribution of a country \\n\tin 1983. Using the data, calculate the percentage of working population in 1983.','48%','52%','57%','70%','','','b','','wassce','2010',83,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:07'),(253,'A country whose population size is too small relative to its resources is','over populated','optimally populated','under populated','producing the optimum output','','','c','','wassce','2010',81,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:08'),(254,'An efficient weapon used in resolving disputes between employers and employees is','co – operation','collective bargaining','display of placards','legal action','','','b','','wassce','2010',65,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:10'),(255,'Which of the following does not explain why a school principal earns more salary than a school messenger?','Length of training','Demand and Supply','Cost of training','The messenger is a non-teaching staff','','','b','','wassce','2010',77,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:11'),(256,'The role of government in promoting agricultural development includes the following except','paying the wages of all farmers','establishing and funding research','formulation of policies','provision of rural infrastructure','','','a','','wassce','2010',93,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:12'),(257,'The following are advantages of large scale agriculture except','use of simple implements','use of sophisticated implements','increase in employment','integration of crop and animal farming','','','a','','wassce','2010',84,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:14'),(258,'The following are all factors determining the location of industry except','minimum wage rate','availability of labour','nearness to raw materials','proximity to market','','','a','','wassce','2010',85,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:15'),(259,'Which of the following is not a concept in National income accounting?','Domestic National Product (DNP)','Gross National Product (GNP)','Gross Domestic Product (GDP)','Net Domestic Product (NDP)','','','a','','wassce','2010',100,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:17'),(260,'Which of the following equations is appropriate for determining the Net Domestic Product (NDP)?','NDP = GNP – depreciation','NDP = GDP + Net Income from abroad','NDP = GDP – depreciation','NDP = GDP x Net Income from abroad','','','c','','wassce','2010',91,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:18'),(261,'Which of the following over estimates the value of national income?','Incomplete statistical data','Wrong timing of computation','Changes in prices of goods within the year','Double counting','','','d','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:19'),(262,'The total stock of money available for use in an economy is','a function of money','a characteristic of money','the demand for money','the supply of money','','','d','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:21'),(263,'Which of the following is not a reason for holding money?','Ostentation','Speculation','Transactions','Precautionary','','','a','','wassce','2010',76,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:22'),(264,'The best way of combating demand-pull inflation is to','increase income taxes','reduce income taxes','increase import duties','increase salaries and wages','','','a','','wassce','2010',80,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:23'),(265,'In which of the following ways has','Increase in money supply','A fall in real income','Appreciation in the value of money','Increased employment','','','b','','wassce','2010',80,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:24'),(266,'Which of the following is a legal tender?','Bank notes','Bank overdrafts','Bills of exchange','Money order','','','a','','wassce','2010',73,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:25'),(267,'The Central Bank controls money supply through all the following except','lending to the public','bank rate','legal reserve requirements','open market operation','','','a','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:27'),(268,'One of the functions of the Central Bank is','production of goods','issuing of currency','presenting budgets','printing of cheque book','','','b','','wassce','2010',79,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:28'),(269,'The function of the Central Bank as a lender of last resort means that when all other sources fail','the consumer can always borrow money from the Central Bank','the government can ask the Central Bank to print more money','commercial banks can raise loans from the Central Bank','commercial banks can deposit money with the Central Bank','','','c','','wassce','2010',95,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:29'),(270,'One disadvantage of direct taxes is that they','allocate scarce resources','are not rigid','can be progressive.','can be evaded','','','d','','wassce','2010',88,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:31'),(271,'Human wants are','Limited','scarce','unlimited','in grades','','','c','','wassce','2012',84,'Admin','2016-11-12 21:02:57','2020-07-14 14:29:32'),(272,'The difference between the money cost and the real cost of any item is that','real cost is the alternative forgone while the money cost is the actual amount paid for buying the item','the real cost is the opportunity cost, while the money cost is the marginal cost','money cost is the opportunity cost, while the real cost is the actual cost in monetary terms','money cost is always greater than real cost','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:34'),(273,'The Production Possibility Curve (PPC) indicates that as \tmore of one good is produced','less of the other good is produced','the same quantity of the other good is produced','more of the other good is produced','none of the other good is produced','','','a','','wassce','2012',75,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:35'),(274,'An arrangement of data in rows and columns is referred to as a','Graph','bar chart','pie chart','Table','','','d','','wassce','2012',91,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:36'),(275,'A normal demand curve slopes','downwards from left to right','upwards from right to left','downwards from right to left','upwards from left to right','','','a','','wassce','2012',73,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:37'),(276,'The co-efficient of income elasticity of demand for inferior goods is','Positive','equal to one','less than one','negative','','','d','','wassce','2012',75,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:39'),(277,'If a 20% rise in the price of  Whisky leads to a 30% increase in quantity demanded of Schnapps, the cross elasticity of demand is','3.0','2.5','2.3','1.5','','','d','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:40'),(278,'Palm oil and palm kernel have','competitive supply','excess supply','joint supply','composite supply','','','c','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:42'),(279,'A supply curve which is vertical has an elasticity co-efficient of','0','0.5','1.5','2','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:04','2020-07-15 09:09:54'),(280,'If the current price of an apple is twice that of last year, it implies that the value of money is','Stable','falling','rising','getting stronger','','','b','','wassce','2012',73,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:44'),(281,'Price fixed above the equilibrium is to','protect agricultural producers','discourage agricultural producers','lower the prices of agricultural produce','favour consumers','','','a','','wassce','2012',89,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:46'),(282,'A consumer purchasing a commodity X will maximize his satisfaction if','Px = Mux','Px  >_  MUx','Px > Mux','Px < Mux','','','a','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:48'),(283,'When total utility is constant, it means marginal utility is','Increasing','zero','decreasing','one','','','b','','wassce','2012',75,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:49'),(284,'A rational consumer is one who','spends his income to maximize satisfaction','is not influenced by advertisement','behaves in a particular way all the time','knows the prices of all goods and buys the cheapest','','','a','','wassce','2012',80,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:50'),(285,'Which of the following is not true about land?','The supply is fixed','Land is mobile','It is subject to diminishing returns','Land is heterogeneous','','','b','','wassce','2012',59,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:52'),(286,'The type of production that involves the tapping and \tharnessing of natural resources is','primary production','secondary production','tertiary production','industrial production','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:54'),(287,'Which of the following does not change in the short run?','Variable cost','Marginal cost','Total cost','Fixed cost','','','d','','wassce','2012',83,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:55'),(288,'The resources used in production are called','variable inputs','factors of production','capital for production','fixed inputs','','','b','','wassce','2012',99,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:57'),(289,'A firm will shut down in the long run if its earning is','less than normal profit','greater than normal profit','equal to super normal profit','less than super normal profit','','','a','','wassce','2012',65,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:58'),(290,'A market structure where profit is maximized when marginal \trevenue, marginal cost and price are equal is known as','perfect competition','monopoly','oligopoly','imperfect competition','','','a','','wassce','2012',85,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:59'),(291,'In which of the following markets does a firm have power to \tmake super normal profits both in the short run and long run?','Monopol','Duopoly','Oligopoly','Monopsony','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:30:00'),(292,'If there arc no barriers to entering a market, it means that','anyone can become a buyer or seller','unwanted goods can always enter the market','the market becomes a dumping ground','the goods are not inspected','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:30:02'),(293,'A firm’s main aim is to','survive in business','maximize profits','increase its market share','satisfy the ambitions of its managers','','','b','','wassce','2012',77,'Admin','2016-11-12 21:03:04','2020-07-14 14:30:03'),(294,'One good reason for the elimination of middlemen is that they','cause increase in price','help in price stability','grade and blend goods','are too many','','','a','','wassce','2012',84,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:05'),(295,'The increase in population growth in big cities is referred to as','settlement','migration','industrialization','Urbanization','','','d','','wassce','2012',75,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:06'),(296,'Frictional unemployment can be reduced by','encouraging the use of retraining schemes','removing barriers to labour mobility','restricting the introduction of new technology','lowering the level of wages paid to young people','','','a','','wassce','2012',87,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:07'),(297,'If the labour force of a country is 2.5 million and 2 million are employed, what is the unemployment rate?','0.2%','20%','200%','250%','','','b','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:08'),(298,'The grouping of population according to the economic activities people engage in is','age distribution','sex distribution','geographical distribution','occupational distribution','','','d','','wassce','2012',91,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:09'),(299,'Natural growth rate of population can be defined as the','difference between birth rate and death rate','number of births in a year','increase in the population growth in a year','difference between the total population and the death rate','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:11'),(300,'Which of the following is not a consequence of increased unemployment?','A fall in tax revenue for the government','A reduction in trade union’s influence','A fall in the death rate','An increase in the labour force','','','c','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:12'),(301,'The following are features of subsistence agriculture except','little capital','processing of raw materials','small allotments of land','use of crude implements','','','b','','wassce','2012',84,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:13'),(302,'Which of the following is not true of small companies?','The cannot benefit from economics of scale','are a good source of new jobs','can satisfy demand in specialist markets','have a good record of technical innovations','','','d','','wassce','2012',94,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:15'),(303,'The effect of privatization on the industrial sector of a country is that it','ensures efficiency','discourages efficiency','leads to decrease in output','leads to liquidation','','','a','','wassce','2012',84,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:16'),(304,'The production strategy used in an over populated country is','import substitution','capital intensive','labour intensive','first come first employed','','','c','','wassce','2012',75,'Admin','2016-11-12 21:03:08','2020-07-15 09:09:54'),(305,'National income is used to measure','a country’s population size','a country’s economic growth','the human level of development','the flow of imports to a country','','','b','','wassce','2012',75,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:19'),(306,'A tax is regressive if the','rate of tax is constant at all income levels','rate of tax decreases as income increases','rate of tax increases as income increases','tax is direct rather than indirect','','','b','','wassce','2012',82,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:20'),(307,'When a country’s net income from abroad is added to its total \toutput, the result is','gross domestic product','net national product','gross national product','net domestic product','','','c','','wassce','2012',76,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:21'),(308,'A fall in national output will necessitate','a rise in expenditure on imports','a rise in the level of savings','an increase in consumption expenditure','a rise in the standard of living','','','a','','wassce','2012',99,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:22'),(309,'The demand for money to take advantage of changes in bond \tprices is the','unforeseen motive','transaction motive','speculative motive','precautionary motive','','','d','','wassce','2012',71,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:23'),(310,'Cost push inflation is caused by a','rise in the cost of production','decrease in the transportation cost','rise in demand for goods','decrease in the cost of production','','','c','','wassce','2012',88,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:24'),(311,'Deposits held in a commercial bank are part of','money supply','transfer payments','ordinary shares','treasury bills','','','a','','wassce','2012',89,'Admin','2016-11-12 21:03:12','2020-07-14 14:30:27'),(312,'One profitable form of business undertaken by the commercial banks is','the issuing of cheques','the payment of standing order','lending money to borrowers','accepting cheques from customers','','','c','','wassce','2012',84,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:28'),(313,'When governments want to discourage consumption, they \ttax goods whose demand','price inelastic','abnormal in nature','price elastic','normal in nature','','','c','','wassce','2012',89,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:30'),(314,'A rise in government expenditure can lead to','higher inflation','higher unemployment','lower profits for industries','lower importation of raw materials by industries','','','a','','wassce','2012',109,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:31'),(315,'Tariff is used to protect domestic industries by making foreign goods relatively','cheaper in the domestic market','more expensive in the domestic market','more expensive in the international market','cheaper in the international market','','','b','','wassce','2012',87,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:33'),(316,'Musa has a choice of buying a shirt, a book and a bag. What is the opportunity cost of buying a book?','A bag only','A book and a bag','A shirt and a bag','A shirt only','','','c','','utme','2009',102,'Admin','2016-11-12 21:38:46','2020-07-14 14:30:34'),(317,'A typical feature of a market economy is that','all producers make profit','full employment exists','consumer sovereignty exists','there is equality of economic agents','','','c','','utme','2009',111,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:35'),(318,'The privatization exercise in Nigeria is a move towards a','mixed economy','subsistence economy','market economy','command economy','','','c','','utme','2009',109,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:37'),(319,'A high rent on land will affect the cost of producing maize','positively','negatively','at the early stage of production','at the later stage of production','','','b','','utme','2009',109,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:38'),(320,'If the  active  population  is 50  million and unemployed is 5 million, what is the unemployment rate?','10%','45%','55%','90%','','','a','','utme','2009',100,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:40'),(321,'A cumulative frequency graph is','a histogram','an ogive','a bar chart','a pie chart','','','b','','utme','2009',113,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:41'),(322,'A movement along the same demand curve is caused by the','price of the product','price of other products','income of the consumer','taste of the consumer','','','a','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:43'),(323,'The demand curve for a luxury good is','negatively sloped','parallel to the price axis','parallel to the quantity axis','positive sloped','','','d','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:45'),(324,'Price elasticity of demand is expressed as','percentage change in price percentage change in quantity demanded','percentage change in quantity demanded percentage change in Income','percentage change in Income percentage change in quantity demanded','percentage change in quantity demande percentage change in price','','','d','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:46'),(325,'A major assumption in cardinal utility theory is that','utility is measurable','utility is not measurable','total utility equals marginal utility','total utility is constant','','','a','','utme','2009',107,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:48'),(326,'A supply curve is positively sloped because','supply always exceeds demand','demand always exceeds supply','price is an incentive to consumers','price is an incentive to producers','','','d','','utme','2009',106,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:49'),(327,'The short-run supply curve for medical doctors is more  likely to be','perfectly elastic','perfectly inelastic','fairly inelastic','fairly elastic','','','b','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:51'),(328,'If the price of an item changes by 8% and quantity supplied changes from 600 units to 660 units, the price elasticity of supply is','0.80','1.25','2.00','10.00','','','b','','utme','2009',106,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:52'),(329,'In a regulated market, price is determined by','Consumers','producers','auction','government','','','d','','utme','2009',102,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:54'),(330,'A decrease in supply without a corresponding change in demand will lead to','an increase in equilibrium price and a decrease equilibrium quantity','a decrease in equilibrium price and an increase in equilibrium quantity','a decrease in equilibrium price and equilibrium quantity','an increase in equilibrium price and quantity','','','a','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:55'),(331,'Production takes place when','output is transformed into input','machines replace human effort','input is transformed into output','there is specialization and division of labour','','','c','','utme','2009',110,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:57'),(332,'The marginal product of the 5th unit of capital is','42','85','114','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','d','','utme','2009',92,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:58'),(333,'Determine the average product of the 4th unit of capital','53','86','212','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','a','','utme','2009',103,'Admin','2016-11-12 21:38:47','2020-07-14 14:31:00'),(334,'Which of the following can be deduced from law of variable proportions when total output is rising?','MP is greater than AP','MP is less than AP','MP is equal to AP','MP is equal to zero','','','d','','utme','2009',107,'Admin','2016-11-12 21:38:47','2020-07-14 14:31:02'),(335,'As the level of output increases, the average fixed cost of a firm will','continue to increase','remain uncharged','continue to decrease','be equal to the total cost','','','c','','utme','2009',117,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:12'),(336,'The shape of the long-run average cost curve is best explained by the','law of diminishing returns','law of returns to scale','cost of fixed inputs','cost of variable inputs','','','a','','utme','2009',112,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:14'),(337,'The supply curve of a perfectly competitive firm is identical to its','total cost','marginal cost','fixed cost','variable cost','','','b','','utme','2009',100,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:15'),(338,'If a monopolist is incurring short–run losses, this means that his','selling price is above the short–run marginal cost','selling price is below the short–run marginal cost','average revenue is greater than marginal revenue','average revenue is less than marginal revenue','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:16'),(339,'In the long run, one of the characteristics of monopolistic competitive firms is that the','make  abnormal profits','suffer losses','make normal profits','collude with each other','','','a','','utme','2009',129,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:18'),(340,'In developing countries, it is easier to obtain accurate national income estimates through the','GNP','GDP','NDP','NNP','','','b','','utme','2009',117,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:19'),(341,'Double counting is a problem in computing national income when using the','expenditure method','income method','output method','value–added method','','','c','','utme','2009',90,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:20'),(342,'In the circular flow of income, an increase in saving causes','an increase in imports','a decrease in the income stream','an increase in household consumption','a decrease in exports','','','b','','utme','2009',101,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:21'),(343,'The ability of commercial banks to create money depends on the','Ratio','liquidity ratio','interest rate','capital base','','','b','','utme','2009',123,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:23'),(344,'The reform in the banking sector in Nigeria is principally \tmotivated by the need to','increase the capital base of banks','provide more money to run the economy','minimize the rate of bank failures','enhance efficiency in bank operations','','','a','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:24'),(345,'A manufacturer who wants to build a new plant will source funds from the','commercial banks','money market','capital market','government','','','c','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:25'),(346,'Cost–push inflation occurs when','production cost is high','factor prices decrease','there is too much money in circulation','government embarks on deficit financing','','','a','','utme','2009',116,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:27'),(347,'If government expenditure exceeds revenue, this results in','balanced budget','national debt','budget deficit','budget surplus','','','c','','utme','2009',119,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:38'),(348,'The Basic Needs Approach to development is directed a','poverty alleviation','provision of educational infrastructure','provision of health services','improvement in worker’s income','','','a','','utme','2009',123,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:39'),(349,'The major reason why countries strive to achieve optimum growth is to','be self–sufficient','raise general living standards','raise the level of production','reduce aggregate expenditure','','','b','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:40'),(350,'According to the theory of comparative advantage, specialization will result in','labour–intensive method of production','capital–intensive method of production','efficient allocation of resources','efficient distribution of output','','','c','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:40'),(351,'Dumping in international trade means selling a good at a','higher price at home than abroad','lower price at home than abroad','price that equates marginal cost with marginal revenue','price above marginal cost abroad','','','a','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:41'),(352,'Guided deregulation as currently practiced in Nigeria implies that','market forces determine interest and exchange rates','government alone determines interest and exchange rates','market forces and government determine interest and exchange rates','exchange rate is regulated while interest rate is fixed','','','c','','utme','2009',93,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:42'),(353,'An important function of the world bank is to','provide short–term loans to members','encourage trade between members','promote capital–intensive productions','provide long–term loans to members','','','d','','utme','2009',104,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:43'),(354,'The major problem confronting a sole proprietor is','high level of risk','limited expertise','limited source of capital','high taxation','','','c','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:44'),(355,'A public liability company is run on a daily basis by','the chief executive','the shareholders','the board of directors','financial consultants','','','c','','utme','2009',113,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:45'),(356,'The marketing of agricultural products in Nigeria can be improved by','a massive production of farm produce','re–establishing the marketing boards','establishing more agricultural banks','processing of farm produce','','','b','','utme','2009',104,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:46'),(357,'To enhance the competitiveness of domestic agricultural products, there is need to','ban the importation of agricultural products','increase the exportation of agricultural products','improve the quality of domestic agricultural products','increase the output of domestic agricultural products','','','c','','utme','2009',98,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:47'),(358,'In Nigeria, the location of a steel industry at Ajaokuta is due to','the availability of transport network','the proximity to source of power','the proximity to large deposits of iron ore','political consideration.','','','c','','utme','2009',116,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:54'),(359,'Industries for consumer goods are concentrated in urban centres as result of','large market','power supply','government policy','weather conditions','','','a','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:55'),(360,'The current industrial development strategy in Nigeria is aimed at encouraging','small–scale industries','medium–scale Industries','small – and medium–scale Industries','medium–and large–scale Industries','','','c','','utme','2009',124,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:56'),(361,'Activities in the oil and gas industry are classified into','oil exportation and distribution','refining and marketing of finished products','upstream and downstream','exploration and drilling','','','c','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:57'),(362,'High dependency ratio is influenced by','high infant mortality rate','the level of income','high birth rate','inadequate medical care for children','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-07-14 14:32:18'),(363,'Occupational distribution of population determines the','size of a population available and willing to work','population density of a place','dependency ratio of a country','size and categories of the labour force','','','a','','utme','2009',111,'Admin','2016-11-12 21:38:48','2020-07-14 14:32:19'),(364,'The mobility of labour is mainly determined by','the age of workers','government policy','trade unions','wage rate differentials','','','d','','utme','2009',112,'Admin','2016-11-12 21:38:49','2020-07-14 14:32:21'),(365,'When workers have a union, the supply of labour is said to be','Monopolistic','oligopolistic','Monoposonistic','competitive','','','b','','utme','2009',107,'Admin','2016-11-12 21:38:49','2020-07-14 14:32:22'),(366,'Economics is the study of human behaviour as it relates to the','efficient allocation of resources','operation of companies','production of goods','generation of income','','','a','','utme','2010',125,'Admin','2016-11-12 22:11:49','2020-07-14 14:32:23'),(367,'A classroom teacher is promoted to the rank of a principal. This is an example of','vertical mobility','lateral mobility','social mobility','horizontal mobility','','','d','','utme','2010',114,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:25'),(368,'The downturn in the prices of shares on stock markets is a \thighlight of','efficient allocation of resources','the regulatory nature of the market','the invisible hand','consumer rationality','','','b','','utme','2010',120,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:26'),(369,'If  X = 6 and N = 6, determine the value of   Efx.','36','12','1','72','','','a','','utme','2010',125,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:27'),(370,'The standard deviation of a set of data is','always measured from the mode','always measured from the median','the most representative of averages','a measure of dispersion','','','d','','utme','2010',112,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:28'),(371,'The mean is the best measure of central tendency because it','is not affected by extreme values in a data','is a balancing point in an observation','is a midpoint value in an array of data','can be calculated from incomplete data','','','b','','utme','2010',107,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:29'),(372,'The most popular sizes of dresses and shoes are determined by the','Range','mode','mean','median','','','d','','utme','2010',128,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:30'),(373,'If  the demand for a good is more elastic than its supply, the tax burden is borne','equally by consumers and producers','more by consumers','more by producers','more by retailers and producers','','','c','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:31'),(374,'If  the price of a commodity with elastic demand increases, the revenue accruing to the producer will','Double','be constant','increase','decrease','','','d','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:32'),(375,'An excess demand for beans will result from','an increase in the price of  beans','a decrease in the price of  beans','an increase in the supply of  beans','a decrease in the supply of  beans','','','b','','utme','2010',117,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:33'),(376,'Consumer surplus tends to be higher when demand is','perfectly elastic','inelastic','elastic','unitary elastic','','','c','','utme','2010',96,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:34'),(377,'One of  the assumptions of ordinal utility theory is that','choice is not consistent','total utility is a function of price','utility can be ranked','satisfaction is measurable','','','c','','utme','2010',119,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:35'),(378,'The law of diminishing marginal utility explains why','the slope of a normal demand curve is negative','the slope of a normal demand curve is positive','an abnormal demand curve slopes upward','the consumption of inferior goods increases with income','','','a','','utme','2010',126,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:36'),(379,'If a consumer plans to spend 120k on four oranges but spent 80k, his consumer surplus is','N = 1.50','N = 1.00','N = 0.40','N = 2.0','','','c','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:38'),(380,'A set of  factors that can shift the supply curve are changes in','weather, price and technology','technology, price and taste','technology, weather and population','population, price and taste','','','c','','utme','2010',134,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:39'),(381,'If  the coefficient of price elasticity of supply is greater than one, the supply is said to be','perfectly elastic','infinitely inelastic','fairly inelastic','fairly elastic','','','d','','utme','2010',112,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:41'),(382,'If commodity X is a by-product of commodity Y, this implies that both commodities are','in competitive supply','jointly supplied','in composite supply','in excess supply','','','c','','utme','2010',117,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:42'),(383,'In perfect competition, price is determined by the','Government','buyers','sellers','market','','','d','','utme','2010',103,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:44'),(384,'In order to reduce hardship faced by consumers due to high prices, government can introduce','maximum prices','minimum prices','commodity boards','price control boards','','','d','','utme','2010',122,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:45'),(385,'Average product is less than marginal product when','there is constant returns to scale','there is decreasing returns to scale','there is increasing returns to scale','diminishing returns set in','','','c','','utme','2010',117,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:46'),(386,'A firm enjoying economics of scale is said to be','reducing average cost as production increases','maximizing profits as production increases','benefiting from the activities of other firms','having an upward - sloping average cost curve','','','a','','utme','2010',108,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:47'),(387,'The rising portion of the long - run average cost curve of a','firm is an indication that it is experiencing \\n\tincreasing efficiency','diseconomies of scale','economics of scale','increasing marginal returns','','','b','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:49'),(388,'An industry’s supply curve is more likely to be elastic when firms are','enjoying free entry and exit','operating below capacity','operating at full capacity','maximizing profits','','','b','','utme','2010',103,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:50'),(389,'One of  the characteristics of  monopolistic competition is that','there is mobility of factors of production','consumers have perfect knowledge of price','no single seller dominates the market','the firms are price – takers','','','a','','utme','2010',123,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:51'),(390,'The demand curve for factors of production','is perfectly elastic','slopes downwards','slopes upwards','is perfectly inelastic','','','b','','utme','2010',111,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:53'),(391,'An agreement among firms on price and segmentation is termed','Cartel','haggling','collusion','specialization','','','b','','utme','2010',105,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:54'),(392,'In national income accounting, tax is determined by the','level of  income','level of investment','level of consumption','rate of savings','','','a','','utme','2010',105,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:56'),(393,'A decrease in aggregate spending in an economy will ultimately lead to','Boom','deflation','inflation','recession','','','b','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:57'),(394,'If  MPC is 0.7 while government expenditure increased by N= 150m, the equilibrium national income is','N= 214 million','N= 105 million','N= 45 million','N= 500 million','','','b','','utme','2010',132,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:59'),(395,'The function of money which makes division of  labour \tpossible is its','unit of account','medium of exchange','store of value','standard of deferred payment','','','b','','utme','2010',126,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:00'),(396,'By buying treasury bills, the Central Bank of  Nigeria intends \tto','increase money supply in the economy','reduce money supply in the economy','reduce the cash reserve ratio for banks','increase the capital base of commercial banks','','','b','','utme','2010',124,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:02'),(397,'The velocity of money is represented as','money supply /real GDP','real GDPmoney supply','nominal GDP/real GDP','money supply/nominal GDP','','','a','','utme','2010',113,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:03'),(398,'One of the functions of commercial banks is','maintaining stable price in the economy','granting loans to customers','regulating monetary policies','issuing bank notes and coins','','','b','','utme','2010',120,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:05'),(399,'A strategy for curbing unemployment is to','implement government stabilization policy','increase government expenditure and decrease taxes','increase taxes and decrease government expenditure','ensure even distribution of job opportunities','','','b','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:06'),(400,'In Nigeria, the huge public debt is as a result of','balanced budgeting','surplus budgeting','deficit budgeting','zero budgeting','','','c','','utme','2010',115,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:08'),(401,'National development plans in Nigeria fail mainly because of','over dependence on foreign aids','poor implementation strategies','inadequate funding of projects','shortage of skilled manpower','','','b','','utme','2010',112,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:09'),(402,'The ultimate aim of agricultural policies in Nigeria is to achieve','food sufficiency','full employment','industrialization','industrial capacity utilization','','','c','','utme','2010',102,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:09'),(403,'Government can boost agricultural output in Nigeria primarily by','embarking on buffer stock programs','granting subsidies on farm Inputs','placing embargo on food importation','placing farmers on monthly income','','','c','','utme','2010',113,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:10'),(404,'Localization of industries refers to the','spread of firms producing different products','concentration of firms of an industry','siting of industries near the market','siting of firms producing different products','','','b','','utme','2010',116,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:11'),(405,'in developing countries, governments influence the location of  industries in order to','spread development','encourage entrepreneurs','redistribute wealth','encourage industries to earn high profits','','','a','','utme','2010',116,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:12'),(406,'A disadvantage of Nigeria’s dependence on imported petroleum products is the','instability in the demand to the  products','instability in the supply for the products','dominance of multinational firms','poor maintenance of the refineries','','','b','','utme','2010',120,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:13'),(407,'The maximum number of shareholders  for a limited liability company is','Twenty','seven','five','infinite','','','d','','utme','2010',104,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:15'),(408,'The primary motive for an individual engaging in production is to','make profit','redistribute wealth','satisfy basic human wants','put inputs into use','','','a','','utme','2010',124,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:16'),(409,'One of  the characteristics of  free trade zone is','common tariff against non-member countries','free factor mobility within the zone','different trade policies of non-member countries','harmonized trade among member countries','','','b','','utme','2010',121,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:18'),(410,'If  Nigeria imports vehicles from Japan, the transaction will appear as a','debit on Japan’s balance of payments','credit on Nigeria’s balance of trade','credit on Japan’s balance of payments','credit on Nigeria’s balance of payments','','','a','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:19'),(411,'One of  the objectives of ADB is to','provide subsidies on imported goods to members countries','promote economic and social development of member countries','mobilize short-term loans for member countries','provide technical assistance to only poor member countries','','','c','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:21'),(412,'The choice of the method of production in an economy is determined by the','level of income','rate of population growth','level of technical know-how','availability of natural resources','','','c','','utme','2010',123,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:22'),(413,'The amount of labour hired depends on the','number of skilled labour available','marginal productivity of labour','skill of labour','price of other inputs','','','b','','utme','2010',101,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:23'),(414,'Economic as a field of study is a','pure science','political science','social science','physical science','','','c','','wassce','2003',77,'Admin','2016-11-12 22:37:36','2020-07-14 14:33:25'),(415,'The three major agents of an economic system are the','consumers, workers and producers','markets, telecommunication and banks','schools, hospitals and universities','individuals, firms and government','','','d','','wassce','2003',74,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:26'),(416,'Which of the following  is  not  an  advantage  of  tabular presentation of data?','enables easy location of required figures','makes for easy comparison of figures','occupies more space than mathematical equation','shows whether the figures are increasing or decreasing','','','c','','wassce','2003',102,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:35'),(417,'The problem of scarcity is reduced by','controlling consumption of goods and services','producing everything needed by consumers','ensuring efficient allocation of resources','restricting consumer choices and tastes','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:36'),(418,'The reward for labour is','wages','profit','rend','dividends','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:38'),(419,'Which of the following factors of production consists of man made goods?','Land','Labour','Capital','Entrepreneur','','','c','','wassce','2003',83,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:39'),(420,'One major function of the entrepreneur is','bearing of risk','maximizing profits','taking charge of day to day management','determining the selling price of his products','','','c','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:41'),(421,'A major limiting factor of mass production is','efficient management','adequate labour supply','small size of the market','adequate  supply of raw materials','','','c','','wassce','2003',98,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:42'),(422,'Division of labour leads to','improved craftsmanship','the production of standardized goods','increase in the cost of goods','trade by barter','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:44'),(423,'Which of the following is  an  advantage of localization of \\n\tindustry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:45'),(424,'The additional satisfaction derived from the consumption of one more unit of a good is called','marginal product','marginal utility','marginal revenue','marginal cost','','','b','','wassce','2003',98,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:46'),(425,'West  African   countries  have  low  levels  of  economic \tdevelopment due to','underpopulation','inadequate labour','failure to plan','ineffective plan implementation','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:48'),(426,'When the total product is at its maximum, marginal \\n\tproduct is','increasing','positive','negative','zero','','','d','','wassce','2003',111,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:49'),(427,'Marginal cost can be derived from the','total product','total revenue','total cost','average fixed cost','','','d','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:50'),(428,'The market supply curve slopes upwards from left to right indicating that','at a lower price, more is supplied','two commodities can be supplied at the same time','at a lower price, less is supplied','producers pay high taxes','','','c','','wassce','2003',74,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:51'),(429,'The marginal revenue when output is 4 units is','5 naira','8 naira','56 naira','61 naira','Use the data below to answer question:  Output [1, 2, 3, 4, 5]  Total Revenue(N=) [40, 49, 56, 61, 65]','','a','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:52'),(430,'The term under population refers to a situation where the population is','dispersed over the country','small in relation to available resources','greater than the available resources','concentrated in a few areas','','','b','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:53'),(431,'West African countries experience rapid population growth due to','existence of birth control clinics','early marriages','adequate sex education in schools','late marriages','','','b','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:54'),(432,'Which of the following could be  used  to  measure  the efficiency of labour?','Education and training','Rate of inflation','Level of unemployment','Input-Output ratio','','','d','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:55'),(433,'Which of the following is necessary for the survival of small firms in West Africa?','Access to land for development','Inadequate collaterals for bank loans','Government assistance in the form of loans and tax holidays','High transportation costs.','','','c','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:56'),(434,'A normal demand curve slopes','downwards from left to right','upwards from left to right','downwards from right to left','upwards from the origin','','','a','','wassce','2003',102,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:57'),(435,'If the quantity demanded of a commodity increases from 20 to 30 units when there is an increase in price from 4 naira to 5 naira, the elasticity of demand is','0','1','2','5','','','c','','wassce','2003',90,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:58'),(436,'Price elasticity of supply measures the responsiveness of','quantity supplied to   changes in suppliers’ income','changes in prices of other commodities','a change in the prices of the commodity','a change in the demand for the product','','','c','','wassce','2003',77,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:59'),(437,'The most common type of business in West African countries is','joint stock companies','sole proprietorships','partnerships','public enterprises','','','b','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:00'),(438,'Which of the following is a type of business organization?','Stock exchange','Insurance company','Chain stores','Co-operative','','','b','','wassce','2003',73,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:01'),(439,'One advantage of the sole proprietorship is that','control and supervision is under one man','accounts must be publicized','it is always successful','funds are easy to obtain','','','a','','wassce','2003',81,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:02'),(440,'The shares which do not carry any fixed rate of dividend are known as','debentures','cumulative preference shares','ordinary shares','participating preference shares','','','c','','wassce','2003',83,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:03'),(441,'The economic goal of public corporations is to','maximize profit','expand assets','minimize costs','provide essential services.','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:03'),(442,'One of the factors responsible for low agricultural \\n\tproduction in West Africa is','inadequate labour','shortage of land','inadequate implements','inadequate research','','','c','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:04'),(443,'Efficient distribution of goods in West Africa will be \\n\tfacilitated by','poor storage facilities','adequate transportation system','high standard of living','high cost of living','','','b','','wassce','2003',88,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:05'),(444,'The demand for money is','derived demand','composite demand','joint demand','complimentary demand','','','a','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:06'),(445,'Money becomes a very poor store of value in a period of','deflation','depression','recession','inflation','','','d','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:07'),(446,'A continuous fall in the general price level is called','recession','depression','deflation','stagflation','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:08'),(447,'Which of the following is a function of the central bank?','Accepting deposits from the public','Lending to the commercial bank','Discounting bills of exchange','Agent of payment for individuals','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:09'),(448,'Cost-push inflation is likely to arise when','there is an increase in government spending','there is an increase in direct taxes','demand for higher wages is granted','there is a decrease in bank lending','','','c','','wassce','2003',92,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:10'),(449,'The most important function of merchant banks is the','issuing of currency','provision of short term loans','provision of medium and long term loans','provision of short and long term loans','','','c','','wassce','2003',91,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:11'),(450,'Precautionary motive relates to','demand for money','demand for goods','supply of money','supply of goods','','','a','','wassce','2003',107,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:12'),(451,'Invisible trade refers to trade in','services','goods and services','tangible goods','crude oil','','','a','','wassce','2003',83,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:13'),(452,'When the demand for foreign exchange exceeds its supply, the value of the domestic currency','appreciates','depreciates','inflates','expands','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:14'),(453,'Which of the following is part of the capital account of the balance of payments?','Net investment from abroad','Import of machinery','Insurance','Transportation costs','','','a','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:15'),(454,'The most common index for measuring development is','the level of illiteracy','the per capital income','nutritional levels','population growth rate','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:16'),(455,'Governments of West African countries levy taxes to','prevent prices from falling','make people richer','limit the number of banks','finance government projects','','','d','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:17'),(456,'Which of the following is a direct tax?','Import duties','Purchase tax','Export duties','Personal income tax','','','d','','wassce','2003',91,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:18'),(457,'The tax whose rate increases as the level of income increases is known as','regressive tax','proportional tax','progressive tax','company tax','','','c','','wassce','2003',133,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:19'),(458,'Public expenditure on education and health is known as expenditure on','general services','social services','commercial services','economic services','','','b','','wassce','2003',81,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:20'),(459,'Budget deficit can be financed by','reducing the level of taxation','printing more money','lending to financial institutions','employing more workers','','','b','','wassce','2003',79,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:29'),(460,'A major problem facing the Economic Community of West African States (ECOWAS) as an economic integration, is the','increasing population','willingness of member to co-operate','geographical contiguity','weak trade relations','','','d','','wassce','2003',95,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:30'),(461,'In a socialist economy, the means of production is owned and controlled by the','state','rich','Entrepreneur','traders','','','a','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:31'),(462,'It is necessary to estimate the national income of a country because it','indicates the overall performance of the economy','ensures equitable distribution of wealth','assists investors in identifying profitable ventures','enables governments to conserve national resources','','','a','','wassce','2003',77,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:32'),(463,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','perfect competition','monopsony','duopoly','cartel','','','d','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:33'),(464,'Which of the following is an economic activity?','Attending a town’s meeting','A visit to the stadium','Payment of school fee','Arresting a petty thief','','','c','','wassce','2004',88,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:33'),(465,'The reward for land as a factor of production is','interest','rent','dividend','wages','','','b','','wassce','2004',84,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:34'),(466,'The three broad categories of production are','direct, secondary and extractive','primary, tertiary and direct','primary, secondary and tertiary','secondary, primary and indirect','','','c','','wassce','2004',93,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:35'),(467,'A carpenter’s consumer good include:  I.  a kilogram of rice II.  3 pairs of shoes    III.  4 pairs of socks   IV. 3 screw-drivers','I and IV only','I, II, III and IV','I, II and IV only','I, II and III only','','','a','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:36'),(468,'In a capitalist system, the means of production is owned and controlled by','the government','politicians','private individuals','the workers','','','c','','wassce','2004',78,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:37'),(469,'Mixed economy refers to a system in which the means of production are controlled by','private enterprise and the government','private individuals','the government only','the workers and businessmen','','','a','','wassce','2004',94,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:38'),(470,'An economic good is described as a good which','yield utility and commands a price','is useful and occupies a space','is in high demand and transferable','has unlimited supply','','','a','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:39'),(471,'The concept of opportunity cost is important to the firm because it','determines the prices of the firm’s products','increases the level of output of the firm','leads to maximum satisfaction of the consumers','Guides firms in allocating scarce resources','','','d','','wassce','2004',94,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:40'),(472,'As a firm expands, it enjoys some advantages called','variable proportions','diminishing marginal returns','internal economics of scale','decreasing returns to scale','','','c','','wassce','2004',89,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:41'),(473,'Division of labour is limited by','the size of the market','the productivity of capital','cost of production','factors of production','','','a','','wassce','2004',73,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:42'),(474,'An entrepreneur is likely to make more profits when','expenditure is more than revenue','competitors charge lower prices','cost per unit output falls','quantity of output reduces','','','c','','wassce','2004',84,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:43'),(475,'Natural growth rate is','birth rate less death rate','death rate less migration','death rate plus birth rate','birth rate plus migration','','','a','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:45'),(476,'A major effect of aging populations is','reduced labour force','rise in prices of commodities','reduced infrastructure','neglect of agriculture','','','a','','wassce','2004',97,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:46'),(477,'One of the problems associated with the middleman in the distribution of goods is that he','buys in large quantities','hoards goods','grants credit to the retailer','sells varieties of goods','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:47'),(478,'The distribution of goods is said to be completed when it reaches the','wholesalers','consumers','retailers','manufacturers','','','b','','wassce','2004',90,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:49'),(479,'The gap between demand and  supply  curves  below the equilibrium price indicates','excess demand','excess supply','equilibrium quantity','equilibrium price','','','a','','wassce','2004',99,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:52'),(480,'Demand for inferior good is an example of','expansion of demand','contraction of demand','individual demand','abnormal demand','','','d','','wassce','2004',90,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:55'),(481,'When a change in price does not affect the quantity demanded of a commodity, the price elasticity of demand is','fairly inelastic','infinitely elastic','perfectly inelastic','unitary elastic','','','c','','wassce','2004',96,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:56'),(482,'For both the monopolist and the perfectly competitive firm, profit maximizing output occurs at the point where the','marginal cost curve cuts the marginal revenue curve from below','marginal revenue curve cuts the marginal output from above','marginal cost curve intersects the X-axis','marginal revenue curve intersects the Y-axis','','','a','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:34:58'),(483,'The market structure in which the operators are many and none of them can influence the price is','imperfect market','perfect market','oligopolistic market','stock market','','','b','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:34:59'),(484,'One main benefit of partnerships is','the possibility of raising funds on the stock exchange','the possibility of attracting twenty one or more members','that members can specialize in various functions','that it enjoys its own separate legal entity.','','','c','','wassce','2004',85,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:00'),(485,'Joint ventures are partnerships involving','the poor and the rich','employers and workers','government and private investor','multi-nationals and individual','','','c','','wassce','2004',102,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:10'),(486,'The value of money is best determined by','input-output ratio','the purchasing power','the importance people attach to it','economics of scale','','','b','','wassce','2004',84,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:11'),(487,'Which of the following will be an effect of inflation?','Wages earners will gain','Borrowing of money will be restricted','Money lenders will gain','Borrowers of money will gain','','','d','','wassce','2004',92,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:12'),(488,'Government can control inflation by','printing more money','reducing the rate of taxes','reducing the level of expenditure','establishing more banks','','','c','','wassce','2004',98,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:13'),(489,'The market consisting  of  a  network  of  dealers  where \tcurrencies can be bought and sold is known as','capital market','foreign exchange market','commodity market','the stock market','','','b','','wassce','2004',82,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:14'),(490,'Open Market Operation (OMO) means the','provision of credit facilities by commercial banks','provision of credit facilities by the mortgage banks','buying and selling of government securities by the central bank','procedure for the establishment of commercial banks','','','c','','wassce','2004',82,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:15'),(491,'Which of the following is an advantage of  localization of industry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2004',78,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:16'),(492,'Which of the following will ensure efficiency in the industrial sector of your country?','Indigenization','Privatization','Nationalization','Liquidation','','','b','','wassce','2004',84,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:17'),(493,'The number of people who are qualified to work and who offer themselves for employment are called','migrant labour','working population','labour turnover','mobility of labour','','','b','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:18'),(494,'When the general price level persistently falls, the rate of  unemployment','rises','stagnates','rapidly reduces','equals natural growth rate','','','a','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:19'),(495,'Which of the following is not a direct effort to increase agricultural production?','Operation feed the nation','Use of improved seedlings','Increased loans to farmer and co-operative societies','National Youth Service Corps','','','d','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:20'),(496,'To ensure high employment rates, developing countries should','build more universities','protect infant industries','organize trade fairs','prevent rural-urban drift','','','b','','wassce','2004',92,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:21'),(497,'The act of selling goods in foreign markets at prices below those charged at home markets is called','exchange','specialization','dumping','exporting','','','c','','wassce','2004',91,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:22'),(498,'Taxes levied on commodities are','direct taxes','indirect taxes','poll taxes','investment taxes','','','b','','wassce','2004',91,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:22'),(499,'One disadvantage of direct taxes is that','government’s revenue is reduced','price of essential commodities fall','people are discouraged from additional work','firms make more profits','','','c','','wassce','2004',86,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:32'),(500,'International trade is an application of the principle of','industrial production','mass production','regional co-operation','comparative costs advantage','','','d','','wassce','2004',95,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:39'),(501,'Trade among West African countries is poor because the','countries are self-sufficient','communication links are weak','number of banks is insufficient','people are not enterprising','','','b','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:40'),(502,'A policy by which governments restrict the amount of \\n\tforeign currencies bought and sold is known as','devaluation','credit creation','exchange control','export promotion','','','c','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:41'),(503,'Which of the following items is under the capital account of a balance of payments','Repayments of foreign loans','Visible imports','Invisible exports','Cocoa export','','','a','','wassce','2004',97,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:42'),(504,'A surplus in the balance of payments should be used to','subsidize multi-national companies','build infrastructure for friendly nations','make donation to developed countries','buy investments overseas','','','d','','wassce','2004',98,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:43'),(505,'Development planning which takes an overall view of the economy is described as','Aggregate economic planning','Disaggregated economic planning','Sectorial economic planning','System economic planning','','','a','','wassce','2004',91,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:43'),(506,'The national income of a country can be estimated by the','cost-benefit method','distribution method','expenditure method','consumption method','','','c','','wassce','2004',87,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:45'),(507,'Which of the following is excluded when estimating national income?','Dividends','Wages and salaries','Transfer payment','Profits','','','c','','wassce','2004',72,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:47'),(508,'The economic Community of West African States (ECOWAS) has been slow in achieving its objectives because of','political instability in member state','the activities of multi-national','inadequate personnel at the secretariat','inadequate international support','','','a','','wassce','2004',73,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:49'),(509,'A major achievement of  the  Organization  of  Petroleum Exporting Countries (OPEC) is that','crude oil price has increased tremendously','petroleum products prices have remained low','producing countries are highly industrialized','price of crude oil has remained relatively stable.','','','d','','wassce','2004',99,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:50'),(510,'Economic activities are undertaken to solve the problem of','consumption','opportunity cost','production','scarcity','','','b','','wassce','2005',86,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:51'),(511,'Farming, mining and fishing are','primary production','secondary production','tertiary production','intermediate production','','','a','','wassce','2005',96,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:52'),(512,'A list of consumers’ wants arranged in order of priority is known as','a budget','an opportunity cost','a scale of preference','choice','','','c','','wassce','2005',98,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:53'),(513,'The 150.00 Naira which Olu would have used to purchase a textbook was used to buy a T-shirt. This implies that','Olu’s real cost is 150.00 Naira','Olu’s opportunity cost is the T-shirt','Olu’s opportunity cost is the textbook','Olu’s money cost is also the real cost.','','','c','','wassce','2005',82,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:54'),(514,'The remuneration of the entrepreneur as a factor of production is called','wages','salary','interest','profit','','','d','','wassce','2005',89,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:55'),(515,'The production factor, whose entire world supply is fixed is','land','skilled labour','capital goods','entrepreneurship','','','a','','wassce','2005',74,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:56'),(516,'When all factor inputs are reduced by half, the production possibility curve will shift','outwards','inwards','downwards','upwards','','','b','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-07-14 14:35:56'),(517,'When a worker changes from one type of job to another, it is called','geographical mobility of labour','occupational mobility of labour','immobility of labour','rural-urban migration.','','','b','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:35:57'),(518,'Which of the following determines the sizes of a country’s population?    (l) Birth rate    (ll) Death rate     \\n\t(lll) Migration rate     (lV) lmportation rate    (V) Unemployment','l), (ll) and (V)','(ll) and (lV)','(I), (II) and (lll)','(I) and (V)','','','c','','wassce','2005',90,'Admin','2016-11-12 23:29:59','2020-07-14 14:35:58'),(519,'Age distribution is important because it helps the \tgovernment to','check rural-urban drift','determine the number of foreigners','determine the number of factories','undertake effective planning','','','d','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-07-14 14:35:59'),(520,'A group of firms producing similar commodities for the same market constitute','a cartel','an industry','a co-operative','wholesalers','','','b','','wassce','2005',88,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:00'),(521,'A factor that has slowed down the rate of industrial development in West Africa is','inadequate technology','increasing rate of manpower production','increased demand for local goods','intervention of the government in business activities.','','','a','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:01'),(522,'To achieve an equilibrium position, the consumer must buy so much of each commodity whose price is equal its','marginal utility','total utility','average utility','variable utility','','','a','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:02'),(523,'Price control refers to','the ways of making more goods available in the market','a policy of ensuring stable price in the market','a general reduction in the price level','effective working of the forces of demand and supply','','','b','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:03'),(524,'The desire for goods without the ability to pay is called','choice','effective demand','joint demand','wants','','','d','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:04'),(525,'Amount of goods offered to the market at respective prices and presented in a table is called','price schedule','supply schedule','scale of preference','demand schedule','','','b','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:05'),(526,'At the equilibrium price, quantity demanded is','greater than quantity supplied','equal to quantity supplied','less than quantity supplied','equal to excess supply','','','b','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:06'),(527,'lf the government fixed a price of a commodity above the equilibrium price, the quantity supplied will be','less than quantity demanded','equal to the quantity demanded','greater than quantity demanded','equal to zero','','','c','','wassce','2005',92,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:07'),(528,'One of the factors determining price elasticity of demand for a commodity is the','availability of close substitutes','number of producers','government policy','price of other commodities.','','','a','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:08'),(529,'lf elasticity of demand for a commodity is less than one, demand is','unitary elastic','inelastic','infinitely elastic','zero elastic','','','b','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:10'),(530,'The transfer of ownership of a public enterprise to  individuals and firms is called','commercialization','nationalization','privatization','restructuring','','','c','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:11'),(531,'One-man businesses are popular in West Africa because of all the following except the','ease of entry','small capital required','limited entrepreneurial skill needed','tendency to become joint-stock companies.','','','d','','wassce','2005',99,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:12'),(532,'Wholesalers are often criticized because they','help to break the bulk','finance producers','increase prices','provide after-scale services','','','c','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:13'),(533,'ln which of the following business units are the owners mostly the customers?','Co-operatives','Limited liability companies','Partnerships','Public corporations','','','a','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:14'),(534,'information about new goods is passed on to buyers through','advertising','retail trade','the manufacturer','wholesale trade','','','a','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:15'),(535,'The profit of the producer can be calculated as','total cost less total revenue','average revenue less average cost','total revenue less total cost','marginal revenue less marginal cost','','','c','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:16'),(536,'The direct exchange of one good for another without the use of money is known as','foreign exchange','exchange rate','expenditure','barter','','','d','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:37'),(537,'Acceptability, durability, homogeneity and portability are all \tattributes of good','markets','money','banks','government','','','b','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:38'),(538,'The term demand for money means','desire to borrow money from people','desire of an individual to invest all his money in  projects','willingness of people to hold money','willingness of people to keep all their resources in  assets.','','','c','','wassce','2005',81,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:39'),(539,'A persistent and appreciable rise in the general level of prices is known as','depreciation','inflation','deflation','production','','','b','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:40'),(540,'To a commercial bank, deposits are','liabilities','assets','capital','cash at hand','','','d','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:41'),(541,'The lender of last resort in the banking system is the','industrial bank','mortgage bank','commercial bank','central bank','','','d','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:42'),(542,'Discounting a bill of exchange means the bill is','cashed over the counter','sold on the stock exchange','bought for less than its face value','sold to the highest bidder','','','c','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:43'),(543,'The central bank controls credit in the economy through the use of','legal tender','travelers cheque','foreign exchange instruments','open market operations','','','d','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:44'),(544,'Among the principles of taxation propounded by Adam Smith was that','a tax should be impossible to evade','a tax should be convenient to pay','no tax should be levied on food','there should be no taxation without representation','','','b','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:45'),(545,'Mr. Bala’s income is $800.00 per month while that of Mr. Jatau is $1,200.00. lf Messrs Bala and Jatau pay $80.00 and $120.00 respectively as taxes, the tax system is','progressive','regressive','proportional','ad-valorem','','','c','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:46'),(546,'Government revenue from the groundnut industry is from','licenses','rents','royalties','taxes','','','d','','wassce','2005',99,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:47'),(547,'The theory of comparative cost advantage is associated with','Alfred Marshal','Adam Smith','David Ricardo','J.B. Say','','','c','','wassce','2005',82,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:48'),(548,'When the value of a nation’s exports is greater than its imports','a favourable balance of trade exists','an unfavourable balance of payment exists','the net foreign trade is zero','inflation occurs','','','a','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:49'),(549,'To improve the balance of payments position of West African countries, there must be','removal of barriers to importation of goods and services','increased rate of exportation of goods and services','increased domestic consumption of foreign produced goods','the development of the local market.','','','b','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:50'),(550,'The Economic Community of West African State (ECOWAS) is an example of','bilateral trade','economic integration','regional marketing board','international competition','','','b','','wassce','2005',94,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:51'),(551,'One reason for the low agricultural production in West African countries is that','agriculture employs the highest percentage of the labour force','too much money is invested in agriculture','farmers lack the finance and technology required','the farms are too large','','','c','','wassce','2005',97,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:51'),(552,'Mono-product economies are those that','produce one main commodity','produce only raw materials','depend on the export of their raw materials','specialize in agricultural industries','','','a','','wassce','2005',89,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:52'),(553,'.\\n\\n\tAn essential characteristics of a market economy is','government control','producer surplus','consumer surplus','consumer sovereignty','','','d','','wassce','2005',98,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:53'),(554,'ln a capitalist system, goods are produced for those who','want them most but cannot pay for them','can pay for them but do not want them','want them and can also pay for them','are dependent on the labour force','','','c','','wassce','2005',73,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:54'),(555,'An economy which exhibits features of both private and State enterprises is known as a','capitalist economy','mixed economy','communist economy','socialist economy','','','b','','wassce','2005',78,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:55'),(556,'ln calculating the national income of a country x, the cost of both raw materials and the finished products \t\twere included. This is a case of','double counting','price fluctuations','price differentiation','price discrimination','','','a','','wassce','2005',93,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:56'),(557,'Economic development is defined as','outward shift of the production possibility curve','availability of more goods and services','growth accompanied by qualitative change in living standards.','growth in the national income','','','c','','wassce','2005',82,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:57'),(558,'Which of the following is not an objective of the \\n\tOrganization of Petroleum Exporting Countries (OPEC)?','Stabilization of oil prices','Co-ordinating oil prices','Harmonizing oil prices','Stagnation of developed economies.','','','d','','wassce','2005',124,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:58'),(559,'The study of Economics enables individuals to','change jobs.','evade taxes.','accumulate huge wealth','make national decision','','','d','','wassce','2006',81,'Admin','2016-11-12 23:59:28','2020-07-14 14:36:59'),(560,'Most of the problems of economies arise as a result of','demands for scarce resource','increase in  the demand for more goods and services.','the desire of producers to supply more goods and services.','the need to reduce the level of poverty.','','','a','','wassce','2006',87,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:05'),(561,'Which of the following tools of economic analysis is used when data contains more than one category?','Bars charts','Component bar charts','Graphs','Symbolical statement','','','b','','wassce','2006',84,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:06'),(562,'The reward of capital as a factor of production is','rent','wage','interest','commission.','','','c','','wassce','2006',97,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:07'),(563,'Mining is an example of','tertiary production','primary production','secondary production','advanced production','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:29','2020-07-15 09:09:54'),(564,'An owner-manager of a firm can also be called','shareholder','an entrepreneur','an employer','a chairman','','','b','','wassce','2006',97,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:09'),(565,'If the fixed cost of a firm is 800 Naira and its variable cost is \t2,700 Naira while its total output is 100 units, what is the average cost of the firm?','25 Naira','35 Naira','45 Naira','50 Naira','','','b','','wassce','2006',75,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:10'),(566,'Distribution of good and services is hindered by','good road network','efficient storage facilities','too many middlemen.','Adequate market information.','','','c','','wassce','2006',66,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:11'),(567,'A movement along the same demand curve either upwards \tor downwards as a result of changes in price implies','a change in demand','a change in quantity demanded.','an increase in demand','a shift in the demand curve to the right.','','','b','','wassce','2006',86,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:12'),(568,'Middlemen in an economy perform the function of','distribution','exchange','hoarding.','protection.','','','a','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:13'),(569,'One of the factors affecting geographical distribution of population is','high birth rate','high death rate','encouragement of early marriage in the rural areas','climatic conditions of  the different parts of the country','','','d','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:14'),(570,'Standardization of products or services is a feature of','large firms','retailers','small firms','wholesalers.','','','a','','wassce','2006',72,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:15'),(571,'The amount of satisfaction obtained from the consumption of a commodity at a particular time is called','marginal utility','diminishing utility','total utility','average utility','','','c','','wassce','2006',78,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:16'),(572,'What are inferior goods? These are goods','that are generally in short supply.','that are no longer in demand','whose demand falls as income increases','whose price falls as demand increases','','','c','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:17'),(573,'In the analysis of utility theory, the basis of demand is','marginal utility','average utility','fixed utility','diminishing utility','','','a','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:18'),(574,'In the normal market situation, when the price of a commodity rises, the','demand for the commodity will rise','demand for the commodity will fall','supply of the commodity will be constant','Supply of the commodity will fall.','','','b','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:19'),(575,'When the quantity of a commodity supplied increases and the quantity demanded decreases there will be','a rise in price','no change in price','price fluctuation','a fall in price.','','','d','','wassce','2006',93,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:20'),(576,'The market price of a commodity is normally determined by the','law of demand','interaction of the forces of demand and supply.','total number of people in the market','total quantity of the commodity in the market.','','','b','','wassce','2006',73,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:21'),(577,'The mechanism which allows the price of a commodity to be fixed either above or below the equilibrium is known as','monopolistic competition','price discrimination','perfect competitive market','price control','','','d','','wassce','2006',79,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:22'),(578,'A debenture holder is entitled to payments in the form of','allowance','interest','salary','donation','','','b','','wassce','2006',81,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:23'),(579,'The main difference between a private and a public \\n\tenterprise is the','amount of profit realized','mode of operation','objective of the business','ownership structure','','','d','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:24'),(580,'The total amount of money raised by a company through insurance of shares to the public is','debentures','nominal capital','ordinary shares','paid-up capital','','','b','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:24'),(581,'Buying and selling of shares is a function performed mostly \tby the','insurance companies','stock exchange','merchant banks','discount houses','','','b','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:25'),(582,'Which of the following is not reason for establishing public \tenterprises?','Discouraging investors','Opening up neglected parts of the country','Effective control of a natural monopoly','Rapid economic development','','','a','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:26'),(583,'For a monopolist, the average revenue (AR) curve is  above','the total cost curve','the same as the marginal cost curve','above the marginal revenue curve','the same at that of the perfect competitor.','','','c','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:27'),(584,'Advertising expenses would not be necessary under perfect competition because','consumers would have complete knowledge of goods','cost of production would be at the maximum level','.  \\n\tevery firm  would enjoy the benefits of large scale production','incomes of the consumers in the community would be high.','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:28'),(585,'The equilibrium level of output of a monopolist is determined at a point where','marginal cost equal average  revenue','marginal cost equals average cost','marginal cost equals marginal  revenue','marginal  revenue equals average cost','','','c','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:29'),(586,'.\\n\\nWhich of the following is a legal tender in West Africa?','Treasury bill','Share','Credit card','Currency','','','d','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:30'),(587,'The policy of government to increase the supply of money to meet its own expenditure plans is likely to be','speculative','deflationary','inflationary','contractionary','','','c','','wassce','2006',103,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:31'),(588,'The tendency for prices to rise while the value of money falls is known as','bills of exchange','inflation','depreciation','deflation.','','','b','','wassce','2006',101,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:32'),(589,'One way to solve the economic problem of inflation in a country is by increasing the','supply of commodities','supply of currency','salaries of workers','demand for commodities.','','','a','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:33'),(590,'The motive for holding money for investing in securities is \treferred to as','transactionary','speculative','accumulation','deflationary','','','b','','wassce','2006',79,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:34'),(591,'A cheque book is issued to customers of a bank operating a','savings account','time deposit account','current account','fixed deposit account','','','c','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:35'),(592,'Amount proposed for payments of wages and salaries in a budget is regarded as part of','recurrent expenditure','direct investment','recurrent revenue','capital receipt','','','a','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:36'),(593,'The difference between the Gross National Product (GNP) and the Gross Domestic Product(GDP) is','total interest payment','net income generated internally','total national savings','net income from abroad.','','','d','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:37'),(594,'Which of the following agricultural systems is mainly for the','cultivation of food crops for family consumption?','Co-operative farming','Commercial farming','Subsistence farming','','','c','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:38'),(595,'Agriculture is important to the economy of West African countries because it is the source of','power','equipment supply','industrial  input','technological progress','','','c','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:38'),(596,'The economic system in which the state takes the','economic decisions through details planning is','capitalism','socialism','traditional economic system','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:39'),(597,'A mixed economy combines the characteristics of both','planned  and capitalist economics','exchange subsistence economies','subsistence and planned economies','capitalist and exchange economics','','','a','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:40'),(598,'In a rapidly growing economy, a change in technology which is labour saving is likely to cause','residual unemployment','structure unemployment','disguised unemployment','frictional unemployment','','','d','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:41'),(599,'Which of the following is a form of tax evasion?','Wrong declaration of earnings','Payments of flat rate tax','constant employment','Low capacity utilization','','','a','','wassce','2006',69,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:42'),(600,'Where the burden of a tax finally rest is called','tax object','tax rate','incidence of taxation','system of taxation.','','','c','','wassce','2006',77,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:43'),(601,'An increase in the quantity of goods and services produced \tin a country which raises her national income is known as','economic development','economic growth','domestic investment','productivity.','','','b','','wassce','2006',79,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:44'),(602,'The formula “index of export prices” / “Index of import prices”   x 100   is used to measure the','volume of trade between countries','direction of international trade','commodity terms of trade','volume of imports','','','a','','wassce','2006',101,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:45'),(603,'Which of the following is an invisible item?','Banking services','Petroleum products','Processed rice','Processed milk','','','a','','wassce','2006',90,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:46'),(604,'In an attempt to correct a deficit balance of payments, a country may decide to increase','domestic production','imports','domestic expenditure','tax on infant industries.','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:47'),(605,'Which of the following is an objective of economic integration?','Harmonization of cultural practices','Free movement of persons, goods and services','Payment of high tariffs','Dumping of goods in less developed countries','','','b','','wassce','2006',96,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:48'),(606,'One of the functions of the International Monetary Fund (IMF) is to','devalue the currency of member states','reduce drastically the size of deficit financing of member states','give financial assistance to member states that have temporary balance of payment difficulties','the rapid industrialization process in the less developed nations of the world','','','c','','wassce','2006',76,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:49'),(607,'The full meaning of OPEC is','Oil and Petroleum Exporting Countries','Original Petroleum Exporting Companies','Organization of Petrol Exporting Countries','Organization of Petroleum Exporting Countries','','','d','','wassce','2006',73,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:50'),(608,'The three principal economic units in any system are','trade, industry and banking','workers, consumers and shareholder','households, firms and government','companies, industry and plants','','','c','','wassce','2007',106,'Admin','2016-11-13 15:46:54','2020-07-14 14:37:51'),(609,'The satisfaction derived from the use of a commodity is its','demand','elasticity','wealth','utility','','','d','','wassce','2007',84,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:52'),(610,'The reward which accrues to labour for participating in production is','interest','wage','bonus','profit','','','b','','wassce','2007',86,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:53'),(611,'The Malthusian theory of population does not concern itself with','growth of food production in arithmetical progression','growth of population in geometric progression','positive checks to population growth','development and growth of manpower','','','d','','wassce','2007',86,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:54'),(612,'One characteristic of labour is that it is','fixed in demand','fixed in supply','mobile','untrainable','','','c','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:55'),(613,'A country where labour is not sufficient to make proper use of the natural resources is said to have an','active population','optimum population','over-population','under-population','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:56'),(614,'When population is classified according to professions, it is called','geographical distribution of population','age distribution of population','sex distribution of population','occupational distribution of population','','','d','','wassce','2007',90,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:57'),(615,'What must be added to variable cost to give total cost?','Average total cost','Average variable cost','Fixed cost','Marginal cost','','','c','','wassce','2007',79,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:58'),(616,'Revenue is the','total profit made after sales','amount spent on purchases','amount of goods produced','total money realized from sales.','','','d','','wassce','2007',91,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:04'),(617,'Given that TR is total revenue, then TRn - TR(n-1) can be used to find the','marginal revenue','marginal cost','average cost','average revenue','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:10'),(618,'The lower the price of a commodity, the greater the quantity demanded. This is based on the assumption that consumers’','income is diminished','income remains the same','utility is diminished','population is high','','','b','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:11'),(619,'The demand for beans in bags is given by the function Q - 36 + 0.4P = 0. Where P is price in Naira and Q is quantity, find Q when P = 20 Naira.','12 bags','24 bags','28 bags','30 bags','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:12'),(620,'If the price of good X rises and the quantity demanded of good Y increases then the two goods X and Y must be','inferior good','substitutes','complements','free goods','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:13'),(621,'Use the following  demand schedule to answer question Price (N=) [15, 13]\tQuantity Demanded[60, 70] The percentage change in quantity demanded is','12.7%','15.7%','16.7%','19.7%','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:14'),(622,'In a situation where demand is perfectly elastic, imposition of a tax on a commodity to raise its price will result in','consumers increasing their demand for the product','consumers demand for the product remaining unchanged','consumers shifting completely to substitute products','suppliers increases the supply of the product','','','c','','wassce','2007',93,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:15'),(623,'Patents are examples of','natural barriers to entry','legal barriers to entry','illegal barriers to entry','unnatural barriers to entry','','','b','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:16'),(624,'Which of the following is a characteristic of monopoly?','Many sellers','Homogeneous commodity.','A single seller','Perfect knowledge','','','c','','wassce','2007',92,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:17'),(625,'When a firm is nationalized','former owners are removed without compensation','it has the right to draw on state funds for capital investment','it must break even within a specified period','workers take control of the firm','','','b','','wassce','2007',66,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:18'),(626,'The practice whereby a business is owned by two or more independent firms is termed','indigenization','joint venture','commercialization','foreign investment','','','b','','wassce','2007',83,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:19'),(627,'The main objective of privatizing a government business is to','create additional employment','increase expenditure','source for new funds','increase the level of efficiency','','','d','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:20'),(628,'The return on investment that is just sufficient to satisfy the owner of a business is called','economic profit','business profit','normal profit','excess profit','','','c','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:21'),(629,'Which of the following is a middlemen in the chain of distribution?','An entrepreneur','A producer','A banker','A retailer','','','d','','wassce','2007',79,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:22'),(630,'A negative effect of the presence of a large number of middlemen in the distributive network is','greater variety of goods','greater quality of goods','lower price of goods','higher price of goods','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(631,'An example of a producer good is a','tin of milk','hammer','loaf of bread','shirt','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(632,'To promote the development of the agricultural sector, governments of West African countries should','encourage rural-urban drift','discourage foreign investment in agriculture','support the marketing of farm produce','reduces tariff on food import','','','c','','wassce','2007',87,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:24'),(633,'The most important quality of money is that it must be','relatively scarce','generally acceptable','portable','durable','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:25'),(634,'A certain amount of money is needed for everyday expenditure like buying of goods, transportation and others. This is','transaction demand for money','precautionary demand for money','derived demand for money','speculative demand for money','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:27'),(635,'Long-term loans can be secured from','commercial banks','discount houses','development banks','acceptance houses','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:29'),(636,'The value of money is generally measured in relation to the','interest rate charged on bank loan','general price level','size of a country’s gold stock','volume of imports','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:30'),(637,'Which of the following is true under rapid inflation? People','demand less foreign exchange','set up businesses','to pay their taxes','hardly want to lend money','','','d','','wassce','2007',79,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:31'),(638,'Which of the following financial institutions was originally known as a Building Society?','Development bank','Insurance company','Mortgage bank','Merchant bank','','','c','','wassce','2007',88,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:32'),(639,'A non-bank financial intermediary which is regarded as a pool of risks is the','cooperative society','stock exchange','insurance company','post office','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:33'),(640,'A foreign exchange market deals in','treasury bills','currencies','government bonds','commodities','','','b','','wassce','2007',80,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:34'),(641,'Which of the following institutions assists the government in managing the national debt?','Commercial Banks','The Central Bank','The Capital Market','The World Bank','','','b','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:35'),(642,'If tax takes a larger proportion of the income of people with \tlower income, the tax is','progressive','proportional','regressive','ad-valorem','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:36'),(643,'Which of Ike following is an example of direct tax?','Import duties','Income tax','Export duties','Purchase tax','','','b','','wassce','2007',61,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:38'),(644,'Monetary control measures are coordinated by','development banks','merchant banks','commercial banks','the Central banks','','','d','','wassce','2007',112,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:40'),(645,'A country whose economy is buoyant is likely to have','a weak currency','devaluation from time to time','a strong currency','balance of payment problem','','','c','','wassce','2007',63,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:41'),(646,'The Net National Product (NNP) is Gross National Product (GNP) less','domestic product','foreign product','depreciation','investment','','','c','','wassce','2007',73,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:42'),(647,'If the population of a country is low and the Gross National Product is high, the per capita income will be','high','low','average','unitary','','','a','','wassce','2007',96,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:44'),(648,'The population of a country in a certain year was fifty million and the per capita income was $2050. What was the national income?','$ 750,000 million','$100,250 million','$ 102,500 million','125,050 million','','','c','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:45'),(649,'One of the advantages of capitalism is that','consumers are exploited','private initiative is discouraged','efficient allocation of resources is assured','job security is assured','','','c','','wassce','2007',73,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:53'),(650,'Which of the following contributes the highest amount of foreign exchange to the economy of West African nations?','Construction, manufacturing and banking','Shipping, trading and fishing','Power, telecommunications and sports','Extraction, farming and tourism','','','d','','wassce','2007',93,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:54'),(651,'International trade depends on the concept of','marginal cost advantage','comparative cost disadvantage','Comparative cost advantage','absolute cost','','','c','','wassce','2007',86,'Admin','2016-11-13 15:46:57','2020-07-14 02:26:11'),(652,'One advantage of international trade is that','countries depend on each other','it introduces variation in prices','it increases demand for foreign goods','it makes variety of goods available','','','d','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 02:25:01'),(653,'The practice of selling goods overseas and often below the cost of production is known as','retailing','dumping','internal trade','advertising','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:57','2020-07-14 02:23:51'),(654,'A summary of all the receipts and payments of a country in \tinternational transactions is called','terms of trade','balance of payment','balance of payment adjustment','capital account','','','b','','wassce','2007',77,'Admin','2016-11-13 15:46:57','2020-07-14 02:20:28'),(655,'4Which of the following countries export cocoa?','Liberia and The Gambia','Ghana and Sierra Leone','Nigeria and Ghana','Sierra Leone and Nigeria','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:57','2020-07-14 02:27:23'),(656,'Which of the following are examples of transfer payments?','Gifts and donations','Rents and rates','Profits and dividends','Internal and external debts','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 02:25:01'),(657,'ECA means','Economic Commission for Africa','Economic Community of Africa','Exporting Countries of Africa','Economic Conference on Africa','','','a','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-07-14 02:12:40');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `english` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=597 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `english` VALUES (1,' He put…………..  eggs in a basket.','white dozen eggs ','a dozen white eggs  ',' a white dozen eggs ','dozen white','most appropriate option','','b','','utme','2003',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:38:55'),(2,'The reason why he was not offered admission was …………… his results could not be found.','that   ','when  ','owing to ','because ','most appropriate option','','a','','utme','2003',3638,'Admin','0000-00-00 00:00:00','2020-07-14 14:38:56'),(3,'Course………….  writers are to reflect local colour',' material\\'s ','materials\\'','materials ','material ','most appropriate option','','b','','utme','2003',3829,'Admin','0000-00-00 00:00:00','2020-07-14 14:38:57'),(4,'If you saw the photograph of the man……………………you be able to identify him?','could','would   ','can ','will ','most appropriate option','','b','','utme','2003',3857,'Admin','0000-00-00 00:00:00','2020-07-14 14:38:58'),(5,'As Obande does not know anyone in this city, he hopes that some kind …………  will put him up for the night','man','men ','inhabitants ','individuals','most appropriate option','','a','','utme','2003',3760,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:00'),(6,' The doctor asked the patient what………….','The problem is   ',' Is your problem ','The problem was. ',' Is the problem','most appropriate option','','c','','utme','2003',3688,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:02'),(7,'The woman is one? of the …………. of the society.','elitist  ',' elites ','ellte','elitists ','most appropriate option','','c','','utme','2003',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:03'),(8,'Three quarters of the people in the village  killed but only half of then \\n          huts……. affected  \\n','were/ were ','was/was','were/ was','was/were ','most appropriate option','','c','','utme','2003',3731,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:04'),(9,'The armed robbers went into the house and robbed the three','woman occupants','women\\'s occupants ','woman\\'s occupants','   women occupants.','most appropriate option','','a','','utme','2003',3878,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:05'),(10,' It was a free-for-all and the students were blamed for taking the law','in their own hands ','into their own hands ','into their hands ','in their hands.','most appropriate option','','b','','utme','2003',3748,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:06'),(11,'The candidate\\'s charisma should be a..………factor in winning the election. ','determinant ','determinate','determining ','determinable ','most appropriate option','','c','','utme','2003',3782,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:08'),(12,'I can\\'t stand people prying into my private life. \\'Ladi said \\'………… agree Agbenu','Me too ','Likewise myself ','Me neither ','I also ','most appropriate option','','b','','utme','2003',3725,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:14'),(13,' Four weeks ..................  enough for the police to  conclude   their','were',' is ',' are ',' has been','most appropriate option','','b','','utme','2003',3700,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:15'),(14,'  It is bad to take………… property without permission. ','someone else\\'s ','someone’s else',' someone\\'s ','someone\\'s else\\'s\\' ','most appropriate option','','b','','utme','2003',3652,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:16'),(15,'Classmate……………………….  I haven\\'t seen for years, wrote to me last week.','whose ','which ','that',' whom','most appropriate option','','d','','utme','2003',3743,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:17'),(16,'If you would do me this favour,  I …………..  be very grateful','should',' would ',' shall ','will','most appropriate option','','b','','utme','2003',3707,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:18'),(17,'Ali plays ……….violin with remarkable skill','a    ','the','their ','some ','most appropriate option','','b','','utme','2003',3740,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:19'),(18,'1 have the ……… of meeting the President.','privilege  ','privelege ','previlege ','privilege ','most appropriate option','','d','','utme','2003',3711,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:19'),(19,'The sergeant spoke to me in a ……………  manner','Coarse','causal     ','coerce    ','course ','most appropriate option','','a','','utme','2003',3752,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:20'),(20,'Idakwo ran……………. miss the train','lest he may',' lest ha should','lest he almost   ','lest he will ','most appropriate option','','b','','utme','2003',3830,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:21'),(21,'How is the new editor ……………on with hit work','moving','getting','pushing ','going','most appropriate option','','b','','utme','2003',3683,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:22'),(22,'  Be careful not to…………….  this money ','loose  ',' loss ',' lost',' loss','most appropriate option','','b','','utme','2003',3740,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:23'),(23,'Nowadays, many graduates are not Will disposed to teaching……………..','are they','aren\\'t they?','do they?    ',' they are?','most appropriate option','','a','','utme','2003',3604,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:24'),(24,'Adike ………….. a message from the club regularly.','Receive ',' had received ',' receive',' has received ','most appropriate option','','a','','utme','2003',3705,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:25'),(25,'It is often……. that inflation ……….  from too much money chasing very few goods.    ','said/results','say/result      ','said/result   ','say/ resulted','most appropriate option','','a','','utme','2003',3697,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:26'),(26,'','spot    ','Law   ','North ','naught ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3703,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:27'),(27,'','cost    ','won’t    ','hope    ','coast ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3824,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:28'),(28,'','there   ','dear    ','fair         ','bear','choose the option that has a different vowel sound from the others.','','c','','utme','2003',3812,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:28'),(29,'','wife','of','off','laugh','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:29'),(30,'','chef','chief','shoe','ocean','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3829,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:31'),(31,'If he went to London, he would see the Queen','He did not go to London and did not see the Queen',' He would like to see the Queen when he goes to London','When he goes to London, he will see the Queen ','He did not see the queen when he went to London.','that best explains the information conveyed ','','c','','utme','2003',3669,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:31'),(32,'Ngozi has always considered her father to be an impassioned man ','Her father is a very strict man  ','Her father is a very lively man ','Her father is an emotional man ','Her father is a disciplined man ','that best explains the information conveyed ','','c','','utme','2003',3766,'Admin','0000-00-00 00:00:00','2020-07-15 04:09:32'),(33,'The manager paid us in hard currency  ','We were paid in a strong and stable currency ','We were paid in new notes ','We were paid in new notes','We were paid in foreign currency.','that best explains the information conveyed ','','a','','utme','2003',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:33'),(34,'The elders rebuked ','Olu for talking issue with his principal. ','Olu was scolded for acting in collusion with his principal ','Olu was reprimanded for arguing with his principal','Olu was blamed for issuing a statement denying his principal.','that best explains the information conveyed ','','b','','utme','2003',3923,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:34'),(35,'In spite of his humble beginning, Audu now throws his weight around ','His noble birth notwithstanding, Audu is a corrupt man ','From his poor background, Audu is now a rich man ','Despite his obvious poverty, Audu is a proud man ','Audu is arrogant despite his simple upbringing .','that best explains the information conveyed ','','d','','utme','2003',3718,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:35'),(36,' <u>Ch</u>alet','chairman','College','champagne','Chemical','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.  ','','c','','utme','2003',3748,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:36'),(37,'Tee<u>th</u>','taught','tank','though','thought',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2003',3771,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:37'),(38,'Co<u>n</u>crete ','anxious ','concern ',' consider ','attend ',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3746,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:38'),(39,'He is well known for his <i>inordinate</i> ambition ','passionate ','sound ','excessive','moderate ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3727,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:39'),(40,'A <i>conservative</i> estimate put the number of missing persons at forty.','an accurate ','An incorrect ','A rough ','Primitive ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3814,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:40'),(41,'Agbenu was <i>ecstatic</i> about her result ','sad','dispassionate ','mad ','pessimistic ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3762,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:50'),(42,'Students could be <i>timid</i>','Pugnacious ','friendly ','bold ','covetous','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3843,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:51'),(43,'The labour leader’s <i>recalcitrant</i> stance was applauded ','flexible ','uncompromising ','well-informed ','stubborn ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3813,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:52'),(44,'The company has continued to <i>monopolize</i> the distribution of the products.','regularize ','liberalize ','centralize ','specialize ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:53'),(45,'The doctor examined the patient <i>painstakingly</i> ','Carefully ','Perfunctorily ','Professionally ','Painfully ','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:54'),(46,'Toyin is married to an <i>impatient, self-centred man ','a tolerant ','a tolerable','a fretful ','an edgy','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3769,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:55'),(47,'The agency has sworn to deal  with all the <i>apostles</i>  of confederation ','opponents ','apostates ','Proponents ','Protagonists ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3709,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:56'),(48,'The members of the congregation were <i>inspired</i> by the sermon ','enthralled ','disenchanted ','disoriented ','bewitched ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3786,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:57'),(49,'<i>Gregarious</i> animals can be found in the zoo.','lonely ','tame ','wild ','various ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3868,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:58'),(50,'I am <i>loath</i> to do the assignment ','unwilling ','waiting ','dying ','willing ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3770,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:59'),(51,'Only those who are <i>gullible</i> fall victim to his trickery ','astute ','Courteous ','saucy ','devastated','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3808,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:00'),(52,'A cool bath in a hot weather can be truly <i>invigorating</i> ','debilitating ','devastating ','disgusting ','unpalatable','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3684,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:01'),(53,'The witness decided to <i>conceal</i> the evidence ','waive ','divulge ','hide','destroy ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3718,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:02'),(54,'The President SPOKE to the press ','Did the Present write to the press?','Did the president speak to the press?','Who spoke to the press?','Are these the pressmen that the President spoke to?','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','a','','utme','2003',3653,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:03'),(55,'My MOTHER served rice and fresh fish stew for dinner.','Did your mother serve rice and fresh fish stew for lunch?','Who served rice and fresh fish stew for dinner?','What kind of meal did your mother serve for dinner?','what kind of meal did your mother serve for dinner? ','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','b','','utme','2003',3798,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:04'),(56,'Mark<u>e</u>t  ','mortgage ',' bachelor ',' get ',' enter ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3690,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:05'),(57,'c<u>olo</u>nel ',' golden',' girl',' colony ',' goal ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3799,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:06'),(58,'t<u>e</u>nd ','caned ',' jeopardy ','turned ',' earned ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3776,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:06'),(59,'The boys knew that a storm was <i>imminent</i>','Impending ','encroaching ','possible ','threatening ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3723,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:14'),(60,'The leader has the <i>unstinting</i> support of his party ','cautious ','uninspiring ','unsparing ','laudable ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3684,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:15'),(61,'The <i>essence</i> of governance is to seek the good and well-being of the majority of the people ','characteristics ','importance ','Secret ','Goal','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3653,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:16'),(62,'The carpenter built a <i>commodious</i> wardrobe ','wide ','gigantic ','small ','spacious','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3694,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:17'),(63,'The company is to <i>shed</i> three thousand staff this year ','Throw up ','placate ','lay off','demote ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3811,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:18'),(64,'A few years ago, nobody would have believed that the economy would <i>turn around </i>','change ','deteriorate ','improve ','stagnate ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:19'),(65,'The man’s story sounded <i>plausible</i> to his audience ','credible ','entertaining ','fantastic ','credulous ','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3875,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:19'),(66,'Before announcing his retirement, Ochima resolved to <i>settle an account with</i> the bank.','get  back at ','pay back all he owes ','close his account with ','retire his loans from ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3747,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:20'),(67,'He shared his room with a person whose behaviour was quite <i>nauseating</i> ','disgusting ','disrespectful ','disagraceful ','discouraging ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:21'),(68,'From what she said, one may <i>infer</i> that she does not like the course','agree ','deduce ','suppose ','realize ','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3779,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:22'),(69,'The party supporters <i>vilified</i> the Chairman for the role he played in the crisis that rocked the party ','impeached ','condemned ','challenged ','elected','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3670,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:23'),(70,'Publishing as a business venture has become a <i>hot potato</i> in Nigeria. ','unacceptable  ','unpleasant ','expensive                                                              ','profitable','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3685,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:24'),(71,'The <i>cynics</i>  feared that the nation’s nascent democracy would fail','illusionists','pessimists','delinquents','critics','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3674,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:25'),(72,'The nurse was in favour of <i>voluntary eutheanasia</i>','a sleeping pill','a major operation','a painless death','a simple operation','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:26'),(73,'There was a <i>glut</i> of oil on the market','an abundance of','an increase in','a variety of','an accumulation of','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3736,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:27'),(74,'Typist','refuse  (noun)','superb','propose','rebel (verb)','choose the option that has the same stress pattern as the given word.','','a','','utme','2003',3717,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:28'),(75,'Cement','perfect (adjective)','include','interest','employ(noun)','choose the option that has the same stress pattern as the given word.','','b','','utme','2003',3656,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:29'),(76,'I shall find time for my ……… when I get …… with this difficult assignment.','Pat time /over','pass-time/over','pastime/through','pastime/through','choose the option that best completes the gap(s).','','d','','utme','2004',3703,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:30'),(77,'Agbo says he is not afraid of ………','anybody','nothing','nobody','no one','choose the option that best completes the gap(s).','','a','','utme','2004',3625,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:31'),(78,'It is …….. responsibility to look after their parents in old age.','theirs’','their','theirs','their’s','choose the option that best completes the gap(s).','','b','','utme','2004',3855,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:42'),(79,'One needs to exemplify or ………. the aspect of the subject being discussed','supply','declare','satisfy','demonstrate','choose the option that best completes the gap(s).','','d','','utme','2004',3891,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:43'),(80,'……………his illness, Muhammad could not come to school.','with reference to','referring to','owing to','due to .','choose the option that best completes the gap(s).','','d','','utme','2004',3844,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:44'),(81,'After so many trials, the experiment………….','paid up','paid for','paid out','paid off','choose the option that best completes the gap(s).','','d','','utme','2004',3812,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:45'),(82,'People dislike Mariam because she is ……………','trickful',' trickish','trickly','tricker','choose the option that best completes the gap(s).','','c','','utme','2004',3787,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:46'),(83,'The reporter said that the Honourable speaker………….. impeached ','is to be','might have been','may have being','will have been','choose the option that best completes the gap(s).','','b','','utme','2004',3758,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:47'),(84,'Actually, he forgot the one to …………… the job was given.','whom','who','whomever','whoever','choose the option that best completes the gap(s).','','a','','utme','2004',3671,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:47'),(85,'You may not have heard the last word on the matter……..','may you have','haven’t you','have you','mayn’t have you?','choose the option that best completes the gap(s).','','c','','utme','2004',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:48'),(86,'All God’s prophets were given the great……….to preach salvation to people.','commission','commition','commission','commission','choose the option that best completes the gap(s).','','d','','utme','2004',3844,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:49'),(87,'Ali goes to the stadium regularly, but he …………… to the church for months.','hasn’t been','haven’t been','didn’t go','hadn’t been','choose the option that best completes the gap(s).','','a','','utme','2004',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:50'),(88,'Each of the houses…………',' have got',' Have','has','were given a new look.','choose the option that best completes the gap(s).','','c','','utme','2004',3794,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:51'),(89,'The minister addressed the workers to boost their…………',' Morale','morality',' mural',' moral','choose the option that best completes the gap(s).','','a','','utme','2004',3618,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:52'),(90,'I don’t coming home, is he?......... he is isn’t.','Yes','No','won','now','choose the option that best completes the gap(s).','','b','','utme','2004',3774,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:53'),(91,'………..as a federal capital only……….. the last twenty years.','has existed/for','existed/over','was existing/from','is existing/in','choose the option that best completes the gap(s).','','a','','utme','2004',3703,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:54'),(92,'No teacher of honour would subject his student to any form of ……..','harassment','Harassment','harassment','harassment','choose the option that best completes the gap(s).','','b','','utme','2004',3707,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:55'),(93,'Each producer  is able to place a price on his product by considering its…………','worth','choice','judgement','assessment','choose the option that best completes the gap(s).','','a','','utme','2004',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:56'),(94,'The police claim that a number of stolen cars…………. recovered.','has being','is being','has been','have been','choose the option that best completes the gap(s).','','c','','utme','2004',3747,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:57'),(95,'The storm………….. Havoc on several buildings in the village.','wreaked','wrecked','made','did','choose the option that best completes the gap(s).','','a','','utme','2004',3706,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:58'),(96,'The chairman refused to shake…………. with the secretary','hand','his hand','hands','his hands','choose the option that best completes the gap(s).','','c','','utme','2004',3746,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:58'),(97,'The poor widow who could not buy the clothes was seen…….her wool into……….yesterday','to spin/yards','spinning/yarn','making/tailoring','to spill/clothes','choose the option that best completes the gap(s).','','b','','utme','2004',3701,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:59'),(98,'He not only looked after the children when their parents died, ………..sponsored their education to university.','but also','also he','but he','also','choose the option that best completes the gap(s).','','a','','utme','2004',3783,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:00'),(99,'His supporters railed round him in moments of …………..','criticism','Crisis','acrimony','disillusionment.','choose the option that best completes the gap(s).','','b','','utme','2004',3808,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:01'),(100,'The interpreter was wrong because he gave the congregation a ………… translation of the pastor’s statement.','literal','unilateral','literary','lateral','choose the option that best completes the gap(s).','','a','','utme','2004',3715,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:02'),(101,'Ju<u>dge</u>','gear','spinach','pleasure','camouflage','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','d','','utme','2004',3775,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:03'),(102,'caus<u>ed</u>','chanced','frost','released','realized','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','b','','utme','2004',3723,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:04'),(103,'mis<u>chi</u>ef ','Christmas','ritual','Brochure','Champagne','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','a','','utme','2004',3599,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(104,'Everyone was ready to play the evil’s advocate in the impeachment controversy.','everyone was willing to speak against the impeachment to encourage discussion on it.','everyone was willing to defend an unpopular point of view concerning the impeachment.','everyone was willing to fight for the defenceless citizens no matter the consequences.','everyone was willing to be an evil genius in the controversy','that best explains the information conveyed in the sentence.','','a','','utme','2004',3627,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:06'),(105,'Adamu’s father is a key figure in that ministry','The ministry trusts Adamu’s father as a central figure','Adamu’s father is a figurehead in the ministry','Adamu’s father’s position is essential in the ministry.','Adamu’s father keeps the key to the ministry.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:07'),(106,'The government warns that drink-driving is punishable under the law.','a drunkard driving can be punished','driving while drunk is an offence','driving while drinking is an offence','drinking and driving is an offence.','that best explains the information conveyed in the sentence.','','a','','utme','2004',3673,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:08'),(107,'In many countries, democracy is ostensibly being practiced.','democracy is indeed being practiced  in many countries','many countries have effective democracy.','many countries have democracy in practice','democracy is apparently practice in many countries.','that best explains the information conveyed in the sentence.','','d','','utme','2004',3842,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:09'),(108,'The investigators stated clearly that they had reached a dead end in their scrutiny of suspects in the murder case.','the investigators did not know what to do with the suspect’s murder','The investigators had evidence to sentence the suspects to death in the end.','there was no further progress in the investigation of the murder suspects.','the end had come for the suspects in the murder case.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3708,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:10'),(109,'',' Secondment','Orthopaedic',' oriental','photographic','choose the option that has a different stress pattern from the others.','','a','','utme','2004',3716,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:11'),(110,'','ratify',' famous',' result',' taxi','choose the option that has a different stress pattern from the others.','','c','','utme','2004',3738,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:17'),(111,'Sailors are unusually <i>dauntless</i> in their exploits','selfless','ruthless','excited','frightened','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3696,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:23'),(112,'The <i>potency</i> of the drug has been acknowledged.','action','loss','inefficacy','power','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3595,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:24'),(113,'The dictator wanted <i>tractable</i> men in his cabinet.','reliable','intelligent ','tough','unruly','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3721,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:25'),(114,'After the war, the victors became increasingly <i>vindictive</i>','friendly','vociferous','arrogant','treacherous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3882,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:26'),(115,'The ship was <i>imperiled</i> by high winds','piloted','destroyed','deceived','saved','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:27'),(116,'Beauty queens sometime wear <i>outlandish</i>  dresses.','beautiful','flashy','familiar','attractive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3699,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:28'),(117,'The journalist said he was working <i>freelance</i>','tirelessly','satisfactorily','without a pay','dependently','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3735,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:28'),(118,'My father’s presentation was rather <i>causal</i>','formal','vital','informal ','divisive','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3713,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:29'),(119,'The flying Eagles put up a <i>plucky</i> defence against their opponents.','strong','weak','careless','tactful','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3743,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:30'),(120,'The man who scare the girl was a bit <i>deranged</i>','sane ','amorous','crazy','dangerous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3675,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:31'),(121,'The injured man is determined to <i>get back</i> at his assailant.','attack','identify','visit','forgive','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3812,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:32'),(122,'The player <i>writhed in pain</i> after the fall.','remained still','cried out','walked out','shook violently','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3811,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:33'),(123,'The noise of the fan <i>unnerved</i>  the star player.','refreshed','confused','helped','calmed','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3780,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:34'),(124,'The team got <i>an ecstatic</i> welcome from the crowd.','An unexpected','a joyous','a cold','a thunderous','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3718,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:35'),(125,'We found a <i>shady</i> place for the display.','an open','an unsafe','a stuffy','an enclosed','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3658,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:36'),(126,'expostulate','exposTUlate','expostuLATE','EXpostulate','exPOStulate','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2004',3640,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:37'),(127,'sufficiency','sufFIciency','SUFficiency','sufficienCY','suffiCIENcy','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2004',3798,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:38'),(128,'The town was in such a <i>turmoil</i> that the dance was called off.','mourning state','rainy state','state of darkness','state of confusion','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3760,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:39'),(129,'The festivals create in the people a feeling of price in the cultural <i>heritage</i>  ','history','heirloom','legacy','possession','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3674,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:40'),(130,'<i>Funnily enough,</i> the priest prayed for the robber who shot him.','Timidly','Unexpectedly','Disappointingly','Fearlessly.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3594,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:41'),(131,'The presence of the captain makes the sailors <i>ill at ease</i>.','uncomfortable ','sickly ','impatient','easily ill','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3683,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:42'),(132,'The press describe the efforts of the government in <i>pejorative</i> terms.','critical','contemptible','palpable','superlative','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3677,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:43'),(133,'Okonkwo manages his household <i>with a heavy hand.</i>','like a powerful dictator','using the cane on every occasion','without tolerating weakness','like a heavy weight champion.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:44'),(134,'The school’s badge is the <i>insignia</i> of office for all the prefects in the school.','Power','symbol','seal','recognition','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3705,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:44'),(135,'Ibro shows enough <i>liberality</i>  with his meager income.','generosity','frugality','prodigality','insensitivity','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3693,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:45'),(136,'It is a <i>misnomer</i> to call three thousand naira a living wage.','an incontrovertible assertion','an appropriate term','a wrong description','a mishmash','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3776,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:46'),(137,'His plans <i>boomeranged</i> on him','bounce','fell','catapulted','backfired','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3729,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:47'),(138,'The manager’s knowledge of the strike is of <i>the utmost</i>  importance.','standard','genuine','paramount','basic','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3684,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:48'),(139,'There has been a <i>downturn</i> in the affairs of the company.','a massive increase','little progress','a turn-around','a decline','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3688,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:49'),(140,'The <i>mottled</i> skin of a person with HIV indicates an advance stage  of its development.','Brown ','spotted','scaly','pimply','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3768,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:50'),(141,'In spite of constant financial support from his father, Udenyi treats his studies with considerable <i>levity</i>.','seriousness','enthusiasm ','wastefulness','lassitude','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3808,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:51'),(142,'The prosecutor was fully able to <i>substantiate</i> the charge.','expatiate on','prove','dismiss','weaken','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3777,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:52'),(143,'The teacher wants MY pen.','Does the teacher want his pen?','What does the teacher want?','Does the teacher want your ruler?','Who wants my pen?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','a','','utme','2004',3777,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(144,'The student BOUGHT the book.','Who bought the book?','Did the student steal the book?','What did the student buy?','How will the student get the book?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','b','','utme','2004',3785,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:54'),(145,'n<u>i</u>ne','pint','gill','pin','click','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2004',3708,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:55'),(146,'b<u>ea</u>r','beer','steer','rare','fear','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','d','','utme','2004',3727,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:55'),(147,'',' Circulation','eleven',' impossible','criticism','choose the option that has the stress on the first syllable.','','d','','utme','2004',3799,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:56'),(148,'','bachelor','condemn',' afternoon','intact ','choose the option that has the stress on the first syllable.','','a','','utme','2004',3839,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:57'),(149,'',' foul','tout','owl','foe','choose the option that has a different vowel sound from the others.','','d','','utme','2004',3805,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:58'),(150,'','alter',' water',' pot','hall','choose the option that has a different vowel sound from the others.','','c','','utme','2004',3687,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:59'),(151,'If the rain hadn’t fallen, we wouldn’t have missed the match.','The rain is falling, so we will miss the match.','The rain fell, so we didn’t watch the match','The rain fell, so we watched the match','The rain didn’t fall, so we didn’t watch the match.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3858,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:11'),(152,'The class was tired of the new boy jawing away all the time.','He bit off people’s jaws','He was always chewing in the class.','He was always making trouble for the class','He talked continuously in the class','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3773,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:12'),(153,'The new Headmaster hoped that his men would pull together','He expected that the men would cooperate with him','He thought that the men would compose themselves at work','He was certain that they would resign en masse','He was certain that their condition would improve under him.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3813,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:13'),(154,'If the trader paid in full, his order was not pruned down.','The trader who made full payment did not have his order reduced','The trader who made some payment did not have his order delayed.','Unless the trader paid in full his order would be rejected.','As the trader did not increase his order, he did not need to pay in full','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3776,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:14'),(155,'The men were not pawns in someone else’s political game.','The action they executed was their idea','The men used someone else’s plain','They were used by someone’s political game','They love playing political games','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3843,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:15'),(156,'The crisis ended as suddenly as it began','The crisis ha suddenly as it began','The crisis will not end suddenly','The crisis stopped almost immediately','The crisis will stop immediately.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3790,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:16'),(157,'One thing I will not be complaining about in my new job is a lack of excitement','The job is bad  ','The job is exiting','The job is not too exciting','The job has been previously done','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3766,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:17'),(158,'The Governor parried all the questions put to him by the journalist.','The Governor answered all the questions brilliantly','The Governor evaded all the questions','The Governor failed all the questions','The Governor mastered all the questions','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3811,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:18'),(159,'if I visited England, I might go to Manchester City ','When I go to England, I could go to Manchester City','Whenever I visit England, I must go to Manchester City','I did not go to England and could not go to Manchester City','I could not visit Manchester City because I did not want to go to England.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3857,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:18'),(160,'The man puts his foot down whenever he is convince of his action','He desires to assert his will in the situation','He makes his mark wherever he goes','His attitude demonstrates someone who likes  to oppress others around him','He demonstrates firmness of character','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3732,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:19'),(161,'The teacher recounted two events that were <i>analogous</i>  with  each other','similar with','Advantageous to','distant from','different from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3872,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:20'),(162,'The Principal was filled with <i>scorn</i>  when we gave  our reason for coming late','contempt','sympathy ','anger','pity','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3876,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:21'),(163,'After fifty years, he could not find anyone who was <i>contemporary</i> with him at college','strange to','friendly with','belonged to','contented against','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3774,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:22'),(164,'Idris gives me a <i>sour</i> look every time I pass by him','bad','satisfactory','friendly','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3811,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:23'),(165,'The officer was given an <i>invidious</i> task','vivid','cruel','pleasant','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3860,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:24'),(166,'The views of the plateau are in stark contrast to the <i>workaday</i> cottages below','ordinary an uninteresting','beautiful an interesting','comfortable an fascinating','ugly an unfascinating','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3756,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:25'),(167,'The President can afford to dispense with some of his <i>henchmen</i>','detractors','body guards','sycophants','advisers','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3855,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:26'),(168,'Asabe bought a <i>glossy</i>  pair of shoes ','smooth and shiny','rough an dull','smooth and shining','rough an gummy','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3949,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:27'),(169,'Manu is hard to convince because he is an <i>opinionated</i>  person','an objective','an imperative','a subjective','a discursive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:28'),(170,'Some people consider the leather uphoistery and thick rugs a bit <i>sumptuous</i>  ','expensive','desirable','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3727,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:29'),(171,'The dramatist provided as satisfactory <i>denouement</i>  to the play','audition','climax','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3874,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:30'),(172,'Many Nigerians are <i>wary</i> of night journeys','worried about','unscarred of','satisfied with','troubled about','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3780,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:31'),(173,'The proprietor accuse Uche of silently<i> acquiescing</i>  to the students’ demands','submitting to','adjusting','compromising on','resisting','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3893,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:32'),(174,'No wonder Sikemi later became a detective; she has been very <i>observant </i>','curious','perceptive','inductive','inquisitive','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3831,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:33'),(175,'Nigeria has been playing a <i>vital role</i> in the political an economic development of Africa','creditable','crucial','respectable','laudable','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3733,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:34'),(176,'Emeka’s painting was <i>so realistic</i>  that it could almost have been a photograph','picture square','concrete','lively','authentic','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3889,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:35'),(177,'<i>Courteously</i>, Ade stood back to let his teacher go first through the door','patiently','politely','carefully','calmly','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3824,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:35'),(178,'Many people use to lie in <i>poverty</i>','instability','want','difficult','the slums','choose the option nearest in meaning to the word or phrase  in italics ','','c','','utme','2005',3783,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:36'),(179,'<i>Accountability</i> is certainly a desirable quality in a politician','respectability','responsibility','courage','Diligence','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3803,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:37'),(180,'The <i>common</i> practice among some media practitioners is to be sensational in their reporting','prevalent','rampant','ordinary','cogent','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3810,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:38'),(181,'That <i>fateful</i> decision change the company’s outlook in many ways.','wonderful','uncontrollable','disastrous','unsuccessful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3881,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:39'),(182,'The accident victim received a <i>superficial</i> wound from the crash','a serious','a painless','an internal','an external','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:40'),(183,'The boxer <i>fizzled</i> out just in the sixth round','knocked out his opponent','showed off his talents','became tire out fought on spiritedly','surrendered rather disappointingly','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:41'),(184,'The manager describe Mfon as a man of vehement <i>character</i>','weak an uninterested','strong an insistent','troublesome an noisy','clever and helpful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3744,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:42'),(185,'Obi’s dog is old but still <i>lively</i>','attractive','howling','barking','frisky','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3821,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:43'),(186,'His <i>taciturnity</i> amaze everyone in one court during the legal tussle','obliviousness','reticence','sensibility ','pervasiveness','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3851,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:44'),(187,'The greatness of the creator of the universe is always <i>inexpressible</i> to many adherents of certain faiths','inevitable','wonderful','unbearable','ineffable','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3810,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:45'),(188,'We <i>made a pile</i> in the business deal','lost a lot of money','earned a lot of money','broke even        ','cut corners','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3757,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:46'),(189,'Yesterday, my mother asked me.... ',' If I am tired? ','are you tired?',' whether was I tired?','If I was tired','choose the option that best completes the gap(s)','','d','','utme','2005',3804,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:46'),(190,'The Bank Manager assured us that there was nothing to worry about','as regard to the loan ','with regards to the loan','in regard of the loan  ','with regard to the loan','choose the option that best completes the gap(s)','','b','','utme','2005',3888,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:47'),(191,'The first prize was','a carved wooden, attractive ','a wooden attractive carved   ',' an attractive carved wooden   ','a carved attractive wooden tray ','choose the option that best completes the gap(s)','','c','','utme','2005',3856,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:48'),(192,'Tsadu always cautions that difficult jobs should be done','step from step ','step by step','steps after steps    ','steps by steps','choose the option that best completes the gap(s)','','b','','utme','2005',3873,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:49'),(193,'I was often angry …… Oche since he differed…   me often','with/to ','about/with   ','against/from','with/with','choose the option that best completes the gap(s)','','d','','utme','2005',3750,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:50'),(194,'I am writing to you for ……..  reasons','concerned ','several','plenty ','myriad of','choose the option that best completes the gap(s)','','b','','utme','2005',3914,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:51'),(195,'As we sat ………the silence, my eyes……..  the room','under/looked  ','over/surrounded ',' in/roamed',' along/observed','choose the option that best completes the gap(s)','','c','','utme','2005',3789,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:52'),(196,'Is it true that Okoro……..  when the gates were closed?','had returned','would return  ','should return    ','would have returned','choose the option that best completes the gap(s)','','a','','utme','2005',3889,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:53'),(197,'The public library has stopped………. books to readers','borrowing','lending ','renting ','loaning','choose the option that best completes the gap(s)','','a','','utme','2005',3715,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:54'),(198,'We won\\'t leave until it ……..  Raining','will stop ','stopped','stops    ','has stopped','choose the option that best completes the gap(s)','','c','','utme','2005',3851,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:55'),(199,'The …………   event marked the beginning of a new life for the entire cabinet','historical  ','historicity of the','historic ','history of the','choose the option that best completes the gap(s)','','c','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:56'),(200,'The train ………. before I arrived','was leaving   ','has left','had left   ','would leave ','choose the option that best completes the gap(s)','','c','','utme','2005',3760,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(201,'You can travel on your own ……….. ?','isn\\'t it','can\\'t you   ','won\\'t you  ','shan\\'t you','choose the option that best completes the gap(s)','','b','','utme','2005',3766,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:58'),(202,'The man is refurbishing the flat with a view to ……. it.','sell   ','selling ','have sold ','be selling  ','choose the option that best completes the gap(s)','','d','','utme','2005',3677,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:59'),(203,'The Secretary-General was shocked at the number of…….','child\\'s soldiers   ','childish soldiers  ','children soldiers ','child soldiers','choose the option that best completes the gap(s)','','d','','utme','2005',3785,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:59'),(204,'In spite of Shade\\'s good looks, her hair is always………','unkept','unkempt   ','unwashed','uncared for','choose the option that best completes the gap(s)','','b','','utme','2005',3794,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:00'),(205,'By the end of the football match today, we ……. the best player','could have known  ','might have known','will have known ','would have known ','choose the option that best completes the gap(s)','','d','','utme','2005',3864,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:01'),(206,'It is African for a younger person to show……..to elders','understanding ','indifference ','deference','satisfaction ','choose the option that best completes the gap(s)','','c','','utme','2005',3752,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:02'),(207,'A nursery rhyme is used to teach pupils how to spell the word','hipoppotemus','hippoppotemus','hipoppotamus ','hippopotamus','choose the option that best completes the gap(s)','','d','','utme','2005',3701,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:03'),(208,'b<u>ee</u>r','bear',' pear ',' fair',' pier','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','d','','utme','2005',3763,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:04'),(209,'g<u>uar</u>d','gourd','guide','argue','chat','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','c','','utme','2005',3880,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:05'),(210,'l<u>u</u>ck','lock','lack','brother','turn','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','a','','utme','2005',3785,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:06'),(211,'fi<u>l</u>m','salt','walk','pslam','chalk','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','a','','utme','2005',3877,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:07'),(212,'heal<u>th</u>y    ','father','path','they','that','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2005',3778,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:08'),(213,'E<u>n</u>glish','single','impugn','ink','orange','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2005',3813,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:09'),(214,'jurisprudence','JUrisprudence','juRISprudence',' jurisPRUdence','jurispruDENCE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3737,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:10'),(215,'suburbanite','SUburbanite','suBURbanite','  suburBAnite','suburbaNITE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:11'),(216,'departmentalize','departMENtalize         ','dePARTmentalize     ','DEpartmentalize','departmenTAIize','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','d','','utme','2005',3782,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(217,'refuse(noun)','reform   ','intact   ','obscure','phantom','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3776,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:12'),(218,'downtrodden','downgrading','prescribing','functional','internal','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3925,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:13'),(219,'','interpreter',' remarkable','  impossible ','criticism','choose the option that has a different stress pattern from the others','','a','','utme','2005',3906,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:14'),(220,'','  impound','canoe','  subject(verb)',' knowledge','choose the option that has a different stress pattern from the others','','d','','utme','2005',3795,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:15'),(221,'Your mother CAN cook the meal',' Who will cook the meal?','Can my father cook the meal?','Isn\\'t my mother able to cook the meal7','What can my mother do?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','c','','utme','2005',3857,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:16'),(222,'The EAGLES won the match','Did the Eagles lose the match?','Who won the match?','What did the Eagles win?','Did the Eagles win the match?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','b','','utme','2005',3843,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:17'),(223,'The police claim that a number of stolen cars…… recovered ','have been ','has been  ','has being',' have being ','choose the option that best completes the gap(s).','','b','','utme','2006',3794,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:18'),(224,'     ………….  been there to look for her several times without success.','He\\'ll','He’s  ','Is he ','He is','choose the option that best completes the gap(s).','','b','','utme','2006',3712,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:19'),(225,' Until he lost the election, Agbo…………… to be the Student Union president.','had been hoping ','has been hoping   ','would have hoped   ',' has hoped ','choose the option that best completes the gap(s).','','b','','utme','2006',3828,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:20'),(226,'The old man was rushed to hospital when his blood  pressure dropped to a ……..  level','dangerously lowly','dangerous lowly ',' dangerously low',' dangerous low','choose the option that best completes the gap(s).','','c','','utme','2006',3720,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:21'),(227,'If he ……… for admission, I am sure he would succeed','will apply ','applied ','had applied ','has applied','choose the option that best completes the gap(s).','','c','','utme','2006',3647,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:22'),(228,'The ……….   robber showed no mercy during the attack. ','loquacious ','senseless ','ruthless ','benevolent','choose the option that best completes the gap(s).','','c','','utme','2006',3891,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:28'),(229,'Did you have ……… when you went to visit the medical doctor? ','diarrhea ','diarrhea','diarhoea  ','diarrhea ','choose the option that best completes the gap(s).','','a','','utme','2006',3710,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:29'),(230,'Your performance will improve if you…….  Hard','are practicing ','practical ','would practice ','practise','choose the option that best completes the gap(s).','','b','','utme','2006',3720,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:30'),(231,'The brave hunter killed the ………… in the forest ','big spitting cobra black','Black big spitting cobra ','big black spitting cobra ','big spitting black cobra ','choose the option that best completes the gap(s).','','c','','utme','2006',3672,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:37'),(232,'He wrote to you,……….  ?','hadn’t he ','wouldn’t  he ','didn’t he','hasn’t he','choose the option that best completes the gap(s).','','c','','utme','2006',3713,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:38'),(233,'The clubs were not…….. on a solid ethical base ','funded','found ','created ','founded ','choose the option that best completes the gap(s).','','d','','utme','2006',3699,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:39'),(234,'I watched him as he……  the hole','dug ','digs','is digging ','dugged','choose the option that best completes the gap(s).','','a','','utme','2006',3635,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:40'),(235,'His father hardly misses the news because he goes about with his………..  Radio','pointable ','potable ','potable','portable','choose the option that best completes the gap(s).','','d','','utme','2006',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:41'),(236,'The investigation Commission has treated all the …… submitted to it by the warring factions','protests ','petitions ','applications','enquires ','choose the option that best completes the gap(s).','','b','','utme','2006',3719,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(237,'Olu brought his clothes and those of his………..','Senior brother’s','elder brothers','elder brother’s ','senior brother.','choose the option that best completes the gap(s).','','c','','utme','2006',3738,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:43'),(238,'Our neigbour was attracted by the ………. from my mother’s cooking ','flavour','stench','scent','aroma ','choose the option that best completes the gap(s).','','d','','utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:44'),(239,'Everybody is allowed to ………. his views on state matters ','Air ','hear ','show ','share ','choose the option that best completes the gap(s).','','a','','utme','2006',3826,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:45'),(240,'Despite all preparations, the wedding did not …..','come along ','come by','come on ','come off','choose the option that best completes the gap(s).','','d','','utme','2006',3738,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:46'),(241,'For beating ……. his course mate, Agbaji was……… from the university.','up/rusticated ','on/expelled','at/removed ','away/sent out ','choose the option that best completes the gap(s).','','a','','utme','2006',3758,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:47'),(242,'We have been living peacefully here but……….. hear rumours of war.','again ','slowly','occasionally ','eventually','choose the option that best completes the gap(s).','','c','','utme','2006',3811,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:48'),(243,'Genealogy ','GeneaLOGY','geneAlogy','geNEalogy ','GEnealogy ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','b ','','utme','2006',3761,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:49'),(244,'Catholicism ','caTHOlicism ','catholiCism','CAtholicism ','cathoLIcism ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2006',3692,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:50'),(245,'','ability ','Registration ',' quadruplicate ','revivalist ','choose the option that has a different stress pattern from the others. ','','a','','utme','2006',3792,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:50'),(246,'','competent ','represent ',' syllabus ','quality ','choose the option that has a different stress pattern from the others. ','','b','','utme','2006',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:51'),(247,'apparent ','arrested ','telephone ','paragraph ','appetite ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3619,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:52'),(248,'Unfair ','insight ','towards ','first-class','instant ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3832,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:53'),(249,'Dovetail ','proviso ','simplicity ','jargon ','psychiatry ','choose the option that has the same stress pattern as the given word.','','a','','utme','2006',3893,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:54'),(250,'',' Insult (noun)','prepare ',' provoke','pronounce ','choose the option that has the stress on the first syllable.','','a','','utme','2006',3719,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:55'),(251,'','Frequent (verb)','mature ','madam','convict (verb)','choose the option that has the stress on the first syllable.','','c','','utme','2006',3673,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:02'),(252,'In our college, the regulations concerning resists are a grey area','The regulations have just been revised','The regulations have often been ignored','The regulations are perfectly clear','The regulations are not very clear.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3737,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:14'),(253,'Ogiri takes after his father, he fawns upon anyone with influence.','Like his father, Ogiri likes to flatter people with influence in society','Like his father, Ogiri hates influential people','Ogiri. who always follows his father, tries to act like an influential man','Ogiri, who looks like his father, follows rich and influential people about','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3777,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:15'),(254,'You are to write a report and give it to the security office','After writing your report, give it to the security office','You are writing a report, as the security office directed','The report you are writing should be given to the security office','You have been ordered to write a report, which you wilt give to the security office ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3703,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:16'),(255,'After the war the victors became Increasingly vindictive ','Vengeful attacks were Incessantly carried out on those who lost the war ','  Friendly measures were taken to heal the wounds','Repressive measures were taken against those who lost the war','Those who won the war became treacherous ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3786,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:17'),(256,'The prefect reeled off the names of all the students who Drake the library law.','The prefect gave a disjointed list of the students in the law library.','  The prefect omitted the names of the students who broke into the law library ','The prefect submitted a complete list of the students who stole library books','The prefect gave an accurate list of the students who disobeyed library regulations.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3622,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:18'),(257,'1 owe you far less than you owe me','My debt to you is greater than yours to me','Your debt is not much greater than mine','What we owe each other Is approximately the same','I owe you something, but you owe me much more','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3690,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:18'),(258,'The dispute over land acquisition has now come a head','The problem has reached crisis proportions ','The problem has now been referred to the headquarters ','Because of the dispute, land acquisition has now been halted ','The problem has now been solved ','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3704,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:19'),(259,'He has hardly spoken when the bell rang ','He found it difficult to speak, and then the bell rang','When the bell rang, he was still speaking ','The bell rang very soon after he spoke','He spoke in a harsh manner and the bell rang ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3682,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:20'),(260,'I think she takes her guardian’s support for granted ','Her guardian has been helping her for a long time, and she is very grateful to him. ','She wants her guardian to grant her more support.','She thinks her guardian will no longer support her as he has been doing.',' Her guardian has been helping her for a long time, but she does not show enough gratitude. ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3667,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:21'),(261,'The class has fallen in with the teacher\\'s plans','The class has ignored the plans','The class has rejected the plans',' The class has accepted the plans','The class has modified the plans','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3823,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:22'),(262,'The move to expel the chairman was <i>sanctioned</i> by members of the party       ','unleashed  ','opposed ','supported',' initiated','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:23'),(263,'Because Jamiu is so <i>easily offended,</i> he was not considered for the post of headboy','Irritable    ','stubborn   ','troublesome ','docile','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:24'),(264,'The witness provided a <i>monstrous</i> account of the event','supportive  ','tragic','shocking ','verbatim','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3699,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:25'),(265,'Adamu is rather <i>meddlesome</i> in dealing with his friends','impertinent ','intimidating ','quarrelsome',' uncaring','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3518,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:26'),(266,'The commander said that the battle would be sustained, total and <i>relentless</i>','continuous ','brutal   ','fierce ','innocuous','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3748,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:27'),(267,'The government has announced its <i>preparedness for</i> the scheme','determination ','regret ','pleasure ','readiness','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3656,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:28'),(268,'The chairman advised the participants to follow <i>convention</i> in stating their points.','eloquence ','advice ','prudence ','tradition','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3681,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:29'),(269,'His discovery of the vaccine became a <i>quantum leap</i> in the search for a scientific cure for the illness','victorious battle ','slow but steady step',' great improvement   ','fast but sure step','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3678,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:29'),(270,'After the meeting, I read a <i>leer</i> on his face as he looked at the woman.   ','satisfying meaning ','bad look ','pleasant disposition ','poor smile','choose the option nearest in meaning to the word or phrase in italics','','b','','utme','2006',3761,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:30'),(271,'His loss suddenly became <i>redeemable</i> ','Incurable  ','exclusive','recoverable ','repulsive','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3723,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:31'),(272,'The plan has gone <i>awry</i>','wide   ','wrong   ','well    ',' wild','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3731,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:32'),(273,'The judge emphasized his <i>morbid</i> desire in his judgement','inordinate ','uncritical ','ravenous ',' Unpleasant','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3706,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:33'),(274,'77. The recommended novel has a <i>convoluted</i> theme',' a simple ','an attractive ','a disgusting ','a complicated ','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3611,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:34'),(275,'The party men <i>reveled</i> all night when the election results were announced.','Celebrated ','mourned','fought ','discussed ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3648,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:35'),(276,'He is <i>prolific</i>  writer ','a very productive','a well-known','a clever ','an influential ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3794,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:36'),(277,'h<u>ur</u>t','hut ','girl ','hate   ','hot','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3717,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:37'),(278,'c<u>o</u>ck','cop   ','cope ','cork ','cup','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3668,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:38'),(279,'s<u>ay</u>s','fierce  ','dam','wet','rain','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','c','','utme','2006',3788,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:39'),(280,'c<u>h</u>aracter','unique   ','charade   ','arch   ','church ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3835,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:40'),(281,'  bush<u>es</u>','shapes ','shoes  ','rapes   ','rakes','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3762,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:41'),(282,'gara<u>ge</u>','gear   ','sure   ','pressure ','measure','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2006',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:42'),(283,'The usually hostile crowd was captivated by the .player\\'s <i>winsome</i> attitude','obnoxious  ','friendly  ','colourful  ','drunken','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3630,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:42'),(284,'The reporter made a <i>masterly</i> analysis of the situation','an unskilful ','a mistaken ','an indepth','a proper','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:43'),(285,'He has no reason to <i>have his heart in his mouth</i>',' think negatively',' feel guilty ',' be afraid',' be confident','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3785,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:44'),(286,'That little boy has become quite <i>chubby</i>','thin    ',' intelligent   ','huge    ','tall','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3695,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:45'),(287,'Akpan was able to <i>douse</i> the flames with the new piece of equipment','reduce ','extinguish ','ignite ','reinforce','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3669,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:46'),(288,'He gave himself up by his <i>plebeian</i> tastes','robust ','voracious ','patrician   ','laughable','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3766,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:47'),(289,'<i>No sooner had</i> he arrived than it started to rain',' Long before ',' Seldom ','Simultaneously','Just before','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3725,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:48'),(290,'The action was <i>premeditated</i>','unnecessary ','catastrophic ','unplanned ','uncoordinated','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3755,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:49'),(291,'A <i>tentative</i> solution was provided','A convincing ',' provisional','An amicable ','A definite','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3652,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:50'),(292,'The chief said he would use the power <i>inherent</i> in his office to stop the celebration',' unrelated to ',' common to ',' allotted to ',' impervious to','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3767,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:51'),(293,'In our last play, Segun acted the <i>hero</i>','villain  ',' devil ','criminal ',' assassin','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3755,'Admin','0000-00-00 00:00:00','2020-07-15 14:04:24'),(294,'The police found a <i>conclusive</i> proof of the boy\\'s guilt','a corroborative ','A doubtful ','a consolatory',' an incriminating','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2006',3760,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:53'),(295,'The point you have made is quite <i>apt</i>','illogical ','helpful ','irrelevant ','insensitive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3847,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:54'),(296,'The man drew a sword as people <i>congregated round</i> him','praised',' gathered round ',' mobbed ',' fled from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3800,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:54'),(297,'The notice reads, No <i>cash</i> transactions in this hall\\'','money   ','gainful ','business ','cheque','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3766,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:55'),(298,' He <i>deprecated</i> the attempts made to unseat him.','despised','challenged    ','resisted','condemned','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3696,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:56'),(299,'The striking workers have vowed not to return to work until the decision is <i>reversed.</i> ','rescinded         ','dismissed','implemented    ','reverted. ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3781,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:57'),(300,'The police are not happy with the growing number of <i>depraved</i> people around the politician.','violent ','immoral ','indolent ','loquacious ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:58'),(301,'The last criticism at the rally was made <i>in ignorance</i>','uniformed ','objective ','unimpeaccable','impeccable ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3612,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:59'),(302,'The astute businessman neatly <i>fended</i> off questions off questions about his private life.','asked ','explained ','welcomed','sidestepped.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3656,'Admin','0000-00-00 00:00:00','2020-07-14 23:24:07'),(303,'We were warned not to indulge in <i>recriminations.</i>','counter-charges      ','indiscretions  ','accusation','frivolous allegations.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3722,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:01'),(304,'The shortage of petrol was a <i>perennial</i> problem','a recurring   ','a seasonal ','an annual','an incurable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3777,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:02'),(305,'The rest of the boys admire Olu\\'s <i>verve</i>','intelligence','work  ','handsomeness     ',' energy.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:03'),(306,'He holds on firmly to his <i>hackneyed</i> view of life','wayward  ','principled',' obsolete','positive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3673,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:04'),(307,'I visited Amina <i>umpteen times</i> in her college, but she never came to me','often   ',' seldom   ',' twice   ','occasionally.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3677,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:05'),(308,'The debt the company incurred became rather <i>intolerable</i>. ','inevitable   ','unprecedented','insupportable ','dangerous.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3757,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:06'),(309,'The tax rebate was a <i>concession</i> given to the civil servants ','a donation ',' an allowance','an incentive  ','an emolument. ','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2007',3722,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:07'),(310,' <i>Beads</i> of sweat ran down Ngozi\\'s armpit','Pools','Springs   ','Ponds    ','Rivulets.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3850,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:08'),(311,'The noise across the road  <i>drowned</i> the sound of the keyboard in my room',' neutralized ',' overshadowed','balanced   ','equalized.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3769,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:09'),(312,'Things may change soon, but at the moment our economic situation is <i>precarious.</i>',' redeemable','buoyant ','uncertain   ',' unattractive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3844,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:09'),(313,'shoe<u>s</u>','horse','house','loss','reason','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2007',3777,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:10'),(314,'E<u>ngs</u>lish','end','thin','think','edge','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3792,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:12'),(315,'clo<u>ths</u>e','thomas','three','they','mouth','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3768,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:19'),(316,'p<u>os</u>table','paw','pot','port','post','choose the option that has the same vowel sound as the letter(s) underlined.','','b','','utme','2007',3686,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:20'),(317,'bl<u>ues</u>','book','root','foot','look','choose the option that has the same vowel sound as the letter(s) underlined.','','d','','utme','2007',3801,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:21'),(318,'p<u>ears</u>','dear','year','there','near','choose the option that has the same vowel sound as the letter(s) underlined.','','a','','utme','2007',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:22'),(319,'The refugees were received at the <i>transit</i> camp.','passage ',' permanent ','temporary ','nearby.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:23'),(320,'The man paid a large sum to <i>redeem</i> his mortgaged property ','ransom ','acquire ','pawn ','recover.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3756,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:24'),(321,'Lami and her husband are simply <i>munificent</i>','a wealthy   ','angry   ','happy  ','niggardly.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3819,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:25'),(322,'Is it necessary for us to go?\\' she asked in her <i>shrill</i> voice ','angry ','quiet',' indistinct ','aggressive.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3639,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:26'),(323,'The police demanded a <i>factual</i> account of the accident','a supportive  ','an uncorroborated','an admissible ','an undisguised.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3764,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:27'),(324,'The suggestions he made were very <i>unobtrusive</i>','forceful   ','helpful ','sincere    ','reasonable.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:28'),(325,'Mr. Adeyemo is quite a <i>conceited</i> young man','a resourceful','a practical ','an experienced ','an unassuming.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3801,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:29'),(326,'The stadium was <i>seething</i> with people when we entered',' filled ',' crowded ','empty   ','noisy.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3768,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:30'),(327,'The Vice-Chancellor <i>relinquished</i> power at the end of busterm ','abandoned   ','wielded  ','gave up',' clung on to.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3815,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:31'),(328,'The students were <i>undeterred</i> by the noisy lecture environment. ','frustrated  ','encouraged','discouraged','challenged.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3803,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:32'),(329,'For anything to do with academic work, he has a great  a <i>version</i>','conversion ','attention','contempt  ','predilection.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3736,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:32'),(330,'The study he carried out of the problem was quite <i>comprehensive</i>','detailed ',' sketch  ','inscrutable ','complete.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3740,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:33'),(331,'The man advised his wife to steer a <i>middle course</i> the argument between her and her employers','be recalcitrant  ','be unrepentant','be compromising','be unrelenting','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:34'),(332,'Do not be <i>discouraged</i> by failure in life.','overjoyed','dissuaded','actuated ','disoriented.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3701,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:35'),(333,'Otokpa took after his late father who was a <i>tee totaller.</i>','a drunk ',' careless ','a disciplinarian ','sober','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3774,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:36'),(334,'capitalism    ','capiTAIism   ','capitaLIsm','caPItalism ','CApitalism.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2007',3687,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:37'),(335,'association ','aSSociation    ','associaTION','associAtion   ','Association.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2007',3832,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:38'),(336,'advertisement ','adVERtisement  ','advertiseMENT',' adverTISEment   ','ADvertisement.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2007',3752,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:39'),(337,'',' intact  ',' integral ','negotiate ','about.','choose the option that has the stress on the first syllable.','','b','','utme','2007',3737,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:40'),(338,'','conduce   ',' renewal ','calendar ','reproduce.','choose the option that has the stress on the first syllable.','','c','','utme','2007',3718,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:41'),(339,'','understand   ','address ','afternoon ','taxi.','choose the option that has the stress on the first syllable.','','d','','utme','2007',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:42'),(340,'',' superior ','surcharge','slaughter ','superman.','choose the option that has a different stress pattern from the others.','','a','','utme','2007',3585,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:43'),(341,'','education ','individual ','agriculture','Cinderella.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:44'),(342,'','cigarette ','European ','evacuee','expedite.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3579,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:45'),(343,'Because of his …… nature, Ayo was tricked out of his wrist watch. ','kind   ','pliable  ',' uncompromising ','uncalculating ','choose the option that best completes the gap(s).','','a','','utme','2007',3715,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:45'),(344,'He says he ............. find me a job, but will accommodate me.','could not ','was notable to','is not able to','cannot be able to ','choose the option that best completes the gap(s).','','a','','utme','2007',3742,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:46'),(345,'The idle steward could not see ....... on the wall, and he lost his job.','the writing','what will be written ','the handwriting','what is written','choose the option that best completes the gap(s).','','c','','utme','2007',3758,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:47'),(346,'... went to the stadium to watch a football match.','Amadi and me  ','Amadi and I   ','Me and  Amadi   ','Amadi and myself  ','choose the option that best completes the gap(s).','','b','','utme','2007',3696,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:48'),(347,' If he arrived late, everyone... …….. him','would have blamed   ','will blame ','would  blame ','must blame','choose the option that best completes the gap(s).','','a','','utme','2007',3728,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:49'),(348,'When they examined his body, they found that he ...',' had been dead  ',' had been dying  ','died  ','was dead','choose the option that best completes the gap(s).','','d','','utme','2007',3714,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:50'),(349,'The rain fell for days... ','on ending ','at ending ','on end  ','at end','choose the option that best completes the gap(s).','','c','','utme','2007',3724,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:51'),(350,'Yesterday in the hall, Ola said that ...........  his watch.','he had mislaid ','he had forgot ','ne has misplaced  ','he have lost ','choose the option that best completes the gap(s).','','a','','utme','2007',3657,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:52'),(351,'Government should invest more in …...   training.','teacher\\'s  ','teacher  ','teachers  ','teachers','choose the option that best completes the gap(s).','','b','','utme','2007',3582,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:53'),(352,'The team has benefitted from the coach\\'s ………. of experience. ','minefield ','reservoir ','wealth ','world ','choose the option that best completes the gap(s).','','c','','utme','2007',3807,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:54'),(353,'There was …………. any traffic as he drove home.',' hardly ',' normally ','usually  ','no ','choose the option that best completes the gap(s).','','a','','utme','2007',3855,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:55'),(354,'I look forward to ……. you next week.','seen ','seeing  ',' be seeing ','see ','choose the option that best completes the gap(s).','','b','','utme','2007',3774,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:56'),(355,'The girl cannot speak with a clear voice; she is always ………. ','blabbing ',' vociferating ',' stuttering ','gesticulating ','choose the option that best completes the gap(s).','','c','','utme','2007',3701,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:57'),(356,'The politician …….. the family of the deceased.  ',' greeted  ',' condoled  ','wept over ','commiserated with ','choose the option that best completes the gap(s).','','d','','utme','2007',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:58'),(357,'Making a phone call instead of paying a visit represents a …….  trend ',' sudden new major social  ',' new social sudden major',' new sudden major social','sudden social new major','choose the option that best completes the gap(s).','','c','','utme','2007',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:59'),(358,'Our soldiers are starting to zero …………. the enemy.','at    ','in on ',' unto ','on at ','choose the option that best completes the gap(s).','','b','','utme','2007',3503,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:00'),(359,'My father has been away on a journey but my mother  says she …...he …… this Friday.',' expects/would arrive','expected/win arrive ','expects/will arrive','expected/would arrive ','choose the option that best completes the gap(s).','','a','','utme','2007',3778,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:00'),(360,'Kola was fined; ……….. thieves were given a jail sentence.','the rest of the','rest ','the rest','rest off ','choose the option that best completes the gap(s).','','a','','utme','2007',3703,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:01'),(361,'I………  to pursue my education.','did not chance   ','did not have the opportunity','was not chanced    ','was not opportuned ','choose the option that best completes the gap(s).','','a','','utme','2007',3747,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:02'),(362,'Didn\\'t .......  draw your attention to the entry requirements?','anyone ','everyone ','everybody','no body','choose the option that best completes the gap(s).','','a','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:03'),(363,'He could not have rewarded them more handsomely.','He did not reward them very well,','He rewarded them well, and he was also a good- looking man.','He rewarded them very well.','He spoke to them in a very generous way.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3653,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(364,'My advice to Tolu was: \\'Look before you leap.\\'','Tolu was advised to consider her opinions before reaching any decisions.','Tolu was advised to consider the possible consequences before taking action.','Tolu was advised to weigh her decisions by looking and leaping.  ','Tolu was advised to leap only after looking.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2007',3784,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:05'),(365,'The official had allegedly been taking bribes.','Some people accused the official of taking bribes.','The official had been taking bribes without feeling any guilt.  ','It was proved that the official had been taking bribes ','The official accused some people of taking bribes.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3768,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:06'),(366,'Emeka hardly ever holds with my view on good governance.','Emeka sometimes opposes my idea of good governance.  ','My view on what good Governance is conforms with that of Emeka.','Emeka never really supports my opinion of good governance ','Emeka may never hold a view which conflicts with mine on good governance.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3690,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:07'),(367,'The next village is at least 30 kilometres away.','The next village is 30 kilometres away, possibly less. ','The next village is approximately 30 kilometres away.    ','The next village is   only 30 kilometres away.','The next village is 30 kilometres away, or possibly more.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3742,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:08'),(368,'The woman won\\'t have lived through the night. ','It was likely that the woman died before morning ','The woman survived her ordeal but not without some help .   ','From all indications, the woman was taken much worse, though she overcame her ordeal','The woman might not have lived if she hadn’t got the right support','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3719,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:09'),(369,'There\\'s a door at either end of the building.','The building has two ends and two doors. ','The building has two ends, but only one doc\\'','The building has two ends, but I do not know which of the two has a door. ','The building has many ends each with a door.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3630,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:10'),(370,'We have to iron out our differences at once.','We must clear up without delay our misunderstanding ','We must sure that our problems are eliminated  at all costs ','We have to settle our disagreement once and for all.   ','We have to solve some of our problems for now.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3641,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:11'),(371,'There should be a level playing field for women entering  politics.  ','Women should not be allowed to enter  politics   ','Sports facilities should be provided for women entering politics.','Special privileges should be  given to women who want to enter politics','Men and women should be able to compete are political arena on an equal basis.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3694,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:12'),(372,'The country is holding its first free elections for five years. ','The last time the country held free electors  was five years ago. ','The first free elections in the  country have now taken five years to conduct.','The country held elections five years ago but they were not free. ','There were elections in the country five years ago.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:13'),(373,'He needn\\'t have bought that new table ','It isn\\'t possible that he bought the table ','He bought the table, but it wasn\\'t necessary ','He didn’t buy the table because it wasn\\'t necessary','He doesn\\'t need to buy the table ','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3675,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:14'),(374,'Thanks to that phone call, I was able to obtain the visa,','in spite of that phone call, I obtained the vist ',' It was because of that phone call that the visa','I am grateful to whoever phoned me and I obtained the visa','If I had not recieved that phone call, I would not have obtained the visa.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3773,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:15'),(375,'It is likely that the governor will exact his pound of flesh ','He will probably demand a hefty  bribe ','He will probably engineer the assassination of his opponents ','He will probably impose crushing new taxes','He will probably demand for and get all that is due to him ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3810,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:15'),(376,'It was too cold for him to go out ','He had a bad cold, and did not go out,','Although it was very cold, he still went out ','As it was very cold, he did not go out','He was afraid to go out that day.','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3662,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:16'),(377,'Ado and Abu are always together these days. They must be up to something.','They must have reconciled after their quarrel','They are probably planning something bar','They are capable of a praiseworthy achievement ','They bear some responsibility for what has happened.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:17'),(378,'He wants the meeting to be adjourned,','He wants the meeting closed ','He wants the meeting cancelled ','He wants the meeting to continue till another day ','He want  the meeting to another day without delay ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3709,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:18'),(379,'My father is one of the vociferous few challenging the company’s appointment of the manager.','My father is the one who shouts with a loud voice against the appointment of the manager','My father and others speak on behalf of the company against the appointment of the manager','My father is one of those objecting to the appointment of the manager','My father is agitated by the appointment of the manager','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3755,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:19'),(380,'The voyagers fetched up in Nigeria','the foreigners finally settled in Nigeria','The journey by sea ended in Nigeria','The travellers made a stopover in Nigeria','The discoverers landed in Nigeria after a long journey,','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3818,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:20'),(381,'In those days in this school, everyone who spoke in a','language other than English paid a fine of ten naira','  Everyone of us paid a fine of ten naira because we did not always speak in English  ',' Everyone would pay a fine of ten naira for wanting to use a language other than English ','Those who spoke a language other than English on the premises paid a fine  of ten naira ','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:21'),(382,'The officer has discussed the vexed issue of incessant power failure','In anger, the officer explained the problem of constant power failure','The officer added his voice to the much discussed problem of power cut','The officer\\'s explanations angered those who have suffered the effects of frequency power failure ','The officer told the people not , to be angered by the frequent power cut','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3633,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:22'),(383,'The weather condition now <i>prevailin</i>g in the town is unbearable   ','widespread   ','dominant','unconscious ','disappointed','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3738,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:23'),(384,'The lady was  completely <i>nonplussed when her suitor</i>  rejected her gifts ','unpuzzled ','surprised ',' unconscious ','disappointed  ','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3764,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:24'),(385,'As a public officer, he should act with <i>scrupulous</i>  honesty at all times  ','impeccable  ','careless ','transparent ','uncompromising ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3831,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:25'),(386,'Men from the agency went into the market in search of <i>unwholesome</i>  food items ','banned ','imported ','healthy ','uncooked ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3744,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:26'),(387,'The condition of the hostels has become <i>deplorable </i>','admirable ','regrettable ','bearable ','malignant','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3795,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:27'),(388,'The plan to merge the two local government areas has met with much <i>apathy.</i>','hospitality ','criticism ','consideration ','enthusiasm ','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3840,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:28'),(389,'There is now a <i>dearth</i>  of talent in the industry; she said ','a lack ','an abundance ','a rebirth ','a shortage ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3637,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:29'),(390,'The students  <i>vandalized </i> their hostel curing the riot.','  deserted ','Unrepaired  ',' protected','decorated.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3760,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:29'),(391,'His <i>kind-hearted</i> master bought him a motorcycle',' stingy   ','generous    ',' shrewd ','angry.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3576,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:30'),(392,'<i>Mutual</i> love is what Kabi and Musa have in common, and nothing else.   ',' insincere     ','unhappy','one-sided    ','disrespectful. ','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3695,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:31'),(393,'Always strive to get what is <i>legitimate,</i>','illicit    ','legal',' good    ','impure','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3783,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:32'),(394,'Some aspects of their culture are <i>out of date</i>','genuine  ','pragmatic ','fashionable ','fake','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3767,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:33'),(395,'On the first day of her examination, Amina felt very <i>confident.</i>','excited ','dull  ','beefed up','strung up. ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:34'),(396,'My father is always very <i>frank</i> about his intentions','open   ','objective','secretive','deceitful','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3699,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:35'),(397,'The speaker was rather <i>bold</i> in his presentation of the case ','unfair ','reserved ','ashamed ','formal','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3793,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:36'),(398,'The doctor tried to <i>soothe</i> the patient before the operation  ','examine   ',' treat ',' calm ','induce','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3693,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:37'),(399,'The charge brought against my brother was hardly <i>tenable\\\\</i>','sensible  ','defensible   ','meaningful',' flimsy','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3776,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:38'),(400,'The man described his son as a <i>willful</i> character','   wicked ','obstinate','wild    ','tricky.','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3775,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:39'),(401,'Our teacher described Agbo\\'s story as a <i>phantom</i>','scary  ','realistic ','fanciful   ','interesting ','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:40'),(402,'I find the way she approaches her customers quite <i>repugnant</i> ','unpleasant   ','attractive. ','ungodly    ','encouraging','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3778,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:41'),(403,'Participation in the programme is <i>optional</i>','unnecessary   ',' recommended','hard to justify   ','a matter of choice','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3657,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:42'),(404,'Scientists have <i>invented</i> ways of preserving fruits much longer   ','coined ','devised   ','arranged','organized','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3650,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:42'),(405,'The attempt to count the population was <i>largely</i> successful.  ',' mostly ','completely   ',' hardly','totally.','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3676,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:43'),(406,'The governor has <i>approved</i>  the award of the contract','appreciated ',' acknowledged ','vetoed ','endorsed','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3662,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:44'),(407,'I cannot stand Simon, I find his attitude <i>offensive</i>','unapproachable   ',' obnoxious ','wicked','  unpardonable','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3708,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:45'),(408,'The  man would not <i>withdraw</i>  what hi hid ','take back   ',' takeout   ','take','tike from','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3627,'Admin','0000-00-00 00:00:00','2020-07-14 02:11:55'),(409,'The <i>disagreement</i> between the two men became obvious during the meeting','insult','confrontation','passion','insinuation','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3787,'Admin','0000-00-00 00:00:00','2020-07-14 02:21:56'),(410,'The principal  detested his <i>recalcitrant</i> attitude ','disobedient ','arrogant ','voracious ','vengeful ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3835,'Admin','0000-00-00 00:00:00','2020-07-14 02:19:41'),(411,'The union officials suddenly became <i>reactive</i>','unruly ','impatient ','calm  ','submissive ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3703,'Admin','0000-00-00 00:00:00','2020-07-14 02:13:01'),(412,'The popularity of the military dictator <i>waned</i>  after war ','increased ','changed ','declined ','skyrocketed.','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3672,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:50'),(413,'The chairman addressed the………… ','university French teacher','university of French teachers ','French one hundred university teachers ','university French one hundred teacher ','choose the option  best completes the gap(s) .','','a','','utme','2008',3781,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:50'),(414,'Kanuri is a language.........','I can\\'t speak it well ','that I cant speak it well ','of which I can\\'t speak it well','I can\\'t speak well ','choose the option  best completes the gap(s) .','','d','','utme','2008',3717,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:51'),(415,'Last Tuesday, Ochonu asked me.........',' had I come yesterday ','did you come yesterday ','whether I had come the day before ','If I had come yesterday','choose the option  best completes the gap(s) .','','c','','utme','2008',3747,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:52'),(416,'The young man has..... to sober...……  after being drunk.','began/up ','begun/in    ','begun/up    ','began/down','choose the option  best completes the gap(s) .','','c','','utme','2008',3801,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:53'),(417,'My mother had........  the fire wood before it began to rain. ','splitting ','splited  ','splitted','splitting','choose the option  best completes the gap(s) .','','a','','utme','2008',3671,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:54'),(418,'The police officer warned the... communities against taking the law……… hands','feuding/into their own ','feudal/ to their own ','feuding to their own   ','feudal/in their own','choose the option  best completes the gap(s) .','','a','','utme','2008',3699,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:55'),(419,'Agbo could not travel as he had come...…  influenza','over with ','down with ','in from ','on to ','choose the option  best completes the gap(s) .','','b','','utme','2008',3641,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:56'),(420,'When he.........from his journey, I want to see him.','returns ','might have returned ','returned ','must have returned ','choose the option  best completes the gap(s) .','','a','','utme','2008',3734,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:57'),(421,'I knocked his door, but he.........','has already ten ','left already ','would already leave','had already left ','choose the option  best completes the gap(s) .','','d','','utme','2008',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:58'),(422,'………of the students  turned up, so the lecture was cancelled.','few ','Little',' A few  ',' A little','choose the option  best completes the gap(s) .','','a','','utme','2008',3692,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:59'),(423,'He brought a  ……… against his neighbour.','complaint ','complains','complain ','complaining ','choose the option  best completes the gap(s) .','','a','','utme','2008',3661,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:00'),(424,'The hotel lacks the ..……. for accommodating so many guests.','ability','capability','capacity','competence ','choose the option  best completes the gap(s) .','','c','','utme','2008',3706,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:01'),(425,'If you are not careful, you would .......... your money.','toss  ','lose','loose   ','lost','choose the option  best completes the gap(s) .','','b','','utme','2008',3789,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:02'),(426,'You must practise in order to................perfection.','obtain   ','have','get ','achieve','choose the option  best completes the gap(s) .','','d','','utme','2008',3751,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:03'),(427,'The condition of the room was so………... so I went outside ','intolerant','intolerable ','inconstant ','invariabl ','choose the option  best completes the gap(s) .','','b','','utme','2008',3799,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(428,'You don\\'t like Mathematics, ........... you?','do','don\\'t','cant ','can ','choose the option  best completes the gap(s) .','','a','','utme','2008',3784,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:04'),(429,'They have had their debt written ........... by their creditors.','down ','on ','up ','off','choose the option  best completes the gap(s) .','','d','','utme','2008',3724,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:05'),(430,'Uncle Ochai now has enough money to complete his…….. building.','two storey ','two-storeyed ','two-story ','two storeyed ','choose the option  best completes the gap(s) .','','a','','utme','2008',3682,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:06'),(431,'By the end of this month……….for three years in this school.','I will study ','I  will have been studying ','I  am studying','I had been studying ','choose the option  best completes the gap(s) .','','b','','utme','2008',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:07'),(432,'He ……… the picture on table','laid ','lay ',' lied  ','Iain ','choose the option  best completes the gap(s) .','','a','','utme','2008',3767,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:08'),(433,'Sc<u>oo</u> led ','cold ','could ','court','you','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3683,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:09'),(434,'sh<u>ir</u> t  ','shut ','shade','surf','shed','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','c','','utme','2008',3737,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:10'),(435,'w<u>ai</u> st ','fete ','says','plait','breakfast ','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3666,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:11'),(436,'<u>th</u> atch ','clothing   ','mother','then ','method','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2008',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:12'),(437,'<u> ch</u> ateau  ','chart    ','church ','champagne',' chemical.','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2008',3718,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:13'),(438,' ju<u>dge</u> ','measure','General ','Pressure','Grace ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2008',3793,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:14'),(439,'','distress','control','bottom','report','choose the option has a different stress pattern from the others.','','c','','utme','2008',3836,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:15'),(440,'','original','deplorable','ability','revolution','choose the option has a different stress pattern from the others.','','d','','utme','2008',3761,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:16'),(441,'','release','exit','exchange','explode','choose the option has a different stress pattern from the others.','','b','','utme','2008',3722,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:17'),(442,'','bachelor','forget','cement','ago','choose the option that has the stress on the first syllable.','','a','','utme','2008',3735,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:18'),(443,'','librarian','immunize','militia','continuous','choose the option that has the stress on the first syllable.','','a','','utme','2008',3798,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:18'),(444,'','july','litereture','august','oesophagus','choose the option that has the stress on the first syllable.','','d','','utme','2008',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:19'),(445,'xenophobia   ','XEndphobia   ','xeNOphobia',' xenoPHObia     ','xenophoBIA.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2008',3754,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:20'),(446,'photography ','phoTOgraphy   ','PHOtograhy',' photoGRAphy   ','photograPHY','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2008',3658,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:42'),(447,'melodramatic ','MEIodramatic  ','meLOdramatic',' meloDRAmatic ','melodraMAtic.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2008',3740,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:54'),(448,'It was our collective idea but Ado was doing every­ thing to steal the snow  ',' Ado was not part of the planning but he tried to rub us of the benefits of it.',' We planned the show together out Ado was trying to abort it. ','It was a joint project but Ado is trying to attract the most attention','We collated the idea for the show but Ado was trying to steal the programme.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3722,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:54'),(449,'As we watched, he just popped along to the shop for some bread  ',' He has walked slowly to the shop.',' He stole some bread from the shop but we could not stop him',' He broke into the bread shop before our very eyes    ','He went quickly to the shop for some bread.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3639,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:55'),(450,'In all ramifications, Chief Adeyemi was a successful principal of the school','He was partly a failure and partly a success    ','Everyone admitted that he was largely successful during his tenure ','He was not totally successful in the school  ','His tenure witnessed a huge success ','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3835,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:56'),(451,'I couldn\\'t buy the biscuit because of the hold-up in the supermarket. ','The shop had not opened.','The attendant was slow  ',' Armed robbers were',' There was nobody to attend to me.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3729,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:57'),(452,'You could have heard the sound, if you weren\\'t asleep.','You were not asleep so you heard the sound.','You were asleep so you did not hear the sound.','You heard the sound though you were asleep.','You did not hear the sound though you were not asleep','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3758,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:58'),(453,'Musa will not well because he has an itching palm.','He has rashes in his palm ','He is always looking for something to touch ','He is always read to accept bribe','He is always tapping people on the back','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3882,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:59'),(454,'Emeka was always conspicuous by his absence when it came to attending lecturers.','That Emeka always attended lecturer made him conspicuous at school.','Emeka’s absence from lecturers was all too glaring. ','It was obvious that Emeka was not present at lectures   ','What made Emeka conspicuous was his occasional absence from school','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3786,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:00'),(455,'He was injured by friend fire. ','He was wounded in a war by a friend of his who fired a shot mistakenly.','He was injured by a gunshot that was fired by a friend. ','He was gut in a war by a weapon fired by his own side    ','it was a war and he was hit by a bomb fired by an unknown soldier.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3669,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:01'),(456,'Kola visits us on occasions, and I don\\'t like that.','I do not like Kola because he visits us only when an event is being celebrated. ','I hate the fact that Kola only visits us when something is being celebrated.','That Kola does not visit us often is something I object to.   ','Kola seldom visits us and that is because he is a fair-weather friend.','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3670,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:02'),(457,'At the time I arrived, Olu was lying in third place.',' Olu\\'s third position coincided with my arrival.',' When I arrived Olu was sleeping in the space reserved for him.',' It was a competition and Olu was in third position when I arrived. ','On my arrival at the competition, Olu went to sleep.','select the option that best explains the information conveyed in the sentence. ','','a','','utme','2009',3600,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:03'),(458,'We had difficulty eating the meat because was <i>leathery.</i>   ','bitter    ','stringy ','tough ','tender.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3759,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:04'),(459,'The boy is <i>indolent</i> to do well at school?','intelligent ','industrious  ','inactive  ','stothful.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3730,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:05'),(460,'Salasi\\'s <i>tremendous</i> effort has yielded results.','absolute  ','insignificant  ','unimaginable','prohibitive','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3727,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:06'),(461,'The <i>computerised</i> service of the new banks is heart­  warming. ','manual ','mechanical ','electrical','condensed.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3673,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:06'),(462,'Life has become a <i>misery</i> for many owing to the harsh economic condition in the country','drudgery   ','ridicule   ','ritual ','comfort. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3741,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:07'),(463,'The company director has a <i>vivacious</i> personality. ','a positive ','an unmanageable','an unimpressive ','a gregarious.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3683,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:08'),(464,'Young people have a <i>penchant</i> for fast cats ','likeness','passion ','madness ','dislike. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3654,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:09'),(465,'Most of his latest actions are <i>militant</i> in nature ','commanding ','civil ','zealous ','passionate. ','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3812,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:10'),(466,'His ideas sounded quite palatable yet they were <i>jettisoned</i> by the group, ','accepted ','clumped ','denied ','criticized.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3801,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:11'),(467,'The compulsory leave made her feel <i>listless</i>',' restful   ',' great  ',' fat   ','energetic.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3758,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:12'),(468,'A novel is an <i>embellished</i> \\' falsehood\\', said the teacher','enriched ',' exaggerated ','adorned ','Obliterated.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3757,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:13'),(469,' I have had enough of your <i>impudence</i>','politeness ','incivility ','arrogance ','boldness.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3515,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:14'),(470,'We were <i>collectively</i> responsible for keeping the machine in good shape.','jointly ','severally ','dutifully ','socially.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3842,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:15'),(471,'His comment was not <i>printable</i>','punishable  ','suitable ','offensive ','unfair.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3685,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:16'),(472,'<i>Curiously,</i> he escaped unhurt ','interestingly','unsurprisingly ','annoyingly ','unusually.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3803,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:17'),(473,'Agwube\\'s explanation of her poor performance at the examination only <i>begged the question.</i>','delayed her punishment   ','sounded quite convincing ',' did not address the issue','overflogged the matter','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:18'),(474,'We have every need to preserve some of our national monuments for <i>posterity.</i> ','prosperity ','future','national pride   ','collective gain.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3810,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:19'),(475,'He <i>commands</i> the confidence and respect of all his subordinates ','requests',' enjoys   ','enforces','conjures.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3780,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:20'),(476,'The president has mapped out so many <i>laudable</i> projects to embark upon ','laughable   ','good',' praiseworthy   ','valuable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3725,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:21'),(477,'Adamu\\'s father is a <i>stern</i> man ','wicked ','strict','playful ','conservative.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:21'),(478,'Nobody knew the source of the <i>altercation</i> between the couple  ','alter ego ','quarrel   ','deep love','wealth.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3651,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:22'),(479,'His poetry is said to be <i>inscrutable  </i> ','ludicrous','unlearnable ','inseparable ','mysterious.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3741,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:23'),(480,'Hers was a <i>specious</i> argument about the government of the day ','misleading ','precious ','spacious ','true.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:24'),(481,'The Lagos bus conductor r wore his professional <i>livery</i>','badge   ','shoe ',' uniform ','cap.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3813,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:25'),(482,'If Joy hadn\\'t been <i>tripped up</i> halfway through the race, she would have came first  ','discouraged','disqualified ','interrupted   ','exhausted.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3778,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:26'),(483,'There must be something <i>sinister</i> about her late arrival','reasonable ','joyful ','hopeful ','ominous.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3798,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:27'),(484,'The <i>unification</i> of the country has brought about great technological advancement ','A restoration','agreement','cohesion ','stability.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:28'),(485,' His <i>amnesia</i> has affected his career ','loss of focus','loss of sight','loss of memory ','loss of direction.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3704,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:29'),(486,' Idris\\' <i>forbearance</i> endeared him to us ','hard work','patience ','wisdom ','good manners.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3633,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:30'),(487,'They hated the police and, by <i>implication,</i> me','extension',' inference ','examination','application','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3722,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:31'),(488,'He is really very mean. He…… not lend me the money I wanted. ','should ','could  ','would','won\\'t  ','choose the option that best completes the gap(s).','','c','','utme','2009',3716,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:32'),(489,'When the cashier told him to join the queue, he considered it……. his dignity.','a drawback to ','an affront on','withdrawal from  ','a strain on ','choose the option that best completes the gap(s).','','b','','utme','2009',3747,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:32'),(490,'If anyone greets you, it is only polite to return….. Greeting','your  ','the one\\'s   ','Anyone\\'s ','one\\'s ','choose the option that best completes the gap(s).','','d','','utme','2009',3647,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:33'),(491,'Amina lives…..  campus.','in the. ',' on','at the ','inside','choose the option that best completes the gap(s).','','b','','utme','2009',3780,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:34'),(492,'An acceptance of the offer would be a departure from the several rejections that….. ','had taken place ','have taken place','take place ','took place ','choose the option that best completes the gap(s).','','a','','utme','2009',3754,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:35'),(493,' The….. part of a new book is often written by a more experienced writer than the author. ','foreward','foreword','forward  ','forword  ','choose the option that best completes the gap(s).','','b','','utme','2009',3818,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:36'),(494,'The officer acted in….. the instructions. ','accordance ','accordance to','accordance of','accordance with ','choose the option that best completes the gap(s).','','d','','utme','2009',3658,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:37'),(495,'The bomb was... …….','detonated  ','dismantled ','deactivated ',' depleted','choose the option that best completes the gap(s).','','a','','utme','2009',3731,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:38'),(496,'If you want to succeed in life, don\\'t be envious….. other people\\'s achievement ','of     ',' to    ','with    ','on','choose the option that best completes the gap(s).','','a','','utme','2009',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:39'),(497,'They are taught to value honour….. their lives.  ','from','in',' than ','above','choose the option that best completes the gap(s).','','b','','utme','2009',3786,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:40'),(498,'Our plan for the trip fell............when the rich man did not give us a life….. ?','off/boat','through/line','down/jacket ','in/help','choose the option that best completes the gap(s).','','b','','utme','2009',3726,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:41'),(499,'1 missed the match though it was shown on television on  two…….. nights. ','concurrent ','consistent ','concrete ','conservative ','choose the option that best completes the gap(s).','','d','','utme','2009',3659,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:42'),(500,'The company paid some money to Abu to... …..  him for the losses he suffered during the accident.','indemnify ',' condole with ','settle ','recompense','choose the option that best completes the gap(s).','','a','','utme','2009',3824,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:42'),(501,'You are just-putting the hat on. ……?','don\\'t you  ','isn\\'t it ',' aren\\'t you  ','not so','choose the option that best completes the gap(s).','','c','','utme','2009',3787,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:43'),(502,'Government\\'s frowned upon politicians who are out to…….... Wealth','gain  ',' amass  ','steal ','waste','choose the option that best completes the gap(s).','','b','','utme','2009',3827,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:44'),(503,'I tried to discourage him, but he persisted……… revealing the secret to his son','for  ','in','  on ','to ','choose the option that best completes the gap(s).','','b','','utme','2009',3885,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:45'),(504,'He was determined to……... all opposition into submission','push ','cow ','box   ','pound ','choose the option that best completes the gap(s).','','b','','utme','2009',3819,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:46'),(505,'I am told that the market is.-, in to the interests of people from all ………….of life','tuned/walks ','constructed /places ','designed/places  ','set/works ','choose the option that best completes the gap(s).','','a','','utme','2009',3807,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:47'),(506,'Uche has been in ……….with his pen pal  for years.','exchange','correspondence ','favour  ','cord','choose the option that best completes the gap(s).','','a','','utme','2009',3691,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:48'),(507,'Abba became …….... about his inability to pass the examination.','despondent ','disenchanted ','dogmatic','joyful','choose the option that best completes the gap(s).','','a','','utme','2009',3753,'Admin','0000-00-00 00:00:00','2020-07-14 02:13:01'),(508,'c<u>aug</u>ht','hot','water','sup','wrong','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','b ','','utme','2009',3764,'Admin','0000-00-00 00:00:00','2020-07-14 02:19:41'),(509,' c<u>ou</u>ntry','worry','courteous','bought','poultry','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','a','','utme','2009',3713,'Admin','0000-00-00 00:00:00','2020-07-14 02:00:54'),(510,' tr<u>a</u>p','wonder','because','plait','quantity','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','c','','utme','2009',3685,'Admin','0000-00-00 00:00:00','2020-07-14 01:30:15'),(511,'  re<u>s</u>t','result','show','unasked','wise','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3693,'Admin','0000-00-00 00:00:00','2020-07-14 12:28:50'),(512,'  <u>th</u>ought','taught','weather','theatre','fate','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3747,'Admin','0000-00-00 00:00:00','2020-07-14 12:28:51'),(513,'sheer','dear','shirt','spare','shade','choose the option that rhymes with the given word.','','a','','utme','2009',3691,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:54'),(514,'great','creek','crate','knit','treat','choose the option that rhymes with the given word.','','b','','utme','2009',3773,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:55'),(515,'own','brown','frown','gown','phone','choose the option that rhymes with the given word.','','d','','utme','2009',3896,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:56'),(516,'ceremoniously ','CEremoniously   ','ceREmoniously','cereMOniously      ','ceremoNlously.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2009',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:57'),(517,'  understandable ','unDERstandable','understandABLE','UNderstandable ','underSTANDable.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2009',3721,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:58'),(518,' management ','MAnagement ','maNAgement','manaGEment ','manageMENT','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2009',3778,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:58'),(519,'I AM called Uche a pilot. ','What did Lam call Uche',' Did Okoro call Uche a pilot?    ','Did I am Uche a driver? ','Did Lam wish Uche to be a pilot?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','b','','utme','2009',3781,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:59'),(520,'The girl DANCED in the village square.   ','Who danced  in the village square?  ',' Is this the village square where the girl danced? ','Did the girl dance in the village square? ','Did the girl sing in the  village square?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','d','','utme','2009',3717,'Admin','0000-00-00 00:00:00','2020-07-14 14:49:00'),(521,'My father READ the newspaper.','Did my father steal the newspaper? ','Who read the newspaper?',' What did my father read?','Whose father read the newspaper?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','a','','utme','2009',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:49:01'),(522,'Though Mr, Iro is our new chairman, he views other members with jaundiced eye, ',' He takes a rather forceful position on dealing with his members.','He takes an unfavourable position concerning his members','He takes a sickly view of his members. ','He takes a rather hazy view of his members.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3855,'Admin','0000-00-00 00:00:00','2020-07-14 17:12:35'),(523,'People are not interested in who rules ','People are not ruled by the leaders they want ','People are not concerned about who rules them ','The rulers are not concerned about the people ','People who rule are not interested in the ruled.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3870,'Admin','0000-00-00 00:00:00','2020-07-14 20:37:06'),(524,'It is always good to steer a middle course in whatever one does. ','It is always good to get midway in anything one does. ','It is always good to act with moderation. ','It is always good to move away from the forefront','It is always good to work very hard.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3790,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(525,'The witness said he had no axe to grind with his brothers.',' He had no hatred for the brothers ','He had no axe and therefore stole the matchet ','He had no axe and therefore borrowed their matchet ','He had no vested interest in the brothers.',' select the option that best explains the Information conveyed In the sentence. ','','d','','utme','2010',3832,'Admin','0000-00-00 00:00:00','2020-07-14 20:43:56'),(526,'The footballers moved with their tails between their legs.','They moved happily because they won the match','They were unhappy because they had been despised  by their opponents. ','They were ashamed because they had been defeated ','they moved with their tails between their legs.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3915,'Admin','0000-00-00 00:00:00','2020-07-14 20:28:49'),(527,'The headmaster managed to talk his way out of having  to give a speech ','He delivered a speech despite the difficulty ','He managed to give a speech out of a difficult situation ','He managed to get himself out of a difficult situation','He managed to talk on his way.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3814,'Admin','0000-00-00 00:00:00','2020-07-14 20:33:43'),(528,'As regards the matter, we have crossed the rubicon','We are completely at a toss','We are irrevocably committed ',' We are already quaffed','We are perfectly committed.  ',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3786,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(529,'Uche is full of himself ','He is concerted ','He is complete  ','He is a rich man ','He is careful.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3784,'Admin','0000-00-00 00:00:00','2020-07-15 06:22:11'),(530,'As debutants in that tournament, the Super Eagles were up against their first opponents by three goals to nil','The Super Eagles were playing in the tournament for the first time, but they won their match by three goals to nothing ','Though the Super Eagles were rated as the weakest side in the tournament they won their first match by three goals to nil ','Even though the Super Eagles were playing without some of their regulars, they won their match by three goals to nil.','As the best attackers in the match. the Super Eagles easily defeated their opponents by three goals to nothing.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3829,'Admin','0000-00-00 00:00:00','2020-07-15 06:22:11'),(531,'The woman was mournful as her husband was found dead drunk  ','She was sad because her husband was absolutely drunk ','She was apprehensive that her husband would drink again as soon as he recovered from the drunken stupor. ','She was sad because her husband was drunk and always as helpless as a dead  man ','She was mourning because her husband drank and died.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3772,'Admin','0000-00-00 00:00:00','2020-07-15 07:37:03'),(532,'I am optimistic about the Interview though It was a <i>mind- bending</i>  exercise, ','an enervating ','a debilitating','a difficult ','an easy','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3841,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(533,'The trader was amused by the  <i>cutthroat</i>  rush for the goods ','worrisome','strange ','lacklustre ','mad','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3849,'Admin','0000-00-00 00:00:00','2020-07-15 07:37:03'),(534,'The teacher said that All\\'s essay was full of many  <i>redundant</i>  details ','unexplained ','strange','necessary ','useful','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3816,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(535,'His father surmounted the  <i>myriad</i>  of obstacles on his way ','most ','few ','all ','many','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3795,'Admin','0000-00-00 00:00:00','2020-07-15 07:13:19'),(536,'Her  <i>ingenuous</i>  smile drew our attention ','witty',' naive ','clever ','arrogant','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3856,'Admin','0000-00-00 00:00:00','2020-07-14 17:20:14'),(537,'Ndeni gave a  <i>flawless</i>  speech at the party ','a wonderful ','a careless ','an interesting ','an imperfect','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3901,'Admin','0000-00-00 00:00:00','2020-07-15 07:07:19'),(538,' Beneath Ado\\'s  <i>guff</i>  exterior, he\\'s really very kind-hearted','nice','harsh ','rough ','gentle','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3780,'Admin','0000-00-00 00:00:00','2020-07-15 07:13:19'),(539,'The captain says sports is being  <i>debased</i>  by commercial sponsorship ','localized ','perverted','elevated ','overvalued','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3754,'Admin','0000-00-00 00:00:00','2020-07-14 16:34:25'),(540,'Governing a country is not always as  <i>straightforward as</i>  people sometimes imagine.','complicated','troublesome   ','untoward   ','Irksome','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3671,'Admin','0000-00-00 00:00:00','2020-07-14 20:43:16'),(541,'The crowd was very  <i>receptive </i>  to the speaker\\'s suggestion ','disobedient ','repellent ','alert','Hostile','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3806,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(542,'There was a general  <i>acquiescence</i>  on the new drug law ','resistance ','discrepancy ','compromise','agreement','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3793,'Admin','0000-00-00 00:00:00','2020-07-15 07:10:33'),(543,'Aisha seems to feel  <i>ambivalent</i>  about her future','decisive ','anxious ','ambitious ','inconsiderate','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3715,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(544,'The report of the committee contained a  <i>plethora</i>  of details',' shortage ','simplicity ','multitude',' spectrum','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3773,'Admin','0000-00-00 00:00:00','2020-07-15 06:23:41'),(545,'The weather was still very  <i>heavy and sultry </i> ','wintry and shadowy ','cold and friendly ','cloudy and thundery','hot and uncomfortable','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3704,'Admin','0000-00-00 00:00:00','2020-07-15 06:22:11'),(546,'Ada gave her husband a look that made words  <i>superfluous</i> ','redundant ','spurious ','unnecessary',' scanty.','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3856,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(547,'A political  <i>impasse</i>  does not offer the best opportunity for merrymaking ','manifesto ','party ','gridlock',' rally','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3839,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(548,'We were all  <i>enthusiastic</i>  as we awaited the result of the election ','bemused ','agitated ','elated','nervous','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3871,'Admin','0000-00-00 00:00:00','2020-07-14 20:33:25'),(549,'The uniform makes the guards look  <i>absurd</i>  ','dirty','smart ','sensible','ridiculous','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3770,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(550,'The law is often  <i>tardy</i>  in reacting to changing attitude',' quick','low ','exclusive ','generous','choose the option nearest  in meaning to the word or phrase in Italics.','','b','','utme','2010',3844,'Admin','0000-00-00 00:00:00','2020-07-15 06:23:41'),(551,'Isa and llu  <i>ate sumptuous</i>  meals on their brother\\'s wedding day','expensive ','foreign ','insipid','cheap','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3875,'Admin','0000-00-00 00:00:00','2020-07-14 14:49:39'),(552,'Kaltume  <i>crouched</i>  over the papers on her desk ','wrote on  ','stood on ','walked over','bent over','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3777,'Admin','0000-00-00 00:00:00','2020-07-15 06:23:41'),(553,'The <i> panacea</i>  for a country\\'s economic mess lies in systematic planning and hard work ','cure  ','hope','foresight ','trouble','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3947,'Admin','0000-00-00 00:00:00','2020-07-14 17:15:38'),(554,'Thousands of workers have been victims of  <i>retrenchment</i>  since the military came back to power.','unemployment ','trench mentality ','suffering ','increase in penury','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3749,'Admin','0000-00-00 00:00:00','2020-07-15 07:10:33'),(555,'The principal gave his speech   <i>off hand</i>  at the sports  meeting ','calmly ','Beautifully ','unconcerned','unprepared','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3706,'Admin','0000-00-00 00:00:00','2020-07-15 07:37:03'),(556,'Jankoli was dressed in an old  <i>assortment</i>  of clothes','avalanche ','homogeneity ','sameness','melange','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3804,'Admin','0000-00-00 00:00:00','2020-07-15 07:10:33'),(557,'The girl\\'s father was  <i>astounded</i>  to see her appear from the shrine ','collected ','overwhelmed','embarrassed ','astonished','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3753,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(558,'The director\\'s remark was extremely  <i>apposite</i>  to the issue being discussed ','appropriate','inconsequential ','emphatic ','adequate','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3891,'Admin','0000-00-00 00:00:00','2020-07-15 07:05:41'),(559,'Her reputation is without a  <i>blemish </i> ','struggle','problem ','fault ','blessing','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3800,'Admin','0000-00-00 00:00:00','2020-07-14 20:43:56'),(560,'Ugo is  <i>eligible</i>  for the post of secretary ','nominated','invited','qualified ','intelligent','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3732,'Admin','0000-00-00 00:00:00','2020-07-15 07:07:19'),(561,'This is an  <i>abridged</i> version of No Longer at Ease','an outdated    ','an enlarged ','an illustrated ','a shortened','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3863,'Admin','0000-00-00 00:00:00','2020-07-14 14:49:48'),(562,'Lemoti ………..','is gifted only not ','is only not gifted  ','not only ','is only gifted','choose the option that best completes the gap(s)','','b','','utme','2010',3920,'Admin','0000-00-00 00:00:00','2020-07-14 20:36:33'),(563,'He can recall the important dates in the nation\\'s history; it is interesting to listen as he rattles…….','off','over','up   ','out','choose the option that best completes the gap(s)','','a','','utme','2010',3714,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(564,'The boy told his mother','that was the girl he told her about ','that was the girl I told you about her','that was the girl I told her about ','that is the girl he told her about','choose the option that best completes the gap(s)','','a','','utme','2010',3894,'Admin','0000-00-00 00:00:00','2020-07-15 07:07:19'),(565,'Last Monday his father asked me, .......','if\\' had come some days before ','if I had come the day before','did you come yesterday ','had I come yesterday','choose the option that best completes the gap(s)','','a','','utme','2010',3819,'Admin','0000-00-00 00:00:00','2020-07-14 17:19:32'),(566,'His wife was badly injured in the fracas, but I think  she will pull','up  ','over ','through ','back','choose the option that best completes the gap(s)','','c','','utme','2010',3818,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(567,'A wide range of options','is ','were   ','are',' was','choose the option that best completes the gap(s)','','d','','utme','2010',3712,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(568,'One of the women who .... in the premises.... been  ordered to quit ','sells/have ','sell/has  ','sell/have','sells/has','choose the option that best completes the gap(s)','','b','','utme','2010',3716,'Admin','0000-00-00 00:00:00','2020-07-15 07:37:03'),(569,'The new trade agreement should facilitate…..... ','more economic rapid growth  ','economic more rapid  growth ','rapid economic more growth   ','more rapid economic growth.','choose the option that best completes the gap(s)','','d','','utme','2010',3840,'Admin','0000-00-00 00:00:00','2020-07-15 07:07:19'),(570,'The principal said that he was pleased......... my effort.',' on ','of ','with','about','choose the option that best completes the gap(s)','','c','','utme','2010',3798,'Admin','0000-00-00 00:00:00','2020-07-14 20:37:06'),(571,'Paper is made…….. wood pulp ','on ','of ','from ','with','choose the option that best completes the gap(s)','','c','','utme','2010',3757,'Admin','0000-00-00 00:00:00','2020-07-15 07:13:19'),(572,'Long after everyone…... the hall, Obi still sat inside.','left','is leaving ','has left','had left','choose the option that best completes the gap(s)','','d','','utme','2010',3807,'Admin','0000-00-00 00:00:00','2020-07-15 07:13:19'),(573,'They are the.... dresses ','babys\\' ','baby ','babies','babies\\'','choose the option that best completes the gap(s)','','d','','utme','2010',3821,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(574,'The politician was sent …….. exile','onto ','into','on ','to','choose the option that best completes the gap(s)','','c','','utme','2010',3795,'Admin','0000-00-00 00:00:00','2020-07-14 20:33:25'),(575,'When we looked up, we …….... the plane some miles away. ','site ','cited ','sited ','sighted','choose the option that best completes the gap(s)','','d','','utme','2010',3847,'Admin','0000-00-00 00:00:00','2020-07-15 07:05:41'),(576,'Vital... is still spread ……..... word of mouth in most villages in Africa. ','information/from  ','information/with','information/by ','information/through ','choose the option that best completes the gap(s)','','c','','utme','2010',3733,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:02'),(577,'Western  education is one of the ... of colonial rule','legacies  ','evidence ','remnants ','inheritance ','choose the option that best completes the gap(s)','','a','','utme','2010',3768,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(578,'The Federal Government has .... child trafficking ','postulated  ','projected ','prescribed ','proscribed','choose the option that best completes the gap(s)','','d','','utme','2010',3928,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(579,'The man was happy that his son confessed his guilt and so the others were .... ','implicated','accused ','punished ','Exonerated','choose the option that best completes the gap(s)','','d','','utme','2010',3796,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(580,'  Based on the facts before me, I have no alternative...........to hold you responsible ','only ','as ','than ','but','choose the option that best completes the gap(s)','','c','','utme','2010',3815,'Admin','0000-00-00 00:00:00','2020-07-14 17:29:07'),(581,'Many people would always find reasons to ... the law','arrogate ','debase  ',' circumvent ','circumspect','choose the option that best completes the gap(s)','','c','','utme','2010',3689,'Admin','0000-00-00 00:00:00','2020-07-14 20:36:33'),(582,'c<u>oup</u> ','whup  ','shoot ','couple ','scout','choose the option that has the same vowel sound as the one represented by the letters underlined.','','b','','utme','2010',3910,'Admin','0000-00-00 00:00:00','2020-07-14 19:44:03'),(583,'ind<u>i</u>ct ','bright   ','fish ','pick ','brick','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3731,'Admin','0000-00-00 00:00:00','2020-07-14 16:38:58'),(584,'r<u>oa</u>red ','towered ','coast ','brought ','rod','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3757,'Admin','0000-00-00 00:00:00','2020-07-14 17:19:32'),(585,'shea<u>th </u>','bathe ','length ','months ','paths','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2010',3794,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(586,'<u>h</u>igh ','what  ','honest ','who ','vehicle','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3867,'Admin','0000-00-00 00:00:00','2020-07-15 07:10:33'),(587,'o<u>f </u>course  ','plough ','dough ','over ','orphan','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3751,'Admin','0000-00-00 00:00:00','2020-07-14 20:36:33'),(588,'boys ','stays  ',' moist ','noise ','elbows','choose the option that rhymes with the given word.','','c','','utme','2010',3926,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(589,'shine ','clean ','fine ',' machine ','lain','choose the option that rhymes with the given word.','','c','','utme','2010',3664,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:14'),(590,'seer ','snare   ','spare','spear ','square','choose the option that rhymes with the given word.','','c','','utme','2010',3729,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(591,'political ','politiCAL  ','POlitical','poliTlcal','poLltical','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3871,'Admin','0000-00-00 00:00:00','2020-07-15 07:05:41'),(592,'satisfactory ','satisfacTORY  ','saTISfactory','SATisfactory ','satisFACtory','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3705,'Admin','0000-00-00 00:00:00','2020-07-14 19:44:03'),(593,'captivity ','captiviTY   ','captiVIty  ','capTlvity','CAPtivity','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','c','','utme','2010',3717,'Admin','0000-00-00 00:00:00','2020-07-15 07:13:19'),(594,'EMEKA finished his home work yesterday ','Was Emeka helped to do his home work? ','Did Emeka do his home work yesterday?','When did Emeka finish his home work? ','Who finished his home work yesterday','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','d','','utme','2010',3759,'Admin','0000-00-00 00:00:00','2020-07-14 16:34:24'),(595,'Taiwo SAILED to London','Did Taiwo fly to London?',' Did Taiwo sail to Brazil','Did Taiwo sail to London?','Where did Taiwo sail to?','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','a','','utme','2010',3736,'Admin','0000-00-00 00:00:00','2020-07-15 04:18:21'),(596,'My bag is made of LEATHER ','Whose bag is made of leather? ','Is my bag made of polythene? ','Is Abu\\'s bag made of leather? ','Is my bag made of leather','the word in capital letters has the <i>emphatic stress.</i> Choose the option to which the given sentence relates','','b','','utme','2010',3783,'Admin','0000-00-00 00:00:00','2020-07-15 07:37:03');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `englishlit` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `englishlit` VALUES (1,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son','question is on William Shakespeare\\'s hamlet','','d','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:31'),(2,'Prince Hamlet refrains from killing King Claudius while the latter is praying because ','he does not want to murder a pious man ','he is not yet fully convinced of his uncle’s guilt  ','King Claudius might thereby gain eternal life ','murder of a person paying is an unpardonable sin ','question is on William Shakespeare\\'s hamlet','','b','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:32'),(3,'Which of these best describes setting in a novel? ','the place where an event takes place ','the time when an event takes place ','the place and time of an event ','the back ground of an event ','question is on William Shakespeare\\'s hamlet','','c','','post-utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:32'),(4,'The farm Flincomb-Ash is symbolic of: ','Tess\\'s fallen state ','Tess\\'s innocence ','Tess\\'s happiness ','the suffering and ill-luck that is Tess\\'s fate','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','d','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:33'),(5,'Prince, in the novel, is','the title of Tess\\'s ravisher ','Angel Clare\\'s other name  ','the name of a horse ','the name of Tess\\'s brother ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','c','','post-utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:34'),(6,'The period Tess spends at Talbothays is the period of her:','the happiest period of her life ','the period she suffers most horribly in the novel ','the period she falls into temptation ','the period when she became pregnant ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','a','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:35'),(7,'The play starts with a ','flashback ','prayer ','muezzin ','dialogue ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:36'),(8,'Caliph: \\\"Atthiru invites Mallam because ','Mallam has offended the caliph ','Mai Worno needs to be talked to ','Attahiru wants Mallam to explain the dream he had ','Mallam and Mai Wurno are friends ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:38'),(9,'Caliph: \\\"You have spoken well. I agree with the Waziri\\' s suggestion. You shall be organize your men and build in new well in the market. “That is our judgement\\\". What informed this statement? ','Waziri fight with the white man ','Waziri\\'s disagreement with Sarkin Zango ','the dispute between Caliph Attahiru and Prince Muhammed al-Tahir  ','the dispute between Sarkin Zango and Sarkin Fatake.','question is on Attahiru, Ahmed Yerima\\'s play','','d','','post-utme','2006',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:39'),(10,'A five-line poem that treats a nonsensical subject with humour is a ','quartet ','limerick  ','panegyric  ','sestet.','','','b','','post-utme','2006',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:40'),(11,'Which of the following statement is most true about poetry?  ','the meanings of words are more important than their sounds  ','the sounds of words are more important than their meanings  ','the sounds of words are often more important than their meaning  ','sounds and meanings of words are of little consequence ','','','a','','post-utme','2006',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:40'),(12,'The expression “coin of gold” in “Naett, coin of gold” is ','personification ','epithet  ','metonymy  ','metaphor ','','','d','','post-utme','2006',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:41'),(13,'What figure of speech is “shining coal”?  ','paradox ','irony  ','oxymoron','paronomasia','','','c','','post-utme','2006',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:42'),(14,'The rhythm of the poem “Serenade” is  ','blue  ','jolting  ','jerky ','measured','','','c','','post-utme','2006',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:43'),(15,'Which of these best defined exposition in drama? ','the author’s own general introduction to the play  ','the author’s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals ','the first performance of the play on stage ','','','c','','post-utme','2006',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:44'),(16,'The tone or mood of the speaker in the poem is:  ','neutral  ','angry  ','happy  ','sad ','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.\\nAnd a few leaves lay on the starving sod,\\n…. They had fallen from an ash, and were gray\\n','','d','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:45'),(17,'Starving sod\\\" here is: ','a metaphor ','a personification ','a simile ','a paradox.','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.','','b','','post-utme','2006',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:46'),(18,'In Leopold Sedar Senghor\\'s \\\"I will pronounce Your Name\\\" Naeth represents ','Africa ','Senegal ','the poet\\'s mother ','the poet\\'s lover.','','','b','','post-utme','2006',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:47'),(19,'In Ofeimu\\'s \\\"we must learn Again to fly\\\" \\'Cumulus\\' symbolizes ','acloud ','old age ','sounded masses ','black hair.','','','b','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:48'),(20,'A brief but witty expression is called: ','song ','epigram','enecdote ','joke ','','','b','','post-utme','2006',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:49'),(21,'Pastoral poetry refers to the poetic composition of ','clergyman ','friare ','scops ','shepherds.','','','d','','post-utme','2006',141,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:49'),(22,'A literary composition that employs wit and humor to ridicule person or institution is','drama ','satire','norella ','clergy.','','','b','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:50'),(23,'In a tragedy, the moment when the protagonist suffers a reversal of fortune is know as ','eatharsis ','exposition ','enagnonsis ','peripeteia ','','','d','','post-utme','2006',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:51'),(24,'“When he was turned over, his eyeballs stared upward in amazement and horror, his mouth was locked torn wide: his trouser soaked with blood, were torn  open, and exposed to the cold , white air of morning the thick hairs of his groin, mattered together, black and rust red, and wound that seemed to be throbbing still\\\". This passage achieves realism through the use of ','details ','simple words ','the long sentence ','the past tense ','','','a','','post-utme','2007',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:02'),(25,'Earth has not anything to; show more  fair. Dull would he be of soul who could pass by a sight so touching in its majesty. This city now doth, like a garment, wear the beauty of the morning. It is suggested in this line that ','the beauty of the morning gains from the beauty of the city',' the beauty of the city gains  from the beauty of the morning','the beauty of the city and the beauty of the morning are unrelated ','there is no beauty on earth.','','','d','','post-utme','2007',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:03'),(26,'\\\"Of 0 cam fasten nut one cup upon him with that which he had drunk tonight already. He\\'ll be as full of quarrel and offence as my young mistress\\' dog ... \\\" Shakespeare, Othello  from the statement above it can be inferred that the speaker is ','disobedient ','quarrelsome ','drunkard ','scheming ','','','d','','post-utme','2007',145,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:04'),(27,'\\\"That that is why we must acc-c-cept the universal d-d-dome, b-b-because there is no d-d-d-direction, The b-b-bridge is the d-d-dome of religion and b-b- bridges d-don\\'t just g-g-go from here to the there; a bridge also face backwards\\\". Wole Soyinka, The Interpreters. The idiolectical feature of the character\\'s speech is the ','repetition of consonant sounds ','repetition of initial consonant sounds ','duplication of consonant sound clusters ','multiplication of diphthongs.','','','c','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:05'),(28,'\\\"As virtuous men pass wildly away, and higher to their souls, to go,  Whilst some of their sad friends to say,  \\\"The breadth goes now\\\", and some say \\\"No\\\".  The tone of this poem is generally ','appreciative ','serious','imaginative ','conversational.','','','d','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:06'),(29,'I am alone, And the murmur of my lips carry song and tears homewards from a plain a way from home. Okogbule Wonodi. \\\"Lament for Shola\\\". The poet-persona here expresses a feeling of ','love ','anger ','nostalgia ','sorrow ','','','c','','post-utme','2007',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:07'),(30,'One rhyme scheme typical of the English sonnet is ','bba abba cde cde ','bba abba cde dce ','abab cdcd efef gg ','abcd babb cde cc','','','c','','post-utme','2007',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:08'),(31,'Face thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2007',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:09'),(32,'A short witty statement is an ','epistle ','eulogy','epigram ','anecdote','','','c','','post-utme','2007',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:10'),(33,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2007',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:11'),(34,'A literary device that creates a mental picture of a situation is ','imagery','symbolism ','flashback ','epilogue.','','','a','','post-utme','2007',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:12'),(35,'Periphrasis in poetic diction is marked by ','circumlocution ','irony ','proverb ','parable.','','','a','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:13'),(36,'A deliberate imitation of a literary style with the intention to ridicule is ','lampoon ','prosody ','pun ','parody.','','','d','','post-utme','2007',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:14'),(37,'What happened to Tess at the end of Thomas Herds Tess of the D\\'urbervilles?','She is executed for committing murder ','She got married to Angel Clare ','She got married to Alec D’Urbervilles ','She gave birth to a baby boy.','','','c','','post-utme','2007',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:14'),(38,'The wood where Alec raped Tess is known as: ','Chase borough ','The Chase ','Greenhill ','Trantridge.','','','b','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:15'),(39,'The name of the place where Tess and Angel Clare meet each other the second time is: ','Tratridge ','Brazil ','Dubeyfield','Talbothays farm.','','','d','','post-utme','2007',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:16'),(40,'\\\"Taxi Driver\\\" in Timothy Wangusa\\'s \\\"A Taxi Driver on his Death\\\" can be interpreted as a metaphor describing ','a careful driver ','a ruthless dictator ','a drunkard ','a careless man.','','','b','','post-utme','2007',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:17'),(41,'The tone in Dennis Brutus\\' \\\"A Troubadour I Traverse .... \\\" can be described as: ','defiant ','submissive ','regretful ','arrogant.','','','a','','post-utme','2007',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:18'),(42,'\\\"Naett\\\" in Leopold Sedar Senmghor\\'s \\\"I will Pronounce you Name\\\" refers to: ','South Africa ','a women ','a man ','Black Africa.','','','d','','post-utme','2007',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:19'),(43,'\\\"Cloud I, early sequestered from my tribe, Free a lead - tethered scribe.\\\" The above lines\\' from J.P. Clark\\'s \\\"Agbor Dancer\\\" suggests that the persona is: ','one with his tribe ','alienated from his tribe ','one of the dancers ','one of the drummers.','','','b','','post-utme','2007',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:20'),(44,'The name of the author of \\\"We Must Learn to Fly\\\" is: ','Dennis Brutus ','Leopold Sedar Senghor ','Odia Ofeimun ','Wole Soyinka.','','','c','','post-utme','2007',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:21'),(45,'One of the following is a characteristic of a novel: ','It is written only in dialogues ','It adopts the poetic form ','It is written mainly in prose','It employs phrases and sentences.','','','d','','post-utme','2007',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:22'),(46,'The law protecting works of art from unlawful reproduction is called: ','plagiarism ','illegal photocopying ','It is written mainly in prose','copyright.','','','d','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:23'),(47,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son. ','','','d','','post-utme','2007',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:23'),(48,'What figure of speech does the following quotation contain? A life\\'s but a walking shadow (Macbeth)','a metaphor ','an image ','a synecdoche ','an allusion','','','a','','post-utme','2008',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:24'),(49,'Which of the following statement is most true about poetry? ','the meanings of words are more important than their sounds ','the sounds of words are more important than their meanings ','the sounds of words are often more important than their meanings ','sounds and meanings of words are of little consequence','','','a','','post-utme','2008',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:25'),(50,'Which of these best define exposition in drama?','the author\\'s own general introduction to the play ','the author\\'s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals','the first performance of the play on stage.','','','c','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:26'),(51,'When the speaker in a poem cannot be identified with poet, that speaker is called: ','a persona ','a dramatic persona ','a soliloquist','a ventriloquist.','','','a','','post-utme','2008',102,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:27'),(52,'Which of these definitions best described a lyric? ','a short poem','a short poem in which the poet is speaking','a poem expressing a personal idea, feeling or mood','a poem divided into stanza.','','','c','','post-utme','2008',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:28'),(53,'An autobiographical novel is: ','a novel written about another novelist ','a true account of a novelist\\'s life by himself ','a novel in which h the novel 1st draws mainly on materials from his own life ','a novel using the\\' I\\' pronoun.','','','c','','post-utme','2008',136,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:29'),(54,'Plot in prose fiction is best defined as:  ','the cause and effect sequence of events  ','the brief summary of events  ','the central event  ','the subject-matter of a novel.','','','a','','post-utme','2008',139,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:30'),(55,'Which of these is not true about unity of action in a novel? ','action may be unified through a single main character  ','action may be unified by being set in one place  ','action may be unified by many characters  ','action may be unified by using set in one consistent point of view.','','','a','','post-utme','2008',146,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:31'),(56,'Action in a novel is best defined as:  ','the summary of the novel’s story  ','what the characters do or say in the novel  ','the numerous sub-plots of the novel put together ','the totality of all the episodes in a novel leading to the conclusion','','','b','','post-utme','2008',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:32'),(57,'Suspense in a novel means:  ','the postponement of the hero’s death till the last possible moment ','the intense emotions that the author conveys  ','the inconclusive end of a novel  ','when we are curious about what happens next in a novel.','','','d','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:33'),(58,'A realistic novel is one in which the characters are:  ','real   ','historical ','just of above average intelligence  ','the types that we meet in everyday life.','','','a','','post-utme','2008',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:33'),(59,'Theme is best defined as:  ','the subject – matter of a novel or play ','the central idea in a play or novel  ','the point of view in that novel  ','the sum-total of all the characters’ experiences','','','a','','post-utme','2008',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:34'),(60,'What kind of repetition is used in the extract?  ','anaphora ','single word repetition  ','line repetition  ','phrase repetition.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:35'),(61,'A part from emphasis, what other effect does the repetition have?  ','makes the poem rhythmical  ','makes the poem tedious  ','makes the poem -notonous  ','makes the poem exhilarating.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',112,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:36'),(62,'The following line from a poem:  Western wind, when will thou blow? Is an example of: ','rhetorical question  ','caesura  ','alliteration  ','nature imagery.','','','a','','post-utme','2008',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:37'),(63,'Identify the odd one out of these types of imagery  ','visual imagery  ','tactile imagery  ','synesthesia  ','literal imagery.','','','d','','post-utme','2008',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:38'),(64,'When a poet uses mainly soft vowel sounds in a poem, the texture of the poem is ','mellifluous ','harsh ','assonantal ','neutral ','','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:39'),(65,'The sounds in the following lines may be described as an example of: The moan of doves in immemorial elms, and murmuring of innumerable bees ','alliteration ','euphony ','cacophony ','a mixture of all the above.','','','b','','post-utme','2008',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:40'),(66,'\\\"The man dies in him who keeps silent in the face of tyranny.\\\" This statement can be described as: ','Metaphoric ','Literal ','Tragic ','A smile.','','','a','','post-utme','2008',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:41'),(67,'The literary technique in which a reader is taken to the past of a current action in known as:','rewinding ','fast forward ','flashback ','repetition.','','','c','','post-utme','2008',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:42'),(68,'One rhyme scheme typical of the English sonnet is ','abba abba cde dce ','abba abba cde cde ','abab cdcd efef gg ','abcd babb cde cc.','','','c','','post-utme','2008',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:43'),(69,'The speaker of the above except is a ','son of Lord Montague ',' nephew to Lady Capulet ','kinsman to the Prince ',' servant to Paris.','\\\" ... This is a Montague, our foe; A villain, that is hither come in spit. To scorn at out solemnity this night. William Shakespeare: Romeo and Juliet I:V,61-63. ','','b','','post-utme','2008',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:44'),(70,'In Gbemisola Adeoti\\'s \\\"Naked Soles\\\", the expression \\\"red milk of grief\\' means ','wine ','sea ','ink ','blood.','','','d','','post-utme','2008',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:44'),(71,'Farce thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2008',103,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:45'),(72,'A short witty statement is an ','epistle ','eulogy ','epigram ','anecdote.','','','c','','post-utme','2008',141,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:46'),(73,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2008',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:47'),(74,'Literary device that creates a mental picture of   a situation is ','imagery ','symbolism ','flashback ','epilogue','','','a','','post-utme','2008',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:48'),(75,'To whom does her in line 5 refers to?  ','God  ','Letter  ','World ','Nature','This is my letter to the world\\nThat never wrote to me\\nThe simple news nature told\\nWith tender majesty\\nHer message is committed\\nTo hands, I cannot see;\\nFor love of her, set countrymen,\\nJudge tenderly one me.\\n','','d','','post-utme','2009',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:49'),(76,'The suddenly her heart was whipped up, she now rode on strange waves: alone defying the wind and the rain; alone, fighting hunger and thirst in the desert, alone, struggling with strange demons in the forest bringing  glad tidings to her people. The mood of the lady in this  passage is one of ','simple defiance ','defeat  ','triumphant  ','depression','','','c','','post-utme','2009',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:50'),(77,'Mother, didn’t you hear me? I’ve brought the goat, hen and yams. Don’t you want them anymore? Why do you continue to look at me like that? I haven’t done anything wrong, again, have I, answer me, speak to me, mother’  The  dominant mood in this passage is one of ','sadness ','anxiety  ','anger  ','nonchalance.','','','b','','post-utme','2009',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:51'),(78,'What distinguishes poetry from other  forms of literature is its  ','Rhyme and verse ','rhythm and metaphor ','emotion and feeling  ','irony and paradox','','','a','','post-utme','2009',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:52'),(79,'Assonance poetry is the repetition of ','internal vowels in words ','consonant sounds in words ','final sounds at the end of a line 1 ','final sounds at the beginning of a line','','','a','','post-utme','2009',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:53'),(80,'There knells a jigger, a louse , a weevil, a flea, a bedbug! He is mistletoe, a parasite that lives on the trees of other people’s! the speaker uses a string of ','metaphors  ','parables  ','hyperboles  ','riddles','','','a','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:54'),(81,'As literacy form the short  story is most closely related to ','the discourse ','the novel  ','story telling  ','poetry ','','','b','','post-utme','2009',108,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:55'),(82,'A poem written on a grand theme, in an appropriately grand style, dealing, with heroic figures is called ','an epigram  ','an epic ','a soliloquy ','heroic poem','','','b','','post-utme','2009',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:56'),(83,'The literary device which uses ridicule to correct social ills is known as ','anecdote  ','saturation  ','hyperbole  ','satire.','','','d','','post-utme','2009',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:56'),(84,'Characterization is a novel means the ','list of characters featuring in it ','peculiar materialisms of the narrator ','mode of presenting the fictional individuals ','list of those that act the novel.','','','d','','post-utme','2009',135,'Admin','0000-00-00 00:00:00','2020-07-14 02:27:06'),(85,'Caricature is used to ','censure an individual by emphasizing his weakness ','expose the folly  in literature  ','ridicule a person by distorting his most prominent features ','elicit the artistic potential of dramatist.','','','c','','post-utme','2009',116,'Admin','0000-00-00 00:00:00','2020-07-14 02:21:16'),(86,'The branch of knowledge that places emphasis on beauty is ','philosophy ','ode to pretty ','philology ','aesthetics.','','','d','','post-utme','2009',130,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:26'),(87,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','‘You kiss her on the cheek \\nYou kiss her open-sore lips\\nAs white people do.\\nYou suck slimy saliva\\nFrom each other’s moths.\\nAs white people do.\\nOkot P’ Breck’s song of larie\\n','','b','','post-utme','2009',127,'Admin','0000-00-00 00:00:00','2020-07-14 02:23:34'),(88,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','','','d','','post-utme','2009',132,'Admin','0000-00-00 00:00:00','2020-07-14 02:27:05'),(89,'‘Beholds her, single in the field you solitary Highland Lass! Reaping and singing, by herself stop here, or gently pass! Alone she cuts and blinds the gram, and sings a melancholy strain, O listen! For the Vale profound Is overflowing with the sound. The rhyming schema in the first stanza of The Solitary Reaper above is ','abcbddee ','ababccdd ','alxabcdd ','abcbddef','','','a','','post-utme','2009',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:02'),(90,'The tone of the poet is ','optimistic ','dupplicatory  ','sympathetic ','piteous','These only tears\\nDripping down the tears on your depressed face.\\nWill one day be staunche.\\nI swear’ \\n','','a','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:03'),(91,'The literary device  which anticipates that an event will take place is best described as ','parody ','flashback ','foreshadowing ','rising action ','','','c','','post-utme','2009',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:04'),(92,'The multiple deaths in the play serve as a punishment for ','impatience on the part of  Romeo and Juliet; ','imposing life partners on children ','disobedience of the protagonists  ','Tybalt’s fiery temper.','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:04'),(93,'Romeo’s death becomes inevitable because ','Emire Lawrence’s is not delivered: ','Juliet is married to Paris ','Romeo kills Tybalt in a duel ','Juliet has committed suicide.','Question is based on William Shakespeare’s Romeo and Juliet','','a','','post-utme','2009',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:05'),(94,'Before he met Juliet, Romeo was in love with ','country Paris ','Rosaline  ','Benvolio  ','Mercuito','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:06'),(95,'The major reason for Juliet’s  grief is ','The death of her cousin; ','her reluctant marriage to Romeo  ','the banishment of her lover ','her imminent death.','Question is based on William Shakespeare’s Romeo and Juliet','','c','','post-utme','2009',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:07'),(96,'Winston Smith begins his rebellion against the power of the state by ','educating the youth  ','keeping a private diary  ','purchasing arms ','disobeying Big Brother.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',138,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:08'),(97,'In the novel, Orwell attempts  to ','eulogizes the beauty of the socialist system; ','condemn the disgusting hypocrisy of all communist systems; ','satirize the artificiality  of a machine controlled society ','deride the political lock jam in Nigeria.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:19'),(98,'“The experts, of course disagree the urine test they ordered ‘said, Negative’. The lives above from acqah’s in the Nanel of the soul depict ','awareness ','inevitability ','progress ','contradiction.','Question is based on selected poems','','d','','post-utme','2009',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:20'),(99,'In Kunene’s Heritage of Liberation, freedom is to be achieved through the efforts of ','the new generation  ','the old generation ','present generation ','successive generations.','Question is based on selected poems','','d','','post-utme','2009',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:21'),(100,'The thematic pre-occupation of de Graft’s  Sons and Daughters can be summarized as ','the import of Western education ','the roles of women in modern economy ','how to become a lawyer ','dimly life in the face of social changes.','','','d','','post-utme','2010',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:22'),(101,'Lawyer Bonu in de Grafts Sons and Daughters can be described as a: ','caring father ','faithful husband ','deceitful friend ','shrewd politician.','','','d','','post-utme','2010',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:23'),(102,'De graft’s Sons and Daughters is structured into: ','three acts ','four scenes ','two acts ','five Episodes.','','','a','','post-utme','2010',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:24'),(103,'The central  conflict in de Graft’s Sons and Daughter is primarily: ','political ','generational ','racial','communal','','','d','','post-utme','2010',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:25'),(104,'He already had five wives and was soon going to break the legs of the antelope for the sixth time’. The expression ‘break the legs of the antelope’ means to: ','be ON honeymoon ','offer ritual sacrifice ','hunt for antelopes  ','have a  new baby.','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:26'),(105,'The medal in Oyono’s The Old man and the  two sons and his: ','house ','horse  ','land ','Job','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:32'),(106,'Kelara in Oyono’s The Old man and the Medal is: ','Mvodo’s sister ','commandant’s maid  ','Meka’s wife ','Agatha’s cousin.','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:33'),(107,'In Oyonon’s The Old Man and the Medal, Ignatius Obebe isa : ','driver ','soldier ','carpenter ','catechist.','Question is  based on Oyono’s Old man hand the medal','','d','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:34'),(108,'The medal in Oyono’s The Old man and the medal is a symbol of: ','colonial deceit ','African pride  ','genuine reward for loyalty ','respect and honour','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',110,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:35'),(109,'Dancing through blooming thorns” in Gbemisola  Adeoti’s Naked soles” connotes: ','hoeing a field of thorns ','dancing  in a keen competition ','being merry amidst suffering','playing flowers and plants.','Question is are based on selected African poems.','','c','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:35'),(110,'In Gbemisola Adeoti’s Naked Soles”, the expression red milk of grief’ refers to: ','wine  ','Ink ','blood ','palm-oil','Question is are based on selected African poems.','','c','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:36'),(111,'In Masizi Kunene’s “A Heritage of Liberation; this season’ refers to the period of: ','oppression ','freedom  ','migration  ','resettlement','Question is are based on selected African poems.','','b','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:37'),(112,'“Eagle in Kunene’s  “A Heritage  of  Liberation” is a symbol of: ','deceit ','peace ','agility ','death.','Question is are based on selected African poems.','','d','','post-utme','2010',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:38'),(113,'The tone in Gbemisola Adeoti’s Naked soles” is that of ','reconciliation  ','lamentation  ','exhortation ','admiration','Question is are based on selected African poems.','','b','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:39'),(114,'The attitude of the poet-Persona toward bats in D.H. Lawrence’s “Bats” is that of ','revulsion ','veneration  ','admiration  ','indifference.','Questions is based on Non-African Poetry','','a','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:40'),(115,'In China, according to D.H. Lawrence, bats are symbols of: ','death  ','birth ','caution ','joy','Questions is based on Non-African Poetry','','d','','post-utme','2010',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:41'),(116,'In Wendy Cope’s Sonnet VII,  poetry is regarded as a God –given weapon to: ','musicians ','recluses ','nomads ','pilgrims.','Questions is based on Non-African Poetry','','b','','post-utme','2010',129,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:42'),(117,'The greatest challenge to the poet-persona in Andrew Marvell’s “To His Coy Mistress’ is : ','chariot ','love  ','time ','youth','Questions is based on Non-African Poetry','','c','','post-utme','2010',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:43'),(118,'But the pigs were so clever that they could think of a way around every difficulty. As for the horses, they know every inch of the field and in fact understood the business of mowing and raking”. The dominant literary device in the excerpt above is ','repetition ','mimesis ','ellipsis ','personification.','Question is  based on literary appreciation','','d','','post-utme','2010',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:44'),(119,'“The dairy maids and men had flocked down from their cottages and out of the dairy-house with the arrival of the cows from the meads: the maids walking in  patterns, not on account of weather, but to keep their shoes above the mulch of the barton”. The setting of the above  passage can be described as: ','urban  ','celestial ','pastoral  ','religious.','Question is  based on literary appreciation','','c','','post-utme','2010',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:45'),(120,'“O mother, my mother!...How could I be expected to know? I was a child when I left this house four months ago. Why didn’t  you tell me there was danger in men-folk? Why didn’t you warn me?” the speech above achieves its literary effect through the use of: ','litotes  ','onomatopoeia ','allusion  ','repetition.','Question is  based on literary appreciation','','d','','post-utme','2010',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(121,'“The animals saw no reason to disbelieve him, especially as they could no longer remember very clearly  what conditions had been like before the rebellion. All the same, there were days when they felt that they would sooner have had less figures and more food”. The tone of the passage above is quite: ','exhilarating ','cynical ','optimistic ','obsequious.','Question is  based on literary appreciation','','b','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(122,'“We are tired of waiting for another war our trees their leaves have shed the winter has come and gone spring flowers have blossomed and withered” in line 2 of the poem above, the poet uses:','ellipsis ','alliteration ','inversion  ','oxymoron.','Question is  based on literary appreciation','','c','','post-utme','2010',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:47'),(123,'The poet personal in the poem above is: ','resigned to fate  ','a holy man  ','a daily traveler  ','suffering but optimistic. ','“I come and go\\na pilgrim\\ngrubbily unkempt\\nstubbornly cheerful\\ndefiantly whistling hope\\nand grubbing for crumbs of success\\nout of all near-defeats.\\n','','d','','post-utme','2010',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:48'),(124,'A novel that has a very strong presence of the supernatural is known as ______ ','faction  ','gothic  ','travel tale  ','fairy novel ','','','d','','post-utme','2012',129,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:50'),(125,'In a tragic-comedy, the unknotting of the plot, the resolution of the mystery and the resolution of the misunderstanding is called  ','exposition   ','denouement   ','catharsis  ','hubris','','','b','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:51'),(126,'The exclusive right given to authors to protect their works from unlawful production or reproduction is   ','A copyright  ','an authority to write  ','an author’s right   ','a constitutional provision ','','','a','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:52'),(127,'An epic deals with  ','humour  ','tragedy  ','gothic  ','hero','','','d','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:53'),(128,'The sudden revelation of events as they happen is called  ','epiphany  ','revelation  ','relay-events  ','resonance ','','','d','','post-utme','2012',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:54'),(129,'Comic relief is used in a work of art to  ','to suspend disbelief  ','to maneuver the portal of narration  ','to create chiaroscuro  ','to suspend to tension ','','','d','','post-utme','2012',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:55'),(130,'The image in this excerpt suggest ','happiness  ','sorrow ','anger  ','kindness','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','b','','post-utme','2012',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:01'),(131,'The world as used above is an example of  ','irony  ','metaphor ','exaggeration  ','parody ','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','c','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:07'),(132,'This extract is an example of  ','dirge  ','satire  ','ode  ','sonnet','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:08'),(133,'The general  idea in the extract is ','neglect  ','praise  ','ridicule  ','worship','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:09'),(134,'  The central motif in this excerpt is  ','religious  ','pride  ','poverty  ','deceit ','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:15'),(135,'The extract is an example of  ','pun  ','hyperbole  ','Irony  ','parody','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:17'),(136,'“Your hand is heavy, Night, upon by brow” is an example of  ','hyperbole  ','onomatopoeia  ','apostrophe  ','oxymoron ','','','a','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:18'),(137,'From this passage, the people that the writer admire are  ','poor  ','brilliant   ','rich   ','unassuming ','(Extract for question)\\nThe human beings who I most admire are those without sterling qualities but are extraordinary in their ordinariness, the unsung heroes who will never be in the limelight or boulevard of fame, people who do great things when no one is watching or those who are not marked with the maple leaves of chieftaincy titles. They only wear fate, hard work, perseverance, anonymity and time. Yet, they are passionate, caring, visionary, sincere, determined and honest. These qualities mold those that are special without being aware. I strive to stay true to some of these qualities that I admire. To find a person with a few of these qualities is rare these days. To know someone who has all of them is amazing and a true blessing. [Excerpt from Tomorrow Left Us Yesterday-Tayo Olafioye]\\n','','d','','post-utme','2012',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:19'),(138,'The writer informs the reader that people with good qualities are  ','many  ','few  ','fearful  ','famous','','','b','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:20'),(139,'Aaron’s brother who trains as an accountant is  ','George  ','Awere  ','Owusu  ','Kofi','Question is based on Joe de Graft’s Sons and daughters','','d','','post-utme','2012',138,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:20'),(140,'Which of the following is true of the Awere?  ','He is the fiancé of Maanan  ','He is a chartered accountant   ','He wins a scholarship to Goldsmith College  ','He wants to study dance and choreography ','Question is based on Joe de Graft’s Sons and daughters','','a','','post-utme','2012',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:21'),(141,'The conflict in the play centres around  ','gender  ','generation  ','religion  ','ethnicity ','Question is based on Joe de Graft’s Sons and daughters','','b','','post-utme','2012',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:22'),(142,' The text of Shakespeare’s Romeo and Juliet is sourced in ','1623 second Folio  ','1590 rehearsal guide  ','1599 Quarto  ','1616 manuscript ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','a','','post-utme','2012',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:23'),(143,'“There’s no trust No faith, no honesty in men, all perjured, All forsworn, all naught, all dissembles” The speaker of the above excerpt is ','Nurse  ','Juliet  ','Balthasaar  ','Capulet ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','b','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:24'),(144,'Another Suitor of Juliet in the play is  ','Mercutio  ','Gregory  ','Duke  ','Paris','Question is drawn from William Shakespeare’s ROMEO and JULIET','','d','','post-utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:25'),(145,'In the novel, the Ministry that is responsible for news, entertainment and fine arts in the Ministry of  ','Peace  ','Love  ','Plenty  ','Truth','Question is based on George Orwell’s Nineteen Eight Four','','d','','post-utme','2012',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:26'),(146,'The Ministry of Plenty in the Novel is responsible for  ','War  ','economic affairs  ','Population  ','Agriculture ','Question is based on George Orwell’s Nineteen Eight Four','','b','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:27'),(147,'The national day in The Old Man and the Medal is  ','1st of October  ','27th of May  ','12th June  ','14th July','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','d','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:28'),(148,'In Joys of Motherhood, Dr Meers is  ','Nnaife’s master  ','Nnuego’s uncle  ','The District Officer  ','An ombudsman','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','a','','post-utme','2012',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:29'),(149,'“ I don’t see how any mother who cares for the modesty of her daughter can coolly sit down there and defend such waywardness”. “way wardness” in the except above refers to  ','sexual immorality  ','painting  ','dancing  ','disobedience ','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:29'),(150,'Aaron’s painting is purchased by an American collector for the sum of ','250 dollars  ','220 pounds ','260 cedis  ','280 francs ','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:30'),(151,'James Ofosu is pleased with George because he studies ','Law  ','Accountancy ','Engineering   ','Medicine ','Question is  based  on Joe de Graft’s Sons and Daughters.','','d','','post-utme','2013',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:31'),(152,'Joe de Graft’s Sons and daughters is an example of ','domestic comedy ','dark comedy ','restoration comedy ','comedy of error','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:32'),(153,'The central conflict in the play is about  ','Lawyer Bonu’s attempt to seduce Maanan  ','career choice for James Ofosu’s children  ','Hannah’s lack of respect for James  ','Fosuwa’s bid to force Lawyer Bonu on Maanan','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:33'),(154,'David Rubadiri in “An African Thunderstorm” paints a graphic picture of the Thunderstorm through  the use of ',' simile and personification  ',' Irony and imagery',' hyperbole and rhyme ','innuendo and satire ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:34'),(155,'In Andrew Marvell’s “To his Coy mistress”, the poet adopts a consistent rhyming scheme of ','sestet    ','Couplet ',' tercet  ','free verse','Question is based on African and Non-African Poetry  ','','b','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:35'),(156,'Mazisi Kunene is an African poet from  ','Ghana ','Nigeria  ','Malawi  ','South Africa','Question is based on African and Non-African Poetry  ','','d','','post-utme','2013',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:36'),(157,'In T.S. Eliot’s “The Journey of the Magi”, the journey can be described as  ','delightful   ','unnecessary ','allegorical  ','symbolic ','Question is based on African and Non-African Poetry  ','','c','','post-utme','2013',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:37'),(158,'The dominant figurative device  in Kobena Acquah’s “In the Navel of the Soul” is','metaphor   ','assonance  ','paradox   ','euphemism ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:38'),(159,'‘fellow wayfarer…what good news do you bring me?\\\" The statement above is addressed by Meka to','the Commandant’s messenger ','a passing dog   ','a dove ','Engamba ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','post-utme','2013',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:39'),(160,'Gullet is so named by the natives because of his  ','razor-sharp wit  ','long neck ','closeness to the people ','hostility ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','b','','post-utme','2013',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:40'),(161,'The medal in the novel is a symbol of  ','ungodliness   ','victory   ','admiration ','deceit ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','d','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:41'),(162,'In the Joys of Motherhood, the joy of a mother is predicated on having ','husband    ','sons ','daughters   ','wealth ','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','b','','post-utme','2013',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:42'),(163,'The protagonist of the novel is  ','Nwokocha Agbadi ','Nnaife  ','Nwakusor ','Nnu Ego.','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','d','','post-utme','2013',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:43'),(164,'From the conclusion of the novel, the author implies that ','rebellion is fruitless ','opposition pays ','two and two make four ','knowledge gives freedom.','Question is based on George Orwell’s Nineteen Eighty Four','','a','','post-utme','2013',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:44'),(165,'“It was an enormous  pyramidal structure of glittering white concret, soaring up, terrace after terrace, 300 metres into the air”.','Being described in the except above is  ','The party secretariat','O’ Brien’s  residence  ','The ministry of truth ','The Ministry of Plenty ','','c','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:45'),(166,'In the novel, Oceania is at war with  ','Romania   ','Catalonia    ','Eastasia ','Rhodeia','','','c','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:45'),(167,'“Minipax” in the true sense means ','ministry of Truth ','Ministry of Love  ','Ministry of War  ','Ministry of Plenty ','Question is based on George Orwell’s Nineteen Eighty Four','','d','','post-utme','2013',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:46'),(168,'In the Newspeak language, “duckspeak” is a word that simultaneously  refers to ','love and admiration  ','knowledge and ignorance  ','now and then ','abuse and praise ','Question is based on George Orwell’s Nineteen Eighty Four','','b','','post-utme','2013',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:47'),(169,'Hermeneutics is an art of  ','Calculation  ','exaggeration ','composition  ','interpretation ','Question is based on General literary principles.','','d','','post-utme','2013',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:48'),(170,'A poem written in unrhymed five stress lines is called  ','ballad  ','Blank verse ','sonnet      ','Ode','Question is based on General literary principles.','','b','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:49'),(171,'The type of sonnet that has an octave and a sestet has its origin in  ','England  ','Spain ','Portugal   ','Italy','Question is based on General literary principles.','','d','','post-utme','2013',143,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:50'),(172,'The tone of the excerpt above is  ','jubilant  ','condemnatory ','adulatory  ','defiant ','“We own this land \\n And the swamps\\n The palms\\n And the mangroves;\\n We ‘ll die defending them”\\n Tony Afejuku “Land Song”  \\n','','d','','post-utme','2013',112,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:51'),(173,'The figurative devices in the excerpt above are  ','rhyme and metaphor  ','alliteration and assonance  ','repetition and simile  ','rhyme and onomatopoeia ','“Her voice is a shell borne by the waves to crack the egg my soul sorely craves”\\nSegun Adekoya  “Love Blues” \\n','','a','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:52'),(174,'A speech in a play in which a character speaks his or her thoughts alone is','monologue','an aside','a soliloquy','an epilogue','','','c','','wassce','2015',98,'Admin','2016-12-12 05:41:49','2020-07-14 14:53:53'),(175,'In Literature, repetition is used essentially for','rhyme','suspense','allusion','emphasis','','','d','','wassce','2015',116,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:14'),(176,'The pattern of poem without reference to its content is referred to as the','limerick','metre','free verse','form','','','c','','wassce','2015',111,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:15'),(177,'The performers in a play constitute the','chorus','characters','audience','cast','','','b','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:16'),(178,'The stanza is an example of','appellation','apostrophe','euphemism','elegy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',125,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:17'),(179,'Pan is used here as','an allusion','symbol','irony','metonymy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','a','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:18'),(180,'The rhyme scheme of the stanza is','abcabcc','ababcdd','babaccc','bcbccaa','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',110,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:19'),(181,'A metrical foot in which a stressed syllable is followed by an unstressed syllable is','iambic','spondaic','trochaic','dactylic','','','c','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:25'),(182,'________ is the location of the action of the plot','Setting','Narrative technique','Point of view','Characterization','','','a','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:26'),(183,'A ballad is essentially a ____________ poem','descriptive','dramatic','pastoral','narrative','','','d','','wassce','2015',117,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:26'),(184,'The first four lines of the Shakespearean sonnet rhyme','abcd','abba','abab','cdcd','','','c','','wassce','2015',113,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:27'),(185,'A story in which characters or actions represent abstract ideas or moral qualities is','an epic','a legend','an allegory','a satire','','','c','','wassce','2015',99,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:28'),(186,'The use of imagery in prose or verse','appeals to the senses','develop the plot','create confusion','obscures meaning','','','a','','wassce','2015',104,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:29'),(187,'The lines illustrate','soliloquy','parallelism','dialogue','contrast','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','b','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:30'),(188,'‘heads’ in the second line is an example of','synecdoche','inversion','epithet','conceit','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','a','','wassce','2015',113,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:31'),(189,'A character that develops in the course of  a novel or play is described as','flat','antagonist','round','protagonist','','','c','','wassce','2015',106,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:32'),(190,'A dirge is a poem sung','to send a child to sleep','to make workers happy','at a birthday party','at a funeral','','','d','','wassce','2015',118,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:33'),(191,'In drama, the ___________ creates humour','hero','clown','villain','chorus','','','b','','wassce','2015',111,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:34'),(192,'<em>Let me not love thee if l love thee not</em> illustrates','metaphor','proverb','paradox','meiosis','','','c','','wassce','2015',110,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:35'),(193,'__________ is a literary device used to express something unpleasant in a more acceptable manner','Epilogue','Epigram','Euphemism','Eulogy','','','c','','wassce','2015',126,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:36'),(194,'The writer’s attitude to the couple is one of','resignation','indifference','patronage','praise','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','a','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:37'),(195,'The dominant literary device used in the passage is','litotes','personification','simile','paradox','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',106,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:38'),(196,'The rhetorical question that ends the passage stresses the','wickedness of thieves','poverty of the couple','security of the hut','filthiness of the surroundings','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',106,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:38'),(197,'The expression ‘such a rude room of such a poor pair’ illustrates','onomatopoeia','pun','rhyme','alliteration','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',99,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:39'),(198,'The setting is','dawn','sunset','midday','night','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',113,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:40'),(199,'The rhyme scheme is','aabbccddeeff','ababababaabb','abcaabbcabab','abbaabcaabab','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',101,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:41'),(200,'The theme of the poem is','the love of mother','invoking the spirit of womanhood','admiration for women’s hard work','the suffering of women','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',101,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:42'),(201,'The literary device used in line 7 is','conceit','personification','hyperbole','pathos','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:43'),(202,'The poet’s tone is one of','sadness','joy','condemnation','sarcasm','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',107,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:44'),(203,'“To bring forth sons and daughters brave” illustrates','paradox','zeugma','inversion','epigram','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','c','','wassce','2015',113,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:45'),(204,'The speaker is','Gonzalo','Antonio','Prospero','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:46'),(205,'The addressee is','Ariel','Ferdinand','Caliban','Miranda','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',87,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:47'),(206,'The “impostor” is','Sebastian','Antonio','Ferdinand','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',119,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:48'),(207,'The “advocate” and the “impostor” are','conspirators','enemies','suspicious of each other','attracted to each other','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',100,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:49'),(208,'The speaker’s utterance betrays his','anger','pretense','hatred','sorrow','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','b','','wassce','2015',107,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:56'),(209,'The speaker is','Gonzalo','Antonio','Sebastian','Alonso','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',131,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:58'),(210,'“these words” refer to','the shipwreck','the son’s disappearance','the daughter’s wedding','Prospero’s magic','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','b','','wassce','2015',102,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:03'),(211,'Where did the wedding take place?','Algiers','Milan','Tunis','Naples','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','c','','wassce','2015',124,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:06'),(212,'The setting is','outside Prospero’s cell','on a ship','in front of Prospero’s cell','another part of the island','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',91,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:08'),(213,'“.... in my rate” means','I’m very certain','so far as I can see','there’s no doubt','as it appears','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',118,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:10'),(214,'Ariel has ‘come’ because','he has been invited by Prospero','he wants to make a request','he desires a meeting','flying is no problem to him','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:14'),(215,'Prospero has actually','raised a storm at sea','punished Miranda','dismissed Fedinand','commanded Ariel to disappear','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',117,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:17'),(216,'Before Ariel’s entry','Ferdinand has brought in some wood','Prospero has put Miranda to sleep','Caliban had been swearing at Prospero','Trinculo had discovered Caliban’s cloak','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',115,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:20'),(217,'‘Ariel and all his quality’ mean Ariel and','all at his command','the quality of a spirit','his band of spirits','an ability to cause mischief','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','d','','wassce','2015',123,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:23'),(218,'Soon after, Ariel','files off to do his duty','recounts the confusion on board the ship','kneels down to worship Prospero','calls Ceres and another spirit','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',117,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:25'),(219,'X and Y are','Antonio and Alonso','Sebastian and Alonso','Antonio and Gonzalo','Sebastian and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','a','','wassce','2015',116,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:28'),(220,'“We two” are','Antonio and Adrian','Sebastian and Adrian','Sebastian and Francisco','Antonio and Sebastian','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',148,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:30'),(221,'The situation in the extract is highly','satirical','prophetic','ironical','comical','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','c','','wassce','2015',113,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:34'),(222,'What has happened to all the other characters in the scene?','They have been made deaf and dumb','Ariel has put them all to sleep','They have been sent away','Prospero has put them to sleep','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','b','','wassce','2015',116,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:37'),(223,'The “two” later plot to','kill all the other characters','escape from the island','kill Prospero and Miranda','kill Alonso and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',123,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:41'),(224,'‘I simply don’t understand what the matter with everybody is today. Everybody let me down, and ...’ The speaker above is referring to','Fosuwa and Maidservant','Hannah and George','Aaron and Maanan','Lawyer B and Mrs B','Based on J.C. De Graft’s  \tSons and Daughter. ','','b','','utme','2010',155,'Admin','2016-12-12 07:52:46','2020-07-14 14:55:45'),(225,'Maanan expresses dislike for Lawyer B because of','his condemnation of  her choice career','his recent advances towards her','the betrayal of her father’s trust','the betrayal of his wife’s trust','Based on J.C. De Graft’s  \tSons and Daughter. ','','c','','utme','2010',147,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:47'),(226,'The traditional order in the play is represented by','Mrs. B','Hannah','Maanan','Aunt','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',147,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:49'),(227,'Where does the play take place?','On the street','In George’s place','In Aunt’s house','In Ofosu’s place','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',154,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:50'),(228,'‘O’ deadly sin! O rude unthankfulness! Thy fault our law calls death, but the kind Prince, Taking thy \t\tpart, hath rushed aside the law and turned that black word.....’ Deadly sin refers to the','suicide of Juliet','suicide of  Romeo','murder of  Paris','murder of  Tybalt','Based on William Shakespeare’s  \tRomeo and Juliet.','','d','','utme','2010',139,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:53'),(229,'The play is mostly written in','blank verse','free verse','metres','foot','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',121,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:56'),(230,'‘O” serpent heart, hid with a flowering face!’ The statement refers to','Juliet','Romeo','Tybalt','Benvolio','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',148,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:09'),(231,'The spatial setting of the play is','Athens','Verona','Padua','Venice','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',142,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:13'),(232,'Romeo is banished to Mantua because he','kills Tybalt in a street duel','marries Juliet without parental consent','attends Capulet’s party uninvited','attempts to kill Paris his rival','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',178,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:19'),(233,'In the novel, the society puts high value on','egalitarianism','male ascendancy','procreation','gender equity','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',146,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:22'),(234,'The medicine man links the lump discovered on the head of Nnu Ego at birth, to the','possession of physical admirable qualities that makes her an epitome of perfection','wound inflicted on the slave woman buried with Agbadi’s wife','coming back of the Agunwa to the society to live again','ill-luck and tragic events attributed to a predestined fate.','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',151,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:25'),(235,'The constant companions of  Nnaife family are','togetherness and happiness','poverty and hunger','sickness and joblessness','disagreement and humiliation','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',154,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:29'),(236,'The disagreement between Mvondo and Nticentres on the latter’s claim to have','Assisted Meka in getting the medal','eaten the entire entrails of a sheep','eaten more than his share of the food','been in a Whiteman’s office','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','a','','utme','2010',123,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:35'),(237,'In the novel, the colonialists treat the Africans with','kids gloves','disdain','indifference','honour','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','b','','utme','2010',135,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:38'),(238,'The Ministry of Peace is concerned with making','instruments','weapons','wars','reconciliation','Based on George Orwell’s  \tNineteen Eighty-Four.','','d','','utme','2010',142,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:40'),(239,'The subject matter of the novel is','Totalitarian dictatorship','exploitation and cruelty','retributive justice','class segregation','Based on George Orwell’s  \tNineteen Eighty-Four.','','a','','utme','2010',145,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:42'),(240,'How did Winston start his rebellion against the state?','By engaging in anti-party activities','By keeping a private diary','When he started a secret affair','When he spied on the party','Based on George Orwell’s  \tNineteen Eighty-Four.','','b','','utme','2010',145,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:45'),(241,'The party seeks power for','the nation','its own sake','its members','peoples’ sake','','','b','','utme','2010',146,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:47'),(242,'A play which mainly aims at provoking excessive laughter is \tcalled','a tragi-comedy','comedy','a farce','satire','','','c','','utme','2010',135,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:49'),(243,'Both comedy and tragedy have','happy ending','climax','tragic hero','stanza','','','b','','utme','2010',153,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:51'),(244,'A formal dignified speech or writing praising a person or a thing for past or present deeds is','premiere','eulogy','anthology','lampoon','','','b','','utme','2010',155,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:56'),(245,'The narrative style in which the hero tells his own story directly is the','objective','subjective','first-person','third-person','','','c','','utme','2010',148,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:58'),(246,'The physical, historical or cultural background of a literary work is referred to as','episode','plot','time','setting','','','d','','utme','2010',148,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:59'),(247,'A plot structure that defies chronology can be described as','open-ended','circular','episodic','organic','','','c','','utme','2010',157,'Admin','2016-12-12 07:52:47','2020-07-14 14:57:00'),(248,'Pun as a literary device deals with','placing two opposite phrase','placing words side by side','playing on words','arrangement of words','','','c','','utme','2010',139,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:03'),(249,'In a narrative poem, the poet attempts to','summarize a story','describe a place','preach a sermon','tell a story','','','d','','utme','2010',154,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:04'),(250,'The account of experiences of an individual during the course \tof a journey is known as','a travelogue','an autobiography','a catalogue','a memoir','','','a','','utme','2010',141,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:09'),(251,'Satirical writing employs','epigram','synecdoche','irony','onomatopoeia','','','c','','utme','2010',149,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:10'),(252,'The person being addressed above is a','soldier','student','domestic servant','lawyer','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','c','','utme','2010',131,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:13'),(253,'From the tone of the speech above, the speaker is obviously','enraged','lackadaisical','elated','happy','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','a','','utme','2010',151,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:15'),(254,'The mood conveyed in the excerpt above is one of','sadness','frustration','sympathy','dilemma','‘That year the harvest was sad, like a funeral, and many farmers wept as they dug up the miserable yams. One man tied his cloth to a tree branch and hanged himself.’ (Chinua Achebe: Things Fall Apart)','','a','','utme','2010',152,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:18'),(255,'The rhyme scheme in the excerpt above is','bbaa','aabb','abab','abba','That age is best which is the first,<br> \tWhen youth and blood are warmer, <br> \tBut being spent, the worse, and worst <br> \tTime still succeed the former. ','','c','','utme','2010',152,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:20'),(256,'The subject matter of the extract above is','Storm','sea waves','house movement','earthquake','But the towering earth was tired sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of a million years was lost\t','','d','','utme','2010',130,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:23'),(257,'From the poem above, shadow means','famine','bleak future','period of sufferings','abstract ideas','And your laughter like a flame<br>\t \tPiercing the shadows<br> \tHas revealed Africa to me beyond<br> \tThe snow of yesterday<br>','','c','','utme','2010',163,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:26'),(258,'The speaker in the excerpt above is','hopeless','uncertain','afraid','confident','Don’t panic. Be calm. If you are somehow upset.... try to regain your exposure.','','c','','utme','2010',151,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:30'),(259,'The poem can be described as','a lyric','an epic','a sonnet','an elegy','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',163,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:32'),(260,'The theme of the poem is','futility of  life','distortion of  life','creation of  life','vanity of  life','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',125,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:35'),(261,'The rhyme scheme of the stanza above is','aabb','abab','bbaa','abba','A cursing rogue with a merry farce,<br>  \tA bundle of rags upon a crutch, ,<br> \tStumbled upon that windy place,<br> \tCalled cruachan, and it was as much.\t','','b','','utme','2010',139,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:38'),(262,'In the play, Fasuwa represents the','new culture','patriarchy','old order','African civilization.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',137,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:42'),(263,'The play opens with a conversation between Aaron and Awere about','Aaron’s choice of course','Maanan’s encounter with the lawyer','George and Kofi','Hannah and George.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',118,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:44'),(264,'‘I still think you can do something about it... persuade him; make him see how frustrating the whole business is bound to be for you.’  <em>The whole business in the excerpt above refers to </em>','marriage proposal','career choice','business contract','political transition.','Based on J.C. De Graft’s Sons and  \tDaughters.','','b','','utme','2008',124,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:47'),(265,'The central conflict in the play is','religious','romantic','generational','communal.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:49'),(266,'The change in fortune is achieved in the play when','James agrees that Aaron and Maanan should study what they want','Lawyer B harasses Maanan in his office','Haanah, James’ wife convinces him','Aaron and Maanan agree to read the courses James chooses for them.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',149,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:53'),(267,'‘l will be brief, for my short date of breath Is not so long as is a tedious tale.’ The statement above is in reference to the speaker’s','retirement','imminent death','state of health','short-tempered nature.','Based on William Shakespeare’s Romeo and Juliet.','','b','','utme','2008',140,'Admin','2016-12-12 10:46:53','2020-07-14 14:57:55'),(268,'Romeo’s death becomes inevitable because','Friar Lawrence’s letter is not delivered','Juliet is married to Paris','Romeo kills Tybalt in a duel','Juliet has committed suicide.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',140,'Admin','2016-12-12 10:46:53','2020-07-14 14:57:56'),(269,'The multiple deaths in the play serve as a punishment for','imposing life partner on Children','treating others with hatred','disobeying one’s own parents','shedding kinsmen’s blood.','Based on William Shakespeare’s Romeo and Juliet.','','a','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:57:59'),(270,'The major reason for Juliet’s grief is','the death of her cousin','her reluctant marriage to the County','the banishment of her lover','her imminent death.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:01'),(271,'The chorus in the prologue of the play is essentially meant to','foreshadow the play','highlight the characters','estimate the actions','introduce the play.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',129,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:04'),(272,'In the novel, Big Brother metaphorizes a','totalitarian authority','benevolent leader','revolutionary leader.','party brotherhood.','Based on George Orwell’s Nineteen  \tEighty-Four.','','a','','utme','2008',111,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:06'),(273,'In the novel, Orwell attempts to','satirize the artificiality of a machine ‘controlled society','eulogize the beauty of the socialist system','condemn the disgusting hypocrisy of all communist    \t systems','laud the boundless possibilities of the human intellect.','Based on George Orwell’s Nineteen  \tEighty-Four.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:08'),(274,'Winston Smith begins his rebellion against the power of the state by','purchasing arms','keeping a private diary','opposing the law','educating the youth.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',105,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:10'),(275,'The Ministry of Truth is concerned with','news, entertainment, education and fine arts','propaganda, war, publishing and enlightenment','investigation, propaganda and fine arts','economic affairs, education and propaganda.','Based on George Orwell’s Nineteen  \tEighty-Four.','','d','','utme','2008',142,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:11'),(276,'The events following the ceremony confirm Meka’s','disillusion with the whites','satisfaction with the medal','contribution to the colonialists','admiration for the church.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','a','','utme','2008',136,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:14'),(277,'“ ‘ By my mother!’ said Engamba. The night rat doesn’t tell what happened to him in the dark! Men are born and die...”  In the statement above, The night rat doesn’t tell what happened to him in the dark! refers to','the Whiteman’s treatment of Meka','Meka’s treatment of the medal in the whitewashed circle','people’s unwillingness to talk about how Whiteman treat them','people’s freedom of expression.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',168,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:16'),(278,'In the novel, the expression  <em>fobreak the leg of an antelope</em> means','hunting','marriage','fighting','honeymoon.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:19'),(279,'Ona has to leave her father’s house because','of her love for Agbadi','that is the tradition','her father is dead','of the safety of her child.','Based on Buchi Emecheta’s The Joys of Motherhood.','','a','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:22'),(280,'Nnaife’s conscription into the army is portrayed as part of','family conflict','British oppression','family tradition','societal intrigue.','Based on Buchi Emecheta’s The Joys of Motherhood.','','d','','utme','2008',120,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:30'),(281,'The attitude of Nnu Ego when she was told that her Chi would not give her a child is one of','indifference','despair','apathy','hope.','Based on Buchi Emecheta’s The Joys of Motherhood.','','b','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:31'),(282,'The subject matter of Adeoti’s Naked Soles is','soul and mind','hunger and strife','suffering and despair','hatred and bitterness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:33'),(283,'Rubadiri’s <em>An African Thunderstorm</em> appeals to the readers’ sense of','sight and taste','feeling and sight','smell, taste and hearing','sight, smell and hearing.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','b','','utme','2008',127,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:37'),(284,'‘The experts, of course Disagree. The urine test they ordered Said, Negative.’ The lines above from Acqah’s “In the Navel of the Soul” depict','contradiction','inevitability','progress','awareness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','a','','utme','2008',121,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:40'),(285,'In Kunene’s ‘A Heritage of Liberation,’ freedom is to be achieved through the efforts of','the old generation','new generation','present generation','successive generations.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',134,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:42'),(286,'Launko’s ‘End of the’ War suggests that war brings about','ultimate solution to all problems','partial solution to problems','multifaceted problems','only temporary relief.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',131,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:44'),(287,'The persona in the poem <em>Give Me The Minstrel’s Seat</em> discourages','togetherness','hatred','isolation','poverty.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:46'),(288,'Marvel’s To ‘His Coy Mistress’ is written mainly in','alternate rhymes','blank verse','heroic couplets','middle rhymes.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',127,'Admin','2016-12-12 10:46:53','2020-07-15 00:46:37'),(289,'The attitude of the poet-persona to bats, in Lawrence’s Baf is one of','satisfaction','reverence','hatred','repulsion.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',149,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:51'),(290,'The language used, in Eliot’s ‘The Journey of the’ Magi is generally','difficult','complex','simple','complicated.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',150,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:53'),(291,'In Cope’s <em>Sonnet VII</em>, poetry is','a popular act','a boring act','an idle hobby','a useless undertaking.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:57'),(292,'An interlude is a brief','presentation in the interval of a dramatic performance','play before the main dramatic performance','presentation after the main dramatic performance','dialogue between two persons.','Based on General Literary Principles.','','a','','utme','2008',153,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:59'),(293,'An epic is a heroic story which includes','ballad','lyric','myth','dialogue.','Based on General Literary Principles.','','c','','utme','2008',130,'Admin','2016-12-12 10:46:53','2020-07-14 14:59:01'),(294,'Farce can be described as a dramatic piece marked by','movement from serious to the light-hearted mood','comic and exaggerated actions','actions devoid of meaning','gloomy actions with momentary reliefs.','Based on General Literary Principles.','','b','','utme','2008',121,'Admin','2016-12-12 10:46:53','2020-07-14 14:59:03'),(295,'A long story narrating a series of complicated events is called a','saga .','discourse','monologue','harangue.','Based on General Literary Principles.','','d','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:59:07'),(296,'Oxymoron is the use of two contrasting words that are','placed far apart','different in meaning','placed side by side','similar in meaning.','Based on General Literary Principles.','','c','','utme','2008',121,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:11'),(297,'A line or a group of lines repeated in the course of a poem is called','chorus','refrain','repetition','prologue.','Based on General Literary Principles.','','b','','utme','2008',106,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:14'),(298,'Limerick is a light verse which consists of five lines that are','anapestic','trochaic','spondaic','dactylic.','Based on General Literary Principles.','','d','','utme','2008',119,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:15'),(299,'A short narrative or lyrical poem intended to be sung is a','leich','lay','lauda','letrilla.','Based on General Literary Principles.','','a','','utme','2008',133,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:17'),(300,'A figurative device in which a statement is made and then withdrawn is referred to as','metanoia','metaphysical','metalanguage','metalepsis.','Based on General Literary Principles.','','d','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:19'),(301,'A literary work which imitates another in a distorted form is called','exodium','isocohen','metonymy','burlesque.','Based on General Literary Principles.','','d','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:21'),(302,'‘You do not have to be brutal to be a soldier, or rather you are brutal not because you are a soldier, but because there is a sadist, a rapist, a fascist and a murderer in you who is waiting for war and army uniforms to give them expression.’ ( Festus lyayi: Heroes ) The speaker here contends that','soldiers are generally wicked','human nature has to do with a profession','soldiers are characteristically gentle','the latent brutality in man finds expression in war.','based on Literary Appreciation.','','b','','utme','2008',158,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:23'),(303,'‘But the towering earth was tired of sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of million years was lost.’ The subject matter of the passage is','earthquake','Demolition','flood','storm.','based on Literary Appreciation.','','a','','utme','2008',124,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:25'),(304,'The image depicted is one of','destruction','dejection','happiness','admiration.','based on Literary Appreciation.','','a','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:28'),(305,'The tone of the poem above is','satiric','affectionate','indifferent','sympathetic.','based on Literary Appreciation.','','b','','utme','2008',135,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:29'),(306,'Life, though a vanity Yet, not purposeful In drawling<br> resignation Life’s spice is in strive<br> From the extract above, the poet suggests that','life is full of care','there can’t be life without strive','life is worthwhile without care','strive makes life worth living.','based on Literary Appreciation.','','b','','utme','2008',118,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:33'),(307,'The subject of the poem above is','a prostitute','the lying father','the son','the orphan.','based on Literary Appreciation.','','c','','utme','2008',114,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:36'),(308,'The dominant rhetorical device in the excerpt above is','rhyme','alliteration','repetition','onomatopoeia.','based on Literary Appreciation.','','b','','utme','2008',150,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:38'),(309,'The expression “The child is the father of the man” in the poem above is an example of','paradox','metaphor','simile','ellipsis','based on Literary Appreciation.','','a','','utme','2008',161,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:41'),(310,'The technique employed in narrating the excerpt above is','flashback','stream of consciousness','foreshadowing','play-within-the-play.','based on Literary Appreciation.','','b','','utme','2008',141,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:42'),(311,'The poet’s tone above can be described as','lamentative','satiric','imploring','adoring.','based on Literary Appreciation.','','a','','utme','2008',142,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:43'),(312,'In the play, the character of Lawyer B is represented through the use of','flashback','dialogue','play-within-the-play','irony','','','d','','utme','2009',123,'Admin','2016-12-12 17:55:00','2020-07-14 14:59:44'),(313,'James Ofosu’s desire is to see Maanan trained as','a choreographer','an attorney','an accountant','a surgeon','','','b','','utme','2009',138,'Admin','2016-12-12 17:55:00','2020-07-14 14:59:45'),(314,'The plot of the play is,','linear','cyclical','complicated','episodic','','','d','','utme','2009',139,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:46'),(315,'What causes the strained relationship between James and Lawyer B?','Betrayal of trust','Standard of education','Working experience','Family differences','','','a','','utme','2009',155,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:47'),(316,'‘Now look what we have: a permanent bloom of ugly paper flowers! The device used by Aaron in the excerpt above is','suspense','rhetorical question','oxymoron','allegory','','','c','','utme','2009',138,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:47'),(317,'When Friar Lawrence asks if the bride is ready, he wants to know if','Juliet is prepared','Rosaline is prepared','the corpse is ready','the bride is dressed','based on William Shake¬speare’s  \tRomeo and Juliet.','','c','','utme','2009',126,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:49'),(318,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nWhat makes Juliet’s night so tedious is the','murder of Tybalt by Romeo','arranged marriage between her and Paris','Eagerness’ to be married to Romeo','unconsummated marriage with Romeo','based on William Shake¬speare’s  \tRomeo and Juliet.','','d','','utme','2009',119,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:49'),(319,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nThe literary device used in the excerpt is','euphemism','simile','sarcasm','bathos','based on William Shake¬speare’s  \tRomeo and Juliet.','','b','','utme','2009',132,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:50'),(320,'The atmosphere of tragedy in the play is created through the use of','dreams and foreboding','fights and quarrels','wars and hatred','ideas and dramatization','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',130,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:51'),(321,'Shakespeare depicts love and idealism through the','party at tire Capulets’','lovers’ tomb at the end','brawl between Romeo and Tybalt','balcony scene in the second Act.','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',129,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:52'),(322,'In the novel, the party approves separation of couples only','on condition of infidelity','where there are no children','in situation of irreconcilable differences','on the death of one of the couples','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',152,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:53'),(323,'One of the themes of the novel is','colonialism','repression','senility','destruction','based on George Orwell’s  \tNineteen Eighty-Four','','b','','utme','2009',140,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:54'),(324,'Newspeak, the official language of Oceania, is devised to','meet the ideological needs of Ingsoc','help devoted party men and women','provide a medium of expression for world-view only','assist by cutting the choice of words for party members.','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',138,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:55'),(325,'The main concern of Winston in the novel is to','take power for himself','acquire wealth','overthrow the party','bring social change','based on George Orwell’s  \tNineteen Eighty-Four','','d','','utme','2009',116,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:56'),(326,'“We are hereto die of raget !say die of rage because this time the uncircumcised have gone too far...” The word uncircumcised in the statement above by Nli refers to','Nua and Mvondo','the whites','the people of Doum','the white farmers.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','b','','utme','2009',118,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:57'),(327,'The only two sons of Meka die fighting for','independence','the colonialists','the church','the in people.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',128,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:58'),(328,'In the novel; Africanness is .achieved in both','setting and characterization','narration and style','diction and syntax','pun and style','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',116,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:59'),(329,'What prompts Nnu Ego to run to the effigy of her chi is that ...','she is worried and sick','she is pregnant','the chi asks her to come','milk is dripping from her breasts.','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','d','','utme','2009',138,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:00'),(330,'In the society of Nwokocha Agbadi, a man’s social rating determined by his','oratorical power','physical prowess','gentle men','altruistic actions','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',143,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:01'),(331,'‘look at me jubilant for being given another opportunity to \tlive longer, and see this foolish woman eager to end her own life when her Maker is not yet ready for her...’The opportunity referred to in the extract above is','the misunderstanding between Nnaife and his wife','narrowly escaping being knocked down','the driver’s encounter with Nnu Ego','ominous visit of Agunwa','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',134,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:02'),(332,'Thorn in “Adeoti’sNaked Soles” symbolizes','victory','bleakness','destruction','suffering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',116,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:03'),(333,'‘Pregnant clouds Ride Safely on its back’ Pregnant clouds in Rubadiri’s “An AfricanThunderstorm implies”','uncertainty','calmness','disbelief','fertility','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',137,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:04'),(334,'The phrase the sunset in Kunene’s “A Heritage of Liberation” refers to','critical need','old age','patience','caution','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',144,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:05'),(335,'‘The silence of the battlefield heralds the widow’s anguish’ The widow in the lines above in Launko’s “Endof the War” is in anguish because of the','confirmation of her husband’s death','uncertainty over her husband returning alive','delay in the husband’s return from the battlefield','death of all the soldiers in the battlefield','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',125,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:06'),(336,'The end of “Give Me The Minstrel’s Seat”, seems to suggest that one needs the','support of others','complete command of one’s wives','support of one’s kinsmen','aid of poets','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',132,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:07'),(337,'According to “Give Me The Minstrels Seat”, a woman is','a necessary evil','only fulfilled when married','naturally jealous','a harbinger of good luck','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',127,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:08'),(338,'In Marvel’s “To His Coy Mistress”, the poet-persona tries to','Build up the climax of expectation of women','discuss how a woman labour hard','meet the people’s expectation in a religious adventure','discuss the nature of man and the value of time.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',116,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:09'),(339,'In Lawrence’s Bat, the poet’s attitude to bat is one of','fear','sarcasm','contempt','flattering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',123,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:10'),(340,'The first stariza of Eliot’s “The Journey of the Magi” depict the','hazards of the journey','increment of fortune for the pilgrims','blind acceptance of faith','journey as an influential factor.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',131,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:11'),(341,'In cope’s “Sonnet VII”, poets are presented; as','recluses','travelers','sociologists','searchers','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',140,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:12'),(342,'A poetic devices in which an idea in a line runs into another is called','rhyme scheme','enjambment','end rhyme','pathos','based on General Literary Principles.','','b','','utme','2009',140,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:13'),(343,'The use of sound pattern to suggest meaning in poetry is','rhythm','mimics','lyric','metonymy','based on General Literary Principles.','','a','','utme','2009',141,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:14'),(344,'A conscious imitation of a literary work by another with the aim of ridicule is','mimesis','performance','mockery','parody','based on General Literary Principles.','','d','','utme','2009',132,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:16'),(345,'The use of gestures to communicate in drama is known as','burlesque','soliloquy','mime','melodrama','based on General Literary Principles.','','c','','utme','2009',136,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:17'),(346,'A short and witty remark is','a limerick','a tercel','an epigram','a litotes','based on General Literary Principles.','','c','','utme','2009',127,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:21'),(347,'An expression that signifies a whole through its significant parts is','synesthesia','synecdoche','metonymy','allegory','based on General Literary Principles.','','b','','utme','2009',124,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:22'),(348,'a structural arrangement of units of composition by which one element of equal importance with another is similarly placed is called','repetition','paradox','refrain','parallelism','based on General Literary Principles.','','d','','utme','2009',128,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:23'),(349,'The pride that contributes to the fall of a tragic character in a play is known as','hamartia','catharsis','hubris','epistasis','based on General Literary Principles.','','a','','utme','2009',141,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:24'),(350,'metrical foot of two stressed or long syllables is called','a spondee','a trochee','an anapest','an iamb','based on General Literary Principles.','','a','','utme','2009',138,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:25'),(351,'A group of three lyric stanzas in classical Greek poetry is referred to as','triplet','triolet','trilogy.','triad','based on General Literary Principles.','','b','','utme','2009',133,'Admin','2016-12-12 17:55:03','2020-07-14 02:23:34'),(352,'Biokun:  I did it for her! Let them laugh!<br>\\n\t\t\t\tLet them condemn me. I who have always <br>\t\\n\t\t\t\tderided superstition. I have gone bach to the <br>\\n\t\t\t\tshrine of Olokun. At least if he dies, Oroki <br>\\n\t\t\t\twill know I tried everything. <br>\\n\t\t\t\t(Femi I Qsofisan: No More the Wasted Breed)<br>\\nBiokun’s mood in this passage is one of','desperation','frustration','anger','anxiety','based on Literary Appreciation','','b','','utme','2009',144,'Admin','2016-12-12 17:55:03','2020-07-14 02:22:26'),(353,'\t‘My song is the root<br>\\n\ttouching other roots <br>\\n\tin a covenant below the crust..’<br>\\n\t(Niyi  Osundare: Waiting Laughters)<br>\\n\\nThe imagery used in the second line of the extract above is','olfactory','visual','tactile','auditory','based on Literary Appreciation','','c','','utme','2009',121,'Admin','2016-12-12 17:55:03','2020-07-14 02:11:15'),(354,'‘The huge sacrifice that <br>\\n\twards off death <br>\\n\tThe big offering that <br>\\n\tprevents diseases....’ <br>\\n\t( Temi Osofison: Morountodun ) <br>\\nThe poem above can best be described as','epic','heroic','praise','quatrain','based on Literary Appreciation','','d','','utme','2009',141,'Admin','2016-12-12 17:55:03','2020-07-14 02:18:48'),(355,'Why blame her who denies love for the asking <br><br>\\n\tAnd not the Birds and Moths and Beetles <br>\\n\tThat after deep draughts from rich nectar wells <br>\\n\tFlee the drained petals to virgin flowers. <br>\\nThe lines above are an indictment of','adultery','gluttony','flirtation','infertility','based on Literary Appreciation','','b','','utme','2009',113,'Admin','2016-12-12 17:55:03','2020-07-14 02:29:24'),(356,'\tOh, the market is set like the hub of a wheel <br>\\n\tAnd it pulfs \tlike a magnet strong <br>\\n\tIt is easy to tell <br>\\n\tHow it casts its spell <br>\\n\tAnd draws all the crowds along. <br><br>\\nThe sound device used in the extract above is','rhyme','alliteration','emphasis','assonance','based on Literary Appreciation','','a','','utme','2009',138,'Admin','2016-12-12 17:55:03','2020-07-14 02:29:24'),(357,'A reference beyond the immediate purview of what is being presented is known as','allusion','diversion','inversion','imagery','based on Literary Appreciation','','a','','utme','2009',140,'Admin','2016-12-12 17:55:03','2020-07-14 10:23:20'),(358,'‘The how is her barber’ The line is an example','metaphor','hyperbole','personification','litotes','based on Literary Appreciation','','a','','utme','2009',136,'Admin','2016-12-12 17:55:04','2020-07-14 02:15:34'),(359,'‘From the sky suspended <br>\\n\tthe strings of tattered pants <br>\\n\tmarched on trembling feet <br>\\n\tunder stone heavy-kits <br>\\n\tmarched, on their breast <br>\\n\tscared, monogram of skulls and bones.’ <br>\\n\t( Ossie Enejwe: Mass for the Dead ) <br><br>\\n“The subject matter of the extract above is','wastage','war','love','hatred','based on Literary Appreciation','','b','','utme','2009',128,'Admin','2016-12-12 17:55:04','2020-07-14 02:23:33'),(360,'‘Tonderai was assisted by the villages in placing his truck box into the back for the car and he got into the passenger side of the truck. Initially, he was a bit nervous and clearly uncomfortable, his young mind was asking how someone whom, he had almost caused a serious accident could be his benefactor.’ ( Daniel T. Manyika: Two worlds Apart )\\n\\n<br><br>The narrative point of view used in the extract above can best be described as','omniscient','subjective','panoramic','scenic','based on Literary Appreciation','','a','','utme','2009',120,'Admin','2016-12-12 17:55:04','2020-07-14 02:29:24'),(361,'‘Me to the Orangery<br> \\n\tSolitude invites, <br>\\n\ta wagtail, to tell the<br>  \t\t\t\\n\ttangled-wood-tale.’ <br>\\n\t( Christopher Okigbo: Heavengate ) <br><br>\\nThe complexity of the poem can be ascribed to the poet’s use of','archaic diction','structural inversion','compound words','extended met','based on Literary Appreciation','','b','','utme','2009',168,'Admin','2016-12-12 17:55:04','2020-07-14 02:21:17');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `entertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `entertainment` VALUES (1,'What year was ?Africa Queen? music track released by Tu-face Idibia?','2001','2002','2003','2004','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track ?African Queen? came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D?Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D?Banj  first album released?','2002','2005','2001','2004','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `fashion` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `fashion` VALUES (1,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,' ?Ole ku? dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Nigeria won Miss World','2000','2001','2002','2003','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknowledge` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `section` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'used by zh round 3',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknowledge` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many planets do we have?','10','9','8','6','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' What is the position of the Earth from the Sun?','1','2','3','4','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,' What year was Facebook created?','2001','2002','2003','2004','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'The first university in the world was?','Oxford','Al-Azhear of Cairo','Harvard','MIT','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year did Nigeria became a republic?','1960','1965','1963','1914','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,' What year did Tsunami occur','2000','2004','2005','2006','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' When did World War 1 started','1918','1901','1914','1910','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknwbrag` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknwbrag` VALUES (1,'What year was “Africa Queen” music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track “African Queen” came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo’ hit records','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D’Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D’Banj  first album released?','2002','2005','2001','2004','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'How many planets do we have?','10','9','8','6','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What is the position of the Earth from the Sun?','1','2','3','4','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What year was Facebook created?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'The first university in the world was…','Oxford','Al-Azhear of Cairo','Harvard','MIT','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' What year did Nigeria became a republic?','1960','1965','1963','1914','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' What year did Tsunami occur','2000','2004','2005','2006','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' When did World War 1 started','1918','1901','1914','1910','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(54,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(55,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(56,' ‘Ole ku’ dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(57,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(58,'What year did Nigeria won Miss World','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(59,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(60,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(61,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(62,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(63,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(65,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(66,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(67,'Who was the last successful Manchester United Coach?',' Sir Ali Ferguson.',' Alex Ferguson.',' Sir Alex Ferguson',' Sir Alex Fergson','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(68,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(69,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(70,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(71,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(72,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(74,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(75,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(76,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(77,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(78,'Which Nigeria football club won the Premiership title back –to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(79,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(80,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(81,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(82,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(83,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(84,'How many rings are in the Olympic colours?','6','5','4','3','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(85,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(86,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(87,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(88,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(89,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(90,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(91,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(92,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(93,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(94,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(95,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(96,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(97,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(98,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(99,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(100,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(101,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(102,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(103,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(104,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(105,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(106,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(107,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(108,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(109,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(110,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(111,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(112,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(113,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(114,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(115,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(116,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(117,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(118,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(119,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(120,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(121,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(122,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(123,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(124,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(125,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(126,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(127,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(128,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(129,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(130,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(131,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(132,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(133,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(134,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(135,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(136,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `geography` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=237 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `geography` VALUES (1,'The earth rotates through 150 of longitude once in  ','a minute  ','an hour  ','24 hours  ','a day','','','b','','post-utme','2006',207,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(2,'Aeolian erosion refers to the work of ','Plants ','Wind  ','Ice ','running water','','','b','','post-utme','2006',170,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(3,'The scale of a map is the ratio between the  ','distance over the land and the distance over the water ','distance on the map and the distance on the globe ','vertical and horizontal differences  ','distance on the map and that on the earth’s surface ','','','d','','post-utme','2006',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:28'),(4,'Which of the following scales should show the greatest amount of detail on a map?  ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:29'),(5,'Which of the following statements is not true for lines of latitude?  ','they form parallel circles   ','they range from 00 to 1800 N and S  ','only one line is also a Great Circle ','They form parallel circles','','','b','','post-utme','2006',184,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:31'),(6,'Large in area and high in population, which of the following countries fits this description?','Lesotho  ','Togo ','Nigeria  ','Zaire','','','c','','post-utme','2006',207,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:32'),(7,'One of these is NOT a landform in Africa   ','Scarp ','Inselberg  ','Drumlin','Doline','','','c','','post-utme','2006',201,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:32'),(8,' Which of these does not lie in the principal earthquake region of the world? ','Japan ','Kenya  ','Iran   ','Turkey ','','','b','','post-utme','2006',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:45'),(9,'Which  of   these  soil  groups  is  considered   the  most  productive?   ','Chernozems   ','Latosols  ','Podozols   ','Sierozems','','','a','','post-utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:46'),(10,'One example of inland drainage lake in  Africa is  ','Lake Chad ','Lake Victoria ','Lake Malawi ','Lake Turkana','','','a','','post-utme','2006',169,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:47'),(11,'The African river that crosses the equator twice is  ','Zaire ','Nile ','Mississippi  ','Amazon','','','a','','post-utme','2006',215,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(12,'Some rivers in their delta regions breaks into many branches before entering the sea. These divisions are known as  ',' Creeks ','Distributaries','Tributaries ','Effluents','','','b','','post-utme','2006',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:49'),(13,'Kariba Dam is found in River  ','Zambezi ','Congo  ','Niger  ','Nile','','','a','','post-utme','2006',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:50'),(14,'The major air mass affecting the climate of West Africa in summer is the  ','harmattan wind  ','tropical continental  ','warm equatorial  ','tropical maritime ','','','b','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:51'),(15,'If a map has a scale of 1:50,000 and a cocoa plantation is represented on the map by a rectangle 4cm by 3cm, what is the area of the plantation?  ','3 sq. km  ','30 sq. km  ','12 sq. km  ','20 sq. km','','','a','','post-utme','2006',188,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:52'),(16,'The gap between two ranges within which transportation is usually possible in a mountainous regions is called  ','Valley  ','Col  ','ridge  ','Spur','','','b','','post-utme','2006',160,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:53'),(17,'What are greenhouse gasses?  ','Gases found around green houses in botanical gardens  ','Gases which are able to trap heat on the earth surface  ','Gases which help global circulation of winds and plants it growths  ','Gases which help farmers grow certain crops during the dry seasons','','','b','','post-utme','2006',203,'Admin','0000-00-00 00:00:00','2020-07-15 10:32:08'),(18,'The doldrums refer to  ','land areas bordering the confluence of the blue and white Nile  ','areas intense weather activities around the Mediterranean  ','areas of South Atlantic where cold and warm currents meet  ','area within a few degrees north and south of the equator.','','','d','','post-utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:55'),(19,'Nigeria Sat I is designed by primarily to  ','help GSM provider in achieving a wide national coverage  ','strengthen rapid response by Nigeria’s Armed Forces  ','help in the 2006 Census  ','provide information about various regions of the earth','','','d','','post-utme','2006',184,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:56'),(20,'The major sedimentary minerals found in Nigeria include:  ','tin, columbite and gold ','tin, coal and salt  ','limestone, columbite and diamond  ','limestone, petroleum and coal','','','d','','post-utme','2006',196,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:57'),(21,'The cloud which are white globular masses, forming ripples in the sky is called  ','Cirrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:58'),(22,'Which of the following routes must have least gradient?  ','Motorway ','Rail line  ','Bush path  ','Carnal ','','','b','','post-utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:59'),(23,'The foremost producers of petroleum in the Middle East are:  ','Saudi Arabia, Kuwait, Libya and Iran  ','Saudi Arabia, Iraq, Iran and Kuwait  ','Saudi Arabia, Iran, Venezuela and Oman ','Saudi Arabia, Iraq, Libya and Venezuela','','','b','','post-utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:00'),(24,'Which of the following is not an Anglophone country  ','Ghana  ','Gambia  ','Liberia  ','Senegal','','','d','','post-utme','2007',207,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(25,'The shallow part of the sea which separates the deep from the land is called  ','off shore coastal lowland  ','the on-shore tidal current  ','continental shelf formation  ','coastal coral cliff ','','','c','','post-utme','2007',165,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:02'),(26,'The port that handle the highest volume of cocoa export in Nigeria is  ','Sapele  ','Warri  ','Lagos  ','Port Harcourt','','','c','','post-utme','2007',181,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(27,'One major characteristics of rural settlements is that  ','are heterogeneous  ','are homogenous  ','are large in size  ','have more problems than urban settlements','','','b','','post-utme','2007',220,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:05'),(28,'Industrialization in Nigeria can best be promoted through the development of  ','textile industry  ','leather industry  ','iron and steel industry  ','automobile industry ','','','c','','post-utme','2007',190,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:06'),(29,'Most of the industries located in rural areas are  ','low energy consumers  ','high energy consumers  ','raw materials oriented  ','transport oriented ','','','c','','post-utme','2007',213,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:07'),(30,'The distribution of minerals resources in Nigeria is related to its:  ','relief  ','soil  ','vegetation  ','geology ','','','a','','post-utme','2007',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:08'),(31,'Which of the ocean currents is classified as cool?  ','Benguela  ','Kuro Siwo  ','Gulf Scream  ','Mozambique ','','','a','','post-utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:09'),(32,'The sea area with the highest degree of salinity is the ','Baltic Sea  ','Caspian Sea  ','Dead Sea  ','Mediterranean Sea','','','c','','post-utme','2007',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:10'),(33,'The thermometric scale usually employed to described the absolute temperature of the atmosphere is  ','Centigrade  ','Celsius  ','Kelvin  ','Fahrenheit ','','','c','','post-utme','2007',203,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:11'),(34,'If the temperature at sea level in a particular place is 200C, place 3500m above sea level in the same area will have a temperature of  ','- 2.750C   ','2.250C  ','22750C  ','22.750C','','','a','','post-utme','2007',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:12'),(35,'Which of the following is not a form of precipitation? ','Dew   ','Snow   ','hail ','fog ','','','d','','post-utme','2007',189,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:13'),(36,'Which of the following pressure belts does not experienced descending air?  ','600N  ','600S  ','00 latitude   ','300N','','','a','','post-utme','2007',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:14'),(37,'In the tropics, the most variable climatic element inter-annually is  ','temperature  ','solar radiation   ','pressure  ','prairies ','','','a','','post-utme','2007',196,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:16'),(38,'Soil that are formed by the wind deposition are called ','Laterites  ','loess  ','podsols  ','prairies ','','','b','','post-utme','2007',173,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:17'),(39,'Desert soil are usually deficient in ','fertility  ','light grey colour  ','humus content  ','horizons ','','','c','','post-utme','2007',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:18'),(40,'Podsols and laterites share the following characteristics in common, except  ','infertility  ','high degree of leaching  ','associated with forest vegetation  ','colour ','','','c','','post-utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:19'),(41,'The forest type which is the most rich in tree species is the  ','tropical  ','Deciduous  ','Coniferous  ','Mediterranean ','','','a','','post-utme','2007',172,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:20'),(42,'Linseed oil is associated with  ','flax  ','coconut  ','olives  ','rapeseeds','','','a','','post-utme','2007',190,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(43,'Which of the following is not correct with regards to the solar system?  ','The planets all orbit round the sun  ','The sun is only a source of the energy needed on the planets  ','The earth as well as other planets rotate round the sun  ','all the planets have definite orbits around the sun','','','c','','post-utme','2007',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:22'),(44,'Fossil fuel reserves are found in the Lake Chad basin because  ','The basin lies approximately along he axis on which the rich Bakassi oil fields are found  ','The basin is at the edge of the desert with conditions similar to that of Iraq  ','it is an inland drainage basin with many large rivers emptying into it  ','Its rocks are sedimentary ','','','d','','post-utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:23'),(45,'Which of the following is correct?  ','The Canaries current is cold and washes the coast of NE Africa  ','The Peruvian current is warm and washes the West coast of America  ','The Gulf stream is warm and moves north eastward on the Atlantic  ','The middle east current is warm and washes the coast of Saudi Arabia ','','','c','','post-utme','2007',184,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(46,'Which of the following formulae is the correct one for converting X0 Fahrenheit temperature reading into Centigrade temperature readings (Y0)?  ','Y = (X + 32)5/90C ','Y = (X – 32)5/90C  ','Y =  (X – 32)9/50C  ','Y = (X+32)9/50C','','','c','','post-utme','2007',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:31'),(47,'Oxbow lakes are found in  ','lower courses of some rivers ','wind bow out sites  ','places with history of tectonism ','areas of subsidence ','','','a','','post-utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:32'),(48,'Coombes are associated with  ','honey-bee farms  ','Karst environment  ','rift valley system  ','cases in the desert','','','b','','post-utme','2008',200,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:33'),(49,'The Stevenson’s screen is used to keep  ','barometer   ','thermometers  ','hygrometers  ','evapori meters','','','b','','post-utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:34'),(50,'Global Positioning Systems (GPS) help in  ','combating crime  ','providing early warning against disasters  ','climate change monitoring ','locating positions on the earth surface ','','','d','','post-utme','2008',169,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:35'),(51,'One of these is not a factor of population growth  ','poverty  ','migration  ','prosperity  ','housing ','','','a','','post-utme','2008',194,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:36'),(52,'Which of the following is not a major problem of Kainji Dam?  ','increase in the herds of the cattle that depends on its waters  ','increase in usage of Niger in Niger Republic  ','silting of the dam  ','growing demand for irrigation water','','','b','','post-utme','2008',200,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(53,'The East Africa large lakes are together described as  ','Great Lakes St Lawrence Sea Ways  ','Rift Valley Lakes  ','Sources of large rivers like Nile  ','products of the formation of Mt Kilimanjaro ','','','b','','post-utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:38'),(54,'One of these is not true of rain gauges:  ','Rain gauge provide excellent measurement of rainfall ','Their measurements may be affected by the particular type used ','Their readings may be influenced by slope of the land  ','Rain splashes during heavy rains may lead to over estimation ','','','c','','post-utme','2008',193,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(55,'South East Asia is noted for its regular experience of  ','hurricane  ','tornadoes  ','typhoons  ','strong wind','','','c','','post-utme','2008',181,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:40'),(56,'Horse latitudes refers to  ','areas around the gulf of guinea ','areas around the equator  ','areas around the Mediterranean sea  ','areas around latitude 300 in both hemispheres.','','','d','','post-utme','2008',182,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(57,'“High uniform temperature and heavy well distributed rainfall throughout the year” described ','Equaterial rainforest climate  ','Mid altitude friendly environment  ','the zone of forest with a lot of agricultural potentials  ','the great Amazon basin including the Brazilian forests','','','a','','post-utme','2008',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:42'),(58,'On of the following is least important to ocean movement  ','salinity of the ocean water  ','temperature of the water  ','planetary wind  ','curvature of the coastal areas','','','d','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:43'),(59,'The cloud which are white globular masses, forming ripples in the sky is called ','Citrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2008',198,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:44'),(60,'Which one of the following seas has highest degree of salinity in the world?  ','Caspian sea  ','Mediterranean sea  ','Dead Sea  ','Red sea','','','c','','post-utme','2008',199,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:45'),(61,'Which of the following landforms is NOT due to the process of glacier erosion? ','Come  ','valley -bench  ','Hanging valley  ','Esker','','','b','','post-utme','2008',189,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:46'),(62,'Which of the following rivers does NOT drain into Atlantic Ocean? ','The Niger  ','The Indus  ','The Amazon  ','The Volta','','','b','','post-utme','2008',197,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:48'),(63,'Which features on a  topographic sheet would you analyze to characterize the configuration of the area covered by the sheet  ','Isoyet and Isolines  ','ranges and spot heights ','Contour lines for cross section','Contour lines for slope estimates  ','','','d','','post-utme','2008',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:48'),(64,'The greatest challenge to future use of automobiles is  ','advances in air travel  ','identification of alternative to fossil fuels  ','changing and more reliable technology for rail transport ','population growth ','','','b','','post-utme','2008',168,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:49'),(65,'The statements ‘one cm 2 km can be represented by the ratio of  ','1:50,000 ','1:500,000  ','120,000','1:200,000','','','d','','post-utme','2008',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:50'),(66,'What is the Local Standard time in New York (750W) when it is 2 p.m. in Accra?  ','7 p.m. (19hrs)  ','7 a.m. (0700hrs)  ','9 p.m. (2100hrs)  ','9 a.m. (0900hrs)','','','d','','post-utme','2008',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:51'),(67,'On any day in the year at a specific time  ','the sun is overhead along the equator  ','the sun is overhead along the topic of cancer  ','the North Pole has 24 hours of daylight  ','one half of the earth is in darkness','','','d','','post-utme','2008',175,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(68,'Which of the following is not a true feature produced by volcanic activity? ','horst  ','caldera  ','dyke  ','geyser ','','','a','','post-utme','2008',213,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:53'),(69,'Which is the main crop grown in the Ghezira plains ','Wheat  ','Millet  ','Rice  ','Cotton','','','d','','post-utme','2008',207,'Admin','0000-00-00 00:00:00','2020-07-15 12:59:45'),(70,'Which of the following countries has a large number of people of Africa descent? ','England  ','Canada  ','Chile  ','Brazil ','','','d','','post-utme','2008',166,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:55'),(71,'When it is 1200 noon on longitude 300E. What is the time on longitude 150W.  ','9.00 a.m. ','5.00 p.m.  ','9.00 p.m.  ','5.00 a.m. ','','','a','','post-utme','2008',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:57'),(72,'Which of the following Nigerian towns is Not situated near a big river? ','Lokoja ','Onitsha  ','Jebba  ','Abuja','','','d','','post-utme','2008',175,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(73,'Fishing is the mainstay of the economy of  ','Libya  ','Iran  ','Iceland  ','Chad','','','c','','post-utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(74,'Which of the following features is produced by wave deposition  ','caves  ','stack  ','tomobolo  ','blow holes','','','c','','post-utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:00'),(75,'Which of the following is the major factor responsible for Japan’s unparalleled industrial growth in the last few decades? ','Japan’s proximity to mainland ','Japan’s cargo population    ','availability of abundant coal and petroleum ','technological proficiency','','','d','','post-utme','2009',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:01'),(76,'Which of the following timber trees are found in the tropical rain forest of Africa? ','Obeche and teak  ','Mahogany and teak  ','Obeche and Mahogany ','Iroko and Eucalyptus','','','c','','post-utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:02'),(77,'Which of the following basins has the highest population concentration? the ','Indus  ','Niger  ','Nile  ','Mississippi ','','','b','','post-utme','2009',193,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(78,'Which of these economic activities is LEAST characteristics of typical urban centres?  ','Commerce ','quarrying  ','transportation  ','manufacturing ','','','b','','post-utme','2009',172,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:04'),(79,'In Karst region, when several dolines are joined together to form depression, it is known as ','cave  ','uvala  ','stalactite  ','calcite pallar','','','b','','post-utme','2009',190,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:05'),(80,'Rural settlements can be distinguished from urban settlements by their?  ','function  and population  ','Site and function  ','demography and morphology  ','morphology and location ','','','a','','post-utme','2009',193,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:06'),(81,'The scientist who propounded the theory of continental drift was?  ','Francis bacon  ','Alfred Wegener   ','Authur Holmes ','Williams Davis','','','b','','post-utme','2009',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:07'),(82,'The major world exports of wool are  ','Britain, Australia, Mediterranean Europe and Argentina   ','New Zealand, Uruguay, Australia and Argentina  ','Australia, India, Paraguay and Argentina  ','New Zealand, India, Uruguay and Peru','','','b','','post-utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:08'),(83,'Blantyre, Rio Janeiro, New York and Lagos are similar in that they all serves as their countries ','major seaport  ','political headquarter ','commercial centres ','cultural centres','','','c','','post-utme','2009',168,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:09'),(84,'The dawn is a temperature grassland found in? ','Australia  ','South America  ','Eurasia  ','South Africa','','','a','','post-utme','2009',175,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:10'),(85,'Commercial grape cultivation is associated with?  ','cool temperature climate  ','monsoon regions  ','Mediterranean regions  ','Montane climate ','','','c','','post-utme','2009',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:11'),(86,'The highest volume of shipping across the Atlantic ocean is  ','between Europe and Africa  ','between North America and Europe  ','between African and South America ','between North America and South America','','','b','','post-utme','2009',189,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(87,'The Ukraine of economic activities  ','commercial grain agriculture  and livestock random ','plantation agriculture and nomadic herding.','','','','','a','','post-utme','2009',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:13'),(88,'All planets have satellites except:  ','Earth & Venus ','Mars & Mercury  ','Mercury & Venus  ','Neptune & Venus','','','c','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:14'),(89,'Which of the following location in Nigeria has the least mean annual rainfall total?  ','Sokoto  ','Maiduguri  ','Potiskum  ','Nguru','','','b','','post-utme','2010',199,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(90,'Which of the following is not the Karst features? ','Poljes  ','Uvala  ','Kopjes  ','Dolines ','','','c','','post-utme','2010',180,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(91,'The world’s longest river is ','Amazon  ','Mississippi  ','Nile  ','Chang Jiang','','','c','','post-utme','2010',182,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(92,'One of these is a features of rejuvenated river: ','Incised menders  ','Braided channel  ','delta  ','Levees ','','','a','','post-utme','2010',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:18'),(93,'Which one of these is not a thermometric scale:  ','Celsius  ','Kelvin  ','Fahrenheit  ','Octas ','','','d','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:19'),(94,'Which of these is not a form of condensation? ','Snow ','Rime  ','Cloud  ','Fog','','','b','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:20'),(95,'Cyclones are centres of  ','relative low pressure  ','relative high pressure  ','Tsunamis  ','turning around of winds','','','a','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(96,'The best natural harbour in West Africa is at  ','Lome  ','Tema ','Lagos ','Freetown ','','','d','','post-utme','2010',179,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:22'),(97,'Sandstone is metamorphosed into  ','Slate  ','Schist  ','graphite  ','Quartzite ','','','d','','post-utme','2010',175,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:23'),(98,'The navigability of River Nile is limited because  ','it is too long  ','it is too shallow  ','it flows during the wet season only  ','it has several cataracts. ','','','d','','post-utme','2010',184,'Admin','0000-00-00 00:00:00','2020-07-14 22:14:45'),(99,'The cloud which is closely associated with thunderstorms is  ','strato-cumulus  ','Cirrocumulus  ','Cumulus-nimbus  ','Alto-stratus ','','','c','','post-utme','2010',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:25'),(100,'Drought-tolerant plants are  ','Epiphytes  ','Hydrophytes  ','Droughytes  ','Xerophytes ','','','d','','post-utme','2010',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:26'),(101,'Campos is the name for the grassland in  ','North America  ','South America  ','Africa  ','Asia ','','','b','','post-utme','2010',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:27'),(102,'When the moon comes in between the earth and the sun in a perfect straight line, it is known as','Eclipse of the moon  ','Lunar eclipse ','solar eclipse  ','eclipse of the earth ','','','c','','post-utme','2010',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:28'),(103,'The earth rotates ','South East-South West  ','South West South West  ','West East  ','East West','','','c','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:30'),(104,'A degree latitudinal distance is approximately ','70km  ','111km  ','180km  ','360km','','','b','','post-utme','2010',184,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:31'),(105,'Large masswa of moving ice in the oceans are  ','glacier  ','iceberg  ','ice-sheet  ','ice-caps','','','b','','post-utme','2010',181,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:32'),(106,'The world driest desert is  ','Atacama  ','Sahara  ','Kalahari  ','California ','','','a','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:33'),(107,'A line joining places of equal salinity is  ','isohaline  ','Isoneph  ','Isohyets  ','Isohel','','','a','','post-utme','2010',203,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:34'),(108,'Which of these is not on the western side of continental land masses? ','Agulhas  ','Canary  ','Penivian  ','California','','','a','','post-utme','2010',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:35'),(109,'In general, temperature decreases from the equator towards the Poles because  ','angle of incidence of sun’s rays increases towards the poles ','angles of incidence sun’s rays decreases towards the poles  ','Snow-cover of the higher latitudes reduces the temperature  ','snow falls rather than rain in the pole','','','a','','post-utme','2010',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:36'),(110,'Which of the following continents is crossed by both the Tropic of Cancer and Tropic of Capricorn?  ','Asia  ','South America ','North America  ','Africa','','','d','','post-utme','2010',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:37'),(111,'The sea bed, bordering the continents which is covered by the shallow water is known as ','continental slope ','coral reef ','continental shelf  ','continental platform  ','','','c','','post-utme','2010',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:38'),(112,'The result of football match completed at 6.00p.m. at Accra (Ghana) and immediately announced over the wireless was heard at 12.00noon same day at another city. The longitude of the city is ','900E  ','600E  ','900W  ','450W ','','','c','','post-utme','2010',196,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(113,'Soil that are formed by wind deposition are called  ','laterites  ','prairies  ','podsols   ','Loess  ','','','d','','post-utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:40'),(114,'Which of the following is not a feature of sea deposition ','Shoal ','Beach ','Spit ','coal','','','d','','post-utme','2011',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:41'),(115,'Which of the following terms is associated with glaciations? ','Arête   ','Bay   ','Stacks   ','Reef   ','','','a','','post-utme','2011',184,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:42'),(116,'The lower part of a river valley that has been submerged by the sea is called ','Estuary   ','Reef    ','Spit   ','Bar  ','','','b','','post-utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:43'),(117,'Which of the following is a cold ocean current ','Mozambique   ','gulf stream ','Kuro Siwo  ','Benguela   ','','','d','','post-utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:50'),(118,'The most important cause of tides is the,','distribution of the prevailing winds ','rotation of the earth on its own axis  ','inclination of the earth’s axis  ','gravity attraction of the moon ','','','d','','post-utme','2011',190,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:51'),(119,'Desert soils are usually deficient in ','fertility  ','humus content ','horizon ','light grey colour   ','','','b','','post-utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:53'),(120,'At the summer solstice [June 21st], which of the following latitudes will have the longest day ','700S   ','900S  ','300N   ','650N   ','','','d','','post-utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:54'),(121,'Cyclones refer to ','centers of relatively high pressure ','centers of relatively low pressure ','centers Tsunamis ','centers in the desert ','','','b','','post-utme','2011',176,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:55'),(122,'The wearing away of the sides and bottom of a river channel is called ','corrasion ','corrosion ','hydraulic action ','Complicated erosion ','','','a','','post-utme','2011',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:56'),(123,'When the moon comes in between the earth and the sun in a straight line, it is known as  ','solar eclipse ','eclipse of the earth ','eclipse of the moon ','lunar eclipse ','','','a','','post-utme','2011',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:57'),(124,'A degree of latitudinal distance is approximately  ','111km  ','221KM ',' 121km  ','212km  ','','','a','','post-utme','2011',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:58'),(125,'Which of the following places in Nigeria has the highest mean annual rainfall amount ','Sokoto  ','Maiduguri  ','Nguru   ','Kano  ','','','c','','post-utme','2011',210,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:59'),(126,'The formulae for converting temperature from a centigrade (0C) to a Fahrenheit (0F) thermometric scale? ','0F = 1.8 x 0C + 32  ','0F = 0.5x 0C + 32  ','0F = 1.8x 0C – 32   ','0F = 0.5x 0C – 32  ','','','a','','post-utme','2011',184,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:00'),(127,'The Northern Hemisphere’s Spring Equinox is during the month of','February ','march ','April   ','May  ','','','b','','post-utme','2011',203,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:01'),(128,'Noonday sun is vertically overhead along the Tropic of Cancer during the month of  ','June  ','July  ','August  ','September ','','','a','','post-utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(129,'An instrument used in measuring the atmospheric pressure is called ','Barometer ','Thermomete','Hygrometer','Presometer','','','a','','post-utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:03'),(130,'Orographic rainfall is also called ','Relief rainfall','cyclonic rainfall ','convectional rainfall ','frontal rainfall ','','','a','','post-utme','2011',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:04'),(131,'The forest type which is richest in tree species is the ','Deciduous forest ','Mediterranean forest ','Tropical Lowland  rainforest ','coniferous forest  ','','','c','','post-utme','2011',158,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:05'),(132,'Which of the following statements is not true for lines of latitudes?','they range from 00 to 1800 North and South ','they range from 00 to 900 North and South ','They vary in D. they form parallel circles','only one line is a great circle.','','','a','','post-utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:06'),(133,'The earths rotates through 150C of longitude in  ','24hrs  ','15hrs  ','4hrs   ','1hrs   ','','','d','','post-utme','2011',201,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:07'),(134,'What is the local standard time in New York (750W) when it is 2pm in Accra? ','9.00pm  ','9.00 pm  ','7.00pm   ','7.00am ','','','b','','post-utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:08'),(135,'Aeolian erosion refers to the work of  ','Wind ','Running water  ','Glacier  ','Ice  ','','','a','','post-utme','2011',169,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:20'),(136,'Which of the following landforms is the results of  river rejuvenated?  ','Ox-box lake ','flood plain ','terrace  ','alluvial fan  ','','','c','','post-utme','2011',205,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:21'),(137,'The representative fraction of 1:50,000 can be converted to the following  ','one cm to 5km  ','one cm to 0.05km  ','one cm to 2km  ','one cm to 4km  ','','','b','','post-utme','2011',184,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:22'),(138,'Which of the following is not a rapid type of mass movement? ','Solidification ','Rockfall  ','Mudflow  ','Debris Slide','','','a','','post-utme','2012',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:23'),(139,'A front in which warm air is overtaken and lifted off the ground by cold air in a depression is known as  ','Cold front  ','Warm front  ','Mixed front  ','Occluded','','','d','','post-utme','2012',172,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:24'),(140,'The earth’s atmosphere is said to be stable  ','when the environmental laps rate is greater than the adiabatic lapse rate  ','When the adiabatic lapse rate is greater than the environmental lapse rate  ','When the environmental lapse rate is equal to the adiabatic lapse rate  ','When the environmental lapse rate is not equal to the adiabatic lapse rate.','','','b','','post-utme','2012',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:25'),(141,'Environmental lapse rate is  ','The rate of temperature changes of an air parcel undergoing vertical displacement  ','The rate of temperature decrease of an air parcel undergoing horizontal displacement  ','The actual rate decrease of temperature with increase in altitude at a given place at a given moment  ','The rate of horizontal temperature gradient of an air parcel','','','c','','post-utme','2012',194,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:26'),(142,'What is the Centigrade equivalent of 950 Fahrenheit? ','1390C  ','37.20C  ','350C','3.60C','','','c','','post-utme','2012',197,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:27'),(143,'Which of the following States in Nigeria would a person NOT pass over by crow fly (direct distance) from Ibadan to Makurdi? ','Osun  ','Ondo ','Kogi  ','Enugu','','','d','','post-utme','2012',228,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:28'),(144,'The Latitude which marks the limits of the overhead sun’s apparent movement is  ','0','66.5','32.5','23.5','','','d','','post-utme','2012',216,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:29'),(145,'Which of the following features is not commonly associated with a river at the floodplain stage? ','Meanders  ','Levees ','Braided channel  ','Knick point ','','','a','','post-utme','2012',200,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(146,'The World’s richest fishing grounds are found  ','On the continental shelves  ','In oceanic deeps ','In big and fast-flowing river  ','In river estuaries ','','','a','','post-utme','2012',170,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:31'),(147,'A deflation hollow is produced by  ','River erosion  ','Water action in a limestone area  ','Wind erosion in deserts  ','Wave erosion on the coast ','','','c','','post-utme','2012',191,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:32'),(148,'Akosomo dam is on the River  ','Niger  ','Nile  ','Congo  ','Volta','','','d','','post-utme','2012',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:33'),(149,'Which of the following is a not characteristic of the International Date Line? ','The Line is approximately along the 1800 meridian  ','The line has a zigzag shape  ','Local time is the same on either side of the line  ','A traveler gains a day when crossing the line from the west to the east ','','','c','','post-utme','2012',160,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:34'),(150,'Which of the following African cities is situated near the confluence of rivers? ','Niamey  ','Freetown  ','Cairo  ','Khartoum ','','','d','','post-utme','2012',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:35'),(151,'Ferrel’s law states that winds deflect to the  ','Left in the northern  ','Right in the Northern hemisphere and to the left in the Southern hemisphere  ','Right in both hemispheres  ','Left in both hemisphere.','','','b','','post-utme','2012',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:36'),(152,'Given an environmental lapse tate of 0.650C per 100 metres, a place with sea level temperature of 400 and 2500 metre above the sea level will approximately have a temperature of  ','31.250C  ','23.750C  ','32.50C  ','28.250C ','','','b','','post-utme','2012',210,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(153,'At the summer solstice (June 21), which of the following latitudes will have the shortest night?','30 “N  ','30 “S  ','50 “N  ','50 “S','','','c','','post-utme','2012',178,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(154,'Which of the following landforms result from wind deposition? ','Playa  ','Barchan  ','Bajada  ','Fan','','','b','','post-utme','2012',210,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:39'),(155,'Which of the following farming practices can be used to check soil erosion? ','Contour ploughing  ','Ploughing of land upslope  ','Bush burning  ','Shifting','','','a','','post-utme','2012',198,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(156,'Aeolian erosion refers to the work of  ','Plants  ','Wind  ','Ice  ','Running water','','','b','','post-utme','2012',217,'Admin','0000-00-00 00:00:00','2020-07-15 11:56:02'),(157,'The difference in the readings on the dry and wet bulb thermometers used to determine  ','Relative humidity  ','Temperature range  ','Evaporation  ','Transpiration ','','','a','','post-utme','2012',177,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(158,'Which of the following scales should show the greatest amount of detail on a map? ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2012',189,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:43'),(159,'Sandstone is metamorphosed into  ','Slate  ','Quartzite  ','Schiest  ','Graphite ','','','b','','post-utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:44'),(160,'In humid areas, farmers add lime to the soil to  ','reduce acidity  ','Act as fertilizer  ','Facilitate the absorption of nutrient  ','Encourage the farmer','','','a','','post-utme','2012',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:45'),(161,'In the hydrological cycle, the transfer of water from the earth’s surface to the atmosphere is by ',' Evaporation only  ','Transpiration Only  ','Evaporation  ','Condensation ','','','c','','post-utme','2012',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:46'),(162,'The second Equinox in any year take place during the month of','March   ','June   ','September   ','December','','','c','','post-utme','2013',191,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:47'),(163,'Which of the following countries in Africa would a person NOT pass over by crow fly (direct distance) from Abidjan to Cairo?  ','Niger    ','Libya','Burkina Faso  ','Chad','','','c','','post-utme','2013',215,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(164,'The main work of a river in its torrent stage is  ','Widening its valley','Down cutting','Deposition  ','Bifurcation','','','a','','post-utme','2013',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:49'),(165,'Which of the locations in Nigeria has the highest mean annual rainfall total ?  ','Benin City  ','Port-Harcourt  ','C.Calabar   ','Ondo','','','b','','post-utme','2013',162,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:50'),(166,'The world’s longest river is  ','River Amazon    ','River-Mississippi   ','River Nile  ','River Chang Jiang','','','c','','post-utme','2013',196,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:51'),(167,'Which of the following is a feature  of a rejuvenated river?','Incised meanders   ',' Braided channel   ','Delta   ','Levees','','','a','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:53'),(168,'Which of the following is not a thermometric scale?','Celsius     ','Kelvin','Fahrenheit   ','Octas','','','d','','post-utme','2013',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:54'),(169,'Which of the following is not a form of condensation?  ','Snow  ','Rime  ','C.Cloud  ','Fog','','','d','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:55'),(170,'The surface of discontinuity between the earth’s crust and the mantle is know as','Lithosphere   ','Barysphere','Mohocivic Discontinuity','Gutenburg discontinuity','','','b','','post-utme','2013',176,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:56'),(171,'Where is Sahel Savanna vegetation belt found in Nigeria?','Northwest   ','Northeast','Both Northwest and Northeast','From the middle belt to the north','','','b','','post-utme','2013',172,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:57'),(172,'The largest soil group, found in the temperate grasslands, having a deep, black, nutrient-rich','A-horizon, a compact  B-horizon and a zone of calcium carbonate accumulation is called a','Chernozem  ','Pedocal   ','Podsol  ','Chestnut','','a','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:58'),(173,'Drought-tolerant plants are known as  ','Epiphytes  ',' Hydrophytes','Drouphytes','Xerophytes','','','d','','post-utme','2013',170,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(174,'The major disadvantage of the River Nile as a trade route is that  ','it is too long   ','it is too shallow   ','it flows during the wet season only   ','it has several cataracts','','','d','','post-utme','2013',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:01'),(175,'The earth rotates from  ','Southeast to Southwest','Southwest  to Southeast','West to East  ','East to West','','','c','','post-utme','2013',185,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(176,'The tropical maritime air mass attains its maximum incursion over West African hinterlands','When the sun is overhead on the tropic of Capricorn  ','When the sun is overhead on the tropic of Cancer ','When the sun is overhead on the Equator','When the sun is overhead on both the tropic of Cancer and Tropic of Capricom','','','c','','post-utme','2013',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:03'),(177,'A line joining places of equal salinity is known as','Isohaline   ','Isoneph','Isohyet   ','Isohel','','','a','','post-utme','2013',189,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:04'),(178,'Which of the following continents has the largest area with a tropical type of climate?','Asia   ','South America','North America  ','Africa','','','a','','post-utme','2013',177,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:05'),(179,'One hour’s difference in mean solar time represents what angular difference in longitude?','15o ','23.5o  ','90o','66.5o','','','a','','post-utme','2013',199,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:06'),(180,'An extended urban area, typically consisting of several towns merging with the suburbs of one or more cities can best be referred to as  ','Conurbation','Urban decay  ','Growth pole','Urban Inertia','','','a','','post-utme','2013',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:07'),(181,'Which of the following terms is not associated with desert-type topography?','Zuegen    ','Yardang  ','Mesa  ','Uvala','','','d','','post-utme','2013',176,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:08'),(182,'The major characteristics of a karst scenery include','Excessive overland flow','Extensive and long surface flow  ','An underground network of caves and streams','Frequent  surface drainage','','','c','','post-utme','2013',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:09'),(183,'Which of the following landforms originates from Aeolian erosion?','Deflation hollow  ','Sand dune  ','Playa   ','Wadi','','','a','','post-utme','2013',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:10'),(184,'The cheapest means of transport for a long distance travel is by   ','Air   ','Rail','Water   ','Road','','','c','','post-utme','2013',210,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:11'),(185,'A traveler crossing the international Date line from America to Asia at 1.00 P.M. on Saturday, July 13th, 2013, would have to change his watch to 1.00 P.m. on','Sunday, July 14th, 2013','Friday, July 12th 2013','Saturday, July 13th, 2013','Monday, July 15th, 2013','','','a','','post-utme','2013',181,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:12'),(186,'The shaduf method of irrigation was first practiced in','Sudan   ','Ghana   ','Egypt    ','Mali','','','c','','post-utme','2013',198,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:13'),(187,'Climate is the: ','Prevailing weather conditions of a region for 10 years ','Prevailing weather conditions of a region for 15 years  ','Prevailing weather conditions of a region for 35 years  ','Prevailing weather conditions of a region for 20 years  ','','','c','','post-utme-aaua','2014',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:14'),(188,'Igneous rocks are rocks formed by','The cooling of molten minerals from a liquid into a solid.','The change of minerals from a solid into a liquid','The deposition of minerals. ','The deposition of minerals a solid into a liquid. ','','','a','','post-utme-aaua','2014',154,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:15'),(189,'Temperature is a measure of: ','The average hotness','The average coolness','The average heat. ','The average emission.','','','c','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(190,'Isotherm refers to: ','Line that connects points of equal sunshine','Line that connects points of equal rainfall','Line that connects points of equal pressure.  ','Line that connects points of equal temperature','','','d','','post-utme-aaua','2014',174,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(191,'The longest river in Africa is:  ','River Nile. ','River Niger. ','River Benue','River Zambezi ','','','a','','post-utme-aaua','2014',183,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(192,'Isobar refers to: ','Line that connects points of equal humidity. ','Line that connects points of equal rainfall.   ','Line that connects points of equal pressure.  ','Line that connects points of equal temperature. ','','','c','','post-utme-aaua','2014',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:19'),(193,'Topographic maps are: ','Representations of features on the Earth\\'s surface','Features on the Earth\\'s surface. ','Detailed and accurate graphic representations of features on the Earth\\'s surface ','Geographic coordinate grid on the Earth\\'s surface. ','','','c','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(194,'Lesotho is in: ','South Africa','West Africa.   ','East Africa','Central Africa','','','c','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(195,'Weathering of rocks is: ','The formations of rocks','The breaking down of rocks.   ','The deformations of rocks','The accumulation of rocks. ','','','b','','post-utme-aaua','2014',154,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:22'),(196,'Scale of a map is defined as: ','The ratio of a distance on the drawing board to the corresponding distance on the ground. ','The ratio of a distance on the map to the corresponding distance on the ground','The ratio of a distance on the tape to the corresponding distance on the ground. ','The ratio of a distance on the ruler to the corresponding distance on the ground','','','b','','post-utme-aaua','2014',158,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:23'),(197,'The capital of Niger state in Nigeria is: ','Gusau','Yola','Makurdi','Minna','','','d','','post-utme-aaua','2014',154,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:24'),(198,'A valley is a:   ','Highland between hills','Lowland between hills','Rock between hills','Highland between trees. ','','','b','','post-utme-aaua','2014',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:25'),(199,'Nigeria has a total land area of: ','923,768 km2 ','823,768 km2 ','623,768 km2 ','723,768 km2 ','','','a','','post-utme-aaua','2014',166,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(200,'A lake is a:   ','Large body of water surrounded by forest. ','Large body of water surrounded by land. ','Large body of water surrounded by rocks','Large body of water surrounded by water. ','','','b','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:27'),(201,'Nigeria is having','574 Local Government Areas','674 Local Government Areas. ','774 Local Government Areas. ','874 Local Government Areas','','','c','','post-utme-aaua','2014',157,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(202,'An island is a:   ','Piece of land surrounded by water.   ','Piece of land surrounded by land. ','Piece of land surrounded by forest. ','Piece of land surrounded by rocks. ','','','a','','post-utme-aaua','2014',161,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:29'),(203,'The ethnic groups in Nigeria are: ','More than 250  ','More than 150   ','More than 100   ','Less than 150 ','','','a','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:30'),(204,'Orographic rainfall is a:   ','Temperate rainfall','Relief rainfall. ','Coastal rainfall','Forest rainfall.   ','b','','','','post-utme-aaua','2014',177,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:31'),(205,'One major societal issues in Nigeria is: ','Poor feeding. ','Poor human rights','Poor language','Poor religion. ','','','b','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(206,'The United Nations estimate of Nigeria population in 2009 was','154,729,000','144,729,000.00','164,729,000.00','184,729,000.00','','','b','','post-utme-aaua','2014',176,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:33'),(207,'Nigeria lies between','Latitudes 4° and 13°N and longitudes 2° and 15°E. ','Latitudes 5° and 14°N and longitudes 4° and 15°E. ','Latitudes 4° and 14°N and longitudes 2° and 15°E. ','Latitudes 2° and 15°N and longitudes 4° and 14°E. ','','','c','','post-utme-aaua','2014',162,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:42'),(208,'Kinshasa is a: ','Central African City ','North African City ','East African City ','South African City ','','','a','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:43'),(209,'Freetown is a: ','North African City ','West African City ','South African City ','East African City ','','','b','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:45'),(210,'Which one of the following countries is having the highest quality of life? ','Sweden  ','Austria ','United States of America ','England  ','','','a','','post-utme-aaua','2014',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:46'),(211,'Nairobi is a: ','North African City ','West African City ','South African City ','East African City ','','','d','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:47'),(212,'The most populated country in the world is: ','Austria ','China ','United States of America ','Brazil ','','','b','','post-utme-aaua','2014',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:48'),(213,'Casablanca is a','North African City ','West African City ','South African City ','Central African City ','','','a','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:49'),(214,'The World largest Ocean is: ','Pacific Ocean ','Atlantic Ocean ','Indian Ocean ','Arctic Ocean ','','','a','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:50'),(215,'Dominican Republic is in: ','Europe ','Africa ','America ','Asia ','','','c','','post-utme-aaua','2014',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:51'),(216,'The World Longest Coastlines is in: ','Austria ','England  ','United States of America ','Canada ','','','d','','post-utme-aaua','2014',165,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(217,'Which of the following is an evidence to show that the earth is spherical in shape? ','Elliptical orbit ','Ea th s  u ed ho izo','Revolution of the earth ','Seasonal changes ','','','b','','post-utme-aaua','2014',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:53'),(218,'A lines drawn on a maps to show places of equal rainfall is called ','Rainline ','Isotope ','Isotherm ','Hydrotope ','','','b','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:54'),(219,'Wind erosion is most common in ','Rocky areas ','Riverine areas ','Arid areas ','Humid areas ','','','c','','post-utme-aaua','2014',141,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:55'),(220,'The act of graphical representation of places with identified scale and legend is called ','Scaling ','Mapping  ','Sketching ','Drawing ','','','b','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(221,'A piece of land almost surrounded by water is called ','Headland ','Peninsula ','Island   ','Plateau ','','','c','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:57'),(222,'Planet warming the use of water transport is limited by all the following except  ','Wide valleys   ','Waterfalls ','Seasonality  ','Narrow gorges   ','','','a','','post-utme-aaua','2014',173,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:58'),(223,'To obtain the climate of a place the average atmospheric weather conditions should be considered ','20years ','24years','35years ','10years ','','','c','','post-utme-aaua','2014',202,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:59'),(224,'Which of the following is a major hindrance to H.E.P.','Inadequate capital  ','Unavailability of good sites  ','Absence of domestic market  ','Sufficient volume of water  ','','','d','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:00'),(225,'Isotherms are lines drawn on maps joining places having equal ','Temperature   ','Cloud cover ','Pressure ','Water level ','','','a','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:01'),(226,'Precipitation include all the following except ','Fog','Snow ','Dust   ','Dew ','','','c','','post-utme-aaua','2014',160,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:02'),(227,'The location of iron and steel industry at Ajaokuta in Nigeria is best explained by the presence of ','Limestone and coal  ','Iron ore   ','Bauxite  ','Manganese ','','','b','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:03'),(228,'Settlements can be classified according to all the following except the   ','The arrangements of the building   ','Number of people per settlements   ','Functions  ','The type of people that live in the area   ','','','d','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:03'),(229,'The average hurricane exists, on the average, for about ________. ','one week ','two weeks ','three weeks ','four weeks ','','','d','','post-utme-aaua','2014',189,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(230,'……...Refers to the nature of the surface of an area and the features that abound therein above the sea level','Barchans ','Relief   ','Plateaux   ','Plain','','','b','','post-utme-aaua','2014',163,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:06'),(231,'Any buoyant parcel of air is said to exhibit ________. ','Instability ','The dry adiabatic lapse rate ','The moist adiabatic lapse rate ','Advection','','','a','','post-utme-aaua','2014',176,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:07'),(232,'The north east and south west trade winds meet along a plane surface where they continuously rub ','Abnormal front  ','Leeward front  ','Intertropical front ','Windward front  ','','','c','','post-utme-aaua','2014',180,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(233,'________ is the time of day when tornadoes are most likely to occur','Dawn ','Mid-afternoon ','Evening ','Noon ','','','b','','post-utme-aaua','2014',161,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:09'),(234,'Crude oil is ------------  rock mineral   ','An igneous   ','A sedimentary  ','A metamorphic  ','A plutonic  ','','','b','','post-utme-aaua','2014',166,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:10'),(235,'The new name of Calicut, a famous city of Kerala is ','Kozhikode','Trivendrum','Kalighat ','Koderma ','','','a','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(236,'An anemometer is used to measure','wind vane','wind direction','wind speed','wind pressure','','','c','','post-utme-aaua','2014',162,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:37');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `government` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=724 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `government` VALUES (1,'In which of the following countries is governmental powers most fused? ','Nigeria ','United States of America ','France ','Canada','','','c','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:12'),(2,'The benefits of separation of powers include the following except ','prevention of tyranny ','check of abuse ','promoting democracy with free and fair election ','avoidance of arbitrariness','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:13'),(3,'Laws made by state   government are known as ','edicts ','bye-law ','acts  ','decrees','','','a','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:14'),(4,'In a parliamentary system of government, the function of the head of state and the head of government are vested in ','the inner cabinet ','an individual ','two different individuals ','the ministerial council','','','c','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:15'),(5,'In a modern democracy, the ultimate source of sovereignty is the ','legislature and executive ','judiciary ','ruling political party ','people','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:16'),(6,'The British took over Nigeria through ','negotiation ','bargaining  ','war ','the sea','','','a','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:17'),(7,'Politics is an act for ','man to govern himself ','man to create governments ','states to control its destiny ','man to dominant others','','','a','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:18'),(8,'A major issue that distinguishes pressure groups from political parties is ','membership drive ','objective ','vomiting pattern ','ideology','','','b','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:19'),(9,'A nation consist of people with ','common history ','common ancestry ','a  shared set of values ','A, B and C above','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:20'),(10,'A totalitarian state is based on  ','multi-party system ','total protection of civic rights ','the totality of the state processes ','coercion as the instrument of government','','','d','','post-utme','2006',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:21'),(11,'A political concept that defines  the beliefs, attitudes and values of a society is called ','political socialization ','political culture ','political transformation ','referendum','','','b','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:22'),(12,'The agent of political socialization generally regarded as the most important is ','family ','peer group','school ','churches and mosques','','','a','','post-utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:23'),(13,'A political ideology that defines a system of societal organization in which the state controls the commanding heights of the economy is called ','Totalitarianism ','Communalism ','socialism ','communism ','','','d','','post-utme','2006',93,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:24'),(14,'Which of the following best describes French colonial policy in Africa? ','policy of association ','policy of Casus Belli ','policy hostility ','policy of assimilation','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:25'),(15,'What was the primary purpose of the Sir Henry Willink Commission of Inquiry? ','to approve the independence of Nigeria ','to allay the fears of minorities in Nigeria ','to amalgamate northern and southern  Nigeria ','to make Lagos a British Colony','','','b','','post-utme','2006',96,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:26'),(16,'The military coup of July 25, 1975 which toppled General Yakubu Gowon from power  took place when he was attending which important event? ','OAU Summit in Kampala ','UN General Assembly in New York ','Assembly of Heads of states of ECOWAS in Monrovia ','The Olympic Games','','','a','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:27'),(17,'Which of the following political parties did not participate in the 1979 General Elections in Nigeria? ','Unity Party of Nigeria ','National Party of Nigeria ','social Democratic Party ','Great Nigeria People’s Party','','','c','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:28'),(18,'Alhaji Shehu Shagari was sworn in as President of the Federal Republic of Nigeria in 1979 by ',' Justice Fata Williams ','Justice Adetokunbo Ademola ','Justice Salihu Modibbo  Alfa Belgore ','Justice Isa Mohammed','','','b','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:29'),(19,'The electorate is generally  understood to refer to ','elected members of the National- Assembly ','elected members of the state house of assembly  ','candidates who can contest elections ','those citizens qualified to vote at elections','','','d','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:30'),(20,'Into how many local government areas in Nigeria officially delineated? ','654','650','820','774','','','d','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:31'),(21,'The centenary anniversary of the amalgamation of Northern and Southern Nigeria will be celebrated in ','2060','2063','2014','2007','','','c','','post-utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:32'),(22,'Which of these men introduced indirect rule in Nigeria? ','Mungo Park ','Dr. Nnamdi Azikiwe ','Lord Lugard ','Sir James Robertson.','','','c','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:33'),(23,'Democracy was first practiced in ','Ghana ','United States of America ','Greece ','Britain','','','c','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:34'),(24,'Which of these countries has the highest population in West Africa? ','Mauritania','Ghana ','The Gambia ','Nigeria.','','','d','','post-utme','2007',93,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:35'),(25,'This African ruler resisted colonial rule and was later exiled by the colonial  officials ','Alaafin of Oyo ','Oba of Benin ','King Jaja of Opobo','Onisanbo of Ogbooro.','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:36'),(26,'The following countries are settler colonies except  ','Nigeria ','south Africa ','Angola ','Mozambique.','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:37'),(27,'Nigeria gained independence from colonial rule on ','1-Oct-60','November, 1963 ','29-May-99','1-Nov-60','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:38'),(28,'All but one of the following is not a symbol of political culture ','a national flag ','the government ','an anthem ','the constitution.','','','b','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:39'),(29,'All but one of these is not an agency of political socialization ','the constitution ','the family ','peer group ','schools ','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:40'),(30,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives ','propaganda ','lobbying ','assault ','boycott','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:41'),(31,'The following are Anglophone West African countries except ','Ghana ','Nigeria ','Kenya ','The Gambia.','','','c','','post-utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:55'),(32,'A Nigerian who has been the secretary of the Commonwealth of Nations Organizations is ','Dr. Ibrahim Gambari ','Professor Adebayo Adedeji ','Chief Jaja Nwachukwu ','Chief Emeka Anyaoku','','','d','','post-utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:56'),(33,'How many countries are in Africa? ','fifteen ','fifty-three ','fifty','fifty-five','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:57'),(34,'Economic Community of West African States (ECOWAS) was based on the initiative of the heads of state  of these two countries ','Nigeria and Ghana ','Nigeria and Togo ','Senegal and Cote d’lvoire ','B and C above','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:58'),(35,'ECOWAS Treaty was signed on ','28-May-74','1-Oct-60','12-Jun-75','none of the above','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:59'),(36,'In which city was the ECOWAS Treaty signed ','Lagos ','Banjul ','Accra ','Abuja','','','a','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:00'),(37,'A capitalist state is based on ','religion ','creating job opportunities ','dictatorship ','free trade','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:01'),(38,'In politics, power is all of the following except ','capacity to affect the actions of others ','ability to make people do things they otherwise not do ','an object ','it is part of a relationship ','','','c','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:21'),(39,'Every political system performs the following basic functions except ','rule making ','rule transformation ','rule enforcement ','rule adjudication .','','','b','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:22'),(40,'These are common forms of governments except ','federal ','Unitary ','Plural ','confederal','','','c','','post-utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:23'),(41,'In a federal system ','the centre is weak ','plurality is abnormal ','there is nothing like autonomous units ','there is unit in diversity ','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:24'),(42,'The legislature performs the following functions except ','determines  the general direction of public policies ','investigating and monitoring the activities of the officials of government ','exercises power of appointment of government officials ','enforcing the law','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:25'),(43,'The independence constitution of 1960 ','introduced bicameral legislature ','catered for the three  regions of Nigeria ','provided for emergency powers ','provided for fundamental human rights','','','d','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:26'),(44,'Nigeria became a republic in ','1960','1961','1963','1914','','','c','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:27'),(45,'The amalgamation of the northern and southern protectorates and the colony of Lagos was in','1960','1966','1914','1957','','','c','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:28'),(46,'catered for the three  regions of Nigeria ','a renewed concept in international studies ','limited to the west ','a process of making the world  smaller ','an increasing integration of the world.','','','b','','post-utme','2007',101,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:29'),(47,'The French colonial policy of Assimilation  was intended to ','to transfer technology to Africa ','to make Frenchmen out of African ','to produce well educated Africans ','to prepare Africans for the Olympic Games','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:30'),(48,'One of these is not a characteristic  of the state ','selection of political leaders ','a written constitution ','monopoly of the legitimate use of armed force ','sovereignty','','','b','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:31'),(49,'The Economic Community of West African States was established in ','May-75','May-63','May-66','May-96','','','a','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:33'),(50,'Nigeria became a republic on ','29-May-99','1-Oct-60','1-Jan-66','1-Oct-63','','','d','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:34'),(51,'Which of the following is not one of the functions of the modern legislatures? ','making laws  ','collecting taxes ','Ratification of treaties ','Performing oversight functions ','','','c','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:35'),(52,'The European Union (EU) is an ','Economic organization ','Association of former British colonies  ','Organization of European states ','Union  of European  organization','','','c','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:36'),(53,'What was the name of the highest ruling body during General Babangida’s rule?  ','The presidency  ','Armed Forces Ruling Council ','The National Council of states  ',' The Federal  Executive Council','','','b','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:37'),(54,'One of the following is not a specialized agency to the United Nations Organization ','security council ','International Labour Organization ','World Health Organization ','UNESCO','','','a','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:38'),(55,'Under which of the following conditions can a Nigerian be deprived of is or her citizenship? ','If married to a foreign  National ','If one holds a dual citizenship  ','If convicted of Armed robbery ','if one Abuse the National Flag.','','','b','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:39'),(56,'The first indigenous Governor-General of Nigeria is ','Donald Cameron ','Sir James Robertson  ','Sir Adesoji Aderemi  (the  Oni of Ife) ','Rt. Hon. Nnamdi  Aziwe','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:40'),(57,'The Action Group crisis was is in which year? ','1966','1962','1963','1965','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:41'),(58,'Free education was introduced in west region by which of these premiers? ','Chief Obafemi Awolowo ','Chief S.L. Akintola  ','Chief Michael Adekunle Ajasin ','Chief Bola Ige','','','a','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:42'),(59,'What does INEC stand for? ','Independent  National Elections Committee ','Independent  Newspapers executive  Committee ','Independent National Export Council ','independent National Electoral Commission ','','','d','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:43'),(60,'The government of one of the following countries operates an unwritten constitution ','The United States ','The Union of Soviet Socialist Republics ','Post –apartheid  South Africa ','The United Kingdom ','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:44'),(61,'The Oldest written constitution is ','American constitution ','British Constitution ','German constitution ','Roman Constitution ','','','a','','post-utme','2008',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:45'),(62,'The EFCC was established to ','Arrest and try corrupt politicians ','Combat economic and financial crimes in Nigeria ','Arrest, detain and prosecute corrupt state governors and legislators  ','Assist the World Bank in monitoring economic projects in Nigeria.','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:46'),(63,'The four British colonial territories in West Africa were ','Senegal, Ghana, Sierra Leone and Nigeria ','Nigeria, Ghana, Sierra Leone and Gambia ','Nigeria, Ghana, Togo and Gambia ','Gambia, Guinea, Ghana and Gabon','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:47'),(64,'In many countries, citizenship can be acquired through the following processes except ','nationalization ','naturalization ','registration ','birth','','','a','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:48'),(65,'Which of the following does not describe a party system? ','one dominant party system  ','two party system','three party system ','multi party system','','','c','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:49'),(66,'ECOMOG was set up primarily to ','drive away the Europeans from West Africa ','serve as a peace keeping force for ECOWAS ','help  Nigeria to control Africa  ','promote rapid economic development among ECOWAS members','','','b','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:50'),(67,'The principle since independence include the following except ','peaceful coexistence ','legal  equality of state ','political dependence ','Non- alignment','','','c','','post-utme','2008',97,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:51'),(68,'The body charged with the trial of persons accused of crimes  against humanity is ','criminal Court of Justice ','International Criminal Court ','International Court of Justice ','ICPC','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:53'),(69,'The independence of the judiciary can be enhance by the following except ','when judges hold office for a fixed term ','when judges cannot be removed from offence even whey they commit crimes ','appointment of judges by and independent body','political neutrality of judges','','','b','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:54'),(70,'Which of the following is not  a feature of Nigeria’s electoral system? ','direct election ','proportional representation ','general election  ','secret ballot','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:55'),(71,'Laws made by local governments are called ','Acts of Parliament ','Local Government Acts ','Bye-laws ','Local Government Decrees','','','c','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:57'),(72,'In the pre-colonial era, which of the following was not a feature of the emirate administration? ','Madawakin ','Waziri ','Sarkin Dogari ','Sarkin Emir','','','d','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:58'),(73,'Federalism was introduced in Nigeria by the ','Lyttleton Constitution ','Clifford constitution ','Macpheson constitution ','1999 constitution.','','','a','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:59'),(74,'Traditional rulers were restricted to ceremonial rules by the local  government  reforms of ','1966','1976','1984','1987','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:01'),(75,'In a parliamentary system, who ensures that members are in the house to vote on major issues? ','party leaders ','speaker of  the house ','clerk of the house  ','whip','','','d','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:02'),(76,'A system in which no single person serves as the chief executive  is know as ','republican ','Revolutionary  ','Collegial  ','Parliamentary ','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:03'),(77,'A social system in which power is derived  from control over land is called ','Oligarchy  ','Feudalisms ','Socialism ','Welfarism ','','','b','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:05'),(78,'“Rule of law” refers to situations in which ','Lawyers are the rulers  ','Laws are supreme ','the judiciary is independent ','parliament makes laws ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:05'),(79,'An important principle of the civil service is ','Authoritarianism  ','Anonymity ','Repotism  ','partisanship.','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:06'),(80,'Which of these constitutions recognized local government is the third tier of government? ','The 1946 constitution ','The 1960 constitution','The  1963 constitution ','the 1979 constitution.','','','d','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:07'),(81,'A condition for judicial indolence is the appointment of judges by the  ','civil service commission ','judicial service commission ','low review constitution ',' code of conduct Bureau','','','b','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:08'),(82,'The minorities  Commission appointed in Nigeria in 1957 recommended that ','More states should be create in the federation ','No more states should created before independence ','Nigeria should revert to a unitary structure ','The legislature  should legislature should legislature for the minority areas ','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:09'),(83,'The second military coup data in Nigeria took place on ','15-Jan-66','1-Oct-66','29-Jul-66','13-Feb-76','','','c','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:10'),(84,'One of these was in existence  before the outbreak of the Second World War ','The OAU  ','League of Nations ','The UNOD  ','The Commonwealth of nations ','','','b','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:11'),(85,'In important advantage of creating more constituents in a federal state is to ','Enhance the people’s participation in government ','Enable ambitions politicians gain political power ','Make the states gain more power from the federal government ','curb the excesses of the federal government','','','a','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:12'),(86,'Under the Presidential system ','The party with the majority of seat forms the executive ','there is the principles of collective responsibility ','the president may come from any of the parties ','the states take instructions from the federal government','','','c','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:13'),(87,'Public opinion is important because it ','Tells government what action it must take ','Lets government know what the people want ','Allows police to manage crisis ','Mothers the minorities in resource learn areas ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:14'),(88,'Bicameral legislature exists ','where two cameras are used to monitor court proceedings ','To prevent the concentration of power on legislative house ','To provide jobs for more politicians ','to ensure that just laws are passed.','','','d','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:16'),(89,'Africans were first elected to the legislature council in British West African ','Ghana ','Sierra Leone ','The Gambia ','Nigeria','','','d','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:17'),(90,'One of the functions of the ministry of External Affairs is the ','Deportation of illegal aliens ','Issuance of passports ','Defense of the country’s boarders ','Promotion of national interest','','','d','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:18'),(91,'The leader of the northern people’s congress was ','Yakubu Maitama Sule ','Abubakar Tafawa Balewa ','Aminu Kano ','Ahmadu Bello','','','d','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:19'),(92,'The idea of democracy started with the ','Romans ','Pensions ','Greeks ','Egyptians','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:20'),(93,'In the Marxist theory, those who live by selling, their labour are called ','Bourgeoisie ','Proletariat ','Feudal lords ','Slaves','','','b','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:22'),(94,'Which of the following NOT an acceptable means of achieving democracy? ','Referendums ','Recall ','Initiative ','Riots','','','d','','post-utme','2009',102,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:23'),(95,'The branch of government responsible for implementing laws is the ','executive ','Legislature ','Judiciary ','Police ','','','a','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:24'),(96,'In a democracy, sovereignty is vested in ','The community ','Public officials ','judges  ','the head of state ','','','a','','post-utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:25'),(97,'Universal Adult Suffrage means all ','Adult citizens can vote ','citizens vote ','Qualified citizens  can vote ','Literate citizens can vote ','','','a','','post-utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:27'),(98,'A bill that applies to the whole population and is intended to promote the general welfare is called ','A private bill ','a decree ','an appropriation bill ','a public deal ','','','d','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:28'),(99,'The Arthur Richards Constitution was designed to last ','nine years  ','five years ','twelve years  ','six year','','','a','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:29'),(100,'Under the 1963 Republican constitution the president exercise ','judicial powers  ','executive powers  ','nominal powers ','concurrent powers','','','c','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:30'),(101,'The Clifford Constitution was notable for ','amalgamating the Northern and southern provinces ','introducing indirect rule ','establishing the legislature  council ','creating a Northern majority in the legislature council.','','','c','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:31'),(102,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as ','exclusive ','extra-ordinary  ','residual  ','concurrent','','','d','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:32'),(103,'During the period 1960-1966, Nigerian was governed under the ','presidential system of government ','Westminster system of government ','confederal system of government ','Unitary system of government.','','','b','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:33'),(104,'Which of the following in the Sokoto Caliphate performed functions similar to that of the Bashorun in Oyo Kingdom? ','Waziri ','Galadima ','Ma’aji  ','Alkali  ','','','a','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:34'),(105,'In the Igbo political system, the most senior  member of the council of elders is the ','Okpara  ',' Obi  ',' Eze  ',' Ofo','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:35'),(106,'A non-monarchial state can best be described as a ','republic ','confederation ','nation ','federation ','','','a','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:36'),(107,'Proportional representation favours a ','multi-party system ','three party system ','two-party system ','one party system ','','','a','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:55:56'),(108,'One major factor that differentiates the presidential from the parliamentary system is  ','separation of the powers ','judicial independence  ','passage of bills ','party system','','','a','','post-utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:38'),(109,'A state with a hegemonic party is one in which ','there is one dominant party ','there is no opposition party  ','there is only one party  ','other parties are officially recognized.','','','a','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:39'),(110,'In the First Republic, Politics in Northern Nigeria was dominated by: ','NEPU ','UMBC ','NCNC ','NPC','','','d','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:40'),(111,'The creation of classless society is the ultimate aim of ','communism ','socialism  ','fascism ','capitalism.','','','a','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:41'),(112,'Herbert Macaulay was the first president of ','NCNC ',' AG  ','UMBC ','NEPU','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:42'),(113,'A special election organized to decide on a political issue is known as ','plebiscite ','by-election  ','general election ','primary election.','','','a','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:43'),(114,'Equality before the law is a component of: ','separation of powers ','checks and balances ','the rule of law  ','constitutional law','','','c','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:44'),(115,'In the process of implementing laws, the executive sometimes performs: ','judicial function ','bureaucratic function ','oversight function ','legislative function','','','a','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:45'),(116,'Which of the these was the main organ of the defunct OAU? ','The liberation committee ','The Council of Ministers  ','The commission for Mediation, Conciliation and Arbitration ','the Assembly of Heads of the state and Government.','','','d','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:47'),(117,'Nigeria hosted the commonwealth conference which eventually led to the independence of ','Mozambique ','Namibia  ','Zimbabwe ','Malawi','','','b','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:47'),(118,'Multilaterism in Nigeria’s foreign policy entails ','Africa being the centre piece of Nigeria’s foreign policy ','Non aligned posture in international affairs ',' Quest   for a permanent membership  of the UN security Council ','Membership of International Organizations','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:49'),(119,'The ancient Greeks practiced: ','direct democracy ','representative democracy ','liberal democracy ','benevolent dictatorships','','','a','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:50'),(120,'Fascism originated from ','Greece ','Italy  ','China  ','Germany','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:50'),(121,'According to Karl Marx, the mode of production that precedes capitalism is ','mercantilism ','feudalism ','socialism ','communalism','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:51'),(122,'One of the distinctive features of a democracy is that it ','Connotes civil rule ','facilitates popular participation ','provides for a unicameral legislature ','is not associated with one party state.','','','d','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:52'),(123,'Serfs are the dominated class under ','capitalisms ','socialism ','fascism ','feudalism ','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:59'),(124,'A human community that is usually cohesive and homogeneous is ','state ','kinship','clan','Nation.','','','d','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:01'),(125,'Which of the following made the earliest contact with the Nigerian society? ','The British  ','The Portuguese ','The French ','The Germans','','','b','','post-utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:02'),(126,'Under the 1963 Republican Constitution, the president exercised ','Judicial powers ','executive powers ','nominal powers ','concurrent powers.','','','c','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:04'),(127,'The principle of federal character was first enunciated in the: ','1989 constitution ','1963 constitution','1999 constitution ','1979 constitution','','','d','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:05'),(128,'Between 1960 and 1966, Nigeria was governed under the  ','presidential system of government ','Westminster system of government ','confederal system of government ','unitary system of government.','','','b','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:06'),(129,'One major factor that differentiates the presidential from the parliamentary system is: ','separation of powers','judicial independence ','passage of bills  ','party system.','','','a','','post-utme','2011',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:08'),(130,'A major feature of the policy of deregulation in Nigeria is the: ','enthronement of market forces mechanism ','increasing dominance of the economy by the state ','proliferations of public corporations ','phenomenal increase in direct foreign investment','','','a','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:09'),(131,'Bicameral legislature exists: ','where cameramen are allowed to cover the proceedings of the legislature ','to prevent the concentration of power in one legislative house ','to provide jobs for more politicians ','to ensure that just laws are passed','','','d','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:10'),(132,'A major issue that distinguishes pressure groups from political parties is: ','membership drive  ','the objective','the voting pattern ','the ideology','','','b','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:11'),(133,'Equality before the law is a component of: ','separation of powers','checks and balances ','the rule of law','constitutional law.','','','c','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:12'),(134,'A law passed by the legislature and assented to by the executive is: ','an act','a presidential proclamation ','a decree   ','a legislative order','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:13'),(135,'The principle of checks and balances empowers the judiciary to: ','invalidate the actions of the other arms ','administer the criminal justice system ','abrogate the law','apply the law','','','a','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:15'),(136,'In a parliamentary, the term shadow cabinet is often used to refer to the: ','back benchers in the house ','deputy prime ministers and assistant ministers ','rebellious members of the ruling party ','portfolio designates of the party in opposition.','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:16'),(137,'The fundamental assumption on which the idea of the rule of law is based is: ','supremacy of the constitution','rationality of human beings ','equality of human beings','love for social justice.','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:17'),(138,'Associations whose main interest is to influence public policies without attempting to capture state power are: ','communal groups','trade unions  ','political parties','pressure groups ','','','d','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:18'),(139,'Multilaterism in Nigeria’s foreign policy entails: ','Africa being the centre piece of Nigeria’s foreign policy ','Non-aligned posture in international affairs ','Quest for a permanent membership of the UN Security Council ','Membership of International Organizations','','','d','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:19'),(140,'The set of policies on the basis of which countries interact with one another is called: ','Diplomacy','Foreign policy ','National policy ','International relations.','','','b','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:20'),(141,'After the defeat of Germany in World War 1, her former colonies were administered under the League of Nations as: ','occupied territories ','trust territories  ','crown colonies ','protectorates.','','','b','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:22'),(142,'The Nigeria-Cameroon crisis over Bakaasi peninsula occurred owning to the interpretation of the Treaty of 1913 and the:','resolution of the OAU ','Maroua Accord','decision of the ECOWAS Tribunal ','decision of the International Court of Justice ','','','b','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:23'),(143,'The first Nigeria leader to become chairman of the Organization of African Unity was:  ','Tafawa Balewa','Murtala Mohammed','Yakubu Gowon  ','Aguiyi-Ironsi','','','c','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:24'),(144,'Nigeria’s non-aligned policy was criticized because of the: ','ECOWAS Treaty ','Nuclear Test Ban Treaty  ','Anglo-Nigerian Pact ','Non-Proliferation Treaty ','','','c','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:25'),(145,'Fascism originated from: ','Greece','Italy ','China ','Germany ','','','b','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:26'),(146,'Diarchy refers to the: ','rule by the government and the opposition parties ','mixture of parliamentary and presidential systems ','rule by political and economic elites ','rule by the military and civilians.','','','c','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:27'),(147,'A major flaw in liberal democracy is: ','the limitation of the freedom of expression ','its emphasis on political rights over economic rights ','that it promotes political instability ','its emphasis on collective ownership.','','','b','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:27'),(148,'Under military regimes in Nigeria, the branches of government that were fused are: ','executive and the legislature','executive and the judiciary ','legislature and the judiciary ','executive, the legislative and the judiciary ','','','a','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:29'),(149,'Which of the following does not described a party system? ','one dominant party system  ','two party system  ','three party system  ','multi-party system','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:30'),(150,'Laws made by local governments are called  ','Acts of Parliament ','Local Government Acts ','Bye-laws  ','Local Government Decrees ','','','b','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:31'),(151,'The commission established to handle the electoral activities in the Second Republic of Nigeria was ','National Electoral Commission  ','National Electoral Commission of Nigeria  ','Federal Electoral Commission  ','Independent National Electoral Commission','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:32'),(152,'The principle of checks and balances modifies the theory of  ','Rule of law ','Supremacy of law  ','Separation of powers  ','Delegated Legislation ','','','c','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:33'),(153,'The European Union (EU) is an  ','Economic organization  ','Association of former British Colonies ','Organization of European States ','Union European organization ','','','c','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:39'),(154,'In Nigeria, promotion of judges is the responsibility of the ','Chief Justice of the Federation  ','Judicial Service Commission  ','Council of Legal Education  ','Attorney-General and Minister of Justice ','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:41'),(155,'The Legislature in Nigeria under the 1999 constitution is composed  ','109 senators and 360 members of the House of Representative  ','109 senators and 350 members of the House of Representative  ','108 senators and 350 members of the House of Representative  ','100 senators and 250 members of the House of the Representative ','','','a','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:42'),(156,'Under a parliamentary system of government, the cabinet holds office at the pleasure of the ','head state ','electorate  ','legislature  ','opposition ','','','c','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:43'),(157,'The ultimate authority in a State is referred to as  ','president  ','sovereignty ','legislature  ','legitimacy ','','','b','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:44'),(158,'The most important aspect of political participation in a democracy is  ','attending political rallies  ','voting in elections  ','registration with a political party  ','the observance of electoral processes ','','','b','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:45'),(159,'One of the foremost theorists of federalism was A. ','A.V Dicey  ','B. K.C Wheare ','C. Karl Marx  ','Baron de Montesquieu ','','','b','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:46'),(160,'The judicial organ of the United Nations is the  ','security council  ','European court  ','general assembly  ','International court of Justice  ','','','d','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:47'),(161,'The Universal Negro Improvement Association was founded by  ','Casely Hayford  ','Herber Macauly  ','Marcus Garvey  ','W.E.B. Du Bois','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:48'),(162,'The Chick’s Commission in Nigeria was set up to look into  ','state’s creation  ','revenue allocation  ','minorities issues  ','extra-judicial killings','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:49'),(163,'Nigeria observed the principal of collective responsibility between  ','1960 and 1966 ','1979 and 1983  ','1985 and 1993 ','1999 and 2003','','','a','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:50'),(164,'The method used to determine the possible outcome of an electoral contest is ','conduct of elections into local government offices  ','registration of political party  ','conduct of gubernatorial elections  ','delineation of electoral constituencies ','','','a','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:51'),(165,'The principle of checks and balances empowers the judiciary to  ','apply the law  ','administer the criminal justice system  ','abrogate the law  ','invalidate the actions of the other arms ','','','d','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:52'),(166,'The final stage in the process of enacting legislation is  ','assent  ','final reading  ','notification  ','guillotine  ','','','a','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:53'),(167,'Every political system performs the following basic functions excepts  ','Rule making  ','Rule transformation  ','Rule enforcement  ','Rule adjudication ','','','b','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:54'),(168,'Globalization is all but one of these ','A renewed concepts in international studies  ','Limitation to the domination of the West  ','A process of making the world smaller  ','An increasing integration of the world ','','','c','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:55'),(169,'A major factor that differentiates International politics from domestic politics is that International politics ','has no centralized institution of government ','cannot enforce sanctions  ','has centralized organs of administration  ','has a central law making body','','','a','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:57'),(170,'Globalization encompasses all the following except  ','market integration  ','internationalization of politics  ','technology improvement  ','economic liberalism ','','','d','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:58'),(171,'The ten non-permanent members of the security council are elected by the  ','general assembly ','trusteeship council  ','security council  ','economic and social council ','','','a','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:59'),(172,'Under the independence constitution of Nigeria, Dr. Nnamdi Azikwe was  ','Prime Minister ','Governor General  ','Lieutenant – Government ','Head of State','','','b','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:00'),(173,'Which organ is referred to as ‘the last hope’ of the common man  ','the parliament   ','the judiciary  ','the executive  ','the legislature','','','b','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:01'),(174,'What does INEC stand for?','Independent National Election Committee  ','Independent Newspapers Executive Committee  ','Independent National Export Council  ','Independent National Electoral Commission','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:02'),(175,'Which of the following is not a feature of Nigeria’s electoral system?  ','direct election   ','general election  ','Proportional representation  ','secret ballot','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:03'),(176,'The head of the Nigerian judiciary is the','Chief Justice of the Federation','Solicitor-General of the Federation  ','Attorney-General and Minister of Justice  ','President of the Court of Appeal','','','a','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:04'),(177,'Manipulation of electoral boundaries for electoral purposes is known as  ','delimitation   ','gerrymandering','devolution   ','deconcentration','','','b','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:05'),(178,'A mechanism used in parliament to limit debate is called  ','guillotine','adjournment   ','Motion of censor   ','delimitation','','','a','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:07'),(179,'A major function of the State Independent Electoral Commissions in Nigeria is the  ','Conduct of elections into local government offices  ','registration of political parties','conduct of gubernatorial elections','delineation of electoral constituencies','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:08'),(180,'In politics, power is all of the following except  ','capacity to affect the actions of others  ','Ability to make people do things they otherwise would not do   ','An object   ','it is part of a relationship','','','c','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:08'),(181,'Political activity at the diplomatic level is called  ','International relations','International law','International politics','All of the above','','','d','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:10'),(182,'Which of these is not an instrument of foreign policy','war    ','diplomacy  ','subversion   ','foreign aid','','','d','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:11'),(183,'The principles that have guided Nigeria’s foreign policy since independence include the following except  ','peaceful coexistence   ','political dependence  ','legal equality of states  ','non-alignment','','','b','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:12'),(184,'The independence  of the judiciary can be enhanced by the following except  ','when judges hold office for a fixed term','when judges cannot be removed from office even when they commit crimes','Appointment of judges by an independent body','political neutrality of judges','','','b','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:13'),(185,'The Aba women riot in Nigeria took place in   ','1960','1950','1922','1929','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:14'),(186,'The pressure group that resorts to unconventional methods to achieve its objectives is called ',' an institutional group  ',' a promotional group',' an interest group   ',' an anomic group','','','d','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:15'),(187,'All but one of the following is not a symbol of political culture','A national flag','The government   ','An anthem  ','The constitution','','','b','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:16'),(188,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives',' propaganda','Lobbying  ','Assault',' Boycott','','','c','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:17'),(189,'A capitalist state is based on','religion   ','creating job  opportunities  ','Dictatorship   ','Free trade','','','d','','post-utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:18'),(190,'A major flaw in a liberal democracy is','that it promotes political instability','the limitation of the freedom of expression','its emphasis on political rights over economic rights','its emphasis on collection ownership','','','c','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:19'),(191,'Nigeria’s voting at the United Nations is guided primarily by','her national interests   ','world peace   ','the cold war  ','her concern for Africa','','','a','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:20'),(192,'On the basis of its structure, a political party can be classified an indirect if','it controls government indirectly  ','it contests elections by proxy','its membership is acquired through other groups  ','it campaigns for votes through agents.','','','c','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:21'),(193,'The study of government essentially facilitates the understanding of the','governance of human societies','functioning of the entire social formation  ','observance of fundamental human rights','organization of the executive arm of government','','','a','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:22'),(194,'In judicial administration, the term ‘the bench’ refers to the  ','lawyers   ','litigants    ','registrars','judges','','','d','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:23'),(195,'How does the president relieve a minister of his appointment in a presidential system of government?','In consultation with the legislature','In consultation with the judiciary  ','by executive action','after serving a full tenure','','','c','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:24'),(196,'An elected legislator in a presidential system can lose his seat through  ','recall  ','cross-carpeting','a vote of no confidence','impeachment','','','a','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:25'),(197,'Which of the following modern principles of democracy is found in the Yoruba traditional political system  ','checks and balances  ','the constitution','multipartism  ','bicameralism','','','a','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:26'),(198,'The subject matter of politics is best described  as   ','political parties','political power  ','elections','people','','','b','','post-utme','2013',97,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:27'),(199,'Government as an institution of a state can best be defined as a body that','recruits and trains political leaders','settles disputes and interprets laws for the state.','Legislates, executes and interprets laws for the state.','conducts elections for the state.','','','c','','wassce','2000',62,'Admin','2016-11-13 16:14:19','2020-07-14 15:09:28'),(200,'Political authority is the','legitimate right to exercise political power.','ability to control political behaviour.','right to participate in political campaigns.','right to form political parties.','','','a','','wassce','2000',64,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:30'),(201,'The rule of law refers to the principle of','legality and impartiality','the supreme power of rulers.','the immunity of judges from legal actions.','the orderly execution of government policies.','','','a','','wassce','2000',58,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:31'),(202,'Freedom of speech is a fundamental human right enjoyed by citizens but it may be limited if','loyalty is not shown to the ruling party','it exposes the wrong doings of the government','it endangers the security of the state.','it is used to cause embarrassment to the judiciary.','','','c','','wassce','2000',66,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:32'),(203,'Which of the following is an obligation of a citizen?','Attending political rallies','Taking part in Independence Day celebrations','Contesting elections','Paying respect to the national flag.','','','d','','wassce','2000',58,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:33'),(204,'The extent to which the citizens regard the institutions, officials and activities of government as right and acceptable is known as','power','legitimacy','influence','authority.','','','b','','wassce','2000',53,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:34'),(205,'Diplomatic immunity is a limitation to','the theory of separation of powers.','principles of checks and balances.','parliamentary supremacy.','the rule of law','','','d','','wassce','2000',54,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:35'),(206,'A federal state is always expensive to run because','every parliamentarian wants to become rich','government departments are duplicated','judges are highly paid from the consolidated fund.','maintenance of the army involves high expenditure.','','','b','','wassce','2000',77,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:36'),(207,'In which of the following party systems are all shades of opinions and interests adequately represented?','Zero-party','One-party','Two-party','Multi-party','','','d','','wassce','2000',61,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:37'),(208,'Veto power in a presidential system lies with the','Attorney General','Chief of Army Staff','Executive President','Prime Minister.','','','c','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:38'),(209,'Which of the following is the lowest class of people in the hierarchy of a feudal system?','Nobles','Serfs','Lords','Manor.','','','b','','wassce','2000',55,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:39'),(210,'Mussolini’s fascism and Hitler’s Nazism are good examples of','anarchy','feudalism','totalitarianism','oligarchy','','','c','','wassce','2000',53,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:40'),(211,'Which of the following is supreme in a federal system?','Judiciary','legislature','Constitution','Executive.','','','c','','wassce','2000',71,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:41'),(212,'An order directing a detainee to be brought before the court is called','habeas corpus','an appearance','an injunction','a referendum','','','a','','wassce','2000',60,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:42'),(213,'Which of the following is a feature of an elite party?','Members are recruited from the working class.','The leadership is composed of aristocrats and wealthy merchants.','It usually consists of existing associations, clubs and trade unions.','Its leadership has certain techniques which attract supporters.','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:43'),(214,'All undesirable feature of capitalism is','exploitation','market economy','profit motive','free competition','','','a','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:44'),(215,'The system of voting on behalf of another person is known as','voting by lot','casting votes.','voting by proxy','preference voting','','','c','','wassce','2000',68,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:45'),(216,'Authoritarianism is least Inherent in','feudalism','fascism','democracy','monarchy','','','c','','wassce','2000',95,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:46'),(217,'In which of the following systems of government are ceremonial and executive powers usually fused?','Parliamentary','Presidential','Collegial','Confederal.','','','b','','wassce','2000',69,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:47'),(218,'The programme of a political party is known as its','constitution','document','manifesto','propaganda','','','c','','wassce','2000',73,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:48'),(219,'Which of the following is a source of a country’s constitution','Mandamus','Judicial precedents','Injunctions','Political decisions','','','b','','wassce','2000',71,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:49'),(220,'The acquisition of political power through hereditary means is a feature of','Communalism','Capitalism','Oligarchy','Monarch','','','d','','wassce','2000',51,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:50'),(221,'Which of the following factors limits the expression of public opinion?','The type of government in a state','The establishment of private media organizations.','The high literacy rate of the citizens','Religious belief of the citizens.','','','a','','wassce','2000',51,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:51'),(222,'If the federal government and the unit governments are to \tpreserve their autonomy, the','Federal government must be supreme','Unit governments must be supreme','Judiciary must be supreme','Constitution must be supreme','','','d','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:52'),(223,'Which of the following best describes the relationship between the central and the component government in a confederation?','The central government collects revenue for component government','The central and component governments have equal powers','The central government legislates for the component governments.','The central government is weaker than the component government.','','','d','','wassce','2000',64,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:53'),(224,'The administrative head of a public corporation in Nigeria is the','Managing Directors','Secretary','Board of Directors','Chairman','','','a','','wassce','2000',59,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:54'),(225,'The appointment, promotion and discipline of civil servants are the responsibility of the','Civil Service Union','Judicial Service Commission','Civil Service Commission','Electoral Commission.','','','c','','wassce','2000',58,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:55'),(226,'Red tapism in the civil service refers to','The use of red tapes on legal documents.','Sloness of action','Prevent entrance','the co-operation between civil servant s and politicians','','','b','','wassce','2000',81,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:56'),(227,'The grant of the right to vote is called','enfranchisement','disqualification','prohibition','participation','','','a','','wassce','2000',67,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:57'),(228,'The system which allows private individuals and companies to own and control the means of production is known as','socialism','fascism','capitalism','communism','','','c','','wassce','2000',65,'Admin','2016-11-13 16:14:24','2020-07-14 15:09:58'),(229,'Which of the following factors may work against a representative system of government?','High literacy of the electorate','The introduction of universal adult suffrage','Independent electoral commission','Rigging of elections','','','d','','wassce','2000',74,'Admin','2016-11-13 16:14:24','2020-07-14 15:09:59'),(230,'The powers allocated to the central government in a federation are contained in the','central legislative list','exclusive legislative list','residual legislative list','concurrent legislative list.','','','b','','wassce','2000',63,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:00'),(231,'The Nigerian federal legislature is called the','Senate','Congress','National Assembly','House of Representatives','','','c','','wassce','2000',70,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:01'),(232,'Delegated legislation has the advantage of','enlightening the public about law making procedure','saving parliamentary time','reducing the expenses of the legislature','preventing the executive from becoming too powerful.','','','b','','wassce','2000',67,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:02'),(233,'Nigeria’s first constitution was the','Lyttleton Constitution','Clifford Constitution','Macpherson constitution','Independence Constitution','','','b','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:03'),(234,'The Nigerian Macpherson Constitution of 1951 was significant for','the introduction of Electoral College','providing for the office of the Prime Minister','the creation of states.','establishing the Supreme Court','','','a','','wassce','2000',68,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:04'),(235,'The concept of regionalism in Nigeria was first introduced by the','Independence Constitution','Macpherson Constitution','Richard’s Constitution','Lyttleton Constitution','','','c','','wassce','2000',71,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:05'),(236,'Immediately after the Nigerian Civil War, Gowon’s regime embarked on','rejuvenation, resettlement and reconstruction','reconciliation, rehabilitation and reconstruction','rebuilding, rejuvenation and rehabilitation','rehabilitation, renaissance and repression.','','','b','','wassce','2000',71,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:06'),(237,'Which of the following military regimes in Nigeria played a prominent role in the liberation of colonized African states?','Aguiyi Ironsi','Murtala / Obasanjo','Muhammadu Buhari','Ibrahim Babangida','','','b','','wassce','2000',68,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:07'),(238,'Traditional rulers appointed by the British to implement indirect rule in Eastern Nigeria were called','palace chiefs','village chiefs','warrant chiefs','crown chiefs','','','c','','wassce','2000',62,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:08'),(239,'The bill introduced by a member of the legislature is known as','a-private member’s bill','an executive bill','a state bill','a political party’s bill','','','a','','wassce','2000',75,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:09'),(240,'In the federation of Nigeria, states are equally represented in the','Senate','House of Representatives','Judiciary','National Population Commission','','','a','','wassce','2000',66,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:10'),(241,'In pre-colonial Igboland, administrative meetings were presided over by the','Mazi','Ogbuefi','Ozo title holder','Okpara','','','c','','wassce','2000',55,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:11'),(242,'Checks and balances was a feature of pre-colonial political administration of the','Hausa','Yoruba','1gbo','Fulani','','','b','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:12'),(243,'Which of the following groups had the best egalitarian traditional political system?','Hausa/Fulani','Yoruba','lgbo','Edo','','','c','','wassce','2000',89,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:14'),(244,'In the pre-colonial Hausa/Fulani system, the appointment of an Emir in the Caliphate was approved by the','Sardauna of Sokoto and the Alkali','Galadima and the Waziri','Shehu of Bomo and the Galadima','Sultan of Sokoto and the Emir of Gwandu','','','d','','wassce','2000',72,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:15'),(245,'The French policy of Assimilation in West Africa was a form of','indirect rule','direct rule','democratic rule','monarchy','','','b','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:16'),(246,'One of the problems facing the Economic Community of West African States (ECOWAS) is that','member states do not attend meetings regularly','member states do not have a common currency','some members states want to contribute larger funds to the community','it is a rival to the Organization of African Unity','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:17'),(247,'The world organization which existed before the United Nations Organization was the','League of Nations','European Economic Community','Organization of African Unity','Commonwealth of Nations.','','','a','','wassce','2000',77,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:18'),(248,'Which of the following bodies is the most representative organ of the United Nations organization (UNO)?','The Economic and Social Council','The Trusteeship Council','The Security Council','The General Assembly.','','','d','','wassce','2000',71,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:19'),(249,'Which of the following is NOT a feature of a state?','Government','Nationality','Sovereignty','Territory','','','b','','neco','2013',83,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:20'),(250,'The legitimacy of government is established when','civil service commission reflects federal character','electoral commission is well funded','free and fair elections are conducted','ministers are appointed to head ministries','','','c','','neco','2013',86,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:23'),(251,'The United Nations Organization (UNO) was founded in','1919','1935','1939','1945','','','d','','neco','2013',71,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:24'),(252,'Which of these best defines a state? A/An','country made up of heterogeneous people','.\\ncountry with definite territory free from external control.','independent country free from external control.','organized body of people occupying a definite territory with sovereign government.','','','b','','neco','2013',88,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:25'),(253,'To ensure impartiality and independence of electoral commission, the body should be','funded by political parties','headed by a justice of the Supreme Court','headed by a professor of political science','independent of government control','','','d','','neco','2013',75,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:26'),(254,'The term ‘collective responsibility’ is an indispensable feature of ___ system of government.','diarchy','federal','parliamentary','presidential','','','c','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:27'),(255,'The Chick’s commission was set up to look into the issue of revenue allocation in','1946','1951','1953','1957','','','c','','neco','2013',94,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:29'),(256,'In the Igbo pre-colonial administration, the council of elders was normally presided over by','Eze','Obi','Okpara','Onowu','','','c','','neco','2013',76,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:30'),(257,'In Nigeria, the head of the electoral commission is called the','Administrative Secretary','Chairman','Electoral Commissioner','Presiding Officer','','','b','','neco','2013',90,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:31'),(258,'Authority is the','ability to compel others to do what they do not want','ability to delegate power to other bodies','ability to rule without fear or favour','capacity to encourage others to do what they intended doing','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:31'),(259,'The Economic Community of West African States (ECOWAS) was formed on','28th May, 1975','29th May, 1976','28th June, 1975','28th July, 1975','','','a','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:32'),(260,'Revenue allocation means the sharing of the','national cake among the people','wealth of a nation among different levels of government','wealth of a nation among the state governments for specific purposes','wealth of a nation between the federal and local governments','','','b','','neco','2013',61,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:33'),(261,'The first military intervention in Nigeria politics was in','1960','1962.','1963','1966','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:34'),(262,'To contest an election, a candidate must be a member of a','campaign organization.','civil society organization.','national assembly','political party.','','','d','','neco','2013',90,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:35'),(263,'Military rule is an example of ______ authority.','charismatic','coercive','delegated','legal','','','b','','neco','2013',73,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:36'),(264,'Which of these countries is NOT a member of Economic Community of West African States (ECOWAS).','Cameroon','Cape Verde','Ghana','Guinea','','','a','','neco','2013',77,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:37'),(265,'Who among the following was NOT an officer in the pre-colonial Yoruba society?','Aremo','Are-Onakakanfo','Balogun','Oluwo','','','d','','neco','2013',76,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:38'),(266,'The 1957 commission of enquiry which investigated the problems of ethnic domination in Nigeria was chaired by','Arthur Richard.','Frederick Lugard.','Henry Willink.','Hicks Phillipon','','','c','','neco','2013',68,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:40'),(267,'Which of these groups of people had no right to make law under the pre-colonial Igbo political structure?','Age grades','Council of Elders','Osu','Priests','','','c','','neco','2013',100,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:41'),(268,'21.\tIn a parliamentary system of government a general election is usually conducted after','dissolution of parliament.','plebiscite.','referendum.','resolution.','','','a','','neco','2013',86,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:42'),(269,'A nation is made up of people who share','heterogeneous characteristics.','homogeneous and heterogeneous characteristics.','homogeneous characteristics.','same government only.','','','a','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:43'),(270,'The Commonwealth of Nations consists of states formerly under ___colony.','Belgium','British','French','Portuguese','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:44'),(271,'Which of these is a feature of Nigeria federalism?','Conflict of authority does not arise','Minority groups are equally benefited','Parliamentary supremacy','Secession is constitutionally forbidden','','','b','','neco','2013',64,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:45'),(272,'Under the 1979 Nigeria constitution, the national assembly was made up of the','House of Chiefs and the Senate.','House of Lords and the House of Representatives.','Lower House and House of Representatives.','Senate and House of Representatives.','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:46'),(273,'','In a single member constituency the voters in that constituency have the right to','declare a winner of an election in their constituency','.\\nelect many representatives.','elect one representative.','','','a','','neco','2013',80,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:47'),(274,'Before the British colonialism in Nigeria, which of these was an instrument for dispensation of justice in !gbo land?','Cult','Land','Masquerade','Ofo','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:48'),(275,'The special box prepared by the electoral commission into which voters cast their votes is called','ballot box.','ballot paper.','logo.','polling booth.','','','a','','neco','2013',70,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:49'),(276,'An electoral officer charged with the responsibility of announcing election result at the local government level is known as','administrative secretary.','chairman.','polling clerk','presiding officer','','','d','','neco','2013',69,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:50'),(277,'The idea of federalism in Nigeria started with ______ constitution.','Clifford','Independence','Lyttleton','Macpherson','','','d','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:51'),(278,'Under the 1979 constitution of Nigeria, each state was allowed to elect','as many senators as the state could finance','five senators','from two to five senators depending on the population','three senators','','','b','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:52'),(279,'In the pre-colonial Hause/Fulani society, the political head was called','Alkali','Galadima','Ma `aji','Wasiri','','','d','','neco','2013',86,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:53'),(280,'In dividing a country into constituencies, it is important to','ask for permission from the traditional ruler in that area','consider historical','display the voters register','involve the politicians in the areas','','','b','','neco','2013',93,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:54'),(281,'The head of the Oyomesi in pre-colonial Yoruba traditional society was','Alaafin','Are - onakakanfo','Baale','Bashorun','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:55'),(282,'The age qualification required for a Nigerian to contest as a Senator is','18','21','30','40','','','d','','neco','2013',78,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:56'),(283,'Nigeria is presently divided into how many federal constituencies?','6','36','109','360','','','c','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:57'),(284,'Before an election is conducted, the country is divided into electoral districts mainly to','avoid double voting','avoid secret voting','enable the electoral commission have more people to register','make it possible for all people in various parts of the country to be represented.','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:58'),(285,'The following were the consequences of the Nigeria civil war EXCEPT the','creation of more states','disruption of educational and economic activities','general feelings of insecurity','loss of lives and properties','','','a','','neco','2013',66,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:59'),(286,'The parties that formed the coalition government in 1960 were ___ and ___','AG, NCNC','AG, NPC','NCNC.NEPU','NPC, NCNC','','','d','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:00'),(287,'In Igbo assembly during the pre-colonial era, decisions were normally reached by','balloting.','consensus','hand raising','queuing','','','b','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:01'),(288,'Which of the following is a function of an electoral commission?','Contesting elections','Organizing and conducting elections','Organizing political parties','Settling disputes among political parties','','','b','','neco','2013',85,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:02'),(289,'The cultural organisation which metamorphosed into \tNorthern People’s Congress (NPC) was','Arewa Consultative Forum','Borno Youth Movement','Egbe Omo Oduduwa','Jamiyyar Mutanen Arewa','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:03'),(290,'Before a candidate is declared winner under absolute majority system of voting, the candidate must score more than ___ of the total vote cast.','half','one - quarter','one - third','three - quarter','','','a','','neco','2013',73,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:04'),(291,'Nigeria became a member country of the Common wealth of Nations on 1st October','1922','1951','1960','1963','','','c','','neco','2013',90,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:05'),(292,'A constitution that requires stringent procedures for amendment is termed ___ constitution.','federal','flexible','rigid','unitary','','','c','','neco','2013',68,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:06'),(293,'To conduct local government elections, the electoral commission divides the local government area into','branches','constituencies','secretariats','wards.','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:07'),(294,'Agents of political socialization include the following EXCEPT','educational institutions','political godfathers','political parties','religious institutions','','','b','','neco','2013',78,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:08'),(295,'Ownership of land is a common feature of','aristocracy','capitalism','communalism','feudalism.','','','d','','neco','2013',70,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:09'),(296,'The term of the Secretary-General of United Nations (UN) is for ___ years.','eight','five','four','six','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:10'),(297,'How many members of the security council of the United Nations (UN) exercise veto power?','Eight','Five','Four','Six','','','b','','neco','2013',80,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:11'),(298,'The head of the electoral commission at the local government area is referred to as the','chairman','electoral officer','resident commissioner','returning officer','','','d','','neco','2013',84,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:12'),(299,'Who was the leader of the Northern Elements Progressive Union (NEPU)?','Alhaji Balarabe Musa','Alhaji Umaru Dikko','Mallam Aminu Kano','Sir Abubakar Tafawa Balewa','','','c','','neco','2013',81,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:13'),(300,'Which of the following is NOT a source of local government finance?','Commercial ventures','Grants','Rates','Sale of bonds','','','d','','neco','2013',86,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:14'),(301,'The first ever civilian - to - civilian transition was recorded in Nigeria in','1966','1979','1999','2003','','','d','','neco','2013',80,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:15'),(302,'A manifesto is essential to political parties because it enables them to','assess the electorates','gauge public opinion','manipulate election','present programme of action','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:16'),(303,'The two Greek words that make up democracy are ___ and ___ ,','arita, demo','demo, aria','demo, krat','demo, kratia','','','d','','neco','2013',92,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:17'),(304,'The Headquarters of Organization of Petroleum Exporting Countries (OPEC) is located in','Algiers','Baghdad','Riyadh','Vienna','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:18'),(305,'The term, “Quorum” means the number of legislators chat','are absent from a day’s proceeding.','assent to any particular bill','belong to the opposition party in the house','must be present before business could start','','','d','','neco','2013',77,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:19'),(306,'The process of sensitizing the electorate on the need to vote on the election day and also observe the rules and regulations of election is referred to as','campaign','free and fair election','gerrymandering','political socialization.','','','d','','neco','2013',90,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:20'),(307,'Which of the following is NOT a feature of the civil service?','Anonymity','Expertise','Impartiality','Rigidity','','','d','','neco','2013',94,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:21'),(308,'In a federal state, power is shared','between the center government and the local authorities','among the state of the federation','among the major regions of the country','between the center government and other co-ordinate units.','','','d','','wassce','1999',71,'Admin','2016-11-13 17:15:28','2020-07-14 15:11:22'),(309,'In a federal system of government, the center is','superior to the other components','inferior to the other components','weak to the other components','equal to the other components','','','a','','wassce','1999',90,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:23'),(310,'In a presidential system of government, ministers are','individually responsible to the president','individually responsible to the senate','collectively responsible to the president','collectively responsible to the electorate','','','a','','wassce','1999',68,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:24'),(311,'The principle of collectively responsibility implies that','individual views cannot be expressed','decisions taken are defended in spite of individual opinions','those who hold different views must acquiesce','government cannot be personalized','','','b','','wassce','1999',77,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:25'),(312,'A government controlled by a few people for their own interests is said to be','an autocracy','a tyranny','an oligarchy','a meritocracy','','','c','','wassce','1999',77,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:26'),(313,'In the parliamentary system of government, formal legislation can take the following forms except','royal proclamations','order in council','acts of parliament','ministerial pronouncement','','','a','','wassce','1999',59,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:27'),(314,'One of the distinctive features of democracy is that it','connotes civil rule','facilitates popular','provides for a unicameral legislature','is not associated with one-party system','','','b','','wassce','1999',55,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:28'),(315,'A hereditary system of government is','an oligarchy','a gerontocracy','an aristocracy','a monarchy','','','d','','wassce','1999',52,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:29'),(316,'The separation of judicial, legislative and executive function is designed to','promote freedom','prevent tyranny','promote peace','prevent anarchy','','','b','','wassce','1999',65,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:30'),(317,'Bicameral legislature are a common feature of','monarchical systems','confederal systems','federal systems','unitary systems','','','c','','wassce','1999',54,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:31'),(318,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as','exclusive','extra-ordinary','residual','concurrent.','','','d','','wassce','1999',66,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:32'),(319,'The most important function of the exclusive organ of government is to','formulate policies','give assent to bills','control foreign policies','enforce laws.','','','a','','wassce','1999',70,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:33'),(320,'The process of learning the norms and values associated with a political system is referred to as political','socialization','indoctrination','culture','participation','','','a','','wassce','1999',60,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:34'),(321,'Which of the following best describes the role of the civil service?','Promoting the interest of civil servants','Advising government and implementing its policies','Keeping records for government','Providing information on government and its agencies.','','','d','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:35'),(322,'One instrument for safeguarding the rights of citizens is','judicial interpretation','presidential pardon','legislative intervention','writ of habeas corpus','','','d','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:36'),(323,'Legislative control over delegated legislation can be performed through','withdrawal of delegated powers by the judiciary','nullification of unconstitutional legislation','investigation into the exercise of delegated powers','approval of legislation by the Chief Justice.','','','c','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:37'),(324,'The feature which best differentiates pressure group from political parties is that they do not','have interest in politics','seek to influences public opinion','have permanent organization','nominate ministers','','','d','','wassce','1999',65,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:39'),(325,'The notion of equality before the law is the same as the principle of','supremacy of the constitution','rule of law','independence of the judiciary','nominate ministers','','','b','','wassce','1999',71,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:39'),(326,'A constitution is classified as unwritten when it','does not emanate from the legislature','provides for separation of powers','originates from Britain','is not contained in any single document','','','d','','wassce','1999',52,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:40'),(327,'.\\n\\nA state is said to be fascist when','its leader is patriotic but the citizens are not','all rights and liberties are subordinated to state interest','its citizens are fanatically in love with their leader','all rights and liberties are placed above state interests.','','','b','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:41'),(328,'A dominant two-party system is operated in','the United Kingdom and the United States','India and Pakistan','France and Germany','South Africa and Senegal','','','a','','wassce','1999',69,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:43'),(329,'Indirect legislation can be achieved by','judicial interpretation and precedent','passing a private member’s bill','second read of the law','the two legislative chambers considering a bill','','','a','','wassce','1999',72,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:44'),(330,'Naturalization is a process of acquiring citizenship by','persons of dual nationality','foreign visitors to a country','resident foreigners of good character','persons born abroad.','','','c','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:45'),(331,'The ideology which states that each person is the best judge of what is in his self-interest is','liberalism','socialism','fascism','feudalism','','','a','','wassce','1999',53,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:46'),(332,'The Code of Conduct Bureau was established essentiality to','ensure the independence of the public service','enhance probity and accountability in public service','probe public office holders','reduce corruption in public life.','','','b','','wassce','1999',67,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:47'),(333,'The British Government revoked the Character of the Royal Niger Company and took over the administration of Nigeria in','1861','1861','1900','1914','','','c','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:48'),(334,'The Independence constitution can be described as','monarchical and presidential','republican and parliamentary','monarchical and parliamentary','federal and republican','','','c','','wassce','1999',62,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:49'),(335,'Which of the following parties formed the opposition in the House of Representatives during Nigeria’s First Republic?','AG and UMBC','NCNC AND NEPU','NPC and NNDP','NCNC and AG','','','a','','wassce','1999',55,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:50'),(336,'The first Head of Government in Independent Nigeria was','Nnamdi Azikiwe','Ahmadu Bello','Tafawa Balewa','Herbert Macaulay','','','c','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:51'),(337,'A feature common to the 1963, 1979 and 1989 constitutions of Nigeria was that they provided for a','republican system','prime minister','ceremonial head of state','president as head of government','','','a','','wassce','1999',83,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:52'),(338,'The Lagos Colony and Protectorate was amalgamated with The Protectorate of Southern','1886','1893','1906','1922','','','c','','wassce','1999',56,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:53'),(339,'During the 1957 constitutional conference, the Willink Commission was set up to','recommend a date for independence','suggest an equitable revenue allocation  \tformula','create new regions in Nigeria','recommend solutions to the problem of the minorities','','','d','','wassce','1999',57,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:54'),(340,'The duty of an Alkali under the Hausa-Fulan political system is to','adjudicate under Islamic laws','make Islamic laws','execute Islamic laws','make treaties under Islamic laws','','','a','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:55'),(341,'The motion for self-government in Nigeria was proposed by Chief Anthony Enahoro in','1956','1953','1956','1958','','','b','','wassce','1999',68,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:56'),(342,'The legislative functions of the government of Benin Kingdom were performed by the','Esama','Ndichie','Uzama','Enigie','','','c','','wassce','1999',69,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:57'),(343,'The highest ruling body under the Murtala Obasanjo regime differed remarkably from that of the Gowon','administration because of the','inclusion of civilians as members','exclusion of military governors from the council','inclusion of the Chief justice as member','','','b','','wassce','1999',63,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:58'),(344,'Decree No.34 of May 1966 is also known as the','State Security Decree','Suspension and Modification Decree','Public Order Decree','Unification Decree','','','d','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:59'),(345,'In 1979, the Unity Party of Nigeria contested and won gubernatorial elections in','Lagos, Ogun, imo, Oyo and Bendel','Lagos, Kwara,Oyo,Ogun, and Benue','Lagos, Ogun,Oyo,Ondo and Bendel','Lagos, Kwara,Ogun,Oyo,Ondo','','','c','','wassce','1999',57,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:00'),(346,'Rate are usually collected in Nigeria by','ministries of commerce in the states','local government councils','the department of Inland Revenue','the traditional rulers','','','b','','wassce','1999',72,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:01'),(347,'One of the main reasons for the creation of more local governments in Nigeria is to','make them more responsive to people’s needs','weaken the powers of traditional authorities','make them more receptive to traditional rule','establish them as the third tier in the federal structure','','','a','','wassce','1999',67,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:02'),(348,'Based on its objectives, the Organization of African Unity can primarily be classified as','a social organization','a political organization','a cultural organization','an economic organization','','','b','','wassce','1999',64,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:04'),(349,'Nigeria’s role in ECOMOG is essentially informed by her','desire for peace and stability','chairmanship of ECOWAS.','desire to establish democracy','member ship of ECOWAS.','','','a','','wassce','1999',61,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:05'),(350,'The annual budget of the OAU is approved by the','Council of Ministers','Secretary General','Assembly of Heads of State and Government','General Assembly','','','c','','wassce','1999',68,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:06'),(351,'The major strategy used by OPEC to influence oil price is by','allocating production quotas to members','influencing buyers at the international market to buyer at high prices','allowing member countries to produce at their discretion','increasing the supply of the commodity','','','a','','wassce','1999',57,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:07'),(352,'Nigeria’s was suspended from the Commonwealth because of her','tacit approval of military dictatorship','negative position towards other nations','complete negligence of freedom of the press','violation of fundamental human rights','','','d','','wassce','1999',79,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:08'),(353,'Nigeria’s non-aligned policy means that she will','have nothing to do with the super-powers','not take sides in international issues based on ideological considerations','avoid having any dealing with any country with Ideological','relate only with member countries of the Non-Aligned Movement','','','b','','wassce','1999',74,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:09'),(354,'One of the underlying principles of Nigerian foreign policy is','encouragement of peace-keeping operations in Africa','interference in the internal activities of other countries','non-commitment towards Africa unity','respect for sovereign equality of all states.','','','d','','wassce','1999',73,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:10'),(355,'Before a new member is admitted to the United Nations Organization, its application must be approved by all','permanent members of the Security Council','members of the General Assembly','members of the Economic and Social Council','members of the International Court of Justice','','','a','','wassce','1999',71,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:11'),(356,'Which of the following international organizations was in existence before the outbreak of the Second World War?','The OAU','The League of Nations','The UNO','The ECOWAS','','','b','','wassce','1999',66,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:12'),(357,'The organ of the United Nations Organization responsible for the former colonies of defeated World War II power is the','General Assembly','Security Council','Economic and Social Council','Trusteeship Council','','','d','','wassce','1999',67,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:13'),(358,'The Land Use Decree of 1978 vested the ownership of land in Nigeria in the','State Governments','Federal Government','Local Governments','Local Chiefs','','','a','','utme','2016',71,'Admin','2016-11-13 17:26:43','2020-07-14 15:12:14'),(359,'During the civil war, the major power that expressed moral support for Biafra’s self-determination was','Great Britain','the United States','China','France','','','d','','utme','2016',83,'Admin','2016-11-13 17:26:44','2020-07-14 15:12:15'),(360,'How many states were created in Nigeria in 1967?','4','12','19','21','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:16'),(361,'Decree 34 of 1966 was unacceptable to many Nigeria because it was','seen as an instrument of impoverishment','perceived to abolish the federal system','promulgated without consultation with the people','considered as alien','','','b','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:17'),(362,'The Mid-Western Region was created in Nigeria in','1961','1962','1963','1964','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:18'),(363,'A major contentious issues confronting Nigerian Federalism is','poverty','education','health care delivery','revenue allocation','','','d','','utme','2016',60,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:20'),(364,'A constitution of any country is basically','a mere piece of paper','a guide to how the country should be governed','a document stating what the leaders should do','a document stating how to power','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:21'),(365,'The term, Rule of Law means','nobody is above the law','everybody is equal before the law','we are being governed by lawyers','A and B above','','','d','','utme','2016',70,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:22'),(366,'A good example of a country which operates a cabinet system of government is','France','United Kingdom','United States','Soviet Union','','','b','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:23'),(367,'Indirect Rule was first introduced into Nigeria by','Dame Margery Perham','Sir Donald Cameron','Sir Frederick Lugard','Sir Arthur Richards','','','c','','utme','2016',68,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:24'),(368,'France introduced the policy of assimilation in her colonies primarily to','teach them the art of leadership','give them a sound education','change their way of life','discourage them from ritual killings','','','c','','utme','2016',56,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:25'),(369,'The first Governor-General of Nigeria was','Lord Lugard','Dr. Nnamdi Azikwe','Sir James Robertson','Major-General Aguiyi Ironsi','','','a','','utme','2016',59,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:26'),(370,'A disadvantage of the one-party system is that it','emphasizes political differences','makes accountability difficult','negates freedom of association','delays decision - making','','','c','','utme','2016',84,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:27'),(371,'A typical form of delegated legislation is','an act','a bill','a decree','a bye-law','','','d','','utme','2016',78,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:28'),(372,'In federalism system of Government currency, Armed forces and National defense is the primary function o','f\\nLocal government Chairman','Armed Forces Ruling Council','Security and Exchange Commission','Exclusive list','','','d','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:29'),(373,'An electoral process in which candidates are selected for elective offices by party members is','Primary election','Electoral College','Bye election','General election','','','a','','utme','2016',95,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:30'),(374,'The system of indirect rule failed in the former Eastern Nigeria primarily because','of the fragmented political structures','the chief refused to cooperate with colonial officer','the high incidence of taxation chief refused to cooperate with colonial officers','the colonial officers imposed warrant chiefs on the people','','','d','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:31'),(375,'Citizenship refers to the','legal status of a member of a state','indigenous member of a state','highest position in a state','social status of a person in a state','','','b','','utme','2016',87,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:32'),(376,'Before Nigeria became a republic, the highest body charged with the administration of justice was the','Supreme Court','Court of Appeal','Privy court','High Court','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:33'),(377,'Nigeria’s withdrawal from the Edinburgh Commonwealth Games in July 1986 was in protest against British','supply of arms of Rhodesia','failure to improve sanctions on South Africa','negative utterances on Nigeria','support for UNITA rebels in Angola','','','b','','utme','2016',71,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:34'),(378,'Which of these is not the supreme organ of the OAU?','the council of Ministers','The Administrative Secretary General','the Assembly of Heads of States and Government','Appointment of staff','','','d','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:35'),(379,'Which of the following electoral bodies in Nigeria conducted elections from 1979 to 1983?','Federal Electoral Commission','National Electoral Commission','National Electoral Commission of Nigeria','Independent National Electoral commission','','','b','','utme','2016',78,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:36'),(380,'The Queen can do no wrong means','the Queen is above the law','the Queen acts on the advice of their ministers on matter of public policy','The Queen is the effective centre of power in the United Kingdom','The Queen has the loyalty of a vast number of the British population','','','a','','utme','2016',67,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:38'),(381,'The main attributes of a state are','government, the police and the armed forces','population, territory, government and sovereignty','federal state and local governments','the press, the legislature, the executive and the judiciary','','','b','','utme','2016',86,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:39'),(382,'Islam was introduced in Northern Nigeria','before the 13th century','in the 17th century','after the jihad of Uthman Dan Fodio','by the British in the early 20th century','','','c','','utme','2016',83,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:40'),(383,'The Aro age-grade system in igboland was','a religious organization','a political organization','a commercial organization','an imperial organization','','','b','','utme','2016',67,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:41'),(384,'ECOWAS comprises','16 independent states','The whole Africa','All West African states','English speaking countries only','','','c','','utme','2016',88,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:42'),(385,'Prior to the formation of the OAU in 1963, Nigeria Identified with the','Brazzaville Group','Casablanca group','Libreville Group','Monrovia Group','','','a','','utme','2016',69,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:43'),(386,'How many countries are founding members of O. P. E. C?','13','5','18','25','','','b','','utme','2016',64,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:44'),(387,'The foremost British trading company on the West African coast was','Royal Niger Company','United African Company','Lever Brothers','John Holt and Sons','','','c','','utme','2016',67,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:45'),(388,'The Zikist Movement was popular for its','philosophy of non-violence','promotion of mass literacy','militant nationalism','encouragement of multi-party system','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:46'),(389,'Which of the following sets of factors contributed to the development of nationalism in Nigeria?','Racial discrimination and oppression','Corruption and ethnicity','Paternalism and indirect rule','Election malpractices and party differences','','','a','','utme','2016',70,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:47'),(390,'Which constitution was created to legislate for the Lagos Colony and the Southern Provinces?','The Richard Constitution','The Clifford Constitution','The Lyttletion Constitution','the MacPherson Constitution','','','b','','utme','2016',77,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:49'),(391,'Judges in Nigeria enjoy security of tenure','if they are appointed by the president','if they have the support of the Nigerian Bar Association','if they are of good behaviour','during the life of the government which appoints them','','','c','','utme','2016',80,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:50'),(392,'Before the 1963 Constitution, the highest court of appeal for Nigeria was the','Supreme Court','Federal Court of Appeal','Privy Council','Federal High Court','','','c','','utme','2016',70,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:51'),(393,'Which of the following is NOT a function of the Police Force in Nigeria?','Traffic control','Arrest of criminals','making of law','Prosecution of criminals','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:52'),(394,'In Nigeria, the highest court for Muslims is the','Alkali Court','Sharia Court of Appeal','Supreme Court','Upper Area Court','','','b','','utme','2016',74,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:53'),(395,'Who was appointed by the federal government of Nigeria as the administrator of western region in 1962?','Dr. M. A. Majekodunmi','Chief Odeleye Fadahunsi','Chief S. L. Akintola','Chief Remi Fani Kayode','','','c','','utme','2016',65,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:55'),(396,'The head of state in the first republic of Nigeria was','an executive president','a nominal president','a party leader','a nominee of the whole country','','','b','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:56'),(397,'Which of the following parties formed the opposition in the House of Representatives during Nigerian first republic?','NCNC and NEPU','AG and UMBC','NPC and NNDP','NCNC and MDF','','','b','','utme','2016',78,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:58'),(398,'A prominent feature of a presidential system of government is','dual executive','vote of no confidence','the rule of law','separation of powers','','','d','','utme','2016',78,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:59'),(399,'The executive checks the excesses of the legislature through','assent to bills','the use of veto power','the ratification of treaties','issuance of orders','','','b','','utme','2016',65,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:59'),(400,'The consciousness of a common identity of a people is called','nationalism','integration','indoctrination','emancipation','','','b','','utme','2016',77,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:01'),(401,'Citizenship of a state by descent requires that','one is born and bred in the state','one’s mother was born in the state','one’s grandparents were citizens of that state','one is domiciled in that state','','','a','','utme','2016',74,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:02'),(402,'In order to dispense justice impartially, the judiciary primarily needs','discipline','logistics','motivation','independence','','','d','','utme','2016',72,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:03'),(403,'A state with a hegemonic political party is one in which','there is one dominant party','there is no opposition party','there is only one party','other parties are officially recognized','','','a','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:04'),(404,'Nigeria commitment to the liberation of Africa could best be seen in her policy towards','Namibia and Mozambique','the Congo and Zimbabwe','Sierra Leone and Chad','South Africa and Angola','','','d','','utme','2016',60,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:06'),(405,'The set of policies on the basis of which countries interact with one another is called','constructive engagement policy','socio-economic policy','national policy','foreign policy','','','d','','utme','2016',99,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:07'),(406,'Nigeria’s membership of the UN complements her foreign policy in the area of','bilateral diplomacy','regional diplomacy','sub-regional diplomacy','multi-lateral diplomacy','','','d','','utme','2016',82,'Admin','2016-11-13 17:26:47','2020-07-14 15:13:08'),(407,'Nigeria teamed up with other developing countries to assert a neutral posture under the platform of','Nationalist Movement','Pan - African Movement','Non - aligned Movement','Negritude Movement','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:47','2020-07-14 15:13:09'),(408,'Nation-state is synonymous with','liberation','sovereignty','nationalism','self-actualization','','','b','','utme','2010',84,'Admin','2016-11-13 18:33:18','2020-07-14 15:13:10'),(409,'A fundamental component of political culture is','community structure','family values','economic values','social values','','','d','','utme','2010',97,'Admin','2016-11-13 18:33:18','2020-07-14 15:13:11'),(410,'A form of oligarchy in which gifted people are at the helm of affairs is','plutocracy','theocracy','gerontocracy','aristocracy','','','d','','utme','2010',85,'Admin','2016-11-13 18:33:18','2020-07-14 15:13:12'),(411,'A state that is ruled by an elected citizen is','a republic','a plutocracy','an empire','a monarchy.','','','a','','utme','2010',90,'Admin','2016-11-13 18:33:18','2020-07-14 15:13:13'),(412,'A true democracy in the modern sense exists where the','majority of the people vote','majority of the people rule','elite rules','elected representatives rule.','','','d','','utme','2010',86,'Admin','2016-11-13 18:33:18','2020-07-14 15:13:14'),(413,'In a parliamentary system, when the legislature passes a vote of no confidence on the executive, it means that the','executive is required to resign','legislature ceases to trust the executive','legislature commences legal proceeding against the executive','executive is expected to go on suspension','','','a','','utme','2010',94,'Admin','2016-11-13 18:33:18','2020-07-14 15:13:15'),(414,'The legislative body of the United States of America is the','Congress','National Assembly','Council','Parliament','','','a','','utme','2010',67,'Admin','2016-11-13 18:33:18','2020-07-14 15:13:17'),(415,'Unicameralism is a feature of the legislature in','the United Kingdom','the United States','Ghana','Israel','','','a','','utme','2010',77,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:18'),(416,'The upper house in most federal systems is created to','oversee and check the lower house','prevent excesses of the executive','enable experienced elders make inputs to governance','ensure equality of federating units','','','d','','utme','2010',85,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:19'),(417,'In which of the following systems is the power of the component units more than that of the central government?','Unitary.','Federal.','Confederal','Monarchical.','','','c','','utme','2010',76,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:20'),(418,'One of the general tenets of fascist doctrine is that the leader is','subordinate to the law of the state','weak relative to the constitution','subordinate to the norms of the society','supreme relative to the constitution','','','d','','utme','2010',81,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:21'),(419,'In a cabinet system of government, executive power is exercised by the','president','monarch','dominant party','head of government','','','d','','utme','2010',84,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:22'),(420,'The principle of separation of powers is best practiced in the','monarchical system','parliamentary system.','feudal system','presidential system','','','d','','utme','2010',79,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:23'),(421,'A typical form of delegated legislation is','a decree','a bill','a bye-law','an act','','','c','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:24'),(422,'16.\tThe rights of a citizen can be withdrawn by the state if the person','is convicted of a serious crime','leaves the country permanently','is pronounced dead','opposes the government violently.','','','a','','utme','2010',102,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:25'),(423,'An electoral process in which candidates are selected for elective offices by party members is','bye election','electoral college','general election','primary election.','','','d','','utme','2010',79,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:26'),(424,'In theory, one major advantage of the one-party systems is that it','promotes greater mass participation in government','serves as an instrument of national integration','guarantees social justice','eliminates intra-party conflict.','','','b','','utme','2010',82,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:27'),(425,'A tactic employed by pressure groups to achieve their objectives is','propaganda','electioneering campaign','lobbying','memorandum.','','','c','','utme','2010',84,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:28'),(426,'Public opinion can be measured through','strike action','referendum','rumour','negotiation.','','','b','','utme','2010',77,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:29'),(427,'Which of the following is the main function of the civil service?','Supporting the party in power.','Allocating resources to the federating units.','Mobilizing grassroots support for government.','Implementing government policies.','','','d','','utme','2010',71,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:30'),(428,'Who was the political head of the Old Oyo Empire?','Aremo.','Oyomesi.','Alaafin.','Bashorun.','','','c','','utme','2010',77,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:31'),(429,'The Igbo political system was based on','family ties','Umunna','Umuada','age grades','','','d','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:32'),(430,'The Aro age-grade system in lgboland was','a commercial organization','a political organization','an imperial organization','a religious organization.','','','d','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:33'),(431,'France introduced the policy of assimilation in her colonies primarily to','change their way of life','give them a sound education','discourage them from ritual killings','teach them the art of leadership','','','a','','utme','2010',91,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:34'),(432,'The foremost British trading company on the West African coast was','Lever Brothers','United African Company','John Holt and. Sons','Royal Niger Company','','','b','','utme','2010',91,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:35'),(433,'Which of these rulers resisted colonial rule and was deported to Calabar?','Oba Ovoramwen.','King Dosunmu','King Jaja.','King Kosoko','','','b','','utme','2010',73,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:36'),(434,'Nigerian nationalism was described as two-phased by','James S. Coleman','Edward Wilmot Blyden','David Ricardo','John Payne Jackson.','','','a','','utme','2010',73,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:37'),(435,'One major weakness of the Independence constitution is that it','gave full powers to the Supreme Court in Nigeria','gave total independence to Nigeria','empowered Britain to continue to rule','failed to provide the country with full sovereignty.','','','d','','utme','2010',75,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:38'),(436,'The first law-making body in Nigeria after amalgamation was','Legislative Council','National Assembly','Regional Assembly','Nigerian Council.','','','a','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:39'),(437,'The designation of ministers as chief executives and accounting officers was recommended by a commission headed by','Simeon Adebo','S.J.Cookey','Dotun Philips.','Jerome Udoji.','','','d','','utme','2010',83,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:40'),(438,'A major shortcoming of the Ombudsman is','its inability to restrain bureaucratic excesses','lack of clear-cut mandate','lack of executive power to enforce decisions','lack of adequate resources.','','','c','','utme','2010',84,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:41'),(439,'One of the strong points of the multi-party system in Nigeria’s Fourth Republic is','government interference','wider political participation','wider anti-democracy campaign','the provision for a bicameral legislature.','','','b','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:42'),(440,'In which of the following is the ceremonial and executive powers fused?','Federal system of government','Parliamentary system of government','Unitary system of government','Presidential system of government','','','d','','utme','2010',75,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:43'),(441,'A major contentious issue confronting Nigerian federalism is','health care delivery','education','revenue allocation','poverty','','','c','','utme','2010',87,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:44'),(442,'The main purpose of establishing public enterprises in Nigeria is to','enrich the elite','provide essential services','compete with the private sector','increase government revenue','','','b','','utme','2010',87,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:45'),(443,'Parastatals are established to','expand business transactions','maximize government profits','render social services','enhance entrepreneurial skills','','','c','','utme','2010',83,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:46'),(444,'The General Purpose Committee of the local government is the','body responsible for supervising self-help projects','local government public relations unit','body for awarding contracts','cabinet of the local government.','','','d','','utme','2010',83,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:47'),(445,'The highest organ of the state during the Babangida Regime was the','Armed Forces Ruling Council','Supreme Military Council','Federal Executive Council .','Provisional Ruling Council.','','','d','','utme','2010',88,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:48'),(446,'Decree 34 of 1966 was unacceptable to many Nigerians because it was','promulgated without consultation with the people','perceived to abolish the federal system','considered as alien','seen as an instrument of impoverishment','','','a','','utme','2010',90,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:49'),(447,'Nigeria broke diplomatic relations with France in 1961 because of:','her poor relations with the francophone countries','General de-Gaulle’s negative attitude towards her','France’s diplomatic relations with Israel','France’s atomic test in the Sahara Desert','','','d','','utme','2010',92,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:50'),(448,'An attribute that Nigeria shares with most non-aligned countries is','her large population','her heterogeneous population','her large size','the state of  her economy.','','','d','','utme','2010',80,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:51'),(449,'Nigeria spearheaded the formation of ECOWAS during the regime of','Murtala Muhammed','Yakubu Gowon','Ibrahim Babangida','Olusegun Obasanjo.','','','b','','utme','2010',97,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:52'),(450,'Nigeria was classified as a front line state for','spearheading the formation of African Union','supporting the liberation efforts in Southern Africa','helping to end the crisis in Liberia','participating in peacekeeping in the Congo','','','b','','utme','2010',71,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:53'),(451,'The prominent role Nigeria played in the UN in the 70’s earned her.','permanent representation at the UN','membership of the Security Council','chairmanship of the General Assembly','non-permanent membership position.','','','b','','utme','2010',94,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:55'),(452,'The head of Nigeria’s foreign mission in a Commonwealth nation is known as','ambassador','charge d’affaires.','attaché','high Commissioner','','','d','','utme','2010',85,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:56'),(453,'One major function of the Authority of Heads of State and Government of ECOWAS is','appointing staff of the Secretariat','appointing the Executive Secretary','preparing the budget of the Community','organizing international conferences','','','b','','utme','2010',71,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:57'),(454,'The tenure of non-permanent members of the Security Council is','4 years','2 years','6 years','5 years','','','b','','utme','2010',106,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:58'),(455,'The Secretary-General of the United Nations is appointed by the','Permanent members of the Security Council on the   recommendation of the General Assembly','General Assembly on the recommendation of the Security Council','General Assembly in plenary session','Security Council acting alone.','','','b','','utme','2010',83,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:59'),(456,'The approval of treaties and agreements of the Economic Community of West African States is the responsibility of the','Council of Ministers','ECOWAS Tribunal','Assembly of Heads of State and Government','Secretariat.','','','c','','utme','2010',94,'Admin','2016-11-13 18:33:20','2020-07-14 15:14:00'),(457,'The distinctive attribute of a state is the monopoly of','control','power','violence','justice.','','','b','','utme','2012',71,'Admin','2016-11-13 18:42:18','2020-07-14 16:08:08'),(458,'State as a political entity refers to','an organized group within a definite territory','an association of men in a given society','a branch of a nation','a geographical location.','','','a','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(459,'Political values are acquired in any given society through','political re-orientation','political campaign','political socialization','political indoctrination.','','','c','','utme','2012',101,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(460,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate.','','','d','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(461,'One judicial function performed by the executive is','granting of amnesty','implementing judicial orders','ensuring obedience to the law','appointing judges.','','','a','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:05'),(462,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary.','','','c','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(463,'A political system which empowers the leader with the ultimate responsibility to execute laws is','parliamentarianism','presidentialism','dictatorship','autocracy.','','','b','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:07'),(464,'A bill is a draft which is awaiting the consideration of the','executive','party caucus','legislature','judiciary.','','','c','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(465,'The private ownership of the means of production is a feature of','capitalism','socialism','communalism','communism.','','','a','','utme','2012',70,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(466,'In a feudal system, the two major classes are the serfs and the','masses','vassals','lords','elite.','','','c','','utme','2012',75,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(467,'An example of a country with a flexible constitution is','South Africa','Britain','Benin Republic','the United States of America.','','','d','','utme','2012',75,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:11'),(468,'The rule of law is a negation of','equality before the law','supremacy of the law','limited power','absolute power.','','','d','','utme','2012',74,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:12'),(469,'To ensure the rights and freedom of citizens, the powers of the arms of government must be','fused','incorporated','separated','rotated.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(470,'Delegated legislation is made by bodies other than the','president','governor','parliament','judiciary','','','c','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(471,'The bringing of a session of a parliament to an end through royal proclamation is known as','political impasse','dissolution of parliament','vote of no confidence','prorogation of parliament.','','','b','','utme','2012',72,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(472,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social light.','','','c','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(473,'The commission charged with the conduct of federal elections in Nigeria is','NEC','FEDECO','INEC','NECON.','','','c','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(474,'An electoral system in which parties are assigned seats in the parliament commensurate to the number of votes polled is','absolute majority','simple majority','proportional representation.','indirect election.','','','c','','utme','2012',78,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(475,'An intra-party activity for the selection of candidates for elective positions is known as','primary election','general election','mid-term election','bye-election.','','','a','','utme','2012',86,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(476,'The primary aim of pressure groups is to','attract people’s attention','protects the interest of members','capture political power','fight corrupt officials.','','','b','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(477,'Which of the following is used in gauging public opinion?','Constitution','.\t\t\\nEducational institution.','Mass media.','Electoral college.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:22'),(478,'A permanent structure that facilitates continuity and guarantees orderly conduct in governance is','bureaucracy','public corporation','ombudsman','political party.','','','a','','utme','2012',86,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(479,'In the Hausa pre-colonial political system, a district was headed by','a hakimi','a dagaci','an alkali','a waziri.','','','d','','utme','2012',73,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(480,'Which of the following ensured the practice of democracy in the pre-colonial Yoruba political system?','Checks and balances.','Fusion of power.','Individual responsibility.','The rule of law.','','','a','','utme','2012',73,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(481,'Colonization of Africa was mainly motivated by','security considerations','economic reasons','religious reasons','cultural factors.','','','b','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(482,'The French colonial system was underlined by the policy of','assimilation','paternalism','socialism','indirect rule.','','','a','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(483,'Radical nationalism in Nigeria is generally attributed to the influence of','Aminu Kano','Herbert Macaulay','Nnamdi Azikiwe','Mbonu Ojike.','','','b','','utme','2012',82,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(484,'Two foreigners that directly aroused nationalist feelings among Nigerians are','Edward Blyden and Payne Jackson','Casely Hayford and James Horton','W.E.du Bois and H. O. Davies','Marcus Garvey and Casely Hayford.','','','d','','utme','2012',98,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(485,'Members of the Senate in Nigeria’s First Republic were','elected directly by the people','elected by electoral college','nominated by regional and federal governments','nominated by the president of the house.','','','b','','utme','2012',64,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(486,'In Nigeria, the agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil Defense Corps','Police.','','','d','','utme','2012',96,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(487,'The National Assembly in Nigeria is primarily responsible for','executing laws','interpreting laws','ratifying appointments','making laws.','','','d','','utme','2012',77,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(488,'The major factor militating against the efficient operation of electoral commissions in Nigeria is','inadequate public support','population size','inadequate skilled manpower','excessive political interference.','','','d','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-07-14 15:14:59'),(489,'A major objective of the Public Complaints Commission is','training and promotion of public servants','settlement of disputes among individuals','addressing the grievances of individuals and groups','fighting corruption and indiscipline.','','','d','','utme','2012',72,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(490,'The three registered political parties at the inception of Nigeria’s Fourth Republic were','PDP, DPP and PPA','PDP, AD and APP','PDP,  AD and PPA','PDP, APP and AC.','','','b','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(491,'The Sharia legal system was first introduced in the Fourth Republic in','Kano State','Katsina State','Zamfara State','Sokoto State.','','','c','','utme','2012',89,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(492,'Quota system and federal character principles were entrenched in the 1979 Constitution to ensure','loyalty','economic empowerment','equity','even development.','','','d','','utme','2012',83,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(493,'Workers in the public corporations are known as','civil servants','private employees','public servants','professional employees.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-07-14 15:15:19'),(494,'The central objective of privatization in Nigeria is to','reduce the retrenchment of workers','encourage prompt payment of salaries','improve standard of living','improve the efficiency of enterprises.','','','d','','utme','2012',78,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(495,'Military intervention in Nigeria arose from','perceived incapability of civilians to govern','international pressure for change','the desire for a military government','civilians’ desire to relinquish power.','','','a','','utme','2012',77,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(496,'The first institution introduced by the military to exercise legislative power was the','Supreme Military Council','Armed Forces Ruling Council','Federal Executive Council','Provisional Ruling Council.','','','a','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 15:15:28'),(497,'The main focus of Nigeria’s foreign policy since independence centres on','south-south cooperation','sub-regionalism','globalism','Afrocentric.','','','d','','utme','2012',77,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(498,'The country that championed decolonization in Africa was','Nigeria','South Africa','Ghana','Kenya.','','','c','','utme','2012',93,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(499,'A major drawback to the NEPAD initiative is its','articulation by few African leaders','affiliation to the African union','inability to empower the youth','reliance on Western donors for funds.','','','d','','utme','2012',65,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(500,'The structure of the African Union includes','The Court of Justice, Pan African Congress and People’s Assembly','Pan African Parliament, the Court of Justice and the Peace and Security Council','Specialized Technical Commission, the Court of Justice and Humanitarian Board','People’s Assembly, Humanitarian Board and the Peace and Security Council.','','','b','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(501,'ECOMOG at the initial stage of its intervention in Liberia was perceived as','neutral','incompetent','partisan','invaders.','','','d','','utme','2012',89,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(502,'The African leader mostly credited for spearheading the formation of the African Union is','Muammar Ghaddafi','Abdelaziz Bouteflika','Abdoulaye Wade','Thabo Mbeki.','','','a','','utme','2012',67,'Admin','2016-11-13 18:42:20','2020-07-14 15:15:46'),(503,'One of the programmes binding members of the Commonwealth is the','food and aid programme','cultural programmes','agenda for peace','scholarship scheme.','','','d','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(504,'As part of the reforms in the UN, two slots were proposed in the Security Council for','Asia','Africa','America','Europe.','','','b','','utme','2012',75,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(505,'The founding members of OPEC are','Algeria, Iran, Iraq, Saudi Arabia and Kuwait','Nigeria, Libya, Iran, Iraq and, Saudi Arabia','Venezuela, Nigeria, Libya, Iran and Iraq','Saudi Arabia, Iran, Iraq, Kuwait and Venezuela.','','','d','','utme','2012',85,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(506,'Power that is delegated is exercised','indirectly','by devolution','directly','by coercion.','','','a','','utme','2013',64,'Admin','2016-11-13 20:36:42','2020-07-14 15:16:03'),(507,'De jure sovereignty is acquired through','force','law','grant','treaty.','','','b','','utme','2013',80,'Admin','2016-11-13 20:36:42','2020-07-14 15:16:06'),(508,'A group of people who live together under a common law within a definite territory is a','state','community','nation-state','nation.','','','a','','utme','2013',72,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:07'),(509,'Political socialization is associated with','free choice of party programmes','military take over of civilian government','the transmission of political values','political transition.','','','c','','utme','2013',68,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:09'),(510,'According to Aristotle, a form of government in which the few rule for the benefit of all is','polyarchy','diarchy','aristocracy','autocracy.','','','c','','utme','2013',83,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:12'),(511,'Rule by the old people is known as','theocracy','monarchy','gerontocracy','feudalism.','','','c','','utme','2013',79,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:14'),(512,'As an executive, the commissioner is charged with the responsibility of','making laws','implementing laws','writing laws','giving loans.','','','b','','utme','2013',96,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:16'),(513,'Rule adjudication is a primary function of the','legislature','judiciary','executive','government.','','','b','','utme','2013',71,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:30'),(514,'The judiciary controls the executive in federal states through','motions','delegated legislation','judicial overview','judicial review.','','','d','','utme','2013',90,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:32'),(515,'One major advantage of the unitary system is that it tends to make government','strong and stable','free of controversy','distant from the people','popular among the masses.','','','a','','utme','2013',88,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:35'),(516,'The presidential system differs from the parliamentary system of government in that','the tenure of office of the president is limited','the principle of collective responsibility applies','executive and legislative powers are fused','powers of the three arms of government are merged.','','','a','','utme','2013',84,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:39'),(517,'Which of the following advocates’ equitable distribution of wealth?','Plutocracy.','Capitalism.','Aristocracy.','Socialism.','','','d','','utme','2013',68,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:43'),(518,'A constitution that is difficult to amend is','flexible','rigid','written','unwritten.','','','c','','utme','2013',76,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:46'),(519,'Which of the following constitutions is more suitable for centralization of political power?','Flexible constitution.','Unwritten constitution.','Rigid constitution','Written constitution.','','','d','','utme','2013',90,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:49'),(520,'The act of transferring autonomous powers to subordinate agencies is','devolution','concentration','deconcentration','delegation.','','','a','','utme','2013',88,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:51'),(521,'Which of the following types of citizenship cannot be withdrawn?','Citizenship by naturalization.','Citizenship by conquest.','Citizenship by birth.','Honorary citizenship.','','','c','','utme','2013',71,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:53'),(522,'The right of citizens to vote is','adult suffrage','universal suffrage','nationality suffrage','electoral suffrage.','','','b','','utme','2013',76,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:55'),(523,'A political party is different from a pressure group in its','source of finance','objective','organization','strategy.','','','b','','utme','2013',72,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:57'),(524,'One of the functions of pressure groups is to','contest elections to serve the people','nominate the president','prepare the budget','articulate the opinion of their members.','','','d','','utme','2013',91,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:59'),(525,'Public opinion refers to the','aggregate of attitudes held by members of the national assembly','aggregate views of groups on particular government activities','views held by the president of a country','views of the Chief Justice of a country.','','','b','','utme','2013',83,'Admin','2016-11-13 20:36:43','2020-07-14 15:17:02'),(526,'The class that oversees the implementation of government decisions and policies is the','Administrative','Executive','Clerical','Technical.','','','b','','utme','2013',86,'Admin','2016-11-13 20:36:43','2020-07-14 15:17:06'),(527,'The performance of ritual rites in the Yoruba empire is the responsibility of the','Oyo mesi','Aare-ona kakanfo','Oba','Ogboni.','','','d','','utme','2013',68,'Admin','2016-11-13 20:36:43','2020-07-14 15:17:07'),(528,'Under the emirate system, the commander of the army is the','Alkali','Hakimi','Sarkin Fada','Madawaki.','','','d','','utme','2013',66,'Admin','2016-11-13 20:36:43','2020-07-14 15:17:09'),(529,'The indirect rule system of administration was more successful in Northern Nigeria because','the people were mainly interested in being governed indirectly','of the existence of an organized structure in the area','the Europeans ensured that the farmlands of the natives were not confiscated','the natives showed little or no resistance.','','','b','','utme','2013',77,'Admin','2016-11-13 20:36:43','2020-07-14 15:17:13'),(530,'The earliest nationalist activities in Nigeria were spearheaded by','educated elites','trade unions','traditional rulers','political parties.','','','a','','utme','2013',63,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:16'),(531,'The first notable nationalist movement in West Africa was the','National Congress of British West Africa','West African Students Union','Nigeria Youth Movement','Aborigines Rights Protection Society.','','','a','','utme','2013',63,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:19'),(532,'In Nigeria’s First Republic, the Prime Minister was both the','Head of government and a lawmaker','Head of State and Commander-in-Chief of the armed forces','Commander-in-Chief of the armed forces and Party leader','Head of State and Party leader.','','','a','','utme','2013',88,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:22'),(533,'Under the 1979 Constitution, statutory allocation of revenue to local government councils is the responsibility of the','Council of State','Houses of Assembly','National Economic Council','Federal Legislature.','','','d','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:24'),(534,'Under Nigeria’s Second Republic, the Senate was under the leadership of','John Wash Pam','J. S. Tarka','Joseph Wayas','Godwin Ume-Ezeoke.','','','c','','utme','2013',83,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:27'),(535,'The Revenue Mobilization, Allocation and Fiscal Commission is statutorily empowered to determine the remuneration of','all civil servants','only elected representatives','political office holders','employees of public corporations.','','','a','','utme','2013',68,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:30'),(536,'The primary function of the Code of Conduct Bureau is to','ensure due process by public officers','ensure minimum standard of morality','retain custody of declarations','receive declaration of assets.','','','d','','utme','2013',85,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:33'),(537,'The party system practiced in Nigeria’s Third Republic was','multi-party','two-party','zero-party','one-party.','','','b','','utme','2013',82,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:37'),(538,'Nigeria adopted a federal system of government because of','the fear of domination of minorities','uneven development','the availability of limited resource','the adoption of a state religion.','','','a','','utme','2013',77,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:40'),(539,'The highest policy making body under the Gowon Regime was the','Federal Executive Council','Armed Forces Ruling Council','Provisional Ruling Council','Supreme Military Council.','','','d','','utme','2013',83,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:45'),(540,'Nigeria became a federation of thirty-six states during the era of','Yakubu Gowon','Ibrahim Babangida','Sani Abacha','Abdulsalami Abubakar.','','','d','','utme','2013',74,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:49'),(541,'Which of the following headed the committee that recommended the suitability of Abuja as a new federal city?','Justice Akinola Aguda.','Justice Buba Ardo.','Justice Atanda Fatai Williams.','Justice Udo Udoma.','','','a','','utme','2013',85,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:52'),(542,'A public corporation is managed by','the board of directors','a minister','a general manager','the board of governors.','','','a','','utme','2013',78,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:55'),(543,'A major source of revenue in the post -1976 local government in Nigeria is','the joint state-local government account','internally generated revenue','the federation account','grants and loans.','','','c','','utme','2013',81,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:57'),(544,'The Provisional Ruling Council was the highest ruling body during the regime of','Sani Abacha','Muhammadu Buhari','Ibrahim Babangida','Murtala Muhammed.','','','c','','utme','2013',70,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:00'),(545,'Nigeria’s non-alignment policy in the sixties lacked real substance because of her','close ties with Britain','Afrocentric policy','poor economic potential','partnership with Asian countries.','','','a','','utme','2013',87,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:02'),(546,'Under the Technical Aid Corps, Nigerian experts are deployed to','Asia, Africa and the Pacific','Africa, the Pacific and the Caribbean','Europe, South America and Asia','the Pacific, the Caribbean and Europe.','','','b','','utme','2013',75,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:05'),(547,'The centre-piece of Nigeria’s foreign policy covers only','Asia','Europe','Africa','Latin America.','','','c','','utme','2013',68,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:07'),(548,'Which of the following countries pioneered the establishment of ECOWAS alongside Nigeria?','Cameroun.','Ghana.','Togo.','Algeria.','','','c','','utme','2013',67,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:09'),(549,'Nigeria’s role in the African Union was most prominent during the regime of','President Ibrahim Babangida','President Olusegun Obasanjo','President Shehu Shagari','President Umaru Yar’adua.','','','b','','utme','2013',65,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:11'),(550,'A representative of a Commonwealth country in another member state is known as','High Commissioner','Consul-General','Ambassador','Attaché.','','','a','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:17'),(551,'The organ of UN that promotes voluntary co­operation among member states in diverse areas is the','Security Council','International Court of Justice','General Assembly','Economic and Social Council.','','','d','','utme','2013',83,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:20'),(552,'The main representative body of the United Nations is the','Secretariat','Security Council','General Assembly','Trusteeship Council.','','','b','','utme','2013',80,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:38'),(553,'The AU differs from the OAU in having','no assembly of Heads of State','effective tools for decision enforcement.','no permanent headquarters','a minimum of divergent viewpoints','','','b','','utme','2013',75,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:41'),(554,'OPEC has strong influence with the','IMF','EU','ADB','AU.','','','d','','utme','2013',87,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:43'),(555,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','police, army, sovereignty custom.','','','c','','utme','2014',75,'Admin','2016-11-13 20:49:36','2020-07-14 15:18:46'),(556,'The process of taking part in political and public affairs can be termed political','recognition','culture','participation','socialization','','','d','','utme','2014',79,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:47'),(557,'Membership of a society is','conventional','mandatory','voluntary','constitutional','','','c','','utme','2014',109,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:50'),(558,'In a democratic political system, the political sovereign is usually the','constitution','political parties','electorate','legislature','','','c','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:51'),(559,'One basic feature of a monarchical form of government is that','separation of powers is absolute','members of the executive are elected','succession is through heredity','the ruler has a fixed tenure','','','c','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:52'),(560,'One main advantage of bicameral legislature is that it','makes for quick deliberation during emergencies','makes passage of bills easy','is less cumbersome to pass bills','is not easy to manipulate bills','','','d','','utme','2014',64,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:53'),(561,'The court that has ultimate power to interprets the constitution is the','Supreme Court','Magistrate Court','High Court','Court of Appeal','','','a','','utme','2014',87,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:54'),(562,'Unitary system of government is more suitable to a country','that is sparsely populated','that possesses a strong and modern army','with a robust and dynamic economy','with a relatively small area and a homogenous population','','','d','','utme','2014',80,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:55'),(563,'An example of a country ruled by a constitutional monarch is','Uganda','Morocco','Italy','Libya','','','c','','utme','2014',80,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:56'),(564,'The development of a classless society is the goal of','conservatism','feudalism','liberalism','maxims','','','d','','utme','2014',72,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:57'),(565,'A flexible constitution is one which is','easily amended','popular with the legislators','known to all the citizens','written by the parliament','','','a','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:58'),(566,'Which of the following is a feature of checks and balances?','judicial precedent','Judicial immunity','Judicial review','Code of conduct','','','c','','utme','2014',75,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:59'),(567,'Laws made by military governments at the state level are called','decrees','bye-laws','edicts','acts','','','a','','utme','2014',75,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:00'),(568,'Citizenship is acquired by an alien through','registration','birth','conferment','naturalization','','','d','','utme','2014',75,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:01'),(569,'The officer responsible for announcing the result of an election is known as','ballot officer','presiding office','returning officer','electoral officer','','','c','','utme','2014',83,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:02'),(570,'The ultimate aim of political parties is to','implement people-oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','utme','2014',77,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:03'),(571,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their members','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:03'),(572,'Which of the following is not a dimension of public opinion?','Polling','Orientation','intensity','Substance','','','a','','utme','2014',78,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:04'),(573,'The body that is responsible for the appointment, discipline, promotion and dismissal of civil servants is the','Ministry of Establishment','Bureau for Public Service Reforms','Civil Service Commission','Ministry of Labour and Productivity','','','c','','utme','2014',71,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:05'),(574,'In the pre-colonial Hausa political system, the Madawaki performed the function of','Minister of Education','Minister of Defense','Minister of Interior','Minister of works','','','b','','utme','2014',70,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:06'),(575,'In the Old Oyo Empire, the Ajele','ensured good governance of the districts','mobilized the army','was the Head of the army','ensured the safety of all trade routes','','','a','','utme','2014',78,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:07'),(576,'The General Strike of 1945 was caused primarily by the','harshness in trade laws as it concerns the Africans','government’s rejection of a demand for an increase of 50 percent in the cost of living allowance','persistent implementation of discriminatory laws','disparity in the criteria for employment','','','a','','utme','2014',79,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:08'),(577,'Before 1945, the component units of Nigeria were','districts','provinces','states','regions','','','b','','utme','2014',68,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:09'),(578,'Nationalists agitation began in Nigeria with the','Lagos protest against water rate in 1908','introduction of indirect rule','annexation of Lagos in 1861','formation of West Africa Youth League','','','b','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:10'),(579,'The emergence of nationalism was essentially the result of the ills of','independence','slavery','colonialism','imperialism','','','c','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:11'),(580,'Which of the following nationalists was the founder of Nigeria’s first political party?','Abubakar Tafawa Balewa','Ahmadu Bello','Nnamdi Azikiwe','Herbert Macaulay','','','d','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:12'),(581,'The division of powers between the federal and regional governments into exclusive, concurrent and residual lists was done by the','1999 Constitution','Independence Constitution','Republican Constitution','1979 Constitution','','','b','','utme','2014',67,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:13'),(582,'The Nigerian Independence Constitution was modified by the','1963 Constitution','1999 Constitution','1989 Constitution','1979 Constitution','','','a','','utme','2014',86,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:15'),(583,'The President of Nigeria was indirectly elected through secret ballot for a period of five years by the senate in','1983','1960','1963','1979','','','c','','utme','2014',57,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:15'),(584,'The main function of the Federal Character Commission in Nigeria is','ensuring fair representation of all states in the public service','reviewing unfair administrative decisions','settling disputes among societies','providing free social services to the citizens','','','a','','utme','2014',63,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:16'),(585,'The power of appointing the chairman of the Independent National Electoral Commission is vested in the','Judicial Council','Council of State','President','Senate','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:17'),(586,'The NCNC and the NPC facilitated the creation of the','Mid-West Region','Northern Region','Western Region','Eastern Region','','','a','','utme','2014',69,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:19'),(587,'One of the major problems of Nigerian federalism is','lack of revenue to cater for the demands of the federation','inadequate manpower to fill vacancies','imbalance in the structure and sizes of units of federation','pre-colonial administrative structure among the units of federation','','','c','','utme','2014',65,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:20'),(588,'Which of the following was done during the Gowon administration to reduce regional structural imbalance in the federation?','Appointment of ministers','Creation of states','Increase in revenue allocation','Formation of political parties','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:21'),(589,'A problem of public corporations in Nigeria is','choice of leadership','public control','emphasis on subsidies','wastage of resources','','','d','','utme','2014',81,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:22'),(590,'One feature of public corporations that was weakened by privatization is','social control','national integration','social harmony','government control','','','d','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:23'),(591,'One of the main duties of the Local Government Service Commission is to','supervise and manage the personnel of local governments','conduct election into Local Council','create an enabling working environment for council workers','handle requests for the creation of more local governments','','','a','','utme','2014',82,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:24'),(592,'The option A4 model was used in the conduct of the','2007 elections','1983 elections','1993 elections','1999 elections','','','c','','utme','2014',76,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:25'),(593,'The review of Nigeria foreign policy under the Murtala/Obasanjo regime was done by','Udoji Committee','Aboyade Committee','Adedeji Commission','Philips Commission','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:26'),(594,'Which of the following is a guiding principle of Nigeria’s foreign policy?','Total opposition to the Cold War','Posting of only carrier diplomats as envoys','Interference in the affairs of African countries','Decolonization of all African states','','','d','','utme','2014',80,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:27'),(595,'The Technical Aids Corps was established during the regime of','Olusegun Obasanjo','Sani Abacha','Ibrahim Babangida','Muhanmmadu Buhari','','','a','','utme','2014',68,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:28'),(596,'The granting of asylum to Charles Taylor by Nigeria was to','protect Nigerians in Liberia','promote peace in Liberia','defy the western powers','Control Liberia','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:29'),(597,'Nigeria is regarded as a frontline state because she','sent policemen for peacekeeping in Namibia','assisted the liberation struggle in Southern Africa','assisted ECOMOG troops in Liberia','sent troops for peacekeeping Somalia.','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:30'),(598,'The reason behind Nigeria’s suspension from the Commonwealth in 1995 was','legal','political','economic','socio-cultural','','','b','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:48'),(599,'Commonwealth nations are represented in other member nations by','charge d’ affaires','ambassadors','high commissioners','attaches','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:49'),(600,'The UN succeeded the','Warsaw Pact','NATO','SEATO','League of Nations','','','d','','utme','2014',81,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:50'),(601,'The number of permanent members of the UN Security Council is','eight','five','six','seven','','','b','','utme','2014',70,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:51'),(602,'The Secretary General of the OAU holds office for a renewable period of','six years','three years','four years','five years','','','c','','utme','2014',78,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:52'),(603,'Former colonies of Britain belong to the association known as','OECD','NATO','European Union','Commonwealth','','','d','','utme','2014',59,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:53'),(604,'Government refers to all the following, except','an institution of the state','the process of ruling a political community','the exercise of power and authority','the act of civil disobedience.','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:25','2020-07-14 15:19:54'),(605,'Government as the act of governing means the','activities of pressure groups and political parties','act of vetoing a bill','orders of judiciary and legislature','activities by which governmental policies are made and implemented','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:55'),(606,'Unwritten constitution means that the constitution is','not written down','based only on conventions.','not contained in any single book','in draft','','','c','','wassce','1988',62,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:56'),(607,'The delegation of Administrative Powers to the local units with the central supervision and control is called.','devolution','decentralization','deconcentration','centralization','','','a','','wassce','1988',92,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:57'),(608,'Which of the following is not the function of the government?','Building of roads, bridges, canals, etc.','Provision of education.','Maintenance of relations with other states.','Provision of all the material needs of all citizens.','','','d','','wassce','1988',76,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:58'),(609,'A flexible constitution can only be amended by','two-third (2/3) majority vote in the legislature.','referendum.','three-quarter (3/4) majority vote in the legislature.','simple majority vote in the legislature.','','','d','','wassce','1988',41,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:59'),(610,'Which one of the following countries has an unwritten constitution?','Great Britain','France','United States of America','Federal Republic of Germany','','','a','','wassce','1988',71,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:59'),(611,'A rigid constitution is said to be best suited for a','Federal Government','Socialist','Military Government','Unitary Government','','','a','','wassce','1988',61,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:00'),(612,'Federal Election were held in Nigeria in','1946, 1951, 1954, 1979 and 1983','1954, 1959, 1964, 1979 and 1983.','1923, 1946, 1951, 1979 and 1983','1954, 1960, 1964, 1979 and 1983','','','b','','wassce','1988',66,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:01'),(613,'The two components of sovereignty are','the rule of law and fundamental human rights.','political power and political authority','political culture and political socialization.','political independence and supreme authority of the state within its territory.','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:02'),(614,'Nigeria broke diplomatic relations with Israel in 1973 because of Israeli.','recognition of Biafra.','occupation of Egyptian territory','refusal to give aid to Nigeria.','economic relations with South Africa.','','','b','','wassce','1988',71,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:03'),(615,'The United Nations Organization [UNO] has its headquarters in','Britain','USSR','USA','China','','','c','','wassce','1988',66,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:04'),(616,'The state is different from the government because','The state unlike the government is permanent','.\\nThe government is made up of powerful people.','Members of the government are elected.','The state is created by God.','','','a','','wassce','1988',56,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:05'),(617,'A state is a special form of human association because it','has a legitimate monopoly of life and death penalties over its citizens','is the richest association in society.','has a constitution approved by the citizens','can punish law breakers','','','a','','wassce','1988',61,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:14'),(618,'Which of the following is not relevant to communism','Democracy','Violent revolution','Friedrich Engels','Private Enterprise.','','','d','','wassce','1988',54,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:15'),(619,'A Nigeria citizen can only be deprived of his citizenship if he is','condemned to death.','convicted by a Court of law','married to a foreigner','holding a dual citizenship.','','','d','','wassce','1988',60,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:16'),(620,'In the process of governing. OUTPUT refers to','the influence of pressure group','demand of the political system','the decision of the government.','the opinion of the electorate','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:17'),(621,'Another word for red-tapism is','democracy','autocracy','idiosyncrasy.','bureaucracy','','','d','','wassce','1988',64,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:18'),(622,'Rule adjudication is the main function of the','Executive','President','legislature','judiciary','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:19'),(623,'The major problem that arose from the 1979 election centred around the','inability of many voters to find their names on the voters register','cancellation of election results in many constituencies because of alleged irregularities','inability of some dissatisfied candidates to seek redress in the Court of law.','controversy over the presidential election result.','','','d','','wassce','1988',74,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:20'),(624,'The following are the key factors which influence Nigeria’s foreign relations except','peaceful co-existence','economic dependence.','non-interference','respect for territorial integrity.','','','b','','wassce','1988',52,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:21'),(625,'The independent of Nigeria was in 1945 with the coming to power in Britain of','Conservative party','Tory party','Liberal party','Labour party','','','d','','wassce','1988',70,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:22'),(626,'Which of the following is not an accepted way of resolving international conflict','Diplomacy.','Non-military use of force.','Propaganda','Nuclear war.','','','d','','wassce','1988',64,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:23'),(627,'The membership of the Council of States in Nigeria is made up of','Federal Ministers','State commissioners','State governors','the State Governors and the Head of State.','','','d','','wassce','1988',54,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:24'),(628,'The common wealth is','an economic organization','made up of all independent ex-colonies of Britain','made up of all countries who are friendly with Britain.','made up of independent European countries.','','','b','','wassce','1988',69,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:25'),(629,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known as the','Bales','Obas','Ogboni','Oyomesi.','','','d','','wassce','1988',86,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:26'),(630,'The declaration of a state of emergency in Western Nigeria was protected by the constitution of','1954','1951','1960','1963','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:26'),(631,'The primary purpose of the state is to','establish a system of law and order','train people to become good citizens','cater for all the needs of the citizens','ensure the self sufficiency of its people','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:27'),(632,'The Armed Forces Ruling Council came into existence under the','Buhari Administration','Gowon  Administration','Ironsi Administration','Babangida Administration','','','d','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:28'),(633,'Which of the following is not a specialized agency of the United Nations Organization?','World Health Organization','The Food and Agriculture Organization','The international Labour Organization','General Assembly','','','d','','wassce','1988',84,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:29'),(634,'The creation of the office of the Prime Minister in Nigeria was accomplished in','1951','1954','1957','1959','','','c','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:30'),(635,'Which of the following is not a function of a party secretariat?','Electing the leader of the party','Organizing party conferences','Publishing the party’s manifesto','Planning party strategy to win election','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:31'),(636,'The first Military President of Nigeria is','Lt. General Olusegun Obasanjo','Major General J.T.U. Aguiyi-Ironsi','Major General Ibrahim Babangida','General Murtala Muhammed','','','c','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:32'),(637,'The following factors favoured the introduction of indirect rule in Nigeria except the','Shortage of manpower','Shortage of funds','Existence of a system of taxation','Existence of educated elites','','','d','','wassce','1988',63,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:33'),(638,'The psychological support a regime gets from its citizens. If they believe the regime is right and ought to be obeyed is known as','Sovereignty','power','authority','legitimacy','','','d','','wassce','1988',48,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:34'),(639,'The voluntary activities of members of a society in the selection of rulers is known as','political participation','political socialization','political decision','political culture','','','a','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:35'),(640,'Residual powers under the Nigerian independence constitution were the powers exercised by','the Federal Government','the Regional Governments','the Local Government','both the Federal and Regional Governments','','','b','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:36'),(641,'The highest court of appeal under the Republican constitution of Nigeria was the','Federal High Court','Judicial Committee of the Privy Council','Regional court of Appeal','Supreme Court','','','d','','wassce','1988',58,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:37'),(642,'Nigeria became a federation of 19 states in','1875','1976','1967','1978','','','b','','wassce','1988',60,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:38'),(643,'A popular form of proportional representation is','communal representation','single transferable vote','the alternative vote','the second ballot','','','a','','wassce','1988',62,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:39'),(644,'A political concept that is composed of the attitudes, beliefs, emotions and values of a society is called political','culture','single transferable vote','authority','socialization','','','a','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:40'),(645,'flexible constitution is advantageous because it','guarantees political stability','prevents the passing of hasty bills by the legislature','can cope with emergency periods','allows for continuity','','','c','','wassce','1988',63,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:41'),(646,'The Economic community of West Africa state (E.C.O.W.A.S) is','an economic association','a political association','a cultural association','a social association','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:41'),(647,'Which of the following is not an aim of the Organization of African Unity (O.A.U)','Promotion of unity and solidarity among African states','Co-operation of efforts to achieve a better life for the African people','Defense of the sovereignty and independence of African state','Enthronement of democratic governments in Africa.','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:42'),(648,'It is the duty of a government to perform all the following functions, except','Preventing internal disorder','Ensuring security of life and property','Providing basic welfare services','Providing all the needs of its citizens','','','d','','wassce','1988',70,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:43'),(649,'Which of the following concepts is out of place?','Fascism','Welfarism','Totalitarianism','Authoritarianism','','','b','','wassce','1988',76,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:44'),(650,'The primary objective of all political parties is to','Promote the general interest of members of the public','Eradicate corruption in public life','Control the government','Campaign for vote','','','c','','wassce','1988',58,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:45'),(651,'The French policy of Assimilation','was a device to transfer technology to Africa','was the same in theory as the British policy of indirect rule','was aimed at converting Africans to Frenchmen','enabled the French to stay in Africa','','','c','','wassce','1988',61,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:46'),(652,'Military Governors were members of the Supreme Military Council under the','Murtala Mohammed Regime','Yakubu Gowon Regime','Ibrahim Babangida Regime','Olusegun Obasanjo Regime','','','b','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:47'),(653,'The use of forced labour was one of the features of','British colonial policy','French colonial policy','American colonial policy','Divide and rule policy','','','b','','wassce','1988',70,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:48'),(654,'The controversy over the 1979 Presidential election result was','over the dispute on the conduct of the election','because educated Nigerians did not approve who received the number of votes','due to the interpretation of ¼   of the vote cast in 2/3 of all the states in the Federation.','because the winning candidate did not pay his taxes as and when due in the past three years.','','','c','','wassce','1988',79,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:49'),(655,'All the following were frontline fighters for Nigeria’s Independence except','Obafemi Awolowo','Nnamdi Azikiwe','Lateef Jakande','Amino Kano','','','c','','wassce','1988',76,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:50'),(656,'It is argued that most of the new States of Africa cannot remain faithful to the doctrines of non-alignment mainly because of','corruption','ethnic problems','bad leadership','poor economy','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:51'),(657,'The first political party in Nigeria was','National Council of Nigerian Citizens (N.C.N.C)','Nigerian National Democratic Party (N.N.D.P)','Action group (A. G)','Northern Peoples Congress (N.P.C)','','','b','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:52'),(658,'To which of these countries did Nigeria send peacekeeping force?','South Africa','Angola','Chad','Namibia','','','c','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:53'),(659,'In the federation, the purpose of enumerating the powers of the central government is to','ensure efficient administration','ensure greater unity','reduce the financial burden of the units','limit its powers against those of the units','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:53'),(660,'The ultimate aim of a communist system of government is \tthe distribution of goods and services according to','age','qualification','party loyalty','need, want and ability','','','d','','wassce','1988',78,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:54'),(661,'Under what system of government does the state require ownership and control of the means of production for its use in benefiting the population?','Capitalism','Socialism','Feudalism','Welfarism','','','b','','wassce','1988',62,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:55'),(662,'The question of civil war was raised for the first time at the \tmeeting of the O.A.U in September 1967 in','Kampala','Addis Ababa','Lagos','Kinshasa','','','d','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:56'),(663,'Nigeria objected to the discussion of the civil war in the O.A. U. summit on the grounds that','it amount to interference in its internal affairs','some African countries recognized Biafra','Tanzania and Ivory Coast recognized Biafra','the resolution of the conflict was difficult','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:57'),(664,'Government is the machinery established to manage the affairs of','rulers','aliens','the civil service','the state','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:41','2020-07-14 15:20:58'),(665,'The judicial organ of government is the body which','implements the law','makes the law','punishes lawmakers','interprets the law','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:42','2020-07-14 15:20:59'),(666,'Which of the following is a false description of the first Nigeria Prime Minister? He','was first among equals','presided over the cabinet','was the Head of Government','exercised the prerogative of mercy','','','d','','wassce','1989',75,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:00'),(667,'The twelve state structure was created in Nigeria in','1965','1966','1967','1974','','','c','','wassce','1989',69,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:01'),(668,'The laws which the state legislators make normally pass through','the commissioner','the process of deliberations','the judiciary','some committees in the civil service','','','b','','wassce','1989',97,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:02'),(669,'In the parliamentary system of government, ministers are','chosen from the House as well as outside','collectively responsible to parliament','representatives of various interests in the country','not members of the legislature','','','b','','wassce','1989',74,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:03'),(670,'Any type of restricted franchise is a violation of principle of','constitutionalism','sovereignty','political equally','popular election','','','c','','wassce','1989',60,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:04'),(671,'Which of the following is not the responsibility of the Electoral Commission in Nigeria?','Swearing in of members of the House of Assembly','Counting and publication of election results','delimitation of constituencies','Compilation of electoral register','','','a','','wassce','1989',71,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:05'),(672,'Which of the following is not civic obligation of a citizen?','Obedience to law','payment of taxes','voting during elections','freedom of conscience and religion','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:06'),(673,'The study of Government offers an individual all the following, except a','knowledge of his rights and duties','training in good citizenship','knowledge of the processes of government','training to become a judge','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:07'),(674,'Voting started in Nigeria in 1923 because the Clifford Constitution of 1922 granted','decolonization','independence','an elective principle','self-government','','','c','','wassce','1989',75,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:08'),(675,'The organ of the UNO which can impose mandatory sanctions on any of its members is the','International Court of Justice','Economic and Social Council','General Assembly','Security Council','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:09'),(676,'A unified - local government system was adopted in Nigeria under the','Tafawa Balewa administration','Yakubu Gowon administration','Shehu Shagari administration','Murtala / Obasanjo administration','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:10'),(677,'The two parties which formed the coalition government in 1959 were the','NPC and the NCNC','NCNC and the AG','NPC and the NNA','PRP and the UPGA','','','a','','wassce','1989',72,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:11'),(678,'Which of the following is not written into independence constitution of 1960?','Fundamental human rights','Exclusive powers','Concurrent list','Role of political parties','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:12'),(679,'The process of depriving persons of the right of voting is known as','enfranchisement','disqualification','dismissal','disenfranchisement','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:13'),(680,'The predominant influence of Northern Nigeria in the First Republic violated the federal principle of','effective co-operation among the constituent units','geographical contiguity','unity','absence of marked inequalities among the component units','','','d','','wassce','1989',60,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:14'),(681,'Bicameralism refers to','a one chamber legislature','the process of voting in the legislature','the upper chamber in a legislature','a two-chamber legislature','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:15'),(682,'The head of state under the independence constitution of Nigeria was','an absolute monarch','a constitution monarch','imposed by the British','invested with executive power','','','b','','wassce','1989',66,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:16'),(683,'The principle of separation of powers implies that the three main organs of government work','separately','independently but co-operatively','against one another','reluctantly and gradually for the executive','','','b','','wassce','1989',60,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:17'),(684,'The emergency powers conferred on the Federal Government under the independence constitution was first exercised in the','Western Region','Mid-Western Region','Eastern Region','Northern Region','','','a','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:18'),(685,'A sovereign state in one','whose constitution can only be changed by a military government','where its citizens can speak without fear or favour','in which sovereignty is invested in the military','whose government decisions are made independent of foreign interference','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:19'),(686,'Which of the following is not a component of political culture?','Attitudes','Beliefs','Emotions','Age','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:20'),(687,'Representative democracy is characterized by','free election and proper register of voters','unlimited expenditure of political parties','a politically educated electorate','representation of the poor only','','','a','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:21'),(688,'The ratification of the appointment and dismissal of an Emir in the pre-colonial Fulani Empire was done by the','Empire of Lafiagi and the Etsu of pategi','Emirs of Kano and Katsina','Emirs of Gwandu and Sokoto','Emir of llorin','','','c','','wassce','1989',60,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:22'),(689,'The primary function of a legislature is the','appointment of the president','making of laws','voting of bills','monitoring of the judiciary','','','b','','wassce','1989',61,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:22'),(690,'Which of the following title among the Igbos in the pre-colonial era required substantial wealth before one could acquire it','Ofo','Okpara','Ozo','Eze','','','c','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:23'),(691,'According to Marxist theory, those who own and control the means of production in a capitalist society are','exploiters','colonialists','workers','bourgeoisie','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:24'),(692,'The head of the Oyomesi in the old Oyo Empire was','Aremo','Are Onakakanfo','Olowo','Bashorun','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:25'),(693,'The head of the Nigerian Mission to the Commonwealth of Nations is','an Ambassador','a Consular','the Minister of External Affairs','a High Commissioner','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:26'),(694,'While political parties aim at forming a government, pressure groups aim at','imposing a military rule','causing social unrest','influencing government decisions','controlling a nation’s economy','','','c','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:28'),(695,'Nigeria does not maintain diplomatic relations with South Africa because of the latter’s','industrial policy','apartheid policy','foreign policy','agricultural policy','','','b','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:28'),(696,'Which of the following countries does not operate a federal constitution?','USA','Canada','Nigeria','France','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:29'),(697,'Socialism developed as a protest against the evils of','monarchy','oligarchy','feudalism','capitalism','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:30'),(698,'The major advantage of the secret ballot is that','it is faster than other systems','nobody can be prevented from voting','it ensures the anonymity of each voter','losers can ask for another secret vote','','','c','','wassce','1989',84,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:31'),(699,'One of the first action of military governments when they take over power in Nigeria is to','detain all the politicians','appoint new ministers and commissioners','tour the country to explain why they have taken over','suspend the constitution','','','d','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:32'),(700,'A parliamentary-cabinet system of government is practiced in','Canada','Nigeria','the Soviet Union','all European countries','','','a','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:33'),(701,'Foreign policy refers to','a policy made by a foreign country','a policy made by a country for foreigners','a policy made by a country when it is at war','the general principles which govern a state’s international behaviour','','','d','','wassce','1989',86,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:34'),(702,'The constitution of the Federal Republic of Nigeria','promotes unity in diversity','allows for the dominance of the minority ethnic groups','concentrates governmental power at one level of government','advances the interest of the rich','','','a','','wassce','1989',64,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:35'),(703,'Which of the following is not an objective in foreign policy?','Prestige','Large population','Territorial integrity','Survival','','','b','','wassce','1989',56,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:36'),(704,'The principle of anonymity of civil servants means that they are','career officers','not the servants of a particular government','trained for the duties they perform','not credited or blamed for anything they do','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:37'),(705,'During the 1964 Federal elections there was a total boycott of voting in','the Western Region','Lagos','the Northern Region','the Eastern Region','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:38'),(706,'Which of the following is not a pressure group? The','Nigerian Farmers’ Council','Nigerian Union of Teachers','National Party of Nigeria','Academic Staff Union of Universities','','','c','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:39'),(707,'Which of the following is not a public corporation? The','Nigerian Ports Authority','National Sports Commission','National Youth Service Corps','Nigerian Railway Corporation','','','c','','wassce','1989',66,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:39'),(708,'Which of the following is not an academic discipline in which a student of Government can specialize','Public Administration','Local Government','Political Territory','Public Education','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:40'),(709,'The Republican Constitution of 1963 was indigenous because it was approved by','a referendum','the representatives of the people in parliament','the British parliament','the colonial government','','','b','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:41'),(710,'Local government reforms were carried out by the Federal Military Government in','1966','1967','1970','1976','','','d','','wassce','1989',60,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:42'),(711,'With which country did Nigeria break diplomatic relations in 1963 for exploding a nuclear device in the Sahara?','The Soviet Union','The U.S.A','China','France','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:43'),(712,'The first political party in Nigeria was formed after the introduction of the','Richard constitution','Clifford constitution','Bourdillon constitution','Macpherson constitution','','','b','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:44'),(713,'Which of the following did not formally recognize Biafra’ as an independent state?','Sierra Leone','Tanzania','Gabon','Zambia','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:16'),(714,'When there is a conflict between the regional and federal laws under the concurrent legislative list, the','Federal laws would prevail','Federal laws would be declared null and void','regional laws would prevail','Head of State would settle the conflict','','','a','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:16'),(715,'Nigeria hosted the meeting of Commonwealth Heads of State in','1965','1966','1967','1968','','','b','','wassce','1989',62,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:17'),(716,'A fascist regime is both','representative and accountable','responsive and responsible','fair and legitimate','authoritarian and totalitarian','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:48'),(717,'Which of the following is not a function of the Secretary-General of the United Nations Organization?','Supervising the Secretariat','Interpreting the treaties','Alerting the Security Council on any matter that may threaten international peace','Making annual report','','','b','','wassce','1989',60,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:49'),(718,'Capitalism often encourages','Private ownership of the means of production','Deconcentration of political and economic powers in the same hands','A centrally planned economy','Public ownership of all forms enterprises','','','a','','wassce','1989',68,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:50'),(719,'Which of the following African countries has diplomatic relations with South Africa?','Malawi','Zambia','Gabon','Tanzania','','','a','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:51'),(720,'Citizens who are legally qualified to vote form','Political parties','A Trade Union Congress','Members of the House of House Assembly','The electorate','','','d','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:52'),(721,'Election among candidates from the same party before the final elections are called','Primaries','Running Mates','Second ballots','Party conventions','','','a','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 01:58:08'),(722,'Which of the following countries is not a member of the Economic Community of West African States (ECOWAS)?','Nigeria','Cameroun','Ghana','Togo','','','b','','wassce','1989',58,'Admin','2016-11-13 21:30:44','2020-07-14 02:17:44'),(723,'The international organization formed after the Second World War to guarantee international peace and security is the','World Bank','United Nations Organization','League of Nations','British Commonwealth of Nations','','','b','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 02:11:20');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `history` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `history` VALUES (1,'Islam was introduced in Northern Nigeria  ','before the 13th century  ','in the 17th century  ','in the 19th century  ','in the 18th century ','','','a','','posr-utme-aaua','2013',714,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:52'),(2,'Lagos became the crown colony in  ','1914','1861','1886','29-Mar-05','','','c','','posr-utme-aaua','2013',714,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:53'),(3,'In the pre-colonial Igbo political system, which of the following was the most democratic organ of government','The Umand ','Eze  ','Isu  ','Ohanaeze','','','d','','posr-utme-aaua','2013',742,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:54'),(4,'A historical feature of the legislative council that met in 1923 was that for the first time it  ','included the official members who were Nigerians  ','included only British officials  ','included elected African members ','acted in a deliberative capacity  ','','','d','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:55'),(5,'When was the emirate system of administration introduced in Northern Nigeria? ','19th century ','20th century ','18th century  ','17th century ','','','c','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:56'),(6,'Pre-colonial Igbo society was  ','centralised ','acephalous','feudal  ','capitalist ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:57'),(7,'The Colonial Administration in Nigeria was  ','Authoritarian','Democratic  ','A&B  ','None of the above ','','','a','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:58'),(8,'In the traditional Hausa-Fulani political system, political authority was vested in the  ','Emir  ','Talakawa  ','Alkali ','Emirate Council ','','','a','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:59'),(9,'In the Oyo empire, the Alaafin was ','an absolute monarch  ','popularly elected  ','a constitutional  monarch ','worshipped as deity ','','','a','','posr-utme-aaua','2013',732,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:00'),(10,'The concept of Indirect Rule in Nigeria is usually associated with  ','Sir George T.  Goldie  ','Claude Macdonald  ','Lord Lugard  ','Consul Philip ','','','c','','posr-utme-aaua','2013',758,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:01'),(11,'The Lagos Colony and the Southern Protectorate of Nigeria were joined in the year ','1904','1906','1910','1914','','','b','','posr-utme-aaua','2013',719,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:02'),(12,'The Committee that recommended Abuja as the New Federal Capital was headed by  ','Graham Douglas  ','Mamman Nasir  ','Rotimi Williams  ','Akinola Aguda ','','','d','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:03'),(13,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known ','Ogbon','Oyo Mesi ','Baale','Ohanaeze','','','b','','posr-utme-aaua','2013',748,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:04'),(14,'Galadima in the emirate refers to  ','a village head  ','the office in charge of the army  ','the administrator of the capital city  ','a judge ','','','c','','posr-utme-aaua','2013',762,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:05'),(15,'Which of the following was the last to win Independence from colonial rule?  ','Cote d I oi e','Algeria  ','Tanzania  ','Angola ','','','d','','posr-utme-aaua','2013',751,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:06'),(16,'Which of the following made the earliest contact with the Nigerian societies?  ','The Portuguese ','The Germans  ','The British ','The French','','','a','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:07'),(17,'In the pre-colonial Yoruba society, the power of the Oyo Mesi were checked by  ','Baale  ','Ogboni  ','Are Ona Kankafo  ','Bashorun ','','','d','','posr-utme-aaua','2013',719,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:19'),(18,'The Ogboni Cult in the pre-colonial Yoruba political system played the role of the  ','judiciary  ','executive  ','police  ','legislation ','','','a','','posr-utme-aaua','2013',750,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:25'),(19,'The Aro system in Igboland was a ','Political organisation  ','Commercial organisation  ','Religious organisation  ','Imperial organisation ','','','c','','posr-utme-aaua','2013',736,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:26'),(20,'Which of the following formalised colonial penetration into Africa?  ','Paris Treaty  ','Berlin Conference  ','Lagos Treaty  ','Cape Coast ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:35'),(21,'An acephalous pre-colonial system is best represented by the  ','Oyo Empire  ','Igbo political organisation  ','Ijaw political organisation  ','Benin Empire ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:36'),(22,'The use of forced labour was one of the features of  ','British colonial policy  ','French colonial policy  ','American colonial policy  ','divide and rule ','','','b','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:37'),(23,'During the early colonial period in Nigeria, the governor ruled the protectorate by  ','Crown Colony Orders  ','Proclamation  ','Order?in-Council  ','The Act of Parliament ','','','d','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:38'),(24,'The ratification of the appointment and dismissal of an emir in the pre-colonial Fulani empire was done by','Emir of Kano  ','Emir of Sokoto  ','Emir of Gwandu  ','B & C','','','d','','posr-utme-aaua','2013',738,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:39'),(25,'In the Hausa/Fulani traditional political system jingali was  ','one of the sources of revenue to cattle owners  ','tax paid on cattle  ','a property tax paid to land owners ','a type of flat rate tax ','','','b','','posr-utme-aaua','2013',722,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:40'),(26,'Which of the following titles among the Igbos in the pre-colonial era required substantial wealth before one could acquire it?','Obi  ','Eze  ','Ozo  ','Ofo ','','','c','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:41'),(27,'Nigerian educated elites agitated against colonial rule  ','by bribing colonial governors  ','through lobbying  ','through newspapers ','by fighting civil war ','','','c','','posr-utme-aaua','2013',746,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:42'),(28,'In the absence of the existence of traditional rulers in the Igbo communities the British Colonial administration appointed','Eze  ','Obi  ','Ozo  ','Warrant chiefs ','','','d','','posr-utme-aaua','2013',739,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:43'),(29,'The colonial government whose constitution introduced elective principle into Nigerian politics was  ','Arthur Richards  ','Fredrick Lugard  ','Hugh Clifford  ','John Macpherson ','','','c','','posr-utme-aaua','2013',722,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:44'),(30,'The introduction of indirect rule in eastern Nigeria led to the Aba Women Riots of  ','1914','1929','1935','1916','','','b','','posr-utme-aaua','2013',746,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:45'),(31,'A chief could be deposed in the pre-colonial era if he  ','violated the written constitution  ','persistently neglected the advice of the elders  ','refuse to collect taxes for the Britishs  ','married too many wives ','','','b','','posr-utme-aaua','2013',713,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:46'),(32,'Which of the following in the pre-colonial era had integrated political structure  ','Tiv  ','Ilaje ','Jukun  ','Nupe ','','','d','','posr-utme-aaua','2013',702,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:47'),(33,'The Yoruba, Edo, Nupe, and Ibo languages are classified as belonging to the  ','Arabic  ','Kwa-sub group  ','Kaw sub group  ','Kai sub group ','','','b','','posr-utme-aaua','2013',725,'Admin','0000-00-00 00:00:00','2020-07-14 23:41:01'),(34,'Archaeology findings in Ugbo-Ukwu are suggestive of rich  ','Agricultural potentials  ','cultural civilization  ','mineral deposit  ','all of the above ','','','b','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:55'),(35,'Geographically, Nigeria lies between latitudes  ','40 and 140  ','4 and 100   ','140 and 4  ','all of the above ','','','a','','posr-utme-aaua','2013',754,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:56'),(36,'Ali Ghaji s  eig  e ded i  Ka e  Bo o in  ','1501','1502','1503','1504','','','d','','posr-utme-aaua','2013',740,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:57'),(37,'All of the following are renowned historians except  ','Prof Ade Ajayi ','Prof Toyin Falola  ','Prof Obaro Ikime  ','Prof Akin Oyebade ','','','d','','posr-utme-aaua','2013',756,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:58'),(38,'In Yorubaland, the concept which derived mainly from the wave of dispersal that attended the process of state formation is known as','Omo iya  ','Ebi  ','Oduduwa  ','all of the above ','','','b','','posr-utme-aaua','2013',734,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:59'),(39,'Oron and Ekoi people of the Cross River Basin might have migrated to Nigeria through the  ','sea  ','mountain  ','sky  ','none ','','','a','','posr-utme-aaua','2013',696,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:00'),(40,'The Portuguese first visited Benin around  ','1485','1484','1486','1483','','','a','','posr-utme-aaua','2013',754,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:01'),(41,'Songhai Empire fell in... ','1591','1691','1791','1891','','','a','','posr-utme-aaua','2013',721,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:02'),(42,'The Head of the Sokoto Caliphate was known as  ','Sultan  ','Caliph  ','Emir  ','Alhaji ','','','b','','posr-utme-aaua','2013',745,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:03'),(43,'The Ekitiparapo war lasted for  ','10 years  ','16 years  ','100years','50 years ','','','b','','posr-utme-aaua','2013',751,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:04'),(44,'Yoruba inter-state wars lasted for  ','16 years  ','10 years  ','100 years  ','50 years ','','','c','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:05'),(45,'The Sokoto Jihad led to the formation of Islamic States in following States except  ','Senegal  ','Mali  ','Chad  ','Togo ','','','d','','posr-utme-aaua','2013',760,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:06'),(46,'Be li   Af i a   o fe e e took pla e et ee  ','1884 and 1885  ','1885 and 1886  ','1886 and 1887  ','1883 and 1884 ','','','a','','posr-utme-aaua','2013',726,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:07'),(47,'???. and slave raiding were complementary exercises among the Yoruba  ','farming  ','hunting  ','war  ','diplomacy ','','','c','','posr-utme-aaua','2013',713,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:08'),(48,'The 1804 Jihad in Northern Nigeria could be referred to all except  ','Sokoto Jihad  ','Uthman Dan Fodiyo Jihad  ','Fulani Jihad  ','Seku Ahmadu Jihad ','','','d','','posr-utme-aaua','2013',730,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:09'),(49,'Samori Toure was captured in 1893 by  ','French imperialism  ','British imperialism  ','Germany imperialist  ','none of the above ','','','a','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:10'),(50,'The first independence day speech in Nigeria was given by??.','Muhammadu Buhari','Obafemi Awolowo','Tafawa Balewa','Nnamdi Azikwe','','','c','','posr-utme-aaua','2013',724,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:11');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `image` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `url` text NOT NULL,\n  `name` varchar(200) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `insurance` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `insurance` VALUES (1,'Which of the following policies will prevent loss of home if the wage earner dies?','Term assurance','Endowment assurance','Mortgage insurance','Whole life assurance','','','c','','wassce','2014',76,'Admin','2017-01-09 12:28:06','2020-07-14 15:23:56'),(2,'One of the objectives of buying a term assurance policy is to','protect  dependants  in  case  of  death  of  the  life assured','reduce financial burden of the life assured','supplement retirement income  of  the  life  assured','maximize savings from the life assured','','','a','','wassce','2014',69,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:57'),(3,'An assurance policy taken by experts to cover possible negligence arising from their duties is','consequential loss','professional indemnity','cargo','freight','','','b','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:58'),(4,'The class of insurance that  covers  legal  liability to a third party for bodily injury and property damage caused by goods supplied is','employer’s liability','public liability','professional indemnity','products liability','','','d','','wassce','2014',80,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:59'),(5,'The  type  of  cover  that  is  designed  against  loss  of earnings following loss caused by fire and special perils is','product guarantee insurance','materials damage cover','fire damage policy','consequential loss cover','','','d','','wassce','2014',50,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:00'),(6,'Which  of  the  following  risks  is  covered  by  insurance policy?','An investment loss on the stock market','Dishonesty of an employee leading to fraud','Failure of a business venture','Rise and fall of prices of goods in the market','','','b','','wassce','2014',70,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:01'),(7,'In  classification  of  risks, what is the name given to a risk  where  the  causes  of  events are linked to factors \tthat are due to the society we live in?','Dynamic risk','Particular risk','Speculative risk','Fundamental risk','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:02'),(8,'The evidence of the insurance contract is','proposal form','policy','schedule','endorsement','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:03'),(9,'The right of the insurer to step in place of the insured for the purpose of recovering damages is called','representation','indemnity','subrogation','contribution','','','c','','wassce','2014',74,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:04'),(10,'Which of the following is a contract of benefit?','Personal accident insurance','Business interruption insurance','Fire insurance','Money insurance','','','a','','wassce','2014',66,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:05'),(11,'Which of the following is not a feature of insurable interest?','Loss suffered','subject matter','Legal relationship','Financial value','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:06'),(12,'A prospective insured in an engineering insurance may be advised to purchase one of the following classes of insurance','fire cover','boiler cover','tempest cover','equipment cover','','','d','','wassce','2014',77,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:07'),(13,'The class of non-life insurance policy where cover note is issued is','fire insurance','burglary insurance','motor insurance','fidelity guarantee','','','c','','wassce','2014',70,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:08'),(14,'Abandonment is mostly applicable to','marine insurance','motor insurance','fire insurance','engineering insurance','','','b','','wassce','2014',82,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:09'),(15,'Which of the following is not a benefit covered under a personal accident policy?','Death','Temporary disablement','Loss of baggage','Medical expenses','','','c','','wassce','2014',72,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:10'),(16,'In the preparation of food for eat - in - customers, the cooks made a mistake in using excess quantity of an \tingredient. A customer ate and  suffered  poisoning. \tWhich policy of the operator would pick this liability?','Public liability','Personal liability','All risks insurance','Loss of profit insurance','','','a','','wassce','2014',75,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:11'),(17,'How much premium will the insurer charge?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','b','','wassce','2014',88,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:12'),(18,'How  much  premium  will  the  insurer  return  to  the insured?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','a','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:13'),(19,'A policy that combines cover for many perils as a single policy  to  suit  the  insurance  needs of  an insured is','accident policy','protection policy','paternal policy','packaged policy','','','d','','wassce','2014',77,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:14'),(20,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:15'),(21,'The document that sets out the list of items covered in insurance is a','manifest','bill of lading','policy list','policy specification or form','','','d','','wassce','2014',94,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:16'),(22,'One of the information contained in a motor insurance cover note is the','behaviour of the insured','occupation of the insured','commencement date','previous and present insurance history','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:17'),(23,'In property insurance, which of the following is not a direct loss?','Reinstating the property destroyed','Replacing the property destroyed','Repairing the property damaged','Replacing third party property damaged','','','d','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:18'),(24,'Ade insured his property for N= 350,000.00. The property is subject to average condition. He suffered a loss amounting to N= 30,000.00 with the value of the property at the time of loss to be N= 370,000.00. How much will the insurer pay?','N= 14,583.33','N= 28,378.38','N= 30,000.00','N= 31,714.29','','','d','','wassce','2014',70,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:20'),(25,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of dispute','resolution of policy','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:21'),(26,'An insurer who buys reinsurance cover is insured as','retrocession','retrocedant','cession','cadent','','','d','','wassce','2014',72,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:22'),(27,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','wassce','2014',84,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:23'),(28,'Family income option in a life policy provides that','the beneficiary will be paid for life','the beneficiary receives the policy sum','interest will be added monthly','salary will be paid to the insured until death','','','b','','wassce','2014',76,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:24'),(29,'A provision in a policy that exempts an insurer from liability if the loss is less than a certain amount is','excess','transfer','lay days','franchise','','','a','','wassce','2014',90,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:25'),(30,'Which of the following policies is a peril covered under a standard fire policy?','Lightning','Storm','Civil commotion','Escape of oil','','','a','','wassce','2014',65,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:34'),(31,'A type of reinsurance where cession and acceptance is obligatory is','treaty','captive','facultative','retrocession','','','a','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:35'),(32,'A contract sold  by  insurance companies that  pay  a monthly or  quarterly income  benefit for the  life  of a person is','endowment','annuity','income','freight','','','b','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:36'),(33,'George effected two personal accident policies. The first policy provides N= 25,000.00 cover for loss of limb. The second policy provides N= 30,000.00 cover for loss of limb. What is the total amount that  George  will receive in the event of a valid loss of limb claim?','N= 5,000.00','N= 25,000.00','N= 30,000.00','N= 55,000.00','','','a','','wassce','2014',76,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:37'),(34,'Renewal notice is  used by  insurers  to  remind the insured of the','reduction of cover','continuation of cover','expiration of cover','increase of cover','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:38'),(35,'Risk Net Insurance Brokers Limited placed a business with an insurance company, in return the broker will be entitled to','fees','commission','profit','revenue','','','b','','wassce','2014',68,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:38'),(36,'The professional service required for effective claims administration by insurers would be provided by','loss assessors','risk managers','loss adjusters','claims consultants','','','c','','wassce','2014',73,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:40'),(37,'Which  of the following activities is  not a  function of the  Chartered  Insurance  Institute  of  Nigeria?','Setting a standard for members','Promoting Professional growth','Promoting the interest of insurers','Specifying professional qualification','','','d','','wassce','2014',79,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:41'),(38,'Effective supervision and licensing of insurance firms in Nigeria is the function of','National Insurance Commission','Institute of Loss Adjusters of Nigeria','Chartered Insurance Institute of Nigeria','Nigerian Corporation of Registered Insurance Brokers','','','a','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:41'),(39,'The payment made when the insured is  not  entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','wassce','2014',84,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:42'),(40,'The owner of a life assurance policy who enters into an agreement to sell the ownership of the policy and beneficiary rights upon the death of the insured is called','an underwriter','a aviator','a factor','an assessor','','','d','','wassce','2014',78,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:43'),(41,'A small fixed sum retained by the insured in the form of a claim is','slip','severity','excess','frequency','','','b','','wassce','2014',74,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:44'),(42,'A voucher signed by the insured before collecting his claim is','money collect receipt','discharge voucher','payment receipt','pay - in - slip','','','b','','wassce','2014',83,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:45'),(43,'To which of the following parties does the principle of utmost good faith apply in a contract of insurance?','The proposer only','The insurer only','The insurer and proposer','The third party and insured','','','c','','wassce','2014',81,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:46'),(44,'Insurers A and B cover a risk at the ratio of 2:5 for the sum insured of N= 1,800. How much would insurer  A get from the risk?','N= 1,285.00','N= 771.00','N= 514.00','N= 180.00','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:47'),(45,'The consideration paid for insurance contract is','money','commission','premium','fee','','','c','','wassce','2014',71,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:48'),(46,'The alternative to seeking for surrender value in a life assurance contract is','automatic non - forfeiture','revival condition','paid-up policy','standing order','','','c','','wassce','2014',75,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:49'),(47,'Which of the following is a risk covered in endowment assurance?','Permanent disability','Bodily injury','Temporary disability','Death cover','','','d','','wassce','2014',70,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:50'),(48,'A <em>revival clause</em> in a life policy will allow an insured to revive a policy that lapsed on account of nonpayment of premium, provided the insured','can prove he is sick at the time','cannot fall sick after the policy','can prove he is in good health','can recover from the ill health','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:51'),(49,'Which of  the  following  risks  are  covered  under engineering insurance?','Material damage and liability cover','Boiler and special perils cover','Computer and explosion cover','Property damage and business interruption cover','','','d','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:52'),(50,'Which of the following is not a function of an insurance broker?','Assisting clients in paying premium','Maintaining proper records of claims','Assisting clients in connecting to insurers','Assisting clients in effecting uninsured loss','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:53'),(51,'The primary function of insurance is','making profit','managing of risk','spreading of risk','prevention of accident','','','c','','model','1',89,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:54'),(52,'An  insurance  feature  that  requires  the  parties  to disclose  all  material  facts  about  the  agreement is known as','Adhesion','Disclosure','Material fact','Utmost good faith','','','b','','model','1',90,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:55'),(53,'An insurance principle that requires the insured to be honest and disclose all relevant facts is called','subrogation','utmost good faith','proximate cause','insurable interest','','','b','','model','1',92,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:56'),(54,'The facts which might influence any party’s willingness to enter the contract or reject it is called','insurable fact','insurance fact','insured fact','material fact','','','d','','model','1',71,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:57'),(55,'A  statement  of  fact  that  the insured must have an interest in the object of the contract is called','warranty','insurable interest','subrogation','object interest','','','b','','model','1',63,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:58'),(56,'A fundamental condition which must be filled  by the  insured for compensation is','warranty','obligation','interest','premium','','','a','','model','1',73,'Admin','2017-01-09 13:02:57','2020-07-14 15:24:59'),(57,'The object of an insurance policy is equally known as','insurance title','insurance premium','subject matter','risk object','','','c','','model','1',68,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:00'),(58,'In insurance contract the insured is the','offeror','offeree','Actuary','Ofree','','','a','','model','1',86,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:01'),(59,'In insurance contract offeree is the','insured','insurance company','client','Third party','','','b','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:02'),(60,'An individual who is interested in taking an insurance policy must fill a form of application called:','premium slip','policy document','proposal form','claim form','','','c','','model','1',84,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:03'),(61,'The payment made by the insured to the insurer upon which the validity of insurance is based is called','Exgratia payment','Loss payment','Compensation','Premium','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:04'),(62,'The temporary document issued by the insurer to the insured while the policy is being prepared is','insurance certificate','promissory note','exchange slip','cover note','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:05'),(63,'The evidence of the contractual agreement between the insured and insurer is','policy','proposal form','insurance certificate','cover note','','','a','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:06'),(64,'Which of these is an aid to trade?','cover note','insurance','premium','policy','','','b','','model','1',87,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:07'),(65,'The following are exempted from a contract because they do not have the contractual capacity except','Drunkard','Alien','Mental patient','Adult','','','d','','model','1',69,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:15'),(66,'Insured is likewise known as','insuree','Insurer','policy holder','contractor','','','c','','model','1',90,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:16'),(67,'Insurance contract is between','Broker and Agent','Insured and Insurer','Insurer  and Agent','Insured and Agent','','','b','','model','1',72,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:17'),(68,'The buyer of insurance product is','Agent','Broker','Insured','Insurer','','','c','','model','1',76,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:18'),(69,'The seller of insurance product is','Insurer','Insured','Broker','Agent','','','a','','model','1',71,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:19'),(70,'Which of this is an odd one out?','offer and acceptance','contractual capacity','legality of object','Adhesion','','','d','','model','1',83,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:20'),(71,'The uncertainty as to the occurrence of a loos is','Hazard','Loss','Risk','insurance','','','c','','model','1',76,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:21'),(72,'The risks which affect the society and whose causes are beyond human control is','particular risk','static','fundamental','speculative','','','c','','model','1',74,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:22'),(73,'Risks that are peculiar to an individual actions and decision is known as','fundamental risk','particular risk','pure risk','speculative risk','','','b','','model','1',70,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:23'),(74,'Risk of loss resulting from change in culture and taste is called','static risk','pure risk','dynamic risk','speculative risk','','','c','','model','1',79,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:24'),(75,'The following risks are insurable except','particular','pure','static','dynamic risk','','','d','','model','1',90,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:25'),(76,'The following are insurable except','Marine','Goods','Gambling','Accident','','','c','','model','1',59,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:26'),(77,'The following are non-insurable except','Lose of profit as a result of change in fashion','Speculation','Lose of profit as a result of maladministration','Fire','','','d','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:27'),(78,'Factors which may influence the occurrence of a loss is','Risk','Loss','Peril','Hazard','','','d','','model','1',64,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:28'),(79,'Hazard that relates to the attitude of the insured is known as','Physical hazard','Good physical hazard','Moral hazard','Good moral hazard','','','c','','model','1',82,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:29'),(80,'Hazard that relates to the subject matter of insurance is called','moral','physical','peril','Good peril','','','b','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:30'),(81,'The following are examples of bad moral hazard except','Fraudulent activities','Carelessness','Honesty','Unreasonableness','','','c','','model','1',70,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:31'),(82,'The cause of a loss is known as','Risk','Peril','Hazard','Moral','','','b','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:32'),(83,'The  principle  of  insurance  which  states  that a person must be in a legally recognized relationship to what is  insured  such  that  he  will  benefit  from its existence or suffer by its loss is','utmost good faith','insurable interest','proximate cause','subrogation','','','b','','model','1',80,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:33'),(84,'A person who has lawful possession of goods belonging to another is known as','Owner','Bailee','Agent','Trustee','','','b','','model','1',76,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:34'),(85,'Transfer of rights and liabilities under a contract with the consent of the other party is known as','Assignment','liability','Interest','Legality','','','a','','model','1',74,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(86,'Another name for utmost good faith is','cadent','cede','ex gratia','uberrimae fidei','','','d','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(87,'The principle of insurance which states that the insure should be truthful and disclose all material fact is','subrogation','utmost good faith','indemnity','insurable interest','','','b','','model','1',77,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:37'),(88,'A miss statement of fact that is made by the insured or his broker to an underwriter during negotiation is called','annuity','misrepresentation','endorsement','disclosure','','','b','','model','1',71,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:38'),(89,'Indemnity is provided through the following media except','cash','commission','reinstatement','repair','','','b','','model','1',67,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:39'),(90,'Any circumstance that promotes the probability of a loss is called','accident','hazard','loss','risk','','','b','','model','1',99,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:40'),(91,'A financial compensation sufficient to return the insured back to the original position after loss is known as','deposit','loan','indemnity','profit','','','c','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:41'),(92,'Another name for business interruption insurance is','property insurance','consequential loss','credit insurance','excess loss','','','b','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:42'),(93,'Subrogation principle can be applied in the following insurance policies except in','aviation policy','engineering policy','life policy','marine policy','','','c','','model','1',77,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:43'),(94,'Payment of claims  in  liability  insurance are usually made in favour of','insurance agent','a third party','employees','employers','','','b','','model','1',86,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:44'),(95,'The person  that  brings  an insurance  contract  into existence between  the principal and third party  is a/an','agent','bailee','contractor','insurer','','','a','','model','1',75,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:45'),(96,'“Hull” in marine policy refers to the','boiler','cost of transporting the goods','goods on board','ship','','','d','','model','1',96,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:46'),(97,'A formal document containing the condition of the insurance contract is called','agreement','contract form','contract slip','policy document','','','d','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:47'),(98,'Engineering insurance covers the following except','boiler explosion','building and civil','business interruption','machinery breakdown','','','c','','model','1',82,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:48'),(99,'A policy designed to protect individuals against negligence while carrying out their daily activities is called','business interruption','employers liability','engineering','professional indemnity','','','d','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:49'),(100,'Unlawful breaking and entering into any premises or place of safe keeping is covered under which of these policies?','burglary','business interruption','employers liability','public liability','','','a','','model','1',71,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:50'),(101,'When someone is placed back in the same financial position that he was in just prior to a loss, that is ----','Actual cash value','Consideration','Contribution','Indemnity','','','d','','model','2',73,'Admin','2017-01-09 13:21:17','2020-07-14 15:25:51'),(102,'Insurable interest means','Interest gained on money in a bank','Interest payable on a loan','Financial interest a person has in something he expects to inherit','The financial interest a person has in something of value','','','d','','model','2',93,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:52'),(103,'Below are insurable policies except','Earthquake','Fire','Life','Marine','','','a','','model','2',82,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:53'),(104,'The term pooling of risks in insurance means that','Many who face risks pay premium so that those who suffer loss may be reimbursed','Insurance companies share heavy losses','Insurance company re-assures with another','Insurance companies operates pool betting business','','','a','','model','2',80,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:54'),(105,'Which of the following is not a principle of insurance?','Indemnity','Compensation','Proximate cause','Insurable interest','','','b','','model','2',78,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:55'),(106,'The amount of money paid periodically by an insured to the insurance company to cover risk is called','Commission','Premium','Cover note','Dividend','','','b','','model','2',80,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:56'),(107,'Insurance was developed as a result of the existence of','Hazards','Loss','Risk','Indemnity','','','c','','model','2',79,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:57'),(108,'Which of the following is not a function of insurance?','Serves as collateral','Encouraging saving','Provides insecurity','Reduces risks','','','c','','model','2',89,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:58'),(109,'In the utmost good faith principle, the value of the subject matter should','Be over stated','Understated','Not be stated','Not be overstated nor understated','','','d','','model','2',66,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:59'),(110,'Which of the following is non- insurable risk?','Gambling','Accident','Fire','Theft','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:00'),(111,'Which of the following is a temporary document given to the insured in an insurance contract?','Cover note','Subrogation','Policy document','Reinsurance','','','a','','model','2',87,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:01'),(112,'Hazard that deals with the human habits and character that arises from human attitude and the conduct of people is called','physical','Moral','Static','Dynamic','','','b','','model','2',62,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:02'),(113,'A peril is best defined as','Chance of a loss','The occurrence of a loan','The cause of a loss','The result of a loss','','','c','','model','2',80,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:03'),(114,'One of the essential features of insurance contract is','Premium','Subrogation','Interest','Disclosure','','','d','','model','2',77,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:04'),(115,'Insurance  feature  that  emphasized   the  fact  that insurance contract is a contract between the insurer and  the  insured  and  which states  that  the insured must  adhere to  the  agreement  is  called','Disclosure','Warranty','Adhesion','Material facts','','','c','','model','2',78,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:05'),(116,'The principle that requires the insured to disclose to the insurer all matters relating to the object of insurance is called','Uberrimae fidei','Proximate cause','Abandonment','Subrogation','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:06'),(117,'There must  be  a  close  connection  between  the loss actually suffered and the risk is relating to the principle  of','Abandonment','Proximate cause','Utmost good faith','Adhesion','','','b','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:07'),(118,'The principle of subrogation imposed an obligation on the insured to','Disclose all material information','Have financial risks in the object','Press for compensation','Surrender legal right after compensation','','','d','','model','2',69,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:08'),(119,'Which of the following is not a principle of insurance','Indemnity','Insurable risk','Subrogation','Insurable interest','','','b','','model','2',74,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:09'),(120,'An application form which is filled by anyone taking out an insurance policy is called','A policy form','A claim form','A proposal form','Proximate cause form','','','c','','model','2',70,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:10'),(121,'Insurance is necessary because of the need to','Pool resources together','Meet uncertainties in future','Make profit','Lend money to individual','','','b','','model','2',86,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:11'),(122,'The policy that covers debt that cannot be recovered is called','Life assurance','Motor vehicle policy','Comprehensive policy','Bad debt insurance policy','','','d','','model','2',66,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:12'),(123,'Risk whose cause is beyond human control is','Fundamental','Speculative','Particular','Static','','','a','','model','2',87,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:13'),(124,'Cover note usually run for about','One month','Two days','5 years','3 days','','','a','','model','2',88,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(125,'A card used by motorist in the West African sub-region is called','Brown card','Certificate','Insurance card','visa card','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(126,'Uncertainty of loss is known as','Risk','Certainty','Insurance','Hazard','','','a','','model','2',108,'Admin','2017-01-09 13:21:19','2020-07-15 03:51:06'),(127,'Re-insurance contract is between','Re-insurer and insurer','Re- insurance and insurance','Co-insurer and insurer','Insurance broker and re-insurer','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:16'),(128,'The continuation of insurance contract after expiration is','Renewal','Revival','Resuscitation','Rejuvenation','','','a','','model','2',68,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:17'),(129,'The  payment  made  by  underwriter  as  a  form  of  \tkindness  without  admission  of  liability  so  as  to maintain goodwill is known as ------------','Kindness payment','Ex-gratia payment','Favour payment','Claim','','','b','','model','2',72,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:18'),(130,'One of the following is the duty of the insured in insurance claim process','Late report of the loss','Little idea of the loss size','Quick report of the loss','Hiding fact','','','c','','model','2',66,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:19'),(131,'The prices set by the insurer for the insurance cover is known as','Due','Levy','Premium','Charge','','','c','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:20'),(132,'The transfer of risk already undertaken from one insurance company to another is','Over insurance','Re insurance','Under insurance','Group insurance','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:21'),(133,'When an insured person admits that he has indemnified, he means that','The damage proper by has been recovered','He was paid premium fully','The insurance company has restored him to his former position','He was paid his premium fully','','','c','','model','2',71,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:22'),(134,'A house worth N=60,000 insured against fire for N=40,000.  Fire destroyed and cause damage worth N=30,000. On the house under which insurance principle will the owner be entitled to compensation of N=30,000.','Contribution','Subrogation','indemnity','Uberrimae fidei','','','c','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:23'),(135,'The person who calculate the amount given to the insured if he does not want to continue with the contract of insurance is called','Actuary','Insurance agent','Insurance broker','Assessor loss adjuster','','','d','','model','2',86,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:24'),(136,'The amount given to the insured if he does not want the contract to continue is called','Insurance broker','Premium','Surrender value','Assessor loss adjuster','','','c','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:25'),(137,'The sum paid for transporting the goods or for the hire of a ship is called','Marine cargo','Freight insurance','Hull insurance','Risk insurance','','','b','','model','2',86,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:26'),(138,'The duty of the loss adjuster in insurance claims is to','Make loss','Prevent loss','Safeguard loss','Recommend appropriate payment','','','d','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:27'),(139,'Consequential loss is also known as','Business interruption insurance','Credit insurance','Excess loss','Property insurance','','','a','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:28'),(140,'Subrogation principle can be applied in the following insurance policies except in','motor','Life','Marine','Aviation','','','b','','model','2',103,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:44'),(141,'The acronym “CllN” refers to','Certified insurance institute','Certified insured institute','Certified international institute','Chartered insurance institute','','','d','','model','2',83,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:45'),(142,'Amount paid to the beneficiary upon the death of the insured is','Premium','Compensation','Declaration','Death benefit','','','d','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:46'),(143,'The clauses in the policy which make alterations or additions to the information stated in the policy is known as','correction','Modification','Change','Endorsement','','','d','','model','2',64,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:47'),(144,'The date on which an insurance or reinsurance contract comes into force is known as','Starting point date','Inception date','Beginning date','Commencement date','','','b','','model','2',80,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:00'),(145,'Factor that causes an exposure to injury, loss or damage is','Risk','Hazard','Peril','Accident','','','b','','model','2',65,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:08'),(146,'Workman compensation is also referred to as','Fidelity insurance','Employment liability','Public liability','Product liability','','','a','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:09'),(147,'An insurance cover for lawyers, accountants and brokers is','Employment','Professional','Public','Product','','','b','','model','2',65,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:10'),(148,'The deliberate or intentional throwing over board of part of a cargo to lighten the ship in the interest of the reminder of the cargo is','Barratry','Jettison','Breach','Caveat emptor','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:11'),(149,'The wrongful act willfully committed by either the master or the prejudice of either the owner or crew to the chatterer of the ship is','Barratry','Caveat emptor','Bailee','Jettison','','','a','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:12'),(150,'The legal right to insure a subject matter is','Indemnity','Subject Matter','Subrogation','Insurable interest','','','d','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:13'),(151,'--------- shows what the insured should do or not do to maintain the existence of the policy','Cover note','Policy','Warranty','Certificate','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:14'),(152,'The uncertainty of an event occurring is known as','Hazard','Risk','Loss','Accident','','','b','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:15'),(153,'The provider of protection to an insurance  company against the excess risk it has given insurance covers is called','Assurer','Insuring','Reinsurer','Insurer','','','c','','model','3',74,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:16'),(154,'---------- is the evidence cover of the risk given to the insured by the insurer','Cover','Policy','Claim','Compensation','','','b','','model','3',77,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:19'),(155,'------------ is the protection which the insured buys for his risk','Indemnity','Compensation','Cover','Subrogation','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:20'),(156,'A temporary certificate to show that a cover is in existence is called','Policy','Certificate','Cover note','Claim slip','','','c','','model','3',73,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:21'),(157,'------------ is used to bring amendment in a policy that is either to add in a new thing or removal of an existing thing in the policy','Excess','Endorsement','Claim form','Policy','','','b','','model','3',65,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:23'),(158,'The cause of a loss is known as','Peril','Hazard','Loss','Risk','','','a','','model','3',85,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:24'),(159,'The price of insurance is known as','Rate','Interest','Premium','Profit','','','c','','model','3',80,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:25'),(160,'The monetary consideration paid by the insured to the insurers for the insurance granted by the policy is called','Premium','Money','Price','Benefit','','','a','','model','3',75,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:26'),(161,'------------- is a policy designed to place the insured in the same financial position as he was immediately before the happening of the event insured against','Indemnity','Subrogation','Surrender value','Actuary','','','a','','model','3',82,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:27'),(162,'The essential value of valid contract that states that the parties to a contract must be in perfect agreement and have a common mind is','Consideration','Perpetual existence','Excess','Consensus ad-idem','','','d','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:28'),(163,'A  Statement signed by the insured, certifying the Statement','Certificate','Declaration','Confirmation slip','Accuracy statement','','','b','','model','3',65,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:29'),(164,'Change for the transportation of goods by water is called','Bill','Ticket','Freight','Consideration','','','c','','model','3',87,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:30'),(165,'Life assurance provides dual benefits of savings and ------------ to a policy holder','Acceptance','Consideration','Contribution','Security','','','d','','model','3',88,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:31'),(166,'Another name for consequential loss is','Stop loss','Credit insurance','Business interruption insurance','Excess loss','','','c','','model','3',73,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:32'),(167,'Subrogation principle can be applied in the following insurance policies except in -------- policy','Life','Motor','Theft','Burglary','','','a','','model','3',61,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:33'),(168,'A place where the business of insurance is transacted is called a/an','Insurance market','Brokerage firm','Insurance house','Insurance conference room','','','a','','model','3',66,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:34'),(169,'A customer that suffers loss or sustain injury while using a business outfit that belongs to another perosn, can sue the property owner under -------------- insurance','Professional indemnity','Public liability','Employers’ liability','Personal accident','','','b','','model','3',77,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:35'),(170,'The type of questionnaire drawn up by   insurers, requesting certain information to assess risk is --------- form','Acceptance','Compensation','Credit','Proposal','','','d','','model','3',67,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:38'),(171,'The shifting of responsibility of one’s own losses to another is known as ---------- transfer','Fund','Risk','Business','Policy','','','b','','model','3',72,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:39'),(172,'A financial compensation sufficient to return the insured back to his original position after loss is known as','Deposit','Loan','Indemnity','Overdraft','','','c','','model','3',73,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:40'),(173,'The following are types of life assurances,  except','annuity','Endowment','Hire purchase','Whole life','','','c','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:41'),(174,'A marine policy that provider cover for the construction of sea vessels is called --------- policy','Building','Mixed','Port','Valued','','','a','','model','3',104,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:42'),(175,'Spreading of risk to ensure that no insurer is liquidated by the occurrence of a large loss is the concept of','Insurance','Re insurance','Renewal','Treaty','','','b','','model','3',88,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:43'),(176,'The person  that  brings  an  insurance  contract into existence  between  the principal  and  third  party is a/an','Agent','Bailee','Contractor','Insurer','','','a','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:44'),(177,'Any circumstance that promotes the probability of a loss is called','Accident','Hazard','Loss','Risk','','','b','','model','3',64,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:45'),(178,'Indemnity is provided through the following media except','Cash','Commission','Reinstatement','Repair','','','b','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:47'),(179,'The policy that covers loss of cash while in transit or at home is --------------- insurance','Burglary','Business interruption','Credit','Money','','','d','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:48'),(180,'A person who makes an insurance claim is called','Actuary','Adjustor','Claimant','Client','','','c','','model','3',91,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:49'),(181,'To break or act contrary to a law or promise means','Breach','Shake','Confirm','Disagreement','','','a','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:50'),(182,'A professional officer of an insurance company whose duty among others is to calculate the premium to be \tpaid by the insured is called','Agent','Principal','Actuarist','Adjuster','','','c','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:51'),(183,'Which of these is insurable?','Fire','Inflation','Bad publicity','Riot and war','','','a','','model','3',85,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:52'),(184,'The principle that requires all material facts to be disclosed is known as','Indemnity','Fidelity','Proximate cause','Utmost good faith','','','d','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:53'),(185,'In insurance contract, failure to disclose all relevant material facts will render the contract','legal','Voidable','Void','Implied','','','c','','model','3',82,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:54'),(186,'Any information that will influence a prudent insurer is called','contract','misrepresentation','disclosure','Material facts','','','d','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:55'),(187,'The insurance principle which implies that a proof is required that the direct and immediate cause of the loss suffered was by the occurrence of the risk insured against is called','Indemnity','Proximate cause','Insurable interest','Utmost good faith','','','b','','model','3',74,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:56'),(188,'Method of providing indemnity whereby subject matter is being restored to its former position is','Repairs','Cash','Reinstatement','Replacement','','','c','','model','3',77,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:57'),(189,'A relief to insurer of each and every loss which does not exceed a specified amount is','Excess','Franchise','Deductible','Annuity','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:58'),(190,'When an   insurer agrees   to   replace   irreparably damaged or stolen goods with similar type it is called','Reinstatement','Cash','Repairs','Replacement','','','d','','model','3',74,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:59'),(191,'Cover note usually run for about','21 days','one month','12 months','3 month','','','b','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:00'),(192,'The process of changing anything wrong with the policy to make it current is','Endorsement','Specification','Rectification','Correction','','','c','','model','3',60,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:01'),(193,'A syndicate or an insurance company that transfer risk under re-insurance is','Cede','Cession','Commutation','Cedant','','','d','','model','3',67,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:02'),(194,'A particular risk which is transferred to another re-insurance under a re-insurance treaty is','Cedant','Cession','Facultative','Cede','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:03'),(195,'Application by the insured to the insurer for the payment of money due under his contract of insurance is','Proof','Evidence','Claim','Compensation','','','c','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:04'),(196,'The following are the methods of claim settlement except','Cash','Repair','Reinstatement','Repayment','','','d','','model','3',81,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:05'),(197,'Person who makes claim is called','Claimant','Client','Insured','Insurer','','','a','','model','3',65,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:06'),(198,'A payment made by insurer as a form of sympathy to maintain goodwill is','Compensation payment','Contract payment','Charity payment','Ex - gratia payment','','','d','','model','3',79,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:07'),(199,'The policy that provides protection for goods or cargoes and ships against the perils of the sea is','Fire','Marine','Aviation','Credit','','','b','','model','3',82,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:08'),(200,'Another name for an insured in a life insurance contract is','Insurer','Assured','Assurer','Agent','','','b','','model','3',73,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:09'),(201,'Insurance is defined as','risking of loss','pooling of risk','gathering of risk','waiving of risk','','','b','','model','4',76,'Admin','2017-01-09 13:49:45','2020-07-14 15:28:10'),(202,'In a contract of insurance, a firm statement is usually made by a person known as the','offeror','offeree','insur','client','','','a','','model','4',67,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:11'),(203,'The premium paid by the insured to the insurance company is','capital','commission','common fund','consideration','','','d','','model','4',86,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:12'),(204,'The insured is also known as','the client','the consumer','the policy holder','agent','','','c','','model','4',81,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:13'),(205,'The coming together of minds of  the two parties to the insurance contract is called','surrender value','acceptance','consensus ad-idem','adhesion','','','c','','model','4',69,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:14'),(206,'Uberrimae fidei is equally known as','contract','agreement','consensus','utmost good faith','','','d','','model','4',83,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:15'),(207,'The legal right that a person must have to enable him or her to insure his or her property is known as','freedom','franchise','insurable interest','Access right','','','c','','model','4',64,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:17'),(208,'An undertaking by the insured that certain things shall be done or not be done or certain things shall be put in place or not in place is called','warranties and representation','utmost good faith and uberrimae fidei','insurable and non-insurable','subrogation and indemnity','','','a','','model','4',65,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:18'),(209,'In insurance, uncertainty of loss means','hazard','risk','accident','earthquake','','','b','','model','4',70,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:19'),(210,'Occurrence of an unplanned event is called','hazard','loss','risk','speculation','','','c','','model','4',76,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:20'),(211,'An insurance contract where both parties signed the agreement which involve mutuality of agreement is known as','unilateral contract','multilateral contract','bilateral contract','united contract','','','c','','model','4',66,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:21'),(212,'An insurance contract which does not involve mutuality of agreement in which only one of the parties involved in the contract makes promises that are legally binding is called','double contract','single contract','multilateral contract','unilateral contract','','','d','','model','4',75,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:22'),(213,'Insurance is a contract that is based on','possibility','probability','positivity','negativity','','','b','','model','4',98,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:23'),(214,'Assurance is a contract that is based on','negativity','possibility','positivity','probability','','','d','','model','4',60,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:24'),(215,'With insurance contract there is','certainty of occurrence','uncertainty of occurrence','certainty of reward','uncertainty  of reward','','','b','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:25'),(216,'With assurance contract there is','uncertainly of reward','certainty of reward','certainty of occurrence','uncertainty of occurrence','','','c','','model','4',80,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:26'),(217,'Indemnity is not applicable in','assurance contract','insurance contract','insurance terms','insurance content','','','a','','model','4',87,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:27'),(218,'Non- indemnity insurance means that the assured can','be restored back to his former position','not be restored back to his former position','be brought back to contract','not be brought back to contract','','','b','','model','4',83,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:28'),(219,'A seller of insurance product is','insurer','promisor','client','insured','','','a','','model','4',74,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:29'),(220,'A buyer of insurance product is','insured','promise','insurer','insuree','','','a','','model','4',76,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:30'),(221,'A contract which has no legal effect is called','voidable contract','legal contract','void contract','valid contract','','','c','','model','4',77,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:31'),(222,'A contract that is contrary to public policy is','valid contract','legal contract','illegal contract','voidable contract','','','c','','model','4',87,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:33'),(223,'Which of the following cannot enter into an insurance contract?','adult','insured','minor','insurer','','','c','','model','4',91,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:34'),(224,'Risk that affect the society and whose causes are beyond human control is','particular risk','pure risk','fundamental risk','static risk','','','c','','model','4',84,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:35'),(225,'The process of evaluating and minimizing risk is','risk management','risk certainty','risk insurance','risk re-grouping','','','a','','model','4',76,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:36'),(226,'Another name for utmost good faith','expirit - de - corps','uberrimae fidei','caveat emptor','proximate cause','','','b','','model','4',80,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:37'),(227,'Inter company agreement in which insurers agreed to waive their right against each other for loss is','knock for knock agreement','employers’ liability','tit for tat agreement','salvage agreement','','','a','','model','4',72,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:38'),(228,'Contribution will only arise when','two or more parties disagree','two or more parties are promisor','two or more policies of indemnity exist','one policy of indemnity exist','','','c','','model','4',82,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:39'),(229,'One of the following is a condition for contribution','bilateral interest','multilatual interest','two subject matter','common subject matter','','','d','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:40'),(230,'one of these is a content of a proposal form','children of the proposer','education of the proposer','occupation of the proposer','educational','','','c','','model','4',74,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:41'),(231,'The statement “ I to the best of my knowledge hereby confirm that the statements contained in this prosal form are true and correct” represents','confirmation','declaration','witnessing','humility','','','b','','model','4',75,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:42'),(232,'When the proposer fails to fill the proposal form truthfully, the contract will become','voidable','illegal','void','enforceable','','','c','','model','4',100,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:45'),(233,'Proposal form is used in the following classes of insurance except','Accident','theft','life','large risk of fire','','','d','','model','4',73,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:46'),(234,'The following classes of insurance apply the use of proposal form except','public liability','large risk of marine insurance','small risk of marine insurance','theft','','','b','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:47'),(235,'Proposal form is not applicable to the following except','aviation','engineering','large risk of fire','fidelity guarantee','','','d','','model','4',75,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:48'),(236,'Which of the method below can be used to provide indemnity in the event of loss','moral advice','resolution of policy','cash payment','professional encouragement','','','c','','model','4',85,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:49'),(237,'A card used by motorist in the West African sub-region is called','insurance certificate','insurance register','insurance green card','Ecowas brown card','','','d','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:49'),(238,'Situation that are not included in the policy are usually referred to as','condition','exception','preamble','operative clause','','','b','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:51'),(239,'The part of a policy form that shows the name and address of the company is known as','heading','conclusion','condition','preamble','','','a','','model','4',85,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:52'),(240,'One of these shows the introduction to the details of the insurance policy, parties as well as the premium for the contract','preamble','heading','exception','condition','','','a','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:53'),(241,'Policy condition which are automatically applicable and not stated in the contract of agreement is known as','agreed condition','agreed negotiation','implied condition','expressed condition','','','c','','model','4',83,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:54'),(242,'A written amendment in addition or alterations to the information stated in the policy is called','endorsement','specification','construction','attestation','','','a','','model','4',67,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:55'),(243,'The process of changing what is wrong in the policy is called','specification','attestation clause','rectification','justification','','','c','','model','4',70,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:56'),(244,'The process of transferring risk from one insurer to another is called','contribution','re-insurance','re-processing','re-activating','','','b','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:57'),(245,'A reminder to the insured that this existing contract is due to expire is','proposal form','slip','claim form','renewal notice','','','d','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:58'),(246,'One of these is a form of motor vehicle insurance policy','comprehensive','1st party only','2nd party only','accident','','','a','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:59'),(247,'Third party provides cover only for damages to','assurer','insurer','2nd party','another person','','','d','','model','4',83,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:00'),(248,'The type of cover for violent and forcible entry into a premises is called','burglary and theft','third party fire and theft','third party and theft','stealing','','','a','','model','4',63,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:01'),(249,'The deliberate throwing overboard of part of a cargo to lighten the ship is called','barratry','overthrown','voyaging','jettisoning','','','d','','model','4',86,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:02'),(250,'The deliberate throwing overboard of part of a cargo without a good intention is called','jettison','barratry','voyaging','overboard','','','b','','model','4',64,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:03'),(251,'Insurance premium depends on the','amount of profit to be made by the insurer','various insurance companies in a place','extent of the possible loss and the frequency of risk','supply and demand','','','c','','model','5',87,'Admin','2017-01-09 13:58:40','2020-07-14 15:29:04'),(252,'Subrogation in insurance means that','the insured could not make a profit from the insurer','the insured must be fully indemnified','the insurer must take the place of the insured','the insured should pool their risks','','','c','','model','5',76,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:05'),(253,'Payment by the insurer to the insured out of sympathy is known as','utmost good faith','proximate cause','peril','ex-gratia payment','','','d','','model','5',74,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:06'),(254,'If the insured does not want the contract to continue he receives','surrender value','consideration','premium','commission','','','a','','model','5',80,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:07'),(255,'Re-insurance means','accumulation of risk','multiplication of risk','transfer of risk','adding of risk','','','c','','model','5',86,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:08'),(256,'Another name for the assured is','insurance company’s client','insurance broker','insurance company','insurance agent','','','c','','model','5',76,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:09'),(257,'One of the following is legally used by the insured while the policy is being processed','indemnity form','claim form','cover note','proposal form','','','c','','model','5',75,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:10'),(258,'One of the following is necessary to meet uncertainties in future','profit','capital','borrowing','insurance','','','d','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:11'),(259,'When an insured person admits that he has been indemnified, he means that','the insurance company has accepted his claims','the damaged property has been recovered','He has paid his premium','the insurance company has restored him to his former position','','','d','','model','5',78,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:12'),(260,'If the insured has been fully indemnified, the insurers are entitled to take any advantage due to the insured. Principle of insurance involved is','insurable interest','contribution','indemnity','subrogation','','','d','','model','5',77,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:13'),(261,'The settlement of disagreement between the insured and the insurer is called','litigation','arbitration','negotiation','compromising','','','c','','model','5',71,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:14'),(262,'One of this is a method of claim settlement','price','trade by barter','exchange','cash','','','d','','model','5',75,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:15'),(263,'Replacement of damaged property by the insurance company is','arbitration','negotiation','Re-instatement','rectification','','','c','','model','5',84,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:17'),(264,'A reminder to the insured who may have forgotten to seek for continuation after his policy expiry date is','notification message','renewal notice','registration notice','agreement notice','','','b','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:19'),(265,'Which of the following risks is covered by insurance policy?','an investment loss on the stock market','dishonesty of an employee leading to fraud','failure of a business venture','rise and fall of prices of goods in the market','','','b','','model','5',78,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:20'),(266,'One of this is the evidence of insurance contract','schedule','policy','proposal form','endorsement','','','c','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:21'),(267,'One of this is the consideration paid for insurance contract','fee','cheque','commission','premium','','','d','','model','5',73,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:22'),(268,'The payment made when the insured is not entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:23'),(269,'To which of the following does the principle of utmost good faith apply in a contract of insurance?','the insurer only','the proposer only','the third party and insured','insurer and proposer','','','d','','model','5',73,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:24'),(270,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of policy','resolution of dispute','','','a','','model','5',87,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:25'),(271,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','model','5',91,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:26'),(272,'A factor which may influence the occurrence of a loss is','peril','loss','hazard','risk','','','c','','model','5',76,'Admin','2017-01-09 13:58:52','2020-07-14 15:29:27'),(273,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','model','5',78,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:28'),(274,'A reinsurance contract in which the reassured agrees to offer and the reinsurer agrees to accept all risks of certain size within a defined class is','underwriting','treaty','tort','syndicate','','','b','','model','5',72,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:29'),(275,'A contract which has no legal effect is called','void policy','voidable policy','legal policy','formal policy','','','a','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:30'),(276,'The contract aimed at providing specific payment at regular intervals for a fixed   period or for life is','accident','annuity','average','term','','','b','','model','5',95,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:31'),(277,'policy designed for the insured who is incapacitated to carry out normal duty is','medical expenses','temporary disablement','permanent disablement','medical expenses','','','b','','model','5',79,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:32'),(278,'Physical loss of limbs or total blindness injury is an example of','permanent disablement','temporary disablement','mid-term disablement','total disablement','','','a','','model','5',75,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(279,'A policy that covers the peril of the sea is','aviation','marine','life','fire','','','b','','model','5',83,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(280,'An  attempt  to  deprive  someone of his  property is','theft','burglary','robbery','larceny','','','c','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:35'),(281,'The process of examining, accepting or rejecting risks and classifying the ones accepted is','underwriting','policy','procedures','warranty','','','a','','model','5',79,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:35'),(282,'The periodic payment made by the insured to the insurer as financial cost of obtaining insurance','annuity','premium','claim','dividend','','','b','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:36'),(283,'The amount added to the standard premium in respect of the larger than standard risk presented by the proposer is called','premium increase','premium loading','premium payment','premium commission','','','b','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:37'),(284,'Return premium is the same thing as','premium payment','premium refund','premium tax','premium bonus','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:38'),(285,'The principle of maritime law which makes owners of ship and cargo share in a lost incurred voluntarily is','general average','special average','specific average','particular average','','','a','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:39'),(286,'The amount given to the insured if he does not want the contract to continue is called','premium','price','consideration','surrender value','','','d','','model','5',74,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:40'),(287,'Partial loss can be divided into','particular average and general average','particular average and total loss','actual loss and total loss','total loss and particular loss','','','a','','model','5',88,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:41'),(288,'Marine  losses are divided into','actual total and total loss','total loss and partial loss','partial loss and actual loss','average loss and partial loss','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:42'),(289,'The division of total loss are','average loss and partial loss','partial loss and full loss','total loss and actual loss','actual total loss and constructive total loss','','','d','','model','5',70,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:43'),(290,'Marine insurance policy which covers all the ship or vessels belonging to one owner is','flect policy','mixed policy','value policy','fixed policy','','','a','','model','5',86,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:44'),(291,'The full meaning of NAICOM is','Nigerian insurance company','national insurance commission','national insurer commission','national insured commission','','','b','','model','5',83,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:45'),(292,'Speailative risks are','insurable risk','non insurable risk','financial risk','non financial risk','','','b','','model','5',85,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:46'),(293,'The form of risk that can easily be calculated and estimated is known as','non insurable risk','non-financial risk','speculative risk','insurable risk','','','d','','model','5',83,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:47'),(294,'A risk that has its origin in the activities of an individual and the effects borne by this individual is called','pure risk','particular risk','speculative risk','fundamental risk','','','b','','model','5',66,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:48'),(295,'Business interruption insurance can also be called','consequential loss','constructive loss','partial  loss','general loss','','','a','','model','5',88,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:50'),(296,'The maximum number of days allowed for a policy holder to pay his renewal premium after it has become due is called','surrender value','conditions','days of grace','days of liberty','','','c','','model','5',73,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:51'),(297,'The  factor  that has  the  tendency  to  increase  the occurrence of a risk is called','risk','loss','hazard','peril','','','d','','model','5',80,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:52'),(298,'The cause of a loss is','peril','hazard','risk','loss','','','a','','model','5',85,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:53'),(299,'The party who proposes to the insurance company to insure his properly is called','offeree','offeror','acceptance party','offer client','','','b','','model','5',75,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:55'),(300,'One of these is a full time professional','broker','agent','factor','insurer','','','a','','model','5',70,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:56'),(301,'Insurance against risk is possible because of the law of','large numbers','few numbers','inverse proportion','diminishing returns','','','a','','wassce','2015',78,'Admin','2017-01-09 14:33:34','2020-07-14 15:29:59'),(302,'Which  of  the  following  is  not  a  component  of  an insurance policy?','Signature clause','Particular clause','Recital clause','Operative clause','','','b','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:01'),(303,'Which of the following is a component of premium in insurance?','Margin','Reserve','Funds','Capital','','','c','','wassce','2015',73,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:03'),(304,'In which of the following classes of insurance is no <em>claim discount</em> applicable?','Money insurance','Marine insurance','Motor insurance','Aviation insurance','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:05'),(305,'The payment by an insurer to the insured in the event of loss is','claim','premium','fee','interest','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:07'),(306,'Which of the following is the function of a loss adjuster?','Ensures payment of adequate compensation','Advises the insurer on claim','Operates with unlimited authority','Notifies insurer of the loss','','','a','','wassce','2015',68,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:08'),(307,'A fire insurance policy guaranteed by the insured to be in place for a stated period with a particular insurer is granted a _____________','no claim discount','fleet discount','long - term agreement discount','plurality discount','','','a','','wassce','2015',74,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:09'),(308,'A type of re - insurance  where  the re - insurer has  the option  to  accept  or  reject  any  risk  presented  for re-insurance is','stop loss','facultative','treaty','excess of loss','','','b','','wassce','2015',91,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:10'),(309,'A new Nissan car valued at N= 350,000 was used to replace a Peugeot car with a sum insured N= 250.000 in private policy. The Peugeot car enjoys a 25% no claim discount. If the rate of premium is 11% and the no claim discount is transferred to the  new vehicle, what  would be the premium for the new Nissan car?','N= 20,625','N= 27,500','N= 28,875','N= 38,500','','','b','','wassce','2015',85,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:12'),(310,'One of the features of term assurance is','investment','profit','protection','surrender','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:13'),(311,'Which  of  the  following  statements  is  true  about property insurance?','The probability that the event may occur','The probability that the event will not occur','The probability that the event may or may not occur','The probability that the event must occur','','','c','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:14'),(312,'In a life assurance contract, when does  the  principle of insurable interest arise?','At the beginning of the contract','At the time of claim','At the middle of the contract','At the time of payment of premium','','','a','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(313,'Which class of life assurance would a young couple who desires to start a new business in five years time purchase?','Whole life policy','Limited whole life policy','Keyman policy','Endowment policy','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(314,'In which of the following policies is <em>certificate of insurance</em>  used?','Burglary insurance','Product liability insurance','Employer’s liability insurance','Money insurance','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:16'),(315,'Which  of  the  following  would  not  give  cause  for subrogation right?','Benefit','Contract','Statute','Salvage','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:17'),(316,'Educational endowment policy is designed to protect the interest of','father','mother','child','uncle','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:18'),(317,'A clause in an insurance policy that makes a claim jointly payable to the policyholder and the third party is','claim clause','mortgagee clause','mortgage clause','joint liability clause','','','d','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:21'),(318,'The policy that covers  an  insured  employee  against injury  sustained  in  the  course  of  employment  is','professional indemnity','product liability','public liability','employer’s liability','','','d','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:22'),(319,'What is  the  maximum  liability which the insurer can pay on a particular loss?','Average','Sum insured','Franchise','Excess','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:23'),(320,'A policy taken to cover several shipments for a sum assured is','floating policy','valued policy','declaration policy','special policy','','','a','','wassce','2015',70,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:24'),(321,'A policy taken for full protection against fire and other risks such as flood, tempest, riot and civil commotion is','consequential loss','fire and all risks policy','combined householder’s policy','fire and special perils','','','a','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:25'),(322,'The  person  that   transfers  risks  to  the  insurance company is called','a broker','an insured','an underwriter','a loss adjuster','','','b','','wassce','2015',82,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:26'),(323,'A clause in marine insurance policy prohibiting the insured from giving up a damaged property is','deductible','abandonment','indemnity','compensation','','','a','','wassce','2015',76,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:27'),(324,'Insurance is described as a risk','avoidance mechanism','regulating mechanism','transfer mechanism','assessment mechanism','','','c','','wassce','2015',69,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:28'),(325,'A fire insurance policy valued at N= 250,000 is issued at the rate of 0.2%. How much would the premium be, if the policy is granted with 5% long - term agreement discount?','N= 475','N= 500','N= 12,500','N= 13,000','','','a','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:29'),(326,'What is the full meaning of “NCRIB” in the insurance industry?','National  Council of  Registered Insurance  Brokers','Nigerian  Council of  Registered Insurance  Brokers','Nigerian Corporation of Registered Insurance Brokers','National Corporation of Registered Insurance Brokers','','','b','','wassce','2015',81,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:30'),(327,'Which of the following is not a function of an insurance underwriter?','Determining rates and coverage for the risk','Deciding whether to take the risk','Looking for an insurer to take the risk','Deciding whether to reject the risk','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:31'),(328,'The cover that is taken at the option of the motor vehicle owner is','a comprehensive cover','an act only cover','a third party only cover','a special type cover','','','c','','wassce','2015',92,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:31'),(329,'The  sum  insured  for  a  risk  is  N= 150,000  and  was accepted  for  fire  insurance at a rate of  0.25%. How much will the insured pay as a premium?','N= 125','N= 375','N= 500','N= 875','','','b','','wassce','2015',67,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:32'),(330,'The amount payable to an insured in the event of fire damage of household items is the','cost of repair','actual cash value','replacement cost','sum insured','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:33'),(331,'A motorist travelling from Ghana to Nigeria would be required to obtain one of the following types of motor insurance cover','green card','brown card','yellow card','purple card','','','b','','wassce','2015',73,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:34'),(332,'One of the benefits payable under personal accident insurance policy is','retirement benefit','surrender benefit','death benefit','transfer benefit','','','c','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:35'),(333,'A  trade  group for insurance  companies in  Nigeria is called','Chartered Insurance Institute of Nigeria','National Insurance Commission','Nigerian Corporation of Registered Insurance Brokers','Nigerian Insurers Association','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:36'),(334,'The process of  assessing  risks  in  insurance  and classifying them according to their degree of insurability so  that  the  appropriate  rate  may  be  assigned  is','inspecting','underwriting','surveying','evaluating','','','d','','wassce','2015',87,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:37'),(335,'Who  among  the  following  is  an  employer  of  loss adjuster?','Insurer','Broker','Insured','Agent','','','a','','wassce','2015',75,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:38'),(336,'The meaning of with <em>profit policy</em>  in life assurance is that the sum assured is paid','without profit','with profit','with interest','without interest','','','c','','wassce','2015',86,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:39'),(337,'The  document issued by  the  insurer when there is a change in the particulars of a risk insured is','endorsement','certificate','voucher','policy','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:40'),(338,'The amount charged when a ship overstays at the port under a marine contract is','penalty','fine','overcharge','demurrage','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:41'),(339,'Which of the following documents forms the basis of a contract in insurance business?','Policy document','Proposal form','Claim form','Discharge form','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:42'),(340,'The  difference  between  theft  and burglary insurance lies in evidence of','pilfering  of insured items','removal of insured items by tricks','forceful violent entry or exit affecting insured items','threat leading to loss of insured items','','','c','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:43'),(341,'The right of choice of option for method of indemnity is exercised by the','insured','insurance broker','insurance consultant','insurer','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:44'),(342,'Cover note  in  motor  insurance is issued for a period not exceeding','30 days','60 days','90 days','120 days','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:45'),(343,'Which of the following activities is not involved in claims management?','Proof of loss','Particulars of loss','Premium calculation','Primary investigation','','','c','','wassce','2015',71,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:46'),(344,'Life  assurance  contract is useful to a policyholder in the area of','production','protection','industrialization','rehabilitation','','','b','','wassce','2015',81,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:47'),(345,'Which  of  the  following  functions  is  related  to  life assurance contract? Benefits are','determined  on  the  happening  of  insured  event','determined by the indemnity doctrine','determined at the inception of the policy','assessed by the extent of the loss','','','c','','wassce','2015',90,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:48'),(346,'The saving element in a permanent life assurance policy which represent the policyholder’s interest in the policy is','surrender value','cash value','sum assured','residual value','','','c','','wassce','2015',79,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:49'),(347,'Which of the following is a duty of an insured in an insurance contract?','Concealment of facts','Exposure of facts','Disclosure of facts','Acceptance of facts','','','c','','wassce','2015',72,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:50'),(348,'The principle of maritime law which makes owners of a ship and cargo share in a loss incurred voluntarily is','special average','general average','specific average','particular average','','','b','','wassce','2015',80,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:51'),(349,'Which of the following factors limits indemnity?','Cession','Re - insurance','Excess','Co - insurance','','','b','','wassce','2015',74,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:52'),(350,'A  temporary  insurance  document  providing  coverage until a permanent policy is issued is','proposal form','cover note','policy document','insurance certificate','','','b','','wassce','2015',89,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:53');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `irk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `irk` VALUES (1,'The reason Mecca suwar lay emphasis on oneness of Allah is because  ','it was the only way to call Mecca to Islam  ','it is the only article of faith  ','it is the only article of peace between Prophet Muhammad and the Mecca  ','the pre-Islamic Mecca were idolatrous ','','','d','','post-utme-aaua','2012',931,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:59'),(2,'Uthman B. Affan reigned between  ','644 and 656 ','657 and 688  ','655 and 657  ','644 and 655  ','','','a','','post-utme-aaua','2012',967,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:00'),(3,'The final and total prohibition of intoxicants is contained in Surah  ','al-Baqarah  ','an-Nisa  ','al-Maidah  ','al- I a  ','','','c','','post-utme-aaua','2012',941,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:02'),(4,'Hajjatul Wada of Prophet Muhammad was delivered in ','632','630','628','631','','','a','','post-utme-aaua','2012',949,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:03'),(5,'Suratul-Kawthar was revealed following the _____ of the Mecca  ','uproar  ','insinuation  ','intolerance  ','resistance  ','','','b','','post-utme-aaua','2012',952,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:04'),(6,'Zakat is paid on the following except____  ','cash  ','cattle  ','slaves','all of the above ','','','c','','post-utme-aaua','2012',936,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:05'),(7,'The i itial suggestio  to o pile the Qu a   as aised   ','A u Bak  ','Umar B. Khattab  ','Zaid B. Thabit  ','Uthman B. Affan  ','','','b','','post-utme-aaua','2012',953,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:06'),(8,'One importance of wearing the Ihram during Hajj is_____  ','it directs the mind of all Muslims towards Allah  ','it purifies the Muslims  ','it makes all Muslims equal  ','it distinguishes pilgrims by country of origin  ','','','c','','post-utme-aaua','2012',954,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:07'),(9,'The reason for the declaration of Jihad against the Islamic state of Borno by Muhammad Bello wasbecause of the people','rebellion  ','extremism ','syncretism  ','fundamentalism ','','','c','','post-utme-aaua','2012',941,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:08'),(10,'The oa d gi e  to P ophet Muhad is the first  e elatio  of the Qu a  tells us about ____ ','education  ','prosperity  ','worship  ','Allah ','','','a','','post-utme-aaua','2012',939,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:09'),(11,'?eek k o ledge, e e  u to Chi a   ea s ____ ','go to China to seek knowledge  ','knowledge is found in China  ','go at any length to seek knowledge  ','knowledge must be sought in china   ','','','c','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:10'),(12,'The spokesman of the Muslims before Emperor Negus was ','Jaafar  ','Al-As  ','Abu Musa  ','Masa Musa  ','','','a','','post-utme-aaua','2012',928,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:11'),(13,'The first place of Muslims ig atio   as ___','Abyssinia  ','Taif  ','Medina  ','Yathrib ','','','b','','post-utme-aaua','2012',935,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:12'),(14,'Al-Tawrat was revealed to  ','Isa  ','Musa  ','Prophet Muhammad  ','Idris ','','','b','','post-utme-aaua','2012',933,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:13'),(15,'Literally, Boko Haram means  ','book is forbidden  ','education is forbidden  ','Western education is forbidden  ','school is forbidden  ','','','c','','post-utme-aaua','2012',918,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:14'),(16,'Wudu means  ','ablution','dry ablution  ','water ablution  ','wet ablution ','','','b','','post-utme-aaua','2012',955,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:27'),(17,'If Alhaji Musa Ayuba invested N10, 000: 00 in a business and made a profit of N2, 000: 00 at the','N215.00','N100: 00  ','N50:00  ','N1000:00 ','','','c','','post-utme-aaua','2012',950,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:28'),(18,'Ibadah refers to  ','worship of ancestors  ','worship of the Prophet  ','worship of the caliphs ','worship of Allah  ','','','d','','post-utme-aaua','2012',967,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:29'),(19,'Shirk means ____  ','monotheism ','polytheism','henotheism  ','syncretism ','','','b','','post-utme-aaua','2012',922,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:29'),(20,'Which one of the following is not associated with shirk _____ ','idol worship  ','trinity  ','monotheism  ','henotheism ','','','c','','post-utme-aaua','2012',938,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:30'),(21,'If a Muslim prays five times daily on a regular basis, how many times will he have prayed a regular ','1825','1835','1835','1845','','','a','','post-utme-aaua','2012',906,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:31'),(22,'Lakum dinukum wa Liya dinin means  ','religion is good  ','to you is my religion and to me yours  ','to you is your religion and to me is my religion ','my religion is better than yours  ','','','c','','post-utme-aaua','2012',916,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:32'),(23,'According to Islamic traditions, inability to marriage may rise as a consequence of   ','defects in sex organs  ','permanent illness  ','impotence  ','all of the above  ','','','d','','post-utme-aaua','2012',918,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:33'),(24,'Walam yakun lahu Kufuwan Ahadun is_____  ','the second ayat of the 112th surah  ','sixth ayat of the 111th surah  ','fourth ayat of the 112th surah ','seventh ayat of the 114th surah  ','','','c','','post-utme-aaua','2012',968,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:34'),(25,'The main message of ayay Amanar-Rasul is  ','the significance of knowledge  ','the articles of faith  ','the pillars of Islam  ','payment of Zakat ','','','b','','post-utme-aaua','2012',925,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:35'),(26,'Talaq al-','irrevocable ','revocable  ','impermissible  ','detestable ','','','a','','post-utme-aaua','2012',922,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:36'),(27,'The word Hafizi in Q.  82: 10 means  ','angels  ','jinns  ','spirits ','man  ','','','a','','post-utme-aaua','2012',930,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:37'),(28,'When Prophet Muhammad got to Yathrib, he had to first and foremost settle the feud between  ','Aws and Khazraj  ','banu Nadir and Mecca  ','Mecca and Medina ','Aws and Nadir  ','','','a','','post-utme-aaua','2012',933,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:38'),(29,'The prophet admonishes that if an abomination is found, a true Muslim should at least  ','hate if from his heart  ','change it with his hands immediately  ','condemn it publicly  ','declare Jihad  ','','','a','','post-utme-aaua','2012',934,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:39'),(30,'The reason Q.  2: 219 forbids wine ad gambling is because  ','they lead one to greater sin than gain  ','they lead to poverty ultimately ','they lead to extravagance and intoxication  ','they make a Muslim to abandon religion  ','','','a','','post-utme-aaua','2012',945,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:02');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `mathematics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `mathematics` VALUES (1,'A regular polygon has each of it angles at 160. What is the number of sides of the polygon? ','36','9','18','20','','','c','','post-utme','2006',1183,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(2,'A girl walks 30m from a point P on  a bearing of 040 to a point Q. she   then walks 30m on a bearing of 140 to a point R. the bearing of R from P is ','90','50 ','45','40','','','a','','post-utme','2006',1149,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(3,'How many different three digit numbers can be formed using the integers 1 to 6 if no integer 1 to 6 if no integer occurs twice in a number? ','720','1260','2520','5040','','','b','','post-utme','2006',1135,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(4,'In how many different ways can the letters of the word GEOLOGY be arranged in order? ','720','1260','2520','5040','','','c','','post-utme','2006',1161,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(5,'A cyclist rode for 30minutes at xhkm/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14   ','x<20  ','x<29  ','x< 28','','','d','','post-utme','2006',1162,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(6,'A business invested a total of N200,000 in two companies which paid dividends of 5% and 7% respectively. If the received a total of N11, 600 as dividend, how much did he invest at 5% ','N160,000 ','N140,000 ','N120,000 ','N80,000','','','c','','post-utme','2006',1143,'Admin','0000-00-00 00:00:00','2020-07-14 15:30:59'),(7,'In a class, 37 students take a least one of chemistry, Economics and Government, 8 students take Chemistry, 19 take Economics and 25 take Government, 12 students take Economics and Government but nobody takes Chemistry and Economics. How many students take both chemistry and Government? ','3','4','5','6','','','a','','post-utme','2006',1177,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:00'),(8,'Solve for p in the following  equation given in base two  11(p+ 110) = 1001p   ','10','11','110','111','','','b','','post-utme','2006',1167,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:01'),(9,'Factorize 16(3x+2y)2-25 (a+2b)2','(12x +8y+5a+10b)(12x+8y-5a-10b)    ','(12x+8y-5a-10b) (12x+8y-5a-10b),    ','20 (3x +2y-a-2b)(3x+2y+a+2b)  ','20(3x+2y+a+2b) (3x+2y+a+2b).','','','a','','post-utme','2006',1145,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:02'),(10,'1.3logx+logy =3. Then, y is  ','(10/x)3 ','(x/10)3  ','(x/10)-3 ','(10/x)1-1/3 ','','','a','','post-utme','2006',1160,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:03'),(11,'Z is partly constant and partly varies inversely as the square of d. when d = 1, z = 11 and when d = 2, z = 5. Find the value of z when d = 4.  ','2','3.5','5','5.5','','','b','','post-utme','2006',1140,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(12,'Expand the expression (x2-2x-3)(x2+x+1).  ','x4-4x2-5x-3  ','–x3-4x2+5x-3','x4-x3-4x2-5x-3  ','x4-4x2-5x -3','','','c','','post-utme','2006',1124,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:04'),(13,'The indefinite integral of the function f(x) = xcosx for any constant k, is ','–cos + sinx +k,  ','xsinx-cosx,   ','xsinx for any constant k,   ','x+sinx+cosx+k','','','c','','post-utme','2006',1101,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:05'),(14,'The trigonometric expression cos 2A +sin 2A can be written as    ','cosA (cosA-sinA),    ','Cos2A +sin2A-2sinAcosA,  ','Cos2A + sin2A = Cos2A –sin2A+2sinAcosA','cos2A+sin2A','','','c','','post-utme','2006',1150,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(15,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is with replacement: ','0.9','1','0.47','0.49','','','d','','post-utme','2006',1137,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:13'),(16,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is without replacement ','0.1','0.47','0.42','0.21','','','b','','post-utme','2006',1204,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(17,'The interior angles of a pentagon are: 180o, 118o, 78o, 84o and  x. The value of x is: ','80o ','108o  ','120o  ','134o','','','a','','post-utme','2007',1160,'Admin','0000-00-00 00:00:00','2020-07-15 13:50:19'),(18,'All the vertices of an isosceles triangle lie on a circle and each of the base angles  of the triangle is 65o. The angle subtended at the centre of the circle by the base of the triangle is: ','130o  ','115o  ','50o  ','65o','','','c','','post-utme','2007',1153,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(19,'A square tile measures 20cm by 20cm. How many of such tiles will cover a floor measuring 5m by 4m? ','500','400','320','250','','','a','','post-utme','2007',1149,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(20,'The volume of a certain sphere is numerically equal to twice its surface area. The diameter of the sphere is: ','6','9','12','','','','c','','post-utme','2007',1153,'Admin','0000-00-00 00:00:00','2020-07-15 13:50:19'),(21,'A bearing of 310o, expressed as a compass bearing is: ','N50oW  ','N40oW  ','S40oW  ','S50oW','','','a','','post-utme','2007',1113,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(22,'Which of the following specified sets of data is not necessarily sufficient for the construction of a triangle? ','three angles  ','two sides and a right angle  ','two sides and an included angle ','three sides','','','a','','post-utme','2007',1176,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(23,'The average age of the three children in a family is 9 years. If the average age of their parent is 39 years, the average age of the whole family is: ','20 years  ','21years  ','24years  ','27years','','','b','','post-utme','2007',1098,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:21'),(24,'Evaluate x in base 3 if 41x-22x=17x. ','11','8','12','22','','','d','','post-utme','2007',1264,'Admin','0000-00-00 00:00:00','2020-07-15 13:50:19'),(25,'When the price of egg was raised by N2 an egg, the number of eggs which can be bought for N 120 is reduced by 5. The present price of an egg is ','N 6. ','N 7  ','N 8','N10','','','c','','post-utme','2007',1121,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:24'),(26,'How long will take a sum of money invested at 8% simple interest to double the original sum? ','8 years  ','10.5years  ','(1years ','12.5years','','','d','','post-utme','2007',1129,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(27,'The journey from Lagos to Ibadan usually takes a motorist 1 hour 30 minutes. By increasing his average speed by 20km/hr, the motorist saves 15 minutes. His usual speed, in Km/hr is ','100','90','85','80','','','a','','post-utme','2007',1115,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:26'),(28,'The smallest section of a rod which can be cut 36cm in length is','90cm ','180cm ','360cm  ','540cm.','','','b','','post-utme','2007',1114,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(29,'If x= 0.0012 + 0.00074 + 0.003174, what is the difference between x to 2 decimal places and x to 1 significant figure? ','0.01','0.0051','0.1','0.005','','','d','','post-utme','2007',1136,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:27'),(30,'In a survey of 100 students in an institution, 80 students speak Yoruba, 22 speak Igbo, while 6 speak neither Igbo nor Yoruba. How many students speak Yoruba and Igbo? ','96','8','64','12','','','b','','post-utme','2007',1160,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(31,'The expression a 3 + b 3 is equal  to ','(a2 +b)(a-ab+b2 )','(a+b)(a2 –ab+b2 )  ','(a-b2)(a2-  ab+b)','(a­-b)(a2+ab+b2)','','','b','','post-utme','2008',1197,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:29'),(32,'Factorize 16(3x +2y)2 -25(a+2b)2  ','(12x + 8y -5a-10b)(12x+8y-5a-10b)','20(3x +2y-a-2b)(3x+2y+a+1-2b) ','(12x +8y+5a+10b)(12x +8y-5a-10b)','20(3x +2y+ a+2b)(3x + 2y+a+2b)','','','a','','post-utme','2008',1098,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(33,'A cone has base radius 4cm and  height 3cm. The area of its curved surface is','12pcm2     ','20pcm2','24pcm2 ','15cm2','','','b','','post-utme','2008',1140,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(34,'A. cylinder has height 4cm and base radius 5cm.its volume to 3 significant figure is  ','314.2cm2 ','31.42 cm2 ','251 4cm2 ','251cm2','','','b','','post-utme','2008',1164,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(35,'A cyclist rode for 30minutes at xkm/hr and due to a breakdown, he had to push the bike for 2hrs at (x – 5) km/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14','x<29','x<28','x<20','','','c','','post-utme','2008',1156,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(36,'The expression ax2 + bx takes the value 6 when x = 1 and 10 when x = 2. Find its value when  x = 5       ','10','12','6','.-10','','','a','','post-utme','2008',1171,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(37,'Dividing 2x3 – x2 – 5x + 1 by x  + 3 gives the remainder ','.-3','47','61','-47','','','d','','post-utme','2008',1177,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(38,'The difference of two numbers is 10, while their product is 39. Find these numbers','– 3 and 10 or 13 and 10,','3 and – 10 or 3 and 13,  ','3 and – 3 or 3 and 13,     ',' – 3 and – 13 or   13 and  3 ','','','d','','post-utme','2008',1166,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:36'),(39,'The average age of x pupils in a class is 14 years 2 months. A pupils of 15years 2 months joins the class and  the average age is increased  by one month. Find x.      ','12, ',' 6, ','11,','14,','','','c','','post-utme','2008',1206,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(40,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. 13. How many learn both languages? ','60','45','15','120','','','c','','post-utme','2008',1088,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:38'),(41,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. How many learn Igbo only?   ','45','30','15','60','','','a','','post-utme','2008',1145,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:39'),(42,'If the distance covered by a body in time t seconds is s = t2 - 6t2  - 5t, what is its initial velocity?  ','0ms-1    ','-4 ms-1 ','(13t2  - 12t + 5) ms-1   ','5ms-1 ','','','d','','post-utme','2008',1195,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:40'),(43,'The trigonometric expression cos2A + sin 2A can be written as:  ','cosA(cosA + sinA)  ','B.cos2A + sin2A – 2sinAcosA,  ','2sinAcosA + cos2A + sin2A,  ','D.cos2A +sinA  – 2sinAcosA','','','c','','post-utme','2008',1084,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(44,'With replacement ','0.9,','1, ','0.4,','0.49','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','d','','post-utme','2008',1105,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:41'),(45,'Without replacement ','0.1, ','0.47, ','0.42,   ','0.21','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','b','','post-utme','2008',1205,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(46,'The fair coins are tossed simultaneously. What is the probability of obtaining at least 1 tail turns up? ','1/4','3/4','1/2','1','','','b','','post-utme','2008',1154,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:43'),(47,'A regular polygon has each of it angles as 1600. What is the number of sides of the polygon?  ','18,    ','36,       ','9,     ','20','','','a','','post-utme','2008',1145,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:44'),(48,'One angle of an octagon is 1000 while the other sides are equal. Find each of these exterior angles. ','800,','600,','1400,           ','400,   ','','','d','','post-utme','2008',1153,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(49,'A sector circle of radius 7.2cm which subtends an angle of 3000 at the centre is used to   form a cone. What is the radius of the base of the cone?. ','6cm ','7cm ','8cm    ','9cm      ','','','a','','post-utme','2009',1068,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:46'),(50,'If 32y – 6(3y) = 27, find y ','3','-1','2','-3','','','c','','post-utme','2009',1135,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:47'),(51,'An (n-2)2 sided figure has n diagonal, find the number n of diagonal for a 25 sided Figure   ','8','7','6','10','','','b','','post-utme','2009',1169,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:48'),(52,'A sum of money was invested at 8% per annum simple interest. If after 4 years, the   money became ','N180 ','N 165 ','N15   ','N 200','','','d','','post-utme','2009',1194,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:49'),(53,'Two fair dice are rolled. What is the probability that both show up the same number of point?','1/36 ','7/36 ','½ ','1/6','','','d','','post-utme','2009',1162,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:50'),(54,'Find the probability of selecting a figure which is parallelogram from a square, a rectangle, a rhombus, a kite and a trapezium  ','3/5 ','2/5 ','1/5 ','1/5 ','','','a','','post-utme','2009',1254,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(55,'A man kept 6 black, 5 brown and 7 purple shirts in a drawer. What is the probability of his picking a purple shirt with his eyes close ','1/7','7/18 ','11/18 ','7/11','','','b','','post-utme','2009',1148,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(56,'If P varies inversely as V and V varies directly as R2, find the relationship between P and R given that R = 7 when P = 2 ','P = 98R2 ','PR2 = 98 ','P2R = 89 ','P = 1/98R ','','','b','','post-utme','2009',1243,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:53'),(57,'If 7 and 189 are the first and fourth terms of a geometric progression respectively find the sum of the first three terms of the progression ','182','180','91','63','','','c','','post-utme','2009',1229,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(58,'Find the positive number n such that thrice its square is equal to twelve time the number ','1','4','2','5','','','b','','post-utme','2009',1212,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:55'),(59,'Given a regular hexagon, calculate each interior angle of the hexagon ','60','30','120','15','','','c','','post-utme','2009',1185,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:56'),(60,'Factorize 6x2 – 14x – 12 ','2(x + 3)(3x – 2) ','6(x – 2)(x + 1) ','2(x – 3)(3x + 2) ','6(x + 2)(x – 1) ','','','c','','post-utme','2009',1158,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(61,'The value of (0.303)3 – (0.02)3 is ','0.019','0.0019','0.0268','0.000019','','','c','','post-utme','2009',1195,'Admin','0000-00-00 00:00:00','2020-07-15 13:50:19'),(62,'What is the product of 27/5 ¸(3)3 and (1/5) ','5','3','2','1','','','c','','post-utme','2009',1178,'Admin','0000-00-00 00:00:00','2020-07-14 15:31:59'),(63,'Find the probability that a number selected at random 40 to 50 is a prime number   ','3/11','5/11','5/10','4/10','','','a','','post-utme','2009',1136,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:00'),(64,'If the length of the sides of a right angled triangle are (3x + 1)cm, (3x – 1)cm and xcm, what is x ? ','2','6','18','12','','','d','','post-utme','2009',1120,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:00'),(65,'A number of pencils were shared out among peter, Paul and Audu in the ratio 2:3:5 respectively. If Peter got 5, how many were shared? ','15','25','30','50','','','b','','post-utme','2009',1095,'Admin','0000-00-00 00:00:00','2020-07-15 13:50:19'),(66,'Solve 4x2 +20x -24 =0',' 1, 6',' -1, -6','6, -1','-6, 1','','','d','','post-utme','2013',1160,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(67,'What is the 15th term of the sequence -3, 2,7,…? ','65','66','68','67','','','d','','post-utme','2013',1118,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:03'),(68,'What is the remainder when x3 +5x2-6x+1 is divided by x-1? ','-1','2','-2','1','','','d','','post-utme','2013',1167,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:04'),(69,'If  are the roots of equation 6 +5x –x2 =0, find  x','11','-11','1','-1','','','b','','post-utme','2013',1185,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:05'),(70,'Solve the equation  = 25x+4 ','-4, 2 ',' -4,-2 ','4, -2','4, 2','','','a','','post-utme','2013',1121,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(71,'What is the coordinate of centre of the circle X2+y2+2x-4y =10?  ','(-1,-2)','( 1, 2)',' (-1, 2) ',' (1, -2)','','','d','','post-utme','2013',1074,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(72,'Solve the equation 3x+1 = 271-x  ','1/2','-1/2','3/4','-3/4','','','a','','post-utme','2013',1167,'Admin','0000-00-00 00:00:00','2020-07-14 14:36:51'),(73,'Given f(x) =3+x and g(x) =3-x, find g (f(x))','6','x','-x','0','','','b','','post-utme','2013',1092,'Admin','0000-00-00 00:00:00','2020-07-15 14:01:31'),(74,'Differentiate sin (2x-5) with respect to x. ','cos (2x-5)','–cos (2x-5)   ',' 2cos (2x-5)','-2cos (2x-5)','','','c','','post-utme','2013',1170,'Admin','0000-00-00 00:00:00','2020-07-14 08:34:58');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `naijafb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `naijafb` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'What is the full meaning of APC','All progress Congress','Alliance progress Congress','All progressive Congress','Alliance progressive Congress','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full meaning of PDP','Power for the People','People Democracy Party','People Democratic Party','Share the money sharp sharp','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'How old was President Buhari when he won 2015 presidential general election','70','72','73','74','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'About how many million votes did General Buhari use to deaf President Goodluck Jonathan?','10.1 Million','5.1 Million','2.1 million','1.1 million','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Who was the spoken man of APC during the presidential elections?','Liel Mohammed','Lia Mohammed','Bello Mohammed','Adams Mohammed','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who was the spoken man of PDP during the presidential elections?','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'President Buhari is from what state?','Kano','Kaduna','Katsina','Jigawa','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many presidential elections did General Buhari contested in before wining in2015?','3','5','4','2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'The only woman that contested in 2015 presidential election was from which party','ANPP','CPC','AA','KOWA','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'What is the name of first female Nigerian to run for office as a democratic president?','Funmilayo Ransome Kuti','Remi Sonaiya','Oby Ezekweslli','Bola Ara','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'2015 general election INEC chairman was','Attahiru Hammed Jega','Attahiru Mohammed Jega','Attahiru Muhammadu Jega','Atta Muhammadu Jega','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'The official release of 2015 presidential general election results was on','March 30th','March 31th','March 29th','April 4th','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'2015 general presidential election took place on','14-Mar','28-Mar','1-Apr','14-Feb','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' The spokesperson for President Goodluck Jonathan?s during 2015 election was','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which country won 2015 FIFA U-17 world cup','Mali','Nigeria','Brazi','Spain','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' Nigeria became a republic in','1960','1962','1963','1965','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What day is regarded as democracy day?','27-May','1-May','29-May','25-May','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What day is regarded as workers? day?','27-May','1-May','29-May','25-May','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' What day is regarded as children?s day?','27-May','1-May','29-May','25-May','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,' In year 2015, Nigeria as an independent state will be how old','50','53','54','55','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' What are the colors of Nigeria Flag?','Green white green','Green and white','Green , green white','Green brown green','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,' Nigeria commercial capital is','Abuja','Port Harcourt','Lagos','Kano','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' How many states are in Nigeria?','37','36','35','34','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' Which of the following is not a minister of President Buhari administration 2015','Babatunde fashola','Chris Ngige','Kayode Fayemi','Solomon David','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' How many ministers were appointed by President Buhari Administration?','30','37','32','36','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Which Nigeria army office allegedly looted 32 billion naira?','Gen. Sambo Dasuki','Col. Sambo Dasuki','Major. Sambo Dasuki','Officer Sambo Dasuki','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' The full meaning of EFCC is','Economic and Financial Crimes Conduct','Economic and Finances Crimes Commission','Economic and Financial Crimes Commotion','Economic and Financial Crimes Commission','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' What is the Capital of Jigawa State?','Bornu','Maiduguri','Dutse','Makurdi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' What is the Capital of Benue State?','Bornu','Maiduguri','Dutse','Makurdi','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' What is the Capital of Zamfara State?','Bornu','Maiduguri','Gusau','Makudi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `physics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `physics` VALUES (1,'A 70kg man ascends a flight of stairs of height 4m in 7s. The power expended by the man is;','40W ','100W ','280W ','400W','','','a','','post-utme','2006',3892,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:07'),(2,'A body accelerates uniformly from rest at 6ms-2 for 8 seconds and then decelerates uniformly to rest in the next 5 seconds. The magnitude of the deceleration is: ','9.6ms-2 ','48 ms-2 ',' 24 ms-2 ','39.2 ms-2','','','a','','post-utme','2006',3824,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:08'),(3,'A nail is pulled from a wall with a string tied to the nail. If the string is inclined at an angle of 30oC to the wall and the tension in the string is 50N, the effective force used in pulling the nail is: ','25N ','25√3 N ','50N ','50√3N','','','a','','post-utme','2006',3769,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(4,'If M and R are the mass and radius of the earth respectively and G is the universal gravitational constant, the earth’s gravitational potential at an altitude H above the ground level is: ','A.-GM/H ','–GM/(R+H) ','C. -GM/2H ','D. –GM/(R-H)','','','b','','post-utme','2006',3853,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:10'),(5,'Which of the following statements is not true? ','as the slope of an incline plane increases, the velocity ratio decreases, ','the efficiency of an incline plane decreases as the slope increases ','the effort required to push a given load up an incline plane increases as the slope increases','The mechanical advantage of smooth incline plane depends on the ratio of the length to the height of the plane.','','','d','','post-utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:11'),(6,'The ice and steam point of a thermometer are 20mm and 100mm respectively: A temperature of 75oC correspond to Ymm on the thermometer. What is Y? ','100mm ','70mm ','80mm ','60mm','','','c','','post-utme','2006',3785,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:12'),(7,'  An electric kettle with negligible heat capacity is rated at 2000W, if 2.0kg of water is put in it, how long will it take temperature of water to rise from 20oC to 100oC? (specific heat capacity of water = 4200J/Kg-1K-1) ','336s ','240s ',' 168s ','84s','','','a','','post-utme','2006',3787,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:13'),(8,' A quantity of ice –10oc is heated until temperature of heating vessel is 90oc. Which of the following constant is NOT required to determine the quantity of heat supplied to the vessel? ','Specific latent heat of vaporization ','specific heat capacity of ice ','specific latent heat of fusion ','specific heat capacity of water','','','a','','post-utme','2006',3791,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(9,'The scent from a jar of perfume open move through the air molecules by ','evaporation ','osmosis ','diffusion ','Convection','','','c','','post-utme','2006',3937,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:15'),(10,'  A convex lens of focal length 10.0cm is used to form a real image which is half the size of the object. How far from the object is the image? ','45cm ','30cm ','15cm ','20cm','','','c','','post-utme','2006',3767,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(11,'An object of height 3.00cm is placed 10cm from a biconvex lens of 15cm, the image of the object is ','real and 3.00cm tall ','virtual and 3.00cm tall ',' virtual and 9.00cm tall ','real and 9.00cm tall','','','c','','post-utme','2006',3833,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:17'),(12,'The most suitable type of mirror used for the construction of search light is the: ','concave mirror ','Convex mirror ','Spherical mirror ','Parabolic Mirror','','','d','','post-utme','2006',3867,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:18'),(13,'Light wave and ripples of water are similar because both','are longitudinal waves ','have the same velocity ','can be diffracted and refracted ','have the same frequency ','','','c','','post-utme','2006',3897,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:19'),(14,'Three 4Ω resistors were connected in series by Tola, while Ade connected the ','1:02','1:09','1:10','1:15','','','b','','post-utme','2006',3880,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:20'),(15,'A coil of copper wire of N turns is kept rotating between the poles of a magnet  such that the magnetic flux linking the coil changes continuously. Which of the  following statements is TRUE? ','An e.m.f is induced in the coil such that when  the change of flux is positive the e.m.f is positive, and when the change of flux is negative the e.m.f is negative. ','An e.m.f is induced in the coil whose magnitude  is inversely proportional to both the number of turns in the coil and the rate of  change of magnetic flux ','. An e.m.f is set up in the permanent magnet which  reduces the flux in the coil to zero ','A current flows in the coil and e.m.f is set  up proportional to both the rate of change of the flux and the number of turns','','','d','','post-utme','2006',3950,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(16,'The principle of operation of an induction coil is based on ','Ohm’s law ','Ampere’s Law ','Faraday’s Law ','Coulomb’s Law','','','c','','post-utme','2006',3839,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(17,'Which of the following radiations cannot be deflected by an electric field or ','(i) and (ii) only ','(ii) only ','(iii) and (iv) only ','(i) and (iii) only','','','c','','post-utme','2006',3823,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(18,'The half-life of a radioactive element is 9 days. What fraction of atoms has decayed in 36 days? ','16-Jan','¼ ',' ½ ','15/16','','','d','','post-utme','2006',3801,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:23'),(19,'What is the dimension of pressure? ','ML-1T-2 ','MLT-2 ','ML2T-3 ','ML-3','','','a','','post-utme','2007',3859,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:24'),(20,'Calculate the length of a displaced pendulum bob that passes its lowest point twice every second. [g=10ms-1] ','.100m ','0.253m ','0.450m ','0.58m','','','b','','post-utme','2007',3805,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(21,'When a ball rolls on a  smooth level ground, the motion of its centre is ','translational ','Random ','Oscillatory ','Rotational','','','a','','post-utme','2007',3910,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(22,'A vehicle of mass m is driven by an engine of power P from rest. Find the minimum time it will take to acquire a speed v. ','mv2/p ','mv2/2p ','mv/p ','mv/2p','','','b','','post-utme','2007',3784,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:27'),(23,'A box of mass 40kg is being dragged  along by the rope inclined at 60o to the horizontal. The frictional force between the box and the floor is 100N and the tension on the rope is 300N. How much work is done in dragging the box through a distance of 4m? ','680J ','200J ','100J ','400J','','','c','','post-utme','2007',3868,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:28'),(24,'A body is projected from the earth’s surface with the hope of letting it escape from the earth gravitational field. What is the minimum escape velocity?  [Earth’s radius = 6.4 x 103km, g = 10 ms-2]','11.3kms-1 ','13.3kms-1 ','12.3kms-1 ','14.3kms-1 ','','','a','','post-utme','2007',3807,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:29'),(25,'A uniform rod PQ of mass 2kg and length of 1m is pivoted at the end P, if a load of 14N is placed at the centre, find the force that should be applied vertically upwards at Q to maintain the rod in equilibrium ','7N ','28N ','68N ','17N','','','d','','post-utme','2007',3827,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:30'),(26,'The energy contained in wire when it is extended by 0.02m by a force 500N is ','104J ','103J ','10J ','5J','','','d','','post-utme','2007',3915,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(27,'What is the acceleration due to gravity ‘g’ on the moon, if ‘g’ is   10ms-2 on the earth?','0.74ms-2 ','0.1ms-2 ','10.0 ms-2 ','1.67 ms-2','','','c','','post-utme','2007',3840,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(28,'A 5kg block is released from rest on a smooth plane inclined at an angle of 30o to the horizontal. What is the acceleration down the plane?  [ g = 10ms-2]','5.0 ms-2 ',' 8.7 ms-2 ','25.0 ms-2 ','5.8 ms-2   ','','','a','','post-utme','2007',3971,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:41'),(29,'A rectangular metal block of volume 10-6m3 at 273K is heated to 573K, if the coefficient of linear expansion is 1.2 x 10-5K-1, the percentage change of its volume is ','1.50%','1.10%','0.10%','0.40%','','','b','','post-utme','2007',3783,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:42'),(30,'A temperature scale has a lower fixed point of 40mm and an upper fixed point of 200mm. What is the reading on this scale when the temperature reads 60oc? ','136.omm ','33.3mm ','96.0mm ','36.0mm','','','a','','post-utme','2007',3839,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:43'),(31,'A 500kg car was initially at rest travelled with an acceleration of 5ms-2, what is its kinetic energy after 4s ','2.5 x 103J ','105J ','5 x 103J ','5 x 105J','','','b','','post-utme','2007',3821,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:44'),(32,'The temperature at which the water vapour in the air saturates the air and begins to condense is','melting point ','triple point ','dew point ','melting point','','','c','','post-utme','2007',3802,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:45'),(33,'The period of a simple pendulum will increase by what factor of its extensible length increased by a factor of four ','2','4','2','¼','','','c','','post-utme','2007',3891,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(34,'An air column 10cm in length is trapped into the sealed end of a capillary tube by a 15cm column of mercury with the tube held vertically. On inverting the tube, the air column becomes 15cm long, what is the atmospheric pressure during the experiment? ','76cm ','75cm ','60cm ','70cm','','','b','','post-utme','2007',3795,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:53'),(35,'An electric cell has an internal resistance of 2Ω. A current of 0.5A was measured when a resistor of resistance 5Ω was connected across it. Determine the electromotive force of the cell','3.5V ','2.5V ','4.5V ','2.35V','','','a','','post-utme','2007',3942,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:54'),(36,'The speed of light in air is 3 x 108ms-1. If the refractive index of light from air to water is 4/3, calculate the speed of light in water ','2.25 x 108ms-2 ','2.25ms-1 ','4.00ms-1 ','4.33ms-1','','','c','','post-utme','2007',3830,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:55'),(37,'It is known that an atomic nucleus comprises of positive charged protons. Which of the following also exist in the nucleus? ','a beta particle ','an Alpha particle ','A neutron ','An electron','','','c','','post-utme','2007',3874,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:56'),(38,'The silver wall of a vacuum flask prevents heat loss due to ','conduction ','Convection ','Radiation ','Diffraction','','','c','','post-utme','2007',3813,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:57'),(39,'The electromagnetic waves that are sensitive to temperature changes are','ultra-violet rays ','Gamma rays ','infrared-rays ','X-rays','','','c','','post-utme','2007',3759,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(40,'Under constant tension and constant mass per unit length, the note produced by a plucked string is 500Hz when the length of the string is 0.90m, at what length is the frequency 150Hz?','6m ','3m ','5m ','4m','','','b','','post-utme','2007',3891,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:00'),(41,'Two bodies P and Q are projected on the same horizontal plane, with the same initial speed but at different angles of 30o and 60o respectively to the horizontal. Neglecting air resistance, what is the ratio of range of P to that of Q? ','1:01','1:√3 ','√3:1 ','1:02','','','a','','post-utme','2007',3831,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(42,'A capacity of 2.0 x 10-11F and an inductor are joined in series. The value of the inductance that will give the circuit a resonant frequency of 200KHz is ','1/16H ','1/8H ','1/64H ','1/32H','','','d','','post-utme','2007',3876,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:01'),(43,'Which of these is not a fundamental S.I unit ','Ampere ','Kelvin ','Seconds ','Radians','','','d','','post-utme','2009',3870,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:02'),(44,'If two masses 40g and 60g respectively, are attached firmly to end of a light metre rule, what is the centre of gravity of the system? ','at the mid point of the metre rule ','40cm from the lighter mass ','40cm from the heavier masses ','60cm from the heavier masses ','','','c','','post-utme','2009',3958,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:03'),(45,'To find the dept of the sea, a ship send out a second waves and an echo after one second. If the velocity of sound in water is 1500m/s, what is the depth of the sea ','0.75km ','1.50km ','2.20km ','3.00km ','','','a','','post-utme','2009',3704,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(46,'A machine has a velocity ratio of 5, if it requires a 50kg weight to overcome 200kg weight, the efficiency is? ','4%','5%','40%','80%','','','d','','post-utme','2009',3836,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:05'),(47,'If the force on a charge of 0.2 Coulomb in an electric field is 4N, then electric intensity of the field is ','0.8','0.8N/C  ','20.0 N/C ','4.2 N/C ','','','c','','post-utme','2009',3824,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(48,'The resistance of a wire depends on ','the length of the wire ','the diameter of the wire ','the temperature of the wire ','All of the above','','','d','','post-utme','2009',3941,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:07'),(49,'Which of these is not contained in a dry cell? ','carbon rod ','paste of magnesium dioxide ','paste of ammonium chloride ','zinc case ','','','c','','post-utme','2009',3905,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(50,'When a yellow card is observed through a blue glass, the card would appear as ','black ','green ','red ','white ','','','a','','post-utme','2009',3903,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:09'),(51,'A devise that converts sound energy into electrical energy is ','the horn of a motor car ','An AC generator ','A microphone ','Telephone earpiece ','','','c','','post-utme','2009',3831,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:10'),(52,'Radio waves have the velocity of 3 x 108ms-1. If a radio station sends out a broadcast on a frequency 800kHz, what is the wavelength of the broadcast? ','375.0m ','267.0m ','240.0m ','37.5m ','','','a','','post-utme','2009',3915,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:11'),(53,'The mode of heat transfer which does not require material medium is','conduction ','radiation ','convection ','propagation','','','b','','post-utme','2009',3836,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(54,'The height at which the atmosphere ceases to exist is about 80km, if the atmosphere pressure on the ground level is 760mmHg, the pressure at height of 20km above the ground is ','380mmHg ','570mmHg ','190mmHg ','480mmHg','','','c','','post-utme','2009',3813,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:13'),(55,'A simple pendulum 0.6 long has a period of 1.55, what is the period of a similar pendulum 0.4 long in the same direction ','1.4 √1/3s ','1.5 √1/3s ','2.25s ','None of the above','','','d','','post-utme','2009',3805,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(56,'Which of the following  is common to evaporation and boiling, they ','take place at any temperature ','are surface phenomena ','involve change of state ','take place at a definite pressure ','','','b','','post-utme','2009',3862,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:15'),(57,'A house hold refrigerator is rated 200 watts. If electricity cost 5k per Kwh, what is the cost of operating it for 20 days ','N4.80  ','N48.00 ','N480.00 ','N4800.00 ','','','a','','post-utme','2009',3905,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(58,'The resistance of a 5m uniform wire of cross sectional area of 0.2 x 106m2 is 0.45. What is the resistivity of the material of the wire ','1.10 x 105 ohms ','4.25 x106Ωm ','2.40 x 107Ωm ','1.70 x 108Ωm ','','','a','','post-utme','2009',3872,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:23'),(59,'Which of the following instruments has a pure tone? ','guitar ','Vibrating String ','Turning forks ','Screen ','','','c','','post-utme','2009',3881,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(60,'Four lenses are being considered for use as a microscope object. Which of the following focal length is most suitable ','-5mm ','+5mm ','5cm ','+5cm ','','','b','','post-utme','2009',3778,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(61,'The product PV where P is pressure and V is a volume has the same unit as ','force ','power ','energy ','acceleration ','','','c','','post-utme','2009',3931,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(62,'The force with which an object is attracted to the earth is called ','acceleration ','mass ','gravity ','weight','','','d','','post-utme','2009',3831,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(63,'The refractive index of a liquid is 1.5, if the velocity of light in a vacuum is 3.0 x 108ms-1, the velocity of light in the liquid is ','1.5 x 108ms-2 ','2.0 x 108ms-1 ','3.1 x 108ms-1','4.5 x 108ms-1 ','','','d','','post-utme','2009',3791,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:28'),(64,'A train has an initial velocity of 44m/s and an acceleration of -4m/s2 what is its velocity after 10seconds? ','2m/s ','4m/s ','8m/s ','12m/s ','','','b','','post-utme','2009',3843,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(65,'A man of mass 50kg ascends a flight of stair 5m high in 5 seconds. If acceleration due to gravity is 10ms-2 the power expanded is ','100W ','300W ','250W ','500W','','','d','','post-utme','2009',3927,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(66,'Two strings of the same length and under the same tension give notes of frequency in the ratio 4:1, the masses of the string are in the ratio of ','2:01','1:02','1:04','1:16','','','d','','post-utme','2009',3799,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:31'),(67,'Which of the following phenomena cannot be explained by the molecular theory of matter? ','evaporation ','expansion ','conduction ','radiation','','','d','','post-utme','2010',3824,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:32'),(68,'The most likely measurement of length of an object using a venier caliper is: ','3.0cm ','3.3cm ','3.33cm ','3.333cm','','','b','','post-utme','2010',3970,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:38'),(69,'If 21g of alcohol of density 0.7gcm-3 is mixed with 10g of water, what would be the density of the resulting mixture? ','780gcm-3 ','0.78gcm-3 ','30gcm-3 ','10gcm-3','','','c','','post-utme','2010',3877,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:39'),(70,' For  a particle having an x co-ordinate that varies in time according to the express ion x = 4t -2t2 The instantaneous velocity for of the particle at t = 2.5s is:','12m/s ','6m/s ','0m/s ','10m/s','','','b','','post-utme','2010',3875,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(71,'  A long-jumper leaves the ground at an angle of 20o above the horizontal and at speed of 11m/s. How far does it jumps in the horizontal direction? ','0.384m ','7.94m ','8.45m ','5m','','','d','','post-utme','2010',3831,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(72,'A mass of 0.5kg is attached to one end of a helical spring and produces an extension of 2.5cm. The mass now set into vertically oscillation of amplitude 10mm. The period of oscillation is: (g = 10m/s2) ','0.33s ','100s ','200s ','280s','','','a','','post-utme','2010',3810,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(73,'A boat is passing under a bridge. The deck of the boat is 15m below the bridge. A small package is to be dropped from the bridge onto the deck of the boat is 25m from just below the drop point. What speed is necessary to have the package land in the boat? (g= 9.8ms-2)','17m/s ','14m/s ','1.7m/s ','4.9m/s','','','b','','post-utme','2010',3958,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(74,'A 0.60kg rubber stopper is whirled in a horizontal circle of 0.80m radius at a rate of 3.0 revolutions per second. What is the tension in the string? ','14N ','80N ','170N ','24N','','','c','','post-utme','2010',3914,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:44'),(75,'An automobile is traveling at 60km/hr. calculate the angular velocity of the 0.35m radius wheels. ','16.67rad/s ','47.6 rad/s ','21 rad/s ','171.4 rad/s','','','b','','post-utme','2010',3819,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(76,'An air bubble at the bottom of a lake has a volume of 20cm3, pressure of 4.9Pa, and temperature 4oc the bubble rises to the surface where the temperature is 20oc and the pressure 1.0Pa. Find the volume as the bubble reaches the surface. (take 1 atm = 1.0 x 105 N/m2) ','124cm3 ','319cm3 ','60cm3 ','104 cm3','','','d','','post-utme','2010',3883,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:46'),(77,'  A gas at constant pressure of 4.0 x 105 Pa is cooled so that its volume decreases from 1.6m3 to 1.2m3. What work is performed by the gas? ','6.4 x 105 J ','3.2 x 105 J  ','1.6 x 105 J ','0.4 x 105 J  ','','','c','','post-utme','2010',3845,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:47'),(78,'Highly polished silvery  surfaces are: ','poor absorbers but good emitter of radiation ','good absorbers and good emitters of radiation ','poor emitters but good reflectors of radiation ','poor emitters and poor reflectors of radiation','','','c','','post-utme','2010',3850,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:48'),(79,'A 0.040kg string 0.80m long is stretched and vibrated in a fundamental mode with a frequency of 40Hz. What is the speed (of propagation) of the wave and tension in the string? ','64m/s ','340m/s ','32m/s ','128m/s','','','a','','post-utme','2010',3961,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(80,'What is the total power output of a source with intensity 0.050 W/m2 at a distance of 3.0m from the source? ','112W ','5.6W ','15W ','30W','','','b','','post-utme','2010',3748,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:50'),(81,'The superposition of two or more waves to produce a maximum or zero effect at a point is known as: ','reflection ','refraction ','diffraction ','interference','','','d','','post-utme','2010',3890,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:51'),(82,'The acceleration due to gravity ','increases with increasing altitude ','decreases with increasing altitude ','increases with increase in the square of the altitude ','is not affected by the altitude','','','b','','post-utme','2010',3917,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(83,'Which of the following statements are correct of nuclear fission? During the process \\nI. energy is released \\nII. More neutrons are released than those that cause fission \\nIII. Small nuclei merge into large nuclei \\nIV. There is a loss on mass\\n','II and I only','III','I,II and IV','IV and III','','','c','','post-utme','2010',3931,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:53'),(84,'Which of the following statements is not true? ','electric field intensity is force per unit charge. ','electric potential is a vector ','the S.I unit of electric field strength is N/C ','electric field intensity is equal to the potential gradient','','','b','','post-utme','2010',3797,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:54'),(85,'Which of the following about electrolysis is false? ','liquid that conduct electricity and are split up chemically by the current are electrolyzed','the current into the electrolyte by the anode ','the current is taken away from the electrolyte by the cathode ','the container which holds the electrolyte and the electrode is the voltmeter','','','d','','post-utme','2010',3883,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:55'),(86,'Which of the following is not true about the properties of x-rays? ','they are not deflected by magnetic or electric field','they ionized a gas making it a conductor ','they are massive ','they have high penetrating power ','','','c','','post-utme','2010',3896,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(87,'A transformer is connected to a 240 V supply. The primary coil has 40 turns, and the secondary is found to be 960V. What is the ratio of the number of turns of the primary coil to the number of turns of the secondary coil? ','4:01','1:04','1:06','6:01','','','a','','post-utme','2010',3813,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:57'),(88,'Which of the following is not true about an object that is projected upwards at angle θ? ','the velocity is maximum at the maximum height ','the acceleration along the horizontal direction is zero ','the maximum range (Rmax) for an object moving with speed u is given by u2/g ','the time it takes to get the maximum height is equal to the time it takes to come back to the point of projection','','','a','','post-utme','2010',3851,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:58'),(89,'When three coplanar non-parallel forces are in equilibrium i. they can be represented in magnitude and direction by the three sides of a triangle taken in order ii. The lines of action meet at a point iii. The magnitude of any one force equals the magnitude of the other two forces iv. Any one force is the equivalent of the other two. Which of the following statements above are correct? ','i and iii only ','i and ii only','i, ii,iii and iv ','none of them','','','b','','post-utme','2010',3890,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:59'),(90,'Which of the following statements is not true about a body performing simple harmonic motion? ','the linear speed is the product of the angular speed and the radius or amplitude ','the linear acceleration is the product of the square of the angular speed and the displacement ','frequency is the number of complete revolution per second made by a vibrating body ','the S.I unit of amplitude is Hertz (Hz)','','','d','','post-utme','2010',3788,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:00'),(91,'In the force of gravity on an object of mass m, the gravitational field strength, g, is given by the following equation. ','g = √MF ','g = MF ','g = M√F ','g = F/M.','','','d','','post-utme','2010',3908,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:12'),(92,' A body of mass m slides down an inclined plane with a constant velocity. If the angle of the incline is Ø, the coefficient of kinetic friction between the body and the plane is  ','cot Ø ','cos Ø  ','tan Ø  ','sine Ø','','','c','','post-utme','2011',3896,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:13'),(93,'the velocity of a 500 kg car moving long a straight  road, changes from 12 m/s to 20 m/s in 5 sec. calculate the average force moving the car. ','2000N  ','1600N  ','1200N  ','800N','','','d','','post-utme','2011',3792,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(94,'When a 2kg body is at a height 5m above the floor, its velocity  is 4m/s. What is its total energy  at this height? (acceleration due to gravity = 10m/s2)  ','80J  ','00J  ','  116J  ',' 180J','','','c','','post-utme','2011',3872,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(95,'The density of sea water is 1030kg/m3. What is the pressure at a depth of  80 m below sea surface? Atmospheric pressure is 1.013 x 105 pa and acceleration  due to gravity is 10 m/s2  ','9.25 x  105 pa  ','8.24 105 pa   ','7.23 x 105 pa  ','8.34 x 109 pa','','','a','','post-utme','2011',3847,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:16'),(96,'6000 J of heat is delivered to 10g of dry ice at O0C. What is the final temperature if the container has a heat capacity of 20J/K? (specific heat of water = 4200j/kg.k, latent heat of fusion of ice = 3.33 x 105J/kg)  ','142.90C  ','63.60C  ','43.00C  ','00C','','','c','','post-utme','2011',3738,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(97,'A sample of radioactive substance, whose half-life is 16 days, registers 32 decays per second. How long will it take for the rate of decay to reduce to 2 decays per second? ','80 days  ','64 days  ','48 days  ','32 days','','','b','','post-utme','2011',3927,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:18'),(98,'When white light passes through a triangular prism, the emerging rays of light arranged in order of decreasing angle of deviation are ','red, orange, yellow, green  ','blue, green,  orange, yellow ','red, green, yellow, orange ','blue, green, yellow, orange','','','d','','post-utme','2011',3877,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:19'),(99,' The electric field between two parallel plates is E.  A particle of mass m and carrying charge q is released at a point half the distance between the plates. The velocity  of the particle t  seconds after its release is  ','qEt/m ','qEt2  ','mqt2/2E  ','MQT/2E','','','','','post-utme','2011',3823,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:20'),(100,'An airplane increases its speed 36 km/h to 360 km/h in 20.0 s. How far does it travel while accelerating.  ','4.4 km     ','1.1 km  ','2.3 km  ','1.0 km','','','b','','post-utme','2011',3765,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(101,'An object is said to be in simple harmonic motion (SHM) if  ','the acceleration is directly proportional to the displacement and is directed towards the equilibrium position of the object. ','the acceleration is inversely proportional to the displacement and directed toward the equilibrium position  of the object  ','the displacement is directly proportional  to the momentum  and directed toward the equilibrium position of  the object ','the momentum is directly proportional to the displacement and directed toward the equilibrium position of the object.','','','a','','post-utme','2011',3845,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(102,'A wheel and axle is used to raise a weight of 600n with an effort of 300n. if the radii of the wheel and axle are 50 cm and 10 cm respectively, what is the efficiency of the system      ','40%','50%','20%','10%','','','a','','post-utme','2011',3777,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:22'),(103,'The  term “Viscosity” is used to describe  ','surface tension in fluids ','friction in fluids  ','surface tension in solids  ','moment in solids','','','b','','post-utme','2011',3941,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:23'),(104,' A particle is in equilibrium under the action of three forces. One force is 40N towards the west and another is 30N towards the south. What is the third force acting on the body?   ','40N, N530E  ','50N, N370E   ','50N, N530E     ','40N, N370E','','','b','','post-utme','2011',3798,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:24'),(105,'A hydraulic press works on the principle of transmission of   ','force  ','energy  ','volume  ','pressure','','','d','','post-utme','2011',3968,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:25'),(106,'Which of the following is not a thermometer?  ','thermocouple  ','pyrometer  ','hydrometer  ','platinum resistance thermometer. ','','','c','','post-utme','2011',3707,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(107,'Dry air of column length 10 cm is trapped by a pellet of mercury of length 15 cm, with the open end uppermost. When the capillary is inverted the length of the air column increased to 25 cm while that of mercury remained constant. Calculate the atmospheric pressure (in cm of Hg.)  ','35 cm Hg  ','15 cm Hg  ','20 cm Hg  ','35 cm Hg','','','d','','post-utme','2011',3870,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:28'),(108,'Which of the following is not true about a chemical cell?   ','in primary cells the process through which current is generated is irreversible  ','secondary cells can be recharged after they run down by passing a current into the cell in the  reverse direction ','positive ions are attracted to the positive electrode where they become neutralized by acquiring electrons  ','primary cells  can be recharged','','','d','','post-utme','2011',3788,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(109,'A cigarette lighter in a car is a resistor that, when activated, is connected across the 12 – V battery. If the lighter dissipates 33 W of power, find the current it delivers  to the lighter.  ','9.90 Ω  ','6.60 Ω  ','4.36','17.50Ω','','','c','','post-utme','2011',3859,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(110,'A p-n junction can act as  ','an amplifier  ','a rectifier  ','an inductor ','a capacitor ','','','b','','post-utme','2011',3905,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(111,'  Calcium has a work function of 19 eV with a wavelength of 150 nm. Calculate the maximum energy of a photo electron emitted. (1 eV = 16.1 x 10-19J, h = 6.6 x 10-34Js)            ','6.35 Ev  ','8.25 cV  ','14.60eV  ','None of above','','','d','','post-utme','2011',3989,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:40'),(112,'Sound waves were sent out from a source and after being reflected from  an obstacle were received by a sensor placed beside the source. If the waves were received 10 seconds after they were sent out, calculate  the distance between the  source and the obstacle (speed of sound = 330 m/s) ','990m  ','660m ','1320 m ','None of above','','','d','','post-utme','2011',3858,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:41'),(113,'Two plane mirrors are inclined at angle 45 to another. A ray of light has incident angle of 20 at the surface of the first mirror. The reflected ray is then incident on the second mirror. Calculate the angle of reflection at the second mirror ','65','45','25','20','','','c','','post-utme','2012',3813,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:42'),(114,'When the length of the string of a simple pendulum is L its period is 0.5π second is 0.5π seconds. The period when the length is increased to 4L will be ','0.5π seconds','π seconds ','2π seconds ','4π seconds','','','b','','post-utme','2012',3882,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(115,'A uniform meter rule AB has a mass 15g. A 30g mass is suspended at the 10.0cm mark, and another 5g mass is suspended at the 65.0cm mark. Calculate the position of the fulcrum that will keep the meter rule balanced horizontally ','50.0cm ','32.0cm ','27.5cm ','17.9cm ','','','d','','post-utme','2012',3773,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:44'),(116,'rectangular block measures 40cm x 25cm and made of material of density 7800kg/m3. Calculate the pressure the block exerts on the floor when it stands on the smallest of its surfaces ','3.12 x 103N/m2 ','3.90 x 103N/m2 ','1.9 x 104N/m2 ','3.12 x 104N/m2','','','b','','post-utme','2012',3950,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(117,'A ship sinks to the bottom of a 250m deep lake. The atmospheric pressure over the lake is 1.03 x 105 Pa. Taking the density of water in the lake to be 1000 kg/m3, calculate the pressure exerted on the boat. [acceleration due to gravity = 10 m/s2] ','2.60 x 106Pa  ','2.50 x 106Pa ','2.60 x 105Pa ','1.03 x 105Pa','','','a','','post-utme','2012',3775,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:46'),(118,'Three knives made of steel, plastic and flat wood respectively are placed on the table for an equal amount of time. The steel knife feels coldest to touched because','The steel knife has the lowest temperature ','The plastic and wooden knives have absorbed more heat from the environment than the steel knife. ','Both wooden and plastic knives have lower densities than the steel ','The steel knife conducts heat faster from the finger than the wooden and plastic knives ','','','d','','post-utme','2012',3813,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:47'),(119,'Which of the following quantities is a scalar quantity?','Electric field ','Coulomb force','Electric potential ','Acceleration due to gravity','','','c','','post-utme','2012',3791,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:48'),(120,'A car accelerates at 5.0m/s2 for 6s, the travels at the speed attained for 20s, and comes to rest after another 4.0s. Calculate the average velocity of the car during the motion.','25.0m/s','20.0m/s ','1.25m/s ','0.16m/s','','','a','','post-utme','2012',3871,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(121,'Which of the following quantities is equal to the area under a velocity-time graph?','Acceleration ','Distance travelled ','Average Velocity of motion ','Total time taken.','','','b','','post-utme','2012',3901,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:50'),(122,'A 25N force pulls a 2.0kg body up a 300 inclined plane. If force is parallel to the plane and the body moves up the plane at constant velocity. Calculate the magnitude of the frictional force between the body and the plane. [g =10m/s2]','25N','10N','5N','15N','','','d','','post-utme','2012',3901,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:51'),(123,'The process by which solid change directly to vapour is called ','Evaporation','Fusion ','Condensation ','Sublimation ','','','d','','post-utme','2012',3764,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:52'),(124,'A coin is at the bottom of a bucket filled with a liquid whose refractive index is 1.35. The coin appears to be 12.0cm below the surface of the liquid. Calculate the depth of the liquid.','16.2cm  ','13.4cm  ','8.9cm  ','5.4cm','','','a','','post-utme','2012',3867,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(125,'A 3.0cm object is placed 12.0cm in front of bi-convex lens of focal length 8.0cm. Calculate the height of the image of the object.  ','3.0cm ','6.0cm ','12.0cm ','24.0cm','','','d','','post-utme','2012',3796,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(126,'To use a milli-ammeter to measure current up to 10A, what connection needs to be made?','A small resistance must be connected in parallel with the milli-ammeter ','A small resistance must be connected in series with the milli-ammeter ','A high resistance must be connected in parallel with the milli-ammeter ','The milli-ammeter must be disconnected from the circuit.','','','b','','post-utme','2012',3874,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(127,'Two 2µF capacitors are connected in parallel. The combination is connected in series with a 6µF capacitor. What is the equivalent capacitor for the combination?','10.0µF  ','8.0µF  ','1.5µF  ','2.4µF','','','c','','post-utme','2012',3808,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:56'),(128,'Five 100-Watt bulbs are put on for 45days during which the home-owner is on vacation. If 1kW-hour of electricity cost N7.50, how much does it cost the home-owner? ','N168.75  ','N90.0  ','N4050.00  ','N810.00','','','d','','post-utme','2012',3862,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(129,'To convert an a.c generator to d.c generator, one needs to ','Remove the brush touching the slip rings ','Laminate the armature ','Replace the permanent magnets with  iron-core armature. ','replace the slip rings with split rings','','','d','','post-utme','2012',3743,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:58');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `proentertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `progeneral` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `category` varchar(30) COLLATE utf8_unicode_ci NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `progeneral` VALUES (1,'World environmental day happened last week in what day of the week','Tuesday','Wednesday','Thursday','Friday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'World environmental day is on every','5th of June','1st of June','4th of June','3rd of June','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'ECOWAS is now how many years old','30','40','20','35','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many people died by Boko Haram since the inception of new government','over 20','over 50','30','50','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Ghana petrol station explosion happened on ','Monday','Tuesday','Wednesday','Friday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Which Nigeria artiste was nominated for Black Canadian award','Yemi Alade','Tu-face','Psquare','Asa','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'The new Nigeria elected nation assembly is the ','7th ','8th ','5th ','6th ','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'President Buhari is to participate in G7 summit when','Friday','Saturday','Sunday','Monday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'President Buhari attended what \\\"G\\\" summit','G8','G7','G16','G10','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'APC house of representative  speaker election was won by','Tinub','Gbajabiamila','Saraki','Dark Mark','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which state reinstate 480 sacked workers','Lagos','Yobe','Sokoto','Ogun','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which Sokoto local government area reinstate 480 sacked workers',' North ','South ','East','West','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many petrol tanker truck accident happened last week in Nigeria','1','2','3','4','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Some part of Afghanistan district was captured by','Boko Haram','Taliban','Islamic State','Islamic brother hood','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which country was affect by middle east respiratory syndrome (MERS)','North Korea','South Korea','China','Japan','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria state governor rode Okada(Motor bike) to state house of assembly inauguration','Lagos governor','Ogun governor','Ekiti governor','Rivers governor','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'About how many people where on board in China ship disaster','about 300','about 200','over 400','over 500','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country in Africa asked Nigeria to help in training of army and police','Sudan','Egypt','South Sudan','Angola','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Which company sue PDP for 70 million campaign debt','Silon Concepts Limited','AIT','Media Technologies','Waat Concepts','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'The UEFA championship was played in','England','Moscow','Berlin','Paris','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Sexual intercourse with children under 11 bill was pass into laws when','5th of June','3rd June','4th of June','1st June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'did President Buhari travelled to Chad last week','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'What day of the week  did President Buhari travelled to Niger last week','Monday','Tuesday','Wednesday','Thursday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'How many special advisers did the president presented to Nation assembly','3','10','15','12','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What is the name of governor of Kano state','Abdulia Ganduje','El Rfia','Hammed Musa','Atiku Abubaka','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' How many CBN staff was sent to prison by EFCC ','10','8','7','6','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'When did world economic forum took place last week','4th of June','3rd of June','5th of June','1stof June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Elected FIFA president resignation news broke out when last week','Monday','Tuesday','Wednesday','Friday','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Health  workers strike enters week ?.. Last week','2','4','1','3','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'The new coach of Real Madrid was assigned on','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Serena Williams wins??.. Grand slam','14','15','18','20','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Who is the third tennis player to win 20 grand slam ','Rafi Nadal','Serena Williams','Venus Williams','Joko','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'How many passenger escape death as Aero aircraft developers fault mid air','100','120','about 100','over 120','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The world oldest cat dies at','12','20','22','27','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What was the score between Nigeria and Hungry in under 20 world cup match','4-0','2-0','1-0','2-2','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Nigeria team is to face which team in the round second round of under 20 world cup','Brazil','Germany','Italy','USA','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'In woman world cup, Germany defeated Ivory coast by','10-0','4-0','7-0','2-0','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'Which team won the UEFA championship title last week','Barcelona','Juventus','Real Madrid','Chelsea','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `propolitic` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `prosport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `protechy` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Anonymous',\n  `question_id` mediumint(9) NOT NULL,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `message` text COLLATE utf8mb4_unicode_ci,\n  `type` enum('1','2','3','4','5','6','7') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `status` enum('0','1') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question` VALUES (1,'Anonymous',4,'english',NULL,'1','0','2018-08-31 10:33:36','2018-08-31 10:33:36'),(2,'Anonymous',2,'english','You got busted','5','0','2018-08-31 11:05:51','2018-08-31 11:05:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question_type` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,\n  `description` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question_type` VALUES (1,'Question','There is an error in question',NULL,NULL),(2,'Option A','There is an error with option a',NULL,NULL),(3,'Option B','There is an error with option b',NULL,NULL),(4,'Option C','There is an error with option c',NULL,NULL),(5,'Option D','There is an error with option d',NULL,NULL),(6,'Answer','Something is wrong with the answer',NULL,NULL),(7,'Solution','Something is wrong with the solution',NULL,NULL);\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `socialfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `socialfb` VALUES (1,'What year was \\'Africa Queen\\' music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track \\'African Queen\\' came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D\\'Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D\\'Banj  first album released?','2002','2005','2001','2004','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What is the full meaning of NEA','National Entertainment Awards','Nigerian Entertainment Awards','Nigerian Entertainment Award','National Entertainment Award','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Nigerian Entertainment Award (NEA) 2015 was held in','Lagos Nigeria','Abuja Nigeria','New York USA','London Britain','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who won the best Female act award in Nigerian Entertainment Award (NEA)  2015','Cynthia Morgan','Yemi Alade','Seyi Shay','Tiwa savage','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Who won the best Film Director of the Year (Indigenous Films) in Nigerian Entertainment Award (NEA)  2015','Kunle Afolayan','Alex Konstantaras','Olanrewaju Abiodun','Chiwetel Ejiofor','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Best Male act was given to ??.. in Nigerian Entertainment Award (NEA) 2015','Olamide','Davido','Wizkid','Shizzi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Best Rap act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Best Pop act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Best Afrobeat Act was given to ?. In Nigerian Entertainment Award (NEA)  2015','2face Idibia','Femi Kuti','Baba Fryo','Alariwo','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Olamide life in concert \\'Beast Mode \\'hold this year on','March 10 2015','December 27 2015','December 31 2015','March 21 2015','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Which of the following guest artiste will not feature in Olamide life concert 2015','Davido','D?Banji','Wizkid','Olamide','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'what is the full meaning of KADAMFEST','Kaduna Music Festival','Kano  Music Festival','Kaduna  Music Festivals','Kano Music Festivals','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What edition is Miss World 2015','60th','61th','62nd','63rd','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Which country hosted Miss World 2015 edition','China','Japan','Singapore','India','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'What is the date of Miss World 2015 pageant?','10-Dec-15','16-Dec-15','19-Dec-15','21-Dec-15','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' Which country won Miss World 2015 pageant?','China','South Africa','Spain','Norway','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Tiwa Savage is how old in 2015','28','30','35','32','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Which of this song was release by Wizkid in 2015','On top matter','Love my babe','Expensive shit','Mummy mi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Who was the most nominated artiste for Tooxclusive award 2015','Davido','Olamide','Di?ja','Korede bello','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'Who is the fourth highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'Who is the Second highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Who is the third highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Who is the highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'30 days in Alanta was released on','31-Oct-15','31-Oct-14','1-May-15','1-May-14','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is Miss Nollywood Queen 2015','Miss Gwendolyn Okutele','Miss Adebayo Kemi','Miss Basira Malla','Miss Obichi Emeka','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' Miss Nollywood Queen 2015 is from what state','Enugu','Delta','Ondo','Lagos','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'What is the name of Olamide ablum released in 2015','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' What is the full meaning of SMD','Super Michael Data','Supreme Mavin Dynasty','Shoki Makossa Dance','Simple Motion Dance','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Who started SMD?','Olamide','Davido','P-Square','Don Jazzy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' What is the name of Olamide ablum released in 2012','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the name of Olamide ablum release in 2014','Rapsodi','YBNL','Street OT','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'\\'Yemi my lover\\' is in which Olamide album','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'What is the full name of Phyno','Godfrey Nelson','Azubuike Chibuzo Nelson','Phillip Onome','Paul Nwoko Godfrey','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,' Which of this artiste is not a Glo ambassador','D?Banj','Peter and Paul Okoye (PSquare)','Tu Face ','Wande Coal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,'Which of the following artiste is not a airtel ambassador','Phyno','Tu Face','Wande Coal','Patoranking','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sport` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','Sir Ali Ferguson.','Alex Ferguson.','Sir Alex Ferguson','Sir Alex Fergson','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'How many rings are in the Olympic colours?','6','5','4','3','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sportfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sportfb` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','?Sir Ali Ferguson.','?Alex Ferguson.','?Sir Alex Ferguson','?Sir Alex Fergson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'How many rings are in the Olympic colours?','6','5','4','3','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'When was Jose Mourinho sacked by Chelsea in 2015','15-Dec','5-Dec','27-Dec','17-Dec','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which coach is regarded as the Special One','Pep Guardiola','Raphael Benitez','Jose  Mourinho','?Sir Alex Ferguson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Which club in Nigeria premier league has the longest winning run in 2015','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' Which club in Nigeria premier league has the longest unbeating run in','Warri Wolves FC','Kano Pillars FC','Enyimba FC','Shooting Star FC','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' The 2015 Nigeria Professional Football League was won by','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The 2015 Nigeria Professional Football League second place winner was','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What is the name of Nigeria second football division','National Division league','Nigeria Second division league','Nigeria National league','Second National league','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'which of the following 2015 Nigeria Professional Football League was relegated','El-Kanemi Warriors','Enugu Rangers','Kwara United?','Abia Warriors','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'which of the following 2015 Nigeria Professional Football League was not relegated','Kwara United?','Bayelsa United','Sharks','El-Kanemi Warriors','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Kano Pillars\\' 12-year undefeated streak at home came to an end in a 2-1 loss to','Nasarawa United','Wikki Tourists','Kwara United?','Enyimba FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is the president of Nigeria football federation?','Amaju Pinnick','Alhaji Ibrahim Galadim','Alh. Aminu Maigari','Alhaji Ibrahim Pinnick','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' What is the full meaning of NFF','Nigeria Football Federation','Nation Football Federation','Nigerian Football Federation','National Football Federation','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'Which of the following is not a bet company in Nigeria','Bea Bet','Naira Bet','Surebet247 ','Bet9ja','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' Which of the following is the first sport betting website in Nigeria','Surebet247','360bet','Bet365NAIJA','Naira Bet','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Leicester City F.C. is also known as ','Lei City','The Eagle','The Foxes','Blue team','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' Leicester City F.C. is also known as the following expect','The Foxes','The Blues','The City ','Blue Army','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'Who is the current hit man for Leicester City','Jamie Vardy','Wes Morgan','Danny Simpson','Eden Hazard','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'Who is the current highest goal scorer as of December 2015 in English Premier League','Wilfried Bony','Robin van Persie','Diafra Sakho','Jamie Vardy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'Who won the Ballon D?or cup 2015','Lionel Messi ','Neymar ','Cristiano Ronaldo','Robin van Persie','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n"
  },
  {
    "path": "storage/backups/2020-07-22.sql",
    "content": "/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `accounting` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=515 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `accounting` VALUES (1,'The bad debt account is closed by transferring the balance to ','credit of capital account  ','debit of profit  and loss  ','debit of the debtors personal account ','credit of profit and loss account ','','','b','','post-utme','2010',100,'','0000-00-00 00:00:00','2020-07-14 13:21:23'),(2,'A credit note from a supplier would first be entered in the ','purchase book  ','sales book  ','returns inward book  ','returns outward','','','a','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:24'),(3,'Where a proprietor withdraws cash from the business for his private use, the entries would be ','credit cash account, debit proprietor\\'s account ','credit proprietor\\'s account, debit cash account ','credit proprietor\\'s account, debit   drawings   account    ','credit   cash account,  debit drawings account','','','d','','post-utme','2010',106,'','0000-00-00 00:00:00','2020-07-14 13:21:25'),(4,'Which   of the   following   is   a  long  term liability ','bank overdraft ','bank deposit ','good will ','debentures','','','d','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:26'),(5,'Which of the following is a function of the sales journal ','it records both cash and credit sales ','it shows the balance in the sales account ','it record credit sales only ','it shows the aggregate balances in the debtors lodger','','','a','','post-utme','2010',116,'','0000-00-00 00:00:00','2020-07-14 13:21:27'),(6,'Which of the following is the most liquid ','stock ','debtors ','machinery ','loose tools','','','b','','post-utme','2010',94,'','0000-00-00 00:00:00','2020-07-14 13:21:28'),(7,'A debit balance on a bank statement indicates that ','bank is a debtor to the customer ','customer is a debtor to the bank ','bank is not a creditor to the customer ','customer is not a debtor to the bank','','','b','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-07-14 13:21:29'),(8,'At the end of a trading period, wages will be  ','debited to trading account and shown as a current liability ','credited to profit and loss Account and shown as a current liability ','credited to trading account and shown as a current asset ','debited to profit and loss account and shown as a current liability','','','a','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:30'),(9,'Which of the following is not an asset ','Goodwill ','General reserves ','Debtors ','Prepayments','','','b','','post-utme','2010',116,'','0000-00-00 00:00:00','2020-07-14 13:21:31'),(10,'A company\\'s profit and loss account for a period  is  prepared by ','deducting total expenses from total revenues ','deducting total cash payments from total revenue ','deducting  all  outflows  of funds  from  all inwards of funds ','balancing its receipts and payments','','','a','','post-utme','2010',106,'','0000-00-00 00:00:00','2020-07-14 13:21:32'),(11,'The journal is a book ','of primary entry into which all transactions are entered before posting ','kept by journalist for reporting events ','of prime entry into which postings are made from the ledger  ','of analyzing major accounts','','','a','','post-utme','2010',98,'','0000-00-00 00:00:00','2020-07-14 13:21:33'),(12,'The receipts and payments of a club is the same  as ','  Profit and   loss  account  ','Trading Account ','Cash book ','control Account','','','c','','post-utme','2010',97,'','0000-00-00 00:00:00','2020-07-14 13:21:34'),(13,'In a balance sheet, bank overdraft is ','Current Asset ','Fixed asset ','long term liability ','Current Liability','','','d','','post-utme','2010',107,'','0000-00-00 00:00:00','2020-07-14 13:21:35'),(14,'Money set aside for the saving of business overheads    is    referred    to   ','Capital Expenditure  ','Revenue  Expenditure ','Revenue receipts','','','','c','','post-utme','2010',117,'','0000-00-00 00:00:00','2020-07-14 13:21:36'),(15,'Money spent on buying of plots of land by a firm is ','Capital Expenditure ','capital receipts ','Revenue Expenditure',' Revenue Receipts','','','a','','post-utme','2010',112,'','0000-00-00 00:00:00','2020-07-14 13:21:37'),(16,'Prepaid expenses  is an  item  in ','Fixed Asset  ','  Current    Asset   ','Liabilities ','Long term liabilities ','','','b','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-07-14 13:21:38'),(17,'Final accounts of (i) Cash book (ii) trading account  (iii) Profit and  loss account  (iv)Balance sheet  ','i only ','i and ii only','iii and iv only ','ii and iii  only','','','c','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-07-14 13:21:39'),(18,'Trading account is prepared to ascertain ','Gross profit ','Net profit ','Gross profit or Gross loss ',' Net profit or net loss','','','c','','post-utme','2010',105,'','0000-00-00 00:00:00','2020-07-14 13:21:40'),(19,'A statement that shows the financial position of a business is ','profit and loss account  ','Trading Account ','Statement of income  ',' Balance sheet','','','d','','post-utme','2010',97,'','0000-00-00 00:00:00','2020-07-14 13:21:41'),(20,'  Prepaid wages is an item in the (i)Balance Sheet (ii) Profit and loss account (iii)Trading  account (iv) Cash account ','i, ii, iii only ','ii, iii  ','i, ii ','iii, iv','','','a','','post-utme','2010',119,'','0000-00-00 00:00:00','2020-07-14 13:21:42'),(21,'Partnership    is    a    business    owned and controlled by ','Two members ','two to ten members ','Two to twenty person  ','Two to five persons','','','c','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:43'),(22,'If a   machine   cost   2000   naira   and its estimated   life   span   is   10   years   and its residual is 500 naira. The yearly value of depreciation  in  naira is ','250','180','150','130','','','c','','post-utme','2010',94,'','0000-00-00 00:00:00','2020-07-14 13:21:44'),(23,'Bad debt is also known as ','Unpaid debt','irrecoverable debt  ','Payment debt  ','current    debt','','','b','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-07-14 13:21:45'),(24,'Bad debt is an item in ','Trading, profit and loss account  ','consignment account  ','Balance sheet ','Receipt and expenditure AC','','','a','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-07-14 13:21:46'),(25,'The diary or events in which all financial transactions    are    recorded    for    easy reference and to assist in the double entry system is ','Ledger','Journal   ','Purchases and sales day books ','Debit and credit documents','','','a','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-07-14 13:21:47'),(26,'Which of the following is not a book of original entry? ','Cash book  ','Purchases journal  ','Sales journal ','Ledger','','','d','','post-utme','2011',101,'','0000-00-00 00:00:00','2020-07-14 13:21:48'),(27,'The test of arithmetical accuracy of all postings in the ledger is provided in the: ','Journal  ','Day book  ','Cash book  ','Trial balance','','','d','','post-utme','2011',120,'','0000-00-00 00:00:00','2020-07-14 13:21:49'),(28,'Errors   revealed   by   the   trial   balance include error of:  ','Principle  ','Single entry ','Omission  ','commission ','','','b','','post-utme','2011',106,'','0000-00-00 00:00:00','2020-07-14 13:21:50'),(29,'Accounting equation is given by  ','Assets - Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owner\\'s Equity = Liabilities ','Assets = Liabilities + Owner\\'s Equity','','','d','','post-utme','2011',92,'','0000-00-00 00:00:00','2020-07-14 13:21:51'),(30,'Which of the following is not a current asset?  ','Stock  ','Debtors  ','Creditors ','Cash','','','c','','post-utme','2011',119,'','0000-00-00 00:00:00','2020-07-14 13:21:52'),(31,'Final accounts of a company refers to: ','Trading and profit and loss account  ','Profit and loss account and balance sheet  ','Trading account and balance sheet  ','Trading , profit and loss account and balance sheet','','','d','','post-utme','2011',90,'','0000-00-00 00:00:00','2020-07-14 13:21:53'),(32,'A cheque which has been sent but has yet gone through the bank account of the receiver of it is known as:','Dishonoured cheque','Unpresented cheque ','Uncredited cheque','Unhonoured cheque','','','b','','post-utme','2011',107,'','0000-00-00 00:00:00','2020-07-14 13:21:54'),(33,'Which of the following does not appear in a bank statement?   ','Uncredited cheque ','Bank charges ','Dishonoured cheque ',' Dividend   received   on    behalf   of customer','','','d','','post-utme','2011',101,'','0000-00-00 00:00:00','2020-07-14 13:21:55'),(34,'Where a correct amount is entered, but in the wrong person\\'s account, is an error of  ','Principle  ',' Omission','Commission','Compensation','','','c','','post-utme','2011',103,'','0000-00-00 00:00:00','2020-07-14 13:21:56'),(35,'A credit balance of N350,000 in a cash account shows that  ','N350.000 was the total cash received  ','N350,000 was the total cash paid out  ','Cash at hand equals N350,000 ','N350,000 was the cash overspent','','','d','','post-utme','2011',111,'','0000-00-00 00:00:00','2020-07-14 13:21:56'),(36,'Which   accounting  concept  states; that revenues and expenses are recognized as they are earned or incurred and not when  money is received?','Entity   ','Realization','Accrual  ','Periodicity','','','c','','post-utme','2011',111,'','0000-00-00 00:00:00','2020-07-14 13:21:57'),(37,'Which of the following is not a business asset?','Deposit account in bank','Interest due on loan','Five acres of land','Library books owned by a lawyer ','','','b','','post-utme','2011',100,'','0000-00-00 00:00:00','2020-07-14 13:21:58'),(38,'Prime cost is','Direct cost of production','Cost of raw materials consume:','Cost of raw materials purchase-:','Indirect cost of production','','','a','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-07-14 13:21:59'),(39,'Subscription   received   in   respect of a future period is','Subscription deposit','Subscription in advance','Accrued subscription','Subscription in arrears','','','b','','post-utme','2011',118,'','0000-00-00 00:00:00','2020-07-19 20:45:01'),(40,'The petty cash book kept on imprest system should have','A credit balance only','A debit or nil balance','A debit balance only','Both debit and credit balance;','','','c','','post-utme','2011',99,'','0000-00-00 00:00:00','2020-07-14 13:22:02'),(41,'Wilson Company owns land which cost 14100, 000. If a \\\"quick sate\\\" of the land was necessary to generate cash, the company feels it would receive only N80, 000.    The company continues to report the asset on the balance sheet at N100, 000   This is justified under which of the following concepts?  ','The historical-cost principle.','The value is tied to objective and verifiable past transactions.','Neither of the above.',' Both \\\"a\\\" and \\\"b\\\"','','','a','','post-utme','2012',105,'','0000-00-00 00:00:00','2020-07-14 13:22:04'),(42,'Retained earnings will change over time because of several factors.  Which of the following factors would explain an increase in retained earning?','Net loss ','Net income,','Dividends ','investment by stakeholders.','','','b','','post-utme','2012',120,'','0000-00-00 00:00:00','2020-07-14 13:22:04'),(43,'Which of the following would not be included in a balance sheet?','Accounts receivable','Accounts payable  ','Sales','Cash','','','c','','post-utme','2012',98,'','0000-00-00 00:00:00','2020-07-14 13:22:05'),(44,'A company provided the following information about its balance sheet: Cash N100 Accounts receivable N500 Stockholders\\' equity 14700 Account payable N200 Bank loans Nl000 Based on the information provided, how much are Remington\\'s liabilities?','N200   ','N900   ','N 1,200   ','N 1,700','','','c','','post-utme','2012',106,'','0000-00-00 00:00:00','2020-07-14 13:22:06'),(45,'A complete set of financial statements for Hartman Company, at December 31, 1999, would include each of the following except:','Balance sheet as of December 31,1999 ','Income   statement   for   the   year   ended December 31, 1999.','Statement of projected cash flows for 2000  ','Notes containing additional information that is useful interpreting the financial statements.','','','c','','post-utme','2012',99,'','0000-00-00 00:00:00','2020-07-14 13:22:07'),(46,'If the equipment account has a balance of N22.500 and its accumulated account has a balance of N14,000 the book value of the equipment is:  ','N22.500   ','N8.500 ','N 14,000  ','N36.500','','','b','','post-utme','2012',112,'','0000-00-00 00:00:00','2020-07-14 13:22:08'),(47,'The balance unearned rent account for Jones Co. as at 31st Dec. is 1,200. If Jones Co tailed to record the adjusting entry for 600 of rent earned during December, the effect on the balance sheet and income statement','for December is:',' Liabilities   overstated—N60Q:   c:et income overstate d 44600',' Liabilities   understated   £4500:   net income  understated N600','Asset    understated—N600:     net    income  overstated N600',' Liabilities   overstated   N600:    net income understated N600','','d','','post-utme','2012',102,'','0000-00-00 00:00:00','2020-07-14 13:22:09'),(48,'If goods purchased on account is returned, the buyer may inform the seller of the details by issuing:','An invoice  ','A debt memorandum','A credit memorandum  ',' A bill','','','c','','post-utme','2012',104,'','0000-00-00 00:00:00','2020-07-14 13:22:10'),(49,'Which of the following entries classes the  owner\\'s drawing account at the end of the period?','Debit the drawing account, credit the owner\\'s capital account','Debit the income summary account credit the drawing account','Debit   the   drawing account credit income summary accounting','Debit the owner\\'s capital account, credit the drawing account','','','d','','post-utme','2012',99,'','0000-00-00 00:00:00','2020-07-14 13:22:11'),(50,'At the end the fiscal year, account receivable has a balance of 100,000 and allowance for doubtful account has a balance of 7,000. The expected that realized value of the  receivable is: account','N 107,000','N100,000','c. N93,000','N 147,000','','','c','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-07-14 13:22:12'),(51,'Which of the following accounts would be classified as a current on the balance sheet?','Office Equipment','Accumulated Depreciation','Land','Accounts receivable','','','d','','post-utme','2012',107,'','0000-00-00 00:00:00','2020-07-14 13:22:13'),(52,'A petty cash fund is:','Used to pay relatively small amount','reimbursed when the amount of money in the fund is reduced to a predetermined minimum amount','Established by estimating the amount of cash needed for disbursement of  relatively small amount during a specified period  ','All of the above','','','d','','post-utme','2012',90,'','0000-00-00 00:00:00','2020-07-14 13:22:14'),(53,'A debit may signify: ','an increase in the owner\\'s capital amount','an increase in a liability account','a decrease in an asset account','an increase in an asset account','','','d','','post-utme','2012',109,'','0000-00-00 00:00:00','2020-07-14 13:22:15'),(54,'The receipt of cash from customers in a payment of their account would recorded by a','Debit to account receivable; credit to cash ','b  Debit to cash credit to accounts receivable  ','Debit to cash, credit to accounts payable  ','Debit to account payable credit to cash','','','b','','post-utme','2012',111,'','0000-00-00 00:00:00','2020-07-19 14:28:27'),(55,'The essential amount of depreciation or equipment for a period is 2,000 the adjusting end to record depreciation would be','Debit depreciation expense, 2000, credit expense, 2,000','Debit equipment, 2,000; credit depreciation expense, 2,000','Debit accumulated depreciation, 2,000. credit depreciation expense 2,000    ','Debit depreciation expense, 2,000; credit accumulated depreciation 2,000.','','','d','','post-utme','2012',100,'','0000-00-00 00:00:00','2020-07-14 13:22:17'),(56,'Which of the following assets could be described as a current asset?','Stock of goods for resale','Machinery to manufacture goods for resale ',' Buildings to house the machinery','Land on which the buildings stand.','','','a','','post-utme','2012',108,'','0000-00-00 00:00:00','2020-07-14 13:22:18'),(57,'The purchase journal records:','invoices from creditors','Debtors\\' invoices','Cash payments to suppliers','Amounts owing to employees for wage;','','','a','','post-utme','2012',107,'','0000-00-00 00:00:00','2020-07-14 13:22:40'),(58,'If a business shows a debit balance in its own record of its bank balance, this indicates.','The business has a bank overdraft','The business is a debtor of the bank','The business has money in the bank','The ledger entry must be wrong.','','','a','','post-utme','2012',91,'','0000-00-00 00:00:00','2020-07-14 13:22:42'),(59,'If a business pays for only 11 months rent during a financial year, what accounting term is given to the outstanding term is given to the outstanding one month\\'s rent? Which of the following equations properly represents a derivation of the fundamental accounting equation?','Assets + liabilities = owner\\'s equity ','Assets = owner\\'s equity','Cash = assets.  ','Assets - liabilities = owner\\'s equity','','','d','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-07-14 13:22:45'),(60,'A business shows total debtors\\' balances of N400,000 in its ledger at the end of its financial year. A customer owing N40,000 is bankrupt, and there is no possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor\\'s total will be included as a current asset in the balance sheet?','N400,000,   ','N352,800    ','N352,000.  ','N436,200 ','','','c','','post-utme','2012',87,'','0000-00-00 00:00:00','2020-07-14 13:22:46'),(61,'To arrive at the gross profit of a trading  business, which one of the following formulate is applied?','Sales - (Opening Stock-Purchases-Closing Stock)','Sales - (Opening stock + Purchases + Closing Stock)','Sales - (Opening stock + Purchases - Closing Stock)','Sales - (Opening stock - purchases + closing stock)','','','c','','post-utme','2012',100,'','0000-00-00 00:00:00','2020-07-14 13:22:48'),(62,' Which one of the following is not part of a company\\'s equity capital?','Ordinary shares','Preference shares','Voting Shares','Equity shares','','','c','','post-utme','2012',89,'','0000-00-00 00:00:00','2020-07-14 13:22:50'),(63,' An expenditure whose benefit is finished or enjoyed immediately is called: ','Expense   ','Liability ','Cost ','Income','','','a','','post-utme','2012',104,'','0000-00-00 00:00:00','2020-07-14 13:22:52'),(64,'Where no partnership agreements exist, a partner who puts a sum of money into a firm in excess of the capital he has agreed to subscribe is entitled to interest rate per annum on such money ','15%','10%','5%','2%','','','c','','post-utme','2013',101,'','0000-00-00 00:00:00','2020-07-14 13:22:53'),(65,'MORADE had total assets of N760,000, capital stock of N150,000 and retained earnings of N215,000. What was Morade\\'s debt-to-equity ratio? ','2.63','1.08','0.52','0.48','','','b','','post-utme','2013',96,'','0000-00-00 00:00:00','2020-07-14 13:22:55'),(66,'9.   Which   of   the   following   is   a   correct expression of the accounting equation? ','Assets = Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owners\\' Equity = Liabilities ','Assets = Liabilities - Owner\\'s Equity','','','a','','post-utme','2013',98,'','0000-00-00 00:00:00','2020-07-19 14:28:27'),(67,'Which of these items would be accounted for as an expense? ','repayment of a bank loan ','dividends to stockholders ','the purchase of land ','payment of the current period\\'s rent','','','d','','post-utme','2013',109,'','0000-00-00 00:00:00','2020-07-14 13:22:58'),(68,'At the end the fiscal year, account receivable has a balance of Nl00,000 and allowance for  doubtful   account  has a balance   of N7,000. The expected net realized value of the account receivable is: ','Nl07,000 ','N100,000 ','N93,000 ','N7,000 ','','','c','','post-utme','2013',112,'','0000-00-00 00:00:00','2020-07-14 13:23:00'),(69,'A debit balance of Nl50,000 in a cash account   shows   that   ','  cash  has   been overspent   by   N150,000   ','  there   was N150,000 cash in hand ',' the total of cash received   was   less   than   N150,000   ','N150,000 was the total of cash paid out. ','','','b','','post-utme','2013',94,'','0000-00-00 00:00:00','2020-07-14 13:23:01'),(70,'Posting  the  transactions   in bookkeeping means ','making the first entry of a double entry transaction ','entering items in a cash book ','making the second  entry of a double entry transaction ','something other than the above.','','','a','','post-utme','2013',113,'','0000-00-00 00:00:00','2020-07-14 13:23:02'),(71,' On December 31, 2012, Infinite Grace had a note payable due on August 1, 2013. On January 20, 2013, Infinite Grace signed a financing agreement to borrow the balance of the note payable from a lending institution to refinance the note. The agreement does not expire within one year, and no violation of any provision in the financing agreement exists. On  February 1, 2013. Infinite Grace was informed by its financial advisor that the lender is not expected to be financially capable of honouring the agreement. Infinite Grace\\'s financial statements were issued on March 31, 2013. How should Infinite Grace classify the note on its balance sheet at December 31,2012? ','as a current liability because the financing agreement was signed after the balance sheet datecapable of honouring the agreement   ','as a current liability because the leader is not expected to be financially ',' as   a   long-term   liability because  the agreement  does   not  expire within one year ',' as a long-term liability because no violation of any provision in the financing agreement exists.','','','c','','post-utme','2013',103,'','0000-00-00 00:00:00','2020-07-19 14:28:27'),(72,'A business shows total debtors\\' balance of N400,000 in its ledger at the end of its financial customer owing N40,00 are bankrupt, and there is no  possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor’ total will be included as a current asset in the balance sheet? ','N400,000  ','N352,800  ','N352, 000  ','N36, 200','','','b','','post-utme','2013',99,'','0000-00-00 00:00:00','2020-07-14 13:23:04'),(73,'Companies and  Allied  Matters  Act. 1990 requires  every  company   to  keep  certain statutory books. Which of the following is not part of the statutory books to be kept by the company? ','register of directors and secretaries ','a register of charges (fixed and floating) ','minutes books of meetings of the company and meetings of its directors ','a register of companies in the same line of business','','','d','','post-utme','2013',94,'','0000-00-00 00:00:00','2020-07-14 13:23:06'),(74,'The    main    objective   of   the   financial statements is to ','provide a true and fair- view of the financial position of the business ','help managers take correct decisions ','show every transaction affects two items in the  balance sheet ','help owners of a business to plan for the future.','','','a','','post-utme','2013',88,'','0000-00-00 00:00:00','2020-07-14 13:23:07'),(75,' Impersonal accounts contain ','capital and cash account ','nominal account and real account ',' real and cash account ','capital and real act minis ','','','b','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-07-14 13:23:08'),(76,'One of (he following errors will affect the agreement of the trial balance ','error of omission ','trial balance error ','principle error ','error of original entry','','','b','','post-utme','2013',140,'','0000-00-00 00:00:00','2020-07-18 20:09:41'),(77,'Which of the following is a fictitious asset? ','prepayments ','preliminary expenses ','investment ','plant and machinery ','','','b','','post-utme','2013',85,'','0000-00-00 00:00:00','2020-07-19 14:28:27'),(78,'  Which of the following is not part of the main uses of the journal ',' purchase and sale   of   fixed   assets   on  credit   ','the  correction of errors ','writing off bad debts ','none of the above','','','d','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-07-14 13:23:12'),(79,'…………………checks the arithmetical accuracy of double entry accounts ','trading account ','profit and loss account ','balance sheet ','trial lance','','','d','','post-utme','2013',107,'','0000-00-00 00:00:00','2020-07-14 13:23:14'),(80,'The distinguishing feature between a two-column and three-columncash book is','discount column','cash column','bank column','ledger folio','','','a','','wassce','2013',104,'Admin','2016-11-15 20:31:29','2020-07-14 13:23:15'),(81,'The lodgment of business cash into the business bank account is an example of','contra entry','bank reconciliation','self balancing ledger','reversal entry','','','b','','wassce','2013',129,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:16'),(82,'credit balance is','a liability or an expense.','a liability or an income.','an expenditure or an income.','an asset or an expense.','','','b','','wassce','2013',94,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:17'),(83,'Which of the following is not a characteristic of a Trial Balance?','It has columns for debit and credit balances','Total of debit balance equals total of credit balance','It is a statement','It is an account','','','d','','wassce','2013',99,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:18'),(84,'The capital of a sole trader changes as a result of','paying wages by cash.','equipment purchased by cheque.','drawings by cheque.','purchases on credit.','','','c','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:20'),(85,'The order of financial accounting process involves: (I) recording; (II) presenting; (III) collecting; (IV) analyzing.','I, II. Ill and IV','II, III, I and IV','Ill, I, II and IV','IV, III, II and I','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:21'),(86,'A dishonoured cheque is','debited in the cash book.','credited in the cash book.','double entry in the cash book.','credited in the bank book.','','','c','','wassce','2013',95,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:22'),(87,'A petty cashier received a float of GHc 120 and spent GHc 84. The imprest is','GHc 204.','GHc 120.','GHc 84.','GHc 36.','','','d','','wassce','2013',91,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:23'),(88,'Which of the following is not a book of original entry?','Cash Book','Purchases Ledger','Returns Outwards Journal','General Journal','','','b','','wassce','2013',83,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:25'),(89,'The current ratio is','1.87 : 1.','1 : 1.87.','1 : 2.','2 : 1.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',107,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:26'),(90,'The capital employed is','N=740,000.','N=580,000.','N=370,000.','N=280,000.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','c','','wassce','2013',102,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:28'),(91,'The returns on capital employed is','17.2%','16.2%.','15.2%.','11.2%.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:29'),(92,'The double entry principle states that','every debit entry must have a corresponding credit entry','every credit entry must have a corresponding double entry','every debit entry must have a corresponding double entry','every asset must have a corresponding liability.','','','a','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:31'),(93,'Which of the following is a nominal account?','Machinery Account','Drawings Account','Debtors Account','Wages Account','','','d','','wassce','2013',109,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:32'),(94,'Reserves account is kept in the','private ledger.','creditors ledger.','nominal ledger.','debtors ledger.','','','c','','wassce','2013',96,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:33'),(95,'An advantage of control account is','locating figures.','adding figures.','changing figures.','locating errors.','','','d','','wassce','2013',103,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:34'),(96,'The accumulated fund of a not-for-profit making organization is','a fixed asset.','a current asset.','a liability.','capital.','','','d','','wassce','2013',97,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:35'),(97,'A business is treated as being separate from the owners. This statement is emphasized by','consistency concept.','realization concept.','going concern concept.','business entity concept.','','','d','','wassce','2013',100,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:37'),(98,'Which of the following is recorded on the debit side of the Trial Balance?','Bank overdraft','Returns outwards','Purchases','Capital','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:38'),(99,'Which of the following is determined in the Trading Account?','Factory overheads','Cost of goods sold','Prime cost','Net profit','','','b','','wassce','2013',106,'Admin','2016-11-15 20:31:31','2020-07-19 14:28:27'),(100,'Cash receipts and payments involving discounts are entered in','three-column cash book.','two-column cash book.','analytical cash book.','petty cash book.','','','a','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:40'),(101,'The minimum number of persons required to form a partnership business is','2.','3.','5','10.','','','a','','wassce','2013',88,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:41'),(102,'Which of the following accounts has a credit balance?','Returns Inwards Account','Machinery Account','Sales Account','Cash Account','','','c','','wassce','2013',93,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:42'),(103,'The accounting principle that states that, in the preparation of accounting statement, revenue are recognized as        soon as goods are passed on to the customer is the','materiality concept.','matching concept.','consistency concept.','realization concept.','','','d','','wassce','2013',109,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:43'),(104,'Agreement between partners is contained in the Partnership','Act.','Deed.','Accord','Deal.','','','b','','wassce','2013',113,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:43'),(105,'A low current ratio in a business indicates that the business is','faced with long term loan repayment problem.','efficient in the utilization of its resources.','unable to pay its bills on time.','growing its net asset effectively.','','','c','','wassce','2013',122,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:44'),(106,'Which of the following is a recurrent expenditure in public sector accounting?','Purchase of vehicles','Purchase of drugs','Construction of boreholes','Construction of buildings','','','b','','wassce','2013',97,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:56'),(107,'In departmental accounts, administrative expenses are recorded in the','Trading Account.','Balance Sheet.','Profit and Loss Account.','Profit and Loss Appropriation Account.','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:57'),(108,'The Public Accounts Committee is an organ of','military regime.','parliament.','presidency.','councilors.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:58'),(109,'The balance at the end of the period is',' 270,000.','139,000.','131,000.','120,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','c','','wassce','2013',89,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:59'),(110,'The total expenditure for the period is','319,000.','270,000','139,000.','109,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','d','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:00'),(111,'Which of the following is not an item on the credit side of the purchases ledger control account?','Cash received','Cash payment','Contra settlement','Cheque payment','','','a','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:01'),(112,'When a business is purchased from a sole trader, the excess of the purchase price over the net assets is','reserve.','goodwill.','freehold.','valuation price.','','','b','','wassce','2013',93,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:02'),(113,'A set of instructions or programs which controls the operation of a computer is','software.','hardware.','monitor.','keyboard.','','','a','','wassce','2013',101,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:03'),(114,'The process of detecting, tracing and eliminating errors in a computer program is','reproduction.','debugging.','sorting.','retrieving.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:04'),(115,'In a not-for-profit making organization, the cash book is referred to as','income and expenditure account.','receipts and payments account.','two column cash book.','petty cash book.','','','b','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:05'),(116,'When the going concern concept is no longer applicable, the fixed assets are recorded at their','net book value.','realizable value.','gross value.','revalued amount.','','','b','','wassce','2013',105,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:06'),(117,'The cost of raw materials consumed is','GHc 58,000.','GHc 52,500.','GHc 52,000.','GHc 50,000.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','b','','wassce','2013',105,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:07'),(118,'The prime cost is','GHc 64,500.','GHc 64,000.','GHc 58,500.','GHc 52,500.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','a','','wassce','2013',111,'Admin','2016-11-15 20:31:31','2020-07-19 14:28:27'),(119,'Which of the following relates to the essence of partnership? To','run a charity organization.','pursue a social objective.','form a business for profit.','run a religious objective.','','','c','','wassce','2013',92,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:08'),(120,'The basic assumption which underlines the preparation of periodic financial statement is known as accounting','bases.','techniques.','concepts.','method.','','','a','','wassce','2013',113,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:09'),(121,'Upon the dissolution of a partnership business, the party to be settled first out of the proceeds realized is','unsecured creditors.','partners’ loan and advances.','secured creditors.','partners’ capital.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:10'),(122,'Stock account is a type of','nominal account.','personal account.','real account.','fixed assets account.','','','c','','wassce','2013',96,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:11'),(123,'At the end of a trading period, cost of goods sold is debited to the trading account while cost of services is        debited to the','balance sheet.','manufacturing account.','trading account.','profit and loss account.','','','d','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:12'),(124,'Which of the following is not part of prime costof production?','Depreciation of factory equipment','Direct expenses','Direct wages','Carriage on raw materials','','','a','','wassce','2013',94,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:13'),(125,'Excess of current assets over current liabilities is','deferred capital.','nominal capital.','working capital','authorized capital.','','','c','','wassce','2013',83,'Admin','2016-11-15 20:31:31','2020-07-19 14:28:27'),(126,'A statement showing a trader’s financial position as at a particular date is a/an','trading account.','profit and loss account.','balance sheet.','appropriation account.','','','c','','wassce','2013',108,'Admin','2016-11-15 20:31:31','2020-07-19 08:22:59'),(127,'A trading account is prepared to disclose the','net profit or loss for the year.','gross profit or loss for the year.','accumulated fund for the year.','gross profit on manufacturing.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:16'),(128,'Balance as per cash book 2, 970  Bank Charges 220 ;Unpresented cheques 3, 950; Uncredited cheques 4,178 ; Direct debit by bank 1, 000 . Determine  the balance as per bank Statement','N1,978','N1,962','N1,522','N2,522','','','d','','utme','2016',94,'Admin','2016-11-16 07:48:40','2020-07-19 14:28:27'),(129,'The records of Superstores shows a loan of  N14,000 from Bala, creditor N8, 000 and assets N190, 500. What is the firm’s capital?','184, 000','1 96, 500','212 000','168, 500','','','d','','utme','2016',99,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:18'),(130,'The major advantage of the journal proper is that it','helps in the preparation of the balance sheet','prevents fraud and theft of item of the business','serves as a book of instruction to the bookkeeper','helps the banking industry to be efficient.','','','b','','utme','2016',91,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:18'),(131,'One of the objectives of accounting is that it can be used for','business decision making','due process in business','motivating employees','determining the work force.','','','a','','utme','2016',90,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:19'),(132,'The ratio that gives the indication of the efficiency of a firm’s sales with respect to cost of goods sold is a','return on capital employed','gross profit margin','net profit margin','return on equity.','','','b','','utme','2016',102,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:20'),(133,'The instrument used in analysis and interpretation of financial statement is the','accounting ratios','income and expenditure extract','balance sheet extract','fund accounting.','','','a','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:21'),(134,'An item in the balance sheet of a limited liability company is','accrued expenses','lighting and heating','salaries and wages','general expenses.','','','a','','utme','2016',103,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:22'),(135,'The documents that provide instant information to firms on their transactions with banks are','bank statement and debit note','cheque stub and deposit slip','cheque book and cashbook','payslip and credit invoice.','','','a','','utme','2016',91,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:23'),(136,'Which of the following is the capital reserve of a company?','Accumulated depreciation.','Retained profit.','Share premium','Loss on forfeited shares','','','b','','utme','2016',97,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:24'),(137,'The effect of overstating-revenue expenditure in the profit and loss account is that the','opening stock will be increased','net profit will be understated','net profit will be overstated','opening stock will be decreased','','','b','','utme','2016',92,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:25'),(138,'Which of the following conditions would attract credit and debit notes to be used?','When goods are received from supplier.','When a trial balance is extracted','When a buyer is under or over charged.','When goods are sold to a buyer.','','','c','','utme','2016',112,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:26'),(139,'Given:  Drawings [3,500]; Net loss [2, 500]; Capital 1.1.2007 [35, 000], Additional capital [10, 000]. The adjusted capital as at 31 : 12 : 2007 is','N45, 000','N39,000','N35, 000','N46, 000','','','d','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:27'),(140,'A receipt is an evidence of','payments','stocking','delivery','discounts.','','','a','','utme','2016',92,'Admin','2016-11-16 07:48:41','2020-07-19 14:28:27'),(141,'An organization which has records of only personal accounts is said to be operating on the basis of','single entry','real accounts','double entry','nominal accounts','','','a','','utme','2016',117,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:29'),(142,'A proprietor started business with N13, 000.  Assets and liabilities at the end of the year; fixed assets N8, 800, stock N2, 600, debtors  N1 , 000, cash N3, 000 and creditors N1 , 000. Determine the profit for the year?','N2, 400','N3, 000','N9, 800','N 1 , 400','','','d','','utme','2016',91,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:29'),(143,'Badge Plc issued 450, 000 ordinary shares, of 50K each at N1 .50 per share. Application and allotment 45k, 1st call 50k, 2nd call 55k. Determine the amount received on final call.','N225, 000','N236, 250','N 247, 500','N 202, 500','','','c','','utme','2016',107,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:30'),(144,'When goods are sent to the branch at cost plus mark­up, it means that the branch should sell at','a price above or below the stipulated price','any price but not below the transfer price','cost price','a price that is equal to the mark-up.','','','a','','utme','2016',83,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:31'),(145,'The income and expenditure account differs from receipts and payments account because it','accounts for notional charges','records transactions that relate to the period on cash basis','records transactions that relate to the period  on accrual basis','accounts for balance of cash at bank.','','','b','','utme','2016',105,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:32'),(146,'The major sources of revenue for the state and local governments is','value added tax','statutory allocation','taxes and levies','recurrent revenue.','','','b','','utme','2016',101,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:33'),(147,'Which of the following -is -correct about the imprest system?','II and IV','I, III and IV','I, II and III','III and IV','I.   The amount of the imprest is the same from one organization to another. II. At the end of a fixed period, the petty cashier received a fixed sum of money.  III.  At the end of a period, the petty-cashier is reimbursed, with the amount spent in that period. IV. The system is a method by which a measure  of control is kept on petty cash expenses','','c','','utme','2016',104,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:46'),(148,'When the fixed capital method is used, the partners share of profits and remunerations are credited to the','current account.','profit and Loss account.','profit and loss appropriation account.','capital account.','','','d','','utme','2016',110,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:47'),(149,'A discount that is allowed to encourage a debtor to pay off his debt within a period is the','trade discount','annual discount','periodic discount','cash discount.','','','d','','utme','2016',111,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:48'),(150,'The costs of acquiring fixed assets and bringing them into the firm is a','general expenses','recurrent expenditure','revenue expenditure','capital expenditure.','','','d','','utme','2016',106,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:49'),(151,'The impersonal account is subdivided into','realand nominal accounts','nominal and personal accounts','real and current accounts','personal and real accounts.','','','a','','utme','2016',99,'Admin','2016-11-16 07:48:41','2020-07-19 14:28:27'),(152,'Opening balance of Diksacompany was 12, 202, closing balance N15,300, total cash received during the period N40, 000. What was the amount of cash paid during the same period?','N36. 902','N27,502','N12,498','N43.098','','','c','','utme','2016',110,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:51'),(153,'The total cash and cheques received from customers in a control account is derived from the','income and expenditure account','cashbook','purchases day book','sales journal','','','d','','utme','2016',97,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:52'),(154,'Which of the followings is a credit item in creditors ledger control account?','Returns outwards.','Discount Received.','Bad debts.','Purchases.','','','d','','utme','2016',123,'Admin','2016-11-16 07:48:42','2020-07-19 14:28:27'),(155,'The trader’s capital in a single entry system is ascertained by preparing','gross profit','statement of affairs','suspense account','appropriation account','','','b','','utme','2016',102,'Admin','2016-11-16 07:48:42','2020-07-19 14:28:27'),(156,'From the information above, sources of income for a Not-for-profit making organization include','I, III, IV','I, II, III','I, II, IV','I and IV','I.   Members subscription II.  Fines  from members  III. Donation  IV.  Loan from bank','','b','','utme','2016',95,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:55'),(157,'Clifford pays rent of  N200 per month for premises. He paid N 2,800 within the year, Compute the prepayment.','N300','N400','N660','N200','','','b','','utme','2016',109,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:56'),(158,'Purchases can be ascertained through the preparation of a','stock account','sales account','total debtors’ control account','total creditors, control account','','','d','','utme','2016',87,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:57'),(159,'When stock is withdrawn, for personal use, the accounting entries is to debit','stock account, credit drawings','drawing account credit stock account','personal account credit cash account','cash account, credit personal account.','','','b','','utme','2016',157,'Admin','2016-11-16 07:48:42','2020-07-20 01:07:29'),(160,'Sundry debtors in the balance sheet of Onoja Bakery and Sons totaled N800,000. A provision of 2% was made for discount and 5% provision for bad and doubtful debts.  Find the amount for sundry debtors after provision.','N744,800','N 760,000','N784, 000','N744, 000','','','d','','utme','2016',93,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:59'),(161,'Which of the following is accounted for in receipts and payments account?','Accrued expenses on annual dances','Subscriptions due but not yet received','Interest on bank deposit','Depreciation of the club house.','','','c','','utme','2016',93,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:59'),(162,'When the purchase Consideration is lower than the net asset, the buyer has gained the advantage of','capital reserve','revenue reserve','net-income','net loss','','','a','','utme','2016',81,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:00'),(163,'An increase in government expenditure within a year is taken care of by means of','virement','financial regulations','supplementary estimate','warrant.','','','b','','utme','2016',96,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:01'),(164,'A business organization prepares departmental account in order to','ascertain the contribution of each department to the organization','ascertain interdepartmental transfer','build other branches','know the number of departments in the organization.','','','a','','utme','2016',92,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:02'),(165,'The objective of departmental account is to','ascertain the amount of profits or losses for the enterprise','ascertain the amount of profits or losses for each department','ascertain the cost of running the organization.','offset the loss of each department.','','','b','','utme','2016',108,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:03'),(166,'Which of the following expenses relate to the profit and loss account of a manufacturing firm?','Administrative overhead.','Direct labour','Direct materials.','Work-in-progress.','','','a','','utme','2016',102,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:04'),(167,'The difference between book keeping and accounting is that while','book keeping interprets data accounting records it','book keeping is regarded as  the language of the business, accounting ascertains its .strength and weakness','book keeping records data accounting interprets it','book keeping - summaries information, accounting communicates it.','','','c','','utme','2016',105,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:05'),(168,'Alaka who owed Saka N15, 000, settled his deb  after- deducting cash discount of 10%. To record the discount in the book of Saka, debit','Saka’s account and credit discount received account','Alaka’s account and credit discount received account','discount received account andcredit Alaka’s account','discount allowed account and credit Alaka’s account.','','','a','','utme','2016',111,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:06'),(169,'If the scrap value is now N15, 000, what will be the yearly depreciation using straight line method?','N11 000','N7, 000','N 4, 000','N24. 000','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','c','','utme','2016',104,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:07'),(170,'The yearly depreciation using the straight line method would be','N5,200','N6,500','N8, 800','N4, 400','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','a','','utme','2016',97,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:08'),(171,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N  5,000','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','c','','utme','2016',104,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:14'),(172,'The market value of goods produced is','N30,500','N3, 600','N31,600','N31,620','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','b','','utme','2016',126,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:15'),(173,'A suspense account is used to','agree the trial balance','record sales','record purchases','correct errors','','','a','','wassce','1997',61,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:16'),(174,'To correct an error, the Purchases Account was debited while Suspense Account was credited. Which  of  the following was the cause of the error?','Under casting of purchases','Overcasting of purchases','Original entry.','Transportation of returns outwards','','','a','','wassce','1997',71,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:17'),(175,'Subscription in advance is treated in the Balance Sheet of \tnon-profit making organizations as','current asset','fixed asset','Current liability','accumulated fund','','','c','','wassce','1997',96,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:18'),(176,'A Sales Day Book is used to record','cash sales of stock','credit sales of stock','cash and credit sales of stock','cash sales of fixed assets','','','b','','wassce','1997',91,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:19'),(177,'Which of the following is not a capital expenditure to a local government?','Beds','Theatre equipment','Incubators','Drugs','','','d','','wassce','1997',93,'Admin','2016-11-18 07:24:28','2020-07-19 14:28:27'),(178,'A Receipt and Payments Account reveals','net profit','surplus','cash in hand','gross profit','','','c','','wassce','1997',99,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:21'),(179,'An example of appropriation of profit in a company is','salaries','rent income','debenture interest','dividend.','','','d','','wassce','1997',73,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:22'),(180,'In a partnership goodwill is recognized when','a new partner is admitted','a partner is dormant','the business is making huge profit','the business has good customer relations','','','a','','wassce','1997',89,'Admin','2016-11-18 07:24:28','2020-07-19 14:28:27'),(181,'Which of the following is a normal account?','Machinery','Debtors','Creditors','Salaries','','','d','','wassce','1997',94,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:24'),(182,'The net book value at the time of sale was','N=  16,000','N=  14,000','N=  12,000','N= 6,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',93,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:25'),(183,'Accumulated depreciation at the time of sale was','N= 16,000','N=  14,000','N=  12,000','N=  8,000','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','b','','wassce','1997',76,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:25'),(184,'The prof it on sale was','N=  8,000','N=  7,000','N=  6,000','N=  1,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',81,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:26'),(185,'In Manufacturing Account, prime cost plus factory overhead is known as','conversion cost','cost of raw materials consumed','total cost','production cost','','','d','','wassce','1997',82,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:36'),(186,'Which of the following is an advantage of the imprest system?','Making high profits in the business','Rewarding the imprest holder','Easy preparation of the final accounts','Meeting small items of expenditure','','','d','','wassce','1997',78,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:37'),(187,'Where a business is purchased, the full amount of the purchase consideration is credited to','Purchase of Business Account','Creditor’s Account','Vendor’s Account','Purchaser’s Account.','','','a','','wassce','1997',76,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:38'),(188,'A financial plan of action expressed in monetary terms is known as','imprest','consolidated fund','warrant','budget','','','d','','wassce','1997',89,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:40'),(189,'Which of the following is not a source document for recording sales?','Debit note','Credit note','Receipt','Sales journal','','','d','','wassce','1997',106,'Admin','2016-11-18 07:24:28','2020-07-16 19:21:42'),(190,'The mark-up is','N  15,000','N 9,000','N  4,000','N  3,000','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','d','','wassce','1997',82,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:42'),(191,'The double entry required for the mark-up is debit Branch','Sales Account, credit Branch Adjustment Account','Adjustment Account, credit Branch Stock Account','Stock Account, credit Branch Adjustment Account','Profit and Loss Account, credit Branch Stock Account,','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','c','','wassce','1997',73,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:43'),(192,'A ledger is a','book of accounts','summary of entries','book of original entry','double entry posting','','','d','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:44'),(193,'A real account is the account of','expenses or losses','gains or income','physical tangible items','fictitious items','','','c','','wassce','1997',87,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:45'),(194,'An item is fictitious because it','does not exist','is too costly','is worthless','cannot be sold for cash','','','a','','wassce','1997',80,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:46'),(195,'Which of the following is not a personal account?','Bolaji Account','Drawings Account','P.Z. Plc Account','Cash Account','','','c','','wassce','1997',90,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:47'),(196,'A provision is','an expense of business to be paid for in cash','an amount of loss from trading activities','a loss in value of all business assets','an expense the amount of which is not certain','','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:48'),(197,'A cash discount is a','Trading Account item','Profit and Loss Account item','Appropriation Account item','Receipts and Payments Account item','','','b','','wassce','1997',81,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:49'),(198,'The amount of capital expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','b','','wassce','1997',78,'Admin','2016-11-18 07:24:29','2020-07-19 14:28:27'),(199,'The amount of revenue expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','c','','wassce','1997',100,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:50'),(200,'An expense becomes an accrual because it','is due for payment','is a Profit and Loss Account item','is a Trading Account item','is to be paid within the next one year','','','a','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:51'),(201,'The amount for which a business is sold is known as','goodwill','capital reserve','purchase consideration','premium','','','c','','wassce','1997',74,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:52'),(202,'The person, who is responsible for the formation of a company is called the','promoter','sponsor','shareholder','director','','','a','','wassce','1997',76,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:53'),(203,'The amount of a company’s profit given to a shareholder is known as','premium','dividend','interest','allotment','','','b','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:54'),(204,'Which of the following best describes the path of a transaction?','Source documents to Journal to Ledger','Source documents to Ledger to Journal','Journal to Ledger to source documents','Journal to source documents to Ledger','','','a','','wassce','1997',97,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:55'),(205,'Where there are no proper books of account, the capital at the commencement of a period is ascertained by preparing','Total Debtors and Creditors Accounts','Bank Reconciliation Statement','Statement of Affairs','Trading, Profit and Loss Accounts','','','c','','wassce','1997',94,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:56'),(206,'Rent receivable is a','current asset','current liability','contingent liability','fictitious asset','','','b','','wassce','1997',94,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:58'),(207,'Which of the following is a factory overhead?','carriage on raw materials','Purchase of raw materials','Production wages','Depreciation of factory equipment.','','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-19 14:28:27'),(208,'The purchase consideration was','N  24,000','N 23,000','N  20,000','N 15,000','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','a','','wassce','1997',66,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:00'),(209,'The amount of goodwill was','N  4,000','N  3,000','N  2,000','N  1,000.','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','d','','wassce','1997',88,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:01'),(210,'When a share is sold for less than its nominal value, the difference is called','discount','reserve','premium','loss','','','a','','wassce','1997',83,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:02'),(211,'Which of the following serves the same purpose as a Trading Account?','Branch Adjustment Account','Goods sent to Branch Account','Branch Stock Account','Branch Debtors Account','','','c','','wassce','1997',91,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:03'),(212,'Which of the following is not a revenue receipt?','Receipt from sales of goods','Rent from premises sublet','Interest on savings account','cash on sale of fixed asset','','','d','','wassce','1997',90,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:03'),(213,'The art of collecting, recording, presenting and interpreting accounting data is','cost accounting','management accounting','financial accounting','data processing.','','','c','','wassce','2006',96,'Admin','2016-11-18 07:56:05','2020-07-14 13:26:04'),(214,'The depreciation method in which the number of years of the useful life of an asset is allocated in a reverse order is','straight line','reducing balance','sum of the years’ digits','revaluation.','','','c','','wassce','2006',105,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:05'),(215,'A system where a separate cash book is maintained for small payments is','single entry','imprest','float','reimbursement.','','','b','','wassce','2006',105,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:06'),(216,'Public sector accounting is practiced in','public limited companies','government organizations','profit making organizations','public trading companies.','','','b','','wassce','2006',121,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:07'),(217,'A book that contains the accounts for the financial transactions of an organization is the','journal','ledger','folio','register','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:08'),(218,'A sales ledger contains','creditors’ accounts','nominal accounts','real accounts','debtors’ accounts.','','','d','','wassce','2006',121,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:09'),(219,'Books of account consists of','ledgers and subsidiary books','ledgers and principal books','folios and subsidiary books','ledgers and cash book.','','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:06','2020-07-19 14:28:27'),(220,'The amount set aside out of profits earned by a company which are not meant for liability or contingency are','dividends','provisions','retained profits','reserves','','','d','','wassce','2006',105,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:11'),(221,'The basis of accounting which eliminates debtors and creditors is','cash basis','accrual basis','fund basis','commitment basis.','','','a','','wassce','2006',102,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:12'),(222,'Which of the following is not a revenue account?','Sales','Purchases','Discount received','Interest received','','','b','','wassce','2006',100,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:13'),(223,'If  no profit is to be retained, proposed preference shares dividend is','N  28,000','N  16,000','N  12,000.','N  4,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',87,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:14'),(224,'If  no profit is to be retained, proposed ordinary shares dividend is','N   48,000','N  44,000','N  40,000','N  28,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','c','','wassce','2006',95,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:15'),(225,'The dividend per ordinary share for the year is','N  0.88 kobo','N  0.40 kobo','N  0.20 kobo','N  0.17 kobo','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',97,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:16'),(226,'A customer who returns goods to the supplier because they are defective is issued a','debit note','credit note','delivery note','bank note.','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:17'),(227,'Cross referencing among different books of accounts is achieved with the use of','columns','reference numbers','folio','margin.','','','c','','wassce','2006',101,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:18'),(228,'In company accounts, profit after tax is shared in the','appropriation account','revaluation account','current account','realization account.','','','a','','wassce','2006',93,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:19'),(229,'Which of the following is not a source of revenue to a government?','Taxation','Sale of goods','Imposition of fines','Grants','','','b','','wassce','2006',102,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:20'),(230,'Whatever is fed into the computer is exactly what would be processed and produced as output. This is the concept of','sorting out','last in, first out','first in, first out','garbage in, garbage out.','','','d','','wassce','2006',101,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:20'),(231,'Bank reconciliation statement reconciles','bank and cash balances in the cash book','bank balance in the cash book and bank statement balance','cash balance in the cash book and bank statement balance','bank balance brought down and bank balance carried down in the cash bcok.','','','b','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:21'),(232,'The unit which keeps government’s books of accounts is the','Central Bank','Internal Audit Department','Treasury Department','Accountant General’s Department.','','','c','','wassce','2006',86,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:22'),(233,'Which of the following is not a debit item in a partnership \tappropriation account?','Interest on drawings','Partner’s salary','Interest on partner’s capital','Share of profit.','','','a','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:23'),(234,'Revenue is recognized in the profit and loss account as soon as a','debtor pays what is due from him','sale of goods takes place and money is received','sale of goods takes place whether or not money is received','sale of a fixed asset takes place.','','','c','','wassce','2006',93,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:24'),(235,'“A business unit is assumed to operate into foreseeable future and earn reasonable net income”. This statement is emphasized by the concept of','business entity','going concern','realization','accrual.','','','b','','wassce','2006',114,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:25'),(236,'Which of the following is not used in solving problems of incomplete records?','Control Accounts','Statement of affairs','Cash book','Balance sheet','','','d','','wassce','2006',110,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:26'),(237,'In a system of incomplete records, the opening capital is determined by preparing','statement of affairs','balance sheet','cash book','trial balance.','','','a','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:27'),(238,'Cost of raw materials consumed is','D113,000','D105,500','D98,000','D95,500.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','c','','wassce','2006',92,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:28'),(239,'Prime cost is','D120,500','D117,700','D114,900','D114,300.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','b','','wassce','2006',87,'Admin','2016-11-18 07:56:07','2020-07-19 14:28:27'),(240,'Cost of goods manufactured is','D138,000','D131,800','D130,500','D123,000.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','a','','wassce','2006',82,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:30'),(241,'A set of instructions fed into a computer for accomplishing a given task is a/an','input','programme','output','data.','','','b','','wassce','2006',107,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:31'),(242,'Control accounts are also known as','contra accounts','total accounts','ledger accounts','integral accounts.','','','b','','wassce','2006',102,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:32'),(243,'Which of the following is charged to trading account?','Discounts allowed','Carriage outwards','Salaries','Carriage inwards.','','','d','','wassce','2006',105,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:33'),(244,'Which of the following is not a debit item in a creditor’s control \taccount?','Cash paid','Returns outwards','Purchases','Discounts received','','','c','','wassce','2006',96,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:34'),(245,'Using the straight line method, the depreciation charged for year 2002 was','N 160,000','N  130.000','N  100,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:35'),(246,'Using the reducing balance method, the depreciation charged for year 2002 was','N 100,000','N  90,000','N  80,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:36'),(247,'Using the reducing balance method, the depreciation charged for year 2003 was','N  160,000','N  150,000','N   130,000','N  120,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','b','','wassce','2006',90,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:37'),(248,'Which of the following is not a revenue expenditure?','Payment: of salaries','Payment for advertisement','Purchases of motor vehicle','Purchases of goods.','','','c','','wassce','2006',87,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:38'),(249,'The amount allowed off the cost price of an article to stimulate patronage is','cash discount','trade discount','discount on debt','discount on bills.','','','b','','wassce','2006',101,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:39'),(250,'Which of the following is a Journal as well as an account?','Sales day book','Cash book','General journal','Purchases journal','','','c','','wassce','2006',93,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:40'),(251,'Which of the following columns of a three column cash book \tare memoranda?  I. Discount received  II. Discount allowed III. Cash IV. Bank','I and II only','I and III only','II and III only','ll and IV only.','','','d','','wassce','2006',112,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:48'),(252,'The adjusted cash book balance is','D11,200','D8,400','D6,200','D5,600','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','d','','wassce','2006',99,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:49'),(253,'The balance as per bank statement is','D10,900','D8,400','D5,600','D2,800','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','b','','wassce','2006',96,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:50'),(254,'Where the head office maintains all books of account, goods sent to branch is credited to','Goods Sent to Branch Account','Branch Stock Account','Branch Stock Adjustment Account','Head Office Current Account','','','a','','wassce','2006',91,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:51'),(255,'Which of the following is not a purpose for preparing departmental accounts? To','compare the results of different departments','employ staff into different departments','reward departmental managers','obtain information for formulating policies.','','','b','','wassce','2006',89,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:52'),(256,'Rent expenses for the year 2005 is','N 11,400','N  11,300','N  11,200','N  10,200.','Rent accrued 1st January, 2005 [600], Rent paid in 2005 [11,300], Rent prepaid 31st December, 2005 [500]','','c','','wassce','2006',119,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:53'),(257,'Which of the following is not classified as an overhead?','Factory rates','Factory power','Factory building extension','Factory depreciation.','','','c','','wassce','2006',100,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:54'),(258,'The objective of accounting information is to enable users to','prepare the financial statements.','value stock','make decisions','prepare budgets','','','c','','wassce','2012',103,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:55'),(259,'Trade discounts are given for','bulk purchases','prompt payment','quick delivery','cash payment','','','a','','wassce','2012',96,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:56'),(260,'When closing stock is overstated, it would reduce','cost of sales and increase gross profit.','gross profit and increase cost of sales.','purchases and increase sales.','sales and increase purchases.','','','a','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:58'),(261,'Which of the following is not a source document?','Journal proper','Sales invoice','Debit note','Credit note','','','a','','wassce','2012',98,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:59'),(262,'A fixed asset fully written-down by a trader is now considered to be worth N5,000. The double entry required to effect       this is: debit','Asset Account; credit Purchases Account.','Asset Account; credit Capital Account.','Capital Account; credit Asset Account.','Capital Account; credit Profit and Loss Account.','','','b','','wassce','2012',92,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:00'),(263,'Which of the following is a book of original entry?','Ledger','Balance sheet','Bank statement','Sales journal','','','d','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-07-19 14:28:27'),(264,'A Balance Sheet shows only','fixed assets and current assets','assets and long term liabilities.','assets and liabilities','assets and capital','','','c','','wassce','2012',89,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:02'),(265,'The process of entering transaction from one book to another is','reading.','posting.','numbering','listing','','','b','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:02'),(266,'which of the following is a Trading Account item?','Discounts allowed','Discounts received','Carriage outwards','Carriage inwards','','','d','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:03'),(267,'The addition of prime cost and factory overheads is','total factory overheads.','market value of goods produced.','cost of goods produced','work-in-progress.','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:04'),(268,'Capital receipt is collected','on sales of motor vehicle.','on sales of stock in trade.','from trade debtor','from trading activities.','','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:05'),(269,'Which of the following is an example of factory overheads?','Salary of marketing officer','Salary of production officer','Salary of accounting officer','Wages of machine operator','','','d','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:06'),(270,'Osa started business with Le40,000 cash. The accounting entry is debit','Cash Account; credit Capital Account.','Capital Account; credit Cash Account.','Purchases Account; credit Cash Account.','Expenses Account; credit Capital Account.','','','a','','wassce','2012',99,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:07'),(271,'Branch Stock Account is used to determine the','net value of goods sent to branch.','gross profit of the branch.','branch credit sales.','branch net profit or loss.','','','b','','wassce','2012',96,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:08'),(272,'The name given to a budget in public service accounting is','vote.','subvention.','general order.','estimate.','','','d','','wassce','2012',95,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:09'),(273,'Which of the following is not prepared by a partnership?','Trading Account','Profit and Loss Account','Income and Expenditure Account','Profit and Loss Appropriation Account','','','c','','wassce','2012',102,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:10'),(274,'A partner who only makes capital contribution but does not take part in the management of the partnership business is a/an','ordinary partner','limited partner','dormant partner','nominal partner','','','d','','wassce','2012',98,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:11'),(275,'Which of the following is component of prime cost?','Depreciation','Royalty','Factory rent','Factory electricity','','','d','','wassce','2012',106,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:12'),(276,'The concept which establishes the rule for the periodic recognition of revenue as soon as it is capable of objective measurement is','going concern.','entity.','consistency.','realization.','','','d','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:13'),(277,'Rent accrued in 2009 was D140. In 2010, D900 was paid while D160 was outstanding. Rent for 2010 was','D1,200.','D1.060.','D920.','D880.','','','c','','wassce','2012',82,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:14'),(278,'Which of the following is not an input device?','Card reader','Paper top reader','Alpha-numeric keyboard','Line printer','','','d','','wassce','2012',74,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:35'),(279,'The equivalent of Income and Expenditure Account in a trading concern is','Trading Account.','Profit and Loss Account.','Appropriation Account.','Balance Sheet.','','','b','','wassce','2012',106,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:36'),(280,'The term used to denote the capital of a not-for-profit making \torganization is','annuity fund.','nominal capital.','circulating capital.','cumulated fund','','','d','','wassce','2012',97,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:37'),(281,'The portion of authorized capital that has been allotted to subscribers is','called up capital','paid up capital.','issued capital','nominal capital.','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:38'),(282,'Partners whose liabilities are restricted to their financial contribution to the partnership in the event of winding up are','ordinary partners','limited partners','dormant partners','sleeping partners','','','b','','wassce','2012',84,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:39'),(283,'If creditors at 1/1/10 were Le 3,000; creditors at 31/12/10 Le 5,500 and payments to creditors Le 29,000. The purchases figure for 2010 is','Le 34,500','Le 32,000','Le 31,500','Le 26,500','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:40'),(284,'Which of the following is not found in the personal ledger?','Debtors Account','Creditors Account','Capital Account','Nominal Account','','','c','','wassce','2012',105,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:41'),(285,'The Sales Ledger Control Account is also referred to as','Bought Ledger Control Account.','Purchases Account.','Total Debtors Account.','Total Creditors Account.','','','c','','wassce','2012',96,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:42'),(286,'Capital expenditure for the year was','Le 545,000','Le 490,000','Le 450,000','Le 300,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','b','','wassce','2012',99,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:43'),(287,'The amount of recurrent expenditure was','Le 245,000.','Le 175,000','Le 135,00.','Le 80,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','c','','wassce','2012',95,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:44'),(288,'An increase in the provision for doubtful debts results in a/an','increase in the gross profit.','decrease in the gross profit.','decrease in the net profit.','increase in the net profit.','','','c','','wassce','2012',84,'Admin','2016-12-13 21:23:14','2020-07-19 14:28:27'),(289,'Which of the following errors affects the agreement of a Trial Balance?','Wrong addition in the sales account','Crediting a purchase to A. Tambi’s account instead of F. Tambi’s account','Failure to enter sales in the books','Posting the purchase of a van to the debit side of the purchases account','','','a','','wassce','2012',92,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:53'),(290,'The excess of the value of assets over the purchase \tconsideration on acquisition of a business is credited to','share capital account.','goodwill account.','capital reserve account','general reserve account.','','','c','','wassce','2012',97,'Admin','2016-12-13 21:23:14','2020-07-19 14:28:27'),(291,'Shares of N3 nominal value were issued at a price of  N4. The difference of N1 is a','commission.','discount.','premium.','bonus.','','','c','','wassce','2012',102,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:59'),(292,'Which of the following is not the purpose of control account?','Check on errors of addition','Locate errors','Locate missing figures','Monitor the cash book','','','d','','wassce','2012',102,'Admin','2016-12-13 21:23:14','2020-07-19 14:28:27'),(293,'Which of the following is not part of the Central Processing Unit of a computer?','Arithmetical and Logical unit','Memory unit','Input unit','Control unit','','','c','','wassce','2012',110,'Admin','2016-12-13 21:23:14','2020-07-14 13:28:01'),(294,'The double entry to record the proceeds on disposal of assets is debit','Bank Account; credit Asset Disposal Account.','Asset Disposal Account; credit Bank Account.','Provision for Depreciation Account; credit Asset Disposal Account','Asset Disposal Account; credit Provision for Depreciation Account.','','','a','','wassce','2012',87,'Admin','2016-12-13 21:23:14','2020-07-14 13:28:10'),(295,'An underwriter for a company’s share is paid','Interest.','commission.','dividend.','salary.','','','b','','wassce','2012',100,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:11'),(296,'Which of the following is found in a Memorandum of \tAssociation?','Names of directors','Appointment of directors','Object of the business','Payment of dividend','','','c','','wassce','2012',98,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:12'),(297,'Administrative, selling and distribution expenses in a \tmanufacturing firm are recorded in','Trading Account.','Manufacturing Account.','Profit and Loss Account.','Balance Sheet.','','','c','','wassce','2012',118,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:25'),(298,'Which of the following is not a revenue to a local government?','Fines','Licenses','Personal income tax','Tenement rates','','','c','','wassce','2012',91,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:26'),(299,'The capital is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','a','','wassce','2012',95,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:27'),(300,'The liability is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','d','','wassce','2012',115,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:28'),(301,'Which of the following is not an item in the profit and loss account?','Drawings','Interest','Balances','Bad debts','','','a','','wassce','2012',95,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:29'),(302,'A loss made on the disposal of a fixed asset is debited to','Sales Account.','Purchases Account.','Profit and Loss Account.','Capital Account.','','','c','','wassce','2012',99,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:30'),(303,'Which of the following describes a trial balance?','It is a special account','It is a list of balances in the books','It reveals the financial position of a business','It shows all the entries in the books of a business','','','b','','wassce','2015',75,'Admin','2016-12-14 06:09:04','2020-07-14 13:28:31'),(304,'Which of the following is not a feature of accounting information?','Affordability','Timeliness','Accuracy','Completeness','','','a','','wassce','2015',87,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:32'),(305,'Which of the following is the equation for determining net profit or loss from the records of a firm?','Closing Capital - Drawings - Capital Introduced','Opening Capital + Drawings - Closing Capital','Closing Capital + Opening Capital - Drawings','Closing Capital + Drawings - Opening Capital','','','d','','wassce','2015',98,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:33'),(306,'Purchase invoice is first entered in the','purchases account','cash book','sales journal','purchase journal','','','d','','wassce','2015',91,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:34'),(307,'Assets acquired is recorded by debiting','Asset Account, crediting Cash Account','Cash Account, crediting Asset Account','Purchase of Business Account, crediting Sale of Business Account','Asset Account, crediting Purchase of business Account','','','a','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:35'),(308,'Goods returned to a supplier is','debited to Returns outwards account','credited to Returns outwards account','debited to Returns inwards account','credited to Returns inwards account','','','b','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:36'),(309,'Which of the following is a real account?','Plant account','Salaries account','Creditors account','Trading account','','','a','','wassce','2015',89,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:37'),(310,'The accounting ledger for goods sold on credit are debit','Debtors Account, credit Sales Account','Creditors Account, credit Sales Account','Sales Account, credit Debtors Account','Sales Account, credit Creditors Account','','','a','','wassce','2015',82,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:38'),(311,'Which of the following is not a book of original entry?','Sales journal','Purchases account','Cash account','Return inwards journal','','','c','','wassce','2015',91,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:39'),(312,'What is the ledger entry for the sale of plant and machinery on credit to Wilson?','Credit Sales Account and debit Cash Account','Credit Plant and Machinery Account and debit Wilson’s Account','Credit Sales Account and debit Wilson’s Account','Credit Plant and Machinery Account and debit Cash Account','','','b','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:40'),(313,'Discount Received Account is a','real account','personal account','nominal account','profit and loss account','','','c','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:41'),(314,'Which of the following accounts has a credit balance?','Capital','Cash','Drawings','Premises','','','a','','wassce','2015',76,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:42'),(315,'The accounting entry to correct sales day book overcast is','debit Sales Account and credit Debtors Account','debit Suspense Account and credit Sales Account','debit Debtors Account and credit Suspense Account','debit Sales Account and credit Suspense Account','','','d','','wassce','2015',95,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:43'),(316,'Which of the following expresses the accounting equating?','Capital + Assets = Liabilities','Assets - Liabilities = Capital','Liabilities + Current Assets = Fixed Assets','Liabilities - Capital = Current Assets','','','b','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:44'),(317,'When the invoice of a customer is overcast, the supplier will send to him a','cheque','payment voucher','debit note','credit note','','','d','','wassce','2015',74,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:45'),(318,'Unpresented cheques are cheque','that have been recorded in the cash book, but not by the bank','that have been received by the bank, but recorded in the cash book','returned by the bank','written, but not handed over to customers','','','a','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:46'),(319,'The cost of putting goods into a saleable condition is charged to','balance sheet','trial balance','profit and loss account','trading account','','','d','','wassce','2015',96,'Admin','2016-12-14 06:09:05','2020-07-19 14:28:27'),(320,'Which of the following is not a method of depreciating fixed assets?','Revaluation','Straight line','Diminishing balance','Obsolescence','','','d','','wassce','2015',65,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:59'),(321,'In preparing a profit and loss account, a decrease in provision for doubtful debts accounts is treated as','Currentability','expenses','Income','Current asset','','','c','','wassce','2015',93,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:00'),(322,'Which of the following items is found in the sales ledger control account?','Discount received','Total credit purchases','Discount allowed','Returns outwards','','','a','','wassce','2015',80,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:01'),(323,'The process of using sales ledger balance to cancel off purchases ledger balance is','balancing','set off','reconciliation','cancelling','','','b','','wassce','2015',98,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:02'),(324,'The total of the returns outwards journal is posted to the','credit side of the returns outwards book','debit side of the returns outwards account','debit side of the purchases returns book','credit side of the returns outwards account','','','d','','wassce','2015',105,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:03'),(325,'Which of the following is not revealed by a firm’s accounting records?','Profit of a period','Quality of labour force','Credit worthiness','Value of assets','','','b','','wassce','2015',89,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:04'),(326,'In the balance sheet of a social club, subscription owing is treated as a','current liability','current asset','tangible asset','long-term liability','','','b','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:05'),(327,'The accounting concept that allows the cost of kitchen cutlery to be expensed, though it will be used for more than one year is','materiality','accrual','going concern','business entity','','','a','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:07'),(328,'The accounting concept that assumes that a business will continue operating for an indefinite period is','business entity','going concern','consistency','duality','','','b','','wassce','2015',74,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:08'),(329,'The accounting concept that states that a firm’s financial affairs must be separated from that of the owner’s private transactions is','business entity','going concern','consistency','duality','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:06','2020-07-19 14:28:27'),(330,'Goodwill is recognized in partnership accounts when','the business makes a huge profit','the business has good customer relationship','a partner is dormant','a new partner is admitted','','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:10'),(331,'In which of the following accounts is interest on partners capital found?','Profit and loss','Trading','Income surplus','Profit and loss appropriation.','','','d','','wassce','2015',93,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:11'),(332,'Which of the following is not stated in the partnership agreement?','Profit sharing ratio','Interest on capital','Interest on fixed asset','Purpose of partnership','','','c','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:13'),(333,'How much was paid for goodwill?','GHc/ 350,000','GHc/ 260,000','GHc/  90,000','GHc/ 60,000','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:14'),(334,'The double entry to record the goodwill in the books is debit','Cash Account and credit Goodwill Account','Goodwill Account and credit Purchase of Business Account','Goodwill Account and credit Cash Account','Purchase of Business Account and credit Cash Account','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','b','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:15'),(335,'The document which sets out the internal arrangement for the proper management of a company is the','prospectus','article of association','memorandum of association','certificate of incorporation','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','c','','wassce','2015',85,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:16'),(336,'A person who has applied to purchase shares in a company is referred to as','a promoter','a subscriber','an allottee','an underwriter','','','b','','wassce','2015',94,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:19'),(337,'Which of the following expenses is allocated according to the floor \tarea?','Wages and Salaries','Rent and rates','Canteen expenses','Discount allowed','','','b','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:20'),(338,'Goods stolen at the branch is debited to','Defalcations Account','Branch Stock Account','Branch Adjustment Account','Branch Debtors Account','','','c','','wassce','2015',85,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:21'),(339,'Which of the following is a source of revenue for a local government?','Personal income tax','Company registration fees','Royalties','Market tolls','','','d','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:22'),(340,'The instrument used to release fund which the minister of finance had earlier withheld is','reserve expenditure warrant','supplementary general warrant','provisional general warrant','supplementary statutory warrant','','','b','','wassce','2015',95,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:23'),(341,'Which of the following relates to cash basis of accounting?','Accruals and prepayments are considered','Debtors and creditors are recorded','Fixed assets are written off in the year of purchase','Profits are maximized','','','d','','wassce','2015',83,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:24'),(342,'Which of the following is found on the credit side of a partnership’s appropriation of profit account?','Interest on capital','Interest on drawings','share of profit','Drawings','','','b','','wassce','2015',74,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:25'),(343,'Which of the following is a spreadsheet application?','Excel','Word','Internet','Windows','','','a','','wassce','2015',82,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:26'),(344,'The quality of output information depends on the','quality of input data','time of processing','speed of processing','quantity of output device','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:07','2020-07-14 13:29:27'),(345,'The source document used to make entries in the purchases day book is','debit note','credit note','invoice','receipt','','','a','','wassce','2014',84,'Admin','2016-12-14 06:44:38','2020-07-14 13:29:28'),(346,'book that contains individual accounts of suppliers is the','purchases ledger','general ledger','nominal ledger','sales ledger','','','a','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:29'),(347,'In the operation of an imprest system of petty cash, the','petty cashier pays all expenses','petty cashier pays money to the accountant','petty cashier regularly begins each period with the same amount of money','main cashier accounts to the petty cashier for some expenses made by him','','','c','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:30'),(348,'An example of a credit entry in a profit and loss account is','carriage inwards','carriage outwards','discounts allowed','discounts received','','','d','','wassce','2014',70,'Admin','2016-12-14 06:44:39','2020-07-19 14:28:27'),(349,'Which of the following subsidiary books involves cash movement?','Sales day book','Purchases day book','Returns inwards book','Petty cash book','','','d','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:32'),(350,'The accounting treatment for a dishonoured cheque is; debit','Customer’s Account; Credit Bank Account','Bank Account; Credit Customer’s Account','Customer’s Account; Credit Sales Account','Sales Account; Credit Customer’s Account\\\\','','','a','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:32'),(351,'Net turnover is referred to as','purchases','assets','sales','profits','','','c','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:33'),(352,'Which of the following transactions will result in disagreement between the cash book and the bank statement?','Selling of goods on credit to a customer','Withdrawal of goods by the proprietor for his personal use','Cheque paid directly into the bank account by a customer','Omission of purchases received from a supplier on credit','','','c','','wassce','2014',77,'Admin','2016-12-14 06:44:39','2020-07-19 14:28:27'),(353,'Purchases Account is overcast by N200, while Wages Account is under cast by N200. This is','an error of omission','a compensating error','an error of commission','an error of principle','','','b','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:35'),(354,'Which of the following is used to record the disposal of a fixed asset?','Journal  Proper','Petty  Cash  Book','Sales Day Book','Purchases Day Book','','','a','','wassce','2014',75,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:36'),(355,'The annual depreciation is','N9,000','N8,500','N8,000','N6,500','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',95,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:38'),(356,'The accumulated depreciation as at 31/12/2013 is','N18,500','N17,000','N16,000','N8,000','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',98,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:39'),(357,'An error of principle is made, if','an entry has been made in the wrong class of account','a transaction has been completely omitted','an entry has been made on the wrong side of the two accounts concerned','a transaction is entered in both accounts for the wrong amount','','','a','','wassce','2014',98,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:40'),(358,'Which of the following is entered in the general journal?','Purchase of goods','Sale of goods on credit','Returns inwards','Acquisition of fixed assets','','','d','','wassce','2014',86,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:42'),(359,'The cost of carriage outward is classified as','a selling and distribution expense','an administrative expense','a trading expense','a finance expense','','','a','','wassce','2014',82,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:43'),(360,'The purchase of ten ceiling fans by Akpan Electronic Enterprises will be recorded as','an acquisition of fixed asset','an expense in its general office expense account','part of capital in the capital account','an acquisition of stock','','','d','','wassce','2014',104,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:44'),(361,'Which of the following accounts would appear in the nominal ledger?  (I)  Sanison’s account (a debtor)  ( II) Motor vehicle account (III) Sales account  (IV)  Rent and rates account','I, II and III only','I, III and IV only','II, III and IV only','Ill and IV only','','','b','','wassce','2014',87,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:45'),(362,'The sum of direct cost in a manufacturing account is','production cost','prime cost','total cost','finance cost','','','b','','wassce','2014',79,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:46'),(363,'Net profit in a business is','the amount of money taken out of the business by the owner','the cash in the business bank account','the difference between sales and cost of sales','sale revenue less cost of sales and expenses','','','d','','wassce','2014',95,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:47'),(364,'An example of a self-balancing account is the','suspense account','creditor’s account','control account','debtor’s accoun','','','c','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:48'),(365,'The gross profit is','GHc/  2,160,000','GHc/ 1440,000','GHc/ 1,080,000','GHc/ 720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',90,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:49'),(366,'The cost of sales is','GHc/  2,160,000t','GHc/ 1440,000','GHc/ 1,080,000','GHc/  720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',94,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:50'),(367,'Which of the following is not an administrative expenses in a \tmanufacturing organization?','Discounts allowed','Office electricity','Stationery','Insurance','','','a','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:51'),(368,'When an asset is sold, the entries for the accumulated depreciation are: debit','Asset Disposal Account; credit Provision for Depreciation Account.','Provision for Depreciation Account; Credit Asset Disposal Account','Fixed Asset Account; Credit Asset Disposal Account','Asset Disposal Account; Credit Fixed Asset Account','','','b','','wassce','2014',78,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:52'),(369,'A petty cash account has an imprest of D28,000. The account has a debit balance of D5.000. How much cash is needed to restore the imprest?','D33,000','D28,000','D23,000','D5,000','','','c','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:53'),(370,'In a not - for - profit making organization, when the total income \tis less than the total expenditure, the difference is a','surplus','shortfall','loss','deficit','','','d','','wassce','2014',94,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:54'),(371,'The accounting concept underlying the treatment of personal expenses of the business owner as drawing is','periodicity','accrual','entity','materiality','','','c','','wassce','2014',88,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:55'),(372,'Which of the following items is not contained in the Receipts and Payments Account?','Subscription paid in advance','tock paid for in advance','Outstanding wages and salaries','Donations','','','c','','wassce','2014',81,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:56'),(373,'The concept that states that a business should not lay claim to any profits before it is earned with reasonable certainty is','consistency concept','prudence concept','accrual concept','going concern concept','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:57'),(374,'When shares are issued above their nominal value, the \texcess above the nominal value is','credited to Profit and Loss Account','debited to Share Premium Account','credited to Share Capital Account','credited to share Premium Account','','','d','','wassce','2014',90,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:58'),(375,'Shares issued below nominal value are referred to as shares at','premium','discount','face value','cumulative value','','','b','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:59'),(376,'The accounting ratio used to measure the average number of days for which suppliers remain unpaid is','stock turnover','creditors’ payment period','debtors collection period','return on capital employed','','','b','','wassce','2014',91,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:00'),(377,'When the purchase consideration exceeds the value of business, the difference is','profit','discount','goodwill','reserve','','','c','','wassce','2014',97,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:01'),(378,'The primary classification of government expenditure is based on','Programs','funds','activity','project','','','b','','wassce','2014',91,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:02'),(379,'An example of input device of a computer is','an optical character reader','a graph plotter','a visual display unit','printer','','','a','','wassce','2014',72,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:03'),(380,'The accounting concept which states that expenditure involving insignificant amounts should be regarded as expenses and not assets is','business entity','materiality','dual aspect','realization','','','b','','wassce','2014',109,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:04'),(381,'A company made a net profit of N2,000,000 for the year and its net profit percentage is 25%. What is the total sales   for the year?','N8,000,000','N6,000,000','N800,000','N500,000','','','a','','wassce','2014',96,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:05'),(382,'Which of the following information is recorded in the returns outwards book?','Goods purchased on credit and subsequently returned to supplier','Fixed asset bought on credit and subsequently returned to supplier','Cash payment received from a customer and subsequently returned to supplier','Goods sold to a customer and subsequently returned to the business.','','','a','','wassce','2014',97,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:06'),(383,'Calculate the stock figure to be included in the balance sheet at the year end.','D408,000','D346,000','D284,000','D62,000',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',78,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:07'),(384,'The concept applied in answering question 42 above is','matching','consistency','prudence','entity',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',76,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:13'),(385,'Subscriptions in advance is classified in the balance sheet as','an asset','a liability','a deficit','a surplus','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:15'),(386,'Which of the following items is not treated in the Profit and Loss Account?','Office expenses','Salaries and allowances','Carriage inwards','Discounts allowed','','','c','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:16'),(387,'The document prepared by a local/district government to present its annual estimates for a planning period is','a balance sheet','budget','an income and expenditure account','a cash book','','','b','','wassce','2014',81,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:17'),(388,'A manufacturing account is drawn up by','firms providing personal services','firms engaged solely in buying and selling of goods','firms which make and sell articles','non - trading organization.','','','c','','wassce','2014',88,'Admin','2016-12-14 06:44:40','2020-07-19 14:28:27'),(389,'Which of the following is not a factory overhead cost?','Manufacturing wages','Factory rent','Depreciation of machinery','Salary of factory guard','','','a','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:19'),(390,'A collection of fields relating to one logically definable unit of business information is known as','data','character','byte','record','','','d','','wassce','2014',97,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:20'),(391,'The principle of double entry book - keeping states that','every debtor must have a creditor','every account debited must be immediately credited','for every debit entry, there must be a corresponding credit entry','for every double debit, there must be a double credit.','','','c','','wassce','2014',87,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:21'),(392,'The accounting principle that is applied to check arbitrary actions on the part of accountants is','consistency','materiality','objectivity','realization','','','a','','utme','2004',114,'Admin','2016-12-15 06:52:04','2020-07-14 13:30:22'),(393,'The loss of equipment in a fire disaster results in','a decrease in current assets','an increase in liabilities and assets','a decrease in assets and capital','an increase in liabilities and a decrease in  assets.','','','c','','utme','2004',106,'Admin','2016-12-15 06:52:06','2020-07-14 13:30:23'),(394,'A source document is used for verifying the','amount due to creditors','actual cost of an asset','selling price of goods','amount due from debtors','','','c','','utme','2004',119,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:24'),(395,'The rule of accounting equation requires that account payable should be placed under','liabilities','equities','assets','capital','','','a','','utme','2004',107,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:25'),(396,'A debit in the suspense account will appear in the balance sheet as','a current asset','a current liability','capital','drawings','','','a','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:26'),(397,'The recipient whose name appears on a cheque is called a','payee','drawer','drawee','payee','','','d','','utme','2004',102,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:27'),(398,'The imprest account is subsidiary to the','ledger account','bank account','cash book','petty cash','','','d','','utme','2004',113,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:28'),(399,'The three-column cash book differs from the two-column cash book in','cash column','discount column','bank column','folio column','','','b','','utme','2004',116,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:29'),(400,'Zakari started a business on January 2000. He bought a shop costing N 54,000 and stock worth N 7,600.  Profit for the year amounted to N 22,100. His closing capital was N 73,800. Zakari’s personal drawings amounted to','N 2,300','N9,900','N 17,100','N 19,500','','','b','','utme','2004',128,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:30'),(401,'The balance on the provision for depreciation account is','added to fixed assets on the balance sheet','deducted from fixed assets on the balance sheet','deducted from the profit and loss account','added to the current liabilities of the account','','','b','','utme','2004',114,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:31'),(402,'Given: Rates paid during the year amounted to N 2,250 at N125 per month and N 1,035 was paid for electricity in the same period at N 115 per month. Determine the amount of prepaid rates','N 345','N 750','N 1,380','N 1,500','','','b','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:32'),(403,'Where closing stock is undervalued, the effect is','an increase in gross profit','a decrease in gross profit','an increase in purchases','a decrease in purchases','','','b','','utme','2004',125,'Admin','2016-12-15 06:52:07','2020-07-19 14:28:27'),(404,'At the year end, the purchases ledger showed a debit balance of N 108. The total on the debit side of the purchases ledger control account will be','N 22,966','N 22,156','N 21,834','N 21,054','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','a','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:34'),(405,'The balancing figure in the purchases ledger control account is','N 15,828','N 15,720','N 14,940','N 14,694','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','d','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:35'),(406,'In a sales ledger, contra entry is found on the','debit side of the debtors’ control account','debit side of the creditors’ control account','credit side of the debtors’ control account','credit side of the creditors’ control account','','','c','','utme','2004',102,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:36'),(407,'The beginning and ending accounts receivable balances were N 20,000 and N 30,000 respectively.The collection from customers during the period was N 70.000. What was the total sale on account?','N 20,000','N 60,000','N 80,000','N 120,000','','','b','','utme','2004',117,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:37'),(408,'Determine how much to be charged to profit and loss account.','N 606','N 786','N 791','N 856','Given: General expenses account Paid by cheque [ N671 ]; Paid by cash [N 70 ]; Accrued b/f [N 65 ] Accrued c/f [N 115 ]','','c','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:37'),(409,'In converting single entry to final account, the balancing figures on the income and expenses accounts are transferred to the','revenue and expenditure account','receipts and payments account','profit and loss appropriation account','profit and loss account','','','d','','utme','2004',126,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:38'),(410,'Determine the amount for the beginning inventory','N 20,140','N10,240','N 8,140','N 7,240','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',110,'Admin','2016-12-15 06:52:07','2020-07-19 14:28:27'),(411,'What is the figure for purchases?','N 2,400','N 2,500','N 4,200','N 5,200','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',119,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:40'),(412,'Cost classification in relation to charges is determined by the level of','raw materials','labour','activity','profitability','','','c','','utme','2004',120,'Admin','2016-12-15 06:52:07','2020-07-19 14:28:27'),(413,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N 5,000','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','c','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:42'),(414,'The market value of goods produced is','N 30,500','N 30,600','N 31,600','N 31,620','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','b','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:43'),(415,'The accumulated fund is','N 9,400','N 9,300','N 9,200','N 9,100','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:44'),(416,'In the balance sheet, the subscription in arrears will be','N 200','N 300','N 1,200','N 1,300','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:45'),(417,'Where the debit side of the income and expenditure account is higher than the credit side, the difference is','deficit','surplus','gain','loss','','','a','','utme','2004',104,'Admin','2016-12-15 06:52:07','2020-07-19 14:28:27'),(418,'In the balance sheet of a not-for-profit-making organization, subscription paid in advance is regarded as a','current asset','current liability','capital','reserve','','','b','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-07-19 14:28:27'),(419,'A rapidly growing business organization with multiple units that is interested in comparing the performances and weaknesses of each unit should adopt.','manufacturing accounts','consolidated accounts','departmental accounts','joint venture accounts','','','c','','utme','2004',129,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:54'),(420,'How are credit sales by a department treated?','the same way as normal debtors’ transactions','in a different way from normal debtors’ transactions','as an addition to the sales manager’s account','as an addition to the production manager’s account','','','a','','utme','2004',102,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:55'),(421,'Discounts granted to branch customers are treated as a debit to branch','stock account and a credit to branch debtors’ account','discount account and a credit to branch bank account','stock account and a credit to branch bank account','discount account and a credit to branch debtors’ account','','','a','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:56'),(422,'Transfers from the head office to branches are best carried out at','cost price','selling price','cost plus mark-up','market price','','','c','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:57'),(423,'On dissolution, the final distribution of cash to partners is based on','partnership agreement','Articles of Association','goodwill','capital balances.','','','d','','utme','2004',117,'Admin','2016-12-15 06:52:08','2020-07-14 13:30:58'),(424,'The balance of profit and loss account will be','N 4,000','N 2,800','N 1,500','N 300','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','a','','utme','2004',121,'Admin','2016-12-15 06:52:08','2020-07-14 13:30:59'),(425,'What is Kunle’s share of the profit?','N 600','N 300','N180','N 120','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','d','','utme','2004',111,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:00'),(426,'When a new partner is admitted to a partnership, there is a need to revalue the','capital of the business','capital and liabilities of the business','assets and capital of the business','assets and liabilities of the business','','','d','','utme','2004',133,'Admin','2016-12-15 06:52:08','2020-07-19 14:28:27'),(427,'The accounting entry to record the premium on goodwill is to debit','cash and credit old partners’ capital','goodwill and credit revaluation','assets and credit capital','capital and credit assets','','','b','','utme','2004',132,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:08'),(428,'The expenses incurred in promoting a company are','promoters’ expenses','floating expenses','preliminary expenses','the Board’s expenses','','','c','','utme','2004',133,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:09'),(429,'Debentures can be redeemed out of','existing share capital reserve','existing general reserve','proceeds from new issue of shares','withholding tax.','','','a','','utme','2004',119,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:10'),(430,'Share premium is an example of','revenue reserves','capital reserves','general reserves','loan capital','','','b','','utme','2004',128,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:11'),(431,'According to the provisions of the 1999 Constitution, all revenues generated by the Federal Government must be paid into the?','Consolidated Revenue Fund','Federation Account','Revenue Mobilization Allocation and Fiscal Commission’s Account','Equalization Fund','','','a','','utme','2004',136,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:12'),(432,'The budget statement presented to the legislature by the Chief Executive is called','an appropriation act','a budget bill','an appropriation bill','a budget proposal','','','c','','utme','2004',113,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:13'),(433,'The statement of assets and liabilities in the public sector can be described as the','income and expenditure account of government','appropriation account of government','balance sheet of government','funds flow statement of government','','','d','','utme','2004',119,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:14'),(434,'A company has departments X, Y and Z. Department X occupies a space twice that of Y while Z   occupies half the space of  Y. If the company pays N 70 000 on rent, what is the amount of rent that should be allocated to Y?','N 30,000','N 40,000','N 20,000','N 10, 000.','','','c','','utme','2007',114,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:15'),(435,'Calculate the total figure for the receipts and payments account.','N 11,410','N  13,630','N  9, 310','N  11, 530.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','d','','utme','2007',121,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:16'),(436,'Determine the opening cash balance of the club','N 3070','N 2220','N 5710','N 4320.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','b','','utme','2007',114,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:17'),(437,'Purchases of raw materials amount to N  81 000, direct labour is N  38 000 and factory overhead N  29 000. Calculate the prime cost.','N 176,000','N 170,000','N 167,000','N  156,000.','Stock at start: Raw materials [N57, 000]; Work-in-progress [42, 000]; Finished goods [71, 000 ]','','a','','utme','2007',127,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:18'),(438,'I.Profits and losses will be shared unequally II.  Interest is not allowed on capital, III. Salaries are not allowed. IV. Interest is charged on drawings. Which of  the following would apply where there is no agreement during partnership formation?','I only','I, II and III','I, II and IV','II and III.','','','c','','utme','2007',123,'Admin','2016-12-16 07:02:01','2020-07-14 13:31:19'),(439,'The value of goods sent to branch is','N 4 000','N 6000','N 8000','N 2000','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','c','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:19'),(440,'Determine the closing stock.','N 5 500','N  6500','N 2500','N 4500','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','a','','utme','2007',116,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:20'),(441,'Expenses paid during the conversion of a partnership to a \tcompany are','debited to the partners’ capital account','debited to the realization account','debited to the cash account.','credited to the realization account','','','d','','utme','2007',124,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:21'),(442,'In the trading and profit and loss account of a manufacturing organization, purchases is','always the same amount as the total factory overhead cost','given separately','equivalent to the total cost of goods manufactured','always the same as the prime cost.','','','b','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:22'),(443,'Goods worth N 50 000 were sent at different times from head office to the branch during the year. By the end of the period, only N  40 000 worth of goods had arrived at the branch. Which of the following is correct about the treatment of this transaction?','Branch should debit goods received from head office with N 50 000.','Head office should debit goods sent to branch account with N 10 000.','Head office should debit goods sent to branch account with N 50 000.','Branch should debit goods received from head office with N  10000.','','','b','','utme','2007',115,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:23'),(444,'An accounting ratio that considers only quick assets to determine the short-term safety margin of a firm is the','fixed assets ratio','capital gearing ratio','current assets ratio','acid test ratio.','','','d','','utme','2007',113,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:24'),(445,'What would be the total amount received on second call?','N 240, 000','N 280 ,000','N 40,000','N 56,000.','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','c','','utme','2007',120,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:25'),(446,'The total amount of money received on application was','N  5600,00','N  220,000','N  800, 000','N  1 000 000','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','a','','utme','2007',124,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:46'),(447,'Determine the working capital.','N 7,38,0000','N 8,48,0000','N  5 480 000','N  6 480 000.','Shaku Company Ltd: Stock [N 3,600, 000]; Cash at hand [N800, 000]; Cash in bank [2,400, 000]; Debtors [ 580, 000]; Trade creditors [N 920, 000 ]; \tBank overdraft [ N200, 000 ]; Tax liabilities [N600, 000]; Salary owed to staff {N 180, 000]','','c','','utme','2007',115,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:47'),(448,'The receipts and payments account of a not-for-profit-making organization plays a similar role in a profit-making organization as','a cash account','a balance sheet','an income account','an expenses account','','','b','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:48'),(449,'Osei and Yabo were in partnership sharing profits and losses in the ratio of 3:2. On admitting Takwa, the profit and loss sharing ratio was changed to 1:1:1  Suppose Takwa paid N  30 000 for goodwill this amount would be','credited to Takwa’s current account','debited to goodwill account','shared to all the partners’ capital account','credited to the old partners’ capital account.','','','b','','utme','2007',132,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:49'),(450,'The amount of subscriptions accrued is reported in the balance sheet under','fixed asset','long-term liability','current asset','current liability.','','','d','','utme','2007',123,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:50'),(451,'The lighting charge to be apportioned to Zema is','N 891','N 819','N 927','N 975','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','b','','utme','2007',122,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:51'),(452,'Find the salary charged to Zera product.','N 1 854','N 1 845','N 1 062','N 1 134.','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','c','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:51'),(453,'The gross profit disclosed in the branch stock adjustment account represents','head office profit','unrealized profit','estimated profit','branch profit','','','d','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:52'),(454,'Partners’ share of profit is credited to','a partner’s current account','a partner’s capital account','the profit and loss account','the profit and loss appropriation account','','','a','','utme','2007',125,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:53'),(455,'A pension granted to any past president or vice-president shall be charged to the','consolidated revenue fund','special pension fund','contingency fund','development fund.','','','b','','utme','2007',125,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:03'),(456,'The federal government approved  N 140 m to local governments W, X, Y and Z. The amount is to be shared on the basis of 40% equality. 35% population and 25% internal revenue generation. Calculate the share of local government W on equality.','N 35 m','N 14 m .','N 56 m','N 28 m.','','','c','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:04'),(457,'Stock valuation is useful because it informs the sales department on the','prices of the competing goods','prices that will affect profitability','number of goods to produce','number of goods to sell.','','','b','','utme','2007',109,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:05'),(458,'Using the straight-line method, the depreciation of the asset in \tthe first year was','N  210 m','N 343m','N 105m','N 270m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','c','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:06'),(459,'What was the asset value at the beginning of the third year?','N 63 m','N 133 m','N 36m','N 28 m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','d','','utme','2007',132,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:07'),(460,'The drawings for the period stand at','N  2 750','N  3 750','N  2 500','N 2 570.','Given: Opening capital [N7, 000 ]; Additional capital [N3, 500 ]; Net profit [N2 500 ]; Closing capital [N10, 250]','','a','','utme','2007',118,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:08'),(461,'I.    Facilitating the preparation of final accounts II.   Making the existence of error easy to detect III. Checking the accuracy of postings periodically. From the above, which of the following are among the uses of control accounts?','I, II and III','I and III','II and III','I and II.','','','c','','utme','2007',137,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:09'),(462,'Determine the amount provided for discount allowed on debtors.','N 1 000','N 3000','N 900','N1500.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',129,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:10'),(463,'The provision for bad debt is','N2 000','N 800','N3 000','N1 900.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:11'),(464,'The amount to be charged to the profit and loss account is','N 30,000','N25,000','N 5 ,000','N20,000.','Given: Prepaid b/f [N10, 000 ]; Cash paid during the year  [N20, 000]; Prepaid c/f [N5, 000] ','','b','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-07-14 13:32:12'),(465,'The purchases ledger control account showed a credit balance of N 525 000 on April 30, 2006. This amount shows','what the debtors of a business enterprise owed the business','the total amount which each debtor owed the business','what a business enterprise owed its creditors','the total amount which a business enterprise owed each creditor.','','','c','','utme','2007',120,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:12'),(466,'Find the value of the total assets?','N 17 700','N 10,500','N 20,000','N 15,400.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','d','','utme','2007',131,'Admin','2016-12-16 07:02:03','2020-07-19 14:28:27'),(467,'What will be the equity of the business?','N 12,800','N 4,900','N 8,200','N 9,500.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','c','','utme','2007',117,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:14'),(468,'Journal proper is used in recording','transactions that are not regular','returns from customers','credit sales','the receipt and payment of  money','','','a','','utme','2007',132,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:15'),(469,'The process whereby a cheque received by one person is given to another for payment is known as','cheque crossing','payment in cheque','cheque transfer','cheque endorsement.','','','c','','utme','2007',125,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:16'),(470,'Calculate the balance in the bank statement','N 10 740','N11 860','N 17 500','N16,380.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','c','','utme','2007',117,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:17'),(471,'What is the adjusted cash book balance?','N 14,680','N 15,560','N 16,440','N17,000.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','a','','utme','2007',122,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:18'),(472,'The fourth stage of the accounting information system is','recording','interpreting','summarizing','classifying.','','','c','','utme','2007',120,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:19'),(473,'How much is sundry expenses?','N 2 700','N 2,250','N1,550','N2000.','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','a','','utme','2007',111,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:20'),(474,'The total of the trial balance is','N 6 600','N 6 650','N 5 600','N 5 900','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','b','','utme','2007',116,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:21'),(475,'If Mr. Ajasin paid his creditors N 5 000 out of N 20 000 owed, what would be the effect of this transaction on the accounting equation?','A decrease .in the total liabilities and assets by N5 000.','An increase in total liabilities and owners’ equity by N15 000.','An increase in the total assets by N15 000','A decrease in owners’ equity by N 5 000.','','','a','','utme','2007',131,'Admin','2016-12-16 07:02:03','2020-07-19 14:28:27'),(476,'Which of the following branches of accounting was first developed?','Cost accounting','Financial accounting','Management accounting','Petroleum accounting','','','b','','utme','2009',113,'Admin','2016-12-16 21:08:06','2020-07-14 13:32:23'),(477,'The accounting convention which states that the performance of a business should be determined by matching all expenses against all revenues is','accruals','materiality','objectivity','periodicity','','','a','','utme','2009',116,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:24'),(478,'The process of bookkeeping includes records produced from','ledgers','source documents','minutes of meeting','intuitive reasoning','','','b','','utme','2009',122,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:24'),(479,'Musa, a prepaid customer of XYZ and KLM, bought  N1500 recharge card from XYZ and  N2000 recharge card from KLM for business calls. The entry to record these transaction is debit','telephone  N 3,500, credit XYZ and KLM  N 3,500','telephone N 3,500. credit cash  N 3,500','sundries N 3,500, credit KLM  N 3,500','sundries  N 3.500, credit telephone  N3,500','','','a','','utme','2009',123,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:25'),(480,'What is the total debit for the trial balance?','N  4 690 000','N 2 620 000','N  2 520 000','N 1 565 000','Given: Capital [N 2, 375, 000 ]; Debtors [N 495, 000 ]; Motor vehicles [N 870, 000 ]; Creditors [N 245,000 ]; Prepayments [N 500, 000 ]; Bills receivable [N 505, 000 ]; Furniture [N 150, 000 ]','','c','','utme','2009',111,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:26'),(481,'If Odukoya takes money out of the business bank account for his own private use, the effect of the transaction is','increase in assets and increase in capital','increase in assets and decrease in capital','decrease in capital and increase in assets','decrease in capital and decrease in assets.','','','d','','utme','2009',116,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:27'),(482,'What are the current liabilities?','I and II','IV and V','Ill and V','II and IV','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','b','','utme','2009',105,'Admin','2016-12-16 21:08:07','2020-07-14 13:32:28'),(483,'Find the fixed assets','I, II and V','I, II and IV','I, II and III','Ill, IV and V','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','c','','utme','2009',129,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:35'),(484,'Cash discount is often recorded on','the debit side of the cash book','the credit side of the cash book','the folio column of the cash book','both credit and debit side of the cash book','','','d','','utme','2009',100,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:54'),(485,'The standing order is a payment instruction given by a','customer to the bank','bank to the customers','bank to an employee','customer to a fellow customer','','','a','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:55'),(486,'Which of the following should not be added or subtracted from the bank statement balance to determine the adjusted cash balance?','Error by the bank','Under casting of the cash book','Overcasting of the cash book','Bank service charges','','','a','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:56'),(487,'Calculate the balance as per bank statement at the end of the year','24,700','25,200','26,200','27,700','Given: Balance as per cash book [N20,000 ]; Unpresented cheques [N 5,200 ]; Direct credit to the bank [\t  N 1,000 ]; \tDirect debit from the bank [N 1,000 ]; Credit in the cash book [N 500 ]','','a','','utme','2009',126,'Admin','2016-12-16 21:08:08','2020-07-19 14:28:27'),(488,'Determine the capital of the business','N 9,400','N 6,000','N 3,400','N 3,000','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','d','','utme','2009',128,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:57'),(489,'What is the net working capital?','N 2,600','N1,800','N 800','N 600','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','c','','utme','2009',131,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:58'),(490,'Which of the following items are current assets?','Stock, bills receivable, cash and debtors','Stock, bills payable, cash and debtors','Stock, bad debt, bills receivable and cash','Stock, work-in-progress, cash and bills payable.','','','a','','utme','2009',118,'Admin','2016-12-16 21:08:08','2020-07-19 14:28:27'),(491,'Using FIFO method, what is the value of the closing stock?','N 34,000','N 29,000','N 17,000','N 12,000','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','c','','utme','2009',111,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:00'),(492,'What is the value of closing stock using simple average?','N 11,500','N 17,000','N 17,500','N 28,500','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','d','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:01'),(493,'Which of the following methods gives a conservative closing stock value during a period of rising prices?','LIFO','FIFO','Simple average','Periodic simple average','','','a','','utme','2009',105,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:02'),(494,'Apart from the common control accounts, a control account can also be opened for','sales account','purchases account','cash account','wages account','','','c','','utme','2009',108,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:03'),(495,'Which of the following is a debit item in the purchases ledger control account?','Balance b/d','Cheque dishonoured','Purchases','Balance c/d','','','d','','utme','2009',118,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:04'),(496,'Which of the following is an item in the debit side of the sales ledger control account?','Interest charged by suppliers','Bills receivable honoured','Transfer of credit balances from credit control account','Transfer of debit balances from creditors control account','','','a','','utme','2009',108,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:05'),(497,'The costs incurred by departments that support the production department with such activities as maintenance, production control and storage are called','autonomous costs','service costs','supporting costs','subsidiary costs','','','b','','utme','2009',107,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:17'),(498,'Determine the gross profit','N 49,000','N 48,000','N 31,000','N30,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',127,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:18'),(499,'What is the net profit?','N  46,000','N 45,000','N  28,000','N  27,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:19'),(500,'Receipts and payments account is a summary of the','budget','trading account','cash book','profit and loss account','','','c','','utme','2009',124,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:20'),(501,'What is the accumulated fund?','23,700','27,750','29,650','51,650','Given: Furniture and fittings [N 20,000]  Equipment [N15,000] Bank overdrafts [ N6,500] Bar creditors [ N4,800 ] Subscription in arrears [ N4,700 ] Subscription in advance [ N650]','','b','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:21'),(502,'I.  Space occupied by each department    II. Average value of stock held by each department III. \tDepartmental turnover  IV. Number of articles sold by each department. From the information given, the two most logical bases for apportioning expenses that are common to departments are','I and II','I and III','II and III','Ill and IV','','','b','','utme','2009',113,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:22'),(503,'One of the purposes of maintaining the account of a branch at the head office is to','record charges in shareholdings','record charges in liabilities','check the excesses of customers','check the excesses of members of staff.','','','d','','utme','2009',125,'Admin','2016-12-16 21:08:08','2020-07-19 14:28:27'),(504,'Which of the following is a common cause of a discrepancy between head office and branch trial balance?','Debtors and cash in transit','Creditors and cash in transit','Stock and cash in transit','Stock and prepayments','','','a','','utme','2009',119,'Admin','2016-12-16 21:08:08','2020-07-19 14:28:27'),(505,'Sule and Ahmad are in partnership sharing profits and losses equally. If  Khadija is admitted as a new partner to take 1/5 th as her share, what is the new profit or loss sharing ratio?','Sule1/3 , Ahmad 1/3 and Khadija 1/3','Sule1/5, Ahmad 1/5 and Khadija 3/5','Sule2/5,  Ahmad2/5 and Khadija 1/5','Sule ,2/5, Ahmad and 1/5 Khadija 2/5','','','c','','utme','2009',135,'Admin','2016-12-16 21:08:08','2020-07-19 14:28:27'),(506,'In partnership account, conversion of non-cash assets into cash \t\tis referred to as','realization','disposal','dissolution','revaluation','','','c','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:31'),(507,'The share premium account would be','credited with application and allotment  N 187,500','debited with application and allotment  N 375,000','credited with application and allotment  N 375,000','debited with application and allotment  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','c','','utme','2009',110,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:32'),(508,'The second and final call account was debited with','ordinary share capital account  N 187,500','12% preference share capital  N  375,000','bank account  N 187,500','12% preference share capital account  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','d','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:33'),(509,'Provision for bad and doubtful debts in companies final accounts is treated in','trading account','profit and loss account','fund flow statement','cash flow statement','','','b','','utme','2009',111,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:34'),(510,'The book value per share is obtained by dividing','shareholders equity by outstanding shares','total assets by outstanding shares','gross profit by outstanding shares','net profit by outstanding shares','','','a','','utme','2009',126,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:35'),(511,'Expenditure incurred on consumables and goods for resale is','revenue expenditure','capital expenditure','sunk cost','miscellaneous expenses','','','a','','utme','2009',141,'Admin','2016-12-16 21:08:08','2020-07-14 02:26:47'),(512,'Replacement and renewal of fixed assets are','revenue receipt','capital receipt','capital expenditure','revenue expenditure','','','c','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-14 02:28:17'),(513,'Which of the following is credited to the consolidated revenue fund?','Recurrent expenditure','Capital expenditure','Transfers to revenue fund','Internal revenue','','','c','','utme','2009',115,'Admin','2016-12-16 21:08:09','2020-07-14 01:50:57'),(514,'One of the reasons for the existence of the public sector is to','take adequate care of the needy','supplement the commercial sector','provide cheap services to all citizens','correct perceived inequalities.','','','c','','utme','2009',120,'Admin','2016-12-16 21:08:09','2020-07-14 02:14:16');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `api_call_ip_address` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `ipAddress` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `requestCount` int(11) NOT NULL DEFAULT '1',\n  `countryName` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `countryCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `cityName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `zipCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `latitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `longitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=10624 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `api_call_ip_address` VALUES (1,'chemistry','41.204.237.6',55,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:16:31','2019-10-11 19:53:51'),(2,'english','41.204.237.6',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-22 17:05:06'),(3,'physics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(4,'government','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(5,'irk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(6,'civiledu','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(7,'currentaffairs','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(8,'economics','197.255.171.219',494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:28:05','2018-11-16 16:14:04'),(9,'english','197.255.171.219',622,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 16:17:59','2018-11-16 17:04:20'),(10,'english','105.112.40.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 20:56:48','2018-11-16 20:56:48'),(11,'chemistry','66.249.66.146',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 02:15:11','2019-01-20 17:41:49'),(12,'chemistry','105.112.27.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 18:01:33','2018-11-17 18:01:33'),(13,'chemistry','105.112.34.182',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 19:42:35','2018-11-17 19:48:36'),(14,'english','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:11:14','2018-11-18 07:11:16'),(15,'mathematics','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:23:49','2018-11-18 07:23:58'),(16,'english','35.187.100.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:08:37','2018-11-18 15:08:37'),(17,'english','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(18,'biology','54.157.207.237',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:22:23'),(19,'physics','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(20,'chemistry','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(21,'englishlit','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(22,'currentaffairs','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(23,'history','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(24,'mathematics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(25,'commerce','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(26,'biology','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:10'),(27,'physics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(28,'englishlit','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(29,'government','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(30,'economics','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:59:54'),(31,'chemistry','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(32,'crk','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(33,'irk','54.242.159.164',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:01:08'),(34,'insurance','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(35,'currentaffairs','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(36,'history','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(37,'english','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:10','2018-11-18 16:00:23'),(38,'civiledu','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:23','2018-11-18 16:00:23'),(39,'chemistry','38.132.114.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:11:29','2018-11-18 16:11:29'),(40,'biology','154.118.73.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:26:38','2018-11-19 07:42:11'),(41,'mathematics','154.118.73.218',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:57:21','2018-11-19 08:27:22'),(42,'biology','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(43,'physics','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(44,'englishlit','54.226.211.137',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:04'),(45,'crk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(46,'geography','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(47,'civiledu','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(48,'currentaffairs','54.226.211.137',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:12'),(49,'chemistry','105.112.34.116',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 11:42:43','2018-11-19 12:07:25'),(50,'biology','105.112.34.116',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 12:03:49','2018-11-19 12:04:31'),(51,'chemistry','105.112.32.113',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 15:15:17','2018-11-19 15:15:17'),(52,'chemistry','105.112.38.168',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:39:07','2018-11-19 16:39:53'),(53,'chemistry','105.112.33.204',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:41:17','2018-11-19 17:08:45'),(54,'chemistry','105.112.34.113',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 17:16:16','2018-11-19 17:50:41'),(55,'chemistry','105.112.39.125',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 18:09:49','2018-11-19 18:10:22'),(56,'commerce','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(57,'accounting','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(58,'biology','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(59,'physics','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(60,'geography','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(61,'civiledu','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(62,'currentaffairs','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(63,'mathematics','154.120.115.82',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 09:18:07','2018-11-20 09:18:27'),(64,'accounting','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(65,'chemistry','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(66,'government','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(67,'crk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(68,'geography','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(69,'irk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(70,'currentaffairs','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(71,'chemistry','197.210.55.232',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:36:42','2018-11-21 16:04:23'),(72,'chemistry','197.210.55.152',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:51:48','2018-11-21 16:04:07'),(73,'mathematics','197.210.55.232',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:25','2018-11-21 16:04:26'),(74,'english','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(75,'mathematics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(76,'commerce','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(77,'geography','54.235.56.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(78,'economics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(79,'civiledu','54.235.56.218',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(80,'insurance','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(81,'mathematics','197.210.55.49',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:06:37','2018-11-21 16:12:12'),(82,'accounting','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(83,'physics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(84,'government','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(85,'crk','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(86,'history','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(87,'mathematics','197.210.53.227',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:39:55','2018-11-21 18:46:03'),(88,'mathematics','197.210.53.213',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:41:49','2018-11-21 18:50:09'),(89,'mathematics','197.210.53.241',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:50:32','2018-11-21 18:50:33'),(90,'physics','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(91,'englishlit','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(92,'government','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(93,'geography','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(94,'irk','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(95,'civiledu','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(96,'history','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:34'),(97,'mathematics','105.112.39.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:03:34','2018-11-21 20:03:35'),(98,'chemistry','105.112.39.146',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:35:42','2018-11-21 21:02:43'),(99,'biology','197.210.29.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:41:34','2018-11-21 20:41:35'),(100,'commerce','41.203.72.24',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 08:31:50','2018-11-22 08:31:54'),(101,'biology','154.118.57.75',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:21:36','2018-11-22 09:21:42'),(102,'english','154.118.57.75',430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:32:20','2018-11-22 09:48:24'),(103,'mathematics','154.118.57.75',138,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:34:54','2018-11-22 09:48:24'),(104,'commerce','154.118.57.75',67,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:36:29','2018-11-22 09:37:01'),(105,'mathematics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(106,'biology','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(107,'physics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(108,'chemistry','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(109,'geography','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(110,'economics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(111,'irk','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(112,'crk','105.112.32.158',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:17:53','2018-11-22 12:19:16'),(113,'crk','105.112.26.27',714,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:39:40','2018-11-22 12:50:37'),(114,'geography','105.112.26.27',333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:51:29','2018-11-22 12:56:58'),(115,'irk','105.112.26.27',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:56:49','2018-11-22 12:56:57'),(116,'mathematics','197.210.52.148',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:57','2018-11-22 20:15:32'),(117,'mathematics','197.210.53.170',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:41'),(118,'mathematics','197.210.53.74',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:25'),(119,'commerce','197.210.53.170',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:42','2018-11-22 20:14:59'),(120,'commerce','197.210.52.148',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-22 20:14:57','2020-02-06 09:18:23'),(121,'commerce','197.210.53.74',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:58','2018-11-22 20:15:00'),(122,'accounting','197.210.53.170',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:17'),(123,'accounting','197.210.53.74',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:31'),(124,'accounting','197.210.52.148',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:02','2018-11-22 20:15:34'),(125,'chemistry','45.222.98.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 08:18:28','2018-11-23 08:29:56'),(126,'crk','105.112.46.53',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 09:29:55','2018-11-23 10:34:53'),(127,'chemistry','105.112.46.53',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 13:13:27','2018-11-23 13:56:23'),(128,'chemistry','105.112.45.132',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:12:24','2018-11-23 16:12:25'),(129,'chemistry','105.112.42.3',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:18:35','2018-11-23 17:30:48'),(130,'accounting','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(131,'biology','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(132,'physics','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(133,'irk','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(134,'civiledu','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(135,'currentaffairs','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(136,'history','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(137,'chemistry','122.172.127.49',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:22:39','2018-11-23 18:25:03'),(138,'physics','122.172.127.49',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:25:06','2018-11-23 18:25:21'),(139,'chemistry','105.112.41.195',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 19:35:37','2019-03-06 06:04:52'),(140,'chemistry','105.112.29.74',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 20:03:18','2018-11-23 22:58:38'),(141,'chemistry','105.112.40.253',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 09:25:34','2018-11-24 09:25:34'),(142,'english','41.203.72.10',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:16:56','2018-11-24 13:19:08'),(143,'accounting','41.203.72.10',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:21:12','2018-11-27 06:00:10'),(144,'english','105.112.44.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 14:40:08','2018-11-24 14:40:08'),(145,'chemistry','105.112.43.82',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 19:55:21','2018-11-24 20:10:56'),(146,'chemistry','105.112.46.85',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 20:28:29','2018-11-28 09:54:04'),(147,'chemistry','105.112.41.167',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:10:36','2018-11-24 21:25:21'),(148,'chemistry','105.112.40.197',880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:57:55','2018-11-24 22:40:30'),(149,'english','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(150,'physics','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(151,'englishlit','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(152,'crk','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(153,'geography','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(154,'civiledu','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(155,'insurance','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(156,'chemistry','105.112.44.13',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 08:45:46','2018-11-25 09:31:13'),(157,'chemistry','105.112.41.148',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 09:44:43','2018-11-25 10:48:33'),(158,'chemistry','66.102.8.72',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:23:12','2018-11-25 10:23:13'),(159,'chemistry','108.177.7.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:28:48','2018-11-25 10:28:49'),(160,'chemistry','108.177.6.56',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:36','2018-11-25 10:29:54'),(161,'chemistry','108.177.6.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:41','2018-11-25 10:29:42'),(162,'chemistry','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:50','2018-11-25 10:29:51'),(163,'civiledu','108.177.6.53',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:53','2018-11-25 10:29:54'),(164,'commerce','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:56','2018-11-25 10:29:57'),(165,'crk','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:58','2018-11-25 10:29:58'),(166,'chemistry','108.177.6.58',200,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-25 10:30:05','2019-09-12 00:12:04'),(167,'insurance','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:10','2018-11-25 10:30:11'),(168,'history','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:12','2018-11-25 10:30:12'),(169,'geography','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:15','2018-11-25 10:30:15'),(170,'geography','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:18','2018-11-25 10:30:19'),(171,'commerce','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:19','2018-11-25 10:30:20'),(172,'englishlit','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:20'),(173,'crk','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:21'),(174,'geography','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:21','2018-11-25 10:30:21'),(175,'civiledu','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:22','2018-11-25 10:30:23'),(176,'civiledu','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:24','2018-11-25 10:30:24'),(177,'insurance','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:25','2018-11-25 10:30:25'),(178,'englishlit','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:27','2018-11-25 10:30:27'),(179,'commerce','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:29','2018-11-25 10:30:29'),(180,'history','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:35','2018-11-25 10:30:35'),(181,'insurance','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:37','2018-11-25 10:30:37'),(182,'currentaffairs','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:42','2018-11-25 10:30:42'),(183,'chemistry','108.177.7.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:45','2018-11-25 10:31:04'),(184,'history','108.177.7.81',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:11','2018-11-25 10:31:39'),(185,'english','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:43','2018-11-25 10:31:43'),(186,'economics','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:47','2018-11-25 10:31:48'),(187,'mathematics','108.177.7.81',60,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:52','2019-09-11 16:49:44'),(188,'englishlit','108.177.7.81',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:32:37'),(189,'chemistry','66.249.88.76',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:31:59'),(190,'crk','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:10','2018-11-25 10:32:10'),(191,'insurance','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:14','2018-11-25 10:32:14'),(192,'civiledu','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:17','2018-11-25 10:32:18'),(193,'geography','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:21','2018-11-25 10:32:22'),(194,'chemistry','104.133.10.99',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:47:20','2018-11-25 10:48:39'),(195,'chemistry','105.112.46.101',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:07:44','2018-11-25 12:07:44'),(196,'chemistry','105.112.33.216',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:33:34','2018-11-25 12:56:01'),(197,'currentaffairs','105.112.33.216',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:56:40','2018-11-25 13:10:15'),(198,'economics','105.112.33.216',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:10:36','2018-11-25 13:16:55'),(199,'chemistry','105.112.40.40',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:15:46','2018-11-25 13:19:21'),(200,'chemistry','105.112.42.88',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:21:39','2018-11-25 13:21:39'),(201,'chemistry','105.112.41.248',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:01:24','2018-11-25 17:01:24'),(202,'english','105.112.41.248',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:04:33','2018-11-25 17:13:28'),(203,'english','105.112.41.0',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:18:30','2018-11-25 17:55:36'),(204,'english','197.210.53.141',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 19:58:43','2018-11-25 20:00:07'),(205,'english','197.210.52.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:07','2018-11-25 20:00:41'),(206,'english','197.210.53.23',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:21','2018-11-25 20:00:55'),(207,'english','105.112.43.127',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:19:59','2018-11-25 20:20:01'),(208,'english','197.211.63.176',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:00:14','2018-11-26 05:00:51'),(209,'commerce','197.211.63.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:10','2018-11-26 05:01:10'),(210,'mathematics','197.211.63.176',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:21','2018-11-26 10:14:10'),(211,'biology','105.112.42.191',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:08','2018-11-26 09:33:08'),(212,'accounting','105.112.42.191',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:09','2018-11-26 09:33:12'),(213,'english','41.76.197.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:38','2018-11-26 10:12:41'),(214,'currentaffairs','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:50','2018-11-26 10:12:50'),(215,'government','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:54','2018-11-26 10:12:54'),(216,'civiledu','41.76.197.2',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:58','2018-11-26 10:13:05'),(217,'englishlit','41.76.197.2',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:13:14','2018-11-27 16:00:52'),(218,'english','129.56.76.55',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:51:31','2018-11-26 10:52:34'),(219,'mathematics','129.56.76.55',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:52:19','2018-11-26 10:52:28'),(220,'english','197.210.227.200',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 11:27:18','2018-11-26 11:27:18'),(221,'english','105.112.28.18',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:05:44','2018-11-26 13:06:45'),(222,'physics','105.112.28.18',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:07:06','2018-11-26 13:34:17'),(223,'physics','105.112.21.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:05:04','2018-11-26 16:05:04'),(224,'english','197.210.63.52',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:11:53','2018-11-26 16:11:56'),(225,'english','197.211.61.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:28:59','2018-11-26 16:28:59'),(226,'currentaffairs','197.211.61.82',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:29:23','2018-11-28 11:57:35'),(227,'chemistry','77.88.47.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 22:02:53','2019-04-15 13:33:36'),(228,'mathematics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(229,'chemistry','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(230,'government','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(231,'economics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(232,'civiledu','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(233,'currentaffairs','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(234,'history','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(235,'commerce','41.203.72.10',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 05:53:52','2018-11-27 06:00:02'),(236,'physics','41.203.72.10',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:00:04','2018-11-27 06:01:08'),(237,'english','41.190.30.106',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:14:24','2018-11-27 06:21:01'),(238,'civiledu','41.190.30.106',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:21:10','2018-11-27 06:21:10'),(239,'civiledu','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:03','2018-11-27 06:38:04'),(240,'english','41.190.2.145',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:07','2018-11-27 06:39:15'),(241,'mathematics','41.190.2.145',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:09','2018-11-27 06:38:26'),(242,'insurance','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:14','2018-11-27 06:38:14'),(243,'chemistry','41.190.2.145',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:27','2018-11-27 06:38:37'),(244,'chemistry','105.112.27.114',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:39:39','2018-11-27 06:41:07'),(245,'englishlit','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(246,'government','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(247,'crk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(248,'geography','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(249,'irk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(250,'insurance','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(251,'history','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(252,'physics','105.112.28.250',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 08:14:13','2018-11-27 08:14:48'),(253,'english','197.211.61.80',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:09','2018-11-27 13:40:37'),(254,'mathematics','197.211.61.80',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:21','2018-11-27 13:38:36'),(255,'english','197.210.226.36',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:47:29','2018-11-27 13:47:32'),(256,'english','197.210.29.222',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:18:13','2018-11-27 14:20:00'),(257,'commerce','197.210.29.222',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:20:17','2018-11-27 14:20:22'),(258,'english','105.112.120.89',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:34:35','2018-11-27 14:37:02'),(259,'crk','105.112.120.89',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:38:57','2018-11-27 14:40:34'),(260,'mathematics','129.205.114.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:17','2018-11-27 14:40:17'),(261,'english','129.205.114.24',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:21','2018-11-27 14:41:29'),(262,'chemistry','129.205.114.24',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:42:02','2018-11-27 14:42:57'),(263,'physics','129.205.114.24',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:43:24','2018-11-27 14:44:50'),(264,'english','129.56.65.7',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:45:40','2018-11-27 16:45:49'),(265,'biology','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:46:22','2018-11-27 16:49:06'),(266,'accounting','129.56.65.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:26','2018-11-27 16:49:26'),(267,'geography','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:40','2018-11-27 16:59:23'),(268,'physics','105.112.26.254',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 17:27:44','2018-11-27 17:27:56'),(269,'english','129.56.60.65',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 18:02:16','2018-11-27 18:02:18'),(270,'english','105.112.34.100',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 19:45:56','2018-11-27 19:46:05'),(271,'chemistry','105.112.46.246',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:12:41','2018-11-27 20:12:45'),(272,'mathematics','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:30','2018-11-27 20:13:30'),(273,'currentaffairs','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:37','2018-11-27 20:13:38'),(274,'chemistry','5.102.173.71',20,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-28 03:23:29','2020-04-23 13:10:36'),(275,'english','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(276,'mathematics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(277,'accounting','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(278,'biology','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(279,'physics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(280,'economics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(281,'insurance','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(282,'english','197.210.29.201',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:58:56','2018-11-28 06:59:01'),(283,'currentaffairs','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:28','2018-11-28 07:00:28'),(284,'mathematics','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:50','2018-11-28 07:00:50'),(285,'currentaffairs','197.210.226.232',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:01:32','2018-11-28 07:02:24'),(286,'mathematics','105.112.68.162',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:39:34','2018-11-28 07:40:17'),(287,'english','129.56.51.37',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:53:25','2018-11-28 09:57:29'),(288,'englishlit','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:54:29','2018-11-28 17:19:35'),(289,'mathematics','129.56.51.37',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:57:49','2018-11-28 09:57:52'),(290,'chemistry','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:36:59','2018-11-28 13:36:59'),(291,'english','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:50:26','2018-11-28 13:50:26'),(292,'mathematics','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:51:25','2018-11-28 13:51:25'),(293,'geography','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:52:11','2018-11-28 13:52:11'),(294,'accounting','105.112.42.193',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 14:17:01','2018-11-28 14:17:30'),(295,'english','105.112.46.85',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:11','2018-11-28 17:19:16'),(296,'history','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:55','2018-11-28 17:20:33'),(297,'english','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:31','2018-11-28 17:48:31'),(298,'mathematics','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:35','2018-11-28 17:48:40'),(299,'chemistry','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:49:26','2018-11-28 17:50:45'),(300,'biology','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:50:12','2018-11-28 17:50:16'),(301,'accounting','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:52:59','2018-11-28 17:52:59'),(302,'history','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:53:04','2018-11-28 17:53:09'),(303,'physics','105.112.26.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 02:32:12','2018-11-29 02:33:14'),(304,'english','105.112.3.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:04:28','2018-11-29 05:07:31'),(305,'english','197.210.226.122',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:31:51','2018-11-29 05:33:21'),(306,'english','197.210.226.203',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:33:22','2018-11-29 05:37:32'),(307,'mathematics','197.210.226.122',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:38:12','2018-11-29 05:38:14'),(308,'english','102.163.30.124',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:45:54','2018-11-29 07:47:50'),(309,'accounting','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(310,'commerce','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(311,'biology','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(312,'physics','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(313,'chemistry','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(314,'englishlit','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(315,'geography','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(316,'crk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(317,'currentaffairs','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(318,'history','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(319,'irk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(320,'insurance','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(321,'chemistry','105.112.68.243',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 11:06:07','2018-11-29 11:06:07'),(322,'chemistry','197.149.95.62',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:08:23','2018-11-29 13:08:50'),(323,'english','197.211.60.94',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:18:57','2018-11-29 13:19:11'),(324,'english','129.56.159.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:43','2018-11-30 05:15:43'),(325,'mathematics','129.56.159.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:54','2018-11-30 05:15:55'),(326,'english','129.56.190.68',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 14:03:21','2018-11-30 14:03:21'),(327,'commerce','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(328,'physics','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(329,'chemistry','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(330,'englishlit','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(331,'government','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(332,'currentaffairs','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(333,'history','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(334,'mathematics','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(335,'crk','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(336,'geography','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(337,'history','105.112.47.245',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 19:21:33','2018-11-30 19:21:33'),(338,'english','105.112.46.230',2160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 21:59:34','2018-12-01 00:55:45'),(339,'commerce','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(340,'biology','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(341,'englishlit','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(342,'government','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(343,'civiledu','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(344,'insurance','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(345,'history','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(346,'english','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(347,'accounting','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(348,'physics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(349,'geography','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(350,'economics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(351,'english','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:57:37','2018-12-01 00:57:45'),(352,'physics','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:08','2018-12-01 00:58:11'),(353,'englishlit','105.112.68.163',840,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:33','2018-12-01 01:55:58'),(354,'english','101.206.169.22',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:48:58','2018-12-01 03:50:48'),(355,'geography','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:15','2018-12-01 03:49:15'),(356,'history','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:20','2018-12-01 03:49:20'),(357,'economics','101.206.169.22',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:50:52','2018-12-01 03:50:57'),(358,'physics','101.206.169.22',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:51:11','2018-12-01 03:51:31'),(359,'physics','105.112.21.158',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:34:50','2018-12-01 09:35:53'),(360,'biology','105.112.21.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:39:19','2018-12-01 09:39:19'),(361,'economics','105.112.32.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 14:44:33','2018-12-01 14:48:45'),(362,'english','192.241.239.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:43:19','2018-12-01 19:43:34'),(363,'economics','192.241.239.137',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:45:45','2018-12-01 19:45:48'),(364,'crk','41.90.4.17',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:39:33','2018-12-02 16:39:35'),(365,'english','105.112.68.194',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:46:19','2018-12-02 16:46:49'),(366,'englishlit','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:48:58','2018-12-02 16:48:58'),(367,'government','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:50:02','2018-12-02 16:50:02'),(368,'mathematics','105.112.35.216',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 20:03:41','2018-12-02 20:05:19'),(369,'mathematics','197.210.44.169',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 07:17:58','2018-12-03 07:17:58'),(370,'english','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:44:57','2019-01-01 08:57:25'),(371,'physics','66.249.66.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:47:01','2018-12-11 00:12:59'),(372,'commerce','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:52:28','2018-12-10 06:37:01'),(373,'mathematics','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:53:01','2019-01-01 09:08:53'),(374,'english','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(375,'mathematics','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(376,'accounting','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(377,'crk','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(378,'geography','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(379,'civiledu','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(380,'insurance','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(381,'english','197.210.55.187',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:21:56','2018-12-04 05:22:40'),(382,'english','197.210.55.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:22:22','2018-12-04 05:23:48'),(383,'english','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:46','2018-12-04 05:23:46'),(384,'economics','197.210.55.77',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:50','2018-12-04 05:23:55'),(385,'government','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:19','2018-12-04 05:24:19'),(386,'currentaffairs','197.210.55.77',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:20','2018-12-04 05:27:52'),(387,'biology','41.203.72.24',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 08:44:56','2018-12-04 08:45:38'),(388,'physics','129.18.144.249',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:37:18','2018-12-04 11:37:48'),(389,'mathematics','129.18.144.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:38:26','2018-12-04 11:38:26'),(390,'chemistry','129.18.144.249',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:39:19','2018-12-04 12:05:27'),(391,'chemistry','41.58.182.193',441,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:28:25','2019-02-18 09:48:30'),(392,'biology','41.58.182.193',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:59:24','2019-01-14 13:14:55'),(393,'accounting','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(394,'mathematics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(395,'crk','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(396,'commerce','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(397,'geography','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(398,'physics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(399,'englishlit','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(400,'economics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(401,'irk','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(402,'insurance','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(403,'civiledu','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(404,'history','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(405,'chemistry','5.255.250.167',134,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-06 10:34:57','2020-03-09 20:47:54'),(406,'english','198.54.114.114',2064829,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 23:13:35','2019-01-05 10:14:01'),(407,'mathematics','197.210.54.46',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:39:25','2018-12-07 14:39:27'),(408,'chemistry','107.167.108.170',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:41:02','2018-12-07 14:41:16'),(409,'english','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(410,'commerce','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(411,'physics','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(412,'crk','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(413,'civiledu','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(414,'insurance','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(415,'currentaffairs','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(416,'chemistry','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(417,'geography','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(418,'irk','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(419,'chemistry','93.158.161.84',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 12:23:24','2019-08-28 13:58:43'),(420,'mathematics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(421,'physics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(422,'englishlit','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(423,'government','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(424,'economics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(425,'irk','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(426,'civiledu','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(427,'chemistry','41.190.2.156',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 21:46:56','2018-12-08 21:53:59'),(428,'mathematics','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(429,'english','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(430,'commerce','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(431,'englishlit','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(432,'government','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(433,'economics','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(434,'crk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(435,'civiledu','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(436,'geography','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(437,'currentaffairs','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(438,'history','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(439,'irk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(440,'english','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:24:35','2019-01-21 04:56:34'),(441,'accounting','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:27:10','2018-12-10 05:27:10'),(442,'economics','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:28:56','2018-12-11 00:19:57'),(443,'currentaffairs','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:26:15','2018-12-10 06:26:15'),(444,'mathematics','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:32:16','2018-12-10 06:32:17'),(445,'government','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 09:31:31','2018-12-10 09:31:32'),(446,'crk','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:34:20','2018-12-10 11:34:20'),(447,'geography','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:40:41','2018-12-10 11:40:41'),(448,'english','66.249.66.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:01:44','2018-12-12 11:56:08'),(449,'crk','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:02:21','2018-12-11 00:02:21'),(450,'mathematics','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:13:24','2018-12-11 00:13:24'),(451,'english','105.112.45.33',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 12:02:56','2018-12-11 12:38:16'),(452,'chemistry','93.158.166.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 14:37:30','2018-12-11 14:37:30'),(453,'chemistry','180.76.15.21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 16:53:35','2018-12-11 16:53:35'),(454,'chemistry','180.76.15.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 19:26:46','2018-12-11 19:26:46'),(455,'english','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(456,'mathematics','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(457,'accounting','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(458,'biology','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(459,'geography','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(460,'economics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(461,'history','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(462,'physics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(463,'government','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(464,'irk','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(465,'civiledu','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(466,'chemistry','180.76.15.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 23:48:00','2018-12-11 23:48:00'),(467,'chemistry','180.76.15.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 00:21:20','2018-12-12 00:21:20'),(468,'chemistry','180.76.15.14',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 07:46:34','2018-12-12 07:46:34'),(469,'chemistry','154.113.73.98',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:36','2018-12-12 10:41:28'),(470,'mathematics','154.113.73.98',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:49','2018-12-12 10:36:58'),(471,'crk','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:20','2018-12-12 11:59:20'),(472,'physics','66.249.66.148',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:38','2019-01-21 04:57:41'),(473,'english','105.112.47.144',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:00:13','2018-12-12 22:58:12'),(474,'englishlit','105.112.47.144',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:02:31','2018-12-12 12:04:05'),(475,'accounting','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 21:01:10','2018-12-12 21:01:10'),(476,'chemistry','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 22:50:15','2018-12-12 22:50:15'),(477,'english','105.112.46.125',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:28:26','2018-12-13 08:44:01'),(478,'economics','105.112.46.125',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:29:01','2018-12-13 08:29:01'),(479,'english','105.112.41.38',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:57:18','2018-12-13 12:33:26'),(480,'english','129.56.134.30',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 09:16:11','2018-12-13 09:16:17'),(481,'chemistry','93.158.161.83',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-13 09:55:28','2019-08-18 19:16:42'),(482,'government','105.112.41.38',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:18','2018-12-13 10:21:18'),(483,'economics','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:51','2018-12-13 10:46:29'),(484,'biology','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:30:17','2018-12-13 10:32:39'),(485,'chemistry','105.112.41.38',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:47:04','2018-12-13 11:10:33'),(486,'accounting','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:57:43','2018-12-13 11:01:54'),(487,'mathematics','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:05:06','2018-12-13 11:15:23'),(488,'englishlit','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:10:58','2018-12-13 11:14:55'),(489,'chemistry','180.76.15.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 15:45:10','2018-12-13 15:45:10'),(490,'chemistry','180.76.15.16',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:18:30','2018-12-13 16:18:31'),(491,'irk','54.227.19.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:32:52','2018-12-13 16:32:52'),(492,'chemistry','180.76.15.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:51:50','2018-12-13 16:51:50'),(493,'english','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:37','2018-12-13 19:06:38'),(494,'mathematics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:40','2018-12-13 19:08:24'),(495,'crk','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:57','2018-12-13 19:06:58'),(496,'economics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:01','2018-12-13 19:08:24'),(497,'government','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:14','2018-12-13 19:07:14'),(498,'civiledu','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(499,'biology','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(500,'history','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:42','2018-12-13 19:07:42'),(501,'chemistry','178.154.171.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 21:33:50','2018-12-13 21:33:50'),(502,'chemistry','180.76.15.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 00:15:20','2018-12-14 00:15:20'),(503,'chemistry','180.76.15.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 07:43:39','2018-12-14 07:43:39'),(504,'chemistry','197.211.61.108',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 15:01:10','2018-12-14 15:01:10'),(505,'english','105.112.46.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 21:38:58','2018-12-14 21:38:59'),(506,'mathematics','105.112.32.198',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 15:16:16','2018-12-15 15:16:17'),(507,'english','105.112.38.110',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:20:52','2018-12-15 19:20:28'),(508,'biology','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:25:40','2018-12-15 18:25:40'),(509,'economics','105.112.38.110',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:21:25','2018-12-15 19:30:28'),(510,'accounting','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:30:34','2018-12-15 19:30:34'),(511,'physics','175.126.202.88',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 00:43:36','2018-12-16 00:44:38'),(512,'accounting','105.112.34.239',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 10:25:26','2018-12-16 10:25:26'),(513,'accounting','105.112.41.67',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 15:44:34','2018-12-16 16:36:06'),(514,'accounting','105.112.29.182',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 16:52:50','2018-12-16 17:06:10'),(515,'accounting','105.112.34.195',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 17:18:42','2018-12-16 18:36:42'),(516,'chemistry','197.211.56.111',287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:10:04','2018-12-16 19:21:43'),(517,'accounting','105.112.46.33',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:32:00','2018-12-16 19:34:06'),(518,'english','105.112.46.33',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:36:15','2018-12-16 19:36:15'),(519,'mathematics','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(520,'englishlit','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(521,'government','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(522,'economics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(523,'civiledu','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(524,'insurance','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(525,'history','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(526,'accounting','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(527,'physics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(528,'chemistry','197.211.61.98',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:12:52','2018-12-17 06:13:44'),(529,'mathematics','197.211.61.98',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:14:29','2018-12-17 06:14:29'),(530,'english','105.112.45.142',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:21:44','2018-12-17 06:21:44'),(531,'commerce','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(532,'mathematics','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(533,'englishlit','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(534,'accounting','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(535,'crk','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(536,'civiledu','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(537,'irk','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(538,'insurance','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(539,'currentaffairs','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(540,'history','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(541,'crk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(542,'geography','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(543,'economics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(544,'history','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(545,'chemistry','197.210.45.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 17:24:25','2018-12-17 17:39:16'),(546,'mathematics','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:41','2018-12-17 18:04:43'),(547,'english','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:52','2018-12-17 18:04:56'),(548,'chemistry','197.210.227.233',92,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 21:46:03','2020-04-28 16:08:26'),(549,'crk','41.90.4.25',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 05:23:20','2018-12-18 05:23:20'),(550,'mathematics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(551,'chemistry','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(552,'englishlit','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(553,'government','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(554,'economics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(555,'currentaffairs','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(556,'history','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(557,'english','197.149.92.146',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 15:42:59','2019-01-21 14:07:29'),(558,'english','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(559,'physics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(560,'government','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(561,'crk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(562,'economics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(563,'irk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(564,'history','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(565,'mathematics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(566,'commerce','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(567,'biology','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(568,'physics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(569,'crk','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(570,'civiledu','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(571,'mathematics','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(572,'commerce','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(573,'accounting','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(574,'biology','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(575,'government','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(576,'geography','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(577,'insurance','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(578,'english','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(579,'chemistry','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(580,'crk','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(581,'currentaffairs','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(582,'english','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:07:37','2018-12-19 07:07:37'),(583,'currentaffairs','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:08:26','2018-12-19 07:08:26'),(584,'chemistry','141.8.142.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 10:43:20','2018-12-19 10:43:20'),(585,'chemistry','129.205.114.31',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 14:19:13','2018-12-19 14:46:54'),(586,'chemistry','197.210.45.94',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 18:51:50','2018-12-19 19:42:45'),(587,'chemistry','197.210.226.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:52:25','2018-12-19 19:52:25'),(588,'chemistry','197.210.226.37',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:53:27','2018-12-19 19:53:31'),(589,'chemistry','129.205.114.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 22:33:31','2018-12-19 22:33:31'),(590,'chemistry','197.210.131.150',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 06:24:47','2018-12-20 06:43:46'),(591,'english','41.58.233.100',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:12:36','2018-12-20 09:15:21'),(592,'commerce','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(593,'biology','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(594,'physics','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(595,'englishlit','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(596,'geography','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(597,'history','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(598,'mathematics','105.112.37.70',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 19:08:41','2018-12-20 19:08:41'),(599,'english','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(600,'commerce','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(601,'geography','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(602,'economics','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(603,'civiledu','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(604,'insurance','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(605,'history','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(606,'currentaffairs','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:19','2018-12-21 08:05:19'),(607,'biology','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:51','2018-12-21 08:05:51'),(608,'english','105.112.47.163',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:24:03','2018-12-21 10:19:51'),(609,'chemistry','105.112.47.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:39:11','2018-12-21 08:39:37'),(610,'physics','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:45:24','2018-12-21 08:45:25'),(611,'mathematics','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(612,'chemistry','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(613,'englishlit','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(614,'geography','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(615,'civiledu','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(616,'currentaffairs','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(617,'history','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(618,'mathematics','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:33:23','2018-12-22 05:33:23'),(619,'english','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:35:01','2018-12-22 05:35:01'),(620,'chemistry','197.211.61.114',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:26:13','2018-12-22 11:17:52'),(621,'english','197.211.61.114',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:31:29','2018-12-22 10:01:02'),(622,'mathematics','197.211.61.114',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 10:51:19','2018-12-22 11:44:17'),(623,'biology','197.211.61.114',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:15:56','2018-12-22 11:38:07'),(624,'economics','197.211.61.114',601,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:45:00','2018-12-22 11:54:26'),(625,'english','105.112.46.179',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:02:33','2018-12-22 12:32:21'),(626,'biology','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:12:59','2018-12-22 12:12:59'),(627,'mathematics','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:14:25','2018-12-22 12:14:25'),(628,'biology','105.112.27.90',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 14:12:09','2018-12-22 14:12:19'),(629,'biology','105.112.28.72',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 08:30:27','2018-12-23 08:31:00'),(630,'mathematics','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:34','2018-12-23 10:24:34'),(631,'commerce','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(632,'biology','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(633,'government','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(634,'crk','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(635,'civiledu','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(636,'history','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(637,'english','102.163.30.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 14:59:34','2018-12-23 14:59:34'),(638,'chemistry','94.130.64.96',101,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-24 16:32:40','2019-10-29 05:22:55'),(639,'chemistry','87.250.224.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 15:07:57','2018-12-25 15:07:57'),(640,'english','105.112.46.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 16:28:23','2018-12-25 16:28:24'),(641,'chemistry','197.242.105.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 21:07:41','2018-12-25 21:07:41'),(642,'mathematics','129.56.150.67',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 06:03:54','2018-12-26 06:03:54'),(643,'currentaffairs','105.112.43.199',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 07:57:50','2018-12-26 08:02:07'),(644,'economics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:16','2018-12-26 08:24:50'),(645,'english','105.112.43.199',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:19','2018-12-26 08:13:25'),(646,'biology','105.112.43.199',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:13:33','2018-12-26 08:15:51'),(647,'mathematics','105.112.43.199',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:19:50','2018-12-26 08:19:50'),(648,'chemistry','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:21:57','2018-12-26 08:22:00'),(649,'physics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:23:21','2018-12-26 08:23:26'),(650,'biology','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(651,'physics','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(652,'government','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(653,'geography','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(654,'civiledu','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(655,'currentaffairs','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(656,'history','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(657,'accounting','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(658,'chemistry','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(659,'irk','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(660,'english','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(661,'commerce','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(662,'physics','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(663,'englishlit','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(664,'irk','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(665,'civiledu','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(666,'currentaffairs','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(667,'commerce','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(668,'accounting','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(669,'biology','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(670,'chemistry','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(671,'economics','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(672,'irk','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(673,'currentaffairs','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(674,'mathematics','197.211.63.177',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 09:02:54','2018-12-28 09:02:54'),(675,'english','66.249.75.30',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:23:21','2018-12-28 10:23:21'),(676,'government','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:24:59','2018-12-28 10:24:59'),(677,'geography','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:28:56','2018-12-28 10:28:56'),(678,'mathematics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:30:30','2018-12-28 10:30:30'),(679,'physics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:43:38','2018-12-28 10:43:39'),(680,'physics','119.4.252.222',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 13:32:48','2018-12-28 13:32:48'),(681,'mathematics','105.112.40.153',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:15','2018-12-29 06:30:15'),(682,'english','105.112.40.153',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:27','2018-12-29 06:30:31'),(683,'mathematics','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(684,'english','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(685,'commerce','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(686,'physics','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(687,'biology','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(688,'englishlit','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(689,'government','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(690,'chemistry','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(691,'geography','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(692,'currentaffairs','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 11:39:05'),(693,'irk','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 12:00:15'),(694,'insurance','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(695,'biology','197.211.61.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-30 18:14:56','2018-12-30 18:14:56'),(696,'englishlit','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 08:59:20','2019-01-01 08:59:20'),(697,'civiledu','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 09:06:49','2019-01-01 09:06:49'),(698,'mathematics','197.210.227.192',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 13:01:04','2019-01-01 13:01:05'),(699,'english','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:15','2019-01-02 13:19:15'),(700,'mathematics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:33','2019-01-02 13:19:33'),(701,'physics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:52','2019-01-02 13:19:52'),(702,'chemistry','216.244.66.249',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-03 00:12:52','2020-05-01 01:03:29'),(703,'chemistry','129.56.72.46',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:37:05','2019-01-03 15:53:03'),(704,'physics','129.56.72.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:42:55','2019-01-03 15:42:55'),(705,'english','129.56.72.46',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:43:08','2019-01-03 15:43:45'),(706,'chemistry','197.211.61.138',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-04 14:31:06','2019-01-04 14:31:06'),(707,'chemistry','54.36.222.37',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:24:51','2019-01-05 15:25:12'),(708,'chemistry','105.112.68.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:25:43','2019-01-05 15:25:43'),(709,'chemistry','41.58.55.77',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:20:09','2019-01-05 16:29:28'),(710,'government','41.58.55.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:30:37','2019-01-05 16:30:37'),(711,'english','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:28','2019-01-06 16:30:29'),(712,'physics','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:33','2019-01-06 16:30:33'),(713,'english','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(714,'mathematics','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(715,'physics','54.163.211.17',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(716,'englishlit','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(717,'crk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(718,'government','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(719,'irk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(720,'economics','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(721,'history','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(722,'insurance','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(723,'currentaffairs','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(724,'mathematics','105.112.16.240',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(725,'physics','105.112.16.240',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(726,'english','35.171.138.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:39:33','2019-01-07 09:39:33'),(727,'chemistry','141.8.142.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:47:24','2019-01-07 09:47:24'),(728,'chemistry','129.56.36.237',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 14:52:19','2019-01-07 14:54:09'),(729,'chemistry','129.56.35.102',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:18:44','2019-01-08 07:43:45'),(730,'mathematics','129.56.35.102',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:20:24','2019-01-08 07:41:53'),(731,'mathematics','105.112.23.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:11:31','2019-01-08 09:11:31'),(732,'english','105.112.32.121',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:42:08','2019-01-08 09:42:22'),(733,'chemistry','197.211.61.143',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:10:03','2019-01-08 14:10:20'),(734,'chemistry','154.68.226.2',118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:34:37','2019-01-08 14:39:59'),(735,'english','154.68.226.2',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:39:32','2019-01-08 14:39:32'),(736,'chemistry','105.112.75.253',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:28:30','2019-01-08 18:28:52'),(737,'chemistry','105.112.33.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:43:41','2019-01-08 18:43:41'),(738,'chemistry','35.192.130.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 23:46:16','2019-01-08 23:46:25'),(739,'mathematics','105.112.18.0',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 07:37:37','2019-01-09 07:37:38'),(740,'chemistry','154.118.13.144',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:11:55','2019-01-09 08:13:04'),(741,'mathematics','154.118.13.144',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:12:11','2019-01-09 08:12:47'),(742,'mathematics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(743,'commerce','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(744,'accounting','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(745,'government','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(746,'economics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(747,'civiledu','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(748,'currentaffairs','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(749,'chemistry','41.77.168.134',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:45:00','2019-01-09 08:58:31'),(750,'mathematics','41.77.168.134',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:48:48','2019-01-09 08:48:48'),(751,'english','41.77.168.134',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:58:57','2019-01-09 09:03:34'),(752,'commerce','54.196.34.230',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:52:38'),(753,'accounting','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(754,'chemistry','54.196.34.230',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:19:42'),(755,'englishlit','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(756,'economics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(757,'irk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(758,'insurance','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(759,'physics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(760,'government','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(761,'crk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(762,'geography','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(763,'civiledu','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(764,'history','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(765,'chemistry','80.248.6.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:06:19','2019-01-09 10:06:19'),(766,'chemistry','154.118.61.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:32:10','2019-01-09 10:32:45'),(767,'english','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(768,'mathematics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(769,'commerce','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(770,'accounting','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(771,'physics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(772,'government','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(773,'insurance','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(774,'chemistry','197.242.96.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:31:54','2019-01-09 12:36:27'),(775,'commerce','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(776,'accounting','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(777,'physics','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(778,'government','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(779,'crk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(780,'irk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(781,'history','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(782,'chemistry','197.211.61.140',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:31:17','2019-01-09 13:31:45'),(783,'chemistry','197.210.28.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:45:23','2019-01-09 13:45:42'),(784,'chemistry','105.112.26.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:11:31','2019-01-09 16:11:31'),(785,'chemistry','212.100.76.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:20:25','2019-01-09 16:20:25'),(786,'english','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(787,'commerce','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(788,'chemistry','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(789,'accounting','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(790,'crk','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(791,'englishlit','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(792,'geography','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(793,'economics','54.234.47.73',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:14:14'),(794,'irk','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(795,'history','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(796,'insurance','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(797,'chemistry','51.75.71.123',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 23:42:44','2019-01-09 23:43:14'),(798,'chemistry','129.205.114.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 01:56:23','2019-01-10 01:56:30'),(799,'mathematics','197.210.47.164',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:43:39','2019-01-10 09:02:20'),(800,'chemistry','197.210.47.164',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:49:36','2019-01-10 08:58:38'),(801,'mathematics','163.172.103.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 09:01:09','2019-01-10 09:01:09'),(802,'chemistry','41.223.145.174',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 14:44:39','2019-01-10 14:44:40'),(803,'english','54.82.110.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 20:51:21','2019-01-10 20:51:21'),(804,'english','105.112.46.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:06:16','2019-01-10 21:06:16'),(805,'english','54.80.138.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:20','2019-01-10 21:09:20'),(806,'accounting','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(807,'physics','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(808,'chemistry','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(809,'government','54.80.138.166',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(810,'geography','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:23'),(811,'insurance','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(812,'history','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(813,'commerce','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:33','2019-01-10 21:45:05'),(814,'crk','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:45:05'),(815,'economics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:23'),(816,'civiledu','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:25'),(817,'mathematics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:45:05'),(818,'biology','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:21:37'),(819,'irk','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:45:05'),(820,'currentaffairs','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:34:23'),(821,'mathematics','105.112.46.80',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:40:26','2019-01-10 21:40:35'),(822,'chemistry','197.210.226.19',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 06:57:07','2019-01-11 07:15:56'),(823,'chemistry','197.210.53.216',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:13','2019-01-11 07:55:13'),(824,'chemistry','197.210.52.249',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:24','2019-02-01 07:57:34'),(825,'chemistry','197.210.53.38',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:33','2019-01-11 07:55:33'),(826,'chemistry','141.0.12.246',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 08:09:00','2019-01-11 08:09:00'),(827,'chemistry','93.158.161.104',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-11 11:59:42','2019-11-14 01:45:39'),(828,'mathematics','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(829,'physics','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(830,'chemistry','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(831,'government','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(832,'geography','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(833,'economics','54.205.11.114',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(834,'currentaffairs','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(835,'english','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(836,'commerce','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(837,'biology','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(838,'crk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(839,'irk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(840,'insurance','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(841,'civiledu','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(842,'history','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(843,'chemistry','197.210.227.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:05:33','2019-01-11 19:05:33'),(844,'english','197.210.227.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:09:52','2019-01-11 19:09:52'),(845,'englishlit','197.211.61.137',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 22:39:43','2019-01-11 22:39:43'),(846,'physics','197.242.97.253',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:01:48','2019-01-11 23:05:05'),(847,'mathematics','197.242.97.253',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:06:07','2019-01-11 23:31:02'),(848,'chemistry','197.211.61.137',101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:08:07','2019-01-11 23:30:04'),(849,'irk','197.211.61.137',2640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:30:32','2019-01-12 01:52:58'),(850,'civiledu','197.211.61.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:38:40','2019-01-12 00:01:30'),(851,'crk','197.211.61.137',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 01:59:32','2019-01-12 02:01:42'),(852,'chemistry','154.113.86.220',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 12:01:05','2019-01-12 12:05:52'),(853,'chemistry','197.210.55.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:02','2019-01-12 13:17:02'),(854,'chemistry','197.210.54.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:27','2019-01-12 13:17:35'),(855,'chemistry','197.210.54.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:18:25','2019-01-12 13:18:25'),(856,'english','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(857,'mathematics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(858,'commerce','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(859,'biology','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(860,'physics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(861,'irk','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(862,'insurance','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(863,'english','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(864,'biology','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(865,'physics','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(866,'government','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(867,'irk','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(868,'civiledu','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(869,'insurance','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(870,'chemistry','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(871,'englishlit','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(872,'history','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(873,'english','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(874,'mathematics','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(875,'biology','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(876,'geography','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(877,'irk','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(878,'insurance','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(879,'history','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(880,'english','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:04:50','2019-01-12 20:04:50'),(881,'chemistry','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:05:26','2019-01-12 20:05:27'),(882,'irk','197.210.47.86',180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:21:42','2019-01-12 20:26:58'),(883,'insurance','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:27:49','2019-01-12 20:27:49'),(884,'mathematics','197.210.47.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:36:53','2019-01-12 20:39:06'),(885,'chemistry','154.120.102.146',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 00:32:56','2019-01-13 00:33:43'),(886,'english','197.210.54.214',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:56:19'),(887,'english','197.210.54.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:02:41'),(888,'mathematics','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:09:53','2019-01-13 08:09:53'),(889,'mathematics','197.210.55.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:10:36','2019-01-13 08:10:36'),(890,'english','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:51:48','2019-01-13 08:51:48'),(891,'english','197.210.55.13',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:59:29','2019-01-13 08:59:29'),(892,'chemistry','197.210.44.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:00:31','2019-01-13 11:00:31'),(893,'english','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(894,'commerce','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(895,'biology','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(896,'chemistry','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(897,'englishlit','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(898,'government','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(899,'history','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(900,'english','197.210.226.45',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 14:49:00','2019-01-13 14:49:00'),(901,'physics','197.210.227.184',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(902,'physics','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(903,'english','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:59:10','2019-01-13 15:59:10'),(904,'english','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:02:36','2019-01-13 16:02:36'),(905,'biology','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:05:26','2019-01-13 16:05:26'),(906,'biology','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:10:47','2019-01-13 16:12:44'),(907,'physics','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:39:55','2019-01-13 16:39:55'),(908,'economics','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:33:11','2019-01-13 17:41:35'),(909,'mathematics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(910,'english','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(911,'accounting','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(912,'physics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(913,'chemistry','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(914,'englishlit','54.87.49.142',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(915,'crk','54.87.49.142',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(916,'government','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(917,'geography','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(918,'economics','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(919,'commerce','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(920,'civiledu','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(921,'currentaffairs','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(922,'history','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(923,'english','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(924,'commerce','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(925,'physics','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(926,'englishlit','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(927,'geography','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(928,'insurance','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(929,'currentaffairs','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(930,'mathematics','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(931,'accounting','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(932,'crk','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(933,'mathematics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(934,'commerce','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(935,'government','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(936,'chemistry','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(937,'crk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(938,'englishlit','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(939,'economics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(940,'irk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(941,'geography','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(942,'insurance','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(943,'civiledu','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(944,'currentaffairs','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(945,'chemistry','41.58.81.61',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 06:35:26','2019-01-14 11:20:24'),(946,'chemistry','67.222.154.247',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:40:10','2019-01-14 07:40:10'),(947,'mathematics','41.58.182.193',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:50:27','2019-01-14 15:09:22'),(948,'commerce','41.58.182.193',2080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 09:57:28','2019-01-14 13:27:13'),(949,'chemistry','154.120.102.252',854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:00:36','2019-01-14 10:20:54'),(950,'accounting','41.58.182.193',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:01:42','2019-01-14 13:14:55'),(951,'commerce','197.211.61.136',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:38:39','2019-01-14 10:38:59'),(952,'biology','41.58.81.61',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:18:50','2019-01-14 11:19:07'),(953,'chemistry','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:24:11','2019-01-14 11:24:11'),(954,'english','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:25:28','2019-01-14 11:25:28'),(955,'english','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(956,'commerce','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(957,'accounting','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(958,'government','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(959,'crk','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(960,'civiledu','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(961,'insurance','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(962,'chemistry','73.142.154.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:37:12','2019-01-14 11:37:12'),(963,'chemistry','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:10:52','2019-01-14 14:26:38'),(964,'geography','154.118.29.188',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:50:28','2019-01-14 14:27:52'),(965,'history','154.118.29.188',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:23:24'),(966,'economics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:27:38'),(967,'insurance','154.118.29.188',95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:24:14'),(968,'english','154.118.29.188',71,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:24','2019-01-14 14:25:44'),(969,'crk','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:33','2019-01-14 14:23:40'),(970,'englishlit','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:39','2019-01-14 14:27:06'),(971,'biology','154.118.29.188',77,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:19','2019-01-14 14:25:59'),(972,'accounting','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:21','2019-01-14 14:26:39'),(973,'mathematics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:22','2019-01-14 14:25:10'),(974,'physics','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:27','2019-01-14 14:27:00'),(975,'currentaffairs','154.118.29.188',109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:29','2019-01-14 14:24:12'),(976,'commerce','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:24:22'),(977,'irk','154.118.29.188',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:27:24'),(978,'civiledu','154.118.29.188',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:39','2019-01-14 14:27:37'),(979,'government','154.118.29.188',112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:45','2019-01-14 14:27:52'),(980,'english','105.112.26.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:16:02','2019-01-14 13:16:02'),(981,'physics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:23:47','2019-01-14 13:23:47'),(982,'chemistry','102.176.244.209',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:27:15','2019-01-14 13:27:15'),(983,'englishlit','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:28:42','2019-01-14 13:28:42'),(984,'chemistry','3.82.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:46'),(985,'chemistry','54.221.199.147',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:47'),(986,'english','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:18:34'),(987,'mathematics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(988,'government','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(989,'crk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(990,'economics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(991,'irk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(992,'civiledu','54.83.84.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(993,'insurance','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:41'),(994,'geography','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:09'),(995,'economics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:58','2019-01-14 14:35:25'),(996,'civiledu','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:04','2019-01-14 14:37:40'),(997,'chemistry','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:12','2019-01-14 14:37:32'),(998,'irk','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:34','2019-01-14 14:37:32'),(999,'mathematics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:38','2019-01-14 14:34:17'),(1000,'currentaffairs','41.217.124.252',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:52','2019-01-14 14:36:53'),(1001,'crk','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:59','2019-01-14 14:33:56'),(1002,'physics','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:04','2019-01-14 14:34:57'),(1003,'english','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:10','2019-01-14 14:36:11'),(1004,'accounting','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:16','2019-01-14 14:37:41'),(1005,'commerce','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:24','2019-01-14 14:36:54'),(1006,'government','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:33:56','2019-01-14 14:35:57'),(1007,'englishlit','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:34:57','2019-01-14 14:36:30'),(1008,'accounting','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1009,'physics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1010,'chemistry','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1011,'currentaffairs','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1012,'history','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1013,'biology','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:25','2019-01-14 14:37:26'),(1014,'history','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:36:21','2019-01-14 14:37:39'),(1015,'mathematics','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:40:53','2019-01-14 15:01:48'),(1016,'insurance','154.120.104.84',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:10','2019-01-14 14:59:05'),(1017,'history','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:40','2019-01-14 14:58:06'),(1018,'government','154.120.104.84',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:00:27'),(1019,'currentaffairs','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:37'),(1020,'economics','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:20'),(1021,'civiledu','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:51','2019-01-14 14:59:48'),(1022,'biology','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:58','2019-01-14 15:01:49'),(1023,'chemistry','154.120.104.84',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:04','2019-01-14 15:01:09'),(1024,'englishlit','154.120.104.84',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:05','2019-01-14 15:01:56'),(1025,'commerce','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:07','2019-01-14 15:01:04'),(1026,'crk','154.120.104.84',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1027,'geography','154.120.104.84',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 14:59:41'),(1028,'english','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1029,'irk','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:44:31','2019-01-14 15:01:38'),(1030,'physics','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:46:00','2019-01-14 15:00:40'),(1031,'accounting','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:48:21','2019-01-14 15:01:46'),(1032,'crk','54.224.217.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 15:45:45','2019-01-14 15:45:45'),(1033,'commerce','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:22:40','2019-01-14 16:22:40'),(1034,'history','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:24:24','2019-01-14 16:24:24'),(1035,'chemistry','168.253.115.37',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:46:30','2019-01-14 16:46:30'),(1036,'chemistry','197.242.101.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 17:00:07','2019-01-14 17:00:08'),(1037,'chemistry','105.112.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:34:19','2019-01-14 18:34:19'),(1038,'english','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:33','2019-01-14 18:52:34'),(1039,'chemistry','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:40','2019-01-14 18:52:40'),(1040,'mathematics','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:00','2019-01-14 18:53:01'),(1041,'biology','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:10','2019-01-14 18:53:11'),(1042,'english','218.94.63.46',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1043,'english','218.94.63.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:03'),(1044,'economics','218.94.63.46',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1045,'english','197.211.61.152',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 03:35:57','2019-01-15 03:36:17'),(1046,'chemistry','154.118.16.190',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:40:00'),(1047,'chemistry','154.118.16.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:39:18'),(1048,'chemistry','105.112.37.149',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:48:36','2019-01-15 10:57:07'),(1049,'economics','105.112.37.149',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:50:17','2019-01-15 15:03:40'),(1050,'commerce','41.222.43.114',164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:59:58','2019-01-15 14:58:39'),(1051,'currentaffairs','41.222.43.114',176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:04','2019-01-15 14:59:14'),(1052,'accounting','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:13','2019-01-15 14:57:38'),(1053,'history','41.222.43.114',156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:17','2019-01-15 14:58:14'),(1054,'crk','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:27','2019-01-15 14:56:43'),(1055,'irk','41.222.43.114',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:33','2019-01-15 14:59:08'),(1056,'economics','41.222.43.114',171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:38','2019-01-15 14:57:48'),(1057,'mathematics','41.222.43.114',147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:48','2019-01-15 14:58:28'),(1058,'physics','41.222.43.114',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:58','2019-01-15 14:56:23'),(1059,'civiledu','41.222.43.114',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:03','2019-01-15 14:58:33'),(1060,'english','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:19','2019-01-15 14:58:49'),(1061,'insurance','41.222.43.114',178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:33','2019-01-15 14:59:03'),(1062,'government','41.222.43.114',170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:48','2019-01-15 14:58:58'),(1063,'chemistry','41.222.43.114',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:58','2019-01-15 14:58:44'),(1064,'geography','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:04','2019-01-15 14:53:49'),(1065,'biology','41.222.43.114',149,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:13','2019-01-15 14:55:33'),(1066,'englishlit','41.222.43.114',166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:03:14','2019-01-15 14:58:08'),(1067,'chemistry','197.210.45.97',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:04:32','2019-01-15 11:04:46'),(1068,'economics','197.210.45.97',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:15:28','2019-01-15 11:40:03'),(1069,'biology','197.210.45.97',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:17:50','2019-01-15 11:18:29'),(1070,'chemistry','169.159.108.237',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:25:31','2019-01-15 11:25:31'),(1071,'chemistry','129.18.141.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:50:09','2019-01-15 11:50:09'),(1072,'english','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:29','2019-01-15 12:33:29'),(1073,'mathematics','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:44','2019-01-15 12:33:45'),(1074,'chemistry','154.117.120.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:34:24','2019-01-15 12:34:24'),(1075,'englishlit','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:46','2019-01-15 13:57:08'),(1076,'crk','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:47','2019-01-15 13:56:49'),(1077,'accounting','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:48','2019-01-15 13:57:48'),(1078,'history','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:58','2019-01-15 13:56:58'),(1079,'mathematics','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:03','2019-01-15 13:57:03'),(1080,'economics','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:13','2019-01-15 13:57:28'),(1081,'geography','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:18','2019-01-15 13:57:18'),(1082,'chemistry','41.184.122.84',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-15 13:57:23','2019-11-12 12:30:51'),(1083,'biology','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:33','2019-01-15 13:57:53'),(1084,'insurance','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:38','2019-01-15 13:58:43'),(1085,'civiledu','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:43','2019-01-15 13:58:53'),(1086,'irk','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:58','2019-01-15 13:57:58'),(1087,'physics','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:03','2019-01-15 13:58:48'),(1088,'currentaffairs','41.184.122.84',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:13','2019-01-15 13:58:38'),(1089,'commerce','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:33','2019-01-15 13:58:33'),(1090,'english','41.217.112.165',595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:13:18','2019-01-15 18:35:09'),(1091,'mathematics','41.217.112.165',682,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:37:42','2019-01-15 20:35:48'),(1092,'mathematics','154.118.11.179',218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:09:53','2019-01-15 21:33:28'),(1093,'mathematics','105.112.19.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:11:19','2019-01-15 20:11:19'),(1094,'chemistry','154.118.11.179',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:00:39','2019-01-15 21:00:39'),(1095,'english','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1096,'commerce','54.211.194.179',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1097,'biology','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1098,'chemistry','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1099,'accounting','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1100,'physics','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1101,'englishlit','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1102,'geography','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1103,'government','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1104,'civiledu','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1105,'currentaffairs','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1106,'crk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1107,'history','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1108,'economics','54.211.194.179',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1109,'irk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1110,'english','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1111,'mathematics','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1112,'commerce','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1113,'biology','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1114,'englishlit','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1115,'government','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1116,'history','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1117,'accounting','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1118,'crk','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1119,'economics','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1120,'civiledu','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1121,'insurance','54.90.226.10',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1122,'chemistry','105.112.18.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:40:38','2019-01-16 06:40:39'),(1123,'chemistry','105.112.26.11',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:57:01','2019-01-16 06:57:01'),(1124,'english','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:11:18','2019-01-16 08:11:18'),(1125,'economics','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:12:44','2019-01-16 08:12:44'),(1126,'government','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:37:13','2019-01-16 08:37:13'),(1127,'commerce','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1128,'accounting','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1129,'physics','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1130,'geography','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1131,'civiledu','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1132,'insurance','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1133,'history','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1134,'english','54.235.31.132',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 10:26:39','2019-01-16 10:26:39'),(1135,'government','54.90.239.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:30:56','2019-01-16 12:30:56'),(1136,'economics','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:34:56','2019-01-16 12:34:57'),(1137,'insurance','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:48:13','2019-01-16 13:48:13'),(1138,'civiledu','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:55:55','2019-01-16 13:55:55'),(1139,'government','54.226.242.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 15:41:22','2019-01-16 15:41:22'),(1140,'economics','197.210.64.25',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:45:11','2019-01-16 16:54:28'),(1141,'chemistry','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:58:41','2019-01-16 16:58:53'),(1142,'mathematics','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:59:05','2019-01-16 17:07:06'),(1143,'mathematics','41.138.87.73',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 17:49:50','2019-01-16 17:53:24'),(1144,'chemistry','173.225.16.67',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 18:43:39','2019-01-19 04:12:25'),(1145,'commerce','34.207.210.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 19:50:10','2019-01-16 19:50:29'),(1146,'biology','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 20:40:19','2019-01-16 20:40:19'),(1147,'chemistry','41.138.81.104',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:39:14','2019-01-16 21:39:58'),(1148,'history','41.138.81.104',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:40:15','2019-01-16 21:41:27'),(1149,'accounting','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 22:44:31','2019-01-16 22:44:31'),(1150,'mathematics','3.83.38.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 04:39:27','2019-01-17 04:39:27'),(1151,'english','102.176.244.209',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 13:44:54','2019-01-21 11:05:17'),(1152,'chemistry','197.255.52.86',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:42:55','2019-01-17 14:43:15'),(1153,'accounting','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1154,'physics','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1155,'chemistry','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1156,'englishlit','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1157,'government','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1158,'geography','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1159,'insurance','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1160,'biology','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1161,'crk','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1162,'civiledu','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1163,'chemistry','68.13.248.93',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 02:01:44','2019-01-18 02:02:05'),(1164,'chemistry','72.183.76.77',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 03:28:05','2019-01-18 03:29:19'),(1165,'chemistry','197.211.61.152',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 07:10:31','2019-01-18 07:12:13'),(1166,'biology','54.162.164.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 09:21:43','2019-01-18 09:21:43'),(1167,'chemistry','105.112.112.103',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:18:21','2019-01-18 10:19:31'),(1168,'chemistry','197.210.221.158',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:20:34','2019-01-18 10:21:00'),(1169,'chemistry','165.73.192.11',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:30:28','2019-01-18 10:30:38'),(1170,'chemistry','197.210.47.116',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:39:50','2020-04-21 15:26:10'),(1171,'history','66.249.93.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 11:29:27','2019-01-18 11:29:27'),(1172,'chemistry','154.118.20.163',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:12:36','2019-01-18 12:12:36'),(1173,'chemistry','129.56.80.136',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:13:30','2019-01-18 12:14:17'),(1174,'mathematics','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:14:30','2019-01-18 12:14:30'),(1175,'english','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:15:08','2019-01-18 12:15:09'),(1176,'history','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:34:02','2019-01-18 13:34:02'),(1177,'mathematics','41.203.72.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:35:18','2019-01-18 13:35:19'),(1178,'english','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:46:36','2019-01-18 13:46:36'),(1179,'chemistry','41.191.104.66',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:54:05','2019-01-18 13:54:05'),(1180,'chemistry','72.182.201.96',96,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 14:53:27','2019-01-18 14:54:54'),(1181,'chemistry','66.249.73.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:35:04','2019-01-18 16:35:04'),(1182,'commerce','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1183,'physics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1184,'chemistry','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1185,'englishlit','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1186,'geography','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1187,'crk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1188,'irk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:38'),(1189,'currentaffairs','54.211.126.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1190,'civiledu','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1191,'history','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1192,'insurance','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1193,'biology','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:40:42'),(1194,'government','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:38'),(1195,'economics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:47'),(1196,'english','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1197,'accounting','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1198,'mathematics','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:40:42','2019-01-18 16:40:42'),(1199,'crk','54.161.130.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 17:33:33','2019-01-18 17:33:33'),(1200,'chemistry','102.134.114.214',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 20:59:05','2019-01-18 20:59:42'),(1201,'government','54.227.72.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 22:16:13','2019-01-18 22:16:13'),(1202,'government','54.91.120.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 01:06:53','2019-01-19 01:06:53'),(1203,'accounting','54.227.122.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 04:33:38','2019-01-19 04:33:38'),(1204,'commerce','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1205,'physics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1206,'government','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1207,'geography','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1208,'economics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1209,'irk','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1210,'civiledu','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1211,'crk','54.221.144.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:40:28','2019-01-19 07:40:28'),(1212,'chemistry','129.56.27.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 09:08:03','2019-01-19 09:08:03'),(1213,'chemistry','142.120.136.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 10:20:14','2019-01-19 10:20:14'),(1214,'chemistry','178.5.57.197',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 11:52:36','2019-01-19 11:54:27'),(1215,'chemistry','163.172.103.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 12:08:33','2019-01-19 12:08:33'),(1216,'chemistry','41.190.2.147',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:15:10','2019-01-19 13:19:19'),(1217,'chemistry','105.176.145.237',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:26:28','2019-01-19 13:31:47'),(1218,'biology','105.176.145.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:33:44','2019-01-19 13:33:44'),(1219,'english','197.211.61.157',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 17:04:45','2019-01-19 17:04:45'),(1220,'english','54.162.8.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:40:29','2019-01-19 20:40:29'),(1221,'mathematics','51.15.164.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:50:22','2019-01-19 20:50:22'),(1222,'history','66.249.88.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:16:25','2019-01-20 07:16:25'),(1223,'history','66.249.93.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:27:21','2019-01-20 07:27:21'),(1224,'chemistry','197.210.29.161',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 11:59:53','2019-01-20 12:02:04'),(1225,'english','54.87.9.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 15:47:38','2019-01-20 15:47:38'),(1226,'chemistry','66.249.66.148',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 17:41:21','2019-01-20 17:44:12'),(1227,'chemistry','46.229.168.129',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-20 18:19:28','2020-03-16 03:20:32'),(1228,'english','54.205.83.37',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1229,'mathematics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1230,'government','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1231,'accounting','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1232,'geography','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1233,'crk','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1234,'economics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1235,'economics','54.205.83.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1236,'civiledu','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1237,'insurance','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1238,'currentaffairs','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1239,'history','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1240,'history','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:05:55','2019-01-21 05:05:55'),(1241,'mathematics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1242,'commerce','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1243,'physics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1244,'englishlit','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1245,'geography','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1246,'economics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1247,'currentaffairs','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1248,'english','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1249,'biology','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1250,'chemistry','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1251,'crk','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1252,'history','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1253,'chemistry','41.190.3.176',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 08:43:52','2019-01-21 08:49:54'),(1254,'chemistry','41.191.104.112',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 13:29:06','2019-02-11 14:20:17'),(1255,'chemistry','197.210.226.53',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:14:04','2019-01-21 17:18:25'),(1256,'chemistry','197.210.226.64',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:19:47','2019-01-21 17:49:54'),(1257,'chemistry','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:21:23','2019-01-21 17:21:23'),(1258,'mathematics','197.210.227.233',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:29:23','2019-01-21 17:29:23'),(1259,'mathematics','197.210.226.64',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:48:04','2019-05-25 14:23:44'),(1260,'chemistry','197.210.52.70',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 18:43:18','2019-01-26 10:26:21'),(1261,'mathematics','105.112.23.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 23:50:11','2019-01-21 23:50:11'),(1262,'chemistry','41.191.104.126',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 12:07:26','2019-01-22 12:13:11'),(1263,'chemistry','105.112.27.156',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:30:44','2019-01-22 13:33:01'),(1264,'english','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:36','2019-01-22 13:33:36'),(1265,'commerce','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:56','2019-01-22 13:33:56'),(1266,'mathematics','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:34:19','2019-01-22 13:34:19'),(1267,'english','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1268,'accounting','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1269,'government','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1270,'civiledu','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1271,'insurance','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1272,'currentaffairs','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1273,'history','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1274,'chemistry','41.191.107.133',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:40:08','2019-01-22 14:40:08'),(1275,'chemistry','41.191.107.216',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 15:11:15','2019-04-12 06:41:44'),(1276,'chemistry','41.191.107.208',154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 16:28:30','2019-01-22 16:33:44'),(1277,'biology','54.147.167.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:04:47','2019-01-22 18:04:47'),(1278,'insurance','54.81.167.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:45:46','2019-01-22 18:45:46'),(1279,'biology','197.211.61.167',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 19:57:02','2019-01-22 19:57:02'),(1280,'commerce','3.81.140.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 20:21:37','2019-01-22 20:21:37'),(1281,'chemistry','41.191.104.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:21:52','2019-01-22 21:21:52'),(1282,'chemistry','41.191.104.124',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:28:37','2019-01-27 21:27:34'),(1283,'englishlit','54.172.206.195',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:57:00','2019-01-22 21:57:00'),(1284,'chemistry','197.211.60.92',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 02:17:56','2019-01-23 02:20:31'),(1285,'chemistry','66.249.93.42',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 04:09:58','2019-02-14 14:08:04'),(1286,'chemistry','41.191.107.155',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 10:14:34','2019-01-23 10:14:45'),(1287,'chemistry','41.191.104.86',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 12:43:27','2019-01-23 12:43:27'),(1288,'chemistry','41.191.107.198',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:01:14','2019-01-23 13:08:26'),(1289,'chemistry','41.191.104.249',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:08:39','2019-01-23 13:15:36'),(1290,'mathematics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1291,'english','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1292,'biology','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1293,'commerce','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1294,'physics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1295,'englishlit','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1296,'chemistry','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1297,'government','54.162.153.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1298,'irk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1299,'crk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1300,'geography','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1301,'civiledu','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1302,'currentaffairs','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1303,'economics','212.100.95.210',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:14:58','2019-01-24 08:14:59'),(1304,'chemistry','66.249.93.44',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:24:17','2019-02-04 14:03:36'),(1305,'english','41.191.107.227',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:51:56','2019-01-24 09:52:02'),(1306,'chemistry','41.191.107.227',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 09:32:48','2019-01-24 09:34:19'),(1307,'english','41.191.107.206',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 10:03:24','2019-04-18 16:27:25'),(1308,'english','41.217.124.194',937,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 12:30:40','2019-01-24 13:11:10'),(1309,'mathematics','41.217.124.194',363,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 13:22:56','2019-01-24 13:37:40'),(1310,'commerce','54.91.221.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:05:23','2019-01-24 14:05:23'),(1311,'english','41.191.107.138',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:21:11','2019-04-14 17:04:58'),(1312,'chemistry','41.191.107.138',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:33:41','2019-01-27 21:20:19'),(1313,'commerce','41.217.124.194',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:39:06','2019-01-24 14:39:31'),(1314,'english','41.191.104.91',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:49:01','2019-04-15 21:32:14'),(1315,'mathematics','41.191.104.91',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 15:18:28','2019-04-15 21:20:52'),(1316,'history','3.82.242.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 00:01:01','2019-01-25 00:01:01'),(1317,'englishlit','54.82.44.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:01:01','2019-01-25 04:01:01'),(1318,'chemistry','105.112.96.148',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:45:44','2019-01-25 04:45:44'),(1319,'chemistry','41.190.2.209',15,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 05:44:24','2019-09-18 16:51:41'),(1320,'chemistry','197.210.8.9',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 06:10:55','2019-01-25 08:35:26'),(1321,'history','54.161.164.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 08:01:07','2019-01-25 08:01:07'),(1322,'chemistry','197.210.60.170',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:01:12','2019-01-25 11:01:12'),(1323,'english','197.210.60.170',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:04:07','2019-01-25 11:07:03'),(1324,'chemistry','41.190.30.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:53:49','2019-01-25 11:53:49'),(1325,'biology','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:35:12','2019-01-25 14:35:38'),(1326,'englishlit','41.190.31.164',116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:41:44','2019-01-25 14:56:06'),(1327,'chemistry','197.210.52.237',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:07','2019-01-25 14:51:53'),(1328,'chemistry','197.210.52.239',162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:30','2019-01-25 14:52:22'),(1329,'chemistry','197.210.52.138',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:52:01','2019-01-25 14:52:32'),(1330,'government','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:53:59','2019-01-25 14:53:59'),(1331,'chemistry','197.210.44.60',2108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:58:41','2019-01-25 16:28:06'),(1332,'commerce','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:08:21','2019-01-25 15:08:21'),(1333,'accounting','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:09:36','2019-01-25 15:10:08'),(1334,'crk','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:11:50','2019-01-25 15:12:13'),(1335,'economics','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:16:03','2019-01-25 15:16:03'),(1336,'chemistry','185.118.165.15',126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:21:37','2019-01-25 15:27:32'),(1337,'chemistry','105.112.38.7',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:49:44','2019-01-25 20:14:22'),(1338,'mathematics','105.112.38.7',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:55:45','2019-01-25 20:02:25'),(1339,'english','105.112.38.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:12:22','2019-01-25 20:12:23'),(1340,'chemistry','105.112.98.242',1160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:23:43','2019-01-25 22:04:17'),(1341,'chemistry','197.210.62.66',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 22:14:16','2019-04-19 16:33:37'),(1342,'chemistry','197.210.226.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:16:32','2019-01-26 10:16:32'),(1343,'chemistry','197.210.52.4',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:20:35','2019-01-26 10:38:06'),(1344,'chemistry','197.210.45.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:38:39','2019-01-26 10:40:16'),(1345,'chemistry','197.210.227.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:58:13','2019-01-26 10:58:13'),(1346,'mathematics','197.210.227.236',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:08:55','2019-01-26 11:32:01'),(1347,'mathematics','197.210.227.193',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:10:35','2019-01-26 11:45:54'),(1348,'mathematics','197.210.226.194',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:17:53','2019-01-26 11:44:49'),(1349,'mathematics','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:47:35','2019-01-26 11:51:16'),(1350,'mathematics','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:48:03','2019-01-26 11:48:03'),(1351,'mathematics','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:50:09','2019-01-26 11:50:10'),(1352,'mathematics','54.161.51.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:52:23','2019-01-26 11:52:23'),(1353,'english','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:34:52','2019-01-26 12:34:53'),(1354,'english','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:39:32','2019-01-26 12:39:33'),(1355,'english','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:41:59','2019-01-26 12:47:45'),(1356,'english','197.210.8.2',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:13:52','2019-01-26 13:40:15'),(1357,'english','197.210.28.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:55:37','2019-01-26 13:58:04'),(1358,'english','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:08:24','2019-01-26 14:08:24'),(1359,'english','197.210.52.84',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:09:01','2019-01-26 14:15:02'),(1360,'english','197.210.52.208',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:10:08','2019-01-26 14:11:18'),(1361,'chemistry','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:16:42','2019-01-26 14:16:43'),(1362,'chemistry','197.210.52.208',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:20:31','2019-01-26 14:50:18'),(1363,'chemistry','197.210.52.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:45:38','2019-01-26 14:45:39'),(1364,'chemistry','197.210.47.74',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:53:11','2019-01-26 15:07:24'),(1365,'chemistry','105.112.98.2',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:41:26','2019-01-26 16:41:29'),(1366,'biology','41.203.78.47',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:56:45','2019-01-26 16:56:45'),(1367,'chemistry','105.112.98.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 09:04:09','2019-01-27 09:04:09'),(1368,'chemistry','105.112.99.102',833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:41:18','2019-01-27 19:46:51'),(1369,'biology','105.112.99.102',778,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:37','2019-01-27 19:46:51'),(1370,'physics','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1371,'economics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1372,'commerce','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:34'),(1373,'crk','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:37'),(1374,'mathematics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:44'),(1375,'english','105.112.99.102',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:46:51'),(1376,'geography','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:47:37'),(1377,'government','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:43','2019-01-27 19:47:37'),(1378,'accounting','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:45','2019-01-27 19:47:40'),(1379,'history','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:46','2019-01-27 19:43:54'),(1380,'englishlit','105.112.99.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:47:38'),(1381,'currentaffairs','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:48:50'),(1382,'civiledu','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:14:14','2019-01-27 19:47:37'),(1383,'mathematics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1384,'chemistry','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1385,'biology','105.112.98.183',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1386,'physics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1387,'english','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1388,'economics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1389,'commerce','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1390,'crk','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1391,'geography','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1392,'civiledu','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1393,'government','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1394,'englishlit','105.112.98.183',518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1395,'accounting','105.112.98.183',519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1396,'currentaffairs','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1397,'history','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:43','2019-01-27 21:21:57'),(1398,'chemistry','41.191.104.92',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:53:33','2019-01-27 20:54:45'),(1399,'biology','41.191.104.92',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:55:04','2019-01-27 20:55:04'),(1400,'chemistry','41.191.104.121',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:01:54','2019-02-06 15:11:52'),(1401,'mathematics','41.191.107.223',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:14:36','2019-04-16 11:16:36'),(1402,'mathematics','41.191.107.138',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:19:15','2019-04-13 21:33:36'),(1403,'physics','41.191.107.138',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:20:04','2019-01-27 21:23:56'),(1404,'mathematics','41.191.104.124',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:26:45','2019-01-27 21:34:02'),(1405,'physics','41.191.104.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:27:11','2019-01-27 21:27:24'),(1406,'biology','41.191.104.74',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:07:34','2019-01-27 22:12:08'),(1407,'biology','41.191.107.130',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:13:49','2019-01-27 22:13:59'),(1408,'biology','41.191.104.244',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:46:09','2019-01-27 22:46:50'),(1409,'biology','41.191.107.128',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:56:46','2019-01-27 23:56:03'),(1410,'chemistry','41.191.107.128',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:55:10','2019-01-27 23:55:51'),(1411,'economics','41.191.107.128',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:56:39','2019-01-27 23:56:41'),(1412,'geography','41.191.107.128',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:57:14','2019-01-28 15:11:27'),(1413,'biology','41.191.104.89',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:59:44'),(1414,'biology','41.191.104.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:51:19'),(1415,'biology','41.191.104.121',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:55:36','2019-01-28 00:56:31'),(1416,'chemistry','41.191.104.89',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:58:40','2019-01-28 09:07:28'),(1417,'biology','41.191.104.85',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:08:49','2019-01-28 01:15:07'),(1418,'biology','41.191.107.221',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:27:22','2019-01-28 01:29:30'),(1419,'biology','41.191.107.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:33:26','2019-01-28 01:33:26'),(1420,'biology','41.191.104.235',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:48:38','2019-01-28 01:48:38'),(1421,'mathematics','41.191.107.235',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:55:16','2019-01-28 09:02:13'),(1422,'chemistry','41.191.107.235',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:56:12','2019-01-28 08:59:29'),(1423,'mathematics','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:03:14','2019-01-28 09:03:14'),(1424,'physics','41.191.107.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:04:58','2019-01-28 09:04:58'),(1425,'mathematics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:50','2019-01-28 09:08:18'),(1426,'physics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:54','2019-01-28 09:08:18'),(1427,'geography','41.191.104.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:07:07','2019-01-28 09:08:12'),(1428,'chemistry','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:36:06','2019-01-28 10:36:06'),(1429,'english','41.191.107.141',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:49:24','2019-01-28 10:51:33'),(1430,'chemistry','46.229.168.149',23,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-28 11:21:50','2019-12-12 15:32:00'),(1431,'english','3.87.136.203',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:28:02','2019-01-28 14:24:49'),(1432,'englishlit','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:41:29','2019-01-28 11:41:29'),(1433,'mathematics','41.191.107.194',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:14','2019-01-28 12:06:41'),(1434,'chemistry','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:20','2019-01-28 12:01:32'),(1435,'physics','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:50','2019-01-28 12:03:12'),(1436,'geography','41.191.107.194',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:52:52','2019-01-28 12:03:18'),(1437,'chemistry','41.191.104.251',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:08:23','2019-01-28 12:09:42'),(1438,'physics','41.191.107.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:22:50','2019-01-28 12:22:50'),(1439,'physics','41.191.104.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:14','2019-01-28 12:29:14'),(1440,'chemistry','41.191.104.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:28','2019-01-28 12:32:08'),(1441,'mathematics','41.191.104.83',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:30:25','2019-01-28 12:34:16'),(1442,'mathematics','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:35:42','2019-01-28 12:56:25'),(1443,'geography','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:40:50','2019-01-28 12:52:24'),(1444,'chemistry','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:02','2019-01-28 13:03:30'),(1445,'physics','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:08','2019-01-28 12:53:41'),(1446,'geography','41.191.104.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:04:49','2019-01-28 13:17:51'),(1447,'mathematics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:08:42','2019-04-13 07:20:19'),(1448,'physics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:12:38','2019-01-28 13:14:17'),(1449,'chemistry','41.191.104.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:16:02','2019-01-28 13:16:02'),(1450,'geography','41.191.104.104',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:24','2019-01-28 13:30:58'),(1451,'chemistry','41.191.104.104',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:32','2019-01-28 13:28:22'),(1452,'physics','41.191.104.104',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:20:17','2019-01-28 13:22:40'),(1453,'chemistry','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:33:01','2019-01-28 13:35:54'),(1454,'physics','41.191.107.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:35:11','2019-01-28 13:40:07'),(1455,'mathematics','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:36:00','2019-01-28 13:41:19'),(1456,'mathematics','41.191.107.42',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:39','2019-01-28 13:53:09'),(1457,'chemistry','41.191.107.42',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:55','2019-02-06 14:53:26'),(1458,'geography','41.191.107.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:43:17','2019-01-28 13:43:17'),(1459,'physics','41.191.107.139',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:57:59','2019-01-28 14:02:46'),(1460,'chemistry','41.191.107.139',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:06','2019-01-28 14:04:13'),(1461,'mathematics','41.191.107.139',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:21','2019-01-28 14:04:17'),(1462,'geography','41.191.107.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:01:42','2019-01-28 14:01:42'),(1463,'mathematics','41.191.104.126',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:04:59','2019-04-13 16:07:19'),(1464,'physics','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:05:50','2019-01-28 14:06:23'),(1465,'biology','3.87.136.203',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:26:19','2019-01-28 14:28:08'),(1466,'mathematics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:18','2019-01-28 14:27:18'),(1467,'physics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:22','2019-01-28 14:27:22'),(1468,'chemistry','41.191.107.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:30:58','2019-01-28 14:30:58'),(1469,'physics','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:45','2019-01-28 14:40:48'),(1470,'chemistry','41.191.107.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:52','2019-01-28 14:40:52'),(1471,'chemistry','41.191.107.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:53:59','2019-01-28 14:53:59'),(1472,'mathematics','41.191.104.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:04','2019-01-28 15:06:48'),(1473,'physics','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:27','2019-01-28 15:00:27'),(1474,'chemistry','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:33','2019-01-28 15:00:33'),(1475,'geography','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:38','2019-01-28 15:00:38'),(1476,'mathematics','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:03:29','2019-01-28 15:08:10'),(1477,'physics','105.176.90.140',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:02','2019-01-28 15:18:49'),(1478,'chemistry','105.176.90.140',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:37','2019-01-28 15:04:37'),(1479,'geography','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:52','2019-01-28 15:08:28'),(1480,'mathematics','41.191.107.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:05:29','2019-01-28 15:08:01'),(1481,'physics','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:08:08','2019-01-28 15:08:08'),(1482,'mathematics','41.191.107.128',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:10:31','2019-01-28 15:10:39'),(1483,'physics','41.191.104.241',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:14','2019-01-28 15:28:02'),(1484,'chemistry','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:51','2019-01-28 15:27:55'),(1485,'mathematics','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:51','2019-01-28 15:28:09'),(1486,'geography','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:57','2019-01-28 15:28:35'),(1487,'geography','41.191.104.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:30:25','2019-01-28 15:32:10'),(1488,'mathematics','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:31:56','2019-01-28 15:31:56'),(1489,'physics','41.191.104.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:00','2019-01-28 15:32:07'),(1490,'chemistry','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:04','2019-01-28 15:32:04'),(1491,'physics','41.191.104.121',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:49:37','2019-02-06 14:58:19'),(1492,'geography','41.191.104.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:43','2019-01-28 15:58:43'),(1493,'geography','41.191.104.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:53','2019-01-28 15:58:53'),(1494,'chemistry','197.210.47.34',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 21:35:41','2019-01-28 21:40:22'),(1495,'chemistry','41.203.78.54',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 22:07:08','2019-07-20 14:00:13'),(1496,'chemistry','105.112.28.85',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 02:40:05','2019-01-29 02:40:42'),(1497,'chemistry','41.190.2.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 07:03:46','2019-01-29 07:03:46'),(1498,'chemistry','41.76.82.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 09:57:24','2019-01-29 09:57:24'),(1499,'english','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1500,'mathematics','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1501,'commerce','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1502,'englishlit','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1503,'crk','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1504,'geography','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1505,'insurance','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1506,'biology','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1507,'chemistry','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1508,'economics','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1509,'civiledu','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1510,'chemistry','41.203.78.51',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 13:55:15','2019-01-29 14:10:57'),(1511,'chemistry','154.120.108.55',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:17:52','2019-01-29 14:29:07'),(1512,'chemistry','154.118.21.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:37:44','2019-01-29 14:38:42'),(1513,'chemistry','197.210.28.128',997,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:55:16','2019-01-29 16:55:38'),(1514,'chemistry','197.210.53.210',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:47:02','2019-01-29 18:06:59'),(1515,'chemistry','197.210.52.103',295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:49:25','2019-01-29 18:50:59'),(1516,'chemistry','197.210.53.88',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:56:42','2019-01-29 17:56:42'),(1517,'chemistry','197.210.53.26',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:09:55','2019-01-29 18:22:46'),(1518,'chemistry','197.210.53.74',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:10:35','2019-01-29 18:10:35'),(1519,'chemistry','197.210.52.203',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:16:48','2019-02-06 16:04:53'),(1520,'chemistry','197.210.52.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:35:19','2019-01-29 18:39:12'),(1521,'chemistry','197.210.52.202',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:43:20','2019-02-06 16:09:29'),(1522,'chemistry','197.210.53.106',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:44:33','2019-01-29 18:45:54'),(1523,'chemistry','197.210.53.114',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:19','2019-04-20 15:08:50'),(1524,'chemistry','197.210.52.185',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:40','2019-01-29 18:51:44'),(1525,'chemistry','197.210.52.26',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:51:14','2019-01-29 18:51:36'),(1526,'englishlit','197.211.63.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:31:42','2019-01-29 20:31:42'),(1527,'chemistry','197.210.227.126',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:25','2019-01-29 20:32:25'),(1528,'chemistry','197.210.227.15',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:43','2019-01-29 20:32:43'),(1529,'chemistry','197.210.226.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:01','2019-01-29 20:37:21'),(1530,'chemistry','197.210.227.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:27','2019-01-29 20:36:27'),(1531,'mathematics','41.203.78.49',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:41:06','2019-01-29 20:41:06'),(1532,'crk','41.80.186.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 09:20:34','2019-01-30 09:20:34'),(1533,'biology','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:38','2019-01-30 15:50:53'),(1534,'commerce','54.211.28.234',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1535,'accounting','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1536,'crk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1537,'geography','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1538,'irk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1539,'insurance','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1540,'englishlit','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:56','2019-01-30 15:52:40'),(1541,'history','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:07','2019-01-30 15:51:07'),(1542,'government','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:09','2019-01-30 15:51:09'),(1543,'physics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1544,'economics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1545,'currentaffairs','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:40'),(1546,'english','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1547,'mathematics','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1548,'chemistry','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1549,'englishlit','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:16','2019-01-30 16:51:35'),(1550,'commerce','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:27'),(1551,'biology','54.226.7.228',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:34'),(1552,'geography','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1553,'civiledu','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1554,'currentaffairs','54.226.7.228',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1555,'history','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1556,'government','54.226.7.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1557,'english','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1558,'mathematics','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1559,'chemistry','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1560,'crk','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1561,'chemistry','41.216.173.30',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 16:01:01','2019-01-31 16:03:23'),(1562,'chemistry','45.33.136.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 23:43:59','2019-01-31 23:44:26'),(1563,'chemistry','41.203.78.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:52:42','2019-02-01 07:52:42'),(1564,'chemistry','197.210.53.198',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:55:26','2019-02-01 07:56:02'),(1565,'chemistry','197.210.53.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:57:16','2019-02-01 07:57:16'),(1566,'chemistry','45.33.136.190',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:27:53','2019-02-01 08:31:16'),(1567,'chemistry','197.211.60.139',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:43:16','2019-02-01 08:45:06'),(1568,'mathematics','197.211.60.139',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:45:55','2019-02-01 08:45:55'),(1569,'chemistry','197.210.29.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 09:32:41','2019-02-01 09:32:41'),(1570,'chemistry','105.112.98.24',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-02 22:45:13','2019-02-02 23:25:03'),(1571,'civiledu','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 20:57:22','2019-02-03 20:57:22'),(1572,'currentaffairs','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 21:10:15','2019-02-03 21:10:15'),(1573,'accounting','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1574,'chemistry','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1575,'crk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1576,'geography','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1577,'irk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1578,'insurance','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1579,'currentaffairs','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1580,'chemistry','41.66.199.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:36:31','2019-02-03 23:09:20'),(1581,'biology','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:54:09','2019-02-03 22:54:09'),(1582,'commerce','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 23:10:29','2019-02-03 23:10:29'),(1583,'geography','3.81.102.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 00:57:31','2019-02-04 00:57:31'),(1584,'mathematics','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1585,'commerce','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1586,'chemistry','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1587,'irk','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1588,'civiledu','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1589,'currentaffairs','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1590,'history','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1591,'commerce','54.162.226.75',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 23:35:46','2019-02-04 23:35:46'),(1592,'crk','54.162.82.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:35:33','2019-02-05 05:43:58'),(1593,'accounting','54.162.82.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:50:40','2019-02-05 05:50:40'),(1594,'history','54.90.106.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 07:25:12','2019-02-05 07:25:12'),(1595,'accounting','54.91.82.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 11:33:57','2019-02-05 11:33:57'),(1596,'chemistry','77.88.47.65',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-05 11:57:00','2020-03-07 02:21:05'),(1597,'geography','54.204.118.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 12:42:45','2019-02-05 12:42:45'),(1598,'chemistry','95.216.6.46',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 14:24:43','2019-02-05 14:25:02'),(1599,'geography','54.234.119.237',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 17:21:12','2019-02-05 17:21:12'),(1600,'irk','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 22:54:06','2019-02-05 22:54:06'),(1601,'chemistry','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 23:25:31','2019-02-05 23:25:31'),(1602,'accounting','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1603,'biology','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:23:05'),(1604,'physics','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1605,'chemistry','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1606,'geography','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1607,'economics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1608,'civiledu','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1609,'english','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1610,'mathematics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1611,'englishlit','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:51'),(1612,'government','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1613,'history','54.159.117.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:56','2019-02-06 01:22:56'),(1614,'physics','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:32:08'),(1615,'geography','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1616,'physics','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1617,'mathematics','41.191.104.236',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:50','2019-04-14 05:45:01'),(1618,'chemistry','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:33:26','2019-02-06 10:35:49'),(1619,'chemistry','41.191.107.136',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:04','2019-02-07 10:43:21'),(1620,'mathematics','41.191.107.136',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:11','2019-04-14 16:53:02'),(1621,'geography','41.191.107.136',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:15','2019-02-07 10:13:16'),(1622,'physics','41.191.107.136',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:40:28','2019-02-07 11:01:08'),(1623,'chemistry','41.191.107.212',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:49:30','2019-04-18 18:00:20'),(1624,'physics','41.191.107.212',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:34','2019-04-17 10:11:06'),(1625,'geography','41.191.107.212',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:44','2019-02-06 13:24:41'),(1626,'mathematics','41.191.107.212',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:49','2019-04-17 10:14:28'),(1627,'chemistry','41.191.107.52',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:54:59','2019-02-06 10:55:38'),(1628,'chemistry','41.191.104.115',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 11:10:51','2019-02-06 11:10:51'),(1629,'civiledu','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:13:06','2019-02-06 12:13:06'),(1630,'currentaffairs','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:35:08','2019-02-06 12:35:08'),(1631,'mathematics','41.191.107.220',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:39:15'),(1632,'mathematics','41.191.107.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:38:11'),(1633,'chemistry','41.191.107.220',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:02','2019-02-06 13:44:46'),(1634,'physics','41.191.107.220',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:55','2019-02-06 13:42:33'),(1635,'chemistry','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:03','2019-02-06 13:58:11'),(1636,'geography','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:46','2019-02-06 13:47:46'),(1637,'physics','41.191.104.99',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:51:59','2019-02-06 13:57:37'),(1638,'mathematics','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:56:24','2019-04-13 23:06:19'),(1639,'physics','41.191.107.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 14:43:26','2019-02-06 16:44:44'),(1640,'chemistry','54.221.129.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:09:36','2019-02-06 15:40:30'),(1641,'mathematics','41.191.104.121',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:15:51','2019-02-06 15:15:51'),(1642,'mathematics','41.191.104.217',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:29:45','2019-02-06 15:52:46'),(1643,'mathematics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1644,'biology','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1645,'physics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1646,'government','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1647,'economics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1648,'insurance','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1649,'chemistry','41.191.104.217',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:53:35','2019-02-06 15:55:08'),(1650,'chemistry','197.210.52.163',51,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:59:16','2020-04-12 16:16:23'),(1651,'chemistry','197.210.52.177',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:02:47','2019-02-06 16:09:41'),(1652,'chemistry','197.210.52.125',42,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:03:44','2019-11-29 22:14:03'),(1653,'chemistry','197.210.52.1',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:12','2019-02-06 16:04:36'),(1654,'chemistry','41.191.104.76',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:57','2019-02-06 16:04:57'),(1655,'mathematics','41.191.104.76',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:05:52','2019-04-17 07:41:52'),(1656,'chemistry','197.210.53.23',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:10:28','2020-02-04 09:59:59'),(1657,'chemistry','41.191.104.238',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:21','2019-02-06 16:23:37'),(1658,'mathematics','41.191.104.238',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:53','2019-02-06 17:51:13'),(1659,'geography','41.191.104.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:23:13','2019-02-06 16:23:13'),(1660,'physics','41.191.104.238',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:25:01','2019-02-06 17:52:29'),(1661,'mathematics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:23','2019-02-06 16:32:23'),(1662,'physics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:36','2019-02-06 16:32:36'),(1663,'chemistry','41.191.107.146',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:57:39','2019-02-06 16:57:39'),(1664,'physics','41.191.107.146',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:58:54','2019-02-06 17:00:38'),(1665,'physics','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:48','2019-02-06 17:03:48'),(1666,'geography','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:55','2019-02-06 17:03:55'),(1667,'chemistry','41.191.107.215',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:06:36','2019-03-28 16:12:49'),(1668,'mathematics','41.191.104.67',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:15:33','2019-02-06 17:20:02'),(1669,'chemistry','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:24:42','2019-02-06 17:27:26'),(1670,'physics','41.191.104.211',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:25:40','2019-02-06 17:26:06'),(1671,'mathematics','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:32','2019-04-14 07:05:25'),(1672,'geography','41.191.104.211',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:34','2019-02-06 17:27:34'),(1673,'geography','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:29:31','2019-02-07 13:38:12'),(1674,'physics','41.191.107.38',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:30:12','2019-02-07 16:06:38'),(1675,'mathematics','41.191.107.38',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:35:19','2019-04-13 08:12:17'),(1676,'geography','41.191.107.38',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:36:56','2019-02-07 16:06:34'),(1677,'mathematics','41.191.104.244',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:40:30','2019-04-14 21:51:22'),(1678,'physics','41.191.104.244',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:43:54','2019-02-06 17:46:16'),(1679,'geography','54.145.62.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 18:07:58','2019-02-06 18:07:58'),(1680,'english','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1681,'english','3.81.49.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1682,'mathematics','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1683,'physics','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1684,'commerce','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1685,'chemistry','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1686,'biology','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1687,'government','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1688,'civiledu','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1689,'irk','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1690,'currentaffairs','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1691,'biology','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:52'),(1692,'physics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1693,'government','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:35'),(1694,'geography','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1695,'economics','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1696,'irk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1697,'insurance','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1698,'mathematics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1699,'commerce','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1700,'crk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1701,'currentaffairs','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1702,'history','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:55'),(1703,'englishlit','54.159.238.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:48','2019-02-06 23:58:48'),(1704,'chemistry','129.205.112.31',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 04:25:52','2019-02-09 18:02:32'),(1705,'mathematics','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:08:57','2019-02-07 08:31:49'),(1706,'physics','41.191.107.132',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:24:48','2019-02-07 07:53:26'),(1707,'geography','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:52:40','2019-02-07 08:17:40'),(1708,'chemistry','41.191.107.132',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 08:14:41','2019-02-07 08:18:31'),(1709,'physics','41.191.107.129',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 14:01:28'),(1710,'physics','41.191.107.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 13:59:51'),(1711,'biology','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:01:37','2019-02-07 14:01:37'),(1712,'chemistry','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:03:41','2019-02-07 14:14:08'),(1713,'mathematics','41.191.107.129',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:15:41','2019-02-07 14:17:01'),(1714,'physics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:26:47','2019-02-07 14:47:40'),(1715,'chemistry','197.210.227.51',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:31:34','2019-02-07 14:40:43'),(1716,'physics','41.191.104.213',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:38:05','2019-02-07 14:59:23'),(1717,'chemistry','197.210.227.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:39:16','2019-02-07 14:39:16'),(1718,'chemistry','41.191.104.213',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:41:28','2019-02-07 15:01:58'),(1719,'chemistry','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:42:07','2019-02-07 14:42:07'),(1720,'economics','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:44:11','2019-02-07 14:44:11'),(1721,'geography','41.191.104.213',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:51:09','2019-02-07 14:51:09'),(1722,'mathematics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:53:38','2019-02-07 14:55:12'),(1723,'chemistry','41.191.107.34',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:18:05','2019-02-07 15:48:37'),(1724,'physics','41.191.107.34',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:30:55','2019-02-07 15:45:52'),(1725,'chemistry','41.191.107.38',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:54:06','2019-02-07 16:07:17'),(1726,'physics','41.191.104.81',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:07:36','2019-02-07 16:09:23'),(1727,'chemistry','41.191.104.81',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:12:44','2019-02-07 16:12:44'),(1728,'mathematics','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:46','2019-02-07 16:22:18'),(1729,'chemistry','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:54','2019-02-07 16:24:30'),(1730,'physics','41.191.107.206',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:57','2019-02-07 16:38:27'),(1731,'geography','41.191.107.206',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:59','2019-02-07 16:30:19'),(1732,'english','197.210.227.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:31:53','2019-02-07 16:31:53'),(1733,'history','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:33:37','2019-02-07 16:33:37'),(1734,'biology','41.191.107.206',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:03','2019-04-18 16:28:46'),(1735,'economics','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:39','2019-02-07 16:34:39'),(1736,'accounting','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:56','2019-02-07 16:34:56'),(1737,'english','184.73.22.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:38:25','2019-02-07 16:50:24'),(1738,'physics','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:43:12','2019-02-07 16:43:12'),(1739,'english','154.66.57.61',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:44:58','2019-02-07 16:47:26'),(1740,'accounting','41.191.107.193',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:45:10','2019-02-07 16:47:47'),(1741,'biology','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:50','2019-02-07 16:46:50'),(1742,'chemistry','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:55','2019-02-07 16:46:55'),(1743,'mathematics','41.191.107.193',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:48:25','2019-04-13 07:49:25'),(1744,'commerce','154.66.57.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:49:07','2019-02-07 16:49:08'),(1745,'mathematics','184.73.22.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:05:51','2019-02-07 17:05:51'),(1746,'englishlit','197.210.227.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:06:39','2019-02-07 17:06:57'),(1747,'mathematics','197.210.227.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:08:37','2019-02-07 17:08:37'),(1748,'mathematics','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:12:32','2019-02-07 17:12:32'),(1749,'english','197.210.227.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:13:32','2019-02-07 17:15:24'),(1750,'english','197.210.227.160',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:17:16','2019-02-07 17:17:16'),(1751,'government','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:04','2019-02-07 19:40:04'),(1752,'chemistry','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:05','2019-02-07 19:40:05'),(1753,'chemistry','41.203.78.86',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 22:56:58','2019-02-08 01:04:26'),(1754,'english','41.203.78.86',10687,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 23:11:07','2019-02-08 01:12:58'),(1755,'chemistry','41.203.72.82',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:02:21','2019-02-08 01:03:10'),(1756,'mathematics','41.203.78.86',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:13:49','2019-02-08 01:20:31'),(1757,'commerce','41.203.78.86',1400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:21:06','2019-02-08 01:25:03'),(1758,'accounting','129.205.112.31',637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 03:59:44','2019-02-10 07:56:43'),(1759,'commerce','129.205.112.31',16415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:02:10','2019-02-10 07:24:35'),(1760,'english','129.205.112.31',3880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:54:53','2019-02-09 20:30:32'),(1761,'mathematics','129.205.112.31',1581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 05:04:07','2019-02-10 08:18:03'),(1762,'economics','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:37:15','2019-02-08 09:37:15'),(1763,'currentaffairs','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:42:06','2019-02-08 09:42:06'),(1764,'commerce','41.203.78.102',5836,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 13:46:12','2019-02-08 21:42:21'),(1765,'english','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1766,'accounting','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1767,'biology','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1768,'englishlit','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1769,'government','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1770,'economics','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1771,'history','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1772,'insurance','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 16:42:58','2019-02-08 16:42:58'),(1773,'biology','54.161.98.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 17:53:20','2019-02-08 17:53:20'),(1774,'mathematics','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 20:43:14','2019-02-08 20:43:14'),(1775,'insurance','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:12:10','2019-02-08 21:12:10'),(1776,'chemistry','41.203.78.102',2128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:33:15','2019-02-08 22:12:38'),(1777,'mathematics','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:42:45','2019-02-08 21:51:29'),(1778,'english','41.203.78.102',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:43:28','2019-02-09 01:27:32'),(1779,'accounting','41.203.78.102',2720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:51:49','2019-02-08 21:56:42'),(1780,'biology','41.203.78.102',2400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:57:02','2019-02-08 22:05:16'),(1781,'physics','41.203.78.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:06:14','2019-02-08 22:07:44'),(1782,'englishlit','41.203.78.102',1880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:13:10','2019-02-08 22:20:30'),(1783,'government','41.203.78.102',2800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:21:29','2019-02-08 23:52:43'),(1784,'crk','41.203.78.102',3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:52:55','2019-02-09 00:00:48'),(1785,'chemistry','54.91.117.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:57:22','2019-02-08 23:57:22'),(1786,'geography','41.203.78.102',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:01:57','2019-02-09 00:24:16'),(1787,'economics','41.203.78.102',3720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:26:24','2019-02-09 00:34:36'),(1788,'irk','41.203.78.102',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:35:41','2019-02-09 00:37:20'),(1789,'civiledu','41.203.78.102',2240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:38:00','2019-02-09 00:44:30'),(1790,'insurance','41.203.78.102',1680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:46:06','2019-02-09 00:57:03'),(1791,'civiledu','52.55.225.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:48:42','2019-02-09 00:48:42'),(1792,'currentaffairs','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:57:53','2019-02-09 01:00:05'),(1793,'history','41.203.78.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 01:01:27','2019-02-09 01:01:41'),(1794,'government','54.197.84.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 03:29:54','2019-02-09 03:29:54'),(1795,'accounting','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 05:17:44','2019-02-09 05:17:44'),(1796,'crk','54.210.158.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 06:41:14','2019-02-09 06:41:14'),(1797,'chemistry','40.77.167.168',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 07:15:13','2020-01-13 09:41:58'),(1798,'mathematics','197.210.8.53',432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:27','2019-02-09 08:02:28'),(1799,'chemistry','197.210.8.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:53','2019-02-09 07:54:53'),(1800,'commerce','197.210.8.53',2379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:03:00','2019-02-09 09:22:09'),(1801,'mathematics','3.83.132.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:18:09','2019-02-09 08:18:09'),(1802,'biology','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:54:44','2019-02-09 08:54:44'),(1803,'chemistry','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:18:40','2019-02-09 09:18:40'),(1804,'englishlit','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:17','2019-02-09 09:19:17'),(1805,'mathematics','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:52','2019-02-09 09:19:52'),(1806,'economics','54.83.86.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 10:26:21','2019-02-09 10:26:21'),(1807,'chemistry','197.210.44.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:14:26','2019-02-09 11:15:08'),(1808,'physics','197.210.44.28',952,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:16:33','2019-02-09 12:01:21'),(1809,'commerce','197.210.227.64',78,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:22:57','2019-02-09 12:24:33'),(1810,'physics','54.167.138.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:50:33','2019-02-09 13:26:19'),(1811,'chemistry','157.55.39.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:39:52','2019-02-09 13:39:52'),(1812,'english','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:47:52','2019-02-09 13:47:52'),(1813,'government','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:53:44','2019-02-09 13:53:44'),(1814,'englishlit','54.160.227.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 14:42:34','2019-02-09 14:42:34'),(1815,'englishlit','34.207.56.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 17:36:00','2019-02-09 17:36:00'),(1816,'chemistry','46.229.168.134',103,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 18:20:56','2020-01-04 23:41:32'),(1817,'crk','54.205.112.119',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 18:24:29','2019-02-09 18:24:29'),(1818,'englishlit','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:31:53','2019-02-10 08:28:16'),(1819,'accounting','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:36:27','2019-02-09 20:36:27'),(1820,'history','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:41:04','2019-02-09 20:41:04'),(1821,'economics','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:52:59','2019-02-09 20:52:59'),(1822,'economics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 21:36:49','2019-02-09 21:36:49'),(1823,'chemistry','54.165.27.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 04:31:45','2019-02-10 04:31:45'),(1824,'geography','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:01:47','2019-02-10 08:01:47'),(1825,'physics','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:19:34','2019-02-10 08:25:15'),(1826,'history','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:37:28','2019-02-10 08:37:28'),(1827,'english','54.162.92.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 12:54:28','2019-02-10 12:54:28'),(1828,'mathematics','41.191.107.239',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:39:53','2019-02-10 14:01:17'),(1829,'physics','41.191.107.239',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:42','2019-02-10 13:48:33'),(1830,'history','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:47','2019-02-10 13:48:45'),(1831,'accounting','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:45:18','2019-02-10 13:52:35'),(1832,'mathematics','41.191.107.145',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:02:05','2019-02-11 14:40:35'),(1833,'economics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:04:14','2019-02-10 14:04:14'),(1834,'physics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:05:04','2019-02-10 14:05:04'),(1835,'geography','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:06:01','2019-02-10 14:06:01'),(1836,'government','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1837,'accounting','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1838,'physics','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1839,'crk','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1840,'civiledu','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1841,'insurance','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1842,'currentaffairs','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:28'),(1843,'history','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:30'),(1844,'english','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1845,'biology','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:25'),(1846,'chemistry','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1847,'irk','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1848,'englishlit','34.228.6.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:15','2019-02-11 02:52:15'),(1849,'chemistry','197.210.45.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 10:22:02','2019-02-11 10:22:02'),(1850,'chemistry','40.77.167.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:09:52','2019-02-11 13:09:52'),(1851,'biology','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:36:32','2019-02-11 13:36:32'),(1852,'history','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:37:35','2019-02-11 13:37:35'),(1853,'english','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1854,'accounting','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1855,'physics','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1856,'geography','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1857,'irk','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1858,'insurance','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1859,'currentaffairs','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1860,'mathematics','41.191.104.71',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:12:03','2019-02-11 14:12:03'),(1861,'mathematics','41.191.104.112',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:18:49','2019-02-11 14:18:49'),(1862,'chemistry','41.58.77.114',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:51','2019-02-11 14:28:05'),(1863,'physics','41.191.104.112',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:53','2019-02-11 14:26:11'),(1864,'history','41.191.104.112',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:23:33','2019-02-11 14:26:08'),(1865,'biology','41.58.77.114',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:24:08','2019-02-11 14:24:08'),(1866,'mathematics','41.58.77.114',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:25:00','2019-02-11 14:26:24'),(1867,'physics','41.191.104.234',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:35','2019-02-11 14:40:10'),(1868,'economics','41.191.104.234',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:52','2019-02-11 14:35:32'),(1869,'mathematics','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:41','2019-02-11 14:35:41'),(1870,'chemistry','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:47','2019-02-11 14:35:47'),(1871,'biology','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:37:04','2019-02-11 14:37:04'),(1872,'biology','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:45:01','2019-02-11 14:45:01'),(1873,'chemistry','105.112.99.29',197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:29:39','2019-02-11 16:54:32'),(1874,'physics','105.112.99.29',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:30:30','2019-02-11 16:50:11'),(1875,'biology','105.112.99.29',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:38:24','2019-02-11 16:41:30'),(1876,'mathematics','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1877,'commerce','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1878,'chemistry','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1879,'englishlit','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1880,'government','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1881,'irk','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1882,'insurance','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1883,'chemistry','40.77.167.19',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 08:00:52','2019-02-12 08:00:52'),(1884,'english','54.146.30.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:52:31','2019-02-12 09:52:31'),(1885,'chemistry','77.246.49.12',38,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:59:54','2019-02-12 10:43:38'),(1886,'chemistry','66.249.83.214',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:17:35','2019-02-15 07:42:21'),(1887,'chemistry','66.249.83.212',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:32:16','2019-02-17 16:13:54'),(1888,'geography','54.198.25.67',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 11:51:48','2019-02-12 11:51:48'),(1889,'english','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1890,'biology','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1891,'physics','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1892,'government','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1893,'irk','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 15:35:54'),(1894,'civiledu','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1895,'history','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:55:19'),(1896,'chemistry','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:13:08','2019-02-12 15:13:08'),(1897,'geography','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:27:03','2019-02-12 15:27:03'),(1898,'insurance','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:37:09','2019-02-12 15:37:09'),(1899,'currentaffairs','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:38:51','2019-02-12 15:38:51'),(1900,'accounting','54.224.187.178',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:15:56','2019-02-12 16:47:43'),(1901,'commerce','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:54:29','2019-02-12 16:54:29'),(1902,'chemistry','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:55:19','2019-02-12 16:55:19'),(1903,'english','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:56:44','2019-02-12 16:56:44'),(1904,'englishlit','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 17:05:53','2019-02-12 17:05:53'),(1905,'chemistry','77.246.53.3',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:29:38','2019-02-12 19:29:38'),(1906,'chemistry','46.229.168.132',61,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-12 19:33:18','2020-04-01 16:00:41'),(1907,'physics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:37:08','2019-02-12 19:37:08'),(1908,'mathematics','3.83.244.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 21:14:53','2019-02-12 21:14:53'),(1909,'chemistry','54.90.184.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:12:11','2019-02-12 23:12:11'),(1910,'accounting','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:50:49','2019-02-12 23:50:49'),(1911,'chemistry','82.145.222.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 02:31:59','2019-02-13 02:32:09'),(1912,'chemistry','41.220.28.0',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 03:41:16','2019-02-13 04:18:17'),(1913,'chemistry','40.77.167.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 04:07:04','2019-02-13 04:07:04'),(1914,'irk','54.226.159.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 05:17:46','2019-02-13 05:17:46'),(1915,'chemistry','77.246.53.157',1075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 06:15:44','2019-02-13 07:57:20'),(1916,'biology','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:18:12','2019-02-13 07:18:12'),(1917,'accounting','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:42:14','2019-02-13 07:42:14'),(1918,'chemistry','77.246.55.170',2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 09:57:35','2019-02-13 12:53:59'),(1919,'irk','54.234.114.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 10:48:37','2019-02-13 10:48:37'),(1920,'chemistry','77.246.49.61',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 13:40:12','2019-02-13 14:09:22'),(1921,'mathematics','77.246.49.61',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:09:22'),(1922,'mathematics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:11:21'),(1923,'chemistry','41.220.30.108',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:10','2019-02-13 14:13:10'),(1924,'physics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:17','2019-02-19 09:00:47'),(1925,'accounting','41.220.30.108',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:14:56','2019-02-13 14:17:32'),(1926,'insurance','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:41:06','2019-02-13 14:44:45'),(1927,'english','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1928,'mathematics','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1929,'accounting','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1930,'physics','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1931,'chemistry','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1932,'crk','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1933,'crk','54.211.35.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1934,'irk','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1935,'currentaffairs','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1936,'history','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1937,'mathematics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:12:14','2019-02-13 15:12:14'),(1938,'physics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:14:36','2019-02-13 15:14:37'),(1939,'chemistry','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:15:45','2019-02-13 15:15:45'),(1940,'irk','54.144.251.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:47:59','2019-02-13 15:47:59'),(1941,'physics','77.246.53.12',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:20:07','2019-02-13 16:34:41'),(1942,'mathematics','77.246.53.12',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:14','2019-02-13 16:35:19'),(1943,'chemistry','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:32','2019-02-13 16:34:32'),(1944,'accounting','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:48','2019-02-13 16:34:48'),(1945,'mathematics','77.246.53.162',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:07','2019-02-13 17:07:40'),(1946,'physics','77.246.53.162',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:43','2019-02-13 17:05:44'),(1947,'chemistry','77.246.53.162',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:21','2019-02-13 17:05:39'),(1948,'accounting','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:26','2019-02-13 16:54:33'),(1949,'commerce','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:57:16','2019-02-13 16:57:32'),(1950,'biology','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:59:47','2019-02-13 17:02:48'),(1951,'physics','54.159.21.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 18:06:23','2019-02-13 18:06:23'),(1952,'chemistry','46.229.168.150',12,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 02:03:11','2020-01-21 05:27:03'),(1953,'biology','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 02:28:08','2019-02-14 02:28:08'),(1954,'chemistry','41.86.149.34',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 07:40:21','2020-03-16 11:43:51'),(1955,'physics','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:41:02','2019-02-14 08:41:02'),(1956,'chemistry','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:45:15','2019-02-14 08:45:16'),(1957,'physics','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:45:52','2019-02-14 09:45:52'),(1958,'chemistry','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:12','2019-02-14 09:46:12'),(1959,'mathematics','77.246.49.1',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:22','2019-02-14 10:21:31'),(1960,'biology','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:31','2019-02-14 09:46:31'),(1961,'chemistry','66.249.93.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:08:04','2019-02-14 14:08:04'),(1962,'insurance','52.206.40.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:35:57','2019-02-14 14:35:57'),(1963,'irk','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:05:01','2019-02-14 16:05:01'),(1964,'mathematics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:25:27','2019-02-14 16:25:27'),(1965,'physics','107.167.107.223',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:26:57','2019-02-14 16:26:58'),(1966,'chemistry','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:28:35','2019-02-14 16:28:35'),(1967,'physics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:32:02','2019-02-14 16:32:02'),(1968,'physics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:02','2019-02-14 17:39:02'),(1969,'mathematics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:03','2019-02-14 17:39:03'),(1970,'chemistry','66.249.64.168',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:04','2019-02-15 07:38:28'),(1971,'mathematics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1972,'biology','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1973,'chemistry','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1974,'englishlit','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1975,'crk','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1976,'economics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1977,'civiledu','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1978,'mathematics','41.220.30.127',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:40:08','2019-02-14 18:40:09'),(1979,'chemistry','197.210.53.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 23:05:50','2019-02-14 23:11:24'),(1980,'chemistry','197.210.53.75',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 23:06:02','2019-10-28 09:52:49'),(1981,'physics','77.246.53.165',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:37:58','2019-02-15 02:38:49'),(1982,'physics','66.102.8.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:17','2019-02-15 02:56:50'),(1983,'physics','66.249.64.170',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:28','2019-02-15 08:55:28'),(1984,'physics','66.249.64.168',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:56:52','2019-02-16 03:08:43'),(1985,'mathematics','77.246.53.165',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:58:41','2019-02-15 02:58:41'),(1986,'chemistry','66.102.6.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 04:13:56','2019-02-15 04:13:56'),(1987,'chemistry','77.246.53.155',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:12:45','2019-02-15 05:12:46'),(1988,'physics','66.249.83.210',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:21:09','2019-02-17 08:51:10'),(1989,'chemistry','66.249.83.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:54','2019-02-15 05:37:54'),(1990,'chemistry','66.249.64.170',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:55','2019-02-15 05:40:03'),(1991,'chemistry','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:40:02','2019-02-15 05:40:02'),(1992,'chemistry','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 07:38:29','2019-02-15 07:38:29'),(1993,'physics','66.102.8.106',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:21','2019-02-16 03:07:38'),(1994,'physics','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:45','2019-02-15 08:54:45'),(1995,'physics','66.249.83.212',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:10','2019-02-16 03:29:02'),(1996,'physics','41.220.30.120',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:22','2019-02-15 08:59:22'),(1997,'history','54.166.99.0',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:39:50','2019-02-15 09:39:50'),(1998,'physics','185.26.180.219',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:40:20','2019-02-15 10:02:05'),(1999,'physics','77.246.55.130',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:34:33','2019-02-15 13:38:14'),(2000,'english','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:38:16','2019-02-15 13:38:16'),(2001,'insurance','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:22','2019-02-15 13:39:22'),(2002,'commerce','197.210.227.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:24','2019-02-15 13:39:24'),(2003,'commerce','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 14:41:28','2019-02-15 14:41:28'),(2004,'physics','66.249.83.214',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:06','2019-02-19 18:52:31'),(2005,'physics','77.246.53.177',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:34','2019-02-15 15:11:34'),(2006,'chemistry','66.249.83.198',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:13:48','2019-02-15 15:13:49'),(2007,'chemistry','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:15:21','2019-02-15 17:15:21'),(2008,'biology','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:32:07','2019-02-15 17:32:07'),(2009,'englishlit','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:50:05','2019-02-15 17:50:05'),(2010,'civiledu','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:58:30','2019-02-15 17:58:30'),(2011,'economics','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 18:01:11','2019-02-15 18:01:11'),(2012,'mathematics','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:23'),(2013,'englishlit','54.162.96.90',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:12'),(2014,'geography','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2015,'irk','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2016,'civiledu','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2017,'currentaffairs','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:25'),(2018,'history','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2019,'english','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2020,'economics','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2021,'insurance','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2022,'biology','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:18','2019-02-15 23:11:20'),(2023,'commerce','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:34:11','2019-02-16 11:34:11'),(2024,'economics','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:35:07','2019-02-16 11:35:07'),(2025,'economics','197.210.53.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:59:36','2019-02-16 11:59:36'),(2026,'economics','197.210.53.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:09:10','2019-02-16 12:09:10'),(2027,'physics','64.233.172.202',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:45:29','2019-02-16 12:45:29'),(2028,'chemistry','197.210.8.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 15:55:05','2019-02-16 15:56:43'),(2029,'chemistry','209.205.211.242',1740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:08:07','2019-02-20 09:17:37'),(2030,'biology','209.205.211.242',3303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:14:54','2019-02-19 18:49:01'),(2031,'mathematics','209.205.211.242',2635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 17:10:46','2019-02-17 21:51:53'),(2032,'english','209.205.211.242',3998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:01:15','2019-02-19 18:31:24'),(2033,'english','197.210.52.4',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:06:11','2019-02-16 18:06:11'),(2034,'physics','66.249.88.52',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:25:31','2019-02-16 18:25:32'),(2035,'physics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:27:41','2019-02-16 18:27:42'),(2036,'physics','209.205.211.242',2056,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:36:36','2019-02-19 18:57:19'),(2037,'economics','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:52:25','2019-02-16 18:52:25'),(2038,'insurance','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:53:03','2019-02-16 18:53:03'),(2039,'english','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2040,'accounting','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2041,'government','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2042,'crk','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2043,'geography','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2044,'economics','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2045,'insurance','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2046,'economics','209.205.211.242',3993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:07:13','2019-02-20 10:21:53'),(2047,'commerce','209.205.211.242',2963,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:32:01','2019-02-20 10:47:11'),(2048,'accounting','209.205.211.242',3180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:02:28','2019-02-20 10:34:51'),(2049,'government','209.205.211.242',4769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:18:37','2019-02-20 11:25:34'),(2050,'englishlit','209.205.211.242',2428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:34:54','2019-02-20 11:06:13'),(2051,'civiledu','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:45:29','2019-02-18 13:07:15'),(2052,'crk','209.205.211.242',2529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:02:00','2019-03-28 01:41:15'),(2053,'history','209.205.211.242',1491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:13:13','2019-02-20 11:54:00'),(2054,'geography','209.205.211.242',1807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:24:15','2019-02-18 13:11:51'),(2055,'irk','209.205.211.242',533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:57:46','2019-02-18 13:14:15'),(2056,'insurance','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 00:04:12','2019-02-18 13:21:54'),(2057,'chemistry','197.210.46.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 05:30:36','2019-02-17 05:30:36'),(2058,'mathematics','66.249.83.214',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-19 18:52:31'),(2059,'biology','66.249.83.212',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-17 09:09:38'),(2060,'physics','77.246.55.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:10:12','2019-02-17 09:10:33'),(2061,'mathematics','66.249.84.40',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:47','2019-02-17 10:32:48'),(2062,'mathematics','66.249.64.168',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:48','2019-02-17 10:32:48'),(2063,'mathematics','64.233.172.200',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:42','2019-02-17 10:33:42'),(2064,'mathematics','66.249.64.170',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:44','2019-02-17 10:33:44'),(2065,'mathematics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 16:14:46','2019-02-17 16:14:46'),(2066,'english','34.238.255.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 12:56:12','2019-02-18 12:56:12'),(2067,'currentaffairs','209.205.211.242',585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 13:24:51','2019-02-18 13:37:43'),(2068,'physics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:10:32','2019-02-18 17:10:32'),(2069,'mathematics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:11:34','2019-02-18 17:11:34'),(2070,'physics','77.246.53.136',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 19:24:42','2019-02-18 19:25:37'),(2071,'english','174.129.141.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 20:49:05','2019-02-18 20:49:05'),(2072,'chemistry','41.191.104.80',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 00:07:04','2019-04-18 08:45:16'),(2073,'insurance','3.82.5.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 01:58:28','2019-02-19 01:58:28'),(2074,'english','54.211.123.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 06:24:59','2019-02-19 06:24:59'),(2075,'chemistry','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:14:42','2019-02-19 10:14:42'),(2076,'englishlit','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:22:31','2019-02-19 10:22:31'),(2077,'economics','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:42:59','2019-02-19 10:42:59'),(2078,'chemistry','54.224.95.200',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 12:27:33','2019-02-19 12:27:33'),(2079,'insurance','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:12:57','2019-02-19 14:12:57'),(2080,'accounting','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:23:32','2019-02-19 14:23:32'),(2081,'civiledu','54.147.55.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:12:39','2019-02-19 18:12:39'),(2082,'physics','77.246.49.36',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:52:53','2019-02-19 18:53:54'),(2083,'chemistry','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:07','2019-02-19 18:53:10'),(2084,'biology','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:18','2019-02-19 18:53:48'),(2085,'mathematics','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:21','2019-02-19 18:53:47'),(2086,'government','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:02:12','2019-02-19 19:02:12'),(2087,'accounting','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:06:42','2019-02-19 19:06:42'),(2088,'chemistry','197.211.57.22',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 20:15:50','2019-02-19 20:22:45'),(2089,'economics','54.161.218.154',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:34','2019-02-19 21:58:35'),(2090,'accounting','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2091,'physics','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2092,'chemistry','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2093,'englishlit','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2094,'geography','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2095,'history','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2096,'english','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 00:48:47','2019-02-20 00:48:48'),(2097,'physics','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:00:30','2019-02-20 01:00:30'),(2098,'geography','66.249.70.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:02:46','2019-02-20 01:02:47'),(2099,'history','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:04:05','2019-02-20 01:04:05'),(2100,'economics','54.81.179.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:18:54','2019-02-20 01:18:54'),(2101,'chemistry','66.249.83.222',26,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2019-11-22 10:45:51'),(2102,'biology','66.249.83.192',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2020-03-04 20:11:48'),(2103,'physics','66.249.83.223',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:05','2019-02-22 08:52:17'),(2104,'physics','77.246.53.28',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:41','2019-02-20 05:28:41'),(2105,'chemistry','207.46.13.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:55:58','2019-02-20 05:55:58'),(2106,'insurance','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:05','2019-02-20 13:44:06'),(2107,'mathematics','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:23','2019-02-20 13:44:24'),(2108,'physics','54.204.105.177',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 15:14:53','2019-02-20 15:14:53'),(2109,'english','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:05:47','2019-02-20 18:05:47'),(2110,'biology','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:13:36','2019-02-20 18:13:37'),(2111,'physics','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2112,'chemistry','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2113,'crk','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2114,'geography','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2115,'economics','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2116,'insurance','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2117,'history','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2118,'currentaffairs','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2119,'mathematics','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:37','2019-02-20 18:36:37'),(2120,'biology','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:43','2019-02-20 18:36:43'),(2121,'english','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2122,'accounting','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2123,'government','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2124,'englishlit','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:49','2019-02-20 18:36:49'),(2125,'englishlit','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:29:11','2019-02-20 19:29:11'),(2126,'chemistry','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:54:43','2019-02-20 19:54:43'),(2127,'biology','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:55','2019-02-20 20:16:55'),(2128,'geography','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:59','2019-02-20 20:16:59'),(2129,'chemistry','105.112.26.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:32:19','2019-02-20 20:32:19'),(2130,'chemistry','54.83.94.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 23:36:55','2019-02-20 23:36:55'),(2131,'mathematics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2132,'mathematics','54.167.183.249',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2133,'commerce','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2134,'accounting','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2135,'physics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2136,'geography','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2137,'economics','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2138,'insurance','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2139,'english','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2140,'chemistry','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2141,'irk','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2142,'history','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2143,'chemistry','46.229.168.130',18,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2020-03-24 16:18:58'),(2144,'chemistry','46.229.168.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2019-02-21 14:32:12'),(2145,'geography','54.221.38.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 02:38:12','2019-02-22 02:38:12'),(2146,'mathematics','54.89.229.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 03:48:22','2019-02-22 03:48:22'),(2147,'chemistry','129.205.112.63',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:18:55','2019-02-22 06:19:17'),(2148,'mathematics','129.205.112.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:19:48','2019-02-22 06:19:48'),(2149,'mathematics','66.249.83.222',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 08:52:08','2019-02-27 03:45:37'),(2150,'economics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 09:26:06','2019-02-22 09:26:07'),(2151,'mathematics','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2152,'mathematics','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2153,'physics','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2154,'biology','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2155,'englishlit','34.201.133.169',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2156,'chemistry','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2157,'government','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2158,'crk','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2159,'geography','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2160,'civiledu','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2161,'civiledu','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2162,'history','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2163,'history','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2164,'economics','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2165,'chemistry','129.56.89.91',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 14:58:18','2019-02-22 14:58:54'),(2166,'mathematics','129.56.89.91',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 15:07:31','2019-02-22 15:07:31'),(2167,'economics','54.161.215.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 00:00:12','2019-02-23 00:00:12'),(2168,'history','3.93.218.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 04:23:21','2019-02-23 04:23:21'),(2169,'accounting','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2170,'biology','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2171,'chemistry','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2172,'government','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2173,'irk','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2174,'insurance','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2175,'currentaffairs','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2176,'chemistry','192.173.38.121',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 23:14:30','2019-02-23 23:14:42'),(2177,'english','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2178,'accounting','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2179,'government','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2180,'crk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2181,'geography','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2182,'irk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2183,'civiledu','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2184,'chemistry','160.120.230.179',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 23:58:16','2019-02-24 23:58:16'),(2185,'chemistry','197.210.45.125',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 10:22:09','2019-02-25 10:23:43'),(2186,'biology','197.210.28.208',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 12:45:32','2019-02-25 12:45:33'),(2187,'chemistry','207.46.13.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 09:41:52','2019-02-26 09:41:52'),(2188,'chemistry','129.205.113.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 15:05:12','2019-02-26 15:05:12'),(2189,'english','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2190,'english','3.87.158.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2191,'mathematics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2192,'commerce','3.87.158.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2193,'biology','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2194,'physics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2195,'geography','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2196,'government','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2197,'economics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2198,'history','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2199,'crk','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2200,'currentaffairs','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2201,'english','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2202,'mathematics','54.226.211.137',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:44'),(2203,'commerce','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2204,'chemistry','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2205,'government','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2206,'history','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2207,'accounting','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2208,'economics','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:30'),(2209,'irk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2210,'insurance','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2211,'chemistry','41.191.107.201',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:30:53','2019-02-26 19:30:53'),(2212,'chemistry','41.191.107.145',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:32:08','2019-02-26 19:33:01'),(2213,'physics','54.243.5.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 22:16:47','2019-02-26 22:16:47'),(2214,'accounting','54.166.233.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 23:08:29','2019-02-26 23:08:29'),(2215,'physics','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:36','2020-02-09 06:54:16'),(2216,'biology','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:43','2020-02-15 20:12:30'),(2217,'chemistry','66.249.83.223',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:44','2020-02-05 04:26:16'),(2218,'physics','77.246.53.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 03:45:58','2019-02-27 03:45:58'),(2219,'chemistry','66.249.93.52',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 11:18:17','2019-06-22 21:48:18'),(2220,'chemistry','41.191.104.245',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 12:41:52','2019-02-27 12:41:52'),(2221,'chemistry','66.249.93.48',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 12:41:34','2019-08-02 12:51:50'),(2222,'insurance','54.209.60.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 13:15:55','2019-02-28 13:15:55'),(2223,'mathematics','52.73.168.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 15:40:02','2019-02-28 15:40:02'),(2224,'chemistry','41.190.2.218',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:47:11','2019-03-01 08:49:37'),(2225,'mathematics','41.190.2.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:50:33','2019-03-01 08:50:34'),(2226,'english','41.190.2.218',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:52:26','2019-03-01 09:52:41'),(2227,'chemistry','66.249.66.158',82,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:22:29','2019-05-21 08:24:45'),(2228,'english','41.190.3.242',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:52:56','2019-03-01 10:52:56'),(2229,'physics','41.190.3.242',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:59:56','2019-03-01 10:59:56'),(2230,'english','41.190.2.156',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:08:07','2019-03-01 11:10:46'),(2231,'englishlit','41.190.2.156',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:11:29','2019-03-01 11:15:39'),(2232,'englishlit','41.190.31.166',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:22:14','2019-03-01 11:22:15'),(2233,'mathematics','41.242.89.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 14:24:39','2019-03-01 14:24:39'),(2234,'chemistry','54.85.62.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:23','2019-03-01 18:59:23'),(2235,'commerce','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2236,'physics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2237,'englishlit','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2238,'government','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2239,'crk','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2240,'economics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2241,'currentaffairs','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2242,'chemistry','88.6.244.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:08:40','2019-03-01 19:08:40'),(2243,'englishlit','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:21'),(2244,'english','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2245,'commerce','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:46'),(2246,'biology','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2247,'geography','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2248,'economics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2249,'irk','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2250,'history','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2251,'chemistry','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:58:25'),(2252,'government','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2253,'currentaffairs','107.20.60.54',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2254,'mathematics','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:05','2019-03-01 19:57:41'),(2255,'accounting','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2256,'physics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2257,'crk','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2258,'civiledu','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2259,'insurance','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2260,'chemistry','197.211.57.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 00:15:49','2019-03-02 00:15:49'),(2261,'mathematics','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:00:36','2019-03-02 04:00:36'),(2262,'geography','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:11:33','2019-03-02 04:11:33'),(2263,'insurance','3.89.38.207',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 06:24:49','2019-03-02 06:30:51'),(2264,'mathematics','54.80.44.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:08'),(2265,'biology','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:05'),(2266,'physics','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:39'),(2267,'chemistry','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:00'),(2268,'englishlit','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:52'),(2269,'economics','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2270,'civiledu','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2271,'commerce','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2272,'crk','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2273,'insurance','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2274,'currentaffairs','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:55'),(2275,'biology','105.112.44.175',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 15:21:52','2019-03-02 15:26:09'),(2276,'chemistry','105.112.21.63',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 16:03:37','2019-03-02 16:03:53'),(2277,'englishlit','169.159.66.161',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 17:05:42','2019-03-02 17:05:42'),(2278,'geography','34.229.78.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 22:36:51','2019-03-02 22:36:51'),(2279,'chemistry','105.112.23.37',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-03 21:25:44','2019-03-03 21:26:34'),(2280,'english','105.112.45.107',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 06:08:59','2019-03-04 06:09:55'),(2281,'chemistry','154.66.15.65',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 09:03:04','2019-03-04 09:03:04'),(2282,'chemistry','40.77.167.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 10:53:20','2019-05-08 11:01:31'),(2283,'chemistry','66.249.64.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 11:52:26','2019-03-04 11:52:26'),(2284,'chemistry','157.55.39.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 17:38:04','2019-03-04 17:38:04'),(2285,'english','129.56.36.43',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 20:56:28','2019-03-04 20:56:29'),(2286,'chemistry','66.249.93.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 22:00:50','2019-03-04 22:00:50'),(2287,'history','3.83.116.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 08:18:13','2019-03-05 08:18:13'),(2288,'english','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2289,'mathematics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2290,'biology','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2291,'irk','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2292,'insurance','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2293,'currentaffairs','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2294,'history','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2295,'commerce','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2296,'accounting','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2297,'economics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2298,'civiledu','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2299,'chemistry','129.205.112.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 05:43:39','2019-03-06 05:43:39'),(2300,'english','105.112.41.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 06:01:30','2019-03-06 06:01:30'),(2301,'chemistry','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:53:58','2019-03-07 07:53:58'),(2302,'english','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:03','2019-03-07 07:54:03'),(2303,'currentaffairs','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:05','2019-03-07 07:54:05'),(2304,'englishlit','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:11','2019-03-07 07:54:11'),(2305,'mathematics','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:13','2019-03-07 07:54:13'),(2306,'english','54.146.17.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 10:10:28','2019-03-07 10:10:28'),(2307,'chemistry','41.203.78.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 18:01:15','2019-03-07 18:01:40'),(2308,'mathematics','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:29:12','2019-03-08 00:29:12'),(2309,'accounting','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:43:38','2019-03-08 00:43:39'),(2310,'irk','129.205.112.111',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:47:07','2019-03-08 00:47:07'),(2311,'commerce','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:57:56','2019-03-08 00:57:56'),(2312,'mathematics','105.112.23.187',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 02:10:15','2019-03-08 02:10:16'),(2313,'chemistry','182.156.84.42',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 07:34:03','2019-03-08 07:34:38'),(2314,'english','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:32','2019-03-08 21:33:32'),(2315,'mathematics','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:51','2019-03-08 21:33:51'),(2316,'chemistry','66.249.66.128',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 22:28:29','2019-03-08 22:28:29'),(2317,'commerce','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2318,'accounting','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2319,'englishlit','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2320,'government','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2321,'crk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2322,'irk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2323,'civiledu','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2324,'biology','105.112.41.40',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 11:20:50','2019-03-10 11:20:50'),(2325,'english','66.249.66.159',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-10 18:44:59','2019-12-20 19:13:10'),(2326,'currentaffairs','66.249.66.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:01:44','2019-03-10 19:01:44'),(2327,'mathematics','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:07:00','2019-03-10 19:07:00'),(2328,'biology','66.249.66.159',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:11:15','2019-07-20 09:55:14'),(2329,'chemistry','197.242.96.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:22:23','2019-03-10 22:22:23'),(2330,'commerce','197.211.32.243',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:37:02','2019-03-10 22:37:05'),(2331,'english','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:35'),(2332,'commerce','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2333,'biology','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2334,'chemistry','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2335,'geography','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:27'),(2336,'currentaffairs','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:32'),(2337,'history','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:43'),(2338,'englishlit','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:37','2019-03-10 23:37:40'),(2339,'mathematics','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:47'),(2340,'physics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2341,'economics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2342,'civiledu','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2343,'english','105.112.106.77',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:59:59','2019-03-11 00:33:51'),(2344,'mathematics','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:03','2019-03-11 00:13:40'),(2345,'civiledu','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:29','2019-03-11 00:10:45'),(2346,'chemistry','41.216.168.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 10:36:04','2019-03-11 10:36:31'),(2347,'biology','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:11:03','2019-03-11 12:11:04'),(2348,'currentaffairs','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:16:12','2019-03-11 12:16:13'),(2349,'mathematics','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:21:12','2019-03-11 12:21:13'),(2350,'chemistry','197.210.62.63',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:26:12','2019-03-11 12:26:12'),(2351,'chemistry','197.210.54.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:24','2019-03-12 04:11:25'),(2352,'chemistry','197.210.54.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:37','2019-03-12 04:11:38'),(2353,'chemistry','207.46.13.222',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 23:05:23','2019-03-12 23:05:23'),(2354,'chemistry','105.112.16.104',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:30:57','2019-03-13 08:32:49'),(2355,'mathematics','105.112.16.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:33:15','2019-03-13 08:33:15'),(2356,'chemistry','157.55.39.236',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-14 04:31:32','2020-05-06 01:55:10'),(2357,'chemistry','129.18.151.222',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-14 17:26:09','2019-03-14 17:27:29'),(2358,'mathematics','18.207.245.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2359,'mathematics','18.207.245.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2360,'biology','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2361,'commerce','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2362,'physics','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2363,'chemistry','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2364,'economics','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2365,'irk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2366,'government','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2367,'history','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2368,'crk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2369,'physics','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:25','2019-03-16 12:35:39'),(2370,'mathematics','129.205.113.120',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:34','2019-03-16 12:33:03'),(2371,'commerce','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2372,'accounting','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2373,'chemistry','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2374,'englishlit','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2375,'civiledu','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2376,'insurance','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2377,'history','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2378,'english','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 12:33:00','2019-03-16 12:33:31'),(2379,'mathematics','105.178.112.15',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 13:18:33','2019-03-16 14:33:21'),(2380,'englishlit','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:40','2019-03-16 15:14:43'),(2381,'commerce','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:45','2019-03-16 15:15:22'),(2382,'history','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:47','2019-03-16 15:14:59'),(2383,'chemistry','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:49','2019-03-16 15:14:54'),(2384,'accounting','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:52','2019-03-16 15:15:17'),(2385,'civiledu','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:57','2019-03-16 15:15:01'),(2386,'insurance','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:15:19','2019-03-16 15:15:25'),(2387,'chemistry','40.77.167.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 18:24:33','2019-03-16 18:24:33'),(2388,'commerce','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2389,'accounting','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2390,'biology','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2391,'chemistry','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2392,'englishlit','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2393,'irk','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2394,'history','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2395,'mathematics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:53'),(2396,'accounting','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 08:48:07'),(2397,'biology','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:03:03'),(2398,'physics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:47'),(2399,'englishlit','100.24.30.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:02'),(2400,'currentaffairs','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:45'),(2401,'history','100.24.30.47',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:06'),(2402,'english','100.24.30.47',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:57:07','2019-03-17 09:11:58'),(2403,'economics','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:00:11'),(2404,'irk','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2405,'civiledu','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2406,'commerce','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2407,'crk','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2408,'geography','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2409,'english','3.93.187.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:32:15','2019-03-17 11:32:15'),(2410,'chemistry','37.9.87.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:48:48','2019-03-17 11:48:48'),(2411,'chemistry','94.130.237.95',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-18 23:20:28','2020-03-04 10:30:43'),(2412,'chemistry','46.229.168.133',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-19 07:43:34','2020-04-15 11:01:00'),(2413,'english','105.112.104.202',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 15:27:18','2019-03-19 15:27:19'),(2414,'chemistry','40.77.167.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 17:56:39','2019-03-19 17:56:39'),(2415,'chemistry','66.102.6.20',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 20:29:21','2019-03-19 20:29:22'),(2416,'chemistry','84.224.213.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 14:12:39','2019-03-20 14:12:39'),(2417,'english','105.112.104.10',340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:17:23','2019-03-20 20:12:29'),(2418,'irk','105.112.104.10',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:54:32','2019-03-20 19:54:32'),(2419,'accounting','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:07','2019-03-21 02:02:08'),(2420,'chemistry','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2421,'government','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2422,'geography','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2423,'irk','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2424,'currentaffairs','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2425,'history','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2426,'commerce','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2427,'biology','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2428,'chemistry','185.161.72.105',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 13:47:45','2019-03-21 13:47:45'),(2429,'english','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2430,'commerce','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2431,'physics','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2432,'government','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2433,'irk','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2434,'insurance','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2435,'currentaffairs','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2436,'physics','66.249.64.178',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-22 04:05:38','2019-09-25 11:24:23'),(2437,'chemistry','82.145.222.11',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 08:45:03','2019-03-22 08:53:13'),(2438,'crk','52.91.165.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 09:38:12','2019-03-22 09:38:12'),(2439,'economics','54.158.54.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 11:28:41','2019-03-22 11:28:41'),(2440,'history','54.90.213.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 12:47:11','2019-03-22 12:47:11'),(2441,'english','66.249.64.176',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:40:29','2019-04-12 08:26:44'),(2442,'commerce','66.249.64.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:50:23','2019-03-22 13:50:23'),(2443,'civiledu','66.249.64.178',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:55:48','2019-03-22 13:55:48'),(2444,'mathematics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2445,'chemistry','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2446,'crk','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2447,'geography','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2448,'economics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2449,'insurance','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2450,'history','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2451,'commerce','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2452,'physics','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2453,'englishlit','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:42'),(2454,'crk','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:00:30'),(2455,'economics','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2456,'irk','34.229.89.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2457,'history','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:43'),(2458,'english','34.229.89.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2459,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2460,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2461,'chemistry','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2462,'geography','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2463,'accounting','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2464,'civiledu','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2465,'insurance','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:42'),(2466,'currentaffairs','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:56'),(2467,'biology','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:37','2019-03-22 17:32:37'),(2468,'government','34.229.89.118',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:40','2019-03-22 17:32:45'),(2469,'mathematics','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:44','2019-03-22 17:32:44'),(2470,'english','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:18','2019-03-22 17:33:18'),(2471,'mathematics','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:19','2019-03-22 17:33:19'),(2472,'chemistry','41.191.107.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:21:08','2019-03-23 13:21:08'),(2473,'chemistry','41.191.107.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:44:44','2019-03-23 13:44:44'),(2474,'chemistry','129.205.112.163',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:17:58','2019-03-23 22:17:58'),(2475,'economics','129.205.112.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:18:49','2019-03-23 22:19:03'),(2476,'mathematics','197.210.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:44:13','2019-03-24 10:44:13'),(2477,'chemistry','197.210.226.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:46:33','2019-03-24 10:46:34'),(2478,'chemistry','197.211.53.242',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 10:42:54','2019-03-25 10:44:52'),(2479,'chemistry','41.203.117.95',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:03','2019-03-25 13:54:15'),(2480,'physics','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:28','2019-03-25 13:47:28'),(2481,'crk','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:13','2019-03-25 13:48:13'),(2482,'mathematics','41.203.117.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:31','2019-03-25 13:48:38'),(2483,'chemistry','41.203.117.96',143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:49:27','2019-03-25 14:31:34'),(2484,'accounting','41.203.117.96',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:30:45','2019-03-25 14:30:45'),(2485,'english','41.203.117.96',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:31:48','2019-03-25 14:31:48'),(2486,'currentaffairs','41.203.117.96',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:34:10','2019-03-28 05:33:36'),(2487,'english','105.112.46.123',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-26 13:20:41','2019-03-26 13:20:41'),(2488,'chemistry','46.229.168.153',58,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 15:28:52','2020-04-02 19:27:21'),(2489,'chemistry','46.229.168.140',46,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-03-26 21:40:59','2020-07-19 20:47:32'),(2490,'englishlit','41.80.214.85',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 06:56:24','2019-03-27 06:56:24'),(2491,'chemistry','73.59.41.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 21:49:59','2019-03-27 21:49:59'),(2492,'chemistry','41.203.72.196',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 08:11:19','2019-03-28 12:35:17'),(2493,'chemistry','40.77.167.104',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 15:19:42','2019-03-28 15:19:42'),(2494,'mathematics','129.205.112.28',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:06:58','2019-03-29 19:07:07'),(2495,'physics','129.205.112.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:07:30','2019-03-29 19:07:30'),(2496,'economics','3.80.51.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:44:22','2019-03-29 19:44:22'),(2497,'government','18.234.162.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 21:01:37','2019-03-29 21:01:37'),(2498,'chemistry','46.229.168.161',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-29 21:28:49','2019-12-18 04:07:27'),(2499,'irk','3.87.11.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 00:18:36','2019-03-30 00:18:36'),(2500,'geography','54.197.32.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 03:33:46','2019-03-30 03:33:46'),(2501,'biology','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:08:31','2019-03-30 08:08:31'),(2502,'insurance','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:26:32','2019-03-30 08:26:32'),(2503,'chemistry','3.84.72.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 02:49:20','2019-03-31 02:49:20'),(2504,'chemistry','34.204.94.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 04:43:23','2019-03-31 04:43:23'),(2505,'english','3.81.184.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 10:44:44','2019-03-31 10:44:44'),(2506,'chemistry','105.112.23.125',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:00:42','2019-03-31 13:15:36'),(2507,'english','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:09:11','2019-03-31 13:09:11'),(2508,'mathematics','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:11:16','2019-03-31 13:11:16'),(2509,'chemistry','197.211.47.194',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:03:32','2019-04-01 09:06:11'),(2510,'chemistry','41.76.196.129',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:06:31','2019-04-01 09:06:31'),(2511,'commerce','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2512,'biology','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2513,'government','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2514,'crk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2515,'irk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2516,'civiledu','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2517,'currentaffairs','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2518,'english','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:22','2019-04-02 02:07:22'),(2519,'biology','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:23','2019-04-02 02:07:27'),(2520,'commerce','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2521,'physics','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2522,'chemistry','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2523,'geography','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2524,'irk','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2525,'history','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2526,'government','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:28','2019-04-02 02:07:28'),(2527,'mathematics','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:41','2019-04-02 02:07:46'),(2528,'accounting','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2529,'englishlit','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2530,'currentaffairs','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:49'),(2531,'biology','3.86.140.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 04:02:20','2019-04-02 04:02:20'),(2532,'englishlit','3.94.89.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 06:08:13','2019-04-02 06:08:13'),(2533,'chemistry','41.184.180.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 08:54:01','2019-04-02 08:54:10'),(2534,'accounting','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:03:12','2019-04-02 10:03:12'),(2535,'government','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:26:32','2019-04-02 10:26:32'),(2536,'chemistry','207.46.13.126',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-02 13:11:18','2019-08-14 07:10:32'),(2537,'biology','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:17','2019-04-03 08:40:36'),(2538,'chemistry','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:29','2019-04-03 08:40:19'),(2539,'mathematics','105.112.44.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:41:16','2019-04-03 08:41:16'),(2540,'chemistry','209.97.150.141',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 09:48:38','2019-04-03 09:50:08'),(2541,'english','105.112.32.51',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:33','2019-04-03 11:02:48'),(2542,'biology','105.112.32.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:37','2019-04-03 11:02:37'),(2543,'chemistry','41.190.2.238',1555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:28:32','2019-04-03 11:47:36'),(2544,'mathematics','41.190.2.238',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:30:49','2019-04-03 11:30:49'),(2545,'physics','41.190.2.238',526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:47:52','2019-04-03 12:42:05'),(2546,'physics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:13:30','2019-04-03 15:13:31'),(2547,'chemistry','41.190.30.103',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:35:55','2019-04-03 15:36:14'),(2548,'mathematics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:39:13','2019-04-03 15:39:14'),(2549,'accounting','41.190.30.103',136,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:45:47','2019-04-03 15:46:17'),(2550,'economics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:49:22','2019-04-03 15:49:22'),(2551,'crk','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:51:56','2019-04-03 15:51:57'),(2552,'biology','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:54:17','2019-04-03 15:54:17'),(2553,'commerce','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:55:40','2019-04-03 15:55:40'),(2554,'government','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:58:11','2019-04-03 15:58:12'),(2555,'geography','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:00:47','2019-04-03 16:00:47'),(2556,'civiledu','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:02:39','2019-04-03 16:02:39'),(2557,'englishlit','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:05:21','2019-04-03 16:05:22'),(2558,'insurance','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:08:37','2019-04-03 16:08:38'),(2559,'currentaffairs','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:11:38','2019-04-03 16:11:38'),(2560,'history','41.190.30.103',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:14:03','2019-04-03 16:18:17'),(2561,'english','41.190.30.103',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:18:32','2019-04-03 16:20:28'),(2562,'government','41.190.2.134',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:33:07','2019-04-04 09:35:25'),(2563,'geography','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:38:24','2019-04-04 09:38:25'),(2564,'civiledu','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:39:50','2019-04-04 09:39:51'),(2565,'commerce','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:41:37','2019-04-04 09:41:37'),(2566,'crk','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:54:15','2019-04-04 09:54:16'),(2567,'economics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:57:56','2019-04-04 09:57:56'),(2568,'accounting','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:01:07','2019-04-04 10:01:07'),(2569,'mathematics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:06:55','2019-04-04 10:06:55'),(2570,'physics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:12:17','2019-04-04 10:12:17'),(2571,'history','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:21:45','2019-04-04 10:21:45'),(2572,'englishlit','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:24:08','2019-04-04 10:24:08'),(2573,'english','41.190.30.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:13:41','2019-04-04 13:13:42'),(2574,'mathematics','41.190.3.233',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:54:16','2019-04-04 13:54:16'),(2575,'chemistry','41.190.3.233',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:55:19','2019-04-04 13:55:19'),(2576,'chemistry','185.22.187.7',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 15:25:03','2019-04-04 15:25:20'),(2577,'chemistry','37.9.87.166',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-05 14:29:44','2019-10-25 17:45:28'),(2578,'irk','54.196.110.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 15:52:32','2019-04-05 15:52:32'),(2579,'mathematics','197.210.44.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:32','2019-04-05 16:49:32'),(2580,'chemistry','197.210.44.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:34','2019-04-05 16:49:34'),(2581,'chemistry','197.210.44.111',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:50:28','2019-04-05 16:51:41'),(2582,'chemistry','197.210.47.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:54:08','2019-04-05 16:54:09'),(2583,'chemistry','52.90.61.82',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:21:23','2019-04-05 18:36:20'),(2584,'currentaffairs','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:23:14','2019-04-05 18:23:14'),(2585,'crk','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:36:17','2019-04-05 18:36:17'),(2586,'civiledu','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:02','2019-04-05 18:37:02'),(2587,'english','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:32','2019-04-05 18:37:32'),(2588,'chemistry','157.55.39.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:59:25','2019-07-19 10:24:33'),(2589,'physics','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:17','2019-04-05 19:08:17'),(2590,'biology','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:21','2019-04-05 19:08:21'),(2591,'currentaffairs','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:29:36','2019-04-05 20:29:36'),(2592,'insurance','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:35:29','2019-04-05 20:35:29'),(2593,'physics','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:38:52','2019-04-05 21:38:52'),(2594,'irk','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:43:07','2019-04-05 21:43:07'),(2595,'chemistry','54.91.42.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:01','2019-04-05 21:54:36'),(2596,'commerce','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:13','2019-04-05 21:45:13'),(2597,'civiledu','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:50:08','2019-04-05 21:50:08'),(2598,'history','35.172.115.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 01:23:16','2019-04-06 01:23:16'),(2599,'currentaffairs','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:01','2019-04-06 03:46:01'),(2600,'crk','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:30','2019-04-06 03:46:30'),(2601,'englishlit','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 04:05:47','2019-04-06 04:05:47'),(2602,'accounting','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:26:27','2019-04-06 07:26:27'),(2603,'physics','3.85.62.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:19','2019-04-06 07:42:57'),(2604,'civiledu','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:26','2019-04-06 07:36:26'),(2605,'mathematics','197.210.61.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 14:29:44','2019-04-06 14:29:45'),(2606,'chemistry','207.46.13.167',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-06 18:40:36','2019-10-27 04:49:17'),(2607,'commerce','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2608,'accounting','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2609,'biology','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2610,'economics','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2611,'irk','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2612,'insurance','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2613,'currentaffairs','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2614,'english','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:24:22'),(2615,'mathematics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:02'),(2616,'biology','3.90.165.250',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:28'),(2617,'chemistry','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:47'),(2618,'government','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:16'),(2619,'geography','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:37'),(2620,'economics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:15'),(2621,'chemistry','141.0.13.241',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:16:18','2019-04-07 11:17:09'),(2622,'chemistry','105.112.104.108',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:17:50','2019-04-07 11:53:35'),(2623,'chemistry','82.145.222.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:22:54','2019-04-07 11:22:54'),(2624,'mathematics','105.112.104.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:46:52','2019-04-07 11:46:52'),(2625,'biology','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:15:42','2019-04-07 12:15:42'),(2626,'accounting','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:17:42','2019-04-07 12:17:42'),(2627,'chemistry','105.112.104.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:26:42','2019-04-07 13:27:24'),(2628,'biology','105.112.104.18',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:27:54','2019-04-07 13:28:33'),(2629,'mathematics','105.112.104.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:29:59','2019-04-07 13:29:59'),(2630,'chemistry','185.26.180.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:00:35','2019-04-07 16:00:35'),(2631,'chemistry','105.112.106.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:02:56','2019-04-07 16:02:56'),(2632,'chemistry','105.112.43.80',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 17:41:13','2019-04-07 17:41:38'),(2633,'chemistry','105.112.104.114',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:43:25','2019-04-08 04:55:15'),(2634,'mathematics','105.112.104.114',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:51:11','2019-04-08 04:51:12'),(2635,'chemistry','105.112.34.168',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 05:14:41','2019-04-08 05:14:55'),(2636,'chemistry','105.112.104.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 07:59:31','2019-04-08 07:59:31'),(2637,'chemistry','41.205.240.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:19:15','2019-04-09 00:19:15'),(2638,'economics','3.86.54.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:39:42','2019-04-09 00:39:42'),(2639,'commerce','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:29:18'),(2640,'accounting','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2641,'physics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2642,'crk','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2643,'economics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:23:09'),(2644,'insurance','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:44'),(2645,'history','3.88.201.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:56'),(2646,'mathematics','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:44:33','2019-04-09 09:44:33'),(2647,'accounting','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:54:57','2019-04-09 09:54:57'),(2648,'accounting','3.87.215.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 12:06:38','2019-04-09 12:06:38'),(2649,'physics','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:22','2019-04-09 17:06:22'),(2650,'economics','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:23','2019-04-09 17:05:23'),(2651,'accounting','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:47','2019-04-09 17:05:47'),(2652,'crk','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:57','2019-04-09 17:06:07'),(2653,'chemistry','207.46.13.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 02:00:09','2019-04-10 02:00:09'),(2654,'irk','54.173.242.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:23:34','2019-04-10 07:23:40'),(2655,'commerce','54.173.242.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:48:23','2019-04-10 07:48:23'),(2656,'government','54.147.61.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 09:44:06','2019-04-10 09:44:06'),(2657,'geography','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2658,'government','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2659,'economics','3.93.241.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 12:17:07','2019-04-10 12:17:07'),(2660,'irk','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:56','2019-04-10 14:28:56'),(2661,'history','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:57','2019-04-10 14:28:57'),(2662,'irk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:31','2019-04-10 15:59:53'),(2663,'accounting','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:33','2019-04-10 16:03:21'),(2664,'economics','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:47','2019-04-10 16:02:08'),(2665,'currentaffairs','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:51','2019-04-10 16:01:26'),(2666,'insurance','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:10','2019-04-10 16:01:37'),(2667,'biology','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:18','2019-04-10 16:02:37'),(2668,'commerce','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:48','2019-04-10 16:02:17'),(2669,'civiledu','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:49','2019-04-10 16:02:48'),(2670,'crk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:56','2019-04-10 16:02:27'),(2671,'government','3.80.78.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:02:58','2019-04-10 16:02:58'),(2672,'chemistry','207.46.13.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:32:08','2019-04-10 17:32:08'),(2673,'chemistry','66.249.69.48',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:41:29','2019-04-10 17:41:29'),(2674,'insurance','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:38:05','2019-04-10 18:38:05'),(2675,'civiledu','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:44:01','2019-04-10 18:44:01'),(2676,'irk','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:58:11','2019-04-10 18:58:11'),(2677,'government','3.87.45.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 20:21:49','2019-04-10 20:21:49'),(2678,'government','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:40','2019-04-10 22:50:40'),(2679,'geography','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:42','2019-04-10 22:50:42'),(2680,'english','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2681,'chemistry','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2682,'englishlit','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2683,'crk','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2684,'economics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:46'),(2685,'irk','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2686,'insurance','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2687,'biology','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:15','2019-04-11 00:10:18'),(2688,'mathematics','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:20','2019-04-11 00:11:23'),(2689,'government','54.86.96.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:30','2019-04-11 00:10:30'),(2690,'physics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:33','2019-04-11 00:11:18'),(2691,'accounting','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2692,'geography','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2693,'civiledu','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2694,'economics','3.93.17.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 02:50:27','2019-04-11 02:50:27'),(2695,'chemistry','197.253.24.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 10:49:51','2019-04-11 10:49:51'),(2696,'chemistry','157.55.39.202',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-11 12:13:39','2019-08-25 13:52:51'),(2697,'insurance','54.88.86.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 17:31:52','2019-04-11 17:31:52'),(2698,'chemistry','121.201.98.53',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 20:36:45','2019-04-11 20:36:50'),(2699,'english','41.191.107.216',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 06:44:42','2019-04-14 21:10:37'),(2700,'mathematics','41.191.104.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:09:38','2019-04-12 07:09:38'),(2701,'mathematics','41.191.107.41',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:45:52','2019-04-16 10:48:23'),(2702,'mathematics','41.191.107.131',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:54:27','2019-04-12 07:55:42'),(2703,'mathematics','41.191.104.115',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:01:58','2019-04-12 08:16:36'),(2704,'mathematics','41.191.107.49',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:17:28','2019-04-13 06:52:57'),(2705,'mathematics','41.191.104.102',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:25:53','2019-04-12 08:25:53'),(2706,'mathematics','66.249.64.180',125,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:28:03','2019-09-25 10:59:54'),(2707,'accounting','66.249.64.178',100,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:46:02','2019-09-30 03:38:01'),(2708,'chemistry','207.46.13.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:56:53','2019-04-12 08:56:53'),(2709,'mathematics','41.191.107.34',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:03:02','2019-04-13 23:22:24'),(2710,'english','41.191.107.34',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:06:00','2019-04-13 23:48:54'),(2711,'english','105.112.104.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 14:42:37','2019-04-12 14:42:37'),(2712,'chemistry','46.229.168.163',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 16:31:11','2020-04-13 20:58:16'),(2713,'mathematics','41.191.107.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:36:57','2019-04-13 06:40:11'),(2714,'mathematics','41.191.107.151',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:42:48','2019-04-15 12:15:35'),(2715,'english','41.191.107.49',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:53:45','2019-04-13 06:53:45'),(2716,'mathematics','41.191.107.229',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:15:13','2019-04-13 07:17:41'),(2717,'english','41.191.104.98',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:23:28','2019-04-13 07:26:33'),(2718,'mathematics','41.191.104.123',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:28:03','2019-04-13 07:33:06'),(2719,'english','41.191.107.56',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:34:59','2019-04-13 07:41:26'),(2720,'mathematics','41.191.107.56',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:35:12','2019-04-13 07:36:14'),(2721,'english','41.191.107.38',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:01:35','2019-04-15 22:19:39'),(2722,'mathematics','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:14:24','2019-04-13 08:22:39'),(2723,'mathematics','41.191.107.200',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:13:40','2019-04-13 15:16:42'),(2724,'english','41.191.104.245',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:19:40','2019-04-13 15:21:22'),(2725,'mathematics','41.191.104.245',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:20:48','2019-04-13 15:36:18'),(2726,'english','41.191.104.126',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:41:45','2019-04-13 16:13:10'),(2727,'biology','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:10:57','2019-04-13 16:10:57'),(2728,'mathematics','41.191.107.202',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:15:56','2019-04-15 09:45:36'),(2729,'english','41.191.107.202',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:18:30','2019-04-18 12:32:41'),(2730,'mathematics','41.191.107.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:27:24','2019-04-13 16:30:57'),(2731,'english','41.191.107.192',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:32:20','2019-04-14 16:42:26'),(2732,'english','41.191.107.207',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:35:14','2019-04-13 16:35:15'),(2733,'english','41.191.107.57',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:38:16','2019-04-14 18:25:42'),(2734,'biology','41.191.107.57',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:42:04','2019-04-13 16:42:04'),(2735,'english','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:06:49','2019-04-13 17:06:49'),(2736,'history','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:14:30','2019-04-13 17:14:30'),(2737,'english','41.191.107.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:03:33','2019-04-13 20:03:33'),(2738,'mathematics','41.191.104.69',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:53:34','2019-04-13 20:53:34'),(2739,'chemistry','68.38.183.43',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:59:58','2019-04-13 20:59:58'),(2740,'english','41.191.104.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:20:44','2019-04-17 07:51:45'),(2741,'mathematics','41.191.104.66',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:24:15','2019-04-14 05:46:29'),(2742,'english','41.191.107.150',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:03:19','2019-04-14 22:45:16'),(2743,'english','41.191.107.152',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:11:07','2019-04-13 22:21:17'),(2744,'mathematics','41.191.107.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:17:02','2019-04-13 22:17:02'),(2745,'english','41.191.107.200',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:23:24','2019-04-13 22:26:39'),(2746,'english','41.191.104.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:39:29','2019-04-13 22:41:41'),(2747,'english','41.191.107.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:51:32','2019-04-13 22:51:32'),(2748,'mathematics','41.191.107.222',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:54:57','2019-04-18 15:45:59'),(2749,'english','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:00:50','2019-04-13 23:00:50'),(2750,'english','41.191.107.137',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:32:04','2019-04-13 23:35:00'),(2751,'englishlit','18.232.74.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:13','2019-04-13 23:36:13'),(2752,'biology','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:44','2019-04-13 23:36:44'),(2753,'english','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:40:56','2019-04-13 23:40:56'),(2754,'mathematics','41.191.107.37',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:58:26','2019-04-14 00:21:39'),(2755,'biology','41.191.107.37',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:01:19','2019-04-14 00:01:19'),(2756,'english','41.191.107.37',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:09:50','2019-04-14 00:17:04'),(2757,'chemistry','157.55.39.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 04:27:16','2019-04-14 04:27:16'),(2758,'mathematics','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:15:55','2019-04-15 21:56:33'),(2759,'mathematics','41.191.104.105',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:19:56','2019-04-16 13:49:06'),(2760,'english','41.191.104.105',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:23:15','2019-04-16 14:41:34'),(2761,'english','41.191.104.247',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:34:00','2019-04-14 21:59:12'),(2762,'mathematics','41.191.107.39',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:52:06','2019-04-14 06:52:06'),(2763,'english','41.191.107.39',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:53:36','2019-04-16 11:08:43'),(2764,'mathematics','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:59:07','2019-04-14 06:59:07'),(2765,'english','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:01:04','2019-04-14 07:01:04'),(2766,'english','41.191.104.211',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:07:58','2019-04-17 08:04:27'),(2767,'english','41.191.104.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:15:46','2019-04-14 07:19:13'),(2768,'english','41.191.104.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:30:14','2019-04-14 07:32:46'),(2769,'chemistry','37.9.87.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 09:45:40','2019-04-14 09:45:40'),(2770,'irk','52.90.216.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 10:20:51','2019-04-14 10:20:51'),(2771,'biology','3.81.103.16',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 11:31:56','2019-04-19 04:55:11'),(2772,'accounting','34.204.107.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:03:29','2019-04-14 13:03:29'),(2773,'biology','41.191.107.44',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:11','2019-04-14 13:49:11'),(2774,'mathematics','41.191.107.44',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:49','2019-04-14 13:50:03'),(2775,'mathematics','41.191.104.250',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:35','2019-04-18 08:49:17'),(2776,'biology','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:42','2019-04-14 13:53:42'),(2777,'chemistry','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:47','2019-04-14 13:53:47'),(2778,'englishlit','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:18:28','2019-04-14 16:18:28'),(2779,'geography','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:22:19','2019-04-14 16:22:19'),(2780,'english','41.191.104.212',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:35:03','2019-04-17 05:50:48'),(2781,'english','41.191.107.136',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:55:31','2019-04-14 16:55:31'),(2782,'geography','54.152.49.211',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:59:08','2019-04-14 16:59:51'),(2783,'english','41.191.104.71',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:06:18','2019-04-14 17:13:26'),(2784,'english','41.191.104.116',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:16:25','2019-04-17 08:38:00'),(2785,'mathematics','41.191.104.116',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:25:32','2019-04-14 22:10:15'),(2786,'english','41.191.104.119',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:30:02','2019-04-14 17:44:00'),(2787,'english','41.191.107.55',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:47:44','2019-04-14 17:51:39'),(2788,'english','41.191.104.108',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:55:26','2019-04-14 18:02:51'),(2789,'english','41.191.107.205',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:07:34','2019-04-14 18:17:06'),(2790,'mathematics','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:30:52','2019-04-16 10:27:56'),(2791,'english','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:36:07','2019-04-16 10:29:42'),(2792,'english','41.191.104.240',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:37:18','2019-04-17 08:43:35'),(2793,'biology','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:48:01','2019-04-14 18:48:01'),(2794,'english','41.191.107.219',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:52:14','2019-04-14 18:52:15'),(2795,'english','41.191.107.129',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:56:38','2019-04-14 19:01:32'),(2796,'currentaffairs','3.90.232.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:06','2019-04-14 19:07:06'),(2797,'english','41.191.107.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:18','2019-04-14 19:09:59'),(2798,'english','41.191.104.227',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:14:06','2019-04-14 19:15:42'),(2799,'english','41.191.104.253',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:24:38','2019-04-14 19:24:38'),(2800,'english','41.191.104.112',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:46:42','2019-04-14 19:49:06'),(2801,'english','41.191.104.125',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:52:06','2019-04-14 19:52:07'),(2802,'english','41.191.104.252',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:13:43','2019-04-14 21:20:04'),(2803,'english','41.191.104.87',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:36:40','2019-04-14 21:43:10'),(2804,'english','41.191.107.237',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:45:45','2019-04-18 12:38:45'),(2805,'english','41.191.104.244',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:52:54','2019-04-14 21:58:31'),(2806,'chemistry','41.191.104.247',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:47','2019-04-14 21:59:47'),(2807,'biology','41.191.104.247',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:57','2019-04-14 22:02:53'),(2808,'biology','41.191.104.116',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:07:01','2019-04-14 22:10:51'),(2809,'currentaffairs','54.83.92.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:19:54','2019-04-14 22:19:54'),(2810,'english','41.191.107.43',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:31:31','2019-04-14 22:37:38'),(2811,'biology','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:38:27','2019-04-14 22:38:27'),(2812,'english','41.191.104.236',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:47:43','2019-04-14 22:51:24'),(2813,'english','41.191.107.215',86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:57:31','2019-04-21 07:04:12'),(2814,'english','41.191.104.122',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 23:14:59','2019-04-14 23:16:16'),(2815,'currentaffairs','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 04:56:40','2019-04-15 04:56:40'),(2816,'biology','41.191.104.236',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:06:52','2019-04-15 05:06:52'),(2817,'biology','41.191.107.143',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:09:27','2019-04-15 05:09:27'),(2818,'english','41.191.107.143',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:10:01','2019-04-17 21:35:39'),(2819,'chemistry','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:25:39','2019-04-15 05:25:39'),(2820,'chemistry','197.210.45.192',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:57:49','2019-04-15 05:58:34'),(2821,'english','41.191.107.151',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:44:16','2019-04-15 12:15:57'),(2822,'mathematics','41.191.104.230',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:47:22','2019-04-15 06:47:22'),(2823,'chemistry','100.24.41.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:39:29','2019-04-15 08:39:29'),(2824,'economics','100.24.41.153',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:41:00','2019-04-15 08:46:51'),(2825,'mathematics','41.191.107.45',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:19:04','2019-04-15 09:19:04'),(2826,'english','41.191.107.45',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:21:49','2019-04-15 09:23:48'),(2827,'physics','41.191.107.202',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:44:31','2019-04-15 09:44:31'),(2828,'accounting','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:45','2019-04-15 10:30:45'),(2829,'insurance','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:59','2019-04-15 10:30:59'),(2830,'accounting','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:29','2019-04-15 12:13:29'),(2831,'biology','54.146.247.244',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:34','2019-04-15 12:16:32'),(2832,'biology','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:17:48','2019-04-15 12:17:48'),(2833,'government','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:19:13','2019-04-15 12:19:13'),(2834,'mathematics','41.191.104.246',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:58:00','2019-04-15 12:58:00'),(2835,'english','41.191.104.246',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 13:05:40','2019-04-15 13:27:26'),(2836,'english','41.191.107.235',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:15:42','2019-04-15 14:15:42'),(2837,'english','41.191.107.149',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:19:44','2019-04-15 14:20:56'),(2838,'english','41.191.104.248',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:29:00','2019-04-15 14:31:19'),(2839,'english','41.191.107.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:32:49','2019-04-19 06:55:21'),(2840,'english','41.191.104.235',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:42:02','2019-04-17 08:31:05'),(2841,'mathematics','41.191.104.235',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:44:03','2019-04-15 14:44:48'),(2842,'english','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:39:05','2019-04-15 21:39:05'),(2843,'mathematics','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:41:15','2019-04-15 21:41:15'),(2844,'english','41.191.104.83',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:47:14','2019-04-15 21:48:53'),(2845,'english','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:51:15','2019-04-15 21:53:42'),(2846,'mathematics','41.191.107.201',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:59:07','2019-04-15 21:59:07'),(2847,'english','41.191.107.201',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:01:58','2019-04-15 22:03:34'),(2848,'mathematics','41.191.104.80',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:08:37','2019-04-18 08:45:25'),(2849,'english','41.191.104.80',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:11:48','2019-04-15 22:11:48'),(2850,'mathematics','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:24:37','2019-04-15 22:24:37'),(2851,'english','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:26:42','2019-04-15 22:26:42'),(2852,'mathematics','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2853,'commerce','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2854,'biology','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2855,'physics','34.207.128.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2856,'economics','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2857,'irk','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2858,'civiledu','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2859,'accounting','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2860,'chemistry','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:37:13'),(2861,'currentaffairs','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2862,'english','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2863,'government','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2864,'crk','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2865,'biology','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2866,'mathematics','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2867,'english','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2868,'chemistry','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2869,'government','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2870,'crk','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2871,'economics','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2872,'englishlit','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2873,'geography','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2874,'irk','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2875,'civiledu','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2876,'insurance','3.91.220.96',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2877,'insurance','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2878,'history','3.91.220.96',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2879,'history','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2880,'mathematics','54.224.201.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:37:58','2019-04-16 03:10:18'),(2881,'english','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2882,'accounting','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2883,'englishlit','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2884,'government','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2885,'crk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2886,'currentaffairs','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:59:59'),(2887,'commerce','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2888,'geography','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2889,'economics','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2890,'irk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2891,'civiledu','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2892,'history','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2893,'biology','54.224.201.145',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 03:10:11','2019-04-16 03:10:17'),(2894,'mathematics','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:12:18','2019-04-16 09:12:18'),(2895,'biology','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:29:02','2019-04-16 09:29:02'),(2896,'english','41.191.104.232',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:42:38','2019-04-16 09:48:20'),(2897,'english','41.191.107.41',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:49:42','2019-04-16 10:49:42'),(2898,'english','41.191.104.94',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:52:36','2019-04-16 11:05:20'),(2899,'mathematics','41.191.104.94',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:01:04','2019-04-16 13:37:18'),(2900,'english','41.191.107.223',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:14:00','2019-04-16 11:14:00'),(2901,'english','41.191.104.243',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:01:15','2019-04-16 13:01:15'),(2902,'english','41.191.104.113',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:04:04','2019-04-22 16:45:32'),(2903,'chemistry','157.55.39.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:39:34','2019-04-16 14:39:34'),(2904,'irk','54.226.182.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:47:43','2019-04-16 14:47:43'),(2905,'english','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:32:59'),(2906,'mathematics','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:46'),(2907,'accounting','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:50'),(2908,'biology','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:08'),(2909,'chemistry','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:33'),(2910,'currentaffairs','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:17'),(2911,'history','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:26'),(2912,'english','41.191.107.232',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-16 22:12:50','2020-01-17 15:50:46'),(2913,'mathematics','41.191.107.48',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:08:33','2019-04-17 05:08:33'),(2914,'english','41.191.107.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:11:56','2019-04-17 05:21:50'),(2915,'english','41.191.104.209',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:29:28','2019-04-17 05:35:08'),(2916,'english','41.191.104.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:38:16','2019-04-17 05:43:44'),(2917,'english','41.191.104.101',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:55:22','2019-04-17 05:57:06'),(2918,'english','41.191.104.215',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:08:35','2019-04-17 08:14:14'),(2919,'english','41.191.104.229',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:15:48','2019-04-17 08:15:48'),(2920,'english','41.191.107.157',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:54:44','2019-04-17 09:04:13'),(2921,'english','41.191.104.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:09:49','2019-04-17 09:14:17'),(2922,'english','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:34'),(2923,'mathematics','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:47'),(2924,'accounting','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2925,'englishlit','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:17'),(2926,'crk','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2927,'civiledu','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2928,'history','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:43'),(2929,'english','41.191.107.158',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:17:03','2019-04-17 09:21:36'),(2930,'english','41.191.104.79',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:43:16','2019-04-17 09:52:06'),(2931,'economics','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:54:34','2019-04-17 09:54:34'),(2932,'english','41.191.107.212',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:58:06','2019-04-18 18:02:13'),(2933,'biology','41.191.107.212',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:26','2019-04-17 10:10:02'),(2934,'chemistry','41.242.60.178',3655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:43','2019-04-18 16:24:22'),(2935,'mathematics','41.242.60.178',4368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:06:02','2019-04-18 16:14:42'),(2936,'history','41.191.107.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:11:59','2019-04-17 10:17:23'),(2937,'geography','41.242.60.178',4586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:46:59','2019-04-18 15:58:23'),(2938,'biology','41.242.60.178',3792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:47:33','2019-04-18 16:20:34'),(2939,'english','41.191.104.97',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 14:41:16','2019-04-17 14:41:16'),(2940,'chemistry','105.112.120.90',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:08','2019-04-17 19:01:28'),(2941,'crk','105.112.120.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:50','2019-04-17 18:54:50'),(2942,'chemistry','107.167.107.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:06:47','2019-04-18 08:06:48'),(2943,'english','41.242.60.178',10980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:10:26','2019-04-18 15:55:34'),(2944,'mathematics','105.112.22.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:05:20','2019-04-18 11:05:20'),(2945,'crk','41.242.60.178',5752,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:17:29','2019-04-18 15:57:03'),(2946,'chemistry','207.46.13.94',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-18 11:50:50','2019-12-16 22:19:20'),(2947,'chemistry','207.46.13.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:28','2019-04-18 11:52:29'),(2948,'chemistry','207.46.13.91',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:51','2019-04-18 11:52:52'),(2949,'chemistry','207.46.13.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:53:29','2019-04-18 11:53:29'),(2950,'english','104.133.10.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 12:22:48','2019-04-18 12:22:49'),(2951,'economics','41.242.60.178',4544,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:20','2019-04-18 15:59:44'),(2952,'irk','41.242.60.178',3510,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:42','2019-04-18 16:01:01'),(2953,'civiledu','41.242.60.178',4680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:03','2019-04-18 16:02:40'),(2954,'currentaffairs','41.242.60.178',4120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:25','2019-04-18 16:29:06'),(2955,'history','41.242.60.178',4000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:46','2019-04-18 16:13:14'),(2956,'commerce','41.242.60.178',4160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:30','2019-04-18 16:16:35'),(2957,'accounting','41.242.60.178',3955,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:52','2019-04-18 16:18:32'),(2958,'physics','41.242.60.178',3529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:35:37','2019-04-18 16:22:15'),(2959,'englishlit','41.242.60.178',3287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:20','2019-04-18 16:26:08'),(2960,'government','41.242.60.178',2998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:42','2019-04-18 16:27:48'),(2961,'english','41.191.104.254',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:11:36','2019-04-18 18:05:09'),(2962,'english','41.191.104.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:14:50','2019-04-18 15:14:50'),(2963,'english','41.191.107.222',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:36:08','2019-04-18 15:37:19'),(2964,'english','41.191.107.203',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:47:57','2019-04-28 08:22:11'),(2965,'mathematics','41.191.107.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:08:54','2019-04-18 16:08:54'),(2966,'english','41.191.107.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:11:13','2019-04-18 16:11:13'),(2967,'english','18.205.17.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:14:02','2019-04-18 17:14:02'),(2968,'crk','105.112.120.55',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:31:40','2019-04-18 17:32:05'),(2969,'english','41.191.104.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:37:57','2019-04-18 17:39:42'),(2970,'history','3.87.15.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 20:46:27','2019-04-18 20:46:27'),(2971,'chemistry','54.36.150.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 00:33:38','2019-04-19 00:33:38'),(2972,'mathematics','41.191.104.212',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:14:26','2019-04-19 03:14:26'),(2973,'biology','41.191.104.123',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:26:07','2019-04-19 03:26:39'),(2974,'currentaffairs','50.17.23.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:47:16','2019-04-19 03:47:16'),(2975,'economics','54.211.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 08:17:33','2019-04-19 08:17:33'),(2976,'chemistry','105.112.53.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:25:47','2019-04-19 11:25:47'),(2977,'english','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:28','2019-04-19 11:43:28'),(2978,'mathematics','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:34','2019-04-19 11:43:35'),(2979,'chemistry','129.56.87.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:45:39','2019-04-19 11:45:39'),(2980,'english','150.70.168.140',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:52:20','2019-04-19 11:52:20'),(2981,'chemistry','45.56.148.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:08:00','2019-04-19 12:08:00'),(2982,'chemistry','197.210.29.247',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:11:16','2019-04-19 12:11:16'),(2983,'chemistry','41.203.78.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:30:23','2019-04-19 12:31:44'),(2984,'chemistry','54.36.150.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 15:16:27','2019-04-19 15:16:27'),(2985,'chemistry','197.210.226.150',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:13:39','2019-04-19 17:13:39'),(2986,'chemistry','197.210.227.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:14:17','2019-04-19 17:14:17'),(2987,'chemistry','141.0.12.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 19:46:58','2019-04-19 19:46:58'),(2988,'chemistry','105.112.37.27',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:20:05','2019-04-19 21:26:36'),(2989,'physics','105.112.37.27',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:27:16','2019-04-19 21:28:59'),(2990,'chemistry','141.0.13.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:52:32','2019-04-19 21:52:32'),(2991,'chemistry','129.205.112.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:54:09','2019-04-19 21:54:09'),(2992,'chemistry','54.36.148.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 22:05:06','2019-04-19 22:05:06'),(2993,'accounting','3.81.231.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 03:16:50','2019-04-20 03:16:50'),(2994,'chemistry','197.210.53.127',62,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:17:30','2020-05-25 11:23:46'),(2995,'chemistry','46.229.168.145',7,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-04-20 06:50:25','2020-07-19 19:33:37'),(2996,'physics','3.84.223.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 06:58:19','2019-04-20 06:58:19'),(2997,'chemistry','129.205.112.93',82,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 07:41:38','2019-08-22 14:35:12'),(2998,'chemistry','54.36.149.78',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 10:51:52','2019-04-20 10:51:52'),(2999,'chemistry','197.210.45.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 11:27:41','2019-04-20 11:27:41'),(3000,'chemistry','141.0.13.88',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 12:34:07','2019-09-06 19:28:17'),(3001,'chemistry','197.149.95.94',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 14:34:54','2019-04-20 14:35:18'),(3002,'chemistry','197.210.52.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:06:20','2019-04-20 15:06:53'),(3003,'chemistry','197.210.53.251',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:07:19','2019-04-20 15:08:04'),(3004,'chemistry','105.112.68.65',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 18:16:36','2019-04-20 18:17:01'),(3005,'chemistry','213.205.240.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 20:44:50','2019-04-20 20:44:50'),(3006,'biology','66.249.69.154',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 01:47:39','2019-04-21 01:47:40'),(3007,'mathematics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:24','2019-04-21 02:39:48'),(3008,'commerce','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3009,'accounting','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3010,'physics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3011,'chemistry','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3012,'government','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3013,'geography','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:49'),(3014,'irk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3015,'currentaffairs','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:39','2019-04-21 02:39:41'),(3016,'biology','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:48','2019-04-21 02:39:48'),(3017,'crk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3018,'economics','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3019,'english','54.162.77.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:51','2019-04-21 02:39:51'),(3020,'chemistry','207.46.13.23',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 06:08:10','2019-04-21 06:08:10'),(3021,'chemistry','40.77.167.30',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 07:33:49','2019-04-21 07:33:49'),(3022,'chemistry','197.210.52.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:52:14','2019-04-21 20:54:39'),(3023,'mathematics','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:06','2019-04-21 20:54:06'),(3024,'chemistry','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:30','2019-04-21 20:54:30'),(3025,'chemistry','3.95.160.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:01:30','2019-04-21 21:01:30'),(3026,'mathematics','197.210.52.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:08:15','2019-04-21 21:08:15'),(3027,'geography','18.212.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 22:48:55','2019-04-21 22:48:55'),(3028,'english','3.90.10.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 00:18:21','2019-04-22 00:18:21'),(3029,'mathematics','41.191.104.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:45:03','2019-04-22 16:45:03'),(3030,'biology','41.191.104.113',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:47:55','2019-04-22 16:47:55'),(3031,'chemistry','54.36.149.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 18:08:13','2019-04-22 18:08:13'),(3032,'economics','3.91.230.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 21:54:59','2019-04-22 21:54:59'),(3033,'english','3.92.201.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 00:59:05','2019-04-23 00:59:05'),(3034,'biology','66.249.66.158',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 01:15:09','2019-07-28 01:21:20'),(3035,'mathematics','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:10','2019-04-23 03:28:10'),(3036,'civiledu','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:12','2019-04-23 03:28:12'),(3037,'physics','18.212.208.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:29:49','2019-04-23 04:14:14'),(3038,'commerce','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:49:07','2019-04-23 03:49:07'),(3039,'crk','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:57:30','2019-04-23 03:57:30'),(3040,'history','54.159.47.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 21:59:22','2019-04-23 21:59:22'),(3041,'irk','52.204.101.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 03:42:30','2019-04-24 03:42:30'),(3042,'chemistry','207.46.13.180',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:12','2019-04-24 08:03:12'),(3043,'chemistry','207.46.13.159',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:17','2019-04-24 08:03:17'),(3044,'chemistry','207.46.13.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:22','2019-04-24 08:03:22'),(3045,'chemistry','207.46.13.87',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:28','2019-08-04 15:43:48'),(3046,'english','66.249.66.158',87,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-25 18:26:25','2020-01-23 20:32:43'),(3047,'chemistry','1.127.110.152',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 00:54:05','2019-04-26 00:54:20'),(3048,'chemistry','40.77.167.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 03:53:28','2019-04-26 03:53:28'),(3049,'currentaffairs','3.90.189.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 05:24:35','2019-04-26 05:24:35'),(3050,'chemistry','197.210.44.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 10:16:42','2019-04-26 10:16:42'),(3051,'chemistry','1.127.106.232',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:04:42','2019-04-26 12:04:42'),(3052,'physics','1.127.106.232',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:40:22','2019-04-26 12:47:18'),(3053,'chemistry','46.229.168.138',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-26 13:52:16','2020-02-26 17:26:37'),(3054,'mathematics','1.127.109.88',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:09:51','2019-04-27 00:22:30'),(3055,'commerce','1.127.109.88',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:23:12','2019-04-27 00:24:06'),(3056,'biology','1.127.109.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:47:44','2019-04-27 00:47:44'),(3057,'chemistry','40.77.167.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:58:09','2019-04-27 00:58:09'),(3058,'physics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:19'),(3059,'english','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:06'),(3060,'government','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3061,'accounting','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3062,'biology','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3063,'crk','3.89.242.31',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3064,'chemistry','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3065,'geography','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:14'),(3066,'englishlit','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3067,'economics','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3068,'irk','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3069,'currentaffairs','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3070,'history','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3071,'mathematics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:22','2019-04-27 01:11:29'),(3072,'commerce','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:31','2019-04-27 01:12:19'),(3073,'biology','100.25.216.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 02:25:13','2019-04-27 02:25:13'),(3074,'crk','3.82.139.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 06:35:55','2019-04-27 06:35:55'),(3075,'chemistry','46.229.168.154',17,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-27 07:27:19','2020-03-26 03:24:26'),(3076,'commerce','52.91.249.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 08:35:06','2019-04-27 08:35:06'),(3077,'currentaffairs','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 09:50:55','2019-04-27 09:50:55'),(3078,'chemistry','154.118.65.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:30','2019-04-27 10:57:30'),(3079,'commerce','34.228.140.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:38','2019-04-27 10:57:38'),(3080,'biology','1.127.106.17',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:45:45','2019-04-27 12:46:43'),(3081,'mathematics','1.127.106.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:47:05','2019-04-27 12:48:52'),(3082,'englishlit','52.23.198.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 13:44:10','2019-04-27 13:44:10'),(3083,'chemistry','66.249.73.80',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 21:38:40','2019-04-27 21:38:40'),(3084,'mathematics','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3085,'english','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3086,'accounting','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3087,'physics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3088,'chemistry','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3089,'biology','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3090,'government','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3091,'economics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3092,'civiledu','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3093,'insurance','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:12'),(3094,'chemistry','41.203.78.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 08:55:23','2019-04-28 08:55:37'),(3095,'chemistry','41.190.2.64',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:52:36','2019-04-28 11:56:48'),(3096,'chemistry','41.190.3.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:56:16','2019-04-28 11:56:16'),(3097,'chemistry','157.55.39.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 21:48:24','2019-04-28 21:48:24'),(3098,'chemistry','40.77.167.71',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-29 06:23:21','2019-11-07 16:42:12'),(3099,'chemistry','41.190.2.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:39:52','2019-04-29 10:39:52'),(3100,'biology','41.191.104.87',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:40:48','2019-04-29 10:40:48'),(3101,'insurance','52.204.170.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 21:28:49','2019-04-29 21:28:49'),(3102,'crk','3.85.56.1',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 22:14:35','2019-04-29 22:14:35'),(3103,'accounting','3.85.173.186',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 23:37:13','2019-04-29 23:37:13'),(3104,'chemistry','157.55.39.12',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 07:21:41','2019-06-12 00:41:53'),(3105,'commerce','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3106,'biology','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3107,'physics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3108,'government','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3109,'irk','34.224.60.217',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:24:47'),(3110,'currentaffairs','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3111,'history','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3112,'english','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3113,'crk','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3114,'economics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3115,'civiledu','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3116,'insurance','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3117,'geography','34.224.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:33:31','2019-04-30 09:33:31'),(3118,'chemistry','46.229.168.151',51,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-30 09:38:26','2019-12-01 18:07:27'),(3119,'chemistry','154.68.194.212',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 16:36:27','2019-04-30 16:37:47'),(3120,'chemistry','157.55.39.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 04:27:55','2019-05-01 04:27:55'),(3121,'chemistry','54.36.148.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 05:05:50','2019-05-01 05:05:50'),(3122,'biology','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3123,'physics','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:50'),(3124,'englishlit','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3125,'government','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3126,'civiledu','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3127,'currentaffairs','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3128,'history','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3129,'mathematics','54.226.59.135',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:23','2019-05-01 07:01:57'),(3130,'english','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:54'),(3131,'commerce','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:46'),(3132,'accounting','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3133,'irk','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3134,'geography','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:42','2019-05-01 07:01:56'),(3135,'insurance','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:58:08','2019-05-01 06:58:08'),(3136,'chemistry','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 07:01:56','2019-05-01 07:01:56'),(3137,'chemistry','197.210.45.72',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:45:40','2019-05-01 10:59:40'),(3138,'mathematics','197.210.45.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:53:54','2019-05-01 10:55:42'),(3139,'english','197.210.45.72',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:55:54','2019-05-01 10:57:36'),(3140,'biology','41.191.104.237',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 14:18:27','2019-05-01 14:18:27'),(3141,'chemistry','197.210.54.37',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:20','2019-05-02 10:53:48'),(3142,'chemistry','197.210.54.223',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:32','2019-05-02 10:47:10'),(3143,'chemistry','197.210.55.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 10:14:45','2019-05-02 10:50:02'),(3144,'chemistry','197.210.226.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:20:04','2019-05-02 11:20:04'),(3145,'chemistry','197.210.226.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:22:30','2019-05-02 11:22:30'),(3146,'chemistry','197.210.8.29',630,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:34:06','2019-05-02 12:14:01'),(3147,'chemistry','197.210.54.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 13:47:41','2019-05-02 13:48:21'),(3148,'chemistry','129.205.112.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 04:12:08','2019-05-03 04:12:09'),(3149,'chemistry','197.210.29.46',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 07:52:22','2019-05-03 08:00:45'),(3150,'chemistry','197.210.54.222',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:06:50','2019-05-03 09:26:09'),(3151,'chemistry','197.210.55.133',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:07:57','2019-05-03 09:13:11'),(3152,'chemistry','197.210.54.105',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:11:28','2019-05-03 09:28:30'),(3153,'chemistry','197.210.55.36',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:54:00','2019-05-03 08:55:53'),(3154,'mathematics','105.112.10.87',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 11:24:44','2019-05-03 11:24:44'),(3155,'chemistry','197.210.60.42',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 12:22:25','2019-05-03 13:34:02'),(3156,'mathematics','197.210.60.42',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 13:36:32','2019-05-03 13:54:05'),(3157,'mathematics','197.210.55.133',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:55:08','2019-05-04 06:23:05'),(3158,'mathematics','197.210.54.38',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:57:02','2019-05-04 06:24:02'),(3159,'mathematics','197.210.54.132',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:59:05','2019-05-04 06:07:02'),(3160,'mathematics','197.210.54.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 06:25:03','2019-05-04 06:25:03'),(3161,'chemistry','41.190.3.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 12:28:58','2019-05-04 12:28:58'),(3162,'chemistry','197.210.44.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 15:39:23','2019-05-05 15:39:23'),(3163,'chemistry','40.77.167.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 21:50:59','2019-07-20 03:21:08'),(3164,'mathematics','18.204.19.147',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3165,'physics','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3166,'accounting','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:49'),(3167,'englishlit','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3168,'economics','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3169,'irk','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3170,'insurance','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3171,'geography','18.204.19.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:44','2019-05-06 23:11:44'),(3172,'english','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:08'),(3173,'commerce','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:01'),(3174,'chemistry','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3175,'currentaffairs','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3176,'accounting','23.22.231.188',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 02:31:16','2019-05-08 02:31:16'),(3177,'insurance','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 13:09:16','2019-05-08 13:09:17'),(3178,'physics','66.249.66.158',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 14:31:06','2019-05-08 14:31:06'),(3179,'biology','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 22:48:34','2019-05-08 22:48:34'),(3180,'economics','105.112.38.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 13:52:26','2019-05-09 13:52:26'),(3181,'mathematics','3.80.87.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 18:51:06','2019-05-09 18:51:06'),(3182,'chemistry','187.85.6.94',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 20:51:54','2019-05-09 20:52:08'),(3183,'englishlit','54.196.16.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 00:29:52','2019-05-10 00:29:52'),(3184,'englishlit','105.112.106.10',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 06:29:03','2019-05-10 06:29:03'),(3185,'chemistry','129.56.111.134',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 07:46:16','2019-05-10 07:49:26'),(3186,'chemistry','129.205.112.138',591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 09:28:33','2019-05-10 11:48:10'),(3187,'chemistry','207.46.13.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 10:25:32','2019-05-10 10:25:32'),(3188,'english','129.205.112.138',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 11:48:25','2019-05-10 11:52:58'),(3189,'english','129.205.112.140',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 18:19:45','2019-05-10 18:19:45'),(3190,'chemistry','172.90.37.138',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:27:48','2019-05-13 00:36:13'),(3191,'biology','172.90.37.138',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:31:17','2019-05-11 14:31:17'),(3192,'geography','3.93.186.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 17:05:27','2019-05-11 17:05:27'),(3193,'chemistry','54.197.219.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 21:40:32','2019-05-11 21:40:32'),(3194,'english','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3195,'mathematics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3196,'commerce','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3197,'biology','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3198,'physics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3199,'economics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3200,'irk','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3201,'economics','54.164.105.120',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 01:32:51','2019-05-12 01:32:51'),(3202,'biology','66.249.64.176',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-12 05:47:32','2019-09-21 02:44:48'),(3203,'mathematics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3204,'commerce','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3205,'biology','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3206,'englishlit','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3207,'economics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3208,'civiledu','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3209,'history','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3210,'chemistry','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3211,'government','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3212,'crk','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3213,'geography','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3214,'civiledu','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3215,'currentaffairs','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3216,'history','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3217,'mathematics','3.81.224.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:05:34','2019-05-12 07:05:34'),(3218,'english','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3219,'mathematics','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:59:25'),(3220,'commerce','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:48'),(3221,'physics','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:27'),(3222,'crk','34.229.209.208',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3223,'irk','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3224,'currentaffairs','34.229.209.208',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3225,'chemistry','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:58:54'),(3226,'government','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:45:06'),(3227,'economics','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:49:05'),(3228,'biology','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:49:05'),(3229,'insurance','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:58:54'),(3230,'accounting','34.229.209.208',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:38','2019-05-12 09:58:38'),(3231,'geography','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:42','2019-05-12 09:58:54'),(3232,'civiledu','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3233,'history','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3234,'currentaffairs','54.80.195.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 10:51:10','2019-05-12 10:51:10'),(3235,'chemistry','46.229.168.131',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 23:53:27','2020-05-04 19:51:47'),(3236,'biology','54.146.12.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 01:52:08','2019-05-13 01:52:08'),(3237,'physics','3.82.108.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 03:15:59','2019-05-13 03:15:59'),(3238,'physics','54.152.180.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 06:31:46','2019-05-13 06:31:46'),(3239,'english','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 07:47:11','2019-05-13 07:47:11'),(3240,'mathematics','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 08:15:22','2019-05-13 08:15:22'),(3241,'commerce','3.84.15.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 09:46:15','2019-05-13 09:46:15'),(3242,'commerce','54.157.233.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 12:58:13','2019-05-13 12:58:13'),(3243,'irk','54.175.238.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 17:30:45','2019-05-13 17:30:45'),(3244,'economics','18.206.157.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 19:50:15','2019-05-13 19:50:15'),(3245,'accounting','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3246,'englishlit','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3247,'government','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3248,'crk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3249,'geography','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3250,'irk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3251,'currentaffairs','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3252,'economics','18.234.203.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:23:50','2019-05-14 09:23:50'),(3253,'physics','66.249.64.180',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-14 11:36:21','2019-08-24 00:09:49'),(3254,'biology','54.221.14.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 17:29:34','2019-05-14 17:29:34'),(3255,'chemistry','46.229.168.162',43,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-15 05:36:54','2020-03-22 22:42:10'),(3256,'crk','3.94.115.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 08:37:16','2019-05-15 08:37:16'),(3257,'english','54.159.102.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 10:04:02','2019-05-15 10:04:02'),(3258,'currentaffairs','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:34:44','2019-05-15 14:34:44'),(3259,'geography','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:57:11','2019-05-15 14:57:11'),(3260,'government','54.224.250.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 18:04:50','2019-05-15 18:04:50'),(3261,'government','3.84.0.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:54:43','2019-05-15 19:54:43'),(3262,'chemistry','77.88.47.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:56:40','2019-05-15 19:56:40'),(3263,'englishlit','3.84.53.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 23:23:15','2019-05-15 23:23:15'),(3264,'crk','107.20.105.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:20:12','2019-05-16 00:20:12'),(3265,'chemistry','34.228.195.54',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:22:33','2019-05-16 03:09:28'),(3266,'chemistry','40.77.167.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:07:33','2019-05-16 11:07:33'),(3267,'englishlit','52.202.251.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:24:33','2019-05-16 11:24:33'),(3268,'chemistry','5.255.250.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-16 21:12:24','2019-08-21 01:57:50'),(3269,'accounting','54.92.151.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 21:37:19','2019-05-16 21:37:19'),(3270,'chemistry','46.229.168.146',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 02:19:29','2020-04-16 08:40:54'),(3271,'chemistry','46.229.168.139',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 17:44:01','2020-05-30 04:55:22'),(3272,'commerce','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3273,'government','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3274,'crk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3275,'irk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3276,'insurance','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3277,'currentaffairs','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3278,'history','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3279,'mathematics','105.112.52.3',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 21:46:44','2019-05-17 21:46:44'),(3280,'chemistry','54.36.148.94',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-18 05:43:40','2020-05-29 00:37:58'),(3281,'chemistry','3.84.208.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 09:11:50','2019-05-18 09:11:50'),(3282,'chemistry','40.77.167.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 16:21:00','2019-05-18 16:21:00'),(3283,'accounting','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:09','2019-05-18 18:40:09'),(3284,'history','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:52','2019-05-18 18:40:52'),(3285,'mathematics','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:39'),(3286,'english','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:50'),(3287,'commerce','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:44'),(3288,'physics','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:42'),(3289,'biology','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3290,'crk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3291,'irk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3292,'currentaffairs','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3293,'economics','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3294,'history','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3295,'accounting','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:37','2019-05-18 19:44:37'),(3296,'englishlit','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:47','2019-05-18 19:44:47'),(3297,'insurance','3.80.150.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 22:44:14','2019-05-18 22:44:14'),(3298,'chemistry','157.55.39.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 04:44:12','2019-05-19 04:44:12'),(3299,'history','3.94.79.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 06:05:58','2019-05-19 06:05:58'),(3300,'chemistry','40.77.167.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 16:57:00','2019-05-19 16:57:00'),(3301,'insurance','54.163.157.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 03:05:04','2019-05-20 03:05:04'),(3302,'chemistry','157.55.39.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 13:59:47','2019-05-20 13:59:47'),(3303,'english','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3304,'mathematics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3305,'biology','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3306,'physics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3307,'crk','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3308,'economics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3309,'insurance','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3310,'english','54.91.198.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 17:32:47','2019-05-21 17:32:47'),(3311,'physics','54.145.4.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 18:22:25','2019-05-21 18:22:25'),(3312,'mathematics','54.234.10.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 02:40:52','2019-05-22 02:40:52'),(3313,'mathematics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3314,'physics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3315,'crk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3316,'geography','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3317,'irk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3318,'civiledu','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3319,'history','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3320,'chemistry','95.216.226.236',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 05:15:03','2019-05-25 05:21:26'),(3321,'government','52.55.44.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 07:55:42','2019-05-23 07:55:42'),(3322,'civiledu','54.208.169.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 10:29:28','2019-05-23 10:29:28'),(3323,'chemistry','139.78.253.195',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:06:11','2019-05-23 23:22:30'),(3324,'chemistry','3.85.143.239',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:44:40','2019-05-23 21:04:27'),(3325,'chemistry','40.77.167.134',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 23:49:56','2019-07-17 20:20:15'),(3326,'chemistry','54.36.149.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 01:52:33','2019-05-24 01:52:33'),(3327,'english','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3328,'biology','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3329,'chemistry','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3330,'englishlit','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3331,'geography','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3332,'economics','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3333,'irk','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3334,'chemistry','173.212.246.232',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 07:36:57','2019-05-24 07:37:03'),(3335,'chemistry','197.210.47.154',119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 16:46:41','2019-05-24 17:36:26'),(3336,'chemistry','185.20.6.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:01:25','2019-05-24 18:01:25'),(3337,'chemistry','197.210.54.59',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:29:11','2019-05-24 18:29:11'),(3338,'chemistry','197.210.55.73',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:36:24','2019-05-24 18:37:10'),(3339,'currentaffairs','197.210.55.73',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:38:00','2019-05-24 18:38:00'),(3340,'chemistry','197.210.227.35',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:20:02','2019-05-25 14:21:17'),(3341,'chemistry','197.210.226.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:21:41','2019-05-25 14:22:30'),(3342,'mathematics','197.210.227.35',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:23:25','2019-05-25 14:25:38'),(3343,'mathematics','197.210.226.250',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:24:57','2019-05-25 14:24:57'),(3344,'chemistry','207.46.13.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-26 03:26:44','2019-08-07 06:55:06'),(3345,'chemistry','54.36.148.190',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 05:37:38','2019-05-28 05:37:38'),(3346,'chemistry','197.253.9.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 10:08:10','2019-05-28 10:08:10'),(3347,'chemistry','105.112.41.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 21:38:58','2019-05-29 21:38:58'),(3348,'chemistry','93.158.161.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 23:17:18','2019-05-29 23:17:18'),(3349,'chemistry','62.210.202.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 07:54:02','2019-05-30 07:54:08'),(3350,'chemistry','197.210.227.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:02','2019-05-30 10:34:02'),(3351,'chemistry','197.210.226.60',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:40','2019-05-30 10:34:40'),(3352,'chemistry','100.43.85.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 19:55:06','2019-05-30 19:55:06'),(3353,'chemistry','207.46.13.20',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-31 10:40:41','2019-09-14 00:58:44'),(3354,'chemistry','141.0.13.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-31 10:57:54','2019-05-31 10:57:54'),(3355,'biology','105.112.46.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-01 12:10:54','2019-06-01 12:19:36'),(3356,'chemistry','157.55.39.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-03 17:51:53','2019-06-03 17:51:53'),(3357,'accounting','209.205.209.34',522,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 19:18:46','2020-05-29 19:55:11'),(3358,'economics','209.205.209.34',1892,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 20:32:30','2020-05-30 17:12:57'),(3359,'chemistry','157.55.39.53',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 21:15:44','2019-10-07 21:10:09'),(3360,'history','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:18:40','2019-06-05 02:18:40'),(3361,'irk','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:42:34','2019-06-05 02:42:34'),(3362,'accounting','54.234.117.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 06:15:30','2019-06-05 06:15:30'),(3363,'accounting','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:14:25','2019-06-05 08:14:25'),(3364,'geography','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:53:33','2019-06-05 08:53:33'),(3365,'accounting','3.84.113.32',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:33','2019-06-05 09:00:49'),(3366,'chemistry','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:39','2019-06-05 09:00:39'),(3367,'insurance','54.146.5.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 11:54:23','2019-06-05 11:54:23'),(3368,'chemistry','105.112.53.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 13:10:39','2019-06-05 13:12:41'),(3369,'chemistry','100.43.85.122',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-05 13:15:48','2020-03-08 10:35:22'),(3370,'chemistry','76.1.76.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 14:34:50','2019-06-05 14:35:18'),(3371,'chemistry','197.210.55.175',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:11:03','2019-06-05 16:12:43'),(3372,'chemistry','197.210.54.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:12:00','2019-06-05 16:12:00'),(3373,'mathematics','197.211.32.242',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 20:45:55','2019-06-05 20:45:56'),(3374,'currentaffairs','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:19:16','2019-06-05 23:19:16'),(3375,'insurance','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:31:01','2019-06-05 23:31:01'),(3376,'englishlit','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:36:02','2019-06-05 23:36:02'),(3377,'chemistry','97.116.149.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-07 14:42:32','2019-06-07 14:42:32'),(3378,'chemistry','207.46.13.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 02:59:43','2019-06-08 02:59:43'),(3379,'mathematics','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3380,'accounting','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3381,'biology','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3382,'chemistry','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3383,'geography','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3384,'civiledu','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3385,'currentaffairs','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3386,'chemistry','54.226.148.240',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:42:27','2019-06-08 11:42:27'),(3387,'biology','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3388,'government','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3389,'crk','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3390,'economics','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3391,'civiledu','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3392,'insurance','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3393,'currentaffairs','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3394,'chemistry','41.217.123.66',142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:01','2019-06-08 15:05:05'),(3395,'english','41.217.123.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:48','2019-06-08 13:21:48'),(3396,'chemistry','197.242.107.128',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:49:30','2019-06-08 15:55:27'),(3397,'english','197.242.107.128',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:56:31','2019-06-08 15:56:36'),(3398,'english','197.242.108.36',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 16:54:19','2019-06-08 16:57:53'),(3399,'physics','197.242.116.150',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:11:54','2019-06-08 20:49:56'),(3400,'english','197.242.116.150',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:31:40','2019-06-08 21:06:14'),(3401,'chemistry','197.242.116.150',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:36:15','2019-06-08 21:06:22'),(3402,'physics','162.213.3.221',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-09 05:09:58','2019-06-09 05:09:58'),(3403,'chemistry','105.112.23.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 09:15:53','2019-06-10 13:05:55'),(3404,'chemistry','197.149.92.146',56,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-10 12:11:23','2020-02-25 16:32:20'),(3405,'chemistry','41.75.207.170',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 12:27:15','2019-06-14 07:43:40'),(3406,'chemistry','207.46.13.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 22:01:38','2019-06-10 22:01:38'),(3407,'chemistry','40.77.167.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 08:14:51','2019-06-11 08:14:51'),(3408,'chemistry','129.56.38.156',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 21:53:28','2019-06-11 21:54:00'),(3409,'irk','34.201.166.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:03:53','2019-06-12 03:03:53'),(3410,'biology','3.94.159.33',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:45:38','2019-06-12 04:28:00'),(3411,'english','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:51:24','2019-06-12 03:51:24'),(3412,'accounting','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:52:12','2019-06-12 03:52:12'),(3413,'crk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:20:40','2019-06-12 04:20:40'),(3414,'geography','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:38:56','2019-06-12 04:38:56'),(3415,'government','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:41:50','2019-06-12 04:41:50'),(3416,'irk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:42:17','2019-06-12 04:42:17'),(3417,'physics','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:51:23','2019-06-12 04:51:23'),(3418,'english','154.118.8.161',198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:36:41','2019-06-12 14:02:53'),(3419,'chemistry','154.118.8.161',91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:39:30','2019-06-12 12:18:14'),(3420,'physics','154.118.8.161',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:40:15','2019-06-12 12:04:32'),(3421,'chemistry','54.83.120.25',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 21:54:54','2019-06-12 22:18:00'),(3422,'chemistry','3.90.108.129',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 22:47:16','2019-06-13 00:16:33'),(3423,'chemistry','46.229.168.142',84,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-13 04:36:54','2020-07-10 20:02:07'),(3424,'chemistry','41.78.172.115',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 15:09:45','2019-06-14 12:18:50'),(3425,'chemistry','105.112.106.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:18','2019-06-13 18:32:18'),(3426,'english','105.112.106.235',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:48','2019-06-13 18:32:50'),(3427,'english','41.75.207.170',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:42:12','2019-06-14 07:42:12'),(3428,'physics','41.75.207.170',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:43:30','2019-06-14 07:44:40'),(3429,'physics','66.249.83.16',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-14 08:47:03','2019-09-05 01:30:44'),(3430,'chemistry','105.112.33.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 20:32:24','2019-06-14 20:32:24'),(3431,'english','197.242.114.252',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 05:49:46','2019-06-15 06:28:24'),(3432,'chemistry','105.112.45.8',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 08:23:34','2019-06-15 08:24:00'),(3433,'english','41.217.116.6',99,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:13:31','2019-06-15 14:39:43'),(3434,'biology','18.206.190.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:27:51','2019-06-15 12:27:51'),(3435,'chemistry','3.81.65.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 13:16:11','2019-06-15 13:16:11'),(3436,'accounting','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:47','2019-06-15 14:20:47'),(3437,'english','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:58','2019-06-15 14:20:58'),(3438,'chemistry','197.210.52.46',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-15 14:26:37','2020-02-06 08:45:34'),(3439,'chemistry','197.210.53.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:27:22','2019-06-15 14:27:22'),(3440,'currentaffairs','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:46:51','2019-06-15 14:46:51'),(3441,'mathematics','34.239.126.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 15:58:44','2019-06-15 15:58:44'),(3442,'chemistry','197.210.53.178',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:40:54','2019-06-15 21:42:38'),(3443,'chemistry','197.210.52.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:42:12','2019-06-15 21:42:32'),(3444,'chemistry','46.229.168.147',51,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-15 21:50:41','2020-06-11 21:19:10'),(3445,'chemistry','197.210.53.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:20:17','2019-06-15 22:20:17'),(3446,'biology','54.237.246.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:32:27','2019-06-15 22:32:27'),(3447,'biology','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:11:58','2019-06-15 23:11:58'),(3448,'irk','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:27:36','2019-06-15 23:27:36'),(3449,'physics','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 00:17:33','2019-06-16 00:17:33'),(3450,'irk','34.228.23.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 01:44:49'),(3451,'accounting','34.228.23.109',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 02:01:41'),(3452,'chemistry','45.55.21.112',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:27:31','2019-06-16 02:28:29'),(3453,'chemistry','105.14.195.18',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:48:24','2019-06-17 01:41:38'),(3454,'physics','66.249.83.18',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-16 12:16:03','2019-09-15 16:06:04'),(3455,'englishlit','54.164.133.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 17:50:46','2019-06-16 17:50:46'),(3456,'mathematics','54.196.189.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:52'),(3457,'mathematics','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3458,'english','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3459,'englishlit','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:55','2019-06-16 19:48:55'),(3460,'chemistry','206.189.171.227',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 02:00:46','2019-06-17 02:02:05'),(3461,'chemistry','41.190.16.26',6367,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 07:08:02','2019-07-23 11:35:50'),(3462,'mathematics','3.91.71.81',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:35:54','2019-06-17 09:22:24'),(3463,'englishlit','3.91.71.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:37:04','2019-06-17 09:22:24'),(3464,'english','3.91.71.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 09:10:38','2019-06-17 09:10:38'),(3465,'mathematics','107.21.78.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 10:58:09','2019-06-17 10:58:09'),(3466,'currentaffairs','34.238.242.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 13:56:42','2019-06-17 13:56:42'),(3467,'commerce','34.227.190.206',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 21:33:57','2019-06-17 21:33:57'),(3468,'chemistry','66.249.83.16',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-18 02:33:50','2019-11-06 14:40:47'),(3469,'currentaffairs','3.91.183.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 06:29:09','2019-06-18 06:29:09'),(3470,'chemistry','66.249.69.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 07:22:19','2019-06-18 07:22:19'),(3471,'economics','41.190.16.26',4519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:08:32','2019-07-23 11:57:15'),(3472,'commerce','41.190.16.26',5932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:28','2019-07-23 11:33:05'),(3473,'english','41.190.16.26',6405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:29','2019-07-23 11:25:21'),(3474,'chemistry','100.43.90.165',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 06:10:09','2019-06-19 06:10:09'),(3475,'mathematics','41.190.16.26',1164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 10:57:58','2019-07-23 11:30:59'),(3476,'chemistry','129.56.101.165',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 17:58:38','2019-06-19 18:00:41'),(3477,'chemistry','82.145.223.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:25','2019-06-20 01:08:25'),(3478,'chemistry','41.203.78.211',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:32','2019-06-20 01:08:32'),(3479,'accounting','41.190.16.26',2791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 12:19:54','2019-07-23 11:33:51'),(3480,'biology','41.190.16.26',3586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 13:01:43','2019-07-23 11:34:35'),(3481,'biology','66.249.66.208',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-21 06:35:47','2019-10-29 04:39:15'),(3482,'mathematics','34.229.108.180',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-21 23:58:00','2019-06-21 23:58:00'),(3483,'chemistry','157.55.39.173',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-22 05:09:56','2019-06-22 05:09:56'),(3484,'chemistry','100.43.85.201',11,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 16:57:01','2019-12-08 06:55:23'),(3485,'chemistry','5.255.250.164',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 22:01:02','2019-09-08 03:42:02'),(3486,'chemistry','46.229.168.152',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-23 06:10:52','2020-05-29 19:42:11'),(3487,'chemistry','77.88.47.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 13:02:24','2019-06-23 13:02:24'),(3488,'chemistry','207.46.13.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 20:52:25','2019-06-23 20:52:25'),(3489,'physics','41.190.16.26',1049,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 08:37:20','2019-07-23 11:35:12'),(3490,'chemistry','93.158.166.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 11:27:50','2019-06-24 11:27:50'),(3491,'english','3.90.20.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 17:28:04','2019-06-24 17:28:04'),(3492,'irk','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:07:15','2019-06-24 19:07:15'),(3493,'commerce','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:10:29','2019-06-24 19:10:29'),(3494,'geography','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:24:40','2019-06-24 19:24:40'),(3495,'chemistry','207.46.13.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 21:37:18','2019-06-24 21:37:18'),(3496,'biology','52.90.179.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 22:59:08','2019-06-24 22:59:08'),(3497,'economics','3.89.60.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 00:47:23','2019-06-25 00:47:23'),(3498,'mathematics','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 04:00:29','2019-06-25 04:00:29'),(3499,'englishlit','41.190.16.26',1730,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:34','2019-07-23 11:44:00'),(3500,'government','41.190.16.26',1944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:47','2019-07-23 11:47:36'),(3501,'crk','41.190.16.26',2466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:59','2019-07-23 11:48:21'),(3502,'geography','41.190.16.26',1488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:13','2019-07-23 11:57:01'),(3503,'irk','41.190.16.26',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:46','2019-07-23 11:57:27'),(3504,'civiledu','41.190.16.26',960,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:58','2019-07-23 11:57:42'),(3505,'currentaffairs','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:26','2019-07-23 11:58:09'),(3506,'history','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:40','2019-07-23 11:58:22'),(3507,'chemistry','154.120.89.121',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 08:40:28','2019-06-25 08:55:46'),(3508,'chemistry','100.43.91.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 09:22:05','2019-06-25 09:22:05'),(3509,'chemistry','46.229.168.148',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 14:14:29','2019-08-05 06:27:37'),(3510,'chemistry','37.9.87.211',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 07:15:23','2019-06-26 07:15:23'),(3511,'chemistry','154.113.84.24',291,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-26 08:20:23','2019-11-05 14:51:24'),(3512,'biology','154.113.84.24',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:12:21','2019-06-26 14:55:23'),(3513,'english','154.113.84.24',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:13:32','2019-06-26 14:55:25'),(3514,'english','105.112.53.54',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:32:43','2019-06-26 14:23:50'),(3515,'biology','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:47','2019-06-26 14:23:47'),(3516,'physics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:51','2019-06-26 14:23:52'),(3517,'chemistry','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:53','2019-06-26 14:23:53'),(3518,'mathematics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:54','2019-06-26 14:23:54'),(3519,'economics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:56','2019-06-26 14:23:56'),(3520,'physics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:26','2019-06-26 14:55:26'),(3521,'mathematics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:28','2019-06-26 14:55:29'),(3522,'economics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:30','2019-06-26 14:55:30'),(3523,'chemistry','41.217.123.115',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:22','2019-06-26 18:34:34'),(3524,'history','41.217.123.115',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:45','2019-06-26 18:04:21'),(3525,'chemistry','207.46.13.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 18:31:26','2019-06-26 18:31:26'),(3526,'mathematics','197.210.243.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:11:39','2019-06-27 19:11:39'),(3527,'english','197.210.243.239',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:12:15','2019-06-27 19:14:45'),(3528,'economics','197.210.243.239',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:14:54','2019-06-27 19:16:28'),(3529,'chemistry','185.26.180.221',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:56:48','2019-06-27 19:56:48'),(3530,'chemistry','77.88.5.10',4,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 01:59:49','2019-09-18 15:11:44'),(3531,'chemistry','105.112.18.14',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:46','2019-06-28 03:11:47'),(3532,'biology','105.112.18.14',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:52','2019-06-28 03:13:33'),(3533,'chemistry','40.77.167.115',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 03:52:03','2020-03-19 20:45:55'),(3534,'economics','197.210.58.211',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 04:41:14','2019-06-28 04:44:00'),(3535,'chemistry','54.36.150.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 16:41:57','2019-06-28 16:41:57'),(3536,'chemistry','54.36.150.166',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 19:07:14','2019-06-28 19:07:14'),(3537,'history','154.120.95.55',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 22:43:11','2019-06-28 22:43:11'),(3538,'chemistry','66.249.64.176',131,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 23:46:36','2019-09-30 03:33:36'),(3539,'chemistry','107.3.154.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 02:57:34','2019-06-30 05:13:41'),(3540,'chemistry','40.77.167.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 05:06:27','2019-06-29 05:06:27'),(3541,'civiledu','52.207.228.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 07:20:25','2019-06-29 07:20:25'),(3542,'englishlit','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:09:53','2019-06-29 08:09:53'),(3543,'crk','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:11:50','2019-06-29 08:11:50'),(3544,'government','34.235.169.213',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:16:14','2019-06-29 16:16:14'),(3545,'insurance','54.146.66.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:57:38','2019-06-29 16:57:38'),(3546,'physics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:19:06','2019-06-29 18:19:06'),(3547,'mathematics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:23:50','2019-06-29 18:23:50'),(3548,'insurance','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:30:42','2019-06-29 18:30:42'),(3549,'crk','54.227.42.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 19:50:41','2019-06-29 19:50:41'),(3550,'government','3.82.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 20:28:23','2019-06-29 20:28:23'),(3551,'english','52.91.23.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 03:47:35','2019-06-30 03:47:35'),(3552,'mathematics','107.3.154.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 05:14:08','2019-06-30 05:14:08'),(3553,'chemistry','37.9.87.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 17:29:41','2019-06-30 17:29:41'),(3554,'chemistry','154.118.47.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 07:13:55','2019-07-01 07:14:33'),(3555,'chemistry','46.229.168.135',87,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 09:26:34','2020-01-31 22:31:52'),(3556,'english','209.205.209.34',8089,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 19:21:38','2020-05-30 17:19:39'),(3557,'chemistry','197.211.53.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 21:31:20','2019-07-01 21:31:40'),(3558,'chemistry','157.55.39.182',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 05:23:02','2019-07-02 05:23:02'),(3559,'chemistry','93.158.161.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 15:43:59','2019-07-02 15:43:59'),(3560,'history','209.205.209.34',650,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:22:26','2020-05-30 18:38:30'),(3561,'physics','209.205.209.34',1763,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:36:44','2020-05-30 15:29:21'),(3562,'chemistry','129.56.51.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 18:42:17','2019-07-02 18:42:17'),(3563,'chemistry','197.210.28.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:11:10','2019-07-02 20:11:22'),(3564,'geography','197.210.28.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:17:11','2019-07-02 20:17:11'),(3565,'biology','54.147.7.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 22:46:21','2019-07-02 22:46:21'),(3566,'biology','209.205.209.34',5018,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-03 05:37:07','2020-05-30 18:25:53'),(3567,'chemistry','64.233.172.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:09:13','2019-07-03 19:09:14'),(3568,'history','3.95.227.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:48:54','2019-07-03 19:48:54'),(3569,'chemistry','37.9.87.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 08:05:14','2019-07-04 08:05:14'),(3570,'geography','3.95.241.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 16:23:04','2019-07-04 16:23:04'),(3571,'chemistry','105.112.48.115',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 19:52:32','2019-07-04 20:12:07'),(3572,'mathematics','105.112.48.115',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:07:51','2019-07-04 20:13:22'),(3573,'physics','105.112.48.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:12:30','2019-07-04 20:12:30'),(3574,'chemistry','91.242.162.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:05:11','2019-07-06 06:05:11'),(3575,'history','18.232.141.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:40:14','2019-07-06 06:40:14'),(3576,'chemistry','154.118.37.114',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:14:49','2019-07-06 18:14:49'),(3577,'chemistry','91.242.162.3',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:41:15','2019-07-06 19:28:38'),(3578,'chemistry','91.242.162.36',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 09:39:14','2019-07-07 09:39:14'),(3579,'chemistry','197.210.65.91',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 17:22:08','2019-07-07 17:22:57'),(3580,'chemistry','141.8.143.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 19:45:26','2019-07-07 19:45:26'),(3581,'chemistry','91.242.162.25',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-07 19:49:57','2019-09-10 11:10:42'),(3582,'mathematics','129.205.113.212',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:16'),(3583,'chemistry','129.205.113.212',33,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:27'),(3584,'accounting','129.205.113.212',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:04'),(3585,'economics','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:43'),(3586,'government','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:32:17'),(3587,'commerce','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3588,'geography','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3589,'crk','129.205.113.212',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:11'),(3590,'currentaffairs','129.205.113.212',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:01','2019-07-07 22:32:40'),(3591,'englishlit','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:23','2019-07-07 22:27:11'),(3592,'physics','129.205.113.212',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:26','2019-07-07 22:32:46'),(3593,'history','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:32:41'),(3594,'irk','129.205.113.212',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3595,'civiledu','129.205.113.212',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3596,'biology','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:56','2019-07-07 22:33:24'),(3597,'insurance','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:23:58','2019-07-07 22:32:21'),(3598,'english','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:25:57','2019-07-07 22:33:06'),(3599,'chemistry','198.144.145.220',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:29:31','2019-07-07 21:29:54'),(3600,'chemistry','41.203.78.249',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 09:28:28','2019-07-08 09:31:26'),(3601,'physics','66.249.88.36',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 10:04:41','2019-07-08 10:04:42'),(3602,'mathematics','197.210.8.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 11:09:57','2019-07-08 11:09:57'),(3603,'chemistry','169.239.188.48',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-08 11:26:53','2019-08-27 13:36:26'),(3604,'english','3.85.90.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 15:56:12','2019-07-08 15:56:12'),(3605,'chemistry','105.112.66.91',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:33:56','2019-07-08 21:35:52'),(3606,'english','105.112.66.91',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:53:51','2019-07-08 21:53:51'),(3607,'commerce','209.205.209.34',1403,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:05:44'),(3608,'chemistry','209.205.209.34',3228,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:38:59'),(3609,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3610,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3611,'english','41.78.172.115',90,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 07:23:35','2019-11-27 13:09:02'),(3612,'englishlit','41.78.172.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:24:07','2019-07-09 07:24:33'),(3613,'government','41.78.172.115',105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:25:34','2019-07-16 07:09:26'),(3614,'chemistry','129.56.37.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:43:13','2019-07-09 07:43:14'),(3615,'mathematics','209.205.209.34',2378,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 08:37:56','2020-05-30 17:58:26'),(3616,'chemistry','192.151.145.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 12:04:16','2019-07-09 12:04:31'),(3617,'physics','105.112.74.109',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:45:55','2019-07-09 21:20:51'),(3618,'government','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:53:35','2019-07-09 20:53:35'),(3619,'englishlit','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:55:52','2019-07-09 20:55:52'),(3620,'english','105.112.74.109',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:56:28','2019-07-09 21:24:57'),(3621,'mathematics','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 21:10:35','2019-07-09 21:10:35'),(3622,'chemistry','91.242.162.49',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 22:37:01','2019-07-09 23:20:10'),(3623,'physics','66.249.64.29',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 02:22:25','2019-07-10 02:22:25'),(3624,'mathematics','41.78.172.115',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 08:51:07','2019-07-15 16:59:28'),(3625,'chemistry','129.56.36.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 10:15:55','2019-07-10 10:16:28'),(3626,'chemistry','91.242.162.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 18:09:11','2019-07-10 18:09:11'),(3627,'chemistry','154.160.30.70',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 19:00:58','2019-07-10 19:01:06'),(3628,'chemistry','129.205.112.207',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 23:16:02','2019-07-10 23:16:41'),(3629,'english','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3630,'mathematics','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3631,'commerce','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3632,'chemistry','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3633,'irk','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3634,'civiledu','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3635,'history','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3636,'chemistry','41.203.78.28',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:47:47','2019-07-11 11:21:52'),(3637,'english','41.203.78.28',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 11:35:10','2019-07-11 11:35:10'),(3638,'chemistry','157.55.39.101',14,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 17:52:52','2020-01-09 17:51:46'),(3639,'chemistry','66.249.88.68',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3640,'chemistry','66.249.88.65',76,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3641,'chemistry','82.145.223.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:34','2019-07-12 01:28:34'),(3642,'chemistry','129.205.112.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:40','2019-07-12 01:28:40'),(3643,'chemistry','54.162.122.174',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 08:18:20','2019-07-12 10:00:37'),(3644,'chemistry','40.77.167.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 11:56:19','2019-07-12 11:56:19'),(3645,'physics','66.102.6.44',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 18:47:05','2019-07-12 18:47:05'),(3646,'chemistry','105.112.40.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 14:34:42','2019-07-13 14:34:42'),(3647,'english','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:22:10','2019-07-13 15:22:10'),(3648,'englishlit','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:28:12','2019-07-13 15:28:12'),(3649,'currentaffairs','105.112.23.162',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 19:42:12','2019-07-13 19:42:12'),(3650,'chemistry','197.210.47.253',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 23:32:27','2019-07-13 23:32:37'),(3651,'chemistry','197.210.226.221',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-14 08:42:39','2019-07-14 08:42:39'),(3652,'chemistry','41.58.163.166',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 03:36:09','2019-07-15 03:38:30'),(3653,'chemistry','197.210.45.131',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:01:08','2019-07-15 11:02:28'),(3654,'chemistry','207.46.13.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:30:08','2019-07-15 11:30:08'),(3655,'chemistry','105.112.121.65',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 01:47:52','2019-07-16 01:54:58'),(3656,'geography','209.205.209.34',1148,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-16 04:33:29','2020-05-30 17:26:43'),(3657,'chemistry','157.55.39.75',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 22:12:07','2019-07-16 22:12:07'),(3658,'chemistry','41.223.213.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 00:56:58','2019-07-17 01:11:43'),(3659,'english','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:53:17','2019-07-17 05:53:18'),(3660,'mathematics','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:55:34','2019-07-17 05:55:34'),(3661,'government','209.205.209.34',2686,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:52:58','2020-05-30 18:38:59'),(3662,'crk','209.205.209.34',3361,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:54:29','2020-05-30 12:48:20'),(3663,'chemistry','197.242.111.36',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 08:00:14','2019-07-17 08:08:20'),(3664,'chemistry','41.203.78.33',425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 09:54:12','2019-07-17 11:26:32'),(3665,'chemistry','69.171.251.8',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:55','2019-07-17 10:23:56'),(3666,'chemistry','69.171.251.23',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3667,'chemistry','69.171.251.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3668,'englishlit','209.205.209.34',1090,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 12:39:36','2020-05-30 15:26:43'),(3669,'irk','209.205.209.34',1003,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 17:02:18','2020-05-30 18:50:40'),(3670,'chemistry','41.223.215.235',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:10:02','2019-07-17 17:11:19'),(3671,'chemistry','41.223.213.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:16:10','2019-07-17 17:16:10'),(3672,'chemistry','35.153.135.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 00:14:01','2019-07-18 00:14:01'),(3673,'chemistry','154.118.46.101',392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 03:48:26','2019-07-18 05:29:47'),(3674,'chemistry','5.255.250.162',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-18 06:37:25','2019-09-08 14:04:58'),(3675,'chemistry','154.118.61.127',1190,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 08:56:03','2019-07-18 09:20:17'),(3676,'irk','34.238.242.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:04:13','2019-07-18 09:04:13'),(3677,'english','154.118.61.127',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:09','2019-07-18 09:18:21'),(3678,'commerce','154.118.61.127',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:43','2019-07-18 09:19:05'),(3679,'accounting','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:11','2019-07-18 09:29:34'),(3680,'biology','154.118.61.127',378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:25','2019-07-18 09:19:44'),(3681,'englishlit','154.118.61.127',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:33','2019-07-18 09:30:44'),(3682,'government','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:49','2019-07-18 09:31:01'),(3683,'crk','154.118.61.127',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:17','2019-07-18 09:31:18'),(3684,'economics','154.118.61.127',584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:55','2019-07-18 09:31:56'),(3685,'civiledu','154.118.61.127',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:27:48','2019-07-18 09:27:51'),(3686,'mathematics','154.118.61.127',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:28:55','2019-07-18 09:29:06'),(3687,'physics','154.118.61.127',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:29:57','2019-07-18 09:30:06'),(3688,'geography','154.118.61.127',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:31:27','2019-07-18 09:31:38'),(3689,'chemistry','178.255.215.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 18:42:41','2019-07-18 18:42:41'),(3690,'chemistry','157.55.39.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 22:58:37','2019-07-19 04:22:47'),(3691,'chemistry','154.118.59.83',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 05:44:42','2019-07-19 06:04:52'),(3692,'chemistry','41.203.78.52',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 16:01:50','2019-07-19 16:28:25'),(3693,'chemistry','197.242.102.82',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:28:00','2019-07-20 04:29:38'),(3694,'english','197.242.102.82',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:31:50','2019-07-20 11:59:47'),(3695,'mathematics','197.242.102.82',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:48:08','2019-07-20 04:48:08'),(3696,'chemistry','40.77.167.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 06:20:29','2019-07-20 06:20:29'),(3697,'biology','197.242.102.82',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:04:42','2019-07-20 11:58:12'),(3698,'physics','152.9.196.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:47:30','2019-07-20 11:47:30'),(3699,'mathematics','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:14','2019-07-20 14:11:14'),(3700,'chemistry','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:27','2019-07-20 14:11:27'),(3701,'chemistry','207.46.13.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 21:45:31','2019-07-20 21:45:31'),(3702,'english','41.217.118.129',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 05:37:39','2019-07-21 05:37:39'),(3703,'chemistry','41.203.78.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 15:30:53','2019-07-21 15:32:05'),(3704,'chemistry','157.55.39.239',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-22 03:02:39','2020-03-31 17:07:02'),(3705,'biology','54.91.22.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 06:50:06','2019-07-22 06:50:06'),(3706,'chemistry','93.80.129.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 07:59:39','2019-07-22 07:59:39'),(3707,'mathematics','3.84.79.213',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 08:19:57','2019-07-22 08:19:58'),(3708,'chemistry','207.46.13.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 06:32:43','2019-07-23 06:32:43'),(3709,'chemistry','154.118.66.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 07:11:56','2019-07-23 07:11:56'),(3710,'chemistry','54.36.150.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 12:38:55','2019-07-23 12:38:56'),(3711,'english','154.118.66.199',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:20:16','2019-07-23 19:20:16'),(3712,'chemistry','197.210.57.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:36:14','2019-07-23 19:45:25'),(3713,'chemistry','197.210.57.16',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:38:03','2019-07-23 19:46:41'),(3714,'chemistry','197.211.57.133',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 20:29:13','2019-07-23 20:30:01'),(3715,'chemistry','54.36.150.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 00:15:09','2019-07-24 00:15:09'),(3716,'chemistry','207.46.13.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 01:42:30','2019-07-24 01:42:30'),(3717,'english','154.120.114.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 03:35:04','2019-07-24 03:35:04'),(3718,'englishlit','41.80.181.76',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 06:15:35','2019-07-25 05:43:43'),(3719,'chemistry','54.172.234.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 08:19:54','2019-07-24 08:49:47'),(3720,'chemistry','40.77.167.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 16:39:03','2019-07-25 16:39:03'),(3721,'chemistry','40.77.167.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 23:17:21','2019-07-25 23:17:21'),(3722,'insurance','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:14','2019-07-26 05:17:07'),(3723,'accounting','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:44','2019-07-26 05:17:08'),(3724,'englishlit','41.203.78.111',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:14','2019-07-26 05:17:17'),(3725,'government','41.203.78.111',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:58','2019-07-26 05:17:11'),(3726,'currentaffairs','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:26','2019-07-26 05:17:13'),(3727,'economics','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:27','2019-07-26 05:17:14'),(3728,'geography','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:29','2019-07-26 05:17:16'),(3729,'english','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:36','2019-07-26 05:17:19'),(3730,'chemistry','66.249.64.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 15:13:58','2019-07-26 15:13:58'),(3731,'chemistry','207.46.13.115',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-27 00:45:02','2020-01-23 09:22:32'),(3732,'chemistry','157.55.39.89',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 07:32:50','2019-07-27 07:32:50'),(3733,'chemistry','46.229.168.137',45,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-07-27 09:18:32','2020-07-05 12:08:49'),(3734,'mathematics','3.85.206.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 10:07:21','2019-07-27 10:09:00'),(3735,'english','154.118.28.124',72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 12:49:22','2019-07-28 06:55:02'),(3736,'chemistry','40.77.167.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 15:09:18','2019-07-28 15:09:18'),(3737,'chemistry','201.186.162.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 17:45:36','2019-07-28 17:45:37'),(3738,'chemistry','80.248.10.224',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:34:33','2019-07-29 00:37:02'),(3739,'physics','80.248.10.224',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:35:39','2019-07-29 00:35:39'),(3740,'biology','154.118.28.124',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 09:57:14','2019-07-29 09:57:14'),(3741,'english','41.203.78.138',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 16:14:46','2019-07-29 16:14:46'),(3742,'chemistry','54.36.149.43',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-29 16:22:54','2020-05-29 00:45:16'),(3743,'insurance','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:39','2019-07-30 02:31:46'),(3744,'accounting','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:43','2019-07-30 02:31:31'),(3745,'englishlit','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:46','2019-07-30 02:31:23'),(3746,'government','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:49','2019-07-30 02:31:29'),(3747,'currentaffairs','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:51','2019-07-30 02:31:19'),(3748,'economics','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:53','2019-07-30 02:31:42'),(3749,'geography','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:56','2019-07-30 02:31:40'),(3750,'english','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:01','2019-07-30 02:31:25'),(3751,'mathematics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:04','2019-07-30 02:31:26'),(3752,'commerce','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:06','2019-07-30 02:31:28'),(3753,'biology','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:19','2019-07-30 02:31:32'),(3754,'physics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:22','2019-07-30 02:31:34'),(3755,'chemistry','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:24','2019-07-30 02:31:35'),(3756,'crk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:28','2019-07-30 02:31:37'),(3757,'history','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:30','2019-07-30 02:31:38'),(3758,'irk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:49','2019-07-30 02:31:43'),(3759,'civiledu','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:52','2019-07-30 02:31:44'),(3760,'insurance','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:01','2019-07-30 03:25:41'),(3761,'accounting','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3762,'englishlit','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:33'),(3763,'government','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3764,'currentaffairs','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:30'),(3765,'economics','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:39'),(3766,'geography','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:04','2019-07-30 03:25:39'),(3767,'english','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:05','2019-07-30 03:25:33'),(3768,'mathematics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3769,'commerce','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3770,'biology','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3771,'physics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3772,'chemistry','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:37'),(3773,'crk','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:38'),(3774,'history','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:10','2019-07-30 03:25:38'),(3775,'irk','198.23.156.170',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:11','2019-07-30 03:25:40'),(3776,'civiledu','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:12','2019-07-30 03:25:40'),(3777,'chemistry','54.36.148.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 12:20:11','2019-07-30 12:20:11'),(3778,'history','34.229.51.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 14:05:01','2019-07-30 14:05:01'),(3779,'english','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3780,'commerce','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3781,'chemistry','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3782,'englishlit','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3783,'government','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3784,'crk','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3785,'insurance','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3786,'chemistry','93.158.161.52',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 13:53:11','2019-07-31 13:53:11'),(3787,'chemistry','95.70.149.106',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 17:40:54','2019-07-31 17:40:58'),(3788,'chemistry','197.210.52.110',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-31 23:43:35','2020-05-25 11:22:19'),(3789,'physics','197.210.52.34',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 23:44:25','2019-07-31 23:44:25'),(3790,'chemistry','129.205.113.242',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 11:01:44','2019-08-01 11:38:22'),(3791,'chemistry','46.229.168.136',5,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-01 13:52:01','2020-03-24 23:22:11'),(3792,'chemistry','207.46.13.109',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 15:09:54','2019-08-01 15:09:54'),(3793,'chemistry','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:06:12','2019-08-01 17:06:12'),(3794,'english','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:07:32','2019-08-01 17:07:32'),(3795,'crk','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:17:03','2019-08-01 17:17:04'),(3796,'mathematics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3797,'accounting','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3798,'physics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3799,'chemistry','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3800,'englishlit','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3801,'crk','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3802,'currentaffairs','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3803,'chemistry','85.104.168.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 06:18:15','2019-08-02 06:18:15'),(3804,'chemistry','102.67.6.4',86,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-02 11:56:48','2020-02-06 09:19:26'),(3805,'chemistry','41.203.78.141',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 17:46:29','2019-08-02 17:50:14'),(3806,'physics','141.0.13.86',225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 19:55:06','2019-08-02 20:20:39'),(3807,'chemistry','54.89.107.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 12:30:12','2019-08-03 12:30:12'),(3808,'chemistry','40.77.167.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 14:46:31','2019-08-03 14:46:31'),(3809,'chemistry','197.210.62.39',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 15:09:21','2019-08-03 15:11:54'),(3810,'chemistry','41.190.3.29',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:05:32','2019-08-03 20:06:34'),(3811,'chemistry','157.55.39.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:11:00','2019-08-03 20:11:00'),(3812,'chemistry','105.112.112.6',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 00:43:46','2019-08-04 00:43:46'),(3813,'chemistry','41.190.31.100',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 14:53:51','2019-08-04 14:54:18'),(3814,'chemistry','129.18.141.135',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:26:00','2019-08-04 21:27:04'),(3815,'chemistry','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:29:51','2019-08-04 21:29:51'),(3816,'chemistry','24.59.53.207',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:30:40','2019-08-04 21:31:48'),(3817,'chemistry','73.251.19.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:32:47','2019-08-05 19:48:27'),(3818,'chemistry','54.36.150.27',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 04:34:37','2020-04-20 23:49:30'),(3819,'englishlit','105.112.16.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:00:40','2019-08-05 08:00:40'),(3820,'chemistry','41.215.245.118',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:34:13','2019-08-05 21:13:05'),(3821,'mathematics','41.215.245.118',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:03:37','2019-08-05 21:14:43'),(3822,'chemistry','54.36.150.94',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:51:17','2019-08-05 09:51:17'),(3823,'chemistry','108.5.104.122',121,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 11:40:26','2019-08-10 00:14:27'),(3824,'chemistry','172.58.231.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 11:41:16','2019-08-05 11:41:16'),(3825,'chemistry','105.112.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 16:00:47','2019-08-05 16:00:47'),(3826,'mathematics','3.208.18.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 18:34:25','2019-08-05 18:34:25'),(3827,'chemistry','51.75.58.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-06 06:04:58','2019-08-06 06:04:58'),(3828,'english','105.112.46.183',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 17:24:18','2019-08-06 20:33:07'),(3829,'chemistry','157.55.39.189',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 20:45:44','2019-08-29 20:50:04'),(3830,'chemistry','154.120.111.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:02:33','2019-08-06 21:02:33'),(3831,'chemistry','41.184.168.168',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:47:59','2019-08-07 07:40:56'),(3832,'chemistry','76.169.69.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:59:50','2019-08-06 22:00:41'),(3833,'chemistry','197.210.28.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 22:09:16','2019-08-06 22:09:16'),(3834,'chemistry','197.242.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:24:27','2019-08-07 05:24:27'),(3835,'chemistry','54.162.105.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:45:21','2019-08-07 05:45:21'),(3836,'chemistry','105.112.99.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:37:02','2019-08-07 07:37:02'),(3837,'chemistry','197.255.3.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:53:01','2019-08-07 07:53:01'),(3838,'chemistry','105.112.66.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:07:50','2019-08-07 08:07:50'),(3839,'chemistry','197.210.10.11',99,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:28:59','2019-08-07 08:32:24'),(3840,'mathematics','197.210.10.11',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:32:47','2019-08-07 08:32:50'),(3841,'chemistry','102.67.3.4',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:36:49','2019-08-07 08:58:38'),(3842,'chemistry','41.164.52.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:03:24','2019-08-07 10:03:24'),(3843,'chemistry','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:05:52','2019-08-07 10:05:52'),(3844,'mathematics','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:06:42','2019-08-07 10:06:42'),(3845,'chemistry','197.149.90.214',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:24:50','2019-08-07 10:26:08'),(3846,'chemistry','41.203.73.88',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:39:15','2019-08-07 11:39:55'),(3847,'physics','209.136.56.4',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:54:06','2019-08-12 23:34:33'),(3848,'chemistry','197.242.98.242',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:04:40','2019-08-07 12:08:12'),(3849,'chemistry','66.249.83.192',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:30:34','2020-01-09 11:42:25'),(3850,'chemistry','41.58.96.12',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 14:11:55','2019-08-07 14:12:42'),(3851,'chemistry','197.210.65.148',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 18:36:06','2019-08-07 18:36:06'),(3852,'economics','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:15','2019-08-08 06:27:15'),(3853,'commerce','197.210.226.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:24','2019-08-08 06:27:24'),(3854,'commerce','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:29:02','2019-08-08 06:29:02'),(3855,'chemistry','196.6.204.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 08:52:03','2019-08-08 08:52:36'),(3856,'chemistry','105.112.112.43',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 13:28:20','2019-08-08 13:28:58'),(3857,'chemistry','197.210.45.222',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 23:36:48','2019-08-08 23:37:30'),(3858,'chemistry','207.46.13.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 05:43:38','2019-08-09 05:43:38'),(3859,'chemistry','197.210.44.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 08:23:41','2019-08-09 08:23:41'),(3860,'chemistry','107.167.108.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 13:55:03','2019-08-09 13:55:03'),(3861,'chemistry','141.0.12.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:36:14','2019-08-09 14:40:11'),(3862,'english','141.0.12.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:40:26','2019-08-09 14:40:26'),(3863,'chemistry','154.113.86.202',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 15:44:28','2019-08-09 15:45:32'),(3864,'english','54.196.180.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 19:46:19','2019-08-09 19:46:19'),(3865,'chemistry','41.190.31.199',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:16:32','2019-08-09 22:00:42'),(3866,'mathematics','41.190.31.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:19:49','2019-08-09 21:19:49'),(3867,'crk','41.190.31.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:38:51','2019-08-09 21:38:54'),(3868,'chemistry','129.205.113.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 05:01:10','2019-08-10 05:01:50'),(3869,'chemistry','41.217.117.119',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 06:33:30','2019-08-10 06:33:30'),(3870,'currentaffairs','54.85.115.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 10:57:06','2019-08-10 10:57:06'),(3871,'history','18.206.174.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 13:08:50','2019-08-10 13:08:50'),(3872,'chemistry','100.43.81.123',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 14:14:16','2019-08-10 14:14:17'),(3873,'english','184.72.210.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 04:30:40','2019-08-11 04:30:40'),(3874,'chemistry','66.249.88.116',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:14:03','2019-08-11 14:14:03'),(3875,'chemistry','157.55.39.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:28:36','2019-08-11 14:28:36'),(3876,'insurance','3.88.255.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 17:15:20','2019-08-11 17:15:20'),(3877,'english','197.242.117.204',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 21:39:05','2019-08-11 21:40:36'),(3878,'chemistry','207.46.13.52',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 04:20:20','2019-08-12 04:20:20'),(3879,'economics','34.227.176.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 20:07:33','2019-08-12 20:07:33'),(3880,'chemistry','105.112.16.68',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 08:45:00','2019-08-13 08:45:03'),(3881,'chemistry','46.229.168.141',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 22:26:44','2019-09-04 10:48:38'),(3882,'chemistry','34.204.200.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:43:45','2019-08-14 03:43:46'),(3883,'chemistry','18.205.192.78',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:52:28','2019-08-14 04:56:47'),(3884,'biology','54.162.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 12:09:34','2019-08-14 12:09:34'),(3885,'chemistry','154.120.99.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 15:57:20','2019-08-14 16:01:54'),(3886,'chemistry','105.112.98.5',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 00:49:21','2019-08-15 01:14:50'),(3887,'chemistry','197.210.61.7',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 15:41:08','2019-08-15 15:41:09'),(3888,'mathematics','41.203.78.198',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:01:08','2019-08-16 05:59:18'),(3889,'chemistry','207.46.13.149',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:44:55','2019-08-15 18:44:58'),(3890,'chemistry','207.46.13.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 19:29:33','2019-08-15 19:29:33'),(3891,'physics','41.203.78.198',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 06:16:07','2019-08-16 06:17:30'),(3892,'commerce','154.118.43.180',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 11:29:52','2019-08-16 11:29:52'),(3893,'accounting','54.198.77.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 15:23:17','2019-08-16 15:23:17'),(3894,'mathematics','197.242.99.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:04:35','2019-08-17 03:06:16'),(3895,'english','197.242.99.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:06:56','2019-08-17 03:06:56'),(3896,'chemistry','207.46.13.1',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 14:03:29','2019-08-17 14:03:30'),(3897,'crk','105.112.42.138',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 16:15:38','2019-08-17 16:15:41'),(3898,'chemistry','129.205.112.252',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:23:17','2019-08-17 22:29:43'),(3899,'english','129.205.112.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:27:47','2019-08-17 22:27:47'),(3900,'chemistry','197.242.101.185',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 13:44:15','2019-08-18 13:45:05'),(3901,'chemistry','18.232.124.77',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 14:54:17','2019-08-18 15:09:41'),(3902,'english','82.145.222.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:13:30','2019-08-18 20:13:30'),(3903,'physics','82.145.222.187',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:29','2019-08-18 20:14:41'),(3904,'biology','82.145.222.187',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:57','2019-08-18 20:18:29'),(3905,'chemistry','82.145.222.187',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:17:25','2019-08-18 20:20:03'),(3906,'chemistry','157.55.39.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 08:32:02','2019-08-19 08:32:02'),(3907,'chemistry','154.118.15.197',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 11:05:07','2019-08-19 11:07:21'),(3908,'chemistry','154.118.25.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 13:15:15','2019-08-19 13:15:15'),(3909,'chemistry','35.242.171.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 15:59:15','2019-08-19 15:59:20'),(3910,'chemistry','40.77.167.133',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 20:09:27','2019-08-19 20:09:27'),(3911,'chemistry','154.118.17.37',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 07:44:43','2019-08-20 07:44:57'),(3912,'chemistry','154.113.84.131',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 08:32:47','2019-08-20 08:33:28'),(3913,'mathematics','197.210.29.72',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 10:20:40','2019-08-20 10:21:02'),(3914,'chemistry','154.113.84.148',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 15:22:38','2019-08-20 15:24:56'),(3915,'chemistry','169.159.87.27',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 21:11:10','2019-08-20 21:11:12'),(3916,'physics','66.249.88.71',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-21 12:32:59','2019-08-21 12:33:01'),(3917,'englishlit','3.81.145.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 08:13:22','2019-08-22 08:13:22'),(3918,'chemistry','105.112.39.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 13:11:13','2019-08-22 13:14:10'),(3919,'biology','129.205.112.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:29:46','2019-08-22 14:29:46'),(3920,'mathematics','129.205.112.93',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:30:42','2019-08-22 14:32:55'),(3921,'english','129.205.112.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:36:50','2019-08-22 14:36:53'),(3922,'chemistry','41.184.168.107',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:19:24','2019-09-06 17:21:30'),(3923,'chemistry','41.58.210.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:22:34','2019-08-22 19:22:34'),(3924,'accounting','34.227.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:52:08','2019-08-22 19:52:08'),(3925,'chemistry','157.55.39.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 21:25:26','2019-08-22 21:25:26'),(3926,'chemistry','129.205.112.83',485,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 10:26:23','2019-08-23 10:47:40'),(3927,'english','197.242.102.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 14:25:28','2019-08-23 14:25:28'),(3928,'chemistry','207.46.13.154',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:07:03','2019-11-18 02:00:21'),(3929,'english','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:19','2019-08-23 20:31:22'),(3930,'geography','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:51','2019-08-23 20:31:54'),(3931,'physics','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:33:18','2019-08-23 20:33:21'),(3932,'government','129.205.112.109',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:34:13','2019-08-23 20:35:30'),(3933,'chemistry','129.205.112.109',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:37:45','2019-08-23 20:40:50'),(3934,'chemistry','40.77.167.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 09:58:33','2019-08-24 09:58:33'),(3935,'biology','197.210.62.41',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 10:11:54','2019-08-24 10:11:56'),(3936,'english','3.92.165.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 02:48:10','2019-08-26 02:48:10'),(3937,'chemistry','129.205.112.98',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 14:07:19','2019-08-27 09:07:12'),(3938,'englishlit','41.80.80.75',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:38:33','2019-08-26 16:38:36'),(3939,'mathematics','129.205.112.98',368,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:54:38','2019-08-27 18:32:30'),(3940,'physics','197.210.64.64',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 05:43:46','2019-08-27 05:43:48'),(3941,'chemistry','66.102.8.114',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 12:39:36','2019-08-27 12:39:38'),(3942,'chemistry','169.239.188.14',185,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 13:39:29','2019-08-27 13:43:17'),(3943,'mathematics','107.22.87.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:02:33','2019-08-28 05:02:33'),(3944,'chemistry','129.205.112.99',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:04:37','2019-08-28 12:15:39'),(3945,'chemistry','3.87.39.253',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 06:57:54','2019-08-28 06:57:55'),(3946,'physics','41.203.78.236',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 10:23:20','2019-08-29 07:46:26'),(3947,'english','129.205.112.99',15637,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 11:37:09','2019-09-01 08:17:00'),(3948,'mathematics','129.205.112.99',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:19:14','2019-09-01 05:59:18'),(3949,'commerce','129.205.112.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:22:31','2019-08-28 12:22:34'),(3950,'chemistry','207.46.13.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-29 11:21:14','2019-08-29 11:21:14'),(3951,'chemistry','40.77.167.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-30 05:57:46','2019-08-30 05:57:46'),(3952,'chemistry','66.249.83.64',25,'',NULL,'',NULL,NULL,NULL,'','','2019-08-30 11:25:31','2019-08-30 11:25:32'),(3953,'chemistry','157.55.39.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-31 02:12:18','2019-08-31 02:12:18'),(3954,'chemistry','197.210.8.81',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 08:57:11','2019-08-31 08:59:21'),(3955,'mathematics','18.212.178.244',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 09:18:17','2019-08-31 09:18:17'),(3956,'chemistry','197.255.172.32',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 11:43:45','2019-08-31 11:43:45'),(3957,'accounting','129.205.112.99',5,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 16:55:58','2019-08-31 16:55:59'),(3958,'biology','129.205.112.99',45,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 16:56:17','2019-08-31 17:39:24'),(3959,'chemistry','105.112.46.156',8,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 17:20:01','2019-08-31 17:20:21'),(3960,'chemistry','41.190.3.191',48,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 19:13:59','2019-08-31 19:17:54'),(3961,'chemistry','35.192.166.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-01 13:20:44','2019-09-01 13:20:44'),(3962,'chemistry','154.66.37.174',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 06:43:23','2019-09-02 06:43:56'),(3963,'chemistry','197.253.59.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 07:37:32','2019-09-02 07:37:32'),(3964,'english','105.112.66.6',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 11:05:53','2019-09-02 11:05:53'),(3965,'chemistry','105.112.75.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 15:41:26','2019-09-02 15:41:56'),(3966,'chemistry','54.36.150.178',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 02:18:15','2019-09-03 02:18:18'),(3967,'physics','197.210.28.217',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 05:11:07','2019-09-03 05:11:09'),(3968,'mathematics','3.88.69.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 11:24:03','2019-09-03 11:24:03'),(3969,'chemistry','197.210.226.232',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:32','2019-09-03 13:34:57'),(3970,'chemistry','197.210.227.69',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:56','2019-09-03 13:27:38'),(3971,'chemistry','197.210.226.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:25:32','2019-09-03 13:25:32'),(3972,'chemistry','197.210.227.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:33:08','2019-09-03 13:33:08'),(3973,'chemistry','197.210.226.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:36:44','2019-09-03 13:36:47'),(3974,'chemistry','54.36.150.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 23:05:24','2019-09-03 23:05:24'),(3975,'mathematics','54.221.189.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-04 18:49:49','2019-09-04 18:49:49'),(3976,'history','3.90.177.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:03:49','2019-09-05 06:03:49'),(3977,'mathematics','3.90.177.176',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:04:44','2019-09-05 06:04:44'),(3978,'accounting','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3979,'geography','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3980,'english','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:23'),(3981,'economics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3982,'mathematics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3983,'civiledu','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3984,'insurance','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3985,'chemistry','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3986,'currentaffairs','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3987,'englishlit','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3988,'history','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3989,'government','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3990,'biology','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3991,'chemistry','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3992,'englishlit','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3993,'geography','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3994,'economics','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3995,'irk','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3996,'civiledu','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3997,'chemistry','41.217.84.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:16:54','2019-09-05 16:16:54'),(3998,'chemistry','3.84.149.56',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:15','2019-09-05 16:17:16'),(3999,'chemistry','47.206.102.2',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:40','2019-09-05 16:18:25'),(4000,'chemistry','91.242.162.70',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:21','2019-09-06 12:27:22'),(4001,'mathematics','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:51','2019-09-07 12:05:12'),(4002,'chemistry','91.242.162.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:23:18','2019-09-06 15:33:50'),(4003,'mathematics','41.184.168.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:42:47','2019-09-06 15:42:47'),(4004,'mathematics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4005,'biology','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4006,'physics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4007,'chemistry','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4008,'englishlit','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4009,'economics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4010,'insurance','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4011,'english','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 05:35:36','2019-09-07 13:17:14'),(4012,'chemistry','129.205.112.115',71,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 08:22:52','2019-09-07 08:36:32'),(4013,'chemistry','154.118.11.75',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 19:29:07','2019-09-07 19:36:47'),(4014,'chemistry','41.190.3.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 21:38:56','2019-09-07 21:38:57'),(4015,'biology','154.118.37.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 05:09:59','2019-09-08 05:09:59'),(4016,'chemistry','77.88.5.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 09:42:20','2019-09-08 09:42:20'),(4017,'chemistry','207.46.13.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 14:03:52','2019-09-09 14:03:52'),(4018,'mathematics','54.209.217.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 18:28:02','2019-09-09 18:28:02'),(4019,'biology','54.226.212.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 01:20:10','2019-09-10 01:20:10'),(4020,'english','197.242.108.80',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 06:32:36','2019-09-10 06:32:36'),(4021,'economics','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:35:23','2019-09-10 16:35:24'),(4022,'english','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:36:16','2019-09-10 16:36:16'),(4023,'commerce','3.89.252.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 18:39:39','2019-09-10 18:39:39'),(4024,'chemistry','91.242.162.73',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:08:33','2019-10-24 12:14:06'),(4025,'physics','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4026,'chemistry','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4027,'englishlit','54.91.126.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:32:57'),(4028,'government','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4029,'crk','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4030,'civiledu','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4031,'history','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:09'),(4032,'chemistry','207.46.13.197',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:55:18','2019-09-10 19:55:18'),(4033,'chemistry','197.210.29.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 20:02:55','2019-09-10 20:02:55'),(4034,'accounting','18.234.153.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 22:03:30','2019-09-10 22:03:30'),(4035,'chemistry','110.44.120.215',208,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 01:19:49','2019-09-12 06:46:02'),(4036,'mathematics','110.44.120.215',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:04','2019-09-16 16:31:02'),(4037,'accounting','110.44.120.215',124,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:48','2019-09-13 05:09:09'),(4038,'physics','110.44.120.215',1180,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:45:48','2019-09-20 12:59:42'),(4039,'biology','110.44.120.215',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:53:41','2019-09-17 03:03:55'),(4040,'biology','110.44.120.206',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:08','2019-09-11 15:42:20'),(4041,'mathematics','110.44.120.206',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:16','2019-09-11 10:51:39'),(4042,'chemistry','110.44.120.206',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:48','2019-09-11 15:41:47'),(4043,'chemistry','129.56.92.16',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 13:46:20','2019-09-11 13:46:52'),(4044,'physics','66.249.64.176',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:39:39','2019-09-21 02:46:11'),(4045,'biology','66.249.64.178',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:49:48','2019-09-30 03:47:58'),(4046,'accounting','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:50:53','2019-09-11 16:50:55'),(4047,'mathematics','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:18','2019-09-11 16:51:19'),(4048,'chemistry','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:23','2019-09-11 16:51:24'),(4049,'biology','108.177.7.94',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:26','2019-09-11 16:54:23'),(4050,'biology','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:43','2019-09-11 16:51:45'),(4051,'chemistry','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:46','2019-09-11 16:51:47'),(4052,'physics','108.177.7.91',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:16','2019-09-11 16:53:33'),(4053,'accounting','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:49','2019-09-11 16:52:51'),(4054,'physics','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:54:16','2019-09-11 16:54:18'),(4055,'accounting','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:57:33','2019-09-11 16:57:34'),(4056,'chemistry','66.249.64.180',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:58:44','2019-09-17 21:57:53'),(4057,'accounting','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:07:30','2019-09-11 17:07:32'),(4058,'biology','104.132.0.101',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:23','2019-09-11 17:08:58'),(4059,'chemistry','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:50','2019-09-11 17:08:51'),(4060,'chemistry','34.236.170.225',11,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 17:38:25','2019-09-11 19:05:17'),(4061,'mathematics','35.243.2.1',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:39:59','2019-09-11 19:40:00'),(4062,'physics','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:09','2019-09-11 19:40:10'),(4063,'chemistry','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:40','2019-09-11 19:40:42'),(4064,'biology','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:53','2019-09-11 19:41:54'),(4065,'mathematics','35.243.2.2',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:59','2019-09-11 19:42:01'),(4066,'accounting','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:42:51','2019-09-11 19:42:53'),(4067,'mathematics','35.234.176.172',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:37:08','2019-09-11 22:37:10'),(4068,'physics','35.234.176.173',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:37:39','2019-09-11 22:37:41'),(4069,'biology','35.234.176.171',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:38:37','2019-09-11 22:38:39'),(4070,'chemistry','35.234.176.171',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:41:31','2019-09-11 22:41:33'),(4071,'currentaffairs','35.174.166.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 23:13:34','2019-09-11 23:13:34'),(4072,'mathematics','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:42','2019-09-12 00:09:58'),(4073,'biology','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:50','2019-09-12 00:09:22'),(4074,'accounting','108.177.6.58',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:09:14','2019-09-12 00:09:16'),(4075,'physics','108.177.6.58',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:11:56','2019-09-12 00:12:18'),(4076,'biology','103.10.28.200',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 01:50:53','2019-09-12 01:51:21'),(4077,'chemistry','216.10.240.90',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 03:25:50','2019-09-12 03:25:51'),(4078,'physics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:44:02','2019-09-12 06:45:27'),(4079,'chemistry','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:01','2019-09-12 06:46:03'),(4080,'biology','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:36','2019-09-12 06:46:38'),(4081,'mathematics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:48','2019-09-12 06:47:16'),(4082,'chemistry','41.184.239.224',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:00:01','2019-09-12 08:01:26'),(4083,'physics','121.220.192.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:50:39','2019-09-12 08:50:40'),(4084,'biology','1.144.106.173',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:20:55','2019-09-12 09:20:57'),(4085,'accounting','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:35:59','2019-09-12 09:36:01'),(4086,'mathematics','202.51.76.34',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:37:29','2019-09-13 05:07:49'),(4087,'mathematics','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:14','2019-09-12 09:55:15'),(4088,'biology','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:34','2019-09-12 09:55:36'),(4089,'mathematics','49.195.140.246',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:57','2019-09-12 09:55:59'),(4090,'biology','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:14:20','2019-09-12 10:14:21'),(4091,'mathematics','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:17:03','2019-09-12 10:17:04'),(4092,'physics','175.37.109.166',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:04:59','2019-09-12 11:09:15'),(4093,'mathematics','14.200.41.186',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:06:08','2019-09-12 11:06:10'),(4094,'mathematics','211.30.203.218',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:09:11','2019-09-12 11:09:13'),(4095,'physics','120.17.45.139',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 11:11:29','2019-09-12 11:11:31'),(4096,'chemistry','120.17.45.139',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:12:10','2019-09-12 11:12:11'),(4097,'biology','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:14:53','2019-09-12 11:14:55'),(4098,'mathematics','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:01','2019-09-12 11:17:03'),(4099,'chemistry','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:06','2019-09-12 11:17:09'),(4100,'mathematics','124.180.202.128',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:23:33','2019-09-12 11:23:35'),(4101,'mathematics','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:26:22','2019-09-12 11:26:24'),(4102,'biology','175.37.109.166',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:46:31','2019-09-12 11:47:01'),(4103,'biology','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:48:41','2019-09-12 11:48:43'),(4104,'mathematics','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:49:54','2019-09-12 11:49:56'),(4105,'biology','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:43:46','2019-09-12 14:43:47'),(4106,'physics','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:49:17','2019-09-12 14:49:19'),(4107,'biology','27.34.20.106',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:02','2019-09-12 14:54:04'),(4108,'chemistry','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:14','2019-09-12 14:54:16'),(4109,'physics','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:26','2019-09-12 14:54:28'),(4110,'physics','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:58:24','2019-09-12 14:58:26'),(4111,'biology','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:59:49','2019-09-12 14:59:51'),(4112,'chemistry','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:00:06','2019-09-12 15:00:08'),(4113,'biology','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:01:16','2019-09-12 15:01:18'),(4114,'physics','110.44.127.178',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:02','2019-09-12 15:29:03'),(4115,'physics','27.34.17.16',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:40','2019-09-12 15:30:08'),(4116,'physics','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:50:55','2019-09-12 15:50:57'),(4117,'biology','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:51:13','2019-09-12 15:51:15'),(4118,'chemistry','91.242.162.72',3,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 18:05:30','2019-09-12 18:20:23'),(4119,'chemistry','49.195.156.140',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:06:39','2019-09-12 19:06:41'),(4120,'biology','202.51.88.114',60,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:10:30','2019-09-12 19:16:01'),(4121,'biology','49.181.243.120',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 20:37:28','2019-09-12 20:37:58'),(4122,'chemistry','91.242.162.45',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:30:11','2019-09-12 23:30:11'),(4123,'physics','220.240.160.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:51:25','2019-09-12 23:51:26'),(4124,'chemistry','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:57:36','2019-09-12 23:57:37'),(4125,'biology','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:59:54','2019-09-12 23:59:56'),(4126,'mathematics','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 00:00:25','2019-09-13 00:00:27'),(4127,'biology','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:33:57','2019-09-13 01:33:58'),(4128,'mathematics','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:37:24','2019-09-13 01:37:26'),(4129,'physics','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:15:58','2019-09-13 02:15:59'),(4130,'accounting','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:16:14','2019-09-13 02:16:16'),(4131,'biology','27.34.17.16',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:07:26','2019-09-13 03:07:28'),(4132,'chemistry','141.8.132.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:10:44','2019-09-13 03:10:44'),(4133,'physics','1.144.105.17',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 04:06:29','2019-09-13 04:06:31'),(4134,'biology','125.254.44.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:00:53','2019-09-13 05:00:54'),(4135,'physics','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:08:24','2019-09-13 05:08:25'),(4136,'mathematics','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4137,'biology','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:15'),(4138,'government','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4139,'english','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4140,'economics','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4141,'insurance','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4142,'accounting','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4143,'currentaffairs','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4144,'chemistry','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4145,'history','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:17'),(4146,'englishlit','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4147,'physics','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:06','2019-09-13 06:03:07'),(4148,'physics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:16','2019-09-13 06:03:17'),(4149,'mathematics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:42','2019-09-13 06:03:43'),(4150,'chemistry','27.34.48.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:06:07','2019-09-13 06:09:13'),(4151,'biology','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:09:23','2019-09-13 06:09:24'),(4152,'commerce','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:50','2019-09-13 06:20:51'),(4153,'physics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4154,'government','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4155,'economics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4156,'irk','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4157,'currentaffairs','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4158,'history','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4159,'biology','175.35.106.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:16:45','2019-09-13 07:16:46'),(4160,'physics','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:29:45','2019-09-13 07:29:47'),(4161,'chemistry','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:31:28','2019-09-13 07:31:29'),(4162,'mathematics','27.34.70.161',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:32:08','2019-09-13 07:32:44'),(4163,'physics','1.41.245.225',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:14:08','2019-09-13 08:14:09'),(4164,'biology','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:40:42','2019-09-13 08:40:44'),(4165,'mathematics','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:45:42','2019-09-13 08:45:43'),(4166,'chemistry','110.150.214.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 09:32:23','2019-09-13 09:32:24'),(4167,'accounting','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:12','2019-09-13 11:01:14'),(4168,'mathematics','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:24','2019-09-13 11:01:25'),(4169,'physics','66.249.64.166',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:33:40','2019-09-13 14:33:41'),(4170,'accounting','66.249.64.180',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:39:00','2019-09-25 11:14:55'),(4171,'chemistry','220.244.110.40',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:15:30','2019-09-13 23:15:32'),(4172,'mathematics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:18','2019-09-13 23:46:20'),(4173,'physics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:45','2019-09-13 23:46:47'),(4174,'mathematics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:03:10','2019-09-14 01:03:12'),(4175,'physics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:04:12','2019-09-14 01:04:14'),(4176,'mathematics','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:11:39','2019-09-14 03:11:40'),(4177,'biology','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:12:05','2019-09-14 03:12:06'),(4178,'mathematics','3.92.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 06:23:58','2019-09-14 06:23:58'),(4179,'physics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:10:22','2019-09-14 08:10:23'),(4180,'mathematics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:11:18','2019-09-14 08:11:20'),(4181,'mathematics','211.27.254.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:53:20','2019-09-14 08:53:22'),(4182,'chemistry','41.86.6.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:55:03','2019-09-14 08:55:59'),(4183,'mathematics','66.249.66.212',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:03:19','2019-10-01 13:36:10'),(4184,'accounting','66.249.66.212',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:11:53','2019-10-10 06:34:01'),(4185,'biology','66.249.66.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:13:24','2019-10-09 01:01:54'),(4186,'chemistry','66.249.66.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:14:57','2019-10-29 04:35:40'),(4187,'physics','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:15:49','2019-10-10 06:52:10'),(4188,'chemistry','207.46.13.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:21:21','2019-09-14 13:21:21'),(4189,'chemistry','129.56.90.193',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:23:39','2019-09-14 13:25:42'),(4190,'chemistry','185.20.6.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:12:04','2019-09-14 14:12:04'),(4191,'chemistry','54.91.254.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:13:12','2019-09-14 14:13:12'),(4192,'chemistry','3.95.179.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:15:08','2019-09-14 14:15:08'),(4193,'mathematics','54.167.105.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 23:41:30','2019-09-14 23:41:30'),(4194,'physics','110.44.120.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 02:50:34','2019-09-15 02:50:36'),(4195,'chemistry','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:14:22','2019-09-15 04:15:04'),(4196,'biology','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:15:02','2019-09-15 04:15:37'),(4197,'accounting','113.199.203.102',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:16:18','2019-09-15 04:16:20'),(4198,'chemistry','35.172.100.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 07:24:14','2019-09-15 07:24:28'),(4199,'mathematics','54.221.170.133',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 13:27:05','2019-09-15 13:59:54'),(4200,'crk','54.221.170.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 14:16:11','2019-09-15 14:16:11'),(4201,'chemistry','54.36.148.104',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 18:59:31','2019-09-15 18:59:31'),(4202,'mathematics','34.207.243.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 19:16:51','2019-09-15 19:16:51'),(4203,'mathematics','47.30.248.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 04:20:11','2019-09-16 04:20:13'),(4204,'mathematics','49.195.29.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 06:12:19','2019-09-16 06:12:21'),(4205,'chemistry','157.51.26.93',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:06:39','2019-09-16 11:06:40'),(4206,'mathematics','41.86.152.178',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:19:00','2019-09-16 11:19:01'),(4207,'english','105.112.45.87',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 12:37:29','2019-09-16 12:37:56'),(4208,'mathematics','154.120.94.26',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 13:28:56','2019-09-16 13:28:57'),(4209,'physics','157.51.31.138',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-16 14:16:36','2019-09-16 14:17:04'),(4210,'chemistry','157.51.31.138',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 14:17:05','2019-09-16 14:17:32'),(4211,'physics','49.126.207.89',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:02:39','2019-09-16 16:12:06'),(4212,'chemistry','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:12:11','2019-09-16 16:12:12'),(4213,'biology','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:16:05','2019-09-16 16:16:06'),(4214,'chemistry','197.210.44.251',16,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:25:35','2019-09-16 16:28:49'),(4215,'chemistry','197.210.62.38',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:26','2019-09-16 16:29:26'),(4216,'chemistry','197.210.45.121',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:50','2019-09-16 16:29:50'),(4217,'mathematics','3.95.23.58',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:40:13','2019-09-16 16:40:13'),(4218,'chemistry','27.34.70.118',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:54:28','2019-09-17 01:54:29'),(4219,'physics','27.34.70.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:55:46','2019-09-17 01:57:21'),(4220,'physics','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:44:39','2019-09-17 06:44:41'),(4221,'biology','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:48:22','2019-09-17 06:48:23'),(4222,'physics','113.199.202.174',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:16:31','2019-09-17 07:16:33'),(4223,'biology','43.245.95.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:55:04','2019-09-17 07:57:24'),(4224,'chemistry','197.210.141.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 08:18:07','2019-09-17 08:18:07'),(4225,'physics','27.34.48.127',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-17 13:39:15','2019-09-17 13:39:17'),(4226,'chemistry','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:39:29','2019-09-17 13:39:30'),(4227,'biology','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:42:20','2019-09-17 13:42:22'),(4228,'chemistry','41.190.2.129',92,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:53:44','2019-09-18 12:00:00'),(4229,'mathematics','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:56:08','2019-09-18 11:06:40'),(4230,'mathematics','34.230.32.127',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 19:04:41','2019-09-17 19:04:41'),(4231,'crk','105.112.52.75',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 20:33:57','2019-09-17 20:34:00'),(4232,'mathematics','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 21:53:45','2019-09-17 21:53:47'),(4233,'biology','66.249.64.180',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-17 22:13:17','2019-09-25 11:22:46'),(4234,'chemistry','91.242.162.56',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 00:16:39','2019-09-18 00:16:39'),(4235,'physics','49.181.255.251',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:11:15','2019-09-18 02:11:47'),(4236,'chemistry','49.181.255.251',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:12:23','2019-09-18 02:12:24'),(4237,'physics','110.44.127.203',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:21:31','2019-09-18 02:21:32'),(4238,'chemistry','40.77.167.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 03:04:48','2019-09-18 03:04:48'),(4239,'chemistry','49.180.134.8',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 04:19:37','2019-09-18 04:19:38'),(4240,'government','41.190.2.129',658,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-18 04:37:51','2019-09-18 11:14:19'),(4241,'english','35.233.231.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 05:38:18','2019-09-18 05:38:18'),(4242,'english','41.190.2.129',77,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:17:49','2019-09-18 09:59:30'),(4243,'biology','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:26:52','2019-09-18 11:11:13'),(4244,'chemistry','197.210.226.214',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 10:04:09','2019-09-18 10:04:09'),(4245,'english','188.29.164.19',28,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:23:26','2019-09-18 11:25:54'),(4246,'commerce','41.190.2.129',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:28:08','2019-09-18 11:56:09'),(4247,'chemistry','66.249.83.20',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 11:46:32','2019-11-06 14:40:23'),(4248,'english','105.112.41.25',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:49:33','2019-09-18 11:49:33'),(4249,'chemistry','105.112.38.22',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:07:36','2019-09-18 12:07:36'),(4250,'english','105.112.38.22',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:09:51','2019-09-18 12:11:42'),(4251,'chemistry','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:22','2019-09-18 12:49:23'),(4252,'chemistry','157.55.39.178',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:23','2019-09-18 12:49:23'),(4253,'biology','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:38','2019-09-18 12:49:38'),(4254,'english','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:50:03','2019-09-18 12:50:03'),(4255,'chemistry','197.210.65.154',21,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:11:00','2019-09-18 14:14:29'),(4256,'government','197.210.65.154',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:15:12','2019-09-18 14:17:53'),(4257,'government','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:22:02','2019-09-18 14:22:03'),(4258,'chemistry','41.190.2.121',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:24:39','2019-09-18 14:24:39'),(4259,'commerce','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:25:26','2019-09-18 14:25:26'),(4260,'english','197.149.125.34',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:29:51','2019-09-18 15:03:08'),(4261,'economics','105.112.29.230',10,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:08:25','2019-09-18 17:49:38'),(4262,'commerce','41.190.30.252',119,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 15:20:43','2019-09-19 15:57:17'),(4263,'commerce','105.112.29.213',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:29:15','2019-09-18 15:29:15'),(4264,'government','41.190.30.252',245,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:07:56','2019-09-20 12:55:06'),(4265,'english','105.112.41.242',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:10:59','2019-09-18 16:12:46'),(4266,'english','41.190.30.252',301,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:30:17','2019-09-20 12:50:25'),(4267,'mathematics','41.190.2.209',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:45:19','2019-09-18 16:45:20'),(4268,'chemistry','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:05','2019-09-19 15:57:38'),(4269,'mathematics','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:20','2019-09-19 15:57:59'),(4270,'biology','41.190.30.252',602,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:26:22','2019-09-20 12:54:08'),(4271,'chemistry','150.70.167.82',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 18:31:12','2019-09-26 00:57:44'),(4272,'chemistry','40.77.167.63',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 01:09:50','2020-01-08 07:44:01'),(4273,'mathematics','41.217.116.241',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 03:47:25','2019-09-19 03:54:42'),(4274,'government','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:20:51','2019-09-19 07:20:52'),(4275,'biology','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:22:21','2019-09-19 07:22:22'),(4276,'mathematics','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4277,'chemistry','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4278,'englishlit','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4279,'crk','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4280,'geography','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4281,'currentaffairs','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4282,'history','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:55'),(4283,'english','45.222.100.155',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:45:54','2019-09-19 08:47:36'),(4284,'biology','27.34.25.22',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 10:47:54','2019-09-19 10:47:56'),(4285,'physics','27.34.70.49',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 12:46:48','2019-09-19 13:37:35'),(4286,'chemistry','41.138.163.117',264,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 16:24:08','2019-09-20 08:36:52'),(4287,'physics','27.34.70.50',260,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-19 17:28:13','2019-09-19 18:55:53'),(4288,'chemistry','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 17:50:14','2019-09-19 17:50:15'),(4289,'biology','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 18:55:47','2019-09-19 18:55:48'),(4290,'chemistry','54.36.148.175',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 20:34:08','2019-09-19 20:34:08'),(4291,'english','41.217.116.241',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 05:04:08','2019-09-20 05:04:56'),(4292,'biology','110.44.125.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:16:05','2019-09-20 13:16:59'),(4293,'physics','103.95.16.239',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:20','2019-09-20 13:33:21'),(4294,'physics','103.94.222.78',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:40','2019-09-20 13:33:42'),(4295,'physics','103.58.145.248',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:47:59','2019-09-20 14:02:35'),(4296,'chemistry','103.58.145.248',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:49:11','2019-09-20 13:49:13'),(4297,'physics','27.34.26.105',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:02','2019-09-20 13:51:04'),(4298,'biology','27.34.26.105',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:12','2019-09-20 13:53:00'),(4299,'biology','103.58.145.248',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:49','2019-09-20 13:58:53'),(4300,'physics','27.34.70.223',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 14:15:53','2019-09-20 14:15:54'),(4301,'biology','27.34.104.212',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:24','2019-09-20 15:10:26'),(4302,'biology','27.34.69.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:35','2019-09-20 15:10:36'),(4303,'physics','43.228.192.35',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:33:07','2019-09-27 00:26:30'),(4304,'mathematics','43.228.192.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:34:07','2019-09-20 15:36:30'),(4305,'accounting','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:08','2019-09-20 18:55:09'),(4306,'englishlit','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4307,'government','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4308,'geography','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4309,'irk','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4310,'civiledu','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4311,'history','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4312,'biology','103.95.16.185',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 19:02:51','2019-09-20 19:02:52'),(4313,'chemistry','93.158.166.147',2,'','NG','','Lagos',NULL,NULL,'','','2019-09-20 20:08:32','2019-10-24 17:47:31'),(4314,'physics','27.34.25.249',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-20 22:44:30','2019-09-20 22:44:31'),(4315,'biology','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:44:50','2019-09-20 22:44:51'),(4316,'chemistry','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:46:10','2019-09-20 22:46:12'),(4317,'chemistry','35.173.47.43',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 00:22:18','2019-09-21 00:22:22'),(4318,'mathematics','66.249.64.178',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 02:47:16','2019-09-21 02:47:18'),(4319,'chemistry','3.81.148.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:13:38','2019-09-21 05:13:46'),(4320,'chemistry','154.120.114.154',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:17:33','2019-09-21 06:18:06'),(4321,'chemistry','54.89.142.238',106,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 08:00:06','2019-09-21 08:09:05'),(4322,'chemistry','91.242.162.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 11:12:15','2019-09-21 11:12:15'),(4323,'commerce','41.190.31.67',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:09:29','2019-09-21 19:06:59'),(4324,'government','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:11:30','2019-09-21 15:11:31'),(4325,'mathematics','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:12:57','2019-09-21 15:12:58'),(4326,'chemistry','105.112.53.39',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 18:24:08','2019-09-21 18:28:24'),(4327,'english','197.210.44.0',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 20:50:21','2019-09-21 20:50:21'),(4328,'mathematics','18.234.75.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 21:50:19','2019-09-21 21:50:19'),(4329,'mathematics','34.207.140.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 22:36:26','2019-09-21 22:36:26'),(4330,'biology','27.34.68.44',36,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:18'),(4331,'biology','27.34.68.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:16'),(4332,'chemistry','34.228.212.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 07:07:50','2019-09-22 07:07:50'),(4333,'chemistry','91.242.162.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 09:55:37','2019-09-22 09:55:37'),(4334,'commerce','41.190.3.118',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 10:30:11','2019-09-22 10:32:00'),(4335,'mathematics','35.175.238.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 22:29:35','2019-09-22 22:29:35'),(4336,'biology','103.232.154.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 01:46:19','2019-09-23 01:46:20'),(4337,'biology','27.34.104.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 02:47:02','2019-09-23 02:47:03'),(4338,'mathematics','105.112.27.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 15:37:49','2019-09-23 15:37:50'),(4339,'chemistry','154.113.86.210',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:52:59','2019-09-24 08:58:26'),(4340,'mathematics','154.113.86.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:58:49','2019-09-24 08:58:49'),(4341,'mathematics','154.113.86.202',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 09:42:16','2019-09-24 09:42:41'),(4342,'currentaffairs','54.173.205.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 12:53:57','2019-09-24 12:53:57'),(4343,'english','105.112.52.225',21,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:28:15','2019-09-24 16:49:26'),(4344,'biology','105.112.52.225',663,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:30:16','2019-09-24 14:54:54'),(4345,'chemistry','105.112.52.225',22,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:32:07','2019-09-24 15:00:30'),(4346,'currentaffairs','105.112.52.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 13:34:54','2019-09-24 13:34:54'),(4347,'commerce','105.112.52.225',598,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:30:24','2019-09-24 14:57:46'),(4348,'accounting','105.112.52.225',341,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:33:47','2019-09-24 14:59:43'),(4349,'physics','105.112.52.225',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:55:31','2019-09-24 15:02:06'),(4350,'mathematics','105.112.52.225',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:58:41','2019-09-24 14:58:42'),(4351,'english','41.190.31.234',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 15:47:34','2019-09-24 15:47:34'),(4352,'physics','54.198.206.199',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 21:19:56','2019-09-24 21:19:56'),(4353,'government','52.5.110.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 02:40:21','2019-09-25 02:40:21'),(4354,'biology','105.112.41.33',286,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 03:16:07','2019-09-25 12:05:04'),(4355,'english','154.118.20.99',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 04:50:44','2019-09-25 04:58:16'),(4356,'physics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 05:48:27','2019-09-25 05:48:29'),(4357,'mathematics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 07:16:11','2019-09-25 07:16:13'),(4358,'accounting','105.112.41.33',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:01','2019-09-25 10:01:11'),(4359,'mathematics','105.112.41.33',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:41','2019-09-25 09:14:48'),(4360,'physics','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:25:33','2019-09-25 11:45:37'),(4361,'chemistry','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:53:46','2019-09-25 08:53:47'),(4362,'government','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:02:04','2019-09-25 09:02:04'),(4363,'commerce','105.112.41.33',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:12:58','2019-09-25 09:46:15'),(4364,'english','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:24:47','2019-09-25 09:45:39'),(4365,'history','54.92.191.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 16:07:48','2019-09-25 16:07:48'),(4366,'biology','154.118.42.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 21:32:52','2019-09-25 21:32:53'),(4367,'chemistry','91.242.162.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 03:32:45','2019-09-26 03:54:55'),(4368,'english','154.118.17.103',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 07:55:26','2019-09-26 07:58:00'),(4369,'chemistry','37.9.87.217',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 08:32:29','2019-09-28 02:46:55'),(4370,'civiledu','105.112.44.193',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:35:16','2019-09-26 09:59:45'),(4371,'insurance','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:22','2019-09-26 09:59:23'),(4372,'currentaffairs','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:32','2019-09-26 09:59:32'),(4373,'chemistry','105.112.44.193',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:04:54','2019-09-26 11:38:07'),(4374,'biology','105.112.44.193',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:20','2019-09-26 19:16:16'),(4375,'englishlit','105.112.44.193',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:28','2019-09-26 11:34:05'),(4376,'physics','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:10:00','2019-09-26 11:29:36'),(4377,'accounting','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:14:27','2019-09-26 10:17:13'),(4378,'irk','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:33:54','2019-09-26 10:33:54'),(4379,'government','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:01:08','2019-09-26 11:01:09'),(4380,'commerce','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:28:09','2019-09-26 11:28:10'),(4381,'chemistry','157.55.39.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 18:38:53','2019-11-24 22:31:16'),(4382,'chemistry','154.118.37.164',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:42:25','2019-09-26 21:43:27'),(4383,'mathematics','154.118.37.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:43:52','2019-09-26 21:43:52'),(4384,'government','52.73.45.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 00:37:59','2019-09-27 00:37:59'),(4385,'irk','54.175.103.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 05:05:42','2019-09-27 05:05:42'),(4386,'chemistry','36.99.136.130',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4387,'chemistry','111.7.100.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4388,'chemistry','111.7.100.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:44','2019-10-09 11:27:44'),(4389,'physics','49.244.242.12',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:00:55','2019-09-27 12:00:56'),(4390,'chemistry','157.55.39.74',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:45:44','2019-09-27 12:45:44'),(4391,'english','197.210.54.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 17:55:01','2019-09-27 17:55:01'),(4392,'economics','54.234.192.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 00:10:36','2019-09-28 00:10:36'),(4393,'englishlit','54.91.218.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 02:43:56','2019-09-28 02:43:56'),(4394,'english','154.120.93.57',595,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:40:25','2019-10-01 11:59:48'),(4395,'biology','154.120.93.57',225,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:57:15','2019-09-28 16:09:59'),(4396,'chemistry','105.112.23.210',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:27:45','2019-09-28 11:29:58'),(4397,'physics','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:20','2019-09-28 11:55:21'),(4398,'accounting','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:43','2019-09-28 11:55:45'),(4399,'englishlit','54.172.49.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 15:59:20','2019-09-28 15:59:20'),(4400,'chemistry','154.120.93.57',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 16:06:01','2019-09-28 16:08:44'),(4401,'biology','171.76.250.218',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 18:56:35','2019-09-28 18:58:46'),(4402,'mathematics','105.112.11.104',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 20:48:14','2019-09-28 20:48:14'),(4403,'mathematics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:28'),(4404,'biology','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:29'),(4405,'physics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4406,'chemistry','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4407,'crk','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4408,'economics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4409,'civiledu','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4410,'civiledu','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 23:37:51','2019-09-28 23:37:51'),(4411,'chemistry','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 00:03:54','2019-09-29 00:03:54'),(4412,'physics','54.224.133.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:24:13','2019-09-29 01:52:53'),(4413,'english','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4414,'mathematics','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4415,'accounting','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4416,'crk','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4417,'civiledu','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:54'),(4418,'insurance','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:54','2019-09-29 01:52:54'),(4419,'physics','3.95.189.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 02:51:59','2019-09-29 02:51:59'),(4420,'chemistry','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 06:16:54','2019-09-29 06:16:56'),(4421,'physics','93.71.107.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:18','2019-09-29 07:40:10'),(4422,'chemistry','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:31','2019-09-29 07:39:32'),(4423,'biology','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:40:23','2019-09-29 07:40:25'),(4424,'mathematics','154.120.93.57',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:15:50','2019-09-29 18:43:31'),(4425,'commerce','154.120.93.57',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:31:37','2019-09-29 18:37:10'),(4426,'chemistry','5.255.250.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 10:22:17','2019-10-15 18:07:00'),(4427,'chemistry','107.167.107.151',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:05','2019-09-29 13:44:39'),(4428,'chemistry','105.112.113.181',90,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:22','2019-09-29 13:42:00'),(4429,'mathematics','105.112.113.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:35:38','2019-09-29 13:35:38'),(4430,'chemistry','36.252.98.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:43:36','2019-09-29 13:43:38'),(4431,'chemistry','82.145.220.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 18:07:39','2019-09-29 18:07:47'),(4432,'chemistry','129.56.100.60',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:15:36','2019-09-30 09:16:57'),(4433,'english','129.56.100.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:16:16','2019-09-30 09:16:25'),(4434,'government','41.190.2.44',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:13:45','2019-09-30 14:15:39'),(4435,'biology','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:04','2019-09-30 13:57:15'),(4436,'mathematics','41.190.2.44',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:57','2019-09-30 14:29:55'),(4437,'chemistry','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:43:01','2019-09-30 17:46:58'),(4438,'english','41.190.2.44',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:45:04','2019-09-30 17:49:27'),(4439,'commerce','41.190.2.44',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:54:47','2019-09-30 18:56:36'),(4440,'history','54.147.150.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 15:44:23','2019-09-30 15:44:23'),(4441,'government','41.58.215.64',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:08:17','2019-09-30 18:08:17'),(4442,'mathematics','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:30:32','2019-09-30 18:30:33'),(4443,'government','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:31:38','2019-09-30 18:31:38'),(4444,'biology','27.33.202.67',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 00:15:27','2019-10-01 00:15:29'),(4445,'chemistry','197.210.63.23',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 06:59:39','2019-10-01 07:17:32'),(4446,'physics','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:29:40','2019-10-26 17:47:17'),(4447,'biology','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:39:21','2019-10-12 01:46:00'),(4448,'chemistry','197.210.246.222',930,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 14:56:07','2019-10-08 18:45:58'),(4449,'chemistry','196.220.144.2',702,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 15:04:34','2019-10-06 18:10:34'),(4450,'physics','171.76.168.198',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 20:07:42','2019-10-01 20:07:43'),(4451,'english','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4452,'commerce','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4453,'chemistry','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4454,'economics','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4455,'insurance','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4456,'currentaffairs','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4457,'history','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:35'),(4458,'english','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4459,'commerce','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4460,'englishlit','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4461,'government','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4462,'crk','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4463,'insurance','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4464,'currentaffairs','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:34'),(4465,'english','154.118.21.211',125,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 07:40:32','2019-10-02 08:32:13'),(4466,'chemistry','41.184.176.252',1053,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 10:36:18','2020-01-27 12:19:42'),(4467,'accounting','54.84.164.37',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 12:49:33','2019-10-02 12:49:33'),(4468,'chemistry','3.87.61.43',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-02 13:16:54','2019-10-02 13:16:57'),(4469,'english','197.210.246.222',520,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:48:04','2019-10-08 18:55:26'),(4470,'mathematics','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:50:53','2019-10-02 19:50:56'),(4471,'history','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:52:48','2019-10-02 19:52:51'),(4472,'english','196.220.144.2',291,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:15:37','2019-10-06 20:24:53'),(4473,'mathematics','196.220.144.2',1403,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:35:07','2019-10-06 18:58:12'),(4474,'physics','196.220.144.2',960,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:39:30','2019-10-06 19:09:01'),(4475,'economics','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:50:04','2019-10-08 18:48:36'),(4476,'biology','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:52:35','2019-10-08 18:56:29'),(4477,'commerce','197.210.246.222',320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:56:17','2019-10-02 20:58:19'),(4478,'accounting','197.210.246.222',760,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:58:36','2019-10-08 18:48:07'),(4479,'chemistry','100.43.90.108',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 03:16:03','2019-10-04 02:08:43'),(4480,'physics','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:07','2019-10-03 05:18:08'),(4481,'chemistry','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:34','2019-10-03 05:18:36'),(4482,'english','154.120.87.191',165,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 06:04:34','2019-10-03 16:10:48'),(4483,'english','35.210.215.17',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 07:46:05','2019-10-03 07:46:05'),(4484,'chemistry','5.255.250.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 09:44:47','2019-10-03 09:44:47'),(4485,'chemistry','105.112.41.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 10:51:00','2019-10-03 10:51:26'),(4486,'physics','54.242.236.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 13:11:23','2019-10-03 13:11:23'),(4487,'chemistry','207.46.13.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 16:53:40','2019-10-03 16:53:40'),(4488,'currentaffairs','3.82.243.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 21:55:12','2019-10-03 21:55:12'),(4489,'english','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 05:55:09','2019-10-04 06:29:52'),(4490,'englishlit','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:24:38','2019-10-04 06:29:57'),(4491,'insurance','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:29:57','2019-10-04 06:32:40'),(4492,'government','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:15','2019-10-04 06:33:46'),(4493,'currentaffairs','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:33','2019-10-04 06:32:04'),(4494,'crk','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:31:19','2019-10-04 06:33:25'),(4495,'commerce','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:32:20','2019-10-04 06:33:41'),(4496,'english','41.217.46.141',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 07:54:54','2019-10-04 09:02:54'),(4497,'government','3.85.89.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 09:20:47','2019-10-04 09:20:47'),(4498,'mathematics','3.87.186.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 11:42:15','2019-10-04 11:42:15'),(4499,'english','197.210.44.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:52:50','2019-10-04 14:55:58'),(4500,'mathematics','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:55:40','2019-10-04 14:55:40'),(4501,'chemistry','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:01:20','2019-10-04 15:01:20'),(4502,'biology','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:10:50','2019-10-04 15:10:51'),(4503,'englishlit','196.220.144.2',1080,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-04 21:36:39','2019-10-06 19:21:44'),(4504,'government','196.220.144.2',1001,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:40:51','2019-10-06 19:06:34'),(4505,'geography','196.220.144.2',1320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:43:47','2019-10-06 19:15:16'),(4506,'civiledu','196.220.144.2',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:48:25','2019-10-04 21:51:04'),(4507,'history','52.206.150.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 23:32:16','2019-10-04 23:32:16'),(4508,'physics','119.160.67.57',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 03:40:07','2019-10-05 03:40:08'),(4509,'english','41.217.100.83',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 05:04:25','2019-10-05 06:01:53'),(4510,'chemistry','54.36.149.48',47,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-05 06:27:28','2020-05-06 15:23:56'),(4511,'irk','52.205.10.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 13:25:19','2019-10-05 13:25:19'),(4512,'english','154.118.67.81',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 18:02:59','2019-10-05 20:13:49'),(4513,'physics','110.44.115.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 02:22:30','2019-10-06 02:22:31'),(4514,'mathematics','105.112.17.47',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 05:36:53','2019-10-06 05:37:17'),(4515,'english','41.217.97.111',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:14:35','2019-10-06 11:53:33'),(4516,'government','54.224.0.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:26:54','2019-10-06 06:26:54'),(4517,'irk','54.243.12.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 11:38:30','2019-10-06 11:38:30'),(4518,'economics','196.220.144.2',521,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-06 18:16:49','2019-10-06 19:02:58'),(4519,'history','174.129.83.246',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 18:59:36','2019-10-06 18:59:36'),(4520,'accounting','196.220.144.2',280,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 19:24:55','2019-10-06 19:26:22'),(4521,'english','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:32','2019-10-07 02:07:33'),(4522,'mathematics','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4523,'physics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4524,'englishlit','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4525,'crk','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4526,'economics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4527,'civiledu','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4528,'commerce','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4529,'accounting','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4530,'geography','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4531,'irk','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4532,'economics','18.204.201.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 07:02:49','2019-10-07 07:02:49'),(4533,'english','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4534,'biology','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4535,'englishlit','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4536,'crk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4537,'geography','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4538,'economics','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:11'),(4539,'irk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4540,'insurance','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4541,'currentaffairs','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4542,'history','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4543,'chemistry','40.77.167.166',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 14:48:22','2020-04-16 19:24:46'),(4544,'english','154.120.92.245',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:16:45','2019-10-08 08:28:43'),(4545,'chemistry','207.46.13.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:29:00','2019-10-08 08:29:00'),(4546,'chemistry','197.210.60.68',198,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 13:13:26','2019-10-08 13:25:10'),(4547,'chemistry','91.242.162.77',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 17:35:58','2019-10-08 18:04:36'),(4548,'englishlit','197.210.246.222',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-08 18:46:58','2019-10-08 18:47:31'),(4549,'biology','196.220.144.2',80,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:06:19','2019-10-08 19:06:44'),(4550,'commerce','196.220.144.2',240,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:07:20','2019-10-08 19:08:52'),(4551,'chemistry','66.249.66.208',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 00:58:25','2019-10-26 17:44:22'),(4552,'mathematics','66.249.66.208',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 01:11:04','2019-10-26 17:53:47'),(4553,'chemistry','34.229.149.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 04:15:06','2019-10-09 04:15:06'),(4554,'commerce','54.242.23.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 06:59:31','2019-10-09 06:59:31'),(4555,'chemistry','36.99.136.139',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:44'),(4556,'chemistry','36.99.136.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:43'),(4557,'chemistry','54.36.150.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 12:06:00','2019-10-09 12:06:00'),(4558,'chemistry','35.175.120.211',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 02:34:06','2019-10-10 04:07:28'),(4559,'insurance','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:18','2019-11-12 01:51:04'),(4560,'accounting','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:22','2019-11-12 01:51:08'),(4561,'englishlit','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:25','2019-11-12 01:51:13'),(4562,'government','198.187.29.38',1680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:30','2019-11-12 01:51:18'),(4563,'currentaffairs','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:34','2019-11-12 01:51:24'),(4564,'economics','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:38','2019-11-12 01:51:29'),(4565,'geography','198.187.29.38',1760,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:43','2019-11-12 01:51:33'),(4566,'english','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:50','2019-11-12 01:51:37'),(4567,'mathematics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:54','2019-11-12 01:51:41'),(4568,'commerce','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:58','2019-11-12 01:51:45'),(4569,'biology','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:09','2019-11-12 01:51:48'),(4570,'physics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:13','2019-11-12 01:51:52'),(4571,'chemistry','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:17','2019-11-12 01:51:56'),(4572,'crk','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:20','2019-11-12 01:52:00'),(4573,'history','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:24','2019-11-12 01:52:04'),(4574,'irk','198.187.29.38',810,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:35','2019-11-12 01:52:07'),(4575,'civiledu','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:38','2019-11-12 01:52:11'),(4576,'english','54.147.174.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-11 01:20:30','2019-10-11 01:20:30'),(4577,'chemistry','105.112.51.58',49,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 09:52:44','2019-10-11 09:54:21'),(4578,'chemistry','182.140.244.74',11,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 11:22:18','2019-10-11 11:22:28'),(4579,'mathematics','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4580,'accounting','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4581,'biology','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4582,'government','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4583,'crk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4584,'geography','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4585,'irk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4586,'insurance','54.224.74.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 00:50:18','2019-10-12 00:50:18'),(4587,'mathematics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:33:21','2019-10-12 01:33:22'),(4588,'physics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:39:23','2019-10-12 01:39:25'),(4589,'accounting','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:48:29','2019-10-26 17:37:06'),(4590,'currentaffairs','105.112.40.99',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 05:00:59','2019-10-12 05:00:59'),(4591,'biology','105.112.40.100',10,'',NULL,'',NULL,NULL,NULL,'','','2019-10-12 16:50:45','2019-10-12 16:51:53'),(4592,'currentaffairs','3.87.162.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 01:34:03','2019-10-13 01:34:03'),(4593,'commerce','54.83.149.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 06:55:56','2019-10-13 06:55:56'),(4594,'chemistry','41.217.58.69',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 07:04:52','2019-10-13 09:28:40'),(4595,'crk','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:00','2019-10-13 11:14:03'),(4596,'chemistry','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:11','2019-10-13 11:14:14'),(4597,'currentaffairs','18.212.242.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:31:55','2019-10-13 11:31:55'),(4598,'biology','171.76.195.83',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:53:18','2019-10-13 11:53:45'),(4599,'physics','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:13','2019-10-13 12:00:14'),(4600,'chemistry','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:35','2019-10-13 12:00:36'),(4601,'government','54.89.105.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 14:56:23','2019-10-13 14:56:23'),(4602,'chemistry','129.56.105.4',53,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:17:44','2019-10-13 15:21:07'),(4603,'mathematics','129.56.105.4',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:23:57','2019-10-13 15:24:00'),(4604,'chemistry','3.92.76.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 02:02:14','2019-10-14 02:02:17'),(4605,'history','3.94.214.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 04:11:49','2019-10-14 04:11:49'),(4606,'chemistry','197.210.64.86',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 07:32:24','2019-10-14 07:32:27'),(4607,'history','3.89.135.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 08:16:22','2019-10-14 08:16:22'),(4608,'chemistry','157.55.39.168',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 09:16:59','2019-10-14 09:17:00'),(4609,'mathematics','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:57:53','2019-10-14 16:35:36'),(4610,'commerce','41.190.30.180',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:59:39','2019-10-14 16:45:26'),(4611,'government','41.190.30.180',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:00:51','2019-10-14 16:25:28'),(4612,'biology','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:03:11','2019-10-14 16:35:03'),(4613,'chemistry','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:09:18','2019-10-14 16:33:53'),(4614,'english','41.190.30.180',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:13:01','2019-10-14 16:38:31'),(4615,'mathematics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4616,'mathematics','3.88.110.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4617,'englishlit','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4618,'commerce','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4619,'crk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4620,'accounting','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4621,'biology','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4622,'economics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4623,'irk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4624,'geography','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4625,'insurance','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4626,'currentaffairs','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4627,'mathematics','18.215.162.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 07:32:53','2019-10-15 07:32:53'),(4628,'chemistry','105.112.26.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 11:12:59','2019-10-15 11:12:59'),(4629,'english','34.227.191.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 14:04:54','2019-10-15 14:04:54'),(4630,'irk','34.207.92.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 16:11:12','2019-10-15 16:11:12'),(4631,'english','105.112.120.131',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:31:08','2019-10-16 00:50:07'),(4632,'physics','105.112.120.131',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:33:25','2019-10-16 00:33:25'),(4633,'history','54.237.235.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 03:43:24','2019-10-16 03:43:24'),(4634,'government','41.190.31.103',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:29:16','2019-10-16 06:29:16'),(4635,'biology','41.190.31.103',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:30:16','2019-10-16 06:31:46'),(4636,'economics','35.173.136.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 11:30:36','2019-10-16 11:30:36'),(4637,'commerce','3.86.101.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 13:52:29','2019-10-16 13:52:29'),(4638,'english','105.112.46.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 16:05:22','2019-10-16 16:08:03'),(4639,'insurance','34.203.203.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 14:09:34','2019-10-17 14:09:34'),(4640,'chemistry','3.85.245.126',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 17:30:44','2019-10-17 17:55:33'),(4641,'english','41.217.98.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 22:28:02','2019-10-17 22:28:02'),(4642,'english','41.217.89.22',145,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 04:35:09','2019-10-18 06:06:03'),(4643,'chemistry','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:23:36','2019-10-18 06:23:36'),(4644,'accounting','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:59:21','2019-10-18 06:59:21'),(4645,'commerce','154.120.107.217',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 07:40:00','2019-10-18 07:41:16'),(4646,'commerce','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 08:40:41','2019-10-18 08:40:41'),(4647,'mathematics','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 09:07:15','2019-10-18 09:07:15'),(4648,'chemistry','41.191.105.90',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 15:48:28','2019-10-18 15:49:58'),(4649,'mathematics','54.234.162.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 18:25:03','2019-10-18 18:25:03'),(4650,'english','105.112.46.232',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 19:58:44','2019-10-20 16:01:53'),(4651,'mathematics','105.112.46.232',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 20:37:17','2019-10-18 20:37:38'),(4652,'english','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4653,'mathematics','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4654,'accounting','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4655,'englishlit','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4656,'biology','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4657,'government','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4658,'chemistry','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4659,'geography','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4660,'irk','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4661,'civiledu','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4662,'currentaffairs','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:13'),(4663,'government','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:41:48','2019-10-19 05:41:48'),(4664,'english','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:45:20','2019-10-19 05:45:20'),(4665,'mathematics','197.210.44.151',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:55','2019-10-19 08:59:56'),(4666,'biology','197.210.44.151',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:56','2019-10-19 09:27:54'),(4667,'english','105.112.73.172',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 09:37:46','2019-10-19 09:37:48'),(4668,'chemistry','207.46.13.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 15:25:34','2019-10-19 15:25:34'),(4669,'chemistry','3.209.80.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 16:51:54','2019-10-19 16:51:54'),(4670,'english','18.206.241.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 04:13:55','2019-10-20 04:13:55'),(4671,'mathematics','54.80.29.100',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:33:07','2019-10-20 12:33:46'),(4672,'chemistry','207.46.13.122',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:35:39','2019-10-20 12:35:39'),(4673,'mathematics','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4674,'accounting','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4675,'englishlit','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4676,'government','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4677,'crk','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4678,'insurance','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4679,'currentaffairs','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:17','2019-10-20 16:35:17'),(4680,'chemistry','105.112.41.90',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 17:54:25','2019-10-20 17:54:28'),(4681,'english','105.112.44.170',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 18:58:27','2019-10-20 18:58:27'),(4682,'chemistry','141.8.188.161',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 21:56:45','2019-10-20 21:56:46'),(4683,'irk','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:28:19','2019-10-21 01:28:19'),(4684,'mathematics','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:36:39','2019-10-21 01:36:39'),(4685,'chemistry','197.210.64.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 05:52:18','2019-10-21 05:52:19'),(4686,'insurance','52.90.91.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 08:46:16','2019-10-21 08:46:16'),(4687,'chemistry','197.210.8.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:11:30','2019-10-21 10:11:30'),(4688,'chemistry','197.210.47.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:26:02','2019-10-21 10:26:26'),(4689,'mathematics','197.210.47.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:27:16','2019-10-21 10:27:16'),(4690,'chemistry','34.228.38.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 15:27:28','2019-10-21 15:27:28'),(4691,'chemistry','141.8.143.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 20:01:50','2019-10-21 20:01:50'),(4692,'chemistry','54.36.149.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 03:32:50','2019-10-22 03:32:50'),(4693,'currentaffairs','3.95.63.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 10:54:12','2019-10-22 10:54:12'),(4694,'english','41.203.78.1',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:10:05','2019-10-22 13:10:05'),(4695,'biology','54.196.129.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:22:41','2019-10-22 13:22:41'),(4696,'chemistry','197.210.53.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:09:28','2020-04-07 17:00:28'),(4697,'chemistry','197.210.53.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:10:41','2019-10-22 15:10:41'),(4698,'commerce','3.87.222.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:12:55','2019-10-22 17:12:55'),(4699,'physics','66.249.64.239',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:37:27','2019-10-22 17:37:29'),(4700,'currentaffairs','18.212.225.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 21:17:58','2019-10-22 21:17:58'),(4701,'accounting','54.89.96.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 23:16:46','2019-10-22 23:16:46'),(4702,'government','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 01:59:48','2019-10-23 01:59:48'),(4703,'mathematics','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 02:02:09','2019-10-23 02:02:09'),(4704,'chemistry','66.249.88.71',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 08:13:03','2019-10-23 14:35:06'),(4705,'englishlit','3.85.139.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 11:12:36','2019-10-23 11:12:36'),(4706,'english','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4707,'mathematics','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4708,'accounting','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:13'),(4709,'government','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4710,'crk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4711,'irk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4712,'civiledu','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4713,'chemistry','66.249.83.18',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:35:06','2019-11-06 14:40:34'),(4714,'chemistry','197.211.57.153',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:36:10','2019-10-23 14:40:46'),(4715,'mathematics','197.211.57.153',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:37:19','2019-10-23 14:38:17'),(4716,'chemistry','74.125.210.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:38:27','2019-10-23 14:38:27'),(4717,'history','3.84.20.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 17:22:28','2019-10-23 17:22:28'),(4718,'english','105.112.44.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 18:01:51','2019-10-23 18:01:51'),(4719,'english','105.112.53.50',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:15:14','2019-10-23 20:15:14'),(4720,'biology','3.89.55.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:28:18','2019-10-23 20:28:18'),(4721,'history','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 00:17:49','2019-10-24 00:17:49'),(4722,'english','41.190.3.189',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 03:02:51','2019-10-24 03:02:52'),(4723,'chemistry','197.253.35.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:18:00','2019-10-24 07:18:00'),(4724,'chemistry','91.242.162.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:42:43','2019-10-24 07:52:10'),(4725,'chemistry','41.203.73.203',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:45:04','2019-10-24 08:53:03'),(4726,'biology','41.203.73.203',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:53:59','2019-10-24 08:54:01'),(4727,'chemistry','129.205.112.139',108,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 11:19:07','2019-10-24 12:02:39'),(4728,'chemistry','154.120.87.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 17:55:11','2019-10-24 17:56:27'),(4729,'chemistry','54.36.148.163',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 19:43:38','2019-10-24 19:43:39'),(4730,'accounting','34.204.7.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 06:14:19','2019-10-25 06:14:19'),(4731,'history','23.22.145.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 07:34:04','2019-10-25 07:34:04'),(4732,'mathematics','129.205.112.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:18:03','2019-10-25 09:18:03'),(4733,'commerce','129.205.112.139',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:29:16','2019-10-25 09:31:21'),(4734,'english','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4735,'biology','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4736,'physics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4737,'government','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4738,'crk','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:03'),(4739,'economics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4740,'civiledu','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4741,'chemistry','100.43.81.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:45:17','2019-10-25 16:45:17'),(4742,'crk','18.212.239.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 18:29:40','2019-10-25 18:29:40'),(4743,'commerce','35.173.231.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 23:55:41','2019-10-25 23:55:41'),(4744,'accounting','54.234.193.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 02:03:11','2019-10-26 02:03:11'),(4745,'english','197.242.102.245',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:44:02','2019-10-26 12:15:20'),(4746,'mathematics','197.242.102.245',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:46:55','2019-10-26 05:46:55'),(4747,'chemistry','41.203.73.208',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 09:43:31','2019-10-26 09:47:32'),(4748,'biology','54.81.220.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 15:10:39','2019-10-26 15:10:39'),(4749,'geography','18.204.197.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 16:03:30','2019-10-26 16:03:30'),(4750,'insurance','54.80.115.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 18:02:39','2019-10-26 18:02:39'),(4751,'commerce','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4752,'accounting','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4753,'biology','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4754,'chemistry','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4755,'physics','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4756,'government','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4757,'crk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4758,'englishlit','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:35'),(4759,'irk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4760,'insurance','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4761,'history','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4762,'chemistry','120.18.21.195',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:10','2019-10-27 05:56:57'),(4763,'mathematics','120.18.21.195',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:46','2019-10-27 05:25:47'),(4764,'crk','18.205.116.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:31:51','2019-10-27 05:31:51'),(4765,'english','154.120.107.117',322,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 06:13:42','2019-10-27 10:26:33'),(4766,'commerce','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4767,'accounting','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4768,'biology','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4769,'chemistry','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:52'),(4770,'englishlit','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4771,'government','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4772,'irk','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4773,'chemistry','157.55.39.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:39:09','2019-10-27 14:39:09'),(4774,'englishlit','3.88.251.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:47:29','2019-10-27 14:47:29'),(4775,'commerce','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 18:59:58','2019-10-27 18:59:58'),(4776,'crk','3.88.198.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:12:54','2019-10-28 01:12:54'),(4777,'chemistry','40.77.167.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:42:41','2019-10-28 01:42:41'),(4778,'biology','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 04:16:20','2019-10-28 04:16:20'),(4779,'government','18.232.138.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 06:35:55','2019-10-28 06:35:55'),(4780,'physics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:30:28','2019-10-28 07:30:29'),(4781,'mathematics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:31:02','2019-10-28 07:31:04'),(4782,'government','3.95.66.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 08:05:51','2019-10-28 08:05:51'),(4783,'english','105.112.72.133',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:29:38','2019-10-28 09:29:39'),(4784,'chemistry','197.210.52.23',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:51:40','2019-10-28 09:53:37'),(4785,'chemistry','197.210.53.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:53:00','2019-10-28 09:53:00'),(4786,'crk','3.90.3.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:10:58','2019-10-28 11:10:58'),(4787,'chemistry','197.210.8.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:13:17','2019-10-28 11:13:17'),(4788,'currentaffairs','197.210.8.173',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:14:37','2019-10-28 11:14:46'),(4789,'civiledu','34.207.224.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 17:19:22','2019-10-28 17:19:22'),(4790,'biology','3.89.72.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 03:11:01','2019-10-29 03:11:01'),(4791,'government','54.89.226.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 05:28:30','2019-10-29 05:28:30'),(4792,'economics','3.93.216.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 06:59:51','2019-10-29 06:59:51'),(4793,'english','105.112.40.87',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 09:57:48','2019-10-29 12:46:07'),(4794,'english','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 11:36:32','2019-10-29 11:36:32'),(4795,'accounting','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 12:02:06','2019-10-29 12:02:06'),(4796,'mathematics','105.112.73.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:23:32','2019-10-29 15:23:32'),(4797,'english','41.190.30.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:36:54','2019-10-29 15:36:54'),(4798,'mathematics','105.112.17.202',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:55:44','2019-10-29 15:55:44'),(4799,'english','196.27.128.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:57:02','2019-10-29 15:57:02'),(4800,'chemistry','196.27.128.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:59:40','2019-10-29 15:59:41'),(4801,'mathematics','154.68.226.2',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:06:09','2019-10-29 16:06:09'),(4802,'english','197.210.227.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:21:51','2019-10-29 16:21:51'),(4803,'english','107.167.106.232',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:41:14','2019-10-29 16:42:06'),(4804,'mathematics','18.206.56.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:46:50','2019-10-29 16:46:50'),(4805,'english','105.112.73.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:52:32','2019-10-29 16:52:33'),(4806,'englishlit','197.211.58.67',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:08:44','2019-10-29 17:08:44'),(4807,'government','197.211.58.70',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:11:12','2019-10-29 17:11:13'),(4808,'chemistry','129.56.94.58',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:18','2019-10-29 17:48:50'),(4809,'mathematics','197.210.85.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:26','2019-10-29 17:48:26'),(4810,'mathematics','129.56.94.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:49:32','2019-10-29 17:49:35'),(4811,'chemistry','197.210.53.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:31:50','2019-10-29 19:31:50'),(4812,'english','105.112.53.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:33:58','2019-10-29 19:33:58'),(4813,'chemistry','197.210.52.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:34:08','2019-10-29 19:34:08'),(4814,'mathematics','105.112.53.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:35:34','2019-10-29 19:35:34'),(4815,'chemistry','136.243.91.32',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 20:51:17','2020-01-07 22:24:25'),(4816,'english','54.198.170.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 22:10:58','2019-10-29 22:10:58'),(4817,'physics','3.81.122.72',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:05:58','2019-10-29 23:38:38'),(4818,'english','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4819,'mathematics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4820,'commerce','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4821,'englishlit','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4822,'economics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:39'),(4823,'civiledu','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:39','2019-10-29 23:38:39'),(4824,'mathematics','52.205.254.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 03:27:41','2019-10-30 03:27:41'),(4825,'accounting','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4826,'englishlit','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4827,'geography','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4828,'economics','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4829,'irk','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:56'),(4830,'civiledu','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4831,'currentaffairs','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4832,'mathematics','197.210.226.198',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-30 04:44:48','2020-05-28 20:25:41'),(4833,'english','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:02:12','2019-10-30 06:02:12'),(4834,'physics','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:03:57','2019-10-30 06:03:57'),(4835,'mathematics','34.226.220.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 07:03:46','2019-10-30 07:03:46'),(4836,'chemistry','197.210.57.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 12:45:49','2019-10-30 12:45:49'),(4837,'economics','107.23.28.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 18:15:18','2019-10-30 18:15:18'),(4838,'civiledu','18.214.99.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 19:00:42','2019-10-30 19:00:42'),(4839,'chemistry','197.210.65.172',97,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:11:50'),(4840,'chemistry','197.210.65.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:02:02'),(4841,'chemistry','197.210.57.224',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:55:52','2019-10-30 20:55:53'),(4842,'mathematics','197.210.57.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:56:37','2019-10-30 20:56:37'),(4843,'mathematics','197.210.57.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4844,'mathematics','197.210.57.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4845,'mathematics','197.210.57.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4846,'chemistry','197.210.57.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4847,'chemistry','197.211.58.123',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:15','2019-10-31 11:21:15'),(4848,'mathematics','197.211.58.123',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:24','2019-10-31 13:23:52'),(4849,'chemistry','91.242.162.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 17:52:10','2019-10-31 17:52:10'),(4850,'chemistry','197.210.84.213',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 18:55:16','2019-10-31 18:58:56'),(4851,'insurance','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 20:05:10','2019-10-31 20:05:10'),(4852,'history','18.206.189.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 04:45:22','2019-11-01 04:45:22'),(4853,'crk','54.86.61.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 06:49:49','2019-11-01 06:49:49'),(4854,'biology','54.198.198.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 07:35:21','2019-11-01 07:35:21'),(4855,'english','105.112.77.49',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:39:35','2019-11-01 09:39:36'),(4856,'government','54.174.215.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:52:23','2019-11-01 09:52:23'),(4857,'economics','107.22.138.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 11:25:59','2019-11-01 11:25:59'),(4858,'chemistry','34.207.95.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 14:53:34','2019-11-01 14:53:34'),(4859,'english','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 16:08:03','2019-11-01 16:08:03'),(4860,'englishlit','54.236.206.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 22:07:32','2019-11-01 22:07:32'),(4861,'biology','175.37.47.44',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 23:06:13','2019-11-01 23:06:14'),(4862,'accounting','54.90.121.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 06:44:10','2019-11-02 06:44:10'),(4863,'chemistry','40.77.167.175',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:15:55','2019-11-02 07:15:56'),(4864,'history','35.171.19.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:52:07','2019-11-02 07:52:07'),(4865,'english','105.112.73.230',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:32:09','2019-11-02 13:32:09'),(4866,'crk','3.84.129.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:39:50','2019-11-02 13:39:50'),(4867,'chemistry','197.211.58.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 14:34:58','2019-11-02 14:34:58'),(4868,'commerce','54.162.250.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 16:05:23','2019-11-02 16:05:23'),(4869,'accounting','35.172.138.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 18:09:32','2019-11-02 18:09:32'),(4870,'economics','100.27.31.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 20:25:53','2019-11-02 20:25:53'),(4871,'insurance','18.205.22.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 04:08:45','2019-11-03 04:08:45'),(4872,'englishlit','34.204.2.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 07:47:31','2019-11-03 07:47:31'),(4873,'mathematics','105.112.40.245',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 12:10:24','2019-11-03 12:12:07'),(4874,'chemistry','197.211.58.152',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 17:54:39','2019-11-03 17:55:20'),(4875,'commerce','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:18:15','2019-11-03 19:18:15'),(4876,'english','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:41:39','2019-11-03 19:41:39'),(4877,'physics','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 20:10:58','2019-11-03 20:10:58'),(4878,'crk','54.242.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 21:58:54','2019-11-03 21:58:54'),(4879,'chemistry','197.210.58.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:22:50','2019-11-03 23:22:50'),(4880,'chemistry','197.210.57.85',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:23:06','2019-11-03 23:23:09'),(4881,'chemistry','41.58.233.184',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 00:27:44','2019-11-04 00:30:17'),(4882,'crk','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 01:28:20','2019-11-04 01:28:20'),(4883,'english','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4884,'biology','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4885,'mathematics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4886,'physics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4887,'englishlit','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4888,'government','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4889,'civiledu','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4890,'crk','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4891,'insurance','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4892,'geography','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4893,'currentaffairs','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4894,'accounting','3.84.43.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 19:32:08','2019-11-04 19:32:08'),(4895,'english','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:48','2019-11-05 02:19:48'),(4896,'commerce','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4897,'accounting','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4898,'englishlit','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4899,'crk','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4900,'geography','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4901,'insurance','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4902,'chemistry','54.36.148.22',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:26:28','2019-11-05 02:26:30'),(4903,'mathematics','34.229.222.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 10:07:21','2019-11-05 10:07:21'),(4904,'chemistry','154.120.94.130',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 12:22:45','2019-11-05 12:23:42'),(4905,'commerce','197.211.58.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 19:23:50','2019-11-05 19:23:51'),(4906,'mathematics','18.209.50.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 20:22:48','2019-11-05 20:22:48'),(4907,'chemistry','89.234.68.70',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:17:05','2019-11-06 04:17:44'),(4908,'chemistry','83.71.247.36',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:21:42','2019-11-06 04:22:32'),(4909,'english','18.233.99.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 07:47:51','2019-11-06 07:47:51'),(4910,'currentaffairs','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 09:50:51','2019-11-06 09:50:51'),(4911,'accounting','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 10:24:20','2019-11-06 10:24:20'),(4912,'mathematics','54.145.206.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 12:14:51','2019-11-06 12:14:51'),(4913,'insurance','3.82.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 16:51:53','2019-11-06 16:51:53'),(4914,'history','54.84.14.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 23:14:10','2019-11-06 23:14:10'),(4915,'history','18.212.250.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 02:06:08','2019-11-07 02:06:08'),(4916,'mathematics','197.211.58.187',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 11:26:16','2019-11-07 11:28:37'),(4917,'englishlit','52.205.0.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 16:47:19','2019-11-07 16:47:19'),(4918,'chemistry','66.249.64.116',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 17:17:10','2020-01-25 10:15:50'),(4919,'irk','18.212.71.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 18:58:31','2019-11-07 18:58:31'),(4920,'accounting','54.225.61.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 21:07:53','2019-11-07 21:07:53'),(4921,'english','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:28:09','2019-11-08 00:28:09'),(4922,'history','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:36:53','2019-11-08 00:36:53'),(4923,'crk','35.172.133.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 05:00:20','2019-11-08 05:00:20'),(4924,'commerce','54.91.119.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 06:26:52','2019-11-08 06:26:52'),(4925,'accounting','34.207.107.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 09:53:52','2019-11-08 09:53:52'),(4926,'economics','54.157.32.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 11:20:44','2019-11-08 11:20:44'),(4927,'english','66.249.66.210',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 14:58:50','2019-11-08 14:58:51'),(4928,'chemistry','54.234.228.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 17:47:37','2019-11-08 17:47:37'),(4929,'insurance','3.88.176.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 19:01:26','2019-12-23 08:02:50'),(4930,'chemistry','157.55.39.209',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 21:25:34','2019-11-08 21:25:35'),(4931,'chemistry','91.242.162.26',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:13:24','2019-11-08 22:13:25'),(4932,'englishlit','18.212.146.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:21:32','2019-11-08 22:21:32'),(4933,'chemistry','197.210.70.127',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 00:49:45','2019-11-09 02:10:25'),(4934,'history','197.210.70.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:10:38','2019-11-09 01:10:38'),(4935,'english','197.210.70.127',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:12:33','2019-11-09 02:27:22'),(4936,'crk','34.227.56.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:23:16','2019-11-09 02:23:16'),(4937,'english','197.210.70.11',596,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:29:42','2019-11-09 02:43:37'),(4938,'mathematics','197.210.70.11',115,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:48:03','2019-11-09 03:02:34'),(4939,'commerce','197.210.70.11',887,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-09 03:04:20','2019-11-09 03:25:18'),(4940,'accounting','197.210.70.11',514,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:25:25','2019-11-09 03:37:34'),(4941,'biology','197.210.70.11',549,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:37:38','2019-11-09 07:08:42'),(4942,'physics','54.224.42.134',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 05:11:09','2019-11-09 05:11:09'),(4943,'physics','197.210.70.11',62,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:08:48','2019-11-09 07:17:18'),(4944,'chemistry','197.210.70.11',322,'','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:22:44','2020-01-16 09:56:50'),(4945,'englishlit','197.210.70.11',361,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:33:50','2019-11-09 07:42:56'),(4946,'government','197.210.70.11',438,'Nigeria','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:43:01','2019-11-09 08:01:54'),(4947,'irk','197.210.70.11',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:06:48','2019-11-09 08:07:41'),(4948,'mathematics','197.210.70.169',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:46','2019-11-09 08:08:46'),(4949,'crk','197.210.70.169',391,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:53','2019-11-09 08:46:48'),(4950,'civiledu','197.210.70.169',393,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:09:11','2019-11-09 09:00:04'),(4951,'insurance','197.210.70.169',350,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:11:33','2019-11-09 09:05:35'),(4952,'history','197.210.70.169',50,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:13:57','2019-11-09 08:15:02'),(4953,'geography','197.210.70.169',236,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:16:57','2019-11-09 08:47:31'),(4954,'economics','197.210.70.169',461,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:22:02','2019-11-09 08:53:44'),(4955,'irk','197.210.70.169',33,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:13','2019-11-09 08:57:41'),(4956,'currentaffairs','197.210.70.169',44,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:59','2019-11-09 09:06:11'),(4957,'physics','197.210.70.169',68,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:30:48','2019-11-09 08:33:02'),(4958,'government','197.210.70.169',285,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:32:21','2019-11-09 08:38:37'),(4959,'physics','3.85.57.153',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:37:56','2019-11-09 08:37:56'),(4960,'chemistry','159.138.155.115',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:57:32','2019-11-09 08:57:32'),(4961,'commerce','54.87.49.120',3,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 10:09:51'),(4962,'accounting','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 09:33:31'),(4963,'chemistry','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4964,'government','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4965,'irk','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4966,'civiledu','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4967,'history','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4968,'englishlit','54.87.49.120',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:36:47','2019-11-09 09:36:47'),(4969,'english','105.112.45.248',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:58:49','2019-11-09 09:58:49'),(4970,'english','54.158.200.213',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 12:26:02','2019-11-09 12:26:02'),(4971,'crk','3.95.160.82',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 14:20:40','2019-11-09 14:20:40'),(4972,'mathematics','18.206.174.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 06:53:11','2019-11-10 06:53:11'),(4973,'accounting','54.90.247.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 09:13:09','2019-11-10 09:13:09'),(4974,'chemistry','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:29:58','2019-11-10 11:29:58'),(4975,'english','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:56:18','2019-11-10 11:56:18'),(4976,'mathematics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4977,'commerce','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4978,'physics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4979,'englishlit','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:03'),(4980,'crk','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4981,'geography','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4982,'economics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4983,'mathematics','54.175.81.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 21:05:09','2019-11-10 21:05:09'),(4984,'biology','3.90.109.201',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:25'),(4985,'biology','3.90.109.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:10'),(4986,'chemistry','102.134.115.193',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 14:41:27','2019-11-11 14:46:16'),(4987,'chemistry','54.36.148.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 16:31:40','2019-11-11 16:31:40'),(4988,'economics','3.91.196.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 18:48:42','2019-11-11 18:48:42'),(4989,'mathematics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4990,'commerce','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4991,'biology','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:46'),(4992,'physics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4993,'economics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4994,'currentaffairs','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4995,'history','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4996,'english','54.90.246.133',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:35:46','2019-11-11 20:35:46'),(4997,'mathematics','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:33:47','2019-11-11 23:33:47'),(4998,'insurance','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:47:30','2019-11-11 23:47:30'),(4999,'chemistry','14.210.2.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 02:24:20','2019-11-12 02:24:20'),(5000,'chemistry','3.233.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 05:05:46','2019-11-12 05:05:46'),(5001,'biology','54.92.179.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 08:42:22','2019-11-12 08:42:22'),(5002,'history','54.85.253.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 09:42:51','2019-11-12 09:42:51'),(5003,'chemistry','197.210.71.200',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 12:32:36','2019-11-12 12:32:37'),(5004,'chemistry','223.73.239.66',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 15:29:45','2019-11-12 15:29:46'),(5005,'chemistry','41.190.30.18',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 18:17:17','2019-11-12 18:17:43'),(5006,'englishlit','3.92.166.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 20:15:35','2019-11-12 20:15:35'),(5007,'accounting','103.10.31.31',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:23:01','2019-11-13 05:29:07'),(5008,'physics','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:54','2019-11-13 05:28:55'),(5009,'biology','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:59','2019-11-13 05:29:00'),(5010,'accounting','54.166.15.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 08:33:25','2019-11-13 08:33:25'),(5011,'biology','66.249.64.116',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 09:19:50','2019-11-13 09:19:52'),(5012,'history','54.159.26.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 11:22:16','2019-11-13 11:22:16'),(5013,'physics','66.249.64.112',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 12:14:10','2020-01-11 03:27:45'),(5014,'accounting','3.88.111.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 17:40:10','2019-11-13 17:40:10'),(5015,'chemistry','207.46.13.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 19:01:59','2019-11-13 19:01:59'),(5016,'economics','3.88.230.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:09','2019-11-13 20:05:09'),(5017,'english','105.112.77.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:42','2019-11-13 20:05:45'),(5018,'chemistry','105.112.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 00:12:42','2019-11-14 00:12:42'),(5019,'insurance','3.87.3.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 04:04:18','2019-11-14 04:04:18'),(5020,'english','104.133.10.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:36','2019-11-14 06:14:47'),(5021,'crk','104.133.10.100',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:48','2019-11-14 06:11:51'),(5022,'chemistry','91.242.162.9',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:50:51','2019-11-14 06:50:52'),(5023,'englishlit','34.239.138.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 08:49:26','2019-11-14 08:49:26'),(5024,'english','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5025,'mathematics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5026,'chemistry','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:12','2019-11-14 10:38:15'),(5027,'physics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:14','2019-11-14 10:38:17'),(5028,'commerce','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:19','2019-11-14 10:38:23'),(5029,'currentaffairs','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:21','2019-11-14 10:38:24'),(5030,'government','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:22','2019-11-14 10:38:25'),(5031,'accounting','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:24','2019-11-14 10:38:27'),(5032,'economics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:25','2019-11-14 10:38:28'),(5033,'biology','104.132.127.96',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:27','2019-11-14 10:44:31'),(5034,'geography','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:29','2019-11-14 10:38:32'),(5035,'history','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:31','2019-11-14 10:38:34'),(5036,'insurance','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:33','2019-11-14 10:38:36'),(5037,'civiledu','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:35','2019-11-14 10:38:38'),(5038,'crk','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:37','2019-11-14 10:38:40'),(5039,'englishlit','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:38','2019-11-14 10:38:41'),(5040,'mathematics','197.156.253.124',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 11:11:37','2019-11-14 11:13:49'),(5041,'crk','34.229.192.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:42:00','2019-11-14 12:42:00'),(5042,'chemistry','105.112.113.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:43:31','2019-11-14 12:43:31'),(5043,'english','154.118.34.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 15:44:21','2019-11-14 15:44:24'),(5044,'chemistry','82.145.221.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 17:59:18','2019-11-14 17:59:18'),(5045,'physics','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:46:23','2019-11-14 18:46:23'),(5046,'english','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:53:00','2019-11-14 18:53:00'),(5047,'commerce','3.87.121.240',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-14 19:14:45','2019-11-14 19:14:45'),(5048,'crk','34.238.39.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 22:51:14','2019-11-14 22:51:14'),(5049,'economics','34.228.32.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 02:11:21','2019-11-15 02:11:21'),(5050,'chemistry','105.112.55.179',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:49:45','2019-11-15 08:02:02'),(5051,'physics','105.112.55.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:51:09','2019-11-15 07:51:09'),(5052,'chemistry','105.112.72.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 12:48:53','2019-11-15 12:50:34'),(5053,'accounting','34.203.12.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 19:40:58','2019-11-15 19:40:58'),(5054,'commerce','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5055,'accounting','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5056,'biology','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5057,'chemistry','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:32'),(5058,'geography','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5059,'economics','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5060,'insurance','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5061,'biology','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5062,'chemistry','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5063,'englishlit','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5064,'geography','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5065,'economics','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5066,'irk','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5067,'currentaffairs','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5068,'mathematics','18.212.5.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 08:58:36','2019-11-16 08:58:36'),(5069,'english','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:23:31','2019-11-16 11:23:31'),(5070,'mathematics','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:21','2019-11-16 11:30:21'),(5071,'mathematics','105.112.183.226',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:22','2019-11-16 11:30:23'),(5072,'english','105.112.183.226',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:32:08','2019-11-16 11:32:09'),(5073,'chemistry','3.88.21.220',320,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:53:05','2019-11-16 14:57:29'),(5074,'english','34.207.122.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:55:25','2019-11-16 14:55:25'),(5075,'chemistry','41.58.118.229',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:02:07','2019-11-16 15:05:13'),(5076,'physics','41.58.118.229',147,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:06:10','2019-11-16 15:11:36'),(5077,'mathematics','41.58.118.229',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:17:15','2019-11-16 15:17:18'),(5078,'chemistry','34.227.24.189',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:20:27','2019-11-16 15:20:41'),(5079,'english','41.58.118.229',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-16 15:21:00','2019-11-16 15:23:00'),(5080,'government','41.58.118.229',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:23:59','2019-11-16 15:24:02'),(5081,'chemistry','105.112.183.165',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:28:10','2019-11-16 15:28:10'),(5082,'chemistry','18.212.227.139',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:30:31','2019-11-16 15:30:34'),(5083,'chemistry','34.238.168.46',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:34:19','2019-11-16 15:42:25'),(5084,'chemistry','54.88.106.95',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:46:48','2019-11-16 15:46:51'),(5085,'chemistry','34.227.27.84',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:59:45','2019-11-16 16:02:50'),(5086,'english','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 16:19:39','2019-11-16 16:19:42'),(5087,'english','197.210.28.14',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 17:38:36','2019-11-16 17:38:36'),(5088,'geography','3.92.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 02:58:10','2019-11-17 02:58:10'),(5089,'mathematics','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:39:52','2019-11-17 05:56:58'),(5090,'english','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:40:15','2019-11-17 05:56:35'),(5091,'english','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:04:57','2019-11-17 07:04:57'),(5092,'commerce','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:11:06','2019-11-17 07:11:06'),(5093,'currentaffairs','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:58:01','2019-11-17 07:58:01'),(5094,'economics','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 08:25:21','2019-11-17 08:25:21'),(5095,'mathematics','100.26.97.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 10:58:29','2019-11-17 10:58:29'),(5096,'englishlit','100.27.23.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:42:13','2019-11-17 11:42:13'),(5097,'chemistry','3.226.254.115',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:59:22','2019-11-17 12:24:41'),(5098,'mathematics','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:07:43','2019-11-17 13:07:43'),(5099,'insurance','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:16:37','2019-11-17 13:16:37'),(5100,'commerce','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:52'),(5101,'accounting','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:49'),(5102,'physics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:50'),(5103,'crk','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:46'),(5104,'geography','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:42'),(5105,'economics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:44'),(5106,'history','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:40'),(5107,'accounting','3.90.28.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 01:39:00','2019-11-18 01:39:00'),(5108,'englishlit','54.145.175.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:30:31','2019-11-18 11:30:31'),(5109,'chemistry','154.68.195.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:44:51','2019-11-18 11:44:51'),(5110,'chemistry','105.112.177.109',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 16:07:34','2019-11-18 16:09:34'),(5111,'history','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 22:55:46','2019-12-08 23:07:31'),(5112,'biology','52.90.143.9',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:27:47','2019-11-25 19:20:30'),(5113,'english','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5114,'commerce','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5115,'government','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5116,'crk','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5117,'insurance','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5118,'currentaffairs','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5119,'chemistry','157.55.39.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:14:36','2019-11-19 04:14:36'),(5120,'history','54.152.47.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:20:09','2019-11-19 04:20:09'),(5121,'crk','3.87.113.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 06:24:27','2019-11-19 06:24:27'),(5122,'commerce','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:06:20','2019-11-19 09:06:20'),(5123,'biology','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:12:53','2019-11-19 09:12:53'),(5124,'chemistry','129.56.29.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:13:53','2019-11-19 09:13:53'),(5125,'mathematics','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:13:31','2019-11-19 10:13:31'),(5126,'commerce','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:15:00','2019-11-19 10:15:00'),(5127,'english','105.112.61.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:46:39','2019-11-19 10:46:39'),(5128,'accounting','3.87.101.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 11:57:03','2019-11-19 11:57:03'),(5129,'accounting','54.90.128.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 13:36:06','2019-11-19 13:36:06'),(5130,'economics','54.198.9.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 14:11:01','2019-11-19 14:11:01'),(5131,'chemistry','82.145.221.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 17:06:44','2019-11-19 17:06:59'),(5132,'commerce','34.207.90.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 18:09:26','2019-11-19 18:09:26'),(5133,'insurance','35.175.235.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 21:47:15','2019-11-19 21:47:15'),(5134,'economics','54.243.7.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 23:21:26','2019-11-19 23:21:26'),(5135,'englishlit','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 00:51:45','2019-11-20 00:51:45'),(5136,'accounting','3.81.87.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 03:46:05','2019-11-20 03:46:05'),(5137,'crk','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 05:37:07','2019-11-20 05:37:07'),(5138,'geography','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 06:00:11','2019-11-20 06:00:11'),(5139,'englishlit','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:11:12','2019-11-20 13:11:12'),(5140,'physics','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:12:49','2019-11-20 13:12:49'),(5141,'commerce','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:10:33','2019-11-20 14:10:33'),(5142,'english','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:24:22','2019-11-20 14:24:22'),(5143,'englishlit','3.86.15.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:59:45','2019-11-20 14:59:45'),(5144,'crk','54.211.114.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 18:58:30','2019-11-20 18:58:30'),(5145,'englishlit','54.227.23.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 20:17:56','2019-11-20 20:17:56'),(5146,'economics','54.173.226.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 02:00:33','2019-11-21 02:00:33'),(5147,'currentaffairs','3.87.237.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 15:38:11','2019-11-21 15:38:11'),(5148,'englishlit','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:11:52','2019-11-21 19:11:52'),(5149,'civiledu','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:27:16','2019-11-21 19:27:16'),(5150,'english','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:41:38','2019-11-21 19:41:38'),(5151,'accounting','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 20:05:16','2019-11-21 20:05:16'),(5152,'chemistry','61.138.222.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 02:40:12','2019-11-22 02:40:12'),(5153,'commerce','34.229.113.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 05:56:54','2019-11-22 05:56:54'),(5154,'english','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5155,'mathematics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5156,'physics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5157,'crk','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5158,'geography','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5159,'insurance','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5160,'history','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5161,'mathematics','41.191.105.89',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:47:00','2019-11-22 09:47:25'),(5162,'mathematics','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:28:36','2019-11-22 18:28:36'),(5163,'irk','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:38:47','2019-11-22 18:38:47'),(5164,'chemistry','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:24:34','2019-11-22 19:24:37'),(5165,'mathematics','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:26:12','2019-11-22 19:26:15'),(5166,'chemistry','154.160.27.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 20:46:34','2019-11-22 20:46:34'),(5167,'government','34.235.143.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 23:08:27','2019-11-22 23:08:27'),(5168,'commerce','3.93.212.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:05:01','2019-11-23 01:05:01'),(5169,'insurance','107.23.192.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:56:47','2019-11-23 01:56:47'),(5170,'english','54.87.140.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 03:56:10','2019-11-23 03:56:10'),(5171,'crk','3.80.89.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 04:32:38','2019-11-23 04:32:38'),(5172,'chemistry','40.77.167.170',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 06:00:38','2019-11-23 06:00:39'),(5173,'mathematics','3.87.21.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 13:23:50','2019-11-23 13:23:50'),(5174,'chemistry','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:04:39','2019-11-23 14:04:39'),(5175,'geography','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:13:49','2019-11-23 14:13:49'),(5176,'chemistry','3.82.225.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:59:38','2019-11-23 14:59:38'),(5177,'currentaffairs','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 18:52:45','2019-11-23 18:52:45'),(5178,'geography','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 19:17:25','2019-11-23 19:17:25'),(5179,'english','54.90.185.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 20:11:52','2019-11-23 20:11:52'),(5180,'geography','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 21:06:07','2019-11-23 21:06:07'),(5181,'chemistry','3.87.114.3',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 00:02:34','2019-11-24 00:03:13'),(5182,'geography','3.92.185.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 03:57:44','2019-11-24 03:57:44'),(5183,'englishlit','18.212.68.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 07:58:51','2019-11-24 07:58:51'),(5184,'chemistry','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 08:41:40','2019-11-24 08:41:40'),(5185,'currentaffairs','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 09:06:30','2019-11-24 09:06:30'),(5186,'biology','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 11:46:34','2019-11-24 11:46:34'),(5187,'commerce','3.94.119.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 13:14:32','2019-11-24 13:14:32'),(5188,'economics','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 14:33:11','2019-11-24 14:33:11'),(5189,'commerce','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:06:24','2019-11-24 15:06:24'),(5190,'english','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:27:19','2019-11-24 15:27:19'),(5191,'chemistry','159.138.159.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 18:34:43','2020-01-29 06:08:04'),(5192,'physics','35.173.191.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:09:52','2019-11-24 19:09:52'),(5193,'englishlit','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:56:50','2019-11-24 19:56:50'),(5194,'mathematics','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 20:10:28','2019-11-24 20:10:28'),(5195,'geography','3.95.237.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:00:07','2019-11-24 22:00:07'),(5196,'chemistry','129.205.112.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:36:55','2019-11-24 22:36:55'),(5197,'mathematics','34.239.115.115',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-25 00:20:37'),(5198,'accounting','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5199,'geography','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5200,'economics','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5201,'insurance','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5202,'currentaffairs','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5203,'history','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5204,'government','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:14:49','2019-11-25 00:14:49'),(5205,'biology','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:26:53','2019-11-25 00:26:53'),(5206,'chemistry','91.242.162.34',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:29:05','2019-11-25 00:29:05'),(5207,'mathematics','54.161.28.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 01:18:44','2019-11-25 01:18:44'),(5208,'insurance','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:18:39','2019-11-25 02:18:39'),(5209,'english','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:50:26','2019-11-25 02:50:26'),(5210,'biology','3.80.24.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 13:54:57','2019-11-25 13:54:57'),(5211,'accounting','54.174.106.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:15:50','2019-11-25 22:15:50'),(5212,'chemistry','54.36.150.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:39:17','2019-11-25 22:39:17'),(5213,'chemistry','59.62.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:05:11','2019-11-26 00:05:11'),(5214,'biology','52.207.70.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:23:52','2019-11-26 00:23:52'),(5215,'currentaffairs','3.92.68.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 04:10:20','2019-11-26 04:10:20'),(5216,'biology','3.80.157.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 09:41:29','2019-11-26 09:41:29'),(5217,'currentaffairs','34.201.221.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 13:34:13','2019-11-26 13:34:13'),(5218,'biology','54.226.198.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 19:19:54','2019-11-26 19:19:54'),(5219,'currentaffairs','3.90.165.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 23:25:19','2019-11-26 23:25:19'),(5220,'irk','3.87.128.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 02:59:37','2019-11-27 02:59:37'),(5221,'chemistry','197.210.85.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 04:36:41','2019-11-27 04:36:41'),(5222,'chemistry','52.91.32.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 06:56:10','2019-11-27 06:56:10'),(5223,'chemistry','3.84.51.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 08:55:13','2019-11-27 08:55:13'),(5224,'englishlit','54.205.247.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 09:48:58','2019-11-27 09:48:58'),(5225,'biology','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 12:58:49','2019-11-27 12:58:49'),(5226,'irk','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 13:14:40','2019-11-27 13:14:40'),(5227,'insurance','54.198.168.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 14:09:50','2019-11-27 14:09:50'),(5228,'economics','52.90.222.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 17:06:53','2019-11-27 17:06:53'),(5229,'history','3.92.231.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 18:56:25','2019-11-27 18:56:25'),(5230,'chemistry','18.234.89.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:41:07','2019-11-27 19:41:07'),(5231,'chemistry','49.87.102.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:46:18','2019-11-27 19:46:18'),(5232,'accounting','54.161.90.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 20:54:04','2019-11-27 20:54:04'),(5233,'chemistry','27.214.192.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 23:04:04','2019-11-27 23:04:04'),(5234,'chemistry','34.230.10.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 01:37:13','2019-11-28 01:37:13'),(5235,'irk','18.209.6.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 04:53:50','2019-11-28 04:53:50'),(5236,'biology','3.82.192.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:53:14','2019-11-28 07:53:15'),(5237,'history','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:55:43','2019-11-28 07:55:43'),(5238,'commerce','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5239,'englishlit','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5240,'currentaffairs','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 08:20:01','2019-11-28 08:20:01'),(5241,'mathematics','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:18:07','2019-11-28 10:18:07'),(5242,'chemistry','105.112.55.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:31:45','2019-11-28 10:31:45'),(5243,'commerce','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:42:22','2019-11-28 10:42:22'),(5244,'crk','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 11:14:13','2019-11-28 11:14:13'),(5245,'economics','18.234.45.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 12:07:05','2019-11-28 12:07:05'),(5246,'commerce','52.200.202.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 14:58:46','2019-11-28 14:58:46'),(5247,'biology','41.190.3.204',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 16:57:43','2019-11-28 16:57:44'),(5248,'chemistry','54.36.148.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 17:06:02','2019-11-28 17:06:03'),(5249,'crk','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:31:30','2019-11-28 19:31:30'),(5250,'accounting','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:33:45','2019-11-28 19:33:45'),(5251,'economics','3.85.242.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:37'),(5252,'commerce','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:38'),(5253,'accounting','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5254,'biology','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5255,'physics','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5256,'crk','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5257,'geography','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5258,'currentaffairs','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5259,'geography','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 06:56:30','2019-11-29 06:56:30'),(5260,'economics','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 07:23:58','2019-11-29 07:23:58'),(5261,'commerce','3.90.78.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 09:46:03','2019-11-29 09:46:03'),(5262,'crk','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 14:54:27','2019-11-29 14:54:27'),(5263,'english','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:32:55','2019-11-29 16:32:55'),(5264,'insurance','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:33:40','2019-11-29 16:33:40'),(5265,'biology','54.165.28.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 17:08:15','2019-11-29 17:13:52'),(5266,'englishlit','3.91.91.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 20:29:30','2019-11-29 20:29:30'),(5267,'chemistry','197.210.53.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 22:14:15','2019-11-29 22:14:15'),(5268,'geography','3.80.133.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 00:24:52','2019-11-30 00:24:52'),(5269,'crk','54.144.64.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 03:05:17','2019-11-30 03:05:17'),(5270,'chemistry','141.0.13.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 04:28:46','2019-11-30 04:28:50'),(5271,'crk','34.235.132.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 09:54:43','2019-11-30 09:54:43'),(5272,'economics','3.84.73.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 14:56:44','2019-11-30 14:56:44'),(5273,'chemistry','54.196.143.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 15:46:01','2019-11-30 15:46:01'),(5274,'physics','174.129.162.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 17:01:07','2019-11-30 17:01:07'),(5275,'commerce','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:18:36','2019-11-30 19:18:36'),(5276,'englishlit','3.84.92.186',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:29:52','2019-11-30 19:36:20'),(5277,'english','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:34:16','2019-11-30 19:34:16'),(5278,'crk','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 02:44:38','2019-12-01 02:44:38'),(5279,'englishlit','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 03:14:33','2019-12-01 03:14:33'),(5280,'economics','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:41:42','2019-12-01 06:41:42'),(5281,'chemistry','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:51:45','2019-12-01 06:51:45'),(5282,'chemistry','207.46.13.30',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 08:20:41','2019-12-01 08:20:42'),(5283,'government','3.94.79.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 09:03:08','2019-12-01 09:03:08'),(5284,'chemistry','197.211.58.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 10:28:55','2019-12-01 10:28:55'),(5285,'english','3.83.92.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 13:54:48','2019-12-01 13:54:48'),(5286,'chemistry','182.247.60.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:04:17','2019-12-02 05:04:17'),(5287,'physics','18.212.94.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:51:40','2019-12-02 05:51:40'),(5288,'english','196.13.161.254',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:09:22','2019-12-02 11:11:49'),(5289,'chemistry','196.13.161.254',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:14:59','2019-12-02 12:04:31'),(5290,'currentaffairs','3.86.66.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:36:59','2019-12-02 11:36:59'),(5291,'chemistry','80.248.3.98',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 12:03:05','2019-12-02 12:03:05'),(5292,'currentaffairs','18.212.29.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 13:05:10','2019-12-02 13:05:10'),(5293,'civiledu','34.227.18.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:34:27','2019-12-02 16:34:27'),(5294,'chemistry','124.112.95.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:43:26','2019-12-02 16:43:26'),(5295,'english','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:15:18','2019-12-02 20:15:18'),(5296,'englishlit','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:44:03','2019-12-02 20:44:03'),(5297,'accounting','54.89.129.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 21:26:25','2019-12-02 21:26:25'),(5298,'chemistry','70.49.10.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 04:21:31','2019-12-03 04:21:32'),(5299,'english','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:12','2019-12-03 05:44:12'),(5300,'commerce','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5301,'accounting','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5302,'economics','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5303,'irk','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5304,'insurance','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5305,'history','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5306,'commerce','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5307,'accounting','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5308,'chemistry','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5309,'government','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5310,'geography','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5311,'civiledu','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5312,'history','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5313,'english','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5314,'commerce','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5315,'englishlit','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5316,'crk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5317,'irk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:21'),(5318,'insurance','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5319,'currentaffairs','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5320,'irk','3.82.106.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 20:45:47','2019-12-03 20:45:47'),(5321,'mathematics','52.90.36.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 22:27:46','2019-12-03 22:27:46'),(5322,'government','54.152.243.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 01:01:26','2019-12-04 01:01:26'),(5323,'chemistry','207.46.13.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 03:26:32','2019-12-04 03:26:32'),(5324,'insurance','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 04:39:43','2019-12-04 04:39:43'),(5325,'chemistry','14.134.201.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:29:57','2019-12-04 06:29:57'),(5326,'chemistry','218.73.129.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:30:25','2019-12-04 06:30:25'),(5327,'commerce','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:53:13','2019-12-04 06:53:13'),(5328,'crk','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:05:20','2019-12-04 07:05:20'),(5329,'english','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:15:26','2019-12-04 07:15:26'),(5330,'mathematics','41.190.3.143',119,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:24:47','2019-12-05 00:11:26'),(5331,'biology','41.190.3.143',168,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:28:53','2019-12-05 12:00:11'),(5332,'chemistry','197.211.58.2',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:19:02','2019-12-04 15:19:02'),(5333,'currentaffairs','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:20:27','2019-12-04 15:20:27'),(5334,'mathematics','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:26:56','2019-12-04 15:26:56'),(5335,'chemistry','105.112.181.189',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:14:48','2019-12-04 17:14:58'),(5336,'geography','18.208.212.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:29:42','2019-12-04 17:29:42'),(5337,'english','41.190.3.143',91,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:55:40','2019-12-05 06:58:47'),(5338,'government','41.190.3.143',84,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:56:50','2019-12-05 06:41:34'),(5339,'commerce','41.190.3.143',175,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:57:42','2019-12-05 06:53:25'),(5340,'chemistry','41.190.3.143',140,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 19:01:13','2019-12-05 07:14:29'),(5341,'mathematics','54.172.178.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 20:35:24','2019-12-04 20:35:24'),(5342,'geography','54.172.178.184',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 21:08:09','2019-12-04 21:36:53'),(5343,'english','54.163.0.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 23:30:16','2019-12-04 23:30:16'),(5344,'geography','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:01:50','2019-12-05 01:01:50'),(5345,'history','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:18:02','2019-12-05 01:18:02'),(5346,'geography','204.236.206.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:22:32','2019-12-05 07:22:32'),(5347,'physics','54.86.78.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:59:42','2019-12-05 07:59:42'),(5348,'englishlit','54.172.67.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 09:02:59','2019-12-05 09:02:59'),(5349,'currentaffairs','3.91.46.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 10:24:47','2019-12-05 10:24:47'),(5350,'biology','174.129.108.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 14:55:19','2019-12-05 14:55:19'),(5351,'chemistry','105.112.179.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 17:00:52','2019-12-05 17:00:52'),(5352,'commerce','3.84.85.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:00:24','2019-12-05 18:23:26'),(5353,'english','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:44:01','2019-12-05 18:44:01'),(5354,'economics','3.88.46.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 19:56:33','2019-12-05 19:56:33'),(5355,'history','54.81.95.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 20:35:42','2019-12-05 20:35:42'),(5356,'chemistry','113.138.129.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:25','2019-12-05 21:06:25'),(5357,'chemistry','40.77.167.50',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:35','2019-12-05 21:06:35'),(5358,'mathematics','18.233.165.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 22:52:02','2019-12-05 22:52:02'),(5359,'englishlit','54.175.59.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 00:21:22','2019-12-06 00:21:22'),(5360,'chemistry','52.90.137.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 01:50:04','2019-12-06 01:50:04'),(5361,'geography','3.87.199.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 02:52:45','2019-12-06 02:52:45'),(5362,'mathematics','3.88.194.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 04:08:29','2019-12-06 04:08:29'),(5363,'government','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:32:21','2019-12-06 05:32:21'),(5364,'mathematics','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:40:15','2019-12-06 05:40:15'),(5365,'insurance','34.227.157.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 06:43:30','2019-12-06 06:43:30'),(5366,'physics','54.172.2.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 10:09:01','2019-12-06 10:09:01'),(5367,'biology','66.249.88.17',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 14:07:38','2020-02-15 20:12:28'),(5368,'chemistry','197.210.84.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:36:43','2019-12-06 18:36:43'),(5369,'crk','197.210.84.159',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:40:55','2019-12-06 19:11:31'),(5370,'biology','34.205.127.71',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5371,'biology','34.205.127.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5372,'accounting','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:12:45','2019-12-07 10:12:45'),(5373,'history','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:34:21','2019-12-07 10:34:21'),(5374,'chemistry','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5375,'englishlit','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5376,'government','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5377,'crk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5378,'irk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5379,'civiledu','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5380,'currentaffairs','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5381,'irk','54.242.7.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 01:13:25','2019-12-08 01:13:25'),(5382,'englishlit','54.242.126.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 06:59:59','2019-12-08 06:59:59'),(5383,'chemistry','40.77.167.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 15:51:20','2019-12-08 15:51:20'),(5384,'chemistry','197.210.47.7',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:00:48','2019-12-08 16:00:49'),(5385,'chemistry','197.210.47.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:17:03','2019-12-08 16:17:03'),(5386,'insurance','54.152.41.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 17:44:29','2019-12-08 17:44:29'),(5387,'chemistry','93.158.161.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 18:45:52','2019-12-08 18:45:52'),(5388,'economics','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 19:54:55','2019-12-08 19:54:55'),(5389,'biology','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 20:26:43','2019-12-08 20:26:43'),(5390,'commerce','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5391,'english','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5392,'accounting','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5393,'accounting','3.82.25.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5394,'physics','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:42'),(5395,'biology','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5396,'geography','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5397,'economics','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5398,'crk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5399,'civiledu','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5400,'irk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5401,'chemistry','40.77.167.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 00:56:26','2019-12-09 00:56:26'),(5402,'accounting','54.226.206.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 03:42:51','2019-12-09 03:42:51'),(5403,'history','52.206.133.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 04:25:20','2019-12-09 04:25:20'),(5404,'biology','54.173.252.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 05:46:38','2019-12-09 05:46:39'),(5405,'irk','18.234.114.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 11:05:35','2019-12-09 11:05:35'),(5406,'chemistry','54.36.148.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:28:12','2019-12-09 16:28:16'),(5407,'biology','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:39'),(5408,'englishlit','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:38'),(5409,'crk','54.89.129.103',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:48:45'),(5410,'commerce','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5411,'economics','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5412,'irk','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5413,'physics','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5414,'chemistry','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5415,'insurance','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:40'),(5416,'currentaffairs','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5417,'commerce','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:17:25','2019-12-09 19:17:25'),(5418,'economics','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:32:29','2019-12-09 19:32:29'),(5419,'civiledu','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 22:44:39','2019-12-09 22:44:39'),(5420,'english','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:24','2019-12-09 23:12:24'),(5421,'geography','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:35','2019-12-09 23:12:35'),(5422,'chemistry','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:27:16','2019-12-09 23:27:16'),(5423,'chemistry','40.77.167.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:01:39','2019-12-10 00:01:39'),(5424,'accounting','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:03:12','2019-12-10 00:03:12'),(5425,'insurance','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:37:10','2019-12-10 00:37:10'),(5426,'crk','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 01:09:15','2019-12-10 01:09:15'),(5427,'chemistry','100.27.31.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 02:44:54','2019-12-10 02:44:54'),(5428,'commerce','54.237.164.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 04:47:40','2019-12-10 04:47:40'),(5429,'english','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:13:52','2019-12-10 06:13:52'),(5430,'geography','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:33:46','2019-12-10 06:33:46'),(5431,'economics','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:51:24','2019-12-10 06:51:24'),(5432,'accounting','54.242.54.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 07:57:03','2019-12-10 07:57:03'),(5433,'insurance','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:23:16','2019-12-10 09:23:16'),(5434,'chemistry','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:37:33','2019-12-10 09:37:33'),(5435,'crk','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:18:58','2019-12-10 10:18:58'),(5436,'englishlit','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:59:01','2019-12-10 10:59:01'),(5437,'government','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:19:21','2019-12-10 11:19:21'),(5438,'english','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:50:52','2019-12-10 11:50:52'),(5439,'geography','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:05:06','2019-12-10 12:05:06'),(5440,'irk','54.226.150.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:45:46','2019-12-10 12:45:46'),(5441,'commerce','3.90.68.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 13:50:00','2019-12-10 13:50:00'),(5442,'government','3.82.210.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 14:37:36','2019-12-10 14:37:36'),(5443,'crk','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:21:52','2019-12-10 15:21:52'),(5444,'economics','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:35:48','2019-12-10 15:35:48'),(5445,'currentaffairs','35.168.14.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 16:27:37','2019-12-10 16:27:37'),(5446,'geography','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:35:21','2019-12-10 20:35:21'),(5447,'economics','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:39:50','2019-12-10 20:39:50'),(5448,'accounting','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:37','2019-12-10 20:59:37'),(5449,'english','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:50','2019-12-10 20:59:50'),(5450,'crk','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 21:34:22','2019-12-10 21:34:22'),(5451,'englishlit','54.165.112.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 00:04:55','2019-12-11 00:04:55'),(5452,'government','34.201.143.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 03:16:18','2019-12-11 03:16:18'),(5453,'englishlit','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:53:05','2019-12-11 04:53:05'),(5454,'insurance','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:55:54','2019-12-11 04:55:54'),(5455,'chemistry','105.112.179.103',425,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 06:39:31','2019-12-11 07:10:00'),(5456,'mathematics','105.112.179.103',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:10:34','2019-12-11 07:10:34'),(5457,'mathematics','105.112.16.69',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:18:04','2019-12-11 07:18:48'),(5458,'chemistry','3.229.122.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:58:12','2019-12-11 09:05:40'),(5459,'geography','174.129.57.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 09:22:20','2019-12-11 09:22:20'),(5460,'crk','54.90.130.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 12:16:19','2019-12-11 12:16:19'),(5461,'chemistry','188.180.82.238',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 13:07:40','2019-12-11 13:09:06'),(5462,'chemistry','41.203.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 15:02:50','2019-12-11 15:02:50'),(5463,'chemistry','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 22:51:11','2019-12-11 22:51:11'),(5464,'accounting','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:23:14','2019-12-11 23:23:14'),(5465,'englishlit','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:52:10','2019-12-11 23:52:10'),(5466,'physics','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 00:19:17','2019-12-12 00:19:17'),(5467,'commerce','54.197.2.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 01:28:00','2019-12-12 01:28:00'),(5468,'englishlit','3.93.184.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 03:07:29','2019-12-12 03:07:29'),(5469,'crk','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 09:35:33','2019-12-12 09:35:33'),(5470,'english','18.209.36.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 11:09:56','2019-12-12 11:09:56'),(5471,'chemistry','34.228.199.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 13:40:09','2019-12-12 13:40:09'),(5472,'englishlit','3.85.74.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 14:21:15','2019-12-12 14:21:15'),(5473,'chemistry','100.27.31.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 16:34:32','2019-12-12 16:34:32'),(5474,'government','54.236.209.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 19:00:46','2019-12-12 19:00:46'),(5475,'crk','18.205.239.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:05:15','2019-12-12 20:05:15'),(5476,'crk','197.210.84.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:31:16','2019-12-12 20:40:53'),(5477,'economics','34.239.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 21:01:23','2019-12-12 21:01:23'),(5478,'english','54.172.192.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 23:30:27','2019-12-12 23:30:27'),(5479,'chemistry','40.77.167.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 02:15:26','2019-12-13 02:15:26'),(5480,'chemistry','114.229.7.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 03:41:13','2019-12-13 03:41:13'),(5481,'chemistry','105.112.80.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 08:56:22','2019-12-13 08:56:45'),(5482,'mathematics','34.203.244.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 09:11:37','2019-12-13 09:11:37'),(5483,'physics','110.44.121.20',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 10:10:52','2019-12-13 10:10:53'),(5484,'chemistry','105.112.24.37',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:15:54','2019-12-13 11:15:55'),(5485,'mathematics','105.112.179.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:03','2019-12-13 11:29:48'),(5486,'physics','105.112.179.227',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:26','2019-12-13 11:30:06'),(5487,'physics','3.93.52.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 12:46:32','2019-12-13 12:46:32'),(5488,'history','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:34','2019-12-13 21:12:28'),(5489,'currentaffairs','129.205.112.254',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:39','2019-12-13 21:09:28'),(5490,'chemistry','129.205.112.254',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:44','2019-12-13 21:12:08'),(5491,'mathematics','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:54','2019-12-13 21:11:38'),(5492,'government','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:59','2019-12-13 21:11:53'),(5493,'physics','129.205.112.254',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:04','2019-12-13 21:12:23'),(5494,'englishlit','129.205.112.254',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:09','2019-12-13 21:12:13'),(5495,'economics','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:15','2019-12-13 21:12:38'),(5496,'commerce','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:40','2019-12-13 21:12:33'),(5497,'english','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:47','2019-12-13 21:11:28'),(5498,'accounting','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:50','2019-12-13 21:10:34'),(5499,'geography','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:30','2019-12-13 21:10:38'),(5500,'crk','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:35','2019-12-13 21:11:58'),(5501,'irk','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:15','2019-12-13 21:09:43'),(5502,'biology','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:30','2019-12-13 21:12:18'),(5503,'insurance','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:01:20','2019-12-13 21:13:30'),(5504,'civiledu','129.205.112.254',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:03:35','2019-12-13 21:11:03'),(5505,'currentaffairs','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 18:57:39','2019-12-13 18:57:39'),(5506,'currentaffairs','54.226.13.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 19:41:05','2019-12-13 19:41:05'),(5507,'mathematics','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 20:26:39','2019-12-13 20:26:39'),(5508,'civiledu','3.83.131.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 23:08:17','2019-12-13 23:08:17'),(5509,'englishlit','54.163.205.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 02:02:08','2019-12-14 02:02:08'),(5510,'english','3.84.191.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:05:13','2019-12-14 03:05:13'),(5511,'physics','105.112.178.117',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:10:23','2019-12-14 03:22:06'),(5512,'biology','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:35:59','2019-12-14 03:40:01'),(5513,'accounting','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:37:14','2019-12-14 03:40:02'),(5514,'mathematics','105.112.177.67',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:11','2019-12-14 03:40:22'),(5515,'physics','105.112.177.67',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:58','2019-12-14 03:44:29'),(5516,'accounting','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:12:59','2019-12-14 04:12:59'),(5517,'mathematics','105.112.177.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:16:55','2019-12-14 04:16:55'),(5518,'mathematics','105.112.179.177',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:17:37','2019-12-14 04:17:38'),(5519,'chemistry','58.19.12.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:18:56','2019-12-14 04:18:56'),(5520,'mathematics','105.112.176.112',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:39:57','2019-12-14 04:44:54'),(5521,'mathematics','105.112.23.162',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:29:29','2019-12-14 05:38:43'),(5522,'mathematics','105.112.178.10',110,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:40:14','2019-12-14 06:24:21'),(5523,'english','105.112.178.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:20:57','2019-12-14 06:20:58'),(5524,'physics','105.112.178.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:22:14','2019-12-14 06:23:31'),(5525,'mathematics','105.112.176.255',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:48:33','2019-12-14 06:54:19'),(5526,'mathematics','105.112.177.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:16:27','2019-12-14 07:52:21'),(5527,'physics','105.112.177.210',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:18:35','2019-12-14 07:19:49'),(5528,'mathematics','34.229.0.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 14:14:24','2019-12-14 14:14:24'),(5529,'chemistry','3.94.129.211',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:29:03','2019-12-14 18:49:30'),(5530,'crk','3.82.19.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:54:57','2019-12-14 18:54:57'),(5531,'mathematics','105.112.74.0',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:40:25','2019-12-14 19:50:59'),(5532,'mathematics','105.112.178.125',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:55:19','2019-12-14 19:57:26'),(5533,'english','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:42'),(5534,'accounting','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:43'),(5535,'government','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5536,'crk','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5537,'economics','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5538,'insurance','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5539,'currentaffairs','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5540,'mathematics','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 02:56:53','2019-12-15 02:56:53'),(5541,'irk','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 03:08:39','2019-12-15 03:08:39'),(5542,'mathematics','105.112.24.144',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 05:33:44','2019-12-15 05:33:44'),(5543,'mathematics','105.112.24.123',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:27:08','2019-12-15 06:28:35'),(5544,'biology','105.112.24.123',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:28:39','2019-12-15 06:28:39'),(5545,'commerce','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:52:53','2019-12-15 07:52:53'),(5546,'government','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:53:27','2019-12-15 07:53:27'),(5547,'mathematics','105.112.75.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:03:20','2019-12-15 08:03:20'),(5548,'mathematics','105.112.178.111',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:24:49','2019-12-15 08:24:49'),(5549,'chemistry','89.163.242.18',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:57:38','2019-12-15 08:57:38'),(5550,'mathematics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:59:24','2019-12-15 09:11:12'),(5551,'commerce','105.112.16.234',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:01:55','2019-12-15 09:05:33'),(5552,'englishlit','105.112.16.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:05:43','2019-12-15 09:05:44'),(5553,'economics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:07:37','2019-12-15 09:09:01'),(5554,'mathematics','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:32'),(5555,'commerce','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:33'),(5556,'accounting','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5557,'englishlit','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5558,'crk','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5559,'geography','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5560,'currentaffairs','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5561,'insurance','18.206.121.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:44:42','2019-12-15 10:44:42'),(5562,'mathematics','197.210.44.70',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 11:39:41','2019-12-15 11:40:19'),(5563,'english','54.226.135.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 13:31:12','2019-12-15 13:31:12'),(5564,'crk','34.207.159.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 14:25:42','2019-12-15 14:25:42'),(5565,'chemistry','197.210.8.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:09:00','2019-12-15 15:09:49'),(5566,'mathematics','105.112.181.210',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:31:11','2019-12-15 15:31:12'),(5567,'chemistry','197.211.58.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 16:28:08','2019-12-15 16:28:08'),(5568,'civiledu','107.22.61.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 21:18:49','2019-12-15 21:18:49'),(5569,'mathematics','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 22:16:18','2019-12-15 22:16:18'),(5570,'geography','18.206.180.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 00:01:24','2019-12-16 00:01:24'),(5571,'accounting','3.95.7.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 01:08:36','2019-12-16 01:08:36'),(5572,'chemistry','105.112.99.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:48:06','2019-12-16 04:48:06'),(5573,'geography','34.207.88.147',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:49:45','2019-12-16 08:10:20'),(5574,'mathematics','105.112.24.13',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 05:19:46','2019-12-16 05:19:46'),(5575,'english','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:18:08','2019-12-16 06:18:08'),(5576,'geography','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:30:45','2019-12-16 06:30:45'),(5577,'chemistry','105.112.30.62',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 11:31:31','2019-12-16 11:34:57'),(5578,'chemistry','207.46.13.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 12:26:05','2019-12-16 12:26:05'),(5579,'physics','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 16:53:46','2019-12-16 16:53:46'),(5580,'englishlit','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 17:13:34','2019-12-16 17:13:34'),(5581,'geography','3.92.69.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 18:41:59','2019-12-16 18:41:59'),(5582,'biology','52.202.45.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 21:27:25','2019-12-16 21:27:25'),(5583,'currentaffairs','3.95.195.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 22:56:29','2019-12-16 22:56:29'),(5584,'economics','3.81.134.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 23:46:29','2019-12-16 23:46:29'),(5585,'commerce','54.164.27.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 00:54:33','2019-12-17 00:54:33'),(5586,'commerce','3.92.4.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 04:14:33','2019-12-17 04:14:33'),(5587,'chemistry','197.210.61.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 06:57:40','2019-12-17 06:57:40'),(5588,'chemistry','102.134.114.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:37','2019-12-17 07:45:37'),(5589,'mathematics','102.134.114.193',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:57','2019-12-17 07:47:44'),(5590,'mathematics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:30:56','2019-12-17 08:30:56'),(5591,'physics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:32:55','2019-12-17 08:32:55'),(5592,'englishlit','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:58:40','2019-12-17 08:58:40'),(5593,'chemistry','151.80.39.216',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:17:12','2019-12-30 07:30:25'),(5594,'chemistry','151.80.39.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:23:31','2019-12-17 09:23:31'),(5595,'chemistry','5.196.87.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:30:13','2020-01-07 19:20:55'),(5596,'chemistry','151.80.39.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:39:21','2019-12-17 09:45:56'),(5597,'geography','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:13:13','2019-12-17 10:13:13'),(5598,'government','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:29:20','2019-12-17 10:29:20'),(5599,'mathematics','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:55:34','2019-12-17 10:55:34'),(5600,'mathematics','105.112.178.120',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:24:11','2019-12-17 13:24:11'),(5601,'english','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:31:22','2019-12-17 13:31:22'),(5602,'insurance','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:39:48','2019-12-17 13:39:48'),(5603,'mathematics','105.112.23.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:00:33','2019-12-17 14:00:33'),(5604,'history','54.91.62.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:51:56','2019-12-17 14:51:56'),(5605,'chemistry','106.56.38.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 21:15:06','2019-12-17 21:15:06'),(5606,'chemistry','182.110.22.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 22:30:20','2019-12-17 22:30:20'),(5607,'geography','54.204.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 00:38:06','2019-12-18 00:38:06'),(5608,'chemistry','154.120.93.60',252,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:40:21','2019-12-18 06:53:13'),(5609,'english','154.120.93.60',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:48:52','2019-12-18 06:48:55'),(5610,'mathematics','154.120.93.60',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:53:33','2019-12-18 06:53:56'),(5611,'chemistry','197.210.65.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:44','2019-12-18 07:42:44'),(5612,'chemistry','197.210.64.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:51','2019-12-18 07:42:51'),(5613,'accounting','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 09:13:48','2019-12-18 09:13:48'),(5614,'chemistry','197.210.227.76',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:32:30','2019-12-18 13:51:25'),(5615,'chemistry','197.210.226.124',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:33:10','2019-12-19 08:29:25'),(5616,'chemistry','197.210.227.42',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:50:23','2019-12-18 13:52:09'),(5617,'mathematics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5618,'commerce','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5619,'physics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5620,'englishlit','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5621,'crk','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5622,'currentaffairs','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5623,'history','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5624,'english','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5625,'accounting','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5626,'biology','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:07'),(5627,'englishlit','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5628,'geography','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5629,'irk','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5630,'insurance','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5631,'chemistry','69.30.213.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 14:31:25','2019-12-18 14:31:25'),(5632,'physics','105.112.176.201',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 05:24:23','2019-12-19 05:24:23'),(5633,'chemistry','5.189.172.182',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:05:46','2019-12-19 07:06:30'),(5634,'government','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:12:43','2019-12-19 07:12:43'),(5635,'history','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:33:41','2019-12-19 07:33:41'),(5636,'irk','52.91.34.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 09:17:34','2019-12-19 09:17:34'),(5637,'englishlit','54.88.253.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 10:35:04','2019-12-19 10:35:04'),(5638,'economics','105.112.177.36',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:42:18','2019-12-19 16:42:19'),(5639,'chemistry','105.112.177.36',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:43:25','2019-12-19 16:45:28'),(5640,'chemistry','105.112.177.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:02:16','2019-12-19 17:02:16'),(5641,'commerce','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:40:56','2019-12-19 17:40:56'),(5642,'biology','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:43:13','2019-12-19 17:43:13'),(5643,'mathematics','197.210.53.166',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 18:09:35','2019-12-19 18:09:35'),(5644,'insurance','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:04:27','2019-12-20 01:04:27'),(5645,'biology','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:31:54','2019-12-20 01:31:54'),(5646,'economics','54.146.230.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 05:50:03','2019-12-20 05:50:03'),(5647,'history','3.85.190.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 07:45:09','2019-12-20 07:45:09'),(5648,'history','54.80.62.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 08:26:39','2019-12-20 08:26:39'),(5649,'accounting','54.198.39.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:15:34','2019-12-20 10:15:34'),(5650,'chemistry','197.210.61.37',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:58:34','2019-12-20 11:00:32'),(5651,'englishlit','34.202.161.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 15:24:52','2019-12-20 15:24:52'),(5652,'chemistry','3.85.93.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 16:07:34','2019-12-20 16:07:34'),(5653,'irk','3.87.205.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 21:37:02','2019-12-20 21:37:02'),(5654,'economics','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:05:01','2019-12-21 03:05:01'),(5655,'crk','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:09:00','2019-12-21 03:09:00'),(5656,'chemistry','41.190.31.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 06:38:03','2019-12-21 06:38:04'),(5657,'commerce','54.234.19.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 07:41:34','2019-12-21 07:41:34'),(5658,'chemistry','154.120.111.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:08:50','2019-12-21 08:08:50'),(5659,'chemistry','207.46.13.100',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:11:14','2019-12-21 08:11:14'),(5660,'accounting','3.82.104.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:03:47','2019-12-21 09:03:47'),(5661,'english','154.120.82.204',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:45:44','2019-12-21 09:45:44'),(5662,'crk','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 10:54:28','2019-12-21 10:54:28'),(5663,'history','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:24:32','2019-12-21 11:24:32'),(5664,'chemistry','197.210.71.189',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:53:25','2019-12-21 11:55:06'),(5665,'economics','54.234.34.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:08:12','2019-12-21 17:08:12'),(5666,'chemistry','196.220.136.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:23:29','2019-12-21 17:23:29'),(5667,'government','52.200.198.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 19:00:57','2019-12-21 19:00:57'),(5668,'chemistry','54.145.127.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 20:50:25','2019-12-21 20:50:25'),(5669,'geography','34.239.125.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 22:50:03','2019-12-21 22:50:03'),(5670,'economics','54.144.125.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 23:56:36','2019-12-21 23:56:36'),(5671,'commerce','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:51:11','2019-12-22 00:51:11'),(5672,'government','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:59:35','2019-12-22 00:59:35'),(5673,'insurance','54.82.100.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 06:04:36','2019-12-22 06:04:36'),(5674,'economics','3.91.31.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:14:42','2019-12-22 07:14:42'),(5675,'crk','100.24.16.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:56:40','2019-12-22 07:56:40'),(5676,'englishlit','54.174.249.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 12:39:37','2019-12-22 12:39:37'),(5677,'chemistry','106.57.151.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 14:24:18','2019-12-22 14:24:18'),(5678,'chemistry','58.62.85.244',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 15:07:13','2019-12-22 15:07:13'),(5679,'chemistry','113.121.210.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 16:19:36','2019-12-22 16:19:36'),(5680,'chemistry','197.211.58.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 18:58:28','2019-12-22 18:58:28'),(5681,'crk','18.208.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 19:35:12','2019-12-22 19:35:12'),(5682,'english','52.91.199.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 20:40:32','2019-12-22 20:40:32'),(5683,'crk','54.197.16.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 22:29:28','2019-12-22 22:29:28'),(5684,'chemistry','207.46.13.32',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 05:30:59','2019-12-23 19:53:30'),(5685,'chemistry','41.58.249.101',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 07:32:16','2019-12-23 07:41:55'),(5686,'accounting','3.88.176.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 08:35:37','2019-12-23 08:35:37'),(5687,'chemistry','52.207.237.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 10:59:07','2019-12-23 10:59:07'),(5688,'physics','54.90.171.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 12:33:14','2019-12-23 12:33:14'),(5689,'englishlit','3.94.55.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 14:39:35','2019-12-23 14:39:35'),(5690,'chemistry','105.112.24.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 16:46:27','2019-12-23 16:46:27'),(5691,'english','34.230.73.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 17:01:58','2019-12-23 17:01:58'),(5692,'englishlit','3.81.216.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 21:28:10','2019-12-23 21:28:10'),(5693,'currentaffairs','107.22.114.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 22:06:26','2019-12-23 22:06:26'),(5694,'englishlit','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:36:52','2019-12-24 00:36:52'),(5695,'crk','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:42:20','2019-12-24 00:42:20'),(5696,'chemistry','3.88.226.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 02:28:27','2019-12-24 02:28:27'),(5697,'economics','18.212.81.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 03:34:43','2019-12-24 03:34:43'),(5698,'government','3.84.146.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 04:34:22','2019-12-24 04:34:22'),(5699,'crk','54.89.84.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 07:50:50','2019-12-24 07:50:50'),(5700,'chemistry','41.203.73.248',604,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:03:43','2019-12-24 09:45:17'),(5701,'english','41.203.73.248',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:12:17','2019-12-24 09:12:20'),(5702,'mathematics','41.203.73.248',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:29:46','2019-12-24 09:32:59'),(5703,'chemistry','41.203.73.144',121,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 10:18:01','2019-12-24 11:28:03'),(5704,'physics','41.203.73.144',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 11:28:36','2019-12-24 11:28:39'),(5705,'english','54.234.136.92',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 11:35:59','2019-12-24 11:35:59'),(5706,'english','108.173.207.253',10,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 18:30:37','2019-12-24 18:32:01'),(5707,'english','54.86.42.151',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 19:06:22','2019-12-24 19:06:22'),(5708,'physics','54.162.161.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 02:38:17','2019-12-25 02:38:17'),(5709,'currentaffairs','54.158.129.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 09:00:12','2019-12-25 09:00:12'),(5710,'currentaffairs','34.201.150.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 10:02:21','2019-12-25 10:02:21'),(5711,'chemistry','197.211.58.122',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 12:27:20','2019-12-25 12:27:41'),(5712,'civiledu','184.72.131.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 14:01:27','2019-12-25 14:01:27'),(5713,'english','41.190.31.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:21:37','2019-12-25 17:21:37'),(5714,'english','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:51:12','2019-12-25 17:51:12'),(5715,'accounting','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 18:07:03','2019-12-25 18:07:03'),(5716,'englishlit','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 19:07:55','2019-12-25 19:07:55'),(5717,'commerce','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:07','2019-12-26 09:45:08'),(5718,'chemistry','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5719,'englishlit','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5720,'government','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5721,'geography','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5722,'irk','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5723,'insurance','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5724,'chemistry','197.210.53.171',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:00','2019-12-26 11:07:17'),(5725,'chemistry','197.210.52.12',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:37','2020-04-07 18:47:51'),(5726,'chemistry','197.210.53.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:49','2019-12-26 10:58:49'),(5727,'chemistry','159.138.149.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:12','2019-12-26 12:40:12'),(5728,'chemistry','159.138.158.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:19','2019-12-26 12:40:19'),(5729,'chemistry','159.138.155.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:40','2019-12-26 12:40:40'),(5730,'chemistry','159.138.157.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:42','2019-12-26 12:40:42'),(5731,'chemistry','159.138.153.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:37','2019-12-26 12:41:37'),(5732,'chemistry','159.138.148.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:39','2019-12-26 12:41:39'),(5733,'chemistry','40.77.167.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 16:52:21','2019-12-26 16:52:21'),(5734,'chemistry','151.80.39.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 18:13:53','2019-12-26 18:13:53'),(5735,'mathematics','54.92.139.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 19:28:36','2019-12-26 19:28:36'),(5736,'commerce','3.83.25.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 21:13:20','2019-12-26 21:13:20'),(5737,'government','3.86.200.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 22:19:35','2019-12-26 22:19:35'),(5738,'insurance','54.236.119.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 01:39:51','2019-12-27 01:39:51'),(5739,'english','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:11:47','2019-12-27 04:11:47'),(5740,'crk','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:17:19','2019-12-27 04:17:19'),(5741,'mathematics','105.112.18.136',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 08:38:34','2019-12-27 08:38:35'),(5742,'civiledu','52.4.139.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 11:24:11','2019-12-27 11:24:11'),(5743,'mathematics','52.70.132.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:02:50','2019-12-27 12:02:50'),(5744,'chemistry','54.36.149.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:04:00','2019-12-27 12:04:00'),(5745,'geography','34.229.11.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 15:04:56','2019-12-27 15:04:56'),(5746,'economics','54.82.208.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 17:32:43','2019-12-27 17:32:43'),(5747,'geography','3.95.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 18:44:54','2019-12-27 18:44:54'),(5748,'chemistry','41.203.73.152',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:28:07','2019-12-28 05:58:59'),(5749,'geography','18.232.139.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:38:53','2019-12-27 19:38:53'),(5750,'chemistry','207.46.13.72',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:58:11','2019-12-27 19:58:11'),(5751,'english','18.212.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 21:36:45','2019-12-27 21:36:45'),(5752,'geography','3.81.112.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 22:26:48','2019-12-27 22:26:48'),(5753,'englishlit','3.95.29.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 07:09:48','2019-12-28 07:09:48'),(5754,'geography','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 08:46:11','2019-12-28 08:46:11'),(5755,'chemistry','157.55.39.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:01:00','2019-12-28 13:56:07'),(5756,'physics','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:07:43','2019-12-28 09:07:43'),(5757,'currentaffairs','3.90.16.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:52:08','2019-12-28 09:52:08'),(5758,'chemistry','198.27.70.196',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 13:04:37','2019-12-28 13:05:18'),(5759,'economics','54.208.246.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 16:54:27','2019-12-28 16:54:27'),(5760,'physics','3.90.201.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 21:17:55','2019-12-28 21:17:55'),(5761,'englishlit','54.88.31.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 22:11:00','2019-12-28 22:11:00'),(5762,'chemistry','46.229.168.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 00:53:10','2019-12-29 00:53:10'),(5763,'mathematics','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 01:48:09','2019-12-29 01:48:09'),(5764,'geography','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:00:13','2019-12-29 02:00:13'),(5765,'government','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:45:45','2019-12-29 02:45:45'),(5766,'mathematics','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 03:11:26','2019-12-29 03:11:26'),(5767,'mathematics','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:29:09','2019-12-29 04:29:09'),(5768,'insurance','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:50:21','2019-12-29 04:50:21'),(5769,'accounting','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 06:48:58','2019-12-29 06:48:58'),(5770,'history','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 07:05:29','2019-12-29 07:05:29'),(5771,'geography','18.212.192.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 14:35:59','2019-12-29 14:35:59'),(5772,'chemistry','159.138.157.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 15:56:34','2019-12-29 15:56:34'),(5773,'chemistry','159.138.156.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:52','2019-12-29 16:06:52'),(5774,'chemistry','159.138.156.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:54','2019-12-29 16:06:54'),(5775,'chemistry','159.138.151.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:08','2019-12-29 16:17:08'),(5776,'chemistry','159.138.155.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:10','2019-12-29 16:17:10'),(5777,'chemistry','54.173.230.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 17:07:40','2019-12-29 17:07:40'),(5778,'chemistry','77.88.5.57',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 20:09:09','2020-02-17 06:41:03'),(5779,'chemistry','105.112.37.95',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 22:46:03','2019-12-29 22:48:25'),(5780,'accounting','54.162.107.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 00:28:34','2019-12-30 00:28:34'),(5781,'chemistry','5.196.87.181',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:24:52','2019-12-30 07:24:52'),(5782,'chemistry','5.196.87.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:28:37','2019-12-30 07:28:37'),(5783,'chemistry','151.80.39.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:31:37','2019-12-30 07:31:37'),(5784,'history','3.80.177.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 10:00:20','2019-12-30 10:00:20'),(5785,'chemistry','41.87.80.10',177,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:52:05','2020-01-03 12:40:11'),(5786,'english','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:05','2020-01-03 09:47:26'),(5787,'biology','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:35','2020-01-06 10:18:55'),(5788,'physics','41.87.80.10',238,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 12:26:15','2020-01-14 13:07:03'),(5789,'chemistry','197.210.71.107',112,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 18:08:04','2019-12-30 21:50:09'),(5790,'government','54.227.176.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 01:11:30','2019-12-31 01:11:30'),(5791,'englishlit','107.22.1.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 02:42:52','2019-12-31 02:42:52'),(5792,'geography','41.87.80.10',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:35','2020-01-03 09:11:05'),(5793,'mathematics','41.87.80.10',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:42','2020-01-03 12:40:26'),(5794,'commerce','41.87.80.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 11:27:07','2019-12-31 15:11:01'),(5795,'physics','197.210.85.161',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:01','2019-12-31 21:44:09'),(5796,'geography','197.210.85.161',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:36','2019-12-31 21:17:50'),(5797,'commerce','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:39','2019-12-31 17:35:25'),(5798,'biology','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:27:53','2019-12-31 17:50:46'),(5799,'mathematics','197.210.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:22','2019-12-31 17:35:22'),(5800,'english','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:50','2019-12-31 17:50:42'),(5801,'chemistry','197.210.85.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 19:06:57','2019-12-31 21:19:14'),(5802,'biology','54.89.212.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 20:08:07','2019-12-31 20:08:07'),(5803,'history','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:24:33','2019-12-31 21:24:33'),(5804,'insurance','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:51:19','2019-12-31 21:51:19'),(5805,'economics','3.83.156.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 23:11:47','2019-12-31 23:11:47'),(5806,'economics','54.159.177.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 00:29:53','2020-01-01 00:29:53'),(5807,'history','34.235.146.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 02:22:24','2020-01-01 02:22:24'),(5808,'physics','197.210.70.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:22:07','2020-01-01 06:22:07'),(5809,'accounting','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:52:22','2020-01-01 06:52:22'),(5810,'chemistry','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 07:22:30','2020-01-01 07:22:30'),(5811,'history','3.82.145.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 12:16:11','2020-01-01 12:16:11'),(5812,'physics','197.210.64.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:45','2020-01-01 13:42:45'),(5813,'geography','197.210.65.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:52','2020-01-01 13:42:52'),(5814,'physics','197.210.47.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:07:21','2020-01-01 14:07:21'),(5815,'irk','3.86.222.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:39:17','2020-01-01 14:39:17'),(5816,'crk','54.173.160.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 19:37:03','2020-01-01 19:37:03'),(5817,'economics','54.81.159.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 20:29:55','2020-01-01 20:29:55'),(5818,'commerce','34.207.138.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 23:01:12','2020-01-01 23:01:12'),(5819,'crk','3.84.24.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 04:49:38','2020-01-02 04:49:38'),(5820,'chemistry','197.210.227.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:20:08','2020-01-02 05:20:08'),(5821,'chemistry','197.210.226.177',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:22:40','2020-01-02 05:23:22'),(5822,'chemistry','197.210.227.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:23:39','2020-01-02 05:24:16'),(5823,'accounting','3.81.217.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 06:18:28','2020-01-02 06:18:28'),(5824,'economics','3.84.17.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 10:40:34','2020-01-02 10:40:34'),(5825,'chemistry','159.138.152.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:40','2020-01-02 11:34:40'),(5826,'chemistry','159.138.154.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:41','2020-01-02 11:34:41'),(5827,'chemistry','159.138.149.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:19','2020-01-02 13:42:19'),(5828,'chemistry','159.138.155.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:22','2020-01-02 13:42:22'),(5829,'english','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:16','2020-01-02 13:48:16'),(5830,'chemistry','197.210.53.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:29','2020-01-02 13:48:29'),(5831,'biology','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:54','2020-01-02 13:48:54'),(5832,'chemistry','40.77.167.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 14:52:08','2020-01-02 14:52:08'),(5833,'chemistry','173.252.87.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:12:40','2020-01-02 15:12:40'),(5834,'chemistry','105.112.96.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:14:54','2020-01-02 15:15:27'),(5835,'government','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:23:11','2020-01-02 15:23:11'),(5836,'chemistry','197.210.29.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:01:48','2020-01-02 16:01:48'),(5837,'chemistry','54.198.147.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:20:52','2020-01-02 16:20:52'),(5838,'geography','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:21:06','2020-01-02 18:21:06'),(5839,'government','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:53:06','2020-01-02 18:53:06'),(5840,'chemistry','141.0.12.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:46:34','2020-01-02 19:46:34'),(5841,'chemistry','54.36.148.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:54:13','2020-01-02 19:54:13'),(5842,'chemistry','107.167.116.51',81,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:22:38','2020-01-02 20:56:21'),(5843,'chemistry','69.171.251.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:25:00','2020-01-02 20:25:00'),(5844,'chemistry','173.252.95.39',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:27:00','2020-01-02 20:27:01'),(5845,'chemistry','105.112.107.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:44:23','2020-01-02 20:44:23'),(5846,'chemistry','197.210.85.199',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:48:24','2020-01-02 21:10:22'),(5847,'chemistry','173.252.127.12',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:56:49','2020-01-02 20:56:52'),(5848,'physics','107.167.107.19',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:06:13','2020-01-02 23:06:17'),(5849,'physics','105.112.121.61',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:07:14','2020-01-02 23:08:11'),(5850,'physics','107.167.107.16',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:19','2020-01-02 23:12:21'),(5851,'physics','105.112.112.87',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:44','2020-01-02 23:12:47'),(5852,'commerce','18.206.201.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:19:52','2020-01-02 23:19:52'),(5853,'economics','50.19.154.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:46:41','2020-01-03 01:31:33'),(5854,'accounting','50.19.154.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:56:30','2020-01-03 00:56:30'),(5855,'crk','3.82.121.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 03:17:13','2020-01-03 03:17:13'),(5856,'insurance','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 05:01:58','2020-01-03 05:01:58'),(5857,'mathematics','105.112.177.41',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 07:28:37','2020-01-03 07:28:38'),(5858,'accounting','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:14:39','2020-01-03 09:14:39'),(5859,'englishlit','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:40:09','2020-01-03 09:40:09'),(5860,'chemistry','173.252.127.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5861,'chemistry','173.252.127.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5862,'chemistry','69.171.251.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 10:12:20','2020-01-03 10:12:20'),(5863,'english','52.23.234.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 11:11:09','2020-01-03 11:11:09'),(5864,'chemistry','54.36.149.6',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 12:32:58','2020-01-03 12:32:58'),(5865,'chemistry','173.252.127.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5866,'chemistry','173.252.127.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5867,'accounting','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:47:56','2020-01-03 22:47:56'),(5868,'crk','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:59:55','2020-01-03 22:59:55'),(5869,'crk','18.234.186.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 00:39:01','2020-01-04 00:39:01'),(5870,'accounting','52.206.79.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 01:50:47','2020-01-04 01:50:47'),(5871,'mathematics','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5872,'commerce','3.83.117.183',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:17'),(5873,'accounting','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5874,'englishlit','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5875,'crk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5876,'irk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5877,'civiledu','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5878,'chemistry','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:25:30','2020-01-04 07:25:30'),(5879,'physics','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:54:21','2020-01-04 07:54:21'),(5880,'accounting','54.211.18.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 08:33:09','2020-01-04 08:33:09'),(5881,'englishlit','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:26:47','2020-01-04 09:26:47'),(5882,'physics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:28:39','2020-01-04 09:28:39'),(5883,'insurance','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:47:41','2020-01-04 09:47:41'),(5884,'geography','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:14','2020-01-04 09:54:14'),(5885,'english','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:18','2020-01-04 09:54:18'),(5886,'mathematics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:24','2020-01-04 09:54:24'),(5887,'chemistry','159.138.158.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:29:58','2020-01-04 10:29:58'),(5888,'chemistry','159.138.153.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:30:00','2020-01-04 10:30:00'),(5889,'currentaffairs','34.203.237.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 13:00:10','2020-01-04 13:00:10'),(5890,'chemistry','159.138.152.167',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 14:50:39','2020-01-04 14:50:39'),(5891,'english','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:36:52','2020-01-04 15:36:52'),(5892,'englishlit','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:40:27','2020-01-04 15:40:27'),(5893,'crk','35.174.5.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 19:26:20','2020-01-04 19:26:20'),(5894,'chemistry','197.210.226.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:08:58','2020-01-04 22:08:58'),(5895,'economics','18.232.58.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:09:24','2020-01-04 22:09:24'),(5896,'chemistry','18.206.248.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 00:08:29','2020-01-05 00:08:29'),(5897,'government','34.207.181.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 01:22:25','2020-01-05 01:22:25'),(5898,'englishlit','3.92.193.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 02:40:51','2020-01-05 02:40:51'),(5899,'crk','52.23.188.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 05:08:41','2020-01-05 05:08:41'),(5900,'english','52.207.216.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 07:59:31','2020-01-05 07:59:31'),(5901,'english','150.70.168.143',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 13:37:22','2020-01-05 13:37:25'),(5902,'english','35.173.133.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 16:54:20','2020-01-05 16:54:20'),(5903,'chemistry','159.138.154.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:07','2020-01-05 19:39:07'),(5904,'chemistry','159.138.157.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:10','2020-01-05 19:39:10'),(5905,'chemistry','197.211.58.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:13:15','2020-01-05 20:13:24'),(5906,'physics','66.102.8.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:39:20','2020-01-05 20:39:20'),(5907,'biology','66.102.8.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:40:26','2020-01-05 20:41:57'),(5908,'english','66.102.8.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:41:46','2020-01-05 20:41:46'),(5909,'physics','197.210.71.215',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:23','2020-01-05 21:15:06'),(5910,'geography','197.210.71.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:29','2020-01-05 20:46:29'),(5911,'mathematics','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:44','2020-01-05 20:51:35'),(5912,'chemistry','197.210.71.215',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:04','2020-04-05 08:30:45'),(5913,'biology','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:51','2020-01-05 20:52:21'),(5914,'commerce','197.210.71.215',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:48:01','2020-01-05 20:52:36'),(5915,'chemistry','40.77.167.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 04:41:04','2020-01-06 04:41:04'),(5916,'physics','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 06:59:39','2020-01-06 06:59:39'),(5917,'biology','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:25','2020-01-06 07:01:25'),(5918,'chemistry','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:36','2020-01-06 07:01:36'),(5919,'biology','54.196.116.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 08:39:32','2020-01-06 08:39:32'),(5920,'currentaffairs','52.90.145.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 09:20:05','2020-01-06 09:20:05'),(5921,'currentaffairs','54.81.36.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 10:59:33','2020-01-06 10:59:33'),(5922,'civiledu','54.165.53.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 14:25:40','2020-01-06 14:25:40'),(5923,'english','54.165.254.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 19:05:30','2020-01-06 19:05:30'),(5924,'englishlit','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 20:46:10','2020-01-06 20:46:10'),(5925,'accounting','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 23:28:47','2020-01-06 23:28:47'),(5926,'chemistry','40.77.167.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 00:55:53','2020-01-07 00:55:53'),(5927,'chemistry','197.210.85.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 10:49:45','2020-01-07 10:49:45'),(5928,'chemistry','114.119.144.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 16:29:50','2020-01-07 16:29:50'),(5929,'mathematics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:22','2020-01-07 19:50:22'),(5930,'biology','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5931,'physics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5932,'chemistry','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5933,'englishlit','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5934,'government','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5935,'history','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5936,'history','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:03:53','2020-01-08 00:03:53'),(5937,'mathematics','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:14:17','2020-01-08 00:14:17'),(5938,'commerce','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 02:50:48','2020-01-08 02:50:48'),(5939,'government','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:21:02','2020-01-08 03:21:02'),(5940,'physics','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:30','2020-01-08 03:49:31'),(5941,'accounting','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:55','2020-01-08 03:49:56'),(5942,'mathematics','105.112.24.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 05:26:53','2020-01-08 05:26:53'),(5943,'insurance','18.234.250.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:04:04','2020-01-08 07:04:04'),(5944,'chemistry','157.55.39.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:32:02','2020-01-08 07:32:03'),(5945,'english','3.90.5.24',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 08:20:47','2020-01-08 08:20:48'),(5946,'chemistry','197.210.152.54',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 09:59:01','2020-01-08 10:01:03'),(5947,'biology','197.210.152.54',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:01:17','2020-01-08 10:01:54'),(5948,'crk','54.175.37.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:33:34','2020-01-08 10:33:34'),(5949,'english','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 11:25:14','2020-01-08 11:25:14'),(5950,'mathematics','3.89.141.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 18:26:35','2020-01-08 18:26:35'),(5951,'geography','3.90.5.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 21:36:06','2020-01-08 21:36:06'),(5952,'economics','54.224.174.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 01:24:15','2020-01-09 01:24:15'),(5953,'geography','3.92.200.47',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 02:38:09','2020-01-09 02:46:31'),(5954,'english','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:01:22','2020-01-09 05:01:22'),(5955,'geography','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:35:09','2020-01-09 05:35:09'),(5956,'chemistry','114.119.158.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 08:20:35','2020-01-09 08:20:35'),(5957,'chemistry','197.210.84.180',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:25','2020-01-09 11:42:25'),(5958,'chemistry','66.249.93.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:27','2020-01-09 11:42:29'),(5959,'geography','3.81.50.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 15:48:20','2020-01-09 15:48:20'),(5960,'englishlit','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:10:05','2020-01-09 17:10:05'),(5961,'physics','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:29:29','2020-01-09 17:29:29'),(5962,'currentaffairs','54.91.26.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 20:05:46','2020-01-09 20:05:46'),(5963,'biology','54.90.217.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 23:39:42','2020-01-09 23:39:42'),(5964,'economics','3.88.190.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 04:30:45','2020-01-10 04:30:45'),(5965,'chemistry','159.138.155.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:39','2020-01-10 05:45:39'),(5966,'chemistry','159.138.148.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:42','2020-01-10 05:45:42'),(5967,'physics','3.90.20.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 07:05:46','2020-01-10 07:05:46'),(5968,'mathematics','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 09:57:03','2020-01-10 09:57:03'),(5969,'geography','54.242.86.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 14:16:02','2020-01-10 14:16:02'),(5970,'mathematics','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:33:50','2020-01-10 15:33:50'),(5971,'government','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:52:04','2020-01-10 15:52:04'),(5972,'mathematics','105.112.177.83',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 16:08:56','2020-01-10 16:08:57'),(5973,'mathematics','54.92.183.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 17:00:01','2020-01-10 17:00:01'),(5974,'accounting','54.175.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 19:11:24','2020-01-10 19:11:24'),(5975,'history','54.196.1.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 20:19:00','2020-01-10 20:19:00'),(5976,'insurance','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:04:48','2020-01-11 00:04:48'),(5977,'englishlit','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:23:07','2020-01-11 00:23:07'),(5978,'chemistry','157.55.39.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 07:47:08','2020-01-11 07:47:08'),(5979,'geography','3.85.229.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 08:19:26','2020-01-11 08:19:26'),(5980,'currentaffairs','54.210.29.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 09:17:59','2020-01-11 09:17:59'),(5981,'chemistry','129.205.112.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:01:54','2020-01-11 10:01:54'),(5982,'chemistry','114.119.163.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:12:45','2020-01-11 10:12:45'),(5983,'biology','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:49:13','2020-01-11 10:49:13'),(5984,'english','41.190.3.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:50:45','2020-01-11 10:53:17'),(5985,'government','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:03','2020-01-11 10:57:03'),(5986,'currentaffairs','3.81.114.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:29','2020-01-11 10:57:29'),(5987,'accounting','34.224.97.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 20:14:24','2020-01-11 20:14:24'),(5988,'history','34.228.161.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 03:43:41','2020-01-12 03:43:41'),(5989,'chemistry','54.36.150.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 07:38:14','2020-01-12 07:38:17'),(5990,'chemistry','66.249.66.159',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:18:04','2020-01-12 20:11:39'),(5991,'chemistry','207.46.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:37:09','2020-01-12 16:37:09'),(5992,'chemistry','41.206.30.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 11:30:26','2020-01-13 11:30:26'),(5993,'chemistry','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:08','2020-01-13 17:08:08'),(5994,'biology','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:51','2020-01-13 17:08:51'),(5995,'biology','3.95.28.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:38:02','2020-01-13 17:38:02'),(5996,'chemistry','105.112.21.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:40:01','2020-01-13 17:42:28'),(5997,'history','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 19:43:41','2020-01-13 19:43:41'),(5998,'insurance','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:27','2020-01-13 20:05:27'),(5999,'economics','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:30','2020-01-13 20:05:30'),(6000,'mathematics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6001,'commerce','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6002,'biology','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6003,'government','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6004,'economics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6005,'irk','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6006,'insurance','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6007,'english','18.209.172.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:02:39','2020-01-13 22:02:39'),(6008,'economics','3.83.111.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:58:30','2020-01-13 22:58:30'),(6009,'history','54.159.7.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 01:49:56','2020-01-14 01:49:56'),(6010,'accounting','18.215.161.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 03:52:50','2020-01-14 03:52:50'),(6011,'mathematics','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:35:01','2020-01-14 04:35:01'),(6012,'chemistry','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:56:46','2020-01-14 04:56:46'),(6013,'chemistry','105.112.106.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 06:53:23','2020-01-14 06:53:23'),(6014,'irk','34.237.245.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 10:17:26','2020-01-14 10:17:26'),(6015,'physics','197.210.64.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 12:36:48','2020-01-14 12:36:48'),(6016,'chemistry','162.238.118.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:13:49','2020-01-14 13:13:49'),(6017,'crk','54.145.57.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:25:40','2020-01-14 13:25:40'),(6018,'mathematics','52.91.218.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:29:53','2020-01-14 14:29:56'),(6019,'biology','52.91.218.226',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:31:04','2020-01-14 14:31:07'),(6020,'physics','197.210.226.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 16:50:50','2020-01-14 16:50:50'),(6021,'commerce','54.152.183.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 17:45:43','2020-01-14 17:45:43'),(6022,'chemistry','197.211.58.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 19:02:46','2020-01-14 19:02:46'),(6023,'accounting','18.206.115.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:06:49','2020-01-14 20:06:49'),(6024,'physics','197.210.227.105',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:18:08','2020-01-14 21:20:01'),(6025,'chemistry','105.112.112.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:27:30','2020-01-14 20:27:30'),(6026,'physics','197.210.227.176',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:14:48','2020-01-14 21:18:53'),(6027,'physics','197.210.226.126',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:19:38','2020-01-14 21:19:39'),(6028,'biology','66.249.66.128',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 22:53:39','2020-01-14 22:53:41'),(6029,'economics','34.229.47.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 01:05:22','2020-01-15 01:05:22'),(6030,'chemistry','18.212.26.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 02:18:02','2020-01-15 02:18:02'),(6031,'chemistry','54.208.21.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 05:24:27','2020-01-15 05:24:27'),(6032,'chemistry','159.138.152.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:16','2020-01-15 07:37:16'),(6033,'chemistry','159.138.157.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:19','2020-01-15 07:37:19'),(6034,'government','100.26.203.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:42:28','2020-01-15 08:42:28'),(6035,'chemistry','197.210.29.194',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:53:58','2020-01-15 08:54:11'),(6036,'physics','34.236.147.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 09:37:53','2020-01-15 09:37:56'),(6037,'economics','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 12:29:24','2020-01-15 12:29:24'),(6038,'insurance','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 14:56:31','2020-01-15 14:56:31'),(6039,'economics','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:09:36','2020-01-15 15:09:36'),(6040,'crk','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:19:41','2020-01-15 15:19:41'),(6041,'chemistry','197.210.45.172',92,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:26:03','2020-01-15 15:31:10'),(6042,'commerce','18.209.5.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 17:07:51','2020-01-15 17:07:51'),(6043,'chemistry','197.211.58.205',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 20:53:18','2020-01-15 20:53:44'),(6044,'chemistry','197.211.58.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:03','2020-01-15 21:02:03'),(6045,'englishlit','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:38','2020-01-15 21:02:38'),(6046,'accounting','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:11:49','2020-01-15 21:11:49'),(6047,'chemistry','76.227.27.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:26:06','2020-01-15 21:35:01'),(6048,'english','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:19:54','2020-01-15 22:19:54'),(6049,'crk','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:34:26','2020-01-15 22:34:26'),(6050,'chemistry','159.138.158.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:24','2020-01-16 03:41:24'),(6051,'chemistry','159.138.154.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:27','2020-01-16 03:41:27'),(6052,'chemistry','37.150.17.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 09:03:33','2020-01-16 09:03:33'),(6053,'english','54.226.244.165',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 10:17:00','2020-01-16 10:17:03'),(6054,'insurance','34.229.6.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 12:22:59','2020-01-16 12:22:59'),(6055,'englishlit','100.26.51.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 14:37:15','2020-01-16 14:37:15'),(6056,'accounting','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:45:59','2020-01-16 15:45:59'),(6057,'physics','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:48:23','2020-01-16 15:48:23'),(6058,'english','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:15:39','2020-01-16 18:15:39'),(6059,'currentaffairs','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:19:03','2020-01-16 18:19:03'),(6060,'chemistry','18.205.239.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 19:22:43','2020-01-16 19:22:43'),(6061,'crk','54.209.182.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 20:55:34','2020-01-16 20:55:34'),(6062,'crk','52.87.197.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 21:40:29','2020-01-16 21:40:29'),(6063,'englishlit','54.90.245.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 22:42:09','2020-01-16 22:42:09'),(6064,'englishlit','52.91.61.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 00:58:04','2020-01-17 00:58:04'),(6065,'chemistry','174.129.61.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 03:28:11','2020-01-17 03:28:11'),(6066,'government','3.85.188.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 04:20:24','2020-01-17 04:20:24'),(6067,'chemistry','159.138.155.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:19','2020-01-17 05:35:19'),(6068,'chemistry','159.138.154.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:20','2020-02-24 05:01:25'),(6069,'crk','18.234.143.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 07:39:30','2020-01-17 07:39:30'),(6070,'chemistry','159.138.150.55',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 10:29:28','2020-01-17 10:29:29'),(6071,'chemistry','159.138.153.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:18','2020-01-17 13:26:18'),(6072,'chemistry','159.138.156.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:21','2020-01-17 13:26:21'),(6073,'accounting','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:31:59','2020-01-17 18:31:59'),(6074,'english','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:32:57','2020-01-17 18:32:57'),(6075,'history','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 23:43:23','2020-01-17 23:43:23'),(6076,'chemistry','84.241.193.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 02:10:58','2020-01-18 02:10:58'),(6077,'economics','54.147.112.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:09:08','2020-01-18 04:09:08'),(6078,'chemistry','159.138.128.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:53','2020-01-18 04:22:53'),(6079,'chemistry','159.138.150.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:55','2020-01-18 04:22:55'),(6080,'accounting','52.207.178.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:28:30','2020-01-18 11:06:20'),(6081,'history','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:30:16','2020-01-18 10:30:16'),(6082,'englishlit','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:36:43','2020-01-18 10:36:43'),(6083,'chemistry','197.210.65.53',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-18 21:33:39','2020-04-21 11:21:31'),(6084,'chemistry','197.210.65.246',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:05','2020-01-18 21:51:06'),(6085,'chemistry','197.210.65.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:24','2020-01-18 21:51:24'),(6086,'chemistry','197.210.65.33',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:40','2020-01-18 21:51:44'),(6087,'chemistry','197.210.64.160',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:52:12','2020-01-18 21:52:15'),(6088,'physics','197.210.47.29',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:54:25','2020-01-18 21:54:28'),(6089,'mathematics','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:39:47','2020-01-19 11:39:47'),(6090,'government','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:50:10','2020-01-19 11:50:10'),(6091,'chemistry','5.186.127.79',196,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:25:22','2020-03-07 23:25:18'),(6092,'englishlit','5.186.127.79',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:58:08','2020-02-03 17:34:24'),(6093,'commerce','3.82.117.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 14:53:51','2020-01-19 14:53:51'),(6094,'english','54.225.22.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 18:38:53','2020-01-19 18:38:53'),(6095,'chemistry','41.190.31.147',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 22:23:33','2020-01-19 22:23:33'),(6096,'geography','18.232.68.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 05:23:53','2020-01-20 05:23:53'),(6097,'geography','54.159.45.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:03:51','2020-01-20 06:03:51'),(6098,'geography','100.27.24.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:45:32','2020-01-20 06:45:32'),(6099,'physics','54.227.113.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 13:15:49','2020-01-20 13:15:49'),(6100,'geography','34.203.192.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:05:57','2020-01-20 14:05:57'),(6101,'english','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:10:11','2020-01-20 14:10:14'),(6102,'accounting','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:13:50','2020-01-20 14:13:53'),(6103,'biology','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:17:51','2020-01-20 14:17:54'),(6104,'chemistry','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:21:26','2020-01-20 14:21:29'),(6105,'commerce','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:31:36','2020-01-20 14:31:39'),(6106,'geography','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:36:02','2020-01-20 14:36:05'),(6107,'history','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:38:08','2020-01-20 14:38:11'),(6108,'physics','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:44:17','2020-01-20 14:44:20'),(6109,'chemistry','34.203.190.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:47:27','2020-01-20 14:47:27'),(6110,'englishlit','18.208.215.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 15:44:11','2020-01-20 15:44:11'),(6111,'biology','54.163.24.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 20:05:22','2020-01-20 20:05:22'),(6112,'currentaffairs','54.224.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 21:53:39','2020-01-20 21:53:39'),(6113,'biology','54.224.78.213',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 22:15:45','2020-01-20 22:15:47'),(6114,'englishlit','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:06:37','2020-01-21 04:06:37'),(6115,'physics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:24:39','2020-01-21 04:24:39'),(6116,'economics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:38:24','2020-01-21 04:38:24'),(6117,'mathematics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:05:21','2020-01-21 05:05:21'),(6118,'commerce','34.207.229.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:42:09','2020-01-21 05:42:09'),(6119,'mathematics','3.80.112.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 08:48:34','2020-01-21 08:48:34'),(6120,'chemistry','159.138.156.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:02','2020-01-21 09:08:02'),(6121,'chemistry','159.138.155.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:05','2020-01-21 09:08:05'),(6122,'insurance','34.201.67.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:58:44','2020-01-21 09:58:44'),(6123,'chemistry','34.201.67.206',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 10:24:35','2020-01-21 10:24:39'),(6124,'crk','3.84.124.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 11:25:57','2020-01-21 11:25:57'),(6125,'english','54.82.117.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 12:39:35','2020-01-21 12:39:38'),(6126,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6127,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6128,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6129,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6130,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6131,'chemistry','197.210.65.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:51:28','2020-01-21 16:51:28'),(6132,'geography','34.235.141.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 17:46:43','2020-01-21 17:46:43'),(6133,'mathematics','54.221.179.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 23:42:47','2020-01-21 23:42:47'),(6134,'accounting','54.88.104.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 05:24:34','2020-01-22 05:24:34'),(6135,'chemistry','52.91.210.222',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:50'),(6136,'chemistry','52.91.210.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:17'),(6137,'english','197.210.45.42',52,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:07:55','2020-01-22 10:20:09'),(6138,'chemistry','197.210.45.42',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:16:58','2020-01-22 10:17:01'),(6139,'english','197.210.84.40',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 11:05:36','2020-01-22 11:07:18'),(6140,'accounting','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:06:53','2020-01-22 14:06:56'),(6141,'biology','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:16:26','2020-01-22 14:16:29'),(6142,'chemistry','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:17:57','2020-01-22 14:18:00'),(6143,'commerce','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:24:26','2020-01-22 14:24:28'),(6144,'english','3.85.50.174',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:28:45','2020-01-22 14:31:27'),(6145,'geography','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:44:20','2020-01-22 14:44:23'),(6146,'government','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:49:57','2020-01-22 14:50:00'),(6147,'history','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:52:09','2020-01-22 14:52:12'),(6148,'physics','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:57:23','2020-01-22 14:57:26'),(6149,'mathematics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:06:42','2020-01-22 19:06:42'),(6150,'physics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:10:39','2020-01-22 19:10:40'),(6151,'physics','105.112.178.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 01:21:24','2020-01-23 01:21:24'),(6152,'history','54.242.9.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 07:11:29','2020-01-23 07:11:29'),(6153,'accounting','3.95.2.128',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:02:04','2020-01-23 12:49:19'),(6154,'biology','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:11:55','2020-01-23 12:54:42'),(6155,'chemistry','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:16:26','2020-01-23 12:57:07'),(6156,'commerce','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:25:56','2020-01-23 13:00:45'),(6157,'geography','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:34:50','2020-01-23 13:07:52'),(6158,'government','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:42:08','2020-01-23 13:08:44'),(6159,'english','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:43:06','2020-01-23 13:02:16'),(6160,'history','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:46:06','2020-01-23 13:11:05'),(6161,'physics','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:53:50','2020-01-23 13:18:26'),(6162,'chemistry','78.67.8.249',190,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 11:18:52','2020-05-28 07:54:26'),(6163,'biology','54.226.136.136',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 11:47:50','2020-01-23 11:47:50'),(6164,'insurance','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:24:44','2020-01-23 12:24:44'),(6165,'economics','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:33:40','2020-01-23 12:33:40'),(6166,'chemistry','3.83.32.171',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 14:11:16','2020-01-23 14:46:53'),(6167,'history','54.80.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 15:21:18','2020-01-23 15:21:18'),(6168,'accounting','54.227.208.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 19:10:55','2020-01-23 19:10:55'),(6169,'chemistry','114.119.129.17',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:30:35','2020-01-23 22:30:35'),(6170,'chemistry','54.145.181.222',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:34:50','2020-01-23 22:34:50'),(6171,'english','66.249.66.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:23:18','2020-01-24 01:23:18'),(6172,'chemistry','159.138.153.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:26','2020-01-24 01:38:26'),(6173,'chemistry','159.138.155.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:28','2020-01-24 01:38:28'),(6174,'irk','54.221.33.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 02:21:24','2020-01-24 02:21:24'),(6175,'crk','3.92.163.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 07:56:53','2020-01-24 07:56:53'),(6176,'chemistry','159.138.155.158',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:33:54','2020-01-24 09:33:54'),(6177,'chemistry','159.138.155.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:02','2020-01-24 09:34:02'),(6178,'chemistry','159.138.159.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:05','2020-01-24 09:34:05'),(6179,'chemistry','159.138.158.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:55','2020-01-24 11:45:55'),(6180,'chemistry','159.138.152.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:58','2020-01-24 11:45:58'),(6181,'commerce','54.234.15.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 12:20:42','2020-01-24 12:20:42'),(6182,'crk','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:21:36','2020-01-24 16:21:36'),(6183,'accounting','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:29:29','2020-01-24 16:29:29'),(6184,'english','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:48','2020-01-24 18:50:48'),(6185,'mathematics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6186,'commerce','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6187,'chemistry','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6188,'geography','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6189,'economics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6190,'insurance','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6191,'chemistry','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:38:45','2020-01-24 19:38:47'),(6192,'chemistry','159.138.155.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:17','2020-01-24 19:48:17'),(6193,'chemistry','159.138.157.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:20','2020-01-24 19:48:20'),(6194,'economics','54.234.219.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 21:16:38','2020-01-24 21:16:38'),(6195,'chemistry','54.82.250.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 00:25:04','2020-01-25 00:25:04'),(6196,'geography','52.91.20.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 02:53:58','2020-01-25 02:53:58'),(6197,'government','52.205.208.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 05:54:14','2020-01-25 05:54:14'),(6198,'government','3.82.98.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 06:50:25','2020-01-25 06:50:25'),(6199,'economics','18.232.150.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 07:40:32','2020-01-25 07:40:32'),(6200,'chemistry','66.249.64.112',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:00:41','2020-01-25 10:06:05'),(6201,'chemistry','66.249.64.114',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:11:26','2020-01-25 10:25:38'),(6202,'insurance','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:06:32','2020-01-25 11:06:32'),(6203,'crk','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:16:24','2020-01-25 11:16:24'),(6204,'mathematics','105.112.177.119',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 12:21:44','2020-01-25 12:24:10'),(6205,'economics','184.72.97.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:05:36','2020-01-25 15:05:36'),(6206,'english','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6207,'economics','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6208,'englishlit','54.172.2.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 16:46:58','2020-01-25 16:46:58'),(6209,'english','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 18:56:16','2020-01-25 18:56:16'),(6210,'commerce','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 19:01:52','2020-01-25 19:01:52'),(6211,'crk','54.227.219.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:07:54','2020-01-25 23:07:54'),(6212,'crk','34.227.56.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:54:31','2020-01-25 23:54:31'),(6213,'geography','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 09:48:50','2020-01-26 09:48:50'),(6214,'physics','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:42','2020-01-26 13:25:42'),(6215,'insurance','54.163.34.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:44','2020-01-26 13:53:10'),(6216,'englishlit','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 14:26:21','2020-01-26 14:26:21'),(6217,'chemistry','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 15:31:14','2020-01-26 15:31:14'),(6218,'currentaffairs','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:40:36','2020-01-26 16:40:36'),(6219,'english','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:56:27','2020-01-26 16:56:27'),(6220,'mathematics','54.234.126.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 17:35:46','2020-01-26 17:35:46'),(6221,'englishlit','3.80.203.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 18:54:41','2020-01-26 18:54:41'),(6222,'mathematics','3.92.208.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 19:40:52','2020-01-26 19:40:52'),(6223,'englishlit','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:07:23','2020-01-26 22:07:23'),(6224,'commerce','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:27:30','2020-01-26 22:27:30'),(6225,'crk','3.81.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 23:10:54','2020-01-26 23:10:54'),(6226,'economics','54.237.215.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 00:37:31','2020-01-27 00:37:31'),(6227,'government','100.24.9.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 02:34:55','2020-01-27 02:34:55'),(6228,'mathematics','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6229,'biology','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6230,'chemistry','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6231,'englishlit','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6232,'government','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6233,'civiledu','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6234,'currentaffairs','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:27','2020-01-27 04:08:27'),(6235,'english','3.89.150.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 06:06:57','2020-01-27 06:06:57'),(6236,'chemistry','114.119.167.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 07:14:52','2020-01-27 07:14:52'),(6237,'english','54.167.78.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 08:12:16','2020-01-27 08:12:16'),(6238,'biology','3.94.145.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:10:32','2020-01-27 12:10:32'),(6239,'crk','41.184.176.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:18:46','2020-01-27 12:18:46'),(6240,'english','52.205.236.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 14:56:14','2020-01-27 14:56:14'),(6241,'chemistry','105.112.38.62',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 15:47:21','2020-01-27 15:51:48'),(6242,'insurance','34.239.130.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 16:38:00','2020-01-27 16:38:00'),(6243,'chemistry','114.119.133.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 19:10:16','2020-01-27 19:10:16'),(6244,'chemistry','3.92.236.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 20:56:15','2020-01-27 20:56:15'),(6245,'chemistry','35.173.249.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 22:22:57','2020-01-27 22:22:57'),(6246,'chemistry','114.119.163.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 23:25:06','2020-01-27 23:25:06'),(6247,'commerce','3.95.235.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 00:29:02','2020-01-28 00:29:02'),(6248,'chemistry','151.80.39.47',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 01:56:45','2020-04-02 23:36:26'),(6249,'chemistry','114.119.131.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 02:19:39','2020-01-28 02:19:39'),(6250,'chemistry','114.119.146.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 03:40:30','2020-01-28 03:40:30'),(6251,'chemistry','159.138.158.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:23','2020-01-28 06:57:23'),(6252,'chemistry','159.138.151.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:26','2020-01-28 06:57:26'),(6253,'mathematics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6254,'accounting','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6255,'physics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6256,'government','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6257,'crk','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:04'),(6258,'insurance','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6259,'currentaffairs','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6260,'geography','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:08:11','2020-01-28 11:08:11'),(6261,'englishlit','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:17:47','2020-01-28 11:17:47'),(6262,'accounting','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:22:33','2020-01-28 11:22:33'),(6263,'chemistry','157.55.39.83',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:38:03','2020-01-28 11:38:03'),(6264,'economics','35.171.182.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:01:23','2020-01-28 14:01:23'),(6265,'economics','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:18','2020-01-28 14:44:18'),(6266,'english','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:19','2020-01-28 14:44:19'),(6267,'physics','3.94.103.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 18:25:15','2020-01-28 18:25:15'),(6268,'commerce','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:38','2020-01-29 02:20:38'),(6269,'accounting','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6270,'physics','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6271,'government','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6272,'crk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6273,'irk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6274,'currentaffairs','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6275,'english','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:42','2020-01-29 02:55:43'),(6276,'mathematics','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6277,'accounting','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6278,'government','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6279,'insurance','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6280,'currentaffairs','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6281,'history','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:44'),(6282,'chemistry','159.138.159.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:08:05','2020-01-29 06:08:05'),(6283,'mathematics','3.83.117.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:37:49','2020-01-29 06:37:49'),(6284,'geography','18.232.162.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 08:36:32','2020-01-29 08:36:32'),(6285,'insurance','52.90.181.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 12:12:29','2020-01-29 12:12:29'),(6286,'chemistry','18.234.111.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 14:21:47','2020-01-29 14:21:47'),(6287,'commerce','54.87.20.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 15:21:30','2020-01-29 15:21:30'),(6288,'mathematics','52.90.10.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 16:29:01','2020-01-29 16:29:01'),(6289,'chemistry','207.46.13.92',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:25:12','2020-01-29 18:25:12'),(6290,'mathematics','3.81.141.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:38:00','2020-01-29 18:38:00'),(6291,'government','41.190.3.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:13:05','2020-01-29 19:13:06'),(6292,'chemistry','207.46.13.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:32:15','2020-01-29 19:32:15'),(6293,'commerce','3.88.140.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 21:29:47','2020-01-29 21:29:47'),(6294,'biology','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:49:14','2020-01-30 01:49:14'),(6295,'english','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:50:59','2020-01-30 01:50:59'),(6296,'mathematics','54.91.188.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 03:44:50','2020-01-30 03:44:50'),(6297,'english','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:22:30','2020-01-30 05:22:30'),(6298,'government','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:24:43','2020-01-30 05:24:43'),(6299,'englishlit','3.80.30.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 06:21:01','2020-01-30 06:21:01'),(6300,'economics','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:13:00','2020-01-30 08:13:00'),(6301,'crk','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:15:11','2020-01-30 08:15:11'),(6302,'geography','18.207.190.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 10:50:25','2020-01-30 10:50:25'),(6303,'english','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:28:50','2020-01-30 13:28:50'),(6304,'civiledu','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:59:42','2020-01-30 13:59:42'),(6305,'geography','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 14:27:14','2020-01-30 14:27:14'),(6306,'insurance','34.237.245.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:05:29','2020-01-30 16:05:29'),(6307,'chemistry','46.229.161.131',212,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-04-19 15:14:37'),(6308,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6309,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6310,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6311,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6312,'physics','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:01:23','2020-01-30 20:01:23'),(6313,'geography','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:23:45','2020-01-30 20:23:45'),(6314,'chemistry','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 21:51:40','2020-01-30 21:51:40'),(6315,'englishlit','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 22:08:33','2020-01-30 22:08:33'),(6316,'currentaffairs','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:21:19','2020-01-31 01:21:19'),(6317,'government','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:38:18','2020-01-31 01:38:18'),(6318,'economics','54.89.156.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:05:07','2020-01-31 03:05:07'),(6319,'chemistry','207.46.13.209',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:23:54','2020-01-31 12:04:42'),(6320,'english','105.112.182.82',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 06:30:35','2020-01-31 06:32:01'),(6321,'physics','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:12:51','2020-01-31 07:12:51'),(6322,'english','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:23:23','2020-01-31 07:23:23'),(6323,'economics','54.210.244.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:58:52','2020-01-31 07:58:52'),(6324,'englishlit','3.86.29.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 10:32:00','2020-01-31 10:32:00'),(6325,'chemistry','54.237.205.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 12:11:56','2020-01-31 12:11:56'),(6326,'mathematics','52.86.208.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 15:08:11','2020-01-31 15:08:11'),(6327,'accounting','3.86.202.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 17:15:43','2020-01-31 17:15:43'),(6328,'insurance','3.91.133.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 18:38:12','2020-01-31 18:38:12'),(6329,'mathematics','3.82.155.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 22:46:02','2020-01-31 22:46:02'),(6330,'insurance','18.234.65.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 23:57:02','2020-01-31 23:57:02'),(6331,'commerce','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:38:11','2020-02-01 00:38:11'),(6332,'english','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:08','2020-02-01 00:43:08'),(6333,'physics','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:27','2020-02-01 00:43:27'),(6334,'english','105.112.59.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:48:46','2020-02-01 04:48:46'),(6335,'englishlit','54.209.65.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:57:37','2020-02-01 04:57:37'),(6336,'geography','52.91.111.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 06:32:15','2020-02-01 06:32:15'),(6337,'english','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6338,'mathematics','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6339,'biology','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6340,'chemistry','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6341,'englishlit','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6342,'insurance','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6343,'history','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6344,'economics','54.87.59.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:18:15','2020-02-01 12:18:15'),(6345,'insurance','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:55:22','2020-02-01 12:55:22'),(6346,'civiledu','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 13:00:35','2020-02-01 13:00:35'),(6347,'accounting','34.203.212.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 14:38:27','2020-02-01 14:38:27'),(6348,'biology','34.228.168.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 01:57:16','2020-02-02 01:57:16'),(6349,'english','54.227.175.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 03:18:24','2020-02-02 03:18:24'),(6350,'government','52.23.185.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 05:33:56','2020-02-02 05:33:56'),(6351,'crk','52.23.225.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 08:26:03','2020-02-02 08:26:03'),(6352,'history','54.152.74.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 10:18:23','2020-02-02 10:18:23'),(6353,'civiledu','54.175.193.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 14:11:21','2020-02-02 14:11:21'),(6354,'chemistry','34.229.20.78',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:23'),(6355,'chemistry','34.229.20.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:22'),(6356,'chemistry','105.112.178.165',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 19:12:14','2020-02-02 19:31:58'),(6357,'biology','18.212.175.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 23:50:11','2020-02-02 23:50:11'),(6358,'currentaffairs','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 00:42:03','2020-02-03 00:42:03'),(6359,'history','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:15','2020-02-03 01:17:15'),(6360,'government','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:42','2020-02-03 01:17:42'),(6361,'economics','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:35:23','2020-02-03 01:35:23'),(6362,'economics','52.204.49.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 02:42:06','2020-02-03 02:42:06'),(6363,'economics','3.90.112.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 04:45:10','2020-02-03 04:45:10'),(6364,'english','34.228.141.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 06:53:18','2020-02-03 06:53:18'),(6365,'accounting','54.175.163.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 07:43:49','2020-02-03 07:43:49'),(6366,'chemistry','105.112.75.189',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:18:05','2020-02-03 09:50:11'),(6367,'biology','66.249.88.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:41:16','2020-02-03 09:41:18'),(6368,'chemistry','105.112.55.63',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:08:19','2020-02-03 10:31:05'),(6369,'chemistry','197.210.71.2',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:30:49','2020-02-03 10:30:59'),(6370,'mathematics','5.186.127.79',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:01:59','2020-03-08 01:56:09'),(6371,'english','5.186.127.79',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:02:29','2020-02-03 19:50:47'),(6372,'history','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:40:14','2020-02-03 19:40:14'),(6373,'chemistry','54.227.12.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 21:50:10','2020-02-03 21:50:10'),(6374,'crk','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 01:59:00','2020-02-04 01:59:00'),(6375,'commerce','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 02:10:16','2020-02-04 02:10:16'),(6376,'chemistry','105.112.178.251',234,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 03:42:45','2020-02-04 05:35:31'),(6377,'crk','54.174.29.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 08:39:40','2020-02-04 08:39:40'),(6378,'chemistry','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:58:55','2020-02-04 09:58:55'),(6379,'irk','54.145.39.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:59:39','2020-02-04 09:59:39'),(6380,'mathematics','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:00:08','2020-02-04 10:00:08'),(6381,'economics','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:48:18','2020-02-04 10:48:18'),(6382,'accounting','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:54:29','2020-02-04 10:54:29'),(6383,'civiledu','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 11:29:41','2020-02-04 11:29:41'),(6384,'economics','54.162.191.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:01:04','2020-02-04 12:01:04'),(6385,'chemistry','159.138.155.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:43:25','2020-02-04 12:43:25'),(6386,'crk','3.83.164.35',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:13:32','2020-02-04 14:20:46'),(6387,'irk','3.83.164.35',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:18:49','2020-02-04 14:24:05'),(6388,'english','3.83.164.35',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:25:01','2020-02-04 14:28:15'),(6389,'mathematics','3.83.164.35',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 14:29:22','2020-02-04 14:33:35'),(6390,'civiledu','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:34:31','2020-02-04 14:39:09'),(6391,'insurance','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:40:01','2020-02-04 14:43:43'),(6392,'chemistry','129.56.111.10',6,'','NG','','Lagos',NULL,NULL,'','','2020-02-04 14:41:58','2020-02-05 06:14:39'),(6393,'economics','129.56.111.10',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:42:39','2020-02-04 14:42:39'),(6394,'currentaffairs','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:44:50','2020-02-04 14:48:55'),(6395,'government','18.207.229.112',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 15:33:33','2020-02-04 15:33:33'),(6396,'mathematics','190.120.217.202',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 16:44:57','2020-02-04 16:44:57'),(6397,'government','54.81.18.48',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 17:27:35','2020-02-04 17:46:16'),(6398,'crk','54.81.18.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 17:46:16','2020-02-04 17:46:16'),(6399,'chemistry','197.211.61.135',16,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 19:19:08','2020-02-04 19:24:05'),(6400,'chemistry','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:15:38','2020-02-04 20:15:38'),(6401,'geography','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:28:22','2020-02-04 20:28:22'),(6402,'government','34.233.134.3',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 21:13:57','2020-02-04 21:13:57'),(6403,'commerce','52.91.40.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 22:24:13','2020-02-04 22:24:13'),(6404,'economics','34.228.184.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 00:11:53','2020-02-05 00:11:53'),(6405,'economics','18.215.150.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 03:12:14','2020-02-05 03:12:14'),(6406,'insurance','54.237.226.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 04:33:22','2020-02-05 04:33:22'),(6407,'chemistry','207.46.13.202',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 05:48:51','2020-02-05 07:58:31'),(6408,'chemistry','206.189.180.4',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:11:56','2020-02-05 06:12:29'),(6409,'physics','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:13:27','2020-02-05 06:13:27'),(6410,'biology','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:14:43','2020-02-05 06:14:43'),(6411,'chemistry','159.138.152.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 09:26:20','2020-02-05 09:26:20'),(6412,'englishlit','34.228.66.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 10:25:53','2020-02-05 10:25:53'),(6413,'chemistry','207.46.13.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:16:47','2020-02-05 12:16:47'),(6414,'economics','52.87.240.0',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:48:30','2020-02-05 12:51:43'),(6415,'englishlit','52.87.240.0',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:52:17','2020-02-05 12:55:42'),(6416,'chemistry','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:42:37','2020-02-05 13:42:40'),(6417,'biology','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:43:23','2020-02-05 13:43:27'),(6418,'chemistry','159.138.156.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:18','2020-02-05 14:20:18'),(6419,'chemistry','159.138.156.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:20','2020-02-05 14:20:20'),(6420,'english','18.233.225.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:35:35','2020-02-05 14:35:35'),(6421,'chemistry','159.138.158.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:22','2020-02-05 16:03:22'),(6422,'chemistry','159.138.158.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:24','2020-02-05 16:03:24'),(6423,'chemistry','149.28.23.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:07:00','2020-02-05 16:07:01'),(6424,'chemistry','197.210.45.223',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:12:02','2020-02-05 19:12:03'),(6425,'crk','54.147.234.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:55:34','2020-02-05 19:55:34'),(6426,'crk','34.227.152.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 00:47:24','2020-02-06 00:47:24'),(6427,'insurance','54.198.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:07:31','2020-02-06 05:07:31'),(6428,'mathematics','54.198.78.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:13:14','2020-02-06 05:39:35'),(6429,'chemistry','105.112.178.38',113,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:24:23','2020-02-06 08:18:18'),(6430,'chemistry','197.210.52.78',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:45:06','2020-02-06 09:09:46'),(6431,'chemistry','197.210.53.153',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:52:38','2020-02-06 09:16:07'),(6432,'chemistry','197.210.52.148',167,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:56:55','2020-02-06 09:16:55'),(6433,'chemistry','197.210.53.241',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:57:58','2020-02-06 09:03:21'),(6434,'english','197.210.53.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:03','2020-02-06 09:17:03'),(6435,'english','197.210.53.153',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:17','2020-02-06 09:17:20'),(6436,'accounting','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:19:37','2020-02-06 09:19:40'),(6437,'biology','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:20','2020-02-06 09:20:23'),(6438,'physics','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:51','2020-02-06 09:20:54'),(6439,'english','102.67.6.4',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:35','2020-02-06 09:21:38'),(6440,'englishlit','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:36','2020-02-06 09:21:39'),(6441,'mathematics','102.67.6.4',90,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:48','2020-02-06 09:22:30'),(6442,'government','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:53','2020-02-06 09:21:56'),(6443,'crk','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:07','2020-02-06 09:22:11'),(6444,'geography','197.210.52.46',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:18','2020-02-06 09:22:21'),(6445,'economics','197.210.52.148',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:28','2020-02-06 09:22:31'),(6446,'irk','197.210.52.46',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:48','2020-02-06 09:22:50'),(6447,'civiledu','197.210.52.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:57','2020-02-06 09:23:00'),(6448,'insurance','197.210.53.228',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:13','2020-02-06 09:24:16'),(6449,'biology','102.67.6.4',45,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:44','2020-02-06 09:25:01'),(6450,'history','197.210.53.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:25:32','2020-02-06 09:25:35'),(6451,'chemistry','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:05:57','2020-02-06 11:05:57'),(6452,'physics','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:34:52','2020-02-06 11:34:52'),(6453,'chemistry','129.18.170.187',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 12:20:37','2020-02-06 12:20:49'),(6454,'english','41.184.164.93',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 14:04:50','2020-02-06 14:04:53'),(6455,'englishlit','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:10:15','2020-02-06 14:10:15'),(6456,'crk','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:31:21','2020-02-06 14:31:21'),(6457,'chemistry','197.211.61.128',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:45:01','2020-02-06 14:45:39'),(6458,'englishlit','54.242.25.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 15:06:36','2020-02-06 15:06:36'),(6459,'currentaffairs','3.84.248.139',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 16:33:00','2020-02-06 16:33:00'),(6460,'chemistry','159.138.153.33',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 19:22:39','2020-02-06 19:22:42'),(6461,'crk','3.88.183.247',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 21:12:07','2020-02-06 21:12:07'),(6462,'englishlit','18.232.114.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 22:46:55','2020-02-06 22:46:55'),(6463,'economics','54.227.10.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 01:41:04','2020-02-07 01:41:04'),(6464,'english','3.86.106.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 02:18:26','2020-02-07 02:18:26'),(6465,'biology','35.174.9.116',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:28:22','2020-02-07 04:28:23'),(6466,'government','35.174.9.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:47:35','2020-02-07 04:47:35'),(6467,'crk','54.157.234.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 09:15:39','2020-02-07 09:15:39'),(6468,'mathematics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:24','2020-02-07 10:02:27'),(6469,'chemistry','41.184.164.93',46,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:52','2020-02-13 12:05:06'),(6470,'physics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:03:10','2020-02-07 10:03:13'),(6471,'chemistry','34.207.81.136',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 12:31:01','2020-02-07 12:31:01'),(6472,'chemistry','159.138.148.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:48','2020-02-07 13:54:48'),(6473,'chemistry','159.138.151.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:51','2020-02-07 13:54:51'),(6474,'chemistry','159.138.156.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:39','2020-02-07 14:47:39'),(6475,'chemistry','159.138.152.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:40','2020-02-07 14:47:40'),(6476,'english','52.201.218.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 18:39:18','2020-02-07 18:39:18'),(6477,'chemistry','105.112.117.84',293,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:30:28','2020-02-07 20:00:57'),(6478,'english','105.112.117.84',104,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:48:33','2020-02-07 20:02:22'),(6479,'biology','3.87.229.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 20:58:03','2020-02-07 20:58:03'),(6480,'englishlit','54.226.235.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 05:22:08','2020-02-08 05:22:08'),(6481,'currentaffairs','18.212.207.50',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 12:56:59','2020-02-08 13:19:35'),(6482,'english','105.112.121.51',3687,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:00:54','2020-02-08 16:40:24'),(6483,'chemistry','105.112.121.51',247,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:17:20','2020-02-08 16:40:24'),(6484,'mathematics','105.112.121.51',280,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 14:55:34','2020-02-08 16:40:25'),(6485,'currentaffairs','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6486,'biology','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6487,'civiledu','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6488,'accounting','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6489,'history','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6490,'government','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6491,'crk','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6492,'geography','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6493,'physics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6494,'irk','105.112.121.51',180,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:28'),(6495,'commerce','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:51','2020-02-08 16:40:24'),(6496,'englishlit','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:24'),(6497,'economics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:23'),(6498,'civiledu','34.230.4.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 17:05:03','2020-02-08 17:05:03'),(6499,'englishlit','54.167.22.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 20:45:17','2020-02-08 20:45:17'),(6500,'english','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:52:30','2020-02-08 20:52:30'),(6501,'accounting','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:59:40','2020-02-08 20:59:40'),(6502,'chemistry','105.112.23.32',172,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:31:48','2020-02-09 02:17:39'),(6503,'commerce','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6504,'physics','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6505,'chemistry','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6506,'englishlit','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6507,'crk','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6508,'geography','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:19'),(6509,'history','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:19','2020-02-08 23:44:19'),(6510,'physics','66.249.83.192',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 06:54:16','2020-02-09 06:54:18'),(6511,'mathematics','105.112.38.128',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:07:48','2020-02-09 11:09:27'),(6512,'biology','105.112.38.128',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:10:56','2020-02-09 11:10:57'),(6513,'biology','105.112.57.10',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:16:17','2020-02-09 11:16:56'),(6514,'chemistry','105.112.176.118',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 13:28:05','2020-02-09 14:36:23'),(6515,'chemistry','105.112.38.60',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 21:58:06','2020-02-09 21:58:42'),(6516,'englishlit','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6517,'civiledu','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6518,'mathematics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6519,'physics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6520,'currentaffairs','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6521,'commerce','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6522,'government','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6523,'accounting','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6524,'english','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6525,'chemistry','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6526,'crk','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6527,'history','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6528,'economics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:45'),(6529,'irk','105.112.121.100',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6530,'biology','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6531,'geography','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6532,'mathematics','3.88.254.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 23:58:44','2020-02-09 23:58:44'),(6533,'commerce','54.234.42.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 04:53:06','2020-02-10 04:53:06'),(6534,'insurance','52.205.252.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 12:48:35','2020-02-10 12:48:35'),(6535,'biology','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:31:06','2020-02-10 13:33:56'),(6536,'geography','54.86.139.235',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:34:52','2020-02-10 13:40:06'),(6537,'government','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:38:55','2020-02-10 13:41:36'),(6538,'chemistry','159.138.159.131',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 14:59:24','2020-02-10 14:59:25'),(6539,'chemistry','66.102.8.239',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 19:24:51','2020-03-10 07:49:39'),(6540,'mathematics','54.198.180.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 23:23:53','2020-02-10 23:23:53'),(6541,'geography','34.228.215.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 03:09:40','2020-02-11 03:09:40'),(6542,'economics','54.86.162.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 06:23:36','2020-02-11 06:23:36'),(6543,'chemistry','159.138.128.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:43','2020-02-11 08:08:43'),(6544,'chemistry','159.138.157.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:44','2020-02-11 08:08:44'),(6545,'crk','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:19:44','2020-02-11 08:19:44'),(6546,'geography','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:28:36','2020-02-11 08:28:36'),(6547,'geography','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:07:20','2020-02-11 11:07:20'),(6548,'english','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:29:21','2020-02-11 11:29:21'),(6549,'physics','52.90.177.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 20:57:31','2020-02-11 20:57:31'),(6550,'chemistry','54.36.148.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 21:31:54','2020-02-11 21:31:55'),(6551,'englishlit','52.23.243.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 00:28:14','2020-02-12 00:28:14'),(6552,'mathematics','105.112.59.79',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 01:05:16','2020-02-12 01:05:16'),(6553,'currentaffairs','54.172.153.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 04:22:50','2020-02-12 04:22:50'),(6554,'biology','54.81.207.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 06:05:04','2020-02-12 06:05:04'),(6555,'geography','3.83.240.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 07:57:33','2020-02-12 07:57:33'),(6556,'chemistry','114.119.164.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 09:32:25','2020-02-12 09:32:25'),(6557,'chemistry','159.138.157.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:57','2020-02-12 12:35:57'),(6558,'chemistry','159.138.155.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:59','2020-02-12 12:35:59'),(6559,'mathematics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:18:10','2020-02-12 16:18:10'),(6560,'physics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:23:01','2020-02-12 16:23:01'),(6561,'chemistry','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:44:21','2020-02-12 16:44:21'),(6562,'biology','66.249.88.14',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 17:50:44','2020-02-15 20:12:28'),(6563,'geography','18.212.14.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 21:05:47','2020-02-12 21:05:47'),(6564,'government','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:08:36','2020-02-12 22:08:36'),(6565,'mathematics','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:15:14','2020-02-12 22:15:14'),(6566,'mathematics','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:42:26','2020-02-13 01:42:26'),(6567,'accounting','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:51:06','2020-02-13 01:51:06'),(6568,'history','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:03:04','2020-02-13 03:03:04'),(6569,'englishlit','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:13:21','2020-02-13 03:13:21'),(6570,'chemistry','54.36.150.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 06:05:15','2020-02-13 06:05:15'),(6571,'irk','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6572,'geography','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6573,'accounting','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6574,'currentaffairs','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6575,'english','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6576,'government','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6577,'mathematics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6578,'civiledu','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6579,'physics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6580,'crk','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6581,'biology','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6582,'commerce','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6583,'englishlit','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6584,'history','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6585,'chemistry','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6586,'economics','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:47:15','2020-02-13 09:50:43'),(6587,'chemistry','159.138.152.95',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 16:01:29','2020-02-13 16:01:33'),(6588,'geography','3.85.140.177',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-13 18:30:03','2020-02-13 18:30:03'),(6589,'chemistry','107.167.108.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 22:22:25','2020-02-13 22:22:25'),(6590,'accounting','18.206.218.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 03:40:45','2020-02-14 03:40:45'),(6591,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6592,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6593,'chemistry','159.138.153.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:50','2020-02-14 08:34:50'),(6594,'chemistry','159.138.150.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:53','2020-02-14 08:34:53'),(6595,'chemistry','159.138.158.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:49','2020-02-14 08:40:49'),(6596,'chemistry','159.138.151.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:52','2020-02-14 08:40:52'),(6597,'chemistry','54.36.150.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 09:29:11','2020-02-14 09:29:11'),(6598,'commerce','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:16','2020-02-14 12:46:16'),(6599,'physics','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6600,'government','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6601,'geography','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6602,'irk','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6603,'currentaffairs','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6604,'history','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6605,'english','54.234.90.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 13:13:09','2020-02-14 13:13:09'),(6606,'government','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 15:59:30','2020-02-14 15:59:34'),(6607,'physics','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 16:21:32','2020-02-14 16:21:35'),(6608,'mathematics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6609,'physics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6610,'englishlit','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6611,'english','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6612,'biology','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6613,'irk','3.84.126.190',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:53'),(6614,'government','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6615,'currentaffairs','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6616,'economics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6617,'commerce','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6618,'geography','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6619,'civiledu','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6620,'accounting','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6621,'history','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6622,'chemistry','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6623,'crk','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6624,'crk','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6625,'currentaffairs','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6626,'geography','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6627,'economics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6628,'civiledu','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6629,'irk','52.205.39.67',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:40'),(6630,'englishlit','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6631,'government','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6632,'chemistry','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6633,'history','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6634,'physics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6635,'biology','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6636,'accounting','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6637,'mathematics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6638,'english','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6639,'commerce','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:38','2020-02-14 17:43:41'),(6640,'history','54.161.219.62',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-14 18:19:40','2020-02-14 18:19:40'),(6641,'chemistry','207.46.13.106',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 13:28:42','2020-02-26 14:54:53'),(6642,'mathematics','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6643,'commerce','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6644,'chemistry','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6645,'englishlit','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6646,'government','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6647,'insurance','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6648,'history','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6649,'chemistry','157.55.39.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 18:35:48','2020-02-15 18:35:48'),(6650,'biology','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 20:12:28','2020-02-15 20:12:30'),(6651,'insurance','107.22.1.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 00:40:58','2020-02-16 00:40:58'),(6652,'economics','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:40:03','2020-02-16 01:40:03'),(6653,'history','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:59:35','2020-02-16 01:59:35'),(6654,'economics','100.26.204.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 04:49:19','2020-02-16 04:49:19'),(6655,'history','54.173.184.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 07:23:00','2020-02-16 07:23:00'),(6656,'chemistry','54.158.124.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 08:06:19','2020-02-16 08:06:19'),(6657,'accounting','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 09:59:42','2020-02-16 09:59:42'),(6658,'history','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 10:06:30','2020-02-16 10:06:30'),(6659,'biology','54.81.159.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:49:34','2020-02-16 16:58:41'),(6660,'english','54.81.159.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:52:09','2020-02-16 16:56:21'),(6661,'chemistry','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:21','2020-02-16 16:54:24'),(6662,'commerce','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:43','2020-02-16 16:54:46'),(6663,'accounting','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:06','2020-02-16 16:55:09'),(6664,'mathematics','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:58','2020-02-16 16:56:01'),(6665,'irk','52.91.167.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 22:51:34','2020-02-16 22:51:34'),(6666,'crk','34.233.126.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 01:08:54','2020-02-17 01:08:54'),(6667,'economics','54.234.27.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 05:03:19','2020-02-17 05:03:19'),(6668,'commerce','54.221.92.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 06:44:50','2020-02-17 06:44:50'),(6669,'chemistry','159.138.128.150',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:05:44','2020-02-17 07:05:44'),(6670,'english','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6671,'mathematics','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6672,'accounting','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6673,'englishlit','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6674,'government','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:10'),(6675,'civiledu','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-17 07:26:10'),(6676,'insurance','34.229.240.235',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-19 13:08:34'),(6677,'biology','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:53:21','2020-02-17 07:53:21'),(6678,'chemistry','41.190.3.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 09:00:45','2020-02-17 09:00:46'),(6679,'accounting','34.224.39.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 10:20:33','2020-02-17 10:20:33'),(6680,'english','197.156.253.124',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 11:19:47','2020-02-17 11:19:47'),(6681,'crk','184.72.213.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 13:48:40','2020-02-17 13:48:40'),(6682,'accounting','54.165.1.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 17:44:51','2020-02-17 17:44:51'),(6683,'economics','54.83.109.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 20:16:53','2020-02-17 20:16:53'),(6684,'chemistry','5.255.250.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 21:22:58','2020-02-17 21:22:58'),(6685,'government','54.221.59.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 23:17:36','2020-02-17 23:17:36'),(6686,'chemistry','34.201.122.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 00:07:06','2020-02-18 00:07:06'),(6687,'government','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:37:21','2020-02-18 02:37:21'),(6688,'geography','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:43:15','2020-02-18 02:43:15'),(6689,'mathematics','52.87.200.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 03:25:39','2020-02-18 03:25:39'),(6690,'commerce','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:40:17','2020-02-18 05:40:17'),(6691,'economics','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:53:54','2020-02-18 05:53:54'),(6692,'chemistry','54.224.96.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:08:00','2020-02-18 11:08:00'),(6693,'insurance','54.224.96.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:30:46','2020-02-18 11:30:46'),(6694,'crk','18.212.173.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 13:09:34','2020-03-20 07:37:00'),(6695,'chemistry','114.119.134.79',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 15:47:10','2020-02-18 15:47:10'),(6696,'englishlit','100.24.12.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 18:48:21','2020-02-18 18:48:21'),(6697,'crk','3.85.34.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 22:20:53','2020-02-18 22:20:53'),(6698,'chemistry','196.220.136.213',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 00:45:34','2020-02-19 00:45:35'),(6699,'english','54.147.36.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 03:54:04','2020-02-19 03:54:04'),(6700,'crk','34.229.241.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 05:30:54','2020-02-19 05:30:54'),(6701,'chemistry','41.184.42.114',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 13:13:14','2020-02-19 13:13:37'),(6702,'english','54.227.161.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 15:50:25','2020-02-19 15:50:25'),(6703,'chemistry','82.145.222.210',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:03:16','2020-02-19 18:03:27'),(6704,'chemistry','54.36.150.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:07:42','2020-02-19 18:07:46'),(6705,'englishlit','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:26:35','2020-02-19 19:26:35'),(6706,'chemistry','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:27:02','2020-02-19 19:27:02'),(6707,'physics','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:53:17','2020-02-19 19:53:17'),(6708,'english','204.236.246.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 22:37:37','2020-02-19 22:37:37'),(6709,'englishlit','34.230.79.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 00:17:30','2020-02-20 00:17:30'),(6710,'currentaffairs','54.242.206.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 01:18:47','2020-02-20 01:18:47'),(6711,'crk','3.85.213.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 04:49:03','2020-02-20 04:49:03'),(6712,'englishlit','3.81.90.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 08:44:59','2020-02-20 08:44:59'),(6713,'government','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:23','2020-02-20 10:57:04'),(6714,'physics','3.81.90.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:35','2020-02-20 09:14:41'),(6715,'irk','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:28:55','2020-02-20 10:57:05'),(6716,'currentaffairs','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:33:57','2020-02-20 10:57:05'),(6717,'history','3.81.90.103',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:37:42','2020-02-20 10:45:58'),(6718,'history','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6719,'chemistry','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6720,'accounting','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6721,'commerce','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6722,'physics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6723,'civiledu','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6724,'crk','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6725,'economics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6726,'currentaffairs','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6727,'biology','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6728,'government','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6729,'english','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6730,'irk','35.168.19.41',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6731,'englishlit','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6732,'geography','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6733,'mathematics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6734,'geography','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:07','2020-02-20 11:04:56'),(6735,'commerce','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:45','2020-02-20 10:57:04'),(6736,'chemistry','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6737,'geography','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6738,'englishlit','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6739,'history','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6740,'accounting','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6741,'english','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6742,'commerce','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6743,'crk','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6744,'civiledu','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6745,'physics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6746,'mathematics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6747,'government','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6748,'irk','54.162.219.78',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6749,'biology','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6750,'economics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:11','2020-02-20 10:47:14'),(6751,'currentaffairs','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:12','2020-02-20 10:47:15'),(6752,'economics','3.81.90.103',3,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 11:01:05'),(6753,'civiledu','3.81.90.103',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 10:57:05'),(6754,'government','18.207.192.142',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 13:42:22','2020-02-20 13:42:22'),(6755,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6756,'chemistry','54.167.198.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6757,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6758,'english','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:31','2020-02-20 17:26:32'),(6759,'accounting','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6760,'biology','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6761,'government','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6762,'crk','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6763,'currentaffairs','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6764,'history','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6765,'crk','3.80.65.155',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:00:34','2020-02-20 18:00:34'),(6766,'biology','3.80.65.155',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:13:55','2020-02-20 18:13:55'),(6767,'english','204.236.203.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 21:11:32','2020-02-20 21:11:32'),(6768,'mathematics','3.89.145.218',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 22:35:41','2020-02-20 22:35:41'),(6769,'chemistry','46.229.168.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:29:39','2020-02-21 02:29:39'),(6770,'chemistry','157.55.39.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:49:20','2020-02-21 02:49:20'),(6771,'english','54.147.53.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 03:48:00','2020-02-21 03:48:00'),(6772,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6773,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6774,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6775,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6776,'currentaffairs','3.90.168.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 19:24:12','2020-02-21 19:24:12'),(6777,'chemistry','34.226.190.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 20:12:12','2020-02-21 20:12:12'),(6778,'currentaffairs','18.234.246.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 21:02:21','2020-02-21 21:02:21'),(6779,'civiledu','54.162.109.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 23:30:06','2020-02-21 23:30:06'),(6780,'english','3.92.223.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:55:12','2020-02-22 03:55:12'),(6781,'chemistry','159.138.153.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:52','2020-02-22 03:58:52'),(6782,'chemistry','159.138.155.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:53','2020-02-22 03:58:53'),(6783,'englishlit','54.234.225.91',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 04:45:49','2020-02-22 04:45:49'),(6784,'accounting','3.81.14.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 06:32:53','2020-02-22 06:32:53'),(6785,'biology','3.85.195.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 08:05:36','2020-02-22 08:05:36'),(6786,'english','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:02','2020-02-22 12:38:03'),(6787,'commerce','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6788,'physics','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6789,'englishlit','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6790,'crk','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6791,'currentaffairs','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6792,'history','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:04'),(6793,'biology','3.88.4.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 21:11:38','2020-02-22 21:11:39'),(6794,'chemistry','35.173.57.84',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 00:53:28','2020-02-23 01:21:39'),(6795,'government','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:01:42','2020-02-23 13:01:42'),(6796,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6797,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6798,'commerce','54.196.170.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 14:07:46','2020-02-23 14:07:46'),(6799,'chemistry','54.36.150.158',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 15:20:46','2020-02-23 15:20:49'),(6800,'insurance','35.173.187.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 17:32:21','2020-02-23 17:32:21'),(6801,'crk','3.86.33.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 20:19:46','2020-02-23 20:19:46'),(6802,'english','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6803,'mathematics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6804,'commerce','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6805,'physics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6806,'government','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6807,'geography','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6808,'currentaffairs','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:05'),(6809,'chemistry','159.138.156.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 05:01:23','2020-02-24 05:01:23'),(6810,'mathematics','54.205.146.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 06:01:05','2020-02-24 06:01:05'),(6811,'geography','54.159.1.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 08:03:19','2020-02-24 08:03:19'),(6812,'economics','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 12:58:49','2020-02-24 12:58:49'),(6813,'geography','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 13:18:08','2020-02-24 13:18:08'),(6814,'english','3.81.236.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 15:33:14','2020-02-24 15:33:14'),(6815,'geography','54.210.217.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 17:00:33','2020-02-24 17:00:33'),(6816,'chemistry','105.112.55.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 19:06:53','2020-02-24 23:57:08'),(6817,'chemistry','34.227.17.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:20:04','2020-03-05 17:43:13'),(6818,'physics','34.227.17.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:52:30','2020-02-24 23:52:30'),(6819,'englishlit','54.92.166.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 02:36:43','2020-02-25 02:36:43'),(6820,'geography','35.175.234.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 03:33:37','2020-02-25 03:33:37'),(6821,'currentaffairs','52.87.168.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 06:07:47','2020-02-25 06:07:47'),(6822,'biology','18.233.100.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 09:34:43','2020-02-25 09:34:43'),(6823,'chemistry','157.55.39.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 11:42:40','2020-02-25 11:42:40'),(6824,'physics','66.249.80.52',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 15:14:29','2020-02-25 15:14:31'),(6825,'physics','107.23.131.74',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 18:59:40','2020-02-25 19:13:57'),(6826,'english','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6827,'mathematics','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6828,'commerce','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:57'),(6829,'biology','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6830,'currentaffairs','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6831,'history','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6832,'englishlit','35.170.185.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:56:19','2020-02-25 19:56:19'),(6833,'mathematics','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:37:16','2020-02-25 20:37:16'),(6834,'biology','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:57:18','2020-02-25 20:57:18'),(6835,'chemistry','185.26.180.143',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:07:17','2020-02-25 21:07:19'),(6836,'chemistry','192.95.16.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:56:59','2020-02-25 21:56:59'),(6837,'geography','3.92.190.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 23:13:07','2020-02-25 23:13:07'),(6838,'government','54.146.199.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 01:42:52','2020-02-26 01:42:52'),(6839,'mathematics','3.89.35.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 04:40:50','2020-02-26 04:40:50'),(6840,'history','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:21:37','2020-02-26 05:21:37'),(6841,'accounting','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:41:03','2020-02-26 05:41:03'),(6842,'biology','54.91.45.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 07:38:13','2020-02-26 07:38:13'),(6843,'chemistry','54.221.93.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:04:36','2020-02-26 09:15:23'),(6844,'chemistry','66.102.8.241',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6845,'chemistry','66.249.80.50',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6846,'chemistry','66.102.8.243',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-03-09 23:52:26'),(6847,'physics','66.249.88.65',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:22:54','2020-02-26 12:22:56'),(6848,'biology','54.235.235.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:50:49','2020-02-26 12:50:49'),(6849,'geography','54.161.25.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 17:04:18','2020-02-26 17:04:18'),(6850,'english','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6851,'mathematics','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6852,'biology','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6853,'chemistry','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6854,'government','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6855,'geography','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:01'),(6856,'irk','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:01','2020-02-27 04:05:01'),(6857,'accounting','54.197.40.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 05:01:31','2020-02-27 05:01:31'),(6858,'history','107.20.37.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 13:39:41','2020-02-27 13:39:41'),(6859,'chemistry','3.80.114.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 23:45:34','2020-02-27 23:45:34'),(6860,'english','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:45:04','2020-02-28 13:47:42'),(6861,'government','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:50:32','2020-02-28 13:52:07'),(6862,'commerce','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:54:04','2020-02-28 13:55:34'),(6863,'biology','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:57:38','2020-02-28 13:59:56'),(6864,'mathematics','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:59:07','2020-02-28 13:59:48'),(6865,'biology','52.204.53.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:24'),(6866,'biology','52.204.53.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:22'),(6867,'insurance','3.89.28.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 02:19:14','2020-02-29 02:19:14'),(6868,'economics','54.86.68.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 03:27:08','2020-02-29 03:27:08'),(6869,'accounting','18.207.149.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 06:17:21','2020-02-29 06:17:21'),(6870,'crk','54.224.249.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 07:18:55','2020-02-29 07:18:55'),(6871,'chemistry','49.70.183.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:00:47','2020-02-29 10:00:47'),(6872,'chemistry','34.226.148.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6873,'chemistry','34.226.148.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6874,'biology','54.234.130.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:39:43','2020-02-29 10:39:43'),(6875,'history','54.172.167.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 14:10:22','2020-02-29 14:10:22'),(6876,'chemistry','66.249.88.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:08','2020-02-29 15:50:09'),(6877,'chemistry','66.102.6.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:09','2020-02-29 15:50:09'),(6878,'irk','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:58:08','2020-02-29 15:58:08'),(6879,'chemistry','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:59:27','2020-02-29 15:59:27'),(6880,'history','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 19:55:14','2020-02-29 19:55:14'),(6881,'crk','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 20:06:10','2020-02-29 20:06:10'),(6882,'commerce','52.202.140.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 22:45:59','2020-02-29 22:45:59'),(6883,'chemistry','223.245.212.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 23:22:31','2020-02-29 23:22:31'),(6884,'biology','18.212.32.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 00:01:45','2020-03-01 00:01:45'),(6885,'accounting','52.23.172.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 01:53:29','2020-03-01 01:53:29'),(6886,'chemistry','1.203.150.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 02:14:54','2020-03-01 02:14:54'),(6887,'economics','54.156.62.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 06:18:07','2020-03-01 06:18:07'),(6888,'government','35.173.129.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 08:48:14','2020-03-01 08:48:14'),(6889,'chemistry','3.84.9.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 10:00:47','2020-03-01 10:00:47'),(6890,'geography','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 11:39:24','2020-03-01 11:39:24'),(6891,'government','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 12:03:05','2020-03-01 12:03:05'),(6892,'economics','18.209.9.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 16:36:07','2020-03-01 16:36:07'),(6893,'insurance','54.87.188.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 18:39:16','2020-03-01 18:39:16'),(6894,'englishlit','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:12:13','2020-03-01 23:12:13'),(6895,'english','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:29:26','2020-03-01 23:29:26'),(6896,'commerce','54.163.13.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 03:36:21','2020-03-02 03:36:21'),(6897,'crk','54.198.115.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 08:50:58','2020-03-02 08:50:58'),(6898,'crk','34.229.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 09:24:47','2020-03-02 09:24:47'),(6899,'chemistry','197.210.64.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 16:39:01','2020-03-02 16:39:01'),(6900,'english','105.112.55.216',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:24:46','2020-03-02 17:24:54'),(6901,'englishlit','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:46:18','2020-03-02 17:46:18'),(6902,'physics','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:59:07','2020-03-02 17:59:07'),(6903,'english','3.91.231.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 19:29:38','2020-03-02 19:29:38'),(6904,'currentaffairs','54.167.241.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 20:17:40','2020-03-02 20:17:40'),(6905,'chemistry','36.249.227.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:16:09','2020-03-02 21:16:09'),(6906,'chemistry','114.227.162.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:19:42','2020-03-02 21:19:42'),(6907,'englishlit','54.91.143.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 23:10:58','2020-03-02 23:10:58'),(6908,'englishlit','54.88.133.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 01:40:43','2020-03-03 01:40:43'),(6909,'government','34.228.244.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 05:09:18','2020-03-03 05:09:18'),(6910,'chemistry','141.8.188.144',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 08:07:45','2020-03-03 08:07:45'),(6911,'chemistry','82.145.220.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 09:48:31','2020-03-03 09:48:49'),(6912,'economics','3.80.28.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:11:56','2020-03-03 10:11:56'),(6913,'chemistry','82.145.209.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:36:44','2020-03-03 10:36:44'),(6914,'english','18.212.178.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:54:12','2020-03-03 10:54:12'),(6915,'chemistry','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:08:29','2020-03-03 12:08:29'),(6916,'biology','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:20:31','2020-03-03 12:20:31'),(6917,'chemistry','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:27','2020-03-03 13:36:27'),(6918,'mathematics','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:47','2020-03-03 13:36:47'),(6919,'english','52.87.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 17:00:16','2020-03-03 17:00:16'),(6920,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6921,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6922,'chemistry','40.77.167.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:37:26','2020-03-03 19:37:26'),(6923,'biology','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6924,'physics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6925,'geography','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6926,'economics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6927,'irk','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6928,'civiledu','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:58'),(6929,'currentaffairs','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:58','2020-03-03 20:05:58'),(6930,'biology','197.210.53.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:43:36','2020-03-03 20:43:38'),(6931,'physics','103.221.233.72',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 04:04:33','2020-03-04 04:25:46'),(6932,'english','105.112.182.249',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 10:31:20','2020-03-04 10:31:20'),(6933,'english','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:04:45','2020-03-04 11:04:45'),(6934,'accounting','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:05:53','2020-03-04 11:05:53'),(6935,'chemistry','197.210.53.87',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:39:34','2020-03-04 12:39:35'),(6936,'chemistry','197.210.52.235',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:04','2020-03-04 12:40:06'),(6937,'mathematics','197.210.53.94',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:07','2020-03-04 12:46:33'),(6938,'english','18.207.127.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 21:42:11','2020-03-04 21:42:11'),(6939,'chemistry','5.196.87.151',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 22:56:07','2020-04-02 22:19:08'),(6940,'englishlit','35.175.218.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 00:22:30','2020-03-05 00:22:30'),(6941,'commerce','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 02:31:37','2020-03-05 02:31:37'),(6942,'chemistry','54.89.222.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 04:03:59','2020-03-05 04:03:59'),(6943,'commerce','3.85.195.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 12:01:13','2020-03-05 12:01:13'),(6944,'crk','54.81.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 19:11:38','2020-03-05 19:11:38'),(6945,'mathematics','107.22.108.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 20:30:46','2020-03-05 20:30:46'),(6946,'english','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:08:59','2020-03-05 22:08:59'),(6947,'accounting','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6948,'biology','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6949,'chemistry','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6950,'irk','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6951,'insurance','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6952,'history','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6953,'geography','54.242.26.49',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 02:38:31','2020-03-06 02:55:09'),(6954,'biology','35.153.139.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 07:52:20','2020-03-06 07:52:20'),(6955,'geography','107.23.228.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 12:34:01','2020-03-06 12:34:01'),(6956,'currentaffairs','35.173.223.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 13:38:42','2020-03-06 13:38:42'),(6957,'chemistry','35.153.102.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 14:20:41','2020-03-06 14:20:41'),(6958,'biology','3.86.217.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 15:34:02','2020-03-06 15:34:02'),(6959,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6960,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6961,'chemistry','183.166.134.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:16:38','2020-03-06 21:16:38'),(6962,'chemistry','54.81.120.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:29:55','2020-03-06 21:29:55'),(6963,'mathematics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 23:47:39','2020-03-06 23:47:39'),(6964,'physics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 00:22:50','2020-03-07 00:22:50'),(6965,'mathematics','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 02:56:44','2020-03-07 02:56:44'),(6966,'physics','18.234.121.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 06:30:53','2020-03-07 06:30:53'),(6967,'chemistry','197.210.65.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:18:55','2020-03-07 08:18:55'),(6968,'chemistry','197.210.64.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:19:20','2020-03-07 08:19:20'),(6969,'chemistry','197.210.64.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:20:36','2020-03-07 08:20:36'),(6970,'english','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:01'),(6971,'accounting','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:02'),(6972,'geography','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6973,'irk','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6974,'civiledu','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6975,'insurance','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6976,'history','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6977,'english','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:35','2020-03-07 14:55:35'),(6978,'biology','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:36','2020-03-07 14:55:37'),(6979,'chemistry','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:37','2020-03-07 14:55:38'),(6980,'geography','52.90.45.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 15:21:48','2020-03-07 15:21:48'),(6981,'accounting','35.173.220.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 19:36:21','2020-03-07 19:36:21'),(6982,'commerce','5.186.127.79',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:16:03','2020-03-08 01:58:17'),(6983,'accounting','5.186.127.79',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:24:36','2020-03-08 01:52:42'),(6984,'biology','5.186.127.79',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 02:01:14','2020-03-08 02:01:15'),(6985,'englishlit','54.242.45.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 10:11:30','2020-03-08 10:11:30'),(6986,'chemistry','112.114.88.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:37:05','2020-03-08 13:37:05'),(6987,'history','54.174.12.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:54:38','2020-03-08 13:54:38'),(6988,'chemistry','54.173.164.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 16:27:27','2020-03-08 16:27:27'),(6989,'biology','52.90.68.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 17:35:15','2020-03-08 17:35:15'),(6990,'chemistry','114.119.164.166',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 18:08:08','2020-03-25 11:05:38'),(6991,'chemistry','60.185.69.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 20:52:07','2020-03-08 20:52:07'),(6992,'chemistry','197.210.227.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:17:20','2020-03-08 21:17:20'),(6993,'chemistry','197.210.226.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:18:58','2020-03-08 21:18:58'),(6994,'chemistry','197.210.226.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:19:11','2020-03-08 21:19:11'),(6995,'chemistry','114.119.160.43',3,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:20','2020-06-23 16:54:17'),(6996,'chemistry','161.151.254.43',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:41','2020-03-08 22:39:44'),(6997,'chemistry','161.151.254.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:41:32','2020-03-08 22:41:35'),(6998,'insurance','18.234.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 04:42:23','2020-03-09 04:42:23'),(6999,'chemistry','114.119.161.43',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 05:05:47','2020-04-06 00:24:10'),(7000,'economics','3.208.8.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 06:44:35','2020-03-09 06:44:35'),(7001,'chemistry','114.119.166.156',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 08:22:53','2020-03-10 01:02:52'),(7002,'history','54.175.112.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 09:37:37','2020-03-09 09:37:37'),(7003,'history','197.210.53.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:45:49','2020-03-09 12:45:50'),(7004,'chemistry','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:00','2020-03-09 12:56:20'),(7005,'history','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:03','2020-03-09 12:56:24'),(7006,'mathematics','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:04','2020-03-09 12:56:26'),(7007,'chemistry','197.210.53.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:59:22','2020-03-09 12:59:22'),(7008,'english','197.210.53.133',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:06:27','2020-03-09 13:06:27'),(7009,'accounting','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:29:10','2020-03-09 13:29:10'),(7010,'history','3.93.0.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 14:25:16','2020-03-09 14:25:16'),(7011,'crk','3.84.223.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 22:45:44','2020-03-09 22:45:44'),(7012,'chemistry','67.86.217.149',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:10:20','2020-04-07 19:16:09'),(7013,'chemistry','108.41.239.178',421,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:11:34','2020-04-13 13:17:04'),(7014,'commerce','3.84.214.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 01:51:20','2020-03-10 01:51:20'),(7015,'chemistry','197.210.70.26',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 04:06:56','2020-03-10 04:07:00'),(7016,'chemistry','197.210.70.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:17','2020-03-10 05:19:17'),(7017,'mathematics','197.210.70.216',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:26','2020-03-10 05:19:26'),(7018,'mathematics','197.210.71.234',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:08','2020-03-10 05:20:08'),(7019,'mathematics','197.210.70.250',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:21','2020-03-10 05:20:21'),(7020,'chemistry','197.210.70.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:35','2020-03-10 05:20:35'),(7021,'mathematics','197.210.71.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:53','2020-03-10 05:20:53'),(7022,'mathematics','197.210.70.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:52:55','2020-03-10 05:52:55'),(7023,'chemistry','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:05','2020-03-10 05:55:05'),(7024,'mathematics','197.210.70.182',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:15','2020-03-10 05:55:16'),(7025,'mathematics','197.210.174.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:58','2020-03-10 05:55:59'),(7026,'mathematics','108.41.239.178',367,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:06','2020-04-12 16:31:22'),(7027,'biology','197.210.70.40',46,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:35','2020-03-10 05:57:24'),(7028,'biology','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:55','2020-03-10 05:56:56'),(7029,'biology','197.210.70.170',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:58:15','2020-03-10 05:58:18'),(7030,'accounting','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:15:57','2020-03-10 06:15:57'),(7031,'crk','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:24:17','2020-03-10 06:24:17'),(7032,'chemistry','197.211.61.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 07:49:41','2020-03-10 07:49:41'),(7033,'chemistry','114.119.167.13',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 08:49:55','2020-03-31 11:06:57'),(7034,'economics','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:06:10','2020-03-10 09:06:10'),(7035,'irk','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:16:37','2020-03-10 09:16:37'),(7036,'chemistry','34.205.63.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 10:16:06','2020-03-10 10:16:06'),(7037,'government','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:04:13','2020-03-10 12:04:13'),(7038,'chemistry','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:21:49','2020-03-10 12:21:49'),(7039,'biology','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:06:43','2020-03-10 14:06:43'),(7040,'geography','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:12:24','2020-03-10 14:12:24'),(7041,'history','3.95.217.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 15:16:08','2020-03-10 15:16:08'),(7042,'commerce','18.212.139.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 16:38:48','2020-03-10 16:38:48'),(7043,'english','197.210.45.11',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:10:47','2020-03-10 17:41:19'),(7044,'geography','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:50','2020-03-10 17:41:20'),(7045,'mathematics','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:51','2020-03-10 17:41:21'),(7046,'economics','174.129.129.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:44:51','2020-03-10 17:44:51'),(7047,'government','54.234.46.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 19:25:59','2020-03-10 19:25:59'),(7048,'chemistry','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:21:32','2020-03-10 20:21:32'),(7049,'insurance','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:37:32','2020-03-10 20:37:32'),(7050,'chemistry','66.249.83.200',73,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-03-19 07:35:53'),(7051,'chemistry','66.249.83.204',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-04-26 10:46:35'),(7052,'englishlit','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:31:52','2020-03-11 02:31:52'),(7053,'english','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:42:48','2020-03-11 02:42:48'),(7054,'chemistry','116.31.102.8',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:21:00','2020-03-11 05:21:30'),(7055,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7056,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7057,'crk','35.174.12.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 10:23:39','2020-03-11 10:43:26'),(7058,'chemistry','52.90.116.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 11:19:41','2020-03-11 11:19:41'),(7059,'english','197.210.65.20',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:49','2020-03-11 13:34:49'),(7060,'biology','197.210.47.25',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:52','2020-03-11 13:34:52'),(7061,'chemistry','197.210.64.50',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:53','2020-03-11 13:34:54'),(7062,'mathematics','197.210.64.137',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:55','2020-03-11 13:34:56'),(7063,'chemistry','157.55.39.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:47:42','2020-03-11 14:47:42'),(7064,'chemistry','41.190.30.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:53:34','2020-03-11 14:53:35'),(7065,'english','54.221.96.198',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 15:42:57','2020-03-11 15:43:28'),(7066,'chemistry','197.211.61.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 16:33:36','2020-03-11 16:33:36'),(7067,'english','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:58:34','2020-03-11 18:58:34'),(7068,'englishlit','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:59:49','2020-03-11 18:59:49'),(7069,'physics','54.196.100.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:38:57','2020-03-11 19:38:57'),(7070,'chemistry','54.196.100.247',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:59:42','2020-03-11 19:59:42'),(7071,'english','3.82.116.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 20:42:05','2020-03-11 20:42:05'),(7072,'currentaffairs','54.211.73.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 21:57:05','2020-03-11 21:57:05'),(7073,'englishlit','54.234.241.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 01:46:19','2020-03-12 02:20:47'),(7074,'chemistry','54.167.99.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 05:23:04','2020-03-12 05:23:04'),(7075,'government','54.226.177.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:03:06','2020-03-12 06:03:06'),(7076,'economics','3.88.159.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:56:58','2020-03-12 06:56:58'),(7077,'mathematics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7078,'commerce','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7079,'english','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7080,'physics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:38'),(7081,'biology','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7082,'crk','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7083,'englishlit','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7084,'geography','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7085,'government','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7086,'insurance','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7087,'history','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7088,'currentaffairs','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:39','2020-03-12 07:43:39'),(7089,'chemistry','54.90.183.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 08:12:53','2020-03-12 08:12:53'),(7090,'english','3.83.156.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 10:27:53','2020-03-12 10:27:53'),(7091,'crk','3.89.215.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:13:49','2020-03-12 11:13:49'),(7092,'chemistry','3.90.255.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:50:26','2020-03-12 11:50:27'),(7093,'english','197.210.44.229',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 13:37:55','2020-03-12 13:37:55'),(7094,'mathematics','197.210.29.214',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:31:12','2020-03-12 15:31:12'),(7095,'chemistry','197.210.29.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:35:28','2020-03-12 15:36:34'),(7096,'chemistry','197.210.61.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:09','2020-03-12 15:38:09'),(7097,'chemistry','172.58.236.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:33','2020-03-12 15:41:06'),(7098,'biology','197.210.70.44',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 16:21:26','2020-03-12 16:21:28'),(7099,'biology','197.210.226.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:14:12','2020-03-12 17:14:14'),(7100,'biology','3.92.167.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:33:54','2020-03-12 17:33:54'),(7101,'chemistry','54.174.77.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 18:08:05','2020-03-12 18:08:05'),(7102,'english','129.205.113.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 20:47:35','2020-03-12 20:47:35'),(7103,'crk','52.90.72.30',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 00:32:24','2020-03-13 00:32:24'),(7104,'currentaffairs','52.91.74.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 03:07:06','2020-03-13 03:07:06'),(7105,'chemistry','66.249.88.54',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 04:13:43','2020-03-13 22:03:51'),(7106,'biology','54.226.184.43',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:52:03','2020-03-13 09:52:04'),(7107,'english','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:56:39','2020-03-13 09:56:39'),(7108,'accounting','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:58:08','2020-03-13 09:58:08'),(7109,'chemistry','3.92.56.188',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7110,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7111,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7112,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7113,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7114,'chemistry','54.242.59.9',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 16:39:40','2020-03-13 16:39:41'),(7115,'chemistry','207.46.13.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 20:02:53','2020-03-13 20:02:53'),(7116,'chemistry','54.146.129.212',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7117,'chemistry','54.146.129.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7118,'chemistry','66.249.83.202',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 22:03:49','2020-03-13 22:03:51'),(7119,'biology','54.152.253.226',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 02:58:06','2020-03-14 02:58:06'),(7120,'mathematics','66.249.83.200',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 08:36:31','2020-03-14 08:36:33'),(7121,'english','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7122,'mathematics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7123,'chemistry','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:35'),(7124,'economics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:35','2020-03-14 10:43:36'),(7125,'civiledu','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:36','2020-03-14 10:43:36'),(7126,'insurance','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7127,'currentaffairs','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7128,'commerce','34.239.245.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:45:23','2020-03-14 10:45:23'),(7129,'chemistry','3.90.43.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 13:49:52','2020-03-14 13:49:52'),(7130,'crk','54.161.109.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 14:49:17','2020-03-14 14:49:17'),(7131,'english','52.91.100.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:07:53','2020-03-14 18:07:53'),(7132,'chemistry','86.121.62.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:41:03','2020-03-14 18:41:03'),(7133,'chemistry','3.87.81.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:54:06','2020-03-14 18:54:06'),(7134,'chemistry','5.255.250.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:21:06','2020-03-14 19:21:06'),(7135,'chemistry','105.112.38.232',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:05','2020-03-15 06:16:13'),(7136,'mathematics','105.112.38.232',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:50','2020-03-14 19:55:10'),(7137,'chemistry','54.146.242.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:53:47','2020-03-14 19:53:51'),(7138,'mathematics','54.145.20.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 20:35:13','2020-03-14 20:35:13'),(7139,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7140,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7141,'chemistry','18.209.61.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:43:11','2020-03-14 22:43:11'),(7142,'biology','14.199.220.107',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:46:33','2020-03-14 22:46:34'),(7143,'economics','3.82.205.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:07:15','2020-03-15 01:07:15'),(7144,'chemistry','66.249.64.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:41:19','2020-03-15 01:41:22'),(7145,'geography','18.209.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 02:28:10','2020-03-15 02:28:10'),(7146,'geography','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:36:57','2020-03-15 03:36:57'),(7147,'biology','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:42:39','2020-03-15 03:42:39'),(7148,'mathematics','105.112.38.221',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 07:08:04','2020-03-15 07:08:05'),(7149,'physics','54.209.184.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 10:35:32','2020-03-15 10:35:32'),(7150,'chemistry','61.177.20.67',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:07:25','2020-03-15 11:08:03'),(7151,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7152,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7153,'englishlit','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:00:27','2020-03-15 13:00:27'),(7154,'geography','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:12:58','2020-03-15 13:12:58'),(7155,'chemistry','66.249.80.40',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:13:16','2020-03-15 13:13:18'),(7156,'currentaffairs','54.157.45.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:17:59','2020-03-15 14:17:59'),(7157,'chemistry','114.119.165.83',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:58:19','2020-04-09 07:14:34'),(7158,'mathematics','197.210.70.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 15:43:48','2020-03-15 15:43:56'),(7159,'biology','3.80.249.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 16:18:19','2020-03-15 16:18:19'),(7160,'chemistry','40.77.167.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 17:54:45','2020-03-15 17:54:45'),(7161,'chemistry','54.234.65.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:02:01','2020-03-15 19:02:01'),(7162,'chemistry','192.3.183.226',69,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:05:22','2020-03-16 02:10:39'),(7163,'physics','54.175.61.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:07:09','2020-03-15 23:07:09'),(7164,'mathematics','54.152.128.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:41:27','2020-03-15 23:41:27'),(7165,'chemistry','5.255.250.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 01:11:48','2020-03-16 01:11:48'),(7166,'geography','100.27.28.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 02:48:46','2020-03-16 02:48:46'),(7167,'government','18.204.205.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 03:52:44','2020-03-16 03:52:44'),(7168,'mathematics','52.87.174.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 04:36:55','2020-03-16 04:36:55'),(7169,'history','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:37:41','2020-03-16 06:37:41'),(7170,'biology','34.230.5.124',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:40'),(7171,'biology','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:39'),(7172,'crk','35.173.183.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:03:46','2020-03-16 09:03:46'),(7173,'chemistry','66.249.88.55',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:48:48','2020-03-16 09:48:49'),(7174,'geography','54.226.6.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 14:13:41','2020-03-16 14:13:41'),(7175,'mathematics','105.112.153.142',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:02:32','2020-03-16 17:02:47'),(7176,'physics','105.112.153.142',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:03:09','2020-03-16 17:03:10'),(7177,'english','105.112.153.142',480,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:04:23','2020-03-16 20:08:50'),(7178,'accounting','54.144.114.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 21:09:52','2020-03-16 21:09:52'),(7179,'history','54.152.71.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 07:17:16','2020-03-17 07:17:16'),(7180,'english','41.86.149.34',280,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 09:42:41','2020-03-17 12:11:29'),(7181,'english','105.112.22.72',440,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 15:51:33','2020-03-17 16:19:25'),(7182,'chemistry','105.112.22.72',323,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 16:24:18','2020-03-17 17:11:03'),(7183,'physics','105.112.22.72',164,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 17:05:04','2020-03-17 17:28:30'),(7184,'mathematics','105.112.22.72',149,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:14:51','2020-03-17 17:38:27'),(7185,'government','105.112.22.72',276,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:40:56','2020-03-17 17:50:13'),(7186,'englishlit','105.112.47.130',334,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:54:27','2020-03-17 18:14:37'),(7187,'government','105.112.47.130',22,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:56:02','2020-03-17 17:56:03'),(7188,'crk','105.112.47.130',543,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:16:10','2020-03-17 18:30:39'),(7189,'english','105.112.47.130',40,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:18:33','2020-03-17 18:18:35'),(7190,'accounting','105.112.47.130',158,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:35:02','2020-03-17 18:37:47'),(7191,'chemistry','34.227.17.84',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:52:23','2020-03-17 18:52:23'),(7192,'chemistry','144.76.67.169',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 00:01:13','2020-03-18 00:01:58'),(7193,'chemistry','54.36.149.77',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:03:44','2020-03-18 05:03:44'),(7194,'economics','52.201.123.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:33:29','2020-03-18 05:33:29'),(7195,'history','3.93.187.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 11:38:00','2020-03-18 11:38:00'),(7196,'english','129.205.113.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:00:34','2020-03-18 20:00:34'),(7197,'chemistry','66.249.88.56',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:39:56','2020-03-18 20:39:58'),(7198,'irk','54.90.235.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:56:56','2020-03-18 20:56:56'),(7199,'chemistry','54.36.150.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 21:24:26','2020-03-18 21:24:26'),(7200,'crk','18.232.99.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 23:57:52','2020-03-18 23:57:52'),(7201,'commerce','3.88.101.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 01:46:16','2020-03-19 01:46:16'),(7202,'accounting','3.81.2.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 05:42:19','2020-03-19 05:42:19'),(7203,'chemistry','66.102.8.229',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 07:35:52','2020-03-19 07:35:54'),(7204,'economics','18.209.171.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 08:15:35','2020-03-19 08:15:35'),(7205,'chemistry','3.87.142.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 11:32:20','2020-03-19 11:32:20'),(7206,'government','54.172.25.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 12:12:58','2020-03-19 12:12:58'),(7207,'economics','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:31:06','2020-03-19 14:31:06'),(7208,'commerce','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:35:27','2020-03-19 14:35:27'),(7209,'geography','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:55:22','2020-03-19 14:55:22'),(7210,'government','54.242.179.61',1,'Nigeria','NG','LA','Lagos','Lagos','','6.4531','3.3958','2020-03-19 20:38:35','2020-03-19 20:38:35'),(7211,'chemistry','18.207.197.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 21:48:48','2020-03-19 21:48:48'),(7212,'english','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:32:19','2020-03-20 00:32:19'),(7213,'englishlit','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:50:34','2020-03-20 00:50:34'),(7214,'chemistry','114.119.165.169',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 01:18:55','2020-04-05 03:27:02'),(7215,'accounting','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7216,'biology','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7217,'chemistry','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7218,'crk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7219,'geography','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:26'),(7220,'irk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7221,'civiledu','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7222,'crk','3.93.49.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 08:22:17','2020-03-20 08:22:17'),(7223,'chemistry','197.210.71.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 09:39:01','2020-03-20 09:39:01'),(7224,'chemistry','117.63.134.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:39:07','2020-03-20 14:39:07'),(7225,'chemistry','41.190.2.160',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:55:17','2020-03-20 14:55:40'),(7226,'physics','18.234.143.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 16:22:33','2020-03-20 16:22:33'),(7227,'currentaffairs','3.88.171.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 18:44:05','2020-03-20 18:44:05'),(7228,'englishlit','3.80.210.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 19:58:26','2020-03-20 19:58:26'),(7229,'crk','54.234.191.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 22:13:05','2020-03-20 22:13:05'),(7230,'englishlit','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:13:40','2020-03-21 00:13:40'),(7231,'economics','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:45:11','2020-03-21 00:45:11'),(7232,'government','54.81.79.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:06:58','2020-03-21 02:06:58'),(7233,'chemistry','36.49.27.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:48:44','2020-03-21 02:48:44'),(7234,'irk','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:15:05','2020-03-21 04:15:05'),(7235,'english','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:39:38','2020-03-21 04:39:38'),(7236,'englishlit','41.80.20.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 05:52:43','2020-03-21 05:53:35'),(7237,'chemistry','154.113.86.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 08:44:48','2020-03-21 08:44:48'),(7238,'chemistry','54.36.150.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 10:28:05','2020-03-21 10:28:05'),(7239,'chemistry','42.49.170.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 12:22:18','2020-03-21 12:22:18'),(7240,'english','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:55','2020-03-21 13:16:56'),(7241,'commerce','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:56','2020-03-21 13:16:58'),(7242,'physics','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:59','2020-03-21 13:18:04'),(7243,'englishlit','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:00','2020-03-21 13:17:01'),(7244,'insurance','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:01','2020-03-21 13:18:05'),(7245,'currentaffairs','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:18:05'),(7246,'history','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:17:03'),(7247,'accounting','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:03','2020-03-21 13:18:04'),(7248,'government','18.234.135.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:16'),(7249,'economics','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7250,'civiledu','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7251,'chemistry','102.89.3.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 14:16:11','2020-03-21 14:16:11'),(7252,'accounting','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:30:53','2020-03-22 03:30:53'),(7253,'englishlit','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:32:36','2020-03-22 03:32:36'),(7254,'chemistry','116.248.186.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 12:56:38','2020-03-22 12:56:38'),(7255,'accounting','105.112.52.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 15:00:00','2020-03-22 15:00:02'),(7256,'commerce','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7257,'physics','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7258,'englishlit','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7259,'government','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7260,'crk','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7261,'insurance','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7262,'history','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7263,'chemistry','59.63.75.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 17:32:33','2020-03-22 17:32:34'),(7264,'mathematics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7265,'biology','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7266,'physics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7267,'chemistry','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7268,'geography','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7269,'irk','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7270,'currentaffairs','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:33'),(7271,'commerce','3.89.66.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 23:32:36','2020-03-22 23:32:36'),(7272,'chemistry','77.88.5.109',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 01:02:57','2020-05-28 06:27:27'),(7273,'crk','52.90.48.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 04:30:54','2020-03-23 04:30:54'),(7274,'biology','3.92.24.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 08:53:22','2020-03-23 08:53:22'),(7275,'mathematics','54.165.10.238',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 10:35:39','2020-03-23 10:35:39'),(7276,'economics','54.164.64.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 13:08:24','2020-03-23 13:08:24'),(7277,'geography','18.209.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 14:04:53','2020-03-23 14:04:53'),(7278,'geography','3.89.20.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 15:04:00','2020-03-23 15:04:00'),(7279,'englishlit','54.210.71.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:16:17','2020-03-23 23:16:17'),(7280,'geography','54.91.123.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:54:39','2020-03-23 23:54:39'),(7281,'currentaffairs','18.234.156.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 01:21:49','2020-03-24 01:21:49'),(7282,'physics','18.215.170.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 02:05:13','2020-03-24 02:05:13'),(7283,'english','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7284,'mathematics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7285,'physics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7286,'irk','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7287,'civiledu','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7288,'insurance','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7289,'currentaffairs','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7290,'physics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 07:37:59','2020-03-24 07:37:59'),(7291,'mathematics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 08:09:12','2020-03-24 08:09:12'),(7292,'mathematics','100.24.26.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 14:18:48','2020-03-24 14:18:48'),(7293,'accounting','52.87.217.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 04:37:55','2020-03-25 04:37:55'),(7294,'chemistry','114.119.160.245',41,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-25 10:25:16','2020-06-23 19:50:56'),(7295,'history','52.23.203.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 12:19:56','2020-03-25 12:19:56'),(7296,'chemistry','154.118.9.188',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 14:09:50','2020-03-25 14:09:50'),(7297,'commerce','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7298,'chemistry','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7299,'englishlit','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7300,'crk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:53'),(7301,'geography','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7302,'irk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7303,'insurance','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7304,'biology','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7305,'physics','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7306,'chemistry','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7307,'crk','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:20'),(7308,'geography','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7309,'civiledu','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7310,'currentaffairs','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7311,'english','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7312,'commerce','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7313,'biology','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7314,'government','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7315,'geography','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7316,'civiledu','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7317,'currentaffairs','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7318,'history','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 08:23:17','2020-03-26 08:23:17'),(7319,'economics','3.84.167.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:17:04','2020-03-26 09:17:04'),(7320,'english','197.211.61.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:24:43','2020-03-26 09:24:43'),(7321,'biology','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:33:58','2020-03-26 11:33:59'),(7322,'chemistry','102.89.3.190',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:00','2020-03-26 11:34:00'),(7323,'commerce','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:01','2020-03-26 11:34:01'),(7324,'crk','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:22','2020-03-26 12:14:19'),(7325,'commerce','102.89.3.190',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:23','2020-03-26 12:11:33'),(7326,'crk','102.89.3.190',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:08','2020-03-26 12:08:09'),(7327,'commerce','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:09','2020-03-26 12:14:21'),(7328,'crk','102.89.3.126',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:11:32','2020-03-26 12:11:32'),(7329,'crk','102.89.2.115',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:21:27','2020-03-26 12:22:22'),(7330,'crk','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:44','2020-03-26 12:22:45'),(7331,'commerce','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:46','2020-03-26 12:22:46'),(7332,'crk','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:40','2020-03-26 12:23:40'),(7333,'commerce','197.210.84.177',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:41','2020-03-26 12:23:42'),(7334,'crk','197.210.84.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:11','2020-03-26 12:24:12'),(7335,'commerce','197.210.84.39',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:12','2020-03-26 12:24:13'),(7336,'crk','197.210.84.227',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:09','2020-03-26 12:29:09'),(7337,'commerce','197.210.84.119',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:10','2020-03-26 12:29:10'),(7338,'crk','197.210.84.207',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:03','2020-03-26 12:32:04'),(7339,'commerce','197.210.84.125',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:05','2020-03-26 12:32:06'),(7340,'crk','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:21','2020-03-26 12:36:21'),(7341,'commerce','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:22','2020-03-26 12:36:22'),(7342,'crk','197.210.84.31',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:30','2020-03-26 12:36:30'),(7343,'commerce','197.210.84.245',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:31','2020-03-26 12:36:32'),(7344,'crk','197.210.84.165',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:47','2020-03-26 12:37:47'),(7345,'commerce','197.210.84.17',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:48','2020-03-26 12:37:48'),(7346,'crk','197.210.85.81',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:57','2020-03-26 12:37:57'),(7347,'commerce','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:58','2020-03-26 12:37:58'),(7348,'crk','197.210.84.67',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:00','2020-03-26 12:44:00'),(7349,'commerce','197.210.84.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:01','2020-03-26 12:44:01'),(7350,'english','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:13','2020-03-26 13:09:04'),(7351,'mathematics','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:14','2020-03-26 13:09:05'),(7352,'english','197.210.85.140',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:15','2020-03-26 14:03:15'),(7353,'mathematics','197.210.85.254',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:16','2020-03-26 14:03:17'),(7354,'english','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:01','2020-03-26 14:10:37'),(7355,'mathematics','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:03','2020-03-26 14:10:38'),(7356,'irk','3.94.121.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:26:17','2020-03-26 19:26:17'),(7357,'chemistry','114.119.161.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:45:34','2020-03-26 19:45:34'),(7358,'crk','174.129.131.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 22:50:44','2020-03-26 22:50:44'),(7359,'commerce','3.91.233.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 01:48:15','2020-03-27 01:48:15'),(7360,'accounting','54.208.155.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 05:24:26','2020-03-27 05:24:26'),(7361,'economics','52.91.100.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:22:14','2020-03-27 09:22:14'),(7362,'chemistry','66.102.8.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:51:49','2020-03-27 09:51:51'),(7363,'government','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 10:43:15','2020-03-27 10:43:15'),(7364,'chemistry','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:21:50','2020-03-27 11:21:50'),(7365,'english','102.89.0.135',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:47','2020-03-27 11:36:38'),(7366,'mathematics','102.89.1.184',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:48','2020-04-27 18:37:31'),(7367,'mathematics','102.89.1.114',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:33:55','2020-03-27 11:33:55'),(7368,'mathematics','102.89.0.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:36:39','2020-03-27 11:36:39'),(7369,'geography','54.209.201.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 13:36:58','2020-03-27 13:36:58'),(7370,'commerce','54.162.99.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 14:52:49','2020-03-27 14:52:49'),(7371,'economics','34.227.72.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 17:36:43','2020-03-27 17:36:43'),(7372,'crk','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 19:48:01','2020-03-27 19:48:01'),(7373,'insurance','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 20:10:12','2020-03-27 20:10:12'),(7374,'mathematics','18.212.220.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 22:19:25','2020-03-27 22:19:25'),(7375,'englishlit','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:27:23','2020-03-27 23:27:23'),(7376,'english','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:38:18','2020-03-27 23:38:18'),(7377,'crk','54.91.106.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 02:52:57','2020-03-28 02:52:57'),(7378,'english','54.204.180.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 04:14:13','2020-03-28 04:14:13'),(7379,'accounting','105.112.31.78',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:01:29','2020-03-28 06:01:32'),(7380,'chemistry','105.112.31.78',218,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 06:16:34','2020-03-28 10:26:50'),(7381,'mathematics','105.112.31.78',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:21:28','2020-03-28 06:21:37'),(7382,'crk','105.112.31.78',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:24:50','2020-03-28 06:24:54'),(7383,'crk','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:58:54','2020-03-28 06:58:57'),(7384,'mathematics','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:59:17','2020-03-28 06:59:19'),(7385,'biology','3.81.58.70',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:00:16','2020-03-28 07:28:03'),(7386,'biology','18.212.96.129',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:28:19','2020-03-28 07:29:29'),(7387,'chemistry','18.212.96.129',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 07:29:37','2020-03-28 07:46:04'),(7388,'mathematics','18.212.96.129',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:30:36','2020-03-28 07:30:39'),(7389,'chemistry','54.196.165.71',160,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:19:31','2020-03-28 08:21:56'),(7390,'crk','3.82.235.188',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:53:24','2020-03-28 08:53:24'),(7391,'chemistry','157.55.39.86',7,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 09:13:40','2020-03-28 09:13:40'),(7392,'physics','54.145.168.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 14:48:56','2020-03-28 14:48:56'),(7393,'english','35.172.185.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 17:23:34','2020-03-28 17:23:34'),(7394,'currentaffairs','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 18:18:16','2020-03-28 18:18:16'),(7395,'englishlit','54.84.20.113',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 18:46:01','2020-03-28 18:46:01'),(7396,'crk','34.207.92.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 20:17:19','2020-03-28 20:17:19'),(7397,'englishlit','54.227.76.74',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 22:38:07','2020-03-28 22:38:07'),(7398,'chemistry','100.26.102.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 23:45:57','2020-03-28 23:45:57'),(7399,'english','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:26:48','2020-03-29 01:26:48'),(7400,'government','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:48:28','2020-03-29 01:48:28'),(7401,'currentaffairs','54.166.138.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 02:46:57','2020-03-29 02:46:57'),(7402,'economics','54.224.84.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 03:48:49','2020-03-29 03:48:49'),(7403,'chemistry','3.235.65.91',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 05:20:26','2020-03-29 05:44:48'),(7404,'english','54.174.190.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 10:18:53','2020-03-29 10:18:53'),(7405,'civiledu','54.172.166.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:13:13','2020-03-29 11:13:13'),(7406,'chemistry','54.174.40.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:55:39','2020-03-29 11:55:39'),(7407,'chemistry','180.103.58.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:00:01','2020-03-29 12:00:01'),(7408,'chemistry','82.145.220.58',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:01:04','2020-03-29 12:01:05'),(7409,'mathematics','54.92.219.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:42:18','2020-03-29 12:42:18'),(7410,'mathematics','18.206.91.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 13:35:15','2020-03-29 13:35:15'),(7411,'chemistry','58.255.198.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 14:37:51','2020-03-29 14:37:51'),(7412,'chemistry','111.160.25.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 17:47:36','2020-03-29 17:47:36'),(7413,'chemistry','18.206.237.17',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 18:38:42','2020-03-29 18:38:45'),(7414,'currentaffairs','54.163.120.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 19:48:21','2020-03-29 19:48:21'),(7415,'chemistry','54.145.49.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 21:49:35','2020-03-29 21:49:35'),(7416,'englishlit','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:05:16','2020-03-30 01:05:16'),(7417,'accounting','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:33:36','2020-03-30 01:33:36'),(7418,'commerce','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7419,'accounting','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7420,'physics','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7421,'geography','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7422,'civiledu','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7423,'currentaffairs','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7424,'history','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7425,'mathematics','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:50:17','2020-03-31 05:50:17'),(7426,'commerce','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:51:26','2020-03-31 05:51:26'),(7427,'geography','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 07:58:39','2020-03-31 10:19:30'),(7428,'biology','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:01:26','2020-03-31 09:22:41'),(7429,'currentaffairs','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:27:55','2020-03-31 09:50:10'),(7430,'government','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:46:16','2020-03-31 10:11:00'),(7431,'civiledu','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:00:56','2020-03-31 09:10:50'),(7432,'english','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:08:10','2020-03-31 10:09:09'),(7433,'mathematics','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7434,'commerce','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 10:07:16'),(7435,'chemistry','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7436,'crk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7437,'irk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7438,'englishlit','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 16:48:59','2020-03-31 16:48:59'),(7439,'physics','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 17:25:08','2020-03-31 17:25:08'),(7440,'geography','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 18:36:35','2020-03-31 18:36:35'),(7441,'currentaffairs','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 19:04:20','2020-03-31 19:04:20'),(7442,'currentaffairs','54.224.172.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 21:22:54','2020-03-31 21:22:54'),(7443,'chemistry','197.210.84.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:38','2020-03-31 22:04:43'),(7444,'chemistry','197.210.84.199',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:50','2020-03-31 22:04:55'),(7445,'chemistry','197.210.84.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:05:03','2020-03-31 22:05:05'),(7446,'physics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:04:01','2020-04-01 02:04:01'),(7447,'mathematics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:10:56','2020-04-01 02:10:56'),(7448,'mathematics','3.80.85.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 04:50:44','2020-04-01 04:50:44'),(7449,'mathematics','18.212.146.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 06:03:05','2020-04-01 06:03:05'),(7450,'chemistry','114.119.163.81',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 09:42:15','2020-04-01 09:42:15'),(7451,'chemistry','197.211.57.245',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 12:50:39','2020-04-01 12:52:16'),(7452,'english','34.230.39.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 16:42:36','2020-04-01 16:42:36'),(7453,'mathematics','18.234.121.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 19:01:10','2020-04-01 19:01:10'),(7454,'accounting','54.147.176.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 20:49:28','2020-04-01 20:49:28'),(7455,'biology','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:56','2020-04-01 21:17:56'),(7456,'physics','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7457,'government','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7458,'geography','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7459,'economics','54.147.176.88',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-22 05:41:24'),(7460,'civiledu','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7461,'insurance','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7462,'chemistry','54.36.148.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 00:49:26','2020-04-02 00:49:29'),(7463,'history','54.236.10.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 03:47:55','2020-04-02 03:47:55'),(7464,'chemistry','197.210.70.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 20:57:50','2020-04-02 20:57:52'),(7465,'economics','34.229.174.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 01:39:45','2020-04-03 01:39:45'),(7466,'history','3.81.12.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 02:51:48','2020-04-03 02:51:48'),(7467,'government','102.89.1.199',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 11:46:35','2020-04-03 11:46:36'),(7468,'commerce','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7469,'accounting','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7470,'crk','54.224.177.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:53:40'),(7471,'economics','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7472,'civiledu','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7473,'currentaffairs','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7474,'history','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7475,'physics','54.227.76.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 18:36:02','2020-04-03 18:36:02'),(7476,'english','3.85.190.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 21:48:32','2020-04-03 21:48:32'),(7477,'commerce','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 23:42:41','2020-04-03 23:42:41'),(7478,'economics','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 00:01:21','2020-04-04 00:01:21'),(7479,'chemistry','207.46.13.220',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 01:45:34','2020-04-04 10:12:07'),(7480,'government','54.209.223.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 02:40:53','2020-04-04 02:40:53'),(7481,'geography','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:46:07','2020-04-04 03:46:07'),(7482,'chemistry','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:56:04','2020-04-04 03:56:04'),(7483,'government','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 04:24:02','2020-04-04 04:24:02'),(7484,'economics','54.87.134.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:29:31','2020-04-04 08:29:31'),(7485,'mathematics','105.112.56.96',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:37:54','2020-04-04 08:42:05'),(7486,'english','197.210.71.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:22:13','2020-04-04 10:22:13'),(7487,'chemistry','197.211.61.123',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:43:13','2020-04-04 10:46:06'),(7488,'physics','197.211.61.123',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:46:42','2020-04-04 10:46:42'),(7489,'english','197.211.61.123',726,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:11','2020-04-04 12:22:56'),(7490,'commerce','3.80.214.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:21','2020-04-04 10:47:21'),(7491,'english','197.211.61.125',406,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-04 12:41:24','2020-04-04 13:00:00'),(7492,'chemistry','197.211.61.125',10,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:00:38','2020-04-04 13:13:18'),(7493,'insurance','3.86.32.0',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:22:34','2020-04-04 13:22:34'),(7494,'englishlit','52.23.172.123',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:17:24','2020-04-04 14:17:24'),(7495,'chemistry','157.55.39.42',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:48:38','2020-04-04 14:48:38'),(7496,'chemistry','66.249.64.104',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:18:30','2020-04-04 17:18:31'),(7497,'english','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:20:12','2020-04-04 17:20:12'),(7498,'crk','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:30:11','2020-04-04 17:30:11'),(7499,'crk','54.163.215.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 22:41:54','2020-04-04 22:41:54'),(7500,'physics','52.91.100.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 04:23:04','2020-04-05 04:23:04'),(7501,'biology','3.81.133.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 05:11:31','2020-04-05 05:11:31'),(7502,'englishlit','54.89.124.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 06:31:33','2020-04-05 06:31:33'),(7503,'chemistry','197.210.71.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:23:44','2020-04-05 08:23:44'),(7504,'chemistry','197.210.71.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:35','2020-04-05 08:28:01'),(7505,'chemistry','197.210.71.175',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:53','2020-04-05 08:29:40'),(7506,'chemistry','197.210.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:28:36','2020-04-05 08:28:36'),(7507,'english','197.210.71.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:32:51','2020-04-05 08:32:53'),(7508,'english','197.210.174.172',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:34:34','2020-04-05 08:34:37'),(7509,'currentaffairs','3.87.91.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 09:08:45','2020-04-05 09:08:45'),(7510,'crk','18.206.247.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:11:56','2020-04-05 10:11:56'),(7511,'englishlit','3.208.20.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:55:11','2020-04-05 10:55:11'),(7512,'chemistry','66.249.88.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 11:30:48','2020-04-05 11:30:50'),(7513,'economics','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:16:19','2020-04-05 12:16:19'),(7514,'government','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:53:23','2020-04-05 12:53:23'),(7515,'english','34.233.133.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 13:47:53','2020-04-05 13:47:53'),(7516,'mathematics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7517,'commerce','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7518,'biology','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7519,'physics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7520,'chemistry','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7521,'englishlit','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:26'),(7522,'history','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:26','2020-04-06 12:14:26'),(7523,'accounting','54.152.156.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:19:13','2020-04-06 12:19:13'),(7524,'accounting','3.80.94.111',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 15:07:41','2020-04-06 15:07:41'),(7525,'chemistry','105.112.115.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 22:20:42','2020-04-06 22:20:42'),(7526,'commerce','34.227.162.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 06:35:37','2020-04-07 06:35:37'),(7527,'crk','107.23.255.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 08:35:49','2020-04-07 08:35:49'),(7528,'physics','18.212.66.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 09:45:19','2020-04-07 09:45:19'),(7529,'mathematics','34.236.143.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 13:42:20','2020-04-07 13:42:20'),(7530,'chemistry','64.233.172.196',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 14:19:21','2020-04-07 14:19:22'),(7531,'chemistry','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:06','2020-04-07 16:55:06'),(7532,'chemistry','197.210.53.20',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:14','2020-04-07 16:55:14'),(7533,'chemistry','197.210.52.112',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:33','2020-04-07 16:55:33'),(7534,'geography','3.95.225.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 17:53:36','2020-04-07 17:53:36'),(7535,'chemistry','197.210.52.88',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:07:14','2020-04-07 19:19:19'),(7536,'chemistry','197.210.53.6',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:32:43','2020-04-07 18:39:36'),(7537,'chemistry','197.210.52.36',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:34:00','2020-04-07 18:43:49'),(7538,'chemistry','197.210.53.99',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:05','2020-04-07 19:17:34'),(7539,'chemistry','197.210.52.22',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:27','2020-04-07 18:48:54'),(7540,'english','197.210.53.99',695,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:56'),(7541,'english','197.210.53.6',765,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:31'),(7542,'english','197.210.53.65',848,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:28:00'),(7543,'english','197.210.52.12',917,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:55'),(7544,'english','197.210.52.88',795,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:55'),(7545,'english','197.210.52.36',477,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:58'),(7546,'geography','18.205.107.57',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 20:02:08','2020-04-07 20:02:08'),(7547,'english','108.41.239.178',1802,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-12 16:31:21'),(7548,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7549,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7550,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7551,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7552,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7553,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7554,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7555,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7556,'irk','108.41.239.178',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:01','2020-04-12 16:31:20'),(7557,'civiledu','108.41.239.178',626,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7558,'insurance','108.41.239.178',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:23'),(7559,'currentaffairs','108.41.239.178',429,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7560,'physics','54.156.62.219',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 00:38:52','2020-04-08 00:38:52'),(7561,'englishlit','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:17:24','2020-04-08 01:17:24'),(7562,'geography','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:43:32','2020-04-08 01:43:32'),(7563,'currentaffairs','3.94.134.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 03:38:40','2020-04-08 03:38:40'),(7564,'chemistry','77.88.5.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-08 04:45:23','2020-04-08 04:45:23'),(7565,'english','18.206.175.184',3,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:05'),(7566,'chemistry','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7567,'government','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7568,'geography','18.206.175.184',2,'','NG','','Lagos',NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7569,'irk','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7570,'civiledu','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7571,'currentaffairs','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7572,'mathematics','3.95.38.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 10:05:10','2020-04-08 10:05:10'),(7573,'geography','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 11:58:50','2020-04-08 11:58:50'),(7574,'physics','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 12:09:29','2020-04-08 12:09:29'),(7575,'mathematics','34.230.69.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 13:57:51','2020-04-08 13:57:51'),(7576,'accounting','54.152.166.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 03:29:44','2020-04-09 03:29:44'),(7577,'chemistry','34.203.216.217',233,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 06:33:24','2020-04-09 06:37:01'),(7578,'chemistry','197.210.70.115',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 11:54:08','2020-04-09 16:40:18'),(7579,'chemistry','197.210.71.11',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:31','2020-04-09 17:27:14'),(7580,'chemistry','197.210.70.183',287,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:58','2020-04-09 17:20:35'),(7581,'english','197.210.70.109',813,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:40:07'),(7582,'english','197.210.70.69',465,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:38:21'),(7583,'english','197.210.70.149',469,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:25:34'),(7584,'english','197.210.70.211',792,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:31'),(7585,'english','197.210.70.81',624,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7586,'english','197.210.70.183',315,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:35'),(7587,'english','197.210.70.205',600,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7588,'english','197.210.71.235',595,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:17'),(7589,'english','197.210.70.27',674,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:52'),(7590,'english','197.210.70.15',552,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:44'),(7591,'english','197.210.71.79',478,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:33'),(7592,'english','197.210.70.251',820,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:20:15'),(7593,'english','197.210.70.95',701,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:25:00'),(7594,'english','197.210.70.115',676,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:47','2020-04-09 17:26:31'),(7595,'english','197.210.70.225',620,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:48','2020-04-09 17:26:34'),(7596,'english','197.210.70.53',679,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:33'),(7597,'english','197.210.70.239',623,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:24:53'),(7598,'english','197.210.70.217',663,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:30'),(7599,'english','197.210.70.1',515,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:51','2020-04-09 17:24:27'),(7600,'english','197.210.70.137',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:52','2020-04-09 17:25:32'),(7601,'english','197.210.71.11',588,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:58','2020-04-09 17:19:49'),(7602,'english','197.210.70.41',639,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:59','2020-04-09 17:25:34'),(7603,'english','197.210.70.121',555,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:00','2020-04-09 17:25:35'),(7604,'english','197.210.70.189',462,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:01','2020-04-09 17:25:35'),(7605,'english','197.210.70.171',473,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:04','2020-04-09 17:26:34'),(7606,'english','197.210.71.167',510,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:14','2020-04-09 17:24:21'),(7607,'chemistry','197.210.70.109',327,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:42','2020-04-09 17:24:47'),(7608,'mathematics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:35'),(7609,'mathematics','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:28'),(7610,'mathematics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:18:51'),(7611,'mathematics','197.210.70.171',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:24:24'),(7612,'mathematics','197.210.71.167',520,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:25:25'),(7613,'mathematics','197.210.70.69',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:19:18'),(7614,'mathematics','197.210.70.115',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:18:11'),(7615,'mathematics','197.210.70.149',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:51'),(7616,'mathematics','197.210.70.137',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:38'),(7617,'mathematics','197.210.70.95',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:35'),(7618,'mathematics','197.210.70.121',360,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:39'),(7619,'mathematics','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:07'),(7620,'accounting','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:37'),(7621,'accounting','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:18:19'),(7622,'commerce','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:19:14'),(7623,'commerce','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:51'),(7624,'commerce','197.210.70.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 15:19:39'),(7625,'commerce','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:33'),(7626,'accounting','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:18'),(7627,'accounting','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:43'),(7628,'commerce','197.210.71.11',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:44'),(7629,'accounting','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:27:00'),(7630,'commerce','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:26:47'),(7631,'commerce','197.210.71.79',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:24:23'),(7632,'biology','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:20:25'),(7633,'commerce','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:17'),(7634,'mathematics','197.210.70.15',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:30'),(7635,'biology','197.210.71.11',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:40','2020-04-09 17:26:43'),(7636,'biology','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:20:31'),(7637,'biology','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:26:10'),(7638,'commerce','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:56'),(7639,'accounting','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:27:03'),(7640,'biology','197.210.70.41',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:55'),(7641,'biology','197.210.70.251',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:26:55'),(7642,'accounting','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:25:57'),(7643,'biology','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:26:42'),(7644,'physics','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:19:26'),(7645,'biology','197.210.71.167',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:25:49'),(7646,'physics','197.210.70.95',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:26:56'),(7647,'physics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:59'),(7648,'englishlit','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:11'),(7649,'physics','197.210.70.81',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:26:59'),(7650,'physics','197.210.70.239',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:19:05'),(7651,'physics','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:50'),(7652,'biology','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:20:21'),(7653,'englishlit','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:12'),(7654,'physics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:18:58'),(7655,'chemistry','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:51','2020-04-09 16:40:16'),(7656,'chemistry','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:18:32'),(7657,'physics','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:26:02'),(7658,'chemistry','197.210.71.167',480,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:53','2020-04-09 17:27:14'),(7659,'englishlit','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:54','2020-04-09 17:18:22'),(7660,'englishlit','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:55','2020-04-09 17:26:25'),(7661,'englishlit','197.210.70.121',357,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:56','2020-04-09 17:26:21'),(7662,'government','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:17'),(7663,'chemistry','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:09'),(7664,'government','197.210.70.27',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:27'),(7665,'englishlit','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:18:20'),(7666,'chemistry','197.210.70.225',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:07'),(7667,'government','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:20:42'),(7668,'chemistry','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:19:30'),(7669,'chemistry','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:24:47'),(7670,'crk','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:59','2020-04-09 17:24:54'),(7671,'government','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:26:18'),(7672,'crk','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:25:01'),(7673,'government','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 15:51:08'),(7674,'englishlit','197.210.70.81',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:01','2020-04-09 17:26:17'),(7675,'crk','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:03','2020-04-09 17:27:20'),(7676,'geography','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:04','2020-04-09 17:27:21'),(7677,'geography','197.210.70.27',278,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:19:43'),(7678,'crk','197.210.70.81',237,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:20:43'),(7679,'government','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:08','2020-04-09 17:27:30'),(7680,'geography','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:25'),(7681,'government','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:27:17'),(7682,'crk','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:37'),(7683,'government','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:27:27'),(7684,'crk','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:25:07'),(7685,'geography','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:19:46'),(7686,'economics','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:20:58'),(7687,'economics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:26:24'),(7688,'geography','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:25:03'),(7689,'government','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:20:43'),(7690,'crk','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 16:39:57'),(7691,'crk','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 17:20:43'),(7692,'geography','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:26:23'),(7693,'economics','197.210.71.79',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:20:49'),(7694,'crk','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:27:27'),(7695,'geography','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:15','2020-04-09 17:27:29'),(7696,'economics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:17','2020-04-09 17:27:42'),(7697,'economics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:18','2020-04-09 17:25:03'),(7698,'irk','197.210.70.15',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:19:50'),(7699,'economics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:26:12'),(7700,'economics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:27:42'),(7701,'irk','197.210.71.167',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:20','2020-04-09 17:20:47'),(7702,'civiledu','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:43'),(7703,'irk','197.210.70.53',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:25:11'),(7704,'economics','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:32'),(7705,'irk','197.210.70.41',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:18:38'),(7706,'currentaffairs','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:23','2020-04-09 17:25:07'),(7707,'irk','197.210.70.81',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:25:14'),(7708,'civiledu','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:19:55'),(7709,'insurance','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:20:58'),(7710,'currentaffairs','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:21:02'),(7711,'insurance','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:27:50'),(7712,'currentaffairs','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:21:07'),(7713,'civiledu','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 16:40:24'),(7714,'currentaffairs','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:28','2020-04-09 16:40:39'),(7715,'civiledu','197.210.70.27',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:27:51'),(7716,'history','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:21:10'),(7717,'currentaffairs','197.210.71.11',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:20:06'),(7718,'civiledu','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:27:39'),(7719,'currentaffairs','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 17:20:11'),(7720,'insurance','197.210.70.205',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 15:22:09'),(7721,'insurance','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 16:34:20'),(7722,'insurance','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:33','2020-04-09 17:27:51'),(7723,'civiledu','197.210.70.95',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:27:39'),(7724,'irk','197.210.71.11',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:25:10'),(7725,'civiledu','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 16:29:46'),(7726,'insurance','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:27:52'),(7727,'civiledu','197.210.70.211',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:20:55'),(7728,'irk','197.210.70.69',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:18:39'),(7729,'currentaffairs','197.210.70.53',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:20:06'),(7730,'civiledu','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:47'),(7731,'currentaffairs','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:48'),(7732,'currentaffairs','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:48'),(7733,'history','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:28:00'),(7734,'history','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:55'),(7735,'economics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:42'),(7736,'irk','197.210.70.217',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:20:51'),(7737,'insurance','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:40','2020-04-09 17:19:57'),(7738,'insurance','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:18:43'),(7739,'insurance','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 16:40:38'),(7740,'history','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:21:10'),(7741,'history','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:20:11'),(7742,'history','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 16:40:37'),(7743,'history','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 17:21:05'),(7744,'history','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:28:01'),(7745,'history','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:27:54'),(7746,'mathematics','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:22'),(7747,'commerce','197.210.70.41',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:24'),(7748,'commerce','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:38'),(7749,'biology','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:27:10'),(7750,'mathematics','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:47'),(7751,'commerce','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:24:39'),(7752,'commerce','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:59','2020-04-09 17:26:44'),(7753,'mathematics','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:25:39'),(7754,'accounting','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:24:41'),(7755,'commerce','197.210.70.53',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:04','2020-04-09 17:24:17'),(7756,'mathematics','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:05','2020-04-09 17:25:37'),(7757,'accounting','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:06','2020-04-09 17:19:01'),(7758,'biology','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:26:47'),(7759,'biology','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:18:58'),(7760,'commerce','197.210.70.109',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:19:01'),(7761,'commerce','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:20:12'),(7762,'accounting','197.210.70.171',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:11','2020-04-09 17:26:47'),(7763,'accounting','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:12','2020-04-09 17:26:40'),(7764,'mathematics','197.210.70.189',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:26:31'),(7765,'englishlit','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:27:13'),(7766,'accounting','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:25:40'),(7767,'accounting','197.210.70.53',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:20:21'),(7768,'biology','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:56'),(7769,'commerce','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:39'),(7770,'accounting','197.210.71.235',319,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:19:25'),(7771,'physics','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:25:59'),(7772,'chemistry','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:19','2020-04-09 17:26:05'),(7773,'accounting','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:26:47'),(7774,'physics','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:19:23'),(7775,'government','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:22','2020-04-09 17:24:50'),(7776,'englishlit','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:24','2020-04-09 17:26:21'),(7777,'physics','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:25','2020-04-09 16:31:21'),(7778,'englishlit','197.210.70.211',398,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 17:27:22'),(7779,'biology','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 16:39:44'),(7780,'government','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 16:40:23'),(7781,'chemistry','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 17:26:09'),(7782,'irk','197.210.71.235',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:29','2020-04-09 17:25:52'),(7783,'englishlit','197.210.70.205',438,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:30','2020-04-09 17:27:13'),(7784,'irk','197.210.70.27',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:19:47'),(7785,'civiledu','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:26:16'),(7786,'civiledu','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 16:34:11'),(7787,'government','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 17:26:23'),(7788,'crk','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:17'),(7789,'civiledu','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:38'),(7790,'geography','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:25:05'),(7791,'government','197.210.70.189',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:27:08'),(7792,'government','197.210.71.79',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:24:48'),(7793,'history','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:36','2020-04-09 16:40:38'),(7794,'currentaffairs','197.210.70.69',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:38','2020-04-09 16:32:06'),(7795,'civiledu','197.210.70.189',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:39','2020-04-09 17:21:04'),(7796,'geography','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:41','2020-04-09 17:27:25'),(7797,'chemistry','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:26:14'),(7798,'irk','197.210.70.239',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:19:59'),(7799,'government','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:24:54'),(7800,'civiledu','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:43','2020-04-09 17:26:17'),(7801,'crk','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:24:50'),(7802,'geography','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:27:23'),(7803,'economics','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:18:37'),(7804,'currentaffairs','197.210.70.225',437,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:21:06'),(7805,'physics','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:59'),(7806,'physics','197.210.70.137',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:55'),(7807,'economics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:47','2020-04-09 17:25:08'),(7808,'crk','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:20:52'),(7809,'geography','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:27:37'),(7810,'irk','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:49','2020-04-09 17:20:45'),(7811,'currentaffairs','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:21:03'),(7812,'government','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:27:14'),(7813,'biology','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:24:31'),(7814,'currentaffairs','197.210.70.121',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:53','2020-04-09 17:27:52'),(7815,'irk','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:34'),(7816,'crk','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:29'),(7817,'economics','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 17:20:58'),(7818,'history','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 16:32:01'),(7819,'crk','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:59','2020-04-09 17:25:00'),(7820,'englishlit','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:24:53'),(7821,'irk','197.210.70.171',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:27:35'),(7822,'crk','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:38:38'),(7823,'history','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:42'),(7824,'insurance','197.210.70.95',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:19:56'),(7825,'geography','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:09'),(7826,'crk','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:33:56'),(7827,'irk','197.210.70.189',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:27:33'),(7828,'insurance','197.210.70.251',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:25:11'),(7829,'civiledu','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:07','2020-04-09 17:20:56'),(7830,'insurance','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 16:34:15'),(7831,'irk','197.210.70.149',176,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 17:27:41'),(7832,'currentaffairs','197.210.70.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 16:40:42'),(7833,'economics','197.210.70.121',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 17:25:07'),(7834,'commerce','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:50'),(7835,'commerce','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:41'),(7836,'crk','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:20:44'),(7837,'chemistry','197.210.70.251',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:05'),(7838,'mathematics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:19:13'),(7839,'englishlit','197.210.71.235',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:07'),(7840,'commerce','197.210.70.137',236,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:26:31'),(7841,'commerce','197.210.71.167',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:24:23'),(7842,'biology','197.210.70.137',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:26:06'),(7843,'mathematics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:20:20'),(7844,'accounting','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:25:53'),(7845,'biology','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:46','2020-04-09 17:26:11'),(7846,'accounting','197.210.70.239',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:26:54'),(7847,'government','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:27:08'),(7848,'physics','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:48','2020-04-09 17:26:05'),(7849,'physics','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:24:29'),(7850,'physics','197.210.71.167',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:19:22'),(7851,'englishlit','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:26:09'),(7852,'physics','197.210.70.149',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:50','2020-04-09 17:26:08'),(7853,'chemistry','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:27:13'),(7854,'geography','197.210.70.137',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:25:02'),(7855,'geography','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:20:50'),(7856,'geography','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:25:06'),(7857,'accounting','197.210.71.11',119,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:20:26'),(7858,'physics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:19:05'),(7859,'chemistry','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:18:26'),(7860,'crk','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 16:39:56'),(7861,'geography','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:25:18'),(7862,'government','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:24:59'),(7863,'economics','197.210.70.217',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:27:25'),(7864,'government','197.210.70.239',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:27:11'),(7865,'economics','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:26:31'),(7866,'irk','197.210.70.1',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:19:46'),(7867,'insurance','197.210.70.225',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 16:40:29'),(7868,'irk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:20:55'),(7869,'economics','197.210.70.183',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:27:43'),(7870,'civiledu','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:58','2020-04-09 17:27:43'),(7871,'currentaffairs','197.210.70.149',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 17:21:04'),(7872,'civiledu','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 16:31:55'),(7873,'history','197.210.70.81',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 16:30:00'),(7874,'civiledu','197.210.70.41',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:27:44'),(7875,'currentaffairs','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:28:03'),(7876,'insurance','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:20:03'),(7877,'economics','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:19:53'),(7878,'irk','197.210.70.95',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:19:52'),(7879,'currentaffairs','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:03'),(7880,'currentaffairs','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:10'),(7881,'history','197.210.70.121',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 16:29:54'),(7882,'insurance','197.210.70.239',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 16:40:27'),(7883,'irk','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 17:27:47'),(7884,'biology','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:19:01'),(7885,'commerce','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:25:59'),(7886,'englishlit','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:56','2020-04-09 16:33:35'),(7887,'physics','197.210.70.115',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:57','2020-04-09 17:26:57'),(7888,'englishlit','197.210.70.53',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:26:09'),(7889,'crk','197.210.70.211',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:14'),(7890,'geography','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:27'),(7891,'crk','197.210.70.27',317,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:27:27'),(7892,'physics','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:20:31'),(7893,'chemistry','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:18:23'),(7894,'biology','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:20:24'),(7895,'economics','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 15:51:41'),(7896,'englishlit','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:27:12'),(7897,'accounting','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:20:23'),(7898,'commerce','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:26:40'),(7899,'chemistry','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:19:34'),(7900,'irk','197.210.70.115',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:27:38'),(7901,'physics','197.210.70.183',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:25:59'),(7902,'accounting','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:00'),(7903,'economics','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:45'),(7904,'government','197.210.70.205',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:04','2020-04-09 17:26:07'),(7905,'crk','197.210.70.225',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 17:27:17'),(7906,'geography','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:40:36'),(7907,'geography','197.210.70.251',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:38:42'),(7908,'insurance','197.210.70.121',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:27:49'),(7909,'englishlit','197.210.70.137',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:26:15'),(7910,'chemistry','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:20:41'),(7911,'economics','197.210.70.109',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 16:40:33'),(7912,'mathematics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 17:26:43'),(7913,'insurance','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 16:40:42'),(7914,'economics','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:27:31'),(7915,'englishlit','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:24:55'),(7916,'irk','197.210.70.109',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:18:37'),(7917,'mathematics','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:25:46'),(7918,'mathematics','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:43'),(7919,'commerce','197.210.70.95',222,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:45'),(7920,'accounting','197.210.70.115',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:21','2020-04-09 17:19:09'),(7921,'biology','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:27:04'),(7922,'commerce','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:26:35'),(7923,'physics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:23','2020-04-09 17:26:48'),(7924,'physics','197.210.70.225',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:24','2020-04-09 17:26:55'),(7925,'irk','197.210.70.137',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:25','2020-04-09 17:27:41'),(7926,'chemistry','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:26','2020-04-09 17:19:10'),(7927,'englishlit','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:24:44'),(7928,'irk','197.210.70.225',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 16:19:11'),(7929,'government','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:26:12'),(7930,'crk','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:28','2020-04-09 17:24:46'),(7931,'englishlit','197.210.70.217',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:24:57'),(7932,'civiledu','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:19:55'),(7933,'government','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:42'),(7934,'englishlit','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:54'),(7935,'civiledu','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:31','2020-04-09 17:18:40'),(7936,'englishlit','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:27:09'),(7937,'geography','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 16:31:42'),(7938,'government','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:25:00'),(7939,'currentaffairs','197.210.70.189',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:33','2020-04-09 17:28:02'),(7940,'insurance','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:34','2020-04-09 17:25:10'),(7941,'insurance','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:27:49'),(7942,'civiledu','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:25'),(7943,'crk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:23'),(7944,'currentaffairs','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:13'),(7945,'geography','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:04'),(7946,'mathematics','197.210.70.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:16','2020-04-09 17:19:16'),(7947,'crk','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:23','2020-04-09 17:27:26'),(7948,'biology','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:25','2020-04-09 17:24:31'),(7949,'chemistry','197.210.70.41',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:26','2020-04-09 17:19:28'),(7950,'physics','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:29','2020-04-09 17:24:35'),(7951,'accounting','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:30','2020-04-09 17:26:46'),(7952,'englishlit','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:33','2020-04-09 17:27:10'),(7953,'englishlit','197.210.70.27',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:34','2020-04-09 17:24:45'),(7954,'geography','197.210.70.189',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:37','2020-04-09 17:25:02'),(7955,'crk','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:41','2020-04-09 17:27:28'),(7956,'economics','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:42','2020-04-09 17:20:52'),(7957,'geography','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:46','2020-04-09 17:27:26'),(7958,'civiledu','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:47','2020-04-09 17:26:19'),(7959,'insurance','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:27:47'),(7960,'insurance','197.210.71.235',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:19:59'),(7961,'currentaffairs','197.210.71.235',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:50','2020-04-09 17:25:28'),(7962,'history','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:05'),(7963,'history','197.210.70.189',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:03'),(7964,'civiledu','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:55','2020-04-09 17:27:40'),(7965,'insurance','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:56','2020-04-09 17:27:32'),(7966,'currentaffairs','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:57','2020-04-09 17:25:24'),(7967,'currentaffairs','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:58','2020-04-09 17:20:07'),(7968,'mathematics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:20:18'),(7969,'biology','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:19:04'),(7970,'physics','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:18','2020-04-09 17:20:28'),(7971,'biology','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:32','2020-04-09 17:26:52'),(7972,'chemistry','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:52','2020-04-09 17:26:57'),(7973,'chemistry','197.210.70.211',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:54','2020-04-09 17:20:38'),(7974,'irk','197.210.71.79',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:04','2020-04-09 17:20:50'),(7975,'civiledu','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:18','2020-04-09 17:21:29'),(7976,'insurance','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:20','2020-04-09 17:18:43'),(7977,'insurance','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:23','2020-04-09 17:27:58'),(7978,'currentaffairs','197.210.70.81',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:28','2020-04-09 17:27:55'),(7979,'currentaffairs','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:31','2020-04-09 17:27:56'),(7980,'government','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:34','2020-04-09 17:24:55'),(7981,'government','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 17:27:26'),(7982,'history','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 16:40:41'),(7983,'accounting','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:38','2020-04-09 17:20:26'),(7984,'history','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:39','2020-04-09 17:20:15'),(7985,'accounting','197.210.70.27',233,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:40','2020-04-09 17:19:23'),(7986,'history','197.210.70.95',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:41','2020-04-09 16:19:47'),(7987,'economics','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:27:56','2020-04-09 17:27:35'),(7988,'chemistry','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:01','2020-04-09 17:27:09'),(7989,'mathematics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:14','2020-04-09 17:25:47'),(7990,'accounting','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:34','2020-04-09 17:20:17'),(7991,'biology','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:35','2020-04-09 17:26:04'),(7992,'biology','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:36','2020-04-09 17:24:26'),(7993,'englishlit','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:45','2020-04-09 17:20:33'),(7994,'chemistry','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:54','2020-04-09 17:19:28'),(7995,'economics','197.210.70.211',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:12','2020-04-09 17:26:24'),(7996,'geography','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:15','2020-04-09 17:27:26'),(7997,'geography','197.210.70.239',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:20','2020-04-09 17:27:32'),(7998,'civiledu','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:28','2020-04-09 17:20:03'),(7999,'government','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:22','2020-04-09 17:27:20'),(8000,'irk','197.210.70.211',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:38','2020-04-09 17:26:26'),(8001,'insurance','197.210.70.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:20:02'),(8002,'history','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:08'),(8003,'history','197.210.70.217',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:07'),(8004,'history','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:47','2020-04-09 17:20:12'),(8005,'history','197.210.70.211',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:52','2020-04-09 17:21:12'),(8006,'history','197.210.70.205',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:55','2020-04-09 17:21:06'),(8007,'commerce','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:09','2020-04-09 17:20:20'),(8008,'physics','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:11','2020-04-09 17:20:37'),(8009,'civiledu','197.210.70.149',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:49','2020-04-09 17:21:00'),(8010,'economics','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:52','2020-04-09 17:20:57'),(8011,'currentaffairs','197.210.70.183',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:09','2020-04-09 17:27:59'),(8012,'history','197.210.70.137',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:13','2020-04-09 16:34:24'),(8013,'crk','197.210.70.137',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:38:31','2020-04-09 17:19:42'),(8014,'accounting','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:39:37','2020-04-09 17:26:43'),(8015,'biology','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:12','2020-04-09 17:27:01'),(8016,'geography','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:28','2020-04-09 17:20:54'),(8017,'insurance','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:33','2020-04-09 17:21:00'),(8018,'economics','197.210.70.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 17:20:44','2020-04-09 17:20:50'),(8019,'civiledu','18.232.76.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:01:19','2020-04-10 02:01:19'),(8020,'economics','3.88.169.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:51:46','2020-04-10 02:51:46'),(8021,'history','3.82.157.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 05:11:10','2020-04-10 05:11:10'),(8022,'mathematics','54.196.241.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 06:19:44','2020-04-10 06:19:44'),(8023,'history','3.88.70.16',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:01:55','2020-04-10 15:25:17'),(8024,'commerce','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8025,'physics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8026,'chemistry','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8027,'englishlit','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:14'),(8028,'crk','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8029,'irk','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:16'),(8030,'currentaffairs','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:17'),(8031,'english','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:14','2020-04-10 15:25:14'),(8032,'geography','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:15','2020-04-10 15:25:15'),(8033,'economics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:16','2020-04-10 15:25:16'),(8034,'commerce','54.89.208.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 17:29:46','2020-04-10 17:29:46'),(8035,'chemistry','197.210.8.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 18:23:00','2020-04-10 18:23:00'),(8036,'crk','35.173.248.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 19:52:55','2020-04-10 19:52:55'),(8037,'chemistry','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:34','2020-04-10 22:44:37'),(8038,'englishlit','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8039,'government','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8040,'geography','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8041,'economics','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8042,'civiledu','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8043,'insurance','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:38','2020-04-10 22:44:38'),(8044,'economics','52.55.93.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 23:42:01','2020-04-10 23:42:01'),(8045,'government','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:41:11','2020-04-11 01:41:11'),(8046,'chemistry','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:45:12','2020-04-11 01:45:12'),(8047,'geography','35.175.184.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 02:56:41','2020-04-11 02:56:41'),(8048,'government','34.224.58.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 04:37:27','2020-04-11 04:37:27'),(8049,'chemistry','116.88.133.110',51,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-11 05:33:06','2020-04-19 15:27:03'),(8050,'economics','3.90.47.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 05:55:15','2020-04-11 05:55:15'),(8051,'english','3.82.203.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 07:21:01','2020-04-11 07:21:01'),(8052,'biology','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8053,'government','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8054,'irk','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:09'),(8055,'civiledu','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:09'),(8056,'insurance','3.80.112.97',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:22:11'),(8057,'currentaffairs','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:10'),(8058,'history','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:10','2020-04-11 08:18:10'),(8059,'crk','54.83.85.175',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:06:53','2020-04-11 12:07:40'),(8060,'englishlit','34.229.42.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:50:10','2020-04-11 12:50:10'),(8061,'english','3.85.102.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 14:35:24','2020-04-11 14:35:24'),(8062,'crk','52.203.28.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 15:29:45','2020-04-11 15:29:45'),(8063,'crk','3.81.73.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 18:10:31','2020-04-11 18:10:31'),(8064,'commerce','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8065,'accounting','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8066,'physics','54.175.255.15',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 02:11:02'),(8067,'englishlit','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:20'),(8068,'government','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8069,'irk','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8070,'currentaffairs','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8071,'english','54.175.255.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 02:31:32','2020-04-12 02:31:32'),(8072,'currentaffairs','18.206.125.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 08:03:24','2020-04-12 08:03:24'),(8073,'mathematics','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8074,'mathematics','197.210.53.31',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:17'),(8075,'english','197.210.53.138',219,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 17:58:35'),(8076,'commerce','197.210.53.223',76,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:19'),(8077,'mathematics','197.210.53.138',290,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:36'),(8078,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8079,'english','197.210.53.31',62,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8080,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8081,'mathematics','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:31:54'),(8082,'mathematics','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8083,'english','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8084,'commerce','197.210.53.138',259,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:40'),(8085,'english','197.210.53.232',75,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:52'),(8086,'english','197.210.53.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8087,'commerce','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8088,'accounting','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8089,'currentaffairs','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:40'),(8090,'history','197.210.53.232',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8091,'civiledu','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8092,'history','197.210.53.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8093,'history','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8094,'currentaffairs','197.210.52.179',142,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8095,'civiledu','197.210.52.179',163,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8096,'history','197.210.52.170',110,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8097,'history','197.210.52.179',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:43'),(8098,'accounting','197.210.53.138',234,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-30 18:08:11'),(8099,'insurance','197.210.52.170',143,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:42'),(8100,'accounting','197.210.53.232',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:31:01'),(8101,'commerce','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:18','2020-04-12 13:30:55'),(8102,'biology','197.210.53.138',185,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:21','2020-04-30 17:57:35'),(8103,'physics','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:23'),(8104,'physics','197.210.53.138',234,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:49'),(8105,'mathematics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:52'),(8106,'accounting','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:52'),(8107,'biology','197.210.53.223',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:49'),(8108,'biology','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:24'),(8109,'physics','197.210.53.223',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:53'),(8110,'physics','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8111,'government','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8112,'englishlit','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:30'),(8113,'englishlit','197.210.53.138',160,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:15'),(8114,'physics','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8115,'englishlit','197.210.53.232',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:32'),(8116,'chemistry','197.210.53.138',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:53'),(8117,'government','197.210.53.138',182,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:57:07'),(8118,'chemistry','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:33'),(8119,'biology','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8120,'chemistry','197.210.53.232',111,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:25','2020-04-12 13:19:31'),(8121,'englishlit','197.210.52.170',122,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:30'),(8122,'chemistry','197.210.53.223',75,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:31'),(8123,'government','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:30'),(8124,'government','197.210.53.223',77,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:32'),(8125,'crk','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:30'),(8126,'government','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:30:56'),(8127,'crk','197.210.53.223',109,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:34'),(8128,'crk','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:35'),(8129,'geography','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:33'),(8130,'economics','197.210.53.138',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 17:58:26'),(8131,'geography','197.210.53.138',179,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 18:08:29'),(8132,'economics','197.210.53.223',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-12 13:19:39'),(8133,'crk','197.210.53.138',296,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-30 18:13:36'),(8134,'geography','197.210.53.31',71,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:32','2020-04-12 13:19:36'),(8135,'irk','197.210.53.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:36'),(8136,'irk','197.210.52.179',98,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:38'),(8137,'irk','197.210.52.170',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:30:47'),(8138,'economics','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:41'),(8139,'geography','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8140,'economics','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:37'),(8141,'irk','197.210.53.31',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8142,'economics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:41'),(8143,'civiledu','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:39'),(8144,'irk','197.210.53.223',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:37'),(8145,'civiledu','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:31:53'),(8146,'insurance','197.210.53.31',130,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:40'),(8147,'currentaffairs','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:31:54'),(8148,'currentaffairs','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:19:39'),(8149,'insurance','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:37','2020-04-12 13:19:40'),(8150,'currentaffairs','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:39','2020-04-12 13:19:42'),(8151,'crk','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:47','2020-04-12 13:30:50'),(8152,'commerce','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:53','2020-04-12 13:31:38'),(8153,'englishlit','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:58','2020-04-12 13:31:01'),(8154,'chemistry','197.210.52.106',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 16:15:11','2020-04-12 16:15:17'),(8155,'chemistry','105.112.50.114',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:16:45','2020-04-12 16:22:27'),(8156,'accounting','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8157,'crk','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8158,'history','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8159,'government','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8160,'commerce','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8161,'geography','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8162,'physics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8163,'biology','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8164,'englishlit','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8165,'economics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8166,'biology','34.224.87.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 03:38:22','2020-04-13 03:38:22'),(8167,'accounting','54.162.182.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 07:00:45','2020-04-13 07:00:45'),(8168,'chemistry','154.118.48.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 08:54:43','2020-04-13 08:54:59'),(8169,'chemistry','41.217.88.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 09:03:00','2020-04-13 09:03:00'),(8170,'chemistry','54.36.149.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:40:53','2020-04-13 23:40:53'),(8171,'chemistry','54.36.148.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:51:04','2020-04-13 23:51:04'),(8172,'chemistry','54.36.148.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:59:53','2020-04-13 23:59:53'),(8173,'chemistry','54.36.148.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:02:02','2020-04-14 00:02:02'),(8174,'chemistry','54.36.148.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:04:51','2020-04-14 00:04:52'),(8175,'insurance','54.166.10.181',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-14 00:24:25','2020-04-20 18:30:46'),(8176,'mathematics','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:41:23','2020-04-14 05:41:23'),(8177,'chemistry','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:48:13','2020-04-14 05:48:13'),(8178,'accounting','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:48','2020-04-14 09:01:50'),(8179,'physics','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:50','2020-04-14 09:01:50'),(8180,'chemistry','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8181,'englishlit','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8182,'civiledu','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8183,'currentaffairs','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8184,'history','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8185,'geography','18.206.240.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 10:07:05','2020-04-14 10:11:06'),(8186,'physics','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:00:35','2020-04-14 16:00:35'),(8187,'englishlit','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:37:56','2020-04-14 16:37:56'),(8188,'geography','18.206.195.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 17:01:28','2020-04-14 17:01:28'),(8189,'chemistry','217.146.176.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 18:42:57','2020-04-14 18:42:58'),(8190,'currentaffairs','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 20:54:30','2020-04-14 20:54:30'),(8191,'mathematics','54.163.208.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 00:52:55','2020-04-15 00:52:55'),(8192,'geography','100.26.52.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 01:58:43','2020-04-15 01:58:43'),(8193,'physics','34.235.149.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 02:45:09','2020-04-15 02:45:09'),(8194,'mathematics','3.87.134.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 03:39:42','2020-04-15 03:39:42'),(8195,'mathematics','34.201.57.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 04:44:44','2020-04-15 04:44:44'),(8196,'accounting','3.84.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 06:20:10','2020-04-15 06:20:10'),(8197,'chemistry','197.210.53.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:40:42','2020-04-15 10:40:43'),(8198,'chemistry','197.210.52.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:42:02','2020-04-15 10:42:02'),(8199,'insurance','52.91.233.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 15:29:09','2020-04-15 15:29:09'),(8200,'civiledu','54.242.136.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 17:12:47','2020-04-15 17:12:47'),(8201,'accounting','3.94.112.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 18:27:15','2020-04-15 18:55:50'),(8202,'history','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 19:09:02','2020-04-15 19:09:02'),(8203,'english','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8204,'commerce','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8205,'accounting','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8206,'government','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8207,'geography','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8208,'economics','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8209,'insurance','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8210,'mathematics','3.85.212.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 02:18:36','2020-04-16 02:18:36'),(8211,'economics','18.234.50.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 12:59:34','2020-04-16 12:59:34'),(8212,'history','18.215.157.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 13:52:47','2020-04-16 13:52:47'),(8213,'chemistry','197.210.44.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:42','2020-04-16 18:43:09'),(8214,'chemistry','197.210.64.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:58','2020-04-16 18:42:58'),(8215,'chemistry','197.210.65.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:43:29','2020-04-16 18:43:29'),(8216,'chemistry','197.210.47.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:44:34','2020-04-16 18:44:34'),(8217,'chemistry','197.210.64.155',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:45:46','2020-04-16 18:45:48'),(8218,'crk','3.87.156.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 22:43:05','2020-04-16 22:43:05'),(8219,'commerce','18.207.198.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:03:48','2020-04-17 02:03:48'),(8220,'commerce','54.237.135.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:41:43','2020-04-17 02:41:43'),(8221,'physics','66.249.88.30',50,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-20 17:05:28'),(8222,'physics','66.249.81.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-17 08:08:43'),(8223,'physics','41.144.89.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:44','2020-04-17 08:08:46'),(8224,'economics','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:53:39','2020-04-17 08:53:39'),(8225,'geography','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:14:00','2020-04-17 09:14:00'),(8226,'government','18.206.205.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:56:27','2020-04-17 10:02:57'),(8227,'chemistry','18.206.205.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 10:01:34','2020-04-17 10:01:34'),(8228,'commerce','3.83.68.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 11:09:10','2020-04-17 11:09:10'),(8229,'chemistry','197.210.60.237',244,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 12:26:25','2020-04-17 12:32:16'),(8230,'economics','18.212.205.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 13:09:33','2020-04-17 13:09:33'),(8231,'chemistry','207.46.13.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 15:19:30','2020-04-17 15:19:30'),(8232,'english','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 16:39:41','2020-04-17 16:39:41'),(8233,'englishlit','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:10:38','2020-04-17 17:10:38'),(8234,'insurance','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:26:22','2020-04-17 17:26:22'),(8235,'crk','18.234.121.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 18:20:42','2020-04-17 18:20:42'),(8236,'chemistry','197.210.84.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 20:34:57','2020-04-17 20:34:57'),(8237,'crk','3.92.82.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 22:15:16','2020-04-17 22:15:16'),(8238,'physics','18.234.86.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 03:54:15','2020-04-18 03:54:15'),(8239,'currentaffairs','100.27.24.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 06:16:30','2020-04-18 06:16:30'),(8240,'crk','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:33:36','2020-04-18 07:33:36'),(8241,'englishlit','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:34:50','2020-04-18 07:34:50'),(8242,'english','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:35:39','2020-04-18 07:35:39'),(8243,'englishlit','107.23.21.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 08:31:03','2020-04-18 08:31:03'),(8244,'biology','3.93.151.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 11:56:02','2020-04-18 11:56:02'),(8245,'english','197.210.45.162',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 14:25:05','2020-04-18 14:25:07'),(8246,'currentaffairs','52.201.218.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 15:20:26','2020-04-18 15:20:26'),(8247,'economics','54.208.89.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:02:52','2020-04-18 18:02:52'),(8248,'chemistry','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:03'),(8249,'english','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:04'),(8250,'chemistry','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8251,'english','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8252,'english','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8253,'chemistry','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8254,'english','197.210.47.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:30:57','2020-04-18 18:31:00'),(8255,'chemistry','197.210.47.50',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8256,'english','197.210.47.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8257,'mathematics','197.210.47.209',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8258,'physics','197.210.47.182',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8259,'biology','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8260,'accounting','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8261,'english','197.210.65.39',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:34:12'),(8262,'commerce','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8263,'english','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8264,'accounting','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8265,'commerce','197.210.65.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8266,'biology','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8267,'biology','197.210.64.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:12'),(8268,'accounting','197.210.64.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8269,'commerce','197.210.47.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8270,'irk','197.210.47.117',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:50'),(8271,'english','197.210.47.142',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8272,'economics','197.210.47.112',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8273,'geography','197.210.47.125',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:34:50','2020-04-18 18:34:52'),(8274,'civiledu','197.210.47.139',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8275,'english','197.210.64.74',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8276,'insurance','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8277,'currentaffairs','197.210.47.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:59','2020-04-18 18:57:01'),(8278,'economics','197.210.64.116',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8279,'english','197.210.47.248',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8280,'irk','197.210.47.33',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:15','2020-04-18 19:01:17'),(8281,'civiledu','197.210.47.240',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:18','2020-04-18 19:01:20'),(8282,'mathematics','197.210.65.174',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8283,'english','197.210.65.168',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8284,'biology','197.210.65.164',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8285,'commerce','197.210.65.181',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8286,'english','197.210.47.9',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:07','2020-04-18 19:03:09'),(8287,'mathematics','197.210.47.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8288,'biology','197.210.47.19',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8289,'accounting','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8290,'english','197.210.65.0',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8291,'irk','197.210.64.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:25'),(8292,'civiledu','197.210.65.126',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8293,'economics','197.210.65.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8294,'biology','197.210.65.15',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8295,'accounting','197.210.65.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8296,'english','197.210.65.11',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8297,'commerce','197.210.65.26',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8298,'accounting','197.210.64.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8299,'mathematics','197.210.64.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8300,'english','197.210.47.101',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8301,'commerce','197.210.47.108',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8302,'biology','197.210.65.132',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:37'),(8303,'english','197.210.47.62',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:12:53'),(8304,'accounting','197.210.47.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:38'),(8305,'physics','197.210.47.32',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:36','2020-04-18 19:09:38'),(8306,'civiledu','197.210.64.42',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8307,'english','197.210.65.69',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8308,'insurance','197.210.65.75',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8309,'irk','197.210.65.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:30','2020-04-18 19:11:31'),(8310,'physics','197.210.47.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8311,'biology','197.210.47.56',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8312,'chemistry','197.210.47.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:52','2020-04-18 19:12:55'),(8313,'english','197.210.64.106',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8314,'government','197.210.65.97',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8315,'chemistry','197.210.65.99',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8316,'englishlit','197.210.64.37',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8317,'english','197.210.65.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8318,'biology','197.210.65.196',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8319,'accounting','197.210.65.206',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8320,'commerce','197.210.65.198',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8321,'physics','197.210.64.111',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:07'),(8322,'english','197.210.64.140',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8323,'englishlit','197.210.64.82',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8324,'chemistry','197.210.64.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:07','2020-04-18 19:56:10'),(8325,'english','197.210.65.23',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:35','2020-04-18 19:56:38'),(8326,'englishlit','197.210.64.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:37','2020-04-18 19:56:39'),(8327,'government','197.210.47.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:38','2020-04-18 19:56:40'),(8328,'chemistry','197.210.65.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:39','2020-04-18 19:56:41'),(8329,'mathematics','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8330,'accounting','197.210.47.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8331,'biology','197.210.65.134',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8332,'english','197.210.64.213',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8333,'english','197.210.65.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8334,'commerce','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8335,'mathematics','197.210.64.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8336,'irk','197.210.65.92',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:17','2020-04-18 19:59:19'),(8337,'accounting','3.208.18.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 06:23:07','2020-04-19 06:23:07'),(8338,'chemistry','40.77.167.36',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 07:38:38','2020-04-19 16:13:18'),(8339,'mathematics','105.112.179.226',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:23'),(8340,'accounting','105.112.179.226',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:52:55'),(8341,'government','105.112.179.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 11:58:19'),(8342,'english','105.112.179.226',480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:24'),(8343,'physics','105.112.179.226',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:55:09'),(8344,'biology','105.112.179.226',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:57:24'),(8345,'commerce','105.112.179.226',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:05:08','2020-04-19 12:57:24'),(8346,'chemistry','105.112.179.226',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:48:05','2020-04-19 12:55:09'),(8347,'chemistry','105.112.22.76',49,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:16:51','2020-04-19 13:26:58'),(8348,'biology','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:23:32','2020-04-19 13:23:33'),(8349,'mathematics','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:28:01','2020-04-19 13:28:01');\nINSERT INTO `api_call_ip_address` VALUES (8350,'mathematics','197.210.45.45',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:23:32'),(8351,'english','197.210.45.45',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8352,'commerce','197.210.45.45',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8353,'accounting','197.210.45.45',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8354,'english','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8355,'mathematics','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8356,'accounting','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8357,'commerce','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8358,'commerce','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8359,'accounting','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8360,'english','197.210.63.48',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:43:25'),(8361,'mathematics','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8362,'history','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8363,'currentaffairs','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8364,'insurance','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8365,'government','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8366,'crk','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8367,'geography','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8368,'history','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8369,'currentaffairs','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8370,'insurance','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8371,'english','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8372,'currentaffairs','197.210.45.45',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:11:15'),(8373,'insurance','197.210.45.45',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8374,'history','197.210.45.45',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8375,'chemistry','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8376,'physics','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8377,'biology','197.210.45.45',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:13:01','2020-04-19 19:24:58'),(8378,'mathematics','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8379,'chemistry','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:31:55'),(8380,'physics','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8381,'english','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8382,'biology','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:17:47','2020-04-19 21:17:49'),(8383,'english','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8384,'accounting','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8385,'englishlit','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8386,'economics','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8387,'civiledu','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8388,'insurance','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8389,'history','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8390,'currentaffairs','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:34:27','2020-04-19 21:34:29'),(8391,'chemistry','54.36.150.129',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:45:45','2020-04-19 22:45:45'),(8392,'chemistry','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:47:37'),(8393,'physics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8394,'mathematics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8395,'english','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8396,'biology','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:54:25','2020-04-19 22:54:27'),(8397,'chemistry','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8398,'physics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8399,'mathematics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8400,'english','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8401,'physics','3.93.200.226',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 00:55:26','2020-04-20 01:33:19'),(8402,'history','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:07:59','2020-04-20 01:07:59'),(8403,'currentaffairs','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:20:29','2020-04-20 01:20:29'),(8404,'englishlit','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:46:52','2020-04-20 01:46:52'),(8405,'chemistry','54.85.179.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:14:11','2020-04-20 03:14:11'),(8406,'english','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8407,'history','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8408,'insurance','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8409,'currentaffairs','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8410,'english','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8411,'biology','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:53:43'),(8412,'commerce','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8413,'accounting','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8414,'mathematics','102.89.2.214',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:56:26','2020-04-20 03:56:28'),(8415,'mathematics','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 04:11:00','2020-04-20 04:11:00'),(8416,'geography','3.92.207.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 06:39:01','2020-04-20 06:39:01'),(8417,'geography','3.80.247.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 07:47:21','2020-04-20 07:47:21'),(8418,'biology','218.26.54.96',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 09:58:41','2020-04-20 09:58:42'),(8419,'physics','3.90.203.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 11:17:13','2020-04-20 11:17:13'),(8420,'geography','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:08:33','2020-04-20 12:08:33'),(8421,'englishlit','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:30:06','2020-04-20 12:30:06'),(8422,'civiledu','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8423,'english','197.210.8.224',720,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 14:29:47'),(8424,'insurance','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8425,'currentaffairs','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8426,'chemistry','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8427,'mathematics','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8428,'physics','197.210.8.224',680,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8429,'commerce','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8430,'biology','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8431,'currentaffairs','54.145.65.159',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:05:19','2020-04-20 14:05:19'),(8432,'chemistry','54.36.148.196',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:35:15','2020-04-20 14:35:15'),(8433,'biology','66.249.83.204',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:44:36','2020-04-20 14:44:37'),(8434,'chemistry','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:50:33'),(8435,'english','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8436,'mathematics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8437,'physics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8438,'commerce','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:52:12','2020-04-20 14:52:14'),(8439,'chemistry','102.89.0.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 18:20:36','2020-04-20 18:20:36'),(8440,'chemistry','102.89.0.10',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:21:01','2020-04-20 18:24:58'),(8441,'physics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8442,'mathematics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8443,'english','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:58'),(8444,'physics','54.166.10.181',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:55:28','2020-04-20 18:55:28'),(8445,'mathematics','35.153.167.2',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 20:10:20','2020-04-20 20:10:20'),(8446,'mathematics','52.91.67.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 23:39:22','2020-04-20 23:39:22'),(8447,'physics','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8448,'chemistry','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8449,'english','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8450,'mathematics','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8451,'accounting','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8452,'biology','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8453,'chemistry','105.112.182.146',64,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:25:58','2020-04-21 19:28:52'),(8454,'biology','105.112.182.146',147,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:31:52','2020-04-21 20:02:15'),(8455,'physics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:00:51','2020-04-21 18:36:52'),(8456,'chemistry','197.210.64.120',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:02:51','2020-04-21 10:02:53'),(8457,'history','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8458,'currentaffairs','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8459,'english','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8460,'insurance','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8461,'commerce','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:24','2020-04-21 19:24:43'),(8462,'mathematics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:33','2020-04-21 18:43:38'),(8463,'chemistry','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8464,'english','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8465,'mathematics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8466,'physics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8467,'mathematics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8468,'english','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8469,'physics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8470,'chemistry','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8471,'chemistry','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8472,'mathematics','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8473,'english','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8474,'commerce','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8475,'english','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8476,'mathematics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8477,'physics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8478,'chemistry','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8479,'english','105.112.182.146',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:29','2020-04-21 11:08:28'),(8480,'chemistry','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8481,'english','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8482,'physics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8483,'mathematics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8484,'english','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8485,'mathematics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8486,'biology','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8487,'physics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8488,'chemistry','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8489,'mathematics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8490,'physics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8491,'english','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8492,'english','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8493,'englishlit','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8494,'physics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8495,'mathematics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8496,'mathematics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8497,'physics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8498,'english','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8499,'chemistry','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8500,'physics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8501,'mathematics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8502,'english','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8503,'chemistry','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8504,'physics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8505,'english','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8506,'chemistry','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8507,'mathematics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8508,'physics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8509,'english','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8510,'mathematics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8511,'mathematics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8512,'physics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8513,'english','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8514,'chemistry','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8515,'mathematics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8516,'english','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8517,'chemistry','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8518,'physics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8519,'mathematics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8520,'physics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8521,'chemistry','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:58'),(8522,'english','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8523,'english','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8524,'physics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8525,'chemistry','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8526,'mathematics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8527,'physics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8528,'mathematics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8529,'chemistry','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8530,'english','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8531,'englishlit','41.80.21.184',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:46:19','2020-04-21 11:46:21'),(8532,'chemistry','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8533,'mathematics','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8534,'biology','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8535,'english','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8536,'mathematics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8537,'chemistry','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8538,'physics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8539,'english','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8540,'accounting','105.112.182.146',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:21:36','2020-04-21 19:33:14'),(8541,'mathematics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8542,'english','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8543,'chemistry','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8544,'physics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8545,'english','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8546,'mathematics','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8547,'biology','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8548,'commerce','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8549,'physics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8550,'chemistry','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8551,'english','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8552,'mathematics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8553,'chemistry','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8554,'mathematics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8555,'english','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8556,'physics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8557,'history','54.242.239.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 14:06:07','2020-04-21 14:06:07'),(8558,'government','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 15:55:50','2020-04-21 15:55:51'),(8559,'history','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 16:23:43','2020-04-21 16:23:43'),(8560,'chemistry','197.210.28.55',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 18:02:59','2020-04-21 18:03:01'),(8561,'mathematics','3.81.94.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 19:58:20','2020-04-21 19:58:20'),(8562,'biology','105.112.18.128',77,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:18:41','2020-04-21 23:24:00'),(8563,'physics','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:18:53','2020-04-21 23:00:17'),(8564,'accounting','105.112.18.128',42,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:35:26','2020-04-21 23:10:50'),(8565,'chemistry','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:37:37','2020-04-21 20:58:32'),(8566,'mathematics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8567,'chemistry','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8568,'english','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:14'),(8569,'physics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8570,'english','102.89.1.175',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:09:09','2020-04-21 21:42:43'),(8571,'english','102.89.1.91',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:10:02','2020-04-21 21:25:29'),(8572,'english','102.89.0.89',20,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:11:30','2020-04-21 21:11:32'),(8573,'chemistry','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8574,'mathematics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8575,'physics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8576,'chemistry','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8577,'english','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8578,'mathematics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8579,'physics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8580,'chemistry','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:07','2020-04-21 21:42:43'),(8581,'physics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8582,'mathematics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8583,'commerce','105.112.18.128',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 22:04:53','2020-04-21 22:49:43'),(8584,'mathematics','105.112.18.128',7,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 22:27:23','2020-04-21 22:27:24'),(8585,'english','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8586,'irk','102.89.1.102',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8587,'insurance','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8588,'civiledu','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8589,'geography','105.112.18.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:32:29','2020-04-21 23:32:29'),(8590,'mathematics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8591,'physics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8592,'english','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8593,'chemistry','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8594,'physics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8595,'mathematics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8596,'english','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8597,'biology','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8598,'insurance','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:44','2020-04-21 23:46:47'),(8599,'english','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8600,'chemistry','197.210.46.117',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-05-25 11:18:27'),(8601,'geography','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8602,'history','52.207.122.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:21:54','2020-04-22 06:21:54'),(8603,'chemistry','102.89.2.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:27:13','2020-04-22 06:27:13'),(8604,'mathematics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8605,'english','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8606,'physics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8607,'chemistry','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8608,'biology','105.112.28.69',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 08:37:38','2020-04-22 09:14:05'),(8609,'physics','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:37:13','2020-04-22 11:01:24'),(8610,'biology','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:45:01','2020-04-22 10:48:10'),(8611,'accounting','105.112.31.149',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:07:02','2020-04-22 10:07:52'),(8612,'economics','105.112.31.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:16:04','2020-04-22 10:16:05'),(8613,'biology','105.112.30.170',28,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 11:06:24','2020-04-22 12:40:53'),(8614,'accounting','105.112.30.170',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 11:33:34','2020-04-22 11:59:20'),(8615,'chemistry','41.190.12.66',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:15:54','2020-04-22 12:17:36'),(8616,'biology','41.190.12.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:16:26','2020-04-22 12:18:01'),(8617,'chemistry','105.112.176.19',468,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 12:22:58','2020-04-22 12:30:38'),(8618,'chemistry','41.190.12.130',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:35:57','2020-04-22 12:39:25'),(8619,'biology','41.190.12.130',9,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:37:06','2020-04-22 12:41:42'),(8620,'english','41.190.12.130',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:39:46','2020-04-22 12:43:48'),(8621,'insurance','197.210.84.226',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:37:40','2020-04-22 13:37:42'),(8622,'insurance','197.210.84.190',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:40:05','2020-04-22 13:40:07'),(8623,'chemistry','54.82.80.108',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 14:30:16','2020-04-22 14:30:16'),(8624,'crk','34.229.173.152',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:15:56','2020-04-22 16:15:56'),(8625,'physics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8626,'english','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8627,'chemistry','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8628,'mathematics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8629,'biology','105.112.183.159',84,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:46:06','2020-04-22 22:39:25'),(8630,'accounting','105.112.183.159',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:48:17','2020-04-22 22:31:08'),(8631,'english','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:13:11','2020-04-22 18:13:11'),(8632,'commerce','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:34:19','2020-04-22 18:34:19'),(8633,'currentaffairs','3.94.91.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:10:02','2020-04-22 19:10:02'),(8634,'chemistry','105.112.183.159',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:38:14','2020-04-22 19:41:59'),(8635,'chemistry','157.55.39.45',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:52:26','2020-04-22 19:52:27'),(8636,'physics','105.112.183.159',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 21:25:48','2020-04-22 22:40:27'),(8637,'economics','54.166.255.13',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 22:23:41','2020-04-22 22:23:41'),(8638,'commerce','105.112.183.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 23:09:25','2020-04-22 23:09:26'),(8639,'chemistry','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:00:28','2020-04-23 00:00:28'),(8640,'government','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:24:21','2020-04-23 00:24:21'),(8641,'mathematics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:39:20','2020-04-23 01:39:20'),(8642,'government','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:47:47','2020-04-23 01:47:47'),(8643,'economics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:48:36','2020-04-23 01:48:36'),(8644,'geography','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:36:53','2020-04-23 02:36:53'),(8645,'commerce','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:53:38','2020-04-23 02:53:38'),(8646,'chemistry','105.112.61.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:54:52','2020-04-23 02:54:52'),(8647,'insurance','54.86.197.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 06:26:13','2020-04-23 06:26:13'),(8648,'crk','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:16:42','2020-04-23 10:16:42'),(8649,'englishlit','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:34:38','2020-04-23 10:34:38'),(8650,'english','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 11:05:41','2020-04-23 11:05:41'),(8651,'biology','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8652,'mathematics','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8653,'crk','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8654,'english','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8655,'civiledu','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8656,'economics','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8657,'crk','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 14:30:55','2020-04-23 14:30:55'),(8658,'biology','54.224.0.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 17:35:04','2020-04-23 17:35:04'),(8659,'chemistry','40.77.167.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 19:39:50','2020-04-23 19:39:50'),(8660,'physics','54.174.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:04:30','2020-04-23 22:04:30'),(8661,'englishlit','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:50:05','2020-04-23 22:50:05'),(8662,'currentaffairs','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 23:11:05','2020-04-23 23:11:05'),(8663,'crk','18.234.95.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 00:49:03','2020-04-24 00:49:03'),(8664,'chemistry','102.134.114.129',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 01:33:54','2020-04-24 01:38:52'),(8665,'englishlit','54.209.127.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 02:15:39','2020-04-24 02:15:39'),(8666,'english','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:17:39','2020-04-24 03:17:39'),(8667,'government','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:43:50','2020-04-24 03:43:50'),(8668,'chemistry','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 04:48:11','2020-04-24 04:48:11'),(8669,'economics','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 05:19:42','2020-04-24 05:19:42'),(8670,'mathematics','54.196.250.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 08:15:48','2020-04-24 08:15:48'),(8671,'insurance','3.82.47.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 09:43:06','2020-04-24 09:43:06'),(8672,'civiledu','100.24.31.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:26:45','2020-04-24 10:26:45'),(8673,'mathematics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8674,'commerce','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8675,'biology','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8676,'chemistry','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:08'),(8677,'government','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8678,'geography','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8679,'economics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8680,'physics','188.164.100.205',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:39:15','2020-04-24 10:39:17'),(8681,'chemistry','35.171.2.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 14:25:12','2020-04-24 14:25:12'),(8682,'mathematics','54.145.214.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 17:31:43','2020-04-24 17:31:43'),(8683,'chemistry','54.36.148.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 18:06:18','2020-04-24 18:06:18'),(8684,'accounting','34.239.139.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 23:10:31','2020-04-24 23:10:31'),(8685,'chemistry','54.227.8.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 01:51:07','2020-04-25 01:51:07'),(8686,'chemistry','105.112.47.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 04:58:07','2020-04-25 04:58:07'),(8687,'mathematics','34.204.43.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 05:02:06','2020-04-25 05:02:06'),(8688,'currentaffairs','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:33:21','2020-04-25 06:33:21'),(8689,'biology','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:58:18','2020-04-25 06:58:18'),(8690,'english','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:13','2020-04-25 07:02:13'),(8691,'commerce','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:32','2020-04-25 07:02:32'),(8692,'geography','54.162.26.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 08:14:44','2020-04-25 08:14:44'),(8693,'biology','41.190.31.157',123,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 14:18:38','2020-04-25 15:45:29'),(8694,'english','41.190.31.157',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:19:08','2020-04-25 15:19:08'),(8695,'chemistry','41.190.31.157',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:34:32','2020-04-25 15:49:01'),(8696,'mathematics','18.207.244.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:00:51','2020-04-25 19:00:51'),(8697,'geography','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:43:51','2020-04-25 19:43:51'),(8698,'chemistry','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 20:00:20','2020-04-25 20:00:20'),(8699,'geography','54.196.233.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 22:34:56','2020-04-25 22:34:56'),(8700,'geography','54.226.23.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 23:54:11','2020-04-25 23:54:11'),(8701,'physics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:34:21','2020-04-26 03:34:21'),(8702,'englishlit','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:46:24','2020-04-26 03:46:24'),(8703,'english','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:15:25','2020-04-26 04:15:25'),(8704,'geography','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:21:18','2020-04-26 04:21:18'),(8705,'economics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:38:52','2020-04-26 04:38:52'),(8706,'currentaffairs','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 05:01:46','2020-04-26 05:01:46'),(8707,'crk','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:37:57','2020-04-26 07:37:57'),(8708,'geography','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:39:49','2020-04-26 07:39:49'),(8709,'englishlit','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:24:17','2020-04-26 08:24:17'),(8710,'commerce','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:32:11','2020-04-26 08:32:11'),(8711,'biology','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:36:32','2020-04-26 08:36:32'),(8712,'mathematics','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:08:49','2020-04-26 09:08:49'),(8713,'english','34.207.68.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:44:24','2020-04-26 09:44:24'),(8714,'mathematics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:12:46','2020-04-26 11:12:46'),(8715,'physics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:15:20','2020-04-26 11:15:20'),(8716,'crk','54.152.233.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 12:24:21','2020-04-26 12:24:21'),(8717,'mathematics','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:36:48','2020-04-26 14:36:48'),(8718,'biology','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:55:09','2020-04-26 14:55:09'),(8719,'economics','18.215.246.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 21:05:56','2020-04-26 21:05:56'),(8720,'mathematics','3.81.151.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 01:31:08','2020-04-27 01:31:08'),(8721,'biology','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:05','2020-04-27 02:58:05'),(8722,'chemistry','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:38','2020-04-27 02:58:38'),(8723,'accounting','34.235.166.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 03:48:21','2020-04-27 03:48:21'),(8724,'history','54.224.76.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 05:14:17','2020-04-27 05:14:17'),(8725,'chemistry','52.201.249.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 08:03:17','2020-04-27 08:03:17'),(8726,'biology','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8727,'physics','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8728,'crk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8729,'geography','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8730,'irk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8731,'insurance','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8732,'history','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8733,'chemistry','54.234.116.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:51'),(8734,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8735,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8736,'government','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:13:02','2020-04-27 10:13:02'),(8737,'physics','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:23:37','2020-04-27 11:23:37'),(8738,'commerce','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:41:20','2020-04-27 11:41:20'),(8739,'chemistry','99.7.238.16',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:37:52','2020-04-27 13:42:57'),(8740,'physics','99.7.238.16',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:43:03','2020-04-27 13:43:03'),(8741,'chemistry','77.88.5.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:54:22','2020-04-27 13:54:22'),(8742,'biology','3.88.17.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:37:10','2020-04-27 14:37:10'),(8743,'mathematics','197.210.8.233',680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:44:44','2020-04-27 15:08:49'),(8744,'chemistry','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8745,'english','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8746,'physics','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8747,'economics','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:20:06','2020-04-27 20:20:06'),(8748,'commerce','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:39:52','2020-04-27 20:39:52'),(8749,'history','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:49:28','2020-04-27 20:49:28'),(8750,'government','107.21.137.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 02:38:07','2020-04-28 02:38:07'),(8751,'commerce','3.95.203.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 05:37:46','2020-04-28 05:37:46'),(8752,'crk','3.91.54.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:01:44','2020-04-28 07:01:44'),(8753,'geography','18.212.75.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:55:58','2020-04-28 07:55:58'),(8754,'physics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8755,'english','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8756,'mathematics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8757,'chemistry','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8758,'chemistry','196.222.104.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:11:38','2020-04-28 10:21:09'),(8759,'physics','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8760,'chemistry','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8761,'crk','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8762,'geography','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8763,'economics','18.209.104.117',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 11:04:14'),(8764,'currentaffairs','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8765,'history','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8766,'economics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:46:56','2020-04-28 11:46:56'),(8767,'english','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:47:28','2020-04-28 11:47:28'),(8768,'commerce','105.112.70.76',56,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:08:02','2020-04-28 13:10:12'),(8769,'accounting','105.112.70.76',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:11:44','2020-04-28 13:22:13'),(8770,'biology','105.112.70.76',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:29:15','2020-04-28 12:29:15'),(8771,'government','3.84.75.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 13:46:11','2020-04-28 13:46:11'),(8772,'economics','3.80.87.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 14:32:49','2020-04-28 14:32:49'),(8773,'physics','54.210.29.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:28:17','2020-04-28 15:28:17'),(8774,'insurance','197.210.227.65',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:30:30','2020-04-28 16:09:26'),(8775,'insurance','197.210.227.77',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:32:37','2020-04-28 15:41:11'),(8776,'accounting','197.210.227.77',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:38:20','2020-04-28 16:20:02'),(8777,'insurance','197.210.227.25',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:43:40','2020-04-28 17:43:09'),(8778,'insurance','197.210.226.63',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:02:54','2020-04-28 17:36:29'),(8779,'insurance','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:05:09','2020-04-28 16:05:11'),(8780,'englishlit','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:47','2020-04-28 16:07:49'),(8781,'government','197.210.227.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:51','2020-04-28 16:07:53'),(8782,'currentaffairs','197.210.226.63',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:54','2020-04-28 17:56:54'),(8783,'economics','197.210.227.25',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:58','2020-04-28 17:33:39'),(8784,'geography','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:02','2020-04-28 16:20:19'),(8785,'english','197.210.227.25',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:06','2020-04-28 17:57:58'),(8786,'mathematics','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:09','2020-04-28 16:09:56'),(8787,'commerce','197.210.227.25',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:13','2020-04-28 17:33:53'),(8788,'biology','197.210.227.25',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:17','2020-04-28 17:44:06'),(8789,'physics','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:20','2020-04-28 16:10:08'),(8790,'crk','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:28','2020-04-28 16:10:15'),(8791,'history','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:32','2020-04-28 16:08:35'),(8792,'irk','197.210.227.233',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:36','2020-04-28 16:08:38'),(8793,'civiledu','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:39','2020-04-28 17:47:22'),(8794,'accounting','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:28','2020-04-28 16:09:30'),(8795,'englishlit','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:32','2020-04-28 16:09:34'),(8796,'government','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:35','2020-04-28 16:09:38'),(8797,'currentaffairs','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:39','2020-04-28 16:09:41'),(8798,'economics','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:42','2020-04-28 16:09:45'),(8799,'geography','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:46','2020-04-28 16:09:48'),(8800,'english','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:50','2020-04-28 16:09:52'),(8801,'commerce','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:58','2020-04-28 16:10:00'),(8802,'biology','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:02','2020-04-28 16:10:04'),(8803,'chemistry','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:09','2020-04-28 16:10:12'),(8804,'history','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:17','2020-04-28 16:10:19'),(8805,'irk','197.210.226.63',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:20','2020-04-28 16:10:22'),(8806,'civiledu','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:23','2020-04-28 16:10:25'),(8807,'government','3.80.238.158',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:15:49','2020-04-28 16:15:49'),(8808,'englishlit','197.210.226.63',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:03','2020-04-28 17:41:09'),(8809,'government','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:06','2020-04-28 17:56:50'),(8810,'currentaffairs','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:10','2020-04-28 17:46:35'),(8811,'economics','197.210.226.63',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:14','2020-04-28 17:45:40'),(8812,'mathematics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:24','2020-04-28 17:46:51'),(8813,'physics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:35','2020-04-28 17:47:04'),(8814,'chemistry','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:40','2020-04-28 17:47:08'),(8815,'crk','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:45','2020-04-28 17:47:11'),(8816,'history','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:49','2020-04-28 16:20:51'),(8817,'irk','197.210.227.77',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:04','2020-04-28 16:21:05'),(8818,'civiledu','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:07','2020-04-28 16:21:10'),(8819,'geography','3.93.153.210',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:54:50','2020-04-28 17:00:53'),(8820,'accounting','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:23','2020-04-28 17:47:35'),(8821,'englishlit','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:26','2020-04-28 17:47:39'),(8822,'government','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:30','2020-04-28 17:46:31'),(8823,'currentaffairs','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:33','2020-04-28 17:36:51'),(8824,'geography','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:41','2020-04-28 17:33:43'),(8825,'mathematics','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:48','2020-04-28 17:33:50'),(8826,'chemistry','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:02','2020-04-28 17:39:24'),(8827,'history','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:09','2020-04-28 17:47:15'),(8828,'irk','197.210.227.25',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:13','2020-04-28 17:44:24'),(8829,'civiledu','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:15','2020-04-28 17:56:36'),(8830,'insurance','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:24','2020-04-28 17:55:24'),(8831,'accounting','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:28','2020-04-28 17:44:57'),(8832,'government','197.210.227.122',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:36','2020-04-28 17:45:31'),(8833,'currentaffairs','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:39','2020-04-28 17:55:39'),(8834,'economics','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:43','2020-04-28 17:49:01'),(8835,'geography','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:47','2020-04-28 17:47:55'),(8836,'english','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:50','2020-04-28 17:47:59'),(8837,'insurance','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:54','2020-04-28 17:56:39'),(8838,'accounting','197.210.226.66',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:58','2020-04-28 17:55:28'),(8839,'englishlit','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:02','2020-04-28 17:56:46'),(8840,'geography','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:17','2020-04-28 17:46:43'),(8841,'accounting','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:30','2020-04-28 17:43:13'),(8842,'economics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:52','2020-04-28 17:36:54'),(8843,'geography','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:56','2020-04-28 17:57:18'),(8844,'commerce','197.210.227.96',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:24','2020-04-28 17:46:56'),(8845,'crk','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:39','2020-04-28 17:37:41'),(8846,'irk','197.210.227.1',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:46','2020-04-28 17:47:19'),(8847,'geography','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:55','2020-04-28 17:49:05'),(8848,'english','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:58','2020-04-28 17:55:52'),(8849,'mathematics','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:07','2020-04-28 17:55:55'),(8850,'commerce','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:11','2020-04-28 17:39:13'),(8851,'biology','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:14','2020-04-28 17:39:17'),(8852,'physics','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:18','2020-04-28 17:56:07'),(8853,'crk','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:25','2020-04-28 17:39:27'),(8854,'history','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:28','2020-04-28 17:56:28'),(8855,'irk','197.210.226.66',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:32','2020-04-28 17:56:32'),(8856,'insurance','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:40:58','2020-04-28 17:46:20'),(8857,'government','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:41:11','2020-04-28 17:48:52'),(8858,'currentaffairs','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:35','2020-04-28 17:47:47'),(8859,'economics','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:38','2020-04-28 17:57:01'),(8860,'geography','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:42','2020-04-28 17:43:44'),(8861,'physics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:07','2020-04-28 17:44:09'),(8862,'crk','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:14','2020-04-28 17:48:22'),(8863,'history','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:18','2020-04-28 17:44:21'),(8864,'civiledu','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:25','2020-04-28 17:44:44'),(8865,'englishlit','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:45:04','2020-04-28 17:45:06'),(8866,'english','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:44','2020-04-28 17:46:47'),(8867,'biology','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:57','2020-04-28 17:56:03'),(8868,'insurance','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:47:29','2020-04-28 17:47:32'),(8869,'mathematics','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:00','2020-04-28 17:48:03'),(8870,'commerce','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:05','2020-04-28 17:48:07'),(8871,'biology','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:08','2020-04-28 17:48:11'),(8872,'chemistry','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:16','2020-04-28 17:48:19'),(8873,'history','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:24','2020-04-28 17:48:27'),(8874,'englishlit','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:29','2020-04-28 17:55:32'),(8875,'government','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:33','2020-04-28 17:55:35'),(8876,'economics','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:41','2020-04-28 17:55:44'),(8877,'commerce','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:56','2020-04-28 17:55:59'),(8878,'chemistry','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:08','2020-04-28 17:56:10'),(8879,'crk','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:22','2020-04-28 17:56:24'),(8880,'accounting','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:41','2020-04-28 17:56:43'),(8881,'government','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:16','2020-04-28 18:02:16'),(8882,'commerce','105.112.16.71',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:49','2020-04-28 18:02:49'),(8883,'biology','105.112.16.71',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:06:21','2020-04-28 18:11:14'),(8884,'english','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:20:03','2020-04-28 18:20:03'),(8885,'commerce','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:32:41','2020-04-28 18:32:41'),(8886,'accounting','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:33:53','2020-04-28 18:33:53'),(8887,'biology','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:55:42','2020-04-28 18:55:42'),(8888,'history','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:58:00','2020-04-28 18:58:00'),(8889,'chemistry','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:04:13','2020-04-28 19:04:13'),(8890,'chemistry','41.217.104.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:28:12','2020-04-28 19:28:26'),(8891,'economics','35.175.150.1',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 20:02:33','2020-04-28 20:02:33'),(8892,'commerce','52.23.234.72',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:03:58','2020-04-28 21:03:58'),(8893,'commerce','105.112.176.198',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:35:39','2020-04-28 22:06:40'),(8894,'biology','105.112.176.198',21,'','NG','','Lagos',NULL,NULL,'','','2020-04-28 21:49:14','2020-04-28 23:16:53'),(8895,'accounting','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:07:36','2020-04-28 22:07:37'),(8896,'mathematics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:15:12','2020-04-28 22:15:12'),(8897,'physics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:19:21','2020-04-28 22:19:21'),(8898,'government','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:21:48','2020-04-28 22:21:48'),(8899,'insurance','34.229.212.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 23:55:04','2020-04-28 23:55:04'),(8900,'english','35.170.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 01:09:28','2020-04-29 01:09:28'),(8901,'crk','54.204.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 02:49:37','2020-04-29 02:49:37'),(8902,'crk','34.229.217.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 08:41:40','2020-04-29 08:41:40'),(8903,'chemistry','52.54.222.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 09:31:21','2020-04-29 09:31:21'),(8904,'physics','3.86.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 11:56:45','2020-04-29 11:56:45'),(8905,'english','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:13:54','2020-04-29 14:13:54'),(8906,'currentaffairs','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:28:47','2020-04-29 14:28:47'),(8907,'crk','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 16:51:12','2020-04-29 16:51:12'),(8908,'mathematics','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:19:40','2020-04-29 17:19:40'),(8909,'biology','105.112.176.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:26:33','2020-04-29 18:09:50'),(8910,'commerce','105.112.176.237',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:29:23','2020-04-29 18:01:40'),(8911,'englishlit','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:42:30','2020-04-29 17:42:30'),(8912,'accounting','105.112.176.237',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:02:58','2020-04-29 18:02:58'),(8913,'biology','105.112.179.192',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:33:15','2020-04-29 19:16:31'),(8914,'currentaffairs','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:36:50','2020-04-29 18:36:50'),(8915,'economics','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:47:33','2020-04-29 18:47:33'),(8916,'physics','105.112.179.192',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:05:41','2020-04-29 19:30:14'),(8917,'englishlit','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:09:49','2020-04-29 19:09:49'),(8918,'mathematics','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:10:38','2020-04-29 19:10:38'),(8919,'commerce','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:41:21','2020-04-29 19:41:21'),(8920,'chemistry','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:58:11','2020-04-29 19:58:11'),(8921,'government','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:21:57','2020-04-29 20:21:57'),(8922,'commerce','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:18','2020-04-29 20:27:18'),(8923,'commerce','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:44','2020-04-29 20:27:44'),(8924,'english','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:28:17','2020-04-29 21:37:09'),(8925,'biology','105.112.24.82',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:47:45','2020-04-29 22:13:57'),(8926,'government','3.87.44.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:09:09','2020-04-29 21:09:09'),(8927,'accounting','105.112.24.82',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:11:05','2020-04-29 22:06:33'),(8928,'mathematics','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:43','2020-04-29 21:59:17'),(8929,'physics','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:54','2020-04-29 21:36:55'),(8930,'chemistry','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 22:39:32','2020-04-29 22:39:32'),(8931,'chemistry','54.36.148.219',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 23:51:25','2020-04-29 23:51:25'),(8932,'chemistry','54.36.148.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:02:17','2020-04-30 00:02:17'),(8933,'chemistry','54.36.148.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:13:27','2020-04-30 00:13:27'),(8934,'physics','3.95.148.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:16:11','2020-04-30 00:16:11'),(8935,'chemistry','54.36.148.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:24:14','2020-04-30 00:24:14'),(8936,'chemistry','54.36.148.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:57:32','2020-04-30 00:57:32'),(8937,'chemistry','54.36.148.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 01:26:38','2020-04-30 01:26:38'),(8938,'english','3.83.49.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 04:59:57','2020-04-30 04:59:57'),(8939,'physics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 11:48:10','2020-04-30 11:48:12'),(8940,'mathematics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:14:32','2020-04-30 12:14:35'),(8941,'accounting','3.90.113.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:48:25','2020-04-30 12:48:25'),(8942,'geography','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:50:57','2020-04-30 12:50:59'),(8943,'commerce','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:51:24','2020-04-30 12:51:26'),(8944,'physics','54.167.205.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 13:29:15','2020-04-30 13:29:15'),(8945,'insurance','54.160.135.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 16:43:16','2020-04-30 16:43:16'),(8946,'chemistry','157.55.39.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:40:23','2020-04-30 17:40:23'),(8947,'insurance','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:56:54','2020-04-30 17:59:10'),(8948,'currentaffairs','197.210.53.138',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:10','2020-04-30 18:08:22'),(8949,'economics','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:15','2020-04-30 17:59:31'),(8950,'geography','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:18','2020-04-30 18:00:52'),(8951,'english','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:22','2020-04-30 17:59:44'),(8952,'commerce','197.210.53.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:29','2020-04-30 17:57:31'),(8953,'physics','197.210.52.197',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:39','2020-04-30 18:01:14'),(8954,'history','197.210.53.151',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:53','2020-04-30 18:13:42'),(8955,'irk','197.210.53.138',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:58','2020-04-30 18:13:47'),(8956,'civiledu','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:01','2020-04-30 17:59:07'),(8957,'insurance','197.210.52.197',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:05','2020-04-30 17:58:07'),(8958,'government','197.210.53.151',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:16','2020-04-30 17:58:18'),(8959,'currentaffairs','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:20','2020-04-30 17:58:22'),(8960,'geography','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:28','2020-04-30 17:58:31'),(8961,'biology','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:43','2020-04-30 17:58:46'),(8962,'physics','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:47','2020-04-30 18:08:48'),(8963,'irk','197.210.52.31',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:01','2020-04-30 18:01:32'),(8964,'accounting','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:12','2020-04-30 17:59:14'),(8965,'englishlit','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:15','2020-04-30 18:12:52'),(8966,'government','197.210.52.67',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:19','2020-04-30 18:12:56'),(8967,'currentaffairs','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:23','2020-04-30 18:10:46'),(8968,'geography','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:37','2020-04-30 17:59:39'),(8969,'mathematics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:46','2020-04-30 18:01:00'),(8970,'commerce','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:51','2020-04-30 17:59:53'),(8971,'biology','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:56','2020-04-30 18:08:45'),(8972,'chemistry','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:07','2020-04-30 18:00:09'),(8973,'crk','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:11','2020-04-30 18:00:13'),(8974,'history','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:16','2020-04-30 18:11:26'),(8975,'irk','197.210.52.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:20','2020-04-30 18:00:21'),(8976,'civiledu','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:22','2020-04-30 18:00:25'),(8977,'insurance','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:26','2020-04-30 18:10:30'),(8978,'accounting','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:30','2020-04-30 18:10:34'),(8979,'englishlit','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:34','2020-04-30 18:10:38'),(8980,'government','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:38','2020-04-30 18:00:40'),(8981,'currentaffairs','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:42','2020-04-30 18:12:59'),(8982,'economics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:46','2020-04-30 18:13:04'),(8983,'english','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:54','2020-04-30 18:00:56'),(8984,'commerce','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:03','2020-04-30 18:13:19'),(8985,'biology','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:07','2020-04-30 18:11:09'),(8986,'chemistry','197.210.52.197',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:16','2020-04-30 18:13:31'),(8987,'crk','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:21','2020-04-30 18:01:23'),(8988,'civiledu','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:34','2020-04-30 18:01:36'),(8989,'insurance','197.210.52.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:05','2020-04-30 18:12:44'),(8990,'englishlit','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:12','2020-04-30 18:08:15'),(8991,'government','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:16','2020-04-30 18:08:18'),(8992,'economics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:24','2020-04-30 18:10:50'),(8993,'english','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:31','2020-04-30 18:08:33'),(8994,'chemistry','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:50','2020-04-30 18:08:52'),(8995,'history','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:56','2020-04-30 18:08:59'),(8996,'irk','197.210.52.197',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:00','2020-04-30 18:09:02'),(8997,'civiledu','197.210.53.138',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:03','2020-04-30 18:13:51'),(8998,'geography','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:52','2020-04-30 18:10:54'),(8999,'english','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:56','2020-04-30 18:10:58'),(9000,'mathematics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:59','2020-04-30 18:13:16'),(9001,'commerce','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:03','2020-04-30 18:11:05'),(9002,'physics','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:11','2020-04-30 18:11:14'),(9003,'crk','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:20','2020-04-30 18:11:22'),(9004,'irk','197.210.53.91',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:28','2020-04-30 18:11:29'),(9005,'civiledu','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:31','2020-04-30 18:11:33'),(9006,'accounting','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:12:46','2020-04-30 18:12:48'),(9007,'geography','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:05','2020-04-30 18:13:08'),(9008,'english','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:09','2020-04-30 18:13:12'),(9009,'biology','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:21','2020-04-30 18:13:23'),(9010,'physics','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:25','2020-04-30 18:13:28'),(9011,'chemistry','129.205.113.173',4,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:44:54','2020-04-30 18:51:44'),(9012,'chemistry','40.77.167.109',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 19:59:37','2020-04-30 19:59:37'),(9013,'chemistry','18.212.194.164',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 22:59:35','2020-04-30 22:59:35'),(9014,'mathematics','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:52:42','2020-04-30 23:52:43'),(9015,'chemistry','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:32','2020-04-30 23:58:33'),(9016,'biology','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:49','2020-04-30 23:58:50'),(9017,'physics','197.210.63.5',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9018,'mathematics','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9019,'chemistry','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9020,'english','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9021,'english','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9022,'accounting','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9023,'chemistry','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9024,'government','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9025,'economics','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:09'),(9026,'irk','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9027,'civiledu','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9028,'chemistry','54.152.163.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 06:38:44','2020-05-01 06:38:44'),(9029,'civiledu','54.85.192.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 07:42:44','2020-05-01 07:42:44'),(9030,'chemistry','50.66.43.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 08:44:35','2020-05-01 08:44:35'),(9031,'accounting','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:23:43','2020-05-01 09:23:45'),(9032,'biology','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:26:39','2020-05-01 09:26:41'),(9033,'chemistry','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:28:41','2020-05-01 09:28:43'),(9034,'commerce','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:31:07','2020-05-01 09:31:09'),(9035,'geography','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:32:07','2020-05-01 09:32:09'),(9036,'government','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:33:07','2020-05-01 09:33:09'),(9037,'englishlit','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:34:23','2020-05-01 09:34:25'),(9038,'english','3.92.79.199',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:35:10','2020-05-01 09:36:06'),(9039,'physics','54.197.3.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:32','2020-05-01 09:36:32'),(9040,'history','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:45','2020-05-01 09:36:47'),(9041,'physics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:37:23','2020-05-01 09:37:25'),(9042,'crk','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:02','2020-05-01 09:38:04'),(9043,'irk','3.92.79.199',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:36','2020-05-01 09:38:37'),(9044,'mathematics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:40:07','2020-05-01 09:40:09'),(9045,'civiledu','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:44:20','2020-05-01 09:44:22'),(9046,'insurance','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:45:12','2020-05-01 09:45:14'),(9047,'mathematics','18.212.127.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 10:27:34','2020-05-01 10:27:34'),(9048,'chemistry','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 11:53:35','2020-05-01 11:53:35'),(9049,'civiledu','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:07:15','2020-05-01 12:07:15'),(9050,'geography','35.171.18.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:48:39','2020-05-01 12:48:39'),(9051,'accounting','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 13:58:07','2020-05-01 15:50:39'),(9052,'english','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:12:28','2020-05-01 15:32:24'),(9053,'government','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:27:18','2020-05-01 15:42:41'),(9054,'geography','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:34:50','2020-05-01 14:34:50'),(9055,'irk','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:40:41','2020-05-01 15:22:36'),(9056,'economics','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:52:00','2020-05-01 15:03:28'),(9057,'chemistry','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:13:35','2020-05-01 15:13:35'),(9058,'civiledu','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:59:12','2020-05-01 15:59:12'),(9059,'physics','54.147.40.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 17:31:20','2020-05-01 17:31:20'),(9060,'englishlit','3.80.145.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:30:32','2020-05-01 18:30:32'),(9061,'geography','3.81.84.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:59:33','2020-05-01 18:59:33'),(9062,'mathematics','54.152.182.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 19:39:12','2020-05-01 19:39:12'),(9063,'currentaffairs','54.147.140.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 20:19:55','2020-05-01 20:46:03'),(9064,'mathematics','18.232.86.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 01:07:21','2020-05-02 01:07:21'),(9065,'physics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 02:21:54','2020-05-02 02:21:54'),(9066,'mathematics','54.159.74.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 05:28:06','2020-05-02 05:28:06'),(9067,'mathematics','3.95.199.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 11:49:15','2020-05-02 11:49:54'),(9068,'geography','54.160.152.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 12:51:05','2020-05-02 12:51:05'),(9069,'accounting','54.242.134.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 13:44:35','2020-05-02 13:44:35'),(9070,'civiledu','54.80.130.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 14:38:04','2020-05-02 14:38:04'),(9071,'insurance','34.227.221.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 16:37:38','2020-05-02 16:37:38'),(9072,'chemistry','34.226.155.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 17:58:23','2020-05-02 18:51:09'),(9073,'history','34.226.155.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 18:31:23','2020-05-02 18:31:23'),(9074,'mathematics','54.166.138.44',41,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-02 21:12:05','2020-05-03 16:51:28'),(9075,'english','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:19','2020-05-02 21:57:19'),(9076,'commerce','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9077,'physics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9078,'geography','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9079,'economics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9080,'civiledu','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9081,'insurance','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9082,'chemistry','3.83.147.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 22:48:32','2020-05-02 22:48:32'),(9083,'currentaffairs','107.21.76.29',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:19:42','2020-05-03 05:43:14'),(9084,'mathematics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:23:15','2020-05-03 05:35:39'),(9085,'commerce','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:24:10','2020-05-03 05:36:03'),(9086,'accounting','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:18','2020-05-03 05:36:47'),(9087,'biology','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:59','2020-05-03 05:37:26'),(9088,'physics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:26:47','2020-05-03 05:38:06'),(9089,'chemistry','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:27:25','2020-05-03 05:38:29'),(9090,'englishlit','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:16','2020-05-03 05:38:53'),(9091,'government','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:51','2020-05-03 05:39:37'),(9092,'crk','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:29:36','2020-05-03 05:40:00'),(9093,'geography','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:30:23','2020-05-03 05:40:40'),(9094,'economics','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:07','2020-05-03 05:41:19'),(9095,'irk','107.21.76.29',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:39','2020-05-03 05:41:43'),(9096,'civiledu','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:32:21','2020-05-03 05:42:07'),(9097,'insurance','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:33:00','2020-05-03 05:42:48'),(9098,'history','107.21.76.29',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:34:12','2020-05-03 05:44:29'),(9099,'english','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:17'),(9100,'mathematics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:16'),(9101,'commerce','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9102,'biology','3.83.109.40',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9103,'englishlit','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9104,'accounting','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9105,'crk','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9106,'currentaffairs','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9107,'physics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9108,'economics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9109,'history','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9110,'government','3.83.55.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:34:46','2020-05-03 09:34:46'),(9111,'economics','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9112,'english','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:36'),(9113,'commerce','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9114,'accounting','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9115,'geography','54.235.52.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 11:00:21','2020-05-03 11:00:21'),(9116,'commerce','54.146.7.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 12:56:31','2020-05-03 12:56:31'),(9117,'economics','54.91.125.121',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 15:12:25','2020-05-03 15:12:25'),(9118,'mathematics','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:18:04','2020-05-03 16:18:04'),(9119,'englishlit','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:19:28','2020-05-03 16:19:28'),(9120,'commerce','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:02','2020-05-03 16:52:05'),(9121,'accounting','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:26','2020-05-03 16:52:28'),(9122,'biology','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:51','2020-05-03 16:52:53'),(9123,'physics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:53:34','2020-05-03 16:53:36'),(9124,'chemistry','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:00','2020-05-03 16:54:02'),(9125,'englishlit','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:48','2020-05-03 16:54:51'),(9126,'government','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:55:31','2020-05-03 16:55:34'),(9127,'crk','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:56:11','2020-05-03 16:56:13'),(9128,'geography','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:04','2020-05-03 16:57:06'),(9129,'economics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:24','2020-05-03 16:57:26'),(9130,'irk','54.166.138.44',30,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:51','2020-05-03 16:57:53'),(9131,'civiledu','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:17','2020-05-03 16:58:19'),(9132,'insurance','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:58','2020-05-03 16:59:00'),(9133,'currentaffairs','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:59:20','2020-05-03 16:59:22'),(9134,'history','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:00:11','2020-05-03 17:50:17'),(9135,'mathematics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:10','2020-05-03 17:43:43'),(9136,'commerce','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:38','2020-05-03 17:44:06'),(9137,'accounting','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:04','2020-05-03 17:44:35'),(9138,'biology','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:28','2020-05-03 17:44:59'),(9139,'physics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:59','2020-05-03 17:45:22'),(9140,'chemistry','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:03:27','2020-05-03 17:45:51'),(9141,'englishlit','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:02','2020-05-03 17:46:17'),(9142,'crk','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:28','2020-05-03 17:47:18'),(9143,'government','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:57','2020-05-03 17:46:53'),(9144,'geography','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:27','2020-05-03 17:47:43'),(9145,'economics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:55','2020-05-03 17:48:08'),(9146,'irk','3.95.205.237',180,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:29','2020-05-03 17:48:30'),(9147,'civiledu','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:57','2020-05-03 17:48:54'),(9148,'insurance','3.95.205.237',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:23','2020-05-03 17:49:18'),(9149,'currentaffairs','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:55','2020-05-03 17:49:38'),(9150,'insurance','18.234.85.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:51:52','2020-05-03 17:51:52'),(9151,'chemistry','54.81.105.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 19:38:19','2020-05-03 19:38:19'),(9152,'civiledu','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:43:29','2020-05-03 19:43:29'),(9153,'englishlit','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:54:13','2020-05-03 19:54:13'),(9154,'chemistry','105.112.115.225',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 20:27:24','2020-05-03 20:27:24'),(9155,'crk','34.233.133.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 21:37:40','2020-05-03 21:37:40'),(9156,'english','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 23:39:58','2020-05-03 23:39:58'),(9157,'crk','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 00:00:14','2020-05-04 00:00:14'),(9158,'english','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9159,'english','34.201.133.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9160,'physics','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9161,'accounting','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9162,'englishlit','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9163,'geography','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9164,'government','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9165,'economics','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9166,'civiledu','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9167,'irk','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9168,'insurance','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9169,'crk','54.146.129.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 04:53:02','2020-05-04 04:53:02'),(9170,'biology','54.82.169.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 05:39:54','2020-05-04 05:39:54'),(9171,'government','18.212.134.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 07:54:46','2020-05-04 07:54:46'),(9172,'chemistry','41.190.3.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 08:37:26','2020-05-04 08:37:29'),(9173,'chemistry','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:07:07','2020-05-04 09:07:07'),(9174,'economics','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:24:40','2020-05-04 09:24:40'),(9175,'mathematics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:05:23','2020-05-04 10:16:55'),(9176,'commerce','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:06:28','2020-05-04 10:17:26'),(9177,'accounting','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:07:00','2020-05-04 10:18:01'),(9178,'biology','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:17','2020-05-04 10:18:33'),(9179,'physics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:52','2020-05-04 10:18:59'),(9180,'chemistry','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:09:47','2020-05-04 10:19:29'),(9181,'chemistry','197.211.53.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:17','2020-05-04 10:10:17'),(9182,'englishlit','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:27','2020-05-04 10:20:35'),(9183,'government','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:11','2020-05-04 10:21:10'),(9184,'crk','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:46','2020-05-04 10:21:49'),(9185,'economics','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:14','2020-05-04 10:22:21'),(9186,'geography','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:42','2020-05-04 10:22:44'),(9187,'irk','54.226.73.173',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:13:40','2020-05-04 10:23:05'),(9188,'civiledu','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:14:36','2020-05-04 10:24:07'),(9189,'insurance','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:05','2020-05-04 10:24:41'),(9190,'currentaffairs','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:37','2020-05-04 10:25:21'),(9191,'history','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:16:05','2020-05-04 10:25:43'),(9192,'physics','34.230.85.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 11:44:10','2020-05-04 11:44:10'),(9193,'englishlit','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 12:53:41','2020-05-04 12:53:41'),(9194,'currentaffairs','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 13:03:08','2020-05-04 13:03:08'),(9195,'english','54.91.147.136',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 13:59:39','2020-05-04 14:10:23'),(9196,'crk','54.167.221.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 16:21:35','2020-05-04 16:21:35'),(9197,'mathematics','34.227.100.151',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 18:01:31','2020-05-04 18:53:32'),(9198,'commerce','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:06','2020-05-04 18:53:59'),(9199,'accounting','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:40','2020-05-04 18:54:21'),(9200,'biology','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:08','2020-05-04 18:54:50'),(9201,'physics','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:52','2020-05-04 18:48:01'),(9202,'chemistry','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:22','2020-05-04 18:55:24'),(9203,'englishlit','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:55','2020-05-04 18:55:50'),(9204,'government','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:06:25','2020-05-04 18:56:46'),(9205,'irk','34.227.100.151',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:05','2020-05-04 18:58:12'),(9206,'geography','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:32','2020-05-04 18:57:53'),(9207,'economics','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:56','2020-05-04 18:57:27'),(9208,'crk','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:08:29','2020-05-04 18:57:05'),(9209,'civiledu','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:22','2020-05-04 18:58:33'),(9210,'insurance','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:52','2020-05-04 18:59:01'),(9211,'currentaffairs','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:10:36','2020-05-04 18:59:20'),(9212,'history','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:11:01','2020-05-04 18:59:44'),(9213,'englishlit','54.91.12.60',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:19:14','2020-05-04 18:19:14'),(9214,'english','34.227.100.151',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:41:22','2020-05-04 18:56:16'),(9215,'chemistry','77.88.5.170',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:43:38','2020-05-04 18:43:38'),(9216,'chemistry','54.90.243.173',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 19:36:36','2020-05-04 19:36:36'),(9217,'economics','18.208.245.55',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 20:24:40','2020-05-04 20:24:40'),(9218,'government','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:34:09','2020-05-04 22:34:09'),(9219,'crk','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:56:00','2020-05-04 22:56:00'),(9220,'english','34.230.41.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 01:39:36','2020-05-05 01:39:36'),(9221,'english','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9222,'biology','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9223,'chemistry','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9224,'government','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9225,'irk','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:53'),(9226,'civiledu','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9227,'insurance','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9228,'currentaffairs','54.82.122.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 15:55:27','2020-05-05 15:55:27'),(9229,'currentaffairs','35.171.182.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 17:52:25','2020-05-05 17:52:25'),(9230,'civiledu','54.162.194.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:44:31','2020-05-05 18:44:31'),(9231,'chemistry','105.112.22.22',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:54:47','2020-05-05 18:55:46'),(9232,'economics','3.81.61.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 20:23:57','2020-05-05 20:23:57'),(9233,'civiledu','34.229.1.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:13:48','2020-05-05 21:13:48'),(9234,'english','35.175.224.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:50:44','2020-05-05 21:50:44'),(9235,'english','66.249.64.72',7,'',NULL,'',NULL,NULL,NULL,'','','2020-05-05 22:53:19','2020-05-05 22:53:19'),(9236,'accounting','3.89.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 23:06:38','2020-05-05 23:06:38'),(9237,'biology','66.249.64.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 04:40:45','2020-05-06 04:40:46'),(9238,'biology','3.82.138.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 11:39:57','2020-05-06 11:39:57'),(9239,'government','54.159.33.148',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 15:34:04','2020-05-06 15:34:04'),(9240,'chemistry','54.36.149.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:24:22','2020-05-06 16:24:22'),(9241,'chemistry','54.36.148.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:28:45','2020-05-06 16:28:45'),(9242,'chemistry','54.36.149.15',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:32:20','2020-05-06 16:32:20'),(9243,'chemistry','105.112.52.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 17:44:03','2020-05-06 17:44:03'),(9244,'government','35.153.179.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:00:30','2020-05-06 18:00:30'),(9245,'crk','107.22.153.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:46:09','2020-05-06 18:46:09'),(9246,'insurance','52.207.168.128',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 20:37:45','2020-05-06 20:37:45'),(9247,'crk','54.152.178.63',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 22:54:07','2020-05-06 22:54:07'),(9248,'chemistry','102.89.2.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 23:18:18','2020-05-06 23:18:18'),(9249,'english','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9250,'commerce','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9251,'chemistry','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9252,'government','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9253,'irk','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9254,'civiledu','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9255,'insurance','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:11'),(9256,'chemistry','197.210.46.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:09:52','2020-05-25 11:09:52'),(9257,'chemistry','197.210.198.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:16:21','2020-05-25 11:16:21'),(9258,'chemistry','197.210.53.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:23:10','2020-05-25 11:23:15'),(9259,'chemistry','157.55.39.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:55:56','2020-05-25 11:55:56'),(9260,'commerce','3.94.205.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:06:49','2020-05-25 12:06:49'),(9261,'economics','54.226.128.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:53:03','2020-05-25 12:53:03'),(9262,'crk','54.91.154.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 14:42:35','2020-05-25 14:42:35'),(9263,'mathematics','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:28:22','2020-05-25 15:28:22'),(9264,'chemistry','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:33:33','2020-05-25 15:33:33'),(9265,'economics','54.91.243.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 17:58:39','2020-05-25 17:58:39'),(9266,'mathematics','66.249.66.136',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:15:02','2020-05-25 19:15:05'),(9267,'chemistry','15.236.101.59',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:49:10','2020-05-25 19:51:59'),(9268,'government','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:08:24','2020-05-25 21:08:24'),(9269,'chemistry','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:16:46','2020-05-25 21:16:46'),(9270,'chemistry','197.210.70.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:21:23','2020-05-25 22:21:23'),(9271,'geography','18.212.164.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:31:38','2020-05-25 22:31:38'),(9272,'government','54.81.15.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 23:48:45','2020-05-25 23:48:45'),(9273,'commerce','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 00:35:21','2020-05-26 00:35:21'),(9274,'economics','34.203.224.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 01:14:02','2020-05-26 01:14:02'),(9275,'crk','18.232.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 02:43:23','2020-05-26 02:43:23'),(9276,'insurance','18.212.41.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 04:09:34','2020-05-26 04:09:34'),(9277,'englishlit','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 06:53:11','2020-05-26 06:53:11'),(9278,'chemistry','41.190.31.41',122,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:00:17','2020-05-26 07:07:55'),(9279,'irk','41.190.31.41',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:09:11','2020-05-26 07:09:13'),(9280,'english','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:27','2020-05-26 07:19:27'),(9281,'english','41.190.31.41',839,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:30','2020-05-26 10:55:38'),(9282,'civiledu','54.159.94.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:11:23','2020-05-26 08:11:23'),(9283,'chemistry','105.112.24.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:25:30','2020-05-26 08:25:30'),(9284,'crk','3.87.153.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 09:29:02','2020-05-26 09:29:02'),(9285,'crk','52.90.24.192',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 11:46:19','2020-05-26 11:46:19'),(9286,'physics','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 21:42:14','2020-05-26 21:42:14'),(9287,'english','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:01:46','2020-05-26 22:01:46'),(9288,'chemistry','197.210.84.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:06:54','2020-05-26 22:09:09'),(9289,'currentaffairs','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:28:46','2020-05-26 23:28:46'),(9290,'englishlit','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:33:46','2020-05-26 23:33:46'),(9291,'englishlit','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 02:53:40','2020-05-27 02:53:40'),(9292,'economics','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 03:19:57','2020-05-27 03:19:57'),(9293,'chemistry','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:08:27','2020-05-27 04:08:27'),(9294,'crk','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:26:11','2020-05-27 04:26:11'),(9295,'insurance','18.209.13.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 05:07:33','2020-05-27 05:07:33'),(9296,'government','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:46:52','2020-05-27 06:46:52'),(9297,'crk','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:59:51','2020-05-27 06:59:51'),(9298,'geography','34.201.141.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 08:25:36','2020-05-27 08:25:36'),(9299,'english','3.84.219.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 10:53:47','2020-05-27 10:53:47'),(9300,'chemistry','169.255.236.30',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:14:45','2020-05-27 11:16:08'),(9301,'chemistry','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:29:07','2020-05-27 12:32:12'),(9302,'physics','41.190.30.150',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:34:30','2020-05-27 12:20:54'),(9303,'economics','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:37:24','2020-05-27 12:37:24'),(9304,'government','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:40:47','2020-05-27 12:23:05'),(9305,'biology','41.190.30.150',79,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:43:55','2020-05-27 12:19:37'),(9306,'biology','34.228.70.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:47:18','2020-05-27 11:47:18'),(9307,'mathematics','41.190.30.150',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:48:42','2020-05-27 12:17:48'),(9308,'english','41.190.30.150',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:50:16','2020-05-27 12:13:47'),(9309,'geography','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:53:34','2020-05-27 12:15:29'),(9310,'history','41.190.30.150',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:57:18','2020-05-27 11:57:22'),(9311,'englishlit','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 12:01:50','2020-05-27 12:07:14'),(9312,'chemistry','34.204.193.85',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 15:13:53','2020-05-27 15:45:24'),(9313,'currentaffairs','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:35:28','2020-05-27 17:35:28'),(9314,'civiledu','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:48:39','2020-05-27 17:48:39'),(9315,'chemistry','41.190.14.68',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:10','2020-05-27 17:54:19'),(9316,'english','41.190.14.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:32','2020-05-27 17:51:35'),(9317,'english','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:17:07','2020-05-27 20:17:07'),(9318,'chemistry','94.130.16.50',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:08','2020-05-27 20:36:12'),(9319,'biology','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:43','2020-05-27 20:33:43'),(9320,'accounting','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:51:21','2020-05-27 20:51:21'),(9321,'chemistry','154.66.36.151',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:46:00','2020-05-27 22:52:44'),(9322,'english','154.66.36.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:48:02','2020-05-27 22:48:02'),(9323,'chemistry','105.112.70.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 23:32:12','2020-05-27 23:32:12'),(9324,'chemistry','157.55.39.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 03:31:42','2020-05-28 03:31:42'),(9325,'english','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:40','2020-05-28 04:32:41'),(9326,'mathematics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9327,'biology','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9328,'economics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9329,'irk','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9330,'insurance','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9331,'history','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9332,'chemistry','196.32.235.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:01:12','2020-05-28 05:01:12'),(9333,'chemistry','129.205.112.224',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:51:40','2020-05-28 05:53:11'),(9334,'mathematics','129.205.112.224',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:55:48','2020-05-28 05:59:02'),(9335,'chemistry','82.145.210.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:57:23','2020-05-28 05:57:23'),(9336,'chemistry','185.26.180.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 07:18:49','2020-05-28 07:18:49'),(9337,'geography','54.196.45.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:04:20','2020-05-28 09:04:20'),(9338,'chemistry','197.210.226.225',105,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:25:44','2020-05-28 10:24:13'),(9339,'chemistry','197.210.226.44',55,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:27:16','2020-05-28 10:22:52'),(9340,'chemistry','197.210.227.211',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:30:21','2020-05-28 10:21:54'),(9341,'english','197.210.227.211',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:54:07','2020-05-28 09:54:10'),(9342,'english','197.210.226.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:55:01','2020-05-28 09:55:04'),(9343,'english','197.210.226.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 10:03:53','2020-05-28 10:09:18'),(9344,'physics','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:10:25','2020-05-28 13:10:25'),(9345,'chemistry','197.210.44.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:26:05','2020-05-28 13:26:05'),(9346,'government','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:29:47','2020-05-28 13:29:47'),(9347,'chemistry','197.210.52.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:54:51','2020-05-28 14:08:36'),(9348,'chemistry','197.210.52.59',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:57:55','2020-05-28 13:57:55'),(9349,'chemistry','197.210.52.25',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:58:05','2020-05-28 13:58:13'),(9350,'chemistry','197.210.52.232',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:06:52','2020-05-28 14:06:55'),(9351,'chemistry','197.210.53.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:08:55','2020-05-28 14:53:41'),(9352,'chemistry','197.210.52.82',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:19:48','2020-05-28 14:54:31'),(9353,'chemistry','197.210.53.190',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:14','2020-05-28 14:53:55'),(9354,'insurance','197.210.53.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:51','2020-05-28 14:49:51'),(9355,'physics','197.210.53.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:50:15','2020-05-28 14:50:15'),(9356,'mathematics','197.210.53.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:51:48','2020-05-28 14:52:01'),(9357,'mathematics','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:34','2020-05-28 14:52:34'),(9358,'english','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:52','2020-05-28 14:52:52'),(9359,'english','197.210.52.82',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:07','2020-05-28 14:53:16'),(9360,'chemistry','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:33','2020-05-28 14:53:33'),(9361,'insurance','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:20:04','2020-05-28 15:20:04'),(9362,'chemistry','129.205.112.208',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:37:00','2020-05-28 15:38:41'),(9363,'crk','18.208.110.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:19:54','2020-05-28 17:19:54'),(9364,'chemistry','129.56.80.227',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:42:36','2020-05-28 17:57:17'),(9365,'chemistry','197.210.226.198',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 18:07:17','2020-05-28 19:14:47'),(9366,'chemistry','197.210.226.91',1562,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:09:38','2020-05-28 20:03:58'),(9367,'chemistry','197.210.226.220',2081,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:11:37','2020-05-28 20:03:48'),(9368,'english','197.210.226.220',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:05:42','2020-05-28 20:15:39'),(9369,'english','197.210.226.91',1080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:06:07','2020-05-28 20:15:26'),(9370,'english','197.210.226.198',2840,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:07:48','2020-05-28 20:15:35'),(9371,'mathematics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:07','2020-05-28 20:23:22'),(9372,'mathematics','197.210.226.91',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:15','2020-05-28 20:25:33'),(9373,'biology','197.210.226.198',1480,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:01','2020-05-28 20:41:32'),(9374,'biology','197.210.226.91',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:14','2020-05-28 20:41:25'),(9375,'civiledu','197.210.226.198',1960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:42:54','2020-05-28 21:07:50'),(9376,'civiledu','197.210.226.91',1560,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:43:16','2020-05-28 21:09:58'),(9377,'civiledu','197.210.226.220',1320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:45:38','2020-05-28 21:10:08'),(9378,'physics','197.210.226.220',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:19','2020-05-28 20:49:51'),(9379,'physics','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:27','2020-05-28 20:49:39'),(9380,'government','197.210.226.91',1400,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:05','2020-05-28 20:57:45'),(9381,'government','197.210.226.220',960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:12','2020-05-28 20:57:41'),(9382,'government','197.210.226.198',1680,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:52:42','2020-05-28 20:56:48'),(9383,'insurance','197.210.226.91',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:58:57','2020-05-28 21:03:46'),(9384,'insurance','197.210.226.220',1360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:59:01','2020-05-28 21:03:58'),(9385,'history','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:48','2020-05-28 21:02:54'),(9386,'history','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:53','2020-05-28 21:02:49'),(9387,'geography','197.210.226.91',760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:05:51','2020-05-28 21:08:55'),(9388,'geography','197.210.226.198',640,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:06:05','2020-05-28 21:07:54'),(9389,'geography','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:07:55','2020-05-28 21:08:51'),(9390,'economics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:09:59','2020-05-28 21:15:23'),(9391,'economics','197.210.226.91',1160,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:15','2020-05-28 21:15:30'),(9392,'economics','197.210.226.198',1720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:42','2020-05-28 21:15:34'),(9393,'commerce','197.210.226.91',1760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:15','2020-05-28 21:17:42'),(9394,'commerce','197.210.226.198',2080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:19','2020-05-28 21:17:46'),(9395,'commerce','197.210.226.220',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:14:56','2020-05-28 21:15:26'),(9396,'geography','3.82.229.138',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 22:59:25','2020-05-28 22:59:25'),(9397,'chemistry','54.36.148.3',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 23:37:10','2020-05-28 23:37:10'),(9398,'chemistry','54.36.148.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:24:10','2020-05-29 00:24:10'),(9399,'chemistry','54.36.148.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:31:09','2020-05-29 00:31:09'),(9400,'geography','54.164.65.241',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:26:22','2020-05-29 01:59:55'),(9401,'economics','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:34:57','2020-05-29 01:34:57'),(9402,'english','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 02:28:56','2020-05-29 02:28:56'),(9403,'mathematics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9404,'biology','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9405,'government','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9406,'geography','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9407,'economics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9408,'currentaffairs','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9409,'history','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9410,'geography','54.164.210.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:31:40','2020-05-29 08:31:40'),(9411,'chemistry','197.210.64.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:43:12','2020-05-29 21:25:53'),(9412,'physics','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:30:46','2020-05-29 09:30:46'),(9413,'englishlit','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:48:29','2020-05-29 09:48:29'),(9414,'biology','3.85.236.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:29:11','2020-05-29 11:29:11'),(9415,'chemistry','34.239.119.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:51:20','2020-05-29 11:51:20'),(9416,'chemistry','185.20.6.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:58:05','2020-05-29 11:58:05'),(9417,'currentaffairs','54.85.98.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 12:25:10','2020-05-29 12:25:10'),(9418,'physics','3.81.136.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 15:59:43','2020-05-29 15:59:43'),(9419,'mathematics','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 16:57:16','2020-05-29 16:57:16'),(9420,'geography','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 17:11:25','2020-05-29 17:11:25'),(9421,'geography','3.86.16.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:01:00','2020-05-29 19:01:00'),(9422,'mathematics','34.229.23.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:42:00','2020-05-29 19:42:00'),(9423,'government','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:04:38','2020-05-29 21:04:38'),(9424,'history','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:37:50','2020-05-29 21:37:50'),(9425,'mathematics','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:09:44','2020-05-29 23:09:44'),(9426,'accounting','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:39:35','2020-05-29 23:39:35'),(9427,'mathematics','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:47'),(9428,'commerce','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:48'),(9429,'accounting','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9430,'biology','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9431,'geography','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9432,'irk','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9433,'currentaffairs','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9434,'accounting','3.89.232.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 08:21:13','2020-05-30 08:21:13'),(9435,'biology','54.208.77.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 11:46:23','2020-05-30 11:46:23'),(9436,'chemistry','144.76.56.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 17:12:22','2020-05-30 17:12:22'),(9437,'accounting','3.94.91.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 18:38:25','2020-05-30 18:38:25'),(9438,'insurance','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 11:49:35','2020-06-01 11:49:35'),(9439,'economics','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 12:10:32','2020-06-01 12:10:32'),(9440,'english','54.159.64.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:04:44','2020-06-01 13:04:44'),(9441,'mathematics','52.2.222.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:49:07','2020-06-01 13:49:07'),(9442,'englishlit','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9443,'crk','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9444,'economics','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:42:44','2020-06-01 14:42:44'),(9445,'crk','54.174.23.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:33:34','2020-06-01 16:33:34'),(9446,'geography','54.174.23.76',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:19','2020-06-01 17:19:55'),(9447,'mathematics','54.174.23.76',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:29','2020-06-01 17:43:19'),(9448,'biology','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9449,'chemistry','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9450,'englishlit','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9451,'government','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9452,'economics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:55','2020-06-01 17:19:55'),(9453,'english','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:18','2020-06-01 17:43:18'),(9454,'accounting','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9455,'physics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9456,'insurance','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:20','2020-06-01 17:43:20'),(9457,'history','3.85.59.140',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 20:12:18','2020-06-01 20:33:55'),(9458,'physics','35.172.115.238',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 23:04:28','2020-06-01 23:04:28'),(9459,'english','54.209.246.16',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 01:03:57','2020-06-02 01:03:57'),(9460,'currentaffairs','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:01:14','2020-06-02 02:01:14'),(9461,'englishlit','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:06:10','2020-06-02 02:06:10'),(9462,'insurance','54.211.248.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 04:46:23','2020-06-02 04:46:23'),(9463,'crk','54.205.222.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 05:30:27','2020-06-02 05:30:27'),(9464,'economics','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:20:56','2020-06-02 06:20:56'),(9465,'chemistry','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:38:36','2020-06-02 06:38:36'),(9466,'englishlit','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 07:02:43','2020-06-02 07:02:43'),(9467,'government','54.196.8.56',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 08:34:31','2020-06-02 08:34:31'),(9468,'geography','54.86.69.81',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 10:40:11','2020-06-02 10:40:11'),(9469,'chemistry','41.190.12.59',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-02 10:55:51','2020-06-02 10:55:54'),(9470,'english','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 12:19:33','2020-06-02 12:19:33'),(9471,'economics','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 23:59:57','2020-06-02 23:59:57'),(9472,'currentaffairs','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 00:22:59','2020-06-03 00:22:59'),(9473,'civiledu','35.173.231.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 02:25:11','2020-06-03 02:25:11'),(9474,'english','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 04:48:53','2020-06-03 05:17:39'),(9475,'accounting','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9476,'government','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9477,'civiledu','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9478,'insurance','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9479,'currentaffairs','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:42'),(9480,'history','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9481,'biology','3.208.9.26',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:51:48','2020-06-03 05:51:48'),(9482,'accounting','3.81.96.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 06:39:27','2020-06-03 06:39:27'),(9483,'economics','34.228.56.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:19:49','2020-06-03 12:19:49'),(9484,'englishlit','34.228.56.210',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:47:48','2020-06-03 12:51:59'),(9485,'mathematics','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9486,'commerce','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9487,'accounting','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9488,'biology','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9489,'englishlit','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9490,'government','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9491,'crk','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9492,'geography','52.91.141.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 18:34:51','2020-06-03 18:34:51'),(9493,'mathematics','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:32','2020-06-03 19:33:45'),(9494,'commerce','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:54','2020-06-03 19:36:09'),(9495,'currentaffairs','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:05','2020-06-03 19:34:05'),(9496,'crk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:11','2020-06-03 19:35:12'),(9497,'chemistry','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:57','2020-06-03 19:36:15'),(9498,'irk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:26','2020-06-03 19:36:00'),(9499,'english','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:36','2020-06-03 19:35:36'),(9500,'englishlit','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:54:43','2020-06-03 19:54:43'),(9501,'government','54.85.212.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 21:33:59','2020-06-03 21:33:59'),(9502,'insurance','3.86.225.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 23:35:47','2020-06-03 23:35:47'),(9503,'crk','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 00:57:31','2020-06-04 00:57:31'),(9504,'physics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:23:50','2020-06-04 06:23:50'),(9505,'mathematics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:34:26','2020-06-04 06:34:26'),(9506,'geography','34.205.74.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 07:10:34','2020-06-04 07:10:34'),(9507,'economics','54.242.18.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 08:36:04','2020-06-04 08:36:04'),(9508,'geography','3.83.161.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:26:27','2020-06-04 10:53:11'),(9509,'english','3.83.161.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:49:32','2020-06-04 10:49:32'),(9510,'mathematics','54.91.240.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 12:15:58','2020-06-04 12:15:58'),(9511,'biology','3.87.239.123',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 15:09:53','2020-06-04 15:09:53'),(9512,'chemistry','41.190.12.5',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-04 15:57:02','2020-06-04 15:57:05'),(9513,'geography','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:22:59','2020-06-04 16:22:59'),(9514,'physics','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:23:13','2020-06-04 16:23:13'),(9515,'englishlit','3.94.109.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:58:33','2020-06-04 16:58:33'),(9516,'currentaffairs','54.159.111.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:11:39','2020-06-04 19:11:39'),(9517,'english','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:37:05','2020-06-04 19:37:08'),(9518,'mathematics','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:44:40','2020-06-04 19:51:52'),(9519,'biology','18.207.247.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:57:06','2020-06-04 19:57:06'),(9520,'physics','54.196.42.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 00:29:32','2020-06-05 00:29:32'),(9521,'geography','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 02:42:52','2020-06-05 02:42:52'),(9522,'government','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:47','2020-06-05 03:06:47'),(9523,'mathematics','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:51','2020-06-05 03:06:51'),(9524,'history','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 07:51:51','2020-06-05 07:51:51'),(9525,'accounting','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 08:06:02','2020-06-05 08:06:02'),(9526,'accounting','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:31','2020-06-05 15:31:38'),(9527,'crk','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:41','2020-06-05 15:31:44'),(9528,'accounting','54.160.137.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 17:41:28','2020-06-05 17:41:28'),(9529,'biology','18.205.22.3',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:49:31','2020-06-05 18:55:02'),(9530,'commerce','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:01','2020-06-05 18:55:02'),(9531,'accounting','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9532,'government','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9533,'economics','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9534,'insurance','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9535,'history','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9536,'history','52.91.27.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 23:09:41','2020-06-05 23:09:41'),(9537,'history','3.85.77.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 01:06:10','2020-06-06 01:06:10'),(9538,'accounting','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:12:01','2020-06-06 03:12:01'),(9539,'chemistry','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:28:00','2020-06-06 03:28:00'),(9540,'irk','3.91.16.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 05:27:37','2020-06-06 05:27:37'),(9541,'english','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9542,'physics','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9543,'englishlit','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9544,'government','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:40'),(9545,'economics','3.90.106.57',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 17:12:22'),(9546,'irk','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9547,'history','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9548,'commerce','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9549,'physics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9550,'chemistry','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9551,'crk','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9552,'economics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9553,'civiledu','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9554,'insurance','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9555,'insurance','52.207.159.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 15:54:55','2020-06-06 15:54:55'),(9556,'economics','52.70.110.33',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 18:01:25','2020-06-06 18:01:25'),(9557,'history','52.90.40.161',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 19:35:54','2020-06-06 20:01:45'),(9558,'accounting','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:44','2020-06-06 20:01:45'),(9559,'biology','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9560,'chemistry','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9561,'crk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9562,'irk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9563,'civiledu','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9564,'history','54.210.221.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 21:37:33','2020-06-06 21:37:33'),(9565,'economics','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:20:46','2020-06-07 00:20:46'),(9566,'englishlit','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:46:15','2020-06-07 00:46:15'),(9567,'english','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9568,'mathematics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9569,'physics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9570,'chemistry','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:16'),(9571,'government','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9572,'crk','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9573,'insurance','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9574,'irk','54.224.8.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 05:20:52','2020-06-07 05:20:52'),(9575,'commerce','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:08:43','2020-06-07 08:08:43'),(9576,'english','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:42:36','2020-06-07 08:42:36'),(9577,'crk','54.221.109.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 10:13:14','2020-06-07 10:13:14'),(9578,'economics','54.225.32.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:34:16','2020-06-07 12:34:16'),(9579,'english','52.72.124.107',400,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:53:32','2020-06-07 13:40:54'),(9580,'government','3.93.176.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 15:19:14','2020-06-07 15:19:14'),(9581,'chemistry','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:21:24','2020-06-07 17:21:24'),(9582,'economics','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:49:48','2020-06-07 17:49:48'),(9583,'government','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:52:13','2020-06-07 17:52:13'),(9584,'geography','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:53:52','2020-06-07 17:53:52'),(9585,'crk','105.112.176.254',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-07 19:15:46','2020-06-07 19:15:48'),(9586,'commerce','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:29:05','2020-06-07 21:29:05'),(9587,'english','54.90.107.82',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:36:38','2020-06-07 22:14:18'),(9588,'insurance','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:52:14','2020-06-07 21:52:14'),(9589,'english','54.83.121.94',680,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 23:24:33','2020-06-08 00:10:20'),(9590,'crk','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 00:57:41','2020-06-08 00:57:41'),(9591,'english','3.80.114.187',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:05:57','2020-06-08 01:07:20'),(9592,'civiledu','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:19:10','2020-06-08 01:19:10'),(9593,'englishlit','54.87.33.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 02:09:25','2020-06-08 02:09:25'),(9594,'english','54.196.250.109',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:14:09','2020-06-08 06:58:08'),(9595,'crk','3.80.171.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:47:50','2020-06-08 07:07:58'),(9596,'english','3.80.171.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:55:00','2020-06-08 06:55:00'),(9597,'english','54.167.101.91',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 13:03:52','2020-06-08 13:05:05'),(9598,'physics','3.95.171.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 15:20:45','2020-06-08 15:20:45'),(9599,'english','52.203.0.65',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 16:36:54','2020-06-08 16:36:54'),(9600,'english','34.201.76.45',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:10:20','2020-06-08 17:17:39'),(9601,'history','34.201.76.45',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:19:47','2020-06-08 17:19:50'),(9602,'englishlit','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:33:25','2020-06-08 17:33:25'),(9603,'currentaffairs','54.204.150.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:27:19','2020-06-08 18:27:19'),(9604,'history','3.87.156.54',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:58:06','2020-06-08 19:42:37'),(9605,'insurance','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:18:35','2020-06-08 20:18:35'),(9606,'crk','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:21:48','2020-06-08 20:21:48'),(9607,'englishlit','18.207.128.248',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:58:53','2020-06-08 20:58:53'),(9608,'chemistry','3.93.176.236',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 21:53:07','2020-06-08 21:53:07'),(9609,'economics','54.82.36.157',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 23:04:51','2020-06-08 23:04:51'),(9610,'government','54.86.240.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:01:33','2020-06-09 00:01:33'),(9611,'crk','3.85.86.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:37:54','2020-06-09 00:37:54'),(9612,'geography','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 02:38:55','2020-06-09 02:38:55'),(9613,'english','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:10:07','2020-06-09 03:10:07'),(9614,'history','3.83.163.75',680,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:12:41','2020-06-09 05:07:42'),(9615,'mathematics','3.83.163.75',320,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:02:16','2020-06-09 04:41:32'),(9616,'english','3.83.163.75',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:41:57','2020-06-09 05:07:46'),(9617,'history','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:33','2020-06-09 10:53:29'),(9618,'english','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:36','2020-06-09 10:53:32'),(9619,'mathematics','52.23.182.126',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 10:54:17','2020-06-09 11:12:18'),(9620,'mathematics','35.175.193.162',1596,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 14:27:00','2020-06-09 16:15:07'),(9621,'economics','54.204.126.52',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 15:24:33','2020-06-09 15:24:33'),(9622,'currentaffairs','54.91.74.154',3,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:21:57','2020-06-09 17:25:11'),(9623,'civiledu','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:24:52','2020-06-09 17:24:52'),(9624,'mathematics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9625,'government','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9626,'crk','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9627,'geography','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9628,'economics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:11'),(9629,'insurance','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:11','2020-06-09 17:25:11'),(9630,'history','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:06','2020-06-09 17:36:08'),(9631,'english','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:09','2020-06-09 17:36:12'),(9632,'history','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:51:30','2020-06-09 17:51:30'),(9633,'english','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 19:54:48','2020-06-09 19:54:48'),(9634,'economics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:09:36','2020-06-09 20:09:36'),(9635,'mathematics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:17:47','2020-06-09 20:17:47'),(9636,'biology','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:20:39','2020-06-09 20:20:39'),(9637,'accounting','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:32:25','2020-06-09 20:32:25'),(9638,'geography','54.175.242.92',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 22:47:17','2020-06-09 22:47:17'),(9639,'mathematics','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9640,'biology','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9641,'chemistry','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9642,'crk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9643,'geography','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:58'),(9644,'irk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9645,'insurance','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9646,'economics','3.94.91.40',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 06:49:53','2020-06-10 06:49:53'),(9647,'english','54.164.250.86',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 07:55:11','2020-06-10 07:55:14'),(9648,'biology','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:01','2020-06-10 10:14:17'),(9649,'english','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:04','2020-06-10 10:14:20'),(9650,'geography','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:43:01','2020-06-10 09:43:01'),(9651,'currentaffairs','34.228.169.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 10:40:47','2020-06-10 10:40:47'),(9652,'physics','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:41','2020-06-10 12:30:40'),(9653,'english','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:51','2020-06-10 12:30:44'),(9654,'physics','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:32:35','2020-06-10 12:32:35'),(9655,'government','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:52:28','2020-06-10 12:52:28'),(9656,'insurance','34.229.159.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 14:58:20','2020-06-10 14:58:20'),(9657,'mathematics','35.173.239.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 15:35:55','2020-06-10 15:35:55'),(9658,'crk','3.86.97.187',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 16:58:01','2020-06-10 16:58:01'),(9659,'history','34.229.88.249',470,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:16','2020-06-10 17:23:26'),(9660,'english','34.229.88.249',482,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:19','2020-06-10 17:23:29'),(9661,'history','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:02','2020-06-10 18:16:04'),(9662,'english','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:05','2020-06-10 18:16:08'),(9663,'mathematics','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:05:59','2020-06-10 22:05:59'),(9664,'geography','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:27:25','2020-06-10 22:27:25'),(9665,'geography','52.72.218.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:19:39','2020-06-11 01:19:39'),(9666,'english','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:59:15','2020-06-11 01:59:15'),(9667,'geography','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 02:27:07','2020-06-11 02:27:07'),(9668,'mathematics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:11:45','2020-06-11 03:11:45'),(9669,'englishlit','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:26:44','2020-06-11 03:26:44'),(9670,'economics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:33:39','2020-06-11 03:33:39'),(9671,'physics','54.237.231.196',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:12:05','2020-06-11 06:34:08'),(9672,'english','54.237.231.196',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:28:30','2020-06-11 06:34:10'),(9673,'geography','54.82.9.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 07:31:00','2020-06-11 07:31:00'),(9674,'physics','34.201.154.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 08:15:39','2020-06-11 08:15:39'),(9675,'englishlit','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:18:15','2020-06-11 09:18:15'),(9676,'currentaffairs','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:53:23','2020-06-11 09:53:23'),(9677,'geography','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 17:57:01','2020-06-11 17:57:01'),(9678,'chemistry','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:07:43','2020-06-11 18:07:43'),(9679,'government','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:18:55','2020-06-11 18:18:55'),(9680,'mathematics','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:29:47','2020-06-11 18:29:47'),(9681,'mathematics','34.204.107.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 20:09:41','2020-06-11 20:09:41'),(9682,'history','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:07:01','2020-06-11 21:07:01'),(9683,'accounting','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:15:15','2020-06-11 21:15:15'),(9684,'mathematics','54.81.240.233',280,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 06:45:16','2020-06-12 07:03:55'),(9685,'mathematics','54.162.119.234',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 07:52:29','2020-06-12 07:54:13'),(9686,'accounting','54.224.233.71',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 08:25:02','2020-06-12 08:25:02'),(9687,'mathematics','34.203.222.37',720,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-12 09:06:04','2020-06-12 09:50:04'),(9688,'mathematics','52.90.186.75',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:37:46','2020-06-12 10:44:14'),(9689,'biology','3.89.193.33',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:55:51','2020-06-12 10:55:51'),(9690,'englishlit','41.90.5.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:05:39','2020-06-12 13:05:41'),(9691,'history','54.236.252.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:33:09','2020-06-12 13:33:09'),(9692,'mathematics','3.81.215.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:39:44','2020-06-12 16:01:07'),(9693,'history','54.165.172.105',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:55:54','2020-06-12 15:55:54'),(9694,'accounting','3.86.93.233',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 17:29:11','2020-06-12 17:29:11'),(9695,'irk','3.208.21.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 20:36:13','2020-06-12 20:36:13'),(9696,'biology','54.152.97.16',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 22:32:45','2020-06-12 22:32:45'),(9697,'mathematics','54.226.209.23',800,'','US','','Virginia',NULL,NULL,'','','2020-06-12 23:38:09','2020-06-13 00:51:21'),(9698,'mathematics','52.91.175.68',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 01:40:43','2020-06-13 01:40:45'),(9699,'mathematics','54.152.163.102',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 02:16:58','2020-06-13 02:23:32'),(9700,'mathematics','54.163.49.62',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-13 06:48:30','2020-06-13 07:42:02'),(9701,'economics','3.80.186.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 07:05:55','2020-06-13 07:05:55'),(9702,'english','34.226.218.50',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:26:06','2020-06-13 08:33:08'),(9703,'insurance','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:28:58','2020-06-13 08:28:58'),(9704,'economics','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:55:48','2020-06-13 08:55:48'),(9705,'history','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 09:26:26','2020-06-13 09:26:26'),(9706,'history','34.235.159.175',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 11:48:21','2020-06-13 11:48:21'),(9707,'english','3.92.177.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 12:37:38','2020-06-13 12:37:38'),(9708,'englishlit','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:26:25','2020-06-13 14:26:25'),(9709,'economics','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:48:24','2020-06-13 14:48:24'),(9710,'irk','3.82.202.68',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 17:12:27','2020-06-13 17:12:27'),(9711,'mathematics','3.88.29.43',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 22:46:42','2020-06-13 22:46:45'),(9712,'english','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:02:32','2020-06-13 23:02:32'),(9713,'biology','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:10:31','2020-06-13 23:10:31'),(9714,'commerce','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:11:36','2020-06-13 23:11:36'),(9715,'crk','18.212.212.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 00:37:04','2020-06-14 00:37:04'),(9716,'economics','54.144.12.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 03:33:29','2020-06-14 03:33:29'),(9717,'government','18.215.251.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 05:40:04','2020-06-14 05:40:04'),(9718,'chemistry','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 06:42:21','2020-06-14 06:42:21'),(9719,'economics','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:03:38','2020-06-14 08:03:38'),(9720,'geography','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:07:21','2020-06-14 08:07:21'),(9721,'commerce','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:44:47','2020-06-14 08:44:47'),(9722,'biology','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:49:18','2020-06-14 08:49:18'),(9723,'insurance','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 11:39:05','2020-06-14 11:39:05'),(9724,'crk','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 12:49:53','2020-06-14 12:49:53'),(9725,'government','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 13:52:33','2020-06-14 13:52:33'),(9726,'civiledu','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:41:47','2020-06-14 15:41:47'),(9727,'english','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:45:01','2020-06-14 15:45:01'),(9728,'englishlit','34.207.148.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 16:28:31','2020-06-14 16:28:31'),(9729,'chemistry','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:15:57','2020-06-14 22:15:57'),(9730,'crk','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:29:17','2020-06-14 22:29:17'),(9731,'history','54.83.174.162',560,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:21','2020-06-15 02:23:52'),(9732,'english','54.83.174.162',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:28','2020-06-15 02:23:55'),(9733,'english','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:12:28','2020-06-15 06:12:28'),(9734,'englishlit','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:21:57','2020-06-15 06:21:57'),(9735,'currentaffairs','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:11:29','2020-06-15 08:11:29'),(9736,'physics','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:22:03','2020-06-15 08:22:03'),(9737,'crk','18.212.75.232',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 09:01:28','2020-06-15 09:01:28'),(9738,'englishlit','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:24:36','2020-06-15 10:24:36'),(9739,'insurance','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:29:58','2020-06-15 10:29:58'),(9740,'chemistry','54.172.215.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:11:58','2020-06-15 12:11:58'),(9741,'history','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:21:57','2020-06-15 12:23:22'),(9742,'english','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:22:00','2020-06-15 12:23:25'),(9743,'economics','184.73.145.115',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 13:15:25','2020-06-15 13:15:25'),(9744,'government','54.84.68.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 14:07:49','2020-06-15 14:07:49'),(9745,'crk','34.239.49.32',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 15:22:17','2020-06-15 15:22:17'),(9746,'english','54.242.223.207',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 16:33:06','2020-06-15 16:33:06'),(9747,'geography','54.242.223.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 16:43:55','2020-06-15 16:43:55'),(9748,'englishlit','41.80.97.78',40,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-06-16 02:45:58','2020-06-16 02:46:01'),(9749,'history','54.172.25.21',1840,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:41','2020-06-16 07:01:25'),(9750,'english','54.172.25.21',2080,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:44','2020-06-16 07:11:56'),(9751,'economics','3.82.194.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 04:52:57','2020-06-16 04:52:57'),(9752,'currentaffairs','52.54.215.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-16 05:58:53','2020-06-16 05:58:53'),(9753,'civiledu','34.205.23.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 07:14:44','2020-06-16 07:14:44'),(9754,'english','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 09:59:20','2020-06-16 09:59:20'),(9755,'history','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:29','2020-06-16 10:27:07'),(9756,'english','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:32','2020-06-16 10:27:10'),(9757,'accounting','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:15:35','2020-06-16 10:15:35'),(9758,'biology','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:36:24','2020-06-16 10:36:24'),(9759,'physics','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:16:12','2020-06-16 13:22:05'),(9760,'english','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:17:24','2020-06-16 13:22:09'),(9761,'history','34.224.165.104',480,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:48','2020-06-16 15:44:51'),(9762,'english','34.224.165.104',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:51','2020-06-16 15:44:55'),(9763,'history','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:39','2020-06-16 18:19:42'),(9764,'english','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:44','2020-06-16 18:19:45'),(9765,'english','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:30'),(9766,'accounting','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:31'),(9767,'biology','18.205.237.24',2,'','US','','Virginia',NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9768,'physics','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9769,'government','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9770,'currentaffairs','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9771,'history','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9772,'geography','54.92.200.132',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 22:39:24','2020-06-16 22:39:24'),(9773,'physics','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 01:48:53','2020-06-17 01:48:53'),(9774,'government','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 02:03:54','2020-06-17 02:03:54'),(9775,'englishlit','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:26:11','2020-06-17 03:26:11'),(9776,'insurance','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:55:22','2020-06-17 03:55:22'),(9777,'biology','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:51','2020-06-17 05:30:54'),(9778,'english','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:54','2020-06-17 05:30:56'),(9779,'english','3.90.249.44',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 09:46:18','2020-06-17 09:46:55'),(9780,'chemistry','105.112.87.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-17 09:58:18','2020-06-17 09:58:20'),(9781,'chemistry','66.249.88.14',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-06-17 09:59:01','2020-06-17 09:59:04'),(9782,'mathematics','3.88.138.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 10:39:06','2020-06-17 10:39:06'),(9783,'geography','34.229.135.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:18:07','2020-06-17 11:18:07'),(9784,'economics','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:30','2020-06-17 11:34:32'),(9785,'english','35.174.4.0',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:32','2020-06-17 12:40:24'),(9786,'commerce','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:38:34','2020-06-17 12:38:36'),(9787,'history','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:40:18','2020-06-17 12:40:21'),(9788,'economics','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:13:12','2020-06-17 14:13:12'),(9789,'geography','18.205.18.35',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:36:52','2020-06-17 14:55:05'),(9790,'english','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 15:17:53','2020-06-17 15:17:53'),(9791,'english','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:50','2020-06-17 20:31:50'),(9792,'mathematics','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9793,'biology','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9794,'physics','54.161.200.177',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 21:32:59'),(9795,'chemistry','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9796,'irk','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9797,'civiledu','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9798,'geography','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:59:12','2020-06-17 20:59:12'),(9799,'englishlit','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 22:04:38','2020-06-17 22:04:38'),(9800,'biology','3.80.178.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 23:41:46','2020-06-17 23:41:46'),(9801,'currentaffairs','18.234.191.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 00:56:37','2020-06-18 00:56:37'),(9802,'physics','34.228.64.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 03:47:00','2020-06-18 03:47:00'),(9803,'mathematics','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:16:20','2020-06-18 06:16:20'),(9804,'geography','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:41:02','2020-06-18 06:41:02'),(9805,'mathematics','34.230.69.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 07:24:35','2020-06-18 07:24:35'),(9806,'government','23.20.220.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:17:08','2020-06-18 08:17:08'),(9807,'commerce','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:15','2020-06-18 08:57:15'),(9808,'accounting','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9809,'englishlit','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9810,'geography','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9811,'economics','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9812,'insurance','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9813,'history','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9814,'history','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 09:42:52','2020-06-18 09:42:52'),(9815,'mathematics','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:15:46','2020-06-18 10:15:46'),(9816,'accounting','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:16:19','2020-06-18 10:16:19'),(9817,'accounting','54.210.194.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 22:40:17','2020-06-18 22:40:17'),(9818,'biology','3.80.246.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 23:21:08','2020-06-18 23:21:08'),(9819,'history','54.83.113.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 02:45:33','2020-06-19 02:45:33'),(9820,'accounting','52.90.48.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 06:38:29','2020-06-19 06:38:29'),(9821,'irk','52.201.246.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 08:58:17','2020-06-19 08:58:17'),(9822,'economics','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:17:42','2020-06-19 21:17:42'),(9823,'insurance','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:35:24','2020-06-19 21:35:24'),(9824,'economics','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:10:39','2020-06-19 23:10:39'),(9825,'history','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:30:20','2020-06-19 23:30:20'),(9826,'economics','54.196.106.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 02:31:48','2020-06-20 02:31:48'),(9827,'englishlit','18.233.155.89',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 04:55:13','2020-06-20 04:55:13'),(9828,'history','52.91.173.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 06:51:56','2020-06-20 06:51:56'),(9829,'irk','52.203.62.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 09:34:33','2020-06-20 09:34:33'),(9830,'english','54.87.80.5',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:00:50','2020-06-20 12:00:50'),(9831,'commerce','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:48:20','2020-06-20 13:11:36'),(9832,'mathematics','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:36'),(9833,'biology','54.165.162.104',37,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:12:18'),(9834,'englishlit','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:28'),(9835,'crk','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:33:04'),(9836,'economics','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:17'),(9837,'irk','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:58'),(9838,'civiledu','54.165.162.104',23,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:25'),(9839,'english','54.165.162.104',22,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:11:35'),(9840,'accounting','54.165.162.104',25,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9841,'government','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9842,'insurance','54.165.162.104',14,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:10:29'),(9843,'currentaffairs','54.165.162.104',26,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:12:18'),(9844,'geography','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:42','2020-06-20 13:11:16'),(9845,'physics','54.165.162.104',32,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:46','2020-06-20 13:12:18'),(9846,'history','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:57','2020-06-20 13:12:19'),(9847,'chemistry','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:07:22','2020-06-20 13:10:58'),(9848,'economics','54.145.114.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 16:22:38','2020-06-20 16:22:38'),(9849,'government','18.207.167.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 17:33:28','2020-06-20 17:33:28'),(9850,'chemistry','34.229.200.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 18:50:32','2020-06-20 18:50:32'),(9851,'geography','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 20:55:26','2020-06-20 20:55:26'),(9852,'commerce','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:27:07','2020-06-20 21:27:07'),(9853,'biology','54.234.45.227',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:34:23','2020-06-20 22:01:46'),(9854,'english','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:03:31','2020-06-21 00:03:31'),(9855,'insurance','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:07:20','2020-06-21 00:07:20'),(9856,'crk','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:30:51','2020-06-21 00:30:51'),(9857,'english','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:08:21','2020-06-21 03:08:21'),(9858,'englishlit','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:28:58','2020-06-21 03:28:58'),(9859,'civiledu','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:13:32','2020-06-21 04:13:32'),(9860,'crk','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:36:06','2020-06-21 04:36:06'),(9861,'government','54.227.23.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 10:01:04','2020-06-21 10:01:04'),(9862,'history','18.206.211.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 12:36:25','2020-06-21 12:36:25'),(9863,'physics','3.80.240.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 15:52:13','2020-06-21 15:52:13'),(9864,'englishlit','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:00:57','2020-06-21 17:00:57'),(9865,'english','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:13:38','2020-06-21 17:13:38'),(9866,'currentaffairs','34.238.151.127',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 18:19:01','2020-06-21 18:19:01'),(9867,'crk','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:44:26','2020-06-21 21:44:26'),(9868,'englishlit','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:54:44','2020-06-21 21:54:44'),(9869,'economics','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:08:26','2020-06-21 22:08:26'),(9870,'chemistry','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:33:17','2020-06-21 22:33:17'),(9871,'insurance','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:20:32','2020-06-21 23:20:32'),(9872,'government','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:37:50','2020-06-21 23:37:50'),(9873,'crk','3.84.250.255',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 00:51:48','2020-06-22 00:51:48'),(9874,'geography','54.221.187.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 01:53:56','2020-06-22 01:53:56'),(9875,'english','18.209.110.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 03:40:04','2020-06-22 03:40:04'),(9876,'economics','34.230.36.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 13:54:50','2020-06-22 13:54:50'),(9877,'currentaffairs','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 15:38:47','2020-06-22 15:38:47'),(9878,'civiledu','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 16:11:57','2020-06-22 16:11:57'),(9879,'biology','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:24:35','2020-06-22 18:24:35'),(9880,'english','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:41:12','2020-06-22 18:41:12'),(9881,'accounting','54.90.154.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 20:56:27','2020-06-22 20:56:27'),(9882,'mathematics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9883,'accounting','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9884,'biology','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9885,'economics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9886,'insurance','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9887,'currentaffairs','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9888,'history','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9889,'geography','54.196.101.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 05:30:08','2020-06-23 05:30:08'),(9890,'physics','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:13:29','2020-06-23 09:13:29'),(9891,'government','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:42:29','2020-06-23 09:42:29'),(9892,'englishlit','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 10:04:23','2020-06-23 10:04:23'),(9893,'insurance','35.153.133.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 11:44:24','2020-06-23 11:44:24'),(9894,'crk','34.205.18.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:01:55','2020-06-23 13:07:27'),(9895,'government','34.205.18.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:39:31','2020-06-23 13:39:31'),(9896,'chemistry','41.190.30.186',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-23 14:36:31','2020-06-23 14:36:38'),(9897,'accounting','54.227.55.70',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 18:14:12','2020-06-23 18:14:12'),(9898,'mathematics','18.209.61.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 19:02:39','2020-06-23 19:02:39'),(9899,'geography','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:24:58','2020-06-23 20:24:58'),(9900,'economics','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:45:09','2020-06-23 20:45:09'),(9901,'geography','3.89.130.67',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 21:21:11','2020-06-23 21:21:11'),(9902,'geography','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:28:57','2020-06-23 22:28:57'),(9903,'english','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:39:49','2020-06-23 22:39:49'),(9904,'physics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 02:49:35','2020-06-24 02:49:35'),(9905,'mathematics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 03:07:03','2020-06-24 03:07:03'),(9906,'englishlit','54.158.85.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 04:02:10','2020-06-24 04:02:10'),(9907,'currentaffairs','18.204.209.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 05:53:24','2020-06-24 05:53:24'),(9908,'geography','54.158.151.153',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:14:42','2020-06-24 07:14:42'),(9909,'biology','54.81.22.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:52:37','2020-06-24 07:52:37'),(9910,'physics','34.207.160.124',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 12:25:46','2020-06-24 12:25:46'),(9911,'geography','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:49:47','2020-06-24 14:49:47'),(9912,'mathematics','107.21.199.228',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:55:40','2020-06-24 15:41:17'),(9913,'government','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 15:12:17','2020-06-24 15:12:17'),(9914,'mathematics','54.162.201.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 16:28:06','2020-06-24 16:28:06'),(9915,'accounting','18.206.251.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 04:06:31','2020-06-25 04:06:31'),(9916,'biology','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 05:08:21','2020-06-25 05:08:21'),(9917,'history','3.84.8.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 08:20:25','2020-06-25 08:20:25'),(9918,'history','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:40:28','2020-06-25 09:40:28'),(9919,'english','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:50:38','2020-06-25 09:50:38'),(9920,'accounting','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 12:06:48','2020-06-25 12:06:48'),(9921,'irk','54.234.51.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 14:44:49','2020-06-25 14:44:49'),(9922,'economics','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 02:40:10','2020-06-26 02:40:10'),(9923,'insurance','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 03:05:31','2020-06-26 03:05:31'),(9924,'history','52.90.69.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 05:53:52','2020-06-26 05:53:52'),(9925,'history','34.207.74.169',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 06:38:00','2020-06-26 06:38:00'),(9926,'englishlit','54.91.84.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 08:40:21','2020-06-26 08:40:21'),(9927,'irk','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:42:58','2020-06-26 09:42:58'),(9928,'economics','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:46:26','2020-06-26 09:46:26'),(9929,'commerce','54.175.1.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 12:27:10','2020-06-26 12:27:10'),(9930,'english','3.94.119.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 15:45:31','2020-06-26 15:45:31'),(9931,'crk','18.207.229.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 17:10:47','2020-06-26 17:10:47'),(9932,'accounting','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9933,'biology','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9934,'crk','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9935,'physics','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9936,'economics','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9937,'chemistry','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9938,'irk','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9939,'insurance','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9940,'currentaffairs','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9941,'history','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9942,'history','54.236.208.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9943,'economics','34.205.32.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 20:26:36','2020-06-26 20:26:36'),(9944,'chemistry','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:19:29','2020-06-26 22:19:29'),(9945,'government','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:28:09','2020-06-26 22:28:09'),(9946,'geography','3.87.90.156',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 00:28:07','2020-06-27 00:28:07'),(9947,'crk','35.175.174.168',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 13:22:54','2020-06-27 13:22:54'),(9948,'government','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 18:54:24','2020-06-27 18:54:24'),(9949,'history','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 19:36:24','2020-06-27 19:36:24'),(9950,'mathematics','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:03:20','2020-06-27 20:03:20'),(9951,'physics','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:47:39','2020-06-27 20:47:39'),(9952,'biology','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:49:44','2020-06-27 20:49:44'),(9953,'currentaffairs','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:41:30','2020-06-27 22:47:05'),(9954,'english','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 23:00:09'),(9955,'biology','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 22:47:05'),(9956,'government','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9957,'geography','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9958,'insurance','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9959,'history','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9960,'mathematics','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:08:42','2020-06-27 23:08:42'),(9961,'englishlit','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:16:39','2020-06-27 23:16:39'),(9962,'english','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:05:48','2020-06-28 00:26:33'),(9963,'crk','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:22:50','2020-06-28 00:32:46'),(9964,'insurance','3.90.110.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:16:59','2020-06-28 02:16:59'),(9965,'englishlit','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:55:43','2020-06-28 02:55:43'),(9966,'crk','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:06:30','2020-06-28 03:06:30'),(9967,'chemistry','34.227.105.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:45:11','2020-06-28 03:45:11'),(9968,'economics','54.152.205.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 05:31:01','2020-06-28 05:31:01'),(9969,'geography','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:34:01','2020-06-28 06:34:01'),(9970,'economics','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:52:00','2020-06-28 06:52:00'),(9971,'economics','54.236.22.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 12:40:35','2020-06-28 12:40:35'),(9972,'currentaffairs','100.26.43.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 13:51:22','2020-06-28 13:51:22'),(9973,'mathematics','34.201.45.145',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:38:42','2020-06-28 16:38:42'),(9974,'commerce','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9975,'accounting','34.201.45.145',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:53:13'),(9976,'biology','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9977,'chemistry','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9978,'geography','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9979,'irk','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9980,'insurance','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:23','2020-06-28 16:39:23'),(9981,'english','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9982,'biology','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9983,'physics','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9984,'chemistry','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9985,'englishlit','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9986,'civiledu','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:28'),(9987,'currentaffairs','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:28','2020-06-28 23:19:28'),(9988,'geography','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:24:53','2020-06-29 01:24:53'),(9989,'history','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:51:44','2020-06-29 01:51:44'),(9990,'englishlit','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:10:38','2020-06-29 02:10:38'),(9991,'english','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:15:48','2020-06-29 02:15:48'),(9992,'physics','18.232.165.163',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 05:11:32','2020-06-29 05:11:32'),(9993,'chemistry','35.172.134.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 06:37:11','2020-06-29 06:37:11'),(9994,'chemistry','54.85.126.38',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:18:44','2020-06-29 10:18:44'),(9995,'biology','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:59:34','2020-06-29 10:59:34'),(9996,'accounting','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:24:56','2020-06-29 11:24:56'),(9997,'geography','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:33:40','2020-06-29 11:33:40'),(9998,'mathematics','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:38:46','2020-06-29 11:38:46'),(9999,'mathematics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 13:50:54','2020-06-29 13:50:54'),(10000,'geography','3.84.39.14',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:15:45','2020-06-29 14:49:49'),(10001,'economics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:32:34','2020-06-29 14:32:34'),(10002,'english','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 15:13:58','2020-06-29 15:13:58'),(10003,'mathematics','54.172.215.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 16:01:15','2020-06-29 16:01:15'),(10004,'physics','54.167.221.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 20:53:21','2020-06-29 20:53:21'),(10005,'currentaffairs','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 21:44:22','2020-06-29 21:44:22'),(10006,'englishlit','3.87.114.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 23:55:57','2020-06-29 23:55:57'),(10007,'biology','54.165.2.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 00:45:46','2020-06-30 00:45:46'),(10008,'chemistry','54.166.139.196',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 02:22:51','2020-06-30 02:22:51'),(10009,'physics','3.92.221.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 03:02:17','2020-06-30 03:02:17'),(10010,'mathematics','184.72.82.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 04:50:03','2020-06-30 04:50:03'),(10011,'government','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 06:53:24','2020-06-30 06:53:24'),(10012,'mathematics','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:00:07','2020-06-30 07:00:07'),(10013,'geography','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:09:39','2020-06-30 07:09:39'),(10014,'mathematics','52.202.65.159',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 08:52:07','2020-06-30 08:52:07'),(10015,'history','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:08:39','2020-06-30 09:37:56'),(10016,'accounting','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 10:04:26'),(10017,'physics','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 09:37:55'),(10018,'chemistry','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10019,'englishlit','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10020,'irk','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10021,'civiledu','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10022,'english','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:00','2020-06-30 15:33:00'),(10023,'commerce','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10024,'accounting','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10025,'chemistry','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10026,'government','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10027,'geography','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10028,'civiledu','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10029,'accounting','52.55.83.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 17:10:09','2020-06-30 17:10:09'),(10030,'biology','54.89.237.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:04:39','2020-06-30 19:04:39'),(10031,'commerce','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10032,'accounting','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10033,'chemistry','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10034,'irk','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10035,'civiledu','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10036,'insurance','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10037,'currentaffairs','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10038,'biology','54.234.3.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 20:15:32','2020-06-30 20:15:32'),(10039,'history','34.227.88.114',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 21:38:23','2020-06-30 21:38:23'),(10040,'history','54.86.39.12',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 22:33:09','2020-06-30 22:33:09'),(10041,'accounting','54.172.57.23',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 01:19:58','2020-07-01 01:19:58'),(10042,'irk','3.86.160.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 04:51:36','2020-07-01 04:51:36'),(10043,'chemistry','54.91.179.155',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 08:07:07','2020-07-01 08:07:07'),(10044,'physics','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 10:50:24','2020-07-01 10:50:24'),(10045,'economics','23.20.242.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 11:31:17','2020-07-01 11:31:17'),(10046,'insurance','54.87.197.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 12:53:01','2020-07-01 12:53:01'),(10047,'economics','3.91.214.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 14:03:22','2020-07-01 14:03:22'),(10048,'history','54.84.225.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 15:25:35','2020-07-01 15:25:35'),(10049,'history','3.94.169.218',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 16:02:27','2020-07-01 16:02:27'),(10050,'economics','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 17:46:59','2020-07-01 17:46:59'),(10051,'irk','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:20:57','2020-07-01 18:20:57'),(10052,'englishlit','54.84.229.165',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:58:33','2020-07-01 18:58:33'),(10053,'commerce','34.228.230.135',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 00:24:39','2020-07-02 00:24:39'),(10054,'english','52.91.78.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 01:41:45','2020-07-02 01:41:45'),(10055,'crk','184.72.205.154',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 02:39:16','2020-07-02 02:39:16'),(10056,'economics','52.91.54.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 04:40:45','2020-07-02 04:40:45'),(10057,'chemistry','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:11:03','2020-07-02 06:11:03'),(10058,'government','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:42:32','2020-07-02 06:42:32'),(10059,'government','34.239.131.100',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:04:51','2020-07-02 08:04:51'),(10060,'economics','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:41:05','2020-07-02 08:41:05'),(10061,'commerce','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:56:42','2020-07-02 08:56:42'),(10062,'geography','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:38:08','2020-07-02 09:38:08'),(10063,'biology','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:54:27','2020-07-02 09:54:27'),(10064,'crk','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:13:25','2020-07-02 11:13:25'),(10065,'insurance','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:14:35','2020-07-02 11:14:35'),(10066,'english','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:36:17','2020-07-02 11:36:17'),(10067,'english','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:32:13','2020-07-02 14:32:13'),(10068,'englishlit','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:43:14','2020-07-02 14:43:14'),(10069,'crk','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:08:57','2020-07-02 15:08:57'),(10070,'civiledu','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:35:16','2020-07-02 15:35:16'),(10071,'physics','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:42:25','2020-07-02 15:42:25'),(10072,'economics','54.234.26.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 16:32:16','2020-07-02 16:32:16'),(10073,'crk','34.201.40.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 17:47:14','2020-07-02 17:47:14'),(10074,'history','54.164.23.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 21:46:06','2020-07-02 21:46:06'),(10075,'government','3.84.186.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 22:58:39','2020-07-02 22:58:39'),(10076,'physics','18.208.193.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:11:53','2020-07-03 00:11:53'),(10077,'biology','54.160.208.244',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:48:21','2020-07-03 00:48:21'),(10078,'englishlit','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:15:26','2020-07-03 02:15:26'),(10079,'english','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:23:09','2020-07-03 02:23:09'),(10080,'currentaffairs','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:26:38','2020-07-03 04:26:38'),(10081,'insurance','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:57:52','2020-07-03 04:57:52'),(10082,'englishlit','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:03:51','2020-07-03 05:03:51'),(10083,'economics','54.172.4.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:40:21','2020-07-03 05:40:21'),(10084,'crk','204.236.197.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:18:22','2020-07-03 06:18:22'),(10085,'chemistry','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:58:20','2020-07-03 06:58:20'),(10086,'economics','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 07:05:43','2020-07-03 07:05:43'),(10087,'government','34.235.117.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:09:45','2020-07-03 08:09:45'),(10088,'crk','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:52:38','2020-07-03 08:52:38'),(10089,'geography','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 09:01:32','2020-07-03 09:01:32'),(10090,'english','54.144.92.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 11:49:20','2020-07-03 11:49:20'),(10091,'currentaffairs','54.89.189.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 21:42:09','2020-07-03 21:42:09'),(10092,'civiledu','54.91.226.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 22:22:22','2020-07-03 22:22:22'),(10093,'english','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:22:03','2020-07-04 00:22:03'),(10094,'biology','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:38:50','2020-07-04 00:38:50'),(10095,'history','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:48:34','2020-07-04 01:48:34'),(10096,'accounting','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:56:25','2020-07-04 01:56:25'),(10097,'history','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:54','2020-07-04 06:18:57'),(10098,'english','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:57','2020-07-04 06:19:00'),(10099,'mathematics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10100,'accounting','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10101,'physics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10102,'englishlit','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10103,'crk','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10104,'geography','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10105,'civiledu','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10106,'history','54.162.152.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 09:43:19','2020-07-04 09:43:19'),(10107,'geography','3.93.171.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 10:35:06','2020-07-04 10:35:06'),(10108,'english','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:36:34','2020-07-04 11:36:34'),(10109,'englishlit','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:38:05','2020-07-04 11:38:05'),(10110,'crk','3.81.50.112',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 15:36:29','2020-07-04 15:36:29'),(10111,'physics','34.224.81.74',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 16:13:25','2020-07-04 16:13:25'),(10112,'mathematics','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:24:26','2020-07-04 19:24:26'),(10113,'biology','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:58:10','2020-07-04 19:58:10'),(10114,'geography','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:24:53','2020-07-04 20:24:53'),(10115,'accounting','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:51:26','2020-07-04 20:51:26'),(10116,'geography','54.152.35.97',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:04:02','2020-07-04 22:04:02'),(10117,'mathematics','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:51:02','2020-07-04 22:51:02'),(10118,'geography','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:11:06','2020-07-04 23:11:06'),(10119,'english','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:13:22','2020-07-04 23:13:22'),(10120,'mathematics','184.72.78.80',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 00:30:41','2020-07-05 00:30:41'),(10121,'physics','18.234.140.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 03:22:51','2020-07-05 03:22:51'),(10122,'englishlit','54.81.208.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 04:42:18','2020-07-05 04:42:18'),(10123,'currentaffairs','3.92.239.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 05:50:06','2020-07-05 05:50:06'),(10124,'biology','3.94.250.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 07:05:26','2020-07-05 07:05:26'),(10125,'mathematics','18.234.172.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 10:56:25','2020-07-05 10:56:25'),(10126,'history','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:16:14','2020-07-05 14:16:14'),(10127,'accounting','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:18:21','2020-07-05 14:18:21'),(10128,'government','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:30','2020-07-05 18:09:38'),(10129,'insurance','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:32','2020-07-05 18:09:42'),(10130,'mathematics','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:34','2020-07-05 18:09:46'),(10131,'chemistry','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:36','2020-07-05 18:09:40'),(10132,'englishlit','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:44','2020-07-05 18:09:48'),(10133,'accounting','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:50','2020-07-05 18:09:52'),(10134,'accounting','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:25:43','2020-07-05 23:25:43'),(10135,'mathematics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10136,'commerce','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10137,'physics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10138,'chemistry','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10139,'economics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10140,'civiledu','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10141,'currentaffairs','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:09','2020-07-05 23:26:09'),(10142,'biology','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:48:59','2020-07-05 23:48:59'),(10143,'biology','100.24.36.11',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 01:28:52','2020-07-06 01:28:52'),(10144,'history','18.206.244.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 03:18:07','2020-07-06 03:18:07'),(10145,'history','54.89.235.4',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 04:39:50','2020-07-06 04:39:50'),(10146,'accounting','3.86.51.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 05:43:10','2020-07-06 05:43:10'),(10147,'physics','3.82.188.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 10:53:25','2020-07-06 10:53:25'),(10148,'physics','54.157.235.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 15:25:50','2020-07-06 15:25:50'),(10149,'economics','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:18:01','2020-07-06 16:18:01'),(10150,'insurance','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:25:30','2020-07-06 16:25:30'),(10151,'commerce','3.81.6.59',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 17:19:24','2020-07-06 17:19:24'),(10152,'economics','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:18:54','2020-07-06 18:18:54'),(10153,'history','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:49:09','2020-07-06 18:49:09'),(10154,'history','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 20:27:09','2020-07-06 20:27:09'),(10155,'economics','3.93.171.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 22:14:21','2020-07-06 22:14:21'),(10156,'irk','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:20:52','2020-07-06 23:20:52'),(10157,'englishlit','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:45:32','2020-07-06 23:45:32'),(10158,'commerce','18.207.123.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 03:59:46','2020-07-07 03:59:46'),(10159,'english','3.88.230.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 05:07:19','2020-07-07 05:07:19'),(10160,'economics','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:15:10','2020-07-07 09:15:10'),(10161,'government','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:48:39','2020-07-07 09:48:39'),(10162,'chemistry','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 10:12:14','2020-07-07 10:12:14'),(10163,'government','54.221.150.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 11:33:19','2020-07-07 11:33:19'),(10164,'commerce','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:34','2020-07-07 12:23:34'),(10165,'economics','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:36','2020-07-07 12:23:36'),(10166,'biology','52.23.160.61',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:46:17','2020-07-07 13:24:15'),(10167,'geography','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:14:39','2020-07-07 13:14:39'),(10168,'currentaffairs','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:17:34','2020-07-07 13:17:34'),(10169,'insurance','54.152.5.128',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:14:12','2020-07-07 16:33:40'),(10170,'accounting','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:28:51','2020-07-07 14:36:55'),(10171,'commerce','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:31:07','2020-07-07 16:33:39'),(10172,'civiledu','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:34:07','2020-07-07 16:33:40'),(10173,'irk','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:47:28','2020-07-07 16:04:09'),(10174,'english','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:08:10','2020-07-07 15:08:10'),(10175,'crk','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:12:21','2020-07-07 15:12:21'),(10176,'currentaffairs','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:48:43','2020-07-07 16:00:50'),(10177,'chemistry','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:26:23','2020-07-07 16:45:13'),(10178,'englishlit','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:39','2020-07-07 16:33:39'),(10179,'economics','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10180,'history','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10181,'englishlit','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:11:13','2020-07-07 18:11:13'),(10182,'physics','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:38:18','2020-07-07 18:38:18'),(10183,'english','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:09:59','2020-07-07 19:09:59'),(10184,'civiledu','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:24:15','2020-07-07 19:24:15'),(10185,'crk','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:42:39','2020-07-07 19:42:39'),(10186,'crk','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 20:43:43','2020-07-07 20:43:43'),(10187,'economics','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 21:02:06','2020-07-07 21:02:06'),(10188,'crk','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:06:52','2020-07-07 23:06:52'),(10189,'mathematics','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:08:47','2020-07-07 23:08:47'),(10190,'history','54.235.227.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 00:51:52','2020-07-08 00:51:52'),(10191,'commerce','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:13'),(10192,'chemistry','54.224.19.167',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:17:55'),(10193,'englishlit','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:09'),(10194,'crk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:10'),(10195,'irk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:00'),(10196,'civiledu','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:06'),(10197,'currentaffairs','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:02'),(10198,'biology','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:26:00','2020-07-08 04:26:00'),(10199,'government','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:49:34','2020-07-08 04:49:34'),(10200,'physics','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 05:13:41','2020-07-08 05:13:41'),(10201,'englishlit','54.86.107.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:13:13','2020-07-08 06:13:13'),(10202,'currentaffairs','54.162.112.134',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:54:34','2020-07-08 06:54:34'),(10203,'englishlit','41.80.97.238',80,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-07-08 07:25:57','2020-07-08 07:28:00'),(10204,'crk','54.82.43.186',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 07:45:34','2020-07-08 07:45:34'),(10205,'englishlit','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:21:52','2020-07-08 09:21:52'),(10206,'insurance','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:44:49','2020-07-08 09:44:49'),(10207,'chemistry','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:54:11','2020-07-08 09:54:11'),(10208,'economics','52.91.173.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 10:49:13','2020-07-08 10:49:13'),(10209,'government','54.80.100.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 11:30:37','2020-07-08 11:30:37'),(10210,'crk','54.158.254.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:24:11','2020-07-08 12:24:11'),(10211,'english','18.207.151.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:58:44','2020-07-08 12:58:44'),(10212,'geography','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:02:59','2020-07-08 14:02:59'),(10213,'economics','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:07','2020-07-08 14:33:07'),(10214,'english','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:48','2020-07-08 14:33:48'),(10215,'commerce','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10216,'chemistry','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10217,'englishlit','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10218,'government','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10219,'economics','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10220,'insurance','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10221,'currentaffairs','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10222,'chemistry','212.7.216.22',41,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:34','2020-07-08 18:09:03'),(10223,'biology','212.7.216.22',42,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:53','2020-07-08 18:09:33'),(10224,'crk','212.7.216.22',40,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:11:50','2020-07-08 18:11:53'),(10225,'accounting','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 00:35:57','2020-07-09 00:35:57'),(10226,'currentaffairs','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:01:51','2020-07-09 01:01:51'),(10227,'civiledu','3.92.165.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:53:39','2020-07-09 01:53:39'),(10228,'biology','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:43:43','2020-07-09 03:43:43'),(10229,'english','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:48:40','2020-07-09 03:48:40'),(10230,'accounting','54.166.150.192',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 04:46:10','2020-07-09 04:46:10'),(10231,'insurance','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:51:46','2020-07-09 07:51:46'),(10232,'accounting','18.212.91.129',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:26','2020-07-09 07:52:33'),(10233,'englishlit','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:27','2020-07-09 07:52:27'),(10234,'english','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:28','2020-07-09 07:52:28'),(10235,'history','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:38','2020-07-09 07:52:38'),(10236,'geography','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:17:51','2020-07-09 15:17:51'),(10237,'history','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:21:14','2020-07-09 15:21:14'),(10238,'englishlit','3.85.20.113',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 16:51:17','2020-07-09 16:51:17'),(10239,'government','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:25:48','2020-07-09 17:25:48'),(10240,'english','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:47:06','2020-07-09 17:47:06'),(10241,'insurance','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 18:54:52','2020-07-09 18:54:52'),(10242,'physics','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 19:28:45','2020-07-09 19:28:45'),(10243,'crk','3.92.73.237',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 20:40:38','2020-07-09 20:40:38'),(10244,'biology','3.89.195.91',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:11:30','2020-07-10 00:11:30'),(10245,'mathematics','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:54:45','2020-07-10 00:54:45'),(10246,'geography','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 01:07:34','2020-07-10 01:07:34'),(10247,'accounting','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:08:59','2020-07-10 03:08:59'),(10248,'geography','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:12:39','2020-07-10 03:12:39'),(10249,'mathematics','34.229.218.101',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:56:28','2020-07-10 04:19:24'),(10250,'english','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:57:59','2020-07-10 03:57:59'),(10251,'geography','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 04:00:44','2020-07-10 04:00:44'),(10252,'physics','52.207.226.86',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 07:22:18','2020-07-10 07:22:18'),(10253,'englishlit','100.26.198.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 08:32:27','2020-07-10 08:32:27'),(10254,'currentaffairs','34.207.220.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 09:37:56','2020-07-10 09:37:56'),(10255,'biology','34.201.217.57',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 13:17:48','2020-07-10 13:17:48'),(10256,'mathematics','34.201.82.215',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:30:23','2020-07-10 17:26:20'),(10257,'government','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:49:19','2020-07-10 16:49:19'),(10258,'geography','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:57:20','2020-07-10 16:57:20'),(10259,'mathematics','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:29:32','2020-07-10 18:29:32'),(10260,'history','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:38:27','2020-07-10 18:38:27'),(10261,'accounting','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:51:34','2020-07-10 18:51:34'),(10262,'accounting','54.88.28.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 03:49:42','2020-07-11 03:49:42'),(10263,'biology','18.212.149.169',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 05:05:51','2020-07-11 05:05:51'),(10264,'history','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:21:44','2020-07-11 07:21:44'),(10265,'biology','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:43:14','2020-07-11 07:43:14'),(10266,'history','52.207.241.232',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 09:22:36','2020-07-11 09:22:36'),(10267,'english','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:03:15','2020-07-11 11:03:15'),(10268,'accounting','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:05:18','2020-07-11 11:05:18'),(10269,'chemistry','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 12:39:00','2020-07-11 12:39:02'),(10270,'mathematics','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:50:40','2020-07-11 13:50:43'),(10271,'english','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:52:41','2020-07-11 13:52:43'),(10272,'physics','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:54:53','2020-07-11 13:54:56'),(10273,'irk','3.87.253.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 13:57:22','2020-07-11 13:57:22'),(10274,'biology','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:58:09','2020-07-11 13:58:11'),(10275,'commerce','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:00:45','2020-07-11 14:00:47'),(10276,'accounting','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:02:26','2020-07-11 14:02:30'),(10277,'commerce','197.210.53.65',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:07:24','2020-07-11 14:07:27'),(10278,'biology','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:09:29','2020-07-11 14:09:31'),(10279,'englishlit','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:11:03','2020-07-11 14:11:06'),(10280,'government','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:12:42','2020-07-11 14:12:44'),(10281,'crk','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:14:42','2020-07-11 14:14:45'),(10282,'geography','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:16:22','2020-07-11 14:16:25'),(10283,'economics','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:18:03','2020-07-11 14:18:06'),(10284,'irk','197.210.53.29',30,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:19:52','2020-07-11 14:19:54'),(10285,'civiledu','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:21:54','2020-07-11 14:21:56'),(10286,'insurance','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:24:40','2020-07-11 14:24:42'),(10287,'currentaffairs','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:30:13','2020-07-11 14:30:16'),(10288,'history','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:31:59','2020-07-11 14:32:02'),(10289,'chemistry','129.205.113.79',4400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-11 14:33:08','2020-07-13 03:19:10'),(10290,'english','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:49'),(10291,'commerce','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:47:21'),(10292,'accounting','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:31'),(10293,'civiledu','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:49:01'),(10294,'insurance','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:09'),(10295,'currentaffairs','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:19'),(10296,'history','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:26'),(10297,'mathematics','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:15:58','2020-07-11 23:15:58'),(10298,'chemistry','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:21:17','2020-07-11 23:21:17'),(10299,'insurance','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:48:13','2020-07-11 23:48:13'),(10300,'english','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:09:33','2020-07-12 00:09:33'),(10301,'economics','3.82.54.117',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:10:41','2020-07-12 00:29:04'),(10302,'history','3.88.228.30',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 01:17:11','2020-07-12 01:17:11'),(10303,'history','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:50:23','2020-07-12 02:50:23'),(10304,'chemistry','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:58:58','2020-07-12 02:58:58'),(10305,'mathematics','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 03:10:59','2020-07-12 03:10:59'),(10306,'economics','3.87.92.43',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 04:42:49','2020-07-12 04:42:49'),(10307,'englishlit','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 05:52:03','2020-07-12 05:52:03'),(10308,'irk','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 06:21:53','2020-07-12 06:21:53'),(10309,'commerce','54.163.60.37',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 10:46:43','2020-07-12 10:46:43'),(10310,'english','3.94.101.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 12:43:58','2020-07-12 12:43:58'),(10311,'mathematics','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 14:59:40','2020-07-12 14:59:40'),(10312,'english','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:00:14','2020-07-12 15:00:14'),(10313,'chemistry','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:07:58','2020-07-12 15:07:58'),(10314,'economics','34.227.46.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 16:40:51','2020-07-12 16:40:51'),(10315,'chemistry','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:39:39','2020-07-12 17:39:39'),(10316,'english','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:54:55','2020-07-12 17:54:55'),(10317,'mathematics','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 18:17:06','2020-07-12 18:17:06'),(10318,'government','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:17:30','2020-07-12 19:17:30'),(10319,'geography','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:43:56','2020-07-12 19:43:56'),(10320,'biology','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:30:00','2020-07-12 20:30:00'),(10321,'commerce','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:32:43','2020-07-12 20:32:43'),(10322,'economics','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:03','2020-07-12 22:04:03'),(10323,'insurance','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:33','2020-07-12 22:04:33'),(10324,'crk','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:43:42','2020-07-12 22:43:42'),(10325,'english','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:02:31','2020-07-12 23:02:31'),(10326,'mathematics','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:14:52','2020-07-12 23:14:52'),(10327,'english','129.205.113.79',5320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-13 00:22:00','2020-07-13 03:18:50'),(10328,'mathematics','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:25','2020-07-13 03:18:54'),(10329,'commerce','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:30','2020-07-13 03:18:57'),(10330,'accounting','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:34','2020-07-13 03:19:00'),(10331,'biology','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:37','2020-07-13 03:19:03'),(10332,'physics','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:40','2020-07-13 03:19:07'),(10333,'englishlit','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:47','2020-07-13 03:19:13'),(10334,'government','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:09','2020-07-13 03:19:16'),(10335,'crk','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:12','2020-07-13 03:19:20'),(10336,'geography','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:16','2020-07-13 03:19:23'),(10337,'economics','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:19','2020-07-13 03:19:26'),(10338,'irk','129.205.113.79',3180,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:22','2020-07-13 03:19:29'),(10339,'civiledu','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:24','2020-07-13 03:18:24'),(10340,'insurance','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:28','2020-07-13 03:18:27'),(10341,'currentaffairs','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:24','2020-07-13 03:18:30'),(10342,'history','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:28','2020-07-13 03:18:40'),(10343,'civiledu','54.234.157.166',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:28:47','2020-07-13 02:28:47'),(10344,'physics','54.234.157.166',3,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:48:14','2020-07-13 02:57:04'),(10345,'biology','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10346,'chemistry','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10347,'englishlit','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10348,'government','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10349,'currentaffairs','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10350,'history','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10351,'englishlit','54.208.167.162',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 03:42:04','2020-07-13 03:42:04'),(10352,'economics','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:26:48','2020-07-13 04:26:48'),(10353,'crk','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:32:06','2020-07-13 04:32:06'),(10354,'mathematics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10355,'commerce','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10356,'biology','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10357,'government','3.83.177.66',3,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 07:20:14','2020-07-13 07:20:15'),(10358,'crk','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10359,'economics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10360,'insurance','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10361,'mathematics','52.70.110.88',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:58:11','2020-07-13 07:58:11'),(10362,'history','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 08:43:27','2020-07-13 08:43:27'),(10363,'crk','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 09:16:49','2020-07-13 09:16:49'),(10364,'government','35.173.241.103',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 12:01:52','2020-07-13 12:01:52'),(10365,'biology','35.173.241.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 12:19:03','2020-07-13 12:19:03'),(10366,'physics','3.80.67.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 13:51:28','2020-07-13 13:51:28'),(10367,'english','3.80.67.43',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 14:26:17','2020-07-13 14:33:36'),(10368,'currentaffairs','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:37:38','2020-07-13 15:37:38'),(10369,'englishlit','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:58:51','2020-07-13 15:58:51'),(10370,'crk','3.88.24.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 17:12:19','2020-07-13 17:12:19'),(10371,'insurance','3.88.24.28',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 17:29:37','2020-07-13 17:29:37'),(10372,'chemistry','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:17:46','2020-07-13 18:17:46'),(10373,'englishlit','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:33:29','2020-07-13 18:33:29'),(10374,'government','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:07:04','2020-07-13 20:07:04'),(10375,'crk','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:37:11','2020-07-13 20:37:11'),(10376,'economics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:39:05','2020-07-13 20:39:05'),(10377,'geography','18.207.196.180',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 21:02:47','2020-07-13 21:02:47'),(10378,'mathematics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 21:10:43','2020-07-13 21:10:43'),(10379,'english','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10380,'commerce','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10381,'accounting','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10382,'physics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10383,'economics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10384,'civiledu','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10385,'insurance','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10386,'english','3.90.9.102',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 22:41:54','2020-07-13 22:56:29'),(10387,'english','129.205.124.79',3480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:25:59','2020-07-14 02:30:06'),(10388,'mathematics','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:02','2020-07-14 02:30:10'),(10389,'commerce','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:06','2020-07-14 02:30:15'),(10390,'accounting','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:09','2020-07-14 02:30:18'),(10391,'biology','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:12','2020-07-14 02:30:22'),(10392,'physics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:16','2020-07-14 02:30:26'),(10393,'chemistry','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:19','2020-07-14 02:30:30'),(10394,'englishlit','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:22','2020-07-14 02:30:34'),(10395,'government','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:26','2020-07-14 02:30:39'),(10396,'crk','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:29','2020-07-14 02:30:43'),(10397,'geography','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:33','2020-07-14 02:30:47'),(10398,'economics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:36','2020-07-14 02:30:51'),(10399,'irk','129.205.124.79',2490,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:41','2020-07-14 02:29:45'),(10400,'civiledu','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:44','2020-07-14 02:29:50'),(10401,'insurance','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:47','2020-07-14 02:29:54'),(10402,'currentaffairs','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:50','2020-07-14 02:29:58'),(10403,'history','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:54','2020-07-14 02:30:02'),(10404,'mathematics','3.86.112.201',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 06:09:14','2020-07-14 06:09:14'),(10405,'economics','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 07:28:22','2020-07-14 07:28:22'),(10406,'english','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 08:04:24','2020-07-14 08:04:24'),(10407,'chemistry','129.205.113.93',443,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-14 09:05:47','2020-07-14 13:21:22'),(10408,'physics','129.205.113.93',212,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 09:08:38','2020-07-14 15:34:58'),(10409,'english','129.205.113.93',939,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:08:42','2020-07-14 14:50:30'),(10410,'currentaffairs','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:07','2020-07-14 10:09:07'),(10411,'mathematics','129.205.113.93',121,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:52','2020-07-14 15:32:06'),(10412,'commerce','129.205.113.93',1891,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:15:00','2020-07-14 15:55:42'),(10413,'biology','129.205.113.93',534,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:20:01','2020-07-14 13:14:00'),(10414,'englishlit','129.205.113.93',508,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:22:39','2020-07-14 15:00:25'),(10415,'government','129.205.113.93',1091,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:23:37','2020-07-14 15:55:56'),(10416,'civiledu','129.205.113.93',577,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:38:09','2020-07-14 13:42:59'),(10417,'crk','129.205.113.93',1240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:40:26','2020-07-14 14:22:30'),(10418,'economics','129.205.113.93',899,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:41:55','2020-07-14 14:38:54'),(10419,'civiledu','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:43:55','2020-07-14 10:43:55'),(10420,'geography','129.205.113.93',316,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:51:07','2020-07-14 15:05:11'),(10421,'insurance','129.205.113.93',471,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:54:35','2020-07-14 15:30:53'),(10422,'irk','129.205.113.93',50,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:58:36','2020-07-14 15:36:02'),(10423,'currentaffairs','129.205.113.93',63,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:59:48','2020-07-14 15:37:11'),(10424,'accounting','129.205.113.93',682,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:30:09','2020-07-14 13:33:35'),(10425,'history','129.205.113.93',67,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:33:06','2020-07-14 15:23:11'),(10426,'accounting','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:37:00','2020-07-14 12:37:00'),(10427,'english','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:39:37','2020-07-14 12:39:37'),(10428,'history','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:06:47','2020-07-14 13:06:47'),(10429,'biology','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:31:56','2020-07-14 13:31:56'),(10430,'mathematics','18.234.46.151',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 15:02:11','2020-07-14 15:02:11'),(10431,'english','54.90.207.165',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 18:07:02','2020-07-14 18:07:02'),(10432,'commerce','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10433,'physics','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10434,'chemistry','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10435,'englishlit','34.229.179.114',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10436,'government','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10437,'insurance','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10438,'currentaffairs','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:53','2020-07-14 19:16:53'),(10439,'geography','18.208.128.143',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 22:14:45','2020-07-14 22:14:45'),(10440,'english','3.95.191.40',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 23:24:07','2020-07-14 23:24:07'),(10441,'history','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 23:41:01','2020-07-14 23:41:01'),(10442,'mathematics','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:06:33','2020-07-15 00:06:33'),(10443,'englishlit','3.87.215.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:46:37','2020-07-15 00:46:37'),(10444,'insurance','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 03:51:06','2020-07-15 03:51:06'),(10445,'english','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 04:09:32','2020-07-15 04:09:32'),(10446,'crk','3.81.221.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 05:08:09','2020-07-15 05:08:09'),(10447,'chemistry','3.88.132.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:07:35','2020-07-15 08:07:35'),(10448,'mathematics','54.147.235.60',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:53:27','2020-07-15 09:41:51'),(10449,'crk','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:02:40','2020-07-15 09:02:40'),(10450,'biology','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:28:35','2020-07-15 09:28:35'),(10451,'physics','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:31:51','2020-07-15 09:31:51'),(10452,'geography','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:32:08','2020-07-15 10:32:08'),(10453,'accounting','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:38:37','2020-07-15 10:38:37'),(10454,'geography','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 11:56:02','2020-07-15 12:59:45'),(10455,'mathematics','3.83.193.244',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:33:30'),(10456,'commerce','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10457,'accounting','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10458,'englishlit','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10459,'crk','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10460,'civiledu','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10461,'insurance','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10462,'english','3.81.39.121',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 14:04:24','2020-07-15 14:04:24'),(10463,'englishlit','54.224.172.84',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 16:54:49','2020-07-15 16:54:49'),(10464,'chemistry','102.89.3.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-07-15 17:48:20','2020-07-15 17:48:20'),(10465,'currentaffairs','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 17:48:58','2020-07-15 17:48:58'),(10466,'chemistry','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 18:12:17','2020-07-15 18:12:17'),(10467,'english','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 18:17:37','2020-07-15 18:17:37'),(10468,'biology','54.210.122.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 20:30:49','2020-07-15 20:30:49'),(10469,'physics','54.210.122.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 21:05:21','2020-07-15 21:05:21'),(10470,'mathematics','54.90.176.188',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 22:58:09','2020-07-15 22:58:09'),(10471,'crk','54.90.176.188',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 23:00:49','2020-07-15 23:00:49'),(10472,'mathematics','34.229.226.194',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 01:11:04','2020-07-16 01:11:04'),(10473,'geography','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 02:43:29','2020-07-16 02:43:29'),(10474,'government','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 02:54:36','2020-07-16 02:54:36'),(10475,'mathematics','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 03:13:19','2020-07-16 03:13:19'),(10476,'history','3.85.23.254',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 04:15:53','2020-07-16 04:15:53'),(10477,'mathematics','18.212.87.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 05:27:05','2020-07-16 05:27:05'),(10478,'accounting','18.212.87.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 05:57:55','2020-07-16 05:57:55'),(10479,'chemistry','81.7.11.155',41,'','DE','','Thuringia','Jena','07745','50.8933','11.5847','2020-07-16 06:13:09','2020-07-16 06:13:18'),(10480,'mathematics','18.234.132.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 07:36:28','2020-07-16 07:36:28'),(10481,'biology','18.205.237.244',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 13:41:47','2020-07-16 13:41:47'),(10482,'chemistry','54.167.108.112',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 16:28:05','2020-07-16 16:28:06'),(10483,'mathematics','34.202.166.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 17:24:28','2020-07-16 17:24:28'),(10484,'accounting','52.20.255.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 19:21:42','2020-07-16 19:21:42'),(10485,'economics','3.81.224.51',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 03:22:55','2020-07-17 03:50:42'),(10486,'insurance','3.81.224.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 04:01:21','2020-07-17 04:01:21'),(10487,'mathematics','3.95.1.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 05:12:24','2020-07-17 05:12:24'),(10488,'irk','54.204.68.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 08:14:36','2020-07-17 08:14:36'),(10489,'englishlit','54.204.68.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 08:19:55','2020-07-17 08:19:55'),(10490,'english','3.88.16.205',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 13:06:26','2020-07-17 13:06:26'),(10491,'commerce','18.206.210.183',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 14:19:11','2020-07-17 14:19:11'),(10492,'economics','54.89.243.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 15:31:32','2020-07-17 15:31:32'),(10493,'mathematics','100.24.42.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 16:28:27','2020-07-17 16:28:27'),(10494,'economics','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 17:50:15','2020-07-17 17:50:15'),(10495,'geography','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:15:04','2020-07-17 18:15:04'),(10496,'government','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:27:05','2020-07-17 18:27:05'),(10497,'commerce','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:28:15','2020-07-17 18:28:15'),(10498,'insurance','54.172.215.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 19:31:06','2020-07-17 19:31:06'),(10499,'english','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 20:42:09','2020-07-17 20:42:09'),(10500,'biology','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 20:45:14','2020-07-17 20:45:14'),(10501,'chemistry','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 21:17:31','2020-07-17 21:17:31'),(10502,'crk','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 22:55:45','2020-07-17 22:55:45'),(10503,'physics','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 23:12:51','2020-07-17 23:12:51'),(10504,'economics','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 23:13:05','2020-07-17 23:13:05'),(10505,'crk','54.152.47.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 00:11:06','2020-07-18 00:11:06'),(10506,'mathematics','54.227.114.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 02:04:13','2020-07-18 02:04:13'),(10507,'history','54.227.114.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 02:26:59','2020-07-18 02:26:59'),(10508,'chemistry','3.83.174.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 03:38:08','2020-07-18 03:38:08'),(10509,'government','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 04:39:59','2020-07-18 04:39:59'),(10510,'biology','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:05:29','2020-07-18 05:05:29'),(10511,'history','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:38:54','2020-07-18 05:38:54'),(10512,'englishlit','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:55:47','2020-07-18 05:55:47'),(10513,'english','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 06:01:27','2020-07-18 06:01:27'),(10514,'currentaffairs','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 06:31:11','2020-07-18 06:31:11'),(10515,'chemistry','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 08:36:38','2020-07-18 08:36:38'),(10516,'economics','54.164.73.164',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 09:03:24','2020-07-18 09:51:57'),(10517,'government','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 09:21:47','2020-07-18 09:21:47'),(10518,'crk','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 10:08:07','2020-07-18 10:08:07'),(10519,'geography','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 10:16:51','2020-07-18 10:16:51'),(10520,'english','3.94.122.190',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 11:27:02','2020-07-18 11:27:02'),(10521,'mathematics','3.94.122.190',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 11:56:11','2020-07-18 11:56:11'),(10522,'currentaffairs','54.234.122.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 18:21:25','2020-07-18 18:21:25'),(10523,'civiledu','18.215.146.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 19:07:46','2020-07-18 19:07:46'),(10524,'history','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:06:58','2020-07-18 20:06:58'),(10525,'economics','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:07:06','2020-07-18 20:07:06'),(10526,'accounting','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:09:41','2020-07-18 20:09:41'),(10527,'english','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:15:29','2020-07-18 20:15:29'),(10528,'biology','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:45:48','2020-07-18 20:45:48'),(10529,'mathematics','54.208.42.17',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 21:46:57','2020-07-18 21:46:57'),(10530,'mathematics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10531,'accounting','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10532,'physics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10533,'chemistry','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10534,'englishlit','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:36'),(10535,'economics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:36','2020-07-18 23:37:36'),(10536,'insurance','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:36','2020-07-18 23:37:36'),(10537,'geography','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:05:10','2020-07-19 02:05:10'),(10538,'english','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:24:02','2020-07-19 02:24:02'),(10539,'englishlit','3.84.156.226',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:52:35','2020-07-19 02:55:26'),(10540,'history','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 03:13:35','2020-07-19 03:13:35'),(10541,'physics','54.172.87.14',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 04:04:24','2020-07-19 04:04:24'),(10542,'english','3.87.78.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 04:39:20','2020-07-19 04:39:20'),(10543,'insurance','3.87.78.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 05:05:03','2020-07-19 05:05:03'),(10544,'accounting','52.87.187.114',7,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:22:59','2020-07-19 09:45:54'),(10545,'biology','52.87.187.114',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:28:42','2020-07-19 09:41:35'),(10546,'geography','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:57:42','2020-07-19 09:41:36'),(10547,'mathematics','52.87.187.114',7,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:05:50','2020-07-19 09:45:54'),(10548,'currentaffairs','52.87.187.114',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:06:40','2020-07-19 09:45:55'),(10549,'english','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:41:35'),(10550,'commerce','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:40:42'),(10551,'chemistry','52.87.187.114',9,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:45:55'),(10552,'englishlit','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:38:48'),(10553,'economics','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:49','2020-07-19 09:41:36'),(10554,'government','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:40:43'),(10555,'crk','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10556,'irk','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10557,'civiledu','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10558,'history','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:41:35','2020-07-19 09:41:35'),(10559,'physics','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:41:35','2020-07-19 09:41:35'),(10560,'mathematics','54.83.167.125',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 10:33:40','2020-07-19 10:34:30'),(10561,'english','100.24.46.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 11:28:49','2020-07-19 11:28:49'),(10562,'mathematics','3.89.137.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 12:48:58','2020-07-19 12:48:58'),(10563,'physics','3.89.137.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 13:12:25','2020-07-19 13:12:25'),(10564,'biology','35.153.203.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 15:30:03','2020-07-19 15:30:03'),(10565,'mathematics','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:13:34','2020-07-19 18:13:34'),(10566,'chemistry','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:38:42','2020-07-19 18:38:42'),(10567,'geography','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:43:42','2020-07-19 18:43:42'),(10568,'mathematics','54.90.132.175',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:37:55','2020-07-19 20:06:51'),(10569,'history','54.90.132.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:52:46','2020-07-19 19:52:46'),(10570,'government','54.90.132.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:53:17','2020-07-19 19:53:17'),(10571,'accounting','35.175.232.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 20:45:01','2020-07-19 20:45:01'),(10572,'currentaffairs','18.207.214.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 00:10:52','2020-07-20 00:10:52'),(10573,'mathematics','18.208.110.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 01:01:06','2020-07-20 01:01:06'),(10574,'accounting','18.208.110.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 01:07:29','2020-07-20 01:07:29'),(10575,'biology','34.229.38.131',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 03:32:40','2020-07-20 03:32:40'),(10576,'chemistry','34.229.38.131',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 03:34:20','2020-07-20 03:34:20'),(10577,'history','54.157.223.34',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 04:50:50','2020-07-20 05:03:04'),(10578,'irk','54.227.12.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 08:27:27','2020-07-20 08:27:27'),(10579,'englishlit','52.90.162.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 16:42:27','2020-07-20 16:42:27'),(10580,'irk','52.90.162.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 17:12:36','2020-07-20 17:12:36'),(10581,'accounting','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:24','2020-07-20 19:13:25'),(10582,'chemistry','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10583,'englishlit','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10584,'economics','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10585,'insurance','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10586,'currentaffairs','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10587,'history','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10588,'commerce','54.166.211.116',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:40:35','2020-07-20 19:40:35'),(10589,'insurance','3.88.7.36',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 20:42:06','2020-07-20 20:42:06'),(10590,'english','3.88.7.36',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 21:17:21','2020-07-20 21:17:21'),(10591,'government','3.93.216.121',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 22:44:09','2020-07-20 22:44:09'),(10592,'economics','54.173.94.139',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 23:22:10','2020-07-20 23:22:10'),(10593,'chemistry','184.72.65.217',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 00:44:38','2020-07-21 00:44:38'),(10594,'government','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 01:23:18','2020-07-21 01:23:18'),(10595,'commerce','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 01:45:25','2020-07-21 01:45:25'),(10596,'economics','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:09:47','2020-07-21 02:09:47'),(10597,'geography','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:13:54','2020-07-21 02:13:54'),(10598,'biology','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:39:04','2020-07-21 02:39:04'),(10599,'insurance','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:51:51','2020-07-21 02:51:51'),(10600,'english','35.173.186.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 03:37:34','2020-07-21 03:37:34'),(10601,'englishlit','54.164.4.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 05:49:14','2020-07-21 05:49:14'),(10602,'physics','54.164.4.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 06:13:20','2020-07-21 06:13:20'),(10603,'economics','54.81.181.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 06:51:42','2020-07-21 06:51:42'),(10604,'crk','54.81.181.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 07:25:25','2020-07-21 07:25:25'),(10605,'commerce','18.232.108.127',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 09:00:24','2020-07-21 09:00:24'),(10606,'history','18.206.221.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 09:55:32','2020-07-21 09:55:32'),(10607,'physics','18.206.221.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 10:29:06','2020-07-21 10:29:06'),(10608,'biology','3.85.231.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 11:23:48','2020-07-21 11:23:48'),(10609,'government','3.85.231.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 11:29:12','2020-07-21 11:29:12'),(10610,'physics','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 12:12:57','2020-07-21 12:12:57'),(10611,'englishlit','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 12:28:24','2020-07-21 12:28:24'),(10612,'currentaffairs','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 13:01:37','2020-07-21 13:01:37'),(10613,'english','52.70.85.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 13:22:43','2020-07-21 13:22:43'),(10614,'crk','54.208.43.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 14:15:12','2020-07-21 14:15:12'),(10615,'englishlit','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:26:49','2020-07-21 15:26:49'),(10616,'chemistry','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:31:23','2020-07-21 15:31:23'),(10617,'government','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:48:50','2020-07-21 15:48:50'),(10618,'insurance','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:49:29','2020-07-21 15:49:29'),(10619,'economics','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:58:01','2020-07-21 15:58:01'),(10620,'crk','52.90.180.213',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 16:47:13','2020-07-21 16:47:13'),(10621,'geography','54.166.134.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 17:57:24','2020-07-21 17:57:24'),(10622,'english','54.166.134.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 18:26:42','2020-07-21 18:26:42'),(10623,'currentaffairs','54.196.19.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 20:15:13','2020-07-21 20:15:13');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `biology` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=385 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `biology` VALUES (1,'In the egg of bird, the embryo is located in the','Chalaza','Yolk  ','albumen  ','embryo','','','d','','utme','2003',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:03'),(2,'One distinctive feature in the life history  of liverworts is that they exhibit','alternation of generation  ','vegetative reproduction  ','sexual reproduction','sexual reproduction','','','a','','utme','2003',184,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:04'),(3,'The umbrella-shaped fruiting body of a fully developed mushroom is the','pileus  ','Mycelium','basidium  ','Stipe','','','a','','utme','2003',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:05'),(4,'The similarly  among organisms belonging to the same group will be least within each','family  ','order  ','kingdom   ','species','','','c','','utme','2003',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:06'),(5,'Hermaphroditic reproduction can be found among the','arthropods and nematodes  ','Pisces and amphibians   ','annelids and molluscs','coelenterates and  platyghelminthes','','','d','','utme','2003',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:07'),(6,'An insect whose economic importance is both harmful and beneficial is the','tests fly  ','black','mosquito   ','butterfly','','','d','','utme','2003',183,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(7,'The cell component that is present in a prokaryotic cell is the','chloroplast   ','ribosome','mitochondrion   ','nuclear envelope','','','b','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:09'),(8,'The stunted group of a leguminous plant suffering from nitrogen deficiency may be corrected by inoculating the soil with','denitrifying bacteria  ','saprophytic bacteria','Rhizobium   ','nitrosomonas','','','c','','utme','2003',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:10'),(9,'If water that has been coloured red is poured at the base of a wilting plant, it will appear as a red stain in the cells of','Xylem  ',' epidermis  ','phloem  ','parench','','','a','','utme','2003',184,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(10,'The dark reaction of photosynthesis involves the  ','reduction of carbon (IV) oxides to organic compounds  ','release of oxygen and the splitting of water','photolysis of water and the production of starch  ','splitting of water into hydrogen ions.','','','a','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(11,'Organisms I, II, III and IV have surface volume ratios  of 1:2, 1:3, 1:4, 1:5, respectively. The organism that is likely to have the most complex transport system is','IV','III  ','I  ','II','','','a','','utme','2003',154,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(12,'The part of the mammalian digestive  system where absorption of nutrients takes place is the','ileum  ','colon  ','esophagus  ','duodenum','','','a','','utme','2003',168,'Admin','0000-00-00 00:00:00','2020-07-20 11:07:36'),(13,'The best method of propagating sugarcane by','seed sowing  ','layering','grafting  ','stem cuttings','','','d','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:14'),(14,'In mammalian males, the excretory and reproductive  systems share the','ureter     ','vas deferens  ','urethra  ','Testes.','','','c','','utme','2003',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:26'),(15,'Metabolic production of urea is carried out in the','Urinary bladder and kidney','liver   ','pancreas  ','kidney and malphigian tubule','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(16,'The structure can be found in the','sympathetic and parasympathetic nervous systems  ','peripheral and central nervous systems','peripheral nervous system only  ','central nervous system only','','','b','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:28'),(17,'The point marked I is referred to as  ','myelin sheath','dendrites  ','axon  ','node of Ranvier','','','d','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:29'),(18,'Homologous pairs of chromosomes separate during','cytolysis   ','cleavage','mitosis  ','Meiosis','','','d','','utme','2003',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:30'),(19,'An example of a caryopsis is','guava   ','maize grain','coconut','tomato','','','b','','utme','2003',180,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(20,'The response of plants to external stimuli in a non-directional manner is known as ','tactic movement','phototropism  ','geotropism','nastic  movement','','','d','','utme','2003',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:32'),(21,'The most important hormone that induces the ripening of fruit is','ethylene  ','indole acetic acid','gibberellin  ','cytokinin','','','a','','utme','2003',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:33'),(22,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','a','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:34'),(23,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','c','','utme','2003',196,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(24,'One example of fossil fuel is','limestone  ','coral  ','coal  ','firewood','','','b','','utme','2003',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:36'),(25,'The most effective method of dealing with non-gradable pollutants by  \\\\','dumping  ','recycling  ','incineration  ','Burying','','','d','','utme','2003',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:37'),(26,'The correct sequence of biomes from northern to southern Nigeria is','gulnea savanna _ sudan savanna_ tropical rain forest_ sahel savanna_eetuarine  ','estuarine_tripical rainforest_guinea savanna _ sahel_ savanna  ','sahel savanna_ tropical_rain forest_ estuarine _guinea savanna','sahel savanna_sudan savanna_guinea savanna _tropical rain forest_estuarine','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(27,'Mycorrhiza is an association  between fungi and','protozoans','roots of higher plants','bacteria','filamentous algae','','','d','','utme','2003',180,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(28,'A limiting factor in a plant population near a chemical factory is likely to be','light  ','humidity  ','wind  ','PH.','','','d','','utme','2003',200,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:40'),(29,'Soil fertility can best be conserved and renewed by the activities of','earthworms  ','man  ','rodents  ','microbes','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:40'),(30,'The pioneer organism in ecological  succession are usually the','mosses  ','lichens  ','ferns','Algae','','','d','','utme','2003',196,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:42'),(31,'If a DNA strand has a base sequence TCA, its complementary strand must be','ATG  ','TAG','GAT  ','AGT','','','d','','utme','2003',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:42'),(32,'A man and his wife are both heterozygous for the sickle cell trait. The likely percentage of their offspring that will be either carriers of sicklers is','75%','50%','25%','100%','','','d','','utme','2003',220,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(33,'If the pair of alleles for baidness is given as Bb, a female carrier will be denoted by','XbY   ','XBXB  ','XBY','XBXb','','','a','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:45'),(34,'An organ  that has been extensively used to test the chromosome theory of heredity is','Drosophila   melanogaster','Muscat domestic  ','Zea mays  ','homo sapiens','','','c','','utme','2003',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:46'),(35,'A feature association with the Y- chromosome in humans is  ','Drosophila melanogaster','prominent fingernails  ','facial hairs  ','enlarged breast','','','b','','utme','2003',170,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(36,'The type of reproduction that leads to variation in animal and plant population is','  budding',' sexual','vegatative','asexual','','','a','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:48'),(37,'An insect with a mandibulate  mouth part will obtain its food by','biting and chewing   ','chewing and sucking  ','chewing  ','Sucking','','','c','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(38,'An argument against Lamarck’s theory of evolution is that  ','disuse of  body part cannot weaken the part  ','disused part is dropped off in the offspring  ','acquired traits cannot be passed onto the offspring  ','traits cannot be acquired through constant use of body parts','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:50'),(39,'Spines and shells on animals are adaptations for','camouflage  ','chemical defence','physical defence  ','mimicry','','','c','','utme','2003',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:51'),(40,'An example of cryptic colouration is the','mottled colours on moths that rest o lichens  ','bright colour of an insect pollinated flower','green colour of a plant  ','bright marks on a poisonous tropical frog on variegated  leaves','','','d','','utme','2003',156,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(41,'Which of the following requires the use of carbon dating to prove that evolution has occurred?  ','comparative anatomy  ','biochemical similarities   ','molecular records','fossil records','','','d','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:53'),(42,'The inactive state exhibited by an animal during hot dry seasons is termed  ','aestivation','dormancy  ','resting','Hibernation','','','a','','utme','2003',164,'Admin','0000-00-00 00:00:00','2020-07-21 09:18:07'),(43,'The rods in the retina of the eye are examples of','cells   ','Tissues  ','organs  ','systems','','','a','','utme','2004',188,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(44,'The absence of special food and water-conducting systems  restricts the body size in','algae, liverworts and mosses  ','liverworts, mosses and ferns  ','the bryophytes and the pteriodophytes  ','the thallophytes and the pteriodphytes','','','a','','utme','2004',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:55'),(45,'A plant like feature I Euglena is the','Pellicle  ','pigment sport','large vacuole   ','gullet','','','b','','utme','2004',184,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:56'),(46,'The most common characteristic of the fungal hyphae is the possession of  ','cell like compartments with one nucleus each  ','cell walls that are true are both rigid and chitinous  ','a multicellular mycelium in strate  ','cell like partitions formed  by cross walls','','','b','','utme','2004',183,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:57'),(47,'Insects are considered the most successful among the invertebrates because they','possess exoskeletons',' survive in various environmental conditions  ','have wings for flight  ',' possess the ability to change their forms','','','a','','utme','2004',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:58'),(48,'The larval stage of a mosquito is called','wriggler  ','Grub  ','maggot  ','Caterpillar','','','a','','utme','2004',207,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:59'),(49,'The function of the long-winged reproductive in a  termite colony is to','disperse the population  ',' feed the young   ','participate in swarming','protect the young','','','c','','utme','2004',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:00'),(50,'A peculiar characteristic of mammals is that they  ','have teeth  ','are warm blooded  ','haelungs','have sebaceous glands','','','d','','utme','2004',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:01'),(51,'In the internal structure of plants, a wide pith in the centre is common to','dicot stems and moocot stems','dicot stems and monocot roots','dicot roots and monocot roots','dicotroots and monocot stems','','','b','','utme','2004',184,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(52,'The gall bladder of mammal has a duct connected to','liver  ',' duodenum  ','small intestine','pancreas','','','b','','utme','2004',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:03'),(53,'Al living cells require water because it','is a medium for all metabolic reactions  ','is a medium that neutralizes acids in cells','is the main source of energy for the cells','prevents the development of disease in cells.','','','a','','utme','2004',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:04'),(54,'The Breakdown of fats and oils into simpler absorbable compounds is catalyzed by the group of enzymes called','lipases   ','hydrolases  ','amylases','peptidases','','','a','','utme','2004',171,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(55,'The surface of an alveolus in a mammal is well supplied with tiny blood vessels known as','arterioles  ','Venules','arteries  ','capillaries','','','d','','utme','2004',159,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(56,'The anaerobic fermentation of a glucose molecule yields.','38ATP molecules  ','2ATP molecules and alcohol','Pyruvic acid and alcohol  ','water and carbon (IV) oxide','','','b','','utme','2004',169,'Admin','0000-00-00 00:00:00','2020-07-16 00:47:41'),(57,'The opening of the stoma is controlled by the  ','presence of a pore  ','increase in solute concentration  in the guard cells  ','presence of guard cells','decrease in solute concentration in the guard cells','','','b','','utme','2004',185,'Admin','0000-00-00 00:00:00','2020-07-20 14:28:25'),(58,'The type of reproduction that is common to both Hydra and yeast is','conjugation','binary fission','grafting  ','Budding','','','d','','utme','2004',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:09'),(59,'The eggs of birds contain relatively larger quantities of yolk than those of amphibians and reptiles because','birds are generally bigger in size','embroyonic development is longer in birds  ','those of birds are fertilized internally  ','birds lay shelled eggs','','','b','','utme','2004',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:10'),(60,'Epigeal germination of a seed is characterized by','more rapid  elongation of the hypocotyl than the epicotyl','more rapid elongation of the epicotyl than the hypocotyl  ','equal growth rate of both the hypocotyl and epicotyl  ','lack of growth of the hypocotyl','','','a','','utme','2004',176,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(61,'Nervous control differs from hormonal control in that the former  ','involves only chemical  transmission','is a slower process','produces short term changes  ','has no specific pathway','','','c','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:12'),(62,'If a nursing mother is not  producing enough milk, her hormonal system is probably deficient in','prollactine  ','estosterone','thyroxin','insulin','','','a','','utme','2004',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:13'),(63,'The two key cations involved in the action potential of nervous transmissions are ','Na+ and Fe2+',' Mg2+ and K+','Na+ and K+  ','Fe2+ and Mg 2+','','','c','','utme','2004',188,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:14'),(64,'A caterpillar and an aphid living in different parts of the same plant can be said to',' occupy the same ecological riches   ',' Be in different habitats  ','occupy different ecological riches  ','be in  similar micro habitats','','','c','','utme','2004',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:15'),(65,'Use the table below to answer questions 33 and 34\\nZone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nHigh relative humidity will be expected in zones \\n','I and II','I and IV  ','II and III  ','II and IV','','','c','','utme','2004',172,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(66,'Zone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nWhich of the zones is likely to be a desert\\n','I  ','II  ','III  ','IV','','','a','','utme','2004',173,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(67,'The association between termites and the cellulose digesting protozoans in heir guts is an example of  ','saprophytism  ','mutualism','parasitism  ','commensalism','','','b','','utme','2004',156,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:18'),(68,'The progressive loss of energy at each level in a food chain  leads to','an increase in biomass at each successive level  ','a decrease in biomass at each successive level  ','an increase in the number of organisms at each successive level','an increase in the total weight of living matter at each successive level.','','','b','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:19'),(69,'One adaptation of reptiles of water loss is the presence of','Keratinous scales  ','claws on Limbs  ','Long tails   ','long stickly tongues','','','a','','utme','2004',179,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(70,'A state in Nigeria that is most susceptible to desert encroachment is','Kwara  ','Taraba  ','Kaduna','Katsina','','','d','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:20'),(71,'The Scarcity of food causes a sudden decrease in population size by','decrease the reproductive rate','bringing about immigration','raising the mortality rate','minimizing the rate of competition','','','a','','utme','2004',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:21'),(72,'The soil type that will be most difficult to plough in a wet season is one that is  ','loamy   ','clayey  ','sandy  ','silty','','','b','','utme','2004',167,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:22'),(73,'A farm practice that results in he loss of soil fertility is','mixed farming','bush fallowing','shifting cultivation  ','continuous cropping','','','d','','utme','2004',181,'Admin','0000-00-00 00:00:00','2020-07-20 14:28:37'),(74,'Paternity disputes can most accurately be resolved though the use of','Gringer printing   ','blood group typing   ','DNA analysis   ','tongue rolling','','','c','','utme','2004',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:24'),(75,'In a mendelian cross of red and white varieties of the four o’clock pant, the F1 generation expresses incomplete dominance by having flowers which are','white  ','red  ','pink  ','multi-coloured','','','c','','utme','2004',192,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:25'),(76,'Identical twins inherit their genes from','Different eggs and sperms','The same egg and sperm  ','two egg and a sperm  ','one egg and two sperms','','','b','','utme','2004',179,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(77,'Sex –linked genes are located on','Y-chromostome  ','X and Y chromosomes  ','Homologens chromosomes  ','X-Chromosome','','','d','','utme','2004',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:27'),(78,'Which of the following is an example of intraspecific competition?','a lizard and an ant eater chasing an insect  ','a worker termite and a solider in a limited space  ','a hawk and an eagle targeting the same chicken','yam and potato shoots growing out through the same window','','','b','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:28'),(79,'Plants survive hot dry condition by  ','storing water in large parenchyma cells','producing numerous leaves  ','having numerous stomata  ','having every green leaves','','','a','','utme','2004',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:29'),(80,'Rodents gnaw on food with their','molar teeth  ','strong jaws   ','flat-ridged teeth  ','chisel like front teeth','','','d','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(81,'The sports and stripes of the leopard and tiger and example of','cryptic colouration  ','warning colouration  ','Disruptive colouration  ','counter shading','','','c','','utme','2004',162,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:31'),(82,'An evidence of the relationship between living organisms and their extinct relatives can best be obtained from','Embryology  ','Comparative anatomy  ','comparative physiology','all of the above','','','d','','utme','2004',202,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:32'),(83,'The organelle common to both plant and animal cells is the','centriole','plasmalemma  ','cell wall','chloroplast','','','c','','utme','2005',178,'Admin','0000-00-00 00:00:00','2020-07-16 01:34:52'),(84,'Which of the following is likely to have a higher concentration of mitochondria? ',' Sperm cell',' white blood cell  ',' Egg cell','red blood cell','','','a','','utme','2005',187,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(85,'The hyphal wall of fungi is rigid  owing to the presence of','cell wall','lignin  ','cellulose  ','chitia','','','d','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-07-16 01:10:35'),(86,'Angiosperms and gymnosperms belong to the class','schizophyta  ','spermatophyte  ','pteridophyta  ','bryophta','','','b','','utme','2005',168,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(87,'An example of a adially symmetrical organism is','planaria  ','Hydra   ','tapeworm  ','roundworm','','','b','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-07-21 11:23:48'),(88,'the leech and the earthworm belong to the','molluscs  ','crustaceans','arachnids  ','annelids','','','d','','utme','2005',179,'Admin','0000-00-00 00:00:00','2020-07-16 01:33:54'),(89,'I. Rettus rattus   II. Agama agama  II Bufo regularis  IV. Tilapia Zill. The order of evolutionary advancement  of the above','I, II and III , IV  ','I, IV, III, II  ','II, III, IV, I','IV, III, II, I','','','d','','utme','2005',196,'Admin','0000-00-00 00:00:00','2020-07-16 01:43:48'),(90,'The stage in the life history  of a moth responsible for the destruction of agricultural crops is the','nymph','imago','pupa   ','caterpillar','','','d','','utme','2005',194,'Admin','0000-00-00 00:00:00','2020-07-16 01:23:25'),(91,'The blackly is a vector of','material','trypanosomiasis','onchocerciasis','yellow fever','','','c','','utme','2005',213,'Admin','0000-00-00 00:00:00','2020-07-16 01:25:07'),(92,'The transition from amphibians to mammals involves the limbs becoming arranged to support the weight  more effectively requiring modifications in the','collar bones and coccyx','pectoral and pelvic girdles','scapulae and clavicles   ','vertebrae and sternum','','','b','','utme','2005',177,'Admin','0000-00-00 00:00:00','2020-07-21 10:28:28'),(93,'The main function of the caudal fin in tilapia  is to  ','propel it forward in water  ','seer it while changing directions  ','balance it in eater','enable it to float in water','','','a','','utme','2005',204,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(94,'In the root vascular system, the stele is directly surrounding by the','pericycle  ','cortex','endodermis  ','Parenchyma','','','c','','utme','2005',180,'Admin','0000-00-00 00:00:00','2020-07-16 01:33:54'),(95,'The only vein that caries pure oxygenated blood is the  ','renal vein  ','Pulmonary vein  ','hepatic vein','sciatic vein','','','b','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-07-15 17:44:19'),(96,'The function of the fluid filled pericardium is to','reduce the friction caused by the pumping movements of the heart   ','supply the heart with oxygen and nutrients  ','prevent disease organisms from attacking the heart  ','reduce the  intensity of the pumping action of the heart','','','a','','utme','2005',187,'Admin','0000-00-00 00:00:00','2020-07-21 08:33:02'),(97,'The mammalian lung is made air light by the','pleural cavity  ','mucous membrane','pleural membrane  ','diaphragm','','','a','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-07-20 14:35:15'),(98,'A test tube containing yeast in glucose solution was suspended in a converted conical flask containing alkaline pyrogallol. The  bubbles of carbon (IV) oxide produced indicate that the yeast cells are','respiring in the absence of oxygen  ','librating oxygen  on their own','living and consuming oxygen  ','being killed by the alcohol produced','','','a','','utme','2005',205,'Admin','0000-00-00 00:00:00','2020-07-16 01:43:48'),(99,'The urinary tubules of the kidney function through  ','osmosis and diffusion  ','active transport and osmosis  ','ultra filtration and selective re-absorption','active transport and cytoplasmic streaming  ','','','c','','utme','2005',194,'Admin','0000-00-00 00:00:00','2020-07-15 17:25:08'),(100,'Excess water  in plants is excreted as water vapour and droplets respectively through  ','respiration and guttation  ','transpiration and guttation','photosynthesis and guttation','guttation and condensation','','','b','','utme','2005',161,'Admin','0000-00-00 00:00:00','2020-07-15 16:04:26'),(101,'When bacteria swim from cold to warm regions, this is known as','negative chemotaxis  ','positive thermotaxis  ','positive phototaxis','negative phototaxis','','','b','','utme','2005',202,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(102,'Hydrostatic skeleton is the type of supporting system found in','Mammals  ','reptiles  ','oligochaetes   ','arthropods','','','c','','utme','2005',199,'Admin','0000-00-00 00:00:00','2020-07-16 00:16:45'),(103,'Which of the following is a homeostatic response in humans?','withdrawing the hand from a hot object','the mouth getting watery when food is lighted  ','yawning owing to tiredness  ','shivering in a cold environment','','','d','','utme','2005',190,'Admin','0000-00-00 00:00:00','2020-07-15 16:43:39'),(104,'The optimal temperature  for breeding cockroaches is','15oC','19oC  ','24oC  ','33oC','','','c','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-07-16 01:42:36'),(105,'At which temperature will cockroaches not survive after 10 days?   ','15oC','19oC  ','24oC  ','33oC','','','a','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(106,'The mambilla plateau is a unique Nigeria biome located in','Plateau State  ','Borno state  ','Taraba state  ','Benue state','','','a','','utme','2005',173,'Admin','0000-00-00 00:00:00','2020-07-19 12:29:50'),(107,'In Nigeria, the Guinea Savanna belt borders the','mangrove swamps and the Sahel  savanna  ','rainforests and the Sudan savanna  ','deserts and the Sudan savanna  ','rainforests and the desert.','','','b','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-07-15 01:18:54'),(108,'The population density of Tridax in an abandoned square farmland of side 200m was found to be 5 plants per m2. The population size of the plant on the farm is','40','4000','40000','200000','','','d','','utme','2005',188,'Admin','0000-00-00 00:00:00','2020-07-16 01:42:36'),(109,'Secondary succession is much faster then primary succession because','pioneer colonizers are more in number  ','soil is already present  ','Secondary series require less nutrients  ','species competition is increased','','','b','','utme','2005',183,'Admin','0000-00-00 00:00:00','2020-07-19 12:29:50'),(110,'Which of the following is used to test for the presence of lime in a soil sample? ','H2SO4(aq)  ','NaOH(aq)','Hcl(aq)  ','HNO3(aq)','','','c','','utme','2005',180,'Admin','0000-00-00 00:00:00','2020-07-21 10:52:20'),(111,'The importance of practicing crop rotation  in agriculture is to','maintain soil fertility','improve the nutritional value of crops   ','control soil erosion   ','ensure the growth of crops.','','','a','','utme','2005',189,'Admin','0000-00-00 00:00:00','2020-07-16 00:16:45'),(112,'The recycling method of solid waste disposal is unsuitable for','organic matter  ','glass  ','plastics','metal scraps','','','a','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(113,'A non-renewable alternative source of energy is','wind generators  ','solar panels  ','nuclear energy','hydroelectric power','','','c','','utme','2005',180,'Admin','0000-00-00 00:00:00','2020-07-21 09:24:25'),(114,'Which of the following gis the best explanation for a child who is phenol-typically short and born of two tall parents?','The father possesses a gene for shortness  ','The mother possesses a gene for shortness  ','Nature makes the child short  ','Both parents posses genes for shortness.','','','d','','utme','2005',184,'Admin','0000-00-00 00:00:00','2020-07-15 16:04:26'),(115,'A yellow maize is crossed with the a white maize and the first filial generation produce yellow maize only. The white trait is said to exhibit  ','dominance',' recessiveness','codominance  ','Incomplete  dominance','','','b','','utme','2005',167,'Admin','0000-00-00 00:00:00','2020-07-16 00:22:31'),(116,'The association in which one member benefits and the other is relatively unaffected by the interaction is termed  ','symbiosis','parasitism','commensalism  ','Mutualism','','','c','','utme','2005',178,'Admin','0000-00-00 00:00:00','2020-07-16 01:25:07'),(117,'When a peacock displays its colourful  feathers, it is  ','ready for a fight  ','protecting itself from predators  ','protecting its mate from predator','courting a female','','','d','','utme','2005',185,'Admin','0000-00-00 00:00:00','2020-07-16 01:39:06'),(118,'When an animal has a dark coloured dorsal surface and light coloured ventral surface, this is an adaptation called  ','concealment coloration  ','countershading','colour blending  ','disruptive coloration','','','b','','utme','2005',196,'Admin','0000-00-00 00:00:00','2020-07-16 01:27:01'),(119,'The only caste in the termite colony whose members can feed themselves are the  ','reproductive',' workers  ','nymhs  ','soldiers','','','b','','utme','2005',169,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(120,'An evidence of a common ancestry for fishes, amphibians, reptiles, birds and mammals is the','possession of wings by bird and bats','cold-bloodedness of fishes, amphibians and reptiles  ','presence of gill clefts in vertebrate embryos','','','','c','','utme','2005',203,'Admin','0000-00-00 00:00:00','2020-07-16 00:51:13'),(121,'Mendel, s second law of inheritance states that','alleles separate predictably  ','alleles segregate  independently','chromosomes segregate independently  ','alleles combine randomly','','','b','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(122,'One advantage of variation in a species population  is that individuals','easily reach their reproduction age','with favoured trait become dominant','are better adapted  to changes','are easily  recognized by mates','','','c','','utme','2006',181,'Admin','0000-00-00 00:00:00','2020-07-21 08:43:20'),(123,'The two normal types of sex chromosomes are','xxy and xyy','xx and xyy  ','xx and xy  ','xy and xxy','','','c','','utme','2006',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:29'),(124,'Hassan and Hussain are identical twins but Hasan grows taller and fatter than Hussain. This is probably  because  ','Hussain in endowed with genes for shortness and thinness  ','They are raised in different environments','they have dissimilar genotypes  ','Hassan inherits genes for tallness and fatness from the father.','','','b','','utme','2006',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:30'),(125,'Population that doubles in size to constant intervals is an indication of','sigmoid   ','population explosion  ','rapid growth','  exponential growth','','','d','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:31'),(126,'The causative reagent of typhoid fever is  ','Entamoeba','Salmonella','Shigella  ','Escherichia','','','b','','utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:32'),(127,'The  soil type that contains nutrients which are not readily available for plants is ',' sandy  ','Alluvial  ','loamy  ','clayey  ','','','d','','utme','2006',179,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(128,'Grasses recover quickly from bush fires in the savanna  because of their  ','succulent stems   ','rapid growth  ','fibrous roots  ','perennating organs','','','d','','utme','2006',188,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:34'),(129,'The main purpose of establishing shelter belts in the sahel region to  ','break the harmattan wind  ','beautify the region  ',' check desert encroachment  ','provide wood fuel','','','a','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(130,'Climax communities in a biotic succession are usually characterized by','a constant change in the appearance of the commodities  ','a stable composition of plant and animal species  ','rapid changes in the plant and animal species  ','different species that are constantly changing','','','b','','utme','2006',154,'Admin','0000-00-00 00:00:00','2020-07-20 14:33:36'),(131,'The product of excretion common to the mammalian kidney lung and skin is','Urea  ','carbon (IV)oxides  ','mineral salt','water','','','d','','utme','2006',170,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:37'),(132,'In rabbits, the chamber of the heart that receives oxygenated blood from the lungs is the  ','left auricle','right auricle','left ventricle','right ventricle','','','a','','utme','2006',170,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(133,'One basic similarly between nervous and endocrine system is that both  ','produce precise and short –lived  effects  ','Involve the use of chemical substances  ','transmit very fast impulses  ','produce widespread effects.','','','b','','utme','2006',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:38'),(134,'Night blindness result from a deficiency of  ','Vitamin E  ','Vitamin K  ','Vitamin C  ','Vitamin A','','','d','','utme','2006',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:39'),(135,'Water is necessary for a germinating seed because  it','wets the soil for proper germination  ','protects the seed from desiccation  ','activates the enzymes','promotes aerobic respiration  ','','','c','','utme','2006',178,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(136,'An increase  in air pressure in the lings is due to the','increase in the volume of the thoracic cavity  ','relaxation of the diaphragm','upward movement of the ribs','contraction intercostal muscles','','','b','','utme','2006',194,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:41'),(137,'In the transverse section of a dicot stem, the region lying between the endodermis and the vascular bundle is the','parenchyma  ','Pholem','phypodermis  ','pericyle','','','d','','utme','2006',167,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(138,'A unique characteristic of the cervical vertebrae  is the present  of','long transverse processes  ','zygaphphysis   ','vertebraterial canal  ','large centrum','','','c','','utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(139,'Which of following produces both hormones and enzymes?','Gall blader  ','Lieum  ','Pancreas  ','kidney','','','c','','utme','2006',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:44'),(140,'The formation of water in tissue  respiration  results from the  ','combination of water  molecules','breakdown of water molecules  ','reduction of carbon (IV) oxide','reduction of oxygen by hydrogen','','','d','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:49'),(141,'The organ situated in the pericardial cavity of a mammal is the','stomach  ','Liver  ','Liver','spleen','','','c','','utme','2006',152,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:50'),(142,'Mammals are  capable  of producing hypertonic urine mainly because of re-absorption in the  ','urethra  ','loop of henle  ','ureater  ','Bowman’s capsule','','','b','','utme','2006',187,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(143,'The mammalian vain which starts with and ends in a capillary network is the','hepatic portal vein','pulmonary vein  ','renal vein','measenteric vein','','','a','','utme','2006',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:52'),(144,'The part of the mammalian skin involved in temperature regulation is the','sebaceous gland  ','sweat gland','hair follicle  ','hair pailla','','','b','','utme','2006',192,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(145,'The variation illustrated is','physiological   ','discontinuous  ','morphological   ',' biochemical','','','c','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(146,'The change in the length of the necks of the giraffes shown was brought about by  ','predation','symbiosis','natural selection','geographical isolation','','','c','','utme','2006',170,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(147,'Which of the following vertebrates has the most simple structured heart?','fish  ','Mammal','Amphibian  ','Reptile','','','a','','utme','2006',162,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:56'),(148,'The role of the Golgi com plex in a eukaryotic cell is to  ','transport genetic material out of the cell','transport organic materials in and out of the cell','provide attachment for ribosomal granules','conduct ions and out of the cell','','','b','','utme','2006',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:57'),(149,'The dominant phase in the life cycle of a bryophyte is the','prothallus  ','Gametangium  ','saprophyte   ','gametophyte','','','d','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(150,'The evidence that supports the advancement of  fern over mosses is derived from ','biochemical similarities  ','','physiological records  ','molecular records','','','b','','utme','2006',190,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(151,'A characteristic that best exemplifies the evolutionary advancement of mammals over other  vertebrates in the  ','terrestrial mode of life  ','possession  of paired limbs  ','a false foot  ','radial symmetry','','','c','','utme','2006',164,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(152,'An organism which exhibits extracelluar digestion is  ','Paramecium','Rhizopus  ','Spirogyra  ','Amoeba  ','','','b','','utme','2006',179,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(153,'The chromosomes of members of the kingdom  monera are within the','nucleus  ',' nucleolus  ',' cytoplasm   ',' Nucleoplasm','','','c','','utme','2007',185,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(154,'A water medium is necessary for fertilization in','angisperms','ferns  ','fungi  ','conifers','','','b','','utme','2007',199,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(155,'The process of shedding the exoskeleton of an arthropod is known as','instar formation','metamorphosis  ','tagmosis  ','Ecdysis','','','d','','utme','2007',194,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(156,'The part labeled IV is responsible for','ingestion   ','locomotion  ',' osmoregualtion  ','respiration','','','c','','utme','2007',179,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(157,'Which of the following is common to the mosquito, housefly and blackfly?  ','Their  immature stages are aquatic   ','They undergo complete metamorphosis  ','Their adults have two pairs of wings   ','They are parasites of man','','','b','','utme','2007',173,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(158,'Which of the following has the most primitive respiratory system?','Fish','Snail  ','Mouse','insect','','','b','','utme','2007',165,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(159,'Moncot stems differ from dioct  stems in that monocots have','fewer vascular bundies',' no cambium  ','phloem with parenchyma   ',' no pith','','','b','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(160,'In mammals , the  organ directly on top of the kidney is the','prostate gland  ',' pancrease   ','thyroid gland  ',' adrenal gland','','','d','','utme','2007',161,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(161,'The photosynthetic pigment is include  ','melanin and haemoglobin  ',' chlorophyll and carotenoids  ',' carotenoids and haemoglobin  ',' chloroplasts and cytochromes','','','b','','utme','2007',175,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(162,'The pancreas secretes enzymes for the digestion of  ','fats, vitamins and cellulose',' fats, carbohydrates and vitamins  ','proteins, celluclose and minerals  ','fats, proteins and carbohydrates','','','d','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(163,'Which of the following uses diffusion as the principal method of gaseous exchange?','Rate  ','lizard','Earthworm  ','Grasshopper','','','c','','utme','2007',180,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(164,'The opening  and closing of the stoma are regulated by','osmosis   ','diffusion  ','transpiration  ','respiration','','','a','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(165,'The waste product of plants used in the conversion of hide to leather is','resin  ','tannin  ','gum  ','Alkaloid','','','b','','utme','2007',160,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(166,'The correct sequence of the movement of urea during urine formation is','Convoluted tubule_ glomerulus_Henle’s loop_ Bowman’s capsule_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tuble_ Henle’s loop_collecting tubule','convoluted tubule_ Bowman’s capsule_Henle’s loop _ glomerulus_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tubule_ Henle’s loop_convoluted tubule_collecting tubule','','','d','','utme','2007',168,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(167,'Pineapple is an example of','a composite fruit  ','a simple fruit','an aggregate fruit','a dehiscent fruit','','','a','','utme','2007',163,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(168,'Stunted growth and poor root development are a result of as deficiency in  ','calcium  ','sulphur  ','iron  ','phosphorous','','','a','','utme','2007',180,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(169,'The highest level of ecological organization is the','niche','biosphere  ','population  ','Ecosystem','','','d','','utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(170,'A biotic factor which affects the distribution and abundance of organisms in a terrestrial  habitat is','competition  ','temperature  ','light  ','pH','','','a','','utme','2007',165,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(171,'Which of the following is an example of parasitism?  ','Mistletoe growing on an orange tree','Fungi growing on a dead  tree branch  ','cattle egrets taking ticks from the body of cattle','a squirrel living in an abandoned nest of a bird','','','a','','utme','2007',164,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(172,'The organs that will be most useful  to giant  African rats in finding their way in underground habitats are the  ','Eyes   ','vibrissae','tails  ','Nostrils','','','b','','utme','2007',160,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(173,'One adaptation  shown by hydrophytes in fresh water habitats is the','poor  development of roots and xylem tissues  ','well developed roots and supporting system  ','leaves reduced to spines  ','waxy  cuticle on shoot surface','','','a','','utme','2007',161,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(174,'The mangrove swamp in Nigeria is restricted to the','Guinea savanna','Tropical rainforest','Sudan savanna   ','Sahel savanna','','','b','','utme','2007',168,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(175,'In which of the following Nigerian states can montane vegetation be found?','Plateau','Taraba  ','Enugu  ','Bauchi','','','a','','utme','2007',159,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(176,'The increasing order of the particle size in the following soil types  is','clay_silt_sand_gravel  ','Silt_clay-sand_gravel  ','clay_sand_slit_gravel','silt_sand_clay gravel','','','a','','utme','2007',193,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(177,'A crucible  of 5gm weighted 10gm after filling with fresh soil. It is hen healed in an oven at 100oC for 1 hour. After cooling in a desiccators, the  weight was 8gm. The percentage of water in the soil is  ','20%','40%','6%','80%','','','b','','utme','2007',189,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(178,'The causative agent of bird flu is a','virus  ','bacterium  ','fungus  ','protozoan   ','','','a','','utme','2007',166,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(179,'An accurate identification  of a rapist can be carried out by conducting a','blood group test  ','behavioural traits test  ','DNA analysis   ','RNA analysis','','','c','','utme','2007',188,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(180,'Which of  the following is true of cloning?','it involves the asexual multiplication of the tissues of the original organisms  ',' the clone is similar to but not exactly like the original organism   ','Only one cell of the original organism is needed to initiate the process','it is welcomed as an ethically  and morally sound science','','','c','','utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(181,'An example of a sex-linked  trait is the','ability to roll the tongue','possession of facial hair in adult humans  ','ability to grow long hair in females  ','colour of the skin in human','','','c','','utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(182,'Which of the following factors can bring about competition in a population? ',' Drought   ','Mortality','Dispersion   ','Emigration','','','d','','utme','2007',159,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(183,'In lizards, the lowering  of the gular fold is used to','attract mates  ','frighten enemies','catch insects   ','defend their territory','','','b','','utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(184,'The type of protective adaptation exhibited by the animals is  ','flash colouration   ','disruptive  colouration','warming colouration','countershading  colouration','','','d','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(185,'An example of a fish that aestivates is','lung fish   ','shark','cat fish','croaker','','','a','','utme','2007',176,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(186,'The theory  which supports the view that the large muscles developed by an athlete will be passed on to the offspring was proposed by','Darwin  ','Lamarck   ','Pasteur   ','Mendel.','','','b','','utme','2007',151,'Admin','0000-00-00 00:00:00','2020-07-21 23:42:46'),(187,'In terms of the number of individuals, which of the following  taxa is most inclusive?','order','family','class  ','species','','','c','','utme','2008',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:41'),(188,'A characteristic that can possibly be shared by both living  and non-living organisms is  ','locomotion  ','irritability','increase in biomass','increase in size','','','d','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:42'),(189,'The cell of an onion bulb can be differentiated from a cheek cell by the presence of  ','plasmalemma  ',' chloroplast','cell wall  ',' nucleus','','','c','','utme','2008',171,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(190,'In plants, the structure that performs  a similar  function with the testis is in mammals  is the   ','stigma','filament  ','anther','replace','','','c','','utme','2008',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:44'),(191,'The bacteria type that are arranged in chains are the','Staphylococci  ','clostridia','streptococci','Bacilli','','','c','','utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:45'),(192,'The most abundant group of organism in the animal kingdom is','Mammalian','Aves  ','Annelida  ','Insecta','','','d','','utme','2008',153,'Admin','0000-00-00 00:00:00','2020-07-21 10:22:02'),(193,'Radial symmetry is a feature common to the  ','platyhelminthes','nematodes  ','coelentrates','arthropods','','','c','','utme','2008',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:47'),(194,'Which of the following  is used mainly for balancing in fish?','The causal fin  ','the pectoral fin','the anal fin  ','The dorsal fin','','','d','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(195,'The beak of a duck is structurally adapted  for','scooping and sieving food  ','catching and gasping food  ','picking and cracking food  ','boring and sucking food  ','','','a','','utme','2008',172,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(196,'The most important characteristic that makes reptiles to conquer terrestrial habitats is the possession of','long tail','scaly skin','sharp claw','amniotic egg','','','b','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(197,'Inn a dictyledonous stem, the zone between the epidermis and the pericycle is the','cortex  ','stele','xylem','phloem','','','a','','utme','2008',178,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(198,'The order of passage of food in the digestive system is','ileum caecum large intestine rectum','ileum colon caecum rectum','large intestine ileum caecum rectum','colon caeum ileum rectum  ','','','b','','utme','2008',167,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:52'),(199,'Insectivorous plants traps and kill their prey to derive  ','phosphorous  ','calcium  ','nitrogen','Zinc','','','c','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:52'),(200,'In the alimentary system of a bird, the function  of teeth is carried out by the','crop  ','Beak  ','Gizzard','tongue','','','c','','utme','2008',149,'Admin','0000-00-00 00:00:00','2020-07-14 13:09:53'),(201,'What will happen when two equal  sized pieces of unripe pawpaw labeled X and Y are dropped into equal volumes of concentrated salt solution and distilled water respectively?  ','Pawpaw X will become  turgid  ','Both  will increase in size','pawpaw Y will become turgid','Both will decrease in size','','','c','','utme','2008',171,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(202,'Exhaled air differs from inhaled air in that it  ','contains less amount of carbon (IV) oxide  ','is usually lower in temperature','often has more oxygen  ','usually has more water vapour','','','d','','utme','2008',153,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:15'),(203,'In the mammalian kidney,  the Bowman’s  capsule is located in the','ureter','Pelvis  ','cortex','medulla  ','','','d','','utme','2008',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:15'),(204,'A plant  parenchyma cell also acts as a supporting tissue when it','becomes faccid  ','contains cystals  ','becomes turgid','is pigmented','','','c','','utme','2008',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:17'),(205,'During ovulation, an egg is released from the','corpus luteum  ','ovarian funnel  ','Graafian follicle','fallopian tube','','','c','','utme','2008',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:17'),(206,'The transmission of impulses along a nerve fibre is characterized by','hormonal and temperature changes   ','electrical and ionic changes  ','hormonal changes  ','electrostatic changes','','','b','','utme','2008',156,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:18'),(207,'The major consequences of bush burning in an ecosystem is  ','the loss of water absorbing ability of the soil','the loss of biological diversity','a decrease in animal population','an increase in soil fertility','','','b','','utme','2008',167,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:19'),(208,'Which of the following associations is an example of mutalism?','hydra viridis and zoochlorellae','human and lice   ','Shark and Remora fish  ','Bread and Rhizopus stolonifer  ','','','a','','utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(209,'In a typical freshwater habitat, the edge of the stream or pond constitutes the','tidal zone  ','interidal zone  ','littoral zone  ','euphotic zone','','','c','','utme','2008',210,'Admin','0000-00-00 00:00:00','2020-07-16 00:38:22'),(210,'The main ecological  problem facing interidal organisms is','dessciation','floatation','salinity','humidity','','','a','','utme','2008',181,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(211,'Stomata  of some plants are sunken and protected by hairs. These are features of ','mesophytes','epiphtes  ','hydrophytes  ','Xerophytes','','','d','','utme','2008',193,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(212,'An ecological factor that will have the most  limiting effect on the abundance of phytoplankton in a turbid pond is   ','pH  ','oxygen','light  ','temperature','','','c','','utme','2008',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:24'),(213,'In an experiment to determine the percentage of air in a soil  sample, the  Following readings were recorded:\\nVolume of water inn a measuring cylinder = 500cm3  \\nVolume of soil added to water= 350cm2\\nVolume of water andn soil after stirring= 800cm2\\nThe percentage of air in the soil sample is \\n','6.25%','10. 36%    ','14.28%','43.28%','','','c','','utme','2008',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:25'),(214,'A boy who is fond of swimming in a pond finds himself passing urine with traces of blood. He is likely to have contracted  ','Schistosomiasis','onchoerciasis','poliomyelitis  ','salmonellosis','','','a','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:26'),(215,'The easiest way to establish  the level of pollution in a local stream is to measure the level of','oxygen','carbon(IV) oxide','ammonia','alkalinity','','','a','','utme','2008',190,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(216,'Which of the following is a major case of variation among  organisms?  ','inbreeding  ','backcrossing   ','sexual reproduction','Gene dominance','','','c','','utme','2008',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:40'),(217,'The Rhesus factor of blood was first identified in a category of  ','monkeys   ','human females','human males  ','chimpanzees','','','a','','utme','2008',188,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(218,'Genetically modified food products have not become  universally accepted because','They are not tasty as others produced  by conventional means','they are usually costlier than others produced by conventional means','their  efforts on human consumers is not yet fully understood   ','the technology can be applied only  in developed  countries','','','c','','utme','2008',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:42'),(219,'A major  adaptive feature of endo-parasites is the   ','loss of the organ of movement  ','presence of claws  ','loss of the central nervous system  ','presence of piercing mouthparts','','','a','','utme','2008',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:43'),(220,'The ability of a chameleon to change its colour is an adaptive feature for  ','attraction','defence  ','display','attack     ','','','b','','utme','2008',169,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(221,'Which of the following is the most advanced evolutionary development in plants?  (a) possession of unicellular structures  ','possession of unicellular structures  ','Development of flowers','dispersal of spores  ','Development of secondary thickening','','','b','','utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(222,'The natural process that produces adaptive evolutionary  changes is  ','mutation  ','gene flow  ','genetic drift','natural selection','','','d','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:10:46'),(223,'What is the level of organization  of an onion bulb?','tissue  ','organ','systemic','organism','','','b','','utme','2009',177,'Admin','0000-00-00 00:00:00','2020-07-21 08:55:00'),(224,'A characteristic exhibited by all living organism is  ','sexual reproduction   ','aerobic respiration  ','the ability to move from one place to another  ','the ability to remove unwanted substances.','','','d','','utme','2009',188,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(225,'In a cell, the genes are carried by  ','nuclear membranes','chromatin threads  ','lysosomes','mitochondria','','','b','','utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(226,'Alternation of a sexual and sexual modes of reproduction is found in','blue-green algae  ',' Euglena','fern',' maize','','','c','','utme','2009',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(227,'The first terrestrial vertebratese volved from','pisces  ','Reptilia  ','Amphibia  ','Mammalia','','','c','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(228,'In plants, the structures that play roles similar to the arteries and veins of animals are the  ','xylem and phloem','root hairs and xylem  ','lenticels and phloem  ','roots and stems','','','a','','utme','2009',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(229,'A blue-green alga is not a protophytes because','it is aquatic  ','its cells are prokaryotic','it cannot move','it is not a green plant','','','b','','utme','2009',231,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(230,'The feature that makes locomotion in water easy for fish is the','scaly body','slimy body  ','steam lined body','lateral line','','','c','','utme','2009',179,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(231,'Bird toes suitable for digging have claws that are  ','blunt','curved  ','hooked','sharp','','','a','','utme','2009',192,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(232,'Chewing the cud is an adaptation peculiar to','herbivores','omnivores  ','rodents   ','ruminants','','','d','','utme','2009',200,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(233,'Which of the following is an example of a carnivorous plant?','Hydra','Bladderwort','Yeast','Spirogyra','','','b','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(234,'The part of the alimentary system of a bird where food is  ground into small particles is the','cloaca  ','stomach  ','crop  ','gizzard','','','d','','utme','2009',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(235,'Which of the following describes the sequence of blood flow fro the heart to a tissue?','Heart_artery_arteriole _ tissue','Heart_vein_venule _tissue','Heart _ venule _vein_tissue','Heart _arteriole _artery_tissue','','','a','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(236,'The enzymes of the glycolytic pathway are located in  the','mitochondria  ','gastric juice','plasma','cytoplasm','','','d','','utme','2009',155,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(237,'In insects, the structure that performs  the same function as the kidney in man is the','nephridium','flame cell  ','malphigiann tubule','trachea','','','c','','utme','2009',193,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(238,'The axial  skeleton is found in the','skull , ribs, vertebral column and breast bone   ','skull humerus, vertebral column and ribs  ',' breastbone, clavicle, rids and vertebral column',' femur, sternum, ulnae and skull','','','a','','utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-21 10:25:25'),(239,'The reproductive  system of a male mammal is made up of  ','claspers, prostrate, gland, sperm duct and vas deferns','testis, prostrate gland, sperm duct and vas deferns  ','oviduct , urethra, testis and sperm  duct','testis, uterus, prostrate gland and sperm duct.','','','b','','utme','2009',177,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(240,'In a bean seed, absorption of water at the beginning  of germination is through the  ','hilum','micropyle  ','testa  ','plumule','','','b','','utme','2009',171,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(241,'The most important ecological factor in a terrestrial environment is','rainfall',' humidity','wind',' soil','','','a','','utme','2009',188,'Admin','0000-00-00 00:00:00','2020-07-21 02:39:04'),(242,'The association between bacteria residing I the caecum and the ruminant is  ','parasitism  ','predation  ','saprophytism  ','mutalism','','','d','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(243,'A marine protozoan is likely to have no contractile acuole  mainly because the cytoplasm is  ','isotonic to sea water','hypotonic to sea water','hypertonic to sea water','impervious to seas water','','','a','','utme','2009',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(244,'In freshwater  marshes and swamps, the most important abiotic factor that organisms have to','nature  of substratum  ','high salinity  ','high temperature  ','low pH','','','a','','utme','2009',183,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(245,'Which of the following biomass could be characterized by very low rainfall, cold nights, hardays and fast blooming plants?  ','Northern Guinea savanna','southern Guinea savanna  ','Tropical desert',' montane forest','','','b','','utme','2009',171,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(246,'The optimum temperature  for the growth of the organism is','25oC','50oC','75oC   ','100oC','','','b','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(247,'Mass of a crucible = 10g\\n Mass of a crucible and soil before heating = -29g.\\nMass of a crucible and sol after heating = 18g. From the information above, determine the percentage of wter in the given soil sample?  \\n','20%','25%','40%','50%','','','d','','utme','2009',164,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(248,'I Onchocerciasis  II Schistosomiasis  \\nIII Salmonellosis  IV Meningitis \\nWhich of the diseases listed above are associated with water? \\n','I and II only  ','II, III and IV  ','I, II and III  ','II and IV','','','c','','utme','2009',197,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(249,'The major cause of global warming is the','Burning of fossil fuel','construction of dams','use of electricity  ','exploration of space','','','a','','utme','2009',175,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(250,'The uniqueness of an individual organism in a population is accounted for by','evolution','variation  ','adaptation','mutation','','','b','','utme','2009',192,'Admin','0000-00-00 00:00:00','2020-07-19 12:29:50'),(251,'A phenotypic character with intermediate forms that can be graded from one extreme to the other is referred to as','discontinous variation   ','continuous variation','a mutant','a genome','','','b','','utme','2009',173,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(252,'A farmer’s assumption that the seed from a good harvest will produce a good yield is explained by the theory  of','evolution','adaptation','variation','heredity','','','d','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(253,'In Mendelian inheritance, discontinuous characters are controlled by the','centromeres','alleles','chromosomes','chromatids','','','b','','utme','2009',200,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(254,'A woman with the ability to roll her tongue (Tt) marries a man who cannot roll his tongue  (tt). What is the probability of each of their children being a tongue roller?','100%','75%','50%','25%','','','c','','utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(255,'A health condition that isi known to have resulted from gene mutation is  ','heamophilia ','colour blindeness  ',' sickle cell anaemia  ',' anaemia  ','','','c','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(256,'Plants that grow in an area that is neither too wet nor too dry are','xerophytes  ','mesophytes  ','epiphytes','hydrophytes','','','b','','utme','2009',199,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(257,'The part of a domestic fowl responsible  for preventing heat loss is the  ','filoplume ','contour feather  ',' down feather',' quill','','','c','','utme','2009',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(258,'Which of the following animals is most adapted for water conservation?','Earthworms  ','mammals   ','Flatworms  ','Insects','','','d','','utme','2009',162,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(259,'The specialized pigment cells that are involved in colouration and colour change in animals are the','xanthophyl','chromatophores','chlorophyll','mechanic','','','d','','utme','2009',168,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(260,'During the dry season in the tropics, the body metabolism of some animals slows to a minimal level in a process referred to as','hibernation','aestivation','dormancy','sense scense  ','','','b','','utme','2009',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(261,'According to Darwin, the driving force behind evolutionary change is','atural selection','genetic drift  ','mutation','gene flow','','','a','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(262,'Which of the following characterizes a mature plant cell?','The cytoplasm fills up the entire cell space',' The nucleus is pushed to the centre of the cell',' the cell wall is made up of cellulose','The nucleus is small and irregular in shape','','','d','','utme','2010',233,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(263,'Which of the following is NOT a function of the nucleus of a cell?  ','it controls the life processes of the cell','It translates genetic formation for   the manufacture of proteins','it stores and carries hereditary information  ','it sis a reservoir of energy for the cell','','','d','','utme','2010',212,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(264,'The dominant phase in the life cycle of a fern is the','gametophyte  ',' prothallus','sporophyte  ',' antheridium','','','c','','utme','2010',214,'Admin','0000-00-00 00:00:00','2020-07-21 08:39:06'),(265,'Parental care is exhibited by','toads','snails',' earthworms',' birds','','','d','','utme','2010',218,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(266,'Which of the following groups of cells is devoid of true nuclei?','viruses','algae  ','Monera','Fungi','','','c','','utme','2010',217,'Admin','0000-00-00 00:00:00','2020-07-21 08:32:53'),(267,'Which of the following is true of the transverse section of a dicot stem?','The epidermis is completely encircled by the cortex','The xylem is more interiorly located than the phloem',' The cambium lies between the cortex and the vascular bundles','The vascular bundles are randomly scattered within the  cortex','','','b','','utme','2010',207,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(268,'Which of the following is lacking in the diet of a person with kwashiorkor?','Vitamins  ','Proteins','Carbohydrates  ','Minerals','','','b','','utme','2010',219,'Admin','0000-00-00 00:00:00','2020-07-20 11:15:56'),(269,'The mode of nutrition of sundew and bladderwort can be described as','autotrophic  ','saprophytic  ','holozoic   ','chemosynthetic','','','c','','utme','2010',186,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(270,'When a mixture of a food substance fand Benedict’s solution was warmed, the solution changed from blue to brick red . This indicates the presence of','reducing  sugar','fatty acid','sucrose  ','amino acid','','','a','','utme','2010',205,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(271,'The primary structure responsible for pumping blood for circulation through the mammalian circulatory systems is the','veins  ','right auricle  ','arteries','left ventricle','','','d','','utme','2010',231,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(272,'Circulation of blood to all parts of the body except the lungs is through  ','the pulmonary artery  ','systemic circulation','the lymphatic system','pulmonary circulation','','','b','','utme','2010',214,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(273,'Yeast respires anaerobically  to covert simple sugar to carbon (IV) oxide and','alcohol  ','acid','oxygen','water','','','a','','utme','2010',229,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(274,'The sheet of muscle that separates the thoracic and the abdominal cavities is the ','diaphragm  ','intercostal muscles',' pleural membrane   ',' pericardium','','','c','','utme','2010',213,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(275,'The oily substance that lubricates the mammalian hair to keep it flexible ad water repellent is secreted by the','sweat glands','sebaceous glands','fatty  cells','granular layer','','','b','','utme','2010',205,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(276,'The outer layer of the kidney where the Bowman’s capsules are found is the','cortex','pelvis  ','medulla','pyramid','','','a','','utme','2010',224,'Admin','0000-00-00 00:00:00','2020-07-20 03:32:40'),(277,'Which of the following stimuli is likely to elicit a nastic response in an organism? ','Touch  ','Light intensity  ','Chemical substances  ','gravity','','','a','','utme','2010',201,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(278,'In the male reproductive system of a mammal, sperm is stored in the','van deferens  ','urethra','epididymis  ','seminiferous tubules   ','','','c','','utme','2010',217,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(279,'Chemosynthetic organism are capable  of manufacturing their food  from simple inorganic substances through the process of','oxidation','denitrification','reduction','phosphorylation','','','a','','utme','2010',222,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(280,'The part of the human gut  that has an acidic  content is the','stomach  ','duodenum  ','ileum','colon','','','a','','utme','2010',220,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(281,'I. Stomata _ spirogyra   II alveoli _ earthworm  III malpighian tubule_mammal Iv.Contractile vacuole _protozoa \\nWhich of the above structures is correctly matched with the organisms in which it is found? \\n','III  ','II   ','I','IV','','','d','','utme','2010',225,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(282,'A food chain always begins with a  ','consumer  ','decomposer  ','producer','primary  consumer','','','c','','utme','2010',213,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(283,'Mycorrhizae promote plant growth by','absorbing inorganic ions from the soil  ','protecting it from infection','helping it to utilize atmospheric nitrogen','serving as a growth regulator','','','a','','utme','2010',243,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(284,'The barrier between maternal and foetal blood is the','placenta  ','liver','umbilical chord  ','uterine wall','','','a','','utme','2010',199,'Admin','0000-00-00 00:00:00','2020-07-21 10:04:13'),(285,'The blood component  that has the greatest affinity for oxygen is the ','lymphocytes',' leucocytes','erythorocytes  ','thromboytes','','','c','','utme','2010',236,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(286,'Which of the following organisms is mainly  found in the marine habitat?','Achatina  ','Tilapia  ','Dog fish  ','Tortoise','','','c','','utme','2010',206,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(287,'The two halves of the pelvic girdle are jointed together at the  ','public  symphysis  ','ilium  ','pubis  ','obturator foramen','','','a','','utme','2010',229,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(288,'I. Adoption of appropriate nocturnal habits   II. Burrowing   III. adjusting their  internal body temperature   IV. Possession of many sweat pores.\\nWhich of the above are ways in which desert animals adapt to extreme heat of environment?  \\n','I and IV only  ','II and III only  ','I and II only  ','I, II and III only','','','d','','utme','2010',224,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(289,'Low annual rainfall, sparse vegetation, high dermal temperatures and cold nights are characteristics features of the','tropical  rainforest  ','desert   ','mundane forest','guinea savanna','','','b','','utme','2010',219,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(290,'The average number of individuals of a species  per unit area of the habitat is the ',' population density','population frequency  ','population size','population distribution','','','a','','utme','2010',241,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(291,'The loss of soil through erosion can be reduced by','watering','crop rotation  ','maturing  ','irrigation','','','b','','utme','2010',239,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(292,'The vector for yellow fever is  ','edges mosquito  ','anopheles mosquito  ','tsetse fly  ','blackly','','','a','','utme','2010',231,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(293,'The protozoan plasmodium falciparum is transmitted by','female anopheles mosquitoes  ','female Aedes mosquitoes  ','female Culex mosquitoes   ','Female  blackfly','','','a','','utme','2010',202,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(294,'A dilute solution of phenylthiocarbamide tastes bitter to some people  and is tasteless to others. This is an example of  ','taste bud variation','discontinuous variation   ','morphological variation',' continuous variation','','','b','','utme','2010',221,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(295,'Throxne and adrenalin are examples of hormones which control','blood grouping','tongue rolling  ','behavioural patterns','colour variation ','','','c','','utme','2010',222,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(296,'A pair of genes that control a trait is referred to as','anallele','recessive','dominant  ','ahybrid','','','a','','utme','2010',234,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(297,'The chromosome number of a cell before and after the process of meiosis is conventionally represented as','2n_2n   ','n_n  ','n-2n  ','2n-n','','','d','','utme','2010',220,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(298,'If both parents are heterozygous for trait, he probability that an offspring will be recessive for that trait is','¾   ','½    ','¼','1','','','c','','utme','2010',213,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(299,'At what stage in the life history of a mammal is the sex of an individual set?','At adolescence','At puberty  ','At birth  ','At conception','','','d','','utme','2010',223,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(300,'The main distinguishing features between the soldier termite and other members of the caste are the','presence of wings, possession of a small head and large thorax','presence of wings, possession of a large thorax  and a small head','absence of wings, possession off strong mandibles and a large head','absence of wings, possession of big head and the absence of mandible.','','','c','','utme','2010',210,'Admin','0000-00-00 00:00:00','2020-07-20 01:51:30'),(301,'The flippers of a whale  and the fins of a fish are examples of','divergent evolution  ','co evolution','continuous variation','convergent evolution','','','a','','utme','2010',218,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(302,'The function of the red head in male Agama lizards is to','scare other males from the territory  ','attract female lizards for mating purposes  ','warn predators of the distastefulness of the animal  ','Conceal and camouflage the animal from predators','','','b','','utme','2011',149,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(303,'In which of the following species is the biomass of an individual the smallest?','Agama sp  ','Bufo sp','spirogyra sp   ','Tilapia sp','','','c','','utme','2011',192,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(304,'Seed plants are divided into','angiosperms and gymnosperms','monocotyledons and dicotyledons','thallophyes and pbryophytes  ','Tracheophytes and ferns','','','a','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:15'),(305,'In which of the following groups of vertebrates is parental  care mostly exhibited? ','  Amphibia','Aves  ','Mammalia  ','Reptilia','','','c','','utme','2011',176,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(306,'The adult form of III is a vector of  ','river blindness','cholera','elephantiasis','sleeping sickness','','','c','','utme','2011',183,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(307,'The adaptive importance of nuptial flight from termite colonies is to','provide abundant food for birds and other animals during the early rains','ensure cross breeding between members of one colony  and another','expel  the reproductive so as to provide  enough food for other members','disperse the reproductive in order to establish  new colonies','','','d','','utme','2011',173,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(308,'Which of the following can cause shrinkage  of living cells?  ','Isotonic solution   ','Delonized water  ','Hypertonic solution','hypotonic solution','','','c','','utme','2011',178,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(309,'Which of the following is true of leucocytes?  ','They are most numerous and ramify all cells  ','They are large and nucleated  ','They are involved in blood clotting','They are respiratory pigments','','','b','','utme','2011',179,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(310,'The conversion of a nutrient into a molecule in the body of a consumer is referred to a s  ','assimilation','absorption  ','inhibition','digestion','','','d','','utme','2011',220,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(311,'The ability  of a living organism to detect and respond to changes in the environment is referred to as','irritability','growth    ','taxis','locomotion','','','a','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:22'),(312,'In mammals, the exchange of nutrients and metabolic products occurs in the','oesophagus','trachea','lymph   ','lungs','','','c','','utme','2011',172,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(313,'An example of an endospermous seed is   ','cashew  nut  ','cottons seed','bean seed  ','maize grain','','','d','','utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(314,'I. Parasitism _ Sundew    II Autrrophism_Amoeba    III Saprophytism_ Alga  IV. Heterotrophism- Agama. Which of the above modes of nutrition is correctly matched with the organism that  exhibits it?','III','IV  ','I','II','','','b','','utme','2011',169,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(315,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nIn which of the test tubes will glucose be detected after complete hydrolysis?\\n','II and III only','I only','I, II and III   ','I and II only','','','a','','utme','2011',182,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(316,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nThe enzyme involved in the hydrolysis is\\n','erepsin  ','perilymph   ','maltase  ','rennin','','','c','','utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(317,'The part of the mammalian ear responsible for the maintenance of balance is the ','pinna   ',' perilymph  ',' Ossicles   ',' cochlea','','','d','','utme','2011',189,'Admin','0000-00-00 00:00:00','2020-07-21 09:26:30'),(318,'The path followed by air as it passes through the lungs in mammals is  ','bronchi_ trachea_ alveoli_ bronchioles  ','Trachea _ Bronchiole _ bronchi_ alveoli   ','bornchioles _ alveoli _ bronchi_ trachea   ','trachea_ bronchi _ bronchioles_ alveoli','','','d','','utme','2011',178,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(319,'The movement response of a cockroach away  from a light source can be described as  ','negative phototaxism  ','negative photropism','positive  photropism  ','positive phototaxism','','','a','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(320,'The vascular tissues in higher plants are responsible for  ','suction pressure  ','transpiration pull','the transport of gases and water   ','the movement of food and water','','','d','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(321,'Which of the following organs regulates the levels of water, salts, hydrogen ions and urea in the mammalian blood?','kidney','bladder  ','colon  ','liver','','','a','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(322,'The sequence of the one way gaseous exchange mechanism in a fish is','gills _ operculum _ mouth','mouth_operculum_ gills  ','mouth _gills _operculum','operculum _ gills_ mouth','','','c','','utme','2011',175,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(323,'The  type of asexual reproduction that is common to both paramecium and protists is','speculation  ','fragmentation','fission','budding','','','c','','utme','2011',162,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(324,'In nature, plants and animals are perpetually engaged in mutulism because  ','all animals rely on food produced  by plants','they  utilize respiratory wastes of each other  ','they are neighbours  ','they are rivals','','','b','','utme','2011',145,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(325,'In an experiment to determine the percentage of humus and water in a soil sample, the following results were obtained. \\nWeight of the evaporating basin alone = 80.5g   Weight of basin and soil = 101.5g    Weight after drying the soil in the oven = 99.0g    Weight of basin and roasted soil = 95.5h\\nThe percentage of humus in the soil sample is  \\n','17.60%','26.70%','16.20%','16.70%','','','d','','utme','2011',157,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(326,'An example of a filter-feeding animals is','butterly  ','whale','mosquito  ','shark','','','b','','utme','2011',166,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(327,'Which of the  following is a feature of the population Pyramid of a developing country?  ','Low birth rate','low death rate  ','short lifespan','long lifespan','','','c','','utme','2011',170,'Admin','0000-00-00 00:00:00','2020-07-21 09:16:11'),(328,'the interaction of a community of organisms with its abiotic environment constitutes','a food chain','an ecosystem  ','a microhabitat','a niche','','','b','','utme','2011',182,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(329,'The vector of the malaria parasite is a','female anopheles mosquito  ','male culex mosquitoes','female culex mosquito  ','female Aids mosquito','','','a','','utme','2011',181,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(330,'Which of the following  instruments is used  to measure relative humidity?','Thermometer  ','Hygrometer  ','Anemometer','Hydrometer','','','b','','utme','2011',182,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(331,'Exo-erythrocytic phase  of the life cycle  of malaria parasite occurs in the','reticuloendothelial cells of humans','maphigian tubules of mosquito','brain of humans  ','liver  of humans','','','d','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(332,'Habitats are generally classified into  ','aquatic and terrestrial','arboreal  and marine biomes','microhabitats and macro habitats','biotic and abiotic','','','a','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(333,'Drancunculiasis can be contacted  through  ','drinking contaminated water','bathing in contaminated water  ','bites of blackfly   ','eating contaminated food','','','b','','utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(334,'Which of the following groups of environmental factors are density dependent?  ','Temperature, salinity, predation and disease   ',' Food, predation, disease and accumulation of metabolites  ','Temperature, food disease and light  ','food, salinity, accumulation  of metabolites and light','','','b','','utme','2011',194,'Admin','0000-00-00 00:00:00','2020-07-18 20:45:48'),(335,'Millet, sorghum, maize and onions are common crops grown in Nigerian in the  (a) Sudan savanna','montane forests   ','Sahel savanna','Tropical rainforests','','','','a','','utme','2011',157,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:46'),(336,'In which of the following biomes is the south western part of Nigeria located?  ','Tropical rainforest  ','Tropical woodland  ','desert','Temperature forest','','','a','','utme','2011',179,'Admin','0000-00-00 00:00:00','2020-07-20 14:34:23'),(337,'Lack of space in a population  could lead to an increase in','birth rate','disease rate','drought   ','water  scarcity','','','b','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(338,'The inheritable characters that are determined by a gene located only on the X-chromosome is  ','sex linked','homozygous  ','dominant  ','recessive','','','a','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(339,'If the cross of a red  flowered plant with a white flowered plant produces a pink flowered plant, it is an example of','incomplete dominance  ',' mutation  ',' linkage','co dominance','','','d','','utme','2011',204,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(340,'Which of the following theories was NOT considered by Darwin in his evolutionary theory?','survival of the fittest  ','use and disuse  ','competition ',' variation','','','b','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(341,'The crossing of individuals of the same species with different genetic characters is',' polygenic inheritance  ',' non disjunction  ','inbreeding','cross breeding','','','c','','utme','2011',173,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(342,'The number of alleles controlling  blood groups in humans is','4','5','2','3','','','d','','utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(343,'During blood transfusion, agglutination may occur as a result of the reaction between','two different antigens  ','two different antibodies  ','similar antigens and antibodies  ','contrasting antigens and antibodies','','','d','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-21 10:22:00'),(344,'The fallacy in Lamarck’s evolutionary theory was the  assumption that','acquired traits  are heritable','acquired traits are seldom formed','traits  are acquired  through the use of body parts  ','traits are acquired through disuse  of body parts.','','','c','','utme','2011',193,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(345,'The brightly coloured eye spots on the hind wings of a moth are an example of ',' disruptive colouration',' continuous variation    ','divergent  Evolution','convergent  evolution','','','d','','utme','2011',177,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(346,'Which of the following is most advanced in the evolutionary trend of animals?  ',' Liver fluke  ','Earthworm','Snail  ','cockroach','','','d','','utme','2012',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:10'),(347,'Which of the following is the lowest category of  classification?  ','Class   ','species  ','Family','Genus','','','b','','utme','2012',188,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(348,'Plants  that show secondary growth are usually found among the','thallophytes','pteridophytes','monocotyledons  ','dicotyledons','','','d','','utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:12'),(349,'The fungi are a distinct group of eukaryotes mainly  because they have  ','spores  ','no chlorophyll  ','many fruiting bodies','sexual and asexual reproduction','','','d','','utme','2012',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:13'),(350,'An arthropod that is destructive at the early stage of its life cycle is','butterfly  ','mosquito  ','bee','millipede','','','a','','utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:14'),(351,'An animal body that can be cut along its axis in any plane to give two identical parts is said to be  ','radically  symmetrical','bilaterally symmetrical','asymmetrical','symmetrical','','','a','','utme','2012',160,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(352,'Which  of the following possesses mammary gland?','Dogfish','Whale  ','Shark  ','Catfish','','','b','','utme','2012',205,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:16'),(353,'The feature  that links birds to reptiles in evolution is the possession of  ','feathers  ','beak  ','skeleton','scales','','','d','','utme','2012',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:17'),(354,'Counter shading is an adaptive  feature that enables animals to  ','flight enemies  ','remain undetected','warn enemies  ','attract mates','','','b','','utme','2012',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:18'),(355,'Which of the following plant structures lacks a waterproof of cuticle?  ','leaf  ','stem  ','root','shoot','','','c','','utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(356,'In the mammalian male reproductive system, the part that serves as a passage for both urine and semen is the ','urethra  ','ureter  ','bladder','seminal vesicle','','','a','','utme','2012',168,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(357,'In plants, which of the  following is required in minute quantities  for growth?','copper  ','potassium','phosphorous','sodium  ','','','a','','utme','2012',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:21'),(358,'Which of the following organisms is both parasitic and  autotrophic?  ','Sundew  ','Loranthus','Rhizopus  ','tapeworm','','','a','','utme','2012',176,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(359,'A function of the hydrochloric acid produced in the human stomach during digestion is to  ','neutralize the effect of bile   ','coagulate milk protein and emulsify fats  ','stop the action of ptyalin  ','break up food into smaller particles','','','c','','utme','2012',185,'Admin','0000-00-00 00:00:00','2020-07-19 12:29:50'),(360,'Which of the following is a polysaccharide?','Glucose  ','sucrose','Maltose   ','Cellulose','','','d','','utme','2012',189,'Admin','0000-00-00 00:00:00','2020-07-21 10:32:58'),(361,'In the kidney of mammals, the site of ultra filtration is the','urinferous tuble','Bowman capsule  ','loop of Henle  ','renal tuble','','','b','','utme','2012',164,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:26'),(362,'Which of the following  is involved1 in secondary  thickening in plants?','collenchyma  and  xylem cells  ','Vascular cambium and collenchyma’s cells  ','vascular cambium and cork cambium','Cork cambium and sclerenchyma','','','c','','utme','2012',182,'Admin','0000-00-00 00:00:00','2020-07-21 10:22:19'),(363,'An example of a fruit  that develops from a single carpel is','(a)okro  ','tomato','bean  ','orange','','','c','','utme','2012',157,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:28'),(364,'Plant  growth can be artificially stimulated by the addition of  ','gibberellin  ','kinin','abscisic acid  ','ethylene','','','a','','utme','2012',179,'Admin','0000-00-00 00:00:00','2020-07-21 10:51:58'),(365,'The autonomic nervous system consists of neurons that control the','voluntary  muscle','heart beat','tongue  ','hands','','','b','','utme','2012',183,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(366,'Plants of temperate origin can be grown in tropical areas in the vegetation zones of the','rain forest   ','Guinea savanna   ','Sudan savanna','montane forest','','','d','','utme','2012',189,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:30'),(367,'The water cycle is maintained mainly by   ','evaporation  of water in the environment  ','evaporation and condensation of water  in the environment  ','condensation of water in the environment  ','transpiration and respiration in plants','','','b','','utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:31'),(368,'Organisms living in an estuarine habitat are adapted to  ','withstand   wide fluctuations in temperature   ','survive only in water with low salinity   ','withstand wide fluctuations in salinity   ','feed only on phytoplankton and dead organic matter.','','','c','','utme','2012',172,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:32'),(369,'The presence of stilt roots, pneumatophores, sunken stomata and salt glands are adaptive features of plants found in the','tropical rainforest','mangrove swamps  ','grassland  ','montane forest','','','b','','utme','2012',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:33'),(370,'Which of the following animals an exist solely on the water they get from food and metabolic reactions?  ','Forest arboreal dwellers  ','Desert dwellers','forest ground dwellers','rainforest dwellers','','','b','','utme','2012',190,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:45'),(371,'The most likely first colonizers of a bare rock are  ','mosses  ','ferns','lichen  ','fungi','','','c','','utme','2012',180,'Admin','0000-00-00 00:00:00','2020-07-20 14:31:36'),(372,'The carrying capacity of a habitat is reached when the population growth begins to','increase slowly','increase exponentially','slow down','remain steady','','','d','','utme','2012',198,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(373,'The abiotic factors that  control human population include  ','disease and famine  ','space and rainfall  ','flooding and earthquake   ','temperature','','','a','','utme','2012',171,'Admin','0000-00-00 00:00:00','2020-07-21 10:24:08'),(374,'An indigenous method of renewing and maintaining  soil fertility is by','clearing farms a by burning','planting one crop type  ','adding inorganic fertilizers yearly   ','crop rotation and shifting cultivation','','','d','','utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(375,'The disease caused by water-brone pathogen include','gonrrhoea and poliomyelitis   ','typhoid and syphilis   ','tuberculosis and cholera','typhoid and cholera','','','d','','utme','2012',183,'Admin','0000-00-00 00:00:00','2020-07-21 10:36:45'),(376,'Which of the following is true in blood transfusion?','a person of blood group AB can donate blood only to another person of blood group AB','Persons of blood groups A and B can donate or receive blood from each other','A person of blood group AB can receive blood only from persons of blood group A or B  ','A person of blood group O can donate only to a person of blood group O.','','','a','','utme','2012',177,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(377,'A yellow maize is planted and all the fruits obtained are of yellow seeds. When they are cross bred, yellow seeds and white seeds are obtained in a ratio 3:1. The yellow seed is said to be  ','non heritable','sex linked','a recessive trait  ','a dominant trait','','','d','','utme','2012',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:53'),(378,'When a colour blind man marries a carrier woman. What is the probability of their offspring being colorblind?','25%','50%','75%','100%','','','c','','utme','2012',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:54'),(379,'The correct base pairing for DNA is','adenine _ thymine and guanine_ cytosine  ','adenine_ guanine and thymine_ cytosine  ','adenine_ cytosine and guanine_ thymine  ','adenine_ adenine  and cytosine_cytosine','','','a','','utme','2012',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:13:59'),(380,'The short thick beak in birds is an adaptation for','crushing seeds','sucking nectar  ','tearing flesh','straining mud','','','a','','utme','2012',204,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(381,'The basking of Agama lizards in the sun is to','chance the colour of their body  ','raise their body temperature to become active','fight to defend their territories','attract the female for courtship','','','b','','utme','2012',161,'Admin','0000-00-00 00:00:00','2020-07-14 06:48:10'),(382,'The significance of a very large number  of termites involved in nuptial swarming is to','provide birds with plenty of food','ensure their perpetuation despite predatory pressure  ','search for a favourable place to breed  ','ensure that every individual gets a mate.','','','c','','utme','2012',192,'Admin','0000-00-00 00:00:00','2020-07-14 02:25:41'),(383,'The use and disuse of body parts and the inheritance of acquired traits were used to explain  ','Darwin’s theory','Lamarck’s theory','genetic drift  ','gene flow','','','b','','utme','2012',161,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(384,'From his study of Galapagos finches, Darwin derived his theory of evolution from ',' comparative anatomy','comparative physiology',' fossil remains  ','comparative embryology.','','','a','','utme','2012',146,'Admin','0000-00-00 00:00:00','2020-07-14 02:19:58');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `chemistry` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `chemistry` VALUES (1,'25cm3 of a gas X contains Zmolecules at 150C and 75mmHg. How many molecules will 25cmm3 of another gas Y contain at the same temperature and pressure','2Y','2Z','Z','Y','','','c','','utme','2001',1232,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(2,'What mass of water is produced when 8.0g of hydriogen reacts with excess oxygen [H = 1, O = 16]','36.0g','8.0g','72.0g','16.0g','','','c','','utme','2001',1187,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:11'),(3,'A particle that contains 9 protons, 10 neutrons and 10electrons is a','Neghative ion','Positive ion','Neutral atom of a non metal','Neutral atom of a metal','','','a','','utme','2001',1154,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(4,'Cancerous growths are cured by exposure to','ɣ-rays',' β – rays',' ἀ – rays','X -rays','','','a','','utme','2001',1175,'Admin','0000-00-00 00:00:00','2020-07-21 09:47:02'),(5,'An oxide X02 has a vapour density of 32. What is the atomic mass of X [O = 16]','32','20','14','12','','','a','','utme','2001',1170,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(6,'Milikan’s contribution to the development of atomic theory is the determination of','Charge on electron','Positive rays','Charge to amss ratio','Cathode rays','','','c','','utme','2001',1122,'Admin','0000-00-00 00:00:00','2020-07-17 17:14:36'),(7,'Four elements W, X, Y, and Z have atomic numbers 2, 6, 16 and 20 respectively. Which of these elements is a metal','X','W','Z','Y','','','c','','utme','2001',1233,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(8,'An element X with relative atomic mass 16.2 contains two isotopes      X  with relative abundance of 90% and      X with relative abundance of 10%. The value of m is','16','18','12','14','','','b','','utme','2001',1209,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(9,'Which of the following statements is correct about the average kinetic energy of the molecules of a gas','It inctreasaes with increase in pressure','It increases at constant pressure','It increases with increase in temperature','It increases in volume','','','c','','utme','2001',1211,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(10,'The pollution from petroleum spillage in rivers and lakes can best be dispersed by','Pouring detergents','Passing of ships through the area','Pouring organic solvents','Evaporation','','','a','','utme','2001',1222,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(11,'Deliquenscent substances are used for','Cooling','Wetting','Melting','Drying','','','d','','utme','2001',1207,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:20'),(12,'Pure solvents are obtained by','Distillation','Condensation','Extraction','EvapopraTION','','','a','','utme','2001',1130,'Admin','0000-00-00 00:00:00','2020-07-17 19:30:20'),(13,'What is the decrease in volume of air when pyrogallol is shaken with 30.00cm3 of air','15.00cm3','6.00cm3','0.63cm3','0.06cm3','','','b','','utme','2001',1166,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(14,'Environmental pollution is worsened by the release from automobile exhausts of','Water vapour','Steam','Smoke','Heavy metals','','','c','','utme','2001',1178,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:39'),(15,'The chemiocal used for coagulation in water purification is','Aluminum tetraoxosulphate(VI)','Copper tetratoxosulphate (VI)','Sodium tetraoxosulphate(VI)','Calcium tetraoxosulphate (VI)','','','a','','utme','2001',1169,'Admin','0000-00-00 00:00:00','2020-07-17 19:27:40'),(16,'Phosphorous is stored under water to precvent it from','Dehydrating','Becoming inert','Smelling','Catching fire','','','d','','utme','2001',1098,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:31'),(17,'In which of the following reactuions does reduction take place','Fe2+ - e-   Fe3+','2O2-  → O2 + 4e-','Cr - 2e-  → Cr2+','2H+  +  2e-   →H2','','','d','','utme','2001',1176,'Admin','0000-00-00 00:00:00','2020-07-18 00:08:13'),(18,'P(g) + O(g)    ⇌ 3R(s)  +  S(g)   ΔH is negative which of the following will increase the yield of R','Using a larger closed vessel','Increasing the temperature','Removing some S','Adding a positive catalyst','','','c','','utme','2001',1186,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(19,'A metal M displaces zinc from zinc chloride solution. This shows that','M is more electronegative than zinc','Zinc is above hydrogen in the series','M is more electropositive than zinc','Electrons flow from zinc to M','','','c','','utme','2001',1234,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(20,'Which of the following best explains the increase in the rate of a chemical reaction as the temperature rises','The bonds in the reacting molecules are more readily broken','The molecules collisions become more violent','A lower proportion of the molecules has the necessary minimum energy to react','The collision frequency of the molecules increases','','','d','','utme','2001',1158,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(21,'What current in amperes will deposit 2.7g of aluminium in 2 hours [Al = 27, f = 96500 C mol-1]','32','8','4','16','','','c','','utme','2001',1162,'Admin','0000-00-00 00:00:00','2020-07-21 15:31:23'),(22,'Ethanoic acid is','Tribasic','Unionizeable','Monobasic','Dibasic','','','c','','utme','2001',1180,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(23,'C(s) + 2S (g)  → CS2 (g)      Δ H = +89kJ mol-1. The chemical equation above implies that','Each of carbon and sulphur has 89kJ of energy','Both carbon and sulphur contribute 89kJ of energy','89kJ of energy is released','89kJ is absorbed','','','d','','utme','2001',1136,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(24,' 2SO2(g) + O2(g) ⇌  2SO3(g)  The equilibrium constant for the reaction above is increased by  [ΔH = -189kJ mol -1]','Increasing the temperature of the system','Increasing the pressure of the system','The addition of a catalyst to the system','Increasing the surface area of the vessel','','','b','','utme','2001',1165,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:34'),(25,'3CU(s)  +  8HNO3(aq) →  3Cu(NO3)2(aq)  +  4H2O(I)  +  2NO(g)  In the equation above, copper is','An electron acceptor','A base','An oxidizing agent','A reducing agent','','','d','','utme','2001',1166,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(26,'When ΔH is negative, a reaction is said to be','Ionic','Reversible','Exothermic','Endothermic','','','c','','utme','2001',1196,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:36'),(27,'As the concentration of an electrolyte reduces, the conductivity','Reduces to zero','Decreases','Increases','Is unaffected','','','b','','utme','2001',1166,'Admin','0000-00-00 00:00:00','2020-07-19 22:25:38'),(28,'In which of the following reactions has the oxidation number of nitrogen increased','2NO(g)  +  Br2(l)  → 2NOBr(l)','2NO2(g)  +  O2(g)   → 2NO2(g)','FeSO4(aq)  +  NO(g) → Fe(NO)SO4(s)','2NO(g)  +  CI2(g) →  2NOCI(l)','','','b','','utme','2001',1085,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:32'),(29,'NH3(g)  +  HCI(g)  → NH4CI(s) The entropy change in the system is','Negative','Indeterminate','Positive','Zero','','','b','','utme','2001',1141,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(30,'Fermentation is the','Breaking down of carbohydrate to glucose','Conversion of sugar to alcohol in the presence of yeast','Breaking down of sugar to carbohydrate','Conversion of alcohol to sugar in the presence of yeast','','','b','','utme','2001',1164,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:29'),(31,'The general formula for the alkanals is','ROH','R2CO','RCOOR1','RCHO','','','d','','utme','2001',1183,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(32,'The main impurity in iron ore during the extraction of iron is','Silicon (IV) oxide','Carbon(IV) oxide','Calciumtrioxosilicate','Sulphur(II) oxide','','','a','','utme','2001',1167,'Admin','0000-00-00 00:00:00','2020-07-17 19:48:09'),(33,'During the vulcanization of rubber, sulphur is added to','Break down rubber polymer','Lengthen the chain of rubber','Bind rubber molecules together','Act as a catalyst','','','c','','utme','2001',1157,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(34,'Catalytic hydrogenation of benzene produces','Oil','Cyclohexane','Cycloexane','Margarine','','','c','','utme','2001',1230,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(35,'A trihydric alkanol is','glycerol','phenol','glycol','ethanol','','','a','','utme','2001',1130,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(36,'When chlorine is passed into water and the resulting solution exposed to sunlight, the product formed are','Chlorine gas and hydrogen','Oxygen and oxochlorate(l) acid','Hydrochloric acid and oxygen','','','','b','','utme','2001',1203,'Admin','0000-00-00 00:00:00','2020-07-17 17:57:34'),(37,'Proteins in acid solution undergo','Polymerization','Substitution','Fermentation','Hydrolysis','','','d','','utme','2001',1176,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(38,'A characteristic reaction of the compounds with the general formula CnH2n is','Esterification','Polymerization','Decarboxylation','Substitution','','','b','','utme','2001',1194,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:11'),(39,'The pair of organic compounds that are isomers is','Benzene and methylbenzene','Trichloromethane and Tetrachloromethane','Ethanol and propanone','But-1-ene and but-2-ene','','','d','','utme','2001',1135,'Admin','0000-00-00 00:00:00','2020-07-14 13:15:55'),(40,'A burning candle produces water and','Carbon(II)oxide','Carbon(IV) oxide','Oxygen','Hydrogen','','','d','','utme','2001',1186,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(41,'The gas that can best be collected by downward displacement of air is','Chlorine','Sulphur(IV)oxide','Ammonia','Carbon(IV)oxide','','','c','','utme','2001',1208,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:11'),(42,'Which of the following metals burns brick with a brick-red','Pb','Ca','Na','Ma','','','b','','utme','2001',1167,'Admin','0000-00-00 00:00:00','2020-07-20 09:41:18'),(43,'Which of the followinig respresents hybridization in ethyne?','Sp2','Sp2d','Sp3','sp','','','d','','utme','2001',1181,'Admin','0000-00-00 00:00:00','2020-07-17 19:30:20'),(44,'When sodium reacts with water, the resulting solution is','weakly acdic','neutral','acidic','alkaline','','','d','','utme','2001',1186,'Admin','0000-00-00 00:00:00','2020-07-21 09:47:02'),(45,'Which of the following gases contains the least number of atoms at s.t.p','4 moles of chlorine','3 moles of ozone','1 mole of butane','7 moles of argon','','','c','','utme','2002',1143,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:01'),(46,'A compound contains 31.91% potassium, 28.93% chlorine and the rest oxygen. What is the chemical formular of the compound','KCLO3','KCLO4','KCLO','KCLO2','','','a','','utme','2002',1109,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:02'),(47,'The formula CH2O for ethanoic acid is regarded as its','General formula','Structural formula','Molecular formula','Empirical formula','','','d','','utme','2002',1124,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(48,'A little quantity of Trichloromethane (b.pt.600C) was added to a large quantity of ethanol (b.pt.780C). the most probable boiling point of the resultant mixture is from','699C – 700C','820C – 840C','600C – 780C','700C – 744C','','','d','','utme','2002',1131,'Admin','0000-00-00 00:00:00','2020-07-17 19:27:40'),(49,'The chromatographic separation of ink is based on the ability of the components to','React with each other','React with the solvent','Dissolve in each other in the column','Move at different speeds in the column','','','d','','utme','2002',1146,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(50,'Steam changes the colour of anhydrous cobalt(II) chloride from','White to red','Blue to white','White to green','Blue to pink','','','d','','utme','2002',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:07'),(51,'Which of the following solutions containing only hydroxyl ions will liberate hydrogen gas when reacted with magnesium metal','1.0 x 10-2 mol dm-3','1.0 x 10-4 mol dm -3','1.0 x 10-5 mol dm-3','1.0 x 10-12 mol dm-3','','','d','','utme','2002',1113,'Admin','0000-00-00 00:00:00','2020-07-21 09:47:02'),(52,'The substance least considered as a source of environmental pollution is','Silicate minerals','Uranium','Lead compounds','Organophosphorous compounds','','','a','','utme','2002',1175,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:38'),(53,'The property which makes alcohol soluble in water is the','Hydrogen bonding','Covalent nature','Ionic character','Boiling point','','','c','','utme','2002',1167,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:10'),(54,'The furring of kettles is caused by the presence in water of','Calcium trioxocarbonate(IV)','Calcium tetraoxosulphate(VI)','CALCIUM HYDROXIDE','Calcium hydrofentrioxocarbonate(IV)','','','d','','utme','2002',1222,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:32'),(55,'Tetraoxosulphate(VI) acid burns the skin by','Heating','Hydration','Dehydration','Hydrolysis','','','c','','utme','2002',1171,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:30'),(56,'When a salt loses its water of crystallization to the atmosphere on exposure, the process is said to be','Deliquescence','Effervescence','Efflorescence','Fluorescence','','','c','','utme','2002',1189,'Admin','0000-00-00 00:00:00','2020-07-17 18:28:07'),(57,'Three drops of a 1.0 mol dm-3 solution of Na OH are added to 20cm3 of a solution of pH8.4. the pH of the resulting solution will be','Greater than 8.4','Unaltered','Close to that of pure water','Less than 8.4','','','a','','utme','2002',1141,'Admin','0000-00-00 00:00:00','2020-07-17 18:02:48'),(58,'The solubility of a salt of molar mass 101g at 200C is 0.34mol dm-3. If 3.40g of the salt is dissolved completely in 250cm3 of water in a beaker, the resulting solution is','Unsaturated','A suspension','Saturated','Supersaturated','','','a','','utme','2002',1122,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(59,'25cm3 of a 0.2mol dm-3 solution of Na2CO3 requires 20cm3 of  solution of HCl for neutralization. The concentration of the solution is','0.6 mol dm-3','0.5 mol dm-3','0.4 mol dm-3','0.2 mol dm-3','','','b','','utme','2002',1147,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:17'),(60,'which of the following chlorides would exhibit the least ionic character','AlCl3','CaCl2','MgCi2','LiCl','','','a','','utme','2002',1164,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(61,'If 0.75 mole of cyclopropane and 0.66 mole of oxygen are mixed in a vessel with a total pressure of 0.7 atmosphere. What is the partial pressure of oxygen in the mixture','0.55 atmosphere','0.44 atmosphere','0.33 atmosphere','0.22 atmosphere','','','c','','utme','2002',1144,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(62,'The processes which return carbon(IV) oxide to the atmosphere include','Photosynthesis, decay and respiration','Photosynthesis, respiration and transpiration','Respiration, decay and combustion','Ozone, depletion, combustion and decay','','','c','','utme','2002',1160,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:10'),(63,'Which of the following statements is true of a proton.','The total mass of the protons in a particular nucleus always half the nuclear mass','The mass of a proton is 1840 times the mass of an electron','The mass proton is 1.0008g','The mass of a proton is one-twelfth the molar mass of carbon','','','b','','utme','2002',1121,'Admin','0000-00-00 00:00:00','2020-07-19 11:45:46'),(64,'A gas X diffuses twice as fast as gas Y under the same conditions. If the relative molecular mass of X is 28. Calculate the relative molecular mass of Y','120','14','56','112','','','d','','utme','2002',1140,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(65,'A fixed mass of gas has a  volume of 92cm3 at 30C. What will be be its volume at 180C if the pressure remains constant','15.3cm3','87.3cm3','97.0cm3','552.0cm3','','','c','','utme','2002',1119,'Admin','0000-00-00 00:00:00','2020-07-17 18:52:53'),(66,'The postulate of Dalton’s atomic theory which still holds is that','Particles of different elements combine in a simple whole number ratio','Atoms can neither be created nor destroyed','The particles of the same element are exactly alike','All elements are made of small indivisible particles','','','a','','utme','2002',1136,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:10'),(67,'Ordinary glass is manufactured from silica, Ca CO3 and','K2CO3','NaHCO3','Na2CO3','K2SO4','','','c','','utme','2002',1150,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(68,'A rock sample was added to cold dilute HNMO3. The gas evolved was passed into a solution of acidified K2Cr2O7 and the solution turned green. The rock sample contains','NO3-','Cl-','SO42-','SO32-','','','d','','utme','2002',1108,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:31'),(69,'Hydrogen is readily released when dilute hydrochloric acid reacts with','Au','Cu','Na','Ag','','','c','','utme','2002',1108,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(70,'The most important use of hydrogen is in the','Hydrogenation of oils','Manufacture of methyl alcohol','Manufacture of ammonia','Manufacture of ethyl alcohol','','','c','','utme','2002',1164,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(71,'Which of the following gives a precipitate when treated with NaOH solution','Na2CO3','CH3COONa','NH4Cl','AlCl3','','','d','','utme','2002',1204,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(72,'The intermediate product formed when ethanol is progressively oxidized to ethanoic acid with potassium heptaoxodichromate(VI) is','Ethanol','Methanol','Butanal','Propanal','','','a','','utme','2002',1137,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:30'),(73,'The gas that gives brown colouration in brown ring test','Co2','NO2','NO','CO','','','b','','utme','2002',1070,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(74,'The boiling of fat and aqueous caustic soda is referred as','Saponification','Esterification','Acidification','Hydrolysis','','','a','','utme','2002',1171,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(75,'What volume of oxygen is produced from the decomposition of 2 moles of KClO3 at s.t.p   [Molar volume of a gas at s.t.p = 22.4 dm3]','22.4 dm3','33.6 dm3','44.8 dm3','67.2 dm3','','','d','','utme','2003',1083,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(76,'Which of the following is a physical change','Burning kerosene','Freezing ice-cream','Exposing white phosphorus to air','Dissolving calcium in water','','','b','','utme','2003',1160,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(77,'What is the percentage by mass of oxygen in Al2(SO4)3.2H2O','14.29%','25.39%','50.79%','59.25%','','','d','','utme','2003',1131,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(78,'The filter in a cigarette reduces the nicotine content by','Burning','Adsorption','Evaporation','Absorption','','','b','','utme','2003',1138,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:36'),(79,'3Cu  +  pHNO3  → 3Cu(NO3)2  +  4H2O  + xNO   In the equation above, the values of p and x respectively are','1 and 3','2 and 3','6 and 2','8 and 2','','','d','','utme','2003',1151,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(80,'Neutral atoms of neon with atomic number 10 have the same number of electrons as','O2+','Ca2+','K+','Mg2+','','','d','','utme','2003',1115,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:38'),(81,'The noble gases owe their inactivity to','Octet configuration','Cyclic shape','Hexagonal shape','Obtuse configuration','','','a','','utme','2003',1158,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:39'),(82,'According to the kinetic theory, an increase in temperature causes the kinetic energy of particles to','Decrease','Increase','Remain constant','Be zero','','','b','','utme','2003',1124,'Admin','0000-00-00 00:00:00','2020-07-19 23:35:13'),(83,' I.  H = 1s1\\nII. O = 1s22s22p4\\nIII. N = 1s22s22p3\\nIV. Zn = 1s22s22p63s23p64s23d10\\nFrom the above, which of the following pairs is likely to be paramagnetic?\\n','I and II','I and  III','I    and IV','III  and IV','','','a','','utme','2003',1138,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(84,'A gas exerts pressure on its container because','Some of its molecules are moving faster than others','Of the collision of the molecules with each other','Of the mass of the molecules of gas','The molecules of a gas collide with the walls of the container','','','d','','utme','2003',1130,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:42'),(85,'When cathode rays are detected onto the electrode of an electrometer, the instrument becomes','Negatively charged','Positively charged','Neutral','Bipolar','','','a','','utme','2003',1162,'Admin','0000-00-00 00:00:00','2020-07-21 09:47:02'),(86,'The weakest attractive force that can be observed between two molecules is','Ionic','Covalent','Coordinate covalent','Van der Waals','','','d','','utme','2003',1158,'Admin','0000-00-00 00:00:00','2020-07-16 10:41:33'),(87,'A consequence of global warming is','Air pollution','Water pollution','Increased humidity','Flooding','','','d','','utme','2003',1152,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(88,'Which of the following ions is acidic','K+','NO-3','S2-','H3O+','','','d','','utme','2003',1184,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:38'),(89,'The structural component that makes detergent dissolve more quickly in water than soap is','–SO3 –Na+','–COO-Na+','–SO4- Na+','–COO-K+','','','a','','utme','2003',1157,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:31'),(90,'A liquid that will dissolve fast is','Hydrochloric acid','Calcium hydroxide','Kerosene','Water','','','c','','utme','2003',1123,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:47'),(91,'What mass of K2CrO4 is required to prepare 250cm3 of 0.020 mol dm-3 solution   [K2CrO4 = 194.2g mol-1]','0.97g','9.70g','19.42g','97.10g','','','a','','utme','2003',1187,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(92,'Farmlands affected by crude –oil spillage can be decontaminated by','Adding acidic solutions','Using aerobic bacteria','Pouring water on the affected area','Burning off the oil from the area','','','b','','utme','2003',1169,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(93,'When 10g of sodium hydroxide is dissolved in 1000cm3 of water, the solution formed is approximately   [Na = 23, H = 1, O = 16]','0.01 mol dm-3','0.10 mol dm-3','0.25 mol dm-3','0.50 mol dm-3','','','c','','utme','2003',1157,'Admin','0000-00-00 00:00:00','2020-07-14 13:16:50'),(94,'A charge in the temperature of a saturated solution disturbs the equilibrium between the','Dissolved solute and the solvent','Solvent and the undissolved solute','Dissolved solute and the undissolved solute','Dissolved solute and the solution','','','c','','utme','2003',1158,'Admin','0000-00-00 00:00:00','2020-07-19 11:45:46'),(95,'If an equilibrium reaction has   H>0, the reaction will proceed favourably in the forward direction at','High temperature','Any temperature','Low temperature','Minimum temperature','','','a','','utme','2003',1113,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:30'),(96,'The commonest feature of the reactions at the anode is that','Electrons are consumed','Oxidation is involved','Ions are reduced','Electrode dissolves','','','b','','utme','2003',1116,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:11'),(97,'Which of the following will change when a catalyst is added to a chemical reaction','The activation energy','The potential energy of the reactants','The heat of reaction','The potential energy of the products','','','a','','utme','2003',1098,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(98,'If Y is an oxidizing agent that reacts with a reducing agent, Z, which of the following is correct','Y increases in oxidation number','Y becomes reduced','Z loses protons','Z gains protons','','','b','','utme','2003',1177,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(99,'When at equilibrium, which of the reactions below will shift to the right if the pressure is increased and the temperature is kept constant',' 2SO3(g)  ⇌  2SO2(g)  +  O2(g)',' 2CO2(g)  ⇌ 2CO(g)  +  O2(g)',' 2H2(g)  +  O2(g) ⇌  2H2O(g)',' 2NO(g)   ⇌ N2(g)  +  O2(g)','','','c','','utme','2003',1117,'Admin','0000-00-00 00:00:00','2020-07-19 12:18:37'),(100,'In the electrolysis of a concentrated solution of sodium chloride using inert electrodes, which of the following ions are discharged at the cathode and anode respectively','Na+ and Cl-','Na+ and OH-','H+ and OH-','H+ and Cl-','','','d','','utme','2003',1161,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:06'),(101,' CO(g) + H2O(g) ⇌  CO2(g)  +  H2(g)\\nFrom the reaction above, calculate the standard heat change if the standard enthalpies of formation of CO2 (g), H2O (g) and CO (g) in kJ mol-1 are -394, -242 and -110 respectively.\\n','-262 kJ  mol-1','-42kJ mol-1','+42 kJ mol-1','+262 kJ mol-1','','','b','','utme','2003',1119,'Admin','0000-00-00 00:00:00','2020-07-17 19:39:47'),(102,'When sugar is dissolved in tea, the reaction is always accompanied by','Positive entropy change','Negative entropy change','No entropy change','A minimum entropy change','','','a','','utme','2003',1095,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:16'),(103,'Which of the following is an electrolyte','Alcohol','Sodium acetate solution','Solid potassium hydroxide','Mercury','','','b','','utme','2003',1186,'Admin','0000-00-00 00:00:00','2020-07-21 06:34:02'),(104,'Chlorine gas is prepared in the laboratory by','Adding concentrated hydrochloric acid to solid manganese (IV) oxide','Adding concentrated tetraoxosulphate (VI) acid to solid sodium chloride','Dropping concentrated hydrochloric acid onto potassium tetraoxomanganate (VII) crystals','Oxidizing concentrated hydrochloric acid using potassium heptaoxodichromate (VI) crystals','','','a','','utme','2003',1153,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(105,'Metals of the first transition series have special proper ties which are different from those of groups I and II elements because they have partially filled','s  orbitals','p orbitals','d orbitals','f orbitals','','','c','','utme','2003',1169,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(106,'Hydrogen can be displaced form a hot alkaline solution by','Fe','Cu','Ca','Sn','','','d','','utme','2003',1113,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:29'),(107,'Which of the following statements is true of sulphur (IV) oxide','It forms Tetraoxosulphate (VI) acid with water','It is an odourless gas','It is an acid anhydride','It forms white precipitate with acidified barium chloride','','','c','','utme','2003',1195,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(108,'The salt that will form a precipitate soluble in excess ammonia solution is','Ca(NO3)2','Cu(NO3)2','Mg(NO3)2','Al(NO3)3','','','b','','utme','2003',1089,'Admin','0000-00-00 00:00:00','2020-07-18 00:08:13'),(109,'The metal that liberates hydrogen from cold water in bubbles only is','Na','K','Ca','Al','','','c','','utme','2003',1115,'Admin','0000-00-00 00:00:00','2020-07-18 16:45:47'),(110,'Chlorine gas turns a damp starch-iodide paper','Pink','Colourless','Red','Dark blue','','','d','','utme','2003',1140,'Admin','0000-00-00 00:00:00','2020-07-19 11:45:46'),(111,'The modern process of manufacturing steel from iron is by','Treatment with acids','Oxidation','Blast reduction','Treatment with alkalis','','','c','','utme','2003',1097,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:33'),(112,'Ethene reacts with hydrogen bromide to give','CH2Br2','CH3CH2Br','C2H2Br2','CHBr3','','','b','','utme','2003',1083,'Admin','0000-00-00 00:00:00','2020-07-17 17:07:59'),(113,'Carbohydrates are compounds containing carbon, hydrogen and oxygen in the ratio','3:01:01','2:01:01','1:02:01','1:01:01','','','c','','utme','2003',1110,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(114,'How many isomers does pentane have','6','5','4','3','','','d','','utme','2003',1166,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:09'),(115,'The leachate of a certain plant ash is used in local soap making because it contains','Sodium chloride and potassium hydroxide','Sodium hydroxide','Potassium hydroxide','Soluble carbonates and hydrogen carbonates','','','c','','utme','2003',1165,'Admin','0000-00-00 00:00:00','2020-07-17 19:30:20'),(116,'The formula for ethyl butanoate is','C3H7COOC2H5','C2H5COOC3H7','C4H9COOC2H5','C2H5COOC4H9','','','a','','utme','2003',1137,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:38'),(117,'The type of reaction that is peculiar to benzene is','Addition','Hydrolysis','Polymerization','Substitution','','','d','','utme','2003',1114,'Admin','0000-00-00 00:00:00','2020-07-17 19:08:05'),(118,'Ethanol reacts with excess acidified K2Cr2O7 to produce','Ethanoic acid','Ethanol','Ethyl ethanoate','Ethanoic acid','','','d','','utme','2003',1108,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(119,'A compound contains 40.0% carbon, 6.7% hydrogen and 53.3% oxygen. If the molar mass of the compound is 180, find the molecular formula  [H = 1, C = 12, O = 16]','CH2O','C3H6O3','C6H12O6','C6H6O3','','','c','','utme','2003',1138,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(120,'The process by which atoms are rearranged into different molecular structures in the petroleum refining process is referred to as','Catalytic cracking','Hydrocracking','Polymerization','Reforming','','','d','','utme','2003',1156,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(121,'Which of the following is found in cotton','Starch','Cellulose','fat','oil','','','b','','utme','2003',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:43'),(122,'the principal constituent of natural gas is methane','ethane','propane','butane','butane','','','a','','utme','2003',1095,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(123,'When a solid substance disappears completely as a gas on heating, the substance is said to have under gone','Evaporation','Distillation','Crystallization','Sublimation','','','d','','utme','2004',1218,'Admin','0000-00-00 00:00:00','2020-07-21 00:44:38'),(124,'A chemical reaction is always associated with','An increase in the composition of one of the substances','A change in the volume of the reactants','A change in the nature of the reactants','The formation of new substances','','','d','','utme','2004',1123,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:46'),(125,'If a solution contains 4.8g of Tetraoxosulphate (VI) acid. Calculate the amount of copper(II) oxide that will react with it  [CU = 64, O = 16, S = 32, H = 1]','0.8g','4.0g','40.0g','80.0g','','','b','','utme','2004',1127,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(126,'What volume of gas is evolved at s.t.p. if 2g of calcium trioxocarbonate(IV) is added to a solution of hydrochloric acid    [Ca = 40, C = 12, O = 16, CI = 35.5, H = 1, Molar volume of a gas at s.t.p = 22.4dm3]','112cm3','224cm3','448cm3','224cm3','','','c','','utme','2004',1135,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(127,'According to Charles  law, the volume of a gas becomes zero at','00C','-1000C','-2730C','-3730C','','','c','','utme','2004',1104,'Admin','0000-00-00 00:00:00','2020-07-20 03:34:20'),(128,'It is difficult to achieve an orderly arrangement of the molecules of a gas because they','Have no definite shape','Have little force attraction between them','Can collide with one another in the container','Are too small in size','','','b','','utme','2004',1152,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(129,'A given volume of methane diffuses in 20s. how long will it take the same volume of sulphur(IV) oxide to diffuse under the same conditions    [C = 12, H = 1, S = 32, O = 16]','5s','20s','40s','60s','','','c','','utme','2004',1145,'Admin','0000-00-00 00:00:00','2020-07-17 17:06:46'),(130,'An electron can be added to a halogen atom to form a halide ion with','2 valence electrons','3 valence electrons','7 valence electrons','Valence electrons','','','d','','utme','2004',1126,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:52'),(131,'The shape of the s-orbital is','Spherical','Elliptical','Spiral','Circular','','','a','','utme','2004',1202,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(132,'The property of chlorine which causes hydrogen chloride to be more ionic than the chlorine molecule is its','Electrovalency','Electron affinity','Electropositivity','Electronegativity','','','d','','utme','2004',1111,'Admin','0000-00-00 00:00:00','2020-07-14 13:17:54'),(133,'Chlorine consisting of two isotopes of mass numbers 35 and 37 in the ratio 3:1 has an atomic mass of 35.5. Calculate the relative abundance of the isotope of mass number 37.','20','25','60','75','','','b','','utme','2004',1125,'Admin','0000-00-00 00:00:00','2020-07-19 11:45:46'),(134,'Which of the following mixtures of gases is likely to burn in flame','Neon and hydrogen','Nitrogen and helium','Helium and neon','Neon and nitrogen','','','a','','utme','2004',1117,'Admin','0000-00-00 00:00:00','2020-07-21 06:34:02'),(135,'Hardness of water is caused by the presence of the ions of','Magnesium and silver','Calcium and magnesium','Sodium and potassium','Calcium and sodium','','','b','','utme','2004',1192,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(136,'Pollution of underground water by metal ions is very likely in a soil that has high','Acidity','Alkalinity','Chloride content','Nitrate content','','','a','','utme','2004',1134,'Admin','0000-00-00 00:00:00','2020-07-16 23:47:17'),(137,'A carcinogenic substance is','Asbestos dust','Sawdust','Nitrogen(II) oxide','Carbon (II) oxide','','','a','','utme','2004',1071,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(138,'The solubility in mol dm-3 of 20g of CuSO4 dissolved in 100g of water at 1800C is  [Cu = 64, S = 32, O = 16]','0.13','0.25','1.25','2','','','c','','utme','2004',1117,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(139,'Calcium Tetraoxosulphate(VI) dissolves in water only sparingly to form a','Solution','Suspension','Precipitate','Colloid','','','d','','utme','2004',1116,'Admin','0000-00-00 00:00:00','2020-07-17 19:27:40'),(140,'Which of these compounds is a normal salt','NaHS','NaSO4','NaHCO3','Na2CO3','','','d','','utme','2004',1082,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:30'),(141,'What volume of 0.5mol dm-3 H2SO4 will exactly neutralize 20cm3 of 0.1 mol dm-3 NaOH solution','2.0cm3','5.0cm3','6.8cm3','8.3cm3','','','a','','utme','2004',1185,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:04'),(142,'The oxidation state of chlorine in HClO4 is','-5','-1','1','7','','','d','','utme','2004',1163,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(143,'ZnO(s) + CO (g) → Zn(s) + CO2 (g). ','Decomposed','Displaced','Oxidized','Reduced','','','d','','utme','2004',1131,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:39'),(144,'Which of the following acts as both a reducing and an oxidizing agent','H2','SO2','H2S','CO2','','','b','','utme','2004',1155,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(145,'In the electrolysis of brine, the anode is','Platinum','Copper','Zinc','Carbon','','','d','','utme','2004',1070,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:09'),(146,'The mass of silver deposited when a current of 10A is passed through a solution of silver salt for 4830s is    [Ag = 108, F = 96500 Cmol-1]','108.0g','54.0g','27.0g','13.5g','','','b','','utme','2004',1164,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(147,' 2CO(g)  +  O2(g) →  2CO2(g)\\nGiven that   Δ H [CO] is 110.4kJ mol-1 and Δ H [CO2] is -393.0kJ mol-1, the energy change for the reaction above is\\n','-503.7kJ','-282.6kJ','+282.6kJ','+503.7kJ','','','N','','utme','2004',1101,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(148,'Which of the following hydrogen halides has the highest entropy value','HF','HCl','HBr','Hl','','','a','','utme','2004',1057,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:11'),(149,' N2O4(g)    ⇌  2NO2(g)','A constant volume','An increase in pressure','A decrease in pressure',' A decrease in volume','','','c','','utme','2004',1119,'Admin','0000-00-00 00:00:00','2020-07-14 17:18:19'),(150,'Which of the following shows little or no net reaction when the volume of the system is decreased',' H2(g)  +  l2(g)  ⇌  2Hl(g)','2NO2(g)  ⇌  N2O4(g)',' PCl5(g)   ⇌ PCl3(g)  + Cl2(g)',' 203(g)   ⇌  3O2(g)','','','a','','utme','2004',1153,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(151,'The allotrope of carbon used in the decolourization of sugar is','Graphite','Soot','Charcoal','Lampblack','','','c','','utme','2004',1114,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:31'),(152,'Which of the following gases can be collected by the method of downward delivery','Chlorine','Oxygen','Ammonia','Hydrogen','','','a','','utme','2004',1149,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(153,'Which steam is passed over red-hot carbon, the substances produced are','Hydrogen and trioxocarbonate(IV) acid','Hydrogen, oxygen and carbon(IV) oxide','Hydrogen and carbon (II) oxide','Hydrogen and carbon (IV) oxide','','','c','','utme','2004',1175,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:32'),(154,' sulphur (IV) oxide bleaches by','Reduction','Oxidation','Hydration','Absorption','','','a','','utme','2004',1161,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(155,'Carbon is tetravalent because','The electrons in both the 2s and 2p orbitals are equivalent','The electrons in all the orbitals of carbon are equivalent','The 2s and 2p atomic orbitals hybridize','All the atomic orbitals of carbon hybridize','','','c','','utme','2004',1131,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:18'),(156,'Aluminium hydroxide is used in the dyeing industry as a','Salt','Dye','Mordant','Dispersant','','','c','','utme','2004',1077,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:39'),(157,'Alloys are best prepared by','Electroplating','Arc-welding','Reducing a mixture of their metallic oxides','Cooling a molten mixture of the metals','','','d','','utme','2004',1171,'Admin','0000-00-00 00:00:00','2020-07-18 00:08:13'),(158,'Transition metals posses variable oxidation states because they have','Electrons in the d orbitals','Electrons in the s orbitals','A variable number of electrons in the p orbitals','Partially filled p orbitals','','','d','','utme','2004',1164,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(159,'Sodium metal is always kept under oil because it','Readily reacts with water','Is reduced by atmospheric nitrogen','Reacts vigorously on exposure to air','Reacts with oxygen and carbon(IV) oxide','','','c','','utme','2004',1138,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(160,'Oxyacetylene flame is used for iron-welding because it',' makes the iron metal solidity very quickly','Combines with oxygen to give a pop sound','Evolves a lot of heat when burnt','Dissociates to produce carbon (IV) oxide and oxygen','','','c','','utme','2004',1093,'Admin','0000-00-00 00:00:00','2020-07-20 11:02:30'),(161,'The alkyl group can be represented by the general formula','CnH2n+1','CnH2n','CnH2n+2','CnH2n-2','','','a','','utme','2004',1073,'Admin','0000-00-00 00:00:00','2020-07-21 06:34:02'),(162,'An isomer of C5H12 is','Butane','2-methylbutane','2-methylprpane','2-ethylbutane','','','b','','utme','2004',1176,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:32'),(163,'A characteristic of the alkane family is','Addition reaction','Elimination reaction','Substitution reaction','Neutralization reaction','','','c','','utme','2004',1083,'Admin','0000-00-00 00:00:00','2020-07-19 22:25:38'),(164,'Which of these reagents can confirm the presence of a triple bond','Bromine water','Acidified KMnO4 ','Copper (I) chloride','Bromine gas','','','c','','utme','2004',1116,'Admin','0000-00-00 00:00:00','2020-07-17 18:46:17'),(165,'Vulcanization involves the removal of','A monomer','The single bond','The double bond','A polymer','','','c','','utme','2004',1105,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(166,'The reaction above is','Carboxylation','Decarboxylation','Acidification','Esterification','','','b','','utme','2004',1120,'Admin','0000-00-00 00:00:00','2020-07-14 13:18:35'),(167,' Alkanol + Alkanoic acid ⇌  Ester + water.\\nThe reverse reaction of the equation above is known as\\n','Hydrolysis','Saponification','Hydration','Fermentation','','','a','','utme','2004',1077,'Admin','0000-00-00 00:00:00','2020-07-15 03:58:25'),(168,'In the production of soap, concentrated sodium chloride solution is added to','Increase the solubility of the soap','Decrease the solubility of the soap','Saponify the soap','Emulsify the soap','','','b','','utme','2004',1075,'Admin','0000-00-00 00:00:00','2020-07-17 16:43:52'),(169,'The gas that can be dried using concentrated Tetraoxosulphate (VI) acid is','Ammonia','Hydrogen bromide','Sulphur (IV) oxide','Hydrogen sulphide','','','c','','utme','2005',1284,'Admin','0000-00-00 00:00:00','2020-07-21 09:47:02'),(170,'The property used in the industrial preparation of nitrogen and oxygen from air is','Rate of diffusion','Solubility','Density','Boiling point','','','d','','utme','2005',1195,'Admin','0000-00-00 00:00:00','2020-07-20 11:02:30'),(171,'A dense white fume is formed when ammonia gas reacts with','H2(g)','O2(g)','HCI(g)','Cl2(g)','','','c','','utme','2005',1156,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:31'),(172,'In a flame test for calcium, the flame appears','Blue when viewed through a blue glass','Green when viewed through a blue glass','Orange-red when viewed through a blue glass','Brick-red when viewed through a blue glass','','','c','','utme','2005',1225,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(173,'Which of the following alloys contain iron','Steel and permalloy','Duralumlin and steel','nd Soft Solder a Duralumlin ','Brass and bronze','','','a','','utme','2005',1149,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(174,'To obtain pure carbon(II) oxide from its mixture with carbon (IV)oxide, the mixture should be','Bubbled through concentrated Tetraoxosulphate(VI) acid','Bubbled through sodium hydroxide','Passed over heated copper(II) oxide','Bubbled through water','','','b','','utme','2005',1279,'Admin','0000-00-00 00:00:00','2020-07-18 16:50:10'),(175,'N2(g)  +  3H2(g)  ⇌   2NH2(g)   Δ H = - 90kJ  In the equation above, the yield of ammonia can be decreased by','Adding a catalyst','Removing ammonia','Increasing the pressure','Increasing the temperature','','','d','','utme','2005',1164,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(176,'Metalloids are also referred to as','Metals','Semi-metals','Colloids','Non-metals','','','b','','utme','2005',1132,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(177,'The ores that can be concentrated by flotation are','Nitride ores','Chloride ores','Oxide ores','Sulphide ores','','','d','','utme','2005',1147,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:30'),(178,'The most suitable metal that can be used as a lightening  conductor is','Aluminium','Iron','Copper','Silver','','','d','','utme','2005',1230,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(179,'NH4CI(g) ⇌   NH3(g)  +  HCI(g)   The reaction above can only attain equilibrium if','It is in a closed system','It is in an open system','One of the products is removed','A gaseous reactant is added','','','a','','utme','2005',1123,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(180,'When pure aluminum metal is heated to red hot in the presence of nitrogen gas, the compound formed is','AI2N','AIN','AI2N2','AI2N3','','','b','','utme','2005',1231,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(181,'The most abundant element on the earth’s crust is','Oxygen','Fluorine','hydrogen','nitrogen','','','a','','utme','2005',1220,'Admin','0000-00-00 00:00:00','2020-07-19 12:17:56'),(182,'The pressure of 100cm3 of oxygen at 350C is 750mmHg. What will be the volume of the gas if the pressure is reduced to 100mmHg  without changing the temperature','850cm3','750cm3','650cm3','580cm3','','','b','','utme','2005',1216,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:09'),(183,'What is the valence shell electron configuration of the element with atomic number 17','1s22s22p63s23p5','1s22s22p63s23p4','3s23p5','2s22p6','','','a','','utme','2005',1175,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(184,'A heterogeneous mixture can be defined as any mixture','Whose composition is uniform','Whose composition is not uniform','Formed by solids and liquids','Of a solute and a solvent','','','b','','utme','2005',1130,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(185,'The density of a certain gas is 1.98g dm-3 at s.t.p. What is the molecular mass of the gas   [Molar volume of a gas at s.t.p = 22.4dm-3]','26.0g','31.0g','54.0g','44.0g','','','d','','utme','2005',1167,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(186,'Treatment of cancer   II. Detection of leakages in water mains   III. Detection of the ages of ancient tools    Which combination of the above refers to the uses of radioactive isotopes?','I, II and III','I, II, III and IV','II and III','I and II','','','a','','utme','2005',1225,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(187,'An element will readily form an electrovalent compound if its electron configuration is','2,8,8','2,,8,4','2,8,5','2,8,1','','','d','','utme','2005',1195,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:09'),(188,'How many moles of limestone will be required to produce 5.6g of CaO','0.20 mol','1, 12mol','0.10 mol','0.56 mol','','','c','','utme','2005',1224,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(189,'The shape of the hydrocarbon compound CH4 is','Square planar','Tetrahedral','Planar','Linear','','','b','','utme','2005',1165,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:29'),(190,'Which of these properties gives a solid its definite shape','Weak intermolecular attraction','High boiling point','High melting point','Strong intermolecular attraction','','','d','','utme','2005',1199,'Admin','0000-00-00 00:00:00','2020-07-19 12:18:37'),(191,'The component of an atom that contributes least to its mass is the','Nucleus','Neutron','Electron','Proton','','','c','','utme','2005',1195,'Admin','0000-00-00 00:00:00','2020-07-17 18:41:55'),(192,'Sugar is separated from its impurities by','Distillation','Evaporation','Precipitation','Crystallization','','','d','','utme','2005',1214,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(193,'Equal moles of ethyne and hydrogen iodide react to give','CH2 = CH2','CH2 = CHI','CH2 – CHI','CH2 – CI3','','','b','','utme','2005',1250,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:31'),(194,'How many hydrogen atoms does a single ring cycloalkane have less than the corresponding open- chain alkane','Three','One','Four','Two','','','d','','utme','2005',1230,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(195,'The decolourization of the purple colour of a tetraoxomanganate (VII) ion is a test for','Alkanals','Alkanes','Alkenes','Alkanols','','','c','','utme','2005',1186,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(196,'In the purification of impure samples of ethyl ethanoate synthesized by esterification, concentrated sodium trioxocarbonate(IV) solution is used to remove','Water','Acidic impurities','Basic impurities','Ethoxyethane','','','b','','utme','2005',1231,'Admin','0000-00-00 00:00:00','2020-07-19 11:45:46'),(197,'A substance that is used as a ripening agent for fruits is','Propene','Methane','Ethene','Butane','','','c','','utme','2005',1128,'Admin','0000-00-00 00:00:00','2020-07-19 12:18:37'),(198,'Which of the following are structural isomers','Propanoic acid and propan-1, 2-diol','Ethanoic acid and propanoic acid','Ethan-1, 2 –diol and ethanoic acid','Propanal and propanone','','','d','','utme','2005',1190,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(199,'The enzyme responsible for converting sucrose into two simple isomeric sugars is','Invertase','Amylase','Lactose','Maltase','','','a','','utme','2005',1210,'Admin','0000-00-00 00:00:00','2020-07-19 12:17:20'),(200,'Natural water collected from rivers and ponds contains oxygen, carbon(IV) oxide and','Chlorine','Hydrogen','Sulphur(IV) oxide','Nitrogen','','','c','','utme','2005',1164,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:39'),(201,'Kerosene is commonly used to remove the red colour stain of palm oil from clothes because it','Helps to spread the oil over a larger surface area','Makes the oil evaporate easily by dissolving it','Helps to dilute the oil and reduce its colour','Reacts with the oil to form an odourless compound','','','b','','utme','2005',1191,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(202,'25cm3 of a mixture of noble gases was obtained from air after the removal of other constituents. What was the original volume of air','125cm3','1250cm3','2500cm3','80cm3','','','c','','utme','2005',1176,'Admin','0000-00-00 00:00:00','2020-07-18 16:50:10'),(203,'The solubility curve shows the variation of solute concentration with','Volume','Vapour density','Pressure','Temperature','','','d','','utme','2005',1172,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:30'),(204,'The air around smelting industries is likely to contain','CO2, SO3 and H2','SO2N2 and CO2','H2, SO2 and CO2','H2S, CO and N2','','','b','','utme','2005',1242,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:30'),(205,'When water boilers are used for a long period of time, the solid substances left behind as scale are','Magnesium trioxosilicate (IV) and calcium Tetraoxosulphate(VI)','Magnesium trioxosilicate(IV) and rust','Clay and magnesium trioxosilicate (IV)','clay and rust','','','','','utme','2005',1172,'Admin','0000-00-00 00:00:00','2020-07-20 11:02:30'),(206,'The gas that is the most dangerous pollutant to humans is','Carbon(IV) oxide','Nitrogen (II)oxide','Hydrogen sulphide','Sulphur(IV) oxide','','','c','','utme','2005',1269,'Admin','0000-00-00 00:00:00','2020-07-17 11:53:27'),(207,'In which of the following reactions can the oxidation number of nitrogen be said to have increased','FeSO4(aq)  +  NO(g) →   Fe(NO)SO4(S)','2NO(g)  +  O2(g) → 2NO2(g)','NO(g)  +  CI2(g)  → NOCI2(l)','NO(g)  +  Br2(l)   → NOBr2(l)','','','b','','utme','2005',1208,'Admin','0000-00-00 00:00:00','2020-07-19 23:35:13'),(208,'A concentrated solution containing H+, Cu2+, OH- and Cl- was electrolyzed using platinum electrodes. The ion that will be discharged at the cathode is','OH-','Cl-','Cu2+','H+','','','c','','utme','2005',1140,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(209,'Phenolphthalein in acidic solution is','Colourless','Yellow','Red','Orange','','','a','','utme','2005',1146,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(210,'When sulphur (IV) oxide is passed into a solution of sodium hydroxide for a long time. It eventually produces a solution of','Na2SO4','NaHSO4','Na2SO3','NaHSO3','','','d','','utme','2005',1158,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:39'),(211,'What is the correct IUPAC name for NO2','Dioxonitrate(III) ion','Dioxonitrate(IV) ION','trioxonitrate(iii) ion','trioxonitrate(iv) ion','','','a','','utme','2005',1181,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(212,'What will happen if an aluminum spoon is used to stir a solution of iron (II) trioxonitrate(V)','The spoon will be reduced while the iron(II) ions will be oxidized','The spoon will be oxidized while the iron (II) ions will be reduced to the metal','The spoon will be reduced','The spoon will increase in size','','','b','','utme','2005',1272,'Admin','0000-00-00 00:00:00','2020-07-19 12:18:37'),(213,'Which of the following equimolar solutions will have the highest pH','NH4OH','CH3COONa','HCI','NaOH','','','c','','utme','2005',1154,'Admin','0000-00-00 00:00:00','2020-07-14 13:19:47'),(214,'2H2 + O2  → 2H2O  ΔH = -571Kj  In equation above, how much heat will be liberated if 12.0g of hydrogen is burnt in excess oxygen?','-1713kJ','+1142kJ','-571kJ','-1142kJ','','','a','','utme','2005',1210,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(215,'Which of the following ions requires the largest quantity of electricity for discharge at an electrode','2.5 moles of Cu2+','4.0 moles of CI-','2.0 moles of Al3+','3.0 moles of Na+','','','c','','utme','2005',1202,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(216,'H2(g)  +  Br2(g) →  2BHr(g)  The reaction above is carried out at 250C. If Δ H is kJ mol-1 and   Δ S is -106J mol-1K-1 the reaction will','Proceed spontaneously at lower temperatures','Not proceed spontaneously at the given temperature','Proceed spontaneously at the given temperature','[proceed in the reverse direction at the given temperature','','','d','','utme','2006',1134,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(217,'Na2CO3(aq)  +  2HCI(aq)  → 2NaCI(aq)  +  H2O(l)  +  CO2(g)    How many moles of sodium trioxocarbonate (IV) are there in a 25cm3 solution which required 10cm3 of 0.05 mol dm-3 hydrochloric acid solution to neutralize it?','0.100mloe','0.001mole','1.000mole','0.010mole','','','d','','utme','2006',1123,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(218,'The ion that can be used as an oxidizing agent is','Fe3+','F-','Ca2+','Au3+','','','c','','utme','2006',1116,'Admin','0000-00-00 00:00:00','2020-07-21 09:47:02'),(219,'Zinc and carbon rods are used as anode and cathode respectively in a','Voltaic cell','Lead accumulator','Leclanche cell','Daniel cell','','','c','','utme','2006',1133,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(220,'Trioxonitrate(V) acid is not used for preparing hydrogen gas from metals because it','Renders the metal passive','Is strongly oxidizing','Is volatile','','','','a','','utme','2006',1162,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(221,'Forms a layer of oxide on the metal   If the heat of combustion of hydrogen is -285.8kJ. what is the heat of formation of water','-285.8Kj','-571.6kJ','+571kJ','+285.8kJ','','','a','','utme','2006',1173,'Admin','0000-00-00 00:00:00','2020-07-19 19:14:09'),(222,'In the electrolysis of CuSO4(aq) using platinum electrodes, the reaction at the anode is','4H+  +  4e-  → 2H2','2OH  +  2OH-  →  2H2O + O2','2OH-  - 2e-    → 2OH','4OH-  -  4e- →  2H2O + O2','','','d','','utme','2006',1155,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(223,'IN which of the following is the oxidation number of sulphur equal to -2','H2S','SO3','S8','SO2','','','a','','utme','2006',1151,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:32'),(224,'5SO2(g)  +  2KMnO4(aq)  +  2H2O(l)  ⇌   K2SO4(aq)  +  2MnSO4(aq)  +   2H2HSO4(aq)   In the reaction above, the products give a','Colourless solution','Purple precipitate','Purple solution','Colourless precipitate','','','a','','utme','2006',1162,'Admin','0000-00-00 00:00:00','2020-07-17 19:36:45'),(225,'The solution that will conduct the highest amount of electricity is','2.0 moldm-3 of ethanoic acid','0.5 mol dm-3 of ethanoic acid','2.0 mol dm-3 of hydrochloric acid','0.5 moldm-3 of hydrochloric acid','','','c','','utme','2006',1123,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(226,'What is the mola. Mass of a substance, if 0.4 mole of the substance has a mass of 25.0g','6.3g','40.0g','62.5g','2.5g','','','c','','utme','2006',1210,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(227,'The order in which a mixture of sand ammonium chloride and sodium chloride can be separated is','Sublimation   dissolution  filtration  evaporation','Dissolution  dryness  filtration  evaporation','Filtration  sublimation  evaporation  dryness','Dissolution  filtration  sublimation  evaporation','','','a','','utme','2006',1106,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(228,'The volume of 2.5 moles of oxygen at s.t.p is','56.0dm3','84.0dm3','50.0dm3','20.0dm3','','','a','','utme','2006',1130,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(229,'[Molar volume of a gas at s.t.p + 22.4dm3} Nuclear fission involves the splitting of a heavy element into two nuclei of','Equal masses with a release of energy','Nearly equal masses with a release of energy and radiation','Equal masses with a release of energy and radiation','Unequal masses without any release of energy','','','b','','utme','2006',1172,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(230,'2C2H2(g)  +  5O2(g)     4CO2(g)  +  2H2O(g) In the reaction, the mass of carbon (IV) oxide produced on burning 78g of ethyne is [C = 12, O = 16, H = 1]','39','352g','264g','156g','','','c','','utme','2006',1088,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(231,'A particle that contain s 11protons, 12 neutrons and 10 electrons is probably a','Metallic ion','Non-metallic ion','Neutral metal','Neutral non-metal','','','a','','utme','2006',1181,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(232,'The element with the electron configuration 1s22s22p3 is','Oxygen','Chlorine','Nitrogen','Calcium','','','c','','utme','2006',1194,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(233,'A difference between chemical and physical change is that in a chemical change','Heat is supplied',' A new substance is formed','Oxygen is consumed','A reversible process occurs','','','b','','utme','2006',1215,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:30'),(234,'A degree in atomic size and an increase in knuckler charge across a period lead to','A decrease in covalency in bond formation','An increase in chemical reactivity','An increase in the tendency to loss electrons','A decrease in electro positivity','','','d','','utme','2006',1122,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(235,'The idea of planetary electrons was that of','Bohr','Thompson','Rutherford','Dalton','','','a','','utme','2006',1161,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(236,'If 30cm3 of a gas at 500C is warmed to 800C at a fixed pressure. The fractional increase in volume is','0.91','0.009','1.09','0.093','','','d','','utme','2006',1194,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(237,'Which of the following has an isomer','C4H10','C6H6','C2H4','C2H6','','','a','','utme','2006',1185,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:16'),(238,'An example of aliphatic unsaturated hydrocarbon is','Butanol','Propene','Pentane','Benzene','','','b','','utme','2006',1133,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(239,'One mole of a hydrocarbon contains 36g of carbon and its vapour density is 20. The structure of the hydrocarbon is','CH3CH2CH3','CH3CH = CH2','CH3CH2C = CH','CH3C = CH','','','d','','utme','2006',1150,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:40'),(240,'CH3-CH2-C = CH  The hybridization in the compound above is','Sp3 and sp','Sp3 and sp2','Sp','Sp2','','','a','','utme','2006',1182,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(241,'Nigerian crude oil is described as light crude because of its','Low aliphatic hydrocarbon content','Low sulphur content','High natural gas content','High octane number','','','c','','utme','2006',1179,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(242,'The gas obtained as a product of anaerobic action ob organic matter buried in the earth is','Nitrogen(IV) oxide','Carbon(IV) oxide','Methane','Ethene','','','c','','utme','2006',1160,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(243,'When a crystal was added to the clear solution of its salt, the crystal did not dissolve and the solution remained unchanged. This showed that the solution was','Supersaturated','Unsaturated','Saturated','Concentrated','','','c','','utme','2006',1173,'Admin','0000-00-00 00:00:00','2020-07-14 14:17:53'),(244,'The produce of the combustion of candle wax are','Carbon(IV) oxide and water','Oxygen and water','Hydrogen and water','Carbon(II)oxide an d water','','','a','','utme','2006',1146,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(245,'When 5.0cm3 of a saturated solution of sugar of molar mass 342g at 400C was evaporated to dryness, 34.2g of dry solid was obtained. The solubility of sugar at 400C is','7.0 mol dm-3','3.5 mol dm-3','2.0 mol dm-3','10.0mol dm-3','','','c','','utme','2006',1187,'Admin','0000-00-00 00:00:00','2020-07-19 23:35:13'),(246,'Which of the following results in the fall of acid rain','Gaseous hydrocarbons','Oxide of lead','Particulate matter','Oxides of sulphur','','','d','','utme','2006',1114,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(247,'Water has the ability to dissolve almost all substances because its molecule has a structure with','One positive end and one neutral end','Two positive ends','One positive end and one negative end','Two negative ends','','','c','','utme','2006',1166,'Admin','0000-00-00 00:00:00','2020-07-19 11:45:46'),(248,'An emulsion may be produced by shaking a detergent solution with','Palm wine','Palm oil','Ethanoic acid','Water','','','d','','utme','2006',1116,'Admin','0000-00-00 00:00:00','2020-07-21 06:34:02'),(249,'One heating may be produced by shaking a detergent solution with','Cu(NO3)2','AgNO3','Ca(NO3)2','NaNO3','','','b','','utme','2006',1114,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(250,'Dynamic equilibrium describes a situation where','A reaction gives back the reactants','Reactants are converted to products','The concentration of reactants and products is equal','Both forward and reverse reaction proceed at the same rate','','','d','','utme','2006',1190,'Admin','0000-00-00 00:00:00','2020-07-19 22:25:38'),(251,'The raw material used for the smelting of iron ore in a furnace is','Zn(NO3)2','CaSO4','CuSO4','CaCO3','','','d','','utme','2006',1158,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(252,'Carbon exists naturally in the combined state as','Diamond','Coal','Wood','Graphite','','','c','','utme','2006',1132,'Admin','0000-00-00 00:00:00','2020-07-17 16:57:34'),(253,'The sulphide which is insoluble in dilute hydrochloric acid is','CuS','Na2S','FeS','ZnS','','','a','','utme','2006',1136,'Admin','0000-00-00 00:00:00','2020-07-19 11:45:46'),(254,'The efficiency of a solid catalyst to increase reaction rates depends on its','Concentration','Solubility','Quantity','Surface area','','','d','','utme','2006',1181,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(255,'In the industrial production of H2 from natural gas, the CO2 produced along with the H2 is removed by','Passing the mixture into lime water','Washing under pressure','Drying over phosphorous(V)oxide','Using ammoniac copper(l) chloride','','','b','','utme','2006',1128,'Admin','0000-00-00 00:00:00','2020-07-20 11:02:30'),(256,'Which of the following typically represents a photochemical reaction','Conversion of dinitrogen (IV) oxide to nitrogen(IV) oxide','Conversion of silver halides to grey metallic silver','Decomposition of calcium hydroxide to its oxide','Formation of water from hydrogen and oxygen molecules','','','b','','utme','2006',1176,'Admin','0000-00-00 00:00:00','2020-07-15 06:08:31'),(257,'Group IA metals are not found free in nature because they','Have high melting and boiling points','Conduct heat and electricity','Are very reactive and unstable','Are malleable and ductile','','','c','','utme','2006',1132,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(258,'The characteristic colour of the flame shown when a copper salt moistened with concentrated hydrochloric acid on platinum is put on a bunzen burner is','Green','Lilac','Yellow','Brick-red','','','a','','utme','2006',1129,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(259,'The ion that will give a white precipitate with aqueous NaOH and soluble in excess of the base is','Zn2+','Mg2+','Ca2+','Cu2+','','','a','','utme','2006',1142,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(260,'Which of he following pairs of substances will react further with oxygen to form a higher oxide','SO2 and NO','CO2 and H2O','CO and CO2','NO and H2O','','','a','','utme','2006',1088,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(261,'Which of the following is an example of a mixture','Blood','Sand','Washing soda','Common salt','','','a','','utme','2010',1307,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:36'),(262,'Calculate the percentage by mass of nitrogen in calcium trioxonitrate (V)   {Ca = 40, N = 14, O = 16}','13.10%','17.10%','27.60%','8.5','','','d','','utme','2010',1225,'Admin','0000-00-00 00:00:00','2020-07-15 14:17:07'),(263,'The droplets of water observed around a bottle of milk taken out of though refrigerator is due to the fact that the','Temperature of the milk drops as it loses heat into the surroundings','Saturated vapour pressure of the milk is equal to the atmospheric pressure','Water vapour in the air around loses some of its energy to the bottle','Water vapour in the air around the bottle gains some energy from the bottle','','','c','','utme','2010',1260,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:38'),(264,'The volume of a gas is Vcm3 at P mm Hg. What is the new volume of the gas if the pressure is reduced to half at constant temperature','2 V cm3','V  2cm3','V cm3','4 V cm3','','','a','','utme','2010',1251,'Admin','0000-00-00 00:00:00','2020-07-18 10:27:00'),(265,'Moving from left to right across a period, the general rise in the first ionization energy can be attributed to the','Increase in nuclear charge','Decrease in screening effect','Increase in screening effect','Decrease in nuclear charge','','','a','','utme','2010',1277,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(266,'How many unpaired electron(s) are there in the nitrogen  sub - levels','2','1','0','3','','','d','','utme','2010',1203,'Admin','0000-00-00 00:00:00','2020-07-21 19:53:47'),(267,'The stability of the noble gases is due to the fact that they','Have duplet or octet electron configurations','Belong to group zero of the periodic table','Are volatile in nature','Have no electron in their outermost shells','','','a','','utme','2010',1275,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:42'),(268,'The maximum number of electrons in the L shell of an atom is','8','18','32','2','','','a','','utme','2010',1253,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(269,'Elements in the same periodic table have the same','Atomic number','Chemical properties','Physical properties','Number of shells','','','d','','utme','2010',1312,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(270,'A noble gas with a high power of fog penetration used in aerodrome beacons is','Argon','Helium','Neon','Krypton','','','c','','utme','2010',1243,'Admin','0000-00-00 00:00:00','2020-07-18 19:49:28'),(271,'Permanent hardness of water can be removed by','Adding slaked lime','Adding caustic soda','Boiling','Filtration','','','b','','utme','2010',1282,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:11'),(272,'Substances employed as drying agents are usually','Hygroscopic','Efflorescent','Acidic','Amphoteric','','','a','','utme','2010',1226,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(273,'Calculate the solubility in mol dm -3 of 40g of Cu So4 dissolved in 100g of water at 1200C  {Cu = 64, S = 32, 0 = 16}','2.5','0.4','0.25','4','','','a','','utme','2010',1240,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(274,'Coffee stains can best be removed by','Turpentine','A solution of borax in water','Ammonia solution','Kerosene','','','b','','utme','2010',1207,'Admin','0000-00-00 00:00:00','2020-07-14 13:20:55'),(275,'Carbon (II) oxide is considered dangerous if inhaled mainly because it','Competes with oxygen in the blood','Competes with carbon (IV) oxide in the blood','Can cause lung cancer','Can cause injury to the nervous system','','','a','','utme','2010',1274,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(276,'The acid that is used to remove rust is','Hydrochloric','Trioxonitrate (V)','Tetraoxosulphate (VI)','Boric','','','b','','utme','2010',1279,'Admin','0000-00-00 00:00:00','2020-07-16 23:47:17'),(277,'Calculate the volume of 0.5 mol dm-3 H2SO4 that is neutralized by 25cm3 of 0.1 mol dm-3 NaOH','2.5cm3','0.4cm3','0.1cm3','5.0cm3','','','a','','utme','2010',1254,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(278,'The colour of methyl orange in alkaline medium is','Pink','Orange','Red','Yellow','','','d','','utme','2010',1222,'Admin','0000-00-00 00:00:00','2020-07-17 17:11:38'),(279,'Which of the following salts is slightly soluble in water','CaSO4','Na2CO3','PbCl2','AgCl','','','a','','utme','2010',1299,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(280,'6AgNO3(aq)  +  PH3(g) +    3H2O(l)      →    6Ag(s)+   H3PO3(aq)   +    6HNO3(aq)  In the reaction above, the reducing agent is','H2O(l)','PH3(g)','AgNO3(aq)','HNO3(AQ)','','','b','','utme','2010',1263,'Admin','0000-00-00 00:00:00','2020-07-21 06:34:02'),(281,'The IUPAC nomencalatyre of the compound LiAIH4 is','Aluminium tetrahydrido lithium','Tetrahydrido lithium aluminate (III)','Lithium aluminium hydride','Lithium tetrahydridoaluminate (III)','','','d','','utme','2010',1271,'Admin','0000-00-00 00:00:00','2020-07-17 18:31:38'),(282,'Iron can be protected from corrosion by coating the surface with','Silver','Copper','Zinc','Gold','','','c','','utme','2010',1218,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:10'),(283,'What quantity of aluminum is deposited when a current of 10A is passed through a solution of an aluminum salt for 1930s  {AI = 27, F = 96500 C mol-}','1.8g','5.4g','14.2g','0.2g','','','a','','utme','2010',1332,'Admin','0000-00-00 00:00:00','2020-07-21 06:34:02'),(284,'In which of the following is the entropy change positive','Reaction between an acid and a base','Addition of concentrated acid to water','Dissolution of sodium metal in water','Thermal dissociation of ammonium chloride','','','c','','utme','2010',1285,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:30'),(285,'If a reaction is exothermic and thee is a great disorder, it means that','The reaction is in a state of equilibrium','There will be a large increase in free energy','There will be a large decrease in free energy','The reaction is static','','','b','','utme','2010',1193,'Admin','0000-00-00 00:00:00','2020-07-16 06:13:10'),(286,'In the preparation of oxygen by heating KCIO3 in the presence of MnC2, only moderate hear is needed because the catalyst acts by','Increasing the surface area of the reactant','Increasing the rate of the reaction','Lowering the energy barrier of the reaction','Lowering the pressure of the reaction','','','c','','utme','2010',1269,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:09'),(287,'2H2(g) +    O2(g)  ⇌ 2H2O(g)    ΔH   =  - ve  What happens to the equilibrium constant of the reaction above if the temperature is increased?','It becomes zero','It decreases','It increases','It is unaffected','','','b','','utme','2010',1326,'Admin','0000-00-00 00:00:00','2020-07-18 00:08:13'),(288,'To a solution of an unknown compound, a little dilute Tetraoxosulphate (IV) acid was added with some freshly prepared (II) Tetraoxosulphate (VI) Solution. The brown ring observed after the addition of a stream of concentrated  Tetraoxosulphate (VI) acid confirmed the presence of','CI','SO','NO','CO','','','c','','utme','2010',1238,'Admin','0000-00-00 00:00:00','2020-07-14 13:21:11'),(289,'Which of the following is used as a rocket fuel','CH3COOH','H2SO4','HCL','HNO3','','','d','','utme','2010',1263,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(290,'A constituent common to moist air, it gradually rusts. This is due to the formation of','Silver','Copper','Tin','Lead','','','c','','utme','2010',1263,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(291,'When iron is exposed to moist air, it gradually rusts. This is due to the formation of','Anahydrous  iron (III) oxide','Anhydrous iron (II) oxide','Hydrated iron (II) oxide','Hydrated iron  (III) oxide','','','d','','utme','2010',1261,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(292,'A compound gives an orange red colour to a non luminous flame. This compound is likely to contain','Ca2+','Fe3+','Fe2+','Na+','','','a','','utme','2010',1241,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(293,'Stainless steel is used for making','Tools','Coins and medals','Moving parts of clocks','Magnets','','','a','','utme','2010',1249,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(294,'The residual solids from the fractional distillation of petroleum are used as','Raw materials for the cracking process','Fuel for driving tractors','Fuel for jet engines','Coatings for pipes','','','d','','utme','2010',1268,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(295,'Which of the following is used as fuel in miners’ lamp','Ethyne','Ethane','Ethane','Ethanol','','','a','','utme','2010',1238,'Admin','0000-00-00 00:00:00','2020-07-20 11:02:30'),(296,'Which of the following organic compounds is very soluble in water','C2H2','C2H4','CH3COOC2H5','CH3COOH','','','d','','utme','2010',1304,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(297,'Benzene reacts with hydrogen in the presence of nickel catalyst at 1800C to give','Toluene','Cyclopentane','Cyclohexane','Xylene','','','c','','utme','2010',1279,'Admin','0000-00-00 00:00:00','2020-07-14 20:07:39'),(298,'Which of the following is used to hasten the ripening of fruit','Ethanol','Ethyne','Ethane','Ethane','','','d','','utme','2010',1284,'Admin','0000-00-00 00:00:00','2020-07-17 19:36:04'),(299,'The final products of the reaction between methane and chloride in the presence of ultraviolet light are hydrogen chloride and','Dichloromethane','Tetrachloromethane','Chloromethane','Trichloromethane','','','b','','utme','2010',1265,'Admin','0000-00-00 00:00:00','2020-07-21 15:53:49'),(300,'The correct order of increasing boiling points of the following  compounds C3H7OH, C7H16 and C4H10 is','C4H10  →  C7H16 → C3H7OH','C7H16 → C3H7OH → C4H16','C4H10  → C3H7OH  → C4H10','C3H7OH →  C4H10  → C7H16','','','a','','utme','2010',1313,'Admin','0000-00-00 00:00:00','2020-07-14 13:47:21'),(301,'One of the major uses of Alkanes is','In the hydrogenation of oils','In the textile industries','In the production of plastics','As domestic and industrial fuels','','','d','','utme','2010',1216,'Admin','0000-00-00 00:00:00','2020-07-19 14:44:21'),(302,'The haloalkanes used in the dry cleaning industries are','Chloroethane and dichloroethene','trichloroethene and tetrachloroethene','chloromethane and dichloroethene','Trichloromethane and tetrachloromethane','','','d','','utme','2010',1287,'Admin','0000-00-00 00:00:00','2020-07-21 09:47:02'),(303,' Two hydrocarbons X and Y were treated with bromine water. Decolorized the solution and Y did not. Which class of compound does Y belong','Alkynes','Alkenes','Alkanes','Benzene','','','c','','utme','2010',1210,'Admin','0000-00-00 00:00:00','2020-07-14 15:38:28'),(304,'The compound that is used as an anaesthetic is','CHCI3','CH2C2','CH3CI','CCI4','','','a','','utme','2010',1229,'Admin','0000-00-00 00:00:00','2020-07-16 23:47:17');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `civiledu` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=437 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `civiledu` VALUES (1,'Who among the following could be described as the founding father of Nigerian nationalism?','Nnamdi Azikiwe','Herbert Macauley','Ahmadu Bello','Obafemi Awolowo','','','b','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:37'),(2,'Rule of Law means','supremacy of the law','absence of legal immunity','peace, order and stability','obedience to any authority','','','a','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:38'),(3,'A major characteristic of civil society is','the desire to win election','corporate responsibility','social responsibility','political gerrymandering.','','','b','','wassce','2014',89,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:39'),(4,'Citizenship status is acquired through','birth, indigenization, colonization and referendum','association, convention, naturalization and incorporation','birth, naturalization, honorary and registration','registration, inter-relationship, integration and declaration.','','','c','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:39'),(5,'Human Rights are basic natural rights which people enjoy primarily because they are','members of a political party','international citizens','members of a community','human beings.','','','d','','wassce','2014',78,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:40'),(6,'Interpersonal relationship exists when','citizens pay their taxes regularly to inland revenue service','citizens are politically conscious and participate in voting','there is interaction between persons in a social setting.','groups share social interest and communal aspiration','','','d','','wassce','2014',81,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:41'),(7,'Cultism can be described to be','amiable','attractive','dangerous','harmless.','','','c','','wassce','2014',82,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:42'),(8,'Based on the statements above, the decision of the student on having a bullet proof vest shows that cultism','spreads fear and terror.','is a training ground for armed forces.','breeds courageous graduates.','propagates self - defence.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','a','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:43'),(9,'It could be inferred from the statements above that cultism in schools could lead to','sudden prosperity.','uninterrupted academic calender.','popularity on campus.','untimely death.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','d','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:44'),(10,'Victims of human trafficking are usually compelled to engage in','lucrative employment','visiting tourist sites','part - time studies','forced labour.','','','d','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:45'),(11,'One habit which People Living With HIV/AIDS (PLWHAs) must avoid to remain healthy and productive is','regular contact with healthy people.','self - pity and self - medication','participation in profitable ventures','pursuit of academic studies.','','','b','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:46'),(12,'Youth empowerment is best described as the','training given to individuals for acquiring means livelihood','practice of engaging in prospective career','provision of subsidized meals to the citizens by government,','mobilization of citizens for political rally.','','','a','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:47'),(13,'The National Assembly, Presidency and Court which are inter - related and interdependent in our democracy constitute the','tiers of government','types of democracy','forms of government.','arms of government','','','d','','wassce','2014',74,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:48'),(14,'A system of government that listens to public opinion and tolerates opposition is','dictatorial regime','capitalist regime','democratic regime','socialist regime','','','c','','wassce','2014',83,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:49'),(15,'A situation where most citizens fail to vote in elections could be described as political','socialization','culture.','apathy','legitimacy','','','c','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:50'),(16,'The division of Nigeria into various constituencies with each electing a person to represent it in the National Assembly is a demonstration of','checks and balances','popular participation','political rivalry among the constituents','drive towards secession in the country.','','','b','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:51'),(17,'In Nigeria, public servants are expected to be','non - partisan','political','ambitious','apolitical','','','a','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:52'),(18,'The principle that public servants cannot be held responsible for their official actions denotes','impartiality','accountability','anonymity','neutrality.','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:53'),(19,'Universal Declaration of Human Rights (UDHR) is based on the resolution of the','Human Rights Watch','United Nations Organization','Amnesty International','League of Nations.','','','b','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:54'),(20,'According to the story, Imoh’s parents were','wealthy couple','prominent politicians','honest and responsible','religious fanatics','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:55'),(21,'What value did Imoh demonstrate.','Tolerance','Confidence','Fair play','Honesty','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','d','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:56'),(22,'Conflicts are better resolved in the society through','tribunal','litigation.','dialogue','the court','','','c','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:57'),(23,'To prevent the spread of HIV/AIDS, people should be encouraged to','avoid casual sexual activities','marry very early in life','engage in gainful employment','pursue higher education','','','a','','wassce','2014',99,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:57'),(24,'The nearest government to the people and an important means of promoting grassroots development is the','state government','unitary government','local government','federal government','','','c','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:58'),(25,'Democratic governance is usually characterized by','free, fair and credible elections','buoyant and competitive economy','accessible employment opportunities','youth participation in governance','','','a','','wassce','2014',97,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:59'),(26,'Political apathy often leads to','low level of participation','good governance','political stability','low literacy level','','','a','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:00'),(27,'Which of the following is not necessary for public servants to perform effectively?','In - service training','Appointment based on nepotism','Value re - orientation for public servants','Incentives for meeting set goals','','','b','','wassce','2014',83,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:01'),(28,'One of the conditions which can limit the enjoyment of Human Rights in Nigeria is the','acceptance of foreign aid by the government','improvement in literacy level of the citizens','declaration of state of emergency by government','periodic review of the constitution by government','','','c','','wassce','2014',93,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:02'),(29,'The implication of positive communal relationships is that it','promotes solidarity and love','ensures obedience to constituted authority','encourages ethnic diversity','promotes rural-urban drift.','','','a','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:03'),(30,'One major factor that attracts some Nigerians into human trafficking is','over - population related issues','influx of foreigners into the country','insatiable quest for quick wealth','influence of Western and social media','','','c','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:04'),(31,'One of the reasons most HIV/AIDS patients are \treluctant to disclose their status is because of','the incurable nature of the ailment','fear of social stigmatization.','lack of sufficient public awareness','shortage of health counsellors','','','b','','wassce','2014',77,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:05'),(32,'The position of the court on this matter justifies the essence of the','rule of law','legislature','police command','separation of powers','The Bawali High Court has ordered the police in Area Z Command to produce Mr. Zeb, who is in police custody for an alleged offence. The court insists that Mr. Zeb cannot be punished until he is found guilty of breach of any law of the land by a court of competent jurisdiction.','','a','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:06'),(33,'Leaders can best protect the interests of their followers by','embarking on periodic constitutional review','creating socio - economic opportunities for foreigners','creating conducive atmosphere for participation','rewarding supporters with contracts','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:07'),(34,'The most popular means through which citizens of a country can participate in politics is by','being members of political parties','engaging in constructive criticism','engaging in political debates','voting in elections','','','d','','wassce','2014',96,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:08'),(35,'Civil societies are vital for the promotion of popular participation because they are','profit - oriented organizations','engaged in developmental programmes','involved in political education','formidable oppositions to government','','','c','','wassce','2014',97,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:09'),(36,'From this dialogue, it is very likely that Wanja will be exhibiting the following characters except','disobedience to constituted authority','truancy and perpetual lateness to school','hospitable attitude towards people','arrogance and unruly behaviour.','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:10'),(37,'Which of the following may result from Wanja’s habit?','Humility for elders','Criminality in the society','Advocacy for hard drugs by NGOs','Excellent performance in school','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',79,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:11'),(38,'From Ada’s admonition, it could be deduced that taking hard drugs could','make people respect the addicts.','lead to insanity of the addicts','make people to adore the drug addicts','ensure courteous behaviour by the addicts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',85,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:12'),(39,'From the above dialogue, Wanja’s behaviour could be curtailed by','sending him abroad for further studies','financial inducement','re - orientation and rehabilitation','indulging him with expensive gifts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',77,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:13'),(40,'Which of the following governmental agencies is the most capable of controlling the activities of Wanja and his group?','National Agency for Food and Drug Administration and Control (NAFDAC)','National Orientation Agency (NO A)','National Emergency Management Agency (NEMA)','National Drug Law Enforcement Agency (NDLEA)','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','d','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:14'),(41,'One of the major barriers to national development is the','low poverty level','existence of multi - party system','prevalence of corrupt practices','persistent rural - urban migration','','','c','','wassce','2014',74,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:14'),(42,'The quotation above shows that the speaker is concerned about','nationalism','revolution','tourism','welfarism','“Here is your country. Cherish these natural wonders, cherish the natural resources, cherish the history and romance as sacred heritage, for your children and your children’s children. Do not let selfish men or greedy interests skin your country of its beauty, its riches...”','','a','','wassce','2014',88,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:15'),(43,'A major benefit of youth empowerment is','dependence on foreign aid.','discouragement of patriotism','reduction in crime rate','negation to national prosperity','','','c','','wassce','2014',65,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:16'),(44,'When leaders like Chief Bilisi place self interest above public good, the result is that','rebellion becomes inevitable','cooperation of citizens is guaranteed','International support for the regime is ensured','society becomes more peaceful and orderly.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','a','','wassce','2014',69,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:17'),(45,'The condition of disorderly behaviour exhibited by the mob in the story best describes the','ineffectiveness of the police','breakdown of law and order','importance of ministerial position','need for stiffer security measures','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','b','','wassce','2014',78,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:18'),(46,'A major lesson Nigerians could learn from the story is that','leaders can empower voters by giving them money','security officials should use brutal force on citizens','the underprivileged should not vie for elective positions','greed and related vices can cause serious breach of  the law.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','d','','wassce','2014',82,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:19'),(47,'Which of the following is not a function of the Independent National Electoral Commission (INEC)?','Administering oath of office to elected officers','Conducting periodic elections','Recruitment of electoral officers.','Registration of political parties','','','a','','neco','2014',80,'Admin','2016-11-26 17:20:10','2020-07-14 13:34:20'),(48,'The upper legislative chamber of the National Assembly of Nigeria is also known as the','honourables','house of commons.','house of lords','senate','','','d','','neco','2014',80,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:21'),(49,'Cooperation between one country and another can be described as','bilateral','international','multilateral','multinational.','','','a','','neco','2014',92,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:22'),(50,'The “right to vote and be voted for” can only be enjoyed by Nigerian citizens who attain the age of','13.','15.','16.','18.','','','d','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:23'),(51,'A representative of a commonwealth country in another member state is known as a / an.','ambassador','attaché.','consul-general.','high commissioner.','','','d','','neco','2014',107,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:24'),(52,'The following are values that promote interpersonal relationship, except','caring.','honesty.','patience','properties.','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:25'),(53,'The responsibilities of government to   its citizens include the following, except','creating employment opportunity','maintenance of law and order','payment of property tax to its citizens','protection of lives and property','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:26'),(54,'Most African countries owed their creation to','African Union (AU).','Commonwealth of Nations.','Ethnic and tribal leaders.','European Colonialists','','','a','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:27'),(55,'The structure of the Nigerian legislature is - in nature','bicameral','confederal','federal','unicameral','','','a','','neco','2014',80,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:28'),(56,'The most effective approach towards the elimination of sexually transmitted diseases is by','abstinence.','Casual sex.','use of condom.','use of drugs','','','a','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:28'),(57,'The first executive president of Nigeria is/was','Abubakar Tafawa Balewa','Goodluck Jonathan','NnamdiAzikiwe.','Shehu Shagari.','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:29'),(58,'One of the aims of citizenship education is to produce students with','creative skill.','high sense of entrepreneurial skill.','high sense of patriotism.','manipulative skills.','','','c','','neco','2014',78,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:30'),(59,'The symbol for the campaign against AIDs is Ribbon','black','blue','green','red','','','d','','neco','2014',110,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:31'),(60,'ln 2013, Nigeria celebrated her ______ independence anniversary','50th','51st','52nd','54th','','','d','','neco','2014',92,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:32'),(61,'In democracy, lack of press freedom leads to the denial of freedom of','association','expression','movement','voting','','','b','','neco','2014',63,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:33'),(62,'Franchise means right to','contest for political post','join association','live in Nigeria','vote and be voted for','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:34'),(63,'How many members constitute the lower legislative chamber in Nigeria?','300','302','312','360','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:35'),(64,'How many senators are elected from each state in Nigeria?','2','3','4','5','','','b','','neco','2014',70,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:36'),(65,'When was the first HIV/AIDs case reported in Nigeria?','1980','1983','1985','1987','','','c','','neco','2014',82,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:37'),(66,'Which of the following system of government advocates equitable distribution of wealth?','Aristocracy','Capitalism','Plutocracy','Socialism','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:38'),(67,'The right of an individual to seek redress in a law court is categorized under','economic.','political','procedural,','social','','','c','','neco','2014',83,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:39'),(68,'The National Youths Service Corps Scheme was established in Nigeria in','1970','1971','1973','1975.','','','c','','neco','2014',84,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:40'),(69,'Which of the following is a legal obligation of a citizen?','Giving financial assistance to the poor','Helping in community development','Payment of taxes','Respecting the national symbols','','','c','','neco','2014',87,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:40'),(70,'Which of these is not a system of government?','Anarchy','Monarchy','Oligarchy','Socialism','','','d','','neco','2014',92,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:41'),(71,'The laws made by the third tier of government in Nigeria are refer to as','bye-laws.','constitutional laws.','decrees.','edicts','','','a','','neco','2014',98,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:49'),(72,'What does “35% affirmative action” of the present administration stand for? More','PDP  stalwarts   should   be engaged in government','political positions for women in government','women to be considered for campaign','women to be elected as governors','','','b','','neco','2014',92,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:55'),(73,'A political party’s programme is known as its','constitution.','document.','functions.','manifesto.','','','d','','neco','2014',79,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:57'),(74,'How many Senator(s) represent the Federal Capital Territory in the senate?','1','2','3','4','','','a','','neco','2014',95,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:58'),(75,'The International Court of Justice is located in','Britain.','Netherlands.','Nigeria.','Norway.','','','b','','neco','2014',80,'Admin','2016-11-26 17:20:17','2020-07-14 13:34:59'),(76,'The headquarters of United Nations is located in','Abuja.','England','Hague.','New York.','','','d','','neco','2014',95,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:00'),(77,'One advantage of Bi-cameral legislature is that it','guards against intra-party clashes.','is the only system available.','prevents arbitrary law making','projects party manifestoes.','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:01'),(78,'Public Complaints Commission in Nigeria is also known as','elder’s forum.','judiciary.','ombudsman.','people’s court.','','','c','','neco','2014',86,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:02'),(79,'The public service structure of Nigeria is an offshoot of','America.','British.','Canada.','India.','','','b','','neco','2014',82,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:03'),(80,'A de-facto authority is mostly associated with','anarchy.','customs and tradition.','force.','law.','','','b','','neco','2014',80,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:04'),(81,'The United Nations universal declaration on human rights was proposed in the year','1925','1930','1946','1948','','','d','','neco','2014',76,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:05'),(82,'Political apathy can be discouraged through the following, except','educating the electorate.','good governance.','independent judiciary.','press censorship.','','','d','','neco','2014',87,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:06'),(83,'One of the civic responsibilities of a citizen is to obey','bye-laws.','constituted authority.','court judgments.','edicts.','','','b','','neco','2014',79,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:07'),(84,'Which of the following is not a function of political parties?','Aggregation of opinion','Educating the government','Interest articulation','Unifying factor.','','','d','','neco','2014',67,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:08'),(85,'Nigeria is now hundred years since amalgamation which means she has celebrated — anniversary.','amalgamation.','centenary.','golden jubilee.','independence.','','','b','','neco','2014',68,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:09'),(86,'Which of the following bodies is responsible for defending the country against external aggression? The','Army','Civil defense.','Customs.','Police.','','','a','','neco','2014',94,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:10'),(87,'One of the following is a country as well as a continent.','Africa','Antarctica','Asia','Australia','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:10'),(88,'In a parliamentary system of government, the powers of the executive is vested in the office of the','minister.','premier','president.','prime minister.','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:11'),(89,'One of the major problems facing local government administration in Nigeria is','insufficient councilors','lack of control by the central government','lack of funds','leadership','','','c','','neco','2014',71,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:12'),(90,'The land contention between Nigeria and Cameroon is called','Bakassi Penisula','Bonny Island','Calabar River','Lekki Penisula','','','a','','neco','2014',78,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:13'),(91,'The headquarters of ECOWAS is located in','Abuja','Accra','Adis-Ababa','Lome','','','d','','neco','2014',97,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:15'),(92,'Human rights abuse can be prevented through the following, except','constitutional means','court of law','mass literacy','protest','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:16'),(93,'The public Service is a branch of the ____ arm of government','civilian','executive','judiciary','legislative','','','b','','neco','2014',84,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:16'),(94,'When the national flag is flown half mask, it is a sign of national','centenary celebration','children’s day','independence','mourning','','','d','','neco','2014',78,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:17'),(95,'One of the ways to ensure a free and fair election is to','allow parties to campaign on election day','appoint a politician as the chairman of the electoral commission','ensure INEC chairman is appointed from a pressure group','guarantee the security of electoral officers and materials','','','d','','neco','2014',79,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:18'),(96,'How many colours are in the traffic light?','2','3','4','5','','','b','','neco','2014',78,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:19'),(97,'The channel through which political parties make their program known to the people is ..............','canvassing','campaigning','convincing','coronation','','','b','','wassce','2012',79,'Admin','2016-11-26 17:47:57','2020-07-14 13:35:20'),(98,'What arm of the criminal justice system is prison?','first','second','third','none','','','c','','wassce','2012',91,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:29'),(99,'................ is the apex body saddled by law to fight corruption and other related offences','IRS','ICPC','EFCC','NPF','','','c','','wassce','2012',97,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:30'),(100,'The responsibility of protecting past and present high ranking government officials falls on ...............','police','army','civil defense corps','SSS','','','a','','wassce','2012',83,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:31'),(101,'............ is obtained from the Nigerian immigration services as a requirement to travel out of the country','ticket','yellow card','passport','national ID card','','','c','','wassce','2012',70,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:32'),(102,'There are ............. local government in Nigeria','700','714','744','774','','','d','','wassce','2012',102,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:33'),(103,'Local government is the ............... tier of government','1st','2nd','3rd','4th','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:34'),(104,'Television and radio are example  of ......... media','print','electronic','advertising','mass','','','b','','wassce','2012',114,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:35'),(105,'Newspapers and magazine and example of ..... media','print','electronic','advertising','mass','','','a','','wassce','2012',94,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:36'),(106,'One of the listed criteria qualifies one for election .......','certificate','beauty','height','citizenship','','','d','','wassce','2012',103,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:37'),(107,'The following are duties to be performed by the citizens of a country EXCEPT','Destroying government properties','obey law and order','payment of tax','show loyalty','','','a','','wassce','2012',101,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:38'),(108,'The form of government in which the electorate exercise their governing power directly through their elected \trepresentation is called ........','supremacy','democracy','autocracy','charismatic','','','b','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:39'),(109,'Punishment for law breaking include the following except ..........','freedom of movement','detention','sanctions','political instability','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:40'),(110,'The act of counting the numbers of people living in a country in order to determine the total numbers of \tpeople in a state is known as .......','election','national population census','voting','rights','','','b','','wassce','2012',109,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:41'),(111,'The last population census in Nigeria was conducted in ...........','2003','2006','2007','2005','','','b','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:42'),(112,'The 219 chibok girls were ................ while ..............','abducted, praying in the mosque','kidnaped, praying in the church','abducted, wondering along the street of chibok town','kidnaped, preparing to write their WAEC examination','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:43'),(113,'The following are types of drugs except','cannabis','depressants','benzodiazepine pines','steroids','','','c','','wassce','2012',118,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:44'),(114,'Cocaine, morphine and heroin are example of','tobacco','steroids','narcotics','inhalants','','','c','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:45'),(115,'......... refer to a group of drugs that are inhaled in the form of a gas or solvent','hallucinogens','stimulants','inhalants','gasoline','','','c','','wassce','2012',109,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:46'),(116,'Cannabis is also called .........','barbiturates','cassava','marijuana','caffeine','','','b','','wassce','2012',107,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:47'),(117,'Which of the following is the most common forms of drug abuse','drug trafficking','self medication','drug combination','frequent use','','','b','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:47'),(118,'The following factors are responsible for drug abuse except','family upbringing','high stress level','poverty','foster parenthood','','','d','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:49'),(119,'........ is the type of parenthood where a different couple raise a particular child that is not their own','helicopter parent','foster parenthood','slow parenting','different parenthood','','','b','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:50'),(120,'One of the following is a cause of single parents in Nigeria','slow parenting','social group','nature of work','divorce','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:50'),(121,'.......... strengthens the sensitive mental and emotional bond between the parent and children','narcissistic parenting','attachment parenting','positive parenting','teenage parenting','','','b','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:51'),(122,'........... is the verdict that results when a law court declares a defendant guilty of a crime','immunity clause','conviction','customary clause','traditions','','','b','','wassce','2012',119,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:52'),(123,'The clause which exempts the president from being prosecuted while still in office is called','military clause','special clause','conviction clause','immunity clause','','','d','','wassce','2012',85,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:53'),(124,'All the following can limit the right of a citizen except','war','state of emergency','universality','military rule','','','c','','wassce','2012',87,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:54'),(125,'The following are causes of emergency rule except','crisis','blood lettings','stage peaceful protest','sabotage / terrorism','','','c','','wassce','2012',76,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:55'),(126,'The World AIDs Day is usually ..........................','June 12th every year','May second every year','October 1st every year','December 1st every year','','','d','','wassce','2012',92,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:56'),(127,'One of the following is not human right group','Constitutional Right Project (CRP)','National Association of Democratic Lawyers (NADL)','Nigeria Bar Association (NBA)','Civil Liberties Organization (CLO)','','','c','','wassce','2012',94,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:57'),(128,'One of the following is not a pressure group','National Association of Nigeria Student (NANS)','Nigeria Labour Congress (NLC)','Academic Staff Union of Universities (ASUU)','Committee for Defense of Human Right (CDHR)','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:58'),(129,'One of the following is not a political party','PDP','APGA','ANPC','CPC','','','c','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:59'),(130,'One of the following is a social group','dangote group of companies','rotary club','Millan group','human right Africa','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:00'),(131,'The organization with the motives and goals of helping people is called','social group','charity group','pressure group','human right group','','','b','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:01'),(132,'The following are the reasons why people do not participate in polities except','illiteracy','lack of justice','multi-party system','religion','','','c','','wassce','2012',89,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:02'),(133,'............... is the prejudicial treatment of fellow human being','god fatherism','independence','justice','discrimination','','','d','','wassce','2012',97,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:03'),(134,'Laws are interpreted by the','Judiciary','President','Legislature','Executive','','','a','','wassce','2012',111,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:04'),(135,'The president belongs to ............... arm of the government','Executive','Judiciary','Military','Legislature','','','a','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:04'),(136,'The process whereby an individual choose to favour a person who come from his family or tribe over other people or tribes is known as','stereotype','ethnicity','nepotism','favouritism','','','c','','wassce','2012',89,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:05'),(137,'When a group of people believe in and keep to certain norms, values and ways of life of their community since its creation, we call this .................','religion','stereotypes','traditions','custom','','','c','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:06'),(138,'Traffic lights are also known and referred to as','three directives light','spotlight','flow traffic directive','informative sign','','','b','','wassce','2012',86,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:07'),(139,'One of the following is not a federal road agencies','DTO','FRSC','TRACE','VIO','','','c','','wassce','2012',86,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:08'),(140,'One of the following is a regulatory prohibitory sign','stop police','speed limit','t junction','ferry','','','a','','wassce','2012',96,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:09'),(141,'The traffic light has how many colours','3','4','5','2','','','a','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:10'),(142,'From the basic road traffic regulation pedestrians should not attempt to cross the road when the light are ............. and ...............','green and yellow','green and red','yellow and red','red and yellow','','','a','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:11'),(143,'Motorcyclists must always protect their heads with safety ............. which must be properly fastened','seat belt','head guild','helmets','cap cycles','','','c','','wassce','2012',103,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:12'),(144,'Pedestrians should always cross road using','stop hold','parked vehicles','zebra crossing','bridge','','','c','','wassce','2012',89,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:13'),(145,'The former NAFDAC DG Prof Dora Akunyili died on','June 9. 2014','June 17, 2014','June 7, 2014','May 27, 2014','','','c','','wassce','2012',104,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:14'),(146,'Political values are acquired in any given society through','Political re-orientation','Political campaign','Political socialization','Political indoctrination','','','c','','neco','2012',78,'Admin','2016-11-26 18:05:51','2020-07-14 13:36:15'),(147,'To ensure the rights and freedom of citizens; the power of the arms of government must be','fused','incorporated','separated','rotated','','','c','','neco','2012',85,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:16'),(148,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social right','','','b','','neco','2012',80,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:17'),(149,'The commission charged with the conduct of federal \telections in Nigeria between 2014 and 2015 is..........','Nec','fedeco','Inec','Necon','','','c','','neco','2012',86,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:17'),(150,'The colour of the Nigeria flag is ..............., anytime it \tis half masked it means that the nation is ...............','green white green - rejoicing','white green white - mourning','green white green - mourning','green white blue - voting','','','c','','neco','2012',81,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:18'),(151,'Which of the following is used in gauging public opinion','Constitution','Educational Institution','Mass media','Electoral college','','','c','','neco','2012',77,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:19'),(152,'In Nigeria, The agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil  defense corps','Police','','','d','','neco','2012',89,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:20'),(153,'The National Assembly in Nigeria is primarily responsible for','executing laws','Interpreting laws','ratifying appointment','making laws','','','d','','neco','2012',84,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:21'),(154,'The major factor militating against efficient operation \tof electoral commission in Nigeria is .......................','Inadequate public support','Population size','Inadequate skilled manpower','excessive political interference','','','d','','neco','2012',70,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:22'),(155,'When Ebola disease is very rampant ............. count \ttheir loses while ......... smile to the bank','fish sellers, bush meat sellers','bush meat sellers, fish sellers','bread sellers, fish sellers','students, teachers','','','b','','neco','2012',100,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:23'),(156,'Workers in the Public Corporations are known as','Civil servants','Private employees','Public servants','Professional employees','','','c','','neco','2012',84,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:24'),(157,'Membership of a society is','conventional','Mandatory','Voluntary','Constitutional','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:25'),(158,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','Police, Army, sovereignty and custom','','','c','','neco','2012',101,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:26'),(159,'Citizenship is acquired by an alien through','registration','birth','Conferment','Naturalization','','','d','','neco','2012',86,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:27'),(160,'The office responsible for announcing the result of an election is known as','ballot officer','presiding officer','Returning officer','Electoral officer','','','c','','neco','2012',93,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:28'),(161,'Law made by military governments are called','decrees','Bye-laws','Edicts','acts','','','a','','neco','2012',78,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:29'),(162,'The ultimate aim of political parties is to','implement people oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','neco','2012',79,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:30'),(163,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their member','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','neco','2012',84,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:31'),(164,'Public servants in Nigeria belong to the ............. arm of government','military','executive','legislature','judiciary','','','b','','neco','2012',88,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:32'),(165,'One of the main duties of the local government service commission is to','supervise and manage the personnel of local government','conduct election into local council','create an enabling working environment for council workers','handle request for the creation of more local government','','','a','','neco','2012',88,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:33'),(166,'The option A4 model was used in the conduct of the','2007 election','1983 election','1993 election','1999 election','','','c','','neco','2012',103,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:34'),(167,'The following is the function of a responsible parenthood','care and love','gambling','Drug addition','fighting','','','a','','neco','2012',80,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:35'),(168,'Custom refers to .............','tradition or social value or patterns','image of a country','sharing similar or common ethnic background','A state of feeling of oneness among the people','','','a','','neco','2012',91,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:36'),(169,'The term V. I. O. mean','Vehicle inspection officer','vehicle implementation officer','vehicle induce operation','vehicle induction officer','','','a','','neco','2012',81,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:36'),(170,'Which of these countries operate a unitary system of \tgovernment','Nigeria','U. S. A','Ghana','Britain','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:37'),(171,'Which of the following are not fundamental human right','right to life','right to gainful employment','right to vote and be voted for','right to overthrow a government','','','d','','neco','2012',84,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:38'),(172,'A constitution that is very easy to amend is called a ...... constitution','rigid','flexible','an easy','simple','','','b','','neco','2012',91,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:39'),(173,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:40'),(174,'One judicial function performed by the executive is','granting of amnesty','implementing judicial order','ensuring obedience to the law','appointing judges','','','a','','neco','2012',85,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:41'),(175,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary','','','a','','neco','2012',90,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:42'),(176,'The private ownership of the means of production is a feature of','capitalism','Socialism','Communalism','Communism','','','a','','neco','2012',95,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:43'),(177,'A government is said to be legitimate if it','has the people’s mandate to rule','is not oppressive','provide social services for the people','accepts people’s criticism','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:44'),(178,'All type of government perform all the following functions except','providing welfare and developmental facilities','maintaining law and order','encouraging the struggle for power','encouraging trade with other state','','','c','','neco','2012',99,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:45'),(179,'A coup d’etat is regarded as','A source of political legitimacy','A manipulation of the constitution','A constitutional way of changing the government','an unconstitutional way of changing the government','','','d','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:46'),(180,'Which of the following is an advantage of local government','Agents for money based politics','electoral commissions','training grounds for political leaders','agents of pressure group','','','c','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:47'),(181,'Public Corporations are financed','by tax payers','with private funds','with entrepreneurial funds','by political parties','','','a','','neco','2012',109,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:48'),(182,'A manifesto refers to','the register of party members','rejected ballot papers','valid ballot papers','Document containing the aims and programmes of   a political party','','','d','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:48'),(183,'Which of the following is not a duty of a citizen','obedience to the law','payment of taxes','service to the Nation','giving alms to the poor','','','d','','neco','2012',88,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:49'),(184,'The police perform all the following function except','public execution of law breaker','controlling and directing traffic','protection of life and property','enforcement of law and orders','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:50'),(185,'An agreed set of rules prescribing the governance of a country can be called the','constitution','charter','manifesto','programme','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:51'),(186,'The lack of interest in politics by many citizens in a country is called','civic agitation','mass apathy','mass protest','political unrest','','','b','','neco','2012',96,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:52'),(187,'The following are ways to prevent drug addiction except','civic education','law enforcement and regulation','mass media effort','voting at election','','','d','','neco','2012',95,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:53'),(188,'The following are examples of pressure group except','N. U. R. T','NBA','NLC','PDP','','','d','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:54'),(189,'The following are Road Traffic signs except','Regulatory sign','Informative sign','Warning sign','Philosophy sign','','','d','','neco','2012',85,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:55'),(190,'The function of Federal Road Safety Corp (FRSC) is','Enforcing the traffic regulation on road','making law','executing law','Interpreting law','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:56'),(191,'The function of vehicle inspection officer (VIO) is','ensuring the road wordiness of vehicle on the road','protection of life and property','collection of tax','counting of votes cast at election','','','a','','neco','2012',109,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:57'),(192,'Colonization of Africa was mainly motivated by','security consideration','economic reasons','religious reasons','cultural factor','','','b','','neco','2012',96,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:58'),(193,'Which of these is a type of parenthood','single parenthood','ethnic parenthood','village parenthood','clan parenthood','','','a','','neco','2012',77,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:42'),(194,'Decrees are laws made by ............','Democratic government','The prime minister','The military','Parliaments','','','c','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:43'),(195,'Austerity measure was first introduced in Nigeria by ..........','President Babangida','Olusegun Obasanjo','President Sehu Shagari','President Goodluck Jonathan','','','c','','neco','2012',106,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:44'),(196,'Before crossing the road you are expected to ...........','Look left and then right','Look left, right and left again','Look back and left','Look forward for oncoming okada','','','b','','wassce','2013',110,'Admin','2016-11-27 17:07:11','2020-07-14 11:39:45'),(197,'.............. was the capital of Nigeria before .................','Abuja - Lagos','Lagos - Abuja','Ikeja - Abuja','Benin - Abuja','','','b','','wassce','2013',97,'Admin','2016-11-27 17:07:15','2020-07-14 11:39:46'),(198,'The primary duty of the police force is to','Make law','Interpret the law','Deal with danfo and okada drivers','Non of the above','','','d','','wassce','2013',91,'Admin','2016-11-27 17:07:19','2020-07-14 13:37:03'),(199,'The law is enforced by','Military','Legislators','Police force','Area boys','','','c','','wassce','2013',99,'Admin','2016-11-27 17:07:27','2020-07-14 13:37:04'),(200,'Which of the following is NOT an offence','Tax avoidance','Tax evidence','Stealing by trick','Money laundering','','','a','','wassce','2013',88,'Admin','2016-11-27 17:07:31','2020-07-14 13:37:20'),(201,'Some core Rights or Freedoms in the Universal Declaration of Human Rights of 1948 are','The right to life and right to freedom of opinion and expression','The right to fight and smoke in the public place','The right to attack your enemies and the right to make slanderous speeches','None of the above','','','a','','wassce','2013',94,'Admin','2016-11-27 17:07:35','2020-07-14 13:37:20'),(202,'Cultism can lead to','Immoral activities and indiscipline','Maintenance of law and order in the society','Corrupt free society','Sound cultural development','','','a','','wassce','2013',80,'Admin','2016-11-27 17:07:39','2020-07-14 13:37:40'),(203,'Popular participation can','promote political awareness and education','Lead to political apathy','lead to the election of wrong leaders','to political instability','','','a','','wassce','2013',106,'Admin','2016-11-27 17:07:47','2020-07-14 13:37:41'),(204,'One of the ways to prevent the spread of HIV/AIDs is','Not to eat in fast food joints','Not to shake hands with anybody','To avoid any object contaminated with blood','Sleep under a mosquito net','','','c','','wassce','2013',77,'Admin','2016-11-27 17:07:51','2020-07-14 13:37:42'),(205,'Nigeria became independent in ........... and a Republic in ................ Respectively','1963 and 1960','1960 and 1963','1954 and 1960','None of the above','','','b','','wassce','2013',107,'Admin','2016-11-27 17:07:55','2020-07-14 13:37:43'),(206,'The process of enlightening or training citizens on their rights and responsibilities is known as','Workshop training','Citizenship Education','Political Education','Citizenship Rights','','','b','','wassce','2013',94,'Admin','2016-11-27 17:07:55','2020-07-14 13:37:44'),(207,'The ideas, things or principles cherished by the people in a community are referred to as','rights','culture','values','due process','','','c','','wassce','2013',99,'Admin','2016-11-27 17:08:03','2020-07-14 13:37:45'),(208,'The illicit or illegal business in the sales and \ttransportation of human beings for economic and other selfish purposes is known as','Human capital development','Human traffic rule disobedience','Human trafficking','Mans inhumanity to man','','','c','','wassce','2013',78,'Admin','2016-11-27 17:08:03','2020-07-14 13:37:46'),(209,'An indifference attitude towards political activities by the citizens of a state is termed','political apathy','political unrest','political ideology','political disunity','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:07','2020-07-14 13:37:47'),(210,'For which of these can someone be arrested while driving on a high way','driving and laughing','driving and singing','driving and eating or receiving phone call','driving and crying','','','c','','wassce','2013',87,'Admin','2016-11-27 17:08:11','2020-07-14 13:37:48'),(211,'The process in which every qualified citizen of a state has the right to vote is called ............ suffrage','universal adult','democratic','tax payer','communal','','','a','','wassce','2013',89,'Admin','2016-11-27 17:08:11','2020-07-14 13:37:56'),(212,'The armed forces and the police are part of the ........ organ of government','executive','judicial','legislative','informative','','','a','','wassce','2013',85,'Admin','2016-11-27 17:08:14','2020-07-14 13:37:57'),(213,'The exercise of arbitrary power, whims and caprices constitutes a negation of .........','rule of law','fundamental human right','checks and balance','indirect rule','','','a','','wassce','2013',92,'Admin','2016-11-27 17:08:15','2020-07-14 13:37:59'),(214,'Which of the following concepts confirms the general acceptance and recognition of a government?','Democratic powers','Legitimacy','sovereignty','popular democracy','','','b','','wassce','2013',100,'Admin','2016-11-27 17:08:15','2020-07-14 13:37:59'),(215,'Which of the following can cause Human Trafficking in a country','poverty, youth unemployment and greed','Sound education and proper counselling','Social and economic contentment','B and C above','','','a','','wassce','2013',108,'Admin','2016-11-27 17:08:15','2020-07-14 13:38:01'),(216,'The use of drugs through self - medication or without due medical prescription is referred to as','Personal drug administration','Drug abuse','Human right abuse','Drug trafficking','','','b','','wassce','2013',93,'Admin','2016-11-27 17:08:15','2020-07-14 13:38:01'),(217,'An important characteristics of Democracy is','The absence of free press and mass media','Unequal political rights','Respect for principle of rule of law','The absence of separation of powers between the   arms and levels of government','','','c','','wassce','2013',86,'Admin','2016-11-27 17:08:15','2020-07-14 13:38:02'),(218,'Which one of the following is the founding father of Nigeria nationalism?','Goodluck Jonathan','Oba Kosoko','Herbert Macaulay','Olusegun Obasanjo','','','c','','wassce','2013',108,'Admin','2016-11-27 17:08:19','2020-07-14 13:38:03'),(219,'The use of illicit or hard drugs such as marijuana (Indian hemp) heroine, morphine etc. is known as','Human right abuse','Drug trafficking','Drug enhancement','Drug abuse','','','d','','wassce','2013',93,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:04'),(220,'The farthest government to the people is the ............ government','Local','State','Federal','A and B above','','','c','','wassce','2013',114,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:05'),(221,'An instrument for exercise of power for controlling, administering and managing the affairs of people based on laws is the','Civil service','Executive','Government','State','','','c','','wassce','2013',101,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:06'),(222,'The ideology which emphasizes a classless society is','Communism','Capitalism','Totalitarianism','Feudalism','','','a','','wassce','2013',88,'Admin','2016-11-27 17:08:27','2020-07-14 13:38:07'),(223,'Which of the following constitutes drug abuse','taking less than the dose recommended by the doctor','taking more than the dose recommended by the doctor','taking the exact dose recommended by the doctor','A and B above','','','d','','wassce','2013',93,'Admin','2016-11-27 17:08:31','2020-07-14 13:38:08'),(224,'The power to legislate is usually exercised by','parliament','executive','judiciary','the president','','','a','','wassce','2013',82,'Admin','2016-11-27 17:08:39','2020-07-14 13:38:09'),(225,'Membership of a state is known as','citizenship','statism','patriotism','indigenousness','','','a','','wassce','2013',94,'Admin','2016-11-27 17:08:39','2020-07-14 13:38:10'),(226,'The process of learning the political attitudes, values and beliefs that are relevant to the political system is known as','political culture','political socialization','political participation','political science','','','b','','wassce','2013',114,'Admin','2016-11-27 17:08:39','2020-07-14 13:38:11'),(227,'The system of government in which all aspects of life are controlled by the government is','democracy','totalitarianism','capitalism','socialism','','','b','','wassce','2013',96,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:18'),(228,'It is an offense to drive along the high way','without putting on the seat belt','and talk or smile at the same time','and make phone calls at the same time','A and C above','','','d','','wassce','2013',87,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:19'),(229,'The individual rights would be better protected if enshrined in the ..................','Courts','Constitutions','Bible and Quran','National Newspapers','','','b','','wassce','2013',81,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:20'),(230,'What is the minimum age for voters in Nigeria','15','20','18','50','','','c','','wassce','2013',98,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:21'),(231,'Which of these characteristics of the civil service ensure continuity of government?','Neutrality','Permanence','Bureaucracy','Loyalty','','','a','','wassce','2013',102,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:22'),(232,'Public corporation are owned by the','government','banks','private individuals','foreigners','','','a','','wassce','2013',99,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:23'),(233,'The principle of equality before the law is the same as','social equality','social injustices','checks and balances','democratic justices','','','a','','wassce','2013',85,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:24'),(234,'The organ of government which are normally fused in a military regime are the','judiciary and legislative','civil service and executive','legislative and executive','legislative and judiciary','','','c','','wassce','2013',92,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:24'),(235,'The illegal sales and transportation of human beings for economic and some other selfish purpose is termed','Slave Trade','Survival of the Fittest','Gross Human Right Abuse','Human Trafficking','','','d','','wassce','2013',107,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:25'),(236,'The lack of interest in politics and political activities by the citizens of a country is known as','political disinterestedness','political culture','political disintegration','political apathy','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:26'),(237,'Popular participation refers to','Political Apathy','The active involvement of citizens in the social political activities of a country','The rule of the party with the largest number of supporters','The rule of a prominent and popular politician','','','b','','wassce','2013',84,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:27'),(238,'The rule of law simply means','The ruling of a lawful leader','The absence of political instability','Supremacy of the law','The ruling of legislators','','','c','','wassce','2013',88,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:28'),(239,'Cultism is ........, and so it should be ........','useful - allowed','cultural - encouraged','dangerous - discouraged','amiable - supported','','','c','','wassce','2013',97,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:29'),(240,'Drug abuse can be curbed by','encouraging the use of enhancement drugs in sports','teaching youths moral and religious principles','encouraging rural urban migration','None of the above','','','b','','wassce','2013',91,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:30'),(241,'A problem commonly faced by most people living with HIV/AIDs is of','Stigmatization','Non availability of drugs','Government insincerity','Lost of appetite','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:31'),(242,'Which of the following type of government is hereditary?','Democracy','Oligarchy','Monarchy','Fascism','','','c','','wassce','2013',85,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:32'),(243,'An organization whose ultimate aim is to gain the control of government and implement its programmes is known as a','Trade Union','Local Government','Political Party','Pressure Group','','','c','','wassce','2013',81,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:33'),(244,'The president belongs to .......... arm of the government','Legislative','Judiciary','Executive','Anti-crime','','','c','','wassce','2013',93,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:34'),(245,'In Nigeria the outbreak of Ebola disease was first observed in the year','2012','2013','1960','2014','','','d','','wassce','2013',87,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:35'),(246,'Juvenile delinquency and cultism are ......... and should be .........','undesirable - encouraged','desirable - discouraged','undesirable - discouraged','desirable - discouraged','','','c','','neco','2013',94,'Admin','2016-11-27 17:44:15','2020-07-14 13:38:36'),(247,'Those who consume fish and vegetable frequently stand the chance of contacting the','HIV/AIDs disease','Ebola disease','Typhoid and yellow fever disease','None of the above','','','d','','neco','2013',87,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:37'),(248,'The primary function of the legislature is the','monitoring the executive','making of laws','voting of bills','appointment of ministers','','','b','','neco','2013',78,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:38'),(249,'Ejiro, the senior brother of Omonigho had fever last week. The doctor prescribed a certain drug for him, He was asked to take one tablet, three times a day for four days. He took the drug as recommend for the first and second day and stopped. Five days later he took one tablet in the morning and one again at night. Omonigho’s action can be said to be a kind of','bad drug administration','drug Abuse','drug trafficking','Human trafficking','','','b','','neco','2013',89,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:39'),(250,'When a constitution is difficult to amend it is said to be','rigid','flexible','written','federal','','','a','','neco','2013',79,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:40'),(251,'If Omonigho had taken the tablet one three times a day for six days his action constitutes a kind of','good drug administration','drug abuse','drug trafficking','none of the abuse','','','b','','neco','2013',100,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:41'),(252,'Ejiro, who is not sick decide to take the same drug for the same duration as recommended for Omonigho by the doctor.Ejiro’s action can be described as a form of','preventive measure','drug abuse','drug trafficking','Self help activity','','','b','','neco','2013',85,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:42'),(253,'As Mr Umukoro got to Oghara junction, near Sapele, he packed the bus and bought some roasted monkey bush meat. Some of the passengers in the bus followed suit, that day was a good Friday. On motion Mr Umukoro, the driver and some of the passengers were doing justice to the monkey bush meat. No sooner had they started than they were stopped and Mr Umukoro was fined by men of the FRSC. If the fine was proper which of the reasons bellow could be responsible for it','some of the passengers ate the bush meat while the bus was on motion','Mr Umukoro, the driver was driving and eating at the same time','They were not supposed to eat monkey bush meat because they can contact the Ebola virus from it.','They were not expected to eat and any kind of meat on a good Friday','','','b','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:43'),(254,'The Ebola virus sneaked into Nigeria through','The Liberian born American, Mr Patrick Sawyer','The Ghanaian born American, Mr Patrick Sayer','Members of the Boko Haram','Monkeys and bats','','','a','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:43'),(255,'As a citizen you can be deprived of your Fundamental Human Rights during','Emergency Rule','Election period','National day celebration','National public holidays','','','a','','neco','2013',86,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:44'),(256,'Malaria fever can be transmitted through','hand shaking','eating of unbalanced diet','mosquito bite','eating of bush meat such as bat and monkey','','','c','','neco','2013',88,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:45'),(257,'Plenty of money in the society, not backed by commensurate productive activities can lead to','deflation','inflation','National developmental','cashless society','','','b','','neco','2013',93,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:46'),(258,'In the year 2014, the Nigerian President Good luck Ebelle Jonathan  urged Nigerians to .......... the rumors  that drinking and bathing with salt water prevents or cures Ebola virus','ignore','accept','welcome','embrace','','','a','','neco','2013',98,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:47'),(259,'The primary duty of the army is to','execute the law','interpret the law','overthrow the government when there is anarchy','defend the country against external aggression','','','d','','neco','2013',97,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:48'),(260,'The first known outbreak of Ebola was in ................','2014, in Sierra Leone','1976, in a remote village near the Ebola River in Congo','2014, in port Harcourt, Nigeria','Enugu, during the Nigeria - Biafra war','','','b','','neco','2013',89,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:49'),(261,'On a particular day in 2014, the National flag was flown half mask. This act symbolizes','National tailors day','National mourning','Children’s day','Golden jubilee celebration','','','b','','neco','2013',103,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:50'),(262,'Vehicles are expected to continue with their journey when the traffic light shows ...............','Red','Blue','Yellow','Green','','','d','','neco','2013',97,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:51'),(263,'In which of the following system is survival of the fittest mostly practiced','Communist system','Capitalist system','Feudalist','Totalistic system','','','b','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:52'),(264,'For now the Ebola disease has','no known cure','several known cures','cannot kill its action','no physically observable symptoms','','','a','','neco','2013',86,'Admin','2016-11-27 17:44:17','2020-07-14 13:38:53'),(265,'Some years ago a popular Governor in one of the states in Nigeria was asked to mention some mineral \tresources from his state. He made mention of “Fanta, Pepsi, Coca cola. The governor is','right','wrong','illiterate','unpatriotic','','','b','','neco','2013',83,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:00'),(266,'If you were to be in the Governor’s shoes which of the following would you have chosen?','Miranda and seven up','coca cola and Fanta','petroleum','stock, bonds and cash','','','c','','neco','2013',93,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:01'),(267,'The right practice of democracy can','ensure equity, justice and far play','discourage political education and awareness’','political unrest','lawlessness','','','a','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:02'),(268,'Political Apathy can lead to','very fast pace of development','the emergence of sound democratic government','wrong set of people coming into power','development of sound political culture','','','c','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:03'),(269,'Human traffickers usually engage their victims .........','in educative programs','in forced labour','in skill acquisition activities','in recreational activities','','','b','','neco','2013',71,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:04'),(270,'During a particular voting exercise if majority of the \tpeople refuse to vote, this can be described as','political stubbornness','political apathy','political awareness','political socialization','','','b','','neco','2013',83,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:05'),(271,'Mr Dickson’s little son, clement was sent away from school because he has not paid his school fees of \tN=11,000. That same day as Mr Dickson boarded a Danfo bus he noticed that the purse of a fellow passenger dropped on the floor of the bus. Mr Dickson tactically picked up the purse, opened it and saw a handsome sum of N=100,000. No body in the bus noticed him, neither did the fellow passenger. As a patriotic and good citizen of Nigeria, what is Mr Dickson expected to do','Pay his tithe (1/10 of the money) to the church take the rest and pray for forgiveness','Draw the attention of the fellow passenger and give the money back to him /her','Use part of the money to pay his son’s fess and keep the rest because opportunity comes but once','Leave the purse on the floor, and mind his business','','','b','','neco','2013',75,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:06'),(272,'Public corporations are','meant to make profit','not meant to make profit','not expected to produce','established to gather public opinion','','','b','','neco','2013',98,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:07'),(273,'The attitude of the crowd towards, the sick man was that of ............','indifference','friendliness','hospitality','political apathy','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',102,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:08'),(274,'Which of the following could be a possible reason for the crowds attitude towards the sick man','They were afraid that he might be an unknown soldier','They kept their distance so as not to contact the Ebola virus, in case he has it','They were not used to helping visitors','They kept their distance so as not to contact the HIV/AIDs virus, in case he has it','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','b','','neco','2013',101,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(275,'If the crowd insisted on keeping their distance what appropriate action could they have taken','call the appropriate health department to intervene','left him to his fate','stone him to death','desert him','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(276,'If the crowd suspected that he had the Ebola virus and wish to call the Ebola emergency line, which one of the following could they have called?','08023169485','0803361424','08023361936','08027063614','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',90,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:10'),(277,'Any forms of restricted franchise is a violation of the principle of','political equality','sovereignty','legality','constitutionalism','','','a','','neco','2013',90,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:11'),(278,'Which of the following is not the civic obligation of a citizen','payment of taxes','freedom of conscience and speech','voting during elections','obedience to law','','','b','','neco','2013',97,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:12'),(279,'A sovereign state is one','whose citizens are free to evade responsibility','whose governments decisions are made independent of foreign interference','which has a president and a prime minister','where its citizens can speak without fear or favour','','','b','','neco','2013',99,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:13'),(280,'Jamiu and Onome were among those standing inside a BRT bus in Lagos. Onome mistakenly stepped on Jamiu and Jamiu gave Onome a very dirty slap. As a law a biding citizen of the country which of the following reactions is expected of Onome','Turn the other chick for another slap','Slap Jamiu back and prepare for any fight that might ensure','Let Jamiu know that he, Onome stepped on him inadvertently, but pardon him to avoid escalating the matter','Push Jamiu down from the moving bus','','','c','','neco','2013',85,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:14'),(281,'Juvenile delinquency refers to','active youths participation in sports','wrong doings by the youths','Refusal to worship God by the youths','Urban Rural migration by the youth','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:15'),(282,'Psychopathy is a form of ................ behaviour','Normal','abnormal','desired','valued','','','b','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:16'),(283,'Consumers of ......... especially ........... and ..............stand the a great risk of contacting the Ebola disease','fish, tilapia, titus','bush meat, monkey, bat','meat, cow, dog','vegetable, water leaf, bitter leaf','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:17'),(284,'Government is the machinery established to manage the affairs of','the state','the civil service','peasants and students','strangers','','','a','','neco','2013',102,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:18'),(285,'The judicial organs of government is the body which','makes the law','implements the law','interpreters the law','rewards lawmakers','','','c','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:19'),(286,'The Ebola disease is usually acquired when a person comes in contact with','the blood or bodily fluids of an infested organism','anybody whose name is Bola','any animal','snake fish','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:20'),(287,'The prime minister is vested with the powers of the executive in ........... system of government','a parliamentary','a presidential','a monarchical','unitary','','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:27'),(288,'Through which of these can citizenship status be acquired','birth, naturalization, honorary and registration','birth, colonization and integration','referendum, incorporation and acceptance','convention registration and colonization','','','a','','neco','2013',99,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:28'),(289,'That which people enjoy primarily because they are human beings are called ...............','Human Obligation','Constitutional Right','Human Right','Democratic Right','','','c','','neco','2013',93,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:29'),(290,'Which of these categories of people stand the greatest risk of contacting the Ebola virus .........','Lecturers and students in the school','Health workers and their family members','Hunters and their family members','b and c above','','','d','','neco','2013',78,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:45'),(291,'It is often said that public servants cannot be held responsible for their actions. This principle denotes .................','anonymity','civic irresponsibility','accountability','neutrality','','','a','','neco','2013',84,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:46'),(292,'Free, fair and credible elections are attributes of .......','undemocratic government','democratic government','military regime','monarchical governance','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:52'),(293,'The followings are symptoms of Ebola excepts','sudden fever and vomiting','headaches and diarrhea','muscle pains','frequent hunger and increase thirst for water','','','d','','neco','2013',105,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:53'),(294,'Public service belongs to ................','the legislative arm of government','the judiciary arm of government','senate arm of government','the executive arm of government','','','d','','neco','2013',97,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:54'),(295,'Human traffickers usually force their victims to engage in','rewarding exercise','religious activities','forced labour','useful trade','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:24','2020-07-14 13:39:55'),(296,'Public servants in Nigeria are expected to be .............','involved in politics','non-partisan','ambitious politically','partial','','','b','','wassce','2011',96,'Admin','2016-12-12 19:40:24','2020-07-14 13:39:56'),(297,'HIV and Ebola can be contacted through contact with','Non infected person','contaminated medical equipment such as needles and syringes','Very sick person','Healthy reptiles','','','b','','wassce','2011',113,'Admin','2016-12-12 19:40:24','2020-07-14 13:39:57'),(298,'Which of the following is not a preventive measure against the acquisition of the Ebola disease...........','Do not touch an infected person or their body fluids including blood, vomit, urine, saliva','Wash your hands regularly with soap and water and apply sanitizers frequently','Beware of hand shake and go for medical checkup as soon as possible when sick','Do not bath with medicated soap','','','d','','wassce','2011',91,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:09'),(299,'Nigeria celebrated her centenary anniversary in the ......','1954','1960','1963','2014','','','d','','wassce','2011',99,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:10'),(300,'Which of the following are Ebola Emergency lines','08023169484 or 08033086660','08023361936 or 08034623521','08023164216 or 08033065936','08055281400 or 08023361936','','','a','','wassce','2011',106,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:11'),(301,'An individual with feverish condition who has taken Panadol is advised to see the ............ if the feverish condition persists after .......... days','father, four','pastor, three','doctor, three','doctor, ten','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:12'),(302,'Which of these is NOT undesirable in the society','cultism','terrorism','patriotism','vandalism','','','c','','wassce','2011',103,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:13'),(303,'As at 2014 Nigeria has .......... states','47','37','60','57','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:14'),(304,'The Boko Haram insurgency started around','2009','2014','1960','1963','','','a','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:15'),(305,'A sense of right and wrong guiding a person’s action is known as','attitude','conscience','action','manner','','','b','','wassce','2011',88,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:16'),(306,'Which of the following is a bad habit capable of leading to future psychological and physiological ill health','self Actualization','Self Meditation','Self Medication','Self Appraisal','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:17'),(307,'Civic Education is also known as ....................','Organizational Structure','Citizenship Education','Customers Opinion','Government Policy','','','b','','wassce','2011',105,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:18'),(308,'The number of Girls abducted by members of Boko Haram at Chibok in 2014 is roughly','200','219','419','180','','','b','','wassce','2011',94,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:19'),(309,'The Ebola virus can be prevented by','washing our hands regularly and applying sanitizer','washing our head always','taking drugs regularly','eating balanced diet','','','a','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:21'),(310,'If six political parties contest for an election (A, B, C, D, E, F), what is the probability that party C will wine the election','1/3','1/4','1/6','1/2','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:24'),(311,'Another word for abduction is ...........................','to steal','to adopt','to kidnap','to kill','','','c','','wassce','2011',99,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:25'),(312,'In Lagos state and some other states in Nigeria, motorcycle (okada) riders are expected to wear ............ while on motion','Boot','Hand glove','Crash helmet','Black coloured shirt','','','c','','wassce','2011',74,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:26'),(313,'In Lagos state, the BRT lane is reserved for ....... only','The governor','Soldiers','Commercial buses','BRT buses','','','d','','wassce','2011',97,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:27'),(314,'Mondays and Thursday are days meant for in between environmental sanitation exercise in ........... and .......... states respectively','Lagos and Edo','Edo and Lagos','Abuja and Lagos','Delta and Lagos','','','b','','wassce','2011',102,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:28'),(315,'One way for Nigerians to maintain steady good health is by','taking malaria medicine everyday','bathing with salt water and eating bitter kola always','taking balance diet and engaging in regular physical exercise','taking alcohol and cigarettes regularly','','','c','','wassce','2011',86,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:29'),(316,'Which of the following is the cleanest source of water in Nigeria','pond water','river water','rain water','lagoon water','','','c','','wassce','2011',96,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:30'),(317,'Which of these tax below is paid by nearly everybody in Nigeria','Direct tax','Excise tax','Proportional tax','Regressive','','','b','','wassce','2011',101,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:31'),(318,'Which of the following was a former military head of state in Nigeria','MKO Abiola','Goodluck Jonathan','General Idiagbon','General Babagida','','','d','','wassce','2011',94,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:32'),(319,'The three larges and most influential ethnic groups in Nigeria are','Yoruba, Edo and Hausa','Igbo, Iteskiri and Hausa','Hausa, Igbo and Yoruba','Fulani, Yoruba and Efik','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:33'),(320,'The former National anthem begins with.......................','Nigeria We Hail Thee','Arise O Compatriots','I pledge to Nigeria my Country','So help me God','','','a','','wassce','2011',102,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:34'),(321,'NUC and NBA stands for ......... and ......... respectively','National University Commission and Nigeria Bar Association','Nigeria Bar Association and National University Commission','National Union Congress and Nigeria Basketball Authority','National Utilities Commission and Nigeria Bar Association','','','a','','wassce','2011',87,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:35'),(322,'General Murtala Mohammed was assassinated on his way to work in ..............','February 13, 1976','June 12, 1993','October 1, 1960','June 8, 1998','','','a','','wassce','2011',103,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:36'),(323,'Naira and Kobo was introduced in Nigeria in ..............','2nd July,1963','1st January 1972','June 12, 1993','March13, 1995','','','b','','wassce','2011',97,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:37'),(324,'In the General election of June 12 1993, the two main candidates that contested for the post of presidency were ......','MKO Abiola and Olusegun Obasanjo','MKO Abiola and Tofa','Atiku and Olusegun Obasanjo','Yaradua and Goodluck Jonathan','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:37'),(325,'A committee of PDP members is made up of 9 Hausas, 8 Igbo and 7 Yorubas. If the president wishes to choose just one person to be his special adviser, find the probability that the person chosen is neither Hausa nor Yoruba','7/24','2/3','3/8','1/3','','','d','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:38'),(326,'Driving, especially along the highway requires serious  ...........','concentration','meditation','concentration','perambulation','','','c','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:39'),(327,'A Taxi diver who mistakenly Jams and kills someone is guilty of ............... and he will receive ................ punishment than if it were a case of ........','murder, less, manslaughter','man slaughter, less, murder','manslaughter, more, murder','civil offence, less, murder','','','b','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:40'),(328,'The full meaning of NYSC is ..............','Now Your Suffering Continues','Nigeria Youths Serving Christ','National Youth Service Corps','Nigerian Youth Service Corps','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:41'),(329,'The NYSC was established in the year .................','May 22, 1973','June 15, 1960','May 22, 1963','August 20,1993','','','a','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:42'),(330,'One of the main objectives of establishing the NYSC is to .................','Enable the youths to have some practical experience \t\t     after schooling','Forster National unity','Engage the young graduates because “Idle mind is the devil’s workshop”','Create employment for the young graduates','','','b','','wassce','2011',84,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:43'),(331,'Those eligible to partake in the scheme are those','Those seeking for admission into the higher institutions','Who have successfully completed their studies from higher institution .eg. college of education, \t\t     polytechnic & university','Who are looking for something to keep them busy','Who are from poor family background','','','b','','wassce','2011',94,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:44'),(332,'The age limit for the service is ..............','25','35','30','18','','','c','','wassce','2011',92,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:45'),(333,'At the end of the service year each corper will be given ......... as an evidence that he or she has successfully completed the service','NYSC passport','National ID Card','NYSC discharge certificate','Letter of appreciation','','','c','','wassce','2011',105,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:46'),(334,'Which of the following is true','The CD (Community Development) exercise   embarked by corpers is not paid for by the community','Corpers collect extra money for embarking on the C.D','Corpers are not usually given monthly allowances','The aim of the NYSC scheme is to foster disunity   in the country','','','a','','wassce','2011',96,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:47'),(335,'The killing of NYSC members in certain parts of the country  ................','Contradicts the goal of establishing the scheme','Is in line with the aims of establishing the scheme','Is not a serious matter','Enhances national unity','','','a','','wassce','2011',86,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:48'),(336,'Nigeria is a ............. state','Communist','Capitalist','socialist','Feudalist','','','b','','wassce','2011',93,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:49'),(337,'Some years to come, when you become the President of Nigeria, which of the options below will you choose \tto eradicate porzverty in the country','carry all the poor people away from Nigeria to another country so when there are no poor people poverty will be gone forever','print plenty Naira Notes and give millions to every Nigeria','Import plenty Agricultural and Manufactured goods','None of the above','','','d','','wassce','2011',94,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:50'),(338,'On the 18th of November 2014 in Yobe, some crowds lynched a suspected suicide bomber. The action of the crowd is .....','right because ‘he who kills by the sword must die by the sword’','wrong because they have unlawfully taken the law into their hands, they should have handed the suicide  bomber over to the police','right because we all have to fights against all forms of terrorism','right so that others will learn lesson from this action','','','b','','wassce','2011',87,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:51'),(339,'In the year 2014 the catholic church in Nigeria suspended the usual hand shaking (as a sign of peace) among its members just after the “Lord’s prayer” The most likely reason for this action is to prevent the \t\tspread of ............, in case a member has it','HIV/AIDs virus','The Ebola virus','Evil and demonic spirit','malaria fever','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:52'),(340,'Decrees are laws made by .............','the parliament','the judiciary','the military','senators','','','c','','wassce','2011',90,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:53'),(341,'The document containing the aims and programs of a political party is called ...........','register','manifesto','memorandum of party','party library','','','b','','wassce','2011',100,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:53'),(342,'The former PHCN is a good example of .................. in Nigeria','civil service','perfect competition','public corporation','private monopoly','','','c','','wassce','2011',107,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:54'),(343,'Orderliness can be defined as','being punctual to work','studying diligently in school','doing things in a proper way','learning the Western way of life','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:55'),(344,'The Traffic in Persons Prohibition and Administration Act was passed in Nigeria in','December 2001.','October 2002','August 2003','April 2004.','','','c','','wassce','2016',89,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:56'),(345,'The process of enabling someone to perform an action which adds value to his/her life is known as','employment','recruitment','socialization','empowerment','','','d','','wassce','2016',88,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:58'),(346,'Rates are collected in Nigeria by','Federal Inland Revenue Service','State Ministry of Finance','Local Government Councils','Council of Traditional Rulers','','','c','','wassce','2016',93,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:59'),(347,'The Fourth Schedule of the 1999 Constitution of Nigeria outlines the functions of','federal government','local government','national government','state government','','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:00'),(348,'Lack of interest in politics by citizens in the country is referred to as political','ignorance','apathy','participation','socialization','','','b','','wassce','2016',92,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:01'),(349,'Which of the following instruments is not used by a civil society group?','Propaganda','Boycott','Protest','Violence','','','d','','wassce','2016',92,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:02'),(350,'The administrative class in the public service is to','implement policies','formulate policies','veto policies','oversee policies','','','a','','wassce','2016',75,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:02'),(351,'“We the people of the Federal Republic of Nigeria” is usually the opening phrase of the preamble to','coup announcement','government gazettes','constitution','mansard','','','c','','wassce','2016',80,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:04'),(352,'One of the responsibilities of a good citizen is to','possess an international passport','enjoy all amenities provided by government','serve the country when required','develop his potentialities to the fullest','','','c','','wassce','2016',87,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:05'),(353,'Naturalized citizens cannot be denied their legal status as members of a country unless if they','are jailed for one year within seven years of acquiring citizenship','are found guilty to be spies or secret agents for another country','refuse to represent the country in an international sporting event','give adequate information to the host country','','','a','','wassce','2016',82,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:06'),(354,'Citizenship education influences an individual to be','patriotic','educated','complacent','competent','','','a','','wassce','2016',99,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:07'),(355,'Which of the following is not an example of orderliness?','Listening skill','Driving skill','Decorum','Deviance','','','d','','wassce','2016',71,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:08'),(356,'Which of the following statements is not correct?','Valid driver’s license must be obtained before attempting to drive','Flowing garment can be worn on a motorcycle or bicycle','Headlights should be used during unfavourable weather','Drivers must not engage in distractive activities while driving','','','d','','wassce','2016',81,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:09'),(357,'Cultism can best be discouraged through','mentoring of cultists by the rich','provision of jobs for cultists','sensitization on the dangers of cultism','establishment of cultists support groups','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:10'),(358,'Which of the following is a consequence of drug abuse?','Depression','Victimization','Inefficiency','Cowardice','','','a','','wassce','2016',88,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:11'),(359,'The effect of human trafficking on the victims is','illiteracy','affluence','exposure','exploitation','','','d','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:11'),(360,'The general attitude of government and society towards cultism is that of','affection','sympathy','abhorrence','support','','','c','','wassce','2016',93,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:12'),(361,'Drug abuse can be prevented by','fighting drug addicts','poverty reduction','reducing drugs in circulation','legal sanction','','','b','','wassce','2016',92,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:14'),(362,'A major factor responsible for human trafficking is','hunger','illiteracy','greed','joblessness','','','c','','wassce','2016',94,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:14'),(363,'People Living With HIV/AIDS (PLWHA) can be supported by','billing them for antiretroviral therapy','providing drugs for them at subsidized rates','providing special attires for them','providing accommodation for them in designated locations','','','b','','wassce','2016',90,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:22'),(364,'Cult members are particularly hostile to','lecturers','perceived enemies','their group members','all students','','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:23'),(365,'Drug law enforcement agencies in Nigeria are not empowered to','execute drug suspects','arrest drug barons','prosecute drug traffickers','rehabilitate drug addicts','','','a','','wassce','2016',81,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:24'),(366,'Which of the following is not a means of reducing the incidence of HIV/AIDS in our society?','Education and enlightenment programs','The use of specially designed cutlery by victims','Avoiding pre-marital and extra-marital sex','Upholding the value of chastity','','','b','','wassce','2016',95,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:25'),(367,'Youth empowerment promotes','self-reliance','youthful exuberance','pursuit of higher education','foreign scholarship','','','a','','wassce','2016',88,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:26'),(368,'The Supreme Court of Nigeria helps in law','drafting','application','interpretation','enforcement','','','c','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:26'),(369,'Democracy thrives most where there is','nonpartisan judiciary','freedom of speech and association','absence of universal suffrage','one-party system','','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:27'),(370,'Rule of law is limited by the following except','state of emergency','habeas corpus','illiteracy','immunity','','','c','','wassce','2016',87,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:28'),(371,'Preventive measures of HIV/AIDS do not include','abstinence','screening of blood before transfusion','use of barrier method','stigmatization of victims','','','d','','wassce','2016',78,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:30'),(372,'One of reasons leaders fail to protect the interest of their followers is','selfishness','inadequate finance','ignorance','rigid policies','','','a','','wassce','2016',86,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:31'),(373,'Which of the following is not a form of political participation?','Taking part in voters’ registration exercise','Voting during elections','Joining political party','Ballot box stuffing during elections','','','d','','wassce','2016',96,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:32'),(374,'Civil Society groups perform the following roles during general elections except','educating the voters','serving as watchdog','counting votes','stimulating participation','','','c','','wassce','2016',74,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:33'),(375,'Which of the following is not an example of civil society group?','United Action for Democracy','United Nations Organization','Transition Monitoring Group','Amnesty International','','','b','','wassce','2016',88,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:34'),(376,'One of the major complaints against public service is','inefficiency','understaffing','victimization','discrimination','','','a','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:35'),(377,'Which of the following is not a way of improving public service?','Politicization','Refresher courses','The use of Code Conduct Bureau','Reformation','','','a','','wassce','2016',94,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:36'),(378,'Children that are not cared for are mostly prone to','criminal attitudes','terminal diseases','examination failure','forced migration','','','a','','wassce','2016',91,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:38'),(379,'The motherland in the monologue could best be described as','a nation in transition','a morally upgrading country','a socially viable nation','an ethically bankrupt country','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:39'),(380,'In spite of the state of affairs reflected in the above monologue, the citizens can make the country better by being committed to','promoting inter-communal relations','strengthening capacity building','championing moral values','encouraging interpersonal relations','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','c','','wassce','2016',84,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:40'),(381,'Based on the monologue above, the best approach to curb moral decadence in the motherland is by','value re-orientation','introducing war against corruption','legalizing capital punishment','sending corrupt officials on exile','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','a','','wassce','2016',84,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:41'),(382,'The most important contribution of responsible parenthood to national development is that it','increases youthful population','fosters national integration','augments the nation workforce','breeds dependable citizenry','','','c','','wassce','2016',91,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:42'),(383,'Which of the following can not be easily abused?','Cosmetics','Stimulant','Tobacco','Narcotics','','','a','','wassce','2016',78,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:43'),(384,'Dr. Fajir cannot exercise some basic rights because he','was a suspect in a criminal case','was found guilty of a criminal offence','failed to comply with court order','embezzled public fund','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','b','','wassce','2016',125,'Admin','2016-12-12 19:57:16','2020-07-18 19:07:46'),(385,'According to the above story, the open trial of Dr. Fajir and his representation by lawyers of his choice in a court of competent jurisdiction is an indication of','respect for habeas corpus','freedom of expression','respect for human rights','freedom of legal representation','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','c','','wassce','2016',80,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:45'),(386,'Based on the above story, which of the following would Dr.Fajir not be allowed to do while in prison?','Voting during elections','Engaging in hard labour','Participating in prison fellowship','Writing examination','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','a','','wassce','2016',78,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:46'),(387,'The most important place for building good values is the','social welfare centre','workplace','family','media houses','','','c','','wassce','2016',76,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:47'),(388,'Citizen’s compliance with tenets of the Nigerian National Pledge will enable the country to','receive reciprocal assistance','witness value clarification','get international aid','experience development','','','b','','wassce','2016',82,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:48'),(389,'Which of the following statements may be true about the behaviour of the candidates in the diagram?','The candidates are doing what is ethical','Candidates involved in malpractice should be banned for life','Their action can also affect innocent candidates','Their misconduct will guarantee a reliable certificate','','','b','','wassce','2015',76,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:49'),(390,'Based on the above diagram, the candidates would not have cheated if','they were well-spaced','there was an invigilator','they were hardworking','there was nobody to copy from','','','c','','wassce','2015',86,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:50'),(391,'In which year did the United Nations General Assembly adopt the Universal Declaration of Human Rights?','1945','1946','1947','1948','','','a','','wassce','2015',81,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:50'),(392,'Two forms of road signs are regulatory and','punitive','informative','persuasive','inhibitive','','','b','','wassce','2015',86,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:52'),(393,'Which of the following factors does not affect interpersonal relationship?','Communication','Withdrawal','Compatibility','Forgiveness','','','b','','wassce','2015',83,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:53'),(394,'The following cadre of students are the main target for campus cult membership except','students from wealthy homes','students from influential parents','bold and morally sound students','wayward and fun-loving students','','','c','','wassce','2015',88,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:54'),(395,'The National Agency for Food and Drug Administration and Control (NAFDAC) was established in','1993','1996','1999','2001','','','a','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:55'),(396,'National Agency for the Prohibition of Traffic in Persons (NAPTIP) is an initiative of','Federal Government of Nigeria','United States Agency for International Development','Woman Trafficking and Child Labour Eradication \tFoundation','United Nations Office on Drugs and Crime','','','a','','wassce','2015',77,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:56'),(397,'World AIDS day is observed on','20th May','30th July','27th August','1th December','','','d','','wassce','2015',71,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:57'),(398,'An enabling environment created to help an individual have effective control of his/her situation is known as','reinforcement','empowerment','endowment','enhancement','','','b','','wassce','2015',90,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:58'),(399,'In order to avoid undue interference in the process of governance, there should be','clear cut separation of governmental powers','proper fusion of governmental powers and functions','more roles for traditional rulers in the governmental process','additional responsibility for local government council','','','a','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:59'),(400,'Red-tapism is one the shortcomings of','private enterprise','public service','non-governmental organization','pressure groups','','','b','','wassce','2015',90,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:00'),(401,'An ideology that aims at promoting national consciousness and identity is','nationalism','socialization','civic culture','progressivism','','','a','','wassce','2015',88,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:01'),(402,'Human rights are described as inviolable mainly because they are','authoritative declaration','enforceable everywhere','not to be unnecessarily taken away','legal declaration instruments','','','d','','wassce','2015',63,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:02'),(403,'Law and order can best be maintained in Nigeria through the','prohibition of public protest','enforcement of rules and regulations','use of divide and rule policy','promotion of indigenization policy','','','b','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:03'),(404,'A responsible parent is someone who','cares and provides for the children','indulges the children because of love','works in order to receive salary','employs house-helps to take care of the children','','','a','','wassce','2015',79,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:04'),(405,'A major way of promoting responsible parenthood is through','sex education','sound education','population control measures','tax reduction measures','','','a','','wassce','2015',95,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:05'),(406,'Which of the following is not included in the stages of interpersonal relationship?','Rejuvenation','Deterioration','Termination','Continuation','','','c','','wassce','2015',82,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:06'),(407,'Cultism in tertiary institutions in Nigeria was originally introduced to','perpetuate the use of local gin and alcohol','harass opponents of university administrators','fight colonialism and oppressive rules','promote inter-communal marriages.','','','c','','wassce','2015',101,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:07'),(408,'Which of the following is not a function of the National Drug Law Enforcement Agency (NDLEA)?','Applying and implementing all drug laws','Arresting, investigating and prosecuting drug traffickers','Undertaking the registration of companies dealing \tin drugs','Carrying out enlightenment campaigns on drug trafficking','','','c','','wassce','2015',72,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:08'),(409,'An individual who finds it difficult to control in-take of drug is known as drug','baron','traffickers','mogul','addict','','','d','','wassce','2015',77,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:09'),(410,'The NDLEA personnel are not usually found in','international airports','seaports','border crossings','foreign embassies','','','d','','wassce','2015',94,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:10'),(411,'Which of the following statements best describes Human Trafficking?','Recruitment of youths as casual workers','Desperate desire by youths to travel abroad','Buying and selling of humans for selfish purposes','Transportation of gods and service through human portage','','','c','','wassce','2015',81,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:31'),(412,'From the above write-up what category of Kantoguan youth deserves to be effectively empowered?','Children of the ruling political class','Unemployed youths and school drop-outs','University undergraduates','Youth wing of religious organizations','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','b','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:33'),(413,'The responsibility of empowering the youth rests mostly with','the political class','religious organizations','university administrators','national government','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','d','','wassce','2015',80,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:35'),(414,'Based on the write-up, what immediate measures can those in authority take to empower the youths?','Build more youth orientation camps in the country','Enhance religious and moral education in schools and colleges','Provide entrepreneurial training with adequate fund','Provide free meal for the teeming unemployed youths','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','c','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:36'),(415,'A very important segment of the society which is distinct from government, business and home is the','civil society','public service','mass media','traditional institution','','','a','','wassce','2015',97,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:36'),(416,'HIV/AIDS is generally described as terminal in nature because it is','preventable','transmittable','avertable','incurable','','','d','','wassce','2015',82,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:37'),(417,'Inter-communal relationship is best described as','the interaction between individuals, groups or organizations with common aspirations','the interaction among individuals and professionals in a social setting','loyalty to community leaders so as to achieve rapid communal development','respect for collective national symbols in order to foster nationalistic feeling','','','a','','wassce','2015',84,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:38'),(418,'A situation whereby someone is obliged to inform a superior about his actions and decisions for the purpose of control is','probity','self-discipline','accountability','fair play','','','c','','wassce','2015',92,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:39'),(419,'The above quotation summarizes the','Universal Declaration of Human Rights.','African Charter on Human Rights.','Geneva Conventions and Protocols.','United Nations Organization Charter.','“All human beings are born free and equal in dignity and rights. They are endowed with reason and \t\tconscience and should act towards one another in a spirit of brotherhood”.','','a','','wassce','2015',78,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:40'),(420,'Effective and responsible parenthood is primarily','a national duty','a military duty','a political duty','an economic duty','','','a','','wassce','2015',73,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:41'),(421,'Association and affiliation between two or more people is called','multilateral relations','bilateral relations','inter-communal relations','interpersonal relations','','','d','','wassce','2015',86,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:43'),(422,'A bill passed by the National Assembly requires the assent of the president before it becomes law. The law can be declared null and void by the court of law. The process above emphasizes the','supremacy of judiciary over other arms of government','relationship among the arms of government','importance of law makers in a democracy','fundamentals of the rule of law.','','','d','','wassce','2015',75,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:44'),(423,'The idea that “Law should be impartial with the people who break it” implies','principle of fair hearing','right to legal representation','equality before the law','prerogative writ of habeas corpus','','','c','','wassce','2015',105,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:45'),(424,'The foreign policy objective of Nigeria as enshrined in the 1999 Constitution exclude the promotion of','national interest','African integration','support for donor agencies','just world economic order','','','c','','wassce','2015',97,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:46'),(425,'Democracy can promote national development if there is','good governance','promotion of culture','immunity for leaders','registration of parties','','','a','','wassce','2015',79,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:47'),(426,'A major civil society group which campaigned against military rule prior to the advent of the Fourth Republic in Nigeria is the','Campaign for Democracy','Save Nigeria Group','Civil Liberties Organization','National Democratic Coalition','','','a','','wassce','2015',74,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:48'),(427,'Which of the following function is not performed by the Public Service Commission?','Evaluating the performance of ministries and departments','Advising government on technical matters','Preparing the annual budget and assenting to it','Organizing enlightenment program and training','','','d','','wassce','2015',104,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:49'),(428,'Which of the following is a major challenge to civil society in Nigeria?','Value disorientation','Diverse political interests','Inadequate funding','Unstable political system','','','a','','wassce','2015',85,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:50'),(429,'Democracy is yet to take firm root in Africa because','it retards African development','African leaders are not experienced enough','most African leaders detest the will of the people','it is an expensive system of government','','','c','','wassce','2015',82,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:52'),(430,'Nationalism ensures the following except','national consciousness','secession in a country','national integration','unity in a country','','','b','','wassce','2015',89,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:53'),(431,'Justice demands that people should always do what is','persistently convenient','consistently right','individually acceptable','courageously necessary','','','b','','wassce','2015',73,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:54'),(432,'Orderliness in the society is good mainly because it','discourages poverty','promotes peace and stability','guarantees employment for youths','ensures maximum rewards from leaders','','','b','','wassce','2015',82,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:55'),(433,'Which of the following is necessary for the effective application of the rule of law?','Political will to ensure that laws are obeyed','Employment opportunities for all citizens','The fusion of the three arms of government','Extension of the retirement age of judges','','','a','','wassce','2015',83,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:56'),(434,'Ade’s action as shown in the dialogue is a demonstration of political','wisdom','apathy','lawlessness','participation','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','b','','wassce','2015',84,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:57'),(435,'It could be inferred from the dialogue that failure to vote in an election would','guarantee citizens’ rights','encourage the emergence of responsive government','promote accountability in governance','perpetuate irresponsible leadership','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','d','','wassce','2015',92,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:59'),(436,'From the above dialogue, political leaders can encourage citizens to perform their civic duties by','fulfilling their electoral promises','travelling overseas to seek for foreign investors','engaging in religious activities','visiting all the local governments in the country','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','a','','wassce','2015',90,'Admin','2016-12-12 20:15:44','2020-07-14 02:24:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `commerce` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=888 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `commerce` VALUES (1,'Ships that sail across the ocean and operate on scheduled time are ','ferries ','ocean liners ','tramp steamers  ','coastal liner','','','b','','utme','2004',327,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:51'),(2,'Non-insurable risks include ','gambling ','damage to property','death','marine ','','','a','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:52'),(3,'The program that makes up the operating system in a computer is         ','micro program','system flowchart','system software','syntax','','','c','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:53'),(4,'When an organization studies a market that is underserved by others and creates a product or service for the segment, it is engaged in','market integration  ','market positioning','market orchestration','product differentiation','','','c','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:54'),(5,'Coverage against unexpected events is called',' insurance ','assurance   ','warranty','reinsurance','','','a','','utme','2004',325,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:55'),(6,'An insured risk which occurs accidentally as a result of defects in a ship is','a voyage policy    ','a total loss','an emergency     ','a particular average','','','d','','utme','2004',313,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:56'),(7,'Communication enhances business activities by','facilitating interaction between producers and consumers ','facilitating interaction among media houses','ensuring the movement of goods from the producer to the consumer','keeping the goods safe until they are needed','','','a','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:57'),(8,'In business, the computer is very important  especially in  ','financial management','marketing management   ','educational  management    ','information management','','','d','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:58'),(9,'What is the most important use of promotion in marketing?     ','Persuasion   ','Conviction','Information ','Education','','','c','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-14 12:46:59'),(10,'The current highest decision-making body on  privatization and commercialization of public enterprises in Nigeria is the','National Council on Privatization','Securities and Exchange Commission','Nigeria Investment Promotion Commission','Bureau of Public Enterprises','','','d','','utme','2004',313,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:00'),(11,'The members of the Niger Basin Commission  include  ','Guinea, Ghana and Niger Republic','Burkina Faso, Guinea and Nigeria ','The Gambia, Benin Republic and Chad Republic',' Nigeria, The Gambia and Cameroon','','','d','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:01'),(12,'Business environment refers to all elements that are  ','outside an organization but relevant to its operations ','inside an organization but irrelevant to its operations   ','internal to an organization and relevant to its operations','external to an organization but indirectly related to its  operations','','','d','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:02'),(13,'Consumer rights include the right to   ','credit','free samples of a product  ','redress','a share of profits','','','c','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:03'),(14,'One important requirement for the membership of the ECOWAS is ','integrity ','independence ','landmass   ','population','','','b','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:04'),(15,'In Nigeria, the body that ensures that its members operate according to their professional ethics is the   ','SON  ','NPF   ','MAN ','NAFDAC','','','a','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:05'),(16,'A transporter who had to sell some perishable goods without the prior authority of the owner  becomes an agent by   ','conduct ','necessity','ratification  ','estoppel','','','b','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:06'),(17,'Poor sewage disposal, oil spill and indiscriminate refuse dumping all ','lead to  land pollution','water pollution   ','land and water pollution','air and water pollution','','','d','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:07'),(18,'One of the advantages of commercialization is that it','encourages entrepreneurship','increases the salaries of workers','motivates government to establish more  businesses   ','gives workers on-the-job training','','','a','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:08'),(19,'A common element in all contracts is    ','offer','  consideration   ','acceptance ','agreement','','','d','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:09'),(20,'Sources of finance to a business include personal  savings, shares, debentures and ','loans from IMF   ','bank overdrafts ','central bank loans','money from political parties','','','b','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:10'),(21,'Charges for loans paid by commercial banks to the Central Bank of Nigeria are called   ','bank rates   ','credit charges   ','interest rates',' bank charges','','','a','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:12'),(22,'In the primary market, new shares are issued  through  ','personal selling, publicity and advertising  ','a prospectus, an offer for sale and a bill of exchange   ','advertising, a prospectus and a bill of exchange','a prospectus, an offer for sale and placing','','','b','','utme','2004',343,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:13'),(23,'The instruments of credit include ','billboards and postal stamps','payment vouchers and statement of account','bills of exchange and promissory notes','bills of exchange and salary vouchers','','','c','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:14'),(24,'The shares of a company listed on the stock exchange for sale are referred to as','registered shares  ','deferred shares ','issued shares       ','quoted shares','','','d','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:16'),(25,'What is the role of the capital market in the privatization exercise in Nigeria?    ','Selling the shares and stocks of the companies to be  privatized ','Encouraging private companies to  participate in the exercise ','Negotiating with individuals who want to buy public companies','Advertising for government','','','a','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:17'),(26,'In international trade, documentary credit is also known as   ','credit note   ','letters of credit','bankers\\' draft       ','letter of hypothecation','','','b','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:18'),(27,'A specialized institution in Nigeria that deals in  capital investments in the form of stocks, shares, bonds and debentures is the ','Securities and Exchange Commission ','commodity market','Nigerian Stock Exchange ','Central Bank of Nigeria','','','a','','utme','2004',321,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:19'),(28,'A group of assets which a business acquires with the intention of reselling them are referred to as','  current assets    ','investment assets','fixed assets    ','intangible assets','','','b','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:20'),(29,'Authorized share capital is also known as','called-up share capital    ','paid-up share capital ','registered share capital  ','issued share capital','','','c','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:21'),(30,'An action taken by a company outside its object clause is regarded as ','ultra vires    ','a trespass   ','uberrima fides    ','caveat emptor','','','a','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:22'),(31,'The strategy adopted by a firm that ceases to operate at one or more locations because of inactivity is  ','rejuvenation ','focus','diversification     ','consolidation','','','c','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:23'),(32,'A written partnership contract is known as','an invoice ',' a deed      ','a prospectus','a proposal','','','b','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:24'),(33,'The merger of a textile mill, a cement company and a tannery is referred to as ','  conglomerate merger ',' horizontal merger ','lateral merger',' vertical merger','','','d','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:25'),(34,'As the branches indicate, iv is','commerce','exchange ','finance      ','construction','','','d','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:26'),(35,'What does v represent?','Aids to trade','Advertising  ','Manufacturing  ','Industry','','','a','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:27'),(36,'The most important function of commerce is','helping people to improve their profits','facilitating exchanges among individuals and firms ','assisting trade through banking and insurance   ','enhancing business relationships','','','b','','utme','2004',327,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:28'),(37,'The acronym PLC is used to identify a ','company limited by shares ','private company limited by shares','public company limited by shares','company limited by guarantee','','','c','','utme','2004',309,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:29'),(38,'Commerce includes all the occupations concerned with ','sales  ','production','marketing    ','distribution ','','','d','','utme','2004',314,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:30'),(39,'Factors of production can be described as the','resources required for the provision of goods and services   ','skills involved in deciding and directing the flow of goods  ','monetary tools employed by government to ensure stable production      ','elements involved in the process of formulating policies\\' on production ','','','a','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:31'),(40,'Fluctuations in the supply of goods may be eliminated if the distribution system maintains','modern technology ','a team of retailers','warehouse services  ','sufficient middlemen','','','a','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:32'),(41,'Loan schemes by thrift societies are ','mortgage schemes   ','conventional schemes   ','mutual schemes     ','unconventional schemes ','','','c','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:33'),(42,'An internal demand for goods to be purchased or drawn from stock is','a quotation','a requisition   ','a tender  ','an order','','','b','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:34'),(43,'The term 4 net 7 on an invoice means that','4% surcharge will be made unless payment is made within seven days   ','4% discount will be allowed on the price charged only if the goods are bought within seven days  ','4% discount will be allowed on the price charged if payment is made after seven days ','4% discount will be allowed on the price charged if payment is made within even days.','','','d','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(44,'An order sent by an importer to an overseas supplier stating the details of goods required is known as   ','A export invoice    ','ship\\'s manifest','an indent    ','bill of lading','','','c','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:36'),(45,'Organizing trade fairs in Nigeria is the responsibility of   ','National Directorate of Employment  ','Federal Ministry of Commerce','trade associations   ','chambers of commerce ','','','d','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(46,'International fade takes place as a result of','uniformity in costs of production','inequitable distribution of natural resources','parity in the level of industrialization','similarities in climatic conditions.','','','b','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:38'),(47,'The use of vending machines in retailing is hindered in a developing economy owing to','poor distribution network   ','low level of education    ','ineffective communication system','lack of steady power supply.','','','d','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:39'),(48,'Manufactures’ Association  of Nigeria contributes to development by advising the government on','industrial policy and harmony   ','budget and control ','budget and industrial policy','environmental protection policy ','','','a','','utme','2004',310,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:40'),(49,'Discounts offered by firms to middlemen for bulk purchases are ','A   trade discounts','sales  bonanza    ','cash discounts ','seasonal','','','a','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:40'),(50,'Goods are  of merchantable  quality if they','conform to description  ','are of equal weight','are of the same quality ','conform to buyers\\' purpose','','','a','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:41'),(51,'A floating policy is an example of','marine insurance    ','actuaries insurance ','motor insurance    ','fire insurance.','','','b','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:42'),(52,'The most important benefit of insurance is that it Provides ','control over activities','the insured with a right to premium','the insured with a right to full compensation','protection against risks.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(53,'Which part of the computer system does the keyboard device belong to? ','Output unit ',' Logic unit ','Input unit ','Control unit.','','','c','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(54,'The Lake Chad Basin Commission was formed in ','1974','1984','1954','1964','','','d','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(55,'A major disadvantage of the privatisation policy is that ','the economy would be private-sector-led ','citizens would benefit less from government','more money would be brought into circulation','government would loss control of the economy.','','','d','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(56,'The most important right of the employee in discharging his duties to the employer is the right to ','regular emoluments  ','job security ','working facilities  ','annual leave. ','','','b','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:47'),(57,'The most dangerous pollution is','water ','noise pollution','soil pollution   ','air pollution.','','','d','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:48'),(58,'The primary objective of consumer protection laws is to ensure that consumers derive maximum satisfaction from goods and services','consumers buy goods and services at cheap rates   ','manufacturers of goods and service providers overcome ','Internal competition','manufacturers of goods and service providers get optimum profit','','','a','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:49'),(59,'The compensation the insured gets depends heavily on the ','economic situation','premium paid ','risk suffered','insurer\\'s buoyancy','','','b','','utme','2005',142,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:50'),(60,'The computer that functions by taking discrete numbers and  performing mathematical calculations is called ','mainframe ','digital ','hybride','analogue.','','','c','','utme','2005',149,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:51'),(61,'Commercialization of government corporations brings about an increase in the level of','money supply in the economy','distrust among business operators','competition among business operators','social responsibility','','','c','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:52'),(62,'The difference between personal selling and sales promotion is that while sales promotion includes free gifts and samples, personal selling involves','distributing instructional posters','face-to-face communication with customers','premium programming for customers','publishing promotional booklets.','','','b','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:53'),(63,'The type of communication from a superior to a subordinate in an organization is referred to as','horizontal communication','lateral communication','downward communication','upward communication.','','','c','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:54'),(64,'A step-by-step method of carrying out functions in  an office is known as','procedure','organizing',' policy ','programme.','','','a','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:55'),(65,'The best means of sending unwritten messages simultaneously   to   many   branches   of  an organization within a country is the','television',' telephone   ','telegraph   ','radio.','','','c','','utme','2005',169,'Admin','0000-00-00 00:00:00','2020-07-21 01:45:25'),(66,'The   media    used   for   inter-departmental communication include.','circulars, advertisement and notice boards','memoranda, circulars and the telephone','memoranda, advertising and face-to-face','memoranda, advertising and the grapevine','','','b','','utme','2005',119,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:57'),(67,'An instrument that is traded in the second-tier foreign exchange market is','money order','stock ','travellers\\' cheque  ','debenture.','','','b','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(68,'The development of a container and a graphic design for a product is called ','packaging ','promotion','processing  ','production.','','','a','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:59'),(69,'A business firm that is involved in conveying goods or people is known as a ','consignor','commercial firm ','carrier','transporter','','','c','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:01'),(70,'The factors essential for tourism are','accessibility, capital, amenities and schools','goods weather, amenities, accessibility and scenery.','amenities, capital, accessibility and markets','good weather, capital, schools and scenery.','','','b','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:02'),(71,'In GIF contracts, risk passes at the time of shipment but the property does not pass until','there is physical transfer of goods','the shipping manifests are signed','the shipping documents are transferred','the goods on board are delivered.','','','b','','utme','2005',146,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:03'),(72,'A partnership is dissolved when','the business suffers a loss','there is bankruptcy','there is consistent theft','there is a misunderstanding between partners','','','b','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:04'),(73,'One of the disadvantages of sole proprietorship is','secrecy of annual reports','pride of ownership ','limited liability','unlimited liability.','','','d','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:05'),(74,'The most important concept in production is','utility ','wealth creation','transformation  ','distribution.','','','a','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:06'),(75,'An acquired firm in a merger will always receive a',' premium  ',' grant ','share ','discount','','','b','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:06'),(76,'Occupations are classified into','production, labour and economics','extraction, construction and manufacturing','industry, commerce and serves','trade, aids to trade and services.','','','c','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:07'),(77,'The Nigerian Telecommunications Limited is a','Jointly owned company ','public corporation ','privately owned company ','public company. ','','','b','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:08'),(78,'An engineer in government employ is to be rendering   ','primary service   ','tertiary service ','indirect service   ','direct service. ','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:09'),(79,'The availability of goods and services is brought to the notice of consumers through','personal selling  ','public relations','the telephone  ','advertising.','','','d','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:10'),(80,'The necessary documents used in foreign trade are ','bill of lading, invoice and letter of inquiry','indent, bill of exchange, bill of lading and invoice','invoice, shipping note, bill of lading and freight note   ','shipping note, certificate of origin and visible exports.','','','c','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:11'),(81,'A cheque drawn by a bank official on the bank\\'s deposits in another bank on a customer\\'s instructions is known as ','promissary note',' bankdraft   ','bankers\\' order  ',' travellers cheque.','','','c','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:12'),(82,'A type of credit offered by both commercial and merchant banks in Nigeria is ','trade credit','line of credit ','discounting facility ','overdraft.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:13'),(83,'A major function of a chamber of commerce is',' increasing productivity','promoting both home and foreign trade','promoting trade in a particular line',' maximizing profit.','','','b','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:14'),(84,'Which of the middlemen in the channel of distribution has title to the goods he distributes?','The merchant wholesaler ','The agent','the limited wholesaler ','The retailer','','','a','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:15'),(85,'Which of the following confirms the accuracy of the duty charged on imported goods?',' An indent ','Consular invoice',' Consignment note  ','Shipping note.','','','b','','utme','2005',137,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:16'),(86,'The association that comprises all types of businesses is referred to as',' chamber of commerce   ',' trust','trade association   ',' cartel.','','','a','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:30'),(87,'Wholesalers can be divided into',' sales agents and brokers   ',' full service wholesalers and merchant wholesalers',' cooperative wholesale society and limited service wholesalers ',' merchant wholesalers and agent middlemen.','','','b','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:31'),(88,'In Nigeria the ministry in charge of registering trade associations is that of ',' industries',' commerce ','culture and tourism ',' finance.','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:32'),(89,'Invisible imports consists of',' cement, shipping and consultancy services',' banking   drinks, insurance and technical services.   ','','tourism, banking, canned foods and cement.','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:33'),(90,'The bank that discounts bills of exchange is the ','central bank  ',' mortgage bank','development bank  ','commercial bank.','','','d','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:34'),(91,'The market where only indigenous firms are considered is the ','money market ',' second-tier securities market ',' local market ',' stock exchange.','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:35'),(92,'From which of the following sources can partnerships increase their capital?',' Admission of a new partner',' Sale of shares   ','Discharge of a mortgage','Grants from relations.','','','a','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:36'),(93,'The excess of the assets over the liabilities of a business is called ','working capital','net worth ','capital employed ',' initial capital','','','a','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:51'),(94,'Initial public offering is undertaken through the','secondary securities market','first-tier securities market','primary securities market','second-tier securities market','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:52'),(95,'The major participants in the stock market when stock prices are rising generally are the','bulls ','registrars ','bears ','companies','','','a','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:53'),(96,'The fixed and current assets of a business are called ',' called-up capital    ','capital employed',' paid-up capital  ','authorized capital.','','','b','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:54'),(97,'To increase the supply of money in a country, the central bank has to ','reduce cash ratio',' sell securities in the open market',' call on special deposits ',' raise cash ratio.','','','a','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:55'),(98,'A good financial instrument which serves as a  hedge against inflation is ','a bond  ','a share',' an option ',' a warrant.','','','a','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:56'),(99,'One advantage of a crossed cheque is that it can','only be paid into a savings account','be cashed over the bank\\'s counter','only be paid into the owner\\'s account',' be cashed by anyone','','','c','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(100,'Given\\n    N\\n Sales    15 000\\n Opening stock  5 600\\n Purchases   9 700\\n Closing stock  4 400\\n Gross profit  4 500\\n Net profit   2 000\\nFrom the data above, calculate the rate of turnover \\n',' 3.50 times ','3.00 times ',' 2.00 times ',' 2.18 times.','','','d','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:58'),(101,'question','optiona','optionb','optionc','optiond','','image','answer','solution','utme','examye',60,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:59'),(102,'Tourism can be classified as ',' tangible import',' intangible import',' visible export ','invisible export','','','d','','utme','2006',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:00'),(103,'The input, output and central processing units are the basic components of a computer\\'s','memory ',' printer ',' hardware ',' software','','','c','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:01'),(104,'An employer insures against his employees\\' dishonesty by taking up  ','fidelity guarantee insurance   ',' accident insurance   ','group life assurance  ','endowment policy.','','','a','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:02'),(105,'Payment made to the insured by the insurer outside its legal obligation is ','premium paid',' exgratia payment ','surrender value',' sum assured.','','','b','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:14'),(106,'An important social reason for development tourism in Nigeria is the  ','promotion of culture interaction   ',' provision of job opportunities','improvement of her balance of payments','encouragement of international relations.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:15'),(107,'The mode of transportation that conveys a limited variety of products through fixed laid routes is','waterways  ','Broad ','rail  ','pipeline.','','','d','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-21 09:00:24'),(108,'A computer that can be used in weather forecast is ','  a hybrid computer ',' an analog computer','a mainframe computer ',' a digital computer.','','','d','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:17'),(109,'The setting of objectives for an organization and determining how to accomplish them is ','social responsibility  ','planning  ','organizing',' decision-making.','','','b','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:18'),(110,'An aspect of marketing that stimulates buying by providing free gifts is ',' advertising  ',' personal selling ','publicity ',' sales promotion,','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:19'),(111,'The limit of functions, activities and personnel that a supervisor can effectively manage  in a business organization  is  ','spun of control ',' delegation of authority ','chain of command ',' authority and responsibility','','','a','','utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:20'),(112,'A seller attracts and retains patronage by',' enhancing public relations ',' enhancing sales promotion  ','  rendering pre-sales service',' rendering customer service.','','','d','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:21'),(113,'A bond which attracts only interest but leaves the capital unpaid is referred to as','a long-term loan','a development bond ',' a redeemable bond','  an irredeemable bond.','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:22'),(114,'A public company has 2 000 000 ordinary shares of 50k each and offers 50% for subscription at N2 per share. If the shares were fully subscribed, calculate the issued capital.','  N4 000 000     ',' N2 000 000','N1 000 000     ','  N500 000.','','','b','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:23'),(115,'The main requirement for admission to the second-tier securities market is the ','provision of a three-year trading record   ','disclosure of all trading activities   ',' creation of a good atmosphere for growth and development   ','guaranteeing of dividends to shareholders.','','','b','','utme','2006',113,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:24'),(116,'What is the capital employed?','N200 000','N340 000','N170 000','N300 000','','','d','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:25'),(117,'Which of the following is a development bank in Nigeria?','Union Bank Plc   ','First Bank Plc','First City Monument Bank ','Federal Mortgage Bank.','','','d','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:25'),(118,'Trading on the stock exchange in anticipation of  price change in the market value of shares is','speculation  ','forecasting ','expectation','projection.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:26'),(119,'A financial institution which uses its capital strength to acquire controlling interests in other firms can be regarded as a','subsidiary company','holding company ','trust   ','cartel.','','','b','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:27'),(120,'A current account is beneficial to its holder as','cheques can be issued to anybody','customers cannot withdraw frequently','it is only the holder that can make withdrawals','it allows customers the use of passbooks.','','','a','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:28'),(121,'The conversion of raw materials into finished products creates ','form utility ','marginal utility','place utility ','time utility.','','','a','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:29'),(122,'The factor which critically determines the choice of occupation is ','training  ','skill ','interest','aptitude.','','','c','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:30'),(123,'Capital to a business is technically  ','an expense','a liability ','  an asset ','a profit.','','','c','','utme','2006',112,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:31'),(124,'I. Wholesaling  II. Fishing  III. Canning IV. Retailing  The sequence in which the occupational activities above are performed is','Ill, II, I and IV     ','Ill, I, IV and II','I, II, III and IV      ','II, III, I and IV.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:32'),(125,'The development of commerce resulted from','trading ','competition ','importation','specialization.','','','a','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:33'),(126,'The difference between a private and public limited liability company is that the former','is unable to offer shares to the public','is unable to declare and pay dividend','has a higher number of shareholders','pays higher salaries to its managers.','','','a','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:34'),(127,'Materials used for further production of goods and  services are known as ','export goods','intermediate goods ','capital goods','  consumer goods.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:35'),(128,'A liquidator\\'s fee is to be charged to the','realization account  ','trading account','revaluation account ','reconstruction account.','','','a','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:36'),(129,'The safety and quality of products are the social responsibility of ','the Standards Organization of Nigeria  ','the Manufacturers Association of Nigeria','the Corporate Affairs Commission','business organizations.','','','a','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:37'),(130,'A   feature   common   to   privatization   and commercialization is  ','profit-making    ','credit sales ','market expansion ','price increases.','','','a','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:38'),(131,'A protection right which can be reviewed or renewed after seven years is known as ','patent','design ','registration name ','trade mark','','','a','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:39'),(132,'The headquarters of the Lake Chad Basin Commission is in ','Niamey ','N\\'Djamena','Abuja ','Lagos.','','','b','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:39'),(133,'In Nigeria, the main source of pollution is','domestic waste   ','organic waste','gas flaring   ','industrial waste.','','','d','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:40'),(134,'‘Safeguarding the health of the nation\\' is the slogan used by ','NDLEA ','NHIS ','NAFDAC ','EPI.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:53'),(135,'When one person approves an act previously done by another in the former\\'s name without authority, this is known as   ','ratification ','estoppels','illegality ','misrepresentation.','','','b','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:54'),(136,'The members of ECOWAS include',' Nigeria, Chad, Gabon and Cape Verde','  Burkina Faso, Nigeria, Niger and Mauritania','Guinea, Mali, Cameroon and Nigeria','Togo, Niger, Nigeria and Ghana.','','','d','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:55'),(137,'The most important advantage of privatization is the enhancement of ','liquidity ','accountability','profitability  ','efficiency.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:55'),(138,'A trade association consists of members engaged in the same trade while a chamber of commerce is','highly regulated by a government agency','not restricted on a particular industry','made up of members that are registered',' made up of firms in the banking industry.','','','b','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:57'),(139,'Hire purchase is beneficial to the seller because',' it enhances his living standard ','it increases his turnover ','people pay instalmentally',' of the patronage he enjoys.','','','b','','utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:58'),(140,'Consumerism aims at protecting the consumer from','harmful products  ','drug addiction','smoking cigarettes ','alcohol consumption. ','','','a','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:59'),(141,'The major types of warehouses are ','manufacturer, bonded, departmental and private  ','bonded, public, cold room and private','manufacturer, bonded, public and departmental','wholesaler, manufacturer, public and bonded.','','','d','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:00'),(142,'The Customs and Excise Department is responsible for the collection of','royalties ','tariffs','taxes ','charges.','','','b','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:01'),(143,'A shop which consists of many stores trading under a single roof and which stocks varieties of gods with each unit having its own head is a ','multiple shop  ','supermarket ','superstore','departmental store.','','','d','','utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:03'),(144,'An objective of the farmers\\' association is to','ensure that the prices of goods are fair and reasonable  ','correct the imbalance between consumers and producers ','improve the methods of selling and advertising   ','provide a stable market outlet for farm inputs,','','','a','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:04'),(145,'The documents used in the purchase and sale of goods which contain other terms of trade are','debit note and credit note ','delivery note and advice not   ','invoice and order      ','quotation and invoice.','','','c','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:05'),(146,'In international trade, exchanging goods for other goods and services purchased instead of paying in foreign currency is known as ','countertrade','balance of trade ','balance of payments','terms of trade.','','','a','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:07'),(147,'The role of a wholesaler in the channel of distribution is to    ','produce goods in large quantities and sell in small quantities ','buy goods directly from the manufacturers','buy good in large quantities and sell in small quantities','sell goods directly to the consumers ','','','c','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:08'),(148,'Foreign trade also involves ','providing services for other countries    ','specialisation and the exchange of goods in a country   ','buying and selling within a country ','the exchange of goods and services between firms. ','','','a','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:08'),(149,'Consumers require protection against exploitation to ensure ','adequate consumer awareness','availability of product variety','the sale of quality products','increased aggregate demand.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:10'),(150,'The business environment that takes into cognizance the age distribution, ethnic mix and educational level of the consumer is','demographic environment','economic environment','cultural environment','natural environment.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:11'),(151,'An agent who takes title to goods and has authority  to buy and sell on behalf of another is','a jobber   ','a broker  ','a factor','an auctioneer.','','','c','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:11'),(152,'Citizens are against privatisation mainly because of ','the rationalization of organizations','increased prices of goods and services','the likelihood of monopoly','ineffective management.','','','b','','utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:12'),(153,'The major achievement of ECOWAS is','the expansion of regional trade','the emergence of a monetary union','infrastructure! development in member countries','mobility of labour among member countries.','','','a','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:14'),(154,'An announcement of a person\\'s willingness to enter into a contract is referred to as ','a proxy','an offer ','a consideration ','an acceptance.','','','b','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:15'),(155,'The macro-environmental forces and trends which are a constraint on business operations are  referred to as  ','technological factors','economic factors   ','external factors ','internal factors.','','','c','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(156,'Which of the following best describes inputs for any production activity?   ','Natural resources.',' Business resources.','Human resources.','Material resources.','','','a','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:16'),(157,'Personal selling is most effective in marketing industrial goods because it involves','recognition and attachment to customers','personal interaction and information gathering','demonstrations and product acceptability','after-sales services and product demonstrations.','','','b','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:17'),(158,'The controllable variables that a firm uses to achieve its marketing objectives are called','marketing principles ','marketing mix','marketing concepts','marketing functions.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:18'),(159,'Public relations and advertising are similar in terms of','communicating product information','customer education ','the mode of operation','creating a favourable attitude.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:19'),(160,'A major function of an entrepreneur is','decision-making ','encouraging competition','human-resource training','motivating employees.','','','a','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:20'),(161,'A Memorandum of Association is applicable to a',' sole trader ','joint-stock company',' partnership   ',' public corporation.','','','b','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:21'),(162,'The sustainable growth of commerce is largely due to ','marketing   ','advertising','exchange ','branding.','','','c','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:22'),(163,'A major advantage of a cooperative society is that it ','gives members the opportunity to unite','draws members closer to government','promotes awareness among members','encourages thrift among members.','','','d','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:23'),(164,'The making of doors from timber planks is a type of ','manufacturing ','tertiary production','secondary production   ','primary production.','','','c','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:24'),(165,'Law-making is an example of ','indirect service','commercial occupation ','direct service','industrial occupation.','','','c','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:25'),(166,'A document which advertises the shares of a company is known as a  ','memorandum of satisfaction   ','dividend warrant     ','deed','prospectus.','','','d','','utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:26'),(167,'The scope of economic activities can be enlarged by    ','transportation and trading   ','business and its promotion  ','trading and aids to trade','insurance and banking.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:27'),(168,'The creation of utilities to satisfy human wants is referred to as   ','production  ','consumption','industrialization    ','occupation.','','','a','','utme','2007',63,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:28'),(169,'A major criticism of a cooperative society is','limited capital ','granting excessive loans to members   ','selling goods on credit to non- members    ','management incompetence.','','','d','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:28'),(170,'An economic activity which deals with natural resources is a form of  ','extraction','refining   ','construction ','manufacturing.','','','a','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:29'),(171,'The first stage in tourism planning is','assessing feedback from tourists','preparing a list of tourist attractions','creating recreational opportunities','building community support.','','','b','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:30'),(172,'An agreement by the insurer to compensate the insured for losses suffered is   ','policy','surrender value   ','caveat emptor ','indemnity.','','','d','','utme','2007',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:31'),(173,'One of the functions of the Nigeria Ports Authority is the provision of  ','facilities to enhance the speedy loading and offloading of ','facilities to ensure that goods get to their destinations  ','shelter for operators of cargoes',' courier services to ensure speedy delivery.','','','a','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:32'),(174,'The   World   Tourism   Organization   has   its headquarters in ','New York    ','Paris','Madrid     ','London.','','','a','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:33'),(175,'Digital computer is divided into ','analogue, hybrid and mini ','super, mainframe, mini and micro    ','mainframe, hybrid and micro','super, mainframe, micro and analogue.','','','a','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:34'),(176,'A distinctive advantage of GSM is its ','mobility',' cost   ','stability   ','coverage.','','','a','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:35'),(177,'In the permanent storage device, DASD means','Data Access Storage Device','Data Access Systems Device','Direct Access Systems Device','Direct Access Storage Device.','','','d','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:36'),(178,'The major determinant of fire insurance premium is the ','type and structure of the property to be insured ','usefulness of the property to the owner','owner of the property to be insured','extent of fire damage anticipated.','','','a','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:37'),(179,'The Internet is a system of telecommunications used for   ','communicating long-distance messages ','sending and receiving text messages','sending electronic messages .','communicating messages through telegrams.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:38'),(180,'A written  agreement for  hiring  a  ship for transporting goods is a ','consular invoice','bill of lading ','charter party ','certificate of origin.','','','c','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:39'),(181,'The major function of a trade association is that it','liaises with foreign trade associations','helps to promote foreign trade','facilitates members\\' access to credit facilities','helps to promote research on behalf of members.','','','d','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:40'),(182,'A major setback of international trade is','inadequate exports','economic sanctions','devaluation of currency','exchange rate appreciation.','','','b','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:41'),(183,'Which of the following requires payment into the payee\\'s account?   ','Crossed cheque.','Traveller’s cheque.    ',' Open cheque.','Certified cheque.','','','a','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:42'),(184,'The traditional way of paying cooperative dividend is to distribute profit in proportion to members\\'','subscriptions  ','total savings','volume of purchases   ','contributions.','','','c','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:43'),(185,'The abbreviation C & F indicates that the','production cost excludes the cost of carriage','selling price includes the cost of carriage','cost of production includes delivery charges','cost price includes the cost of carriage.','','','b','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:44'),(186,'The sale of foreign investment and gold reserves can be used to ','correct adverse balance of trade','increase invisible imports','correct adverse balance of payments','correct a budget deficit.','','','a','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:45'),(187,'A share premium is an example of','issued capital ','capital stock ','equity capital','capital reserve.','','','d','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:46'),(188,'A major benefit a debtor can derive from using a credit facility is ','better service  ','goodwill','convenience    ','control.','','','c','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:47'),(189,'The function  of money that facilitates the comparison of the quality of goods as a basis of exchange is the   ','unit of account','measure of value ','store of value','medium of exchange','','','b','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:48'),(190,'The difference between the buying and selling price of shares is known as   ','brokerage','margin   ','jobber\\'s turn   ','gross profit.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:49'),(191,'Which of the following is a risk-free security?','Preference share.   ','Ordinary share.','Treasury bill.    ','Debenture.','','','c','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:50'),(192,'The central bank controls the quantity of money in circulation through  ','open-market operations','decreasing the tax rate ','issuing new currencies    ','increasing the tax rate.','','','d','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:51'),(193,'The selling of new shares to existing shareholders is referred to as ','public issue ','offer for sale','rights issue  ','bonus issue.','','','c','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:52'),(194,'A new company requiring a large amount of equity finance may source funds from the','capital market   ','central bank','money market    ','commercial banks.','','','d','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 01:36:39'),(195,'A credit instrument which also serves as a legal tender is   ','cheque    ','paper money','voucher   ','money order.','','','b','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:53'),(196,'The body regulating the sale and purchase of shares in Nigeria is the ',' Corporate   Affairs Commission   ','Securities   and   Exchange Commission    ','Securities   and   Exchange Tribunal     ','Nigerian Stock Exchange.','','','b','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:54'),(197,'An aspect of commerce that facilitates the distribution of products is ','transportation ','advertising  ','branding ','trading ','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:55'),(198,'An activity that involves derivation of raw materials from land and sea is ','construction ','farming ','agriculture ','extraction ','','','d','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:56'),(199,'The art of soap-making is an example of ','Primary occupation ','Secondary occupation ','Tertiary occupation ','Construction occupation ','','','b','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:57'),(200,'Given: I. shoe marker    II. Policeman     III. Fisherman    IV. Gardener    V. Broker .    The persons engaged in primary occupation are \\n','I, III and IV ','III and IV','III and V','I , II and V','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:58'),(201,'The process of changing the form of a raw material is known as  ','fabrication ','extraction ','conversion ','production ','','','d','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(202,'In the long run, all factors of production are ','fixed ','variable ','marginal ','constant ','','','b','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:00'),(203,'The quality and quantity of production mostly depend  on the ','effectiveness of factors ','availability of factors','level of education of entrepreneurs ','level of cooperation among workers','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:01'),(204,'The promotion of savings culture is a feature of a ','trade association ','consumers  cooperative society ','thrift cooperative society ','business association ','','','c','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:02'),(205,'A document which gives a legal status to a company is the certificate of ','incorporation ','trading ','commencement of business','business registration','','','a','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:03'),(206,'A proposed company may not be registered if ','the name conflicts with that of another ','it does not put ‘limited’ after its proposed name ','it has no paid-up capital ','it has no asset of its own.','','','a','','utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:05'),(207,'An example of a cartel is ','OPEC','ECOWAS ','AU ','EU','','','a','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:55:05'),(208,'The cheapest source of funds available to a company is through ','the sale of shares','retained profits ','the sale of bonds','lease financing','','','b','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:06'),(209,'The components of capital employed in a business are ','owners’ equity and long-term debts ','total assets and current liabilities ','share capital and long-term debts','share capital and current liabilities.','','','b','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:07'),(210,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. What is the company’s authorized share capital?','N2500 000','N4000 0000','N5000 000','N7500 000','','','a','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:08'),(211,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. Determine the company’s reserve share capital ','N2500 000','N1000 000','N1500 000','N2000 000','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:09'),(212,'In order to prevent liquidity problems in commercial banks, the central bank uses.','moral suasion  ','fiscal policy','reserve ratio','taxation ','','','c','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:10'),(213,'An account maintained with a commercial bank for the purpose of foreign exchange transaction is the ','foreign account ','International account ','domiciliary account ','foreign reserves account ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:11'),(214,'A trader who gives credit stands to enjoy ','higher profit ','cash discount ','increased sales ','trade discount','','','c','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:12'),(215,'A person who buys new issues with a view of reselling at a higher price in the near future is referred to as a ','bull ','bear ','dealer ','stage','','','a','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:13'),(216,'A source of capital that has both elements of debt and equity is a ','debenture ','warrant ','loan ','share','','','d','','utme','2008',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:14'),(217,'A type of retail trade where a group of similar states which is owned by a firm operates in different locations is a ','conglomerate ','chain store','departmental store ','supermarket ','','','b','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:15'),(218,'A warehouse which is used to store goods whose customs duty is not yet paid is a ','wholesale warehouse','bonded warehouse','public warehouse','branded warehouse','','','b','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:16'),(219,'Balance of payments is made up of ','visible  and current  items ','invisible and capital items ','current and capital items','visible and invisible items','','','d','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:17'),(220,'Most of the barriers to international trade have been eliminated through ','diversification ','globalization ','commercialization ','privatization ','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:18'),(221,'A document sent by a seller to inform a buyer about the prices of goods is the ','catalogue ','price list','credit note','proforma invoice ','','','b','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:19'),(222,'Which ‘FOB’ is written on a document, it implies that the buyer bears the ','cost of goods and advert ','loading cost and insurance ','insurance and transport costs','transport and communication costs','','','c','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:20'),(223,'A crossed cheque with the inscription ‘not negotiable’ must be paid into the ','current account of the drawer ','current account of the payee of the drawer ','savings account of the payee','fixed account of the payee','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:21'),(224,'The pooling of business information for the benefit of members is a major function of a ','pressure group ','trade association ','cultural group ','trade union ','','','b','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:22'),(225,'An association to which all chambers of commerce in Nigeria are affiliated is the ','Nigeria Labour Congress ','National Association of Chambers of Commerce, Industry, Mines and Agriculture','Nigeria Association of Chambers of Commerce, Industry, Mines and Agriculture ','Nigeria Stock Exchange ','','','c','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:23'),(226,'The resources which are necessary for business development include ','manufacturing, materials, mentors and money ','merchant, materials, mentors and money','man, money, materials and machines','machines, manufacturing, money and materials','','','c','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:24'),(227,'The four Ps of marketing are','product, place, process and promotion ','price, product, property and place','price, product, place and promotion ','price, production, place and property ','','','c','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:25'),(228,'Personal selling is used for the purpose of ','establishing the company ','providing information ','creating product awareness','launchers ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:26'),(229,'Ships used for international transport are ','trawlers ','yachts','ocean liners ','launchers ','','','c','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:27'),(230,'A function generally performed by authorities of both the air and seaports is the ','maintenance of warehouses where goods can be stored','provision of facilities for loading and unloading  of cargoes ','maintenance of security and order at the ports.','provision of facilities for landing and refueling at the ports.','','','d','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:28'),(231,'A major factor hindering effective communication process is ','climatic condition ','social unrest ','distance ','noise ','','','d','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:29'),(232,'The fear of many communities concerning tourism development is the ','influence of foreign culture ','fear of disease transmission ','fear of pollution ','religious intolerance ','','','a','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:30'),(233,'The development of tourism in Nigeria  will enhance ','agriculture ','revenue generation ','export ','labour mobility ','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:31'),(234,'A historical building is a feature of ','cultural tourism ','industrial tourism ','agricultural  tourism','D. ecological   tourism','','','a','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:31'),(235,'The sum of money paid by a policy-holder to an insurer is referred to as ','interest ','premium ','gross profit ','sales revenue','','','b','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:32'),(236,'An example of a non-insurable risk is ','burglary ','speculation ','fire ','accident ','','','b','','utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:33'),(237,'The coordinating section of the central processing unit that manages the flow of data is the ','arithmetic logic unit','control unit','magnetic unit','register','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:34'),(238,'An agreement between two parties which is enforceable by law is a ','promise ','warranty ','contract ','condition ','','','c','','utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:35'),(239,'The implied provisions in every sale of goods as contained in the ales of Goods Act of 1893 are conditions and ','consideration ','sureties ','warranties ','guaranties ','','','c','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:36'),(240,'When an employee incurs expenses while executing his normal duty, the employer is responsible for his ','safety ','family’s security ','family’s welfare ','indemnification ','','','d','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:37'),(241,'The body charged with divesting government interests in public enterprises is ','SON','NPC','BPE ','NDE','','','c','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:38'),(242,'The practice whereby government relinquishes its ownership interest in a public enterprises is ','commercialization ','indigenization ','privatization ','nationalization ','','','c','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:39'),(243,'A factor is a business environment which increases the rate of product obsolescence is ','technology ','political','legal ','economic','','','a','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:40'),(244,'Which of the following is a form of social responsibility of a business? ','selling goods  at cheaper prices ','using the best technology available ','maintaining  tidy and safe environment ','Meeting contractor’s obligation ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:41'),(245,'A computer component that decodes and interprets instructions and also directs program implementation  is ','memory unit','Central processing unit ','control unit ','system unit','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:42'),(246,'Which software program can be used to generate ','MS Word ','Database ','MS Excel','Adobe','','','c','','utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:43'),(247,'The central focus of commercial activities is ','pricing   ','advertising ','trading ','marketing ','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:44'),(248,'An aid to trade associated with communications is ','banking ','transportation','warehousing ','insurance ','','','b','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:45'),(249,'The services of a textile worker are an example of ','extractive activity ','commercial activity ','manufacturing ','construction ','','','c','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:46'),(250,'Resources harnessed in certain proportion to create goods and services are ','factors of production ','technology and labour ','land and entrepreneur ','raw materials ','','','a','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:47'),(251,'Primary production is associated with ','banking ','manufacturing ','agriculture ','construction ','','','c','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:48'),(252,'The major components of modern retailing include ','branding, doorstep  selling and customer stimulation ','branding, sales promotion and mail order ','chain stores, customer stimulation and doorstep selling ','branding, supermarkets and after-sales service','','','d','','utme','2009',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:56'),(253,'A chain store usually combines the features of ','multiple shops and departmental stores ','hypermarkets and stalls ','multiple shops and hypermarkets','mail order business and multiple shops','','','a','','utme','2009',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:57'),(254,'One of the functions of the wholesalers is to ','forecast prices','reduce prices of goods','political unrest ','analyse sales periodically ','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:58'),(255,'An artificial barrier to international trade is ','political unrest  ','culture of the people','unit of measurement ','custom duties','','','d','','utme','2009',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:59'),(256,'The most commonly used commercial documents are ','order notes, debit notes, invoices and quotations ','letters of enquiry, consignment notes, receipts and invoices ','credit notes, statement of accounts, dispatch order and bills ','balance sheet, receipts, invoices and manifests.','','','b','','utme','2009',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:00'),(257,'The term free on board means that the price includes ','costs and insurance only ','costs and freight only','freight and insurance only','costs, insurance and freight ','','','d','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:01'),(258,'If a buyer is given 12.5% discount on N50000 worth of goods, how much will he pay?','N56 250','N43 750','N43 250','N6250','','','b','','utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:02'),(259,'A cheque which a bank draws on its own funds is a','bankdraft ','cashier’s cheque ','bank cheque ','crossed cheque','','','a','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:03'),(260,'Billboards and posters are forms of ','electronic media ','print media','outdoor media ','window display media','','','c','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:04'),(261,'A collective term for advertising, personal selling and publicity is ','exhibition ','promotion ','trade fair ','mechanizing','','','a','','utme','2009',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:05'),(262,'The central bank differs from commercial banks  because it ','renders service to customers','carriers but foreign exchange transactions ','issues currencies ','discounts bills','','','c','','utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(263,'One of he facilities enjoyed by a current account holder is ','a dividend  ','a bonus','an overdraft ','interest on deposits','','','c','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:07'),(264,'In which of the following will be number of words used determine the cost of the message sent?','telephone','telegram ','e-mail','telex','','','b','','utme','2009',57,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:08'),(265,'The transmission of telephone services from one country to another is facilitated by ','communication satellite ','international facility ','interconnectivity ','internet services','','','a','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:09'),(266,'The principle of insurance which entitles an insurance company to take any advantage due to the insured after full indemnity is ','contribution  ','subrogation ','proximate cause ','utmost good faith ','','','b','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:10'),(267,'A risk that can be estimated and calculated to be compensated is ','a delivery risk ','an insurable risk','a credit risk ','a systematic risk ','','','b','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(268,'The most important reason for the existence of insurance business is to ','prevent the occurrence of any loss','spread losses to all covered participants','provide for the replacement of facilities','encourage individuals to save','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(269,'One major advantage of transportation to a business is to','extend the firm’s market coverage','ensure that goods are produced faster','procure raw materials cheaply ','ensure the quality of products','','','a','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:12'),(270,'Warehousing is important to manufacturers because it helps to ','improve the quality of goods ','produce goods in advance','meet the demand of customers ','determine input requirements','','','b','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:13'),(271,'One of the major problems of a sole proprietor is sourcing for ','raw materials ','labour ','machineries ','funds','','','d','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:14'),(272,'In a public limited liability company, planning is carried out by ','the chairman of the board ','the board of directors ','shareholders','employees','','','b','','utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:15'),(273,'Partnerships are most effective where ','the partners are family friends ','professionals are involved','members can easily raise enough capital ','government regulations are favourable ','','','b','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:16'),(274,'The type of partnership in which all partners are jointly liable in bearing risk is ','limited partnership ','partnership-at will','ordinary partnership ','industrial partnership ','','','c','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:17'),(275,'The financial instrument that entitles the holder to receive dividend and capital gains is a ','share  ','bond ','bill of exchange ','treasury bill ','','','a','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:18'),(276,'The circulating capital of a business enterprise is classified into ','cash, work-in progress and debtors ','cash, vehicles, land and buildings ','debtors, stock of raw materials and fittings ','pre-payments, debtors and equipment.','','','a','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:19'),(277,'If a firm has a turnover of N50 000 and the cost of goods sold is N40 000, what is the percentage of gross profit on sale? ','30.50%','20.50%','20.00%','D.10.0%','','','c','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:20'),(278,'A body established to protect the interest of members against the exploitation of retail traders and manufacturers is the ','wholesalers association ','consumer’s  association ','government agency ','workers’ union ','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:21'),(279,'The manufactures’ Association of Nigeria is an example of a ','labour union ','pressure group ','conglomerate ','cartel','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:22'),(280,'The characteristic which ensures that money is free from forgery is its ','legality ','durability ','recognition ','credibility ','','','b','','utme','2009',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:23'),(281,'The major dealers on the stock market are the ','agents ','jobbers ','investors ','brokers','','','d','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:24'),(282,'The daily official publications of the Nigerian Stock Exchange give detailed information on the ','changes in the official rules set by the market ','method of transactions agreed upon by members ','participation of members in a day ','changes in the price of securities','','','c','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:25'),(283,'The function which ensures that set objectives are attained by an organization is ','planning ','directing ','staffing ','controlling ','','','d','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:26'),(284,'An organizational structure that is military in nature is the ','line structure ','staff structure ','line and staff structure ','functional structure ','','','d','','utme','2009',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:27'),(285,'The efficiency of an organization is enhanced by ','government assistance ','the host community ','customer support ','skilled manpower ','','','d','','utme','2009',62,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:37'),(286,'The concept which focuses on consumers in decision-making is ','selling concept ','marketing concept ','product concept ','production concept ','','','b','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:38'),(287,'Market skimming is an example of ','market penetration ','Sales promotion ','pricing policy','advertising ','','','a','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:38'),(288,'The most important attributes in a sale of goods contract are ','offer and consideration','price and goods ','offer and acceptance ','demand and supply','','','c','','utme','2009',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:40'),(289,'Unresolved disputes between the employer and employees are usually referred to the ','code of conduct bureau','personnel unit ','disciplinary committee','industrial arbitration tribunal ','','','d','','utme','2009',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:41'),(290,'The process of eliminating a virus from a computer program is ','programming ','debugging ','formatting ','looping','','','c','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:42'),(291,'The primary memory component of a computer is the ','cache ','console ','assemblers','compilers ','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:43'),(292,'A customer with XYZ Plc sent money through his account to his sister’s  account in another branch. This is an example of ','e-business','e –commerce ','e-finance ','D e-banking ','','','d','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:44'),(293,'The economic environment of a business is concerned with ','climatic conditions','changing values ','the growth rate','the interest rate','','','c','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:45'),(294,'A firm that disposes its wastes properly is discharging its ','community responsibility ','environmental responsibility ','civic responsibility ','social responsibility ','','','b','','utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:46'),(295,'The wealth of a nation depend on the volume of its','bilateral trade activities','commercial activities','multilateral trade activities','stock market','','','b','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(296,'Which of the following can be used to differentiate skilled and unskilled lab our? ','education and training','available resources ','level of commitment','salaries and wages','','','a','','utme','2010',93,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(297,'A doctor who attends to patients at home after his official duty is','A community development worker','a direct service worker','an indirect service worker ','a direct and an indirect worker','','','b','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:49'),(298,'Manufacturing and construction activities are class8ified under','Primary production','Tertiary production','secondary production','direct production','','','c','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(299,'The reward of rent, wages, interest and profits accrue from','capitals, labour, land, and entrepreneur respectively','land entrepreneur, labour and capital respectively','land, labour, capital, and entrepreneur respectively','labour, entrepreneur, land and capital respectively.','','','c','','utme','2010',93,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(300,'The factor of production that is subject to depreciation is','capital ','land','labour','entrepreneur','','','a','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(301,'Division of labour ultimately leads to ','conservation','integration','specialization','repetition','','','c','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(302,'A worker who process rice is engaged in','constructive activity','commercial activity','extractive activity','Manufacturing activity','','','d','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(303,'After- sales service is a function usually rendered by','a retailer','a wholesaler ','an agent ','an entrepreneur ','','','a','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(304,'A trend is retailing which enables consumers to have free access to different products is ','after sales service ','branding ','self-service','vending machine','','','c','','utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:55'),(305,'The activity which entails buying of goods in bulk and selling in small quantities to retailers is ','assembling ','wholesaling ','retailing ','merchandising ','','','b','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(306,'The comparison of a country’s visible and invisible exports and imports expressed in monetary term is ','balance of payment ','terms of trade','balance of trade','terms of payment ','','','c','','utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(307,'The document that gives an importer a freehand to obtain goods from any manufacturer is ','a consular invoice ','a closed indent ','an open indent ','a freight note','','','c','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(308,'Entrepot trade usually occurs in ','exchanging goods within a nation ','exchanging goods among countries ','importing goods among countries ','exporting goods to be re-exported ','','','c','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(309,'The document issued to a port authority when goods are deposited is a ','dock landing account ','bill of sight ','bill of lading ','dock warrant ','','','d','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(310,'The details of the goods required by the purchaser is outlined in ','a consular invoice ','an indent ','an invoice ','a certificate of origin ','','','c','','utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(311,'Selling goods in foreign countries at prices below their marginal cost is ','dumping ','depreciation ','devaluation ','discounting ','','','a','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(312,'A process of creating more market for a product is through ','consumerism ','marketing ','advertising ','repositioning.','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(313,'One of the merits of television as a medium of advertising is that it ','is prone to censorship ','is relatively cheap ','has more sensory stimulation ','has more network coverage','','','c','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:15'),(314,'The best mode of ensuring that items posted get to the named addressed is through','recorded delivery ','registered mail','certificate of posting ','express mail','','','b','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(315,'A businessman who undertakes the hull insurance policy is aiming at ','covering losses on damages to the cargo ','protecting injured crew in the ship ','averting payment of the freight ','covering damages to the body of the ship ','','','a','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(316,'An agent who brings a customer into business contact with his principal is known as ','a del credere agent ','an auctioneer','a factor','a broker','','','d','','utme','2010',105,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(317,'A major hindrance to tourism growth in Nigeria is ','absence of genuine tour operators ','lack of tourism master plan ','inadequate tourist centres','non-compliance to immigration laws.','','','b','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(318,'The warehouse that is owned and controlled by the government is a ','wholesalers’ warehouse ','public warehouse ','state warehouse','manufacturers’ warehouse','','','b','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(319,'One of the main features of a partnership is ','limited liability ','lack of corporate existence ','unlimited membership ','lack of mutual confidence','','','b','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(320,'An arrangement by independent firms to share the market of their products on quota basis is referred to as  ','trust ','integration ','syndicate ','cartel','','','d','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(321,'An illegal arrangement by manufacturers to control the price or condition of sale of a product is ','ring ','factoring ','consortium ','merger','','','c','','utme','2010',113,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(322,'A public company with an authorized capital of N60,000, issued 36,000 shraes at 150k each. What is its capital?','N60,000','N36,000','N54,000','N90,000','','','c','','utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:41'),(323,'One of the functions of NACCIMA is ','negotiating with labour unions in matters of wages and conditions of service','pooling of members’ resources for long-term investment ','disseminating information to members on matters relating to tariffs ','ensuring uniformity in labour matters and industrial relations.','','','d','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:42'),(324,'A characteristic of money which ensures that its value is not lost is ','homogeneity ','easy portability ','divisibility ','relative scarcity ','','','d','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(325,'The instrument used in the capital market is ','treasury bill ','bill of exchange ','stock ','debenture ','','','c','','utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:45'),(326,'A pre-requisite for admission into the second-tier securities Market is for a company to ','make 20% of its equity share available to he public for subscription ','have a minimum of 100 shareholders ','have a maximum of 100 shareholders ','make 10% of its equity share available to the public for subscription','','','d','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(327,'The tree components of staffing are ','recruitment, interview and appointment ','recruitment, test and placement ','recruitment, selection and appointment ','recruitment, selection and placement ','','','d','','utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(328,'Which of the following is a matter of personal preference on the part of a superior officer?','Unity of command ','span of control ','delegation of authority ','unity of direction','','','c','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:48'),(329,'The conversion of raw materials into finished goods leads to the creation of ','form utility ','product utility ','possession utility ','place utility ','','','a','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(330,'The main concern of marketing concept is to ','reduce the number of retail outlets ','identify consumer needs and satisfy them ','increase sales to meet consumer needs ','encourage division of labour.','','','b','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(331,'The best pricing strategy for a company that produces warm clothing is ','target return pricing ','bid pricing ','variable pricing ','product line pricing ','','','d','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:51'),(332,'The deliberate and sustained efforts of an organization towards the creation of goodwill for its products and services is through ','Public relations ','advertising ','sales promotion ','rebranding ','','','a','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(333,'The label on a product such as ‘pampers’ is a type of ','trademark  ','branding ','packaging ','patent right','','','a','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(334,'An opportunity to reject a binding contract at will by a third party is said to be a ','valid contract ','quasi contract ','voidable contract','conditional  contract','','','c','','utme','2010',115,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(335,'An agency contract must involve ','a principal and a consumer','a principal  and a producer ','a principal and a third party ','a principal and a third party ','','','d','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(336,'The difference between trademark and patent right is that the latter ','gives exclusive right to import a particular good ','is conferred by the government ','confers monopoly  on a product ','confers exclusive right to publish literary works.','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(337,'Which of the following is a function of consumerism? ','Protecting consumers’ rights ','providing consumers’ choice','providing consumers’ needs','Making profiteering impossible','','','a','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(338,'A printed copy of processed information from the computer is the ','soft copy ','file copy ','scanned copy ','hard copy ','','','d','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(339,'The central working system of a computer used for data processing is the ','memory unit ','monitor ','floppy disk drive ','hard drive','','','b','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(340,'The major problem confronting Cyber Café operators is ','Advanced fee fraud by clientele ','poor network coverage ','high operating costs ','copyright violations by clients','','','c','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(341,'A device that enables the downloading of information from the internet is the ','floppy drive ','compact disk ','modem ','blue tooth ','','','c','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(342,'In e-baking, ATM means ','authentic Teller Machine','Automatic Teller Machine ','All-purpose Teller Machine','Automated Teller Machine','','','d','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(343,'One way by which a business can discharge its social responsibility to its community is to ','hold monthly meetings of its customers','build houses for its executives ','award scholarship to staff children ','build public health centres.','','','d','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:10'),(344,'The most important function of commerce is in ','enhancing business relationships ','helping people to improve their profits ','facilitating exchange among individuals and firms','assisting trade through banking and insurance','','','c','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:11'),(345,'The three main classifications of occupation are ','construction, trade and services ','manufacturing, industry and services ','farming, banking and trading  ','industry, commerce and services','','','d','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:12'),(346,'An oil exploration company is engaged in ','tertiary production ','constructive occupation ','extractive occupation ','secondary production','','','c','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:13'),(347,'Services rendered to the public is provided by ','Government ','civil servants ','professionals ','domestic servants ','','','b','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:14'),(348,'The creation of goods and services to satisfy human wants is referred to as ','manufacturing ','commercialization ','Production ','entrepreneurship ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:21'),(349,'Which of the following is a limitation  of division of labour? ','decline in craftsmanship ','monotony of work ','reduction in output','reduction in labour force','','','d','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:22'),(350,'Resources obtained from the extractive sector that are transformed into finished products are examples of ','primary production ','tertiary production ','direct production ','secondary production.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(351,'An individual that links the producer with the retailer is ','an agent ','a wholesaler ','an entrepreneur ','a principal ','','','b','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:24'),(352,'One of the functions of a retailer is the ','financing of production activities ','provision of credit facilities to relations ','provision of jobs for customers ','breaking of bulk','','','b','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:25'),(353,'The main aim of selling directly to the consumers by manufacturers is to ','reduce transportation cost','make contact with individual consumers ','discourage the activities of middlemen ','maximize profit margin','','','c','','utme','2011',117,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:26'),(354,'Balance of payment problems arise if a country’s ','exports is more than imports','imports is more than exports','currently is devaluated','Invisible exports is more than visible exports ','','','b','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:27'),(355,'The three components of a country’s balance of payment are ','Current account, capital account and monetary movement account ','capital account, trade account and business record ','sales account, profit and loss account and capital account ','monetary movement account, trade account and ales ledger.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:28'),(356,'A document that indicates obligation that is transferable by delivery and endorsement is a ','bill of lading ','bill of exchange ','documentary evidence ','negotiable instrument ','','','a','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:29'),(357,'The document which can be exchanged for a bill of lading is ','freight note ','mate receipt ','export invoice ','ship report','','','a','','utme','2011',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:30'),(358,'The price quoted which includes the cost of insurance, freight and all delivery charges to the importer’s warehouse is ','Free Alongside Ship','Franco ','Free on Board ','Free on Rail','','','c','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:31'),(359,'The purchase of goods under the CWO system of payment implies that ','money must be enclosed when ordering ','payment must be made on delivery ','payment must be made on the spot.','cash must be paid on the spot ','','','b','','utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:32'),(360,'The most effective but limited medium of advertising in Nigeria is ','billboard ','television ','newspaper ','radio ','','','a','','utme','2011',114,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:33'),(361,'A cheque that has been drawn but not presented for payment can still be honoured ','within 6 months ','after 9 months ','within 9 months ','after 6 months','','','a','','utme','2011',117,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:34'),(362,'The major source of income to commercial banks is ','loans ','deposits ','interests ','overdrafts ','','','b','','utme','2011',112,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:35'),(363,'An ancillary to trade that easily links suppliers with consumers is ','tourism  ','banking ','communication ','transportation','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:36'),(364,'Mr. Lawal insured his warehouse against burglary but it was later gutted buy fire. This implies that ','the loss should be borne by the insurer ','Mr. Lawal is liable  only for half of the estimated loss ','the insurer should make a consolation payment for the loss','the loss should be borne by Mr. Lawal','','','d','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:37'),(365,'The agreement of insurers to spread risks  among themselves is a major feature of ','reinsurance','life assurance ','underwriter','marine insurance ','','','a','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:38'),(366,'Inbound tourism occurs when ','non-residents of a country travel to other countries ','residents of a country travel to other countries ','non-residents of a country travel countries ','residents of a country travel within it','','','d','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:39'),(367,'One of the major disadvantages of pipeline transportation is its ','high cost of construction ','limitation in scope ','vulnerability to climatic changes ','high maintenance cost ','','','a','','utme','2011',105,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:40'),(368,'The business organization that can effectively combine management with control is ','private limited liability company ','sole proprietorship ','public limited liability company ','co-operative society ','','','b','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:41'),(369,'When two or more companies agree to execute a project too large for one to handle, this is referred to as ','an amalgamation ','a cartel ','a merger ','a consortium ','','','d','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:42'),(370,'In the event of voluntary liquidation, the appointment of a liquidator is the responsibility of the ','directors ','creditors ','promoters ','court ','','','a','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:43'),(371,'A source of business financing which involves pledging of a specific asset is ','bond ','mortgage ','debentures ','loan','','','b','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:44'),(372,'An example of a trade association is ','ALGON','NLC','NURTW','NULGE','','','a','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:45'),(373,'A broker is an agent who links a potential investor with ','a shareholder who wants to register a company ','Other members of the exchange who want to trade ','government official on the exchange ','a quoted company ','','','d','','utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:56'),(374,'Second-tier securities Market differs from the first-tier securities Market in that the former is ','Highly restricted ','regulated by the SEC','regulated by the NIPC','Less restricted ','','','a','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:56'),(375,'A communication process providing information for decision-making in an organization is the ','Management Information System','Transmission Control Protocol ','Information Retrieval System ','File Transfer Protocol.','','','c','','utme','2011',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:57'),(376,'The managerial ability of a supervisor in an organization may be underutilized if the ','morale of the supervised is high ','span of control is wide','span of control is narrow','morale of the supervised is low','','','c','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(377,'The arrangement and interrelationship of the various components and positions of a business is referred to as ','organizational structure ','clarity of objective ','unity of direction ','line structure','','','a','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:06'),(378,'The variety of goods and services which a company offers for sale is its ','place mix ','promotion mix ','price mix','product mix','','','d','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:07'),(379,'Activities undertaken to create awareness for goods by conducting contests is ','marketing concept ','consumerism ','sales promotion ','marketing mix','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:08'),(380,'The slogan, a wonderful world,  used by a communication network is a form of ','product differentiation ','persuasive advertising ','publicity ','packaging ','','','b','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:09'),(381,'To make a simple contract valid, the intention must be ','legal and written ','legal and binding ','legal and attractive ','legal and harmonious ','','','b','','utme','2011',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:10'),(382,'The major parties to an agency relationship are the ','principal and the creditor ','bailee and the bailor','principal and the agent','shareholder and the creditor ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:11'),(383,'One of the obligations of an employer to an employee is to ','Indemnify  him against liabilities incurred on duty ','award scholarship to his children ','terminate his appointment  without prior notice','indemnify him against injuries caused through negligence ','','','a','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:12'),(384,'The body charged with the responsibility of regulating foods and drugs in Nigeria is the ','SON','NDLEA','NAFDAC','CAC','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:13'),(385,'The physical components of a computer system refers to the ','system unit ','hardware ','software ','compact disk ','','','b','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:14'),(386,'An example of a computer operating system is ','the pagemaker ','the Word Perfect ','Microsoft Word 2000','Windows 2000','','','d','','utme','2011',93,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:15'),(387,'Intranet differs from extranet in that the former ','requires a modem before it could be used ','can generally be accessed by the public ','is restricted to employees of an organization ','requires internet protocols','','','c','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:17'),(388,'A software application which enables a user to display and interact with texts, images and videos is the ','web server','internet Protocol','coreldraw ','web browser ','','','c','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(389,'A predominant mark-up language for web pages is ','IP','HTTP','HTML','TCP','','','c','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:19'),(390,'The symbol @ in an internet mail address is used  to  ','separate the user name from the machine name ','link the user with other internet users ','locate the addresses of internet  uses ','link the user with the machine.','','','c','','utme','2011',118,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:20'),(391,'A business organization is said to be socially responsible when it ','gets involve in issues relating to the society ','rewards its staff for long-term service','offers discounts to customers','invites the public to its annual general  meetings.','','','a','','utme','2011',119,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:21'),(392,'One of the major benefits of commerce to government is to ','improve the standard of living ','generate revenue for growth and development ','encourage cooperation among public organizations ','encourage the development of socio-cultural values','','','b','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:22'),(393,'An example of an activity in the construction industry is ','blacksmithing  ','bricklaying ','car assembling ','shoemaking ','','','c','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:23'),(394,'One of the inputs in production that can be motivated by remuneration is ','capital ','entrepreneur ','labour ','land ','','','c','','utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:24'),(395,'The allocation of tasks to different skills in a production process is referred to as ','production technique ','production function ','division of labour','delegation of responsibility ','','','c','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:25'),(396,'The sales of goods through a medium that accepts money and deliver the items to the customer is ','an automated teller machine ','a vending machine','a counting machine','a branding machine','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:26'),(397,'The main purpose of branding is to ','create identity for a product ','make a product look attractive ','create product awareness ','increase sales volume ','','','a','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:27'),(398,'The basis for international trade is embedded in the principle of ','absolute advantage ','globalization ','deregulation','comparative advantage ','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:28'),(399,'The major problem encountered in international trade is that of  ','distance ','differences in culture ','politics ','differences in currency ','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:29'),(400,'The document a seller uses in dispatching goods to a customer by a carrier is ','a bill of lading ','an invoice ','an advice note','a delivery note','','','d','','utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:30'),(401,'A document which serves as an order with details of goods required by an intending purchaser is   ','a freight note ','an indent ','a bill of lading ','a waybill','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:31'),(402,'If a customer pays within nine days of receiving goods and takes advantage of 3% off the invoice price, this is stated as ','3/9; net 3. ','9/27; net 30','30; net 9/3','9/30; net 3.','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:32'),(403,'Which of the following is a characteristic of a bearer cheque? ','it is made with transverse lines ','it is made payable to whoever presents it','It is made without teraservers lines','it is only payable into the payee’s account ','','','b','','utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:33'),(404,'A bill of exchange paid before its due date at an amount less than its face value is said to have been ','accepted ','rejected','discounted ','dishonoured ','','','c','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:33'),(405,'The most effective type of advertising for branding products is ','mass advertising ','persuasive advertising ','informative advertising ','competitive advertising ','','','c','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:34'),(406,'A current account holder pays fees for services in form of ','bank charges ','inertest rates','commission on turnover','minimum lending rate','','','a','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:35'),(407,'Printed messages sent by cable are recorded as ','telegram ','SMS','telex','MMS','','','a','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:36'),(408,'Communication is relevant to business activities because it ','creates wealth for people ','reduces the cost and risk of traveling ','connects people','enhances delivery of goods and services','','','b','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:37'),(409,'The right of an insurance company to stand in place of an insured against a third party, who is liable for the occurrence of a loss, is the principle of ','proximate cause','insurable interest ','insurance priority ','subrogation ','','','c','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(410,'Assurance is different from insurance in that the former is based on ','probability ','possibility ','risk ','uncertainty ','','','b','','utme','2012',57,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:40'),(411,'A person who undertakes a life insurance is said to be an ','Insurer ','assurer ','assured ','insured ','','','d','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:41'),(412,'Tourism serves the purpose of ','cross-cultural understanding and peaceful interaction ','opening avenues for leaving the country','economic development and naturalization ','exploiting the country’s natural endowment','','','d','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(413,'The type of letters that are delivered through the normal mail or by airmail express service is referred to as ','Inland letters ','registered letters','airmail letters','express letters','','','c','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(414,'A business organization that exploits the capabilities of a member to remedy the weaknesses of another is a ','joint venture ','partnership ','nominal partnership ','cooperative ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:44'),(415,'The most important business objective is to ','improve investments ','provide quality  products','target consumers for satisfaction ','carve a niche for the business ','','','c','','utme','2012',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:45'),(416,'In case of liquidation of a public limited liability company, those that are first paid are ','ordinary shareholders ','preference shareholders ','cumulative preference shareholders ','debenture holders','','','d','','utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:46'),(417,'A feature common to public and private limited liability companies is that ','both can sue and  be sued ','the minimum number of their shareholders is five','the transfer of their shares  is not restricted ','their annual accounts are published for public use','','','a','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:47'),(418,'A business organization can obtain long-term financing through ','bank overdraft ','the sale of shares ','credit purchases ','bureau de change ','','','b','','utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:47'),(419,'The portion of the authorized share capital given out to the public for subscription is ','called-up capital ','issued capital ','paid up capital ','reserved capital ','','','b','','utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:48'),(420,'A company has an authorized capital of 40 million shares at N1 each, out of which 32 million are issued and fully paid-up. What happens to the remaining 8million shares?','it has been issued but not paid-up ','it has been applied for but not issued ','it is not paid up','it is not yet been issued ','','','d','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:50'),(421,'If the rate of turnover of a company in 1999 was 4 times while the average stock was N49, 600, determine the turnover.','N199, 400','N198, 400','N100, 200','N99, 200','','','b','','utme','2012',62,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(422,'Given:  N\\n Opening stock  1,800\\n Purchases   2, 800\\n Sales    8,000\\n Closing stock    350\\n Carriage on sales    500\\n Calculate the value of the unused stock.\\n','N 800','N500','N350','N320','','','c','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:52'),(423,'The main objective of a trade association is to ','protect is members against litigation ','boost the trade of its members ','secure credit for its members ','protect its members against victimization ','','','d','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:01'),(424,'The promotion and protection of trade, industry and agriculture thorugh trade fairs is a function of ','NACRDB','NACCIMA','the Consumer Protection Council ','the Chamber of Commerce ','','','d','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:02'),(425,'Dealing in quoted securities on the Nigeria Stock Exchange is restricted to authorized ','companies ','brokers ','investors ','principals','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:03'),(426,'Securities that entitle the investor to coupon rates are ','bonds ','equities ','warrants ','treasury bills','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:04'),(427,'Under what management function will the motivation of employees fall?','staffing ','controlling ','organizing ','directing ','','','b','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:05'),(428,'The promotion of team spirit in an organization is referred to as ','Unit of direction ','spirit de corps ','unity of purpose','discipline ','','','a','','utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:06'),(429,'One of the characteristics of a good organizational chart is that it should ','be rigid ','show government policy','facilitate communication ','be acceptable ','','','c','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:07'),(430,'An organization which focuses on consumer satisfaction is practicing ','consumerism ','market segmentation ','selling concept ','marketing concept ','','','d','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:08'),(431,'Goods and Services are made available to consumers through','the channel of distribution ','sales promotion ','the advertising agency','the middlemen ','','','a','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:09'),(432,'A person who in consideration for an extra commission, takes responsibility for goods sold on credit and in case of default is a ','commission agent','del credere agent ','broker ','factor ','','','b','','utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:10'),(433,'Yahaya bought a piece of furniture on a credit sale agreement from Ahmed and resold it to Ali before all installments were made. The court upheld that Ahmed could not recover possession of the items from Ali. The reason for the judement was because ','ownership was transferred on completion of installment ','ownership was transferred on delivery ','Yahaya could not pass title to a third party ','Ali was still indebted to Yahaya','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:11'),(434,'The body which ensures that consumers are protected against harmful product in Nigeria is ','NAFDAC ','NDLEA','SON','CPC','','','a','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:12'),(435,'The process of decoding data in a computer is known as ','dilution ','default drive ','decryption ','data security ','','','c','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:13'),(436,'Which of the following is a type of system software? ','Utility programs ','Registers ','Hard drives ','Packages','','','a','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:14'),(437,'Computers that process all data as binary zeros and ones are ','analog computers ','digital computers ','hybrid computers','desktop computers','','','b','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:14'),(438,'Modern mans of payment is greatly facilitated by ','e-commerce ','paper money ','e-banking ','D credit transfer ','','','c','','utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:15'),(439,'The provision of quality and safe products which guarantee the health of consumers is an example of ','quality control ','price control ','civic responsibility ','social responsibility ','','','a','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:17'),(440,'A business organization must always consider the overall effect of its actions on the ','competitor ','product ','profit ','society ','','','c','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:18'),(441,'The type of labour that makes use of physical effort in production processes is the ','unskilled labour','skilled labour','blue-collar job','white-collar job','','','a','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(442,'The assembling of products into usable forms is known as ','creation ','manufacturing ','construction ','formation ','','','c','','utme','2013',69,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(443,'The final link in the chain of distribution is ','Middlemen ','wholesaling ','consumer ','retailing ','','','c','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(444,'A country is said to be experiencing an unfavourable balance of trade if her','exports exceed imports ','visible exports  exceed  visible imports ','imports and export are equal ','visible imports exceed visible exports ','','','d','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(445,'Trading position of Nigeria is the same as her ','desire  to trade with many countries','willingness to grant credit to foreigners ','balance of trade ','terms of trade','','','a','','utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(446,'The role of customs and excise authority includes the ','provision of a good transport system to facilitate imports and exports ','provision of security at the port ','control of the flow of goods in and out of the country ','provision of dockyards for ship repairs ','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(447,'The document lodged with the customs authorities before a ship can leave the port is a ','shipping note ','ship report ','ship manifest','dock warrant ','','','c','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:25'),(448,'The document which must be endorsed by the ambassador of a country of destination before shipment of goods is a ','consular invoice ','certificate of origin ','bill of lading ','closed indent ','','','b','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(449,'A country’s terms of trade are said to improve when the ratio of her export ','decreases ','remains constant ','increases ','equals import','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(450,'Which of the following advertising medium appeals to only the literate it the society?','Radio advertising ','Print Media advertising ','Television advertising ','Cinema advertising ','','','b','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(451,'The two main forms of communication are ','oral and written ','verbal and non-verbal ','e-mail and fax','traditional and modern media ','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:29'),(452,'The most reliable and efficient means of conveying urgent documents is through','postal order ','ordinary letters ','registered letters ','courier services','','','d','','utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(453,'An undertaking given by a person to another assuring his integrity is ','proximate clause ','fidelity guarantee ','subrogation ','insurable interest ','','','b','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(454,'If Mr. N takes a fire insurance policy with average clause, his compensation will be ','N5, 000','N7, 500','N70, 000','N75,000','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(455,'The difference between indemnity insurance and non-indemnity insurance is that the latter provides ','cover for exporters against risks ','cover for importers against risks ','full payment to the insured ','consolation payment to the insured ','','','d','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(456,'An importance of warehousing is in the ','production of goods ','transportation of goods ','Importation of goods ','repackaging of goods','','','a','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(457,'In order to increase the capital owned, a sole trader may ','seek for bank loan ','issue debentures ','acquire extra shop fittings on credit ','draw less of his profit for personal use','','','d','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(458,'A business partner who provides capital but abstains from participation in administration of a firm is a ','general partner ','nominal partner ','secret partner ','dormant partner ','','','d','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:36'),(459,'Which of the following will NOT be stated in a Memorandum of Association? ','Name clause ','Rights of shareholders ','object clause ','Registered office','','','d','','utme','2013',90,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(460,'The amount of authorized capital that shareholders have subscribed to is ','issued share capital ','authorized share capital ','owner’s equity ','working capital ','','','c','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(461,'The rate of turnover of a firm in a given year is 5 times while the average stock is \\n N12.500. what is the turnover of the firm? \\n','N24,000','N46,500','N62, 500','N65,000','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(462,'A lawyer that defrauds his client may be derobed by the Nigerian Bar Association in order to ','protect other lawyers ','protect the integrity of the association','compensate the affected client ','prevent the client from sueing the association ','','','c','','utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(463,'In the Nigeria GSM industry, a parliament is organized by the Nigerian Communication Commission in order to ','increase profit of service providers ','protect the interest of government ','encourage more people into the business ','protect the interest of consumers ','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:41'),(464,'Trade Fairs in Nigeria are organized by ','the Federal Government ','Manufactures’ Association of Nigeria','Ministry of Commerce and industry ','Chambers of commerce','','','d','','utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(465,'Money is generally acceptable for transactions due to','the legal backing ','the rule of law ','it’s acceptability in the global market ','the Central Bank Governor’s signature ','','','d','','utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(466,'Which of the following is a quality of money?  ','Availability','Scarcity  ','Indivisibility ','Convertibility ','','','a','','utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(467,'Money can simply be referred to as a ','measure of value','standard of value','means of settlement ','durable asset for doing business','','','a','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(468,'Gilt-edged securities are issued mainly by ','individuals ','non-governmental organizations','government ','multi-national companies ','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(469,'The initial function of a manager is ','setting up an organization ','coordinating ','planning ','provision of welfare package ','','','b','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(470,'The most suitable organizational structure for small or medium-sized enterprises is ','line structure ','staff structure ','committee structure ','functional structure ','','','a','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:48'),(471,'In a staff-authority relationship, the opinion of a specialist is one department to another is ','a directive ','an advice ','a command','a delegation ','','','b','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(472,'Management of a business involves he development of ideas for the ','distribution of goods and services that human wants','transportation of goods and services that goods and services that human wants ','transfer of little of ownership of goods and services to individuals.','production of goods and services that satisfy human needs.','','','d','','utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(473,'Which of the following is used as a pricing policy? ','packaging ','market selection ','labeling ','market skimming ','','','d','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:06'),(474,'The essential utility derived from the use of a product is known as ','augmented benefit','branded benefit ','core benefit ','formal benefit','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(475,'The breaking down of a market into separate and identifiable elements is known as ','differentiation ','segmentation ','skimming ','penetration ','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(476,'A contract that is acknowledged before the law court is referred to as ','informal contract','formal contract ','contract of records ','specialty contract ','','','b','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(477,'An agent employed to sell goods delivered to him by the principal is referred to as a ','Special agent ','del credere agent ','factor ','universal agent','','','b','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:55'),(478,'A motor dealer who agreed to sell a car to Mr. X but sold and delivered it to Mr. Y on the delivery date agreed with Mr. X. He has discharged the contract by ','performance ','frustration ','an agreement ','breach ','','','d','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(479,'A contract can be terminated through ','physical combat ','family intervention ','frustration ','consultation ','','','d','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(480,'The right of retain possession of goods until the contract price is paid is referred to as ','a promise ','ultra vires ','a branch ','a lien ','','','a','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(481,'The sole legal right held by the author to publish his book is a ','trademark ','copyright ','patent right ','book mark','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(482,'The process of transferring data from one computer to another is referred to as ','down loading ','faxing ','browsing ','decoding ','','','a','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(483,'The physical component of a computer system is ','software ','hardware ','hard disk','floppy disk ','','','b','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(484,'A computer accessory through which information can be retrieved is the ','hard disk ','input  device ','control unit ','floppy disk ','','','d','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(485,'The type of computer application software used mainly for management information is ','Corel draw ','AutoCAD','data base','word perfect','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(486,'To meet security requirement before gaining access to data, a computer operator supplies ','an e-mail address ','a yahoo address ','a password ','a modem','','','c','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(487,'A major factor that affects business operations is ','technology ','supply ','product ','rivalry ','','','a','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:05'),(488,'The environmental hazard that is most difficult to control is ','land pollution','water pollution ','air pollution','political unrest ','','','c','','utme','2013',64,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(489,'Which of the following can be defined as trade and aids to trade?','Advertising','Commerce','Wholesaling','Retailing','','','b','','wassce','2000',66,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:07'),(490,'Which of the following is not a source of finance to a sole proprietor?','Trade Credit','Overdrafts','Debentures','Leasing of equipment','','','d','','wassce','2000',57,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:08'),(491,'Partners who allow their names to be used in a partnership but do not take part in the management of the business are','active partners','limited partners','general partners','nominal partners','','','d','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:09'),(492,'A private company is one which','must publish its audited account','floats its shares on the stock exchange market','restricts the rights to transfer its shares','is owned by a maximum of twenty members merger','','','c','','wassce','2000',61,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:10'),(493,'The coming together of two or more firms at different stages of production is','horizontal merger','vertical merger','amalgamation','cartel','','','b','','wassce','2000',61,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:11'),(494,'The total value of fixed and current assets is?','working capital','capital employed','Fixed capital','capital owned','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:12'),(495,'What is P in the above equation?','Purchases returns','Net Profit','Sales','Carriage outwards','Use the following equation to answer question   Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',64,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:13'),(496,'What is G in the above equation?','Sales returns','Carriage inwards','Purchases','Sales','Use the following equation to answer question  Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:14'),(497,'Which of the following is true about cumulative preference shares?','Unpaid dividends are carried forward','Shareholders can secure capital refund on demand','Shareholders are entitled to further share of profit','Dividends are paid into a special account','','','a','','wassce','2000',56,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:15'),(498,'A debenture is mortgaged when it is','not secured on the assets of a company','secured on the assets of a company','irredeemable','redeemable','','','b','','wassce','2000',55,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:16'),(499,'A retail outlet which sells a fairly narrow range of goods with a number of branches in different towns is a','supermarket','mail-order shop','mobile shop','multiple shop','','','a','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:17'),(500,'A consignment note is used when','goods are wrapped and labeled for easy identification','goods are dispatched to agents through transporters','damaged goods are being returned','there is over-invoicing','','','b','','wassce','2000',57,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:18'),(501,'Which of the following is not contained in an advice note?','Type of goods','Price of goods','Date of dispatch','Means of dispatch','','','d','','wassce','2000',55,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:19'),(502,'A refund of the duty collected on goods imported and processed for re- export is','excise duty','excise draw back','preferential duty','value added tax','','','b','','wassce','2000',54,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:20'),(503,'When a country’s total visible and invisible exports are more than its visible and invisible imports, it has','favourable balance of payments','favourable balance of trade','unfavourable balance of trade','unfavourable balance of payments','','','a','','wassce','2000',51,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:21'),(504,'Which of the following is not a function of a retailer?','Supplying goods to final consumers','Bulk breaking','Giving information to the wholesaler','Branding and packaging of goods','','','d','','wassce','2000',44,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:22'),(505,'A merchant who wishes to order goods from a foreign country sends','an invoice','an indent','an advice note','a credit note','','','b','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:23'),(506,'The production of goods in anticipation of demand is \tpossible because of the existence of','Packaging','advertising','warehousing','branding','','','c','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:25'),(507,'Which of the following is sent in reply to a letter of enquiry?','Quotation','Order','Consumer invoice','Advice note','','','b','','wassce','2000',58,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:26'),(508,'The abbreviated phrase E & OE is usually printed on','an invoice','a cheque','a delivery note','a debit note','','','a','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:27'),(509,'Which of the following refers to a price reduction based on the size of order?','Cash discount','Trade discount','Seasonal discount','Cash on delivery','','','b','','wassce','2000',64,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:28'),(510,'Which of the following is not a means of payment in foreign trade?','Telegraphic money order','Specially crossed cheque','Letters of credit','Debit transfer','','','b','','wassce','2000',56,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:29'),(511,'A bill of exchange on maturity is allowed','seven days of grace','five days of grace','four days of grace','three days of grace','','','a','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:30'),(512,'Which of the following is not a financial institution?','Commodity Board','Insurance company','Clearing house','Stock exchange','','','a','','wassce','2000',56,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:31'),(513,'When a customer writes a cheque in his own name and withdraws cash with it from his account he is both the','drawee and the payee','drawer and the payer','drawee and the drawer','drawer and the payee','','','c','','wassce','2000',48,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:32'),(514,'Which of the following is a means of payment through the post office?','Standing Order','Promissory note','Money order','Telegraphic transfer','','','c','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:41'),(515,'Which of the following encourages people to save towards owning a house?','Merchant bank','Development bank','Mortgage bank','Commercial bank','','','c','','wassce','2000',42,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:42'),(516,'Which of the following services is not rendered by commercial banks?','Business advice','Currency notes issue','Accepting deposits','Credit transfer','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:43'),(517,'A retirement insurance policy which enables the assured to receive income for a specific period is','annuity','endowment','whole life','fidelity guarantee','','','a','','wassce','2000',58,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:44'),(518,'A house worth  N50.000 was insured against fire for  N30,000. Fire destroyed and caused damages worth N20.000 on the house. Under which insurance principle will the owner be entitled to a compensation of  N20,000?','Contribution','Subrogation','Indemnity','Uberrimaefidei','','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:45'),(519,'When an insurance company indemnifies the insured and takes over his rights, this is known as','abandonment','subrogation','proximate cause','contribution','','','b','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:46'),(520,'In Public Limited Liability Companies, equities are referred to as','preference shares','authorized capital','ordinary shares','called-up capital','','','c','','wassce','2000',62,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:47'),(521,'The method of sending messages by the teleprinter is','telephone','cablegram','telex','railex','','','c','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:48'),(522,'The information on terms of carriage of mails is found in','business journal','post office guide','trade directory','service manual','','','b','','wassce','2000',48,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:49'),(523,'Rail transport is less flexible than road transport because','rail lines run between specific terminals','train is slow over long distances','only bulky goods are carried by rail','road transport is suitable for short distances','','','a','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:50'),(524,'Which of the following is used for moving only goods from one seaport to another?','Ocean liner','Cargo liner','Ferry','Coaster','','','b','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:51'),(525,'The marketing activity that stimulates immediate demand for a product is','sales promotion','publicity','consumer relations','personal selling','','','a','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:52'),(526,'Which of these is not a basic marketing function?','Exchange','Production','Facilitation','Information','','','b','','wassce','2000',67,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:54'),(527,'Branding is a tool for','competitive advertising','consumerism','marketing research','pricing policy','','','a','','wassce','2000',47,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:55'),(528,'Firms wishing to defend established products as well as launch new ones will make use of','franchising','product differentiation','branding','advertising','','','d','','wassce','2000',45,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:56'),(529,'Which of the following is a method of sales promotion?','Radio giggles','Poster display','Trade fair','Television broadcast','','','c','','wassce','2000',62,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:57'),(530,'The deliberate and sustained efforts to maintain a good image of a company is known as','personal relations','public relations','professional relations','industrial relations','','','b','','wassce','2000',50,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:58'),(531,'A contract of sale where ownership passes to the buyer on the payment of the first instalment is known as','hire purchase','lease','cash on delivery','credit sale','','','d','','wassce','2000',53,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:59'),(532,'Which of the following agents guarantees payment transactions entered into on behalf of the principal?','Auctioneer','Factor','Broker','Del credere','','','d','','wassce','2000',67,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:00'),(533,'Which of the following is not a means of consumer protection?','Price control','Sale of Goods Act','Trade Description Act','Tax laws','','','d','','wassce','2000',59,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:01'),(534,'Which of the following is a basic requirement for a valid contract?','Representation','Consideration','Interest','Performance','','','b','','wassce','2000',60,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:02'),(535,'A counter-offer in a contract is regarded as','an acceptance','an invitation to treat','a rejection','a consideration','','','c','','wassce','2000',53,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:03'),(536,'Which of the following is not a right of the consumer?','Safety','Choice','Discount','Value','','','c','','wassce','2000',64,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:04'),(537,'Which of the following is an agreement to transport goods but not a document of title?','Air-waybill','Bill of lading','Charter party','Freight note','','','c','','wassce','2000',63,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:05'),(538,'In which of the following classes of occupation would you place a doctor?','Extractive','Commercial','Direct services','Indirect services','','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:06'),(539,'Commercialization is good for the Nigerian economy because it','creates room for competition','increases the cost of living','leads to the reduction of workforce','leads to uneven distribution of wealth','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:40','2020-07-14 12:58:07'),(540,'Obtaining feedback on the quality and performance of competing products of different manufacturers, explains the retailer’s function of','after sales service','granting to credits to consumers','market research','stocking variety of goods','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:08'),(541,'The direct contact of a seller with potential buyers with a view to making sales is called','advertising','personal selling','public relations','publicity','','','b','','neco','2013',70,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:09'),(542,'The process of dividing a total market into groups made up of people with similar need refers to marketing','function','mix','research','segmentation','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:11'),(543,'The final link in the chain of distribution is the','agent','consumer','manufacturer','retailer','','','b','','neco','2013',65,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:12'),(544,'Platinum Habib Bank Plc. is an example of __ bank.','central','commercial','development','merchant','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:13'),(545,'Which of the following is NOT a means of payment through the post office?','Giro system','Money order','Postage stamp','Standing order','','','d','','neco','2013',78,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:14'),(546,'Branch managers who virtually have no control on goods they sell is a disadvantage of __  store.','chain','departmental','mail order','super','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:15'),(547,'Instrument used in place of legal tender but not freely acceptable are called ___ money.','bank','commodity','gold - backed','representative','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:34'),(548,'The assurance policy in which the assured pays lump sum of money which matures at his retirement is ___assurance.','annuity','endowment','life','term','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:35'),(549,'By making it possible for wholesalers to keep surplus stock until demand improves, the warehouse performs the function of','employment creation','price stabilization','production planning','storage','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:36'),(550,'Calculate the net profit.','30,000','33,000','38,000','40,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','b','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:37'),(551,'Calculate the total liabilities.','40,000','50,000','55,000','57,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','c','','neco','2013',67,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:38'),(552,'Calculate the current assets.','15,000','20,000','30,000','45,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','a','','neco','2013',65,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:39'),(553,'Ensuring free movement of factors of production among member states through the removal of obstacles is one of \t\tthe objectives of','ECOWAS','LCBC','NBC','OAU','','','a','','neco','2013',76,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:40'),(554,'Which of the following documents contains the name of the company, registration number and signature of the registrar?','Articles of association','Certificate of incorporation','Certificate of trading','Memorandum of association','','','d','','neco','2013',65,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:41'),(555,'The method of shopping on the internet by using the computer to browse the website of the manufacturer is known as','e-banking','e-commerce','e-exchange','e-trade','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:42'),(556,'The development of a container and a graphic design for a product is known as','advertising','branding','packaging','trade mark','','','c','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:43'),(557,'When an agent is appointed verbally or in writing by the principal to act on his behalf, the appointment is said to be by','estoppels','express','implication','ratification','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:44'),(558,'The features of an entrepreneur consist of the following, EXCEPT','coordinating factors of production','earning wages as income','efficiency in management','maintaining good communication','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:46'),(559,'Another name for trade discount is _________ discount,','cash','functional','quality','quantity','','','d','','neco','2013',58,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:47'),(560,'Those engaged in extraction, manufacturing, and construction occupations are called ___ workers.','commercial','direct','indirect','industrial','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:48'),(561,'Which of these is NOT a source of capital to First Bank of Nigeria Plc?','Equipment leasing','Lean from friends','Profit plough back','Sales of shares','','','b','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:49'),(562,'In trading, profit and loss account, carriage outward is','added to purchases','deducted from purchases','deducted from sales','treated as expenses','','','d','','neco','2013',68,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:50'),(563,'The pricing policy adopted by firms selling to wealthy people is','market penetration','market skimming','pricing above the market','pricing with the market','','','b','','neco','2013',61,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:51'),(564,'Which of the following is NOT a function of courier companies?','Ensuring international transmission of message','Providing door to door delivery services','Providing efficient means of mail delivery','Undertaking the shipment of export and import','','','d','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:52'),(565,'“MTN, Your Best Connection” is an example of ___ advertisement.','competitive','direct','informative','mass','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:53'),(566,'The assertion ‘consumers are always right’ refers to marketing','board.','concept','function','mix','','','b','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:54'),(567,'Which of the following is charged by the NIPOST on postal order?','Dividend','Interest','Poundage','Premium','','','c','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:56'),(568,'The following are characteristics of debenture holders, EXCEPT','being one of the sources of long term loan to public companies.','being paid interest','they are creditors of the company','they are entitled to profits','','','d','','neco','2013',56,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:57'),(569,'The money paid to savings account holders by banks after a period of transaction is called','dividend','gain','interest','premium','','','c','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:58'),(570,'Double coincidence of wants is a disadvantage of','business','buying and selling','credit sales','trade by barter','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:59'),(571,'Price quotation which excludes all delivery charges is called','cost and freight','ex - ship','ex - warehouse','free - on - board','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:00'),(572,'Which of the following does NOT appear on a cheque on presentation for payment?','Amount in words and figures','Date of withdrawal','Name of the cashier','Name of the payee','','','c','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:01'),(573,'The aspect of production which provides goods and services for immediate consumption is called ___ production.','direct','indirect','primary','secondary','','','a','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:02'),(574,'The actual gain made by a business after all expenses has been deducted is called','gross profit','margin','mark-up','net profit','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:03'),(575,'The following documents are used between buyers and sellers, EXCEPT','catalogue','dispatch rate','invoice','license','','','d','','neco','2013',81,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:04'),(576,'The total assets of a business less current liabilities refers to _____ capital.','authorized','called up','employed','owned','','','d','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:05'),(577,'The following are merits of industrial integration, EXCEPT','controlling output and price','eliminating waste','leading to monopoly','preventing over production','','','c','','neco','2013',80,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:06'),(578,'The use of middlemen by manufacturers become necessary where the goods','are of low rate of turnover','are susceptible to faking or adulteration','involved are branded','produced are in large quantities','','','d','','neco','2013',74,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:07'),(579,'The oldest form of business enterprise in Nigeria is','partnership','private liability company','public enterprise','sole proprietorship','','','d','','neco','2013',79,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:08'),(580,'Social responsibilities of a business to the consumers \tinclude the following, EXCEPT','educating the customers','ensuring truth in advertisement','granting credit facilities','providing of quality product','','','c','','neco','2013',58,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:09'),(581,'Products that have stayed long on themselves in a shop can be sold easily through','branding','discounting','doorstep selling','franchising','','','b','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:10'),(582,'The durable capital of an enterprise which is used continuously for further production is called ___ capital.','called up','circulating','fixed','liquid','','','c','','neco','2013',59,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:11'),(583,'A manufacturer is said to have performed all the necessary marketing functions in the distribution channel when the goods move from','manufacturer ? consumer','manufacturer ? retailer ? consumer','manufacturer ? wholesaler ? retailer ? consumer','manufacturer ? wholesaler ?jobber ? retailer ?consumer','','','c','','neco','2013',73,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:12'),(584,'Which of the following is NOT a reason for government’s ownership of Nigerian Ports Authority (NPA)?','Avoiding wasteful competition and duplication','Generating revenue','High capital requirement','Making profit','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-16 09:51:24'),(585,'The first step for a businessman who wishes to engage in international trade is to','ask the exporter to move the goods to the shipping company for delivery','engage the services of clearing agent to clear the goods on his behalf','establish contact with the foreign trading partner','fill an application for import form with a bank','','','c','','neco','2013',79,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:28'),(586,'A law made by a country to prohibit importation of certain goods into the country is called _____ laws.','export','import','protectionist','tariff','','','c','','neco','2013',74,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:29'),(587,'Which of the following towns was NOT an initial commercial centre in Nigeria?','Kano','Lagos','Maiduguri','Yola','','','d','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:31'),(588,'Management function which arranges people, time, money and equipment, to achieve the objectives of an organization is referred to as','directing','motivating','organizing','planning','','','c','','neco','2013',75,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:32'),(589,'Bridging the gap between producers and consumers is the sole purpose of','distribution','hawking','retailing','warehousing','','','c','','neco','2013',69,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:33'),(590,'Which of the following is NOT a characteristic of labour? It is','fixed in supply','geographically mobile','man made','perishable in nature','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:34'),(591,'One of the problems associated with home trade is the','absence of currency exchange','better knowledge of the markets','inadequacy of storage facilities','proximity of buyers and sellers','','','c','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:35'),(592,'An instruction from a current account holder requesting to pay a named person or organization a. specified amount is \t\tcalled','bankers order','certified cheque','internal transfer','money order','','','b','','neco','2013',68,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:36'),(593,'Which of the following is NOT a commercial occupation?','Advertising','Agriculture','Communication','Insurance','','','b','','neco','2013',78,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:37'),(594,'In the marketing mix, place refers to','channel of distribution','location of the factory','the market place','where the product is located','','','d','','neco','2013',85,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:38'),(595,'Which of the following is NOT an attribute of an effective business manager?','Altruism','Empathy','Objectivity','Subjectivity','','','d','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:39'),(596,'The ability of money to be divided into smaller units for easy exchange of goods and services explains','divisibility','durability','recognisability','stability','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:40'),(597,'Which of the following is NOT a role of trade association?','Eliminating competition among members','Ensuring uniformity in mode of operation','Establishing link between government and associations','Promoting members interest','','','a','','neco','2013',76,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:41'),(598,'The transfer of enterprises from private to state ownership for economic or social reasons is referred to as','commercialization','indigenization','industrialization','naturalization','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:42'),(599,'The major divisions of Commerce are','import, export and transport','trade, communication and warehousing','trade and auxiliaries to trade','exchange, consumption and production','','','c','','wassce','1990',65,'Admin','2016-11-14 20:22:14','2020-07-14 12:59:43'),(600,'Which of the following statements is not true?','Commercial services are the life blood of a country economic system','There cannot occur commercial services until goods have been produced.','Without commercial services most goods and services will not be produced','There is no stage of production that does not employ commercial services.','','','b','','wassce','1990',53,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:44'),(601,'The three main divisions of production include industrial','commercial and banking services','commercial and services','transportation and services','manufacturing and services','','','b','','wassce','1990',49,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:45'),(602,'Which of the following is one of the functions of commerce?','Manufacturing','Growing of tomatoes','Storage of goods','Construction of Roads','','','c','','wassce','1990',59,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:46'),(603,'Which of the following does not belong to the extractive industry?','Farming','Insuring','Mining','Drilling','','','b','','wassce','1990',61,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:47'),(604,'The average stock is','N=2000','N=3000','N=5000','N=6000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','c','','wassce','1990',62,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:48'),(605,'The cost of goods sold is','N=6000','N=10000','N=42000','N=16000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','a','','wassce','1990',59,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:49'),(606,'The oldest and commonest form of business in Nigeria is','partnership','the co-operative society','sole proprietorship','joint stock venture','','','c','','wassce','1990',52,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:50'),(607,'If a retailer Mr. Aigbojie buys goods manufactured by Adefila Limited from wholesaler Mrs. Jumai, who will prepare the delivery note?','Mr. Aigbojie','Adefila Limited','Mr. Jumai','Mr. Aigbojie and Adefila Limited','','','c','','wassce','1990',49,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:52'),(608,'Which of the following is not a factor of production?','Capital','land','Labour','Staffing','','','d','','wassce','1990',65,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:53'),(609,'In which class of occupation would you place a taxi-driver?','Extractive','Indirect services','Personal services','Commercial services','','','d','','wassce','1990',53,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:54'),(610,'The purpose of issuing a credit note is to','correct errors of overcharging','correct errors of undercharging','write off  bad debts','encourage immediate payment','','','a','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:55'),(611,'The exchange of goods for other goods in home trade is known as','entrepot trade','home trade','barter trade','foreign trade','','','c','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:56'),(612,'Which of the following advertising media combines the advantages of sound and motion?','Radio','Neon signs','Press','Television','','','d','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:57'),(613,'Which of the following is a form of sales promotion?','Promotion through radio','Advertising by television','Distributing printed sales literature','Offering free samples to customers','','','d','','wassce','1990',70,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:58'),(614,'Efforts geared towards establishing and maintaining good image for a company is termed','human relations','professional relations','public relations','trade relations','','','c','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:58'),(615,'Which of the following is sent as a reply to an inquiry?','Tender','Estimate','Statement','Quotation','','','d','','wassce','1990',55,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:59'),(616,'Which of the following statements best describes net profit? The excess of','total revenue over total expenditure','total capital income over expenditure','sales over purchases','total capital formation over capital consumption','','','a','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:00'),(617,'A business is in existence primarily to','make profit','provide goods and services','provide employment','compete with others in business','','','a','','wassce','1990',62,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:02'),(618,'A number of shops under one roof is the feature of a','supermarket','chain store','department store','mail order business','','','c','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:04'),(619,'An agreement between two parties which will give rise to enforceable rights and obligation is known as','a warrant','a contract','a consideration','an offer','','','b','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:06'),(620,'Auctions and Tenders become binding when they are','accepted','offered','received','advertised','','','a','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:07'),(621,'The organized efforts of consumers to protect themselves against the unfair practices of businessmen is called','strike','consumerism','amalgamation','propaganda','','','d','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:08'),(622,'Which of the following is the most suitable means of \ttransporting bulky goods from Lagos to Kaduna? By','Train','Airplane','Ship','Lorry','','','a','','wassce','1990',55,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:09'),(623,'Which of the following is the quickest and accurate means of communication?','Telegram','Express mail','Courier services','Telex','','','d','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:10'),(624,'Which of the following is the safest means of sending a postal order from Lagos to a friend in Jos?','Special delivery','Recorded delivery','Registered letter','First class mail','','','b','','wassce','1990',45,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:11'),(625,'One of the objectives of the indigenization programme of the Federal Government of Nigeria is to','encourage the use of local raw materials','expel all foreigners from Nigeria','make Nigerian businessmen very rich','maximize local retention of profits','','','d','','wassce','1990',54,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:12'),(626,'The law which stipulates that labels should give an accurate account of a product is the','price control act','consumer credit act','trade description act','hire purchase act','','','c','','wassce','1990',45,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:13'),(627,'Which of the following is not an essential of a contract?','Offer and acceptance','Intention to create legal relations','All contracts written out','Legality of object','','','c','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:14'),(628,'One advantage of personal selling is','low cost','immediate feedback','the appeal to many people at a time','self service','','','b','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:15'),(629,'Charges paid by a ship for staying at a port beyond agreed sailing time is called','profit','interest','holding','demurrage','','','d','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:16'),(630,'Entrepot Trade refers to','importing for domestic consumption','importing for industrial use','importing for government concerns','importing for re-export','','','d','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:17'),(631,'Which of the following could account for a favourable balance of payment?','High capital repayments','high debt service repayment','higher imports than exports','Higher exports than imports','','','d','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:18'),(632,'Which of the following is not part of the facilities provided by the Nigerian Ports Authority?','Dredging','Warehousing','Collection of customs duties','Loading and off-loading of cargoes','','','c','','wassce','1990',72,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:19'),(633,'The main purpose of branding is to','increase the quantity of goods demanded','differentiate goods from other similar goods made by other producers','increase the selling price of goods','enhance turnover of goods','','','b','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:20'),(634,'An individual who makes the final use of goods and services provided by a firm is the','manufacturer','wholesaler','consumer','retailer','','','c','','wassce','1990',57,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:21'),(635,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','cartel','trust','holding company','consortium','','','a','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:22'),(636,'When a business is insolvent it may result in','incorporation','recuperation','liquidation','restoration','','','c','','wassce','1990',43,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:23'),(637,'In insurance the term Uberrimaefidei stands for','utmost good faith','subrogation','insurable interest','indemnity against loss','','','a','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:24'),(638,'Fidelity guarantee is an insurance cover against loss arising from','trade debts','personal accidents','dishonest staff','fire disaster','','','c','','wassce','1990',54,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:25'),(639,'Which of the following is a type of marine insurance?','Endowment','Freight','Accident','Fidelity','','','b','','wassce','1990',50,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:26'),(640,'The word Ltd written after the name of a company means that','the individual member’s capital is limited','the total sum of the company’s capital is limited','members are liable to the extent of their holding','company’s location is limited','','','c','','wassce','1990',57,'Admin','2016-11-14 20:22:17','2020-07-16 09:51:24'),(641,'Which of the following is a public corporation? The','Nigeria Breweries Limited','Nigerian Ports Authority','Lagos Chamber of Commerce','Nigerian Bottling Company','','','b','','wassce','1990',64,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:28'),(642,'Which of the following is not required in a Memorandum of Association? The','name of the company','location of the company','names of the Board of Directors','limitation of member’s liability','','','c','','wassce','1990',55,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:29'),(643,'The amount paid by the insurance company to the insured upon giving up his policy is called','Surrender value','cash bonus','assured sum','dividend','','','a','','wassce','1990',46,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:30'),(644,'The amount paid by the assured to the insurer is called','interest','premium','dividend','indemnity','','','b','','wassce','1990',60,'Admin','2016-11-14 20:22:17','2020-07-16 15:36:49'),(645,'With the exception of life assurance and personal accident insurance, contracts of insurance are contracts of','premium','indemnity','proximate cause','utmost good faith','','','b','','wassce','1990',57,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:32'),(646,'An author’s exclusive right to published and unpublished works is known as','patent right','fundamental human right','copyright','authorship','','','c','','wassce','1990',54,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:34'),(647,'The cost which is incurred as a result of failure to load or unload a ship at the ports within a specified period is referred to as','demurrage charges','premium charges','trade charges','excess charges','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:47','2020-07-14 13:00:35'),(648,'The process whereby a firm directs its marketing efforts towards a single market by the use of a particular marketing mix is referred to as','concentration segmentation','marketing concept','consumer orientation','market penetration','','','d','','utme','2016',68,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:36'),(649,'The function of money that is mostly affected by inflation is','store of value','medium of exchange','measure of value','unit of account','','','a','','utme','2016',71,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:37'),(650,'Ordinary warehouse is usually owned and used by','government','agents','retailers','wholesalers','','','d','','utme','2016',68,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:38'),(651,'The winding up of a firm by a resolution of its shareholders is an example of','voluntary liquidation','bankruptcy','recession','involuntary liquidation.','','','a','','utme','2016',54,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:39'),(652,'Which of the following is used for temporary storage of data on a computer?','RAM.','ROM.','floppy disk.','flash disk.','','','a','','utme','2016',70,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:56'),(653,'An advantage of the Second-Tier Securities Market to an economy is in','creating avenues for investment','regulating competition amongst companies','granting financial assistance to consumers','increasing companies profit margins-.','','','a','','utme','2016',72,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:57'),(654,'The  lumbering of trees by a furniture company is an example of','primary production','secondary production','tertiary production','Indirect production','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:58'),(655,'Which of the following types of occupation involves services that can be referred to as auxiliaries’ trade?','Constructive occupation','Manufacturing occupation.','Industrial occupation.','Commercial occupation','','','d','','utme','2016',73,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:59'),(656,'The transformation of cotton into clothing is an example of','secondary production','tertiary production','primary production','direct production','','','a','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:00'),(657,'A basic concept of advertising that reveals the essential message an advertiser wishes to communicate is referred to as the','medium','theme','target','reach','','','a','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:01'),(658,'The type of wholesaler that combines selling, delivery and collection in one operation is','specialist   wholesaler','rack jobber','drop shipment','truck. wholesaler','','','a','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:02'),(659,'Given: - [Index of export price] / [Index of import price]  x 100  The formula can be used to determine the','terms of payment','balance of payments','terms of trade','import tariffs.','','','c','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:03'),(660,'Commission on turnover is usually a benefit accruable to the','drawer','drawee','payer','payee','','','d','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:04'),(661,'Avast is an example of','a web browser','a search engine','an antivirus','a spread sheet','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:05'),(662,'The component of balance of payments which shows how the balance of both current and capital accounts are settled is \t\t\tknown as','current account','monetary movement account','capital account.','social welfare account','','','b','','utme','2016',62,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:06'),(663,'The act of interpreting ideas within an organization is','motivating','organizing','planning .','communicating','','','d','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-16 15:29:37'),(664,'One of the duties of the employer to his employee is to','delegate his duties to other staff','charge the employee on the use of equipment','serve faithfully and honestly','provide job security.','','','d','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:08'),(665,'The buying and selling of goods and services is referred, to as','trading','marketing','insurance','advertising','','','a','','utme','2016',66,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:09'),(666,'A document that serves as an instrument for preferential tariff is referred to as','an indent','a certificate of origin','a consular invoice','an advice note.','','','b','','utme','2016',64,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:10'),(667,'Funds used for paying wages, salaries and payments for raw materials are categorized under','liquid capital','circulating capital','fixed capital','nominal capital.','','','b','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:11'),(668,'A formal letter to a dealer to enquire details about certain items for sale is referred to as','an inquiry','an invoice','an order','a quotation','','','a','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:12'),(669,'The pricing policy that seeks ,to set .prices relatively high in order to attract the wealthy segment of the market is','target return pricing','market skimming','variable pricing.','market penetration','','','b','','utme','2016',75,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:13'),(670,'In the transportation industry, dead freight is used to describe the','cost paid for an empty space left in the ship','charge for each day a performance was delayed','persons that hire a ship for a specific purpose.','cost of shipping a particular cargo for a specific voyage','','','a','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:14'),(671,'When expenses on trading are deducted, the result is the','rate of turn over','net profit','gross profit','cost of goods sold.','','','b','','utme','2016',88,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:15'),(672,'A supplier of flour who intends to sign a contract with a baker \tthrough post can establish a binding agreement only','after the offeror has made an offer.','when the offeror’s letter has reached the offeree.','when the. Offeree’s letter has been posted.','after the offeree’s letter has been received by the offeror.','','','d','','utme','2016',48,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:16'),(673,'Which of the following is a modern trend in retailing?','Kiosk','Mobile shop','Vending machine.','Tied shop','','','c','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:17'),(674,'Which of the following is a traditional medium of communication used to mark festivals?','Palm frond.','Metal gong.','Talking drum.','Gun blast.','','','c','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:18'),(675,'One of the functions of the retailer is','granting credit facilities to close relatives','provision of after-sales services','branding and packaging of goods.','warehousing of goods.','','','b','','utme','2016',63,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:19'),(676,'One of the factors of determining the volume of production is','availability of forex','availability of storage facilities.','the location of the business.','the number of skilled manpower.','','','b','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:20'),(677,'Which of the following is the best method for computing working capital?','Total assets less current liabilities.','Current liabilities less current assets.','Fixed liabilities less current assets.','Current assets less current liabilities.','','','a','','utme','2016',64,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:21'),(678,'The minimum lending rate of a bank is a component of its','current assets','debit balance.','credit balance.','fixed assets.','','','a','','utme','2016',57,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:28'),(679,'One of the functions of the Nigerian Ports Authority is that it','gives preferential treatment to Nigerian investors','provides credit facilities to importers.','encourages the growth of infant industries.','provides warehousing facilities at the docks.','','','d','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:29'),(680,'An ancillary to trade which promotes socio-cultural development all over the world is','transportation','communication','tourism.','insurance.','','','c','','utme','2016',75,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:30'),(681,'An association that acts as a watchdog between  entrepreneurs and government to protect trade from any unfavourable laws is said','cartel','syndicate','Chamber of Commerce','Nigeria Bar Association.','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:32'),(682,'Labour as an input in production can be motivated by','training','profit.','remuneration.','promotion','','','c','','utme','2016',64,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:32'),(683,'Discharging certain duties by an organization to the public to gain high patronage is a concern of financial responsibility','economic responsibility.','legal responsibility.','financial responsibility.','social responsibility.','','','d','','utme','2016',66,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:33'),(684,'Complying with the rules relating to the conduct of business activities in a country is an aspect of','cultural environment.','demographic environment.','legal environment','politician environment','','','c','','utme','2016',61,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:34'),(685,'Which of the following is NOT backed by gold but by government securities?','Fiduciary note.','Fiat money.','Token money.','Commodity money.','','','a','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:36'),(686,'Which of the following is a legal tender?','Cheque.','Traveller’scheque.','Bank note','Goldsmith receipt.','','','c','','utme','2016',56,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:37'),(687,'Where a manufacturer collects money from wholesalers in exchange for goods produced is referred to as','charge account.','trading checks.','trade credit.','I owe you.','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:38'),(688,'Quantity discount is offered mainly to persuade the buyer to','defer payment.','make prompt purchases.','make advance payment.','purchase more','','','b','','utme','2016',80,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:39'),(689,'The placement of workers based on their qualifications can be categorized under','public sector','skilled labour','private sector.','unskilled labour','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:40'),(690,'A group of computers that exchange data is referred to as','an information bank.','a network.','a database.','an intranet site.','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:41'),(691,'The form of credit sales common to low income groups is','hire purchase','club trading','book-me-down.','credit trading.','','','a','','utme','2016',67,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:42'),(692,'Petrol voucher is an example of a','bank draft.','legal tender.','token money','partial money.','','','d','','utme','2016',56,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:43'),(693,'One of the major reasons for merger is to','reduce the number of unskilled manpower','increase the number of skilled manpower.','prevent liquidation.','liberalize the market.','','','c','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:44'),(694,'A major function of commerce is to','facilitate human satisfaction through exchange','eliminate trade barriers','provide raw materials for manufacturers','influence government policies','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:46'),(695,'The major factors that facilitate merchandising are','communication, advertising and banking','trading, warehousing and production','management, insurance and advertising','banking, insurance and transportation.','','','d','','utme','2000',49,'Admin','2016-11-14 21:29:41','2020-07-14 13:01:46'),(696,'Production involves','making goods available where and when needed','changing the form of goods, moving and making them available as needed','the manufacturing of goods and provision of services','the assembling of all necessary parts to produce a finished product.','','','b','','utme','2000',52,'Admin','2016-11-14 21:29:44','2020-07-14 13:01:47'),(697,'The application of division of labour should generally bring about','increase in the quantity of goods and services','increase in the variety of goods and services','cheapness of goods and services','cost efficiency in the production of goods and services.','','','a','','utme','2000',54,'Admin','2016-11-14 21:29:44','2020-07-14 13:01:48'),(698,'The term Plc implies that the shares are available','to the public at the company','privately on the stock exchange','publicly on the stock exchange','publicly in commercial banks.','','','c','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:49'),(699,'Which of these is both merit and demerit in partnership?','The number of partners','Its unlimited nature','The bearing of risk','The withdrawal of a major partner.','','','a','','utme','2000',70,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:51'),(700,'The measure of independence available to the individual business units that come together is the main difference between','vertical and horizontal, integration','mergers and acquisitions','consortium and amalgamation','trust and cartel.','','','b','','utme','2000',52,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:52'),(701,'Government policies relating to the establishment and operations of businesses are targeted at','increasing the profits of business owners','the general improvement of the economy','even spread of facilities and employment','diversification and expansion of businesses.','','','b','','utme','2000',55,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:53'),(702,'On liquidation of a public limited liability company, the residual owners are the','creditors','ordinary   shareholders','preference shareholders','debenture holders.','','','b','','utme','2000',51,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:53'),(703,'Bank overdraft as a short term source of fund is','an overdrawn account','granted to a newly opened account','repayable after more than a year','a current liability.','','','d','','utme','2000',73,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:55'),(704,'The share capital value that forms part of the balance sheet total is the','paid-up share capital','called-up share capital','authorized share capital','issued share capital.','','','a','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:55'),(705,'The main factors militating against the rapid growth of trade in Nigeria are','inadequate transportation network and huge capital outlay','lack of motivation and government attitude towards trade','lack of good transportation network and insecurity of investments','huge capital outlay and government attitude to trade.','','','a','','utme','2000',67,'Admin','2016-11-14 21:29:45','2020-07-16 15:36:49'),(706,'The current trends in retailing competition in Nigeria are','advertising and sales promotion strategies','branding, enterprising and differentiation of goods and services','self-service, after-sales services and branding strategies','after-sales services and sales promotion strategies.','','','a','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:57'),(707,'The function of a merchant wholesaler is to','buy in bulk, store and sell to retailers as desired','possess title to the goods, store and sell to retailers','bring buyers and sellers together','find markets for producers’ finished goods.','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:58'),(708,'An invoice can be described as a','contractual agreement for the sale of goods','document specifying quantity, description, prices and total value of purchases','receipt containing necessary information about the goods','letter specifying the contractual sales of goods between two parties.','','','b','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:59'),(709,'Ocean liners are subdivided into','passenger liners and cargo liners','coastal liners and cargo liners','cargo liners and tramp liners','passenger liners and tramp liners.','','','a','','utme','2000',63,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:00'),(710,'Tourists with no fixed address in a town may receive their letters from the post office through a','recorded delivery','poste restante','parcel post','postmaster.','','','b','','utme','2000',70,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:01'),(711,'The insurance principle that requires full disclosure of information on the insured is known as','indemnity','uberrimaefidei','subrogation','caveat emptor.','','','b','','utme','2000',74,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:02'),(712,'Mr. Olatunde took up a fire insurance on a property valued at N 1000 and the amount insured is  N800. The property caught fire causing a loss of  N400. If the insurance was taken with the \tclause ‘with average’, what is the amount to be paid by the insurance company?','N320','N420','N460','N560.','','','a','','utme','2000',62,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:04'),(713,'The Central Bank differs from commercial banks because it','renders service to customers','carries out foreign exchange transactions','issues currencies','discounts bills.','','','c','','utme','2000',71,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:05'),(714,'A bank form used to transfer money from personal to creditor’s account is called','debit transfer form','credit transfer form','customer transfer form','bank transfer form.','','','a','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:06'),(715,'The computer using linear integrated circuit technology coupled with quantification of data in terms of length and distance is known as','digital computer','analogue computer','mainframe computer','hybrid computer.','','','a','','utme','2000',75,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:07'),(716,'A printer that burns the print image onto the photosensitive drum is called','dot matrix printer','daisy wheel printer','laser printer','thermal printer.','','','c','','utme','2000',60,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:08'),(717,'A console is a device used in','moving an indicator on the screen','communicating between operator and programme','holding magnetic tape reel','forming characters by heating sensitive ribbon.','','','a','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:09'),(718,'A form of money that has gone out of use is','paper money','bank money','commodity money','foreign money.','','','c','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:17'),(719,'The major condition for obtaining loan in thrift, credit and loans cooperative societies is','provision of collateral security','a high level of education','possession of a large business','an approved project plan.','','','a','','utme','2000',64,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:18'),(720,'The Stock Exchange helps to provide capital for industrial projects because it','determines value of shares, stocks and other securities','assists government in implementing its monetary policies','assists companies to change their securities into cash','renders agency services to organizations and governments.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:19'),(721,'A shortcoming of the Second-tier Foreign Exchange Market in Nigeria is that it','serves as a mechanism for evaluating an unrealistic exchange rate for the naira','creates unhealthy competition amongst users of foreign exchange','contributes to destabilizing national resource allocation','contributes to flooding the market with foreign essential commodities.','','','b','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:20'),(722,'The chart above represents the','product mix relationship','marketing mix relationship','promotion mix relationship','advertising mix relationship.','','','b','','utme','2000',63,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:21'),(723,'A group of specialized functions of marketing is','buying, selling, storing and information','buying, selling, advertising and packaging','buying, selling, labelling and promotion','buying, selling, skimming and pricing.','','','c','','utme','2000',76,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:22'),(724,'The type of advertising that seeks to persuade consumers to buy a particular product is','informative advertising','competitive advertising','persuasive advertising','mass and specific advertising.','','','c','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:23'),(725,'The practice whereby soft drink manufacturers give away caps, bags and other items when consumers buy their product is a \t\tform of','marketing strategy','publicity','advertising','sales promotion.','','','d','','utme','2000',76,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:24'),(726,'The most important advantage of personal selling is that it','allows sellers to perceive buyers’ needs','allows sellers to sell their goods quickly','takes place easily on the highways','takes place without the permission of government.','','','a','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:33'),(727,'The role of public relations is principally to','sustain good relationship','create good image','carry out publicity','advertise a firm’s products.','','','b','','utme','2000',61,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:34'),(728,'The basic elements of a valid contract are','offer, acceptance, consideration and witness','offer, intention, acceptance and legality','offer, acceptance, intention, capacity and legality','offer, acceptance, capacity, legality and consideration.','','','d','','utme','2000',59,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:35'),(729,'A bus driver operating between Lagos and Jos pledged the owner’s credit in Benin in order to have the engine repaired and the bill sent to the owner. This is a case of','del credere agency','agency by necessity','agency by ratification','agency by estoppel.','','','b','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:36'),(730,'After registration, a certificate of trading is usually issued to a','partnership','public company','private company','sole proprietorship.','','','b','','utme','2000',52,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:37'),(731,'An aspect of the law which allows an exclusive right for a limited number of years is a','copyright','trade mark','ratification','patent','','','d','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:38'),(732,'The first known legislation to protect consumer rights in Nigeria is the','Usury Laws','Hire Purchase Act','Sale of Goods Act','Food and Drugs Act.','','','c','','utme','2000',71,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:39'),(733,'The main difference between nationalization and indigenization is in terms of','shareholding','profit','technology','efficiency.','','','b','','utme','2000',70,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:40'),(734,'The primary objectives of a trade association is to','undertake research work on behalf of members','establish easy link with government','exchange information and negotiate as a pressure group','operate as a group against other groups.','','','c','','utme','2000',75,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:41'),(735,'A chamber of commerce is an association made up of','entrepreneurs','manufacturers','merchants','importers.','','','b','','utme','2000',72,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:42'),(736,'The composite functions of management are','planning, supervising, communicating','planning, controlling, organizing and directing','coordinating,  supervising,  staffing  and communicating','directing,  supervising, motivating and controlling.','','','b','','utme','2000',60,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:43'),(737,'The three components of staffing are','recruitment, selection and placement','recruitment, interview and appointment','recruitment, test and placement','recruitment, procurement and appointment','','','a','','utme','2000',69,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:44'),(738,'The legal aspect of business is designed to','protect business organizations and consumers','safeguard consumers from undue business practices','protect infant industries from collapse','encourage free exchanges among businesses.','','','a','','utme','2000',64,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:45'),(739,'In an organization, civic consideration arises from','the profit derived from the environment','its operations within the environment','its social negative impacts on the community','the fact that it is registered in that locality','','','b','','utme','2000',62,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:46'),(740,'The instrument establishing the Economic Community of West African States in 1975 is','a decree','an act','a treaty','constitution','','','c','','utme','2000',72,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:46'),(741,'One of the functions of the Niger Basin Commission is to','ensure equal treatment of African nations','foster closer co-operation among West African nations','map out regulations that will guide all forms of navigation','guarantee freedom of navigation for all West African nations.','','','c','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:47'),(742,'The pivot on which the wheel of commerce rotates is','tariff','trade','taxation','price.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:48'),(743,'A distinguishing characteristic of labour is that it is','constant','expensive','mobile','cheap','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:49'),(744,'Land as a factor of production does not vary in','quantity','nature','quality \t\t\t\t.','cost.','','','b','','utme','2001',93,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:50'),(745,'Which of the following services does a lawyer render?','industrial services','indirect services','direct services','commercial services.','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:51'),(746,'The partner that only contributes part of the capital used in the formation and running of a business is known as','a passive partner','an active partner','a dormant partner','a nominal partner.','','','c','','utme','2001',88,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:52'),(747,'One major advantage of a credit and thrift cooperative is that','it can approach government for a loan','it encourages saving habits','there are no legal restrictions','each member has a vote during meetings.','','','b','','utme','2001',97,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:53'),(748,'A form of ownership which exploits the strength of one partner to remedy the weaknesses of the other is a','joint partnership','cooperative','corporation','joint venture.','','','a','','utme','2001',97,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:54'),(749,'At the collapse of a business enterprise, the person appointed to dispose of the assets is called','a broker','an auctioneer','a liquidator','an auditor.','','','c','','utme','2001',96,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:55'),(750,'Entrusting the management of a company to the courts to enable the settlement of the company’s obligations is an indication of','distress','closure','bankruptcy','liquidation.','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:56'),(751,'The financial instrument for borrowing in which the collateral is usually more than the amount borrowed is','trust certificate','detachable warrant','mortgage bond','convertible securities.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:57'),(752,'I.   Personal Savings, II.   Retained Earnings, III. Accrued Taxes. Which of the items above constitute internal sources of financing for companies?','I and II','I and III','II and III','I, II and III.','','','c','','utme','2001',106,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:58'),(753,'The difference between total current assets and total current liabilities of a business is known as','quick ratio','liquidity ratio','working capital','circulating capital.','','','c','','utme','2001',99,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:59'),(754,'One of the reasons why wholesaling must continue is that','the tax paid by wholesalers on their profit enhances national revenue','by creating artificial scarcity, the wholesaler is enhancing competition in the economy','the wholesaler provides technical advice to the retailer','the gap between manufacturers and retailers is reduced by wholesalers.','','','d','','utme','2001',108,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:00'),(755,'A merchant wholesaler is referred to as','del-credere agent','a broker','rack jobber','a factor.','','','a','','utme','2001',89,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:01'),(756,'A pro-forma invoice is sent to inform a buyer about the','quantity of goods','prices of goods','designation of goods','quality of goods.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:02'),(757,'The balance of payments of countries is','a record of imports and exports','a systematic record of transactions among countries at a given time','the current and the capital accounts and their payments','the trade relationships and payments among nations.','','','a','','utme','2001',74,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:03'),(758,'The major procedures in the purchase and sale of goods are enquiry','quotation, order and invoice','placement, order and invoice','bargain, order and invoice','order, sale and invoice.','','','a','','utme','2001',87,'Admin','2016-11-15 07:01:48','2020-07-16 15:36:49'),(759,'The trade discount receivable by Mr. Bacus is','N= 4,500','N= 7,500','N= 10,500','N= 12,000.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',89,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(760,'If  Mr. Bacus fulfils his promise, he will be entitled to a cash discount of','N= 2,760','N= 3,000','N= 6,500','N= 9,500.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(761,'Bank Giro is a method of settling debt from a','customer to a bank','bank to a customer','customer to another','bank to another.','','','a','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:06'),(762,'Warehousing is a productive function because it increases the','quantity of goods','utility of goods','quality of goods','price of goods.','','','a','','utme','2001',86,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:07'),(763,'A factor necessary for siting a warehouse is nearness to','raw materials','labour','capital','consumers.','','','d','','utme','2001',101,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:08'),(764,'Pooling of risk in insurance means that','compensations are paid out of a common fund','two people can pool their risks to be insured','two insurance companies can buy two policies','insurance companies should encourage taking risks','','','a','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:09'),(765,'The indemnification of Ama by his insurance company after a fire disaster means that he','has been guaranteed by the insurance company','will be cleared of any fault by the insurance company','has been covered by the insurance company','will be covered to the limit of the amount in the policy.','','','b','','utme','2001',109,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:10'),(766,'The major difference between insurance and assurance is that while insurance','takes care of uncertainty, assurance takes care of risks','takes care of risks, assurance takes care  uncertainty','hinges on probabilities, assurance is based on possibilities','is about indemnity assurance is about life in the future.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:11'),(767,'A documentary bill will normally be accompanied by','sales invoice, bill of lading and insurance certificate','clean bill, bill of lading and insurance certificate','bill of lading, consular invoice and insurance certificate','consular invoice, FOB certificate and bill of  lading.','','','d','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:12'),(768,'Which of the following best describes the classification of computers?','Mini-computer, speed and size','Micro-computer, cost and abilities','Mini-computer, micro-computer and work station','Mini-computer, hybrid and digit','','','c','','utme','2001',103,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:13'),(769,'The temporary working area of the central processing unit is called the','C-D ROM','C-D RAM','ROM','RAM.','','','b','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:14'),(770,'The significance of money to modern economic systems is that it','is used as a means payment','promotes specialization and exchange','measures value and promotes exchange','causes inflation and deflation in the economy','','','c','','utme','2001',76,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:15'),(771,'One major characteristic of credit unions and thrift societies is that','the legal processes involved in their formation are rigid','membership compulsory to people in the same line of  business','the contribution of every member depends the member’s ability','a minimum of ten people in the same line of business can form the union','','','c','','utme','2001',103,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:16'),(772,'The Nigerian Stock Exchange publishes a daily official list that gives full information on the','method of transactions agreed to by members','number of participating members in a day','changes in the prices and earnings of security','changes in the official rules set by the man','','','c','','utme','2001',88,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:17'),(773,'The main factors that determine the value stock on the Stock Exchange are dividend an','the psychology of the market','capital gain','capital appreciation','warrant payment','','','c','','utme','2001',104,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:18'),(774,'One of the main objectives of the Second- tier Securities Market in Nigeria is to','achieve a realistic exchange rate for the naira','eliminate currency  dealings in the black market','assist companies to raise capital','attract investment flow.','','','d','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:19'),(775,'The activities aimed at finding out customers’ needs and satisfaction can be described as','socio-marketing','macro-marketing','micro-marketing','conceptual marketing.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:20'),(776,'The most effective type of advertising for branded products is','direct advertising','indirect advertising','informative advertising','competitive advertising.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:21'),(777,'Which of these companies are more engaged in public relations activities?','I and II','I and III','II and IV','Ill and IV.','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','b','','utme','2001',99,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:22'),(778,'Which of these companies offers after-sales services?','IV','Ill','II','I','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','c','','utme','2001',81,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:23'),(779,'Who are the parties to the contract of renting the room?','Musa and Jacob','Musa and Audu','Adamu and Musa','Audu and Jocob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',99,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:24'),(780,'Who is the offeree in this contract?','Musa','Audu','Adamu','Jacob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',95,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:36'),(781,'The maximum number of shareholders in a public liability company is','twenty','fifty','one hundred','unlimited.','','','d','','utme','2001',86,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:45'),(782,'One way by which government reduces the repatriation of capital   is through','nationalization','divestiture','indigenization','naturalization.','','','c','','utme','2001',85,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:46'),(783,'One of the major functions of a chamber of commerce is to','promote and protect trade, industry and agriculture','advise members on regulations of other countries','settle disputes that arise out of trade','publish books and periodicals desired by members.','','','a','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:47'),(784,'Departmentalization is an aspect of','planning','organizing','directing','controlling.','','','b','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:53'),(785,'A functional organizational structure is where','staff performing the same functions are grouped together','departments performing similar functions are grouped together','activities of similar nature are-grouped together','staff performing similar functions are grouped together.','','','c','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:55'),(786,'In the line type of organizational structure','the lines of authority are vertical','there is the application of division of labour','specialization is carried to a maximum degree','the lines of authority are horizontal.','','','c','','utme','2001',76,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:56'),(787,'Proper disposal of waste by business firms is one way of discharging their','responsibility to government','environmental responsibility','community responsibility','responsibility to customers.','','','b','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:57'),(788,'One of the obstacles  to achieving the objectives of ECOWAS is','lack of a common currency','colonial linkages','sovereignty of states','language differences.','','','d','','utme','2001',100,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:58'),(789,'One of the main objectives of establishing the Niger River Basin Commission was to','embark on a comprehensive survey of the available water resources','carry out research for the development of fresh water fisheries','develop infrastructure to facilitate economic activities','promote trade among member-states to improve standards of living.','','','c','','utme','2001',84,'Admin','2016-11-15 07:01:50','2020-07-14 13:03:59'),(790,'The most important factor that delayed the development of commerce in Nigeria was','the inefficient means of communication','that there were few entrepreneurs','the unavailability of infrastructure facilities','that there were few developed markets.','','','c','','utme','2002',125,'Admin','2016-11-15 07:26:05','2020-07-14 13:04:00'),(791,'Secondary production has to do with changing the','shape of raw materials through construction operations','physical form of raw materials into finished goods','utility of raw materials by an engineering process','nature of raw materials through manufacturing processes.','','','b','','utme','2002',134,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:01'),(792,'The major responsibility of an entrepreneur is','employing all factors of production in the business','coordinating and determining the proportion of what to produce','planning and organizing all activities in the business','directing and controlling all the affairs of the business.','','','a','','utme','2002',123,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:02'),(793,'Which of the following best describes the scope of commerce?','All forms of commercial exchanges and the manufacturing industry','Buying and selling and the construction industry','All occupational exchanges relating to industries and commercial activities','Buying and selling as well as the extraction of natural resources.','','','c','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:03'),(794,'Capital as a factor of production can be used as','money that is regarded as asset','goods that are useful in business','input for further production','services that provide satisfaction','','','c','','utme','2002',135,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:04'),(795,'The agency that currently oversees the privatization and commercialization processes in Nigeria is the','Securities and Exchange Commission','Technical Committee on Privatization and Commercialization','Nigerian Stock Exchange','Bureau of Public Enterprises.','','','d','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:05'),(796,'Okeze contracted to sell TV sets to Ojo. Unknown to them, the sets were stolen in transit.   This contract may be terminated on the grounds of','bankruptcy','frustration','fraudulence','breach of contract.','','','b','','utme','2002',121,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:05'),(797,'Which of the following countries are members the Lake Chad Basin Commission?','Niger and Cameroun','Benin and Niger','Chad and Benin','Nigeria and Mali.','','','a','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:06'),(798,'A core investor in the current phase of privatization in Nigeria is one who','can afford to buy most the shares of the enterprises','will be at the core of the enterprises','can mobilize foreign currency equivalent to the value of the enterprises','has the technical know-how of the enterprises','','','a','','utme','2002',128,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:07'),(799,'The agency in Nigeria which ensures that products conform to government quality specifications is the','Standards Organization of Nigeria','Nigerian Consumers’ Association','Manufacturers’ Association of Nigeria','Nigerian Chamber of Commerce.','','','a','','utme','2002',124,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:08'),(800,'Awarding scholarships and sponsoring sports by a business organization are examples of','advertising strategy','economic responsibility','marketing strategy','social responsibility','','','c','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:09'),(801,'The commercialization of public enterprises aimed at','increasing efficiency and making the enterprises self-sufficient','advertising a promoting the goods and services of the enterprises','increased assistance and patronage of the enterprises by the public','selling the goods and services of the enterprises.','','','a','','utme','2002',132,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:10'),(802,'An author’s exclusive right to his published an unpublished works is known as','authors right','constitutional right','patent right','copyright','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:11'),(803,'Under the endowment policy, the money handed over to the insured at the expiration of the stipulated time or at death is the','indemnity','surrender value','lump sum benefit','insurance premium','','','c','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:12'),(804,'The machine used for sending telex messages is known as a','radar','fax machine','Dictaphone','teleprinter.','','','b','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:13'),(805,'Which of these insurance principles requires a close connection between the actual loss suffered and the risk insured','Indemnity','Proximate cause','Contribution','Subrogation.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:14'),(806,'The unit through which results of a processed data are displayed is the','logic unit','display unit','control unit','output unit.','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:15'),(807,'Which of the following is used to inform the addressee that a registered parcel is ready for collection?','Express label','Counterfoil','Telegram','Slip.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:16'),(808,'The type of computer commonly found in offices is','laptop','desktop','the hybrid computer','the mainframe computer.','','','c','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:17'),(809,'The mode of transporting crude oil to the ports for export purposes is by','tanker','rail','road','pipeline.','','','d','','utme','2002',129,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:17'),(810,'The temporary insurance certificate issued to the insured before drawing up a policy is a','cover  note','testimonial','time policy','proposal  form.','','','a','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:18'),(811,'The bulls and bears in the Stock Exchange market help to minimize','the number of shares and bonds sold','price increases of securities','fluctuations in the prices of securities','the elasticity of the prices of securities.','','','a','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:19'),(812,'Debentures differ from shares in that','they are secured on the company’s assets','ownership is open to the public','they form part of the capital of the business','rewards are usually paid out of profits.','','','c','','utme','2002',125,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:26'),(813,'The Stock Exchange is a market where','long-term securities are sold','all types of securities are sold','short-term securities are sold','medium-term securities are sold.','','','b','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:27'),(814,'A retail cooperative society aims at','hoarding manufactured goods','cutting off the profit of middlemen','lending money to members at low interest rates','encouraging members to save money.','','','b','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:28'),(815,'A bill of exchange already accepted can be discounted by the holder in','the central bank','at least two banks','his bank','any bank.','','','d','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:29'),(816,'The document issued by the seller which gives details of the goods he sells is known as','catalogue','tender','price list','invoice','','','d','','utme','2002',120,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:30'),(817,'Given:  I.Retail; II.Export; III.Transport; IV.Import; V.Insurance; VI.Banking and finance; VII. Wholesale; VIII. Communication. Which of the above are aids to trade?','I, II,  III and VIII','III, V, VI and VIII','I, II, III and VI','II, V, VI and VII','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:31'),(818,'The organizational structure that relates the positions of specialists to the line managers is called','line structure','staff structure','line and staff structure','functional structure.','','','d','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:33'),(819,'A wholesaler who possesses the tittle to the goods he sells is known as','a merchant wholesaler','a multiple wholesaler','a general wholesaler','an agent wholesaler.','','','d','','utme','2002',139,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:34'),(820,'An important principle of a good organizational structure is','ideal standard','span of control','clarity of mission','adequacy of resources.','','','b','','utme','2002',127,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:35'),(821,'A company that is registered with the Corporate Affairs Commission only without being enlisted on the Stock Exchange is a','public liability company','joint venture company','limited company','registered company.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:36'),(822,'A contract for the sale of goods involves the','producer, seller and the buyer of goods','offering of goods to customers','transfer of the title to goods for money','exchange of goods.','','','c','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:37'),(823,'The total of the share capital which a company would be allowed to issue is known as','called-up capital','paid-up capital','nominal capital','issued  capital.','','','d','','utme','2002',119,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:38'),(824,'The process of mobilizing, engaging  and maintaining workers to work for an organization is referred to as','staffing','selection','recruitment','employment.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:39'),(825,'Recognized members of the Stock Exchange who buy and sell securities on their own behalf are known as','bolls','jobbers','brokers','stags.','','','c','','utme','2002',122,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:39'),(826,'Which of the following involves foreign trade?','Supermarkets','Chain stores','Departmental stores','Commodity markets.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:40'),(827,'Which of the following is a function of employers’ association?','Undertaking research on behalf of employees','Promotion of thrift in workers','Promotion of workers’ welfare','Dissemination of information through sponsored journals.','','','c','','utme','2002',146,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:41'),(828,'Which of the following industries is normally located near the \tsource of its raw materials?','Footwear industry','Cement industry','Textile  industry','Automobile assembly.','','','b','','utme','2002',134,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:42'),(829,'One of the most important function of marketing is','encouraging research activities to meet needs','creating classes of merchants among businessmen','the extension of markets for businesses','providing finances to businesses','','','a','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:43'),(830,'Securities on which the buyers are not issued with certificates are called','authorized securities','inscribed securities','bearer securities','registered securities.','','','b','','utme','2002',131,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:44'),(831,'In product pricing, which of these elements needs more consideration than others?','the demand for the product','the demography of the buyers of the product','the economic conditions in the market','the cost of producing the product.','','','d','','utme','2002',140,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:45'),(832,'The principal objectives of the Central Bank of Nigeria can be classified broadly into','bankers’ bank, lender of last resort and issuance of currency','service, currency management and financial intermediation','banking services, foreign exchange operations and open','markets operations service, monetary policy and developmental functions.','','','a','','utme','2002',145,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:46'),(833,'The letters E and OE stand for','errors of exception','errors  and omissions expected','estimated and order error','end of error.','','','b','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:47'),(834,'An important issue for consideration in the product element of the marketing mix is the','adequate promotion of the product','channel of distribution of the product','price of the product','planning and development of the product.','','','d','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-16 15:29:37'),(835,'group of companies is a collection of','subsidiaries and their holding company','firms','associates and their holding company','industries.','','','a','','utme','2002',141,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:49'),(836,'Which of the following is an example of trade associations?','European Union','National Marketing Board','Organization of African Unity','National Farmers’ Council.','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:50'),(837,'Which of the following determines the quality of goods that a retailer sells','The mode of contract of sales','The type of manufacturer','The regulations regarding sales in the area','The location of his shop.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:51'),(838,'An advantage of hire purchase to the consumer is the','economies of scale in production','possession of goods before payment','increase in turnover and profits','low interest rate chargeable.','','','b','','utme','2002',121,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:52'),(839,'The founders’ shares are usually referred to as deferred shares because the holders','are entitled to cumulative dividends','receive their dividends after other shareholders','receive   their   dividends   before   other shareholders','are not entitled to any dividends.','','','a','','utme','2002',131,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:53'),(840,'An example of a service -rendering trade association is','Nigerian Bar Association','Association of Nigerian Miners','Cocoa Farmers ’Association','Manufacturers ’Association of Nigeria.','','','a','','utme','2003',100,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:54'),(841,'An obstacle to international trade is','trade imbalance between   countries','availability of  local market','quantity and quality of labour','cost of finance','','','a','','utme','2003',77,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:55'),(842,'The right  of ownership with respect to goods or property is','right of occupancy','proxy','title','certificate of occupancy','','','c','','utme','2003',107,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:56'),(843,'The main motive of chambers of commerce and trade associations is to','assist government in achieving its objectives','protect the interest of consumers','maximize profit','protect and promote the interests of members','','','a','','utme','2003',94,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:57'),(844,'A pattern that shows the kinds of participants involved in the production, distribution and ultimate use of a product is referred to as','selection','strategy','structure','synergy','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:58'),(845,'Goods that are manufactured or acquired by the seller after the contract of sale are','specialty goods','future goods','specific goods','general goods','','','c','','utme','2003',90,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:00'),(846,'What was the amount paid by Ojo?','N382,500','N425,000','N363,375','N61,625','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','c','','utme','2003',91,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:01'),(847,'How much was the trade discount?','N42,500','N27,500','N22,500','N20,000','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','a','','utme','2003',97,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:02'),(848,'The basic function of the Nigerian Ports Authority is to','ensure that the right caliber of personnel is  employed at the ports','coordinate and regulate the activities of  shipping lines','facilitate and control the movement of goods and services into and out of the country','coordinate the activities of all the seaports in the country','','','d','','utme','2003',91,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:03'),(849,'The concept that refers to the sale, transfer or exchange of goods and services is','industry','trade','tariff','marketing','','','b','','utme','2003',98,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:04'),(850,'A guarantee given by one person or party to another in which \tthe integrity of the person is assured is','fidelity','term assurance','subrogation','indemnity','','','a','','utme','2003',85,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:05'),(851,'A firm that adapts itself to delivering the desired satisfaction more effectively and efficiently than its competitors is said to be practicing','price concept','distribution concept','product concept','marketing concept','','','d','','utme','2003',107,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:06'),(852,'The payment made periodically in respect of an insurance policy entered into is known as','bond','commission','premium','surrender value','','','c','','utme','2003',91,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:08'),(853,'An example of service rendered by NIPOST is','electronic mail','courier','telephone','mail delivery','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:09'),(854,'The focal point of marketing is','the competitor','the buyer','profit-making','sales','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:09'),(855,'The type of marine insurance which covers either damage or loss to the vessel and such as caused by it to other vessels is','hull insurance','time insurance','freight insurance','cargo insurance','','','a','','utme','2003',99,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:10'),(856,'The management function that makes the difference in intensity of behaviour is','coordinating','controlling','motivation','planning','','','c','','utme','2003',93,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:12'),(857,'One of the functions of seaports is the provision of','berthing and landing facilities','loading and off-loading facilities','control room for relaying radio messages','warehouses for storage of cargo.','','','b','','utme','2003',94,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:13'),(858,'The process of dividing tasks into jobs and departments and of delegating authority is known as','staffing','leading','directing','organizing','','','d','','utme','2003',98,'Admin','2016-11-15 10:56:25','2020-07-14 13:05:13'),(859,'Communication process involves the transmission of a message over a selected channel to the','receiver','audience','sender','encoder','','','b','','utme','2003',94,'Admin','2016-11-15 10:56:28','2020-07-14 13:05:15'),(860,'Stimulation of demand is a kind of communication in marketing which connotes','personal selling','sales promotion','advertising','merchandising','','','c','','utme','2003',88,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:16'),(861,'A functional structure is an organizational structure in which','abstract rules are applied','equity prevails','a specialist enforces his directives','there is no hierarchy.','','','c','','utme','2003',77,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:17'),(862,'Entrepreneurship mainly involves','risk-taking','initiating','skilled manpower','knowledge','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:26'),(863,'In the event of the liquidation of a company the first to be settled are','debenture holders','members  of the  board','preference shareholders','ordinary shareholders.','','','a','','utme','2003',101,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:27'),(864,'The business organization established mainly for the purpose of carrying out specific assignments for a specific duration is a','joint venture','cooperative society','partnership','company.','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:28'),(865,'Which of these factors of production is relatively fixed in supply?','Capital','Entrepreneur','Human resources','Natural resources','','','d','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:29'),(866,'The location of a business is mostly influenced by','market outlet','management decision','capital','environment','','','d','','utme','2003',136,'Admin','2016-11-15 10:56:29','2020-07-20 19:40:35'),(867,'The evolution of commerce in Nigeria is traceable to the','period of barter economy as human needs became limitless','desire by human beings to satisfy their needs through the services of other people in the society','development of human civilizations and the desire to meet their needs','primitive stage of existence of  human beings.','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:31'),(868,'One of the requirements necessary for setting up a business is','registration','advertisement','knowledge of the business','documentation','','','c','','utme','2003',96,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:32'),(869,'The assembling of products into usable forms is known as','construction','manufacturing','formation','creation','','','b','','utme','2003',100,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:32'),(870,'The government’s policy thrust on the business environment is to','promote experts','attract investors','be self-sufficient','increase production','','','b','','utme','2003',87,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:33'),(871,'Social responsibility is the ability of an organization to','tackle the socio-economic problem of its community','meet the needs of its community','contribute to sustaining   and developing its community','operate without disrupting the very essence of the environment.','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:34'),(872,'The act of a person employing another to enter into a contract on his behalf is known as','business','sale of goods','bilateral agreement','agency','','','d','','utme','2003',92,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:35'),(873,'The ECOBANK is the initiative of','some well-meaning Nigerian shareholders','the Federal Government of  Nigeria','West African states to foster trade','the Lagos State Government to enhance capital mobilization.','','','c','','utme','2003',92,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:37'),(874,'Privatization is concerned with','equal ownership between  the public and the government','the dilution of ownership among the public','the individual ownership of companies','government ownership of companies.','','','c','','utme','2003',89,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:38'),(875,'Electronic computers differ from human beings in that they process data and minimize errors in a','faster and more accurate manner','more organized manner','faster but less accurate manner','slower but more accurate manner','','','a','','utme','2003',96,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:39'),(876,'A major benefit derivable from the privatization and commercialization of public enterprises in Nigeria is','increase in wages','employment generation','information technology','revenue generation','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:46'),(877,'The device which interprets and carries out the instructions presented to it by the computer program is known as','software','microprocessor','mouse','hard-disk','','','b','','utme','2003',96,'Admin','2016-11-15 10:56:33','2020-07-14 13:05:47'),(878,'The market structure, business conditions and financial systems in Nigeria constitute the','economic environment','political environment','cultural environment','technological environment','','','a','','utme','2003',81,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:53'),(879,'The protection of consumers against exploitation by manufacturers is to ensure','that there are varieties of products','that the right quality of goods and services is sold','increase in production capacity','increase in the level of consumer awareness.','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:54'),(880,'The most widely used computer language that focuses on solving science-oriented problems is','FORTRAN','BASIC','ADA','COBOL','','','a','','utme','2003',111,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:55'),(881,'Banks are engaged in the business of buying and selling of','bills of exchange','instruments of credit','intangible products','land','','','a','','utme','2003',97,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:56'),(882,'A source of short-term finance to companies is','share capital','debentures','retained earnings','corporate tax','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:57'),(883,'The body charged with the responsibility to register shares for subscription on the stock market in Nigeria is the','Securities and Exchange Commission','Nigerian Stock Exchange','Nigerian Deposit Insurance Company','Central Bank of Nigeria,','','','a','','utme','2003',92,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:58'),(884,'An essential factor for evaluating the different sources of funds for a business is the','decree establishing the business','ownership structure of the business concern','size and the type of the business','burden of cost and repayment','','','b','','utme','2003',84,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:59'),(885,'Money can simply be referred to as a','medium of exchange','means for the settlement of debts','durable asset for doing business','stands of value','','','a','','utme','2003',104,'Admin','2016-11-15 10:56:34','2020-07-14 13:06:00'),(886,'A type of  long-term loan granted to companies with fixed interest as well as with redeemable and irredeemable features is referred to as','a debenture','a bond','a term loan','an overdraft','','','a','','utme','2003',102,'Admin','2016-11-15 10:56:34','2020-07-14 13:06:01'),(887,'Public debt management is one of the functions of a','merchant bank','central bank','commercial bank','development bank.','','','b','','utme','2003',202,'Admin','2016-11-15 10:56:38','2020-07-14 13:06:02');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `crk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=696 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `crk` VALUES (1,'In Jesus’ teaching on the mount, the only justifiable reason for divorce is ','indolence ','insubordination ',' infidelity ','infertility','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:54'),(2,'According to John’s Gospel, Lazarus was from: ','Jerusalem  ','Teberias ','Bethany ','Galilee','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:55'),(3,'Jesus’ new commandment according to the Gospel of Jesus of John is ','salvation ','love ','peace ','spirit','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:56'),(4,'The thief as described by Jesus comes to ','destroy, kill and steal ','destroy, steal and kill ','kill, destroy and kill ','steal, kill and destroy ','','','d','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:57'),(5,'The agony of Jesus in the Garden of Gethsemane is a ','sign of abandonment ','manifestation of human weakness ','punishment ','preparation for his death','','','d','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:58'),(6,'Eutychus fell from the third storey to the ground when Paul  prolonged his sermon at ','Troas ','Ephesus ','Miletus ','Corinth.','','','a','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:59'),(7,'Charismatic leaders in the Book of Judges arose in Israel to ','revive faith in Yahweh ','rally the tribe together ','lead the Israel to battles ','settle dispute','','','c','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:01'),(8,'What did God create on the fifth day? ','the firmament  ','the two great light ','water under the heaven ','living Creature','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(9,'Joshua and Caleb were from the tribe of ','Judah and Rueben ','Reuben and Dan ','Ephraim and Reuben ','Judah and Ephraim','','','d','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:03'),(10,'Manahem, the son of Gadi reigned over Israel for ','eight years ','twenty years ','six month ','ten years.','','','d','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:04'),(11,'The death of Adonibezek in Bezek was a typical proof of ','cowardice ','nemesis ','insanity ','absurdity','','','b','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:05'),(12,'In order that Benjamin might be brought to Egypt, Joseph  ','Reuben ','Judah ','Simon ','Zebulon','','','c','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:06'),(13,'When Paul came to Rome, the first set of people to whom he preached were the ','Romans ','Jews ','Greeks ','Samaritans.','','','b','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:07'),(14,'The three sons of Noah Sdhem, Ham and ','Lot ','Hirah ','Cain ','Japeth.','','','d','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:07'),(15,'The renowned interpreters of the Mosaic Law in the time of Jesus were the ','Sadducees ','Scribes ','Herodians ','Pharisees','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:08'),(16,'The mother of Esau is ','Ruth ','Ester ','Rebecca ','Jezebel  ','','','c','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:09'),(17,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) Who was the speaker? ','Joseph ','Jacob ','Job ','James','','','b','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:10'),(18,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29)  When did he say this? ','When he was about to die ','When he was seriously sick ','When he offended God ','When his brother cheated him','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:11'),(19,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) What was his wish? ','he wanted to buried at Canaan in the cave at Ephron ','he wanted to be buried at Jericho ','he wanted to commune with his ancestors ','he wanted to be closed to his fathers.','','','a','','post-utme','2006',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:12'),(20,'Who was authorized by God to go and liberate the Israelites the Egyptian bondage? ','Joshua ','Daniel ','Solomon ','Moses.','','','d','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:13'),(21,'The names of the two kings of Jericho destroyed by the Israelites during the conquest were ','Adonija and Haggith ','Shion and Og ','Zadok and Benaiah ','Hiram and Jeroboam.','','','b','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:14'),(22,'Who is an atheist? ','someone who does believe in God ','someone who rejects completely the idea of a divine being ','someone who believes that it is impossible to know if there is God or not ','someone who abuses religious people.','','','b','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:15'),(23,'What is meant by the Christian doctrine that God is Trinity? ','the idea started in Trinidad and Tobago ','God is three persons in one ','God is omnipotent ','God is the Holy Spirit','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:16'),(24,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus                              ','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:17'),(25,'The person who the Bible calls the son of consolation is ','Barsabas ','Barabbas ','Barnabas ','Bathsheba','','','c','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:18'),(26,'Who do people say the son of man is? Jesus asks this question to know people’s ','desires ','demand  ','mind ','opinion','','','c','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(27,'In Peter’s teaching,” God…………..the proud and gives grace to the humble','receives ','relegates ','resists ','restores.','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:20'),(28,'The lesson which Jesus teaches in the parable of the Good Samaritan is that your neighbor is','only your friend  ','your next of kin  ','a distant friend ','anyone who needs your  help','','','d','','post-utme','2007',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:21'),(29,'Amram and Jochebad gave birth to : ','Mirian ','Jedida ','Jethro ','Hur','','','a','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:22'),(30,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Zipporah and Pauh ','Pauh and Miriam ','Shiphrah and Zipporah ','Shiprah and Puah','','','d','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:22'),(31,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:23'),(32,'Daniel was delivered from the den of lions for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power','','','b','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:24'),(33,'Which of the following carried Judah into captivity ','Pharaoh Neco of Egypt ','Goliath of Philistia ','Assyrian ','Nebuchadnezzar of Babylon','','','d','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:25'),(34,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','slaughter of all his sons ','city of Jerusalem ','feasting of the children of Israel ','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:26'),(35,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:27'),(36,'The king of Persia who made it possible for the return of the exiles from Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:28'),(37,'The meaning of Emmanuel is ','laughter ','“for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:29'),(38,'“Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:30'),(39,'One of the following said: “the lion has roared who will not fear? The Lord has spoken, who can  but prophesy?” ','Nathan ','Jeremiah ','Amos ','Hosea','','','c','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:31'),(40,'Where did Paul cure a slave girl who had a spirit of divination ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:32'),(41,'Joshua’s first victory was over the people of ','Ai ','Gibeon ','Gilgal ','Jericho','','','d','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:33'),(42,'Josiah’s reign was popular because of his ','allies ','victory ','violence ','reforms','','','d','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:34'),(43,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:35'),(44,'Who baptized the Ethiopian Eunuch? ','Paul ','peter ','Philip ','Rufus','','','c','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:36'),(45,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:36'),(46,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah.','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:38'),(47,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:38'),(48,'The person who the Bible calls the consolation is:  ','Barsabbas ','Barabbas ','Barnabs ','Bathsheba','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:39'),(49,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','Slaughter of his son ','city of Jerusalem ','feasting of hiss children of Israel','','','b','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:40'),(50,'Daniel was delivered from the den of lion for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power.','','','b','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:41'),(51,'Name three places Christian religious people look up to find the truth about the nature of God','In the sacred scripture ','In the religious leader ','In the church ','In their conscience.','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:42'),(52,'Explain why Jesus was identified as the lamb by John (Jn:1:29 ) ','lamb of God is a figurative language which describes Christ sacrificial mission in the word ','he is being compared to the Passover Lamb that would atone for the sins of all world ','Because the lamb is attentive to his owner ','it shows patience, meekness, gentleness and innocence','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:43'),(53,'Who do people say the son of man is? Jesus asks this question to know people’s ','desire ','demand ','mind ','pinion','','','c','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:44'),(54,'In Peter’s teaching,” God…………the proud and gives grace to the humble ','receives ','relegates ','resists ','restores','','','c','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:45'),(55,'The lesson, who Jesus teaches in the parable of the Good Samaritan is that your neighbor is ','only your friend ','your next of king ','a distant friend ','anyone who needs your help','','','d','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:46'),(56,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus','','','d','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(57,'Which of the following carried Judah into captivity ','pharaoh  Neco of Egypt ','Goliath of philistia ','Assyrians ','Nebuchadnezzar of Babylon','','','d','','post-utme','2008',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:48'),(58,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:49'),(59,'Amram and Jochebad gave birth to : ','Miriam ','jedida ','Jethro ','Hur','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:49'),(60,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Ziporah and Puah ','Puah and Miriam ','Shiphrah and Zipporah ','Shiphrah and Puah','','','d','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:50'),(61,'The king of Persia who made it possible for the return of the exiles form Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:16'),(62,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2008',58,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:17'),(63,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah','','','c','','post-utme','2008',58,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:18'),(64,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2008',57,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:54'),(65,'The meaning of Emmanuel is ','laughter ','for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:55'),(66,'Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:56'),(67,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:57'),(68,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:58'),(69,'One of the following said: “the lion has roared who will not fear? ','Nathan ','Jeremiah ','Amos ','Hosea','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:59'),(70,'Josiah’s reign was popular because of his ','Allies ','victory ','violence ','reforms','','','d','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:00'),(71,'Where did Paul cure a slave girl who had a spirit of divination? ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:01'),(72,'Who baptized the Ethiopian Eunuch? ','Paul ','Peter ','Philip ','Rufus','','','c','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:02'),(73,'Joshua’s first victory was over the people of ','Ai ','Gideon ','Gilgal ','Jericho ','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:03'),(74,'“There shall be neither dew nor rain this year except by my word” Who said this?','Moses ','Pharaoh ','Elijah ','Esther ','','','c','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:04'),(75,'In the case before Solomon over the deal and the living, child the mother of the dead child supported. ','Giving the living child to her opponent ','Killing the living child ','joint ownership of the living child ','king Solomon having the living child','','','b','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:04'),(76,'Before Moses died. God appointed ………. to succeed him ','Aaron ','Balaam','Joshua ','Manasseh ','','','c','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:05'),(77,'Those bitten by the serpent were treated by ','Drinking from the Red sea ','fasting for seven day ','looking at the bronze serpent ','call upon the lord ','','','c','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:06'),(78,'In order that Benjamin might be brought to Egypt, Joseph detained ','Ruben ','Levi ','Jacob ','Simoen ','','','d','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:07'),(79,'Those inspired by God to lead the tribes of Israel in battle were the ','Judges  ','Captains of Guard  ','priest  ','prophet  ','','','a','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:08'),(80,'God told Samuel that he, would punish Eli because he  ','did not correct his son’s sinful behavior ','did not offer sacrifice as the: Law ','did not warn the people of Israel to stop surfing ','Warned his sons against rape and drunkenness','','','a','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:09'),(81,'The sun stood still when ','Moses led Israel across the Red sea ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorite at Gideon ','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:10'),(82,'Who is reputed for pulling down the altar of Baal at the risk of annoying his father? ','Joseph ','Jesse ','Gideon   ','Samuel ','','','c','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:11'),(83,'In the trade treated between King Solomon and Lebanon, Solomon was to supply wheat and oil while Hiram was to supply','Grains only ','precious stories ','wheat advice ','Timber ','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:12'),(84,'Which prophet cried thus “woe is me” for lost, I am a man of unclean lips ','Hosea ','Jeremiah ','Isaiah ','Micah ','','','c','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:13'),(85,'Hosanna means  ','Ride on in majesty ','Ride on Glory ','Ride on to die ','Save me','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:14'),(86,'The conversion of Paul was made possible by','Simeon ','Zacchaccus ','the risen Lord ','Mathew ','','','c','','post-utme','2009',60,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:15'),(87,'Let his habitation be made desolate, and let there be no one to live in it’ who is being referred to here?  ','King soul ','Judas Iscariot ','Stephen ','Barnabas ','','','b','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:16'),(88,'The proconsul when Paul arrived in commit was called','Festus ','portions ','Pilate ','Gallio ','','','d','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:17'),(89,'‘Now I known that Lord has sent his angel to deliver me ……”who said this? ','Joseph ','Moses ','Paul ','Peter ','','','d','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:18'),(90,'The seven deacons were appointed by ','conduct a mission to the Gentiles','Replace the twelve ','Lead the church in Jerusalem ','Help in the distribution of food ','','','d','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:19'),(91,'What did God create on the 6th day ','The firmament ','light ','Dry land and sea ','man and living creatures ','','','d','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(92,'Joshua’s first victory was in ','Ai ','Gibeon ','Jordan ','Giligal ','','','c','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:20'),(93,'In the parable of the sower, the seeds on the good ground represent those who ','Accept and live by the world of God ','feed the poor ','Have and love riches ','Give alms in market places ','','','a','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:21'),(94,'Which prophet encouraged Jeroboam I to  revolt at the initial stage? ','Micaiah ','Jeremiah ','Nathan ','Joel ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:22'),(95,'‘This had is gone: and where shall I go’ who is being referred to here ','Isaac ','Joseph ','Peter ','Silas ','','','b','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:23'),(96,'According to Psalm 51, the sacrifice acceptable to God is','A clean hear ','Obedience ','A blemish less lamb ','A broken spirit ','','','c','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:24'),(97,'A would –be apostle who puts his hand to the plaughjsa and looks back lacks ','faith ','Kindness ','Repentance ','Total commitment ','','','d','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:25'),(98,'For which of these prophets of God did the Bible record explicitly to have abandoned an agribusiness for a call to serve God? ','Elisha ','Ezekiel ','Elijah ','Obadiah.','','','a','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:26'),(99,'Why did David spare the life of Saul at Ziph? ','he recognized Gods anointing on Saul ','Saul was also an Israelite ','He did not want blood shed ','He was Saul’s in- law','','','a','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:27'),(100,'Deborah was a judge when Israel was under the yoke of ','Moab ','Midian ','Canaan ','Philistine','','','c','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:28'),(101,'The treatment of those  bitten by fiery serpent was to ','drink from the Red sea ','look at the bronze serpent ','fast for seven days ','call upon the lord','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:29'),(102,'Which of these was detained by Joseph in order that Benjamin might be brought to Egypt ','Reuben ','Levi ','Judah ','Simon','','','d','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:30'),(103,'In the biblical account of creation, man was permitted to ','plant fruit trees for food ','water the garden ','make garment of hides and skin ','name all the creatures','','','d','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:31'),(104,'Each of these spies sent out by Moses on God’s command to report on the nature of the promised land was a ','great warrior ','wise judge ','priest ','leaders in his own tribe','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:32'),(105,'God reveal to Samuel that he was going to punish Eli because he ','did not correct his sons sinful behavior ','did not offer sacrifice as the law required ','did not warn the people of Israel to stop sinning ','warned his sons but did not punish them','','','d','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:33'),(106,'The sun stood still when ','Moses led the Israelites out of Egypt ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorites at Gideon','','','d','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:34'),(107,'When was this statement made? ‘I repent that I Made Saul king \\'','at the anointing of Saul ','When Saul failed to ray ','When Saul disobeyed God over Amalek ','When Saul finished the morning offering','','','c','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:35'),(108,'The commander of David’s army was ','Abner ','Joab ','Abiathar ','Adonijah','','','b','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:36'),(109,'That was the sin of David that involved Bathseba? ','Murder ','adultery ','dishonesty ','arrogance','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:37'),(110,'What is the meaning of Emmanuel? ','Son of Emmaus ','God is our Redeemer ','God with us ','Saviour','','','c','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:38'),(111,'What specific reply did John the Baptist give to the soldiers during his preaching ','collect no more than is appointed you ','do not begin to say to yourselves: we have Abraham as our father ','bear fruits that befit repentance ','be content with your wages','','','d','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-15 03:50:53'),(112,'Jesus taught that one should make friends quickly with one’s ','enemy ','neighbor ','master ','accuser','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:52'),(113,'The Pharisees and the Scribes accused the disciples of Jesus transgressing the tradition of the elders because they ','did not regard synagogue rules ','did not pray before meals ','ate with unwashed hands ','disobeyed the elders','','','c','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:53'),(114,'If anyone would be first, he must be last of all and servant of all. What does this saying of Jesus teach? ','endurance ','lack of ambition ','humility ','relaxation','','','c','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:53'),(115,'Which religious groups asked Jesus about payment of taxes to Ceaser? ','Pharisees and Sadducces ','Pharisees and Herodians ','Sadducces and herodians ','Herodians and Zealots','','','b','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:54'),(116,'To whom was the body of Jesus Christ given for burial after His death? ','Nicodemus the Pharisee ','Simon of Cyrene ','Simon the disciple ','Joseph of Arimathea.','','','b','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:55'),(117,'Paul was accused of apparently being a preacher of foreign divinities in Athens because he preached Jesus and the ','Cross ','Law ','resurrection ','second coming','','','c','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:56'),(118,'What specifically makes Samson a unique prophet of God? ','He was a Nazarene ','He loved honey ','He killed many at his death ','He spoke with power in riddles','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-15 03:50:53'),(119,'“It is not the sound of shouting for victory, or the sound of the cry of defeat, but the sound of singing that I hear” When was this statement made? ','at the consecration of the Israelites ','at the crossing of the Red Sea ','during the fall of Jericho ','in a strange worship of a god','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:58'),(120,'“Blessed be the Lord God of Israel is a hymn of praise by ','the virgin Mary at the Annunciation ','Zachariah at the birth of John the Baptist ','Simeon at the presentation of Jesus in the temple ','Elizabeth at the visit of Mary','','','b','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:59'),(121,'The shema emphasizes the ','unity of God ','richness of the spirit of God ','omnipotence of God ','crucial role o’ Israel in the world.','','','c','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:00'),(122,'The expression ‘dry bones’ in Ezekiel refers to ','an Israelites proverb ','the whole house of Israel ','the slain in the valley ','sinful Israelites and Judean','','','b','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:01'),(123,'What Josiah, the king of Judah, is best remembered for in Jewish history is ','His ability to destroy all the shine of Baals','His order that the bones and tombs of the prophets of God must be preserved ','His strong opposition to Pharaoh-Neco of Egypt ','His reparation of the temples of God','','','d','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:02'),(124,'After receiving an order from God, Jonah went down to…………….  ','Joppa ','Tarshish  ','Nineveh','Jerusalem ','','','b','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:03'),(125,'True religion, according to Amos’ submission, is the one in which  ','God is always appeased with sacrifices and tithes ','Foods and drinks are served as a mark of love ','Justice and righteousness flows like an endless stream  ','Feast and solemn assemblies play important roles ','','','c','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:04'),(126,'The last born of Gomer for Hoshea was ………….  ','Jezreel','Loammi ','Diblaim  ','Loruhamah ','','','b','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:05'),(127,'According to Paul in Romans, the law and the prophets bore witness to the righteousness of God but man could not be justified until he  ','Had faith in Jesus ','Saw the glory of God ','Made a serious personal effort ','submitted wholly to the law ','','','a','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:06'),(128,'One of the following was not among the religious sects in the New Testament ','The Pharisees','The Nazarenes ','The Essences   ','The Sadducees','','','c','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:06'),(129,'One of the following  is not correct about the order of creation in the Creation Stories ','the evening came before the morning ','darkness came before light','animals were created before man ','the morning came before the evening','','','d','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:07'),(130,'What was Cain’s immediate reaction to the acceptance of Abel’s offering?','He offered another sacrifice ','He was angry and his countenance fell ','He was angry with God','He was angry with Abel ','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(131,'Pick the odd out of the following characters:  ','Saul   ','David','Jonathan','Solomon','','','c','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:09'),(132,'“Talitha cumi”  means  ','Dorcas, Arise','Little girl, I say to you, arise ','Thy will be done','Jesus is coming','','','b','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:10'),(133,'Who according to James blaspheme the honourable name by which Christians are called','Non believers','Pagan rulers','Antichrists','Rich people','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:11'),(134,'Who was the last person Jesus appeared to after his resurrection according to Paul?','Mary Magdalene','Joseph of Arimathea  ','Paul','Thomas','','','c','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:12'),(135,'How many disciples of Jesus Christ were fishermen? ','two  ','three  ','four','five','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:13'),(136,'Who among the seven deacons was an evangelist who had four daughters who prophesied?  ','Stephen','Philip ','Barnabas   ','Nicholas','','','b','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:14'),(137,'“God has given your enemy into your hand this day, now, therefore, let me pin him to the earth with one stroke of the spear, and I will not strike him twice”. This statement was made to David by','Abishai ','Abner    ','Ahimelech ','David’s armour bearer','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:15'),(138,'The phrase ‘you cows of Bashan’ referred to ','Cows in the land of Bashan  ','The fat and greedy men of Israel who oppress the priest ','The fat and greedy women of Israel who oppress the poor  ','The fat rich women of Samaria who oppress the poor.','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:16'),(139,'The book of _______ mostly emphasized social justice ','Amos ','Ezekiel  ','Hoshea  ','Isaiah.','','','a','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:17'),(140,'Among the spiritual gifts, love is supreme because it ','facilitates development ','gives room for friendship ','has eternal value ','promotes understanding','','','c','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:17'),(141,'John the Baptist describes Jesus to his two disciples as the ','beloved Son of God ','great one of Israel ','holy one of God','lamb of God.','','','d','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:18'),(142,'Joseph’s brothers hated him the more because ','he dreamed about his future dominion over his family members ','he used to give his father evil reports about them ','his father had him at his old age ','his father made a special robe for him','','','a','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:19'),(143,'After eating the forbidden fruit Adam’s and Eve’s eyes opened and they realized that they ','had sinned against God','had disobeyed God   ','were naked  ','had been deceived by the serpent.','','','c','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:20'),(144,'What did Ahab do to Prophet Micaiah for speaking the truth about the war between Israel and Syria? ','he promoted him ','he gave him a gift ','he denied him any fox ','he imprisoned him.','','','d','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:21'),(145,'The Amalekites who opposed the Israelites in the wilderness were from the lineage of  ','Benjamin ','Jacob ','Esau ','Reuben','','','c','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:22'),(146,'During the period of three and a half years of drought in Israel, the man who hid one hundred prophets of God in a cave was  ','Isaiah  ','Lisha ','Elijah ','Obadiah','','','d','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:23'),(147,'During his first missionary journey, Paul first recorded sermon was delivered at  ','Perga   ','Iconium ','Antioch','Lystra ','','','c','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:24'),(148,'In his second letter to the Christians in Thessalonians, Paul admonished them to have nothing to do with anyone who refused to obey what he wrote in the letter. What did Paul think would happen to the person?  ','The person would be encouraged  ','The person would be ashamed  ','The person would be disturbed  ','The person would repent','','','b','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:25'),(149,'In the Sermon on the Mount, the meek are blessed because  ','They shall see God  ','They shall be exalted  ','They shall inherit the earth  ','They shall be called sons of God ','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:26'),(150,'Which of the following is not a natural miracle:  ','Stilling of the storm  ','Walking on the sea  ','Raising of Lazarus from the dead  ','Feeding the five thousand','','','d','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:27'),(151,'The prophet whose message was primarily on social justice and true religion is  ','Isaiah  ','Agabus  ','Amos  ','Jeremiah','','','d','','post-utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:28'),(152,'The prophet who prophesied that Paul would be arrested in Jerusalem is  ','Isaiah  ','Agabus  ','Philip  ','Stephen  ','','','b','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:28'),(153,'One of the lessons one can derive from the story of Deborah the Prophetess is that  ','Women are not good warriors  ','Women should not be allowed to take leadership roles  ','Women’s rights should be fought for by all ','God can use anyone regardless of their gender and tribes.','','','b','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:29'),(154,'One of the following is not among the reasons why Jesus taught in Parables  ','to fulfill the prophecy in Psalm 78:2  ','to create understanding  ','to make people learn the unknown through the known  ','to show the omniscient power of Jesus','','','b','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:30'),(155,'The disciple in Damascus who prayed for Saul (Paul) to receive his sight after his conversions was  ','Ananias ','Sapphira  ','Barnabas  ','Thomas ','','','a','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:31'),(156,'According to James, one of the causes of wars among Christians is ','their passions  ','their wickedness  ','their faith without work  ','their pride','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:32'),(157,'One of the following was not among the decisions reached at the Council of Jerusalem concerning the Gentiles who became Christians:  ','That Gentiles should obtain from what has been sacrificed to idols  ','The Gentiles should abstain from blood  ','That Gentiles should abstain from what is strangled ','That Gentiles should abstain from love of the world ','','','d','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:33'),(158,'“Thy glory, O Israel upon thy high places! How are the mighty fallen! Tell it not in the streets of Ashkelon… How  are the mighty fallen in the midst of the battle!” The above dirge was written by David when  ','He killed Goliath  ','Uriah the Hittite died  ','Saul and Jonathan died  ','Abner was killed by Joab','','','c','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:34'),(159,'Who was one of the Seven Deacons who had four daughters who were prophetesses?  ','Nicolaus  ','Stephen  ','Prochorus  ','Philip ','','','d','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:35'),(160,'According to the Letter to the Hebrews, why should Christians lay aside every weight and sin which clings so closely?  ','Sin is contagious  ','Christian can easily be influenced by sinners  ','Christians are surrounded by so great a cloud of witness  ','No sinner will inherit the kingdom of God ','','','c','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:36'),(161,'“To obey is better than sacrifice” came from  ','Prophet Daniel  ','Prophet Ezekiel  ','Prophet Elijah  ','Prophet Samuel ','','','d','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:37'),(162,'The three sons of Saul who lost their live on Mount Gilboa were  ','Jonathan, Ishbosheth and Abinadab  ','Abinadab, Jonathan and Ishbosheth  ','Jonathan, Abinadab and Malchisua  ','Ishbosheth, Malchishau and Abinadab','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:38'),(163,'The original name of Shadrach was  ','Daniel  ','Mishael  ','Hananiah  ','Azariah','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:39'),(164,'The person who was invited to nurse Moses was ','Jochebed  ','Puah  ','Shiphrah  ','Miriam ','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:39'),(165,'“… But let judgment run down as waters, and righteousness as a mighty stream… “Fairness, judgment and righteousness were set aside during the time of  ________ for burnt and meat offerings.','Amos  ','Hosea  ','Ezekiel  ','Hezekiah ','','','a','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:41'),(166,'Eli’s inability to discipline his sons led to all the following except  ','God’s curse on his family  ','the extension of his life span  ','the cancellation of priesthood from his lineage','the death of his sons','','','b','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:42'),(167,'Who was the King of Judah who witnessed the second deportation?  ','Gedaliah  ','Jehoiachin  ','Zedekiah ','Jehoiakim','','','c','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:42'),(168,'Paul, the apostle to the gentile, was a native of  ','Perga in Pamphylis  ','Rome  ','Jerusalem  ','Tarsus ','','','b','','post-utme','2012',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:43'),(169,'In the Sermon on the Mount, Jesus taught his disciples that whenever they faced persecution, they should  ','be more serious with their drive for souls ','be rejoiced and be exceedingly glad  ','withdraw and  be less active  ','resist persecution and fight for their rights  ','','','b','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:44'),(170,'According to Peter, Judgment of God must first begin in  ','the house of God  ','the public places  ','the midst of criminals ','the government auditoria ','','','a','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:45'),(171,'Paul told the believers in Corinth that no one can say Jesus is Lord except by  ','knowledge  ','revelation  ','grace  ','the Holy Spirit ','','','a','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:46'),(172,'Render to Caesar the things that they are Caesar’s and to God the things are God’s, the above quotation emphasizes  ','Obedience to divine authority  ','Striking a balance between civil and divine authorities ','Disobedience to civil authority  ','Total rejection of both divine and civil authorities','','','b','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:08'),(173,'The women sang and said David slain his ten thousands and Saul his  ','five thousands   ','thousand  ','thousands   ','six thousand','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:09'),(174,'Israel went into Assyria captivity in','720BC  ','730 AD   ','750BC','722 BC','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:10'),(175,'A prophet mostly emphasized the holiness of God. This prophet was  ','Hosea  ','Jeremiah  ','Ezekiel   ','Isaiah','','','d','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:11'),(176,'One of the following was not among the religious sects in the New Testament  ','The Pharisees   ','The Nazarenes','The Essenes','The Sadducees','','','c','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:12'),(177,'“Talitha cumi” means','Dorcas, Arise   ','Little girl, I say to you, arise  ','Thy will be done','Jesus is coming','','','b','','post-utme','2013',57,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:12'),(178,'Who was the secretary employed by Jeremiah to write his prophecy?','Amanuensis  ','Amos  ','Baruch  ','Joshua','','','c','','post-utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:14'),(179,'Who among the seven deacons was an evangelist  who had four daughters who prophesied?  ','Stephen  ','Philip   ','Barnabas   ','Nicholas','','','b','','post-utme','2013',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:15'),(180,'The son of Solomon who made unwise decisions was ….','Jeroboam      ','Rechoboam','Rehoboam    ','Asa','','','c','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:16'),(181,'The book of ____ mostly emphasized social justice','Amos   ','Ezekiel   ','Hoshea','Isaiah','','','a','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:16'),(182,'In one of the missionary journeys, Paul was stoned   to a state of coma in  ','Antioch in Pisidia   ','Iconium  ','Lystra   ','Antioch of Syria','','','c','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:17'),(183,'Moses spoke  to the Israelites to fear not, but be calm, confident and see the salvation of God at  ','Pi-Hahirotti   ','Meribah   ','Wilderness of Sinai ','d.Elim','','','a','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:18'),(184,'One of the following is not in the Pentateuch  ','Exodus    ','Judges     ','Leviticus   ','Numbers','','','b','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:19'),(185,'The sons of Samuel who did not walk in his ways were:','Phinehas and Hophni    ','Hophni and Amos  ','Joel and Phinehas        ','Abijah and Joel','','','d','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:20'),(186,'What was the second temptation of Jesus according to the Gospel according to Luke?','The Devil wanted Jesus to worship him  ','The Devil wanted Jesus to deny God','The Devil wanted Jesus to jump from the pinnacle of the Temple    ','The devil wanted Jesus to turn stones to bread','','','a','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:21'),(187,'Jonah refused to go to Nineveh because  ','Ninevites were in human and wicked','God was merciful, gracious and could forgive them  ','he was timid to deliver the message  ','he did not want to endanger his life','','','b','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:22'),(188,'‘Those who honour me I will honour , and those who despise  me shall be lightly esteemed.’ Who was being addressed?  ','Eli   ','Samuel','Hophni   ','Joshua','','','a','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:23'),(189,'Amos reference to ‘cows of Bashan’ was a metaphoric allusion to  ','women of Samaria  ','rich people of Samaria   ','poor people of Samaria  ','illustrious sons of Samaria','','','a','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:24'),(190,'Amos explained true religion as  ','singing of praises to God  ','self-righteousness','fasting and praying  ','being just and righteous','','','d','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:25'),(191,'Who was the prophet who said “I will put my law within them, and will write it upon their heart….”?  ','Isaiah  ','Jeremiah','Hosea   ','Amos','','','b','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:26'),(192,'The relationship between God and Israel was described by Hosea as that of a','faithless wife and a loving husband','a loving wife and a faithless husband  ','a penitent wife and aggressive husband  ','a faithless husband and a faithless and nonchalant wife.','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:27'),(193,'One of the following is not among the “I am” Sayings of Jesus  ','I am the bread of life','I am the gate of life','I am the good shepherd','I am the way','','','b','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:28'),(194,'In what way was Moses a prototype of Jesus Christ?','Moses was a great prophet who led Israel out of Egypt','Moses did not die naturally','Moses appeared to Jesus on Mount of Transfiguration','Moses was persecuted by his people','','','a','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:28'),(195,'“O dry bones, hear the word of the Lord… “The dry bones mentioned by Prophet Ezekiel  in the statement above refer to the','Amalakite king and soldiers  ','Whole house of Israel  ','Hittites and the Assyrians  ','Babylonians troubling Israel','','','b','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:29'),(196,'The eunuch who went to Jerusalem to worship in Acts 8:27 was a  ','minister of God  ','minister of Candace the queen Gaza  ','minister of Candace the king of the Ethiopians','minister of Candace the queen of the Ethiopians','','','d','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:30'),(197,'At the time of creation, the river that flowed out of Eden to water the garden divided into','Pishon, Hauijah, Gihon and Tigris','Tigris, Cush, Assune and Hauijah','Pishon, Tigris, Gihon and Euphrates','Euphrates, Gihon, Assyna and Tigris','','','c','','wassce','2005',80,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:31'),(198,'During the creative activity of God, He made the beasts','in His own image','to multiply on the earth','according to their kinds','to serve the needs of man','','','c','','wassce','2005',81,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:32'),(199,'“Two nations are in your womb, and two peoples born of you shall be divided”. The two people are','Moses and Jacob','Jacob and Benjamin','Esau and Ishmael','Esau and Jacob','','','d','','wassce','2005',60,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:33'),(200,'Moses was nursed by','Pharaoh’s daughter','Rachael','his mother','Rebecca','','','c','','wassce','2005',73,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:34'),(201,'The name Ichabod means','Yahweh is God','beloved of  Yahweh','I have asked him from the Lord','the glory has departed from Israel.','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:35'),(202,'When Saul and his troops came after David in the wilderness of Ziph, David and Abishai went to Saul’s camp \t\tto','slay him','surprise him','capture him alive','dialogue with him','','','b','','wassce','2005',74,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:36'),(203,'Saul’s death on Mount Gilboa was in consequence of his','sin of disobedience','resorting to the witch of Endor','loss of confidence in David','armour bearer’s obedience','','','a','','wassce','2005',87,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:37'),(204,'Naboth would not give the vineyard to Ahab because it was','under cultivation','inherited from his father','better than Ahab’s offer','undervalued by the king','','','b','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:38'),(205,'A good example of parental responsibility was demonstrated by','Samuel','Eli','David','Asa','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:39'),(206,'When God said to Solomon, “Ask what I shall give you”, he requested for','long life and prosperity','power and assistance against his enemies','peace and understanding to serve God','wisdom and understanding to serve the people','','','d','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:40'),(207,'The remote cause of the fall of Jerusalem was','Josiah’s death at the battle of Megiddo','the military might of Israel’s enemies','the sins of Manasseh, the king','Judah’s with holding of tribute to Nebuchadnezzar','','','c','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:41'),(208,'Nebuchadnezzar punished those who refused to worship the golden image by throwing them into','the River Nile','the rivers of  Babylon','a furnace','a lion’s den','','','c','','wassce','2005',65,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:42'),(209,'The wife of Hosea was called','Gomer','B . Rahab','Jael','Hagar','','','a','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:43'),(210,'As a reward for their faith, Shadrach, Meshack and Abednego were','asked to return to Jerusalem','granted respectable positions','offered money by the king','made to praise Yahweh','','','b','','wassce','2005',61,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:44'),(211,'Who among the prophets was referred to as a prophet of doom?','Isaiah','Ezekiel','Amos','Jeremiah','','','d','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:44'),(212,'Jonah typified Jesus Christ when he','surrendered himself to be swallowed by the fish','offered to lose his life that others might be saved','rejected the message of God','announced destruction for the Ninevites','','','b','','wassce','2005',86,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:45'),(213,'The message of Amos was mainly about','the love of God','man’s response to God’s love.','the holiness of God','social justice','','','d','','wassce','2005',86,'Admin','2016-11-12 11:56:06','2020-07-15 03:50:53'),(214,'Before Joseph and Mary came together, she was found to be with a child','to be called Jesus','of the Holy Spirit','who shall be called Emmanuel','spoken of by the prophets','','','b','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:54'),(215,'“How is it that you, a Jew, ask a drink of me, a woman of \tSamaria?” The speaker was surprised because','Jesus was God and not human','the Jews could only buy water from Samaria','the Jews had no dealings with Samaria','it was unlawful for a man to receive water from a woman','','','c','','wassce','2005',70,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:01'),(216,'Jesus said “Not everyone who says to me ‘Lord, Lord,’ shall enter into the kingdom of heaven, but he who','hears the word of God”.','prays and fasts’','prophesies in my name”','does the will of my father”','','','d','','wassce','2005',75,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:02'),(217,'According to Jesus, a disciple must not','hate his parents and family','bear his own cross','be a poor man','count the cost','','','d','','wassce','2005',74,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:03'),(218,'Instead of being unnecessarily anxious about life and the affairs of this world, Jesus taught us to','relax our minds and wait for the manna from above','seek first the kingdom of God and its righteousness','seek water baptism and qualify for divine healing','repent of our sins and preach the gospel.','','','b','','wassce','2005',69,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:04'),(219,'According to Jesus, the seventy disciples who returned from a successful missionary work should rejoice because','the demons were subject to them','the sick were healed through their ministry','the lame walked just at their command','their names were written in heaven','','','d','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:05'),(220,'The seeds that fell among thorns represent those who hear the word of God but lose it because','they refuse to be baptized in water','their parental background does not allow them to believe','the cares of the world and delight in riches choke the word','the unbelievers do not permit new converts to receive the word','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:06'),(221,'The rich man who ignored the needs of Lazarus lacked','a sense of proportion','parental care','human sympathy','spiritual contentment','','','a','','wassce','2005',65,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:07'),(222,'Abiding in Christ’s love demands that we','have hope for the future','keep His commandments','imitate one another','manifest the peace of God','','','b','','wassce','2005',81,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:08'),(223,'According to Jesus, a good shepherd lays down his life for the sheep but a hireling','sells them off for personal profit','abandons the sheep in the face of danger','protects some of the sheep leaving others to danger','asks for better pay before doing his work.','','','b','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:09'),(224,'The arrest of Jesus by his enemies was','an accident of faith','a result of his tough teaching','a fulfilment of the scriptures','a ploy to see his miraculous powers','','','b','','wassce','2005',65,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:10'),(225,'The final trial of Jesus was presided over by','Herod','Caiaphas','the High Priest','Pilate','','','d','','wassce','2005',83,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:11'),(226,'Before his ascension, Jesus commissioned his disciples to go to all nations and','cast out demons','heal the sick','raise the dead','make disciples of them','','','d','','wassce','2005',63,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:12'),(227,'The experience which totally changed Paul’s focus in life was his','witnessing the martyrdom of Stephen','determination to wipe out the church','participation in the council of Jerusalem','encounter with Jesus on the road to Damascus','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:13'),(228,'Herod persecuted the early church because he was','opposed to the Apostles’ teaching','impressed by his growing popularity after killing James','unhappy that the Jewish leaders were not doing enough havoc to the apostles','asserting the extended powers granted him Rome.','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:14'),(229,'One of the early Christians who sold his property and gave the money to the apostles was','Barnabas','Stephen','Barabbas','Matthias','','','a','','wassce','2005',70,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:14'),(230,'Which of the following was not characteristic of the Early Church?','Constant change in leadership','Devotion to the teachings of the apostles','Breaking bread in members’ homes','Communal fellowship','','','a','','wassce','2005',82,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:15'),(231,'“Father forgive them for they know not what they do” was the prayer said by','Philip','Peter','Paul','Stephen','','','d','','wassce','2005',75,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:16'),(232,'Paul argued that Jesus died for us while we were yet sinners in order to','prove that he was not an ordinary man','show Gods’ love for sinful man','warn us to desist from sin','give us power to possess the earth','','','b','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:17'),(233,'Paul, in Romans, taught that Christians are Abraham’s descendants by','grace','faith','circumcision','law','','','b','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:18'),(234,'According to Romans, when civil authorities punish evil doers, they do so as the','agents of God’s wrath','supervisory authority','agents of the darkness of this world','representatives of angelic powers','','','a','','wassce','2005',77,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:19'),(235,'Paul said he was not fit to be called an apostle because he','was not called like the others','was not a Jew','persecuted the Early Church','was only a distributor of letters','','','c','','wassce','2005',70,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:20'),(236,'In Romans, Paul admonished Christians, in their dealings with secular powers, to','reject all secular laws','pray for the leaders','refuse to pay tax to them','respect the authorities','','','d','','wassce','2005',85,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:21'),(237,'Paul taught that by our common faith in Jesus and baptism, the difference between Jews and Gentiles has become','permanent','temporal','irrelevant','real','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:22'),(238,'The Philippians’ gifts to Paul were for','the growth of the church','his sustenance','distribution to the saints','other Christian prisoners','','','b','','wassce','2005',79,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:23'),(239,'Which of the following does not relate to the new life in Christ?','Baptism','Circumcision','Grace of God','Faith','','','b','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-15 13:50:19'),(240,'Paul taught the Colossians that the relationship between wives and their husbands should be as','is fitting in the Lord','the culture demands','is written in the law','the husband commands','','','a','','wassce','2005',89,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:25'),(241,'At the coming of the Lord, unbelievers will','be condemned','have a desolate land','be hit by famine','die in divine war','','','a','','wassce','2005',76,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:26'),(242,'Paul compares the manifestations of spiritual gifts in individual members of the Church to the','unity of the human body','rights of the individual members of the Church','rights of the different parts of the body','unity of the Church','','','a','','wassce','2005',81,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:27'),(243,'Paul wrote to the Thessalonians about idleness because he \tlearnt that they were','among the idlest people in Asia','forcing Christians to work in the Church','unwilling to give offerings','expecting the second coming of Christ','','','d','','wassce','2005',64,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:28'),(244,'Paul appealed to Philemon to forgive Onesimus on the basis of','equality','righteousness','love','faith','','','a','','wassce','2005',80,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:29'),(245,'James recommends the anointing oil of the elders because such anointing','prepares the sick for his last journey','makes the sick holy and righteous','promotes physical recovery','ensures forgiveness to the sick','','','d','','wassce','2005',87,'Admin','2016-11-12 11:56:08','2020-07-15 14:05:27'),(246,'Peter advised his fellow elders to tend the flock of God that was in their charge','with care','willingly','by example','domineeringly','','','a','','wassce','2005',78,'Admin','2016-11-12 11:56:08','2020-07-14 14:13:31'),(247,'In Timothy, Paul urges Christians to pray for kings and those in authority for the achievement of','a successful Christian life','godly and acceptable life','peace and exaltation in life','quiet and peaceable life.','','','d','','utme','2009',75,'Admin','2016-11-12 12:16:55','2020-07-14 14:13:32'),(248,'According to Galatians, one of the benefits of being a joint heir with Christ is having His Spirit in','worship','the heart','the body','prayers','','','b','','utme','2009',62,'Admin','2016-11-12 12:16:57','2020-07-14 14:13:33'),(249,'According to Ephesians, children who obey their parents in the Lord will','be happy','go to heaven','have long life','be great.','','','c','','utme','2009',69,'Admin','2016-11-12 12:16:57','2020-07-14 14:13:33'),(250,'According to Thessalonians, the day of the Lord will not come unless the','living die first','scoffers come first','dead rise first','rebellion comes first.','','','d','','utme','2009',80,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:34'),(251,'In Romans, Paul condemned sin taking over mortal bodies in the new life as instruments of','greediness','wickedness','sadness','foolishness.','','','b','','utme','2009',94,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:35'),(252,'In his teaching on partiality, James declares that mercy triumphs over','judgment','righteousness','grace','faith.','','','a','','utme','2009',96,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:36'),(253,'In Paul’s arrangement of the spiritual gifts in Corinthians, the last is','the utterance of wisdom','interpretation of tongues','gifts of healing','various kinds of tongues.','','','b','','utme','2009',80,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:37'),(254,'In His sermon on the Mount, Jesus said that the poor in spirit are blessed for they would','be satisfied','be comforted on the last day','inherit the kingdom of heaven','inherit the earth.','','','a','','utme','2009',86,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:38'),(255,'According to Matthew, the stone on the tomb of Jesus was removed by','an angel','a Roman soldier','Mary Magdalene','Peter and John.','','','a','','utme','2009',82,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:39'),(256,'Angel Gabriel told Zachariah that he would become dumb until John was born because he','looked down on the Angel','was advanced in age','disagreed with Elizabeth, his wife','did not believe God’s words.','','','d','','utme','2009',70,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:40'),(257,'“...but should write to them to abstain from the pollutions of idols and from unchastity and from what is strangled and from blood...” The statement above was made at the Council of Jerusalem by','Philip','Simon','James','Peter','','','d','','utme','2009',73,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:41'),(258,'In the country of the Gerasenes, Jesus healed the','man possessed of demons','paralytic at the pool','leper','blind man.','','','a','','utme','2009',65,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:42'),(259,'Following the death of Stephen, the only group of believers not scattered by the great persecution was the','deacons','apostles','prophets','disciples.','','','d','','utme','2009',89,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:43'),(260,'According to Luke, when Moses and Elijah appeared during the Transfiguration, they spoke of Jesus’','departure','second coming','resurrection','trials.','','','a','','utme','2009',61,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:43'),(261,'The baptism of Jesus by John in River Jordan was to','convince others that John was His forerunner','ensure that proper baptism must be in a river','service as an example','fulfil all righteousness.','','','d','','utme','2009',79,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:45'),(262,'Herod was delighted to see Jesus because he had heard of Him for so long and wanted to','send Him to Rome','sentence Him to death','see Him perform miracles','make Him his friend.','','','c','','utme','2009',85,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:47'),(263,'“Do you understand what you are reading?” Philip asked the Ethiopian eunuch the question above when he found him reading the book of','Hosea','Ezekiel','Jeremiah','Isaiah.','','','d','','utme','2009',79,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:47'),(264,'“Unbind him, and let him go.” The statement was made by Jesus when','He raised to life the dead Lazarus','He healed the son of the widow at Nain','He healed the centurion’s servant','a boy bound by Satan was brought to Him.','','','a','','utme','2009',90,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:48'),(265,'In Luke, at the Last Supper, Jesus revealed His','resurrection','imminent sufferings','love for His disciples','ascension.','','','b','','utme','2009',71,'Admin','2016-11-12 12:16:58','2020-07-15 03:50:53'),(266,'The good shepherd according to Jesus is one who','lays down his life for his sheep','goes about with his sheep','keeps many healthy sheep','feeds his sheep in green pastures.','','','a','','utme','2009',84,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:50'),(267,'Jesus: stilling of the storm was to','escape from danger','impress His disciples','demonstrate His power','help the fishermen.','','','c','','utme','2009',64,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:51'),(268,'“Can any one forbid water for baptizing these people who have received the Holy Spirit just as we have?” The statement above was made by Peter at the conversion of','Herod','Lydia','Saul','Cornelius.','','','d','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:52'),(269,'The disciple who replaced Judas Iscariot was','Justus','Stephen','Mathias','Luke.','','','c','','utme','2009',66,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:53'),(270,'The message in the parable of the weeds is to','make Christians to be aware of the evil one','remind Christians to pray always','teach Christians to be aware of false teaching','warn Christians on what will happen at the close of age','','','c','','utme','2009',76,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:54'),(271,'The sin of the sons of Eli was that they treated the offering of the LORD with','suspicion','contempt','disgust','jealousy.','','','b','','utme','2009',94,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:55'),(272,'In order for the people of Israel to be ready to meet the LORD by the third day at Mount Sinai, they were','not to drink alcohol','to wear white garments','to wash their garments everyday','not to go near a woman.','','','c','','utme','2009',83,'Admin','2016-11-12 12:16:58','2020-07-15 23:00:49'),(273,'For worshipping the molten calf, God described the Israelites as','a stubborn nation','an unholy nation','a stiff-necked people','an unrighteous people','','','c','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:57'),(274,'“1 will not eat until I have told my errand” In the statement above, the errand of Abraham’s servant was to','find a wife for Isaac','deliver the camels to Laban','assess Isaac’s future wife','deliver Isaac’s message to Laban','','','a','','utme','2009',93,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:58'),(275,'Saul leant from Samuel’s spirit that the LORD would','give the Philistines into his hands','afflict him with sickness','because Isaac’s future wife','pardon his iniquity','','','c','','utme','2009',87,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:59'),(276,'“My spirit shall not abide in man forever, for he is flesh...” When God made the statement above, He concluded that man’s days shall be','one hundred years','one hundred and fifty years','eighty years','one hundred and twenty years.','','','a','','utme','2009',62,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:00'),(277,'According to proverbs, a son that is attentive to a father’s instruction will','be rich','have eternal life','gain insight','be forgiven his sins','','','b','','utme','2009',73,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:01'),(278,'When God called Moses to deliver the Israelites, he resisted because he could not speak and he was told to','perform some signs with his rod','wait for a sign from God','go with Joshua who would speak for him','go with Aaron who would speak for him','','','d','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:02'),(279,'David was anointed king over Judah at','Zuph','Bethlehem','Hebron','Gibeon.','','','c','','utme','2009',79,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:03'),(280,'“Behold, if people of Israel are to come, let us deal shrewdly with them, lest they multiply.....” ln the statement, the first step by the king of Egypt was to','cast all Hebrew male children into the Nile','impose heavy tax on them','kill Hebrew male children','set taskmasters over them to afflict them with burdens','','','d','','utme','2009',77,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:04'),(281,'“Let the waters under the heavens be gathered together into one place, and let the dry land appear.” In the statement above  the dry land and the water refer to','earth and oceans','firmament and seas','firmament and oceans','earth and seas','','','d','','utme','2009',83,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:04'),(282,'What did Gideon call the altar which he built to the LORD?','The LORD is merciful','The LORD is peace','Jehovah Jireh','The LORD is great','','','a','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-07-14 02:26:02'),(283,'When King Nebuchadnezzar besieged Judah, he took away all classes of people but spared the','poorest people of the land','palace guards','children and the aged','priests and prophets','','','a','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:18'),(284,'After Prophet Ezekiel had eaten what he was offered, he was sent to speak to','a people of hard language','the house of Israel','the house of Judah','a people of foreign language','','','b','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-07-15 14:05:27'),(285,'Josiah believed that the wrath of the LORD was kindled against him and all Judah because','they did not observe the Passover','there was an unholy thing in their midst','the people have forgotten God','their fathers were disobedient to God.','','','b','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-07-15 09:02:40'),(286,'“Son of man, stand upon your feet, and I will speak with you.” What happened to the Son of man after the instruction above?','The Spirit entered him.','He became terrified.','The angels gave him support.','He began to prophesy.','','','a','','utme','2009',79,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:21'),(287,'God had pity on the people of Nineveh because','they listened to Jonah’s message','the king punished all the violent people in the land','they turned from their evil way.','they made sacrifices of sin offering to God.','','','c','','utme','2009',68,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:21'),(288,'The Kingdom of Israel was divided because the','kingdom was too large to be administered','leadership wanted to create more nations','followership wanted more nations','last two kings made unwise policies.','','','d','','utme','2009',82,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:22'),(289,'“Behold, I am the LORD, the God of all flesh; is anything too hard for me...” The statement above suggests that God is','merciful','awesome','most powerful','not changeable.','','','b','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:23'),(290,'Immediately after the contest on Mount Carmel, Elijah prayed and God answered him with','thunder','rainfall','a whirlwind','a heavy storm.','','','a','','utme','2009',93,'Admin','2016-11-12 12:16:59','2020-07-18 00:11:06'),(291,'Prophet Amos told Israel to hate evil, love good and establish justice in the gate so that God would','heal their diseases','give them good leaders','be gracious to them','multiply their descendants.','','','c','','utme','2009',87,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:25'),(292,'In addition to the declaration of freedom to the exiles in Babylon, King Cyrus ordered for','free will offering for the house of God in Jerusalem','the release of Jewish, slaves in the empire','security check on the Jews before departure','support from craftsmen in Babylon.','','','a','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:26'),(293,'“Am I God, to kill and to make alive, that this man sends words to me to cure a man of his leprosy...” Prophet Elisha responded to the king’s reaction in the statement above by','directing the nation of Israel to pray and fast','requesting the leper to come to his house','directing the leper to go to River Jordan','asking the leper to offer a sacrifice.','','','b','','utme','2009',73,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:27'),(294,'According to Prophet Jeremiah, one of the promises of God was that He would give the Israelites','new priests','new commandments','kings after His own heart','shepherds after His own heart.','','','c','','utme','2009',74,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:28'),(295,'Prophet Hosea named his second child Not Pitied because God would no more pity the','kings of Judah','kings of Israel','house of Judah','house of Israel.','','','c','','utme','2009',77,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:29'),(296,'“Test your servants for ten days; let us be given vegetables to eat and water to drink...” In the statement above, Daniel was talking to','King Darius','the chief of the eunuchs','the steward of the chief eunuch.','King Artaxerxes.','','','b','','utme','2009',72,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:30'),(297,'God blessed and hallowed the seventh day because','it was the day He rested from creation','it was the day He created man','He wanted it to be a day of worship','He saw that all He had created was good.','','','a','','utme','2011',75,'Admin','2016-11-12 12:27:45','2020-07-14 14:14:31'),(298,'Noah’s ark was sustained during the flood by its','resting on the highest mountains','being rowed on the waters','floating on the water','being anchored safely','','','c','','utme','2011',64,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:32'),(299,'God visited the children of Israel on Mount Sinai during the giving of  the commandments through','a storm','mist and dew','smoke and fire','a still small voice','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:33'),(300,'When asked to interpret Pharaoh’s dream, Joseph’s first response was','...God has revealed to Pharaoh what he is about to do.','...It is not in me; God will give Pharaoh a favourable answer.','...God will shortly bring it to pass.','…let Pharaoh select a man discrete and wise','','','b','','utme','2011',83,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:33'),(301,'When Joshua fell upon his face during Israel’s defeat at Ai, God told him to rise and','send more courageous soldiers to Ai','encourage the people','pray fervently against their enemies','sanctify the people','','','d','','utme','2011',63,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:34'),(302,'God guided Abraham’s steward in choosing a wife for Isaac by','teaching him how to select a good woman','leading a lady to fulfil his prayer request','taking him to Abraham’s fatherland','giving him an exemplary woman.','','','c','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:35'),(303,'Why was God angry with Eli?','Eli’s sons disregarded the people’s warning','Eli’s sons were wicked people.','Eli’s sons dishonoured God and he treated them with levity.','Eli’s sons were appointed as priests against God’s will.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:36'),(304,'Laxity in disciplining children is dangerous to both the family and society as exemplified by','Jonathan','Tamar','Absalom','Ahikam.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-15 13:37:42'),(305,'God promised Abraham that nations of the earth shall be blessed through him because','he had obeyed Him','his descendants had obeyed Him','of his kindness to Hagar','of  his exemplary leadership.','','','a','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:38'),(306,'The punishment for Adam and Eve’s sin was that they','were driven out of the garden','would be naked forever','would never fellowship with God','would be enemies of crawling animals.','','','a','','utme','2011',64,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:39'),(307,'‘Do not destroy him; for who can stretch out his hand on the LORD’S anointed, and be guiltless?’ In the statement above, David was acknowledging God’s role in','Abishai’s command','Saul’s leadership','Samuel’s priesthood','Elijah’s prophet hood.','','','b','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:40'),(308,'Saul’s decision to consult a medium displayed his lack of','faith in his army','faith in God','leadership qualities','respect for the dead.','','','b','','utme','2011',86,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:41'),(309,'Solomon made the most unwise decision by engaging in','marriages to foreign women','alliances with his brothers','so many wars of conquest','developmental works.','','','a','','utme','2011',99,'Admin','2016-11-12 12:27:46','2020-07-21 16:47:13'),(310,'The man of God whose word was ignored by Kings Ahab and Jehoshaphat was','Elijah','Zedekiah','Malakiah','Micaiah','','','d','','utme','2011',86,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:43'),(311,'Baal did not answer his worshippers at the contest on Mount Carmel because he','was annoyed with their sacrifice','did not hear','wanted to disgrace his worshippers','was asleep.','','','b','','utme','2011',87,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:43'),(312,'The workmen who repaired the house of the LORD during Josiah’s religious reforms were not made to account for the money given them because they','did not receive the money directly','lacked accounting capabilities','bribed the Temple officials','were honest workmen.','','','a','','utme','2011',108,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:44'),(313,'During Jehoiakim’s reign, Judah was destroyed as punishment for Manasseh’s sin of','keeping Temple prostitutes in the land','defiling the vessels in the Temple','offering unacceptable sacrifice','shedding innocent blood.','','','a','','utme','2011',70,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:45'),(314,'Nehemiah responded to the opposition of the enemies of Israel by','telling the people not to say a word','reporting the issue to King Artaxerxes','inviting them to dialogue in the King’s court','asking God to return their taunt back to them.','','','d','','utme','2011',84,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:46'),(315,'Nebuchadnezzar ordered his subjects to worship the image he set up whenever they','heard his voice','saw him stand before the image','heard the sound of the horn','were told to do so.','','','c','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:47'),(316,'‘What is this that you have done!”  The people in the ship asked Jonah the question above because','he was fast asleep in the ship','they knew he was fleeing from the LORD','he lied to them about his presence in the ship','they realized that he had made attempts to commit suicide.','','','b','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:48'),(317,'What shall I do with you, O Ephraim? What shall I do with you, O Judah? Your love is like a morning cloud...” In the statement above, the love of Israel is compared to a morning cloud because it','disappears fast','withers','is cloudy','darkens the day','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:49'),(318,'According to Amos, God desires knowledge of Him rather than','fervent prayers','dependency on the Law','the multitude of prophecies','burnt offerings','','','d','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:50'),(319,'In his vision, Isaiah’s guilt was taken away and his sin forgiven after','the angel of the LORD appeared to him','his mouth was touched with a burning coal','the seraphim had spoken to him','he had agreed to serve God.','','','b','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:51'),(320,'The prophet who was ordained from the womb for God’s service was','Jeremiah','Isaiah','Ezekiel','Hosea.','','','a','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:52'),(321,'According to Jeremiah, the anger of God towards Israel would only be reduced by','His mercy','the prophet’s repentance','the prophet’s prayers','His glory.','','','a','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:53'),(322,'When Zechariah saw the angel of the Lord standing on the right side of the altar of incense, he','cried out to him','was troubled and afraid','rejoiced in the Lord','left the Temple immediately.','','','b','','utme','2011',63,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:54'),(323,'‘Follow me and leave the dead to bury their own dead’ By this statement, Jesus means that','disciples shall not attend burials','there is no life after death','following Him comes before anything else','shall leave their families in God’s care','','','c','','utme','2011',73,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:55'),(324,'The disciples became terrified when they saw Jesus walking on the sea because','they thought He would drown','they thought He was a ghost','they lacked faith in Him','there was a great storm.','','','c','','utme','2011',70,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:56'),(325,'The Jews sought to kill Jesus after He healed the man at the pool of Bethzatha because they thought that He','claimed to have authority to forgive sins','made Himself equal with God','did not agree with the law of Moses','said that He was born before Abraham.','','','c','','utme','2011',68,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:56'),(326,'In the parable of the sower, the seed that fell among the thorns symbolized the one who hears the word but','does not understand it','loses it to the enemy','does not immediately receive it','the cares of the world choke it.','','','d','','utme','2011',77,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:57'),(327,'Jesus encouraged His followers to rejoice when they were \tpersecuted because','great would be their reward in heaven','angels would come to their aid','they would not lack anything good','all their sins would be forgiven.','','','a','','utme','2011',72,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:58'),(328,'‘Blessed are you, Simon Bar-Jona ! For flesh and blood has not revealed this to you...’ As exemplified by the statement above, for believers to be able to identify with Jesus, they must','offer their lives','be led by the Spirit','keep all the commandments','vow not to deny Him.','','','b','','utme','2011',71,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:59'),(329,'Jesus drove the money changers and sellers of doves out of the Temple because','the people defiled it with dubious business','there was no need for animal sacrifice anymore','the people were disobedient to the Law','animals and birds were not allowed in it.','','','a','','utme','2011',95,'Admin','2016-11-12 12:27:47','2020-07-15 05:08:09'),(330,'The tearing of the curtain of the Temple into two at the death of Jesus signifies','the passing away of the prophets','direct access to God through Christ','that Jesus was a powerful person','that God was truly with Jesus.','','','b','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:01'),(331,'“Tell people, His disciples came by night and stole him away while we were asleep...” The intention of the speaker in the statement above was to','implicate the disciples','absolve the soldiers from all blame','deny the resurrection story','convince the authority','','','c','','utme','2011',97,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:02'),(332,'Jesus charged His followers to walk in the light while they had the light so that they may','have eternal life','become custodians of it','have the light of life','become sons of it.','','','c','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:03'),(333,'In the early Church, believer devoted themselves to the','daily distribution of food','apostles’ teaching and fellowship','breaking of bread in the Temple','performance of miracles','','','c','','utme','2011',76,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:04'),(334,'The disciple that went to preach in Samaria after the great persecution in Jerusalem was','Philip','Andrew','Peter','James.','','','a','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:05'),(335,'Saul was convened so that he might','cause confusion among the Jews','help Peter in his work','not be killed for his sins','spread the word to the Gentiles.','','','d','','utme','2011',84,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:06'),(336,'What effect did the decision of the Council of Jerusalem have on the early Church?','Members became more untied','the Church experienced freedom from persecution','The Jews became leaders of the community.','Gentiles were free to be members of the Church','','','d','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:07'),(337,'Paul in Romans stated that the righteousness of God has been manifested through','the Law','the priests','faith in Jesus','Temple sacrifices.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:08'),(338,'According to Romans, all who were baptized into Christ were also baptized into His','crucifixion','persecution','suffering','death','','','d','','utme','2011',77,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:09'),(339,'According to Paul in Philippians, humility means giving consideration to other people’s','wealth','weakness','interests','needs.','','','c','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:10'),(340,'In Corinthians, believers are taught to forgive one another in order to','keep Satan from gaining advantage','prevent the wrongdoer from losing his salvation','remove the curse from the offender','discourage the offender from committing more sin.','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:22'),(341,'In Corinthians, Paul stated that by one Spirit we were','free from bondage of sin','united into one church','committee to Christian service','baptized into one body','','','d','','utme','2011',76,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:23'),(342,'Paul commended the churches in Macedonia for giving out of their freewill to the','saints','poor','priests','sick.','','','b','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:24'),(343,'‘Pay all of  them their dues, taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honour to whom honour is due’. Paul made the statement above to the Church at','Thessalonica','Rome','Corinth','Ephesus.','','','b','','utme','2011',75,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:25'),(344,'At the second coming of Christ, those who are alive shall be','bound for life','caught up together with the Lord','separated from the dead','taken to the new Jerusalem','','','b','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:26'),(345,'According to James, treatment of brethren at fellowship should not be based on','appearance','sentiments','gender','age.','','','a','','utme','2011',67,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:27'),(346,'Peter in his epistle, charged his fellow elders to','take care of their families','be strong in their faith','have compassion on the weak','tend the flock of God.','','','d','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:28'),(347,'The land, the sea and vegetation were created on the','first day','second day','third day','fifth day.','','','c','','wassce','2008',70,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:29'),(348,'God blessed the seventh day and hallowed it because it marked the day that He','completed His work of creation','handed over the earth to Adam','saw all His created work as perfect','rested from His work of creation.','','','d','','wassce','2008',72,'Admin','2016-11-12 12:38:50','2020-07-15 03:50:53'),(349,'Which of the following was not part of the honour done to Joseph when Pharaoh made him a ruler in Egypt?','Joseph was made to address the people','The land of Goshen was given to Joseph','Joseph was dressed in garments of fine linen','A gold chain was put around Joseph’s neck.','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:31'),(350,'What was Moses’ reaction when God called him to liberate his people from Egypt?','He was afraid of being punished for his previous offence','His people would think he was too young to lead them','His people would not listen to him','His father in-law would not allow him to go.','','','c','','wassce','2008',79,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:32'),(351,'God led the Israelites in the wilderness during the day in form of','fire','light','cloud','rainbow.','','','c','','wassce','2008',64,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:33'),(352,'When Moses stayed away for too long on the mountain, the people of Israel','prayed and fasted','embarked on farming','returned to Egypt','made and worshipped idol.','','','d','','wassce','2008',70,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:34'),(353,'God provided water for the Israelites by asking Moses to strike the rock at trice wilderness of','Rephidium','sin','Massah','Paran.','','','b','','wassce','2008',62,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:35'),(354,'When the Spirit of the Lord departed from Saul','a new spirit entered into him','an evil spirit from God tormented him','he consulted an oracle','he went into hiding.','','','b','','wassce','2008',66,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:35'),(355,'When David spared the life of Saul the second time he took away his','bow and arrow','spear and jar of water','royal crown and armour','spear and iron shield.','','','b','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:36'),(356,'Solomon first applied wisdom granted to him by God at Gibeon by the','establishment of high places in Judah','utterances of proverbs and parables','marriage alliances with foreign nations','judgment between the two harlots.','','','d','','wassce','2008',76,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:37'),(357,'In his reform, King Josiah first attacked the','prostitutes that came around the temple at night','priests that made burnt offerings in the temple','Canaanite divinities - the Baal and Ashera','traders who profaned the temple.','','','c','','wassce','2008',72,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:38'),(358,'A good example of parental responsibility was demonstrated by','Asa','Jeroboam','Joel','Rehoboam.','','','a','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:39'),(359,'Gomer’s attitude towards her loving husband symbolizes','Hosea’s unfaithfulness to God','Israel’s faithfulness to God','God’s love for Israel','God’s hatred for Israel’s iniquities.','','','b','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:41'),(360,'The universal nature of God was demonstrated in the salvation of the people of','Joppa','Tarshish','Tekoa','Nineveh.','','','d','','wassce','2008',77,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:42'),(361,'Ahab was condemned for allowing Jericho to be rebuilt although that city had been','under Joshua’s curse','devastated by an earthquake','the scene of unexplained fatal accidents','the site for Canaanite human sacrifice.','','','a','','wassce','2008',82,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(362,'Amos declared that God hated solemn feasts, songs and sacrifices because the people of Israel were','unjust and unrighteous','unforgiving and unrepentant','despicable and untruthful','luxurious and arrogant.','','','a','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:44'),(363,'At Ezekiel’s call he beheld','the love of God','God’s glory','power of God','God’s mercy.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:45'),(364,'In spite of Israel’s faithlessness, Jeremiah saw a ray of hope for them if only they should','forgive one another','repent and return to God','always swear by God','show favour to strangers.','','','b','','wassce','2008',63,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(365,'Jesus came to John at River Jordan to','proclaim himself as Messiah','disclose himself to John','call some of John’s disciples','receive baptism like others.','','','d','','wassce','2008',67,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:52'),(366,'“Blessed are the peace makers for','theirs is the kingdom of God”','they shall be called sons of God”','they shall inherit the earth”','they shall be comforted”.','','','b','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:58'),(367,'According to the Mosaic law, the only authority to declare a leper healed was','Jesus Christ','the Emperor','the priest','the elders.','','','c','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:59'),(368,'Which of the following did not happen immediately after Jesus had yielded up his spirit on the cross?','The curtain of the temple was torn into two','Joseph of Arimathea removed his body for burial','The earth shook, the rocks were split','The tombs of the saints were opened.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:00'),(369,'According to Matthew, the disciples were sent out with the charge to go nowhere among the Gentiles nor enter any town of the','Jews','Samaritans','Israelites','Unbelievers.','','','b','','wassce','2008',64,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:01'),(370,'Which of the following miracles shows Jesus’ power over nature?','Walking on the sea','Healing of the leper','Healing of the woman with issue of blood','Raising of Lazarus from the dead','','','a','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:02'),(371,'The fate that would befall those who do not receive the gospel of Jesus would be','rejection by men','lack of peace in the family','condemnation by the church','condemnation by God.','','','d','','wassce','2008',70,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:03'),(372,'Which, according to Luke, were the last words of Jesus?','“Eli. Eli, lamasabach-thani”','“Father forgive them for they know not what they do”','“Truly, I say to you, today you will be with me in paradise”','“Father unto thy hands I commit my spirit”','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:04'),(373,'The first five disciples that Jesus called as recorded in the Synoptic gospels were','Peter, Andrew, James, John and Levi','Peter, Andrew, James, John and Thomas','Peter, Andrew, James. John and Zebedee','Peter, Andrew, James, John and Judas Iscariot.','','','b','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:05'),(374,'Peter’s general outlook towards Gentile converts was significantly changed by the conversion of','people of Lydda','the people of Samaria','Simon the magician','Cornelius the centurion.','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:06'),(375,'Which Jewish party was bitterly opposed to the disciples for preaching the resurrection of Jesus?','The Pharisees','The Sadducees .','The Zealots','The Sanhedrin.','','','b','','wassce','2008',64,'Admin','2016-11-12 12:38:51','2020-07-15 03:50:53'),(376,'When Peter was in prison the Church','appealed to the authorities','lived in fear','prayed ceaselessly','fought for his release.','','','c','','wassce','2008',60,'Admin','2016-11-12 12:38:51','2020-07-15 13:50:19'),(377,'The miracles of Jesus in St. John’s Gospel are referred to as signs’ of the','manifestations of Jesus as the Messiah','consuming power of God’s glory','judgment that will come upon unbelievers','second coming of Jesus.','','','a','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(378,'Believers according to Jesus in John’s gospel, become his friends, if they imbibe his teaching on','forgiveness','obedience','love','faith.','','','c','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:18'),(379,'The miracles of Jesus recorded in John’s gospel are called','works','signs','powers','wonders.','','','b','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:19'),(380,'The result of justification by faith is','divine protection','peace with God','forgiveness of sins','answered prayers.','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:20'),(381,'Which of the following is the result of Christian baptism?','Fulfilment of all righteousness','Walking in the newness of life','Ability to fast always','Yielding of one’s life to prayer.','','','b','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:21'),(382,'Sin that reigns in our mortal bodies makes us obey','one another','rules and regulations','our passions','our rulers.','','','c','','wassce','2008',67,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:22'),(383,'Paul considered himself unfit to be called an apostle because he','did not see Jesus','persecuted the church','worked hard to attain his position','was the least among the believers.','','','d','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:23'),(384,'Paul says that only the heathen who are led astray by dumb idols could say','“Jesus is Lord!”','“Praise ye the Lord!”','“Hail the messiah!”','“Jesus be cursed!”','','','d','','wassce','2008',69,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:24'),(385,'In the Epistle to Galatians, Christians are children of God through','faith in Christ','keeping of the law','helping the needy','baptism and confirmation','','','a','','wassce','2008',59,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:25'),(386,'Christ demonstrated humility by','riding on an ass to Jerusalem','allowing John to baptize him','taking the form of a servant','eating with sinners','','','c','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:26'),(387,'Peter admonished Christians to be sober and watchful in order to a void','temptation','God’s wrath','the devourer','damnation','','','a','','wassce','2008',74,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:27'),(388,'New life in Christ means','paying your tithe regularly','helping the poor and the needy','being dead to sin','getting baptized.','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:28'),(389,'In Romans, Paul taught that where there is no law, there is no','transgression','peace','reward','punishment','','','a','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:29'),(390,'The purpose of grace is to','justify the law','cancel the law','fight the law','establish the law','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:30'),(391,'In Romans. Paul stressed that the righteousness of God is','faith in the law for all who believe','works of the law for all who believe','fervent prayers by all believers','faith in Jesus Christ for all who believe','','','d','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:31'),(392,'The concept of  forgiveness does not include','reconciliation','restoration','peace','wealth','','','d','','wassce','2008',49,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:32'),(393,'Paul said in Galatians that, before faith came, we were confined under','grace','the law','righteousness','love','','','b','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:33'),(394,'In his letter to Philemon Paul did not ask him to','grant freedom to his slave Onesimus','allow Onesimus become a servant of God','forgive Onesimus for his earlier misbehaviour','prepare a feast for him.','','','a','','wassce','2008',65,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:34'),(395,'Peter enjoined humility because the humble shall','not be tempted','be blessed','receive God’s grace','have long life.','','','b','','wassce','2008',69,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:35'),(396,'Paul, unhappy with high incidence of idleness among the Thessalonians, commanded them to','assist those brothers who live in Idleness','exhort the busy-bodies to leave the church','ensure that any one who does not work must not eat','regard the lazy ones as enemies','','','c','','wassce','2008',66,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:36'),(397,'The new covenant between God and the Israelites is centered on','religious doctrines','intensive teaching','collective responsibility','individual responsibility.','','','a','','utme','2013',76,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:37'),(398,'The ark that God commanded Noah to build was made of','acacia wood','gopher wood','cedar wood','cypress wood','','','c','','utme','2013',68,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:38'),(399,'During Moses leadership in Israel, he exhibited most importantly, the talent of a','mediator','warrior','seer','preacher.','','','b','','utme','2013',64,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:39'),(400,'Moses ran away from Egypt after killing an Egyptian because he felt that he might be','endangering other Israelites by his actions','killed by the Egyptian mob','imprisoned by the Egyptian security officers','killed by Pharaoh of Egypt.','','','d','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:40'),(401,'How did God guide Eleazar in choosing a wife for lsaac?','He caused Rebekah to give him free accommodation','He made Rebekah’s parents willing to release her','He caused His angel to go ahead of him','He revealed to Rebekah before Eleazar’s arrival','','','d','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:40'),(402,'David’s immediate reaction to the news that the hearts of the Israelites have gone after Absalom was to','Weep for Judah','flee to the wilderness','mobilize his army','plead with Absalom','','','c','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:41'),(403,'David’s inaction at Ammon’s incest with Tamar showed his','lack of control over his children','excessive love for Ammon','ability to forgive as a leader','wisdom and strength of character','','','a','','utme','2013',81,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:42'),(404,'The young man of Egypt took David to the band of the Amalekites because','he was afraid for his life','he sought revenge against his former master','David was kind to him','the spirit of God was working through him.','','','d','','utme','2013',67,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:43'),(405,'Because David sought God’s will to pursue the Amalekites \twho had invaded Ziklag, he was rewarded with victory and','many new territories','spoils','many prisoners of war','favour','','','b','','utme','2013',75,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:44'),(406,'‘...why then have you not kept watch over your lord the king?...” The question above by David was addressed to','Amasa','Joab','Abishai','Abner.','','','c','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:45'),(407,'Solomon’s wisdom surpassed the wisdom of all the people of the East and all wisdom of Egypt because he','prayed and fasted daily','employed the service of seers','judged difficult cases','got his wisdom from God.','','','d','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-15 03:50:53'),(408,'Saul relied on a medium because God did not answer him through','dreams, visions and prophets','inspiration, tambourines and prophets','dreams, urim and prophets','lyre, urim and prophets.','','','c','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:47'),(409,'When Naboth refused to exchange his vineyard with King Ahab, Ahab reacted by','taking to prayers and fasting','going to his house vexed and sullen','ordering the killing of Naboth','forcefully taking it from him.','','','d','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:48'),(410,'The sins of Israel during the reign of Ahab consisted of','worship of the king','trampling upon the poor','worship of idols','desecrating the Temple','','','d','','utme','2013',66,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:49'),(411,'The book of the law was found in the house of the LORD during the reign of king','Josiah','Ahab','Omri','Hezekiah.','','','c','','utme','2013',84,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:50'),(412,'King Josiah was killed by Pharaoh Neco in a battle at','Syria','Meggiddo','Megiddo','Egypt.','','','c','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:51'),(413,'The major reason God allowed the Babylonian attack on the city of Jerusalem was to','demonstrate the ability of God to deliver His people from captivity','set a trap for the Babylonians and destroy them','restore the people of Judah and their leaders to the true worship of God','punish the people of Judah and their leaders for their sins.','','','c','','utme','2013',82,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:52'),(414,'When the three Hebrew men refused to worship the King’s image, he commanded that they be','thrown into a furnace','stoned','beheaded','thrown into the lion’s den.','','','c','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:53'),(415,'Jonah’s explanation to the LORD for resisting His first call teaches us that God is','repentant of evil','not ready to act fast','quick to anger','not sincere in His call.','','','c','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-15 13:50:19'),(416,'Before his call, Amos was a','herdsman','seer','farmer','prophet.','','','a','','utme','2013',68,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:55'),(417,'Amos’ prophecies which were considered as a conspiracy against the northern kingdom were reported to the king by','Micaiah','Amaziah','Hilkiah','Micah.','','','a','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:56'),(418,'How did God help Jeremiah overcome his inability to speak as prophet?','He put out His hands and touched his mouth.','He sent the Seraphim to speak to him.','He gave him a cake of honey to eat.','He touched his mouth with a burning coal.','','','d','','utme','2013',70,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:57'),(419,'Prophet Ezekiel was set upon his feet to hear the LORD speak when','an angel of the LORD lifted him','a voice from heaven commanded him to do so','the Spirit entered into him','He was made to touch the ephod','','','d','','utme','2013',86,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:03'),(420,'According to Jeremiah, the people of Israel were in exile because of their','impatience and immorality','rebellion against Nebuchadnezzar','maltreatment of the poor','unfaithfulness and faithlessness.','','','b','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:05'),(421,'‘‘... and many will rejoice at his birth; for he will be great before the Lord...” In the statement above, the angel made this pronouncement because of','Elizabeth’s disbelief because of her bareness','Mary’s holy nature','Zachariah’s fervent prayers','Joseph’s hesitation to marry Mary.','','','a','','utme','2013',75,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:06'),(422,'One quality of a good disciple that was exhibited by the first followers of Jesus was','faith','piousness','diligence','resourcefulness.','','','c','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:07'),(423,'“Lord, if you will, you can make me clean.” The statement above was made by the','leper','paralytic','centurion servant','epileptic boy.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:08'),(424,'The disciples of Jesus could not heal the boy with epilepsy because they','did not fast','had little faith','were powerless','did not pray.','','','a','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:08'),(425,'The seeds that fell among the thorns in the parable of the sower refer to people that heard the word of God but','the evil one snatched it','had no faith to nurture it','the criticism of others quenched it','the cares of the words choked it.','','','d','','utme','2013',83,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:09'),(426,'The promise to those who are persecuted for righteousness sake is that they will','inherit the earth','inherit the kingdom of heaven','see God','be called sons of God.','','','b','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:10'),(427,'According to Peter during the great confession, people believed that Jesus was','the Messiah','a priest','the Son of God','one of the prophets.','','','c','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-07-15 09:16:12'),(428,'‘‘... Behold, your king is coming to you, humble, and mounted on an ass...,” The prophecy in the statement above was fulfilled during Jesus','birth in a manger','transfiguration','triumphal entry','baptism by John','','','d','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:12'),(429,'After His arrest, Jesus was taken to','Pontiphas','Agrippa','Caiaphas','Pilate','','','a','','utme','2013',70,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:13'),(430,'According to Mark, the young man that the women saw in Jesus’ tomb told them to go with the disciples and wait for Him in','Bethlehem','Jerusalem','Bethany','Galilee','','','a','','utme','2013',68,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:14'),(431,'“He was not the light but was sent to bear witness to the light.” The statement above refers to','Simeon','Jesus','John the Baptist','Peter Barjona','','','b','','utme','2013',71,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:15'),(432,'The appointment of deacons became necessary because of the complaint by the','Gentile converts','Hellenists','Pharisees','Sadducees','','','d','','utme','2013',69,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:16'),(433,'According to Paul, before his conversion, he persecuted the church violently to','make it desirable to the Gentiles','purge it','destroy it','have it conform to the Law.','','','d','','utme','2013',75,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:17'),(434,'“Lord, I have heard from many about this man, how much evil he has done to thy saints at Jerusalem...” Ananias’ response above to God’s request for him to meet Saul shows that he','felt that Saul should not be forgiven','felt that Saul should be punished','was not interested in meeting Saul','was afraid to meet Saul.','','','a','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-07-15 03:50:53'),(435,'“It is necessary to circumcise them, and to charge them to keep the law of Moses.” In response to the Pharisees’ statement above, Peter rebuked them, by saying that God has','made circumcision for only those in leadership','chosen the Israelites among other people','cleansed the Gentiles’ heart by faith','put the yoke upon the Gentiles’ necks.','','','a','','utme','2013',80,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:19'),(436,'According to Galatians, judgment is without mercy to one who has shown no mercy, yet mercy triumphs over','tribulation','the law','judgment','punishment.','','','a','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:20'),(437,'According to Colossians, the Lord does not wish that any should perish, but that all should','rejoice','be saved','be humble','repent','','','b','','utme','2013',86,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:21'),(438,'According to Peter, when Christians humble themselves, God will','protect them','direct their ways','grant them eternal life','exalt them.','','','d','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:22'),(439,'According to Paul in his letter to Philemon, forgiveness should not be by compulsion but by','justification','faith','free will','His grace.','','','b','','utme','2013',78,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:23'),(440,'In Corinthians, Paul said that one can only say Jesus is Lord by','denouncing the law','faith','grace','the Holy Spirit.','','','b','','utme','2013',81,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:24'),(441,'When Christians give freely, God will supply','only for those that give','their needs according to His riches in glory','their needs according to the measure they give','their needs day by day.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:25'),(442,'Paul in Timothy urged believers to make supplications, prayers, intercession and thanksgivings for all those who','are in authority','have accepted Christ','have wronged them','are the need','','','c','','utme','2013',78,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:26'),(443,'According to Thessalonians, the second coming of the Lord will be','with the blowing of a trumpet','after scoffers have come','when the elements are dissolved','like a thief in the night.','','','b','','utme','2013',61,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:27'),(444,'According to James, when we meet various trails in life, we should','bless God’s name','call upon the name of the Lord','count it all joy','rejoice because the Lord is good.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:28'),(445,'“As each has received a gift, employ it for one another, as good stewards of God’s varied grace...” In the statement above, Peter teaches believers in virtue of','hospitality','giving','communion','fellowship.','','','a','','utme','2013',66,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:29'),(446,'What in the creation account, gave man an edge over every other creature?','Other creatures were made for man','Man alone was created in the Image of God','Man had the rare privilege to dwell in Eden','Satan acknowledged his privileged position','','','b','','wassce','2009',78,'Admin','2016-11-12 13:02:28','2020-07-14 14:17:30'),(447,'At Shechem, God appeared to Abram and told him that','he should continue on his journey southward.','he should leave his country and Kindred.','the land would be given to his descendants.','in the land he should build an altar.','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:29','2020-07-14 14:17:31'),(448,'In their dealings with God, Abraham and Sarah learnt the \tfollowing lessons except that God is','able to bless the righteous.','faithful to His promise','all powerful-nothing is too hard for Him.','not in a hurry to carry out His promises.','','','c','','wassce','2009',74,'Admin','2016-11-12 13:02:29','2020-07-14 14:17:32'),(449,'Pharaoh’s horsemen and his army overtook the fleeing Hebrews encamped by the sea at','Migdol.','Etham.','Phiahiroth.','Meriba.','','','c','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:33'),(450,'The episode of David and Bathsheba, Uriah’s wife was in \tviolation of God’s','sixth commandment.','seventh commandment,','eight commandment.','ninth commandment.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-15 13:50:19'),(451,'When the people of Israel received the encouraging report \tgiven by two of the twelve spies, they decided to','stone Moses for taking them out of Egypt.','choose Caleb as their leader and go back to Egypt.','stone the two spies who gave the report.','raise an army to fight the Canaanites.','','','d','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:35'),(452,'Which of the following tribes accompanied Deborah and Barak to the war against Jabin and Sisera?','Naphtali and Zebulum','Issachar and Reuben','Ephraim and Dan','Judah and Benjamin','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:36'),(453,'On matters of parental responsibility, Samuel could not be commended because he','made his children judges instead of priests.','wanted his children to succeed him.','did nothing to stop his children’s immoral behaviours.','did not care what happened to Israel after his death.','','','c','','wassce','2009',81,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:37'),(454,'Eli, the priest in Shiloh, was condemned because he','allowed his children to deprive God of His share of sacrifice.','allowed the Ark of God to be taken to the battle field','did not take God’s message through Samuel seriously.','officiated at the temple without the assistance of the prophet.','','','c','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:38'),(455,'David’s first Contact with Saul was because he was','skillful in playing.','victorious over Goliath.','a man of valour.','a shepherd boy.','','','a','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:38'),(456,'David showed Nathan the prophet that he had repented of his sin by','refusing to marry Uriah’s wife.','confessing that he had sinned.','offering to compensate Uriah’s family','making sacrifice to please God.','','','b','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:39'),(457,'Elijah was a prophet during the reign of','Gideon.','David.','Ahab.','Rehoboam.','','','c','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:40'),(458,'When God ordered famine on Israel, Elijah was fed by the ravens at','Brook Cherith.','River Jordan.','River Kishon','Mount Carmel.','','','a','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:41'),(459,'“The Lord forbid that I should give you the inheritance of my fathers”. The inheritance referred to here is','birth right.','the world.','the kingship.','a vineyard.','','','d','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:42'),(460,'The king of Judah who suffered in the hands of Nebuchadnezzar was','Jehoachin.','Manasseh.','Josiah.','Zedekiah.','','','d','','wassce','2009',79,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:43'),(461,'The punishment of Israel according to the vision of Jeremiah includes all the following except','occupation of the land by foreigners.','restoration of their kings and priests.','destruction of their flocks and herds.','consumption of their harvest by their enemies.','','','a','','wassce','2009',89,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:44'),(462,'Complete this statement “Holy, Holy, Holy is the Lord of Hosts,','the Seraphim’s bow to His glory”.','the whole earth will sing His glory”.','the whole earth is full of His glory”.','His creatures will rise to praise His Holy name”.','','','c','','wassce','2009',57,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:45'),(463,'When Isaiah saw the Lord in His holiness and glory, he exclaimed','“Blessed is me for 1 am truly holy”.','“Woe is me! For I am lost”','“Blessed be the name of the Lord”.','“I am finished, for I have seen a holy God”.','','','b','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-07-15 13:50:19'),(464,'Jeremiah said the people of Judah were in a state of mourning because,','they sinned against God.','their vessels were empty','their farms were destroyed.','there was drought in the land.','','','a','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:47'),(465,'The king planned to set Daniel over the whole kingdom because,','he was the most educated of all.','an excellent spirit was in him.','he wanted to favour a foreigner.','Daniel brought information to the king.','','','b','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-15 09:16:12'),(466,'God spoke through Amos that He would punish Israel for the following sins except that they','sold the righteous for silver.','sold the needy for a pair of shoes.','trampled the head of the poor into the dust.','pursued their brothers with the swords.','','','d','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:49'),(467,'The first batch of Jewish exiles to rebuild the temple was under the leadership of','Joshua.','Hanani.','Sheshbazzar.','Zerubabel.','','','d','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:50'),(468,'Which two tribes in Israel led in the rebuilding of the temple after the exile?','Judah and Benjamin','Naphtali and Joseph','Manasseh and Reuben','Judah and Ephraim','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:51'),(469,'After his baptism Jesus began to','proclaim the kingdom of God.','baptize others.','confront religious leaders.','teach in parables.','','','a','','wassce','2009',78,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:52'),(470,'The devout man in Jerusalem whom the Lord promised would see Christ before his death was named','Zechariah.','Joseph.','Stephen','Simeon.','','','d','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:53'),(471,'Jesus ordered the seventy disciples not to salute any one because','their mission required urgency.','it is not part of their mission to salute people.','they may forget their mission.','salutations to strangers defile the Jews.','','','a','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:54'),(472,'Jesus teaches, “Let your light so shine before men...” By light Jesus refers to,','the Christian character and virtues in us.','the bright lights at the altar in the church.','the light that shows the right way.','our knowledge of the scripture.','','','a','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:55'),(473,'“And if anyone will not receive you or listen to your words, shake off the dust from your feet as you leave that house.” This is a sign of','forgiveness','rebuke','acceptance','condemnation.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:56'),(474,'“Foxes have holes and birds of the air have nets; but the son of man has nowhere to lay His head”. By this statement, Jesus meant that His disciples','would not grow rich.','would not enjoy good houses.','had a lot of task ahead.','had a lot of enemies.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:57'),(475,'The treasures which Jesus wants us to lay in heaven include','generosity and kindness.','love and mercy.','works of righteousness','gold and silver.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:58'),(476,'“No one can serve two masters...” This means that one should not','be idolatrous.','belong to two religions.','worship money.','bean unbeliever.','','','a','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:59'),(477,'Whoever drinks the water Jesus gives will never thirst? What is this water?','The spirit of God.','Holy and anointed water.','The word of God.','Law of God.','','','a','','wassce','2009',57,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:00'),(478,'Jesus said “I am the bread of life; he who comes to me shall not hunger...” ‘Bread of life’ in this context means the','body of Jesus Christ.','manna given to the Israelites.','holy bread of life.','spiritual food through Jesus.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:01'),(479,'John’s summary of God’s love for the world is that He','sent his son to judge the world righteously.','created man in his own image with authority.','made light that the world might walk in it.','gave his only son to save all believers.','','','d','','wassce','2009',52,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:02'),(480,'According to John’s Gospel, Lazarus was from','Bethany','Galilee.','Jerusalem.','Bethsaida.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:03'),(481,'Jesus said to Martha, “...and whoever live and believes in me shall never die...” Jesus talks about','physical death.','spiritual death.','emotional death.','natural death.','','','b','','wassce','2009',62,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:04'),(482,'The meeting of the Christian Council of Jerusalem was chaired by','Peter.','Paul.','James.','John.','','','a','','wassce','2009',76,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:04'),(483,'Paul wished to retain Onesimus with him but did not do so because','Onesimus was unwilling to stay with him.','he was afraid of Philemon’s reaction.','he did not like such a favour to be imposed on Philemon.','Onesimus would soon be released from jail.','','','c','','wassce','2009',64,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:05'),(484,'Paul and his associates gave the Thessalonian believers an \timportant example to imitate. This example was to','be ready to help the poor always','toil, labour and work to earn a living','depend on foreign aids for sustenance.','suffer imprisonment without complaint.','','','b','','wassce','2009',54,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:06'),(485,'Peter urged all Christians to endure sufferings in faith conscious of the fact that','Jesus, himself also resisted suffering','the devil could lure them from faith with suffering.','only the physical body is affected.','suffering is temporary and leads to eternal glory.','','','d','','wassce','2009',67,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:07'),(486,'Paul’s teaching in Colossians on love, respect and obedience concerns','Christian giving.','family relationship.','master servant relationship.','Christian relations with their enemies.','','','b','','wassce','2009',75,'Admin','2016-11-12 13:02:31','2020-07-15 03:50:53'),(487,'According to Peter, God set up the state for the purpose of','silencing the ignorance of foolish men.','collecting appropriate taxes from its citizens','carrying out appropriate sanctions for the guilty','ensuring the protection of its citizens','','','d','','wassce','2009',56,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:09'),(488,'In Paul’s epistle to the Thessalonians, any Christian living \tin idleness should be','thrown out of the Church.','looked at as an enemy.','sympathized with','avoided by the others.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:10'),(489,'The two major obstacles against Abraham’s hope for a son were','impotency and old age','faithlessness and unbelief.','old age and barrenness.','sin and doubt.','','','b','','wassce','2009',65,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:11'),(490,'The theme justification by faith can only be achieved through','sacrifices to Jesus.','resurrection of Jesus.','redemptive power of Jesus.','response of angels to Jesus.','','','c','','wassce','2009',71,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:12'),(491,'According to Paul in Romans, if it is the adherents of the law who are to be the heirs of Abraham then faith in Jesus is','null and void.','not attainable','.     \t\t\t\\nbeyond the reach of Gentiles','transgression of the law.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:13'),(492,'“Your blood be upon your heads! I am innocent. From now on I will go to the Gentiles.” This was Paul’s utterance at','Antioch.','Corinth.','Lystra.','Ephesus.','','','d','','wassce','2009',70,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:14'),(493,'The preaching of the resurrection of Jesus by his disciples \twas opposed by the','Jews.','Elders.','Sadducees.','Pharisees.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:15'),(494,'The first missionary journey was started by Paul and','Judas','.      \\nBarabbas.','Timothy.','Barnabas.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:16'),(495,'During the election to replace Judas among the twelve, Peter quoted from the book of','Joel.','Psalms.','Isaiah.','Ezekiel.','','','b','','wassce','2009',75,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:17'),(496,'What was Herod’s reaction when he heard the news about Jesus’ birth?','He sent gifts','He was excited','He was troubled','He became calm','','','c','','utme','2015',73,'Admin','2016-11-12 13:28:12','2020-07-14 14:18:18'),(497,'“....... Behold, I will bring evil upon you; I will utterly sweep you away .....” Elijah pronounced destruction on Ahab with the statement above for his sin of','the killing of God’s prophets','worship of other gods','going to war against Ramoth-gilead','greed, covetousness and murder','','','a','','utme','2015',62,'Admin','2016-11-12 13:28:14','2020-07-14 14:18:19'),(498,'The ruler of the synagogue whose child Jesus raised to life was','Zebedee','a widow','Jairus','a centurion','','','c','','utme','2015',67,'Admin','2016-11-12 13:28:14','2020-07-14 02:17:50'),(499,'According to Amos, true religion entails','engaging in sacrifices and burnt offerings','being just and righteous','fasting and praying always','engaging in holy feasts and assemblies','','','b','','utme','2015',70,'Admin','2016-11-12 13:28:14','2020-07-14 12:27:50'),(500,'Paul in Romans said that the righteousness of God has been manifested through faith in Jesus Christ for','the exaltation of the authority','the cleansing of the sinners','the dead in Christ','all those who believe','','','d','','utme','2015',67,'Admin','2016-11-12 13:28:14','2020-07-14 12:27:52'),(501,'“I tell you, if these were silent, the very stones would cry out.” Jesus’ statement above was made when','He was rebuked by the Pharisees for eating with sinners','the scribes and the chief priest came to arrest Him','He consoled a woman on His way to the cross','the Pharisees asked Him to rebuke His disciples','','','d','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:29'),(502,'Before Moses brought the Israelites to meet God on Mount Sinai, he charged them to','touch the mountain at the sight of smoke','ensure they eat very well','wash the garments and be consecrated','mate with their wives for three days','','','c','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:30'),(503,'In His teaching about Himself, Jesus said the hireling is not a good shepherd because he','leaves the sheep and flees at the sight of danger','owns the sheep but does not care for them','cares for the sheep but does not discipline them','is the gate-keeper who shuts the sheep out','','','a','','utme','2015',71,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:31'),(504,'God displayed His supremacy when Ahab was king during \tthe','incidence of Naboth’s vineyard','war with Ramoth-gilead','inciting of Jehoshaphat against him','contest of Mount Carmel','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:32'),(505,'In his teaching on effective prayer, James said that the prayer of faith would','influence the authority','heal and cleanse sins','ensure salvation for the sick','enhance commitment to church','','','b','','utme','2015',57,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:32'),(506,'Paul in Thessalonians declared that at the second coming \tof the Lord, those who are alive will not precede those that are','ignorant','condemned','asleep','faithful','','','c','','utme','2015',52,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:33'),(507,'When Ezekiel ate the scroll that was given to him his call. it signified that','God would always go before him','his sins were forgiven','he would never be hungry','he was filled with God’s word','','','d','','utme','2015',53,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:35'),(508,'“ ..... I will surely tear the kingdom from you and will give it to your servant .....” An unwise decision of Solomon that resulted in God making the pronouncement above was his','dependence on other nations for supplies','policy of forced labour','neglect of God for other gods','heavy taxation on the people','','','c','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:35'),(509,'God fed the Israelites with Manna at the wilderness of','Zin','Elim','Sinai','Sin','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:36'),(510,'“The very stone which the builders rejected has become the head of the corner” The statement above in Peter was directed to those who','did not believe in Jesus’ preciousness','built the Temple of Jerusalem','don’t offer spiritual sacrifice','are hard hearted against Jesus Christ','','','d','','utme','2015',66,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:37'),(511,'A good example of parental responsibility was demonstrated by','Samuel','Eli','Asa','David','','','c','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:38'),(512,'Why did Pilate send Jesus to Herod during the trial?','Jesus, as a Galilean was under Herod’s jurisdiction','Pilate had no power to pass the death sentence','Herod’s court was the last point before crucifixion','Herod had longed to see Jesus perform miracles','','','a','','utme','2015',80,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:39'),(513,'Who was the king that granted Nehemiah permission to go and rebuild Jerusalem?','Darius','Nebuchadnezzar','Artaxerxes','Cyrus','','','c','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:40'),(514,'“Shall l pursue after this band? Shall l overtake them?” David’s dependence on God for direction is depicted in the statement above when','Absalom had revolted against him','Saul was within his grasp','the Amalekites had raided Ziklag','he was to go against Goliath','','','c','','utme','2015',63,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:41'),(515,'A parable that teaches a lesson on the demands of the kingdom is that of the','lost coin','Weeds','Samaritan','prodigal son','','','c','','utme','2015',61,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:42'),(516,'Paul admonished the Romans to live a new life in Christ by yielding themselves to God as men who','have been brought from death to life','will meet Christ in God’s Kingdom','will receive judgment on the last day','have suffered for the sake of the gospel','','','a','','utme','2015',54,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:43'),(517,'An action that demonstrated Solomon’s wisdom was his','judgment of the prostitute’s child','reliance on a medium','alliance with other nations','taxation policy for his building works','','','a','','utme','2015',75,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:44'),(518,'According to Corinthians, Paul while defending himself advised believers to boast only of the things that','exhibit their authority','show their weakness','display their exaltation','depict their righteousness','','','d','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-07-15 14:05:27'),(519,'The most important aspect of the religious reforms of King Josiah was the','renewal of the covenant','cleaning of the Temple','discovery of the tomb of the man of God','discovery of the book of the law','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:46'),(520,'Cornelius who was converted and baptized by Peter was a','member of the Sanhedrin','centurion','Gentile who persecuted the church','scribe','','','b','','utme','2015',77,'Admin','2016-11-12 13:28:15','2020-07-15 03:50:53'),(521,'David was successful as a leader in Israel because','he submitted to God’s guidance','of his training as a solider','of the love of his people','of his life as a shepherd','','','a','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:55'),(522,'The action that portrayed Moses as a leader of the Israelites was his','request to Pharaoh to spare Israelite’s sons','disobedience to Pharaoh and escape','killing of an Egyptian who fought with a Hebrew','protection of the daughter of Jethro','','','c','','utme','2015',62,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:56'),(523,'“How is it that you have agreed together to tempt the spirit of the Lord ....” The statement above was made in reference to the greed of','Gehazi and Naaman','Ahab and Jezebel','Judas and scribes','Ananias and Sapphira','','','d','','utme','2015',58,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:57'),(524,'The king who captured and drove the Israelites into exile during the reign of Jehoiachin was','Nebuchadnezzar','Darius','Cyrus','Artaxerxes','','','a','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:58'),(525,'Nebuchadnezzar decreed that all his subjects should worship the image he had set up whenever they','desired something from him','saw him stand before it','looked upon it','heard the sound of music','','','d','','utme','2015',54,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:59'),(526,'“The Son of man must suffer many things, and be rejected by the elders .....” Jesus made the statement above after He','cleansed the Temple','demanded to know who people thought He was','taught on the Mount','was asked by Pilate if He was the King of the Jews','','','b','','utme','2015',65,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:59'),(527,'How old was Abram when God appeared to him the second time?','105 years','75 years','99 years','85 years','','','c','','utme','2015',69,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:00'),(528,'“Leaves the dead to bury their own dead ....” Jesus’ statement above to the man He asked to follow Him was indicative of','His power over death','His desire to save the man','the futility of life','the cost of discipleship','','','d','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:01'),(529,'Paul in Romans advised believers to respect those in authority to avoid God’s wrath and also for the sake of','conscience','Christ','faith','others','','','a','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:02'),(530,'“What is this conversation which you are holding with each other ...” Jesus made the statement above to','Cleopas and the other disciple when','they were on their way to Emmaus','He was about to be arrested','they were gathered in a room after His resurrection','','','a','','utme','2015',70,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:03'),(531,'A key requirement for healing as exemplified by the disciple’s inability to heal the epileptic boy is','righteousness','power','humility','Faith','','','b','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:04'),(532,'According to Paul in Philippians, Jesus demonstrated humility when He','had pity on the possessed man','likened Himself to God','forgave those who crucified Him','took the form of man','','','d','','utme','2015',78,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:05'),(533,'“Holy, holy, holy is the Lord of host ....” The statement above was made in reference to the call of','Ezekiel','Jeremiah','Amos','Isaiah','','','d','','utme','2015',61,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:06'),(534,'For obeying His word, God rewarded Shiphrah and Puah with','families','positions','servants','wealth','','','a','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:07'),(535,'In his teaching on Spiritual gifts in Corinthians, Paul said that all gifts are inspired by','the same Spirit','prayer','the individual’s ability','grace','','','a','','utme','2015',73,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:08'),(536,'When David’s son Absalom rebelled against him, David was forced to','flee from Jerusalem','abdicate the throne','divide his kingdom','surrender to him','','','a','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:09'),(537,'“Go and stand in the temple and speak to the people all the words of this life.” The angel’s statement above to Peter was after','the murmurings of the Hellenists','his release from prison','his vision of eating unclean meat','he received the Holy Spirit','','','b','','utme','2015',53,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:10'),(538,'In His sermon on the Mount, Jesus discouraged His listeners from laying up treasures on earth because','it would create enmity','they would not be respected','thieves would steal them','the earth would pass away','','','d','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:11'),(539,'Paul returned Philemon’s slave back to him, to ensure that','Philemon forgave and accepted the slave','the slave can complete his service time','he would be welcome when he left prison','he could boast of Philemon’s obedience','','','b','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:12'),(540,'One of the prophets that prophesied hope for Israel in spite of God’s promise of punishment was','Amos','Jeremiah','Obadiah','Hosea','','','b','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:13'),(541,'The church that was commended for giving even when in extreme poverty was in','Galatia','Corinth','Macedonia','Thessalonica','','','d','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:19'),(542,'“........ I am the Lord, and there is no other, besides me \tthere is no God....” God’s statement above through Isaiah depicts','assurance to Isaiah of His existence','Israel’s acceptance of His Supremacy','His divine nature','His sovereignty','','','c','','utme','2015',72,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:21'),(543,'Believers today are partakers of the New Covenant through','partaking in baptism by immersion','the gift of the spirit','adherence to all the sacraments','obedience to church leadership','','','b','','utme','2015',55,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:22'),(544,'God’s message through Jonah’s was to the people of','Joppa','Tarshish','Samaira','Nineveh','','','d','','utme','2015',64,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:23'),(545,'Amos is often referred to as a prophet of','doom','love','hope','justice','','','a','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:24'),(546,'On the fourth day, God created the sun, moon and stars for the following purposes except','to separate the day from the night.','for signs of seasons, days and years.','to give light upon the earth.','to dry up flood from the face of the earth.','','','a','','wassce','2010',77,'Admin','2016-11-12 13:36:18','2020-07-14 14:19:25'),(547,'Which of the following rivers flowed out of Eden to water \tits garden? River','Abana','Pharpar','Pishon','Nile','','','c','','wassce','2010',69,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:26'),(548,'The wife of Moses was called','Rebecca.','Rachel.','Zipporah.','Deborah','','','c','','wassce','2010',71,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:27'),(549,'When Joseph was sent to his brothers, he met them pasturing at','Hebron.','Bethel.','Beersheba','Dothan','','','d','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:28'),(550,'How old was Joshua before he died?','95 years','98 years','110 years','111 years','','','c','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:29'),(551,'Why was Saul asked to destroy the Amalekites?','They were worshipping false gods','They opposed the Israelites when they left Egypt','They did not assist the Israelites','God did not like the Amalekites','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:31'),(552,'The first king of Israel lost his throne because he','was a weak king.','knew little about governance.','lost the support of Yahweh.','was irresponsible.','','','d','','wassce','2010',74,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:32'),(553,'During the Ammonite war Uriah disobeyed King David by refusing to go to his house to sleep because','it was wrong to go home drunk.','his wife would regard him as a coward.','it would be unpatriotic to break military vow.','he suspected that the king had lost interest in the battle.','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:34'),(554,'When Abner wanted to transfer his allegiance to David, the latter gave him the condition to','openly submit to Joab.','convince all Israel to come over to David.','restore his wife Michal to him.','slay Ishbosheth. Saul’s successor.','','','c','','wassce','2010',55,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:35'),(555,'God said to Solomon in a dream, <em>“Ask what I shall give you”</em>. What did Solomon ask for?','Power and authority','Great wealth and riches','Stable and long term in office','An understanding mind','','','d','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:36'),(556,'Solomon showed lack of wisdom when he','put up temples for the gods of his wives','married many wives with children','invited the Queen of Sheba','gave out judgment to two harlots.','','','a','','wassce','2010',64,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:37'),(557,'Solomon told Hiram, King of Tyre that he had decided to build a temple for the Lord because','the Lord had given him peace and all good things.','his father, David, never intended to build one.','he wanted to force Hiram to come to his aid.','Hiram had entered into a marriage alliance with his father.','','','a','','wassce','2010',63,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:38'),(558,'Elijah destroyed the prophets of Baal','to oppose Baal worship.','as an act of revenge.','as an act of sacrifice.','to shame Jezebel.','','','a','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:39'),(559,'Who was the king who reintroduced the Passover feast in Israel?','Jeroboam','Asa','Josiah','Rehoboam','','','c','','wassce','2010',76,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:40'),(560,'Who was the prophet responsible for the re-building of the Temple during the exile?','Ezra','Isaiah','Jeremiah','Ezekiel','','','a','','wassce','2010',70,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:41'),(561,'Which of the following prophets taught that Yahweh was merciful?','Isaiah','Hosea','Amos','Ezekiel','','','b','','wassce','2010',71,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:42'),(562,'Daniel was delivered from the lion’s den because','of his faith in God’s power.','of the king’s prayers.','he was able to charm the lions.','the lions were kind to him.','','','a','','wassce','2010',74,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:43'),(563,'The person who discovered the book of law in the sanctuary during the reign of Josiah was','Zedekiah','Huldah.','Hilkiah','Jeremiah.','','','c','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:44'),(564,'According to Amos’ prophecy, the “Day of the Lord” to the Israelites would be a day of','victory over enemies','happiness.','doom.','national triumph.','','','c','','wassce','2010',78,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:45'),(565,'Isaiah said that when Israel spread forth their hands, God would hide his face because they were','making many prayers','offering vain sacrifices.','worshipping God with their hearts.','observing elaborate feasts.','','','b','','wassce','2010',57,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:48'),(566,'From Luke’s account of the baptism of Jesus, which of the following happened before the voice was heard?','John was reluctant to baptize Him.','John called Jesus the Lamb of God.','Jesus arrived with Peter, James and John','The Holy Spirit descended upon Jesus.','','','d','','wassce','2010',84,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:49'),(567,'Before their first encounter with Jesus, Peter and Andrew were','preachers.','tax collectors.','fishermen.','tent makers.','','','c','','wassce','2010',63,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:50'),(568,'By the action of the Good Samaritan, Christians are encouraged to','go out to the streets and look for someone to help.','always travel with enough money in case the need arises to help.','show compassion and render help to the needy.','avoid travelling on lonely roads where armed robbers could attack.','','','c','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:51'),(569,'The <em>lost sheep</em> and the <em>lost coin</em> share the following except that','both of them are lost and need to be found','it is their owners’ responsibility to look for them.','the coin, may not know that it is lost.','their owners rejoice when they are found.','','','a','','wassce','2010',73,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:52'),(570,'The parable of the rich man and Lazarus indicates that','poverty is a mark of righteousness.','death is a leveler for rich and poor','only poor people will die physically.','all rich men are going to hell fire.','','','b','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:53'),(571,'In one of the resurrection appearances Jesus asked his disciples, whether they had anything to eat as he','was hungry after three days in the grave without food.','suspected that the disciples stock may have finished','wanted to prove to them that he was not a ghost.','wanted to replenish the food stuff.','','','b','','wassce','2010',59,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:54'),(572,'By introducing Jesus as the Lamb, John was pointing to','Jesus’ sacrificial death.','Jesus’ miraculous healing.','the Jewish yearly sacrifices.','the priestly function of Jesus','','','a','','wassce','2010',85,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:55'),(573,'St. John refers to Jesus’ miracles as ‘signs’ because they convey the following ideas except','acceptance of Jesus as son of God.','proofs of the kingdom of God.','faith in Jesus as the means to eternal life.','demand for more wonders.','','','d','','wassce','2010',60,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:56'),(574,'Apart from the miracles at the wedding feast, another miracle of Jesus at Cana in Galilee was','feeding the four thousand.','healing the noble man’s son.','healing of a man born blind','healing a paralytic man.','','','d','','wassce','2010',79,'Admin','2016-11-12 13:36:22','2020-07-15 13:50:19'),(575,'At whose well did Jesus meet the Samaritan woman?','Abraham','Isaac','Jacob','Joseph','','','c','','wassce','2010',66,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:05'),(576,'The lame man who was healed at the pool of Bethizatha was charged by the Jews for breaking the law of the Sabbath \tbecause he','consulted Jesus on the Sabbath day.','was carrying his pallet on a Sabbath day.','was on a journey on a Sabbath day.','was seen with Jesus on a Sabbath day.','','','b','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(577,'The descent of the Holy Spirit on the day of  Pentecost was prophesied by','Amos.','Joel.','David.','Ezekiel.','','','b','','wassce','2010',75,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(578,'When the apostles in Jerusalem heard that Samaria had received the gospel, they sent to them','Mark and Barnabas.','Peter and John.','Paul and John.','Peter and Paul.','','','b','','wassce','2010',85,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:07'),(579,'The conversion of the Ethiopian eunuch confirms the','universality of the gospel.','work of the Apostles.','work of Philip in Samaria','the love of God for the eunuch.','','','a','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:08'),(580,'After his conversion, Paul was introduced to the disciples in Jerusalem by','Peter','Ananias.','Barnabas.','Philip','','','c','','wassce','2010',65,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:09'),(581,'Before Barnabas and Saul were sent on missionary journey, the elders, laid hands on them. The laying on of  hands signifies','confirmation.','selection.','commissioning.','protection','','','c','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:10'),(582,'The man who delivered judgment of the Jerusalem Council on the admission of Gentiles into the Church was','Peter.','Paul.','Barnabas.','James.','','','d','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:11'),(583,'Why according to Paul must Christians be subject to civil authority?','To receive God’s approval','To avoid God’s wrath','God has commanded it','It is an Old Testament law','','','b','','wassce','2010',72,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:12'),(584,'In the Epistle to the Romans, justification is received through','faith in Jesus.','moral uprightness','observance of the law.','giving of alms','','','a','','wassce','2010',71,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:13'),(585,'By saying that no human being will be justified in the sight of God by works: Paul meant that','the mosaic law was useless in ensuring justification for man.','the law had been weakened in human flesh.','knowledge of sin came through the law.','Moses who gave the law was not justified by the law.','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:15'),(586,'Paul’s greatest writing about spiritual gift is found in his letter to the','Galatians.','Ephesians.','Romans.','Corinthians','','','d','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:16'),(587,'In Corinthians, Paul cited all the following resurrection appearances of Jesus except','Cephas.','The Twelve.','Mary Magdalene','James.','','','d','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:17'),(588,'According to Peter, a Christian should exercise his freedom by','doing what is right.','claiming his freedom at all cost.','enduring pain while suffering.','using it as a pretext for evil.','','','a','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:18'),(589,'In which of the following ways did the Philippians share in Paul’s suffering while in prison?','Appealing for the release of Paul','Sending him relief materials','Continuing in prayer for him','Remaining in partnership with him in receiving.','','','b','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:19'),(590,'What advice did Peter give to the elders of the church in their relationship with the younger members?','Work as if being under external constraint','Work without a domineering spirit','Work with a desire for material gains','Control their flocks with firm hands','','','b','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:20'),(591,'In Philippians, Paul taught that Jesus ‘humility and death on the cross earned Him','salvation for Israel.','adoption as son of God.','exaltation as Lord.','eternal life in the kingdom.','','','c','','wassce','2010',72,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:21'),(592,'Why did Paul wish to retain Onesimus?','To protect him from persecution','Christianity was opposed to slavery','Philemon had earnestly requested that from Paul','To serve him during his imprisonment','','','b','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:22'),(593,'James teaches that the man who shall be blessed is he who','hears the word of God.','knows the law perfectly.','does the word he hears.','teaches the word of God well.','','','c','','wassce','2010',71,'Admin','2016-11-12 13:36:23','2020-07-14 14:20:23'),(594,'Through God the Christian is no longer a slave but a son, and if a son then','a master.','a redeemed.','an heir.','a beneficiary.','','','c','','wassce','2010',68,'Admin','2016-11-12 13:36:23','2020-07-14 14:20:23'),(595,'Peter recommends submission to the civil authority so as to','silence the ungodly.','encourage the believers.','promote faith in God.','live as free men.','','','a','','wassce','2010',78,'Admin','2016-11-12 13:36:23','2020-07-14 14:20:24'),(596,'What was God’s purpose in creating man?','To be master of all creation','To help Him look after the garden','To name the things He created','To multiply and fill the earth','','','d','','utme','2010',83,'Admin','2016-11-12 13:46:53','2020-07-14 14:20:25'),(597,'Isaac’s prayer to God for his barren wife showed that he','truly loved her','sincerely loved his God','had faith in God','was tired of being childless','','','c','','utme','2010',74,'Admin','2016-11-12 13:46:54','2020-07-14 14:20:26'),(598,'In God’s covenant with Israel, the central theme was','restoration','circumcision','obedience','salvation','','','c','','utme','2010',85,'Admin','2016-11-12 13:46:54','2020-07-14 14:20:27'),(599,'‘Who am I that I should go to Pharoah......’ When Moses resisted God’s call with the state¬ment above, it portrayed his','stubbornness','incompetence','lack of strength','lack of eloquence','','','d','','utme','2010',77,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:28'),(600,'What was Samson’s major achievement as Israel’s leader?','He suppressed the Philistines','He captured the city of Jericho','He saved the Israelites from the Amorites','He secured permanent independence for Israel','','','a','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:30'),(601,'God guided the Israelites on their way from Egypt to the Promised Land by','the work of two angels','dividing the Red Sea','a pillar of cloud and a pillar of fire','miracles that gave them direction on the way','','','d','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:31'),(602,'‘Deal gently for my sake with the young man Absalom.’ David’s statement above exhibited his','indulgent love for his son','willingness to forgive his competitors','desire to punish Absalom himself','high level of parental control','','','a','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:32'),(603,'How did king Asa prove to be a godly king?','He killed all the prophets of Baal at Mount Carmel.','He saved Judah from the Philistine menace','He instituted spiritual reforms that removed all idols and prostitution in the land.','He made the worship of Yahweh mandatory for every Jew and sojourner.','','','c','','utme','2010',80,'Admin','2016-11-12 13:46:55','2020-07-15 13:50:19'),(604,'The Hebrew midwives who obeyed God rather than Pharaoh were blessed with','favour from all the Israelites','long life in Canaan','resources','families','','','d','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:34'),(605,'When Saul disobeyed God’s command, Samuel rebuked him by saying that','the sword would never depart from his house','to obey was better than sacrifice','he should fear the LORD and obey the people’s voice.','though he was little, yet he was the head.','','','b','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:35'),(606,'David’s behaviour after Prophet Nathan accused him of murder and adultery showed his','justification','repentance','greed','righteousness','','','b','','utme','2010',90,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:36'),(607,'How did King Solomon demonstrate his wisdom in settling the dispute over the ownership of a baby by the two \\nProstitutes?','He interrogated them for seven days until the truth was discovered.','He interrogated them for only three days and the truth was revealed','He asked them to divide the child into two and the mother was known.','He threatened to give the child to a neutral woman and the mother was known.','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:37'),(608,'The prophet who made known the imminent divi¬sion of the kingdom of Israel during Solomon’s reign was','Jehu','Ahijah','Elisha','Elijah','','','b','','utme','2010',80,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:38'),(609,'Naaman’s leprosy was transferred to Gehazi be¬cause Gehazi was','ambitious','anxious','covetous','contemptuous','','','c','','utme','2010',64,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:39'),(610,'Obadiah who was m charge of Ahab’s house hold demonstrated reverence for the LORD by','giving Elijah the bull for the sacrifice on Mount Carmel.','rebuking Ahab and Jezebel for their evil deeds','hiding a hundred prophets of God from Jezebel’s wrath.','helping Elijah to kill the prophets of Baal on Mount Carmel.','','','c','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:40'),(611,'Although Josiah removed the vessels of Baal and Asherah from the Temple, God did not turn from the fierceness of His \twrath because”','the people did not remove them completely','Jehoahaz, Josiah’s son, had provoked Him','Manasseh had provoked Him','the people had opposed Josiah.','','','c','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:41'),(612,'What was Nehemiah’s initial reaction to the news about the ruins of Jerusalem?','He tasked the people on what to contribute','He called for volunteers to assist him','He fasted and prayed for forgiveness of sins','He asked for permission to travel home.','','','c','','utme','2010',112,'Admin','2016-11-12 13:46:55','2020-07-21 07:25:25'),(613,'After the dedication of the Temple, Ezra studied the law of the LORD in order to','defend the Jews against the Babylonians','become the first judge in Jerusalem','enhance his prophetic status','teach His statutes and ordinances in Israel.','','','d','','utme','2010',83,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:43'),(614,'Daniel became distinguished above all other pre¬sidents and satraps because','an excellent spirit was in him','the spirit of Darius was in him','he was a good administrator','he was highly educated.','','','a','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-07-15 14:05:27'),(615,'How did the Ninevites react to Jonah’s message?','They did not believe it','They believed it for a while','They repented of their sins','They ordered him out of their city','','','c','','utme','2010',67,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:45'),(616,'In Prophet Hosea’s analysis, harlotry is equivalent to Israel’s','prostitution','idolatrous practices','religious practices','adultery.','','','b','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:46'),(617,'‘... But let justice roll down like waters, and righteousness like an overflowing stream.’ Amos’ statement above suggests that the society was terribly','vindictive','abusive','oppressive','destructive','','','c','','utme','2010',83,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:47'),(618,'Isaiah emphasized holiness above all things be¬cause God','knew their hearts were right with him','was not interested in their sacrifices','who called them is holy','was searching their sinful   hearts.','','','c','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:48'),(619,'God told Ezekiel that the house of Israel would not listen to him because they','were a people of foreign speech','had forsaken His laws','were of a stubborn heart','had not truly repented','','','c','','utme','2010',86,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:48'),(620,'According to Isaiah, God sent him to','proclaim liberty to the captives','proclaim victory over Israel’s enemies','be a watchman over Israel','destroy and overthrow nations.','','','a','','utme','2010',81,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:49'),(621,'Jesus was tempted by the devil so as to','fulfil all righteousness','show His power over forces of nature','show that no one is above temptation','test the devil’s power','','','c','','utme','2010',92,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:50'),(622,'‘Depart from me, for l am a sinful man, oh Lord.’ This statement was uttered by Peter at the','last supper','garden of Gethsemane','call of the disciples','transfiguration','','','c','','utme','2010',99,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:51'),(623,'The impact of Jesus’ miracle of turning water into wine was that the','servants were astonished','master of ceremony believed','disciples believed more in Him','people glorified God.','','','c','','utme','2010',73,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:52'),(624,'After the healing of the demoniac in the country of the Gerasenes, the people begged Jesus to (Mark 5:15-19)','stay with them','visit them always','go away from them','heal their sick.','','','c','','utme','2010',83,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:53'),(625,'Jesus told the parable of the lost sheep in order to illustrate that','every believer ought to rejoice with those who rejoice.','no person can hide from God','God’s love is unlimited','there is joy in heaven over a sinner who repents','','','d','','utme','2010',78,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:54'),(626,'According to Jesus, the seventy disciples should rejoice because','their names were written in heaven','their faith and zeal were increased','of the submission of evil Spirits to them','of the fall of Satan from heaven like lightening.','','','a','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:55'),(627,'According to Mark, after the transfiguration, Jesus charged His disciples to','be prepared for persecution','tell no one what they had seen','have no hands in His betrayal','go to the Gentiles immediately','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:56'),(628,'According to Luke, the multitude that followed Jesus during the triumphal entry rejoiced and praised God with a loud voice because (Luke 19:37-39)','they realized that Jesus was a prophet','of the mighty works He had done','He was riding on a colt in humility','they believed He was their Messiah','','','b','','utme','2010',83,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:57'),(629,'‘Truly, I say to you, today you will be with me in paradise.....’ Jesus made the statement above to one of the \t\tcriminals because he (Luke 23:42-43)','respected Him','praised Him','rebuked his partner','was repentant','','','d','','utme','2010',75,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:58'),(630,'The message of the risen Christ to the women who came early to the tomb was to be relayed to the disciples and (Mark 16:7)','the Jews','the Sadducees','Thomas','Peter','','','d','','utme','2010',90,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:59'),(631,'According to the Gospel of John, Jesus is the true vine while the vinedresser is (John 15:1)','the Holy Spirit','His father','the gardener','His mother','','','b','','utme','2010',81,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:00'),(632,'‘...Why has Satan filled your heart to lie to the Holy Spirit..’ Peter rebuked Ananias in the statement above for his sin of (Acts 5:3-4)','greed','insincerity','covetousness','partiality.','','','b','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:00'),(633,'Paul informed the Galatians that the gospel he preached came through (Gal. 3:23-29)','a revelation of Jesus Christ','his desire to lead them','inspiration from the angels','the faith of men.','','','a','','utme','2010',79,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:01'),(634,'‘You son of the devil, you enemy of all righteous¬ness, full of all deceit and villainy .....’ This statement of Paul was addressed to (Acts 13:6-11)','Elymas, the magician','Paulus, the proconsul','Simon, the Magician','Demetrius, the silversmith','','','a','','utme','2010',85,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:02'),(635,'‘Unless you are circumcised according to the custom of Moses, you cannot be saved.’ The statement above by the men from Judea led to the','murmurs of the Hellenists','convening of the Jerusalem Council','persecution that scattered the disciples','circumcision of the Gentiles.','','','b','','utme','2010',92,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:03'),(636,'According to Galatians, the Law was added be¬cause of','righteousness','transgressions','grace','persecution.','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:04'),(637,'According to Galatians, the death of Christ has eliminate all forms of','suffering','differences','condemnation','poverty.','','','c','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:05'),(638,'Peter in his teaching no humility, admonishes Christians to','safeguard their faith','seek things that are above','be gentle in spirit','avoid life’s anxiety','','','b','','utme','2010',69,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:06'),(639,'Paul in Corinthians advised that Christians should re-affirm their love for those who','are kind to them','wrong them','humble themselves','are in authority.','','','b','','utme','2010',84,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:07'),(640,'According to Corinthians, variety of gifts are inspired by','fervent prayers','angels of God','constant fasting','the same Spirit','','','d','','utme','2010',76,'Admin','2016-11-12 13:46:56','2020-07-15 13:37:42'),(641,'According to Paul in Corinthians, generosity produce','righteousness','salvation','the grace of God','thanksgiving to God','','','d','','utme','2010',90,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:09'),(642,'Busy bodies and those living in idleness in the church at Thessalonica were admonished to','pray for those in authority for peace','do their work in quietness and earn a living','appeal to those in authority to create jobs','endure persecution from their masters.','','','b','','utme','2010',73,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:10'),(643,'Paul in Thessalonians told believers that the coming of the Lord would be accompanied by','songs of praise','the sound of the trumpet','signs and wonders','wailing and mourning','','','b','','utme','2010',76,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:11'),(644,'James stated in his epistle that when believers meet various trials, their faith produces','weakness','strength','steadfastness','righteousness','','','c','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:12'),(645,'Peter in his epistle enjoined servants to be sub¬missive to their masters with all','gentleness','seriousness','respect','humility.','','','c','','utme','2010',81,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:13'),(646,'According to Joseph’s interpretation to Pharaoh’s dreams; the seven empty ears blighted by the east wind represented seven years of','famine.','abundance.','farming.','Harvest','','','a','','wassce','2011',75,'Admin','2016-11-12 14:29:10','2020-07-14 14:21:14'),(647,'Moses was born at a period when the Hebrew were','suffering.','increasing.','backsliding.','rejoicing.','','','a','','wassce','2011',68,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:14'),(648,'“…who is the Lord that I should heed his voice and let Israel go”? After this statement, Pharaoh','engaged Israel into forced labour with task masters.','ordered midwives to kill all males born to Israelites.','asked Israelites to fetch their own straws to produce bricks.','decreed that Israelites’ male babies be drowned in the Nile.','','','c','','wassce','2011',71,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:15'),(649,'The name Moses means','baptized in water','abandoned in water.','drawn out of water.','thrown into water.','','','c','','wassce','2011',79,'Admin','2016-11-12 14:29:12','2020-07-15 14:05:27'),(650,'After the departure of the Israelites God made Pharaoh pursue them in order to','force Israel to return to Egypt.','hasten Israel’s journey through the wilderness.','make Israel obey Moses.','get glory over Pharaoh and his host.','','','d','','wassce','2011',80,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:17'),(651,'Who among the following kings was raised by God against the Israelites for going after the Canaanite gods?','Agap','Jabin','Zebah','Zalmunnal','','','c','','wassce','2011',67,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:18'),(652,'Deborah, a prophetess who was a judge in Israel was the wife of','Joshua.','Abijah.','Lappidoth.','Sisera.','','','c','','wassce','2011',71,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:19'),(653,'The sons of Eli were regarded as worthless men for all the following reasons except','sleeping with the women at the tent of meeting','failing to attend the places of worship regularly.','taking the meat for sacrifice before boiling.','showing no respect for God.','','','b','','wassce','2011',75,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:20'),(654,'Who was the first king of Israel?','Kish','David','Solomon','Saul','','','d','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:21'),(655,'Joel and Abijah were the sons of','Eli.','Saul','Samuel','David.','','','c','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:28'),(656,'“...Behold, to obey is better than sacrifice and to hearken than the fat of rams”. This statement was Samuel’s reaction to','David’s defense of his sin.','Saul’s defense of disobedience.','King Agag’s defense of his victory.','Eli’s defense of the sins of his sons.','','','b','','wassce','2011',76,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:29'),(657,'On Mount Gilboa, king Saul decided to commit suicide in order to avoid','ridicule from the Philistines.','witnessing the death of his sons','being killed by his armour-bearer.','the agony of the injuries received.','','','a','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:30'),(658,'David bitterly mourned when Abner was slain by','Ishbosheth.','Absalom.','Asahel.','Joab.','','','d','','wassce','2011',52,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:31'),(659,'One of the main features of Solomon’s prayer at the dedication of the Temple was the','celebration of God who is faithful to his covenant','recognition that God loves sacrifices.','assertion that God dwells in man-made houses.','proclamation that no prayers be henceforth made outside the temple.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:32'),(660,'In spite of Solomon’s apostasy, his empire remained intact until his death because','God deferred, for David’s sake, the punishment due to him','he won decisive victories over his enemies.','he always took wise decisions','. \\nhe made surrounding nations fight among themselves.','','','a','','wassce','2011',88,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:33'),(661,'“Your father made our yoke heavy. Now therefore, lighten the hard service of your father.” These were the words of','Jeroboam','Solomon','.         \\nDavid','Ahijah.','','','a','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:34'),(662,'Obadiah, Ahabs servant, made history for himself by','arresting the prophets of Yahweh','. \\nexecuting all the prophets.','hiding and feeding some of the prophets in a cave.','D inciting the prophets to rebel against king Ahab.','','','c','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:35'),(663,'The contest between Elijah and the prophets of Baal took place at mount','Olive.','Tabor.','Sinai','Camel.','','','d','','wassce','2011',56,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:36'),(664,'King Jehoshaphat was commended for adopting his father’s policies which included','removing Maacah, his grandmother from being queen.','waging wars with the king of Israel.','allowing the cult prostitutes to operate.','burning of incense at the high places.','','','a','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:42'),(665,'God’s constant love for unfaithful Israel is demonstrated in the book of','Amos','Isaiah','Hosea','Ezekiel','','','c','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:43'),(666,'During the rebuilding of the temple, Zerubbabel rejected the offer of help from the','inhabitants of Ammon.','people of Samaria.','friends of Sanballat and Tobiah','governors of the provinces beyond the rivers.','','','c','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-15 09:16:12'),(667,'“And I asked them concerning the Jews that survived, who has escaped exile, and concerning Jerusalem...” These were the words of','Jeremiah.','Nehemiah','Ezra.','Hanani.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:51'),(668,'The presentation of Myrrh to Jesus signifies Jesus’','humility and servant hood.','suffering and impending death.','lordship on earth.','kingship and messiah ship.','','','b','','wassce','2011',87,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:52'),(669,'“My son your sins are forgiven”. These were the words of Jesus to the','demoniac.','paralytic.','man born blind','centurion’s servant.','','','b','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:53'),(670,'Peter called for the construction of three booths for Jesus, Moses and Elijah, respectively during','the transfiguration.','the Ascension.','Jesus’ arrest.','the Passover feast.','','','a','','wassce','2011',82,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:53'),(671,'The incidents that took place following Jesus’ death on the cross did not include the','tearing into two of the temple’s veil.','quaking of the earth that broke the rocks.','the opening of the tombs.','trembling of the chief priest and his conversion.','','','b','','wassce','2011',69,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:54'),(672,'“How is it that you a Jew ask a drink of me...” This statement was made by the','Gentile woman.','woman of Samaria.','possessed woman.','woman of Galilee','','','b','','wassce','2011',69,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:55'),(673,'The Jews showed their hatred for Paul and Barnabas in Pisidia by','dragging out the apostles for stoning.','insisting and driving them out of the Synagogue.','influencing leading men in the city to drive them out.','beating and stoning them in the Synagogue','','','c','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(674,'When Jesus said “apart from me you can do nothing”, he \tmeant that Christians','pray without ceasing','. \\nmust faithfully trust in Him always.','cannot pass examinations if they did not pray.','should expect God to do everything for them.','','','b','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:57'),(675,'On the day of Ascension, Jesus promised his disciples','peace in the kingdom of God.','amazing grace.','power of  the Holy Ghost.','His abiding physical presence.','','','c','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(676,'On Ascension Day two men in white robes inform the disciples that Jesus would','send for them.','be seen in heaven.','prepare a place for them.','come again.','','','d','','wassce','2011',83,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:59'),(677,'“Go up and join this chariot”.  This statement was made to','John.','Paul.','James.','Philip.','','','d','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:00'),(678,'Saul was converted on his journey to','Samaria','Jerusalem.','Salamis.','Damascus.','','','d','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:01'),(679,'Which of the following places was not visited by Paul during his first missionary journey?','Salamis','Athens','Antioch of Syria','Antioch of Pisidia','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:02'),(680,'Paul was stoned and dragged out of the city by','the Lyconians and the Ephesians.','enemies of the healed lame man','. \\nJews from Antioch and Iconium.','Jews in the Synagogue.','','','a','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:03'),(681,'The resurrection of Jesus is significant to Christians for it \tmarked the','end of the Jewish faith.','assurance of eternal life for Christians.','beginning of Christianity','end of Jesus’ earthly ministry.','','','b','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:04'),(682,'According to Paul, ‘As sin reigned in death, grace also might reign through righteousness to','faith in God’.','the knowledge of God’.','eternal life','the glory of the father’.','','','c','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:05'),(683,'Paul in Romans declared “for as by one man’s disobedience many were made sinners, so by one man’s obedience many will be made...”','innocent.','righteous.','faithful.','Christians.','','','b','','wassce','2011',58,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:06'),(684,'Which of the following is not true about spiritual gifts as taught by Paul?','Gifts should be used with all modesty','No gift can be independent of others','Gifts have nothing to do with the level of one’s faith','Specific gifts perform specific functions','','','b','','wassce','2011',77,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:07'),(685,'In his comparison of the human body with the body of Christ, Paul did not mention the','hand.','foot.','eye.','nose.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:08'),(686,'The New Life in Christ operates through','humility.','the name of Jesus.','one body.','wisdom.','','','b','','wassce','2011',78,'Admin','2016-11-12 14:29:14','2020-07-15 13:37:42'),(687,'‘Death is swallowed up in victory, “oh death, where is your victory”? This statement is found in the book of','Corinthians.','Romans.','Galatians.','Philemon','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:10'),(688,'According to Paul in Corinthians the gospel message could only be lifeless when Christians','deny the resurrection message.','persecute one another.','gossip among themselves.','entertain idolatrous practices.','','','a','','wassce','2011',84,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:11'),(689,'Paul asked the Thessalonians to imitate his action of','demanding support from his converts.','performing miracles','healing the sick.','working for his personal upkeep.','','','d','','wassce','2011',76,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:12'),(690,'With respect to the date of the Parosia, Paul advised Thessalonians to','be sober in maintaining their hope of salvation.','disregard all speculations about it.','know that the day would be announced later.','enjoy peace and security in the face of danger.','','','a','','wassce','2011',82,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:13'),(691,'Paul, pleaded with Philemon to forgive','Barnabas.','Timothy.','Onesimus.','Silas','','','c','','wassce','2011',102,'Admin','2016-11-12 14:29:14','2020-07-21 14:15:12'),(692,'James strongly condemned partiality in the Church for all the following reasons except that it','is contrary to Christ’s example of humility','accords due respect to the rich who merit it.','is a transgression of the commandment of God.','does not harmonize with the Christian virtue of love.','','','d','','wassce','2011',72,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:15'),(693,'The Galatians, were reminded by Paul that they were Abraham’s offspring and heirs according to','promise.','good works.','law.','grace.','','','a','','wassce','2011',66,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:16'),(694,'According to Paul in Galatians, law ceased to be our custodian as soon as','it was made available to us.','Christ adopted us as his children.','we adopted the faith of Abraham.','we stopped worshipping the elemental spirits.','','','b','','wassce','2011',61,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:29'),(695,'James advised Christians to portray their faith in Jesus by','listening to the word of God always.','converting others to Christ.','practicalizing their Christian belief','constant prayer and fasting.','','','c','','wassce','2011',76,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:30');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `currentaffairs` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `currentaffairs` VALUES (1,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:03'),(2,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:04'),(3,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:15'),(4,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:16'),(5,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:17'),(6,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013',576,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:18'),(7,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:19'),(8,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013',565,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:20'),(9,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013',551,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:21'),(10,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:22'),(11,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:23'),(12,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013',554,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:24'),(13,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:25'),(14,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013',577,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:25'),(15,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:26'),(16,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013',559,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:27'),(17,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013',588,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:28'),(18,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013',585,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:29'),(19,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013',572,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:30'),(20,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013',596,'Admin','0000-00-00 00:00:00','2020-07-18 18:21:25'),(21,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013',566,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:32'),(22,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013',550,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:33'),(23,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013',540,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:34'),(24,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:35'),(25,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:36'),(26,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013',564,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:37'),(27,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:38'),(28,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013',571,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:39'),(29,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-07-20 00:10:52'),(30,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:41'),(31,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:43'),(32,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:44'),(33,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:45'),(34,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013',560,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:47'),(35,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:48'),(36,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:49'),(37,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013',583,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:50'),(38,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013',564,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:51'),(39,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-19 09:06:40'),(40,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013',584,'Admin','0000-00-00 00:00:00','2020-07-21 20:15:13'),(41,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:56'),(42,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013',583,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:57'),(43,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013',602,'Admin','0000-00-00 00:00:00','2020-07-21 13:01:37'),(44,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013',620,'Admin','0000-00-00 00:00:00','2020-07-15 17:48:58');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `economics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=658 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `economics` VALUES (1,'Which of the following is the best general definition of the study of economics? ','the best way invest in the stock market','business decision making under foreign competition ','individual and social choice','inflation unemployment in a growing economy','','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:31'),(2,'What implication does resources scarcity have for the satisfaction of wants?','not all wants can be satisfied ','we will never be faced with the need to make choice ','we must develop ways to decreases our individual wants ','the discovery of new resource.','','','a','','post-utme','2006',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:32'),(3,'In economics , rational decision-making requires that: ','one’s choices be arrived at logically and without error   ','one’s choice be consistent with one’s goals ','one’s choice never very ','one makes choice that do not involve trade-offs','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:33'),(4,'What happens to a supply curve when the variables that are normally held constant are allowed to changer? ','the curve flattens out','there is a movement along the curve','the curve shifts ','the curve becomes steeper.','','','c','','post-utme','2006',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:34'),(5,'If the price of Pepsi decrease relative to the price of coke and 7-up the demand for ','coke will decrease ','7-up will decrease ','coke and 7-up will increase','coke and 7-up will decrease.','','','d','','post-utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:35'),(6,'Suppose wages paid by a firm increase what would reasonably be expected to happen to the equilibrium price and equilibrium quantity for the firm’s output? ','price increase,  quantity decreases ','price decrease, quantity decrease','price decreases, quantity increase','price increases, quantity increase.','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:36'),(7,'When a nation’s exports are greater than its imports ','the net foreign trade is zero ','an unfavourable balance of payments exists ','a favourable balance of trade exists ','a favourable balance of payment exists.','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:37'),(8,'Inflation is likely to benefit ','persons with bank savings','persons who live on fixed pension funds ','creditors ','debtors.','','','d','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:38'),(9,'For which market model is there a very large number of firms? ','monopolistic competition','oligopoly ','pure monopoly ','pure- competition','','','d','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:38'),(10,'Which of the following is an economic cost ','uninsurable risk ','normal profit ','economic profit ','monopoly profit.','','','b','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:39'),(11,'Which tends to be a progressive tax in Nigeria? ','income tax ','property tax ','sales tax ','import- duties.','','','a','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:40'),(12,'A deficit budget is usually drawn up during ','economic buoyancy ','inflationary period ','war time ','economic recession.','','','d','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:41'),(13,'A drawer of a cheque is the ','person who is to be paid ','bank on which the cheque is drawn ','person who writes out the cheque ','bank official who certifies the payment. ','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:42'),(14,'The liability of a sole trade is','indeterminate ','unlimited ','limited ','transferable','','','b','','post-utme','2006',93,'Admin','0000-00-00 00:00:00','2020-07-21 11:09:34'),(15,'Which of the following is regarded as fixed cost? ','cost of raw materials ','labour wages ','rent land ','cost of light.                                                                                                                                                                                                                   ','','','c','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:44'),(16,'Which of the following is not a member of OPEC?','Indonesia',' Iran ','Venezuela','Egypt','','','d','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:45'),(17,'The creation of utility can be referred to as ','value added ','profit marginalization ','production','entrepreneurship.','','','c','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:46'),(18,'The production within the domestic territory of a country is called the ','net national product ','gross domestic product ','disposable income','gross national product.','','','b','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-21 11:27:21'),(19,'Suppose a consumer’s income increases from N30,000 to N36, 000. As a result the consumer increases her purchase of compact discs (CDS) from 25 CDS to 30CDS.What is consumer’s income elasticity of demand for CDS?','0.5','1,0 ','1','1.5','','','b','','post-utme','2006',95,'Admin','0000-00-00 00:00:00','2020-07-17 03:50:42'),(20,'The Multiplier is always the reciprocal of ','MPC ','MPS ','APC','APS','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:49'),(21,'If the marginal propensity to save is 0.4 and consumption expenditure changes by N10 million , the equilibrium  level of income will change by ','N15.0million ','N4,0million','N2.5million ','N25million.','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:50'),(22,'Economic freedom is brought about by the existence of ','Government ','Money ','Availability of Credit ','choice','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:51'),(23,'The only essential attribute of the good currency is ','scarcity ','homogeneity','acceptability ','cognoscibility.','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:52'),(24,'Economic is founded on the principle that: ','Human wants are more than human needs ','Material things are more than human wants ','Human wants are limitless while the means to satisfy them are limited  ','Human while are easy to define','','','c','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:53'),(25,'The capitalist system is characterized by all the following except: ','private ownership of the means of production ','Equitable distribution of income and wealth  ','capital accumulation  ','markets and  prices coordinate economic activities','','','b','','post-utme','2007',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:53'),(26,'If the equation relating consumption (C) to income (Y) is C=  N7,500+0.2Y,then ','consumption is inversely related to income','consumptions is the independent variable and income is the dependent variable ','if income is N15,000, the consumption is N10,500 ','if consumption is N30,000 then income is N10,000','','','c','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:55'),(27,'The reason for the law of demand can best be explained in terms of ','supply ','complementary ','the rationing function of prices ','diminishing marginal utility','','','d','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:55'),(28,'The demand curve for the pure monopolists is ','perfectly  price elastic ','perfectly price inelastic ','down sloping ','up sloping ','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:56'),(29,'Which of the following statements is correct? The Central  Bank ','prints the country’s currency ','handles the collection of depts. Owed to the government','lends money to businessmen ','issues the country’s currency','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:57'),(30,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','Consumers are rational','Consumers are willing to make choices ','Consumers make consistent choices','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-21 11:24:29'),(31,'The slope of the budget constraint ','changes as the marginal rate of satisfaction changes ','is the ration of the prices of the two goods? ','is the ratio of the budget of total utility? ','Equals one, since the consumer can buy combination along the budget constraint.','','','b','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:59'),(32,'Disposable income equals ','Personal income less business profits ','personal income less taxes and subsidies ','personal income less taxes plus subsidies ','National income plus transfer payments','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:00'),(33,'The ‘term’ of trade’ means ','The trade agreement between two countries ','The difference in the volumes of exports of two countries ','The value of a unit of export in relation to the value of a unit of import ','None of the above.','','','c','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(34,'The burden of tax on a commodity whose demand is infinitely inelastic ','is Zero ','will be borne by sellers alone ','will be borne by buyers alone ','it impossible to tell','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:03'),(35,'Inflation can be curbed by ','Increasing aggregate demand ','paying higher wages ','reducing aggregate demand ','A deficit budget','','','c','','post-utme','2007',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:04'),(36,'The supply and demand for goods and service are influenced by the ','Super markets ','Entrepreneurs ','Mechanism of the law ','price mechanism.','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:05'),(37,'In a sole proprietorship, the decisions are made by the ','Government ','Board of directors ','Shareholder’s Conference ','Owner','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:06'),(38,'Which of the following are direct taxes? ','Income and company taxes ','Sale taxes ','commodity taxes ','Excise Duties','','','a','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-21 12:06:16'),(39,'The production within the domestic territory of a country is called the ','Net national product ','Gross domestic ','Disposable income ','Gross national product','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:08'),(40,'A producer sustains a loss in the short run if? ','marginal revenue is less than price ','price is less than average cost','marginal cost is less than marginal  revenue ','average variable cost is less than average cost','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:09'),(41,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with terms funds ','deals with money only while capital market deals with capital as well ','is limited in scope while capital market is not ','uses interest rate while capital market does not','','','a','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:10'),(42,'A production possibility curve shows ','how much of  the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combinations of two commodities that can be produced.','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:11'),(43,'The situation in which the total amount of government spending exceeds total called ','balance budget ','budget surplus ','budget deficit ','fiscal surplus ','','','c','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:12'),(44,'The maximization of profit tends to be driving force in the economic decision making of  ','entrepreneurs  ','workers ','consumers ','legislators','','','a','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:13'),(45,'Which of the following equations is the correct one about Net National Product (NNP)? ','NNP= Gross National Product (GNP) - Depreciation ','NNP=  Gross National product (GNP Net incomes from abroad ','NNP= Gross Domestic product (GDP) – Deprecation ','NNP = Gross Domestic product (GDP) – Net incomes from aboard','','','a','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:13'),(46,'Middlemen in a economy perform the function of ','protection ','hoarding ','distribution ','exchange','','','c','','post-utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-21 11:15:39'),(47,'Which of the following statement is false? ','Ends in Economic are the resources with which it can attain our goals','Tables and graphs are focus of arithmetic technique used in economics to present ideas pictorially ','Three basic question every economy must answer are hat to produce, how to produce and for whom to produce ','A and B are substitutes if the supply of an increase, the price B will tend to increase.','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:15'),(48,' If the equation relating consumption (C) to income (Y) is C= N7,500 + 0.2Y, then ','consumption is inversely related to income ','consumption is the independent inversely related to income is the dependent variable ','if income is N15,000, the  consumption is 10,500 ','if consumption is N300,000, then income is N10,000','','','c','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:16'),(49,'Which of the following best describes a perfectly inelastic demand function? ','The quantity demand is insensitive to changes in price ','Price is insensitive changes in quantity ','price and quantity demanded changes by some percentage ','The demand function is horizontal.','','','a','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:17'),(50,' Which of the following statement is false? ','An economy where economic decision making is shared by individuals and government is known as mixed economy ','Given that apples and pears are substitutes, If the price of pear fall ','An elasticity of demand measured between two point on a demanded curve is called a point elasticity ','A and B are complements. If the supply of A decreases, the price B are tend to fall','','','c','','post-utme','2008',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:18'),(51,'Which of the following statement is true? ','if cross price elasticity that of demand between two goals, A and B, is negative we can conclude that A and B are substitutes ','the co-efficient of elasticity of demand is measured as a ration of change in quantity demand to change in price ','A market will be in disequilibrium when demand is not equal to supply ','All the above.','','','c','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:19'),(52,'The reason for the law of demand can best be explained in terms of: ','supply ','complementary goods ','the rationing function of price ','diminishing marginal utility.','','','d','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:20'),(53,'The demand curve for the pure monopolists is ','perfectly price elastic ','perfectly price inelastic ','down sloping ','up sloping','','','c','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:21'),(54,'Which of the following statement is correct? The Central bank ','prints the country’s currency ','handles the collection of debts of owed to the government ','leads money to businessmen ','issue the country’s currency.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:22'),(55,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','consumers are rational ','consumers make consistent ','choices.','','','d','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:23'),(56,'Which of the following equation is the correct one about Net National Product (NNP)? ','NNP= Gross National product (GNP) – Depreciation ','NNP = Gross National product (GNP) + Net incomes from abroad. ','NNP = Gross Domestic product (GDP) – Depreciation ','NNP = Gross Domestic product (GDP) – Net incomes from abroad.','','','a','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(57,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with long term funds. ','deals with money only while capital as well ','is limited in scope while capital market does not. ','Uses interest rates while capital market does nor.','','','a','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:25'),(58,'A production possibility curve shows ','how much of the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combination of two commodities that can be produced.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:26'),(59,'The situation in which the total amount of government spending excesses total revenues is called a:  ','balance budget ','budget surplus. ','budget difficult ','fiscal surplus','','','c','','post-utme','2008',97,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:27'),(60,'The maximization of profit tends to be the driving force in the economics decision making of:','entrepreneurs. ','Workers ','consumers ','legislators.','','','a','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 02:16:53'),(61,'Which of these factors does not cause a change in demand? ','Income ','Population ','price of the commodity itself.','Quantity of commodity','','','d','','post-utme','2008',103,'Admin','0000-00-00 00:00:00','2020-07-14 02:10:22'),(62,'When the demand for a commodity is inelastic, total revenue will fall if ','price is increase ','price remains constant ','price is reduced ','The commodity is a luxury.','','','c','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:30'),(63,'An economic system in which most capital goods are owned by individual and private firms is known as ','planned economy ','Capitalist economy. ','Mixed economy ','Socialist economy.','','','b','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(64,'Which of the following is the most liquid asset to a commercial bank? ','cash ','money at call ','stock and shares ','Treasury Bills.','','','a','','post-utme','2008',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:32'),(65,'A recovery point on an indifference curve, the ','Total utility is decreasing ','Level of utility is constant ','Consumer is satisfied ','','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:33'),(66,'Which of the following does not hinder the efficient distribution of goods in West Africa? ','Government participation in the distribution trade ','Inadequate storage facilities for agricultural goods ','Inadequate credit facilities for potential distribution ','the tendency to hoard and smuggle.','','','a','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:34'),(67,'Which of the following is the most important reason why wages differ among occupation? ','Length and cost of training ','Supply of Labour ','Attractiveness ','Influence of trade Unions','','','c','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:35'),(68,'Tax incidence is the analysis of  ','How progressive a tax is ','How distorting a tax is ','Who ultimately pays the tax ','How a tax is collected.','','','c','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:36'),(69,' A monopolist will practice price discrimination in two market if ','there is a patent of the commodity ','There is free flow of information in the market ','The markets have different elasticity of demand ','The cost of separating the markets is low.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:39'),(70,'Which of the following is regarded as fixed cost? ','Cost of raw materials ','rent on land ','Labour wages ','cost of light.','','','b','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(71,'Given that fixed cost is N500.00, Variable cost is N1,500.00 and output is 40 units, what will be the average cost of producing one units? ','N12.50.00 ','N50.00 ','N37.50 ','N500.00','','','b','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:41'),(72,'For two substitute goods, the gross elasticity of demand is ','Greater than one but lee than zero ','zero ','Negative ','Positive ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:42'),(73,'If a person receives a higher wage than would be necessary to induce him to work, he is be receiving','rent ','profit ',' interest ',' gain ','','','a','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:43'),(74,'Which if this is likely to be inflationary ','Tax increase ','Budget surplus ','increase in unemployment ','wage increase ','','','d','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:44'),(75,'A characteristic of a debenture is that ','Its yield is based on profit ','Its yield is a fixed rate of interest ','It has no redemption date ','There is a voting when interest is paid ','','','b','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:45'),(76,'Which of these is not included in measuring national income by the income approach? ','Wages and salaries of public servants ','students branches and scholarships ','profit of international ','income of self-employment persons ','','','b','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:46'),(77,'The revenue accruing to the seller of commodity X as a result of a fall in price will ','increase','fall ','first fall but increase later  ','Remain unchanged ','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:47'),(78,'Deflation is persistence fall in price in the general price level and is usually caused by ','A reduction in total demand ',' An increase in government spending ',' an increase in money supply to banks ','An increase in aggregate demand ','','','a','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:48'),(79,'Under partnership, investors who have no desire to be actively involved in the day-to-day management of such organization are called ','Stock brokers ','Sleeping partners ','part-time investor ','Ordinary partners ','','','b','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:49'),(80,'In a sole proprietorship decision are made by the ','Government ','Board of directors ','Management ','Owners.','','','d','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:50'),(81,'A greater burden of taxes on essential goods in borne by the ','middle income group ','Higher income group ','Lower earning people ','People falling between the middle and higher income group ','','','c','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:51'),(82,'Demand as a factor of production is ','a composite demand ','joint demand ','A derived demand','An elasticity of demand ','','','c','','post-utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:52'),(83,'One disadvantage of sole proprietorship is its ','Limited liability ',' High profit ','High sense of ownership ','Low credit rating ','','','d','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:53'),(84,'The monetary system that requires double coincidence of wants is known as ','The gold standard ','The gold standard ','The commodity system ','The gold standard ','','','b','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(85,'The marginal theory of distribution makes an assertion that the price of any factor depends upon its marginal ','Unity ','Productivity ','rate of substitution ','revenue ','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:55'),(86,'By using exchanges controls, a country tries to eliminate a balance of payment deficit by ','limited her imports to its currency value of exports ','Reducing the nation’s domestic piece level ','limiting her exports to its currency value of exports ','Undervaluing, the country’s currency.','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:56'),(87,'Economics of scale operates only when ','Marginal cost is falling with output fixed cost is variable ','fixed cost is variable ','variable cost is less than fixed cost ','variable cost is equal to cost of output.','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:57'),(88,'If an increase in income induces a reduction in the demand for beans, beans can be referred to as: ','A normal good ','An inferior good ','A substitute ','A dash ','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-21 06:51:42'),(89,'Optimum population is desirable because it enable an economy to attain maximum ','per capital income ','per capital output ','per capital real income ','per capital revenue ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:59'),(90,'Marginal cost curve intersects average cost curve ','from above at its lowest point ','from below the lowest point ','from below at its lowest point ','from below after the lowest point ','','','c','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:00'),(91,'The concept of economic efficiency refers to: ','obtaining the maximum output from available resources at the lowest possible cost ','Conservation of natural gas and oil deposits ','equity in the distribution of national resource ','Producing without waste ','','','a','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:01'),(92,'A major factor affecting the value of money is the: ','price level ','banking habit ','Transaction motive ','Divisible nature of money ','','','a','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:02'),(93,'Which of the following is an example of invisible item on balance of payments account?','Shipping and aviation ',' Import and Export ','Merchandise ','Bullion ','','','a','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:03'),(94,'The best index for indentation comparison of standard of living is the ','Gross national product ','Net national income ','per capital income ','Gross national income.','','','c','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:04'),(95,'A major obstacle to economic development in many African countries ','A rise in industrial output ','Low farm productivity ','Free interaction ','Controlled international relations.','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:05'),(96,'The most popularly adopted industrialization strategy in West African ','import substitution ','Export promotion ','parts development ','infant industries potation.','','','b','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:06'),(97,'The basic concepts of Economics are ','choice, scarcity, resources and efficiency   ','wants, scarcity, choice, scale of preference and opportunity cost','wants, scarcity and choice  ','wants, choice, scale of preference and opportunity cost ','','','b','','post-utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:07'),(98,'In Economics human wants are usually described as  ','many','insatiable ','limited','numerous','','','b','','post-utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:08'),(99,'Basic economic problems of society include the following except:  ','what to produce','how to produce ','where to produce  ','for whom to produce ','','','c','','post-utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:09'),(100,'An economic system can be defined as an ',' arrangement specifying how production and consumption are controlled in a   society ','arrangement whereby goods are distributed in a society  ','arrangement whereby human wants are satisfied in a society  ','arrangement specifying how productive resources are distributed in a society ','','','a','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:10'),(101,'The following are features of a free market economy except ','private ownership of properties  ','existence of competition ','high level of profit maximization by private investors  ','joint decision-making by the citizens in a society.','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:11'),(102,'In a capitalist society, production and consumption are regulated by the: ','demand for the commodity ','the government  ','price system  ','private individuals ','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:12'),(103,'The following are advantages of socialism except ','equitable distribution of resources','absence of exploitation  ','equitable distribution of income ','promotion of high standard of living ','','','d','','post-utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:13'),(104,'Marginal Produce (MP) is best defined as ',' Total produce/no of labour','Change in total product/ change in variable factor','Total product/ fixed factor','Average product/ no of Labour','','','b','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:15'),(105,'Which of the following is NOT a limitation to division of labour and specialization ','the size of the market','availability of capital ','interdependence among the workers ','the nature of the product ','','','b','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:16'),(106,'The following are the advantages of internal economics of large scale production except ','financial economics ','administrative economics ','technical economics ','market economics','','','b','','post-utme','2011',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:19'),(107,'Which of the following is TRUE of marginal cost? ','it is a cost incurred by the firm on variable inputs ','it is the cost of producing one extra unit of a commodity at any output level ','it is the sum of the fixed cost and variable cost','it is referred to as overhead cost','','','b','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:20'),(108,'Which of the following items is NOT a variable cost? ','cost of machine ','cost of electricity ','salaries and wages','cost of raw materials.','','','a','','post-utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:21'),(109,'Which of the following is NOT True of a market demand schedule? ','it is a schedule of all consumers of a commodity in a market ','it is the aggregate demand schedule of all consumers of a commodity in a market ','it is a table showing the different quantities of a community which a consumer would purchase at various prices ','it is a table showing the composite demand schedule of all consumers of a commodity in a market.','','','c','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:22'),(110,'Supply is said to be inelastic when the coefficient of elasticity of supply is ','2.5','0.5','zero ','infinity ','','','b','','post-utme','2011',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:23'),(111,'Price legislation can be defined as ','how price fluctuates in the market','how prices are controlled in the market  ','how to avoid inflation  ','how the government fixes the prices of essential commodities.','','','d','','post-utme','2011',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:24'),(112,'Price discrimination exists when  ','The same product of the same quality is sold for different prices of the same buyer  ','The same product of the same quality is sold for different prices to different buyers  ','Different products are sold for the same price to the same buyers  ','Different products are sold for the same price to different buyers.','','','b','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:25'),(113,'A commodity is said to be price inelastic if  ','Changes in the quantity purchased of a good is less than proportionate changes in its price  ','Changes in the quantity purchased of a good is proportional to changes in its price  ','Changes in the quantity purchased of a good is more than proportionate changes in its price  ','The quantity purchased of a good never responds to change in its price.','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:26'),(114,'The parameter ‘b’ in a consumption function of the form; C = a + bY; where Y is the National income is  ','Marginal benefit of consumption  ','Marginal propensity to purchase  ','Marginal propensity to consume  ','Marginal propensity to save ','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:27'),(115,'Indifference curve and isoquant are respectively relevant is  ','Theories of consumer behaviours and production  ','Theories of human indifference and production  ','Theories of trade and production  ','Theories of production and trade','','','a','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:28'),(116,'Perfect price elastic supply means  ','No change in supply as price changes  ','Any change in price completely stops supply  ','Changes in price double supply  ','A change in price leads to proportionate change in supply','','','b','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:29'),(117,'Change in demand and change in quantity demanded are not the same because  ','All factors affecting change in demand also affect change in quantity demanded except income  ','All factors affecting change in demand are not affecting change in quantity demanded except income  ','Many factors leads to change in demand but only change in price affect change in quantity demanded   ','Many factors leads to change in demand but only change in income affect change in quantity demanded','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:30'),(118,'The following is the main difference between firm and industry  ','Industry is the group of firms producing related products  ','Industry is the group of firms in the manufacturing sector  ','Industry is the group of firms in different sectors of the economy  ','Industry is the group of firms with a single pressure group','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:31'),(119,'Roles of central bank include the following except  ','Lender of last resort to commercial bank  ','Banker to commercial bank  ','Regulator to both the money and capital markets ','Receipt  of government deposits','','','b','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:32'),(120,'Ordinary shareholders and preferential shareholders are different because ','Preferential shareholders participate and can vote and be voted for during the  AGM  ','ordinary shareholders are given priority in case the company is liquidated  ','Preferential shareholders are prominent shareholders than ordinary shareholders  ','Ordinary shareholders are the core shareholders in the company','','','d','','post-utme','2012',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:43'),(121,' Yam and palm oil are together; therefore  ','Yam is a substitute good while palm oil is a complementary good  ','Yam is complimentary good while palm oil is a substitute good  ','Yam and oil are complimentary goods ','Yam and beans are substitute goods','','','c','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:44'),(122,'Private and public limited liability companies are not the same because  ','Former is limited to fifty shareholders but not the later  ','both are not legal entities  ','Former is established secretly but latter is located in central places  ','Former is managed by board of directors but latter is managed by board of management.','','','a','','post-utme','2012',99,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:44'),(123,'If salary of worker increases from 50,000 to 80,000 Naira and average price of certain commodities consumed by the worker increase from 120 Naira to 160 Naira then  ','The nominal income increases but leave the real income constant  ','The real income increases, but nominal income has reduced  ','The nominal income increases, but real income decreases  ','Both the nominal and real income increase','','','d','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:45'),(124,'Discount rate means  ','Rate at which money are borrowed from commercial bank  ','Rate at which bank receive deposit from the public  ','Central bank rate on the money borrowed by commercial banks  ','Commercial bank rate on the money borrowed from other commercial bank','','','c','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:46'),(125,'When the government expenditure and income are the same in fiscal year, this is referred as;','Net balance  ','Zero balanced budget  ','Balanced budget  ','Net income ','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:48'),(126,'Inflation as a result of increase in the payment for factors of production is called  ','Cost-pull inflation  ','Demand-push inflation  ','Cost-push inflation  ','Demand pull inflation ','','','c','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:50'),(127,'When Lump-sun tax is paid by a producer, it means that;  ','The tax is paid proportional to the quantity of output produced  ','The tax is paid regardless of volume of output  ','The tax is paid in arrears  ','The tax is returned to the producer after the payment','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(128,'The following is not correct  ','Average variable cost equals average total cost minus average fixed cost   ','Average fixed cost equals average variable cost minus average total cost  ','Average total cost equals average variable cost plus average fixed cost  ','Average total cost minus average variable cost equals average fixed cost ','','','b','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(129,'Normal profit means;  ','All the accountant cost are covered but not all the economist cost  ','All the economist cost are covered but not all the accountant cost  ','More than economist cost are covered  ','None of the economist and Accountant costs is covered ','','','a','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(130,'If the price of commodity X increases because of the increase in the price vis-à-vis the increase in demand  for other commodities are likely to be  ','Complimentary  ','Substitute  ','Compose  ','Intermediate','','','a','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(131,'The following may not inflate the National Income figure ','Student’s bursary  ','Owners occupied houses  ','Office Inducement  ','Intermediate goods','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:57'),(132,'Legal Entity means  ','A company is owned by large number of people  ','A company is owned by small number of people  ','A company is insulated against litigation  ','A company is not insulated against litigation ','','','d','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:58'),(133,'In the ownership structure of joint stock company the following is correct;  ','Ordinary shareholders are stronger than preferential shareholders  ','Preferential shareholder are stronger than ordinary shareholders  ','Ordinary shareholders are settled first in case of company’s liquidation  ','Ordinary and preferential shareholders are perpetual rivals ','','','a','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(134,'The difference between the output proceedings of Nigerians abroad and foreigners in Nigeria is known as;  ','Net export to abroad  ','Net import from abroad  ','Net income from abroad  ','Net income to abroad','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:01'),(135,'A stock variable is measured;  ','Over a period  ','At a point  ','Consistently  ','Intermittently ','','','b','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:02'),(136,'The following is not true of price mechanism ','Equilibrium price is determined by forces of demand and supply  ','Individual households and firms pursue personal interest  ','Producers and consumers are rational in decision making ','Price control in prominent in the commodity and input markets.','','','d','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:03'),(137,'In the short run, all of the following are applicable except  ','Output may be increased by changing all factors by the same proportion  ','Diminishing returns   ','There are sunk costs ','The total cost curve is the same as the total variable cost curve ','','','a','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:04'),(138,'The sum of MPS and MPC is  ','greater than 1 but less than infinity  ','greater than 0 but less than 1 ','equal to 1 ','none of the above','','','c','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:06'),(139,'For a perfectly competitive market, the shape of the --------- is horizontal while the ----------- is downward slopping  ','industry’s demand curve/industry’s supply curve  ','firm’s supply curve/industry’s demand curve  ','firm’s demand curve/industry’s demand curve  ','industry’s demand curve/firm’s demand curve','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:07'),(140,'Demand for money is: ','Composite demand  ','Derive demand  ','Joint demand  ','C and B ','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:08'),(141,'If the cross elasticity of demand between X and Y is zero, then   ','X and Y are substitutes ','X and Y are complements ','X and Y are dependent on each other  ','X and Y are independent of each other ','','','d','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:10'),(142,'Which of the following correctly defines inflation? ','A one-time increase in commodity prices ','A period when prices increase rapidly','A sustained increase in the overall price level ','An increase in the overall level of business activity','','','c','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:24'),(143,'If a market for good X is in disequilibrium, which of the following statements is true about the quantity of X that is actually exchanged?  ','It is determined by the forces of demand  ','it is determined by the forces of supply  ','it is determined by both demand and supply forces  ','it is determined by the forces of demand or supply whichever is shorter ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:25'),(144,'How can we eliminate a surplus in a commodity market? ','Increase quantity supplied ','Decrease quantity demanded  ','Allowing price to fall towards equilibrium  ','Allowing price to rise towards equilibrium ','','','c','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-18 20:07:06'),(145,'Identify one among the following which is NOT part of the objectives or functions of the African Development Bank (ADB). ','Provision of technical assistance for development projects   ','Provision of funds for the supply and demand of infrastructural facilities  ','Adoption of a common tariff policy for trade and development  ','Provision of fund for agricultural development','','','c','','post-utme','2013',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:27'),(146,'When the product of any one firm in an industry is not  perceived by consumers as a perfect substitute for the product of any other firm in the same industry, we have ','Perfect competition','Monopoly  ','Oligopolist ','Monopolistic competition   ','','','b','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-21 11:50:00'),(147,'In which of the following situations do we have a free good?  ','At zero price, more is demanded than supplied  ','At zero price, quantity supplied exceeds quantity demanded  ','At equilibrium price, quantity supply is equal to quantity demanded. ','Any quantity can be obtained when the price is low ','','','b','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:29'),(148,'In economics, a commodity is said to have an opportunity cost because  ','The price of the commodity is high  ','The commodity is scarce  ','Another good may have been purchased instead of it  ','The commodity provides many benefits','','','c','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:30'),(149,'One among the following options is not correct ','Any point inside the production possibility curve indicates unemployment or underemployment  ','Increase in the price of a commodity leads to a fall in the demand for its substitute ','The fixing of price above the equilibrium price level leads to surplus of the commodity ','An increase in both market supply and market demand may not result in a change in equilibrium price and quantity. ','','','d','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:31'),(150,'A country’s aggregate consumption was N20 million when its GDP was N100million. Following an increase in GDP to N120 million, consumption increased to N25 million. The marginal propensity to consume is given as','0.25','0.5','0.75','0.8','','','a','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:37'),(151,'Which of the following is not a measure for controlling inflation by the central bank?  ','Open market operation  ',' Reserve requirements  ','Sale of treasury bills ',' change of central Bank Governor','','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:39'),(152,'A 50% increase in the quantity demanded of a commodity, following a 100% decrease in its price, shows that the commodity has ','Fairly elastic demand  ','Unitary elastic demand','Inelastic demand','Perfectly elastic demand ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:40'),(153,'A total utility is increasing, marginal utility is  ','Negative and decreasing  ','Positive and increasing  ','positive and decreasing   ','Zero','','','c','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:41'),(154,'Which of the following statements is true? ','Disposable income is the only variable that determines consumption   ','Investment spending is positively related to the rate of interest   ','imports lead to a decrease in the level of exports  ','Imports lead to a decrease in spending on locally produced goods and services.','','','d','','post-utme','2013',98,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:42'),(155,'Which of the following will benefit a producer who wants to maximize profit?  ','reduce price when demand is inelastic ','increase price when demand is elastic   ','reduce price when demand is elastic  ','fixed the price of his commodity based on the price of other producers.','','','c','','post-utme','2013',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:45'),(156,'Based on the fact that demand curve shows the maximum price at which consumers will buy, it then shows ','average benefit   ','marginal benefit  ','total benefit  ','optimal satisfaction ','','','b','','post-utme','2013',86,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(157,'Money that a government has required to be accepted in settlement of debts is ','commodity money  ','currency value  ','barter   ','legal tender ','','','d','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:47'),(158,'Which of the following is one of the responsibilities of the Central Bank of Nigeria? ','issuing new bond to finance public sector borrowing requirements  ','auditing the various agencies and departments of government  ','loaning money to other countries that transact business with Nigeria  ','assisting banks that are in financial position ','','','a','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:54'),(159,'The law of comparative cost and absolute cost advantage are not the same is that; ','Former require that one of the countries has absolute advantage in the two goods but latter does not   ','Former requires one country to have at least absolute advantage in one of the trading goods over the other country but latter does not.','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in all the goods.  ','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in at least one of the goods.','','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:55'),(160,'When demand for a product is price inelastic, the following can happen  ','Consumers suffer the entire increase in tax on the product   ','producer suffers the entire increase in tax on the product  ','producer suffers larger proportion of the increase in tax on the product  ','consumers suffer larger proportion of the increase in tax on the product ','','','d','','post-utme','2013',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:56'),(161,'Disposable income means:','Income that is lost after tax has been removed   ','Income that could be spent when tax has been removed   ','Income that tax authority mandated to be given to charity when tax has been removed  ','Income to be disposed secretly for future spending after tax has been removed ','','','b','','post-utme','2013',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:57'),(162,'In economics, the pleasure, happiness, or satisfaction received from a product is called: ','Marginal cost ','Rational outcome ','Status fulfillment ','Utility.','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:07'),(163,'A person should consume more of something when its marginal: ','benefit exceeds its marginal cost ','cost benefit ','cost equal its marginal benefit ','benefit is still positive.','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:18'),(164,'Macroeconomics can best be described as the: ','analysis of how a consumer tries to spend income ','study of the large  aggregates of the economy or the economy as whole ','analysis of  how firms attempt to maximum their profits ','study of how supply and demand determine price in individual markets.','','','b','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:44'),(165,'When economics say that people act rationally in their self-interest, they mean that individual: ','look and pursue opportunities to increase their utility ','generally disregard the interest of others ','are mainly creatures of habit ','are unpredictable','','','a','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:01'),(166,'As it relates to international trade, dumping: ','is a form of price discrimination illegal under U.S antitrust laws ','is the practice of selling goods in a foreign market at less than the cost ','Constitutes a general case for permanent tariffs ','is defined as selling more goods than allowed by an import quota.','','','b','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:07'),(167,'A nation’s production possibility curve is bowed out from the origin because:','wants are virtually unlimited ','the originator of the idea drew it this way and modem economists follow this convention ','resources are scare ','resources are not equally efficiency in producing every good.','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:11'),(168,'If the production possibilities, curve were a straight down sloping line, this would suggest that: ','it is possible to produce  more of both products ','resources are perfectly shift able between the production  of these two goods ','both products are equally capable of satisfying consumer wants ','the two products have identical price.','','','b','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:16'),(169,'Productive efficiency refers to: ','the use of the least-cost method of production ','the production of the product-mix most wanted by society ','the full employment of all available resources ','production at some point inside of the production possibilities curve.','','','a','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:22'),(170,'Which of the following statement is correct? ','if demand increase and supply decrease equilibrium price will fall ','if supply increase and demand decrease, equilibrium price will fall ','It demand decrease and supply increase increases, equilibrium price will rise ','If supply declines and demand remain constant, equilibrium price will fall.','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:33'),(171,'If depreciation exceeds gross investment: ','the economy’s stock of capital may be either growing or shrinking  ','the economy’s stock of capital is growing ','net investment is zero ','the economy’s stock of capital is shrinking.','','','d','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:38'),(172,'Assuming the total population is 100 million, the civilian labour force is 50 million and 47 million workers are employed, the unemployment rate is ','3%','6%','7%','5.30%','','','b','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:39'),(173,'Unemployment involving a mismatch of the skills of unemployment workers and the skill required for available jobs is called: ','frictional unemployment ','structural unemployment ','cynical unemployment ','','','','b','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:40'),(174,'The greater is the marginal propensity to consume, the: ','smaller is the marginal propensity to save ','higher is the interest rate ','lower is the average propensity to consume ','lower is the rice level.','','','a','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:41'),(175,'Investment and saving are, respectively: ','income and wealth ','stock & flows ','injection: and leakages ','leakages and injections:','','','c','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:43'),(176,'The amount by which government expenditures exceed revenues during a particular year is the: ','public debt ','budget deficit ','full- employment ','GDP gap.','','','a','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-21 11:42:58'),(177,'The value of money varies ','inversely with the price of level ','directly with the volume of employment ','directly with the price level ','directly with the interest rate.','','','a','','post-utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:45'),(178,'If actual reserves in the banking system are #40,000, excess reserves are #10,000, and checkable deposits are #240,000, then the legal reserve requirement is: ','10%','12.50%','20%','5%','','','b','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:46'),(179,'The discount rate is the interest: ','rate at which the Central Bank of Nigeria lends in the Nigeria Government ','yield on long-term government bonds ','rate at which commercial banks lend to the public ','rate at which the Central Banks of Nigeria lend to commercial banks.','','','d','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:47'),(180,'Assume a household would consume N100 worth of goods and services per week if its weekly income were zero and would spend an additional N80 per week for each 100 of additional income, if C represents consumption and Y income the equation that summarizes this relationship is','C =8+100Y ','C=100+8Y ','C = 100+80Y ','C=80+1Y','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:48'),(181,'For a bicycle company, an economist predicted that, other things being equal, a rise in consumer incomes will increase the demand for bicycles. This prediction is based on the assumption that: ','there are many goods that are substitutes for bicycles ',' there are many goods that are many goods that are substitutes for bicycles','there are many goods that are substitutes for bicycles ','bicycles are normal goods','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:49'),(182,'A demand curve which is parallel to the horizontal axis is','perfectly inelastic ','perfectly elastic ','relatively inelastic ','relatively elastic.','','','b','','post-utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:50'),(183,'Allocative efficiency occurs only at that output where: ','marginal benefit exceeds marginal cost the by greatest ','consumer surplus exceeds producer surplus by the greatest amount ','the areas of consumer and producer surplus are equal ','the combined amounts of consumer surplus and producer surplus are maximizes.','','','d','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:51'),(184,'The primary problem of economics is: ','to obtain more equitable distribution of money income ','production of a given output with the lowest cost combination of factors of production ','Adoption of capital- intensive technology ','Increasing the quantity of the fixed factor of production.  ','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:52'),(185,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',87,'Admin','2016-11-12 19:57:40','2020-07-16 12:39:39'),(186,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:09','2020-07-14 14:27:53'),(187,'The economic system in which resources are privately owned is known as','capitalism','socialism','Communism','unitarism','','','a','','wassce','2001',88,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:54'),(188,'Quasi-rent refers to','Payment made on acquisition of firm’s premises','Payment  made  for  the  procurement  of  tools  and equipment','Returns on investment','Payment made on  any  factor  of  production  that  is temporarily fixed in supply','','','d','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:55'),(189,'The reward for entrepreneurship is','rent','wages','Interest','profit','','','d','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:56'),(190,'Which of the following is function of an entrepreneur?','Avoidance of risks','Decision making','Employment control','Organizing unions','','','b','','wassce','2001',80,'Admin','2016-11-12 20:04:11','2020-07-16 12:39:39'),(191,'The difference between the highest and lowest in a set of data is the','Range','median','variance','mode','','','a','','wassce','2001',98,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:58'),(192,'In which of the following economic systems is the consumer referred to as King?','Capitalist economy','Socialist economy','Communist economy','Mixed Economy','','','a','','wassce','2001',96,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:59'),(193,'The dispersal of people in a country is called','mobility of people','geographical distribution','occupational distribution','state distribution','','','a','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:00'),(194,'In a country with ageing population, the total population','comprises young school leavers only','comprises mainly women','is increasing at a low rate','has reached the optimum level','','','c','','wassce','2001',101,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:01'),(195,'Population growth can be controlled by all the following except','legalizing abortion','incentives on immigration','family planning','limiting number of children per family','','','b','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:02'),(196,'Performance of one task in a production process is known as','Specialization','standardization','division of labour','segmentation','','','a','','wassce','2001',100,'Admin','2016-11-12 20:04:11','2020-07-16 12:39:39'),(197,'The marginal product at the fourth variable factor is','12','9','8','6','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',98,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:04'),(198,'The difference between the highest and the least marginal','product of the variable factor is    \\n\t3','8','10','12','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','a','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:04'),(199,'The average product of the variable factor when four units are employed is','6','8','12','48','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-21 11:33:29'),(200,'The cost incurred by using both fixed and variable factors in production is called','marginal cost','fixed cost','total cost','average cost','','','c','','wassce','2001',97,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:06'),(201,'Consumers buy more of a commodity at a lower price than at a higher price because','producers like to produce more','in any given situation, people like to buy more','consumers like to show off','with the same amount of money, they will be able to buy more','','','d','','wassce','2001',83,'Admin','2016-11-12 20:04:11','2020-07-21 11:49:55'),(202,'The demand for a commodity not directly for immediate consumption but for the production of another commodity is','competitive demand','derived demand','composite demand','joint demand','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:14'),(203,'Which of the following is a luxury item?','Petrol','Textbook','Pencil','Gold','','','d','','wassce','2001',91,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:15'),(204,'If the quantity demanded of a particular commodity is represented by the function Qd = 30 - 2p. What is the quantity demanded at a price of twelve Naira?','6 units','8 units','10 units','12 units','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:16'),(205,'The responsiveness of demand to a change in income is the measurement of','foreign exchange rate','cross elasticity of demand','income elasticity of demand','price index elasticity','','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:17'),(206,'The upward sloping of the supply curve indicates that','more will be supplied as price rises','less will be supplied as price rises','supply is not a function of price','supply is static and demand is dynamic','','','a','','wassce','2001',102,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:18'),(207,'Monoculture agriculture means','the cultivation of seasonal crops','the cultivation of one major crop','plantation agriculture','shifting cultivation!','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:19'),(208,'Industries are not sited in most rural areas of Nigeria because','of inadequate basic infrastructure','they lack raw materials','there is no appropriate government policy','the climate is not conducive','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:19'),(209,'Which of the following business units can issue shares?','Sole trader','Private limited company','Central Bank','Supermarket','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:20'),(210,'When the government initiates measures to make an organization in which it has substantial interest more profit \toriented, such a business is described as being','indigenized','restructured','Privatized','commercialized','','','d','','wassce','2001',70,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:21'),(211,'Which of the following is not a trade union in Nigeria?','Nigerian Labour Congress','Academic Staff Union of Universities','Nigerian Economic Society','Nigerian Union of Journalists','','','c','','wassce','2001',96,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:22'),(212,'The monopolist power can be controlled by the government through','Labour union','Price legislation','import restrictions','export promotion','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:23'),(213,'Which of the following is not a condition for a perfect market?','Homogenous commodity','Ignorance of consumers','Perfect information','Free entry and exit','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:24'),(214,'The reward for shareholdership of a company is','Wages','interest','dividends','profit','','','c','','wassce','2001',94,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:25'),(215,'In a public corporation, the risks of business are borne by the','workers','tax payers','board members','treasury','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:26'),(216,'One of the functions of money is','double coincidence of wants','unit of account','indivisibility','making payments through banks only','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:27'),(217,'Money is demanded for which of the following reasons?','To meet unforeseen contingencies','To solve the problem of inflation','It is easily divisible','It is portable','','','a','','wassce','2001',104,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:28'),(218,'The Quantity Theory of money states that a reduction in the quantity of money in circulation would bring about','a geometrical fall in prices','a proprotionate fall in price','a rise in prices','an unequal fall in prices','','','b','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:29'),(219,'Which of the following is the most liquid asset?','Bank notes','Silver','Bank deposit','Cheques','','','b','','wassce','2001',106,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:30'),(220,'The situation in which there is a persistent fall in the general price level is referred to as','devaluation','depreciation','deflation','inflation','','','c','','wassce','2001',77,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:31'),(221,'Commercial banks settle their daily interbank indebtedness through the','Money Market','Finance House','Acceptance House','Clearing House','','','d','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:32'),(222,'One disadvantage of inflation is that','fixed income earners gain','fixed income earners lose','businessmen lose','standard of living rises','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:33'),(223,'Short-term loans can be sourced from','the central bank','development banks','mortgage banks','commercial banks','','','d','','wassce','2001',81,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:34'),(224,'If there is an increase in wages and salaries without a corresponding increase in the supply of goods and services, the situation will lead to','a reduction in aggregate demand','inflation','depression','budget surplus','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:35'),(225,'Public expenditure can be financed from all the following sources except','borrowing','grant-in-aid','royalties and rents','Mobilization fees','','','a','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:36'),(226,'Which of the following is a direct tax?','Import duty','Export duty','Capital gain tax','Sales tax','','','c','','wassce','2001',92,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:37'),(227,'Tax evasions means','postponing payment of tax','tax payment according to ability to pay','making false declaration of taxable income','paying little amount of money as tax','','','c','','wassce','2001',95,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:38'),(228,'A greater burden of tax on a product with high price elasticity of demand rests mainly on the','producer','teacher','civil servant','middlemen','','','a','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:39'),(229,'An ad valorem tax refers to a tax','imposed on exports','on goods manufactured in the country','based on the value of the commodity','levied on income','','','c','','wassce','2001',101,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:40'),(230,'Which of the following is associated with the development of the petroleum industry in Nigeria?','Neglect of agriculture','Increase in population growth','Increase in the rate of Unemployment','Decrease in the rate of inflation','','','a','','wassce','2001',98,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:41'),(231,'The following are examples of economic goods except','bottled water','air','household utensils','shelter','','','b','','wassce','2010',80,'Admin','2016-11-12 20:44:26','2020-07-14 14:28:42'),(232,'A tent-making factory offers','personal services','indirect services','social services','reflex services','','','b','','wassce','2010',81,'Admin','2016-11-12 20:44:28','2020-07-14 14:28:43'),(233,'In which of the following economic systems do we have mostly private ownership of resources and individual','decision making?','Capitalist system','Socialist system','Mixed system','','','a','','wassce','2010',93,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:44'),(234,'The sum of items divided by the number of items is the','Frequency','mean','median','mode','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:45'),(235,'Find the median of the following set of scores: 8, 9, 6, 5, 10','9','8','6','5','','','b','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:46'),(236,'Which of the following causes the demand curve to shift to the right?','A reduction in the size of population','An increase in the income of the buyer','The availability of substitutes','A decrease in price of the good','','','d','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:47'),(237,'Goods for which demand rises as income rises are','complementary goods','inferior goods','normal goods','substitutes','','','c','','wassce','2010',87,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:48'),(238,'The slope of a supply curve is','Horizontal','uniform','positive','vertical','','','c','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:49'),(239,'Equilibrium price is the price at which quantity','demanded is greater than quantity supplied','supplied is greater than quantity demanded','demanded is equal to quantity supplied','supplied equals quantity produced','','','c','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:50'),(240,'A decrease in supply with demand remaining unchanged will cause the equilibrium price for a good to','be unchanged','remain elastic','remain inelastic','rise','','','d','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:51'),(241,'At the highest level of total utility, marginal utility is','Negative','positive and falling','positive and rising','zero','','','d','','wassce','2010',63,'Admin','2016-11-12 20:44:29','2020-07-15 09:09:54'),(242,'The law of diminishing marginal utility states that, the more a commodity is consumed the','higher the satisfaction derived from an additional unit','higher the price to be paid','lower the quantity supplied','lower the rate of increase in the total utility derived','','','d','','wassce','2010',87,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:53'),(243,'Greater inter-dependence among workers in production is associated with','utility','manufacturing','division of labour','factory workers','','','c','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:54'),(244,'If TC, FC and VC represent total cost, fixed cost and variable cost respectively, which of the following is\\n\tcorrect?','TC = FC-VC','FC = TC + VC','TC > FC + VC','TC = FC + VC','','','d','','wassce','2010',93,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:55'),(245,'The reward to land as a factor of production is','Profit','rent','interest','wage','','','b','','wassce','2010',85,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:57'),(246,'A firm is said to be a public joint stock company when it','is owned by the government','sells its shares to members of the public','operates as a government corporation','is not legally recognized as a firm','','','b','','wassce','2010',100,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:58'),(247,'All the following are sources of finance to a joint stock company except','debentures','cooperative loans','shares','bank loans','','','b','','wassce','2010',73,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:59'),(248,'The public sector of an economy includes','cooperative societies','nationalized industries','joint stock companies','pressure groups','','','b','','wassce','2010',89,'Admin','2016-11-12 20:44:29','2020-07-14 14:29:00'),(249,'One advantage of the Sole Proprietorship over other forms of business organizations is that it can','make very high profits','employ many workers','keep its affairs private','produce on a very large scale','','','c','','wassce','2010',69,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:01'),(250,'Which of the following is obtainable in a perfect market?','P = MR >AR','MR = MC>P','MR < P','P = MR = MC','','','d','','wassce','2010',73,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:03'),(251,'The wholesaler performs the following functions except','breaking the bulk','offering credit facilities to consumers','financing manufacturers','buying in bulk from manufacturers','','','b','','wassce','2010',83,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:05'),(252,'Age Group\t[0 -15\t\t30%], [16 - 40\t\t27%], [41 - 60\t\t25%], [61 and above\t18%] The data shows the age distribution of a country \\n\tin 1983. Using the data, calculate the percentage of working population in 1983.','48%','52%','57%','70%','','','b','','wassce','2010',84,'Admin','2016-11-12 20:44:33','2020-07-16 12:39:39'),(253,'A country whose population size is too small relative to its resources is','over populated','optimally populated','under populated','producing the optimum output','','','c','','wassce','2010',81,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:08'),(254,'An efficient weapon used in resolving disputes between employers and employees is','co – operation','collective bargaining','display of placards','legal action','','','b','','wassce','2010',65,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:10'),(255,'Which of the following does not explain why a school principal earns more salary than a school messenger?','Length of training','Demand and Supply','Cost of training','The messenger is a non-teaching staff','','','b','','wassce','2010',78,'Admin','2016-11-12 20:44:33','2020-07-16 12:39:39'),(256,'The role of government in promoting agricultural development includes the following except','paying the wages of all farmers','establishing and funding research','formulation of policies','provision of rural infrastructure','','','a','','wassce','2010',93,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:12'),(257,'The following are advantages of large scale agriculture except','use of simple implements','use of sophisticated implements','increase in employment','integration of crop and animal farming','','','a','','wassce','2010',84,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:14'),(258,'The following are all factors determining the location of industry except','minimum wage rate','availability of labour','nearness to raw materials','proximity to market','','','a','','wassce','2010',85,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:15'),(259,'Which of the following is not a concept in National income accounting?','Domestic National Product (DNP)','Gross National Product (GNP)','Gross Domestic Product (GDP)','Net Domestic Product (NDP)','','','a','','wassce','2010',100,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:17'),(260,'Which of the following equations is appropriate for determining the Net Domestic Product (NDP)?','NDP = GNP – depreciation','NDP = GDP + Net Income from abroad','NDP = GDP – depreciation','NDP = GDP x Net Income from abroad','','','c','','wassce','2010',91,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:18'),(261,'Which of the following over estimates the value of national income?','Incomplete statistical data','Wrong timing of computation','Changes in prices of goods within the year','Double counting','','','d','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:19'),(262,'The total stock of money available for use in an economy is','a function of money','a characteristic of money','the demand for money','the supply of money','','','d','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:21'),(263,'Which of the following is not a reason for holding money?','Ostentation','Speculation','Transactions','Precautionary','','','a','','wassce','2010',76,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:22'),(264,'The best way of combating demand-pull inflation is to','increase income taxes','reduce income taxes','increase import duties','increase salaries and wages','','','a','','wassce','2010',81,'Admin','2016-11-12 20:44:34','2020-07-16 12:39:39'),(265,'In which of the following ways has','Increase in money supply','A fall in real income','Appreciation in the value of money','Increased employment','','','b','','wassce','2010',80,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:24'),(266,'Which of the following is a legal tender?','Bank notes','Bank overdrafts','Bills of exchange','Money order','','','a','','wassce','2010',73,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:25'),(267,'The Central Bank controls money supply through all the following except','lending to the public','bank rate','legal reserve requirements','open market operation','','','a','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:27'),(268,'One of the functions of the Central Bank is','production of goods','issuing of currency','presenting budgets','printing of cheque book','','','b','','wassce','2010',80,'Admin','2016-11-12 20:44:34','2020-07-21 11:42:46'),(269,'The function of the Central Bank as a lender of last resort means that when all other sources fail','the consumer can always borrow money from the Central Bank','the government can ask the Central Bank to print more money','commercial banks can raise loans from the Central Bank','commercial banks can deposit money with the Central Bank','','','c','','wassce','2010',97,'Admin','2016-11-12 20:44:34','2020-07-21 15:58:01'),(270,'One disadvantage of direct taxes is that they','allocate scarce resources','are not rigid','can be progressive.','can be evaded','','','d','','wassce','2010',88,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:31'),(271,'Human wants are','Limited','scarce','unlimited','in grades','','','c','','wassce','2012',84,'Admin','2016-11-12 21:02:57','2020-07-14 14:29:32'),(272,'The difference between the money cost and the real cost of any item is that','real cost is the alternative forgone while the money cost is the actual amount paid for buying the item','the real cost is the opportunity cost, while the money cost is the marginal cost','money cost is the opportunity cost, while the real cost is the actual cost in monetary terms','money cost is always greater than real cost','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:34'),(273,'The Production Possibility Curve (PPC) indicates that as \tmore of one good is produced','less of the other good is produced','the same quantity of the other good is produced','more of the other good is produced','none of the other good is produced','','','a','','wassce','2012',75,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:35'),(274,'An arrangement of data in rows and columns is referred to as a','Graph','bar chart','pie chart','Table','','','d','','wassce','2012',92,'Admin','2016-11-12 21:03:03','2020-07-16 12:39:39'),(275,'A normal demand curve slopes','downwards from left to right','upwards from right to left','downwards from right to left','upwards from left to right','','','a','','wassce','2012',73,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:37'),(276,'The co-efficient of income elasticity of demand for inferior goods is','Positive','equal to one','less than one','negative','','','d','','wassce','2012',75,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:39'),(277,'If a 20% rise in the price of  Whisky leads to a 30% increase in quantity demanded of Schnapps, the cross elasticity of demand is','3.0','2.5','2.3','1.5','','','d','','wassce','2012',77,'Admin','2016-11-12 21:03:04','2020-07-16 12:39:39'),(278,'Palm oil and palm kernel have','competitive supply','excess supply','joint supply','composite supply','','','c','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:42'),(279,'A supply curve which is vertical has an elasticity co-efficient of','0','0.5','1.5','2','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:04','2020-07-15 09:09:54'),(280,'If the current price of an apple is twice that of last year, it implies that the value of money is','Stable','falling','rising','getting stronger','','','b','','wassce','2012',73,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:44'),(281,'Price fixed above the equilibrium is to','protect agricultural producers','discourage agricultural producers','lower the prices of agricultural produce','favour consumers','','','a','','wassce','2012',89,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:46'),(282,'A consumer purchasing a commodity X will maximize his satisfaction if','Px = Mux','Px  >_  MUx','Px > Mux','Px < Mux','','','a','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:48'),(283,'When total utility is constant, it means marginal utility is','Increasing','zero','decreasing','one','','','b','','wassce','2012',75,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:49'),(284,'A rational consumer is one who','spends his income to maximize satisfaction','is not influenced by advertisement','behaves in a particular way all the time','knows the prices of all goods and buys the cheapest','','','a','','wassce','2012',80,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:50'),(285,'Which of the following is not true about land?','The supply is fixed','Land is mobile','It is subject to diminishing returns','Land is heterogeneous','','','b','','wassce','2012',59,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:52'),(286,'The type of production that involves the tapping and \tharnessing of natural resources is','primary production','secondary production','tertiary production','industrial production','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:54'),(287,'Which of the following does not change in the short run?','Variable cost','Marginal cost','Total cost','Fixed cost','','','d','','wassce','2012',83,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:55'),(288,'The resources used in production are called','variable inputs','factors of production','capital for production','fixed inputs','','','b','','wassce','2012',99,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:57'),(289,'A firm will shut down in the long run if its earning is','less than normal profit','greater than normal profit','equal to super normal profit','less than super normal profit','','','a','','wassce','2012',65,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:58'),(290,'A market structure where profit is maximized when marginal \trevenue, marginal cost and price are equal is known as','perfect competition','monopoly','oligopoly','imperfect competition','','','a','','wassce','2012',85,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:59'),(291,'In which of the following markets does a firm have power to \tmake super normal profits both in the short run and long run?','Monopol','Duopoly','Oligopoly','Monopsony','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:30:00'),(292,'If there arc no barriers to entering a market, it means that','anyone can become a buyer or seller','unwanted goods can always enter the market','the market becomes a dumping ground','the goods are not inspected','','','a','','wassce','2012',77,'Admin','2016-11-12 21:03:04','2020-07-16 12:39:39'),(293,'A firm’s main aim is to','survive in business','maximize profits','increase its market share','satisfy the ambitions of its managers','','','b','','wassce','2012',77,'Admin','2016-11-12 21:03:04','2020-07-14 14:30:03'),(294,'One good reason for the elimination of middlemen is that they','cause increase in price','help in price stability','grade and blend goods','are too many','','','a','','wassce','2012',84,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:05'),(295,'The increase in population growth in big cities is referred to as','settlement','migration','industrialization','Urbanization','','','d','','wassce','2012',75,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:06'),(296,'Frictional unemployment can be reduced by','encouraging the use of retraining schemes','removing barriers to labour mobility','restricting the introduction of new technology','lowering the level of wages paid to young people','','','a','','wassce','2012',88,'Admin','2016-11-12 21:03:08','2020-07-21 11:27:15'),(297,'If the labour force of a country is 2.5 million and 2 million are employed, what is the unemployment rate?','0.2%','20%','200%','250%','','','b','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:08'),(298,'The grouping of population according to the economic activities people engage in is','age distribution','sex distribution','geographical distribution','occupational distribution','','','d','','wassce','2012',92,'Admin','2016-11-12 21:03:08','2020-07-16 17:21:34'),(299,'Natural growth rate of population can be defined as the','difference between birth rate and death rate','number of births in a year','increase in the population growth in a year','difference between the total population and the death rate','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:11'),(300,'Which of the following is not a consequence of increased unemployment?','A fall in tax revenue for the government','A reduction in trade union’s influence','A fall in the death rate','An increase in the labour force','','','c','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:12'),(301,'The following are features of subsistence agriculture except','little capital','processing of raw materials','small allotments of land','use of crude implements','','','b','','wassce','2012',84,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:13'),(302,'Which of the following is not true of small companies?','The cannot benefit from economics of scale','are a good source of new jobs','can satisfy demand in specialist markets','have a good record of technical innovations','','','d','','wassce','2012',94,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:15'),(303,'The effect of privatization on the industrial sector of a country is that it','ensures efficiency','discourages efficiency','leads to decrease in output','leads to liquidation','','','a','','wassce','2012',84,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:16'),(304,'The production strategy used in an over populated country is','import substitution','capital intensive','labour intensive','first come first employed','','','c','','wassce','2012',76,'Admin','2016-11-12 21:03:08','2020-07-21 11:58:16'),(305,'National income is used to measure','a country’s population size','a country’s economic growth','the human level of development','the flow of imports to a country','','','b','','wassce','2012',75,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:19'),(306,'A tax is regressive if the','rate of tax is constant at all income levels','rate of tax decreases as income increases','rate of tax increases as income increases','tax is direct rather than indirect','','','b','','wassce','2012',82,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:20'),(307,'When a country’s net income from abroad is added to its total \toutput, the result is','gross domestic product','net national product','gross national product','net domestic product','','','c','','wassce','2012',77,'Admin','2016-11-12 21:03:09','2020-07-21 12:06:23'),(308,'A fall in national output will necessitate','a rise in expenditure on imports','a rise in the level of savings','an increase in consumption expenditure','a rise in the standard of living','','','a','','wassce','2012',99,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:22'),(309,'The demand for money to take advantage of changes in bond \tprices is the','unforeseen motive','transaction motive','speculative motive','precautionary motive','','','d','','wassce','2012',71,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:23'),(310,'Cost push inflation is caused by a','rise in the cost of production','decrease in the transportation cost','rise in demand for goods','decrease in the cost of production','','','c','','wassce','2012',88,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:24'),(311,'Deposits held in a commercial bank are part of','money supply','transfer payments','ordinary shares','treasury bills','','','a','','wassce','2012',89,'Admin','2016-11-12 21:03:12','2020-07-14 14:30:27'),(312,'One profitable form of business undertaken by the commercial banks is','the issuing of cheques','the payment of standing order','lending money to borrowers','accepting cheques from customers','','','c','','wassce','2012',84,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:28'),(313,'When governments want to discourage consumption, they \ttax goods whose demand','price inelastic','abnormal in nature','price elastic','normal in nature','','','c','','wassce','2012',89,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:30'),(314,'A rise in government expenditure can lead to','higher inflation','higher unemployment','lower profits for industries','lower importation of raw materials by industries','','','a','','wassce','2012',109,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:31'),(315,'Tariff is used to protect domestic industries by making foreign goods relatively','cheaper in the domestic market','more expensive in the domestic market','more expensive in the international market','cheaper in the international market','','','b','','wassce','2012',87,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:33'),(316,'Musa has a choice of buying a shirt, a book and a bag. What is the opportunity cost of buying a book?','A bag only','A book and a bag','A shirt and a bag','A shirt only','','','c','','utme','2009',102,'Admin','2016-11-12 21:38:46','2020-07-14 14:30:34'),(317,'A typical feature of a market economy is that','all producers make profit','full employment exists','consumer sovereignty exists','there is equality of economic agents','','','c','','utme','2009',111,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:35'),(318,'The privatization exercise in Nigeria is a move towards a','mixed economy','subsistence economy','market economy','command economy','','','c','','utme','2009',110,'Admin','2016-11-12 21:38:47','2020-07-16 12:39:39'),(319,'A high rent on land will affect the cost of producing maize','positively','negatively','at the early stage of production','at the later stage of production','','','b','','utme','2009',109,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:38'),(320,'If the  active  population  is 50  million and unemployed is 5 million, what is the unemployment rate?','10%','45%','55%','90%','','','a','','utme','2009',100,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:40'),(321,'A cumulative frequency graph is','a histogram','an ogive','a bar chart','a pie chart','','','b','','utme','2009',113,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:41'),(322,'A movement along the same demand curve is caused by the','price of the product','price of other products','income of the consumer','taste of the consumer','','','a','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:43'),(323,'The demand curve for a luxury good is','negatively sloped','parallel to the price axis','parallel to the quantity axis','positive sloped','','','d','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:45'),(324,'Price elasticity of demand is expressed as','percentage change in price percentage change in quantity demanded','percentage change in quantity demanded percentage change in Income','percentage change in Income percentage change in quantity demanded','percentage change in quantity demande percentage change in price','','','d','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:46'),(325,'A major assumption in cardinal utility theory is that','utility is measurable','utility is not measurable','total utility equals marginal utility','total utility is constant','','','a','','utme','2009',108,'Admin','2016-11-12 21:38:47','2020-07-16 17:21:34'),(326,'A supply curve is positively sloped because','supply always exceeds demand','demand always exceeds supply','price is an incentive to consumers','price is an incentive to producers','','','d','','utme','2009',106,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:49'),(327,'The short-run supply curve for medical doctors is more  likely to be','perfectly elastic','perfectly inelastic','fairly inelastic','fairly elastic','','','b','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:51'),(328,'If the price of an item changes by 8% and quantity supplied changes from 600 units to 660 units, the price elasticity of supply is','0.80','1.25','2.00','10.00','','','b','','utme','2009',106,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:52'),(329,'In a regulated market, price is determined by','Consumers','producers','auction','government','','','d','','utme','2009',102,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:54'),(330,'A decrease in supply without a corresponding change in demand will lead to','an increase in equilibrium price and a decrease equilibrium quantity','a decrease in equilibrium price and an increase in equilibrium quantity','a decrease in equilibrium price and equilibrium quantity','an increase in equilibrium price and quantity','','','a','','utme','2009',96,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:55'),(331,'Production takes place when','output is transformed into input','machines replace human effort','input is transformed into output','there is specialization and division of labour','','','c','','utme','2009',110,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:57'),(332,'The marginal product of the 5th unit of capital is','42','85','114','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','d','','utme','2009',92,'Admin','2016-11-12 21:38:47','2020-07-14 14:30:58'),(333,'Determine the average product of the 4th unit of capital','53','86','212','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','a','','utme','2009',103,'Admin','2016-11-12 21:38:47','2020-07-14 14:31:00'),(334,'Which of the following can be deduced from law of variable proportions when total output is rising?','MP is greater than AP','MP is less than AP','MP is equal to AP','MP is equal to zero','','','d','','utme','2009',107,'Admin','2016-11-12 21:38:47','2020-07-14 14:31:02'),(335,'As the level of output increases, the average fixed cost of a firm will','continue to increase','remain uncharged','continue to decrease','be equal to the total cost','','','c','','utme','2009',118,'Admin','2016-11-12 21:38:48','2020-07-16 12:39:39'),(336,'The shape of the long-run average cost curve is best explained by the','law of diminishing returns','law of returns to scale','cost of fixed inputs','cost of variable inputs','','','a','','utme','2009',112,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:14'),(337,'The supply curve of a perfectly competitive firm is identical to its','total cost','marginal cost','fixed cost','variable cost','','','b','','utme','2009',101,'Admin','2016-11-12 21:38:48','2020-07-19 12:29:50'),(338,'If a monopolist is incurring short–run losses, this means that his','selling price is above the short–run marginal cost','selling price is below the short–run marginal cost','average revenue is greater than marginal revenue','average revenue is less than marginal revenue','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:16'),(339,'In the long run, one of the characteristics of monopolistic competitive firms is that the','make  abnormal profits','suffer losses','make normal profits','collude with each other','','','a','','utme','2009',129,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:18'),(340,'In developing countries, it is easier to obtain accurate national income estimates through the','GNP','GDP','NDP','NNP','','','b','','utme','2009',117,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:19'),(341,'Double counting is a problem in computing national income when using the','expenditure method','income method','output method','value–added method','','','c','','utme','2009',91,'Admin','2016-11-12 21:38:48','2020-07-21 11:51:04'),(342,'In the circular flow of income, an increase in saving causes','an increase in imports','a decrease in the income stream','an increase in household consumption','a decrease in exports','','','b','','utme','2009',101,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:21'),(343,'The ability of commercial banks to create money depends on the','Ratio','liquidity ratio','interest rate','capital base','','','b','','utme','2009',123,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:23'),(344,'The reform in the banking sector in Nigeria is principally \tmotivated by the need to','increase the capital base of banks','provide more money to run the economy','minimize the rate of bank failures','enhance efficiency in bank operations','','','a','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:24'),(345,'A manufacturer who wants to build a new plant will source funds from the','commercial banks','money market','capital market','government','','','c','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:25'),(346,'Cost–push inflation occurs when','production cost is high','factor prices decrease','there is too much money in circulation','government embarks on deficit financing','','','a','','utme','2009',116,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:27'),(347,'If government expenditure exceeds revenue, this results in','balanced budget','national debt','budget deficit','budget surplus','','','c','','utme','2009',119,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:38'),(348,'The Basic Needs Approach to development is directed a','poverty alleviation','provision of educational infrastructure','provision of health services','improvement in worker’s income','','','a','','utme','2009',123,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:39'),(349,'The major reason why countries strive to achieve optimum growth is to','be self–sufficient','raise general living standards','raise the level of production','reduce aggregate expenditure','','','b','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:40'),(350,'According to the theory of comparative advantage, specialization will result in','labour–intensive method of production','capital–intensive method of production','efficient allocation of resources','efficient distribution of output','','','c','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:40'),(351,'Dumping in international trade means selling a good at a','higher price at home than abroad','lower price at home than abroad','price that equates marginal cost with marginal revenue','price above marginal cost abroad','','','a','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:41'),(352,'Guided deregulation as currently practiced in Nigeria implies that','market forces determine interest and exchange rates','government alone determines interest and exchange rates','market forces and government determine interest and exchange rates','exchange rate is regulated while interest rate is fixed','','','c','','utme','2009',93,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:42'),(353,'An important function of the world bank is to','provide short–term loans to members','encourage trade between members','promote capital–intensive productions','provide long–term loans to members','','','d','','utme','2009',104,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:43'),(354,'The major problem confronting a sole proprietor is','high level of risk','limited expertise','limited source of capital','high taxation','','','c','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:44'),(355,'A public liability company is run on a daily basis by','the chief executive','the shareholders','the board of directors','financial consultants','','','c','','utme','2009',113,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:45'),(356,'The marketing of agricultural products in Nigeria can be improved by','a massive production of farm produce','re–establishing the marketing boards','establishing more agricultural banks','processing of farm produce','','','b','','utme','2009',105,'Admin','2016-11-12 21:38:48','2020-07-16 12:39:39'),(357,'To enhance the competitiveness of domestic agricultural products, there is need to','ban the importation of agricultural products','increase the exportation of agricultural products','improve the quality of domestic agricultural products','increase the output of domestic agricultural products','','','c','','utme','2009',98,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:47'),(358,'In Nigeria, the location of a steel industry at Ajaokuta is due to','the availability of transport network','the proximity to source of power','the proximity to large deposits of iron ore','political consideration.','','','c','','utme','2009',116,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:54'),(359,'Industries for consumer goods are concentrated in urban centres as result of','large market','power supply','government policy','weather conditions','','','a','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:55'),(360,'The current industrial development strategy in Nigeria is aimed at encouraging','small–scale industries','medium–scale Industries','small – and medium–scale Industries','medium–and large–scale Industries','','','c','','utme','2009',124,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:56'),(361,'Activities in the oil and gas industry are classified into','oil exportation and distribution','refining and marketing of finished products','upstream and downstream','exploration and drilling','','','c','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:57'),(362,'High dependency ratio is influenced by','high infant mortality rate','the level of income','high birth rate','inadequate medical care for children','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-07-14 14:32:18'),(363,'Occupational distribution of population determines the','size of a population available and willing to work','population density of a place','dependency ratio of a country','size and categories of the labour force','','','a','','utme','2009',111,'Admin','2016-11-12 21:38:48','2020-07-14 14:32:19'),(364,'The mobility of labour is mainly determined by','the age of workers','government policy','trade unions','wage rate differentials','','','d','','utme','2009',112,'Admin','2016-11-12 21:38:49','2020-07-14 14:32:21'),(365,'When workers have a union, the supply of labour is said to be','Monopolistic','oligopolistic','Monoposonistic','competitive','','','b','','utme','2009',107,'Admin','2016-11-12 21:38:49','2020-07-14 14:32:22'),(366,'Economics is the study of human behaviour as it relates to the','efficient allocation of resources','operation of companies','production of goods','generation of income','','','a','','utme','2010',125,'Admin','2016-11-12 22:11:49','2020-07-14 14:32:23'),(367,'A classroom teacher is promoted to the rank of a principal. This is an example of','vertical mobility','lateral mobility','social mobility','horizontal mobility','','','d','','utme','2010',114,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:25'),(368,'The downturn in the prices of shares on stock markets is a \thighlight of','efficient allocation of resources','the regulatory nature of the market','the invisible hand','consumer rationality','','','b','','utme','2010',120,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:26'),(369,'If  X = 6 and N = 6, determine the value of   Efx.','36','12','1','72','','','a','','utme','2010',125,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:27'),(370,'The standard deviation of a set of data is','always measured from the mode','always measured from the median','the most representative of averages','a measure of dispersion','','','d','','utme','2010',112,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:28'),(371,'The mean is the best measure of central tendency because it','is not affected by extreme values in a data','is a balancing point in an observation','is a midpoint value in an array of data','can be calculated from incomplete data','','','b','','utme','2010',108,'Admin','2016-11-12 22:11:50','2020-07-21 11:11:50'),(372,'The most popular sizes of dresses and shoes are determined by the','Range','mode','mean','median','','','d','','utme','2010',128,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:30'),(373,'If  the demand for a good is more elastic than its supply, the tax burden is borne','equally by consumers and producers','more by consumers','more by producers','more by retailers and producers','','','c','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:31'),(374,'If  the price of a commodity with elastic demand increases, the revenue accruing to the producer will','Double','be constant','increase','decrease','','','d','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:32'),(375,'An excess demand for beans will result from','an increase in the price of  beans','a decrease in the price of  beans','an increase in the supply of  beans','a decrease in the supply of  beans','','','b','','utme','2010',117,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:33'),(376,'Consumer surplus tends to be higher when demand is','perfectly elastic','inelastic','elastic','unitary elastic','','','c','','utme','2010',96,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:34'),(377,'One of  the assumptions of ordinal utility theory is that','choice is not consistent','total utility is a function of price','utility can be ranked','satisfaction is measurable','','','c','','utme','2010',119,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:35'),(378,'The law of diminishing marginal utility explains why','the slope of a normal demand curve is negative','the slope of a normal demand curve is positive','an abnormal demand curve slopes upward','the consumption of inferior goods increases with income','','','a','','utme','2010',126,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:36'),(379,'If a consumer plans to spend 120k on four oranges but spent 80k, his consumer surplus is','N = 1.50','N = 1.00','N = 0.40','N = 2.0','','','c','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:38'),(380,'A set of  factors that can shift the supply curve are changes in','weather, price and technology','technology, price and taste','technology, weather and population','population, price and taste','','','c','','utme','2010',134,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:39'),(381,'If  the coefficient of price elasticity of supply is greater than one, the supply is said to be','perfectly elastic','infinitely inelastic','fairly inelastic','fairly elastic','','','d','','utme','2010',112,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:41'),(382,'If commodity X is a by-product of commodity Y, this implies that both commodities are','in competitive supply','jointly supplied','in composite supply','in excess supply','','','c','','utme','2010',117,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:42'),(383,'In perfect competition, price is determined by the','Government','buyers','sellers','market','','','d','','utme','2010',103,'Admin','2016-11-12 22:11:50','2020-07-14 14:32:44'),(384,'In order to reduce hardship faced by consumers due to high prices, government can introduce','maximum prices','minimum prices','commodity boards','price control boards','','','d','','utme','2010',123,'Admin','2016-11-12 22:11:50','2020-07-21 11:31:52'),(385,'Average product is less than marginal product when','there is constant returns to scale','there is decreasing returns to scale','there is increasing returns to scale','diminishing returns set in','','','c','','utme','2010',118,'Admin','2016-11-12 22:11:51','2020-07-16 12:39:39'),(386,'A firm enjoying economics of scale is said to be','reducing average cost as production increases','maximizing profits as production increases','benefiting from the activities of other firms','having an upward - sloping average cost curve','','','a','','utme','2010',108,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:47'),(387,'The rising portion of the long - run average cost curve of a','firm is an indication that it is experiencing \\n\tincreasing efficiency','diseconomies of scale','economics of scale','increasing marginal returns','','','b','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:49'),(388,'An industry’s supply curve is more likely to be elastic when firms are','enjoying free entry and exit','operating below capacity','operating at full capacity','maximizing profits','','','b','','utme','2010',103,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:50'),(389,'One of  the characteristics of  monopolistic competition is that','there is mobility of factors of production','consumers have perfect knowledge of price','no single seller dominates the market','the firms are price – takers','','','a','','utme','2010',123,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:51'),(390,'The demand curve for factors of production','is perfectly elastic','slopes downwards','slopes upwards','is perfectly inelastic','','','b','','utme','2010',111,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:53'),(391,'An agreement among firms on price and segmentation is termed','Cartel','haggling','collusion','specialization','','','b','','utme','2010',105,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:54'),(392,'In national income accounting, tax is determined by the','level of  income','level of investment','level of consumption','rate of savings','','','a','','utme','2010',105,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:56'),(393,'A decrease in aggregate spending in an economy will ultimately lead to','Boom','deflation','inflation','recession','','','b','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:57'),(394,'If  MPC is 0.7 while government expenditure increased by N= 150m, the equilibrium national income is','N= 214 million','N= 105 million','N= 45 million','N= 500 million','','','b','','utme','2010',132,'Admin','2016-11-12 22:11:51','2020-07-14 14:32:59'),(395,'The function of money which makes division of  labour \tpossible is its','unit of account','medium of exchange','store of value','standard of deferred payment','','','b','','utme','2010',126,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:00'),(396,'By buying treasury bills, the Central Bank of  Nigeria intends \tto','increase money supply in the economy','reduce money supply in the economy','reduce the cash reserve ratio for banks','increase the capital base of commercial banks','','','b','','utme','2010',124,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:02'),(397,'The velocity of money is represented as','money supply /real GDP','real GDPmoney supply','nominal GDP/real GDP','money supply/nominal GDP','','','a','','utme','2010',113,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:03'),(398,'One of the functions of commercial banks is','maintaining stable price in the economy','granting loans to customers','regulating monetary policies','issuing bank notes and coins','','','b','','utme','2010',120,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:05'),(399,'A strategy for curbing unemployment is to','implement government stabilization policy','increase government expenditure and decrease taxes','increase taxes and decrease government expenditure','ensure even distribution of job opportunities','','','b','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:06'),(400,'In Nigeria, the huge public debt is as a result of','balanced budgeting','surplus budgeting','deficit budgeting','zero budgeting','','','c','','utme','2010',115,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:08'),(401,'National development plans in Nigeria fail mainly because of','over dependence on foreign aids','poor implementation strategies','inadequate funding of projects','shortage of skilled manpower','','','b','','utme','2010',112,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:09'),(402,'The ultimate aim of agricultural policies in Nigeria is to achieve','food sufficiency','full employment','industrialization','industrial capacity utilization','','','c','','utme','2010',102,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:09'),(403,'Government can boost agricultural output in Nigeria primarily by','embarking on buffer stock programs','granting subsidies on farm Inputs','placing embargo on food importation','placing farmers on monthly income','','','c','','utme','2010',113,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:10'),(404,'Localization of industries refers to the','spread of firms producing different products','concentration of firms of an industry','siting of industries near the market','siting of firms producing different products','','','b','','utme','2010',116,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:11'),(405,'in developing countries, governments influence the location of  industries in order to','spread development','encourage entrepreneurs','redistribute wealth','encourage industries to earn high profits','','','a','','utme','2010',116,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:12'),(406,'A disadvantage of Nigeria’s dependence on imported petroleum products is the','instability in the demand to the  products','instability in the supply for the products','dominance of multinational firms','poor maintenance of the refineries','','','b','','utme','2010',120,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:13'),(407,'The maximum number of shareholders  for a limited liability company is','Twenty','seven','five','infinite','','','d','','utme','2010',104,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:15'),(408,'The primary motive for an individual engaging in production is to','make profit','redistribute wealth','satisfy basic human wants','put inputs into use','','','a','','utme','2010',125,'Admin','2016-11-12 22:11:51','2020-07-19 12:29:50'),(409,'One of  the characteristics of  free trade zone is','common tariff against non-member countries','free factor mobility within the zone','different trade policies of non-member countries','harmonized trade among member countries','','','b','','utme','2010',121,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:18'),(410,'If  Nigeria imports vehicles from Japan, the transaction will appear as a','debit on Japan’s balance of payments','credit on Nigeria’s balance of trade','credit on Japan’s balance of payments','credit on Nigeria’s balance of payments','','','a','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:19'),(411,'One of  the objectives of ADB is to','provide subsidies on imported goods to members countries','promote economic and social development of member countries','mobilize short-term loans for member countries','provide technical assistance to only poor member countries','','','c','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:21'),(412,'The choice of the method of production in an economy is determined by the','level of income','rate of population growth','level of technical know-how','availability of natural resources','','','c','','utme','2010',124,'Admin','2016-11-12 22:11:51','2020-07-16 12:39:39'),(413,'The amount of labour hired depends on the','number of skilled labour available','marginal productivity of labour','skill of labour','price of other inputs','','','b','','utme','2010',101,'Admin','2016-11-12 22:11:51','2020-07-14 14:33:23'),(414,'Economic as a field of study is a','pure science','political science','social science','physical science','','','c','','wassce','2003',77,'Admin','2016-11-12 22:37:36','2020-07-14 14:33:25'),(415,'The three major agents of an economic system are the','consumers, workers and producers','markets, telecommunication and banks','schools, hospitals and universities','individuals, firms and government','','','d','','wassce','2003',74,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:26'),(416,'Which of the following  is  not  an  advantage  of  tabular presentation of data?','enables easy location of required figures','makes for easy comparison of figures','occupies more space than mathematical equation','shows whether the figures are increasing or decreasing','','','c','','wassce','2003',102,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:35'),(417,'The problem of scarcity is reduced by','controlling consumption of goods and services','producing everything needed by consumers','ensuring efficient allocation of resources','restricting consumer choices and tastes','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:36'),(418,'The reward for labour is','wages','profit','rend','dividends','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:38'),(419,'Which of the following factors of production consists of man made goods?','Land','Labour','Capital','Entrepreneur','','','c','','wassce','2003',83,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:39'),(420,'One major function of the entrepreneur is','bearing of risk','maximizing profits','taking charge of day to day management','determining the selling price of his products','','','c','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:41'),(421,'A major limiting factor of mass production is','efficient management','adequate labour supply','small size of the market','adequate  supply of raw materials','','','c','','wassce','2003',98,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:42'),(422,'Division of labour leads to','improved craftsmanship','the production of standardized goods','increase in the cost of goods','trade by barter','','','b','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-16 12:39:39'),(423,'Which of the following is  an  advantage of localization of \\n\tindustry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:45'),(424,'The additional satisfaction derived from the consumption of one more unit of a good is called','marginal product','marginal utility','marginal revenue','marginal cost','','','b','','wassce','2003',98,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:46'),(425,'West  African   countries  have  low  levels  of  economic \tdevelopment due to','underpopulation','inadequate labour','failure to plan','ineffective plan implementation','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:48'),(426,'When the total product is at its maximum, marginal \\n\tproduct is','increasing','positive','negative','zero','','','d','','wassce','2003',111,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:49'),(427,'Marginal cost can be derived from the','total product','total revenue','total cost','average fixed cost','','','d','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:50'),(428,'The market supply curve slopes upwards from left to right indicating that','at a lower price, more is supplied','two commodities can be supplied at the same time','at a lower price, less is supplied','producers pay high taxes','','','c','','wassce','2003',74,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:51'),(429,'The marginal revenue when output is 4 units is','5 naira','8 naira','56 naira','61 naira','Use the data below to answer question:  Output [1, 2, 3, 4, 5]  Total Revenue(N=) [40, 49, 56, 61, 65]','','a','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:52'),(430,'The term under population refers to a situation where the population is','dispersed over the country','small in relation to available resources','greater than the available resources','concentrated in a few areas','','','b','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:53'),(431,'West African countries experience rapid population growth due to','existence of birth control clinics','early marriages','adequate sex education in schools','late marriages','','','b','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:54'),(432,'Which of the following could be  used  to  measure  the efficiency of labour?','Education and training','Rate of inflation','Level of unemployment','Input-Output ratio','','','d','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:55'),(433,'Which of the following is necessary for the survival of small firms in West Africa?','Access to land for development','Inadequate collaterals for bank loans','Government assistance in the form of loans and tax holidays','High transportation costs.','','','c','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:56'),(434,'A normal demand curve slopes','downwards from left to right','upwards from left to right','downwards from right to left','upwards from the origin','','','a','','wassce','2003',103,'Admin','2016-11-12 22:37:38','2020-07-16 12:39:39'),(435,'If the quantity demanded of a commodity increases from 20 to 30 units when there is an increase in price from 4 naira to 5 naira, the elasticity of demand is','0','1','2','5','','','c','','wassce','2003',90,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:58'),(436,'Price elasticity of supply measures the responsiveness of','quantity supplied to   changes in suppliers’ income','changes in prices of other commodities','a change in the prices of the commodity','a change in the demand for the product','','','c','','wassce','2003',77,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:59'),(437,'The most common type of business in West African countries is','joint stock companies','sole proprietorships','partnerships','public enterprises','','','b','','wassce','2003',92,'Admin','2016-11-12 22:37:38','2020-07-16 12:39:39'),(438,'Which of the following is a type of business organization?','Stock exchange','Insurance company','Chain stores','Co-operative','','','b','','wassce','2003',73,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:01'),(439,'One advantage of the sole proprietorship is that','control and supervision is under one man','accounts must be publicized','it is always successful','funds are easy to obtain','','','a','','wassce','2003',81,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:02'),(440,'The shares which do not carry any fixed rate of dividend are known as','debentures','cumulative preference shares','ordinary shares','participating preference shares','','','c','','wassce','2003',83,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:03'),(441,'The economic goal of public corporations is to','maximize profit','expand assets','minimize costs','provide essential services.','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:03'),(442,'One of the factors responsible for low agricultural \\n\tproduction in West Africa is','inadequate labour','shortage of land','inadequate implements','inadequate research','','','c','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:04'),(443,'Efficient distribution of goods in West Africa will be \\n\tfacilitated by','poor storage facilities','adequate transportation system','high standard of living','high cost of living','','','b','','wassce','2003',88,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:05'),(444,'The demand for money is','derived demand','composite demand','joint demand','complimentary demand','','','a','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:06'),(445,'Money becomes a very poor store of value in a period of','deflation','depression','recession','inflation','','','d','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:07'),(446,'A continuous fall in the general price level is called','recession','depression','deflation','stagflation','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:08'),(447,'Which of the following is a function of the central bank?','Accepting deposits from the public','Lending to the commercial bank','Discounting bills of exchange','Agent of payment for individuals','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:09'),(448,'Cost-push inflation is likely to arise when','there is an increase in government spending','there is an increase in direct taxes','demand for higher wages is granted','there is a decrease in bank lending','','','c','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-07-16 12:39:39'),(449,'The most important function of merchant banks is the','issuing of currency','provision of short term loans','provision of medium and long term loans','provision of short and long term loans','','','c','','wassce','2003',92,'Admin','2016-11-12 22:37:39','2020-07-16 12:39:39'),(450,'Precautionary motive relates to','demand for money','demand for goods','supply of money','supply of goods','','','a','','wassce','2003',109,'Admin','2016-11-12 22:37:39','2020-07-19 12:29:50'),(451,'Invisible trade refers to trade in','services','goods and services','tangible goods','crude oil','','','a','','wassce','2003',83,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:13'),(452,'When the demand for foreign exchange exceeds its supply, the value of the domestic currency','appreciates','depreciates','inflates','expands','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:14'),(453,'Which of the following is part of the capital account of the balance of payments?','Net investment from abroad','Import of machinery','Insurance','Transportation costs','','','a','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:15'),(454,'The most common index for measuring development is','the level of illiteracy','the per capital income','nutritional levels','population growth rate','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:16'),(455,'Governments of West African countries levy taxes to','prevent prices from falling','make people richer','limit the number of banks','finance government projects','','','d','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:17'),(456,'Which of the following is a direct tax?','Import duties','Purchase tax','Export duties','Personal income tax','','','d','','wassce','2003',91,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:18'),(457,'The tax whose rate increases as the level of income increases is known as','regressive tax','proportional tax','progressive tax','company tax','','','c','','wassce','2003',134,'Admin','2016-11-12 22:37:39','2020-07-18 09:03:24'),(458,'Public expenditure on education and health is known as expenditure on','general services','social services','commercial services','economic services','','','b','','wassce','2003',82,'Admin','2016-11-12 22:37:39','2020-07-21 12:05:25'),(459,'Budget deficit can be financed by','reducing the level of taxation','printing more money','lending to financial institutions','employing more workers','','','b','','wassce','2003',79,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:29'),(460,'A major problem facing the Economic Community of West African States (ECOWAS) as an economic integration, is the','increasing population','willingness of member to co-operate','geographical contiguity','weak trade relations','','','d','','wassce','2003',96,'Admin','2016-11-12 22:37:39','2020-07-16 12:39:39'),(461,'In a socialist economy, the means of production is owned and controlled by the','state','rich','Entrepreneur','traders','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:39','2020-07-20 04:56:56'),(462,'It is necessary to estimate the national income of a country because it','indicates the overall performance of the economy','ensures equitable distribution of wealth','assists investors in identifying profitable ventures','enables governments to conserve national resources','','','a','','wassce','2003',77,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:32'),(463,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','perfect competition','monopsony','duopoly','cartel','','','d','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:33'),(464,'Which of the following is an economic activity?','Attending a town’s meeting','A visit to the stadium','Payment of school fee','Arresting a petty thief','','','c','','wassce','2004',88,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:33'),(465,'The reward for land as a factor of production is','interest','rent','dividend','wages','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:46','2020-07-16 17:21:34'),(466,'The three broad categories of production are','direct, secondary and extractive','primary, tertiary and direct','primary, secondary and tertiary','secondary, primary and indirect','','','c','','wassce','2004',93,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:35'),(467,'A carpenter’s consumer good include:  I.  a kilogram of rice II.  3 pairs of shoes    III.  4 pairs of socks   IV. 3 screw-drivers','I and IV only','I, II, III and IV','I, II and IV only','I, II and III only','','','a','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:36'),(468,'In a capitalist system, the means of production is owned and controlled by','the government','politicians','private individuals','the workers','','','c','','wassce','2004',78,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:37'),(469,'Mixed economy refers to a system in which the means of production are controlled by','private enterprise and the government','private individuals','the government only','the workers and businessmen','','','a','','wassce','2004',94,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:38'),(470,'An economic good is described as a good which','yield utility and commands a price','is useful and occupies a space','is in high demand and transferable','has unlimited supply','','','a','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:39'),(471,'The concept of opportunity cost is important to the firm because it','determines the prices of the firm’s products','increases the level of output of the firm','leads to maximum satisfaction of the consumers','Guides firms in allocating scarce resources','','','d','','wassce','2004',94,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:40'),(472,'As a firm expands, it enjoys some advantages called','variable proportions','diminishing marginal returns','internal economics of scale','decreasing returns to scale','','','c','','wassce','2004',89,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:41'),(473,'Division of labour is limited by','the size of the market','the productivity of capital','cost of production','factors of production','','','a','','wassce','2004',73,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:42'),(474,'An entrepreneur is likely to make more profits when','expenditure is more than revenue','competitors charge lower prices','cost per unit output falls','quantity of output reduces','','','c','','wassce','2004',84,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:43'),(475,'Natural growth rate is','birth rate less death rate','death rate less migration','death rate plus birth rate','birth rate plus migration','','','a','','wassce','2004',81,'Admin','2016-11-12 23:04:46','2020-07-16 12:39:39'),(476,'A major effect of aging populations is','reduced labour force','rise in prices of commodities','reduced infrastructure','neglect of agriculture','','','a','','wassce','2004',97,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:46'),(477,'One of the problems associated with the middleman in the distribution of goods is that he','buys in large quantities','hoards goods','grants credit to the retailer','sells varieties of goods','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:47'),(478,'The distribution of goods is said to be completed when it reaches the','wholesalers','consumers','retailers','manufacturers','','','b','','wassce','2004',90,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:49'),(479,'The gap between demand and  supply  curves  below the equilibrium price indicates','excess demand','excess supply','equilibrium quantity','equilibrium price','','','a','','wassce','2004',99,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:52'),(480,'Demand for inferior good is an example of','expansion of demand','contraction of demand','individual demand','abnormal demand','','','d','','wassce','2004',90,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:55'),(481,'When a change in price does not affect the quantity demanded of a commodity, the price elasticity of demand is','fairly inelastic','infinitely elastic','perfectly inelastic','unitary elastic','','','c','','wassce','2004',96,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:56'),(482,'For both the monopolist and the perfectly competitive firm, profit maximizing output occurs at the point where the','marginal cost curve cuts the marginal revenue curve from below','marginal revenue curve cuts the marginal output from above','marginal cost curve intersects the X-axis','marginal revenue curve intersects the Y-axis','','','a','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:34:58'),(483,'The market structure in which the operators are many and none of them can influence the price is','imperfect market','perfect market','oligopolistic market','stock market','','','b','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:34:59'),(484,'One main benefit of partnerships is','the possibility of raising funds on the stock exchange','the possibility of attracting twenty one or more members','that members can specialize in various functions','that it enjoys its own separate legal entity.','','','c','','wassce','2004',85,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:00'),(485,'Joint ventures are partnerships involving','the poor and the rich','employers and workers','government and private investor','multi-nationals and individual','','','c','','wassce','2004',102,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:10'),(486,'The value of money is best determined by','input-output ratio','the purchasing power','the importance people attach to it','economics of scale','','','b','','wassce','2004',84,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:11'),(487,'Which of the following will be an effect of inflation?','Wages earners will gain','Borrowing of money will be restricted','Money lenders will gain','Borrowers of money will gain','','','d','','wassce','2004',92,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:12'),(488,'Government can control inflation by','printing more money','reducing the rate of taxes','reducing the level of expenditure','establishing more banks','','','c','','wassce','2004',98,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:13'),(489,'The market consisting  of  a  network  of  dealers  where \tcurrencies can be bought and sold is known as','capital market','foreign exchange market','commodity market','the stock market','','','b','','wassce','2004',82,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:14'),(490,'Open Market Operation (OMO) means the','provision of credit facilities by commercial banks','provision of credit facilities by the mortgage banks','buying and selling of government securities by the central bank','procedure for the establishment of commercial banks','','','c','','wassce','2004',82,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:15'),(491,'Which of the following is an advantage of  localization of industry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2004',78,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:16'),(492,'Which of the following will ensure efficiency in the industrial sector of your country?','Indigenization','Privatization','Nationalization','Liquidation','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:47','2020-07-16 12:39:39'),(493,'The number of people who are qualified to work and who offer themselves for employment are called','migrant labour','working population','labour turnover','mobility of labour','','','b','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:18'),(494,'When the general price level persistently falls, the rate of  unemployment','rises','stagnates','rapidly reduces','equals natural growth rate','','','a','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:19'),(495,'Which of the following is not a direct effort to increase agricultural production?','Operation feed the nation','Use of improved seedlings','Increased loans to farmer and co-operative societies','National Youth Service Corps','','','d','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:20'),(496,'To ensure high employment rates, developing countries should','build more universities','protect infant industries','organize trade fairs','prevent rural-urban drift','','','b','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-07-16 12:39:39'),(497,'The act of selling goods in foreign markets at prices below those charged at home markets is called','exchange','specialization','dumping','exporting','','','c','','wassce','2004',91,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:22'),(498,'Taxes levied on commodities are','direct taxes','indirect taxes','poll taxes','investment taxes','','','b','','wassce','2004',91,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:22'),(499,'One disadvantage of direct taxes is that','government’s revenue is reduced','price of essential commodities fall','people are discouraged from additional work','firms make more profits','','','c','','wassce','2004',86,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:32'),(500,'International trade is an application of the principle of','industrial production','mass production','regional co-operation','comparative costs advantage','','','d','','wassce','2004',95,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:39'),(501,'Trade among West African countries is poor because the','countries are self-sufficient','communication links are weak','number of banks is insufficient','people are not enterprising','','','b','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:40'),(502,'A policy by which governments restrict the amount of \\n\tforeign currencies bought and sold is known as','devaluation','credit creation','exchange control','export promotion','','','c','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:41'),(503,'Which of the following items is under the capital account of a balance of payments','Repayments of foreign loans','Visible imports','Invisible exports','Cocoa export','','','a','','wassce','2004',97,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:42'),(504,'A surplus in the balance of payments should be used to','subsidize multi-national companies','build infrastructure for friendly nations','make donation to developed countries','buy investments overseas','','','d','','wassce','2004',98,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:43'),(505,'Development planning which takes an overall view of the economy is described as','Aggregate economic planning','Disaggregated economic planning','Sectorial economic planning','System economic planning','','','a','','wassce','2004',91,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:43'),(506,'The national income of a country can be estimated by the','cost-benefit method','distribution method','expenditure method','consumption method','','','c','','wassce','2004',87,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:45'),(507,'Which of the following is excluded when estimating national income?','Dividends','Wages and salaries','Transfer payment','Profits','','','c','','wassce','2004',72,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:47'),(508,'The economic Community of West African States (ECOWAS) has been slow in achieving its objectives because of','political instability in member state','the activities of multi-national','inadequate personnel at the secretariat','inadequate international support','','','a','','wassce','2004',73,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:49'),(509,'A major achievement of  the  Organization  of  Petroleum Exporting Countries (OPEC) is that','crude oil price has increased tremendously','petroleum products prices have remained low','producing countries are highly industrialized','price of crude oil has remained relatively stable.','','','d','','wassce','2004',99,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:50'),(510,'Economic activities are undertaken to solve the problem of','consumption','opportunity cost','production','scarcity','','','b','','wassce','2005',86,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:51'),(511,'Farming, mining and fishing are','primary production','secondary production','tertiary production','intermediate production','','','a','','wassce','2005',97,'Admin','2016-11-12 23:29:58','2020-07-16 12:39:39'),(512,'A list of consumers’ wants arranged in order of priority is known as','a budget','an opportunity cost','a scale of preference','choice','','','c','','wassce','2005',98,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:53'),(513,'The 150.00 Naira which Olu would have used to purchase a textbook was used to buy a T-shirt. This implies that','Olu’s real cost is 150.00 Naira','Olu’s opportunity cost is the T-shirt','Olu’s opportunity cost is the textbook','Olu’s money cost is also the real cost.','','','c','','wassce','2005',82,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:54'),(514,'The remuneration of the entrepreneur as a factor of production is called','wages','salary','interest','profit','','','d','','wassce','2005',89,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:55'),(515,'The production factor, whose entire world supply is fixed is','land','skilled labour','capital goods','entrepreneurship','','','a','','wassce','2005',74,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:56'),(516,'When all factor inputs are reduced by half, the production possibility curve will shift','outwards','inwards','downwards','upwards','','','b','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-07-14 14:35:56'),(517,'When a worker changes from one type of job to another, it is called','geographical mobility of labour','occupational mobility of labour','immobility of labour','rural-urban migration.','','','b','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:35:57'),(518,'Which of the following determines the sizes of a country’s population?    (l) Birth rate    (ll) Death rate     \\n\t(lll) Migration rate     (lV) lmportation rate    (V) Unemployment','l), (ll) and (V)','(ll) and (lV)','(I), (II) and (lll)','(I) and (V)','','','c','','wassce','2005',90,'Admin','2016-11-12 23:29:59','2020-07-14 14:35:58'),(519,'Age distribution is important because it helps the \tgovernment to','check rural-urban drift','determine the number of foreigners','determine the number of factories','undertake effective planning','','','d','','wassce','2005',90,'Admin','2016-11-12 23:29:59','2020-07-16 12:39:39'),(520,'A group of firms producing similar commodities for the same market constitute','a cartel','an industry','a co-operative','wholesalers','','','b','','wassce','2005',88,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:00'),(521,'A factor that has slowed down the rate of industrial development in West Africa is','inadequate technology','increasing rate of manpower production','increased demand for local goods','intervention of the government in business activities.','','','a','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:01'),(522,'To achieve an equilibrium position, the consumer must buy so much of each commodity whose price is equal its','marginal utility','total utility','average utility','variable utility','','','a','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:02'),(523,'Price control refers to','the ways of making more goods available in the market','a policy of ensuring stable price in the market','a general reduction in the price level','effective working of the forces of demand and supply','','','b','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:03'),(524,'The desire for goods without the ability to pay is called','choice','effective demand','joint demand','wants','','','d','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:04'),(525,'Amount of goods offered to the market at respective prices and presented in a table is called','price schedule','supply schedule','scale of preference','demand schedule','','','b','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:05'),(526,'At the equilibrium price, quantity demanded is','greater than quantity supplied','equal to quantity supplied','less than quantity supplied','equal to excess supply','','','b','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:06'),(527,'lf the government fixed a price of a commodity above the equilibrium price, the quantity supplied will be','less than quantity demanded','equal to the quantity demanded','greater than quantity demanded','equal to zero','','','c','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-19 12:29:50'),(528,'One of the factors determining price elasticity of demand for a commodity is the','availability of close substitutes','number of producers','government policy','price of other commodities.','','','a','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:08'),(529,'lf elasticity of demand for a commodity is less than one, demand is','unitary elastic','inelastic','infinitely elastic','zero elastic','','','b','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:10'),(530,'The transfer of ownership of a public enterprise to  individuals and firms is called','commercialization','nationalization','privatization','restructuring','','','c','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:11'),(531,'One-man businesses are popular in West Africa because of all the following except the','ease of entry','small capital required','limited entrepreneurial skill needed','tendency to become joint-stock companies.','','','d','','wassce','2005',99,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:12'),(532,'Wholesalers are often criticized because they','help to break the bulk','finance producers','increase prices','provide after-scale services','','','c','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:13'),(533,'ln which of the following business units are the owners mostly the customers?','Co-operatives','Limited liability companies','Partnerships','Public corporations','','','a','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:14'),(534,'information about new goods is passed on to buyers through','advertising','retail trade','the manufacturer','wholesale trade','','','a','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:15'),(535,'The profit of the producer can be calculated as','total cost less total revenue','average revenue less average cost','total revenue less total cost','marginal revenue less marginal cost','','','c','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:16'),(536,'The direct exchange of one good for another without the use of money is known as','foreign exchange','exchange rate','expenditure','barter','','','d','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:37'),(537,'Acceptability, durability, homogeneity and portability are all \tattributes of good','markets','money','banks','government','','','b','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:38'),(538,'The term demand for money means','desire to borrow money from people','desire of an individual to invest all his money in  projects','willingness of people to hold money','willingness of people to keep all their resources in  assets.','','','c','','wassce','2005',81,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:39'),(539,'A persistent and appreciable rise in the general level of prices is known as','depreciation','inflation','deflation','production','','','b','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:40'),(540,'To a commercial bank, deposits are','liabilities','assets','capital','cash at hand','','','d','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:41'),(541,'The lender of last resort in the banking system is the','industrial bank','mortgage bank','commercial bank','central bank','','','d','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:42'),(542,'Discounting a bill of exchange means the bill is','cashed over the counter','sold on the stock exchange','bought for less than its face value','sold to the highest bidder','','','c','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:43'),(543,'The central bank controls credit in the economy through the use of','legal tender','travelers cheque','foreign exchange instruments','open market operations','','','d','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:44'),(544,'Among the principles of taxation propounded by Adam Smith was that','a tax should be impossible to evade','a tax should be convenient to pay','no tax should be levied on food','there should be no taxation without representation','','','b','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:45'),(545,'Mr. Bala’s income is $800.00 per month while that of Mr. Jatau is $1,200.00. lf Messrs Bala and Jatau pay $80.00 and $120.00 respectively as taxes, the tax system is','progressive','regressive','proportional','ad-valorem','','','c','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:46'),(546,'Government revenue from the groundnut industry is from','licenses','rents','royalties','taxes','','','d','','wassce','2005',100,'Admin','2016-11-12 23:29:59','2020-07-17 03:22:55'),(547,'The theory of comparative cost advantage is associated with','Alfred Marshal','Adam Smith','David Ricardo','J.B. Say','','','c','','wassce','2005',82,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:48'),(548,'When the value of a nation’s exports is greater than its imports','a favourable balance of trade exists','an unfavourable balance of payment exists','the net foreign trade is zero','inflation occurs','','','a','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:49'),(549,'To improve the balance of payments position of West African countries, there must be','removal of barriers to importation of goods and services','increased rate of exportation of goods and services','increased domestic consumption of foreign produced goods','the development of the local market.','','','b','','wassce','2005',90,'Admin','2016-11-12 23:29:59','2020-07-16 12:39:39'),(550,'The Economic Community of West African State (ECOWAS) is an example of','bilateral trade','economic integration','regional marketing board','international competition','','','b','','wassce','2005',94,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:51'),(551,'One reason for the low agricultural production in West African countries is that','agriculture employs the highest percentage of the labour force','too much money is invested in agriculture','farmers lack the finance and technology required','the farms are too large','','','c','','wassce','2005',97,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:51'),(552,'Mono-product economies are those that','produce one main commodity','produce only raw materials','depend on the export of their raw materials','specialize in agricultural industries','','','a','','wassce','2005',89,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:52'),(553,'.\\n\\n\tAn essential characteristics of a market economy is','government control','producer surplus','consumer surplus','consumer sovereignty','','','d','','wassce','2005',98,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:53'),(554,'ln a capitalist system, goods are produced for those who','want them most but cannot pay for them','can pay for them but do not want them','want them and can also pay for them','are dependent on the labour force','','','c','','wassce','2005',73,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:54'),(555,'An economy which exhibits features of both private and State enterprises is known as a','capitalist economy','mixed economy','communist economy','socialist economy','','','b','','wassce','2005',78,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:55'),(556,'ln calculating the national income of a country x, the cost of both raw materials and the finished products \t\twere included. This is a case of','double counting','price fluctuations','price differentiation','price discrimination','','','a','','wassce','2005',93,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:56'),(557,'Economic development is defined as','outward shift of the production possibility curve','availability of more goods and services','growth accompanied by qualitative change in living standards.','growth in the national income','','','c','','wassce','2005',82,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:57'),(558,'Which of the following is not an objective of the \\n\tOrganization of Petroleum Exporting Countries (OPEC)?','Stabilization of oil prices','Co-ordinating oil prices','Harmonizing oil prices','Stagnation of developed economies.','','','d','','wassce','2005',126,'Admin','2016-11-12 23:30:00','2020-07-20 23:22:10'),(559,'The study of Economics enables individuals to','change jobs.','evade taxes.','accumulate huge wealth','make national decision','','','d','','wassce','2006',81,'Admin','2016-11-12 23:59:28','2020-07-14 14:36:59'),(560,'Most of the problems of economies arise as a result of','demands for scarce resource','increase in  the demand for more goods and services.','the desire of producers to supply more goods and services.','the need to reduce the level of poverty.','','','a','','wassce','2006',87,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:05'),(561,'Which of the following tools of economic analysis is used when data contains more than one category?','Bars charts','Component bar charts','Graphs','Symbolical statement','','','b','','wassce','2006',84,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:06'),(562,'The reward of capital as a factor of production is','rent','wage','interest','commission.','','','c','','wassce','2006',97,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:07'),(563,'Mining is an example of','tertiary production','primary production','secondary production','advanced production','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:29','2020-07-15 09:09:54'),(564,'An owner-manager of a firm can also be called','shareholder','an entrepreneur','an employer','a chairman','','','b','','wassce','2006',97,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:09'),(565,'If the fixed cost of a firm is 800 Naira and its variable cost is \t2,700 Naira while its total output is 100 units, what is the average cost of the firm?','25 Naira','35 Naira','45 Naira','50 Naira','','','b','','wassce','2006',75,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:10'),(566,'Distribution of good and services is hindered by','good road network','efficient storage facilities','too many middlemen.','Adequate market information.','','','c','','wassce','2006',66,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:11'),(567,'A movement along the same demand curve either upwards \tor downwards as a result of changes in price implies','a change in demand','a change in quantity demanded.','an increase in demand','a shift in the demand curve to the right.','','','b','','wassce','2006',86,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:12'),(568,'Middlemen in an economy perform the function of','distribution','exchange','hoarding.','protection.','','','a','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:13'),(569,'One of the factors affecting geographical distribution of population is','high birth rate','high death rate','encouragement of early marriage in the rural areas','climatic conditions of  the different parts of the country','','','d','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:14'),(570,'Standardization of products or services is a feature of','large firms','retailers','small firms','wholesalers.','','','a','','wassce','2006',72,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:15'),(571,'The amount of satisfaction obtained from the consumption of a commodity at a particular time is called','marginal utility','diminishing utility','total utility','average utility','','','c','','wassce','2006',78,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:16'),(572,'What are inferior goods? These are goods','that are generally in short supply.','that are no longer in demand','whose demand falls as income increases','whose price falls as demand increases','','','c','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:17'),(573,'In the analysis of utility theory, the basis of demand is','marginal utility','average utility','fixed utility','diminishing utility','','','a','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:18'),(574,'In the normal market situation, when the price of a commodity rises, the','demand for the commodity will rise','demand for the commodity will fall','supply of the commodity will be constant','Supply of the commodity will fall.','','','b','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:19'),(575,'When the quantity of a commodity supplied increases and the quantity demanded decreases there will be','a rise in price','no change in price','price fluctuation','a fall in price.','','','d','','wassce','2006',93,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:20'),(576,'The market price of a commodity is normally determined by the','law of demand','interaction of the forces of demand and supply.','total number of people in the market','total quantity of the commodity in the market.','','','b','','wassce','2006',74,'Admin','2016-11-12 23:59:30','2020-07-16 12:39:39'),(577,'The mechanism which allows the price of a commodity to be fixed either above or below the equilibrium is known as','monopolistic competition','price discrimination','perfect competitive market','price control','','','d','','wassce','2006',79,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:22'),(578,'A debenture holder is entitled to payments in the form of','allowance','interest','salary','donation','','','b','','wassce','2006',81,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:23'),(579,'The main difference between a private and a public \\n\tenterprise is the','amount of profit realized','mode of operation','objective of the business','ownership structure','','','d','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:24'),(580,'The total amount of money raised by a company through insurance of shares to the public is','debentures','nominal capital','ordinary shares','paid-up capital','','','b','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:24'),(581,'Buying and selling of shares is a function performed mostly \tby the','insurance companies','stock exchange','merchant banks','discount houses','','','b','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:25'),(582,'Which of the following is not reason for establishing public \tenterprises?','Discouraging investors','Opening up neglected parts of the country','Effective control of a natural monopoly','Rapid economic development','','','a','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:26'),(583,'For a monopolist, the average revenue (AR) curve is  above','the total cost curve','the same as the marginal cost curve','above the marginal revenue curve','the same at that of the perfect competitor.','','','c','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-07-21 11:05:36'),(584,'Advertising expenses would not be necessary under perfect competition because','consumers would have complete knowledge of goods','cost of production would be at the maximum level','.  \\n\tevery firm  would enjoy the benefits of large scale production','incomes of the consumers in the community would be high.','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:28'),(585,'The equilibrium level of output of a monopolist is determined at a point where','marginal cost equal average  revenue','marginal cost equals average cost','marginal cost equals marginal  revenue','marginal  revenue equals average cost','','','c','','wassce','2006',89,'Admin','2016-11-12 23:59:30','2020-07-16 12:39:39'),(586,'.\\n\\nWhich of the following is a legal tender in West Africa?','Treasury bill','Share','Credit card','Currency','','','d','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:30'),(587,'The policy of government to increase the supply of money to meet its own expenditure plans is likely to be','speculative','deflationary','inflationary','contractionary','','','c','','wassce','2006',104,'Admin','2016-11-12 23:59:30','2020-07-19 12:29:50'),(588,'The tendency for prices to rise while the value of money falls is known as','bills of exchange','inflation','depreciation','deflation.','','','b','','wassce','2006',101,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:32'),(589,'One way to solve the economic problem of inflation in a country is by increasing the','supply of commodities','supply of currency','salaries of workers','demand for commodities.','','','a','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:33'),(590,'The motive for holding money for investing in securities is \treferred to as','transactionary','speculative','accumulation','deflationary','','','b','','wassce','2006',79,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:34'),(591,'A cheque book is issued to customers of a bank operating a','savings account','time deposit account','current account','fixed deposit account','','','c','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:35'),(592,'Amount proposed for payments of wages and salaries in a budget is regarded as part of','recurrent expenditure','direct investment','recurrent revenue','capital receipt','','','a','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:36'),(593,'The difference between the Gross National Product (GNP) and the Gross Domestic Product(GDP) is','total interest payment','net income generated internally','total national savings','net income from abroad.','','','d','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:37'),(594,'Which of the following agricultural systems is mainly for the','cultivation of food crops for family consumption?','Co-operative farming','Commercial farming','Subsistence farming','','','c','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:38'),(595,'Agriculture is important to the economy of West African countries because it is the source of','power','equipment supply','industrial  input','technological progress','','','c','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:38'),(596,'The economic system in which the state takes the','economic decisions through details planning is','capitalism','socialism','traditional economic system','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:39'),(597,'A mixed economy combines the characteristics of both','planned  and capitalist economics','exchange subsistence economies','subsistence and planned economies','capitalist and exchange economics','','','a','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-19 12:29:50'),(598,'In a rapidly growing economy, a change in technology which is labour saving is likely to cause','residual unemployment','structure unemployment','disguised unemployment','frictional unemployment','','','d','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:41'),(599,'Which of the following is a form of tax evasion?','Wrong declaration of earnings','Payments of flat rate tax','constant employment','Low capacity utilization','','','a','','wassce','2006',69,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:42'),(600,'Where the burden of a tax finally rest is called','tax object','tax rate','incidence of taxation','system of taxation.','','','c','','wassce','2006',77,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:43'),(601,'An increase in the quantity of goods and services produced \tin a country which raises her national income is known as','economic development','economic growth','domestic investment','productivity.','','','b','','wassce','2006',80,'Admin','2016-11-12 23:59:31','2020-07-16 12:39:39'),(602,'The formula “index of export prices” / “Index of import prices”   x 100   is used to measure the','volume of trade between countries','direction of international trade','commodity terms of trade','volume of imports','','','a','','wassce','2006',101,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:45'),(603,'Which of the following is an invisible item?','Banking services','Petroleum products','Processed rice','Processed milk','','','a','','wassce','2006',90,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:46'),(604,'In an attempt to correct a deficit balance of payments, a country may decide to increase','domestic production','imports','domestic expenditure','tax on infant industries.','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:47'),(605,'Which of the following is an objective of economic integration?','Harmonization of cultural practices','Free movement of persons, goods and services','Payment of high tariffs','Dumping of goods in less developed countries','','','b','','wassce','2006',96,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:48'),(606,'One of the functions of the International Monetary Fund (IMF) is to','devalue the currency of member states','reduce drastically the size of deficit financing of member states','give financial assistance to member states that have temporary balance of payment difficulties','the rapid industrialization process in the less developed nations of the world','','','c','','wassce','2006',76,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:49'),(607,'The full meaning of OPEC is','Oil and Petroleum Exporting Countries','Original Petroleum Exporting Companies','Organization of Petrol Exporting Countries','Organization of Petroleum Exporting Countries','','','d','','wassce','2006',73,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:50'),(608,'The three principal economic units in any system are','trade, industry and banking','workers, consumers and shareholder','households, firms and government','companies, industry and plants','','','c','','wassce','2007',107,'Admin','2016-11-13 15:46:54','2020-07-21 11:31:45'),(609,'The satisfaction derived from the use of a commodity is its','demand','elasticity','wealth','utility','','','d','','wassce','2007',84,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:52'),(610,'The reward which accrues to labour for participating in production is','interest','wage','bonus','profit','','','b','','wassce','2007',86,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:53'),(611,'The Malthusian theory of population does not concern itself with','growth of food production in arithmetical progression','growth of population in geometric progression','positive checks to population growth','development and growth of manpower','','','d','','wassce','2007',86,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:54'),(612,'One characteristic of labour is that it is','fixed in demand','fixed in supply','mobile','untrainable','','','c','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:55'),(613,'A country where labour is not sufficient to make proper use of the natural resources is said to have an','active population','optimum population','over-population','under-population','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:56'),(614,'When population is classified according to professions, it is called','geographical distribution of population','age distribution of population','sex distribution of population','occupational distribution of population','','','d','','wassce','2007',90,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:57'),(615,'What must be added to variable cost to give total cost?','Average total cost','Average variable cost','Fixed cost','Marginal cost','','','c','','wassce','2007',79,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:58'),(616,'Revenue is the','total profit made after sales','amount spent on purchases','amount of goods produced','total money realized from sales.','','','d','','wassce','2007',91,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:04'),(617,'Given that TR is total revenue, then TRn - TR(n-1) can be used to find the','marginal revenue','marginal cost','average cost','average revenue','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:10'),(618,'The lower the price of a commodity, the greater the quantity demanded. This is based on the assumption that consumers’','income is diminished','income remains the same','utility is diminished','population is high','','','b','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:11'),(619,'The demand for beans in bags is given by the function Q - 36 + 0.4P = 0. Where P is price in Naira and Q is quantity, find Q when P = 20 Naira.','12 bags','24 bags','28 bags','30 bags','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:12'),(620,'If the price of good X rises and the quantity demanded of good Y increases then the two goods X and Y must be','inferior good','substitutes','complements','free goods','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:13'),(621,'Use the following  demand schedule to answer question Price (N=) [15, 13]\tQuantity Demanded[60, 70] The percentage change in quantity demanded is','12.7%','15.7%','16.7%','19.7%','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:14'),(622,'In a situation where demand is perfectly elastic, imposition of a tax on a commodity to raise its price will result in','consumers increasing their demand for the product','consumers demand for the product remaining unchanged','consumers shifting completely to substitute products','suppliers increases the supply of the product','','','c','','wassce','2007',93,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:15'),(623,'Patents are examples of','natural barriers to entry','legal barriers to entry','illegal barriers to entry','unnatural barriers to entry','','','b','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:16'),(624,'Which of the following is a characteristic of monopoly?','Many sellers','Homogeneous commodity.','A single seller','Perfect knowledge','','','c','','wassce','2007',92,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:17'),(625,'When a firm is nationalized','former owners are removed without compensation','it has the right to draw on state funds for capital investment','it must break even within a specified period','workers take control of the firm','','','b','','wassce','2007',66,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:18'),(626,'The practice whereby a business is owned by two or more independent firms is termed','indigenization','joint venture','commercialization','foreign investment','','','b','','wassce','2007',83,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:19'),(627,'The main objective of privatizing a government business is to','create additional employment','increase expenditure','source for new funds','increase the level of efficiency','','','d','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:20'),(628,'The return on investment that is just sufficient to satisfy the owner of a business is called','economic profit','business profit','normal profit','excess profit','','','c','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:21'),(629,'Which of the following is a middlemen in the chain of distribution?','An entrepreneur','A producer','A banker','A retailer','','','d','','wassce','2007',79,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:22'),(630,'A negative effect of the presence of a large number of middlemen in the distributive network is','greater variety of goods','greater quality of goods','lower price of goods','higher price of goods','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(631,'An example of a producer good is a','tin of milk','hammer','loaf of bread','shirt','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(632,'To promote the development of the agricultural sector, governments of West African countries should','encourage rural-urban drift','discourage foreign investment in agriculture','support the marketing of farm produce','reduces tariff on food import','','','c','','wassce','2007',87,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:24'),(633,'The most important quality of money is that it must be','relatively scarce','generally acceptable','portable','durable','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:25'),(634,'A certain amount of money is needed for everyday expenditure like buying of goods, transportation and others. This is','transaction demand for money','precautionary demand for money','derived demand for money','speculative demand for money','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:27'),(635,'Long-term loans can be secured from','commercial banks','discount houses','development banks','acceptance houses','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:29'),(636,'The value of money is generally measured in relation to the','interest rate charged on bank loan','general price level','size of a country’s gold stock','volume of imports','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:30'),(637,'Which of the following is true under rapid inflation? People','demand less foreign exchange','set up businesses','to pay their taxes','hardly want to lend money','','','d','','wassce','2007',79,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:31'),(638,'Which of the following financial institutions was originally known as a Building Society?','Development bank','Insurance company','Mortgage bank','Merchant bank','','','c','','wassce','2007',88,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:32'),(639,'A non-bank financial intermediary which is regarded as a pool of risks is the','cooperative society','stock exchange','insurance company','post office','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:33'),(640,'A foreign exchange market deals in','treasury bills','currencies','government bonds','commodities','','','b','','wassce','2007',80,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:34'),(641,'Which of the following institutions assists the government in managing the national debt?','Commercial Banks','The Central Bank','The Capital Market','The World Bank','','','b','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:35'),(642,'If tax takes a larger proportion of the income of people with \tlower income, the tax is','progressive','proportional','regressive','ad-valorem','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:36'),(643,'Which of Ike following is an example of direct tax?','Import duties','Income tax','Export duties','Purchase tax','','','b','','wassce','2007',61,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:38'),(644,'Monetary control measures are coordinated by','development banks','merchant banks','commercial banks','the Central banks','','','d','','wassce','2007',114,'Admin','2016-11-13 15:46:57','2020-07-21 02:09:47'),(645,'A country whose economy is buoyant is likely to have','a weak currency','devaluation from time to time','a strong currency','balance of payment problem','','','c','','wassce','2007',63,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:41'),(646,'The Net National Product (NNP) is Gross National Product (GNP) less','domestic product','foreign product','depreciation','investment','','','c','','wassce','2007',73,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:42'),(647,'If the population of a country is low and the Gross National Product is high, the per capita income will be','high','low','average','unitary','','','a','','wassce','2007',96,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:44'),(648,'The population of a country in a certain year was fifty million and the per capita income was $2050. What was the national income?','$ 750,000 million','$100,250 million','$ 102,500 million','125,050 million','','','c','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:45'),(649,'One of the advantages of capitalism is that','consumers are exploited','private initiative is discouraged','efficient allocation of resources is assured','job security is assured','','','c','','wassce','2007',73,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:53'),(650,'Which of the following contributes the highest amount of foreign exchange to the economy of West African nations?','Construction, manufacturing and banking','Shipping, trading and fishing','Power, telecommunications and sports','Extraction, farming and tourism','','','d','','wassce','2007',93,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:54'),(651,'International trade depends on the concept of','marginal cost advantage','comparative cost disadvantage','Comparative cost advantage','absolute cost','','','c','','wassce','2007',86,'Admin','2016-11-13 15:46:57','2020-07-14 02:26:11'),(652,'One advantage of international trade is that','countries depend on each other','it introduces variation in prices','it increases demand for foreign goods','it makes variety of goods available','','','d','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 02:25:01'),(653,'The practice of selling goods overseas and often below the cost of production is known as','retailing','dumping','internal trade','advertising','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:57','2020-07-14 02:23:51'),(654,'A summary of all the receipts and payments of a country in \tinternational transactions is called','terms of trade','balance of payment','balance of payment adjustment','capital account','','','b','','wassce','2007',77,'Admin','2016-11-13 15:46:57','2020-07-14 02:20:28'),(655,'4Which of the following countries export cocoa?','Liberia and The Gambia','Ghana and Sierra Leone','Nigeria and Ghana','Sierra Leone and Nigeria','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:57','2020-07-14 02:27:23'),(656,'Which of the following are examples of transfer payments?','Gifts and donations','Rents and rates','Profits and dividends','Internal and external debts','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 02:25:01'),(657,'ECA means','Economic Commission for Africa','Economic Community of Africa','Exporting Countries of Africa','Economic Conference on Africa','','','a','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-07-14 02:12:40');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `english` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=597 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `english` VALUES (1,' He put…………..  eggs in a basket.','white dozen eggs ','a dozen white eggs  ',' a white dozen eggs ','dozen white','most appropriate option','','b','','utme','2003',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:38:55'),(2,'The reason why he was not offered admission was …………… his results could not be found.','that   ','when  ','owing to ','because ','most appropriate option','','a','','utme','2003',3638,'Admin','0000-00-00 00:00:00','2020-07-14 14:38:56'),(3,'Course………….  writers are to reflect local colour',' material\\'s ','materials\\'','materials ','material ','most appropriate option','','b','','utme','2003',3829,'Admin','0000-00-00 00:00:00','2020-07-14 14:38:57'),(4,'If you saw the photograph of the man……………………you be able to identify him?','could','would   ','can ','will ','most appropriate option','','b','','utme','2003',3858,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(5,'As Obande does not know anyone in this city, he hopes that some kind …………  will put him up for the night','man','men ','inhabitants ','individuals','most appropriate option','','a','','utme','2003',3760,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:00'),(6,' The doctor asked the patient what………….','The problem is   ',' Is your problem ','The problem was. ',' Is the problem','most appropriate option','','c','','utme','2003',3689,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(7,'The woman is one? of the …………. of the society.','elitist  ',' elites ','ellte','elitists ','most appropriate option','','c','','utme','2003',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:03'),(8,'Three quarters of the people in the village  killed but only half of then \\n          huts……. affected  \\n','were/ were ','was/was','were/ was','was/were ','most appropriate option','','c','','utme','2003',3731,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:04'),(9,'The armed robbers went into the house and robbed the three','woman occupants','women\\'s occupants ','woman\\'s occupants','   women occupants.','most appropriate option','','a','','utme','2003',3878,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:05'),(10,' It was a free-for-all and the students were blamed for taking the law','in their own hands ','into their own hands ','into their hands ','in their hands.','most appropriate option','','b','','utme','2003',3748,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:06'),(11,'The candidate\\'s charisma should be a..………factor in winning the election. ','determinant ','determinate','determining ','determinable ','most appropriate option','','c','','utme','2003',3782,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:08'),(12,'I can\\'t stand people prying into my private life. \\'Ladi said \\'………… agree Agbenu','Me too ','Likewise myself ','Me neither ','I also ','most appropriate option','','b','','utme','2003',3725,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:14'),(13,' Four weeks ..................  enough for the police to  conclude   their','were',' is ',' are ',' has been','most appropriate option','','b','','utme','2003',3700,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:15'),(14,'  It is bad to take………… property without permission. ','someone else\\'s ','someone’s else',' someone\\'s ','someone\\'s else\\'s\\' ','most appropriate option','','b','','utme','2003',3652,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:16'),(15,'Classmate……………………….  I haven\\'t seen for years, wrote to me last week.','whose ','which ','that',' whom','most appropriate option','','d','','utme','2003',3743,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:17'),(16,'If you would do me this favour,  I …………..  be very grateful','should',' would ',' shall ','will','most appropriate option','','b','','utme','2003',3707,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:18'),(17,'Ali plays ……….violin with remarkable skill','a    ','the','their ','some ','most appropriate option','','b','','utme','2003',3741,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(18,'1 have the ……… of meeting the President.','privilege  ','privelege ','previlege ','privilege ','most appropriate option','','d','','utme','2003',3711,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:19'),(19,'The sergeant spoke to me in a ……………  manner','Coarse','causal     ','coerce    ','course ','most appropriate option','','a','','utme','2003',3752,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:20'),(20,'Idakwo ran……………. miss the train','lest he may',' lest ha should','lest he almost   ','lest he will ','most appropriate option','','b','','utme','2003',3831,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(21,'How is the new editor ……………on with hit work','moving','getting','pushing ','going','most appropriate option','','b','','utme','2003',3683,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:22'),(22,'  Be careful not to…………….  this money ','loose  ',' loss ',' lost',' loss','most appropriate option','','b','','utme','2003',3740,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:23'),(23,'Nowadays, many graduates are not Will disposed to teaching……………..','are they','aren\\'t they?','do they?    ',' they are?','most appropriate option','','a','','utme','2003',3604,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:24'),(24,'Adike ………….. a message from the club regularly.','Receive ',' had received ',' receive',' has received ','most appropriate option','','a','','utme','2003',3706,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(25,'It is often……. that inflation ……….  from too much money chasing very few goods.    ','said/results','say/result      ','said/result   ','say/ resulted','most appropriate option','','a','','utme','2003',3697,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:26'),(26,'','spot    ','Law   ','North ','naught ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3703,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:27'),(27,'','cost    ','won’t    ','hope    ','coast ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3824,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:28'),(28,'','there   ','dear    ','fair         ','bear','choose the option that has a different vowel sound from the others.','','c','','utme','2003',3812,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:28'),(29,'','wife','of','off','laugh','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:29'),(30,'','chef','chief','shoe','ocean','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3830,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(31,'If he went to London, he would see the Queen','He did not go to London and did not see the Queen',' He would like to see the Queen when he goes to London','When he goes to London, he will see the Queen ','He did not see the queen when he went to London.','that best explains the information conveyed ','','c','','utme','2003',3669,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:31'),(32,'Ngozi has always considered her father to be an impassioned man ','Her father is a very strict man  ','Her father is a very lively man ','Her father is an emotional man ','Her father is a disciplined man ','that best explains the information conveyed ','','c','','utme','2003',3767,'Admin','0000-00-00 00:00:00','2020-07-15 18:17:37'),(33,'The manager paid us in hard currency  ','We were paid in a strong and stable currency ','We were paid in new notes ','We were paid in new notes','We were paid in foreign currency.','that best explains the information conveyed ','','a','','utme','2003',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:33'),(34,'The elders rebuked ','Olu for talking issue with his principal. ','Olu was scolded for acting in collusion with his principal ','Olu was reprimanded for arguing with his principal','Olu was blamed for issuing a statement denying his principal.','that best explains the information conveyed ','','b','','utme','2003',3924,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(35,'In spite of his humble beginning, Audu now throws his weight around ','His noble birth notwithstanding, Audu is a corrupt man ','From his poor background, Audu is now a rich man ','Despite his obvious poverty, Audu is a proud man ','Audu is arrogant despite his simple upbringing .','that best explains the information conveyed ','','d','','utme','2003',3718,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:35'),(36,' <u>Ch</u>alet','chairman','College','champagne','Chemical','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.  ','','c','','utme','2003',3748,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:36'),(37,'Tee<u>th</u>','taught','tank','though','thought',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2003',3772,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(38,'Co<u>n</u>crete ','anxious ','concern ',' consider ','attend ',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3746,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:38'),(39,'He is well known for his <i>inordinate</i> ambition ','passionate ','sound ','excessive','moderate ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3727,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:39'),(40,'A <i>conservative</i> estimate put the number of missing persons at forty.','an accurate ','An incorrect ','A rough ','Primitive ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3815,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(41,'Agbenu was <i>ecstatic</i> about her result ','sad','dispassionate ','mad ','pessimistic ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3763,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(42,'Students could be <i>timid</i>','Pugnacious ','friendly ','bold ','covetous','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3843,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:51'),(43,'The labour leader’s <i>recalcitrant</i> stance was applauded ','flexible ','uncompromising ','well-informed ','stubborn ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3815,'Admin','0000-00-00 00:00:00','2020-07-19 12:52:42'),(44,'The company has continued to <i>monopolize</i> the distribution of the products.','regularize ','liberalize ','centralize ','specialize ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:53'),(45,'The doctor examined the patient <i>painstakingly</i> ','Carefully ','Perfunctorily ','Professionally ','Painfully ','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:54'),(46,'Toyin is married to an <i>impatient, self-centred man ','a tolerant ','a tolerable','a fretful ','an edgy','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3770,'Admin','0000-00-00 00:00:00','2020-07-20 10:27:49'),(47,'The agency has sworn to deal  with all the <i>apostles</i>  of confederation ','opponents ','apostates ','Proponents ','Protagonists ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3709,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:56'),(48,'The members of the congregation were <i>inspired</i> by the sermon ','enthralled ','disenchanted ','disoriented ','bewitched ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3787,'Admin','0000-00-00 00:00:00','2020-07-20 10:56:38'),(49,'<i>Gregarious</i> animals can be found in the zoo.','lonely ','tame ','wild ','various ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3868,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:58'),(50,'I am <i>loath</i> to do the assignment ','unwilling ','waiting ','dying ','willing ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3770,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:59'),(51,'Only those who are <i>gullible</i> fall victim to his trickery ','astute ','Courteous ','saucy ','devastated','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3809,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:54'),(52,'A cool bath in a hot weather can be truly <i>invigorating</i> ','debilitating ','devastating ','disgusting ','unpalatable','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3684,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:01'),(53,'The witness decided to <i>conceal</i> the evidence ','waive ','divulge ','hide','destroy ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3719,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(54,'The President SPOKE to the press ','Did the Present write to the press?','Did the president speak to the press?','Who spoke to the press?','Are these the pressmen that the President spoke to?','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','a','','utme','2003',3653,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:03'),(55,'My MOTHER served rice and fresh fish stew for dinner.','Did your mother serve rice and fresh fish stew for lunch?','Who served rice and fresh fish stew for dinner?','What kind of meal did your mother serve for dinner?','what kind of meal did your mother serve for dinner? ','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','b','','utme','2003',3798,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:04'),(56,'Mark<u>e</u>t  ','mortgage ',' bachelor ',' get ',' enter ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3690,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:05'),(57,'c<u>olo</u>nel ',' golden',' girl',' colony ',' goal ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3799,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:06'),(58,'t<u>e</u>nd ','caned ',' jeopardy ','turned ',' earned ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3777,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(59,'The boys knew that a storm was <i>imminent</i>','Impending ','encroaching ','possible ','threatening ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3723,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:14'),(60,'The leader has the <i>unstinting</i> support of his party ','cautious ','uninspiring ','unsparing ','laudable ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3685,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(61,'The <i>essence</i> of governance is to seek the good and well-being of the majority of the people ','characteristics ','importance ','Secret ','Goal','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3653,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:16'),(62,'The carpenter built a <i>commodious</i> wardrobe ','wide ','gigantic ','small ','spacious','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3695,'Admin','0000-00-00 00:00:00','2020-07-18 20:15:29'),(63,'The company is to <i>shed</i> three thousand staff this year ','Throw up ','placate ','lay off','demote ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3811,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:18'),(64,'A few years ago, nobody would have believed that the economy would <i>turn around </i>','change ','deteriorate ','improve ','stagnate ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3773,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(65,'The man’s story sounded <i>plausible</i> to his audience ','credible ','entertaining ','fantastic ','credulous ','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3875,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:19'),(66,'Before announcing his retirement, Ochima resolved to <i>settle an account with</i> the bank.','get  back at ','pay back all he owes ','close his account with ','retire his loans from ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3747,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:20'),(67,'He shared his room with a person whose behaviour was quite <i>nauseating</i> ','disgusting ','disrespectful ','disagraceful ','discouraging ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:21'),(68,'From what she said, one may <i>infer</i> that she does not like the course','agree ','deduce ','suppose ','realize ','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3779,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:22'),(69,'The party supporters <i>vilified</i> the Chairman for the role he played in the crisis that rocked the party ','impeached ','condemned ','challenged ','elected','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3670,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:23'),(70,'Publishing as a business venture has become a <i>hot potato</i> in Nigeria. ','unacceptable  ','unpleasant ','expensive                                                              ','profitable','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3685,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:24'),(71,'The <i>cynics</i>  feared that the nation’s nascent democracy would fail','illusionists','pessimists','delinquents','critics','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3674,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:25'),(72,'The nurse was in favour of <i>voluntary eutheanasia</i>','a sleeping pill','a major operation','a painless death','a simple operation','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:26'),(73,'There was a <i>glut</i> of oil on the market','an abundance of','an increase in','a variety of','an accumulation of','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3736,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:27'),(74,'Typist','refuse  (noun)','superb','propose','rebel (verb)','choose the option that has the same stress pattern as the given word.','','a','','utme','2003',3718,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(75,'Cement','perfect (adjective)','include','interest','employ(noun)','choose the option that has the same stress pattern as the given word.','','b','','utme','2003',3657,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(76,'I shall find time for my ……… when I get …… with this difficult assignment.','Pat time /over','pass-time/over','pastime/through','pastime/through','choose the option that best completes the gap(s).','','d','','utme','2004',3704,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(77,'Agbo says he is not afraid of ………','anybody','nothing','nobody','no one','choose the option that best completes the gap(s).','','a','','utme','2004',3625,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:31'),(78,'It is …….. responsibility to look after their parents in old age.','theirs’','their','theirs','their’s','choose the option that best completes the gap(s).','','b','','utme','2004',3855,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:42'),(79,'One needs to exemplify or ………. the aspect of the subject being discussed','supply','declare','satisfy','demonstrate','choose the option that best completes the gap(s).','','d','','utme','2004',3891,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:43'),(80,'……………his illness, Muhammad could not come to school.','with reference to','referring to','owing to','due to .','choose the option that best completes the gap(s).','','d','','utme','2004',3844,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:44'),(81,'After so many trials, the experiment………….','paid up','paid for','paid out','paid off','choose the option that best completes the gap(s).','','d','','utme','2004',3813,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(82,'People dislike Mariam because she is ……………','trickful',' trickish','trickly','tricker','choose the option that best completes the gap(s).','','c','','utme','2004',3788,'Admin','0000-00-00 00:00:00','2020-07-16 00:47:41'),(83,'The reporter said that the Honourable speaker………….. impeached ','is to be','might have been','may have being','will have been','choose the option that best completes the gap(s).','','b','','utme','2004',3759,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:54'),(84,'Actually, he forgot the one to …………… the job was given.','whom','who','whomever','whoever','choose the option that best completes the gap(s).','','a','','utme','2004',3672,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(85,'You may not have heard the last word on the matter……..','may you have','haven’t you','have you','mayn’t have you?','choose the option that best completes the gap(s).','','c','','utme','2004',3691,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(86,'All God’s prophets were given the great……….to preach salvation to people.','commission','commition','commission','commission','choose the option that best completes the gap(s).','','d','','utme','2004',3845,'Admin','0000-00-00 00:00:00','2020-07-20 10:51:20'),(87,'Ali goes to the stadium regularly, but he …………… to the church for months.','hasn’t been','haven’t been','didn’t go','hadn’t been','choose the option that best completes the gap(s).','','a','','utme','2004',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:50'),(88,'Each of the houses…………',' have got',' Have','has','were given a new look.','choose the option that best completes the gap(s).','','c','','utme','2004',3794,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:51'),(89,'The minister addressed the workers to boost their…………',' Morale','morality',' mural',' moral','choose the option that best completes the gap(s).','','a','','utme','2004',3620,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(90,'I don’t coming home, is he?......... he is isn’t.','Yes','No','won','now','choose the option that best completes the gap(s).','','b','','utme','2004',3775,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(91,'………..as a federal capital only……….. the last twenty years.','has existed/for','existed/over','was existing/from','is existing/in','choose the option that best completes the gap(s).','','a','','utme','2004',3703,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:54'),(92,'No teacher of honour would subject his student to any form of ……..','harassment','Harassment','harassment','harassment','choose the option that best completes the gap(s).','','b','','utme','2004',3707,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:55'),(93,'Each producer  is able to place a price on his product by considering its…………','worth','choice','judgement','assessment','choose the option that best completes the gap(s).','','a','','utme','2004',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:56'),(94,'The police claim that a number of stolen cars…………. recovered.','has being','is being','has been','have been','choose the option that best completes the gap(s).','','c','','utme','2004',3747,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:57'),(95,'The storm………….. Havoc on several buildings in the village.','wreaked','wrecked','made','did','choose the option that best completes the gap(s).','','a','','utme','2004',3706,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:58'),(96,'The chairman refused to shake…………. with the secretary','hand','his hand','hands','his hands','choose the option that best completes the gap(s).','','c','','utme','2004',3747,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(97,'The poor widow who could not buy the clothes was seen…….her wool into……….yesterday','to spin/yards','spinning/yarn','making/tailoring','to spill/clothes','choose the option that best completes the gap(s).','','b','','utme','2004',3702,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(98,'He not only looked after the children when their parents died, ………..sponsored their education to university.','but also','also he','but he','also','choose the option that best completes the gap(s).','','a','','utme','2004',3783,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:00'),(99,'His supporters railed round him in moments of …………..','criticism','Crisis','acrimony','disillusionment.','choose the option that best completes the gap(s).','','b','','utme','2004',3809,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:54'),(100,'The interpreter was wrong because he gave the congregation a ………… translation of the pastor’s statement.','literal','unilateral','literary','lateral','choose the option that best completes the gap(s).','','a','','utme','2004',3715,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:02'),(101,'Ju<u>dge</u>','gear','spinach','pleasure','camouflage','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','d','','utme','2004',3775,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:03'),(102,'caus<u>ed</u>','chanced','frost','released','realized','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','b','','utme','2004',3723,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:04'),(103,'mis<u>chi</u>ef ','Christmas','ritual','Brochure','Champagne','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','a','','utme','2004',3599,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(104,'Everyone was ready to play the evil’s advocate in the impeachment controversy.','everyone was willing to speak against the impeachment to encourage discussion on it.','everyone was willing to defend an unpopular point of view concerning the impeachment.','everyone was willing to fight for the defenceless citizens no matter the consequences.','everyone was willing to be an evil genius in the controversy','that best explains the information conveyed in the sentence.','','a','','utme','2004',3627,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:06'),(105,'Adamu’s father is a key figure in that ministry','The ministry trusts Adamu’s father as a central figure','Adamu’s father is a figurehead in the ministry','Adamu’s father’s position is essential in the ministry.','Adamu’s father keeps the key to the ministry.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:07'),(106,'The government warns that drink-driving is punishable under the law.','a drunkard driving can be punished','driving while drunk is an offence','driving while drinking is an offence','drinking and driving is an offence.','that best explains the information conveyed in the sentence.','','a','','utme','2004',3673,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:08'),(107,'In many countries, democracy is ostensibly being practiced.','democracy is indeed being practiced  in many countries','many countries have effective democracy.','many countries have democracy in practice','democracy is apparently practice in many countries.','that best explains the information conveyed in the sentence.','','d','','utme','2004',3842,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:09'),(108,'The investigators stated clearly that they had reached a dead end in their scrutiny of suspects in the murder case.','the investigators did not know what to do with the suspect’s murder','The investigators had evidence to sentence the suspects to death in the end.','there was no further progress in the investigation of the murder suspects.','the end had come for the suspects in the murder case.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3708,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:10'),(109,'',' Secondment','Orthopaedic',' oriental','photographic','choose the option that has a different stress pattern from the others.','','a','','utme','2004',3716,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:11'),(110,'','ratify',' famous',' result',' taxi','choose the option that has a different stress pattern from the others.','','c','','utme','2004',3738,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:17'),(111,'Sailors are unusually <i>dauntless</i> in their exploits','selfless','ruthless','excited','frightened','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3697,'Admin','0000-00-00 00:00:00','2020-07-20 10:57:34'),(112,'The <i>potency</i> of the drug has been acknowledged.','action','loss','inefficacy','power','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3595,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:24'),(113,'The dictator wanted <i>tractable</i> men in his cabinet.','reliable','intelligent ','tough','unruly','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3723,'Admin','0000-00-00 00:00:00','2020-07-17 15:08:25'),(114,'After the war, the victors became increasingly <i>vindictive</i>','friendly','vociferous','arrogant','treacherous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3882,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:26'),(115,'The ship was <i>imperiled</i> by high winds','piloted','destroyed','deceived','saved','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:27'),(116,'Beauty queens sometime wear <i>outlandish</i>  dresses.','beautiful','flashy','familiar','attractive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3699,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:28'),(117,'The journalist said he was working <i>freelance</i>','tirelessly','satisfactorily','without a pay','dependently','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3736,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(118,'My father’s presentation was rather <i>causal</i>','formal','vital','informal ','divisive','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3713,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:29'),(119,'The flying Eagles put up a <i>plucky</i> defence against their opponents.','strong','weak','careless','tactful','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3743,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:30'),(120,'The man who scare the girl was a bit <i>deranged</i>','sane ','amorous','crazy','dangerous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3675,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:31'),(121,'The injured man is determined to <i>get back</i> at his assailant.','attack','identify','visit','forgive','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3812,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:32'),(122,'The player <i>writhed in pain</i> after the fall.','remained still','cried out','walked out','shook violently','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3813,'Admin','0000-00-00 00:00:00','2020-07-20 14:26:37'),(123,'The noise of the fan <i>unnerved</i>  the star player.','refreshed','confused','helped','calmed','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3782,'Admin','0000-00-00 00:00:00','2020-07-21 03:37:34'),(124,'The team got <i>an ecstatic</i> welcome from the crowd.','An unexpected','a joyous','a cold','a thunderous','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3719,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(125,'We found a <i>shady</i> place for the display.','an open','an unsafe','a stuffy','an enclosed','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3659,'Admin','0000-00-00 00:00:00','2020-07-16 00:47:41'),(126,'expostulate','exposTUlate','expostuLATE','EXpostulate','exPOStulate','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2004',3641,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(127,'sufficiency','sufFIciency','SUFficiency','sufficienCY','suffiCIENcy','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2004',3798,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:38'),(128,'The town was in such a <i>turmoil</i> that the dance was called off.','mourning state','rainy state','state of darkness','state of confusion','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3761,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(129,'The festivals create in the people a feeling of price in the cultural <i>heritage</i>  ','history','heirloom','legacy','possession','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3674,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:40'),(130,'<i>Funnily enough,</i> the priest prayed for the robber who shot him.','Timidly','Unexpectedly','Disappointingly','Fearlessly.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3594,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:41'),(131,'The presence of the captain makes the sailors <i>ill at ease</i>.','uncomfortable ','sickly ','impatient','easily ill','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3683,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:42'),(132,'The press describe the efforts of the government in <i>pejorative</i> terms.','critical','contemptible','palpable','superlative','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3677,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:43'),(133,'Okonkwo manages his household <i>with a heavy hand.</i>','like a powerful dictator','using the cane on every occasion','without tolerating weakness','like a heavy weight champion.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:44'),(134,'The school’s badge is the <i>insignia</i> of office for all the prefects in the school.','Power','symbol','seal','recognition','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3705,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:44'),(135,'Ibro shows enough <i>liberality</i>  with his meager income.','generosity','frugality','prodigality','insensitivity','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3693,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:45'),(136,'It is a <i>misnomer</i> to call three thousand naira a living wage.','an incontrovertible assertion','an appropriate term','a wrong description','a mishmash','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3776,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:46'),(137,'His plans <i>boomeranged</i> on him','bounce','fell','catapulted','backfired','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3729,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:47'),(138,'The manager’s knowledge of the strike is of <i>the utmost</i>  importance.','standard','genuine','paramount','basic','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3684,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:48'),(139,'There has been a <i>downturn</i> in the affairs of the company.','a massive increase','little progress','a turn-around','a decline','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3688,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:49'),(140,'The <i>mottled</i> skin of a person with HIV indicates an advance stage  of its development.','Brown ','spotted','scaly','pimply','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3768,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:50'),(141,'In spite of constant financial support from his father, Udenyi treats his studies with considerable <i>levity</i>.','seriousness','enthusiasm ','wastefulness','lassitude','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3808,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:51'),(142,'The prosecutor was fully able to <i>substantiate</i> the charge.','expatiate on','prove','dismiss','weaken','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3777,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:52'),(143,'The teacher wants MY pen.','Does the teacher want his pen?','What does the teacher want?','Does the teacher want your ruler?','Who wants my pen?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','a','','utme','2004',3777,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(144,'The student BOUGHT the book.','Who bought the book?','Did the student steal the book?','What did the student buy?','How will the student get the book?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','b','','utme','2004',3785,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:54'),(145,'n<u>i</u>ne','pint','gill','pin','click','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2004',3708,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:55'),(146,'b<u>ea</u>r','beer','steer','rare','fear','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','d','','utme','2004',3727,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:55'),(147,'',' Circulation','eleven',' impossible','criticism','choose the option that has the stress on the first syllable.','','d','','utme','2004',3799,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:56'),(148,'','bachelor','condemn',' afternoon','intact ','choose the option that has the stress on the first syllable.','','a','','utme','2004',3839,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:57'),(149,'',' foul','tout','owl','foe','choose the option that has a different vowel sound from the others.','','d','','utme','2004',3806,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(150,'','alter',' water',' pot','hall','choose the option that has a different vowel sound from the others.','','c','','utme','2004',3687,'Admin','0000-00-00 00:00:00','2020-07-14 14:41:59'),(151,'If the rain hadn’t fallen, we wouldn’t have missed the match.','The rain is falling, so we will miss the match.','The rain fell, so we didn’t watch the match','The rain fell, so we watched the match','The rain didn’t fall, so we didn’t watch the match.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3858,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:11'),(152,'The class was tired of the new boy jawing away all the time.','He bit off people’s jaws','He was always chewing in the class.','He was always making trouble for the class','He talked continuously in the class','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3776,'Admin','0000-00-00 00:00:00','2020-07-20 14:21:19'),(153,'The new Headmaster hoped that his men would pull together','He expected that the men would cooperate with him','He thought that the men would compose themselves at work','He was certain that they would resign en masse','He was certain that their condition would improve under him.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3813,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:13'),(154,'If the trader paid in full, his order was not pruned down.','The trader who made full payment did not have his order reduced','The trader who made some payment did not have his order delayed.','Unless the trader paid in full his order would be rejected.','As the trader did not increase his order, he did not need to pay in full','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3776,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:14'),(155,'The men were not pawns in someone else’s political game.','The action they executed was their idea','The men used someone else’s plain','They were used by someone’s political game','They love playing political games','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3843,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:15'),(156,'The crisis ended as suddenly as it began','The crisis ha suddenly as it began','The crisis will not end suddenly','The crisis stopped almost immediately','The crisis will stop immediately.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3791,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(157,'One thing I will not be complaining about in my new job is a lack of excitement','The job is bad  ','The job is exiting','The job is not too exciting','The job has been previously done','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3766,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:17'),(158,'The Governor parried all the questions put to him by the journalist.','The Governor answered all the questions brilliantly','The Governor evaded all the questions','The Governor failed all the questions','The Governor mastered all the questions','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3812,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(159,'if I visited England, I might go to Manchester City ','When I go to England, I could go to Manchester City','Whenever I visit England, I must go to Manchester City','I did not go to England and could not go to Manchester City','I could not visit Manchester City because I did not want to go to England.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3857,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:18'),(160,'The man puts his foot down whenever he is convince of his action','He desires to assert his will in the situation','He makes his mark wherever he goes','His attitude demonstrates someone who likes  to oppress others around him','He demonstrates firmness of character','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3732,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:19'),(161,'The teacher recounted two events that were <i>analogous</i>  with  each other','similar with','Advantageous to','distant from','different from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3875,'Admin','0000-00-00 00:00:00','2020-07-20 14:12:14'),(162,'The Principal was filled with <i>scorn</i>  when we gave  our reason for coming late','contempt','sympathy ','anger','pity','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3876,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:21'),(163,'After fifty years, he could not find anyone who was <i>contemporary</i> with him at college','strange to','friendly with','belonged to','contented against','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3775,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(164,'Idris gives me a <i>sour</i> look every time I pass by him','bad','satisfactory','friendly','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3811,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:23'),(165,'The officer was given an <i>invidious</i> task','vivid','cruel','pleasant','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3860,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:24'),(166,'The views of the plateau are in stark contrast to the <i>workaday</i> cottages below','ordinary an uninteresting','beautiful an interesting','comfortable an fascinating','ugly an unfascinating','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3756,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:25'),(167,'The President can afford to dispense with some of his <i>henchmen</i>','detractors','body guards','sycophants','advisers','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3856,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(168,'Asabe bought a <i>glossy</i>  pair of shoes ','smooth and shiny','rough an dull','smooth and shining','rough an gummy','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3949,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:27'),(169,'Manu is hard to convince because he is an <i>opinionated</i>  person','an objective','an imperative','a subjective','a discursive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:28'),(170,'Some people consider the leather uphoistery and thick rugs a bit <i>sumptuous</i>  ','expensive','desirable','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3727,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:29'),(171,'The dramatist provided as satisfactory <i>denouement</i>  to the play','audition','climax','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3874,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:30'),(172,'Many Nigerians are <i>wary</i> of night journeys','worried about','unscarred of','satisfied with','troubled about','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3783,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(173,'The proprietor accuse Uche of silently<i> acquiescing</i>  to the students’ demands','submitting to','adjusting','compromising on','resisting','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3893,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:32'),(174,'No wonder Sikemi later became a detective; she has been very <i>observant </i>','curious','perceptive','inductive','inquisitive','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3831,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:33'),(175,'Nigeria has been playing a <i>vital role</i> in the political an economic development of Africa','creditable','crucial','respectable','laudable','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3733,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:34'),(176,'Emeka’s painting was <i>so realistic</i>  that it could almost have been a photograph','picture square','concrete','lively','authentic','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3889,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:35'),(177,'<i>Courteously</i>, Ade stood back to let his teacher go first through the door','patiently','politely','carefully','calmly','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3825,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(178,'Many people use to lie in <i>poverty</i>','instability','want','difficult','the slums','choose the option nearest in meaning to the word or phrase  in italics ','','c','','utme','2005',3783,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:36'),(179,'<i>Accountability</i> is certainly a desirable quality in a politician','respectability','responsibility','courage','Diligence','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3803,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:37'),(180,'The <i>common</i> practice among some media practitioners is to be sensational in their reporting','prevalent','rampant','ordinary','cogent','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3810,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:38'),(181,'That <i>fateful</i> decision change the company’s outlook in many ways.','wonderful','uncontrollable','disastrous','unsuccessful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3881,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:39'),(182,'The accident victim received a <i>superficial</i> wound from the crash','a serious','a painless','an internal','an external','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:40'),(183,'The boxer <i>fizzled</i> out just in the sixth round','knocked out his opponent','showed off his talents','became tire out fought on spiritedly','surrendered rather disappointingly','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:41'),(184,'The manager describe Mfon as a man of vehement <i>character</i>','weak an uninterested','strong an insistent','troublesome an noisy','clever and helpful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3744,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:42'),(185,'Obi’s dog is old but still <i>lively</i>','attractive','howling','barking','frisky','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3821,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:43'),(186,'His <i>taciturnity</i> amaze everyone in one court during the legal tussle','obliviousness','reticence','sensibility ','pervasiveness','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3852,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(187,'The greatness of the creator of the universe is always <i>inexpressible</i> to many adherents of certain faiths','inevitable','wonderful','unbearable','ineffable','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3811,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(188,'We <i>made a pile</i> in the business deal','lost a lot of money','earned a lot of money','broke even        ','cut corners','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3757,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:46'),(189,'Yesterday, my mother asked me.... ',' If I am tired? ','are you tired?',' whether was I tired?','If I was tired','choose the option that best completes the gap(s)','','d','','utme','2005',3805,'Admin','0000-00-00 00:00:00','2020-07-19 20:54:16'),(190,'The Bank Manager assured us that there was nothing to worry about','as regard to the loan ','with regards to the loan','in regard of the loan  ','with regard to the loan','choose the option that best completes the gap(s)','','b','','utme','2005',3888,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:47'),(191,'The first prize was','a carved wooden, attractive ','a wooden attractive carved   ',' an attractive carved wooden   ','a carved attractive wooden tray ','choose the option that best completes the gap(s)','','c','','utme','2005',3857,'Admin','0000-00-00 00:00:00','2020-07-16 00:47:41'),(192,'Tsadu always cautions that difficult jobs should be done','step from step ','step by step','steps after steps    ','steps by steps','choose the option that best completes the gap(s)','','b','','utme','2005',3873,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:49'),(193,'I was often angry …… Oche since he differed…   me often','with/to ','about/with   ','against/from','with/with','choose the option that best completes the gap(s)','','d','','utme','2005',3750,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:50'),(194,'I am writing to you for ……..  reasons','concerned ','several','plenty ','myriad of','choose the option that best completes the gap(s)','','b','','utme','2005',3914,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:51'),(195,'As we sat ………the silence, my eyes……..  the room','under/looked  ','over/surrounded ',' in/roamed',' along/observed','choose the option that best completes the gap(s)','','c','','utme','2005',3789,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:52'),(196,'Is it true that Okoro……..  when the gates were closed?','had returned','would return  ','should return    ','would have returned','choose the option that best completes the gap(s)','','a','','utme','2005',3889,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:53'),(197,'The public library has stopped………. books to readers','borrowing','lending ','renting ','loaning','choose the option that best completes the gap(s)','','a','','utme','2005',3715,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:54'),(198,'We won\\'t leave until it ……..  Raining','will stop ','stopped','stops    ','has stopped','choose the option that best completes the gap(s)','','c','','utme','2005',3851,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:55'),(199,'The …………   event marked the beginning of a new life for the entire cabinet','historical  ','historicity of the','historic ','history of the','choose the option that best completes the gap(s)','','c','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:56'),(200,'The train ………. before I arrived','was leaving   ','has left','had left   ','would leave ','choose the option that best completes the gap(s)','','c','','utme','2005',3760,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(201,'You can travel on your own ……….. ?','isn\\'t it','can\\'t you   ','won\\'t you  ','shan\\'t you','choose the option that best completes the gap(s)','','b','','utme','2005',3766,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:58'),(202,'The man is refurbishing the flat with a view to ……. it.','sell   ','selling ','have sold ','be selling  ','choose the option that best completes the gap(s)','','d','','utme','2005',3677,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:59'),(203,'The Secretary-General was shocked at the number of…….','child\\'s soldiers   ','childish soldiers  ','children soldiers ','child soldiers','choose the option that best completes the gap(s)','','d','','utme','2005',3785,'Admin','0000-00-00 00:00:00','2020-07-14 14:42:59'),(204,'In spite of Shade\\'s good looks, her hair is always………','unkept','unkempt   ','unwashed','uncared for','choose the option that best completes the gap(s)','','b','','utme','2005',3794,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:00'),(205,'By the end of the football match today, we ……. the best player','could have known  ','might have known','will have known ','would have known ','choose the option that best completes the gap(s)','','d','','utme','2005',3864,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:01'),(206,'It is African for a younger person to show……..to elders','understanding ','indifference ','deference','satisfaction ','choose the option that best completes the gap(s)','','c','','utme','2005',3752,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:02'),(207,'A nursery rhyme is used to teach pupils how to spell the word','hipoppotemus','hippoppotemus','hipoppotamus ','hippopotamus','choose the option that best completes the gap(s)','','d','','utme','2005',3701,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:03'),(208,'b<u>ee</u>r','bear',' pear ',' fair',' pier','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','d','','utme','2005',3765,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(209,'g<u>uar</u>d','gourd','guide','argue','chat','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','c','','utme','2005',3880,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:05'),(210,'l<u>u</u>ck','lock','lack','brother','turn','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','a','','utme','2005',3785,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:06'),(211,'fi<u>l</u>m','salt','walk','pslam','chalk','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','a','','utme','2005',3878,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(212,'heal<u>th</u>y    ','father','path','they','that','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2005',3778,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:08'),(213,'E<u>n</u>glish','single','impugn','ink','orange','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2005',3813,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:09'),(214,'jurisprudence','JUrisprudence','juRISprudence',' jurisPRUdence','jurispruDENCE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3737,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:10'),(215,'suburbanite','SUburbanite','suBURbanite','  suburBAnite','suburbaNITE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:11'),(216,'departmentalize','departMENtalize         ','dePARTmentalize     ','DEpartmentalize','departmenTAIize','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','d','','utme','2005',3782,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(217,'refuse(noun)','reform   ','intact   ','obscure','phantom','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3776,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:12'),(218,'downtrodden','downgrading','prescribing','functional','internal','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3925,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:13'),(219,'','interpreter',' remarkable','  impossible ','criticism','choose the option that has a different stress pattern from the others','','a','','utme','2005',3907,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(220,'','  impound','canoe','  subject(verb)',' knowledge','choose the option that has a different stress pattern from the others','','d','','utme','2005',3795,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:15'),(221,'Your mother CAN cook the meal',' Who will cook the meal?','Can my father cook the meal?','Isn\\'t my mother able to cook the meal7','What can my mother do?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','c','','utme','2005',3860,'Admin','0000-00-00 00:00:00','2020-07-21 13:22:43'),(222,'The EAGLES won the match','Did the Eagles lose the match?','Who won the match?','What did the Eagles win?','Did the Eagles win the match?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','b','','utme','2005',3843,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:17'),(223,'The police claim that a number of stolen cars…… recovered ','have been ','has been  ','has being',' have being ','choose the option that best completes the gap(s).','','b','','utme','2006',3795,'Admin','0000-00-00 00:00:00','2020-07-19 11:01:24'),(224,'     ………….  been there to look for her several times without success.','He\\'ll','He’s  ','Is he ','He is','choose the option that best completes the gap(s).','','b','','utme','2006',3712,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:19'),(225,' Until he lost the election, Agbo…………… to be the Student Union president.','had been hoping ','has been hoping   ','would have hoped   ',' has hoped ','choose the option that best completes the gap(s).','','b','','utme','2006',3830,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(226,'The old man was rushed to hospital when his blood  pressure dropped to a ……..  level','dangerously lowly','dangerous lowly ',' dangerously low',' dangerous low','choose the option that best completes the gap(s).','','c','','utme','2006',3720,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:21'),(227,'If he ……… for admission, I am sure he would succeed','will apply ','applied ','had applied ','has applied','choose the option that best completes the gap(s).','','c','','utme','2006',3647,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:22'),(228,'The ……….   robber showed no mercy during the attack. ','loquacious ','senseless ','ruthless ','benevolent','choose the option that best completes the gap(s).','','c','','utme','2006',3892,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(229,'Did you have ……… when you went to visit the medical doctor? ','diarrhea ','diarrhea','diarhoea  ','diarrhea ','choose the option that best completes the gap(s).','','a','','utme','2006',3710,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:29'),(230,'Your performance will improve if you…….  Hard','are practicing ','practical ','would practice ','practise','choose the option that best completes the gap(s).','','b','','utme','2006',3721,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(231,'The brave hunter killed the ………… in the forest ','big spitting cobra black','Black big spitting cobra ','big black spitting cobra ','big spitting black cobra ','choose the option that best completes the gap(s).','','c','','utme','2006',3672,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:37'),(232,'He wrote to you,……….  ?','hadn’t he ','wouldn’t  he ','didn’t he','hasn’t he','choose the option that best completes the gap(s).','','c','','utme','2006',3713,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:38'),(233,'The clubs were not…….. on a solid ethical base ','funded','found ','created ','founded ','choose the option that best completes the gap(s).','','d','','utme','2006',3700,'Admin','0000-00-00 00:00:00','2020-07-20 14:13:41'),(234,'I watched him as he……  the hole','dug ','digs','is digging ','dugged','choose the option that best completes the gap(s).','','a','','utme','2006',3636,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(235,'His father hardly misses the news because he goes about with his………..  Radio','pointable ','potable ','potable','portable','choose the option that best completes the gap(s).','','d','','utme','2006',3746,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(236,'The investigation Commission has treated all the …… submitted to it by the warring factions','protests ','petitions ','applications','enquires ','choose the option that best completes the gap(s).','','b','','utme','2006',3719,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(237,'Olu brought his clothes and those of his………..','Senior brother’s','elder brothers','elder brother’s ','senior brother.','choose the option that best completes the gap(s).','','c','','utme','2006',3740,'Admin','0000-00-00 00:00:00','2020-07-20 14:19:51'),(238,'Our neigbour was attracted by the ………. from my mother’s cooking ','flavour','stench','scent','aroma ','choose the option that best completes the gap(s).','','d','','utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:44'),(239,'Everybody is allowed to ………. his views on state matters ','Air ','hear ','show ','share ','choose the option that best completes the gap(s).','','a','','utme','2006',3826,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:45'),(240,'Despite all preparations, the wedding did not …..','come along ','come by','come on ','come off','choose the option that best completes the gap(s).','','d','','utme','2006',3739,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(241,'For beating ……. his course mate, Agbaji was……… from the university.','up/rusticated ','on/expelled','at/removed ','away/sent out ','choose the option that best completes the gap(s).','','a','','utme','2006',3759,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(242,'We have been living peacefully here but……….. hear rumours of war.','again ','slowly','occasionally ','eventually','choose the option that best completes the gap(s).','','c','','utme','2006',3812,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(243,'Genealogy ','GeneaLOGY','geneAlogy','geNEalogy ','GEnealogy ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','b ','','utme','2006',3761,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:49'),(244,'Catholicism ','caTHOlicism ','catholiCism','CAtholicism ','cathoLIcism ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2006',3693,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(245,'','ability ','Registration ',' quadruplicate ','revivalist ','choose the option that has a different stress pattern from the others. ','','a','','utme','2006',3795,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(246,'','competent ','represent ',' syllabus ','quality ','choose the option that has a different stress pattern from the others. ','','b','','utme','2006',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:51'),(247,'apparent ','arrested ','telephone ','paragraph ','appetite ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3619,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:52'),(248,'Unfair ','insight ','towards ','first-class','instant ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3834,'Admin','0000-00-00 00:00:00','2020-07-21 18:26:42'),(249,'Dovetail ','proviso ','simplicity ','jargon ','psychiatry ','choose the option that has the same stress pattern as the given word.','','a','','utme','2006',3893,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:54'),(250,'',' Insult (noun)','prepare ',' provoke','pronounce ','choose the option that has the stress on the first syllable.','','a','','utme','2006',3720,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(251,'','Frequent (verb)','mature ','madam','convict (verb)','choose the option that has the stress on the first syllable.','','c','','utme','2006',3673,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:02'),(252,'In our college, the regulations concerning resists are a grey area','The regulations have just been revised','The regulations have often been ignored','The regulations are perfectly clear','The regulations are not very clear.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3737,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:14'),(253,'Ogiri takes after his father, he fawns upon anyone with influence.','Like his father, Ogiri likes to flatter people with influence in society','Like his father, Ogiri hates influential people','Ogiri. who always follows his father, tries to act like an influential man','Ogiri, who looks like his father, follows rich and influential people about','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3777,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:15'),(254,'You are to write a report and give it to the security office','After writing your report, give it to the security office','You are writing a report, as the security office directed','The report you are writing should be given to the security office','You have been ordered to write a report, which you wilt give to the security office ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3703,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:16'),(255,'After the war the victors became Increasingly vindictive ','Vengeful attacks were Incessantly carried out on those who lost the war ','  Friendly measures were taken to heal the wounds','Repressive measures were taken against those who lost the war','Those who won the war became treacherous ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3786,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:17'),(256,'The prefect reeled off the names of all the students who Drake the library law.','The prefect gave a disjointed list of the students in the law library.','  The prefect omitted the names of the students who broke into the law library ','The prefect submitted a complete list of the students who stole library books','The prefect gave an accurate list of the students who disobeyed library regulations.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3622,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:18'),(257,'1 owe you far less than you owe me','My debt to you is greater than yours to me','Your debt is not much greater than mine','What we owe each other Is approximately the same','I owe you something, but you owe me much more','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3690,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:18'),(258,'The dispute over land acquisition has now come a head','The problem has reached crisis proportions ','The problem has now been referred to the headquarters ','Because of the dispute, land acquisition has now been halted ','The problem has now been solved ','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3704,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:19'),(259,'He has hardly spoken when the bell rang ','He found it difficult to speak, and then the bell rang','When the bell rang, he was still speaking ','The bell rang very soon after he spoke','He spoke in a harsh manner and the bell rang ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3682,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:20'),(260,'I think she takes her guardian’s support for granted ','Her guardian has been helping her for a long time, and she is very grateful to him. ','She wants her guardian to grant her more support.','She thinks her guardian will no longer support her as he has been doing.',' Her guardian has been helping her for a long time, but she does not show enough gratitude. ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3667,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:21'),(261,'The class has fallen in with the teacher\\'s plans','The class has ignored the plans','The class has rejected the plans',' The class has accepted the plans','The class has modified the plans','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3823,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:22'),(262,'The move to expel the chairman was <i>sanctioned</i> by members of the party       ','unleashed  ','opposed ','supported',' initiated','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:23'),(263,'Because Jamiu is so <i>easily offended,</i> he was not considered for the post of headboy','Irritable    ','stubborn   ','troublesome ','docile','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:24'),(264,'The witness provided a <i>monstrous</i> account of the event','supportive  ','tragic','shocking ','verbatim','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3701,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:54'),(265,'Adamu is rather <i>meddlesome</i> in dealing with his friends','impertinent ','intimidating ','quarrelsome',' uncaring','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3519,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:55'),(266,'The commander said that the battle would be sustained, total and <i>relentless</i>','continuous ','brutal   ','fierce ','innocuous','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3749,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(267,'The government has announced its <i>preparedness for</i> the scheme','determination ','regret ','pleasure ','readiness','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3656,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:28'),(268,'The chairman advised the participants to follow <i>convention</i> in stating their points.','eloquence ','advice ','prudence ','tradition','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3681,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:29'),(269,'His discovery of the vaccine became a <i>quantum leap</i> in the search for a scientific cure for the illness','victorious battle ','slow but steady step',' great improvement   ','fast but sure step','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3678,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:29'),(270,'After the meeting, I read a <i>leer</i> on his face as he looked at the woman.   ','satisfying meaning ','bad look ','pleasant disposition ','poor smile','choose the option nearest in meaning to the word or phrase in italics','','b','','utme','2006',3761,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:30'),(271,'His loss suddenly became <i>redeemable</i> ','Incurable  ','exclusive','recoverable ','repulsive','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3723,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:31'),(272,'The plan has gone <i>awry</i>','wide   ','wrong   ','well    ',' wild','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3731,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:32'),(273,'The judge emphasized his <i>morbid</i> desire in his judgement','inordinate ','uncritical ','ravenous ',' Unpleasant','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3707,'Admin','0000-00-00 00:00:00','2020-07-17 15:08:25'),(274,'77. The recommended novel has a <i>convoluted</i> theme',' a simple ','an attractive ','a disgusting ','a complicated ','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3611,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:34'),(275,'The party men <i>reveled</i> all night when the election results were announced.','Celebrated ','mourned','fought ','discussed ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3648,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:35'),(276,'He is <i>prolific</i>  writer ','a very productive','a well-known','a clever ','an influential ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3794,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:36'),(277,'h<u>ur</u>t','hut ','girl ','hate   ','hot','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3717,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:37'),(278,'c<u>o</u>ck','cop   ','cope ','cork ','cup','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3669,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(279,'s<u>ay</u>s','fierce  ','dam','wet','rain','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','c','','utme','2006',3788,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:39'),(280,'c<u>h</u>aracter','unique   ','charade   ','arch   ','church ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3835,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:40'),(281,'  bush<u>es</u>','shapes ','shoes  ','rapes   ','rakes','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3763,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(282,'gara<u>ge</u>','gear   ','sure   ','pressure ','measure','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2006',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:42'),(283,'The usually hostile crowd was captivated by the .player\\'s <i>winsome</i> attitude','obnoxious  ','friendly  ','colourful  ','drunken','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3630,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:42'),(284,'The reporter made a <i>masterly</i> analysis of the situation','an unskilful ','a mistaken ','an indepth','a proper','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:43'),(285,'He has no reason to <i>have his heart in his mouth</i>',' think negatively',' feel guilty ',' be afraid',' be confident','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3785,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:44'),(286,'That little boy has become quite <i>chubby</i>','thin    ',' intelligent   ','huge    ','tall','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3695,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:45'),(287,'Akpan was able to <i>douse</i> the flames with the new piece of equipment','reduce ','extinguish ','ignite ','reinforce','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3670,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(288,'He gave himself up by his <i>plebeian</i> tastes','robust ','voracious ','patrician   ','laughable','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3766,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:47'),(289,'<i>No sooner had</i> he arrived than it started to rain',' Long before ',' Seldom ','Simultaneously','Just before','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3726,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(290,'The action was <i>premeditated</i>','unnecessary ','catastrophic ','unplanned ','uncoordinated','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3755,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:49'),(291,'A <i>tentative</i> solution was provided','A convincing ',' provisional','An amicable ','A definite','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3652,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:50'),(292,'The chief said he would use the power <i>inherent</i> in his office to stop the celebration',' unrelated to ',' common to ',' allotted to ',' impervious to','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3767,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:51'),(293,'In our last play, Segun acted the <i>hero</i>','villain  ',' devil ','criminal ',' assassin','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3757,'Admin','0000-00-00 00:00:00','2020-07-19 11:28:49'),(294,'The police found a <i>conclusive</i> proof of the boy\\'s guilt','a corroborative ','A doubtful ','a consolatory',' an incriminating','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2006',3760,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:53'),(295,'The point you have made is quite <i>apt</i>','illogical ','helpful ','irrelevant ','insensitive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3848,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(296,'The man drew a sword as people <i>congregated round</i> him','praised',' gathered round ',' mobbed ',' fled from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3800,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:54'),(297,'The notice reads, No <i>cash</i> transactions in this hall\\'','money   ','gainful ','business ','cheque','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3768,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(298,' He <i>deprecated</i> the attempts made to unseat him.','despised','challenged    ','resisted','condemned','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3696,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:56'),(299,'The striking workers have vowed not to return to work until the decision is <i>reversed.</i> ','rescinded         ','dismissed','implemented    ','reverted. ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3781,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:57'),(300,'The police are not happy with the growing number of <i>depraved</i> people around the politician.','violent ','immoral ','indolent ','loquacious ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:58'),(301,'The last criticism at the rally was made <i>in ignorance</i>','uniformed ','objective ','unimpeaccable','impeccable ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3612,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:59'),(302,'The astute businessman neatly <i>fended</i> off questions off questions about his private life.','asked ','explained ','welcomed','sidestepped.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3657,'Admin','0000-00-00 00:00:00','2020-07-19 02:24:02'),(303,'We were warned not to indulge in <i>recriminations.</i>','counter-charges      ','indiscretions  ','accusation','frivolous allegations.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3723,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(304,'The shortage of petrol was a <i>perennial</i> problem','a recurring   ','a seasonal ','an annual','an incurable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3777,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:02'),(305,'The rest of the boys admire Olu\\'s <i>verve</i>','intelligence','work  ','handsomeness     ',' energy.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3750,'Admin','0000-00-00 00:00:00','2020-07-17 15:08:25'),(306,'He holds on firmly to his <i>hackneyed</i> view of life','wayward  ','principled',' obsolete','positive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3674,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(307,'I visited Amina <i>umpteen times</i> in her college, but she never came to me','often   ',' seldom   ',' twice   ','occasionally.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3678,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(308,'The debt the company incurred became rather <i>intolerable</i>. ','inevitable   ','unprecedented','insupportable ','dangerous.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3757,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:06'),(309,'The tax rebate was a <i>concession</i> given to the civil servants ','a donation ',' an allowance','an incentive  ','an emolument. ','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2007',3722,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:07'),(310,' <i>Beads</i> of sweat ran down Ngozi\\'s armpit','Pools','Springs   ','Ponds    ','Rivulets.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3850,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:08'),(311,'The noise across the road  <i>drowned</i> the sound of the keyboard in my room',' neutralized ',' overshadowed','balanced   ','equalized.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3769,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:09'),(312,'Things may change soon, but at the moment our economic situation is <i>precarious.</i>',' redeemable','buoyant ','uncertain   ',' unattractive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3844,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:09'),(313,'shoe<u>s</u>','horse','house','loss','reason','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2007',3777,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:10'),(314,'E<u>ngs</u>lish','end','thin','think','edge','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3793,'Admin','0000-00-00 00:00:00','2020-07-20 10:51:59'),(315,'clo<u>ths</u>e','thomas','three','they','mouth','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3768,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:19'),(316,'p<u>os</u>table','paw','pot','port','post','choose the option that has the same vowel sound as the letter(s) underlined.','','b','','utme','2007',3686,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:20'),(317,'bl<u>ues</u>','book','root','foot','look','choose the option that has the same vowel sound as the letter(s) underlined.','','d','','utme','2007',3801,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:21'),(318,'p<u>ears</u>','dear','year','there','near','choose the option that has the same vowel sound as the letter(s) underlined.','','a','','utme','2007',3772,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:22'),(319,'The refugees were received at the <i>transit</i> camp.','passage ',' permanent ','temporary ','nearby.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:23'),(320,'The man paid a large sum to <i>redeem</i> his mortgaged property ','ransom ','acquire ','pawn ','recover.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3756,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:24'),(321,'Lami and her husband are simply <i>munificent</i>','a wealthy   ','angry   ','happy  ','niggardly.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3819,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:25'),(322,'Is it necessary for us to go?\\' she asked in her <i>shrill</i> voice ','angry ','quiet',' indistinct ','aggressive.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3639,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:26'),(323,'The police demanded a <i>factual</i> account of the accident','a supportive  ','an uncorroborated','an admissible ','an undisguised.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3764,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:27'),(324,'The suggestions he made were very <i>unobtrusive</i>','forceful   ','helpful ','sincere    ','reasonable.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3740,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(325,'Mr. Adeyemo is quite a <i>conceited</i> young man','a resourceful','a practical ','an experienced ','an unassuming.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3801,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:29'),(326,'The stadium was <i>seething</i> with people when we entered',' filled ',' crowded ','empty   ','noisy.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3769,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(327,'The Vice-Chancellor <i>relinquished</i> power at the end of busterm ','abandoned   ','wielded  ','gave up',' clung on to.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3816,'Admin','0000-00-00 00:00:00','2020-07-19 12:52:42'),(328,'The students were <i>undeterred</i> by the noisy lecture environment. ','frustrated  ','encouraged','discouraged','challenged.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3803,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:32'),(329,'For anything to do with academic work, he has a great  a <i>version</i>','conversion ','attention','contempt  ','predilection.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3736,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:32'),(330,'The study he carried out of the problem was quite <i>comprehensive</i>','detailed ',' sketch  ','inscrutable ','complete.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3741,'Admin','0000-00-00 00:00:00','2020-07-20 10:51:58'),(331,'The man advised his wife to steer a <i>middle course</i> the argument between her and her employers','be recalcitrant  ','be unrepentant','be compromising','be unrelenting','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3818,'Admin','0000-00-00 00:00:00','2020-07-20 14:12:01'),(332,'Do not be <i>discouraged</i> by failure in life.','overjoyed','dissuaded','actuated ','disoriented.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3702,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:54'),(333,'Otokpa took after his late father who was a <i>tee totaller.</i>','a drunk ',' careless ','a disciplinarian ','sober','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3775,'Admin','0000-00-00 00:00:00','2020-07-20 14:11:00'),(334,'capitalism    ','capiTAIism   ','capitaLIsm','caPItalism ','CApitalism.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2007',3687,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:37'),(335,'association ','aSSociation    ','associaTION','associAtion   ','Association.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2007',3832,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:38'),(336,'advertisement ','adVERtisement  ','advertiseMENT',' adverTISEment   ','ADvertisement.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2007',3752,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:39'),(337,'',' intact  ',' integral ','negotiate ','about.','choose the option that has the stress on the first syllable.','','b','','utme','2007',3738,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(338,'','conduce   ',' renewal ','calendar ','reproduce.','choose the option that has the stress on the first syllable.','','c','','utme','2007',3718,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:41'),(339,'','understand   ','address ','afternoon ','taxi.','choose the option that has the stress on the first syllable.','','d','','utme','2007',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:42'),(340,'',' superior ','surcharge','slaughter ','superman.','choose the option that has a different stress pattern from the others.','','a','','utme','2007',3585,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:43'),(341,'','education ','individual ','agriculture','Cinderella.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:44'),(342,'','cigarette ','European ','evacuee','expedite.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3579,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:45'),(343,'Because of his …… nature, Ayo was tricked out of his wrist watch. ','kind   ','pliable  ',' uncompromising ','uncalculating ','choose the option that best completes the gap(s).','','a','','utme','2007',3715,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:45'),(344,'He says he ............. find me a job, but will accommodate me.','could not ','was notable to','is not able to','cannot be able to ','choose the option that best completes the gap(s).','','a','','utme','2007',3742,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:46'),(345,'The idle steward could not see ....... on the wall, and he lost his job.','the writing','what will be written ','the handwriting','what is written','choose the option that best completes the gap(s).','','c','','utme','2007',3758,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:47'),(346,'... went to the stadium to watch a football match.','Amadi and me  ','Amadi and I   ','Me and  Amadi   ','Amadi and myself  ','choose the option that best completes the gap(s).','','b','','utme','2007',3696,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:48'),(347,' If he arrived late, everyone... …….. him','would have blamed   ','will blame ','would  blame ','must blame','choose the option that best completes the gap(s).','','a','','utme','2007',3728,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:49'),(348,'When they examined his body, they found that he ...',' had been dead  ',' had been dying  ','died  ','was dead','choose the option that best completes the gap(s).','','d','','utme','2007',3715,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(349,'The rain fell for days... ','on ending ','at ending ','on end  ','at end','choose the option that best completes the gap(s).','','c','','utme','2007',3725,'Admin','0000-00-00 00:00:00','2020-07-16 00:47:41'),(350,'Yesterday in the hall, Ola said that ...........  his watch.','he had mislaid ','he had forgot ','ne has misplaced  ','he have lost ','choose the option that best completes the gap(s).','','a','','utme','2007',3658,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(351,'Government should invest more in …...   training.','teacher\\'s  ','teacher  ','teachers  ','teachers','choose the option that best completes the gap(s).','','b','','utme','2007',3582,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:53'),(352,'The team has benefitted from the coach\\'s ………. of experience. ','minefield ','reservoir ','wealth ','world ','choose the option that best completes the gap(s).','','c','','utme','2007',3807,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:54'),(353,'There was …………. any traffic as he drove home.',' hardly ',' normally ','usually  ','no ','choose the option that best completes the gap(s).','','a','','utme','2007',3855,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:55'),(354,'I look forward to ……. you next week.','seen ','seeing  ',' be seeing ','see ','choose the option that best completes the gap(s).','','b','','utme','2007',3775,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(355,'The girl cannot speak with a clear voice; she is always ………. ','blabbing ',' vociferating ',' stuttering ','gesticulating ','choose the option that best completes the gap(s).','','c','','utme','2007',3701,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:57'),(356,'The politician …….. the family of the deceased.  ',' greeted  ',' condoled  ','wept over ','commiserated with ','choose the option that best completes the gap(s).','','d','','utme','2007',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:58'),(357,'Making a phone call instead of paying a visit represents a …….  trend ',' sudden new major social  ',' new social sudden major',' new sudden major social','sudden social new major','choose the option that best completes the gap(s).','','c','','utme','2007',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:45:59'),(358,'Our soldiers are starting to zero …………. the enemy.','at    ','in on ',' unto ','on at ','choose the option that best completes the gap(s).','','b','','utme','2007',3505,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:55'),(359,'My father has been away on a journey but my mother  says she …...he …… this Friday.',' expects/would arrive','expected/win arrive ','expects/will arrive','expected/would arrive ','choose the option that best completes the gap(s).','','a','','utme','2007',3778,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:00'),(360,'Kola was fined; ……….. thieves were given a jail sentence.','the rest of the','rest ','the rest','rest off ','choose the option that best completes the gap(s).','','a','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(361,'I………  to pursue my education.','did not chance   ','did not have the opportunity','was not chanced    ','was not opportuned ','choose the option that best completes the gap(s).','','a','','utme','2007',3748,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(362,'Didn\\'t .......  draw your attention to the entry requirements?','anyone ','everyone ','everybody','no body','choose the option that best completes the gap(s).','','a','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:03'),(363,'He could not have rewarded them more handsomely.','He did not reward them very well,','He rewarded them well, and he was also a good- looking man.','He rewarded them very well.','He spoke to them in a very generous way.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3653,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(364,'My advice to Tolu was: \\'Look before you leap.\\'','Tolu was advised to consider her opinions before reaching any decisions.','Tolu was advised to consider the possible consequences before taking action.','Tolu was advised to weigh her decisions by looking and leaping.  ','Tolu was advised to leap only after looking.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2007',3785,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(365,'The official had allegedly been taking bribes.','Some people accused the official of taking bribes.','The official had been taking bribes without feeling any guilt.  ','It was proved that the official had been taking bribes ','The official accused some people of taking bribes.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3768,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:06'),(366,'Emeka hardly ever holds with my view on good governance.','Emeka sometimes opposes my idea of good governance.  ','My view on what good Governance is conforms with that of Emeka.','Emeka never really supports my opinion of good governance ','Emeka may never hold a view which conflicts with mine on good governance.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3691,'Admin','0000-00-00 00:00:00','2020-07-20 14:15:11'),(367,'The next village is at least 30 kilometres away.','The next village is 30 kilometres away, possibly less. ','The next village is approximately 30 kilometres away.    ','The next village is   only 30 kilometres away.','The next village is 30 kilometres away, or possibly more.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3742,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:08'),(368,'The woman won\\'t have lived through the night. ','It was likely that the woman died before morning ','The woman survived her ordeal but not without some help .   ','From all indications, the woman was taken much worse, though she overcame her ordeal','The woman might not have lived if she hadn’t got the right support','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3719,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:09'),(369,'There\\'s a door at either end of the building.','The building has two ends and two doors. ','The building has two ends, but only one doc\\'','The building has two ends, but I do not know which of the two has a door. ','The building has many ends each with a door.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3630,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:10'),(370,'We have to iron out our differences at once.','We must clear up without delay our misunderstanding ','We must sure that our problems are eliminated  at all costs ','We have to settle our disagreement once and for all.   ','We have to solve some of our problems for now.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3641,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:11'),(371,'There should be a level playing field for women entering  politics.  ','Women should not be allowed to enter  politics   ','Sports facilities should be provided for women entering politics.','Special privileges should be  given to women who want to enter politics','Men and women should be able to compete are political arena on an equal basis.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3694,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:12'),(372,'The country is holding its first free elections for five years. ','The last time the country held free electors  was five years ago. ','The first free elections in the  country have now taken five years to conduct.','The country held elections five years ago but they were not free. ','There were elections in the country five years ago.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3802,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:13'),(373,'He needn\\'t have bought that new table ','It isn\\'t possible that he bought the table ','He bought the table, but it wasn\\'t necessary ','He didn’t buy the table because it wasn\\'t necessary','He doesn\\'t need to buy the table ','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3677,'Admin','0000-00-00 00:00:00','2020-07-20 11:00:54'),(374,'Thanks to that phone call, I was able to obtain the visa,','in spite of that phone call, I obtained the vist ',' It was because of that phone call that the visa','I am grateful to whoever phoned me and I obtained the visa','If I had not recieved that phone call, I would not have obtained the visa.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3773,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:15'),(375,'It is likely that the governor will exact his pound of flesh ','He will probably demand a hefty  bribe ','He will probably engineer the assassination of his opponents ','He will probably impose crushing new taxes','He will probably demand for and get all that is due to him ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3810,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:15'),(376,'It was too cold for him to go out ','He had a bad cold, and did not go out,','Although it was very cold, he still went out ','As it was very cold, he did not go out','He was afraid to go out that day.','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3664,'Admin','0000-00-00 00:00:00','2020-07-20 10:32:44'),(377,'Ado and Abu are always together these days. They must be up to something.','They must have reconciled after their quarrel','They are probably planning something bar','They are capable of a praiseworthy achievement ','They bear some responsibility for what has happened.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:17'),(378,'He wants the meeting to be adjourned,','He wants the meeting closed ','He wants the meeting cancelled ','He wants the meeting to continue till another day ','He want  the meeting to another day without delay ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3709,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:18'),(379,'My father is one of the vociferous few challenging the company’s appointment of the manager.','My father is the one who shouts with a loud voice against the appointment of the manager','My father and others speak on behalf of the company against the appointment of the manager','My father is one of those objecting to the appointment of the manager','My father is agitated by the appointment of the manager','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3757,'Admin','0000-00-00 00:00:00','2020-07-20 14:13:50'),(380,'The voyagers fetched up in Nigeria','the foreigners finally settled in Nigeria','The journey by sea ended in Nigeria','The travellers made a stopover in Nigeria','The discoverers landed in Nigeria after a long journey,','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3818,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:20'),(381,'In those days in this school, everyone who spoke in a','language other than English paid a fine of ten naira','  Everyone of us paid a fine of ten naira because we did not always speak in English  ',' Everyone would pay a fine of ten naira for wanting to use a language other than English ','Those who spoke a language other than English on the premises paid a fine  of ten naira ','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:21'),(382,'The officer has discussed the vexed issue of incessant power failure','In anger, the officer explained the problem of constant power failure','The officer added his voice to the much discussed problem of power cut','The officer\\'s explanations angered those who have suffered the effects of frequency power failure ','The officer told the people not , to be angered by the frequent power cut','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3633,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:22'),(383,'The weather condition now <i>prevailin</i>g in the town is unbearable   ','widespread   ','dominant','unconscious ','disappointed','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3738,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:23'),(384,'The lady was  completely <i>nonplussed when her suitor</i>  rejected her gifts ','unpuzzled ','surprised ',' unconscious ','disappointed  ','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3764,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:24'),(385,'As a public officer, he should act with <i>scrupulous</i>  honesty at all times  ','impeccable  ','careless ','transparent ','uncompromising ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3831,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:25'),(386,'Men from the agency went into the market in search of <i>unwholesome</i>  food items ','banned ','imported ','healthy ','uncooked ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3744,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:26'),(387,'The condition of the hostels has become <i>deplorable </i>','admirable ','regrettable ','bearable ','malignant','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3795,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:27'),(388,'The plan to merge the two local government areas has met with much <i>apathy.</i>','hospitality ','criticism ','consideration ','enthusiasm ','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3841,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(389,'There is now a <i>dearth</i>  of talent in the industry; she said ','a lack ','an abundance ','a rebirth ','a shortage ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3637,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:29'),(390,'The students  <i>vandalized </i> their hostel curing the riot.','  deserted ','Unrepaired  ',' protected','decorated.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3761,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(391,'His <i>kind-hearted</i> master bought him a motorcycle',' stingy   ','generous    ',' shrewd ','angry.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3576,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:30'),(392,'<i>Mutual</i> love is what Kabi and Musa have in common, and nothing else.   ',' insincere     ','unhappy','one-sided    ','disrespectful. ','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3696,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(393,'Always strive to get what is <i>legitimate,</i>','illicit    ','legal',' good    ','impure','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3783,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:32'),(394,'Some aspects of their culture are <i>out of date</i>','genuine  ','pragmatic ','fashionable ','fake','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3767,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:33'),(395,'On the first day of her examination, Amina felt very <i>confident.</i>','excited ','dull  ','beefed up','strung up. ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:34'),(396,'My father is always very <i>frank</i> about his intentions','open   ','objective','secretive','deceitful','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3700,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(397,'The speaker was rather <i>bold</i> in his presentation of the case ','unfair ','reserved ','ashamed ','formal','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3794,'Admin','0000-00-00 00:00:00','2020-07-19 12:52:42'),(398,'The doctor tried to <i>soothe</i> the patient before the operation  ','examine   ',' treat ',' calm ','induce','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3694,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(399,'The charge brought against my brother was hardly <i>tenable\\\\</i>','sensible  ','defensible   ','meaningful',' flimsy','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3777,'Admin','0000-00-00 00:00:00','2020-07-20 14:23:11'),(400,'The man described his son as a <i>willful</i> character','   wicked ','obstinate','wild    ','tricky.','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3775,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:39'),(401,'Our teacher described Agbo\\'s story as a <i>phantom</i>','scary  ','realistic ','fanciful   ','interesting ','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3739,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:40'),(402,'I find the way she approaches her customers quite <i>repugnant</i> ','unpleasant   ','attractive. ','ungodly    ','encouraging','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3779,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(403,'Participation in the programme is <i>optional</i>','unnecessary   ',' recommended','hard to justify   ','a matter of choice','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3657,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:42'),(404,'Scientists have <i>invented</i> ways of preserving fruits much longer   ','coined ','devised   ','arranged','organized','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3651,'Admin','0000-00-00 00:00:00','2020-07-20 11:02:07'),(405,'The attempt to count the population was <i>largely</i> successful.  ',' mostly ','completely   ',' hardly','totally.','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3676,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:43'),(406,'The governor has <i>approved</i>  the award of the contract','appreciated ',' acknowledged ','vetoed ','endorsed','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3662,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:44'),(407,'I cannot stand Simon, I find his attitude <i>offensive</i>','unapproachable   ',' obnoxious ','wicked','  unpardonable','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3708,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:45'),(408,'The  man would not <i>withdraw</i>  what hi hid ','take back   ',' takeout   ','take','tike from','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3627,'Admin','0000-00-00 00:00:00','2020-07-14 02:11:55'),(409,'The <i>disagreement</i> between the two men became obvious during the meeting','insult','confrontation','passion','insinuation','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3787,'Admin','0000-00-00 00:00:00','2020-07-14 02:21:56'),(410,'The principal  detested his <i>recalcitrant</i> attitude ','disobedient ','arrogant ','voracious ','vengeful ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3835,'Admin','0000-00-00 00:00:00','2020-07-14 02:19:41'),(411,'The union officials suddenly became <i>reactive</i>','unruly ','impatient ','calm  ','submissive ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3704,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(412,'The popularity of the military dictator <i>waned</i>  after war ','increased ','changed ','declined ','skyrocketed.','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3672,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:50'),(413,'The chairman addressed the………… ','university French teacher','university of French teachers ','French one hundred university teachers ','university French one hundred teacher ','choose the option  best completes the gap(s) .','','a','','utme','2008',3783,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(414,'Kanuri is a language.........','I can\\'t speak it well ','that I cant speak it well ','of which I can\\'t speak it well','I can\\'t speak well ','choose the option  best completes the gap(s) .','','d','','utme','2008',3717,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:51'),(415,'Last Tuesday, Ochonu asked me.........',' had I come yesterday ','did you come yesterday ','whether I had come the day before ','If I had come yesterday','choose the option  best completes the gap(s) .','','c','','utme','2008',3749,'Admin','0000-00-00 00:00:00','2020-07-20 10:57:25'),(416,'The young man has..... to sober...……  after being drunk.','began/up ','begun/in    ','begun/up    ','began/down','choose the option  best completes the gap(s) .','','c','','utme','2008',3801,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:53'),(417,'My mother had........  the fire wood before it began to rain. ','splitting ','splited  ','splitted','splitting','choose the option  best completes the gap(s) .','','a','','utme','2008',3671,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:54'),(418,'The police officer warned the... communities against taking the law……… hands','feuding/into their own ','feudal/ to their own ','feuding to their own   ','feudal/in their own','choose the option  best completes the gap(s) .','','a','','utme','2008',3700,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(419,'Agbo could not travel as he had come...…  influenza','over with ','down with ','in from ','on to ','choose the option  best completes the gap(s) .','','b','','utme','2008',3642,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(420,'When he.........from his journey, I want to see him.','returns ','might have returned ','returned ','must have returned ','choose the option  best completes the gap(s) .','','a','','utme','2008',3735,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(421,'I knocked his door, but he.........','has already ten ','left already ','would already leave','had already left ','choose the option  best completes the gap(s) .','','d','','utme','2008',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:58'),(422,'………of the students  turned up, so the lecture was cancelled.','few ','Little',' A few  ',' A little','choose the option  best completes the gap(s) .','','a','','utme','2008',3692,'Admin','0000-00-00 00:00:00','2020-07-14 14:46:59'),(423,'He brought a  ……… against his neighbour.','complaint ','complains','complain ','complaining ','choose the option  best completes the gap(s) .','','a','','utme','2008',3663,'Admin','0000-00-00 00:00:00','2020-07-20 10:27:20'),(424,'The hotel lacks the ..……. for accommodating so many guests.','ability','capability','capacity','competence ','choose the option  best completes the gap(s) .','','c','','utme','2008',3706,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:01'),(425,'If you are not careful, you would .......... your money.','toss  ','lose','loose   ','lost','choose the option  best completes the gap(s) .','','b','','utme','2008',3789,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:02'),(426,'You must practise in order to................perfection.','obtain   ','have','get ','achieve','choose the option  best completes the gap(s) .','','d','','utme','2008',3751,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:03'),(427,'The condition of the room was so………... so I went outside ','intolerant','intolerable ','inconstant ','invariabl ','choose the option  best completes the gap(s) .','','b','','utme','2008',3799,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(428,'You don\\'t like Mathematics, ........... you?','do','don\\'t','cant ','can ','choose the option  best completes the gap(s) .','','a','','utme','2008',3785,'Admin','0000-00-00 00:00:00','2020-07-20 10:27:53'),(429,'They have had their debt written ........... by their creditors.','down ','on ','up ','off','choose the option  best completes the gap(s) .','','d','','utme','2008',3724,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:05'),(430,'Uncle Ochai now has enough money to complete his…….. building.','two storey ','two-storeyed ','two-story ','two storeyed ','choose the option  best completes the gap(s) .','','a','','utme','2008',3682,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:06'),(431,'By the end of this month……….for three years in this school.','I will study ','I  will have been studying ','I  am studying','I had been studying ','choose the option  best completes the gap(s) .','','b','','utme','2008',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:07'),(432,'He ……… the picture on table','laid ','lay ',' lied  ','Iain ','choose the option  best completes the gap(s) .','','a','','utme','2008',3767,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:08'),(433,'Sc<u>oo</u> led ','cold ','could ','court','you','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3683,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:09'),(434,'sh<u>ir</u> t  ','shut ','shade','surf','shed','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','c','','utme','2008',3737,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:10'),(435,'w<u>ai</u> st ','fete ','says','plait','breakfast ','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3667,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(436,'<u>th</u> atch ','clothing   ','mother','then ','method','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2008',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:12'),(437,'<u> ch</u> ateau  ','chart    ','church ','champagne',' chemical.','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2008',3719,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(438,' ju<u>dge</u> ','measure','General ','Pressure','Grace ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2008',3793,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:14'),(439,'','distress','control','bottom','report','choose the option has a different stress pattern from the others.','','c','','utme','2008',3836,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:15'),(440,'','original','deplorable','ability','revolution','choose the option has a different stress pattern from the others.','','d','','utme','2008',3761,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:16'),(441,'','release','exit','exchange','explode','choose the option has a different stress pattern from the others.','','b','','utme','2008',3722,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:17'),(442,'','bachelor','forget','cement','ago','choose the option that has the stress on the first syllable.','','a','','utme','2008',3735,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:18'),(443,'','librarian','immunize','militia','continuous','choose the option that has the stress on the first syllable.','','a','','utme','2008',3798,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:18'),(444,'','july','litereture','august','oesophagus','choose the option that has the stress on the first syllable.','','d','','utme','2008',3689,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:19'),(445,'xenophobia   ','XEndphobia   ','xeNOphobia',' xenoPHObia     ','xenophoBIA.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2008',3754,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:20'),(446,'photography ','phoTOgraphy   ','PHOtograhy',' photoGRAphy   ','photograPHY','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2008',3658,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:42'),(447,'melodramatic ','MEIodramatic  ','meLOdramatic',' meloDRAmatic ','melodraMAtic.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2008',3740,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:54'),(448,'It was our collective idea but Ado was doing every­ thing to steal the snow  ',' Ado was not part of the planning but he tried to rub us of the benefits of it.',' We planned the show together out Ado was trying to abort it. ','It was a joint project but Ado is trying to attract the most attention','We collated the idea for the show but Ado was trying to steal the programme.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3724,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(449,'As we watched, he just popped along to the shop for some bread  ',' He has walked slowly to the shop.',' He stole some bread from the shop but we could not stop him',' He broke into the bread shop before our very eyes    ','He went quickly to the shop for some bread.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3639,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:55'),(450,'In all ramifications, Chief Adeyemi was a successful principal of the school','He was partly a failure and partly a success    ','Everyone admitted that he was largely successful during his tenure ','He was not totally successful in the school  ','His tenure witnessed a huge success ','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3835,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:56'),(451,'I couldn\\'t buy the biscuit because of the hold-up in the supermarket. ','The shop had not opened.','The attendant was slow  ',' Armed robbers were',' There was nobody to attend to me.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3729,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:57'),(452,'You could have heard the sound, if you weren\\'t asleep.','You were not asleep so you heard the sound.','You were asleep so you did not hear the sound.','You heard the sound though you were asleep.','You did not hear the sound though you were not asleep','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3758,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:58'),(453,'Musa will not well because he has an itching palm.','He has rashes in his palm ','He is always looking for something to touch ','He is always read to accept bribe','He is always tapping people on the back','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3882,'Admin','0000-00-00 00:00:00','2020-07-14 14:47:59'),(454,'Emeka was always conspicuous by his absence when it came to attending lecturers.','That Emeka always attended lecturer made him conspicuous at school.','Emeka’s absence from lecturers was all too glaring. ','It was obvious that Emeka was not present at lectures   ','What made Emeka conspicuous was his occasional absence from school','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3786,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:00'),(455,'He was injured by friend fire. ','He was wounded in a war by a friend of his who fired a shot mistakenly.','He was injured by a gunshot that was fired by a friend. ','He was gut in a war by a weapon fired by his own side    ','it was a war and he was hit by a bomb fired by an unknown soldier.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3670,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:55'),(456,'Kola visits us on occasions, and I don\\'t like that.','I do not like Kola because he visits us only when an event is being celebrated. ','I hate the fact that Kola only visits us when something is being celebrated.','That Kola does not visit us often is something I object to.   ','Kola seldom visits us and that is because he is a fair-weather friend.','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3670,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:02'),(457,'At the time I arrived, Olu was lying in third place.',' Olu\\'s third position coincided with my arrival.',' When I arrived Olu was sleeping in the space reserved for him.',' It was a competition and Olu was in third position when I arrived. ','On my arrival at the competition, Olu went to sleep.','select the option that best explains the information conveyed in the sentence. ','','a','','utme','2009',3600,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:03'),(458,'We had difficulty eating the meat because was <i>leathery.</i>   ','bitter    ','stringy ','tough ','tender.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3762,'Admin','0000-00-00 00:00:00','2020-07-20 21:17:21'),(459,'The boy is <i>indolent</i> to do well at school?','intelligent ','industrious  ','inactive  ','stothful.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3731,'Admin','0000-00-00 00:00:00','2020-07-17 15:08:25'),(460,'Salasi\\'s <i>tremendous</i> effort has yielded results.','absolute  ','insignificant  ','unimaginable','prohibitive','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3727,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:06'),(461,'The <i>computerised</i> service of the new banks is heart­  warming. ','manual ','mechanical ','electrical','condensed.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3673,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:06'),(462,'Life has become a <i>misery</i> for many owing to the harsh economic condition in the country','drudgery   ','ridicule   ','ritual ','comfort. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3741,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:07'),(463,'The company director has a <i>vivacious</i> personality. ','a positive ','an unmanageable','an unimpressive ','a gregarious.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3683,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:08'),(464,'Young people have a <i>penchant</i> for fast cats ','likeness','passion ','madness ','dislike. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3654,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:09'),(465,'Most of his latest actions are <i>militant</i> in nature ','commanding ','civil ','zealous ','passionate. ','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3812,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:10'),(466,'His ideas sounded quite palatable yet they were <i>jettisoned</i> by the group, ','accepted ','clumped ','denied ','criticized.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3801,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:11'),(467,'The compulsory leave made her feel <i>listless</i>',' restful   ',' great  ',' fat   ','energetic.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3758,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:12'),(468,'A novel is an <i>embellished</i> \\' falsehood\\', said the teacher','enriched ',' exaggerated ','adorned ','Obliterated.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3757,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:13'),(469,' I have had enough of your <i>impudence</i>','politeness ','incivility ','arrogance ','boldness.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3515,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:14'),(470,'We were <i>collectively</i> responsible for keeping the machine in good shape.','jointly ','severally ','dutifully ','socially.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3842,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:15'),(471,'His comment was not <i>printable</i>','punishable  ','suitable ','offensive ','unfair.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3686,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(472,'<i>Curiously,</i> he escaped unhurt ','interestingly','unsurprisingly ','annoyingly ','unusually.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3804,'Admin','0000-00-00 00:00:00','2020-07-15 19:40:49'),(473,'Agwube\\'s explanation of her poor performance at the examination only <i>begged the question.</i>','delayed her punishment   ','sounded quite convincing ',' did not address the issue','overflogged the matter','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3749,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:18'),(474,'We have every need to preserve some of our national monuments for <i>posterity.</i> ','prosperity ','future','national pride   ','collective gain.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3810,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:19'),(475,'He <i>commands</i> the confidence and respect of all his subordinates ','requests',' enjoys   ','enforces','conjures.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3780,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:20'),(476,'The president has mapped out so many <i>laudable</i> projects to embark upon ','laughable   ','good',' praiseworthy   ','valuable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3726,'Admin','0000-00-00 00:00:00','2020-07-19 12:26:54'),(477,'Adamu\\'s father is a <i>stern</i> man ','wicked ','strict','playful ','conservative.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:21'),(478,'Nobody knew the source of the <i>altercation</i> between the couple  ','alter ego ','quarrel   ','deep love','wealth.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3651,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:22'),(479,'His poetry is said to be <i>inscrutable  </i> ','ludicrous','unlearnable ','inseparable ','mysterious.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3742,'Admin','0000-00-00 00:00:00','2020-07-20 14:19:41'),(480,'Hers was a <i>specious</i> argument about the government of the day ','misleading ','precious ','spacious ','true.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:24'),(481,'The Lagos bus conductor r wore his professional <i>livery</i>','badge   ','shoe ',' uniform ','cap.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3815,'Admin','0000-00-00 00:00:00','2020-07-19 12:52:42'),(482,'If Joy hadn\\'t been <i>tripped up</i> halfway through the race, she would have came first  ','discouraged','disqualified ','interrupted   ','exhausted.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3780,'Admin','0000-00-00 00:00:00','2020-07-19 12:52:42'),(483,'There must be something <i>sinister</i> about her late arrival','reasonable ','joyful ','hopeful ','ominous.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3798,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:27'),(484,'The <i>unification</i> of the country has brought about great technological advancement ','A restoration','agreement','cohesion ','stability.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:28'),(485,' His <i>amnesia</i> has affected his career ','loss of focus','loss of sight','loss of memory ','loss of direction.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3704,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:29'),(486,' Idris\\' <i>forbearance</i> endeared him to us ','hard work','patience ','wisdom ','good manners.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3633,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:30'),(487,'They hated the police and, by <i>implication,</i> me','extension',' inference ','examination','application','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3723,'Admin','0000-00-00 00:00:00','2020-07-20 14:23:24'),(488,'He is really very mean. He…… not lend me the money I wanted. ','should ','could  ','would','won\\'t  ','choose the option that best completes the gap(s).','','c','','utme','2009',3718,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(489,'When the cashier told him to join the queue, he considered it……. his dignity.','a drawback to ','an affront on','withdrawal from  ','a strain on ','choose the option that best completes the gap(s).','','b','','utme','2009',3747,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:32'),(490,'If anyone greets you, it is only polite to return….. Greeting','your  ','the one\\'s   ','Anyone\\'s ','one\\'s ','choose the option that best completes the gap(s).','','d','','utme','2009',3647,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:33'),(491,'Amina lives…..  campus.','in the. ',' on','at the ','inside','choose the option that best completes the gap(s).','','b','','utme','2009',3781,'Admin','0000-00-00 00:00:00','2020-07-19 12:52:42'),(492,'An acceptance of the offer would be a departure from the several rejections that….. ','had taken place ','have taken place','take place ','took place ','choose the option that best completes the gap(s).','','a','','utme','2009',3754,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:35'),(493,' The….. part of a new book is often written by a more experienced writer than the author. ','foreward','foreword','forward  ','forword  ','choose the option that best completes the gap(s).','','b','','utme','2009',3818,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:36'),(494,'The officer acted in….. the instructions. ','accordance ','accordance to','accordance of','accordance with ','choose the option that best completes the gap(s).','','d','','utme','2009',3659,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(495,'The bomb was... …….','detonated  ','dismantled ','deactivated ',' depleted','choose the option that best completes the gap(s).','','a','','utme','2009',3731,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:38'),(496,'If you want to succeed in life, don\\'t be envious….. other people\\'s achievement ','of     ',' to    ','with    ','on','choose the option that best completes the gap(s).','','a','','utme','2009',3745,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:39'),(497,'They are taught to value honour….. their lives.  ','from','in',' than ','above','choose the option that best completes the gap(s).','','b','','utme','2009',3787,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(498,'Our plan for the trip fell............when the rich man did not give us a life….. ?','off/boat','through/line','down/jacket ','in/help','choose the option that best completes the gap(s).','','b','','utme','2009',3726,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:41'),(499,'1 missed the match though it was shown on television on  two…….. nights. ','concurrent ','consistent ','concrete ','conservative ','choose the option that best completes the gap(s).','','d','','utme','2009',3659,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:42'),(500,'The company paid some money to Abu to... …..  him for the losses he suffered during the accident.','indemnify ',' condole with ','settle ','recompense','choose the option that best completes the gap(s).','','a','','utme','2009',3824,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:42'),(501,'You are just-putting the hat on. ……?','don\\'t you  ','isn\\'t it ',' aren\\'t you  ','not so','choose the option that best completes the gap(s).','','c','','utme','2009',3788,'Admin','0000-00-00 00:00:00','2020-07-20 14:26:25'),(502,'Government\\'s frowned upon politicians who are out to…….... Wealth','gain  ',' amass  ','steal ','waste','choose the option that best completes the gap(s).','','b','','utme','2009',3827,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:44'),(503,'I tried to discourage him, but he persisted……… revealing the secret to his son','for  ','in','  on ','to ','choose the option that best completes the gap(s).','','b','','utme','2009',3885,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:45'),(504,'He was determined to……... all opposition into submission','push ','cow ','box   ','pound ','choose the option that best completes the gap(s).','','b','','utme','2009',3819,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:46'),(505,'I am told that the market is.-, in to the interests of people from all ………….of life','tuned/walks ','constructed /places ','designed/places  ','set/works ','choose the option that best completes the gap(s).','','a','','utme','2009',3807,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:47'),(506,'Uche has been in ……….with his pen pal  for years.','exchange','correspondence ','favour  ','cord','choose the option that best completes the gap(s).','','a','','utme','2009',3691,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:48'),(507,'Abba became …….... about his inability to pass the examination.','despondent ','disenchanted ','dogmatic','joyful','choose the option that best completes the gap(s).','','a','','utme','2009',3754,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(508,'c<u>aug</u>ht','hot','water','sup','wrong','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','b ','','utme','2009',3764,'Admin','0000-00-00 00:00:00','2020-07-14 02:19:41'),(509,' c<u>ou</u>ntry','worry','courteous','bought','poultry','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','a','','utme','2009',3713,'Admin','0000-00-00 00:00:00','2020-07-14 02:00:54'),(510,' tr<u>a</u>p','wonder','because','plait','quantity','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','c','','utme','2009',3685,'Admin','0000-00-00 00:00:00','2020-07-14 01:30:15'),(511,'  re<u>s</u>t','result','show','unasked','wise','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3693,'Admin','0000-00-00 00:00:00','2020-07-14 12:28:50'),(512,'  <u>th</u>ought','taught','weather','theatre','fate','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3747,'Admin','0000-00-00 00:00:00','2020-07-14 12:28:51'),(513,'sheer','dear','shirt','spare','shade','choose the option that rhymes with the given word.','','a','','utme','2009',3691,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:54'),(514,'great','creek','crate','knit','treat','choose the option that rhymes with the given word.','','b','','utme','2009',3773,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:55'),(515,'own','brown','frown','gown','phone','choose the option that rhymes with the given word.','','d','','utme','2009',3897,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(516,'ceremoniously ','CEremoniously   ','ceREmoniously','cereMOniously      ','ceremoNlously.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2009',3803,'Admin','0000-00-00 00:00:00','2020-07-17 17:45:47'),(517,'  understandable ','unDERstandable','understandABLE','UNderstandable ','underSTANDable.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2009',3721,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:58'),(518,' management ','MAnagement ','maNAgement','manaGEment ','manageMENT','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2009',3779,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(519,'I AM called Uche a pilot. ','What did Lam call Uche',' Did Okoro call Uche a pilot?    ','Did I am Uche a driver? ','Did Lam wish Uche to be a pilot?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','b','','utme','2009',3782,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(520,'The girl DANCED in the village square.   ','Who danced  in the village square?  ',' Is this the village square where the girl danced? ','Did the girl dance in the village square? ','Did the girl sing in the  village square?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','d','','utme','2009',3718,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(521,'My father READ the newspaper.','Did my father steal the newspaper? ','Who read the newspaper?',' What did my father read?','Whose father read the newspaper?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','a','','utme','2009',3698,'Admin','0000-00-00 00:00:00','2020-07-14 14:49:01'),(522,'Though Mr, Iro is our new chairman, he views other members with jaundiced eye, ',' He takes a rather forceful position on dealing with his members.','He takes an unfavourable position concerning his members','He takes a sickly view of his members. ','He takes a rather hazy view of his members.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3867,'Admin','0000-00-00 00:00:00','2020-07-21 17:36:11'),(523,'People are not interested in who rules ','People are not ruled by the leaders they want ','People are not concerned about who rules them ','The rulers are not concerned about the people ','People who rule are not interested in the ruled.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3873,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(524,'It is always good to steer a middle course in whatever one does. ','It is always good to get midway in anything one does. ','It is always good to act with moderation. ','It is always good to move away from the forefront','It is always good to work very hard.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3798,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(525,'The witness said he had no axe to grind with his brothers.',' He had no hatred for the brothers ','He had no axe and therefore stole the matchet ','He had no axe and therefore borrowed their matchet ','He had no vested interest in the brothers.',' select the option that best explains the Information conveyed In the sentence. ','','d','','utme','2010',3844,'Admin','0000-00-00 00:00:00','2020-07-19 15:43:52'),(526,'The footballers moved with their tails between their legs.','They moved happily because they won the match','They were unhappy because they had been despised  by their opponents. ','They were ashamed because they had been defeated ','they moved with their tails between their legs.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3921,'Admin','0000-00-00 00:00:00','2020-07-21 17:36:11'),(527,'The headmaster managed to talk his way out of having  to give a speech ','He delivered a speech despite the difficulty ','He managed to give a speech out of a difficult situation ','He managed to get himself out of a difficult situation','He managed to talk on his way.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3819,'Admin','0000-00-00 00:00:00','2020-07-19 13:56:38'),(528,'As regards the matter, we have crossed the rubicon','We are completely at a toss','We are irrevocably committed ',' We are already quaffed','We are perfectly committed.  ',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3794,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(529,'Uche is full of himself ','He is concerted ','He is complete  ','He is a rich man ','He is careful.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3793,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(530,'As debutants in that tournament, the Super Eagles were up against their first opponents by three goals to nil','The Super Eagles were playing in the tournament for the first time, but they won their match by three goals to nothing ','Though the Super Eagles were rated as the weakest side in the tournament they won their first match by three goals to nil ','Even though the Super Eagles were playing without some of their regulars, they won their match by three goals to nil.','As the best attackers in the match. the Super Eagles easily defeated their opponents by three goals to nothing.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3840,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(531,'The woman was mournful as her husband was found dead drunk  ','She was sad because her husband was absolutely drunk ','She was apprehensive that her husband would drink again as soon as he recovered from the drunken stupor. ','She was sad because her husband was drunk and always as helpless as a dead  man ','She was mourning because her husband drank and died.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3781,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(532,'I am optimistic about the Interview though It was a <i>mind- bending</i>  exercise, ','an enervating ','a debilitating','a difficult ','an easy','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3848,'Admin','0000-00-00 00:00:00','2020-07-21 11:04:34'),(533,'The trader was amused by the  <i>cutthroat</i>  rush for the goods ','worrisome','strange ','lacklustre ','mad','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3858,'Admin','0000-00-00 00:00:00','2020-07-20 13:56:06'),(534,'The teacher said that All\\'s essay was full of many  <i>redundant</i>  details ','unexplained ','strange','necessary ','useful','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3825,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(535,'His father surmounted the  <i>myriad</i>  of obstacles on his way ','most ','few ','all ','many','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3803,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(536,'Her  <i>ingenuous</i>  smile drew our attention ','witty',' naive ','clever ','arrogant','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3865,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(537,'Ndeni gave a  <i>flawless</i>  speech at the party ','a wonderful ','a careless ','an interesting ','an imperfect','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3911,'Admin','0000-00-00 00:00:00','2020-07-21 12:01:46'),(538,' Beneath Ado\\'s  <i>guff</i>  exterior, he\\'s really very kind-hearted','nice','harsh ','rough ','gentle','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3789,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(539,'The captain says sports is being  <i>debased</i>  by commercial sponsorship ','localized ','perverted','elevated ','overvalued','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3762,'Admin','0000-00-00 00:00:00','2020-07-21 23:28:48'),(540,'Governing a country is not always as  <i>straightforward as</i>  people sometimes imagine.','complicated','troublesome   ','untoward   ','Irksome','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3679,'Admin','0000-00-00 00:00:00','2020-07-20 14:10:36'),(541,'The crowd was very  <i>receptive </i>  to the speaker\\'s suggestion ','disobedient ','repellent ','alert','Hostile','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3815,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(542,'There was a general  <i>acquiescence</i>  on the new drug law ','resistance ','discrepancy ','compromise','agreement','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3807,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(543,'Aisha seems to feel  <i>ambivalent</i>  about her future','decisive ','anxious ','ambitious ','inconsiderate','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3724,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(544,'The report of the committee contained a  <i>plethora</i>  of details',' shortage ','simplicity ','multitude',' spectrum','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3782,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(545,'The weather was still very  <i>heavy and sultry </i> ','wintry and shadowy ','cold and friendly ','cloudy and thundery','hot and uncomfortable','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3712,'Admin','0000-00-00 00:00:00','2020-07-21 14:24:04'),(546,'Ada gave her husband a look that made words  <i>superfluous</i> ','redundant ','spurious ','unnecessary',' scanty.','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3865,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(547,'A political  <i>impasse</i>  does not offer the best opportunity for merrymaking ','manifesto ','party ','gridlock',' rally','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3845,'Admin','0000-00-00 00:00:00','2020-07-21 17:36:11'),(548,'We were all  <i>enthusiastic</i>  as we awaited the result of the election ','bemused ','agitated ','elated','nervous','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3877,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(549,'The uniform makes the guards look  <i>absurd</i>  ','dirty','smart ','sensible','ridiculous','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3780,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(550,'The law is often  <i>tardy</i>  in reacting to changing attitude',' quick','low ','exclusive ','generous','choose the option nearest  in meaning to the word or phrase in Italics.','','b','','utme','2010',3854,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(551,'Isa and llu  <i>ate sumptuous</i>  meals on their brother\\'s wedding day','expensive ','foreign ','insipid','cheap','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3882,'Admin','0000-00-00 00:00:00','2020-07-21 19:00:35'),(552,'Kaltume  <i>crouched</i>  over the papers on her desk ','wrote on  ','stood on ','walked over','bent over','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3783,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(553,'The <i> panacea</i>  for a country\\'s economic mess lies in systematic planning and hard work ','cure  ','hope','foresight ','trouble','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3960,'Admin','0000-00-00 00:00:00','2020-07-21 19:00:35'),(554,'Thousands of workers have been victims of  <i>retrenchment</i>  since the military came back to power.','unemployment ','trench mentality ','suffering ','increase in penury','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3757,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(555,'The principal gave his speech   <i>off hand</i>  at the sports  meeting ','calmly ','Beautifully ','unconcerned','unprepared','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3712,'Admin','0000-00-00 00:00:00','2020-07-21 23:28:48'),(556,'Jankoli was dressed in an old  <i>assortment</i>  of clothes','avalanche ','homogeneity ','sameness','melange','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3808,'Admin','0000-00-00 00:00:00','2020-07-19 00:51:51'),(557,'The girl\\'s father was  <i>astounded</i>  to see her appear from the shrine ','collected ','overwhelmed','embarrassed ','astonished','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3761,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(558,'The director\\'s remark was extremely  <i>apposite</i>  to the issue being discussed ','appropriate','inconsequential ','emphatic ','adequate','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3897,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(559,'Her reputation is without a  <i>blemish </i> ','struggle','problem ','fault ','blessing','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3809,'Admin','0000-00-00 00:00:00','2020-07-21 11:56:49'),(560,'Ugo is  <i>eligible</i>  for the post of secretary ','nominated','invited','qualified ','intelligent','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3739,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(561,'This is an  <i>abridged</i> version of No Longer at Ease','an outdated    ','an enlarged ','an illustrated ','a shortened','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3872,'Admin','0000-00-00 00:00:00','2020-07-21 23:28:48'),(562,'Lemoti ………..','is gifted only not ','is only not gifted  ','not only ','is only gifted','choose the option that best completes the gap(s)','','b','','utme','2010',3927,'Admin','0000-00-00 00:00:00','2020-07-18 23:04:00'),(563,'He can recall the important dates in the nation\\'s history; it is interesting to listen as he rattles…….','off','over','up   ','out','choose the option that best completes the gap(s)','','a','','utme','2010',3723,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(564,'The boy told his mother','that was the girl he told her about ','that was the girl I told you about her','that was the girl I told her about ','that is the girl he told her about','choose the option that best completes the gap(s)','','a','','utme','2010',3899,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(565,'Last Monday his father asked me, .......','if\\' had come some days before ','if I had come the day before','did you come yesterday ','had I come yesterday','choose the option that best completes the gap(s)','','a','','utme','2010',3830,'Admin','0000-00-00 00:00:00','2020-07-21 14:24:04'),(566,'His wife was badly injured in the fracas, but I think  she will pull','up  ','over ','through ','back','choose the option that best completes the gap(s)','','c','','utme','2010',3827,'Admin','0000-00-00 00:00:00','2020-07-21 23:28:48'),(567,'A wide range of options','is ','were   ','are',' was','choose the option that best completes the gap(s)','','d','','utme','2010',3717,'Admin','0000-00-00 00:00:00','2020-07-21 17:36:11'),(568,'One of the women who .... in the premises.... been  ordered to quit ','sells/have ','sell/has  ','sell/have','sells/has','choose the option that best completes the gap(s)','','b','','utme','2010',3726,'Admin','0000-00-00 00:00:00','2020-07-21 17:36:11'),(569,'The new trade agreement should facilitate…..... ','more economic rapid growth  ','economic more rapid  growth ','rapid economic more growth   ','more rapid economic growth.','choose the option that best completes the gap(s)','','d','','utme','2010',3852,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(570,'The principal said that he was pleased......... my effort.',' on ','of ','with','about','choose the option that best completes the gap(s)','','c','','utme','2010',3802,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(571,'Paper is made…….. wood pulp ','on ','of ','from ','with','choose the option that best completes the gap(s)','','c','','utme','2010',3764,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(572,'Long after everyone…... the hall, Obi still sat inside.','left','is leaving ','has left','had left','choose the option that best completes the gap(s)','','d','','utme','2010',3817,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(573,'They are the.... dresses ','babys\\' ','baby ','babies','babies\\'','choose the option that best completes the gap(s)','','d','','utme','2010',3831,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(574,'The politician was sent …….. exile','onto ','into','on ','to','choose the option that best completes the gap(s)','','c','','utme','2010',3801,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(575,'When we looked up, we …….... the plane some miles away. ','site ','cited ','sited ','sighted','choose the option that best completes the gap(s)','','d','','utme','2010',3858,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(576,'Vital... is still spread ……..... word of mouth in most villages in Africa. ','information/from  ','information/with','information/by ','information/through ','choose the option that best completes the gap(s)','','c','','utme','2010',3741,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(577,'Western  education is one of the ... of colonial rule','legacies  ','evidence ','remnants ','inheritance ','choose the option that best completes the gap(s)','','a','','utme','2010',3780,'Admin','0000-00-00 00:00:00','2020-07-19 15:28:03'),(578,'The Federal Government has .... child trafficking ','postulated  ','projected ','prescribed ','proscribed','choose the option that best completes the gap(s)','','d','','utme','2010',3936,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(579,'The man was happy that his son confessed his guilt and so the others were .... ','implicated','accused ','punished ','Exonerated','choose the option that best completes the gap(s)','','d','','utme','2010',3805,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(580,'  Based on the facts before me, I have no alternative...........to hold you responsible ','only ','as ','than ','but','choose the option that best completes the gap(s)','','c','','utme','2010',3825,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(581,'Many people would always find reasons to ... the law','arrogate ','debase  ',' circumvent ','circumspect','choose the option that best completes the gap(s)','','c','','utme','2010',3698,'Admin','0000-00-00 00:00:00','2020-07-21 19:00:35'),(582,'c<u>oup</u> ','whup  ','shoot ','couple ','scout','choose the option that has the same vowel sound as the one represented by the letters underlined.','','b','','utme','2010',3915,'Admin','0000-00-00 00:00:00','2020-07-20 01:47:29'),(583,'ind<u>i</u>ct ','bright   ','fish ','pick ','brick','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3743,'Admin','0000-00-00 00:00:00','2020-07-21 14:24:04'),(584,'r<u>oa</u>red ','towered ','coast ','brought ','rod','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3763,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(585,'shea<u>th </u>','bathe ','length ','months ','paths','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2010',3804,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(586,'<u>h</u>igh ','what  ','honest ','who ','vehicle','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3875,'Admin','0000-00-00 00:00:00','2020-07-21 11:56:49'),(587,'o<u>f </u>course  ','plough ','dough ','over ','orphan','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3755,'Admin','0000-00-00 00:00:00','2020-07-20 23:16:19'),(588,'boys ','stays  ',' moist ','noise ','elbows','choose the option that rhymes with the given word.','','c','','utme','2010',3932,'Admin','0000-00-00 00:00:00','2020-07-21 23:28:48'),(589,'shine ','clean ','fine ',' machine ','lain','choose the option that rhymes with the given word.','','c','','utme','2010',3674,'Admin','0000-00-00 00:00:00','2020-07-21 14:24:04'),(590,'seer ','snare   ','spare','spear ','square','choose the option that rhymes with the given word.','','c','','utme','2010',3737,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(591,'political ','politiCAL  ','POlitical','poliTlcal','poLltical','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3880,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59'),(592,'satisfactory ','satisfacTORY  ','saTISfactory','SATisfactory ','satisFACtory','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3711,'Admin','0000-00-00 00:00:00','2020-07-21 19:00:35'),(593,'captivity ','captiviTY   ','captiVIty  ','capTlvity','CAPtivity','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','c','','utme','2010',3727,'Admin','0000-00-00 00:00:00','2020-07-21 11:56:49'),(594,'EMEKA finished his home work yesterday ','Was Emeka helped to do his home work? ','Did Emeka do his home work yesterday?','When did Emeka finish his home work? ','Who finished his home work yesterday','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','d','','utme','2010',3769,'Admin','0000-00-00 00:00:00','2020-07-19 15:43:52'),(595,'Taiwo SAILED to London','Did Taiwo fly to London?',' Did Taiwo sail to Brazil','Did Taiwo sail to London?','Where did Taiwo sail to?','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','a','','utme','2010',3744,'Admin','0000-00-00 00:00:00','2020-07-21 11:04:34'),(596,'My bag is made of LEATHER ','Whose bag is made of leather? ','Is my bag made of polythene? ','Is Abu\\'s bag made of leather? ','Is my bag made of leather','the word in capital letters has the <i>emphatic stress.</i> Choose the option to which the given sentence relates','','b','','utme','2010',3794,'Admin','0000-00-00 00:00:00','2020-07-21 12:07:59');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `englishlit` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `englishlit` VALUES (1,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son','question is on William Shakespeare\\'s hamlet','','d','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:31'),(2,'Prince Hamlet refrains from killing King Claudius while the latter is praying because ','he does not want to murder a pious man ','he is not yet fully convinced of his uncle’s guilt  ','King Claudius might thereby gain eternal life ','murder of a person paying is an unpardonable sin ','question is on William Shakespeare\\'s hamlet','','b','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:32'),(3,'Which of these best describes setting in a novel? ','the place where an event takes place ','the time when an event takes place ','the place and time of an event ','the back ground of an event ','question is on William Shakespeare\\'s hamlet','','c','','post-utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:32'),(4,'The farm Flincomb-Ash is symbolic of: ','Tess\\'s fallen state ','Tess\\'s innocence ','Tess\\'s happiness ','the suffering and ill-luck that is Tess\\'s fate','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','d','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:33'),(5,'Prince, in the novel, is','the title of Tess\\'s ravisher ','Angel Clare\\'s other name  ','the name of a horse ','the name of Tess\\'s brother ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','c','','post-utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:34'),(6,'The period Tess spends at Talbothays is the period of her:','the happiest period of her life ','the period she suffers most horribly in the novel ','the period she falls into temptation ','the period when she became pregnant ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','a','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:35'),(7,'The play starts with a ','flashback ','prayer ','muezzin ','dialogue ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:36'),(8,'Caliph: \\\"Atthiru invites Mallam because ','Mallam has offended the caliph ','Mai Worno needs to be talked to ','Attahiru wants Mallam to explain the dream he had ','Mallam and Mai Wurno are friends ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:38'),(9,'Caliph: \\\"You have spoken well. I agree with the Waziri\\' s suggestion. You shall be organize your men and build in new well in the market. “That is our judgement\\\". What informed this statement? ','Waziri fight with the white man ','Waziri\\'s disagreement with Sarkin Zango ','the dispute between Caliph Attahiru and Prince Muhammed al-Tahir  ','the dispute between Sarkin Zango and Sarkin Fatake.','question is on Attahiru, Ahmed Yerima\\'s play','','d','','post-utme','2006',124,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(10,'A five-line poem that treats a nonsensical subject with humour is a ','quartet ','limerick  ','panegyric  ','sestet.','','','b','','post-utme','2006',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:40'),(11,'Which of the following statement is most true about poetry?  ','the meanings of words are more important than their sounds  ','the sounds of words are more important than their meanings  ','the sounds of words are often more important than their meaning  ','sounds and meanings of words are of little consequence ','','','a','','post-utme','2006',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:40'),(12,'The expression “coin of gold” in “Naett, coin of gold” is ','personification ','epithet  ','metonymy  ','metaphor ','','','d','','post-utme','2006',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:41'),(13,'What figure of speech is “shining coal”?  ','paradox ','irony  ','oxymoron','paronomasia','','','c','','post-utme','2006',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:42'),(14,'The rhythm of the poem “Serenade” is  ','blue  ','jolting  ','jerky ','measured','','','c','','post-utme','2006',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:43'),(15,'Which of these best defined exposition in drama? ','the author’s own general introduction to the play  ','the author’s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals ','the first performance of the play on stage ','','','c','','post-utme','2006',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:44'),(16,'The tone or mood of the speaker in the poem is:  ','neutral  ','angry  ','happy  ','sad ','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.\\nAnd a few leaves lay on the starving sod,\\n…. They had fallen from an ash, and were gray\\n','','d','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:45'),(17,'Starving sod\\\" here is: ','a metaphor ','a personification ','a simile ','a paradox.','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.','','b','','post-utme','2006',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:46'),(18,'In Leopold Sedar Senghor\\'s \\\"I will pronounce Your Name\\\" Naeth represents ','Africa ','Senegal ','the poet\\'s mother ','the poet\\'s lover.','','','b','','post-utme','2006',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:47'),(19,'In Ofeimu\\'s \\\"we must learn Again to fly\\\" \\'Cumulus\\' symbolizes ','acloud ','old age ','sounded masses ','black hair.','','','b','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:48'),(20,'A brief but witty expression is called: ','song ','epigram','enecdote ','joke ','','','b','','post-utme','2006',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:49'),(21,'Pastoral poetry refers to the poetic composition of ','clergyman ','friare ','scops ','shepherds.','','','d','','post-utme','2006',141,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:49'),(22,'A literary composition that employs wit and humor to ridicule person or institution is','drama ','satire','norella ','clergy.','','','b','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:50'),(23,'In a tragedy, the moment when the protagonist suffers a reversal of fortune is know as ','eatharsis ','exposition ','enagnonsis ','peripeteia ','','','d','','post-utme','2006',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:51'),(24,'“When he was turned over, his eyeballs stared upward in amazement and horror, his mouth was locked torn wide: his trouser soaked with blood, were torn  open, and exposed to the cold , white air of morning the thick hairs of his groin, mattered together, black and rust red, and wound that seemed to be throbbing still\\\". This passage achieves realism through the use of ','details ','simple words ','the long sentence ','the past tense ','','','a','','post-utme','2007',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:02'),(25,'Earth has not anything to; show more  fair. Dull would he be of soul who could pass by a sight so touching in its majesty. This city now doth, like a garment, wear the beauty of the morning. It is suggested in this line that ','the beauty of the morning gains from the beauty of the city',' the beauty of the city gains  from the beauty of the morning','the beauty of the city and the beauty of the morning are unrelated ','there is no beauty on earth.','','','d','','post-utme','2007',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:03'),(26,'\\\"Of 0 cam fasten nut one cup upon him with that which he had drunk tonight already. He\\'ll be as full of quarrel and offence as my young mistress\\' dog ... \\\" Shakespeare, Othello  from the statement above it can be inferred that the speaker is ','disobedient ','quarrelsome ','drunkard ','scheming ','','','d','','post-utme','2007',145,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:04'),(27,'\\\"That that is why we must acc-c-cept the universal d-d-dome, b-b-because there is no d-d-d-direction, The b-b-bridge is the d-d-dome of religion and b-b- bridges d-don\\'t just g-g-go from here to the there; a bridge also face backwards\\\". Wole Soyinka, The Interpreters. The idiolectical feature of the character\\'s speech is the ','repetition of consonant sounds ','repetition of initial consonant sounds ','duplication of consonant sound clusters ','multiplication of diphthongs.','','','c','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:05'),(28,'\\\"As virtuous men pass wildly away, and higher to their souls, to go,  Whilst some of their sad friends to say,  \\\"The breadth goes now\\\", and some say \\\"No\\\".  The tone of this poem is generally ','appreciative ','serious','imaginative ','conversational.','','','d','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:06'),(29,'I am alone, And the murmur of my lips carry song and tears homewards from a plain a way from home. Okogbule Wonodi. \\\"Lament for Shola\\\". The poet-persona here expresses a feeling of ','love ','anger ','nostalgia ','sorrow ','','','c','','post-utme','2007',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:07'),(30,'One rhyme scheme typical of the English sonnet is ','bba abba cde cde ','bba abba cde dce ','abab cdcd efef gg ','abcd babb cde cc','','','c','','post-utme','2007',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:08'),(31,'Face thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2007',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:09'),(32,'A short witty statement is an ','epistle ','eulogy','epigram ','anecdote','','','c','','post-utme','2007',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:10'),(33,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2007',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:11'),(34,'A literary device that creates a mental picture of a situation is ','imagery','symbolism ','flashback ','epilogue.','','','a','','post-utme','2007',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:12'),(35,'Periphrasis in poetic diction is marked by ','circumlocution ','irony ','proverb ','parable.','','','a','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:13'),(36,'A deliberate imitation of a literary style with the intention to ridicule is ','lampoon ','prosody ','pun ','parody.','','','d','','post-utme','2007',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:14'),(37,'What happened to Tess at the end of Thomas Herds Tess of the D\\'urbervilles?','She is executed for committing murder ','She got married to Angel Clare ','She got married to Alec D’Urbervilles ','She gave birth to a baby boy.','','','c','','post-utme','2007',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:14'),(38,'The wood where Alec raped Tess is known as: ','Chase borough ','The Chase ','Greenhill ','Trantridge.','','','b','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:15'),(39,'The name of the place where Tess and Angel Clare meet each other the second time is: ','Tratridge ','Brazil ','Dubeyfield','Talbothays farm.','','','d','','post-utme','2007',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:16'),(40,'\\\"Taxi Driver\\\" in Timothy Wangusa\\'s \\\"A Taxi Driver on his Death\\\" can be interpreted as a metaphor describing ','a careful driver ','a ruthless dictator ','a drunkard ','a careless man.','','','b','','post-utme','2007',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:17'),(41,'The tone in Dennis Brutus\\' \\\"A Troubadour I Traverse .... \\\" can be described as: ','defiant ','submissive ','regretful ','arrogant.','','','a','','post-utme','2007',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:18'),(42,'\\\"Naett\\\" in Leopold Sedar Senmghor\\'s \\\"I will Pronounce you Name\\\" refers to: ','South Africa ','a women ','a man ','Black Africa.','','','d','','post-utme','2007',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:19'),(43,'\\\"Cloud I, early sequestered from my tribe, Free a lead - tethered scribe.\\\" The above lines\\' from J.P. Clark\\'s \\\"Agbor Dancer\\\" suggests that the persona is: ','one with his tribe ','alienated from his tribe ','one of the dancers ','one of the drummers.','','','b','','post-utme','2007',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:20'),(44,'The name of the author of \\\"We Must Learn to Fly\\\" is: ','Dennis Brutus ','Leopold Sedar Senghor ','Odia Ofeimun ','Wole Soyinka.','','','c','','post-utme','2007',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:21'),(45,'One of the following is a characteristic of a novel: ','It is written only in dialogues ','It adopts the poetic form ','It is written mainly in prose','It employs phrases and sentences.','','','d','','post-utme','2007',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:22'),(46,'The law protecting works of art from unlawful reproduction is called: ','plagiarism ','illegal photocopying ','It is written mainly in prose','copyright.','','','d','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:23'),(47,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son. ','','','d','','post-utme','2007',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:23'),(48,'What figure of speech does the following quotation contain? A life\\'s but a walking shadow (Macbeth)','a metaphor ','an image ','a synecdoche ','an allusion','','','a','','post-utme','2008',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:24'),(49,'Which of the following statement is most true about poetry? ','the meanings of words are more important than their sounds ','the sounds of words are more important than their meanings ','the sounds of words are often more important than their meanings ','sounds and meanings of words are of little consequence','','','a','','post-utme','2008',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:25'),(50,'Which of these best define exposition in drama?','the author\\'s own general introduction to the play ','the author\\'s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals','the first performance of the play on stage.','','','c','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:26'),(51,'When the speaker in a poem cannot be identified with poet, that speaker is called: ','a persona ','a dramatic persona ','a soliloquist','a ventriloquist.','','','a','','post-utme','2008',102,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:27'),(52,'Which of these definitions best described a lyric? ','a short poem','a short poem in which the poet is speaking','a poem expressing a personal idea, feeling or mood','a poem divided into stanza.','','','c','','post-utme','2008',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:28'),(53,'An autobiographical novel is: ','a novel written about another novelist ','a true account of a novelist\\'s life by himself ','a novel in which h the novel 1st draws mainly on materials from his own life ','a novel using the\\' I\\' pronoun.','','','c','','post-utme','2008',137,'Admin','0000-00-00 00:00:00','2020-07-17 15:08:25'),(54,'Plot in prose fiction is best defined as:  ','the cause and effect sequence of events  ','the brief summary of events  ','the central event  ','the subject-matter of a novel.','','','a','','post-utme','2008',139,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:30'),(55,'Which of these is not true about unity of action in a novel? ','action may be unified through a single main character  ','action may be unified by being set in one place  ','action may be unified by many characters  ','action may be unified by using set in one consistent point of view.','','','a','','post-utme','2008',147,'Admin','0000-00-00 00:00:00','2020-07-15 16:54:49'),(56,'Action in a novel is best defined as:  ','the summary of the novel’s story  ','what the characters do or say in the novel  ','the numerous sub-plots of the novel put together ','the totality of all the episodes in a novel leading to the conclusion','','','b','','post-utme','2008',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:32'),(57,'Suspense in a novel means:  ','the postponement of the hero’s death till the last possible moment ','the intense emotions that the author conveys  ','the inconclusive end of a novel  ','when we are curious about what happens next in a novel.','','','d','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:33'),(58,'A realistic novel is one in which the characters are:  ','real   ','historical ','just of above average intelligence  ','the types that we meet in everyday life.','','','a','','post-utme','2008',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:33'),(59,'Theme is best defined as:  ','the subject – matter of a novel or play ','the central idea in a play or novel  ','the point of view in that novel  ','the sum-total of all the characters’ experiences','','','a','','post-utme','2008',120,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(60,'What kind of repetition is used in the extract?  ','anaphora ','single word repetition  ','line repetition  ','phrase repetition.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:35'),(61,'A part from emphasis, what other effect does the repetition have?  ','makes the poem rhythmical  ','makes the poem tedious  ','makes the poem -notonous  ','makes the poem exhilarating.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',112,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:36'),(62,'The following line from a poem:  Western wind, when will thou blow? Is an example of: ','rhetorical question  ','caesura  ','alliteration  ','nature imagery.','','','a','','post-utme','2008',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:37'),(63,'Identify the odd one out of these types of imagery  ','visual imagery  ','tactile imagery  ','synesthesia  ','literal imagery.','','','d','','post-utme','2008',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:38'),(64,'When a poet uses mainly soft vowel sounds in a poem, the texture of the poem is ','mellifluous ','harsh ','assonantal ','neutral ','','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:39'),(65,'The sounds in the following lines may be described as an example of: The moan of doves in immemorial elms, and murmuring of innumerable bees ','alliteration ','euphony ','cacophony ','a mixture of all the above.','','','b','','post-utme','2008',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:40'),(66,'\\\"The man dies in him who keeps silent in the face of tyranny.\\\" This statement can be described as: ','Metaphoric ','Literal ','Tragic ','A smile.','','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(67,'The literary technique in which a reader is taken to the past of a current action in known as:','rewinding ','fast forward ','flashback ','repetition.','','','c','','post-utme','2008',132,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(68,'One rhyme scheme typical of the English sonnet is ','abba abba cde dce ','abba abba cde cde ','abab cdcd efef gg ','abcd babb cde cc.','','','c','','post-utme','2008',123,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(69,'The speaker of the above except is a ','son of Lord Montague ',' nephew to Lady Capulet ','kinsman to the Prince ',' servant to Paris.','\\\" ... This is a Montague, our foe; A villain, that is hither come in spit. To scorn at out solemnity this night. William Shakespeare: Romeo and Juliet I:V,61-63. ','','b','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(70,'In Gbemisola Adeoti\\'s \\\"Naked Soles\\\", the expression \\\"red milk of grief\\' means ','wine ','sea ','ink ','blood.','','','d','','post-utme','2008',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:44'),(71,'Farce thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2008',103,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:45'),(72,'A short witty statement is an ','epistle ','eulogy ','epigram ','anecdote.','','','c','','post-utme','2008',141,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:46'),(73,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2008',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:47'),(74,'Literary device that creates a mental picture of   a situation is ','imagery ','symbolism ','flashback ','epilogue','','','a','','post-utme','2008',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:48'),(75,'To whom does her in line 5 refers to?  ','God  ','Letter  ','World ','Nature','This is my letter to the world\\nThat never wrote to me\\nThe simple news nature told\\nWith tender majesty\\nHer message is committed\\nTo hands, I cannot see;\\nFor love of her, set countrymen,\\nJudge tenderly one me.\\n','','d','','post-utme','2009',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:49'),(76,'The suddenly her heart was whipped up, she now rode on strange waves: alone defying the wind and the rain; alone, fighting hunger and thirst in the desert, alone, struggling with strange demons in the forest bringing  glad tidings to her people. The mood of the lady in this  passage is one of ','simple defiance ','defeat  ','triumphant  ','depression','','','c','','post-utme','2009',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:50'),(77,'Mother, didn’t you hear me? I’ve brought the goat, hen and yams. Don’t you want them anymore? Why do you continue to look at me like that? I haven’t done anything wrong, again, have I, answer me, speak to me, mother’  The  dominant mood in this passage is one of ','sadness ','anxiety  ','anger  ','nonchalance.','','','b','','post-utme','2009',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:51'),(78,'What distinguishes poetry from other  forms of literature is its  ','Rhyme and verse ','rhythm and metaphor ','emotion and feeling  ','irony and paradox','','','a','','post-utme','2009',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:52'),(79,'Assonance poetry is the repetition of ','internal vowels in words ','consonant sounds in words ','final sounds at the end of a line 1 ','final sounds at the beginning of a line','','','a','','post-utme','2009',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:53'),(80,'There knells a jigger, a louse , a weevil, a flea, a bedbug! He is mistletoe, a parasite that lives on the trees of other people’s! the speaker uses a string of ','metaphors  ','parables  ','hyperboles  ','riddles','','','a','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:54'),(81,'As literacy form the short  story is most closely related to ','the discourse ','the novel  ','story telling  ','poetry ','','','b','','post-utme','2009',108,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:55'),(82,'A poem written on a grand theme, in an appropriately grand style, dealing, with heroic figures is called ','an epigram  ','an epic ','a soliloquy ','heroic poem','','','b','','post-utme','2009',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:56'),(83,'The literary device which uses ridicule to correct social ills is known as ','anecdote  ','saturation  ','hyperbole  ','satire.','','','d','','post-utme','2009',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:56'),(84,'Characterization is a novel means the ','list of characters featuring in it ','peculiar materialisms of the narrator ','mode of presenting the fictional individuals ','list of those that act the novel.','','','d','','post-utme','2009',135,'Admin','0000-00-00 00:00:00','2020-07-14 02:27:06'),(85,'Caricature is used to ','censure an individual by emphasizing his weakness ','expose the folly  in literature  ','ridicule a person by distorting his most prominent features ','elicit the artistic potential of dramatist.','','','c','','post-utme','2009',117,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(86,'The branch of knowledge that places emphasis on beauty is ','philosophy ','ode to pretty ','philology ','aesthetics.','','','d','','post-utme','2009',130,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:26'),(87,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','‘You kiss her on the cheek \\nYou kiss her open-sore lips\\nAs white people do.\\nYou suck slimy saliva\\nFrom each other’s moths.\\nAs white people do.\\nOkot P’ Breck’s song of larie\\n','','b','','post-utme','2009',127,'Admin','0000-00-00 00:00:00','2020-07-14 02:23:34'),(88,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','','','d','','post-utme','2009',133,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(89,'‘Beholds her, single in the field you solitary Highland Lass! Reaping and singing, by herself stop here, or gently pass! Alone she cuts and blinds the gram, and sings a melancholy strain, O listen! For the Vale profound Is overflowing with the sound. The rhyming schema in the first stanza of The Solitary Reaper above is ','abcbddee ','ababccdd ','alxabcdd ','abcbddef','','','a','','post-utme','2009',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:02'),(90,'The tone of the poet is ','optimistic ','dupplicatory  ','sympathetic ','piteous','These only tears\\nDripping down the tears on your depressed face.\\nWill one day be staunche.\\nI swear’ \\n','','a','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:03'),(91,'The literary device  which anticipates that an event will take place is best described as ','parody ','flashback ','foreshadowing ','rising action ','','','c','','post-utme','2009',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:04'),(92,'The multiple deaths in the play serve as a punishment for ','impatience on the part of  Romeo and Juliet; ','imposing life partners on children ','disobedience of the protagonists  ','Tybalt’s fiery temper.','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:04'),(93,'Romeo’s death becomes inevitable because ','Emire Lawrence’s is not delivered: ','Juliet is married to Paris ','Romeo kills Tybalt in a duel ','Juliet has committed suicide.','Question is based on William Shakespeare’s Romeo and Juliet','','a','','post-utme','2009',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:05'),(94,'Before he met Juliet, Romeo was in love with ','country Paris ','Rosaline  ','Benvolio  ','Mercuito','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:06'),(95,'The major reason for Juliet’s  grief is ','The death of her cousin; ','her reluctant marriage to Romeo  ','the banishment of her lover ','her imminent death.','Question is based on William Shakespeare’s Romeo and Juliet','','c','','post-utme','2009',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:07'),(96,'Winston Smith begins his rebellion against the power of the state by ','educating the youth  ','keeping a private diary  ','purchasing arms ','disobeying Big Brother.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',138,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:08'),(97,'In the novel, Orwell attempts  to ','eulogizes the beauty of the socialist system; ','condemn the disgusting hypocrisy of all communist systems; ','satirize the artificiality  of a machine controlled society ','deride the political lock jam in Nigeria.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:19'),(98,'“The experts, of course disagree the urine test they ordered ‘said, Negative’. The lives above from acqah’s in the Nanel of the soul depict ','awareness ','inevitability ','progress ','contradiction.','Question is based on selected poems','','d','','post-utme','2009',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:20'),(99,'In Kunene’s Heritage of Liberation, freedom is to be achieved through the efforts of ','the new generation  ','the old generation ','present generation ','successive generations.','Question is based on selected poems','','d','','post-utme','2009',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:21'),(100,'The thematic pre-occupation of de Graft’s  Sons and Daughters can be summarized as ','the import of Western education ','the roles of women in modern economy ','how to become a lawyer ','dimly life in the face of social changes.','','','d','','post-utme','2010',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:22'),(101,'Lawyer Bonu in de Grafts Sons and Daughters can be described as a: ','caring father ','faithful husband ','deceitful friend ','shrewd politician.','','','d','','post-utme','2010',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:23'),(102,'De graft’s Sons and Daughters is structured into: ','three acts ','four scenes ','two acts ','five Episodes.','','','a','','post-utme','2010',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:24'),(103,'The central  conflict in de Graft’s Sons and Daughter is primarily: ','political ','generational ','racial','communal','','','d','','post-utme','2010',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:25'),(104,'He already had five wives and was soon going to break the legs of the antelope for the sixth time’. The expression ‘break the legs of the antelope’ means to: ','be ON honeymoon ','offer ritual sacrifice ','hunt for antelopes  ','have a  new baby.','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:26'),(105,'The medal in Oyono’s The Old man and the  two sons and his: ','house ','horse  ','land ','Job','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:32'),(106,'Kelara in Oyono’s The Old man and the Medal is: ','Mvodo’s sister ','commandant’s maid  ','Meka’s wife ','Agatha’s cousin.','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',120,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(107,'In Oyonon’s The Old Man and the Medal, Ignatius Obebe isa : ','driver ','soldier ','carpenter ','catechist.','Question is  based on Oyono’s Old man hand the medal','','d','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:34'),(108,'The medal in Oyono’s The Old man and the medal is a symbol of: ','colonial deceit ','African pride  ','genuine reward for loyalty ','respect and honour','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',110,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:35'),(109,'Dancing through blooming thorns” in Gbemisola  Adeoti’s Naked soles” connotes: ','hoeing a field of thorns ','dancing  in a keen competition ','being merry amidst suffering','playing flowers and plants.','Question is are based on selected African poems.','','c','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:35'),(110,'In Gbemisola Adeoti’s Naked Soles”, the expression red milk of grief’ refers to: ','wine  ','Ink ','blood ','palm-oil','Question is are based on selected African poems.','','c','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:36'),(111,'In Masizi Kunene’s “A Heritage of Liberation; this season’ refers to the period of: ','oppression ','freedom  ','migration  ','resettlement','Question is are based on selected African poems.','','b','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:37'),(112,'“Eagle in Kunene’s  “A Heritage  of  Liberation” is a symbol of: ','deceit ','peace ','agility ','death.','Question is are based on selected African poems.','','d','','post-utme','2010',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:38'),(113,'The tone in Gbemisola Adeoti’s Naked soles” is that of ','reconciliation  ','lamentation  ','exhortation ','admiration','Question is are based on selected African poems.','','b','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:39'),(114,'The attitude of the poet-Persona toward bats in D.H. Lawrence’s “Bats” is that of ','revulsion ','veneration  ','admiration  ','indifference.','Questions is based on Non-African Poetry','','a','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:40'),(115,'In China, according to D.H. Lawrence, bats are symbols of: ','death  ','birth ','caution ','joy','Questions is based on Non-African Poetry','','d','','post-utme','2010',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:41'),(116,'In Wendy Cope’s Sonnet VII,  poetry is regarded as a God –given weapon to: ','musicians ','recluses ','nomads ','pilgrims.','Questions is based on Non-African Poetry','','b','','post-utme','2010',129,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:42'),(117,'The greatest challenge to the poet-persona in Andrew Marvell’s “To His Coy Mistress’ is : ','chariot ','love  ','time ','youth','Questions is based on Non-African Poetry','','c','','post-utme','2010',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:43'),(118,'But the pigs were so clever that they could think of a way around every difficulty. As for the horses, they know every inch of the field and in fact understood the business of mowing and raking”. The dominant literary device in the excerpt above is ','repetition ','mimesis ','ellipsis ','personification.','Question is  based on literary appreciation','','d','','post-utme','2010',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:44'),(119,'“The dairy maids and men had flocked down from their cottages and out of the dairy-house with the arrival of the cows from the meads: the maids walking in  patterns, not on account of weather, but to keep their shoes above the mulch of the barton”. The setting of the above  passage can be described as: ','urban  ','celestial ','pastoral  ','religious.','Question is  based on literary appreciation','','c','','post-utme','2010',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:45'),(120,'“O mother, my mother!...How could I be expected to know? I was a child when I left this house four months ago. Why didn’t  you tell me there was danger in men-folk? Why didn’t you warn me?” the speech above achieves its literary effect through the use of: ','litotes  ','onomatopoeia ','allusion  ','repetition.','Question is  based on literary appreciation','','d','','post-utme','2010',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(121,'“The animals saw no reason to disbelieve him, especially as they could no longer remember very clearly  what conditions had been like before the rebellion. All the same, there were days when they felt that they would sooner have had less figures and more food”. The tone of the passage above is quite: ','exhilarating ','cynical ','optimistic ','obsequious.','Question is  based on literary appreciation','','b','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(122,'“We are tired of waiting for another war our trees their leaves have shed the winter has come and gone spring flowers have blossomed and withered” in line 2 of the poem above, the poet uses:','ellipsis ','alliteration ','inversion  ','oxymoron.','Question is  based on literary appreciation','','c','','post-utme','2010',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:47'),(123,'The poet personal in the poem above is: ','resigned to fate  ','a holy man  ','a daily traveler  ','suffering but optimistic. ','“I come and go\\na pilgrim\\ngrubbily unkempt\\nstubbornly cheerful\\ndefiantly whistling hope\\nand grubbing for crumbs of success\\nout of all near-defeats.\\n','','d','','post-utme','2010',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:48'),(124,'A novel that has a very strong presence of the supernatural is known as ______ ','faction  ','gothic  ','travel tale  ','fairy novel ','','','d','','post-utme','2012',129,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:50'),(125,'In a tragic-comedy, the unknotting of the plot, the resolution of the mystery and the resolution of the misunderstanding is called  ','exposition   ','denouement   ','catharsis  ','hubris','','','b','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:51'),(126,'The exclusive right given to authors to protect their works from unlawful production or reproduction is   ','A copyright  ','an authority to write  ','an author’s right   ','a constitutional provision ','','','a','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:52'),(127,'An epic deals with  ','humour  ','tragedy  ','gothic  ','hero','','','d','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:53'),(128,'The sudden revelation of events as they happen is called  ','epiphany  ','revelation  ','relay-events  ','resonance ','','','d','','post-utme','2012',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:54'),(129,'Comic relief is used in a work of art to  ','to suspend disbelief  ','to maneuver the portal of narration  ','to create chiaroscuro  ','to suspend to tension ','','','d','','post-utme','2012',123,'Admin','0000-00-00 00:00:00','2020-07-17 15:08:25'),(130,'The image in this excerpt suggest ','happiness  ','sorrow ','anger  ','kindness','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','b','','post-utme','2012',135,'Admin','0000-00-00 00:00:00','2020-07-15 19:31:30'),(131,'The world as used above is an example of  ','irony  ','metaphor ','exaggeration  ','parody ','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','c','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:07'),(132,'This extract is an example of  ','dirge  ','satire  ','ode  ','sonnet','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:08'),(133,'The general  idea in the extract is ','neglect  ','praise  ','ridicule  ','worship','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:09'),(134,'  The central motif in this excerpt is  ','religious  ','pride  ','poverty  ','deceit ','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:15'),(135,'The extract is an example of  ','pun  ','hyperbole  ','Irony  ','parody','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:17'),(136,'“Your hand is heavy, Night, upon by brow” is an example of  ','hyperbole  ','onomatopoeia  ','apostrophe  ','oxymoron ','','','a','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:18'),(137,'From this passage, the people that the writer admire are  ','poor  ','brilliant   ','rich   ','unassuming ','(Extract for question)\\nThe human beings who I most admire are those without sterling qualities but are extraordinary in their ordinariness, the unsung heroes who will never be in the limelight or boulevard of fame, people who do great things when no one is watching or those who are not marked with the maple leaves of chieftaincy titles. They only wear fate, hard work, perseverance, anonymity and time. Yet, they are passionate, caring, visionary, sincere, determined and honest. These qualities mold those that are special without being aware. I strive to stay true to some of these qualities that I admire. To find a person with a few of these qualities is rare these days. To know someone who has all of them is amazing and a true blessing. [Excerpt from Tomorrow Left Us Yesterday-Tayo Olafioye]\\n','','d','','post-utme','2012',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:19'),(138,'The writer informs the reader that people with good qualities are  ','many  ','few  ','fearful  ','famous','','','b','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:20'),(139,'Aaron’s brother who trains as an accountant is  ','George  ','Awere  ','Owusu  ','Kofi','Question is based on Joe de Graft’s Sons and daughters','','d','','post-utme','2012',138,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:20'),(140,'Which of the following is true of the Awere?  ','He is the fiancé of Maanan  ','He is a chartered accountant   ','He wins a scholarship to Goldsmith College  ','He wants to study dance and choreography ','Question is based on Joe de Graft’s Sons and daughters','','a','','post-utme','2012',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:21'),(141,'The conflict in the play centres around  ','gender  ','generation  ','religion  ','ethnicity ','Question is based on Joe de Graft’s Sons and daughters','','b','','post-utme','2012',114,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(142,' The text of Shakespeare’s Romeo and Juliet is sourced in ','1623 second Folio  ','1590 rehearsal guide  ','1599 Quarto  ','1616 manuscript ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','a','','post-utme','2012',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:23'),(143,'“There’s no trust No faith, no honesty in men, all perjured, All forsworn, all naught, all dissembles” The speaker of the above excerpt is ','Nurse  ','Juliet  ','Balthasaar  ','Capulet ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','b','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:24'),(144,'Another Suitor of Juliet in the play is  ','Mercutio  ','Gregory  ','Duke  ','Paris','Question is drawn from William Shakespeare’s ROMEO and JULIET','','d','','post-utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:25'),(145,'In the novel, the Ministry that is responsible for news, entertainment and fine arts in the Ministry of  ','Peace  ','Love  ','Plenty  ','Truth','Question is based on George Orwell’s Nineteen Eight Four','','d','','post-utme','2012',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:26'),(146,'The Ministry of Plenty in the Novel is responsible for  ','War  ','economic affairs  ','Population  ','Agriculture ','Question is based on George Orwell’s Nineteen Eight Four','','b','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:27'),(147,'The national day in The Old Man and the Medal is  ','1st of October  ','27th of May  ','12th June  ','14th July','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','d','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:28'),(148,'In Joys of Motherhood, Dr Meers is  ','Nnaife’s master  ','Nnuego’s uncle  ','The District Officer  ','An ombudsman','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','a','','post-utme','2012',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:29'),(149,'“ I don’t see how any mother who cares for the modesty of her daughter can coolly sit down there and defend such waywardness”. “way wardness” in the except above refers to  ','sexual immorality  ','painting  ','dancing  ','disobedience ','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:29'),(150,'Aaron’s painting is purchased by an American collector for the sum of ','250 dollars  ','220 pounds ','260 cedis  ','280 francs ','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:30'),(151,'James Ofosu is pleased with George because he studies ','Law  ','Accountancy ','Engineering   ','Medicine ','Question is  based  on Joe de Graft’s Sons and Daughters.','','d','','post-utme','2013',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:31'),(152,'Joe de Graft’s Sons and daughters is an example of ','domestic comedy ','dark comedy ','restoration comedy ','comedy of error','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:32'),(153,'The central conflict in the play is about  ','Lawyer Bonu’s attempt to seduce Maanan  ','career choice for James Ofosu’s children  ','Hannah’s lack of respect for James  ','Fosuwa’s bid to force Lawyer Bonu on Maanan','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:33'),(154,'David Rubadiri in “An African Thunderstorm” paints a graphic picture of the Thunderstorm through  the use of ',' simile and personification  ',' Irony and imagery',' hyperbole and rhyme ','innuendo and satire ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:34'),(155,'In Andrew Marvell’s “To his Coy mistress”, the poet adopts a consistent rhyming scheme of ','sestet    ','Couplet ',' tercet  ','free verse','Question is based on African and Non-African Poetry  ','','b','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:35'),(156,'Mazisi Kunene is an African poet from  ','Ghana ','Nigeria  ','Malawi  ','South Africa','Question is based on African and Non-African Poetry  ','','d','','post-utme','2013',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:36'),(157,'In T.S. Eliot’s “The Journey of the Magi”, the journey can be described as  ','delightful   ','unnecessary ','allegorical  ','symbolic ','Question is based on African and Non-African Poetry  ','','c','','post-utme','2013',129,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(158,'The dominant figurative device  in Kobena Acquah’s “In the Navel of the Soul” is','metaphor   ','assonance  ','paradox   ','euphemism ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:38'),(159,'‘fellow wayfarer…what good news do you bring me?\\\" The statement above is addressed by Meka to','the Commandant’s messenger ','a passing dog   ','a dove ','Engamba ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','post-utme','2013',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:39'),(160,'Gullet is so named by the natives because of his  ','razor-sharp wit  ','long neck ','closeness to the people ','hostility ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','b','','post-utme','2013',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:40'),(161,'The medal in the novel is a symbol of  ','ungodliness   ','victory   ','admiration ','deceit ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','d','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:41'),(162,'In the Joys of Motherhood, the joy of a mother is predicated on having ','husband    ','sons ','daughters   ','wealth ','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','b','','post-utme','2013',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:42'),(163,'The protagonist of the novel is  ','Nwokocha Agbadi ','Nnaife  ','Nwakusor ','Nnu Ego.','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','d','','post-utme','2013',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:43'),(164,'From the conclusion of the novel, the author implies that ','rebellion is fruitless ','opposition pays ','two and two make four ','knowledge gives freedom.','Question is based on George Orwell’s Nineteen Eighty Four','','a','','post-utme','2013',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:44'),(165,'“It was an enormous  pyramidal structure of glittering white concret, soaring up, terrace after terrace, 300 metres into the air”.','Being described in the except above is  ','The party secretariat','O’ Brien’s  residence  ','The ministry of truth ','The Ministry of Plenty ','','c','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:45'),(166,'In the novel, Oceania is at war with  ','Romania   ','Catalonia    ','Eastasia ','Rhodeia','','','c','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:45'),(167,'“Minipax” in the true sense means ','ministry of Truth ','Ministry of Love  ','Ministry of War  ','Ministry of Plenty ','Question is based on George Orwell’s Nineteen Eighty Four','','d','','post-utme','2013',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:46'),(168,'In the Newspeak language, “duckspeak” is a word that simultaneously  refers to ','love and admiration  ','knowledge and ignorance  ','now and then ','abuse and praise ','Question is based on George Orwell’s Nineteen Eighty Four','','b','','post-utme','2013',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:47'),(169,'Hermeneutics is an art of  ','Calculation  ','exaggeration ','composition  ','interpretation ','Question is based on General literary principles.','','d','','post-utme','2013',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:48'),(170,'A poem written in unrhymed five stress lines is called  ','ballad  ','Blank verse ','sonnet      ','Ode','Question is based on General literary principles.','','b','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:49'),(171,'The type of sonnet that has an octave and a sestet has its origin in  ','England  ','Spain ','Portugal   ','Italy','Question is based on General literary principles.','','d','','post-utme','2013',143,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:50'),(172,'The tone of the excerpt above is  ','jubilant  ','condemnatory ','adulatory  ','defiant ','“We own this land \\n And the swamps\\n The palms\\n And the mangroves;\\n We ‘ll die defending them”\\n Tony Afejuku “Land Song”  \\n','','d','','post-utme','2013',113,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(173,'The figurative devices in the excerpt above are  ','rhyme and metaphor  ','alliteration and assonance  ','repetition and simile  ','rhyme and onomatopoeia ','“Her voice is a shell borne by the waves to crack the egg my soul sorely craves”\\nSegun Adekoya  “Love Blues” \\n','','a','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:52'),(174,'A speech in a play in which a character speaks his or her thoughts alone is','monologue','an aside','a soliloquy','an epilogue','','','c','','wassce','2015',98,'Admin','2016-12-12 05:41:49','2020-07-14 14:53:53'),(175,'In Literature, repetition is used essentially for','rhyme','suspense','allusion','emphasis','','','d','','wassce','2015',116,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:14'),(176,'The pattern of poem without reference to its content is referred to as the','limerick','metre','free verse','form','','','c','','wassce','2015',111,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:15'),(177,'The performers in a play constitute the','chorus','characters','audience','cast','','','b','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:16'),(178,'The stanza is an example of','appellation','apostrophe','euphemism','elegy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',125,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:17'),(179,'Pan is used here as','an allusion','symbol','irony','metonymy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','a','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:18'),(180,'The rhyme scheme of the stanza is','abcabcc','ababcdd','babaccc','bcbccaa','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',110,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:19'),(181,'A metrical foot in which a stressed syllable is followed by an unstressed syllable is','iambic','spondaic','trochaic','dactylic','','','c','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:25'),(182,'________ is the location of the action of the plot','Setting','Narrative technique','Point of view','Characterization','','','a','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:26'),(183,'A ballad is essentially a ____________ poem','descriptive','dramatic','pastoral','narrative','','','d','','wassce','2015',117,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:26'),(184,'The first four lines of the Shakespearean sonnet rhyme','abcd','abba','abab','cdcd','','','c','','wassce','2015',114,'Admin','2016-12-12 05:41:49','2020-07-15 19:31:30'),(185,'A story in which characters or actions represent abstract ideas or moral qualities is','an epic','a legend','an allegory','a satire','','','c','','wassce','2015',99,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:28'),(186,'The use of imagery in prose or verse','appeals to the senses','develop the plot','create confusion','obscures meaning','','','a','','wassce','2015',105,'Admin','2016-12-12 05:41:49','2020-07-15 19:31:30'),(187,'The lines illustrate','soliloquy','parallelism','dialogue','contrast','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','b','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:30'),(188,'‘heads’ in the second line is an example of','synecdoche','inversion','epithet','conceit','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','a','','wassce','2015',113,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:31'),(189,'A character that develops in the course of  a novel or play is described as','flat','antagonist','round','protagonist','','','c','','wassce','2015',106,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:32'),(190,'A dirge is a poem sung','to send a child to sleep','to make workers happy','at a birthday party','at a funeral','','','d','','wassce','2015',118,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:33'),(191,'In drama, the ___________ creates humour','hero','clown','villain','chorus','','','b','','wassce','2015',111,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:34'),(192,'<em>Let me not love thee if l love thee not</em> illustrates','metaphor','proverb','paradox','meiosis','','','c','','wassce','2015',110,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:35'),(193,'__________ is a literary device used to express something unpleasant in a more acceptable manner','Epilogue','Epigram','Euphemism','Eulogy','','','c','','wassce','2015',126,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:36'),(194,'The writer’s attitude to the couple is one of','resignation','indifference','patronage','praise','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','a','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:37'),(195,'The dominant literary device used in the passage is','litotes','personification','simile','paradox','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',106,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:38'),(196,'The rhetorical question that ends the passage stresses the','wickedness of thieves','poverty of the couple','security of the hut','filthiness of the surroundings','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',106,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:38'),(197,'The expression ‘such a rude room of such a poor pair’ illustrates','onomatopoeia','pun','rhyme','alliteration','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',99,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:39'),(198,'The setting is','dawn','sunset','midday','night','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',113,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:40'),(199,'The rhyme scheme is','aabbccddeeff','ababababaabb','abcaabbcabab','abbaabcaabab','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',101,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:41'),(200,'The theme of the poem is','the love of mother','invoking the spirit of womanhood','admiration for women’s hard work','the suffering of women','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',101,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:42'),(201,'The literary device used in line 7 is','conceit','personification','hyperbole','pathos','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:43'),(202,'The poet’s tone is one of','sadness','joy','condemnation','sarcasm','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',107,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:44'),(203,'“To bring forth sons and daughters brave” illustrates','paradox','zeugma','inversion','epigram','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','c','','wassce','2015',113,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:45'),(204,'The speaker is','Gonzalo','Antonio','Prospero','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:46'),(205,'The addressee is','Ariel','Ferdinand','Caliban','Miranda','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',87,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:47'),(206,'The “impostor” is','Sebastian','Antonio','Ferdinand','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',119,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:48'),(207,'The “advocate” and the “impostor” are','conspirators','enemies','suspicious of each other','attracted to each other','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',100,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:49'),(208,'The speaker’s utterance betrays his','anger','pretense','hatred','sorrow','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','b','','wassce','2015',107,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:56'),(209,'The speaker is','Gonzalo','Antonio','Sebastian','Alonso','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',131,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:58'),(210,'“these words” refer to','the shipwreck','the son’s disappearance','the daughter’s wedding','Prospero’s magic','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','b','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-07-17 15:18:54'),(211,'Where did the wedding take place?','Algiers','Milan','Tunis','Naples','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','c','','wassce','2015',124,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:06'),(212,'The setting is','outside Prospero’s cell','on a ship','in front of Prospero’s cell','another part of the island','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',91,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:08'),(213,'“.... in my rate” means','I’m very certain','so far as I can see','there’s no doubt','as it appears','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',119,'Admin','2016-12-12 05:41:50','2020-07-22 00:06:56'),(214,'Ariel has ‘come’ because','he has been invited by Prospero','he wants to make a request','he desires a meeting','flying is no problem to him','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:14'),(215,'Prospero has actually','raised a storm at sea','punished Miranda','dismissed Fedinand','commanded Ariel to disappear','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',117,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:17'),(216,'Before Ariel’s entry','Ferdinand has brought in some wood','Prospero has put Miranda to sleep','Caliban had been swearing at Prospero','Trinculo had discovered Caliban’s cloak','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',115,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:20'),(217,'‘Ariel and all his quality’ mean Ariel and','all at his command','the quality of a spirit','his band of spirits','an ability to cause mischief','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','d','','wassce','2015',123,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:23'),(218,'Soon after, Ariel','files off to do his duty','recounts the confusion on board the ship','kneels down to worship Prospero','calls Ceres and another spirit','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',117,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:25'),(219,'X and Y are','Antonio and Alonso','Sebastian and Alonso','Antonio and Gonzalo','Sebastian and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','a','','wassce','2015',116,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:28'),(220,'“We two” are','Antonio and Adrian','Sebastian and Adrian','Sebastian and Francisco','Antonio and Sebastian','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',149,'Admin','2016-12-12 05:41:51','2020-07-21 05:49:14'),(221,'The situation in the extract is highly','satirical','prophetic','ironical','comical','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','c','','wassce','2015',113,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:34'),(222,'What has happened to all the other characters in the scene?','They have been made deaf and dumb','Ariel has put them all to sleep','They have been sent away','Prospero has put them to sleep','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','b','','wassce','2015',116,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:37'),(223,'The “two” later plot to','kill all the other characters','escape from the island','kill Prospero and Miranda','kill Alonso and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',123,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:41'),(224,'‘I simply don’t understand what the matter with everybody is today. Everybody let me down, and ...’ The speaker above is referring to','Fosuwa and Maidservant','Hannah and George','Aaron and Maanan','Lawyer B and Mrs B','Based on J.C. De Graft’s  \tSons and Daughter. ','','b','','utme','2010',155,'Admin','2016-12-12 07:52:46','2020-07-14 14:55:45'),(225,'Maanan expresses dislike for Lawyer B because of','his condemnation of  her choice career','his recent advances towards her','the betrayal of her father’s trust','the betrayal of his wife’s trust','Based on J.C. De Graft’s  \tSons and Daughter. ','','c','','utme','2010',147,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:47'),(226,'The traditional order in the play is represented by','Mrs. B','Hannah','Maanan','Aunt','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',147,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:49'),(227,'Where does the play take place?','On the street','In George’s place','In Aunt’s house','In Ofosu’s place','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',154,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:50'),(228,'‘O’ deadly sin! O rude unthankfulness! Thy fault our law calls death, but the kind Prince, Taking thy \t\tpart, hath rushed aside the law and turned that black word.....’ Deadly sin refers to the','suicide of Juliet','suicide of  Romeo','murder of  Paris','murder of  Tybalt','Based on William Shakespeare’s  \tRomeo and Juliet.','','d','','utme','2010',139,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:53'),(229,'The play is mostly written in','blank verse','free verse','metres','foot','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',121,'Admin','2016-12-12 07:52:47','2020-07-14 14:55:56'),(230,'‘O” serpent heart, hid with a flowering face!’ The statement refers to','Juliet','Romeo','Tybalt','Benvolio','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',148,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:09'),(231,'The spatial setting of the play is','Athens','Verona','Padua','Venice','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',142,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:13'),(232,'Romeo is banished to Mantua because he','kills Tybalt in a street duel','marries Juliet without parental consent','attends Capulet’s party uninvited','attempts to kill Paris his rival','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',178,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:19'),(233,'In the novel, the society puts high value on','egalitarianism','male ascendancy','procreation','gender equity','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',146,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:22'),(234,'The medicine man links the lump discovered on the head of Nnu Ego at birth, to the','possession of physical admirable qualities that makes her an epitome of perfection','wound inflicted on the slave woman buried with Agbadi’s wife','coming back of the Agunwa to the society to live again','ill-luck and tragic events attributed to a predestined fate.','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',151,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:25'),(235,'The constant companions of  Nnaife family are','togetherness and happiness','poverty and hunger','sickness and joblessness','disagreement and humiliation','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',155,'Admin','2016-12-12 07:52:47','2020-07-16 15:29:37'),(236,'The disagreement between Mvondo and Nticentres on the latter’s claim to have','Assisted Meka in getting the medal','eaten the entire entrails of a sheep','eaten more than his share of the food','been in a Whiteman’s office','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','a','','utme','2010',123,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:35'),(237,'In the novel, the colonialists treat the Africans with','kids gloves','disdain','indifference','honour','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','b','','utme','2010',135,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:38'),(238,'The Ministry of Peace is concerned with making','instruments','weapons','wars','reconciliation','Based on George Orwell’s  \tNineteen Eighty-Four.','','d','','utme','2010',142,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:40'),(239,'The subject matter of the novel is','Totalitarian dictatorship','exploitation and cruelty','retributive justice','class segregation','Based on George Orwell’s  \tNineteen Eighty-Four.','','a','','utme','2010',145,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:42'),(240,'How did Winston start his rebellion against the state?','By engaging in anti-party activities','By keeping a private diary','When he started a secret affair','When he spied on the party','Based on George Orwell’s  \tNineteen Eighty-Four.','','b','','utme','2010',146,'Admin','2016-12-12 07:52:47','2020-07-17 15:08:25'),(241,'The party seeks power for','the nation','its own sake','its members','peoples’ sake','','','b','','utme','2010',146,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:47'),(242,'A play which mainly aims at provoking excessive laughter is \tcalled','a tragi-comedy','comedy','a farce','satire','','','c','','utme','2010',135,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:49'),(243,'Both comedy and tragedy have','happy ending','climax','tragic hero','stanza','','','b','','utme','2010',153,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:51'),(244,'A formal dignified speech or writing praising a person or a thing for past or present deeds is','premiere','eulogy','anthology','lampoon','','','b','','utme','2010',155,'Admin','2016-12-12 07:52:47','2020-07-14 14:56:56'),(245,'The narrative style in which the hero tells his own story directly is the','objective','subjective','first-person','third-person','','','c','','utme','2010',149,'Admin','2016-12-12 07:52:47','2020-07-15 19:31:30'),(246,'The physical, historical or cultural background of a literary work is referred to as','episode','plot','time','setting','','','d','','utme','2010',149,'Admin','2016-12-12 07:52:47','2020-07-17 15:18:54'),(247,'A plot structure that defies chronology can be described as','open-ended','circular','episodic','organic','','','c','','utme','2010',157,'Admin','2016-12-12 07:52:47','2020-07-14 14:57:00'),(248,'Pun as a literary device deals with','placing two opposite phrase','placing words side by side','playing on words','arrangement of words','','','c','','utme','2010',139,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:03'),(249,'In a narrative poem, the poet attempts to','summarize a story','describe a place','preach a sermon','tell a story','','','d','','utme','2010',154,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:04'),(250,'The account of experiences of an individual during the course \tof a journey is known as','a travelogue','an autobiography','a catalogue','a memoir','','','a','','utme','2010',141,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:09'),(251,'Satirical writing employs','epigram','synecdoche','irony','onomatopoeia','','','c','','utme','2010',149,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:10'),(252,'The person being addressed above is a','soldier','student','domestic servant','lawyer','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','c','','utme','2010',132,'Admin','2016-12-12 07:52:48','2020-07-16 15:29:37'),(253,'From the tone of the speech above, the speaker is obviously','enraged','lackadaisical','elated','happy','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','a','','utme','2010',151,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:15'),(254,'The mood conveyed in the excerpt above is one of','sadness','frustration','sympathy','dilemma','‘That year the harvest was sad, like a funeral, and many farmers wept as they dug up the miserable yams. One man tied his cloth to a tree branch and hanged himself.’ (Chinua Achebe: Things Fall Apart)','','a','','utme','2010',153,'Admin','2016-12-12 07:52:48','2020-07-17 15:08:25'),(255,'The rhyme scheme in the excerpt above is','bbaa','aabb','abab','abba','That age is best which is the first,<br> \tWhen youth and blood are warmer, <br> \tBut being spent, the worse, and worst <br> \tTime still succeed the former. ','','c','','utme','2010',153,'Admin','2016-12-12 07:52:48','2020-07-16 15:29:37'),(256,'The subject matter of the extract above is','Storm','sea waves','house movement','earthquake','But the towering earth was tired sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of a million years was lost\t','','d','','utme','2010',130,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:23'),(257,'From the poem above, shadow means','famine','bleak future','period of sufferings','abstract ideas','And your laughter like a flame<br>\t \tPiercing the shadows<br> \tHas revealed Africa to me beyond<br> \tThe snow of yesterday<br>','','c','','utme','2010',163,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:26'),(258,'The speaker in the excerpt above is','hopeless','uncertain','afraid','confident','Don’t panic. Be calm. If you are somehow upset.... try to regain your exposure.','','c','','utme','2010',151,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:30'),(259,'The poem can be described as','a lyric','an epic','a sonnet','an elegy','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',163,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:32'),(260,'The theme of the poem is','futility of  life','distortion of  life','creation of  life','vanity of  life','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',125,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:35'),(261,'The rhyme scheme of the stanza above is','aabb','abab','bbaa','abba','A cursing rogue with a merry farce,<br>  \tA bundle of rags upon a crutch, ,<br> \tStumbled upon that windy place,<br> \tCalled cruachan, and it was as much.\t','','b','','utme','2010',139,'Admin','2016-12-12 07:52:48','2020-07-14 14:57:38'),(262,'In the play, Fasuwa represents the','new culture','patriarchy','old order','African civilization.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',137,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:42'),(263,'The play opens with a conversation between Aaron and Awere about','Aaron’s choice of course','Maanan’s encounter with the lawyer','George and Kofi','Hannah and George.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',118,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:44'),(264,'‘I still think you can do something about it... persuade him; make him see how frustrating the whole business is bound to be for you.’  <em>The whole business in the excerpt above refers to </em>','marriage proposal','career choice','business contract','political transition.','Based on J.C. De Graft’s Sons and  \tDaughters.','','b','','utme','2008',124,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:47'),(265,'The central conflict in the play is','religious','romantic','generational','communal.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:49'),(266,'The change in fortune is achieved in the play when','James agrees that Aaron and Maanan should study what they want','Lawyer B harasses Maanan in his office','Haanah, James’ wife convinces him','Aaron and Maanan agree to read the courses James chooses for them.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',149,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:53'),(267,'‘l will be brief, for my short date of breath Is not so long as is a tedious tale.’ The statement above is in reference to the speaker’s','retirement','imminent death','state of health','short-tempered nature.','Based on William Shakespeare’s Romeo and Juliet.','','b','','utme','2008',140,'Admin','2016-12-12 10:46:53','2020-07-14 14:57:55'),(268,'Romeo’s death becomes inevitable because','Friar Lawrence’s letter is not delivered','Juliet is married to Paris','Romeo kills Tybalt in a duel','Juliet has committed suicide.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',141,'Admin','2016-12-12 10:46:53','2020-07-17 15:18:54'),(269,'The multiple deaths in the play serve as a punishment for','imposing life partner on Children','treating others with hatred','disobeying one’s own parents','shedding kinsmen’s blood.','Based on William Shakespeare’s Romeo and Juliet.','','a','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:57:59'),(270,'The major reason for Juliet’s grief is','the death of her cousin','her reluctant marriage to the County','the banishment of her lover','her imminent death.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:01'),(271,'The chorus in the prologue of the play is essentially meant to','foreshadow the play','highlight the characters','estimate the actions','introduce the play.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',129,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:04'),(272,'In the novel, Big Brother metaphorizes a','totalitarian authority','benevolent leader','revolutionary leader.','party brotherhood.','Based on George Orwell’s Nineteen  \tEighty-Four.','','a','','utme','2008',111,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:06'),(273,'In the novel, Orwell attempts to','satirize the artificiality of a machine ‘controlled society','eulogize the beauty of the socialist system','condemn the disgusting hypocrisy of all communist    \t systems','laud the boundless possibilities of the human intellect.','Based on George Orwell’s Nineteen  \tEighty-Four.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:08'),(274,'Winston Smith begins his rebellion against the power of the state by','purchasing arms','keeping a private diary','opposing the law','educating the youth.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',105,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:10'),(275,'The Ministry of Truth is concerned with','news, entertainment, education and fine arts','propaganda, war, publishing and enlightenment','investigation, propaganda and fine arts','economic affairs, education and propaganda.','Based on George Orwell’s Nineteen  \tEighty-Four.','','d','','utme','2008',142,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:11'),(276,'The events following the ceremony confirm Meka’s','disillusion with the whites','satisfaction with the medal','contribution to the colonialists','admiration for the church.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','a','','utme','2008',136,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:14'),(277,'“ ‘ By my mother!’ said Engamba. The night rat doesn’t tell what happened to him in the dark! Men are born and die...”  In the statement above, The night rat doesn’t tell what happened to him in the dark! refers to','the Whiteman’s treatment of Meka','Meka’s treatment of the medal in the whitewashed circle','people’s unwillingness to talk about how Whiteman treat them','people’s freedom of expression.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',168,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:16'),(278,'In the novel, the expression  <em>fobreak the leg of an antelope</em> means','hunting','marriage','fighting','honeymoon.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:19'),(279,'Ona has to leave her father’s house because','of her love for Agbadi','that is the tradition','her father is dead','of the safety of her child.','Based on Buchi Emecheta’s The Joys of Motherhood.','','a','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:22'),(280,'Nnaife’s conscription into the army is portrayed as part of','family conflict','British oppression','family tradition','societal intrigue.','Based on Buchi Emecheta’s The Joys of Motherhood.','','d','','utme','2008',120,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:30'),(281,'The attitude of Nnu Ego when she was told that her Chi would not give her a child is one of','indifference','despair','apathy','hope.','Based on Buchi Emecheta’s The Joys of Motherhood.','','b','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:31'),(282,'The subject matter of Adeoti’s Naked Soles is','soul and mind','hunger and strife','suffering and despair','hatred and bitterness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:33'),(283,'Rubadiri’s <em>An African Thunderstorm</em> appeals to the readers’ sense of','sight and taste','feeling and sight','smell, taste and hearing','sight, smell and hearing.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','b','','utme','2008',127,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:37'),(284,'‘The experts, of course Disagree. The urine test they ordered Said, Negative.’ The lines above from Acqah’s “In the Navel of the Soul” depict','contradiction','inevitability','progress','awareness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','a','','utme','2008',121,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:40'),(285,'In Kunene’s ‘A Heritage of Liberation,’ freedom is to be achieved through the efforts of','the old generation','new generation','present generation','successive generations.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',134,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:42'),(286,'Launko’s ‘End of the’ War suggests that war brings about','ultimate solution to all problems','partial solution to problems','multifaceted problems','only temporary relief.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',131,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:44'),(287,'The persona in the poem <em>Give Me The Minstrel’s Seat</em> discourages','togetherness','hatred','isolation','poverty.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:46'),(288,'Marvel’s To ‘His Coy Mistress’ is written mainly in','alternate rhymes','blank verse','heroic couplets','middle rhymes.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-19 02:52:35'),(289,'The attitude of the poet-persona to bats, in Lawrence’s Baf is one of','satisfaction','reverence','hatred','repulsion.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',149,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:51'),(290,'The language used, in Eliot’s ‘The Journey of the’ Magi is generally','difficult','complex','simple','complicated.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',150,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:53'),(291,'In Cope’s <em>Sonnet VII</em>, poetry is','a popular act','a boring act','an idle hobby','a useless undertaking.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:57'),(292,'An interlude is a brief','presentation in the interval of a dramatic performance','play before the main dramatic performance','presentation after the main dramatic performance','dialogue between two persons.','Based on General Literary Principles.','','a','','utme','2008',153,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:59'),(293,'An epic is a heroic story which includes','ballad','lyric','myth','dialogue.','Based on General Literary Principles.','','c','','utme','2008',130,'Admin','2016-12-12 10:46:53','2020-07-14 14:59:01'),(294,'Farce can be described as a dramatic piece marked by','movement from serious to the light-hearted mood','comic and exaggerated actions','actions devoid of meaning','gloomy actions with momentary reliefs.','Based on General Literary Principles.','','b','','utme','2008',121,'Admin','2016-12-12 10:46:53','2020-07-14 14:59:03'),(295,'A long story narrating a series of complicated events is called a','saga .','discourse','monologue','harangue.','Based on General Literary Principles.','','d','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:59:07'),(296,'Oxymoron is the use of two contrasting words that are','placed far apart','different in meaning','placed side by side','similar in meaning.','Based on General Literary Principles.','','c','','utme','2008',121,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:11'),(297,'A line or a group of lines repeated in the course of a poem is called','chorus','refrain','repetition','prologue.','Based on General Literary Principles.','','b','','utme','2008',106,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:14'),(298,'Limerick is a light verse which consists of five lines that are','anapestic','trochaic','spondaic','dactylic.','Based on General Literary Principles.','','d','','utme','2008',119,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:15'),(299,'A short narrative or lyrical poem intended to be sung is a','leich','lay','lauda','letrilla.','Based on General Literary Principles.','','a','','utme','2008',133,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:17'),(300,'A figurative device in which a statement is made and then withdrawn is referred to as','metanoia','metaphysical','metalanguage','metalepsis.','Based on General Literary Principles.','','d','','utme','2008',125,'Admin','2016-12-12 10:46:54','2020-07-20 16:42:27'),(301,'A literary work which imitates another in a distorted form is called','exodium','isocohen','metonymy','burlesque.','Based on General Literary Principles.','','d','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:21'),(302,'‘You do not have to be brutal to be a soldier, or rather you are brutal not because you are a soldier, but because there is a sadist, a rapist, a fascist and a murderer in you who is waiting for war and army uniforms to give them expression.’ ( Festus lyayi: Heroes ) The speaker here contends that','soldiers are generally wicked','human nature has to do with a profession','soldiers are characteristically gentle','the latent brutality in man finds expression in war.','based on Literary Appreciation.','','b','','utme','2008',158,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:23'),(303,'‘But the towering earth was tired of sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of million years was lost.’ The subject matter of the passage is','earthquake','Demolition','flood','storm.','based on Literary Appreciation.','','a','','utme','2008',124,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:25'),(304,'The image depicted is one of','destruction','dejection','happiness','admiration.','based on Literary Appreciation.','','a','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:28'),(305,'The tone of the poem above is','satiric','affectionate','indifferent','sympathetic.','based on Literary Appreciation.','','b','','utme','2008',135,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:29'),(306,'Life, though a vanity Yet, not purposeful In drawling<br> resignation Life’s spice is in strive<br> From the extract above, the poet suggests that','life is full of care','there can’t be life without strive','life is worthwhile without care','strive makes life worth living.','based on Literary Appreciation.','','b','','utme','2008',118,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:33'),(307,'The subject of the poem above is','a prostitute','the lying father','the son','the orphan.','based on Literary Appreciation.','','c','','utme','2008',114,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:36'),(308,'The dominant rhetorical device in the excerpt above is','rhyme','alliteration','repetition','onomatopoeia.','based on Literary Appreciation.','','b','','utme','2008',150,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:38'),(309,'The expression “The child is the father of the man” in the poem above is an example of','paradox','metaphor','simile','ellipsis','based on Literary Appreciation.','','a','','utme','2008',162,'Admin','2016-12-12 10:46:54','2020-07-21 15:26:49'),(310,'The technique employed in narrating the excerpt above is','flashback','stream of consciousness','foreshadowing','play-within-the-play.','based on Literary Appreciation.','','b','','utme','2008',141,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:42'),(311,'The poet’s tone above can be described as','lamentative','satiric','imploring','adoring.','based on Literary Appreciation.','','a','','utme','2008',143,'Admin','2016-12-12 10:46:54','2020-07-15 19:31:30'),(312,'In the play, the character of Lawyer B is represented through the use of','flashback','dialogue','play-within-the-play','irony','','','d','','utme','2009',123,'Admin','2016-12-12 17:55:00','2020-07-14 14:59:44'),(313,'James Ofosu’s desire is to see Maanan trained as','a choreographer','an attorney','an accountant','a surgeon','','','b','','utme','2009',138,'Admin','2016-12-12 17:55:00','2020-07-14 14:59:45'),(314,'The plot of the play is,','linear','cyclical','complicated','episodic','','','d','','utme','2009',139,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:46'),(315,'What causes the strained relationship between James and Lawyer B?','Betrayal of trust','Standard of education','Working experience','Family differences','','','a','','utme','2009',155,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:47'),(316,'‘Now look what we have: a permanent bloom of ugly paper flowers! The device used by Aaron in the excerpt above is','suspense','rhetorical question','oxymoron','allegory','','','c','','utme','2009',138,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:47'),(317,'When Friar Lawrence asks if the bride is ready, he wants to know if','Juliet is prepared','Rosaline is prepared','the corpse is ready','the bride is dressed','based on William Shake¬speare’s  \tRomeo and Juliet.','','c','','utme','2009',126,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:49'),(318,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nWhat makes Juliet’s night so tedious is the','murder of Tybalt by Romeo','arranged marriage between her and Paris','Eagerness’ to be married to Romeo','unconsummated marriage with Romeo','based on William Shake¬speare’s  \tRomeo and Juliet.','','d','','utme','2009',119,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:49'),(319,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nThe literary device used in the excerpt is','euphemism','simile','sarcasm','bathos','based on William Shake¬speare’s  \tRomeo and Juliet.','','b','','utme','2009',132,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:50'),(320,'The atmosphere of tragedy in the play is created through the use of','dreams and foreboding','fights and quarrels','wars and hatred','ideas and dramatization','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',131,'Admin','2016-12-12 17:55:01','2020-07-22 00:06:56'),(321,'Shakespeare depicts love and idealism through the','party at tire Capulets’','lovers’ tomb at the end','brawl between Romeo and Tybalt','balcony scene in the second Act.','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',129,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:52'),(322,'In the novel, the party approves separation of couples only','on condition of infidelity','where there are no children','in situation of irreconcilable differences','on the death of one of the couples','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',152,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:53'),(323,'One of the themes of the novel is','colonialism','repression','senility','destruction','based on George Orwell’s  \tNineteen Eighty-Four','','b','','utme','2009',140,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:54'),(324,'Newspeak, the official language of Oceania, is devised to','meet the ideological needs of Ingsoc','help devoted party men and women','provide a medium of expression for world-view only','assist by cutting the choice of words for party members.','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',138,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:55'),(325,'The main concern of Winston in the novel is to','take power for himself','acquire wealth','overthrow the party','bring social change','based on George Orwell’s  \tNineteen Eighty-Four','','d','','utme','2009',116,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:56'),(326,'“We are hereto die of raget !say die of rage because this time the uncircumcised have gone too far...” The word uncircumcised in the statement above by Nli refers to','Nua and Mvondo','the whites','the people of Doum','the white farmers.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','b','','utme','2009',119,'Admin','2016-12-12 17:55:01','2020-07-17 15:08:25'),(327,'The only two sons of Meka die fighting for','independence','the colonialists','the church','the in people.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',128,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:58'),(328,'In the novel; Africanness is .achieved in both','setting and characterization','narration and style','diction and syntax','pun and style','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',116,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:59'),(329,'What prompts Nnu Ego to run to the effigy of her chi is that ...','she is worried and sick','she is pregnant','the chi asks her to come','milk is dripping from her breasts.','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','d','','utme','2009',138,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:00'),(330,'In the society of Nwokocha Agbadi, a man’s social rating determined by his','oratorical power','physical prowess','gentle men','altruistic actions','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',143,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:01'),(331,'‘look at me jubilant for being given another opportunity to \tlive longer, and see this foolish woman eager to end her own life when her Maker is not yet ready for her...’The opportunity referred to in the extract above is','the misunderstanding between Nnaife and his wife','narrowly escaping being knocked down','the driver’s encounter with Nnu Ego','ominous visit of Agunwa','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',134,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:02'),(332,'Thorn in “Adeoti’sNaked Soles” symbolizes','victory','bleakness','destruction','suffering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',116,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:03'),(333,'‘Pregnant clouds Ride Safely on its back’ Pregnant clouds in Rubadiri’s “An AfricanThunderstorm implies”','uncertainty','calmness','disbelief','fertility','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',137,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:04'),(334,'The phrase the sunset in Kunene’s “A Heritage of Liberation” refers to','critical need','old age','patience','caution','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',144,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:05'),(335,'‘The silence of the battlefield heralds the widow’s anguish’ The widow in the lines above in Launko’s “Endof the War” is in anguish because of the','confirmation of her husband’s death','uncertainty over her husband returning alive','delay in the husband’s return from the battlefield','death of all the soldiers in the battlefield','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',125,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:06'),(336,'The end of “Give Me The Minstrel’s Seat”, seems to suggest that one needs the','support of others','complete command of one’s wives','support of one’s kinsmen','aid of poets','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',132,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:07'),(337,'According to “Give Me The Minstrels Seat”, a woman is','a necessary evil','only fulfilled when married','naturally jealous','a harbinger of good luck','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',127,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:08'),(338,'In Marvel’s “To His Coy Mistress”, the poet-persona tries to','Build up the climax of expectation of women','discuss how a woman labour hard','meet the people’s expectation in a religious adventure','discuss the nature of man and the value of time.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',116,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:09'),(339,'In Lawrence’s Bat, the poet’s attitude to bat is one of','fear','sarcasm','contempt','flattering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',123,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:10'),(340,'The first stariza of Eliot’s “The Journey of the Magi” depict the','hazards of the journey','increment of fortune for the pilgrims','blind acceptance of faith','journey as an influential factor.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',131,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:11'),(341,'In cope’s “Sonnet VII”, poets are presented; as','recluses','travelers','sociologists','searchers','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',140,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:12'),(342,'A poetic devices in which an idea in a line runs into another is called','rhyme scheme','enjambment','end rhyme','pathos','based on General Literary Principles.','','b','','utme','2009',140,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:13'),(343,'The use of sound pattern to suggest meaning in poetry is','rhythm','mimics','lyric','metonymy','based on General Literary Principles.','','a','','utme','2009',141,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:14'),(344,'A conscious imitation of a literary work by another with the aim of ridicule is','mimesis','performance','mockery','parody','based on General Literary Principles.','','d','','utme','2009',132,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:16'),(345,'The use of gestures to communicate in drama is known as','burlesque','soliloquy','mime','melodrama','based on General Literary Principles.','','c','','utme','2009',136,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:17'),(346,'A short and witty remark is','a limerick','a tercel','an epigram','a litotes','based on General Literary Principles.','','c','','utme','2009',127,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:21'),(347,'An expression that signifies a whole through its significant parts is','synesthesia','synecdoche','metonymy','allegory','based on General Literary Principles.','','b','','utme','2009',124,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:22'),(348,'a structural arrangement of units of composition by which one element of equal importance with another is similarly placed is called','repetition','paradox','refrain','parallelism','based on General Literary Principles.','','d','','utme','2009',128,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:23'),(349,'The pride that contributes to the fall of a tragic character in a play is known as','hamartia','catharsis','hubris','epistasis','based on General Literary Principles.','','a','','utme','2009',142,'Admin','2016-12-12 17:55:03','2020-07-19 02:55:26'),(350,'metrical foot of two stressed or long syllables is called','a spondee','a trochee','an anapest','an iamb','based on General Literary Principles.','','a','','utme','2009',138,'Admin','2016-12-12 17:55:03','2020-07-14 15:00:25'),(351,'A group of three lyric stanzas in classical Greek poetry is referred to as','triplet','triolet','trilogy.','triad','based on General Literary Principles.','','b','','utme','2009',134,'Admin','2016-12-12 17:55:03','2020-07-16 15:29:37'),(352,'Biokun:  I did it for her! Let them laugh!<br>\\n\t\t\t\tLet them condemn me. I who have always <br>\t\\n\t\t\t\tderided superstition. I have gone bach to the <br>\\n\t\t\t\tshrine of Olokun. At least if he dies, Oroki <br>\\n\t\t\t\twill know I tried everything. <br>\\n\t\t\t\t(Femi I Qsofisan: No More the Wasted Breed)<br>\\nBiokun’s mood in this passage is one of','desperation','frustration','anger','anxiety','based on Literary Appreciation','','b','','utme','2009',144,'Admin','2016-12-12 17:55:03','2020-07-14 02:22:26'),(353,'\t‘My song is the root<br>\\n\ttouching other roots <br>\\n\tin a covenant below the crust..’<br>\\n\t(Niyi  Osundare: Waiting Laughters)<br>\\n\\nThe imagery used in the second line of the extract above is','olfactory','visual','tactile','auditory','based on Literary Appreciation','','c','','utme','2009',121,'Admin','2016-12-12 17:55:03','2020-07-14 02:11:15'),(354,'‘The huge sacrifice that <br>\\n\twards off death <br>\\n\tThe big offering that <br>\\n\tprevents diseases....’ <br>\\n\t( Temi Osofison: Morountodun ) <br>\\nThe poem above can best be described as','epic','heroic','praise','quatrain','based on Literary Appreciation','','d','','utme','2009',141,'Admin','2016-12-12 17:55:03','2020-07-14 02:18:48'),(355,'Why blame her who denies love for the asking <br><br>\\n\tAnd not the Birds and Moths and Beetles <br>\\n\tThat after deep draughts from rich nectar wells <br>\\n\tFlee the drained petals to virgin flowers. <br>\\nThe lines above are an indictment of','adultery','gluttony','flirtation','infertility','based on Literary Appreciation','','b','','utme','2009',113,'Admin','2016-12-12 17:55:03','2020-07-14 02:29:24'),(356,'\tOh, the market is set like the hub of a wheel <br>\\n\tAnd it pulfs \tlike a magnet strong <br>\\n\tIt is easy to tell <br>\\n\tHow it casts its spell <br>\\n\tAnd draws all the crowds along. <br><br>\\nThe sound device used in the extract above is','rhyme','alliteration','emphasis','assonance','based on Literary Appreciation','','a','','utme','2009',138,'Admin','2016-12-12 17:55:03','2020-07-14 02:29:24'),(357,'A reference beyond the immediate purview of what is being presented is known as','allusion','diversion','inversion','imagery','based on Literary Appreciation','','a','','utme','2009',140,'Admin','2016-12-12 17:55:03','2020-07-14 10:23:20'),(358,'‘The how is her barber’ The line is an example','metaphor','hyperbole','personification','litotes','based on Literary Appreciation','','a','','utme','2009',136,'Admin','2016-12-12 17:55:04','2020-07-14 02:15:34'),(359,'‘From the sky suspended <br>\\n\tthe strings of tattered pants <br>\\n\tmarched on trembling feet <br>\\n\tunder stone heavy-kits <br>\\n\tmarched, on their breast <br>\\n\tscared, monogram of skulls and bones.’ <br>\\n\t( Ossie Enejwe: Mass for the Dead ) <br><br>\\n“The subject matter of the extract above is','wastage','war','love','hatred','based on Literary Appreciation','','b','','utme','2009',128,'Admin','2016-12-12 17:55:04','2020-07-14 02:23:33'),(360,'‘Tonderai was assisted by the villages in placing his truck box into the back for the car and he got into the passenger side of the truck. Initially, he was a bit nervous and clearly uncomfortable, his young mind was asking how someone whom, he had almost caused a serious accident could be his benefactor.’ ( Daniel T. Manyika: Two worlds Apart )\\n\\n<br><br>The narrative point of view used in the extract above can best be described as','omniscient','subjective','panoramic','scenic','based on Literary Appreciation','','a','','utme','2009',120,'Admin','2016-12-12 17:55:04','2020-07-14 02:29:24'),(361,'‘Me to the Orangery<br> \\n\tSolitude invites, <br>\\n\ta wagtail, to tell the<br>  \t\t\t\\n\ttangled-wood-tale.’ <br>\\n\t( Christopher Okigbo: Heavengate ) <br><br>\\nThe complexity of the poem can be ascribed to the poet’s use of','archaic diction','structural inversion','compound words','extended met','based on Literary Appreciation','','b','','utme','2009',170,'Admin','2016-12-12 17:55:04','2020-07-21 12:28:24');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `entertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `entertainment` VALUES (1,'What year was ?Africa Queen? music track released by Tu-face Idibia?','2001','2002','2003','2004','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track ?African Queen? came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D?Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D?Banj  first album released?','2002','2005','2001','2004','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `fashion` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `fashion` VALUES (1,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,' ?Ole ku? dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Nigeria won Miss World','2000','2001','2002','2003','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknowledge` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `section` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'used by zh round 3',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknowledge` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many planets do we have?','10','9','8','6','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' What is the position of the Earth from the Sun?','1','2','3','4','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,' What year was Facebook created?','2001','2002','2003','2004','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'The first university in the world was?','Oxford','Al-Azhear of Cairo','Harvard','MIT','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year did Nigeria became a republic?','1960','1965','1963','1914','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,' What year did Tsunami occur','2000','2004','2005','2006','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' When did World War 1 started','1918','1901','1914','1910','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknwbrag` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknwbrag` VALUES (1,'What year was “Africa Queen” music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track “African Queen” came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo’ hit records','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D’Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D’Banj  first album released?','2002','2005','2001','2004','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'How many planets do we have?','10','9','8','6','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What is the position of the Earth from the Sun?','1','2','3','4','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What year was Facebook created?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'The first university in the world was…','Oxford','Al-Azhear of Cairo','Harvard','MIT','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' What year did Nigeria became a republic?','1960','1965','1963','1914','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' What year did Tsunami occur','2000','2004','2005','2006','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' When did World War 1 started','1918','1901','1914','1910','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(54,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(55,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(56,' ‘Ole ku’ dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(57,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(58,'What year did Nigeria won Miss World','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(59,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(60,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(61,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(62,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(63,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(65,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(66,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(67,'Who was the last successful Manchester United Coach?',' Sir Ali Ferguson.',' Alex Ferguson.',' Sir Alex Ferguson',' Sir Alex Fergson','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(68,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(69,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(70,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(71,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(72,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(74,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(75,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(76,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(77,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(78,'Which Nigeria football club won the Premiership title back –to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(79,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(80,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(81,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(82,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(83,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(84,'How many rings are in the Olympic colours?','6','5','4','3','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(85,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(86,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(87,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(88,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(89,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(90,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(91,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(92,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(93,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(94,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(95,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(96,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(97,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(98,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(99,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(100,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(101,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(102,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(103,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(104,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(105,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(106,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(107,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(108,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(109,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(110,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(111,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(112,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(113,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(114,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(115,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(116,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(117,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(118,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(119,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(120,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(121,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(122,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(123,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(124,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(125,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(126,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(127,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(128,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(129,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(130,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(131,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(132,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(133,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(134,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(135,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(136,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `geography` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=237 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `geography` VALUES (1,'The earth rotates through 150 of longitude once in  ','a minute  ','an hour  ','24 hours  ','a day','','','b','','post-utme','2006',209,'Admin','0000-00-00 00:00:00','2020-07-19 22:17:49'),(2,'Aeolian erosion refers to the work of ','Plants ','Wind  ','Ice ','running water','','','b','','post-utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-16 08:59:22'),(3,'The scale of a map is the ratio between the  ','distance over the land and the distance over the water ','distance on the map and the distance on the globe ','vertical and horizontal differences  ','distance on the map and that on the earth’s surface ','','','d','','post-utme','2006',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:28'),(4,'Which of the following scales should show the greatest amount of detail on a map?  ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2006',181,'Admin','0000-00-00 00:00:00','2020-07-16 09:04:50'),(5,'Which of the following statements is not true for lines of latitude?  ','they form parallel circles   ','they range from 00 to 1800 N and S  ','only one line is also a Great Circle ','They form parallel circles','','','b','','post-utme','2006',184,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:31'),(6,'Large in area and high in population, which of the following countries fits this description?','Lesotho  ','Togo ','Nigeria  ','Zaire','','','c','','post-utme','2006',209,'Admin','0000-00-00 00:00:00','2020-07-20 11:48:07'),(7,'One of these is NOT a landform in Africa   ','Scarp ','Inselberg  ','Drumlin','Doline','','','c','','post-utme','2006',202,'Admin','0000-00-00 00:00:00','2020-07-16 09:57:57'),(8,' Which of these does not lie in the principal earthquake region of the world? ','Japan ','Kenya  ','Iran   ','Turkey ','','','b','','post-utme','2006',179,'Admin','0000-00-00 00:00:00','2020-07-20 12:47:08'),(9,'Which  of   these  soil  groups  is  considered   the  most  productive?   ','Chernozems   ','Latosols  ','Podozols   ','Sierozems','','','a','','post-utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:46'),(10,'One example of inland drainage lake in  Africa is  ','Lake Chad ','Lake Victoria ','Lake Malawi ','Lake Turkana','','','a','','post-utme','2006',172,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(11,'The African river that crosses the equator twice is  ','Zaire ','Nile ','Mississippi  ','Amazon','','','a','','post-utme','2006',216,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(12,'Some rivers in their delta regions breaks into many branches before entering the sea. These divisions are known as  ',' Creeks ','Distributaries','Tributaries ','Effluents','','','b','','post-utme','2006',196,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(13,'Kariba Dam is found in River  ','Zambezi ','Congo  ','Niger  ','Nile','','','a','','post-utme','2006',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:50'),(14,'The major air mass affecting the climate of West Africa in summer is the  ','harmattan wind  ','tropical continental  ','warm equatorial  ','tropical maritime ','','','b','','post-utme','2006',187,'Admin','0000-00-00 00:00:00','2020-07-19 22:25:38'),(15,'If a map has a scale of 1:50,000 and a cocoa plantation is represented on the map by a rectangle 4cm by 3cm, what is the area of the plantation?  ','3 sq. km  ','30 sq. km  ','12 sq. km  ','20 sq. km','','','a','','post-utme','2006',189,'Admin','0000-00-00 00:00:00','2020-07-20 11:53:58'),(16,'The gap between two ranges within which transportation is usually possible in a mountainous regions is called  ','Valley  ','Col  ','ridge  ','Spur','','','b','','post-utme','2006',160,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:53'),(17,'What are greenhouse gasses?  ','Gases found around green houses in botanical gardens  ','Gases which are able to trap heat on the earth surface  ','Gases which help global circulation of winds and plants it growths  ','Gases which help farmers grow certain crops during the dry seasons','','','b','','post-utme','2006',204,'Admin','0000-00-00 00:00:00','2020-07-19 08:57:42'),(18,'The doldrums refer to  ','land areas bordering the confluence of the blue and white Nile  ','areas intense weather activities around the Mediterranean  ','areas of South Atlantic where cold and warm currents meet  ','area within a few degrees north and south of the equator.','','','d','','post-utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:55'),(19,'Nigeria Sat I is designed by primarily to  ','help GSM provider in achieving a wide national coverage  ','strengthen rapid response by Nigeria’s Armed Forces  ','help in the 2006 Census  ','provide information about various regions of the earth','','','d','','post-utme','2006',184,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:56'),(20,'The major sedimentary minerals found in Nigeria include:  ','tin, columbite and gold ','tin, coal and salt  ','limestone, columbite and diamond  ','limestone, petroleum and coal','','','d','','post-utme','2006',196,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:57'),(21,'The cloud which are white globular masses, forming ripples in the sky is called  ','Cirrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:58'),(22,'Which of the following routes must have least gradient?  ','Motorway ','Rail line  ','Bush path  ','Carnal ','','','b','','post-utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:59'),(23,'The foremost producers of petroleum in the Middle East are:  ','Saudi Arabia, Kuwait, Libya and Iran  ','Saudi Arabia, Iraq, Iran and Kuwait  ','Saudi Arabia, Iran, Venezuela and Oman ','Saudi Arabia, Iraq, Libya and Venezuela','','','b','','post-utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:00'),(24,'Which of the following is not an Anglophone country  ','Ghana  ','Gambia  ','Liberia  ','Senegal','','','d','','post-utme','2007',209,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(25,'The shallow part of the sea which separates the deep from the land is called  ','off shore coastal lowland  ','the on-shore tidal current  ','continental shelf formation  ','coastal coral cliff ','','','c','','post-utme','2007',165,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:02'),(26,'The port that handle the highest volume of cocoa export in Nigeria is  ','Sapele  ','Warri  ','Lagos  ','Port Harcourt','','','c','','post-utme','2007',181,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(27,'One major characteristics of rural settlements is that  ','are heterogeneous  ','are homogenous  ','are large in size  ','have more problems than urban settlements','','','b','','post-utme','2007',221,'Admin','0000-00-00 00:00:00','2020-07-18 11:16:09'),(28,'Industrialization in Nigeria can best be promoted through the development of  ','textile industry  ','leather industry  ','iron and steel industry  ','automobile industry ','','','c','','post-utme','2007',190,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:06'),(29,'Most of the industries located in rural areas are  ','low energy consumers  ','high energy consumers  ','raw materials oriented  ','transport oriented ','','','c','','post-utme','2007',214,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(30,'The distribution of minerals resources in Nigeria is related to its:  ','relief  ','soil  ','vegetation  ','geology ','','','a','','post-utme','2007',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:08'),(31,'Which of the ocean currents is classified as cool?  ','Benguela  ','Kuro Siwo  ','Gulf Scream  ','Mozambique ','','','a','','post-utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:09'),(32,'The sea area with the highest degree of salinity is the ','Baltic Sea  ','Caspian Sea  ','Dead Sea  ','Mediterranean Sea','','','c','','post-utme','2007',181,'Admin','0000-00-00 00:00:00','2020-07-21 12:10:43'),(33,'The thermometric scale usually employed to described the absolute temperature of the atmosphere is  ','Centigrade  ','Celsius  ','Kelvin  ','Fahrenheit ','','','c','','post-utme','2007',203,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:11'),(34,'If the temperature at sea level in a particular place is 200C, place 3500m above sea level in the same area will have a temperature of  ','- 2.750C   ','2.250C  ','22750C  ','22.750C','','','a','','post-utme','2007',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:12'),(35,'Which of the following is not a form of precipitation? ','Dew   ','Snow   ','hail ','fog ','','','d','','post-utme','2007',190,'Admin','0000-00-00 00:00:00','2020-07-19 22:17:49'),(36,'Which of the following pressure belts does not experienced descending air?  ','600N  ','600S  ','00 latitude   ','300N','','','a','','post-utme','2007',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:14'),(37,'In the tropics, the most variable climatic element inter-annually is  ','temperature  ','solar radiation   ','pressure  ','prairies ','','','a','','post-utme','2007',196,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:16'),(38,'Soil that are formed by the wind deposition are called ','Laterites  ','loess  ','podsols  ','prairies ','','','b','','post-utme','2007',173,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:17'),(39,'Desert soil are usually deficient in ','fertility  ','light grey colour  ','humus content  ','horizons ','','','c','','post-utme','2007',187,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(40,'Podsols and laterites share the following characteristics in common, except  ','infertility  ','high degree of leaching  ','associated with forest vegetation  ','colour ','','','c','','post-utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:19'),(41,'The forest type which is the most rich in tree species is the  ','tropical  ','Deciduous  ','Coniferous  ','Mediterranean ','','','a','','post-utme','2007',173,'Admin','0000-00-00 00:00:00','2020-07-20 13:24:42'),(42,'Linseed oil is associated with  ','flax  ','coconut  ','olives  ','rapeseeds','','','a','','post-utme','2007',190,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(43,'Which of the following is not correct with regards to the solar system?  ','The planets all orbit round the sun  ','The sun is only a source of the energy needed on the planets  ','The earth as well as other planets rotate round the sun  ','all the planets have definite orbits around the sun','','','c','','post-utme','2007',187,'Admin','0000-00-00 00:00:00','2020-07-16 09:04:50'),(44,'Fossil fuel reserves are found in the Lake Chad basin because  ','The basin lies approximately along he axis on which the rich Bakassi oil fields are found  ','The basin is at the edge of the desert with conditions similar to that of Iraq  ','it is an inland drainage basin with many large rivers emptying into it  ','Its rocks are sedimentary ','','','d','','post-utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-16 11:19:06'),(45,'Which of the following is correct?  ','The Canaries current is cold and washes the coast of NE Africa  ','The Peruvian current is warm and washes the West coast of America  ','The Gulf stream is warm and moves north eastward on the Atlantic  ','The middle east current is warm and washes the coast of Saudi Arabia ','','','c','','post-utme','2007',184,'Admin','0000-00-00 00:00:00','2020-07-15 13:31:14'),(46,'Which of the following formulae is the correct one for converting X0 Fahrenheit temperature reading into Centigrade temperature readings (Y0)?  ','Y = (X + 32)5/90C ','Y = (X – 32)5/90C  ','Y =  (X – 32)9/50C  ','Y = (X+32)9/50C','','','c','','post-utme','2007',187,'Admin','0000-00-00 00:00:00','2020-07-20 12:54:43'),(47,'Oxbow lakes are found in  ','lower courses of some rivers ','wind bow out sites  ','places with history of tectonism ','areas of subsidence ','','','a','','post-utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:32'),(48,'Coombes are associated with  ','honey-bee farms  ','Karst environment  ','rift valley system  ','cases in the desert','','','b','','post-utme','2008',202,'Admin','0000-00-00 00:00:00','2020-07-19 23:14:02'),(49,'The Stevenson’s screen is used to keep  ','barometer   ','thermometers  ','hygrometers  ','evapori meters','','','b','','post-utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(50,'Global Positioning Systems (GPS) help in  ','combating crime  ','providing early warning against disasters  ','climate change monitoring ','locating positions on the earth surface ','','','d','','post-utme','2008',169,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:35'),(51,'One of these is not a factor of population growth  ','poverty  ','migration  ','prosperity  ','housing ','','','a','','post-utme','2008',195,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(52,'Which of the following is not a major problem of Kainji Dam?  ','increase in the herds of the cattle that depends on its waters  ','increase in usage of Niger in Niger Republic  ','silting of the dam  ','growing demand for irrigation water','','','b','','post-utme','2008',201,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(53,'The East Africa large lakes are together described as  ','Great Lakes St Lawrence Sea Ways  ','Rift Valley Lakes  ','Sources of large rivers like Nile  ','products of the formation of Mt Kilimanjaro ','','','b','','post-utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:38'),(54,'One of these is not true of rain gauges:  ','Rain gauge provide excellent measurement of rainfall ','Their measurements may be affected by the particular type used ','Their readings may be influenced by slope of the land  ','Rain splashes during heavy rains may lead to over estimation ','','','c','','post-utme','2008',195,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(55,'South East Asia is noted for its regular experience of  ','hurricane  ','tornadoes  ','typhoons  ','strong wind','','','c','','post-utme','2008',183,'Admin','0000-00-00 00:00:00','2020-07-18 11:16:09'),(56,'Horse latitudes refers to  ','areas around the gulf of guinea ','areas around the equator  ','areas around the Mediterranean sea  ','areas around latitude 300 in both hemispheres.','','','d','','post-utme','2008',182,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(57,'“High uniform temperature and heavy well distributed rainfall throughout the year” described ','Equaterial rainforest climate  ','Mid altitude friendly environment  ','the zone of forest with a lot of agricultural potentials  ','the great Amazon basin including the Brazilian forests','','','a','','post-utme','2008',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:42'),(58,'On of the following is least important to ocean movement  ','salinity of the ocean water  ','temperature of the water  ','planetary wind  ','curvature of the coastal areas','','','d','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:43'),(59,'The cloud which are white globular masses, forming ripples in the sky is called ','Citrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2008',199,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(60,'Which one of the following seas has highest degree of salinity in the world?  ','Caspian sea  ','Mediterranean sea  ','Dead Sea  ','Red sea','','','c','','post-utme','2008',199,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:45'),(61,'Which of the following landforms is NOT due to the process of glacier erosion? ','Come  ','valley -bench  ','Hanging valley  ','Esker','','','b','','post-utme','2008',189,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:46'),(62,'Which of the following rivers does NOT drain into Atlantic Ocean? ','The Niger  ','The Indus  ','The Amazon  ','The Volta','','','b','','post-utme','2008',197,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:48'),(63,'Which features on a  topographic sheet would you analyze to characterize the configuration of the area covered by the sheet  ','Isoyet and Isolines  ','ranges and spot heights ','Contour lines for cross section','Contour lines for slope estimates  ','','','d','','post-utme','2008',183,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(64,'The greatest challenge to future use of automobiles is  ','advances in air travel  ','identification of alternative to fossil fuels  ','changing and more reliable technology for rail transport ','population growth ','','','b','','post-utme','2008',168,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:49'),(65,'The statements ‘one cm 2 km can be represented by the ratio of  ','1:50,000 ','1:500,000  ','120,000','1:200,000','','','d','','post-utme','2008',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:50'),(66,'What is the Local Standard time in New York (750W) when it is 2 p.m. in Accra?  ','7 p.m. (19hrs)  ','7 a.m. (0700hrs)  ','9 p.m. (2100hrs)  ','9 a.m. (0900hrs)','','','d','','post-utme','2008',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:51'),(67,'On any day in the year at a specific time  ','the sun is overhead along the equator  ','the sun is overhead along the topic of cancer  ','the North Pole has 24 hours of daylight  ','one half of the earth is in darkness','','','d','','post-utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-17 04:13:27'),(68,'Which of the following is not a true feature produced by volcanic activity? ','horst  ','caldera  ','dyke  ','geyser ','','','a','','post-utme','2008',213,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:53'),(69,'Which is the main crop grown in the Ghezira plains ','Wheat  ','Millet  ','Rice  ','Cotton','','','d','','post-utme','2008',208,'Admin','0000-00-00 00:00:00','2020-07-20 11:48:13'),(70,'Which of the following countries has a large number of people of Africa descent? ','England  ','Canada  ','Chile  ','Brazil ','','','d','','post-utme','2008',168,'Admin','0000-00-00 00:00:00','2020-07-20 12:51:31'),(71,'When it is 1200 noon on longitude 300E. What is the time on longitude 150W.  ','9.00 a.m. ','5.00 p.m.  ','9.00 p.m.  ','5.00 a.m. ','','','a','','post-utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-16 11:19:06'),(72,'Which of the following Nigerian towns is Not situated near a big river? ','Lokoja ','Onitsha  ','Jebba  ','Abuja','','','d','','post-utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(73,'Fishing is the mainstay of the economy of  ','Libya  ','Iran  ','Iceland  ','Chad','','','c','','post-utme','2008',175,'Admin','0000-00-00 00:00:00','2020-07-19 23:14:02'),(74,'Which of the following features is produced by wave deposition  ','caves  ','stack  ','tomobolo  ','blow holes','','','c','','post-utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:00'),(75,'Which of the following is the major factor responsible for Japan’s unparalleled industrial growth in the last few decades? ','Japan’s proximity to mainland ','Japan’s cargo population    ','availability of abundant coal and petroleum ','technological proficiency','','','d','','post-utme','2009',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:01'),(76,'Which of the following timber trees are found in the tropical rain forest of Africa? ','Obeche and teak  ','Mahogany and teak  ','Obeche and Mahogany ','Iroko and Eucalyptus','','','c','','post-utme','2009',183,'Admin','0000-00-00 00:00:00','2020-07-20 12:42:45'),(77,'Which of the following basins has the highest population concentration? the ','Indus  ','Niger  ','Nile  ','Mississippi ','','','b','','post-utme','2009',193,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(78,'Which of these economic activities is LEAST characteristics of typical urban centres?  ','Commerce ','quarrying  ','transportation  ','manufacturing ','','','b','','post-utme','2009',174,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(79,'In Karst region, when several dolines are joined together to form depression, it is known as ','cave  ','uvala  ','stalactite  ','calcite pallar','','','b','','post-utme','2009',190,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:05'),(80,'Rural settlements can be distinguished from urban settlements by their?  ','function  and population  ','Site and function  ','demography and morphology  ','morphology and location ','','','a','','post-utme','2009',193,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:06'),(81,'The scientist who propounded the theory of continental drift was?  ','Francis bacon  ','Alfred Wegener   ','Authur Holmes ','Williams Davis','','','b','','post-utme','2009',181,'Admin','0000-00-00 00:00:00','2020-07-20 12:52:10'),(82,'The major world exports of wool are  ','Britain, Australia, Mediterranean Europe and Argentina   ','New Zealand, Uruguay, Australia and Argentina  ','Australia, India, Paraguay and Argentina  ','New Zealand, India, Uruguay and Peru','','','b','','post-utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:08'),(83,'Blantyre, Rio Janeiro, New York and Lagos are similar in that they all serves as their countries ','major seaport  ','political headquarter ','commercial centres ','cultural centres','','','c','','post-utme','2009',169,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(84,'The dawn is a temperature grassland found in? ','Australia  ','South America  ','Eurasia  ','South Africa','','','a','','post-utme','2009',175,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:10'),(85,'Commercial grape cultivation is associated with?  ','cool temperature climate  ','monsoon regions  ','Mediterranean regions  ','Montane climate ','','','c','','post-utme','2009',176,'Admin','0000-00-00 00:00:00','2020-07-18 11:16:09'),(86,'The highest volume of shipping across the Atlantic ocean is  ','between Europe and Africa  ','between North America and Europe  ','between African and South America ','between North America and South America','','','b','','post-utme','2009',189,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(87,'The Ukraine of economic activities  ','commercial grain agriculture  and livestock random ','plantation agriculture and nomadic herding.','','','','','a','','post-utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(88,'All planets have satellites except:  ','Earth & Venus ','Mars & Mercury  ','Mercury & Venus  ','Neptune & Venus','','','c','','post-utme','2010',189,'Admin','0000-00-00 00:00:00','2020-07-17 04:13:27'),(89,'Which of the following location in Nigeria has the least mean annual rainfall total?  ','Sokoto  ','Maiduguri  ','Potiskum  ','Nguru','','','b','','post-utme','2010',200,'Admin','0000-00-00 00:00:00','2020-07-16 09:57:57'),(90,'Which of the following is not the Karst features? ','Poljes  ','Uvala  ','Kopjes  ','Dolines ','','','c','','post-utme','2010',181,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(91,'The world’s longest river is ','Amazon  ','Mississippi  ','Nile  ','Chang Jiang','','','c','','post-utme','2010',183,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(92,'One of these is a features of rejuvenated river: ','Incised menders  ','Braided channel  ','delta  ','Levees ','','','a','','post-utme','2010',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:18'),(93,'Which one of these is not a thermometric scale:  ','Celsius  ','Kelvin  ','Fahrenheit  ','Octas ','','','d','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:19'),(94,'Which of these is not a form of condensation? ','Snow ','Rime  ','Cloud  ','Fog','','','b','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:20'),(95,'Cyclones are centres of  ','relative low pressure  ','relative high pressure  ','Tsunamis  ','turning around of winds','','','a','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-17 01:22:34'),(96,'The best natural harbour in West Africa is at  ','Lome  ','Tema ','Lagos ','Freetown ','','','d','','post-utme','2010',180,'Admin','0000-00-00 00:00:00','2020-07-18 11:16:09'),(97,'Sandstone is metamorphosed into  ','Slate  ','Schist  ','graphite  ','Quartzite ','','','d','','post-utme','2010',176,'Admin','0000-00-00 00:00:00','2020-07-17 01:36:15'),(98,'The navigability of River Nile is limited because  ','it is too long  ','it is too shallow  ','it flows during the wet season only  ','it has several cataracts. ','','','d','','post-utme','2010',185,'Admin','0000-00-00 00:00:00','2020-07-19 02:05:10'),(99,'The cloud which is closely associated with thunderstorms is  ','strato-cumulus  ','Cirrocumulus  ','Cumulus-nimbus  ','Alto-stratus ','','','c','','post-utme','2010',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:25'),(100,'Drought-tolerant plants are  ','Epiphytes  ','Hydrophytes  ','Droughytes  ','Xerophytes ','','','d','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-20 13:25:40'),(101,'Campos is the name for the grassland in  ','North America  ','South America  ','Africa  ','Asia ','','','b','','post-utme','2010',183,'Admin','0000-00-00 00:00:00','2020-07-16 10:03:41'),(102,'When the moon comes in between the earth and the sun in a perfect straight line, it is known as','Eclipse of the moon  ','Lunar eclipse ','solar eclipse  ','eclipse of the earth ','','','c','','post-utme','2010',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:28'),(103,'The earth rotates ','South East-South West  ','South West South West  ','West East  ','East West','','','c','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-16 09:04:50'),(104,'A degree latitudinal distance is approximately ','70km  ','111km  ','180km  ','360km','','','b','','post-utme','2010',185,'Admin','0000-00-00 00:00:00','2020-07-16 09:57:57'),(105,'Large masswa of moving ice in the oceans are  ','glacier  ','iceberg  ','ice-sheet  ','ice-caps','','','b','','post-utme','2010',183,'Admin','0000-00-00 00:00:00','2020-07-20 13:28:20'),(106,'The world driest desert is  ','Atacama  ','Sahara  ','Kalahari  ','California ','','','a','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:33'),(107,'A line joining places of equal salinity is  ','isohaline  ','Isoneph  ','Isohyets  ','Isohel','','','a','','post-utme','2010',203,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:34'),(108,'Which of these is not on the western side of continental land masses? ','Agulhas  ','Canary  ','Penivian  ','California','','','a','','post-utme','2010',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:35'),(109,'In general, temperature decreases from the equator towards the Poles because  ','angle of incidence of sun’s rays increases towards the poles ','angles of incidence sun’s rays decreases towards the poles  ','Snow-cover of the higher latitudes reduces the temperature  ','snow falls rather than rain in the pole','','','a','','post-utme','2010',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:36'),(110,'Which of the following continents is crossed by both the Tropic of Cancer and Tropic of Capricorn?  ','Asia  ','South America ','North America  ','Africa','','','d','','post-utme','2010',175,'Admin','0000-00-00 00:00:00','2020-07-19 22:17:49'),(111,'The sea bed, bordering the continents which is covered by the shallow water is known as ','continental slope ','coral reef ','continental shelf  ','continental platform  ','','','c','','post-utme','2010',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:38'),(112,'The result of football match completed at 6.00p.m. at Accra (Ghana) and immediately announced over the wireless was heard at 12.00noon same day at another city. The longitude of the city is ','900E  ','600E  ','900W  ','450W ','','','c','','post-utme','2010',196,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(113,'Soil that are formed by wind deposition are called  ','laterites  ','prairies  ','podsols   ','Loess  ','','','d','','post-utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-20 13:01:29'),(114,'Which of the following is not a feature of sea deposition ','Shoal ','Beach ','Spit ','coal','','','d','','post-utme','2011',175,'Admin','0000-00-00 00:00:00','2020-07-19 23:14:02'),(115,'Which of the following terms is associated with glaciations? ','Arête   ','Bay   ','Stacks   ','Reef   ','','','a','','post-utme','2011',185,'Admin','0000-00-00 00:00:00','2020-07-20 11:46:39'),(116,'The lower part of a river valley that has been submerged by the sea is called ','Estuary   ','Reef    ','Spit   ','Bar  ','','','b','','post-utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:43'),(117,'Which of the following is a cold ocean current ','Mozambique   ','gulf stream ','Kuro Siwo  ','Benguela   ','','','d','','post-utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-21 12:11:18'),(118,'The most important cause of tides is the,','distribution of the prevailing winds ','rotation of the earth on its own axis  ','inclination of the earth’s axis  ','gravity attraction of the moon ','','','d','','post-utme','2011',190,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:51'),(119,'Desert soils are usually deficient in ','fertility  ','humus content ','horizon ','light grey colour   ','','','b','','post-utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:53'),(120,'At the summer solstice [June 21st], which of the following latitudes will have the longest day ','700S   ','900S  ','300N   ','650N   ','','','d','','post-utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:54'),(121,'Cyclones refer to ','centers of relatively high pressure ','centers of relatively low pressure ','centers Tsunamis ','centers in the desert ','','','b','','post-utme','2011',177,'Admin','0000-00-00 00:00:00','2020-07-16 10:03:41'),(122,'The wearing away of the sides and bottom of a river channel is called ','corrasion ','corrosion ','hydraulic action ','Complicated erosion ','','','a','','post-utme','2011',174,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:56'),(123,'When the moon comes in between the earth and the sun in a straight line, it is known as  ','solar eclipse ','eclipse of the earth ','eclipse of the moon ','lunar eclipse ','','','a','','post-utme','2011',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:57'),(124,'A degree of latitudinal distance is approximately  ','111km  ','221KM ',' 121km  ','212km  ','','','a','','post-utme','2011',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:58'),(125,'Which of the following places in Nigeria has the highest mean annual rainfall amount ','Sokoto  ','Maiduguri  ','Nguru   ','Kano  ','','','c','','post-utme','2011',212,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(126,'The formulae for converting temperature from a centigrade (0C) to a Fahrenheit (0F) thermometric scale? ','0F = 1.8 x 0C + 32  ','0F = 0.5x 0C + 32  ','0F = 1.8x 0C – 32   ','0F = 0.5x 0C – 32  ','','','a','','post-utme','2011',185,'Admin','0000-00-00 00:00:00','2020-07-16 10:03:41'),(127,'The Northern Hemisphere’s Spring Equinox is during the month of','February ','march ','April   ','May  ','','','b','','post-utme','2011',204,'Admin','0000-00-00 00:00:00','2020-07-16 10:03:41'),(128,'Noonday sun is vertically overhead along the Tropic of Cancer during the month of  ','June  ','July  ','August  ','September ','','','a','','post-utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(129,'An instrument used in measuring the atmospheric pressure is called ','Barometer ','Thermomete','Hygrometer','Presometer','','','a','','post-utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:03'),(130,'Orographic rainfall is also called ','Relief rainfall','cyclonic rainfall ','convectional rainfall ','frontal rainfall ','','','a','','post-utme','2011',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:04'),(131,'The forest type which is richest in tree species is the ','Deciduous forest ','Mediterranean forest ','Tropical Lowland  rainforest ','coniferous forest  ','','','c','','post-utme','2011',158,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:05'),(132,'Which of the following statements is not true for lines of latitudes?','they range from 00 to 1800 North and South ','they range from 00 to 900 North and South ','They vary in D. they form parallel circles','only one line is a great circle.','','','a','','post-utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:06'),(133,'The earths rotates through 150C of longitude in  ','24hrs  ','15hrs  ','4hrs   ','1hrs   ','','','d','','post-utme','2011',202,'Admin','0000-00-00 00:00:00','2020-07-19 22:25:38'),(134,'What is the local standard time in New York (750W) when it is 2pm in Accra? ','9.00pm  ','9.00 pm  ','7.00pm   ','7.00am ','','','b','','post-utme','2011',166,'Admin','0000-00-00 00:00:00','2020-07-16 08:59:22'),(135,'Aeolian erosion refers to the work of  ','Wind ','Running water  ','Glacier  ','Ice  ','','','a','','post-utme','2011',170,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(136,'Which of the following landforms is the results of  river rejuvenated?  ','Ox-box lake ','flood plain ','terrace  ','alluvial fan  ','','','c','','post-utme','2011',207,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(137,'The representative fraction of 1:50,000 can be converted to the following  ','one cm to 5km  ','one cm to 0.05km  ','one cm to 2km  ','one cm to 4km  ','','','b','','post-utme','2011',185,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(138,'Which of the following is not a rapid type of mass movement? ','Solidification ','Rockfall  ','Mudflow  ','Debris Slide','','','a','','post-utme','2012',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:23'),(139,'A front in which warm air is overtaken and lifted off the ground by cold air in a depression is known as  ','Cold front  ','Warm front  ','Mixed front  ','Occluded','','','d','','post-utme','2012',172,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:24'),(140,'The earth’s atmosphere is said to be stable  ','when the environmental laps rate is greater than the adiabatic lapse rate  ','When the adiabatic lapse rate is greater than the environmental lapse rate  ','When the environmental lapse rate is equal to the adiabatic lapse rate  ','When the environmental lapse rate is not equal to the adiabatic lapse rate.','','','b','','post-utme','2012',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:25'),(141,'Environmental lapse rate is  ','The rate of temperature changes of an air parcel undergoing vertical displacement  ','The rate of temperature decrease of an air parcel undergoing horizontal displacement  ','The actual rate decrease of temperature with increase in altitude at a given place at a given moment  ','The rate of horizontal temperature gradient of an air parcel','','','c','','post-utme','2012',196,'Admin','0000-00-00 00:00:00','2020-07-20 13:48:31'),(142,'What is the Centigrade equivalent of 950 Fahrenheit? ','1390C  ','37.20C  ','350C','3.60C','','','c','','post-utme','2012',197,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:27'),(143,'Which of the following States in Nigeria would a person NOT pass over by crow fly (direct distance) from Ibadan to Makurdi? ','Osun  ','Ondo ','Kogi  ','Enugu','','','d','','post-utme','2012',230,'Admin','0000-00-00 00:00:00','2020-07-21 02:13:54'),(144,'The Latitude which marks the limits of the overhead sun’s apparent movement is  ','0','66.5','32.5','23.5','','','d','','post-utme','2012',216,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:29'),(145,'Which of the following features is not commonly associated with a river at the floodplain stage? ','Meanders  ','Levees ','Braided channel  ','Knick point ','','','a','','post-utme','2012',201,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(146,'The World’s richest fishing grounds are found  ','On the continental shelves  ','In oceanic deeps ','In big and fast-flowing river  ','In river estuaries ','','','a','','post-utme','2012',172,'Admin','0000-00-00 00:00:00','2020-07-19 23:14:02'),(147,'A deflation hollow is produced by  ','River erosion  ','Water action in a limestone area  ','Wind erosion in deserts  ','Wave erosion on the coast ','','','c','','post-utme','2012',194,'Admin','0000-00-00 00:00:00','2020-07-21 12:13:24'),(148,'Akosomo dam is on the River  ','Niger  ','Nile  ','Congo  ','Volta','','','d','','post-utme','2012',184,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(149,'Which of the following is a not characteristic of the International Date Line? ','The Line is approximately along the 1800 meridian  ','The line has a zigzag shape  ','Local time is the same on either side of the line  ','A traveler gains a day when crossing the line from the west to the east ','','','c','','post-utme','2012',160,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:34'),(150,'Which of the following African cities is situated near the confluence of rivers? ','Niamey  ','Freetown  ','Cairo  ','Khartoum ','','','d','','post-utme','2012',188,'Admin','0000-00-00 00:00:00','2020-07-20 11:53:33'),(151,'Ferrel’s law states that winds deflect to the  ','Left in the northern  ','Right in the Northern hemisphere and to the left in the Southern hemisphere  ','Right in both hemispheres  ','Left in both hemisphere.','','','b','','post-utme','2012',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:36'),(152,'Given an environmental lapse tate of 0.650C per 100 metres, a place with sea level temperature of 400 and 2500 metre above the sea level will approximately have a temperature of  ','31.250C  ','23.750C  ','32.50C  ','28.250C ','','','b','','post-utme','2012',210,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(153,'At the summer solstice (June 21), which of the following latitudes will have the shortest night?','30 “N  ','30 “S  ','50 “N  ','50 “S','','','c','','post-utme','2012',179,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(154,'Which of the following landforms result from wind deposition? ','Playa  ','Barchan  ','Bajada  ','Fan','','','b','','post-utme','2012',210,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:39'),(155,'Which of the following farming practices can be used to check soil erosion? ','Contour ploughing  ','Ploughing of land upslope  ','Bush burning  ','Shifting','','','a','','post-utme','2012',198,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(156,'Aeolian erosion refers to the work of  ','Plants  ','Wind  ','Ice  ','Running water','','','b','','post-utme','2012',219,'Admin','0000-00-00 00:00:00','2020-07-20 13:30:30'),(157,'The difference in the readings on the dry and wet bulb thermometers used to determine  ','Relative humidity  ','Temperature range  ','Evaporation  ','Transpiration ','','','a','','post-utme','2012',178,'Admin','0000-00-00 00:00:00','2020-07-20 12:55:57'),(158,'Which of the following scales should show the greatest amount of detail on a map? ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2012',191,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(159,'Sandstone is metamorphosed into  ','Slate  ','Quartzite  ','Schiest  ','Graphite ','','','b','','post-utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:44'),(160,'In humid areas, farmers add lime to the soil to  ','reduce acidity  ','Act as fertilizer  ','Facilitate the absorption of nutrient  ','Encourage the farmer','','','a','','post-utme','2012',197,'Admin','0000-00-00 00:00:00','2020-07-19 22:17:49'),(161,'In the hydrological cycle, the transfer of water from the earth’s surface to the atmosphere is by ',' Evaporation only  ','Transpiration Only  ','Evaporation  ','Condensation ','','','c','','post-utme','2012',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:46'),(162,'The second Equinox in any year take place during the month of','March   ','June   ','September   ','December','','','c','','post-utme','2013',191,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:47'),(163,'Which of the following countries in Africa would a person NOT pass over by crow fly (direct distance) from Abidjan to Cairo?  ','Niger    ','Libya','Burkina Faso  ','Chad','','','c','','post-utme','2013',216,'Admin','0000-00-00 00:00:00','2020-07-20 11:48:06'),(164,'The main work of a river in its torrent stage is  ','Widening its valley','Down cutting','Deposition  ','Bifurcation','','','a','','post-utme','2013',193,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(165,'Which of the locations in Nigeria has the highest mean annual rainfall total ?  ','Benin City  ','Port-Harcourt  ','C.Calabar   ','Ondo','','','b','','post-utme','2013',164,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(166,'The world’s longest river is  ','River Amazon    ','River-Mississippi   ','River Nile  ','River Chang Jiang','','','c','','post-utme','2013',196,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:51'),(167,'Which of the following is a feature  of a rejuvenated river?','Incised meanders   ',' Braided channel   ','Delta   ','Levees','','','a','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:53'),(168,'Which of the following is not a thermometric scale?','Celsius     ','Kelvin','Fahrenheit   ','Octas','','','d','','post-utme','2013',182,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:54'),(169,'Which of the following is not a form of condensation?  ','Snow  ','Rime  ','C.Cloud  ','Fog','','','d','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:55'),(170,'The surface of discontinuity between the earth’s crust and the mantle is know as','Lithosphere   ','Barysphere','Mohocivic Discontinuity','Gutenburg discontinuity','','','b','','post-utme','2013',177,'Admin','0000-00-00 00:00:00','2020-07-16 09:04:50'),(171,'Where is Sahel Savanna vegetation belt found in Nigeria?','Northwest   ','Northeast','Both Northwest and Northeast','From the middle belt to the north','','','b','','post-utme','2013',172,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:57'),(172,'The largest soil group, found in the temperate grasslands, having a deep, black, nutrient-rich','A-horizon, a compact  B-horizon and a zone of calcium carbonate accumulation is called a','Chernozem  ','Pedocal   ','Podsol  ','Chestnut','','a','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:58'),(173,'Drought-tolerant plants are known as  ','Epiphytes  ',' Hydrophytes','Drouphytes','Xerophytes','','','d','','post-utme','2013',171,'Admin','0000-00-00 00:00:00','2020-07-19 23:14:02'),(174,'The major disadvantage of the River Nile as a trade route is that  ','it is too long   ','it is too shallow   ','it flows during the wet season only   ','it has several cataracts','','','d','','post-utme','2013',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:01'),(175,'The earth rotates from  ','Southeast to Southwest','Southwest  to Southeast','West to East  ','East to West','','','c','','post-utme','2013',186,'Admin','0000-00-00 00:00:00','2020-07-20 13:15:07'),(176,'The tropical maritime air mass attains its maximum incursion over West African hinterlands','When the sun is overhead on the tropic of Capricorn  ','When the sun is overhead on the tropic of Cancer ','When the sun is overhead on the Equator','When the sun is overhead on both the tropic of Cancer and Tropic of Capricom','','','c','','post-utme','2013',184,'Admin','0000-00-00 00:00:00','2020-07-20 13:02:15'),(177,'A line joining places of equal salinity is known as','Isohaline   ','Isoneph','Isohyet   ','Isohel','','','a','','post-utme','2013',190,'Admin','0000-00-00 00:00:00','2020-07-16 11:19:06'),(178,'Which of the following continents has the largest area with a tropical type of climate?','Asia   ','South America','North America  ','Africa','','','a','','post-utme','2013',178,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(179,'One hour’s difference in mean solar time represents what angular difference in longitude?','15o ','23.5o  ','90o','66.5o','','','a','','post-utme','2013',199,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:06'),(180,'An extended urban area, typically consisting of several towns merging with the suburbs of one or more cities can best be referred to as  ','Conurbation','Urban decay  ','Growth pole','Urban Inertia','','','a','','post-utme','2013',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:07'),(181,'Which of the following terms is not associated with desert-type topography?','Zuegen    ','Yardang  ','Mesa  ','Uvala','','','d','','post-utme','2013',176,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:08'),(182,'The major characteristics of a karst scenery include','Excessive overland flow','Extensive and long surface flow  ','An underground network of caves and streams','Frequent  surface drainage','','','c','','post-utme','2013',193,'Admin','0000-00-00 00:00:00','2020-07-16 11:19:06'),(183,'Which of the following landforms originates from Aeolian erosion?','Deflation hollow  ','Sand dune  ','Playa   ','Wadi','','','a','','post-utme','2013',180,'Admin','0000-00-00 00:00:00','2020-07-20 12:40:02'),(184,'The cheapest means of transport for a long distance travel is by   ','Air   ','Rail','Water   ','Road','','','c','','post-utme','2013',210,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:11'),(185,'A traveler crossing the international Date line from America to Asia at 1.00 P.M. on Saturday, July 13th, 2013, would have to change his watch to 1.00 P.m. on','Sunday, July 14th, 2013','Friday, July 12th 2013','Saturday, July 13th, 2013','Monday, July 15th, 2013','','','a','','post-utme','2013',181,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:12'),(186,'The shaduf method of irrigation was first practiced in','Sudan   ','Ghana   ','Egypt    ','Mali','','','c','','post-utme','2013',198,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:13'),(187,'Climate is the: ','Prevailing weather conditions of a region for 10 years ','Prevailing weather conditions of a region for 15 years  ','Prevailing weather conditions of a region for 35 years  ','Prevailing weather conditions of a region for 20 years  ','','','c','','post-utme-aaua','2014',183,'Admin','0000-00-00 00:00:00','2020-07-17 01:22:34'),(188,'Igneous rocks are rocks formed by','The cooling of molten minerals from a liquid into a solid.','The change of minerals from a solid into a liquid','The deposition of minerals. ','The deposition of minerals a solid into a liquid. ','','','a','','post-utme-aaua','2014',154,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:15'),(189,'Temperature is a measure of: ','The average hotness','The average coolness','The average heat. ','The average emission.','','','c','','post-utme-aaua','2014',179,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(190,'Isotherm refers to: ','Line that connects points of equal sunshine','Line that connects points of equal rainfall','Line that connects points of equal pressure.  ','Line that connects points of equal temperature','','','d','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-07-17 01:36:15'),(191,'The longest river in Africa is:  ','River Nile. ','River Niger. ','River Benue','River Zambezi ','','','a','','post-utme-aaua','2014',183,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(192,'Isobar refers to: ','Line that connects points of equal humidity. ','Line that connects points of equal rainfall.   ','Line that connects points of equal pressure.  ','Line that connects points of equal temperature. ','','','c','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-07-19 22:25:38'),(193,'Topographic maps are: ','Representations of features on the Earth\\'s surface','Features on the Earth\\'s surface. ','Detailed and accurate graphic representations of features on the Earth\\'s surface ','Geographic coordinate grid on the Earth\\'s surface. ','','','c','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(194,'Lesotho is in: ','South Africa','West Africa.   ','East Africa','Central Africa','','','c','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-07-20 11:51:55'),(195,'Weathering of rocks is: ','The formations of rocks','The breaking down of rocks.   ','The deformations of rocks','The accumulation of rocks. ','','','b','','post-utme-aaua','2014',154,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:22'),(196,'Scale of a map is defined as: ','The ratio of a distance on the drawing board to the corresponding distance on the ground. ','The ratio of a distance on the map to the corresponding distance on the ground','The ratio of a distance on the tape to the corresponding distance on the ground. ','The ratio of a distance on the ruler to the corresponding distance on the ground','','','b','','post-utme-aaua','2014',158,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:23'),(197,'The capital of Niger state in Nigeria is: ','Gusau','Yola','Makurdi','Minna','','','d','','post-utme-aaua','2014',155,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(198,'A valley is a:   ','Highland between hills','Lowland between hills','Rock between hills','Highland between trees. ','','','b','','post-utme-aaua','2014',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:25'),(199,'Nigeria has a total land area of: ','923,768 km2 ','823,768 km2 ','623,768 km2 ','723,768 km2 ','','','a','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-20 13:18:15'),(200,'A lake is a:   ','Large body of water surrounded by forest. ','Large body of water surrounded by land. ','Large body of water surrounded by rocks','Large body of water surrounded by water. ','','','b','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-16 08:59:22'),(201,'Nigeria is having','574 Local Government Areas','674 Local Government Areas. ','774 Local Government Areas. ','874 Local Government Areas','','','c','','post-utme-aaua','2014',159,'Admin','0000-00-00 00:00:00','2020-07-20 13:00:45'),(202,'An island is a:   ','Piece of land surrounded by water.   ','Piece of land surrounded by land. ','Piece of land surrounded by forest. ','Piece of land surrounded by rocks. ','','','a','','post-utme-aaua','2014',161,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:29'),(203,'The ethnic groups in Nigeria are: ','More than 250  ','More than 150   ','More than 100   ','Less than 150 ','','','a','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-07-17 01:36:15'),(204,'Orographic rainfall is a:   ','Temperate rainfall','Relief rainfall. ','Coastal rainfall','Forest rainfall.   ','b','','','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-07-17 01:36:15'),(205,'One major societal issues in Nigeria is: ','Poor feeding. ','Poor human rights','Poor language','Poor religion. ','','','b','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(206,'The United Nations estimate of Nigeria population in 2009 was','154,729,000','144,729,000.00','164,729,000.00','184,729,000.00','','','b','','post-utme-aaua','2014',176,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:33'),(207,'Nigeria lies between','Latitudes 4° and 13°N and longitudes 2° and 15°E. ','Latitudes 5° and 14°N and longitudes 4° and 15°E. ','Latitudes 4° and 14°N and longitudes 2° and 15°E. ','Latitudes 2° and 15°N and longitudes 4° and 14°E. ','','','c','','post-utme-aaua','2014',162,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:42'),(208,'Kinshasa is a: ','Central African City ','North African City ','East African City ','South African City ','','','a','','post-utme-aaua','2014',173,'Admin','0000-00-00 00:00:00','2020-07-20 13:16:41'),(209,'Freetown is a: ','North African City ','West African City ','South African City ','East African City ','','','b','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:45'),(210,'Which one of the following countries is having the highest quality of life? ','Sweden  ','Austria ','United States of America ','England  ','','','a','','post-utme-aaua','2014',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:46'),(211,'Nairobi is a: ','North African City ','West African City ','South African City ','East African City ','','','d','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:47'),(212,'The most populated country in the world is: ','Austria ','China ','United States of America ','Brazil ','','','b','','post-utme-aaua','2014',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:48'),(213,'Casablanca is a','North African City ','West African City ','South African City ','Central African City ','','','a','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(214,'The World largest Ocean is: ','Pacific Ocean ','Atlantic Ocean ','Indian Ocean ','Arctic Ocean ','','','a','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-20 11:51:02'),(215,'Dominican Republic is in: ','Europe ','Africa ','America ','Asia ','','','c','','post-utme-aaua','2014',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:51'),(216,'The World Longest Coastlines is in: ','Austria ','England  ','United States of America ','Canada ','','','d','','post-utme-aaua','2014',165,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(217,'Which of the following is an evidence to show that the earth is spherical in shape? ','Elliptical orbit ','Ea th s  u ed ho izo','Revolution of the earth ','Seasonal changes ','','','b','','post-utme-aaua','2014',184,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(218,'A lines drawn on a maps to show places of equal rainfall is called ','Rainline ','Isotope ','Isotherm ','Hydrotope ','','','b','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-07-19 23:14:02'),(219,'Wind erosion is most common in ','Rocky areas ','Riverine areas ','Arid areas ','Humid areas ','','','c','','post-utme-aaua','2014',141,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:55'),(220,'The act of graphical representation of places with identified scale and legend is called ','Scaling ','Mapping  ','Sketching ','Drawing ','','','b','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-07-17 04:13:27'),(221,'A piece of land almost surrounded by water is called ','Headland ','Peninsula ','Island   ','Plateau ','','','c','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(222,'Planet warming the use of water transport is limited by all the following except  ','Wide valleys   ','Waterfalls ','Seasonality  ','Narrow gorges   ','','','a','','post-utme-aaua','2014',174,'Admin','0000-00-00 00:00:00','2020-07-20 13:29:21'),(223,'To obtain the climate of a place the average atmospheric weather conditions should be considered ','20years ','24years','35years ','10years ','','','c','','post-utme-aaua','2014',203,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(224,'Which of the following is a major hindrance to H.E.P.','Inadequate capital  ','Unavailability of good sites  ','Absence of domestic market  ','Sufficient volume of water  ','','','d','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:00'),(225,'Isotherms are lines drawn on maps joining places having equal ','Temperature   ','Cloud cover ','Pressure ','Water level ','','','a','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:01'),(226,'Precipitation include all the following except ','Fog','Snow ','Dust   ','Dew ','','','c','','post-utme-aaua','2014',162,'Admin','0000-00-00 00:00:00','2020-07-20 12:46:18'),(227,'The location of iron and steel industry at Ajaokuta in Nigeria is best explained by the presence of ','Limestone and coal  ','Iron ore   ','Bauxite  ','Manganese ','','','b','','post-utme-aaua','2014',180,'Admin','0000-00-00 00:00:00','2020-07-21 17:57:24'),(228,'Settlements can be classified according to all the following except the   ','The arrangements of the building   ','Number of people per settlements   ','Functions  ','The type of people that live in the area   ','','','d','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:03'),(229,'The average hurricane exists, on the average, for about ________. ','one week ','two weeks ','three weeks ','four weeks ','','','d','','post-utme-aaua','2014',191,'Admin','0000-00-00 00:00:00','2020-07-20 13:17:11'),(230,'……...Refers to the nature of the surface of an area and the features that abound therein above the sea level','Barchans ','Relief   ','Plateaux   ','Plain','','','b','','post-utme-aaua','2014',164,'Admin','0000-00-00 00:00:00','2020-07-20 12:55:32'),(231,'Any buoyant parcel of air is said to exhibit ________. ','Instability ','The dry adiabatic lapse rate ','The moist adiabatic lapse rate ','Advection','','','a','','post-utme-aaua','2014',177,'Admin','0000-00-00 00:00:00','2020-07-20 12:40:42'),(232,'The north east and south west trade winds meet along a plane surface where they continuously rub ','Abnormal front  ','Leeward front  ','Intertropical front ','Windward front  ','','','c','','post-utme-aaua','2014',180,'Admin','0000-00-00 00:00:00','2020-07-15 02:27:11'),(233,'________ is the time of day when tornadoes are most likely to occur','Dawn ','Mid-afternoon ','Evening ','Noon ','','','b','','post-utme-aaua','2014',163,'Admin','0000-00-00 00:00:00','2020-07-20 11:52:46'),(234,'Crude oil is ------------  rock mineral   ','An igneous   ','A sedimentary  ','A metamorphic  ','A plutonic  ','','','b','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(235,'The new name of Calicut, a famous city of Kerala is ','Kozhikode','Trivendrum','Kalighat ','Koderma ','','','a','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(236,'An anemometer is used to measure','wind vane','wind direction','wind speed','wind pressure','','','c','','post-utme-aaua','2014',162,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:37');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `government` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=724 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `government` VALUES (1,'In which of the following countries is governmental powers most fused? ','Nigeria ','United States of America ','France ','Canada','','','c','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:12'),(2,'The benefits of separation of powers include the following except ','prevention of tyranny ','check of abuse ','promoting democracy with free and fair election ','avoidance of arbitrariness','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:13'),(3,'Laws made by state   government are known as ','edicts ','bye-law ','acts  ','decrees','','','a','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:14'),(4,'In a parliamentary system of government, the function of the head of state and the head of government are vested in ','the inner cabinet ','an individual ','two different individuals ','the ministerial council','','','c','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:15'),(5,'In a modern democracy, the ultimate source of sovereignty is the ','legislature and executive ','judiciary ','ruling political party ','people','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:16'),(6,'The British took over Nigeria through ','negotiation ','bargaining  ','war ','the sea','','','a','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:17'),(7,'Politics is an act for ','man to govern himself ','man to create governments ','states to control its destiny ','man to dominant others','','','a','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:18'),(8,'A major issue that distinguishes pressure groups from political parties is ','membership drive ','objective ','vomiting pattern ','ideology','','','b','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:19'),(9,'A nation consist of people with ','common history ','common ancestry ','a  shared set of values ','A, B and C above','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:20'),(10,'A totalitarian state is based on  ','multi-party system ','total protection of civic rights ','the totality of the state processes ','coercion as the instrument of government','','','d','','post-utme','2006',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:21'),(11,'A political concept that defines  the beliefs, attitudes and values of a society is called ','political socialization ','political culture ','political transformation ','referendum','','','b','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:22'),(12,'The agent of political socialization generally regarded as the most important is ','family ','peer group','school ','churches and mosques','','','a','','post-utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:23'),(13,'A political ideology that defines a system of societal organization in which the state controls the commanding heights of the economy is called ','Totalitarianism ','Communalism ','socialism ','communism ','','','d','','post-utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-16 09:26:40'),(14,'Which of the following best describes French colonial policy in Africa? ','policy of association ','policy of Casus Belli ','policy hostility ','policy of assimilation','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:25'),(15,'What was the primary purpose of the Sir Henry Willink Commission of Inquiry? ','to approve the independence of Nigeria ','to allay the fears of minorities in Nigeria ','to amalgamate northern and southern  Nigeria ','to make Lagos a British Colony','','','b','','post-utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-16 09:26:40'),(16,'The military coup of July 25, 1975 which toppled General Yakubu Gowon from power  took place when he was attending which important event? ','OAU Summit in Kampala ','UN General Assembly in New York ','Assembly of Heads of states of ECOWAS in Monrovia ','The Olympic Games','','','a','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:27'),(17,'Which of the following political parties did not participate in the 1979 General Elections in Nigeria? ','Unity Party of Nigeria ','National Party of Nigeria ','social Democratic Party ','Great Nigeria People’s Party','','','c','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:28'),(18,'Alhaji Shehu Shagari was sworn in as President of the Federal Republic of Nigeria in 1979 by ',' Justice Fata Williams ','Justice Adetokunbo Ademola ','Justice Salihu Modibbo  Alfa Belgore ','Justice Isa Mohammed','','','b','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:29'),(19,'The electorate is generally  understood to refer to ','elected members of the National- Assembly ','elected members of the state house of assembly  ','candidates who can contest elections ','those citizens qualified to vote at elections','','','d','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:30'),(20,'Into how many local government areas in Nigeria officially delineated? ','654','650','820','774','','','d','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:31'),(21,'The centenary anniversary of the amalgamation of Northern and Southern Nigeria will be celebrated in ','2060','2063','2014','2007','','','c','','post-utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:32'),(22,'Which of these men introduced indirect rule in Nigeria? ','Mungo Park ','Dr. Nnamdi Azikiwe ','Lord Lugard ','Sir James Robertson.','','','c','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:33'),(23,'Democracy was first practiced in ','Ghana ','United States of America ','Greece ','Britain','','','c','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:34'),(24,'Which of these countries has the highest population in West Africa? ','Mauritania','Ghana ','The Gambia ','Nigeria.','','','d','','post-utme','2007',93,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:35'),(25,'This African ruler resisted colonial rule and was later exiled by the colonial  officials ','Alaafin of Oyo ','Oba of Benin ','King Jaja of Opobo','Onisanbo of Ogbooro.','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:36'),(26,'The following countries are settler colonies except  ','Nigeria ','south Africa ','Angola ','Mozambique.','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:37'),(27,'Nigeria gained independence from colonial rule on ','1-Oct-60','November, 1963 ','29-May-99','1-Nov-60','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:38'),(28,'All but one of the following is not a symbol of political culture ','a national flag ','the government ','an anthem ','the constitution.','','','b','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:39'),(29,'All but one of these is not an agency of political socialization ','the constitution ','the family ','peer group ','schools ','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:40'),(30,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives ','propaganda ','lobbying ','assault ','boycott','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:41'),(31,'The following are Anglophone West African countries except ','Ghana ','Nigeria ','Kenya ','The Gambia.','','','c','','post-utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:55'),(32,'A Nigerian who has been the secretary of the Commonwealth of Nations Organizations is ','Dr. Ibrahim Gambari ','Professor Adebayo Adedeji ','Chief Jaja Nwachukwu ','Chief Emeka Anyaoku','','','d','','post-utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:56'),(33,'How many countries are in Africa? ','fifteen ','fifty-three ','fifty','fifty-five','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:57'),(34,'Economic Community of West African States (ECOWAS) was based on the initiative of the heads of state  of these two countries ','Nigeria and Ghana ','Nigeria and Togo ','Senegal and Cote d’lvoire ','B and C above','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:58'),(35,'ECOWAS Treaty was signed on ','28-May-74','1-Oct-60','12-Jun-75','none of the above','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:59'),(36,'In which city was the ECOWAS Treaty signed ','Lagos ','Banjul ','Accra ','Abuja','','','a','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:00'),(37,'A capitalist state is based on ','religion ','creating job opportunities ','dictatorship ','free trade','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:01'),(38,'In politics, power is all of the following except ','capacity to affect the actions of others ','ability to make people do things they otherwise not do ','an object ','it is part of a relationship ','','','c','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:21'),(39,'Every political system performs the following basic functions except ','rule making ','rule transformation ','rule enforcement ','rule adjudication .','','','b','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:22'),(40,'These are common forms of governments except ','federal ','Unitary ','Plural ','confederal','','','c','','post-utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:23'),(41,'In a federal system ','the centre is weak ','plurality is abnormal ','there is nothing like autonomous units ','there is unit in diversity ','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:24'),(42,'The legislature performs the following functions except ','determines  the general direction of public policies ','investigating and monitoring the activities of the officials of government ','exercises power of appointment of government officials ','enforcing the law','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:25'),(43,'The independence constitution of 1960 ','introduced bicameral legislature ','catered for the three  regions of Nigeria ','provided for emergency powers ','provided for fundamental human rights','','','d','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-17 01:24:34'),(44,'Nigeria became a republic in ','1960','1961','1963','1914','','','c','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:27'),(45,'The amalgamation of the northern and southern protectorates and the colony of Lagos was in','1960','1966','1914','1957','','','c','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-16 09:36:50'),(46,'catered for the three  regions of Nigeria ','a renewed concept in international studies ','limited to the west ','a process of making the world  smaller ','an increasing integration of the world.','','','b','','post-utme','2007',101,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:29'),(47,'The French colonial policy of Assimilation  was intended to ','to transfer technology to Africa ','to make Frenchmen out of African ','to produce well educated Africans ','to prepare Africans for the Olympic Games','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:30'),(48,'One of these is not a characteristic  of the state ','selection of political leaders ','a written constitution ','monopoly of the legitimate use of armed force ','sovereignty','','','b','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:31'),(49,'The Economic Community of West African States was established in ','May-75','May-63','May-66','May-96','','','a','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-15 19:31:30'),(50,'Nigeria became a republic on ','29-May-99','1-Oct-60','1-Jan-66','1-Oct-63','','','d','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:34'),(51,'Which of the following is not one of the functions of the modern legislatures? ','making laws  ','collecting taxes ','Ratification of treaties ','Performing oversight functions ','','','c','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:35'),(52,'The European Union (EU) is an ','Economic organization ','Association of former British colonies  ','Organization of European states ','Union  of European  organization','','','c','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:36'),(53,'What was the name of the highest ruling body during General Babangida’s rule?  ','The presidency  ','Armed Forces Ruling Council ','The National Council of states  ',' The Federal  Executive Council','','','b','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:37'),(54,'One of the following is not a specialized agency to the United Nations Organization ','security council ','International Labour Organization ','World Health Organization ','UNESCO','','','a','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:38'),(55,'Under which of the following conditions can a Nigerian be deprived of is or her citizenship? ','If married to a foreign  National ','If one holds a dual citizenship  ','If convicted of Armed robbery ','if one Abuse the National Flag.','','','b','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:39'),(56,'The first indigenous Governor-General of Nigeria is ','Donald Cameron ','Sir James Robertson  ','Sir Adesoji Aderemi  (the  Oni of Ife) ','Rt. Hon. Nnamdi  Aziwe','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:40'),(57,'The Action Group crisis was is in which year? ','1966','1962','1963','1965','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:41'),(58,'Free education was introduced in west region by which of these premiers? ','Chief Obafemi Awolowo ','Chief S.L. Akintola  ','Chief Michael Adekunle Ajasin ','Chief Bola Ige','','','a','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:42'),(59,'What does INEC stand for? ','Independent  National Elections Committee ','Independent  Newspapers executive  Committee ','Independent National Export Council ','independent National Electoral Commission ','','','d','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:43'),(60,'The government of one of the following countries operates an unwritten constitution ','The United States ','The Union of Soviet Socialist Republics ','Post –apartheid  South Africa ','The United Kingdom ','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:44'),(61,'The Oldest written constitution is ','American constitution ','British Constitution ','German constitution ','Roman Constitution ','','','a','','post-utme','2008',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:45'),(62,'The EFCC was established to ','Arrest and try corrupt politicians ','Combat economic and financial crimes in Nigeria ','Arrest, detain and prosecute corrupt state governors and legislators  ','Assist the World Bank in monitoring economic projects in Nigeria.','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:46'),(63,'The four British colonial territories in West Africa were ','Senegal, Ghana, Sierra Leone and Nigeria ','Nigeria, Ghana, Sierra Leone and Gambia ','Nigeria, Ghana, Togo and Gambia ','Gambia, Guinea, Ghana and Gabon','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:47'),(64,'In many countries, citizenship can be acquired through the following processes except ','nationalization ','naturalization ','registration ','birth','','','a','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:48'),(65,'Which of the following does not describe a party system? ','one dominant party system  ','two party system','three party system ','multi party system','','','c','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:49'),(66,'ECOMOG was set up primarily to ','drive away the Europeans from West Africa ','serve as a peace keeping force for ECOWAS ','help  Nigeria to control Africa  ','promote rapid economic development among ECOWAS members','','','b','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:50'),(67,'The principle since independence include the following except ','peaceful coexistence ','legal  equality of state ','political dependence ','Non- alignment','','','c','','post-utme','2008',98,'Admin','0000-00-00 00:00:00','2020-07-22 00:08:18'),(68,'The body charged with the trial of persons accused of crimes  against humanity is ','criminal Court of Justice ','International Criminal Court ','International Court of Justice ','ICPC','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:53'),(69,'The independence of the judiciary can be enhance by the following except ','when judges hold office for a fixed term ','when judges cannot be removed from offence even whey they commit crimes ','appointment of judges by and independent body','political neutrality of judges','','','b','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:54'),(70,'Which of the following is not  a feature of Nigeria’s electoral system? ','direct election ','proportional representation ','general election  ','secret ballot','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:55'),(71,'Laws made by local governments are called ','Acts of Parliament ','Local Government Acts ','Bye-laws ','Local Government Decrees','','','c','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:57'),(72,'In the pre-colonial era, which of the following was not a feature of the emirate administration? ','Madawakin ','Waziri ','Sarkin Dogari ','Sarkin Emir','','','d','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:58'),(73,'Federalism was introduced in Nigeria by the ','Lyttleton Constitution ','Clifford constitution ','Macpheson constitution ','1999 constitution.','','','a','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:59'),(74,'Traditional rulers were restricted to ceremonial rules by the local  government  reforms of ','1966','1976','1984','1987','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-19 15:49:14'),(75,'In a parliamentary system, who ensures that members are in the house to vote on major issues? ','party leaders ','speaker of  the house ','clerk of the house  ','whip','','','d','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:02'),(76,'A system in which no single person serves as the chief executive  is know as ','republican ','Revolutionary  ','Collegial  ','Parliamentary ','','','d','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(77,'A social system in which power is derived  from control over land is called ','Oligarchy  ','Feudalisms ','Socialism ','Welfarism ','','','b','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:05'),(78,'“Rule of law” refers to situations in which ','Lawyers are the rulers  ','Laws are supreme ','the judiciary is independent ','parliament makes laws ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:05'),(79,'An important principle of the civil service is ','Authoritarianism  ','Anonymity ','Repotism  ','partisanship.','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:06'),(80,'Which of these constitutions recognized local government is the third tier of government? ','The 1946 constitution ','The 1960 constitution','The  1963 constitution ','the 1979 constitution.','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(81,'A condition for judicial indolence is the appointment of judges by the  ','civil service commission ','judicial service commission ','low review constitution ',' code of conduct Bureau','','','b','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:08'),(82,'The minorities  Commission appointed in Nigeria in 1957 recommended that ','More states should be create in the federation ','No more states should created before independence ','Nigeria should revert to a unitary structure ','The legislature  should legislature should legislature for the minority areas ','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:09'),(83,'The second military coup data in Nigeria took place on ','15-Jan-66','1-Oct-66','29-Jul-66','13-Feb-76','','','c','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:10'),(84,'One of these was in existence  before the outbreak of the Second World War ','The OAU  ','League of Nations ','The UNOD  ','The Commonwealth of nations ','','','b','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:11'),(85,'In important advantage of creating more constituents in a federal state is to ','Enhance the people’s participation in government ','Enable ambitions politicians gain political power ','Make the states gain more power from the federal government ','curb the excesses of the federal government','','','a','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:12'),(86,'Under the Presidential system ','The party with the majority of seat forms the executive ','there is the principles of collective responsibility ','the president may come from any of the parties ','the states take instructions from the federal government','','','c','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:13'),(87,'Public opinion is important because it ','Tells government what action it must take ','Lets government know what the people want ','Allows police to manage crisis ','Mothers the minorities in resource learn areas ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:14'),(88,'Bicameral legislature exists ','where two cameras are used to monitor court proceedings ','To prevent the concentration of power on legislative house ','To provide jobs for more politicians ','to ensure that just laws are passed.','','','d','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:16'),(89,'Africans were first elected to the legislature council in British West African ','Ghana ','Sierra Leone ','The Gambia ','Nigeria','','','d','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:17'),(90,'One of the functions of the ministry of External Affairs is the ','Deportation of illegal aliens ','Issuance of passports ','Defense of the country’s boarders ','Promotion of national interest','','','d','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:18'),(91,'The leader of the northern people’s congress was ','Yakubu Maitama Sule ','Abubakar Tafawa Balewa ','Aminu Kano ','Ahmadu Bello','','','d','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:19'),(92,'The idea of democracy started with the ','Romans ','Pensions ','Greeks ','Egyptians','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:20'),(93,'In the Marxist theory, those who live by selling, their labour are called ','Bourgeoisie ','Proletariat ','Feudal lords ','Slaves','','','b','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:22'),(94,'Which of the following NOT an acceptable means of achieving democracy? ','Referendums ','Recall ','Initiative ','Riots','','','d','','post-utme','2009',104,'Admin','0000-00-00 00:00:00','2020-07-21 15:48:50'),(95,'The branch of government responsible for implementing laws is the ','executive ','Legislature ','Judiciary ','Police ','','','a','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:24'),(96,'In a democracy, sovereignty is vested in ','The community ','Public officials ','judges  ','the head of state ','','','a','','post-utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:25'),(97,'Universal Adult Suffrage means all ','Adult citizens can vote ','citizens vote ','Qualified citizens  can vote ','Literate citizens can vote ','','','a','','post-utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:27'),(98,'A bill that applies to the whole population and is intended to promote the general welfare is called ','A private bill ','a decree ','an appropriation bill ','a public deal ','','','d','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:28'),(99,'The Arthur Richards Constitution was designed to last ','nine years  ','five years ','twelve years  ','six year','','','a','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:29'),(100,'Under the 1963 Republican constitution the president exercise ','judicial powers  ','executive powers  ','nominal powers ','concurrent powers','','','c','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:30'),(101,'The Clifford Constitution was notable for ','amalgamating the Northern and southern provinces ','introducing indirect rule ','establishing the legislature  council ','creating a Northern majority in the legislature council.','','','c','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:31'),(102,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as ','exclusive ','extra-ordinary  ','residual  ','concurrent','','','d','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:32'),(103,'During the period 1960-1966, Nigerian was governed under the ','presidential system of government ','Westminster system of government ','confederal system of government ','Unitary system of government.','','','b','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(104,'Which of the following in the Sokoto Caliphate performed functions similar to that of the Bashorun in Oyo Kingdom? ','Waziri ','Galadima ','Ma’aji  ','Alkali  ','','','a','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:34'),(105,'In the Igbo political system, the most senior  member of the council of elders is the ','Okpara  ',' Obi  ',' Eze  ',' Ofo','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:35'),(106,'A non-monarchial state can best be described as a ','republic ','confederation ','nation ','federation ','','','a','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:36'),(107,'Proportional representation favours a ','multi-party system ','three party system ','two-party system ','one party system ','','','a','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:55:56'),(108,'One major factor that differentiates the presidential from the parliamentary system is  ','separation of the powers ','judicial independence  ','passage of bills ','party system','','','a','','post-utme','2010',96,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:38'),(109,'A state with a hegemonic party is one in which ','there is one dominant party ','there is no opposition party  ','there is only one party  ','other parties are officially recognized.','','','a','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:39'),(110,'In the First Republic, Politics in Northern Nigeria was dominated by: ','NEPU ','UMBC ','NCNC ','NPC','','','d','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:40'),(111,'The creation of classless society is the ultimate aim of ','communism ','socialism  ','fascism ','capitalism.','','','a','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:41'),(112,'Herbert Macaulay was the first president of ','NCNC ',' AG  ','UMBC ','NEPU','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:42'),(113,'A special election organized to decide on a political issue is known as ','plebiscite ','by-election  ','general election ','primary election.','','','a','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:43'),(114,'Equality before the law is a component of: ','separation of powers ','checks and balances ','the rule of law  ','constitutional law','','','c','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:44'),(115,'In the process of implementing laws, the executive sometimes performs: ','judicial function ','bureaucratic function ','oversight function ','legislative function','','','a','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:45'),(116,'Which of the these was the main organ of the defunct OAU? ','The liberation committee ','The Council of Ministers  ','The commission for Mediation, Conciliation and Arbitration ','the Assembly of Heads of the state and Government.','','','d','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:47'),(117,'Nigeria hosted the commonwealth conference which eventually led to the independence of ','Mozambique ','Namibia  ','Zimbabwe ','Malawi','','','b','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:47'),(118,'Multilaterism in Nigeria’s foreign policy entails ','Africa being the centre piece of Nigeria’s foreign policy ','Non aligned posture in international affairs ',' Quest   for a permanent membership  of the UN security Council ','Membership of International Organizations','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:49'),(119,'The ancient Greeks practiced: ','direct democracy ','representative democracy ','liberal democracy ','benevolent dictatorships','','','a','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:50'),(120,'Fascism originated from ','Greece ','Italy  ','China  ','Germany','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:50'),(121,'According to Karl Marx, the mode of production that precedes capitalism is ','mercantilism ','feudalism ','socialism ','communalism','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:51'),(122,'One of the distinctive features of a democracy is that it ','Connotes civil rule ','facilitates popular participation ','provides for a unicameral legislature ','is not associated with one party state.','','','d','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:52'),(123,'Serfs are the dominated class under ','capitalisms ','socialism ','fascism ','feudalism ','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:59'),(124,'A human community that is usually cohesive and homogeneous is ','state ','kinship','clan','Nation.','','','d','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:01'),(125,'Which of the following made the earliest contact with the Nigerian society? ','The British  ','The Portuguese ','The French ','The Germans','','','b','','post-utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:02'),(126,'Under the 1963 Republican Constitution, the president exercised ','Judicial powers ','executive powers ','nominal powers ','concurrent powers.','','','c','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:04'),(127,'The principle of federal character was first enunciated in the: ','1989 constitution ','1963 constitution','1999 constitution ','1979 constitution','','','d','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:05'),(128,'Between 1960 and 1966, Nigeria was governed under the  ','presidential system of government ','Westminster system of government ','confederal system of government ','unitary system of government.','','','b','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:06'),(129,'One major factor that differentiates the presidential from the parliamentary system is: ','separation of powers','judicial independence ','passage of bills  ','party system.','','','a','','post-utme','2011',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:08'),(130,'A major feature of the policy of deregulation in Nigeria is the: ','enthronement of market forces mechanism ','increasing dominance of the economy by the state ','proliferations of public corporations ','phenomenal increase in direct foreign investment','','','a','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:09'),(131,'Bicameral legislature exists: ','where cameramen are allowed to cover the proceedings of the legislature ','to prevent the concentration of power in one legislative house ','to provide jobs for more politicians ','to ensure that just laws are passed','','','d','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:10'),(132,'A major issue that distinguishes pressure groups from political parties is: ','membership drive  ','the objective','the voting pattern ','the ideology','','','b','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:11'),(133,'Equality before the law is a component of: ','separation of powers','checks and balances ','the rule of law','constitutional law.','','','c','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:12'),(134,'A law passed by the legislature and assented to by the executive is: ','an act','a presidential proclamation ','a decree   ','a legislative order','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:13'),(135,'The principle of checks and balances empowers the judiciary to: ','invalidate the actions of the other arms ','administer the criminal justice system ','abrogate the law','apply the law','','','a','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:15'),(136,'In a parliamentary, the term shadow cabinet is often used to refer to the: ','back benchers in the house ','deputy prime ministers and assistant ministers ','rebellious members of the ruling party ','portfolio designates of the party in opposition.','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:16'),(137,'The fundamental assumption on which the idea of the rule of law is based is: ','supremacy of the constitution','rationality of human beings ','equality of human beings','love for social justice.','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:17'),(138,'Associations whose main interest is to influence public policies without attempting to capture state power are: ','communal groups','trade unions  ','political parties','pressure groups ','','','d','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:18'),(139,'Multilaterism in Nigeria’s foreign policy entails: ','Africa being the centre piece of Nigeria’s foreign policy ','Non-aligned posture in international affairs ','Quest for a permanent membership of the UN Security Council ','Membership of International Organizations','','','d','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:19'),(140,'The set of policies on the basis of which countries interact with one another is called: ','Diplomacy','Foreign policy ','National policy ','International relations.','','','b','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:20'),(141,'After the defeat of Germany in World War 1, her former colonies were administered under the League of Nations as: ','occupied territories ','trust territories  ','crown colonies ','protectorates.','','','b','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:22'),(142,'The Nigeria-Cameroon crisis over Bakaasi peninsula occurred owning to the interpretation of the Treaty of 1913 and the:','resolution of the OAU ','Maroua Accord','decision of the ECOWAS Tribunal ','decision of the International Court of Justice ','','','b','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:23'),(143,'The first Nigeria leader to become chairman of the Organization of African Unity was:  ','Tafawa Balewa','Murtala Mohammed','Yakubu Gowon  ','Aguiyi-Ironsi','','','c','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:24'),(144,'Nigeria’s non-aligned policy was criticized because of the: ','ECOWAS Treaty ','Nuclear Test Ban Treaty  ','Anglo-Nigerian Pact ','Non-Proliferation Treaty ','','','c','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:25'),(145,'Fascism originated from: ','Greece','Italy ','China ','Germany ','','','b','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:26'),(146,'Diarchy refers to the: ','rule by the government and the opposition parties ','mixture of parliamentary and presidential systems ','rule by political and economic elites ','rule by the military and civilians.','','','c','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:27'),(147,'A major flaw in liberal democracy is: ','the limitation of the freedom of expression ','its emphasis on political rights over economic rights ','that it promotes political instability ','its emphasis on collective ownership.','','','b','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:27'),(148,'Under military regimes in Nigeria, the branches of government that were fused are: ','executive and the legislature','executive and the judiciary ','legislature and the judiciary ','executive, the legislative and the judiciary ','','','a','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-15 19:31:30'),(149,'Which of the following does not described a party system? ','one dominant party system  ','two party system  ','three party system  ','multi-party system','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:30'),(150,'Laws made by local governments are called  ','Acts of Parliament ','Local Government Acts ','Bye-laws  ','Local Government Decrees ','','','b','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:31'),(151,'The commission established to handle the electoral activities in the Second Republic of Nigeria was ','National Electoral Commission  ','National Electoral Commission of Nigeria  ','Federal Electoral Commission  ','Independent National Electoral Commission','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:32'),(152,'The principle of checks and balances modifies the theory of  ','Rule of law ','Supremacy of law  ','Separation of powers  ','Delegated Legislation ','','','c','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:33'),(153,'The European Union (EU) is an  ','Economic organization  ','Association of former British Colonies ','Organization of European States ','Union European organization ','','','c','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:39'),(154,'In Nigeria, promotion of judges is the responsibility of the ','Chief Justice of the Federation  ','Judicial Service Commission  ','Council of Legal Education  ','Attorney-General and Minister of Justice ','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:41'),(155,'The Legislature in Nigeria under the 1999 constitution is composed  ','109 senators and 360 members of the House of Representative  ','109 senators and 350 members of the House of Representative  ','108 senators and 350 members of the House of Representative  ','100 senators and 250 members of the House of the Representative ','','','a','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:42'),(156,'Under a parliamentary system of government, the cabinet holds office at the pleasure of the ','head state ','electorate  ','legislature  ','opposition ','','','c','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-16 09:26:40'),(157,'The ultimate authority in a State is referred to as  ','president  ','sovereignty ','legislature  ','legitimacy ','','','b','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:44'),(158,'The most important aspect of political participation in a democracy is  ','attending political rallies  ','voting in elections  ','registration with a political party  ','the observance of electoral processes ','','','b','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:45'),(159,'One of the foremost theorists of federalism was A. ','A.V Dicey  ','B. K.C Wheare ','C. Karl Marx  ','Baron de Montesquieu ','','','b','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:46'),(160,'The judicial organ of the United Nations is the  ','security council  ','European court  ','general assembly  ','International court of Justice  ','','','d','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:47'),(161,'The Universal Negro Improvement Association was founded by  ','Casely Hayford  ','Herber Macauly  ','Marcus Garvey  ','W.E.B. Du Bois','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:48'),(162,'The Chick’s Commission in Nigeria was set up to look into  ','state’s creation  ','revenue allocation  ','minorities issues  ','extra-judicial killings','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:49'),(163,'Nigeria observed the principal of collective responsibility between  ','1960 and 1966 ','1979 and 1983  ','1985 and 1993 ','1999 and 2003','','','a','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:50'),(164,'The method used to determine the possible outcome of an electoral contest is ','conduct of elections into local government offices  ','registration of political party  ','conduct of gubernatorial elections  ','delineation of electoral constituencies ','','','a','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:51'),(165,'The principle of checks and balances empowers the judiciary to  ','apply the law  ','administer the criminal justice system  ','abrogate the law  ','invalidate the actions of the other arms ','','','d','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:52'),(166,'The final stage in the process of enacting legislation is  ','assent  ','final reading  ','notification  ','guillotine  ','','','a','','post-utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(167,'Every political system performs the following basic functions excepts  ','Rule making  ','Rule transformation  ','Rule enforcement  ','Rule adjudication ','','','b','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:54'),(168,'Globalization is all but one of these ','A renewed concepts in international studies  ','Limitation to the domination of the West  ','A process of making the world smaller  ','An increasing integration of the world ','','','c','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:55'),(169,'A major factor that differentiates International politics from domestic politics is that International politics ','has no centralized institution of government ','cannot enforce sanctions  ','has centralized organs of administration  ','has a central law making body','','','a','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:57'),(170,'Globalization encompasses all the following except  ','market integration  ','internationalization of politics  ','technology improvement  ','economic liberalism ','','','d','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:58'),(171,'The ten non-permanent members of the security council are elected by the  ','general assembly ','trusteeship council  ','security council  ','economic and social council ','','','a','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:59'),(172,'Under the independence constitution of Nigeria, Dr. Nnamdi Azikwe was  ','Prime Minister ','Governor General  ','Lieutenant – Government ','Head of State','','','b','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:00'),(173,'Which organ is referred to as ‘the last hope’ of the common man  ','the parliament   ','the judiciary  ','the executive  ','the legislature','','','b','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-22 00:08:18'),(174,'What does INEC stand for?','Independent National Election Committee  ','Independent Newspapers Executive Committee  ','Independent National Export Council  ','Independent National Electoral Commission','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:02'),(175,'Which of the following is not a feature of Nigeria’s electoral system?  ','direct election   ','general election  ','Proportional representation  ','secret ballot','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:03'),(176,'The head of the Nigerian judiciary is the','Chief Justice of the Federation','Solicitor-General of the Federation  ','Attorney-General and Minister of Justice  ','President of the Court of Appeal','','','a','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:04'),(177,'Manipulation of electoral boundaries for electoral purposes is known as  ','delimitation   ','gerrymandering','devolution   ','deconcentration','','','b','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:05'),(178,'A mechanism used in parliament to limit debate is called  ','guillotine','adjournment   ','Motion of censor   ','delimitation','','','a','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:07'),(179,'A major function of the State Independent Electoral Commissions in Nigeria is the  ','Conduct of elections into local government offices  ','registration of political parties','conduct of gubernatorial elections','delineation of electoral constituencies','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:08'),(180,'In politics, power is all of the following except  ','capacity to affect the actions of others  ','Ability to make people do things they otherwise would not do   ','An object   ','it is part of a relationship','','','c','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:08'),(181,'Political activity at the diplomatic level is called  ','International relations','International law','International politics','All of the above','','','d','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:10'),(182,'Which of these is not an instrument of foreign policy','war    ','diplomacy  ','subversion   ','foreign aid','','','d','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:11'),(183,'The principles that have guided Nigeria’s foreign policy since independence include the following except  ','peaceful coexistence   ','political dependence  ','legal equality of states  ','non-alignment','','','b','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:12'),(184,'The independence  of the judiciary can be enhanced by the following except  ','when judges hold office for a fixed term','when judges cannot be removed from office even when they commit crimes','Appointment of judges by an independent body','political neutrality of judges','','','b','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:13'),(185,'The Aba women riot in Nigeria took place in   ','1960','1950','1922','1929','','','d','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-17 01:24:34'),(186,'The pressure group that resorts to unconventional methods to achieve its objectives is called ',' an institutional group  ',' a promotional group',' an interest group   ',' an anomic group','','','d','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:15'),(187,'All but one of the following is not a symbol of political culture','A national flag','The government   ','An anthem  ','The constitution','','','b','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:16'),(188,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives',' propaganda','Lobbying  ','Assault',' Boycott','','','c','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:17'),(189,'A capitalist state is based on','religion   ','creating job  opportunities  ','Dictatorship   ','Free trade','','','d','','post-utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:18'),(190,'A major flaw in a liberal democracy is','that it promotes political instability','the limitation of the freedom of expression','its emphasis on political rights over economic rights','its emphasis on collection ownership','','','c','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:19'),(191,'Nigeria’s voting at the United Nations is guided primarily by','her national interests   ','world peace   ','the cold war  ','her concern for Africa','','','a','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:20'),(192,'On the basis of its structure, a political party can be classified an indirect if','it controls government indirectly  ','it contests elections by proxy','its membership is acquired through other groups  ','it campaigns for votes through agents.','','','c','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:21'),(193,'The study of government essentially facilitates the understanding of the','governance of human societies','functioning of the entire social formation  ','observance of fundamental human rights','organization of the executive arm of government','','','a','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:22'),(194,'In judicial administration, the term ‘the bench’ refers to the  ','lawyers   ','litigants    ','registrars','judges','','','d','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:23'),(195,'How does the president relieve a minister of his appointment in a presidential system of government?','In consultation with the legislature','In consultation with the judiciary  ','by executive action','after serving a full tenure','','','c','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:24'),(196,'An elected legislator in a presidential system can lose his seat through  ','recall  ','cross-carpeting','a vote of no confidence','impeachment','','','a','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:25'),(197,'Which of the following modern principles of democracy is found in the Yoruba traditional political system  ','checks and balances  ','the constitution','multipartism  ','bicameralism','','','a','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:26'),(198,'The subject matter of politics is best described  as   ','political parties','political power  ','elections','people','','','b','','post-utme','2013',97,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:27'),(199,'Government as an institution of a state can best be defined as a body that','recruits and trains political leaders','settles disputes and interprets laws for the state.','Legislates, executes and interprets laws for the state.','conducts elections for the state.','','','c','','wassce','2000',62,'Admin','2016-11-13 16:14:19','2020-07-14 15:09:28'),(200,'Political authority is the','legitimate right to exercise political power.','ability to control political behaviour.','right to participate in political campaigns.','right to form political parties.','','','a','','wassce','2000',64,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:30'),(201,'The rule of law refers to the principle of','legality and impartiality','the supreme power of rulers.','the immunity of judges from legal actions.','the orderly execution of government policies.','','','a','','wassce','2000',58,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:31'),(202,'Freedom of speech is a fundamental human right enjoyed by citizens but it may be limited if','loyalty is not shown to the ruling party','it exposes the wrong doings of the government','it endangers the security of the state.','it is used to cause embarrassment to the judiciary.','','','c','','wassce','2000',66,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:32'),(203,'Which of the following is an obligation of a citizen?','Attending political rallies','Taking part in Independence Day celebrations','Contesting elections','Paying respect to the national flag.','','','d','','wassce','2000',58,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:33'),(204,'The extent to which the citizens regard the institutions, officials and activities of government as right and acceptable is known as','power','legitimacy','influence','authority.','','','b','','wassce','2000',53,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:34'),(205,'Diplomatic immunity is a limitation to','the theory of separation of powers.','principles of checks and balances.','parliamentary supremacy.','the rule of law','','','d','','wassce','2000',54,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:35'),(206,'A federal state is always expensive to run because','every parliamentarian wants to become rich','government departments are duplicated','judges are highly paid from the consolidated fund.','maintenance of the army involves high expenditure.','','','b','','wassce','2000',77,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:36'),(207,'In which of the following party systems are all shades of opinions and interests adequately represented?','Zero-party','One-party','Two-party','Multi-party','','','d','','wassce','2000',61,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:37'),(208,'Veto power in a presidential system lies with the','Attorney General','Chief of Army Staff','Executive President','Prime Minister.','','','c','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:38'),(209,'Which of the following is the lowest class of people in the hierarchy of a feudal system?','Nobles','Serfs','Lords','Manor.','','','b','','wassce','2000',55,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:39'),(210,'Mussolini’s fascism and Hitler’s Nazism are good examples of','anarchy','feudalism','totalitarianism','oligarchy','','','c','','wassce','2000',53,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:40'),(211,'Which of the following is supreme in a federal system?','Judiciary','legislature','Constitution','Executive.','','','c','','wassce','2000',71,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:41'),(212,'An order directing a detainee to be brought before the court is called','habeas corpus','an appearance','an injunction','a referendum','','','a','','wassce','2000',61,'Admin','2016-11-13 16:14:23','2020-07-22 00:06:56'),(213,'Which of the following is a feature of an elite party?','Members are recruited from the working class.','The leadership is composed of aristocrats and wealthy merchants.','It usually consists of existing associations, clubs and trade unions.','Its leadership has certain techniques which attract supporters.','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:43'),(214,'All undesirable feature of capitalism is','exploitation','market economy','profit motive','free competition','','','a','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:44'),(215,'The system of voting on behalf of another person is known as','voting by lot','casting votes.','voting by proxy','preference voting','','','c','','wassce','2000',68,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:45'),(216,'Authoritarianism is least Inherent in','feudalism','fascism','democracy','monarchy','','','c','','wassce','2000',95,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:46'),(217,'In which of the following systems of government are ceremonial and executive powers usually fused?','Parliamentary','Presidential','Collegial','Confederal.','','','b','','wassce','2000',69,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:47'),(218,'The programme of a political party is known as its','constitution','document','manifesto','propaganda','','','c','','wassce','2000',73,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:48'),(219,'Which of the following is a source of a country’s constitution','Mandamus','Judicial precedents','Injunctions','Political decisions','','','b','','wassce','2000',72,'Admin','2016-11-13 16:14:23','2020-07-17 15:18:54'),(220,'The acquisition of political power through hereditary means is a feature of','Communalism','Capitalism','Oligarchy','Monarch','','','d','','wassce','2000',51,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:50'),(221,'Which of the following factors limits the expression of public opinion?','The type of government in a state','The establishment of private media organizations.','The high literacy rate of the citizens','Religious belief of the citizens.','','','a','','wassce','2000',51,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:51'),(222,'If the federal government and the unit governments are to \tpreserve their autonomy, the','Federal government must be supreme','Unit governments must be supreme','Judiciary must be supreme','Constitution must be supreme','','','d','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:52'),(223,'Which of the following best describes the relationship between the central and the component government in a confederation?','The central government collects revenue for component government','The central and component governments have equal powers','The central government legislates for the component governments.','The central government is weaker than the component government.','','','d','','wassce','2000',64,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:53'),(224,'The administrative head of a public corporation in Nigeria is the','Managing Directors','Secretary','Board of Directors','Chairman','','','a','','wassce','2000',59,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:54'),(225,'The appointment, promotion and discipline of civil servants are the responsibility of the','Civil Service Union','Judicial Service Commission','Civil Service Commission','Electoral Commission.','','','c','','wassce','2000',58,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:55'),(226,'Red tapism in the civil service refers to','The use of red tapes on legal documents.','Sloness of action','Prevent entrance','the co-operation between civil servant s and politicians','','','b','','wassce','2000',81,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:56'),(227,'The grant of the right to vote is called','enfranchisement','disqualification','prohibition','participation','','','a','','wassce','2000',67,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:57'),(228,'The system which allows private individuals and companies to own and control the means of production is known as','socialism','fascism','capitalism','communism','','','c','','wassce','2000',65,'Admin','2016-11-13 16:14:24','2020-07-14 15:09:58'),(229,'Which of the following factors may work against a representative system of government?','High literacy of the electorate','The introduction of universal adult suffrage','Independent electoral commission','Rigging of elections','','','d','','wassce','2000',74,'Admin','2016-11-13 16:14:24','2020-07-14 15:09:59'),(230,'The powers allocated to the central government in a federation are contained in the','central legislative list','exclusive legislative list','residual legislative list','concurrent legislative list.','','','b','','wassce','2000',63,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:00'),(231,'The Nigerian federal legislature is called the','Senate','Congress','National Assembly','House of Representatives','','','c','','wassce','2000',70,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:01'),(232,'Delegated legislation has the advantage of','enlightening the public about law making procedure','saving parliamentary time','reducing the expenses of the legislature','preventing the executive from becoming too powerful.','','','b','','wassce','2000',67,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:02'),(233,'Nigeria’s first constitution was the','Lyttleton Constitution','Clifford Constitution','Macpherson constitution','Independence Constitution','','','b','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:03'),(234,'The Nigerian Macpherson Constitution of 1951 was significant for','the introduction of Electoral College','providing for the office of the Prime Minister','the creation of states.','establishing the Supreme Court','','','a','','wassce','2000',68,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:04'),(235,'The concept of regionalism in Nigeria was first introduced by the','Independence Constitution','Macpherson Constitution','Richard’s Constitution','Lyttleton Constitution','','','c','','wassce','2000',71,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:05'),(236,'Immediately after the Nigerian Civil War, Gowon’s regime embarked on','rejuvenation, resettlement and reconstruction','reconciliation, rehabilitation and reconstruction','rebuilding, rejuvenation and rehabilitation','rehabilitation, renaissance and repression.','','','b','','wassce','2000',72,'Admin','2016-11-13 16:14:24','2020-07-22 00:06:56'),(237,'Which of the following military regimes in Nigeria played a prominent role in the liberation of colonized African states?','Aguiyi Ironsi','Murtala / Obasanjo','Muhammadu Buhari','Ibrahim Babangida','','','b','','wassce','2000',68,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:07'),(238,'Traditional rulers appointed by the British to implement indirect rule in Eastern Nigeria were called','palace chiefs','village chiefs','warrant chiefs','crown chiefs','','','c','','wassce','2000',62,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:08'),(239,'The bill introduced by a member of the legislature is known as','a-private member’s bill','an executive bill','a state bill','a political party’s bill','','','a','','wassce','2000',75,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:09'),(240,'In the federation of Nigeria, states are equally represented in the','Senate','House of Representatives','Judiciary','National Population Commission','','','a','','wassce','2000',66,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:10'),(241,'In pre-colonial Igboland, administrative meetings were presided over by the','Mazi','Ogbuefi','Ozo title holder','Okpara','','','c','','wassce','2000',55,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:11'),(242,'Checks and balances was a feature of pre-colonial political administration of the','Hausa','Yoruba','1gbo','Fulani','','','b','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:12'),(243,'Which of the following groups had the best egalitarian traditional political system?','Hausa/Fulani','Yoruba','lgbo','Edo','','','c','','wassce','2000',89,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:14'),(244,'In the pre-colonial Hausa/Fulani system, the appointment of an Emir in the Caliphate was approved by the','Sardauna of Sokoto and the Alkali','Galadima and the Waziri','Shehu of Bomo and the Galadima','Sultan of Sokoto and the Emir of Gwandu','','','d','','wassce','2000',72,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:15'),(245,'The French policy of Assimilation in West Africa was a form of','indirect rule','direct rule','democratic rule','monarchy','','','b','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:16'),(246,'One of the problems facing the Economic Community of West African States (ECOWAS) is that','member states do not attend meetings regularly','member states do not have a common currency','some members states want to contribute larger funds to the community','it is a rival to the Organization of African Unity','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:17'),(247,'The world organization which existed before the United Nations Organization was the','League of Nations','European Economic Community','Organization of African Unity','Commonwealth of Nations.','','','a','','wassce','2000',77,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:18'),(248,'Which of the following bodies is the most representative organ of the United Nations organization (UNO)?','The Economic and Social Council','The Trusteeship Council','The Security Council','The General Assembly.','','','d','','wassce','2000',71,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:19'),(249,'Which of the following is NOT a feature of a state?','Government','Nationality','Sovereignty','Territory','','','b','','neco','2013',83,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:20'),(250,'The legitimacy of government is established when','civil service commission reflects federal character','electoral commission is well funded','free and fair elections are conducted','ministers are appointed to head ministries','','','c','','neco','2013',86,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:23'),(251,'The United Nations Organization (UNO) was founded in','1919','1935','1939','1945','','','d','','neco','2013',71,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:24'),(252,'Which of these best defines a state? A/An','country made up of heterogeneous people','.\\ncountry with definite territory free from external control.','independent country free from external control.','organized body of people occupying a definite territory with sovereign government.','','','b','','neco','2013',88,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:25'),(253,'To ensure impartiality and independence of electoral commission, the body should be','funded by political parties','headed by a justice of the Supreme Court','headed by a professor of political science','independent of government control','','','d','','neco','2013',75,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:26'),(254,'The term ‘collective responsibility’ is an indispensable feature of ___ system of government.','diarchy','federal','parliamentary','presidential','','','c','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:27'),(255,'The Chick’s commission was set up to look into the issue of revenue allocation in','1946','1951','1953','1957','','','c','','neco','2013',94,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:29'),(256,'In the Igbo pre-colonial administration, the council of elders was normally presided over by','Eze','Obi','Okpara','Onowu','','','c','','neco','2013',76,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:30'),(257,'In Nigeria, the head of the electoral commission is called the','Administrative Secretary','Chairman','Electoral Commissioner','Presiding Officer','','','b','','neco','2013',91,'Admin','2016-11-13 16:50:51','2020-07-17 15:18:54'),(258,'Authority is the','ability to compel others to do what they do not want','ability to delegate power to other bodies','ability to rule without fear or favour','capacity to encourage others to do what they intended doing','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:31'),(259,'The Economic Community of West African States (ECOWAS) was formed on','28th May, 1975','29th May, 1976','28th June, 1975','28th July, 1975','','','a','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:32'),(260,'Revenue allocation means the sharing of the','national cake among the people','wealth of a nation among different levels of government','wealth of a nation among the state governments for specific purposes','wealth of a nation between the federal and local governments','','','b','','neco','2013',61,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:33'),(261,'The first military intervention in Nigeria politics was in','1960','1962.','1963','1966','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:34'),(262,'To contest an election, a candidate must be a member of a','campaign organization.','civil society organization.','national assembly','political party.','','','d','','neco','2013',90,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:35'),(263,'Military rule is an example of ______ authority.','charismatic','coercive','delegated','legal','','','b','','neco','2013',73,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:36'),(264,'Which of these countries is NOT a member of Economic Community of West African States (ECOWAS).','Cameroon','Cape Verde','Ghana','Guinea','','','a','','neco','2013',77,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:37'),(265,'Who among the following was NOT an officer in the pre-colonial Yoruba society?','Aremo','Are-Onakakanfo','Balogun','Oluwo','','','d','','neco','2013',76,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:38'),(266,'The 1957 commission of enquiry which investigated the problems of ethnic domination in Nigeria was chaired by','Arthur Richard.','Frederick Lugard.','Henry Willink.','Hicks Phillipon','','','c','','neco','2013',68,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:40'),(267,'Which of these groups of people had no right to make law under the pre-colonial Igbo political structure?','Age grades','Council of Elders','Osu','Priests','','','c','','neco','2013',100,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:41'),(268,'21.\tIn a parliamentary system of government a general election is usually conducted after','dissolution of parliament.','plebiscite.','referendum.','resolution.','','','a','','neco','2013',86,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:42'),(269,'A nation is made up of people who share','heterogeneous characteristics.','homogeneous and heterogeneous characteristics.','homogeneous characteristics.','same government only.','','','a','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:43'),(270,'The Commonwealth of Nations consists of states formerly under ___colony.','Belgium','British','French','Portuguese','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:44'),(271,'Which of these is a feature of Nigeria federalism?','Conflict of authority does not arise','Minority groups are equally benefited','Parliamentary supremacy','Secession is constitutionally forbidden','','','b','','neco','2013',64,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:45'),(272,'Under the 1979 Nigeria constitution, the national assembly was made up of the','House of Chiefs and the Senate.','House of Lords and the House of Representatives.','Lower House and House of Representatives.','Senate and House of Representatives.','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:46'),(273,'','In a single member constituency the voters in that constituency have the right to','declare a winner of an election in their constituency','.\\nelect many representatives.','elect one representative.','','','a','','neco','2013',80,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:47'),(274,'Before the British colonialism in Nigeria, which of these was an instrument for dispensation of justice in !gbo land?','Cult','Land','Masquerade','Ofo','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:48'),(275,'The special box prepared by the electoral commission into which voters cast their votes is called','ballot box.','ballot paper.','logo.','polling booth.','','','a','','neco','2013',70,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:49'),(276,'An electoral officer charged with the responsibility of announcing election result at the local government level is known as','administrative secretary.','chairman.','polling clerk','presiding officer','','','d','','neco','2013',69,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:50'),(277,'The idea of federalism in Nigeria started with ______ constitution.','Clifford','Independence','Lyttleton','Macpherson','','','d','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:51'),(278,'Under the 1979 constitution of Nigeria, each state was allowed to elect','as many senators as the state could finance','five senators','from two to five senators depending on the population','three senators','','','b','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:52'),(279,'In the pre-colonial Hause/Fulani society, the political head was called','Alkali','Galadima','Ma `aji','Wasiri','','','d','','neco','2013',86,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:53'),(280,'In dividing a country into constituencies, it is important to','ask for permission from the traditional ruler in that area','consider historical','display the voters register','involve the politicians in the areas','','','b','','neco','2013',93,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:54'),(281,'The head of the Oyomesi in pre-colonial Yoruba traditional society was','Alaafin','Are - onakakanfo','Baale','Bashorun','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:55'),(282,'The age qualification required for a Nigerian to contest as a Senator is','18','21','30','40','','','d','','neco','2013',78,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:56'),(283,'Nigeria is presently divided into how many federal constituencies?','6','36','109','360','','','c','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:57'),(284,'Before an election is conducted, the country is divided into electoral districts mainly to','avoid double voting','avoid secret voting','enable the electoral commission have more people to register','make it possible for all people in various parts of the country to be represented.','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:58'),(285,'The following were the consequences of the Nigeria civil war EXCEPT the','creation of more states','disruption of educational and economic activities','general feelings of insecurity','loss of lives and properties','','','a','','neco','2013',66,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:59'),(286,'The parties that formed the coalition government in 1960 were ___ and ___','AG, NCNC','AG, NPC','NCNC.NEPU','NPC, NCNC','','','d','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:00'),(287,'In Igbo assembly during the pre-colonial era, decisions were normally reached by','balloting.','consensus','hand raising','queuing','','','b','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:01'),(288,'Which of the following is a function of an electoral commission?','Contesting elections','Organizing and conducting elections','Organizing political parties','Settling disputes among political parties','','','b','','neco','2013',85,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:02'),(289,'The cultural organisation which metamorphosed into \tNorthern People’s Congress (NPC) was','Arewa Consultative Forum','Borno Youth Movement','Egbe Omo Oduduwa','Jamiyyar Mutanen Arewa','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:03'),(290,'Before a candidate is declared winner under absolute majority system of voting, the candidate must score more than ___ of the total vote cast.','half','one - quarter','one - third','three - quarter','','','a','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-16 09:36:50'),(291,'Nigeria became a member country of the Common wealth of Nations on 1st October','1922','1951','1960','1963','','','c','','neco','2013',90,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:05'),(292,'A constitution that requires stringent procedures for amendment is termed ___ constitution.','federal','flexible','rigid','unitary','','','c','','neco','2013',68,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:06'),(293,'To conduct local government elections, the electoral commission divides the local government area into','branches','constituencies','secretariats','wards.','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:07'),(294,'Agents of political socialization include the following EXCEPT','educational institutions','political godfathers','political parties','religious institutions','','','b','','neco','2013',78,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:08'),(295,'Ownership of land is a common feature of','aristocracy','capitalism','communalism','feudalism.','','','d','','neco','2013',70,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:09'),(296,'The term of the Secretary-General of United Nations (UN) is for ___ years.','eight','five','four','six','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:10'),(297,'How many members of the security council of the United Nations (UN) exercise veto power?','Eight','Five','Four','Six','','','b','','neco','2013',80,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:11'),(298,'The head of the electoral commission at the local government area is referred to as the','chairman','electoral officer','resident commissioner','returning officer','','','d','','neco','2013',84,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:12'),(299,'Who was the leader of the Northern Elements Progressive Union (NEPU)?','Alhaji Balarabe Musa','Alhaji Umaru Dikko','Mallam Aminu Kano','Sir Abubakar Tafawa Balewa','','','c','','neco','2013',81,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:13'),(300,'Which of the following is NOT a source of local government finance?','Commercial ventures','Grants','Rates','Sale of bonds','','','d','','neco','2013',86,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:14'),(301,'The first ever civilian - to - civilian transition was recorded in Nigeria in','1966','1979','1999','2003','','','d','','neco','2013',80,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:15'),(302,'A manifesto is essential to political parties because it enables them to','assess the electorates','gauge public opinion','manipulate election','present programme of action','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:16'),(303,'The two Greek words that make up democracy are ___ and ___ ,','arita, demo','demo, aria','demo, krat','demo, kratia','','','d','','neco','2013',92,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:17'),(304,'The Headquarters of Organization of Petroleum Exporting Countries (OPEC) is located in','Algiers','Baghdad','Riyadh','Vienna','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:53','2020-07-16 09:26:40'),(305,'The term, “Quorum” means the number of legislators chat','are absent from a day’s proceeding.','assent to any particular bill','belong to the opposition party in the house','must be present before business could start','','','d','','neco','2013',77,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:19'),(306,'The process of sensitizing the electorate on the need to vote on the election day and also observe the rules and regulations of election is referred to as','campaign','free and fair election','gerrymandering','political socialization.','','','d','','neco','2013',90,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:20'),(307,'Which of the following is NOT a feature of the civil service?','Anonymity','Expertise','Impartiality','Rigidity','','','d','','neco','2013',94,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:21'),(308,'In a federal state, power is shared','between the center government and the local authorities','among the state of the federation','among the major regions of the country','between the center government and other co-ordinate units.','','','d','','wassce','1999',71,'Admin','2016-11-13 17:15:28','2020-07-14 15:11:22'),(309,'In a federal system of government, the center is','superior to the other components','inferior to the other components','weak to the other components','equal to the other components','','','a','','wassce','1999',90,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:23'),(310,'In a presidential system of government, ministers are','individually responsible to the president','individually responsible to the senate','collectively responsible to the president','collectively responsible to the electorate','','','a','','wassce','1999',68,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:24'),(311,'The principle of collectively responsibility implies that','individual views cannot be expressed','decisions taken are defended in spite of individual opinions','those who hold different views must acquiesce','government cannot be personalized','','','b','','wassce','1999',77,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:25'),(312,'A government controlled by a few people for their own interests is said to be','an autocracy','a tyranny','an oligarchy','a meritocracy','','','c','','wassce','1999',77,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:26'),(313,'In the parliamentary system of government, formal legislation can take the following forms except','royal proclamations','order in council','acts of parliament','ministerial pronouncement','','','a','','wassce','1999',59,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:27'),(314,'One of the distinctive features of democracy is that it','connotes civil rule','facilitates popular','provides for a unicameral legislature','is not associated with one-party system','','','b','','wassce','1999',55,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:28'),(315,'A hereditary system of government is','an oligarchy','a gerontocracy','an aristocracy','a monarchy','','','d','','wassce','1999',52,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:29'),(316,'The separation of judicial, legislative and executive function is designed to','promote freedom','prevent tyranny','promote peace','prevent anarchy','','','b','','wassce','1999',65,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:30'),(317,'Bicameral legislature are a common feature of','monarchical systems','confederal systems','federal systems','unitary systems','','','c','','wassce','1999',55,'Admin','2016-11-13 17:15:29','2020-07-16 09:26:40'),(318,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as','exclusive','extra-ordinary','residual','concurrent.','','','d','','wassce','1999',66,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:32'),(319,'The most important function of the exclusive organ of government is to','formulate policies','give assent to bills','control foreign policies','enforce laws.','','','a','','wassce','1999',70,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:33'),(320,'The process of learning the norms and values associated with a political system is referred to as political','socialization','indoctrination','culture','participation','','','a','','wassce','1999',60,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:34'),(321,'Which of the following best describes the role of the civil service?','Promoting the interest of civil servants','Advising government and implementing its policies','Keeping records for government','Providing information on government and its agencies.','','','d','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:35'),(322,'One instrument for safeguarding the rights of citizens is','judicial interpretation','presidential pardon','legislative intervention','writ of habeas corpus','','','d','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:36'),(323,'Legislative control over delegated legislation can be performed through','withdrawal of delegated powers by the judiciary','nullification of unconstitutional legislation','investigation into the exercise of delegated powers','approval of legislation by the Chief Justice.','','','c','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:37'),(324,'The feature which best differentiates pressure group from political parties is that they do not','have interest in politics','seek to influences public opinion','have permanent organization','nominate ministers','','','d','','wassce','1999',65,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:39'),(325,'The notion of equality before the law is the same as the principle of','supremacy of the constitution','rule of law','independence of the judiciary','nominate ministers','','','b','','wassce','1999',71,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:39'),(326,'A constitution is classified as unwritten when it','does not emanate from the legislature','provides for separation of powers','originates from Britain','is not contained in any single document','','','d','','wassce','1999',52,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:40'),(327,'.\\n\\nA state is said to be fascist when','its leader is patriotic but the citizens are not','all rights and liberties are subordinated to state interest','its citizens are fanatically in love with their leader','all rights and liberties are placed above state interests.','','','b','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:41'),(328,'A dominant two-party system is operated in','the United Kingdom and the United States','India and Pakistan','France and Germany','South Africa and Senegal','','','a','','wassce','1999',69,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:43'),(329,'Indirect legislation can be achieved by','judicial interpretation and precedent','passing a private member’s bill','second read of the law','the two legislative chambers considering a bill','','','a','','wassce','1999',72,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:44'),(330,'Naturalization is a process of acquiring citizenship by','persons of dual nationality','foreign visitors to a country','resident foreigners of good character','persons born abroad.','','','c','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:45'),(331,'The ideology which states that each person is the best judge of what is in his self-interest is','liberalism','socialism','fascism','feudalism','','','a','','wassce','1999',53,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:46'),(332,'The Code of Conduct Bureau was established essentiality to','ensure the independence of the public service','enhance probity and accountability in public service','probe public office holders','reduce corruption in public life.','','','b','','wassce','1999',67,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:47'),(333,'The British Government revoked the Character of the Royal Niger Company and took over the administration of Nigeria in','1861','1861','1900','1914','','','c','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:48'),(334,'The Independence constitution can be described as','monarchical and presidential','republican and parliamentary','monarchical and parliamentary','federal and republican','','','c','','wassce','1999',62,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:49'),(335,'Which of the following parties formed the opposition in the House of Representatives during Nigeria’s First Republic?','AG and UMBC','NCNC AND NEPU','NPC and NNDP','NCNC and AG','','','a','','wassce','1999',55,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:50'),(336,'The first Head of Government in Independent Nigeria was','Nnamdi Azikiwe','Ahmadu Bello','Tafawa Balewa','Herbert Macaulay','','','c','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:51'),(337,'A feature common to the 1963, 1979 and 1989 constitutions of Nigeria was that they provided for a','republican system','prime minister','ceremonial head of state','president as head of government','','','a','','wassce','1999',83,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:52'),(338,'The Lagos Colony and Protectorate was amalgamated with The Protectorate of Southern','1886','1893','1906','1922','','','c','','wassce','1999',56,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:53'),(339,'During the 1957 constitutional conference, the Willink Commission was set up to','recommend a date for independence','suggest an equitable revenue allocation  \tformula','create new regions in Nigeria','recommend solutions to the problem of the minorities','','','d','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-17 01:24:34'),(340,'The duty of an Alkali under the Hausa-Fulan political system is to','adjudicate under Islamic laws','make Islamic laws','execute Islamic laws','make treaties under Islamic laws','','','a','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:55'),(341,'The motion for self-government in Nigeria was proposed by Chief Anthony Enahoro in','1956','1953','1956','1958','','','b','','wassce','1999',68,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:56'),(342,'The legislative functions of the government of Benin Kingdom were performed by the','Esama','Ndichie','Uzama','Enigie','','','c','','wassce','1999',69,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:57'),(343,'The highest ruling body under the Murtala Obasanjo regime differed remarkably from that of the Gowon','administration because of the','inclusion of civilians as members','exclusion of military governors from the council','inclusion of the Chief justice as member','','','b','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-07-17 15:18:54'),(344,'Decree No.34 of May 1966 is also known as the','State Security Decree','Suspension and Modification Decree','Public Order Decree','Unification Decree','','','d','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:59'),(345,'In 1979, the Unity Party of Nigeria contested and won gubernatorial elections in','Lagos, Ogun, imo, Oyo and Bendel','Lagos, Kwara,Oyo,Ogun, and Benue','Lagos, Ogun,Oyo,Ondo and Bendel','Lagos, Kwara,Ogun,Oyo,Ondo','','','c','','wassce','1999',57,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:00'),(346,'Rate are usually collected in Nigeria by','ministries of commerce in the states','local government councils','the department of Inland Revenue','the traditional rulers','','','b','','wassce','1999',72,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:01'),(347,'One of the main reasons for the creation of more local governments in Nigeria is to','make them more responsive to people’s needs','weaken the powers of traditional authorities','make them more receptive to traditional rule','establish them as the third tier in the federal structure','','','a','','wassce','1999',67,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:02'),(348,'Based on its objectives, the Organization of African Unity can primarily be classified as','a social organization','a political organization','a cultural organization','an economic organization','','','b','','wassce','1999',64,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:04'),(349,'Nigeria’s role in ECOMOG is essentially informed by her','desire for peace and stability','chairmanship of ECOWAS.','desire to establish democracy','member ship of ECOWAS.','','','a','','wassce','1999',61,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:05'),(350,'The annual budget of the OAU is approved by the','Council of Ministers','Secretary General','Assembly of Heads of State and Government','General Assembly','','','c','','wassce','1999',68,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:06'),(351,'The major strategy used by OPEC to influence oil price is by','allocating production quotas to members','influencing buyers at the international market to buyer at high prices','allowing member countries to produce at their discretion','increasing the supply of the commodity','','','a','','wassce','1999',57,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:07'),(352,'Nigeria’s was suspended from the Commonwealth because of her','tacit approval of military dictatorship','negative position towards other nations','complete negligence of freedom of the press','violation of fundamental human rights','','','d','','wassce','1999',79,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:08'),(353,'Nigeria’s non-aligned policy means that she will','have nothing to do with the super-powers','not take sides in international issues based on ideological considerations','avoid having any dealing with any country with Ideological','relate only with member countries of the Non-Aligned Movement','','','b','','wassce','1999',74,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:09'),(354,'One of the underlying principles of Nigerian foreign policy is','encouragement of peace-keeping operations in Africa','interference in the internal activities of other countries','non-commitment towards Africa unity','respect for sovereign equality of all states.','','','d','','wassce','1999',73,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:10'),(355,'Before a new member is admitted to the United Nations Organization, its application must be approved by all','permanent members of the Security Council','members of the General Assembly','members of the Economic and Social Council','members of the International Court of Justice','','','a','','wassce','1999',71,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:11'),(356,'Which of the following international organizations was in existence before the outbreak of the Second World War?','The OAU','The League of Nations','The UNO','The ECOWAS','','','b','','wassce','1999',66,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:12'),(357,'The organ of the United Nations Organization responsible for the former colonies of defeated World War II power is the','General Assembly','Security Council','Economic and Social Council','Trusteeship Council','','','d','','wassce','1999',67,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:13'),(358,'The Land Use Decree of 1978 vested the ownership of land in Nigeria in the','State Governments','Federal Government','Local Governments','Local Chiefs','','','a','','utme','2016',71,'Admin','2016-11-13 17:26:43','2020-07-14 15:12:14'),(359,'During the civil war, the major power that expressed moral support for Biafra’s self-determination was','Great Britain','the United States','China','France','','','d','','utme','2016',83,'Admin','2016-11-13 17:26:44','2020-07-14 15:12:15'),(360,'How many states were created in Nigeria in 1967?','4','12','19','21','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:16'),(361,'Decree 34 of 1966 was unacceptable to many Nigeria because it was','seen as an instrument of impoverishment','perceived to abolish the federal system','promulgated without consultation with the people','considered as alien','','','b','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:17'),(362,'The Mid-Western Region was created in Nigeria in','1961','1962','1963','1964','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:18'),(363,'A major contentious issues confronting Nigerian Federalism is','poverty','education','health care delivery','revenue allocation','','','d','','utme','2016',60,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:20'),(364,'A constitution of any country is basically','a mere piece of paper','a guide to how the country should be governed','a document stating what the leaders should do','a document stating how to power','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:21'),(365,'The term, Rule of Law means','nobody is above the law','everybody is equal before the law','we are being governed by lawyers','A and B above','','','d','','utme','2016',70,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:22'),(366,'A good example of a country which operates a cabinet system of government is','France','United Kingdom','United States','Soviet Union','','','b','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:23'),(367,'Indirect Rule was first introduced into Nigeria by','Dame Margery Perham','Sir Donald Cameron','Sir Frederick Lugard','Sir Arthur Richards','','','c','','utme','2016',68,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:24'),(368,'France introduced the policy of assimilation in her colonies primarily to','teach them the art of leadership','give them a sound education','change their way of life','discourage them from ritual killings','','','c','','utme','2016',56,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:25'),(369,'The first Governor-General of Nigeria was','Lord Lugard','Dr. Nnamdi Azikwe','Sir James Robertson','Major-General Aguiyi Ironsi','','','a','','utme','2016',59,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:26'),(370,'A disadvantage of the one-party system is that it','emphasizes political differences','makes accountability difficult','negates freedom of association','delays decision - making','','','c','','utme','2016',84,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:27'),(371,'A typical form of delegated legislation is','an act','a bill','a decree','a bye-law','','','d','','utme','2016',78,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:28'),(372,'In federalism system of Government currency, Armed forces and National defense is the primary function o','f\\nLocal government Chairman','Armed Forces Ruling Council','Security and Exchange Commission','Exclusive list','','','d','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:29'),(373,'An electoral process in which candidates are selected for elective offices by party members is','Primary election','Electoral College','Bye election','General election','','','a','','utme','2016',95,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:30'),(374,'The system of indirect rule failed in the former Eastern Nigeria primarily because','of the fragmented political structures','the chief refused to cooperate with colonial officer','the high incidence of taxation chief refused to cooperate with colonial officers','the colonial officers imposed warrant chiefs on the people','','','d','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:31'),(375,'Citizenship refers to the','legal status of a member of a state','indigenous member of a state','highest position in a state','social status of a person in a state','','','b','','utme','2016',87,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:32'),(376,'Before Nigeria became a republic, the highest body charged with the administration of justice was the','Supreme Court','Court of Appeal','Privy court','High Court','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:33'),(377,'Nigeria’s withdrawal from the Edinburgh Commonwealth Games in July 1986 was in protest against British','supply of arms of Rhodesia','failure to improve sanctions on South Africa','negative utterances on Nigeria','support for UNITA rebels in Angola','','','b','','utme','2016',71,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:34'),(378,'Which of these is not the supreme organ of the OAU?','the council of Ministers','The Administrative Secretary General','the Assembly of Heads of States and Government','Appointment of staff','','','d','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:35'),(379,'Which of the following electoral bodies in Nigeria conducted elections from 1979 to 1983?','Federal Electoral Commission','National Electoral Commission','National Electoral Commission of Nigeria','Independent National Electoral commission','','','b','','utme','2016',78,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:36'),(380,'The Queen can do no wrong means','the Queen is above the law','the Queen acts on the advice of their ministers on matter of public policy','The Queen is the effective centre of power in the United Kingdom','The Queen has the loyalty of a vast number of the British population','','','a','','utme','2016',67,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:38'),(381,'The main attributes of a state are','government, the police and the armed forces','population, territory, government and sovereignty','federal state and local governments','the press, the legislature, the executive and the judiciary','','','b','','utme','2016',87,'Admin','2016-11-13 17:26:45','2020-07-22 00:06:56'),(382,'Islam was introduced in Northern Nigeria','before the 13th century','in the 17th century','after the jihad of Uthman Dan Fodio','by the British in the early 20th century','','','c','','utme','2016',83,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:40'),(383,'The Aro age-grade system in igboland was','a religious organization','a political organization','a commercial organization','an imperial organization','','','b','','utme','2016',67,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:41'),(384,'ECOWAS comprises','16 independent states','The whole Africa','All West African states','English speaking countries only','','','c','','utme','2016',88,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:42'),(385,'Prior to the formation of the OAU in 1963, Nigeria Identified with the','Brazzaville Group','Casablanca group','Libreville Group','Monrovia Group','','','a','','utme','2016',69,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:43'),(386,'How many countries are founding members of O. P. E. C?','13','5','18','25','','','b','','utme','2016',64,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:44'),(387,'The foremost British trading company on the West African coast was','Royal Niger Company','United African Company','Lever Brothers','John Holt and Sons','','','c','','utme','2016',67,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:45'),(388,'The Zikist Movement was popular for its','philosophy of non-violence','promotion of mass literacy','militant nationalism','encouragement of multi-party system','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:46'),(389,'Which of the following sets of factors contributed to the development of nationalism in Nigeria?','Racial discrimination and oppression','Corruption and ethnicity','Paternalism and indirect rule','Election malpractices and party differences','','','a','','utme','2016',70,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:47'),(390,'Which constitution was created to legislate for the Lagos Colony and the Southern Provinces?','The Richard Constitution','The Clifford Constitution','The Lyttletion Constitution','the MacPherson Constitution','','','b','','utme','2016',77,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:49'),(391,'Judges in Nigeria enjoy security of tenure','if they are appointed by the president','if they have the support of the Nigerian Bar Association','if they are of good behaviour','during the life of the government which appoints them','','','c','','utme','2016',80,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:50'),(392,'Before the 1963 Constitution, the highest court of appeal for Nigeria was the','Supreme Court','Federal Court of Appeal','Privy Council','Federal High Court','','','c','','utme','2016',70,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:51'),(393,'Which of the following is NOT a function of the Police Force in Nigeria?','Traffic control','Arrest of criminals','making of law','Prosecution of criminals','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:52'),(394,'In Nigeria, the highest court for Muslims is the','Alkali Court','Sharia Court of Appeal','Supreme Court','Upper Area Court','','','b','','utme','2016',74,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:53'),(395,'Who was appointed by the federal government of Nigeria as the administrator of western region in 1962?','Dr. M. A. Majekodunmi','Chief Odeleye Fadahunsi','Chief S. L. Akintola','Chief Remi Fani Kayode','','','c','','utme','2016',65,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:55'),(396,'The head of state in the first republic of Nigeria was','an executive president','a nominal president','a party leader','a nominee of the whole country','','','b','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:56'),(397,'Which of the following parties formed the opposition in the House of Representatives during Nigerian first republic?','NCNC and NEPU','AG and UMBC','NPC and NNDP','NCNC and MDF','','','b','','utme','2016',78,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:58'),(398,'A prominent feature of a presidential system of government is','dual executive','vote of no confidence','the rule of law','separation of powers','','','d','','utme','2016',78,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:59'),(399,'The executive checks the excesses of the legislature through','assent to bills','the use of veto power','the ratification of treaties','issuance of orders','','','b','','utme','2016',66,'Admin','2016-11-13 17:26:46','2020-07-15 19:34:58'),(400,'The consciousness of a common identity of a people is called','nationalism','integration','indoctrination','emancipation','','','b','','utme','2016',77,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:01'),(401,'Citizenship of a state by descent requires that','one is born and bred in the state','one’s mother was born in the state','one’s grandparents were citizens of that state','one is domiciled in that state','','','a','','utme','2016',74,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:02'),(402,'In order to dispense justice impartially, the judiciary primarily needs','discipline','logistics','motivation','independence','','','d','','utme','2016',73,'Admin','2016-11-13 17:26:46','2020-07-22 00:08:18'),(403,'A state with a hegemonic political party is one in which','there is one dominant party','there is no opposition party','there is only one party','other parties are officially recognized','','','a','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:04'),(404,'Nigeria commitment to the liberation of Africa could best be seen in her policy towards','Namibia and Mozambique','the Congo and Zimbabwe','Sierra Leone and Chad','South Africa and Angola','','','d','','utme','2016',60,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:06'),(405,'The set of policies on the basis of which countries interact with one another is called','constructive engagement policy','socio-economic policy','national policy','foreign policy','','','d','','utme','2016',101,'Admin','2016-11-13 17:26:46','2020-07-19 19:53:17'),(406,'Nigeria’s membership of the UN complements her foreign policy in the area of','bilateral diplomacy','regional diplomacy','sub-regional diplomacy','multi-lateral diplomacy','','','d','','utme','2016',82,'Admin','2016-11-13 17:26:47','2020-07-14 15:13:08'),(407,'Nigeria teamed up with other developing countries to assert a neutral posture under the platform of','Nationalist Movement','Pan - African Movement','Non - aligned Movement','Negritude Movement','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:47','2020-07-14 15:13:09'),(408,'Nation-state is synonymous with','liberation','sovereignty','nationalism','self-actualization','','','b','','utme','2010',85,'Admin','2016-11-13 18:33:18','2020-07-20 19:21:56'),(409,'A fundamental component of political culture is','community structure','family values','economic values','social values','','','d','','utme','2010',98,'Admin','2016-11-13 18:33:18','2020-07-20 19:21:56'),(410,'A form of oligarchy in which gifted people are at the helm of affairs is','plutocracy','theocracy','gerontocracy','aristocracy','','','d','','utme','2010',85,'Admin','2016-11-13 18:33:18','2020-07-14 15:13:12'),(411,'A state that is ruled by an elected citizen is','a republic','a plutocracy','an empire','a monarchy.','','','a','','utme','2010',91,'Admin','2016-11-13 18:33:18','2020-07-20 19:21:56'),(412,'A true democracy in the modern sense exists where the','majority of the people vote','majority of the people rule','elite rules','elected representatives rule.','','','d','','utme','2010',88,'Admin','2016-11-13 18:33:18','2020-07-20 19:21:56'),(413,'In a parliamentary system, when the legislature passes a vote of no confidence on the executive, it means that the','executive is required to resign','legislature ceases to trust the executive','legislature commences legal proceeding against the executive','executive is expected to go on suspension','','','a','','utme','2010',95,'Admin','2016-11-13 18:33:18','2020-07-20 19:21:56'),(414,'The legislative body of the United States of America is the','Congress','National Assembly','Council','Parliament','','','a','','utme','2010',68,'Admin','2016-11-13 18:33:18','2020-07-20 19:21:56'),(415,'Unicameralism is a feature of the legislature in','the United Kingdom','the United States','Ghana','Israel','','','a','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(416,'The upper house in most federal systems is created to','oversee and check the lower house','prevent excesses of the executive','enable experienced elders make inputs to governance','ensure equality of federating units','','','d','','utme','2010',86,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(417,'In which of the following systems is the power of the component units more than that of the central government?','Unitary.','Federal.','Confederal','Monarchical.','','','c','','utme','2010',77,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(418,'One of the general tenets of fascist doctrine is that the leader is','subordinate to the law of the state','weak relative to the constitution','subordinate to the norms of the society','supreme relative to the constitution','','','d','','utme','2010',82,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(419,'In a cabinet system of government, executive power is exercised by the','president','monarch','dominant party','head of government','','','d','','utme','2010',85,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(420,'The principle of separation of powers is best practiced in the','monarchical system','parliamentary system.','feudal system','presidential system','','','d','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(421,'A typical form of delegated legislation is','a decree','a bill','a bye-law','an act','','','c','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:24'),(422,'16.\tThe rights of a citizen can be withdrawn by the state if the person','is convicted of a serious crime','leaves the country permanently','is pronounced dead','opposes the government violently.','','','a','','utme','2010',103,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(423,'An electoral process in which candidates are selected for elective offices by party members is','bye election','electoral college','general election','primary election.','','','d','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(424,'In theory, one major advantage of the one-party systems is that it','promotes greater mass participation in government','serves as an instrument of national integration','guarantees social justice','eliminates intra-party conflict.','','','b','','utme','2010',83,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(425,'A tactic employed by pressure groups to achieve their objectives is','propaganda','electioneering campaign','lobbying','memorandum.','','','c','','utme','2010',85,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(426,'Public opinion can be measured through','strike action','referendum','rumour','negotiation.','','','b','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(427,'Which of the following is the main function of the civil service?','Supporting the party in power.','Allocating resources to the federating units.','Mobilizing grassroots support for government.','Implementing government policies.','','','d','','utme','2010',71,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:30'),(428,'Who was the political head of the Old Oyo Empire?','Aremo.','Oyomesi.','Alaafin.','Bashorun.','','','c','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(429,'The Igbo political system was based on','family ties','Umunna','Umuada','age grades','','','d','','utme','2010',88,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(430,'The Aro age-grade system in lgboland was','a commercial organization','a political organization','an imperial organization','a religious organization.','','','d','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(431,'France introduced the policy of assimilation in her colonies primarily to','change their way of life','give them a sound education','discourage them from ritual killings','teach them the art of leadership','','','a','','utme','2010',91,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:34'),(432,'The foremost British trading company on the West African coast was','Lever Brothers','United African Company','John Holt and. Sons','Royal Niger Company','','','b','','utme','2010',92,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(433,'Which of these rulers resisted colonial rule and was deported to Calabar?','Oba Ovoramwen.','King Dosunmu','King Jaja.','King Kosoko','','','b','','utme','2010',73,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:36'),(434,'Nigerian nationalism was described as two-phased by','James S. Coleman','Edward Wilmot Blyden','David Ricardo','John Payne Jackson.','','','a','','utme','2010',74,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(435,'One major weakness of the Independence constitution is that it','gave full powers to the Supreme Court in Nigeria','gave total independence to Nigeria','empowered Britain to continue to rule','failed to provide the country with full sovereignty.','','','d','','utme','2010',76,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(436,'The first law-making body in Nigeria after amalgamation was','Legislative Council','National Assembly','Regional Assembly','Nigerian Council.','','','a','','utme','2010',90,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(437,'The designation of ministers as chief executives and accounting officers was recommended by a commission headed by','Simeon Adebo','S.J.Cookey','Dotun Philips.','Jerome Udoji.','','','d','','utme','2010',84,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(438,'A major shortcoming of the Ombudsman is','its inability to restrain bureaucratic excesses','lack of clear-cut mandate','lack of executive power to enforce decisions','lack of adequate resources.','','','c','','utme','2010',85,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(439,'One of the strong points of the multi-party system in Nigeria’s Fourth Republic is','government interference','wider political participation','wider anti-democracy campaign','the provision for a bicameral legislature.','','','b','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-07-14 15:13:42'),(440,'In which of the following is the ceremonial and executive powers fused?','Federal system of government','Parliamentary system of government','Unitary system of government','Presidential system of government','','','d','','utme','2010',76,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(441,'A major contentious issue confronting Nigerian federalism is','health care delivery','education','revenue allocation','poverty','','','c','','utme','2010',87,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:44'),(442,'The main purpose of establishing public enterprises in Nigeria is to','enrich the elite','provide essential services','compete with the private sector','increase government revenue','','','b','','utme','2010',88,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(443,'Parastatals are established to','expand business transactions','maximize government profits','render social services','enhance entrepreneurial skills','','','c','','utme','2010',84,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(444,'The General Purpose Committee of the local government is the','body responsible for supervising self-help projects','local government public relations unit','body for awarding contracts','cabinet of the local government.','','','d','','utme','2010',83,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:47'),(445,'The highest organ of the state during the Babangida Regime was the','Armed Forces Ruling Council','Supreme Military Council','Federal Executive Council .','Provisional Ruling Council.','','','d','','utme','2010',89,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(446,'Decree 34 of 1966 was unacceptable to many Nigerians because it was','promulgated without consultation with the people','perceived to abolish the federal system','considered as alien','seen as an instrument of impoverishment','','','a','','utme','2010',91,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(447,'Nigeria broke diplomatic relations with France in 1961 because of:','her poor relations with the francophone countries','General de-Gaulle’s negative attitude towards her','France’s diplomatic relations with Israel','France’s atomic test in the Sahara Desert','','','d','','utme','2010',92,'Admin','2016-11-13 18:33:20','2020-07-14 15:13:50'),(448,'An attribute that Nigeria shares with most non-aligned countries is','her large population','her heterogeneous population','her large size','the state of  her economy.','','','d','','utme','2010',81,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(449,'Nigeria spearheaded the formation of ECOWAS during the regime of','Murtala Muhammed','Yakubu Gowon','Ibrahim Babangida','Olusegun Obasanjo.','','','b','','utme','2010',98,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(450,'Nigeria was classified as a front line state for','spearheading the formation of African Union','supporting the liberation efforts in Southern Africa','helping to end the crisis in Liberia','participating in peacekeeping in the Congo','','','b','','utme','2010',72,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(451,'The prominent role Nigeria played in the UN in the 70’s earned her.','permanent representation at the UN','membership of the Security Council','chairmanship of the General Assembly','non-permanent membership position.','','','b','','utme','2010',95,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(452,'The head of Nigeria’s foreign mission in a Commonwealth nation is known as','ambassador','charge d’affaires.','attaché','high Commissioner','','','d','','utme','2010',86,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(453,'One major function of the Authority of Heads of State and Government of ECOWAS is','appointing staff of the Secretariat','appointing the Executive Secretary','preparing the budget of the Community','organizing international conferences','','','b','','utme','2010',72,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(454,'The tenure of non-permanent members of the Security Council is','4 years','2 years','6 years','5 years','','','b','','utme','2010',107,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(455,'The Secretary-General of the United Nations is appointed by the','Permanent members of the Security Council on the   recommendation of the General Assembly','General Assembly on the recommendation of the Security Council','General Assembly in plenary session','Security Council acting alone.','','','b','','utme','2010',84,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(456,'The approval of treaties and agreements of the Economic Community of West African States is the responsibility of the','Council of Ministers','ECOWAS Tribunal','Assembly of Heads of State and Government','Secretariat.','','','c','','utme','2010',95,'Admin','2016-11-13 18:33:20','2020-07-20 19:21:56'),(457,'The distinctive attribute of a state is the monopoly of','control','power','violence','justice.','','','b','','utme','2012',72,'Admin','2016-11-13 18:42:18','2020-07-22 00:08:18'),(458,'State as a political entity refers to','an organized group within a definite territory','an association of men in a given society','a branch of a nation','a geographical location.','','','a','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(459,'Political values are acquired in any given society through','political re-orientation','political campaign','political socialization','political indoctrination.','','','c','','utme','2012',101,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(460,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate.','','','d','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(461,'One judicial function performed by the executive is','granting of amnesty','implementing judicial orders','ensuring obedience to the law','appointing judges.','','','a','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:05'),(462,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary.','','','c','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(463,'A political system which empowers the leader with the ultimate responsibility to execute laws is','parliamentarianism','presidentialism','dictatorship','autocracy.','','','b','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:07'),(464,'A bill is a draft which is awaiting the consideration of the','executive','party caucus','legislature','judiciary.','','','c','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(465,'The private ownership of the means of production is a feature of','capitalism','socialism','communalism','communism.','','','a','','utme','2012',70,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(466,'In a feudal system, the two major classes are the serfs and the','masses','vassals','lords','elite.','','','c','','utme','2012',75,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(467,'An example of a country with a flexible constitution is','South Africa','Britain','Benin Republic','the United States of America.','','','d','','utme','2012',75,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:11'),(468,'The rule of law is a negation of','equality before the law','supremacy of the law','limited power','absolute power.','','','d','','utme','2012',74,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:12'),(469,'To ensure the rights and freedom of citizens, the powers of the arms of government must be','fused','incorporated','separated','rotated.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(470,'Delegated legislation is made by bodies other than the','president','governor','parliament','judiciary','','','c','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(471,'The bringing of a session of a parliament to an end through royal proclamation is known as','political impasse','dissolution of parliament','vote of no confidence','prorogation of parliament.','','','b','','utme','2012',72,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(472,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social light.','','','c','','utme','2012',82,'Admin','2016-11-13 18:42:19','2020-07-15 19:34:58'),(473,'The commission charged with the conduct of federal elections in Nigeria is','NEC','FEDECO','INEC','NECON.','','','c','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(474,'An electoral system in which parties are assigned seats in the parliament commensurate to the number of votes polled is','absolute majority','simple majority','proportional representation.','indirect election.','','','c','','utme','2012',78,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(475,'An intra-party activity for the selection of candidates for elective positions is known as','primary election','general election','mid-term election','bye-election.','','','a','','utme','2012',87,'Admin','2016-11-13 18:42:19','2020-07-16 09:36:50'),(476,'The primary aim of pressure groups is to','attract people’s attention','protects the interest of members','capture political power','fight corrupt officials.','','','b','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(477,'Which of the following is used in gauging public opinion?','Constitution','.\t\t\\nEducational institution.','Mass media.','Electoral college.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:22'),(478,'A permanent structure that facilitates continuity and guarantees orderly conduct in governance is','bureaucracy','public corporation','ombudsman','political party.','','','a','','utme','2012',86,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(479,'In the Hausa pre-colonial political system, a district was headed by','a hakimi','a dagaci','an alkali','a waziri.','','','d','','utme','2012',73,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(480,'Which of the following ensured the practice of democracy in the pre-colonial Yoruba political system?','Checks and balances.','Fusion of power.','Individual responsibility.','The rule of law.','','','a','','utme','2012',73,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(481,'Colonization of Africa was mainly motivated by','security considerations','economic reasons','religious reasons','cultural factors.','','','b','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-07-22 00:08:18'),(482,'The French colonial system was underlined by the policy of','assimilation','paternalism','socialism','indirect rule.','','','a','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(483,'Radical nationalism in Nigeria is generally attributed to the influence of','Aminu Kano','Herbert Macaulay','Nnamdi Azikiwe','Mbonu Ojike.','','','b','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-07-15 19:31:30'),(484,'Two foreigners that directly aroused nationalist feelings among Nigerians are','Edward Blyden and Payne Jackson','Casely Hayford and James Horton','W.E.du Bois and H. O. Davies','Marcus Garvey and Casely Hayford.','','','d','','utme','2012',98,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(485,'Members of the Senate in Nigeria’s First Republic were','elected directly by the people','elected by electoral college','nominated by regional and federal governments','nominated by the president of the house.','','','b','','utme','2012',64,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(486,'In Nigeria, the agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil Defense Corps','Police.','','','d','','utme','2012',96,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(487,'The National Assembly in Nigeria is primarily responsible for','executing laws','interpreting laws','ratifying appointments','making laws.','','','d','','utme','2012',77,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(488,'The major factor militating against the efficient operation of electoral commissions in Nigeria is','inadequate public support','population size','inadequate skilled manpower','excessive political interference.','','','d','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-07-14 15:14:59'),(489,'A major objective of the Public Complaints Commission is','training and promotion of public servants','settlement of disputes among individuals','addressing the grievances of individuals and groups','fighting corruption and indiscipline.','','','d','','utme','2012',72,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(490,'The three registered political parties at the inception of Nigeria’s Fourth Republic were','PDP, DPP and PPA','PDP, AD and APP','PDP,  AD and PPA','PDP, APP and AC.','','','b','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(491,'The Sharia legal system was first introduced in the Fourth Republic in','Kano State','Katsina State','Zamfara State','Sokoto State.','','','c','','utme','2012',89,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(492,'Quota system and federal character principles were entrenched in the 1979 Constitution to ensure','loyalty','economic empowerment','equity','even development.','','','d','','utme','2012',83,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(493,'Workers in the public corporations are known as','civil servants','private employees','public servants','professional employees.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-07-14 15:15:19'),(494,'The central objective of privatization in Nigeria is to','reduce the retrenchment of workers','encourage prompt payment of salaries','improve standard of living','improve the efficiency of enterprises.','','','d','','utme','2012',78,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(495,'Military intervention in Nigeria arose from','perceived incapability of civilians to govern','international pressure for change','the desire for a military government','civilians’ desire to relinquish power.','','','a','','utme','2012',78,'Admin','2016-11-13 18:42:20','2020-07-17 01:24:34'),(496,'The first institution introduced by the military to exercise legislative power was the','Supreme Military Council','Armed Forces Ruling Council','Federal Executive Council','Provisional Ruling Council.','','','a','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 15:15:28'),(497,'The main focus of Nigeria’s foreign policy since independence centres on','south-south cooperation','sub-regionalism','globalism','Afrocentric.','','','d','','utme','2012',77,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(498,'The country that championed decolonization in Africa was','Nigeria','South Africa','Ghana','Kenya.','','','c','','utme','2012',93,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(499,'A major drawback to the NEPAD initiative is its','articulation by few African leaders','affiliation to the African union','inability to empower the youth','reliance on Western donors for funds.','','','d','','utme','2012',66,'Admin','2016-11-13 18:42:20','2020-07-20 22:44:09'),(500,'The structure of the African Union includes','The Court of Justice, Pan African Congress and People’s Assembly','Pan African Parliament, the Court of Justice and the Peace and Security Council','Specialized Technical Commission, the Court of Justice and Humanitarian Board','People’s Assembly, Humanitarian Board and the Peace and Security Council.','','','b','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(501,'ECOMOG at the initial stage of its intervention in Liberia was perceived as','neutral','incompetent','partisan','invaders.','','','d','','utme','2012',89,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(502,'The African leader mostly credited for spearheading the formation of the African Union is','Muammar Ghaddafi','Abdelaziz Bouteflika','Abdoulaye Wade','Thabo Mbeki.','','','a','','utme','2012',67,'Admin','2016-11-13 18:42:20','2020-07-14 15:15:46'),(503,'One of the programmes binding members of the Commonwealth is the','food and aid programme','cultural programmes','agenda for peace','scholarship scheme.','','','d','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(504,'As part of the reforms in the UN, two slots were proposed in the Security Council for','Asia','Africa','America','Europe.','','','b','','utme','2012',75,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(505,'The founding members of OPEC are','Algeria, Iran, Iraq, Saudi Arabia and Kuwait','Nigeria, Libya, Iran, Iraq and, Saudi Arabia','Venezuela, Nigeria, Libya, Iran and Iraq','Saudi Arabia, Iran, Iraq, Kuwait and Venezuela.','','','d','','utme','2012',85,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(506,'Power that is delegated is exercised','indirectly','by devolution','directly','by coercion.','','','a','','utme','2013',65,'Admin','2016-11-13 20:36:42','2020-07-19 23:25:04'),(507,'De jure sovereignty is acquired through','force','law','grant','treaty.','','','b','','utme','2013',82,'Admin','2016-11-13 20:36:42','2020-07-19 23:25:04'),(508,'A group of people who live together under a common law within a definite territory is a','state','community','nation-state','nation.','','','a','','utme','2013',72,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:07'),(509,'Political socialization is associated with','free choice of party programmes','military take over of civilian government','the transmission of political values','political transition.','','','c','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(510,'According to Aristotle, a form of government in which the few rule for the benefit of all is','polyarchy','diarchy','aristocracy','autocracy.','','','c','','utme','2013',84,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(511,'Rule by the old people is known as','theocracy','monarchy','gerontocracy','feudalism.','','','c','','utme','2013',80,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(512,'As an executive, the commissioner is charged with the responsibility of','making laws','implementing laws','writing laws','giving loans.','','','b','','utme','2013',97,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(513,'Rule adjudication is a primary function of the','legislature','judiciary','executive','government.','','','b','','utme','2013',72,'Admin','2016-11-13 20:36:43','2020-07-22 00:08:18'),(514,'The judiciary controls the executive in federal states through','motions','delegated legislation','judicial overview','judicial review.','','','d','','utme','2013',91,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(515,'One major advantage of the unitary system is that it tends to make government','strong and stable','free of controversy','distant from the people','popular among the masses.','','','a','','utme','2013',91,'Admin','2016-11-13 20:36:43','2020-07-21 11:29:12'),(516,'The presidential system differs from the parliamentary system of government in that','the tenure of office of the president is limited','the principle of collective responsibility applies','executive and legislative powers are fused','powers of the three arms of government are merged.','','','a','','utme','2013',84,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:39'),(517,'Which of the following advocates’ equitable distribution of wealth?','Plutocracy.','Capitalism.','Aristocracy.','Socialism.','','','d','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(518,'A constitution that is difficult to amend is','flexible','rigid','written','unwritten.','','','c','','utme','2013',76,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:46'),(519,'Which of the following constitutions is more suitable for centralization of political power?','Flexible constitution.','Unwritten constitution.','Rigid constitution','Written constitution.','','','d','','utme','2013',91,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(520,'The act of transferring autonomous powers to subordinate agencies is','devolution','concentration','deconcentration','delegation.','','','a','','utme','2013',89,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(521,'Which of the following types of citizenship cannot be withdrawn?','Citizenship by naturalization.','Citizenship by conquest.','Citizenship by birth.','Honorary citizenship.','','','c','','utme','2013',72,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(522,'The right of citizens to vote is','adult suffrage','universal suffrage','nationality suffrage','electoral suffrage.','','','b','','utme','2013',77,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(523,'A political party is different from a pressure group in its','source of finance','objective','organization','strategy.','','','b','','utme','2013',73,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(524,'One of the functions of pressure groups is to','contest elections to serve the people','nominate the president','prepare the budget','articulate the opinion of their members.','','','d','','utme','2013',92,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(525,'Public opinion refers to the','aggregate of attitudes held by members of the national assembly','aggregate views of groups on particular government activities','views held by the president of a country','views of the Chief Justice of a country.','','','b','','utme','2013',84,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(526,'The class that oversees the implementation of government decisions and policies is the','Administrative','Executive','Clerical','Technical.','','','b','','utme','2013',87,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(527,'The performance of ritual rites in the Yoruba empire is the responsibility of the','Oyo mesi','Aare-ona kakanfo','Oba','Ogboni.','','','d','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(528,'Under the emirate system, the commander of the army is the','Alkali','Hakimi','Sarkin Fada','Madawaki.','','','d','','utme','2013',67,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(529,'The indirect rule system of administration was more successful in Northern Nigeria because','the people were mainly interested in being governed indirectly','of the existence of an organized structure in the area','the Europeans ensured that the farmlands of the natives were not confiscated','the natives showed little or no resistance.','','','b','','utme','2013',78,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(530,'The earliest nationalist activities in Nigeria were spearheaded by','educated elites','trade unions','traditional rulers','political parties.','','','a','','utme','2013',63,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:16'),(531,'The first notable nationalist movement in West Africa was the','National Congress of British West Africa','West African Students Union','Nigeria Youth Movement','Aborigines Rights Protection Society.','','','a','','utme','2013',64,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(532,'In Nigeria’s First Republic, the Prime Minister was both the','Head of government and a lawmaker','Head of State and Commander-in-Chief of the armed forces','Commander-in-Chief of the armed forces and Party leader','Head of State and Party leader.','','','a','','utme','2013',89,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(533,'Under the 1979 Constitution, statutory allocation of revenue to local government councils is the responsibility of the','Council of State','Houses of Assembly','National Economic Council','Federal Legislature.','','','d','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:24'),(534,'Under Nigeria’s Second Republic, the Senate was under the leadership of','John Wash Pam','J. S. Tarka','Joseph Wayas','Godwin Ume-Ezeoke.','','','c','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(535,'The Revenue Mobilization, Allocation and Fiscal Commission is statutorily empowered to determine the remuneration of','all civil servants','only elected representatives','political office holders','employees of public corporations.','','','a','','utme','2013',69,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(536,'The primary function of the Code of Conduct Bureau is to','ensure due process by public officers','ensure minimum standard of morality','retain custody of declarations','receive declaration of assets.','','','d','','utme','2013',86,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(537,'The party system practiced in Nigeria’s Third Republic was','multi-party','two-party','zero-party','one-party.','','','b','','utme','2013',82,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:37'),(538,'Nigeria adopted a federal system of government because of','the fear of domination of minorities','uneven development','the availability of limited resource','the adoption of a state religion.','','','a','','utme','2013',78,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(539,'The highest policy making body under the Gowon Regime was the','Federal Executive Council','Armed Forces Ruling Council','Provisional Ruling Council','Supreme Military Council.','','','d','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(540,'Nigeria became a federation of thirty-six states during the era of','Yakubu Gowon','Ibrahim Babangida','Sani Abacha','Abdulsalami Abubakar.','','','d','','utme','2013',75,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(541,'Which of the following headed the committee that recommended the suitability of Abuja as a new federal city?','Justice Akinola Aguda.','Justice Buba Ardo.','Justice Atanda Fatai Williams.','Justice Udo Udoma.','','','a','','utme','2013',86,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(542,'A public corporation is managed by','the board of directors','a minister','a general manager','the board of governors.','','','a','','utme','2013',79,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(543,'A major source of revenue in the post -1976 local government in Nigeria is','the joint state-local government account','internally generated revenue','the federation account','grants and loans.','','','c','','utme','2013',82,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(544,'The Provisional Ruling Council was the highest ruling body during the regime of','Sani Abacha','Muhammadu Buhari','Ibrahim Babangida','Murtala Muhammed.','','','c','','utme','2013',71,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(545,'Nigeria’s non-alignment policy in the sixties lacked real substance because of her','close ties with Britain','Afrocentric policy','poor economic potential','partnership with Asian countries.','','','a','','utme','2013',88,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(546,'Under the Technical Aid Corps, Nigerian experts are deployed to','Asia, Africa and the Pacific','Africa, the Pacific and the Caribbean','Europe, South America and Asia','the Pacific, the Caribbean and Europe.','','','b','','utme','2013',76,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(547,'The centre-piece of Nigeria’s foreign policy covers only','Asia','Europe','Africa','Latin America.','','','c','','utme','2013',68,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:07'),(548,'Which of the following countries pioneered the establishment of ECOWAS alongside Nigeria?','Cameroun.','Ghana.','Togo.','Algeria.','','','c','','utme','2013',67,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:09'),(549,'Nigeria’s role in the African Union was most prominent during the regime of','President Ibrahim Babangida','President Olusegun Obasanjo','President Shehu Shagari','President Umaru Yar’adua.','','','b','','utme','2013',67,'Admin','2016-11-13 20:36:44','2020-07-22 00:08:18'),(550,'A representative of a Commonwealth country in another member state is known as','High Commissioner','Consul-General','Ambassador','Attaché.','','','a','','utme','2013',85,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(551,'The organ of UN that promotes voluntary co­operation among member states in diverse areas is the','Security Council','International Court of Justice','General Assembly','Economic and Social Council.','','','d','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(552,'The main representative body of the United Nations is the','Secretariat','Security Council','General Assembly','Trusteeship Council.','','','b','','utme','2013',81,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(553,'The AU differs from the OAU in having','no assembly of Heads of State','effective tools for decision enforcement.','no permanent headquarters','a minimum of divergent viewpoints','','','b','','utme','2013',76,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(554,'OPEC has strong influence with the','IMF','EU','ADB','AU.','','','d','','utme','2013',88,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(555,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','police, army, sovereignty custom.','','','c','','utme','2014',75,'Admin','2016-11-13 20:49:36','2020-07-14 15:18:46'),(556,'The process of taking part in political and public affairs can be termed political','recognition','culture','participation','socialization','','','d','','utme','2014',79,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:47'),(557,'Membership of a society is','conventional','mandatory','voluntary','constitutional','','','c','','utme','2014',111,'Admin','2016-11-13 20:49:40','2020-07-21 01:23:18'),(558,'In a democratic political system, the political sovereign is usually the','constitution','political parties','electorate','legislature','','','c','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:51'),(559,'One basic feature of a monarchical form of government is that','separation of powers is absolute','members of the executive are elected','succession is through heredity','the ruler has a fixed tenure','','','c','','utme','2014',67,'Admin','2016-11-13 20:49:40','2020-07-15 19:34:58'),(560,'One main advantage of bicameral legislature is that it','makes for quick deliberation during emergencies','makes passage of bills easy','is less cumbersome to pass bills','is not easy to manipulate bills','','','d','','utme','2014',64,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:53'),(561,'The court that has ultimate power to interprets the constitution is the','Supreme Court','Magistrate Court','High Court','Court of Appeal','','','a','','utme','2014',87,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:54'),(562,'Unitary system of government is more suitable to a country','that is sparsely populated','that possesses a strong and modern army','with a robust and dynamic economy','with a relatively small area and a homogenous population','','','d','','utme','2014',80,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:55'),(563,'An example of a country ruled by a constitutional monarch is','Uganda','Morocco','Italy','Libya','','','c','','utme','2014',80,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:56'),(564,'The development of a classless society is the goal of','conservatism','feudalism','liberalism','maxims','','','d','','utme','2014',73,'Admin','2016-11-13 20:49:40','2020-07-15 19:31:30'),(565,'A flexible constitution is one which is','easily amended','popular with the legislators','known to all the citizens','written by the parliament','','','a','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:58'),(566,'Which of the following is a feature of checks and balances?','judicial precedent','Judicial immunity','Judicial review','Code of conduct','','','c','','utme','2014',76,'Admin','2016-11-13 20:49:40','2020-07-22 00:06:56'),(567,'Laws made by military governments at the state level are called','decrees','bye-laws','edicts','acts','','','a','','utme','2014',75,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:00'),(568,'Citizenship is acquired by an alien through','registration','birth','conferment','naturalization','','','d','','utme','2014',75,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:01'),(569,'The officer responsible for announcing the result of an election is known as','ballot officer','presiding office','returning officer','electoral officer','','','c','','utme','2014',83,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:02'),(570,'The ultimate aim of political parties is to','implement people-oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','utme','2014',77,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:03'),(571,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their members','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:03'),(572,'Which of the following is not a dimension of public opinion?','Polling','Orientation','intensity','Substance','','','a','','utme','2014',78,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:04'),(573,'The body that is responsible for the appointment, discipline, promotion and dismissal of civil servants is the','Ministry of Establishment','Bureau for Public Service Reforms','Civil Service Commission','Ministry of Labour and Productivity','','','c','','utme','2014',71,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:05'),(574,'In the pre-colonial Hausa political system, the Madawaki performed the function of','Minister of Education','Minister of Defense','Minister of Interior','Minister of works','','','b','','utme','2014',70,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:06'),(575,'In the Old Oyo Empire, the Ajele','ensured good governance of the districts','mobilized the army','was the Head of the army','ensured the safety of all trade routes','','','a','','utme','2014',78,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:07'),(576,'The General Strike of 1945 was caused primarily by the','harshness in trade laws as it concerns the Africans','government’s rejection of a demand for an increase of 50 percent in the cost of living allowance','persistent implementation of discriminatory laws','disparity in the criteria for employment','','','a','','utme','2014',79,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:08'),(577,'Before 1945, the component units of Nigeria were','districts','provinces','states','regions','','','b','','utme','2014',68,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:09'),(578,'Nationalists agitation began in Nigeria with the','Lagos protest against water rate in 1908','introduction of indirect rule','annexation of Lagos in 1861','formation of West Africa Youth League','','','b','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:10'),(579,'The emergence of nationalism was essentially the result of the ills of','independence','slavery','colonialism','imperialism','','','c','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:11'),(580,'Which of the following nationalists was the founder of Nigeria’s first political party?','Abubakar Tafawa Balewa','Ahmadu Bello','Nnamdi Azikiwe','Herbert Macaulay','','','d','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:12'),(581,'The division of powers between the federal and regional governments into exclusive, concurrent and residual lists was done by the','1999 Constitution','Independence Constitution','Republican Constitution','1979 Constitution','','','b','','utme','2014',67,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:13'),(582,'The Nigerian Independence Constitution was modified by the','1963 Constitution','1999 Constitution','1989 Constitution','1979 Constitution','','','a','','utme','2014',86,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:15'),(583,'The President of Nigeria was indirectly elected through secret ballot for a period of five years by the senate in','1983','1960','1963','1979','','','c','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-07-22 00:06:56'),(584,'The main function of the Federal Character Commission in Nigeria is','ensuring fair representation of all states in the public service','reviewing unfair administrative decisions','settling disputes among societies','providing free social services to the citizens','','','a','','utme','2014',63,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:16'),(585,'The power of appointing the chairman of the Independent National Electoral Commission is vested in the','Judicial Council','Council of State','President','Senate','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:17'),(586,'The NCNC and the NPC facilitated the creation of the','Mid-West Region','Northern Region','Western Region','Eastern Region','','','a','','utme','2014',69,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:19'),(587,'One of the major problems of Nigerian federalism is','lack of revenue to cater for the demands of the federation','inadequate manpower to fill vacancies','imbalance in the structure and sizes of units of federation','pre-colonial administrative structure among the units of federation','','','c','','utme','2014',65,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:20'),(588,'Which of the following was done during the Gowon administration to reduce regional structural imbalance in the federation?','Appointment of ministers','Creation of states','Increase in revenue allocation','Formation of political parties','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:21'),(589,'A problem of public corporations in Nigeria is','choice of leadership','public control','emphasis on subsidies','wastage of resources','','','d','','utme','2014',81,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:22'),(590,'One feature of public corporations that was weakened by privatization is','social control','national integration','social harmony','government control','','','d','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:23'),(591,'One of the main duties of the Local Government Service Commission is to','supervise and manage the personnel of local governments','conduct election into Local Council','create an enabling working environment for council workers','handle requests for the creation of more local governments','','','a','','utme','2014',83,'Admin','2016-11-13 20:49:41','2020-07-22 00:08:18'),(592,'The option A4 model was used in the conduct of the','2007 elections','1983 elections','1993 elections','1999 elections','','','c','','utme','2014',76,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:25'),(593,'The review of Nigeria foreign policy under the Murtala/Obasanjo regime was done by','Udoji Committee','Aboyade Committee','Adedeji Commission','Philips Commission','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:26'),(594,'Which of the following is a guiding principle of Nigeria’s foreign policy?','Total opposition to the Cold War','Posting of only carrier diplomats as envoys','Interference in the affairs of African countries','Decolonization of all African states','','','d','','utme','2014',80,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:27'),(595,'The Technical Aids Corps was established during the regime of','Olusegun Obasanjo','Sani Abacha','Ibrahim Babangida','Muhanmmadu Buhari','','','a','','utme','2014',68,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:28'),(596,'The granting of asylum to Charles Taylor by Nigeria was to','protect Nigerians in Liberia','promote peace in Liberia','defy the western powers','Control Liberia','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:29'),(597,'Nigeria is regarded as a frontline state because she','sent policemen for peacekeeping in Namibia','assisted the liberation struggle in Southern Africa','assisted ECOMOG troops in Liberia','sent troops for peacekeeping Somalia.','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:30'),(598,'The reason behind Nigeria’s suspension from the Commonwealth in 1995 was','legal','political','economic','socio-cultural','','','b','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:48'),(599,'Commonwealth nations are represented in other member nations by','charge d’ affaires','ambassadors','high commissioners','attaches','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:49'),(600,'The UN succeeded the','Warsaw Pact','NATO','SEATO','League of Nations','','','d','','utme','2014',81,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:50'),(601,'The number of permanent members of the UN Security Council is','eight','five','six','seven','','','b','','utme','2014',70,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:51'),(602,'The Secretary General of the OAU holds office for a renewable period of','six years','three years','four years','five years','','','c','','utme','2014',78,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:52'),(603,'Former colonies of Britain belong to the association known as','OECD','NATO','European Union','Commonwealth','','','d','','utme','2014',59,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:53'),(604,'Government refers to all the following, except','an institution of the state','the process of ruling a political community','the exercise of power and authority','the act of civil disobedience.','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:25','2020-07-14 15:19:54'),(605,'Government as the act of governing means the','activities of pressure groups and political parties','act of vetoing a bill','orders of judiciary and legislature','activities by which governmental policies are made and implemented','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:55'),(606,'Unwritten constitution means that the constitution is','not written down','based only on conventions.','not contained in any single book','in draft','','','c','','wassce','1988',62,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:56'),(607,'The delegation of Administrative Powers to the local units with the central supervision and control is called.','devolution','decentralization','deconcentration','centralization','','','a','','wassce','1988',92,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:57'),(608,'Which of the following is not the function of the government?','Building of roads, bridges, canals, etc.','Provision of education.','Maintenance of relations with other states.','Provision of all the material needs of all citizens.','','','d','','wassce','1988',76,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:58'),(609,'A flexible constitution can only be amended by','two-third (2/3) majority vote in the legislature.','referendum.','three-quarter (3/4) majority vote in the legislature.','simple majority vote in the legislature.','','','d','','wassce','1988',42,'Admin','2016-11-13 21:14:26','2020-07-17 01:24:34'),(610,'Which one of the following countries has an unwritten constitution?','Great Britain','France','United States of America','Federal Republic of Germany','','','a','','wassce','1988',72,'Admin','2016-11-13 21:14:26','2020-07-17 01:24:34'),(611,'A rigid constitution is said to be best suited for a','Federal Government','Socialist','Military Government','Unitary Government','','','a','','wassce','1988',61,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:00'),(612,'Federal Election were held in Nigeria in','1946, 1951, 1954, 1979 and 1983','1954, 1959, 1964, 1979 and 1983.','1923, 1946, 1951, 1979 and 1983','1954, 1960, 1964, 1979 and 1983','','','b','','wassce','1988',66,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:01'),(613,'The two components of sovereignty are','the rule of law and fundamental human rights.','political power and political authority','political culture and political socialization.','political independence and supreme authority of the state within its territory.','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:02'),(614,'Nigeria broke diplomatic relations with Israel in 1973 because of Israeli.','recognition of Biafra.','occupation of Egyptian territory','refusal to give aid to Nigeria.','economic relations with South Africa.','','','b','','wassce','1988',71,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:03'),(615,'The United Nations Organization [UNO] has its headquarters in','Britain','USSR','USA','China','','','c','','wassce','1988',66,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:04'),(616,'The state is different from the government because','The state unlike the government is permanent','.\\nThe government is made up of powerful people.','Members of the government are elected.','The state is created by God.','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:26','2020-07-22 00:08:18'),(617,'A state is a special form of human association because it','has a legitimate monopoly of life and death penalties over its citizens','is the richest association in society.','has a constitution approved by the citizens','can punish law breakers','','','a','','wassce','1988',61,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:14'),(618,'Which of the following is not relevant to communism','Democracy','Violent revolution','Friedrich Engels','Private Enterprise.','','','d','','wassce','1988',54,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:15'),(619,'A Nigeria citizen can only be deprived of his citizenship if he is','condemned to death.','convicted by a Court of law','married to a foreigner','holding a dual citizenship.','','','d','','wassce','1988',60,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:16'),(620,'In the process of governing. OUTPUT refers to','the influence of pressure group','demand of the political system','the decision of the government.','the opinion of the electorate','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:17'),(621,'Another word for red-tapism is','democracy','autocracy','idiosyncrasy.','bureaucracy','','','d','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-15 19:31:30'),(622,'Rule adjudication is the main function of the','Executive','President','legislature','judiciary','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:19'),(623,'The major problem that arose from the 1979 election centred around the','inability of many voters to find their names on the voters register','cancellation of election results in many constituencies because of alleged irregularities','inability of some dissatisfied candidates to seek redress in the Court of law.','controversy over the presidential election result.','','','d','','wassce','1988',74,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:20'),(624,'The following are the key factors which influence Nigeria’s foreign relations except','peaceful co-existence','economic dependence.','non-interference','respect for territorial integrity.','','','b','','wassce','1988',52,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:21'),(625,'The independent of Nigeria was in 1945 with the coming to power in Britain of','Conservative party','Tory party','Liberal party','Labour party','','','d','','wassce','1988',71,'Admin','2016-11-13 21:14:27','2020-07-16 09:26:40'),(626,'Which of the following is not an accepted way of resolving international conflict','Diplomacy.','Non-military use of force.','Propaganda','Nuclear war.','','','d','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-16 09:26:40'),(627,'The membership of the Council of States in Nigeria is made up of','Federal Ministers','State commissioners','State governors','the State Governors and the Head of State.','','','d','','wassce','1988',54,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:24'),(628,'The common wealth is','an economic organization','made up of all independent ex-colonies of Britain','made up of all countries who are friendly with Britain.','made up of independent European countries.','','','b','','wassce','1988',69,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:25'),(629,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known as the','Bales','Obas','Ogboni','Oyomesi.','','','d','','wassce','1988',86,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:26'),(630,'The declaration of a state of emergency in Western Nigeria was protected by the constitution of','1954','1951','1960','1963','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:26'),(631,'The primary purpose of the state is to','establish a system of law and order','train people to become good citizens','cater for all the needs of the citizens','ensure the self sufficiency of its people','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:27'),(632,'The Armed Forces Ruling Council came into existence under the','Buhari Administration','Gowon  Administration','Ironsi Administration','Babangida Administration','','','d','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:28'),(633,'Which of the following is not a specialized agency of the United Nations Organization?','World Health Organization','The Food and Agriculture Organization','The international Labour Organization','General Assembly','','','d','','wassce','1988',84,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:29'),(634,'The creation of the office of the Prime Minister in Nigeria was accomplished in','1951','1954','1957','1959','','','c','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:30'),(635,'Which of the following is not a function of a party secretariat?','Electing the leader of the party','Organizing party conferences','Publishing the party’s manifesto','Planning party strategy to win election','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:31'),(636,'The first Military President of Nigeria is','Lt. General Olusegun Obasanjo','Major General J.T.U. Aguiyi-Ironsi','Major General Ibrahim Babangida','General Murtala Muhammed','','','c','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:32'),(637,'The following factors favoured the introduction of indirect rule in Nigeria except the','Shortage of manpower','Shortage of funds','Existence of a system of taxation','Existence of educated elites','','','d','','wassce','1988',63,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:33'),(638,'The psychological support a regime gets from its citizens. If they believe the regime is right and ought to be obeyed is known as','Sovereignty','power','authority','legitimacy','','','d','','wassce','1988',48,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:34'),(639,'The voluntary activities of members of a society in the selection of rulers is known as','political participation','political socialization','political decision','political culture','','','a','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:35'),(640,'Residual powers under the Nigerian independence constitution were the powers exercised by','the Federal Government','the Regional Governments','the Local Government','both the Federal and Regional Governments','','','b','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:36'),(641,'The highest court of appeal under the Republican constitution of Nigeria was the','Federal High Court','Judicial Committee of the Privy Council','Regional court of Appeal','Supreme Court','','','d','','wassce','1988',58,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:37'),(642,'Nigeria became a federation of 19 states in','1875','1976','1967','1978','','','b','','wassce','1988',60,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:38'),(643,'A popular form of proportional representation is','communal representation','single transferable vote','the alternative vote','the second ballot','','','a','','wassce','1988',62,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:39'),(644,'A political concept that is composed of the attitudes, beliefs, emotions and values of a society is called political','culture','single transferable vote','authority','socialization','','','a','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:40'),(645,'flexible constitution is advantageous because it','guarantees political stability','prevents the passing of hasty bills by the legislature','can cope with emergency periods','allows for continuity','','','c','','wassce','1988',63,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:41'),(646,'The Economic community of West Africa state (E.C.O.W.A.S) is','an economic association','a political association','a cultural association','a social association','','','a','','wassce','1988',58,'Admin','2016-11-13 21:14:28','2020-07-17 15:18:54'),(647,'Which of the following is not an aim of the Organization of African Unity (O.A.U)','Promotion of unity and solidarity among African states','Co-operation of efforts to achieve a better life for the African people','Defense of the sovereignty and independence of African state','Enthronement of democratic governments in Africa.','','','d','','wassce','1988',62,'Admin','2016-11-13 21:14:28','2020-07-16 09:36:50'),(648,'It is the duty of a government to perform all the following functions, except','Preventing internal disorder','Ensuring security of life and property','Providing basic welfare services','Providing all the needs of its citizens','','','d','','wassce','1988',70,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:43'),(649,'Which of the following concepts is out of place?','Fascism','Welfarism','Totalitarianism','Authoritarianism','','','b','','wassce','1988',76,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:44'),(650,'The primary objective of all political parties is to','Promote the general interest of members of the public','Eradicate corruption in public life','Control the government','Campaign for vote','','','c','','wassce','1988',58,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:45'),(651,'The French policy of Assimilation','was a device to transfer technology to Africa','was the same in theory as the British policy of indirect rule','was aimed at converting Africans to Frenchmen','enabled the French to stay in Africa','','','c','','wassce','1988',62,'Admin','2016-11-13 21:14:28','2020-07-16 09:36:50'),(652,'Military Governors were members of the Supreme Military Council under the','Murtala Mohammed Regime','Yakubu Gowon Regime','Ibrahim Babangida Regime','Olusegun Obasanjo Regime','','','b','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:47'),(653,'The use of forced labour was one of the features of','British colonial policy','French colonial policy','American colonial policy','Divide and rule policy','','','b','','wassce','1988',70,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:48'),(654,'The controversy over the 1979 Presidential election result was','over the dispute on the conduct of the election','because educated Nigerians did not approve who received the number of votes','due to the interpretation of ¼   of the vote cast in 2/3 of all the states in the Federation.','because the winning candidate did not pay his taxes as and when due in the past three years.','','','c','','wassce','1988',79,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:49'),(655,'All the following were frontline fighters for Nigeria’s Independence except','Obafemi Awolowo','Nnamdi Azikiwe','Lateef Jakande','Amino Kano','','','c','','wassce','1988',76,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:50'),(656,'It is argued that most of the new States of Africa cannot remain faithful to the doctrines of non-alignment mainly because of','corruption','ethnic problems','bad leadership','poor economy','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:51'),(657,'The first political party in Nigeria was','National Council of Nigerian Citizens (N.C.N.C)','Nigerian National Democratic Party (N.N.D.P)','Action group (A. G)','Northern Peoples Congress (N.P.C)','','','b','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:52'),(658,'To which of these countries did Nigeria send peacekeeping force?','South Africa','Angola','Chad','Namibia','','','c','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:53'),(659,'In the federation, the purpose of enumerating the powers of the central government is to','ensure efficient administration','ensure greater unity','reduce the financial burden of the units','limit its powers against those of the units','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:53'),(660,'The ultimate aim of a communist system of government is \tthe distribution of goods and services according to','age','qualification','party loyalty','need, want and ability','','','d','','wassce','1988',78,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:54'),(661,'Under what system of government does the state require ownership and control of the means of production for its use in benefiting the population?','Capitalism','Socialism','Feudalism','Welfarism','','','b','','wassce','1988',63,'Admin','2016-11-13 21:14:28','2020-07-22 00:08:18'),(662,'The question of civil war was raised for the first time at the \tmeeting of the O.A.U in September 1967 in','Kampala','Addis Ababa','Lagos','Kinshasa','','','d','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:56'),(663,'Nigeria objected to the discussion of the civil war in the O.A. U. summit on the grounds that','it amount to interference in its internal affairs','some African countries recognized Biafra','Tanzania and Ivory Coast recognized Biafra','the resolution of the conflict was difficult','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:57'),(664,'Government is the machinery established to manage the affairs of','rulers','aliens','the civil service','the state','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:41','2020-07-14 15:20:58'),(665,'The judicial organ of government is the body which','implements the law','makes the law','punishes lawmakers','interprets the law','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:42','2020-07-14 15:20:59'),(666,'Which of the following is a false description of the first Nigeria Prime Minister? He','was first among equals','presided over the cabinet','was the Head of Government','exercised the prerogative of mercy','','','d','','wassce','1989',75,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:00'),(667,'The twelve state structure was created in Nigeria in','1965','1966','1967','1974','','','c','','wassce','1989',69,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:01'),(668,'The laws which the state legislators make normally pass through','the commissioner','the process of deliberations','the judiciary','some committees in the civil service','','','b','','wassce','1989',97,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:02'),(669,'In the parliamentary system of government, ministers are','chosen from the House as well as outside','collectively responsible to parliament','representatives of various interests in the country','not members of the legislature','','','b','','wassce','1989',74,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:03'),(670,'Any type of restricted franchise is a violation of principle of','constitutionalism','sovereignty','political equally','popular election','','','c','','wassce','1989',60,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:04'),(671,'Which of the following is not the responsibility of the Electoral Commission in Nigeria?','Swearing in of members of the House of Assembly','Counting and publication of election results','delimitation of constituencies','Compilation of electoral register','','','a','','wassce','1989',71,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:05'),(672,'Which of the following is not civic obligation of a citizen?','Obedience to law','payment of taxes','voting during elections','freedom of conscience and religion','','','d','','wassce','1989',77,'Admin','2016-11-13 21:30:42','2020-07-15 19:31:30'),(673,'The study of Government offers an individual all the following, except a','knowledge of his rights and duties','training in good citizenship','knowledge of the processes of government','training to become a judge','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:07'),(674,'Voting started in Nigeria in 1923 because the Clifford Constitution of 1922 granted','decolonization','independence','an elective principle','self-government','','','c','','wassce','1989',75,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:08'),(675,'The organ of the UNO which can impose mandatory sanctions on any of its members is the','International Court of Justice','Economic and Social Council','General Assembly','Security Council','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:09'),(676,'A unified - local government system was adopted in Nigeria under the','Tafawa Balewa administration','Yakubu Gowon administration','Shehu Shagari administration','Murtala / Obasanjo administration','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:10'),(677,'The two parties which formed the coalition government in 1959 were the','NPC and the NCNC','NCNC and the AG','NPC and the NNA','PRP and the UPGA','','','a','','wassce','1989',72,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:11'),(678,'Which of the following is not written into independence constitution of 1960?','Fundamental human rights','Exclusive powers','Concurrent list','Role of political parties','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:12'),(679,'The process of depriving persons of the right of voting is known as','enfranchisement','disqualification','dismissal','disenfranchisement','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:13'),(680,'The predominant influence of Northern Nigeria in the First Republic violated the federal principle of','effective co-operation among the constituent units','geographical contiguity','unity','absence of marked inequalities among the component units','','','d','','wassce','1989',60,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:14'),(681,'Bicameralism refers to','a one chamber legislature','the process of voting in the legislature','the upper chamber in a legislature','a two-chamber legislature','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:15'),(682,'The head of state under the independence constitution of Nigeria was','an absolute monarch','a constitution monarch','imposed by the British','invested with executive power','','','b','','wassce','1989',66,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:16'),(683,'The principle of separation of powers implies that the three main organs of government work','separately','independently but co-operatively','against one another','reluctantly and gradually for the executive','','','b','','wassce','1989',60,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:17'),(684,'The emergency powers conferred on the Federal Government under the independence constitution was first exercised in the','Western Region','Mid-Western Region','Eastern Region','Northern Region','','','a','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:18'),(685,'A sovereign state in one','whose constitution can only be changed by a military government','where its citizens can speak without fear or favour','in which sovereignty is invested in the military','whose government decisions are made independent of foreign interference','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:19'),(686,'Which of the following is not a component of political culture?','Attitudes','Beliefs','Emotions','Age','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:20'),(687,'Representative democracy is characterized by','free election and proper register of voters','unlimited expenditure of political parties','a politically educated electorate','representation of the poor only','','','a','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:21'),(688,'The ratification of the appointment and dismissal of an Emir in the pre-colonial Fulani Empire was done by the','Empire of Lafiagi and the Etsu of pategi','Emirs of Kano and Katsina','Emirs of Gwandu and Sokoto','Emir of llorin','','','c','','wassce','1989',60,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:22'),(689,'The primary function of a legislature is the','appointment of the president','making of laws','voting of bills','monitoring of the judiciary','','','b','','wassce','1989',61,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:22'),(690,'Which of the following title among the Igbos in the pre-colonial era required substantial wealth before one could acquire it','Ofo','Okpara','Ozo','Eze','','','c','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-17 01:24:34'),(691,'According to Marxist theory, those who own and control the means of production in a capitalist society are','exploiters','colonialists','workers','bourgeoisie','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:24'),(692,'The head of the Oyomesi in the old Oyo Empire was','Aremo','Are Onakakanfo','Olowo','Bashorun','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:25'),(693,'The head of the Nigerian Mission to the Commonwealth of Nations is','an Ambassador','a Consular','the Minister of External Affairs','a High Commissioner','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:26'),(694,'While political parties aim at forming a government, pressure groups aim at','imposing a military rule','causing social unrest','influencing government decisions','controlling a nation’s economy','','','c','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:28'),(695,'Nigeria does not maintain diplomatic relations with South Africa because of the latter’s','industrial policy','apartheid policy','foreign policy','agricultural policy','','','b','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:28'),(696,'Which of the following countries does not operate a federal constitution?','USA','Canada','Nigeria','France','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:29'),(697,'Socialism developed as a protest against the evils of','monarchy','oligarchy','feudalism','capitalism','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-07-22 00:08:18'),(698,'The major advantage of the secret ballot is that','it is faster than other systems','nobody can be prevented from voting','it ensures the anonymity of each voter','losers can ask for another secret vote','','','c','','wassce','1989',84,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:31'),(699,'One of the first action of military governments when they take over power in Nigeria is to','detain all the politicians','appoint new ministers and commissioners','tour the country to explain why they have taken over','suspend the constitution','','','d','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:32'),(700,'A parliamentary-cabinet system of government is practiced in','Canada','Nigeria','the Soviet Union','all European countries','','','a','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:33'),(701,'Foreign policy refers to','a policy made by a foreign country','a policy made by a country for foreigners','a policy made by a country when it is at war','the general principles which govern a state’s international behaviour','','','d','','wassce','1989',86,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:34'),(702,'The constitution of the Federal Republic of Nigeria','promotes unity in diversity','allows for the dominance of the minority ethnic groups','concentrates governmental power at one level of government','advances the interest of the rich','','','a','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-07-16 09:36:50'),(703,'Which of the following is not an objective in foreign policy?','Prestige','Large population','Territorial integrity','Survival','','','b','','wassce','1989',56,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:36'),(704,'The principle of anonymity of civil servants means that they are','career officers','not the servants of a particular government','trained for the duties they perform','not credited or blamed for anything they do','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:37'),(705,'During the 1964 Federal elections there was a total boycott of voting in','the Western Region','Lagos','the Northern Region','the Eastern Region','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:38'),(706,'Which of the following is not a pressure group? The','Nigerian Farmers’ Council','Nigerian Union of Teachers','National Party of Nigeria','Academic Staff Union of Universities','','','c','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:39'),(707,'Which of the following is not a public corporation? The','Nigerian Ports Authority','National Sports Commission','National Youth Service Corps','Nigerian Railway Corporation','','','c','','wassce','1989',66,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:39'),(708,'Which of the following is not an academic discipline in which a student of Government can specialize','Public Administration','Local Government','Political Territory','Public Education','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:43','2020-07-22 00:08:18'),(709,'The Republican Constitution of 1963 was indigenous because it was approved by','a referendum','the representatives of the people in parliament','the British parliament','the colonial government','','','b','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:41'),(710,'Local government reforms were carried out by the Federal Military Government in','1966','1967','1970','1976','','','d','','wassce','1989',60,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:42'),(711,'With which country did Nigeria break diplomatic relations in 1963 for exploding a nuclear device in the Sahara?','The Soviet Union','The U.S.A','China','France','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:43'),(712,'The first political party in Nigeria was formed after the introduction of the','Richard constitution','Clifford constitution','Bourdillon constitution','Macpherson constitution','','','b','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:44'),(713,'Which of the following did not formally recognize Biafra’ as an independent state?','Sierra Leone','Tanzania','Gabon','Zambia','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:16'),(714,'When there is a conflict between the regional and federal laws under the concurrent legislative list, the','Federal laws would prevail','Federal laws would be declared null and void','regional laws would prevail','Head of State would settle the conflict','','','a','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:16'),(715,'Nigeria hosted the meeting of Commonwealth Heads of State in','1965','1966','1967','1968','','','b','','wassce','1989',62,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:17'),(716,'A fascist regime is both','representative and accountable','responsive and responsible','fair and legitimate','authoritarian and totalitarian','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:48'),(717,'Which of the following is not a function of the Secretary-General of the United Nations Organization?','Supervising the Secretariat','Interpreting the treaties','Alerting the Security Council on any matter that may threaten international peace','Making annual report','','','b','','wassce','1989',60,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:49'),(718,'Capitalism often encourages','Private ownership of the means of production','Deconcentration of political and economic powers in the same hands','A centrally planned economy','Public ownership of all forms enterprises','','','a','','wassce','1989',68,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:50'),(719,'Which of the following African countries has diplomatic relations with South Africa?','Malawi','Zambia','Gabon','Tanzania','','','a','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:51'),(720,'Citizens who are legally qualified to vote form','Political parties','A Trade Union Congress','Members of the House of House Assembly','The electorate','','','d','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:52'),(721,'Election among candidates from the same party before the final elections are called','Primaries','Running Mates','Second ballots','Party conventions','','','a','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 01:58:08'),(722,'Which of the following countries is not a member of the Economic Community of West African States (ECOWAS)?','Nigeria','Cameroun','Ghana','Togo','','','b','','wassce','1989',58,'Admin','2016-11-13 21:30:44','2020-07-14 02:17:44'),(723,'The international organization formed after the Second World War to guarantee international peace and security is the','World Bank','United Nations Organization','League of Nations','British Commonwealth of Nations','','','b','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 02:11:20');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `history` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `history` VALUES (1,'Islam was introduced in Northern Nigeria  ','before the 13th century  ','in the 17th century  ','in the 19th century  ','in the 18th century ','','','a','','posr-utme-aaua','2013',714,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:52'),(2,'Lagos became the crown colony in  ','1914','1861','1886','29-Mar-05','','','c','','posr-utme-aaua','2013',714,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:53'),(3,'In the pre-colonial Igbo political system, which of the following was the most democratic organ of government','The Umand ','Eze  ','Isu  ','Ohanaeze','','','d','','posr-utme-aaua','2013',742,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:54'),(4,'A historical feature of the legislative council that met in 1923 was that for the first time it  ','included the official members who were Nigerians  ','included only British officials  ','included elected African members ','acted in a deliberative capacity  ','','','d','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:55'),(5,'When was the emirate system of administration introduced in Northern Nigeria? ','19th century ','20th century ','18th century  ','17th century ','','','c','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:56'),(6,'Pre-colonial Igbo society was  ','centralised ','acephalous','feudal  ','capitalist ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:57'),(7,'The Colonial Administration in Nigeria was  ','Authoritarian','Democratic  ','A&B  ','None of the above ','','','a','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:58'),(8,'In the traditional Hausa-Fulani political system, political authority was vested in the  ','Emir  ','Talakawa  ','Alkali ','Emirate Council ','','','a','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:59'),(9,'In the Oyo empire, the Alaafin was ','an absolute monarch  ','popularly elected  ','a constitutional  monarch ','worshipped as deity ','','','a','','posr-utme-aaua','2013',732,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:00'),(10,'The concept of Indirect Rule in Nigeria is usually associated with  ','Sir George T.  Goldie  ','Claude Macdonald  ','Lord Lugard  ','Consul Philip ','','','c','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-07-18 20:06:58'),(11,'The Lagos Colony and the Southern Protectorate of Nigeria were joined in the year ','1904','1906','1910','1914','','','b','','posr-utme-aaua','2013',719,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:02'),(12,'The Committee that recommended Abuja as the New Federal Capital was headed by  ','Graham Douglas  ','Mamman Nasir  ','Rotimi Williams  ','Akinola Aguda ','','','d','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:03'),(13,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known ','Ogbon','Oyo Mesi ','Baale','Ohanaeze','','','b','','posr-utme-aaua','2013',748,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:04'),(14,'Galadima in the emirate refers to  ','a village head  ','the office in charge of the army  ','the administrator of the capital city  ','a judge ','','','c','','posr-utme-aaua','2013',763,'Admin','0000-00-00 00:00:00','2020-07-20 05:03:04'),(15,'Which of the following was the last to win Independence from colonial rule?  ','Cote d I oi e','Algeria  ','Tanzania  ','Angola ','','','d','','posr-utme-aaua','2013',751,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:06'),(16,'Which of the following made the earliest contact with the Nigerian societies?  ','The Portuguese ','The Germans  ','The British ','The French','','','a','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:07'),(17,'In the pre-colonial Yoruba society, the power of the Oyo Mesi were checked by  ','Baale  ','Ogboni  ','Are Ona Kankafo  ','Bashorun ','','','d','','posr-utme-aaua','2013',719,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:19'),(18,'The Ogboni Cult in the pre-colonial Yoruba political system played the role of the  ','judiciary  ','executive  ','police  ','legislation ','','','a','','posr-utme-aaua','2013',751,'Admin','0000-00-00 00:00:00','2020-07-18 05:38:54'),(19,'The Aro system in Igboland was a ','Political organisation  ','Commercial organisation  ','Religious organisation  ','Imperial organisation ','','','c','','posr-utme-aaua','2013',736,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:26'),(20,'Which of the following formalised colonial penetration into Africa?  ','Paris Treaty  ','Berlin Conference  ','Lagos Treaty  ','Cape Coast ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:35'),(21,'An acephalous pre-colonial system is best represented by the  ','Oyo Empire  ','Igbo political organisation  ','Ijaw political organisation  ','Benin Empire ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:36'),(22,'The use of forced labour was one of the features of  ','British colonial policy  ','French colonial policy  ','American colonial policy  ','divide and rule ','','','b','','posr-utme-aaua','2013',731,'Admin','0000-00-00 00:00:00','2020-07-21 09:55:32'),(23,'During the early colonial period in Nigeria, the governor ruled the protectorate by  ','Crown Colony Orders  ','Proclamation  ','Order?in-Council  ','The Act of Parliament ','','','d','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:38'),(24,'The ratification of the appointment and dismissal of an emir in the pre-colonial Fulani empire was done by','Emir of Kano  ','Emir of Sokoto  ','Emir of Gwandu  ','B & C','','','d','','posr-utme-aaua','2013',738,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:39'),(25,'In the Hausa/Fulani traditional political system jingali was  ','one of the sources of revenue to cattle owners  ','tax paid on cattle  ','a property tax paid to land owners ','a type of flat rate tax ','','','b','','posr-utme-aaua','2013',722,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:40'),(26,'Which of the following titles among the Igbos in the pre-colonial era required substantial wealth before one could acquire it?','Obi  ','Eze  ','Ozo  ','Ofo ','','','c','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:41'),(27,'Nigerian educated elites agitated against colonial rule  ','by bribing colonial governors  ','through lobbying  ','through newspapers ','by fighting civil war ','','','c','','posr-utme-aaua','2013',746,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:42'),(28,'In the absence of the existence of traditional rulers in the Igbo communities the British Colonial administration appointed','Eze  ','Obi  ','Ozo  ','Warrant chiefs ','','','d','','posr-utme-aaua','2013',739,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:43'),(29,'The colonial government whose constitution introduced elective principle into Nigerian politics was  ','Arthur Richards  ','Fredrick Lugard  ','Hugh Clifford  ','John Macpherson ','','','c','','posr-utme-aaua','2013',722,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:44'),(30,'The introduction of indirect rule in eastern Nigeria led to the Aba Women Riots of  ','1914','1929','1935','1916','','','b','','posr-utme-aaua','2013',746,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:45'),(31,'A chief could be deposed in the pre-colonial era if he  ','violated the written constitution  ','persistently neglected the advice of the elders  ','refuse to collect taxes for the Britishs  ','married too many wives ','','','b','','posr-utme-aaua','2013',713,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:46'),(32,'Which of the following in the pre-colonial era had integrated political structure  ','Tiv  ','Ilaje ','Jukun  ','Nupe ','','','d','','posr-utme-aaua','2013',703,'Admin','0000-00-00 00:00:00','2020-07-20 04:50:50'),(33,'The Yoruba, Edo, Nupe, and Ibo languages are classified as belonging to the  ','Arabic  ','Kwa-sub group  ','Kaw sub group  ','Kai sub group ','','','b','','posr-utme-aaua','2013',726,'Admin','0000-00-00 00:00:00','2020-07-19 03:13:35'),(34,'Archaeology findings in Ugbo-Ukwu are suggestive of rich  ','Agricultural potentials  ','cultural civilization  ','mineral deposit  ','all of the above ','','','b','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:55'),(35,'Geographically, Nigeria lies between latitudes  ','40 and 140  ','4 and 100   ','140 and 4  ','all of the above ','','','a','','posr-utme-aaua','2013',754,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:56'),(36,'Ali Ghaji s  eig  e ded i  Ka e  Bo o in  ','1501','1502','1503','1504','','','d','','posr-utme-aaua','2013',740,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:57'),(37,'All of the following are renowned historians except  ','Prof Ade Ajayi ','Prof Toyin Falola  ','Prof Obaro Ikime  ','Prof Akin Oyebade ','','','d','','posr-utme-aaua','2013',756,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:58'),(38,'In Yorubaland, the concept which derived mainly from the wave of dispersal that attended the process of state formation is known as','Omo iya  ','Ebi  ','Oduduwa  ','all of the above ','','','b','','posr-utme-aaua','2013',734,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:59'),(39,'Oron and Ekoi people of the Cross River Basin might have migrated to Nigeria through the  ','sea  ','mountain  ','sky  ','none ','','','a','','posr-utme-aaua','2013',696,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:00'),(40,'The Portuguese first visited Benin around  ','1485','1484','1486','1483','','','a','','posr-utme-aaua','2013',756,'Admin','0000-00-00 00:00:00','2020-07-19 19:52:46'),(41,'Songhai Empire fell in... ','1591','1691','1791','1891','','','a','','posr-utme-aaua','2013',721,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:02'),(42,'The Head of the Sokoto Caliphate was known as  ','Sultan  ','Caliph  ','Emir  ','Alhaji ','','','b','','posr-utme-aaua','2013',745,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:03'),(43,'The Ekitiparapo war lasted for  ','10 years  ','16 years  ','100years','50 years ','','','b','','posr-utme-aaua','2013',751,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:04'),(44,'Yoruba inter-state wars lasted for  ','16 years  ','10 years  ','100 years  ','50 years ','','','c','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:05'),(45,'The Sokoto Jihad led to the formation of Islamic States in following States except  ','Senegal  ','Mali  ','Chad  ','Togo ','','','d','','posr-utme-aaua','2013',760,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:06'),(46,'Be li   Af i a   o fe e e took pla e et ee  ','1884 and 1885  ','1885 and 1886  ','1886 and 1887  ','1883 and 1884 ','','','a','','posr-utme-aaua','2013',726,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:07'),(47,'???. and slave raiding were complementary exercises among the Yoruba  ','farming  ','hunting  ','war  ','diplomacy ','','','c','','posr-utme-aaua','2013',713,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:08'),(48,'The 1804 Jihad in Northern Nigeria could be referred to all except  ','Sokoto Jihad  ','Uthman Dan Fodiyo Jihad  ','Fulani Jihad  ','Seku Ahmadu Jihad ','','','d','','posr-utme-aaua','2013',730,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:09'),(49,'Samori Toure was captured in 1893 by  ','French imperialism  ','British imperialism  ','Germany imperialist  ','none of the above ','','','a','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:10'),(50,'The first independence day speech in Nigeria was given by??.','Muhammadu Buhari','Obafemi Awolowo','Tafawa Balewa','Nnamdi Azikwe','','','c','','posr-utme-aaua','2013',724,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:11');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `image` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `url` text NOT NULL,\n  `name` varchar(200) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `insurance` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `insurance` VALUES (1,'Which of the following policies will prevent loss of home if the wage earner dies?','Term assurance','Endowment assurance','Mortgage insurance','Whole life assurance','','','c','','wassce','2014',76,'Admin','2017-01-09 12:28:06','2020-07-14 15:23:56'),(2,'One of the objectives of buying a term assurance policy is to','protect  dependants  in  case  of  death  of  the  life assured','reduce financial burden of the life assured','supplement retirement income  of  the  life  assured','maximize savings from the life assured','','','a','','wassce','2014',69,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:57'),(3,'An assurance policy taken by experts to cover possible negligence arising from their duties is','consequential loss','professional indemnity','cargo','freight','','','b','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:58'),(4,'The class of insurance that  covers  legal  liability to a third party for bodily injury and property damage caused by goods supplied is','employer’s liability','public liability','professional indemnity','products liability','','','d','','wassce','2014',80,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:59'),(5,'The  type  of  cover  that  is  designed  against  loss  of earnings following loss caused by fire and special perils is','product guarantee insurance','materials damage cover','fire damage policy','consequential loss cover','','','d','','wassce','2014',50,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:00'),(6,'Which  of  the  following  risks  is  covered  by  insurance policy?','An investment loss on the stock market','Dishonesty of an employee leading to fraud','Failure of a business venture','Rise and fall of prices of goods in the market','','','b','','wassce','2014',70,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:01'),(7,'In  classification  of  risks, what is the name given to a risk  where  the  causes  of  events are linked to factors \tthat are due to the society we live in?','Dynamic risk','Particular risk','Speculative risk','Fundamental risk','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:02'),(8,'The evidence of the insurance contract is','proposal form','policy','schedule','endorsement','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:03'),(9,'The right of the insurer to step in place of the insured for the purpose of recovering damages is called','representation','indemnity','subrogation','contribution','','','c','','wassce','2014',74,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:04'),(10,'Which of the following is a contract of benefit?','Personal accident insurance','Business interruption insurance','Fire insurance','Money insurance','','','a','','wassce','2014',66,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:05'),(11,'Which of the following is not a feature of insurable interest?','Loss suffered','subject matter','Legal relationship','Financial value','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:06'),(12,'A prospective insured in an engineering insurance may be advised to purchase one of the following classes of insurance','fire cover','boiler cover','tempest cover','equipment cover','','','d','','wassce','2014',77,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:07'),(13,'The class of non-life insurance policy where cover note is issued is','fire insurance','burglary insurance','motor insurance','fidelity guarantee','','','c','','wassce','2014',70,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:08'),(14,'Abandonment is mostly applicable to','marine insurance','motor insurance','fire insurance','engineering insurance','','','b','','wassce','2014',82,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:09'),(15,'Which of the following is not a benefit covered under a personal accident policy?','Death','Temporary disablement','Loss of baggage','Medical expenses','','','c','','wassce','2014',72,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:10'),(16,'In the preparation of food for eat - in - customers, the cooks made a mistake in using excess quantity of an \tingredient. A customer ate and  suffered  poisoning. \tWhich policy of the operator would pick this liability?','Public liability','Personal liability','All risks insurance','Loss of profit insurance','','','a','','wassce','2014',75,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:11'),(17,'How much premium will the insurer charge?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','b','','wassce','2014',88,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:12'),(18,'How  much  premium  will  the  insurer  return  to  the insured?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','a','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:13'),(19,'A policy that combines cover for many perils as a single policy  to  suit  the  insurance  needs of  an insured is','accident policy','protection policy','paternal policy','packaged policy','','','d','','wassce','2014',77,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:14'),(20,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:15'),(21,'The document that sets out the list of items covered in insurance is a','manifest','bill of lading','policy list','policy specification or form','','','d','','wassce','2014',94,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:16'),(22,'One of the information contained in a motor insurance cover note is the','behaviour of the insured','occupation of the insured','commencement date','previous and present insurance history','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:17'),(23,'In property insurance, which of the following is not a direct loss?','Reinstating the property destroyed','Replacing the property destroyed','Repairing the property damaged','Replacing third party property damaged','','','d','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:18'),(24,'Ade insured his property for N= 350,000.00. The property is subject to average condition. He suffered a loss amounting to N= 30,000.00 with the value of the property at the time of loss to be N= 370,000.00. How much will the insurer pay?','N= 14,583.33','N= 28,378.38','N= 30,000.00','N= 31,714.29','','','d','','wassce','2014',70,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:20'),(25,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of dispute','resolution of policy','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:21'),(26,'An insurer who buys reinsurance cover is insured as','retrocession','retrocedant','cession','cadent','','','d','','wassce','2014',72,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:22'),(27,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','wassce','2014',84,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:23'),(28,'Family income option in a life policy provides that','the beneficiary will be paid for life','the beneficiary receives the policy sum','interest will be added monthly','salary will be paid to the insured until death','','','b','','wassce','2014',76,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:24'),(29,'A provision in a policy that exempts an insurer from liability if the loss is less than a certain amount is','excess','transfer','lay days','franchise','','','a','','wassce','2014',90,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:25'),(30,'Which of the following policies is a peril covered under a standard fire policy?','Lightning','Storm','Civil commotion','Escape of oil','','','a','','wassce','2014',65,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:34'),(31,'A type of reinsurance where cession and acceptance is obligatory is','treaty','captive','facultative','retrocession','','','a','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:35'),(32,'A contract sold  by  insurance companies that  pay  a monthly or  quarterly income  benefit for the  life  of a person is','endowment','annuity','income','freight','','','b','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:36'),(33,'George effected two personal accident policies. The first policy provides N= 25,000.00 cover for loss of limb. The second policy provides N= 30,000.00 cover for loss of limb. What is the total amount that  George  will receive in the event of a valid loss of limb claim?','N= 5,000.00','N= 25,000.00','N= 30,000.00','N= 55,000.00','','','a','','wassce','2014',76,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:37'),(34,'Renewal notice is  used by  insurers  to  remind the insured of the','reduction of cover','continuation of cover','expiration of cover','increase of cover','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:38'),(35,'Risk Net Insurance Brokers Limited placed a business with an insurance company, in return the broker will be entitled to','fees','commission','profit','revenue','','','b','','wassce','2014',68,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:38'),(36,'The professional service required for effective claims administration by insurers would be provided by','loss assessors','risk managers','loss adjusters','claims consultants','','','c','','wassce','2014',73,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:40'),(37,'Which  of the following activities is  not a  function of the  Chartered  Insurance  Institute  of  Nigeria?','Setting a standard for members','Promoting Professional growth','Promoting the interest of insurers','Specifying professional qualification','','','d','','wassce','2014',79,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:41'),(38,'Effective supervision and licensing of insurance firms in Nigeria is the function of','National Insurance Commission','Institute of Loss Adjusters of Nigeria','Chartered Insurance Institute of Nigeria','Nigerian Corporation of Registered Insurance Brokers','','','a','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:41'),(39,'The payment made when the insured is  not  entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','wassce','2014',84,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:42'),(40,'The owner of a life assurance policy who enters into an agreement to sell the ownership of the policy and beneficiary rights upon the death of the insured is called','an underwriter','a aviator','a factor','an assessor','','','d','','wassce','2014',78,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:43'),(41,'A small fixed sum retained by the insured in the form of a claim is','slip','severity','excess','frequency','','','b','','wassce','2014',74,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:44'),(42,'A voucher signed by the insured before collecting his claim is','money collect receipt','discharge voucher','payment receipt','pay - in - slip','','','b','','wassce','2014',83,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:45'),(43,'To which of the following parties does the principle of utmost good faith apply in a contract of insurance?','The proposer only','The insurer only','The insurer and proposer','The third party and insured','','','c','','wassce','2014',81,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:46'),(44,'Insurers A and B cover a risk at the ratio of 2:5 for the sum insured of N= 1,800. How much would insurer  A get from the risk?','N= 1,285.00','N= 771.00','N= 514.00','N= 180.00','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:47'),(45,'The consideration paid for insurance contract is','money','commission','premium','fee','','','c','','wassce','2014',71,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:48'),(46,'The alternative to seeking for surrender value in a life assurance contract is','automatic non - forfeiture','revival condition','paid-up policy','standing order','','','c','','wassce','2014',75,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:49'),(47,'Which of the following is a risk covered in endowment assurance?','Permanent disability','Bodily injury','Temporary disability','Death cover','','','d','','wassce','2014',70,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:50'),(48,'A <em>revival clause</em> in a life policy will allow an insured to revive a policy that lapsed on account of nonpayment of premium, provided the insured','can prove he is sick at the time','cannot fall sick after the policy','can prove he is in good health','can recover from the ill health','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:51'),(49,'Which of  the  following  risks  are  covered  under engineering insurance?','Material damage and liability cover','Boiler and special perils cover','Computer and explosion cover','Property damage and business interruption cover','','','d','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:52'),(50,'Which of the following is not a function of an insurance broker?','Assisting clients in paying premium','Maintaining proper records of claims','Assisting clients in connecting to insurers','Assisting clients in effecting uninsured loss','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:53'),(51,'The primary function of insurance is','making profit','managing of risk','spreading of risk','prevention of accident','','','c','','model','1',89,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:54'),(52,'An  insurance  feature  that  requires  the  parties  to disclose  all  material  facts  about  the  agreement is known as','Adhesion','Disclosure','Material fact','Utmost good faith','','','b','','model','1',90,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:55'),(53,'An insurance principle that requires the insured to be honest and disclose all relevant facts is called','subrogation','utmost good faith','proximate cause','insurable interest','','','b','','model','1',92,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:56'),(54,'The facts which might influence any party’s willingness to enter the contract or reject it is called','insurable fact','insurance fact','insured fact','material fact','','','d','','model','1',71,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:57'),(55,'A  statement  of  fact  that  the insured must have an interest in the object of the contract is called','warranty','insurable interest','subrogation','object interest','','','b','','model','1',63,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:58'),(56,'A fundamental condition which must be filled  by the  insured for compensation is','warranty','obligation','interest','premium','','','a','','model','1',73,'Admin','2017-01-09 13:02:57','2020-07-14 15:24:59'),(57,'The object of an insurance policy is equally known as','insurance title','insurance premium','subject matter','risk object','','','c','','model','1',68,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:00'),(58,'In insurance contract the insured is the','offeror','offeree','Actuary','Ofree','','','a','','model','1',86,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:01'),(59,'In insurance contract offeree is the','insured','insurance company','client','Third party','','','b','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:02'),(60,'An individual who is interested in taking an insurance policy must fill a form of application called:','premium slip','policy document','proposal form','claim form','','','c','','model','1',84,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:03'),(61,'The payment made by the insured to the insurer upon which the validity of insurance is based is called','Exgratia payment','Loss payment','Compensation','Premium','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:04'),(62,'The temporary document issued by the insurer to the insured while the policy is being prepared is','insurance certificate','promissory note','exchange slip','cover note','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:05'),(63,'The evidence of the contractual agreement between the insured and insurer is','policy','proposal form','insurance certificate','cover note','','','a','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:06'),(64,'Which of these is an aid to trade?','cover note','insurance','premium','policy','','','b','','model','1',87,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:07'),(65,'The following are exempted from a contract because they do not have the contractual capacity except','Drunkard','Alien','Mental patient','Adult','','','d','','model','1',69,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:15'),(66,'Insured is likewise known as','insuree','Insurer','policy holder','contractor','','','c','','model','1',90,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:16'),(67,'Insurance contract is between','Broker and Agent','Insured and Insurer','Insurer  and Agent','Insured and Agent','','','b','','model','1',72,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:17'),(68,'The buyer of insurance product is','Agent','Broker','Insured','Insurer','','','c','','model','1',76,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:18'),(69,'The seller of insurance product is','Insurer','Insured','Broker','Agent','','','a','','model','1',71,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:19'),(70,'Which of this is an odd one out?','offer and acceptance','contractual capacity','legality of object','Adhesion','','','d','','model','1',83,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:20'),(71,'The uncertainty as to the occurrence of a loos is','Hazard','Loss','Risk','insurance','','','c','','model','1',76,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:21'),(72,'The risks which affect the society and whose causes are beyond human control is','particular risk','static','fundamental','speculative','','','c','','model','1',74,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:22'),(73,'Risks that are peculiar to an individual actions and decision is known as','fundamental risk','particular risk','pure risk','speculative risk','','','b','','model','1',70,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:23'),(74,'Risk of loss resulting from change in culture and taste is called','static risk','pure risk','dynamic risk','speculative risk','','','c','','model','1',79,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:24'),(75,'The following risks are insurable except','particular','pure','static','dynamic risk','','','d','','model','1',90,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:25'),(76,'The following are insurable except','Marine','Goods','Gambling','Accident','','','c','','model','1',59,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:26'),(77,'The following are non-insurable except','Lose of profit as a result of change in fashion','Speculation','Lose of profit as a result of maladministration','Fire','','','d','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:27'),(78,'Factors which may influence the occurrence of a loss is','Risk','Loss','Peril','Hazard','','','d','','model','1',64,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:28'),(79,'Hazard that relates to the attitude of the insured is known as','Physical hazard','Good physical hazard','Moral hazard','Good moral hazard','','','c','','model','1',82,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:29'),(80,'Hazard that relates to the subject matter of insurance is called','moral','physical','peril','Good peril','','','b','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:30'),(81,'The following are examples of bad moral hazard except','Fraudulent activities','Carelessness','Honesty','Unreasonableness','','','c','','model','1',70,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:31'),(82,'The cause of a loss is known as','Risk','Peril','Hazard','Moral','','','b','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:32'),(83,'The  principle  of  insurance  which  states  that a person must be in a legally recognized relationship to what is  insured  such  that  he  will  benefit  from its existence or suffer by its loss is','utmost good faith','insurable interest','proximate cause','subrogation','','','b','','model','1',80,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:33'),(84,'A person who has lawful possession of goods belonging to another is known as','Owner','Bailee','Agent','Trustee','','','b','','model','1',76,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:34'),(85,'Transfer of rights and liabilities under a contract with the consent of the other party is known as','Assignment','liability','Interest','Legality','','','a','','model','1',74,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(86,'Another name for utmost good faith is','cadent','cede','ex gratia','uberrimae fidei','','','d','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(87,'The principle of insurance which states that the insure should be truthful and disclose all material fact is','subrogation','utmost good faith','indemnity','insurable interest','','','b','','model','1',77,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:37'),(88,'A miss statement of fact that is made by the insured or his broker to an underwriter during negotiation is called','annuity','misrepresentation','endorsement','disclosure','','','b','','model','1',71,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:38'),(89,'Indemnity is provided through the following media except','cash','commission','reinstatement','repair','','','b','','model','1',67,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:39'),(90,'Any circumstance that promotes the probability of a loss is called','accident','hazard','loss','risk','','','b','','model','1',100,'Admin','2017-01-09 13:02:58','2020-07-17 04:01:21'),(91,'A financial compensation sufficient to return the insured back to the original position after loss is known as','deposit','loan','indemnity','profit','','','c','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:41'),(92,'Another name for business interruption insurance is','property insurance','consequential loss','credit insurance','excess loss','','','b','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:42'),(93,'Subrogation principle can be applied in the following insurance policies except in','aviation policy','engineering policy','life policy','marine policy','','','c','','model','1',77,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:43'),(94,'Payment of claims  in  liability  insurance are usually made in favour of','insurance agent','a third party','employees','employers','','','b','','model','1',86,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:44'),(95,'The person  that  brings  an insurance  contract  into existence between  the principal and third party  is a/an','agent','bailee','contractor','insurer','','','a','','model','1',75,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:45'),(96,'“Hull” in marine policy refers to the','boiler','cost of transporting the goods','goods on board','ship','','','d','','model','1',96,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:46'),(97,'A formal document containing the condition of the insurance contract is called','agreement','contract form','contract slip','policy document','','','d','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:47'),(98,'Engineering insurance covers the following except','boiler explosion','building and civil','business interruption','machinery breakdown','','','c','','model','1',82,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:48'),(99,'A policy designed to protect individuals against negligence while carrying out their daily activities is called','business interruption','employers liability','engineering','professional indemnity','','','d','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:49'),(100,'Unlawful breaking and entering into any premises or place of safe keeping is covered under which of these policies?','burglary','business interruption','employers liability','public liability','','','a','','model','1',71,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:50'),(101,'When someone is placed back in the same financial position that he was in just prior to a loss, that is ----','Actual cash value','Consideration','Contribution','Indemnity','','','d','','model','2',73,'Admin','2017-01-09 13:21:17','2020-07-14 15:25:51'),(102,'Insurable interest means','Interest gained on money in a bank','Interest payable on a loan','Financial interest a person has in something he expects to inherit','The financial interest a person has in something of value','','','d','','model','2',93,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:52'),(103,'Below are insurable policies except','Earthquake','Fire','Life','Marine','','','a','','model','2',82,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:53'),(104,'The term pooling of risks in insurance means that','Many who face risks pay premium so that those who suffer loss may be reimbursed','Insurance companies share heavy losses','Insurance company re-assures with another','Insurance companies operates pool betting business','','','a','','model','2',80,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:54'),(105,'Which of the following is not a principle of insurance?','Indemnity','Compensation','Proximate cause','Insurable interest','','','b','','model','2',78,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:55'),(106,'The amount of money paid periodically by an insured to the insurance company to cover risk is called','Commission','Premium','Cover note','Dividend','','','b','','model','2',80,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:56'),(107,'Insurance was developed as a result of the existence of','Hazards','Loss','Risk','Indemnity','','','c','','model','2',79,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:57'),(108,'Which of the following is not a function of insurance?','Serves as collateral','Encouraging saving','Provides insecurity','Reduces risks','','','c','','model','2',89,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:58'),(109,'In the utmost good faith principle, the value of the subject matter should','Be over stated','Understated','Not be stated','Not be overstated nor understated','','','d','','model','2',66,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:59'),(110,'Which of the following is non- insurable risk?','Gambling','Accident','Fire','Theft','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:00'),(111,'Which of the following is a temporary document given to the insured in an insurance contract?','Cover note','Subrogation','Policy document','Reinsurance','','','a','','model','2',87,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:01'),(112,'Hazard that deals with the human habits and character that arises from human attitude and the conduct of people is called','physical','Moral','Static','Dynamic','','','b','','model','2',62,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:02'),(113,'A peril is best defined as','Chance of a loss','The occurrence of a loan','The cause of a loss','The result of a loss','','','c','','model','2',80,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:03'),(114,'One of the essential features of insurance contract is','Premium','Subrogation','Interest','Disclosure','','','d','','model','2',77,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:04'),(115,'Insurance  feature  that  emphasized   the  fact  that insurance contract is a contract between the insurer and  the  insured  and  which states  that  the insured must  adhere to  the  agreement  is  called','Disclosure','Warranty','Adhesion','Material facts','','','c','','model','2',78,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:05'),(116,'The principle that requires the insured to disclose to the insurer all matters relating to the object of insurance is called','Uberrimae fidei','Proximate cause','Abandonment','Subrogation','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:06'),(117,'There must  be  a  close  connection  between  the loss actually suffered and the risk is relating to the principle  of','Abandonment','Proximate cause','Utmost good faith','Adhesion','','','b','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:07'),(118,'The principle of subrogation imposed an obligation on the insured to','Disclose all material information','Have financial risks in the object','Press for compensation','Surrender legal right after compensation','','','d','','model','2',69,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:08'),(119,'Which of the following is not a principle of insurance','Indemnity','Insurable risk','Subrogation','Insurable interest','','','b','','model','2',74,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:09'),(120,'An application form which is filled by anyone taking out an insurance policy is called','A policy form','A claim form','A proposal form','Proximate cause form','','','c','','model','2',70,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:10'),(121,'Insurance is necessary because of the need to','Pool resources together','Meet uncertainties in future','Make profit','Lend money to individual','','','b','','model','2',86,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:11'),(122,'The policy that covers debt that cannot be recovered is called','Life assurance','Motor vehicle policy','Comprehensive policy','Bad debt insurance policy','','','d','','model','2',66,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:12'),(123,'Risk whose cause is beyond human control is','Fundamental','Speculative','Particular','Static','','','a','','model','2',87,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:13'),(124,'Cover note usually run for about','One month','Two days','5 years','3 days','','','a','','model','2',88,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(125,'A card used by motorist in the West African sub-region is called','Brown card','Certificate','Insurance card','visa card','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(126,'Uncertainty of loss is known as','Risk','Certainty','Insurance','Hazard','','','a','','model','2',109,'Admin','2017-01-09 13:21:19','2020-07-19 05:05:03'),(127,'Re-insurance contract is between','Re-insurer and insurer','Re- insurance and insurance','Co-insurer and insurer','Insurance broker and re-insurer','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:16'),(128,'The continuation of insurance contract after expiration is','Renewal','Revival','Resuscitation','Rejuvenation','','','a','','model','2',68,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:17'),(129,'The  payment  made  by  underwriter  as  a  form  of  \tkindness  without  admission  of  liability  so  as  to maintain goodwill is known as ------------','Kindness payment','Ex-gratia payment','Favour payment','Claim','','','b','','model','2',72,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:18'),(130,'One of the following is the duty of the insured in insurance claim process','Late report of the loss','Little idea of the loss size','Quick report of the loss','Hiding fact','','','c','','model','2',66,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:19'),(131,'The prices set by the insurer for the insurance cover is known as','Due','Levy','Premium','Charge','','','c','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:20'),(132,'The transfer of risk already undertaken from one insurance company to another is','Over insurance','Re insurance','Under insurance','Group insurance','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:21'),(133,'When an insured person admits that he has indemnified, he means that','The damage proper by has been recovered','He was paid premium fully','The insurance company has restored him to his former position','He was paid his premium fully','','','c','','model','2',71,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:22'),(134,'A house worth N=60,000 insured against fire for N=40,000.  Fire destroyed and cause damage worth N=30,000. On the house under which insurance principle will the owner be entitled to compensation of N=30,000.','Contribution','Subrogation','indemnity','Uberrimae fidei','','','c','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:23'),(135,'The person who calculate the amount given to the insured if he does not want to continue with the contract of insurance is called','Actuary','Insurance agent','Insurance broker','Assessor loss adjuster','','','d','','model','2',86,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:24'),(136,'The amount given to the insured if he does not want the contract to continue is called','Insurance broker','Premium','Surrender value','Assessor loss adjuster','','','c','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:25'),(137,'The sum paid for transporting the goods or for the hire of a ship is called','Marine cargo','Freight insurance','Hull insurance','Risk insurance','','','b','','model','2',86,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:26'),(138,'The duty of the loss adjuster in insurance claims is to','Make loss','Prevent loss','Safeguard loss','Recommend appropriate payment','','','d','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:27'),(139,'Consequential loss is also known as','Business interruption insurance','Credit insurance','Excess loss','Property insurance','','','a','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:28'),(140,'Subrogation principle can be applied in the following insurance policies except in','motor','Life','Marine','Aviation','','','b','','model','2',103,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:44'),(141,'The acronym “CllN” refers to','Certified insurance institute','Certified insured institute','Certified international institute','Chartered insurance institute','','','d','','model','2',83,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:45'),(142,'Amount paid to the beneficiary upon the death of the insured is','Premium','Compensation','Declaration','Death benefit','','','d','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:46'),(143,'The clauses in the policy which make alterations or additions to the information stated in the policy is known as','correction','Modification','Change','Endorsement','','','d','','model','2',64,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:47'),(144,'The date on which an insurance or reinsurance contract comes into force is known as','Starting point date','Inception date','Beginning date','Commencement date','','','b','','model','2',80,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:00'),(145,'Factor that causes an exposure to injury, loss or damage is','Risk','Hazard','Peril','Accident','','','b','','model','2',65,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:08'),(146,'Workman compensation is also referred to as','Fidelity insurance','Employment liability','Public liability','Product liability','','','a','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:09'),(147,'An insurance cover for lawyers, accountants and brokers is','Employment','Professional','Public','Product','','','b','','model','2',65,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:10'),(148,'The deliberate or intentional throwing over board of part of a cargo to lighten the ship in the interest of the reminder of the cargo is','Barratry','Jettison','Breach','Caveat emptor','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:11'),(149,'The wrongful act willfully committed by either the master or the prejudice of either the owner or crew to the chatterer of the ship is','Barratry','Caveat emptor','Bailee','Jettison','','','a','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:12'),(150,'The legal right to insure a subject matter is','Indemnity','Subject Matter','Subrogation','Insurable interest','','','d','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:13'),(151,'--------- shows what the insured should do or not do to maintain the existence of the policy','Cover note','Policy','Warranty','Certificate','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:14'),(152,'The uncertainty of an event occurring is known as','Hazard','Risk','Loss','Accident','','','b','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:15'),(153,'The provider of protection to an insurance  company against the excess risk it has given insurance covers is called','Assurer','Insuring','Reinsurer','Insurer','','','c','','model','3',74,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:16'),(154,'---------- is the evidence cover of the risk given to the insured by the insurer','Cover','Policy','Claim','Compensation','','','b','','model','3',77,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:19'),(155,'------------ is the protection which the insured buys for his risk','Indemnity','Compensation','Cover','Subrogation','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:20'),(156,'A temporary certificate to show that a cover is in existence is called','Policy','Certificate','Cover note','Claim slip','','','c','','model','3',73,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:21'),(157,'------------ is used to bring amendment in a policy that is either to add in a new thing or removal of an existing thing in the policy','Excess','Endorsement','Claim form','Policy','','','b','','model','3',65,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:23'),(158,'The cause of a loss is known as','Peril','Hazard','Loss','Risk','','','a','','model','3',85,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:24'),(159,'The price of insurance is known as','Rate','Interest','Premium','Profit','','','c','','model','3',80,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:25'),(160,'The monetary consideration paid by the insured to the insurers for the insurance granted by the policy is called','Premium','Money','Price','Benefit','','','a','','model','3',75,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:26'),(161,'------------- is a policy designed to place the insured in the same financial position as he was immediately before the happening of the event insured against','Indemnity','Subrogation','Surrender value','Actuary','','','a','','model','3',82,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:27'),(162,'The essential value of valid contract that states that the parties to a contract must be in perfect agreement and have a common mind is','Consideration','Perpetual existence','Excess','Consensus ad-idem','','','d','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:28'),(163,'A  Statement signed by the insured, certifying the Statement','Certificate','Declaration','Confirmation slip','Accuracy statement','','','b','','model','3',65,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:29'),(164,'Change for the transportation of goods by water is called','Bill','Ticket','Freight','Consideration','','','c','','model','3',87,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:30'),(165,'Life assurance provides dual benefits of savings and ------------ to a policy holder','Acceptance','Consideration','Contribution','Security','','','d','','model','3',88,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:31'),(166,'Another name for consequential loss is','Stop loss','Credit insurance','Business interruption insurance','Excess loss','','','c','','model','3',73,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:32'),(167,'Subrogation principle can be applied in the following insurance policies except in -------- policy','Life','Motor','Theft','Burglary','','','a','','model','3',61,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:33'),(168,'A place where the business of insurance is transacted is called a/an','Insurance market','Brokerage firm','Insurance house','Insurance conference room','','','a','','model','3',66,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:34'),(169,'A customer that suffers loss or sustain injury while using a business outfit that belongs to another perosn, can sue the property owner under -------------- insurance','Professional indemnity','Public liability','Employers’ liability','Personal accident','','','b','','model','3',77,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:35'),(170,'The type of questionnaire drawn up by   insurers, requesting certain information to assess risk is --------- form','Acceptance','Compensation','Credit','Proposal','','','d','','model','3',67,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:38'),(171,'The shifting of responsibility of one’s own losses to another is known as ---------- transfer','Fund','Risk','Business','Policy','','','b','','model','3',72,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:39'),(172,'A financial compensation sufficient to return the insured back to his original position after loss is known as','Deposit','Loan','Indemnity','Overdraft','','','c','','model','3',73,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:40'),(173,'The following are types of life assurances,  except','annuity','Endowment','Hire purchase','Whole life','','','c','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:41'),(174,'A marine policy that provider cover for the construction of sea vessels is called --------- policy','Building','Mixed','Port','Valued','','','a','','model','3',106,'Admin','2017-01-09 13:38:39','2020-07-21 02:51:51'),(175,'Spreading of risk to ensure that no insurer is liquidated by the occurrence of a large loss is the concept of','Insurance','Re insurance','Renewal','Treaty','','','b','','model','3',88,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:43'),(176,'The person  that  brings  an  insurance  contract into existence  between  the principal  and  third  party is a/an','Agent','Bailee','Contractor','Insurer','','','a','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:44'),(177,'Any circumstance that promotes the probability of a loss is called','Accident','Hazard','Loss','Risk','','','b','','model','3',64,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:45'),(178,'Indemnity is provided through the following media except','Cash','Commission','Reinstatement','Repair','','','b','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:47'),(179,'The policy that covers loss of cash while in transit or at home is --------------- insurance','Burglary','Business interruption','Credit','Money','','','d','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:48'),(180,'A person who makes an insurance claim is called','Actuary','Adjustor','Claimant','Client','','','c','','model','3',91,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:49'),(181,'To break or act contrary to a law or promise means','Breach','Shake','Confirm','Disagreement','','','a','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:50'),(182,'A professional officer of an insurance company whose duty among others is to calculate the premium to be \tpaid by the insured is called','Agent','Principal','Actuarist','Adjuster','','','c','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:51'),(183,'Which of these is insurable?','Fire','Inflation','Bad publicity','Riot and war','','','a','','model','3',85,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:52'),(184,'The principle that requires all material facts to be disclosed is known as','Indemnity','Fidelity','Proximate cause','Utmost good faith','','','d','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:53'),(185,'In insurance contract, failure to disclose all relevant material facts will render the contract','legal','Voidable','Void','Implied','','','c','','model','3',82,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:54'),(186,'Any information that will influence a prudent insurer is called','contract','misrepresentation','disclosure','Material facts','','','d','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:55'),(187,'The insurance principle which implies that a proof is required that the direct and immediate cause of the loss suffered was by the occurrence of the risk insured against is called','Indemnity','Proximate cause','Insurable interest','Utmost good faith','','','b','','model','3',74,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:56'),(188,'Method of providing indemnity whereby subject matter is being restored to its former position is','Repairs','Cash','Reinstatement','Replacement','','','c','','model','3',77,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:57'),(189,'A relief to insurer of each and every loss which does not exceed a specified amount is','Excess','Franchise','Deductible','Annuity','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:58'),(190,'When an   insurer agrees   to   replace   irreparably damaged or stolen goods with similar type it is called','Reinstatement','Cash','Repairs','Replacement','','','d','','model','3',74,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:59'),(191,'Cover note usually run for about','21 days','one month','12 months','3 month','','','b','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:00'),(192,'The process of changing anything wrong with the policy to make it current is','Endorsement','Specification','Rectification','Correction','','','c','','model','3',60,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:01'),(193,'A syndicate or an insurance company that transfer risk under re-insurance is','Cede','Cession','Commutation','Cedant','','','d','','model','3',67,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:02'),(194,'A particular risk which is transferred to another re-insurance under a re-insurance treaty is','Cedant','Cession','Facultative','Cede','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:03'),(195,'Application by the insured to the insurer for the payment of money due under his contract of insurance is','Proof','Evidence','Claim','Compensation','','','c','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:04'),(196,'The following are the methods of claim settlement except','Cash','Repair','Reinstatement','Repayment','','','d','','model','3',81,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:05'),(197,'Person who makes claim is called','Claimant','Client','Insured','Insurer','','','a','','model','3',65,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:06'),(198,'A payment made by insurer as a form of sympathy to maintain goodwill is','Compensation payment','Contract payment','Charity payment','Ex - gratia payment','','','d','','model','3',79,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:07'),(199,'The policy that provides protection for goods or cargoes and ships against the perils of the sea is','Fire','Marine','Aviation','Credit','','','b','','model','3',82,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:08'),(200,'Another name for an insured in a life insurance contract is','Insurer','Assured','Assurer','Agent','','','b','','model','3',73,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:09'),(201,'Insurance is defined as','risking of loss','pooling of risk','gathering of risk','waiving of risk','','','b','','model','4',76,'Admin','2017-01-09 13:49:45','2020-07-14 15:28:10'),(202,'In a contract of insurance, a firm statement is usually made by a person known as the','offeror','offeree','insur','client','','','a','','model','4',67,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:11'),(203,'The premium paid by the insured to the insurance company is','capital','commission','common fund','consideration','','','d','','model','4',86,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:12'),(204,'The insured is also known as','the client','the consumer','the policy holder','agent','','','c','','model','4',81,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:13'),(205,'The coming together of minds of  the two parties to the insurance contract is called','surrender value','acceptance','consensus ad-idem','adhesion','','','c','','model','4',69,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:14'),(206,'Uberrimae fidei is equally known as','contract','agreement','consensus','utmost good faith','','','d','','model','4',83,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:15'),(207,'The legal right that a person must have to enable him or her to insure his or her property is known as','freedom','franchise','insurable interest','Access right','','','c','','model','4',64,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:17'),(208,'An undertaking by the insured that certain things shall be done or not be done or certain things shall be put in place or not in place is called','warranties and representation','utmost good faith and uberrimae fidei','insurable and non-insurable','subrogation and indemnity','','','a','','model','4',65,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:18'),(209,'In insurance, uncertainty of loss means','hazard','risk','accident','earthquake','','','b','','model','4',70,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:19'),(210,'Occurrence of an unplanned event is called','hazard','loss','risk','speculation','','','c','','model','4',76,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:20'),(211,'An insurance contract where both parties signed the agreement which involve mutuality of agreement is known as','unilateral contract','multilateral contract','bilateral contract','united contract','','','c','','model','4',66,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:21'),(212,'An insurance contract which does not involve mutuality of agreement in which only one of the parties involved in the contract makes promises that are legally binding is called','double contract','single contract','multilateral contract','unilateral contract','','','d','','model','4',75,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:22'),(213,'Insurance is a contract that is based on','possibility','probability','positivity','negativity','','','b','','model','4',98,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:23'),(214,'Assurance is a contract that is based on','negativity','possibility','positivity','probability','','','d','','model','4',60,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:24'),(215,'With insurance contract there is','certainty of occurrence','uncertainty of occurrence','certainty of reward','uncertainty  of reward','','','b','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:25'),(216,'With assurance contract there is','uncertainly of reward','certainty of reward','certainty of occurrence','uncertainty of occurrence','','','c','','model','4',80,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:26'),(217,'Indemnity is not applicable in','assurance contract','insurance contract','insurance terms','insurance content','','','a','','model','4',87,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:27'),(218,'Non- indemnity insurance means that the assured can','be restored back to his former position','not be restored back to his former position','be brought back to contract','not be brought back to contract','','','b','','model','4',83,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:28'),(219,'A seller of insurance product is','insurer','promisor','client','insured','','','a','','model','4',74,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:29'),(220,'A buyer of insurance product is','insured','promise','insurer','insuree','','','a','','model','4',76,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:30'),(221,'A contract which has no legal effect is called','voidable contract','legal contract','void contract','valid contract','','','c','','model','4',77,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:31'),(222,'A contract that is contrary to public policy is','valid contract','legal contract','illegal contract','voidable contract','','','c','','model','4',87,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:33'),(223,'Which of the following cannot enter into an insurance contract?','adult','insured','minor','insurer','','','c','','model','4',91,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:34'),(224,'Risk that affect the society and whose causes are beyond human control is','particular risk','pure risk','fundamental risk','static risk','','','c','','model','4',84,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:35'),(225,'The process of evaluating and minimizing risk is','risk management','risk certainty','risk insurance','risk re-grouping','','','a','','model','4',76,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:36'),(226,'Another name for utmost good faith','expirit - de - corps','uberrimae fidei','caveat emptor','proximate cause','','','b','','model','4',80,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:37'),(227,'Inter company agreement in which insurers agreed to waive their right against each other for loss is','knock for knock agreement','employers’ liability','tit for tat agreement','salvage agreement','','','a','','model','4',72,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:38'),(228,'Contribution will only arise when','two or more parties disagree','two or more parties are promisor','two or more policies of indemnity exist','one policy of indemnity exist','','','c','','model','4',82,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:39'),(229,'One of the following is a condition for contribution','bilateral interest','multilatual interest','two subject matter','common subject matter','','','d','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:40'),(230,'one of these is a content of a proposal form','children of the proposer','education of the proposer','occupation of the proposer','educational','','','c','','model','4',74,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:41'),(231,'The statement “ I to the best of my knowledge hereby confirm that the statements contained in this prosal form are true and correct” represents','confirmation','declaration','witnessing','humility','','','b','','model','4',75,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:42'),(232,'When the proposer fails to fill the proposal form truthfully, the contract will become','voidable','illegal','void','enforceable','','','c','','model','4',100,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:45'),(233,'Proposal form is used in the following classes of insurance except','Accident','theft','life','large risk of fire','','','d','','model','4',73,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:46'),(234,'The following classes of insurance apply the use of proposal form except','public liability','large risk of marine insurance','small risk of marine insurance','theft','','','b','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:47'),(235,'Proposal form is not applicable to the following except','aviation','engineering','large risk of fire','fidelity guarantee','','','d','','model','4',75,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:48'),(236,'Which of the method below can be used to provide indemnity in the event of loss','moral advice','resolution of policy','cash payment','professional encouragement','','','c','','model','4',85,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:49'),(237,'A card used by motorist in the West African sub-region is called','insurance certificate','insurance register','insurance green card','Ecowas brown card','','','d','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:49'),(238,'Situation that are not included in the policy are usually referred to as','condition','exception','preamble','operative clause','','','b','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:51'),(239,'The part of a policy form that shows the name and address of the company is known as','heading','conclusion','condition','preamble','','','a','','model','4',85,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:52'),(240,'One of these shows the introduction to the details of the insurance policy, parties as well as the premium for the contract','preamble','heading','exception','condition','','','a','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:53'),(241,'Policy condition which are automatically applicable and not stated in the contract of agreement is known as','agreed condition','agreed negotiation','implied condition','expressed condition','','','c','','model','4',83,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:54'),(242,'A written amendment in addition or alterations to the information stated in the policy is called','endorsement','specification','construction','attestation','','','a','','model','4',67,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:55'),(243,'The process of changing what is wrong in the policy is called','specification','attestation clause','rectification','justification','','','c','','model','4',70,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:56'),(244,'The process of transferring risk from one insurer to another is called','contribution','re-insurance','re-processing','re-activating','','','b','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:57'),(245,'A reminder to the insured that this existing contract is due to expire is','proposal form','slip','claim form','renewal notice','','','d','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:58'),(246,'One of these is a form of motor vehicle insurance policy','comprehensive','1st party only','2nd party only','accident','','','a','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:59'),(247,'Third party provides cover only for damages to','assurer','insurer','2nd party','another person','','','d','','model','4',83,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:00'),(248,'The type of cover for violent and forcible entry into a premises is called','burglary and theft','third party fire and theft','third party and theft','stealing','','','a','','model','4',63,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:01'),(249,'The deliberate throwing overboard of part of a cargo to lighten the ship is called','barratry','overthrown','voyaging','jettisoning','','','d','','model','4',86,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:02'),(250,'The deliberate throwing overboard of part of a cargo without a good intention is called','jettison','barratry','voyaging','overboard','','','b','','model','4',64,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:03'),(251,'Insurance premium depends on the','amount of profit to be made by the insurer','various insurance companies in a place','extent of the possible loss and the frequency of risk','supply and demand','','','c','','model','5',87,'Admin','2017-01-09 13:58:40','2020-07-14 15:29:04'),(252,'Subrogation in insurance means that','the insured could not make a profit from the insurer','the insured must be fully indemnified','the insurer must take the place of the insured','the insured should pool their risks','','','c','','model','5',76,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:05'),(253,'Payment by the insurer to the insured out of sympathy is known as','utmost good faith','proximate cause','peril','ex-gratia payment','','','d','','model','5',74,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:06'),(254,'If the insured does not want the contract to continue he receives','surrender value','consideration','premium','commission','','','a','','model','5',80,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:07'),(255,'Re-insurance means','accumulation of risk','multiplication of risk','transfer of risk','adding of risk','','','c','','model','5',86,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:08'),(256,'Another name for the assured is','insurance company’s client','insurance broker','insurance company','insurance agent','','','c','','model','5',76,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:09'),(257,'One of the following is legally used by the insured while the policy is being processed','indemnity form','claim form','cover note','proposal form','','','c','','model','5',75,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:10'),(258,'One of the following is necessary to meet uncertainties in future','profit','capital','borrowing','insurance','','','d','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:11'),(259,'When an insured person admits that he has been indemnified, he means that','the insurance company has accepted his claims','the damaged property has been recovered','He has paid his premium','the insurance company has restored him to his former position','','','d','','model','5',78,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:12'),(260,'If the insured has been fully indemnified, the insurers are entitled to take any advantage due to the insured. Principle of insurance involved is','insurable interest','contribution','indemnity','subrogation','','','d','','model','5',77,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:13'),(261,'The settlement of disagreement between the insured and the insurer is called','litigation','arbitration','negotiation','compromising','','','c','','model','5',71,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:14'),(262,'One of this is a method of claim settlement','price','trade by barter','exchange','cash','','','d','','model','5',75,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:15'),(263,'Replacement of damaged property by the insurance company is','arbitration','negotiation','Re-instatement','rectification','','','c','','model','5',84,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:17'),(264,'A reminder to the insured who may have forgotten to seek for continuation after his policy expiry date is','notification message','renewal notice','registration notice','agreement notice','','','b','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:19'),(265,'Which of the following risks is covered by insurance policy?','an investment loss on the stock market','dishonesty of an employee leading to fraud','failure of a business venture','rise and fall of prices of goods in the market','','','b','','model','5',78,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:20'),(266,'One of this is the evidence of insurance contract','schedule','policy','proposal form','endorsement','','','c','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:21'),(267,'One of this is the consideration paid for insurance contract','fee','cheque','commission','premium','','','d','','model','5',73,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:22'),(268,'The payment made when the insured is not entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:23'),(269,'To which of the following does the principle of utmost good faith apply in a contract of insurance?','the insurer only','the proposer only','the third party and insured','insurer and proposer','','','d','','model','5',73,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:24'),(270,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of policy','resolution of dispute','','','a','','model','5',88,'Admin','2017-01-09 13:58:49','2020-07-21 15:49:29'),(271,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','model','5',91,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:26'),(272,'A factor which may influence the occurrence of a loss is','peril','loss','hazard','risk','','','c','','model','5',76,'Admin','2017-01-09 13:58:52','2020-07-14 15:29:27'),(273,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','model','5',78,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:28'),(274,'A reinsurance contract in which the reassured agrees to offer and the reinsurer agrees to accept all risks of certain size within a defined class is','underwriting','treaty','tort','syndicate','','','b','','model','5',72,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:29'),(275,'A contract which has no legal effect is called','void policy','voidable policy','legal policy','formal policy','','','a','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:30'),(276,'The contract aimed at providing specific payment at regular intervals for a fixed   period or for life is','accident','annuity','average','term','','','b','','model','5',95,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:31'),(277,'policy designed for the insured who is incapacitated to carry out normal duty is','medical expenses','temporary disablement','permanent disablement','medical expenses','','','b','','model','5',79,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:32'),(278,'Physical loss of limbs or total blindness injury is an example of','permanent disablement','temporary disablement','mid-term disablement','total disablement','','','a','','model','5',75,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(279,'A policy that covers the peril of the sea is','aviation','marine','life','fire','','','b','','model','5',83,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(280,'An  attempt  to  deprive  someone of his  property is','theft','burglary','robbery','larceny','','','c','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:35'),(281,'The process of examining, accepting or rejecting risks and classifying the ones accepted is','underwriting','policy','procedures','warranty','','','a','','model','5',79,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:35'),(282,'The periodic payment made by the insured to the insurer as financial cost of obtaining insurance','annuity','premium','claim','dividend','','','b','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:36'),(283,'The amount added to the standard premium in respect of the larger than standard risk presented by the proposer is called','premium increase','premium loading','premium payment','premium commission','','','b','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:37'),(284,'Return premium is the same thing as','premium payment','premium refund','premium tax','premium bonus','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:38'),(285,'The principle of maritime law which makes owners of ship and cargo share in a lost incurred voluntarily is','general average','special average','specific average','particular average','','','a','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:39'),(286,'The amount given to the insured if he does not want the contract to continue is called','premium','price','consideration','surrender value','','','d','','model','5',74,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:40'),(287,'Partial loss can be divided into','particular average and general average','particular average and total loss','actual loss and total loss','total loss and particular loss','','','a','','model','5',88,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:41'),(288,'Marine  losses are divided into','actual total and total loss','total loss and partial loss','partial loss and actual loss','average loss and partial loss','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:42'),(289,'The division of total loss are','average loss and partial loss','partial loss and full loss','total loss and actual loss','actual total loss and constructive total loss','','','d','','model','5',70,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:43'),(290,'Marine insurance policy which covers all the ship or vessels belonging to one owner is','flect policy','mixed policy','value policy','fixed policy','','','a','','model','5',86,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:44'),(291,'The full meaning of NAICOM is','Nigerian insurance company','national insurance commission','national insurer commission','national insured commission','','','b','','model','5',83,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:45'),(292,'Speailative risks are','insurable risk','non insurable risk','financial risk','non financial risk','','','b','','model','5',85,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:46'),(293,'The form of risk that can easily be calculated and estimated is known as','non insurable risk','non-financial risk','speculative risk','insurable risk','','','d','','model','5',83,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:47'),(294,'A risk that has its origin in the activities of an individual and the effects borne by this individual is called','pure risk','particular risk','speculative risk','fundamental risk','','','b','','model','5',66,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:48'),(295,'Business interruption insurance can also be called','consequential loss','constructive loss','partial  loss','general loss','','','a','','model','5',88,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:50'),(296,'The maximum number of days allowed for a policy holder to pay his renewal premium after it has become due is called','surrender value','conditions','days of grace','days of liberty','','','c','','model','5',73,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:51'),(297,'The  factor  that has  the  tendency  to  increase  the occurrence of a risk is called','risk','loss','hazard','peril','','','d','','model','5',80,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:52'),(298,'The cause of a loss is','peril','hazard','risk','loss','','','a','','model','5',85,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:53'),(299,'The party who proposes to the insurance company to insure his properly is called','offeree','offeror','acceptance party','offer client','','','b','','model','5',75,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:55'),(300,'One of these is a full time professional','broker','agent','factor','insurer','','','a','','model','5',70,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:56'),(301,'Insurance against risk is possible because of the law of','large numbers','few numbers','inverse proportion','diminishing returns','','','a','','wassce','2015',78,'Admin','2017-01-09 14:33:34','2020-07-14 15:29:59'),(302,'Which  of  the  following  is  not  a  component  of  an insurance policy?','Signature clause','Particular clause','Recital clause','Operative clause','','','b','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:01'),(303,'Which of the following is a component of premium in insurance?','Margin','Reserve','Funds','Capital','','','c','','wassce','2015',73,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:03'),(304,'In which of the following classes of insurance is no <em>claim discount</em> applicable?','Money insurance','Marine insurance','Motor insurance','Aviation insurance','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:05'),(305,'The payment by an insurer to the insured in the event of loss is','claim','premium','fee','interest','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:07'),(306,'Which of the following is the function of a loss adjuster?','Ensures payment of adequate compensation','Advises the insurer on claim','Operates with unlimited authority','Notifies insurer of the loss','','','a','','wassce','2015',68,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:08'),(307,'A fire insurance policy guaranteed by the insured to be in place for a stated period with a particular insurer is granted a _____________','no claim discount','fleet discount','long - term agreement discount','plurality discount','','','a','','wassce','2015',74,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:09'),(308,'A type of re - insurance  where  the re - insurer has  the option  to  accept  or  reject  any  risk  presented  for re-insurance is','stop loss','facultative','treaty','excess of loss','','','b','','wassce','2015',91,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:10'),(309,'A new Nissan car valued at N= 350,000 was used to replace a Peugeot car with a sum insured N= 250.000 in private policy. The Peugeot car enjoys a 25% no claim discount. If the rate of premium is 11% and the no claim discount is transferred to the  new vehicle, what  would be the premium for the new Nissan car?','N= 20,625','N= 27,500','N= 28,875','N= 38,500','','','b','','wassce','2015',85,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:12'),(310,'One of the features of term assurance is','investment','profit','protection','surrender','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:13'),(311,'Which  of  the  following  statements  is  true  about property insurance?','The probability that the event may occur','The probability that the event will not occur','The probability that the event may or may not occur','The probability that the event must occur','','','c','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:14'),(312,'In a life assurance contract, when does  the  principle of insurable interest arise?','At the beginning of the contract','At the time of claim','At the middle of the contract','At the time of payment of premium','','','a','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(313,'Which class of life assurance would a young couple who desires to start a new business in five years time purchase?','Whole life policy','Limited whole life policy','Keyman policy','Endowment policy','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(314,'In which of the following policies is <em>certificate of insurance</em>  used?','Burglary insurance','Product liability insurance','Employer’s liability insurance','Money insurance','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:16'),(315,'Which  of  the  following  would  not  give  cause  for subrogation right?','Benefit','Contract','Statute','Salvage','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:17'),(316,'Educational endowment policy is designed to protect the interest of','father','mother','child','uncle','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:18'),(317,'A clause in an insurance policy that makes a claim jointly payable to the policyholder and the third party is','claim clause','mortgagee clause','mortgage clause','joint liability clause','','','d','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:21'),(318,'The policy that covers  an  insured  employee  against injury  sustained  in  the  course  of  employment  is','professional indemnity','product liability','public liability','employer’s liability','','','d','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:22'),(319,'What is  the  maximum  liability which the insurer can pay on a particular loss?','Average','Sum insured','Franchise','Excess','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:23'),(320,'A policy taken to cover several shipments for a sum assured is','floating policy','valued policy','declaration policy','special policy','','','a','','wassce','2015',70,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:24'),(321,'A policy taken for full protection against fire and other risks such as flood, tempest, riot and civil commotion is','consequential loss','fire and all risks policy','combined householder’s policy','fire and special perils','','','a','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:25'),(322,'The  person  that   transfers  risks  to  the  insurance company is called','a broker','an insured','an underwriter','a loss adjuster','','','b','','wassce','2015',82,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:26'),(323,'A clause in marine insurance policy prohibiting the insured from giving up a damaged property is','deductible','abandonment','indemnity','compensation','','','a','','wassce','2015',76,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:27'),(324,'Insurance is described as a risk','avoidance mechanism','regulating mechanism','transfer mechanism','assessment mechanism','','','c','','wassce','2015',69,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:28'),(325,'A fire insurance policy valued at N= 250,000 is issued at the rate of 0.2%. How much would the premium be, if the policy is granted with 5% long - term agreement discount?','N= 475','N= 500','N= 12,500','N= 13,000','','','a','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:29'),(326,'What is the full meaning of “NCRIB” in the insurance industry?','National  Council of  Registered Insurance  Brokers','Nigerian  Council of  Registered Insurance  Brokers','Nigerian Corporation of Registered Insurance Brokers','National Corporation of Registered Insurance Brokers','','','b','','wassce','2015',81,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:30'),(327,'Which of the following is not a function of an insurance underwriter?','Determining rates and coverage for the risk','Deciding whether to take the risk','Looking for an insurer to take the risk','Deciding whether to reject the risk','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:31'),(328,'The cover that is taken at the option of the motor vehicle owner is','a comprehensive cover','an act only cover','a third party only cover','a special type cover','','','c','','wassce','2015',92,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:31'),(329,'The  sum  insured  for  a  risk  is  N= 150,000  and  was accepted  for  fire  insurance at a rate of  0.25%. How much will the insured pay as a premium?','N= 125','N= 375','N= 500','N= 875','','','b','','wassce','2015',67,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:32'),(330,'The amount payable to an insured in the event of fire damage of household items is the','cost of repair','actual cash value','replacement cost','sum insured','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:33'),(331,'A motorist travelling from Ghana to Nigeria would be required to obtain one of the following types of motor insurance cover','green card','brown card','yellow card','purple card','','','b','','wassce','2015',73,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:34'),(332,'One of the benefits payable under personal accident insurance policy is','retirement benefit','surrender benefit','death benefit','transfer benefit','','','c','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:35'),(333,'A  trade  group for insurance  companies in  Nigeria is called','Chartered Insurance Institute of Nigeria','National Insurance Commission','Nigerian Corporation of Registered Insurance Brokers','Nigerian Insurers Association','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:36'),(334,'The process of  assessing  risks  in  insurance  and classifying them according to their degree of insurability so  that  the  appropriate  rate  may  be  assigned  is','inspecting','underwriting','surveying','evaluating','','','d','','wassce','2015',87,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:37'),(335,'Who  among  the  following  is  an  employer  of  loss adjuster?','Insurer','Broker','Insured','Agent','','','a','','wassce','2015',75,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:38'),(336,'The meaning of with <em>profit policy</em>  in life assurance is that the sum assured is paid','without profit','with profit','with interest','without interest','','','c','','wassce','2015',86,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:39'),(337,'The  document issued by  the  insurer when there is a change in the particulars of a risk insured is','endorsement','certificate','voucher','policy','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:40'),(338,'The amount charged when a ship overstays at the port under a marine contract is','penalty','fine','overcharge','demurrage','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:41'),(339,'Which of the following documents forms the basis of a contract in insurance business?','Policy document','Proposal form','Claim form','Discharge form','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:42'),(340,'The  difference  between  theft  and burglary insurance lies in evidence of','pilfering  of insured items','removal of insured items by tricks','forceful violent entry or exit affecting insured items','threat leading to loss of insured items','','','c','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:43'),(341,'The right of choice of option for method of indemnity is exercised by the','insured','insurance broker','insurance consultant','insurer','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:44'),(342,'Cover note  in  motor  insurance is issued for a period not exceeding','30 days','60 days','90 days','120 days','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:45'),(343,'Which of the following activities is not involved in claims management?','Proof of loss','Particulars of loss','Premium calculation','Primary investigation','','','c','','wassce','2015',71,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:46'),(344,'Life  assurance  contract is useful to a policyholder in the area of','production','protection','industrialization','rehabilitation','','','b','','wassce','2015',81,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:47'),(345,'Which  of  the  following  functions  is  related  to  life assurance contract? Benefits are','determined  on  the  happening  of  insured  event','determined by the indemnity doctrine','determined at the inception of the policy','assessed by the extent of the loss','','','c','','wassce','2015',90,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:48'),(346,'The saving element in a permanent life assurance policy which represent the policyholder’s interest in the policy is','surrender value','cash value','sum assured','residual value','','','c','','wassce','2015',79,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:49'),(347,'Which of the following is a duty of an insured in an insurance contract?','Concealment of facts','Exposure of facts','Disclosure of facts','Acceptance of facts','','','c','','wassce','2015',72,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:50'),(348,'The principle of maritime law which makes owners of a ship and cargo share in a loss incurred voluntarily is','special average','general average','specific average','particular average','','','b','','wassce','2015',80,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:51'),(349,'Which of the following factors limits indemnity?','Cession','Re - insurance','Excess','Co - insurance','','','b','','wassce','2015',74,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:52'),(350,'A  temporary  insurance  document  providing  coverage until a permanent policy is issued is','proposal form','cover note','policy document','insurance certificate','','','b','','wassce','2015',90,'Admin','2017-01-09 14:33:36','2020-07-20 20:42:06');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `irk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `irk` VALUES (1,'The reason Mecca suwar lay emphasis on oneness of Allah is because  ','it was the only way to call Mecca to Islam  ','it is the only article of faith  ','it is the only article of peace between Prophet Muhammad and the Mecca  ','the pre-Islamic Mecca were idolatrous ','','','d','','post-utme-aaua','2012',931,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:59'),(2,'Uthman B. Affan reigned between  ','644 and 656 ','657 and 688  ','655 and 657  ','644 and 655  ','','','a','','post-utme-aaua','2012',967,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:00'),(3,'The final and total prohibition of intoxicants is contained in Surah  ','al-Baqarah  ','an-Nisa  ','al-Maidah  ','al- I a  ','','','c','','post-utme-aaua','2012',941,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:02'),(4,'Hajjatul Wada of Prophet Muhammad was delivered in ','632','630','628','631','','','a','','post-utme-aaua','2012',951,'Admin','0000-00-00 00:00:00','2020-07-20 17:12:36'),(5,'Suratul-Kawthar was revealed following the _____ of the Mecca  ','uproar  ','insinuation  ','intolerance  ','resistance  ','','','b','','post-utme-aaua','2012',952,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:04'),(6,'Zakat is paid on the following except____  ','cash  ','cattle  ','slaves','all of the above ','','','c','','post-utme-aaua','2012',936,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:05'),(7,'The i itial suggestio  to o pile the Qu a   as aised   ','A u Bak  ','Umar B. Khattab  ','Zaid B. Thabit  ','Uthman B. Affan  ','','','b','','post-utme-aaua','2012',953,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:06'),(8,'One importance of wearing the Ihram during Hajj is_____  ','it directs the mind of all Muslims towards Allah  ','it purifies the Muslims  ','it makes all Muslims equal  ','it distinguishes pilgrims by country of origin  ','','','c','','post-utme-aaua','2012',954,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:07'),(9,'The reason for the declaration of Jihad against the Islamic state of Borno by Muhammad Bello wasbecause of the people','rebellion  ','extremism ','syncretism  ','fundamentalism ','','','c','','post-utme-aaua','2012',941,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:08'),(10,'The oa d gi e  to P ophet Muhad is the first  e elatio  of the Qu a  tells us about ____ ','education  ','prosperity  ','worship  ','Allah ','','','a','','post-utme-aaua','2012',939,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:09'),(11,'?eek k o ledge, e e  u to Chi a   ea s ____ ','go to China to seek knowledge  ','knowledge is found in China  ','go at any length to seek knowledge  ','knowledge must be sought in china   ','','','c','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:10'),(12,'The spokesman of the Muslims before Emperor Negus was ','Jaafar  ','Al-As  ','Abu Musa  ','Masa Musa  ','','','a','','post-utme-aaua','2012',928,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:11'),(13,'The first place of Muslims ig atio   as ___','Abyssinia  ','Taif  ','Medina  ','Yathrib ','','','b','','post-utme-aaua','2012',935,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:12'),(14,'Al-Tawrat was revealed to  ','Isa  ','Musa  ','Prophet Muhammad  ','Idris ','','','b','','post-utme-aaua','2012',933,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:13'),(15,'Literally, Boko Haram means  ','book is forbidden  ','education is forbidden  ','Western education is forbidden  ','school is forbidden  ','','','c','','post-utme-aaua','2012',918,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:14'),(16,'Wudu means  ','ablution','dry ablution  ','water ablution  ','wet ablution ','','','b','','post-utme-aaua','2012',955,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:27'),(17,'If Alhaji Musa Ayuba invested N10, 000: 00 in a business and made a profit of N2, 000: 00 at the','N215.00','N100: 00  ','N50:00  ','N1000:00 ','','','c','','post-utme-aaua','2012',950,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:28'),(18,'Ibadah refers to  ','worship of ancestors  ','worship of the Prophet  ','worship of the caliphs ','worship of Allah  ','','','d','','post-utme-aaua','2012',967,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:29'),(19,'Shirk means ____  ','monotheism ','polytheism','henotheism  ','syncretism ','','','b','','post-utme-aaua','2012',922,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:29'),(20,'Which one of the following is not associated with shirk _____ ','idol worship  ','trinity  ','monotheism  ','henotheism ','','','c','','post-utme-aaua','2012',938,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:30'),(21,'If a Muslim prays five times daily on a regular basis, how many times will he have prayed a regular ','1825','1835','1835','1845','','','a','','post-utme-aaua','2012',906,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:31'),(22,'Lakum dinukum wa Liya dinin means  ','religion is good  ','to you is my religion and to me yours  ','to you is your religion and to me is my religion ','my religion is better than yours  ','','','c','','post-utme-aaua','2012',916,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:32'),(23,'According to Islamic traditions, inability to marriage may rise as a consequence of   ','defects in sex organs  ','permanent illness  ','impotence  ','all of the above  ','','','d','','post-utme-aaua','2012',918,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:33'),(24,'Walam yakun lahu Kufuwan Ahadun is_____  ','the second ayat of the 112th surah  ','sixth ayat of the 111th surah  ','fourth ayat of the 112th surah ','seventh ayat of the 114th surah  ','','','c','','post-utme-aaua','2012',969,'Admin','0000-00-00 00:00:00','2020-07-20 08:27:27'),(25,'The main message of ayay Amanar-Rasul is  ','the significance of knowledge  ','the articles of faith  ','the pillars of Islam  ','payment of Zakat ','','','b','','post-utme-aaua','2012',925,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:35'),(26,'Talaq al-','irrevocable ','revocable  ','impermissible  ','detestable ','','','a','','post-utme-aaua','2012',922,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:36'),(27,'The word Hafizi in Q.  82: 10 means  ','angels  ','jinns  ','spirits ','man  ','','','a','','post-utme-aaua','2012',930,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:37'),(28,'When Prophet Muhammad got to Yathrib, he had to first and foremost settle the feud between  ','Aws and Khazraj  ','banu Nadir and Mecca  ','Mecca and Medina ','Aws and Nadir  ','','','a','','post-utme-aaua','2012',933,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:38'),(29,'The prophet admonishes that if an abomination is found, a true Muslim should at least  ','hate if from his heart  ','change it with his hands immediately  ','condemn it publicly  ','declare Jihad  ','','','a','','post-utme-aaua','2012',934,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:39'),(30,'The reason Q.  2: 219 forbids wine ad gambling is because  ','they lead one to greater sin than gain  ','they lead to poverty ultimately ','they lead to extravagance and intoxication  ','they make a Muslim to abandon religion  ','','','a','','post-utme-aaua','2012',945,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:02');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `mathematics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `mathematics` VALUES (1,'A regular polygon has each of it angles at 160. What is the number of sides of the polygon? ','36','9','18','20','','','c','','post-utme','2006',1187,'Admin','0000-00-00 00:00:00','2020-07-20 14:06:15'),(2,'A girl walks 30m from a point P on  a bearing of 040 to a point Q. she   then walks 30m on a bearing of 140 to a point R. the bearing of R from P is ','90','50 ','45','40','','','a','','post-utme','2006',1152,'Admin','0000-00-00 00:00:00','2020-07-19 22:17:49'),(3,'How many different three digit numbers can be formed using the integers 1 to 6 if no integer 1 to 6 if no integer occurs twice in a number? ','720','1260','2520','5040','','','b','','post-utme','2006',1138,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(4,'In how many different ways can the letters of the word GEOLOGY be arranged in order? ','720','1260','2520','5040','','','c','','post-utme','2006',1166,'Admin','0000-00-00 00:00:00','2020-07-21 12:54:26'),(5,'A cyclist rode for 30minutes at xhkm/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14   ','x<20  ','x<29  ','x< 28','','','d','','post-utme','2006',1168,'Admin','0000-00-00 00:00:00','2020-07-20 14:09:39'),(6,'A business invested a total of N200,000 in two companies which paid dividends of 5% and 7% respectively. If the received a total of N11, 600 as dividend, how much did he invest at 5% ','N160,000 ','N140,000 ','N120,000 ','N80,000','','','c','','post-utme','2006',1150,'Admin','0000-00-00 00:00:00','2020-07-21 13:21:43'),(7,'In a class, 37 students take a least one of chemistry, Economics and Government, 8 students take Chemistry, 19 take Economics and 25 take Government, 12 students take Economics and Government but nobody takes Chemistry and Economics. How many students take both chemistry and Government? ','3','4','5','6','','','a','','post-utme','2006',1181,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(8,'Solve for p in the following  equation given in base two  11(p+ 110) = 1001p   ','10','11','110','111','','','b','','post-utme','2006',1172,'Admin','0000-00-00 00:00:00','2020-07-21 13:00:37'),(9,'Factorize 16(3x+2y)2-25 (a+2b)2','(12x +8y+5a+10b)(12x+8y-5a-10b)    ','(12x+8y-5a-10b) (12x+8y-5a-10b),    ','20 (3x +2y-a-2b)(3x+2y+a+2b)  ','20(3x+2y+a+2b) (3x+2y+a+2b).','','','a','','post-utme','2006',1149,'Admin','0000-00-00 00:00:00','2020-07-21 13:20:34'),(10,'1.3logx+logy =3. Then, y is  ','(10/x)3 ','(x/10)3  ','(x/10)-3 ','(10/x)1-1/3 ','','','a','','post-utme','2006',1163,'Admin','0000-00-00 00:00:00','2020-07-19 04:16:41'),(11,'Z is partly constant and partly varies inversely as the square of d. when d = 1, z = 11 and when d = 2, z = 5. Find the value of z when d = 4.  ','2','3.5','5','5.5','','','b','','post-utme','2006',1143,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(12,'Expand the expression (x2-2x-3)(x2+x+1).  ','x4-4x2-5x-3  ','–x3-4x2+5x-3','x4-x3-4x2-5x-3  ','x4-4x2-5x -3','','','c','','post-utme','2006',1128,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(13,'The indefinite integral of the function f(x) = xcosx for any constant k, is ','–cos + sinx +k,  ','xsinx-cosx,   ','xsinx for any constant k,   ','x+sinx+cosx+k','','','c','','post-utme','2006',1108,'Admin','0000-00-00 00:00:00','2020-07-21 13:15:02'),(14,'The trigonometric expression cos 2A +sin 2A can be written as    ','cosA (cosA-sinA),    ','Cos2A +sin2A-2sinAcosA,  ','Cos2A + sin2A = Cos2A –sin2A+2sinAcosA','cos2A+sin2A','','','c','','post-utme','2006',1155,'Admin','0000-00-00 00:00:00','2020-07-20 14:08:32'),(15,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is with replacement: ','0.9','1','0.47','0.49','','','d','','post-utme','2006',1140,'Admin','0000-00-00 00:00:00','2020-07-20 14:02:55'),(16,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is without replacement ','0.1','0.47','0.42','0.21','','','b','','post-utme','2006',1213,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(17,'The interior angles of a pentagon are: 180o, 118o, 78o, 84o and  x. The value of x is: ','80o ','108o  ','120o  ','134o','','','a','','post-utme','2007',1163,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(18,'All the vertices of an isosceles triangle lie on a circle and each of the base angles  of the triangle is 65o. The angle subtended at the centre of the circle by the base of the triangle is: ','130o  ','115o  ','50o  ','65o','','','c','','post-utme','2007',1155,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(19,'A square tile measures 20cm by 20cm. How many of such tiles will cover a floor measuring 5m by 4m? ','500','400','320','250','','','a','','post-utme','2007',1159,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(20,'The volume of a certain sphere is numerically equal to twice its surface area. The diameter of the sphere is: ','6','9','12','','','','c','','post-utme','2007',1157,'Admin','0000-00-00 00:00:00','2020-07-21 13:22:05'),(21,'A bearing of 310o, expressed as a compass bearing is: ','N50oW  ','N40oW  ','S40oW  ','S50oW','','','a','','post-utme','2007',1116,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(22,'Which of the following specified sets of data is not necessarily sufficient for the construction of a triangle? ','three angles  ','two sides and a right angle  ','two sides and an included angle ','three sides','','','a','','post-utme','2007',1182,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(23,'The average age of the three children in a family is 9 years. If the average age of their parent is 39 years, the average age of the whole family is: ','20 years  ','21years  ','24years  ','27years','','','b','','post-utme','2007',1105,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(24,'Evaluate x in base 3 if 41x-22x=17x. ','11','8','12','22','','','d','','post-utme','2007',1281,'Admin','0000-00-00 00:00:00','2020-07-21 12:55:24'),(25,'When the price of egg was raised by N2 an egg, the number of eggs which can be bought for N 120 is reduced by 5. The present price of an egg is ','N 6. ','N 7  ','N 8','N10','','','c','','post-utme','2007',1127,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(26,'How long will take a sum of money invested at 8% simple interest to double the original sum? ','8 years  ','10.5years  ','(1years ','12.5years','','','d','','post-utme','2007',1133,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(27,'The journey from Lagos to Ibadan usually takes a motorist 1 hour 30 minutes. By increasing his average speed by 20km/hr, the motorist saves 15 minutes. His usual speed, in Km/hr is ','100','90','85','80','','','a','','post-utme','2007',1121,'Admin','0000-00-00 00:00:00','2020-07-21 13:18:54'),(28,'The smallest section of a rod which can be cut 36cm in length is','90cm ','180cm ','360cm  ','540cm.','','','b','','post-utme','2007',1115,'Admin','0000-00-00 00:00:00','2020-07-16 10:46:48'),(29,'If x= 0.0012 + 0.00074 + 0.003174, what is the difference between x to 2 decimal places and x to 1 significant figure? ','0.01','0.0051','0.1','0.005','','','d','','post-utme','2007',1140,'Admin','0000-00-00 00:00:00','2020-07-21 12:58:07'),(30,'In a survey of 100 students in an institution, 80 students speak Yoruba, 22 speak Igbo, while 6 speak neither Igbo nor Yoruba. How many students speak Yoruba and Igbo? ','96','8','64','12','','','b','','post-utme','2007',1167,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(31,'The expression a 3 + b 3 is equal  to ','(a2 +b)(a-ab+b2 )','(a+b)(a2 –ab+b2 )  ','(a-b2)(a2-  ab+b)','(a­-b)(a2+ab+b2)','','','b','','post-utme','2008',1201,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(32,'Factorize 16(3x +2y)2 -25(a+2b)2  ','(12x + 8y -5a-10b)(12x+8y-5a-10b)','20(3x +2y-a-2b)(3x+2y+a+1-2b) ','(12x +8y+5a+10b)(12x +8y-5a-10b)','20(3x +2y+ a+2b)(3x + 2y+a+2b)','','','a','','post-utme','2008',1103,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(33,'A cone has base radius 4cm and  height 3cm. The area of its curved surface is','12pcm2     ','20pcm2','24pcm2 ','15cm2','','','b','','post-utme','2008',1146,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(34,'A. cylinder has height 4cm and base radius 5cm.its volume to 3 significant figure is  ','314.2cm2 ','31.42 cm2 ','251 4cm2 ','251cm2','','','b','','post-utme','2008',1169,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(35,'A cyclist rode for 30minutes at xkm/hr and due to a breakdown, he had to push the bike for 2hrs at (x – 5) km/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14','x<29','x<28','x<20','','','c','','post-utme','2008',1162,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(36,'The expression ax2 + bx takes the value 6 when x = 1 and 10 when x = 2. Find its value when  x = 5       ','10','12','6','.-10','','','a','','post-utme','2008',1175,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(37,'Dividing 2x3 – x2 – 5x + 1 by x  + 3 gives the remainder ','.-3','47','61','-47','','','d','','post-utme','2008',1181,'Admin','0000-00-00 00:00:00','2020-07-21 13:22:56'),(38,'The difference of two numbers is 10, while their product is 39. Find these numbers','– 3 and 10 or 13 and 10,','3 and – 10 or 3 and 13,  ','3 and – 3 or 3 and 13,     ',' – 3 and – 13 or   13 and  3 ','','','d','','post-utme','2008',1170,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(39,'The average age of x pupils in a class is 14 years 2 months. A pupils of 15years 2 months joins the class and  the average age is increased  by one month. Find x.      ','12, ',' 6, ','11,','14,','','','c','','post-utme','2008',1211,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(40,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. 13. How many learn both languages? ','60','45','15','120','','','c','','post-utme','2008',1093,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(41,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. How many learn Igbo only?   ','45','30','15','60','','','a','','post-utme','2008',1150,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(42,'If the distance covered by a body in time t seconds is s = t2 - 6t2  - 5t, what is its initial velocity?  ','0ms-1    ','-4 ms-1 ','(13t2  - 12t + 5) ms-1   ','5ms-1 ','','','d','','post-utme','2008',1198,'Admin','0000-00-00 00:00:00','2020-07-19 22:17:49'),(43,'The trigonometric expression cos2A + sin 2A can be written as:  ','cosA(cosA + sinA)  ','B.cos2A + sin2A – 2sinAcosA,  ','2sinAcosA + cos2A + sin2A,  ','D.cos2A +sinA  – 2sinAcosA','','','c','','post-utme','2008',1089,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(44,'With replacement ','0.9,','1, ','0.4,','0.49','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','d','','post-utme','2008',1111,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(45,'Without replacement ','0.1, ','0.47, ','0.42,   ','0.21','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','b','','post-utme','2008',1209,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(46,'The fair coins are tossed simultaneously. What is the probability of obtaining at least 1 tail turns up? ','1/4','3/4','1/2','1','','','b','','post-utme','2008',1158,'Admin','0000-00-00 00:00:00','2020-07-21 12:35:50'),(47,'A regular polygon has each of it angles as 1600. What is the number of sides of the polygon?  ','18,    ','36,       ','9,     ','20','','','a','','post-utme','2008',1152,'Admin','0000-00-00 00:00:00','2020-07-21 13:17:50'),(48,'One angle of an octagon is 1000 while the other sides are equal. Find each of these exterior angles. ','800,','600,','1400,           ','400,   ','','','d','','post-utme','2008',1158,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(49,'A sector circle of radius 7.2cm which subtends an angle of 3000 at the centre is used to   form a cone. What is the radius of the base of the cone?. ','6cm ','7cm ','8cm    ','9cm      ','','','a','','post-utme','2009',1076,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(50,'If 32y – 6(3y) = 27, find y ','3','-1','2','-3','','','c','','post-utme','2009',1137,'Admin','0000-00-00 00:00:00','2020-07-16 20:07:02'),(51,'An (n-2)2 sided figure has n diagonal, find the number n of diagonal for a 25 sided Figure   ','8','7','6','10','','','b','','post-utme','2009',1174,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(52,'A sum of money was invested at 8% per annum simple interest. If after 4 years, the   money became ','N180 ','N 165 ','N15   ','N 200','','','d','','post-utme','2009',1200,'Admin','0000-00-00 00:00:00','2020-07-21 12:41:01'),(53,'Two fair dice are rolled. What is the probability that both show up the same number of point?','1/36 ','7/36 ','½ ','1/6','','','d','','post-utme','2009',1164,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(54,'Find the probability of selecting a figure which is parallelogram from a square, a rectangle, a rhombus, a kite and a trapezium  ','3/5 ','2/5 ','1/5 ','1/5 ','','','a','','post-utme','2009',1258,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(55,'A man kept 6 black, 5 brown and 7 purple shirts in a drawer. What is the probability of his picking a purple shirt with his eyes close ','1/7','7/18 ','11/18 ','7/11','','','b','','post-utme','2009',1152,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(56,'If P varies inversely as V and V varies directly as R2, find the relationship between P and R given that R = 7 when P = 2 ','P = 98R2 ','PR2 = 98 ','P2R = 89 ','P = 1/98R ','','','b','','post-utme','2009',1248,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(57,'If 7 and 189 are the first and fourth terms of a geometric progression respectively find the sum of the first three terms of the progression ','182','180','91','63','','','c','','post-utme','2009',1233,'Admin','0000-00-00 00:00:00','2020-07-19 18:13:34'),(58,'Find the positive number n such that thrice its square is equal to twelve time the number ','1','4','2','5','','','b','','post-utme','2009',1215,'Admin','0000-00-00 00:00:00','2020-07-19 23:14:02'),(59,'Given a regular hexagon, calculate each interior angle of the hexagon ','60','30','120','15','','','c','','post-utme','2009',1187,'Admin','0000-00-00 00:00:00','2020-07-19 04:16:41'),(60,'Factorize 6x2 – 14x – 12 ','2(x + 3)(3x – 2) ','6(x – 2)(x + 1) ','2(x – 3)(3x + 2) ','6(x + 2)(x – 1) ','','','c','','post-utme','2009',1164,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(61,'The value of (0.303)3 – (0.02)3 is ','0.019','0.0019','0.0268','0.000019','','','c','','post-utme','2009',1198,'Admin','0000-00-00 00:00:00','2020-07-17 01:24:34'),(62,'What is the product of 27/5 ¸(3)3 and (1/5) ','5','3','2','1','','','c','','post-utme','2009',1181,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(63,'Find the probability that a number selected at random 40 to 50 is a prime number   ','3/11','5/11','5/10','4/10','','','a','','post-utme','2009',1142,'Admin','0000-00-00 00:00:00','2020-07-21 13:08:10'),(64,'If the length of the sides of a right angled triangle are (3x + 1)cm, (3x – 1)cm and xcm, what is x ? ','2','6','18','12','','','d','','post-utme','2009',1123,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(65,'A number of pencils were shared out among peter, Paul and Audu in the ratio 2:3:5 respectively. If Peter got 5, how many were shared? ','15','25','30','50','','','b','','post-utme','2009',1097,'Admin','0000-00-00 00:00:00','2020-07-16 11:51:21'),(66,'Solve 4x2 +20x -24 =0',' 1, 6',' -1, -6','6, -1','-6, 1','','','d','','post-utme','2013',1166,'Admin','0000-00-00 00:00:00','2020-07-21 12:38:32'),(67,'What is the 15th term of the sequence -3, 2,7,…? ','65','66','68','67','','','d','','post-utme','2013',1121,'Admin','0000-00-00 00:00:00','2020-07-20 07:28:05'),(68,'What is the remainder when x3 +5x2-6x+1 is divided by x-1? ','-1','2','-2','1','','','d','','post-utme','2013',1173,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(69,'If  are the roots of equation 6 +5x –x2 =0, find  x','11','-11','1','-1','','','b','','post-utme','2013',1192,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(70,'Solve the equation  = 25x+4 ','-4, 2 ',' -4,-2 ','4, -2','4, 2','','','a','','post-utme','2013',1123,'Admin','0000-00-00 00:00:00','2020-07-16 11:51:21'),(71,'What is the coordinate of centre of the circle X2+y2+2x-4y =10?  ','(-1,-2)','( 1, 2)',' (-1, 2) ',' (1, -2)','','','d','','post-utme','2013',1080,'Admin','0000-00-00 00:00:00','2020-07-21 12:39:51'),(72,'Solve the equation 3x+1 = 271-x  ','1/2','-1/2','3/4','-3/4','','','a','','post-utme','2013',1175,'Admin','0000-00-00 00:00:00','2020-07-21 12:59:13'),(73,'Given f(x) =3+x and g(x) =3-x, find g (f(x))','6','x','-x','0','','','b','','post-utme','2013',1097,'Admin','0000-00-00 00:00:00','2020-07-22 00:02:17'),(74,'Differentiate sin (2x-5) with respect to x. ','cos (2x-5)','–cos (2x-5)   ',' 2cos (2x-5)','-2cos (2x-5)','','','c','','post-utme','2013',1175,'Admin','0000-00-00 00:00:00','2020-07-21 12:38:34');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `naijafb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `naijafb` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'What is the full meaning of APC','All progress Congress','Alliance progress Congress','All progressive Congress','Alliance progressive Congress','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full meaning of PDP','Power for the People','People Democracy Party','People Democratic Party','Share the money sharp sharp','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'How old was President Buhari when he won 2015 presidential general election','70','72','73','74','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'About how many million votes did General Buhari use to deaf President Goodluck Jonathan?','10.1 Million','5.1 Million','2.1 million','1.1 million','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Who was the spoken man of APC during the presidential elections?','Liel Mohammed','Lia Mohammed','Bello Mohammed','Adams Mohammed','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who was the spoken man of PDP during the presidential elections?','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'President Buhari is from what state?','Kano','Kaduna','Katsina','Jigawa','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many presidential elections did General Buhari contested in before wining in2015?','3','5','4','2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'The only woman that contested in 2015 presidential election was from which party','ANPP','CPC','AA','KOWA','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'What is the name of first female Nigerian to run for office as a democratic president?','Funmilayo Ransome Kuti','Remi Sonaiya','Oby Ezekweslli','Bola Ara','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'2015 general election INEC chairman was','Attahiru Hammed Jega','Attahiru Mohammed Jega','Attahiru Muhammadu Jega','Atta Muhammadu Jega','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'The official release of 2015 presidential general election results was on','March 30th','March 31th','March 29th','April 4th','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'2015 general presidential election took place on','14-Mar','28-Mar','1-Apr','14-Feb','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' The spokesperson for President Goodluck Jonathan?s during 2015 election was','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which country won 2015 FIFA U-17 world cup','Mali','Nigeria','Brazi','Spain','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' Nigeria became a republic in','1960','1962','1963','1965','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What day is regarded as democracy day?','27-May','1-May','29-May','25-May','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What day is regarded as workers? day?','27-May','1-May','29-May','25-May','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' What day is regarded as children?s day?','27-May','1-May','29-May','25-May','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,' In year 2015, Nigeria as an independent state will be how old','50','53','54','55','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' What are the colors of Nigeria Flag?','Green white green','Green and white','Green , green white','Green brown green','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,' Nigeria commercial capital is','Abuja','Port Harcourt','Lagos','Kano','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' How many states are in Nigeria?','37','36','35','34','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' Which of the following is not a minister of President Buhari administration 2015','Babatunde fashola','Chris Ngige','Kayode Fayemi','Solomon David','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' How many ministers were appointed by President Buhari Administration?','30','37','32','36','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Which Nigeria army office allegedly looted 32 billion naira?','Gen. Sambo Dasuki','Col. Sambo Dasuki','Major. Sambo Dasuki','Officer Sambo Dasuki','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' The full meaning of EFCC is','Economic and Financial Crimes Conduct','Economic and Finances Crimes Commission','Economic and Financial Crimes Commotion','Economic and Financial Crimes Commission','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' What is the Capital of Jigawa State?','Bornu','Maiduguri','Dutse','Makurdi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' What is the Capital of Benue State?','Bornu','Maiduguri','Dutse','Makurdi','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' What is the Capital of Zamfara State?','Bornu','Maiduguri','Gusau','Makudi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `physics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `physics` VALUES (1,'A 70kg man ascends a flight of stairs of height 4m in 7s. The power expended by the man is;','40W ','100W ','280W ','400W','','','a','','post-utme','2006',3894,'Admin','0000-00-00 00:00:00','2020-07-16 09:44:04'),(2,'A body accelerates uniformly from rest at 6ms-2 for 8 seconds and then decelerates uniformly to rest in the next 5 seconds. The magnitude of the deceleration is: ','9.6ms-2 ','48 ms-2 ',' 24 ms-2 ','39.2 ms-2','','','a','','post-utme','2006',3827,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(3,'A nail is pulled from a wall with a string tied to the nail. If the string is inclined at an angle of 30oC to the wall and the tension in the string is 50N, the effective force used in pulling the nail is: ','25N ','25√3 N ','50N ','50√3N','','','a','','post-utme','2006',3770,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(4,'If M and R are the mass and radius of the earth respectively and G is the universal gravitational constant, the earth’s gravitational potential at an altitude H above the ground level is: ','A.-GM/H ','–GM/(R+H) ','C. -GM/2H ','D. –GM/(R-H)','','','b','','post-utme','2006',3855,'Admin','0000-00-00 00:00:00','2020-07-20 10:11:04'),(5,'Which of the following statements is not true? ','as the slope of an incline plane increases, the velocity ratio decreases, ','the efficiency of an incline plane decreases as the slope increases ','the effort required to push a given load up an incline plane increases as the slope increases','The mechanical advantage of smooth incline plane depends on the ratio of the length to the height of the plane.','','','d','','post-utme','2006',3774,'Admin','0000-00-00 00:00:00','2020-07-19 23:04:37'),(6,'The ice and steam point of a thermometer are 20mm and 100mm respectively: A temperature of 75oC correspond to Ymm on the thermometer. What is Y? ','100mm ','70mm ','80mm ','60mm','','','c','','post-utme','2006',3787,'Admin','0000-00-00 00:00:00','2020-07-18 11:38:18'),(7,'  An electric kettle with negligible heat capacity is rated at 2000W, if 2.0kg of water is put in it, how long will it take temperature of water to rise from 20oC to 100oC? (specific heat capacity of water = 4200J/Kg-1K-1) ','336s ','240s ',' 168s ','84s','','','a','','post-utme','2006',3789,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(8,' A quantity of ice –10oc is heated until temperature of heating vessel is 90oc. Which of the following constant is NOT required to determine the quantity of heat supplied to the vessel? ','Specific latent heat of vaporization ','specific heat capacity of ice ','specific latent heat of fusion ','specific heat capacity of water','','','a','','post-utme','2006',3793,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(9,'The scent from a jar of perfume open move through the air molecules by ','evaporation ','osmosis ','diffusion ','Convection','','','c','','post-utme','2006',3940,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(10,'  A convex lens of focal length 10.0cm is used to form a real image which is half the size of the object. How far from the object is the image? ','45cm ','30cm ','15cm ','20cm','','','c','','post-utme','2006',3769,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(11,'An object of height 3.00cm is placed 10cm from a biconvex lens of 15cm, the image of the object is ','real and 3.00cm tall ','virtual and 3.00cm tall ',' virtual and 9.00cm tall ','real and 9.00cm tall','','','c','','post-utme','2006',3835,'Admin','0000-00-00 00:00:00','2020-07-18 11:38:18'),(12,'The most suitable type of mirror used for the construction of search light is the: ','concave mirror ','Convex mirror ','Spherical mirror ','Parabolic Mirror','','','d','','post-utme','2006',3869,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(13,'Light wave and ripples of water are similar because both','are longitudinal waves ','have the same velocity ','can be diffracted and refracted ','have the same frequency ','','','c','','post-utme','2006',3897,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:19'),(14,'Three 4Ω resistors were connected in series by Tola, while Ade connected the ','1:02','1:09','1:10','1:15','','','b','','post-utme','2006',3882,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(15,'A coil of copper wire of N turns is kept rotating between the poles of a magnet  such that the magnetic flux linking the coil changes continuously. Which of the  following statements is TRUE? ','An e.m.f is induced in the coil such that when  the change of flux is positive the e.m.f is positive, and when the change of flux is negative the e.m.f is negative. ','An e.m.f is induced in the coil whose magnitude  is inversely proportional to both the number of turns in the coil and the rate of  change of magnetic flux ','. An e.m.f is set up in the permanent magnet which  reduces the flux in the coil to zero ','A current flows in the coil and e.m.f is set  up proportional to both the rate of change of the flux and the number of turns','','','d','','post-utme','2006',3953,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(16,'The principle of operation of an induction coil is based on ','Ohm’s law ','Ampere’s Law ','Faraday’s Law ','Coulomb’s Law','','','c','','post-utme','2006',3840,'Admin','0000-00-00 00:00:00','2020-07-15 19:38:29'),(17,'Which of the following radiations cannot be deflected by an electric field or ','(i) and (ii) only ','(ii) only ','(iii) and (iv) only ','(i) and (iii) only','','','c','','post-utme','2006',3824,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(18,'The half-life of a radioactive element is 9 days. What fraction of atoms has decayed in 36 days? ','16-Jan','¼ ',' ½ ','15/16','','','d','','post-utme','2006',3804,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(19,'What is the dimension of pressure? ','ML-1T-2 ','MLT-2 ','ML2T-3 ','ML-3','','','a','','post-utme','2007',3862,'Admin','0000-00-00 00:00:00','2020-07-18 12:24:39'),(20,'Calculate the length of a displaced pendulum bob that passes its lowest point twice every second. [g=10ms-1] ','.100m ','0.253m ','0.450m ','0.58m','','','b','','post-utme','2007',3807,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(21,'When a ball rolls on a  smooth level ground, the motion of its centre is ','translational ','Random ','Oscillatory ','Rotational','','','a','','post-utme','2007',3911,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(22,'A vehicle of mass m is driven by an engine of power P from rest. Find the minimum time it will take to acquire a speed v. ','mv2/p ','mv2/2p ','mv/p ','mv/2p','','','b','','post-utme','2007',3785,'Admin','0000-00-00 00:00:00','2020-07-16 08:59:22'),(23,'A box of mass 40kg is being dragged  along by the rope inclined at 60o to the horizontal. The frictional force between the box and the floor is 100N and the tension on the rope is 300N. How much work is done in dragging the box through a distance of 4m? ','680J ','200J ','100J ','400J','','','c','','post-utme','2007',3870,'Admin','0000-00-00 00:00:00','2020-07-17 04:21:18'),(24,'A body is projected from the earth’s surface with the hope of letting it escape from the earth gravitational field. What is the minimum escape velocity?  [Earth’s radius = 6.4 x 103km, g = 10 ms-2]','11.3kms-1 ','13.3kms-1 ','12.3kms-1 ','14.3kms-1 ','','','a','','post-utme','2007',3808,'Admin','0000-00-00 00:00:00','2020-07-15 19:38:29'),(25,'A uniform rod PQ of mass 2kg and length of 1m is pivoted at the end P, if a load of 14N is placed at the centre, find the force that should be applied vertically upwards at Q to maintain the rod in equilibrium ','7N ','28N ','68N ','17N','','','d','','post-utme','2007',3828,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(26,'The energy contained in wire when it is extended by 0.02m by a force 500N is ','104J ','103J ','10J ','5J','','','d','','post-utme','2007',3918,'Admin','0000-00-00 00:00:00','2020-07-19 23:04:37'),(27,'What is the acceleration due to gravity ‘g’ on the moon, if ‘g’ is   10ms-2 on the earth?','0.74ms-2 ','0.1ms-2 ','10.0 ms-2 ','1.67 ms-2','','','c','','post-utme','2007',3842,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(28,'A 5kg block is released from rest on a smooth plane inclined at an angle of 30o to the horizontal. What is the acceleration down the plane?  [ g = 10ms-2]','5.0 ms-2 ',' 8.7 ms-2 ','25.0 ms-2 ','5.8 ms-2   ','','','a','','post-utme','2007',3974,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(29,'A rectangular metal block of volume 10-6m3 at 273K is heated to 573K, if the coefficient of linear expansion is 1.2 x 10-5K-1, the percentage change of its volume is ','1.50%','1.10%','0.10%','0.40%','','','b','','post-utme','2007',3785,'Admin','0000-00-00 00:00:00','2020-07-17 04:21:18'),(30,'A temperature scale has a lower fixed point of 40mm and an upper fixed point of 200mm. What is the reading on this scale when the temperature reads 60oc? ','136.omm ','33.3mm ','96.0mm ','36.0mm','','','a','','post-utme','2007',3841,'Admin','0000-00-00 00:00:00','2020-07-18 11:38:18'),(31,'A 500kg car was initially at rest travelled with an acceleration of 5ms-2, what is its kinetic energy after 4s ','2.5 x 103J ','105J ','5 x 103J ','5 x 105J','','','b','','post-utme','2007',3827,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(32,'The temperature at which the water vapour in the air saturates the air and begins to condense is','melting point ','triple point ','dew point ','melting point','','','c','','post-utme','2007',3804,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(33,'The period of a simple pendulum will increase by what factor of its extensible length increased by a factor of four ','2','4','2','¼','','','c','','post-utme','2007',3892,'Admin','0000-00-00 00:00:00','2020-07-15 19:38:29'),(34,'An air column 10cm in length is trapped into the sealed end of a capillary tube by a 15cm column of mercury with the tube held vertically. On inverting the tube, the air column becomes 15cm long, what is the atmospheric pressure during the experiment? ','76cm ','75cm ','60cm ','70cm','','','b','','post-utme','2007',3798,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(35,'An electric cell has an internal resistance of 2Ω. A current of 0.5A was measured when a resistor of resistance 5Ω was connected across it. Determine the electromotive force of the cell','3.5V ','2.5V ','4.5V ','2.35V','','','a','','post-utme','2007',3944,'Admin','0000-00-00 00:00:00','2020-07-19 23:04:37'),(36,'The speed of light in air is 3 x 108ms-1. If the refractive index of light from air to water is 4/3, calculate the speed of light in water ','2.25 x 108ms-2 ','2.25ms-1 ','4.00ms-1 ','4.33ms-1','','','c','','post-utme','2007',3832,'Admin','0000-00-00 00:00:00','2020-07-18 12:24:39'),(37,'It is known that an atomic nucleus comprises of positive charged protons. Which of the following also exist in the nucleus? ','a beta particle ','an Alpha particle ','A neutron ','An electron','','','c','','post-utme','2007',3874,'Admin','0000-00-00 00:00:00','2020-07-14 15:32:56'),(38,'The silver wall of a vacuum flask prevents heat loss due to ','conduction ','Convection ','Radiation ','Diffraction','','','c','','post-utme','2007',3815,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(39,'The electromagnetic waves that are sensitive to temperature changes are','ultra-violet rays ','Gamma rays ','infrared-rays ','X-rays','','','c','','post-utme','2007',3761,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(40,'Under constant tension and constant mass per unit length, the note produced by a plucked string is 500Hz when the length of the string is 0.90m, at what length is the frequency 150Hz?','6m ','3m ','5m ','4m','','','b','','post-utme','2007',3893,'Admin','0000-00-00 00:00:00','2020-07-18 12:24:39'),(41,'Two bodies P and Q are projected on the same horizontal plane, with the same initial speed but at different angles of 30o and 60o respectively to the horizontal. Neglecting air resistance, what is the ratio of range of P to that of Q? ','1:01','1:√3 ','√3:1 ','1:02','','','a','','post-utme','2007',3833,'Admin','0000-00-00 00:00:00','2020-07-19 23:04:37'),(42,'A capacity of 2.0 x 10-11F and an inductor are joined in series. The value of the inductance that will give the circuit a resonant frequency of 200KHz is ','1/16H ','1/8H ','1/64H ','1/32H','','','d','','post-utme','2007',3878,'Admin','0000-00-00 00:00:00','2020-07-18 12:24:39'),(43,'Which of these is not a fundamental S.I unit ','Ampere ','Kelvin ','Seconds ','Radians','','','d','','post-utme','2009',3872,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(44,'If two masses 40g and 60g respectively, are attached firmly to end of a light metre rule, what is the centre of gravity of the system? ','at the mid point of the metre rule ','40cm from the lighter mass ','40cm from the heavier masses ','60cm from the heavier masses ','','','c','','post-utme','2009',3960,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(45,'To find the dept of the sea, a ship send out a second waves and an echo after one second. If the velocity of sound in water is 1500m/s, what is the depth of the sea ','0.75km ','1.50km ','2.20km ','3.00km ','','','a','','post-utme','2009',3705,'Admin','0000-00-00 00:00:00','2020-07-16 09:44:05'),(46,'A machine has a velocity ratio of 5, if it requires a 50kg weight to overcome 200kg weight, the efficiency is? ','4%','5%','40%','80%','','','d','','post-utme','2009',3838,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(47,'If the force on a charge of 0.2 Coulomb in an electric field is 4N, then electric intensity of the field is ','0.8','0.8N/C  ','20.0 N/C ','4.2 N/C ','','','c','','post-utme','2009',3824,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(48,'The resistance of a wire depends on ','the length of the wire ','the diameter of the wire ','the temperature of the wire ','All of the above','','','d','','post-utme','2009',3943,'Admin','0000-00-00 00:00:00','2020-07-18 11:38:18'),(49,'Which of these is not contained in a dry cell? ','carbon rod ','paste of magnesium dioxide ','paste of ammonium chloride ','zinc case ','','','c','','post-utme','2009',3906,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(50,'When a yellow card is observed through a blue glass, the card would appear as ','black ','green ','red ','white ','','','a','','post-utme','2009',3906,'Admin','0000-00-00 00:00:00','2020-07-17 01:36:15'),(51,'A devise that converts sound energy into electrical energy is ','the horn of a motor car ','An AC generator ','A microphone ','Telephone earpiece ','','','c','','post-utme','2009',3832,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(52,'Radio waves have the velocity of 3 x 108ms-1. If a radio station sends out a broadcast on a frequency 800kHz, what is the wavelength of the broadcast? ','375.0m ','267.0m ','240.0m ','37.5m ','','','a','','post-utme','2009',3917,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(53,'The mode of heat transfer which does not require material medium is','conduction ','radiation ','convection ','propagation','','','b','','post-utme','2009',3836,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(54,'The height at which the atmosphere ceases to exist is about 80km, if the atmosphere pressure on the ground level is 760mmHg, the pressure at height of 20km above the ground is ','380mmHg ','570mmHg ','190mmHg ','480mmHg','','','c','','post-utme','2009',3813,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:13'),(55,'A simple pendulum 0.6 long has a period of 1.55, what is the period of a similar pendulum 0.4 long in the same direction ','1.4 √1/3s ','1.5 √1/3s ','2.25s ','None of the above','','','d','','post-utme','2009',3807,'Admin','0000-00-00 00:00:00','2020-07-19 23:04:37'),(56,'Which of the following  is common to evaporation and boiling, they ','take place at any temperature ','are surface phenomena ','involve change of state ','take place at a definite pressure ','','','b','','post-utme','2009',3863,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(57,'A house hold refrigerator is rated 200 watts. If electricity cost 5k per Kwh, what is the cost of operating it for 20 days ','N4.80  ','N48.00 ','N480.00 ','N4800.00 ','','','a','','post-utme','2009',3907,'Admin','0000-00-00 00:00:00','2020-07-20 10:02:01'),(58,'The resistance of a 5m uniform wire of cross sectional area of 0.2 x 106m2 is 0.45. What is the resistivity of the material of the wire ','1.10 x 105 ohms ','4.25 x106Ωm ','2.40 x 107Ωm ','1.70 x 108Ωm ','','','a','','post-utme','2009',3876,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(59,'Which of the following instruments has a pure tone? ','guitar ','Vibrating String ','Turning forks ','Screen ','','','c','','post-utme','2009',3883,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(60,'Four lenses are being considered for use as a microscope object. Which of the following focal length is most suitable ','-5mm ','+5mm ','5cm ','+5cm ','','','b','','post-utme','2009',3779,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(61,'The product PV where P is pressure and V is a volume has the same unit as ','force ','power ','energy ','acceleration ','','','c','','post-utme','2009',3931,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(62,'The force with which an object is attracted to the earth is called ','acceleration ','mass ','gravity ','weight','','','d','','post-utme','2009',3833,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(63,'The refractive index of a liquid is 1.5, if the velocity of light in a vacuum is 3.0 x 108ms-1, the velocity of light in the liquid is ','1.5 x 108ms-2 ','2.0 x 108ms-1 ','3.1 x 108ms-1','4.5 x 108ms-1 ','','','d','','post-utme','2009',3793,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(64,'A train has an initial velocity of 44m/s and an acceleration of -4m/s2 what is its velocity after 10seconds? ','2m/s ','4m/s ','8m/s ','12m/s ','','','b','','post-utme','2009',3846,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(65,'A man of mass 50kg ascends a flight of stair 5m high in 5 seconds. If acceleration due to gravity is 10ms-2 the power expanded is ','100W ','300W ','250W ','500W','','','d','','post-utme','2009',3929,'Admin','0000-00-00 00:00:00','2020-07-15 22:57:36'),(66,'Two strings of the same length and under the same tension give notes of frequency in the ratio 4:1, the masses of the string are in the ratio of ','2:01','1:02','1:04','1:16','','','d','','post-utme','2009',3802,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(67,'Which of the following phenomena cannot be explained by the molecular theory of matter? ','evaporation ','expansion ','conduction ','radiation','','','d','','post-utme','2010',3826,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(68,'The most likely measurement of length of an object using a venier caliper is: ','3.0cm ','3.3cm ','3.33cm ','3.333cm','','','b','','post-utme','2010',3971,'Admin','0000-00-00 00:00:00','2020-07-19 23:04:37'),(69,'If 21g of alcohol of density 0.7gcm-3 is mixed with 10g of water, what would be the density of the resulting mixture? ','780gcm-3 ','0.78gcm-3 ','30gcm-3 ','10gcm-3','','','c','','post-utme','2010',3880,'Admin','0000-00-00 00:00:00','2020-07-19 13:12:25'),(70,' For  a particle having an x co-ordinate that varies in time according to the express ion x = 4t -2t2 The instantaneous velocity for of the particle at t = 2.5s is:','12m/s ','6m/s ','0m/s ','10m/s','','','b','','post-utme','2010',3877,'Admin','0000-00-00 00:00:00','2020-07-18 11:38:18'),(71,'  A long-jumper leaves the ground at an angle of 20o above the horizontal and at speed of 11m/s. How far does it jumps in the horizontal direction? ','0.384m ','7.94m ','8.45m ','5m','','','d','','post-utme','2010',3832,'Admin','0000-00-00 00:00:00','2020-07-17 04:21:18'),(72,'A mass of 0.5kg is attached to one end of a helical spring and produces an extension of 2.5cm. The mass now set into vertically oscillation of amplitude 10mm. The period of oscillation is: (g = 10m/s2) ','0.33s ','100s ','200s ','280s','','','a','','post-utme','2010',3813,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(73,'A boat is passing under a bridge. The deck of the boat is 15m below the bridge. A small package is to be dropped from the bridge onto the deck of the boat is 25m from just below the drop point. What speed is necessary to have the package land in the boat? (g= 9.8ms-2)','17m/s ','14m/s ','1.7m/s ','4.9m/s','','','b','','post-utme','2010',3959,'Admin','0000-00-00 00:00:00','2020-07-19 04:04:23'),(74,'A 0.60kg rubber stopper is whirled in a horizontal circle of 0.80m radius at a rate of 3.0 revolutions per second. What is the tension in the string? ','14N ','80N ','170N ','24N','','','c','','post-utme','2010',3917,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(75,'An automobile is traveling at 60km/hr. calculate the angular velocity of the 0.35m radius wheels. ','16.67rad/s ','47.6 rad/s ','21 rad/s ','171.4 rad/s','','','b','','post-utme','2010',3823,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(76,'An air bubble at the bottom of a lake has a volume of 20cm3, pressure of 4.9Pa, and temperature 4oc the bubble rises to the surface where the temperature is 20oc and the pressure 1.0Pa. Find the volume as the bubble reaches the surface. (take 1 atm = 1.0 x 105 N/m2) ','124cm3 ','319cm3 ','60cm3 ','104 cm3','','','d','','post-utme','2010',3885,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(77,'  A gas at constant pressure of 4.0 x 105 Pa is cooled so that its volume decreases from 1.6m3 to 1.2m3. What work is performed by the gas? ','6.4 x 105 J ','3.2 x 105 J  ','1.6 x 105 J ','0.4 x 105 J  ','','','c','','post-utme','2010',3848,'Admin','0000-00-00 00:00:00','2020-07-21 06:13:20'),(78,'Highly polished silvery  surfaces are: ','poor absorbers but good emitter of radiation ','good absorbers and good emitters of radiation ','poor emitters but good reflectors of radiation ','poor emitters and poor reflectors of radiation','','','c','','post-utme','2010',3852,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(79,'A 0.040kg string 0.80m long is stretched and vibrated in a fundamental mode with a frequency of 40Hz. What is the speed (of propagation) of the wave and tension in the string? ','64m/s ','340m/s ','32m/s ','128m/s','','','a','','post-utme','2010',3962,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(80,'What is the total power output of a source with intensity 0.050 W/m2 at a distance of 3.0m from the source? ','112W ','5.6W ','15W ','30W','','','b','','post-utme','2010',3753,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(81,'The superposition of two or more waves to produce a maximum or zero effect at a point is known as: ','reflection ','refraction ','diffraction ','interference','','','d','','post-utme','2010',3890,'Admin','0000-00-00 00:00:00','2020-07-14 15:33:51'),(82,'The acceleration due to gravity ','increases with increasing altitude ','decreases with increasing altitude ','increases with increase in the square of the altitude ','is not affected by the altitude','','','b','','post-utme','2010',3918,'Admin','0000-00-00 00:00:00','2020-07-15 19:38:29'),(83,'Which of the following statements are correct of nuclear fission? During the process \\nI. energy is released \\nII. More neutrons are released than those that cause fission \\nIII. Small nuclei merge into large nuclei \\nIV. There is a loss on mass\\n','II and I only','III','I,II and IV','IV and III','','','c','','post-utme','2010',3932,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(84,'Which of the following statements is not true? ','electric field intensity is force per unit charge. ','electric potential is a vector ','the S.I unit of electric field strength is N/C ','electric field intensity is equal to the potential gradient','','','b','','post-utme','2010',3798,'Admin','0000-00-00 00:00:00','2020-07-16 08:59:22'),(85,'Which of the following about electrolysis is false? ','liquid that conduct electricity and are split up chemically by the current are electrolyzed','the current into the electrolyte by the anode ','the current is taken away from the electrolyte by the cathode ','the container which holds the electrolyte and the electrode is the voltmeter','','','d','','post-utme','2010',3886,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(86,'Which of the following is not true about the properties of x-rays? ','they are not deflected by magnetic or electric field','they ionized a gas making it a conductor ','they are massive ','they have high penetrating power ','','','c','','post-utme','2010',3897,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(87,'A transformer is connected to a 240 V supply. The primary coil has 40 turns, and the secondary is found to be 960V. What is the ratio of the number of turns of the primary coil to the number of turns of the secondary coil? ','4:01','1:04','1:06','6:01','','','a','','post-utme','2010',3816,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(88,'Which of the following is not true about an object that is projected upwards at angle θ? ','the velocity is maximum at the maximum height ','the acceleration along the horizontal direction is zero ','the maximum range (Rmax) for an object moving with speed u is given by u2/g ','the time it takes to get the maximum height is equal to the time it takes to come back to the point of projection','','','a','','post-utme','2010',3852,'Admin','0000-00-00 00:00:00','2020-07-21 12:12:57'),(89,'When three coplanar non-parallel forces are in equilibrium i. they can be represented in magnitude and direction by the three sides of a triangle taken in order ii. The lines of action meet at a point iii. The magnitude of any one force equals the magnitude of the other two forces iv. Any one force is the equivalent of the other two. Which of the following statements above are correct? ','i and iii only ','i and ii only','i, ii,iii and iv ','none of them','','','b','','post-utme','2010',3891,'Admin','0000-00-00 00:00:00','2020-07-15 19:38:29'),(90,'Which of the following statements is not true about a body performing simple harmonic motion? ','the linear speed is the product of the angular speed and the radius or amplitude ','the linear acceleration is the product of the square of the angular speed and the displacement ','frequency is the number of complete revolution per second made by a vibrating body ','the S.I unit of amplitude is Hertz (Hz)','','','d','','post-utme','2010',3790,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(91,'In the force of gravity on an object of mass m, the gravitational field strength, g, is given by the following equation. ','g = √MF ','g = MF ','g = M√F ','g = F/M.','','','d','','post-utme','2010',3910,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(92,' A body of mass m slides down an inclined plane with a constant velocity. If the angle of the incline is Ø, the coefficient of kinetic friction between the body and the plane is  ','cot Ø ','cos Ø  ','tan Ø  ','sine Ø','','','c','','post-utme','2011',3896,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:13'),(93,'the velocity of a 500 kg car moving long a straight  road, changes from 12 m/s to 20 m/s in 5 sec. calculate the average force moving the car. ','2000N  ','1600N  ','1200N  ','800N','','','d','','post-utme','2011',3794,'Admin','0000-00-00 00:00:00','2020-07-18 12:24:39'),(94,'When a 2kg body is at a height 5m above the floor, its velocity  is 4m/s. What is its total energy  at this height? (acceleration due to gravity = 10m/s2)  ','80J  ','00J  ','  116J  ',' 180J','','','c','','post-utme','2011',3873,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(95,'The density of sea water is 1030kg/m3. What is the pressure at a depth of  80 m below sea surface? Atmospheric pressure is 1.013 x 105 pa and acceleration  due to gravity is 10 m/s2  ','9.25 x  105 pa  ','8.24 105 pa   ','7.23 x 105 pa  ','8.34 x 109 pa','','','a','','post-utme','2011',3847,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:16'),(96,'6000 J of heat is delivered to 10g of dry ice at O0C. What is the final temperature if the container has a heat capacity of 20J/K? (specific heat of water = 4200j/kg.k, latent heat of fusion of ice = 3.33 x 105J/kg)  ','142.90C  ','63.60C  ','43.00C  ','00C','','','c','','post-utme','2011',3741,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(97,'A sample of radioactive substance, whose half-life is 16 days, registers 32 decays per second. How long will it take for the rate of decay to reduce to 2 decays per second? ','80 days  ','64 days  ','48 days  ','32 days','','','b','','post-utme','2011',3931,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(98,'When white light passes through a triangular prism, the emerging rays of light arranged in order of decreasing angle of deviation are ','red, orange, yellow, green  ','blue, green,  orange, yellow ','red, green, yellow, orange ','blue, green, yellow, orange','','','d','','post-utme','2011',3879,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(99,' The electric field between two parallel plates is E.  A particle of mass m and carrying charge q is released at a point half the distance between the plates. The velocity  of the particle t  seconds after its release is  ','qEt/m ','qEt2  ','mqt2/2E  ','MQT/2E','','','','','post-utme','2011',3825,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(100,'An airplane increases its speed 36 km/h to 360 km/h in 20.0 s. How far does it travel while accelerating.  ','4.4 km     ','1.1 km  ','2.3 km  ','1.0 km','','','b','','post-utme','2011',3766,'Admin','0000-00-00 00:00:00','2020-07-15 22:57:36'),(101,'An object is said to be in simple harmonic motion (SHM) if  ','the acceleration is directly proportional to the displacement and is directed towards the equilibrium position of the object. ','the acceleration is inversely proportional to the displacement and directed toward the equilibrium position  of the object  ','the displacement is directly proportional  to the momentum  and directed toward the equilibrium position of  the object ','the momentum is directly proportional to the displacement and directed toward the equilibrium position of the object.','','','a','','post-utme','2011',3847,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(102,'A wheel and axle is used to raise a weight of 600n with an effort of 300n. if the radii of the wheel and axle are 50 cm and 10 cm respectively, what is the efficiency of the system      ','40%','50%','20%','10%','','','a','','post-utme','2011',3779,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(103,'The  term “Viscosity” is used to describe  ','surface tension in fluids ','friction in fluids  ','surface tension in solids  ','moment in solids','','','b','','post-utme','2011',3942,'Admin','0000-00-00 00:00:00','2020-07-17 04:21:18'),(104,' A particle is in equilibrium under the action of three forces. One force is 40N towards the west and another is 30N towards the south. What is the third force acting on the body?   ','40N, N530E  ','50N, N370E   ','50N, N530E     ','40N, N370E','','','b','','post-utme','2011',3800,'Admin','0000-00-00 00:00:00','2020-07-18 11:38:18'),(105,'A hydraulic press works on the principle of transmission of   ','force  ','energy  ','volume  ','pressure','','','d','','post-utme','2011',3968,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:25'),(106,'Which of the following is not a thermometer?  ','thermocouple  ','pyrometer  ','hydrometer  ','platinum resistance thermometer. ','','','c','','post-utme','2011',3708,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(107,'Dry air of column length 10 cm is trapped by a pellet of mercury of length 15 cm, with the open end uppermost. When the capillary is inverted the length of the air column increased to 25 cm while that of mercury remained constant. Calculate the atmospheric pressure (in cm of Hg.)  ','35 cm Hg  ','15 cm Hg  ','20 cm Hg  ','35 cm Hg','','','d','','post-utme','2011',3872,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(108,'Which of the following is not true about a chemical cell?   ','in primary cells the process through which current is generated is irreversible  ','secondary cells can be recharged after they run down by passing a current into the cell in the  reverse direction ','positive ions are attracted to the positive electrode where they become neutralized by acquiring electrons  ','primary cells  can be recharged','','','d','','post-utme','2011',3791,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(109,'A cigarette lighter in a car is a resistor that, when activated, is connected across the 12 – V battery. If the lighter dissipates 33 W of power, find the current it delivers  to the lighter.  ','9.90 Ω  ','6.60 Ω  ','4.36','17.50Ω','','','c','','post-utme','2011',3860,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(110,'A p-n junction can act as  ','an amplifier  ','a rectifier  ','an inductor ','a capacitor ','','','b','','post-utme','2011',3905,'Admin','0000-00-00 00:00:00','2020-07-15 12:47:04'),(111,'  Calcium has a work function of 19 eV with a wavelength of 150 nm. Calculate the maximum energy of a photo electron emitted. (1 eV = 16.1 x 10-19J, h = 6.6 x 10-34Js)            ','6.35 Ev  ','8.25 cV  ','14.60eV  ','None of above','','','d','','post-utme','2011',3990,'Admin','0000-00-00 00:00:00','2020-07-15 19:38:29'),(112,'Sound waves were sent out from a source and after being reflected from  an obstacle were received by a sensor placed beside the source. If the waves were received 10 seconds after they were sent out, calculate  the distance between the  source and the obstacle (speed of sound = 330 m/s) ','990m  ','660m ','1320 m ','None of above','','','d','','post-utme','2011',3859,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(113,'Two plane mirrors are inclined at angle 45 to another. A ray of light has incident angle of 20 at the surface of the first mirror. The reflected ray is then incident on the second mirror. Calculate the angle of reflection at the second mirror ','65','45','25','20','','','c','','post-utme','2012',3814,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(114,'When the length of the string of a simple pendulum is L its period is 0.5π second is 0.5π seconds. The period when the length is increased to 4L will be ','0.5π seconds','π seconds ','2π seconds ','4π seconds','','','b','','post-utme','2012',3885,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(115,'A uniform meter rule AB has a mass 15g. A 30g mass is suspended at the 10.0cm mark, and another 5g mass is suspended at the 65.0cm mark. Calculate the position of the fulcrum that will keep the meter rule balanced horizontally ','50.0cm ','32.0cm ','27.5cm ','17.9cm ','','','d','','post-utme','2012',3777,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(116,'rectangular block measures 40cm x 25cm and made of material of density 7800kg/m3. Calculate the pressure the block exerts on the floor when it stands on the smallest of its surfaces ','3.12 x 103N/m2 ','3.90 x 103N/m2 ','1.9 x 104N/m2 ','3.12 x 104N/m2','','','b','','post-utme','2012',3953,'Admin','0000-00-00 00:00:00','2020-07-21 10:29:06'),(117,'A ship sinks to the bottom of a 250m deep lake. The atmospheric pressure over the lake is 1.03 x 105 Pa. Taking the density of water in the lake to be 1000 kg/m3, calculate the pressure exerted on the boat. [acceleration due to gravity = 10 m/s2] ','2.60 x 106Pa  ','2.50 x 106Pa ','2.60 x 105Pa ','1.03 x 105Pa','','','a','','post-utme','2012',3776,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(118,'Three knives made of steel, plastic and flat wood respectively are placed on the table for an equal amount of time. The steel knife feels coldest to touched because','The steel knife has the lowest temperature ','The plastic and wooden knives have absorbed more heat from the environment than the steel knife. ','Both wooden and plastic knives have lower densities than the steel ','The steel knife conducts heat faster from the finger than the wooden and plastic knives ','','','d','','post-utme','2012',3814,'Admin','0000-00-00 00:00:00','2020-07-15 19:38:29'),(119,'Which of the following quantities is a scalar quantity?','Electric field ','Coulomb force','Electric potential ','Acceleration due to gravity','','','c','','post-utme','2012',3794,'Admin','0000-00-00 00:00:00','2020-07-18 12:24:39'),(120,'A car accelerates at 5.0m/s2 for 6s, the travels at the speed attained for 20s, and comes to rest after another 4.0s. Calculate the average velocity of the car during the motion.','25.0m/s','20.0m/s ','1.25m/s ','0.16m/s','','','a','','post-utme','2012',3873,'Admin','0000-00-00 00:00:00','2020-07-17 10:49:35'),(121,'Which of the following quantities is equal to the area under a velocity-time graph?','Acceleration ','Distance travelled ','Average Velocity of motion ','Total time taken.','','','b','','post-utme','2012',3903,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(122,'A 25N force pulls a 2.0kg body up a 300 inclined plane. If force is parallel to the plane and the body moves up the plane at constant velocity. Calculate the magnitude of the frictional force between the body and the plane. [g =10m/s2]','25N','10N','5N','15N','','','d','','post-utme','2012',3901,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:51'),(123,'The process by which solid change directly to vapour is called ','Evaporation','Fusion ','Condensation ','Sublimation ','','','d','','post-utme','2012',3766,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(124,'A coin is at the bottom of a bucket filled with a liquid whose refractive index is 1.35. The coin appears to be 12.0cm below the surface of the liquid. Calculate the depth of the liquid.','16.2cm  ','13.4cm  ','8.9cm  ','5.4cm','','','a','','post-utme','2012',3869,'Admin','0000-00-00 00:00:00','2020-07-21 19:40:45'),(125,'A 3.0cm object is placed 12.0cm in front of bi-convex lens of focal length 8.0cm. Calculate the height of the image of the object.  ','3.0cm ','6.0cm ','12.0cm ','24.0cm','','','d','','post-utme','2012',3800,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(126,'To use a milli-ammeter to measure current up to 10A, what connection needs to be made?','A small resistance must be connected in parallel with the milli-ammeter ','A small resistance must be connected in series with the milli-ammeter ','A high resistance must be connected in parallel with the milli-ammeter ','The milli-ammeter must be disconnected from the circuit.','','','b','','post-utme','2012',3874,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(127,'Two 2µF capacitors are connected in parallel. The combination is connected in series with a 6µF capacitor. What is the equivalent capacitor for the combination?','10.0µF  ','8.0µF  ','1.5µF  ','2.4µF','','','c','','post-utme','2012',3811,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(128,'Five 100-Watt bulbs are put on for 45days during which the home-owner is on vacation. If 1kW-hour of electricity cost N7.50, how much does it cost the home-owner? ','N168.75  ','N90.0  ','N4050.00  ','N810.00','','','d','','post-utme','2012',3863,'Admin','0000-00-00 00:00:00','2020-07-15 19:38:29'),(129,'To convert an a.c generator to d.c generator, one needs to ','Remove the brush touching the slip rings ','Laminate the armature ','Replace the permanent magnets with  iron-core armature. ','replace the slip rings with split rings','','','d','','post-utme','2012',3744,'Admin','0000-00-00 00:00:00','2020-07-19 23:04:37');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `proentertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `progeneral` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `category` varchar(30) COLLATE utf8_unicode_ci NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `progeneral` VALUES (1,'World environmental day happened last week in what day of the week','Tuesday','Wednesday','Thursday','Friday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'World environmental day is on every','5th of June','1st of June','4th of June','3rd of June','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'ECOWAS is now how many years old','30','40','20','35','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many people died by Boko Haram since the inception of new government','over 20','over 50','30','50','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Ghana petrol station explosion happened on ','Monday','Tuesday','Wednesday','Friday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Which Nigeria artiste was nominated for Black Canadian award','Yemi Alade','Tu-face','Psquare','Asa','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'The new Nigeria elected nation assembly is the ','7th ','8th ','5th ','6th ','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'President Buhari is to participate in G7 summit when','Friday','Saturday','Sunday','Monday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'President Buhari attended what \\\"G\\\" summit','G8','G7','G16','G10','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'APC house of representative  speaker election was won by','Tinub','Gbajabiamila','Saraki','Dark Mark','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which state reinstate 480 sacked workers','Lagos','Yobe','Sokoto','Ogun','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which Sokoto local government area reinstate 480 sacked workers',' North ','South ','East','West','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many petrol tanker truck accident happened last week in Nigeria','1','2','3','4','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Some part of Afghanistan district was captured by','Boko Haram','Taliban','Islamic State','Islamic brother hood','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which country was affect by middle east respiratory syndrome (MERS)','North Korea','South Korea','China','Japan','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria state governor rode Okada(Motor bike) to state house of assembly inauguration','Lagos governor','Ogun governor','Ekiti governor','Rivers governor','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'About how many people where on board in China ship disaster','about 300','about 200','over 400','over 500','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country in Africa asked Nigeria to help in training of army and police','Sudan','Egypt','South Sudan','Angola','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Which company sue PDP for 70 million campaign debt','Silon Concepts Limited','AIT','Media Technologies','Waat Concepts','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'The UEFA championship was played in','England','Moscow','Berlin','Paris','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Sexual intercourse with children under 11 bill was pass into laws when','5th of June','3rd June','4th of June','1st June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'did President Buhari travelled to Chad last week','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'What day of the week  did President Buhari travelled to Niger last week','Monday','Tuesday','Wednesday','Thursday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'How many special advisers did the president presented to Nation assembly','3','10','15','12','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What is the name of governor of Kano state','Abdulia Ganduje','El Rfia','Hammed Musa','Atiku Abubaka','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' How many CBN staff was sent to prison by EFCC ','10','8','7','6','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'When did world economic forum took place last week','4th of June','3rd of June','5th of June','1stof June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Elected FIFA president resignation news broke out when last week','Monday','Tuesday','Wednesday','Friday','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Health  workers strike enters week ?.. Last week','2','4','1','3','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'The new coach of Real Madrid was assigned on','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Serena Williams wins??.. Grand slam','14','15','18','20','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Who is the third tennis player to win 20 grand slam ','Rafi Nadal','Serena Williams','Venus Williams','Joko','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'How many passenger escape death as Aero aircraft developers fault mid air','100','120','about 100','over 120','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The world oldest cat dies at','12','20','22','27','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What was the score between Nigeria and Hungry in under 20 world cup match','4-0','2-0','1-0','2-2','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Nigeria team is to face which team in the round second round of under 20 world cup','Brazil','Germany','Italy','USA','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'In woman world cup, Germany defeated Ivory coast by','10-0','4-0','7-0','2-0','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'Which team won the UEFA championship title last week','Barcelona','Juventus','Real Madrid','Chelsea','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `propolitic` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `prosport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `protechy` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Anonymous',\n  `question_id` mediumint(9) NOT NULL,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `message` text COLLATE utf8mb4_unicode_ci,\n  `type` enum('1','2','3','4','5','6','7') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `status` enum('0','1') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question` VALUES (1,'Anonymous',4,'english',NULL,'1','0','2018-08-31 10:33:36','2018-08-31 10:33:36'),(2,'Anonymous',2,'english','You got busted','5','0','2018-08-31 11:05:51','2018-08-31 11:05:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question_type` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,\n  `description` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question_type` VALUES (1,'Question','There is an error in question',NULL,NULL),(2,'Option A','There is an error with option a',NULL,NULL),(3,'Option B','There is an error with option b',NULL,NULL),(4,'Option C','There is an error with option c',NULL,NULL),(5,'Option D','There is an error with option d',NULL,NULL),(6,'Answer','Something is wrong with the answer',NULL,NULL),(7,'Solution','Something is wrong with the solution',NULL,NULL);\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `socialfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `socialfb` VALUES (1,'What year was \\'Africa Queen\\' music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track \\'African Queen\\' came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D\\'Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D\\'Banj  first album released?','2002','2005','2001','2004','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What is the full meaning of NEA','National Entertainment Awards','Nigerian Entertainment Awards','Nigerian Entertainment Award','National Entertainment Award','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Nigerian Entertainment Award (NEA) 2015 was held in','Lagos Nigeria','Abuja Nigeria','New York USA','London Britain','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who won the best Female act award in Nigerian Entertainment Award (NEA)  2015','Cynthia Morgan','Yemi Alade','Seyi Shay','Tiwa savage','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Who won the best Film Director of the Year (Indigenous Films) in Nigerian Entertainment Award (NEA)  2015','Kunle Afolayan','Alex Konstantaras','Olanrewaju Abiodun','Chiwetel Ejiofor','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Best Male act was given to ??.. in Nigerian Entertainment Award (NEA) 2015','Olamide','Davido','Wizkid','Shizzi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Best Rap act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Best Pop act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Best Afrobeat Act was given to ?. In Nigerian Entertainment Award (NEA)  2015','2face Idibia','Femi Kuti','Baba Fryo','Alariwo','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Olamide life in concert \\'Beast Mode \\'hold this year on','March 10 2015','December 27 2015','December 31 2015','March 21 2015','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Which of the following guest artiste will not feature in Olamide life concert 2015','Davido','D?Banji','Wizkid','Olamide','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'what is the full meaning of KADAMFEST','Kaduna Music Festival','Kano  Music Festival','Kaduna  Music Festivals','Kano Music Festivals','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What edition is Miss World 2015','60th','61th','62nd','63rd','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Which country hosted Miss World 2015 edition','China','Japan','Singapore','India','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'What is the date of Miss World 2015 pageant?','10-Dec-15','16-Dec-15','19-Dec-15','21-Dec-15','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' Which country won Miss World 2015 pageant?','China','South Africa','Spain','Norway','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Tiwa Savage is how old in 2015','28','30','35','32','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Which of this song was release by Wizkid in 2015','On top matter','Love my babe','Expensive shit','Mummy mi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Who was the most nominated artiste for Tooxclusive award 2015','Davido','Olamide','Di?ja','Korede bello','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'Who is the fourth highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'Who is the Second highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Who is the third highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Who is the highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'30 days in Alanta was released on','31-Oct-15','31-Oct-14','1-May-15','1-May-14','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is Miss Nollywood Queen 2015','Miss Gwendolyn Okutele','Miss Adebayo Kemi','Miss Basira Malla','Miss Obichi Emeka','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' Miss Nollywood Queen 2015 is from what state','Enugu','Delta','Ondo','Lagos','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'What is the name of Olamide ablum released in 2015','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' What is the full meaning of SMD','Super Michael Data','Supreme Mavin Dynasty','Shoki Makossa Dance','Simple Motion Dance','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Who started SMD?','Olamide','Davido','P-Square','Don Jazzy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' What is the name of Olamide ablum released in 2012','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the name of Olamide ablum release in 2014','Rapsodi','YBNL','Street OT','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'\\'Yemi my lover\\' is in which Olamide album','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'What is the full name of Phyno','Godfrey Nelson','Azubuike Chibuzo Nelson','Phillip Onome','Paul Nwoko Godfrey','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,' Which of this artiste is not a Glo ambassador','D?Banj','Peter and Paul Okoye (PSquare)','Tu Face ','Wande Coal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,'Which of the following artiste is not a airtel ambassador','Phyno','Tu Face','Wande Coal','Patoranking','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sport` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','Sir Ali Ferguson.','Alex Ferguson.','Sir Alex Ferguson','Sir Alex Fergson','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'How many rings are in the Olympic colours?','6','5','4','3','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sportfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sportfb` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','?Sir Ali Ferguson.','?Alex Ferguson.','?Sir Alex Ferguson','?Sir Alex Fergson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'How many rings are in the Olympic colours?','6','5','4','3','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'When was Jose Mourinho sacked by Chelsea in 2015','15-Dec','5-Dec','27-Dec','17-Dec','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which coach is regarded as the Special One','Pep Guardiola','Raphael Benitez','Jose  Mourinho','?Sir Alex Ferguson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Which club in Nigeria premier league has the longest winning run in 2015','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' Which club in Nigeria premier league has the longest unbeating run in','Warri Wolves FC','Kano Pillars FC','Enyimba FC','Shooting Star FC','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' The 2015 Nigeria Professional Football League was won by','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The 2015 Nigeria Professional Football League second place winner was','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What is the name of Nigeria second football division','National Division league','Nigeria Second division league','Nigeria National league','Second National league','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'which of the following 2015 Nigeria Professional Football League was relegated','El-Kanemi Warriors','Enugu Rangers','Kwara United?','Abia Warriors','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'which of the following 2015 Nigeria Professional Football League was not relegated','Kwara United?','Bayelsa United','Sharks','El-Kanemi Warriors','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Kano Pillars\\' 12-year undefeated streak at home came to an end in a 2-1 loss to','Nasarawa United','Wikki Tourists','Kwara United?','Enyimba FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is the president of Nigeria football federation?','Amaju Pinnick','Alhaji Ibrahim Galadim','Alh. Aminu Maigari','Alhaji Ibrahim Pinnick','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' What is the full meaning of NFF','Nigeria Football Federation','Nation Football Federation','Nigerian Football Federation','National Football Federation','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'Which of the following is not a bet company in Nigeria','Bea Bet','Naira Bet','Surebet247 ','Bet9ja','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' Which of the following is the first sport betting website in Nigeria','Surebet247','360bet','Bet365NAIJA','Naira Bet','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Leicester City F.C. is also known as ','Lei City','The Eagle','The Foxes','Blue team','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' Leicester City F.C. is also known as the following expect','The Foxes','The Blues','The City ','Blue Army','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'Who is the current hit man for Leicester City','Jamie Vardy','Wes Morgan','Danny Simpson','Eden Hazard','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'Who is the current highest goal scorer as of December 2015 in English Premier League','Wilfried Bony','Robin van Persie','Diafra Sakho','Jamie Vardy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'Who won the Ballon D?or cup 2015','Lionel Messi ','Neymar ','Cristiano Ronaldo','Robin van Persie','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n"
  },
  {
    "path": "storage/backups/2020-07-28.sql",
    "content": "/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `accounting` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=515 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `accounting` VALUES (1,'The bad debt account is closed by transferring the balance to ','credit of capital account  ','debit of profit  and loss  ','debit of the debtors personal account ','credit of profit and loss account ','','','b','','post-utme','2010',101,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(2,'A credit note from a supplier would first be entered in the ','purchase book  ','sales book  ','returns inward book  ','returns outward','','','a','','post-utme','2010',104,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(3,'Where a proprietor withdraws cash from the business for his private use, the entries would be ','credit cash account, debit proprietor\\'s account ','credit proprietor\\'s account, debit cash account ','credit proprietor\\'s account, debit   drawings   account    ','credit   cash account,  debit drawings account','','','d','','post-utme','2010',107,'','0000-00-00 00:00:00','2020-07-23 16:34:09'),(4,'Which   of the   following   is   a  long  term liability ','bank overdraft ','bank deposit ','good will ','debentures','','','d','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:26'),(5,'Which of the following is a function of the sales journal ','it records both cash and credit sales ','it shows the balance in the sales account ','it record credit sales only ','it shows the aggregate balances in the debtors lodger','','','a','','post-utme','2010',117,'','0000-00-00 00:00:00','2020-07-23 16:34:09'),(6,'Which of the following is the most liquid ','stock ','debtors ','machinery ','loose tools','','','b','','post-utme','2010',95,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(7,'A debit balance on a bank statement indicates that ','bank is a debtor to the customer ','customer is a debtor to the bank ','bank is not a creditor to the customer ','customer is not a debtor to the bank','','','b','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-07-14 13:21:29'),(8,'At the end of a trading period, wages will be  ','debited to trading account and shown as a current liability ','credited to profit and loss Account and shown as a current liability ','credited to trading account and shown as a current asset ','debited to profit and loss account and shown as a current liability','','','a','','post-utme','2010',103,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(9,'Which of the following is not an asset ','Goodwill ','General reserves ','Debtors ','Prepayments','','','b','','post-utme','2010',117,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(10,'A company\\'s profit and loss account for a period  is  prepared by ','deducting total expenses from total revenues ','deducting total cash payments from total revenue ','deducting  all  outflows  of funds  from  all inwards of funds ','balancing its receipts and payments','','','a','','post-utme','2010',107,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(11,'The journal is a book ','of primary entry into which all transactions are entered before posting ','kept by journalist for reporting events ','of prime entry into which postings are made from the ledger  ','of analyzing major accounts','','','a','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-07-25 17:52:56'),(12,'The receipts and payments of a club is the same  as ','  Profit and   loss  account  ','Trading Account ','Cash book ','control Account','','','c','','post-utme','2010',98,'','0000-00-00 00:00:00','2020-07-23 16:34:09'),(13,'In a balance sheet, bank overdraft is ','Current Asset ','Fixed asset ','long term liability ','Current Liability','','','d','','post-utme','2010',107,'','0000-00-00 00:00:00','2020-07-14 13:21:35'),(14,'Money set aside for the saving of business overheads    is    referred    to   ','Capital Expenditure  ','Revenue  Expenditure ','Revenue receipts','','','','c','','post-utme','2010',117,'','0000-00-00 00:00:00','2020-07-14 13:21:36'),(15,'Money spent on buying of plots of land by a firm is ','Capital Expenditure ','capital receipts ','Revenue Expenditure',' Revenue Receipts','','','a','','post-utme','2010',114,'','0000-00-00 00:00:00','2020-07-25 22:43:59'),(16,'Prepaid expenses  is an  item  in ','Fixed Asset  ','  Current    Asset   ','Liabilities ','Long term liabilities ','','','b','','post-utme','2010',111,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(17,'Final accounts of (i) Cash book (ii) trading account  (iii) Profit and  loss account  (iv)Balance sheet  ','i only ','i and ii only','iii and iv only ','ii and iii  only','','','c','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-07-14 13:21:39'),(18,'Trading account is prepared to ascertain ','Gross profit ','Net profit ','Gross profit or Gross loss ',' Net profit or net loss','','','c','','post-utme','2010',105,'','0000-00-00 00:00:00','2020-07-14 13:21:40'),(19,'A statement that shows the financial position of a business is ','profit and loss account  ','Trading Account ','Statement of income  ',' Balance sheet','','','d','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(20,'  Prepaid wages is an item in the (i)Balance Sheet (ii) Profit and loss account (iii)Trading  account (iv) Cash account ','i, ii, iii only ','ii, iii  ','i, ii ','iii, iv','','','a','','post-utme','2010',119,'','0000-00-00 00:00:00','2020-07-14 13:21:42'),(21,'Partnership    is    a    business    owned and controlled by ','Two members ','two to ten members ','Two to twenty person  ','Two to five persons','','','c','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-07-14 13:21:43'),(22,'If a   machine   cost   2000   naira   and its estimated   life   span   is   10   years   and its residual is 500 naira. The yearly value of depreciation  in  naira is ','250','180','150','130','','','c','','post-utme','2010',94,'','0000-00-00 00:00:00','2020-07-14 13:21:44'),(23,'Bad debt is also known as ','Unpaid debt','irrecoverable debt  ','Payment debt  ','current    debt','','','b','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-07-14 13:21:45'),(24,'Bad debt is an item in ','Trading, profit and loss account  ','consignment account  ','Balance sheet ','Receipt and expenditure AC','','','a','','post-utme','2010',112,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(25,'The diary or events in which all financial transactions    are    recorded    for    easy reference and to assist in the double entry system is ','Ledger','Journal   ','Purchases and sales day books ','Debit and credit documents','','','a','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-07-14 13:21:47'),(26,'Which of the following is not a book of original entry? ','Cash book  ','Purchases journal  ','Sales journal ','Ledger','','','d','','post-utme','2011',103,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(27,'The test of arithmetical accuracy of all postings in the ledger is provided in the: ','Journal  ','Day book  ','Cash book  ','Trial balance','','','d','','post-utme','2011',120,'','0000-00-00 00:00:00','2020-07-14 13:21:49'),(28,'Errors   revealed   by   the   trial   balance include error of:  ','Principle  ','Single entry ','Omission  ','commission ','','','b','','post-utme','2011',107,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(29,'Accounting equation is given by  ','Assets - Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owner\\'s Equity = Liabilities ','Assets = Liabilities + Owner\\'s Equity','','','d','','post-utme','2011',93,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(30,'Which of the following is not a current asset?  ','Stock  ','Debtors  ','Creditors ','Cash','','','c','','post-utme','2011',120,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(31,'Final accounts of a company refers to: ','Trading and profit and loss account  ','Profit and loss account and balance sheet  ','Trading account and balance sheet  ','Trading , profit and loss account and balance sheet','','','d','','post-utme','2011',91,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(32,'A cheque which has been sent but has yet gone through the bank account of the receiver of it is known as:','Dishonoured cheque','Unpresented cheque ','Uncredited cheque','Unhonoured cheque','','','b','','post-utme','2011',109,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(33,'Which of the following does not appear in a bank statement?   ','Uncredited cheque ','Bank charges ','Dishonoured cheque ',' Dividend   received   on    behalf   of customer','','','d','','post-utme','2011',102,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(34,'Where a correct amount is entered, but in the wrong person\\'s account, is an error of  ','Principle  ',' Omission','Commission','Compensation','','','c','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(35,'A credit balance of N350,000 in a cash account shows that  ','N350.000 was the total cash received  ','N350,000 was the total cash paid out  ','Cash at hand equals N350,000 ','N350,000 was the cash overspent','','','d','','post-utme','2011',112,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(36,'Which   accounting  concept  states; that revenues and expenses are recognized as they are earned or incurred and not when  money is received?','Entity   ','Realization','Accrual  ','Periodicity','','','c','','post-utme','2011',111,'','0000-00-00 00:00:00','2020-07-14 13:21:57'),(37,'Which of the following is not a business asset?','Deposit account in bank','Interest due on loan','Five acres of land','Library books owned by a lawyer ','','','b','','post-utme','2011',102,'','0000-00-00 00:00:00','2020-07-25 17:52:56'),(38,'Prime cost is','Direct cost of production','Cost of raw materials consume:','Cost of raw materials purchase-:','Indirect cost of production','','','a','','post-utme','2011',105,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(39,'Subscription   received   in   respect of a future period is','Subscription deposit','Subscription in advance','Accrued subscription','Subscription in arrears','','','b','','post-utme','2011',121,'','0000-00-00 00:00:00','2020-07-26 11:08:38'),(40,'The petty cash book kept on imprest system should have','A credit balance only','A debit or nil balance','A debit balance only','Both debit and credit balance;','','','c','','post-utme','2011',99,'','0000-00-00 00:00:00','2020-07-14 13:22:02'),(41,'Wilson Company owns land which cost 14100, 000. If a \\\"quick sate\\\" of the land was necessary to generate cash, the company feels it would receive only N80, 000.    The company continues to report the asset on the balance sheet at N100, 000   This is justified under which of the following concepts?  ','The historical-cost principle.','The value is tied to objective and verifiable past transactions.','Neither of the above.',' Both \\\"a\\\" and \\\"b\\\"','','','a','','post-utme','2012',105,'','0000-00-00 00:00:00','2020-07-14 13:22:04'),(42,'Retained earnings will change over time because of several factors.  Which of the following factors would explain an increase in retained earning?','Net loss ','Net income,','Dividends ','investment by stakeholders.','','','b','','post-utme','2012',121,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(43,'Which of the following would not be included in a balance sheet?','Accounts receivable','Accounts payable  ','Sales','Cash','','','c','','post-utme','2012',99,'','0000-00-00 00:00:00','2020-07-25 17:52:56'),(44,'A company provided the following information about its balance sheet: Cash N100 Accounts receivable N500 Stockholders\\' equity 14700 Account payable N200 Bank loans Nl000 Based on the information provided, how much are Remington\\'s liabilities?','N200   ','N900   ','N 1,200   ','N 1,700','','','c','','post-utme','2012',106,'','0000-00-00 00:00:00','2020-07-14 13:22:06'),(45,'A complete set of financial statements for Hartman Company, at December 31, 1999, would include each of the following except:','Balance sheet as of December 31,1999 ','Income   statement   for   the   year   ended December 31, 1999.','Statement of projected cash flows for 2000  ','Notes containing additional information that is useful interpreting the financial statements.','','','c','','post-utme','2012',100,'','0000-00-00 00:00:00','2020-07-23 16:34:09'),(46,'If the equipment account has a balance of N22.500 and its accumulated account has a balance of N14,000 the book value of the equipment is:  ','N22.500   ','N8.500 ','N 14,000  ','N36.500','','','b','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(47,'The balance unearned rent account for Jones Co. as at 31st Dec. is 1,200. If Jones Co tailed to record the adjusting entry for 600 of rent earned during December, the effect on the balance sheet and income statement','for December is:',' Liabilities   overstated—N60Q:   c:et income overstate d 44600',' Liabilities   understated   £4500:   net income  understated N600','Asset    understated—N600:     net    income  overstated N600',' Liabilities   overstated   N600:    net income understated N600','','d','','post-utme','2012',103,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(48,'If goods purchased on account is returned, the buyer may inform the seller of the details by issuing:','An invoice  ','A debt memorandum','A credit memorandum  ',' A bill','','','c','','post-utme','2012',105,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(49,'Which of the following entries classes the  owner\\'s drawing account at the end of the period?','Debit the drawing account, credit the owner\\'s capital account','Debit the income summary account credit the drawing account','Debit   the   drawing account credit income summary accounting','Debit the owner\\'s capital account, credit the drawing account','','','d','','post-utme','2012',100,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(50,'At the end the fiscal year, account receivable has a balance of 100,000 and allowance for doubtful account has a balance of 7,000. The expected that realized value of the  receivable is: account','N 107,000','N100,000','c. N93,000','N 147,000','','','c','','post-utme','2012',114,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(51,'Which of the following accounts would be classified as a current on the balance sheet?','Office Equipment','Accumulated Depreciation','Land','Accounts receivable','','','d','','post-utme','2012',109,'','0000-00-00 00:00:00','2020-07-25 17:52:56'),(52,'A petty cash fund is:','Used to pay relatively small amount','reimbursed when the amount of money in the fund is reduced to a predetermined minimum amount','Established by estimating the amount of cash needed for disbursement of  relatively small amount during a specified period  ','All of the above','','','d','','post-utme','2012',91,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(53,'A debit may signify: ','an increase in the owner\\'s capital amount','an increase in a liability account','a decrease in an asset account','an increase in an asset account','','','d','','post-utme','2012',111,'','0000-00-00 00:00:00','2020-07-25 17:52:56'),(54,'The receipt of cash from customers in a payment of their account would recorded by a','Debit to account receivable; credit to cash ','b  Debit to cash credit to accounts receivable  ','Debit to cash, credit to accounts payable  ','Debit to account payable credit to cash','','','b','','post-utme','2012',111,'','0000-00-00 00:00:00','2020-07-19 14:28:27'),(55,'The essential amount of depreciation or equipment for a period is 2,000 the adjusting end to record depreciation would be','Debit depreciation expense, 2000, credit expense, 2,000','Debit equipment, 2,000; credit depreciation expense, 2,000','Debit accumulated depreciation, 2,000. credit depreciation expense 2,000    ','Debit depreciation expense, 2,000; credit accumulated depreciation 2,000.','','','d','','post-utme','2012',100,'','0000-00-00 00:00:00','2020-07-14 13:22:17'),(56,'Which of the following assets could be described as a current asset?','Stock of goods for resale','Machinery to manufacture goods for resale ',' Buildings to house the machinery','Land on which the buildings stand.','','','a','','post-utme','2012',109,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(57,'The purchase journal records:','invoices from creditors','Debtors\\' invoices','Cash payments to suppliers','Amounts owing to employees for wage;','','','a','','post-utme','2012',108,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(58,'If a business shows a debit balance in its own record of its bank balance, this indicates.','The business has a bank overdraft','The business is a debtor of the bank','The business has money in the bank','The ledger entry must be wrong.','','','a','','post-utme','2012',92,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(59,'If a business pays for only 11 months rent during a financial year, what accounting term is given to the outstanding term is given to the outstanding one month\\'s rent? Which of the following equations properly represents a derivation of the fundamental accounting equation?','Assets + liabilities = owner\\'s equity ','Assets = owner\\'s equity','Cash = assets.  ','Assets - liabilities = owner\\'s equity','','','d','','post-utme','2012',93,'','0000-00-00 00:00:00','2020-07-25 17:52:56'),(60,'A business shows total debtors\\' balances of N400,000 in its ledger at the end of its financial year. A customer owing N40,000 is bankrupt, and there is no possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor\\'s total will be included as a current asset in the balance sheet?','N400,000,   ','N352,800    ','N352,000.  ','N436,200 ','','','c','','post-utme','2012',88,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(61,'To arrive at the gross profit of a trading  business, which one of the following formulate is applied?','Sales - (Opening Stock-Purchases-Closing Stock)','Sales - (Opening stock + Purchases + Closing Stock)','Sales - (Opening stock + Purchases - Closing Stock)','Sales - (Opening stock - purchases + closing stock)','','','c','','post-utme','2012',103,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(62,' Which one of the following is not part of a company\\'s equity capital?','Ordinary shares','Preference shares','Voting Shares','Equity shares','','','c','','post-utme','2012',89,'','0000-00-00 00:00:00','2020-07-14 13:22:50'),(63,' An expenditure whose benefit is finished or enjoyed immediately is called: ','Expense   ','Liability ','Cost ','Income','','','a','','post-utme','2012',106,'','0000-00-00 00:00:00','2020-07-25 17:52:56'),(64,'Where no partnership agreements exist, a partner who puts a sum of money into a firm in excess of the capital he has agreed to subscribe is entitled to interest rate per annum on such money ','15%','10%','5%','2%','','','c','','post-utme','2013',102,'','0000-00-00 00:00:00','2020-07-23 16:34:09'),(65,'MORADE had total assets of N760,000, capital stock of N150,000 and retained earnings of N215,000. What was Morade\\'s debt-to-equity ratio? ','2.63','1.08','0.52','0.48','','','b','','post-utme','2013',96,'','0000-00-00 00:00:00','2020-07-14 13:22:55'),(66,'9.   Which   of   the   following   is   a   correct expression of the accounting equation? ','Assets = Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owners\\' Equity = Liabilities ','Assets = Liabilities - Owner\\'s Equity','','','a','','post-utme','2013',99,'','0000-00-00 00:00:00','2020-07-23 16:34:10'),(67,'Which of these items would be accounted for as an expense? ','repayment of a bank loan ','dividends to stockholders ','the purchase of land ','payment of the current period\\'s rent','','','d','','post-utme','2013',110,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(68,'At the end the fiscal year, account receivable has a balance of Nl00,000 and allowance for  doubtful   account  has a balance   of N7,000. The expected net realized value of the account receivable is: ','Nl07,000 ','N100,000 ','N93,000 ','N7,000 ','','','c','','post-utme','2013',113,'','0000-00-00 00:00:00','2020-07-23 16:34:09'),(69,'A debit balance of Nl50,000 in a cash account   shows   that   ','  cash  has   been overspent   by   N150,000   ','  there   was N150,000 cash in hand ',' the total of cash received   was   less   than   N150,000   ','N150,000 was the total of cash paid out. ','','','b','','post-utme','2013',96,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(70,'Posting  the  transactions   in bookkeeping means ','making the first entry of a double entry transaction ','entering items in a cash book ','making the second  entry of a double entry transaction ','something other than the above.','','','a','','post-utme','2013',113,'','0000-00-00 00:00:00','2020-07-14 13:23:02'),(71,' On December 31, 2012, Infinite Grace had a note payable due on August 1, 2013. On January 20, 2013, Infinite Grace signed a financing agreement to borrow the balance of the note payable from a lending institution to refinance the note. The agreement does not expire within one year, and no violation of any provision in the financing agreement exists. On  February 1, 2013. Infinite Grace was informed by its financial advisor that the lender is not expected to be financially capable of honouring the agreement. Infinite Grace\\'s financial statements were issued on March 31, 2013. How should Infinite Grace classify the note on its balance sheet at December 31,2012? ','as a current liability because the financing agreement was signed after the balance sheet datecapable of honouring the agreement   ','as a current liability because the leader is not expected to be financially ',' as   a   long-term   liability because  the agreement  does   not  expire within one year ',' as a long-term liability because no violation of any provision in the financing agreement exists.','','','c','','post-utme','2013',105,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(72,'A business shows total debtors\\' balance of N400,000 in its ledger at the end of its financial customer owing N40,00 are bankrupt, and there is no  possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor’ total will be included as a current asset in the balance sheet? ','N400,000  ','N352,800  ','N352, 000  ','N36, 200','','','b','','post-utme','2013',99,'','0000-00-00 00:00:00','2020-07-14 13:23:04'),(73,'Companies and  Allied  Matters  Act. 1990 requires  every  company   to  keep  certain statutory books. Which of the following is not part of the statutory books to be kept by the company? ','register of directors and secretaries ','a register of charges (fixed and floating) ','minutes books of meetings of the company and meetings of its directors ','a register of companies in the same line of business','','','d','','post-utme','2013',94,'','0000-00-00 00:00:00','2020-07-14 13:23:06'),(74,'The    main    objective   of   the   financial statements is to ','provide a true and fair- view of the financial position of the business ','help managers take correct decisions ','show every transaction affects two items in the  balance sheet ','help owners of a business to plan for the future.','','','a','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-07-23 16:34:09'),(75,' Impersonal accounts contain ','capital and cash account ','nominal account and real account ',' real and cash account ','capital and real act minis ','','','b','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-07-14 13:23:08'),(76,'One of (he following errors will affect the agreement of the trial balance ','error of omission ','trial balance error ','principle error ','error of original entry','','','b','','post-utme','2013',143,'','0000-00-00 00:00:00','2020-07-25 11:59:50'),(77,'Which of the following is a fictitious asset? ','prepayments ','preliminary expenses ','investment ','plant and machinery ','','','b','','post-utme','2013',86,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(78,'  Which of the following is not part of the main uses of the journal ',' purchase and sale   of   fixed   assets   on  credit   ','the  correction of errors ','writing off bad debts ','none of the above','','','d','','post-utme','2013',90,'','0000-00-00 00:00:00','2020-07-23 16:34:09'),(79,'…………………checks the arithmetical accuracy of double entry accounts ','trading account ','profit and loss account ','balance sheet ','trial lance','','','d','','post-utme','2013',107,'','0000-00-00 00:00:00','2020-07-14 13:23:14'),(80,'The distinguishing feature between a two-column and three-columncash book is','discount column','cash column','bank column','ledger folio','','','a','','wassce','2013',105,'Admin','2016-11-15 20:31:29','2020-07-25 20:35:38'),(81,'The lodgment of business cash into the business bank account is an example of','contra entry','bank reconciliation','self balancing ledger','reversal entry','','','b','','wassce','2013',129,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:16'),(82,'credit balance is','a liability or an expense.','a liability or an income.','an expenditure or an income.','an asset or an expense.','','','b','','wassce','2013',95,'Admin','2016-11-15 20:31:30','2020-07-25 17:52:56'),(83,'Which of the following is not a characteristic of a Trial Balance?','It has columns for debit and credit balances','Total of debit balance equals total of credit balance','It is a statement','It is an account','','','d','','wassce','2013',100,'Admin','2016-11-15 20:31:30','2020-07-25 17:52:56'),(84,'The capital of a sole trader changes as a result of','paying wages by cash.','equipment purchased by cheque.','drawings by cheque.','purchases on credit.','','','c','','wassce','2013',99,'Admin','2016-11-15 20:31:30','2020-07-26 06:44:15'),(85,'The order of financial accounting process involves: (I) recording; (II) presenting; (III) collecting; (IV) analyzing.','I, II. Ill and IV','II, III, I and IV','Ill, I, II and IV','IV, III, II and I','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:21'),(86,'A dishonoured cheque is','debited in the cash book.','credited in the cash book.','double entry in the cash book.','credited in the bank book.','','','c','','wassce','2013',95,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:22'),(87,'A petty cashier received a float of GHc 120 and spent GHc 84. The imprest is','GHc 204.','GHc 120.','GHc 84.','GHc 36.','','','d','','wassce','2013',91,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:23'),(88,'Which of the following is not a book of original entry?','Cash Book','Purchases Ledger','Returns Outwards Journal','General Journal','','','b','','wassce','2013',84,'Admin','2016-11-15 20:31:30','2020-07-25 17:52:56'),(89,'The current ratio is','1.87 : 1.','1 : 1.87.','1 : 2.','2 : 1.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',107,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:26'),(90,'The capital employed is','N=740,000.','N=580,000.','N=370,000.','N=280,000.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','c','','wassce','2013',103,'Admin','2016-11-15 20:31:30','2020-07-25 17:52:56'),(91,'The returns on capital employed is','17.2%','16.2%.','15.2%.','11.2%.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',82,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:29'),(92,'The double entry principle states that','every debit entry must have a corresponding credit entry','every credit entry must have a corresponding double entry','every debit entry must have a corresponding double entry','every asset must have a corresponding liability.','','','a','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:31'),(93,'Which of the following is a nominal account?','Machinery Account','Drawings Account','Debtors Account','Wages Account','','','d','','wassce','2013',109,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:32'),(94,'Reserves account is kept in the','private ledger.','creditors ledger.','nominal ledger.','debtors ledger.','','','c','','wassce','2013',96,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:33'),(95,'An advantage of control account is','locating figures.','adding figures.','changing figures.','locating errors.','','','d','','wassce','2013',103,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:34'),(96,'The accumulated fund of a not-for-profit making organization is','a fixed asset.','a current asset.','a liability.','capital.','','','d','','wassce','2013',97,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:35'),(97,'A business is treated as being separate from the owners. This statement is emphasized by','consistency concept.','realization concept.','going concern concept.','business entity concept.','','','d','','wassce','2013',100,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:37'),(98,'Which of the following is recorded on the debit side of the Trial Balance?','Bank overdraft','Returns outwards','Purchases','Capital','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:38'),(99,'Which of the following is determined in the Trading Account?','Factory overheads','Cost of goods sold','Prime cost','Net profit','','','b','','wassce','2013',106,'Admin','2016-11-15 20:31:31','2020-07-19 14:28:27'),(100,'Cash receipts and payments involving discounts are entered in','three-column cash book.','two-column cash book.','analytical cash book.','petty cash book.','','','a','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:40'),(101,'The minimum number of persons required to form a partnership business is','2.','3.','5','10.','','','a','','wassce','2013',88,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:41'),(102,'Which of the following accounts has a credit balance?','Returns Inwards Account','Machinery Account','Sales Account','Cash Account','','','c','','wassce','2013',93,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:42'),(103,'The accounting principle that states that, in the preparation of accounting statement, revenue are recognized as        soon as goods are passed on to the customer is the','materiality concept.','matching concept.','consistency concept.','realization concept.','','','d','','wassce','2013',109,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:43'),(104,'Agreement between partners is contained in the Partnership','Act.','Deed.','Accord','Deal.','','','b','','wassce','2013',113,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:43'),(105,'A low current ratio in a business indicates that the business is','faced with long term loan repayment problem.','efficient in the utilization of its resources.','unable to pay its bills on time.','growing its net asset effectively.','','','c','','wassce','2013',123,'Admin','2016-11-15 20:31:31','2020-07-25 17:52:56'),(106,'Which of the following is a recurrent expenditure in public sector accounting?','Purchase of vehicles','Purchase of drugs','Construction of boreholes','Construction of buildings','','','b','','wassce','2013',97,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:56'),(107,'In departmental accounts, administrative expenses are recorded in the','Trading Account.','Balance Sheet.','Profit and Loss Account.','Profit and Loss Appropriation Account.','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:57'),(108,'The Public Accounts Committee is an organ of','military regime.','parliament.','presidency.','councilors.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:58'),(109,'The balance at the end of the period is',' 270,000.','139,000.','131,000.','120,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','c','','wassce','2013',89,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:59'),(110,'The total expenditure for the period is','319,000.','270,000','139,000.','109,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','d','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:00'),(111,'Which of the following is not an item on the credit side of the purchases ledger control account?','Cash received','Cash payment','Contra settlement','Cheque payment','','','a','','wassce','2013',96,'Admin','2016-11-15 20:31:31','2020-07-25 20:35:38'),(112,'When a business is purchased from a sole trader, the excess of the purchase price over the net assets is','reserve.','goodwill.','freehold.','valuation price.','','','b','','wassce','2013',94,'Admin','2016-11-15 20:31:31','2020-07-25 20:35:38'),(113,'A set of instructions or programs which controls the operation of a computer is','software.','hardware.','monitor.','keyboard.','','','a','','wassce','2013',101,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:03'),(114,'The process of detecting, tracing and eliminating errors in a computer program is','reproduction.','debugging.','sorting.','retrieving.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:04'),(115,'In a not-for-profit making organization, the cash book is referred to as','income and expenditure account.','receipts and payments account.','two column cash book.','petty cash book.','','','b','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:05'),(116,'When the going concern concept is no longer applicable, the fixed assets are recorded at their','net book value.','realizable value.','gross value.','revalued amount.','','','b','','wassce','2013',106,'Admin','2016-11-15 20:31:31','2020-07-26 06:44:15'),(117,'The cost of raw materials consumed is','GHc 58,000.','GHc 52,500.','GHc 52,000.','GHc 50,000.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','b','','wassce','2013',105,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:07'),(118,'The prime cost is','GHc 64,500.','GHc 64,000.','GHc 58,500.','GHc 52,500.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','a','','wassce','2013',111,'Admin','2016-11-15 20:31:31','2020-07-19 14:28:27'),(119,'Which of the following relates to the essence of partnership? To','run a charity organization.','pursue a social objective.','form a business for profit.','run a religious objective.','','','c','','wassce','2013',92,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:08'),(120,'The basic assumption which underlines the preparation of periodic financial statement is known as accounting','bases.','techniques.','concepts.','method.','','','a','','wassce','2013',114,'Admin','2016-11-15 20:31:31','2020-07-25 20:35:38'),(121,'Upon the dissolution of a partnership business, the party to be settled first out of the proceeds realized is','unsecured creditors.','partners’ loan and advances.','secured creditors.','partners’ capital.','','','c','','wassce','2013',81,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:10'),(122,'Stock account is a type of','nominal account.','personal account.','real account.','fixed assets account.','','','c','','wassce','2013',96,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:11'),(123,'At the end of a trading period, cost of goods sold is debited to the trading account while cost of services is        debited to the','balance sheet.','manufacturing account.','trading account.','profit and loss account.','','','d','','wassce','2013',103,'Admin','2016-11-15 20:31:31','2020-07-26 06:44:15'),(124,'Which of the following is not part of prime costof production?','Depreciation of factory equipment','Direct expenses','Direct wages','Carriage on raw materials','','','a','','wassce','2013',94,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:13'),(125,'Excess of current assets over current liabilities is','deferred capital.','nominal capital.','working capital','authorized capital.','','','c','','wassce','2013',83,'Admin','2016-11-15 20:31:31','2020-07-19 14:28:27'),(126,'A statement showing a trader’s financial position as at a particular date is a/an','trading account.','profit and loss account.','balance sheet.','appropriation account.','','','c','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-07-25 22:17:40'),(127,'A trading account is prepared to disclose the','net profit or loss for the year.','gross profit or loss for the year.','accumulated fund for the year.','gross profit on manufacturing.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:16'),(128,'Balance as per cash book 2, 970  Bank Charges 220 ;Unpresented cheques 3, 950; Uncredited cheques 4,178 ; Direct debit by bank 1, 000 . Determine  the balance as per bank Statement','N1,978','N1,962','N1,522','N2,522','','','d','','utme','2016',96,'Admin','2016-11-16 07:48:40','2020-07-26 06:44:15'),(129,'The records of Superstores shows a loan of  N14,000 from Bala, creditor N8, 000 and assets N190, 500. What is the firm’s capital?','184, 000','1 96, 500','212 000','168, 500','','','d','','utme','2016',100,'Admin','2016-11-16 07:48:41','2020-07-22 21:30:17'),(130,'The major advantage of the journal proper is that it','helps in the preparation of the balance sheet','prevents fraud and theft of item of the business','serves as a book of instruction to the bookkeeper','helps the banking industry to be efficient.','','','b','','utme','2016',92,'Admin','2016-11-16 07:48:41','2020-07-23 10:49:59'),(131,'One of the objectives of accounting is that it can be used for','business decision making','due process in business','motivating employees','determining the work force.','','','a','','utme','2016',91,'Admin','2016-11-16 07:48:41','2020-07-22 21:43:52'),(132,'The ratio that gives the indication of the efficiency of a firm’s sales with respect to cost of goods sold is a','return on capital employed','gross profit margin','net profit margin','return on equity.','','','b','','utme','2016',105,'Admin','2016-11-16 07:48:41','2020-07-23 10:37:19'),(133,'The instrument used in analysis and interpretation of financial statement is the','accounting ratios','income and expenditure extract','balance sheet extract','fund accounting.','','','a','','utme','2016',95,'Admin','2016-11-16 07:48:41','2020-07-22 21:43:50'),(134,'An item in the balance sheet of a limited liability company is','accrued expenses','lighting and heating','salaries and wages','general expenses.','','','a','','utme','2016',104,'Admin','2016-11-16 07:48:41','2020-07-23 10:49:57'),(135,'The documents that provide instant information to firms on their transactions with banks are','bank statement and debit note','cheque stub and deposit slip','cheque book and cashbook','payslip and credit invoice.','','','a','','utme','2016',92,'Admin','2016-11-16 07:48:41','2020-07-25 17:52:56'),(136,'Which of the following is the capital reserve of a company?','Accumulated depreciation.','Retained profit.','Share premium','Loss on forfeited shares','','','b','','utme','2016',99,'Admin','2016-11-16 07:48:41','2020-07-26 06:44:15'),(137,'The effect of overstating-revenue expenditure in the profit and loss account is that the','opening stock will be increased','net profit will be understated','net profit will be overstated','opening stock will be decreased','','','b','','utme','2016',93,'Admin','2016-11-16 07:48:41','2020-07-25 17:52:56'),(138,'Which of the following conditions would attract credit and debit notes to be used?','When goods are received from supplier.','When a trial balance is extracted','When a buyer is under or over charged.','When goods are sold to a buyer.','','','c','','utme','2016',114,'Admin','2016-11-16 07:48:41','2020-07-25 17:52:56'),(139,'Given:  Drawings [3,500]; Net loss [2, 500]; Capital 1.1.2007 [35, 000], Additional capital [10, 000]. The adjusted capital as at 31 : 12 : 2007 is','N45, 000','N39,000','N35, 000','N46, 000','','','d','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:27'),(140,'A receipt is an evidence of','payments','stocking','delivery','discounts.','','','a','','utme','2016',93,'Admin','2016-11-16 07:48:41','2020-07-23 10:37:20'),(141,'An organization which has records of only personal accounts is said to be operating on the basis of','single entry','real accounts','double entry','nominal accounts','','','a','','utme','2016',117,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:29'),(142,'A proprietor started business with N13, 000.  Assets and liabilities at the end of the year; fixed assets N8, 800, stock N2, 600, debtors  N1 , 000, cash N3, 000 and creditors N1 , 000. Determine the profit for the year?','N2, 400','N3, 000','N9, 800','N 1 , 400','','','d','','utme','2016',92,'Admin','2016-11-16 07:48:41','2020-07-22 21:43:50'),(143,'Badge Plc issued 450, 000 ordinary shares, of 50K each at N1 .50 per share. Application and allotment 45k, 1st call 50k, 2nd call 55k. Determine the amount received on final call.','N225, 000','N236, 250','N 247, 500','N 202, 500','','','c','','utme','2016',109,'Admin','2016-11-16 07:48:41','2020-07-25 20:35:38'),(144,'When goods are sent to the branch at cost plus mark­up, it means that the branch should sell at','a price above or below the stipulated price','any price but not below the transfer price','cost price','a price that is equal to the mark-up.','','','a','','utme','2016',84,'Admin','2016-11-16 07:48:41','2020-07-22 21:43:51'),(145,'The income and expenditure account differs from receipts and payments account because it','accounts for notional charges','records transactions that relate to the period on cash basis','records transactions that relate to the period  on accrual basis','accounts for balance of cash at bank.','','','b','','utme','2016',105,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:32'),(146,'The major sources of revenue for the state and local governments is','value added tax','statutory allocation','taxes and levies','recurrent revenue.','','','b','','utme','2016',101,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:33'),(147,'Which of the following -is -correct about the imprest system?','II and IV','I, III and IV','I, II and III','III and IV','I.   The amount of the imprest is the same from one organization to another. II. At the end of a fixed period, the petty cashier received a fixed sum of money.  III.  At the end of a period, the petty-cashier is reimbursed, with the amount spent in that period. IV. The system is a method by which a measure  of control is kept on petty cash expenses','','c','','utme','2016',106,'Admin','2016-11-16 07:48:41','2020-07-23 10:37:20'),(148,'When the fixed capital method is used, the partners share of profits and remunerations are credited to the','current account.','profit and Loss account.','profit and loss appropriation account.','capital account.','','','d','','utme','2016',110,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:47'),(149,'A discount that is allowed to encourage a debtor to pay off his debt within a period is the','trade discount','annual discount','periodic discount','cash discount.','','','d','','utme','2016',114,'Admin','2016-11-16 07:48:41','2020-07-26 06:44:15'),(150,'The costs of acquiring fixed assets and bringing them into the firm is a','general expenses','recurrent expenditure','revenue expenditure','capital expenditure.','','','d','','utme','2016',107,'Admin','2016-11-16 07:48:41','2020-07-23 10:37:21'),(151,'The impersonal account is subdivided into','realand nominal accounts','nominal and personal accounts','real and current accounts','personal and real accounts.','','','a','','utme','2016',100,'Admin','2016-11-16 07:48:41','2020-07-22 21:30:17'),(152,'Opening balance of Diksacompany was 12, 202, closing balance N15,300, total cash received during the period N40, 000. What was the amount of cash paid during the same period?','N36. 902','N27,502','N12,498','N43.098','','','c','','utme','2016',111,'Admin','2016-11-16 07:48:42','2020-07-22 21:30:18'),(153,'The total cash and cheques received from customers in a control account is derived from the','income and expenditure account','cashbook','purchases day book','sales journal','','','d','','utme','2016',97,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:52'),(154,'Which of the followings is a credit item in creditors ledger control account?','Returns outwards.','Discount Received.','Bad debts.','Purchases.','','','d','','utme','2016',125,'Admin','2016-11-16 07:48:42','2020-07-25 20:35:38'),(155,'The trader’s capital in a single entry system is ascertained by preparing','gross profit','statement of affairs','suspense account','appropriation account','','','b','','utme','2016',103,'Admin','2016-11-16 07:48:42','2020-07-23 10:37:19'),(156,'From the information above, sources of income for a Not-for-profit making organization include','I, III, IV','I, II, III','I, II, IV','I and IV','I.   Members subscription II.  Fines  from members  III. Donation  IV.  Loan from bank','','b','','utme','2016',95,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:55'),(157,'Clifford pays rent of  N200 per month for premises. He paid N 2,800 within the year, Compute the prepayment.','N300','N400','N660','N200','','','b','','utme','2016',110,'Admin','2016-11-16 07:48:42','2020-07-23 10:37:21'),(158,'Purchases can be ascertained through the preparation of a','stock account','sales account','total debtors’ control account','total creditors, control account','','','d','','utme','2016',90,'Admin','2016-11-16 07:48:42','2020-07-25 20:35:38'),(159,'When stock is withdrawn, for personal use, the accounting entries is to debit','stock account, credit drawings','drawing account credit stock account','personal account credit cash account','cash account, credit personal account.','','','b','','utme','2016',161,'Admin','2016-11-16 07:48:42','2020-07-26 15:04:50'),(160,'Sundry debtors in the balance sheet of Onoja Bakery and Sons totaled N800,000. A provision of 2% was made for discount and 5% provision for bad and doubtful debts.  Find the amount for sundry debtors after provision.','N744,800','N 760,000','N784, 000','N744, 000','','','d','','utme','2016',93,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:59'),(161,'Which of the following is accounted for in receipts and payments account?','Accrued expenses on annual dances','Subscriptions due but not yet received','Interest on bank deposit','Depreciation of the club house.','','','c','','utme','2016',93,'Admin','2016-11-16 07:48:42','2020-07-14 13:24:59'),(162,'When the purchase Consideration is lower than the net asset, the buyer has gained the advantage of','capital reserve','revenue reserve','net-income','net loss','','','a','','utme','2016',82,'Admin','2016-11-16 07:48:42','2020-07-22 21:43:51'),(163,'An increase in government expenditure within a year is taken care of by means of','virement','financial regulations','supplementary estimate','warrant.','','','b','','utme','2016',97,'Admin','2016-11-16 07:48:42','2020-07-22 21:43:52'),(164,'A business organization prepares departmental account in order to','ascertain the contribution of each department to the organization','ascertain interdepartmental transfer','build other branches','know the number of departments in the organization.','','','a','','utme','2016',94,'Admin','2016-11-16 07:48:42','2020-07-23 10:49:59'),(165,'The objective of departmental account is to','ascertain the amount of profits or losses for the enterprise','ascertain the amount of profits or losses for each department','ascertain the cost of running the organization.','offset the loss of each department.','','','b','','utme','2016',109,'Admin','2016-11-16 07:48:42','2020-07-23 10:37:20'),(166,'Which of the following expenses relate to the profit and loss account of a manufacturing firm?','Administrative overhead.','Direct labour','Direct materials.','Work-in-progress.','','','a','','utme','2016',103,'Admin','2016-11-16 07:48:42','2020-07-26 06:44:15'),(167,'The difference between book keeping and accounting is that while','book keeping interprets data accounting records it','book keeping is regarded as  the language of the business, accounting ascertains its .strength and weakness','book keeping records data accounting interprets it','book keeping - summaries information, accounting communicates it.','','','c','','utme','2016',107,'Admin','2016-11-16 07:48:42','2020-07-25 17:52:56'),(168,'Alaka who owed Saka N15, 000, settled his deb  after- deducting cash discount of 10%. To record the discount in the book of Saka, debit','Saka’s account and credit discount received account','Alaka’s account and credit discount received account','discount received account andcredit Alaka’s account','discount allowed account and credit Alaka’s account.','','','a','','utme','2016',112,'Admin','2016-11-16 07:48:42','2020-07-25 20:35:38'),(169,'If the scrap value is now N15, 000, what will be the yearly depreciation using straight line method?','N11 000','N7, 000','N 4, 000','N24. 000','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','c','','utme','2016',104,'Admin','2016-11-16 07:48:42','2020-07-14 13:25:07'),(170,'The yearly depreciation using the straight line method would be','N5,200','N6,500','N8, 800','N4, 400','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','a','','utme','2016',100,'Admin','2016-11-16 07:48:42','2020-07-23 10:49:57'),(171,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N  5,000','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','c','','utme','2016',107,'Admin','2016-11-16 07:48:42','2020-07-26 06:44:15'),(172,'The market value of goods produced is','N30,500','N3, 600','N31,600','N31,620','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','b','','utme','2016',127,'Admin','2016-11-16 07:48:42','2020-07-22 21:30:17'),(173,'A suspense account is used to','agree the trial balance','record sales','record purchases','correct errors','','','a','','wassce','1997',61,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:16'),(174,'To correct an error, the Purchases Account was debited while Suspense Account was credited. Which  of  the following was the cause of the error?','Under casting of purchases','Overcasting of purchases','Original entry.','Transportation of returns outwards','','','a','','wassce','1997',72,'Admin','2016-11-18 07:24:28','2020-07-25 20:35:38'),(175,'Subscription in advance is treated in the Balance Sheet of \tnon-profit making organizations as','current asset','fixed asset','Current liability','accumulated fund','','','c','','wassce','1997',97,'Admin','2016-11-18 07:24:28','2020-07-25 17:52:56'),(176,'A Sales Day Book is used to record','cash sales of stock','credit sales of stock','cash and credit sales of stock','cash sales of fixed assets','','','b','','wassce','1997',91,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:19'),(177,'Which of the following is not a capital expenditure to a local government?','Beds','Theatre equipment','Incubators','Drugs','','','d','','wassce','1997',93,'Admin','2016-11-18 07:24:28','2020-07-19 14:28:27'),(178,'A Receipt and Payments Account reveals','net profit','surplus','cash in hand','gross profit','','','c','','wassce','1997',99,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:21'),(179,'An example of appropriation of profit in a company is','salaries','rent income','debenture interest','dividend.','','','d','','wassce','1997',73,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:22'),(180,'In a partnership goodwill is recognized when','a new partner is admitted','a partner is dormant','the business is making huge profit','the business has good customer relations','','','a','','wassce','1997',89,'Admin','2016-11-18 07:24:28','2020-07-19 14:28:27'),(181,'Which of the following is a normal account?','Machinery','Debtors','Creditors','Salaries','','','d','','wassce','1997',94,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:24'),(182,'The net book value at the time of sale was','N=  16,000','N=  14,000','N=  12,000','N= 6,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',93,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:25'),(183,'Accumulated depreciation at the time of sale was','N= 16,000','N=  14,000','N=  12,000','N=  8,000','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','b','','wassce','1997',77,'Admin','2016-11-18 07:24:28','2020-07-25 20:35:38'),(184,'The prof it on sale was','N=  8,000','N=  7,000','N=  6,000','N=  1,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',81,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:26'),(185,'In Manufacturing Account, prime cost plus factory overhead is known as','conversion cost','cost of raw materials consumed','total cost','production cost','','','d','','wassce','1997',82,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:36'),(186,'Which of the following is an advantage of the imprest system?','Making high profits in the business','Rewarding the imprest holder','Easy preparation of the final accounts','Meeting small items of expenditure','','','d','','wassce','1997',79,'Admin','2016-11-18 07:24:28','2020-07-26 06:44:15'),(187,'Where a business is purchased, the full amount of the purchase consideration is credited to','Purchase of Business Account','Creditor’s Account','Vendor’s Account','Purchaser’s Account.','','','a','','wassce','1997',76,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:38'),(188,'A financial plan of action expressed in monetary terms is known as','imprest','consolidated fund','warrant','budget','','','d','','wassce','1997',89,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:40'),(189,'Which of the following is not a source document for recording sales?','Debit note','Credit note','Receipt','Sales journal','','','d','','wassce','1997',108,'Admin','2016-11-18 07:24:28','2020-07-25 20:35:38'),(190,'The mark-up is','N  15,000','N 9,000','N  4,000','N  3,000','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','d','','wassce','1997',84,'Admin','2016-11-18 07:24:28','2020-07-26 06:44:15'),(191,'The double entry required for the mark-up is debit Branch','Sales Account, credit Branch Adjustment Account','Adjustment Account, credit Branch Stock Account','Stock Account, credit Branch Adjustment Account','Profit and Loss Account, credit Branch Stock Account,','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','c','','wassce','1997',73,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:43'),(192,'A ledger is a','book of accounts','summary of entries','book of original entry','double entry posting','','','d','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:44'),(193,'A real account is the account of','expenses or losses','gains or income','physical tangible items','fictitious items','','','c','','wassce','1997',87,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:45'),(194,'An item is fictitious because it','does not exist','is too costly','is worthless','cannot be sold for cash','','','a','','wassce','1997',80,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:46'),(195,'Which of the following is not a personal account?','Bolaji Account','Drawings Account','P.Z. Plc Account','Cash Account','','','c','','wassce','1997',90,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:47'),(196,'A provision is','an expense of business to be paid for in cash','an amount of loss from trading activities','a loss in value of all business assets','an expense the amount of which is not certain','','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:48'),(197,'A cash discount is a','Trading Account item','Profit and Loss Account item','Appropriation Account item','Receipts and Payments Account item','','','b','','wassce','1997',81,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:49'),(198,'The amount of capital expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','b','','wassce','1997',78,'Admin','2016-11-18 07:24:29','2020-07-19 14:28:27'),(199,'The amount of revenue expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','c','','wassce','1997',100,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:50'),(200,'An expense becomes an accrual because it','is due for payment','is a Profit and Loss Account item','is a Trading Account item','is to be paid within the next one year','','','a','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:51'),(201,'The amount for which a business is sold is known as','goodwill','capital reserve','purchase consideration','premium','','','c','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-25 17:52:56'),(202,'The person, who is responsible for the formation of a company is called the','promoter','sponsor','shareholder','director','','','a','','wassce','1997',76,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:53'),(203,'The amount of a company’s profit given to a shareholder is known as','premium','dividend','interest','allotment','','','b','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:54'),(204,'Which of the following best describes the path of a transaction?','Source documents to Journal to Ledger','Source documents to Ledger to Journal','Journal to Ledger to source documents','Journal to source documents to Ledger','','','a','','wassce','1997',97,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:55'),(205,'Where there are no proper books of account, the capital at the commencement of a period is ascertained by preparing','Total Debtors and Creditors Accounts','Bank Reconciliation Statement','Statement of Affairs','Trading, Profit and Loss Accounts','','','c','','wassce','1997',94,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:56'),(206,'Rent receivable is a','current asset','current liability','contingent liability','fictitious asset','','','b','','wassce','1997',94,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:58'),(207,'Which of the following is a factory overhead?','carriage on raw materials','Purchase of raw materials','Production wages','Depreciation of factory equipment.','','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-19 14:28:27'),(208,'The purchase consideration was','N  24,000','N 23,000','N  20,000','N 15,000','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','a','','wassce','1997',66,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:00'),(209,'The amount of goodwill was','N  4,000','N  3,000','N  2,000','N  1,000.','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','d','','wassce','1997',89,'Admin','2016-11-18 07:24:29','2020-07-25 20:35:38'),(210,'When a share is sold for less than its nominal value, the difference is called','discount','reserve','premium','loss','','','a','','wassce','1997',84,'Admin','2016-11-18 07:24:29','2020-07-25 20:35:38'),(211,'Which of the following serves the same purpose as a Trading Account?','Branch Adjustment Account','Goods sent to Branch Account','Branch Stock Account','Branch Debtors Account','','','c','','wassce','1997',91,'Admin','2016-11-18 07:24:29','2020-07-14 13:26:03'),(212,'Which of the following is not a revenue receipt?','Receipt from sales of goods','Rent from premises sublet','Interest on savings account','cash on sale of fixed asset','','','d','','wassce','1997',91,'Admin','2016-11-18 07:24:29','2020-07-25 17:52:56'),(213,'The art of collecting, recording, presenting and interpreting accounting data is','cost accounting','management accounting','financial accounting','data processing.','','','c','','wassce','2006',97,'Admin','2016-11-18 07:56:05','2020-07-26 06:44:15'),(214,'The depreciation method in which the number of years of the useful life of an asset is allocated in a reverse order is','straight line','reducing balance','sum of the years’ digits','revaluation.','','','c','','wassce','2006',105,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:05'),(215,'A system where a separate cash book is maintained for small payments is','single entry','imprest','float','reimbursement.','','','b','','wassce','2006',107,'Admin','2016-11-18 07:56:06','2020-07-26 06:44:15'),(216,'Public sector accounting is practiced in','public limited companies','government organizations','profit making organizations','public trading companies.','','','b','','wassce','2006',121,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:07'),(217,'A book that contains the accounts for the financial transactions of an organization is the','journal','ledger','folio','register','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:08'),(218,'A sales ledger contains','creditors’ accounts','nominal accounts','real accounts','debtors’ accounts.','','','d','','wassce','2006',121,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:09'),(219,'Books of account consists of','ledgers and subsidiary books','ledgers and principal books','folios and subsidiary books','ledgers and cash book.','','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:06','2020-07-19 14:28:27'),(220,'The amount set aside out of profits earned by a company which are not meant for liability or contingency are','dividends','provisions','retained profits','reserves','','','d','','wassce','2006',105,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:11'),(221,'The basis of accounting which eliminates debtors and creditors is','cash basis','accrual basis','fund basis','commitment basis.','','','a','','wassce','2006',103,'Admin','2016-11-18 07:56:06','2020-07-25 20:35:38'),(222,'Which of the following is not a revenue account?','Sales','Purchases','Discount received','Interest received','','','b','','wassce','2006',100,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:13'),(223,'If  no profit is to be retained, proposed preference shares dividend is','N  28,000','N  16,000','N  12,000.','N  4,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',87,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:14'),(224,'If  no profit is to be retained, proposed ordinary shares dividend is','N   48,000','N  44,000','N  40,000','N  28,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','c','','wassce','2006',95,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:15'),(225,'The dividend per ordinary share for the year is','N  0.88 kobo','N  0.40 kobo','N  0.20 kobo','N  0.17 kobo','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',97,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:16'),(226,'A customer who returns goods to the supplier because they are defective is issued a','debit note','credit note','delivery note','bank note.','','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:17'),(227,'Cross referencing among different books of accounts is achieved with the use of','columns','reference numbers','folio','margin.','','','c','','wassce','2006',101,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:18'),(228,'In company accounts, profit after tax is shared in the','appropriation account','revaluation account','current account','realization account.','','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-25 20:35:38'),(229,'Which of the following is not a source of revenue to a government?','Taxation','Sale of goods','Imposition of fines','Grants','','','b','','wassce','2006',102,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:20'),(230,'Whatever is fed into the computer is exactly what would be processed and produced as output. This is the concept of','sorting out','last in, first out','first in, first out','garbage in, garbage out.','','','d','','wassce','2006',101,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:20'),(231,'Bank reconciliation statement reconciles','bank and cash balances in the cash book','bank balance in the cash book and bank statement balance','cash balance in the cash book and bank statement balance','bank balance brought down and bank balance carried down in the cash bcok.','','','b','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:21'),(232,'The unit which keeps government’s books of accounts is the','Central Bank','Internal Audit Department','Treasury Department','Accountant General’s Department.','','','c','','wassce','2006',86,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:22'),(233,'Which of the following is not a debit item in a partnership \tappropriation account?','Interest on drawings','Partner’s salary','Interest on partner’s capital','Share of profit.','','','a','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:23'),(234,'Revenue is recognized in the profit and loss account as soon as a','debtor pays what is due from him','sale of goods takes place and money is received','sale of goods takes place whether or not money is received','sale of a fixed asset takes place.','','','c','','wassce','2006',93,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:24'),(235,'“A business unit is assumed to operate into foreseeable future and earn reasonable net income”. This statement is emphasized by the concept of','business entity','going concern','realization','accrual.','','','b','','wassce','2006',114,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:25'),(236,'Which of the following is not used in solving problems of incomplete records?','Control Accounts','Statement of affairs','Cash book','Balance sheet','','','d','','wassce','2006',110,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:26'),(237,'In a system of incomplete records, the opening capital is determined by preparing','statement of affairs','balance sheet','cash book','trial balance.','','','a','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:27'),(238,'Cost of raw materials consumed is','D113,000','D105,500','D98,000','D95,500.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','c','','wassce','2006',92,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:28'),(239,'Prime cost is','D120,500','D117,700','D114,900','D114,300.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','b','','wassce','2006',87,'Admin','2016-11-18 07:56:07','2020-07-19 14:28:27'),(240,'Cost of goods manufactured is','D138,000','D131,800','D130,500','D123,000.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','a','','wassce','2006',82,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:30'),(241,'A set of instructions fed into a computer for accomplishing a given task is a/an','input','programme','output','data.','','','b','','wassce','2006',107,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:31'),(242,'Control accounts are also known as','contra accounts','total accounts','ledger accounts','integral accounts.','','','b','','wassce','2006',103,'Admin','2016-11-18 07:56:07','2020-07-25 17:52:56'),(243,'Which of the following is charged to trading account?','Discounts allowed','Carriage outwards','Salaries','Carriage inwards.','','','d','','wassce','2006',105,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:33'),(244,'Which of the following is not a debit item in a creditor’s control \taccount?','Cash paid','Returns outwards','Purchases','Discounts received','','','c','','wassce','2006',97,'Admin','2016-11-18 07:56:07','2020-07-25 20:35:38'),(245,'Using the straight line method, the depreciation charged for year 2002 was','N 160,000','N  130.000','N  100,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:35'),(246,'Using the reducing balance method, the depreciation charged for year 2002 was','N 100,000','N  90,000','N  80,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:36'),(247,'Using the reducing balance method, the depreciation charged for year 2003 was','N  160,000','N  150,000','N   130,000','N  120,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','b','','wassce','2006',90,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:37'),(248,'Which of the following is not a revenue expenditure?','Payment: of salaries','Payment for advertisement','Purchases of motor vehicle','Purchases of goods.','','','c','','wassce','2006',87,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:38'),(249,'The amount allowed off the cost price of an article to stimulate patronage is','cash discount','trade discount','discount on debt','discount on bills.','','','b','','wassce','2006',101,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:39'),(250,'Which of the following is a Journal as well as an account?','Sales day book','Cash book','General journal','Purchases journal','','','c','','wassce','2006',93,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:40'),(251,'Which of the following columns of a three column cash book \tare memoranda?  I. Discount received  II. Discount allowed III. Cash IV. Bank','I and II only','I and III only','II and III only','ll and IV only.','','','d','','wassce','2006',113,'Admin','2016-11-18 07:56:08','2020-07-26 06:44:15'),(252,'The adjusted cash book balance is','D11,200','D8,400','D6,200','D5,600','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','d','','wassce','2006',99,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:49'),(253,'The balance as per bank statement is','D10,900','D8,400','D5,600','D2,800','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','b','','wassce','2006',96,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:50'),(254,'Where the head office maintains all books of account, goods sent to branch is credited to','Goods Sent to Branch Account','Branch Stock Account','Branch Stock Adjustment Account','Head Office Current Account','','','a','','wassce','2006',91,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:51'),(255,'Which of the following is not a purpose for preparing departmental accounts? To','compare the results of different departments','employ staff into different departments','reward departmental managers','obtain information for formulating policies.','','','b','','wassce','2006',89,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:52'),(256,'Rent expenses for the year 2005 is','N 11,400','N  11,300','N  11,200','N  10,200.','Rent accrued 1st January, 2005 [600], Rent paid in 2005 [11,300], Rent prepaid 31st December, 2005 [500]','','c','','wassce','2006',119,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:53'),(257,'Which of the following is not classified as an overhead?','Factory rates','Factory power','Factory building extension','Factory depreciation.','','','c','','wassce','2006',100,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:54'),(258,'The objective of accounting information is to enable users to','prepare the financial statements.','value stock','make decisions','prepare budgets','','','c','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-07-26 06:44:15'),(259,'Trade discounts are given for','bulk purchases','prompt payment','quick delivery','cash payment','','','a','','wassce','2012',96,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:56'),(260,'When closing stock is overstated, it would reduce','cost of sales and increase gross profit.','gross profit and increase cost of sales.','purchases and increase sales.','sales and increase purchases.','','','a','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:58'),(261,'Which of the following is not a source document?','Journal proper','Sales invoice','Debit note','Credit note','','','a','','wassce','2012',98,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:59'),(262,'A fixed asset fully written-down by a trader is now considered to be worth N5,000. The double entry required to effect       this is: debit','Asset Account; credit Purchases Account.','Asset Account; credit Capital Account.','Capital Account; credit Asset Account.','Capital Account; credit Profit and Loss Account.','','','b','','wassce','2012',92,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:00'),(263,'Which of the following is a book of original entry?','Ledger','Balance sheet','Bank statement','Sales journal','','','d','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-07-19 14:28:27'),(264,'A Balance Sheet shows only','fixed assets and current assets','assets and long term liabilities.','assets and liabilities','assets and capital','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-25 17:52:56'),(265,'The process of entering transaction from one book to another is','reading.','posting.','numbering','listing','','','b','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:02'),(266,'which of the following is a Trading Account item?','Discounts allowed','Discounts received','Carriage outwards','Carriage inwards','','','d','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:03'),(267,'The addition of prime cost and factory overheads is','total factory overheads.','market value of goods produced.','cost of goods produced','work-in-progress.','','','c','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-26 06:44:15'),(268,'Capital receipt is collected','on sales of motor vehicle.','on sales of stock in trade.','from trade debtor','from trading activities.','','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:05'),(269,'Which of the following is an example of factory overheads?','Salary of marketing officer','Salary of production officer','Salary of accounting officer','Wages of machine operator','','','d','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:06'),(270,'Osa started business with Le40,000 cash. The accounting entry is debit','Cash Account; credit Capital Account.','Capital Account; credit Cash Account.','Purchases Account; credit Cash Account.','Expenses Account; credit Capital Account.','','','a','','wassce','2012',99,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:07'),(271,'Branch Stock Account is used to determine the','net value of goods sent to branch.','gross profit of the branch.','branch credit sales.','branch net profit or loss.','','','b','','wassce','2012',96,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:08'),(272,'The name given to a budget in public service accounting is','vote.','subvention.','general order.','estimate.','','','d','','wassce','2012',96,'Admin','2016-12-13 21:23:13','2020-07-26 06:44:15'),(273,'Which of the following is not prepared by a partnership?','Trading Account','Profit and Loss Account','Income and Expenditure Account','Profit and Loss Appropriation Account','','','c','','wassce','2012',102,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:10'),(274,'A partner who only makes capital contribution but does not take part in the management of the partnership business is a/an','ordinary partner','limited partner','dormant partner','nominal partner','','','d','','wassce','2012',98,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:11'),(275,'Which of the following is component of prime cost?','Depreciation','Royalty','Factory rent','Factory electricity','','','d','','wassce','2012',106,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:12'),(276,'The concept which establishes the rule for the periodic recognition of revenue as soon as it is capable of objective measurement is','going concern.','entity.','consistency.','realization.','','','d','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:13'),(277,'Rent accrued in 2009 was D140. In 2010, D900 was paid while D160 was outstanding. Rent for 2010 was','D1,200.','D1.060.','D920.','D880.','','','c','','wassce','2012',83,'Admin','2016-12-13 21:23:13','2020-07-26 06:44:15'),(278,'Which of the following is not an input device?','Card reader','Paper top reader','Alpha-numeric keyboard','Line printer','','','d','','wassce','2012',75,'Admin','2016-12-13 21:23:14','2020-07-25 20:35:38'),(279,'The equivalent of Income and Expenditure Account in a trading concern is','Trading Account.','Profit and Loss Account.','Appropriation Account.','Balance Sheet.','','','b','','wassce','2012',106,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:36'),(280,'The term used to denote the capital of a not-for-profit making \torganization is','annuity fund.','nominal capital.','circulating capital.','cumulated fund','','','d','','wassce','2012',97,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:37'),(281,'The portion of authorized capital that has been allotted to subscribers is','called up capital','paid up capital.','issued capital','nominal capital.','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:38'),(282,'Partners whose liabilities are restricted to their financial contribution to the partnership in the event of winding up are','ordinary partners','limited partners','dormant partners','sleeping partners','','','b','','wassce','2012',84,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:39'),(283,'If creditors at 1/1/10 were Le 3,000; creditors at 31/12/10 Le 5,500 and payments to creditors Le 29,000. The purchases figure for 2010 is','Le 34,500','Le 32,000','Le 31,500','Le 26,500','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:40'),(284,'Which of the following is not found in the personal ledger?','Debtors Account','Creditors Account','Capital Account','Nominal Account','','','c','','wassce','2012',106,'Admin','2016-12-13 21:23:14','2020-07-25 17:52:56'),(285,'The Sales Ledger Control Account is also referred to as','Bought Ledger Control Account.','Purchases Account.','Total Debtors Account.','Total Creditors Account.','','','c','','wassce','2012',96,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:42'),(286,'Capital expenditure for the year was','Le 545,000','Le 490,000','Le 450,000','Le 300,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','b','','wassce','2012',99,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:43'),(287,'The amount of recurrent expenditure was','Le 245,000.','Le 175,000','Le 135,00.','Le 80,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','c','','wassce','2012',95,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:44'),(288,'An increase in the provision for doubtful debts results in a/an','increase in the gross profit.','decrease in the gross profit.','decrease in the net profit.','increase in the net profit.','','','c','','wassce','2012',84,'Admin','2016-12-13 21:23:14','2020-07-19 14:28:27'),(289,'Which of the following errors affects the agreement of a Trial Balance?','Wrong addition in the sales account','Crediting a purchase to A. Tambi’s account instead of F. Tambi’s account','Failure to enter sales in the books','Posting the purchase of a van to the debit side of the purchases account','','','a','','wassce','2012',92,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:53'),(290,'The excess of the value of assets over the purchase \tconsideration on acquisition of a business is credited to','share capital account.','goodwill account.','capital reserve account','general reserve account.','','','c','','wassce','2012',98,'Admin','2016-12-13 21:23:14','2020-07-26 06:44:15'),(291,'Shares of N3 nominal value were issued at a price of  N4. The difference of N1 is a','commission.','discount.','premium.','bonus.','','','c','','wassce','2012',102,'Admin','2016-12-13 21:23:14','2020-07-14 13:27:59'),(292,'Which of the following is not the purpose of control account?','Check on errors of addition','Locate errors','Locate missing figures','Monitor the cash book','','','d','','wassce','2012',102,'Admin','2016-12-13 21:23:14','2020-07-19 14:28:27'),(293,'Which of the following is not part of the Central Processing Unit of a computer?','Arithmetical and Logical unit','Memory unit','Input unit','Control unit','','','c','','wassce','2012',111,'Admin','2016-12-13 21:23:14','2020-07-25 17:52:56'),(294,'The double entry to record the proceeds on disposal of assets is debit','Bank Account; credit Asset Disposal Account.','Asset Disposal Account; credit Bank Account.','Provision for Depreciation Account; credit Asset Disposal Account','Asset Disposal Account; credit Provision for Depreciation Account.','','','a','','wassce','2012',87,'Admin','2016-12-13 21:23:14','2020-07-14 13:28:10'),(295,'An underwriter for a company’s share is paid','Interest.','commission.','dividend.','salary.','','','b','','wassce','2012',101,'Admin','2016-12-13 21:23:15','2020-07-25 17:52:56'),(296,'Which of the following is found in a Memorandum of \tAssociation?','Names of directors','Appointment of directors','Object of the business','Payment of dividend','','','c','','wassce','2012',98,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:12'),(297,'Administrative, selling and distribution expenses in a \tmanufacturing firm are recorded in','Trading Account.','Manufacturing Account.','Profit and Loss Account.','Balance Sheet.','','','c','','wassce','2012',118,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:25'),(298,'Which of the following is not a revenue to a local government?','Fines','Licenses','Personal income tax','Tenement rates','','','c','','wassce','2012',92,'Admin','2016-12-13 21:23:15','2020-07-25 17:52:56'),(299,'The capital is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','a','','wassce','2012',95,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:27'),(300,'The liability is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','d','','wassce','2012',115,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:28'),(301,'Which of the following is not an item in the profit and loss account?','Drawings','Interest','Balances','Bad debts','','','a','','wassce','2012',95,'Admin','2016-12-13 21:23:15','2020-07-14 13:28:29'),(302,'A loss made on the disposal of a fixed asset is debited to','Sales Account.','Purchases Account.','Profit and Loss Account.','Capital Account.','','','c','','wassce','2012',100,'Admin','2016-12-13 21:23:15','2020-07-26 06:44:15'),(303,'Which of the following describes a trial balance?','It is a special account','It is a list of balances in the books','It reveals the financial position of a business','It shows all the entries in the books of a business','','','b','','wassce','2015',75,'Admin','2016-12-14 06:09:04','2020-07-14 13:28:31'),(304,'Which of the following is not a feature of accounting information?','Affordability','Timeliness','Accuracy','Completeness','','','a','','wassce','2015',87,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:32'),(305,'Which of the following is the equation for determining net profit or loss from the records of a firm?','Closing Capital - Drawings - Capital Introduced','Opening Capital + Drawings - Closing Capital','Closing Capital + Opening Capital - Drawings','Closing Capital + Drawings - Opening Capital','','','d','','wassce','2015',98,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:33'),(306,'Purchase invoice is first entered in the','purchases account','cash book','sales journal','purchase journal','','','d','','wassce','2015',91,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:34'),(307,'Assets acquired is recorded by debiting','Asset Account, crediting Cash Account','Cash Account, crediting Asset Account','Purchase of Business Account, crediting Sale of Business Account','Asset Account, crediting Purchase of business Account','','','a','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:35'),(308,'Goods returned to a supplier is','debited to Returns outwards account','credited to Returns outwards account','debited to Returns inwards account','credited to Returns inwards account','','','b','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:36'),(309,'Which of the following is a real account?','Plant account','Salaries account','Creditors account','Trading account','','','a','','wassce','2015',89,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:37'),(310,'The accounting ledger for goods sold on credit are debit','Debtors Account, credit Sales Account','Creditors Account, credit Sales Account','Sales Account, credit Debtors Account','Sales Account, credit Creditors Account','','','a','','wassce','2015',83,'Admin','2016-12-14 06:09:05','2020-07-25 17:52:56'),(311,'Which of the following is not a book of original entry?','Sales journal','Purchases account','Cash account','Return inwards journal','','','c','','wassce','2015',91,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:39'),(312,'What is the ledger entry for the sale of plant and machinery on credit to Wilson?','Credit Sales Account and debit Cash Account','Credit Plant and Machinery Account and debit Wilson’s Account','Credit Sales Account and debit Wilson’s Account','Credit Plant and Machinery Account and debit Cash Account','','','b','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:40'),(313,'Discount Received Account is a','real account','personal account','nominal account','profit and loss account','','','c','','wassce','2015',80,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:41'),(314,'Which of the following accounts has a credit balance?','Capital','Cash','Drawings','Premises','','','a','','wassce','2015',76,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:42'),(315,'The accounting entry to correct sales day book overcast is','debit Sales Account and credit Debtors Account','debit Suspense Account and credit Sales Account','debit Debtors Account and credit Suspense Account','debit Sales Account and credit Suspense Account','','','d','','wassce','2015',95,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:43'),(316,'Which of the following expresses the accounting equating?','Capital + Assets = Liabilities','Assets - Liabilities = Capital','Liabilities + Current Assets = Fixed Assets','Liabilities - Capital = Current Assets','','','b','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:44'),(317,'When the invoice of a customer is overcast, the supplier will send to him a','cheque','payment voucher','debit note','credit note','','','d','','wassce','2015',74,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:45'),(318,'Unpresented cheques are cheque','that have been recorded in the cash book, but not by the bank','that have been received by the bank, but recorded in the cash book','returned by the bank','written, but not handed over to customers','','','a','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:46'),(319,'The cost of putting goods into a saleable condition is charged to','balance sheet','trial balance','profit and loss account','trading account','','','d','','wassce','2015',97,'Admin','2016-12-14 06:09:05','2020-07-25 17:52:56'),(320,'Which of the following is not a method of depreciating fixed assets?','Revaluation','Straight line','Diminishing balance','Obsolescence','','','d','','wassce','2015',65,'Admin','2016-12-14 06:09:05','2020-07-14 13:28:59'),(321,'In preparing a profit and loss account, a decrease in provision for doubtful debts accounts is treated as','Currentability','expenses','Income','Current asset','','','c','','wassce','2015',93,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:00'),(322,'Which of the following items is found in the sales ledger control account?','Discount received','Total credit purchases','Discount allowed','Returns outwards','','','a','','wassce','2015',80,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:01'),(323,'The process of using sales ledger balance to cancel off purchases ledger balance is','balancing','set off','reconciliation','cancelling','','','b','','wassce','2015',98,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:02'),(324,'The total of the returns outwards journal is posted to the','credit side of the returns outwards book','debit side of the returns outwards account','debit side of the purchases returns book','credit side of the returns outwards account','','','d','','wassce','2015',105,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:03'),(325,'Which of the following is not revealed by a firm’s accounting records?','Profit of a period','Quality of labour force','Credit worthiness','Value of assets','','','b','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-07-26 06:44:15'),(326,'In the balance sheet of a social club, subscription owing is treated as a','current liability','current asset','tangible asset','long-term liability','','','b','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:05'),(327,'The accounting concept that allows the cost of kitchen cutlery to be expensed, though it will be used for more than one year is','materiality','accrual','going concern','business entity','','','a','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-07-26 06:44:15'),(328,'The accounting concept that assumes that a business will continue operating for an indefinite period is','business entity','going concern','consistency','duality','','','b','','wassce','2015',75,'Admin','2016-12-14 06:09:06','2020-07-25 20:35:38'),(329,'The accounting concept that states that a firm’s financial affairs must be separated from that of the owner’s private transactions is','business entity','going concern','consistency','duality','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:06','2020-07-19 14:28:27'),(330,'Goodwill is recognized in partnership accounts when','the business makes a huge profit','the business has good customer relationship','a partner is dormant','a new partner is admitted','','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:10'),(331,'In which of the following accounts is interest on partners capital found?','Profit and loss','Trading','Income surplus','Profit and loss appropriation.','','','d','','wassce','2015',93,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:11'),(332,'Which of the following is not stated in the partnership agreement?','Profit sharing ratio','Interest on capital','Interest on fixed asset','Purpose of partnership','','','c','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:13'),(333,'How much was paid for goodwill?','GHc/ 350,000','GHc/ 260,000','GHc/  90,000','GHc/ 60,000','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:14'),(334,'The double entry to record the goodwill in the books is debit','Cash Account and credit Goodwill Account','Goodwill Account and credit Purchase of Business Account','Goodwill Account and credit Cash Account','Purchase of Business Account and credit Cash Account','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','b','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:15'),(335,'The document which sets out the internal arrangement for the proper management of a company is the','prospectus','article of association','memorandum of association','certificate of incorporation','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','c','','wassce','2015',85,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:16'),(336,'A person who has applied to purchase shares in a company is referred to as','a promoter','a subscriber','an allottee','an underwriter','','','b','','wassce','2015',94,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:19'),(337,'Which of the following expenses is allocated according to the floor \tarea?','Wages and Salaries','Rent and rates','Canteen expenses','Discount allowed','','','b','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:20'),(338,'Goods stolen at the branch is debited to','Defalcations Account','Branch Stock Account','Branch Adjustment Account','Branch Debtors Account','','','c','','wassce','2015',85,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:21'),(339,'Which of the following is a source of revenue for a local government?','Personal income tax','Company registration fees','Royalties','Market tolls','','','d','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:22'),(340,'The instrument used to release fund which the minister of finance had earlier withheld is','reserve expenditure warrant','supplementary general warrant','provisional general warrant','supplementary statutory warrant','','','b','','wassce','2015',95,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:23'),(341,'Which of the following relates to cash basis of accounting?','Accruals and prepayments are considered','Debtors and creditors are recorded','Fixed assets are written off in the year of purchase','Profits are maximized','','','d','','wassce','2015',83,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:24'),(342,'Which of the following is found on the credit side of a partnership’s appropriation of profit account?','Interest on capital','Interest on drawings','share of profit','Drawings','','','b','','wassce','2015',74,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:25'),(343,'Which of the following is a spreadsheet application?','Excel','Word','Internet','Windows','','','a','','wassce','2015',82,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:26'),(344,'The quality of output information depends on the','quality of input data','time of processing','speed of processing','quantity of output device','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:07','2020-07-14 13:29:27'),(345,'The source document used to make entries in the purchases day book is','debit note','credit note','invoice','receipt','','','a','','wassce','2014',84,'Admin','2016-12-14 06:44:38','2020-07-14 13:29:28'),(346,'book that contains individual accounts of suppliers is the','purchases ledger','general ledger','nominal ledger','sales ledger','','','a','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-07-25 20:35:38'),(347,'In the operation of an imprest system of petty cash, the','petty cashier pays all expenses','petty cashier pays money to the accountant','petty cashier regularly begins each period with the same amount of money','main cashier accounts to the petty cashier for some expenses made by him','','','c','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:30'),(348,'An example of a credit entry in a profit and loss account is','carriage inwards','carriage outwards','discounts allowed','discounts received','','','d','','wassce','2014',70,'Admin','2016-12-14 06:44:39','2020-07-19 14:28:27'),(349,'Which of the following subsidiary books involves cash movement?','Sales day book','Purchases day book','Returns inwards book','Petty cash book','','','d','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:32'),(350,'The accounting treatment for a dishonoured cheque is; debit','Customer’s Account; Credit Bank Account','Bank Account; Credit Customer’s Account','Customer’s Account; Credit Sales Account','Sales Account; Credit Customer’s Account\\\\','','','a','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:32'),(351,'Net turnover is referred to as','purchases','assets','sales','profits','','','c','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:33'),(352,'Which of the following transactions will result in disagreement between the cash book and the bank statement?','Selling of goods on credit to a customer','Withdrawal of goods by the proprietor for his personal use','Cheque paid directly into the bank account by a customer','Omission of purchases received from a supplier on credit','','','c','','wassce','2014',77,'Admin','2016-12-14 06:44:39','2020-07-19 14:28:27'),(353,'Purchases Account is overcast by N200, while Wages Account is under cast by N200. This is','an error of omission','a compensating error','an error of commission','an error of principle','','','b','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:35'),(354,'Which of the following is used to record the disposal of a fixed asset?','Journal  Proper','Petty  Cash  Book','Sales Day Book','Purchases Day Book','','','a','','wassce','2014',76,'Admin','2016-12-14 06:44:39','2020-07-26 06:44:15'),(355,'The annual depreciation is','N9,000','N8,500','N8,000','N6,500','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',95,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:38'),(356,'The accumulated depreciation as at 31/12/2013 is','N18,500','N17,000','N16,000','N8,000','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',98,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:39'),(357,'An error of principle is made, if','an entry has been made in the wrong class of account','a transaction has been completely omitted','an entry has been made on the wrong side of the two accounts concerned','a transaction is entered in both accounts for the wrong amount','','','a','','wassce','2014',98,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:40'),(358,'Which of the following is entered in the general journal?','Purchase of goods','Sale of goods on credit','Returns inwards','Acquisition of fixed assets','','','d','','wassce','2014',86,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:42'),(359,'The cost of carriage outward is classified as','a selling and distribution expense','an administrative expense','a trading expense','a finance expense','','','a','','wassce','2014',82,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:43'),(360,'The purchase of ten ceiling fans by Akpan Electronic Enterprises will be recorded as','an acquisition of fixed asset','an expense in its general office expense account','part of capital in the capital account','an acquisition of stock','','','d','','wassce','2014',104,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:44'),(361,'Which of the following accounts would appear in the nominal ledger?  (I)  Sanison’s account (a debtor)  ( II) Motor vehicle account (III) Sales account  (IV)  Rent and rates account','I, II and III only','I, III and IV only','II, III and IV only','Ill and IV only','','','b','','wassce','2014',88,'Admin','2016-12-14 06:44:39','2020-07-26 06:44:15'),(362,'The sum of direct cost in a manufacturing account is','production cost','prime cost','total cost','finance cost','','','b','','wassce','2014',80,'Admin','2016-12-14 06:44:39','2020-07-25 20:35:38'),(363,'Net profit in a business is','the amount of money taken out of the business by the owner','the cash in the business bank account','the difference between sales and cost of sales','sale revenue less cost of sales and expenses','','','d','','wassce','2014',95,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:47'),(364,'An example of a self-balancing account is the','suspense account','creditor’s account','control account','debtor’s accoun','','','c','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:48'),(365,'The gross profit is','GHc/  2,160,000','GHc/ 1440,000','GHc/ 1,080,000','GHc/ 720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-25 17:52:56'),(366,'The cost of sales is','GHc/  2,160,000t','GHc/ 1440,000','GHc/ 1,080,000','GHc/  720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',95,'Admin','2016-12-14 06:44:39','2020-07-25 20:35:38'),(367,'Which of the following is not an administrative expenses in a \tmanufacturing organization?','Discounts allowed','Office electricity','Stationery','Insurance','','','a','','wassce','2014',83,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:51'),(368,'When an asset is sold, the entries for the accumulated depreciation are: debit','Asset Disposal Account; credit Provision for Depreciation Account.','Provision for Depreciation Account; Credit Asset Disposal Account','Fixed Asset Account; Credit Asset Disposal Account','Asset Disposal Account; Credit Fixed Asset Account','','','b','','wassce','2014',79,'Admin','2016-12-14 06:44:39','2020-07-26 06:44:15'),(369,'A petty cash account has an imprest of D28,000. The account has a debit balance of D5.000. How much cash is needed to restore the imprest?','D33,000','D28,000','D23,000','D5,000','','','c','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:53'),(370,'In a not - for - profit making organization, when the total income \tis less than the total expenditure, the difference is a','surplus','shortfall','loss','deficit','','','d','','wassce','2014',94,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:54'),(371,'The accounting concept underlying the treatment of personal expenses of the business owner as drawing is','periodicity','accrual','entity','materiality','','','c','','wassce','2014',88,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:55'),(372,'Which of the following items is not contained in the Receipts and Payments Account?','Subscription paid in advance','tock paid for in advance','Outstanding wages and salaries','Donations','','','c','','wassce','2014',81,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:56'),(373,'The concept that states that a business should not lay claim to any profits before it is earned with reasonable certainty is','consistency concept','prudence concept','accrual concept','going concern concept','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:57'),(374,'When shares are issued above their nominal value, the \texcess above the nominal value is','credited to Profit and Loss Account','debited to Share Premium Account','credited to Share Capital Account','credited to share Premium Account','','','d','','wassce','2014',90,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:58'),(375,'Shares issued below nominal value are referred to as shares at','premium','discount','face value','cumulative value','','','b','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-07-14 13:29:59'),(376,'The accounting ratio used to measure the average number of days for which suppliers remain unpaid is','stock turnover','creditors’ payment period','debtors collection period','return on capital employed','','','b','','wassce','2014',92,'Admin','2016-12-14 06:44:40','2020-07-25 17:52:56'),(377,'When the purchase consideration exceeds the value of business, the difference is','profit','discount','goodwill','reserve','','','c','','wassce','2014',98,'Admin','2016-12-14 06:44:40','2020-07-25 20:35:38'),(378,'The primary classification of government expenditure is based on','Programs','funds','activity','project','','','b','','wassce','2014',91,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:02'),(379,'An example of input device of a computer is','an optical character reader','a graph plotter','a visual display unit','printer','','','a','','wassce','2014',73,'Admin','2016-12-14 06:44:40','2020-07-25 17:52:56'),(380,'The accounting concept which states that expenditure involving insignificant amounts should be regarded as expenses and not assets is','business entity','materiality','dual aspect','realization','','','b','','wassce','2014',109,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:04'),(381,'A company made a net profit of N2,000,000 for the year and its net profit percentage is 25%. What is the total sales   for the year?','N8,000,000','N6,000,000','N800,000','N500,000','','','a','','wassce','2014',96,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:05'),(382,'Which of the following information is recorded in the returns outwards book?','Goods purchased on credit and subsequently returned to supplier','Fixed asset bought on credit and subsequently returned to supplier','Cash payment received from a customer and subsequently returned to supplier','Goods sold to a customer and subsequently returned to the business.','','','a','','wassce','2014',97,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:06'),(383,'Calculate the stock figure to be included in the balance sheet at the year end.','D408,000','D346,000','D284,000','D62,000',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',78,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:07'),(384,'The concept applied in answering question 42 above is','matching','consistency','prudence','entity',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',76,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:13'),(385,'Subscriptions in advance is classified in the balance sheet as','an asset','a liability','a deficit','a surplus','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:15'),(386,'Which of the following items is not treated in the Profit and Loss Account?','Office expenses','Salaries and allowances','Carriage inwards','Discounts allowed','','','c','','wassce','2014',94,'Admin','2016-12-14 06:44:40','2020-07-26 06:44:15'),(387,'The document prepared by a local/district government to present its annual estimates for a planning period is','a balance sheet','budget','an income and expenditure account','a cash book','','','b','','wassce','2014',81,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:17'),(388,'A manufacturing account is drawn up by','firms providing personal services','firms engaged solely in buying and selling of goods','firms which make and sell articles','non - trading organization.','','','c','','wassce','2014',88,'Admin','2016-12-14 06:44:40','2020-07-19 14:28:27'),(389,'Which of the following is not a factory overhead cost?','Manufacturing wages','Factory rent','Depreciation of machinery','Salary of factory guard','','','a','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:19'),(390,'A collection of fields relating to one logically definable unit of business information is known as','data','character','byte','record','','','d','','wassce','2014',97,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:20'),(391,'The principle of double entry book - keeping states that','every debtor must have a creditor','every account debited must be immediately credited','for every debit entry, there must be a corresponding credit entry','for every double debit, there must be a double credit.','','','c','','wassce','2014',87,'Admin','2016-12-14 06:44:40','2020-07-14 13:30:21'),(392,'The accounting principle that is applied to check arbitrary actions on the part of accountants is','consistency','materiality','objectivity','realization','','','a','','utme','2004',116,'Admin','2016-12-15 06:52:04','2020-07-23 10:49:57'),(393,'The loss of equipment in a fire disaster results in','a decrease in current assets','an increase in liabilities and assets','a decrease in assets and capital','an increase in liabilities and a decrease in  assets.','','','c','','utme','2004',107,'Admin','2016-12-15 06:52:06','2020-07-23 10:49:57'),(394,'A source document is used for verifying the','amount due to creditors','actual cost of an asset','selling price of goods','amount due from debtors','','','c','','utme','2004',120,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:58'),(395,'The rule of accounting equation requires that account payable should be placed under','liabilities','equities','assets','capital','','','a','','utme','2004',107,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:25'),(396,'A debit in the suspense account will appear in the balance sheet as','a current asset','a current liability','capital','drawings','','','a','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:26'),(397,'The recipient whose name appears on a cheque is called a','payee','drawer','drawee','payee','','','d','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:58'),(398,'The imprest account is subsidiary to the','ledger account','bank account','cash book','petty cash','','','d','','utme','2004',113,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:28'),(399,'The three-column cash book differs from the two-column cash book in','cash column','discount column','bank column','folio column','','','b','','utme','2004',117,'Admin','2016-12-15 06:52:07','2020-07-22 21:43:51'),(400,'Zakari started a business on January 2000. He bought a shop costing N 54,000 and stock worth N 7,600.  Profit for the year amounted to N 22,100. His closing capital was N 73,800. Zakari’s personal drawings amounted to','N 2,300','N9,900','N 17,100','N 19,500','','','b','','utme','2004',129,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:58'),(401,'The balance on the provision for depreciation account is','added to fixed assets on the balance sheet','deducted from fixed assets on the balance sheet','deducted from the profit and loss account','added to the current liabilities of the account','','','b','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:59'),(402,'Given: Rates paid during the year amounted to N 2,250 at N125 per month and N 1,035 was paid for electricity in the same period at N 115 per month. Determine the amount of prepaid rates','N 345','N 750','N 1,380','N 1,500','','','b','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-07-25 20:35:38'),(403,'Where closing stock is undervalued, the effect is','an increase in gross profit','a decrease in gross profit','an increase in purchases','a decrease in purchases','','','b','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-07-25 17:52:56'),(404,'At the year end, the purchases ledger showed a debit balance of N 108. The total on the debit side of the purchases ledger control account will be','N 22,966','N 22,156','N 21,834','N 21,054','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','a','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:34'),(405,'The balancing figure in the purchases ledger control account is','N 15,828','N 15,720','N 14,940','N 14,694','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','d','','utme','2004',125,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:58'),(406,'In a sales ledger, contra entry is found on the','debit side of the debtors’ control account','debit side of the creditors’ control account','credit side of the debtors’ control account','credit side of the creditors’ control account','','','c','','utme','2004',104,'Admin','2016-12-15 06:52:07','2020-07-22 21:43:51'),(407,'The beginning and ending accounts receivable balances were N 20,000 and N 30,000 respectively.The collection from customers during the period was N 70.000. What was the total sale on account?','N 20,000','N 60,000','N 80,000','N 120,000','','','b','','utme','2004',119,'Admin','2016-12-15 06:52:07','2020-07-23 10:37:19'),(408,'Determine how much to be charged to profit and loss account.','N 606','N 786','N 791','N 856','Given: General expenses account Paid by cheque [ N671 ]; Paid by cash [N 70 ]; Accrued b/f [N 65 ] Accrued c/f [N 115 ]','','c','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:37'),(409,'In converting single entry to final account, the balancing figures on the income and expenses accounts are transferred to the','revenue and expenditure account','receipts and payments account','profit and loss appropriation account','profit and loss account','','','d','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:59'),(410,'Determine the amount for the beginning inventory','N 20,140','N10,240','N 8,140','N 7,240','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',112,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:57'),(411,'What is the figure for purchases?','N 2,400','N 2,500','N 4,200','N 5,200','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',120,'Admin','2016-12-15 06:52:07','2020-07-26 06:44:15'),(412,'Cost classification in relation to charges is determined by the level of','raw materials','labour','activity','profitability','','','c','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-22 21:30:18'),(413,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N 5,000','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','c','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-07-22 21:30:19'),(414,'The market value of goods produced is','N 30,500','N 30,600','N 31,600','N 31,620','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','b','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:43'),(415,'The accumulated fund is','N 9,400','N 9,300','N 9,200','N 9,100','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:44'),(416,'In the balance sheet, the subscription in arrears will be','N 200','N 300','N 1,200','N 1,300','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',121,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:45'),(417,'Where the debit side of the income and expenditure account is higher than the credit side, the difference is','deficit','surplus','gain','loss','','','a','','utme','2004',105,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:57'),(418,'In the balance sheet of a not-for-profit-making organization, subscription paid in advance is regarded as a','current asset','current liability','capital','reserve','','','b','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-07-26 06:44:15'),(419,'A rapidly growing business organization with multiple units that is interested in comparing the performances and weaknesses of each unit should adopt.','manufacturing accounts','consolidated accounts','departmental accounts','joint venture accounts','','','c','','utme','2004',130,'Admin','2016-12-15 06:52:07','2020-07-23 10:37:19'),(420,'How are credit sales by a department treated?','the same way as normal debtors’ transactions','in a different way from normal debtors’ transactions','as an addition to the sales manager’s account','as an addition to the production manager’s account','','','a','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-07-22 21:43:51'),(421,'Discounts granted to branch customers are treated as a debit to branch','stock account and a credit to branch debtors’ account','discount account and a credit to branch bank account','stock account and a credit to branch bank account','discount account and a credit to branch debtors’ account','','','a','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-07-26 06:44:15'),(422,'Transfers from the head office to branches are best carried out at','cost price','selling price','cost plus mark-up','market price','','','c','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-07-25 17:52:56'),(423,'On dissolution, the final distribution of cash to partners is based on','partnership agreement','Articles of Association','goodwill','capital balances.','','','d','','utme','2004',118,'Admin','2016-12-15 06:52:08','2020-07-22 21:43:51'),(424,'The balance of profit and loss account will be','N 4,000','N 2,800','N 1,500','N 300','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','a','','utme','2004',123,'Admin','2016-12-15 06:52:08','2020-07-25 20:35:38'),(425,'What is Kunle’s share of the profit?','N 600','N 300','N180','N 120','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','d','','utme','2004',114,'Admin','2016-12-15 06:52:08','2020-07-23 10:37:20'),(426,'When a new partner is admitted to a partnership, there is a need to revalue the','capital of the business','capital and liabilities of the business','assets and capital of the business','assets and liabilities of the business','','','d','','utme','2004',135,'Admin','2016-12-15 06:52:08','2020-07-23 10:49:58'),(427,'The accounting entry to record the premium on goodwill is to debit','cash and credit old partners’ capital','goodwill and credit revaluation','assets and credit capital','capital and credit assets','','','b','','utme','2004',133,'Admin','2016-12-15 06:52:08','2020-07-22 21:30:17'),(428,'The expenses incurred in promoting a company are','promoters’ expenses','floating expenses','preliminary expenses','the Board’s expenses','','','c','','utme','2004',135,'Admin','2016-12-15 06:52:08','2020-07-23 10:37:20'),(429,'Debentures can be redeemed out of','existing share capital reserve','existing general reserve','proceeds from new issue of shares','withholding tax.','','','a','','utme','2004',121,'Admin','2016-12-15 06:52:08','2020-07-22 21:43:50'),(430,'Share premium is an example of','revenue reserves','capital reserves','general reserves','loan capital','','','b','','utme','2004',129,'Admin','2016-12-15 06:52:08','2020-07-22 21:43:52'),(431,'According to the provisions of the 1999 Constitution, all revenues generated by the Federal Government must be paid into the?','Consolidated Revenue Fund','Federation Account','Revenue Mobilization Allocation and Fiscal Commission’s Account','Equalization Fund','','','a','','utme','2004',136,'Admin','2016-12-15 06:52:08','2020-07-14 13:31:12'),(432,'The budget statement presented to the legislature by the Chief Executive is called','an appropriation act','a budget bill','an appropriation bill','a budget proposal','','','c','','utme','2004',115,'Admin','2016-12-15 06:52:08','2020-07-23 10:37:19'),(433,'The statement of assets and liabilities in the public sector can be described as the','income and expenditure account of government','appropriation account of government','balance sheet of government','funds flow statement of government','','','d','','utme','2004',120,'Admin','2016-12-15 06:52:08','2020-07-22 21:43:51'),(434,'A company has departments X, Y and Z. Department X occupies a space twice that of Y while Z   occupies half the space of  Y. If the company pays N 70 000 on rent, what is the amount of rent that should be allocated to Y?','N 30,000','N 40,000','N 20,000','N 10, 000.','','','c','','utme','2007',115,'Admin','2016-12-16 07:02:01','2020-07-26 03:37:06'),(435,'Calculate the total figure for the receipts and payments account.','N 11,410','N  13,630','N  9, 310','N  11, 530.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','d','','utme','2007',123,'Admin','2016-12-16 07:02:01','2020-07-26 03:37:06'),(436,'Determine the opening cash balance of the club','N 3070','N 2220','N 5710','N 4320.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','b','','utme','2007',118,'Admin','2016-12-16 07:02:01','2020-07-26 03:37:06'),(437,'Purchases of raw materials amount to N  81 000, direct labour is N  38 000 and factory overhead N  29 000. Calculate the prime cost.','N 176,000','N 170,000','N 167,000','N  156,000.','Stock at start: Raw materials [N57, 000]; Work-in-progress [42, 000]; Finished goods [71, 000 ]','','a','','utme','2007',131,'Admin','2016-12-16 07:02:01','2020-07-26 03:37:06'),(438,'I.Profits and losses will be shared unequally II.  Interest is not allowed on capital, III. Salaries are not allowed. IV. Interest is charged on drawings. Which of  the following would apply where there is no agreement during partnership formation?','I only','I, II and III','I, II and IV','II and III.','','','c','','utme','2007',126,'Admin','2016-12-16 07:02:01','2020-07-26 03:37:06'),(439,'The value of goods sent to branch is','N 4 000','N 6000','N 8000','N 2000','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','c','','utme','2007',127,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(440,'Determine the closing stock.','N 5 500','N  6500','N 2500','N 4500','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','a','','utme','2007',117,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(441,'Expenses paid during the conversion of a partnership to a \tcompany are','debited to the partners’ capital account','debited to the realization account','debited to the cash account.','credited to the realization account','','','d','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(442,'In the trading and profit and loss account of a manufacturing organization, purchases is','always the same amount as the total factory overhead cost','given separately','equivalent to the total cost of goods manufactured','always the same as the prime cost.','','','b','','utme','2007',134,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(443,'Goods worth N 50 000 were sent at different times from head office to the branch during the year. By the end of the period, only N  40 000 worth of goods had arrived at the branch. Which of the following is correct about the treatment of this transaction?','Branch should debit goods received from head office with N 50 000.','Head office should debit goods sent to branch account with N 10 000.','Head office should debit goods sent to branch account with N 50 000.','Branch should debit goods received from head office with N  10000.','','','b','','utme','2007',116,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(444,'An accounting ratio that considers only quick assets to determine the short-term safety margin of a firm is the','fixed assets ratio','capital gearing ratio','current assets ratio','acid test ratio.','','','d','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(445,'What would be the total amount received on second call?','N 240, 000','N 280 ,000','N 40,000','N 56,000.','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','c','','utme','2007',121,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(446,'The total amount of money received on application was','N  5600,00','N  220,000','N  800, 000','N  1 000 000','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','a','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(447,'Determine the working capital.','N 7,38,0000','N 8,48,0000','N  5 480 000','N  6 480 000.','Shaku Company Ltd: Stock [N 3,600, 000]; Cash at hand [N800, 000]; Cash in bank [2,400, 000]; Debtors [ 580, 000]; Trade creditors [N 920, 000 ]; \tBank overdraft [ N200, 000 ]; Tax liabilities [N600, 000]; Salary owed to staff {N 180, 000]','','c','','utme','2007',117,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(448,'The receipts and payments account of a not-for-profit-making organization plays a similar role in a profit-making organization as','a cash account','a balance sheet','an income account','an expenses account','','','b','','utme','2007',129,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(449,'Osei and Yabo were in partnership sharing profits and losses in the ratio of 3:2. On admitting Takwa, the profit and loss sharing ratio was changed to 1:1:1  Suppose Takwa paid N  30 000 for goodwill this amount would be','credited to Takwa’s current account','debited to goodwill account','shared to all the partners’ capital account','credited to the old partners’ capital account.','','','b','','utme','2007',133,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(450,'The amount of subscriptions accrued is reported in the balance sheet under','fixed asset','long-term liability','current asset','current liability.','','','d','','utme','2007',127,'Admin','2016-12-16 07:02:02','2020-07-26 06:44:15'),(451,'The lighting charge to be apportioned to Zema is','N 891','N 819','N 927','N 975','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','b','','utme','2007',125,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(452,'Find the salary charged to Zera product.','N 1 854','N 1 845','N 1 062','N 1 134.','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','c','','utme','2007',135,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(453,'The gross profit disclosed in the branch stock adjustment account represents','head office profit','unrealized profit','estimated profit','branch profit','','','d','','utme','2007',134,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(454,'Partners’ share of profit is credited to','a partner’s current account','a partner’s capital account','the profit and loss account','the profit and loss appropriation account','','','a','','utme','2007',125,'Admin','2016-12-16 07:02:02','2020-07-14 13:31:53'),(455,'A pension granted to any past president or vice-president shall be charged to the','consolidated revenue fund','special pension fund','contingency fund','development fund.','','','b','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(456,'The federal government approved  N 140 m to local governments W, X, Y and Z. The amount is to be shared on the basis of 40% equality. 35% population and 25% internal revenue generation. Calculate the share of local government W on equality.','N 35 m','N 14 m .','N 56 m','N 28 m.','','','c','','utme','2007',127,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(457,'Stock valuation is useful because it informs the sales department on the','prices of the competing goods','prices that will affect profitability','number of goods to produce','number of goods to sell.','','','b','','utme','2007',111,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(458,'Using the straight-line method, the depreciation of the asset in \tthe first year was','N  210 m','N 343m','N 105m','N 270m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','c','','utme','2007',113,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(459,'What was the asset value at the beginning of the third year?','N 63 m','N 133 m','N 36m','N 28 m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','d','','utme','2007',134,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(460,'The drawings for the period stand at','N  2 750','N  3 750','N  2 500','N 2 570.','Given: Opening capital [N7, 000 ]; Additional capital [N3, 500 ]; Net profit [N2 500 ]; Closing capital [N10, 250]','','a','','utme','2007',119,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(461,'I.    Facilitating the preparation of final accounts II.   Making the existence of error easy to detect III. Checking the accuracy of postings periodically. From the above, which of the following are among the uses of control accounts?','I, II and III','I and III','II and III','I and II.','','','c','','utme','2007',139,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(462,'Determine the amount provided for discount allowed on debtors.','N 1 000','N 3000','N 900','N1500.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',132,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(463,'The provision for bad debt is','N2 000','N 800','N3 000','N1 900.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',133,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(464,'The amount to be charged to the profit and loss account is','N 30,000','N25,000','N 5 ,000','N20,000.','Given: Prepaid b/f [N10, 000 ]; Cash paid during the year  [N20, 000]; Prepaid c/f [N5, 000] ','','b','','utme','2007',129,'Admin','2016-12-16 07:02:02','2020-07-26 06:44:15'),(465,'The purchases ledger control account showed a credit balance of N 525 000 on April 30, 2006. This amount shows','what the debtors of a business enterprise owed the business','the total amount which each debtor owed the business','what a business enterprise owed its creditors','the total amount which a business enterprise owed each creditor.','','','c','','utme','2007',123,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(466,'Find the value of the total assets?','N 17 700','N 10,500','N 20,000','N 15,400.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','d','','utme','2007',134,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(467,'What will be the equity of the business?','N 12,800','N 4,900','N 8,200','N 9,500.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','c','','utme','2007',118,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(468,'Journal proper is used in recording','transactions that are not regular','returns from customers','credit sales','the receipt and payment of  money','','','a','','utme','2007',133,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(469,'The process whereby a cheque received by one person is given to another for payment is known as','cheque crossing','payment in cheque','cheque transfer','cheque endorsement.','','','c','','utme','2007',126,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(470,'Calculate the balance in the bank statement','N 10 740','N11 860','N 17 500','N16,380.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','c','','utme','2007',120,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(471,'What is the adjusted cash book balance?','N 14,680','N 15,560','N 16,440','N17,000.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','a','','utme','2007',124,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(472,'The fourth stage of the accounting information system is','recording','interpreting','summarizing','classifying.','','','c','','utme','2007',122,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(473,'How much is sundry expenses?','N 2 700','N 2,250','N1,550','N2000.','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','a','','utme','2007',111,'Admin','2016-12-16 07:02:03','2020-07-14 13:32:20'),(474,'The total of the trial balance is','N 6 600','N 6 650','N 5 600','N 5 900','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','b','','utme','2007',119,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(475,'If Mr. Ajasin paid his creditors N 5 000 out of N 20 000 owed, what would be the effect of this transaction on the accounting equation?','A decrease .in the total liabilities and assets by N5 000.','An increase in total liabilities and owners’ equity by N15 000.','An increase in the total assets by N15 000','A decrease in owners’ equity by N 5 000.','','','a','','utme','2007',134,'Admin','2016-12-16 07:02:03','2020-07-26 03:37:06'),(476,'Which of the following branches of accounting was first developed?','Cost accounting','Financial accounting','Management accounting','Petroleum accounting','','','b','','utme','2009',114,'Admin','2016-12-16 21:08:06','2020-07-23 10:37:20'),(477,'The accounting convention which states that the performance of a business should be determined by matching all expenses against all revenues is','accruals','materiality','objectivity','periodicity','','','a','','utme','2009',119,'Admin','2016-12-16 21:08:07','2020-07-26 06:44:15'),(478,'The process of bookkeeping includes records produced from','ledgers','source documents','minutes of meeting','intuitive reasoning','','','b','','utme','2009',124,'Admin','2016-12-16 21:08:07','2020-07-23 10:49:59'),(479,'Musa, a prepaid customer of XYZ and KLM, bought  N1500 recharge card from XYZ and  N2000 recharge card from KLM for business calls. The entry to record these transaction is debit','telephone  N 3,500, credit XYZ and KLM  N 3,500','telephone N 3,500. credit cash  N 3,500','sundries N 3,500, credit KLM  N 3,500','sundries  N 3.500, credit telephone  N3,500','','','a','','utme','2009',125,'Admin','2016-12-16 21:08:07','2020-07-26 06:44:15'),(480,'What is the total debit for the trial balance?','N  4 690 000','N 2 620 000','N  2 520 000','N 1 565 000','Given: Capital [N 2, 375, 000 ]; Debtors [N 495, 000 ]; Motor vehicles [N 870, 000 ]; Creditors [N 245,000 ]; Prepayments [N 500, 000 ]; Bills receivable [N 505, 000 ]; Furniture [N 150, 000 ]','','c','','utme','2009',113,'Admin','2016-12-16 21:08:07','2020-07-23 10:49:58'),(481,'If Odukoya takes money out of the business bank account for his own private use, the effect of the transaction is','increase in assets and increase in capital','increase in assets and decrease in capital','decrease in capital and increase in assets','decrease in capital and decrease in assets.','','','d','','utme','2009',117,'Admin','2016-12-16 21:08:07','2020-07-22 21:43:51'),(482,'What are the current liabilities?','I and II','IV and V','Ill and V','II and IV','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','b','','utme','2009',108,'Admin','2016-12-16 21:08:07','2020-07-23 10:49:58'),(483,'Find the fixed assets','I, II and V','I, II and IV','I, II and III','Ill, IV and V','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','c','','utme','2009',131,'Admin','2016-12-16 21:08:08','2020-07-23 10:49:58'),(484,'Cash discount is often recorded on','the debit side of the cash book','the credit side of the cash book','the folio column of the cash book','both credit and debit side of the cash book','','','d','','utme','2009',102,'Admin','2016-12-16 21:08:08','2020-07-23 10:49:58'),(485,'The standing order is a payment instruction given by a','customer to the bank','bank to the customers','bank to an employee','customer to a fellow customer','','','a','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:55'),(486,'Which of the following should not be added or subtracted from the bank statement balance to determine the adjusted cash balance?','Error by the bank','Under casting of the cash book','Overcasting of the cash book','Bank service charges','','','a','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-07-14 13:32:56'),(487,'Calculate the balance as per bank statement at the end of the year','24,700','25,200','26,200','27,700','Given: Balance as per cash book [N20,000 ]; Unpresented cheques [N 5,200 ]; Direct credit to the bank [\t  N 1,000 ]; \tDirect debit from the bank [N 1,000 ]; Credit in the cash book [N 500 ]','','a','','utme','2009',127,'Admin','2016-12-16 21:08:08','2020-07-22 21:30:18'),(488,'Determine the capital of the business','N 9,400','N 6,000','N 3,400','N 3,000','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','d','','utme','2009',129,'Admin','2016-12-16 21:08:08','2020-07-22 21:30:19'),(489,'What is the net working capital?','N 2,600','N1,800','N 800','N 600','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','c','','utme','2009',132,'Admin','2016-12-16 21:08:08','2020-07-22 21:43:51'),(490,'Which of the following items are current assets?','Stock, bills receivable, cash and debtors','Stock, bills payable, cash and debtors','Stock, bad debt, bills receivable and cash','Stock, work-in-progress, cash and bills payable.','','','a','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-07-23 10:37:20'),(491,'Using FIFO method, what is the value of the closing stock?','N 34,000','N 29,000','N 17,000','N 12,000','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','c','','utme','2009',111,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:00'),(492,'What is the value of closing stock using simple average?','N 11,500','N 17,000','N 17,500','N 28,500','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','d','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:01'),(493,'Which of the following methods gives a conservative closing stock value during a period of rising prices?','LIFO','FIFO','Simple average','Periodic simple average','','','a','','utme','2009',105,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:02'),(494,'Apart from the common control accounts, a control account can also be opened for','sales account','purchases account','cash account','wages account','','','c','','utme','2009',109,'Admin','2016-12-16 21:08:08','2020-07-22 21:30:18'),(495,'Which of the following is a debit item in the purchases ledger control account?','Balance b/d','Cheque dishonoured','Purchases','Balance c/d','','','d','','utme','2009',119,'Admin','2016-12-16 21:08:08','2020-07-22 21:43:52'),(496,'Which of the following is an item in the debit side of the sales ledger control account?','Interest charged by suppliers','Bills receivable honoured','Transfer of credit balances from credit control account','Transfer of debit balances from creditors control account','','','a','','utme','2009',109,'Admin','2016-12-16 21:08:08','2020-07-25 20:35:38'),(497,'The costs incurred by departments that support the production department with such activities as maintenance, production control and storage are called','autonomous costs','service costs','supporting costs','subsidiary costs','','','b','','utme','2009',108,'Admin','2016-12-16 21:08:08','2020-07-25 20:35:38'),(498,'Determine the gross profit','N 49,000','N 48,000','N 31,000','N30,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',128,'Admin','2016-12-16 21:08:08','2020-07-23 10:49:59'),(499,'What is the net profit?','N  46,000','N 45,000','N  28,000','N  27,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:19'),(500,'Receipts and payments account is a summary of the','budget','trading account','cash book','profit and loss account','','','c','','utme','2009',124,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:20'),(501,'What is the accumulated fund?','23,700','27,750','29,650','51,650','Given: Furniture and fittings [N 20,000]  Equipment [N15,000] Bank overdrafts [ N6,500] Bar creditors [ N4,800 ] Subscription in arrears [ N4,700 ] Subscription in advance [ N650]','','b','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:21'),(502,'I.  Space occupied by each department    II. Average value of stock held by each department III. \tDepartmental turnover  IV. Number of articles sold by each department. From the information given, the two most logical bases for apportioning expenses that are common to departments are','I and II','I and III','II and III','Ill and IV','','','b','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-23 10:49:59'),(503,'One of the purposes of maintaining the account of a branch at the head office is to','record charges in shareholdings','record charges in liabilities','check the excesses of customers','check the excesses of members of staff.','','','d','','utme','2009',126,'Admin','2016-12-16 21:08:08','2020-07-22 21:43:51'),(504,'Which of the following is a common cause of a discrepancy between head office and branch trial balance?','Debtors and cash in transit','Creditors and cash in transit','Stock and cash in transit','Stock and prepayments','','','a','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-07-23 10:37:20'),(505,'Sule and Ahmad are in partnership sharing profits and losses equally. If  Khadija is admitted as a new partner to take 1/5 th as her share, what is the new profit or loss sharing ratio?','Sule1/3 , Ahmad 1/3 and Khadija 1/3','Sule1/5, Ahmad 1/5 and Khadija 3/5','Sule2/5,  Ahmad2/5 and Khadija 1/5','Sule ,2/5, Ahmad and 1/5 Khadija 2/5','','','c','','utme','2009',136,'Admin','2016-12-16 21:08:08','2020-07-22 21:43:50'),(506,'In partnership account, conversion of non-cash assets into cash \t\tis referred to as','realization','disposal','dissolution','revaluation','','','c','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:31'),(507,'The share premium account would be','credited with application and allotment  N 187,500','debited with application and allotment  N 375,000','credited with application and allotment  N 375,000','debited with application and allotment  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','c','','utme','2009',112,'Admin','2016-12-16 21:08:08','2020-07-23 10:37:21'),(508,'The second and final call account was debited with','ordinary share capital account  N 187,500','12% preference share capital  N  375,000','bank account  N 187,500','12% preference share capital account  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','d','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:33'),(509,'Provision for bad and doubtful debts in companies final accounts is treated in','trading account','profit and loss account','fund flow statement','cash flow statement','','','b','','utme','2009',111,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:34'),(510,'The book value per share is obtained by dividing','shareholders equity by outstanding shares','total assets by outstanding shares','gross profit by outstanding shares','net profit by outstanding shares','','','a','','utme','2009',126,'Admin','2016-12-16 21:08:08','2020-07-14 13:33:35'),(511,'Expenditure incurred on consumables and goods for resale is','revenue expenditure','capital expenditure','sunk cost','miscellaneous expenses','','','a','','utme','2009',142,'Admin','2016-12-16 21:08:08','2020-07-22 21:43:51'),(512,'Replacement and renewal of fixed assets are','revenue receipt','capital receipt','capital expenditure','revenue expenditure','','','c','','utme','2009',117,'Admin','2016-12-16 21:08:08','2020-07-23 10:49:59'),(513,'Which of the following is credited to the consolidated revenue fund?','Recurrent expenditure','Capital expenditure','Transfers to revenue fund','Internal revenue','','','c','','utme','2009',115,'Admin','2016-12-16 21:08:09','2020-07-14 01:50:57'),(514,'One of the reasons for the existence of the public sector is to','take adequate care of the needy','supplement the commercial sector','provide cheap services to all citizens','correct perceived inequalities.','','','c','','utme','2009',120,'Admin','2016-12-16 21:08:09','2020-07-14 02:14:16');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `api_call_ip_address` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `ipAddress` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `requestCount` int(11) NOT NULL DEFAULT '1',\n  `countryName` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `countryCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `cityName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `zipCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `latitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `longitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=10808 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `api_call_ip_address` VALUES (1,'chemistry','41.204.237.6',55,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:16:31','2019-10-11 19:53:51'),(2,'english','41.204.237.6',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-22 17:05:06'),(3,'physics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(4,'government','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(5,'irk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(6,'civiledu','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(7,'currentaffairs','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(8,'economics','197.255.171.219',494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:28:05','2018-11-16 16:14:04'),(9,'english','197.255.171.219',622,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 16:17:59','2018-11-16 17:04:20'),(10,'english','105.112.40.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 20:56:48','2018-11-16 20:56:48'),(11,'chemistry','66.249.66.146',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 02:15:11','2019-01-20 17:41:49'),(12,'chemistry','105.112.27.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 18:01:33','2018-11-17 18:01:33'),(13,'chemistry','105.112.34.182',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 19:42:35','2018-11-17 19:48:36'),(14,'english','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:11:14','2018-11-18 07:11:16'),(15,'mathematics','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:23:49','2018-11-18 07:23:58'),(16,'english','35.187.100.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:08:37','2018-11-18 15:08:37'),(17,'english','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(18,'biology','54.157.207.237',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:22:23'),(19,'physics','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(20,'chemistry','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(21,'englishlit','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(22,'currentaffairs','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(23,'history','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(24,'mathematics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(25,'commerce','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(26,'biology','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:10'),(27,'physics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(28,'englishlit','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(29,'government','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(30,'economics','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:59:54'),(31,'chemistry','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(32,'crk','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(33,'irk','54.242.159.164',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:01:08'),(34,'insurance','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(35,'currentaffairs','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(36,'history','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(37,'english','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:10','2018-11-18 16:00:23'),(38,'civiledu','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:23','2018-11-18 16:00:23'),(39,'chemistry','38.132.114.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:11:29','2018-11-18 16:11:29'),(40,'biology','154.118.73.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:26:38','2018-11-19 07:42:11'),(41,'mathematics','154.118.73.218',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:57:21','2018-11-19 08:27:22'),(42,'biology','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(43,'physics','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(44,'englishlit','54.226.211.137',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:04'),(45,'crk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(46,'geography','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(47,'civiledu','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(48,'currentaffairs','54.226.211.137',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:12'),(49,'chemistry','105.112.34.116',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 11:42:43','2018-11-19 12:07:25'),(50,'biology','105.112.34.116',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 12:03:49','2018-11-19 12:04:31'),(51,'chemistry','105.112.32.113',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 15:15:17','2018-11-19 15:15:17'),(52,'chemistry','105.112.38.168',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:39:07','2018-11-19 16:39:53'),(53,'chemistry','105.112.33.204',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:41:17','2018-11-19 17:08:45'),(54,'chemistry','105.112.34.113',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 17:16:16','2018-11-19 17:50:41'),(55,'chemistry','105.112.39.125',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 18:09:49','2018-11-19 18:10:22'),(56,'commerce','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(57,'accounting','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(58,'biology','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(59,'physics','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(60,'geography','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(61,'civiledu','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(62,'currentaffairs','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(63,'mathematics','154.120.115.82',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 09:18:07','2018-11-20 09:18:27'),(64,'accounting','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(65,'chemistry','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(66,'government','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(67,'crk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(68,'geography','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(69,'irk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(70,'currentaffairs','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(71,'chemistry','197.210.55.232',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:36:42','2018-11-21 16:04:23'),(72,'chemistry','197.210.55.152',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:51:48','2018-11-21 16:04:07'),(73,'mathematics','197.210.55.232',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:25','2018-11-21 16:04:26'),(74,'english','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(75,'mathematics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(76,'commerce','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(77,'geography','54.235.56.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(78,'economics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(79,'civiledu','54.235.56.218',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(80,'insurance','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(81,'mathematics','197.210.55.49',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:06:37','2018-11-21 16:12:12'),(82,'accounting','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(83,'physics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(84,'government','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(85,'crk','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(86,'history','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(87,'mathematics','197.210.53.227',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:39:55','2018-11-21 18:46:03'),(88,'mathematics','197.210.53.213',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:41:49','2018-11-21 18:50:09'),(89,'mathematics','197.210.53.241',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:50:32','2018-11-21 18:50:33'),(90,'physics','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(91,'englishlit','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(92,'government','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(93,'geography','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(94,'irk','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(95,'civiledu','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(96,'history','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:34'),(97,'mathematics','105.112.39.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:03:34','2018-11-21 20:03:35'),(98,'chemistry','105.112.39.146',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:35:42','2018-11-21 21:02:43'),(99,'biology','197.210.29.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:41:34','2018-11-21 20:41:35'),(100,'commerce','41.203.72.24',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 08:31:50','2018-11-22 08:31:54'),(101,'biology','154.118.57.75',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:21:36','2018-11-22 09:21:42'),(102,'english','154.118.57.75',430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:32:20','2018-11-22 09:48:24'),(103,'mathematics','154.118.57.75',138,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:34:54','2018-11-22 09:48:24'),(104,'commerce','154.118.57.75',67,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:36:29','2018-11-22 09:37:01'),(105,'mathematics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(106,'biology','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(107,'physics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(108,'chemistry','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(109,'geography','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(110,'economics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(111,'irk','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(112,'crk','105.112.32.158',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:17:53','2018-11-22 12:19:16'),(113,'crk','105.112.26.27',714,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:39:40','2018-11-22 12:50:37'),(114,'geography','105.112.26.27',333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:51:29','2018-11-22 12:56:58'),(115,'irk','105.112.26.27',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:56:49','2018-11-22 12:56:57'),(116,'mathematics','197.210.52.148',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:57','2018-11-22 20:15:32'),(117,'mathematics','197.210.53.170',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:41'),(118,'mathematics','197.210.53.74',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:25'),(119,'commerce','197.210.53.170',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:42','2018-11-22 20:14:59'),(120,'commerce','197.210.52.148',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-22 20:14:57','2020-02-06 09:18:23'),(121,'commerce','197.210.53.74',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:58','2018-11-22 20:15:00'),(122,'accounting','197.210.53.170',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:17'),(123,'accounting','197.210.53.74',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:31'),(124,'accounting','197.210.52.148',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:02','2018-11-22 20:15:34'),(125,'chemistry','45.222.98.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 08:18:28','2018-11-23 08:29:56'),(126,'crk','105.112.46.53',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 09:29:55','2018-11-23 10:34:53'),(127,'chemistry','105.112.46.53',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 13:13:27','2018-11-23 13:56:23'),(128,'chemistry','105.112.45.132',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:12:24','2018-11-23 16:12:25'),(129,'chemistry','105.112.42.3',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:18:35','2018-11-23 17:30:48'),(130,'accounting','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(131,'biology','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(132,'physics','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(133,'irk','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(134,'civiledu','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(135,'currentaffairs','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(136,'history','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(137,'chemistry','122.172.127.49',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:22:39','2018-11-23 18:25:03'),(138,'physics','122.172.127.49',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:25:06','2018-11-23 18:25:21'),(139,'chemistry','105.112.41.195',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 19:35:37','2019-03-06 06:04:52'),(140,'chemistry','105.112.29.74',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 20:03:18','2018-11-23 22:58:38'),(141,'chemistry','105.112.40.253',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 09:25:34','2018-11-24 09:25:34'),(142,'english','41.203.72.10',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:16:56','2018-11-24 13:19:08'),(143,'accounting','41.203.72.10',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:21:12','2018-11-27 06:00:10'),(144,'english','105.112.44.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 14:40:08','2018-11-24 14:40:08'),(145,'chemistry','105.112.43.82',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 19:55:21','2018-11-24 20:10:56'),(146,'chemistry','105.112.46.85',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 20:28:29','2018-11-28 09:54:04'),(147,'chemistry','105.112.41.167',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:10:36','2018-11-24 21:25:21'),(148,'chemistry','105.112.40.197',880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:57:55','2018-11-24 22:40:30'),(149,'english','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(150,'physics','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(151,'englishlit','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(152,'crk','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(153,'geography','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(154,'civiledu','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(155,'insurance','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(156,'chemistry','105.112.44.13',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 08:45:46','2018-11-25 09:31:13'),(157,'chemistry','105.112.41.148',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 09:44:43','2018-11-25 10:48:33'),(158,'chemistry','66.102.8.72',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:23:12','2018-11-25 10:23:13'),(159,'chemistry','108.177.7.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:28:48','2018-11-25 10:28:49'),(160,'chemistry','108.177.6.56',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:36','2018-11-25 10:29:54'),(161,'chemistry','108.177.6.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:41','2018-11-25 10:29:42'),(162,'chemistry','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:50','2018-11-25 10:29:51'),(163,'civiledu','108.177.6.53',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:53','2018-11-25 10:29:54'),(164,'commerce','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:56','2018-11-25 10:29:57'),(165,'crk','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:58','2018-11-25 10:29:58'),(166,'chemistry','108.177.6.58',200,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-25 10:30:05','2019-09-12 00:12:04'),(167,'insurance','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:10','2018-11-25 10:30:11'),(168,'history','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:12','2018-11-25 10:30:12'),(169,'geography','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:15','2018-11-25 10:30:15'),(170,'geography','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:18','2018-11-25 10:30:19'),(171,'commerce','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:19','2018-11-25 10:30:20'),(172,'englishlit','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:20'),(173,'crk','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:21'),(174,'geography','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:21','2018-11-25 10:30:21'),(175,'civiledu','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:22','2018-11-25 10:30:23'),(176,'civiledu','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:24','2018-11-25 10:30:24'),(177,'insurance','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:25','2018-11-25 10:30:25'),(178,'englishlit','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:27','2018-11-25 10:30:27'),(179,'commerce','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:29','2018-11-25 10:30:29'),(180,'history','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:35','2018-11-25 10:30:35'),(181,'insurance','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:37','2018-11-25 10:30:37'),(182,'currentaffairs','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:42','2018-11-25 10:30:42'),(183,'chemistry','108.177.7.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:45','2018-11-25 10:31:04'),(184,'history','108.177.7.81',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:11','2018-11-25 10:31:39'),(185,'english','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:43','2018-11-25 10:31:43'),(186,'economics','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:47','2018-11-25 10:31:48'),(187,'mathematics','108.177.7.81',60,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:52','2019-09-11 16:49:44'),(188,'englishlit','108.177.7.81',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:32:37'),(189,'chemistry','66.249.88.76',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:31:59'),(190,'crk','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:10','2018-11-25 10:32:10'),(191,'insurance','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:14','2018-11-25 10:32:14'),(192,'civiledu','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:17','2018-11-25 10:32:18'),(193,'geography','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:21','2018-11-25 10:32:22'),(194,'chemistry','104.133.10.99',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:47:20','2018-11-25 10:48:39'),(195,'chemistry','105.112.46.101',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:07:44','2018-11-25 12:07:44'),(196,'chemistry','105.112.33.216',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:33:34','2018-11-25 12:56:01'),(197,'currentaffairs','105.112.33.216',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:56:40','2018-11-25 13:10:15'),(198,'economics','105.112.33.216',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:10:36','2018-11-25 13:16:55'),(199,'chemistry','105.112.40.40',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:15:46','2018-11-25 13:19:21'),(200,'chemistry','105.112.42.88',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:21:39','2018-11-25 13:21:39'),(201,'chemistry','105.112.41.248',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:01:24','2018-11-25 17:01:24'),(202,'english','105.112.41.248',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:04:33','2018-11-25 17:13:28'),(203,'english','105.112.41.0',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:18:30','2018-11-25 17:55:36'),(204,'english','197.210.53.141',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 19:58:43','2018-11-25 20:00:07'),(205,'english','197.210.52.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:07','2018-11-25 20:00:41'),(206,'english','197.210.53.23',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:21','2018-11-25 20:00:55'),(207,'english','105.112.43.127',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:19:59','2018-11-25 20:20:01'),(208,'english','197.211.63.176',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:00:14','2018-11-26 05:00:51'),(209,'commerce','197.211.63.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:10','2018-11-26 05:01:10'),(210,'mathematics','197.211.63.176',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:21','2018-11-26 10:14:10'),(211,'biology','105.112.42.191',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:08','2018-11-26 09:33:08'),(212,'accounting','105.112.42.191',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:09','2018-11-26 09:33:12'),(213,'english','41.76.197.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:38','2018-11-26 10:12:41'),(214,'currentaffairs','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:50','2018-11-26 10:12:50'),(215,'government','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:54','2018-11-26 10:12:54'),(216,'civiledu','41.76.197.2',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:58','2018-11-26 10:13:05'),(217,'englishlit','41.76.197.2',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:13:14','2018-11-27 16:00:52'),(218,'english','129.56.76.55',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:51:31','2018-11-26 10:52:34'),(219,'mathematics','129.56.76.55',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:52:19','2018-11-26 10:52:28'),(220,'english','197.210.227.200',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 11:27:18','2018-11-26 11:27:18'),(221,'english','105.112.28.18',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:05:44','2018-11-26 13:06:45'),(222,'physics','105.112.28.18',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:07:06','2018-11-26 13:34:17'),(223,'physics','105.112.21.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:05:04','2018-11-26 16:05:04'),(224,'english','197.210.63.52',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:11:53','2018-11-26 16:11:56'),(225,'english','197.211.61.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:28:59','2018-11-26 16:28:59'),(226,'currentaffairs','197.211.61.82',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:29:23','2018-11-28 11:57:35'),(227,'chemistry','77.88.47.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 22:02:53','2019-04-15 13:33:36'),(228,'mathematics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(229,'chemistry','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(230,'government','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(231,'economics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(232,'civiledu','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(233,'currentaffairs','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(234,'history','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(235,'commerce','41.203.72.10',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 05:53:52','2018-11-27 06:00:02'),(236,'physics','41.203.72.10',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:00:04','2018-11-27 06:01:08'),(237,'english','41.190.30.106',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:14:24','2018-11-27 06:21:01'),(238,'civiledu','41.190.30.106',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:21:10','2018-11-27 06:21:10'),(239,'civiledu','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:03','2018-11-27 06:38:04'),(240,'english','41.190.2.145',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:07','2018-11-27 06:39:15'),(241,'mathematics','41.190.2.145',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:09','2018-11-27 06:38:26'),(242,'insurance','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:14','2018-11-27 06:38:14'),(243,'chemistry','41.190.2.145',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:27','2018-11-27 06:38:37'),(244,'chemistry','105.112.27.114',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:39:39','2018-11-27 06:41:07'),(245,'englishlit','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(246,'government','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(247,'crk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(248,'geography','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(249,'irk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(250,'insurance','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(251,'history','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(252,'physics','105.112.28.250',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 08:14:13','2018-11-27 08:14:48'),(253,'english','197.211.61.80',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:09','2018-11-27 13:40:37'),(254,'mathematics','197.211.61.80',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:21','2018-11-27 13:38:36'),(255,'english','197.210.226.36',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:47:29','2018-11-27 13:47:32'),(256,'english','197.210.29.222',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:18:13','2018-11-27 14:20:00'),(257,'commerce','197.210.29.222',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:20:17','2018-11-27 14:20:22'),(258,'english','105.112.120.89',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:34:35','2018-11-27 14:37:02'),(259,'crk','105.112.120.89',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:38:57','2018-11-27 14:40:34'),(260,'mathematics','129.205.114.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:17','2018-11-27 14:40:17'),(261,'english','129.205.114.24',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:21','2018-11-27 14:41:29'),(262,'chemistry','129.205.114.24',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:42:02','2018-11-27 14:42:57'),(263,'physics','129.205.114.24',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:43:24','2018-11-27 14:44:50'),(264,'english','129.56.65.7',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:45:40','2018-11-27 16:45:49'),(265,'biology','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:46:22','2018-11-27 16:49:06'),(266,'accounting','129.56.65.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:26','2018-11-27 16:49:26'),(267,'geography','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:40','2018-11-27 16:59:23'),(268,'physics','105.112.26.254',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 17:27:44','2018-11-27 17:27:56'),(269,'english','129.56.60.65',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 18:02:16','2018-11-27 18:02:18'),(270,'english','105.112.34.100',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 19:45:56','2018-11-27 19:46:05'),(271,'chemistry','105.112.46.246',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:12:41','2018-11-27 20:12:45'),(272,'mathematics','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:30','2018-11-27 20:13:30'),(273,'currentaffairs','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:37','2018-11-27 20:13:38'),(274,'chemistry','5.102.173.71',20,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-28 03:23:29','2020-04-23 13:10:36'),(275,'english','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(276,'mathematics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(277,'accounting','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(278,'biology','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(279,'physics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(280,'economics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(281,'insurance','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(282,'english','197.210.29.201',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:58:56','2018-11-28 06:59:01'),(283,'currentaffairs','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:28','2018-11-28 07:00:28'),(284,'mathematics','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:50','2018-11-28 07:00:50'),(285,'currentaffairs','197.210.226.232',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:01:32','2018-11-28 07:02:24'),(286,'mathematics','105.112.68.162',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:39:34','2018-11-28 07:40:17'),(287,'english','129.56.51.37',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:53:25','2018-11-28 09:57:29'),(288,'englishlit','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:54:29','2018-11-28 17:19:35'),(289,'mathematics','129.56.51.37',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:57:49','2018-11-28 09:57:52'),(290,'chemistry','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:36:59','2018-11-28 13:36:59'),(291,'english','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:50:26','2018-11-28 13:50:26'),(292,'mathematics','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:51:25','2018-11-28 13:51:25'),(293,'geography','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:52:11','2018-11-28 13:52:11'),(294,'accounting','105.112.42.193',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 14:17:01','2018-11-28 14:17:30'),(295,'english','105.112.46.85',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:11','2018-11-28 17:19:16'),(296,'history','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:55','2018-11-28 17:20:33'),(297,'english','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:31','2018-11-28 17:48:31'),(298,'mathematics','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:35','2018-11-28 17:48:40'),(299,'chemistry','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:49:26','2018-11-28 17:50:45'),(300,'biology','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:50:12','2018-11-28 17:50:16'),(301,'accounting','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:52:59','2018-11-28 17:52:59'),(302,'history','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:53:04','2018-11-28 17:53:09'),(303,'physics','105.112.26.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 02:32:12','2018-11-29 02:33:14'),(304,'english','105.112.3.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:04:28','2018-11-29 05:07:31'),(305,'english','197.210.226.122',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:31:51','2018-11-29 05:33:21'),(306,'english','197.210.226.203',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:33:22','2018-11-29 05:37:32'),(307,'mathematics','197.210.226.122',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:38:12','2018-11-29 05:38:14'),(308,'english','102.163.30.124',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:45:54','2018-11-29 07:47:50'),(309,'accounting','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(310,'commerce','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(311,'biology','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(312,'physics','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(313,'chemistry','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(314,'englishlit','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(315,'geography','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(316,'crk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(317,'currentaffairs','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(318,'history','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(319,'irk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(320,'insurance','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(321,'chemistry','105.112.68.243',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 11:06:07','2018-11-29 11:06:07'),(322,'chemistry','197.149.95.62',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:08:23','2018-11-29 13:08:50'),(323,'english','197.211.60.94',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:18:57','2018-11-29 13:19:11'),(324,'english','129.56.159.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:43','2018-11-30 05:15:43'),(325,'mathematics','129.56.159.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:54','2018-11-30 05:15:55'),(326,'english','129.56.190.68',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 14:03:21','2018-11-30 14:03:21'),(327,'commerce','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(328,'physics','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(329,'chemistry','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(330,'englishlit','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(331,'government','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(332,'currentaffairs','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(333,'history','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(334,'mathematics','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(335,'crk','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(336,'geography','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(337,'history','105.112.47.245',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 19:21:33','2018-11-30 19:21:33'),(338,'english','105.112.46.230',2160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 21:59:34','2018-12-01 00:55:45'),(339,'commerce','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(340,'biology','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(341,'englishlit','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(342,'government','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(343,'civiledu','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(344,'insurance','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(345,'history','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(346,'english','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(347,'accounting','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(348,'physics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(349,'geography','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(350,'economics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(351,'english','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:57:37','2018-12-01 00:57:45'),(352,'physics','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:08','2018-12-01 00:58:11'),(353,'englishlit','105.112.68.163',840,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:33','2018-12-01 01:55:58'),(354,'english','101.206.169.22',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:48:58','2018-12-01 03:50:48'),(355,'geography','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:15','2018-12-01 03:49:15'),(356,'history','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:20','2018-12-01 03:49:20'),(357,'economics','101.206.169.22',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:50:52','2018-12-01 03:50:57'),(358,'physics','101.206.169.22',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:51:11','2018-12-01 03:51:31'),(359,'physics','105.112.21.158',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:34:50','2018-12-01 09:35:53'),(360,'biology','105.112.21.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:39:19','2018-12-01 09:39:19'),(361,'economics','105.112.32.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 14:44:33','2018-12-01 14:48:45'),(362,'english','192.241.239.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:43:19','2018-12-01 19:43:34'),(363,'economics','192.241.239.137',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:45:45','2018-12-01 19:45:48'),(364,'crk','41.90.4.17',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:39:33','2018-12-02 16:39:35'),(365,'english','105.112.68.194',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:46:19','2018-12-02 16:46:49'),(366,'englishlit','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:48:58','2018-12-02 16:48:58'),(367,'government','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:50:02','2018-12-02 16:50:02'),(368,'mathematics','105.112.35.216',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 20:03:41','2018-12-02 20:05:19'),(369,'mathematics','197.210.44.169',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 07:17:58','2018-12-03 07:17:58'),(370,'english','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:44:57','2019-01-01 08:57:25'),(371,'physics','66.249.66.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:47:01','2018-12-11 00:12:59'),(372,'commerce','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:52:28','2018-12-10 06:37:01'),(373,'mathematics','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:53:01','2019-01-01 09:08:53'),(374,'english','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(375,'mathematics','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(376,'accounting','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(377,'crk','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(378,'geography','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(379,'civiledu','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(380,'insurance','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(381,'english','197.210.55.187',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:21:56','2018-12-04 05:22:40'),(382,'english','197.210.55.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:22:22','2018-12-04 05:23:48'),(383,'english','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:46','2018-12-04 05:23:46'),(384,'economics','197.210.55.77',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:50','2018-12-04 05:23:55'),(385,'government','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:19','2018-12-04 05:24:19'),(386,'currentaffairs','197.210.55.77',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:20','2018-12-04 05:27:52'),(387,'biology','41.203.72.24',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 08:44:56','2018-12-04 08:45:38'),(388,'physics','129.18.144.249',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:37:18','2018-12-04 11:37:48'),(389,'mathematics','129.18.144.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:38:26','2018-12-04 11:38:26'),(390,'chemistry','129.18.144.249',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:39:19','2018-12-04 12:05:27'),(391,'chemistry','41.58.182.193',441,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:28:25','2019-02-18 09:48:30'),(392,'biology','41.58.182.193',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:59:24','2019-01-14 13:14:55'),(393,'accounting','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(394,'mathematics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(395,'crk','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(396,'commerce','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(397,'geography','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(398,'physics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(399,'englishlit','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(400,'economics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(401,'irk','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(402,'insurance','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(403,'civiledu','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(404,'history','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(405,'chemistry','5.255.250.167',134,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-06 10:34:57','2020-03-09 20:47:54'),(406,'english','198.54.114.114',2064829,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 23:13:35','2019-01-05 10:14:01'),(407,'mathematics','197.210.54.46',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:39:25','2018-12-07 14:39:27'),(408,'chemistry','107.167.108.170',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:41:02','2018-12-07 14:41:16'),(409,'english','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(410,'commerce','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(411,'physics','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(412,'crk','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(413,'civiledu','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(414,'insurance','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(415,'currentaffairs','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(416,'chemistry','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(417,'geography','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(418,'irk','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(419,'chemistry','93.158.161.84',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 12:23:24','2019-08-28 13:58:43'),(420,'mathematics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(421,'physics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(422,'englishlit','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(423,'government','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(424,'economics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(425,'irk','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(426,'civiledu','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(427,'chemistry','41.190.2.156',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 21:46:56','2018-12-08 21:53:59'),(428,'mathematics','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(429,'english','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(430,'commerce','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(431,'englishlit','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(432,'government','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(433,'economics','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(434,'crk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(435,'civiledu','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(436,'geography','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(437,'currentaffairs','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(438,'history','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(439,'irk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(440,'english','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:24:35','2019-01-21 04:56:34'),(441,'accounting','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:27:10','2018-12-10 05:27:10'),(442,'economics','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:28:56','2018-12-11 00:19:57'),(443,'currentaffairs','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:26:15','2018-12-10 06:26:15'),(444,'mathematics','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:32:16','2018-12-10 06:32:17'),(445,'government','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 09:31:31','2018-12-10 09:31:32'),(446,'crk','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:34:20','2018-12-10 11:34:20'),(447,'geography','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:40:41','2018-12-10 11:40:41'),(448,'english','66.249.66.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:01:44','2018-12-12 11:56:08'),(449,'crk','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:02:21','2018-12-11 00:02:21'),(450,'mathematics','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:13:24','2018-12-11 00:13:24'),(451,'english','105.112.45.33',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 12:02:56','2018-12-11 12:38:16'),(452,'chemistry','93.158.166.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 14:37:30','2018-12-11 14:37:30'),(453,'chemistry','180.76.15.21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 16:53:35','2018-12-11 16:53:35'),(454,'chemistry','180.76.15.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 19:26:46','2018-12-11 19:26:46'),(455,'english','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(456,'mathematics','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(457,'accounting','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(458,'biology','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(459,'geography','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(460,'economics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(461,'history','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(462,'physics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(463,'government','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(464,'irk','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(465,'civiledu','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(466,'chemistry','180.76.15.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 23:48:00','2018-12-11 23:48:00'),(467,'chemistry','180.76.15.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 00:21:20','2018-12-12 00:21:20'),(468,'chemistry','180.76.15.14',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 07:46:34','2018-12-12 07:46:34'),(469,'chemistry','154.113.73.98',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:36','2018-12-12 10:41:28'),(470,'mathematics','154.113.73.98',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:49','2018-12-12 10:36:58'),(471,'crk','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:20','2018-12-12 11:59:20'),(472,'physics','66.249.66.148',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:38','2019-01-21 04:57:41'),(473,'english','105.112.47.144',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:00:13','2018-12-12 22:58:12'),(474,'englishlit','105.112.47.144',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:02:31','2018-12-12 12:04:05'),(475,'accounting','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 21:01:10','2018-12-12 21:01:10'),(476,'chemistry','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 22:50:15','2018-12-12 22:50:15'),(477,'english','105.112.46.125',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:28:26','2018-12-13 08:44:01'),(478,'economics','105.112.46.125',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:29:01','2018-12-13 08:29:01'),(479,'english','105.112.41.38',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:57:18','2018-12-13 12:33:26'),(480,'english','129.56.134.30',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 09:16:11','2018-12-13 09:16:17'),(481,'chemistry','93.158.161.83',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-13 09:55:28','2019-08-18 19:16:42'),(482,'government','105.112.41.38',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:18','2018-12-13 10:21:18'),(483,'economics','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:51','2018-12-13 10:46:29'),(484,'biology','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:30:17','2018-12-13 10:32:39'),(485,'chemistry','105.112.41.38',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:47:04','2018-12-13 11:10:33'),(486,'accounting','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:57:43','2018-12-13 11:01:54'),(487,'mathematics','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:05:06','2018-12-13 11:15:23'),(488,'englishlit','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:10:58','2018-12-13 11:14:55'),(489,'chemistry','180.76.15.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 15:45:10','2018-12-13 15:45:10'),(490,'chemistry','180.76.15.16',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:18:30','2018-12-13 16:18:31'),(491,'irk','54.227.19.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:32:52','2018-12-13 16:32:52'),(492,'chemistry','180.76.15.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:51:50','2018-12-13 16:51:50'),(493,'english','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:37','2018-12-13 19:06:38'),(494,'mathematics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:40','2018-12-13 19:08:24'),(495,'crk','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:57','2018-12-13 19:06:58'),(496,'economics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:01','2018-12-13 19:08:24'),(497,'government','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:14','2018-12-13 19:07:14'),(498,'civiledu','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(499,'biology','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(500,'history','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:42','2018-12-13 19:07:42'),(501,'chemistry','178.154.171.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 21:33:50','2018-12-13 21:33:50'),(502,'chemistry','180.76.15.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 00:15:20','2018-12-14 00:15:20'),(503,'chemistry','180.76.15.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 07:43:39','2018-12-14 07:43:39'),(504,'chemistry','197.211.61.108',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 15:01:10','2018-12-14 15:01:10'),(505,'english','105.112.46.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 21:38:58','2018-12-14 21:38:59'),(506,'mathematics','105.112.32.198',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 15:16:16','2018-12-15 15:16:17'),(507,'english','105.112.38.110',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:20:52','2018-12-15 19:20:28'),(508,'biology','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:25:40','2018-12-15 18:25:40'),(509,'economics','105.112.38.110',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:21:25','2018-12-15 19:30:28'),(510,'accounting','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:30:34','2018-12-15 19:30:34'),(511,'physics','175.126.202.88',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 00:43:36','2018-12-16 00:44:38'),(512,'accounting','105.112.34.239',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 10:25:26','2018-12-16 10:25:26'),(513,'accounting','105.112.41.67',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 15:44:34','2018-12-16 16:36:06'),(514,'accounting','105.112.29.182',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 16:52:50','2018-12-16 17:06:10'),(515,'accounting','105.112.34.195',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 17:18:42','2018-12-16 18:36:42'),(516,'chemistry','197.211.56.111',287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:10:04','2018-12-16 19:21:43'),(517,'accounting','105.112.46.33',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:32:00','2018-12-16 19:34:06'),(518,'english','105.112.46.33',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:36:15','2018-12-16 19:36:15'),(519,'mathematics','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(520,'englishlit','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(521,'government','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(522,'economics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(523,'civiledu','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(524,'insurance','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(525,'history','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(526,'accounting','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(527,'physics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(528,'chemistry','197.211.61.98',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:12:52','2018-12-17 06:13:44'),(529,'mathematics','197.211.61.98',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:14:29','2018-12-17 06:14:29'),(530,'english','105.112.45.142',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:21:44','2018-12-17 06:21:44'),(531,'commerce','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(532,'mathematics','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(533,'englishlit','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(534,'accounting','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(535,'crk','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(536,'civiledu','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(537,'irk','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(538,'insurance','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(539,'currentaffairs','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(540,'history','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(541,'crk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(542,'geography','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(543,'economics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(544,'history','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(545,'chemistry','197.210.45.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 17:24:25','2018-12-17 17:39:16'),(546,'mathematics','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:41','2018-12-17 18:04:43'),(547,'english','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:52','2018-12-17 18:04:56'),(548,'chemistry','197.210.227.233',92,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 21:46:03','2020-04-28 16:08:26'),(549,'crk','41.90.4.25',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 05:23:20','2018-12-18 05:23:20'),(550,'mathematics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(551,'chemistry','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(552,'englishlit','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(553,'government','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(554,'economics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(555,'currentaffairs','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(556,'history','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(557,'english','197.149.92.146',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 15:42:59','2019-01-21 14:07:29'),(558,'english','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(559,'physics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(560,'government','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(561,'crk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(562,'economics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(563,'irk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(564,'history','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(565,'mathematics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(566,'commerce','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(567,'biology','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(568,'physics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(569,'crk','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(570,'civiledu','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(571,'mathematics','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(572,'commerce','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(573,'accounting','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(574,'biology','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(575,'government','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(576,'geography','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(577,'insurance','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(578,'english','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(579,'chemistry','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(580,'crk','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(581,'currentaffairs','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(582,'english','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:07:37','2018-12-19 07:07:37'),(583,'currentaffairs','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:08:26','2018-12-19 07:08:26'),(584,'chemistry','141.8.142.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 10:43:20','2018-12-19 10:43:20'),(585,'chemistry','129.205.114.31',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 14:19:13','2018-12-19 14:46:54'),(586,'chemistry','197.210.45.94',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 18:51:50','2018-12-19 19:42:45'),(587,'chemistry','197.210.226.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:52:25','2018-12-19 19:52:25'),(588,'chemistry','197.210.226.37',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:53:27','2018-12-19 19:53:31'),(589,'chemistry','129.205.114.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 22:33:31','2018-12-19 22:33:31'),(590,'chemistry','197.210.131.150',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 06:24:47','2018-12-20 06:43:46'),(591,'english','41.58.233.100',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:12:36','2018-12-20 09:15:21'),(592,'commerce','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(593,'biology','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(594,'physics','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(595,'englishlit','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(596,'geography','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(597,'history','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(598,'mathematics','105.112.37.70',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 19:08:41','2018-12-20 19:08:41'),(599,'english','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(600,'commerce','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(601,'geography','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(602,'economics','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(603,'civiledu','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(604,'insurance','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(605,'history','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(606,'currentaffairs','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:19','2018-12-21 08:05:19'),(607,'biology','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:51','2018-12-21 08:05:51'),(608,'english','105.112.47.163',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:24:03','2018-12-21 10:19:51'),(609,'chemistry','105.112.47.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:39:11','2018-12-21 08:39:37'),(610,'physics','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:45:24','2018-12-21 08:45:25'),(611,'mathematics','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(612,'chemistry','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(613,'englishlit','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(614,'geography','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(615,'civiledu','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(616,'currentaffairs','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(617,'history','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(618,'mathematics','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:33:23','2018-12-22 05:33:23'),(619,'english','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:35:01','2018-12-22 05:35:01'),(620,'chemistry','197.211.61.114',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:26:13','2018-12-22 11:17:52'),(621,'english','197.211.61.114',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:31:29','2018-12-22 10:01:02'),(622,'mathematics','197.211.61.114',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 10:51:19','2018-12-22 11:44:17'),(623,'biology','197.211.61.114',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:15:56','2018-12-22 11:38:07'),(624,'economics','197.211.61.114',601,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:45:00','2018-12-22 11:54:26'),(625,'english','105.112.46.179',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:02:33','2018-12-22 12:32:21'),(626,'biology','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:12:59','2018-12-22 12:12:59'),(627,'mathematics','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:14:25','2018-12-22 12:14:25'),(628,'biology','105.112.27.90',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 14:12:09','2018-12-22 14:12:19'),(629,'biology','105.112.28.72',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 08:30:27','2018-12-23 08:31:00'),(630,'mathematics','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:34','2018-12-23 10:24:34'),(631,'commerce','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(632,'biology','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(633,'government','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(634,'crk','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(635,'civiledu','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(636,'history','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(637,'english','102.163.30.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 14:59:34','2018-12-23 14:59:34'),(638,'chemistry','94.130.64.96',101,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-24 16:32:40','2019-10-29 05:22:55'),(639,'chemistry','87.250.224.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 15:07:57','2018-12-25 15:07:57'),(640,'english','105.112.46.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 16:28:23','2018-12-25 16:28:24'),(641,'chemistry','197.242.105.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 21:07:41','2018-12-25 21:07:41'),(642,'mathematics','129.56.150.67',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 06:03:54','2018-12-26 06:03:54'),(643,'currentaffairs','105.112.43.199',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 07:57:50','2018-12-26 08:02:07'),(644,'economics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:16','2018-12-26 08:24:50'),(645,'english','105.112.43.199',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:19','2018-12-26 08:13:25'),(646,'biology','105.112.43.199',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:13:33','2018-12-26 08:15:51'),(647,'mathematics','105.112.43.199',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:19:50','2018-12-26 08:19:50'),(648,'chemistry','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:21:57','2018-12-26 08:22:00'),(649,'physics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:23:21','2018-12-26 08:23:26'),(650,'biology','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(651,'physics','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(652,'government','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(653,'geography','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(654,'civiledu','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(655,'currentaffairs','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(656,'history','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(657,'accounting','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(658,'chemistry','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(659,'irk','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(660,'english','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(661,'commerce','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(662,'physics','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(663,'englishlit','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(664,'irk','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(665,'civiledu','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(666,'currentaffairs','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(667,'commerce','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(668,'accounting','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(669,'biology','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(670,'chemistry','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(671,'economics','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(672,'irk','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(673,'currentaffairs','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(674,'mathematics','197.211.63.177',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 09:02:54','2018-12-28 09:02:54'),(675,'english','66.249.75.30',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:23:21','2018-12-28 10:23:21'),(676,'government','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:24:59','2018-12-28 10:24:59'),(677,'geography','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:28:56','2018-12-28 10:28:56'),(678,'mathematics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:30:30','2018-12-28 10:30:30'),(679,'physics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:43:38','2018-12-28 10:43:39'),(680,'physics','119.4.252.222',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 13:32:48','2018-12-28 13:32:48'),(681,'mathematics','105.112.40.153',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:15','2018-12-29 06:30:15'),(682,'english','105.112.40.153',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:27','2018-12-29 06:30:31'),(683,'mathematics','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(684,'english','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(685,'commerce','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(686,'physics','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(687,'biology','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(688,'englishlit','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(689,'government','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(690,'chemistry','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(691,'geography','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(692,'currentaffairs','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 11:39:05'),(693,'irk','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 12:00:15'),(694,'insurance','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(695,'biology','197.211.61.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-30 18:14:56','2018-12-30 18:14:56'),(696,'englishlit','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 08:59:20','2019-01-01 08:59:20'),(697,'civiledu','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 09:06:49','2019-01-01 09:06:49'),(698,'mathematics','197.210.227.192',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 13:01:04','2019-01-01 13:01:05'),(699,'english','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:15','2019-01-02 13:19:15'),(700,'mathematics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:33','2019-01-02 13:19:33'),(701,'physics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:52','2019-01-02 13:19:52'),(702,'chemistry','216.244.66.249',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-03 00:12:52','2020-05-01 01:03:29'),(703,'chemistry','129.56.72.46',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:37:05','2019-01-03 15:53:03'),(704,'physics','129.56.72.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:42:55','2019-01-03 15:42:55'),(705,'english','129.56.72.46',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:43:08','2019-01-03 15:43:45'),(706,'chemistry','197.211.61.138',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-04 14:31:06','2019-01-04 14:31:06'),(707,'chemistry','54.36.222.37',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:24:51','2019-01-05 15:25:12'),(708,'chemistry','105.112.68.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:25:43','2019-01-05 15:25:43'),(709,'chemistry','41.58.55.77',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:20:09','2019-01-05 16:29:28'),(710,'government','41.58.55.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:30:37','2019-01-05 16:30:37'),(711,'english','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:28','2019-01-06 16:30:29'),(712,'physics','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:33','2019-01-06 16:30:33'),(713,'english','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(714,'mathematics','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(715,'physics','54.163.211.17',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(716,'englishlit','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(717,'crk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(718,'government','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(719,'irk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(720,'economics','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(721,'history','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(722,'insurance','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(723,'currentaffairs','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(724,'mathematics','105.112.16.240',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(725,'physics','105.112.16.240',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(726,'english','35.171.138.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:39:33','2019-01-07 09:39:33'),(727,'chemistry','141.8.142.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:47:24','2019-01-07 09:47:24'),(728,'chemistry','129.56.36.237',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 14:52:19','2019-01-07 14:54:09'),(729,'chemistry','129.56.35.102',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:18:44','2019-01-08 07:43:45'),(730,'mathematics','129.56.35.102',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:20:24','2019-01-08 07:41:53'),(731,'mathematics','105.112.23.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:11:31','2019-01-08 09:11:31'),(732,'english','105.112.32.121',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:42:08','2019-01-08 09:42:22'),(733,'chemistry','197.211.61.143',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:10:03','2019-01-08 14:10:20'),(734,'chemistry','154.68.226.2',118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:34:37','2019-01-08 14:39:59'),(735,'english','154.68.226.2',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:39:32','2019-01-08 14:39:32'),(736,'chemistry','105.112.75.253',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:28:30','2019-01-08 18:28:52'),(737,'chemistry','105.112.33.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:43:41','2019-01-08 18:43:41'),(738,'chemistry','35.192.130.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 23:46:16','2019-01-08 23:46:25'),(739,'mathematics','105.112.18.0',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 07:37:37','2019-01-09 07:37:38'),(740,'chemistry','154.118.13.144',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:11:55','2019-01-09 08:13:04'),(741,'mathematics','154.118.13.144',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:12:11','2019-01-09 08:12:47'),(742,'mathematics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(743,'commerce','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(744,'accounting','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(745,'government','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(746,'economics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(747,'civiledu','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(748,'currentaffairs','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(749,'chemistry','41.77.168.134',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:45:00','2019-01-09 08:58:31'),(750,'mathematics','41.77.168.134',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:48:48','2019-01-09 08:48:48'),(751,'english','41.77.168.134',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:58:57','2019-01-09 09:03:34'),(752,'commerce','54.196.34.230',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:52:38'),(753,'accounting','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(754,'chemistry','54.196.34.230',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:19:42'),(755,'englishlit','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(756,'economics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(757,'irk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(758,'insurance','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(759,'physics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(760,'government','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(761,'crk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(762,'geography','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(763,'civiledu','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(764,'history','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(765,'chemistry','80.248.6.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:06:19','2019-01-09 10:06:19'),(766,'chemistry','154.118.61.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:32:10','2019-01-09 10:32:45'),(767,'english','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(768,'mathematics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(769,'commerce','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(770,'accounting','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(771,'physics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(772,'government','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(773,'insurance','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(774,'chemistry','197.242.96.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:31:54','2019-01-09 12:36:27'),(775,'commerce','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(776,'accounting','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(777,'physics','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(778,'government','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(779,'crk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(780,'irk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(781,'history','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(782,'chemistry','197.211.61.140',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:31:17','2019-01-09 13:31:45'),(783,'chemistry','197.210.28.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:45:23','2019-01-09 13:45:42'),(784,'chemistry','105.112.26.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:11:31','2019-01-09 16:11:31'),(785,'chemistry','212.100.76.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:20:25','2019-01-09 16:20:25'),(786,'english','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(787,'commerce','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(788,'chemistry','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(789,'accounting','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(790,'crk','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(791,'englishlit','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(792,'geography','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(793,'economics','54.234.47.73',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:14:14'),(794,'irk','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(795,'history','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(796,'insurance','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(797,'chemistry','51.75.71.123',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 23:42:44','2019-01-09 23:43:14'),(798,'chemistry','129.205.114.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 01:56:23','2019-01-10 01:56:30'),(799,'mathematics','197.210.47.164',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:43:39','2019-01-10 09:02:20'),(800,'chemistry','197.210.47.164',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:49:36','2019-01-10 08:58:38'),(801,'mathematics','163.172.103.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 09:01:09','2019-01-10 09:01:09'),(802,'chemistry','41.223.145.174',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 14:44:39','2019-01-10 14:44:40'),(803,'english','54.82.110.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 20:51:21','2019-01-10 20:51:21'),(804,'english','105.112.46.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:06:16','2019-01-10 21:06:16'),(805,'english','54.80.138.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:20','2019-01-10 21:09:20'),(806,'accounting','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(807,'physics','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(808,'chemistry','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(809,'government','54.80.138.166',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(810,'geography','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:23'),(811,'insurance','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(812,'history','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(813,'commerce','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:33','2019-01-10 21:45:05'),(814,'crk','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:45:05'),(815,'economics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:23'),(816,'civiledu','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:25'),(817,'mathematics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:45:05'),(818,'biology','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:21:37'),(819,'irk','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:45:05'),(820,'currentaffairs','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:34:23'),(821,'mathematics','105.112.46.80',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:40:26','2019-01-10 21:40:35'),(822,'chemistry','197.210.226.19',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 06:57:07','2019-01-11 07:15:56'),(823,'chemistry','197.210.53.216',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:13','2019-01-11 07:55:13'),(824,'chemistry','197.210.52.249',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:24','2019-02-01 07:57:34'),(825,'chemistry','197.210.53.38',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:33','2019-01-11 07:55:33'),(826,'chemistry','141.0.12.246',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 08:09:00','2019-01-11 08:09:00'),(827,'chemistry','93.158.161.104',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-11 11:59:42','2019-11-14 01:45:39'),(828,'mathematics','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(829,'physics','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(830,'chemistry','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(831,'government','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(832,'geography','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(833,'economics','54.205.11.114',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(834,'currentaffairs','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(835,'english','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(836,'commerce','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(837,'biology','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(838,'crk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(839,'irk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(840,'insurance','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(841,'civiledu','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(842,'history','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(843,'chemistry','197.210.227.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:05:33','2019-01-11 19:05:33'),(844,'english','197.210.227.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:09:52','2019-01-11 19:09:52'),(845,'englishlit','197.211.61.137',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 22:39:43','2019-01-11 22:39:43'),(846,'physics','197.242.97.253',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:01:48','2019-01-11 23:05:05'),(847,'mathematics','197.242.97.253',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:06:07','2019-01-11 23:31:02'),(848,'chemistry','197.211.61.137',101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:08:07','2019-01-11 23:30:04'),(849,'irk','197.211.61.137',2640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:30:32','2019-01-12 01:52:58'),(850,'civiledu','197.211.61.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:38:40','2019-01-12 00:01:30'),(851,'crk','197.211.61.137',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 01:59:32','2019-01-12 02:01:42'),(852,'chemistry','154.113.86.220',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 12:01:05','2019-01-12 12:05:52'),(853,'chemistry','197.210.55.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:02','2019-01-12 13:17:02'),(854,'chemistry','197.210.54.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:27','2019-01-12 13:17:35'),(855,'chemistry','197.210.54.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:18:25','2019-01-12 13:18:25'),(856,'english','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(857,'mathematics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(858,'commerce','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(859,'biology','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(860,'physics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(861,'irk','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(862,'insurance','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(863,'english','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(864,'biology','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(865,'physics','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(866,'government','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(867,'irk','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(868,'civiledu','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(869,'insurance','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(870,'chemistry','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(871,'englishlit','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(872,'history','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(873,'english','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(874,'mathematics','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(875,'biology','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(876,'geography','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(877,'irk','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(878,'insurance','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(879,'history','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(880,'english','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:04:50','2019-01-12 20:04:50'),(881,'chemistry','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:05:26','2019-01-12 20:05:27'),(882,'irk','197.210.47.86',180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:21:42','2019-01-12 20:26:58'),(883,'insurance','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:27:49','2019-01-12 20:27:49'),(884,'mathematics','197.210.47.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:36:53','2019-01-12 20:39:06'),(885,'chemistry','154.120.102.146',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 00:32:56','2019-01-13 00:33:43'),(886,'english','197.210.54.214',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:56:19'),(887,'english','197.210.54.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:02:41'),(888,'mathematics','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:09:53','2019-01-13 08:09:53'),(889,'mathematics','197.210.55.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:10:36','2019-01-13 08:10:36'),(890,'english','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:51:48','2019-01-13 08:51:48'),(891,'english','197.210.55.13',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:59:29','2019-01-13 08:59:29'),(892,'chemistry','197.210.44.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:00:31','2019-01-13 11:00:31'),(893,'english','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(894,'commerce','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(895,'biology','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(896,'chemistry','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(897,'englishlit','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(898,'government','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(899,'history','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(900,'english','197.210.226.45',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 14:49:00','2019-01-13 14:49:00'),(901,'physics','197.210.227.184',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(902,'physics','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(903,'english','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:59:10','2019-01-13 15:59:10'),(904,'english','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:02:36','2019-01-13 16:02:36'),(905,'biology','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:05:26','2019-01-13 16:05:26'),(906,'biology','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:10:47','2019-01-13 16:12:44'),(907,'physics','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:39:55','2019-01-13 16:39:55'),(908,'economics','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:33:11','2019-01-13 17:41:35'),(909,'mathematics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(910,'english','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(911,'accounting','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(912,'physics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(913,'chemistry','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(914,'englishlit','54.87.49.142',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(915,'crk','54.87.49.142',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(916,'government','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(917,'geography','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(918,'economics','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(919,'commerce','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(920,'civiledu','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(921,'currentaffairs','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(922,'history','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(923,'english','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(924,'commerce','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(925,'physics','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(926,'englishlit','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(927,'geography','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(928,'insurance','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(929,'currentaffairs','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(930,'mathematics','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(931,'accounting','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(932,'crk','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(933,'mathematics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(934,'commerce','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(935,'government','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(936,'chemistry','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(937,'crk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(938,'englishlit','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(939,'economics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(940,'irk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(941,'geography','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(942,'insurance','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(943,'civiledu','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(944,'currentaffairs','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(945,'chemistry','41.58.81.61',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 06:35:26','2019-01-14 11:20:24'),(946,'chemistry','67.222.154.247',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:40:10','2019-01-14 07:40:10'),(947,'mathematics','41.58.182.193',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:50:27','2019-01-14 15:09:22'),(948,'commerce','41.58.182.193',2080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 09:57:28','2019-01-14 13:27:13'),(949,'chemistry','154.120.102.252',854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:00:36','2019-01-14 10:20:54'),(950,'accounting','41.58.182.193',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:01:42','2019-01-14 13:14:55'),(951,'commerce','197.211.61.136',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:38:39','2019-01-14 10:38:59'),(952,'biology','41.58.81.61',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:18:50','2019-01-14 11:19:07'),(953,'chemistry','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:24:11','2019-01-14 11:24:11'),(954,'english','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:25:28','2019-01-14 11:25:28'),(955,'english','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(956,'commerce','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(957,'accounting','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(958,'government','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(959,'crk','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(960,'civiledu','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(961,'insurance','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(962,'chemistry','73.142.154.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:37:12','2019-01-14 11:37:12'),(963,'chemistry','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:10:52','2019-01-14 14:26:38'),(964,'geography','154.118.29.188',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:50:28','2019-01-14 14:27:52'),(965,'history','154.118.29.188',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:23:24'),(966,'economics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:27:38'),(967,'insurance','154.118.29.188',95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:24:14'),(968,'english','154.118.29.188',71,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:24','2019-01-14 14:25:44'),(969,'crk','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:33','2019-01-14 14:23:40'),(970,'englishlit','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:39','2019-01-14 14:27:06'),(971,'biology','154.118.29.188',77,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:19','2019-01-14 14:25:59'),(972,'accounting','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:21','2019-01-14 14:26:39'),(973,'mathematics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:22','2019-01-14 14:25:10'),(974,'physics','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:27','2019-01-14 14:27:00'),(975,'currentaffairs','154.118.29.188',109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:29','2019-01-14 14:24:12'),(976,'commerce','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:24:22'),(977,'irk','154.118.29.188',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:27:24'),(978,'civiledu','154.118.29.188',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:39','2019-01-14 14:27:37'),(979,'government','154.118.29.188',112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:45','2019-01-14 14:27:52'),(980,'english','105.112.26.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:16:02','2019-01-14 13:16:02'),(981,'physics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:23:47','2019-01-14 13:23:47'),(982,'chemistry','102.176.244.209',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:27:15','2019-01-14 13:27:15'),(983,'englishlit','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:28:42','2019-01-14 13:28:42'),(984,'chemistry','3.82.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:46'),(985,'chemistry','54.221.199.147',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:47'),(986,'english','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:18:34'),(987,'mathematics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(988,'government','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(989,'crk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(990,'economics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(991,'irk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(992,'civiledu','54.83.84.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(993,'insurance','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:41'),(994,'geography','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:09'),(995,'economics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:58','2019-01-14 14:35:25'),(996,'civiledu','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:04','2019-01-14 14:37:40'),(997,'chemistry','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:12','2019-01-14 14:37:32'),(998,'irk','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:34','2019-01-14 14:37:32'),(999,'mathematics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:38','2019-01-14 14:34:17'),(1000,'currentaffairs','41.217.124.252',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:52','2019-01-14 14:36:53'),(1001,'crk','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:59','2019-01-14 14:33:56'),(1002,'physics','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:04','2019-01-14 14:34:57'),(1003,'english','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:10','2019-01-14 14:36:11'),(1004,'accounting','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:16','2019-01-14 14:37:41'),(1005,'commerce','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:24','2019-01-14 14:36:54'),(1006,'government','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:33:56','2019-01-14 14:35:57'),(1007,'englishlit','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:34:57','2019-01-14 14:36:30'),(1008,'accounting','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1009,'physics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1010,'chemistry','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1011,'currentaffairs','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1012,'history','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1013,'biology','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:25','2019-01-14 14:37:26'),(1014,'history','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:36:21','2019-01-14 14:37:39'),(1015,'mathematics','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:40:53','2019-01-14 15:01:48'),(1016,'insurance','154.120.104.84',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:10','2019-01-14 14:59:05'),(1017,'history','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:40','2019-01-14 14:58:06'),(1018,'government','154.120.104.84',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:00:27'),(1019,'currentaffairs','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:37'),(1020,'economics','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:20'),(1021,'civiledu','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:51','2019-01-14 14:59:48'),(1022,'biology','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:58','2019-01-14 15:01:49'),(1023,'chemistry','154.120.104.84',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:04','2019-01-14 15:01:09'),(1024,'englishlit','154.120.104.84',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:05','2019-01-14 15:01:56'),(1025,'commerce','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:07','2019-01-14 15:01:04'),(1026,'crk','154.120.104.84',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1027,'geography','154.120.104.84',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 14:59:41'),(1028,'english','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1029,'irk','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:44:31','2019-01-14 15:01:38'),(1030,'physics','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:46:00','2019-01-14 15:00:40'),(1031,'accounting','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:48:21','2019-01-14 15:01:46'),(1032,'crk','54.224.217.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 15:45:45','2019-01-14 15:45:45'),(1033,'commerce','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:22:40','2019-01-14 16:22:40'),(1034,'history','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:24:24','2019-01-14 16:24:24'),(1035,'chemistry','168.253.115.37',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:46:30','2019-01-14 16:46:30'),(1036,'chemistry','197.242.101.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 17:00:07','2019-01-14 17:00:08'),(1037,'chemistry','105.112.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:34:19','2019-01-14 18:34:19'),(1038,'english','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:33','2019-01-14 18:52:34'),(1039,'chemistry','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:40','2019-01-14 18:52:40'),(1040,'mathematics','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:00','2019-01-14 18:53:01'),(1041,'biology','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:10','2019-01-14 18:53:11'),(1042,'english','218.94.63.46',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1043,'english','218.94.63.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:03'),(1044,'economics','218.94.63.46',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1045,'english','197.211.61.152',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 03:35:57','2019-01-15 03:36:17'),(1046,'chemistry','154.118.16.190',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:40:00'),(1047,'chemistry','154.118.16.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:39:18'),(1048,'chemistry','105.112.37.149',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:48:36','2019-01-15 10:57:07'),(1049,'economics','105.112.37.149',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:50:17','2019-01-15 15:03:40'),(1050,'commerce','41.222.43.114',164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:59:58','2019-01-15 14:58:39'),(1051,'currentaffairs','41.222.43.114',176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:04','2019-01-15 14:59:14'),(1052,'accounting','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:13','2019-01-15 14:57:38'),(1053,'history','41.222.43.114',156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:17','2019-01-15 14:58:14'),(1054,'crk','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:27','2019-01-15 14:56:43'),(1055,'irk','41.222.43.114',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:33','2019-01-15 14:59:08'),(1056,'economics','41.222.43.114',171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:38','2019-01-15 14:57:48'),(1057,'mathematics','41.222.43.114',147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:48','2019-01-15 14:58:28'),(1058,'physics','41.222.43.114',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:58','2019-01-15 14:56:23'),(1059,'civiledu','41.222.43.114',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:03','2019-01-15 14:58:33'),(1060,'english','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:19','2019-01-15 14:58:49'),(1061,'insurance','41.222.43.114',178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:33','2019-01-15 14:59:03'),(1062,'government','41.222.43.114',170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:48','2019-01-15 14:58:58'),(1063,'chemistry','41.222.43.114',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:58','2019-01-15 14:58:44'),(1064,'geography','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:04','2019-01-15 14:53:49'),(1065,'biology','41.222.43.114',149,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:13','2019-01-15 14:55:33'),(1066,'englishlit','41.222.43.114',166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:03:14','2019-01-15 14:58:08'),(1067,'chemistry','197.210.45.97',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:04:32','2019-01-15 11:04:46'),(1068,'economics','197.210.45.97',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:15:28','2019-01-15 11:40:03'),(1069,'biology','197.210.45.97',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:17:50','2019-01-15 11:18:29'),(1070,'chemistry','169.159.108.237',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:25:31','2019-01-15 11:25:31'),(1071,'chemistry','129.18.141.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:50:09','2019-01-15 11:50:09'),(1072,'english','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:29','2019-01-15 12:33:29'),(1073,'mathematics','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:44','2019-01-15 12:33:45'),(1074,'chemistry','154.117.120.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:34:24','2019-01-15 12:34:24'),(1075,'englishlit','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:46','2019-01-15 13:57:08'),(1076,'crk','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:47','2019-01-15 13:56:49'),(1077,'accounting','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:48','2019-01-15 13:57:48'),(1078,'history','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:58','2019-01-15 13:56:58'),(1079,'mathematics','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:03','2019-01-15 13:57:03'),(1080,'economics','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:13','2019-01-15 13:57:28'),(1081,'geography','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:18','2019-01-15 13:57:18'),(1082,'chemistry','41.184.122.84',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-15 13:57:23','2019-11-12 12:30:51'),(1083,'biology','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:33','2019-01-15 13:57:53'),(1084,'insurance','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:38','2019-01-15 13:58:43'),(1085,'civiledu','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:43','2019-01-15 13:58:53'),(1086,'irk','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:58','2019-01-15 13:57:58'),(1087,'physics','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:03','2019-01-15 13:58:48'),(1088,'currentaffairs','41.184.122.84',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:13','2019-01-15 13:58:38'),(1089,'commerce','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:33','2019-01-15 13:58:33'),(1090,'english','41.217.112.165',595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:13:18','2019-01-15 18:35:09'),(1091,'mathematics','41.217.112.165',682,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:37:42','2019-01-15 20:35:48'),(1092,'mathematics','154.118.11.179',218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:09:53','2019-01-15 21:33:28'),(1093,'mathematics','105.112.19.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:11:19','2019-01-15 20:11:19'),(1094,'chemistry','154.118.11.179',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:00:39','2019-01-15 21:00:39'),(1095,'english','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1096,'commerce','54.211.194.179',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1097,'biology','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1098,'chemistry','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1099,'accounting','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1100,'physics','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1101,'englishlit','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1102,'geography','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1103,'government','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1104,'civiledu','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1105,'currentaffairs','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1106,'crk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1107,'history','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1108,'economics','54.211.194.179',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1109,'irk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1110,'english','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1111,'mathematics','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1112,'commerce','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1113,'biology','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1114,'englishlit','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1115,'government','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1116,'history','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1117,'accounting','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1118,'crk','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1119,'economics','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1120,'civiledu','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1121,'insurance','54.90.226.10',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1122,'chemistry','105.112.18.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:40:38','2019-01-16 06:40:39'),(1123,'chemistry','105.112.26.11',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:57:01','2019-01-16 06:57:01'),(1124,'english','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:11:18','2019-01-16 08:11:18'),(1125,'economics','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:12:44','2019-01-16 08:12:44'),(1126,'government','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:37:13','2019-01-16 08:37:13'),(1127,'commerce','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1128,'accounting','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1129,'physics','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1130,'geography','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1131,'civiledu','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1132,'insurance','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1133,'history','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1134,'english','54.235.31.132',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 10:26:39','2019-01-16 10:26:39'),(1135,'government','54.90.239.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:30:56','2019-01-16 12:30:56'),(1136,'economics','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:34:56','2019-01-16 12:34:57'),(1137,'insurance','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:48:13','2019-01-16 13:48:13'),(1138,'civiledu','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:55:55','2019-01-16 13:55:55'),(1139,'government','54.226.242.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 15:41:22','2019-01-16 15:41:22'),(1140,'economics','197.210.64.25',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:45:11','2019-01-16 16:54:28'),(1141,'chemistry','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:58:41','2019-01-16 16:58:53'),(1142,'mathematics','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:59:05','2019-01-16 17:07:06'),(1143,'mathematics','41.138.87.73',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 17:49:50','2019-01-16 17:53:24'),(1144,'chemistry','173.225.16.67',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 18:43:39','2019-01-19 04:12:25'),(1145,'commerce','34.207.210.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 19:50:10','2019-01-16 19:50:29'),(1146,'biology','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 20:40:19','2019-01-16 20:40:19'),(1147,'chemistry','41.138.81.104',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:39:14','2019-01-16 21:39:58'),(1148,'history','41.138.81.104',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:40:15','2019-01-16 21:41:27'),(1149,'accounting','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 22:44:31','2019-01-16 22:44:31'),(1150,'mathematics','3.83.38.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 04:39:27','2019-01-17 04:39:27'),(1151,'english','102.176.244.209',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 13:44:54','2019-01-21 11:05:17'),(1152,'chemistry','197.255.52.86',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:42:55','2019-01-17 14:43:15'),(1153,'accounting','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1154,'physics','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1155,'chemistry','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1156,'englishlit','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1157,'government','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1158,'geography','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1159,'insurance','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1160,'biology','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1161,'crk','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1162,'civiledu','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1163,'chemistry','68.13.248.93',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 02:01:44','2019-01-18 02:02:05'),(1164,'chemistry','72.183.76.77',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 03:28:05','2019-01-18 03:29:19'),(1165,'chemistry','197.211.61.152',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 07:10:31','2019-01-18 07:12:13'),(1166,'biology','54.162.164.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 09:21:43','2019-01-18 09:21:43'),(1167,'chemistry','105.112.112.103',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:18:21','2019-01-18 10:19:31'),(1168,'chemistry','197.210.221.158',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:20:34','2019-01-18 10:21:00'),(1169,'chemistry','165.73.192.11',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:30:28','2019-01-18 10:30:38'),(1170,'chemistry','197.210.47.116',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:39:50','2020-04-21 15:26:10'),(1171,'history','66.249.93.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 11:29:27','2019-01-18 11:29:27'),(1172,'chemistry','154.118.20.163',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:12:36','2019-01-18 12:12:36'),(1173,'chemistry','129.56.80.136',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:13:30','2019-01-18 12:14:17'),(1174,'mathematics','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:14:30','2019-01-18 12:14:30'),(1175,'english','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:15:08','2019-01-18 12:15:09'),(1176,'history','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:34:02','2019-01-18 13:34:02'),(1177,'mathematics','41.203.72.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:35:18','2019-01-18 13:35:19'),(1178,'english','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:46:36','2019-01-18 13:46:36'),(1179,'chemistry','41.191.104.66',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:54:05','2019-01-18 13:54:05'),(1180,'chemistry','72.182.201.96',96,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 14:53:27','2019-01-18 14:54:54'),(1181,'chemistry','66.249.73.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:35:04','2019-01-18 16:35:04'),(1182,'commerce','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1183,'physics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1184,'chemistry','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1185,'englishlit','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1186,'geography','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1187,'crk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1188,'irk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:38'),(1189,'currentaffairs','54.211.126.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1190,'civiledu','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1191,'history','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1192,'insurance','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1193,'biology','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:40:42'),(1194,'government','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:38'),(1195,'economics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:47'),(1196,'english','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1197,'accounting','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1198,'mathematics','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:40:42','2019-01-18 16:40:42'),(1199,'crk','54.161.130.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 17:33:33','2019-01-18 17:33:33'),(1200,'chemistry','102.134.114.214',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 20:59:05','2019-01-18 20:59:42'),(1201,'government','54.227.72.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 22:16:13','2019-01-18 22:16:13'),(1202,'government','54.91.120.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 01:06:53','2019-01-19 01:06:53'),(1203,'accounting','54.227.122.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 04:33:38','2019-01-19 04:33:38'),(1204,'commerce','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1205,'physics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1206,'government','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1207,'geography','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1208,'economics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1209,'irk','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1210,'civiledu','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1211,'crk','54.221.144.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:40:28','2019-01-19 07:40:28'),(1212,'chemistry','129.56.27.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 09:08:03','2019-01-19 09:08:03'),(1213,'chemistry','142.120.136.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 10:20:14','2019-01-19 10:20:14'),(1214,'chemistry','178.5.57.197',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 11:52:36','2019-01-19 11:54:27'),(1215,'chemistry','163.172.103.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 12:08:33','2019-01-19 12:08:33'),(1216,'chemistry','41.190.2.147',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:15:10','2019-01-19 13:19:19'),(1217,'chemistry','105.176.145.237',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:26:28','2019-01-19 13:31:47'),(1218,'biology','105.176.145.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:33:44','2019-01-19 13:33:44'),(1219,'english','197.211.61.157',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 17:04:45','2019-01-19 17:04:45'),(1220,'english','54.162.8.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:40:29','2019-01-19 20:40:29'),(1221,'mathematics','51.15.164.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:50:22','2019-01-19 20:50:22'),(1222,'history','66.249.88.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:16:25','2019-01-20 07:16:25'),(1223,'history','66.249.93.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:27:21','2019-01-20 07:27:21'),(1224,'chemistry','197.210.29.161',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 11:59:53','2019-01-20 12:02:04'),(1225,'english','54.87.9.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 15:47:38','2019-01-20 15:47:38'),(1226,'chemistry','66.249.66.148',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 17:41:21','2019-01-20 17:44:12'),(1227,'chemistry','46.229.168.129',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-20 18:19:28','2020-03-16 03:20:32'),(1228,'english','54.205.83.37',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1229,'mathematics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1230,'government','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1231,'accounting','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1232,'geography','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1233,'crk','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1234,'economics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1235,'economics','54.205.83.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1236,'civiledu','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1237,'insurance','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1238,'currentaffairs','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1239,'history','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1240,'history','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:05:55','2019-01-21 05:05:55'),(1241,'mathematics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1242,'commerce','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1243,'physics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1244,'englishlit','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1245,'geography','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1246,'economics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1247,'currentaffairs','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1248,'english','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1249,'biology','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1250,'chemistry','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1251,'crk','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1252,'history','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1253,'chemistry','41.190.3.176',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 08:43:52','2019-01-21 08:49:54'),(1254,'chemistry','41.191.104.112',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 13:29:06','2019-02-11 14:20:17'),(1255,'chemistry','197.210.226.53',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:14:04','2019-01-21 17:18:25'),(1256,'chemistry','197.210.226.64',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:19:47','2019-01-21 17:49:54'),(1257,'chemistry','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:21:23','2019-01-21 17:21:23'),(1258,'mathematics','197.210.227.233',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:29:23','2019-01-21 17:29:23'),(1259,'mathematics','197.210.226.64',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:48:04','2019-05-25 14:23:44'),(1260,'chemistry','197.210.52.70',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 18:43:18','2019-01-26 10:26:21'),(1261,'mathematics','105.112.23.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 23:50:11','2019-01-21 23:50:11'),(1262,'chemistry','41.191.104.126',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 12:07:26','2019-01-22 12:13:11'),(1263,'chemistry','105.112.27.156',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:30:44','2019-01-22 13:33:01'),(1264,'english','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:36','2019-01-22 13:33:36'),(1265,'commerce','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:56','2019-01-22 13:33:56'),(1266,'mathematics','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:34:19','2019-01-22 13:34:19'),(1267,'english','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1268,'accounting','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1269,'government','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1270,'civiledu','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1271,'insurance','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1272,'currentaffairs','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1273,'history','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1274,'chemistry','41.191.107.133',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:40:08','2019-01-22 14:40:08'),(1275,'chemistry','41.191.107.216',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 15:11:15','2019-04-12 06:41:44'),(1276,'chemistry','41.191.107.208',154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 16:28:30','2019-01-22 16:33:44'),(1277,'biology','54.147.167.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:04:47','2019-01-22 18:04:47'),(1278,'insurance','54.81.167.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:45:46','2019-01-22 18:45:46'),(1279,'biology','197.211.61.167',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 19:57:02','2019-01-22 19:57:02'),(1280,'commerce','3.81.140.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 20:21:37','2019-01-22 20:21:37'),(1281,'chemistry','41.191.104.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:21:52','2019-01-22 21:21:52'),(1282,'chemistry','41.191.104.124',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:28:37','2019-01-27 21:27:34'),(1283,'englishlit','54.172.206.195',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:57:00','2019-01-22 21:57:00'),(1284,'chemistry','197.211.60.92',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 02:17:56','2019-01-23 02:20:31'),(1285,'chemistry','66.249.93.42',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 04:09:58','2019-02-14 14:08:04'),(1286,'chemistry','41.191.107.155',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 10:14:34','2019-01-23 10:14:45'),(1287,'chemistry','41.191.104.86',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 12:43:27','2019-01-23 12:43:27'),(1288,'chemistry','41.191.107.198',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:01:14','2019-01-23 13:08:26'),(1289,'chemistry','41.191.104.249',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:08:39','2019-01-23 13:15:36'),(1290,'mathematics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1291,'english','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1292,'biology','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1293,'commerce','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1294,'physics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1295,'englishlit','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1296,'chemistry','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1297,'government','54.162.153.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1298,'irk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1299,'crk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1300,'geography','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1301,'civiledu','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1302,'currentaffairs','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1303,'economics','212.100.95.210',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:14:58','2019-01-24 08:14:59'),(1304,'chemistry','66.249.93.44',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:24:17','2019-02-04 14:03:36'),(1305,'english','41.191.107.227',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:51:56','2019-01-24 09:52:02'),(1306,'chemistry','41.191.107.227',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 09:32:48','2019-01-24 09:34:19'),(1307,'english','41.191.107.206',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 10:03:24','2019-04-18 16:27:25'),(1308,'english','41.217.124.194',937,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 12:30:40','2019-01-24 13:11:10'),(1309,'mathematics','41.217.124.194',363,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 13:22:56','2019-01-24 13:37:40'),(1310,'commerce','54.91.221.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:05:23','2019-01-24 14:05:23'),(1311,'english','41.191.107.138',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:21:11','2019-04-14 17:04:58'),(1312,'chemistry','41.191.107.138',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:33:41','2019-01-27 21:20:19'),(1313,'commerce','41.217.124.194',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:39:06','2019-01-24 14:39:31'),(1314,'english','41.191.104.91',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:49:01','2019-04-15 21:32:14'),(1315,'mathematics','41.191.104.91',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 15:18:28','2019-04-15 21:20:52'),(1316,'history','3.82.242.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 00:01:01','2019-01-25 00:01:01'),(1317,'englishlit','54.82.44.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:01:01','2019-01-25 04:01:01'),(1318,'chemistry','105.112.96.148',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:45:44','2019-01-25 04:45:44'),(1319,'chemistry','41.190.2.209',15,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 05:44:24','2019-09-18 16:51:41'),(1320,'chemistry','197.210.8.9',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 06:10:55','2019-01-25 08:35:26'),(1321,'history','54.161.164.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 08:01:07','2019-01-25 08:01:07'),(1322,'chemistry','197.210.60.170',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:01:12','2019-01-25 11:01:12'),(1323,'english','197.210.60.170',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:04:07','2019-01-25 11:07:03'),(1324,'chemistry','41.190.30.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:53:49','2019-01-25 11:53:49'),(1325,'biology','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:35:12','2019-01-25 14:35:38'),(1326,'englishlit','41.190.31.164',116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:41:44','2019-01-25 14:56:06'),(1327,'chemistry','197.210.52.237',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:07','2019-01-25 14:51:53'),(1328,'chemistry','197.210.52.239',162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:30','2019-01-25 14:52:22'),(1329,'chemistry','197.210.52.138',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:52:01','2019-01-25 14:52:32'),(1330,'government','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:53:59','2019-01-25 14:53:59'),(1331,'chemistry','197.210.44.60',2108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:58:41','2019-01-25 16:28:06'),(1332,'commerce','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:08:21','2019-01-25 15:08:21'),(1333,'accounting','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:09:36','2019-01-25 15:10:08'),(1334,'crk','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:11:50','2019-01-25 15:12:13'),(1335,'economics','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:16:03','2019-01-25 15:16:03'),(1336,'chemistry','185.118.165.15',126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:21:37','2019-01-25 15:27:32'),(1337,'chemistry','105.112.38.7',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:49:44','2019-01-25 20:14:22'),(1338,'mathematics','105.112.38.7',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:55:45','2019-01-25 20:02:25'),(1339,'english','105.112.38.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:12:22','2019-01-25 20:12:23'),(1340,'chemistry','105.112.98.242',1160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:23:43','2019-01-25 22:04:17'),(1341,'chemistry','197.210.62.66',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 22:14:16','2019-04-19 16:33:37'),(1342,'chemistry','197.210.226.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:16:32','2019-01-26 10:16:32'),(1343,'chemistry','197.210.52.4',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:20:35','2019-01-26 10:38:06'),(1344,'chemistry','197.210.45.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:38:39','2019-01-26 10:40:16'),(1345,'chemistry','197.210.227.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:58:13','2019-01-26 10:58:13'),(1346,'mathematics','197.210.227.236',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:08:55','2019-01-26 11:32:01'),(1347,'mathematics','197.210.227.193',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:10:35','2019-01-26 11:45:54'),(1348,'mathematics','197.210.226.194',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:17:53','2019-01-26 11:44:49'),(1349,'mathematics','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:47:35','2019-01-26 11:51:16'),(1350,'mathematics','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:48:03','2019-01-26 11:48:03'),(1351,'mathematics','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:50:09','2019-01-26 11:50:10'),(1352,'mathematics','54.161.51.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:52:23','2019-01-26 11:52:23'),(1353,'english','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:34:52','2019-01-26 12:34:53'),(1354,'english','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:39:32','2019-01-26 12:39:33'),(1355,'english','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:41:59','2019-01-26 12:47:45'),(1356,'english','197.210.8.2',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:13:52','2019-01-26 13:40:15'),(1357,'english','197.210.28.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:55:37','2019-01-26 13:58:04'),(1358,'english','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:08:24','2019-01-26 14:08:24'),(1359,'english','197.210.52.84',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:09:01','2019-01-26 14:15:02'),(1360,'english','197.210.52.208',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:10:08','2019-01-26 14:11:18'),(1361,'chemistry','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:16:42','2019-01-26 14:16:43'),(1362,'chemistry','197.210.52.208',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:20:31','2019-01-26 14:50:18'),(1363,'chemistry','197.210.52.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:45:38','2019-01-26 14:45:39'),(1364,'chemistry','197.210.47.74',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:53:11','2019-01-26 15:07:24'),(1365,'chemistry','105.112.98.2',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:41:26','2019-01-26 16:41:29'),(1366,'biology','41.203.78.47',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:56:45','2019-01-26 16:56:45'),(1367,'chemistry','105.112.98.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 09:04:09','2019-01-27 09:04:09'),(1368,'chemistry','105.112.99.102',833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:41:18','2019-01-27 19:46:51'),(1369,'biology','105.112.99.102',778,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:37','2019-01-27 19:46:51'),(1370,'physics','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1371,'economics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1372,'commerce','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:34'),(1373,'crk','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:37'),(1374,'mathematics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:44'),(1375,'english','105.112.99.102',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:46:51'),(1376,'geography','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:47:37'),(1377,'government','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:43','2019-01-27 19:47:37'),(1378,'accounting','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:45','2019-01-27 19:47:40'),(1379,'history','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:46','2019-01-27 19:43:54'),(1380,'englishlit','105.112.99.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:47:38'),(1381,'currentaffairs','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:48:50'),(1382,'civiledu','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:14:14','2019-01-27 19:47:37'),(1383,'mathematics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1384,'chemistry','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1385,'biology','105.112.98.183',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1386,'physics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1387,'english','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1388,'economics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1389,'commerce','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1390,'crk','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1391,'geography','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1392,'civiledu','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1393,'government','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1394,'englishlit','105.112.98.183',518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1395,'accounting','105.112.98.183',519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1396,'currentaffairs','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1397,'history','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:43','2019-01-27 21:21:57'),(1398,'chemistry','41.191.104.92',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:53:33','2019-01-27 20:54:45'),(1399,'biology','41.191.104.92',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:55:04','2019-01-27 20:55:04'),(1400,'chemistry','41.191.104.121',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:01:54','2019-02-06 15:11:52'),(1401,'mathematics','41.191.107.223',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:14:36','2019-04-16 11:16:36'),(1402,'mathematics','41.191.107.138',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:19:15','2019-04-13 21:33:36'),(1403,'physics','41.191.107.138',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:20:04','2019-01-27 21:23:56'),(1404,'mathematics','41.191.104.124',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:26:45','2019-01-27 21:34:02'),(1405,'physics','41.191.104.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:27:11','2019-01-27 21:27:24'),(1406,'biology','41.191.104.74',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:07:34','2019-01-27 22:12:08'),(1407,'biology','41.191.107.130',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:13:49','2019-01-27 22:13:59'),(1408,'biology','41.191.104.244',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:46:09','2019-01-27 22:46:50'),(1409,'biology','41.191.107.128',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:56:46','2019-01-27 23:56:03'),(1410,'chemistry','41.191.107.128',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:55:10','2019-01-27 23:55:51'),(1411,'economics','41.191.107.128',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:56:39','2019-01-27 23:56:41'),(1412,'geography','41.191.107.128',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:57:14','2019-01-28 15:11:27'),(1413,'biology','41.191.104.89',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:59:44'),(1414,'biology','41.191.104.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:51:19'),(1415,'biology','41.191.104.121',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:55:36','2019-01-28 00:56:31'),(1416,'chemistry','41.191.104.89',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:58:40','2019-01-28 09:07:28'),(1417,'biology','41.191.104.85',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:08:49','2019-01-28 01:15:07'),(1418,'biology','41.191.107.221',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:27:22','2019-01-28 01:29:30'),(1419,'biology','41.191.107.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:33:26','2019-01-28 01:33:26'),(1420,'biology','41.191.104.235',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:48:38','2019-01-28 01:48:38'),(1421,'mathematics','41.191.107.235',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:55:16','2019-01-28 09:02:13'),(1422,'chemistry','41.191.107.235',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:56:12','2019-01-28 08:59:29'),(1423,'mathematics','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:03:14','2019-01-28 09:03:14'),(1424,'physics','41.191.107.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:04:58','2019-01-28 09:04:58'),(1425,'mathematics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:50','2019-01-28 09:08:18'),(1426,'physics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:54','2019-01-28 09:08:18'),(1427,'geography','41.191.104.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:07:07','2019-01-28 09:08:12'),(1428,'chemistry','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:36:06','2019-01-28 10:36:06'),(1429,'english','41.191.107.141',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:49:24','2019-01-28 10:51:33'),(1430,'chemistry','46.229.168.149',23,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-28 11:21:50','2019-12-12 15:32:00'),(1431,'english','3.87.136.203',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:28:02','2019-01-28 14:24:49'),(1432,'englishlit','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:41:29','2019-01-28 11:41:29'),(1433,'mathematics','41.191.107.194',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:14','2019-01-28 12:06:41'),(1434,'chemistry','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:20','2019-01-28 12:01:32'),(1435,'physics','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:50','2019-01-28 12:03:12'),(1436,'geography','41.191.107.194',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:52:52','2019-01-28 12:03:18'),(1437,'chemistry','41.191.104.251',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:08:23','2019-01-28 12:09:42'),(1438,'physics','41.191.107.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:22:50','2019-01-28 12:22:50'),(1439,'physics','41.191.104.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:14','2019-01-28 12:29:14'),(1440,'chemistry','41.191.104.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:28','2019-01-28 12:32:08'),(1441,'mathematics','41.191.104.83',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:30:25','2019-01-28 12:34:16'),(1442,'mathematics','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:35:42','2019-01-28 12:56:25'),(1443,'geography','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:40:50','2019-01-28 12:52:24'),(1444,'chemistry','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:02','2019-01-28 13:03:30'),(1445,'physics','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:08','2019-01-28 12:53:41'),(1446,'geography','41.191.104.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:04:49','2019-01-28 13:17:51'),(1447,'mathematics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:08:42','2019-04-13 07:20:19'),(1448,'physics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:12:38','2019-01-28 13:14:17'),(1449,'chemistry','41.191.104.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:16:02','2019-01-28 13:16:02'),(1450,'geography','41.191.104.104',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:24','2019-01-28 13:30:58'),(1451,'chemistry','41.191.104.104',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:32','2019-01-28 13:28:22'),(1452,'physics','41.191.104.104',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:20:17','2019-01-28 13:22:40'),(1453,'chemistry','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:33:01','2019-01-28 13:35:54'),(1454,'physics','41.191.107.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:35:11','2019-01-28 13:40:07'),(1455,'mathematics','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:36:00','2019-01-28 13:41:19'),(1456,'mathematics','41.191.107.42',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:39','2019-01-28 13:53:09'),(1457,'chemistry','41.191.107.42',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:55','2019-02-06 14:53:26'),(1458,'geography','41.191.107.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:43:17','2019-01-28 13:43:17'),(1459,'physics','41.191.107.139',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:57:59','2019-01-28 14:02:46'),(1460,'chemistry','41.191.107.139',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:06','2019-01-28 14:04:13'),(1461,'mathematics','41.191.107.139',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:21','2019-01-28 14:04:17'),(1462,'geography','41.191.107.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:01:42','2019-01-28 14:01:42'),(1463,'mathematics','41.191.104.126',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:04:59','2019-04-13 16:07:19'),(1464,'physics','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:05:50','2019-01-28 14:06:23'),(1465,'biology','3.87.136.203',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:26:19','2019-01-28 14:28:08'),(1466,'mathematics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:18','2019-01-28 14:27:18'),(1467,'physics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:22','2019-01-28 14:27:22'),(1468,'chemistry','41.191.107.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:30:58','2019-01-28 14:30:58'),(1469,'physics','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:45','2019-01-28 14:40:48'),(1470,'chemistry','41.191.107.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:52','2019-01-28 14:40:52'),(1471,'chemistry','41.191.107.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:53:59','2019-01-28 14:53:59'),(1472,'mathematics','41.191.104.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:04','2019-01-28 15:06:48'),(1473,'physics','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:27','2019-01-28 15:00:27'),(1474,'chemistry','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:33','2019-01-28 15:00:33'),(1475,'geography','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:38','2019-01-28 15:00:38'),(1476,'mathematics','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:03:29','2019-01-28 15:08:10'),(1477,'physics','105.176.90.140',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:02','2019-01-28 15:18:49'),(1478,'chemistry','105.176.90.140',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:37','2019-01-28 15:04:37'),(1479,'geography','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:52','2019-01-28 15:08:28'),(1480,'mathematics','41.191.107.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:05:29','2019-01-28 15:08:01'),(1481,'physics','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:08:08','2019-01-28 15:08:08'),(1482,'mathematics','41.191.107.128',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:10:31','2019-01-28 15:10:39'),(1483,'physics','41.191.104.241',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:14','2019-01-28 15:28:02'),(1484,'chemistry','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:51','2019-01-28 15:27:55'),(1485,'mathematics','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:51','2019-01-28 15:28:09'),(1486,'geography','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:57','2019-01-28 15:28:35'),(1487,'geography','41.191.104.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:30:25','2019-01-28 15:32:10'),(1488,'mathematics','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:31:56','2019-01-28 15:31:56'),(1489,'physics','41.191.104.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:00','2019-01-28 15:32:07'),(1490,'chemistry','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:04','2019-01-28 15:32:04'),(1491,'physics','41.191.104.121',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:49:37','2019-02-06 14:58:19'),(1492,'geography','41.191.104.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:43','2019-01-28 15:58:43'),(1493,'geography','41.191.104.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:53','2019-01-28 15:58:53'),(1494,'chemistry','197.210.47.34',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 21:35:41','2019-01-28 21:40:22'),(1495,'chemistry','41.203.78.54',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 22:07:08','2019-07-20 14:00:13'),(1496,'chemistry','105.112.28.85',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 02:40:05','2019-01-29 02:40:42'),(1497,'chemistry','41.190.2.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 07:03:46','2019-01-29 07:03:46'),(1498,'chemistry','41.76.82.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 09:57:24','2019-01-29 09:57:24'),(1499,'english','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1500,'mathematics','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1501,'commerce','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1502,'englishlit','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1503,'crk','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1504,'geography','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1505,'insurance','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1506,'biology','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1507,'chemistry','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1508,'economics','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1509,'civiledu','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1510,'chemistry','41.203.78.51',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 13:55:15','2019-01-29 14:10:57'),(1511,'chemistry','154.120.108.55',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:17:52','2019-01-29 14:29:07'),(1512,'chemistry','154.118.21.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:37:44','2019-01-29 14:38:42'),(1513,'chemistry','197.210.28.128',997,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:55:16','2019-01-29 16:55:38'),(1514,'chemistry','197.210.53.210',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:47:02','2019-01-29 18:06:59'),(1515,'chemistry','197.210.52.103',295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:49:25','2019-01-29 18:50:59'),(1516,'chemistry','197.210.53.88',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:56:42','2019-01-29 17:56:42'),(1517,'chemistry','197.210.53.26',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:09:55','2019-01-29 18:22:46'),(1518,'chemistry','197.210.53.74',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:10:35','2019-01-29 18:10:35'),(1519,'chemistry','197.210.52.203',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:16:48','2019-02-06 16:04:53'),(1520,'chemistry','197.210.52.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:35:19','2019-01-29 18:39:12'),(1521,'chemistry','197.210.52.202',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:43:20','2019-02-06 16:09:29'),(1522,'chemistry','197.210.53.106',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:44:33','2019-01-29 18:45:54'),(1523,'chemistry','197.210.53.114',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:19','2019-04-20 15:08:50'),(1524,'chemistry','197.210.52.185',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:40','2019-01-29 18:51:44'),(1525,'chemistry','197.210.52.26',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:51:14','2019-01-29 18:51:36'),(1526,'englishlit','197.211.63.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:31:42','2019-01-29 20:31:42'),(1527,'chemistry','197.210.227.126',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:25','2019-01-29 20:32:25'),(1528,'chemistry','197.210.227.15',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:43','2019-01-29 20:32:43'),(1529,'chemistry','197.210.226.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:01','2019-01-29 20:37:21'),(1530,'chemistry','197.210.227.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:27','2019-01-29 20:36:27'),(1531,'mathematics','41.203.78.49',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:41:06','2019-01-29 20:41:06'),(1532,'crk','41.80.186.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 09:20:34','2019-01-30 09:20:34'),(1533,'biology','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:38','2019-01-30 15:50:53'),(1534,'commerce','54.211.28.234',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1535,'accounting','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1536,'crk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1537,'geography','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1538,'irk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1539,'insurance','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1540,'englishlit','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:56','2019-01-30 15:52:40'),(1541,'history','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:07','2019-01-30 15:51:07'),(1542,'government','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:09','2019-01-30 15:51:09'),(1543,'physics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1544,'economics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1545,'currentaffairs','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:40'),(1546,'english','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1547,'mathematics','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1548,'chemistry','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1549,'englishlit','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:16','2019-01-30 16:51:35'),(1550,'commerce','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:27'),(1551,'biology','54.226.7.228',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:34'),(1552,'geography','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1553,'civiledu','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1554,'currentaffairs','54.226.7.228',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1555,'history','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1556,'government','54.226.7.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1557,'english','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1558,'mathematics','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1559,'chemistry','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1560,'crk','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1561,'chemistry','41.216.173.30',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 16:01:01','2019-01-31 16:03:23'),(1562,'chemistry','45.33.136.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 23:43:59','2019-01-31 23:44:26'),(1563,'chemistry','41.203.78.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:52:42','2019-02-01 07:52:42'),(1564,'chemistry','197.210.53.198',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:55:26','2019-02-01 07:56:02'),(1565,'chemistry','197.210.53.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:57:16','2019-02-01 07:57:16'),(1566,'chemistry','45.33.136.190',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:27:53','2019-02-01 08:31:16'),(1567,'chemistry','197.211.60.139',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:43:16','2019-02-01 08:45:06'),(1568,'mathematics','197.211.60.139',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:45:55','2019-02-01 08:45:55'),(1569,'chemistry','197.210.29.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 09:32:41','2019-02-01 09:32:41'),(1570,'chemistry','105.112.98.24',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-02 22:45:13','2019-02-02 23:25:03'),(1571,'civiledu','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 20:57:22','2019-02-03 20:57:22'),(1572,'currentaffairs','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 21:10:15','2019-02-03 21:10:15'),(1573,'accounting','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1574,'chemistry','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1575,'crk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1576,'geography','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1577,'irk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1578,'insurance','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1579,'currentaffairs','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1580,'chemistry','41.66.199.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:36:31','2019-02-03 23:09:20'),(1581,'biology','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:54:09','2019-02-03 22:54:09'),(1582,'commerce','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 23:10:29','2019-02-03 23:10:29'),(1583,'geography','3.81.102.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 00:57:31','2019-02-04 00:57:31'),(1584,'mathematics','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1585,'commerce','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1586,'chemistry','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1587,'irk','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1588,'civiledu','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1589,'currentaffairs','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1590,'history','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1591,'commerce','54.162.226.75',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 23:35:46','2019-02-04 23:35:46'),(1592,'crk','54.162.82.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:35:33','2019-02-05 05:43:58'),(1593,'accounting','54.162.82.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:50:40','2019-02-05 05:50:40'),(1594,'history','54.90.106.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 07:25:12','2019-02-05 07:25:12'),(1595,'accounting','54.91.82.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 11:33:57','2019-02-05 11:33:57'),(1596,'chemistry','77.88.47.65',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-05 11:57:00','2020-03-07 02:21:05'),(1597,'geography','54.204.118.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 12:42:45','2019-02-05 12:42:45'),(1598,'chemistry','95.216.6.46',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 14:24:43','2019-02-05 14:25:02'),(1599,'geography','54.234.119.237',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 17:21:12','2019-02-05 17:21:12'),(1600,'irk','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 22:54:06','2019-02-05 22:54:06'),(1601,'chemistry','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 23:25:31','2019-02-05 23:25:31'),(1602,'accounting','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1603,'biology','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:23:05'),(1604,'physics','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1605,'chemistry','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1606,'geography','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1607,'economics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1608,'civiledu','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1609,'english','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1610,'mathematics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1611,'englishlit','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:51'),(1612,'government','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1613,'history','54.159.117.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:56','2019-02-06 01:22:56'),(1614,'physics','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:32:08'),(1615,'geography','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1616,'physics','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1617,'mathematics','41.191.104.236',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:50','2019-04-14 05:45:01'),(1618,'chemistry','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:33:26','2019-02-06 10:35:49'),(1619,'chemistry','41.191.107.136',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:04','2019-02-07 10:43:21'),(1620,'mathematics','41.191.107.136',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:11','2019-04-14 16:53:02'),(1621,'geography','41.191.107.136',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:15','2019-02-07 10:13:16'),(1622,'physics','41.191.107.136',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:40:28','2019-02-07 11:01:08'),(1623,'chemistry','41.191.107.212',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:49:30','2019-04-18 18:00:20'),(1624,'physics','41.191.107.212',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:34','2019-04-17 10:11:06'),(1625,'geography','41.191.107.212',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:44','2019-02-06 13:24:41'),(1626,'mathematics','41.191.107.212',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:49','2019-04-17 10:14:28'),(1627,'chemistry','41.191.107.52',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:54:59','2019-02-06 10:55:38'),(1628,'chemistry','41.191.104.115',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 11:10:51','2019-02-06 11:10:51'),(1629,'civiledu','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:13:06','2019-02-06 12:13:06'),(1630,'currentaffairs','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:35:08','2019-02-06 12:35:08'),(1631,'mathematics','41.191.107.220',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:39:15'),(1632,'mathematics','41.191.107.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:38:11'),(1633,'chemistry','41.191.107.220',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:02','2019-02-06 13:44:46'),(1634,'physics','41.191.107.220',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:55','2019-02-06 13:42:33'),(1635,'chemistry','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:03','2019-02-06 13:58:11'),(1636,'geography','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:46','2019-02-06 13:47:46'),(1637,'physics','41.191.104.99',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:51:59','2019-02-06 13:57:37'),(1638,'mathematics','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:56:24','2019-04-13 23:06:19'),(1639,'physics','41.191.107.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 14:43:26','2019-02-06 16:44:44'),(1640,'chemistry','54.221.129.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:09:36','2019-02-06 15:40:30'),(1641,'mathematics','41.191.104.121',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:15:51','2019-02-06 15:15:51'),(1642,'mathematics','41.191.104.217',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:29:45','2019-02-06 15:52:46'),(1643,'mathematics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1644,'biology','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1645,'physics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1646,'government','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1647,'economics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1648,'insurance','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1649,'chemistry','41.191.104.217',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:53:35','2019-02-06 15:55:08'),(1650,'chemistry','197.210.52.163',51,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:59:16','2020-04-12 16:16:23'),(1651,'chemistry','197.210.52.177',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:02:47','2019-02-06 16:09:41'),(1652,'chemistry','197.210.52.125',42,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:03:44','2019-11-29 22:14:03'),(1653,'chemistry','197.210.52.1',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:12','2019-02-06 16:04:36'),(1654,'chemistry','41.191.104.76',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:57','2019-02-06 16:04:57'),(1655,'mathematics','41.191.104.76',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:05:52','2019-04-17 07:41:52'),(1656,'chemistry','197.210.53.23',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:10:28','2020-02-04 09:59:59'),(1657,'chemistry','41.191.104.238',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:21','2019-02-06 16:23:37'),(1658,'mathematics','41.191.104.238',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:53','2019-02-06 17:51:13'),(1659,'geography','41.191.104.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:23:13','2019-02-06 16:23:13'),(1660,'physics','41.191.104.238',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:25:01','2019-02-06 17:52:29'),(1661,'mathematics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:23','2019-02-06 16:32:23'),(1662,'physics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:36','2019-02-06 16:32:36'),(1663,'chemistry','41.191.107.146',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:57:39','2019-02-06 16:57:39'),(1664,'physics','41.191.107.146',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:58:54','2019-02-06 17:00:38'),(1665,'physics','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:48','2019-02-06 17:03:48'),(1666,'geography','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:55','2019-02-06 17:03:55'),(1667,'chemistry','41.191.107.215',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:06:36','2019-03-28 16:12:49'),(1668,'mathematics','41.191.104.67',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:15:33','2019-02-06 17:20:02'),(1669,'chemistry','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:24:42','2019-02-06 17:27:26'),(1670,'physics','41.191.104.211',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:25:40','2019-02-06 17:26:06'),(1671,'mathematics','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:32','2019-04-14 07:05:25'),(1672,'geography','41.191.104.211',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:34','2019-02-06 17:27:34'),(1673,'geography','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:29:31','2019-02-07 13:38:12'),(1674,'physics','41.191.107.38',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:30:12','2019-02-07 16:06:38'),(1675,'mathematics','41.191.107.38',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:35:19','2019-04-13 08:12:17'),(1676,'geography','41.191.107.38',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:36:56','2019-02-07 16:06:34'),(1677,'mathematics','41.191.104.244',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:40:30','2019-04-14 21:51:22'),(1678,'physics','41.191.104.244',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:43:54','2019-02-06 17:46:16'),(1679,'geography','54.145.62.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 18:07:58','2019-02-06 18:07:58'),(1680,'english','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1681,'english','3.81.49.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1682,'mathematics','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1683,'physics','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1684,'commerce','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1685,'chemistry','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1686,'biology','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1687,'government','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1688,'civiledu','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1689,'irk','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1690,'currentaffairs','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1691,'biology','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:52'),(1692,'physics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1693,'government','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:35'),(1694,'geography','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1695,'economics','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1696,'irk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1697,'insurance','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1698,'mathematics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1699,'commerce','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1700,'crk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1701,'currentaffairs','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1702,'history','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:55'),(1703,'englishlit','54.159.238.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:48','2019-02-06 23:58:48'),(1704,'chemistry','129.205.112.31',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 04:25:52','2019-02-09 18:02:32'),(1705,'mathematics','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:08:57','2019-02-07 08:31:49'),(1706,'physics','41.191.107.132',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:24:48','2019-02-07 07:53:26'),(1707,'geography','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:52:40','2019-02-07 08:17:40'),(1708,'chemistry','41.191.107.132',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 08:14:41','2019-02-07 08:18:31'),(1709,'physics','41.191.107.129',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 14:01:28'),(1710,'physics','41.191.107.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 13:59:51'),(1711,'biology','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:01:37','2019-02-07 14:01:37'),(1712,'chemistry','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:03:41','2019-02-07 14:14:08'),(1713,'mathematics','41.191.107.129',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:15:41','2019-02-07 14:17:01'),(1714,'physics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:26:47','2019-02-07 14:47:40'),(1715,'chemistry','197.210.227.51',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:31:34','2019-02-07 14:40:43'),(1716,'physics','41.191.104.213',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:38:05','2019-02-07 14:59:23'),(1717,'chemistry','197.210.227.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:39:16','2019-02-07 14:39:16'),(1718,'chemistry','41.191.104.213',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:41:28','2019-02-07 15:01:58'),(1719,'chemistry','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:42:07','2019-02-07 14:42:07'),(1720,'economics','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:44:11','2019-02-07 14:44:11'),(1721,'geography','41.191.104.213',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:51:09','2019-02-07 14:51:09'),(1722,'mathematics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:53:38','2019-02-07 14:55:12'),(1723,'chemistry','41.191.107.34',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:18:05','2019-02-07 15:48:37'),(1724,'physics','41.191.107.34',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:30:55','2019-02-07 15:45:52'),(1725,'chemistry','41.191.107.38',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:54:06','2019-02-07 16:07:17'),(1726,'physics','41.191.104.81',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:07:36','2019-02-07 16:09:23'),(1727,'chemistry','41.191.104.81',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:12:44','2019-02-07 16:12:44'),(1728,'mathematics','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:46','2019-02-07 16:22:18'),(1729,'chemistry','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:54','2019-02-07 16:24:30'),(1730,'physics','41.191.107.206',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:57','2019-02-07 16:38:27'),(1731,'geography','41.191.107.206',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:59','2019-02-07 16:30:19'),(1732,'english','197.210.227.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:31:53','2019-02-07 16:31:53'),(1733,'history','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:33:37','2019-02-07 16:33:37'),(1734,'biology','41.191.107.206',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:03','2019-04-18 16:28:46'),(1735,'economics','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:39','2019-02-07 16:34:39'),(1736,'accounting','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:56','2019-02-07 16:34:56'),(1737,'english','184.73.22.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:38:25','2019-02-07 16:50:24'),(1738,'physics','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:43:12','2019-02-07 16:43:12'),(1739,'english','154.66.57.61',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:44:58','2019-02-07 16:47:26'),(1740,'accounting','41.191.107.193',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:45:10','2019-02-07 16:47:47'),(1741,'biology','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:50','2019-02-07 16:46:50'),(1742,'chemistry','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:55','2019-02-07 16:46:55'),(1743,'mathematics','41.191.107.193',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:48:25','2019-04-13 07:49:25'),(1744,'commerce','154.66.57.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:49:07','2019-02-07 16:49:08'),(1745,'mathematics','184.73.22.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:05:51','2019-02-07 17:05:51'),(1746,'englishlit','197.210.227.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:06:39','2019-02-07 17:06:57'),(1747,'mathematics','197.210.227.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:08:37','2019-02-07 17:08:37'),(1748,'mathematics','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:12:32','2019-02-07 17:12:32'),(1749,'english','197.210.227.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:13:32','2019-02-07 17:15:24'),(1750,'english','197.210.227.160',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:17:16','2019-02-07 17:17:16'),(1751,'government','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:04','2019-02-07 19:40:04'),(1752,'chemistry','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:05','2019-02-07 19:40:05'),(1753,'chemistry','41.203.78.86',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 22:56:58','2019-02-08 01:04:26'),(1754,'english','41.203.78.86',10687,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 23:11:07','2019-02-08 01:12:58'),(1755,'chemistry','41.203.72.82',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:02:21','2019-02-08 01:03:10'),(1756,'mathematics','41.203.78.86',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:13:49','2019-02-08 01:20:31'),(1757,'commerce','41.203.78.86',1400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:21:06','2019-02-08 01:25:03'),(1758,'accounting','129.205.112.31',637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 03:59:44','2019-02-10 07:56:43'),(1759,'commerce','129.205.112.31',16415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:02:10','2019-02-10 07:24:35'),(1760,'english','129.205.112.31',3880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:54:53','2019-02-09 20:30:32'),(1761,'mathematics','129.205.112.31',1581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 05:04:07','2019-02-10 08:18:03'),(1762,'economics','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:37:15','2019-02-08 09:37:15'),(1763,'currentaffairs','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:42:06','2019-02-08 09:42:06'),(1764,'commerce','41.203.78.102',5836,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 13:46:12','2019-02-08 21:42:21'),(1765,'english','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1766,'accounting','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1767,'biology','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1768,'englishlit','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1769,'government','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1770,'economics','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1771,'history','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1772,'insurance','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 16:42:58','2019-02-08 16:42:58'),(1773,'biology','54.161.98.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 17:53:20','2019-02-08 17:53:20'),(1774,'mathematics','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 20:43:14','2019-02-08 20:43:14'),(1775,'insurance','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:12:10','2019-02-08 21:12:10'),(1776,'chemistry','41.203.78.102',2128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:33:15','2019-02-08 22:12:38'),(1777,'mathematics','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:42:45','2019-02-08 21:51:29'),(1778,'english','41.203.78.102',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:43:28','2019-02-09 01:27:32'),(1779,'accounting','41.203.78.102',2720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:51:49','2019-02-08 21:56:42'),(1780,'biology','41.203.78.102',2400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:57:02','2019-02-08 22:05:16'),(1781,'physics','41.203.78.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:06:14','2019-02-08 22:07:44'),(1782,'englishlit','41.203.78.102',1880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:13:10','2019-02-08 22:20:30'),(1783,'government','41.203.78.102',2800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:21:29','2019-02-08 23:52:43'),(1784,'crk','41.203.78.102',3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:52:55','2019-02-09 00:00:48'),(1785,'chemistry','54.91.117.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:57:22','2019-02-08 23:57:22'),(1786,'geography','41.203.78.102',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:01:57','2019-02-09 00:24:16'),(1787,'economics','41.203.78.102',3720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:26:24','2019-02-09 00:34:36'),(1788,'irk','41.203.78.102',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:35:41','2019-02-09 00:37:20'),(1789,'civiledu','41.203.78.102',2240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:38:00','2019-02-09 00:44:30'),(1790,'insurance','41.203.78.102',1680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:46:06','2019-02-09 00:57:03'),(1791,'civiledu','52.55.225.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:48:42','2019-02-09 00:48:42'),(1792,'currentaffairs','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:57:53','2019-02-09 01:00:05'),(1793,'history','41.203.78.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 01:01:27','2019-02-09 01:01:41'),(1794,'government','54.197.84.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 03:29:54','2019-02-09 03:29:54'),(1795,'accounting','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 05:17:44','2019-02-09 05:17:44'),(1796,'crk','54.210.158.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 06:41:14','2019-02-09 06:41:14'),(1797,'chemistry','40.77.167.168',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 07:15:13','2020-01-13 09:41:58'),(1798,'mathematics','197.210.8.53',432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:27','2019-02-09 08:02:28'),(1799,'chemistry','197.210.8.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:53','2019-02-09 07:54:53'),(1800,'commerce','197.210.8.53',2379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:03:00','2019-02-09 09:22:09'),(1801,'mathematics','3.83.132.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:18:09','2019-02-09 08:18:09'),(1802,'biology','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:54:44','2019-02-09 08:54:44'),(1803,'chemistry','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:18:40','2019-02-09 09:18:40'),(1804,'englishlit','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:17','2019-02-09 09:19:17'),(1805,'mathematics','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:52','2019-02-09 09:19:52'),(1806,'economics','54.83.86.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 10:26:21','2019-02-09 10:26:21'),(1807,'chemistry','197.210.44.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:14:26','2019-02-09 11:15:08'),(1808,'physics','197.210.44.28',952,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:16:33','2019-02-09 12:01:21'),(1809,'commerce','197.210.227.64',78,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:22:57','2019-02-09 12:24:33'),(1810,'physics','54.167.138.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:50:33','2019-02-09 13:26:19'),(1811,'chemistry','157.55.39.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:39:52','2019-02-09 13:39:52'),(1812,'english','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:47:52','2019-02-09 13:47:52'),(1813,'government','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:53:44','2019-02-09 13:53:44'),(1814,'englishlit','54.160.227.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 14:42:34','2019-02-09 14:42:34'),(1815,'englishlit','34.207.56.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 17:36:00','2019-02-09 17:36:00'),(1816,'chemistry','46.229.168.134',104,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-02-09 18:20:56','2020-07-23 02:17:17'),(1817,'crk','54.205.112.119',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 18:24:29','2019-02-09 18:24:29'),(1818,'englishlit','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:31:53','2019-02-10 08:28:16'),(1819,'accounting','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:36:27','2019-02-09 20:36:27'),(1820,'history','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:41:04','2019-02-09 20:41:04'),(1821,'economics','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:52:59','2019-02-09 20:52:59'),(1822,'economics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 21:36:49','2019-02-09 21:36:49'),(1823,'chemistry','54.165.27.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 04:31:45','2019-02-10 04:31:45'),(1824,'geography','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:01:47','2019-02-10 08:01:47'),(1825,'physics','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:19:34','2019-02-10 08:25:15'),(1826,'history','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:37:28','2019-02-10 08:37:28'),(1827,'english','54.162.92.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 12:54:28','2019-02-10 12:54:28'),(1828,'mathematics','41.191.107.239',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:39:53','2019-02-10 14:01:17'),(1829,'physics','41.191.107.239',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:42','2019-02-10 13:48:33'),(1830,'history','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:47','2019-02-10 13:48:45'),(1831,'accounting','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:45:18','2019-02-10 13:52:35'),(1832,'mathematics','41.191.107.145',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:02:05','2019-02-11 14:40:35'),(1833,'economics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:04:14','2019-02-10 14:04:14'),(1834,'physics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:05:04','2019-02-10 14:05:04'),(1835,'geography','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:06:01','2019-02-10 14:06:01'),(1836,'government','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1837,'accounting','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1838,'physics','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1839,'crk','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1840,'civiledu','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1841,'insurance','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1842,'currentaffairs','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:28'),(1843,'history','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:30'),(1844,'english','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1845,'biology','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:25'),(1846,'chemistry','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1847,'irk','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1848,'englishlit','34.228.6.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:15','2019-02-11 02:52:15'),(1849,'chemistry','197.210.45.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 10:22:02','2019-02-11 10:22:02'),(1850,'chemistry','40.77.167.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:09:52','2019-02-11 13:09:52'),(1851,'biology','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:36:32','2019-02-11 13:36:32'),(1852,'history','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:37:35','2019-02-11 13:37:35'),(1853,'english','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1854,'accounting','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1855,'physics','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1856,'geography','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1857,'irk','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1858,'insurance','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1859,'currentaffairs','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1860,'mathematics','41.191.104.71',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:12:03','2019-02-11 14:12:03'),(1861,'mathematics','41.191.104.112',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:18:49','2019-02-11 14:18:49'),(1862,'chemistry','41.58.77.114',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:51','2019-02-11 14:28:05'),(1863,'physics','41.191.104.112',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:53','2019-02-11 14:26:11'),(1864,'history','41.191.104.112',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:23:33','2019-02-11 14:26:08'),(1865,'biology','41.58.77.114',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:24:08','2019-02-11 14:24:08'),(1866,'mathematics','41.58.77.114',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:25:00','2019-02-11 14:26:24'),(1867,'physics','41.191.104.234',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:35','2019-02-11 14:40:10'),(1868,'economics','41.191.104.234',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:52','2019-02-11 14:35:32'),(1869,'mathematics','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:41','2019-02-11 14:35:41'),(1870,'chemistry','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:47','2019-02-11 14:35:47'),(1871,'biology','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:37:04','2019-02-11 14:37:04'),(1872,'biology','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:45:01','2019-02-11 14:45:01'),(1873,'chemistry','105.112.99.29',197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:29:39','2019-02-11 16:54:32'),(1874,'physics','105.112.99.29',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:30:30','2019-02-11 16:50:11'),(1875,'biology','105.112.99.29',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:38:24','2019-02-11 16:41:30'),(1876,'mathematics','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1877,'commerce','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1878,'chemistry','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1879,'englishlit','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1880,'government','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1881,'irk','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1882,'insurance','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1883,'chemistry','40.77.167.19',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 08:00:52','2019-02-12 08:00:52'),(1884,'english','54.146.30.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:52:31','2019-02-12 09:52:31'),(1885,'chemistry','77.246.49.12',38,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:59:54','2019-02-12 10:43:38'),(1886,'chemistry','66.249.83.214',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:17:35','2019-02-15 07:42:21'),(1887,'chemistry','66.249.83.212',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:32:16','2019-02-17 16:13:54'),(1888,'geography','54.198.25.67',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 11:51:48','2019-02-12 11:51:48'),(1889,'english','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1890,'biology','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1891,'physics','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1892,'government','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1893,'irk','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 15:35:54'),(1894,'civiledu','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1895,'history','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:55:19'),(1896,'chemistry','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:13:08','2019-02-12 15:13:08'),(1897,'geography','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:27:03','2019-02-12 15:27:03'),(1898,'insurance','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:37:09','2019-02-12 15:37:09'),(1899,'currentaffairs','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:38:51','2019-02-12 15:38:51'),(1900,'accounting','54.224.187.178',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:15:56','2019-02-12 16:47:43'),(1901,'commerce','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:54:29','2019-02-12 16:54:29'),(1902,'chemistry','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:55:19','2019-02-12 16:55:19'),(1903,'english','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:56:44','2019-02-12 16:56:44'),(1904,'englishlit','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 17:05:53','2019-02-12 17:05:53'),(1905,'chemistry','77.246.53.3',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:29:38','2019-02-12 19:29:38'),(1906,'chemistry','46.229.168.132',61,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-12 19:33:18','2020-04-01 16:00:41'),(1907,'physics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:37:08','2019-02-12 19:37:08'),(1908,'mathematics','3.83.244.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 21:14:53','2019-02-12 21:14:53'),(1909,'chemistry','54.90.184.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:12:11','2019-02-12 23:12:11'),(1910,'accounting','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:50:49','2019-02-12 23:50:49'),(1911,'chemistry','82.145.222.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 02:31:59','2019-02-13 02:32:09'),(1912,'chemistry','41.220.28.0',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 03:41:16','2019-02-13 04:18:17'),(1913,'chemistry','40.77.167.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 04:07:04','2019-02-13 04:07:04'),(1914,'irk','54.226.159.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 05:17:46','2019-02-13 05:17:46'),(1915,'chemistry','77.246.53.157',1075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 06:15:44','2019-02-13 07:57:20'),(1916,'biology','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:18:12','2019-02-13 07:18:12'),(1917,'accounting','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:42:14','2019-02-13 07:42:14'),(1918,'chemistry','77.246.55.170',2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 09:57:35','2019-02-13 12:53:59'),(1919,'irk','54.234.114.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 10:48:37','2019-02-13 10:48:37'),(1920,'chemistry','77.246.49.61',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 13:40:12','2019-02-13 14:09:22'),(1921,'mathematics','77.246.49.61',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:09:22'),(1922,'mathematics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:11:21'),(1923,'chemistry','41.220.30.108',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:10','2019-02-13 14:13:10'),(1924,'physics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:17','2019-02-19 09:00:47'),(1925,'accounting','41.220.30.108',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:14:56','2019-02-13 14:17:32'),(1926,'insurance','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:41:06','2019-02-13 14:44:45'),(1927,'english','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1928,'mathematics','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1929,'accounting','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1930,'physics','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1931,'chemistry','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1932,'crk','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1933,'crk','54.211.35.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1934,'irk','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1935,'currentaffairs','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1936,'history','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1937,'mathematics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:12:14','2019-02-13 15:12:14'),(1938,'physics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:14:36','2019-02-13 15:14:37'),(1939,'chemistry','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:15:45','2019-02-13 15:15:45'),(1940,'irk','54.144.251.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:47:59','2019-02-13 15:47:59'),(1941,'physics','77.246.53.12',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:20:07','2019-02-13 16:34:41'),(1942,'mathematics','77.246.53.12',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:14','2019-02-13 16:35:19'),(1943,'chemistry','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:32','2019-02-13 16:34:32'),(1944,'accounting','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:48','2019-02-13 16:34:48'),(1945,'mathematics','77.246.53.162',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:07','2019-02-13 17:07:40'),(1946,'physics','77.246.53.162',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:43','2019-02-13 17:05:44'),(1947,'chemistry','77.246.53.162',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:21','2019-02-13 17:05:39'),(1948,'accounting','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:26','2019-02-13 16:54:33'),(1949,'commerce','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:57:16','2019-02-13 16:57:32'),(1950,'biology','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:59:47','2019-02-13 17:02:48'),(1951,'physics','54.159.21.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 18:06:23','2019-02-13 18:06:23'),(1952,'chemistry','46.229.168.150',12,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 02:03:11','2020-01-21 05:27:03'),(1953,'biology','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 02:28:08','2019-02-14 02:28:08'),(1954,'chemistry','41.86.149.34',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 07:40:21','2020-03-16 11:43:51'),(1955,'physics','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:41:02','2019-02-14 08:41:02'),(1956,'chemistry','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:45:15','2019-02-14 08:45:16'),(1957,'physics','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:45:52','2019-02-14 09:45:52'),(1958,'chemistry','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:12','2019-02-14 09:46:12'),(1959,'mathematics','77.246.49.1',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:22','2019-02-14 10:21:31'),(1960,'biology','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:31','2019-02-14 09:46:31'),(1961,'chemistry','66.249.93.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:08:04','2019-02-14 14:08:04'),(1962,'insurance','52.206.40.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:35:57','2019-02-14 14:35:57'),(1963,'irk','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:05:01','2019-02-14 16:05:01'),(1964,'mathematics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:25:27','2019-02-14 16:25:27'),(1965,'physics','107.167.107.223',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:26:57','2019-02-14 16:26:58'),(1966,'chemistry','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:28:35','2019-02-14 16:28:35'),(1967,'physics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:32:02','2019-02-14 16:32:02'),(1968,'physics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:02','2019-02-14 17:39:02'),(1969,'mathematics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:03','2019-02-14 17:39:03'),(1970,'chemistry','66.249.64.168',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:04','2019-02-15 07:38:28'),(1971,'mathematics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1972,'biology','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1973,'chemistry','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1974,'englishlit','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1975,'crk','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1976,'economics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1977,'civiledu','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1978,'mathematics','41.220.30.127',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:40:08','2019-02-14 18:40:09'),(1979,'chemistry','197.210.53.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 23:05:50','2019-02-14 23:11:24'),(1980,'chemistry','197.210.53.75',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 23:06:02','2019-10-28 09:52:49'),(1981,'physics','77.246.53.165',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:37:58','2019-02-15 02:38:49'),(1982,'physics','66.102.8.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:17','2019-02-15 02:56:50'),(1983,'physics','66.249.64.170',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:28','2019-02-15 08:55:28'),(1984,'physics','66.249.64.168',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:56:52','2019-02-16 03:08:43'),(1985,'mathematics','77.246.53.165',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:58:41','2019-02-15 02:58:41'),(1986,'chemistry','66.102.6.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 04:13:56','2019-02-15 04:13:56'),(1987,'chemistry','77.246.53.155',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:12:45','2019-02-15 05:12:46'),(1988,'physics','66.249.83.210',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:21:09','2019-02-17 08:51:10'),(1989,'chemistry','66.249.83.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:54','2019-02-15 05:37:54'),(1990,'chemistry','66.249.64.170',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:55','2019-02-15 05:40:03'),(1991,'chemistry','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:40:02','2019-02-15 05:40:02'),(1992,'chemistry','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 07:38:29','2019-02-15 07:38:29'),(1993,'physics','66.102.8.106',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:21','2019-02-16 03:07:38'),(1994,'physics','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:45','2019-02-15 08:54:45'),(1995,'physics','66.249.83.212',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:10','2019-02-16 03:29:02'),(1996,'physics','41.220.30.120',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:22','2019-02-15 08:59:22'),(1997,'history','54.166.99.0',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:39:50','2019-02-15 09:39:50'),(1998,'physics','185.26.180.219',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:40:20','2019-02-15 10:02:05'),(1999,'physics','77.246.55.130',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:34:33','2019-02-15 13:38:14'),(2000,'english','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:38:16','2019-02-15 13:38:16'),(2001,'insurance','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:22','2019-02-15 13:39:22'),(2002,'commerce','197.210.227.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:24','2019-02-15 13:39:24'),(2003,'commerce','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 14:41:28','2019-02-15 14:41:28'),(2004,'physics','66.249.83.214',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:06','2019-02-19 18:52:31'),(2005,'physics','77.246.53.177',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:34','2019-02-15 15:11:34'),(2006,'chemistry','66.249.83.198',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:13:48','2019-02-15 15:13:49'),(2007,'chemistry','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:15:21','2019-02-15 17:15:21'),(2008,'biology','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:32:07','2019-02-15 17:32:07'),(2009,'englishlit','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:50:05','2019-02-15 17:50:05'),(2010,'civiledu','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:58:30','2019-02-15 17:58:30'),(2011,'economics','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 18:01:11','2019-02-15 18:01:11'),(2012,'mathematics','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:23'),(2013,'englishlit','54.162.96.90',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:12'),(2014,'geography','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2015,'irk','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2016,'civiledu','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2017,'currentaffairs','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:25'),(2018,'history','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2019,'english','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2020,'economics','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2021,'insurance','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2022,'biology','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:18','2019-02-15 23:11:20'),(2023,'commerce','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:34:11','2019-02-16 11:34:11'),(2024,'economics','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:35:07','2019-02-16 11:35:07'),(2025,'economics','197.210.53.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:59:36','2019-02-16 11:59:36'),(2026,'economics','197.210.53.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:09:10','2019-02-16 12:09:10'),(2027,'physics','64.233.172.202',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:45:29','2019-02-16 12:45:29'),(2028,'chemistry','197.210.8.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 15:55:05','2019-02-16 15:56:43'),(2029,'chemistry','209.205.211.242',1740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:08:07','2019-02-20 09:17:37'),(2030,'biology','209.205.211.242',3303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:14:54','2019-02-19 18:49:01'),(2031,'mathematics','209.205.211.242',2635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 17:10:46','2019-02-17 21:51:53'),(2032,'english','209.205.211.242',3998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:01:15','2019-02-19 18:31:24'),(2033,'english','197.210.52.4',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:06:11','2019-02-16 18:06:11'),(2034,'physics','66.249.88.52',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:25:31','2019-02-16 18:25:32'),(2035,'physics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:27:41','2019-02-16 18:27:42'),(2036,'physics','209.205.211.242',2056,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:36:36','2019-02-19 18:57:19'),(2037,'economics','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:52:25','2019-02-16 18:52:25'),(2038,'insurance','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:53:03','2019-02-16 18:53:03'),(2039,'english','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2040,'accounting','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2041,'government','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2042,'crk','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2043,'geography','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2044,'economics','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2045,'insurance','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2046,'economics','209.205.211.242',3993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:07:13','2019-02-20 10:21:53'),(2047,'commerce','209.205.211.242',2963,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:32:01','2019-02-20 10:47:11'),(2048,'accounting','209.205.211.242',3180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:02:28','2019-02-20 10:34:51'),(2049,'government','209.205.211.242',4769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:18:37','2019-02-20 11:25:34'),(2050,'englishlit','209.205.211.242',2428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:34:54','2019-02-20 11:06:13'),(2051,'civiledu','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:45:29','2019-02-18 13:07:15'),(2052,'crk','209.205.211.242',2529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:02:00','2019-03-28 01:41:15'),(2053,'history','209.205.211.242',1491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:13:13','2019-02-20 11:54:00'),(2054,'geography','209.205.211.242',1807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:24:15','2019-02-18 13:11:51'),(2055,'irk','209.205.211.242',533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:57:46','2019-02-18 13:14:15'),(2056,'insurance','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 00:04:12','2019-02-18 13:21:54'),(2057,'chemistry','197.210.46.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 05:30:36','2019-02-17 05:30:36'),(2058,'mathematics','66.249.83.214',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-19 18:52:31'),(2059,'biology','66.249.83.212',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-17 09:09:38'),(2060,'physics','77.246.55.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:10:12','2019-02-17 09:10:33'),(2061,'mathematics','66.249.84.40',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:47','2019-02-17 10:32:48'),(2062,'mathematics','66.249.64.168',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:48','2019-02-17 10:32:48'),(2063,'mathematics','64.233.172.200',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:42','2019-02-17 10:33:42'),(2064,'mathematics','66.249.64.170',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:44','2019-02-17 10:33:44'),(2065,'mathematics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 16:14:46','2019-02-17 16:14:46'),(2066,'english','34.238.255.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 12:56:12','2019-02-18 12:56:12'),(2067,'currentaffairs','209.205.211.242',585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 13:24:51','2019-02-18 13:37:43'),(2068,'physics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:10:32','2019-02-18 17:10:32'),(2069,'mathematics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:11:34','2019-02-18 17:11:34'),(2070,'physics','77.246.53.136',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 19:24:42','2019-02-18 19:25:37'),(2071,'english','174.129.141.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 20:49:05','2019-02-18 20:49:05'),(2072,'chemistry','41.191.104.80',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 00:07:04','2019-04-18 08:45:16'),(2073,'insurance','3.82.5.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 01:58:28','2019-02-19 01:58:28'),(2074,'english','54.211.123.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 06:24:59','2019-02-19 06:24:59'),(2075,'chemistry','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:14:42','2019-02-19 10:14:42'),(2076,'englishlit','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:22:31','2019-02-19 10:22:31'),(2077,'economics','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:42:59','2019-02-19 10:42:59'),(2078,'chemistry','54.224.95.200',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 12:27:33','2019-02-19 12:27:33'),(2079,'insurance','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:12:57','2019-02-19 14:12:57'),(2080,'accounting','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:23:32','2019-02-19 14:23:32'),(2081,'civiledu','54.147.55.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:12:39','2019-02-19 18:12:39'),(2082,'physics','77.246.49.36',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:52:53','2019-02-19 18:53:54'),(2083,'chemistry','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:07','2019-02-19 18:53:10'),(2084,'biology','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:18','2019-02-19 18:53:48'),(2085,'mathematics','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:21','2019-02-19 18:53:47'),(2086,'government','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:02:12','2019-02-19 19:02:12'),(2087,'accounting','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:06:42','2019-02-19 19:06:42'),(2088,'chemistry','197.211.57.22',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 20:15:50','2019-02-19 20:22:45'),(2089,'economics','54.161.218.154',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:34','2019-02-19 21:58:35'),(2090,'accounting','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2091,'physics','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2092,'chemistry','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2093,'englishlit','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2094,'geography','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2095,'history','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2096,'english','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 00:48:47','2019-02-20 00:48:48'),(2097,'physics','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:00:30','2019-02-20 01:00:30'),(2098,'geography','66.249.70.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:02:46','2019-02-20 01:02:47'),(2099,'history','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:04:05','2019-02-20 01:04:05'),(2100,'economics','54.81.179.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:18:54','2019-02-20 01:18:54'),(2101,'chemistry','66.249.83.222',26,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2019-11-22 10:45:51'),(2102,'biology','66.249.83.192',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2020-03-04 20:11:48'),(2103,'physics','66.249.83.223',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:05','2019-02-22 08:52:17'),(2104,'physics','77.246.53.28',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:41','2019-02-20 05:28:41'),(2105,'chemistry','207.46.13.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:55:58','2019-02-20 05:55:58'),(2106,'insurance','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:05','2019-02-20 13:44:06'),(2107,'mathematics','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:23','2019-02-20 13:44:24'),(2108,'physics','54.204.105.177',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 15:14:53','2019-02-20 15:14:53'),(2109,'english','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:05:47','2019-02-20 18:05:47'),(2110,'biology','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:13:36','2019-02-20 18:13:37'),(2111,'physics','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2112,'chemistry','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2113,'crk','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2114,'geography','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2115,'economics','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2116,'insurance','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2117,'history','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2118,'currentaffairs','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2119,'mathematics','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:37','2019-02-20 18:36:37'),(2120,'biology','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:43','2019-02-20 18:36:43'),(2121,'english','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2122,'accounting','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2123,'government','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2124,'englishlit','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:49','2019-02-20 18:36:49'),(2125,'englishlit','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:29:11','2019-02-20 19:29:11'),(2126,'chemistry','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:54:43','2019-02-20 19:54:43'),(2127,'biology','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:55','2019-02-20 20:16:55'),(2128,'geography','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:59','2019-02-20 20:16:59'),(2129,'chemistry','105.112.26.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:32:19','2019-02-20 20:32:19'),(2130,'chemistry','54.83.94.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 23:36:55','2019-02-20 23:36:55'),(2131,'mathematics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2132,'mathematics','54.167.183.249',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2133,'commerce','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2134,'accounting','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2135,'physics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2136,'geography','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2137,'economics','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2138,'insurance','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2139,'english','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2140,'chemistry','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2141,'irk','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2142,'history','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2143,'chemistry','46.229.168.130',18,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2020-03-24 16:18:58'),(2144,'chemistry','46.229.168.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2019-02-21 14:32:12'),(2145,'geography','54.221.38.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 02:38:12','2019-02-22 02:38:12'),(2146,'mathematics','54.89.229.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 03:48:22','2019-02-22 03:48:22'),(2147,'chemistry','129.205.112.63',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:18:55','2019-02-22 06:19:17'),(2148,'mathematics','129.205.112.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:19:48','2019-02-22 06:19:48'),(2149,'mathematics','66.249.83.222',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 08:52:08','2019-02-27 03:45:37'),(2150,'economics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 09:26:06','2019-02-22 09:26:07'),(2151,'mathematics','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2152,'mathematics','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2153,'physics','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2154,'biology','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2155,'englishlit','34.201.133.169',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2156,'chemistry','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2157,'government','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2158,'crk','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2159,'geography','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2160,'civiledu','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2161,'civiledu','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2162,'history','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2163,'history','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2164,'economics','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2165,'chemistry','129.56.89.91',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 14:58:18','2019-02-22 14:58:54'),(2166,'mathematics','129.56.89.91',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 15:07:31','2019-02-22 15:07:31'),(2167,'economics','54.161.215.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 00:00:12','2019-02-23 00:00:12'),(2168,'history','3.93.218.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 04:23:21','2019-02-23 04:23:21'),(2169,'accounting','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2170,'biology','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2171,'chemistry','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2172,'government','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2173,'irk','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2174,'insurance','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2175,'currentaffairs','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2176,'chemistry','192.173.38.121',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 23:14:30','2019-02-23 23:14:42'),(2177,'english','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2178,'accounting','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2179,'government','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2180,'crk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2181,'geography','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2182,'irk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2183,'civiledu','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2184,'chemistry','160.120.230.179',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 23:58:16','2019-02-24 23:58:16'),(2185,'chemistry','197.210.45.125',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 10:22:09','2019-02-25 10:23:43'),(2186,'biology','197.210.28.208',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 12:45:32','2019-02-25 12:45:33'),(2187,'chemistry','207.46.13.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 09:41:52','2019-02-26 09:41:52'),(2188,'chemistry','129.205.113.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 15:05:12','2019-02-26 15:05:12'),(2189,'english','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2190,'english','3.87.158.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2191,'mathematics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2192,'commerce','3.87.158.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2193,'biology','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2194,'physics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2195,'geography','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2196,'government','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2197,'economics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2198,'history','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2199,'crk','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2200,'currentaffairs','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2201,'english','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2202,'mathematics','54.226.211.137',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:44'),(2203,'commerce','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2204,'chemistry','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2205,'government','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2206,'history','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2207,'accounting','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2208,'economics','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:30'),(2209,'irk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2210,'insurance','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2211,'chemistry','41.191.107.201',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:30:53','2019-02-26 19:30:53'),(2212,'chemistry','41.191.107.145',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:32:08','2019-02-26 19:33:01'),(2213,'physics','54.243.5.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 22:16:47','2019-02-26 22:16:47'),(2214,'accounting','54.166.233.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 23:08:29','2019-02-26 23:08:29'),(2215,'physics','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:36','2020-02-09 06:54:16'),(2216,'biology','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:43','2020-02-15 20:12:30'),(2217,'chemistry','66.249.83.223',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:44','2020-02-05 04:26:16'),(2218,'physics','77.246.53.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 03:45:58','2019-02-27 03:45:58'),(2219,'chemistry','66.249.93.52',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 11:18:17','2019-06-22 21:48:18'),(2220,'chemistry','41.191.104.245',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 12:41:52','2019-02-27 12:41:52'),(2221,'chemistry','66.249.93.48',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 12:41:34','2019-08-02 12:51:50'),(2222,'insurance','54.209.60.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 13:15:55','2019-02-28 13:15:55'),(2223,'mathematics','52.73.168.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 15:40:02','2019-02-28 15:40:02'),(2224,'chemistry','41.190.2.218',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:47:11','2019-03-01 08:49:37'),(2225,'mathematics','41.190.2.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:50:33','2019-03-01 08:50:34'),(2226,'english','41.190.2.218',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:52:26','2019-03-01 09:52:41'),(2227,'chemistry','66.249.66.158',82,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:22:29','2019-05-21 08:24:45'),(2228,'english','41.190.3.242',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:52:56','2019-03-01 10:52:56'),(2229,'physics','41.190.3.242',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:59:56','2019-03-01 10:59:56'),(2230,'english','41.190.2.156',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:08:07','2019-03-01 11:10:46'),(2231,'englishlit','41.190.2.156',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:11:29','2019-03-01 11:15:39'),(2232,'englishlit','41.190.31.166',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:22:14','2019-03-01 11:22:15'),(2233,'mathematics','41.242.89.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 14:24:39','2019-03-01 14:24:39'),(2234,'chemistry','54.85.62.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:23','2019-03-01 18:59:23'),(2235,'commerce','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2236,'physics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2237,'englishlit','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2238,'government','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2239,'crk','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2240,'economics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2241,'currentaffairs','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2242,'chemistry','88.6.244.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:08:40','2019-03-01 19:08:40'),(2243,'englishlit','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:21'),(2244,'english','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2245,'commerce','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:46'),(2246,'biology','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2247,'geography','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2248,'economics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2249,'irk','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2250,'history','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2251,'chemistry','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:58:25'),(2252,'government','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2253,'currentaffairs','107.20.60.54',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2254,'mathematics','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:05','2019-03-01 19:57:41'),(2255,'accounting','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2256,'physics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2257,'crk','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2258,'civiledu','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2259,'insurance','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2260,'chemistry','197.211.57.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 00:15:49','2019-03-02 00:15:49'),(2261,'mathematics','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:00:36','2019-03-02 04:00:36'),(2262,'geography','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:11:33','2019-03-02 04:11:33'),(2263,'insurance','3.89.38.207',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 06:24:49','2019-03-02 06:30:51'),(2264,'mathematics','54.80.44.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:08'),(2265,'biology','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:05'),(2266,'physics','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:39'),(2267,'chemistry','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:00'),(2268,'englishlit','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:52'),(2269,'economics','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2270,'civiledu','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2271,'commerce','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2272,'crk','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2273,'insurance','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2274,'currentaffairs','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:55'),(2275,'biology','105.112.44.175',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 15:21:52','2019-03-02 15:26:09'),(2276,'chemistry','105.112.21.63',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 16:03:37','2019-03-02 16:03:53'),(2277,'englishlit','169.159.66.161',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 17:05:42','2019-03-02 17:05:42'),(2278,'geography','34.229.78.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 22:36:51','2019-03-02 22:36:51'),(2279,'chemistry','105.112.23.37',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-03 21:25:44','2019-03-03 21:26:34'),(2280,'english','105.112.45.107',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 06:08:59','2019-03-04 06:09:55'),(2281,'chemistry','154.66.15.65',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 09:03:04','2019-03-04 09:03:04'),(2282,'chemistry','40.77.167.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 10:53:20','2019-05-08 11:01:31'),(2283,'chemistry','66.249.64.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 11:52:26','2019-03-04 11:52:26'),(2284,'chemistry','157.55.39.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 17:38:04','2019-03-04 17:38:04'),(2285,'english','129.56.36.43',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 20:56:28','2019-03-04 20:56:29'),(2286,'chemistry','66.249.93.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 22:00:50','2019-03-04 22:00:50'),(2287,'history','3.83.116.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 08:18:13','2019-03-05 08:18:13'),(2288,'english','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2289,'mathematics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2290,'biology','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2291,'irk','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2292,'insurance','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2293,'currentaffairs','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2294,'history','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2295,'commerce','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2296,'accounting','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2297,'economics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2298,'civiledu','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2299,'chemistry','129.205.112.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 05:43:39','2019-03-06 05:43:39'),(2300,'english','105.112.41.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 06:01:30','2019-03-06 06:01:30'),(2301,'chemistry','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:53:58','2019-03-07 07:53:58'),(2302,'english','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:03','2019-03-07 07:54:03'),(2303,'currentaffairs','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:05','2019-03-07 07:54:05'),(2304,'englishlit','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:11','2019-03-07 07:54:11'),(2305,'mathematics','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:13','2019-03-07 07:54:13'),(2306,'english','54.146.17.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 10:10:28','2019-03-07 10:10:28'),(2307,'chemistry','41.203.78.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 18:01:15','2019-03-07 18:01:40'),(2308,'mathematics','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:29:12','2019-03-08 00:29:12'),(2309,'accounting','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:43:38','2019-03-08 00:43:39'),(2310,'irk','129.205.112.111',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:47:07','2019-03-08 00:47:07'),(2311,'commerce','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:57:56','2019-03-08 00:57:56'),(2312,'mathematics','105.112.23.187',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 02:10:15','2019-03-08 02:10:16'),(2313,'chemistry','182.156.84.42',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 07:34:03','2019-03-08 07:34:38'),(2314,'english','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:32','2019-03-08 21:33:32'),(2315,'mathematics','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:51','2019-03-08 21:33:51'),(2316,'chemistry','66.249.66.128',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 22:28:29','2019-03-08 22:28:29'),(2317,'commerce','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2318,'accounting','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2319,'englishlit','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2320,'government','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2321,'crk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2322,'irk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2323,'civiledu','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2324,'biology','105.112.41.40',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 11:20:50','2019-03-10 11:20:50'),(2325,'english','66.249.66.159',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-10 18:44:59','2019-12-20 19:13:10'),(2326,'currentaffairs','66.249.66.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:01:44','2019-03-10 19:01:44'),(2327,'mathematics','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:07:00','2019-03-10 19:07:00'),(2328,'biology','66.249.66.159',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:11:15','2019-07-20 09:55:14'),(2329,'chemistry','197.242.96.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:22:23','2019-03-10 22:22:23'),(2330,'commerce','197.211.32.243',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:37:02','2019-03-10 22:37:05'),(2331,'english','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:35'),(2332,'commerce','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2333,'biology','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2334,'chemistry','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2335,'geography','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:27'),(2336,'currentaffairs','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:32'),(2337,'history','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:43'),(2338,'englishlit','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:37','2019-03-10 23:37:40'),(2339,'mathematics','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:47'),(2340,'physics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2341,'economics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2342,'civiledu','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2343,'english','105.112.106.77',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:59:59','2019-03-11 00:33:51'),(2344,'mathematics','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:03','2019-03-11 00:13:40'),(2345,'civiledu','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:29','2019-03-11 00:10:45'),(2346,'chemistry','41.216.168.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 10:36:04','2019-03-11 10:36:31'),(2347,'biology','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:11:03','2019-03-11 12:11:04'),(2348,'currentaffairs','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:16:12','2019-03-11 12:16:13'),(2349,'mathematics','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:21:12','2019-03-11 12:21:13'),(2350,'chemistry','197.210.62.63',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:26:12','2019-03-11 12:26:12'),(2351,'chemistry','197.210.54.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:24','2019-03-12 04:11:25'),(2352,'chemistry','197.210.54.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:37','2019-03-12 04:11:38'),(2353,'chemistry','207.46.13.222',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 23:05:23','2019-03-12 23:05:23'),(2354,'chemistry','105.112.16.104',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:30:57','2019-03-13 08:32:49'),(2355,'mathematics','105.112.16.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:33:15','2019-03-13 08:33:15'),(2356,'chemistry','157.55.39.236',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-14 04:31:32','2020-05-06 01:55:10'),(2357,'chemistry','129.18.151.222',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-14 17:26:09','2019-03-14 17:27:29'),(2358,'mathematics','18.207.245.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2359,'mathematics','18.207.245.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2360,'biology','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2361,'commerce','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2362,'physics','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2363,'chemistry','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2364,'economics','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2365,'irk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2366,'government','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2367,'history','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2368,'crk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2369,'physics','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:25','2019-03-16 12:35:39'),(2370,'mathematics','129.205.113.120',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:34','2019-03-16 12:33:03'),(2371,'commerce','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2372,'accounting','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2373,'chemistry','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2374,'englishlit','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2375,'civiledu','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2376,'insurance','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2377,'history','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2378,'english','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 12:33:00','2019-03-16 12:33:31'),(2379,'mathematics','105.178.112.15',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 13:18:33','2019-03-16 14:33:21'),(2380,'englishlit','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:40','2019-03-16 15:14:43'),(2381,'commerce','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:45','2019-03-16 15:15:22'),(2382,'history','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:47','2019-03-16 15:14:59'),(2383,'chemistry','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:49','2019-03-16 15:14:54'),(2384,'accounting','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:52','2019-03-16 15:15:17'),(2385,'civiledu','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:57','2019-03-16 15:15:01'),(2386,'insurance','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:15:19','2019-03-16 15:15:25'),(2387,'chemistry','40.77.167.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 18:24:33','2019-03-16 18:24:33'),(2388,'commerce','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2389,'accounting','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2390,'biology','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2391,'chemistry','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2392,'englishlit','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2393,'irk','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2394,'history','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2395,'mathematics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:53'),(2396,'accounting','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 08:48:07'),(2397,'biology','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:03:03'),(2398,'physics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:47'),(2399,'englishlit','100.24.30.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:02'),(2400,'currentaffairs','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:45'),(2401,'history','100.24.30.47',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:06'),(2402,'english','100.24.30.47',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:57:07','2019-03-17 09:11:58'),(2403,'economics','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:00:11'),(2404,'irk','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2405,'civiledu','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2406,'commerce','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2407,'crk','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2408,'geography','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2409,'english','3.93.187.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:32:15','2019-03-17 11:32:15'),(2410,'chemistry','37.9.87.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:48:48','2019-03-17 11:48:48'),(2411,'chemistry','94.130.237.95',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-18 23:20:28','2020-03-04 10:30:43'),(2412,'chemistry','46.229.168.133',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-19 07:43:34','2020-04-15 11:01:00'),(2413,'english','105.112.104.202',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 15:27:18','2019-03-19 15:27:19'),(2414,'chemistry','40.77.167.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 17:56:39','2019-03-19 17:56:39'),(2415,'chemistry','66.102.6.20',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 20:29:21','2019-03-19 20:29:22'),(2416,'chemistry','84.224.213.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 14:12:39','2019-03-20 14:12:39'),(2417,'english','105.112.104.10',340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:17:23','2019-03-20 20:12:29'),(2418,'irk','105.112.104.10',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:54:32','2019-03-20 19:54:32'),(2419,'accounting','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:07','2019-03-21 02:02:08'),(2420,'chemistry','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2421,'government','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2422,'geography','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2423,'irk','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2424,'currentaffairs','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2425,'history','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2426,'commerce','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2427,'biology','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2428,'chemistry','185.161.72.105',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 13:47:45','2019-03-21 13:47:45'),(2429,'english','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2430,'commerce','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2431,'physics','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2432,'government','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2433,'irk','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2434,'insurance','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2435,'currentaffairs','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2436,'physics','66.249.64.178',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-22 04:05:38','2019-09-25 11:24:23'),(2437,'chemistry','82.145.222.11',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 08:45:03','2019-03-22 08:53:13'),(2438,'crk','52.91.165.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 09:38:12','2019-03-22 09:38:12'),(2439,'economics','54.158.54.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 11:28:41','2019-03-22 11:28:41'),(2440,'history','54.90.213.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 12:47:11','2019-03-22 12:47:11'),(2441,'english','66.249.64.176',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:40:29','2019-04-12 08:26:44'),(2442,'commerce','66.249.64.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:50:23','2019-03-22 13:50:23'),(2443,'civiledu','66.249.64.178',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:55:48','2019-03-22 13:55:48'),(2444,'mathematics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2445,'chemistry','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2446,'crk','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2447,'geography','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2448,'economics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2449,'insurance','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2450,'history','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2451,'commerce','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2452,'physics','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2453,'englishlit','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:42'),(2454,'crk','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:00:30'),(2455,'economics','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2456,'irk','34.229.89.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2457,'history','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:43'),(2458,'english','34.229.89.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2459,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2460,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2461,'chemistry','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2462,'geography','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2463,'accounting','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2464,'civiledu','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2465,'insurance','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:42'),(2466,'currentaffairs','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:56'),(2467,'biology','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:37','2019-03-22 17:32:37'),(2468,'government','34.229.89.118',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:40','2019-03-22 17:32:45'),(2469,'mathematics','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:44','2019-03-22 17:32:44'),(2470,'english','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:18','2019-03-22 17:33:18'),(2471,'mathematics','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:19','2019-03-22 17:33:19'),(2472,'chemistry','41.191.107.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:21:08','2019-03-23 13:21:08'),(2473,'chemistry','41.191.107.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:44:44','2019-03-23 13:44:44'),(2474,'chemistry','129.205.112.163',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:17:58','2019-03-23 22:17:58'),(2475,'economics','129.205.112.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:18:49','2019-03-23 22:19:03'),(2476,'mathematics','197.210.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:44:13','2019-03-24 10:44:13'),(2477,'chemistry','197.210.226.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:46:33','2019-03-24 10:46:34'),(2478,'chemistry','197.211.53.242',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 10:42:54','2019-03-25 10:44:52'),(2479,'chemistry','41.203.117.95',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:03','2019-03-25 13:54:15'),(2480,'physics','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:28','2019-03-25 13:47:28'),(2481,'crk','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:13','2019-03-25 13:48:13'),(2482,'mathematics','41.203.117.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:31','2019-03-25 13:48:38'),(2483,'chemistry','41.203.117.96',143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:49:27','2019-03-25 14:31:34'),(2484,'accounting','41.203.117.96',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:30:45','2019-03-25 14:30:45'),(2485,'english','41.203.117.96',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:31:48','2019-03-25 14:31:48'),(2486,'currentaffairs','41.203.117.96',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:34:10','2019-03-28 05:33:36'),(2487,'english','105.112.46.123',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-26 13:20:41','2019-03-26 13:20:41'),(2488,'chemistry','46.229.168.153',58,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 15:28:52','2020-04-02 19:27:21'),(2489,'chemistry','46.229.168.140',46,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-03-26 21:40:59','2020-07-19 20:47:32'),(2490,'englishlit','41.80.214.85',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 06:56:24','2019-03-27 06:56:24'),(2491,'chemistry','73.59.41.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 21:49:59','2019-03-27 21:49:59'),(2492,'chemistry','41.203.72.196',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 08:11:19','2019-03-28 12:35:17'),(2493,'chemistry','40.77.167.104',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 15:19:42','2019-03-28 15:19:42'),(2494,'mathematics','129.205.112.28',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:06:58','2019-03-29 19:07:07'),(2495,'physics','129.205.112.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:07:30','2019-03-29 19:07:30'),(2496,'economics','3.80.51.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:44:22','2019-03-29 19:44:22'),(2497,'government','18.234.162.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 21:01:37','2019-03-29 21:01:37'),(2498,'chemistry','46.229.168.161',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-29 21:28:49','2019-12-18 04:07:27'),(2499,'irk','3.87.11.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 00:18:36','2019-03-30 00:18:36'),(2500,'geography','54.197.32.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 03:33:46','2019-03-30 03:33:46'),(2501,'biology','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:08:31','2019-03-30 08:08:31'),(2502,'insurance','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:26:32','2019-03-30 08:26:32'),(2503,'chemistry','3.84.72.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 02:49:20','2019-03-31 02:49:20'),(2504,'chemistry','34.204.94.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 04:43:23','2019-03-31 04:43:23'),(2505,'english','3.81.184.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 10:44:44','2019-03-31 10:44:44'),(2506,'chemistry','105.112.23.125',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:00:42','2019-03-31 13:15:36'),(2507,'english','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:09:11','2019-03-31 13:09:11'),(2508,'mathematics','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:11:16','2019-03-31 13:11:16'),(2509,'chemistry','197.211.47.194',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:03:32','2019-04-01 09:06:11'),(2510,'chemistry','41.76.196.129',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:06:31','2019-04-01 09:06:31'),(2511,'commerce','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2512,'biology','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2513,'government','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2514,'crk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2515,'irk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2516,'civiledu','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2517,'currentaffairs','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2518,'english','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:22','2019-04-02 02:07:22'),(2519,'biology','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:23','2019-04-02 02:07:27'),(2520,'commerce','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2521,'physics','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2522,'chemistry','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2523,'geography','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2524,'irk','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2525,'history','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2526,'government','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:28','2019-04-02 02:07:28'),(2527,'mathematics','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:41','2019-04-02 02:07:46'),(2528,'accounting','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2529,'englishlit','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2530,'currentaffairs','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:49'),(2531,'biology','3.86.140.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 04:02:20','2019-04-02 04:02:20'),(2532,'englishlit','3.94.89.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 06:08:13','2019-04-02 06:08:13'),(2533,'chemistry','41.184.180.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 08:54:01','2019-04-02 08:54:10'),(2534,'accounting','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:03:12','2019-04-02 10:03:12'),(2535,'government','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:26:32','2019-04-02 10:26:32'),(2536,'chemistry','207.46.13.126',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-02 13:11:18','2019-08-14 07:10:32'),(2537,'biology','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:17','2019-04-03 08:40:36'),(2538,'chemistry','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:29','2019-04-03 08:40:19'),(2539,'mathematics','105.112.44.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:41:16','2019-04-03 08:41:16'),(2540,'chemistry','209.97.150.141',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 09:48:38','2019-04-03 09:50:08'),(2541,'english','105.112.32.51',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:33','2019-04-03 11:02:48'),(2542,'biology','105.112.32.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:37','2019-04-03 11:02:37'),(2543,'chemistry','41.190.2.238',1555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:28:32','2019-04-03 11:47:36'),(2544,'mathematics','41.190.2.238',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:30:49','2019-04-03 11:30:49'),(2545,'physics','41.190.2.238',526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:47:52','2019-04-03 12:42:05'),(2546,'physics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:13:30','2019-04-03 15:13:31'),(2547,'chemistry','41.190.30.103',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:35:55','2019-04-03 15:36:14'),(2548,'mathematics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:39:13','2019-04-03 15:39:14'),(2549,'accounting','41.190.30.103',136,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:45:47','2019-04-03 15:46:17'),(2550,'economics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:49:22','2019-04-03 15:49:22'),(2551,'crk','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:51:56','2019-04-03 15:51:57'),(2552,'biology','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:54:17','2019-04-03 15:54:17'),(2553,'commerce','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:55:40','2019-04-03 15:55:40'),(2554,'government','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:58:11','2019-04-03 15:58:12'),(2555,'geography','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:00:47','2019-04-03 16:00:47'),(2556,'civiledu','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:02:39','2019-04-03 16:02:39'),(2557,'englishlit','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:05:21','2019-04-03 16:05:22'),(2558,'insurance','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:08:37','2019-04-03 16:08:38'),(2559,'currentaffairs','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:11:38','2019-04-03 16:11:38'),(2560,'history','41.190.30.103',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:14:03','2019-04-03 16:18:17'),(2561,'english','41.190.30.103',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:18:32','2019-04-03 16:20:28'),(2562,'government','41.190.2.134',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:33:07','2019-04-04 09:35:25'),(2563,'geography','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:38:24','2019-04-04 09:38:25'),(2564,'civiledu','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:39:50','2019-04-04 09:39:51'),(2565,'commerce','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:41:37','2019-04-04 09:41:37'),(2566,'crk','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:54:15','2019-04-04 09:54:16'),(2567,'economics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:57:56','2019-04-04 09:57:56'),(2568,'accounting','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:01:07','2019-04-04 10:01:07'),(2569,'mathematics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:06:55','2019-04-04 10:06:55'),(2570,'physics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:12:17','2019-04-04 10:12:17'),(2571,'history','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:21:45','2019-04-04 10:21:45'),(2572,'englishlit','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:24:08','2019-04-04 10:24:08'),(2573,'english','41.190.30.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:13:41','2019-04-04 13:13:42'),(2574,'mathematics','41.190.3.233',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:54:16','2019-04-04 13:54:16'),(2575,'chemistry','41.190.3.233',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:55:19','2019-04-04 13:55:19'),(2576,'chemistry','185.22.187.7',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 15:25:03','2019-04-04 15:25:20'),(2577,'chemistry','37.9.87.166',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-05 14:29:44','2019-10-25 17:45:28'),(2578,'irk','54.196.110.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 15:52:32','2019-04-05 15:52:32'),(2579,'mathematics','197.210.44.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:32','2019-04-05 16:49:32'),(2580,'chemistry','197.210.44.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:34','2019-04-05 16:49:34'),(2581,'chemistry','197.210.44.111',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:50:28','2019-04-05 16:51:41'),(2582,'chemistry','197.210.47.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:54:08','2019-04-05 16:54:09'),(2583,'chemistry','52.90.61.82',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:21:23','2019-04-05 18:36:20'),(2584,'currentaffairs','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:23:14','2019-04-05 18:23:14'),(2585,'crk','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:36:17','2019-04-05 18:36:17'),(2586,'civiledu','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:02','2019-04-05 18:37:02'),(2587,'english','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:32','2019-04-05 18:37:32'),(2588,'chemistry','157.55.39.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:59:25','2019-07-19 10:24:33'),(2589,'physics','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:17','2019-04-05 19:08:17'),(2590,'biology','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:21','2019-04-05 19:08:21'),(2591,'currentaffairs','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:29:36','2019-04-05 20:29:36'),(2592,'insurance','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:35:29','2019-04-05 20:35:29'),(2593,'physics','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:38:52','2019-04-05 21:38:52'),(2594,'irk','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:43:07','2019-04-05 21:43:07'),(2595,'chemistry','54.91.42.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:01','2019-04-05 21:54:36'),(2596,'commerce','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:13','2019-04-05 21:45:13'),(2597,'civiledu','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:50:08','2019-04-05 21:50:08'),(2598,'history','35.172.115.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 01:23:16','2019-04-06 01:23:16'),(2599,'currentaffairs','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:01','2019-04-06 03:46:01'),(2600,'crk','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:30','2019-04-06 03:46:30'),(2601,'englishlit','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 04:05:47','2019-04-06 04:05:47'),(2602,'accounting','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:26:27','2019-04-06 07:26:27'),(2603,'physics','3.85.62.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:19','2019-04-06 07:42:57'),(2604,'civiledu','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:26','2019-04-06 07:36:26'),(2605,'mathematics','197.210.61.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 14:29:44','2019-04-06 14:29:45'),(2606,'chemistry','207.46.13.167',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-06 18:40:36','2019-10-27 04:49:17'),(2607,'commerce','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2608,'accounting','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2609,'biology','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2610,'economics','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2611,'irk','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2612,'insurance','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2613,'currentaffairs','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2614,'english','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:24:22'),(2615,'mathematics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:02'),(2616,'biology','3.90.165.250',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:28'),(2617,'chemistry','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:47'),(2618,'government','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:16'),(2619,'geography','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:37'),(2620,'economics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:15'),(2621,'chemistry','141.0.13.241',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:16:18','2019-04-07 11:17:09'),(2622,'chemistry','105.112.104.108',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:17:50','2019-04-07 11:53:35'),(2623,'chemistry','82.145.222.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:22:54','2019-04-07 11:22:54'),(2624,'mathematics','105.112.104.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:46:52','2019-04-07 11:46:52'),(2625,'biology','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:15:42','2019-04-07 12:15:42'),(2626,'accounting','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:17:42','2019-04-07 12:17:42'),(2627,'chemistry','105.112.104.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:26:42','2019-04-07 13:27:24'),(2628,'biology','105.112.104.18',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:27:54','2019-04-07 13:28:33'),(2629,'mathematics','105.112.104.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:29:59','2019-04-07 13:29:59'),(2630,'chemistry','185.26.180.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:00:35','2019-04-07 16:00:35'),(2631,'chemistry','105.112.106.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:02:56','2019-04-07 16:02:56'),(2632,'chemistry','105.112.43.80',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 17:41:13','2019-04-07 17:41:38'),(2633,'chemistry','105.112.104.114',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:43:25','2019-04-08 04:55:15'),(2634,'mathematics','105.112.104.114',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:51:11','2019-04-08 04:51:12'),(2635,'chemistry','105.112.34.168',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 05:14:41','2019-04-08 05:14:55'),(2636,'chemistry','105.112.104.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 07:59:31','2019-04-08 07:59:31'),(2637,'chemistry','41.205.240.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:19:15','2019-04-09 00:19:15'),(2638,'economics','3.86.54.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:39:42','2019-04-09 00:39:42'),(2639,'commerce','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:29:18'),(2640,'accounting','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2641,'physics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2642,'crk','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2643,'economics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:23:09'),(2644,'insurance','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:44'),(2645,'history','3.88.201.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:56'),(2646,'mathematics','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:44:33','2019-04-09 09:44:33'),(2647,'accounting','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:54:57','2019-04-09 09:54:57'),(2648,'accounting','3.87.215.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 12:06:38','2019-04-09 12:06:38'),(2649,'physics','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:22','2019-04-09 17:06:22'),(2650,'economics','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:23','2019-04-09 17:05:23'),(2651,'accounting','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:47','2019-04-09 17:05:47'),(2652,'crk','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:57','2019-04-09 17:06:07'),(2653,'chemistry','207.46.13.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 02:00:09','2019-04-10 02:00:09'),(2654,'irk','54.173.242.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:23:34','2019-04-10 07:23:40'),(2655,'commerce','54.173.242.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:48:23','2019-04-10 07:48:23'),(2656,'government','54.147.61.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 09:44:06','2019-04-10 09:44:06'),(2657,'geography','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2658,'government','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2659,'economics','3.93.241.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 12:17:07','2019-04-10 12:17:07'),(2660,'irk','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:56','2019-04-10 14:28:56'),(2661,'history','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:57','2019-04-10 14:28:57'),(2662,'irk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:31','2019-04-10 15:59:53'),(2663,'accounting','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:33','2019-04-10 16:03:21'),(2664,'economics','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:47','2019-04-10 16:02:08'),(2665,'currentaffairs','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:51','2019-04-10 16:01:26'),(2666,'insurance','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:10','2019-04-10 16:01:37'),(2667,'biology','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:18','2019-04-10 16:02:37'),(2668,'commerce','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:48','2019-04-10 16:02:17'),(2669,'civiledu','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:49','2019-04-10 16:02:48'),(2670,'crk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:56','2019-04-10 16:02:27'),(2671,'government','3.80.78.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:02:58','2019-04-10 16:02:58'),(2672,'chemistry','207.46.13.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:32:08','2019-04-10 17:32:08'),(2673,'chemistry','66.249.69.48',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:41:29','2019-04-10 17:41:29'),(2674,'insurance','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:38:05','2019-04-10 18:38:05'),(2675,'civiledu','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:44:01','2019-04-10 18:44:01'),(2676,'irk','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:58:11','2019-04-10 18:58:11'),(2677,'government','3.87.45.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 20:21:49','2019-04-10 20:21:49'),(2678,'government','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:40','2019-04-10 22:50:40'),(2679,'geography','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:42','2019-04-10 22:50:42'),(2680,'english','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2681,'chemistry','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2682,'englishlit','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2683,'crk','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2684,'economics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:46'),(2685,'irk','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2686,'insurance','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2687,'biology','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:15','2019-04-11 00:10:18'),(2688,'mathematics','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:20','2019-04-11 00:11:23'),(2689,'government','54.86.96.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:30','2019-04-11 00:10:30'),(2690,'physics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:33','2019-04-11 00:11:18'),(2691,'accounting','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2692,'geography','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2693,'civiledu','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2694,'economics','3.93.17.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 02:50:27','2019-04-11 02:50:27'),(2695,'chemistry','197.253.24.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 10:49:51','2019-04-11 10:49:51'),(2696,'chemistry','157.55.39.202',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-11 12:13:39','2019-08-25 13:52:51'),(2697,'insurance','54.88.86.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 17:31:52','2019-04-11 17:31:52'),(2698,'chemistry','121.201.98.53',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 20:36:45','2019-04-11 20:36:50'),(2699,'english','41.191.107.216',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 06:44:42','2019-04-14 21:10:37'),(2700,'mathematics','41.191.104.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:09:38','2019-04-12 07:09:38'),(2701,'mathematics','41.191.107.41',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:45:52','2019-04-16 10:48:23'),(2702,'mathematics','41.191.107.131',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:54:27','2019-04-12 07:55:42'),(2703,'mathematics','41.191.104.115',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:01:58','2019-04-12 08:16:36'),(2704,'mathematics','41.191.107.49',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:17:28','2019-04-13 06:52:57'),(2705,'mathematics','41.191.104.102',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:25:53','2019-04-12 08:25:53'),(2706,'mathematics','66.249.64.180',125,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:28:03','2019-09-25 10:59:54'),(2707,'accounting','66.249.64.178',100,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:46:02','2019-09-30 03:38:01'),(2708,'chemistry','207.46.13.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:56:53','2019-04-12 08:56:53'),(2709,'mathematics','41.191.107.34',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:03:02','2019-04-13 23:22:24'),(2710,'english','41.191.107.34',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:06:00','2019-04-13 23:48:54'),(2711,'english','105.112.104.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 14:42:37','2019-04-12 14:42:37'),(2712,'chemistry','46.229.168.163',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 16:31:11','2020-04-13 20:58:16'),(2713,'mathematics','41.191.107.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:36:57','2019-04-13 06:40:11'),(2714,'mathematics','41.191.107.151',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:42:48','2019-04-15 12:15:35'),(2715,'english','41.191.107.49',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:53:45','2019-04-13 06:53:45'),(2716,'mathematics','41.191.107.229',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:15:13','2019-04-13 07:17:41'),(2717,'english','41.191.104.98',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:23:28','2019-04-13 07:26:33'),(2718,'mathematics','41.191.104.123',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:28:03','2019-04-13 07:33:06'),(2719,'english','41.191.107.56',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:34:59','2019-04-13 07:41:26'),(2720,'mathematics','41.191.107.56',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:35:12','2019-04-13 07:36:14'),(2721,'english','41.191.107.38',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:01:35','2019-04-15 22:19:39'),(2722,'mathematics','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:14:24','2019-04-13 08:22:39'),(2723,'mathematics','41.191.107.200',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:13:40','2019-04-13 15:16:42'),(2724,'english','41.191.104.245',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:19:40','2019-04-13 15:21:22'),(2725,'mathematics','41.191.104.245',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:20:48','2019-04-13 15:36:18'),(2726,'english','41.191.104.126',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:41:45','2019-04-13 16:13:10'),(2727,'biology','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:10:57','2019-04-13 16:10:57'),(2728,'mathematics','41.191.107.202',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:15:56','2019-04-15 09:45:36'),(2729,'english','41.191.107.202',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:18:30','2019-04-18 12:32:41'),(2730,'mathematics','41.191.107.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:27:24','2019-04-13 16:30:57'),(2731,'english','41.191.107.192',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:32:20','2019-04-14 16:42:26'),(2732,'english','41.191.107.207',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:35:14','2019-04-13 16:35:15'),(2733,'english','41.191.107.57',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:38:16','2019-04-14 18:25:42'),(2734,'biology','41.191.107.57',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:42:04','2019-04-13 16:42:04'),(2735,'english','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:06:49','2019-04-13 17:06:49'),(2736,'history','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:14:30','2019-04-13 17:14:30'),(2737,'english','41.191.107.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:03:33','2019-04-13 20:03:33'),(2738,'mathematics','41.191.104.69',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:53:34','2019-04-13 20:53:34'),(2739,'chemistry','68.38.183.43',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:59:58','2019-04-13 20:59:58'),(2740,'english','41.191.104.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:20:44','2019-04-17 07:51:45'),(2741,'mathematics','41.191.104.66',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:24:15','2019-04-14 05:46:29'),(2742,'english','41.191.107.150',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:03:19','2019-04-14 22:45:16'),(2743,'english','41.191.107.152',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:11:07','2019-04-13 22:21:17'),(2744,'mathematics','41.191.107.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:17:02','2019-04-13 22:17:02'),(2745,'english','41.191.107.200',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:23:24','2019-04-13 22:26:39'),(2746,'english','41.191.104.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:39:29','2019-04-13 22:41:41'),(2747,'english','41.191.107.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:51:32','2019-04-13 22:51:32'),(2748,'mathematics','41.191.107.222',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:54:57','2019-04-18 15:45:59'),(2749,'english','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:00:50','2019-04-13 23:00:50'),(2750,'english','41.191.107.137',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:32:04','2019-04-13 23:35:00'),(2751,'englishlit','18.232.74.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:13','2019-04-13 23:36:13'),(2752,'biology','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:44','2019-04-13 23:36:44'),(2753,'english','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:40:56','2019-04-13 23:40:56'),(2754,'mathematics','41.191.107.37',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:58:26','2019-04-14 00:21:39'),(2755,'biology','41.191.107.37',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:01:19','2019-04-14 00:01:19'),(2756,'english','41.191.107.37',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:09:50','2019-04-14 00:17:04'),(2757,'chemistry','157.55.39.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 04:27:16','2019-04-14 04:27:16'),(2758,'mathematics','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:15:55','2019-04-15 21:56:33'),(2759,'mathematics','41.191.104.105',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:19:56','2019-04-16 13:49:06'),(2760,'english','41.191.104.105',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:23:15','2019-04-16 14:41:34'),(2761,'english','41.191.104.247',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:34:00','2019-04-14 21:59:12'),(2762,'mathematics','41.191.107.39',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:52:06','2019-04-14 06:52:06'),(2763,'english','41.191.107.39',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:53:36','2019-04-16 11:08:43'),(2764,'mathematics','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:59:07','2019-04-14 06:59:07'),(2765,'english','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:01:04','2019-04-14 07:01:04'),(2766,'english','41.191.104.211',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:07:58','2019-04-17 08:04:27'),(2767,'english','41.191.104.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:15:46','2019-04-14 07:19:13'),(2768,'english','41.191.104.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:30:14','2019-04-14 07:32:46'),(2769,'chemistry','37.9.87.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 09:45:40','2019-04-14 09:45:40'),(2770,'irk','52.90.216.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 10:20:51','2019-04-14 10:20:51'),(2771,'biology','3.81.103.16',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 11:31:56','2019-04-19 04:55:11'),(2772,'accounting','34.204.107.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:03:29','2019-04-14 13:03:29'),(2773,'biology','41.191.107.44',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:11','2019-04-14 13:49:11'),(2774,'mathematics','41.191.107.44',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:49','2019-04-14 13:50:03'),(2775,'mathematics','41.191.104.250',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:35','2019-04-18 08:49:17'),(2776,'biology','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:42','2019-04-14 13:53:42'),(2777,'chemistry','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:47','2019-04-14 13:53:47'),(2778,'englishlit','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:18:28','2019-04-14 16:18:28'),(2779,'geography','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:22:19','2019-04-14 16:22:19'),(2780,'english','41.191.104.212',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:35:03','2019-04-17 05:50:48'),(2781,'english','41.191.107.136',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:55:31','2019-04-14 16:55:31'),(2782,'geography','54.152.49.211',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:59:08','2019-04-14 16:59:51'),(2783,'english','41.191.104.71',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:06:18','2019-04-14 17:13:26'),(2784,'english','41.191.104.116',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:16:25','2019-04-17 08:38:00'),(2785,'mathematics','41.191.104.116',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:25:32','2019-04-14 22:10:15'),(2786,'english','41.191.104.119',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:30:02','2019-04-14 17:44:00'),(2787,'english','41.191.107.55',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:47:44','2019-04-14 17:51:39'),(2788,'english','41.191.104.108',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:55:26','2019-04-14 18:02:51'),(2789,'english','41.191.107.205',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:07:34','2019-04-14 18:17:06'),(2790,'mathematics','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:30:52','2019-04-16 10:27:56'),(2791,'english','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:36:07','2019-04-16 10:29:42'),(2792,'english','41.191.104.240',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:37:18','2019-04-17 08:43:35'),(2793,'biology','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:48:01','2019-04-14 18:48:01'),(2794,'english','41.191.107.219',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:52:14','2019-04-14 18:52:15'),(2795,'english','41.191.107.129',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:56:38','2019-04-14 19:01:32'),(2796,'currentaffairs','3.90.232.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:06','2019-04-14 19:07:06'),(2797,'english','41.191.107.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:18','2019-04-14 19:09:59'),(2798,'english','41.191.104.227',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:14:06','2019-04-14 19:15:42'),(2799,'english','41.191.104.253',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:24:38','2019-04-14 19:24:38'),(2800,'english','41.191.104.112',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:46:42','2019-04-14 19:49:06'),(2801,'english','41.191.104.125',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:52:06','2019-04-14 19:52:07'),(2802,'english','41.191.104.252',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:13:43','2019-04-14 21:20:04'),(2803,'english','41.191.104.87',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:36:40','2019-04-14 21:43:10'),(2804,'english','41.191.107.237',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:45:45','2019-04-18 12:38:45'),(2805,'english','41.191.104.244',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:52:54','2019-04-14 21:58:31'),(2806,'chemistry','41.191.104.247',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:47','2019-04-14 21:59:47'),(2807,'biology','41.191.104.247',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:57','2019-04-14 22:02:53'),(2808,'biology','41.191.104.116',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:07:01','2019-04-14 22:10:51'),(2809,'currentaffairs','54.83.92.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:19:54','2019-04-14 22:19:54'),(2810,'english','41.191.107.43',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:31:31','2019-04-14 22:37:38'),(2811,'biology','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:38:27','2019-04-14 22:38:27'),(2812,'english','41.191.104.236',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:47:43','2019-04-14 22:51:24'),(2813,'english','41.191.107.215',86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:57:31','2019-04-21 07:04:12'),(2814,'english','41.191.104.122',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 23:14:59','2019-04-14 23:16:16'),(2815,'currentaffairs','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 04:56:40','2019-04-15 04:56:40'),(2816,'biology','41.191.104.236',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:06:52','2019-04-15 05:06:52'),(2817,'biology','41.191.107.143',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:09:27','2019-04-15 05:09:27'),(2818,'english','41.191.107.143',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:10:01','2019-04-17 21:35:39'),(2819,'chemistry','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:25:39','2019-04-15 05:25:39'),(2820,'chemistry','197.210.45.192',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:57:49','2019-04-15 05:58:34'),(2821,'english','41.191.107.151',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:44:16','2019-04-15 12:15:57'),(2822,'mathematics','41.191.104.230',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:47:22','2019-04-15 06:47:22'),(2823,'chemistry','100.24.41.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:39:29','2019-04-15 08:39:29'),(2824,'economics','100.24.41.153',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:41:00','2019-04-15 08:46:51'),(2825,'mathematics','41.191.107.45',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:19:04','2019-04-15 09:19:04'),(2826,'english','41.191.107.45',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:21:49','2019-04-15 09:23:48'),(2827,'physics','41.191.107.202',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:44:31','2019-04-15 09:44:31'),(2828,'accounting','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:45','2019-04-15 10:30:45'),(2829,'insurance','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:59','2019-04-15 10:30:59'),(2830,'accounting','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:29','2019-04-15 12:13:29'),(2831,'biology','54.146.247.244',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:34','2019-04-15 12:16:32'),(2832,'biology','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:17:48','2019-04-15 12:17:48'),(2833,'government','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:19:13','2019-04-15 12:19:13'),(2834,'mathematics','41.191.104.246',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:58:00','2019-04-15 12:58:00'),(2835,'english','41.191.104.246',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 13:05:40','2019-04-15 13:27:26'),(2836,'english','41.191.107.235',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:15:42','2019-04-15 14:15:42'),(2837,'english','41.191.107.149',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:19:44','2019-04-15 14:20:56'),(2838,'english','41.191.104.248',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:29:00','2019-04-15 14:31:19'),(2839,'english','41.191.107.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:32:49','2019-04-19 06:55:21'),(2840,'english','41.191.104.235',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:42:02','2019-04-17 08:31:05'),(2841,'mathematics','41.191.104.235',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:44:03','2019-04-15 14:44:48'),(2842,'english','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:39:05','2019-04-15 21:39:05'),(2843,'mathematics','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:41:15','2019-04-15 21:41:15'),(2844,'english','41.191.104.83',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:47:14','2019-04-15 21:48:53'),(2845,'english','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:51:15','2019-04-15 21:53:42'),(2846,'mathematics','41.191.107.201',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:59:07','2019-04-15 21:59:07'),(2847,'english','41.191.107.201',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:01:58','2019-04-15 22:03:34'),(2848,'mathematics','41.191.104.80',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:08:37','2019-04-18 08:45:25'),(2849,'english','41.191.104.80',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:11:48','2019-04-15 22:11:48'),(2850,'mathematics','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:24:37','2019-04-15 22:24:37'),(2851,'english','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:26:42','2019-04-15 22:26:42'),(2852,'mathematics','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2853,'commerce','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2854,'biology','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2855,'physics','34.207.128.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2856,'economics','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2857,'irk','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2858,'civiledu','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2859,'accounting','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2860,'chemistry','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:37:13'),(2861,'currentaffairs','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2862,'english','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2863,'government','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2864,'crk','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2865,'biology','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2866,'mathematics','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2867,'english','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2868,'chemistry','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2869,'government','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2870,'crk','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2871,'economics','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2872,'englishlit','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2873,'geography','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2874,'irk','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2875,'civiledu','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2876,'insurance','3.91.220.96',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2877,'insurance','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2878,'history','3.91.220.96',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2879,'history','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2880,'mathematics','54.224.201.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:37:58','2019-04-16 03:10:18'),(2881,'english','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2882,'accounting','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2883,'englishlit','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2884,'government','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2885,'crk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2886,'currentaffairs','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:59:59'),(2887,'commerce','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2888,'geography','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2889,'economics','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2890,'irk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2891,'civiledu','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2892,'history','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2893,'biology','54.224.201.145',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 03:10:11','2019-04-16 03:10:17'),(2894,'mathematics','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:12:18','2019-04-16 09:12:18'),(2895,'biology','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:29:02','2019-04-16 09:29:02'),(2896,'english','41.191.104.232',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:42:38','2019-04-16 09:48:20'),(2897,'english','41.191.107.41',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:49:42','2019-04-16 10:49:42'),(2898,'english','41.191.104.94',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:52:36','2019-04-16 11:05:20'),(2899,'mathematics','41.191.104.94',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:01:04','2019-04-16 13:37:18'),(2900,'english','41.191.107.223',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:14:00','2019-04-16 11:14:00'),(2901,'english','41.191.104.243',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:01:15','2019-04-16 13:01:15'),(2902,'english','41.191.104.113',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:04:04','2019-04-22 16:45:32'),(2903,'chemistry','157.55.39.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:39:34','2019-04-16 14:39:34'),(2904,'irk','54.226.182.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:47:43','2019-04-16 14:47:43'),(2905,'english','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:32:59'),(2906,'mathematics','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:46'),(2907,'accounting','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:50'),(2908,'biology','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:08'),(2909,'chemistry','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:33'),(2910,'currentaffairs','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:17'),(2911,'history','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:26'),(2912,'english','41.191.107.232',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-16 22:12:50','2020-01-17 15:50:46'),(2913,'mathematics','41.191.107.48',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:08:33','2019-04-17 05:08:33'),(2914,'english','41.191.107.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:11:56','2019-04-17 05:21:50'),(2915,'english','41.191.104.209',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:29:28','2019-04-17 05:35:08'),(2916,'english','41.191.104.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:38:16','2019-04-17 05:43:44'),(2917,'english','41.191.104.101',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:55:22','2019-04-17 05:57:06'),(2918,'english','41.191.104.215',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:08:35','2019-04-17 08:14:14'),(2919,'english','41.191.104.229',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:15:48','2019-04-17 08:15:48'),(2920,'english','41.191.107.157',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:54:44','2019-04-17 09:04:13'),(2921,'english','41.191.104.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:09:49','2019-04-17 09:14:17'),(2922,'english','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:34'),(2923,'mathematics','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:47'),(2924,'accounting','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2925,'englishlit','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:17'),(2926,'crk','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2927,'civiledu','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2928,'history','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:43'),(2929,'english','41.191.107.158',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:17:03','2019-04-17 09:21:36'),(2930,'english','41.191.104.79',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:43:16','2019-04-17 09:52:06'),(2931,'economics','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:54:34','2019-04-17 09:54:34'),(2932,'english','41.191.107.212',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:58:06','2019-04-18 18:02:13'),(2933,'biology','41.191.107.212',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:26','2019-04-17 10:10:02'),(2934,'chemistry','41.242.60.178',3655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:43','2019-04-18 16:24:22'),(2935,'mathematics','41.242.60.178',4368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:06:02','2019-04-18 16:14:42'),(2936,'history','41.191.107.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:11:59','2019-04-17 10:17:23'),(2937,'geography','41.242.60.178',4586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:46:59','2019-04-18 15:58:23'),(2938,'biology','41.242.60.178',3792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:47:33','2019-04-18 16:20:34'),(2939,'english','41.191.104.97',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 14:41:16','2019-04-17 14:41:16'),(2940,'chemistry','105.112.120.90',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:08','2019-04-17 19:01:28'),(2941,'crk','105.112.120.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:50','2019-04-17 18:54:50'),(2942,'chemistry','107.167.107.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:06:47','2019-04-18 08:06:48'),(2943,'english','41.242.60.178',10980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:10:26','2019-04-18 15:55:34'),(2944,'mathematics','105.112.22.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:05:20','2019-04-18 11:05:20'),(2945,'crk','41.242.60.178',5752,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:17:29','2019-04-18 15:57:03'),(2946,'chemistry','207.46.13.94',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-18 11:50:50','2019-12-16 22:19:20'),(2947,'chemistry','207.46.13.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:28','2019-04-18 11:52:29'),(2948,'chemistry','207.46.13.91',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:51','2019-04-18 11:52:52'),(2949,'chemistry','207.46.13.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:53:29','2019-04-18 11:53:29'),(2950,'english','104.133.10.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 12:22:48','2019-04-18 12:22:49'),(2951,'economics','41.242.60.178',4544,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:20','2019-04-18 15:59:44'),(2952,'irk','41.242.60.178',3510,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:42','2019-04-18 16:01:01'),(2953,'civiledu','41.242.60.178',4680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:03','2019-04-18 16:02:40'),(2954,'currentaffairs','41.242.60.178',4120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:25','2019-04-18 16:29:06'),(2955,'history','41.242.60.178',4000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:46','2019-04-18 16:13:14'),(2956,'commerce','41.242.60.178',4160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:30','2019-04-18 16:16:35'),(2957,'accounting','41.242.60.178',3955,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:52','2019-04-18 16:18:32'),(2958,'physics','41.242.60.178',3529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:35:37','2019-04-18 16:22:15'),(2959,'englishlit','41.242.60.178',3287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:20','2019-04-18 16:26:08'),(2960,'government','41.242.60.178',2998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:42','2019-04-18 16:27:48'),(2961,'english','41.191.104.254',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:11:36','2019-04-18 18:05:09'),(2962,'english','41.191.104.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:14:50','2019-04-18 15:14:50'),(2963,'english','41.191.107.222',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:36:08','2019-04-18 15:37:19'),(2964,'english','41.191.107.203',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:47:57','2019-04-28 08:22:11'),(2965,'mathematics','41.191.107.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:08:54','2019-04-18 16:08:54'),(2966,'english','41.191.107.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:11:13','2019-04-18 16:11:13'),(2967,'english','18.205.17.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:14:02','2019-04-18 17:14:02'),(2968,'crk','105.112.120.55',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:31:40','2019-04-18 17:32:05'),(2969,'english','41.191.104.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:37:57','2019-04-18 17:39:42'),(2970,'history','3.87.15.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 20:46:27','2019-04-18 20:46:27'),(2971,'chemistry','54.36.150.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 00:33:38','2019-04-19 00:33:38'),(2972,'mathematics','41.191.104.212',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:14:26','2019-04-19 03:14:26'),(2973,'biology','41.191.104.123',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:26:07','2019-04-19 03:26:39'),(2974,'currentaffairs','50.17.23.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:47:16','2019-04-19 03:47:16'),(2975,'economics','54.211.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 08:17:33','2019-04-19 08:17:33'),(2976,'chemistry','105.112.53.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:25:47','2019-04-19 11:25:47'),(2977,'english','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:28','2019-04-19 11:43:28'),(2978,'mathematics','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:34','2019-04-19 11:43:35'),(2979,'chemistry','129.56.87.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:45:39','2019-04-19 11:45:39'),(2980,'english','150.70.168.140',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:52:20','2019-04-19 11:52:20'),(2981,'chemistry','45.56.148.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:08:00','2019-04-19 12:08:00'),(2982,'chemistry','197.210.29.247',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:11:16','2019-04-19 12:11:16'),(2983,'chemistry','41.203.78.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:30:23','2019-04-19 12:31:44'),(2984,'chemistry','54.36.150.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 15:16:27','2019-04-19 15:16:27'),(2985,'chemistry','197.210.226.150',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:13:39','2019-04-19 17:13:39'),(2986,'chemistry','197.210.227.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:14:17','2019-04-19 17:14:17'),(2987,'chemistry','141.0.12.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 19:46:58','2019-04-19 19:46:58'),(2988,'chemistry','105.112.37.27',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:20:05','2019-04-19 21:26:36'),(2989,'physics','105.112.37.27',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:27:16','2019-04-19 21:28:59'),(2990,'chemistry','141.0.13.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:52:32','2019-04-19 21:52:32'),(2991,'chemistry','129.205.112.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:54:09','2019-04-19 21:54:09'),(2992,'chemistry','54.36.148.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 22:05:06','2019-04-19 22:05:06'),(2993,'accounting','3.81.231.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 03:16:50','2019-04-20 03:16:50'),(2994,'chemistry','197.210.53.127',62,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:17:30','2020-05-25 11:23:46'),(2995,'chemistry','46.229.168.145',7,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-04-20 06:50:25','2020-07-19 19:33:37'),(2996,'physics','3.84.223.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 06:58:19','2019-04-20 06:58:19'),(2997,'chemistry','129.205.112.93',82,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 07:41:38','2019-08-22 14:35:12'),(2998,'chemistry','54.36.149.78',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 10:51:52','2019-04-20 10:51:52'),(2999,'chemistry','197.210.45.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 11:27:41','2019-04-20 11:27:41'),(3000,'chemistry','141.0.13.88',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 12:34:07','2019-09-06 19:28:17'),(3001,'chemistry','197.149.95.94',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 14:34:54','2019-04-20 14:35:18'),(3002,'chemistry','197.210.52.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:06:20','2019-04-20 15:06:53'),(3003,'chemistry','197.210.53.251',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:07:19','2019-04-20 15:08:04'),(3004,'chemistry','105.112.68.65',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 18:16:36','2019-04-20 18:17:01'),(3005,'chemistry','213.205.240.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 20:44:50','2019-04-20 20:44:50'),(3006,'biology','66.249.69.154',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 01:47:39','2019-04-21 01:47:40'),(3007,'mathematics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:24','2019-04-21 02:39:48'),(3008,'commerce','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3009,'accounting','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3010,'physics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3011,'chemistry','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3012,'government','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3013,'geography','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:49'),(3014,'irk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3015,'currentaffairs','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:39','2019-04-21 02:39:41'),(3016,'biology','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:48','2019-04-21 02:39:48'),(3017,'crk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3018,'economics','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3019,'english','54.162.77.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:51','2019-04-21 02:39:51'),(3020,'chemistry','207.46.13.23',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 06:08:10','2019-04-21 06:08:10'),(3021,'chemistry','40.77.167.30',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 07:33:49','2019-04-21 07:33:49'),(3022,'chemistry','197.210.52.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:52:14','2019-04-21 20:54:39'),(3023,'mathematics','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:06','2019-04-21 20:54:06'),(3024,'chemistry','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:30','2019-04-21 20:54:30'),(3025,'chemistry','3.95.160.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:01:30','2019-04-21 21:01:30'),(3026,'mathematics','197.210.52.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:08:15','2019-04-21 21:08:15'),(3027,'geography','18.212.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 22:48:55','2019-04-21 22:48:55'),(3028,'english','3.90.10.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 00:18:21','2019-04-22 00:18:21'),(3029,'mathematics','41.191.104.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:45:03','2019-04-22 16:45:03'),(3030,'biology','41.191.104.113',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:47:55','2019-04-22 16:47:55'),(3031,'chemistry','54.36.149.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 18:08:13','2019-04-22 18:08:13'),(3032,'economics','3.91.230.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 21:54:59','2019-04-22 21:54:59'),(3033,'english','3.92.201.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 00:59:05','2019-04-23 00:59:05'),(3034,'biology','66.249.66.158',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 01:15:09','2019-07-28 01:21:20'),(3035,'mathematics','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:10','2019-04-23 03:28:10'),(3036,'civiledu','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:12','2019-04-23 03:28:12'),(3037,'physics','18.212.208.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:29:49','2019-04-23 04:14:14'),(3038,'commerce','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:49:07','2019-04-23 03:49:07'),(3039,'crk','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:57:30','2019-04-23 03:57:30'),(3040,'history','54.159.47.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 21:59:22','2019-04-23 21:59:22'),(3041,'irk','52.204.101.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 03:42:30','2019-04-24 03:42:30'),(3042,'chemistry','207.46.13.180',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:12','2019-04-24 08:03:12'),(3043,'chemistry','207.46.13.159',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:17','2019-04-24 08:03:17'),(3044,'chemistry','207.46.13.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:22','2019-04-24 08:03:22'),(3045,'chemistry','207.46.13.87',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:28','2019-08-04 15:43:48'),(3046,'english','66.249.66.158',87,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-25 18:26:25','2020-01-23 20:32:43'),(3047,'chemistry','1.127.110.152',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 00:54:05','2019-04-26 00:54:20'),(3048,'chemistry','40.77.167.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 03:53:28','2019-04-26 03:53:28'),(3049,'currentaffairs','3.90.189.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 05:24:35','2019-04-26 05:24:35'),(3050,'chemistry','197.210.44.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 10:16:42','2019-04-26 10:16:42'),(3051,'chemistry','1.127.106.232',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:04:42','2019-04-26 12:04:42'),(3052,'physics','1.127.106.232',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:40:22','2019-04-26 12:47:18'),(3053,'chemistry','46.229.168.138',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-26 13:52:16','2020-02-26 17:26:37'),(3054,'mathematics','1.127.109.88',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:09:51','2019-04-27 00:22:30'),(3055,'commerce','1.127.109.88',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:23:12','2019-04-27 00:24:06'),(3056,'biology','1.127.109.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:47:44','2019-04-27 00:47:44'),(3057,'chemistry','40.77.167.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:58:09','2019-04-27 00:58:09'),(3058,'physics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:19'),(3059,'english','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:06'),(3060,'government','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3061,'accounting','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3062,'biology','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3063,'crk','3.89.242.31',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3064,'chemistry','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3065,'geography','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:14'),(3066,'englishlit','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3067,'economics','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3068,'irk','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3069,'currentaffairs','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3070,'history','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3071,'mathematics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:22','2019-04-27 01:11:29'),(3072,'commerce','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:31','2019-04-27 01:12:19'),(3073,'biology','100.25.216.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 02:25:13','2019-04-27 02:25:13'),(3074,'crk','3.82.139.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 06:35:55','2019-04-27 06:35:55'),(3075,'chemistry','46.229.168.154',17,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-27 07:27:19','2020-03-26 03:24:26'),(3076,'commerce','52.91.249.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 08:35:06','2019-04-27 08:35:06'),(3077,'currentaffairs','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 09:50:55','2019-04-27 09:50:55'),(3078,'chemistry','154.118.65.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:30','2019-04-27 10:57:30'),(3079,'commerce','34.228.140.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:38','2019-04-27 10:57:38'),(3080,'biology','1.127.106.17',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:45:45','2019-04-27 12:46:43'),(3081,'mathematics','1.127.106.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:47:05','2019-04-27 12:48:52'),(3082,'englishlit','52.23.198.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 13:44:10','2019-04-27 13:44:10'),(3083,'chemistry','66.249.73.80',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 21:38:40','2019-04-27 21:38:40'),(3084,'mathematics','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3085,'english','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3086,'accounting','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3087,'physics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3088,'chemistry','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3089,'biology','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3090,'government','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3091,'economics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3092,'civiledu','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3093,'insurance','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:12'),(3094,'chemistry','41.203.78.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 08:55:23','2019-04-28 08:55:37'),(3095,'chemistry','41.190.2.64',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:52:36','2019-04-28 11:56:48'),(3096,'chemistry','41.190.3.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:56:16','2019-04-28 11:56:16'),(3097,'chemistry','157.55.39.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 21:48:24','2019-04-28 21:48:24'),(3098,'chemistry','40.77.167.71',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-29 06:23:21','2019-11-07 16:42:12'),(3099,'chemistry','41.190.2.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:39:52','2019-04-29 10:39:52'),(3100,'biology','41.191.104.87',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:40:48','2019-04-29 10:40:48'),(3101,'insurance','52.204.170.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 21:28:49','2019-04-29 21:28:49'),(3102,'crk','3.85.56.1',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 22:14:35','2019-04-29 22:14:35'),(3103,'accounting','3.85.173.186',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 23:37:13','2019-04-29 23:37:13'),(3104,'chemistry','157.55.39.12',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 07:21:41','2019-06-12 00:41:53'),(3105,'commerce','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3106,'biology','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3107,'physics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3108,'government','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3109,'irk','34.224.60.217',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:24:47'),(3110,'currentaffairs','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3111,'history','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3112,'english','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3113,'crk','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3114,'economics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3115,'civiledu','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3116,'insurance','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3117,'geography','34.224.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:33:31','2019-04-30 09:33:31'),(3118,'chemistry','46.229.168.151',51,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-30 09:38:26','2019-12-01 18:07:27'),(3119,'chemistry','154.68.194.212',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 16:36:27','2019-04-30 16:37:47'),(3120,'chemistry','157.55.39.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 04:27:55','2019-05-01 04:27:55'),(3121,'chemistry','54.36.148.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 05:05:50','2019-05-01 05:05:50'),(3122,'biology','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3123,'physics','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:50'),(3124,'englishlit','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3125,'government','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3126,'civiledu','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3127,'currentaffairs','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3128,'history','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3129,'mathematics','54.226.59.135',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:23','2019-05-01 07:01:57'),(3130,'english','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:54'),(3131,'commerce','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:46'),(3132,'accounting','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3133,'irk','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3134,'geography','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:42','2019-05-01 07:01:56'),(3135,'insurance','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:58:08','2019-05-01 06:58:08'),(3136,'chemistry','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 07:01:56','2019-05-01 07:01:56'),(3137,'chemistry','197.210.45.72',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:45:40','2019-05-01 10:59:40'),(3138,'mathematics','197.210.45.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:53:54','2019-05-01 10:55:42'),(3139,'english','197.210.45.72',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:55:54','2019-05-01 10:57:36'),(3140,'biology','41.191.104.237',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 14:18:27','2019-05-01 14:18:27'),(3141,'chemistry','197.210.54.37',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:20','2019-05-02 10:53:48'),(3142,'chemistry','197.210.54.223',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:32','2019-05-02 10:47:10'),(3143,'chemistry','197.210.55.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 10:14:45','2019-05-02 10:50:02'),(3144,'chemistry','197.210.226.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:20:04','2019-05-02 11:20:04'),(3145,'chemistry','197.210.226.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:22:30','2019-05-02 11:22:30'),(3146,'chemistry','197.210.8.29',630,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:34:06','2019-05-02 12:14:01'),(3147,'chemistry','197.210.54.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 13:47:41','2019-05-02 13:48:21'),(3148,'chemistry','129.205.112.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 04:12:08','2019-05-03 04:12:09'),(3149,'chemistry','197.210.29.46',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 07:52:22','2019-05-03 08:00:45'),(3150,'chemistry','197.210.54.222',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:06:50','2019-05-03 09:26:09'),(3151,'chemistry','197.210.55.133',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:07:57','2019-05-03 09:13:11'),(3152,'chemistry','197.210.54.105',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:11:28','2019-05-03 09:28:30'),(3153,'chemistry','197.210.55.36',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:54:00','2019-05-03 08:55:53'),(3154,'mathematics','105.112.10.87',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 11:24:44','2019-05-03 11:24:44'),(3155,'chemistry','197.210.60.42',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 12:22:25','2019-05-03 13:34:02'),(3156,'mathematics','197.210.60.42',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 13:36:32','2019-05-03 13:54:05'),(3157,'mathematics','197.210.55.133',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:55:08','2019-05-04 06:23:05'),(3158,'mathematics','197.210.54.38',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:57:02','2019-05-04 06:24:02'),(3159,'mathematics','197.210.54.132',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:59:05','2019-05-04 06:07:02'),(3160,'mathematics','197.210.54.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 06:25:03','2019-05-04 06:25:03'),(3161,'chemistry','41.190.3.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 12:28:58','2019-05-04 12:28:58'),(3162,'chemistry','197.210.44.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 15:39:23','2019-05-05 15:39:23'),(3163,'chemistry','40.77.167.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 21:50:59','2019-07-20 03:21:08'),(3164,'mathematics','18.204.19.147',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3165,'physics','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3166,'accounting','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:49'),(3167,'englishlit','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3168,'economics','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3169,'irk','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3170,'insurance','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3171,'geography','18.204.19.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:44','2019-05-06 23:11:44'),(3172,'english','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:08'),(3173,'commerce','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:01'),(3174,'chemistry','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3175,'currentaffairs','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3176,'accounting','23.22.231.188',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 02:31:16','2019-05-08 02:31:16'),(3177,'insurance','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 13:09:16','2019-05-08 13:09:17'),(3178,'physics','66.249.66.158',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 14:31:06','2019-05-08 14:31:06'),(3179,'biology','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 22:48:34','2019-05-08 22:48:34'),(3180,'economics','105.112.38.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 13:52:26','2019-05-09 13:52:26'),(3181,'mathematics','3.80.87.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 18:51:06','2019-05-09 18:51:06'),(3182,'chemistry','187.85.6.94',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 20:51:54','2019-05-09 20:52:08'),(3183,'englishlit','54.196.16.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 00:29:52','2019-05-10 00:29:52'),(3184,'englishlit','105.112.106.10',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 06:29:03','2019-05-10 06:29:03'),(3185,'chemistry','129.56.111.134',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 07:46:16','2019-05-10 07:49:26'),(3186,'chemistry','129.205.112.138',591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 09:28:33','2019-05-10 11:48:10'),(3187,'chemistry','207.46.13.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 10:25:32','2019-05-10 10:25:32'),(3188,'english','129.205.112.138',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 11:48:25','2019-05-10 11:52:58'),(3189,'english','129.205.112.140',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 18:19:45','2019-05-10 18:19:45'),(3190,'chemistry','172.90.37.138',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:27:48','2019-05-13 00:36:13'),(3191,'biology','172.90.37.138',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:31:17','2019-05-11 14:31:17'),(3192,'geography','3.93.186.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 17:05:27','2019-05-11 17:05:27'),(3193,'chemistry','54.197.219.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 21:40:32','2019-05-11 21:40:32'),(3194,'english','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3195,'mathematics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3196,'commerce','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3197,'biology','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3198,'physics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3199,'economics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3200,'irk','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3201,'economics','54.164.105.120',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 01:32:51','2019-05-12 01:32:51'),(3202,'biology','66.249.64.176',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-12 05:47:32','2019-09-21 02:44:48'),(3203,'mathematics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3204,'commerce','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3205,'biology','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3206,'englishlit','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3207,'economics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3208,'civiledu','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3209,'history','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3210,'chemistry','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3211,'government','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3212,'crk','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3213,'geography','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3214,'civiledu','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3215,'currentaffairs','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3216,'history','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3217,'mathematics','3.81.224.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:05:34','2019-05-12 07:05:34'),(3218,'english','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3219,'mathematics','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:59:25'),(3220,'commerce','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:48'),(3221,'physics','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:27'),(3222,'crk','34.229.209.208',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3223,'irk','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3224,'currentaffairs','34.229.209.208',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3225,'chemistry','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:58:54'),(3226,'government','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:45:06'),(3227,'economics','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:49:05'),(3228,'biology','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:49:05'),(3229,'insurance','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:58:54'),(3230,'accounting','34.229.209.208',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:38','2019-05-12 09:58:38'),(3231,'geography','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:42','2019-05-12 09:58:54'),(3232,'civiledu','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3233,'history','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3234,'currentaffairs','54.80.195.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 10:51:10','2019-05-12 10:51:10'),(3235,'chemistry','46.229.168.131',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 23:53:27','2020-05-04 19:51:47'),(3236,'biology','54.146.12.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 01:52:08','2019-05-13 01:52:08'),(3237,'physics','3.82.108.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 03:15:59','2019-05-13 03:15:59'),(3238,'physics','54.152.180.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 06:31:46','2019-05-13 06:31:46'),(3239,'english','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 07:47:11','2019-05-13 07:47:11'),(3240,'mathematics','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 08:15:22','2019-05-13 08:15:22'),(3241,'commerce','3.84.15.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 09:46:15','2019-05-13 09:46:15'),(3242,'commerce','54.157.233.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 12:58:13','2019-05-13 12:58:13'),(3243,'irk','54.175.238.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 17:30:45','2019-05-13 17:30:45'),(3244,'economics','18.206.157.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 19:50:15','2019-05-13 19:50:15'),(3245,'accounting','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3246,'englishlit','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3247,'government','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3248,'crk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3249,'geography','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3250,'irk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3251,'currentaffairs','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3252,'economics','18.234.203.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:23:50','2019-05-14 09:23:50'),(3253,'physics','66.249.64.180',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-14 11:36:21','2019-08-24 00:09:49'),(3254,'biology','54.221.14.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 17:29:34','2019-05-14 17:29:34'),(3255,'chemistry','46.229.168.162',43,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-15 05:36:54','2020-03-22 22:42:10'),(3256,'crk','3.94.115.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 08:37:16','2019-05-15 08:37:16'),(3257,'english','54.159.102.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 10:04:02','2019-05-15 10:04:02'),(3258,'currentaffairs','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:34:44','2019-05-15 14:34:44'),(3259,'geography','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:57:11','2019-05-15 14:57:11'),(3260,'government','54.224.250.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 18:04:50','2019-05-15 18:04:50'),(3261,'government','3.84.0.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:54:43','2019-05-15 19:54:43'),(3262,'chemistry','77.88.47.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:56:40','2019-05-15 19:56:40'),(3263,'englishlit','3.84.53.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 23:23:15','2019-05-15 23:23:15'),(3264,'crk','107.20.105.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:20:12','2019-05-16 00:20:12'),(3265,'chemistry','34.228.195.54',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:22:33','2019-05-16 03:09:28'),(3266,'chemistry','40.77.167.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:07:33','2019-05-16 11:07:33'),(3267,'englishlit','52.202.251.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:24:33','2019-05-16 11:24:33'),(3268,'chemistry','5.255.250.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-16 21:12:24','2019-08-21 01:57:50'),(3269,'accounting','54.92.151.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 21:37:19','2019-05-16 21:37:19'),(3270,'chemistry','46.229.168.146',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 02:19:29','2020-04-16 08:40:54'),(3271,'chemistry','46.229.168.139',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 17:44:01','2020-05-30 04:55:22'),(3272,'commerce','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3273,'government','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3274,'crk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3275,'irk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3276,'insurance','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3277,'currentaffairs','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3278,'history','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3279,'mathematics','105.112.52.3',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 21:46:44','2019-05-17 21:46:44'),(3280,'chemistry','54.36.148.94',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-18 05:43:40','2020-05-29 00:37:58'),(3281,'chemistry','3.84.208.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 09:11:50','2019-05-18 09:11:50'),(3282,'chemistry','40.77.167.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 16:21:00','2019-05-18 16:21:00'),(3283,'accounting','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:09','2019-05-18 18:40:09'),(3284,'history','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:52','2019-05-18 18:40:52'),(3285,'mathematics','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:39'),(3286,'english','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:50'),(3287,'commerce','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:44'),(3288,'physics','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:42'),(3289,'biology','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3290,'crk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3291,'irk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3292,'currentaffairs','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3293,'economics','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3294,'history','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3295,'accounting','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:37','2019-05-18 19:44:37'),(3296,'englishlit','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:47','2019-05-18 19:44:47'),(3297,'insurance','3.80.150.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 22:44:14','2019-05-18 22:44:14'),(3298,'chemistry','157.55.39.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 04:44:12','2019-05-19 04:44:12'),(3299,'history','3.94.79.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 06:05:58','2019-05-19 06:05:58'),(3300,'chemistry','40.77.167.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 16:57:00','2019-05-19 16:57:00'),(3301,'insurance','54.163.157.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 03:05:04','2019-05-20 03:05:04'),(3302,'chemistry','157.55.39.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 13:59:47','2019-05-20 13:59:47'),(3303,'english','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3304,'mathematics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3305,'biology','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3306,'physics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3307,'crk','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3308,'economics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3309,'insurance','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3310,'english','54.91.198.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 17:32:47','2019-05-21 17:32:47'),(3311,'physics','54.145.4.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 18:22:25','2019-05-21 18:22:25'),(3312,'mathematics','54.234.10.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 02:40:52','2019-05-22 02:40:52'),(3313,'mathematics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3314,'physics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3315,'crk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3316,'geography','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3317,'irk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3318,'civiledu','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3319,'history','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3320,'chemistry','95.216.226.236',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 05:15:03','2019-05-25 05:21:26'),(3321,'government','52.55.44.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 07:55:42','2019-05-23 07:55:42'),(3322,'civiledu','54.208.169.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 10:29:28','2019-05-23 10:29:28'),(3323,'chemistry','139.78.253.195',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:06:11','2019-05-23 23:22:30'),(3324,'chemistry','3.85.143.239',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:44:40','2019-05-23 21:04:27'),(3325,'chemistry','40.77.167.134',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 23:49:56','2019-07-17 20:20:15'),(3326,'chemistry','54.36.149.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 01:52:33','2019-05-24 01:52:33'),(3327,'english','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3328,'biology','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3329,'chemistry','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3330,'englishlit','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3331,'geography','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3332,'economics','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3333,'irk','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3334,'chemistry','173.212.246.232',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 07:36:57','2019-05-24 07:37:03'),(3335,'chemistry','197.210.47.154',119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 16:46:41','2019-05-24 17:36:26'),(3336,'chemistry','185.20.6.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:01:25','2019-05-24 18:01:25'),(3337,'chemistry','197.210.54.59',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:29:11','2019-05-24 18:29:11'),(3338,'chemistry','197.210.55.73',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:36:24','2019-05-24 18:37:10'),(3339,'currentaffairs','197.210.55.73',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:38:00','2019-05-24 18:38:00'),(3340,'chemistry','197.210.227.35',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:20:02','2019-05-25 14:21:17'),(3341,'chemistry','197.210.226.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:21:41','2019-05-25 14:22:30'),(3342,'mathematics','197.210.227.35',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:23:25','2019-05-25 14:25:38'),(3343,'mathematics','197.210.226.250',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:24:57','2019-05-25 14:24:57'),(3344,'chemistry','207.46.13.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-26 03:26:44','2019-08-07 06:55:06'),(3345,'chemistry','54.36.148.190',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 05:37:38','2019-05-28 05:37:38'),(3346,'chemistry','197.253.9.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 10:08:10','2019-05-28 10:08:10'),(3347,'chemistry','105.112.41.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 21:38:58','2019-05-29 21:38:58'),(3348,'chemistry','93.158.161.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 23:17:18','2019-05-29 23:17:18'),(3349,'chemistry','62.210.202.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 07:54:02','2019-05-30 07:54:08'),(3350,'chemistry','197.210.227.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:02','2019-05-30 10:34:02'),(3351,'chemistry','197.210.226.60',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:40','2019-05-30 10:34:40'),(3352,'chemistry','100.43.85.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 19:55:06','2019-05-30 19:55:06'),(3353,'chemistry','207.46.13.20',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-31 10:40:41','2019-09-14 00:58:44'),(3354,'chemistry','141.0.13.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-31 10:57:54','2019-05-31 10:57:54'),(3355,'biology','105.112.46.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-01 12:10:54','2019-06-01 12:19:36'),(3356,'chemistry','157.55.39.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-03 17:51:53','2019-06-03 17:51:53'),(3357,'accounting','209.205.209.34',522,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 19:18:46','2020-05-29 19:55:11'),(3358,'economics','209.205.209.34',1892,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 20:32:30','2020-05-30 17:12:57'),(3359,'chemistry','157.55.39.53',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 21:15:44','2019-10-07 21:10:09'),(3360,'history','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:18:40','2019-06-05 02:18:40'),(3361,'irk','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:42:34','2019-06-05 02:42:34'),(3362,'accounting','54.234.117.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 06:15:30','2019-06-05 06:15:30'),(3363,'accounting','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:14:25','2019-06-05 08:14:25'),(3364,'geography','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:53:33','2019-06-05 08:53:33'),(3365,'accounting','3.84.113.32',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:33','2019-06-05 09:00:49'),(3366,'chemistry','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:39','2019-06-05 09:00:39'),(3367,'insurance','54.146.5.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 11:54:23','2019-06-05 11:54:23'),(3368,'chemistry','105.112.53.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 13:10:39','2019-06-05 13:12:41'),(3369,'chemistry','100.43.85.122',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-05 13:15:48','2020-03-08 10:35:22'),(3370,'chemistry','76.1.76.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 14:34:50','2019-06-05 14:35:18'),(3371,'chemistry','197.210.55.175',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:11:03','2019-06-05 16:12:43'),(3372,'chemistry','197.210.54.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:12:00','2019-06-05 16:12:00'),(3373,'mathematics','197.211.32.242',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 20:45:55','2019-06-05 20:45:56'),(3374,'currentaffairs','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:19:16','2019-06-05 23:19:16'),(3375,'insurance','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:31:01','2019-06-05 23:31:01'),(3376,'englishlit','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:36:02','2019-06-05 23:36:02'),(3377,'chemistry','97.116.149.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-07 14:42:32','2019-06-07 14:42:32'),(3378,'chemistry','207.46.13.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 02:59:43','2019-06-08 02:59:43'),(3379,'mathematics','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3380,'accounting','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3381,'biology','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3382,'chemistry','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3383,'geography','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3384,'civiledu','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3385,'currentaffairs','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3386,'chemistry','54.226.148.240',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:42:27','2019-06-08 11:42:27'),(3387,'biology','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3388,'government','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3389,'crk','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3390,'economics','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3391,'civiledu','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3392,'insurance','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3393,'currentaffairs','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3394,'chemistry','41.217.123.66',142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:01','2019-06-08 15:05:05'),(3395,'english','41.217.123.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:48','2019-06-08 13:21:48'),(3396,'chemistry','197.242.107.128',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:49:30','2019-06-08 15:55:27'),(3397,'english','197.242.107.128',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:56:31','2019-06-08 15:56:36'),(3398,'english','197.242.108.36',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 16:54:19','2019-06-08 16:57:53'),(3399,'physics','197.242.116.150',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:11:54','2019-06-08 20:49:56'),(3400,'english','197.242.116.150',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:31:40','2019-06-08 21:06:14'),(3401,'chemistry','197.242.116.150',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:36:15','2019-06-08 21:06:22'),(3402,'physics','162.213.3.221',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-09 05:09:58','2019-06-09 05:09:58'),(3403,'chemistry','105.112.23.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 09:15:53','2019-06-10 13:05:55'),(3404,'chemistry','197.149.92.146',56,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-10 12:11:23','2020-02-25 16:32:20'),(3405,'chemistry','41.75.207.170',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 12:27:15','2019-06-14 07:43:40'),(3406,'chemistry','207.46.13.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 22:01:38','2019-06-10 22:01:38'),(3407,'chemistry','40.77.167.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 08:14:51','2019-06-11 08:14:51'),(3408,'chemistry','129.56.38.156',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 21:53:28','2019-06-11 21:54:00'),(3409,'irk','34.201.166.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:03:53','2019-06-12 03:03:53'),(3410,'biology','3.94.159.33',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:45:38','2019-06-12 04:28:00'),(3411,'english','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:51:24','2019-06-12 03:51:24'),(3412,'accounting','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:52:12','2019-06-12 03:52:12'),(3413,'crk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:20:40','2019-06-12 04:20:40'),(3414,'geography','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:38:56','2019-06-12 04:38:56'),(3415,'government','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:41:50','2019-06-12 04:41:50'),(3416,'irk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:42:17','2019-06-12 04:42:17'),(3417,'physics','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:51:23','2019-06-12 04:51:23'),(3418,'english','154.118.8.161',198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:36:41','2019-06-12 14:02:53'),(3419,'chemistry','154.118.8.161',91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:39:30','2019-06-12 12:18:14'),(3420,'physics','154.118.8.161',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:40:15','2019-06-12 12:04:32'),(3421,'chemistry','54.83.120.25',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 21:54:54','2019-06-12 22:18:00'),(3422,'chemistry','3.90.108.129',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 22:47:16','2019-06-13 00:16:33'),(3423,'chemistry','46.229.168.142',84,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-13 04:36:54','2020-07-10 20:02:07'),(3424,'chemistry','41.78.172.115',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 15:09:45','2019-06-14 12:18:50'),(3425,'chemistry','105.112.106.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:18','2019-06-13 18:32:18'),(3426,'english','105.112.106.235',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:48','2019-06-13 18:32:50'),(3427,'english','41.75.207.170',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:42:12','2019-06-14 07:42:12'),(3428,'physics','41.75.207.170',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:43:30','2019-06-14 07:44:40'),(3429,'physics','66.249.83.16',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-14 08:47:03','2019-09-05 01:30:44'),(3430,'chemistry','105.112.33.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 20:32:24','2019-06-14 20:32:24'),(3431,'english','197.242.114.252',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 05:49:46','2019-06-15 06:28:24'),(3432,'chemistry','105.112.45.8',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 08:23:34','2019-06-15 08:24:00'),(3433,'english','41.217.116.6',99,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:13:31','2019-06-15 14:39:43'),(3434,'biology','18.206.190.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:27:51','2019-06-15 12:27:51'),(3435,'chemistry','3.81.65.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 13:16:11','2019-06-15 13:16:11'),(3436,'accounting','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:47','2019-06-15 14:20:47'),(3437,'english','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:58','2019-06-15 14:20:58'),(3438,'chemistry','197.210.52.46',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-15 14:26:37','2020-02-06 08:45:34'),(3439,'chemistry','197.210.53.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:27:22','2019-06-15 14:27:22'),(3440,'currentaffairs','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:46:51','2019-06-15 14:46:51'),(3441,'mathematics','34.239.126.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 15:58:44','2019-06-15 15:58:44'),(3442,'chemistry','197.210.53.178',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:40:54','2019-06-15 21:42:38'),(3443,'chemistry','197.210.52.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:42:12','2019-06-15 21:42:32'),(3444,'chemistry','46.229.168.147',51,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-15 21:50:41','2020-06-11 21:19:10'),(3445,'chemistry','197.210.53.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:20:17','2019-06-15 22:20:17'),(3446,'biology','54.237.246.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:32:27','2019-06-15 22:32:27'),(3447,'biology','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:11:58','2019-06-15 23:11:58'),(3448,'irk','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:27:36','2019-06-15 23:27:36'),(3449,'physics','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 00:17:33','2019-06-16 00:17:33'),(3450,'irk','34.228.23.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 01:44:49'),(3451,'accounting','34.228.23.109',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 02:01:41'),(3452,'chemistry','45.55.21.112',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:27:31','2019-06-16 02:28:29'),(3453,'chemistry','105.14.195.18',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:48:24','2019-06-17 01:41:38'),(3454,'physics','66.249.83.18',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-16 12:16:03','2019-09-15 16:06:04'),(3455,'englishlit','54.164.133.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 17:50:46','2019-06-16 17:50:46'),(3456,'mathematics','54.196.189.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:52'),(3457,'mathematics','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3458,'english','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3459,'englishlit','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:55','2019-06-16 19:48:55'),(3460,'chemistry','206.189.171.227',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 02:00:46','2019-06-17 02:02:05'),(3461,'chemistry','41.190.16.26',6367,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 07:08:02','2019-07-23 11:35:50'),(3462,'mathematics','3.91.71.81',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:35:54','2019-06-17 09:22:24'),(3463,'englishlit','3.91.71.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:37:04','2019-06-17 09:22:24'),(3464,'english','3.91.71.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 09:10:38','2019-06-17 09:10:38'),(3465,'mathematics','107.21.78.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 10:58:09','2019-06-17 10:58:09'),(3466,'currentaffairs','34.238.242.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 13:56:42','2019-06-17 13:56:42'),(3467,'commerce','34.227.190.206',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 21:33:57','2019-06-17 21:33:57'),(3468,'chemistry','66.249.83.16',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-18 02:33:50','2019-11-06 14:40:47'),(3469,'currentaffairs','3.91.183.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 06:29:09','2019-06-18 06:29:09'),(3470,'chemistry','66.249.69.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 07:22:19','2019-06-18 07:22:19'),(3471,'economics','41.190.16.26',4519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:08:32','2019-07-23 11:57:15'),(3472,'commerce','41.190.16.26',5932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:28','2019-07-23 11:33:05'),(3473,'english','41.190.16.26',6405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:29','2019-07-23 11:25:21'),(3474,'chemistry','100.43.90.165',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 06:10:09','2019-06-19 06:10:09'),(3475,'mathematics','41.190.16.26',1164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 10:57:58','2019-07-23 11:30:59'),(3476,'chemistry','129.56.101.165',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 17:58:38','2019-06-19 18:00:41'),(3477,'chemistry','82.145.223.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:25','2019-06-20 01:08:25'),(3478,'chemistry','41.203.78.211',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:32','2019-06-20 01:08:32'),(3479,'accounting','41.190.16.26',2791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 12:19:54','2019-07-23 11:33:51'),(3480,'biology','41.190.16.26',3586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 13:01:43','2019-07-23 11:34:35'),(3481,'biology','66.249.66.208',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-21 06:35:47','2019-10-29 04:39:15'),(3482,'mathematics','34.229.108.180',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-21 23:58:00','2019-06-21 23:58:00'),(3483,'chemistry','157.55.39.173',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-22 05:09:56','2019-06-22 05:09:56'),(3484,'chemistry','100.43.85.201',11,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 16:57:01','2019-12-08 06:55:23'),(3485,'chemistry','5.255.250.164',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 22:01:02','2019-09-08 03:42:02'),(3486,'chemistry','46.229.168.152',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-23 06:10:52','2020-05-29 19:42:11'),(3487,'chemistry','77.88.47.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 13:02:24','2019-06-23 13:02:24'),(3488,'chemistry','207.46.13.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 20:52:25','2019-06-23 20:52:25'),(3489,'physics','41.190.16.26',1049,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 08:37:20','2019-07-23 11:35:12'),(3490,'chemistry','93.158.166.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 11:27:50','2019-06-24 11:27:50'),(3491,'english','3.90.20.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 17:28:04','2019-06-24 17:28:04'),(3492,'irk','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:07:15','2019-06-24 19:07:15'),(3493,'commerce','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:10:29','2019-06-24 19:10:29'),(3494,'geography','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:24:40','2019-06-24 19:24:40'),(3495,'chemistry','207.46.13.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 21:37:18','2019-06-24 21:37:18'),(3496,'biology','52.90.179.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 22:59:08','2019-06-24 22:59:08'),(3497,'economics','3.89.60.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 00:47:23','2019-06-25 00:47:23'),(3498,'mathematics','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 04:00:29','2019-06-25 04:00:29'),(3499,'englishlit','41.190.16.26',1730,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:34','2019-07-23 11:44:00'),(3500,'government','41.190.16.26',1944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:47','2019-07-23 11:47:36'),(3501,'crk','41.190.16.26',2466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:59','2019-07-23 11:48:21'),(3502,'geography','41.190.16.26',1488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:13','2019-07-23 11:57:01'),(3503,'irk','41.190.16.26',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:46','2019-07-23 11:57:27'),(3504,'civiledu','41.190.16.26',960,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:58','2019-07-23 11:57:42'),(3505,'currentaffairs','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:26','2019-07-23 11:58:09'),(3506,'history','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:40','2019-07-23 11:58:22'),(3507,'chemistry','154.120.89.121',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 08:40:28','2019-06-25 08:55:46'),(3508,'chemistry','100.43.91.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 09:22:05','2019-06-25 09:22:05'),(3509,'chemistry','46.229.168.148',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 14:14:29','2019-08-05 06:27:37'),(3510,'chemistry','37.9.87.211',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 07:15:23','2019-06-26 07:15:23'),(3511,'chemistry','154.113.84.24',291,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-26 08:20:23','2019-11-05 14:51:24'),(3512,'biology','154.113.84.24',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:12:21','2019-06-26 14:55:23'),(3513,'english','154.113.84.24',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:13:32','2019-06-26 14:55:25'),(3514,'english','105.112.53.54',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:32:43','2019-06-26 14:23:50'),(3515,'biology','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:47','2019-06-26 14:23:47'),(3516,'physics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:51','2019-06-26 14:23:52'),(3517,'chemistry','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:53','2019-06-26 14:23:53'),(3518,'mathematics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:54','2019-06-26 14:23:54'),(3519,'economics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:56','2019-06-26 14:23:56'),(3520,'physics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:26','2019-06-26 14:55:26'),(3521,'mathematics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:28','2019-06-26 14:55:29'),(3522,'economics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:30','2019-06-26 14:55:30'),(3523,'chemistry','41.217.123.115',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:22','2019-06-26 18:34:34'),(3524,'history','41.217.123.115',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:45','2019-06-26 18:04:21'),(3525,'chemistry','207.46.13.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 18:31:26','2019-06-26 18:31:26'),(3526,'mathematics','197.210.243.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:11:39','2019-06-27 19:11:39'),(3527,'english','197.210.243.239',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:12:15','2019-06-27 19:14:45'),(3528,'economics','197.210.243.239',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:14:54','2019-06-27 19:16:28'),(3529,'chemistry','185.26.180.221',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:56:48','2019-06-27 19:56:48'),(3530,'chemistry','77.88.5.10',4,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 01:59:49','2019-09-18 15:11:44'),(3531,'chemistry','105.112.18.14',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:46','2019-06-28 03:11:47'),(3532,'biology','105.112.18.14',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:52','2019-06-28 03:13:33'),(3533,'chemistry','40.77.167.115',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 03:52:03','2020-03-19 20:45:55'),(3534,'economics','197.210.58.211',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 04:41:14','2019-06-28 04:44:00'),(3535,'chemistry','54.36.150.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 16:41:57','2019-06-28 16:41:57'),(3536,'chemistry','54.36.150.166',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 19:07:14','2019-06-28 19:07:14'),(3537,'history','154.120.95.55',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 22:43:11','2019-06-28 22:43:11'),(3538,'chemistry','66.249.64.176',131,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 23:46:36','2019-09-30 03:33:36'),(3539,'chemistry','107.3.154.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 02:57:34','2019-06-30 05:13:41'),(3540,'chemistry','40.77.167.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 05:06:27','2019-06-29 05:06:27'),(3541,'civiledu','52.207.228.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 07:20:25','2019-06-29 07:20:25'),(3542,'englishlit','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:09:53','2019-06-29 08:09:53'),(3543,'crk','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:11:50','2019-06-29 08:11:50'),(3544,'government','34.235.169.213',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:16:14','2019-06-29 16:16:14'),(3545,'insurance','54.146.66.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:57:38','2019-06-29 16:57:38'),(3546,'physics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:19:06','2019-06-29 18:19:06'),(3547,'mathematics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:23:50','2019-06-29 18:23:50'),(3548,'insurance','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:30:42','2019-06-29 18:30:42'),(3549,'crk','54.227.42.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 19:50:41','2019-06-29 19:50:41'),(3550,'government','3.82.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 20:28:23','2019-06-29 20:28:23'),(3551,'english','52.91.23.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 03:47:35','2019-06-30 03:47:35'),(3552,'mathematics','107.3.154.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 05:14:08','2019-06-30 05:14:08'),(3553,'chemistry','37.9.87.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 17:29:41','2019-06-30 17:29:41'),(3554,'chemistry','154.118.47.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 07:13:55','2019-07-01 07:14:33'),(3555,'chemistry','46.229.168.135',87,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 09:26:34','2020-01-31 22:31:52'),(3556,'english','209.205.209.34',8089,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 19:21:38','2020-05-30 17:19:39'),(3557,'chemistry','197.211.53.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 21:31:20','2019-07-01 21:31:40'),(3558,'chemistry','157.55.39.182',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 05:23:02','2019-07-02 05:23:02'),(3559,'chemistry','93.158.161.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 15:43:59','2019-07-02 15:43:59'),(3560,'history','209.205.209.34',650,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:22:26','2020-05-30 18:38:30'),(3561,'physics','209.205.209.34',1763,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:36:44','2020-05-30 15:29:21'),(3562,'chemistry','129.56.51.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 18:42:17','2019-07-02 18:42:17'),(3563,'chemistry','197.210.28.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:11:10','2019-07-02 20:11:22'),(3564,'geography','197.210.28.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:17:11','2019-07-02 20:17:11'),(3565,'biology','54.147.7.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 22:46:21','2019-07-02 22:46:21'),(3566,'biology','209.205.209.34',5018,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-03 05:37:07','2020-05-30 18:25:53'),(3567,'chemistry','64.233.172.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:09:13','2019-07-03 19:09:14'),(3568,'history','3.95.227.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:48:54','2019-07-03 19:48:54'),(3569,'chemistry','37.9.87.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 08:05:14','2019-07-04 08:05:14'),(3570,'geography','3.95.241.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 16:23:04','2019-07-04 16:23:04'),(3571,'chemistry','105.112.48.115',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 19:52:32','2019-07-04 20:12:07'),(3572,'mathematics','105.112.48.115',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:07:51','2019-07-04 20:13:22'),(3573,'physics','105.112.48.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:12:30','2019-07-04 20:12:30'),(3574,'chemistry','91.242.162.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:05:11','2019-07-06 06:05:11'),(3575,'history','18.232.141.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:40:14','2019-07-06 06:40:14'),(3576,'chemistry','154.118.37.114',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:14:49','2019-07-06 18:14:49'),(3577,'chemistry','91.242.162.3',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:41:15','2019-07-06 19:28:38'),(3578,'chemistry','91.242.162.36',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 09:39:14','2019-07-07 09:39:14'),(3579,'chemistry','197.210.65.91',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 17:22:08','2019-07-07 17:22:57'),(3580,'chemistry','141.8.143.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 19:45:26','2019-07-07 19:45:26'),(3581,'chemistry','91.242.162.25',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-07 19:49:57','2019-09-10 11:10:42'),(3582,'mathematics','129.205.113.212',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:16'),(3583,'chemistry','129.205.113.212',33,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:27'),(3584,'accounting','129.205.113.212',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:04'),(3585,'economics','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:43'),(3586,'government','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:32:17'),(3587,'commerce','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3588,'geography','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3589,'crk','129.205.113.212',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:11'),(3590,'currentaffairs','129.205.113.212',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:01','2019-07-07 22:32:40'),(3591,'englishlit','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:23','2019-07-07 22:27:11'),(3592,'physics','129.205.113.212',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:26','2019-07-07 22:32:46'),(3593,'history','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:32:41'),(3594,'irk','129.205.113.212',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3595,'civiledu','129.205.113.212',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3596,'biology','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:56','2019-07-07 22:33:24'),(3597,'insurance','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:23:58','2019-07-07 22:32:21'),(3598,'english','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:25:57','2019-07-07 22:33:06'),(3599,'chemistry','198.144.145.220',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:29:31','2019-07-07 21:29:54'),(3600,'chemistry','41.203.78.249',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 09:28:28','2019-07-08 09:31:26'),(3601,'physics','66.249.88.36',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 10:04:41','2019-07-08 10:04:42'),(3602,'mathematics','197.210.8.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 11:09:57','2019-07-08 11:09:57'),(3603,'chemistry','169.239.188.48',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-08 11:26:53','2019-08-27 13:36:26'),(3604,'english','3.85.90.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 15:56:12','2019-07-08 15:56:12'),(3605,'chemistry','105.112.66.91',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:33:56','2019-07-08 21:35:52'),(3606,'english','105.112.66.91',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:53:51','2019-07-08 21:53:51'),(3607,'commerce','209.205.209.34',1403,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:05:44'),(3608,'chemistry','209.205.209.34',3228,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:38:59'),(3609,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3610,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3611,'english','41.78.172.115',90,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 07:23:35','2019-11-27 13:09:02'),(3612,'englishlit','41.78.172.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:24:07','2019-07-09 07:24:33'),(3613,'government','41.78.172.115',105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:25:34','2019-07-16 07:09:26'),(3614,'chemistry','129.56.37.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:43:13','2019-07-09 07:43:14'),(3615,'mathematics','209.205.209.34',2378,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 08:37:56','2020-05-30 17:58:26'),(3616,'chemistry','192.151.145.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 12:04:16','2019-07-09 12:04:31'),(3617,'physics','105.112.74.109',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:45:55','2019-07-09 21:20:51'),(3618,'government','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:53:35','2019-07-09 20:53:35'),(3619,'englishlit','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:55:52','2019-07-09 20:55:52'),(3620,'english','105.112.74.109',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:56:28','2019-07-09 21:24:57'),(3621,'mathematics','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 21:10:35','2019-07-09 21:10:35'),(3622,'chemistry','91.242.162.49',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 22:37:01','2019-07-09 23:20:10'),(3623,'physics','66.249.64.29',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 02:22:25','2019-07-10 02:22:25'),(3624,'mathematics','41.78.172.115',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 08:51:07','2019-07-15 16:59:28'),(3625,'chemistry','129.56.36.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 10:15:55','2019-07-10 10:16:28'),(3626,'chemistry','91.242.162.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 18:09:11','2019-07-10 18:09:11'),(3627,'chemistry','154.160.30.70',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 19:00:58','2019-07-10 19:01:06'),(3628,'chemistry','129.205.112.207',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 23:16:02','2019-07-10 23:16:41'),(3629,'english','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3630,'mathematics','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3631,'commerce','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3632,'chemistry','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3633,'irk','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3634,'civiledu','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3635,'history','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3636,'chemistry','41.203.78.28',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:47:47','2019-07-11 11:21:52'),(3637,'english','41.203.78.28',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 11:35:10','2019-07-11 11:35:10'),(3638,'chemistry','157.55.39.101',14,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 17:52:52','2020-01-09 17:51:46'),(3639,'chemistry','66.249.88.68',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3640,'chemistry','66.249.88.65',76,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3641,'chemistry','82.145.223.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:34','2019-07-12 01:28:34'),(3642,'chemistry','129.205.112.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:40','2019-07-12 01:28:40'),(3643,'chemistry','54.162.122.174',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 08:18:20','2019-07-12 10:00:37'),(3644,'chemistry','40.77.167.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 11:56:19','2019-07-12 11:56:19'),(3645,'physics','66.102.6.44',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 18:47:05','2019-07-12 18:47:05'),(3646,'chemistry','105.112.40.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 14:34:42','2019-07-13 14:34:42'),(3647,'english','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:22:10','2019-07-13 15:22:10'),(3648,'englishlit','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:28:12','2019-07-13 15:28:12'),(3649,'currentaffairs','105.112.23.162',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 19:42:12','2019-07-13 19:42:12'),(3650,'chemistry','197.210.47.253',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 23:32:27','2019-07-13 23:32:37'),(3651,'chemistry','197.210.226.221',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-14 08:42:39','2019-07-14 08:42:39'),(3652,'chemistry','41.58.163.166',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 03:36:09','2019-07-15 03:38:30'),(3653,'chemistry','197.210.45.131',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:01:08','2019-07-15 11:02:28'),(3654,'chemistry','207.46.13.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:30:08','2019-07-15 11:30:08'),(3655,'chemistry','105.112.121.65',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 01:47:52','2019-07-16 01:54:58'),(3656,'geography','209.205.209.34',1148,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-16 04:33:29','2020-05-30 17:26:43'),(3657,'chemistry','157.55.39.75',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 22:12:07','2019-07-16 22:12:07'),(3658,'chemistry','41.223.213.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 00:56:58','2019-07-17 01:11:43'),(3659,'english','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:53:17','2019-07-17 05:53:18'),(3660,'mathematics','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:55:34','2019-07-17 05:55:34'),(3661,'government','209.205.209.34',2686,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:52:58','2020-05-30 18:38:59'),(3662,'crk','209.205.209.34',3361,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:54:29','2020-05-30 12:48:20'),(3663,'chemistry','197.242.111.36',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 08:00:14','2019-07-17 08:08:20'),(3664,'chemistry','41.203.78.33',425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 09:54:12','2019-07-17 11:26:32'),(3665,'chemistry','69.171.251.8',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:55','2019-07-17 10:23:56'),(3666,'chemistry','69.171.251.23',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3667,'chemistry','69.171.251.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3668,'englishlit','209.205.209.34',1090,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 12:39:36','2020-05-30 15:26:43'),(3669,'irk','209.205.209.34',1003,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 17:02:18','2020-05-30 18:50:40'),(3670,'chemistry','41.223.215.235',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:10:02','2019-07-17 17:11:19'),(3671,'chemistry','41.223.213.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:16:10','2019-07-17 17:16:10'),(3672,'chemistry','35.153.135.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 00:14:01','2019-07-18 00:14:01'),(3673,'chemistry','154.118.46.101',392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 03:48:26','2019-07-18 05:29:47'),(3674,'chemistry','5.255.250.162',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-18 06:37:25','2019-09-08 14:04:58'),(3675,'chemistry','154.118.61.127',1190,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 08:56:03','2019-07-18 09:20:17'),(3676,'irk','34.238.242.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:04:13','2019-07-18 09:04:13'),(3677,'english','154.118.61.127',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:09','2019-07-18 09:18:21'),(3678,'commerce','154.118.61.127',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:43','2019-07-18 09:19:05'),(3679,'accounting','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:11','2019-07-18 09:29:34'),(3680,'biology','154.118.61.127',378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:25','2019-07-18 09:19:44'),(3681,'englishlit','154.118.61.127',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:33','2019-07-18 09:30:44'),(3682,'government','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:49','2019-07-18 09:31:01'),(3683,'crk','154.118.61.127',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:17','2019-07-18 09:31:18'),(3684,'economics','154.118.61.127',584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:55','2019-07-18 09:31:56'),(3685,'civiledu','154.118.61.127',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:27:48','2019-07-18 09:27:51'),(3686,'mathematics','154.118.61.127',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:28:55','2019-07-18 09:29:06'),(3687,'physics','154.118.61.127',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:29:57','2019-07-18 09:30:06'),(3688,'geography','154.118.61.127',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:31:27','2019-07-18 09:31:38'),(3689,'chemistry','178.255.215.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 18:42:41','2019-07-18 18:42:41'),(3690,'chemistry','157.55.39.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 22:58:37','2019-07-19 04:22:47'),(3691,'chemistry','154.118.59.83',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 05:44:42','2019-07-19 06:04:52'),(3692,'chemistry','41.203.78.52',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 16:01:50','2019-07-19 16:28:25'),(3693,'chemistry','197.242.102.82',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:28:00','2019-07-20 04:29:38'),(3694,'english','197.242.102.82',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:31:50','2019-07-20 11:59:47'),(3695,'mathematics','197.242.102.82',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:48:08','2019-07-20 04:48:08'),(3696,'chemistry','40.77.167.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 06:20:29','2019-07-20 06:20:29'),(3697,'biology','197.242.102.82',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:04:42','2019-07-20 11:58:12'),(3698,'physics','152.9.196.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:47:30','2019-07-20 11:47:30'),(3699,'mathematics','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:14','2019-07-20 14:11:14'),(3700,'chemistry','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:27','2019-07-20 14:11:27'),(3701,'chemistry','207.46.13.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 21:45:31','2019-07-20 21:45:31'),(3702,'english','41.217.118.129',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 05:37:39','2019-07-21 05:37:39'),(3703,'chemistry','41.203.78.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 15:30:53','2019-07-21 15:32:05'),(3704,'chemistry','157.55.39.239',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-22 03:02:39','2020-03-31 17:07:02'),(3705,'biology','54.91.22.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 06:50:06','2019-07-22 06:50:06'),(3706,'chemistry','93.80.129.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 07:59:39','2019-07-22 07:59:39'),(3707,'mathematics','3.84.79.213',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 08:19:57','2019-07-22 08:19:58'),(3708,'chemistry','207.46.13.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 06:32:43','2019-07-23 06:32:43'),(3709,'chemistry','154.118.66.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 07:11:56','2019-07-23 07:11:56'),(3710,'chemistry','54.36.150.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 12:38:55','2019-07-23 12:38:56'),(3711,'english','154.118.66.199',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:20:16','2019-07-23 19:20:16'),(3712,'chemistry','197.210.57.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:36:14','2019-07-23 19:45:25'),(3713,'chemistry','197.210.57.16',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:38:03','2019-07-23 19:46:41'),(3714,'chemistry','197.211.57.133',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 20:29:13','2019-07-23 20:30:01'),(3715,'chemistry','54.36.150.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 00:15:09','2019-07-24 00:15:09'),(3716,'chemistry','207.46.13.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 01:42:30','2019-07-24 01:42:30'),(3717,'english','154.120.114.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 03:35:04','2019-07-24 03:35:04'),(3718,'englishlit','41.80.181.76',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 06:15:35','2019-07-25 05:43:43'),(3719,'chemistry','54.172.234.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 08:19:54','2019-07-24 08:49:47'),(3720,'chemistry','40.77.167.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 16:39:03','2019-07-25 16:39:03'),(3721,'chemistry','40.77.167.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 23:17:21','2019-07-25 23:17:21'),(3722,'insurance','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:14','2019-07-26 05:17:07'),(3723,'accounting','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:44','2019-07-26 05:17:08'),(3724,'englishlit','41.203.78.111',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:14','2019-07-26 05:17:17'),(3725,'government','41.203.78.111',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:58','2019-07-26 05:17:11'),(3726,'currentaffairs','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:26','2019-07-26 05:17:13'),(3727,'economics','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:27','2019-07-26 05:17:14'),(3728,'geography','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:29','2019-07-26 05:17:16'),(3729,'english','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:36','2019-07-26 05:17:19'),(3730,'chemistry','66.249.64.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 15:13:58','2019-07-26 15:13:58'),(3731,'chemistry','207.46.13.115',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-27 00:45:02','2020-01-23 09:22:32'),(3732,'chemistry','157.55.39.89',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 07:32:50','2019-07-27 07:32:50'),(3733,'chemistry','46.229.168.137',45,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-07-27 09:18:32','2020-07-05 12:08:49'),(3734,'mathematics','3.85.206.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 10:07:21','2019-07-27 10:09:00'),(3735,'english','154.118.28.124',72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 12:49:22','2019-07-28 06:55:02'),(3736,'chemistry','40.77.167.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 15:09:18','2019-07-28 15:09:18'),(3737,'chemistry','201.186.162.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 17:45:36','2019-07-28 17:45:37'),(3738,'chemistry','80.248.10.224',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:34:33','2019-07-29 00:37:02'),(3739,'physics','80.248.10.224',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:35:39','2019-07-29 00:35:39'),(3740,'biology','154.118.28.124',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 09:57:14','2019-07-29 09:57:14'),(3741,'english','41.203.78.138',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 16:14:46','2019-07-29 16:14:46'),(3742,'chemistry','54.36.149.43',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-29 16:22:54','2020-05-29 00:45:16'),(3743,'insurance','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:39','2019-07-30 02:31:46'),(3744,'accounting','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:43','2019-07-30 02:31:31'),(3745,'englishlit','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:46','2019-07-30 02:31:23'),(3746,'government','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:49','2019-07-30 02:31:29'),(3747,'currentaffairs','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:51','2019-07-30 02:31:19'),(3748,'economics','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:53','2019-07-30 02:31:42'),(3749,'geography','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:56','2019-07-30 02:31:40'),(3750,'english','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:01','2019-07-30 02:31:25'),(3751,'mathematics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:04','2019-07-30 02:31:26'),(3752,'commerce','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:06','2019-07-30 02:31:28'),(3753,'biology','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:19','2019-07-30 02:31:32'),(3754,'physics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:22','2019-07-30 02:31:34'),(3755,'chemistry','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:24','2019-07-30 02:31:35'),(3756,'crk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:28','2019-07-30 02:31:37'),(3757,'history','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:30','2019-07-30 02:31:38'),(3758,'irk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:49','2019-07-30 02:31:43'),(3759,'civiledu','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:52','2019-07-30 02:31:44'),(3760,'insurance','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:01','2019-07-30 03:25:41'),(3761,'accounting','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3762,'englishlit','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:33'),(3763,'government','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3764,'currentaffairs','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:30'),(3765,'economics','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:39'),(3766,'geography','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:04','2019-07-30 03:25:39'),(3767,'english','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:05','2019-07-30 03:25:33'),(3768,'mathematics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3769,'commerce','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3770,'biology','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3771,'physics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3772,'chemistry','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:37'),(3773,'crk','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:38'),(3774,'history','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:10','2019-07-30 03:25:38'),(3775,'irk','198.23.156.170',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:11','2019-07-30 03:25:40'),(3776,'civiledu','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:12','2019-07-30 03:25:40'),(3777,'chemistry','54.36.148.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 12:20:11','2019-07-30 12:20:11'),(3778,'history','34.229.51.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 14:05:01','2019-07-30 14:05:01'),(3779,'english','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3780,'commerce','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3781,'chemistry','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3782,'englishlit','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3783,'government','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3784,'crk','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3785,'insurance','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3786,'chemistry','93.158.161.52',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 13:53:11','2019-07-31 13:53:11'),(3787,'chemistry','95.70.149.106',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 17:40:54','2019-07-31 17:40:58'),(3788,'chemistry','197.210.52.110',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-31 23:43:35','2020-05-25 11:22:19'),(3789,'physics','197.210.52.34',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 23:44:25','2019-07-31 23:44:25'),(3790,'chemistry','129.205.113.242',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 11:01:44','2019-08-01 11:38:22'),(3791,'chemistry','46.229.168.136',5,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-01 13:52:01','2020-03-24 23:22:11'),(3792,'chemistry','207.46.13.109',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 15:09:54','2019-08-01 15:09:54'),(3793,'chemistry','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:06:12','2019-08-01 17:06:12'),(3794,'english','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:07:32','2019-08-01 17:07:32'),(3795,'crk','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:17:03','2019-08-01 17:17:04'),(3796,'mathematics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3797,'accounting','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3798,'physics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3799,'chemistry','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3800,'englishlit','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3801,'crk','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3802,'currentaffairs','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3803,'chemistry','85.104.168.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 06:18:15','2019-08-02 06:18:15'),(3804,'chemistry','102.67.6.4',86,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-02 11:56:48','2020-02-06 09:19:26'),(3805,'chemistry','41.203.78.141',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 17:46:29','2019-08-02 17:50:14'),(3806,'physics','141.0.13.86',225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 19:55:06','2019-08-02 20:20:39'),(3807,'chemistry','54.89.107.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 12:30:12','2019-08-03 12:30:12'),(3808,'chemistry','40.77.167.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 14:46:31','2019-08-03 14:46:31'),(3809,'chemistry','197.210.62.39',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 15:09:21','2019-08-03 15:11:54'),(3810,'chemistry','41.190.3.29',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:05:32','2019-08-03 20:06:34'),(3811,'chemistry','157.55.39.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:11:00','2019-08-03 20:11:00'),(3812,'chemistry','105.112.112.6',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 00:43:46','2019-08-04 00:43:46'),(3813,'chemistry','41.190.31.100',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 14:53:51','2019-08-04 14:54:18'),(3814,'chemistry','129.18.141.135',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:26:00','2019-08-04 21:27:04'),(3815,'chemistry','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:29:51','2019-08-04 21:29:51'),(3816,'chemistry','24.59.53.207',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:30:40','2019-08-04 21:31:48'),(3817,'chemistry','73.251.19.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:32:47','2019-08-05 19:48:27'),(3818,'chemistry','54.36.150.27',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 04:34:37','2020-04-20 23:49:30'),(3819,'englishlit','105.112.16.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:00:40','2019-08-05 08:00:40'),(3820,'chemistry','41.215.245.118',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:34:13','2019-08-05 21:13:05'),(3821,'mathematics','41.215.245.118',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:03:37','2019-08-05 21:14:43'),(3822,'chemistry','54.36.150.94',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:51:17','2019-08-05 09:51:17'),(3823,'chemistry','108.5.104.122',121,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 11:40:26','2019-08-10 00:14:27'),(3824,'chemistry','172.58.231.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 11:41:16','2019-08-05 11:41:16'),(3825,'chemistry','105.112.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 16:00:47','2019-08-05 16:00:47'),(3826,'mathematics','3.208.18.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 18:34:25','2019-08-05 18:34:25'),(3827,'chemistry','51.75.58.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-06 06:04:58','2019-08-06 06:04:58'),(3828,'english','105.112.46.183',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 17:24:18','2019-08-06 20:33:07'),(3829,'chemistry','157.55.39.189',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 20:45:44','2019-08-29 20:50:04'),(3830,'chemistry','154.120.111.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:02:33','2019-08-06 21:02:33'),(3831,'chemistry','41.184.168.168',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:47:59','2019-08-07 07:40:56'),(3832,'chemistry','76.169.69.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:59:50','2019-08-06 22:00:41'),(3833,'chemistry','197.210.28.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 22:09:16','2019-08-06 22:09:16'),(3834,'chemistry','197.242.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:24:27','2019-08-07 05:24:27'),(3835,'chemistry','54.162.105.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:45:21','2019-08-07 05:45:21'),(3836,'chemistry','105.112.99.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:37:02','2019-08-07 07:37:02'),(3837,'chemistry','197.255.3.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:53:01','2019-08-07 07:53:01'),(3838,'chemistry','105.112.66.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:07:50','2019-08-07 08:07:50'),(3839,'chemistry','197.210.10.11',99,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:28:59','2019-08-07 08:32:24'),(3840,'mathematics','197.210.10.11',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:32:47','2019-08-07 08:32:50'),(3841,'chemistry','102.67.3.4',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:36:49','2019-08-07 08:58:38'),(3842,'chemistry','41.164.52.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:03:24','2019-08-07 10:03:24'),(3843,'chemistry','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:05:52','2019-08-07 10:05:52'),(3844,'mathematics','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:06:42','2019-08-07 10:06:42'),(3845,'chemistry','197.149.90.214',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:24:50','2019-08-07 10:26:08'),(3846,'chemistry','41.203.73.88',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:39:15','2019-08-07 11:39:55'),(3847,'physics','209.136.56.4',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:54:06','2019-08-12 23:34:33'),(3848,'chemistry','197.242.98.242',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:04:40','2019-08-07 12:08:12'),(3849,'chemistry','66.249.83.192',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:30:34','2020-01-09 11:42:25'),(3850,'chemistry','41.58.96.12',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 14:11:55','2019-08-07 14:12:42'),(3851,'chemistry','197.210.65.148',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 18:36:06','2019-08-07 18:36:06'),(3852,'economics','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:15','2019-08-08 06:27:15'),(3853,'commerce','197.210.226.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:24','2019-08-08 06:27:24'),(3854,'commerce','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:29:02','2019-08-08 06:29:02'),(3855,'chemistry','196.6.204.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 08:52:03','2019-08-08 08:52:36'),(3856,'chemistry','105.112.112.43',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 13:28:20','2019-08-08 13:28:58'),(3857,'chemistry','197.210.45.222',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 23:36:48','2019-08-08 23:37:30'),(3858,'chemistry','207.46.13.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 05:43:38','2019-08-09 05:43:38'),(3859,'chemistry','197.210.44.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 08:23:41','2019-08-09 08:23:41'),(3860,'chemistry','107.167.108.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 13:55:03','2019-08-09 13:55:03'),(3861,'chemistry','141.0.12.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:36:14','2019-08-09 14:40:11'),(3862,'english','141.0.12.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:40:26','2019-08-09 14:40:26'),(3863,'chemistry','154.113.86.202',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 15:44:28','2019-08-09 15:45:32'),(3864,'english','54.196.180.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 19:46:19','2019-08-09 19:46:19'),(3865,'chemistry','41.190.31.199',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:16:32','2019-08-09 22:00:42'),(3866,'mathematics','41.190.31.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:19:49','2019-08-09 21:19:49'),(3867,'crk','41.190.31.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:38:51','2019-08-09 21:38:54'),(3868,'chemistry','129.205.113.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 05:01:10','2019-08-10 05:01:50'),(3869,'chemistry','41.217.117.119',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 06:33:30','2019-08-10 06:33:30'),(3870,'currentaffairs','54.85.115.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 10:57:06','2019-08-10 10:57:06'),(3871,'history','18.206.174.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 13:08:50','2019-08-10 13:08:50'),(3872,'chemistry','100.43.81.123',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 14:14:16','2019-08-10 14:14:17'),(3873,'english','184.72.210.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 04:30:40','2019-08-11 04:30:40'),(3874,'chemistry','66.249.88.116',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:14:03','2019-08-11 14:14:03'),(3875,'chemistry','157.55.39.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:28:36','2019-08-11 14:28:36'),(3876,'insurance','3.88.255.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 17:15:20','2019-08-11 17:15:20'),(3877,'english','197.242.117.204',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 21:39:05','2019-08-11 21:40:36'),(3878,'chemistry','207.46.13.52',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 04:20:20','2019-08-12 04:20:20'),(3879,'economics','34.227.176.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 20:07:33','2019-08-12 20:07:33'),(3880,'chemistry','105.112.16.68',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 08:45:00','2019-08-13 08:45:03'),(3881,'chemistry','46.229.168.141',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 22:26:44','2019-09-04 10:48:38'),(3882,'chemistry','34.204.200.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:43:45','2019-08-14 03:43:46'),(3883,'chemistry','18.205.192.78',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:52:28','2019-08-14 04:56:47'),(3884,'biology','54.162.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 12:09:34','2019-08-14 12:09:34'),(3885,'chemistry','154.120.99.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 15:57:20','2019-08-14 16:01:54'),(3886,'chemistry','105.112.98.5',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 00:49:21','2019-08-15 01:14:50'),(3887,'chemistry','197.210.61.7',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 15:41:08','2019-08-15 15:41:09'),(3888,'mathematics','41.203.78.198',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:01:08','2019-08-16 05:59:18'),(3889,'chemistry','207.46.13.149',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:44:55','2019-08-15 18:44:58'),(3890,'chemistry','207.46.13.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 19:29:33','2019-08-15 19:29:33'),(3891,'physics','41.203.78.198',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 06:16:07','2019-08-16 06:17:30'),(3892,'commerce','154.118.43.180',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 11:29:52','2019-08-16 11:29:52'),(3893,'accounting','54.198.77.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 15:23:17','2019-08-16 15:23:17'),(3894,'mathematics','197.242.99.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:04:35','2019-08-17 03:06:16'),(3895,'english','197.242.99.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:06:56','2019-08-17 03:06:56'),(3896,'chemistry','207.46.13.1',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 14:03:29','2019-08-17 14:03:30'),(3897,'crk','105.112.42.138',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 16:15:38','2019-08-17 16:15:41'),(3898,'chemistry','129.205.112.252',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:23:17','2019-08-17 22:29:43'),(3899,'english','129.205.112.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:27:47','2019-08-17 22:27:47'),(3900,'chemistry','197.242.101.185',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 13:44:15','2019-08-18 13:45:05'),(3901,'chemistry','18.232.124.77',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 14:54:17','2019-08-18 15:09:41'),(3902,'english','82.145.222.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:13:30','2019-08-18 20:13:30'),(3903,'physics','82.145.222.187',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:29','2019-08-18 20:14:41'),(3904,'biology','82.145.222.187',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:57','2019-08-18 20:18:29'),(3905,'chemistry','82.145.222.187',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:17:25','2019-08-18 20:20:03'),(3906,'chemistry','157.55.39.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 08:32:02','2019-08-19 08:32:02'),(3907,'chemistry','154.118.15.197',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 11:05:07','2019-08-19 11:07:21'),(3908,'chemistry','154.118.25.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 13:15:15','2019-08-19 13:15:15'),(3909,'chemistry','35.242.171.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 15:59:15','2019-08-19 15:59:20'),(3910,'chemistry','40.77.167.133',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 20:09:27','2019-08-19 20:09:27'),(3911,'chemistry','154.118.17.37',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 07:44:43','2019-08-20 07:44:57'),(3912,'chemistry','154.113.84.131',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 08:32:47','2019-08-20 08:33:28'),(3913,'mathematics','197.210.29.72',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 10:20:40','2019-08-20 10:21:02'),(3914,'chemistry','154.113.84.148',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 15:22:38','2019-08-20 15:24:56'),(3915,'chemistry','169.159.87.27',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 21:11:10','2019-08-20 21:11:12'),(3916,'physics','66.249.88.71',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-21 12:32:59','2019-08-21 12:33:01'),(3917,'englishlit','3.81.145.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 08:13:22','2019-08-22 08:13:22'),(3918,'chemistry','105.112.39.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 13:11:13','2019-08-22 13:14:10'),(3919,'biology','129.205.112.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:29:46','2019-08-22 14:29:46'),(3920,'mathematics','129.205.112.93',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:30:42','2019-08-22 14:32:55'),(3921,'english','129.205.112.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:36:50','2019-08-22 14:36:53'),(3922,'chemistry','41.184.168.107',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:19:24','2019-09-06 17:21:30'),(3923,'chemistry','41.58.210.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:22:34','2019-08-22 19:22:34'),(3924,'accounting','34.227.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:52:08','2019-08-22 19:52:08'),(3925,'chemistry','157.55.39.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 21:25:26','2019-08-22 21:25:26'),(3926,'chemistry','129.205.112.83',485,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 10:26:23','2019-08-23 10:47:40'),(3927,'english','197.242.102.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 14:25:28','2019-08-23 14:25:28'),(3928,'chemistry','207.46.13.154',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:07:03','2019-11-18 02:00:21'),(3929,'english','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:19','2019-08-23 20:31:22'),(3930,'geography','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:51','2019-08-23 20:31:54'),(3931,'physics','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:33:18','2019-08-23 20:33:21'),(3932,'government','129.205.112.109',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:34:13','2019-08-23 20:35:30'),(3933,'chemistry','129.205.112.109',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:37:45','2019-08-23 20:40:50'),(3934,'chemistry','40.77.167.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 09:58:33','2019-08-24 09:58:33'),(3935,'biology','197.210.62.41',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 10:11:54','2019-08-24 10:11:56'),(3936,'english','3.92.165.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 02:48:10','2019-08-26 02:48:10'),(3937,'chemistry','129.205.112.98',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 14:07:19','2019-08-27 09:07:12'),(3938,'englishlit','41.80.80.75',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:38:33','2019-08-26 16:38:36'),(3939,'mathematics','129.205.112.98',368,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:54:38','2019-08-27 18:32:30'),(3940,'physics','197.210.64.64',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 05:43:46','2019-08-27 05:43:48'),(3941,'chemistry','66.102.8.114',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 12:39:36','2019-08-27 12:39:38'),(3942,'chemistry','169.239.188.14',185,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 13:39:29','2019-08-27 13:43:17'),(3943,'mathematics','107.22.87.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:02:33','2019-08-28 05:02:33'),(3944,'chemistry','129.205.112.99',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:04:37','2019-08-28 12:15:39'),(3945,'chemistry','3.87.39.253',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 06:57:54','2019-08-28 06:57:55'),(3946,'physics','41.203.78.236',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 10:23:20','2019-08-29 07:46:26'),(3947,'english','129.205.112.99',15637,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 11:37:09','2019-09-01 08:17:00'),(3948,'mathematics','129.205.112.99',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:19:14','2019-09-01 05:59:18'),(3949,'commerce','129.205.112.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:22:31','2019-08-28 12:22:34'),(3950,'chemistry','207.46.13.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-29 11:21:14','2019-08-29 11:21:14'),(3951,'chemistry','40.77.167.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-30 05:57:46','2019-08-30 05:57:46'),(3952,'chemistry','66.249.83.64',25,'',NULL,'',NULL,NULL,NULL,'','','2019-08-30 11:25:31','2019-08-30 11:25:32'),(3953,'chemistry','157.55.39.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-31 02:12:18','2019-08-31 02:12:18'),(3954,'chemistry','197.210.8.81',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 08:57:11','2019-08-31 08:59:21'),(3955,'mathematics','18.212.178.244',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 09:18:17','2019-08-31 09:18:17'),(3956,'chemistry','197.255.172.32',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 11:43:45','2019-08-31 11:43:45'),(3957,'accounting','129.205.112.99',5,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 16:55:58','2019-08-31 16:55:59'),(3958,'biology','129.205.112.99',45,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 16:56:17','2019-08-31 17:39:24'),(3959,'chemistry','105.112.46.156',8,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 17:20:01','2019-08-31 17:20:21'),(3960,'chemistry','41.190.3.191',48,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 19:13:59','2019-08-31 19:17:54'),(3961,'chemistry','35.192.166.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-01 13:20:44','2019-09-01 13:20:44'),(3962,'chemistry','154.66.37.174',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 06:43:23','2019-09-02 06:43:56'),(3963,'chemistry','197.253.59.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 07:37:32','2019-09-02 07:37:32'),(3964,'english','105.112.66.6',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 11:05:53','2019-09-02 11:05:53'),(3965,'chemistry','105.112.75.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 15:41:26','2019-09-02 15:41:56'),(3966,'chemistry','54.36.150.178',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 02:18:15','2019-09-03 02:18:18'),(3967,'physics','197.210.28.217',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 05:11:07','2019-09-03 05:11:09'),(3968,'mathematics','3.88.69.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 11:24:03','2019-09-03 11:24:03'),(3969,'chemistry','197.210.226.232',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:32','2019-09-03 13:34:57'),(3970,'chemistry','197.210.227.69',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:56','2019-09-03 13:27:38'),(3971,'chemistry','197.210.226.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:25:32','2019-09-03 13:25:32'),(3972,'chemistry','197.210.227.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:33:08','2019-09-03 13:33:08'),(3973,'chemistry','197.210.226.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:36:44','2019-09-03 13:36:47'),(3974,'chemistry','54.36.150.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 23:05:24','2019-09-03 23:05:24'),(3975,'mathematics','54.221.189.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-04 18:49:49','2019-09-04 18:49:49'),(3976,'history','3.90.177.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:03:49','2019-09-05 06:03:49'),(3977,'mathematics','3.90.177.176',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:04:44','2019-09-05 06:04:44'),(3978,'accounting','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3979,'geography','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3980,'english','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:23'),(3981,'economics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3982,'mathematics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3983,'civiledu','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3984,'insurance','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3985,'chemistry','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3986,'currentaffairs','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3987,'englishlit','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3988,'history','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3989,'government','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3990,'biology','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3991,'chemistry','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3992,'englishlit','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3993,'geography','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3994,'economics','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3995,'irk','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3996,'civiledu','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3997,'chemistry','41.217.84.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:16:54','2019-09-05 16:16:54'),(3998,'chemistry','3.84.149.56',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:15','2019-09-05 16:17:16'),(3999,'chemistry','47.206.102.2',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:40','2019-09-05 16:18:25'),(4000,'chemistry','91.242.162.70',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:21','2019-09-06 12:27:22'),(4001,'mathematics','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:51','2019-09-07 12:05:12'),(4002,'chemistry','91.242.162.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:23:18','2019-09-06 15:33:50'),(4003,'mathematics','41.184.168.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:42:47','2019-09-06 15:42:47'),(4004,'mathematics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4005,'biology','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4006,'physics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4007,'chemistry','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4008,'englishlit','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4009,'economics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4010,'insurance','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4011,'english','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 05:35:36','2019-09-07 13:17:14'),(4012,'chemistry','129.205.112.115',71,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 08:22:52','2019-09-07 08:36:32'),(4013,'chemistry','154.118.11.75',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 19:29:07','2019-09-07 19:36:47'),(4014,'chemistry','41.190.3.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 21:38:56','2019-09-07 21:38:57'),(4015,'biology','154.118.37.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 05:09:59','2019-09-08 05:09:59'),(4016,'chemistry','77.88.5.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 09:42:20','2019-09-08 09:42:20'),(4017,'chemistry','207.46.13.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 14:03:52','2019-09-09 14:03:52'),(4018,'mathematics','54.209.217.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 18:28:02','2019-09-09 18:28:02'),(4019,'biology','54.226.212.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 01:20:10','2019-09-10 01:20:10'),(4020,'english','197.242.108.80',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 06:32:36','2019-09-10 06:32:36'),(4021,'economics','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:35:23','2019-09-10 16:35:24'),(4022,'english','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:36:16','2019-09-10 16:36:16'),(4023,'commerce','3.89.252.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 18:39:39','2019-09-10 18:39:39'),(4024,'chemistry','91.242.162.73',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:08:33','2019-10-24 12:14:06'),(4025,'physics','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4026,'chemistry','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4027,'englishlit','54.91.126.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:32:57'),(4028,'government','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4029,'crk','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4030,'civiledu','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4031,'history','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:09'),(4032,'chemistry','207.46.13.197',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:55:18','2019-09-10 19:55:18'),(4033,'chemistry','197.210.29.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 20:02:55','2019-09-10 20:02:55'),(4034,'accounting','18.234.153.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 22:03:30','2019-09-10 22:03:30'),(4035,'chemistry','110.44.120.215',208,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 01:19:49','2019-09-12 06:46:02'),(4036,'mathematics','110.44.120.215',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:04','2019-09-16 16:31:02'),(4037,'accounting','110.44.120.215',124,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:48','2019-09-13 05:09:09'),(4038,'physics','110.44.120.215',1180,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:45:48','2019-09-20 12:59:42'),(4039,'biology','110.44.120.215',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:53:41','2019-09-17 03:03:55'),(4040,'biology','110.44.120.206',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:08','2019-09-11 15:42:20'),(4041,'mathematics','110.44.120.206',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:16','2019-09-11 10:51:39'),(4042,'chemistry','110.44.120.206',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:48','2019-09-11 15:41:47'),(4043,'chemistry','129.56.92.16',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 13:46:20','2019-09-11 13:46:52'),(4044,'physics','66.249.64.176',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:39:39','2019-09-21 02:46:11'),(4045,'biology','66.249.64.178',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:49:48','2019-09-30 03:47:58'),(4046,'accounting','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:50:53','2019-09-11 16:50:55'),(4047,'mathematics','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:18','2019-09-11 16:51:19'),(4048,'chemistry','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:23','2019-09-11 16:51:24'),(4049,'biology','108.177.7.94',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:26','2019-09-11 16:54:23'),(4050,'biology','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:43','2019-09-11 16:51:45'),(4051,'chemistry','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:46','2019-09-11 16:51:47'),(4052,'physics','108.177.7.91',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:16','2019-09-11 16:53:33'),(4053,'accounting','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:49','2019-09-11 16:52:51'),(4054,'physics','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:54:16','2019-09-11 16:54:18'),(4055,'accounting','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:57:33','2019-09-11 16:57:34'),(4056,'chemistry','66.249.64.180',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:58:44','2019-09-17 21:57:53'),(4057,'accounting','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:07:30','2019-09-11 17:07:32'),(4058,'biology','104.132.0.101',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:23','2019-09-11 17:08:58'),(4059,'chemistry','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:50','2019-09-11 17:08:51'),(4060,'chemistry','34.236.170.225',11,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 17:38:25','2019-09-11 19:05:17'),(4061,'mathematics','35.243.2.1',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:39:59','2019-09-11 19:40:00'),(4062,'physics','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:09','2019-09-11 19:40:10'),(4063,'chemistry','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:40','2019-09-11 19:40:42'),(4064,'biology','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:53','2019-09-11 19:41:54'),(4065,'mathematics','35.243.2.2',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:59','2019-09-11 19:42:01'),(4066,'accounting','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:42:51','2019-09-11 19:42:53'),(4067,'mathematics','35.234.176.172',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:37:08','2019-09-11 22:37:10'),(4068,'physics','35.234.176.173',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:37:39','2019-09-11 22:37:41'),(4069,'biology','35.234.176.171',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:38:37','2019-09-11 22:38:39'),(4070,'chemistry','35.234.176.171',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:41:31','2019-09-11 22:41:33'),(4071,'currentaffairs','35.174.166.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 23:13:34','2019-09-11 23:13:34'),(4072,'mathematics','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:42','2019-09-12 00:09:58'),(4073,'biology','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:50','2019-09-12 00:09:22'),(4074,'accounting','108.177.6.58',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:09:14','2019-09-12 00:09:16'),(4075,'physics','108.177.6.58',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:11:56','2019-09-12 00:12:18'),(4076,'biology','103.10.28.200',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 01:50:53','2019-09-12 01:51:21'),(4077,'chemistry','216.10.240.90',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 03:25:50','2019-09-12 03:25:51'),(4078,'physics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:44:02','2019-09-12 06:45:27'),(4079,'chemistry','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:01','2019-09-12 06:46:03'),(4080,'biology','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:36','2019-09-12 06:46:38'),(4081,'mathematics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:48','2019-09-12 06:47:16'),(4082,'chemistry','41.184.239.224',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:00:01','2019-09-12 08:01:26'),(4083,'physics','121.220.192.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:50:39','2019-09-12 08:50:40'),(4084,'biology','1.144.106.173',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:20:55','2019-09-12 09:20:57'),(4085,'accounting','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:35:59','2019-09-12 09:36:01'),(4086,'mathematics','202.51.76.34',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:37:29','2019-09-13 05:07:49'),(4087,'mathematics','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:14','2019-09-12 09:55:15'),(4088,'biology','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:34','2019-09-12 09:55:36'),(4089,'mathematics','49.195.140.246',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:57','2019-09-12 09:55:59'),(4090,'biology','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:14:20','2019-09-12 10:14:21'),(4091,'mathematics','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:17:03','2019-09-12 10:17:04'),(4092,'physics','175.37.109.166',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:04:59','2019-09-12 11:09:15'),(4093,'mathematics','14.200.41.186',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:06:08','2019-09-12 11:06:10'),(4094,'mathematics','211.30.203.218',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:09:11','2019-09-12 11:09:13'),(4095,'physics','120.17.45.139',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 11:11:29','2019-09-12 11:11:31'),(4096,'chemistry','120.17.45.139',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:12:10','2019-09-12 11:12:11'),(4097,'biology','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:14:53','2019-09-12 11:14:55'),(4098,'mathematics','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:01','2019-09-12 11:17:03'),(4099,'chemistry','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:06','2019-09-12 11:17:09'),(4100,'mathematics','124.180.202.128',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:23:33','2019-09-12 11:23:35'),(4101,'mathematics','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:26:22','2019-09-12 11:26:24'),(4102,'biology','175.37.109.166',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:46:31','2019-09-12 11:47:01'),(4103,'biology','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:48:41','2019-09-12 11:48:43'),(4104,'mathematics','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:49:54','2019-09-12 11:49:56'),(4105,'biology','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:43:46','2019-09-12 14:43:47'),(4106,'physics','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:49:17','2019-09-12 14:49:19'),(4107,'biology','27.34.20.106',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:02','2019-09-12 14:54:04'),(4108,'chemistry','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:14','2019-09-12 14:54:16'),(4109,'physics','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:26','2019-09-12 14:54:28'),(4110,'physics','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:58:24','2019-09-12 14:58:26'),(4111,'biology','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:59:49','2019-09-12 14:59:51'),(4112,'chemistry','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:00:06','2019-09-12 15:00:08'),(4113,'biology','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:01:16','2019-09-12 15:01:18'),(4114,'physics','110.44.127.178',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:02','2019-09-12 15:29:03'),(4115,'physics','27.34.17.16',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:40','2019-09-12 15:30:08'),(4116,'physics','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:50:55','2019-09-12 15:50:57'),(4117,'biology','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:51:13','2019-09-12 15:51:15'),(4118,'chemistry','91.242.162.72',3,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 18:05:30','2019-09-12 18:20:23'),(4119,'chemistry','49.195.156.140',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:06:39','2019-09-12 19:06:41'),(4120,'biology','202.51.88.114',60,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:10:30','2019-09-12 19:16:01'),(4121,'biology','49.181.243.120',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 20:37:28','2019-09-12 20:37:58'),(4122,'chemistry','91.242.162.45',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:30:11','2019-09-12 23:30:11'),(4123,'physics','220.240.160.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:51:25','2019-09-12 23:51:26'),(4124,'chemistry','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:57:36','2019-09-12 23:57:37'),(4125,'biology','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:59:54','2019-09-12 23:59:56'),(4126,'mathematics','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 00:00:25','2019-09-13 00:00:27'),(4127,'biology','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:33:57','2019-09-13 01:33:58'),(4128,'mathematics','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:37:24','2019-09-13 01:37:26'),(4129,'physics','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:15:58','2019-09-13 02:15:59'),(4130,'accounting','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:16:14','2019-09-13 02:16:16'),(4131,'biology','27.34.17.16',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:07:26','2019-09-13 03:07:28'),(4132,'chemistry','141.8.132.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:10:44','2019-09-13 03:10:44'),(4133,'physics','1.144.105.17',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 04:06:29','2019-09-13 04:06:31'),(4134,'biology','125.254.44.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:00:53','2019-09-13 05:00:54'),(4135,'physics','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:08:24','2019-09-13 05:08:25'),(4136,'mathematics','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4137,'biology','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:15'),(4138,'government','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4139,'english','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4140,'economics','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4141,'insurance','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4142,'accounting','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4143,'currentaffairs','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4144,'chemistry','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4145,'history','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:17'),(4146,'englishlit','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4147,'physics','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:06','2019-09-13 06:03:07'),(4148,'physics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:16','2019-09-13 06:03:17'),(4149,'mathematics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:42','2019-09-13 06:03:43'),(4150,'chemistry','27.34.48.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:06:07','2019-09-13 06:09:13'),(4151,'biology','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:09:23','2019-09-13 06:09:24'),(4152,'commerce','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:50','2019-09-13 06:20:51'),(4153,'physics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4154,'government','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4155,'economics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4156,'irk','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4157,'currentaffairs','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4158,'history','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4159,'biology','175.35.106.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:16:45','2019-09-13 07:16:46'),(4160,'physics','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:29:45','2019-09-13 07:29:47'),(4161,'chemistry','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:31:28','2019-09-13 07:31:29'),(4162,'mathematics','27.34.70.161',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:32:08','2019-09-13 07:32:44'),(4163,'physics','1.41.245.225',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:14:08','2019-09-13 08:14:09'),(4164,'biology','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:40:42','2019-09-13 08:40:44'),(4165,'mathematics','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:45:42','2019-09-13 08:45:43'),(4166,'chemistry','110.150.214.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 09:32:23','2019-09-13 09:32:24'),(4167,'accounting','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:12','2019-09-13 11:01:14'),(4168,'mathematics','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:24','2019-09-13 11:01:25'),(4169,'physics','66.249.64.166',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:33:40','2019-09-13 14:33:41'),(4170,'accounting','66.249.64.180',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:39:00','2019-09-25 11:14:55'),(4171,'chemistry','220.244.110.40',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:15:30','2019-09-13 23:15:32'),(4172,'mathematics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:18','2019-09-13 23:46:20'),(4173,'physics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:45','2019-09-13 23:46:47'),(4174,'mathematics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:03:10','2019-09-14 01:03:12'),(4175,'physics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:04:12','2019-09-14 01:04:14'),(4176,'mathematics','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:11:39','2019-09-14 03:11:40'),(4177,'biology','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:12:05','2019-09-14 03:12:06'),(4178,'mathematics','3.92.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 06:23:58','2019-09-14 06:23:58'),(4179,'physics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:10:22','2019-09-14 08:10:23'),(4180,'mathematics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:11:18','2019-09-14 08:11:20'),(4181,'mathematics','211.27.254.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:53:20','2019-09-14 08:53:22'),(4182,'chemistry','41.86.6.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:55:03','2019-09-14 08:55:59'),(4183,'mathematics','66.249.66.212',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:03:19','2019-10-01 13:36:10'),(4184,'accounting','66.249.66.212',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:11:53','2019-10-10 06:34:01'),(4185,'biology','66.249.66.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:13:24','2019-10-09 01:01:54'),(4186,'chemistry','66.249.66.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:14:57','2019-10-29 04:35:40'),(4187,'physics','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:15:49','2019-10-10 06:52:10'),(4188,'chemistry','207.46.13.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:21:21','2019-09-14 13:21:21'),(4189,'chemistry','129.56.90.193',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:23:39','2019-09-14 13:25:42'),(4190,'chemistry','185.20.6.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:12:04','2019-09-14 14:12:04'),(4191,'chemistry','54.91.254.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:13:12','2019-09-14 14:13:12'),(4192,'chemistry','3.95.179.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:15:08','2019-09-14 14:15:08'),(4193,'mathematics','54.167.105.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 23:41:30','2019-09-14 23:41:30'),(4194,'physics','110.44.120.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 02:50:34','2019-09-15 02:50:36'),(4195,'chemistry','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:14:22','2019-09-15 04:15:04'),(4196,'biology','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:15:02','2019-09-15 04:15:37'),(4197,'accounting','113.199.203.102',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:16:18','2019-09-15 04:16:20'),(4198,'chemistry','35.172.100.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 07:24:14','2019-09-15 07:24:28'),(4199,'mathematics','54.221.170.133',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 13:27:05','2019-09-15 13:59:54'),(4200,'crk','54.221.170.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 14:16:11','2019-09-15 14:16:11'),(4201,'chemistry','54.36.148.104',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 18:59:31','2019-09-15 18:59:31'),(4202,'mathematics','34.207.243.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 19:16:51','2019-09-15 19:16:51'),(4203,'mathematics','47.30.248.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 04:20:11','2019-09-16 04:20:13'),(4204,'mathematics','49.195.29.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 06:12:19','2019-09-16 06:12:21'),(4205,'chemistry','157.51.26.93',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:06:39','2019-09-16 11:06:40'),(4206,'mathematics','41.86.152.178',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:19:00','2019-09-16 11:19:01'),(4207,'english','105.112.45.87',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 12:37:29','2019-09-16 12:37:56'),(4208,'mathematics','154.120.94.26',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 13:28:56','2019-09-16 13:28:57'),(4209,'physics','157.51.31.138',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-16 14:16:36','2019-09-16 14:17:04'),(4210,'chemistry','157.51.31.138',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 14:17:05','2019-09-16 14:17:32'),(4211,'physics','49.126.207.89',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:02:39','2019-09-16 16:12:06'),(4212,'chemistry','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:12:11','2019-09-16 16:12:12'),(4213,'biology','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:16:05','2019-09-16 16:16:06'),(4214,'chemistry','197.210.44.251',16,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:25:35','2019-09-16 16:28:49'),(4215,'chemistry','197.210.62.38',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:26','2019-09-16 16:29:26'),(4216,'chemistry','197.210.45.121',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:50','2019-09-16 16:29:50'),(4217,'mathematics','3.95.23.58',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:40:13','2019-09-16 16:40:13'),(4218,'chemistry','27.34.70.118',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:54:28','2019-09-17 01:54:29'),(4219,'physics','27.34.70.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:55:46','2019-09-17 01:57:21'),(4220,'physics','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:44:39','2019-09-17 06:44:41'),(4221,'biology','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:48:22','2019-09-17 06:48:23'),(4222,'physics','113.199.202.174',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:16:31','2019-09-17 07:16:33'),(4223,'biology','43.245.95.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:55:04','2019-09-17 07:57:24'),(4224,'chemistry','197.210.141.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 08:18:07','2019-09-17 08:18:07'),(4225,'physics','27.34.48.127',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-17 13:39:15','2019-09-17 13:39:17'),(4226,'chemistry','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:39:29','2019-09-17 13:39:30'),(4227,'biology','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:42:20','2019-09-17 13:42:22'),(4228,'chemistry','41.190.2.129',92,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:53:44','2019-09-18 12:00:00'),(4229,'mathematics','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:56:08','2019-09-18 11:06:40'),(4230,'mathematics','34.230.32.127',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 19:04:41','2019-09-17 19:04:41'),(4231,'crk','105.112.52.75',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 20:33:57','2019-09-17 20:34:00'),(4232,'mathematics','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 21:53:45','2019-09-17 21:53:47'),(4233,'biology','66.249.64.180',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-17 22:13:17','2019-09-25 11:22:46'),(4234,'chemistry','91.242.162.56',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 00:16:39','2019-09-18 00:16:39'),(4235,'physics','49.181.255.251',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:11:15','2019-09-18 02:11:47'),(4236,'chemistry','49.181.255.251',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:12:23','2019-09-18 02:12:24'),(4237,'physics','110.44.127.203',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:21:31','2019-09-18 02:21:32'),(4238,'chemistry','40.77.167.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 03:04:48','2019-09-18 03:04:48'),(4239,'chemistry','49.180.134.8',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 04:19:37','2019-09-18 04:19:38'),(4240,'government','41.190.2.129',658,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-18 04:37:51','2019-09-18 11:14:19'),(4241,'english','35.233.231.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 05:38:18','2019-09-18 05:38:18'),(4242,'english','41.190.2.129',77,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:17:49','2019-09-18 09:59:30'),(4243,'biology','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:26:52','2019-09-18 11:11:13'),(4244,'chemistry','197.210.226.214',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 10:04:09','2019-09-18 10:04:09'),(4245,'english','188.29.164.19',28,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:23:26','2019-09-18 11:25:54'),(4246,'commerce','41.190.2.129',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:28:08','2019-09-18 11:56:09'),(4247,'chemistry','66.249.83.20',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 11:46:32','2019-11-06 14:40:23'),(4248,'english','105.112.41.25',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:49:33','2019-09-18 11:49:33'),(4249,'chemistry','105.112.38.22',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:07:36','2019-09-18 12:07:36'),(4250,'english','105.112.38.22',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:09:51','2019-09-18 12:11:42'),(4251,'chemistry','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:22','2019-09-18 12:49:23'),(4252,'chemistry','157.55.39.178',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:23','2019-09-18 12:49:23'),(4253,'biology','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:38','2019-09-18 12:49:38'),(4254,'english','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:50:03','2019-09-18 12:50:03'),(4255,'chemistry','197.210.65.154',21,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:11:00','2019-09-18 14:14:29'),(4256,'government','197.210.65.154',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:15:12','2019-09-18 14:17:53'),(4257,'government','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:22:02','2019-09-18 14:22:03'),(4258,'chemistry','41.190.2.121',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:24:39','2019-09-18 14:24:39'),(4259,'commerce','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:25:26','2019-09-18 14:25:26'),(4260,'english','197.149.125.34',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:29:51','2019-09-18 15:03:08'),(4261,'economics','105.112.29.230',10,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:08:25','2019-09-18 17:49:38'),(4262,'commerce','41.190.30.252',119,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 15:20:43','2019-09-19 15:57:17'),(4263,'commerce','105.112.29.213',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:29:15','2019-09-18 15:29:15'),(4264,'government','41.190.30.252',245,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:07:56','2019-09-20 12:55:06'),(4265,'english','105.112.41.242',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:10:59','2019-09-18 16:12:46'),(4266,'english','41.190.30.252',301,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:30:17','2019-09-20 12:50:25'),(4267,'mathematics','41.190.2.209',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:45:19','2019-09-18 16:45:20'),(4268,'chemistry','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:05','2019-09-19 15:57:38'),(4269,'mathematics','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:20','2019-09-19 15:57:59'),(4270,'biology','41.190.30.252',602,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:26:22','2019-09-20 12:54:08'),(4271,'chemistry','150.70.167.82',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 18:31:12','2019-09-26 00:57:44'),(4272,'chemistry','40.77.167.63',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 01:09:50','2020-01-08 07:44:01'),(4273,'mathematics','41.217.116.241',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 03:47:25','2019-09-19 03:54:42'),(4274,'government','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:20:51','2019-09-19 07:20:52'),(4275,'biology','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:22:21','2019-09-19 07:22:22'),(4276,'mathematics','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4277,'chemistry','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4278,'englishlit','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4279,'crk','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4280,'geography','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4281,'currentaffairs','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4282,'history','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:55'),(4283,'english','45.222.100.155',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:45:54','2019-09-19 08:47:36'),(4284,'biology','27.34.25.22',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 10:47:54','2019-09-19 10:47:56'),(4285,'physics','27.34.70.49',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 12:46:48','2019-09-19 13:37:35'),(4286,'chemistry','41.138.163.117',264,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 16:24:08','2019-09-20 08:36:52'),(4287,'physics','27.34.70.50',260,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-19 17:28:13','2019-09-19 18:55:53'),(4288,'chemistry','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 17:50:14','2019-09-19 17:50:15'),(4289,'biology','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 18:55:47','2019-09-19 18:55:48'),(4290,'chemistry','54.36.148.175',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 20:34:08','2019-09-19 20:34:08'),(4291,'english','41.217.116.241',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 05:04:08','2019-09-20 05:04:56'),(4292,'biology','110.44.125.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:16:05','2019-09-20 13:16:59'),(4293,'physics','103.95.16.239',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:20','2019-09-20 13:33:21'),(4294,'physics','103.94.222.78',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:40','2019-09-20 13:33:42'),(4295,'physics','103.58.145.248',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:47:59','2019-09-20 14:02:35'),(4296,'chemistry','103.58.145.248',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:49:11','2019-09-20 13:49:13'),(4297,'physics','27.34.26.105',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:02','2019-09-20 13:51:04'),(4298,'biology','27.34.26.105',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:12','2019-09-20 13:53:00'),(4299,'biology','103.58.145.248',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:49','2019-09-20 13:58:53'),(4300,'physics','27.34.70.223',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 14:15:53','2019-09-20 14:15:54'),(4301,'biology','27.34.104.212',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:24','2019-09-20 15:10:26'),(4302,'biology','27.34.69.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:35','2019-09-20 15:10:36'),(4303,'physics','43.228.192.35',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:33:07','2019-09-27 00:26:30'),(4304,'mathematics','43.228.192.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:34:07','2019-09-20 15:36:30'),(4305,'accounting','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:08','2019-09-20 18:55:09'),(4306,'englishlit','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4307,'government','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4308,'geography','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4309,'irk','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4310,'civiledu','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4311,'history','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4312,'biology','103.95.16.185',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 19:02:51','2019-09-20 19:02:52'),(4313,'chemistry','93.158.166.147',2,'','NG','','Lagos',NULL,NULL,'','','2019-09-20 20:08:32','2019-10-24 17:47:31'),(4314,'physics','27.34.25.249',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-20 22:44:30','2019-09-20 22:44:31'),(4315,'biology','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:44:50','2019-09-20 22:44:51'),(4316,'chemistry','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:46:10','2019-09-20 22:46:12'),(4317,'chemistry','35.173.47.43',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 00:22:18','2019-09-21 00:22:22'),(4318,'mathematics','66.249.64.178',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 02:47:16','2019-09-21 02:47:18'),(4319,'chemistry','3.81.148.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:13:38','2019-09-21 05:13:46'),(4320,'chemistry','154.120.114.154',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:17:33','2019-09-21 06:18:06'),(4321,'chemistry','54.89.142.238',106,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 08:00:06','2019-09-21 08:09:05'),(4322,'chemistry','91.242.162.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 11:12:15','2019-09-21 11:12:15'),(4323,'commerce','41.190.31.67',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:09:29','2019-09-21 19:06:59'),(4324,'government','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:11:30','2019-09-21 15:11:31'),(4325,'mathematics','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:12:57','2019-09-21 15:12:58'),(4326,'chemistry','105.112.53.39',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 18:24:08','2019-09-21 18:28:24'),(4327,'english','197.210.44.0',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 20:50:21','2019-09-21 20:50:21'),(4328,'mathematics','18.234.75.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 21:50:19','2019-09-21 21:50:19'),(4329,'mathematics','34.207.140.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 22:36:26','2019-09-21 22:36:26'),(4330,'biology','27.34.68.44',36,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:18'),(4331,'biology','27.34.68.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:16'),(4332,'chemistry','34.228.212.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 07:07:50','2019-09-22 07:07:50'),(4333,'chemistry','91.242.162.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 09:55:37','2019-09-22 09:55:37'),(4334,'commerce','41.190.3.118',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 10:30:11','2019-09-22 10:32:00'),(4335,'mathematics','35.175.238.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 22:29:35','2019-09-22 22:29:35'),(4336,'biology','103.232.154.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 01:46:19','2019-09-23 01:46:20'),(4337,'biology','27.34.104.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 02:47:02','2019-09-23 02:47:03'),(4338,'mathematics','105.112.27.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 15:37:49','2019-09-23 15:37:50'),(4339,'chemistry','154.113.86.210',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:52:59','2019-09-24 08:58:26'),(4340,'mathematics','154.113.86.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:58:49','2019-09-24 08:58:49'),(4341,'mathematics','154.113.86.202',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 09:42:16','2019-09-24 09:42:41'),(4342,'currentaffairs','54.173.205.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 12:53:57','2019-09-24 12:53:57'),(4343,'english','105.112.52.225',21,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:28:15','2019-09-24 16:49:26'),(4344,'biology','105.112.52.225',663,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:30:16','2019-09-24 14:54:54'),(4345,'chemistry','105.112.52.225',22,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:32:07','2019-09-24 15:00:30'),(4346,'currentaffairs','105.112.52.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 13:34:54','2019-09-24 13:34:54'),(4347,'commerce','105.112.52.225',598,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:30:24','2019-09-24 14:57:46'),(4348,'accounting','105.112.52.225',341,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:33:47','2019-09-24 14:59:43'),(4349,'physics','105.112.52.225',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:55:31','2019-09-24 15:02:06'),(4350,'mathematics','105.112.52.225',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:58:41','2019-09-24 14:58:42'),(4351,'english','41.190.31.234',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 15:47:34','2019-09-24 15:47:34'),(4352,'physics','54.198.206.199',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 21:19:56','2019-09-24 21:19:56'),(4353,'government','52.5.110.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 02:40:21','2019-09-25 02:40:21'),(4354,'biology','105.112.41.33',286,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 03:16:07','2019-09-25 12:05:04'),(4355,'english','154.118.20.99',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 04:50:44','2019-09-25 04:58:16'),(4356,'physics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 05:48:27','2019-09-25 05:48:29'),(4357,'mathematics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 07:16:11','2019-09-25 07:16:13'),(4358,'accounting','105.112.41.33',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:01','2019-09-25 10:01:11'),(4359,'mathematics','105.112.41.33',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:41','2019-09-25 09:14:48'),(4360,'physics','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:25:33','2019-09-25 11:45:37'),(4361,'chemistry','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:53:46','2019-09-25 08:53:47'),(4362,'government','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:02:04','2019-09-25 09:02:04'),(4363,'commerce','105.112.41.33',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:12:58','2019-09-25 09:46:15'),(4364,'english','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:24:47','2019-09-25 09:45:39'),(4365,'history','54.92.191.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 16:07:48','2019-09-25 16:07:48'),(4366,'biology','154.118.42.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 21:32:52','2019-09-25 21:32:53'),(4367,'chemistry','91.242.162.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 03:32:45','2019-09-26 03:54:55'),(4368,'english','154.118.17.103',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 07:55:26','2019-09-26 07:58:00'),(4369,'chemistry','37.9.87.217',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 08:32:29','2019-09-28 02:46:55'),(4370,'civiledu','105.112.44.193',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:35:16','2019-09-26 09:59:45'),(4371,'insurance','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:22','2019-09-26 09:59:23'),(4372,'currentaffairs','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:32','2019-09-26 09:59:32'),(4373,'chemistry','105.112.44.193',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:04:54','2019-09-26 11:38:07'),(4374,'biology','105.112.44.193',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:20','2019-09-26 19:16:16'),(4375,'englishlit','105.112.44.193',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:28','2019-09-26 11:34:05'),(4376,'physics','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:10:00','2019-09-26 11:29:36'),(4377,'accounting','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:14:27','2019-09-26 10:17:13'),(4378,'irk','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:33:54','2019-09-26 10:33:54'),(4379,'government','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:01:08','2019-09-26 11:01:09'),(4380,'commerce','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:28:09','2019-09-26 11:28:10'),(4381,'chemistry','157.55.39.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 18:38:53','2019-11-24 22:31:16'),(4382,'chemistry','154.118.37.164',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:42:25','2019-09-26 21:43:27'),(4383,'mathematics','154.118.37.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:43:52','2019-09-26 21:43:52'),(4384,'government','52.73.45.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 00:37:59','2019-09-27 00:37:59'),(4385,'irk','54.175.103.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 05:05:42','2019-09-27 05:05:42'),(4386,'chemistry','36.99.136.130',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4387,'chemistry','111.7.100.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4388,'chemistry','111.7.100.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:44','2019-10-09 11:27:44'),(4389,'physics','49.244.242.12',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:00:55','2019-09-27 12:00:56'),(4390,'chemistry','157.55.39.74',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:45:44','2019-09-27 12:45:44'),(4391,'english','197.210.54.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 17:55:01','2019-09-27 17:55:01'),(4392,'economics','54.234.192.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 00:10:36','2019-09-28 00:10:36'),(4393,'englishlit','54.91.218.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 02:43:56','2019-09-28 02:43:56'),(4394,'english','154.120.93.57',595,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:40:25','2019-10-01 11:59:48'),(4395,'biology','154.120.93.57',225,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:57:15','2019-09-28 16:09:59'),(4396,'chemistry','105.112.23.210',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:27:45','2019-09-28 11:29:58'),(4397,'physics','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:20','2019-09-28 11:55:21'),(4398,'accounting','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:43','2019-09-28 11:55:45'),(4399,'englishlit','54.172.49.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 15:59:20','2019-09-28 15:59:20'),(4400,'chemistry','154.120.93.57',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 16:06:01','2019-09-28 16:08:44'),(4401,'biology','171.76.250.218',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 18:56:35','2019-09-28 18:58:46'),(4402,'mathematics','105.112.11.104',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 20:48:14','2019-09-28 20:48:14'),(4403,'mathematics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:28'),(4404,'biology','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:29'),(4405,'physics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4406,'chemistry','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4407,'crk','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4408,'economics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4409,'civiledu','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4410,'civiledu','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 23:37:51','2019-09-28 23:37:51'),(4411,'chemistry','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 00:03:54','2019-09-29 00:03:54'),(4412,'physics','54.224.133.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:24:13','2019-09-29 01:52:53'),(4413,'english','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4414,'mathematics','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4415,'accounting','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4416,'crk','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4417,'civiledu','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:54'),(4418,'insurance','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:54','2019-09-29 01:52:54'),(4419,'physics','3.95.189.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 02:51:59','2019-09-29 02:51:59'),(4420,'chemistry','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 06:16:54','2019-09-29 06:16:56'),(4421,'physics','93.71.107.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:18','2019-09-29 07:40:10'),(4422,'chemistry','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:31','2019-09-29 07:39:32'),(4423,'biology','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:40:23','2019-09-29 07:40:25'),(4424,'mathematics','154.120.93.57',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:15:50','2019-09-29 18:43:31'),(4425,'commerce','154.120.93.57',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:31:37','2019-09-29 18:37:10'),(4426,'chemistry','5.255.250.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 10:22:17','2019-10-15 18:07:00'),(4427,'chemistry','107.167.107.151',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:05','2019-09-29 13:44:39'),(4428,'chemistry','105.112.113.181',90,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:22','2019-09-29 13:42:00'),(4429,'mathematics','105.112.113.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:35:38','2019-09-29 13:35:38'),(4430,'chemistry','36.252.98.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:43:36','2019-09-29 13:43:38'),(4431,'chemistry','82.145.220.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 18:07:39','2019-09-29 18:07:47'),(4432,'chemistry','129.56.100.60',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:15:36','2019-09-30 09:16:57'),(4433,'english','129.56.100.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:16:16','2019-09-30 09:16:25'),(4434,'government','41.190.2.44',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:13:45','2019-09-30 14:15:39'),(4435,'biology','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:04','2019-09-30 13:57:15'),(4436,'mathematics','41.190.2.44',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:57','2019-09-30 14:29:55'),(4437,'chemistry','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:43:01','2019-09-30 17:46:58'),(4438,'english','41.190.2.44',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:45:04','2019-09-30 17:49:27'),(4439,'commerce','41.190.2.44',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:54:47','2019-09-30 18:56:36'),(4440,'history','54.147.150.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 15:44:23','2019-09-30 15:44:23'),(4441,'government','41.58.215.64',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:08:17','2019-09-30 18:08:17'),(4442,'mathematics','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:30:32','2019-09-30 18:30:33'),(4443,'government','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:31:38','2019-09-30 18:31:38'),(4444,'biology','27.33.202.67',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 00:15:27','2019-10-01 00:15:29'),(4445,'chemistry','197.210.63.23',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 06:59:39','2019-10-01 07:17:32'),(4446,'physics','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:29:40','2019-10-26 17:47:17'),(4447,'biology','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:39:21','2019-10-12 01:46:00'),(4448,'chemistry','197.210.246.222',930,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 14:56:07','2019-10-08 18:45:58'),(4449,'chemistry','196.220.144.2',702,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 15:04:34','2019-10-06 18:10:34'),(4450,'physics','171.76.168.198',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 20:07:42','2019-10-01 20:07:43'),(4451,'english','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4452,'commerce','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4453,'chemistry','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4454,'economics','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4455,'insurance','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4456,'currentaffairs','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4457,'history','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:35'),(4458,'english','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4459,'commerce','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4460,'englishlit','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4461,'government','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4462,'crk','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4463,'insurance','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4464,'currentaffairs','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:34'),(4465,'english','154.118.21.211',125,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 07:40:32','2019-10-02 08:32:13'),(4466,'chemistry','41.184.176.252',1053,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 10:36:18','2020-01-27 12:19:42'),(4467,'accounting','54.84.164.37',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 12:49:33','2019-10-02 12:49:33'),(4468,'chemistry','3.87.61.43',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-02 13:16:54','2019-10-02 13:16:57'),(4469,'english','197.210.246.222',520,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:48:04','2019-10-08 18:55:26'),(4470,'mathematics','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:50:53','2019-10-02 19:50:56'),(4471,'history','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:52:48','2019-10-02 19:52:51'),(4472,'english','196.220.144.2',291,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:15:37','2019-10-06 20:24:53'),(4473,'mathematics','196.220.144.2',1403,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:35:07','2019-10-06 18:58:12'),(4474,'physics','196.220.144.2',960,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:39:30','2019-10-06 19:09:01'),(4475,'economics','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:50:04','2019-10-08 18:48:36'),(4476,'biology','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:52:35','2019-10-08 18:56:29'),(4477,'commerce','197.210.246.222',320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:56:17','2019-10-02 20:58:19'),(4478,'accounting','197.210.246.222',760,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:58:36','2019-10-08 18:48:07'),(4479,'chemistry','100.43.90.108',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 03:16:03','2019-10-04 02:08:43'),(4480,'physics','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:07','2019-10-03 05:18:08'),(4481,'chemistry','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:34','2019-10-03 05:18:36'),(4482,'english','154.120.87.191',165,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 06:04:34','2019-10-03 16:10:48'),(4483,'english','35.210.215.17',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 07:46:05','2019-10-03 07:46:05'),(4484,'chemistry','5.255.250.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 09:44:47','2019-10-03 09:44:47'),(4485,'chemistry','105.112.41.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 10:51:00','2019-10-03 10:51:26'),(4486,'physics','54.242.236.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 13:11:23','2019-10-03 13:11:23'),(4487,'chemistry','207.46.13.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 16:53:40','2019-10-03 16:53:40'),(4488,'currentaffairs','3.82.243.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 21:55:12','2019-10-03 21:55:12'),(4489,'english','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 05:55:09','2019-10-04 06:29:52'),(4490,'englishlit','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:24:38','2019-10-04 06:29:57'),(4491,'insurance','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:29:57','2019-10-04 06:32:40'),(4492,'government','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:15','2019-10-04 06:33:46'),(4493,'currentaffairs','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:33','2019-10-04 06:32:04'),(4494,'crk','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:31:19','2019-10-04 06:33:25'),(4495,'commerce','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:32:20','2019-10-04 06:33:41'),(4496,'english','41.217.46.141',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 07:54:54','2019-10-04 09:02:54'),(4497,'government','3.85.89.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 09:20:47','2019-10-04 09:20:47'),(4498,'mathematics','3.87.186.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 11:42:15','2019-10-04 11:42:15'),(4499,'english','197.210.44.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:52:50','2019-10-04 14:55:58'),(4500,'mathematics','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:55:40','2019-10-04 14:55:40'),(4501,'chemistry','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:01:20','2019-10-04 15:01:20'),(4502,'biology','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:10:50','2019-10-04 15:10:51'),(4503,'englishlit','196.220.144.2',1080,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-04 21:36:39','2019-10-06 19:21:44'),(4504,'government','196.220.144.2',1001,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:40:51','2019-10-06 19:06:34'),(4505,'geography','196.220.144.2',1320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:43:47','2019-10-06 19:15:16'),(4506,'civiledu','196.220.144.2',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:48:25','2019-10-04 21:51:04'),(4507,'history','52.206.150.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 23:32:16','2019-10-04 23:32:16'),(4508,'physics','119.160.67.57',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 03:40:07','2019-10-05 03:40:08'),(4509,'english','41.217.100.83',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 05:04:25','2019-10-05 06:01:53'),(4510,'chemistry','54.36.149.48',47,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-05 06:27:28','2020-05-06 15:23:56'),(4511,'irk','52.205.10.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 13:25:19','2019-10-05 13:25:19'),(4512,'english','154.118.67.81',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 18:02:59','2019-10-05 20:13:49'),(4513,'physics','110.44.115.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 02:22:30','2019-10-06 02:22:31'),(4514,'mathematics','105.112.17.47',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 05:36:53','2019-10-06 05:37:17'),(4515,'english','41.217.97.111',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:14:35','2019-10-06 11:53:33'),(4516,'government','54.224.0.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:26:54','2019-10-06 06:26:54'),(4517,'irk','54.243.12.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 11:38:30','2019-10-06 11:38:30'),(4518,'economics','196.220.144.2',521,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-06 18:16:49','2019-10-06 19:02:58'),(4519,'history','174.129.83.246',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 18:59:36','2019-10-06 18:59:36'),(4520,'accounting','196.220.144.2',280,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 19:24:55','2019-10-06 19:26:22'),(4521,'english','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:32','2019-10-07 02:07:33'),(4522,'mathematics','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4523,'physics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4524,'englishlit','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4525,'crk','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4526,'economics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4527,'civiledu','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4528,'commerce','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4529,'accounting','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4530,'geography','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4531,'irk','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4532,'economics','18.204.201.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 07:02:49','2019-10-07 07:02:49'),(4533,'english','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4534,'biology','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4535,'englishlit','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4536,'crk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4537,'geography','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4538,'economics','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:11'),(4539,'irk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4540,'insurance','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4541,'currentaffairs','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4542,'history','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4543,'chemistry','40.77.167.166',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 14:48:22','2020-04-16 19:24:46'),(4544,'english','154.120.92.245',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:16:45','2019-10-08 08:28:43'),(4545,'chemistry','207.46.13.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:29:00','2019-10-08 08:29:00'),(4546,'chemistry','197.210.60.68',198,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 13:13:26','2019-10-08 13:25:10'),(4547,'chemistry','91.242.162.77',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 17:35:58','2019-10-08 18:04:36'),(4548,'englishlit','197.210.246.222',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-08 18:46:58','2019-10-08 18:47:31'),(4549,'biology','196.220.144.2',80,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:06:19','2019-10-08 19:06:44'),(4550,'commerce','196.220.144.2',240,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:07:20','2019-10-08 19:08:52'),(4551,'chemistry','66.249.66.208',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 00:58:25','2019-10-26 17:44:22'),(4552,'mathematics','66.249.66.208',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 01:11:04','2019-10-26 17:53:47'),(4553,'chemistry','34.229.149.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 04:15:06','2019-10-09 04:15:06'),(4554,'commerce','54.242.23.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 06:59:31','2019-10-09 06:59:31'),(4555,'chemistry','36.99.136.139',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:44'),(4556,'chemistry','36.99.136.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:43'),(4557,'chemistry','54.36.150.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 12:06:00','2019-10-09 12:06:00'),(4558,'chemistry','35.175.120.211',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 02:34:06','2019-10-10 04:07:28'),(4559,'insurance','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:18','2019-11-12 01:51:04'),(4560,'accounting','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:22','2019-11-12 01:51:08'),(4561,'englishlit','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:25','2019-11-12 01:51:13'),(4562,'government','198.187.29.38',1680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:30','2019-11-12 01:51:18'),(4563,'currentaffairs','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:34','2019-11-12 01:51:24'),(4564,'economics','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:38','2019-11-12 01:51:29'),(4565,'geography','198.187.29.38',1760,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:43','2019-11-12 01:51:33'),(4566,'english','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:50','2019-11-12 01:51:37'),(4567,'mathematics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:54','2019-11-12 01:51:41'),(4568,'commerce','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:58','2019-11-12 01:51:45'),(4569,'biology','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:09','2019-11-12 01:51:48'),(4570,'physics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:13','2019-11-12 01:51:52'),(4571,'chemistry','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:17','2019-11-12 01:51:56'),(4572,'crk','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:20','2019-11-12 01:52:00'),(4573,'history','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:24','2019-11-12 01:52:04'),(4574,'irk','198.187.29.38',810,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:35','2019-11-12 01:52:07'),(4575,'civiledu','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:38','2019-11-12 01:52:11'),(4576,'english','54.147.174.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-11 01:20:30','2019-10-11 01:20:30'),(4577,'chemistry','105.112.51.58',49,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 09:52:44','2019-10-11 09:54:21'),(4578,'chemistry','182.140.244.74',11,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 11:22:18','2019-10-11 11:22:28'),(4579,'mathematics','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4580,'accounting','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4581,'biology','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4582,'government','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4583,'crk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4584,'geography','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4585,'irk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4586,'insurance','54.224.74.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 00:50:18','2019-10-12 00:50:18'),(4587,'mathematics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:33:21','2019-10-12 01:33:22'),(4588,'physics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:39:23','2019-10-12 01:39:25'),(4589,'accounting','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:48:29','2019-10-26 17:37:06'),(4590,'currentaffairs','105.112.40.99',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 05:00:59','2019-10-12 05:00:59'),(4591,'biology','105.112.40.100',10,'',NULL,'',NULL,NULL,NULL,'','','2019-10-12 16:50:45','2019-10-12 16:51:53'),(4592,'currentaffairs','3.87.162.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 01:34:03','2019-10-13 01:34:03'),(4593,'commerce','54.83.149.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 06:55:56','2019-10-13 06:55:56'),(4594,'chemistry','41.217.58.69',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 07:04:52','2019-10-13 09:28:40'),(4595,'crk','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:00','2019-10-13 11:14:03'),(4596,'chemistry','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:11','2019-10-13 11:14:14'),(4597,'currentaffairs','18.212.242.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:31:55','2019-10-13 11:31:55'),(4598,'biology','171.76.195.83',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:53:18','2019-10-13 11:53:45'),(4599,'physics','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:13','2019-10-13 12:00:14'),(4600,'chemistry','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:35','2019-10-13 12:00:36'),(4601,'government','54.89.105.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 14:56:23','2019-10-13 14:56:23'),(4602,'chemistry','129.56.105.4',53,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:17:44','2019-10-13 15:21:07'),(4603,'mathematics','129.56.105.4',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:23:57','2019-10-13 15:24:00'),(4604,'chemistry','3.92.76.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 02:02:14','2019-10-14 02:02:17'),(4605,'history','3.94.214.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 04:11:49','2019-10-14 04:11:49'),(4606,'chemistry','197.210.64.86',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 07:32:24','2019-10-14 07:32:27'),(4607,'history','3.89.135.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 08:16:22','2019-10-14 08:16:22'),(4608,'chemistry','157.55.39.168',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 09:16:59','2019-10-14 09:17:00'),(4609,'mathematics','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:57:53','2019-10-14 16:35:36'),(4610,'commerce','41.190.30.180',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:59:39','2019-10-14 16:45:26'),(4611,'government','41.190.30.180',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:00:51','2019-10-14 16:25:28'),(4612,'biology','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:03:11','2019-10-14 16:35:03'),(4613,'chemistry','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:09:18','2019-10-14 16:33:53'),(4614,'english','41.190.30.180',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:13:01','2019-10-14 16:38:31'),(4615,'mathematics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4616,'mathematics','3.88.110.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4617,'englishlit','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4618,'commerce','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4619,'crk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4620,'accounting','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4621,'biology','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4622,'economics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4623,'irk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4624,'geography','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4625,'insurance','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4626,'currentaffairs','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4627,'mathematics','18.215.162.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 07:32:53','2019-10-15 07:32:53'),(4628,'chemistry','105.112.26.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 11:12:59','2019-10-15 11:12:59'),(4629,'english','34.227.191.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 14:04:54','2019-10-15 14:04:54'),(4630,'irk','34.207.92.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 16:11:12','2019-10-15 16:11:12'),(4631,'english','105.112.120.131',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:31:08','2019-10-16 00:50:07'),(4632,'physics','105.112.120.131',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:33:25','2019-10-16 00:33:25'),(4633,'history','54.237.235.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 03:43:24','2019-10-16 03:43:24'),(4634,'government','41.190.31.103',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:29:16','2019-10-16 06:29:16'),(4635,'biology','41.190.31.103',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:30:16','2019-10-16 06:31:46'),(4636,'economics','35.173.136.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 11:30:36','2019-10-16 11:30:36'),(4637,'commerce','3.86.101.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 13:52:29','2019-10-16 13:52:29'),(4638,'english','105.112.46.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 16:05:22','2019-10-16 16:08:03'),(4639,'insurance','34.203.203.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 14:09:34','2019-10-17 14:09:34'),(4640,'chemistry','3.85.245.126',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 17:30:44','2019-10-17 17:55:33'),(4641,'english','41.217.98.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 22:28:02','2019-10-17 22:28:02'),(4642,'english','41.217.89.22',145,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 04:35:09','2019-10-18 06:06:03'),(4643,'chemistry','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:23:36','2019-10-18 06:23:36'),(4644,'accounting','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:59:21','2019-10-18 06:59:21'),(4645,'commerce','154.120.107.217',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 07:40:00','2019-10-18 07:41:16'),(4646,'commerce','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 08:40:41','2019-10-18 08:40:41'),(4647,'mathematics','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 09:07:15','2019-10-18 09:07:15'),(4648,'chemistry','41.191.105.90',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 15:48:28','2019-10-18 15:49:58'),(4649,'mathematics','54.234.162.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 18:25:03','2019-10-18 18:25:03'),(4650,'english','105.112.46.232',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 19:58:44','2019-10-20 16:01:53'),(4651,'mathematics','105.112.46.232',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 20:37:17','2019-10-18 20:37:38'),(4652,'english','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4653,'mathematics','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4654,'accounting','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4655,'englishlit','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4656,'biology','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4657,'government','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4658,'chemistry','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4659,'geography','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4660,'irk','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4661,'civiledu','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4662,'currentaffairs','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:13'),(4663,'government','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:41:48','2019-10-19 05:41:48'),(4664,'english','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:45:20','2019-10-19 05:45:20'),(4665,'mathematics','197.210.44.151',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:55','2019-10-19 08:59:56'),(4666,'biology','197.210.44.151',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:56','2019-10-19 09:27:54'),(4667,'english','105.112.73.172',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 09:37:46','2019-10-19 09:37:48'),(4668,'chemistry','207.46.13.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 15:25:34','2019-10-19 15:25:34'),(4669,'chemistry','3.209.80.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 16:51:54','2019-10-19 16:51:54'),(4670,'english','18.206.241.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 04:13:55','2019-10-20 04:13:55'),(4671,'mathematics','54.80.29.100',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:33:07','2019-10-20 12:33:46'),(4672,'chemistry','207.46.13.122',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:35:39','2019-10-20 12:35:39'),(4673,'mathematics','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4674,'accounting','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4675,'englishlit','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4676,'government','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4677,'crk','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4678,'insurance','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4679,'currentaffairs','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:17','2019-10-20 16:35:17'),(4680,'chemistry','105.112.41.90',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 17:54:25','2019-10-20 17:54:28'),(4681,'english','105.112.44.170',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 18:58:27','2019-10-20 18:58:27'),(4682,'chemistry','141.8.188.161',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 21:56:45','2019-10-20 21:56:46'),(4683,'irk','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:28:19','2019-10-21 01:28:19'),(4684,'mathematics','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:36:39','2019-10-21 01:36:39'),(4685,'chemistry','197.210.64.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 05:52:18','2019-10-21 05:52:19'),(4686,'insurance','52.90.91.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 08:46:16','2019-10-21 08:46:16'),(4687,'chemistry','197.210.8.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:11:30','2019-10-21 10:11:30'),(4688,'chemistry','197.210.47.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:26:02','2019-10-21 10:26:26'),(4689,'mathematics','197.210.47.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:27:16','2019-10-21 10:27:16'),(4690,'chemistry','34.228.38.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 15:27:28','2019-10-21 15:27:28'),(4691,'chemistry','141.8.143.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 20:01:50','2019-10-21 20:01:50'),(4692,'chemistry','54.36.149.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 03:32:50','2019-10-22 03:32:50'),(4693,'currentaffairs','3.95.63.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 10:54:12','2019-10-22 10:54:12'),(4694,'english','41.203.78.1',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:10:05','2019-10-22 13:10:05'),(4695,'biology','54.196.129.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:22:41','2019-10-22 13:22:41'),(4696,'chemistry','197.210.53.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:09:28','2020-04-07 17:00:28'),(4697,'chemistry','197.210.53.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:10:41','2019-10-22 15:10:41'),(4698,'commerce','3.87.222.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:12:55','2019-10-22 17:12:55'),(4699,'physics','66.249.64.239',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:37:27','2019-10-22 17:37:29'),(4700,'currentaffairs','18.212.225.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 21:17:58','2019-10-22 21:17:58'),(4701,'accounting','54.89.96.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 23:16:46','2019-10-22 23:16:46'),(4702,'government','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 01:59:48','2019-10-23 01:59:48'),(4703,'mathematics','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 02:02:09','2019-10-23 02:02:09'),(4704,'chemistry','66.249.88.71',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 08:13:03','2019-10-23 14:35:06'),(4705,'englishlit','3.85.139.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 11:12:36','2019-10-23 11:12:36'),(4706,'english','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4707,'mathematics','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4708,'accounting','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:13'),(4709,'government','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4710,'crk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4711,'irk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4712,'civiledu','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4713,'chemistry','66.249.83.18',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:35:06','2019-11-06 14:40:34'),(4714,'chemistry','197.211.57.153',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:36:10','2019-10-23 14:40:46'),(4715,'mathematics','197.211.57.153',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:37:19','2019-10-23 14:38:17'),(4716,'chemistry','74.125.210.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:38:27','2019-10-23 14:38:27'),(4717,'history','3.84.20.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 17:22:28','2019-10-23 17:22:28'),(4718,'english','105.112.44.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 18:01:51','2019-10-23 18:01:51'),(4719,'english','105.112.53.50',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:15:14','2019-10-23 20:15:14'),(4720,'biology','3.89.55.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:28:18','2019-10-23 20:28:18'),(4721,'history','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 00:17:49','2019-10-24 00:17:49'),(4722,'english','41.190.3.189',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 03:02:51','2019-10-24 03:02:52'),(4723,'chemistry','197.253.35.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:18:00','2019-10-24 07:18:00'),(4724,'chemistry','91.242.162.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:42:43','2019-10-24 07:52:10'),(4725,'chemistry','41.203.73.203',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:45:04','2019-10-24 08:53:03'),(4726,'biology','41.203.73.203',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:53:59','2019-10-24 08:54:01'),(4727,'chemistry','129.205.112.139',108,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 11:19:07','2019-10-24 12:02:39'),(4728,'chemistry','154.120.87.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 17:55:11','2019-10-24 17:56:27'),(4729,'chemistry','54.36.148.163',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 19:43:38','2019-10-24 19:43:39'),(4730,'accounting','34.204.7.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 06:14:19','2019-10-25 06:14:19'),(4731,'history','23.22.145.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 07:34:04','2019-10-25 07:34:04'),(4732,'mathematics','129.205.112.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:18:03','2019-10-25 09:18:03'),(4733,'commerce','129.205.112.139',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:29:16','2019-10-25 09:31:21'),(4734,'english','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4735,'biology','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4736,'physics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4737,'government','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4738,'crk','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:03'),(4739,'economics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4740,'civiledu','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4741,'chemistry','100.43.81.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:45:17','2019-10-25 16:45:17'),(4742,'crk','18.212.239.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 18:29:40','2019-10-25 18:29:40'),(4743,'commerce','35.173.231.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 23:55:41','2019-10-25 23:55:41'),(4744,'accounting','54.234.193.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 02:03:11','2019-10-26 02:03:11'),(4745,'english','197.242.102.245',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:44:02','2019-10-26 12:15:20'),(4746,'mathematics','197.242.102.245',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:46:55','2019-10-26 05:46:55'),(4747,'chemistry','41.203.73.208',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 09:43:31','2019-10-26 09:47:32'),(4748,'biology','54.81.220.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 15:10:39','2019-10-26 15:10:39'),(4749,'geography','18.204.197.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 16:03:30','2019-10-26 16:03:30'),(4750,'insurance','54.80.115.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 18:02:39','2019-10-26 18:02:39'),(4751,'commerce','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4752,'accounting','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4753,'biology','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4754,'chemistry','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4755,'physics','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4756,'government','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4757,'crk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4758,'englishlit','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:35'),(4759,'irk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4760,'insurance','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4761,'history','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4762,'chemistry','120.18.21.195',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:10','2019-10-27 05:56:57'),(4763,'mathematics','120.18.21.195',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:46','2019-10-27 05:25:47'),(4764,'crk','18.205.116.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:31:51','2019-10-27 05:31:51'),(4765,'english','154.120.107.117',322,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 06:13:42','2019-10-27 10:26:33'),(4766,'commerce','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4767,'accounting','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4768,'biology','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4769,'chemistry','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:52'),(4770,'englishlit','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4771,'government','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4772,'irk','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4773,'chemistry','157.55.39.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:39:09','2019-10-27 14:39:09'),(4774,'englishlit','3.88.251.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:47:29','2019-10-27 14:47:29'),(4775,'commerce','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 18:59:58','2019-10-27 18:59:58'),(4776,'crk','3.88.198.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:12:54','2019-10-28 01:12:54'),(4777,'chemistry','40.77.167.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:42:41','2019-10-28 01:42:41'),(4778,'biology','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 04:16:20','2019-10-28 04:16:20'),(4779,'government','18.232.138.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 06:35:55','2019-10-28 06:35:55'),(4780,'physics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:30:28','2019-10-28 07:30:29'),(4781,'mathematics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:31:02','2019-10-28 07:31:04'),(4782,'government','3.95.66.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 08:05:51','2019-10-28 08:05:51'),(4783,'english','105.112.72.133',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:29:38','2019-10-28 09:29:39'),(4784,'chemistry','197.210.52.23',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:51:40','2019-10-28 09:53:37'),(4785,'chemistry','197.210.53.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:53:00','2019-10-28 09:53:00'),(4786,'crk','3.90.3.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:10:58','2019-10-28 11:10:58'),(4787,'chemistry','197.210.8.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:13:17','2019-10-28 11:13:17'),(4788,'currentaffairs','197.210.8.173',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:14:37','2019-10-28 11:14:46'),(4789,'civiledu','34.207.224.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 17:19:22','2019-10-28 17:19:22'),(4790,'biology','3.89.72.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 03:11:01','2019-10-29 03:11:01'),(4791,'government','54.89.226.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 05:28:30','2019-10-29 05:28:30'),(4792,'economics','3.93.216.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 06:59:51','2019-10-29 06:59:51'),(4793,'english','105.112.40.87',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 09:57:48','2019-10-29 12:46:07'),(4794,'english','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 11:36:32','2019-10-29 11:36:32'),(4795,'accounting','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 12:02:06','2019-10-29 12:02:06'),(4796,'mathematics','105.112.73.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:23:32','2019-10-29 15:23:32'),(4797,'english','41.190.30.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:36:54','2019-10-29 15:36:54'),(4798,'mathematics','105.112.17.202',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:55:44','2019-10-29 15:55:44'),(4799,'english','196.27.128.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:57:02','2019-10-29 15:57:02'),(4800,'chemistry','196.27.128.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:59:40','2019-10-29 15:59:41'),(4801,'mathematics','154.68.226.2',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:06:09','2019-10-29 16:06:09'),(4802,'english','197.210.227.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:21:51','2019-10-29 16:21:51'),(4803,'english','107.167.106.232',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:41:14','2019-10-29 16:42:06'),(4804,'mathematics','18.206.56.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:46:50','2019-10-29 16:46:50'),(4805,'english','105.112.73.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:52:32','2019-10-29 16:52:33'),(4806,'englishlit','197.211.58.67',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:08:44','2019-10-29 17:08:44'),(4807,'government','197.211.58.70',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:11:12','2019-10-29 17:11:13'),(4808,'chemistry','129.56.94.58',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:18','2019-10-29 17:48:50'),(4809,'mathematics','197.210.85.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:26','2019-10-29 17:48:26'),(4810,'mathematics','129.56.94.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:49:32','2019-10-29 17:49:35'),(4811,'chemistry','197.210.53.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:31:50','2019-10-29 19:31:50'),(4812,'english','105.112.53.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:33:58','2019-10-29 19:33:58'),(4813,'chemistry','197.210.52.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:34:08','2019-10-29 19:34:08'),(4814,'mathematics','105.112.53.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:35:34','2019-10-29 19:35:34'),(4815,'chemistry','136.243.91.32',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 20:51:17','2020-01-07 22:24:25'),(4816,'english','54.198.170.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 22:10:58','2019-10-29 22:10:58'),(4817,'physics','3.81.122.72',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:05:58','2019-10-29 23:38:38'),(4818,'english','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4819,'mathematics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4820,'commerce','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4821,'englishlit','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4822,'economics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:39'),(4823,'civiledu','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:39','2019-10-29 23:38:39'),(4824,'mathematics','52.205.254.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 03:27:41','2019-10-30 03:27:41'),(4825,'accounting','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4826,'englishlit','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4827,'geography','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4828,'economics','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4829,'irk','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:56'),(4830,'civiledu','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4831,'currentaffairs','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4832,'mathematics','197.210.226.198',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-30 04:44:48','2020-05-28 20:25:41'),(4833,'english','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:02:12','2019-10-30 06:02:12'),(4834,'physics','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:03:57','2019-10-30 06:03:57'),(4835,'mathematics','34.226.220.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 07:03:46','2019-10-30 07:03:46'),(4836,'chemistry','197.210.57.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 12:45:49','2019-10-30 12:45:49'),(4837,'economics','107.23.28.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 18:15:18','2019-10-30 18:15:18'),(4838,'civiledu','18.214.99.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 19:00:42','2019-10-30 19:00:42'),(4839,'chemistry','197.210.65.172',97,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:11:50'),(4840,'chemistry','197.210.65.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:02:02'),(4841,'chemistry','197.210.57.224',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:55:52','2019-10-30 20:55:53'),(4842,'mathematics','197.210.57.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:56:37','2019-10-30 20:56:37'),(4843,'mathematics','197.210.57.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4844,'mathematics','197.210.57.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4845,'mathematics','197.210.57.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4846,'chemistry','197.210.57.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4847,'chemistry','197.211.58.123',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:15','2019-10-31 11:21:15'),(4848,'mathematics','197.211.58.123',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:24','2019-10-31 13:23:52'),(4849,'chemistry','91.242.162.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 17:52:10','2019-10-31 17:52:10'),(4850,'chemistry','197.210.84.213',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 18:55:16','2019-10-31 18:58:56'),(4851,'insurance','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 20:05:10','2019-10-31 20:05:10'),(4852,'history','18.206.189.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 04:45:22','2019-11-01 04:45:22'),(4853,'crk','54.86.61.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 06:49:49','2019-11-01 06:49:49'),(4854,'biology','54.198.198.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 07:35:21','2019-11-01 07:35:21'),(4855,'english','105.112.77.49',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:39:35','2019-11-01 09:39:36'),(4856,'government','54.174.215.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:52:23','2019-11-01 09:52:23'),(4857,'economics','107.22.138.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 11:25:59','2019-11-01 11:25:59'),(4858,'chemistry','34.207.95.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 14:53:34','2019-11-01 14:53:34'),(4859,'english','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 16:08:03','2019-11-01 16:08:03'),(4860,'englishlit','54.236.206.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 22:07:32','2019-11-01 22:07:32'),(4861,'biology','175.37.47.44',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 23:06:13','2019-11-01 23:06:14'),(4862,'accounting','54.90.121.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 06:44:10','2019-11-02 06:44:10'),(4863,'chemistry','40.77.167.175',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:15:55','2019-11-02 07:15:56'),(4864,'history','35.171.19.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:52:07','2019-11-02 07:52:07'),(4865,'english','105.112.73.230',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:32:09','2019-11-02 13:32:09'),(4866,'crk','3.84.129.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:39:50','2019-11-02 13:39:50'),(4867,'chemistry','197.211.58.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 14:34:58','2019-11-02 14:34:58'),(4868,'commerce','54.162.250.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 16:05:23','2019-11-02 16:05:23'),(4869,'accounting','35.172.138.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 18:09:32','2019-11-02 18:09:32'),(4870,'economics','100.27.31.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 20:25:53','2019-11-02 20:25:53'),(4871,'insurance','18.205.22.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 04:08:45','2019-11-03 04:08:45'),(4872,'englishlit','34.204.2.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 07:47:31','2019-11-03 07:47:31'),(4873,'mathematics','105.112.40.245',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 12:10:24','2019-11-03 12:12:07'),(4874,'chemistry','197.211.58.152',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 17:54:39','2019-11-03 17:55:20'),(4875,'commerce','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:18:15','2019-11-03 19:18:15'),(4876,'english','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:41:39','2019-11-03 19:41:39'),(4877,'physics','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 20:10:58','2019-11-03 20:10:58'),(4878,'crk','54.242.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 21:58:54','2019-11-03 21:58:54'),(4879,'chemistry','197.210.58.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:22:50','2019-11-03 23:22:50'),(4880,'chemistry','197.210.57.85',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:23:06','2019-11-03 23:23:09'),(4881,'chemistry','41.58.233.184',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 00:27:44','2019-11-04 00:30:17'),(4882,'crk','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 01:28:20','2019-11-04 01:28:20'),(4883,'english','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4884,'biology','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4885,'mathematics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4886,'physics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4887,'englishlit','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4888,'government','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4889,'civiledu','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4890,'crk','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4891,'insurance','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4892,'geography','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4893,'currentaffairs','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4894,'accounting','3.84.43.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 19:32:08','2019-11-04 19:32:08'),(4895,'english','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:48','2019-11-05 02:19:48'),(4896,'commerce','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4897,'accounting','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4898,'englishlit','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4899,'crk','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4900,'geography','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4901,'insurance','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4902,'chemistry','54.36.148.22',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:26:28','2019-11-05 02:26:30'),(4903,'mathematics','34.229.222.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 10:07:21','2019-11-05 10:07:21'),(4904,'chemistry','154.120.94.130',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 12:22:45','2019-11-05 12:23:42'),(4905,'commerce','197.211.58.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 19:23:50','2019-11-05 19:23:51'),(4906,'mathematics','18.209.50.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 20:22:48','2019-11-05 20:22:48'),(4907,'chemistry','89.234.68.70',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:17:05','2019-11-06 04:17:44'),(4908,'chemistry','83.71.247.36',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:21:42','2019-11-06 04:22:32'),(4909,'english','18.233.99.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 07:47:51','2019-11-06 07:47:51'),(4910,'currentaffairs','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 09:50:51','2019-11-06 09:50:51'),(4911,'accounting','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 10:24:20','2019-11-06 10:24:20'),(4912,'mathematics','54.145.206.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 12:14:51','2019-11-06 12:14:51'),(4913,'insurance','3.82.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 16:51:53','2019-11-06 16:51:53'),(4914,'history','54.84.14.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 23:14:10','2019-11-06 23:14:10'),(4915,'history','18.212.250.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 02:06:08','2019-11-07 02:06:08'),(4916,'mathematics','197.211.58.187',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 11:26:16','2019-11-07 11:28:37'),(4917,'englishlit','52.205.0.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 16:47:19','2019-11-07 16:47:19'),(4918,'chemistry','66.249.64.116',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 17:17:10','2020-01-25 10:15:50'),(4919,'irk','18.212.71.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 18:58:31','2019-11-07 18:58:31'),(4920,'accounting','54.225.61.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 21:07:53','2019-11-07 21:07:53'),(4921,'english','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:28:09','2019-11-08 00:28:09'),(4922,'history','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:36:53','2019-11-08 00:36:53'),(4923,'crk','35.172.133.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 05:00:20','2019-11-08 05:00:20'),(4924,'commerce','54.91.119.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 06:26:52','2019-11-08 06:26:52'),(4925,'accounting','34.207.107.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 09:53:52','2019-11-08 09:53:52'),(4926,'economics','54.157.32.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 11:20:44','2019-11-08 11:20:44'),(4927,'english','66.249.66.210',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 14:58:50','2019-11-08 14:58:51'),(4928,'chemistry','54.234.228.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 17:47:37','2019-11-08 17:47:37'),(4929,'insurance','3.88.176.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 19:01:26','2019-12-23 08:02:50'),(4930,'chemistry','157.55.39.209',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 21:25:34','2019-11-08 21:25:35'),(4931,'chemistry','91.242.162.26',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:13:24','2019-11-08 22:13:25'),(4932,'englishlit','18.212.146.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:21:32','2019-11-08 22:21:32'),(4933,'chemistry','197.210.70.127',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 00:49:45','2019-11-09 02:10:25'),(4934,'history','197.210.70.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:10:38','2019-11-09 01:10:38'),(4935,'english','197.210.70.127',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:12:33','2019-11-09 02:27:22'),(4936,'crk','34.227.56.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:23:16','2019-11-09 02:23:16'),(4937,'english','197.210.70.11',596,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:29:42','2019-11-09 02:43:37'),(4938,'mathematics','197.210.70.11',115,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:48:03','2019-11-09 03:02:34'),(4939,'commerce','197.210.70.11',887,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-09 03:04:20','2019-11-09 03:25:18'),(4940,'accounting','197.210.70.11',514,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:25:25','2019-11-09 03:37:34'),(4941,'biology','197.210.70.11',549,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:37:38','2019-11-09 07:08:42'),(4942,'physics','54.224.42.134',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 05:11:09','2019-11-09 05:11:09'),(4943,'physics','197.210.70.11',62,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:08:48','2019-11-09 07:17:18'),(4944,'chemistry','197.210.70.11',322,'','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:22:44','2020-01-16 09:56:50'),(4945,'englishlit','197.210.70.11',361,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:33:50','2019-11-09 07:42:56'),(4946,'government','197.210.70.11',438,'Nigeria','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:43:01','2019-11-09 08:01:54'),(4947,'irk','197.210.70.11',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:06:48','2019-11-09 08:07:41'),(4948,'mathematics','197.210.70.169',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:46','2019-11-09 08:08:46'),(4949,'crk','197.210.70.169',391,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:53','2019-11-09 08:46:48'),(4950,'civiledu','197.210.70.169',393,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:09:11','2019-11-09 09:00:04'),(4951,'insurance','197.210.70.169',350,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:11:33','2019-11-09 09:05:35'),(4952,'history','197.210.70.169',50,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:13:57','2019-11-09 08:15:02'),(4953,'geography','197.210.70.169',236,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:16:57','2019-11-09 08:47:31'),(4954,'economics','197.210.70.169',461,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:22:02','2019-11-09 08:53:44'),(4955,'irk','197.210.70.169',33,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:13','2019-11-09 08:57:41'),(4956,'currentaffairs','197.210.70.169',44,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:59','2019-11-09 09:06:11'),(4957,'physics','197.210.70.169',68,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:30:48','2019-11-09 08:33:02'),(4958,'government','197.210.70.169',285,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:32:21','2019-11-09 08:38:37'),(4959,'physics','3.85.57.153',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:37:56','2019-11-09 08:37:56'),(4960,'chemistry','159.138.155.115',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:57:32','2019-11-09 08:57:32'),(4961,'commerce','54.87.49.120',3,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 10:09:51'),(4962,'accounting','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 09:33:31'),(4963,'chemistry','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4964,'government','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4965,'irk','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4966,'civiledu','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4967,'history','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4968,'englishlit','54.87.49.120',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:36:47','2019-11-09 09:36:47'),(4969,'english','105.112.45.248',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:58:49','2019-11-09 09:58:49'),(4970,'english','54.158.200.213',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 12:26:02','2019-11-09 12:26:02'),(4971,'crk','3.95.160.82',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 14:20:40','2019-11-09 14:20:40'),(4972,'mathematics','18.206.174.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 06:53:11','2019-11-10 06:53:11'),(4973,'accounting','54.90.247.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 09:13:09','2019-11-10 09:13:09'),(4974,'chemistry','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:29:58','2019-11-10 11:29:58'),(4975,'english','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:56:18','2019-11-10 11:56:18'),(4976,'mathematics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4977,'commerce','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4978,'physics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4979,'englishlit','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:03'),(4980,'crk','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4981,'geography','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4982,'economics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4983,'mathematics','54.175.81.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 21:05:09','2019-11-10 21:05:09'),(4984,'biology','3.90.109.201',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:25'),(4985,'biology','3.90.109.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:10'),(4986,'chemistry','102.134.115.193',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 14:41:27','2019-11-11 14:46:16'),(4987,'chemistry','54.36.148.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 16:31:40','2019-11-11 16:31:40'),(4988,'economics','3.91.196.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 18:48:42','2019-11-11 18:48:42'),(4989,'mathematics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4990,'commerce','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4991,'biology','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:46'),(4992,'physics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4993,'economics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4994,'currentaffairs','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4995,'history','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4996,'english','54.90.246.133',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:35:46','2019-11-11 20:35:46'),(4997,'mathematics','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:33:47','2019-11-11 23:33:47'),(4998,'insurance','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:47:30','2019-11-11 23:47:30'),(4999,'chemistry','14.210.2.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 02:24:20','2019-11-12 02:24:20'),(5000,'chemistry','3.233.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 05:05:46','2019-11-12 05:05:46'),(5001,'biology','54.92.179.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 08:42:22','2019-11-12 08:42:22'),(5002,'history','54.85.253.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 09:42:51','2019-11-12 09:42:51'),(5003,'chemistry','197.210.71.200',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 12:32:36','2019-11-12 12:32:37'),(5004,'chemistry','223.73.239.66',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 15:29:45','2019-11-12 15:29:46'),(5005,'chemistry','41.190.30.18',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 18:17:17','2019-11-12 18:17:43'),(5006,'englishlit','3.92.166.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 20:15:35','2019-11-12 20:15:35'),(5007,'accounting','103.10.31.31',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:23:01','2019-11-13 05:29:07'),(5008,'physics','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:54','2019-11-13 05:28:55'),(5009,'biology','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:59','2019-11-13 05:29:00'),(5010,'accounting','54.166.15.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 08:33:25','2019-11-13 08:33:25'),(5011,'biology','66.249.64.116',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 09:19:50','2019-11-13 09:19:52'),(5012,'history','54.159.26.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 11:22:16','2019-11-13 11:22:16'),(5013,'physics','66.249.64.112',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 12:14:10','2020-01-11 03:27:45'),(5014,'accounting','3.88.111.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 17:40:10','2019-11-13 17:40:10'),(5015,'chemistry','207.46.13.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 19:01:59','2019-11-13 19:01:59'),(5016,'economics','3.88.230.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:09','2019-11-13 20:05:09'),(5017,'english','105.112.77.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:42','2019-11-13 20:05:45'),(5018,'chemistry','105.112.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 00:12:42','2019-11-14 00:12:42'),(5019,'insurance','3.87.3.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 04:04:18','2019-11-14 04:04:18'),(5020,'english','104.133.10.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:36','2019-11-14 06:14:47'),(5021,'crk','104.133.10.100',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:48','2019-11-14 06:11:51'),(5022,'chemistry','91.242.162.9',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:50:51','2019-11-14 06:50:52'),(5023,'englishlit','34.239.138.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 08:49:26','2019-11-14 08:49:26'),(5024,'english','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5025,'mathematics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5026,'chemistry','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:12','2019-11-14 10:38:15'),(5027,'physics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:14','2019-11-14 10:38:17'),(5028,'commerce','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:19','2019-11-14 10:38:23'),(5029,'currentaffairs','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:21','2019-11-14 10:38:24'),(5030,'government','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:22','2019-11-14 10:38:25'),(5031,'accounting','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:24','2019-11-14 10:38:27'),(5032,'economics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:25','2019-11-14 10:38:28'),(5033,'biology','104.132.127.96',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:27','2019-11-14 10:44:31'),(5034,'geography','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:29','2019-11-14 10:38:32'),(5035,'history','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:31','2019-11-14 10:38:34'),(5036,'insurance','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:33','2019-11-14 10:38:36'),(5037,'civiledu','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:35','2019-11-14 10:38:38'),(5038,'crk','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:37','2019-11-14 10:38:40'),(5039,'englishlit','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:38','2019-11-14 10:38:41'),(5040,'mathematics','197.156.253.124',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 11:11:37','2019-11-14 11:13:49'),(5041,'crk','34.229.192.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:42:00','2019-11-14 12:42:00'),(5042,'chemistry','105.112.113.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:43:31','2019-11-14 12:43:31'),(5043,'english','154.118.34.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 15:44:21','2019-11-14 15:44:24'),(5044,'chemistry','82.145.221.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 17:59:18','2019-11-14 17:59:18'),(5045,'physics','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:46:23','2019-11-14 18:46:23'),(5046,'english','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:53:00','2019-11-14 18:53:00'),(5047,'commerce','3.87.121.240',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-14 19:14:45','2019-11-14 19:14:45'),(5048,'crk','34.238.39.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 22:51:14','2019-11-14 22:51:14'),(5049,'economics','34.228.32.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 02:11:21','2019-11-15 02:11:21'),(5050,'chemistry','105.112.55.179',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:49:45','2019-11-15 08:02:02'),(5051,'physics','105.112.55.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:51:09','2019-11-15 07:51:09'),(5052,'chemistry','105.112.72.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 12:48:53','2019-11-15 12:50:34'),(5053,'accounting','34.203.12.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 19:40:58','2019-11-15 19:40:58'),(5054,'commerce','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5055,'accounting','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5056,'biology','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5057,'chemistry','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:32'),(5058,'geography','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5059,'economics','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5060,'insurance','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5061,'biology','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5062,'chemistry','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5063,'englishlit','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5064,'geography','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5065,'economics','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5066,'irk','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5067,'currentaffairs','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5068,'mathematics','18.212.5.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 08:58:36','2019-11-16 08:58:36'),(5069,'english','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:23:31','2019-11-16 11:23:31'),(5070,'mathematics','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:21','2019-11-16 11:30:21'),(5071,'mathematics','105.112.183.226',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:22','2019-11-16 11:30:23'),(5072,'english','105.112.183.226',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:32:08','2019-11-16 11:32:09'),(5073,'chemistry','3.88.21.220',320,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:53:05','2019-11-16 14:57:29'),(5074,'english','34.207.122.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:55:25','2019-11-16 14:55:25'),(5075,'chemistry','41.58.118.229',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:02:07','2019-11-16 15:05:13'),(5076,'physics','41.58.118.229',147,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:06:10','2019-11-16 15:11:36'),(5077,'mathematics','41.58.118.229',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:17:15','2019-11-16 15:17:18'),(5078,'chemistry','34.227.24.189',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:20:27','2019-11-16 15:20:41'),(5079,'english','41.58.118.229',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-16 15:21:00','2019-11-16 15:23:00'),(5080,'government','41.58.118.229',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:23:59','2019-11-16 15:24:02'),(5081,'chemistry','105.112.183.165',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:28:10','2019-11-16 15:28:10'),(5082,'chemistry','18.212.227.139',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:30:31','2019-11-16 15:30:34'),(5083,'chemistry','34.238.168.46',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:34:19','2019-11-16 15:42:25'),(5084,'chemistry','54.88.106.95',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:46:48','2019-11-16 15:46:51'),(5085,'chemistry','34.227.27.84',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:59:45','2019-11-16 16:02:50'),(5086,'english','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 16:19:39','2019-11-16 16:19:42'),(5087,'english','197.210.28.14',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 17:38:36','2019-11-16 17:38:36'),(5088,'geography','3.92.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 02:58:10','2019-11-17 02:58:10'),(5089,'mathematics','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:39:52','2019-11-17 05:56:58'),(5090,'english','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:40:15','2019-11-17 05:56:35'),(5091,'english','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:04:57','2019-11-17 07:04:57'),(5092,'commerce','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:11:06','2019-11-17 07:11:06'),(5093,'currentaffairs','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:58:01','2019-11-17 07:58:01'),(5094,'economics','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 08:25:21','2019-11-17 08:25:21'),(5095,'mathematics','100.26.97.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 10:58:29','2019-11-17 10:58:29'),(5096,'englishlit','100.27.23.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:42:13','2019-11-17 11:42:13'),(5097,'chemistry','3.226.254.115',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:59:22','2019-11-17 12:24:41'),(5098,'mathematics','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:07:43','2019-11-17 13:07:43'),(5099,'insurance','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:16:37','2019-11-17 13:16:37'),(5100,'commerce','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:52'),(5101,'accounting','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:49'),(5102,'physics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:50'),(5103,'crk','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:46'),(5104,'geography','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:42'),(5105,'economics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:44'),(5106,'history','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:40'),(5107,'accounting','3.90.28.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 01:39:00','2019-11-18 01:39:00'),(5108,'englishlit','54.145.175.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:30:31','2019-11-18 11:30:31'),(5109,'chemistry','154.68.195.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:44:51','2019-11-18 11:44:51'),(5110,'chemistry','105.112.177.109',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 16:07:34','2019-11-18 16:09:34'),(5111,'history','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 22:55:46','2019-12-08 23:07:31'),(5112,'biology','52.90.143.9',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:27:47','2019-11-25 19:20:30'),(5113,'english','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5114,'commerce','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5115,'government','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5116,'crk','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5117,'insurance','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5118,'currentaffairs','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5119,'chemistry','157.55.39.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:14:36','2019-11-19 04:14:36'),(5120,'history','54.152.47.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:20:09','2019-11-19 04:20:09'),(5121,'crk','3.87.113.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 06:24:27','2019-11-19 06:24:27'),(5122,'commerce','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:06:20','2019-11-19 09:06:20'),(5123,'biology','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:12:53','2019-11-19 09:12:53'),(5124,'chemistry','129.56.29.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:13:53','2019-11-19 09:13:53'),(5125,'mathematics','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:13:31','2019-11-19 10:13:31'),(5126,'commerce','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:15:00','2019-11-19 10:15:00'),(5127,'english','105.112.61.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:46:39','2019-11-19 10:46:39'),(5128,'accounting','3.87.101.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 11:57:03','2019-11-19 11:57:03'),(5129,'accounting','54.90.128.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 13:36:06','2019-11-19 13:36:06'),(5130,'economics','54.198.9.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 14:11:01','2019-11-19 14:11:01'),(5131,'chemistry','82.145.221.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 17:06:44','2019-11-19 17:06:59'),(5132,'commerce','34.207.90.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 18:09:26','2019-11-19 18:09:26'),(5133,'insurance','35.175.235.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 21:47:15','2019-11-19 21:47:15'),(5134,'economics','54.243.7.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 23:21:26','2019-11-19 23:21:26'),(5135,'englishlit','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 00:51:45','2019-11-20 00:51:45'),(5136,'accounting','3.81.87.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 03:46:05','2019-11-20 03:46:05'),(5137,'crk','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 05:37:07','2019-11-20 05:37:07'),(5138,'geography','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 06:00:11','2019-11-20 06:00:11'),(5139,'englishlit','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:11:12','2019-11-20 13:11:12'),(5140,'physics','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:12:49','2019-11-20 13:12:49'),(5141,'commerce','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:10:33','2019-11-20 14:10:33'),(5142,'english','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:24:22','2019-11-20 14:24:22'),(5143,'englishlit','3.86.15.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:59:45','2019-11-20 14:59:45'),(5144,'crk','54.211.114.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 18:58:30','2019-11-20 18:58:30'),(5145,'englishlit','54.227.23.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 20:17:56','2019-11-20 20:17:56'),(5146,'economics','54.173.226.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 02:00:33','2019-11-21 02:00:33'),(5147,'currentaffairs','3.87.237.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 15:38:11','2019-11-21 15:38:11'),(5148,'englishlit','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:11:52','2019-11-21 19:11:52'),(5149,'civiledu','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:27:16','2019-11-21 19:27:16'),(5150,'english','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:41:38','2019-11-21 19:41:38'),(5151,'accounting','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 20:05:16','2019-11-21 20:05:16'),(5152,'chemistry','61.138.222.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 02:40:12','2019-11-22 02:40:12'),(5153,'commerce','34.229.113.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 05:56:54','2019-11-22 05:56:54'),(5154,'english','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5155,'mathematics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5156,'physics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5157,'crk','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5158,'geography','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5159,'insurance','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5160,'history','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5161,'mathematics','41.191.105.89',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:47:00','2019-11-22 09:47:25'),(5162,'mathematics','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:28:36','2019-11-22 18:28:36'),(5163,'irk','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:38:47','2019-11-22 18:38:47'),(5164,'chemistry','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:24:34','2019-11-22 19:24:37'),(5165,'mathematics','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:26:12','2019-11-22 19:26:15'),(5166,'chemistry','154.160.27.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 20:46:34','2019-11-22 20:46:34'),(5167,'government','34.235.143.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 23:08:27','2019-11-22 23:08:27'),(5168,'commerce','3.93.212.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:05:01','2019-11-23 01:05:01'),(5169,'insurance','107.23.192.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:56:47','2019-11-23 01:56:47'),(5170,'english','54.87.140.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 03:56:10','2019-11-23 03:56:10'),(5171,'crk','3.80.89.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 04:32:38','2019-11-23 04:32:38'),(5172,'chemistry','40.77.167.170',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 06:00:38','2019-11-23 06:00:39'),(5173,'mathematics','3.87.21.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 13:23:50','2019-11-23 13:23:50'),(5174,'chemistry','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:04:39','2019-11-23 14:04:39'),(5175,'geography','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:13:49','2019-11-23 14:13:49'),(5176,'chemistry','3.82.225.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:59:38','2019-11-23 14:59:38'),(5177,'currentaffairs','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 18:52:45','2019-11-23 18:52:45'),(5178,'geography','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 19:17:25','2019-11-23 19:17:25'),(5179,'english','54.90.185.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 20:11:52','2019-11-23 20:11:52'),(5180,'geography','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 21:06:07','2019-11-23 21:06:07'),(5181,'chemistry','3.87.114.3',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 00:02:34','2019-11-24 00:03:13'),(5182,'geography','3.92.185.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 03:57:44','2019-11-24 03:57:44'),(5183,'englishlit','18.212.68.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 07:58:51','2019-11-24 07:58:51'),(5184,'chemistry','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 08:41:40','2019-11-24 08:41:40'),(5185,'currentaffairs','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 09:06:30','2019-11-24 09:06:30'),(5186,'biology','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 11:46:34','2019-11-24 11:46:34'),(5187,'commerce','3.94.119.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 13:14:32','2019-11-24 13:14:32'),(5188,'economics','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 14:33:11','2019-11-24 14:33:11'),(5189,'commerce','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:06:24','2019-11-24 15:06:24'),(5190,'english','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:27:19','2019-11-24 15:27:19'),(5191,'chemistry','159.138.159.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 18:34:43','2020-01-29 06:08:04'),(5192,'physics','35.173.191.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:09:52','2019-11-24 19:09:52'),(5193,'englishlit','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:56:50','2019-11-24 19:56:50'),(5194,'mathematics','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 20:10:28','2019-11-24 20:10:28'),(5195,'geography','3.95.237.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:00:07','2019-11-24 22:00:07'),(5196,'chemistry','129.205.112.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:36:55','2019-11-24 22:36:55'),(5197,'mathematics','34.239.115.115',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-25 00:20:37'),(5198,'accounting','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5199,'geography','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5200,'economics','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5201,'insurance','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5202,'currentaffairs','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5203,'history','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5204,'government','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:14:49','2019-11-25 00:14:49'),(5205,'biology','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:26:53','2019-11-25 00:26:53'),(5206,'chemistry','91.242.162.34',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:29:05','2019-11-25 00:29:05'),(5207,'mathematics','54.161.28.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 01:18:44','2019-11-25 01:18:44'),(5208,'insurance','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:18:39','2019-11-25 02:18:39'),(5209,'english','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:50:26','2019-11-25 02:50:26'),(5210,'biology','3.80.24.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 13:54:57','2019-11-25 13:54:57'),(5211,'accounting','54.174.106.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:15:50','2019-11-25 22:15:50'),(5212,'chemistry','54.36.150.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:39:17','2019-11-25 22:39:17'),(5213,'chemistry','59.62.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:05:11','2019-11-26 00:05:11'),(5214,'biology','52.207.70.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:23:52','2019-11-26 00:23:52'),(5215,'currentaffairs','3.92.68.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 04:10:20','2019-11-26 04:10:20'),(5216,'biology','3.80.157.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 09:41:29','2019-11-26 09:41:29'),(5217,'currentaffairs','34.201.221.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 13:34:13','2019-11-26 13:34:13'),(5218,'biology','54.226.198.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 19:19:54','2019-11-26 19:19:54'),(5219,'currentaffairs','3.90.165.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 23:25:19','2019-11-26 23:25:19'),(5220,'irk','3.87.128.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 02:59:37','2019-11-27 02:59:37'),(5221,'chemistry','197.210.85.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 04:36:41','2019-11-27 04:36:41'),(5222,'chemistry','52.91.32.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 06:56:10','2019-11-27 06:56:10'),(5223,'chemistry','3.84.51.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 08:55:13','2019-11-27 08:55:13'),(5224,'englishlit','54.205.247.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 09:48:58','2019-11-27 09:48:58'),(5225,'biology','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 12:58:49','2019-11-27 12:58:49'),(5226,'irk','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 13:14:40','2019-11-27 13:14:40'),(5227,'insurance','54.198.168.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 14:09:50','2019-11-27 14:09:50'),(5228,'economics','52.90.222.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 17:06:53','2019-11-27 17:06:53'),(5229,'history','3.92.231.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 18:56:25','2019-11-27 18:56:25'),(5230,'chemistry','18.234.89.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:41:07','2019-11-27 19:41:07'),(5231,'chemistry','49.87.102.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:46:18','2019-11-27 19:46:18'),(5232,'accounting','54.161.90.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 20:54:04','2019-11-27 20:54:04'),(5233,'chemistry','27.214.192.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 23:04:04','2019-11-27 23:04:04'),(5234,'chemistry','34.230.10.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 01:37:13','2019-11-28 01:37:13'),(5235,'irk','18.209.6.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 04:53:50','2019-11-28 04:53:50'),(5236,'biology','3.82.192.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:53:14','2019-11-28 07:53:15'),(5237,'history','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:55:43','2019-11-28 07:55:43'),(5238,'commerce','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5239,'englishlit','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5240,'currentaffairs','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 08:20:01','2019-11-28 08:20:01'),(5241,'mathematics','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:18:07','2019-11-28 10:18:07'),(5242,'chemistry','105.112.55.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:31:45','2019-11-28 10:31:45'),(5243,'commerce','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:42:22','2019-11-28 10:42:22'),(5244,'crk','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 11:14:13','2019-11-28 11:14:13'),(5245,'economics','18.234.45.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 12:07:05','2019-11-28 12:07:05'),(5246,'commerce','52.200.202.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 14:58:46','2019-11-28 14:58:46'),(5247,'biology','41.190.3.204',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 16:57:43','2019-11-28 16:57:44'),(5248,'chemistry','54.36.148.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 17:06:02','2019-11-28 17:06:03'),(5249,'crk','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:31:30','2019-11-28 19:31:30'),(5250,'accounting','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:33:45','2019-11-28 19:33:45'),(5251,'economics','3.85.242.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:37'),(5252,'commerce','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:38'),(5253,'accounting','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5254,'biology','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5255,'physics','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5256,'crk','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5257,'geography','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5258,'currentaffairs','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5259,'geography','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 06:56:30','2019-11-29 06:56:30'),(5260,'economics','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 07:23:58','2019-11-29 07:23:58'),(5261,'commerce','3.90.78.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 09:46:03','2019-11-29 09:46:03'),(5262,'crk','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 14:54:27','2019-11-29 14:54:27'),(5263,'english','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:32:55','2019-11-29 16:32:55'),(5264,'insurance','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:33:40','2019-11-29 16:33:40'),(5265,'biology','54.165.28.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 17:08:15','2019-11-29 17:13:52'),(5266,'englishlit','3.91.91.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 20:29:30','2019-11-29 20:29:30'),(5267,'chemistry','197.210.53.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 22:14:15','2019-11-29 22:14:15'),(5268,'geography','3.80.133.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 00:24:52','2019-11-30 00:24:52'),(5269,'crk','54.144.64.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 03:05:17','2019-11-30 03:05:17'),(5270,'chemistry','141.0.13.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 04:28:46','2019-11-30 04:28:50'),(5271,'crk','34.235.132.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 09:54:43','2019-11-30 09:54:43'),(5272,'economics','3.84.73.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 14:56:44','2019-11-30 14:56:44'),(5273,'chemistry','54.196.143.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 15:46:01','2019-11-30 15:46:01'),(5274,'physics','174.129.162.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 17:01:07','2019-11-30 17:01:07'),(5275,'commerce','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:18:36','2019-11-30 19:18:36'),(5276,'englishlit','3.84.92.186',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:29:52','2019-11-30 19:36:20'),(5277,'english','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:34:16','2019-11-30 19:34:16'),(5278,'crk','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 02:44:38','2019-12-01 02:44:38'),(5279,'englishlit','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 03:14:33','2019-12-01 03:14:33'),(5280,'economics','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:41:42','2019-12-01 06:41:42'),(5281,'chemistry','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:51:45','2019-12-01 06:51:45'),(5282,'chemistry','207.46.13.30',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 08:20:41','2019-12-01 08:20:42'),(5283,'government','3.94.79.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 09:03:08','2019-12-01 09:03:08'),(5284,'chemistry','197.211.58.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 10:28:55','2019-12-01 10:28:55'),(5285,'english','3.83.92.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 13:54:48','2019-12-01 13:54:48'),(5286,'chemistry','182.247.60.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:04:17','2019-12-02 05:04:17'),(5287,'physics','18.212.94.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:51:40','2019-12-02 05:51:40'),(5288,'english','196.13.161.254',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:09:22','2019-12-02 11:11:49'),(5289,'chemistry','196.13.161.254',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:14:59','2019-12-02 12:04:31'),(5290,'currentaffairs','3.86.66.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:36:59','2019-12-02 11:36:59'),(5291,'chemistry','80.248.3.98',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 12:03:05','2019-12-02 12:03:05'),(5292,'currentaffairs','18.212.29.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 13:05:10','2019-12-02 13:05:10'),(5293,'civiledu','34.227.18.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:34:27','2019-12-02 16:34:27'),(5294,'chemistry','124.112.95.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:43:26','2019-12-02 16:43:26'),(5295,'english','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:15:18','2019-12-02 20:15:18'),(5296,'englishlit','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:44:03','2019-12-02 20:44:03'),(5297,'accounting','54.89.129.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 21:26:25','2019-12-02 21:26:25'),(5298,'chemistry','70.49.10.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 04:21:31','2019-12-03 04:21:32'),(5299,'english','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:12','2019-12-03 05:44:12'),(5300,'commerce','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5301,'accounting','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5302,'economics','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5303,'irk','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5304,'insurance','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5305,'history','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5306,'commerce','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5307,'accounting','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5308,'chemistry','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5309,'government','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5310,'geography','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5311,'civiledu','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5312,'history','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5313,'english','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5314,'commerce','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5315,'englishlit','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5316,'crk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5317,'irk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:21'),(5318,'insurance','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5319,'currentaffairs','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5320,'irk','3.82.106.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 20:45:47','2019-12-03 20:45:47'),(5321,'mathematics','52.90.36.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 22:27:46','2019-12-03 22:27:46'),(5322,'government','54.152.243.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 01:01:26','2019-12-04 01:01:26'),(5323,'chemistry','207.46.13.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 03:26:32','2019-12-04 03:26:32'),(5324,'insurance','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 04:39:43','2019-12-04 04:39:43'),(5325,'chemistry','14.134.201.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:29:57','2019-12-04 06:29:57'),(5326,'chemistry','218.73.129.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:30:25','2019-12-04 06:30:25'),(5327,'commerce','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:53:13','2019-12-04 06:53:13'),(5328,'crk','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:05:20','2019-12-04 07:05:20'),(5329,'english','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:15:26','2019-12-04 07:15:26'),(5330,'mathematics','41.190.3.143',119,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:24:47','2019-12-05 00:11:26'),(5331,'biology','41.190.3.143',168,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:28:53','2019-12-05 12:00:11'),(5332,'chemistry','197.211.58.2',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:19:02','2019-12-04 15:19:02'),(5333,'currentaffairs','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:20:27','2019-12-04 15:20:27'),(5334,'mathematics','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:26:56','2019-12-04 15:26:56'),(5335,'chemistry','105.112.181.189',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:14:48','2019-12-04 17:14:58'),(5336,'geography','18.208.212.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:29:42','2019-12-04 17:29:42'),(5337,'english','41.190.3.143',91,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:55:40','2019-12-05 06:58:47'),(5338,'government','41.190.3.143',84,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:56:50','2019-12-05 06:41:34'),(5339,'commerce','41.190.3.143',175,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:57:42','2019-12-05 06:53:25'),(5340,'chemistry','41.190.3.143',140,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 19:01:13','2019-12-05 07:14:29'),(5341,'mathematics','54.172.178.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 20:35:24','2019-12-04 20:35:24'),(5342,'geography','54.172.178.184',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 21:08:09','2019-12-04 21:36:53'),(5343,'english','54.163.0.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 23:30:16','2019-12-04 23:30:16'),(5344,'geography','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:01:50','2019-12-05 01:01:50'),(5345,'history','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:18:02','2019-12-05 01:18:02'),(5346,'geography','204.236.206.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:22:32','2019-12-05 07:22:32'),(5347,'physics','54.86.78.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:59:42','2019-12-05 07:59:42'),(5348,'englishlit','54.172.67.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 09:02:59','2019-12-05 09:02:59'),(5349,'currentaffairs','3.91.46.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 10:24:47','2019-12-05 10:24:47'),(5350,'biology','174.129.108.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 14:55:19','2019-12-05 14:55:19'),(5351,'chemistry','105.112.179.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 17:00:52','2019-12-05 17:00:52'),(5352,'commerce','3.84.85.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:00:24','2019-12-05 18:23:26'),(5353,'english','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:44:01','2019-12-05 18:44:01'),(5354,'economics','3.88.46.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 19:56:33','2019-12-05 19:56:33'),(5355,'history','54.81.95.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 20:35:42','2019-12-05 20:35:42'),(5356,'chemistry','113.138.129.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:25','2019-12-05 21:06:25'),(5357,'chemistry','40.77.167.50',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:35','2019-12-05 21:06:35'),(5358,'mathematics','18.233.165.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 22:52:02','2019-12-05 22:52:02'),(5359,'englishlit','54.175.59.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 00:21:22','2019-12-06 00:21:22'),(5360,'chemistry','52.90.137.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 01:50:04','2019-12-06 01:50:04'),(5361,'geography','3.87.199.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 02:52:45','2019-12-06 02:52:45'),(5362,'mathematics','3.88.194.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 04:08:29','2019-12-06 04:08:29'),(5363,'government','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:32:21','2019-12-06 05:32:21'),(5364,'mathematics','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:40:15','2019-12-06 05:40:15'),(5365,'insurance','34.227.157.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 06:43:30','2019-12-06 06:43:30'),(5366,'physics','54.172.2.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 10:09:01','2019-12-06 10:09:01'),(5367,'biology','66.249.88.17',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 14:07:38','2020-02-15 20:12:28'),(5368,'chemistry','197.210.84.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:36:43','2019-12-06 18:36:43'),(5369,'crk','197.210.84.159',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:40:55','2019-12-06 19:11:31'),(5370,'biology','34.205.127.71',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5371,'biology','34.205.127.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5372,'accounting','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:12:45','2019-12-07 10:12:45'),(5373,'history','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:34:21','2019-12-07 10:34:21'),(5374,'chemistry','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5375,'englishlit','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5376,'government','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5377,'crk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5378,'irk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5379,'civiledu','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5380,'currentaffairs','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5381,'irk','54.242.7.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 01:13:25','2019-12-08 01:13:25'),(5382,'englishlit','54.242.126.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 06:59:59','2019-12-08 06:59:59'),(5383,'chemistry','40.77.167.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 15:51:20','2019-12-08 15:51:20'),(5384,'chemistry','197.210.47.7',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:00:48','2019-12-08 16:00:49'),(5385,'chemistry','197.210.47.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:17:03','2019-12-08 16:17:03'),(5386,'insurance','54.152.41.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 17:44:29','2019-12-08 17:44:29'),(5387,'chemistry','93.158.161.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 18:45:52','2019-12-08 18:45:52'),(5388,'economics','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 19:54:55','2019-12-08 19:54:55'),(5389,'biology','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 20:26:43','2019-12-08 20:26:43'),(5390,'commerce','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5391,'english','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5392,'accounting','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5393,'accounting','3.82.25.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5394,'physics','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:42'),(5395,'biology','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5396,'geography','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5397,'economics','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5398,'crk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5399,'civiledu','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5400,'irk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5401,'chemistry','40.77.167.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 00:56:26','2019-12-09 00:56:26'),(5402,'accounting','54.226.206.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 03:42:51','2019-12-09 03:42:51'),(5403,'history','52.206.133.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 04:25:20','2019-12-09 04:25:20'),(5404,'biology','54.173.252.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 05:46:38','2019-12-09 05:46:39'),(5405,'irk','18.234.114.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 11:05:35','2019-12-09 11:05:35'),(5406,'chemistry','54.36.148.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:28:12','2019-12-09 16:28:16'),(5407,'biology','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:39'),(5408,'englishlit','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:38'),(5409,'crk','54.89.129.103',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:48:45'),(5410,'commerce','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5411,'economics','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5412,'irk','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5413,'physics','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5414,'chemistry','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5415,'insurance','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:40'),(5416,'currentaffairs','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5417,'commerce','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:17:25','2019-12-09 19:17:25'),(5418,'economics','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:32:29','2019-12-09 19:32:29'),(5419,'civiledu','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 22:44:39','2019-12-09 22:44:39'),(5420,'english','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:24','2019-12-09 23:12:24'),(5421,'geography','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:35','2019-12-09 23:12:35'),(5422,'chemistry','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:27:16','2019-12-09 23:27:16'),(5423,'chemistry','40.77.167.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:01:39','2019-12-10 00:01:39'),(5424,'accounting','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:03:12','2019-12-10 00:03:12'),(5425,'insurance','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:37:10','2019-12-10 00:37:10'),(5426,'crk','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 01:09:15','2019-12-10 01:09:15'),(5427,'chemistry','100.27.31.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 02:44:54','2019-12-10 02:44:54'),(5428,'commerce','54.237.164.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 04:47:40','2019-12-10 04:47:40'),(5429,'english','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:13:52','2019-12-10 06:13:52'),(5430,'geography','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:33:46','2019-12-10 06:33:46'),(5431,'economics','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:51:24','2019-12-10 06:51:24'),(5432,'accounting','54.242.54.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 07:57:03','2019-12-10 07:57:03'),(5433,'insurance','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:23:16','2019-12-10 09:23:16'),(5434,'chemistry','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:37:33','2019-12-10 09:37:33'),(5435,'crk','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:18:58','2019-12-10 10:18:58'),(5436,'englishlit','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:59:01','2019-12-10 10:59:01'),(5437,'government','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:19:21','2019-12-10 11:19:21'),(5438,'english','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:50:52','2019-12-10 11:50:52'),(5439,'geography','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:05:06','2019-12-10 12:05:06'),(5440,'irk','54.226.150.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:45:46','2019-12-10 12:45:46'),(5441,'commerce','3.90.68.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 13:50:00','2019-12-10 13:50:00'),(5442,'government','3.82.210.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 14:37:36','2019-12-10 14:37:36'),(5443,'crk','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:21:52','2019-12-10 15:21:52'),(5444,'economics','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:35:48','2019-12-10 15:35:48'),(5445,'currentaffairs','35.168.14.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 16:27:37','2019-12-10 16:27:37'),(5446,'geography','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:35:21','2019-12-10 20:35:21'),(5447,'economics','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:39:50','2019-12-10 20:39:50'),(5448,'accounting','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:37','2019-12-10 20:59:37'),(5449,'english','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:50','2019-12-10 20:59:50'),(5450,'crk','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 21:34:22','2019-12-10 21:34:22'),(5451,'englishlit','54.165.112.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 00:04:55','2019-12-11 00:04:55'),(5452,'government','34.201.143.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 03:16:18','2019-12-11 03:16:18'),(5453,'englishlit','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:53:05','2019-12-11 04:53:05'),(5454,'insurance','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:55:54','2019-12-11 04:55:54'),(5455,'chemistry','105.112.179.103',425,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 06:39:31','2019-12-11 07:10:00'),(5456,'mathematics','105.112.179.103',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:10:34','2019-12-11 07:10:34'),(5457,'mathematics','105.112.16.69',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:18:04','2019-12-11 07:18:48'),(5458,'chemistry','3.229.122.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:58:12','2019-12-11 09:05:40'),(5459,'geography','174.129.57.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 09:22:20','2019-12-11 09:22:20'),(5460,'crk','54.90.130.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 12:16:19','2019-12-11 12:16:19'),(5461,'chemistry','188.180.82.238',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 13:07:40','2019-12-11 13:09:06'),(5462,'chemistry','41.203.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 15:02:50','2019-12-11 15:02:50'),(5463,'chemistry','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 22:51:11','2019-12-11 22:51:11'),(5464,'accounting','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:23:14','2019-12-11 23:23:14'),(5465,'englishlit','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:52:10','2019-12-11 23:52:10'),(5466,'physics','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 00:19:17','2019-12-12 00:19:17'),(5467,'commerce','54.197.2.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 01:28:00','2019-12-12 01:28:00'),(5468,'englishlit','3.93.184.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 03:07:29','2019-12-12 03:07:29'),(5469,'crk','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 09:35:33','2019-12-12 09:35:33'),(5470,'english','18.209.36.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 11:09:56','2019-12-12 11:09:56'),(5471,'chemistry','34.228.199.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 13:40:09','2019-12-12 13:40:09'),(5472,'englishlit','3.85.74.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 14:21:15','2019-12-12 14:21:15'),(5473,'chemistry','100.27.31.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 16:34:32','2019-12-12 16:34:32'),(5474,'government','54.236.209.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 19:00:46','2019-12-12 19:00:46'),(5475,'crk','18.205.239.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:05:15','2019-12-12 20:05:15'),(5476,'crk','197.210.84.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:31:16','2019-12-12 20:40:53'),(5477,'economics','34.239.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 21:01:23','2019-12-12 21:01:23'),(5478,'english','54.172.192.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 23:30:27','2019-12-12 23:30:27'),(5479,'chemistry','40.77.167.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 02:15:26','2019-12-13 02:15:26'),(5480,'chemistry','114.229.7.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 03:41:13','2019-12-13 03:41:13'),(5481,'chemistry','105.112.80.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 08:56:22','2019-12-13 08:56:45'),(5482,'mathematics','34.203.244.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 09:11:37','2019-12-13 09:11:37'),(5483,'physics','110.44.121.20',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 10:10:52','2019-12-13 10:10:53'),(5484,'chemistry','105.112.24.37',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:15:54','2019-12-13 11:15:55'),(5485,'mathematics','105.112.179.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:03','2019-12-13 11:29:48'),(5486,'physics','105.112.179.227',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:26','2019-12-13 11:30:06'),(5487,'physics','3.93.52.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 12:46:32','2019-12-13 12:46:32'),(5488,'history','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:34','2019-12-13 21:12:28'),(5489,'currentaffairs','129.205.112.254',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:39','2019-12-13 21:09:28'),(5490,'chemistry','129.205.112.254',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:44','2019-12-13 21:12:08'),(5491,'mathematics','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:54','2019-12-13 21:11:38'),(5492,'government','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:59','2019-12-13 21:11:53'),(5493,'physics','129.205.112.254',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:04','2019-12-13 21:12:23'),(5494,'englishlit','129.205.112.254',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:09','2019-12-13 21:12:13'),(5495,'economics','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:15','2019-12-13 21:12:38'),(5496,'commerce','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:40','2019-12-13 21:12:33'),(5497,'english','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:47','2019-12-13 21:11:28'),(5498,'accounting','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:50','2019-12-13 21:10:34'),(5499,'geography','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:30','2019-12-13 21:10:38'),(5500,'crk','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:35','2019-12-13 21:11:58'),(5501,'irk','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:15','2019-12-13 21:09:43'),(5502,'biology','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:30','2019-12-13 21:12:18'),(5503,'insurance','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:01:20','2019-12-13 21:13:30'),(5504,'civiledu','129.205.112.254',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:03:35','2019-12-13 21:11:03'),(5505,'currentaffairs','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 18:57:39','2019-12-13 18:57:39'),(5506,'currentaffairs','54.226.13.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 19:41:05','2019-12-13 19:41:05'),(5507,'mathematics','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 20:26:39','2019-12-13 20:26:39'),(5508,'civiledu','3.83.131.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 23:08:17','2019-12-13 23:08:17'),(5509,'englishlit','54.163.205.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 02:02:08','2019-12-14 02:02:08'),(5510,'english','3.84.191.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:05:13','2019-12-14 03:05:13'),(5511,'physics','105.112.178.117',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:10:23','2019-12-14 03:22:06'),(5512,'biology','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:35:59','2019-12-14 03:40:01'),(5513,'accounting','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:37:14','2019-12-14 03:40:02'),(5514,'mathematics','105.112.177.67',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:11','2019-12-14 03:40:22'),(5515,'physics','105.112.177.67',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:58','2019-12-14 03:44:29'),(5516,'accounting','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:12:59','2019-12-14 04:12:59'),(5517,'mathematics','105.112.177.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:16:55','2019-12-14 04:16:55'),(5518,'mathematics','105.112.179.177',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:17:37','2019-12-14 04:17:38'),(5519,'chemistry','58.19.12.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:18:56','2019-12-14 04:18:56'),(5520,'mathematics','105.112.176.112',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:39:57','2019-12-14 04:44:54'),(5521,'mathematics','105.112.23.162',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:29:29','2019-12-14 05:38:43'),(5522,'mathematics','105.112.178.10',110,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:40:14','2019-12-14 06:24:21'),(5523,'english','105.112.178.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:20:57','2019-12-14 06:20:58'),(5524,'physics','105.112.178.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:22:14','2019-12-14 06:23:31'),(5525,'mathematics','105.112.176.255',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:48:33','2019-12-14 06:54:19'),(5526,'mathematics','105.112.177.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:16:27','2019-12-14 07:52:21'),(5527,'physics','105.112.177.210',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:18:35','2019-12-14 07:19:49'),(5528,'mathematics','34.229.0.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 14:14:24','2019-12-14 14:14:24'),(5529,'chemistry','3.94.129.211',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:29:03','2019-12-14 18:49:30'),(5530,'crk','3.82.19.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:54:57','2019-12-14 18:54:57'),(5531,'mathematics','105.112.74.0',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:40:25','2019-12-14 19:50:59'),(5532,'mathematics','105.112.178.125',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:55:19','2019-12-14 19:57:26'),(5533,'english','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:42'),(5534,'accounting','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:43'),(5535,'government','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5536,'crk','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5537,'economics','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5538,'insurance','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5539,'currentaffairs','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5540,'mathematics','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 02:56:53','2019-12-15 02:56:53'),(5541,'irk','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 03:08:39','2019-12-15 03:08:39'),(5542,'mathematics','105.112.24.144',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 05:33:44','2019-12-15 05:33:44'),(5543,'mathematics','105.112.24.123',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:27:08','2019-12-15 06:28:35'),(5544,'biology','105.112.24.123',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:28:39','2019-12-15 06:28:39'),(5545,'commerce','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:52:53','2019-12-15 07:52:53'),(5546,'government','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:53:27','2019-12-15 07:53:27'),(5547,'mathematics','105.112.75.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:03:20','2019-12-15 08:03:20'),(5548,'mathematics','105.112.178.111',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:24:49','2019-12-15 08:24:49'),(5549,'chemistry','89.163.242.18',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:57:38','2019-12-15 08:57:38'),(5550,'mathematics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:59:24','2019-12-15 09:11:12'),(5551,'commerce','105.112.16.234',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:01:55','2019-12-15 09:05:33'),(5552,'englishlit','105.112.16.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:05:43','2019-12-15 09:05:44'),(5553,'economics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:07:37','2019-12-15 09:09:01'),(5554,'mathematics','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:32'),(5555,'commerce','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:33'),(5556,'accounting','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5557,'englishlit','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5558,'crk','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5559,'geography','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5560,'currentaffairs','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5561,'insurance','18.206.121.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:44:42','2019-12-15 10:44:42'),(5562,'mathematics','197.210.44.70',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 11:39:41','2019-12-15 11:40:19'),(5563,'english','54.226.135.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 13:31:12','2019-12-15 13:31:12'),(5564,'crk','34.207.159.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 14:25:42','2019-12-15 14:25:42'),(5565,'chemistry','197.210.8.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:09:00','2019-12-15 15:09:49'),(5566,'mathematics','105.112.181.210',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:31:11','2019-12-15 15:31:12'),(5567,'chemistry','197.211.58.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 16:28:08','2019-12-15 16:28:08'),(5568,'civiledu','107.22.61.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 21:18:49','2019-12-15 21:18:49'),(5569,'mathematics','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 22:16:18','2019-12-15 22:16:18'),(5570,'geography','18.206.180.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 00:01:24','2019-12-16 00:01:24'),(5571,'accounting','3.95.7.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 01:08:36','2019-12-16 01:08:36'),(5572,'chemistry','105.112.99.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:48:06','2019-12-16 04:48:06'),(5573,'geography','34.207.88.147',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:49:45','2019-12-16 08:10:20'),(5574,'mathematics','105.112.24.13',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 05:19:46','2019-12-16 05:19:46'),(5575,'english','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:18:08','2019-12-16 06:18:08'),(5576,'geography','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:30:45','2019-12-16 06:30:45'),(5577,'chemistry','105.112.30.62',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 11:31:31','2019-12-16 11:34:57'),(5578,'chemistry','207.46.13.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 12:26:05','2019-12-16 12:26:05'),(5579,'physics','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 16:53:46','2019-12-16 16:53:46'),(5580,'englishlit','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 17:13:34','2019-12-16 17:13:34'),(5581,'geography','3.92.69.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 18:41:59','2019-12-16 18:41:59'),(5582,'biology','52.202.45.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 21:27:25','2019-12-16 21:27:25'),(5583,'currentaffairs','3.95.195.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 22:56:29','2019-12-16 22:56:29'),(5584,'economics','3.81.134.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 23:46:29','2019-12-16 23:46:29'),(5585,'commerce','54.164.27.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 00:54:33','2019-12-17 00:54:33'),(5586,'commerce','3.92.4.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 04:14:33','2019-12-17 04:14:33'),(5587,'chemistry','197.210.61.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 06:57:40','2019-12-17 06:57:40'),(5588,'chemistry','102.134.114.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:37','2019-12-17 07:45:37'),(5589,'mathematics','102.134.114.193',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:57','2019-12-17 07:47:44'),(5590,'mathematics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:30:56','2019-12-17 08:30:56'),(5591,'physics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:32:55','2019-12-17 08:32:55'),(5592,'englishlit','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:58:40','2019-12-17 08:58:40'),(5593,'chemistry','151.80.39.216',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:17:12','2019-12-30 07:30:25'),(5594,'chemistry','151.80.39.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:23:31','2019-12-17 09:23:31'),(5595,'chemistry','5.196.87.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:30:13','2020-01-07 19:20:55'),(5596,'chemistry','151.80.39.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:39:21','2019-12-17 09:45:56'),(5597,'geography','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:13:13','2019-12-17 10:13:13'),(5598,'government','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:29:20','2019-12-17 10:29:20'),(5599,'mathematics','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:55:34','2019-12-17 10:55:34'),(5600,'mathematics','105.112.178.120',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:24:11','2019-12-17 13:24:11'),(5601,'english','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:31:22','2019-12-17 13:31:22'),(5602,'insurance','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:39:48','2019-12-17 13:39:48'),(5603,'mathematics','105.112.23.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:00:33','2019-12-17 14:00:33'),(5604,'history','54.91.62.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:51:56','2019-12-17 14:51:56'),(5605,'chemistry','106.56.38.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 21:15:06','2019-12-17 21:15:06'),(5606,'chemistry','182.110.22.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 22:30:20','2019-12-17 22:30:20'),(5607,'geography','54.204.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 00:38:06','2019-12-18 00:38:06'),(5608,'chemistry','154.120.93.60',252,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:40:21','2019-12-18 06:53:13'),(5609,'english','154.120.93.60',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:48:52','2019-12-18 06:48:55'),(5610,'mathematics','154.120.93.60',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:53:33','2019-12-18 06:53:56'),(5611,'chemistry','197.210.65.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:44','2019-12-18 07:42:44'),(5612,'chemistry','197.210.64.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:51','2019-12-18 07:42:51'),(5613,'accounting','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 09:13:48','2019-12-18 09:13:48'),(5614,'chemistry','197.210.227.76',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:32:30','2019-12-18 13:51:25'),(5615,'chemistry','197.210.226.124',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:33:10','2019-12-19 08:29:25'),(5616,'chemistry','197.210.227.42',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:50:23','2019-12-18 13:52:09'),(5617,'mathematics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5618,'commerce','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5619,'physics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5620,'englishlit','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5621,'crk','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5622,'currentaffairs','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5623,'history','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5624,'english','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5625,'accounting','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5626,'biology','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:07'),(5627,'englishlit','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5628,'geography','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5629,'irk','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5630,'insurance','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5631,'chemistry','69.30.213.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 14:31:25','2019-12-18 14:31:25'),(5632,'physics','105.112.176.201',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 05:24:23','2019-12-19 05:24:23'),(5633,'chemistry','5.189.172.182',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:05:46','2019-12-19 07:06:30'),(5634,'government','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:12:43','2019-12-19 07:12:43'),(5635,'history','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:33:41','2019-12-19 07:33:41'),(5636,'irk','52.91.34.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 09:17:34','2019-12-19 09:17:34'),(5637,'englishlit','54.88.253.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 10:35:04','2019-12-19 10:35:04'),(5638,'economics','105.112.177.36',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:42:18','2019-12-19 16:42:19'),(5639,'chemistry','105.112.177.36',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:43:25','2019-12-19 16:45:28'),(5640,'chemistry','105.112.177.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:02:16','2019-12-19 17:02:16'),(5641,'commerce','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:40:56','2019-12-19 17:40:56'),(5642,'biology','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:43:13','2019-12-19 17:43:13'),(5643,'mathematics','197.210.53.166',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 18:09:35','2019-12-19 18:09:35'),(5644,'insurance','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:04:27','2019-12-20 01:04:27'),(5645,'biology','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:31:54','2019-12-20 01:31:54'),(5646,'economics','54.146.230.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 05:50:03','2019-12-20 05:50:03'),(5647,'history','3.85.190.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 07:45:09','2019-12-20 07:45:09'),(5648,'history','54.80.62.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 08:26:39','2019-12-20 08:26:39'),(5649,'accounting','54.198.39.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:15:34','2019-12-20 10:15:34'),(5650,'chemistry','197.210.61.37',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:58:34','2019-12-20 11:00:32'),(5651,'englishlit','34.202.161.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 15:24:52','2019-12-20 15:24:52'),(5652,'chemistry','3.85.93.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 16:07:34','2019-12-20 16:07:34'),(5653,'irk','3.87.205.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 21:37:02','2019-12-20 21:37:02'),(5654,'economics','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:05:01','2019-12-21 03:05:01'),(5655,'crk','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:09:00','2019-12-21 03:09:00'),(5656,'chemistry','41.190.31.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 06:38:03','2019-12-21 06:38:04'),(5657,'commerce','54.234.19.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 07:41:34','2019-12-21 07:41:34'),(5658,'chemistry','154.120.111.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:08:50','2019-12-21 08:08:50'),(5659,'chemistry','207.46.13.100',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:11:14','2019-12-21 08:11:14'),(5660,'accounting','3.82.104.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:03:47','2019-12-21 09:03:47'),(5661,'english','154.120.82.204',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:45:44','2019-12-21 09:45:44'),(5662,'crk','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 10:54:28','2019-12-21 10:54:28'),(5663,'history','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:24:32','2019-12-21 11:24:32'),(5664,'chemistry','197.210.71.189',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:53:25','2019-12-21 11:55:06'),(5665,'economics','54.234.34.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:08:12','2019-12-21 17:08:12'),(5666,'chemistry','196.220.136.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:23:29','2019-12-21 17:23:29'),(5667,'government','52.200.198.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 19:00:57','2019-12-21 19:00:57'),(5668,'chemistry','54.145.127.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 20:50:25','2019-12-21 20:50:25'),(5669,'geography','34.239.125.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 22:50:03','2019-12-21 22:50:03'),(5670,'economics','54.144.125.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 23:56:36','2019-12-21 23:56:36'),(5671,'commerce','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:51:11','2019-12-22 00:51:11'),(5672,'government','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:59:35','2019-12-22 00:59:35'),(5673,'insurance','54.82.100.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 06:04:36','2019-12-22 06:04:36'),(5674,'economics','3.91.31.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:14:42','2019-12-22 07:14:42'),(5675,'crk','100.24.16.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:56:40','2019-12-22 07:56:40'),(5676,'englishlit','54.174.249.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 12:39:37','2019-12-22 12:39:37'),(5677,'chemistry','106.57.151.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 14:24:18','2019-12-22 14:24:18'),(5678,'chemistry','58.62.85.244',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 15:07:13','2019-12-22 15:07:13'),(5679,'chemistry','113.121.210.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 16:19:36','2019-12-22 16:19:36'),(5680,'chemistry','197.211.58.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 18:58:28','2019-12-22 18:58:28'),(5681,'crk','18.208.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 19:35:12','2019-12-22 19:35:12'),(5682,'english','52.91.199.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 20:40:32','2019-12-22 20:40:32'),(5683,'crk','54.197.16.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 22:29:28','2019-12-22 22:29:28'),(5684,'chemistry','207.46.13.32',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 05:30:59','2019-12-23 19:53:30'),(5685,'chemistry','41.58.249.101',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 07:32:16','2019-12-23 07:41:55'),(5686,'accounting','3.88.176.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 08:35:37','2019-12-23 08:35:37'),(5687,'chemistry','52.207.237.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 10:59:07','2019-12-23 10:59:07'),(5688,'physics','54.90.171.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 12:33:14','2019-12-23 12:33:14'),(5689,'englishlit','3.94.55.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 14:39:35','2019-12-23 14:39:35'),(5690,'chemistry','105.112.24.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 16:46:27','2019-12-23 16:46:27'),(5691,'english','34.230.73.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 17:01:58','2019-12-23 17:01:58'),(5692,'englishlit','3.81.216.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 21:28:10','2019-12-23 21:28:10'),(5693,'currentaffairs','107.22.114.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 22:06:26','2019-12-23 22:06:26'),(5694,'englishlit','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:36:52','2019-12-24 00:36:52'),(5695,'crk','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:42:20','2019-12-24 00:42:20'),(5696,'chemistry','3.88.226.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 02:28:27','2019-12-24 02:28:27'),(5697,'economics','18.212.81.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 03:34:43','2019-12-24 03:34:43'),(5698,'government','3.84.146.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 04:34:22','2019-12-24 04:34:22'),(5699,'crk','54.89.84.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 07:50:50','2019-12-24 07:50:50'),(5700,'chemistry','41.203.73.248',604,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:03:43','2019-12-24 09:45:17'),(5701,'english','41.203.73.248',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:12:17','2019-12-24 09:12:20'),(5702,'mathematics','41.203.73.248',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:29:46','2019-12-24 09:32:59'),(5703,'chemistry','41.203.73.144',121,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 10:18:01','2019-12-24 11:28:03'),(5704,'physics','41.203.73.144',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 11:28:36','2019-12-24 11:28:39'),(5705,'english','54.234.136.92',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 11:35:59','2019-12-24 11:35:59'),(5706,'english','108.173.207.253',10,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 18:30:37','2019-12-24 18:32:01'),(5707,'english','54.86.42.151',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 19:06:22','2019-12-24 19:06:22'),(5708,'physics','54.162.161.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 02:38:17','2019-12-25 02:38:17'),(5709,'currentaffairs','54.158.129.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 09:00:12','2019-12-25 09:00:12'),(5710,'currentaffairs','34.201.150.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 10:02:21','2019-12-25 10:02:21'),(5711,'chemistry','197.211.58.122',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 12:27:20','2019-12-25 12:27:41'),(5712,'civiledu','184.72.131.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 14:01:27','2019-12-25 14:01:27'),(5713,'english','41.190.31.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:21:37','2019-12-25 17:21:37'),(5714,'english','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:51:12','2019-12-25 17:51:12'),(5715,'accounting','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 18:07:03','2019-12-25 18:07:03'),(5716,'englishlit','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 19:07:55','2019-12-25 19:07:55'),(5717,'commerce','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:07','2019-12-26 09:45:08'),(5718,'chemistry','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5719,'englishlit','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5720,'government','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5721,'geography','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5722,'irk','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5723,'insurance','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5724,'chemistry','197.210.53.171',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:00','2019-12-26 11:07:17'),(5725,'chemistry','197.210.52.12',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:37','2020-04-07 18:47:51'),(5726,'chemistry','197.210.53.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:49','2019-12-26 10:58:49'),(5727,'chemistry','159.138.149.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:12','2019-12-26 12:40:12'),(5728,'chemistry','159.138.158.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:19','2019-12-26 12:40:19'),(5729,'chemistry','159.138.155.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:40','2019-12-26 12:40:40'),(5730,'chemistry','159.138.157.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:42','2019-12-26 12:40:42'),(5731,'chemistry','159.138.153.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:37','2019-12-26 12:41:37'),(5732,'chemistry','159.138.148.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:39','2019-12-26 12:41:39'),(5733,'chemistry','40.77.167.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 16:52:21','2019-12-26 16:52:21'),(5734,'chemistry','151.80.39.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 18:13:53','2019-12-26 18:13:53'),(5735,'mathematics','54.92.139.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 19:28:36','2019-12-26 19:28:36'),(5736,'commerce','3.83.25.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 21:13:20','2019-12-26 21:13:20'),(5737,'government','3.86.200.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 22:19:35','2019-12-26 22:19:35'),(5738,'insurance','54.236.119.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 01:39:51','2019-12-27 01:39:51'),(5739,'english','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:11:47','2019-12-27 04:11:47'),(5740,'crk','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:17:19','2019-12-27 04:17:19'),(5741,'mathematics','105.112.18.136',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 08:38:34','2019-12-27 08:38:35'),(5742,'civiledu','52.4.139.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 11:24:11','2019-12-27 11:24:11'),(5743,'mathematics','52.70.132.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:02:50','2019-12-27 12:02:50'),(5744,'chemistry','54.36.149.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:04:00','2019-12-27 12:04:00'),(5745,'geography','34.229.11.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 15:04:56','2019-12-27 15:04:56'),(5746,'economics','54.82.208.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 17:32:43','2019-12-27 17:32:43'),(5747,'geography','3.95.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 18:44:54','2019-12-27 18:44:54'),(5748,'chemistry','41.203.73.152',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:28:07','2019-12-28 05:58:59'),(5749,'geography','18.232.139.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:38:53','2019-12-27 19:38:53'),(5750,'chemistry','207.46.13.72',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:58:11','2019-12-27 19:58:11'),(5751,'english','18.212.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 21:36:45','2019-12-27 21:36:45'),(5752,'geography','3.81.112.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 22:26:48','2019-12-27 22:26:48'),(5753,'englishlit','3.95.29.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 07:09:48','2019-12-28 07:09:48'),(5754,'geography','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 08:46:11','2019-12-28 08:46:11'),(5755,'chemistry','157.55.39.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:01:00','2019-12-28 13:56:07'),(5756,'physics','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:07:43','2019-12-28 09:07:43'),(5757,'currentaffairs','3.90.16.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:52:08','2019-12-28 09:52:08'),(5758,'chemistry','198.27.70.196',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 13:04:37','2019-12-28 13:05:18'),(5759,'economics','54.208.246.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 16:54:27','2019-12-28 16:54:27'),(5760,'physics','3.90.201.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 21:17:55','2019-12-28 21:17:55'),(5761,'englishlit','54.88.31.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 22:11:00','2019-12-28 22:11:00'),(5762,'chemistry','46.229.168.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 00:53:10','2019-12-29 00:53:10'),(5763,'mathematics','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 01:48:09','2019-12-29 01:48:09'),(5764,'geography','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:00:13','2019-12-29 02:00:13'),(5765,'government','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:45:45','2019-12-29 02:45:45'),(5766,'mathematics','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 03:11:26','2019-12-29 03:11:26'),(5767,'mathematics','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:29:09','2019-12-29 04:29:09'),(5768,'insurance','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:50:21','2019-12-29 04:50:21'),(5769,'accounting','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 06:48:58','2019-12-29 06:48:58'),(5770,'history','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 07:05:29','2019-12-29 07:05:29'),(5771,'geography','18.212.192.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 14:35:59','2019-12-29 14:35:59'),(5772,'chemistry','159.138.157.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 15:56:34','2019-12-29 15:56:34'),(5773,'chemistry','159.138.156.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:52','2019-12-29 16:06:52'),(5774,'chemistry','159.138.156.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:54','2019-12-29 16:06:54'),(5775,'chemistry','159.138.151.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:08','2019-12-29 16:17:08'),(5776,'chemistry','159.138.155.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:10','2019-12-29 16:17:10'),(5777,'chemistry','54.173.230.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 17:07:40','2019-12-29 17:07:40'),(5778,'chemistry','77.88.5.57',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 20:09:09','2020-02-17 06:41:03'),(5779,'chemistry','105.112.37.95',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 22:46:03','2019-12-29 22:48:25'),(5780,'accounting','54.162.107.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 00:28:34','2019-12-30 00:28:34'),(5781,'chemistry','5.196.87.181',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:24:52','2019-12-30 07:24:52'),(5782,'chemistry','5.196.87.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:28:37','2019-12-30 07:28:37'),(5783,'chemistry','151.80.39.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:31:37','2019-12-30 07:31:37'),(5784,'history','3.80.177.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 10:00:20','2019-12-30 10:00:20'),(5785,'chemistry','41.87.80.10',177,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:52:05','2020-01-03 12:40:11'),(5786,'english','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:05','2020-01-03 09:47:26'),(5787,'biology','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:35','2020-01-06 10:18:55'),(5788,'physics','41.87.80.10',238,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 12:26:15','2020-01-14 13:07:03'),(5789,'chemistry','197.210.71.107',112,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 18:08:04','2019-12-30 21:50:09'),(5790,'government','54.227.176.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 01:11:30','2019-12-31 01:11:30'),(5791,'englishlit','107.22.1.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 02:42:52','2019-12-31 02:42:52'),(5792,'geography','41.87.80.10',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:35','2020-01-03 09:11:05'),(5793,'mathematics','41.87.80.10',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:42','2020-01-03 12:40:26'),(5794,'commerce','41.87.80.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 11:27:07','2019-12-31 15:11:01'),(5795,'physics','197.210.85.161',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:01','2019-12-31 21:44:09'),(5796,'geography','197.210.85.161',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:36','2019-12-31 21:17:50'),(5797,'commerce','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:39','2019-12-31 17:35:25'),(5798,'biology','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:27:53','2019-12-31 17:50:46'),(5799,'mathematics','197.210.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:22','2019-12-31 17:35:22'),(5800,'english','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:50','2019-12-31 17:50:42'),(5801,'chemistry','197.210.85.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 19:06:57','2019-12-31 21:19:14'),(5802,'biology','54.89.212.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 20:08:07','2019-12-31 20:08:07'),(5803,'history','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:24:33','2019-12-31 21:24:33'),(5804,'insurance','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:51:19','2019-12-31 21:51:19'),(5805,'economics','3.83.156.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 23:11:47','2019-12-31 23:11:47'),(5806,'economics','54.159.177.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 00:29:53','2020-01-01 00:29:53'),(5807,'history','34.235.146.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 02:22:24','2020-01-01 02:22:24'),(5808,'physics','197.210.70.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:22:07','2020-01-01 06:22:07'),(5809,'accounting','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:52:22','2020-01-01 06:52:22'),(5810,'chemistry','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 07:22:30','2020-01-01 07:22:30'),(5811,'history','3.82.145.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 12:16:11','2020-01-01 12:16:11'),(5812,'physics','197.210.64.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:45','2020-01-01 13:42:45'),(5813,'geography','197.210.65.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:52','2020-01-01 13:42:52'),(5814,'physics','197.210.47.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:07:21','2020-01-01 14:07:21'),(5815,'irk','3.86.222.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:39:17','2020-01-01 14:39:17'),(5816,'crk','54.173.160.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 19:37:03','2020-01-01 19:37:03'),(5817,'economics','54.81.159.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 20:29:55','2020-01-01 20:29:55'),(5818,'commerce','34.207.138.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 23:01:12','2020-01-01 23:01:12'),(5819,'crk','3.84.24.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 04:49:38','2020-01-02 04:49:38'),(5820,'chemistry','197.210.227.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:20:08','2020-01-02 05:20:08'),(5821,'chemistry','197.210.226.177',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:22:40','2020-01-02 05:23:22'),(5822,'chemistry','197.210.227.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:23:39','2020-01-02 05:24:16'),(5823,'accounting','3.81.217.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 06:18:28','2020-01-02 06:18:28'),(5824,'economics','3.84.17.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 10:40:34','2020-01-02 10:40:34'),(5825,'chemistry','159.138.152.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:40','2020-01-02 11:34:40'),(5826,'chemistry','159.138.154.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:41','2020-01-02 11:34:41'),(5827,'chemistry','159.138.149.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:19','2020-01-02 13:42:19'),(5828,'chemistry','159.138.155.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:22','2020-01-02 13:42:22'),(5829,'english','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:16','2020-01-02 13:48:16'),(5830,'chemistry','197.210.53.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:29','2020-01-02 13:48:29'),(5831,'biology','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:54','2020-01-02 13:48:54'),(5832,'chemistry','40.77.167.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 14:52:08','2020-01-02 14:52:08'),(5833,'chemistry','173.252.87.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:12:40','2020-01-02 15:12:40'),(5834,'chemistry','105.112.96.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:14:54','2020-01-02 15:15:27'),(5835,'government','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:23:11','2020-01-02 15:23:11'),(5836,'chemistry','197.210.29.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:01:48','2020-01-02 16:01:48'),(5837,'chemistry','54.198.147.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:20:52','2020-01-02 16:20:52'),(5838,'geography','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:21:06','2020-01-02 18:21:06'),(5839,'government','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:53:06','2020-01-02 18:53:06'),(5840,'chemistry','141.0.12.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:46:34','2020-01-02 19:46:34'),(5841,'chemistry','54.36.148.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:54:13','2020-01-02 19:54:13'),(5842,'chemistry','107.167.116.51',81,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:22:38','2020-01-02 20:56:21'),(5843,'chemistry','69.171.251.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:25:00','2020-01-02 20:25:00'),(5844,'chemistry','173.252.95.39',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:27:00','2020-01-02 20:27:01'),(5845,'chemistry','105.112.107.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:44:23','2020-01-02 20:44:23'),(5846,'chemistry','197.210.85.199',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:48:24','2020-01-02 21:10:22'),(5847,'chemistry','173.252.127.12',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:56:49','2020-01-02 20:56:52'),(5848,'physics','107.167.107.19',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:06:13','2020-01-02 23:06:17'),(5849,'physics','105.112.121.61',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:07:14','2020-01-02 23:08:11'),(5850,'physics','107.167.107.16',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:19','2020-01-02 23:12:21'),(5851,'physics','105.112.112.87',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:44','2020-01-02 23:12:47'),(5852,'commerce','18.206.201.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:19:52','2020-01-02 23:19:52'),(5853,'economics','50.19.154.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:46:41','2020-01-03 01:31:33'),(5854,'accounting','50.19.154.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:56:30','2020-01-03 00:56:30'),(5855,'crk','3.82.121.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 03:17:13','2020-01-03 03:17:13'),(5856,'insurance','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 05:01:58','2020-01-03 05:01:58'),(5857,'mathematics','105.112.177.41',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 07:28:37','2020-01-03 07:28:38'),(5858,'accounting','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:14:39','2020-01-03 09:14:39'),(5859,'englishlit','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:40:09','2020-01-03 09:40:09'),(5860,'chemistry','173.252.127.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5861,'chemistry','173.252.127.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5862,'chemistry','69.171.251.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 10:12:20','2020-01-03 10:12:20'),(5863,'english','52.23.234.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 11:11:09','2020-01-03 11:11:09'),(5864,'chemistry','54.36.149.6',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 12:32:58','2020-01-03 12:32:58'),(5865,'chemistry','173.252.127.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5866,'chemistry','173.252.127.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5867,'accounting','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:47:56','2020-01-03 22:47:56'),(5868,'crk','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:59:55','2020-01-03 22:59:55'),(5869,'crk','18.234.186.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 00:39:01','2020-01-04 00:39:01'),(5870,'accounting','52.206.79.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 01:50:47','2020-01-04 01:50:47'),(5871,'mathematics','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5872,'commerce','3.83.117.183',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:17'),(5873,'accounting','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5874,'englishlit','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5875,'crk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5876,'irk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5877,'civiledu','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5878,'chemistry','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:25:30','2020-01-04 07:25:30'),(5879,'physics','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:54:21','2020-01-04 07:54:21'),(5880,'accounting','54.211.18.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 08:33:09','2020-01-04 08:33:09'),(5881,'englishlit','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:26:47','2020-01-04 09:26:47'),(5882,'physics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:28:39','2020-01-04 09:28:39'),(5883,'insurance','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:47:41','2020-01-04 09:47:41'),(5884,'geography','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:14','2020-01-04 09:54:14'),(5885,'english','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:18','2020-01-04 09:54:18'),(5886,'mathematics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:24','2020-01-04 09:54:24'),(5887,'chemistry','159.138.158.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:29:58','2020-01-04 10:29:58'),(5888,'chemistry','159.138.153.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:30:00','2020-01-04 10:30:00'),(5889,'currentaffairs','34.203.237.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 13:00:10','2020-01-04 13:00:10'),(5890,'chemistry','159.138.152.167',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 14:50:39','2020-01-04 14:50:39'),(5891,'english','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:36:52','2020-01-04 15:36:52'),(5892,'englishlit','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:40:27','2020-01-04 15:40:27'),(5893,'crk','35.174.5.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 19:26:20','2020-01-04 19:26:20'),(5894,'chemistry','197.210.226.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:08:58','2020-01-04 22:08:58'),(5895,'economics','18.232.58.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:09:24','2020-01-04 22:09:24'),(5896,'chemistry','18.206.248.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 00:08:29','2020-01-05 00:08:29'),(5897,'government','34.207.181.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 01:22:25','2020-01-05 01:22:25'),(5898,'englishlit','3.92.193.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 02:40:51','2020-01-05 02:40:51'),(5899,'crk','52.23.188.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 05:08:41','2020-01-05 05:08:41'),(5900,'english','52.207.216.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 07:59:31','2020-01-05 07:59:31'),(5901,'english','150.70.168.143',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 13:37:22','2020-01-05 13:37:25'),(5902,'english','35.173.133.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 16:54:20','2020-01-05 16:54:20'),(5903,'chemistry','159.138.154.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:07','2020-01-05 19:39:07'),(5904,'chemistry','159.138.157.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:10','2020-01-05 19:39:10'),(5905,'chemistry','197.211.58.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:13:15','2020-01-05 20:13:24'),(5906,'physics','66.102.8.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:39:20','2020-01-05 20:39:20'),(5907,'biology','66.102.8.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:40:26','2020-01-05 20:41:57'),(5908,'english','66.102.8.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:41:46','2020-01-05 20:41:46'),(5909,'physics','197.210.71.215',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:23','2020-01-05 21:15:06'),(5910,'geography','197.210.71.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:29','2020-01-05 20:46:29'),(5911,'mathematics','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:44','2020-01-05 20:51:35'),(5912,'chemistry','197.210.71.215',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:04','2020-04-05 08:30:45'),(5913,'biology','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:51','2020-01-05 20:52:21'),(5914,'commerce','197.210.71.215',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:48:01','2020-01-05 20:52:36'),(5915,'chemistry','40.77.167.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 04:41:04','2020-01-06 04:41:04'),(5916,'physics','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 06:59:39','2020-01-06 06:59:39'),(5917,'biology','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:25','2020-01-06 07:01:25'),(5918,'chemistry','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:36','2020-01-06 07:01:36'),(5919,'biology','54.196.116.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 08:39:32','2020-01-06 08:39:32'),(5920,'currentaffairs','52.90.145.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 09:20:05','2020-01-06 09:20:05'),(5921,'currentaffairs','54.81.36.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 10:59:33','2020-01-06 10:59:33'),(5922,'civiledu','54.165.53.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 14:25:40','2020-01-06 14:25:40'),(5923,'english','54.165.254.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 19:05:30','2020-01-06 19:05:30'),(5924,'englishlit','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 20:46:10','2020-01-06 20:46:10'),(5925,'accounting','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 23:28:47','2020-01-06 23:28:47'),(5926,'chemistry','40.77.167.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 00:55:53','2020-01-07 00:55:53'),(5927,'chemistry','197.210.85.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 10:49:45','2020-01-07 10:49:45'),(5928,'chemistry','114.119.144.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 16:29:50','2020-01-07 16:29:50'),(5929,'mathematics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:22','2020-01-07 19:50:22'),(5930,'biology','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5931,'physics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5932,'chemistry','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5933,'englishlit','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5934,'government','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5935,'history','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5936,'history','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:03:53','2020-01-08 00:03:53'),(5937,'mathematics','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:14:17','2020-01-08 00:14:17'),(5938,'commerce','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 02:50:48','2020-01-08 02:50:48'),(5939,'government','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:21:02','2020-01-08 03:21:02'),(5940,'physics','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:30','2020-01-08 03:49:31'),(5941,'accounting','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:55','2020-01-08 03:49:56'),(5942,'mathematics','105.112.24.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 05:26:53','2020-01-08 05:26:53'),(5943,'insurance','18.234.250.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:04:04','2020-01-08 07:04:04'),(5944,'chemistry','157.55.39.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:32:02','2020-01-08 07:32:03'),(5945,'english','3.90.5.24',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 08:20:47','2020-01-08 08:20:48'),(5946,'chemistry','197.210.152.54',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 09:59:01','2020-01-08 10:01:03'),(5947,'biology','197.210.152.54',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:01:17','2020-01-08 10:01:54'),(5948,'crk','54.175.37.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:33:34','2020-01-08 10:33:34'),(5949,'english','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 11:25:14','2020-01-08 11:25:14'),(5950,'mathematics','3.89.141.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 18:26:35','2020-01-08 18:26:35'),(5951,'geography','3.90.5.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 21:36:06','2020-01-08 21:36:06'),(5952,'economics','54.224.174.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 01:24:15','2020-01-09 01:24:15'),(5953,'geography','3.92.200.47',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 02:38:09','2020-01-09 02:46:31'),(5954,'english','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:01:22','2020-01-09 05:01:22'),(5955,'geography','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:35:09','2020-01-09 05:35:09'),(5956,'chemistry','114.119.158.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 08:20:35','2020-01-09 08:20:35'),(5957,'chemistry','197.210.84.180',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:25','2020-01-09 11:42:25'),(5958,'chemistry','66.249.93.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:27','2020-01-09 11:42:29'),(5959,'geography','3.81.50.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 15:48:20','2020-01-09 15:48:20'),(5960,'englishlit','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:10:05','2020-01-09 17:10:05'),(5961,'physics','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:29:29','2020-01-09 17:29:29'),(5962,'currentaffairs','54.91.26.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 20:05:46','2020-01-09 20:05:46'),(5963,'biology','54.90.217.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 23:39:42','2020-01-09 23:39:42'),(5964,'economics','3.88.190.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 04:30:45','2020-01-10 04:30:45'),(5965,'chemistry','159.138.155.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:39','2020-01-10 05:45:39'),(5966,'chemistry','159.138.148.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:42','2020-01-10 05:45:42'),(5967,'physics','3.90.20.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 07:05:46','2020-01-10 07:05:46'),(5968,'mathematics','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 09:57:03','2020-01-10 09:57:03'),(5969,'geography','54.242.86.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 14:16:02','2020-01-10 14:16:02'),(5970,'mathematics','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:33:50','2020-01-10 15:33:50'),(5971,'government','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:52:04','2020-01-10 15:52:04'),(5972,'mathematics','105.112.177.83',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 16:08:56','2020-01-10 16:08:57'),(5973,'mathematics','54.92.183.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 17:00:01','2020-01-10 17:00:01'),(5974,'accounting','54.175.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 19:11:24','2020-01-10 19:11:24'),(5975,'history','54.196.1.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 20:19:00','2020-01-10 20:19:00'),(5976,'insurance','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:04:48','2020-01-11 00:04:48'),(5977,'englishlit','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:23:07','2020-01-11 00:23:07'),(5978,'chemistry','157.55.39.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 07:47:08','2020-01-11 07:47:08'),(5979,'geography','3.85.229.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 08:19:26','2020-01-11 08:19:26'),(5980,'currentaffairs','54.210.29.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 09:17:59','2020-01-11 09:17:59'),(5981,'chemistry','129.205.112.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:01:54','2020-01-11 10:01:54'),(5982,'chemistry','114.119.163.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:12:45','2020-01-11 10:12:45'),(5983,'biology','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:49:13','2020-01-11 10:49:13'),(5984,'english','41.190.3.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:50:45','2020-01-11 10:53:17'),(5985,'government','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:03','2020-01-11 10:57:03'),(5986,'currentaffairs','3.81.114.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:29','2020-01-11 10:57:29'),(5987,'accounting','34.224.97.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 20:14:24','2020-01-11 20:14:24'),(5988,'history','34.228.161.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 03:43:41','2020-01-12 03:43:41'),(5989,'chemistry','54.36.150.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 07:38:14','2020-01-12 07:38:17'),(5990,'chemistry','66.249.66.159',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:18:04','2020-01-12 20:11:39'),(5991,'chemistry','207.46.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:37:09','2020-01-12 16:37:09'),(5992,'chemistry','41.206.30.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 11:30:26','2020-01-13 11:30:26'),(5993,'chemistry','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:08','2020-01-13 17:08:08'),(5994,'biology','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:51','2020-01-13 17:08:51'),(5995,'biology','3.95.28.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:38:02','2020-01-13 17:38:02'),(5996,'chemistry','105.112.21.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:40:01','2020-01-13 17:42:28'),(5997,'history','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 19:43:41','2020-01-13 19:43:41'),(5998,'insurance','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:27','2020-01-13 20:05:27'),(5999,'economics','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:30','2020-01-13 20:05:30'),(6000,'mathematics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6001,'commerce','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6002,'biology','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6003,'government','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6004,'economics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6005,'irk','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6006,'insurance','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6007,'english','18.209.172.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:02:39','2020-01-13 22:02:39'),(6008,'economics','3.83.111.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:58:30','2020-01-13 22:58:30'),(6009,'history','54.159.7.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 01:49:56','2020-01-14 01:49:56'),(6010,'accounting','18.215.161.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 03:52:50','2020-01-14 03:52:50'),(6011,'mathematics','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:35:01','2020-01-14 04:35:01'),(6012,'chemistry','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:56:46','2020-01-14 04:56:46'),(6013,'chemistry','105.112.106.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 06:53:23','2020-01-14 06:53:23'),(6014,'irk','34.237.245.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 10:17:26','2020-01-14 10:17:26'),(6015,'physics','197.210.64.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 12:36:48','2020-01-14 12:36:48'),(6016,'chemistry','162.238.118.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:13:49','2020-01-14 13:13:49'),(6017,'crk','54.145.57.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:25:40','2020-01-14 13:25:40'),(6018,'mathematics','52.91.218.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:29:53','2020-01-14 14:29:56'),(6019,'biology','52.91.218.226',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:31:04','2020-01-14 14:31:07'),(6020,'physics','197.210.226.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 16:50:50','2020-01-14 16:50:50'),(6021,'commerce','54.152.183.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 17:45:43','2020-01-14 17:45:43'),(6022,'chemistry','197.211.58.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 19:02:46','2020-01-14 19:02:46'),(6023,'accounting','18.206.115.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:06:49','2020-01-14 20:06:49'),(6024,'physics','197.210.227.105',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:18:08','2020-01-14 21:20:01'),(6025,'chemistry','105.112.112.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:27:30','2020-01-14 20:27:30'),(6026,'physics','197.210.227.176',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:14:48','2020-01-14 21:18:53'),(6027,'physics','197.210.226.126',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:19:38','2020-01-14 21:19:39'),(6028,'biology','66.249.66.128',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 22:53:39','2020-01-14 22:53:41'),(6029,'economics','34.229.47.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 01:05:22','2020-01-15 01:05:22'),(6030,'chemistry','18.212.26.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 02:18:02','2020-01-15 02:18:02'),(6031,'chemistry','54.208.21.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 05:24:27','2020-01-15 05:24:27'),(6032,'chemistry','159.138.152.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:16','2020-01-15 07:37:16'),(6033,'chemistry','159.138.157.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:19','2020-01-15 07:37:19'),(6034,'government','100.26.203.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:42:28','2020-01-15 08:42:28'),(6035,'chemistry','197.210.29.194',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:53:58','2020-01-15 08:54:11'),(6036,'physics','34.236.147.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 09:37:53','2020-01-15 09:37:56'),(6037,'economics','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 12:29:24','2020-01-15 12:29:24'),(6038,'insurance','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 14:56:31','2020-01-15 14:56:31'),(6039,'economics','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:09:36','2020-01-15 15:09:36'),(6040,'crk','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:19:41','2020-01-15 15:19:41'),(6041,'chemistry','197.210.45.172',92,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:26:03','2020-01-15 15:31:10'),(6042,'commerce','18.209.5.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 17:07:51','2020-01-15 17:07:51'),(6043,'chemistry','197.211.58.205',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 20:53:18','2020-01-15 20:53:44'),(6044,'chemistry','197.211.58.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:03','2020-01-15 21:02:03'),(6045,'englishlit','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:38','2020-01-15 21:02:38'),(6046,'accounting','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:11:49','2020-01-15 21:11:49'),(6047,'chemistry','76.227.27.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:26:06','2020-01-15 21:35:01'),(6048,'english','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:19:54','2020-01-15 22:19:54'),(6049,'crk','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:34:26','2020-01-15 22:34:26'),(6050,'chemistry','159.138.158.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:24','2020-01-16 03:41:24'),(6051,'chemistry','159.138.154.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:27','2020-01-16 03:41:27'),(6052,'chemistry','37.150.17.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 09:03:33','2020-01-16 09:03:33'),(6053,'english','54.226.244.165',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 10:17:00','2020-01-16 10:17:03'),(6054,'insurance','34.229.6.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 12:22:59','2020-01-16 12:22:59'),(6055,'englishlit','100.26.51.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 14:37:15','2020-01-16 14:37:15'),(6056,'accounting','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:45:59','2020-01-16 15:45:59'),(6057,'physics','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:48:23','2020-01-16 15:48:23'),(6058,'english','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:15:39','2020-01-16 18:15:39'),(6059,'currentaffairs','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:19:03','2020-01-16 18:19:03'),(6060,'chemistry','18.205.239.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 19:22:43','2020-01-16 19:22:43'),(6061,'crk','54.209.182.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 20:55:34','2020-01-16 20:55:34'),(6062,'crk','52.87.197.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 21:40:29','2020-01-16 21:40:29'),(6063,'englishlit','54.90.245.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 22:42:09','2020-01-16 22:42:09'),(6064,'englishlit','52.91.61.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 00:58:04','2020-01-17 00:58:04'),(6065,'chemistry','174.129.61.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 03:28:11','2020-01-17 03:28:11'),(6066,'government','3.85.188.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 04:20:24','2020-01-17 04:20:24'),(6067,'chemistry','159.138.155.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:19','2020-01-17 05:35:19'),(6068,'chemistry','159.138.154.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:20','2020-02-24 05:01:25'),(6069,'crk','18.234.143.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 07:39:30','2020-01-17 07:39:30'),(6070,'chemistry','159.138.150.55',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 10:29:28','2020-01-17 10:29:29'),(6071,'chemistry','159.138.153.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:18','2020-01-17 13:26:18'),(6072,'chemistry','159.138.156.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:21','2020-01-17 13:26:21'),(6073,'accounting','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:31:59','2020-01-17 18:31:59'),(6074,'english','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:32:57','2020-01-17 18:32:57'),(6075,'history','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 23:43:23','2020-01-17 23:43:23'),(6076,'chemistry','84.241.193.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 02:10:58','2020-01-18 02:10:58'),(6077,'economics','54.147.112.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:09:08','2020-01-18 04:09:08'),(6078,'chemistry','159.138.128.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:53','2020-01-18 04:22:53'),(6079,'chemistry','159.138.150.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:55','2020-01-18 04:22:55'),(6080,'accounting','52.207.178.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:28:30','2020-01-18 11:06:20'),(6081,'history','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:30:16','2020-01-18 10:30:16'),(6082,'englishlit','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:36:43','2020-01-18 10:36:43'),(6083,'chemistry','197.210.65.53',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-18 21:33:39','2020-04-21 11:21:31'),(6084,'chemistry','197.210.65.246',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:05','2020-01-18 21:51:06'),(6085,'chemistry','197.210.65.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:24','2020-01-18 21:51:24'),(6086,'chemistry','197.210.65.33',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:40','2020-01-18 21:51:44'),(6087,'chemistry','197.210.64.160',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:52:12','2020-01-18 21:52:15'),(6088,'physics','197.210.47.29',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:54:25','2020-01-18 21:54:28'),(6089,'mathematics','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:39:47','2020-01-19 11:39:47'),(6090,'government','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:50:10','2020-01-19 11:50:10'),(6091,'chemistry','5.186.127.79',196,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:25:22','2020-03-07 23:25:18'),(6092,'englishlit','5.186.127.79',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:58:08','2020-02-03 17:34:24'),(6093,'commerce','3.82.117.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 14:53:51','2020-01-19 14:53:51'),(6094,'english','54.225.22.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 18:38:53','2020-01-19 18:38:53'),(6095,'chemistry','41.190.31.147',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 22:23:33','2020-01-19 22:23:33'),(6096,'geography','18.232.68.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 05:23:53','2020-01-20 05:23:53'),(6097,'geography','54.159.45.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:03:51','2020-01-20 06:03:51'),(6098,'geography','100.27.24.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:45:32','2020-01-20 06:45:32'),(6099,'physics','54.227.113.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 13:15:49','2020-01-20 13:15:49'),(6100,'geography','34.203.192.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:05:57','2020-01-20 14:05:57'),(6101,'english','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:10:11','2020-01-20 14:10:14'),(6102,'accounting','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:13:50','2020-01-20 14:13:53'),(6103,'biology','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:17:51','2020-01-20 14:17:54'),(6104,'chemistry','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:21:26','2020-01-20 14:21:29'),(6105,'commerce','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:31:36','2020-01-20 14:31:39'),(6106,'geography','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:36:02','2020-01-20 14:36:05'),(6107,'history','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:38:08','2020-01-20 14:38:11'),(6108,'physics','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:44:17','2020-01-20 14:44:20'),(6109,'chemistry','34.203.190.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:47:27','2020-01-20 14:47:27'),(6110,'englishlit','18.208.215.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 15:44:11','2020-01-20 15:44:11'),(6111,'biology','54.163.24.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 20:05:22','2020-01-20 20:05:22'),(6112,'currentaffairs','54.224.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 21:53:39','2020-01-20 21:53:39'),(6113,'biology','54.224.78.213',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 22:15:45','2020-01-20 22:15:47'),(6114,'englishlit','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:06:37','2020-01-21 04:06:37'),(6115,'physics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:24:39','2020-01-21 04:24:39'),(6116,'economics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:38:24','2020-01-21 04:38:24'),(6117,'mathematics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:05:21','2020-01-21 05:05:21'),(6118,'commerce','34.207.229.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:42:09','2020-01-21 05:42:09'),(6119,'mathematics','3.80.112.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 08:48:34','2020-01-21 08:48:34'),(6120,'chemistry','159.138.156.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:02','2020-01-21 09:08:02'),(6121,'chemistry','159.138.155.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:05','2020-01-21 09:08:05'),(6122,'insurance','34.201.67.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:58:44','2020-01-21 09:58:44'),(6123,'chemistry','34.201.67.206',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 10:24:35','2020-01-21 10:24:39'),(6124,'crk','3.84.124.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 11:25:57','2020-01-21 11:25:57'),(6125,'english','54.82.117.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 12:39:35','2020-01-21 12:39:38'),(6126,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6127,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6128,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6129,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6130,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6131,'chemistry','197.210.65.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:51:28','2020-01-21 16:51:28'),(6132,'geography','34.235.141.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 17:46:43','2020-01-21 17:46:43'),(6133,'mathematics','54.221.179.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 23:42:47','2020-01-21 23:42:47'),(6134,'accounting','54.88.104.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 05:24:34','2020-01-22 05:24:34'),(6135,'chemistry','52.91.210.222',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:50'),(6136,'chemistry','52.91.210.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:17'),(6137,'english','197.210.45.42',52,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:07:55','2020-01-22 10:20:09'),(6138,'chemistry','197.210.45.42',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:16:58','2020-01-22 10:17:01'),(6139,'english','197.210.84.40',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 11:05:36','2020-01-22 11:07:18'),(6140,'accounting','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:06:53','2020-01-22 14:06:56'),(6141,'biology','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:16:26','2020-01-22 14:16:29'),(6142,'chemistry','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:17:57','2020-01-22 14:18:00'),(6143,'commerce','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:24:26','2020-01-22 14:24:28'),(6144,'english','3.85.50.174',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:28:45','2020-01-22 14:31:27'),(6145,'geography','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:44:20','2020-01-22 14:44:23'),(6146,'government','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:49:57','2020-01-22 14:50:00'),(6147,'history','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:52:09','2020-01-22 14:52:12'),(6148,'physics','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:57:23','2020-01-22 14:57:26'),(6149,'mathematics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:06:42','2020-01-22 19:06:42'),(6150,'physics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:10:39','2020-01-22 19:10:40'),(6151,'physics','105.112.178.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 01:21:24','2020-01-23 01:21:24'),(6152,'history','54.242.9.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 07:11:29','2020-01-23 07:11:29'),(6153,'accounting','3.95.2.128',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:02:04','2020-01-23 12:49:19'),(6154,'biology','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:11:55','2020-01-23 12:54:42'),(6155,'chemistry','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:16:26','2020-01-23 12:57:07'),(6156,'commerce','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:25:56','2020-01-23 13:00:45'),(6157,'geography','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:34:50','2020-01-23 13:07:52'),(6158,'government','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:42:08','2020-01-23 13:08:44'),(6159,'english','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:43:06','2020-01-23 13:02:16'),(6160,'history','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:46:06','2020-01-23 13:11:05'),(6161,'physics','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:53:50','2020-01-23 13:18:26'),(6162,'chemistry','78.67.8.249',190,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 11:18:52','2020-05-28 07:54:26'),(6163,'biology','54.226.136.136',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 11:47:50','2020-01-23 11:47:50'),(6164,'insurance','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:24:44','2020-01-23 12:24:44'),(6165,'economics','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:33:40','2020-01-23 12:33:40'),(6166,'chemistry','3.83.32.171',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 14:11:16','2020-01-23 14:46:53'),(6167,'history','54.80.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 15:21:18','2020-01-23 15:21:18'),(6168,'accounting','54.227.208.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 19:10:55','2020-01-23 19:10:55'),(6169,'chemistry','114.119.129.17',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:30:35','2020-01-23 22:30:35'),(6170,'chemistry','54.145.181.222',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:34:50','2020-01-23 22:34:50'),(6171,'english','66.249.66.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:23:18','2020-01-24 01:23:18'),(6172,'chemistry','159.138.153.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:26','2020-01-24 01:38:26'),(6173,'chemistry','159.138.155.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:28','2020-01-24 01:38:28'),(6174,'irk','54.221.33.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 02:21:24','2020-01-24 02:21:24'),(6175,'crk','3.92.163.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 07:56:53','2020-01-24 07:56:53'),(6176,'chemistry','159.138.155.158',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:33:54','2020-01-24 09:33:54'),(6177,'chemistry','159.138.155.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:02','2020-01-24 09:34:02'),(6178,'chemistry','159.138.159.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:05','2020-01-24 09:34:05'),(6179,'chemistry','159.138.158.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:55','2020-01-24 11:45:55'),(6180,'chemistry','159.138.152.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:58','2020-01-24 11:45:58'),(6181,'commerce','54.234.15.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 12:20:42','2020-01-24 12:20:42'),(6182,'crk','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:21:36','2020-01-24 16:21:36'),(6183,'accounting','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:29:29','2020-01-24 16:29:29'),(6184,'english','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:48','2020-01-24 18:50:48'),(6185,'mathematics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6186,'commerce','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6187,'chemistry','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6188,'geography','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6189,'economics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6190,'insurance','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6191,'chemistry','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:38:45','2020-01-24 19:38:47'),(6192,'chemistry','159.138.155.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:17','2020-01-24 19:48:17'),(6193,'chemistry','159.138.157.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:20','2020-01-24 19:48:20'),(6194,'economics','54.234.219.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 21:16:38','2020-01-24 21:16:38'),(6195,'chemistry','54.82.250.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 00:25:04','2020-01-25 00:25:04'),(6196,'geography','52.91.20.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 02:53:58','2020-01-25 02:53:58'),(6197,'government','52.205.208.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 05:54:14','2020-01-25 05:54:14'),(6198,'government','3.82.98.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 06:50:25','2020-01-25 06:50:25'),(6199,'economics','18.232.150.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 07:40:32','2020-01-25 07:40:32'),(6200,'chemistry','66.249.64.112',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:00:41','2020-01-25 10:06:05'),(6201,'chemistry','66.249.64.114',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:11:26','2020-01-25 10:25:38'),(6202,'insurance','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:06:32','2020-01-25 11:06:32'),(6203,'crk','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:16:24','2020-01-25 11:16:24'),(6204,'mathematics','105.112.177.119',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 12:21:44','2020-01-25 12:24:10'),(6205,'economics','184.72.97.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:05:36','2020-01-25 15:05:36'),(6206,'english','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6207,'economics','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6208,'englishlit','54.172.2.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 16:46:58','2020-01-25 16:46:58'),(6209,'english','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 18:56:16','2020-01-25 18:56:16'),(6210,'commerce','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 19:01:52','2020-01-25 19:01:52'),(6211,'crk','54.227.219.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:07:54','2020-01-25 23:07:54'),(6212,'crk','34.227.56.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:54:31','2020-01-25 23:54:31'),(6213,'geography','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 09:48:50','2020-01-26 09:48:50'),(6214,'physics','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:42','2020-01-26 13:25:42'),(6215,'insurance','54.163.34.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:44','2020-01-26 13:53:10'),(6216,'englishlit','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 14:26:21','2020-01-26 14:26:21'),(6217,'chemistry','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 15:31:14','2020-01-26 15:31:14'),(6218,'currentaffairs','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:40:36','2020-01-26 16:40:36'),(6219,'english','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:56:27','2020-01-26 16:56:27'),(6220,'mathematics','54.234.126.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 17:35:46','2020-01-26 17:35:46'),(6221,'englishlit','3.80.203.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 18:54:41','2020-01-26 18:54:41'),(6222,'mathematics','3.92.208.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 19:40:52','2020-01-26 19:40:52'),(6223,'englishlit','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:07:23','2020-01-26 22:07:23'),(6224,'commerce','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:27:30','2020-01-26 22:27:30'),(6225,'crk','3.81.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 23:10:54','2020-01-26 23:10:54'),(6226,'economics','54.237.215.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 00:37:31','2020-01-27 00:37:31'),(6227,'government','100.24.9.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 02:34:55','2020-01-27 02:34:55'),(6228,'mathematics','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6229,'biology','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6230,'chemistry','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6231,'englishlit','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6232,'government','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6233,'civiledu','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6234,'currentaffairs','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:27','2020-01-27 04:08:27'),(6235,'english','3.89.150.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 06:06:57','2020-01-27 06:06:57'),(6236,'chemistry','114.119.167.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 07:14:52','2020-01-27 07:14:52'),(6237,'english','54.167.78.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 08:12:16','2020-01-27 08:12:16'),(6238,'biology','3.94.145.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:10:32','2020-01-27 12:10:32'),(6239,'crk','41.184.176.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:18:46','2020-01-27 12:18:46'),(6240,'english','52.205.236.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 14:56:14','2020-01-27 14:56:14'),(6241,'chemistry','105.112.38.62',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 15:47:21','2020-01-27 15:51:48'),(6242,'insurance','34.239.130.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 16:38:00','2020-01-27 16:38:00'),(6243,'chemistry','114.119.133.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 19:10:16','2020-01-27 19:10:16'),(6244,'chemistry','3.92.236.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 20:56:15','2020-01-27 20:56:15'),(6245,'chemistry','35.173.249.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 22:22:57','2020-01-27 22:22:57'),(6246,'chemistry','114.119.163.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 23:25:06','2020-01-27 23:25:06'),(6247,'commerce','3.95.235.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 00:29:02','2020-01-28 00:29:02'),(6248,'chemistry','151.80.39.47',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 01:56:45','2020-04-02 23:36:26'),(6249,'chemistry','114.119.131.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 02:19:39','2020-01-28 02:19:39'),(6250,'chemistry','114.119.146.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 03:40:30','2020-01-28 03:40:30'),(6251,'chemistry','159.138.158.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:23','2020-01-28 06:57:23'),(6252,'chemistry','159.138.151.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:26','2020-01-28 06:57:26'),(6253,'mathematics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6254,'accounting','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6255,'physics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6256,'government','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6257,'crk','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:04'),(6258,'insurance','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6259,'currentaffairs','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6260,'geography','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:08:11','2020-01-28 11:08:11'),(6261,'englishlit','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:17:47','2020-01-28 11:17:47'),(6262,'accounting','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:22:33','2020-01-28 11:22:33'),(6263,'chemistry','157.55.39.83',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:38:03','2020-01-28 11:38:03'),(6264,'economics','35.171.182.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:01:23','2020-01-28 14:01:23'),(6265,'economics','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:18','2020-01-28 14:44:18'),(6266,'english','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:19','2020-01-28 14:44:19'),(6267,'physics','3.94.103.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 18:25:15','2020-01-28 18:25:15'),(6268,'commerce','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:38','2020-01-29 02:20:38'),(6269,'accounting','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6270,'physics','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6271,'government','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6272,'crk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6273,'irk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6274,'currentaffairs','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6275,'english','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:42','2020-01-29 02:55:43'),(6276,'mathematics','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6277,'accounting','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6278,'government','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6279,'insurance','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6280,'currentaffairs','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6281,'history','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:44'),(6282,'chemistry','159.138.159.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:08:05','2020-01-29 06:08:05'),(6283,'mathematics','3.83.117.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:37:49','2020-01-29 06:37:49'),(6284,'geography','18.232.162.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 08:36:32','2020-01-29 08:36:32'),(6285,'insurance','52.90.181.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 12:12:29','2020-01-29 12:12:29'),(6286,'chemistry','18.234.111.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 14:21:47','2020-01-29 14:21:47'),(6287,'commerce','54.87.20.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 15:21:30','2020-01-29 15:21:30'),(6288,'mathematics','52.90.10.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 16:29:01','2020-01-29 16:29:01'),(6289,'chemistry','207.46.13.92',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:25:12','2020-01-29 18:25:12'),(6290,'mathematics','3.81.141.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:38:00','2020-01-29 18:38:00'),(6291,'government','41.190.3.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:13:05','2020-01-29 19:13:06'),(6292,'chemistry','207.46.13.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:32:15','2020-01-29 19:32:15'),(6293,'commerce','3.88.140.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 21:29:47','2020-01-29 21:29:47'),(6294,'biology','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:49:14','2020-01-30 01:49:14'),(6295,'english','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:50:59','2020-01-30 01:50:59'),(6296,'mathematics','54.91.188.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 03:44:50','2020-01-30 03:44:50'),(6297,'english','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:22:30','2020-01-30 05:22:30'),(6298,'government','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:24:43','2020-01-30 05:24:43'),(6299,'englishlit','3.80.30.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 06:21:01','2020-01-30 06:21:01'),(6300,'economics','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:13:00','2020-01-30 08:13:00'),(6301,'crk','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:15:11','2020-01-30 08:15:11'),(6302,'geography','18.207.190.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 10:50:25','2020-01-30 10:50:25'),(6303,'english','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:28:50','2020-01-30 13:28:50'),(6304,'civiledu','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:59:42','2020-01-30 13:59:42'),(6305,'geography','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 14:27:14','2020-01-30 14:27:14'),(6306,'insurance','34.237.245.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:05:29','2020-01-30 16:05:29'),(6307,'chemistry','46.229.161.131',212,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-04-19 15:14:37'),(6308,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6309,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6310,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6311,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6312,'physics','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:01:23','2020-01-30 20:01:23'),(6313,'geography','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:23:45','2020-01-30 20:23:45'),(6314,'chemistry','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 21:51:40','2020-01-30 21:51:40'),(6315,'englishlit','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 22:08:33','2020-01-30 22:08:33'),(6316,'currentaffairs','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:21:19','2020-01-31 01:21:19'),(6317,'government','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:38:18','2020-01-31 01:38:18'),(6318,'economics','54.89.156.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:05:07','2020-01-31 03:05:07'),(6319,'chemistry','207.46.13.209',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:23:54','2020-01-31 12:04:42'),(6320,'english','105.112.182.82',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 06:30:35','2020-01-31 06:32:01'),(6321,'physics','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:12:51','2020-01-31 07:12:51'),(6322,'english','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:23:23','2020-01-31 07:23:23'),(6323,'economics','54.210.244.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:58:52','2020-01-31 07:58:52'),(6324,'englishlit','3.86.29.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 10:32:00','2020-01-31 10:32:00'),(6325,'chemistry','54.237.205.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 12:11:56','2020-01-31 12:11:56'),(6326,'mathematics','52.86.208.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 15:08:11','2020-01-31 15:08:11'),(6327,'accounting','3.86.202.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 17:15:43','2020-01-31 17:15:43'),(6328,'insurance','3.91.133.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 18:38:12','2020-01-31 18:38:12'),(6329,'mathematics','3.82.155.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 22:46:02','2020-01-31 22:46:02'),(6330,'insurance','18.234.65.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 23:57:02','2020-01-31 23:57:02'),(6331,'commerce','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:38:11','2020-02-01 00:38:11'),(6332,'english','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:08','2020-02-01 00:43:08'),(6333,'physics','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:27','2020-02-01 00:43:27'),(6334,'english','105.112.59.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:48:46','2020-02-01 04:48:46'),(6335,'englishlit','54.209.65.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:57:37','2020-02-01 04:57:37'),(6336,'geography','52.91.111.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 06:32:15','2020-02-01 06:32:15'),(6337,'english','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6338,'mathematics','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6339,'biology','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6340,'chemistry','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6341,'englishlit','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6342,'insurance','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6343,'history','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6344,'economics','54.87.59.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:18:15','2020-02-01 12:18:15'),(6345,'insurance','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:55:22','2020-02-01 12:55:22'),(6346,'civiledu','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 13:00:35','2020-02-01 13:00:35'),(6347,'accounting','34.203.212.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 14:38:27','2020-02-01 14:38:27'),(6348,'biology','34.228.168.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 01:57:16','2020-02-02 01:57:16'),(6349,'english','54.227.175.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 03:18:24','2020-02-02 03:18:24'),(6350,'government','52.23.185.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 05:33:56','2020-02-02 05:33:56'),(6351,'crk','52.23.225.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 08:26:03','2020-02-02 08:26:03'),(6352,'history','54.152.74.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 10:18:23','2020-02-02 10:18:23'),(6353,'civiledu','54.175.193.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 14:11:21','2020-02-02 14:11:21'),(6354,'chemistry','34.229.20.78',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:23'),(6355,'chemistry','34.229.20.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:22'),(6356,'chemistry','105.112.178.165',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 19:12:14','2020-02-02 19:31:58'),(6357,'biology','18.212.175.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 23:50:11','2020-02-02 23:50:11'),(6358,'currentaffairs','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 00:42:03','2020-02-03 00:42:03'),(6359,'history','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:15','2020-02-03 01:17:15'),(6360,'government','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:42','2020-02-03 01:17:42'),(6361,'economics','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:35:23','2020-02-03 01:35:23'),(6362,'economics','52.204.49.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 02:42:06','2020-02-03 02:42:06'),(6363,'economics','3.90.112.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 04:45:10','2020-02-03 04:45:10'),(6364,'english','34.228.141.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 06:53:18','2020-02-03 06:53:18'),(6365,'accounting','54.175.163.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 07:43:49','2020-02-03 07:43:49'),(6366,'chemistry','105.112.75.189',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:18:05','2020-02-03 09:50:11'),(6367,'biology','66.249.88.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:41:16','2020-02-03 09:41:18'),(6368,'chemistry','105.112.55.63',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:08:19','2020-02-03 10:31:05'),(6369,'chemistry','197.210.71.2',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:30:49','2020-02-03 10:30:59'),(6370,'mathematics','5.186.127.79',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:01:59','2020-03-08 01:56:09'),(6371,'english','5.186.127.79',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:02:29','2020-02-03 19:50:47'),(6372,'history','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:40:14','2020-02-03 19:40:14'),(6373,'chemistry','54.227.12.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 21:50:10','2020-02-03 21:50:10'),(6374,'crk','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 01:59:00','2020-02-04 01:59:00'),(6375,'commerce','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 02:10:16','2020-02-04 02:10:16'),(6376,'chemistry','105.112.178.251',234,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 03:42:45','2020-02-04 05:35:31'),(6377,'crk','54.174.29.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 08:39:40','2020-02-04 08:39:40'),(6378,'chemistry','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:58:55','2020-02-04 09:58:55'),(6379,'irk','54.145.39.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:59:39','2020-02-04 09:59:39'),(6380,'mathematics','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:00:08','2020-02-04 10:00:08'),(6381,'economics','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:48:18','2020-02-04 10:48:18'),(6382,'accounting','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:54:29','2020-02-04 10:54:29'),(6383,'civiledu','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 11:29:41','2020-02-04 11:29:41'),(6384,'economics','54.162.191.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:01:04','2020-02-04 12:01:04'),(6385,'chemistry','159.138.155.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:43:25','2020-02-04 12:43:25'),(6386,'crk','3.83.164.35',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:13:32','2020-02-04 14:20:46'),(6387,'irk','3.83.164.35',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:18:49','2020-02-04 14:24:05'),(6388,'english','3.83.164.35',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:25:01','2020-02-04 14:28:15'),(6389,'mathematics','3.83.164.35',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 14:29:22','2020-02-04 14:33:35'),(6390,'civiledu','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:34:31','2020-02-04 14:39:09'),(6391,'insurance','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:40:01','2020-02-04 14:43:43'),(6392,'chemistry','129.56.111.10',6,'','NG','','Lagos',NULL,NULL,'','','2020-02-04 14:41:58','2020-02-05 06:14:39'),(6393,'economics','129.56.111.10',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:42:39','2020-02-04 14:42:39'),(6394,'currentaffairs','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:44:50','2020-02-04 14:48:55'),(6395,'government','18.207.229.112',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 15:33:33','2020-02-04 15:33:33'),(6396,'mathematics','190.120.217.202',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 16:44:57','2020-02-04 16:44:57'),(6397,'government','54.81.18.48',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 17:27:35','2020-02-04 17:46:16'),(6398,'crk','54.81.18.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 17:46:16','2020-02-04 17:46:16'),(6399,'chemistry','197.211.61.135',16,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 19:19:08','2020-02-04 19:24:05'),(6400,'chemistry','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:15:38','2020-02-04 20:15:38'),(6401,'geography','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:28:22','2020-02-04 20:28:22'),(6402,'government','34.233.134.3',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 21:13:57','2020-02-04 21:13:57'),(6403,'commerce','52.91.40.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 22:24:13','2020-02-04 22:24:13'),(6404,'economics','34.228.184.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 00:11:53','2020-02-05 00:11:53'),(6405,'economics','18.215.150.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 03:12:14','2020-02-05 03:12:14'),(6406,'insurance','54.237.226.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 04:33:22','2020-02-05 04:33:22'),(6407,'chemistry','207.46.13.202',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 05:48:51','2020-02-05 07:58:31'),(6408,'chemistry','206.189.180.4',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:11:56','2020-02-05 06:12:29'),(6409,'physics','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:13:27','2020-02-05 06:13:27'),(6410,'biology','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:14:43','2020-02-05 06:14:43'),(6411,'chemistry','159.138.152.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 09:26:20','2020-02-05 09:26:20'),(6412,'englishlit','34.228.66.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 10:25:53','2020-02-05 10:25:53'),(6413,'chemistry','207.46.13.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:16:47','2020-02-05 12:16:47'),(6414,'economics','52.87.240.0',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:48:30','2020-02-05 12:51:43'),(6415,'englishlit','52.87.240.0',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:52:17','2020-02-05 12:55:42'),(6416,'chemistry','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:42:37','2020-02-05 13:42:40'),(6417,'biology','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:43:23','2020-02-05 13:43:27'),(6418,'chemistry','159.138.156.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:18','2020-02-05 14:20:18'),(6419,'chemistry','159.138.156.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:20','2020-02-05 14:20:20'),(6420,'english','18.233.225.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:35:35','2020-02-05 14:35:35'),(6421,'chemistry','159.138.158.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:22','2020-02-05 16:03:22'),(6422,'chemistry','159.138.158.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:24','2020-02-05 16:03:24'),(6423,'chemistry','149.28.23.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:07:00','2020-02-05 16:07:01'),(6424,'chemistry','197.210.45.223',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:12:02','2020-02-05 19:12:03'),(6425,'crk','54.147.234.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:55:34','2020-02-05 19:55:34'),(6426,'crk','34.227.152.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 00:47:24','2020-02-06 00:47:24'),(6427,'insurance','54.198.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:07:31','2020-02-06 05:07:31'),(6428,'mathematics','54.198.78.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:13:14','2020-02-06 05:39:35'),(6429,'chemistry','105.112.178.38',113,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:24:23','2020-02-06 08:18:18'),(6430,'chemistry','197.210.52.78',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:45:06','2020-02-06 09:09:46'),(6431,'chemistry','197.210.53.153',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:52:38','2020-02-06 09:16:07'),(6432,'chemistry','197.210.52.148',167,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:56:55','2020-02-06 09:16:55'),(6433,'chemistry','197.210.53.241',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:57:58','2020-02-06 09:03:21'),(6434,'english','197.210.53.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:03','2020-02-06 09:17:03'),(6435,'english','197.210.53.153',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:17','2020-02-06 09:17:20'),(6436,'accounting','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:19:37','2020-02-06 09:19:40'),(6437,'biology','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:20','2020-02-06 09:20:23'),(6438,'physics','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:51','2020-02-06 09:20:54'),(6439,'english','102.67.6.4',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:35','2020-02-06 09:21:38'),(6440,'englishlit','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:36','2020-02-06 09:21:39'),(6441,'mathematics','102.67.6.4',90,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:48','2020-02-06 09:22:30'),(6442,'government','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:53','2020-02-06 09:21:56'),(6443,'crk','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:07','2020-02-06 09:22:11'),(6444,'geography','197.210.52.46',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:18','2020-02-06 09:22:21'),(6445,'economics','197.210.52.148',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:28','2020-02-06 09:22:31'),(6446,'irk','197.210.52.46',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:48','2020-02-06 09:22:50'),(6447,'civiledu','197.210.52.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:57','2020-02-06 09:23:00'),(6448,'insurance','197.210.53.228',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:13','2020-02-06 09:24:16'),(6449,'biology','102.67.6.4',45,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:44','2020-02-06 09:25:01'),(6450,'history','197.210.53.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:25:32','2020-02-06 09:25:35'),(6451,'chemistry','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:05:57','2020-02-06 11:05:57'),(6452,'physics','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:34:52','2020-02-06 11:34:52'),(6453,'chemistry','129.18.170.187',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 12:20:37','2020-02-06 12:20:49'),(6454,'english','41.184.164.93',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 14:04:50','2020-02-06 14:04:53'),(6455,'englishlit','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:10:15','2020-02-06 14:10:15'),(6456,'crk','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:31:21','2020-02-06 14:31:21'),(6457,'chemistry','197.211.61.128',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:45:01','2020-02-06 14:45:39'),(6458,'englishlit','54.242.25.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 15:06:36','2020-02-06 15:06:36'),(6459,'currentaffairs','3.84.248.139',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 16:33:00','2020-02-06 16:33:00'),(6460,'chemistry','159.138.153.33',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 19:22:39','2020-02-06 19:22:42'),(6461,'crk','3.88.183.247',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 21:12:07','2020-02-06 21:12:07'),(6462,'englishlit','18.232.114.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 22:46:55','2020-02-06 22:46:55'),(6463,'economics','54.227.10.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 01:41:04','2020-02-07 01:41:04'),(6464,'english','3.86.106.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 02:18:26','2020-02-07 02:18:26'),(6465,'biology','35.174.9.116',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:28:22','2020-02-07 04:28:23'),(6466,'government','35.174.9.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:47:35','2020-02-07 04:47:35'),(6467,'crk','54.157.234.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 09:15:39','2020-02-07 09:15:39'),(6468,'mathematics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:24','2020-02-07 10:02:27'),(6469,'chemistry','41.184.164.93',46,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:52','2020-02-13 12:05:06'),(6470,'physics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:03:10','2020-02-07 10:03:13'),(6471,'chemistry','34.207.81.136',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 12:31:01','2020-02-07 12:31:01'),(6472,'chemistry','159.138.148.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:48','2020-02-07 13:54:48'),(6473,'chemistry','159.138.151.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:51','2020-02-07 13:54:51'),(6474,'chemistry','159.138.156.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:39','2020-02-07 14:47:39'),(6475,'chemistry','159.138.152.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:40','2020-02-07 14:47:40'),(6476,'english','52.201.218.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 18:39:18','2020-02-07 18:39:18'),(6477,'chemistry','105.112.117.84',293,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:30:28','2020-02-07 20:00:57'),(6478,'english','105.112.117.84',104,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:48:33','2020-02-07 20:02:22'),(6479,'biology','3.87.229.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 20:58:03','2020-02-07 20:58:03'),(6480,'englishlit','54.226.235.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 05:22:08','2020-02-08 05:22:08'),(6481,'currentaffairs','18.212.207.50',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 12:56:59','2020-02-08 13:19:35'),(6482,'english','105.112.121.51',3687,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:00:54','2020-02-08 16:40:24'),(6483,'chemistry','105.112.121.51',247,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:17:20','2020-02-08 16:40:24'),(6484,'mathematics','105.112.121.51',280,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 14:55:34','2020-02-08 16:40:25'),(6485,'currentaffairs','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6486,'biology','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6487,'civiledu','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6488,'accounting','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6489,'history','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6490,'government','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6491,'crk','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6492,'geography','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6493,'physics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6494,'irk','105.112.121.51',180,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:28'),(6495,'commerce','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:51','2020-02-08 16:40:24'),(6496,'englishlit','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:24'),(6497,'economics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:23'),(6498,'civiledu','34.230.4.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 17:05:03','2020-02-08 17:05:03'),(6499,'englishlit','54.167.22.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 20:45:17','2020-02-08 20:45:17'),(6500,'english','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:52:30','2020-02-08 20:52:30'),(6501,'accounting','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:59:40','2020-02-08 20:59:40'),(6502,'chemistry','105.112.23.32',172,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:31:48','2020-02-09 02:17:39'),(6503,'commerce','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6504,'physics','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6505,'chemistry','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6506,'englishlit','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6507,'crk','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6508,'geography','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:19'),(6509,'history','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:19','2020-02-08 23:44:19'),(6510,'physics','66.249.83.192',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 06:54:16','2020-02-09 06:54:18'),(6511,'mathematics','105.112.38.128',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:07:48','2020-02-09 11:09:27'),(6512,'biology','105.112.38.128',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:10:56','2020-02-09 11:10:57'),(6513,'biology','105.112.57.10',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:16:17','2020-02-09 11:16:56'),(6514,'chemistry','105.112.176.118',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 13:28:05','2020-02-09 14:36:23'),(6515,'chemistry','105.112.38.60',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 21:58:06','2020-02-09 21:58:42'),(6516,'englishlit','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6517,'civiledu','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6518,'mathematics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6519,'physics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6520,'currentaffairs','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6521,'commerce','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6522,'government','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6523,'accounting','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6524,'english','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6525,'chemistry','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6526,'crk','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6527,'history','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6528,'economics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:45'),(6529,'irk','105.112.121.100',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6530,'biology','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6531,'geography','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6532,'mathematics','3.88.254.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 23:58:44','2020-02-09 23:58:44'),(6533,'commerce','54.234.42.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 04:53:06','2020-02-10 04:53:06'),(6534,'insurance','52.205.252.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 12:48:35','2020-02-10 12:48:35'),(6535,'biology','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:31:06','2020-02-10 13:33:56'),(6536,'geography','54.86.139.235',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:34:52','2020-02-10 13:40:06'),(6537,'government','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:38:55','2020-02-10 13:41:36'),(6538,'chemistry','159.138.159.131',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 14:59:24','2020-02-10 14:59:25'),(6539,'chemistry','66.102.8.239',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 19:24:51','2020-03-10 07:49:39'),(6540,'mathematics','54.198.180.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 23:23:53','2020-02-10 23:23:53'),(6541,'geography','34.228.215.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 03:09:40','2020-02-11 03:09:40'),(6542,'economics','54.86.162.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 06:23:36','2020-02-11 06:23:36'),(6543,'chemistry','159.138.128.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:43','2020-02-11 08:08:43'),(6544,'chemistry','159.138.157.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:44','2020-02-11 08:08:44'),(6545,'crk','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:19:44','2020-02-11 08:19:44'),(6546,'geography','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:28:36','2020-02-11 08:28:36'),(6547,'geography','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:07:20','2020-02-11 11:07:20'),(6548,'english','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:29:21','2020-02-11 11:29:21'),(6549,'physics','52.90.177.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 20:57:31','2020-02-11 20:57:31'),(6550,'chemistry','54.36.148.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 21:31:54','2020-02-11 21:31:55'),(6551,'englishlit','52.23.243.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 00:28:14','2020-02-12 00:28:14'),(6552,'mathematics','105.112.59.79',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 01:05:16','2020-02-12 01:05:16'),(6553,'currentaffairs','54.172.153.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 04:22:50','2020-02-12 04:22:50'),(6554,'biology','54.81.207.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 06:05:04','2020-02-12 06:05:04'),(6555,'geography','3.83.240.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 07:57:33','2020-02-12 07:57:33'),(6556,'chemistry','114.119.164.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 09:32:25','2020-02-12 09:32:25'),(6557,'chemistry','159.138.157.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:57','2020-02-12 12:35:57'),(6558,'chemistry','159.138.155.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:59','2020-02-12 12:35:59'),(6559,'mathematics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:18:10','2020-02-12 16:18:10'),(6560,'physics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:23:01','2020-02-12 16:23:01'),(6561,'chemistry','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:44:21','2020-02-12 16:44:21'),(6562,'biology','66.249.88.14',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 17:50:44','2020-02-15 20:12:28'),(6563,'geography','18.212.14.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 21:05:47','2020-02-12 21:05:47'),(6564,'government','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:08:36','2020-02-12 22:08:36'),(6565,'mathematics','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:15:14','2020-02-12 22:15:14'),(6566,'mathematics','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:42:26','2020-02-13 01:42:26'),(6567,'accounting','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:51:06','2020-02-13 01:51:06'),(6568,'history','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:03:04','2020-02-13 03:03:04'),(6569,'englishlit','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:13:21','2020-02-13 03:13:21'),(6570,'chemistry','54.36.150.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 06:05:15','2020-02-13 06:05:15'),(6571,'irk','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6572,'geography','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6573,'accounting','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6574,'currentaffairs','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6575,'english','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6576,'government','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6577,'mathematics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6578,'civiledu','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6579,'physics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6580,'crk','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6581,'biology','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6582,'commerce','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6583,'englishlit','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6584,'history','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6585,'chemistry','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6586,'economics','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:47:15','2020-02-13 09:50:43'),(6587,'chemistry','159.138.152.95',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 16:01:29','2020-02-13 16:01:33'),(6588,'geography','3.85.140.177',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-13 18:30:03','2020-02-13 18:30:03'),(6589,'chemistry','107.167.108.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 22:22:25','2020-02-13 22:22:25'),(6590,'accounting','18.206.218.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 03:40:45','2020-02-14 03:40:45'),(6591,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6592,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6593,'chemistry','159.138.153.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:50','2020-02-14 08:34:50'),(6594,'chemistry','159.138.150.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:53','2020-02-14 08:34:53'),(6595,'chemistry','159.138.158.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:49','2020-02-14 08:40:49'),(6596,'chemistry','159.138.151.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:52','2020-02-14 08:40:52'),(6597,'chemistry','54.36.150.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 09:29:11','2020-02-14 09:29:11'),(6598,'commerce','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:16','2020-02-14 12:46:16'),(6599,'physics','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6600,'government','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6601,'geography','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6602,'irk','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6603,'currentaffairs','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6604,'history','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6605,'english','54.234.90.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 13:13:09','2020-02-14 13:13:09'),(6606,'government','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 15:59:30','2020-02-14 15:59:34'),(6607,'physics','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 16:21:32','2020-02-14 16:21:35'),(6608,'mathematics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6609,'physics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6610,'englishlit','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6611,'english','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6612,'biology','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6613,'irk','3.84.126.190',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:53'),(6614,'government','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6615,'currentaffairs','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6616,'economics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6617,'commerce','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6618,'geography','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6619,'civiledu','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6620,'accounting','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6621,'history','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6622,'chemistry','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6623,'crk','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6624,'crk','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6625,'currentaffairs','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6626,'geography','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6627,'economics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6628,'civiledu','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6629,'irk','52.205.39.67',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:40'),(6630,'englishlit','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6631,'government','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6632,'chemistry','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6633,'history','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6634,'physics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6635,'biology','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6636,'accounting','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6637,'mathematics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6638,'english','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6639,'commerce','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:38','2020-02-14 17:43:41'),(6640,'history','54.161.219.62',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-14 18:19:40','2020-02-14 18:19:40'),(6641,'chemistry','207.46.13.106',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 13:28:42','2020-02-26 14:54:53'),(6642,'mathematics','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6643,'commerce','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6644,'chemistry','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6645,'englishlit','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6646,'government','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6647,'insurance','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6648,'history','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6649,'chemistry','157.55.39.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 18:35:48','2020-02-15 18:35:48'),(6650,'biology','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 20:12:28','2020-02-15 20:12:30'),(6651,'insurance','107.22.1.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 00:40:58','2020-02-16 00:40:58'),(6652,'economics','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:40:03','2020-02-16 01:40:03'),(6653,'history','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:59:35','2020-02-16 01:59:35'),(6654,'economics','100.26.204.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 04:49:19','2020-02-16 04:49:19'),(6655,'history','54.173.184.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 07:23:00','2020-02-16 07:23:00'),(6656,'chemistry','54.158.124.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 08:06:19','2020-02-16 08:06:19'),(6657,'accounting','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 09:59:42','2020-02-16 09:59:42'),(6658,'history','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 10:06:30','2020-02-16 10:06:30'),(6659,'biology','54.81.159.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:49:34','2020-02-16 16:58:41'),(6660,'english','54.81.159.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:52:09','2020-02-16 16:56:21'),(6661,'chemistry','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:21','2020-02-16 16:54:24'),(6662,'commerce','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:43','2020-02-16 16:54:46'),(6663,'accounting','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:06','2020-02-16 16:55:09'),(6664,'mathematics','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:58','2020-02-16 16:56:01'),(6665,'irk','52.91.167.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 22:51:34','2020-02-16 22:51:34'),(6666,'crk','34.233.126.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 01:08:54','2020-02-17 01:08:54'),(6667,'economics','54.234.27.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 05:03:19','2020-02-17 05:03:19'),(6668,'commerce','54.221.92.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 06:44:50','2020-02-17 06:44:50'),(6669,'chemistry','159.138.128.150',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:05:44','2020-02-17 07:05:44'),(6670,'english','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6671,'mathematics','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6672,'accounting','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6673,'englishlit','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6674,'government','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:10'),(6675,'civiledu','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-17 07:26:10'),(6676,'insurance','34.229.240.235',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-19 13:08:34'),(6677,'biology','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:53:21','2020-02-17 07:53:21'),(6678,'chemistry','41.190.3.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 09:00:45','2020-02-17 09:00:46'),(6679,'accounting','34.224.39.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 10:20:33','2020-02-17 10:20:33'),(6680,'english','197.156.253.124',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 11:19:47','2020-02-17 11:19:47'),(6681,'crk','184.72.213.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 13:48:40','2020-02-17 13:48:40'),(6682,'accounting','54.165.1.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 17:44:51','2020-02-17 17:44:51'),(6683,'economics','54.83.109.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 20:16:53','2020-02-17 20:16:53'),(6684,'chemistry','5.255.250.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 21:22:58','2020-02-17 21:22:58'),(6685,'government','54.221.59.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 23:17:36','2020-02-17 23:17:36'),(6686,'chemistry','34.201.122.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 00:07:06','2020-02-18 00:07:06'),(6687,'government','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:37:21','2020-02-18 02:37:21'),(6688,'geography','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:43:15','2020-02-18 02:43:15'),(6689,'mathematics','52.87.200.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 03:25:39','2020-02-18 03:25:39'),(6690,'commerce','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:40:17','2020-02-18 05:40:17'),(6691,'economics','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:53:54','2020-02-18 05:53:54'),(6692,'chemistry','54.224.96.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:08:00','2020-02-18 11:08:00'),(6693,'insurance','54.224.96.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:30:46','2020-02-18 11:30:46'),(6694,'crk','18.212.173.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 13:09:34','2020-03-20 07:37:00'),(6695,'chemistry','114.119.134.79',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 15:47:10','2020-02-18 15:47:10'),(6696,'englishlit','100.24.12.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 18:48:21','2020-02-18 18:48:21'),(6697,'crk','3.85.34.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 22:20:53','2020-02-18 22:20:53'),(6698,'chemistry','196.220.136.213',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 00:45:34','2020-02-19 00:45:35'),(6699,'english','54.147.36.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 03:54:04','2020-02-19 03:54:04'),(6700,'crk','34.229.241.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 05:30:54','2020-02-19 05:30:54'),(6701,'chemistry','41.184.42.114',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 13:13:14','2020-02-19 13:13:37'),(6702,'english','54.227.161.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 15:50:25','2020-02-19 15:50:25'),(6703,'chemistry','82.145.222.210',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:03:16','2020-02-19 18:03:27'),(6704,'chemistry','54.36.150.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:07:42','2020-02-19 18:07:46'),(6705,'englishlit','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:26:35','2020-02-19 19:26:35'),(6706,'chemistry','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:27:02','2020-02-19 19:27:02'),(6707,'physics','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:53:17','2020-02-19 19:53:17'),(6708,'english','204.236.246.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 22:37:37','2020-02-19 22:37:37'),(6709,'englishlit','34.230.79.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 00:17:30','2020-02-20 00:17:30'),(6710,'currentaffairs','54.242.206.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 01:18:47','2020-02-20 01:18:47'),(6711,'crk','3.85.213.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 04:49:03','2020-02-20 04:49:03'),(6712,'englishlit','3.81.90.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 08:44:59','2020-02-20 08:44:59'),(6713,'government','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:23','2020-02-20 10:57:04'),(6714,'physics','3.81.90.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:35','2020-02-20 09:14:41'),(6715,'irk','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:28:55','2020-02-20 10:57:05'),(6716,'currentaffairs','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:33:57','2020-02-20 10:57:05'),(6717,'history','3.81.90.103',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:37:42','2020-02-20 10:45:58'),(6718,'history','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6719,'chemistry','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6720,'accounting','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6721,'commerce','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6722,'physics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6723,'civiledu','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6724,'crk','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6725,'economics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6726,'currentaffairs','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6727,'biology','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6728,'government','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6729,'english','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6730,'irk','35.168.19.41',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6731,'englishlit','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6732,'geography','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6733,'mathematics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6734,'geography','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:07','2020-02-20 11:04:56'),(6735,'commerce','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:45','2020-02-20 10:57:04'),(6736,'chemistry','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6737,'geography','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6738,'englishlit','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6739,'history','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6740,'accounting','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6741,'english','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6742,'commerce','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6743,'crk','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6744,'civiledu','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6745,'physics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6746,'mathematics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6747,'government','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6748,'irk','54.162.219.78',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6749,'biology','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6750,'economics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:11','2020-02-20 10:47:14'),(6751,'currentaffairs','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:12','2020-02-20 10:47:15'),(6752,'economics','3.81.90.103',3,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 11:01:05'),(6753,'civiledu','3.81.90.103',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 10:57:05'),(6754,'government','18.207.192.142',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 13:42:22','2020-02-20 13:42:22'),(6755,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6756,'chemistry','54.167.198.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6757,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6758,'english','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:31','2020-02-20 17:26:32'),(6759,'accounting','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6760,'biology','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6761,'government','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6762,'crk','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6763,'currentaffairs','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6764,'history','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6765,'crk','3.80.65.155',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:00:34','2020-02-20 18:00:34'),(6766,'biology','3.80.65.155',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:13:55','2020-02-20 18:13:55'),(6767,'english','204.236.203.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 21:11:32','2020-02-20 21:11:32'),(6768,'mathematics','3.89.145.218',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 22:35:41','2020-02-20 22:35:41'),(6769,'chemistry','46.229.168.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:29:39','2020-02-21 02:29:39'),(6770,'chemistry','157.55.39.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:49:20','2020-02-21 02:49:20'),(6771,'english','54.147.53.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 03:48:00','2020-02-21 03:48:00'),(6772,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6773,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6774,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6775,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6776,'currentaffairs','3.90.168.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 19:24:12','2020-02-21 19:24:12'),(6777,'chemistry','34.226.190.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 20:12:12','2020-02-21 20:12:12'),(6778,'currentaffairs','18.234.246.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 21:02:21','2020-02-21 21:02:21'),(6779,'civiledu','54.162.109.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 23:30:06','2020-02-21 23:30:06'),(6780,'english','3.92.223.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:55:12','2020-02-22 03:55:12'),(6781,'chemistry','159.138.153.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:52','2020-02-22 03:58:52'),(6782,'chemistry','159.138.155.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:53','2020-02-22 03:58:53'),(6783,'englishlit','54.234.225.91',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 04:45:49','2020-02-22 04:45:49'),(6784,'accounting','3.81.14.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 06:32:53','2020-02-22 06:32:53'),(6785,'biology','3.85.195.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 08:05:36','2020-02-22 08:05:36'),(6786,'english','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:02','2020-02-22 12:38:03'),(6787,'commerce','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6788,'physics','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6789,'englishlit','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6790,'crk','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6791,'currentaffairs','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6792,'history','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:04'),(6793,'biology','3.88.4.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 21:11:38','2020-02-22 21:11:39'),(6794,'chemistry','35.173.57.84',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 00:53:28','2020-02-23 01:21:39'),(6795,'government','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:01:42','2020-02-23 13:01:42'),(6796,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6797,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6798,'commerce','54.196.170.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 14:07:46','2020-02-23 14:07:46'),(6799,'chemistry','54.36.150.158',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 15:20:46','2020-02-23 15:20:49'),(6800,'insurance','35.173.187.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 17:32:21','2020-02-23 17:32:21'),(6801,'crk','3.86.33.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 20:19:46','2020-02-23 20:19:46'),(6802,'english','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6803,'mathematics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6804,'commerce','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6805,'physics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6806,'government','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6807,'geography','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6808,'currentaffairs','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:05'),(6809,'chemistry','159.138.156.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 05:01:23','2020-02-24 05:01:23'),(6810,'mathematics','54.205.146.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 06:01:05','2020-02-24 06:01:05'),(6811,'geography','54.159.1.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 08:03:19','2020-02-24 08:03:19'),(6812,'economics','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 12:58:49','2020-02-24 12:58:49'),(6813,'geography','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 13:18:08','2020-02-24 13:18:08'),(6814,'english','3.81.236.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 15:33:14','2020-02-24 15:33:14'),(6815,'geography','54.210.217.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 17:00:33','2020-02-24 17:00:33'),(6816,'chemistry','105.112.55.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 19:06:53','2020-02-24 23:57:08'),(6817,'chemistry','34.227.17.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:20:04','2020-03-05 17:43:13'),(6818,'physics','34.227.17.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:52:30','2020-02-24 23:52:30'),(6819,'englishlit','54.92.166.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 02:36:43','2020-02-25 02:36:43'),(6820,'geography','35.175.234.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 03:33:37','2020-02-25 03:33:37'),(6821,'currentaffairs','52.87.168.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 06:07:47','2020-02-25 06:07:47'),(6822,'biology','18.233.100.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 09:34:43','2020-02-25 09:34:43'),(6823,'chemistry','157.55.39.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 11:42:40','2020-02-25 11:42:40'),(6824,'physics','66.249.80.52',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 15:14:29','2020-02-25 15:14:31'),(6825,'physics','107.23.131.74',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 18:59:40','2020-02-25 19:13:57'),(6826,'english','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6827,'mathematics','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6828,'commerce','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:57'),(6829,'biology','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6830,'currentaffairs','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6831,'history','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6832,'englishlit','35.170.185.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:56:19','2020-02-25 19:56:19'),(6833,'mathematics','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:37:16','2020-02-25 20:37:16'),(6834,'biology','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:57:18','2020-02-25 20:57:18'),(6835,'chemistry','185.26.180.143',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:07:17','2020-02-25 21:07:19'),(6836,'chemistry','192.95.16.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:56:59','2020-02-25 21:56:59'),(6837,'geography','3.92.190.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 23:13:07','2020-02-25 23:13:07'),(6838,'government','54.146.199.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 01:42:52','2020-02-26 01:42:52'),(6839,'mathematics','3.89.35.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 04:40:50','2020-02-26 04:40:50'),(6840,'history','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:21:37','2020-02-26 05:21:37'),(6841,'accounting','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:41:03','2020-02-26 05:41:03'),(6842,'biology','54.91.45.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 07:38:13','2020-02-26 07:38:13'),(6843,'chemistry','54.221.93.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:04:36','2020-02-26 09:15:23'),(6844,'chemistry','66.102.8.241',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6845,'chemistry','66.249.80.50',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6846,'chemistry','66.102.8.243',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-03-09 23:52:26'),(6847,'physics','66.249.88.65',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:22:54','2020-02-26 12:22:56'),(6848,'biology','54.235.235.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:50:49','2020-02-26 12:50:49'),(6849,'geography','54.161.25.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 17:04:18','2020-02-26 17:04:18'),(6850,'english','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6851,'mathematics','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6852,'biology','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6853,'chemistry','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6854,'government','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6855,'geography','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:01'),(6856,'irk','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:01','2020-02-27 04:05:01'),(6857,'accounting','54.197.40.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 05:01:31','2020-02-27 05:01:31'),(6858,'history','107.20.37.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 13:39:41','2020-02-27 13:39:41'),(6859,'chemistry','3.80.114.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 23:45:34','2020-02-27 23:45:34'),(6860,'english','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:45:04','2020-02-28 13:47:42'),(6861,'government','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:50:32','2020-02-28 13:52:07'),(6862,'commerce','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:54:04','2020-02-28 13:55:34'),(6863,'biology','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:57:38','2020-02-28 13:59:56'),(6864,'mathematics','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:59:07','2020-02-28 13:59:48'),(6865,'biology','52.204.53.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:24'),(6866,'biology','52.204.53.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:22'),(6867,'insurance','3.89.28.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 02:19:14','2020-02-29 02:19:14'),(6868,'economics','54.86.68.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 03:27:08','2020-02-29 03:27:08'),(6869,'accounting','18.207.149.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 06:17:21','2020-02-29 06:17:21'),(6870,'crk','54.224.249.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 07:18:55','2020-02-29 07:18:55'),(6871,'chemistry','49.70.183.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:00:47','2020-02-29 10:00:47'),(6872,'chemistry','34.226.148.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6873,'chemistry','34.226.148.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6874,'biology','54.234.130.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:39:43','2020-02-29 10:39:43'),(6875,'history','54.172.167.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 14:10:22','2020-02-29 14:10:22'),(6876,'chemistry','66.249.88.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:08','2020-02-29 15:50:09'),(6877,'chemistry','66.102.6.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:09','2020-02-29 15:50:09'),(6878,'irk','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:58:08','2020-02-29 15:58:08'),(6879,'chemistry','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:59:27','2020-02-29 15:59:27'),(6880,'history','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 19:55:14','2020-02-29 19:55:14'),(6881,'crk','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 20:06:10','2020-02-29 20:06:10'),(6882,'commerce','52.202.140.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 22:45:59','2020-02-29 22:45:59'),(6883,'chemistry','223.245.212.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 23:22:31','2020-02-29 23:22:31'),(6884,'biology','18.212.32.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 00:01:45','2020-03-01 00:01:45'),(6885,'accounting','52.23.172.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 01:53:29','2020-03-01 01:53:29'),(6886,'chemistry','1.203.150.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 02:14:54','2020-03-01 02:14:54'),(6887,'economics','54.156.62.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 06:18:07','2020-03-01 06:18:07'),(6888,'government','35.173.129.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 08:48:14','2020-03-01 08:48:14'),(6889,'chemistry','3.84.9.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 10:00:47','2020-03-01 10:00:47'),(6890,'geography','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 11:39:24','2020-03-01 11:39:24'),(6891,'government','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 12:03:05','2020-03-01 12:03:05'),(6892,'economics','18.209.9.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 16:36:07','2020-03-01 16:36:07'),(6893,'insurance','54.87.188.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 18:39:16','2020-03-01 18:39:16'),(6894,'englishlit','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:12:13','2020-03-01 23:12:13'),(6895,'english','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:29:26','2020-03-01 23:29:26'),(6896,'commerce','54.163.13.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 03:36:21','2020-03-02 03:36:21'),(6897,'crk','54.198.115.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 08:50:58','2020-03-02 08:50:58'),(6898,'crk','34.229.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 09:24:47','2020-03-02 09:24:47'),(6899,'chemistry','197.210.64.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 16:39:01','2020-03-02 16:39:01'),(6900,'english','105.112.55.216',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:24:46','2020-03-02 17:24:54'),(6901,'englishlit','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:46:18','2020-03-02 17:46:18'),(6902,'physics','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:59:07','2020-03-02 17:59:07'),(6903,'english','3.91.231.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 19:29:38','2020-03-02 19:29:38'),(6904,'currentaffairs','54.167.241.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 20:17:40','2020-03-02 20:17:40'),(6905,'chemistry','36.249.227.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:16:09','2020-03-02 21:16:09'),(6906,'chemistry','114.227.162.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:19:42','2020-03-02 21:19:42'),(6907,'englishlit','54.91.143.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 23:10:58','2020-03-02 23:10:58'),(6908,'englishlit','54.88.133.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 01:40:43','2020-03-03 01:40:43'),(6909,'government','34.228.244.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 05:09:18','2020-03-03 05:09:18'),(6910,'chemistry','141.8.188.144',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 08:07:45','2020-03-03 08:07:45'),(6911,'chemistry','82.145.220.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 09:48:31','2020-03-03 09:48:49'),(6912,'economics','3.80.28.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:11:56','2020-03-03 10:11:56'),(6913,'chemistry','82.145.209.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:36:44','2020-03-03 10:36:44'),(6914,'english','18.212.178.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:54:12','2020-03-03 10:54:12'),(6915,'chemistry','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:08:29','2020-03-03 12:08:29'),(6916,'biology','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:20:31','2020-03-03 12:20:31'),(6917,'chemistry','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:27','2020-03-03 13:36:27'),(6918,'mathematics','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:47','2020-03-03 13:36:47'),(6919,'english','52.87.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 17:00:16','2020-03-03 17:00:16'),(6920,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6921,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6922,'chemistry','40.77.167.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:37:26','2020-03-03 19:37:26'),(6923,'biology','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6924,'physics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6925,'geography','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6926,'economics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6927,'irk','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6928,'civiledu','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:58'),(6929,'currentaffairs','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:58','2020-03-03 20:05:58'),(6930,'biology','197.210.53.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:43:36','2020-03-03 20:43:38'),(6931,'physics','103.221.233.72',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 04:04:33','2020-03-04 04:25:46'),(6932,'english','105.112.182.249',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 10:31:20','2020-03-04 10:31:20'),(6933,'english','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:04:45','2020-03-04 11:04:45'),(6934,'accounting','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:05:53','2020-03-04 11:05:53'),(6935,'chemistry','197.210.53.87',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:39:34','2020-03-04 12:39:35'),(6936,'chemistry','197.210.52.235',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:04','2020-03-04 12:40:06'),(6937,'mathematics','197.210.53.94',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:07','2020-03-04 12:46:33'),(6938,'english','18.207.127.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 21:42:11','2020-03-04 21:42:11'),(6939,'chemistry','5.196.87.151',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 22:56:07','2020-04-02 22:19:08'),(6940,'englishlit','35.175.218.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 00:22:30','2020-03-05 00:22:30'),(6941,'commerce','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 02:31:37','2020-03-05 02:31:37'),(6942,'chemistry','54.89.222.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 04:03:59','2020-03-05 04:03:59'),(6943,'commerce','3.85.195.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 12:01:13','2020-03-05 12:01:13'),(6944,'crk','54.81.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 19:11:38','2020-03-05 19:11:38'),(6945,'mathematics','107.22.108.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 20:30:46','2020-03-05 20:30:46'),(6946,'english','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:08:59','2020-03-05 22:08:59'),(6947,'accounting','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6948,'biology','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6949,'chemistry','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6950,'irk','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6951,'insurance','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6952,'history','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6953,'geography','54.242.26.49',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 02:38:31','2020-03-06 02:55:09'),(6954,'biology','35.153.139.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 07:52:20','2020-03-06 07:52:20'),(6955,'geography','107.23.228.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 12:34:01','2020-03-06 12:34:01'),(6956,'currentaffairs','35.173.223.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 13:38:42','2020-03-06 13:38:42'),(6957,'chemistry','35.153.102.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 14:20:41','2020-03-06 14:20:41'),(6958,'biology','3.86.217.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 15:34:02','2020-03-06 15:34:02'),(6959,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6960,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6961,'chemistry','183.166.134.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:16:38','2020-03-06 21:16:38'),(6962,'chemistry','54.81.120.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:29:55','2020-03-06 21:29:55'),(6963,'mathematics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 23:47:39','2020-03-06 23:47:39'),(6964,'physics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 00:22:50','2020-03-07 00:22:50'),(6965,'mathematics','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 02:56:44','2020-03-07 02:56:44'),(6966,'physics','18.234.121.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 06:30:53','2020-03-07 06:30:53'),(6967,'chemistry','197.210.65.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:18:55','2020-03-07 08:18:55'),(6968,'chemistry','197.210.64.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:19:20','2020-03-07 08:19:20'),(6969,'chemistry','197.210.64.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:20:36','2020-03-07 08:20:36'),(6970,'english','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:01'),(6971,'accounting','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:02'),(6972,'geography','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6973,'irk','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6974,'civiledu','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6975,'insurance','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6976,'history','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6977,'english','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:35','2020-03-07 14:55:35'),(6978,'biology','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:36','2020-03-07 14:55:37'),(6979,'chemistry','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:37','2020-03-07 14:55:38'),(6980,'geography','52.90.45.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 15:21:48','2020-03-07 15:21:48'),(6981,'accounting','35.173.220.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 19:36:21','2020-03-07 19:36:21'),(6982,'commerce','5.186.127.79',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:16:03','2020-03-08 01:58:17'),(6983,'accounting','5.186.127.79',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:24:36','2020-03-08 01:52:42'),(6984,'biology','5.186.127.79',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 02:01:14','2020-03-08 02:01:15'),(6985,'englishlit','54.242.45.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 10:11:30','2020-03-08 10:11:30'),(6986,'chemistry','112.114.88.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:37:05','2020-03-08 13:37:05'),(6987,'history','54.174.12.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:54:38','2020-03-08 13:54:38'),(6988,'chemistry','54.173.164.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 16:27:27','2020-03-08 16:27:27'),(6989,'biology','52.90.68.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 17:35:15','2020-03-08 17:35:15'),(6990,'chemistry','114.119.164.166',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 18:08:08','2020-03-25 11:05:38'),(6991,'chemistry','60.185.69.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 20:52:07','2020-03-08 20:52:07'),(6992,'chemistry','197.210.227.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:17:20','2020-03-08 21:17:20'),(6993,'chemistry','197.210.226.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:18:58','2020-03-08 21:18:58'),(6994,'chemistry','197.210.226.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:19:11','2020-03-08 21:19:11'),(6995,'chemistry','114.119.160.43',3,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:20','2020-06-23 16:54:17'),(6996,'chemistry','161.151.254.43',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:41','2020-03-08 22:39:44'),(6997,'chemistry','161.151.254.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:41:32','2020-03-08 22:41:35'),(6998,'insurance','18.234.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 04:42:23','2020-03-09 04:42:23'),(6999,'chemistry','114.119.161.43',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 05:05:47','2020-04-06 00:24:10'),(7000,'economics','3.208.8.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 06:44:35','2020-03-09 06:44:35'),(7001,'chemistry','114.119.166.156',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 08:22:53','2020-03-10 01:02:52'),(7002,'history','54.175.112.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 09:37:37','2020-03-09 09:37:37'),(7003,'history','197.210.53.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:45:49','2020-03-09 12:45:50'),(7004,'chemistry','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:00','2020-03-09 12:56:20'),(7005,'history','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:03','2020-03-09 12:56:24'),(7006,'mathematics','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:04','2020-03-09 12:56:26'),(7007,'chemistry','197.210.53.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:59:22','2020-03-09 12:59:22'),(7008,'english','197.210.53.133',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:06:27','2020-03-09 13:06:27'),(7009,'accounting','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:29:10','2020-03-09 13:29:10'),(7010,'history','3.93.0.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 14:25:16','2020-03-09 14:25:16'),(7011,'crk','3.84.223.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 22:45:44','2020-03-09 22:45:44'),(7012,'chemistry','67.86.217.149',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:10:20','2020-04-07 19:16:09'),(7013,'chemistry','108.41.239.178',421,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:11:34','2020-04-13 13:17:04'),(7014,'commerce','3.84.214.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 01:51:20','2020-03-10 01:51:20'),(7015,'chemistry','197.210.70.26',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 04:06:56','2020-03-10 04:07:00'),(7016,'chemistry','197.210.70.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:17','2020-03-10 05:19:17'),(7017,'mathematics','197.210.70.216',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:26','2020-03-10 05:19:26'),(7018,'mathematics','197.210.71.234',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:08','2020-03-10 05:20:08'),(7019,'mathematics','197.210.70.250',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:21','2020-03-10 05:20:21'),(7020,'chemistry','197.210.70.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:35','2020-03-10 05:20:35'),(7021,'mathematics','197.210.71.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:53','2020-03-10 05:20:53'),(7022,'mathematics','197.210.70.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:52:55','2020-03-10 05:52:55'),(7023,'chemistry','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:05','2020-03-10 05:55:05'),(7024,'mathematics','197.210.70.182',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:15','2020-03-10 05:55:16'),(7025,'mathematics','197.210.174.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:58','2020-03-10 05:55:59'),(7026,'mathematics','108.41.239.178',367,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:06','2020-04-12 16:31:22'),(7027,'biology','197.210.70.40',46,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:35','2020-03-10 05:57:24'),(7028,'biology','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:55','2020-03-10 05:56:56'),(7029,'biology','197.210.70.170',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:58:15','2020-03-10 05:58:18'),(7030,'accounting','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:15:57','2020-03-10 06:15:57'),(7031,'crk','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:24:17','2020-03-10 06:24:17'),(7032,'chemistry','197.211.61.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 07:49:41','2020-03-10 07:49:41'),(7033,'chemistry','114.119.167.13',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 08:49:55','2020-03-31 11:06:57'),(7034,'economics','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:06:10','2020-03-10 09:06:10'),(7035,'irk','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:16:37','2020-03-10 09:16:37'),(7036,'chemistry','34.205.63.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 10:16:06','2020-03-10 10:16:06'),(7037,'government','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:04:13','2020-03-10 12:04:13'),(7038,'chemistry','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:21:49','2020-03-10 12:21:49'),(7039,'biology','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:06:43','2020-03-10 14:06:43'),(7040,'geography','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:12:24','2020-03-10 14:12:24'),(7041,'history','3.95.217.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 15:16:08','2020-03-10 15:16:08'),(7042,'commerce','18.212.139.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 16:38:48','2020-03-10 16:38:48'),(7043,'english','197.210.45.11',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:10:47','2020-03-10 17:41:19'),(7044,'geography','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:50','2020-03-10 17:41:20'),(7045,'mathematics','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:51','2020-03-10 17:41:21'),(7046,'economics','174.129.129.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:44:51','2020-03-10 17:44:51'),(7047,'government','54.234.46.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 19:25:59','2020-03-10 19:25:59'),(7048,'chemistry','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:21:32','2020-03-10 20:21:32'),(7049,'insurance','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:37:32','2020-03-10 20:37:32'),(7050,'chemistry','66.249.83.200',73,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-03-19 07:35:53'),(7051,'chemistry','66.249.83.204',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-04-26 10:46:35'),(7052,'englishlit','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:31:52','2020-03-11 02:31:52'),(7053,'english','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:42:48','2020-03-11 02:42:48'),(7054,'chemistry','116.31.102.8',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:21:00','2020-03-11 05:21:30'),(7055,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7056,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7057,'crk','35.174.12.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 10:23:39','2020-03-11 10:43:26'),(7058,'chemistry','52.90.116.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 11:19:41','2020-03-11 11:19:41'),(7059,'english','197.210.65.20',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:49','2020-03-11 13:34:49'),(7060,'biology','197.210.47.25',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:52','2020-03-11 13:34:52'),(7061,'chemistry','197.210.64.50',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:53','2020-03-11 13:34:54'),(7062,'mathematics','197.210.64.137',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:55','2020-03-11 13:34:56'),(7063,'chemistry','157.55.39.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:47:42','2020-03-11 14:47:42'),(7064,'chemistry','41.190.30.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:53:34','2020-03-11 14:53:35'),(7065,'english','54.221.96.198',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 15:42:57','2020-03-11 15:43:28'),(7066,'chemistry','197.211.61.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 16:33:36','2020-03-11 16:33:36'),(7067,'english','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:58:34','2020-03-11 18:58:34'),(7068,'englishlit','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:59:49','2020-03-11 18:59:49'),(7069,'physics','54.196.100.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:38:57','2020-03-11 19:38:57'),(7070,'chemistry','54.196.100.247',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:59:42','2020-03-11 19:59:42'),(7071,'english','3.82.116.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 20:42:05','2020-03-11 20:42:05'),(7072,'currentaffairs','54.211.73.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 21:57:05','2020-03-11 21:57:05'),(7073,'englishlit','54.234.241.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 01:46:19','2020-03-12 02:20:47'),(7074,'chemistry','54.167.99.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 05:23:04','2020-03-12 05:23:04'),(7075,'government','54.226.177.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:03:06','2020-03-12 06:03:06'),(7076,'economics','3.88.159.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:56:58','2020-03-12 06:56:58'),(7077,'mathematics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7078,'commerce','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7079,'english','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7080,'physics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:38'),(7081,'biology','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7082,'crk','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7083,'englishlit','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7084,'geography','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7085,'government','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7086,'insurance','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7087,'history','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7088,'currentaffairs','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:39','2020-03-12 07:43:39'),(7089,'chemistry','54.90.183.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 08:12:53','2020-03-12 08:12:53'),(7090,'english','3.83.156.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 10:27:53','2020-03-12 10:27:53'),(7091,'crk','3.89.215.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:13:49','2020-03-12 11:13:49'),(7092,'chemistry','3.90.255.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:50:26','2020-03-12 11:50:27'),(7093,'english','197.210.44.229',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 13:37:55','2020-03-12 13:37:55'),(7094,'mathematics','197.210.29.214',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:31:12','2020-03-12 15:31:12'),(7095,'chemistry','197.210.29.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:35:28','2020-03-12 15:36:34'),(7096,'chemistry','197.210.61.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:09','2020-03-12 15:38:09'),(7097,'chemistry','172.58.236.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:33','2020-03-12 15:41:06'),(7098,'biology','197.210.70.44',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 16:21:26','2020-03-12 16:21:28'),(7099,'biology','197.210.226.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:14:12','2020-03-12 17:14:14'),(7100,'biology','3.92.167.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:33:54','2020-03-12 17:33:54'),(7101,'chemistry','54.174.77.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 18:08:05','2020-03-12 18:08:05'),(7102,'english','129.205.113.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 20:47:35','2020-03-12 20:47:35'),(7103,'crk','52.90.72.30',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 00:32:24','2020-03-13 00:32:24'),(7104,'currentaffairs','52.91.74.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 03:07:06','2020-03-13 03:07:06'),(7105,'chemistry','66.249.88.54',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 04:13:43','2020-03-13 22:03:51'),(7106,'biology','54.226.184.43',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:52:03','2020-03-13 09:52:04'),(7107,'english','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:56:39','2020-03-13 09:56:39'),(7108,'accounting','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:58:08','2020-03-13 09:58:08'),(7109,'chemistry','3.92.56.188',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7110,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7111,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7112,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7113,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7114,'chemistry','54.242.59.9',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 16:39:40','2020-03-13 16:39:41'),(7115,'chemistry','207.46.13.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 20:02:53','2020-03-13 20:02:53'),(7116,'chemistry','54.146.129.212',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7117,'chemistry','54.146.129.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7118,'chemistry','66.249.83.202',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 22:03:49','2020-03-13 22:03:51'),(7119,'biology','54.152.253.226',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 02:58:06','2020-03-14 02:58:06'),(7120,'mathematics','66.249.83.200',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 08:36:31','2020-03-14 08:36:33'),(7121,'english','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7122,'mathematics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7123,'chemistry','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:35'),(7124,'economics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:35','2020-03-14 10:43:36'),(7125,'civiledu','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:36','2020-03-14 10:43:36'),(7126,'insurance','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7127,'currentaffairs','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7128,'commerce','34.239.245.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:45:23','2020-03-14 10:45:23'),(7129,'chemistry','3.90.43.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 13:49:52','2020-03-14 13:49:52'),(7130,'crk','54.161.109.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 14:49:17','2020-03-14 14:49:17'),(7131,'english','52.91.100.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:07:53','2020-03-14 18:07:53'),(7132,'chemistry','86.121.62.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:41:03','2020-03-14 18:41:03'),(7133,'chemistry','3.87.81.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:54:06','2020-03-14 18:54:06'),(7134,'chemistry','5.255.250.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:21:06','2020-03-14 19:21:06'),(7135,'chemistry','105.112.38.232',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:05','2020-03-15 06:16:13'),(7136,'mathematics','105.112.38.232',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:50','2020-03-14 19:55:10'),(7137,'chemistry','54.146.242.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:53:47','2020-03-14 19:53:51'),(7138,'mathematics','54.145.20.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 20:35:13','2020-03-14 20:35:13'),(7139,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7140,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7141,'chemistry','18.209.61.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:43:11','2020-03-14 22:43:11'),(7142,'biology','14.199.220.107',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:46:33','2020-03-14 22:46:34'),(7143,'economics','3.82.205.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:07:15','2020-03-15 01:07:15'),(7144,'chemistry','66.249.64.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:41:19','2020-03-15 01:41:22'),(7145,'geography','18.209.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 02:28:10','2020-03-15 02:28:10'),(7146,'geography','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:36:57','2020-03-15 03:36:57'),(7147,'biology','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:42:39','2020-03-15 03:42:39'),(7148,'mathematics','105.112.38.221',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 07:08:04','2020-03-15 07:08:05'),(7149,'physics','54.209.184.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 10:35:32','2020-03-15 10:35:32'),(7150,'chemistry','61.177.20.67',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:07:25','2020-03-15 11:08:03'),(7151,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7152,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7153,'englishlit','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:00:27','2020-03-15 13:00:27'),(7154,'geography','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:12:58','2020-03-15 13:12:58'),(7155,'chemistry','66.249.80.40',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:13:16','2020-03-15 13:13:18'),(7156,'currentaffairs','54.157.45.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:17:59','2020-03-15 14:17:59'),(7157,'chemistry','114.119.165.83',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:58:19','2020-04-09 07:14:34'),(7158,'mathematics','197.210.70.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 15:43:48','2020-03-15 15:43:56'),(7159,'biology','3.80.249.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 16:18:19','2020-03-15 16:18:19'),(7160,'chemistry','40.77.167.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 17:54:45','2020-03-15 17:54:45'),(7161,'chemistry','54.234.65.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:02:01','2020-03-15 19:02:01'),(7162,'chemistry','192.3.183.226',69,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:05:22','2020-03-16 02:10:39'),(7163,'physics','54.175.61.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:07:09','2020-03-15 23:07:09'),(7164,'mathematics','54.152.128.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:41:27','2020-03-15 23:41:27'),(7165,'chemistry','5.255.250.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 01:11:48','2020-03-16 01:11:48'),(7166,'geography','100.27.28.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 02:48:46','2020-03-16 02:48:46'),(7167,'government','18.204.205.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 03:52:44','2020-03-16 03:52:44'),(7168,'mathematics','52.87.174.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 04:36:55','2020-03-16 04:36:55'),(7169,'history','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:37:41','2020-03-16 06:37:41'),(7170,'biology','34.230.5.124',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:40'),(7171,'biology','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:39'),(7172,'crk','35.173.183.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:03:46','2020-03-16 09:03:46'),(7173,'chemistry','66.249.88.55',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:48:48','2020-03-16 09:48:49'),(7174,'geography','54.226.6.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 14:13:41','2020-03-16 14:13:41'),(7175,'mathematics','105.112.153.142',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:02:32','2020-03-16 17:02:47'),(7176,'physics','105.112.153.142',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:03:09','2020-03-16 17:03:10'),(7177,'english','105.112.153.142',480,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:04:23','2020-03-16 20:08:50'),(7178,'accounting','54.144.114.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 21:09:52','2020-03-16 21:09:52'),(7179,'history','54.152.71.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 07:17:16','2020-03-17 07:17:16'),(7180,'english','41.86.149.34',280,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 09:42:41','2020-03-17 12:11:29'),(7181,'english','105.112.22.72',440,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 15:51:33','2020-03-17 16:19:25'),(7182,'chemistry','105.112.22.72',323,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 16:24:18','2020-03-17 17:11:03'),(7183,'physics','105.112.22.72',164,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 17:05:04','2020-03-17 17:28:30'),(7184,'mathematics','105.112.22.72',149,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:14:51','2020-03-17 17:38:27'),(7185,'government','105.112.22.72',276,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:40:56','2020-03-17 17:50:13'),(7186,'englishlit','105.112.47.130',334,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:54:27','2020-03-17 18:14:37'),(7187,'government','105.112.47.130',22,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:56:02','2020-03-17 17:56:03'),(7188,'crk','105.112.47.130',543,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:16:10','2020-03-17 18:30:39'),(7189,'english','105.112.47.130',40,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:18:33','2020-03-17 18:18:35'),(7190,'accounting','105.112.47.130',158,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:35:02','2020-03-17 18:37:47'),(7191,'chemistry','34.227.17.84',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:52:23','2020-03-17 18:52:23'),(7192,'chemistry','144.76.67.169',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 00:01:13','2020-03-18 00:01:58'),(7193,'chemistry','54.36.149.77',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:03:44','2020-03-18 05:03:44'),(7194,'economics','52.201.123.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:33:29','2020-03-18 05:33:29'),(7195,'history','3.93.187.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 11:38:00','2020-03-18 11:38:00'),(7196,'english','129.205.113.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:00:34','2020-03-18 20:00:34'),(7197,'chemistry','66.249.88.56',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:39:56','2020-03-18 20:39:58'),(7198,'irk','54.90.235.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:56:56','2020-03-18 20:56:56'),(7199,'chemistry','54.36.150.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 21:24:26','2020-03-18 21:24:26'),(7200,'crk','18.232.99.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 23:57:52','2020-03-18 23:57:52'),(7201,'commerce','3.88.101.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 01:46:16','2020-03-19 01:46:16'),(7202,'accounting','3.81.2.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 05:42:19','2020-03-19 05:42:19'),(7203,'chemistry','66.102.8.229',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 07:35:52','2020-03-19 07:35:54'),(7204,'economics','18.209.171.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 08:15:35','2020-03-19 08:15:35'),(7205,'chemistry','3.87.142.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 11:32:20','2020-03-19 11:32:20'),(7206,'government','54.172.25.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 12:12:58','2020-03-19 12:12:58'),(7207,'economics','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:31:06','2020-03-19 14:31:06'),(7208,'commerce','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:35:27','2020-03-19 14:35:27'),(7209,'geography','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:55:22','2020-03-19 14:55:22'),(7210,'government','54.242.179.61',1,'Nigeria','NG','LA','Lagos','Lagos','','6.4531','3.3958','2020-03-19 20:38:35','2020-03-19 20:38:35'),(7211,'chemistry','18.207.197.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 21:48:48','2020-03-19 21:48:48'),(7212,'english','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:32:19','2020-03-20 00:32:19'),(7213,'englishlit','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:50:34','2020-03-20 00:50:34'),(7214,'chemistry','114.119.165.169',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 01:18:55','2020-04-05 03:27:02'),(7215,'accounting','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7216,'biology','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7217,'chemistry','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7218,'crk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7219,'geography','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:26'),(7220,'irk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7221,'civiledu','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7222,'crk','3.93.49.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 08:22:17','2020-03-20 08:22:17'),(7223,'chemistry','197.210.71.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 09:39:01','2020-03-20 09:39:01'),(7224,'chemistry','117.63.134.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:39:07','2020-03-20 14:39:07'),(7225,'chemistry','41.190.2.160',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:55:17','2020-03-20 14:55:40'),(7226,'physics','18.234.143.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 16:22:33','2020-03-20 16:22:33'),(7227,'currentaffairs','3.88.171.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 18:44:05','2020-03-20 18:44:05'),(7228,'englishlit','3.80.210.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 19:58:26','2020-03-20 19:58:26'),(7229,'crk','54.234.191.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 22:13:05','2020-03-20 22:13:05'),(7230,'englishlit','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:13:40','2020-03-21 00:13:40'),(7231,'economics','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:45:11','2020-03-21 00:45:11'),(7232,'government','54.81.79.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:06:58','2020-03-21 02:06:58'),(7233,'chemistry','36.49.27.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:48:44','2020-03-21 02:48:44'),(7234,'irk','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:15:05','2020-03-21 04:15:05'),(7235,'english','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:39:38','2020-03-21 04:39:38'),(7236,'englishlit','41.80.20.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 05:52:43','2020-03-21 05:53:35'),(7237,'chemistry','154.113.86.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 08:44:48','2020-03-21 08:44:48'),(7238,'chemistry','54.36.150.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 10:28:05','2020-03-21 10:28:05'),(7239,'chemistry','42.49.170.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 12:22:18','2020-03-21 12:22:18'),(7240,'english','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:55','2020-03-21 13:16:56'),(7241,'commerce','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:56','2020-03-21 13:16:58'),(7242,'physics','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:59','2020-03-21 13:18:04'),(7243,'englishlit','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:00','2020-03-21 13:17:01'),(7244,'insurance','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:01','2020-03-21 13:18:05'),(7245,'currentaffairs','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:18:05'),(7246,'history','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:17:03'),(7247,'accounting','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:03','2020-03-21 13:18:04'),(7248,'government','18.234.135.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:16'),(7249,'economics','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7250,'civiledu','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7251,'chemistry','102.89.3.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 14:16:11','2020-03-21 14:16:11'),(7252,'accounting','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:30:53','2020-03-22 03:30:53'),(7253,'englishlit','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:32:36','2020-03-22 03:32:36'),(7254,'chemistry','116.248.186.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 12:56:38','2020-03-22 12:56:38'),(7255,'accounting','105.112.52.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 15:00:00','2020-03-22 15:00:02'),(7256,'commerce','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7257,'physics','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7258,'englishlit','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7259,'government','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7260,'crk','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7261,'insurance','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7262,'history','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7263,'chemistry','59.63.75.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 17:32:33','2020-03-22 17:32:34'),(7264,'mathematics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7265,'biology','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7266,'physics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7267,'chemistry','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7268,'geography','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7269,'irk','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7270,'currentaffairs','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:33'),(7271,'commerce','3.89.66.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 23:32:36','2020-03-22 23:32:36'),(7272,'chemistry','77.88.5.109',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 01:02:57','2020-05-28 06:27:27'),(7273,'crk','52.90.48.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 04:30:54','2020-03-23 04:30:54'),(7274,'biology','3.92.24.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 08:53:22','2020-03-23 08:53:22'),(7275,'mathematics','54.165.10.238',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 10:35:39','2020-03-23 10:35:39'),(7276,'economics','54.164.64.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 13:08:24','2020-03-23 13:08:24'),(7277,'geography','18.209.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 14:04:53','2020-03-23 14:04:53'),(7278,'geography','3.89.20.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 15:04:00','2020-03-23 15:04:00'),(7279,'englishlit','54.210.71.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:16:17','2020-03-23 23:16:17'),(7280,'geography','54.91.123.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:54:39','2020-03-23 23:54:39'),(7281,'currentaffairs','18.234.156.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 01:21:49','2020-03-24 01:21:49'),(7282,'physics','18.215.170.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 02:05:13','2020-03-24 02:05:13'),(7283,'english','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7284,'mathematics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7285,'physics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7286,'irk','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7287,'civiledu','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7288,'insurance','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7289,'currentaffairs','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7290,'physics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 07:37:59','2020-03-24 07:37:59'),(7291,'mathematics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 08:09:12','2020-03-24 08:09:12'),(7292,'mathematics','100.24.26.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 14:18:48','2020-03-24 14:18:48'),(7293,'accounting','52.87.217.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 04:37:55','2020-03-25 04:37:55'),(7294,'chemistry','114.119.160.245',41,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-25 10:25:16','2020-06-23 19:50:56'),(7295,'history','52.23.203.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 12:19:56','2020-03-25 12:19:56'),(7296,'chemistry','154.118.9.188',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 14:09:50','2020-03-25 14:09:50'),(7297,'commerce','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7298,'chemistry','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7299,'englishlit','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7300,'crk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:53'),(7301,'geography','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7302,'irk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7303,'insurance','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7304,'biology','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7305,'physics','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7306,'chemistry','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7307,'crk','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:20'),(7308,'geography','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7309,'civiledu','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7310,'currentaffairs','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7311,'english','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7312,'commerce','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7313,'biology','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7314,'government','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7315,'geography','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7316,'civiledu','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7317,'currentaffairs','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7318,'history','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 08:23:17','2020-03-26 08:23:17'),(7319,'economics','3.84.167.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:17:04','2020-03-26 09:17:04'),(7320,'english','197.211.61.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:24:43','2020-03-26 09:24:43'),(7321,'biology','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:33:58','2020-03-26 11:33:59'),(7322,'chemistry','102.89.3.190',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:00','2020-03-26 11:34:00'),(7323,'commerce','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:01','2020-03-26 11:34:01'),(7324,'crk','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:22','2020-03-26 12:14:19'),(7325,'commerce','102.89.3.190',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:23','2020-03-26 12:11:33'),(7326,'crk','102.89.3.190',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:08','2020-03-26 12:08:09'),(7327,'commerce','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:09','2020-03-26 12:14:21'),(7328,'crk','102.89.3.126',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:11:32','2020-03-26 12:11:32'),(7329,'crk','102.89.2.115',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:21:27','2020-03-26 12:22:22'),(7330,'crk','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:44','2020-03-26 12:22:45'),(7331,'commerce','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:46','2020-03-26 12:22:46'),(7332,'crk','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:40','2020-03-26 12:23:40'),(7333,'commerce','197.210.84.177',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:41','2020-03-26 12:23:42'),(7334,'crk','197.210.84.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:11','2020-03-26 12:24:12'),(7335,'commerce','197.210.84.39',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:12','2020-03-26 12:24:13'),(7336,'crk','197.210.84.227',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:09','2020-03-26 12:29:09'),(7337,'commerce','197.210.84.119',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:10','2020-03-26 12:29:10'),(7338,'crk','197.210.84.207',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:03','2020-03-26 12:32:04'),(7339,'commerce','197.210.84.125',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:05','2020-03-26 12:32:06'),(7340,'crk','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:21','2020-03-26 12:36:21'),(7341,'commerce','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:22','2020-03-26 12:36:22'),(7342,'crk','197.210.84.31',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:30','2020-03-26 12:36:30'),(7343,'commerce','197.210.84.245',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:31','2020-03-26 12:36:32'),(7344,'crk','197.210.84.165',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:47','2020-03-26 12:37:47'),(7345,'commerce','197.210.84.17',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:48','2020-03-26 12:37:48'),(7346,'crk','197.210.85.81',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:57','2020-03-26 12:37:57'),(7347,'commerce','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:58','2020-03-26 12:37:58'),(7348,'crk','197.210.84.67',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:00','2020-03-26 12:44:00'),(7349,'commerce','197.210.84.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:01','2020-03-26 12:44:01'),(7350,'english','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:13','2020-03-26 13:09:04'),(7351,'mathematics','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:14','2020-03-26 13:09:05'),(7352,'english','197.210.85.140',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:15','2020-03-26 14:03:15'),(7353,'mathematics','197.210.85.254',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:16','2020-03-26 14:03:17'),(7354,'english','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:01','2020-03-26 14:10:37'),(7355,'mathematics','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:03','2020-03-26 14:10:38'),(7356,'irk','3.94.121.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:26:17','2020-03-26 19:26:17'),(7357,'chemistry','114.119.161.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:45:34','2020-03-26 19:45:34'),(7358,'crk','174.129.131.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 22:50:44','2020-03-26 22:50:44'),(7359,'commerce','3.91.233.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 01:48:15','2020-03-27 01:48:15'),(7360,'accounting','54.208.155.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 05:24:26','2020-03-27 05:24:26'),(7361,'economics','52.91.100.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:22:14','2020-03-27 09:22:14'),(7362,'chemistry','66.102.8.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:51:49','2020-03-27 09:51:51'),(7363,'government','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 10:43:15','2020-03-27 10:43:15'),(7364,'chemistry','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:21:50','2020-03-27 11:21:50'),(7365,'english','102.89.0.135',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:47','2020-03-27 11:36:38'),(7366,'mathematics','102.89.1.184',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:48','2020-04-27 18:37:31'),(7367,'mathematics','102.89.1.114',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:33:55','2020-03-27 11:33:55'),(7368,'mathematics','102.89.0.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:36:39','2020-03-27 11:36:39'),(7369,'geography','54.209.201.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 13:36:58','2020-03-27 13:36:58'),(7370,'commerce','54.162.99.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 14:52:49','2020-03-27 14:52:49'),(7371,'economics','34.227.72.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 17:36:43','2020-03-27 17:36:43'),(7372,'crk','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 19:48:01','2020-03-27 19:48:01'),(7373,'insurance','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 20:10:12','2020-03-27 20:10:12'),(7374,'mathematics','18.212.220.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 22:19:25','2020-03-27 22:19:25'),(7375,'englishlit','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:27:23','2020-03-27 23:27:23'),(7376,'english','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:38:18','2020-03-27 23:38:18'),(7377,'crk','54.91.106.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 02:52:57','2020-03-28 02:52:57'),(7378,'english','54.204.180.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 04:14:13','2020-03-28 04:14:13'),(7379,'accounting','105.112.31.78',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:01:29','2020-03-28 06:01:32'),(7380,'chemistry','105.112.31.78',218,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 06:16:34','2020-03-28 10:26:50'),(7381,'mathematics','105.112.31.78',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:21:28','2020-03-28 06:21:37'),(7382,'crk','105.112.31.78',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:24:50','2020-03-28 06:24:54'),(7383,'crk','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:58:54','2020-03-28 06:58:57'),(7384,'mathematics','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:59:17','2020-03-28 06:59:19'),(7385,'biology','3.81.58.70',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:00:16','2020-03-28 07:28:03'),(7386,'biology','18.212.96.129',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:28:19','2020-03-28 07:29:29'),(7387,'chemistry','18.212.96.129',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 07:29:37','2020-03-28 07:46:04'),(7388,'mathematics','18.212.96.129',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:30:36','2020-03-28 07:30:39'),(7389,'chemistry','54.196.165.71',160,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:19:31','2020-03-28 08:21:56'),(7390,'crk','3.82.235.188',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:53:24','2020-03-28 08:53:24'),(7391,'chemistry','157.55.39.86',7,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 09:13:40','2020-03-28 09:13:40'),(7392,'physics','54.145.168.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 14:48:56','2020-03-28 14:48:56'),(7393,'english','35.172.185.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 17:23:34','2020-03-28 17:23:34'),(7394,'currentaffairs','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 18:18:16','2020-03-28 18:18:16'),(7395,'englishlit','54.84.20.113',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 18:46:01','2020-03-28 18:46:01'),(7396,'crk','34.207.92.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 20:17:19','2020-03-28 20:17:19'),(7397,'englishlit','54.227.76.74',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 22:38:07','2020-03-28 22:38:07'),(7398,'chemistry','100.26.102.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 23:45:57','2020-03-28 23:45:57'),(7399,'english','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:26:48','2020-03-29 01:26:48'),(7400,'government','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:48:28','2020-03-29 01:48:28'),(7401,'currentaffairs','54.166.138.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 02:46:57','2020-03-29 02:46:57'),(7402,'economics','54.224.84.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 03:48:49','2020-03-29 03:48:49'),(7403,'chemistry','3.235.65.91',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 05:20:26','2020-03-29 05:44:48'),(7404,'english','54.174.190.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 10:18:53','2020-03-29 10:18:53'),(7405,'civiledu','54.172.166.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:13:13','2020-03-29 11:13:13'),(7406,'chemistry','54.174.40.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:55:39','2020-03-29 11:55:39'),(7407,'chemistry','180.103.58.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:00:01','2020-03-29 12:00:01'),(7408,'chemistry','82.145.220.58',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:01:04','2020-03-29 12:01:05'),(7409,'mathematics','54.92.219.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:42:18','2020-03-29 12:42:18'),(7410,'mathematics','18.206.91.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 13:35:15','2020-03-29 13:35:15'),(7411,'chemistry','58.255.198.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 14:37:51','2020-03-29 14:37:51'),(7412,'chemistry','111.160.25.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 17:47:36','2020-03-29 17:47:36'),(7413,'chemistry','18.206.237.17',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 18:38:42','2020-03-29 18:38:45'),(7414,'currentaffairs','54.163.120.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 19:48:21','2020-03-29 19:48:21'),(7415,'chemistry','54.145.49.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 21:49:35','2020-03-29 21:49:35'),(7416,'englishlit','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:05:16','2020-03-30 01:05:16'),(7417,'accounting','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:33:36','2020-03-30 01:33:36'),(7418,'commerce','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7419,'accounting','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7420,'physics','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7421,'geography','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7422,'civiledu','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7423,'currentaffairs','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7424,'history','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7425,'mathematics','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:50:17','2020-03-31 05:50:17'),(7426,'commerce','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:51:26','2020-03-31 05:51:26'),(7427,'geography','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 07:58:39','2020-03-31 10:19:30'),(7428,'biology','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:01:26','2020-03-31 09:22:41'),(7429,'currentaffairs','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:27:55','2020-03-31 09:50:10'),(7430,'government','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:46:16','2020-03-31 10:11:00'),(7431,'civiledu','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:00:56','2020-03-31 09:10:50'),(7432,'english','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:08:10','2020-03-31 10:09:09'),(7433,'mathematics','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7434,'commerce','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 10:07:16'),(7435,'chemistry','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7436,'crk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7437,'irk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7438,'englishlit','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 16:48:59','2020-03-31 16:48:59'),(7439,'physics','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 17:25:08','2020-03-31 17:25:08'),(7440,'geography','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 18:36:35','2020-03-31 18:36:35'),(7441,'currentaffairs','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 19:04:20','2020-03-31 19:04:20'),(7442,'currentaffairs','54.224.172.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 21:22:54','2020-03-31 21:22:54'),(7443,'chemistry','197.210.84.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:38','2020-03-31 22:04:43'),(7444,'chemistry','197.210.84.199',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:50','2020-03-31 22:04:55'),(7445,'chemistry','197.210.84.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:05:03','2020-03-31 22:05:05'),(7446,'physics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:04:01','2020-04-01 02:04:01'),(7447,'mathematics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:10:56','2020-04-01 02:10:56'),(7448,'mathematics','3.80.85.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 04:50:44','2020-04-01 04:50:44'),(7449,'mathematics','18.212.146.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 06:03:05','2020-04-01 06:03:05'),(7450,'chemistry','114.119.163.81',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 09:42:15','2020-04-01 09:42:15'),(7451,'chemistry','197.211.57.245',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 12:50:39','2020-04-01 12:52:16'),(7452,'english','34.230.39.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 16:42:36','2020-04-01 16:42:36'),(7453,'mathematics','18.234.121.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 19:01:10','2020-04-01 19:01:10'),(7454,'accounting','54.147.176.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 20:49:28','2020-04-01 20:49:28'),(7455,'biology','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:56','2020-04-01 21:17:56'),(7456,'physics','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7457,'government','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7458,'geography','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7459,'economics','54.147.176.88',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-22 05:41:24'),(7460,'civiledu','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7461,'insurance','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7462,'chemistry','54.36.148.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 00:49:26','2020-04-02 00:49:29'),(7463,'history','54.236.10.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 03:47:55','2020-04-02 03:47:55'),(7464,'chemistry','197.210.70.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 20:57:50','2020-04-02 20:57:52'),(7465,'economics','34.229.174.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 01:39:45','2020-04-03 01:39:45'),(7466,'history','3.81.12.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 02:51:48','2020-04-03 02:51:48'),(7467,'government','102.89.1.199',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 11:46:35','2020-04-03 11:46:36'),(7468,'commerce','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7469,'accounting','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7470,'crk','54.224.177.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:53:40'),(7471,'economics','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7472,'civiledu','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7473,'currentaffairs','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7474,'history','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7475,'physics','54.227.76.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 18:36:02','2020-04-03 18:36:02'),(7476,'english','3.85.190.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 21:48:32','2020-04-03 21:48:32'),(7477,'commerce','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 23:42:41','2020-04-03 23:42:41'),(7478,'economics','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 00:01:21','2020-04-04 00:01:21'),(7479,'chemistry','207.46.13.220',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 01:45:34','2020-04-04 10:12:07'),(7480,'government','54.209.223.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 02:40:53','2020-04-04 02:40:53'),(7481,'geography','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:46:07','2020-04-04 03:46:07'),(7482,'chemistry','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:56:04','2020-04-04 03:56:04'),(7483,'government','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 04:24:02','2020-04-04 04:24:02'),(7484,'economics','54.87.134.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:29:31','2020-04-04 08:29:31'),(7485,'mathematics','105.112.56.96',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:37:54','2020-04-04 08:42:05'),(7486,'english','197.210.71.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:22:13','2020-04-04 10:22:13'),(7487,'chemistry','197.211.61.123',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:43:13','2020-04-04 10:46:06'),(7488,'physics','197.211.61.123',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:46:42','2020-04-04 10:46:42'),(7489,'english','197.211.61.123',726,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:11','2020-04-04 12:22:56'),(7490,'commerce','3.80.214.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:21','2020-04-04 10:47:21'),(7491,'english','197.211.61.125',406,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-04 12:41:24','2020-04-04 13:00:00'),(7492,'chemistry','197.211.61.125',10,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:00:38','2020-04-04 13:13:18'),(7493,'insurance','3.86.32.0',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:22:34','2020-04-04 13:22:34'),(7494,'englishlit','52.23.172.123',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:17:24','2020-04-04 14:17:24'),(7495,'chemistry','157.55.39.42',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:48:38','2020-04-04 14:48:38'),(7496,'chemistry','66.249.64.104',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:18:30','2020-04-04 17:18:31'),(7497,'english','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:20:12','2020-04-04 17:20:12'),(7498,'crk','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:30:11','2020-04-04 17:30:11'),(7499,'crk','54.163.215.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 22:41:54','2020-04-04 22:41:54'),(7500,'physics','52.91.100.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 04:23:04','2020-04-05 04:23:04'),(7501,'biology','3.81.133.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 05:11:31','2020-04-05 05:11:31'),(7502,'englishlit','54.89.124.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 06:31:33','2020-04-05 06:31:33'),(7503,'chemistry','197.210.71.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:23:44','2020-04-05 08:23:44'),(7504,'chemistry','197.210.71.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:35','2020-04-05 08:28:01'),(7505,'chemistry','197.210.71.175',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:53','2020-04-05 08:29:40'),(7506,'chemistry','197.210.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:28:36','2020-04-05 08:28:36'),(7507,'english','197.210.71.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:32:51','2020-04-05 08:32:53'),(7508,'english','197.210.174.172',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:34:34','2020-04-05 08:34:37'),(7509,'currentaffairs','3.87.91.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 09:08:45','2020-04-05 09:08:45'),(7510,'crk','18.206.247.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:11:56','2020-04-05 10:11:56'),(7511,'englishlit','3.208.20.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:55:11','2020-04-05 10:55:11'),(7512,'chemistry','66.249.88.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 11:30:48','2020-04-05 11:30:50'),(7513,'economics','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:16:19','2020-04-05 12:16:19'),(7514,'government','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:53:23','2020-04-05 12:53:23'),(7515,'english','34.233.133.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 13:47:53','2020-04-05 13:47:53'),(7516,'mathematics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7517,'commerce','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7518,'biology','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7519,'physics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7520,'chemistry','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7521,'englishlit','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:26'),(7522,'history','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:26','2020-04-06 12:14:26'),(7523,'accounting','54.152.156.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:19:13','2020-04-06 12:19:13'),(7524,'accounting','3.80.94.111',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 15:07:41','2020-04-06 15:07:41'),(7525,'chemistry','105.112.115.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 22:20:42','2020-04-06 22:20:42'),(7526,'commerce','34.227.162.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 06:35:37','2020-04-07 06:35:37'),(7527,'crk','107.23.255.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 08:35:49','2020-04-07 08:35:49'),(7528,'physics','18.212.66.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 09:45:19','2020-04-07 09:45:19'),(7529,'mathematics','34.236.143.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 13:42:20','2020-04-07 13:42:20'),(7530,'chemistry','64.233.172.196',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 14:19:21','2020-04-07 14:19:22'),(7531,'chemistry','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:06','2020-04-07 16:55:06'),(7532,'chemistry','197.210.53.20',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:14','2020-04-07 16:55:14'),(7533,'chemistry','197.210.52.112',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:33','2020-04-07 16:55:33'),(7534,'geography','3.95.225.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 17:53:36','2020-04-07 17:53:36'),(7535,'chemistry','197.210.52.88',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:07:14','2020-04-07 19:19:19'),(7536,'chemistry','197.210.53.6',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:32:43','2020-04-07 18:39:36'),(7537,'chemistry','197.210.52.36',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:34:00','2020-04-07 18:43:49'),(7538,'chemistry','197.210.53.99',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:05','2020-04-07 19:17:34'),(7539,'chemistry','197.210.52.22',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:27','2020-04-07 18:48:54'),(7540,'english','197.210.53.99',695,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:56'),(7541,'english','197.210.53.6',765,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:31'),(7542,'english','197.210.53.65',848,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:28:00'),(7543,'english','197.210.52.12',917,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:55'),(7544,'english','197.210.52.88',795,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:55'),(7545,'english','197.210.52.36',477,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:58'),(7546,'geography','18.205.107.57',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 20:02:08','2020-04-07 20:02:08'),(7547,'english','108.41.239.178',1802,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-12 16:31:21'),(7548,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7549,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7550,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7551,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7552,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7553,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7554,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7555,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7556,'irk','108.41.239.178',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:01','2020-04-12 16:31:20'),(7557,'civiledu','108.41.239.178',626,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7558,'insurance','108.41.239.178',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:23'),(7559,'currentaffairs','108.41.239.178',429,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7560,'physics','54.156.62.219',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 00:38:52','2020-04-08 00:38:52'),(7561,'englishlit','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:17:24','2020-04-08 01:17:24'),(7562,'geography','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:43:32','2020-04-08 01:43:32'),(7563,'currentaffairs','3.94.134.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 03:38:40','2020-04-08 03:38:40'),(7564,'chemistry','77.88.5.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-08 04:45:23','2020-04-08 04:45:23'),(7565,'english','18.206.175.184',3,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:05'),(7566,'chemistry','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7567,'government','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7568,'geography','18.206.175.184',2,'','NG','','Lagos',NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7569,'irk','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7570,'civiledu','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7571,'currentaffairs','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7572,'mathematics','3.95.38.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 10:05:10','2020-04-08 10:05:10'),(7573,'geography','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 11:58:50','2020-04-08 11:58:50'),(7574,'physics','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 12:09:29','2020-04-08 12:09:29'),(7575,'mathematics','34.230.69.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 13:57:51','2020-04-08 13:57:51'),(7576,'accounting','54.152.166.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 03:29:44','2020-04-09 03:29:44'),(7577,'chemistry','34.203.216.217',233,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 06:33:24','2020-04-09 06:37:01'),(7578,'chemistry','197.210.70.115',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 11:54:08','2020-04-09 16:40:18'),(7579,'chemistry','197.210.71.11',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:31','2020-04-09 17:27:14'),(7580,'chemistry','197.210.70.183',287,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:58','2020-04-09 17:20:35'),(7581,'english','197.210.70.109',813,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:40:07'),(7582,'english','197.210.70.69',465,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:38:21'),(7583,'english','197.210.70.149',469,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:25:34'),(7584,'english','197.210.70.211',792,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:31'),(7585,'english','197.210.70.81',624,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7586,'english','197.210.70.183',315,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:35'),(7587,'english','197.210.70.205',600,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7588,'english','197.210.71.235',595,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:17'),(7589,'english','197.210.70.27',674,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:52'),(7590,'english','197.210.70.15',552,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:44'),(7591,'english','197.210.71.79',478,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:33'),(7592,'english','197.210.70.251',820,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:20:15'),(7593,'english','197.210.70.95',701,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:25:00'),(7594,'english','197.210.70.115',676,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:47','2020-04-09 17:26:31'),(7595,'english','197.210.70.225',620,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:48','2020-04-09 17:26:34'),(7596,'english','197.210.70.53',679,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:33'),(7597,'english','197.210.70.239',623,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:24:53'),(7598,'english','197.210.70.217',663,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:30'),(7599,'english','197.210.70.1',515,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:51','2020-04-09 17:24:27'),(7600,'english','197.210.70.137',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:52','2020-04-09 17:25:32'),(7601,'english','197.210.71.11',588,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:58','2020-04-09 17:19:49'),(7602,'english','197.210.70.41',639,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:59','2020-04-09 17:25:34'),(7603,'english','197.210.70.121',555,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:00','2020-04-09 17:25:35'),(7604,'english','197.210.70.189',462,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:01','2020-04-09 17:25:35'),(7605,'english','197.210.70.171',473,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:04','2020-04-09 17:26:34'),(7606,'english','197.210.71.167',510,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:14','2020-04-09 17:24:21'),(7607,'chemistry','197.210.70.109',327,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:42','2020-04-09 17:24:47'),(7608,'mathematics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:35'),(7609,'mathematics','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:28'),(7610,'mathematics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:18:51'),(7611,'mathematics','197.210.70.171',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:24:24'),(7612,'mathematics','197.210.71.167',520,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:25:25'),(7613,'mathematics','197.210.70.69',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:19:18'),(7614,'mathematics','197.210.70.115',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:18:11'),(7615,'mathematics','197.210.70.149',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:51'),(7616,'mathematics','197.210.70.137',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:38'),(7617,'mathematics','197.210.70.95',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:35'),(7618,'mathematics','197.210.70.121',360,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:39'),(7619,'mathematics','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:07'),(7620,'accounting','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:37'),(7621,'accounting','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:18:19'),(7622,'commerce','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:19:14'),(7623,'commerce','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:51'),(7624,'commerce','197.210.70.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 15:19:39'),(7625,'commerce','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:33'),(7626,'accounting','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:18'),(7627,'accounting','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:43'),(7628,'commerce','197.210.71.11',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:44'),(7629,'accounting','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:27:00'),(7630,'commerce','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:26:47'),(7631,'commerce','197.210.71.79',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:24:23'),(7632,'biology','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:20:25'),(7633,'commerce','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:17'),(7634,'mathematics','197.210.70.15',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:30'),(7635,'biology','197.210.71.11',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:40','2020-04-09 17:26:43'),(7636,'biology','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:20:31'),(7637,'biology','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:26:10'),(7638,'commerce','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:56'),(7639,'accounting','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:27:03'),(7640,'biology','197.210.70.41',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:55'),(7641,'biology','197.210.70.251',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:26:55'),(7642,'accounting','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:25:57'),(7643,'biology','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:26:42'),(7644,'physics','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:19:26'),(7645,'biology','197.210.71.167',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:25:49'),(7646,'physics','197.210.70.95',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:26:56'),(7647,'physics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:59'),(7648,'englishlit','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:11'),(7649,'physics','197.210.70.81',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:26:59'),(7650,'physics','197.210.70.239',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:19:05'),(7651,'physics','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:50'),(7652,'biology','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:20:21'),(7653,'englishlit','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:12'),(7654,'physics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:18:58'),(7655,'chemistry','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:51','2020-04-09 16:40:16'),(7656,'chemistry','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:18:32'),(7657,'physics','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:26:02'),(7658,'chemistry','197.210.71.167',480,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:53','2020-04-09 17:27:14'),(7659,'englishlit','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:54','2020-04-09 17:18:22'),(7660,'englishlit','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:55','2020-04-09 17:26:25'),(7661,'englishlit','197.210.70.121',357,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:56','2020-04-09 17:26:21'),(7662,'government','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:17'),(7663,'chemistry','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:09'),(7664,'government','197.210.70.27',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:27'),(7665,'englishlit','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:18:20'),(7666,'chemistry','197.210.70.225',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:07'),(7667,'government','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:20:42'),(7668,'chemistry','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:19:30'),(7669,'chemistry','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:24:47'),(7670,'crk','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:59','2020-04-09 17:24:54'),(7671,'government','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:26:18'),(7672,'crk','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:25:01'),(7673,'government','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 15:51:08'),(7674,'englishlit','197.210.70.81',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:01','2020-04-09 17:26:17'),(7675,'crk','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:03','2020-04-09 17:27:20'),(7676,'geography','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:04','2020-04-09 17:27:21'),(7677,'geography','197.210.70.27',278,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:19:43'),(7678,'crk','197.210.70.81',237,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:20:43'),(7679,'government','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:08','2020-04-09 17:27:30'),(7680,'geography','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:25'),(7681,'government','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:27:17'),(7682,'crk','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:37'),(7683,'government','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:27:27'),(7684,'crk','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:25:07'),(7685,'geography','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:19:46'),(7686,'economics','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:20:58'),(7687,'economics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:26:24'),(7688,'geography','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:25:03'),(7689,'government','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:20:43'),(7690,'crk','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 16:39:57'),(7691,'crk','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 17:20:43'),(7692,'geography','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:26:23'),(7693,'economics','197.210.71.79',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:20:49'),(7694,'crk','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:27:27'),(7695,'geography','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:15','2020-04-09 17:27:29'),(7696,'economics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:17','2020-04-09 17:27:42'),(7697,'economics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:18','2020-04-09 17:25:03'),(7698,'irk','197.210.70.15',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:19:50'),(7699,'economics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:26:12'),(7700,'economics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:27:42'),(7701,'irk','197.210.71.167',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:20','2020-04-09 17:20:47'),(7702,'civiledu','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:43'),(7703,'irk','197.210.70.53',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:25:11'),(7704,'economics','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:32'),(7705,'irk','197.210.70.41',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:18:38'),(7706,'currentaffairs','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:23','2020-04-09 17:25:07'),(7707,'irk','197.210.70.81',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:25:14'),(7708,'civiledu','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:19:55'),(7709,'insurance','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:20:58'),(7710,'currentaffairs','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:21:02'),(7711,'insurance','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:27:50'),(7712,'currentaffairs','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:21:07'),(7713,'civiledu','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 16:40:24'),(7714,'currentaffairs','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:28','2020-04-09 16:40:39'),(7715,'civiledu','197.210.70.27',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:27:51'),(7716,'history','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:21:10'),(7717,'currentaffairs','197.210.71.11',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:20:06'),(7718,'civiledu','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:27:39'),(7719,'currentaffairs','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 17:20:11'),(7720,'insurance','197.210.70.205',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 15:22:09'),(7721,'insurance','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 16:34:20'),(7722,'insurance','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:33','2020-04-09 17:27:51'),(7723,'civiledu','197.210.70.95',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:27:39'),(7724,'irk','197.210.71.11',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:25:10'),(7725,'civiledu','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 16:29:46'),(7726,'insurance','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:27:52'),(7727,'civiledu','197.210.70.211',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:20:55'),(7728,'irk','197.210.70.69',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:18:39'),(7729,'currentaffairs','197.210.70.53',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:20:06'),(7730,'civiledu','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:47'),(7731,'currentaffairs','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:48'),(7732,'currentaffairs','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:48'),(7733,'history','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:28:00'),(7734,'history','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:55'),(7735,'economics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:42'),(7736,'irk','197.210.70.217',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:20:51'),(7737,'insurance','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:40','2020-04-09 17:19:57'),(7738,'insurance','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:18:43'),(7739,'insurance','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 16:40:38'),(7740,'history','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:21:10'),(7741,'history','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:20:11'),(7742,'history','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 16:40:37'),(7743,'history','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 17:21:05'),(7744,'history','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:28:01'),(7745,'history','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:27:54'),(7746,'mathematics','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:22'),(7747,'commerce','197.210.70.41',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:24'),(7748,'commerce','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:38'),(7749,'biology','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:27:10'),(7750,'mathematics','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:47'),(7751,'commerce','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:24:39'),(7752,'commerce','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:59','2020-04-09 17:26:44'),(7753,'mathematics','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:25:39'),(7754,'accounting','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:24:41'),(7755,'commerce','197.210.70.53',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:04','2020-04-09 17:24:17'),(7756,'mathematics','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:05','2020-04-09 17:25:37'),(7757,'accounting','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:06','2020-04-09 17:19:01'),(7758,'biology','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:26:47'),(7759,'biology','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:18:58'),(7760,'commerce','197.210.70.109',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:19:01'),(7761,'commerce','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:20:12'),(7762,'accounting','197.210.70.171',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:11','2020-04-09 17:26:47'),(7763,'accounting','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:12','2020-04-09 17:26:40'),(7764,'mathematics','197.210.70.189',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:26:31'),(7765,'englishlit','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:27:13'),(7766,'accounting','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:25:40'),(7767,'accounting','197.210.70.53',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:20:21'),(7768,'biology','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:56'),(7769,'commerce','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:39'),(7770,'accounting','197.210.71.235',319,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:19:25'),(7771,'physics','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:25:59'),(7772,'chemistry','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:19','2020-04-09 17:26:05'),(7773,'accounting','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:26:47'),(7774,'physics','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:19:23'),(7775,'government','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:22','2020-04-09 17:24:50'),(7776,'englishlit','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:24','2020-04-09 17:26:21'),(7777,'physics','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:25','2020-04-09 16:31:21'),(7778,'englishlit','197.210.70.211',398,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 17:27:22'),(7779,'biology','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 16:39:44'),(7780,'government','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 16:40:23'),(7781,'chemistry','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 17:26:09'),(7782,'irk','197.210.71.235',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:29','2020-04-09 17:25:52'),(7783,'englishlit','197.210.70.205',438,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:30','2020-04-09 17:27:13'),(7784,'irk','197.210.70.27',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:19:47'),(7785,'civiledu','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:26:16'),(7786,'civiledu','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 16:34:11'),(7787,'government','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 17:26:23'),(7788,'crk','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:17'),(7789,'civiledu','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:38'),(7790,'geography','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:25:05'),(7791,'government','197.210.70.189',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:27:08'),(7792,'government','197.210.71.79',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:24:48'),(7793,'history','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:36','2020-04-09 16:40:38'),(7794,'currentaffairs','197.210.70.69',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:38','2020-04-09 16:32:06'),(7795,'civiledu','197.210.70.189',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:39','2020-04-09 17:21:04'),(7796,'geography','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:41','2020-04-09 17:27:25'),(7797,'chemistry','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:26:14'),(7798,'irk','197.210.70.239',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:19:59'),(7799,'government','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:24:54'),(7800,'civiledu','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:43','2020-04-09 17:26:17'),(7801,'crk','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:24:50'),(7802,'geography','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:27:23'),(7803,'economics','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:18:37'),(7804,'currentaffairs','197.210.70.225',437,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:21:06'),(7805,'physics','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:59'),(7806,'physics','197.210.70.137',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:55'),(7807,'economics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:47','2020-04-09 17:25:08'),(7808,'crk','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:20:52'),(7809,'geography','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:27:37'),(7810,'irk','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:49','2020-04-09 17:20:45'),(7811,'currentaffairs','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:21:03'),(7812,'government','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:27:14'),(7813,'biology','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:24:31'),(7814,'currentaffairs','197.210.70.121',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:53','2020-04-09 17:27:52'),(7815,'irk','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:34'),(7816,'crk','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:29'),(7817,'economics','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 17:20:58'),(7818,'history','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 16:32:01'),(7819,'crk','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:59','2020-04-09 17:25:00'),(7820,'englishlit','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:24:53'),(7821,'irk','197.210.70.171',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:27:35'),(7822,'crk','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:38:38'),(7823,'history','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:42'),(7824,'insurance','197.210.70.95',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:19:56'),(7825,'geography','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:09'),(7826,'crk','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:33:56'),(7827,'irk','197.210.70.189',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:27:33'),(7828,'insurance','197.210.70.251',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:25:11'),(7829,'civiledu','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:07','2020-04-09 17:20:56'),(7830,'insurance','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 16:34:15'),(7831,'irk','197.210.70.149',176,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 17:27:41'),(7832,'currentaffairs','197.210.70.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 16:40:42'),(7833,'economics','197.210.70.121',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 17:25:07'),(7834,'commerce','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:50'),(7835,'commerce','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:41'),(7836,'crk','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:20:44'),(7837,'chemistry','197.210.70.251',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:05'),(7838,'mathematics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:19:13'),(7839,'englishlit','197.210.71.235',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:07'),(7840,'commerce','197.210.70.137',236,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:26:31'),(7841,'commerce','197.210.71.167',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:24:23'),(7842,'biology','197.210.70.137',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:26:06'),(7843,'mathematics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:20:20'),(7844,'accounting','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:25:53'),(7845,'biology','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:46','2020-04-09 17:26:11'),(7846,'accounting','197.210.70.239',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:26:54'),(7847,'government','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:27:08'),(7848,'physics','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:48','2020-04-09 17:26:05'),(7849,'physics','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:24:29'),(7850,'physics','197.210.71.167',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:19:22'),(7851,'englishlit','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:26:09'),(7852,'physics','197.210.70.149',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:50','2020-04-09 17:26:08'),(7853,'chemistry','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:27:13'),(7854,'geography','197.210.70.137',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:25:02'),(7855,'geography','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:20:50'),(7856,'geography','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:25:06'),(7857,'accounting','197.210.71.11',119,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:20:26'),(7858,'physics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:19:05'),(7859,'chemistry','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:18:26'),(7860,'crk','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 16:39:56'),(7861,'geography','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:25:18'),(7862,'government','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:24:59'),(7863,'economics','197.210.70.217',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:27:25'),(7864,'government','197.210.70.239',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:27:11'),(7865,'economics','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:26:31'),(7866,'irk','197.210.70.1',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:19:46'),(7867,'insurance','197.210.70.225',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 16:40:29'),(7868,'irk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:20:55'),(7869,'economics','197.210.70.183',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:27:43'),(7870,'civiledu','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:58','2020-04-09 17:27:43'),(7871,'currentaffairs','197.210.70.149',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 17:21:04'),(7872,'civiledu','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 16:31:55'),(7873,'history','197.210.70.81',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 16:30:00'),(7874,'civiledu','197.210.70.41',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:27:44'),(7875,'currentaffairs','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:28:03'),(7876,'insurance','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:20:03'),(7877,'economics','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:19:53'),(7878,'irk','197.210.70.95',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:19:52'),(7879,'currentaffairs','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:03'),(7880,'currentaffairs','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:10'),(7881,'history','197.210.70.121',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 16:29:54'),(7882,'insurance','197.210.70.239',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 16:40:27'),(7883,'irk','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 17:27:47'),(7884,'biology','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:19:01'),(7885,'commerce','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:25:59'),(7886,'englishlit','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:56','2020-04-09 16:33:35'),(7887,'physics','197.210.70.115',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:57','2020-04-09 17:26:57'),(7888,'englishlit','197.210.70.53',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:26:09'),(7889,'crk','197.210.70.211',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:14'),(7890,'geography','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:27'),(7891,'crk','197.210.70.27',317,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:27:27'),(7892,'physics','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:20:31'),(7893,'chemistry','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:18:23'),(7894,'biology','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:20:24'),(7895,'economics','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 15:51:41'),(7896,'englishlit','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:27:12'),(7897,'accounting','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:20:23'),(7898,'commerce','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:26:40'),(7899,'chemistry','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:19:34'),(7900,'irk','197.210.70.115',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:27:38'),(7901,'physics','197.210.70.183',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:25:59'),(7902,'accounting','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:00'),(7903,'economics','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:45'),(7904,'government','197.210.70.205',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:04','2020-04-09 17:26:07'),(7905,'crk','197.210.70.225',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 17:27:17'),(7906,'geography','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:40:36'),(7907,'geography','197.210.70.251',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:38:42'),(7908,'insurance','197.210.70.121',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:27:49'),(7909,'englishlit','197.210.70.137',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:26:15'),(7910,'chemistry','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:20:41'),(7911,'economics','197.210.70.109',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 16:40:33'),(7912,'mathematics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 17:26:43'),(7913,'insurance','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 16:40:42'),(7914,'economics','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:27:31'),(7915,'englishlit','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:24:55'),(7916,'irk','197.210.70.109',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:18:37'),(7917,'mathematics','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:25:46'),(7918,'mathematics','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:43'),(7919,'commerce','197.210.70.95',222,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:45'),(7920,'accounting','197.210.70.115',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:21','2020-04-09 17:19:09'),(7921,'biology','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:27:04'),(7922,'commerce','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:26:35'),(7923,'physics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:23','2020-04-09 17:26:48'),(7924,'physics','197.210.70.225',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:24','2020-04-09 17:26:55'),(7925,'irk','197.210.70.137',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:25','2020-04-09 17:27:41'),(7926,'chemistry','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:26','2020-04-09 17:19:10'),(7927,'englishlit','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:24:44'),(7928,'irk','197.210.70.225',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 16:19:11'),(7929,'government','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:26:12'),(7930,'crk','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:28','2020-04-09 17:24:46'),(7931,'englishlit','197.210.70.217',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:24:57'),(7932,'civiledu','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:19:55'),(7933,'government','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:42'),(7934,'englishlit','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:54'),(7935,'civiledu','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:31','2020-04-09 17:18:40'),(7936,'englishlit','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:27:09'),(7937,'geography','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 16:31:42'),(7938,'government','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:25:00'),(7939,'currentaffairs','197.210.70.189',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:33','2020-04-09 17:28:02'),(7940,'insurance','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:34','2020-04-09 17:25:10'),(7941,'insurance','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:27:49'),(7942,'civiledu','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:25'),(7943,'crk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:23'),(7944,'currentaffairs','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:13'),(7945,'geography','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:04'),(7946,'mathematics','197.210.70.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:16','2020-04-09 17:19:16'),(7947,'crk','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:23','2020-04-09 17:27:26'),(7948,'biology','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:25','2020-04-09 17:24:31'),(7949,'chemistry','197.210.70.41',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:26','2020-04-09 17:19:28'),(7950,'physics','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:29','2020-04-09 17:24:35'),(7951,'accounting','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:30','2020-04-09 17:26:46'),(7952,'englishlit','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:33','2020-04-09 17:27:10'),(7953,'englishlit','197.210.70.27',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:34','2020-04-09 17:24:45'),(7954,'geography','197.210.70.189',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:37','2020-04-09 17:25:02'),(7955,'crk','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:41','2020-04-09 17:27:28'),(7956,'economics','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:42','2020-04-09 17:20:52'),(7957,'geography','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:46','2020-04-09 17:27:26'),(7958,'civiledu','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:47','2020-04-09 17:26:19'),(7959,'insurance','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:27:47'),(7960,'insurance','197.210.71.235',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:19:59'),(7961,'currentaffairs','197.210.71.235',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:50','2020-04-09 17:25:28'),(7962,'history','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:05'),(7963,'history','197.210.70.189',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:03'),(7964,'civiledu','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:55','2020-04-09 17:27:40'),(7965,'insurance','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:56','2020-04-09 17:27:32'),(7966,'currentaffairs','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:57','2020-04-09 17:25:24'),(7967,'currentaffairs','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:58','2020-04-09 17:20:07'),(7968,'mathematics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:20:18'),(7969,'biology','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:19:04'),(7970,'physics','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:18','2020-04-09 17:20:28'),(7971,'biology','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:32','2020-04-09 17:26:52'),(7972,'chemistry','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:52','2020-04-09 17:26:57'),(7973,'chemistry','197.210.70.211',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:54','2020-04-09 17:20:38'),(7974,'irk','197.210.71.79',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:04','2020-04-09 17:20:50'),(7975,'civiledu','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:18','2020-04-09 17:21:29'),(7976,'insurance','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:20','2020-04-09 17:18:43'),(7977,'insurance','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:23','2020-04-09 17:27:58'),(7978,'currentaffairs','197.210.70.81',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:28','2020-04-09 17:27:55'),(7979,'currentaffairs','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:31','2020-04-09 17:27:56'),(7980,'government','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:34','2020-04-09 17:24:55'),(7981,'government','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 17:27:26'),(7982,'history','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 16:40:41'),(7983,'accounting','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:38','2020-04-09 17:20:26'),(7984,'history','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:39','2020-04-09 17:20:15'),(7985,'accounting','197.210.70.27',233,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:40','2020-04-09 17:19:23'),(7986,'history','197.210.70.95',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:41','2020-04-09 16:19:47'),(7987,'economics','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:27:56','2020-04-09 17:27:35'),(7988,'chemistry','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:01','2020-04-09 17:27:09'),(7989,'mathematics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:14','2020-04-09 17:25:47'),(7990,'accounting','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:34','2020-04-09 17:20:17'),(7991,'biology','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:35','2020-04-09 17:26:04'),(7992,'biology','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:36','2020-04-09 17:24:26'),(7993,'englishlit','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:45','2020-04-09 17:20:33'),(7994,'chemistry','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:54','2020-04-09 17:19:28'),(7995,'economics','197.210.70.211',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:12','2020-04-09 17:26:24'),(7996,'geography','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:15','2020-04-09 17:27:26'),(7997,'geography','197.210.70.239',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:20','2020-04-09 17:27:32'),(7998,'civiledu','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:28','2020-04-09 17:20:03'),(7999,'government','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:22','2020-04-09 17:27:20'),(8000,'irk','197.210.70.211',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:38','2020-04-09 17:26:26'),(8001,'insurance','197.210.70.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:20:02'),(8002,'history','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:08'),(8003,'history','197.210.70.217',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:07'),(8004,'history','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:47','2020-04-09 17:20:12'),(8005,'history','197.210.70.211',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:52','2020-04-09 17:21:12'),(8006,'history','197.210.70.205',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:55','2020-04-09 17:21:06'),(8007,'commerce','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:09','2020-04-09 17:20:20'),(8008,'physics','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:11','2020-04-09 17:20:37'),(8009,'civiledu','197.210.70.149',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:49','2020-04-09 17:21:00'),(8010,'economics','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:52','2020-04-09 17:20:57'),(8011,'currentaffairs','197.210.70.183',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:09','2020-04-09 17:27:59'),(8012,'history','197.210.70.137',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:13','2020-04-09 16:34:24'),(8013,'crk','197.210.70.137',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:38:31','2020-04-09 17:19:42'),(8014,'accounting','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:39:37','2020-04-09 17:26:43'),(8015,'biology','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:12','2020-04-09 17:27:01'),(8016,'geography','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:28','2020-04-09 17:20:54'),(8017,'insurance','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:33','2020-04-09 17:21:00'),(8018,'economics','197.210.70.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 17:20:44','2020-04-09 17:20:50'),(8019,'civiledu','18.232.76.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:01:19','2020-04-10 02:01:19'),(8020,'economics','3.88.169.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:51:46','2020-04-10 02:51:46'),(8021,'history','3.82.157.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 05:11:10','2020-04-10 05:11:10'),(8022,'mathematics','54.196.241.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 06:19:44','2020-04-10 06:19:44'),(8023,'history','3.88.70.16',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:01:55','2020-04-10 15:25:17'),(8024,'commerce','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8025,'physics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8026,'chemistry','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8027,'englishlit','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:14'),(8028,'crk','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8029,'irk','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:16'),(8030,'currentaffairs','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:17'),(8031,'english','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:14','2020-04-10 15:25:14'),(8032,'geography','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:15','2020-04-10 15:25:15'),(8033,'economics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:16','2020-04-10 15:25:16'),(8034,'commerce','54.89.208.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 17:29:46','2020-04-10 17:29:46'),(8035,'chemistry','197.210.8.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 18:23:00','2020-04-10 18:23:00'),(8036,'crk','35.173.248.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 19:52:55','2020-04-10 19:52:55'),(8037,'chemistry','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:34','2020-04-10 22:44:37'),(8038,'englishlit','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8039,'government','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8040,'geography','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8041,'economics','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8042,'civiledu','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8043,'insurance','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:38','2020-04-10 22:44:38'),(8044,'economics','52.55.93.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 23:42:01','2020-04-10 23:42:01'),(8045,'government','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:41:11','2020-04-11 01:41:11'),(8046,'chemistry','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:45:12','2020-04-11 01:45:12'),(8047,'geography','35.175.184.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 02:56:41','2020-04-11 02:56:41'),(8048,'government','34.224.58.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 04:37:27','2020-04-11 04:37:27'),(8049,'chemistry','116.88.133.110',51,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-11 05:33:06','2020-04-19 15:27:03'),(8050,'economics','3.90.47.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 05:55:15','2020-04-11 05:55:15'),(8051,'english','3.82.203.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 07:21:01','2020-04-11 07:21:01'),(8052,'biology','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8053,'government','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8054,'irk','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:09'),(8055,'civiledu','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:09'),(8056,'insurance','3.80.112.97',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:22:11'),(8057,'currentaffairs','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:10'),(8058,'history','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:10','2020-04-11 08:18:10'),(8059,'crk','54.83.85.175',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:06:53','2020-04-11 12:07:40'),(8060,'englishlit','34.229.42.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:50:10','2020-04-11 12:50:10'),(8061,'english','3.85.102.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 14:35:24','2020-04-11 14:35:24'),(8062,'crk','52.203.28.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 15:29:45','2020-04-11 15:29:45'),(8063,'crk','3.81.73.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 18:10:31','2020-04-11 18:10:31'),(8064,'commerce','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8065,'accounting','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8066,'physics','54.175.255.15',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 02:11:02'),(8067,'englishlit','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:20'),(8068,'government','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8069,'irk','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8070,'currentaffairs','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8071,'english','54.175.255.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 02:31:32','2020-04-12 02:31:32'),(8072,'currentaffairs','18.206.125.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 08:03:24','2020-04-12 08:03:24'),(8073,'mathematics','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8074,'mathematics','197.210.53.31',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:17'),(8075,'english','197.210.53.138',219,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 17:58:35'),(8076,'commerce','197.210.53.223',76,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:19'),(8077,'mathematics','197.210.53.138',290,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:36'),(8078,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8079,'english','197.210.53.31',62,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8080,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8081,'mathematics','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:31:54'),(8082,'mathematics','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8083,'english','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8084,'commerce','197.210.53.138',259,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:40'),(8085,'english','197.210.53.232',75,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:52'),(8086,'english','197.210.53.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8087,'commerce','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8088,'accounting','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8089,'currentaffairs','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:40'),(8090,'history','197.210.53.232',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8091,'civiledu','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8092,'history','197.210.53.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8093,'history','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8094,'currentaffairs','197.210.52.179',142,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8095,'civiledu','197.210.52.179',163,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8096,'history','197.210.52.170',110,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8097,'history','197.210.52.179',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:43'),(8098,'accounting','197.210.53.138',234,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-30 18:08:11'),(8099,'insurance','197.210.52.170',143,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:42'),(8100,'accounting','197.210.53.232',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:31:01'),(8101,'commerce','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:18','2020-04-12 13:30:55'),(8102,'biology','197.210.53.138',185,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:21','2020-04-30 17:57:35'),(8103,'physics','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:23'),(8104,'physics','197.210.53.138',234,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:49'),(8105,'mathematics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:52'),(8106,'accounting','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:52'),(8107,'biology','197.210.53.223',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:49'),(8108,'biology','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:24'),(8109,'physics','197.210.53.223',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:53'),(8110,'physics','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8111,'government','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8112,'englishlit','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:30'),(8113,'englishlit','197.210.53.138',160,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:15'),(8114,'physics','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8115,'englishlit','197.210.53.232',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:32'),(8116,'chemistry','197.210.53.138',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:53'),(8117,'government','197.210.53.138',182,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:57:07'),(8118,'chemistry','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:33'),(8119,'biology','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8120,'chemistry','197.210.53.232',111,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:25','2020-04-12 13:19:31'),(8121,'englishlit','197.210.52.170',122,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:30'),(8122,'chemistry','197.210.53.223',75,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:31'),(8123,'government','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:30'),(8124,'government','197.210.53.223',77,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:32'),(8125,'crk','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:30'),(8126,'government','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:30:56'),(8127,'crk','197.210.53.223',109,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:34'),(8128,'crk','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:35'),(8129,'geography','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:33'),(8130,'economics','197.210.53.138',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 17:58:26'),(8131,'geography','197.210.53.138',179,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 18:08:29'),(8132,'economics','197.210.53.223',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-12 13:19:39'),(8133,'crk','197.210.53.138',296,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-30 18:13:36'),(8134,'geography','197.210.53.31',71,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:32','2020-04-12 13:19:36'),(8135,'irk','197.210.53.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:36'),(8136,'irk','197.210.52.179',98,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:38'),(8137,'irk','197.210.52.170',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:30:47'),(8138,'economics','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:41'),(8139,'geography','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8140,'economics','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:37'),(8141,'irk','197.210.53.31',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8142,'economics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:41'),(8143,'civiledu','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:39'),(8144,'irk','197.210.53.223',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:37'),(8145,'civiledu','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:31:53'),(8146,'insurance','197.210.53.31',130,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:40'),(8147,'currentaffairs','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:31:54'),(8148,'currentaffairs','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:19:39'),(8149,'insurance','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:37','2020-04-12 13:19:40'),(8150,'currentaffairs','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:39','2020-04-12 13:19:42'),(8151,'crk','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:47','2020-04-12 13:30:50'),(8152,'commerce','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:53','2020-04-12 13:31:38'),(8153,'englishlit','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:58','2020-04-12 13:31:01'),(8154,'chemistry','197.210.52.106',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 16:15:11','2020-04-12 16:15:17'),(8155,'chemistry','105.112.50.114',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:16:45','2020-04-12 16:22:27'),(8156,'accounting','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8157,'crk','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8158,'history','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8159,'government','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8160,'commerce','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8161,'geography','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8162,'physics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8163,'biology','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8164,'englishlit','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8165,'economics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8166,'biology','34.224.87.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 03:38:22','2020-04-13 03:38:22'),(8167,'accounting','54.162.182.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 07:00:45','2020-04-13 07:00:45'),(8168,'chemistry','154.118.48.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 08:54:43','2020-04-13 08:54:59'),(8169,'chemistry','41.217.88.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 09:03:00','2020-04-13 09:03:00'),(8170,'chemistry','54.36.149.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:40:53','2020-04-13 23:40:53'),(8171,'chemistry','54.36.148.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:51:04','2020-04-13 23:51:04'),(8172,'chemistry','54.36.148.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:59:53','2020-04-13 23:59:53'),(8173,'chemistry','54.36.148.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:02:02','2020-04-14 00:02:02'),(8174,'chemistry','54.36.148.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:04:51','2020-04-14 00:04:52'),(8175,'insurance','54.166.10.181',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-14 00:24:25','2020-04-20 18:30:46'),(8176,'mathematics','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:41:23','2020-04-14 05:41:23'),(8177,'chemistry','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:48:13','2020-04-14 05:48:13'),(8178,'accounting','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:48','2020-04-14 09:01:50'),(8179,'physics','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:50','2020-04-14 09:01:50'),(8180,'chemistry','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8181,'englishlit','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8182,'civiledu','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8183,'currentaffairs','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8184,'history','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8185,'geography','18.206.240.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 10:07:05','2020-04-14 10:11:06'),(8186,'physics','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:00:35','2020-04-14 16:00:35'),(8187,'englishlit','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:37:56','2020-04-14 16:37:56'),(8188,'geography','18.206.195.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 17:01:28','2020-04-14 17:01:28'),(8189,'chemistry','217.146.176.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 18:42:57','2020-04-14 18:42:58'),(8190,'currentaffairs','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 20:54:30','2020-04-14 20:54:30'),(8191,'mathematics','54.163.208.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 00:52:55','2020-04-15 00:52:55'),(8192,'geography','100.26.52.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 01:58:43','2020-04-15 01:58:43'),(8193,'physics','34.235.149.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 02:45:09','2020-04-15 02:45:09'),(8194,'mathematics','3.87.134.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 03:39:42','2020-04-15 03:39:42'),(8195,'mathematics','34.201.57.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 04:44:44','2020-04-15 04:44:44'),(8196,'accounting','3.84.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 06:20:10','2020-04-15 06:20:10'),(8197,'chemistry','197.210.53.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:40:42','2020-04-15 10:40:43'),(8198,'chemistry','197.210.52.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:42:02','2020-04-15 10:42:02'),(8199,'insurance','52.91.233.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 15:29:09','2020-04-15 15:29:09'),(8200,'civiledu','54.242.136.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 17:12:47','2020-04-15 17:12:47'),(8201,'accounting','3.94.112.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 18:27:15','2020-04-15 18:55:50'),(8202,'history','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 19:09:02','2020-04-15 19:09:02'),(8203,'english','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8204,'commerce','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8205,'accounting','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8206,'government','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8207,'geography','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8208,'economics','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8209,'insurance','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8210,'mathematics','3.85.212.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 02:18:36','2020-04-16 02:18:36'),(8211,'economics','18.234.50.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 12:59:34','2020-04-16 12:59:34'),(8212,'history','18.215.157.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 13:52:47','2020-04-16 13:52:47'),(8213,'chemistry','197.210.44.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:42','2020-04-16 18:43:09'),(8214,'chemistry','197.210.64.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:58','2020-04-16 18:42:58'),(8215,'chemistry','197.210.65.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:43:29','2020-04-16 18:43:29'),(8216,'chemistry','197.210.47.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:44:34','2020-04-16 18:44:34'),(8217,'chemistry','197.210.64.155',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:45:46','2020-04-16 18:45:48'),(8218,'crk','3.87.156.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 22:43:05','2020-04-16 22:43:05'),(8219,'commerce','18.207.198.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:03:48','2020-04-17 02:03:48'),(8220,'commerce','54.237.135.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:41:43','2020-04-17 02:41:43'),(8221,'physics','66.249.88.30',50,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-20 17:05:28'),(8222,'physics','66.249.81.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-17 08:08:43'),(8223,'physics','41.144.89.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:44','2020-04-17 08:08:46'),(8224,'economics','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:53:39','2020-04-17 08:53:39'),(8225,'geography','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:14:00','2020-04-17 09:14:00'),(8226,'government','18.206.205.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:56:27','2020-04-17 10:02:57'),(8227,'chemistry','18.206.205.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 10:01:34','2020-04-17 10:01:34'),(8228,'commerce','3.83.68.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 11:09:10','2020-04-17 11:09:10'),(8229,'chemistry','197.210.60.237',244,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 12:26:25','2020-04-17 12:32:16'),(8230,'economics','18.212.205.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 13:09:33','2020-04-17 13:09:33'),(8231,'chemistry','207.46.13.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 15:19:30','2020-04-17 15:19:30'),(8232,'english','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 16:39:41','2020-04-17 16:39:41'),(8233,'englishlit','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:10:38','2020-04-17 17:10:38'),(8234,'insurance','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:26:22','2020-04-17 17:26:22'),(8235,'crk','18.234.121.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 18:20:42','2020-04-17 18:20:42'),(8236,'chemistry','197.210.84.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 20:34:57','2020-04-17 20:34:57'),(8237,'crk','3.92.82.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 22:15:16','2020-04-17 22:15:16'),(8238,'physics','18.234.86.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 03:54:15','2020-04-18 03:54:15'),(8239,'currentaffairs','100.27.24.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 06:16:30','2020-04-18 06:16:30'),(8240,'crk','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:33:36','2020-04-18 07:33:36'),(8241,'englishlit','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:34:50','2020-04-18 07:34:50'),(8242,'english','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:35:39','2020-04-18 07:35:39'),(8243,'englishlit','107.23.21.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 08:31:03','2020-04-18 08:31:03'),(8244,'biology','3.93.151.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 11:56:02','2020-04-18 11:56:02'),(8245,'english','197.210.45.162',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 14:25:05','2020-04-18 14:25:07'),(8246,'currentaffairs','52.201.218.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 15:20:26','2020-04-18 15:20:26'),(8247,'economics','54.208.89.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:02:52','2020-04-18 18:02:52'),(8248,'chemistry','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:03'),(8249,'english','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:04'),(8250,'chemistry','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8251,'english','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8252,'english','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8253,'chemistry','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8254,'english','197.210.47.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:30:57','2020-04-18 18:31:00'),(8255,'chemistry','197.210.47.50',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8256,'english','197.210.47.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8257,'mathematics','197.210.47.209',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8258,'physics','197.210.47.182',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8259,'biology','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8260,'accounting','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8261,'english','197.210.65.39',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:34:12'),(8262,'commerce','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8263,'english','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8264,'accounting','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8265,'commerce','197.210.65.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8266,'biology','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8267,'biology','197.210.64.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:12'),(8268,'accounting','197.210.64.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8269,'commerce','197.210.47.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8270,'irk','197.210.47.117',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:50'),(8271,'english','197.210.47.142',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8272,'economics','197.210.47.112',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8273,'geography','197.210.47.125',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:34:50','2020-04-18 18:34:52'),(8274,'civiledu','197.210.47.139',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8275,'english','197.210.64.74',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8276,'insurance','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8277,'currentaffairs','197.210.47.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:59','2020-04-18 18:57:01'),(8278,'economics','197.210.64.116',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8279,'english','197.210.47.248',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8280,'irk','197.210.47.33',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:15','2020-04-18 19:01:17'),(8281,'civiledu','197.210.47.240',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:18','2020-04-18 19:01:20'),(8282,'mathematics','197.210.65.174',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8283,'english','197.210.65.168',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8284,'biology','197.210.65.164',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8285,'commerce','197.210.65.181',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8286,'english','197.210.47.9',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:07','2020-04-18 19:03:09'),(8287,'mathematics','197.210.47.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8288,'biology','197.210.47.19',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8289,'accounting','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8290,'english','197.210.65.0',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8291,'irk','197.210.64.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:25'),(8292,'civiledu','197.210.65.126',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8293,'economics','197.210.65.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8294,'biology','197.210.65.15',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8295,'accounting','197.210.65.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8296,'english','197.210.65.11',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8297,'commerce','197.210.65.26',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8298,'accounting','197.210.64.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8299,'mathematics','197.210.64.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8300,'english','197.210.47.101',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8301,'commerce','197.210.47.108',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8302,'biology','197.210.65.132',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:37'),(8303,'english','197.210.47.62',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:12:53'),(8304,'accounting','197.210.47.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:38'),(8305,'physics','197.210.47.32',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:36','2020-04-18 19:09:38'),(8306,'civiledu','197.210.64.42',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8307,'english','197.210.65.69',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8308,'insurance','197.210.65.75',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8309,'irk','197.210.65.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:30','2020-04-18 19:11:31'),(8310,'physics','197.210.47.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8311,'biology','197.210.47.56',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8312,'chemistry','197.210.47.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:52','2020-04-18 19:12:55'),(8313,'english','197.210.64.106',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8314,'government','197.210.65.97',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8315,'chemistry','197.210.65.99',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8316,'englishlit','197.210.64.37',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8317,'english','197.210.65.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8318,'biology','197.210.65.196',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8319,'accounting','197.210.65.206',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8320,'commerce','197.210.65.198',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8321,'physics','197.210.64.111',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:07'),(8322,'english','197.210.64.140',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8323,'englishlit','197.210.64.82',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8324,'chemistry','197.210.64.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:07','2020-04-18 19:56:10'),(8325,'english','197.210.65.23',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:35','2020-04-18 19:56:38'),(8326,'englishlit','197.210.64.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:37','2020-04-18 19:56:39'),(8327,'government','197.210.47.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:38','2020-04-18 19:56:40'),(8328,'chemistry','197.210.65.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:39','2020-04-18 19:56:41'),(8329,'mathematics','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8330,'accounting','197.210.47.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8331,'biology','197.210.65.134',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8332,'english','197.210.64.213',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8333,'english','197.210.65.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8334,'commerce','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8335,'mathematics','197.210.64.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8336,'irk','197.210.65.92',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:17','2020-04-18 19:59:19'),(8337,'accounting','3.208.18.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 06:23:07','2020-04-19 06:23:07'),(8338,'chemistry','40.77.167.36',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 07:38:38','2020-04-19 16:13:18'),(8339,'mathematics','105.112.179.226',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:23'),(8340,'accounting','105.112.179.226',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:52:55'),(8341,'government','105.112.179.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 11:58:19'),(8342,'english','105.112.179.226',480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:24'),(8343,'physics','105.112.179.226',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:55:09'),(8344,'biology','105.112.179.226',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:57:24'),(8345,'commerce','105.112.179.226',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:05:08','2020-04-19 12:57:24'),(8346,'chemistry','105.112.179.226',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:48:05','2020-04-19 12:55:09'),(8347,'chemistry','105.112.22.76',49,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:16:51','2020-04-19 13:26:58'),(8348,'biology','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:23:32','2020-04-19 13:23:33'),(8349,'mathematics','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:28:01','2020-04-19 13:28:01');\nINSERT INTO `api_call_ip_address` VALUES (8350,'mathematics','197.210.45.45',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:23:32'),(8351,'english','197.210.45.45',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8352,'commerce','197.210.45.45',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8353,'accounting','197.210.45.45',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8354,'english','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8355,'mathematics','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8356,'accounting','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8357,'commerce','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8358,'commerce','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8359,'accounting','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8360,'english','197.210.63.48',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:43:25'),(8361,'mathematics','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8362,'history','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8363,'currentaffairs','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8364,'insurance','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8365,'government','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8366,'crk','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8367,'geography','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8368,'history','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8369,'currentaffairs','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8370,'insurance','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8371,'english','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8372,'currentaffairs','197.210.45.45',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:11:15'),(8373,'insurance','197.210.45.45',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8374,'history','197.210.45.45',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8375,'chemistry','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8376,'physics','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8377,'biology','197.210.45.45',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:13:01','2020-04-19 19:24:58'),(8378,'mathematics','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8379,'chemistry','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:31:55'),(8380,'physics','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8381,'english','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8382,'biology','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:17:47','2020-04-19 21:17:49'),(8383,'english','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8384,'accounting','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8385,'englishlit','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8386,'economics','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8387,'civiledu','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8388,'insurance','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8389,'history','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8390,'currentaffairs','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:34:27','2020-04-19 21:34:29'),(8391,'chemistry','54.36.150.129',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:45:45','2020-04-19 22:45:45'),(8392,'chemistry','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:47:37'),(8393,'physics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8394,'mathematics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8395,'english','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8396,'biology','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:54:25','2020-04-19 22:54:27'),(8397,'chemistry','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8398,'physics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8399,'mathematics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8400,'english','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8401,'physics','3.93.200.226',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 00:55:26','2020-04-20 01:33:19'),(8402,'history','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:07:59','2020-04-20 01:07:59'),(8403,'currentaffairs','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:20:29','2020-04-20 01:20:29'),(8404,'englishlit','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:46:52','2020-04-20 01:46:52'),(8405,'chemistry','54.85.179.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:14:11','2020-04-20 03:14:11'),(8406,'english','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8407,'history','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8408,'insurance','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8409,'currentaffairs','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8410,'english','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8411,'biology','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:53:43'),(8412,'commerce','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8413,'accounting','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8414,'mathematics','102.89.2.214',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:56:26','2020-04-20 03:56:28'),(8415,'mathematics','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 04:11:00','2020-04-20 04:11:00'),(8416,'geography','3.92.207.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 06:39:01','2020-04-20 06:39:01'),(8417,'geography','3.80.247.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 07:47:21','2020-04-20 07:47:21'),(8418,'biology','218.26.54.96',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 09:58:41','2020-04-20 09:58:42'),(8419,'physics','3.90.203.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 11:17:13','2020-04-20 11:17:13'),(8420,'geography','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:08:33','2020-04-20 12:08:33'),(8421,'englishlit','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:30:06','2020-04-20 12:30:06'),(8422,'civiledu','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8423,'english','197.210.8.224',720,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 14:29:47'),(8424,'insurance','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8425,'currentaffairs','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8426,'chemistry','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8427,'mathematics','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8428,'physics','197.210.8.224',680,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8429,'commerce','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8430,'biology','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8431,'currentaffairs','54.145.65.159',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:05:19','2020-04-20 14:05:19'),(8432,'chemistry','54.36.148.196',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:35:15','2020-04-20 14:35:15'),(8433,'biology','66.249.83.204',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:44:36','2020-04-20 14:44:37'),(8434,'chemistry','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:50:33'),(8435,'english','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8436,'mathematics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8437,'physics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8438,'commerce','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:52:12','2020-04-20 14:52:14'),(8439,'chemistry','102.89.0.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 18:20:36','2020-04-20 18:20:36'),(8440,'chemistry','102.89.0.10',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:21:01','2020-04-20 18:24:58'),(8441,'physics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8442,'mathematics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8443,'english','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:58'),(8444,'physics','54.166.10.181',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:55:28','2020-04-20 18:55:28'),(8445,'mathematics','35.153.167.2',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 20:10:20','2020-04-20 20:10:20'),(8446,'mathematics','52.91.67.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 23:39:22','2020-04-20 23:39:22'),(8447,'physics','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8448,'chemistry','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8449,'english','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8450,'mathematics','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8451,'accounting','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8452,'biology','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8453,'chemistry','105.112.182.146',64,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:25:58','2020-04-21 19:28:52'),(8454,'biology','105.112.182.146',147,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:31:52','2020-04-21 20:02:15'),(8455,'physics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:00:51','2020-04-21 18:36:52'),(8456,'chemistry','197.210.64.120',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:02:51','2020-04-21 10:02:53'),(8457,'history','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8458,'currentaffairs','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8459,'english','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8460,'insurance','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8461,'commerce','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:24','2020-04-21 19:24:43'),(8462,'mathematics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:33','2020-04-21 18:43:38'),(8463,'chemistry','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8464,'english','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8465,'mathematics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8466,'physics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8467,'mathematics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8468,'english','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8469,'physics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8470,'chemistry','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8471,'chemistry','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8472,'mathematics','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8473,'english','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8474,'commerce','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8475,'english','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8476,'mathematics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8477,'physics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8478,'chemistry','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8479,'english','105.112.182.146',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:29','2020-04-21 11:08:28'),(8480,'chemistry','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8481,'english','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8482,'physics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8483,'mathematics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8484,'english','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8485,'mathematics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8486,'biology','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8487,'physics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8488,'chemistry','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8489,'mathematics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8490,'physics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8491,'english','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8492,'english','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8493,'englishlit','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8494,'physics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8495,'mathematics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8496,'mathematics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8497,'physics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8498,'english','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8499,'chemistry','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8500,'physics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8501,'mathematics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8502,'english','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8503,'chemistry','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8504,'physics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8505,'english','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8506,'chemistry','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8507,'mathematics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8508,'physics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8509,'english','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8510,'mathematics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8511,'mathematics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8512,'physics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8513,'english','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8514,'chemistry','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8515,'mathematics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8516,'english','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8517,'chemistry','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8518,'physics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8519,'mathematics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8520,'physics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8521,'chemistry','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:58'),(8522,'english','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8523,'english','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8524,'physics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8525,'chemistry','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8526,'mathematics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8527,'physics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8528,'mathematics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8529,'chemistry','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8530,'english','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8531,'englishlit','41.80.21.184',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:46:19','2020-04-21 11:46:21'),(8532,'chemistry','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8533,'mathematics','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8534,'biology','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8535,'english','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8536,'mathematics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8537,'chemistry','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8538,'physics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8539,'english','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8540,'accounting','105.112.182.146',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:21:36','2020-04-21 19:33:14'),(8541,'mathematics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8542,'english','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8543,'chemistry','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8544,'physics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8545,'english','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8546,'mathematics','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8547,'biology','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8548,'commerce','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8549,'physics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8550,'chemistry','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8551,'english','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8552,'mathematics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8553,'chemistry','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8554,'mathematics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8555,'english','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8556,'physics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8557,'history','54.242.239.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 14:06:07','2020-04-21 14:06:07'),(8558,'government','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 15:55:50','2020-04-21 15:55:51'),(8559,'history','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 16:23:43','2020-04-21 16:23:43'),(8560,'chemistry','197.210.28.55',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 18:02:59','2020-04-21 18:03:01'),(8561,'mathematics','3.81.94.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 19:58:20','2020-04-21 19:58:20'),(8562,'biology','105.112.18.128',77,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:18:41','2020-04-21 23:24:00'),(8563,'physics','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:18:53','2020-04-21 23:00:17'),(8564,'accounting','105.112.18.128',42,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:35:26','2020-04-21 23:10:50'),(8565,'chemistry','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:37:37','2020-04-21 20:58:32'),(8566,'mathematics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8567,'chemistry','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8568,'english','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:14'),(8569,'physics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8570,'english','102.89.1.175',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:09:09','2020-04-21 21:42:43'),(8571,'english','102.89.1.91',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:10:02','2020-04-21 21:25:29'),(8572,'english','102.89.0.89',20,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:11:30','2020-04-21 21:11:32'),(8573,'chemistry','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8574,'mathematics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8575,'physics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8576,'chemistry','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8577,'english','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8578,'mathematics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8579,'physics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8580,'chemistry','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:07','2020-04-21 21:42:43'),(8581,'physics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8582,'mathematics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8583,'commerce','105.112.18.128',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 22:04:53','2020-04-21 22:49:43'),(8584,'mathematics','105.112.18.128',7,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 22:27:23','2020-04-21 22:27:24'),(8585,'english','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8586,'irk','102.89.1.102',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8587,'insurance','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8588,'civiledu','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8589,'geography','105.112.18.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:32:29','2020-04-21 23:32:29'),(8590,'mathematics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8591,'physics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8592,'english','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8593,'chemistry','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8594,'physics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8595,'mathematics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8596,'english','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8597,'biology','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8598,'insurance','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:44','2020-04-21 23:46:47'),(8599,'english','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8600,'chemistry','197.210.46.117',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-05-25 11:18:27'),(8601,'geography','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8602,'history','52.207.122.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:21:54','2020-04-22 06:21:54'),(8603,'chemistry','102.89.2.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:27:13','2020-04-22 06:27:13'),(8604,'mathematics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8605,'english','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8606,'physics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8607,'chemistry','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8608,'biology','105.112.28.69',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 08:37:38','2020-04-22 09:14:05'),(8609,'physics','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:37:13','2020-04-22 11:01:24'),(8610,'biology','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:45:01','2020-04-22 10:48:10'),(8611,'accounting','105.112.31.149',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:07:02','2020-04-22 10:07:52'),(8612,'economics','105.112.31.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:16:04','2020-04-22 10:16:05'),(8613,'biology','105.112.30.170',28,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 11:06:24','2020-04-22 12:40:53'),(8614,'accounting','105.112.30.170',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 11:33:34','2020-04-22 11:59:20'),(8615,'chemistry','41.190.12.66',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:15:54','2020-04-22 12:17:36'),(8616,'biology','41.190.12.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:16:26','2020-04-22 12:18:01'),(8617,'chemistry','105.112.176.19',468,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 12:22:58','2020-04-22 12:30:38'),(8618,'chemistry','41.190.12.130',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:35:57','2020-04-22 12:39:25'),(8619,'biology','41.190.12.130',9,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:37:06','2020-04-22 12:41:42'),(8620,'english','41.190.12.130',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:39:46','2020-04-22 12:43:48'),(8621,'insurance','197.210.84.226',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:37:40','2020-04-22 13:37:42'),(8622,'insurance','197.210.84.190',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:40:05','2020-04-22 13:40:07'),(8623,'chemistry','54.82.80.108',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 14:30:16','2020-04-22 14:30:16'),(8624,'crk','34.229.173.152',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:15:56','2020-04-22 16:15:56'),(8625,'physics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8626,'english','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8627,'chemistry','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8628,'mathematics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8629,'biology','105.112.183.159',84,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:46:06','2020-04-22 22:39:25'),(8630,'accounting','105.112.183.159',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:48:17','2020-04-22 22:31:08'),(8631,'english','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:13:11','2020-04-22 18:13:11'),(8632,'commerce','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:34:19','2020-04-22 18:34:19'),(8633,'currentaffairs','3.94.91.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:10:02','2020-04-22 19:10:02'),(8634,'chemistry','105.112.183.159',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:38:14','2020-04-22 19:41:59'),(8635,'chemistry','157.55.39.45',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:52:26','2020-04-22 19:52:27'),(8636,'physics','105.112.183.159',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 21:25:48','2020-04-22 22:40:27'),(8637,'economics','54.166.255.13',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 22:23:41','2020-04-22 22:23:41'),(8638,'commerce','105.112.183.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 23:09:25','2020-04-22 23:09:26'),(8639,'chemistry','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:00:28','2020-04-23 00:00:28'),(8640,'government','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:24:21','2020-04-23 00:24:21'),(8641,'mathematics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:39:20','2020-04-23 01:39:20'),(8642,'government','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:47:47','2020-04-23 01:47:47'),(8643,'economics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:48:36','2020-04-23 01:48:36'),(8644,'geography','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:36:53','2020-04-23 02:36:53'),(8645,'commerce','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:53:38','2020-04-23 02:53:38'),(8646,'chemistry','105.112.61.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:54:52','2020-04-23 02:54:52'),(8647,'insurance','54.86.197.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 06:26:13','2020-04-23 06:26:13'),(8648,'crk','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:16:42','2020-04-23 10:16:42'),(8649,'englishlit','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:34:38','2020-04-23 10:34:38'),(8650,'english','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 11:05:41','2020-04-23 11:05:41'),(8651,'biology','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8652,'mathematics','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8653,'crk','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8654,'english','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8655,'civiledu','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8656,'economics','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8657,'crk','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 14:30:55','2020-04-23 14:30:55'),(8658,'biology','54.224.0.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 17:35:04','2020-04-23 17:35:04'),(8659,'chemistry','40.77.167.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 19:39:50','2020-04-23 19:39:50'),(8660,'physics','54.174.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:04:30','2020-04-23 22:04:30'),(8661,'englishlit','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:50:05','2020-04-23 22:50:05'),(8662,'currentaffairs','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 23:11:05','2020-04-23 23:11:05'),(8663,'crk','18.234.95.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 00:49:03','2020-04-24 00:49:03'),(8664,'chemistry','102.134.114.129',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 01:33:54','2020-04-24 01:38:52'),(8665,'englishlit','54.209.127.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 02:15:39','2020-04-24 02:15:39'),(8666,'english','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:17:39','2020-04-24 03:17:39'),(8667,'government','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:43:50','2020-04-24 03:43:50'),(8668,'chemistry','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 04:48:11','2020-04-24 04:48:11'),(8669,'economics','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 05:19:42','2020-04-24 05:19:42'),(8670,'mathematics','54.196.250.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 08:15:48','2020-04-24 08:15:48'),(8671,'insurance','3.82.47.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 09:43:06','2020-04-24 09:43:06'),(8672,'civiledu','100.24.31.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:26:45','2020-04-24 10:26:45'),(8673,'mathematics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8674,'commerce','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8675,'biology','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8676,'chemistry','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:08'),(8677,'government','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8678,'geography','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8679,'economics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8680,'physics','188.164.100.205',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:39:15','2020-04-24 10:39:17'),(8681,'chemistry','35.171.2.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 14:25:12','2020-04-24 14:25:12'),(8682,'mathematics','54.145.214.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 17:31:43','2020-04-24 17:31:43'),(8683,'chemistry','54.36.148.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 18:06:18','2020-04-24 18:06:18'),(8684,'accounting','34.239.139.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 23:10:31','2020-04-24 23:10:31'),(8685,'chemistry','54.227.8.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 01:51:07','2020-04-25 01:51:07'),(8686,'chemistry','105.112.47.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 04:58:07','2020-04-25 04:58:07'),(8687,'mathematics','34.204.43.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 05:02:06','2020-04-25 05:02:06'),(8688,'currentaffairs','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:33:21','2020-04-25 06:33:21'),(8689,'biology','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:58:18','2020-04-25 06:58:18'),(8690,'english','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:13','2020-04-25 07:02:13'),(8691,'commerce','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:32','2020-04-25 07:02:32'),(8692,'geography','54.162.26.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 08:14:44','2020-04-25 08:14:44'),(8693,'biology','41.190.31.157',123,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 14:18:38','2020-04-25 15:45:29'),(8694,'english','41.190.31.157',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:19:08','2020-04-25 15:19:08'),(8695,'chemistry','41.190.31.157',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:34:32','2020-04-25 15:49:01'),(8696,'mathematics','18.207.244.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:00:51','2020-04-25 19:00:51'),(8697,'geography','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:43:51','2020-04-25 19:43:51'),(8698,'chemistry','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 20:00:20','2020-04-25 20:00:20'),(8699,'geography','54.196.233.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 22:34:56','2020-04-25 22:34:56'),(8700,'geography','54.226.23.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 23:54:11','2020-04-25 23:54:11'),(8701,'physics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:34:21','2020-04-26 03:34:21'),(8702,'englishlit','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:46:24','2020-04-26 03:46:24'),(8703,'english','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:15:25','2020-04-26 04:15:25'),(8704,'geography','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:21:18','2020-04-26 04:21:18'),(8705,'economics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:38:52','2020-04-26 04:38:52'),(8706,'currentaffairs','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 05:01:46','2020-04-26 05:01:46'),(8707,'crk','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:37:57','2020-04-26 07:37:57'),(8708,'geography','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:39:49','2020-04-26 07:39:49'),(8709,'englishlit','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:24:17','2020-04-26 08:24:17'),(8710,'commerce','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:32:11','2020-04-26 08:32:11'),(8711,'biology','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:36:32','2020-04-26 08:36:32'),(8712,'mathematics','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:08:49','2020-04-26 09:08:49'),(8713,'english','34.207.68.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:44:24','2020-04-26 09:44:24'),(8714,'mathematics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:12:46','2020-04-26 11:12:46'),(8715,'physics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:15:20','2020-04-26 11:15:20'),(8716,'crk','54.152.233.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 12:24:21','2020-04-26 12:24:21'),(8717,'mathematics','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:36:48','2020-04-26 14:36:48'),(8718,'biology','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:55:09','2020-04-26 14:55:09'),(8719,'economics','18.215.246.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 21:05:56','2020-04-26 21:05:56'),(8720,'mathematics','3.81.151.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 01:31:08','2020-04-27 01:31:08'),(8721,'biology','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:05','2020-04-27 02:58:05'),(8722,'chemistry','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:38','2020-04-27 02:58:38'),(8723,'accounting','34.235.166.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 03:48:21','2020-04-27 03:48:21'),(8724,'history','54.224.76.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 05:14:17','2020-04-27 05:14:17'),(8725,'chemistry','52.201.249.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 08:03:17','2020-04-27 08:03:17'),(8726,'biology','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8727,'physics','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8728,'crk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8729,'geography','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8730,'irk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8731,'insurance','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8732,'history','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8733,'chemistry','54.234.116.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:51'),(8734,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8735,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8736,'government','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:13:02','2020-04-27 10:13:02'),(8737,'physics','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:23:37','2020-04-27 11:23:37'),(8738,'commerce','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:41:20','2020-04-27 11:41:20'),(8739,'chemistry','99.7.238.16',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:37:52','2020-04-27 13:42:57'),(8740,'physics','99.7.238.16',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:43:03','2020-04-27 13:43:03'),(8741,'chemistry','77.88.5.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:54:22','2020-04-27 13:54:22'),(8742,'biology','3.88.17.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:37:10','2020-04-27 14:37:10'),(8743,'mathematics','197.210.8.233',680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:44:44','2020-04-27 15:08:49'),(8744,'chemistry','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8745,'english','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8746,'physics','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8747,'economics','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:20:06','2020-04-27 20:20:06'),(8748,'commerce','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:39:52','2020-04-27 20:39:52'),(8749,'history','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:49:28','2020-04-27 20:49:28'),(8750,'government','107.21.137.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 02:38:07','2020-04-28 02:38:07'),(8751,'commerce','3.95.203.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 05:37:46','2020-04-28 05:37:46'),(8752,'crk','3.91.54.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:01:44','2020-04-28 07:01:44'),(8753,'geography','18.212.75.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:55:58','2020-04-28 07:55:58'),(8754,'physics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8755,'english','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8756,'mathematics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8757,'chemistry','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8758,'chemistry','196.222.104.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:11:38','2020-04-28 10:21:09'),(8759,'physics','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8760,'chemistry','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8761,'crk','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8762,'geography','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8763,'economics','18.209.104.117',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 11:04:14'),(8764,'currentaffairs','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8765,'history','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8766,'economics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:46:56','2020-04-28 11:46:56'),(8767,'english','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:47:28','2020-04-28 11:47:28'),(8768,'commerce','105.112.70.76',56,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:08:02','2020-04-28 13:10:12'),(8769,'accounting','105.112.70.76',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:11:44','2020-04-28 13:22:13'),(8770,'biology','105.112.70.76',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:29:15','2020-04-28 12:29:15'),(8771,'government','3.84.75.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 13:46:11','2020-04-28 13:46:11'),(8772,'economics','3.80.87.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 14:32:49','2020-04-28 14:32:49'),(8773,'physics','54.210.29.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:28:17','2020-04-28 15:28:17'),(8774,'insurance','197.210.227.65',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:30:30','2020-04-28 16:09:26'),(8775,'insurance','197.210.227.77',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:32:37','2020-04-28 15:41:11'),(8776,'accounting','197.210.227.77',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:38:20','2020-04-28 16:20:02'),(8777,'insurance','197.210.227.25',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:43:40','2020-04-28 17:43:09'),(8778,'insurance','197.210.226.63',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:02:54','2020-04-28 17:36:29'),(8779,'insurance','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:05:09','2020-04-28 16:05:11'),(8780,'englishlit','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:47','2020-04-28 16:07:49'),(8781,'government','197.210.227.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:51','2020-04-28 16:07:53'),(8782,'currentaffairs','197.210.226.63',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:54','2020-04-28 17:56:54'),(8783,'economics','197.210.227.25',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:58','2020-04-28 17:33:39'),(8784,'geography','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:02','2020-04-28 16:20:19'),(8785,'english','197.210.227.25',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:06','2020-04-28 17:57:58'),(8786,'mathematics','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:09','2020-04-28 16:09:56'),(8787,'commerce','197.210.227.25',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:13','2020-04-28 17:33:53'),(8788,'biology','197.210.227.25',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:17','2020-04-28 17:44:06'),(8789,'physics','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:20','2020-04-28 16:10:08'),(8790,'crk','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:28','2020-04-28 16:10:15'),(8791,'history','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:32','2020-04-28 16:08:35'),(8792,'irk','197.210.227.233',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:36','2020-04-28 16:08:38'),(8793,'civiledu','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:39','2020-04-28 17:47:22'),(8794,'accounting','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:28','2020-04-28 16:09:30'),(8795,'englishlit','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:32','2020-04-28 16:09:34'),(8796,'government','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:35','2020-04-28 16:09:38'),(8797,'currentaffairs','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:39','2020-04-28 16:09:41'),(8798,'economics','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:42','2020-04-28 16:09:45'),(8799,'geography','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:46','2020-04-28 16:09:48'),(8800,'english','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:50','2020-04-28 16:09:52'),(8801,'commerce','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:58','2020-04-28 16:10:00'),(8802,'biology','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:02','2020-04-28 16:10:04'),(8803,'chemistry','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:09','2020-04-28 16:10:12'),(8804,'history','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:17','2020-04-28 16:10:19'),(8805,'irk','197.210.226.63',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:20','2020-04-28 16:10:22'),(8806,'civiledu','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:23','2020-04-28 16:10:25'),(8807,'government','3.80.238.158',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:15:49','2020-04-28 16:15:49'),(8808,'englishlit','197.210.226.63',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:03','2020-04-28 17:41:09'),(8809,'government','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:06','2020-04-28 17:56:50'),(8810,'currentaffairs','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:10','2020-04-28 17:46:35'),(8811,'economics','197.210.226.63',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:14','2020-04-28 17:45:40'),(8812,'mathematics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:24','2020-04-28 17:46:51'),(8813,'physics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:35','2020-04-28 17:47:04'),(8814,'chemistry','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:40','2020-04-28 17:47:08'),(8815,'crk','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:45','2020-04-28 17:47:11'),(8816,'history','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:49','2020-04-28 16:20:51'),(8817,'irk','197.210.227.77',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:04','2020-04-28 16:21:05'),(8818,'civiledu','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:07','2020-04-28 16:21:10'),(8819,'geography','3.93.153.210',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:54:50','2020-04-28 17:00:53'),(8820,'accounting','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:23','2020-04-28 17:47:35'),(8821,'englishlit','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:26','2020-04-28 17:47:39'),(8822,'government','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:30','2020-04-28 17:46:31'),(8823,'currentaffairs','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:33','2020-04-28 17:36:51'),(8824,'geography','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:41','2020-04-28 17:33:43'),(8825,'mathematics','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:48','2020-04-28 17:33:50'),(8826,'chemistry','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:02','2020-04-28 17:39:24'),(8827,'history','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:09','2020-04-28 17:47:15'),(8828,'irk','197.210.227.25',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:13','2020-04-28 17:44:24'),(8829,'civiledu','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:15','2020-04-28 17:56:36'),(8830,'insurance','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:24','2020-04-28 17:55:24'),(8831,'accounting','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:28','2020-04-28 17:44:57'),(8832,'government','197.210.227.122',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:36','2020-04-28 17:45:31'),(8833,'currentaffairs','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:39','2020-04-28 17:55:39'),(8834,'economics','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:43','2020-04-28 17:49:01'),(8835,'geography','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:47','2020-04-28 17:47:55'),(8836,'english','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:50','2020-04-28 17:47:59'),(8837,'insurance','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:54','2020-04-28 17:56:39'),(8838,'accounting','197.210.226.66',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:58','2020-04-28 17:55:28'),(8839,'englishlit','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:02','2020-04-28 17:56:46'),(8840,'geography','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:17','2020-04-28 17:46:43'),(8841,'accounting','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:30','2020-04-28 17:43:13'),(8842,'economics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:52','2020-04-28 17:36:54'),(8843,'geography','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:56','2020-04-28 17:57:18'),(8844,'commerce','197.210.227.96',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:24','2020-04-28 17:46:56'),(8845,'crk','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:39','2020-04-28 17:37:41'),(8846,'irk','197.210.227.1',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:46','2020-04-28 17:47:19'),(8847,'geography','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:55','2020-04-28 17:49:05'),(8848,'english','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:58','2020-04-28 17:55:52'),(8849,'mathematics','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:07','2020-04-28 17:55:55'),(8850,'commerce','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:11','2020-04-28 17:39:13'),(8851,'biology','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:14','2020-04-28 17:39:17'),(8852,'physics','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:18','2020-04-28 17:56:07'),(8853,'crk','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:25','2020-04-28 17:39:27'),(8854,'history','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:28','2020-04-28 17:56:28'),(8855,'irk','197.210.226.66',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:32','2020-04-28 17:56:32'),(8856,'insurance','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:40:58','2020-04-28 17:46:20'),(8857,'government','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:41:11','2020-04-28 17:48:52'),(8858,'currentaffairs','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:35','2020-04-28 17:47:47'),(8859,'economics','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:38','2020-04-28 17:57:01'),(8860,'geography','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:42','2020-04-28 17:43:44'),(8861,'physics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:07','2020-04-28 17:44:09'),(8862,'crk','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:14','2020-04-28 17:48:22'),(8863,'history','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:18','2020-04-28 17:44:21'),(8864,'civiledu','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:25','2020-04-28 17:44:44'),(8865,'englishlit','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:45:04','2020-04-28 17:45:06'),(8866,'english','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:44','2020-04-28 17:46:47'),(8867,'biology','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:57','2020-04-28 17:56:03'),(8868,'insurance','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:47:29','2020-04-28 17:47:32'),(8869,'mathematics','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:00','2020-04-28 17:48:03'),(8870,'commerce','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:05','2020-04-28 17:48:07'),(8871,'biology','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:08','2020-04-28 17:48:11'),(8872,'chemistry','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:16','2020-04-28 17:48:19'),(8873,'history','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:24','2020-04-28 17:48:27'),(8874,'englishlit','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:29','2020-04-28 17:55:32'),(8875,'government','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:33','2020-04-28 17:55:35'),(8876,'economics','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:41','2020-04-28 17:55:44'),(8877,'commerce','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:56','2020-04-28 17:55:59'),(8878,'chemistry','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:08','2020-04-28 17:56:10'),(8879,'crk','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:22','2020-04-28 17:56:24'),(8880,'accounting','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:41','2020-04-28 17:56:43'),(8881,'government','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:16','2020-04-28 18:02:16'),(8882,'commerce','105.112.16.71',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:49','2020-04-28 18:02:49'),(8883,'biology','105.112.16.71',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:06:21','2020-04-28 18:11:14'),(8884,'english','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:20:03','2020-04-28 18:20:03'),(8885,'commerce','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:32:41','2020-04-28 18:32:41'),(8886,'accounting','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:33:53','2020-04-28 18:33:53'),(8887,'biology','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:55:42','2020-04-28 18:55:42'),(8888,'history','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:58:00','2020-04-28 18:58:00'),(8889,'chemistry','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:04:13','2020-04-28 19:04:13'),(8890,'chemistry','41.217.104.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:28:12','2020-04-28 19:28:26'),(8891,'economics','35.175.150.1',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 20:02:33','2020-04-28 20:02:33'),(8892,'commerce','52.23.234.72',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:03:58','2020-04-28 21:03:58'),(8893,'commerce','105.112.176.198',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:35:39','2020-04-28 22:06:40'),(8894,'biology','105.112.176.198',21,'','NG','','Lagos',NULL,NULL,'','','2020-04-28 21:49:14','2020-04-28 23:16:53'),(8895,'accounting','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:07:36','2020-04-28 22:07:37'),(8896,'mathematics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:15:12','2020-04-28 22:15:12'),(8897,'physics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:19:21','2020-04-28 22:19:21'),(8898,'government','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:21:48','2020-04-28 22:21:48'),(8899,'insurance','34.229.212.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 23:55:04','2020-04-28 23:55:04'),(8900,'english','35.170.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 01:09:28','2020-04-29 01:09:28'),(8901,'crk','54.204.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 02:49:37','2020-04-29 02:49:37'),(8902,'crk','34.229.217.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 08:41:40','2020-04-29 08:41:40'),(8903,'chemistry','52.54.222.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 09:31:21','2020-04-29 09:31:21'),(8904,'physics','3.86.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 11:56:45','2020-04-29 11:56:45'),(8905,'english','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:13:54','2020-04-29 14:13:54'),(8906,'currentaffairs','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:28:47','2020-04-29 14:28:47'),(8907,'crk','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 16:51:12','2020-04-29 16:51:12'),(8908,'mathematics','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:19:40','2020-04-29 17:19:40'),(8909,'biology','105.112.176.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:26:33','2020-04-29 18:09:50'),(8910,'commerce','105.112.176.237',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:29:23','2020-04-29 18:01:40'),(8911,'englishlit','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:42:30','2020-04-29 17:42:30'),(8912,'accounting','105.112.176.237',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:02:58','2020-04-29 18:02:58'),(8913,'biology','105.112.179.192',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:33:15','2020-04-29 19:16:31'),(8914,'currentaffairs','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:36:50','2020-04-29 18:36:50'),(8915,'economics','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:47:33','2020-04-29 18:47:33'),(8916,'physics','105.112.179.192',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:05:41','2020-04-29 19:30:14'),(8917,'englishlit','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:09:49','2020-04-29 19:09:49'),(8918,'mathematics','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:10:38','2020-04-29 19:10:38'),(8919,'commerce','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:41:21','2020-04-29 19:41:21'),(8920,'chemistry','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:58:11','2020-04-29 19:58:11'),(8921,'government','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:21:57','2020-04-29 20:21:57'),(8922,'commerce','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:18','2020-04-29 20:27:18'),(8923,'commerce','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:44','2020-04-29 20:27:44'),(8924,'english','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:28:17','2020-04-29 21:37:09'),(8925,'biology','105.112.24.82',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:47:45','2020-04-29 22:13:57'),(8926,'government','3.87.44.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:09:09','2020-04-29 21:09:09'),(8927,'accounting','105.112.24.82',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:11:05','2020-04-29 22:06:33'),(8928,'mathematics','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:43','2020-04-29 21:59:17'),(8929,'physics','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:54','2020-04-29 21:36:55'),(8930,'chemistry','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 22:39:32','2020-04-29 22:39:32'),(8931,'chemistry','54.36.148.219',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 23:51:25','2020-04-29 23:51:25'),(8932,'chemistry','54.36.148.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:02:17','2020-04-30 00:02:17'),(8933,'chemistry','54.36.148.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:13:27','2020-04-30 00:13:27'),(8934,'physics','3.95.148.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:16:11','2020-04-30 00:16:11'),(8935,'chemistry','54.36.148.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:24:14','2020-04-30 00:24:14'),(8936,'chemistry','54.36.148.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:57:32','2020-04-30 00:57:32'),(8937,'chemistry','54.36.148.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 01:26:38','2020-04-30 01:26:38'),(8938,'english','3.83.49.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 04:59:57','2020-04-30 04:59:57'),(8939,'physics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 11:48:10','2020-04-30 11:48:12'),(8940,'mathematics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:14:32','2020-04-30 12:14:35'),(8941,'accounting','3.90.113.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:48:25','2020-04-30 12:48:25'),(8942,'geography','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:50:57','2020-04-30 12:50:59'),(8943,'commerce','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:51:24','2020-04-30 12:51:26'),(8944,'physics','54.167.205.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 13:29:15','2020-04-30 13:29:15'),(8945,'insurance','54.160.135.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 16:43:16','2020-04-30 16:43:16'),(8946,'chemistry','157.55.39.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:40:23','2020-04-30 17:40:23'),(8947,'insurance','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:56:54','2020-04-30 17:59:10'),(8948,'currentaffairs','197.210.53.138',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:10','2020-04-30 18:08:22'),(8949,'economics','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:15','2020-04-30 17:59:31'),(8950,'geography','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:18','2020-04-30 18:00:52'),(8951,'english','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:22','2020-04-30 17:59:44'),(8952,'commerce','197.210.53.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:29','2020-04-30 17:57:31'),(8953,'physics','197.210.52.197',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:39','2020-04-30 18:01:14'),(8954,'history','197.210.53.151',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:53','2020-04-30 18:13:42'),(8955,'irk','197.210.53.138',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:58','2020-04-30 18:13:47'),(8956,'civiledu','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:01','2020-04-30 17:59:07'),(8957,'insurance','197.210.52.197',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:05','2020-04-30 17:58:07'),(8958,'government','197.210.53.151',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:16','2020-04-30 17:58:18'),(8959,'currentaffairs','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:20','2020-04-30 17:58:22'),(8960,'geography','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:28','2020-04-30 17:58:31'),(8961,'biology','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:43','2020-04-30 17:58:46'),(8962,'physics','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:47','2020-04-30 18:08:48'),(8963,'irk','197.210.52.31',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:01','2020-04-30 18:01:32'),(8964,'accounting','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:12','2020-04-30 17:59:14'),(8965,'englishlit','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:15','2020-04-30 18:12:52'),(8966,'government','197.210.52.67',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:19','2020-04-30 18:12:56'),(8967,'currentaffairs','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:23','2020-04-30 18:10:46'),(8968,'geography','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:37','2020-04-30 17:59:39'),(8969,'mathematics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:46','2020-04-30 18:01:00'),(8970,'commerce','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:51','2020-04-30 17:59:53'),(8971,'biology','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:56','2020-04-30 18:08:45'),(8972,'chemistry','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:07','2020-04-30 18:00:09'),(8973,'crk','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:11','2020-04-30 18:00:13'),(8974,'history','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:16','2020-04-30 18:11:26'),(8975,'irk','197.210.52.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:20','2020-04-30 18:00:21'),(8976,'civiledu','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:22','2020-04-30 18:00:25'),(8977,'insurance','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:26','2020-04-30 18:10:30'),(8978,'accounting','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:30','2020-04-30 18:10:34'),(8979,'englishlit','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:34','2020-04-30 18:10:38'),(8980,'government','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:38','2020-04-30 18:00:40'),(8981,'currentaffairs','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:42','2020-04-30 18:12:59'),(8982,'economics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:46','2020-04-30 18:13:04'),(8983,'english','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:54','2020-04-30 18:00:56'),(8984,'commerce','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:03','2020-04-30 18:13:19'),(8985,'biology','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:07','2020-04-30 18:11:09'),(8986,'chemistry','197.210.52.197',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:16','2020-04-30 18:13:31'),(8987,'crk','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:21','2020-04-30 18:01:23'),(8988,'civiledu','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:34','2020-04-30 18:01:36'),(8989,'insurance','197.210.52.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:05','2020-04-30 18:12:44'),(8990,'englishlit','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:12','2020-04-30 18:08:15'),(8991,'government','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:16','2020-04-30 18:08:18'),(8992,'economics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:24','2020-04-30 18:10:50'),(8993,'english','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:31','2020-04-30 18:08:33'),(8994,'chemistry','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:50','2020-04-30 18:08:52'),(8995,'history','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:56','2020-04-30 18:08:59'),(8996,'irk','197.210.52.197',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:00','2020-04-30 18:09:02'),(8997,'civiledu','197.210.53.138',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:03','2020-04-30 18:13:51'),(8998,'geography','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:52','2020-04-30 18:10:54'),(8999,'english','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:56','2020-04-30 18:10:58'),(9000,'mathematics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:59','2020-04-30 18:13:16'),(9001,'commerce','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:03','2020-04-30 18:11:05'),(9002,'physics','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:11','2020-04-30 18:11:14'),(9003,'crk','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:20','2020-04-30 18:11:22'),(9004,'irk','197.210.53.91',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:28','2020-04-30 18:11:29'),(9005,'civiledu','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:31','2020-04-30 18:11:33'),(9006,'accounting','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:12:46','2020-04-30 18:12:48'),(9007,'geography','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:05','2020-04-30 18:13:08'),(9008,'english','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:09','2020-04-30 18:13:12'),(9009,'biology','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:21','2020-04-30 18:13:23'),(9010,'physics','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:25','2020-04-30 18:13:28'),(9011,'chemistry','129.205.113.173',4,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:44:54','2020-04-30 18:51:44'),(9012,'chemistry','40.77.167.109',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 19:59:37','2020-04-30 19:59:37'),(9013,'chemistry','18.212.194.164',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 22:59:35','2020-04-30 22:59:35'),(9014,'mathematics','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:52:42','2020-04-30 23:52:43'),(9015,'chemistry','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:32','2020-04-30 23:58:33'),(9016,'biology','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:49','2020-04-30 23:58:50'),(9017,'physics','197.210.63.5',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9018,'mathematics','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9019,'chemistry','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9020,'english','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9021,'english','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9022,'accounting','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9023,'chemistry','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9024,'government','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9025,'economics','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:09'),(9026,'irk','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9027,'civiledu','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9028,'chemistry','54.152.163.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 06:38:44','2020-05-01 06:38:44'),(9029,'civiledu','54.85.192.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 07:42:44','2020-05-01 07:42:44'),(9030,'chemistry','50.66.43.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 08:44:35','2020-05-01 08:44:35'),(9031,'accounting','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:23:43','2020-05-01 09:23:45'),(9032,'biology','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:26:39','2020-05-01 09:26:41'),(9033,'chemistry','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:28:41','2020-05-01 09:28:43'),(9034,'commerce','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:31:07','2020-05-01 09:31:09'),(9035,'geography','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:32:07','2020-05-01 09:32:09'),(9036,'government','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:33:07','2020-05-01 09:33:09'),(9037,'englishlit','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:34:23','2020-05-01 09:34:25'),(9038,'english','3.92.79.199',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:35:10','2020-05-01 09:36:06'),(9039,'physics','54.197.3.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:32','2020-05-01 09:36:32'),(9040,'history','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:45','2020-05-01 09:36:47'),(9041,'physics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:37:23','2020-05-01 09:37:25'),(9042,'crk','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:02','2020-05-01 09:38:04'),(9043,'irk','3.92.79.199',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:36','2020-05-01 09:38:37'),(9044,'mathematics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:40:07','2020-05-01 09:40:09'),(9045,'civiledu','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:44:20','2020-05-01 09:44:22'),(9046,'insurance','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:45:12','2020-05-01 09:45:14'),(9047,'mathematics','18.212.127.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 10:27:34','2020-05-01 10:27:34'),(9048,'chemistry','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 11:53:35','2020-05-01 11:53:35'),(9049,'civiledu','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:07:15','2020-05-01 12:07:15'),(9050,'geography','35.171.18.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:48:39','2020-05-01 12:48:39'),(9051,'accounting','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 13:58:07','2020-05-01 15:50:39'),(9052,'english','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:12:28','2020-05-01 15:32:24'),(9053,'government','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:27:18','2020-05-01 15:42:41'),(9054,'geography','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:34:50','2020-05-01 14:34:50'),(9055,'irk','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:40:41','2020-05-01 15:22:36'),(9056,'economics','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:52:00','2020-05-01 15:03:28'),(9057,'chemistry','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:13:35','2020-05-01 15:13:35'),(9058,'civiledu','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:59:12','2020-05-01 15:59:12'),(9059,'physics','54.147.40.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 17:31:20','2020-05-01 17:31:20'),(9060,'englishlit','3.80.145.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:30:32','2020-05-01 18:30:32'),(9061,'geography','3.81.84.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:59:33','2020-05-01 18:59:33'),(9062,'mathematics','54.152.182.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 19:39:12','2020-05-01 19:39:12'),(9063,'currentaffairs','54.147.140.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 20:19:55','2020-05-01 20:46:03'),(9064,'mathematics','18.232.86.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 01:07:21','2020-05-02 01:07:21'),(9065,'physics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 02:21:54','2020-05-02 02:21:54'),(9066,'mathematics','54.159.74.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 05:28:06','2020-05-02 05:28:06'),(9067,'mathematics','3.95.199.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 11:49:15','2020-05-02 11:49:54'),(9068,'geography','54.160.152.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 12:51:05','2020-05-02 12:51:05'),(9069,'accounting','54.242.134.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 13:44:35','2020-05-02 13:44:35'),(9070,'civiledu','54.80.130.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 14:38:04','2020-05-02 14:38:04'),(9071,'insurance','34.227.221.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 16:37:38','2020-05-02 16:37:38'),(9072,'chemistry','34.226.155.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 17:58:23','2020-05-02 18:51:09'),(9073,'history','34.226.155.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 18:31:23','2020-05-02 18:31:23'),(9074,'mathematics','54.166.138.44',41,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-02 21:12:05','2020-05-03 16:51:28'),(9075,'english','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:19','2020-05-02 21:57:19'),(9076,'commerce','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9077,'physics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9078,'geography','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9079,'economics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9080,'civiledu','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9081,'insurance','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9082,'chemistry','3.83.147.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 22:48:32','2020-05-02 22:48:32'),(9083,'currentaffairs','107.21.76.29',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:19:42','2020-05-03 05:43:14'),(9084,'mathematics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:23:15','2020-05-03 05:35:39'),(9085,'commerce','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:24:10','2020-05-03 05:36:03'),(9086,'accounting','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:18','2020-05-03 05:36:47'),(9087,'biology','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:59','2020-05-03 05:37:26'),(9088,'physics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:26:47','2020-05-03 05:38:06'),(9089,'chemistry','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:27:25','2020-05-03 05:38:29'),(9090,'englishlit','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:16','2020-05-03 05:38:53'),(9091,'government','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:51','2020-05-03 05:39:37'),(9092,'crk','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:29:36','2020-05-03 05:40:00'),(9093,'geography','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:30:23','2020-05-03 05:40:40'),(9094,'economics','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:07','2020-05-03 05:41:19'),(9095,'irk','107.21.76.29',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:39','2020-05-03 05:41:43'),(9096,'civiledu','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:32:21','2020-05-03 05:42:07'),(9097,'insurance','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:33:00','2020-05-03 05:42:48'),(9098,'history','107.21.76.29',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:34:12','2020-05-03 05:44:29'),(9099,'english','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:17'),(9100,'mathematics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:16'),(9101,'commerce','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9102,'biology','3.83.109.40',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9103,'englishlit','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9104,'accounting','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9105,'crk','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9106,'currentaffairs','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9107,'physics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9108,'economics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9109,'history','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9110,'government','3.83.55.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:34:46','2020-05-03 09:34:46'),(9111,'economics','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9112,'english','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:36'),(9113,'commerce','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9114,'accounting','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9115,'geography','54.235.52.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 11:00:21','2020-05-03 11:00:21'),(9116,'commerce','54.146.7.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 12:56:31','2020-05-03 12:56:31'),(9117,'economics','54.91.125.121',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 15:12:25','2020-05-03 15:12:25'),(9118,'mathematics','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:18:04','2020-05-03 16:18:04'),(9119,'englishlit','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:19:28','2020-05-03 16:19:28'),(9120,'commerce','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:02','2020-05-03 16:52:05'),(9121,'accounting','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:26','2020-05-03 16:52:28'),(9122,'biology','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:51','2020-05-03 16:52:53'),(9123,'physics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:53:34','2020-05-03 16:53:36'),(9124,'chemistry','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:00','2020-05-03 16:54:02'),(9125,'englishlit','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:48','2020-05-03 16:54:51'),(9126,'government','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:55:31','2020-05-03 16:55:34'),(9127,'crk','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:56:11','2020-05-03 16:56:13'),(9128,'geography','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:04','2020-05-03 16:57:06'),(9129,'economics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:24','2020-05-03 16:57:26'),(9130,'irk','54.166.138.44',30,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:51','2020-05-03 16:57:53'),(9131,'civiledu','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:17','2020-05-03 16:58:19'),(9132,'insurance','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:58','2020-05-03 16:59:00'),(9133,'currentaffairs','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:59:20','2020-05-03 16:59:22'),(9134,'history','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:00:11','2020-05-03 17:50:17'),(9135,'mathematics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:10','2020-05-03 17:43:43'),(9136,'commerce','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:38','2020-05-03 17:44:06'),(9137,'accounting','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:04','2020-05-03 17:44:35'),(9138,'biology','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:28','2020-05-03 17:44:59'),(9139,'physics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:59','2020-05-03 17:45:22'),(9140,'chemistry','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:03:27','2020-05-03 17:45:51'),(9141,'englishlit','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:02','2020-05-03 17:46:17'),(9142,'crk','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:28','2020-05-03 17:47:18'),(9143,'government','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:57','2020-05-03 17:46:53'),(9144,'geography','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:27','2020-05-03 17:47:43'),(9145,'economics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:55','2020-05-03 17:48:08'),(9146,'irk','3.95.205.237',180,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:29','2020-05-03 17:48:30'),(9147,'civiledu','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:57','2020-05-03 17:48:54'),(9148,'insurance','3.95.205.237',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:23','2020-05-03 17:49:18'),(9149,'currentaffairs','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:55','2020-05-03 17:49:38'),(9150,'insurance','18.234.85.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:51:52','2020-05-03 17:51:52'),(9151,'chemistry','54.81.105.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 19:38:19','2020-05-03 19:38:19'),(9152,'civiledu','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:43:29','2020-05-03 19:43:29'),(9153,'englishlit','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:54:13','2020-05-03 19:54:13'),(9154,'chemistry','105.112.115.225',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 20:27:24','2020-05-03 20:27:24'),(9155,'crk','34.233.133.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 21:37:40','2020-05-03 21:37:40'),(9156,'english','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 23:39:58','2020-05-03 23:39:58'),(9157,'crk','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 00:00:14','2020-05-04 00:00:14'),(9158,'english','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9159,'english','34.201.133.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9160,'physics','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9161,'accounting','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9162,'englishlit','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9163,'geography','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9164,'government','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9165,'economics','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9166,'civiledu','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9167,'irk','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9168,'insurance','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9169,'crk','54.146.129.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 04:53:02','2020-05-04 04:53:02'),(9170,'biology','54.82.169.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 05:39:54','2020-05-04 05:39:54'),(9171,'government','18.212.134.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 07:54:46','2020-05-04 07:54:46'),(9172,'chemistry','41.190.3.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 08:37:26','2020-05-04 08:37:29'),(9173,'chemistry','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:07:07','2020-05-04 09:07:07'),(9174,'economics','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:24:40','2020-05-04 09:24:40'),(9175,'mathematics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:05:23','2020-05-04 10:16:55'),(9176,'commerce','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:06:28','2020-05-04 10:17:26'),(9177,'accounting','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:07:00','2020-05-04 10:18:01'),(9178,'biology','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:17','2020-05-04 10:18:33'),(9179,'physics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:52','2020-05-04 10:18:59'),(9180,'chemistry','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:09:47','2020-05-04 10:19:29'),(9181,'chemistry','197.211.53.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:17','2020-05-04 10:10:17'),(9182,'englishlit','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:27','2020-05-04 10:20:35'),(9183,'government','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:11','2020-05-04 10:21:10'),(9184,'crk','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:46','2020-05-04 10:21:49'),(9185,'economics','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:14','2020-05-04 10:22:21'),(9186,'geography','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:42','2020-05-04 10:22:44'),(9187,'irk','54.226.73.173',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:13:40','2020-05-04 10:23:05'),(9188,'civiledu','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:14:36','2020-05-04 10:24:07'),(9189,'insurance','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:05','2020-05-04 10:24:41'),(9190,'currentaffairs','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:37','2020-05-04 10:25:21'),(9191,'history','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:16:05','2020-05-04 10:25:43'),(9192,'physics','34.230.85.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 11:44:10','2020-05-04 11:44:10'),(9193,'englishlit','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 12:53:41','2020-05-04 12:53:41'),(9194,'currentaffairs','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 13:03:08','2020-05-04 13:03:08'),(9195,'english','54.91.147.136',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 13:59:39','2020-05-04 14:10:23'),(9196,'crk','54.167.221.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 16:21:35','2020-05-04 16:21:35'),(9197,'mathematics','34.227.100.151',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 18:01:31','2020-05-04 18:53:32'),(9198,'commerce','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:06','2020-05-04 18:53:59'),(9199,'accounting','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:40','2020-05-04 18:54:21'),(9200,'biology','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:08','2020-05-04 18:54:50'),(9201,'physics','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:52','2020-05-04 18:48:01'),(9202,'chemistry','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:22','2020-05-04 18:55:24'),(9203,'englishlit','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:55','2020-05-04 18:55:50'),(9204,'government','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:06:25','2020-05-04 18:56:46'),(9205,'irk','34.227.100.151',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:05','2020-05-04 18:58:12'),(9206,'geography','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:32','2020-05-04 18:57:53'),(9207,'economics','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:56','2020-05-04 18:57:27'),(9208,'crk','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:08:29','2020-05-04 18:57:05'),(9209,'civiledu','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:22','2020-05-04 18:58:33'),(9210,'insurance','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:52','2020-05-04 18:59:01'),(9211,'currentaffairs','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:10:36','2020-05-04 18:59:20'),(9212,'history','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:11:01','2020-05-04 18:59:44'),(9213,'englishlit','54.91.12.60',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:19:14','2020-05-04 18:19:14'),(9214,'english','34.227.100.151',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:41:22','2020-05-04 18:56:16'),(9215,'chemistry','77.88.5.170',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:43:38','2020-05-04 18:43:38'),(9216,'chemistry','54.90.243.173',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 19:36:36','2020-05-04 19:36:36'),(9217,'economics','18.208.245.55',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 20:24:40','2020-05-04 20:24:40'),(9218,'government','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:34:09','2020-05-04 22:34:09'),(9219,'crk','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:56:00','2020-05-04 22:56:00'),(9220,'english','34.230.41.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 01:39:36','2020-05-05 01:39:36'),(9221,'english','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9222,'biology','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9223,'chemistry','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9224,'government','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9225,'irk','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:53'),(9226,'civiledu','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9227,'insurance','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9228,'currentaffairs','54.82.122.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 15:55:27','2020-05-05 15:55:27'),(9229,'currentaffairs','35.171.182.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 17:52:25','2020-05-05 17:52:25'),(9230,'civiledu','54.162.194.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:44:31','2020-05-05 18:44:31'),(9231,'chemistry','105.112.22.22',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:54:47','2020-05-05 18:55:46'),(9232,'economics','3.81.61.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 20:23:57','2020-05-05 20:23:57'),(9233,'civiledu','34.229.1.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:13:48','2020-05-05 21:13:48'),(9234,'english','35.175.224.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:50:44','2020-05-05 21:50:44'),(9235,'english','66.249.64.72',7,'',NULL,'',NULL,NULL,NULL,'','','2020-05-05 22:53:19','2020-05-05 22:53:19'),(9236,'accounting','3.89.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 23:06:38','2020-05-05 23:06:38'),(9237,'biology','66.249.64.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 04:40:45','2020-05-06 04:40:46'),(9238,'biology','3.82.138.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 11:39:57','2020-05-06 11:39:57'),(9239,'government','54.159.33.148',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 15:34:04','2020-05-06 15:34:04'),(9240,'chemistry','54.36.149.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:24:22','2020-05-06 16:24:22'),(9241,'chemistry','54.36.148.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:28:45','2020-05-06 16:28:45'),(9242,'chemistry','54.36.149.15',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:32:20','2020-05-06 16:32:20'),(9243,'chemistry','105.112.52.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 17:44:03','2020-05-06 17:44:03'),(9244,'government','35.153.179.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:00:30','2020-05-06 18:00:30'),(9245,'crk','107.22.153.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:46:09','2020-05-06 18:46:09'),(9246,'insurance','52.207.168.128',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 20:37:45','2020-05-06 20:37:45'),(9247,'crk','54.152.178.63',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 22:54:07','2020-05-06 22:54:07'),(9248,'chemistry','102.89.2.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 23:18:18','2020-05-06 23:18:18'),(9249,'english','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9250,'commerce','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9251,'chemistry','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9252,'government','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9253,'irk','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9254,'civiledu','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9255,'insurance','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:11'),(9256,'chemistry','197.210.46.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:09:52','2020-05-25 11:09:52'),(9257,'chemistry','197.210.198.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:16:21','2020-05-25 11:16:21'),(9258,'chemistry','197.210.53.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:23:10','2020-05-25 11:23:15'),(9259,'chemistry','157.55.39.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:55:56','2020-05-25 11:55:56'),(9260,'commerce','3.94.205.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:06:49','2020-05-25 12:06:49'),(9261,'economics','54.226.128.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:53:03','2020-05-25 12:53:03'),(9262,'crk','54.91.154.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 14:42:35','2020-05-25 14:42:35'),(9263,'mathematics','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:28:22','2020-05-25 15:28:22'),(9264,'chemistry','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:33:33','2020-05-25 15:33:33'),(9265,'economics','54.91.243.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 17:58:39','2020-05-25 17:58:39'),(9266,'mathematics','66.249.66.136',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:15:02','2020-05-25 19:15:05'),(9267,'chemistry','15.236.101.59',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:49:10','2020-05-25 19:51:59'),(9268,'government','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:08:24','2020-05-25 21:08:24'),(9269,'chemistry','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:16:46','2020-05-25 21:16:46'),(9270,'chemistry','197.210.70.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:21:23','2020-05-25 22:21:23'),(9271,'geography','18.212.164.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:31:38','2020-05-25 22:31:38'),(9272,'government','54.81.15.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 23:48:45','2020-05-25 23:48:45'),(9273,'commerce','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 00:35:21','2020-05-26 00:35:21'),(9274,'economics','34.203.224.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 01:14:02','2020-05-26 01:14:02'),(9275,'crk','18.232.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 02:43:23','2020-05-26 02:43:23'),(9276,'insurance','18.212.41.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 04:09:34','2020-05-26 04:09:34'),(9277,'englishlit','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 06:53:11','2020-05-26 06:53:11'),(9278,'chemistry','41.190.31.41',122,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:00:17','2020-05-26 07:07:55'),(9279,'irk','41.190.31.41',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:09:11','2020-05-26 07:09:13'),(9280,'english','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:27','2020-05-26 07:19:27'),(9281,'english','41.190.31.41',839,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:30','2020-05-26 10:55:38'),(9282,'civiledu','54.159.94.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:11:23','2020-05-26 08:11:23'),(9283,'chemistry','105.112.24.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:25:30','2020-05-26 08:25:30'),(9284,'crk','3.87.153.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 09:29:02','2020-05-26 09:29:02'),(9285,'crk','52.90.24.192',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 11:46:19','2020-05-26 11:46:19'),(9286,'physics','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 21:42:14','2020-05-26 21:42:14'),(9287,'english','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:01:46','2020-05-26 22:01:46'),(9288,'chemistry','197.210.84.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:06:54','2020-05-26 22:09:09'),(9289,'currentaffairs','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:28:46','2020-05-26 23:28:46'),(9290,'englishlit','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:33:46','2020-05-26 23:33:46'),(9291,'englishlit','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 02:53:40','2020-05-27 02:53:40'),(9292,'economics','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 03:19:57','2020-05-27 03:19:57'),(9293,'chemistry','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:08:27','2020-05-27 04:08:27'),(9294,'crk','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:26:11','2020-05-27 04:26:11'),(9295,'insurance','18.209.13.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 05:07:33','2020-05-27 05:07:33'),(9296,'government','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:46:52','2020-05-27 06:46:52'),(9297,'crk','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:59:51','2020-05-27 06:59:51'),(9298,'geography','34.201.141.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 08:25:36','2020-05-27 08:25:36'),(9299,'english','3.84.219.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 10:53:47','2020-05-27 10:53:47'),(9300,'chemistry','169.255.236.30',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:14:45','2020-05-27 11:16:08'),(9301,'chemistry','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:29:07','2020-05-27 12:32:12'),(9302,'physics','41.190.30.150',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:34:30','2020-05-27 12:20:54'),(9303,'economics','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:37:24','2020-05-27 12:37:24'),(9304,'government','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:40:47','2020-05-27 12:23:05'),(9305,'biology','41.190.30.150',79,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:43:55','2020-05-27 12:19:37'),(9306,'biology','34.228.70.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:47:18','2020-05-27 11:47:18'),(9307,'mathematics','41.190.30.150',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:48:42','2020-05-27 12:17:48'),(9308,'english','41.190.30.150',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:50:16','2020-05-27 12:13:47'),(9309,'geography','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:53:34','2020-05-27 12:15:29'),(9310,'history','41.190.30.150',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:57:18','2020-05-27 11:57:22'),(9311,'englishlit','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 12:01:50','2020-05-27 12:07:14'),(9312,'chemistry','34.204.193.85',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 15:13:53','2020-05-27 15:45:24'),(9313,'currentaffairs','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:35:28','2020-05-27 17:35:28'),(9314,'civiledu','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:48:39','2020-05-27 17:48:39'),(9315,'chemistry','41.190.14.68',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:10','2020-05-27 17:54:19'),(9316,'english','41.190.14.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:32','2020-05-27 17:51:35'),(9317,'english','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:17:07','2020-05-27 20:17:07'),(9318,'chemistry','94.130.16.50',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:08','2020-05-27 20:36:12'),(9319,'biology','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:43','2020-05-27 20:33:43'),(9320,'accounting','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:51:21','2020-05-27 20:51:21'),(9321,'chemistry','154.66.36.151',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:46:00','2020-05-27 22:52:44'),(9322,'english','154.66.36.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:48:02','2020-05-27 22:48:02'),(9323,'chemistry','105.112.70.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 23:32:12','2020-05-27 23:32:12'),(9324,'chemistry','157.55.39.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 03:31:42','2020-05-28 03:31:42'),(9325,'english','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:40','2020-05-28 04:32:41'),(9326,'mathematics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9327,'biology','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9328,'economics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9329,'irk','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9330,'insurance','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9331,'history','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9332,'chemistry','196.32.235.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:01:12','2020-05-28 05:01:12'),(9333,'chemistry','129.205.112.224',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:51:40','2020-05-28 05:53:11'),(9334,'mathematics','129.205.112.224',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:55:48','2020-05-28 05:59:02'),(9335,'chemistry','82.145.210.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:57:23','2020-05-28 05:57:23'),(9336,'chemistry','185.26.180.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 07:18:49','2020-05-28 07:18:49'),(9337,'geography','54.196.45.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:04:20','2020-05-28 09:04:20'),(9338,'chemistry','197.210.226.225',105,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:25:44','2020-05-28 10:24:13'),(9339,'chemistry','197.210.226.44',55,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:27:16','2020-05-28 10:22:52'),(9340,'chemistry','197.210.227.211',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:30:21','2020-05-28 10:21:54'),(9341,'english','197.210.227.211',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:54:07','2020-05-28 09:54:10'),(9342,'english','197.210.226.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:55:01','2020-05-28 09:55:04'),(9343,'english','197.210.226.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 10:03:53','2020-05-28 10:09:18'),(9344,'physics','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:10:25','2020-05-28 13:10:25'),(9345,'chemistry','197.210.44.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:26:05','2020-05-28 13:26:05'),(9346,'government','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:29:47','2020-05-28 13:29:47'),(9347,'chemistry','197.210.52.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:54:51','2020-05-28 14:08:36'),(9348,'chemistry','197.210.52.59',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:57:55','2020-05-28 13:57:55'),(9349,'chemistry','197.210.52.25',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:58:05','2020-05-28 13:58:13'),(9350,'chemistry','197.210.52.232',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:06:52','2020-05-28 14:06:55'),(9351,'chemistry','197.210.53.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:08:55','2020-05-28 14:53:41'),(9352,'chemistry','197.210.52.82',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:19:48','2020-05-28 14:54:31'),(9353,'chemistry','197.210.53.190',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:14','2020-05-28 14:53:55'),(9354,'insurance','197.210.53.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:51','2020-05-28 14:49:51'),(9355,'physics','197.210.53.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:50:15','2020-05-28 14:50:15'),(9356,'mathematics','197.210.53.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:51:48','2020-05-28 14:52:01'),(9357,'mathematics','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:34','2020-05-28 14:52:34'),(9358,'english','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:52','2020-05-28 14:52:52'),(9359,'english','197.210.52.82',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:07','2020-05-28 14:53:16'),(9360,'chemistry','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:33','2020-05-28 14:53:33'),(9361,'insurance','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:20:04','2020-05-28 15:20:04'),(9362,'chemistry','129.205.112.208',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:37:00','2020-05-28 15:38:41'),(9363,'crk','18.208.110.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:19:54','2020-05-28 17:19:54'),(9364,'chemistry','129.56.80.227',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:42:36','2020-05-28 17:57:17'),(9365,'chemistry','197.210.226.198',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 18:07:17','2020-05-28 19:14:47'),(9366,'chemistry','197.210.226.91',1562,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:09:38','2020-05-28 20:03:58'),(9367,'chemistry','197.210.226.220',2081,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:11:37','2020-05-28 20:03:48'),(9368,'english','197.210.226.220',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:05:42','2020-05-28 20:15:39'),(9369,'english','197.210.226.91',1080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:06:07','2020-05-28 20:15:26'),(9370,'english','197.210.226.198',2840,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:07:48','2020-05-28 20:15:35'),(9371,'mathematics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:07','2020-05-28 20:23:22'),(9372,'mathematics','197.210.226.91',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:15','2020-05-28 20:25:33'),(9373,'biology','197.210.226.198',1480,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:01','2020-05-28 20:41:32'),(9374,'biology','197.210.226.91',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:14','2020-05-28 20:41:25'),(9375,'civiledu','197.210.226.198',1960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:42:54','2020-05-28 21:07:50'),(9376,'civiledu','197.210.226.91',1560,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:43:16','2020-05-28 21:09:58'),(9377,'civiledu','197.210.226.220',1320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:45:38','2020-05-28 21:10:08'),(9378,'physics','197.210.226.220',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:19','2020-05-28 20:49:51'),(9379,'physics','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:27','2020-05-28 20:49:39'),(9380,'government','197.210.226.91',1400,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:05','2020-05-28 20:57:45'),(9381,'government','197.210.226.220',960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:12','2020-05-28 20:57:41'),(9382,'government','197.210.226.198',1680,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:52:42','2020-05-28 20:56:48'),(9383,'insurance','197.210.226.91',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:58:57','2020-05-28 21:03:46'),(9384,'insurance','197.210.226.220',1360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:59:01','2020-05-28 21:03:58'),(9385,'history','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:48','2020-05-28 21:02:54'),(9386,'history','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:53','2020-05-28 21:02:49'),(9387,'geography','197.210.226.91',760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:05:51','2020-05-28 21:08:55'),(9388,'geography','197.210.226.198',640,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:06:05','2020-05-28 21:07:54'),(9389,'geography','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:07:55','2020-05-28 21:08:51'),(9390,'economics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:09:59','2020-05-28 21:15:23'),(9391,'economics','197.210.226.91',1160,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:15','2020-05-28 21:15:30'),(9392,'economics','197.210.226.198',1720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:42','2020-05-28 21:15:34'),(9393,'commerce','197.210.226.91',1760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:15','2020-05-28 21:17:42'),(9394,'commerce','197.210.226.198',2080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:19','2020-05-28 21:17:46'),(9395,'commerce','197.210.226.220',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:14:56','2020-05-28 21:15:26'),(9396,'geography','3.82.229.138',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 22:59:25','2020-05-28 22:59:25'),(9397,'chemistry','54.36.148.3',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 23:37:10','2020-05-28 23:37:10'),(9398,'chemistry','54.36.148.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:24:10','2020-05-29 00:24:10'),(9399,'chemistry','54.36.148.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:31:09','2020-05-29 00:31:09'),(9400,'geography','54.164.65.241',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:26:22','2020-05-29 01:59:55'),(9401,'economics','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:34:57','2020-05-29 01:34:57'),(9402,'english','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 02:28:56','2020-05-29 02:28:56'),(9403,'mathematics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9404,'biology','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9405,'government','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9406,'geography','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9407,'economics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9408,'currentaffairs','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9409,'history','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9410,'geography','54.164.210.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:31:40','2020-05-29 08:31:40'),(9411,'chemistry','197.210.64.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:43:12','2020-05-29 21:25:53'),(9412,'physics','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:30:46','2020-05-29 09:30:46'),(9413,'englishlit','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:48:29','2020-05-29 09:48:29'),(9414,'biology','3.85.236.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:29:11','2020-05-29 11:29:11'),(9415,'chemistry','34.239.119.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:51:20','2020-05-29 11:51:20'),(9416,'chemistry','185.20.6.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:58:05','2020-05-29 11:58:05'),(9417,'currentaffairs','54.85.98.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 12:25:10','2020-05-29 12:25:10'),(9418,'physics','3.81.136.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 15:59:43','2020-05-29 15:59:43'),(9419,'mathematics','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 16:57:16','2020-05-29 16:57:16'),(9420,'geography','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 17:11:25','2020-05-29 17:11:25'),(9421,'geography','3.86.16.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:01:00','2020-05-29 19:01:00'),(9422,'mathematics','34.229.23.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:42:00','2020-05-29 19:42:00'),(9423,'government','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:04:38','2020-05-29 21:04:38'),(9424,'history','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:37:50','2020-05-29 21:37:50'),(9425,'mathematics','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:09:44','2020-05-29 23:09:44'),(9426,'accounting','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:39:35','2020-05-29 23:39:35'),(9427,'mathematics','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:47'),(9428,'commerce','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:48'),(9429,'accounting','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9430,'biology','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9431,'geography','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9432,'irk','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9433,'currentaffairs','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9434,'accounting','3.89.232.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 08:21:13','2020-05-30 08:21:13'),(9435,'biology','54.208.77.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 11:46:23','2020-05-30 11:46:23'),(9436,'chemistry','144.76.56.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 17:12:22','2020-05-30 17:12:22'),(9437,'accounting','3.94.91.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 18:38:25','2020-05-30 18:38:25'),(9438,'insurance','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 11:49:35','2020-06-01 11:49:35'),(9439,'economics','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 12:10:32','2020-06-01 12:10:32'),(9440,'english','54.159.64.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:04:44','2020-06-01 13:04:44'),(9441,'mathematics','52.2.222.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:49:07','2020-06-01 13:49:07'),(9442,'englishlit','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9443,'crk','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9444,'economics','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:42:44','2020-06-01 14:42:44'),(9445,'crk','54.174.23.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:33:34','2020-06-01 16:33:34'),(9446,'geography','54.174.23.76',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:19','2020-06-01 17:19:55'),(9447,'mathematics','54.174.23.76',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:29','2020-06-01 17:43:19'),(9448,'biology','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9449,'chemistry','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9450,'englishlit','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9451,'government','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9452,'economics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:55','2020-06-01 17:19:55'),(9453,'english','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:18','2020-06-01 17:43:18'),(9454,'accounting','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9455,'physics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9456,'insurance','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:20','2020-06-01 17:43:20'),(9457,'history','3.85.59.140',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 20:12:18','2020-06-01 20:33:55'),(9458,'physics','35.172.115.238',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 23:04:28','2020-06-01 23:04:28'),(9459,'english','54.209.246.16',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 01:03:57','2020-06-02 01:03:57'),(9460,'currentaffairs','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:01:14','2020-06-02 02:01:14'),(9461,'englishlit','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:06:10','2020-06-02 02:06:10'),(9462,'insurance','54.211.248.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 04:46:23','2020-06-02 04:46:23'),(9463,'crk','54.205.222.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 05:30:27','2020-06-02 05:30:27'),(9464,'economics','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:20:56','2020-06-02 06:20:56'),(9465,'chemistry','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:38:36','2020-06-02 06:38:36'),(9466,'englishlit','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 07:02:43','2020-06-02 07:02:43'),(9467,'government','54.196.8.56',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 08:34:31','2020-06-02 08:34:31'),(9468,'geography','54.86.69.81',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 10:40:11','2020-06-02 10:40:11'),(9469,'chemistry','41.190.12.59',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-02 10:55:51','2020-06-02 10:55:54'),(9470,'english','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 12:19:33','2020-06-02 12:19:33'),(9471,'economics','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 23:59:57','2020-06-02 23:59:57'),(9472,'currentaffairs','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 00:22:59','2020-06-03 00:22:59'),(9473,'civiledu','35.173.231.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 02:25:11','2020-06-03 02:25:11'),(9474,'english','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 04:48:53','2020-06-03 05:17:39'),(9475,'accounting','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9476,'government','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9477,'civiledu','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9478,'insurance','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9479,'currentaffairs','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:42'),(9480,'history','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9481,'biology','3.208.9.26',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:51:48','2020-06-03 05:51:48'),(9482,'accounting','3.81.96.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 06:39:27','2020-06-03 06:39:27'),(9483,'economics','34.228.56.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:19:49','2020-06-03 12:19:49'),(9484,'englishlit','34.228.56.210',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:47:48','2020-06-03 12:51:59'),(9485,'mathematics','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9486,'commerce','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9487,'accounting','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9488,'biology','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9489,'englishlit','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9490,'government','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9491,'crk','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9492,'geography','52.91.141.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 18:34:51','2020-06-03 18:34:51'),(9493,'mathematics','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:32','2020-06-03 19:33:45'),(9494,'commerce','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:54','2020-06-03 19:36:09'),(9495,'currentaffairs','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:05','2020-06-03 19:34:05'),(9496,'crk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:11','2020-06-03 19:35:12'),(9497,'chemistry','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:57','2020-06-03 19:36:15'),(9498,'irk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:26','2020-06-03 19:36:00'),(9499,'english','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:36','2020-06-03 19:35:36'),(9500,'englishlit','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:54:43','2020-06-03 19:54:43'),(9501,'government','54.85.212.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 21:33:59','2020-06-03 21:33:59'),(9502,'insurance','3.86.225.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 23:35:47','2020-06-03 23:35:47'),(9503,'crk','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 00:57:31','2020-06-04 00:57:31'),(9504,'physics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:23:50','2020-06-04 06:23:50'),(9505,'mathematics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:34:26','2020-06-04 06:34:26'),(9506,'geography','34.205.74.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 07:10:34','2020-06-04 07:10:34'),(9507,'economics','54.242.18.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 08:36:04','2020-06-04 08:36:04'),(9508,'geography','3.83.161.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:26:27','2020-06-04 10:53:11'),(9509,'english','3.83.161.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:49:32','2020-06-04 10:49:32'),(9510,'mathematics','54.91.240.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 12:15:58','2020-06-04 12:15:58'),(9511,'biology','3.87.239.123',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 15:09:53','2020-06-04 15:09:53'),(9512,'chemistry','41.190.12.5',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-04 15:57:02','2020-06-04 15:57:05'),(9513,'geography','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:22:59','2020-06-04 16:22:59'),(9514,'physics','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:23:13','2020-06-04 16:23:13'),(9515,'englishlit','3.94.109.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:58:33','2020-06-04 16:58:33'),(9516,'currentaffairs','54.159.111.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:11:39','2020-06-04 19:11:39'),(9517,'english','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:37:05','2020-06-04 19:37:08'),(9518,'mathematics','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:44:40','2020-06-04 19:51:52'),(9519,'biology','18.207.247.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:57:06','2020-06-04 19:57:06'),(9520,'physics','54.196.42.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 00:29:32','2020-06-05 00:29:32'),(9521,'geography','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 02:42:52','2020-06-05 02:42:52'),(9522,'government','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:47','2020-06-05 03:06:47'),(9523,'mathematics','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:51','2020-06-05 03:06:51'),(9524,'history','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 07:51:51','2020-06-05 07:51:51'),(9525,'accounting','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 08:06:02','2020-06-05 08:06:02'),(9526,'accounting','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:31','2020-06-05 15:31:38'),(9527,'crk','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:41','2020-06-05 15:31:44'),(9528,'accounting','54.160.137.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 17:41:28','2020-06-05 17:41:28'),(9529,'biology','18.205.22.3',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:49:31','2020-06-05 18:55:02'),(9530,'commerce','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:01','2020-06-05 18:55:02'),(9531,'accounting','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9532,'government','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9533,'economics','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9534,'insurance','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9535,'history','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9536,'history','52.91.27.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 23:09:41','2020-06-05 23:09:41'),(9537,'history','3.85.77.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 01:06:10','2020-06-06 01:06:10'),(9538,'accounting','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:12:01','2020-06-06 03:12:01'),(9539,'chemistry','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:28:00','2020-06-06 03:28:00'),(9540,'irk','3.91.16.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 05:27:37','2020-06-06 05:27:37'),(9541,'english','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9542,'physics','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9543,'englishlit','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9544,'government','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:40'),(9545,'economics','3.90.106.57',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 17:12:22'),(9546,'irk','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9547,'history','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9548,'commerce','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9549,'physics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9550,'chemistry','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9551,'crk','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9552,'economics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9553,'civiledu','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9554,'insurance','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9555,'insurance','52.207.159.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 15:54:55','2020-06-06 15:54:55'),(9556,'economics','52.70.110.33',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 18:01:25','2020-06-06 18:01:25'),(9557,'history','52.90.40.161',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 19:35:54','2020-06-06 20:01:45'),(9558,'accounting','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:44','2020-06-06 20:01:45'),(9559,'biology','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9560,'chemistry','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9561,'crk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9562,'irk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9563,'civiledu','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9564,'history','54.210.221.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 21:37:33','2020-06-06 21:37:33'),(9565,'economics','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:20:46','2020-06-07 00:20:46'),(9566,'englishlit','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:46:15','2020-06-07 00:46:15'),(9567,'english','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9568,'mathematics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9569,'physics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9570,'chemistry','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:16'),(9571,'government','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9572,'crk','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9573,'insurance','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9574,'irk','54.224.8.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 05:20:52','2020-06-07 05:20:52'),(9575,'commerce','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:08:43','2020-06-07 08:08:43'),(9576,'english','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:42:36','2020-06-07 08:42:36'),(9577,'crk','54.221.109.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 10:13:14','2020-06-07 10:13:14'),(9578,'economics','54.225.32.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:34:16','2020-06-07 12:34:16'),(9579,'english','52.72.124.107',400,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:53:32','2020-06-07 13:40:54'),(9580,'government','3.93.176.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 15:19:14','2020-06-07 15:19:14'),(9581,'chemistry','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:21:24','2020-06-07 17:21:24'),(9582,'economics','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:49:48','2020-06-07 17:49:48'),(9583,'government','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:52:13','2020-06-07 17:52:13'),(9584,'geography','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:53:52','2020-06-07 17:53:52'),(9585,'crk','105.112.176.254',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-07 19:15:46','2020-06-07 19:15:48'),(9586,'commerce','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:29:05','2020-06-07 21:29:05'),(9587,'english','54.90.107.82',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:36:38','2020-06-07 22:14:18'),(9588,'insurance','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:52:14','2020-06-07 21:52:14'),(9589,'english','54.83.121.94',680,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 23:24:33','2020-06-08 00:10:20'),(9590,'crk','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 00:57:41','2020-06-08 00:57:41'),(9591,'english','3.80.114.187',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:05:57','2020-06-08 01:07:20'),(9592,'civiledu','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:19:10','2020-06-08 01:19:10'),(9593,'englishlit','54.87.33.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 02:09:25','2020-06-08 02:09:25'),(9594,'english','54.196.250.109',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:14:09','2020-06-08 06:58:08'),(9595,'crk','3.80.171.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:47:50','2020-06-08 07:07:58'),(9596,'english','3.80.171.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:55:00','2020-06-08 06:55:00'),(9597,'english','54.167.101.91',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 13:03:52','2020-06-08 13:05:05'),(9598,'physics','3.95.171.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 15:20:45','2020-06-08 15:20:45'),(9599,'english','52.203.0.65',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 16:36:54','2020-06-08 16:36:54'),(9600,'english','34.201.76.45',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:10:20','2020-06-08 17:17:39'),(9601,'history','34.201.76.45',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:19:47','2020-06-08 17:19:50'),(9602,'englishlit','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:33:25','2020-06-08 17:33:25'),(9603,'currentaffairs','54.204.150.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:27:19','2020-06-08 18:27:19'),(9604,'history','3.87.156.54',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:58:06','2020-06-08 19:42:37'),(9605,'insurance','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:18:35','2020-06-08 20:18:35'),(9606,'crk','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:21:48','2020-06-08 20:21:48'),(9607,'englishlit','18.207.128.248',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:58:53','2020-06-08 20:58:53'),(9608,'chemistry','3.93.176.236',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 21:53:07','2020-06-08 21:53:07'),(9609,'economics','54.82.36.157',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 23:04:51','2020-06-08 23:04:51'),(9610,'government','54.86.240.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:01:33','2020-06-09 00:01:33'),(9611,'crk','3.85.86.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:37:54','2020-06-09 00:37:54'),(9612,'geography','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 02:38:55','2020-06-09 02:38:55'),(9613,'english','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:10:07','2020-06-09 03:10:07'),(9614,'history','3.83.163.75',680,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:12:41','2020-06-09 05:07:42'),(9615,'mathematics','3.83.163.75',320,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:02:16','2020-06-09 04:41:32'),(9616,'english','3.83.163.75',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:41:57','2020-06-09 05:07:46'),(9617,'history','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:33','2020-06-09 10:53:29'),(9618,'english','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:36','2020-06-09 10:53:32'),(9619,'mathematics','52.23.182.126',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 10:54:17','2020-06-09 11:12:18'),(9620,'mathematics','35.175.193.162',1596,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 14:27:00','2020-06-09 16:15:07'),(9621,'economics','54.204.126.52',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 15:24:33','2020-06-09 15:24:33'),(9622,'currentaffairs','54.91.74.154',3,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:21:57','2020-06-09 17:25:11'),(9623,'civiledu','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:24:52','2020-06-09 17:24:52'),(9624,'mathematics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9625,'government','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9626,'crk','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9627,'geography','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9628,'economics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:11'),(9629,'insurance','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:11','2020-06-09 17:25:11'),(9630,'history','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:06','2020-06-09 17:36:08'),(9631,'english','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:09','2020-06-09 17:36:12'),(9632,'history','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:51:30','2020-06-09 17:51:30'),(9633,'english','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 19:54:48','2020-06-09 19:54:48'),(9634,'economics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:09:36','2020-06-09 20:09:36'),(9635,'mathematics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:17:47','2020-06-09 20:17:47'),(9636,'biology','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:20:39','2020-06-09 20:20:39'),(9637,'accounting','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:32:25','2020-06-09 20:32:25'),(9638,'geography','54.175.242.92',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 22:47:17','2020-06-09 22:47:17'),(9639,'mathematics','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9640,'biology','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9641,'chemistry','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9642,'crk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9643,'geography','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:58'),(9644,'irk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9645,'insurance','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9646,'economics','3.94.91.40',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 06:49:53','2020-06-10 06:49:53'),(9647,'english','54.164.250.86',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 07:55:11','2020-06-10 07:55:14'),(9648,'biology','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:01','2020-06-10 10:14:17'),(9649,'english','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:04','2020-06-10 10:14:20'),(9650,'geography','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:43:01','2020-06-10 09:43:01'),(9651,'currentaffairs','34.228.169.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 10:40:47','2020-06-10 10:40:47'),(9652,'physics','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:41','2020-06-10 12:30:40'),(9653,'english','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:51','2020-06-10 12:30:44'),(9654,'physics','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:32:35','2020-06-10 12:32:35'),(9655,'government','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:52:28','2020-06-10 12:52:28'),(9656,'insurance','34.229.159.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 14:58:20','2020-06-10 14:58:20'),(9657,'mathematics','35.173.239.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 15:35:55','2020-06-10 15:35:55'),(9658,'crk','3.86.97.187',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 16:58:01','2020-06-10 16:58:01'),(9659,'history','34.229.88.249',470,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:16','2020-06-10 17:23:26'),(9660,'english','34.229.88.249',482,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:19','2020-06-10 17:23:29'),(9661,'history','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:02','2020-06-10 18:16:04'),(9662,'english','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:05','2020-06-10 18:16:08'),(9663,'mathematics','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:05:59','2020-06-10 22:05:59'),(9664,'geography','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:27:25','2020-06-10 22:27:25'),(9665,'geography','52.72.218.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:19:39','2020-06-11 01:19:39'),(9666,'english','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:59:15','2020-06-11 01:59:15'),(9667,'geography','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 02:27:07','2020-06-11 02:27:07'),(9668,'mathematics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:11:45','2020-06-11 03:11:45'),(9669,'englishlit','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:26:44','2020-06-11 03:26:44'),(9670,'economics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:33:39','2020-06-11 03:33:39'),(9671,'physics','54.237.231.196',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:12:05','2020-06-11 06:34:08'),(9672,'english','54.237.231.196',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:28:30','2020-06-11 06:34:10'),(9673,'geography','54.82.9.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 07:31:00','2020-06-11 07:31:00'),(9674,'physics','34.201.154.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 08:15:39','2020-06-11 08:15:39'),(9675,'englishlit','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:18:15','2020-06-11 09:18:15'),(9676,'currentaffairs','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:53:23','2020-06-11 09:53:23'),(9677,'geography','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 17:57:01','2020-06-11 17:57:01'),(9678,'chemistry','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:07:43','2020-06-11 18:07:43'),(9679,'government','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:18:55','2020-06-11 18:18:55'),(9680,'mathematics','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:29:47','2020-06-11 18:29:47'),(9681,'mathematics','34.204.107.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 20:09:41','2020-06-11 20:09:41'),(9682,'history','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:07:01','2020-06-11 21:07:01'),(9683,'accounting','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:15:15','2020-06-11 21:15:15'),(9684,'mathematics','54.81.240.233',280,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 06:45:16','2020-06-12 07:03:55'),(9685,'mathematics','54.162.119.234',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 07:52:29','2020-06-12 07:54:13'),(9686,'accounting','54.224.233.71',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 08:25:02','2020-06-12 08:25:02'),(9687,'mathematics','34.203.222.37',720,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-12 09:06:04','2020-06-12 09:50:04'),(9688,'mathematics','52.90.186.75',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:37:46','2020-06-12 10:44:14'),(9689,'biology','3.89.193.33',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:55:51','2020-06-12 10:55:51'),(9690,'englishlit','41.90.5.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:05:39','2020-06-12 13:05:41'),(9691,'history','54.236.252.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:33:09','2020-06-12 13:33:09'),(9692,'mathematics','3.81.215.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:39:44','2020-06-12 16:01:07'),(9693,'history','54.165.172.105',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:55:54','2020-06-12 15:55:54'),(9694,'accounting','3.86.93.233',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 17:29:11','2020-06-12 17:29:11'),(9695,'irk','3.208.21.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 20:36:13','2020-06-12 20:36:13'),(9696,'biology','54.152.97.16',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 22:32:45','2020-06-12 22:32:45'),(9697,'mathematics','54.226.209.23',800,'','US','','Virginia',NULL,NULL,'','','2020-06-12 23:38:09','2020-06-13 00:51:21'),(9698,'mathematics','52.91.175.68',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 01:40:43','2020-06-13 01:40:45'),(9699,'mathematics','54.152.163.102',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 02:16:58','2020-06-13 02:23:32'),(9700,'mathematics','54.163.49.62',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-13 06:48:30','2020-06-13 07:42:02'),(9701,'economics','3.80.186.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 07:05:55','2020-06-13 07:05:55'),(9702,'english','34.226.218.50',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:26:06','2020-06-13 08:33:08'),(9703,'insurance','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:28:58','2020-06-13 08:28:58'),(9704,'economics','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:55:48','2020-06-13 08:55:48'),(9705,'history','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 09:26:26','2020-06-13 09:26:26'),(9706,'history','34.235.159.175',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 11:48:21','2020-06-13 11:48:21'),(9707,'english','3.92.177.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 12:37:38','2020-06-13 12:37:38'),(9708,'englishlit','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:26:25','2020-06-13 14:26:25'),(9709,'economics','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:48:24','2020-06-13 14:48:24'),(9710,'irk','3.82.202.68',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 17:12:27','2020-06-13 17:12:27'),(9711,'mathematics','3.88.29.43',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 22:46:42','2020-06-13 22:46:45'),(9712,'english','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:02:32','2020-06-13 23:02:32'),(9713,'biology','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:10:31','2020-06-13 23:10:31'),(9714,'commerce','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:11:36','2020-06-13 23:11:36'),(9715,'crk','18.212.212.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 00:37:04','2020-06-14 00:37:04'),(9716,'economics','54.144.12.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 03:33:29','2020-06-14 03:33:29'),(9717,'government','18.215.251.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 05:40:04','2020-06-14 05:40:04'),(9718,'chemistry','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 06:42:21','2020-06-14 06:42:21'),(9719,'economics','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:03:38','2020-06-14 08:03:38'),(9720,'geography','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:07:21','2020-06-14 08:07:21'),(9721,'commerce','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:44:47','2020-06-14 08:44:47'),(9722,'biology','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:49:18','2020-06-14 08:49:18'),(9723,'insurance','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 11:39:05','2020-06-14 11:39:05'),(9724,'crk','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 12:49:53','2020-06-14 12:49:53'),(9725,'government','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 13:52:33','2020-06-14 13:52:33'),(9726,'civiledu','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:41:47','2020-06-14 15:41:47'),(9727,'english','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:45:01','2020-06-14 15:45:01'),(9728,'englishlit','34.207.148.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 16:28:31','2020-06-14 16:28:31'),(9729,'chemistry','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:15:57','2020-06-14 22:15:57'),(9730,'crk','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:29:17','2020-06-14 22:29:17'),(9731,'history','54.83.174.162',560,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:21','2020-06-15 02:23:52'),(9732,'english','54.83.174.162',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:28','2020-06-15 02:23:55'),(9733,'english','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:12:28','2020-06-15 06:12:28'),(9734,'englishlit','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:21:57','2020-06-15 06:21:57'),(9735,'currentaffairs','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:11:29','2020-06-15 08:11:29'),(9736,'physics','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:22:03','2020-06-15 08:22:03'),(9737,'crk','18.212.75.232',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 09:01:28','2020-06-15 09:01:28'),(9738,'englishlit','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:24:36','2020-06-15 10:24:36'),(9739,'insurance','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:29:58','2020-06-15 10:29:58'),(9740,'chemistry','54.172.215.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:11:58','2020-06-15 12:11:58'),(9741,'history','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:21:57','2020-06-15 12:23:22'),(9742,'english','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:22:00','2020-06-15 12:23:25'),(9743,'economics','184.73.145.115',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 13:15:25','2020-06-15 13:15:25'),(9744,'government','54.84.68.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 14:07:49','2020-06-15 14:07:49'),(9745,'crk','34.239.49.32',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 15:22:17','2020-06-15 15:22:17'),(9746,'english','54.242.223.207',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 16:33:06','2020-06-15 16:33:06'),(9747,'geography','54.242.223.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 16:43:55','2020-06-15 16:43:55'),(9748,'englishlit','41.80.97.78',40,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-06-16 02:45:58','2020-06-16 02:46:01'),(9749,'history','54.172.25.21',1840,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:41','2020-06-16 07:01:25'),(9750,'english','54.172.25.21',2080,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:44','2020-06-16 07:11:56'),(9751,'economics','3.82.194.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 04:52:57','2020-06-16 04:52:57'),(9752,'currentaffairs','52.54.215.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-16 05:58:53','2020-06-16 05:58:53'),(9753,'civiledu','34.205.23.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 07:14:44','2020-06-16 07:14:44'),(9754,'english','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 09:59:20','2020-06-16 09:59:20'),(9755,'history','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:29','2020-06-16 10:27:07'),(9756,'english','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:32','2020-06-16 10:27:10'),(9757,'accounting','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:15:35','2020-06-16 10:15:35'),(9758,'biology','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:36:24','2020-06-16 10:36:24'),(9759,'physics','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:16:12','2020-06-16 13:22:05'),(9760,'english','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:17:24','2020-06-16 13:22:09'),(9761,'history','34.224.165.104',480,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:48','2020-06-16 15:44:51'),(9762,'english','34.224.165.104',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:51','2020-06-16 15:44:55'),(9763,'history','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:39','2020-06-16 18:19:42'),(9764,'english','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:44','2020-06-16 18:19:45'),(9765,'english','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:30'),(9766,'accounting','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:31'),(9767,'biology','18.205.237.24',2,'','US','','Virginia',NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9768,'physics','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9769,'government','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9770,'currentaffairs','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9771,'history','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9772,'geography','54.92.200.132',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 22:39:24','2020-06-16 22:39:24'),(9773,'physics','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 01:48:53','2020-06-17 01:48:53'),(9774,'government','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 02:03:54','2020-06-17 02:03:54'),(9775,'englishlit','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:26:11','2020-06-17 03:26:11'),(9776,'insurance','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:55:22','2020-06-17 03:55:22'),(9777,'biology','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:51','2020-06-17 05:30:54'),(9778,'english','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:54','2020-06-17 05:30:56'),(9779,'english','3.90.249.44',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 09:46:18','2020-06-17 09:46:55'),(9780,'chemistry','105.112.87.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-17 09:58:18','2020-06-17 09:58:20'),(9781,'chemistry','66.249.88.14',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-06-17 09:59:01','2020-06-17 09:59:04'),(9782,'mathematics','3.88.138.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 10:39:06','2020-06-17 10:39:06'),(9783,'geography','34.229.135.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:18:07','2020-06-17 11:18:07'),(9784,'economics','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:30','2020-06-17 11:34:32'),(9785,'english','35.174.4.0',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:32','2020-06-17 12:40:24'),(9786,'commerce','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:38:34','2020-06-17 12:38:36'),(9787,'history','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:40:18','2020-06-17 12:40:21'),(9788,'economics','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:13:12','2020-06-17 14:13:12'),(9789,'geography','18.205.18.35',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:36:52','2020-06-17 14:55:05'),(9790,'english','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 15:17:53','2020-06-17 15:17:53'),(9791,'english','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:50','2020-06-17 20:31:50'),(9792,'mathematics','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9793,'biology','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9794,'physics','54.161.200.177',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 21:32:59'),(9795,'chemistry','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9796,'irk','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9797,'civiledu','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9798,'geography','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:59:12','2020-06-17 20:59:12'),(9799,'englishlit','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 22:04:38','2020-06-17 22:04:38'),(9800,'biology','3.80.178.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 23:41:46','2020-06-17 23:41:46'),(9801,'currentaffairs','18.234.191.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 00:56:37','2020-06-18 00:56:37'),(9802,'physics','34.228.64.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 03:47:00','2020-06-18 03:47:00'),(9803,'mathematics','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:16:20','2020-06-18 06:16:20'),(9804,'geography','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:41:02','2020-06-18 06:41:02'),(9805,'mathematics','34.230.69.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 07:24:35','2020-06-18 07:24:35'),(9806,'government','23.20.220.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:17:08','2020-06-18 08:17:08'),(9807,'commerce','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:15','2020-06-18 08:57:15'),(9808,'accounting','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9809,'englishlit','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9810,'geography','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9811,'economics','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9812,'insurance','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9813,'history','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9814,'history','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 09:42:52','2020-06-18 09:42:52'),(9815,'mathematics','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:15:46','2020-06-18 10:15:46'),(9816,'accounting','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:16:19','2020-06-18 10:16:19'),(9817,'accounting','54.210.194.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 22:40:17','2020-06-18 22:40:17'),(9818,'biology','3.80.246.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 23:21:08','2020-06-18 23:21:08'),(9819,'history','54.83.113.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 02:45:33','2020-06-19 02:45:33'),(9820,'accounting','52.90.48.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 06:38:29','2020-06-19 06:38:29'),(9821,'irk','52.201.246.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 08:58:17','2020-06-19 08:58:17'),(9822,'economics','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:17:42','2020-06-19 21:17:42'),(9823,'insurance','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:35:24','2020-06-19 21:35:24'),(9824,'economics','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:10:39','2020-06-19 23:10:39'),(9825,'history','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:30:20','2020-06-19 23:30:20'),(9826,'economics','54.196.106.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 02:31:48','2020-06-20 02:31:48'),(9827,'englishlit','18.233.155.89',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 04:55:13','2020-06-20 04:55:13'),(9828,'history','52.91.173.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 06:51:56','2020-06-20 06:51:56'),(9829,'irk','52.203.62.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 09:34:33','2020-06-20 09:34:33'),(9830,'english','54.87.80.5',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:00:50','2020-06-20 12:00:50'),(9831,'commerce','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:48:20','2020-06-20 13:11:36'),(9832,'mathematics','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:36'),(9833,'biology','54.165.162.104',37,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:12:18'),(9834,'englishlit','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:28'),(9835,'crk','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:33:04'),(9836,'economics','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:17'),(9837,'irk','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:58'),(9838,'civiledu','54.165.162.104',23,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:25'),(9839,'english','54.165.162.104',22,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:11:35'),(9840,'accounting','54.165.162.104',25,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9841,'government','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9842,'insurance','54.165.162.104',14,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:10:29'),(9843,'currentaffairs','54.165.162.104',26,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:12:18'),(9844,'geography','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:42','2020-06-20 13:11:16'),(9845,'physics','54.165.162.104',32,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:46','2020-06-20 13:12:18'),(9846,'history','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:57','2020-06-20 13:12:19'),(9847,'chemistry','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:07:22','2020-06-20 13:10:58'),(9848,'economics','54.145.114.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 16:22:38','2020-06-20 16:22:38'),(9849,'government','18.207.167.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 17:33:28','2020-06-20 17:33:28'),(9850,'chemistry','34.229.200.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 18:50:32','2020-06-20 18:50:32'),(9851,'geography','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 20:55:26','2020-06-20 20:55:26'),(9852,'commerce','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:27:07','2020-06-20 21:27:07'),(9853,'biology','54.234.45.227',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:34:23','2020-06-20 22:01:46'),(9854,'english','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:03:31','2020-06-21 00:03:31'),(9855,'insurance','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:07:20','2020-06-21 00:07:20'),(9856,'crk','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:30:51','2020-06-21 00:30:51'),(9857,'english','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:08:21','2020-06-21 03:08:21'),(9858,'englishlit','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:28:58','2020-06-21 03:28:58'),(9859,'civiledu','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:13:32','2020-06-21 04:13:32'),(9860,'crk','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:36:06','2020-06-21 04:36:06'),(9861,'government','54.227.23.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 10:01:04','2020-06-21 10:01:04'),(9862,'history','18.206.211.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 12:36:25','2020-06-21 12:36:25'),(9863,'physics','3.80.240.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 15:52:13','2020-06-21 15:52:13'),(9864,'englishlit','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:00:57','2020-06-21 17:00:57'),(9865,'english','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:13:38','2020-06-21 17:13:38'),(9866,'currentaffairs','34.238.151.127',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 18:19:01','2020-06-21 18:19:01'),(9867,'crk','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:44:26','2020-06-21 21:44:26'),(9868,'englishlit','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:54:44','2020-06-21 21:54:44'),(9869,'economics','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:08:26','2020-06-21 22:08:26'),(9870,'chemistry','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:33:17','2020-06-21 22:33:17'),(9871,'insurance','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:20:32','2020-06-21 23:20:32'),(9872,'government','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:37:50','2020-06-21 23:37:50'),(9873,'crk','3.84.250.255',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 00:51:48','2020-06-22 00:51:48'),(9874,'geography','54.221.187.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 01:53:56','2020-06-22 01:53:56'),(9875,'english','18.209.110.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 03:40:04','2020-06-22 03:40:04'),(9876,'economics','34.230.36.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 13:54:50','2020-06-22 13:54:50'),(9877,'currentaffairs','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 15:38:47','2020-06-22 15:38:47'),(9878,'civiledu','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 16:11:57','2020-06-22 16:11:57'),(9879,'biology','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:24:35','2020-06-22 18:24:35'),(9880,'english','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:41:12','2020-06-22 18:41:12'),(9881,'accounting','54.90.154.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 20:56:27','2020-06-22 20:56:27'),(9882,'mathematics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9883,'accounting','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9884,'biology','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9885,'economics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9886,'insurance','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9887,'currentaffairs','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9888,'history','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9889,'geography','54.196.101.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 05:30:08','2020-06-23 05:30:08'),(9890,'physics','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:13:29','2020-06-23 09:13:29'),(9891,'government','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:42:29','2020-06-23 09:42:29'),(9892,'englishlit','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 10:04:23','2020-06-23 10:04:23'),(9893,'insurance','35.153.133.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 11:44:24','2020-06-23 11:44:24'),(9894,'crk','34.205.18.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:01:55','2020-06-23 13:07:27'),(9895,'government','34.205.18.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:39:31','2020-06-23 13:39:31'),(9896,'chemistry','41.190.30.186',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-23 14:36:31','2020-06-23 14:36:38'),(9897,'accounting','54.227.55.70',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 18:14:12','2020-06-23 18:14:12'),(9898,'mathematics','18.209.61.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 19:02:39','2020-06-23 19:02:39'),(9899,'geography','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:24:58','2020-06-23 20:24:58'),(9900,'economics','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:45:09','2020-06-23 20:45:09'),(9901,'geography','3.89.130.67',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 21:21:11','2020-06-23 21:21:11'),(9902,'geography','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:28:57','2020-06-23 22:28:57'),(9903,'english','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:39:49','2020-06-23 22:39:49'),(9904,'physics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 02:49:35','2020-06-24 02:49:35'),(9905,'mathematics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 03:07:03','2020-06-24 03:07:03'),(9906,'englishlit','54.158.85.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 04:02:10','2020-06-24 04:02:10'),(9907,'currentaffairs','18.204.209.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 05:53:24','2020-06-24 05:53:24'),(9908,'geography','54.158.151.153',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:14:42','2020-06-24 07:14:42'),(9909,'biology','54.81.22.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:52:37','2020-06-24 07:52:37'),(9910,'physics','34.207.160.124',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 12:25:46','2020-06-24 12:25:46'),(9911,'geography','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:49:47','2020-06-24 14:49:47'),(9912,'mathematics','107.21.199.228',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:55:40','2020-06-24 15:41:17'),(9913,'government','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 15:12:17','2020-06-24 15:12:17'),(9914,'mathematics','54.162.201.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 16:28:06','2020-06-24 16:28:06'),(9915,'accounting','18.206.251.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 04:06:31','2020-06-25 04:06:31'),(9916,'biology','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 05:08:21','2020-06-25 05:08:21'),(9917,'history','3.84.8.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 08:20:25','2020-06-25 08:20:25'),(9918,'history','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:40:28','2020-06-25 09:40:28'),(9919,'english','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:50:38','2020-06-25 09:50:38'),(9920,'accounting','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 12:06:48','2020-06-25 12:06:48'),(9921,'irk','54.234.51.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 14:44:49','2020-06-25 14:44:49'),(9922,'economics','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 02:40:10','2020-06-26 02:40:10'),(9923,'insurance','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 03:05:31','2020-06-26 03:05:31'),(9924,'history','52.90.69.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 05:53:52','2020-06-26 05:53:52'),(9925,'history','34.207.74.169',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 06:38:00','2020-06-26 06:38:00'),(9926,'englishlit','54.91.84.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 08:40:21','2020-06-26 08:40:21'),(9927,'irk','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:42:58','2020-06-26 09:42:58'),(9928,'economics','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:46:26','2020-06-26 09:46:26'),(9929,'commerce','54.175.1.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 12:27:10','2020-06-26 12:27:10'),(9930,'english','3.94.119.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 15:45:31','2020-06-26 15:45:31'),(9931,'crk','18.207.229.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 17:10:47','2020-06-26 17:10:47'),(9932,'accounting','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9933,'biology','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9934,'crk','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9935,'physics','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9936,'economics','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9937,'chemistry','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9938,'irk','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9939,'insurance','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9940,'currentaffairs','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9941,'history','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9942,'history','54.236.208.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9943,'economics','34.205.32.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 20:26:36','2020-06-26 20:26:36'),(9944,'chemistry','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:19:29','2020-06-26 22:19:29'),(9945,'government','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:28:09','2020-06-26 22:28:09'),(9946,'geography','3.87.90.156',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 00:28:07','2020-06-27 00:28:07'),(9947,'crk','35.175.174.168',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 13:22:54','2020-06-27 13:22:54'),(9948,'government','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 18:54:24','2020-06-27 18:54:24'),(9949,'history','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 19:36:24','2020-06-27 19:36:24'),(9950,'mathematics','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:03:20','2020-06-27 20:03:20'),(9951,'physics','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:47:39','2020-06-27 20:47:39'),(9952,'biology','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:49:44','2020-06-27 20:49:44'),(9953,'currentaffairs','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:41:30','2020-06-27 22:47:05'),(9954,'english','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 23:00:09'),(9955,'biology','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 22:47:05'),(9956,'government','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9957,'geography','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9958,'insurance','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9959,'history','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9960,'mathematics','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:08:42','2020-06-27 23:08:42'),(9961,'englishlit','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:16:39','2020-06-27 23:16:39'),(9962,'english','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:05:48','2020-06-28 00:26:33'),(9963,'crk','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:22:50','2020-06-28 00:32:46'),(9964,'insurance','3.90.110.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:16:59','2020-06-28 02:16:59'),(9965,'englishlit','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:55:43','2020-06-28 02:55:43'),(9966,'crk','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:06:30','2020-06-28 03:06:30'),(9967,'chemistry','34.227.105.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:45:11','2020-06-28 03:45:11'),(9968,'economics','54.152.205.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 05:31:01','2020-06-28 05:31:01'),(9969,'geography','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:34:01','2020-06-28 06:34:01'),(9970,'economics','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:52:00','2020-06-28 06:52:00'),(9971,'economics','54.236.22.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 12:40:35','2020-06-28 12:40:35'),(9972,'currentaffairs','100.26.43.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 13:51:22','2020-06-28 13:51:22'),(9973,'mathematics','34.201.45.145',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:38:42','2020-06-28 16:38:42'),(9974,'commerce','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9975,'accounting','34.201.45.145',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:53:13'),(9976,'biology','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9977,'chemistry','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9978,'geography','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9979,'irk','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9980,'insurance','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:23','2020-06-28 16:39:23'),(9981,'english','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9982,'biology','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9983,'physics','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9984,'chemistry','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9985,'englishlit','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9986,'civiledu','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:28'),(9987,'currentaffairs','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:28','2020-06-28 23:19:28'),(9988,'geography','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:24:53','2020-06-29 01:24:53'),(9989,'history','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:51:44','2020-06-29 01:51:44'),(9990,'englishlit','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:10:38','2020-06-29 02:10:38'),(9991,'english','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:15:48','2020-06-29 02:15:48'),(9992,'physics','18.232.165.163',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 05:11:32','2020-06-29 05:11:32'),(9993,'chemistry','35.172.134.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 06:37:11','2020-06-29 06:37:11'),(9994,'chemistry','54.85.126.38',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:18:44','2020-06-29 10:18:44'),(9995,'biology','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:59:34','2020-06-29 10:59:34'),(9996,'accounting','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:24:56','2020-06-29 11:24:56'),(9997,'geography','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:33:40','2020-06-29 11:33:40'),(9998,'mathematics','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:38:46','2020-06-29 11:38:46'),(9999,'mathematics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 13:50:54','2020-06-29 13:50:54'),(10000,'geography','3.84.39.14',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:15:45','2020-06-29 14:49:49'),(10001,'economics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:32:34','2020-06-29 14:32:34'),(10002,'english','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 15:13:58','2020-06-29 15:13:58'),(10003,'mathematics','54.172.215.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 16:01:15','2020-06-29 16:01:15'),(10004,'physics','54.167.221.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 20:53:21','2020-06-29 20:53:21'),(10005,'currentaffairs','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 21:44:22','2020-06-29 21:44:22'),(10006,'englishlit','3.87.114.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 23:55:57','2020-06-29 23:55:57'),(10007,'biology','54.165.2.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 00:45:46','2020-06-30 00:45:46'),(10008,'chemistry','54.166.139.196',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 02:22:51','2020-06-30 02:22:51'),(10009,'physics','3.92.221.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 03:02:17','2020-06-30 03:02:17'),(10010,'mathematics','184.72.82.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 04:50:03','2020-06-30 04:50:03'),(10011,'government','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 06:53:24','2020-06-30 06:53:24'),(10012,'mathematics','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:00:07','2020-06-30 07:00:07'),(10013,'geography','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:09:39','2020-06-30 07:09:39'),(10014,'mathematics','52.202.65.159',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 08:52:07','2020-06-30 08:52:07'),(10015,'history','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:08:39','2020-06-30 09:37:56'),(10016,'accounting','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 10:04:26'),(10017,'physics','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 09:37:55'),(10018,'chemistry','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10019,'englishlit','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10020,'irk','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10021,'civiledu','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10022,'english','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:00','2020-06-30 15:33:00'),(10023,'commerce','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10024,'accounting','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10025,'chemistry','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10026,'government','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10027,'geography','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10028,'civiledu','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10029,'accounting','52.55.83.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 17:10:09','2020-06-30 17:10:09'),(10030,'biology','54.89.237.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:04:39','2020-06-30 19:04:39'),(10031,'commerce','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10032,'accounting','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10033,'chemistry','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10034,'irk','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10035,'civiledu','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10036,'insurance','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10037,'currentaffairs','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10038,'biology','54.234.3.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 20:15:32','2020-06-30 20:15:32'),(10039,'history','34.227.88.114',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 21:38:23','2020-06-30 21:38:23'),(10040,'history','54.86.39.12',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 22:33:09','2020-06-30 22:33:09'),(10041,'accounting','54.172.57.23',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 01:19:58','2020-07-01 01:19:58'),(10042,'irk','3.86.160.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 04:51:36','2020-07-01 04:51:36'),(10043,'chemistry','54.91.179.155',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 08:07:07','2020-07-01 08:07:07'),(10044,'physics','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 10:50:24','2020-07-01 10:50:24'),(10045,'economics','23.20.242.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 11:31:17','2020-07-01 11:31:17'),(10046,'insurance','54.87.197.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 12:53:01','2020-07-01 12:53:01'),(10047,'economics','3.91.214.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 14:03:22','2020-07-01 14:03:22'),(10048,'history','54.84.225.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 15:25:35','2020-07-01 15:25:35'),(10049,'history','3.94.169.218',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 16:02:27','2020-07-01 16:02:27'),(10050,'economics','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 17:46:59','2020-07-01 17:46:59'),(10051,'irk','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:20:57','2020-07-01 18:20:57'),(10052,'englishlit','54.84.229.165',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:58:33','2020-07-01 18:58:33'),(10053,'commerce','34.228.230.135',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 00:24:39','2020-07-02 00:24:39'),(10054,'english','52.91.78.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 01:41:45','2020-07-02 01:41:45'),(10055,'crk','184.72.205.154',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 02:39:16','2020-07-02 02:39:16'),(10056,'economics','52.91.54.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 04:40:45','2020-07-02 04:40:45'),(10057,'chemistry','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:11:03','2020-07-02 06:11:03'),(10058,'government','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:42:32','2020-07-02 06:42:32'),(10059,'government','34.239.131.100',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:04:51','2020-07-02 08:04:51'),(10060,'economics','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:41:05','2020-07-02 08:41:05'),(10061,'commerce','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:56:42','2020-07-02 08:56:42'),(10062,'geography','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:38:08','2020-07-02 09:38:08'),(10063,'biology','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:54:27','2020-07-02 09:54:27'),(10064,'crk','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:13:25','2020-07-02 11:13:25'),(10065,'insurance','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:14:35','2020-07-02 11:14:35'),(10066,'english','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:36:17','2020-07-02 11:36:17'),(10067,'english','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:32:13','2020-07-02 14:32:13'),(10068,'englishlit','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:43:14','2020-07-02 14:43:14'),(10069,'crk','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:08:57','2020-07-02 15:08:57'),(10070,'civiledu','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:35:16','2020-07-02 15:35:16'),(10071,'physics','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:42:25','2020-07-02 15:42:25'),(10072,'economics','54.234.26.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 16:32:16','2020-07-02 16:32:16'),(10073,'crk','34.201.40.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 17:47:14','2020-07-02 17:47:14'),(10074,'history','54.164.23.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 21:46:06','2020-07-02 21:46:06'),(10075,'government','3.84.186.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 22:58:39','2020-07-02 22:58:39'),(10076,'physics','18.208.193.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:11:53','2020-07-03 00:11:53'),(10077,'biology','54.160.208.244',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:48:21','2020-07-03 00:48:21'),(10078,'englishlit','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:15:26','2020-07-03 02:15:26'),(10079,'english','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:23:09','2020-07-03 02:23:09'),(10080,'currentaffairs','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:26:38','2020-07-03 04:26:38'),(10081,'insurance','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:57:52','2020-07-03 04:57:52'),(10082,'englishlit','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:03:51','2020-07-03 05:03:51'),(10083,'economics','54.172.4.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:40:21','2020-07-03 05:40:21'),(10084,'crk','204.236.197.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:18:22','2020-07-03 06:18:22'),(10085,'chemistry','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:58:20','2020-07-03 06:58:20'),(10086,'economics','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 07:05:43','2020-07-03 07:05:43'),(10087,'government','34.235.117.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:09:45','2020-07-03 08:09:45'),(10088,'crk','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:52:38','2020-07-03 08:52:38'),(10089,'geography','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 09:01:32','2020-07-03 09:01:32'),(10090,'english','54.144.92.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 11:49:20','2020-07-03 11:49:20'),(10091,'currentaffairs','54.89.189.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 21:42:09','2020-07-03 21:42:09'),(10092,'civiledu','54.91.226.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 22:22:22','2020-07-03 22:22:22'),(10093,'english','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:22:03','2020-07-04 00:22:03'),(10094,'biology','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:38:50','2020-07-04 00:38:50'),(10095,'history','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:48:34','2020-07-04 01:48:34'),(10096,'accounting','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:56:25','2020-07-04 01:56:25'),(10097,'history','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:54','2020-07-04 06:18:57'),(10098,'english','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:57','2020-07-04 06:19:00'),(10099,'mathematics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10100,'accounting','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10101,'physics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10102,'englishlit','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10103,'crk','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10104,'geography','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10105,'civiledu','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10106,'history','54.162.152.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 09:43:19','2020-07-04 09:43:19'),(10107,'geography','3.93.171.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 10:35:06','2020-07-04 10:35:06'),(10108,'english','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:36:34','2020-07-04 11:36:34'),(10109,'englishlit','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:38:05','2020-07-04 11:38:05'),(10110,'crk','3.81.50.112',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 15:36:29','2020-07-04 15:36:29'),(10111,'physics','34.224.81.74',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 16:13:25','2020-07-04 16:13:25'),(10112,'mathematics','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:24:26','2020-07-04 19:24:26'),(10113,'biology','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:58:10','2020-07-04 19:58:10'),(10114,'geography','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:24:53','2020-07-04 20:24:53'),(10115,'accounting','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:51:26','2020-07-04 20:51:26'),(10116,'geography','54.152.35.97',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:04:02','2020-07-04 22:04:02'),(10117,'mathematics','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:51:02','2020-07-04 22:51:02'),(10118,'geography','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:11:06','2020-07-04 23:11:06'),(10119,'english','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:13:22','2020-07-04 23:13:22'),(10120,'mathematics','184.72.78.80',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 00:30:41','2020-07-05 00:30:41'),(10121,'physics','18.234.140.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 03:22:51','2020-07-05 03:22:51'),(10122,'englishlit','54.81.208.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 04:42:18','2020-07-05 04:42:18'),(10123,'currentaffairs','3.92.239.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 05:50:06','2020-07-05 05:50:06'),(10124,'biology','3.94.250.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 07:05:26','2020-07-05 07:05:26'),(10125,'mathematics','18.234.172.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 10:56:25','2020-07-05 10:56:25'),(10126,'history','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:16:14','2020-07-05 14:16:14'),(10127,'accounting','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:18:21','2020-07-05 14:18:21'),(10128,'government','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:30','2020-07-05 18:09:38'),(10129,'insurance','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:32','2020-07-05 18:09:42'),(10130,'mathematics','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:34','2020-07-05 18:09:46'),(10131,'chemistry','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:36','2020-07-05 18:09:40'),(10132,'englishlit','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:44','2020-07-05 18:09:48'),(10133,'accounting','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:50','2020-07-05 18:09:52'),(10134,'accounting','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:25:43','2020-07-05 23:25:43'),(10135,'mathematics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10136,'commerce','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10137,'physics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10138,'chemistry','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10139,'economics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10140,'civiledu','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10141,'currentaffairs','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:09','2020-07-05 23:26:09'),(10142,'biology','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:48:59','2020-07-05 23:48:59'),(10143,'biology','100.24.36.11',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 01:28:52','2020-07-06 01:28:52'),(10144,'history','18.206.244.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 03:18:07','2020-07-06 03:18:07'),(10145,'history','54.89.235.4',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 04:39:50','2020-07-06 04:39:50'),(10146,'accounting','3.86.51.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 05:43:10','2020-07-06 05:43:10'),(10147,'physics','3.82.188.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 10:53:25','2020-07-06 10:53:25'),(10148,'physics','54.157.235.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 15:25:50','2020-07-06 15:25:50'),(10149,'economics','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:18:01','2020-07-06 16:18:01'),(10150,'insurance','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:25:30','2020-07-06 16:25:30'),(10151,'commerce','3.81.6.59',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 17:19:24','2020-07-06 17:19:24'),(10152,'economics','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:18:54','2020-07-06 18:18:54'),(10153,'history','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:49:09','2020-07-06 18:49:09'),(10154,'history','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 20:27:09','2020-07-06 20:27:09'),(10155,'economics','3.93.171.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 22:14:21','2020-07-06 22:14:21'),(10156,'irk','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:20:52','2020-07-06 23:20:52'),(10157,'englishlit','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:45:32','2020-07-06 23:45:32'),(10158,'commerce','18.207.123.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 03:59:46','2020-07-07 03:59:46'),(10159,'english','3.88.230.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 05:07:19','2020-07-07 05:07:19'),(10160,'economics','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:15:10','2020-07-07 09:15:10'),(10161,'government','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:48:39','2020-07-07 09:48:39'),(10162,'chemistry','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 10:12:14','2020-07-07 10:12:14'),(10163,'government','54.221.150.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 11:33:19','2020-07-07 11:33:19'),(10164,'commerce','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:34','2020-07-07 12:23:34'),(10165,'economics','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:36','2020-07-07 12:23:36'),(10166,'biology','52.23.160.61',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:46:17','2020-07-07 13:24:15'),(10167,'geography','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:14:39','2020-07-07 13:14:39'),(10168,'currentaffairs','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:17:34','2020-07-07 13:17:34'),(10169,'insurance','54.152.5.128',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:14:12','2020-07-07 16:33:40'),(10170,'accounting','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:28:51','2020-07-07 14:36:55'),(10171,'commerce','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:31:07','2020-07-07 16:33:39'),(10172,'civiledu','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:34:07','2020-07-07 16:33:40'),(10173,'irk','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:47:28','2020-07-07 16:04:09'),(10174,'english','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:08:10','2020-07-07 15:08:10'),(10175,'crk','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:12:21','2020-07-07 15:12:21'),(10176,'currentaffairs','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:48:43','2020-07-07 16:00:50'),(10177,'chemistry','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:26:23','2020-07-07 16:45:13'),(10178,'englishlit','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:39','2020-07-07 16:33:39'),(10179,'economics','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10180,'history','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10181,'englishlit','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:11:13','2020-07-07 18:11:13'),(10182,'physics','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:38:18','2020-07-07 18:38:18'),(10183,'english','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:09:59','2020-07-07 19:09:59'),(10184,'civiledu','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:24:15','2020-07-07 19:24:15'),(10185,'crk','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:42:39','2020-07-07 19:42:39'),(10186,'crk','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 20:43:43','2020-07-07 20:43:43'),(10187,'economics','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 21:02:06','2020-07-07 21:02:06'),(10188,'crk','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:06:52','2020-07-07 23:06:52'),(10189,'mathematics','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:08:47','2020-07-07 23:08:47'),(10190,'history','54.235.227.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 00:51:52','2020-07-08 00:51:52'),(10191,'commerce','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:13'),(10192,'chemistry','54.224.19.167',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:17:55'),(10193,'englishlit','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:09'),(10194,'crk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:10'),(10195,'irk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:00'),(10196,'civiledu','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:06'),(10197,'currentaffairs','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:02'),(10198,'biology','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:26:00','2020-07-08 04:26:00'),(10199,'government','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:49:34','2020-07-08 04:49:34'),(10200,'physics','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 05:13:41','2020-07-08 05:13:41'),(10201,'englishlit','54.86.107.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:13:13','2020-07-08 06:13:13'),(10202,'currentaffairs','54.162.112.134',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:54:34','2020-07-08 06:54:34'),(10203,'englishlit','41.80.97.238',80,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-07-08 07:25:57','2020-07-08 07:28:00'),(10204,'crk','54.82.43.186',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 07:45:34','2020-07-08 07:45:34'),(10205,'englishlit','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:21:52','2020-07-08 09:21:52'),(10206,'insurance','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:44:49','2020-07-08 09:44:49'),(10207,'chemistry','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:54:11','2020-07-08 09:54:11'),(10208,'economics','52.91.173.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 10:49:13','2020-07-08 10:49:13'),(10209,'government','54.80.100.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 11:30:37','2020-07-08 11:30:37'),(10210,'crk','54.158.254.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:24:11','2020-07-08 12:24:11'),(10211,'english','18.207.151.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:58:44','2020-07-08 12:58:44'),(10212,'geography','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:02:59','2020-07-08 14:02:59'),(10213,'economics','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:07','2020-07-08 14:33:07'),(10214,'english','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:48','2020-07-08 14:33:48'),(10215,'commerce','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10216,'chemistry','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10217,'englishlit','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10218,'government','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10219,'economics','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10220,'insurance','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10221,'currentaffairs','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10222,'chemistry','212.7.216.22',41,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:34','2020-07-08 18:09:03'),(10223,'biology','212.7.216.22',42,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:53','2020-07-08 18:09:33'),(10224,'crk','212.7.216.22',40,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:11:50','2020-07-08 18:11:53'),(10225,'accounting','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 00:35:57','2020-07-09 00:35:57'),(10226,'currentaffairs','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:01:51','2020-07-09 01:01:51'),(10227,'civiledu','3.92.165.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:53:39','2020-07-09 01:53:39'),(10228,'biology','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:43:43','2020-07-09 03:43:43'),(10229,'english','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:48:40','2020-07-09 03:48:40'),(10230,'accounting','54.166.150.192',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 04:46:10','2020-07-09 04:46:10'),(10231,'insurance','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:51:46','2020-07-09 07:51:46'),(10232,'accounting','18.212.91.129',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:26','2020-07-09 07:52:33'),(10233,'englishlit','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:27','2020-07-09 07:52:27'),(10234,'english','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:28','2020-07-09 07:52:28'),(10235,'history','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:38','2020-07-09 07:52:38'),(10236,'geography','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:17:51','2020-07-09 15:17:51'),(10237,'history','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:21:14','2020-07-09 15:21:14'),(10238,'englishlit','3.85.20.113',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 16:51:17','2020-07-09 16:51:17'),(10239,'government','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:25:48','2020-07-09 17:25:48'),(10240,'english','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:47:06','2020-07-09 17:47:06'),(10241,'insurance','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 18:54:52','2020-07-09 18:54:52'),(10242,'physics','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 19:28:45','2020-07-09 19:28:45'),(10243,'crk','3.92.73.237',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 20:40:38','2020-07-09 20:40:38'),(10244,'biology','3.89.195.91',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:11:30','2020-07-10 00:11:30'),(10245,'mathematics','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:54:45','2020-07-10 00:54:45'),(10246,'geography','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 01:07:34','2020-07-10 01:07:34'),(10247,'accounting','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:08:59','2020-07-10 03:08:59'),(10248,'geography','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:12:39','2020-07-10 03:12:39'),(10249,'mathematics','34.229.218.101',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:56:28','2020-07-10 04:19:24'),(10250,'english','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:57:59','2020-07-10 03:57:59'),(10251,'geography','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 04:00:44','2020-07-10 04:00:44'),(10252,'physics','52.207.226.86',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 07:22:18','2020-07-10 07:22:18'),(10253,'englishlit','100.26.198.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 08:32:27','2020-07-10 08:32:27'),(10254,'currentaffairs','34.207.220.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 09:37:56','2020-07-10 09:37:56'),(10255,'biology','34.201.217.57',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 13:17:48','2020-07-10 13:17:48'),(10256,'mathematics','34.201.82.215',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:30:23','2020-07-10 17:26:20'),(10257,'government','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:49:19','2020-07-10 16:49:19'),(10258,'geography','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:57:20','2020-07-10 16:57:20'),(10259,'mathematics','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:29:32','2020-07-10 18:29:32'),(10260,'history','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:38:27','2020-07-10 18:38:27'),(10261,'accounting','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:51:34','2020-07-10 18:51:34'),(10262,'accounting','54.88.28.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 03:49:42','2020-07-11 03:49:42'),(10263,'biology','18.212.149.169',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 05:05:51','2020-07-11 05:05:51'),(10264,'history','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:21:44','2020-07-11 07:21:44'),(10265,'biology','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:43:14','2020-07-11 07:43:14'),(10266,'history','52.207.241.232',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 09:22:36','2020-07-11 09:22:36'),(10267,'english','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:03:15','2020-07-11 11:03:15'),(10268,'accounting','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:05:18','2020-07-11 11:05:18'),(10269,'chemistry','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 12:39:00','2020-07-11 12:39:02'),(10270,'mathematics','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:50:40','2020-07-11 13:50:43'),(10271,'english','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:52:41','2020-07-11 13:52:43'),(10272,'physics','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:54:53','2020-07-11 13:54:56'),(10273,'irk','3.87.253.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 13:57:22','2020-07-11 13:57:22'),(10274,'biology','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:58:09','2020-07-11 13:58:11'),(10275,'commerce','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:00:45','2020-07-11 14:00:47'),(10276,'accounting','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:02:26','2020-07-11 14:02:30'),(10277,'commerce','197.210.53.65',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:07:24','2020-07-11 14:07:27'),(10278,'biology','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:09:29','2020-07-11 14:09:31'),(10279,'englishlit','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:11:03','2020-07-11 14:11:06'),(10280,'government','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:12:42','2020-07-11 14:12:44'),(10281,'crk','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:14:42','2020-07-11 14:14:45'),(10282,'geography','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:16:22','2020-07-11 14:16:25'),(10283,'economics','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:18:03','2020-07-11 14:18:06'),(10284,'irk','197.210.53.29',30,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:19:52','2020-07-11 14:19:54'),(10285,'civiledu','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:21:54','2020-07-11 14:21:56'),(10286,'insurance','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:24:40','2020-07-11 14:24:42'),(10287,'currentaffairs','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:30:13','2020-07-11 14:30:16'),(10288,'history','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:31:59','2020-07-11 14:32:02'),(10289,'chemistry','129.205.113.79',4400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-11 14:33:08','2020-07-13 03:19:10'),(10290,'english','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:49'),(10291,'commerce','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:47:21'),(10292,'accounting','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:31'),(10293,'civiledu','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:49:01'),(10294,'insurance','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:09'),(10295,'currentaffairs','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:19'),(10296,'history','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:26'),(10297,'mathematics','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:15:58','2020-07-11 23:15:58'),(10298,'chemistry','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:21:17','2020-07-11 23:21:17'),(10299,'insurance','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:48:13','2020-07-11 23:48:13'),(10300,'english','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:09:33','2020-07-12 00:09:33'),(10301,'economics','3.82.54.117',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:10:41','2020-07-12 00:29:04'),(10302,'history','3.88.228.30',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 01:17:11','2020-07-12 01:17:11'),(10303,'history','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:50:23','2020-07-12 02:50:23'),(10304,'chemistry','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:58:58','2020-07-12 02:58:58'),(10305,'mathematics','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 03:10:59','2020-07-12 03:10:59'),(10306,'economics','3.87.92.43',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 04:42:49','2020-07-12 04:42:49'),(10307,'englishlit','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 05:52:03','2020-07-12 05:52:03'),(10308,'irk','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 06:21:53','2020-07-12 06:21:53'),(10309,'commerce','54.163.60.37',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 10:46:43','2020-07-12 10:46:43'),(10310,'english','3.94.101.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 12:43:58','2020-07-12 12:43:58'),(10311,'mathematics','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 14:59:40','2020-07-12 14:59:40'),(10312,'english','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:00:14','2020-07-12 15:00:14'),(10313,'chemistry','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:07:58','2020-07-12 15:07:58'),(10314,'economics','34.227.46.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 16:40:51','2020-07-12 16:40:51'),(10315,'chemistry','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:39:39','2020-07-12 17:39:39'),(10316,'english','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:54:55','2020-07-12 17:54:55'),(10317,'mathematics','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 18:17:06','2020-07-12 18:17:06'),(10318,'government','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:17:30','2020-07-12 19:17:30'),(10319,'geography','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:43:56','2020-07-12 19:43:56'),(10320,'biology','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:30:00','2020-07-12 20:30:00'),(10321,'commerce','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:32:43','2020-07-12 20:32:43'),(10322,'economics','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:03','2020-07-12 22:04:03'),(10323,'insurance','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:33','2020-07-12 22:04:33'),(10324,'crk','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:43:42','2020-07-12 22:43:42'),(10325,'english','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:02:31','2020-07-12 23:02:31'),(10326,'mathematics','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:14:52','2020-07-12 23:14:52'),(10327,'english','129.205.113.79',5320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-13 00:22:00','2020-07-13 03:18:50'),(10328,'mathematics','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:25','2020-07-13 03:18:54'),(10329,'commerce','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:30','2020-07-13 03:18:57'),(10330,'accounting','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:34','2020-07-13 03:19:00'),(10331,'biology','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:37','2020-07-13 03:19:03'),(10332,'physics','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:40','2020-07-13 03:19:07'),(10333,'englishlit','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:47','2020-07-13 03:19:13'),(10334,'government','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:09','2020-07-13 03:19:16'),(10335,'crk','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:12','2020-07-13 03:19:20'),(10336,'geography','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:16','2020-07-13 03:19:23'),(10337,'economics','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:19','2020-07-13 03:19:26'),(10338,'irk','129.205.113.79',3180,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:22','2020-07-13 03:19:29'),(10339,'civiledu','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:24','2020-07-13 03:18:24'),(10340,'insurance','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:28','2020-07-13 03:18:27'),(10341,'currentaffairs','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:24','2020-07-13 03:18:30'),(10342,'history','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:28','2020-07-13 03:18:40'),(10343,'civiledu','54.234.157.166',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:28:47','2020-07-13 02:28:47'),(10344,'physics','54.234.157.166',3,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:48:14','2020-07-13 02:57:04'),(10345,'biology','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10346,'chemistry','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10347,'englishlit','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10348,'government','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10349,'currentaffairs','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10350,'history','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10351,'englishlit','54.208.167.162',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 03:42:04','2020-07-13 03:42:04'),(10352,'economics','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:26:48','2020-07-13 04:26:48'),(10353,'crk','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:32:06','2020-07-13 04:32:06'),(10354,'mathematics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10355,'commerce','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10356,'biology','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10357,'government','3.83.177.66',3,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 07:20:14','2020-07-13 07:20:15'),(10358,'crk','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10359,'economics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10360,'insurance','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10361,'mathematics','52.70.110.88',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:58:11','2020-07-13 07:58:11'),(10362,'history','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 08:43:27','2020-07-13 08:43:27'),(10363,'crk','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 09:16:49','2020-07-13 09:16:49'),(10364,'government','35.173.241.103',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 12:01:52','2020-07-13 12:01:52'),(10365,'biology','35.173.241.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 12:19:03','2020-07-13 12:19:03'),(10366,'physics','3.80.67.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 13:51:28','2020-07-13 13:51:28'),(10367,'english','3.80.67.43',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 14:26:17','2020-07-13 14:33:36'),(10368,'currentaffairs','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:37:38','2020-07-13 15:37:38'),(10369,'englishlit','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:58:51','2020-07-13 15:58:51'),(10370,'crk','3.88.24.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 17:12:19','2020-07-13 17:12:19'),(10371,'insurance','3.88.24.28',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 17:29:37','2020-07-13 17:29:37'),(10372,'chemistry','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:17:46','2020-07-13 18:17:46'),(10373,'englishlit','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:33:29','2020-07-13 18:33:29'),(10374,'government','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:07:04','2020-07-13 20:07:04'),(10375,'crk','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:37:11','2020-07-13 20:37:11'),(10376,'economics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:39:05','2020-07-13 20:39:05'),(10377,'geography','18.207.196.180',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 21:02:47','2020-07-13 21:02:47'),(10378,'mathematics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 21:10:43','2020-07-13 21:10:43'),(10379,'english','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10380,'commerce','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10381,'accounting','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10382,'physics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10383,'economics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10384,'civiledu','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10385,'insurance','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10386,'english','3.90.9.102',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 22:41:54','2020-07-13 22:56:29'),(10387,'english','129.205.124.79',3480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:25:59','2020-07-14 02:30:06'),(10388,'mathematics','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:02','2020-07-14 02:30:10'),(10389,'commerce','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:06','2020-07-14 02:30:15'),(10390,'accounting','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:09','2020-07-14 02:30:18'),(10391,'biology','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:12','2020-07-14 02:30:22'),(10392,'physics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:16','2020-07-14 02:30:26'),(10393,'chemistry','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:19','2020-07-14 02:30:30'),(10394,'englishlit','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:22','2020-07-14 02:30:34'),(10395,'government','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:26','2020-07-14 02:30:39'),(10396,'crk','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:29','2020-07-14 02:30:43'),(10397,'geography','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:33','2020-07-14 02:30:47'),(10398,'economics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:36','2020-07-14 02:30:51'),(10399,'irk','129.205.124.79',2490,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:41','2020-07-14 02:29:45'),(10400,'civiledu','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:44','2020-07-14 02:29:50'),(10401,'insurance','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:47','2020-07-14 02:29:54'),(10402,'currentaffairs','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:50','2020-07-14 02:29:58'),(10403,'history','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:54','2020-07-14 02:30:02'),(10404,'mathematics','3.86.112.201',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 06:09:14','2020-07-14 06:09:14'),(10405,'economics','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 07:28:22','2020-07-14 07:28:22'),(10406,'english','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 08:04:24','2020-07-14 08:04:24'),(10407,'chemistry','129.205.113.93',443,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-14 09:05:47','2020-07-14 13:21:22'),(10408,'physics','129.205.113.93',212,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 09:08:38','2020-07-14 15:34:58'),(10409,'english','129.205.113.93',939,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:08:42','2020-07-14 14:50:30'),(10410,'currentaffairs','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:07','2020-07-14 10:09:07'),(10411,'mathematics','129.205.113.93',121,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:52','2020-07-14 15:32:06'),(10412,'commerce','129.205.113.93',1891,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:15:00','2020-07-14 15:55:42'),(10413,'biology','129.205.113.93',534,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:20:01','2020-07-14 13:14:00'),(10414,'englishlit','129.205.113.93',508,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:22:39','2020-07-14 15:00:25'),(10415,'government','129.205.113.93',1091,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:23:37','2020-07-14 15:55:56'),(10416,'civiledu','129.205.113.93',577,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:38:09','2020-07-14 13:42:59'),(10417,'crk','129.205.113.93',1240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:40:26','2020-07-14 14:22:30'),(10418,'economics','129.205.113.93',899,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:41:55','2020-07-14 14:38:54'),(10419,'civiledu','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:43:55','2020-07-14 10:43:55'),(10420,'geography','129.205.113.93',316,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:51:07','2020-07-14 15:05:11'),(10421,'insurance','129.205.113.93',471,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:54:35','2020-07-14 15:30:53'),(10422,'irk','129.205.113.93',50,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:58:36','2020-07-14 15:36:02'),(10423,'currentaffairs','129.205.113.93',63,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:59:48','2020-07-14 15:37:11'),(10424,'accounting','129.205.113.93',682,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:30:09','2020-07-14 13:33:35'),(10425,'history','129.205.113.93',67,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:33:06','2020-07-14 15:23:11'),(10426,'accounting','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:37:00','2020-07-14 12:37:00'),(10427,'english','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:39:37','2020-07-14 12:39:37'),(10428,'history','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:06:47','2020-07-14 13:06:47'),(10429,'biology','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:31:56','2020-07-14 13:31:56'),(10430,'mathematics','18.234.46.151',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 15:02:11','2020-07-14 15:02:11'),(10431,'english','54.90.207.165',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 18:07:02','2020-07-14 18:07:02'),(10432,'commerce','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10433,'physics','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10434,'chemistry','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10435,'englishlit','34.229.179.114',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10436,'government','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10437,'insurance','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10438,'currentaffairs','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:53','2020-07-14 19:16:53'),(10439,'geography','18.208.128.143',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 22:14:45','2020-07-14 22:14:45'),(10440,'english','3.95.191.40',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 23:24:07','2020-07-14 23:24:07'),(10441,'history','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 23:41:01','2020-07-14 23:41:01'),(10442,'mathematics','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:06:33','2020-07-15 00:06:33'),(10443,'englishlit','3.87.215.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:46:37','2020-07-15 00:46:37'),(10444,'insurance','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 03:51:06','2020-07-15 03:51:06'),(10445,'english','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 04:09:32','2020-07-15 04:09:32'),(10446,'crk','3.81.221.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 05:08:09','2020-07-15 05:08:09'),(10447,'chemistry','3.88.132.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:07:35','2020-07-15 08:07:35'),(10448,'mathematics','54.147.235.60',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:53:27','2020-07-15 09:41:51'),(10449,'crk','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:02:40','2020-07-15 09:02:40'),(10450,'biology','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:28:35','2020-07-15 09:28:35'),(10451,'physics','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:31:51','2020-07-15 09:31:51'),(10452,'geography','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:32:08','2020-07-15 10:32:08'),(10453,'accounting','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:38:37','2020-07-15 10:38:37'),(10454,'geography','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 11:56:02','2020-07-15 12:59:45'),(10455,'mathematics','3.83.193.244',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:33:30'),(10456,'commerce','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10457,'accounting','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10458,'englishlit','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10459,'crk','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10460,'civiledu','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10461,'insurance','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10462,'english','3.81.39.121',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 14:04:24','2020-07-15 14:04:24'),(10463,'englishlit','54.224.172.84',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 16:54:49','2020-07-15 16:54:49'),(10464,'chemistry','102.89.3.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-07-15 17:48:20','2020-07-15 17:48:20'),(10465,'currentaffairs','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 17:48:58','2020-07-15 17:48:58'),(10466,'chemistry','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 18:12:17','2020-07-15 18:12:17'),(10467,'english','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 18:17:37','2020-07-15 18:17:37'),(10468,'biology','54.210.122.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 20:30:49','2020-07-15 20:30:49'),(10469,'physics','54.210.122.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 21:05:21','2020-07-15 21:05:21'),(10470,'mathematics','54.90.176.188',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 22:58:09','2020-07-15 22:58:09'),(10471,'crk','54.90.176.188',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 23:00:49','2020-07-15 23:00:49'),(10472,'mathematics','34.229.226.194',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 01:11:04','2020-07-16 01:11:04'),(10473,'geography','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 02:43:29','2020-07-16 02:43:29'),(10474,'government','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 02:54:36','2020-07-16 02:54:36'),(10475,'mathematics','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 03:13:19','2020-07-16 03:13:19'),(10476,'history','3.85.23.254',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 04:15:53','2020-07-16 04:15:53'),(10477,'mathematics','18.212.87.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 05:27:05','2020-07-16 05:27:05'),(10478,'accounting','18.212.87.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 05:57:55','2020-07-16 05:57:55'),(10479,'chemistry','81.7.11.155',41,'','DE','','Thuringia','Jena','07745','50.8933','11.5847','2020-07-16 06:13:09','2020-07-16 06:13:18'),(10480,'mathematics','18.234.132.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 07:36:28','2020-07-16 07:36:28'),(10481,'biology','18.205.237.244',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 13:41:47','2020-07-16 13:41:47'),(10482,'chemistry','54.167.108.112',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 16:28:05','2020-07-16 16:28:06'),(10483,'mathematics','34.202.166.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 17:24:28','2020-07-16 17:24:28'),(10484,'accounting','52.20.255.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 19:21:42','2020-07-16 19:21:42'),(10485,'economics','3.81.224.51',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 03:22:55','2020-07-17 03:50:42'),(10486,'insurance','3.81.224.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 04:01:21','2020-07-17 04:01:21'),(10487,'mathematics','3.95.1.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 05:12:24','2020-07-17 05:12:24'),(10488,'irk','54.204.68.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 08:14:36','2020-07-17 08:14:36'),(10489,'englishlit','54.204.68.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 08:19:55','2020-07-17 08:19:55'),(10490,'english','3.88.16.205',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 13:06:26','2020-07-17 13:06:26'),(10491,'commerce','18.206.210.183',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 14:19:11','2020-07-17 14:19:11'),(10492,'economics','54.89.243.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 15:31:32','2020-07-17 15:31:32'),(10493,'mathematics','100.24.42.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 16:28:27','2020-07-17 16:28:27'),(10494,'economics','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 17:50:15','2020-07-17 17:50:15'),(10495,'geography','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:15:04','2020-07-17 18:15:04'),(10496,'government','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:27:05','2020-07-17 18:27:05'),(10497,'commerce','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:28:15','2020-07-17 18:28:15'),(10498,'insurance','54.172.215.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 19:31:06','2020-07-17 19:31:06'),(10499,'english','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 20:42:09','2020-07-17 20:42:09'),(10500,'biology','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 20:45:14','2020-07-17 20:45:14'),(10501,'chemistry','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 21:17:31','2020-07-17 21:17:31'),(10502,'crk','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 22:55:45','2020-07-17 22:55:45'),(10503,'physics','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 23:12:51','2020-07-17 23:12:51'),(10504,'economics','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 23:13:05','2020-07-17 23:13:05'),(10505,'crk','54.152.47.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 00:11:06','2020-07-18 00:11:06'),(10506,'mathematics','54.227.114.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 02:04:13','2020-07-18 02:04:13'),(10507,'history','54.227.114.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 02:26:59','2020-07-18 02:26:59'),(10508,'chemistry','3.83.174.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 03:38:08','2020-07-18 03:38:08'),(10509,'government','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 04:39:59','2020-07-18 04:39:59'),(10510,'biology','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:05:29','2020-07-18 05:05:29'),(10511,'history','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:38:54','2020-07-18 05:38:54'),(10512,'englishlit','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:55:47','2020-07-18 05:55:47'),(10513,'english','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 06:01:27','2020-07-18 06:01:27'),(10514,'currentaffairs','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 06:31:11','2020-07-18 06:31:11'),(10515,'chemistry','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 08:36:38','2020-07-18 08:36:38'),(10516,'economics','54.164.73.164',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 09:03:24','2020-07-18 09:51:57'),(10517,'government','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 09:21:47','2020-07-18 09:21:47'),(10518,'crk','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 10:08:07','2020-07-18 10:08:07'),(10519,'geography','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 10:16:51','2020-07-18 10:16:51'),(10520,'english','3.94.122.190',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 11:27:02','2020-07-18 11:27:02'),(10521,'mathematics','3.94.122.190',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 11:56:11','2020-07-18 11:56:11'),(10522,'currentaffairs','54.234.122.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 18:21:25','2020-07-18 18:21:25'),(10523,'civiledu','18.215.146.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 19:07:46','2020-07-18 19:07:46'),(10524,'history','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:06:58','2020-07-18 20:06:58'),(10525,'economics','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:07:06','2020-07-18 20:07:06'),(10526,'accounting','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:09:41','2020-07-18 20:09:41'),(10527,'english','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:15:29','2020-07-18 20:15:29'),(10528,'biology','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:45:48','2020-07-18 20:45:48'),(10529,'mathematics','54.208.42.17',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 21:46:57','2020-07-18 21:46:57'),(10530,'mathematics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10531,'accounting','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10532,'physics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10533,'chemistry','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10534,'englishlit','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:36'),(10535,'economics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:36','2020-07-18 23:37:36'),(10536,'insurance','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:36','2020-07-18 23:37:36'),(10537,'geography','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:05:10','2020-07-19 02:05:10'),(10538,'english','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:24:02','2020-07-19 02:24:02'),(10539,'englishlit','3.84.156.226',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:52:35','2020-07-19 02:55:26'),(10540,'history','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 03:13:35','2020-07-19 03:13:35'),(10541,'physics','54.172.87.14',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 04:04:24','2020-07-19 04:04:24'),(10542,'english','3.87.78.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 04:39:20','2020-07-19 04:39:20'),(10543,'insurance','3.87.78.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 05:05:03','2020-07-19 05:05:03'),(10544,'accounting','52.87.187.114',7,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:22:59','2020-07-19 09:45:54'),(10545,'biology','52.87.187.114',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:28:42','2020-07-19 09:41:35'),(10546,'geography','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:57:42','2020-07-19 09:41:36'),(10547,'mathematics','52.87.187.114',7,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:05:50','2020-07-19 09:45:54'),(10548,'currentaffairs','52.87.187.114',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:06:40','2020-07-19 09:45:55'),(10549,'english','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:41:35'),(10550,'commerce','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:40:42'),(10551,'chemistry','52.87.187.114',9,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:45:55'),(10552,'englishlit','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:38:48'),(10553,'economics','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:49','2020-07-19 09:41:36'),(10554,'government','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:40:43'),(10555,'crk','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10556,'irk','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10557,'civiledu','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10558,'history','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:41:35','2020-07-19 09:41:35'),(10559,'physics','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:41:35','2020-07-19 09:41:35'),(10560,'mathematics','54.83.167.125',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 10:33:40','2020-07-19 10:34:30'),(10561,'english','100.24.46.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 11:28:49','2020-07-19 11:28:49'),(10562,'mathematics','3.89.137.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 12:48:58','2020-07-19 12:48:58'),(10563,'physics','3.89.137.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 13:12:25','2020-07-19 13:12:25'),(10564,'biology','35.153.203.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 15:30:03','2020-07-19 15:30:03'),(10565,'mathematics','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:13:34','2020-07-19 18:13:34'),(10566,'chemistry','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:38:42','2020-07-19 18:38:42'),(10567,'geography','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:43:42','2020-07-19 18:43:42'),(10568,'mathematics','54.90.132.175',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:37:55','2020-07-19 20:06:51'),(10569,'history','54.90.132.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:52:46','2020-07-19 19:52:46'),(10570,'government','54.90.132.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:53:17','2020-07-19 19:53:17'),(10571,'accounting','35.175.232.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 20:45:01','2020-07-19 20:45:01'),(10572,'currentaffairs','18.207.214.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 00:10:52','2020-07-20 00:10:52'),(10573,'mathematics','18.208.110.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 01:01:06','2020-07-20 01:01:06'),(10574,'accounting','18.208.110.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 01:07:29','2020-07-20 01:07:29'),(10575,'biology','34.229.38.131',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 03:32:40','2020-07-20 03:32:40'),(10576,'chemistry','34.229.38.131',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 03:34:20','2020-07-20 03:34:20'),(10577,'history','54.157.223.34',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 04:50:50','2020-07-20 05:03:04'),(10578,'irk','54.227.12.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 08:27:27','2020-07-20 08:27:27'),(10579,'englishlit','52.90.162.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 16:42:27','2020-07-20 16:42:27'),(10580,'irk','52.90.162.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 17:12:36','2020-07-20 17:12:36'),(10581,'accounting','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:24','2020-07-20 19:13:25'),(10582,'chemistry','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10583,'englishlit','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10584,'economics','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10585,'insurance','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10586,'currentaffairs','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10587,'history','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10588,'commerce','54.166.211.116',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:40:35','2020-07-20 19:40:35'),(10589,'insurance','3.88.7.36',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 20:42:06','2020-07-20 20:42:06'),(10590,'english','3.88.7.36',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 21:17:21','2020-07-20 21:17:21'),(10591,'government','3.93.216.121',3,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-20 22:44:09','2020-07-23 22:53:55'),(10592,'economics','54.173.94.139',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 23:22:10','2020-07-20 23:22:10'),(10593,'chemistry','184.72.65.217',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 00:44:38','2020-07-21 00:44:38'),(10594,'government','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 01:23:18','2020-07-21 01:23:18'),(10595,'commerce','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 01:45:25','2020-07-21 01:45:25'),(10596,'economics','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:09:47','2020-07-21 02:09:47'),(10597,'geography','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:13:54','2020-07-21 02:13:54'),(10598,'biology','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:39:04','2020-07-21 02:39:04'),(10599,'insurance','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:51:51','2020-07-21 02:51:51'),(10600,'english','35.173.186.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 03:37:34','2020-07-21 03:37:34'),(10601,'englishlit','54.164.4.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 05:49:14','2020-07-21 05:49:14'),(10602,'physics','54.164.4.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 06:13:20','2020-07-21 06:13:20'),(10603,'economics','54.81.181.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 06:51:42','2020-07-21 06:51:42'),(10604,'crk','54.81.181.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 07:25:25','2020-07-21 07:25:25'),(10605,'commerce','18.232.108.127',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 09:00:24','2020-07-21 09:00:24'),(10606,'history','18.206.221.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 09:55:32','2020-07-21 09:55:32'),(10607,'physics','18.206.221.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 10:29:06','2020-07-21 10:29:06'),(10608,'biology','3.85.231.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 11:23:48','2020-07-21 11:23:48'),(10609,'government','3.85.231.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 11:29:12','2020-07-21 11:29:12'),(10610,'physics','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 12:12:57','2020-07-21 12:12:57'),(10611,'englishlit','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 12:28:24','2020-07-21 12:28:24'),(10612,'currentaffairs','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 13:01:37','2020-07-21 13:01:37'),(10613,'english','52.70.85.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 13:22:43','2020-07-21 13:22:43'),(10614,'crk','54.208.43.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 14:15:12','2020-07-21 14:15:12'),(10615,'englishlit','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:26:49','2020-07-21 15:26:49'),(10616,'chemistry','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:31:23','2020-07-21 15:31:23'),(10617,'government','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:48:50','2020-07-21 15:48:50'),(10618,'insurance','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:49:29','2020-07-21 15:49:29'),(10619,'economics','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:58:01','2020-07-21 15:58:01'),(10620,'crk','52.90.180.213',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 16:47:13','2020-07-21 16:47:13'),(10621,'geography','54.166.134.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 17:57:24','2020-07-21 17:57:24'),(10622,'english','54.166.134.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 18:26:42','2020-07-21 18:26:42'),(10623,'currentaffairs','54.196.19.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 20:15:13','2020-07-21 20:15:13'),(10624,'civiledu','35.173.200.62',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 01:25:29','2020-07-22 01:25:29'),(10625,'currentaffairs','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:15:29','2020-07-22 03:15:29'),(10626,'biology','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:17:25','2020-07-22 03:17:25'),(10627,'accounting','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:42:17','2020-07-22 03:42:17'),(10628,'history','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:53:51','2020-07-22 03:53:51'),(10629,'biology','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10630,'chemistry','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10631,'government','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10632,'economics','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10633,'irk','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10634,'insurance','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:37'),(10635,'currentaffairs','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:37','2020-07-22 08:21:37'),(10636,'geography','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:30:53','2020-07-22 08:30:53'),(10637,'english','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:46:13','2020-07-22 08:46:13'),(10638,'history','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 09:16:26','2020-07-22 09:16:26'),(10639,'insurance','18.208.145.205',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 11:46:58','2020-07-22 11:46:58'),(10640,'crk','18.213.2.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 13:18:13','2020-07-22 13:18:13'),(10641,'mathematics','54.237.29.101',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:22:08','2020-07-22 16:37:58'),(10642,'biology','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:23:10','2020-07-22 15:23:10'),(10643,'geography','54.237.29.101',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:24:37','2020-07-22 17:13:37'),(10644,'currentaffairs','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:40:39','2020-07-22 15:40:39'),(10645,'accounting','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:59:56','2020-07-22 15:59:56'),(10646,'physics','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 16:56:32','2020-07-22 16:56:32'),(10647,'mathematics','35.172.179.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 17:56:39','2020-07-22 17:56:39'),(10648,'english','3.91.150.134',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 18:44:30','2020-07-22 18:44:30'),(10649,'physics','3.91.150.134',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 19:29:50','2020-07-22 19:29:50'),(10650,'chemistry','129.205.113.94',720,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-22 20:27:18','2020-07-23 15:52:22'),(10651,'englishlit','54.90.128.253',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 20:39:37','2020-07-22 20:39:37'),(10652,'english','129.205.113.94',1440,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:01:01','2020-07-23 16:38:38'),(10653,'currentaffairs','54.90.128.253',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 21:07:21','2020-07-22 21:07:21'),(10654,'commerce','129.205.113.94',240,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:21:35','2020-07-23 16:34:19'),(10655,'accounting','129.205.113.94',200,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:30:17','2020-07-23 16:34:11'),(10656,'government','129.205.113.94',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-22 21:44:00','2020-07-23 11:40:48'),(10657,'economics','129.205.113.94',240,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:45:29','2020-07-23 16:01:35'),(10658,'englishlit','18.212.49.25',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 21:58:08','2020-07-22 21:58:08'),(10659,'biology','18.212.49.25',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:10:49','2020-07-22 22:10:49'),(10660,'englishlit','129.205.113.94',80,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:12:38','2020-07-22 22:14:23'),(10661,'mathematics','129.205.113.94',120,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:20:22','2020-07-23 16:32:53'),(10662,'mathematics','100.26.51.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10663,'english','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10664,'commerce','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10665,'chemistry','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10666,'englishlit','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10667,'crk','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10668,'irk','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:13','2020-07-23 00:21:13'),(10669,'civiledu','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:13','2020-07-23 00:21:13'),(10670,'geography','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 01:38:33','2020-07-23 01:38:33'),(10671,'government','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:07:36','2020-07-23 02:07:36'),(10672,'mathematics','100.24.34.150',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:15:27','2020-07-23 02:41:47'),(10673,'history','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:39:13','2020-07-23 02:39:13'),(10674,'accounting','100.24.34.185',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 03:24:06','2020-07-23 03:24:06'),(10675,'government','54.86.165.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 05:03:44','2020-07-23 05:03:44'),(10676,'physics','3.81.158.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 06:50:10','2020-07-23 06:50:10'),(10677,'accounting','3.81.158.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 07:47:32','2020-07-23 07:47:32'),(10678,'biology','3.93.234.122',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 09:54:06','2020-07-23 09:55:43'),(10679,'crk','129.205.113.94',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-23 10:07:46','2020-07-23 10:07:49'),(10680,'history','3.82.28.234',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 11:06:41','2020-07-23 11:38:26'),(10681,'accounting','3.87.197.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 12:37:21','2020-07-23 12:37:21'),(10682,'biology','129.205.113.94',40,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 15:58:50','2020-07-23 15:58:53'),(10683,'commerce','52.91.50.150',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 16:35:17','2020-07-23 16:35:17'),(10684,'economics','54.158.23.7',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-23 20:04:53','2020-07-23 20:06:13'),(10685,'insurance','54.158.23.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 20:38:48','2020-07-23 20:38:48'),(10686,'english','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10687,'physics','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10688,'englishlit','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10689,'crk','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:56'),(10690,'geography','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:56','2020-07-23 22:53:56'),(10691,'insurance','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:56','2020-07-23 22:53:56'),(10692,'irk','3.93.234.122',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 23:46:27','2020-07-23 23:46:27'),(10693,'englishlit','3.93.234.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 00:00:05','2020-07-24 00:00:05'),(10694,'commerce','52.91.97.199',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 02:39:14','2020-07-24 02:39:14'),(10695,'english','54.144.20.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 04:14:21','2020-07-24 04:14:21'),(10696,'chemistry','54.175.57.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:01:12','2020-07-24 07:01:12'),(10697,'economics','54.175.57.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:09:33','2020-07-24 07:09:33'),(10698,'geography','54.91.125.95',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:50:17','2020-07-24 07:50:17'),(10699,'government','54.91.125.95',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 08:00:46','2020-07-24 08:00:46'),(10700,'economics','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 08:55:10','2020-07-24 08:55:10'),(10701,'commerce','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:05:30','2020-07-24 09:05:30'),(10702,'biology','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:22:11','2020-07-24 09:22:11'),(10703,'insurance','52.90.221.56',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:56:17','2020-07-24 09:56:17'),(10704,'english','52.90.221.56',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 10:26:11','2020-07-24 10:26:11'),(10705,'economics','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 12:40:41','2020-07-24 12:40:41'),(10706,'crk','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 12:43:43','2020-07-24 12:43:43'),(10707,'physics','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 13:09:15','2020-07-24 13:09:15'),(10708,'crk','3.86.247.69',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 13:49:46','2020-07-24 13:49:46'),(10709,'commerce','3.82.129.194',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 14:50:01','2020-07-24 14:50:02'),(10710,'history','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 16:39:08','2020-07-24 16:39:08'),(10711,'physics','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 17:09:54','2020-07-24 17:09:54'),(10712,'government','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 17:26:57','2020-07-24 17:26:57'),(10713,'physics','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 19:35:38','2020-07-24 19:35:38'),(10714,'currentaffairs','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 19:42:14','2020-07-24 19:42:14'),(10715,'english','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 20:04:34','2020-07-24 20:04:34'),(10716,'crk','34.238.174.197',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 20:46:58','2020-07-24 20:46:58'),(10717,'insurance','3.89.107.73',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 21:23:57','2020-07-24 21:23:57'),(10718,'government','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:22:31','2020-07-24 22:22:31'),(10719,'englishlit','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:29:40','2020-07-24 22:29:40'),(10720,'chemistry','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:40:36','2020-07-24 22:40:36'),(10721,'economics','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 23:28:50','2020-07-24 23:28:50'),(10722,'geography','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 23:58:05','2020-07-24 23:58:05'),(10723,'crk','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 00:18:23','2020-07-25 00:18:23'),(10724,'english','54.156.47.47',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 01:27:57','2020-07-25 01:27:57'),(10725,'biology','3.80.22.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 02:21:10','2020-07-25 02:21:10'),(10726,'currentaffairs','3.80.22.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 02:34:02','2020-07-25 02:34:02'),(10727,'economics','18.234.149.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 06:53:27','2020-07-25 06:53:27'),(10728,'currentaffairs','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:19:21','2020-07-25 08:19:21'),(10729,'civiledu','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:23:31','2020-07-25 08:23:31'),(10730,'geography','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:50:09','2020-07-25 08:50:09'),(10731,'english','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:03:03','2020-07-25 10:03:03'),(10732,'history','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:09:13','2020-07-25 10:09:13'),(10733,'biology','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:30:13','2020-07-25 10:30:13'),(10734,'accounting','18.215.241.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 11:59:50','2020-07-25 11:59:50'),(10735,'geography','54.92.143.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 15:47:23','2020-07-25 15:47:23'),(10736,'history','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 16:50:33','2020-07-25 16:50:33'),(10737,'englishlit','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 16:55:08','2020-07-25 16:55:08'),(10738,'english','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 17:06:43','2020-07-25 17:06:43'),(10739,'physics','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 17:21:17','2020-07-25 17:21:17'),(10740,'insurance','3.92.54.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 19:57:17','2020-07-25 19:57:17'),(10741,'accounting','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:17:40','2020-07-25 22:17:40'),(10742,'biology','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:33:58','2020-07-25 22:33:58'),(10743,'currentaffairs','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:57:50','2020-07-25 22:57:50'),(10744,'geography','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 23:04:44','2020-07-25 23:04:44'),(10745,'physics','54.196.77.219',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:09:59','2020-07-26 00:09:59'),(10746,'geography','54.196.77.219',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:15:49','2020-07-26 00:37:55'),(10747,'mathematics','54.196.77.219',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:17:08','2020-07-26 00:37:04'),(10748,'english','54.196.77.219',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 01:09:23','2020-07-26 01:09:23'),(10749,'englishlit','52.87.51.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 02:59:27','2020-07-26 02:59:27'),(10750,'physics','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 03:33:40','2020-07-26 03:33:40'),(10751,'currentaffairs','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:06:40','2020-07-26 04:06:40'),(10752,'chemistry','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:24:08','2020-07-26 04:24:08'),(10753,'englishlit','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:38:32','2020-07-26 04:38:32'),(10754,'chemistry','35.173.205.203',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 05:43:58','2020-07-26 05:43:58'),(10755,'biology','35.173.205.203',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 05:53:03','2020-07-26 05:53:03'),(10756,'geography','54.144.125.3',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 08:42:11','2020-07-26 08:42:12'),(10757,'mathematics','54.144.125.3',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:15:30','2020-07-26 10:17:04'),(10758,'history','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:23:40','2020-07-26 09:23:40'),(10759,'government','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:26:37','2020-07-26 09:26:37'),(10760,'chemistry','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:46:38','2020-07-26 09:46:38'),(10761,'accounting','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 11:08:38','2020-07-26 11:08:38'),(10762,'government','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 11:30:21','2020-07-26 11:30:21'),(10763,'physics','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 12:05:55','2020-07-26 12:05:55'),(10764,'accounting','3.95.236.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 15:04:50','2020-07-26 15:04:50'),(10765,'chemistry','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 16:33:46','2020-07-26 16:33:46'),(10766,'english','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 16:38:14','2020-07-26 16:38:14'),(10767,'biology','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 17:06:07','2020-07-26 17:06:07'),(10768,'history','52.201.234.18',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 18:43:32','2020-07-26 18:52:19'),(10769,'irk','174.129.160.146',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 22:34:57','2020-07-26 22:34:57'),(10770,'economics','52.71.169.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 02:06:28','2020-07-27 02:06:28'),(10771,'economics','54.81.49.33',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:28:05','2020-07-27 04:58:54'),(10772,'englishlit','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10773,'crk','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10774,'civiledu','54.81.49.33',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:58:54'),(10775,'insurance','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10776,'currentaffairs','54.81.49.33',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:58:54'),(10777,'history','54.81.49.33',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:58','2020-07-27 05:15:10'),(10778,'english','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10779,'mathematics','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10780,'accounting','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10781,'biology','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10782,'chemistry','3.94.145.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:00:25','2020-07-27 06:00:25'),(10783,'history','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:47:31','2020-07-27 06:47:31'),(10784,'englishlit','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:54:13','2020-07-27 06:54:13'),(10785,'irk','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 07:07:31','2020-07-27 07:07:31'),(10786,'commerce','107.20.42.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 09:52:42','2020-07-27 09:52:42'),(10787,'insurance','3.86.238.35',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 10:46:53','2020-07-27 10:46:53'),(10788,'english','3.85.236.123',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 11:27:30','2020-07-27 11:27:30'),(10789,'mathematics','54.91.169.111',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 13:25:56','2020-07-27 13:31:18'),(10790,'economics','35.171.165.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 14:37:15','2020-07-27 14:37:15'),(10791,'chemistry','34.207.248.6',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 15:18:15','2020-07-27 15:18:15'),(10792,'government','52.205.44.192',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 18:13:49','2020-07-27 18:13:49'),(10793,'crk','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 19:27:04','2020-07-27 19:27:04'),(10794,'physics','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 19:50:11','2020-07-27 19:50:11'),(10795,'economics','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 20:00:19','2020-07-27 20:00:19'),(10796,'commerce','52.90.125.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 22:19:32','2020-07-27 22:19:32'),(10797,'history','54.86.33.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 23:34:07','2020-07-27 23:34:07'),(10798,'geography','54.86.33.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 23:37:11','2020-07-27 23:37:11'),(10799,'government','54.92.185.193',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:02:34','2020-07-28 01:02:34'),(10800,'biology','54.92.185.193',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:03:08','2020-07-28 01:03:08'),(10801,'geography','54.92.185.193',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:22:18','2020-07-28 01:22:18'),(10802,'physics','54.92.185.193',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:26:52','2020-07-28 01:26:52'),(10803,'physics','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:18:07','2020-07-28 02:18:07'),(10804,'englishlit','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:21:30','2020-07-28 02:21:30'),(10805,'economics','54.90.185.60',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:23:43','2020-07-28 03:03:33'),(10806,'currentaffairs','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:46:19','2020-07-28 02:46:19'),(10807,'english','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 03:03:38','2020-07-28 03:03:38');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `biology` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=385 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `biology` VALUES (1,'In the egg of bird, the embryo is located in the','Chalaza','Yolk  ','albumen  ','embryo','','','d','','utme','2003',191,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:03'),(2,'One distinctive feature in the life history  of liverworts is that they exhibit','alternation of generation  ','vegetative reproduction  ','sexual reproduction','sexual reproduction','','','a','','utme','2003',184,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:04'),(3,'The umbrella-shaped fruiting body of a fully developed mushroom is the','pileus  ','Mycelium','basidium  ','Stipe','','','a','','utme','2003',173,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:05'),(4,'The similarly  among organisms belonging to the same group will be least within each','family  ','order  ','kingdom   ','species','','','c','','utme','2003',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:06'),(5,'Hermaphroditic reproduction can be found among the','arthropods and nematodes  ','Pisces and amphibians   ','annelids and molluscs','coelenterates and  platyghelminthes','','','d','','utme','2003',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:07'),(6,'An insect whose economic importance is both harmful and beneficial is the','tests fly  ','black','mosquito   ','butterfly','','','d','','utme','2003',184,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(7,'The cell component that is present in a prokaryotic cell is the','chloroplast   ','ribosome','mitochondrion   ','nuclear envelope','','','b','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:52'),(8,'The stunted group of a leguminous plant suffering from nitrogen deficiency may be corrected by inoculating the soil with','denitrifying bacteria  ','saprophytic bacteria','Rhizobium   ','nitrosomonas','','','c','','utme','2003',183,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:52'),(9,'If water that has been coloured red is poured at the base of a wilting plant, it will appear as a red stain in the cells of','Xylem  ',' epidermis  ','phloem  ','parench','','','a','','utme','2003',184,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(10,'The dark reaction of photosynthesis involves the  ','reduction of carbon (IV) oxides to organic compounds  ','release of oxygen and the splitting of water','photolysis of water and the production of starch  ','splitting of water into hydrogen ions.','','','a','','utme','2003',180,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(11,'Organisms I, II, III and IV have surface volume ratios  of 1:2, 1:3, 1:4, 1:5, respectively. The organism that is likely to have the most complex transport system is','IV','III  ','I  ','II','','','a','','utme','2003',155,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(12,'The part of the mammalian digestive  system where absorption of nutrients takes place is the','ileum  ','colon  ','esophagus  ','duodenum','','','a','','utme','2003',169,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(13,'The best method of propagating sugarcane by','seed sowing  ','layering','grafting  ','stem cuttings','','','d','','utme','2003',172,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(14,'In mammalian males, the excretory and reproductive  systems share the','ureter     ','vas deferens  ','urethra  ','Testes.','','','c','','utme','2003',182,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(15,'Metabolic production of urea is carried out in the','Urinary bladder and kidney','liver   ','pancreas  ','kidney and malphigian tubule','','','b','','utme','2003',175,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:52'),(16,'The structure can be found in the','sympathetic and parasympathetic nervous systems  ','peripheral and central nervous systems','peripheral nervous system only  ','central nervous system only','','','b','','utme','2003',172,'Admin','0000-00-00 00:00:00','2020-07-25 09:06:17'),(17,'The point marked I is referred to as  ','myelin sheath','dendrites  ','axon  ','node of Ranvier','','','d','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:29'),(18,'Homologous pairs of chromosomes separate during','cytolysis   ','cleavage','mitosis  ','Meiosis','','','d','','utme','2003',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:30'),(19,'An example of a caryopsis is','guava   ','maize grain','coconut','tomato','','','b','','utme','2003',181,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(20,'The response of plants to external stimuli in a non-directional manner is known as ','tactic movement','phototropism  ','geotropism','nastic  movement','','','d','','utme','2003',178,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(21,'The most important hormone that induces the ripening of fruit is','ethylene  ','indole acetic acid','gibberellin  ','cytokinin','','','a','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(22,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','a','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:34'),(23,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','c','','utme','2003',196,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(24,'One example of fossil fuel is','limestone  ','coral  ','coal  ','firewood','','','b','','utme','2003',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:36'),(25,'The most effective method of dealing with non-gradable pollutants by  \\\\','dumping  ','recycling  ','incineration  ','Burying','','','d','','utme','2003',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:37'),(26,'The correct sequence of biomes from northern to southern Nigeria is','gulnea savanna _ sudan savanna_ tropical rain forest_ sahel savanna_eetuarine  ','estuarine_tripical rainforest_guinea savanna _ sahel_ savanna  ','sahel savanna_ tropical_rain forest_ estuarine _guinea savanna','sahel savanna_sudan savanna_guinea savanna _tropical rain forest_estuarine','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(27,'Mycorrhiza is an association  between fungi and','protozoans','roots of higher plants','bacteria','filamentous algae','','','d','','utme','2003',180,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(28,'A limiting factor in a plant population near a chemical factory is likely to be','light  ','humidity  ','wind  ','PH.','','','d','','utme','2003',200,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:40'),(29,'Soil fertility can best be conserved and renewed by the activities of','earthworms  ','man  ','rodents  ','microbes','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:40'),(30,'The pioneer organism in ecological  succession are usually the','mosses  ','lichens  ','ferns','Algae','','','d','','utme','2003',197,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(31,'If a DNA strand has a base sequence TCA, its complementary strand must be','ATG  ','TAG','GAT  ','AGT','','','d','','utme','2003',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:42'),(32,'A man and his wife are both heterozygous for the sickle cell trait. The likely percentage of their offspring that will be either carriers of sicklers is','75%','50%','25%','100%','','','d','','utme','2003',220,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(33,'If the pair of alleles for baidness is given as Bb, a female carrier will be denoted by','XbY   ','XBXB  ','XBY','XBXb','','','a','','utme','2003',180,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(34,'An organ  that has been extensively used to test the chromosome theory of heredity is','Drosophila   melanogaster','Muscat domestic  ','Zea mays  ','homo sapiens','','','c','','utme','2003',177,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(35,'A feature association with the Y- chromosome in humans is  ','Drosophila melanogaster','prominent fingernails  ','facial hairs  ','enlarged breast','','','b','','utme','2003',170,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(36,'The type of reproduction that leads to variation in animal and plant population is','  budding',' sexual','vegatative','asexual','','','a','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(37,'An insect with a mandibulate  mouth part will obtain its food by','biting and chewing   ','chewing and sucking  ','chewing  ','Sucking','','','c','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(38,'An argument against Lamarck’s theory of evolution is that  ','disuse of  body part cannot weaken the part  ','disused part is dropped off in the offspring  ','acquired traits cannot be passed onto the offspring  ','traits cannot be acquired through constant use of body parts','','','b','','utme','2003',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:50'),(39,'Spines and shells on animals are adaptations for','camouflage  ','chemical defence','physical defence  ','mimicry','','','c','','utme','2003',176,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:51'),(40,'An example of cryptic colouration is the','mottled colours on moths that rest o lichens  ','bright colour of an insect pollinated flower','green colour of a plant  ','bright marks on a poisonous tropical frog on variegated  leaves','','','d','','utme','2003',156,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(41,'Which of the following requires the use of carbon dating to prove that evolution has occurred?  ','comparative anatomy  ','biochemical similarities   ','molecular records','fossil records','','','d','','utme','2003',181,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(42,'The inactive state exhibited by an animal during hot dry seasons is termed  ','aestivation','dormancy  ','resting','Hibernation','','','a','','utme','2003',167,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(43,'The rods in the retina of the eye are examples of','cells   ','Tissues  ','organs  ','systems','','','a','','utme','2004',188,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(44,'The absence of special food and water-conducting systems  restricts the body size in','algae, liverworts and mosses  ','liverworts, mosses and ferns  ','the bryophytes and the pteriodophytes  ','the thallophytes and the pteriodphytes','','','a','','utme','2004',166,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(45,'A plant like feature I Euglena is the','Pellicle  ','pigment sport','large vacuole   ','gullet','','','b','','utme','2004',185,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:52'),(46,'The most common characteristic of the fungal hyphae is the possession of  ','cell like compartments with one nucleus each  ','cell walls that are true are both rigid and chitinous  ','a multicellular mycelium in strate  ','cell like partitions formed  by cross walls','','','b','','utme','2004',183,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:57'),(47,'Insects are considered the most successful among the invertebrates because they','possess exoskeletons',' survive in various environmental conditions  ','have wings for flight  ',' possess the ability to change their forms','','','a','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:52'),(48,'The larval stage of a mosquito is called','wriggler  ','Grub  ','maggot  ','Caterpillar','','','a','','utme','2004',207,'Admin','0000-00-00 00:00:00','2020-07-14 13:06:59'),(49,'The function of the long-winged reproductive in a  termite colony is to','disperse the population  ',' feed the young   ','participate in swarming','protect the young','','','c','','utme','2004',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:00'),(50,'A peculiar characteristic of mammals is that they  ','have teeth  ','are warm blooded  ','haelungs','have sebaceous glands','','','d','','utme','2004',166,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:01'),(51,'In the internal structure of plants, a wide pith in the centre is common to','dicot stems and moocot stems','dicot stems and monocot roots','dicot roots and monocot roots','dicotroots and monocot stems','','','b','','utme','2004',187,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(52,'The gall bladder of mammal has a duct connected to','liver  ',' duodenum  ','small intestine','pancreas','','','b','','utme','2004',177,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:03'),(53,'Al living cells require water because it','is a medium for all metabolic reactions  ','is a medium that neutralizes acids in cells','is the main source of energy for the cells','prevents the development of disease in cells.','','','a','','utme','2004',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:04'),(54,'The Breakdown of fats and oils into simpler absorbable compounds is catalyzed by the group of enzymes called','lipases   ','hydrolases  ','amylases','peptidases','','','a','','utme','2004',172,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(55,'The surface of an alveolus in a mammal is well supplied with tiny blood vessels known as','arterioles  ','Venules','arteries  ','capillaries','','','d','','utme','2004',160,'Admin','0000-00-00 00:00:00','2020-07-24 23:34:52'),(56,'The anaerobic fermentation of a glucose molecule yields.','38ATP molecules  ','2ATP molecules and alcohol','Pyruvic acid and alcohol  ','water and carbon (IV) oxide','','','b','','utme','2004',169,'Admin','0000-00-00 00:00:00','2020-07-16 00:47:41'),(57,'The opening of the stoma is controlled by the  ','presence of a pore  ','increase in solute concentration  in the guard cells  ','presence of guard cells','decrease in solute concentration in the guard cells','','','b','','utme','2004',185,'Admin','0000-00-00 00:00:00','2020-07-20 14:28:25'),(58,'The type of reproduction that is common to both Hydra and yeast is','conjugation','binary fission','grafting  ','Budding','','','d','','utme','2004',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:09'),(59,'The eggs of birds contain relatively larger quantities of yolk than those of amphibians and reptiles because','birds are generally bigger in size','embroyonic development is longer in birds  ','those of birds are fertilized internally  ','birds lay shelled eggs','','','b','','utme','2004',193,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(60,'Epigeal germination of a seed is characterized by','more rapid  elongation of the hypocotyl than the epicotyl','more rapid elongation of the epicotyl than the hypocotyl  ','equal growth rate of both the hypocotyl and epicotyl  ','lack of growth of the hypocotyl','','','a','','utme','2004',176,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(61,'Nervous control differs from hormonal control in that the former  ','involves only chemical  transmission','is a slower process','produces short term changes  ','has no specific pathway','','','c','','utme','2004',176,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(62,'If a nursing mother is not  producing enough milk, her hormonal system is probably deficient in','prollactine  ','estosterone','thyroxin','insulin','','','a','','utme','2004',163,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:13'),(63,'The two key cations involved in the action potential of nervous transmissions are ','Na+ and Fe2+',' Mg2+ and K+','Na+ and K+  ','Fe2+ and Mg 2+','','','c','','utme','2004',189,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:51'),(64,'A caterpillar and an aphid living in different parts of the same plant can be said to',' occupy the same ecological riches   ',' Be in different habitats  ','occupy different ecological riches  ','be in  similar micro habitats','','','c','','utme','2004',174,'Admin','0000-00-00 00:00:00','2020-07-22 20:23:40'),(65,'Use the table below to answer questions 33 and 34\\nZone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nHigh relative humidity will be expected in zones \\n','I and II','I and IV  ','II and III  ','II and IV','','','c','','utme','2004',173,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(66,'Zone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nWhich of the zones is likely to be a desert\\n','I  ','II  ','III  ','IV','','','a','','utme','2004',174,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(67,'The association between termites and the cellulose digesting protozoans in heir guts is an example of  ','saprophytism  ','mutualism','parasitism  ','commensalism','','','b','','utme','2004',156,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:18'),(68,'The progressive loss of energy at each level in a food chain  leads to','an increase in biomass at each successive level  ','a decrease in biomass at each successive level  ','an increase in the number of organisms at each successive level','an increase in the total weight of living matter at each successive level.','','','b','','utme','2004',176,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(69,'One adaptation of reptiles of water loss is the presence of','Keratinous scales  ','claws on Limbs  ','Long tails   ','long stickly tongues','','','a','','utme','2004',179,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(70,'A state in Nigeria that is most susceptible to desert encroachment is','Kwara  ','Taraba  ','Kaduna','Katsina','','','d','','utme','2004',187,'Admin','0000-00-00 00:00:00','2020-07-22 20:23:40'),(71,'The Scarcity of food causes a sudden decrease in population size by','decrease the reproductive rate','bringing about immigration','raising the mortality rate','minimizing the rate of competition','','','a','','utme','2004',169,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:21'),(72,'The soil type that will be most difficult to plough in a wet season is one that is  ','loamy   ','clayey  ','sandy  ','silty','','','b','','utme','2004',168,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:52'),(73,'A farm practice that results in he loss of soil fertility is','mixed farming','bush fallowing','shifting cultivation  ','continuous cropping','','','d','','utme','2004',182,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(74,'Paternity disputes can most accurately be resolved though the use of','Gringer printing   ','blood group typing   ','DNA analysis   ','tongue rolling','','','c','','utme','2004',167,'Admin','0000-00-00 00:00:00','2020-07-25 18:52:25'),(75,'In a mendelian cross of red and white varieties of the four o’clock pant, the F1 generation expresses incomplete dominance by having flowers which are','white  ','red  ','pink  ','multi-coloured','','','c','','utme','2004',193,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(76,'Identical twins inherit their genes from','Different eggs and sperms','The same egg and sperm  ','two egg and a sperm  ','one egg and two sperms','','','b','','utme','2004',182,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(77,'Sex –linked genes are located on','Y-chromostome  ','X and Y chromosomes  ','Homologens chromosomes  ','X-Chromosome','','','d','','utme','2004',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:27'),(78,'Which of the following is an example of intraspecific competition?','a lizard and an ant eater chasing an insect  ','a worker termite and a solider in a limited space  ','a hawk and an eagle targeting the same chicken','yam and potato shoots growing out through the same window','','','b','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:28'),(79,'Plants survive hot dry condition by  ','storing water in large parenchyma cells','producing numerous leaves  ','having numerous stomata  ','having every green leaves','','','a','','utme','2004',167,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(80,'Rodents gnaw on food with their','molar teeth  ','strong jaws   ','flat-ridged teeth  ','chisel like front teeth','','','d','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(81,'The sports and stripes of the leopard and tiger and example of','cryptic colouration  ','warning colouration  ','Disruptive colouration  ','counter shading','','','c','','utme','2004',162,'Admin','0000-00-00 00:00:00','2020-07-14 13:07:31'),(82,'An evidence of the relationship between living organisms and their extinct relatives can best be obtained from','Embryology  ','Comparative anatomy  ','comparative physiology','all of the above','','','d','','utme','2004',204,'Admin','0000-00-00 00:00:00','2020-07-25 22:38:42'),(83,'The organelle common to both plant and animal cells is the','centriole','plasmalemma  ','cell wall','chloroplast','','','c','','utme','2005',178,'Admin','0000-00-00 00:00:00','2020-07-16 01:34:52'),(84,'Which of the following is likely to have a higher concentration of mitochondria? ',' Sperm cell',' white blood cell  ',' Egg cell','red blood cell','','','a','','utme','2005',188,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(85,'The hyphal wall of fungi is rigid  owing to the presence of','cell wall','lignin  ','cellulose  ','chitia','','','d','','utme','2005',187,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(86,'Angiosperms and gymnosperms belong to the class','schizophyta  ','spermatophyte  ','pteridophyta  ','bryophta','','','b','','utme','2005',172,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(87,'An example of a adially symmetrical organism is','planaria  ','Hydra   ','tapeworm  ','roundworm','','','b','','utme','2005',198,'Admin','0000-00-00 00:00:00','2020-07-28 01:03:08'),(88,'the leech and the earthworm belong to the','molluscs  ','crustaceans','arachnids  ','annelids','','','d','','utme','2005',179,'Admin','0000-00-00 00:00:00','2020-07-16 01:33:54'),(89,'I. Rettus rattus   II. Agama agama  II Bufo regularis  IV. Tilapia Zill. The order of evolutionary advancement  of the above','I, II and III , IV  ','I, IV, III, II  ','II, III, IV, I','IV, III, II, I','','','d','','utme','2005',198,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(90,'The stage in the life history  of a moth responsible for the destruction of agricultural crops is the','nymph','imago','pupa   ','caterpillar','','','d','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-07-26 11:43:39'),(91,'The blackly is a vector of','material','trypanosomiasis','onchocerciasis','yellow fever','','','c','','utme','2005',215,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(92,'The transition from amphibians to mammals involves the limbs becoming arranged to support the weight  more effectively requiring modifications in the','collar bones and coccyx','pectoral and pelvic girdles','scapulae and clavicles   ','vertebrae and sternum','','','b','','utme','2005',178,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(93,'The main function of the caudal fin in tilapia  is to  ','propel it forward in water  ','seer it while changing directions  ','balance it in eater','enable it to float in water','','','a','','utme','2005',204,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(94,'In the root vascular system, the stele is directly surrounding by the','pericycle  ','cortex','endodermis  ','Parenchyma','','','c','','utme','2005',180,'Admin','0000-00-00 00:00:00','2020-07-16 01:33:54'),(95,'The only vein that caries pure oxygenated blood is the  ','renal vein  ','Pulmonary vein  ','hepatic vein','sciatic vein','','','b','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-07-15 17:44:19'),(96,'The function of the fluid filled pericardium is to','reduce the friction caused by the pumping movements of the heart   ','supply the heart with oxygen and nutrients  ','prevent disease organisms from attacking the heart  ','reduce the  intensity of the pumping action of the heart','','','a','','utme','2005',189,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(97,'The mammalian lung is made air light by the','pleural cavity  ','mucous membrane','pleural membrane  ','diaphragm','','','a','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-07-20 14:35:15'),(98,'A test tube containing yeast in glucose solution was suspended in a converted conical flask containing alkaline pyrogallol. The  bubbles of carbon (IV) oxide produced indicate that the yeast cells are','respiring in the absence of oxygen  ','librating oxygen  on their own','living and consuming oxygen  ','being killed by the alcohol produced','','','a','','utme','2005',205,'Admin','0000-00-00 00:00:00','2020-07-16 01:43:48'),(99,'The urinary tubules of the kidney function through  ','osmosis and diffusion  ','active transport and osmosis  ','ultra filtration and selective re-absorption','active transport and cytoplasmic streaming  ','','','c','','utme','2005',194,'Admin','0000-00-00 00:00:00','2020-07-15 17:25:08'),(100,'Excess water  in plants is excreted as water vapour and droplets respectively through  ','respiration and guttation  ','transpiration and guttation','photosynthesis and guttation','guttation and condensation','','','b','','utme','2005',162,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(101,'When bacteria swim from cold to warm regions, this is known as','negative chemotaxis  ','positive thermotaxis  ','positive phototaxis','negative phototaxis','','','b','','utme','2005',202,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(102,'Hydrostatic skeleton is the type of supporting system found in','Mammals  ','reptiles  ','oligochaetes   ','arthropods','','','c','','utme','2005',199,'Admin','0000-00-00 00:00:00','2020-07-16 00:16:45'),(103,'Which of the following is a homeostatic response in humans?','withdrawing the hand from a hot object','the mouth getting watery when food is lighted  ','yawning owing to tiredness  ','shivering in a cold environment','','','d','','utme','2005',190,'Admin','0000-00-00 00:00:00','2020-07-15 16:43:39'),(104,'The optimal temperature  for breeding cockroaches is','15oC','19oC  ','24oC  ','33oC','','','c','','utme','2005',198,'Admin','0000-00-00 00:00:00','2020-07-24 19:36:17'),(105,'At which temperature will cockroaches not survive after 10 days?   ','15oC','19oC  ','24oC  ','33oC','','','a','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(106,'The mambilla plateau is a unique Nigeria biome located in','Plateau State  ','Borno state  ','Taraba state  ','Benue state','','','a','','utme','2005',174,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(107,'In Nigeria, the Guinea Savanna belt borders the','mangrove swamps and the Sahel  savanna  ','rainforests and the Sudan savanna  ','deserts and the Sudan savanna  ','rainforests and the desert.','','','b','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-07-15 01:18:54'),(108,'The population density of Tridax in an abandoned square farmland of side 200m was found to be 5 plants per m2. The population size of the plant on the farm is','40','4000','40000','200000','','','d','','utme','2005',189,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(109,'Secondary succession is much faster then primary succession because','pioneer colonizers are more in number  ','soil is already present  ','Secondary series require less nutrients  ','species competition is increased','','','b','','utme','2005',183,'Admin','0000-00-00 00:00:00','2020-07-19 12:29:50'),(110,'Which of the following is used to test for the presence of lime in a soil sample? ','H2SO4(aq)  ','NaOH(aq)','Hcl(aq)  ','HNO3(aq)','','','c','','utme','2005',180,'Admin','0000-00-00 00:00:00','2020-07-21 10:52:20'),(111,'The importance of practicing crop rotation  in agriculture is to','maintain soil fertility','improve the nutritional value of crops   ','control soil erosion   ','ensure the growth of crops.','','','a','','utme','2005',192,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(112,'The recycling method of solid waste disposal is unsuitable for','organic matter  ','glass  ','plastics','metal scraps','','','a','','utme','2005',183,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(113,'A non-renewable alternative source of energy is','wind generators  ','solar panels  ','nuclear energy','hydroelectric power','','','c','','utme','2005',180,'Admin','0000-00-00 00:00:00','2020-07-21 09:24:25'),(114,'Which of the following gis the best explanation for a child who is phenol-typically short and born of two tall parents?','The father possesses a gene for shortness  ','The mother possesses a gene for shortness  ','Nature makes the child short  ','Both parents posses genes for shortness.','','','d','','utme','2005',184,'Admin','0000-00-00 00:00:00','2020-07-15 16:04:26'),(115,'A yellow maize is crossed with the a white maize and the first filial generation produce yellow maize only. The white trait is said to exhibit  ','dominance',' recessiveness','codominance  ','Incomplete  dominance','','','b','','utme','2005',167,'Admin','0000-00-00 00:00:00','2020-07-16 00:22:31'),(116,'The association in which one member benefits and the other is relatively unaffected by the interaction is termed  ','symbiosis','parasitism','commensalism  ','Mutualism','','','c','','utme','2005',179,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(117,'When a peacock displays its colourful  feathers, it is  ','ready for a fight  ','protecting itself from predators  ','protecting its mate from predator','courting a female','','','d','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-07-23 10:21:22'),(118,'When an animal has a dark coloured dorsal surface and light coloured ventral surface, this is an adaptation called  ','concealment coloration  ','countershading','colour blending  ','disruptive coloration','','','b','','utme','2005',198,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(119,'The only caste in the termite colony whose members can feed themselves are the  ','reproductive',' workers  ','nymhs  ','soldiers','','','b','','utme','2005',170,'Admin','0000-00-00 00:00:00','2020-07-24 19:24:17'),(120,'An evidence of a common ancestry for fishes, amphibians, reptiles, birds and mammals is the','possession of wings by bird and bats','cold-bloodedness of fishes, amphibians and reptiles  ','presence of gill clefts in vertebrate embryos','','','','c','','utme','2005',204,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(121,'Mendel, s second law of inheritance states that','alleles separate predictably  ','alleles segregate  independently','chromosomes segregate independently  ','alleles combine randomly','','','b','','utme','2006',176,'Admin','0000-00-00 00:00:00','2020-07-24 19:36:14'),(122,'One advantage of variation in a species population  is that individuals','easily reach their reproduction age','with favoured trait become dominant','are better adapted  to changes','are easily  recognized by mates','','','c','','utme','2006',183,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(123,'The two normal types of sex chromosomes are','xxy and xyy','xx and xyy  ','xx and xy  ','xy and xxy','','','c','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(124,'Hassan and Hussain are identical twins but Hasan grows taller and fatter than Hussain. This is probably  because  ','Hussain in endowed with genes for shortness and thinness  ','They are raised in different environments','they have dissimilar genotypes  ','Hassan inherits genes for tallness and fatness from the father.','','','b','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(125,'Population that doubles in size to constant intervals is an indication of','sigmoid   ','population explosion  ','rapid growth','  exponential growth','','','d','','utme','2006',169,'Admin','0000-00-00 00:00:00','2020-07-25 02:56:11'),(126,'The causative reagent of typhoid fever is  ','Entamoeba','Salmonella','Shigella  ','Escherichia','','','b','','utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:32'),(127,'The  soil type that contains nutrients which are not readily available for plants is ',' sandy  ','Alluvial  ','loamy  ','clayey  ','','','d','','utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(128,'Grasses recover quickly from bush fires in the savanna  because of their  ','succulent stems   ','rapid growth  ','fibrous roots  ','perennating organs','','','d','','utme','2006',190,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(129,'The main purpose of establishing shelter belts in the sahel region to  ','break the harmattan wind  ','beautify the region  ',' check desert encroachment  ','provide wood fuel','','','a','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(130,'Climax communities in a biotic succession are usually characterized by','a constant change in the appearance of the commodities  ','a stable composition of plant and animal species  ','rapid changes in the plant and animal species  ','different species that are constantly changing','','','b','','utme','2006',157,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(131,'The product of excretion common to the mammalian kidney lung and skin is','Urea  ','carbon (IV)oxides  ','mineral salt','water','','','d','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(132,'In rabbits, the chamber of the heart that receives oxygenated blood from the lungs is the  ','left auricle','right auricle','left ventricle','right ventricle','','','a','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(133,'One basic similarly between nervous and endocrine system is that both  ','produce precise and short –lived  effects  ','Involve the use of chemical substances  ','transmit very fast impulses  ','produce widespread effects.','','','b','','utme','2006',174,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:38'),(134,'Night blindness result from a deficiency of  ','Vitamin E  ','Vitamin K  ','Vitamin C  ','Vitamin A','','','d','','utme','2006',167,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:52'),(135,'Water is necessary for a germinating seed because  it','wets the soil for proper germination  ','protects the seed from desiccation  ','activates the enzymes','promotes aerobic respiration  ','','','c','','utme','2006',178,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(136,'An increase  in air pressure in the lings is due to the','increase in the volume of the thoracic cavity  ','relaxation of the diaphragm','upward movement of the ribs','contraction intercostal muscles','','','b','','utme','2006',195,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:52'),(137,'In the transverse section of a dicot stem, the region lying between the endodermis and the vascular bundle is the','parenchyma  ','Pholem','phypodermis  ','pericyle','','','d','','utme','2006',167,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(138,'A unique characteristic of the cervical vertebrae  is the present  of','long transverse processes  ','zygaphphysis   ','vertebraterial canal  ','large centrum','','','c','','utme','2006',182,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(139,'Which of following produces both hormones and enzymes?','Gall blader  ','Lieum  ','Pancreas  ','kidney','','','c','','utme','2006',182,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:44'),(140,'The formation of water in tissue  respiration  results from the  ','combination of water  molecules','breakdown of water molecules  ','reduction of carbon (IV) oxide','reduction of oxygen by hydrogen','','','d','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:49'),(141,'The organ situated in the pericardial cavity of a mammal is the','stomach  ','Liver  ','Liver','spleen','','','c','','utme','2006',153,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(142,'Mammals are  capable  of producing hypertonic urine mainly because of re-absorption in the  ','urethra  ','loop of henle  ','ureater  ','Bowman’s capsule','','','b','','utme','2006',189,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(143,'The mammalian vain which starts with and ends in a capillary network is the','hepatic portal vein','pulmonary vein  ','renal vein','measenteric vein','','','a','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(144,'The part of the mammalian skin involved in temperature regulation is the','sebaceous gland  ','sweat gland','hair follicle  ','hair pailla','','','b','','utme','2006',192,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(145,'The variation illustrated is','physiological   ','discontinuous  ','morphological   ',' biochemical','','','c','','utme','2006',172,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(146,'The change in the length of the necks of the giraffes shown was brought about by  ','predation','symbiosis','natural selection','geographical isolation','','','c','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(147,'Which of the following vertebrates has the most simple structured heart?','fish  ','Mammal','Amphibian  ','Reptile','','','a','','utme','2006',162,'Admin','0000-00-00 00:00:00','2020-07-14 13:08:56'),(148,'The role of the Golgi com plex in a eukaryotic cell is to  ','transport genetic material out of the cell','transport organic materials in and out of the cell','provide attachment for ribosomal granules','conduct ions and out of the cell','','','b','','utme','2006',182,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:50'),(149,'The dominant phase in the life cycle of a bryophyte is the','prothallus  ','Gametangium  ','saprophyte   ','gametophyte','','','d','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(150,'The evidence that supports the advancement of  fern over mosses is derived from ','biochemical similarities  ','','physiological records  ','molecular records','','','b','','utme','2006',192,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(151,'A characteristic that best exemplifies the evolutionary advancement of mammals over other  vertebrates in the  ','terrestrial mode of life  ','possession  of paired limbs  ','a false foot  ','radial symmetry','','','c','','utme','2006',168,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(152,'An organism which exhibits extracelluar digestion is  ','Paramecium','Rhizopus  ','Spirogyra  ','Amoeba  ','','','b','','utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-25 14:59:29'),(153,'The chromosomes of members of the kingdom  monera are within the','nucleus  ',' nucleolus  ',' cytoplasm   ',' Nucleoplasm','','','c','','utme','2007',186,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(154,'A water medium is necessary for fertilization in','angisperms','ferns  ','fungi  ','conifers','','','b','','utme','2007',200,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(155,'The process of shedding the exoskeleton of an arthropod is known as','instar formation','metamorphosis  ','tagmosis  ','Ecdysis','','','d','','utme','2007',197,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(156,'The part labeled IV is responsible for','ingestion   ','locomotion  ',' osmoregualtion  ','respiration','','','c','','utme','2007',180,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(157,'Which of the following is common to the mosquito, housefly and blackfly?  ','Their  immature stages are aquatic   ','They undergo complete metamorphosis  ','Their adults have two pairs of wings   ','They are parasites of man','','','b','','utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(158,'Which of the following has the most primitive respiratory system?','Fish','Snail  ','Mouse','insect','','','b','','utme','2007',166,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(159,'Moncot stems differ from dioct  stems in that monocots have','fewer vascular bundies',' no cambium  ','phloem with parenchyma   ',' no pith','','','b','','utme','2007',175,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(160,'In mammals , the  organ directly on top of the kidney is the','prostate gland  ',' pancrease   ','thyroid gland  ',' adrenal gland','','','d','','utme','2007',164,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(161,'The photosynthetic pigment is include  ','melanin and haemoglobin  ',' chlorophyll and carotenoids  ',' carotenoids and haemoglobin  ',' chloroplasts and cytochromes','','','b','','utme','2007',177,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(162,'The pancreas secretes enzymes for the digestion of  ','fats, vitamins and cellulose',' fats, carbohydrates and vitamins  ','proteins, celluclose and minerals  ','fats, proteins and carbohydrates','','','d','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(163,'Which of the following uses diffusion as the principal method of gaseous exchange?','Rate  ','lizard','Earthworm  ','Grasshopper','','','c','','utme','2007',183,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(164,'The opening  and closing of the stoma are regulated by','osmosis   ','diffusion  ','transpiration  ','respiration','','','a','','utme','2007',173,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(165,'The waste product of plants used in the conversion of hide to leather is','resin  ','tannin  ','gum  ','Alkaloid','','','b','','utme','2007',162,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(166,'The correct sequence of the movement of urea during urine formation is','Convoluted tubule_ glomerulus_Henle’s loop_ Bowman’s capsule_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tuble_ Henle’s loop_collecting tubule','convoluted tubule_ Bowman’s capsule_Henle’s loop _ glomerulus_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tubule_ Henle’s loop_convoluted tubule_collecting tubule','','','d','','utme','2007',170,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(167,'Pineapple is an example of','a composite fruit  ','a simple fruit','an aggregate fruit','a dehiscent fruit','','','a','','utme','2007',164,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(168,'Stunted growth and poor root development are a result of as deficiency in  ','calcium  ','sulphur  ','iron  ','phosphorous','','','a','','utme','2007',182,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(169,'The highest level of ecological organization is the','niche','biosphere  ','population  ','Ecosystem','','','d','','utme','2007',180,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(170,'A biotic factor which affects the distribution and abundance of organisms in a terrestrial  habitat is','competition  ','temperature  ','light  ','pH','','','a','','utme','2007',167,'Admin','0000-00-00 00:00:00','2020-07-26 11:43:39'),(171,'Which of the following is an example of parasitism?  ','Mistletoe growing on an orange tree','Fungi growing on a dead  tree branch  ','cattle egrets taking ticks from the body of cattle','a squirrel living in an abandoned nest of a bird','','','a','','utme','2007',166,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(172,'The organs that will be most useful  to giant  African rats in finding their way in underground habitats are the  ','Eyes   ','vibrissae','tails  ','Nostrils','','','b','','utme','2007',162,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(173,'One adaptation  shown by hydrophytes in fresh water habitats is the','poor  development of roots and xylem tissues  ','well developed roots and supporting system  ','leaves reduced to spines  ','waxy  cuticle on shoot surface','','','a','','utme','2007',162,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(174,'The mangrove swamp in Nigeria is restricted to the','Guinea savanna','Tropical rainforest','Sudan savanna   ','Sahel savanna','','','b','','utme','2007',170,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(175,'In which of the following Nigerian states can montane vegetation be found?','Plateau','Taraba  ','Enugu  ','Bauchi','','','a','','utme','2007',161,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(176,'The increasing order of the particle size in the following soil types  is','clay_silt_sand_gravel  ','Silt_clay-sand_gravel  ','clay_sand_slit_gravel','silt_sand_clay gravel','','','a','','utme','2007',196,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(177,'A crucible  of 5gm weighted 10gm after filling with fresh soil. It is hen healed in an oven at 100oC for 1 hour. After cooling in a desiccators, the  weight was 8gm. The percentage of water in the soil is  ','20%','40%','6%','80%','','','b','','utme','2007',192,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(178,'The causative agent of bird flu is a','virus  ','bacterium  ','fungus  ','protozoan   ','','','a','','utme','2007',167,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(179,'An accurate identification  of a rapist can be carried out by conducting a','blood group test  ','behavioural traits test  ','DNA analysis   ','RNA analysis','','','c','','utme','2007',189,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(180,'Which of  the following is true of cloning?','it involves the asexual multiplication of the tissues of the original organisms  ',' the clone is similar to but not exactly like the original organism   ','Only one cell of the original organism is needed to initiate the process','it is welcomed as an ethically  and morally sound science','','','c','','utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(181,'An example of a sex-linked  trait is the','ability to roll the tongue','possession of facial hair in adult humans  ','ability to grow long hair in females  ','colour of the skin in human','','','c','','utme','2007',180,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(182,'Which of the following factors can bring about competition in a population? ',' Drought   ','Mortality','Dispersion   ','Emigration','','','d','','utme','2007',162,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(183,'In lizards, the lowering  of the gular fold is used to','attract mates  ','frighten enemies','catch insects   ','defend their territory','','','b','','utme','2007',181,'Admin','0000-00-00 00:00:00','2020-07-25 22:33:58'),(184,'The type of protective adaptation exhibited by the animals is  ','flash colouration   ','disruptive  colouration','warming colouration','countershading  colouration','','','d','','utme','2007',175,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(185,'An example of a fish that aestivates is','lung fish   ','shark','cat fish','croaker','','','a','','utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(186,'The theory  which supports the view that the large muscles developed by an athlete will be passed on to the offspring was proposed by','Darwin  ','Lamarck   ','Pasteur   ','Mendel.','','','b','','utme','2007',153,'Admin','0000-00-00 00:00:00','2020-07-25 20:17:50'),(187,'In terms of the number of individuals, which of the following  taxa is most inclusive?','order','family','class  ','species','','','c','','utme','2008',175,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(188,'A characteristic that can possibly be shared by both living  and non-living organisms is  ','locomotion  ','irritability','increase in biomass','increase in size','','','d','','utme','2008',183,'Admin','0000-00-00 00:00:00','2020-07-26 11:43:39'),(189,'The cell of an onion bulb can be differentiated from a cheek cell by the presence of  ','plasmalemma  ',' chloroplast','cell wall  ',' nucleus','','','c','','utme','2008',174,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(190,'In plants, the structure that performs  a similar  function with the testis is in mammals  is the   ','stigma','filament  ','anther','replace','','','c','','utme','2008',186,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(191,'The bacteria type that are arranged in chains are the','Staphylococci  ','clostridia','streptococci','Bacilli','','','c','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(192,'The most abundant group of organism in the animal kingdom is','Mammalian','Aves  ','Annelida  ','Insecta','','','d','','utme','2008',154,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(193,'Radial symmetry is a feature common to the  ','platyhelminthes','nematodes  ','coelentrates','arthropods','','','c','','utme','2008',176,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(194,'Which of the following  is used mainly for balancing in fish?','The causal fin  ','the pectoral fin','the anal fin  ','The dorsal fin','','','d','','utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(195,'The beak of a duck is structurally adapted  for','scooping and sieving food  ','catching and gasping food  ','picking and cracking food  ','boring and sucking food  ','','','a','','utme','2008',174,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(196,'The most important characteristic that makes reptiles to conquer terrestrial habitats is the possession of','long tail','scaly skin','sharp claw','amniotic egg','','','b','','utme','2008',181,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(197,'Inn a dictyledonous stem, the zone between the epidermis and the pericycle is the','cortex  ','stele','xylem','phloem','','','a','','utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(198,'The order of passage of food in the digestive system is','ileum caecum large intestine rectum','ileum colon caecum rectum','large intestine ileum caecum rectum','colon caeum ileum rectum  ','','','b','','utme','2008',169,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(199,'Insectivorous plants traps and kill their prey to derive  ','phosphorous  ','calcium  ','nitrogen','Zinc','','','c','','utme','2008',165,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(200,'In the alimentary system of a bird, the function  of teeth is carried out by the','crop  ','Beak  ','Gizzard','tongue','','','c','','utme','2008',151,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(201,'What will happen when two equal  sized pieces of unripe pawpaw labeled X and Y are dropped into equal volumes of concentrated salt solution and distilled water respectively?  ','Pawpaw X will become  turgid  ','Both  will increase in size','pawpaw Y will become turgid','Both will decrease in size','','','c','','utme','2008',173,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(202,'Exhaled air differs from inhaled air in that it  ','contains less amount of carbon (IV) oxide  ','is usually lower in temperature','often has more oxygen  ','usually has more water vapour','','','d','','utme','2008',154,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(203,'In the mammalian kidney,  the Bowman’s  capsule is located in the','ureter','Pelvis  ','cortex','medulla  ','','','d','','utme','2008',193,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(204,'A plant  parenchyma cell also acts as a supporting tissue when it','becomes faccid  ','contains cystals  ','becomes turgid','is pigmented','','','c','','utme','2008',167,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(205,'During ovulation, an egg is released from the','corpus luteum  ','ovarian funnel  ','Graafian follicle','fallopian tube','','','c','','utme','2008',172,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(206,'The transmission of impulses along a nerve fibre is characterized by','hormonal and temperature changes   ','electrical and ionic changes  ','hormonal changes  ','electrostatic changes','','','b','','utme','2008',157,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(207,'The major consequences of bush burning in an ecosystem is  ','the loss of water absorbing ability of the soil','the loss of biological diversity','a decrease in animal population','an increase in soil fertility','','','b','','utme','2008',169,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(208,'Which of the following associations is an example of mutalism?','hydra viridis and zoochlorellae','human and lice   ','Shark and Remora fish  ','Bread and Rhizopus stolonifer  ','','','a','','utme','2008',182,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(209,'In a typical freshwater habitat, the edge of the stream or pond constitutes the','tidal zone  ','interidal zone  ','littoral zone  ','euphotic zone','','','c','','utme','2008',214,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(210,'The main ecological  problem facing interidal organisms is','dessciation','floatation','salinity','humidity','','','a','','utme','2008',182,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(211,'Stomata  of some plants are sunken and protected by hairs. These are features of ','mesophytes','epiphtes  ','hydrophytes  ','Xerophytes','','','d','','utme','2008',195,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(212,'An ecological factor that will have the most  limiting effect on the abundance of phytoplankton in a turbid pond is   ','pH  ','oxygen','light  ','temperature','','','c','','utme','2008',189,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(213,'In an experiment to determine the percentage of air in a soil  sample, the  Following readings were recorded:\\nVolume of water inn a measuring cylinder = 500cm3  \\nVolume of soil added to water= 350cm2\\nVolume of water andn soil after stirring= 800cm2\\nThe percentage of air in the soil sample is \\n','6.25%','10. 36%    ','14.28%','43.28%','','','c','','utme','2008',171,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(214,'A boy who is fond of swimming in a pond finds himself passing urine with traces of blood. He is likely to have contracted  ','Schistosomiasis','onchoerciasis','poliomyelitis  ','salmonellosis','','','a','','utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-26 11:43:39'),(215,'The easiest way to establish  the level of pollution in a local stream is to measure the level of','oxygen','carbon(IV) oxide','ammonia','alkalinity','','','a','','utme','2008',192,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(216,'Which of the following is a major case of variation among  organisms?  ','inbreeding  ','backcrossing   ','sexual reproduction','Gene dominance','','','c','','utme','2008',168,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(217,'The Rhesus factor of blood was first identified in a category of  ','monkeys   ','human females','human males  ','chimpanzees','','','a','','utme','2008',189,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(218,'Genetically modified food products have not become  universally accepted because','They are not tasty as others produced  by conventional means','they are usually costlier than others produced by conventional means','their  efforts on human consumers is not yet fully understood   ','the technology can be applied only  in developed  countries','','','c','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(219,'A major  adaptive feature of endo-parasites is the   ','loss of the organ of movement  ','presence of claws  ','loss of the central nervous system  ','presence of piercing mouthparts','','','a','','utme','2008',189,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(220,'The ability of a chameleon to change its colour is an adaptive feature for  ','attraction','defence  ','display','attack     ','','','b','','utme','2008',170,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(221,'Which of the following is the most advanced evolutionary development in plants?  (a) possession of unicellular structures  ','possession of unicellular structures  ','Development of flowers','dispersal of spores  ','Development of secondary thickening','','','b','','utme','2008',175,'Admin','0000-00-00 00:00:00','2020-07-25 12:10:29'),(222,'The natural process that produces adaptive evolutionary  changes is  ','mutation  ','gene flow  ','genetic drift','natural selection','','','d','','utme','2008',183,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(223,'What is the level of organization  of an onion bulb?','tissue  ','organ','systemic','organism','','','b','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(224,'A characteristic exhibited by all living organism is  ','sexual reproduction   ','aerobic respiration  ','the ability to move from one place to another  ','the ability to remove unwanted substances.','','','d','','utme','2009',189,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(225,'In a cell, the genes are carried by  ','nuclear membranes','chromatin threads  ','lysosomes','mitochondria','','','b','','utme','2009',183,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(226,'Alternation of a sexual and sexual modes of reproduction is found in','blue-green algae  ',' Euglena','fern',' maize','','','c','','utme','2009',175,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(227,'The first terrestrial vertebratese volved from','pisces  ','Reptilia  ','Amphibia  ','Mammalia','','','c','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-15 09:04:03'),(228,'In plants, the structures that play roles similar to the arteries and veins of animals are the  ','xylem and phloem','root hairs and xylem  ','lenticels and phloem  ','roots and stems','','','a','','utme','2009',181,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(229,'A blue-green alga is not a protophytes because','it is aquatic  ','its cells are prokaryotic','it cannot move','it is not a green plant','','','b','','utme','2009',232,'Admin','0000-00-00 00:00:00','2020-07-24 17:37:51'),(230,'The feature that makes locomotion in water easy for fish is the','scaly body','slimy body  ','steam lined body','lateral line','','','c','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(231,'Bird toes suitable for digging have claws that are  ','blunt','curved  ','hooked','sharp','','','a','','utme','2009',192,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(232,'Chewing the cud is an adaptation peculiar to','herbivores','omnivores  ','rodents   ','ruminants','','','d','','utme','2009',200,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(233,'Which of the following is an example of a carnivorous plant?','Hydra','Bladderwort','Yeast','Spirogyra','','','b','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(234,'The part of the alimentary system of a bird where food is  ground into small particles is the','cloaca  ','stomach  ','crop  ','gizzard','','','d','','utme','2009',161,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(235,'Which of the following describes the sequence of blood flow fro the heart to a tissue?','Heart_artery_arteriole _ tissue','Heart_vein_venule _tissue','Heart _ venule _vein_tissue','Heart _arteriole _artery_tissue','','','a','','utme','2009',181,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(236,'The enzymes of the glycolytic pathway are located in  the','mitochondria  ','gastric juice','plasma','cytoplasm','','','d','','utme','2009',155,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(237,'In insects, the structure that performs  the same function as the kidney in man is the','nephridium','flame cell  ','malphigiann tubule','trachea','','','c','','utme','2009',193,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(238,'The axial  skeleton is found in the','skull , ribs, vertebral column and breast bone   ','skull humerus, vertebral column and ribs  ',' breastbone, clavicle, rids and vertebral column',' femur, sternum, ulnae and skull','','','a','','utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-21 10:25:25'),(239,'The reproductive  system of a male mammal is made up of  ','claspers, prostrate, gland, sperm duct and vas deferns','testis, prostrate gland, sperm duct and vas deferns  ','oviduct , urethra, testis and sperm  duct','testis, uterus, prostrate gland and sperm duct.','','','b','','utme','2009',177,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:09'),(240,'In a bean seed, absorption of water at the beginning  of germination is through the  ','hilum','micropyle  ','testa  ','plumule','','','b','','utme','2009',172,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(241,'The most important ecological factor in a terrestrial environment is','rainfall',' humidity','wind',' soil','','','a','','utme','2009',189,'Admin','0000-00-00 00:00:00','2020-07-24 09:22:11'),(242,'The association between bacteria residing I the caecum and the ruminant is  ','parasitism  ','predation  ','saprophytism  ','mutalism','','','d','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(243,'A marine protozoan is likely to have no contractile acuole  mainly because the cytoplasm is  ','isotonic to sea water','hypotonic to sea water','hypertonic to sea water','impervious to seas water','','','a','','utme','2009',187,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(244,'In freshwater  marshes and swamps, the most important abiotic factor that organisms have to','nature  of substratum  ','high salinity  ','high temperature  ','low pH','','','a','','utme','2009',184,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(245,'Which of the following biomass could be characterized by very low rainfall, cold nights, hardays and fast blooming plants?  ','Northern Guinea savanna','southern Guinea savanna  ','Tropical desert',' montane forest','','','b','','utme','2009',171,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(246,'The optimum temperature  for the growth of the organism is','25oC','50oC','75oC   ','100oC','','','b','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(247,'Mass of a crucible = 10g\\n Mass of a crucible and soil before heating = -29g.\\nMass of a crucible and sol after heating = 18g. From the information above, determine the percentage of wter in the given soil sample?  \\n','20%','25%','40%','50%','','','d','','utme','2009',164,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(248,'I Onchocerciasis  II Schistosomiasis  \\nIII Salmonellosis  IV Meningitis \\nWhich of the diseases listed above are associated with water? \\n','I and II only  ','II, III and IV  ','I, II and III  ','II and IV','','','c','','utme','2009',197,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(249,'The major cause of global warming is the','Burning of fossil fuel','construction of dams','use of electricity  ','exploration of space','','','a','','utme','2009',176,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(250,'The uniqueness of an individual organism in a population is accounted for by','evolution','variation  ','adaptation','mutation','','','b','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(251,'A phenotypic character with intermediate forms that can be graded from one extreme to the other is referred to as','discontinous variation   ','continuous variation','a mutant','a genome','','','b','','utme','2009',175,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(252,'A farmer’s assumption that the seed from a good harvest will produce a good yield is explained by the theory  of','evolution','adaptation','variation','heredity','','','d','','utme','2009',181,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(253,'In Mendelian inheritance, discontinuous characters are controlled by the','centromeres','alleles','chromosomes','chromatids','','','b','','utme','2009',201,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(254,'A woman with the ability to roll her tongue (Tt) marries a man who cannot roll his tongue  (tt). What is the probability of each of their children being a tongue roller?','100%','75%','50%','25%','','','c','','utme','2009',182,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(255,'A health condition that isi known to have resulted from gene mutation is  ','heamophilia ','colour blindeness  ',' sickle cell anaemia  ',' anaemia  ','','','c','','utme','2009',187,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(256,'Plants that grow in an area that is neither too wet nor too dry are','xerophytes  ','mesophytes  ','epiphytes','hydrophytes','','','b','','utme','2009',199,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(257,'The part of a domestic fowl responsible  for preventing heat loss is the  ','filoplume ','contour feather  ',' down feather',' quill','','','c','','utme','2009',174,'Admin','0000-00-00 00:00:00','2020-07-23 15:58:50'),(258,'Which of the following animals is most adapted for water conservation?','Earthworms  ','mammals   ','Flatworms  ','Insects','','','d','','utme','2009',163,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(259,'The specialized pigment cells that are involved in colouration and colour change in animals are the','xanthophyl','chromatophores','chlorophyll','mechanic','','','d','','utme','2009',169,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(260,'During the dry season in the tropics, the body metabolism of some animals slows to a minimal level in a process referred to as','hibernation','aestivation','dormancy','sense scense  ','','','b','','utme','2009',167,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(261,'According to Darwin, the driving force behind evolutionary change is','atural selection','genetic drift  ','mutation','gene flow','','','a','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-14 13:51:34'),(262,'Which of the following characterizes a mature plant cell?','The cytoplasm fills up the entire cell space',' The nucleus is pushed to the centre of the cell',' the cell wall is made up of cellulose','The nucleus is small and irregular in shape','','','d','','utme','2010',248,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(263,'Which of the following is NOT a function of the nucleus of a cell?  ','it controls the life processes of the cell','It translates genetic formation for   the manufacture of proteins','it stores and carries hereditary information  ','it sis a reservoir of energy for the cell','','','d','','utme','2010',228,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(264,'The dominant phase in the life cycle of a fern is the','gametophyte  ',' prothallus','sporophyte  ',' antheridium','','','c','','utme','2010',227,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(265,'Parental care is exhibited by','toads','snails',' earthworms',' birds','','','d','','utme','2010',233,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(266,'Which of the following groups of cells is devoid of true nuclei?','viruses','algae  ','Monera','Fungi','','','c','','utme','2010',231,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(267,'Which of the following is true of the transverse section of a dicot stem?','The epidermis is completely encircled by the cortex','The xylem is more interiorly located than the phloem',' The cambium lies between the cortex and the vascular bundles','The vascular bundles are randomly scattered within the  cortex','','','b','','utme','2010',220,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(268,'Which of the following is lacking in the diet of a person with kwashiorkor?','Vitamins  ','Proteins','Carbohydrates  ','Minerals','','','b','','utme','2010',232,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(269,'The mode of nutrition of sundew and bladderwort can be described as','autotrophic  ','saprophytic  ','holozoic   ','chemosynthetic','','','c','','utme','2010',200,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(270,'When a mixture of a food substance fand Benedict’s solution was warmed, the solution changed from blue to brick red . This indicates the presence of','reducing  sugar','fatty acid','sucrose  ','amino acid','','','a','','utme','2010',219,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(271,'The primary structure responsible for pumping blood for circulation through the mammalian circulatory systems is the','veins  ','right auricle  ','arteries','left ventricle','','','d','','utme','2010',245,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(272,'Circulation of blood to all parts of the body except the lungs is through  ','the pulmonary artery  ','systemic circulation','the lymphatic system','pulmonary circulation','','','b','','utme','2010',227,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(273,'Yeast respires anaerobically  to covert simple sugar to carbon (IV) oxide and','alcohol  ','acid','oxygen','water','','','a','','utme','2010',243,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(274,'The sheet of muscle that separates the thoracic and the abdominal cavities is the ','diaphragm  ','intercostal muscles',' pleural membrane   ',' pericardium','','','c','','utme','2010',226,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(275,'The oily substance that lubricates the mammalian hair to keep it flexible ad water repellent is secreted by the','sweat glands','sebaceous glands','fatty  cells','granular layer','','','b','','utme','2010',220,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(276,'The outer layer of the kidney where the Bowman’s capsules are found is the','cortex','pelvis  ','medulla','pyramid','','','a','','utme','2010',239,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(277,'Which of the following stimuli is likely to elicit a nastic response in an organism? ','Touch  ','Light intensity  ','Chemical substances  ','gravity','','','a','','utme','2010',214,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(278,'In the male reproductive system of a mammal, sperm is stored in the','van deferens  ','urethra','epididymis  ','seminiferous tubules   ','','','c','','utme','2010',230,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(279,'Chemosynthetic organism are capable  of manufacturing their food  from simple inorganic substances through the process of','oxidation','denitrification','reduction','phosphorylation','','','a','','utme','2010',236,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(280,'The part of the human gut  that has an acidic  content is the','stomach  ','duodenum  ','ileum','colon','','','a','','utme','2010',233,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(281,'I. Stomata _ spirogyra   II alveoli _ earthworm  III malpighian tubule_mammal Iv.Contractile vacuole _protozoa \\nWhich of the above structures is correctly matched with the organisms in which it is found? \\n','III  ','II   ','I','IV','','','d','','utme','2010',239,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(282,'A food chain always begins with a  ','consumer  ','decomposer  ','producer','primary  consumer','','','c','','utme','2010',226,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(283,'Mycorrhizae promote plant growth by','absorbing inorganic ions from the soil  ','protecting it from infection','helping it to utilize atmospheric nitrogen','serving as a growth regulator','','','a','','utme','2010',259,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(284,'The barrier between maternal and foetal blood is the','placenta  ','liver','umbilical chord  ','uterine wall','','','a','','utme','2010',214,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(285,'The blood component  that has the greatest affinity for oxygen is the ','lymphocytes',' leucocytes','erythorocytes  ','thromboytes','','','c','','utme','2010',249,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(286,'Which of the following organisms is mainly  found in the marine habitat?','Achatina  ','Tilapia  ','Dog fish  ','Tortoise','','','c','','utme','2010',219,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(287,'The two halves of the pelvic girdle are jointed together at the  ','public  symphysis  ','ilium  ','pubis  ','obturator foramen','','','a','','utme','2010',243,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(288,'I. Adoption of appropriate nocturnal habits   II. Burrowing   III. adjusting their  internal body temperature   IV. Possession of many sweat pores.\\nWhich of the above are ways in which desert animals adapt to extreme heat of environment?  \\n','I and IV only  ','II and III only  ','I and II only  ','I, II and III only','','','d','','utme','2010',237,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(289,'Low annual rainfall, sparse vegetation, high dermal temperatures and cold nights are characteristics features of the','tropical  rainforest  ','desert   ','mundane forest','guinea savanna','','','b','','utme','2010',233,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(290,'The average number of individuals of a species  per unit area of the habitat is the ',' population density','population frequency  ','population size','population distribution','','','a','','utme','2010',255,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(291,'The loss of soil through erosion can be reduced by','watering','crop rotation  ','maturing  ','irrigation','','','b','','utme','2010',254,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(292,'The vector for yellow fever is  ','edges mosquito  ','anopheles mosquito  ','tsetse fly  ','blackly','','','a','','utme','2010',245,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(293,'The protozoan plasmodium falciparum is transmitted by','female anopheles mosquitoes  ','female Aedes mosquitoes  ','female Culex mosquitoes   ','Female  blackfly','','','a','','utme','2010',215,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(294,'A dilute solution of phenylthiocarbamide tastes bitter to some people  and is tasteless to others. This is an example of  ','taste bud variation','discontinuous variation   ','morphological variation',' continuous variation','','','b','','utme','2010',234,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(295,'Throxne and adrenalin are examples of hormones which control','blood grouping','tongue rolling  ','behavioural patterns','colour variation ','','','c','','utme','2010',235,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(296,'A pair of genes that control a trait is referred to as','anallele','recessive','dominant  ','ahybrid','','','a','','utme','2010',248,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(297,'The chromosome number of a cell before and after the process of meiosis is conventionally represented as','2n_2n   ','n_n  ','n-2n  ','2n-n','','','d','','utme','2010',234,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:18'),(298,'If both parents are heterozygous for trait, he probability that an offspring will be recessive for that trait is','¾   ','½    ','¼','1','','','c','','utme','2010',228,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(299,'At what stage in the life history of a mammal is the sex of an individual set?','At adolescence','At puberty  ','At birth  ','At conception','','','d','','utme','2010',238,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(300,'The main distinguishing features between the soldier termite and other members of the caste are the','presence of wings, possession of a small head and large thorax','presence of wings, possession of a large thorax  and a small head','absence of wings, possession off strong mandibles and a large head','absence of wings, possession of big head and the absence of mandible.','','','c','','utme','2010',224,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(301,'The flippers of a whale  and the fins of a fish are examples of','divergent evolution  ','co evolution','continuous variation','convergent evolution','','','a','','utme','2010',232,'Admin','0000-00-00 00:00:00','2020-07-27 21:17:17'),(302,'The function of the red head in male Agama lizards is to','scare other males from the territory  ','attract female lizards for mating purposes  ','warn predators of the distastefulness of the animal  ','Conceal and camouflage the animal from predators','','','b','','utme','2011',151,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(303,'In which of the following species is the biomass of an individual the smallest?','Agama sp  ','Bufo sp','spirogyra sp   ','Tilapia sp','','','c','','utme','2011',192,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(304,'Seed plants are divided into','angiosperms and gymnosperms','monocotyledons and dicotyledons','thallophyes and pbryophytes  ','Tracheophytes and ferns','','','a','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-07-14 13:12:15'),(305,'In which of the following groups of vertebrates is parental  care mostly exhibited? ','  Amphibia','Aves  ','Mammalia  ','Reptilia','','','c','','utme','2011',176,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(306,'The adult form of III is a vector of  ','river blindness','cholera','elephantiasis','sleeping sickness','','','c','','utme','2011',184,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(307,'The adaptive importance of nuptial flight from termite colonies is to','provide abundant food for birds and other animals during the early rains','ensure cross breeding between members of one colony  and another','expel  the reproductive so as to provide  enough food for other members','disperse the reproductive in order to establish  new colonies','','','d','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(308,'Which of the following can cause shrinkage  of living cells?  ','Isotonic solution   ','Delonized water  ','Hypertonic solution','hypotonic solution','','','c','','utme','2011',180,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(309,'Which of the following is true of leucocytes?  ','They are most numerous and ramify all cells  ','They are large and nucleated  ','They are involved in blood clotting','They are respiratory pigments','','','b','','utme','2011',179,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(310,'The conversion of a nutrient into a molecule in the body of a consumer is referred to a s  ','assimilation','absorption  ','inhibition','digestion','','','d','','utme','2011',223,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(311,'The ability  of a living organism to detect and respond to changes in the environment is referred to as','irritability','growth    ','taxis','locomotion','','','a','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(312,'In mammals, the exchange of nutrients and metabolic products occurs in the','oesophagus','trachea','lymph   ','lungs','','','c','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-07-24 17:39:36'),(313,'An example of an endospermous seed is   ','cashew  nut  ','cottons seed','bean seed  ','maize grain','','','d','','utme','2011',169,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(314,'I. Parasitism _ Sundew    II Autrrophism_Amoeba    III Saprophytism_ Alga  IV. Heterotrophism- Agama. Which of the above modes of nutrition is correctly matched with the organism that  exhibits it?','III','IV  ','I','II','','','b','','utme','2011',169,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(315,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nIn which of the test tubes will glucose be detected after complete hydrolysis?\\n','II and III only','I only','I, II and III   ','I and II only','','','a','','utme','2011',182,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(316,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nThe enzyme involved in the hydrolysis is\\n','erepsin  ','perilymph   ','maltase  ','rennin','','','c','','utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:52'),(317,'The part of the mammalian ear responsible for the maintenance of balance is the ','pinna   ',' perilymph  ',' Ossicles   ',' cochlea','','','d','','utme','2011',192,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(318,'The path followed by air as it passes through the lungs in mammals is  ','bronchi_ trachea_ alveoli_ bronchioles  ','Trachea _ Bronchiole _ bronchi_ alveoli   ','bornchioles _ alveoli _ bronchi_ trachea   ','trachea_ bronchi _ bronchioles_ alveoli','','','d','','utme','2011',179,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(319,'The movement response of a cockroach away  from a light source can be described as  ','negative phototaxism  ','negative photropism','positive  photropism  ','positive phototaxism','','','a','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(320,'The vascular tissues in higher plants are responsible for  ','suction pressure  ','transpiration pull','the transport of gases and water   ','the movement of food and water','','','d','','utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-23 10:20:11'),(321,'Which of the following organs regulates the levels of water, salts, hydrogen ions and urea in the mammalian blood?','kidney','bladder  ','colon  ','liver','','','a','','utme','2011',166,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(322,'The sequence of the one way gaseous exchange mechanism in a fish is','gills _ operculum _ mouth','mouth_operculum_ gills  ','mouth _gills _operculum','operculum _ gills_ mouth','','','c','','utme','2011',176,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(323,'The  type of asexual reproduction that is common to both paramecium and protists is','speculation  ','fragmentation','fission','budding','','','c','','utme','2011',163,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(324,'In nature, plants and animals are perpetually engaged in mutulism because  ','all animals rely on food produced  by plants','they  utilize respiratory wastes of each other  ','they are neighbours  ','they are rivals','','','b','','utme','2011',145,'Admin','0000-00-00 00:00:00','2020-07-19 16:26:21'),(325,'In an experiment to determine the percentage of humus and water in a soil sample, the following results were obtained. \\nWeight of the evaporating basin alone = 80.5g   Weight of basin and soil = 101.5g    Weight after drying the soil in the oven = 99.0g    Weight of basin and roasted soil = 95.5h\\nThe percentage of humus in the soil sample is  \\n','17.60%','26.70%','16.20%','16.70%','','','d','','utme','2011',157,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(326,'An example of a filter-feeding animals is','butterly  ','whale','mosquito  ','shark','','','b','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(327,'Which of the  following is a feature of the population Pyramid of a developing country?  ','Low birth rate','low death rate  ','short lifespan','long lifespan','','','c','','utme','2011',171,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(328,'the interaction of a community of organisms with its abiotic environment constitutes','a food chain','an ecosystem  ','a microhabitat','a niche','','','b','','utme','2011',182,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(329,'The vector of the malaria parasite is a','female anopheles mosquito  ','male culex mosquitoes','female culex mosquito  ','female Aids mosquito','','','a','','utme','2011',184,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(330,'Which of the following  instruments is used  to measure relative humidity?','Thermometer  ','Hygrometer  ','Anemometer','Hydrometer','','','b','','utme','2011',183,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(331,'Exo-erythrocytic phase  of the life cycle  of malaria parasite occurs in the','reticuloendothelial cells of humans','maphigian tubules of mosquito','brain of humans  ','liver  of humans','','','d','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(332,'Habitats are generally classified into  ','aquatic and terrestrial','arboreal  and marine biomes','microhabitats and macro habitats','biotic and abiotic','','','a','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(333,'Drancunculiasis can be contacted  through  ','drinking contaminated water','bathing in contaminated water  ','bites of blackfly   ','eating contaminated food','','','b','','utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-22 21:29:48'),(334,'Which of the following groups of environmental factors are density dependent?  ','Temperature, salinity, predation and disease   ',' Food, predation, disease and accumulation of metabolites  ','Temperature, food disease and light  ','food, salinity, accumulation  of metabolites and light','','','b','','utme','2011',200,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(335,'Millet, sorghum, maize and onions are common crops grown in Nigerian in the  (a) Sudan savanna','montane forests   ','Sahel savanna','Tropical rainforests','','','','a','','utme','2011',160,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(336,'In which of the following biomes is the south western part of Nigeria located?  ','Tropical rainforest  ','Tropical woodland  ','desert','Temperature forest','','','a','','utme','2011',180,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(337,'Lack of space in a population  could lead to an increase in','birth rate','disease rate','drought   ','water  scarcity','','','b','','utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(338,'The inheritable characters that are determined by a gene located only on the X-chromosome is  ','sex linked','homozygous  ','dominant  ','recessive','','','a','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(339,'If the cross of a red  flowered plant with a white flowered plant produces a pink flowered plant, it is an example of','incomplete dominance  ',' mutation  ',' linkage','co dominance','','','d','','utme','2011',204,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(340,'Which of the following theories was NOT considered by Darwin in his evolutionary theory?','survival of the fittest  ','use and disuse  ','competition ',' variation','','','b','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-07-17 23:18:07'),(341,'The crossing of individuals of the same species with different genetic characters is',' polygenic inheritance  ',' non disjunction  ','inbreeding','cross breeding','','','c','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(342,'The number of alleles controlling  blood groups in humans is','4','5','2','3','','','d','','utme','2011',189,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(343,'During blood transfusion, agglutination may occur as a result of the reaction between','two different antigens  ','two different antibodies  ','similar antigens and antibodies  ','contrasting antigens and antibodies','','','d','','utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-25 12:53:44'),(344,'The fallacy in Lamarck’s evolutionary theory was the  assumption that','acquired traits  are heritable','acquired traits are seldom formed','traits  are acquired  through the use of body parts  ','traits are acquired through disuse  of body parts.','','','c','','utme','2011',196,'Admin','0000-00-00 00:00:00','2020-07-25 18:49:15'),(345,'The brightly coloured eye spots on the hind wings of a moth are an example of ',' disruptive colouration',' continuous variation    ','divergent  Evolution','convergent  evolution','','','d','','utme','2011',178,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(346,'Which of the following is most advanced in the evolutionary trend of animals?  ',' Liver fluke  ','Earthworm','Snail  ','cockroach','','','d','','utme','2012',187,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(347,'Which of the following is the lowest category of  classification?  ','Class   ','species  ','Family','Genus','','','b','','utme','2012',191,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(348,'Plants  that show secondary growth are usually found among the','thallophytes','pteridophytes','monocotyledons  ','dicotyledons','','','d','','utme','2012',184,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(349,'The fungi are a distinct group of eukaryotes mainly  because they have  ','spores  ','no chlorophyll  ','many fruiting bodies','sexual and asexual reproduction','','','d','','utme','2012',192,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(350,'An arthropod that is destructive at the early stage of its life cycle is','butterfly  ','mosquito  ','bee','millipede','','','a','','utme','2012',169,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(351,'An animal body that can be cut along its axis in any plane to give two identical parts is said to be  ','radically  symmetrical','bilaterally symmetrical','asymmetrical','symmetrical','','','a','','utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(352,'Which  of the following possesses mammary gland?','Dogfish','Whale  ','Shark  ','Catfish','','','b','','utme','2012',209,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(353,'The feature  that links birds to reptiles in evolution is the possession of  ','feathers  ','beak  ','skeleton','scales','','','d','','utme','2012',179,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(354,'Counter shading is an adaptive  feature that enables animals to  ','flight enemies  ','remain undetected','warn enemies  ','attract mates','','','b','','utme','2012',176,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(355,'Which of the following plant structures lacks a waterproof of cuticle?  ','leaf  ','stem  ','root','shoot','','','c','','utme','2012',184,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(356,'In the mammalian male reproductive system, the part that serves as a passage for both urine and semen is the ','urethra  ','ureter  ','bladder','seminal vesicle','','','a','','utme','2012',173,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(357,'In plants, which of the  following is required in minute quantities  for growth?','copper  ','potassium','phosphorous','sodium  ','','','a','','utme','2012',175,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(358,'Which of the following organisms is both parasitic and  autotrophic?  ','Sundew  ','Loranthus','Rhizopus  ','tapeworm','','','a','','utme','2012',179,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(359,'A function of the hydrochloric acid produced in the human stomach during digestion is to  ','neutralize the effect of bile   ','coagulate milk protein and emulsify fats  ','stop the action of ptyalin  ','break up food into smaller particles','','','c','','utme','2012',188,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(360,'Which of the following is a polysaccharide?','Glucose  ','sucrose','Maltose   ','Cellulose','','','d','','utme','2012',191,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(361,'In the kidney of mammals, the site of ultra filtration is the','urinferous tuble','Bowman capsule  ','loop of Henle  ','renal tuble','','','b','','utme','2012',166,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(362,'Which of the following  is involved1 in secondary  thickening in plants?','collenchyma  and  xylem cells  ','Vascular cambium and collenchyma’s cells  ','vascular cambium and cork cambium','Cork cambium and sclerenchyma','','','c','','utme','2012',184,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(363,'An example of a fruit  that develops from a single carpel is','(a)okro  ','tomato','bean  ','orange','','','c','','utme','2012',160,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(364,'Plant  growth can be artificially stimulated by the addition of  ','gibberellin  ','kinin','abscisic acid  ','ethylene','','','a','','utme','2012',182,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(365,'The autonomic nervous system consists of neurons that control the','voluntary  muscle','heart beat','tongue  ','hands','','','b','','utme','2012',185,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(366,'Plants of temperate origin can be grown in tropical areas in the vegetation zones of the','rain forest   ','Guinea savanna   ','Sudan savanna','montane forest','','','d','','utme','2012',191,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(367,'The water cycle is maintained mainly by   ','evaporation  of water in the environment  ','evaporation and condensation of water  in the environment  ','condensation of water in the environment  ','transpiration and respiration in plants','','','b','','utme','2012',167,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47'),(368,'Organisms living in an estuarine habitat are adapted to  ','withstand   wide fluctuations in temperature   ','survive only in water with low salinity   ','withstand wide fluctuations in salinity   ','feed only on phytoplankton and dead organic matter.','','','c','','utme','2012',175,'Admin','0000-00-00 00:00:00','2020-07-26 11:43:39'),(369,'The presence of stilt roots, pneumatophores, sunken stomata and salt glands are adaptive features of plants found in the','tropical rainforest','mangrove swamps  ','grassland  ','montane forest','','','b','','utme','2012',164,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(370,'Which of the following animals an exist solely on the water they get from food and metabolic reactions?  ','Forest arboreal dwellers  ','Desert dwellers','forest ground dwellers','rainforest dwellers','','','b','','utme','2012',192,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(371,'The most likely first colonizers of a bare rock are  ','mosses  ','ferns','lichen  ','fungi','','','c','','utme','2012',183,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(372,'The carrying capacity of a habitat is reached when the population growth begins to','increase slowly','increase exponentially','slow down','remain steady','','','d','','utme','2012',200,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(373,'The abiotic factors that  control human population include  ','disease and famine  ','space and rainfall  ','flooding and earthquake   ','temperature','','','a','','utme','2012',176,'Admin','0000-00-00 00:00:00','2020-07-26 20:19:18'),(374,'An indigenous method of renewing and maintaining  soil fertility is by','clearing farms a by burning','planting one crop type  ','adding inorganic fertilizers yearly   ','crop rotation and shifting cultivation','','','d','','utme','2012',184,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(375,'The disease caused by water-brone pathogen include','gonrrhoea and poliomyelitis   ','typhoid and syphilis   ','tuberculosis and cholera','typhoid and cholera','','','d','','utme','2012',185,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(376,'Which of the following is true in blood transfusion?','a person of blood group AB can donate blood only to another person of blood group AB','Persons of blood groups A and B can donate or receive blood from each other','A person of blood group AB can receive blood only from persons of blood group A or B  ','A person of blood group O can donate only to a person of blood group O.','','','a','','utme','2012',182,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(377,'A yellow maize is planted and all the fruits obtained are of yellow seeds. When they are cross bred, yellow seeds and white seeds are obtained in a ratio 3:1. The yellow seed is said to be  ','non heritable','sex linked','a recessive trait  ','a dominant trait','','','d','','utme','2012',194,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(378,'When a colour blind man marries a carrier woman. What is the probability of their offspring being colorblind?','25%','50%','75%','100%','','','c','','utme','2012',188,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(379,'The correct base pairing for DNA is','adenine _ thymine and guanine_ cytosine  ','adenine_ guanine and thymine_ cytosine  ','adenine_ cytosine and guanine_ thymine  ','adenine_ adenine  and cytosine_cytosine','','','a','','utme','2012',173,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(380,'The short thick beak in birds is an adaptation for','crushing seeds','sucking nectar  ','tearing flesh','straining mud','','','a','','utme','2012',207,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(381,'The basking of Agama lizards in the sun is to','chance the colour of their body  ','raise their body temperature to become active','fight to defend their territories','attract the female for courtship','','','b','','utme','2012',164,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(382,'The significance of a very large number  of termites involved in nuptial swarming is to','provide birds with plenty of food','ensure their perpetuation despite predatory pressure  ','search for a favourable place to breed  ','ensure that every individual gets a mate.','','','c','','utme','2012',195,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(383,'The use and disuse of body parts and the inheritance of acquired traits were used to explain  ','Darwin’s theory','Lamarck’s theory','genetic drift  ','gene flow','','','b','','utme','2012',163,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:25'),(384,'From his study of Galapagos finches, Darwin derived his theory of evolution from ',' comparative anatomy','comparative physiology',' fossil remains  ','comparative embryology.','','','a','','utme','2012',149,'Admin','0000-00-00 00:00:00','2020-07-26 20:16:47');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `chemistry` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `chemistry` VALUES (1,'25cm3 of a gas X contains Zmolecules at 150C and 75mmHg. How many molecules will 25cmm3 of another gas Y contain at the same temperature and pressure','2Y','2Z','Z','Y','','','c','','utme','2001',1235,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(2,'What mass of water is produced when 8.0g of hydriogen reacts with excess oxygen [H = 1, O = 16]','36.0g','8.0g','72.0g','16.0g','','','c','','utme','2001',1188,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:44'),(3,'A particle that contains 9 protons, 10 neutrons and 10electrons is a','Neghative ion','Positive ion','Neutral atom of a non metal','Neutral atom of a metal','','','a','','utme','2001',1156,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(4,'Cancerous growths are cured by exposure to','ɣ-rays',' β – rays',' ἀ – rays','X -rays','','','a','','utme','2001',1181,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(5,'An oxide X02 has a vapour density of 32. What is the atomic mass of X [O = 16]','32','20','14','12','','','a','','utme','2001',1174,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(6,'Milikan’s contribution to the development of atomic theory is the determination of','Charge on electron','Positive rays','Charge to amss ratio','Cathode rays','','','c','','utme','2001',1123,'Admin','0000-00-00 00:00:00','2020-07-22 20:29:23'),(7,'Four elements W, X, Y, and Z have atomic numbers 2, 6, 16 and 20 respectively. Which of these elements is a metal','X','W','Z','Y','','','c','','utme','2001',1233,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(8,'An element X with relative atomic mass 16.2 contains two isotopes      X  with relative abundance of 90% and      X with relative abundance of 10%. The value of m is','16','18','12','14','','','b','','utme','2001',1214,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:18'),(9,'Which of the following statements is correct about the average kinetic energy of the molecules of a gas','It inctreasaes with increase in pressure','It increases at constant pressure','It increases with increase in temperature','It increases in volume','','','c','','utme','2001',1211,'Admin','0000-00-00 00:00:00','2020-07-21 18:38:15'),(10,'The pollution from petroleum spillage in rivers and lakes can best be dispersed by','Pouring detergents','Passing of ships through the area','Pouring organic solvents','Evaporation','','','a','','utme','2001',1226,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(11,'Deliquenscent substances are used for','Cooling','Wetting','Melting','Drying','','','d','','utme','2001',1210,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(12,'Pure solvents are obtained by','Distillation','Condensation','Extraction','EvapopraTION','','','a','','utme','2001',1134,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(13,'What is the decrease in volume of air when pyrogallol is shaken with 30.00cm3 of air','15.00cm3','6.00cm3','0.63cm3','0.06cm3','','','b','','utme','2001',1168,'Admin','0000-00-00 00:00:00','2020-07-22 20:28:57'),(14,'Environmental pollution is worsened by the release from automobile exhausts of','Water vapour','Steam','Smoke','Heavy metals','','','c','','utme','2001',1179,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:19'),(15,'The chemiocal used for coagulation in water purification is','Aluminum tetraoxosulphate(VI)','Copper tetratoxosulphate (VI)','Sodium tetraoxosulphate(VI)','Calcium tetraoxosulphate (VI)','','','a','','utme','2001',1172,'Admin','0000-00-00 00:00:00','2020-07-25 23:59:47'),(16,'Phosphorous is stored under water to precvent it from','Dehydrating','Becoming inert','Smelling','Catching fire','','','d','','utme','2001',1098,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:31'),(17,'In which of the following reactuions does reduction take place','Fe2+ - e-   Fe3+','2O2-  → O2 + 4e-','Cr - 2e-  → Cr2+','2H+  +  2e-   →H2','','','d','','utme','2001',1179,'Admin','0000-00-00 00:00:00','2020-07-27 10:16:24'),(18,'P(g) + O(g)    ⇌ 3R(s)  +  S(g)   ΔH is negative which of the following will increase the yield of R','Using a larger closed vessel','Increasing the temperature','Removing some S','Adding a positive catalyst','','','c','','utme','2001',1189,'Admin','0000-00-00 00:00:00','2020-07-27 01:18:49'),(19,'A metal M displaces zinc from zinc chloride solution. This shows that','M is more electronegative than zinc','Zinc is above hydrogen in the series','M is more electropositive than zinc','Electrons flow from zinc to M','','','c','','utme','2001',1235,'Admin','0000-00-00 00:00:00','2020-07-22 20:28:58'),(20,'Which of the following best explains the increase in the rate of a chemical reaction as the temperature rises','The bonds in the reacting molecules are more readily broken','The molecules collisions become more violent','A lower proportion of the molecules has the necessary minimum energy to react','The collision frequency of the molecules increases','','','d','','utme','2001',1160,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:19'),(21,'What current in amperes will deposit 2.7g of aluminium in 2 hours [Al = 27, f = 96500 C mol-1]','32','8','4','16','','','c','','utme','2001',1162,'Admin','0000-00-00 00:00:00','2020-07-21 15:31:23'),(22,'Ethanoic acid is','Tribasic','Unionizeable','Monobasic','Dibasic','','','c','','utme','2001',1183,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:07'),(23,'C(s) + 2S (g)  → CS2 (g)      Δ H = +89kJ mol-1. The chemical equation above implies that','Each of carbon and sulphur has 89kJ of energy','Both carbon and sulphur contribute 89kJ of energy','89kJ of energy is released','89kJ is absorbed','','','d','','utme','2001',1141,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(24,' 2SO2(g) + O2(g) ⇌  2SO3(g)  The equilibrium constant for the reaction above is increased by  [ΔH = -189kJ mol -1]','Increasing the temperature of the system','Increasing the pressure of the system','The addition of a catalyst to the system','Increasing the surface area of the vessel','','','b','','utme','2001',1167,'Admin','0000-00-00 00:00:00','2020-07-22 20:28:57'),(25,'3CU(s)  +  8HNO3(aq) →  3Cu(NO3)2(aq)  +  4H2O(I)  +  2NO(g)  In the equation above, copper is','An electron acceptor','A base','An oxidizing agent','A reducing agent','','','d','','utme','2001',1167,'Admin','0000-00-00 00:00:00','2020-07-22 20:35:48'),(26,'When ΔH is negative, a reaction is said to be','Ionic','Reversible','Exothermic','Endothermic','','','c','','utme','2001',1198,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(27,'As the concentration of an electrolyte reduces, the conductivity','Reduces to zero','Decreases','Increases','Is unaffected','','','b','','utme','2001',1169,'Admin','0000-00-00 00:00:00','2020-07-26 12:53:14'),(28,'In which of the following reactions has the oxidation number of nitrogen increased','2NO(g)  +  Br2(l)  → 2NOBr(l)','2NO2(g)  +  O2(g)   → 2NO2(g)','FeSO4(aq)  +  NO(g) → Fe(NO)SO4(s)','2NO(g)  +  CI2(g) →  2NOCI(l)','','','b','','utme','2001',1088,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:39'),(29,'NH3(g)  +  HCI(g)  → NH4CI(s) The entropy change in the system is','Negative','Indeterminate','Positive','Zero','','','b','','utme','2001',1144,'Admin','0000-00-00 00:00:00','2020-07-26 13:31:03'),(30,'Fermentation is the','Breaking down of carbohydrate to glucose','Conversion of sugar to alcohol in the presence of yeast','Breaking down of sugar to carbohydrate','Conversion of alcohol to sugar in the presence of yeast','','','b','','utme','2001',1167,'Admin','0000-00-00 00:00:00','2020-07-23 03:30:19'),(31,'The general formula for the alkanals is','ROH','R2CO','RCOOR1','RCHO','','','d','','utme','2001',1185,'Admin','0000-00-00 00:00:00','2020-07-22 22:20:02'),(32,'The main impurity in iron ore during the extraction of iron is','Silicon (IV) oxide','Carbon(IV) oxide','Calciumtrioxosilicate','Sulphur(II) oxide','','','a','','utme','2001',1170,'Admin','0000-00-00 00:00:00','2020-07-22 22:20:00'),(33,'During the vulcanization of rubber, sulphur is added to','Break down rubber polymer','Lengthen the chain of rubber','Bind rubber molecules together','Act as a catalyst','','','c','','utme','2001',1159,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:21'),(34,'Catalytic hydrogenation of benzene produces','Oil','Cyclohexane','Cycloexane','Margarine','','','c','','utme','2001',1231,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:34'),(35,'A trihydric alkanol is','glycerol','phenol','glycol','ethanol','','','a','','utme','2001',1131,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:30'),(36,'When chlorine is passed into water and the resulting solution exposed to sunlight, the product formed are','Chlorine gas and hydrogen','Oxygen and oxochlorate(l) acid','Hydrochloric acid and oxygen','','','','b','','utme','2001',1207,'Admin','0000-00-00 00:00:00','2020-07-26 19:30:54'),(37,'Proteins in acid solution undergo','Polymerization','Substitution','Fermentation','Hydrolysis','','','d','','utme','2001',1177,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:19'),(38,'A characteristic reaction of the compounds with the general formula CnH2n is','Esterification','Polymerization','Decarboxylation','Substitution','','','b','','utme','2001',1196,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(39,'The pair of organic compounds that are isomers is','Benzene and methylbenzene','Trichloromethane and Tetrachloromethane','Ethanol and propanone','But-1-ene and but-2-ene','','','d','','utme','2001',1137,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:44'),(40,'A burning candle produces water and','Carbon(II)oxide','Carbon(IV) oxide','Oxygen','Hydrogen','','','d','','utme','2001',1189,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:45'),(41,'The gas that can best be collected by downward displacement of air is','Chlorine','Sulphur(IV)oxide','Ammonia','Carbon(IV)oxide','','','c','','utme','2001',1210,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:20'),(42,'Which of the following metals burns brick with a brick-red','Pb','Ca','Na','Ma','','','b','','utme','2001',1167,'Admin','0000-00-00 00:00:00','2020-07-20 09:41:18'),(43,'Which of the followinig respresents hybridization in ethyne?','Sp2','Sp2d','Sp3','sp','','','d','','utme','2001',1181,'Admin','0000-00-00 00:00:00','2020-07-17 19:30:20'),(44,'When sodium reacts with water, the resulting solution is','weakly acdic','neutral','acidic','alkaline','','','d','','utme','2001',1188,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(45,'Which of the following gases contains the least number of atoms at s.t.p','4 moles of chlorine','3 moles of ozone','1 mole of butane','7 moles of argon','','','c','','utme','2002',1146,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(46,'A compound contains 31.91% potassium, 28.93% chlorine and the rest oxygen. What is the chemical formular of the compound','KCLO3','KCLO4','KCLO','KCLO2','','','a','','utme','2002',1113,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(47,'The formula CH2O for ethanoic acid is regarded as its','General formula','Structural formula','Molecular formula','Empirical formula','','','d','','utme','2002',1131,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(48,'A little quantity of Trichloromethane (b.pt.600C) was added to a large quantity of ethanol (b.pt.780C). the most probable boiling point of the resultant mixture is from','699C – 700C','820C – 840C','600C – 780C','700C – 744C','','','d','','utme','2002',1134,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(49,'The chromatographic separation of ink is based on the ability of the components to','React with each other','React with the solvent','Dissolve in each other in the column','Move at different speeds in the column','','','d','','utme','2002',1148,'Admin','0000-00-00 00:00:00','2020-07-26 13:28:59'),(50,'Steam changes the colour of anhydrous cobalt(II) chloride from','White to red','Blue to white','White to green','Blue to pink','','','d','','utme','2002',1124,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(51,'Which of the following solutions containing only hydroxyl ions will liberate hydrogen gas when reacted with magnesium metal','1.0 x 10-2 mol dm-3','1.0 x 10-4 mol dm -3','1.0 x 10-5 mol dm-3','1.0 x 10-12 mol dm-3','','','d','','utme','2002',1115,'Admin','0000-00-00 00:00:00','2020-07-22 20:29:22'),(52,'The substance least considered as a source of environmental pollution is','Silicate minerals','Uranium','Lead compounds','Organophosphorous compounds','','','a','','utme','2002',1176,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(53,'The property which makes alcohol soluble in water is the','Hydrogen bonding','Covalent nature','Ionic character','Boiling point','','','c','','utme','2002',1171,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(54,'The furring of kettles is caused by the presence in water of','Calcium trioxocarbonate(IV)','Calcium tetraoxosulphate(VI)','CALCIUM HYDROXIDE','Calcium hydrofentrioxocarbonate(IV)','','','d','','utme','2002',1223,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(55,'Tetraoxosulphate(VI) acid burns the skin by','Heating','Hydration','Dehydration','Hydrolysis','','','c','','utme','2002',1176,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(56,'When a salt loses its water of crystallization to the atmosphere on exposure, the process is said to be','Deliquescence','Effervescence','Efflorescence','Fluorescence','','','c','','utme','2002',1192,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:20'),(57,'Three drops of a 1.0 mol dm-3 solution of Na OH are added to 20cm3 of a solution of pH8.4. the pH of the resulting solution will be','Greater than 8.4','Unaltered','Close to that of pure water','Less than 8.4','','','a','','utme','2002',1143,'Admin','0000-00-00 00:00:00','2020-07-25 04:57:26'),(58,'The solubility of a salt of molar mass 101g at 200C is 0.34mol dm-3. If 3.40g of the salt is dissolved completely in 250cm3 of water in a beaker, the resulting solution is','Unsaturated','A suspension','Saturated','Supersaturated','','','a','','utme','2002',1126,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:20'),(59,'25cm3 of a 0.2mol dm-3 solution of Na2CO3 requires 20cm3 of  solution of HCl for neutralization. The concentration of the solution is','0.6 mol dm-3','0.5 mol dm-3','0.4 mol dm-3','0.2 mol dm-3','','','b','','utme','2002',1150,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:10'),(60,'which of the following chlorides would exhibit the least ionic character','AlCl3','CaCl2','MgCi2','LiCl','','','a','','utme','2002',1166,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(61,'If 0.75 mole of cyclopropane and 0.66 mole of oxygen are mixed in a vessel with a total pressure of 0.7 atmosphere. What is the partial pressure of oxygen in the mixture','0.55 atmosphere','0.44 atmosphere','0.33 atmosphere','0.22 atmosphere','','','c','','utme','2002',1148,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(62,'The processes which return carbon(IV) oxide to the atmosphere include','Photosynthesis, decay and respiration','Photosynthesis, respiration and transpiration','Respiration, decay and combustion','Ozone, depletion, combustion and decay','','','c','','utme','2002',1166,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(63,'Which of the following statements is true of a proton.','The total mass of the protons in a particular nucleus always half the nuclear mass','The mass of a proton is 1840 times the mass of an electron','The mass proton is 1.0008g','The mass of a proton is one-twelfth the molar mass of carbon','','','b','','utme','2002',1121,'Admin','0000-00-00 00:00:00','2020-07-19 11:45:46'),(64,'A gas X diffuses twice as fast as gas Y under the same conditions. If the relative molecular mass of X is 28. Calculate the relative molecular mass of Y','120','14','56','112','','','d','','utme','2002',1142,'Admin','0000-00-00 00:00:00','2020-07-22 20:35:46'),(65,'A fixed mass of gas has a  volume of 92cm3 at 30C. What will be be its volume at 180C if the pressure remains constant','15.3cm3','87.3cm3','97.0cm3','552.0cm3','','','c','','utme','2002',1123,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(66,'The postulate of Dalton’s atomic theory which still holds is that','Particles of different elements combine in a simple whole number ratio','Atoms can neither be created nor destroyed','The particles of the same element are exactly alike','All elements are made of small indivisible particles','','','a','','utme','2002',1139,'Admin','0000-00-00 00:00:00','2020-07-27 00:34:17'),(67,'Ordinary glass is manufactured from silica, Ca CO3 and','K2CO3','NaHCO3','Na2CO3','K2SO4','','','c','','utme','2002',1152,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:18'),(68,'A rock sample was added to cold dilute HNMO3. The gas evolved was passed into a solution of acidified K2Cr2O7 and the solution turned green. The rock sample contains','NO3-','Cl-','SO42-','SO32-','','','d','','utme','2002',1110,'Admin','0000-00-00 00:00:00','2020-07-22 22:20:01'),(69,'Hydrogen is readily released when dilute hydrochloric acid reacts with','Au','Cu','Na','Ag','','','c','','utme','2002',1110,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:33'),(70,'The most important use of hydrogen is in the','Hydrogenation of oils','Manufacture of methyl alcohol','Manufacture of ammonia','Manufacture of ethyl alcohol','','','c','','utme','2002',1168,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(71,'Which of the following gives a precipitate when treated with NaOH solution','Na2CO3','CH3COONa','NH4Cl','AlCl3','','','d','','utme','2002',1206,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:29'),(72,'The intermediate product formed when ethanol is progressively oxidized to ethanoic acid with potassium heptaoxodichromate(VI) is','Ethanol','Methanol','Butanal','Propanal','','','a','','utme','2002',1139,'Admin','0000-00-00 00:00:00','2020-07-26 13:46:41'),(73,'The gas that gives brown colouration in brown ring test','Co2','NO2','NO','CO','','','b','','utme','2002',1074,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:22'),(74,'The boiling of fat and aqueous caustic soda is referred as','Saponification','Esterification','Acidification','Hydrolysis','','','a','','utme','2002',1173,'Admin','0000-00-00 00:00:00','2020-07-22 20:29:23'),(75,'What volume of oxygen is produced from the decomposition of 2 moles of KClO3 at s.t.p   [Molar volume of a gas at s.t.p = 22.4 dm3]','22.4 dm3','33.6 dm3','44.8 dm3','67.2 dm3','','','d','','utme','2003',1090,'Admin','0000-00-00 00:00:00','2020-07-25 23:59:47'),(76,'Which of the following is a physical change','Burning kerosene','Freezing ice-cream','Exposing white phosphorus to air','Dissolving calcium in water','','','b','','utme','2003',1166,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:17'),(77,'What is the percentage by mass of oxygen in Al2(SO4)3.2H2O','14.29%','25.39%','50.79%','59.25%','','','d','','utme','2003',1138,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:18'),(78,'The filter in a cigarette reduces the nicotine content by','Burning','Adsorption','Evaporation','Absorption','','','b','','utme','2003',1147,'Admin','0000-00-00 00:00:00','2020-07-26 19:30:54'),(79,'3Cu  +  pHNO3  → 3Cu(NO3)2  +  4H2O  + xNO   In the equation above, the values of p and x respectively are','1 and 3','2 and 3','6 and 2','8 and 2','','','d','','utme','2003',1156,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(80,'Neutral atoms of neon with atomic number 10 have the same number of electrons as','O2+','Ca2+','K+','Mg2+','','','d','','utme','2003',1122,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:54'),(81,'The noble gases owe their inactivity to','Octet configuration','Cyclic shape','Hexagonal shape','Obtuse configuration','','','a','','utme','2003',1166,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(82,'According to the kinetic theory, an increase in temperature causes the kinetic energy of particles to','Decrease','Increase','Remain constant','Be zero','','','b','','utme','2003',1132,'Admin','0000-00-00 00:00:00','2020-07-25 04:57:26'),(83,' I.  H = 1s1\\nII. O = 1s22s22p4\\nIII. N = 1s22s22p3\\nIV. Zn = 1s22s22p63s23p64s23d10\\nFrom the above, which of the following pairs is likely to be paramagnetic?\\n','I and II','I and  III','I    and IV','III  and IV','','','a','','utme','2003',1144,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:19'),(84,'A gas exerts pressure on its container because','Some of its molecules are moving faster than others','Of the collision of the molecules with each other','Of the mass of the molecules of gas','The molecules of a gas collide with the walls of the container','','','d','','utme','2003',1137,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(85,'When cathode rays are detected onto the electrode of an electrometer, the instrument becomes','Negatively charged','Positively charged','Neutral','Bipolar','','','a','','utme','2003',1169,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:48'),(86,'The weakest attractive force that can be observed between two molecules is','Ionic','Covalent','Coordinate covalent','Van der Waals','','','d','','utme','2003',1163,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:17'),(87,'A consequence of global warming is','Air pollution','Water pollution','Increased humidity','Flooding','','','d','','utme','2003',1159,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(88,'Which of the following ions is acidic','K+','NO-3','S2-','H3O+','','','d','','utme','2003',1189,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:18'),(89,'The structural component that makes detergent dissolve more quickly in water than soap is','–SO3 –Na+','–COO-Na+','–SO4- Na+','–COO-K+','','','a','','utme','2003',1164,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:20'),(90,'A liquid that will dissolve fast is','Hydrochloric acid','Calcium hydroxide','Kerosene','Water','','','c','','utme','2003',1129,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:10'),(91,'What mass of K2CrO4 is required to prepare 250cm3 of 0.020 mol dm-3 solution   [K2CrO4 = 194.2g mol-1]','0.97g','9.70g','19.42g','97.10g','','','a','','utme','2003',1195,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(92,'Farmlands affected by crude –oil spillage can be decontaminated by','Adding acidic solutions','Using aerobic bacteria','Pouring water on the affected area','Burning off the oil from the area','','','b','','utme','2003',1179,'Admin','0000-00-00 00:00:00','2020-07-26 14:06:58'),(93,'When 10g of sodium hydroxide is dissolved in 1000cm3 of water, the solution formed is approximately   [Na = 23, H = 1, O = 16]','0.01 mol dm-3','0.10 mol dm-3','0.25 mol dm-3','0.50 mol dm-3','','','c','','utme','2003',1168,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(94,'A charge in the temperature of a saturated solution disturbs the equilibrium between the','Dissolved solute and the solvent','Solvent and the undissolved solute','Dissolved solute and the undissolved solute','Dissolved solute and the solution','','','c','','utme','2003',1165,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(95,'If an equilibrium reaction has   H>0, the reaction will proceed favourably in the forward direction at','High temperature','Any temperature','Low temperature','Minimum temperature','','','a','','utme','2003',1121,'Admin','0000-00-00 00:00:00','2020-07-27 01:18:49'),(96,'The commonest feature of the reactions at the anode is that','Electrons are consumed','Oxidation is involved','Ions are reduced','Electrode dissolves','','','b','','utme','2003',1123,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(97,'Which of the following will change when a catalyst is added to a chemical reaction','The activation energy','The potential energy of the reactants','The heat of reaction','The potential energy of the products','','','a','','utme','2003',1105,'Admin','0000-00-00 00:00:00','2020-07-26 13:31:03'),(98,'If Y is an oxidizing agent that reacts with a reducing agent, Z, which of the following is correct','Y increases in oxidation number','Y becomes reduced','Z loses protons','Z gains protons','','','b','','utme','2003',1184,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:18'),(99,'When at equilibrium, which of the reactions below will shift to the right if the pressure is increased and the temperature is kept constant',' 2SO3(g)  ⇌  2SO2(g)  +  O2(g)',' 2CO2(g)  ⇌ 2CO(g)  +  O2(g)',' 2H2(g)  +  O2(g) ⇌  2H2O(g)',' 2NO(g)   ⇌ N2(g)  +  O2(g)','','','c','','utme','2003',1121,'Admin','0000-00-00 00:00:00','2020-07-25 04:57:26'),(100,'In the electrolysis of a concentrated solution of sodium chloride using inert electrodes, which of the following ions are discharged at the cathode and anode respectively','Na+ and Cl-','Na+ and OH-','H+ and OH-','H+ and Cl-','','','d','','utme','2003',1166,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:50'),(101,' CO(g) + H2O(g) ⇌  CO2(g)  +  H2(g)\\nFrom the reaction above, calculate the standard heat change if the standard enthalpies of formation of CO2 (g), H2O (g) and CO (g) in kJ mol-1 are -394, -242 and -110 respectively.\\n','-262 kJ  mol-1','-42kJ mol-1','+42 kJ mol-1','+262 kJ mol-1','','','b','','utme','2003',1124,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:18'),(102,'When sugar is dissolved in tea, the reaction is always accompanied by','Positive entropy change','Negative entropy change','No entropy change','A minimum entropy change','','','a','','utme','2003',1102,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:49'),(103,'Which of the following is an electrolyte','Alcohol','Sodium acetate solution','Solid potassium hydroxide','Mercury','','','b','','utme','2003',1192,'Admin','0000-00-00 00:00:00','2020-07-26 13:46:41'),(104,'Chlorine gas is prepared in the laboratory by','Adding concentrated hydrochloric acid to solid manganese (IV) oxide','Adding concentrated tetraoxosulphate (VI) acid to solid sodium chloride','Dropping concentrated hydrochloric acid onto potassium tetraoxomanganate (VII) crystals','Oxidizing concentrated hydrochloric acid using potassium heptaoxodichromate (VI) crystals','','','a','','utme','2003',1162,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(105,'Metals of the first transition series have special proper ties which are different from those of groups I and II elements because they have partially filled','s  orbitals','p orbitals','d orbitals','f orbitals','','','c','','utme','2003',1177,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:21'),(106,'Hydrogen can be displaced form a hot alkaline solution by','Fe','Cu','Ca','Sn','','','d','','utme','2003',1121,'Admin','0000-00-00 00:00:00','2020-07-27 01:18:49'),(107,'Which of the following statements is true of sulphur (IV) oxide','It forms Tetraoxosulphate (VI) acid with water','It is an odourless gas','It is an acid anhydride','It forms white precipitate with acidified barium chloride','','','c','','utme','2003',1202,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(108,'The salt that will form a precipitate soluble in excess ammonia solution is','Ca(NO3)2','Cu(NO3)2','Mg(NO3)2','Al(NO3)3','','','b','','utme','2003',1092,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:48'),(109,'The metal that liberates hydrogen from cold water in bubbles only is','Na','K','Ca','Al','','','c','','utme','2003',1122,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(110,'Chlorine gas turns a damp starch-iodide paper','Pink','Colourless','Red','Dark blue','','','d','','utme','2003',1145,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:19'),(111,'The modern process of manufacturing steel from iron is by','Treatment with acids','Oxidation','Blast reduction','Treatment with alkalis','','','c','','utme','2003',1101,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:19'),(112,'Ethene reacts with hydrogen bromide to give','CH2Br2','CH3CH2Br','C2H2Br2','CHBr3','','','b','','utme','2003',1091,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(113,'Carbohydrates are compounds containing carbon, hydrogen and oxygen in the ratio','3:01:01','2:01:01','1:02:01','1:01:01','','','c','','utme','2003',1115,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(114,'How many isomers does pentane have','6','5','4','3','','','d','','utme','2003',1172,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:21'),(115,'The leachate of a certain plant ash is used in local soap making because it contains','Sodium chloride and potassium hydroxide','Sodium hydroxide','Potassium hydroxide','Soluble carbonates and hydrogen carbonates','','','c','','utme','2003',1174,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(116,'The formula for ethyl butanoate is','C3H7COOC2H5','C2H5COOC3H7','C4H9COOC2H5','C2H5COOC4H9','','','a','','utme','2003',1145,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:33'),(117,'The type of reaction that is peculiar to benzene is','Addition','Hydrolysis','Polymerization','Substitution','','','d','','utme','2003',1122,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(118,'Ethanol reacts with excess acidified K2Cr2O7 to produce','Ethanoic acid','Ethanol','Ethyl ethanoate','Ethanoic acid','','','d','','utme','2003',1114,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(119,'A compound contains 40.0% carbon, 6.7% hydrogen and 53.3% oxygen. If the molar mass of the compound is 180, find the molecular formula  [H = 1, C = 12, O = 16]','CH2O','C3H6O3','C6H12O6','C6H6O3','','','c','','utme','2003',1142,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:20'),(120,'The process by which atoms are rearranged into different molecular structures in the petroleum refining process is referred to as','Catalytic cracking','Hydrocracking','Polymerization','Reforming','','','d','','utme','2003',1160,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:50'),(121,'Which of the following is found in cotton','Starch','Cellulose','fat','oil','','','b','','utme','2003',1125,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(122,'the principal constituent of natural gas is methane','ethane','propane','butane','butane','','','a','','utme','2003',1101,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(123,'When a solid substance disappears completely as a gas on heating, the substance is said to have under gone','Evaporation','Distillation','Crystallization','Sublimation','','','d','','utme','2004',1224,'Admin','0000-00-00 00:00:00','2020-07-27 15:18:15'),(124,'A chemical reaction is always associated with','An increase in the composition of one of the substances','A change in the volume of the reactants','A change in the nature of the reactants','The formation of new substances','','','d','','utme','2004',1124,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:19'),(125,'If a solution contains 4.8g of Tetraoxosulphate (VI) acid. Calculate the amount of copper(II) oxide that will react with it  [CU = 64, O = 16, S = 32, H = 1]','0.8g','4.0g','40.0g','80.0g','','','b','','utme','2004',1129,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(126,'What volume of gas is evolved at s.t.p. if 2g of calcium trioxocarbonate(IV) is added to a solution of hydrochloric acid    [Ca = 40, C = 12, O = 16, CI = 35.5, H = 1, Molar volume of a gas at s.t.p = 22.4dm3]','112cm3','224cm3','448cm3','224cm3','','','c','','utme','2004',1139,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:21'),(127,'According to Charles  law, the volume of a gas becomes zero at','00C','-1000C','-2730C','-3730C','','','c','','utme','2004',1105,'Admin','0000-00-00 00:00:00','2020-07-26 16:33:46'),(128,'It is difficult to achieve an orderly arrangement of the molecules of a gas because they','Have no definite shape','Have little force attraction between them','Can collide with one another in the container','Are too small in size','','','b','','utme','2004',1157,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:10'),(129,'A given volume of methane diffuses in 20s. how long will it take the same volume of sulphur(IV) oxide to diffuse under the same conditions    [C = 12, H = 1, S = 32, O = 16]','5s','20s','40s','60s','','','c','','utme','2004',1149,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:16'),(130,'An electron can be added to a halogen atom to form a halide ion with','2 valence electrons','3 valence electrons','7 valence electrons','Valence electrons','','','d','','utme','2004',1128,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(131,'The shape of the s-orbital is','Spherical','Elliptical','Spiral','Circular','','','a','','utme','2004',1204,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(132,'The property of chlorine which causes hydrogen chloride to be more ionic than the chlorine molecule is its','Electrovalency','Electron affinity','Electropositivity','Electronegativity','','','d','','utme','2004',1112,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:30'),(133,'Chlorine consisting of two isotopes of mass numbers 35 and 37 in the ratio 3:1 has an atomic mass of 35.5. Calculate the relative abundance of the isotope of mass number 37.','20','25','60','75','','','b','','utme','2004',1126,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(134,'Which of the following mixtures of gases is likely to burn in flame','Neon and hydrogen','Nitrogen and helium','Helium and neon','Neon and nitrogen','','','a','','utme','2004',1121,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(135,'Hardness of water is caused by the presence of the ions of','Magnesium and silver','Calcium and magnesium','Sodium and potassium','Calcium and sodium','','','b','','utme','2004',1197,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(136,'Pollution of underground water by metal ions is very likely in a soil that has high','Acidity','Alkalinity','Chloride content','Nitrate content','','','a','','utme','2004',1141,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(137,'A carcinogenic substance is','Asbestos dust','Sawdust','Nitrogen(II) oxide','Carbon (II) oxide','','','a','','utme','2004',1073,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:22'),(138,'The solubility in mol dm-3 of 20g of CuSO4 dissolved in 100g of water at 1800C is  [Cu = 64, S = 32, O = 16]','0.13','0.25','1.25','2','','','c','','utme','2004',1120,'Admin','0000-00-00 00:00:00','2020-07-26 13:46:41'),(139,'Calcium Tetraoxosulphate(VI) dissolves in water only sparingly to form a','Solution','Suspension','Precipitate','Colloid','','','d','','utme','2004',1119,'Admin','0000-00-00 00:00:00','2020-07-27 01:18:49'),(140,'Which of these compounds is a normal salt','NaHS','NaSO4','NaHCO3','Na2CO3','','','d','','utme','2004',1084,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(141,'What volume of 0.5mol dm-3 H2SO4 will exactly neutralize 20cm3 of 0.1 mol dm-3 NaOH solution','2.0cm3','5.0cm3','6.8cm3','8.3cm3','','','a','','utme','2004',1189,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(142,'The oxidation state of chlorine in HClO4 is','-5','-1','1','7','','','d','','utme','2004',1165,'Admin','0000-00-00 00:00:00','2020-07-25 04:57:26'),(143,'ZnO(s) + CO (g) → Zn(s) + CO2 (g). ','Decomposed','Displaced','Oxidized','Reduced','','','d','','utme','2004',1134,'Admin','0000-00-00 00:00:00','2020-07-25 04:57:26'),(144,'Which of the following acts as both a reducing and an oxidizing agent','H2','SO2','H2S','CO2','','','b','','utme','2004',1160,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(145,'In the electrolysis of brine, the anode is','Platinum','Copper','Zinc','Carbon','','','d','','utme','2004',1071,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:18'),(146,'The mass of silver deposited when a current of 10A is passed through a solution of silver salt for 4830s is    [Ag = 108, F = 96500 Cmol-1]','108.0g','54.0g','27.0g','13.5g','','','b','','utme','2004',1165,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:17'),(147,' 2CO(g)  +  O2(g) →  2CO2(g)\\nGiven that   Δ H [CO] is 110.4kJ mol-1 and Δ H [CO2] is -393.0kJ mol-1, the energy change for the reaction above is\\n','-503.7kJ','-282.6kJ','+282.6kJ','+503.7kJ','','','N','','utme','2004',1102,'Admin','0000-00-00 00:00:00','2020-07-22 20:29:23'),(148,'Which of the following hydrogen halides has the highest entropy value','HF','HCl','HBr','Hl','','','a','','utme','2004',1060,'Admin','0000-00-00 00:00:00','2020-07-22 22:20:02'),(149,' N2O4(g)    ⇌  2NO2(g)','A constant volume','An increase in pressure','A decrease in pressure',' A decrease in volume','','','c','','utme','2004',1120,'Admin','0000-00-00 00:00:00','2020-07-26 13:28:59'),(150,'Which of the following shows little or no net reaction when the volume of the system is decreased',' H2(g)  +  l2(g)  ⇌  2Hl(g)','2NO2(g)  ⇌  N2O4(g)',' PCl5(g)   ⇌ PCl3(g)  + Cl2(g)',' 203(g)   ⇌  3O2(g)','','','a','','utme','2004',1156,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(151,'The allotrope of carbon used in the decolourization of sugar is','Graphite','Soot','Charcoal','Lampblack','','','c','','utme','2004',1117,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:20'),(152,'Which of the following gases can be collected by the method of downward delivery','Chlorine','Oxygen','Ammonia','Hydrogen','','','a','','utme','2004',1151,'Admin','0000-00-00 00:00:00','2020-07-22 20:29:23'),(153,'Which steam is passed over red-hot carbon, the substances produced are','Hydrogen and trioxocarbonate(IV) acid','Hydrogen, oxygen and carbon(IV) oxide','Hydrogen and carbon (II) oxide','Hydrogen and carbon (IV) oxide','','','c','','utme','2004',1175,'Admin','0000-00-00 00:00:00','2020-07-19 20:47:32'),(154,' sulphur (IV) oxide bleaches by','Reduction','Oxidation','Hydration','Absorption','','','a','','utme','2004',1162,'Admin','0000-00-00 00:00:00','2020-07-22 22:19:54'),(155,'Carbon is tetravalent because','The electrons in both the 2s and 2p orbitals are equivalent','The electrons in all the orbitals of carbon are equivalent','The 2s and 2p atomic orbitals hybridize','All the atomic orbitals of carbon hybridize','','','c','','utme','2004',1132,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(156,'Aluminium hydroxide is used in the dyeing industry as a','Salt','Dye','Mordant','Dispersant','','','c','','utme','2004',1081,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:10'),(157,'Alloys are best prepared by','Electroplating','Arc-welding','Reducing a mixture of their metallic oxides','Cooling a molten mixture of the metals','','','d','','utme','2004',1172,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:30'),(158,'Transition metals posses variable oxidation states because they have','Electrons in the d orbitals','Electrons in the s orbitals','A variable number of electrons in the p orbitals','Partially filled p orbitals','','','d','','utme','2004',1167,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:07'),(159,'Sodium metal is always kept under oil because it','Readily reacts with water','Is reduced by atmospheric nitrogen','Reacts vigorously on exposure to air','Reacts with oxygen and carbon(IV) oxide','','','c','','utme','2004',1145,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(160,'Oxyacetylene flame is used for iron-welding because it',' makes the iron metal solidity very quickly','Combines with oxygen to give a pop sound','Evolves a lot of heat when burnt','Dissociates to produce carbon (IV) oxide and oxygen','','','c','','utme','2004',1098,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(161,'The alkyl group can be represented by the general formula','CnH2n+1','CnH2n','CnH2n+2','CnH2n-2','','','a','','utme','2004',1076,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(162,'An isomer of C5H12 is','Butane','2-methylbutane','2-methylprpane','2-ethylbutane','','','b','','utme','2004',1181,'Admin','0000-00-00 00:00:00','2020-07-27 01:18:49'),(163,'A characteristic of the alkane family is','Addition reaction','Elimination reaction','Substitution reaction','Neutralization reaction','','','c','','utme','2004',1089,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:19'),(164,'Which of these reagents can confirm the presence of a triple bond','Bromine water','Acidified KMnO4 ','Copper (I) chloride','Bromine gas','','','c','','utme','2004',1118,'Admin','0000-00-00 00:00:00','2020-07-22 20:28:57'),(165,'Vulcanization involves the removal of','A monomer','The single bond','The double bond','A polymer','','','c','','utme','2004',1108,'Admin','0000-00-00 00:00:00','2020-07-22 22:20:01'),(166,'The reaction above is','Carboxylation','Decarboxylation','Acidification','Esterification','','','b','','utme','2004',1121,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:20'),(167,' Alkanol + Alkanoic acid ⇌  Ester + water.\\nThe reverse reaction of the equation above is known as\\n','Hydrolysis','Saponification','Hydration','Fermentation','','','a','','utme','2004',1079,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(168,'In the production of soap, concentrated sodium chloride solution is added to','Increase the solubility of the soap','Decrease the solubility of the soap','Saponify the soap','Emulsify the soap','','','b','','utme','2004',1078,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:21'),(169,'The gas that can be dried using concentrated Tetraoxosulphate (VI) acid is','Ammonia','Hydrogen bromide','Sulphur (IV) oxide','Hydrogen sulphide','','','c','','utme','2005',1290,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:19'),(170,'The property used in the industrial preparation of nitrogen and oxygen from air is','Rate of diffusion','Solubility','Density','Boiling point','','','d','','utme','2005',1195,'Admin','0000-00-00 00:00:00','2020-07-20 11:02:30'),(171,'A dense white fume is formed when ammonia gas reacts with','H2(g)','O2(g)','HCI(g)','Cl2(g)','','','c','','utme','2005',1159,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(172,'In a flame test for calcium, the flame appears','Blue when viewed through a blue glass','Green when viewed through a blue glass','Orange-red when viewed through a blue glass','Brick-red when viewed through a blue glass','','','c','','utme','2005',1228,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(173,'Which of the following alloys contain iron','Steel and permalloy','Duralumlin and steel','nd Soft Solder a Duralumlin ','Brass and bronze','','','a','','utme','2005',1153,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(174,'To obtain pure carbon(II) oxide from its mixture with carbon (IV)oxide, the mixture should be','Bubbled through concentrated Tetraoxosulphate(VI) acid','Bubbled through sodium hydroxide','Passed over heated copper(II) oxide','Bubbled through water','','','b','','utme','2005',1285,'Admin','0000-00-00 00:00:00','2020-07-27 06:00:25'),(175,'N2(g)  +  3H2(g)  ⇌   2NH2(g)   Δ H = - 90kJ  In the equation above, the yield of ammonia can be decreased by','Adding a catalyst','Removing ammonia','Increasing the pressure','Increasing the temperature','','','d','','utme','2005',1166,'Admin','0000-00-00 00:00:00','2020-07-27 01:18:49'),(176,'Metalloids are also referred to as','Metals','Semi-metals','Colloids','Non-metals','','','b','','utme','2005',1136,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(177,'The ores that can be concentrated by flotation are','Nitride ores','Chloride ores','Oxide ores','Sulphide ores','','','d','','utme','2005',1151,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(178,'The most suitable metal that can be used as a lightening  conductor is','Aluminium','Iron','Copper','Silver','','','d','','utme','2005',1231,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(179,'NH4CI(g) ⇌   NH3(g)  +  HCI(g)   The reaction above can only attain equilibrium if','It is in a closed system','It is in an open system','One of the products is removed','A gaseous reactant is added','','','a','','utme','2005',1129,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(180,'When pure aluminum metal is heated to red hot in the presence of nitrogen gas, the compound formed is','AI2N','AIN','AI2N2','AI2N3','','','b','','utme','2005',1234,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:21'),(181,'The most abundant element on the earth’s crust is','Oxygen','Fluorine','hydrogen','nitrogen','','','a','','utme','2005',1223,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(182,'The pressure of 100cm3 of oxygen at 350C is 750mmHg. What will be the volume of the gas if the pressure is reduced to 100mmHg  without changing the temperature','850cm3','750cm3','650cm3','580cm3','','','b','','utme','2005',1221,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:22'),(183,'What is the valence shell electron configuration of the element with atomic number 17','1s22s22p63s23p5','1s22s22p63s23p4','3s23p5','2s22p6','','','a','','utme','2005',1178,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:34'),(184,'A heterogeneous mixture can be defined as any mixture','Whose composition is uniform','Whose composition is not uniform','Formed by solids and liquids','Of a solute and a solvent','','','b','','utme','2005',1134,'Admin','0000-00-00 00:00:00','2020-07-26 08:33:54'),(185,'The density of a certain gas is 1.98g dm-3 at s.t.p. What is the molecular mass of the gas   [Molar volume of a gas at s.t.p = 22.4dm-3]','26.0g','31.0g','54.0g','44.0g','','','d','','utme','2005',1170,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(186,'Treatment of cancer   II. Detection of leakages in water mains   III. Detection of the ages of ancient tools    Which combination of the above refers to the uses of radioactive isotopes?','I, II and III','I, II, III and IV','II and III','I and II','','','a','','utme','2005',1231,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:19'),(187,'An element will readily form an electrovalent compound if its electron configuration is','2,8,8','2,,8,4','2,8,5','2,8,1','','','d','','utme','2005',1196,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(188,'How many moles of limestone will be required to produce 5.6g of CaO','0.20 mol','1, 12mol','0.10 mol','0.56 mol','','','c','','utme','2005',1226,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(189,'The shape of the hydrocarbon compound CH4 is','Square planar','Tetrahedral','Planar','Linear','','','b','','utme','2005',1167,'Admin','0000-00-00 00:00:00','2020-07-24 16:00:37'),(190,'Which of these properties gives a solid its definite shape','Weak intermolecular attraction','High boiling point','High melting point','Strong intermolecular attraction','','','d','','utme','2005',1200,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(191,'The component of an atom that contributes least to its mass is the','Nucleus','Neutron','Electron','Proton','','','c','','utme','2005',1201,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(192,'Sugar is separated from its impurities by','Distillation','Evaporation','Precipitation','Crystallization','','','d','','utme','2005',1217,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(193,'Equal moles of ethyne and hydrogen iodide react to give','CH2 = CH2','CH2 = CHI','CH2 – CHI','CH2 – CI3','','','b','','utme','2005',1253,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(194,'How many hydrogen atoms does a single ring cycloalkane have less than the corresponding open- chain alkane','Three','One','Four','Two','','','d','','utme','2005',1234,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(195,'The decolourization of the purple colour of a tetraoxomanganate (VII) ion is a test for','Alkanals','Alkanes','Alkenes','Alkanols','','','c','','utme','2005',1191,'Admin','0000-00-00 00:00:00','2020-07-27 01:18:49'),(196,'In the purification of impure samples of ethyl ethanoate synthesized by esterification, concentrated sodium trioxocarbonate(IV) solution is used to remove','Water','Acidic impurities','Basic impurities','Ethoxyethane','','','b','','utme','2005',1233,'Admin','0000-00-00 00:00:00','2020-07-25 12:15:07'),(197,'A substance that is used as a ripening agent for fruits is','Propene','Methane','Ethene','Butane','','','c','','utme','2005',1133,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(198,'Which of the following are structural isomers','Propanoic acid and propan-1, 2-diol','Ethanoic acid and propanoic acid','Ethan-1, 2 –diol and ethanoic acid','Propanal and propanone','','','d','','utme','2005',1194,'Admin','0000-00-00 00:00:00','2020-07-27 08:55:00'),(199,'The enzyme responsible for converting sucrose into two simple isomeric sugars is','Invertase','Amylase','Lactose','Maltase','','','a','','utme','2005',1216,'Admin','0000-00-00 00:00:00','2020-07-25 11:01:52'),(200,'Natural water collected from rivers and ponds contains oxygen, carbon(IV) oxide and','Chlorine','Hydrogen','Sulphur(IV) oxide','Nitrogen','','','c','','utme','2005',1166,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(201,'Kerosene is commonly used to remove the red colour stain of palm oil from clothes because it','Helps to spread the oil over a larger surface area','Makes the oil evaporate easily by dissolving it','Helps to dilute the oil and reduce its colour','Reacts with the oil to form an odourless compound','','','b','','utme','2005',1195,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(202,'25cm3 of a mixture of noble gases was obtained from air after the removal of other constituents. What was the original volume of air','125cm3','1250cm3','2500cm3','80cm3','','','c','','utme','2005',1178,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:17'),(203,'The solubility curve shows the variation of solute concentration with','Volume','Vapour density','Pressure','Temperature','','','d','','utme','2005',1174,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(204,'The air around smelting industries is likely to contain','CO2, SO3 and H2','SO2N2 and CO2','H2, SO2 and CO2','H2S, CO and N2','','','b','','utme','2005',1246,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(205,'When water boilers are used for a long period of time, the solid substances left behind as scale are','Magnesium trioxosilicate (IV) and calcium Tetraoxosulphate(VI)','Magnesium trioxosilicate(IV) and rust','Clay and magnesium trioxosilicate (IV)','clay and rust','','','','','utme','2005',1176,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(206,'The gas that is the most dangerous pollutant to humans is','Carbon(IV) oxide','Nitrogen (II)oxide','Hydrogen sulphide','Sulphur(IV) oxide','','','c','','utme','2005',1273,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:21'),(207,'In which of the following reactions can the oxidation number of nitrogen be said to have increased','FeSO4(aq)  +  NO(g) →   Fe(NO)SO4(S)','2NO(g)  +  O2(g) → 2NO2(g)','NO(g)  +  CI2(g)  → NOCI2(l)','NO(g)  +  Br2(l)   → NOBr2(l)','','','b','','utme','2005',1213,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:20'),(208,'A concentrated solution containing H+, Cu2+, OH- and Cl- was electrolyzed using platinum electrodes. The ion that will be discharged at the cathode is','OH-','Cl-','Cu2+','H+','','','c','','utme','2005',1144,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(209,'Phenolphthalein in acidic solution is','Colourless','Yellow','Red','Orange','','','a','','utme','2005',1152,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:18'),(210,'When sulphur (IV) oxide is passed into a solution of sodium hydroxide for a long time. It eventually produces a solution of','Na2SO4','NaHSO4','Na2SO3','NaHSO3','','','d','','utme','2005',1162,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(211,'What is the correct IUPAC name for NO2','Dioxonitrate(III) ion','Dioxonitrate(IV) ION','trioxonitrate(iii) ion','trioxonitrate(iv) ion','','','a','','utme','2005',1186,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:10'),(212,'What will happen if an aluminum spoon is used to stir a solution of iron (II) trioxonitrate(V)','The spoon will be reduced while the iron(II) ions will be oxidized','The spoon will be oxidized while the iron (II) ions will be reduced to the metal','The spoon will be reduced','The spoon will increase in size','','','b','','utme','2005',1274,'Admin','0000-00-00 00:00:00','2020-07-22 22:24:21'),(213,'Which of the following equimolar solutions will have the highest pH','NH4OH','CH3COONa','HCI','NaOH','','','c','','utme','2005',1163,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(214,'2H2 + O2  → 2H2O  ΔH = -571Kj  In equation above, how much heat will be liberated if 12.0g of hydrogen is burnt in excess oxygen?','-1713kJ','+1142kJ','-571kJ','-1142kJ','','','a','','utme','2005',1213,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:33'),(215,'Which of the following ions requires the largest quantity of electricity for discharge at an electrode','2.5 moles of Cu2+','4.0 moles of CI-','2.0 moles of Al3+','3.0 moles of Na+','','','c','','utme','2005',1205,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(216,'H2(g)  +  Br2(g) →  2BHr(g)  The reaction above is carried out at 250C. If Δ H is kJ mol-1 and   Δ S is -106J mol-1K-1 the reaction will','Proceed spontaneously at lower temperatures','Not proceed spontaneously at the given temperature','Proceed spontaneously at the given temperature','[proceed in the reverse direction at the given temperature','','','d','','utme','2006',1137,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(217,'Na2CO3(aq)  +  2HCI(aq)  → 2NaCI(aq)  +  H2O(l)  +  CO2(g)    How many moles of sodium trioxocarbonate (IV) are there in a 25cm3 solution which required 10cm3 of 0.05 mol dm-3 hydrochloric acid solution to neutralize it?','0.100mloe','0.001mole','1.000mole','0.010mole','','','d','','utme','2006',1123,'Admin','0000-00-00 00:00:00','2020-07-21 18:49:35'),(218,'The ion that can be used as an oxidizing agent is','Fe3+','F-','Ca2+','Au3+','','','c','','utme','2006',1118,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:40'),(219,'Zinc and carbon rods are used as anode and cathode respectively in a','Voltaic cell','Lead accumulator','Leclanche cell','Daniel cell','','','c','','utme','2006',1138,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:32'),(220,'Trioxonitrate(V) acid is not used for preparing hydrogen gas from metals because it','Renders the metal passive','Is strongly oxidizing','Is volatile','','','','a','','utme','2006',1166,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(221,'Forms a layer of oxide on the metal   If the heat of combustion of hydrogen is -285.8kJ. what is the heat of formation of water','-285.8Kj','-571.6kJ','+571kJ','+285.8kJ','','','a','','utme','2006',1175,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(222,'In the electrolysis of CuSO4(aq) using platinum electrodes, the reaction at the anode is','4H+  +  4e-  → 2H2','2OH  +  2OH-  →  2H2O + O2','2OH-  - 2e-    → 2OH','4OH-  -  4e- →  2H2O + O2','','','d','','utme','2006',1155,'Admin','0000-00-00 00:00:00','2020-07-18 20:27:01'),(223,'IN which of the following is the oxidation number of sulphur equal to -2','H2S','SO3','S8','SO2','','','a','','utme','2006',1153,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(224,'5SO2(g)  +  2KMnO4(aq)  +  2H2O(l)  ⇌   K2SO4(aq)  +  2MnSO4(aq)  +   2H2HSO4(aq)   In the reaction above, the products give a','Colourless solution','Purple precipitate','Purple solution','Colourless precipitate','','','a','','utme','2006',1164,'Admin','0000-00-00 00:00:00','2020-07-23 15:52:21'),(225,'The solution that will conduct the highest amount of electricity is','2.0 moldm-3 of ethanoic acid','0.5 mol dm-3 of ethanoic acid','2.0 mol dm-3 of hydrochloric acid','0.5 moldm-3 of hydrochloric acid','','','c','','utme','2006',1128,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:07'),(226,'What is the mola. Mass of a substance, if 0.4 mole of the substance has a mass of 25.0g','6.3g','40.0g','62.5g','2.5g','','','c','','utme','2006',1216,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(227,'The order in which a mixture of sand ammonium chloride and sodium chloride can be separated is','Sublimation   dissolution  filtration  evaporation','Dissolution  dryness  filtration  evaporation','Filtration  sublimation  evaporation  dryness','Dissolution  filtration  sublimation  evaporation','','','a','','utme','2006',1109,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(228,'The volume of 2.5 moles of oxygen at s.t.p is','56.0dm3','84.0dm3','50.0dm3','20.0dm3','','','a','','utme','2006',1133,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(229,'[Molar volume of a gas at s.t.p + 22.4dm3} Nuclear fission involves the splitting of a heavy element into two nuclei of','Equal masses with a release of energy','Nearly equal masses with a release of energy and radiation','Equal masses with a release of energy and radiation','Unequal masses without any release of energy','','','b','','utme','2006',1174,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:43'),(230,'2C2H2(g)  +  5O2(g)     4CO2(g)  +  2H2O(g) In the reaction, the mass of carbon (IV) oxide produced on burning 78g of ethyne is [C = 12, O = 16, H = 1]','39','352g','264g','156g','','','c','','utme','2006',1091,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(231,'A particle that contain s 11protons, 12 neutrons and 10 electrons is probably a','Metallic ion','Non-metallic ion','Neutral metal','Neutral non-metal','','','a','','utme','2006',1187,'Admin','0000-00-00 00:00:00','2020-07-26 13:31:03'),(232,'The element with the electron configuration 1s22s22p3 is','Oxygen','Chlorine','Nitrogen','Calcium','','','c','','utme','2006',1195,'Admin','0000-00-00 00:00:00','2020-07-26 13:30:07'),(233,'A difference between chemical and physical change is that in a chemical change','Heat is supplied',' A new substance is formed','Oxygen is consumed','A reversible process occurs','','','b','','utme','2006',1217,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(234,'A degree in atomic size and an increase in knuckler charge across a period lead to','A decrease in covalency in bond formation','An increase in chemical reactivity','An increase in the tendency to loss electrons','A decrease in electro positivity','','','d','','utme','2006',1125,'Admin','0000-00-00 00:00:00','2020-07-22 23:34:07'),(235,'The idea of planetary electrons was that of','Bohr','Thompson','Rutherford','Dalton','','','a','','utme','2006',1163,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(236,'If 30cm3 of a gas at 500C is warmed to 800C at a fixed pressure. The fractional increase in volume is','0.91','0.009','1.09','0.093','','','d','','utme','2006',1196,'Admin','0000-00-00 00:00:00','2020-07-22 22:22:35'),(237,'Which of the following has an isomer','C4H10','C6H6','C2H4','C2H6','','','a','','utme','2006',1188,'Admin','0000-00-00 00:00:00','2020-07-26 13:53:25'),(238,'An example of aliphatic unsaturated hydrocarbon is','Butanol','Propene','Pentane','Benzene','','','b','','utme','2006',1138,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(239,'One mole of a hydrocarbon contains 36g of carbon and its vapour density is 20. The structure of the hydrocarbon is','CH3CH2CH3','CH3CH = CH2','CH3CH2C = CH','CH3C = CH','','','d','','utme','2006',1151,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(240,'CH3-CH2-C = CH  The hybridization in the compound above is','Sp3 and sp','Sp3 and sp2','Sp','Sp2','','','a','','utme','2006',1184,'Admin','0000-00-00 00:00:00','2020-07-22 20:27:31'),(241,'Nigerian crude oil is described as light crude because of its','Low aliphatic hydrocarbon content','Low sulphur content','High natural gas content','High octane number','','','c','','utme','2006',1184,'Admin','0000-00-00 00:00:00','2020-07-23 10:49:20'),(242,'The gas obtained as a product of anaerobic action ob organic matter buried in the earth is','Nitrogen(IV) oxide','Carbon(IV) oxide','Methane','Ethene','','','c','','utme','2006',1164,'Admin','0000-00-00 00:00:00','2020-07-22 22:19:54'),(243,'When a crystal was added to the clear solution of its salt, the crystal did not dissolve and the solution remained unchanged. This showed that the solution was','Supersaturated','Unsaturated','Saturated','Concentrated','','','c','','utme','2006',1175,'Admin','0000-00-00 00:00:00','2020-07-24 08:27:23'),(244,'The produce of the combustion of candle wax are','Carbon(IV) oxide and water','Oxygen and water','Hydrogen and water','Carbon(II)oxide an d water','','','a','','utme','2006',1149,'Admin','0000-00-00 00:00:00','2020-07-22 22:19:54'),(245,'When 5.0cm3 of a saturated solution of sugar of molar mass 342g at 400C was evaporated to dryness, 34.2g of dry solid was obtained. The solubility of sugar at 400C is','7.0 mol dm-3','3.5 mol dm-3','2.0 mol dm-3','10.0mol dm-3','','','c','','utme','2006',1191,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:30'),(246,'Which of the following results in the fall of acid rain','Gaseous hydrocarbons','Oxide of lead','Particulate matter','Oxides of sulphur','','','d','','utme','2006',1118,'Admin','0000-00-00 00:00:00','2020-07-26 13:31:03'),(247,'Water has the ability to dissolve almost all substances because its molecule has a structure with','One positive end and one neutral end','Two positive ends','One positive end and one negative end','Two negative ends','','','c','','utme','2006',1168,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(248,'An emulsion may be produced by shaking a detergent solution with','Palm wine','Palm oil','Ethanoic acid','Water','','','d','','utme','2006',1120,'Admin','0000-00-00 00:00:00','2020-07-26 13:25:39'),(249,'One heating may be produced by shaking a detergent solution with','Cu(NO3)2','AgNO3','Ca(NO3)2','NaNO3','','','b','','utme','2006',1117,'Admin','0000-00-00 00:00:00','2020-07-25 04:57:26'),(250,'Dynamic equilibrium describes a situation where','A reaction gives back the reactants','Reactants are converted to products','The concentration of reactants and products is equal','Both forward and reverse reaction proceed at the same rate','','','d','','utme','2006',1192,'Admin','0000-00-00 00:00:00','2020-07-22 22:21:16'),(251,'The raw material used for the smelting of iron ore in a furnace is','Zn(NO3)2','CaSO4','CuSO4','CaCO3','','','d','','utme','2006',1161,'Admin','0000-00-00 00:00:00','2020-07-22 22:20:02'),(252,'Carbon exists naturally in the combined state as','Diamond','Coal','Wood','Graphite','','','c','','utme','2006',1134,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(253,'The sulphide which is insoluble in dilute hydrochloric acid is','CuS','Na2S','FeS','ZnS','','','a','','utme','2006',1141,'Admin','0000-00-00 00:00:00','2020-07-25 04:57:26'),(254,'The efficiency of a solid catalyst to increase reaction rates depends on its','Concentration','Solubility','Quantity','Surface area','','','d','','utme','2006',1185,'Admin','0000-00-00 00:00:00','2020-07-26 13:46:41'),(255,'In the industrial production of H2 from natural gas, the CO2 produced along with the H2 is removed by','Passing the mixture into lime water','Washing under pressure','Drying over phosphorous(V)oxide','Using ammoniac copper(l) chloride','','','b','','utme','2006',1130,'Admin','0000-00-00 00:00:00','2020-07-22 20:35:47'),(256,'Which of the following typically represents a photochemical reaction','Conversion of dinitrogen (IV) oxide to nitrogen(IV) oxide','Conversion of silver halides to grey metallic silver','Decomposition of calcium hydroxide to its oxide','Formation of water from hydrogen and oxygen molecules','','','b','','utme','2006',1181,'Admin','0000-00-00 00:00:00','2020-07-26 13:28:59'),(257,'Group IA metals are not found free in nature because they','Have high melting and boiling points','Conduct heat and electricity','Are very reactive and unstable','Are malleable and ductile','','','c','','utme','2006',1134,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(258,'The characteristic colour of the flame shown when a copper salt moistened with concentrated hydrochloric acid on platinum is put on a bunzen burner is','Green','Lilac','Yellow','Brick-red','','','a','','utme','2006',1130,'Admin','0000-00-00 00:00:00','2020-07-22 22:20:00'),(259,'The ion that will give a white precipitate with aqueous NaOH and soluble in excess of the base is','Zn2+','Mg2+','Ca2+','Cu2+','','','a','','utme','2006',1145,'Admin','0000-00-00 00:00:00','2020-07-26 13:29:17'),(260,'Which of he following pairs of substances will react further with oxygen to form a higher oxide','SO2 and NO','CO2 and H2O','CO and CO2','NO and H2O','','','a','','utme','2006',1094,'Admin','0000-00-00 00:00:00','2020-07-26 20:29:56'),(261,'Which of the following is an example of a mixture','Blood','Sand','Washing soda','Common salt','','','a','','utme','2010',1317,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(262,'Calculate the percentage by mass of nitrogen in calcium trioxonitrate (V)   {Ca = 40, N = 14, O = 16}','13.10%','17.10%','27.60%','8.5','','','d','','utme','2010',1235,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(263,'The droplets of water observed around a bottle of milk taken out of though refrigerator is due to the fact that the','Temperature of the milk drops as it loses heat into the surroundings','Saturated vapour pressure of the milk is equal to the atmospheric pressure','Water vapour in the air around loses some of its energy to the bottle','Water vapour in the air around the bottle gains some energy from the bottle','','','c','','utme','2010',1273,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(264,'The volume of a gas is Vcm3 at P mm Hg. What is the new volume of the gas if the pressure is reduced to half at constant temperature','2 V cm3','V  2cm3','V cm3','4 V cm3','','','a','','utme','2010',1264,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(265,'Moving from left to right across a period, the general rise in the first ionization energy can be attributed to the','Increase in nuclear charge','Decrease in screening effect','Increase in screening effect','Decrease in nuclear charge','','','a','','utme','2010',1286,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(266,'How many unpaired electron(s) are there in the nitrogen  sub - levels','2','1','0','3','','','d','','utme','2010',1217,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(267,'The stability of the noble gases is due to the fact that they','Have duplet or octet electron configurations','Belong to group zero of the periodic table','Are volatile in nature','Have no electron in their outermost shells','','','a','','utme','2010',1286,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(268,'The maximum number of electrons in the L shell of an atom is','8','18','32','2','','','a','','utme','2010',1264,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(269,'Elements in the same periodic table have the same','Atomic number','Chemical properties','Physical properties','Number of shells','','','d','','utme','2010',1321,'Admin','0000-00-00 00:00:00','2020-07-27 01:47:54'),(270,'A noble gas with a high power of fog penetration used in aerodrome beacons is','Argon','Helium','Neon','Krypton','','','c','','utme','2010',1255,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(271,'Permanent hardness of water can be removed by','Adding slaked lime','Adding caustic soda','Boiling','Filtration','','','b','','utme','2010',1289,'Admin','0000-00-00 00:00:00','2020-07-26 13:54:40'),(272,'Substances employed as drying agents are usually','Hygroscopic','Efflorescent','Acidic','Amphoteric','','','a','','utme','2010',1236,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(273,'Calculate the solubility in mol dm -3 of 40g of Cu So4 dissolved in 100g of water at 1200C  {Cu = 64, S = 32, 0 = 16}','2.5','0.4','0.25','4','','','a','','utme','2010',1249,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(274,'Coffee stains can best be removed by','Turpentine','A solution of borax in water','Ammonia solution','Kerosene','','','b','','utme','2010',1219,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(275,'Carbon (II) oxide is considered dangerous if inhaled mainly because it','Competes with oxygen in the blood','Competes with carbon (IV) oxide in the blood','Can cause lung cancer','Can cause injury to the nervous system','','','a','','utme','2010',1283,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(276,'The acid that is used to remove rust is','Hydrochloric','Trioxonitrate (V)','Tetraoxosulphate (VI)','Boric','','','b','','utme','2010',1286,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(277,'Calculate the volume of 0.5 mol dm-3 H2SO4 that is neutralized by 25cm3 of 0.1 mol dm-3 NaOH','2.5cm3','0.4cm3','0.1cm3','5.0cm3','','','a','','utme','2010',1260,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(278,'The colour of methyl orange in alkaline medium is','Pink','Orange','Red','Yellow','','','d','','utme','2010',1230,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(279,'Which of the following salts is slightly soluble in water','CaSO4','Na2CO3','PbCl2','AgCl','','','a','','utme','2010',1309,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(280,'6AgNO3(aq)  +  PH3(g) +    3H2O(l)      →    6Ag(s)+   H3PO3(aq)   +    6HNO3(aq)  In the reaction above, the reducing agent is','H2O(l)','PH3(g)','AgNO3(aq)','HNO3(AQ)','','','b','','utme','2010',1273,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(281,'The IUPAC nomencalatyre of the compound LiAIH4 is','Aluminium tetrahydrido lithium','Tetrahydrido lithium aluminate (III)','Lithium aluminium hydride','Lithium tetrahydridoaluminate (III)','','','d','','utme','2010',1282,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(282,'Iron can be protected from corrosion by coating the surface with','Silver','Copper','Zinc','Gold','','','c','','utme','2010',1230,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(283,'What quantity of aluminum is deposited when a current of 10A is passed through a solution of an aluminum salt for 1930s  {AI = 27, F = 96500 C mol-}','1.8g','5.4g','14.2g','0.2g','','','a','','utme','2010',1341,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(284,'In which of the following is the entropy change positive','Reaction between an acid and a base','Addition of concentrated acid to water','Dissolution of sodium metal in water','Thermal dissociation of ammonium chloride','','','c','','utme','2010',1293,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(285,'If a reaction is exothermic and thee is a great disorder, it means that','The reaction is in a state of equilibrium','There will be a large increase in free energy','There will be a large decrease in free energy','The reaction is static','','','b','','utme','2010',1201,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(286,'In the preparation of oxygen by heating KCIO3 in the presence of MnC2, only moderate hear is needed because the catalyst acts by','Increasing the surface area of the reactant','Increasing the rate of the reaction','Lowering the energy barrier of the reaction','Lowering the pressure of the reaction','','','c','','utme','2010',1278,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(287,'2H2(g) +    O2(g)  ⇌ 2H2O(g)    ΔH   =  - ve  What happens to the equilibrium constant of the reaction above if the temperature is increased?','It becomes zero','It decreases','It increases','It is unaffected','','','b','','utme','2010',1336,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(288,'To a solution of an unknown compound, a little dilute Tetraoxosulphate (IV) acid was added with some freshly prepared (II) Tetraoxosulphate (VI) Solution. The brown ring observed after the addition of a stream of concentrated  Tetraoxosulphate (VI) acid confirmed the presence of','CI','SO','NO','CO','','','c','','utme','2010',1247,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(289,'Which of the following is used as a rocket fuel','CH3COOH','H2SO4','HCL','HNO3','','','d','','utme','2010',1273,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(290,'A constituent common to moist air, it gradually rusts. This is due to the formation of','Silver','Copper','Tin','Lead','','','c','','utme','2010',1272,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(291,'When iron is exposed to moist air, it gradually rusts. This is due to the formation of','Anahydrous  iron (III) oxide','Anhydrous iron (II) oxide','Hydrated iron (II) oxide','Hydrated iron  (III) oxide','','','d','','utme','2010',1273,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(292,'A compound gives an orange red colour to a non luminous flame. This compound is likely to contain','Ca2+','Fe3+','Fe2+','Na+','','','a','','utme','2010',1250,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(293,'Stainless steel is used for making','Tools','Coins and medals','Moving parts of clocks','Magnets','','','a','','utme','2010',1258,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(294,'The residual solids from the fractional distillation of petroleum are used as','Raw materials for the cracking process','Fuel for driving tractors','Fuel for jet engines','Coatings for pipes','','','d','','utme','2010',1279,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(295,'Which of the following is used as fuel in miners’ lamp','Ethyne','Ethane','Ethane','Ethanol','','','a','','utme','2010',1249,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(296,'Which of the following organic compounds is very soluble in water','C2H2','C2H4','CH3COOC2H5','CH3COOH','','','d','','utme','2010',1313,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(297,'Benzene reacts with hydrogen in the presence of nickel catalyst at 1800C to give','Toluene','Cyclopentane','Cyclohexane','Xylene','','','c','','utme','2010',1292,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(298,'Which of the following is used to hasten the ripening of fruit','Ethanol','Ethyne','Ethane','Ethane','','','d','','utme','2010',1295,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(299,'The final products of the reaction between methane and chloride in the presence of ultraviolet light are hydrogen chloride and','Dichloromethane','Tetrachloromethane','Chloromethane','Trichloromethane','','','b','','utme','2010',1277,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(300,'The correct order of increasing boiling points of the following  compounds C3H7OH, C7H16 and C4H10 is','C4H10  →  C7H16 → C3H7OH','C7H16 → C3H7OH → C4H16','C4H10  → C3H7OH  → C4H10','C3H7OH →  C4H10  → C7H16','','','a','','utme','2010',1326,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(301,'One of the major uses of Alkanes is','In the hydrogenation of oils','In the textile industries','In the production of plastics','As domestic and industrial fuels','','','d','','utme','2010',1226,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(302,'The haloalkanes used in the dry cleaning industries are','Chloroethane and dichloroethene','trichloroethene and tetrachloroethene','chloromethane and dichloroethene','Trichloromethane and tetrachloromethane','','','d','','utme','2010',1299,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29'),(303,' Two hydrocarbons X and Y were treated with bromine water. Decolorized the solution and Y did not. Which class of compound does Y belong','Alkynes','Alkenes','Alkanes','Benzene','','','c','','utme','2010',1218,'Admin','0000-00-00 00:00:00','2020-07-26 21:18:09'),(304,'The compound that is used as an anaesthetic is','CHCI3','CH2C2','CH3CI','CCI4','','','a','','utme','2010',1237,'Admin','0000-00-00 00:00:00','2020-07-27 09:41:29');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `civiledu` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=437 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `civiledu` VALUES (1,'Who among the following could be described as the founding father of Nigerian nationalism?','Nnamdi Azikiwe','Herbert Macauley','Ahmadu Bello','Obafemi Awolowo','','','b','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-27 15:24:24'),(2,'Rule of Law means','supremacy of the law','absence of legal immunity','peace, order and stability','obedience to any authority','','','a','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:38'),(3,'A major characteristic of civil society is','the desire to win election','corporate responsibility','social responsibility','political gerrymandering.','','','b','','wassce','2014',89,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:39'),(4,'Citizenship status is acquired through','birth, indigenization, colonization and referendum','association, convention, naturalization and incorporation','birth, naturalization, honorary and registration','registration, inter-relationship, integration and declaration.','','','c','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:39'),(5,'Human Rights are basic natural rights which people enjoy primarily because they are','members of a political party','international citizens','members of a community','human beings.','','','d','','wassce','2014',78,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:40'),(6,'Interpersonal relationship exists when','citizens pay their taxes regularly to inland revenue service','citizens are politically conscious and participate in voting','there is interaction between persons in a social setting.','groups share social interest and communal aspiration','','','d','','wassce','2014',81,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:41'),(7,'Cultism can be described to be','amiable','attractive','dangerous','harmless.','','','c','','wassce','2014',83,'Admin','2016-11-26 14:40:53','2020-07-27 15:24:24'),(8,'Based on the statements above, the decision of the student on having a bullet proof vest shows that cultism','spreads fear and terror.','is a training ground for armed forces.','breeds courageous graduates.','propagates self - defence.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','a','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:43'),(9,'It could be inferred from the statements above that cultism in schools could lead to','sudden prosperity.','uninterrupted academic calender.','popularity on campus.','untimely death.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','d','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:44'),(10,'Victims of human trafficking are usually compelled to engage in','lucrative employment','visiting tourist sites','part - time studies','forced labour.','','','d','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:45'),(11,'One habit which People Living With HIV/AIDS (PLWHAs) must avoid to remain healthy and productive is','regular contact with healthy people.','self - pity and self - medication','participation in profitable ventures','pursuit of academic studies.','','','b','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:46'),(12,'Youth empowerment is best described as the','training given to individuals for acquiring means livelihood','practice of engaging in prospective career','provision of subsidized meals to the citizens by government,','mobilization of citizens for political rally.','','','a','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:47'),(13,'The National Assembly, Presidency and Court which are inter - related and interdependent in our democracy constitute the','tiers of government','types of democracy','forms of government.','arms of government','','','d','','wassce','2014',74,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:48'),(14,'A system of government that listens to public opinion and tolerates opposition is','dictatorial regime','capitalist regime','democratic regime','socialist regime','','','c','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-07-25 18:35:32'),(15,'A situation where most citizens fail to vote in elections could be described as political','socialization','culture.','apathy','legitimacy','','','c','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:50'),(16,'The division of Nigeria into various constituencies with each electing a person to represent it in the National Assembly is a demonstration of','checks and balances','popular participation','political rivalry among the constituents','drive towards secession in the country.','','','b','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:51'),(17,'In Nigeria, public servants are expected to be','non - partisan','political','ambitious','apolitical','','','a','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:52'),(18,'The principle that public servants cannot be held responsible for their official actions denotes','impartiality','accountability','anonymity','neutrality.','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:53'),(19,'Universal Declaration of Human Rights (UDHR) is based on the resolution of the','Human Rights Watch','United Nations Organization','Amnesty International','League of Nations.','','','b','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:54'),(20,'According to the story, Imoh’s parents were','wealthy couple','prominent politicians','honest and responsible','religious fanatics','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:55'),(21,'What value did Imoh demonstrate.','Tolerance','Confidence','Fair play','Honesty','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','d','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:56'),(22,'Conflicts are better resolved in the society through','tribunal','litigation.','dialogue','the court','','','c','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-27 15:24:24'),(23,'To prevent the spread of HIV/AIDS, people should be encouraged to','avoid casual sexual activities','marry very early in life','engage in gainful employment','pursue higher education','','','a','','wassce','2014',100,'Admin','2016-11-26 14:40:54','2020-07-27 15:24:24'),(24,'The nearest government to the people and an important means of promoting grassroots development is the','state government','unitary government','local government','federal government','','','c','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:58'),(25,'Democratic governance is usually characterized by','free, fair and credible elections','buoyant and competitive economy','accessible employment opportunities','youth participation in governance','','','a','','wassce','2014',98,'Admin','2016-11-26 14:40:54','2020-07-25 14:57:28'),(26,'Political apathy often leads to','low level of participation','good governance','political stability','low literacy level','','','a','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-27 15:24:24'),(27,'Which of the following is not necessary for public servants to perform effectively?','In - service training','Appointment based on nepotism','Value re - orientation for public servants','Incentives for meeting set goals','','','b','','wassce','2014',83,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:01'),(28,'One of the conditions which can limit the enjoyment of Human Rights in Nigeria is the','acceptance of foreign aid by the government','improvement in literacy level of the citizens','declaration of state of emergency by government','periodic review of the constitution by government','','','c','','wassce','2014',93,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:02'),(29,'The implication of positive communal relationships is that it','promotes solidarity and love','ensures obedience to constituted authority','encourages ethnic diversity','promotes rural-urban drift.','','','a','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:03'),(30,'One major factor that attracts some Nigerians into human trafficking is','over - population related issues','influx of foreigners into the country','insatiable quest for quick wealth','influence of Western and social media','','','c','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:04'),(31,'One of the reasons most HIV/AIDS patients are \treluctant to disclose their status is because of','the incurable nature of the ailment','fear of social stigmatization.','lack of sufficient public awareness','shortage of health counsellors','','','b','','wassce','2014',77,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:05'),(32,'The position of the court on this matter justifies the essence of the','rule of law','legislature','police command','separation of powers','The Bawali High Court has ordered the police in Area Z Command to produce Mr. Zeb, who is in police custody for an alleged offence. The court insists that Mr. Zeb cannot be punished until he is found guilty of breach of any law of the land by a court of competent jurisdiction.','','a','','wassce','2014',87,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:06'),(33,'Leaders can best protect the interests of their followers by','embarking on periodic constitutional review','creating socio - economic opportunities for foreigners','creating conducive atmosphere for participation','rewarding supporters with contracts','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:07'),(34,'The most popular means through which citizens of a country can participate in politics is by','being members of political parties','engaging in constructive criticism','engaging in political debates','voting in elections','','','d','','wassce','2014',96,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:08'),(35,'Civil societies are vital for the promotion of popular participation because they are','profit - oriented organizations','engaged in developmental programmes','involved in political education','formidable oppositions to government','','','c','','wassce','2014',97,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:09'),(36,'From this dialogue, it is very likely that Wanja will be exhibiting the following characters except','disobedience to constituted authority','truancy and perpetual lateness to school','hospitable attitude towards people','arrogance and unruly behaviour.','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:10'),(37,'Which of the following may result from Wanja’s habit?','Humility for elders','Criminality in the society','Advocacy for hard drugs by NGOs','Excellent performance in school','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',79,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:11'),(38,'From Ada’s admonition, it could be deduced that taking hard drugs could','make people respect the addicts.','lead to insanity of the addicts','make people to adore the drug addicts','ensure courteous behaviour by the addicts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',85,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:12'),(39,'From the above dialogue, Wanja’s behaviour could be curtailed by','sending him abroad for further studies','financial inducement','re - orientation and rehabilitation','indulging him with expensive gifts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',77,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:13'),(40,'Which of the following governmental agencies is the most capable of controlling the activities of Wanja and his group?','National Agency for Food and Drug Administration and Control (NAFDAC)','National Orientation Agency (NO A)','National Emergency Management Agency (NEMA)','National Drug Law Enforcement Agency (NDLEA)','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','d','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:14'),(41,'One of the major barriers to national development is the','low poverty level','existence of multi - party system','prevalence of corrupt practices','persistent rural - urban migration','','','c','','wassce','2014',75,'Admin','2016-11-26 14:40:55','2020-07-25 18:35:32'),(42,'The quotation above shows that the speaker is concerned about','nationalism','revolution','tourism','welfarism','“Here is your country. Cherish these natural wonders, cherish the natural resources, cherish the history and romance as sacred heritage, for your children and your children’s children. Do not let selfish men or greedy interests skin your country of its beauty, its riches...”','','a','','wassce','2014',88,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:15'),(43,'A major benefit of youth empowerment is','dependence on foreign aid.','discouragement of patriotism','reduction in crime rate','negation to national prosperity','','','c','','wassce','2014',65,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:16'),(44,'When leaders like Chief Bilisi place self interest above public good, the result is that','rebellion becomes inevitable','cooperation of citizens is guaranteed','International support for the regime is ensured','society becomes more peaceful and orderly.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','a','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-07-25 14:57:28'),(45,'The condition of disorderly behaviour exhibited by the mob in the story best describes the','ineffectiveness of the police','breakdown of law and order','importance of ministerial position','need for stiffer security measures','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','b','','wassce','2014',78,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:18'),(46,'A major lesson Nigerians could learn from the story is that','leaders can empower voters by giving them money','security officials should use brutal force on citizens','the underprivileged should not vie for elective positions','greed and related vices can cause serious breach of  the law.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','d','','wassce','2014',82,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:19'),(47,'Which of the following is not a function of the Independent National Electoral Commission (INEC)?','Administering oath of office to elected officers','Conducting periodic elections','Recruitment of electoral officers.','Registration of political parties','','','a','','neco','2014',81,'Admin','2016-11-26 17:20:10','2020-07-25 18:35:32'),(48,'The upper legislative chamber of the National Assembly of Nigeria is also known as the','honourables','house of commons.','house of lords','senate','','','d','','neco','2014',80,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:21'),(49,'Cooperation between one country and another can be described as','bilateral','international','multilateral','multinational.','','','a','','neco','2014',93,'Admin','2016-11-26 17:20:14','2020-07-25 18:35:32'),(50,'The “right to vote and be voted for” can only be enjoyed by Nigerian citizens who attain the age of','13.','15.','16.','18.','','','d','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:23'),(51,'A representative of a commonwealth country in another member state is known as a / an.','ambassador','attaché.','consul-general.','high commissioner.','','','d','','neco','2014',107,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:24'),(52,'The following are values that promote interpersonal relationship, except','caring.','honesty.','patience','properties.','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:25'),(53,'The responsibilities of government to   its citizens include the following, except','creating employment opportunity','maintenance of law and order','payment of property tax to its citizens','protection of lives and property','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:26'),(54,'Most African countries owed their creation to','African Union (AU).','Commonwealth of Nations.','Ethnic and tribal leaders.','European Colonialists','','','a','','neco','2014',85,'Admin','2016-11-26 17:20:14','2020-07-25 14:57:28'),(55,'The structure of the Nigerian legislature is - in nature','bicameral','confederal','federal','unicameral','','','a','','neco','2014',80,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:28'),(56,'The most effective approach towards the elimination of sexually transmitted diseases is by','abstinence.','Casual sex.','use of condom.','use of drugs','','','a','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:28'),(57,'The first executive president of Nigeria is/was','Abubakar Tafawa Balewa','Goodluck Jonathan','NnamdiAzikiwe.','Shehu Shagari.','','','d','','neco','2014',82,'Admin','2016-11-26 17:20:15','2020-07-27 15:24:24'),(58,'One of the aims of citizenship education is to produce students with','creative skill.','high sense of entrepreneurial skill.','high sense of patriotism.','manipulative skills.','','','c','','neco','2014',78,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:30'),(59,'The symbol for the campaign against AIDs is Ribbon','black','blue','green','red','','','d','','neco','2014',111,'Admin','2016-11-26 17:20:15','2020-07-25 14:57:28'),(60,'ln 2013, Nigeria celebrated her ______ independence anniversary','50th','51st','52nd','54th','','','d','','neco','2014',93,'Admin','2016-11-26 17:20:15','2020-07-27 15:24:24'),(61,'In democracy, lack of press freedom leads to the denial of freedom of','association','expression','movement','voting','','','b','','neco','2014',63,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:33'),(62,'Franchise means right to','contest for political post','join association','live in Nigeria','vote and be voted for','','','d','','neco','2014',82,'Admin','2016-11-26 17:20:15','2020-07-25 18:35:32'),(63,'How many members constitute the lower legislative chamber in Nigeria?','300','302','312','360','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:35'),(64,'How many senators are elected from each state in Nigeria?','2','3','4','5','','','b','','neco','2014',70,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:36'),(65,'When was the first HIV/AIDs case reported in Nigeria?','1980','1983','1985','1987','','','c','','neco','2014',82,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:37'),(66,'Which of the following system of government advocates equitable distribution of wealth?','Aristocracy','Capitalism','Plutocracy','Socialism','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:38'),(67,'The right of an individual to seek redress in a law court is categorized under','economic.','political','procedural,','social','','','c','','neco','2014',83,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:39'),(68,'The National Youths Service Corps Scheme was established in Nigeria in','1970','1971','1973','1975.','','','c','','neco','2014',85,'Admin','2016-11-26 17:20:16','2020-07-25 18:35:32'),(69,'Which of the following is a legal obligation of a citizen?','Giving financial assistance to the poor','Helping in community development','Payment of taxes','Respecting the national symbols','','','c','','neco','2014',87,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:40'),(70,'Which of these is not a system of government?','Anarchy','Monarchy','Oligarchy','Socialism','','','d','','neco','2014',92,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:41'),(71,'The laws made by the third tier of government in Nigeria are refer to as','bye-laws.','constitutional laws.','decrees.','edicts','','','a','','neco','2014',98,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:49'),(72,'What does “35% affirmative action” of the present administration stand for? More','PDP  stalwarts   should   be engaged in government','political positions for women in government','women to be considered for campaign','women to be elected as governors','','','b','','neco','2014',93,'Admin','2016-11-26 17:20:16','2020-07-25 18:35:32'),(73,'A political party’s programme is known as its','constitution.','document.','functions.','manifesto.','','','d','','neco','2014',79,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:57'),(74,'How many Senator(s) represent the Federal Capital Territory in the senate?','1','2','3','4','','','a','','neco','2014',95,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:58'),(75,'The International Court of Justice is located in','Britain.','Netherlands.','Nigeria.','Norway.','','','b','','neco','2014',81,'Admin','2016-11-26 17:20:17','2020-07-25 18:35:32'),(76,'The headquarters of United Nations is located in','Abuja.','England','Hague.','New York.','','','d','','neco','2014',96,'Admin','2016-11-26 17:20:17','2020-07-27 15:24:24'),(77,'One advantage of Bi-cameral legislature is that it','guards against intra-party clashes.','is the only system available.','prevents arbitrary law making','projects party manifestoes.','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:01'),(78,'Public Complaints Commission in Nigeria is also known as','elder’s forum.','judiciary.','ombudsman.','people’s court.','','','c','','neco','2014',86,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:02'),(79,'The public service structure of Nigeria is an offshoot of','America.','British.','Canada.','India.','','','b','','neco','2014',82,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:03'),(80,'A de-facto authority is mostly associated with','anarchy.','customs and tradition.','force.','law.','','','b','','neco','2014',81,'Admin','2016-11-26 17:20:17','2020-07-25 14:57:28'),(81,'The United Nations universal declaration on human rights was proposed in the year','1925','1930','1946','1948','','','d','','neco','2014',76,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:05'),(82,'Political apathy can be discouraged through the following, except','educating the electorate.','good governance.','independent judiciary.','press censorship.','','','d','','neco','2014',87,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:06'),(83,'One of the civic responsibilities of a citizen is to obey','bye-laws.','constituted authority.','court judgments.','edicts.','','','b','','neco','2014',79,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:07'),(84,'Which of the following is not a function of political parties?','Aggregation of opinion','Educating the government','Interest articulation','Unifying factor.','','','d','','neco','2014',67,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:08'),(85,'Nigeria is now hundred years since amalgamation which means she has celebrated — anniversary.','amalgamation.','centenary.','golden jubilee.','independence.','','','b','','neco','2014',69,'Admin','2016-11-26 17:20:17','2020-07-25 18:35:32'),(86,'Which of the following bodies is responsible for defending the country against external aggression? The','Army','Civil defense.','Customs.','Police.','','','a','','neco','2014',94,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:10'),(87,'One of the following is a country as well as a continent.','Africa','Antarctica','Asia','Australia','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:10'),(88,'In a parliamentary system of government, the powers of the executive is vested in the office of the','minister.','premier','president.','prime minister.','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:11'),(89,'One of the major problems facing local government administration in Nigeria is','insufficient councilors','lack of control by the central government','lack of funds','leadership','','','c','','neco','2014',71,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:12'),(90,'The land contention between Nigeria and Cameroon is called','Bakassi Penisula','Bonny Island','Calabar River','Lekki Penisula','','','a','','neco','2014',80,'Admin','2016-11-26 17:20:17','2020-07-25 18:35:32'),(91,'The headquarters of ECOWAS is located in','Abuja','Accra','Adis-Ababa','Lome','','','d','','neco','2014',97,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:15'),(92,'Human rights abuse can be prevented through the following, except','constitutional means','court of law','mass literacy','protest','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:16'),(93,'The public Service is a branch of the ____ arm of government','civilian','executive','judiciary','legislative','','','b','','neco','2014',85,'Admin','2016-11-26 17:20:18','2020-07-25 18:35:32'),(94,'When the national flag is flown half mask, it is a sign of national','centenary celebration','children’s day','independence','mourning','','','d','','neco','2014',78,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:17'),(95,'One of the ways to ensure a free and fair election is to','allow parties to campaign on election day','appoint a politician as the chairman of the electoral commission','ensure INEC chairman is appointed from a pressure group','guarantee the security of electoral officers and materials','','','d','','neco','2014',79,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:18'),(96,'How many colours are in the traffic light?','2','3','4','5','','','b','','neco','2014',78,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:19'),(97,'The channel through which political parties make their program known to the people is ..............','canvassing','campaigning','convincing','coronation','','','b','','wassce','2012',79,'Admin','2016-11-26 17:47:57','2020-07-14 13:35:20'),(98,'What arm of the criminal justice system is prison?','first','second','third','none','','','c','','wassce','2012',92,'Admin','2016-11-26 17:47:58','2020-07-25 18:35:32'),(99,'................ is the apex body saddled by law to fight corruption and other related offences','IRS','ICPC','EFCC','NPF','','','c','','wassce','2012',97,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:30'),(100,'The responsibility of protecting past and present high ranking government officials falls on ...............','police','army','civil defense corps','SSS','','','a','','wassce','2012',83,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:31'),(101,'............ is obtained from the Nigerian immigration services as a requirement to travel out of the country','ticket','yellow card','passport','national ID card','','','c','','wassce','2012',72,'Admin','2016-11-26 17:47:58','2020-07-25 18:35:32'),(102,'There are ............. local government in Nigeria','700','714','744','774','','','d','','wassce','2012',102,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:33'),(103,'Local government is the ............... tier of government','1st','2nd','3rd','4th','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:34'),(104,'Television and radio are example  of ......... media','print','electronic','advertising','mass','','','b','','wassce','2012',115,'Admin','2016-11-26 17:47:58','2020-07-27 15:24:24'),(105,'Newspapers and magazine and example of ..... media','print','electronic','advertising','mass','','','a','','wassce','2012',94,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:36'),(106,'One of the listed criteria qualifies one for election .......','certificate','beauty','height','citizenship','','','d','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-27 15:24:24'),(107,'The following are duties to be performed by the citizens of a country EXCEPT','Destroying government properties','obey law and order','payment of tax','show loyalty','','','a','','wassce','2012',102,'Admin','2016-11-26 17:47:58','2020-07-27 15:24:24'),(108,'The form of government in which the electorate exercise their governing power directly through their elected \trepresentation is called ........','supremacy','democracy','autocracy','charismatic','','','b','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:39'),(109,'Punishment for law breaking include the following except ..........','freedom of movement','detention','sanctions','political instability','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:40'),(110,'The act of counting the numbers of people living in a country in order to determine the total numbers of \tpeople in a state is known as .......','election','national population census','voting','rights','','','b','','wassce','2012',109,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:41'),(111,'The last population census in Nigeria was conducted in ...........','2003','2006','2007','2005','','','b','','wassce','2012',106,'Admin','2016-11-26 17:47:58','2020-07-27 15:24:24'),(112,'The 219 chibok girls were ................ while ..............','abducted, praying in the mosque','kidnaped, praying in the church','abducted, wondering along the street of chibok town','kidnaped, preparing to write their WAEC examination','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:43'),(113,'The following are types of drugs except','cannabis','depressants','benzodiazepine pines','steroids','','','c','','wassce','2012',118,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:44'),(114,'Cocaine, morphine and heroin are example of','tobacco','steroids','narcotics','inhalants','','','c','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:45'),(115,'......... refer to a group of drugs that are inhaled in the form of a gas or solvent','hallucinogens','stimulants','inhalants','gasoline','','','c','','wassce','2012',109,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:46'),(116,'Cannabis is also called .........','barbiturates','cassava','marijuana','caffeine','','','b','','wassce','2012',107,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:47'),(117,'Which of the following is the most common forms of drug abuse','drug trafficking','self medication','drug combination','frequent use','','','b','','wassce','2012',91,'Admin','2016-11-26 17:47:59','2020-07-25 18:35:32'),(118,'The following factors are responsible for drug abuse except','family upbringing','high stress level','poverty','foster parenthood','','','d','','wassce','2012',89,'Admin','2016-11-26 17:47:59','2020-07-25 14:57:28'),(119,'........ is the type of parenthood where a different couple raise a particular child that is not their own','helicopter parent','foster parenthood','slow parenting','different parenthood','','','b','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:50'),(120,'One of the following is a cause of single parents in Nigeria','slow parenting','social group','nature of work','divorce','','','d','','wassce','2012',94,'Admin','2016-11-26 17:47:59','2020-07-25 14:57:28'),(121,'.......... strengthens the sensitive mental and emotional bond between the parent and children','narcissistic parenting','attachment parenting','positive parenting','teenage parenting','','','b','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:51'),(122,'........... is the verdict that results when a law court declares a defendant guilty of a crime','immunity clause','conviction','customary clause','traditions','','','b','','wassce','2012',119,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:52'),(123,'The clause which exempts the president from being prosecuted while still in office is called','military clause','special clause','conviction clause','immunity clause','','','d','','wassce','2012',85,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:53'),(124,'All the following can limit the right of a citizen except','war','state of emergency','universality','military rule','','','c','','wassce','2012',87,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:54'),(125,'The following are causes of emergency rule except','crisis','blood lettings','stage peaceful protest','sabotage / terrorism','','','c','','wassce','2012',76,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:55'),(126,'The World AIDs Day is usually ..........................','June 12th every year','May second every year','October 1st every year','December 1st every year','','','d','','wassce','2012',92,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:56'),(127,'One of the following is not human right group','Constitutional Right Project (CRP)','National Association of Democratic Lawyers (NADL)','Nigeria Bar Association (NBA)','Civil Liberties Organization (CLO)','','','c','','wassce','2012',94,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:57'),(128,'One of the following is not a pressure group','National Association of Nigeria Student (NANS)','Nigeria Labour Congress (NLC)','Academic Staff Union of Universities (ASUU)','Committee for Defense of Human Right (CDHR)','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:58'),(129,'One of the following is not a political party','PDP','APGA','ANPC','CPC','','','c','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:59'),(130,'One of the following is a social group','dangote group of companies','rotary club','Millan group','human right Africa','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:00'),(131,'The organization with the motives and goals of helping people is called','social group','charity group','pressure group','human right group','','','b','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:01'),(132,'The following are the reasons why people do not participate in polities except','illiteracy','lack of justice','multi-party system','religion','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-07-25 18:35:32'),(133,'............... is the prejudicial treatment of fellow human being','god fatherism','independence','justice','discrimination','','','d','','wassce','2012',97,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:03'),(134,'Laws are interpreted by the','Judiciary','President','Legislature','Executive','','','a','','wassce','2012',112,'Admin','2016-11-26 17:47:59','2020-07-25 14:57:28'),(135,'The president belongs to ............... arm of the government','Executive','Judiciary','Military','Legislature','','','a','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:04'),(136,'The process whereby an individual choose to favour a person who come from his family or tribe over other people or tribes is known as','stereotype','ethnicity','nepotism','favouritism','','','c','','wassce','2012',89,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:05'),(137,'When a group of people believe in and keep to certain norms, values and ways of life of their community since its creation, we call this .................','religion','stereotypes','traditions','custom','','','c','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:06'),(138,'Traffic lights are also known and referred to as','three directives light','spotlight','flow traffic directive','informative sign','','','b','','wassce','2012',86,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:07'),(139,'One of the following is not a federal road agencies','DTO','FRSC','TRACE','VIO','','','c','','wassce','2012',86,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:08'),(140,'One of the following is a regulatory prohibitory sign','stop police','speed limit','t junction','ferry','','','a','','wassce','2012',96,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:09'),(141,'The traffic light has how many colours','3','4','5','2','','','a','','wassce','2012',81,'Admin','2016-11-26 17:48:00','2020-07-25 14:57:28'),(142,'From the basic road traffic regulation pedestrians should not attempt to cross the road when the light are ............. and ...............','green and yellow','green and red','yellow and red','red and yellow','','','a','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:11'),(143,'Motorcyclists must always protect their heads with safety ............. which must be properly fastened','seat belt','head guild','helmets','cap cycles','','','c','','wassce','2012',103,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:12'),(144,'Pedestrians should always cross road using','stop hold','parked vehicles','zebra crossing','bridge','','','c','','wassce','2012',90,'Admin','2016-11-26 17:48:00','2020-07-25 14:57:28'),(145,'The former NAFDAC DG Prof Dora Akunyili died on','June 9. 2014','June 17, 2014','June 7, 2014','May 27, 2014','','','c','','wassce','2012',105,'Admin','2016-11-26 17:48:00','2020-07-27 15:24:24'),(146,'Political values are acquired in any given society through','Political re-orientation','Political campaign','Political socialization','Political indoctrination','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:51','2020-07-27 15:24:24'),(147,'To ensure the rights and freedom of citizens; the power of the arms of government must be','fused','incorporated','separated','rotated','','','c','','neco','2012',86,'Admin','2016-11-26 18:05:52','2020-07-27 15:24:24'),(148,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social right','','','b','','neco','2012',80,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:17'),(149,'The commission charged with the conduct of federal \telections in Nigeria between 2014 and 2015 is..........','Nec','fedeco','Inec','Necon','','','c','','neco','2012',87,'Admin','2016-11-26 18:05:52','2020-07-25 14:57:28'),(150,'The colour of the Nigeria flag is ..............., anytime it \tis half masked it means that the nation is ...............','green white green - rejoicing','white green white - mourning','green white green - mourning','green white blue - voting','','','c','','neco','2012',81,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:18'),(151,'Which of the following is used in gauging public opinion','Constitution','Educational Institution','Mass media','Electoral college','','','c','','neco','2012',77,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:19'),(152,'In Nigeria, The agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil  defense corps','Police','','','d','','neco','2012',89,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:20'),(153,'The National Assembly in Nigeria is primarily responsible for','executing laws','Interpreting laws','ratifying appointment','making laws','','','d','','neco','2012',84,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:21'),(154,'The major factor militating against efficient operation \tof electoral commission in Nigeria is .......................','Inadequate public support','Population size','Inadequate skilled manpower','excessive political interference','','','d','','neco','2012',70,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:22'),(155,'When Ebola disease is very rampant ............. count \ttheir loses while ......... smile to the bank','fish sellers, bush meat sellers','bush meat sellers, fish sellers','bread sellers, fish sellers','students, teachers','','','b','','neco','2012',100,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:23'),(156,'Workers in the Public Corporations are known as','Civil servants','Private employees','Public servants','Professional employees','','','c','','neco','2012',86,'Admin','2016-11-26 18:05:53','2020-07-25 18:35:32'),(157,'Membership of a society is','conventional','Mandatory','Voluntary','Constitutional','','','c','','neco','2012',80,'Admin','2016-11-26 18:05:53','2020-07-27 15:24:24'),(158,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','Police, Army, sovereignty and custom','','','c','','neco','2012',102,'Admin','2016-11-26 18:05:53','2020-07-25 14:57:28'),(159,'Citizenship is acquired by an alien through','registration','birth','Conferment','Naturalization','','','d','','neco','2012',87,'Admin','2016-11-26 18:05:53','2020-07-25 18:35:32'),(160,'The office responsible for announcing the result of an election is known as','ballot officer','presiding officer','Returning officer','Electoral officer','','','c','','neco','2012',93,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:28'),(161,'Law made by military governments are called','decrees','Bye-laws','Edicts','acts','','','a','','neco','2012',78,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:29'),(162,'The ultimate aim of political parties is to','implement people oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','neco','2012',80,'Admin','2016-11-26 18:05:53','2020-07-27 15:24:24'),(163,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their member','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','neco','2012',84,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:31'),(164,'Public servants in Nigeria belong to the ............. arm of government','military','executive','legislature','judiciary','','','b','','neco','2012',88,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:32'),(165,'One of the main duties of the local government service commission is to','supervise and manage the personnel of local government','conduct election into local council','create an enabling working environment for council workers','handle request for the creation of more local government','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:53','2020-07-25 18:35:32'),(166,'The option A4 model was used in the conduct of the','2007 election','1983 election','1993 election','1999 election','','','c','','neco','2012',103,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:34'),(167,'The following is the function of a responsible parenthood','care and love','gambling','Drug addition','fighting','','','a','','neco','2012',80,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:35'),(168,'Custom refers to .............','tradition or social value or patterns','image of a country','sharing similar or common ethnic background','A state of feeling of oneness among the people','','','a','','neco','2012',92,'Admin','2016-11-26 18:05:53','2020-07-25 18:35:32'),(169,'The term V. I. O. mean','Vehicle inspection officer','vehicle implementation officer','vehicle induce operation','vehicle induction officer','','','a','','neco','2012',81,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:36'),(170,'Which of these countries operate a unitary system of \tgovernment','Nigeria','U. S. A','Ghana','Britain','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:37'),(171,'Which of the following are not fundamental human right','right to life','right to gainful employment','right to vote and be voted for','right to overthrow a government','','','d','','neco','2012',84,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:38'),(172,'A constitution that is very easy to amend is called a ...... constitution','rigid','flexible','an easy','simple','','','b','','neco','2012',91,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:39'),(173,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate','','','d','','neco','2012',91,'Admin','2016-11-26 18:05:53','2020-07-27 15:24:24'),(174,'One judicial function performed by the executive is','granting of amnesty','implementing judicial order','ensuring obedience to the law','appointing judges','','','a','','neco','2012',85,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:41'),(175,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary','','','a','','neco','2012',90,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:42'),(176,'The private ownership of the means of production is a feature of','capitalism','Socialism','Communalism','Communism','','','a','','neco','2012',95,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:43'),(177,'A government is said to be legitimate if it','has the people’s mandate to rule','is not oppressive','provide social services for the people','accepts people’s criticism','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:44'),(178,'All type of government perform all the following functions except','providing welfare and developmental facilities','maintaining law and order','encouraging the struggle for power','encouraging trade with other state','','','c','','neco','2012',99,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:45'),(179,'A coup d’etat is regarded as','A source of political legitimacy','A manipulation of the constitution','A constitutional way of changing the government','an unconstitutional way of changing the government','','','d','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:46'),(180,'Which of the following is an advantage of local government','Agents for money based politics','electoral commissions','training grounds for political leaders','agents of pressure group','','','c','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:47'),(181,'Public Corporations are financed','by tax payers','with private funds','with entrepreneurial funds','by political parties','','','a','','neco','2012',110,'Admin','2016-11-26 18:05:54','2020-07-25 18:35:32'),(182,'A manifesto refers to','the register of party members','rejected ballot papers','valid ballot papers','Document containing the aims and programmes of   a political party','','','d','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:48'),(183,'Which of the following is not a duty of a citizen','obedience to the law','payment of taxes','service to the Nation','giving alms to the poor','','','d','','neco','2012',88,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:49'),(184,'The police perform all the following function except','public execution of law breaker','controlling and directing traffic','protection of life and property','enforcement of law and orders','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:50'),(185,'An agreed set of rules prescribing the governance of a country can be called the','constitution','charter','manifesto','programme','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:51'),(186,'The lack of interest in politics by many citizens in a country is called','civic agitation','mass apathy','mass protest','political unrest','','','b','','neco','2012',96,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:52'),(187,'The following are ways to prevent drug addiction except','civic education','law enforcement and regulation','mass media effort','voting at election','','','d','','neco','2012',95,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:53'),(188,'The following are examples of pressure group except','N. U. R. T','NBA','NLC','PDP','','','d','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:54'),(189,'The following are Road Traffic signs except','Regulatory sign','Informative sign','Warning sign','Philosophy sign','','','d','','neco','2012',85,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:55'),(190,'The function of Federal Road Safety Corp (FRSC) is','Enforcing the traffic regulation on road','making law','executing law','Interpreting law','','','a','','neco','2012',90,'Admin','2016-11-26 18:05:54','2020-07-25 14:57:28'),(191,'The function of vehicle inspection officer (VIO) is','ensuring the road wordiness of vehicle on the road','protection of life and property','collection of tax','counting of votes cast at election','','','a','','neco','2012',109,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:57'),(192,'Colonization of Africa was mainly motivated by','security consideration','economic reasons','religious reasons','cultural factor','','','b','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-07-27 15:24:24'),(193,'Which of these is a type of parenthood','single parenthood','ethnic parenthood','village parenthood','clan parenthood','','','a','','neco','2012',77,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:42'),(194,'Decrees are laws made by ............','Democratic government','The prime minister','The military','Parliaments','','','c','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:43'),(195,'Austerity measure was first introduced in Nigeria by ..........','President Babangida','Olusegun Obasanjo','President Sehu Shagari','President Goodluck Jonathan','','','c','','neco','2012',106,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:44'),(196,'Before crossing the road you are expected to ...........','Look left and then right','Look left, right and left again','Look back and left','Look forward for oncoming okada','','','b','','wassce','2013',111,'Admin','2016-11-27 17:07:11','2020-07-25 18:35:32'),(197,'.............. was the capital of Nigeria before .................','Abuja - Lagos','Lagos - Abuja','Ikeja - Abuja','Benin - Abuja','','','b','','wassce','2013',97,'Admin','2016-11-27 17:07:15','2020-07-14 11:39:46'),(198,'The primary duty of the police force is to','Make law','Interpret the law','Deal with danfo and okada drivers','Non of the above','','','d','','wassce','2013',91,'Admin','2016-11-27 17:07:19','2020-07-14 13:37:03'),(199,'The law is enforced by','Military','Legislators','Police force','Area boys','','','c','','wassce','2013',99,'Admin','2016-11-27 17:07:27','2020-07-14 13:37:04'),(200,'Which of the following is NOT an offence','Tax avoidance','Tax evidence','Stealing by trick','Money laundering','','','a','','wassce','2013',88,'Admin','2016-11-27 17:07:31','2020-07-14 13:37:20'),(201,'Some core Rights or Freedoms in the Universal Declaration of Human Rights of 1948 are','The right to life and right to freedom of opinion and expression','The right to fight and smoke in the public place','The right to attack your enemies and the right to make slanderous speeches','None of the above','','','a','','wassce','2013',94,'Admin','2016-11-27 17:07:35','2020-07-14 13:37:20'),(202,'Cultism can lead to','Immoral activities and indiscipline','Maintenance of law and order in the society','Corrupt free society','Sound cultural development','','','a','','wassce','2013',80,'Admin','2016-11-27 17:07:39','2020-07-14 13:37:40'),(203,'Popular participation can','promote political awareness and education','Lead to political apathy','lead to the election of wrong leaders','to political instability','','','a','','wassce','2013',107,'Admin','2016-11-27 17:07:47','2020-07-27 15:24:24'),(204,'One of the ways to prevent the spread of HIV/AIDs is','Not to eat in fast food joints','Not to shake hands with anybody','To avoid any object contaminated with blood','Sleep under a mosquito net','','','c','','wassce','2013',77,'Admin','2016-11-27 17:07:51','2020-07-14 13:37:42'),(205,'Nigeria became independent in ........... and a Republic in ................ Respectively','1963 and 1960','1960 and 1963','1954 and 1960','None of the above','','','b','','wassce','2013',108,'Admin','2016-11-27 17:07:55','2020-07-25 14:57:28'),(206,'The process of enlightening or training citizens on their rights and responsibilities is known as','Workshop training','Citizenship Education','Political Education','Citizenship Rights','','','b','','wassce','2013',94,'Admin','2016-11-27 17:07:55','2020-07-14 13:37:44'),(207,'The ideas, things or principles cherished by the people in a community are referred to as','rights','culture','values','due process','','','c','','wassce','2013',99,'Admin','2016-11-27 17:08:03','2020-07-14 13:37:45'),(208,'The illicit or illegal business in the sales and \ttransportation of human beings for economic and other selfish purposes is known as','Human capital development','Human traffic rule disobedience','Human trafficking','Mans inhumanity to man','','','c','','wassce','2013',78,'Admin','2016-11-27 17:08:03','2020-07-14 13:37:46'),(209,'An indifference attitude towards political activities by the citizens of a state is termed','political apathy','political unrest','political ideology','political disunity','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:07','2020-07-14 13:37:47'),(210,'For which of these can someone be arrested while driving on a high way','driving and laughing','driving and singing','driving and eating or receiving phone call','driving and crying','','','c','','wassce','2013',87,'Admin','2016-11-27 17:08:11','2020-07-14 13:37:48'),(211,'The process in which every qualified citizen of a state has the right to vote is called ............ suffrage','universal adult','democratic','tax payer','communal','','','a','','wassce','2013',90,'Admin','2016-11-27 17:08:11','2020-07-27 15:24:24'),(212,'The armed forces and the police are part of the ........ organ of government','executive','judicial','legislative','informative','','','a','','wassce','2013',85,'Admin','2016-11-27 17:08:14','2020-07-14 13:37:57'),(213,'The exercise of arbitrary power, whims and caprices constitutes a negation of .........','rule of law','fundamental human right','checks and balance','indirect rule','','','a','','wassce','2013',93,'Admin','2016-11-27 17:08:15','2020-07-25 14:57:28'),(214,'Which of the following concepts confirms the general acceptance and recognition of a government?','Democratic powers','Legitimacy','sovereignty','popular democracy','','','b','','wassce','2013',101,'Admin','2016-11-27 17:08:15','2020-07-27 15:24:24'),(215,'Which of the following can cause Human Trafficking in a country','poverty, youth unemployment and greed','Sound education and proper counselling','Social and economic contentment','B and C above','','','a','','wassce','2013',109,'Admin','2016-11-27 17:08:15','2020-07-25 18:35:32'),(216,'The use of drugs through self - medication or without due medical prescription is referred to as','Personal drug administration','Drug abuse','Human right abuse','Drug trafficking','','','b','','wassce','2013',93,'Admin','2016-11-27 17:08:15','2020-07-14 13:38:01'),(217,'An important characteristics of Democracy is','The absence of free press and mass media','Unequal political rights','Respect for principle of rule of law','The absence of separation of powers between the   arms and levels of government','','','c','','wassce','2013',87,'Admin','2016-11-27 17:08:15','2020-07-27 15:24:24'),(218,'Which one of the following is the founding father of Nigeria nationalism?','Goodluck Jonathan','Oba Kosoko','Herbert Macaulay','Olusegun Obasanjo','','','c','','wassce','2013',108,'Admin','2016-11-27 17:08:19','2020-07-14 13:38:03'),(219,'The use of illicit or hard drugs such as marijuana (Indian hemp) heroine, morphine etc. is known as','Human right abuse','Drug trafficking','Drug enhancement','Drug abuse','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:23','2020-07-25 14:57:28'),(220,'The farthest government to the people is the ............ government','Local','State','Federal','A and B above','','','c','','wassce','2013',114,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:05'),(221,'An instrument for exercise of power for controlling, administering and managing the affairs of people based on laws is the','Civil service','Executive','Government','State','','','c','','wassce','2013',101,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:06'),(222,'The ideology which emphasizes a classless society is','Communism','Capitalism','Totalitarianism','Feudalism','','','a','','wassce','2013',88,'Admin','2016-11-27 17:08:27','2020-07-14 13:38:07'),(223,'Which of the following constitutes drug abuse','taking less than the dose recommended by the doctor','taking more than the dose recommended by the doctor','taking the exact dose recommended by the doctor','A and B above','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:31','2020-07-25 14:57:28'),(224,'The power to legislate is usually exercised by','parliament','executive','judiciary','the president','','','a','','wassce','2013',82,'Admin','2016-11-27 17:08:39','2020-07-14 13:38:09'),(225,'Membership of a state is known as','citizenship','statism','patriotism','indigenousness','','','a','','wassce','2013',95,'Admin','2016-11-27 17:08:39','2020-07-25 18:35:32'),(226,'The process of learning the political attitudes, values and beliefs that are relevant to the political system is known as','political culture','political socialization','political participation','political science','','','b','','wassce','2013',114,'Admin','2016-11-27 17:08:39','2020-07-14 13:38:11'),(227,'The system of government in which all aspects of life are controlled by the government is','democracy','totalitarianism','capitalism','socialism','','','b','','wassce','2013',96,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:18'),(228,'It is an offense to drive along the high way','without putting on the seat belt','and talk or smile at the same time','and make phone calls at the same time','A and C above','','','d','','wassce','2013',88,'Admin','2016-11-27 17:08:43','2020-07-25 18:35:32'),(229,'The individual rights would be better protected if enshrined in the ..................','Courts','Constitutions','Bible and Quran','National Newspapers','','','b','','wassce','2013',81,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:20'),(230,'What is the minimum age for voters in Nigeria','15','20','18','50','','','c','','wassce','2013',98,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:21'),(231,'Which of these characteristics of the civil service ensure continuity of government?','Neutrality','Permanence','Bureaucracy','Loyalty','','','a','','wassce','2013',103,'Admin','2016-11-27 17:08:43','2020-07-25 14:57:28'),(232,'Public corporation are owned by the','government','banks','private individuals','foreigners','','','a','','wassce','2013',99,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:23'),(233,'The principle of equality before the law is the same as','social equality','social injustices','checks and balances','democratic justices','','','a','','wassce','2013',85,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:24'),(234,'The organ of government which are normally fused in a military regime are the','judiciary and legislative','civil service and executive','legislative and executive','legislative and judiciary','','','c','','wassce','2013',92,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:24'),(235,'The illegal sales and transportation of human beings for economic and some other selfish purpose is termed','Slave Trade','Survival of the Fittest','Gross Human Right Abuse','Human Trafficking','','','d','','wassce','2013',107,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:25'),(236,'The lack of interest in politics and political activities by the citizens of a country is known as','political disinterestedness','political culture','political disintegration','political apathy','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:26'),(237,'Popular participation refers to','Political Apathy','The active involvement of citizens in the social political activities of a country','The rule of the party with the largest number of supporters','The rule of a prominent and popular politician','','','b','','wassce','2013',84,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:27'),(238,'The rule of law simply means','The ruling of a lawful leader','The absence of political instability','Supremacy of the law','The ruling of legislators','','','c','','wassce','2013',88,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:28'),(239,'Cultism is ........, and so it should be ........','useful - allowed','cultural - encouraged','dangerous - discouraged','amiable - supported','','','c','','wassce','2013',97,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:29'),(240,'Drug abuse can be curbed by','encouraging the use of enhancement drugs in sports','teaching youths moral and religious principles','encouraging rural urban migration','None of the above','','','b','','wassce','2013',91,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:30'),(241,'A problem commonly faced by most people living with HIV/AIDs is of','Stigmatization','Non availability of drugs','Government insincerity','Lost of appetite','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:31'),(242,'Which of the following type of government is hereditary?','Democracy','Oligarchy','Monarchy','Fascism','','','c','','wassce','2013',85,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:32'),(243,'An organization whose ultimate aim is to gain the control of government and implement its programmes is known as a','Trade Union','Local Government','Political Party','Pressure Group','','','c','','wassce','2013',81,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:33'),(244,'The president belongs to .......... arm of the government','Legislative','Judiciary','Executive','Anti-crime','','','c','','wassce','2013',94,'Admin','2016-11-27 17:08:44','2020-07-27 15:24:24'),(245,'In Nigeria the outbreak of Ebola disease was first observed in the year','2012','2013','1960','2014','','','d','','wassce','2013',87,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:35'),(246,'Juvenile delinquency and cultism are ......... and should be .........','undesirable - encouraged','desirable - discouraged','undesirable - discouraged','desirable - discouraged','','','c','','neco','2013',94,'Admin','2016-11-27 17:44:15','2020-07-14 13:38:36'),(247,'Those who consume fish and vegetable frequently stand the chance of contacting the','HIV/AIDs disease','Ebola disease','Typhoid and yellow fever disease','None of the above','','','d','','neco','2013',88,'Admin','2016-11-27 17:44:16','2020-07-27 15:24:24'),(248,'The primary function of the legislature is the','monitoring the executive','making of laws','voting of bills','appointment of ministers','','','b','','neco','2013',78,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:38'),(249,'Ejiro, the senior brother of Omonigho had fever last week. The doctor prescribed a certain drug for him, He was asked to take one tablet, three times a day for four days. He took the drug as recommend for the first and second day and stopped. Five days later he took one tablet in the morning and one again at night. Omonigho’s action can be said to be a kind of','bad drug administration','drug Abuse','drug trafficking','Human trafficking','','','b','','neco','2013',89,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:39'),(250,'When a constitution is difficult to amend it is said to be','rigid','flexible','written','federal','','','a','','neco','2013',81,'Admin','2016-11-27 17:44:16','2020-07-25 18:35:32'),(251,'If Omonigho had taken the tablet one three times a day for six days his action constitutes a kind of','good drug administration','drug abuse','drug trafficking','none of the abuse','','','b','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-07-25 18:35:32'),(252,'Ejiro, who is not sick decide to take the same drug for the same duration as recommended for Omonigho by the doctor.Ejiro’s action can be described as a form of','preventive measure','drug abuse','drug trafficking','Self help activity','','','b','','neco','2013',85,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:42'),(253,'As Mr Umukoro got to Oghara junction, near Sapele, he packed the bus and bought some roasted monkey bush meat. Some of the passengers in the bus followed suit, that day was a good Friday. On motion Mr Umukoro, the driver and some of the passengers were doing justice to the monkey bush meat. No sooner had they started than they were stopped and Mr Umukoro was fined by men of the FRSC. If the fine was proper which of the reasons bellow could be responsible for it','some of the passengers ate the bush meat while the bus was on motion','Mr Umukoro, the driver was driving and eating at the same time','They were not supposed to eat monkey bush meat because they can contact the Ebola virus from it.','They were not expected to eat and any kind of meat on a good Friday','','','b','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:43'),(254,'The Ebola virus sneaked into Nigeria through','The Liberian born American, Mr Patrick Sawyer','The Ghanaian born American, Mr Patrick Sayer','Members of the Boko Haram','Monkeys and bats','','','a','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:43'),(255,'As a citizen you can be deprived of your Fundamental Human Rights during','Emergency Rule','Election period','National day celebration','National public holidays','','','a','','neco','2013',86,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:44'),(256,'Malaria fever can be transmitted through','hand shaking','eating of unbalanced diet','mosquito bite','eating of bush meat such as bat and monkey','','','c','','neco','2013',88,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:45'),(257,'Plenty of money in the society, not backed by commensurate productive activities can lead to','deflation','inflation','National developmental','cashless society','','','b','','neco','2013',94,'Admin','2016-11-27 17:44:16','2020-07-27 15:24:24'),(258,'In the year 2014, the Nigerian President Good luck Ebelle Jonathan  urged Nigerians to .......... the rumors  that drinking and bathing with salt water prevents or cures Ebola virus','ignore','accept','welcome','embrace','','','a','','neco','2013',98,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:47'),(259,'The primary duty of the army is to','execute the law','interpret the law','overthrow the government when there is anarchy','defend the country against external aggression','','','d','','neco','2013',97,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:48'),(260,'The first known outbreak of Ebola was in ................','2014, in Sierra Leone','1976, in a remote village near the Ebola River in Congo','2014, in port Harcourt, Nigeria','Enugu, during the Nigeria - Biafra war','','','b','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-27 15:24:24'),(261,'On a particular day in 2014, the National flag was flown half mask. This act symbolizes','National tailors day','National mourning','Children’s day','Golden jubilee celebration','','','b','','neco','2013',104,'Admin','2016-11-27 17:44:16','2020-07-27 15:24:24'),(262,'Vehicles are expected to continue with their journey when the traffic light shows ...............','Red','Blue','Yellow','Green','','','d','','neco','2013',98,'Admin','2016-11-27 17:44:16','2020-07-25 18:35:32'),(263,'In which of the following system is survival of the fittest mostly practiced','Communist system','Capitalist system','Feudalist','Totalistic system','','','b','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:52'),(264,'For now the Ebola disease has','no known cure','several known cures','cannot kill its action','no physically observable symptoms','','','a','','neco','2013',86,'Admin','2016-11-27 17:44:17','2020-07-14 13:38:53'),(265,'Some years ago a popular Governor in one of the states in Nigeria was asked to mention some mineral \tresources from his state. He made mention of “Fanta, Pepsi, Coca cola. The governor is','right','wrong','illiterate','unpatriotic','','','b','','neco','2013',83,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:00'),(266,'If you were to be in the Governor’s shoes which of the following would you have chosen?','Miranda and seven up','coca cola and Fanta','petroleum','stock, bonds and cash','','','c','','neco','2013',93,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:01'),(267,'The right practice of democracy can','ensure equity, justice and far play','discourage political education and awareness’','political unrest','lawlessness','','','a','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:02'),(268,'Political Apathy can lead to','very fast pace of development','the emergence of sound democratic government','wrong set of people coming into power','development of sound political culture','','','c','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:03'),(269,'Human traffickers usually engage their victims .........','in educative programs','in forced labour','in skill acquisition activities','in recreational activities','','','b','','neco','2013',71,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:04'),(270,'During a particular voting exercise if majority of the \tpeople refuse to vote, this can be described as','political stubbornness','political apathy','political awareness','political socialization','','','b','','neco','2013',83,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:05'),(271,'Mr Dickson’s little son, clement was sent away from school because he has not paid his school fees of \tN=11,000. That same day as Mr Dickson boarded a Danfo bus he noticed that the purse of a fellow passenger dropped on the floor of the bus. Mr Dickson tactically picked up the purse, opened it and saw a handsome sum of N=100,000. No body in the bus noticed him, neither did the fellow passenger. As a patriotic and good citizen of Nigeria, what is Mr Dickson expected to do','Pay his tithe (1/10 of the money) to the church take the rest and pray for forgiveness','Draw the attention of the fellow passenger and give the money back to him /her','Use part of the money to pay his son’s fess and keep the rest because opportunity comes but once','Leave the purse on the floor, and mind his business','','','b','','neco','2013',76,'Admin','2016-11-27 17:44:17','2020-07-25 14:57:28'),(272,'Public corporations are','meant to make profit','not meant to make profit','not expected to produce','established to gather public opinion','','','b','','neco','2013',98,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:07'),(273,'The attitude of the crowd towards, the sick man was that of ............','indifference','friendliness','hospitality','political apathy','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',102,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:08'),(274,'Which of the following could be a possible reason for the crowds attitude towards the sick man','They were afraid that he might be an unknown soldier','They kept their distance so as not to contact the Ebola virus, in case he has it','They were not used to helping visitors','They kept their distance so as not to contact the HIV/AIDs virus, in case he has it','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','b','','neco','2013',101,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(275,'If the crowd insisted on keeping their distance what appropriate action could they have taken','call the appropriate health department to intervene','left him to his fate','stone him to death','desert him','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(276,'If the crowd suspected that he had the Ebola virus and wish to call the Ebola emergency line, which one of the following could they have called?','08023169485','0803361424','08023361936','08027063614','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',90,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:10'),(277,'Any forms of restricted franchise is a violation of the principle of','political equality','sovereignty','legality','constitutionalism','','','a','','neco','2013',91,'Admin','2016-11-27 17:44:17','2020-07-25 18:35:32'),(278,'Which of the following is not the civic obligation of a citizen','payment of taxes','freedom of conscience and speech','voting during elections','obedience to law','','','b','','neco','2013',97,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:12'),(279,'A sovereign state is one','whose citizens are free to evade responsibility','whose governments decisions are made independent of foreign interference','which has a president and a prime minister','where its citizens can speak without fear or favour','','','b','','neco','2013',99,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:13'),(280,'Jamiu and Onome were among those standing inside a BRT bus in Lagos. Onome mistakenly stepped on Jamiu and Jamiu gave Onome a very dirty slap. As a law a biding citizen of the country which of the following reactions is expected of Onome','Turn the other chick for another slap','Slap Jamiu back and prepare for any fight that might ensure','Let Jamiu know that he, Onome stepped on him inadvertently, but pardon him to avoid escalating the matter','Push Jamiu down from the moving bus','','','c','','neco','2013',85,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:14'),(281,'Juvenile delinquency refers to','active youths participation in sports','wrong doings by the youths','Refusal to worship God by the youths','Urban Rural migration by the youth','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:15'),(282,'Psychopathy is a form of ................ behaviour','Normal','abnormal','desired','valued','','','b','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:16'),(283,'Consumers of ......... especially ........... and ..............stand the a great risk of contacting the Ebola disease','fish, tilapia, titus','bush meat, monkey, bat','meat, cow, dog','vegetable, water leaf, bitter leaf','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:17'),(284,'Government is the machinery established to manage the affairs of','the state','the civil service','peasants and students','strangers','','','a','','neco','2013',102,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:18'),(285,'The judicial organs of government is the body which','makes the law','implements the law','interpreters the law','rewards lawmakers','','','c','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:19'),(286,'The Ebola disease is usually acquired when a person comes in contact with','the blood or bodily fluids of an infested organism','anybody whose name is Bola','any animal','snake fish','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:20'),(287,'The prime minister is vested with the powers of the executive in ........... system of government','a parliamentary','a presidential','a monarchical','unitary','','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:27'),(288,'Through which of these can citizenship status be acquired','birth, naturalization, honorary and registration','birth, colonization and integration','referendum, incorporation and acceptance','convention registration and colonization','','','a','','neco','2013',99,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:28'),(289,'That which people enjoy primarily because they are human beings are called ...............','Human Obligation','Constitutional Right','Human Right','Democratic Right','','','c','','neco','2013',93,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:29'),(290,'Which of these categories of people stand the greatest risk of contacting the Ebola virus .........','Lecturers and students in the school','Health workers and their family members','Hunters and their family members','b and c above','','','d','','neco','2013',78,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:45'),(291,'It is often said that public servants cannot be held responsible for their actions. This principle denotes .................','anonymity','civic irresponsibility','accountability','neutrality','','','a','','neco','2013',84,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:46'),(292,'Free, fair and credible elections are attributes of .......','undemocratic government','democratic government','military regime','monarchical governance','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:52'),(293,'The followings are symptoms of Ebola excepts','sudden fever and vomiting','headaches and diarrhea','muscle pains','frequent hunger and increase thirst for water','','','d','','neco','2013',106,'Admin','2016-11-27 17:44:18','2020-07-25 18:35:32'),(294,'Public service belongs to ................','the legislative arm of government','the judiciary arm of government','senate arm of government','the executive arm of government','','','d','','neco','2013',97,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:54'),(295,'Human traffickers usually force their victims to engage in','rewarding exercise','religious activities','forced labour','useful trade','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:24','2020-07-14 13:39:55'),(296,'Public servants in Nigeria are expected to be .............','involved in politics','non-partisan','ambitious politically','partial','','','b','','wassce','2011',96,'Admin','2016-12-12 19:40:24','2020-07-14 13:39:56'),(297,'HIV and Ebola can be contacted through contact with','Non infected person','contaminated medical equipment such as needles and syringes','Very sick person','Healthy reptiles','','','b','','wassce','2011',115,'Admin','2016-12-12 19:40:24','2020-07-25 18:35:32'),(298,'Which of the following is not a preventive measure against the acquisition of the Ebola disease...........','Do not touch an infected person or their body fluids including blood, vomit, urine, saliva','Wash your hands regularly with soap and water and apply sanitizers frequently','Beware of hand shake and go for medical checkup as soon as possible when sick','Do not bath with medicated soap','','','d','','wassce','2011',91,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:09'),(299,'Nigeria celebrated her centenary anniversary in the ......','1954','1960','1963','2014','','','d','','wassce','2011',99,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:10'),(300,'Which of the following are Ebola Emergency lines','08023169484 or 08033086660','08023361936 or 08034623521','08023164216 or 08033065936','08055281400 or 08023361936','','','a','','wassce','2011',107,'Admin','2016-12-12 19:40:24','2020-07-27 15:24:24'),(301,'An individual with feverish condition who has taken Panadol is advised to see the ............ if the feverish condition persists after .......... days','father, four','pastor, three','doctor, three','doctor, ten','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:12'),(302,'Which of these is NOT undesirable in the society','cultism','terrorism','patriotism','vandalism','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:25','2020-07-25 14:57:28'),(303,'As at 2014 Nigeria has .......... states','47','37','60','57','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:14'),(304,'The Boko Haram insurgency started around','2009','2014','1960','1963','','','a','','wassce','2011',96,'Admin','2016-12-12 19:40:25','2020-07-25 14:57:28'),(305,'A sense of right and wrong guiding a person’s action is known as','attitude','conscience','action','manner','','','b','','wassce','2011',88,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:16'),(306,'Which of the following is a bad habit capable of leading to future psychological and physiological ill health','self Actualization','Self Meditation','Self Medication','Self Appraisal','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:17'),(307,'Civic Education is also known as ....................','Organizational Structure','Citizenship Education','Customers Opinion','Government Policy','','','b','','wassce','2011',105,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:18'),(308,'The number of Girls abducted by members of Boko Haram at Chibok in 2014 is roughly','200','219','419','180','','','b','','wassce','2011',94,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:19'),(309,'The Ebola virus can be prevented by','washing our hands regularly and applying sanitizer','washing our head always','taking drugs regularly','eating balanced diet','','','a','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:21'),(310,'If six political parties contest for an election (A, B, C, D, E, F), what is the probability that party C will wine the election','1/3','1/4','1/6','1/2','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:24'),(311,'Another word for abduction is ...........................','to steal','to adopt','to kidnap','to kill','','','c','','wassce','2011',100,'Admin','2016-12-12 19:40:25','2020-07-27 15:24:24'),(312,'In Lagos state and some other states in Nigeria, motorcycle (okada) riders are expected to wear ............ while on motion','Boot','Hand glove','Crash helmet','Black coloured shirt','','','c','','wassce','2011',75,'Admin','2016-12-12 19:40:25','2020-07-25 14:57:28'),(313,'In Lagos state, the BRT lane is reserved for ....... only','The governor','Soldiers','Commercial buses','BRT buses','','','d','','wassce','2011',97,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:27'),(314,'Mondays and Thursday are days meant for in between environmental sanitation exercise in ........... and .......... states respectively','Lagos and Edo','Edo and Lagos','Abuja and Lagos','Delta and Lagos','','','b','','wassce','2011',102,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:28'),(315,'One way for Nigerians to maintain steady good health is by','taking malaria medicine everyday','bathing with salt water and eating bitter kola always','taking balance diet and engaging in regular physical exercise','taking alcohol and cigarettes regularly','','','c','','wassce','2011',86,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:29'),(316,'Which of the following is the cleanest source of water in Nigeria','pond water','river water','rain water','lagoon water','','','c','','wassce','2011',96,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:30'),(317,'Which of these tax below is paid by nearly everybody in Nigeria','Direct tax','Excise tax','Proportional tax','Regressive','','','b','','wassce','2011',101,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:31'),(318,'Which of the following was a former military head of state in Nigeria','MKO Abiola','Goodluck Jonathan','General Idiagbon','General Babagida','','','d','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-07-25 18:35:32'),(319,'The three larges and most influential ethnic groups in Nigeria are','Yoruba, Edo and Hausa','Igbo, Iteskiri and Hausa','Hausa, Igbo and Yoruba','Fulani, Yoruba and Efik','','','c','','wassce','2011',105,'Admin','2016-12-12 19:40:25','2020-07-25 14:57:28'),(320,'The former National anthem begins with.......................','Nigeria We Hail Thee','Arise O Compatriots','I pledge to Nigeria my Country','So help me God','','','a','','wassce','2011',102,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:34'),(321,'NUC and NBA stands for ......... and ......... respectively','National University Commission and Nigeria Bar Association','Nigeria Bar Association and National University Commission','National Union Congress and Nigeria Basketball Authority','National Utilities Commission and Nigeria Bar Association','','','a','','wassce','2011',87,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:35'),(322,'General Murtala Mohammed was assassinated on his way to work in ..............','February 13, 1976','June 12, 1993','October 1, 1960','June 8, 1998','','','a','','wassce','2011',103,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:36'),(323,'Naira and Kobo was introduced in Nigeria in ..............','2nd July,1963','1st January 1972','June 12, 1993','March13, 1995','','','b','','wassce','2011',97,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:37'),(324,'In the General election of June 12 1993, the two main candidates that contested for the post of presidency were ......','MKO Abiola and Olusegun Obasanjo','MKO Abiola and Tofa','Atiku and Olusegun Obasanjo','Yaradua and Goodluck Jonathan','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:37'),(325,'A committee of PDP members is made up of 9 Hausas, 8 Igbo and 7 Yorubas. If the president wishes to choose just one person to be his special adviser, find the probability that the person chosen is neither Hausa nor Yoruba','7/24','2/3','3/8','1/3','','','d','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:38'),(326,'Driving, especially along the highway requires serious  ...........','concentration','meditation','concentration','perambulation','','','c','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:39'),(327,'A Taxi diver who mistakenly Jams and kills someone is guilty of ............... and he will receive ................ punishment than if it were a case of ........','murder, less, manslaughter','man slaughter, less, murder','manslaughter, more, murder','civil offence, less, murder','','','b','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:40'),(328,'The full meaning of NYSC is ..............','Now Your Suffering Continues','Nigeria Youths Serving Christ','National Youth Service Corps','Nigerian Youth Service Corps','','','c','','wassce','2011',93,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:41'),(329,'The NYSC was established in the year .................','May 22, 1973','June 15, 1960','May 22, 1963','August 20,1993','','','a','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:42'),(330,'One of the main objectives of establishing the NYSC is to .................','Enable the youths to have some practical experience \t\t     after schooling','Forster National unity','Engage the young graduates because “Idle mind is the devil’s workshop”','Create employment for the young graduates','','','b','','wassce','2011',85,'Admin','2016-12-12 19:40:26','2020-07-25 14:57:28'),(331,'Those eligible to partake in the scheme are those','Those seeking for admission into the higher institutions','Who have successfully completed their studies from higher institution .eg. college of education, \t\t     polytechnic & university','Who are looking for something to keep them busy','Who are from poor family background','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-27 15:24:24'),(332,'The age limit for the service is ..............','25','35','30','18','','','c','','wassce','2011',92,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:45'),(333,'At the end of the service year each corper will be given ......... as an evidence that he or she has successfully completed the service','NYSC passport','National ID Card','NYSC discharge certificate','Letter of appreciation','','','c','','wassce','2011',105,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:46'),(334,'Which of the following is true','The CD (Community Development) exercise   embarked by corpers is not paid for by the community','Corpers collect extra money for embarking on the C.D','Corpers are not usually given monthly allowances','The aim of the NYSC scheme is to foster disunity   in the country','','','a','','wassce','2011',96,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:47'),(335,'The killing of NYSC members in certain parts of the country  ................','Contradicts the goal of establishing the scheme','Is in line with the aims of establishing the scheme','Is not a serious matter','Enhances national unity','','','a','','wassce','2011',86,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:48'),(336,'Nigeria is a ............. state','Communist','Capitalist','socialist','Feudalist','','','b','','wassce','2011',94,'Admin','2016-12-12 19:40:27','2020-07-25 14:57:28'),(337,'Some years to come, when you become the President of Nigeria, which of the options below will you choose \tto eradicate porzverty in the country','carry all the poor people away from Nigeria to another country so when there are no poor people poverty will be gone forever','print plenty Naira Notes and give millions to every Nigeria','Import plenty Agricultural and Manufactured goods','None of the above','','','d','','wassce','2011',94,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:50'),(338,'On the 18th of November 2014 in Yobe, some crowds lynched a suspected suicide bomber. The action of the crowd is .....','right because ‘he who kills by the sword must die by the sword’','wrong because they have unlawfully taken the law into their hands, they should have handed the suicide  bomber over to the police','right because we all have to fights against all forms of terrorism','right so that others will learn lesson from this action','','','b','','wassce','2011',87,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:51'),(339,'In the year 2014 the catholic church in Nigeria suspended the usual hand shaking (as a sign of peace) among its members just after the “Lord’s prayer” The most likely reason for this action is to prevent the \t\tspread of ............, in case a member has it','HIV/AIDs virus','The Ebola virus','Evil and demonic spirit','malaria fever','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:52'),(340,'Decrees are laws made by .............','the parliament','the judiciary','the military','senators','','','c','','wassce','2011',90,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:53'),(341,'The document containing the aims and programs of a political party is called ...........','register','manifesto','memorandum of party','party library','','','b','','wassce','2011',100,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:53'),(342,'The former PHCN is a good example of .................. in Nigeria','civil service','perfect competition','public corporation','private monopoly','','','c','','wassce','2011',107,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:54'),(343,'Orderliness can be defined as','being punctual to work','studying diligently in school','doing things in a proper way','learning the Western way of life','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:55'),(344,'The Traffic in Persons Prohibition and Administration Act was passed in Nigeria in','December 2001.','October 2002','August 2003','April 2004.','','','c','','wassce','2016',89,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:56'),(345,'The process of enabling someone to perform an action which adds value to his/her life is known as','employment','recruitment','socialization','empowerment','','','d','','wassce','2016',88,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:58'),(346,'Rates are collected in Nigeria by','Federal Inland Revenue Service','State Ministry of Finance','Local Government Councils','Council of Traditional Rulers','','','c','','wassce','2016',93,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:59'),(347,'The Fourth Schedule of the 1999 Constitution of Nigeria outlines the functions of','federal government','local government','national government','state government','','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:00'),(348,'Lack of interest in politics by citizens in the country is referred to as political','ignorance','apathy','participation','socialization','','','b','','wassce','2016',92,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:01'),(349,'Which of the following instruments is not used by a civil society group?','Propaganda','Boycott','Protest','Violence','','','d','','wassce','2016',92,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:02'),(350,'The administrative class in the public service is to','implement policies','formulate policies','veto policies','oversee policies','','','a','','wassce','2016',76,'Admin','2016-12-12 19:57:13','2020-07-25 14:57:28'),(351,'“We the people of the Federal Republic of Nigeria” is usually the opening phrase of the preamble to','coup announcement','government gazettes','constitution','mansard','','','c','','wassce','2016',80,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:04'),(352,'One of the responsibilities of a good citizen is to','possess an international passport','enjoy all amenities provided by government','serve the country when required','develop his potentialities to the fullest','','','c','','wassce','2016',87,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:05'),(353,'Naturalized citizens cannot be denied their legal status as members of a country unless if they','are jailed for one year within seven years of acquiring citizenship','are found guilty to be spies or secret agents for another country','refuse to represent the country in an international sporting event','give adequate information to the host country','','','a','','wassce','2016',83,'Admin','2016-12-12 19:57:13','2020-07-27 15:24:24'),(354,'Citizenship education influences an individual to be','patriotic','educated','complacent','competent','','','a','','wassce','2016',99,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:07'),(355,'Which of the following is not an example of orderliness?','Listening skill','Driving skill','Decorum','Deviance','','','d','','wassce','2016',71,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:08'),(356,'Which of the following statements is not correct?','Valid driver’s license must be obtained before attempting to drive','Flowing garment can be worn on a motorcycle or bicycle','Headlights should be used during unfavourable weather','Drivers must not engage in distractive activities while driving','','','d','','wassce','2016',81,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:09'),(357,'Cultism can best be discouraged through','mentoring of cultists by the rich','provision of jobs for cultists','sensitization on the dangers of cultism','establishment of cultists support groups','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:10'),(358,'Which of the following is a consequence of drug abuse?','Depression','Victimization','Inefficiency','Cowardice','','','a','','wassce','2016',88,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:11'),(359,'The effect of human trafficking on the victims is','illiteracy','affluence','exposure','exploitation','','','d','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:11'),(360,'The general attitude of government and society towards cultism is that of','affection','sympathy','abhorrence','support','','','c','','wassce','2016',93,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:12'),(361,'Drug abuse can be prevented by','fighting drug addicts','poverty reduction','reducing drugs in circulation','legal sanction','','','b','','wassce','2016',93,'Admin','2016-12-12 19:57:14','2020-07-27 15:24:24'),(362,'A major factor responsible for human trafficking is','hunger','illiteracy','greed','joblessness','','','c','','wassce','2016',94,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:14'),(363,'People Living With HIV/AIDS (PLWHA) can be supported by','billing them for antiretroviral therapy','providing drugs for them at subsidized rates','providing special attires for them','providing accommodation for them in designated locations','','','b','','wassce','2016',90,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:22'),(364,'Cult members are particularly hostile to','lecturers','perceived enemies','their group members','all students','','','b','','wassce','2016',80,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:23'),(365,'Drug law enforcement agencies in Nigeria are not empowered to','execute drug suspects','arrest drug barons','prosecute drug traffickers','rehabilitate drug addicts','','','a','','wassce','2016',81,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:24'),(366,'Which of the following is not a means of reducing the incidence of HIV/AIDS in our society?','Education and enlightenment programs','The use of specially designed cutlery by victims','Avoiding pre-marital and extra-marital sex','Upholding the value of chastity','','','b','','wassce','2016',95,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:25'),(367,'Youth empowerment promotes','self-reliance','youthful exuberance','pursuit of higher education','foreign scholarship','','','a','','wassce','2016',88,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:26'),(368,'The Supreme Court of Nigeria helps in law','drafting','application','interpretation','enforcement','','','c','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:26'),(369,'Democracy thrives most where there is','nonpartisan judiciary','freedom of speech and association','absence of universal suffrage','one-party system','','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-25 14:57:28'),(370,'Rule of law is limited by the following except','state of emergency','habeas corpus','illiteracy','immunity','','','c','','wassce','2016',87,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:28'),(371,'Preventive measures of HIV/AIDS do not include','abstinence','screening of blood before transfusion','use of barrier method','stigmatization of victims','','','d','','wassce','2016',79,'Admin','2016-12-12 19:57:15','2020-07-25 18:35:32'),(372,'One of reasons leaders fail to protect the interest of their followers is','selfishness','inadequate finance','ignorance','rigid policies','','','a','','wassce','2016',87,'Admin','2016-12-12 19:57:15','2020-07-25 18:35:32'),(373,'Which of the following is not a form of political participation?','Taking part in voters’ registration exercise','Voting during elections','Joining political party','Ballot box stuffing during elections','','','d','','wassce','2016',96,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:32'),(374,'Civil Society groups perform the following roles during general elections except','educating the voters','serving as watchdog','counting votes','stimulating participation','','','c','','wassce','2016',74,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:33'),(375,'Which of the following is not an example of civil society group?','United Action for Democracy','United Nations Organization','Transition Monitoring Group','Amnesty International','','','b','','wassce','2016',88,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:34'),(376,'One of the major complaints against public service is','inefficiency','understaffing','victimization','discrimination','','','a','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:35'),(377,'Which of the following is not a way of improving public service?','Politicization','Refresher courses','The use of Code Conduct Bureau','Reformation','','','a','','wassce','2016',94,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:36'),(378,'Children that are not cared for are mostly prone to','criminal attitudes','terminal diseases','examination failure','forced migration','','','a','','wassce','2016',91,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:38'),(379,'The motherland in the monologue could best be described as','a nation in transition','a morally upgrading country','a socially viable nation','an ethically bankrupt country','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-25 14:57:28'),(380,'In spite of the state of affairs reflected in the above monologue, the citizens can make the country better by being committed to','promoting inter-communal relations','strengthening capacity building','championing moral values','encouraging interpersonal relations','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','c','','wassce','2016',84,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:40'),(381,'Based on the monologue above, the best approach to curb moral decadence in the motherland is by','value re-orientation','introducing war against corruption','legalizing capital punishment','sending corrupt officials on exile','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','a','','wassce','2016',84,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:41'),(382,'The most important contribution of responsible parenthood to national development is that it','increases youthful population','fosters national integration','augments the nation workforce','breeds dependable citizenry','','','c','','wassce','2016',91,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:42'),(383,'Which of the following can not be easily abused?','Cosmetics','Stimulant','Tobacco','Narcotics','','','a','','wassce','2016',80,'Admin','2016-12-12 19:57:16','2020-07-27 15:24:24'),(384,'Dr. Fajir cannot exercise some basic rights because he','was a suspect in a criminal case','was found guilty of a criminal offence','failed to comply with court order','embezzled public fund','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','b','','wassce','2016',127,'Admin','2016-12-12 19:57:16','2020-07-25 08:23:31'),(385,'According to the above story, the open trial of Dr. Fajir and his representation by lawyers of his choice in a court of competent jurisdiction is an indication of','respect for habeas corpus','freedom of expression','respect for human rights','freedom of legal representation','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','c','','wassce','2016',82,'Admin','2016-12-12 19:57:16','2020-07-27 15:24:24'),(386,'Based on the above story, which of the following would Dr.Fajir not be allowed to do while in prison?','Voting during elections','Engaging in hard labour','Participating in prison fellowship','Writing examination','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','a','','wassce','2016',78,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:46'),(387,'The most important place for building good values is the','social welfare centre','workplace','family','media houses','','','c','','wassce','2016',76,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:47'),(388,'Citizen’s compliance with tenets of the Nigerian National Pledge will enable the country to','receive reciprocal assistance','witness value clarification','get international aid','experience development','','','b','','wassce','2016',82,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:48'),(389,'Which of the following statements may be true about the behaviour of the candidates in the diagram?','The candidates are doing what is ethical','Candidates involved in malpractice should be banned for life','Their action can also affect innocent candidates','Their misconduct will guarantee a reliable certificate','','','b','','wassce','2015',78,'Admin','2016-12-12 20:15:41','2020-07-25 18:35:32'),(390,'Based on the above diagram, the candidates would not have cheated if','they were well-spaced','there was an invigilator','they were hardworking','there was nobody to copy from','','','c','','wassce','2015',87,'Admin','2016-12-12 20:15:41','2020-07-25 18:35:32'),(391,'In which year did the United Nations General Assembly adopt the Universal Declaration of Human Rights?','1945','1946','1947','1948','','','a','','wassce','2015',81,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:50'),(392,'Two forms of road signs are regulatory and','punitive','informative','persuasive','inhibitive','','','b','','wassce','2015',86,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:52'),(393,'Which of the following factors does not affect interpersonal relationship?','Communication','Withdrawal','Compatibility','Forgiveness','','','b','','wassce','2015',85,'Admin','2016-12-12 20:15:41','2020-07-27 15:24:24'),(394,'The following cadre of students are the main target for campus cult membership except','students from wealthy homes','students from influential parents','bold and morally sound students','wayward and fun-loving students','','','c','','wassce','2015',88,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:54'),(395,'The National Agency for Food and Drug Administration and Control (NAFDAC) was established in','1993','1996','1999','2001','','','a','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:55'),(396,'National Agency for the Prohibition of Traffic in Persons (NAPTIP) is an initiative of','Federal Government of Nigeria','United States Agency for International Development','Woman Trafficking and Child Labour Eradication \tFoundation','United Nations Office on Drugs and Crime','','','a','','wassce','2015',77,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:56'),(397,'World AIDS day is observed on','20th May','30th July','27th August','1th December','','','d','','wassce','2015',71,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:57'),(398,'An enabling environment created to help an individual have effective control of his/her situation is known as','reinforcement','empowerment','endowment','enhancement','','','b','','wassce','2015',90,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:58'),(399,'In order to avoid undue interference in the process of governance, there should be','clear cut separation of governmental powers','proper fusion of governmental powers and functions','more roles for traditional rulers in the governmental process','additional responsibility for local government council','','','a','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:59'),(400,'Red-tapism is one the shortcomings of','private enterprise','public service','non-governmental organization','pressure groups','','','b','','wassce','2015',91,'Admin','2016-12-12 20:15:42','2020-07-25 14:57:28'),(401,'An ideology that aims at promoting national consciousness and identity is','nationalism','socialization','civic culture','progressivism','','','a','','wassce','2015',88,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:01'),(402,'Human rights are described as inviolable mainly because they are','authoritative declaration','enforceable everywhere','not to be unnecessarily taken away','legal declaration instruments','','','d','','wassce','2015',63,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:02'),(403,'Law and order can best be maintained in Nigeria through the','prohibition of public protest','enforcement of rules and regulations','use of divide and rule policy','promotion of indigenization policy','','','b','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:03'),(404,'A responsible parent is someone who','cares and provides for the children','indulges the children because of love','works in order to receive salary','employs house-helps to take care of the children','','','a','','wassce','2015',79,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:04'),(405,'A major way of promoting responsible parenthood is through','sex education','sound education','population control measures','tax reduction measures','','','a','','wassce','2015',95,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:05'),(406,'Which of the following is not included in the stages of interpersonal relationship?','Rejuvenation','Deterioration','Termination','Continuation','','','c','','wassce','2015',82,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:06'),(407,'Cultism in tertiary institutions in Nigeria was originally introduced to','perpetuate the use of local gin and alcohol','harass opponents of university administrators','fight colonialism and oppressive rules','promote inter-communal marriages.','','','c','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-27 15:24:24'),(408,'Which of the following is not a function of the National Drug Law Enforcement Agency (NDLEA)?','Applying and implementing all drug laws','Arresting, investigating and prosecuting drug traffickers','Undertaking the registration of companies dealing \tin drugs','Carrying out enlightenment campaigns on drug trafficking','','','c','','wassce','2015',73,'Admin','2016-12-12 20:15:42','2020-07-25 18:35:32'),(409,'An individual who finds it difficult to control in-take of drug is known as drug','baron','traffickers','mogul','addict','','','d','','wassce','2015',77,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:09'),(410,'The NDLEA personnel are not usually found in','international airports','seaports','border crossings','foreign embassies','','','d','','wassce','2015',94,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:10'),(411,'Which of the following statements best describes Human Trafficking?','Recruitment of youths as casual workers','Desperate desire by youths to travel abroad','Buying and selling of humans for selfish purposes','Transportation of gods and service through human portage','','','c','','wassce','2015',81,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:31'),(412,'From the above write-up what category of Kantoguan youth deserves to be effectively empowered?','Children of the ruling political class','Unemployed youths and school drop-outs','University undergraduates','Youth wing of religious organizations','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','b','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:33'),(413,'The responsibility of empowering the youth rests mostly with','the political class','religious organizations','university administrators','national government','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','d','','wassce','2015',80,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:35'),(414,'Based on the write-up, what immediate measures can those in authority take to empower the youths?','Build more youth orientation camps in the country','Enhance religious and moral education in schools and colleges','Provide entrepreneurial training with adequate fund','Provide free meal for the teeming unemployed youths','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','c','','wassce','2015',85,'Admin','2016-12-12 20:15:43','2020-07-27 15:24:24'),(415,'A very important segment of the society which is distinct from government, business and home is the','civil society','public service','mass media','traditional institution','','','a','','wassce','2015',97,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:36'),(416,'HIV/AIDS is generally described as terminal in nature because it is','preventable','transmittable','avertable','incurable','','','d','','wassce','2015',82,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:37'),(417,'Inter-communal relationship is best described as','the interaction between individuals, groups or organizations with common aspirations','the interaction among individuals and professionals in a social setting','loyalty to community leaders so as to achieve rapid communal development','respect for collective national symbols in order to foster nationalistic feeling','','','a','','wassce','2015',84,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:38'),(418,'A situation whereby someone is obliged to inform a superior about his actions and decisions for the purpose of control is','probity','self-discipline','accountability','fair play','','','c','','wassce','2015',92,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:39'),(419,'The above quotation summarizes the','Universal Declaration of Human Rights.','African Charter on Human Rights.','Geneva Conventions and Protocols.','United Nations Organization Charter.','“All human beings are born free and equal in dignity and rights. They are endowed with reason and \t\tconscience and should act towards one another in a spirit of brotherhood”.','','a','','wassce','2015',78,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:40'),(420,'Effective and responsible parenthood is primarily','a national duty','a military duty','a political duty','an economic duty','','','a','','wassce','2015',73,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:41'),(421,'Association and affiliation between two or more people is called','multilateral relations','bilateral relations','inter-communal relations','interpersonal relations','','','d','','wassce','2015',86,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:43'),(422,'A bill passed by the National Assembly requires the assent of the president before it becomes law. The law can be declared null and void by the court of law. The process above emphasizes the','supremacy of judiciary over other arms of government','relationship among the arms of government','importance of law makers in a democracy','fundamentals of the rule of law.','','','d','','wassce','2015',75,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:44'),(423,'The idea that “Law should be impartial with the people who break it” implies','principle of fair hearing','right to legal representation','equality before the law','prerogative writ of habeas corpus','','','c','','wassce','2015',105,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:45'),(424,'The foreign policy objective of Nigeria as enshrined in the 1999 Constitution exclude the promotion of','national interest','African integration','support for donor agencies','just world economic order','','','c','','wassce','2015',97,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:46'),(425,'Democracy can promote national development if there is','good governance','promotion of culture','immunity for leaders','registration of parties','','','a','','wassce','2015',79,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:47'),(426,'A major civil society group which campaigned against military rule prior to the advent of the Fourth Republic in Nigeria is the','Campaign for Democracy','Save Nigeria Group','Civil Liberties Organization','National Democratic Coalition','','','a','','wassce','2015',74,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:48'),(427,'Which of the following function is not performed by the Public Service Commission?','Evaluating the performance of ministries and departments','Advising government on technical matters','Preparing the annual budget and assenting to it','Organizing enlightenment program and training','','','d','','wassce','2015',105,'Admin','2016-12-12 20:15:44','2020-07-25 14:57:28'),(428,'Which of the following is a major challenge to civil society in Nigeria?','Value disorientation','Diverse political interests','Inadequate funding','Unstable political system','','','a','','wassce','2015',85,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:50'),(429,'Democracy is yet to take firm root in Africa because','it retards African development','African leaders are not experienced enough','most African leaders detest the will of the people','it is an expensive system of government','','','c','','wassce','2015',82,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:52'),(430,'Nationalism ensures the following except','national consciousness','secession in a country','national integration','unity in a country','','','b','','wassce','2015',90,'Admin','2016-12-12 20:15:44','2020-07-25 14:57:28'),(431,'Justice demands that people should always do what is','persistently convenient','consistently right','individually acceptable','courageously necessary','','','b','','wassce','2015',74,'Admin','2016-12-12 20:15:44','2020-07-27 15:24:24'),(432,'Orderliness in the society is good mainly because it','discourages poverty','promotes peace and stability','guarantees employment for youths','ensures maximum rewards from leaders','','','b','','wassce','2015',82,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:55'),(433,'Which of the following is necessary for the effective application of the rule of law?','Political will to ensure that laws are obeyed','Employment opportunities for all citizens','The fusion of the three arms of government','Extension of the retirement age of judges','','','a','','wassce','2015',83,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:56'),(434,'Ade’s action as shown in the dialogue is a demonstration of political','wisdom','apathy','lawlessness','participation','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','b','','wassce','2015',85,'Admin','2016-12-12 20:15:44','2020-07-25 18:35:32'),(435,'It could be inferred from the dialogue that failure to vote in an election would','guarantee citizens’ rights','encourage the emergence of responsive government','promote accountability in governance','perpetuate irresponsible leadership','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','d','','wassce','2015',93,'Admin','2016-12-12 20:15:44','2020-07-27 15:24:24'),(436,'From the above dialogue, political leaders can encourage citizens to perform their civic duties by','fulfilling their electoral promises','travelling overseas to seek for foreign investors','engaging in religious activities','visiting all the local governments in the country','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','a','','wassce','2015',90,'Admin','2016-12-12 20:15:44','2020-07-14 02:24:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `commerce` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=888 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `commerce` VALUES (1,'Ships that sail across the ocean and operate on scheduled time are ','ferries ','ocean liners ','tramp steamers  ','coastal liner','','','b','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(2,'Non-insurable risks include ','gambling ','damage to property','death','marine ','','','a','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(3,'The program that makes up the operating system in a computer is         ','micro program','system flowchart','system software','syntax','','','c','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(4,'When an organization studies a market that is underserved by others and creates a product or service for the segment, it is engaged in','market integration  ','market positioning','market orchestration','product differentiation','','','c','','utme','2004',313,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(5,'Coverage against unexpected events is called',' insurance ','assurance   ','warranty','reinsurance','','','a','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(6,'An insured risk which occurs accidentally as a result of defects in a ship is','a voyage policy    ','a total loss','an emergency     ','a particular average','','','d','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(7,'Communication enhances business activities by','facilitating interaction between producers and consumers ','facilitating interaction among media houses','ensuring the movement of goods from the producer to the consumer','keeping the goods safe until they are needed','','','a','','utme','2004',321,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(8,'In business, the computer is very important  especially in  ','financial management','marketing management   ','educational  management    ','information management','','','d','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(9,'What is the most important use of promotion in marketing?     ','Persuasion   ','Conviction','Information ','Education','','','c','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(10,'The current highest decision-making body on  privatization and commercialization of public enterprises in Nigeria is the','National Council on Privatization','Securities and Exchange Commission','Nigeria Investment Promotion Commission','Bureau of Public Enterprises','','','d','','utme','2004',314,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(11,'The members of the Niger Basin Commission  include  ','Guinea, Ghana and Niger Republic','Burkina Faso, Guinea and Nigeria ','The Gambia, Benin Republic and Chad Republic',' Nigeria, The Gambia and Cameroon','','','d','','utme','2004',324,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(12,'Business environment refers to all elements that are  ','outside an organization but relevant to its operations ','inside an organization but irrelevant to its operations   ','internal to an organization and relevant to its operations','external to an organization but indirectly related to its  operations','','','d','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:02'),(13,'Consumer rights include the right to   ','credit','free samples of a product  ','redress','a share of profits','','','c','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(14,'One important requirement for the membership of the ECOWAS is ','integrity ','independence ','landmass   ','population','','','b','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:04'),(15,'In Nigeria, the body that ensures that its members operate according to their professional ethics is the   ','SON  ','NPF   ','MAN ','NAFDAC','','','a','','utme','2004',313,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(16,'A transporter who had to sell some perishable goods without the prior authority of the owner  becomes an agent by   ','conduct ','necessity','ratification  ','estoppel','','','b','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:06'),(17,'Poor sewage disposal, oil spill and indiscriminate refuse dumping all ','lead to  land pollution','water pollution   ','land and water pollution','air and water pollution','','','d','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(18,'One of the advantages of commercialization is that it','encourages entrepreneurship','increases the salaries of workers','motivates government to establish more  businesses   ','gives workers on-the-job training','','','a','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(19,'A common element in all contracts is    ','offer','  consideration   ','acceptance ','agreement','','','d','','utme','2004',324,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(20,'Sources of finance to a business include personal  savings, shares, debentures and ','loans from IMF   ','bank overdrafts ','central bank loans','money from political parties','','','b','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(21,'Charges for loans paid by commercial banks to the Central Bank of Nigeria are called   ','bank rates   ','credit charges   ','interest rates',' bank charges','','','a','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:12'),(22,'In the primary market, new shares are issued  through  ','personal selling, publicity and advertising  ','a prospectus, an offer for sale and a bill of exchange   ','advertising, a prospectus and a bill of exchange','a prospectus, an offer for sale and placing','','','b','','utme','2004',344,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(23,'The instruments of credit include ','billboards and postal stamps','payment vouchers and statement of account','bills of exchange and promissory notes','bills of exchange and salary vouchers','','','c','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(24,'The shares of a company listed on the stock exchange for sale are referred to as','registered shares  ','deferred shares ','issued shares       ','quoted shares','','','d','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(25,'What is the role of the capital market in the privatization exercise in Nigeria?    ','Selling the shares and stocks of the companies to be  privatized ','Encouraging private companies to  participate in the exercise ','Negotiating with individuals who want to buy public companies','Advertising for government','','','a','','utme','2004',319,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(26,'In international trade, documentary credit is also known as   ','credit note   ','letters of credit','bankers\\' draft       ','letter of hypothecation','','','b','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:18'),(27,'A specialized institution in Nigeria that deals in  capital investments in the form of stocks, shares, bonds and debentures is the ','Securities and Exchange Commission ','commodity market','Nigerian Stock Exchange ','Central Bank of Nigeria','','','a','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(28,'A group of assets which a business acquires with the intention of reselling them are referred to as','  current assets    ','investment assets','fixed assets    ','intangible assets','','','b','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(29,'Authorized share capital is also known as','called-up share capital    ','paid-up share capital ','registered share capital  ','issued share capital','','','c','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(30,'An action taken by a company outside its object clause is regarded as ','ultra vires    ','a trespass   ','uberrima fides    ','caveat emptor','','','a','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:22'),(31,'The strategy adopted by a firm that ceases to operate at one or more locations because of inactivity is  ','rejuvenation ','focus','diversification     ','consolidation','','','c','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(32,'A written partnership contract is known as','an invoice ',' a deed      ','a prospectus','a proposal','','','b','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(33,'The merger of a textile mill, a cement company and a tannery is referred to as ','  conglomerate merger ',' horizontal merger ','lateral merger',' vertical merger','','','d','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(34,'As the branches indicate, iv is','commerce','exchange ','finance      ','construction','','','d','','utme','2004',327,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(35,'What does v represent?','Aids to trade','Advertising  ','Manufacturing  ','Industry','','','a','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:27'),(36,'The most important function of commerce is','helping people to improve their profits','facilitating exchanges among individuals and firms ','assisting trade through banking and insurance   ','enhancing business relationships','','','b','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(37,'The acronym PLC is used to identify a ','company limited by shares ','private company limited by shares','public company limited by shares','company limited by guarantee','','','c','','utme','2004',309,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:29'),(38,'Commerce includes all the occupations concerned with ','sales  ','production','marketing    ','distribution ','','','d','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(39,'Factors of production can be described as the','resources required for the provision of goods and services   ','skills involved in deciding and directing the flow of goods  ','monetary tools employed by government to ensure stable production      ','elements involved in the process of formulating policies\\' on production ','','','a','','utme','2004',335,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(40,'Fluctuations in the supply of goods may be eliminated if the distribution system maintains','modern technology ','a team of retailers','warehouse services  ','sufficient middlemen','','','a','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:32'),(41,'Loan schemes by thrift societies are ','mortgage schemes   ','conventional schemes   ','mutual schemes     ','unconventional schemes ','','','c','','utme','2004',338,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(42,'An internal demand for goods to be purchased or drawn from stock is','a quotation','a requisition   ','a tender  ','an order','','','b','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(43,'The term 4 net 7 on an invoice means that','4% surcharge will be made unless payment is made within seven days   ','4% discount will be allowed on the price charged only if the goods are bought within seven days  ','4% discount will be allowed on the price charged if payment is made after seven days ','4% discount will be allowed on the price charged if payment is made within even days.','','','d','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(44,'An order sent by an importer to an overseas supplier stating the details of goods required is known as   ','A export invoice    ','ship\\'s manifest','an indent    ','bill of lading','','','c','','utme','2004',327,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(45,'Organizing trade fairs in Nigeria is the responsibility of   ','National Directorate of Employment  ','Federal Ministry of Commerce','trade associations   ','chambers of commerce ','','','d','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(46,'International fade takes place as a result of','uniformity in costs of production','inequitable distribution of natural resources','parity in the level of industrialization','similarities in climatic conditions.','','','b','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(47,'The use of vending machines in retailing is hindered in a developing economy owing to','poor distribution network   ','low level of education    ','ineffective communication system','lack of steady power supply.','','','d','','utme','2004',321,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(48,'Manufactures’ Association  of Nigeria contributes to development by advising the government on','industrial policy and harmony   ','budget and control ','budget and industrial policy','environmental protection policy ','','','a','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(49,'Discounts offered by firms to middlemen for bulk purchases are ','A   trade discounts','sales  bonanza    ','cash discounts ','seasonal','','','a','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(50,'Goods are  of merchantable  quality if they','conform to description  ','are of equal weight','are of the same quality ','conform to buyers\\' purpose','','','a','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-27 17:46:43'),(51,'A floating policy is an example of','marine insurance    ','actuaries insurance ','motor insurance    ','fire insurance.','','','b','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:42'),(52,'The most important benefit of insurance is that it Provides ','control over activities','the insured with a right to premium','the insured with a right to full compensation','protection against risks.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(53,'Which part of the computer system does the keyboard device belong to? ','Output unit ',' Logic unit ','Input unit ','Control unit.','','','c','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(54,'The Lake Chad Basin Commission was formed in ','1974','1984','1954','1964','','','d','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(55,'A major disadvantage of the privatisation policy is that ','the economy would be private-sector-led ','citizens would benefit less from government','more money would be brought into circulation','government would loss control of the economy.','','','d','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(56,'The most important right of the employee in discharging his duties to the employer is the right to ','regular emoluments  ','job security ','working facilities  ','annual leave. ','','','b','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:47'),(57,'The most dangerous pollution is','water ','noise pollution','soil pollution   ','air pollution.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(58,'The primary objective of consumer protection laws is to ensure that consumers derive maximum satisfaction from goods and services','consumers buy goods and services at cheap rates   ','manufacturers of goods and service providers overcome ','Internal competition','manufacturers of goods and service providers get optimum profit','','','a','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:49'),(59,'The compensation the insured gets depends heavily on the ','economic situation','premium paid ','risk suffered','insurer\\'s buoyancy','','','b','','utme','2005',142,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:50'),(60,'The computer that functions by taking discrete numbers and  performing mathematical calculations is called ','mainframe ','digital ','hybride','analogue.','','','c','','utme','2005',149,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:51'),(61,'Commercialization of government corporations brings about an increase in the level of','money supply in the economy','distrust among business operators','competition among business operators','social responsibility','','','c','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(62,'The difference between personal selling and sales promotion is that while sales promotion includes free gifts and samples, personal selling involves','distributing instructional posters','face-to-face communication with customers','premium programming for customers','publishing promotional booklets.','','','b','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:53'),(63,'The type of communication from a superior to a subordinate in an organization is referred to as','horizontal communication','lateral communication','downward communication','upward communication.','','','c','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:54'),(64,'A step-by-step method of carrying out functions in  an office is known as','procedure','organizing',' policy ','programme.','','','a','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:55'),(65,'The best means of sending unwritten messages simultaneously   to   many   branches   of  an organization within a country is the','television',' telephone   ','telegraph   ','radio.','','','c','','utme','2005',170,'Admin','0000-00-00 00:00:00','2020-07-24 09:05:30'),(66,'The   media    used   for   inter-departmental communication include.','circulars, advertisement and notice boards','memoranda, circulars and the telephone','memoranda, advertising and face-to-face','memoranda, advertising and the grapevine','','','b','','utme','2005',120,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:29'),(67,'An instrument that is traded in the second-tier foreign exchange market is','money order','stock ','travellers\\' cheque  ','debenture.','','','b','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(68,'The development of a container and a graphic design for a product is called ','packaging ','promotion','processing  ','production.','','','a','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:59'),(69,'A business firm that is involved in conveying goods or people is known as a ','consignor','commercial firm ','carrier','transporter','','','c','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(70,'The factors essential for tourism are','accessibility, capital, amenities and schools','goods weather, amenities, accessibility and scenery.','amenities, capital, accessibility and markets','good weather, capital, schools and scenery.','','','b','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:02'),(71,'In GIF contracts, risk passes at the time of shipment but the property does not pass until','there is physical transfer of goods','the shipping manifests are signed','the shipping documents are transferred','the goods on board are delivered.','','','b','','utme','2005',146,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:03'),(72,'A partnership is dissolved when','the business suffers a loss','there is bankruptcy','there is consistent theft','there is a misunderstanding between partners','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(73,'One of the disadvantages of sole proprietorship is','secrecy of annual reports','pride of ownership ','limited liability','unlimited liability.','','','d','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(74,'The most important concept in production is','utility ','wealth creation','transformation  ','distribution.','','','a','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:06'),(75,'An acquired firm in a merger will always receive a',' premium  ',' grant ','share ','discount','','','b','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:06'),(76,'Occupations are classified into','production, labour and economics','extraction, construction and manufacturing','industry, commerce and serves','trade, aids to trade and services.','','','c','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:07'),(77,'The Nigerian Telecommunications Limited is a','Jointly owned company ','public corporation ','privately owned company ','public company. ','','','b','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:08'),(78,'An engineer in government employ is to be rendering   ','primary service   ','tertiary service ','indirect service   ','direct service. ','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:09'),(79,'The availability of goods and services is brought to the notice of consumers through','personal selling  ','public relations','the telephone  ','advertising.','','','d','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:10'),(80,'The necessary documents used in foreign trade are ','bill of lading, invoice and letter of inquiry','indent, bill of exchange, bill of lading and invoice','invoice, shipping note, bill of lading and freight note   ','shipping note, certificate of origin and visible exports.','','','c','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:11'),(81,'A cheque drawn by a bank official on the bank\\'s deposits in another bank on a customer\\'s instructions is known as ','promissary note',' bankdraft   ','bankers\\' order  ',' travellers cheque.','','','c','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(82,'A type of credit offered by both commercial and merchant banks in Nigeria is ','trade credit','line of credit ','discounting facility ','overdraft.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:13'),(83,'A major function of a chamber of commerce is',' increasing productivity','promoting both home and foreign trade','promoting trade in a particular line',' maximizing profit.','','','b','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:14'),(84,'Which of the middlemen in the channel of distribution has title to the goods he distributes?','The merchant wholesaler ','The agent','the limited wholesaler ','The retailer','','','a','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:15'),(85,'Which of the following confirms the accuracy of the duty charged on imported goods?',' An indent ','Consular invoice',' Consignment note  ','Shipping note.','','','b','','utme','2005',137,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:16'),(86,'The association that comprises all types of businesses is referred to as',' chamber of commerce   ',' trust','trade association   ',' cartel.','','','a','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:30'),(87,'Wholesalers can be divided into',' sales agents and brokers   ',' full service wholesalers and merchant wholesalers',' cooperative wholesale society and limited service wholesalers ',' merchant wholesalers and agent middlemen.','','','b','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:31'),(88,'In Nigeria the ministry in charge of registering trade associations is that of ',' industries',' commerce ','culture and tourism ',' finance.','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:32'),(89,'Invisible imports consists of',' cement, shipping and consultancy services',' banking   drinks, insurance and technical services.   ','','tourism, banking, canned foods and cement.','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:33'),(90,'The bank that discounts bills of exchange is the ','central bank  ',' mortgage bank','development bank  ','commercial bank.','','','d','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:34'),(91,'The market where only indigenous firms are considered is the ','money market ',' second-tier securities market ',' local market ',' stock exchange.','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:35'),(92,'From which of the following sources can partnerships increase their capital?',' Admission of a new partner',' Sale of shares   ','Discharge of a mortgage','Grants from relations.','','','a','','utme','2005',139,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:36'),(93,'The excess of the assets over the liabilities of a business is called ','working capital','net worth ','capital employed ',' initial capital','','','a','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(94,'Initial public offering is undertaken through the','secondary securities market','first-tier securities market','primary securities market','second-tier securities market','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:52'),(95,'The major participants in the stock market when stock prices are rising generally are the','bulls ','registrars ','bears ','companies','','','a','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:53'),(96,'The fixed and current assets of a business are called ',' called-up capital    ','capital employed',' paid-up capital  ','authorized capital.','','','b','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:54'),(97,'To increase the supply of money in a country, the central bank has to ','reduce cash ratio',' sell securities in the open market',' call on special deposits ',' raise cash ratio.','','','a','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:55'),(98,'A good financial instrument which serves as a  hedge against inflation is ','a bond  ','a share',' an option ',' a warrant.','','','a','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:56'),(99,'One advantage of a crossed cheque is that it can','only be paid into a savings account','be cashed over the bank\\'s counter','only be paid into the owner\\'s account',' be cashed by anyone','','','c','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(100,'Given\\n    N\\n Sales    15 000\\n Opening stock  5 600\\n Purchases   9 700\\n Closing stock  4 400\\n Gross profit  4 500\\n Net profit   2 000\\nFrom the data above, calculate the rate of turnover \\n',' 3.50 times ','3.00 times ',' 2.00 times ',' 2.18 times.','','','d','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(101,'question','optiona','optionb','optionc','optiond','','image','answer','solution','utme','examye',61,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(102,'Tourism can be classified as ',' tangible import',' intangible import',' visible export ','invisible export','','','d','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:05'),(103,'The input, output and central processing units are the basic components of a computer\\'s','memory ',' printer ',' hardware ',' software','','','c','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:01'),(104,'An employer insures against his employees\\' dishonesty by taking up  ','fidelity guarantee insurance   ',' accident insurance   ','group life assurance  ','endowment policy.','','','a','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(105,'Payment made to the insured by the insurer outside its legal obligation is ','premium paid',' exgratia payment ','surrender value',' sum assured.','','','b','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:14'),(106,'An important social reason for development tourism in Nigeria is the  ','promotion of culture interaction   ',' provision of job opportunities','improvement of her balance of payments','encouragement of international relations.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:15'),(107,'The mode of transportation that conveys a limited variety of products through fixed laid routes is','waterways  ','Broad ','rail  ','pipeline.','','','d','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-27 22:19:32'),(108,'A computer that can be used in weather forecast is ','  a hybrid computer ',' an analog computer','a mainframe computer ',' a digital computer.','','','d','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:17'),(109,'The setting of objectives for an organization and determining how to accomplish them is ','social responsibility  ','planning  ','organizing',' decision-making.','','','b','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:18'),(110,'An aspect of marketing that stimulates buying by providing free gifts is ',' advertising  ',' personal selling ','publicity ',' sales promotion,','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:19'),(111,'The limit of functions, activities and personnel that a supervisor can effectively manage  in a business organization  is  ','spun of control ',' delegation of authority ','chain of command ',' authority and responsibility','','','a','','utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:20'),(112,'A seller attracts and retains patronage by',' enhancing public relations ',' enhancing sales promotion  ','  rendering pre-sales service',' rendering customer service.','','','d','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:21'),(113,'A bond which attracts only interest but leaves the capital unpaid is referred to as','a long-term loan','a development bond ',' a redeemable bond','  an irredeemable bond.','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:22'),(114,'A public company has 2 000 000 ordinary shares of 50k each and offers 50% for subscription at N2 per share. If the shares were fully subscribed, calculate the issued capital.','  N4 000 000     ',' N2 000 000','N1 000 000     ','  N500 000.','','','b','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:23'),(115,'The main requirement for admission to the second-tier securities market is the ','provision of a three-year trading record   ','disclosure of all trading activities   ',' creation of a good atmosphere for growth and development   ','guaranteeing of dividends to shareholders.','','','b','','utme','2006',113,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:24'),(116,'What is the capital employed?','N200 000','N340 000','N170 000','N300 000','','','d','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:25'),(117,'Which of the following is a development bank in Nigeria?','Union Bank Plc   ','First Bank Plc','First City Monument Bank ','Federal Mortgage Bank.','','','d','','utme','2006',110,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(118,'Trading on the stock exchange in anticipation of  price change in the market value of shares is','speculation  ','forecasting ','expectation','projection.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:26'),(119,'A financial institution which uses its capital strength to acquire controlling interests in other firms can be regarded as a','subsidiary company','holding company ','trust   ','cartel.','','','b','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:27'),(120,'A current account is beneficial to its holder as','cheques can be issued to anybody','customers cannot withdraw frequently','it is only the holder that can make withdrawals','it allows customers the use of passbooks.','','','a','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:28'),(121,'The conversion of raw materials into finished products creates ','form utility ','marginal utility','place utility ','time utility.','','','a','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(122,'The factor which critically determines the choice of occupation is ','training  ','skill ','interest','aptitude.','','','c','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:30'),(123,'Capital to a business is technically  ','an expense','a liability ','  an asset ','a profit.','','','c','','utme','2006',112,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:31'),(124,'I. Wholesaling  II. Fishing  III. Canning IV. Retailing  The sequence in which the occupational activities above are performed is','Ill, II, I and IV     ','Ill, I, IV and II','I, II, III and IV      ','II, III, I and IV.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:32'),(125,'The development of commerce resulted from','trading ','competition ','importation','specialization.','','','a','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:33'),(126,'The difference between a private and public limited liability company is that the former','is unable to offer shares to the public','is unable to declare and pay dividend','has a higher number of shareholders','pays higher salaries to its managers.','','','a','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:34'),(127,'Materials used for further production of goods and  services are known as ','export goods','intermediate goods ','capital goods','  consumer goods.','','','c','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(128,'A liquidator\\'s fee is to be charged to the','realization account  ','trading account','revaluation account ','reconstruction account.','','','a','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:36'),(129,'The safety and quality of products are the social responsibility of ','the Standards Organization of Nigeria  ','the Manufacturers Association of Nigeria','the Corporate Affairs Commission','business organizations.','','','a','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:37'),(130,'A   feature   common   to   privatization   and commercialization is  ','profit-making    ','credit sales ','market expansion ','price increases.','','','a','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:38'),(131,'A protection right which can be reviewed or renewed after seven years is known as ','patent','design ','registration name ','trade mark','','','a','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(132,'The headquarters of the Lake Chad Basin Commission is in ','Niamey ','N\\'Djamena','Abuja ','Lagos.','','','b','','utme','2006',95,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(133,'In Nigeria, the main source of pollution is','domestic waste   ','organic waste','gas flaring   ','industrial waste.','','','d','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:40'),(134,'‘Safeguarding the health of the nation\\' is the slogan used by ','NDLEA ','NHIS ','NAFDAC ','EPI.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:53'),(135,'When one person approves an act previously done by another in the former\\'s name without authority, this is known as   ','ratification ','estoppels','illegality ','misrepresentation.','','','b','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:54'),(136,'The members of ECOWAS include',' Nigeria, Chad, Gabon and Cape Verde','  Burkina Faso, Nigeria, Niger and Mauritania','Guinea, Mali, Cameroon and Nigeria','Togo, Niger, Nigeria and Ghana.','','','d','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:55'),(137,'The most important advantage of privatization is the enhancement of ','liquidity ','accountability','profitability  ','efficiency.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:55'),(138,'A trade association consists of members engaged in the same trade while a chamber of commerce is','highly regulated by a government agency','not restricted on a particular industry','made up of members that are registered',' made up of firms in the banking industry.','','','b','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:57'),(139,'Hire purchase is beneficial to the seller because',' it enhances his living standard ','it increases his turnover ','people pay instalmentally',' of the patronage he enjoys.','','','b','','utme','2006',116,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:31'),(140,'Consumerism aims at protecting the consumer from','harmful products  ','drug addiction','smoking cigarettes ','alcohol consumption. ','','','a','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:59'),(141,'The major types of warehouses are ','manufacturer, bonded, departmental and private  ','bonded, public, cold room and private','manufacturer, bonded, public and departmental','wholesaler, manufacturer, public and bonded.','','','d','','utme','2006',105,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(142,'The Customs and Excise Department is responsible for the collection of','royalties ','tariffs','taxes ','charges.','','','b','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:01'),(143,'A shop which consists of many stores trading under a single roof and which stocks varieties of gods with each unit having its own head is a ','multiple shop  ','supermarket ','superstore','departmental store.','','','d','','utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:03'),(144,'An objective of the farmers\\' association is to','ensure that the prices of goods are fair and reasonable  ','correct the imbalance between consumers and producers ','improve the methods of selling and advertising   ','provide a stable market outlet for farm inputs,','','','a','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(145,'The documents used in the purchase and sale of goods which contain other terms of trade are','debit note and credit note ','delivery note and advice not   ','invoice and order      ','quotation and invoice.','','','c','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:05'),(146,'In international trade, exchanging goods for other goods and services purchased instead of paying in foreign currency is known as ','countertrade','balance of trade ','balance of payments','terms of trade.','','','a','','utme','2006',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:07'),(147,'The role of a wholesaler in the channel of distribution is to    ','produce goods in large quantities and sell in small quantities ','buy goods directly from the manufacturers','buy good in large quantities and sell in small quantities','sell goods directly to the consumers ','','','c','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:08'),(148,'Foreign trade also involves ','providing services for other countries    ','specialisation and the exchange of goods in a country   ','buying and selling within a country ','the exchange of goods and services between firms. ','','','a','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(149,'Consumers require protection against exploitation to ensure ','adequate consumer awareness','availability of product variety','the sale of quality products','increased aggregate demand.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:10'),(150,'The business environment that takes into cognizance the age distribution, ethnic mix and educational level of the consumer is','demographic environment','economic environment','cultural environment','natural environment.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:11'),(151,'An agent who takes title to goods and has authority  to buy and sell on behalf of another is','a jobber   ','a broker  ','a factor','an auctioneer.','','','c','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:11'),(152,'Citizens are against privatisation mainly because of ','the rationalization of organizations','increased prices of goods and services','the likelihood of monopoly','ineffective management.','','','b','','utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:31'),(153,'The major achievement of ECOWAS is','the expansion of regional trade','the emergence of a monetary union','infrastructure! development in member countries','mobility of labour among member countries.','','','a','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:14'),(154,'An announcement of a person\\'s willingness to enter into a contract is referred to as ','a proxy','an offer ','a consideration ','an acceptance.','','','b','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:15'),(155,'The macro-environmental forces and trends which are a constraint on business operations are  referred to as  ','technological factors','economic factors   ','external factors ','internal factors.','','','c','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(156,'Which of the following best describes inputs for any production activity?   ','Natural resources.',' Business resources.','Human resources.','Material resources.','','','a','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:16'),(157,'Personal selling is most effective in marketing industrial goods because it involves','recognition and attachment to customers','personal interaction and information gathering','demonstrations and product acceptability','after-sales services and product demonstrations.','','','b','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(158,'The controllable variables that a firm uses to achieve its marketing objectives are called','marketing principles ','marketing mix','marketing concepts','marketing functions.','','','c','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(159,'Public relations and advertising are similar in terms of','communicating product information','customer education ','the mode of operation','creating a favourable attitude.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:19'),(160,'A major function of an entrepreneur is','decision-making ','encouraging competition','human-resource training','motivating employees.','','','a','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:20'),(161,'A Memorandum of Association is applicable to a',' sole trader ','joint-stock company',' partnership   ',' public corporation.','','','b','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:21'),(162,'The sustainable growth of commerce is largely due to ','marketing   ','advertising','exchange ','branding.','','','c','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(163,'A major advantage of a cooperative society is that it ','gives members the opportunity to unite','draws members closer to government','promotes awareness among members','encourages thrift among members.','','','d','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:23'),(164,'The making of doors from timber planks is a type of ','manufacturing ','tertiary production','secondary production   ','primary production.','','','c','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:24'),(165,'Law-making is an example of ','indirect service','commercial occupation ','direct service','industrial occupation.','','','c','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:25'),(166,'A document which advertises the shares of a company is known as a  ','memorandum of satisfaction   ','dividend warrant     ','deed','prospectus.','','','d','','utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:26'),(167,'The scope of economic activities can be enlarged by    ','transportation and trading   ','business and its promotion  ','trading and aids to trade','insurance and banking.','','','c','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:29'),(168,'The creation of utilities to satisfy human wants is referred to as   ','production  ','consumption','industrialization    ','occupation.','','','a','','utme','2007',63,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:28'),(169,'A major criticism of a cooperative society is','limited capital ','granting excessive loans to members   ','selling goods on credit to non- members    ','management incompetence.','','','d','','utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(170,'An economic activity which deals with natural resources is a form of  ','extraction','refining   ','construction ','manufacturing.','','','a','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(171,'The first stage in tourism planning is','assessing feedback from tourists','preparing a list of tourist attractions','creating recreational opportunities','building community support.','','','b','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(172,'An agreement by the insurer to compensate the insured for losses suffered is   ','policy','surrender value   ','caveat emptor ','indemnity.','','','d','','utme','2007',91,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(173,'One of the functions of the Nigeria Ports Authority is the provision of  ','facilities to enhance the speedy loading and offloading of ','facilities to ensure that goods get to their destinations  ','shelter for operators of cargoes',' courier services to ensure speedy delivery.','','','a','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:32'),(174,'The   World   Tourism   Organization   has   its headquarters in ','New York    ','Paris','Madrid     ','London.','','','a','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:33'),(175,'Digital computer is divided into ','analogue, hybrid and mini ','super, mainframe, mini and micro    ','mainframe, hybrid and micro','super, mainframe, micro and analogue.','','','a','','utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(176,'A distinctive advantage of GSM is its ','mobility',' cost   ','stability   ','coverage.','','','a','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:35'),(177,'In the permanent storage device, DASD means','Data Access Storage Device','Data Access Systems Device','Direct Access Systems Device','Direct Access Storage Device.','','','d','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:36'),(178,'The major determinant of fire insurance premium is the ','type and structure of the property to be insured ','usefulness of the property to the owner','owner of the property to be insured','extent of fire damage anticipated.','','','a','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(179,'The Internet is a system of telecommunications used for   ','communicating long-distance messages ','sending and receiving text messages','sending electronic messages .','communicating messages through telegrams.','','','c','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:38'),(180,'A written  agreement for  hiring  a  ship for transporting goods is a ','consular invoice','bill of lading ','charter party ','certificate of origin.','','','c','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:39'),(181,'The major function of a trade association is that it','liaises with foreign trade associations','helps to promote foreign trade','facilitates members\\' access to credit facilities','helps to promote research on behalf of members.','','','d','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:14'),(182,'A major setback of international trade is','inadequate exports','economic sanctions','devaluation of currency','exchange rate appreciation.','','','b','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(183,'Which of the following requires payment into the payee\\'s account?   ','Crossed cheque.','Traveller’s cheque.    ',' Open cheque.','Certified cheque.','','','a','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(184,'The traditional way of paying cooperative dividend is to distribute profit in proportion to members\\'','subscriptions  ','total savings','volume of purchases   ','contributions.','','','c','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:43'),(185,'The abbreviation C & F indicates that the','production cost excludes the cost of carriage','selling price includes the cost of carriage','cost of production includes delivery charges','cost price includes the cost of carriage.','','','b','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:44'),(186,'The sale of foreign investment and gold reserves can be used to ','correct adverse balance of trade','increase invisible imports','correct adverse balance of payments','correct a budget deficit.','','','a','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:45'),(187,'A share premium is an example of','issued capital ','capital stock ','equity capital','capital reserve.','','','d','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:46'),(188,'A major benefit a debtor can derive from using a credit facility is ','better service  ','goodwill','convenience    ','control.','','','c','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(189,'The function  of money that facilitates the comparison of the quality of goods as a basis of exchange is the   ','unit of account','measure of value ','store of value','medium of exchange','','','b','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:48'),(190,'The difference between the buying and selling price of shares is known as   ','brokerage','margin   ','jobber\\'s turn   ','gross profit.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:49'),(191,'Which of the following is a risk-free security?','Preference share.   ','Ordinary share.','Treasury bill.    ','Debenture.','','','c','','utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:05'),(192,'The central bank controls the quantity of money in circulation through  ','open-market operations','decreasing the tax rate ','issuing new currencies    ','increasing the tax rate.','','','d','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:51'),(193,'The selling of new shares to existing shareholders is referred to as ','public issue ','offer for sale','rights issue  ','bonus issue.','','','c','','utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:52'),(194,'A new company requiring a large amount of equity finance may source funds from the','capital market   ','central bank','money market    ','commercial banks.','','','d','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 01:36:39'),(195,'A credit instrument which also serves as a legal tender is   ','cheque    ','paper money','voucher   ','money order.','','','b','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:53'),(196,'The body regulating the sale and purchase of shares in Nigeria is the ',' Corporate   Affairs Commission   ','Securities   and   Exchange Commission    ','Securities   and   Exchange Tribunal     ','Nigerian Stock Exchange.','','','b','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:54'),(197,'An aspect of commerce that facilitates the distribution of products is ','transportation ','advertising  ','branding ','trading ','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:55'),(198,'An activity that involves derivation of raw materials from land and sea is ','construction ','farming ','agriculture ','extraction ','','','d','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:56'),(199,'The art of soap-making is an example of ','Primary occupation ','Secondary occupation ','Tertiary occupation ','Construction occupation ','','','b','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:57'),(200,'Given: I. shoe marker    II. Policeman     III. Fisherman    IV. Gardener    V. Broker .    The persons engaged in primary occupation are \\n','I, III and IV ','III and IV','III and V','I , II and V','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:58'),(201,'The process of changing the form of a raw material is known as  ','fabrication ','extraction ','conversion ','production ','','','d','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(202,'In the long run, all factors of production are ','fixed ','variable ','marginal ','constant ','','','b','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:00'),(203,'The quality and quantity of production mostly depend  on the ','effectiveness of factors ','availability of factors','level of education of entrepreneurs ','level of cooperation among workers','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:01'),(204,'The promotion of savings culture is a feature of a ','trade association ','consumers  cooperative society ','thrift cooperative society ','business association ','','','c','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:02'),(205,'A document which gives a legal status to a company is the certificate of ','incorporation ','trading ','commencement of business','business registration','','','a','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:03'),(206,'A proposed company may not be registered if ','the name conflicts with that of another ','it does not put ‘limited’ after its proposed name ','it has no paid-up capital ','it has no asset of its own.','','','a','','utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:05'),(207,'An example of a cartel is ','OPEC','ECOWAS ','AU ','EU','','','a','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-23 16:35:16'),(208,'The cheapest source of funds available to a company is through ','the sale of shares','retained profits ','the sale of bonds','lease financing','','','b','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:06'),(209,'The components of capital employed in a business are ','owners’ equity and long-term debts ','total assets and current liabilities ','share capital and long-term debts','share capital and current liabilities.','','','b','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:07'),(210,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. What is the company’s authorized share capital?','N2500 000','N4000 0000','N5000 000','N7500 000','','','a','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:08'),(211,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. Determine the company’s reserve share capital ','N2500 000','N1000 000','N1500 000','N2000 000','','','b','','utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(212,'In order to prevent liquidity problems in commercial banks, the central bank uses.','moral suasion  ','fiscal policy','reserve ratio','taxation ','','','c','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:10'),(213,'An account maintained with a commercial bank for the purpose of foreign exchange transaction is the ','foreign account ','International account ','domiciliary account ','foreign reserves account ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:11'),(214,'A trader who gives credit stands to enjoy ','higher profit ','cash discount ','increased sales ','trade discount','','','c','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:12'),(215,'A person who buys new issues with a view of reselling at a higher price in the near future is referred to as a ','bull ','bear ','dealer ','stage','','','a','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(216,'A source of capital that has both elements of debt and equity is a ','debenture ','warrant ','loan ','share','','','d','','utme','2008',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:14'),(217,'A type of retail trade where a group of similar states which is owned by a firm operates in different locations is a ','conglomerate ','chain store','departmental store ','supermarket ','','','b','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:15'),(218,'A warehouse which is used to store goods whose customs duty is not yet paid is a ','wholesale warehouse','bonded warehouse','public warehouse','branded warehouse','','','b','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:16'),(219,'Balance of payments is made up of ','visible  and current  items ','invisible and capital items ','current and capital items','visible and invisible items','','','d','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:17'),(220,'Most of the barriers to international trade have been eliminated through ','diversification ','globalization ','commercialization ','privatization ','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:18'),(221,'A document sent by a seller to inform a buyer about the prices of goods is the ','catalogue ','price list','credit note','proforma invoice ','','','b','','utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:19'),(222,'Which ‘FOB’ is written on a document, it implies that the buyer bears the ','cost of goods and advert ','loading cost and insurance ','insurance and transport costs','transport and communication costs','','','c','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:20'),(223,'A crossed cheque with the inscription ‘not negotiable’ must be paid into the ','current account of the drawer ','current account of the payee of the drawer ','savings account of the payee','fixed account of the payee','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:21'),(224,'The pooling of business information for the benefit of members is a major function of a ','pressure group ','trade association ','cultural group ','trade union ','','','b','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:22'),(225,'An association to which all chambers of commerce in Nigeria are affiliated is the ','Nigeria Labour Congress ','National Association of Chambers of Commerce, Industry, Mines and Agriculture','Nigeria Association of Chambers of Commerce, Industry, Mines and Agriculture ','Nigeria Stock Exchange ','','','c','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(226,'The resources which are necessary for business development include ','manufacturing, materials, mentors and money ','merchant, materials, mentors and money','man, money, materials and machines','machines, manufacturing, money and materials','','','c','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(227,'The four Ps of marketing are','product, place, process and promotion ','price, product, property and place','price, product, place and promotion ','price, production, place and property ','','','c','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:25'),(228,'Personal selling is used for the purpose of ','establishing the company ','providing information ','creating product awareness','launchers ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:26'),(229,'Ships used for international transport are ','trawlers ','yachts','ocean liners ','launchers ','','','c','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:27'),(230,'A function generally performed by authorities of both the air and seaports is the ','maintenance of warehouses where goods can be stored','provision of facilities for loading and unloading  of cargoes ','maintenance of security and order at the ports.','provision of facilities for landing and refueling at the ports.','','','d','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:28'),(231,'A major factor hindering effective communication process is ','climatic condition ','social unrest ','distance ','noise ','','','d','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:29'),(232,'The fear of many communities concerning tourism development is the ','influence of foreign culture ','fear of disease transmission ','fear of pollution ','religious intolerance ','','','a','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:30'),(233,'The development of tourism in Nigeria  will enhance ','agriculture ','revenue generation ','export ','labour mobility ','','','b','','utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(234,'A historical building is a feature of ','cultural tourism ','industrial tourism ','agricultural  tourism','D. ecological   tourism','','','a','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:31'),(235,'The sum of money paid by a policy-holder to an insurer is referred to as ','interest ','premium ','gross profit ','sales revenue','','','b','','utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:32'),(236,'An example of a non-insurable risk is ','burglary ','speculation ','fire ','accident ','','','b','','utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:33'),(237,'The coordinating section of the central processing unit that manages the flow of data is the ','arithmetic logic unit','control unit','magnetic unit','register','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:34'),(238,'An agreement between two parties which is enforceable by law is a ','promise ','warranty ','contract ','condition ','','','c','','utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:35'),(239,'The implied provisions in every sale of goods as contained in the ales of Goods Act of 1893 are conditions and ','consideration ','sureties ','warranties ','guaranties ','','','c','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:36'),(240,'When an employee incurs expenses while executing his normal duty, the employer is responsible for his ','safety ','family’s security ','family’s welfare ','indemnification ','','','d','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:37'),(241,'The body charged with divesting government interests in public enterprises is ','SON','NPC','BPE ','NDE','','','c','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:38'),(242,'The practice whereby government relinquishes its ownership interest in a public enterprises is ','commercialization ','indigenization ','privatization ','nationalization ','','','c','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:39'),(243,'A factor is a business environment which increases the rate of product obsolescence is ','technology ','political','legal ','economic','','','a','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:40'),(244,'Which of the following is a form of social responsibility of a business? ','selling goods  at cheaper prices ','using the best technology available ','maintaining  tidy and safe environment ','Meeting contractor’s obligation ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:41'),(245,'A computer component that decodes and interprets instructions and also directs program implementation  is ','memory unit','Central processing unit ','control unit ','system unit','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:42'),(246,'Which software program can be used to generate ','MS Word ','Database ','MS Excel','Adobe','','','c','','utme','2008',68,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(247,'The central focus of commercial activities is ','pricing   ','advertising ','trading ','marketing ','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:44'),(248,'An aid to trade associated with communications is ','banking ','transportation','warehousing ','insurance ','','','b','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:45'),(249,'The services of a textile worker are an example of ','extractive activity ','commercial activity ','manufacturing ','construction ','','','c','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:46'),(250,'Resources harnessed in certain proportion to create goods and services are ','factors of production ','technology and labour ','land and entrepreneur ','raw materials ','','','a','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:47'),(251,'Primary production is associated with ','banking ','manufacturing ','agriculture ','construction ','','','c','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:29'),(252,'The major components of modern retailing include ','branding, doorstep  selling and customer stimulation ','branding, sales promotion and mail order ','chain stores, customer stimulation and doorstep selling ','branding, supermarkets and after-sales service','','','d','','utme','2009',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:56'),(253,'A chain store usually combines the features of ','multiple shops and departmental stores ','hypermarkets and stalls ','multiple shops and hypermarkets','mail order business and multiple shops','','','a','','utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(254,'One of the functions of the wholesalers is to ','forecast prices','reduce prices of goods','political unrest ','analyse sales periodically ','','','c','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(255,'An artificial barrier to international trade is ','political unrest  ','culture of the people','unit of measurement ','custom duties','','','d','','utme','2009',67,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(256,'The most commonly used commercial documents are ','order notes, debit notes, invoices and quotations ','letters of enquiry, consignment notes, receipts and invoices ','credit notes, statement of accounts, dispatch order and bills ','balance sheet, receipts, invoices and manifests.','','','b','','utme','2009',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:00'),(257,'The term free on board means that the price includes ','costs and insurance only ','costs and freight only','freight and insurance only','costs, insurance and freight ','','','d','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(258,'If a buyer is given 12.5% discount on N50000 worth of goods, how much will he pay?','N56 250','N43 750','N43 250','N6250','','','b','','utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:02'),(259,'A cheque which a bank draws on its own funds is a','bankdraft ','cashier’s cheque ','bank cheque ','crossed cheque','','','a','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(260,'Billboards and posters are forms of ','electronic media ','print media','outdoor media ','window display media','','','c','','utme','2009',71,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(261,'A collective term for advertising, personal selling and publicity is ','exhibition ','promotion ','trade fair ','mechanizing','','','a','','utme','2009',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:05'),(262,'The central bank differs from commercial banks  because it ','renders service to customers','carriers but foreign exchange transactions ','issues currencies ','discounts bills','','','c','','utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(263,'One of he facilities enjoyed by a current account holder is ','a dividend  ','a bonus','an overdraft ','interest on deposits','','','c','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:07'),(264,'In which of the following will be number of words used determine the cost of the message sent?','telephone','telegram ','e-mail','telex','','','b','','utme','2009',58,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(265,'The transmission of telephone services from one country to another is facilitated by ','communication satellite ','international facility ','interconnectivity ','internet services','','','a','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:09'),(266,'The principle of insurance which entitles an insurance company to take any advantage due to the insured after full indemnity is ','contribution  ','subrogation ','proximate cause ','utmost good faith ','','','b','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:10'),(267,'A risk that can be estimated and calculated to be compensated is ','a delivery risk ','an insurable risk','a credit risk ','a systematic risk ','','','b','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(268,'The most important reason for the existence of insurance business is to ','prevent the occurrence of any loss','spread losses to all covered participants','provide for the replacement of facilities','encourage individuals to save','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(269,'One major advantage of transportation to a business is to','extend the firm’s market coverage','ensure that goods are produced faster','procure raw materials cheaply ','ensure the quality of products','','','a','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:12'),(270,'Warehousing is important to manufacturers because it helps to ','improve the quality of goods ','produce goods in advance','meet the demand of customers ','determine input requirements','','','b','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(271,'One of the major problems of a sole proprietor is sourcing for ','raw materials ','labour ','machineries ','funds','','','d','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(272,'In a public limited liability company, planning is carried out by ','the chairman of the board ','the board of directors ','shareholders','employees','','','b','','utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:15'),(273,'Partnerships are most effective where ','the partners are family friends ','professionals are involved','members can easily raise enough capital ','government regulations are favourable ','','','b','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(274,'The type of partnership in which all partners are jointly liable in bearing risk is ','limited partnership ','partnership-at will','ordinary partnership ','industrial partnership ','','','c','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:17'),(275,'The financial instrument that entitles the holder to receive dividend and capital gains is a ','share  ','bond ','bill of exchange ','treasury bill ','','','a','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:18'),(276,'The circulating capital of a business enterprise is classified into ','cash, work-in progress and debtors ','cash, vehicles, land and buildings ','debtors, stock of raw materials and fittings ','pre-payments, debtors and equipment.','','','a','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(277,'If a firm has a turnover of N50 000 and the cost of goods sold is N40 000, what is the percentage of gross profit on sale? ','30.50%','20.50%','20.00%','D.10.0%','','','c','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:20'),(278,'A body established to protect the interest of members against the exploitation of retail traders and manufacturers is the ','wholesalers association ','consumer’s  association ','government agency ','workers’ union ','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:21'),(279,'The manufactures’ Association of Nigeria is an example of a ','labour union ','pressure group ','conglomerate ','cartel','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:22'),(280,'The characteristic which ensures that money is free from forgery is its ','legality ','durability ','recognition ','credibility ','','','b','','utme','2009',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:23'),(281,'The major dealers on the stock market are the ','agents ','jobbers ','investors ','brokers','','','d','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(282,'The daily official publications of the Nigerian Stock Exchange give detailed information on the ','changes in the official rules set by the market ','method of transactions agreed upon by members ','participation of members in a day ','changes in the price of securities','','','c','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:25'),(283,'The function which ensures that set objectives are attained by an organization is ','planning ','directing ','staffing ','controlling ','','','d','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:26'),(284,'An organizational structure that is military in nature is the ','line structure ','staff structure ','line and staff structure ','functional structure ','','','d','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(285,'The efficiency of an organization is enhanced by ','government assistance ','the host community ','customer support ','skilled manpower ','','','d','','utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:35'),(286,'The concept which focuses on consumers in decision-making is ','selling concept ','marketing concept ','product concept ','production concept ','','','b','','utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:38'),(287,'Market skimming is an example of ','market penetration ','Sales promotion ','pricing policy','advertising ','','','a','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:38'),(288,'The most important attributes in a sale of goods contract are ','offer and consideration','price and goods ','offer and acceptance ','demand and supply','','','c','','utme','2009',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:40'),(289,'Unresolved disputes between the employer and employees are usually referred to the ','code of conduct bureau','personnel unit ','disciplinary committee','industrial arbitration tribunal ','','','d','','utme','2009',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:41'),(290,'The process of eliminating a virus from a computer program is ','programming ','debugging ','formatting ','looping','','','c','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(291,'The primary memory component of a computer is the ','cache ','console ','assemblers','compilers ','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:43'),(292,'A customer with XYZ Plc sent money through his account to his sister’s  account in another branch. This is an example of ','e-business','e –commerce ','e-finance ','D e-banking ','','','d','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:44'),(293,'The economic environment of a business is concerned with ','climatic conditions','changing values ','the growth rate','the interest rate','','','c','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:45'),(294,'A firm that disposes its wastes properly is discharging its ','community responsibility ','environmental responsibility ','civic responsibility ','social responsibility ','','','b','','utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:46'),(295,'The wealth of a nation depend on the volume of its','bilateral trade activities','commercial activities','multilateral trade activities','stock market','','','b','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(296,'Which of the following can be used to differentiate skilled and unskilled lab our? ','education and training','available resources ','level of commitment','salaries and wages','','','a','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(297,'A doctor who attends to patients at home after his official duty is','A community development worker','a direct service worker','an indirect service worker ','a direct and an indirect worker','','','b','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:49'),(298,'Manufacturing and construction activities are class8ified under','Primary production','Tertiary production','secondary production','direct production','','','c','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(299,'The reward of rent, wages, interest and profits accrue from','capitals, labour, land, and entrepreneur respectively','land entrepreneur, labour and capital respectively','land, labour, capital, and entrepreneur respectively','labour, entrepreneur, land and capital respectively.','','','c','','utme','2010',93,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(300,'The factor of production that is subject to depreciation is','capital ','land','labour','entrepreneur','','','a','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(301,'Division of labour ultimately leads to ','conservation','integration','specialization','repetition','','','c','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(302,'A worker who process rice is engaged in','constructive activity','commercial activity','extractive activity','Manufacturing activity','','','d','','utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(303,'After- sales service is a function usually rendered by','a retailer','a wholesaler ','an agent ','an entrepreneur ','','','a','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(304,'A trend is retailing which enables consumers to have free access to different products is ','after sales service ','branding ','self-service','vending machine','','','c','','utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(305,'The activity which entails buying of goods in bulk and selling in small quantities to retailers is ','assembling ','wholesaling ','retailing ','merchandising ','','','b','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(306,'The comparison of a country’s visible and invisible exports and imports expressed in monetary term is ','balance of payment ','terms of trade','balance of trade','terms of payment ','','','c','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(307,'The document that gives an importer a freehand to obtain goods from any manufacturer is ','a consular invoice ','a closed indent ','an open indent ','a freight note','','','c','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(308,'Entrepot trade usually occurs in ','exchanging goods within a nation ','exchanging goods among countries ','importing goods among countries ','exporting goods to be re-exported ','','','c','','utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(309,'The document issued to a port authority when goods are deposited is a ','dock landing account ','bill of sight ','bill of lading ','dock warrant ','','','d','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(310,'The details of the goods required by the purchaser is outlined in ','a consular invoice ','an indent ','an invoice ','a certificate of origin ','','','c','','utme','2010',85,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(311,'Selling goods in foreign countries at prices below their marginal cost is ','dumping ','depreciation ','devaluation ','discounting ','','','a','','utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(312,'A process of creating more market for a product is through ','consumerism ','marketing ','advertising ','repositioning.','','','c','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(313,'One of the merits of television as a medium of advertising is that it ','is prone to censorship ','is relatively cheap ','has more sensory stimulation ','has more network coverage','','','c','','utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:15'),(314,'The best mode of ensuring that items posted get to the named addressed is through','recorded delivery ','registered mail','certificate of posting ','express mail','','','b','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(315,'A businessman who undertakes the hull insurance policy is aiming at ','covering losses on damages to the cargo ','protecting injured crew in the ship ','averting payment of the freight ','covering damages to the body of the ship ','','','a','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(316,'An agent who brings a customer into business contact with his principal is known as ','a del credere agent ','an auctioneer','a factor','a broker','','','d','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(317,'A major hindrance to tourism growth in Nigeria is ','absence of genuine tour operators ','lack of tourism master plan ','inadequate tourist centres','non-compliance to immigration laws.','','','b','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(318,'The warehouse that is owned and controlled by the government is a ','wholesalers’ warehouse ','public warehouse ','state warehouse','manufacturers’ warehouse','','','b','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(319,'One of the main features of a partnership is ','limited liability ','lack of corporate existence ','unlimited membership ','lack of mutual confidence','','','b','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(320,'An arrangement by independent firms to share the market of their products on quota basis is referred to as  ','trust ','integration ','syndicate ','cartel','','','d','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(321,'An illegal arrangement by manufacturers to control the price or condition of sale of a product is ','ring ','factoring ','consortium ','merger','','','c','','utme','2010',114,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(322,'A public company with an authorized capital of N60,000, issued 36,000 shraes at 150k each. What is its capital?','N60,000','N36,000','N54,000','N90,000','','','c','','utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(323,'One of the functions of NACCIMA is ','negotiating with labour unions in matters of wages and conditions of service','pooling of members’ resources for long-term investment ','disseminating information to members on matters relating to tariffs ','ensuring uniformity in labour matters and industrial relations.','','','d','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(324,'A characteristic of money which ensures that its value is not lost is ','homogeneity ','easy portability ','divisibility ','relative scarcity ','','','d','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(325,'The instrument used in the capital market is ','treasury bill ','bill of exchange ','stock ','debenture ','','','c','','utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(326,'A pre-requisite for admission into the second-tier securities Market is for a company to ','make 20% of its equity share available to he public for subscription ','have a minimum of 100 shareholders ','have a maximum of 100 shareholders ','make 10% of its equity share available to the public for subscription','','','d','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(327,'The tree components of staffing are ','recruitment, interview and appointment ','recruitment, test and placement ','recruitment, selection and appointment ','recruitment, selection and placement ','','','d','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(328,'Which of the following is a matter of personal preference on the part of a superior officer?','Unity of command ','span of control ','delegation of authority ','unity of direction','','','c','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(329,'The conversion of raw materials into finished goods leads to the creation of ','form utility ','product utility ','possession utility ','place utility ','','','a','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(330,'The main concern of marketing concept is to ','reduce the number of retail outlets ','identify consumer needs and satisfy them ','increase sales to meet consumer needs ','encourage division of labour.','','','b','','utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(331,'The best pricing strategy for a company that produces warm clothing is ','target return pricing ','bid pricing ','variable pricing ','product line pricing ','','','d','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:53:51'),(332,'The deliberate and sustained efforts of an organization towards the creation of goodwill for its products and services is through ','Public relations ','advertising ','sales promotion ','rebranding ','','','a','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(333,'The label on a product such as ‘pampers’ is a type of ','trademark  ','branding ','packaging ','patent right','','','a','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(334,'An opportunity to reject a binding contract at will by a third party is said to be a ','valid contract ','quasi contract ','voidable contract','conditional  contract','','','c','','utme','2010',116,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(335,'An agency contract must involve ','a principal and a consumer','a principal  and a producer ','a principal and a third party ','a principal and a third party ','','','d','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(336,'The difference between trademark and patent right is that the latter ','gives exclusive right to import a particular good ','is conferred by the government ','confers monopoly  on a product ','confers exclusive right to publish literary works.','','','c','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(337,'Which of the following is a function of consumerism? ','Protecting consumers’ rights ','providing consumers’ choice','providing consumers’ needs','Making profiteering impossible','','','a','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(338,'A printed copy of processed information from the computer is the ','soft copy ','file copy ','scanned copy ','hard copy ','','','d','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(339,'The central working system of a computer used for data processing is the ','memory unit ','monitor ','floppy disk drive ','hard drive','','','b','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 22:03:27'),(340,'The major problem confronting Cyber Café operators is ','Advanced fee fraud by clientele ','poor network coverage ','high operating costs ','copyright violations by clients','','','c','','utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(341,'A device that enables the downloading of information from the internet is the ','floppy drive ','compact disk ','modem ','blue tooth ','','','c','','utme','2010',108,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(342,'In e-baking, ATM means ','authentic Teller Machine','Automatic Teller Machine ','All-purpose Teller Machine','Automated Teller Machine','','','d','','utme','2010',105,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(343,'One way by which a business can discharge its social responsibility to its community is to ','hold monthly meetings of its customers','build houses for its executives ','award scholarship to staff children ','build public health centres.','','','d','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-07-26 07:43:07'),(344,'The most important function of commerce is in ','enhancing business relationships ','helping people to improve their profits ','facilitating exchange among individuals and firms','assisting trade through banking and insurance','','','c','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:11'),(345,'The three main classifications of occupation are ','construction, trade and services ','manufacturing, industry and services ','farming, banking and trading  ','industry, commerce and services','','','d','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:12'),(346,'An oil exploration company is engaged in ','tertiary production ','constructive occupation ','extractive occupation ','secondary production','','','c','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(347,'Services rendered to the public is provided by ','Government ','civil servants ','professionals ','domestic servants ','','','b','','utme','2011',111,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(348,'The creation of goods and services to satisfy human wants is referred to as ','manufacturing ','commercialization ','Production ','entrepreneurship ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:21'),(349,'Which of the following is a limitation  of division of labour? ','decline in craftsmanship ','monotony of work ','reduction in output','reduction in labour force','','','d','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:38'),(350,'Resources obtained from the extractive sector that are transformed into finished products are examples of ','primary production ','tertiary production ','direct production ','secondary production.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(351,'An individual that links the producer with the retailer is ','an agent ','a wholesaler ','an entrepreneur ','a principal ','','','b','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:24'),(352,'One of the functions of a retailer is the ','financing of production activities ','provision of credit facilities to relations ','provision of jobs for customers ','breaking of bulk','','','b','','utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:25'),(353,'The main aim of selling directly to the consumers by manufacturers is to ','reduce transportation cost','make contact with individual consumers ','discourage the activities of middlemen ','maximize profit margin','','','c','','utme','2011',118,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(354,'Balance of payment problems arise if a country’s ','exports is more than imports','imports is more than exports','currently is devaluated','Invisible exports is more than visible exports ','','','b','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:27'),(355,'The three components of a country’s balance of payment are ','Current account, capital account and monetary movement account ','capital account, trade account and business record ','sales account, profit and loss account and capital account ','monetary movement account, trade account and ales ledger.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:28'),(356,'A document that indicates obligation that is transferable by delivery and endorsement is a ','bill of lading ','bill of exchange ','documentary evidence ','negotiable instrument ','','','a','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:29'),(357,'The document which can be exchanged for a bill of lading is ','freight note ','mate receipt ','export invoice ','ship report','','','a','','utme','2011',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:30'),(358,'The price quoted which includes the cost of insurance, freight and all delivery charges to the importer’s warehouse is ','Free Alongside Ship','Franco ','Free on Board ','Free on Rail','','','c','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:31'),(359,'The purchase of goods under the CWO system of payment implies that ','money must be enclosed when ordering ','payment must be made on delivery ','payment must be made on the spot.','cash must be paid on the spot ','','','b','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(360,'The most effective but limited medium of advertising in Nigeria is ','billboard ','television ','newspaper ','radio ','','','a','','utme','2011',115,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(361,'A cheque that has been drawn but not presented for payment can still be honoured ','within 6 months ','after 9 months ','within 9 months ','after 6 months','','','a','','utme','2011',117,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:34'),(362,'The major source of income to commercial banks is ','loans ','deposits ','interests ','overdrafts ','','','b','','utme','2011',113,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(363,'An ancillary to trade that easily links suppliers with consumers is ','tourism  ','banking ','communication ','transportation','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:36'),(364,'Mr. Lawal insured his warehouse against burglary but it was later gutted buy fire. This implies that ','the loss should be borne by the insurer ','Mr. Lawal is liable  only for half of the estimated loss ','the insurer should make a consolation payment for the loss','the loss should be borne by Mr. Lawal','','','d','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:37'),(365,'The agreement of insurers to spread risks  among themselves is a major feature of ','reinsurance','life assurance ','underwriter','marine insurance ','','','a','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:38'),(366,'Inbound tourism occurs when ','non-residents of a country travel to other countries ','residents of a country travel to other countries ','non-residents of a country travel countries ','residents of a country travel within it','','','d','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:39'),(367,'One of the major disadvantages of pipeline transportation is its ','high cost of construction ','limitation in scope ','vulnerability to climatic changes ','high maintenance cost ','','','a','','utme','2011',105,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:40'),(368,'The business organization that can effectively combine management with control is ','private limited liability company ','sole proprietorship ','public limited liability company ','co-operative society ','','','b','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(369,'When two or more companies agree to execute a project too large for one to handle, this is referred to as ','an amalgamation ','a cartel ','a merger ','a consortium ','','','d','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:42'),(370,'In the event of voluntary liquidation, the appointment of a liquidator is the responsibility of the ','directors ','creditors ','promoters ','court ','','','a','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:43'),(371,'A source of business financing which involves pledging of a specific asset is ','bond ','mortgage ','debentures ','loan','','','b','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:44'),(372,'An example of a trade association is ','ALGON','NLC','NURTW','NULGE','','','a','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:17'),(373,'A broker is an agent who links a potential investor with ','a shareholder who wants to register a company ','Other members of the exchange who want to trade ','government official on the exchange ','a quoted company ','','','d','','utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:56'),(374,'Second-tier securities Market differs from the first-tier securities Market in that the former is ','Highly restricted ','regulated by the SEC','regulated by the NIPC','Less restricted ','','','a','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:56'),(375,'A communication process providing information for decision-making in an organization is the ','Management Information System','Transmission Control Protocol ','Information Retrieval System ','File Transfer Protocol.','','','c','','utme','2011',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:57'),(376,'The managerial ability of a supervisor in an organization may be underutilized if the ','morale of the supervised is high ','span of control is wide','span of control is narrow','morale of the supervised is low','','','c','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(377,'The arrangement and interrelationship of the various components and positions of a business is referred to as ','organizational structure ','clarity of objective ','unity of direction ','line structure','','','a','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:06'),(378,'The variety of goods and services which a company offers for sale is its ','place mix ','promotion mix ','price mix','product mix','','','d','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:07'),(379,'Activities undertaken to create awareness for goods by conducting contests is ','marketing concept ','consumerism ','sales promotion ','marketing mix','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:08'),(380,'The slogan, a wonderful world,  used by a communication network is a form of ','product differentiation ','persuasive advertising ','publicity ','packaging ','','','b','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:09'),(381,'To make a simple contract valid, the intention must be ','legal and written ','legal and binding ','legal and attractive ','legal and harmonious ','','','b','','utme','2011',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:10'),(382,'The major parties to an agency relationship are the ','principal and the creditor ','bailee and the bailor','principal and the agent','shareholder and the creditor ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:11'),(383,'One of the obligations of an employer to an employee is to ','Indemnify  him against liabilities incurred on duty ','award scholarship to his children ','terminate his appointment  without prior notice','indemnify him against injuries caused through negligence ','','','a','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:12'),(384,'The body charged with the responsibility of regulating foods and drugs in Nigeria is the ','SON','NDLEA','NAFDAC','CAC','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:13'),(385,'The physical components of a computer system refers to the ','system unit ','hardware ','software ','compact disk ','','','b','','utme','2011',105,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(386,'An example of a computer operating system is ','the pagemaker ','the Word Perfect ','Microsoft Word 2000','Windows 2000','','','d','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(387,'Intranet differs from extranet in that the former ','requires a modem before it could be used ','can generally be accessed by the public ','is restricted to employees of an organization ','requires internet protocols','','','c','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(388,'A software application which enables a user to display and interact with texts, images and videos is the ','web server','internet Protocol','coreldraw ','web browser ','','','c','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(389,'A predominant mark-up language for web pages is ','IP','HTTP','HTML','TCP','','','c','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:19'),(390,'The symbol @ in an internet mail address is used  to  ','separate the user name from the machine name ','link the user with other internet users ','locate the addresses of internet  uses ','link the user with the machine.','','','c','','utme','2011',118,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:20'),(391,'A business organization is said to be socially responsible when it ','gets involve in issues relating to the society ','rewards its staff for long-term service','offers discounts to customers','invites the public to its annual general  meetings.','','','a','','utme','2011',119,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:21'),(392,'One of the major benefits of commerce to government is to ','improve the standard of living ','generate revenue for growth and development ','encourage cooperation among public organizations ','encourage the development of socio-cultural values','','','b','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:22'),(393,'An example of an activity in the construction industry is ','blacksmithing  ','bricklaying ','car assembling ','shoemaking ','','','c','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:23'),(394,'One of the inputs in production that can be motivated by remuneration is ','capital ','entrepreneur ','labour ','land ','','','c','','utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:24'),(395,'The allocation of tasks to different skills in a production process is referred to as ','production technique ','production function ','division of labour','delegation of responsibility ','','','c','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:25'),(396,'The sales of goods through a medium that accepts money and deliver the items to the customer is ','an automated teller machine ','a vending machine','a counting machine','a branding machine','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:26'),(397,'The main purpose of branding is to ','create identity for a product ','make a product look attractive ','create product awareness ','increase sales volume ','','','a','','utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(398,'The basis for international trade is embedded in the principle of ','absolute advantage ','globalization ','deregulation','comparative advantage ','','','d','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:04'),(399,'The major problem encountered in international trade is that of  ','distance ','differences in culture ','politics ','differences in currency ','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:29'),(400,'The document a seller uses in dispatching goods to a customer by a carrier is ','a bill of lading ','an invoice ','an advice note','a delivery note','','','d','','utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:30'),(401,'A document which serves as an order with details of goods required by an intending purchaser is   ','a freight note ','an indent ','a bill of lading ','a waybill','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:31'),(402,'If a customer pays within nine days of receiving goods and takes advantage of 3% off the invoice price, this is stated as ','3/9; net 3. ','9/27; net 30','30; net 9/3','9/30; net 3.','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:32'),(403,'Which of the following is a characteristic of a bearer cheque? ','it is made with transverse lines ','it is made payable to whoever presents it','It is made without teraservers lines','it is only payable into the payee’s account ','','','b','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(404,'A bill of exchange paid before its due date at an amount less than its face value is said to have been ','accepted ','rejected','discounted ','dishonoured ','','','c','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:33'),(405,'The most effective type of advertising for branding products is ','mass advertising ','persuasive advertising ','informative advertising ','competitive advertising ','','','c','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:17'),(406,'A current account holder pays fees for services in form of ','bank charges ','inertest rates','commission on turnover','minimum lending rate','','','a','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:08'),(407,'Printed messages sent by cable are recorded as ','telegram ','SMS','telex','MMS','','','a','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:36'),(408,'Communication is relevant to business activities because it ','creates wealth for people ','reduces the cost and risk of traveling ','connects people','enhances delivery of goods and services','','','b','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:37'),(409,'The right of an insurance company to stand in place of an insured against a third party, who is liable for the occurrence of a loss, is the principle of ','proximate cause','insurable interest ','insurance priority ','subrogation ','','','c','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(410,'Assurance is different from insurance in that the former is based on ','probability ','possibility ','risk ','uncertainty ','','','b','','utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:38'),(411,'A person who undertakes a life insurance is said to be an ','Insurer ','assurer ','assured ','insured ','','','d','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:41'),(412,'Tourism serves the purpose of ','cross-cultural understanding and peaceful interaction ','opening avenues for leaving the country','economic development and naturalization ','exploiting the country’s natural endowment','','','d','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(413,'The type of letters that are delivered through the normal mail or by airmail express service is referred to as ','Inland letters ','registered letters','airmail letters','express letters','','','c','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(414,'A business organization that exploits the capabilities of a member to remedy the weaknesses of another is a ','joint venture ','partnership ','nominal partnership ','cooperative ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:44'),(415,'The most important business objective is to ','improve investments ','provide quality  products','target consumers for satisfaction ','carve a niche for the business ','','','c','','utme','2012',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:45'),(416,'In case of liquidation of a public limited liability company, those that are first paid are ','ordinary shareholders ','preference shareholders ','cumulative preference shareholders ','debenture holders','','','d','','utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:46'),(417,'A feature common to public and private limited liability companies is that ','both can sue and  be sued ','the minimum number of their shareholders is five','the transfer of their shares  is not restricted ','their annual accounts are published for public use','','','a','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:47'),(418,'A business organization can obtain long-term financing through ','bank overdraft ','the sale of shares ','credit purchases ','bureau de change ','','','b','','utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:47'),(419,'The portion of the authorized share capital given out to the public for subscription is ','called-up capital ','issued capital ','paid up capital ','reserved capital ','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(420,'A company has an authorized capital of 40 million shares at N1 each, out of which 32 million are issued and fully paid-up. What happens to the remaining 8million shares?','it has been issued but not paid-up ','it has been applied for but not issued ','it is not paid up','it is not yet been issued ','','','d','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:50'),(421,'If the rate of turnover of a company in 1999 was 4 times while the average stock was N49, 600, determine the turnover.','N199, 400','N198, 400','N100, 200','N99, 200','','','b','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:08'),(422,'Given:  N\\n Opening stock  1,800\\n Purchases   2, 800\\n Sales    8,000\\n Closing stock    350\\n Carriage on sales    500\\n Calculate the value of the unused stock.\\n','N 800','N500','N350','N320','','','c','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(423,'The main objective of a trade association is to ','protect is members against litigation ','boost the trade of its members ','secure credit for its members ','protect its members against victimization ','','','d','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:01'),(424,'The promotion and protection of trade, industry and agriculture thorugh trade fairs is a function of ','NACRDB','NACCIMA','the Consumer Protection Council ','the Chamber of Commerce ','','','d','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:02'),(425,'Dealing in quoted securities on the Nigeria Stock Exchange is restricted to authorized ','companies ','brokers ','investors ','principals','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:03'),(426,'Securities that entitle the investor to coupon rates are ','bonds ','equities ','warrants ','treasury bills','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:04'),(427,'Under what management function will the motivation of employees fall?','staffing ','controlling ','organizing ','directing ','','','b','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:05'),(428,'The promotion of team spirit in an organization is referred to as ','Unit of direction ','spirit de corps ','unity of purpose','discipline ','','','a','','utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(429,'One of the characteristics of a good organizational chart is that it should ','be rigid ','show government policy','facilitate communication ','be acceptable ','','','c','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:07'),(430,'An organization which focuses on consumer satisfaction is practicing ','consumerism ','market segmentation ','selling concept ','marketing concept ','','','d','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:08'),(431,'Goods and Services are made available to consumers through','the channel of distribution ','sales promotion ','the advertising agency','the middlemen ','','','a','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:09'),(432,'A person who in consideration for an extra commission, takes responsibility for goods sold on credit and in case of default is a ','commission agent','del credere agent ','broker ','factor ','','','b','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(433,'Yahaya bought a piece of furniture on a credit sale agreement from Ahmed and resold it to Ali before all installments were made. The court upheld that Ahmed could not recover possession of the items from Ali. The reason for the judement was because ','ownership was transferred on completion of installment ','ownership was transferred on delivery ','Yahaya could not pass title to a third party ','Ali was still indebted to Yahaya','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:11'),(434,'The body which ensures that consumers are protected against harmful product in Nigeria is ','NAFDAC ','NDLEA','SON','CPC','','','a','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:12'),(435,'The process of decoding data in a computer is known as ','dilution ','default drive ','decryption ','data security ','','','c','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:13'),(436,'Which of the following is a type of system software? ','Utility programs ','Registers ','Hard drives ','Packages','','','a','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:14'),(437,'Computers that process all data as binary zeros and ones are ','analog computers ','digital computers ','hybrid computers','desktop computers','','','b','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:14'),(438,'Modern mans of payment is greatly facilitated by ','e-commerce ','paper money ','e-banking ','D credit transfer ','','','c','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(439,'The provision of quality and safe products which guarantee the health of consumers is an example of ','quality control ','price control ','civic responsibility ','social responsibility ','','','a','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:17'),(440,'A business organization must always consider the overall effect of its actions on the ','competitor ','product ','profit ','society ','','','c','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(441,'The type of labour that makes use of physical effort in production processes is the ','unskilled labour','skilled labour','blue-collar job','white-collar job','','','a','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(442,'The assembling of products into usable forms is known as ','creation ','manufacturing ','construction ','formation ','','','c','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(443,'The final link in the chain of distribution is ','Middlemen ','wholesaling ','consumer ','retailing ','','','c','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(444,'A country is said to be experiencing an unfavourable balance of trade if her','exports exceed imports ','visible exports  exceed  visible imports ','imports and export are equal ','visible imports exceed visible exports ','','','d','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(445,'Trading position of Nigeria is the same as her ','desire  to trade with many countries','willingness to grant credit to foreigners ','balance of trade ','terms of trade','','','a','','utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(446,'The role of customs and excise authority includes the ','provision of a good transport system to facilitate imports and exports ','provision of security at the port ','control of the flow of goods in and out of the country ','provision of dockyards for ship repairs ','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(447,'The document lodged with the customs authorities before a ship can leave the port is a ','shipping note ','ship report ','ship manifest','dock warrant ','','','c','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:25'),(448,'The document which must be endorsed by the ambassador of a country of destination before shipment of goods is a ','consular invoice ','certificate of origin ','bill of lading ','closed indent ','','','b','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(449,'A country’s terms of trade are said to improve when the ratio of her export ','decreases ','remains constant ','increases ','equals import','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(450,'Which of the following advertising medium appeals to only the literate it the society?','Radio advertising ','Print Media advertising ','Television advertising ','Cinema advertising ','','','b','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(451,'The two main forms of communication are ','oral and written ','verbal and non-verbal ','e-mail and fax','traditional and modern media ','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:29'),(452,'The most reliable and efficient means of conveying urgent documents is through','postal order ','ordinary letters ','registered letters ','courier services','','','d','','utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(453,'An undertaking given by a person to another assuring his integrity is ','proximate clause ','fidelity guarantee ','subrogation ','insurable interest ','','','b','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(454,'If Mr. N takes a fire insurance policy with average clause, his compensation will be ','N5, 000','N7, 500','N70, 000','N75,000','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(455,'The difference between indemnity insurance and non-indemnity insurance is that the latter provides ','cover for exporters against risks ','cover for importers against risks ','full payment to the insured ','consolation payment to the insured ','','','d','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(456,'An importance of warehousing is in the ','production of goods ','transportation of goods ','Importation of goods ','repackaging of goods','','','a','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(457,'In order to increase the capital owned, a sole trader may ','seek for bank loan ','issue debentures ','acquire extra shop fittings on credit ','draw less of his profit for personal use','','','d','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(458,'A business partner who provides capital but abstains from participation in administration of a firm is a ','general partner ','nominal partner ','secret partner ','dormant partner ','','','d','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:36'),(459,'Which of the following will NOT be stated in a Memorandum of Association? ','Name clause ','Rights of shareholders ','object clause ','Registered office','','','d','','utme','2013',90,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(460,'The amount of authorized capital that shareholders have subscribed to is ','issued share capital ','authorized share capital ','owner’s equity ','working capital ','','','c','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(461,'The rate of turnover of a firm in a given year is 5 times while the average stock is \\n N12.500. what is the turnover of the firm? \\n','N24,000','N46,500','N62, 500','N65,000','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(462,'A lawyer that defrauds his client may be derobed by the Nigerian Bar Association in order to ','protect other lawyers ','protect the integrity of the association','compensate the affected client ','prevent the client from sueing the association ','','','c','','utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:38'),(463,'In the Nigeria GSM industry, a parliament is organized by the Nigerian Communication Commission in order to ','increase profit of service providers ','protect the interest of government ','encourage more people into the business ','protect the interest of consumers ','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:41'),(464,'Trade Fairs in Nigeria are organized by ','the Federal Government ','Manufactures’ Association of Nigeria','Ministry of Commerce and industry ','Chambers of commerce','','','d','','utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(465,'Money is generally acceptable for transactions due to','the legal backing ','the rule of law ','it’s acceptability in the global market ','the Central Bank Governor’s signature ','','','d','','utme','2013',90,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(466,'Which of the following is a quality of money?  ','Availability','Scarcity  ','Indivisibility ','Convertibility ','','','a','','utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:29'),(467,'Money can simply be referred to as a ','measure of value','standard of value','means of settlement ','durable asset for doing business','','','a','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(468,'Gilt-edged securities are issued mainly by ','individuals ','non-governmental organizations','government ','multi-national companies ','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(469,'The initial function of a manager is ','setting up an organization ','coordinating ','planning ','provision of welfare package ','','','b','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(470,'The most suitable organizational structure for small or medium-sized enterprises is ','line structure ','staff structure ','committee structure ','functional structure ','','','a','','utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:48'),(471,'In a staff-authority relationship, the opinion of a specialist is one department to another is ','a directive ','an advice ','a command','a delegation ','','','b','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(472,'Management of a business involves he development of ideas for the ','distribution of goods and services that human wants','transportation of goods and services that goods and services that human wants ','transfer of little of ownership of goods and services to individuals.','production of goods and services that satisfy human needs.','','','d','','utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(473,'Which of the following is used as a pricing policy? ','packaging ','market selection ','labeling ','market skimming ','','','d','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:06'),(474,'The essential utility derived from the use of a product is known as ','augmented benefit','branded benefit ','core benefit ','formal benefit','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(475,'The breaking down of a market into separate and identifiable elements is known as ','differentiation ','segmentation ','skimming ','penetration ','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(476,'A contract that is acknowledged before the law court is referred to as ','informal contract','formal contract ','contract of records ','specialty contract ','','','b','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(477,'An agent employed to sell goods delivered to him by the principal is referred to as a ','Special agent ','del credere agent ','factor ','universal agent','','','b','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:55'),(478,'A motor dealer who agreed to sell a car to Mr. X but sold and delivered it to Mr. Y on the delivery date agreed with Mr. X. He has discharged the contract by ','performance ','frustration ','an agreement ','breach ','','','d','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(479,'A contract can be terminated through ','physical combat ','family intervention ','frustration ','consultation ','','','d','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(480,'The right of retain possession of goods until the contract price is paid is referred to as ','a promise ','ultra vires ','a branch ','a lien ','','','a','','utme','2013',63,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(481,'The sole legal right held by the author to publish his book is a ','trademark ','copyright ','patent right ','book mark','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:04'),(482,'The process of transferring data from one computer to another is referred to as ','down loading ','faxing ','browsing ','decoding ','','','a','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(483,'The physical component of a computer system is ','software ','hardware ','hard disk','floppy disk ','','','b','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(484,'A computer accessory through which information can be retrieved is the ','hard disk ','input  device ','control unit ','floppy disk ','','','d','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(485,'The type of computer application software used mainly for management information is ','Corel draw ','AutoCAD','data base','word perfect','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(486,'To meet security requirement before gaining access to data, a computer operator supplies ','an e-mail address ','a yahoo address ','a password ','a modem','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:29'),(487,'A major factor that affects business operations is ','technology ','supply ','product ','rivalry ','','','a','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:57:05'),(488,'The environmental hazard that is most difficult to control is ','land pollution','water pollution ','air pollution','political unrest ','','','c','','utme','2013',64,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(489,'Which of the following can be defined as trade and aids to trade?','Advertising','Commerce','Wholesaling','Retailing','','','b','','wassce','2000',66,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:07'),(490,'Which of the following is not a source of finance to a sole proprietor?','Trade Credit','Overdrafts','Debentures','Leasing of equipment','','','d','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-23 16:34:19'),(491,'Partners who allow their names to be used in a partnership but do not take part in the management of the business are','active partners','limited partners','general partners','nominal partners','','','d','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:09'),(492,'A private company is one which','must publish its audited account','floats its shares on the stock exchange market','restricts the rights to transfer its shares','is owned by a maximum of twenty members merger','','','c','','wassce','2000',61,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:10'),(493,'The coming together of two or more firms at different stages of production is','horizontal merger','vertical merger','amalgamation','cartel','','','b','','wassce','2000',62,'Admin','2016-11-14 07:16:10','2020-07-23 16:34:17'),(494,'The total value of fixed and current assets is?','working capital','capital employed','Fixed capital','capital owned','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:12'),(495,'What is P in the above equation?','Purchases returns','Net Profit','Sales','Carriage outwards','Use the following equation to answer question   Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:10','2020-07-23 16:34:18'),(496,'What is G in the above equation?','Sales returns','Carriage inwards','Purchases','Sales','Use the following equation to answer question  Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:14'),(497,'Which of the following is true about cumulative preference shares?','Unpaid dividends are carried forward','Shareholders can secure capital refund on demand','Shareholders are entitled to further share of profit','Dividends are paid into a special account','','','a','','wassce','2000',57,'Admin','2016-11-14 07:16:10','2020-07-23 16:34:18'),(498,'A debenture is mortgaged when it is','not secured on the assets of a company','secured on the assets of a company','irredeemable','redeemable','','','b','','wassce','2000',55,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:16'),(499,'A retail outlet which sells a fairly narrow range of goods with a number of branches in different towns is a','supermarket','mail-order shop','mobile shop','multiple shop','','','a','','wassce','2000',58,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:17'),(500,'A consignment note is used when','goods are wrapped and labeled for easy identification','goods are dispatched to agents through transporters','damaged goods are being returned','there is over-invoicing','','','b','','wassce','2000',57,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:18'),(501,'Which of the following is not contained in an advice note?','Type of goods','Price of goods','Date of dispatch','Means of dispatch','','','d','','wassce','2000',55,'Admin','2016-11-14 07:16:10','2020-07-14 12:57:19'),(502,'A refund of the duty collected on goods imported and processed for re- export is','excise duty','excise draw back','preferential duty','value added tax','','','b','','wassce','2000',54,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:20'),(503,'When a country’s total visible and invisible exports are more than its visible and invisible imports, it has','favourable balance of payments','favourable balance of trade','unfavourable balance of trade','unfavourable balance of payments','','','a','','wassce','2000',51,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:21'),(504,'Which of the following is not a function of a retailer?','Supplying goods to final consumers','Bulk breaking','Giving information to the wholesaler','Branding and packaging of goods','','','d','','wassce','2000',45,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:16'),(505,'A merchant who wishes to order goods from a foreign country sends','an invoice','an indent','an advice note','a credit note','','','b','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:23'),(506,'The production of goods in anticipation of demand is \tpossible because of the existence of','Packaging','advertising','warehousing','branding','','','c','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:25'),(507,'Which of the following is sent in reply to a letter of enquiry?','Quotation','Order','Consumer invoice','Advice note','','','b','','wassce','2000',58,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:26'),(508,'The abbreviated phrase E & OE is usually printed on','an invoice','a cheque','a delivery note','a debit note','','','a','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:18'),(509,'Which of the following refers to a price reduction based on the size of order?','Cash discount','Trade discount','Seasonal discount','Cash on delivery','','','b','','wassce','2000',64,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:28'),(510,'Which of the following is not a means of payment in foreign trade?','Telegraphic money order','Specially crossed cheque','Letters of credit','Debit transfer','','','b','','wassce','2000',56,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:29'),(511,'A bill of exchange on maturity is allowed','seven days of grace','five days of grace','four days of grace','three days of grace','','','a','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:30'),(512,'Which of the following is not a financial institution?','Commodity Board','Insurance company','Clearing house','Stock exchange','','','a','','wassce','2000',56,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:31'),(513,'When a customer writes a cheque in his own name and withdraws cash with it from his account he is both the','drawee and the payee','drawer and the payer','drawee and the drawer','drawer and the payee','','','c','','wassce','2000',49,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:16'),(514,'Which of the following is a means of payment through the post office?','Standing Order','Promissory note','Money order','Telegraphic transfer','','','c','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:41'),(515,'Which of the following encourages people to save towards owning a house?','Merchant bank','Development bank','Mortgage bank','Commercial bank','','','c','','wassce','2000',43,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:19'),(516,'Which of the following services is not rendered by commercial banks?','Business advice','Currency notes issue','Accepting deposits','Credit transfer','','','b','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:16'),(517,'A retirement insurance policy which enables the assured to receive income for a specific period is','annuity','endowment','whole life','fidelity guarantee','','','a','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:17'),(518,'A house worth  N50.000 was insured against fire for  N30,000. Fire destroyed and caused damages worth N20.000 on the house. Under which insurance principle will the owner be entitled to a compensation of  N20,000?','Contribution','Subrogation','Indemnity','Uberrimaefidei','','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:45'),(519,'When an insurance company indemnifies the insured and takes over his rights, this is known as','abandonment','subrogation','proximate cause','contribution','','','b','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:17'),(520,'In Public Limited Liability Companies, equities are referred to as','preference shares','authorized capital','ordinary shares','called-up capital','','','c','','wassce','2000',63,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:18'),(521,'The method of sending messages by the teleprinter is','telephone','cablegram','telex','railex','','','c','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:48'),(522,'The information on terms of carriage of mails is found in','business journal','post office guide','trade directory','service manual','','','b','','wassce','2000',48,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:49'),(523,'Rail transport is less flexible than road transport because','rail lines run between specific terminals','train is slow over long distances','only bulky goods are carried by rail','road transport is suitable for short distances','','','a','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:17'),(524,'Which of the following is used for moving only goods from one seaport to another?','Ocean liner','Cargo liner','Ferry','Coaster','','','b','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-07-23 16:34:18'),(525,'The marketing activity that stimulates immediate demand for a product is','sales promotion','publicity','consumer relations','personal selling','','','a','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:52'),(526,'Which of these is not a basic marketing function?','Exchange','Production','Facilitation','Information','','','b','','wassce','2000',67,'Admin','2016-11-14 07:16:11','2020-07-14 12:57:54'),(527,'Branding is a tool for','competitive advertising','consumerism','marketing research','pricing policy','','','a','','wassce','2000',47,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:55'),(528,'Firms wishing to defend established products as well as launch new ones will make use of','franchising','product differentiation','branding','advertising','','','d','','wassce','2000',46,'Admin','2016-11-14 07:16:12','2020-07-23 16:34:18'),(529,'Which of the following is a method of sales promotion?','Radio giggles','Poster display','Trade fair','Television broadcast','','','c','','wassce','2000',63,'Admin','2016-11-14 07:16:12','2020-07-23 16:34:17'),(530,'The deliberate and sustained efforts to maintain a good image of a company is known as','personal relations','public relations','professional relations','industrial relations','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:12','2020-07-23 16:34:17'),(531,'A contract of sale where ownership passes to the buyer on the payment of the first instalment is known as','hire purchase','lease','cash on delivery','credit sale','','','d','','wassce','2000',53,'Admin','2016-11-14 07:16:12','2020-07-14 12:57:59'),(532,'Which of the following agents guarantees payment transactions entered into on behalf of the principal?','Auctioneer','Factor','Broker','Del credere','','','d','','wassce','2000',67,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:00'),(533,'Which of the following is not a means of consumer protection?','Price control','Sale of Goods Act','Trade Description Act','Tax laws','','','d','','wassce','2000',60,'Admin','2016-11-14 07:16:12','2020-07-23 16:34:18'),(534,'Which of the following is a basic requirement for a valid contract?','Representation','Consideration','Interest','Performance','','','b','','wassce','2000',61,'Admin','2016-11-14 07:16:12','2020-07-23 16:34:19'),(535,'A counter-offer in a contract is regarded as','an acceptance','an invitation to treat','a rejection','a consideration','','','c','','wassce','2000',53,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:03'),(536,'Which of the following is not a right of the consumer?','Safety','Choice','Discount','Value','','','c','','wassce','2000',64,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:04'),(537,'Which of the following is an agreement to transport goods but not a document of title?','Air-waybill','Bill of lading','Charter party','Freight note','','','c','','wassce','2000',63,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:05'),(538,'In which of the following classes of occupation would you place a doctor?','Extractive','Commercial','Direct services','Indirect services','','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:12','2020-07-14 12:58:06'),(539,'Commercialization is good for the Nigerian economy because it','creates room for competition','increases the cost of living','leads to the reduction of workforce','leads to uneven distribution of wealth','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:40','2020-07-14 12:58:07'),(540,'Obtaining feedback on the quality and performance of competing products of different manufacturers, explains the retailer’s function of','after sales service','granting to credits to consumers','market research','stocking variety of goods','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:08'),(541,'The direct contact of a seller with potential buyers with a view to making sales is called','advertising','personal selling','public relations','publicity','','','b','','neco','2013',70,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:09'),(542,'The process of dividing a total market into groups made up of people with similar need refers to marketing','function','mix','research','segmentation','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:11'),(543,'The final link in the chain of distribution is the','agent','consumer','manufacturer','retailer','','','b','','neco','2013',65,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:12'),(544,'Platinum Habib Bank Plc. is an example of __ bank.','central','commercial','development','merchant','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:13'),(545,'Which of the following is NOT a means of payment through the post office?','Giro system','Money order','Postage stamp','Standing order','','','d','','neco','2013',78,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:14'),(546,'Branch managers who virtually have no control on goods they sell is a disadvantage of __  store.','chain','departmental','mail order','super','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:15'),(547,'Instrument used in place of legal tender but not freely acceptable are called ___ money.','bank','commodity','gold - backed','representative','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:34'),(548,'The assurance policy in which the assured pays lump sum of money which matures at his retirement is ___assurance.','annuity','endowment','life','term','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:35'),(549,'By making it possible for wholesalers to keep surplus stock until demand improves, the warehouse performs the function of','employment creation','price stabilization','production planning','storage','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:36'),(550,'Calculate the net profit.','30,000','33,000','38,000','40,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','b','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:37'),(551,'Calculate the total liabilities.','40,000','50,000','55,000','57,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','c','','neco','2013',67,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:38'),(552,'Calculate the current assets.','15,000','20,000','30,000','45,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','a','','neco','2013',65,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:39'),(553,'Ensuring free movement of factors of production among member states through the removal of obstacles is one of \t\tthe objectives of','ECOWAS','LCBC','NBC','OAU','','','a','','neco','2013',76,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:40'),(554,'Which of the following documents contains the name of the company, registration number and signature of the registrar?','Articles of association','Certificate of incorporation','Certificate of trading','Memorandum of association','','','d','','neco','2013',65,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:41'),(555,'The method of shopping on the internet by using the computer to browse the website of the manufacturer is known as','e-banking','e-commerce','e-exchange','e-trade','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:42'),(556,'The development of a container and a graphic design for a product is known as','advertising','branding','packaging','trade mark','','','c','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:43'),(557,'When an agent is appointed verbally or in writing by the principal to act on his behalf, the appointment is said to be by','estoppels','express','implication','ratification','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:44'),(558,'The features of an entrepreneur consist of the following, EXCEPT','coordinating factors of production','earning wages as income','efficiency in management','maintaining good communication','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:46'),(559,'Another name for trade discount is _________ discount,','cash','functional','quality','quantity','','','d','','neco','2013',58,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:47'),(560,'Those engaged in extraction, manufacturing, and construction occupations are called ___ workers.','commercial','direct','indirect','industrial','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:48'),(561,'Which of these is NOT a source of capital to First Bank of Nigeria Plc?','Equipment leasing','Lean from friends','Profit plough back','Sales of shares','','','b','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:49'),(562,'In trading, profit and loss account, carriage outward is','added to purchases','deducted from purchases','deducted from sales','treated as expenses','','','d','','neco','2013',68,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:50'),(563,'The pricing policy adopted by firms selling to wealthy people is','market penetration','market skimming','pricing above the market','pricing with the market','','','b','','neco','2013',61,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:51'),(564,'Which of the following is NOT a function of courier companies?','Ensuring international transmission of message','Providing door to door delivery services','Providing efficient means of mail delivery','Undertaking the shipment of export and import','','','d','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:52'),(565,'“MTN, Your Best Connection” is an example of ___ advertisement.','competitive','direct','informative','mass','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:53'),(566,'The assertion ‘consumers are always right’ refers to marketing','board.','concept','function','mix','','','b','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:54'),(567,'Which of the following is charged by the NIPOST on postal order?','Dividend','Interest','Poundage','Premium','','','c','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:56'),(568,'The following are characteristics of debenture holders, EXCEPT','being one of the sources of long term loan to public companies.','being paid interest','they are creditors of the company','they are entitled to profits','','','d','','neco','2013',56,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:57'),(569,'The money paid to savings account holders by banks after a period of transaction is called','dividend','gain','interest','premium','','','c','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:58'),(570,'Double coincidence of wants is a disadvantage of','business','buying and selling','credit sales','trade by barter','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:59'),(571,'Price quotation which excludes all delivery charges is called','cost and freight','ex - ship','ex - warehouse','free - on - board','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:00'),(572,'Which of the following does NOT appear on a cheque on presentation for payment?','Amount in words and figures','Date of withdrawal','Name of the cashier','Name of the payee','','','c','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:01'),(573,'The aspect of production which provides goods and services for immediate consumption is called ___ production.','direct','indirect','primary','secondary','','','a','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:02'),(574,'The actual gain made by a business after all expenses has been deducted is called','gross profit','margin','mark-up','net profit','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:03'),(575,'The following documents are used between buyers and sellers, EXCEPT','catalogue','dispatch rate','invoice','license','','','d','','neco','2013',81,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:04'),(576,'The total assets of a business less current liabilities refers to _____ capital.','authorized','called up','employed','owned','','','d','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:05'),(577,'The following are merits of industrial integration, EXCEPT','controlling output and price','eliminating waste','leading to monopoly','preventing over production','','','c','','neco','2013',80,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:06'),(578,'The use of middlemen by manufacturers become necessary where the goods','are of low rate of turnover','are susceptible to faking or adulteration','involved are branded','produced are in large quantities','','','d','','neco','2013',74,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:07'),(579,'The oldest form of business enterprise in Nigeria is','partnership','private liability company','public enterprise','sole proprietorship','','','d','','neco','2013',79,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:08'),(580,'Social responsibilities of a business to the consumers \tinclude the following, EXCEPT','educating the customers','ensuring truth in advertisement','granting credit facilities','providing of quality product','','','c','','neco','2013',58,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:09'),(581,'Products that have stayed long on themselves in a shop can be sold easily through','branding','discounting','doorstep selling','franchising','','','b','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:10'),(582,'The durable capital of an enterprise which is used continuously for further production is called ___ capital.','called up','circulating','fixed','liquid','','','c','','neco','2013',59,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:11'),(583,'A manufacturer is said to have performed all the necessary marketing functions in the distribution channel when the goods move from','manufacturer ? consumer','manufacturer ? retailer ? consumer','manufacturer ? wholesaler ? retailer ? consumer','manufacturer ? wholesaler ?jobber ? retailer ?consumer','','','c','','neco','2013',73,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:12'),(584,'Which of the following is NOT a reason for government’s ownership of Nigerian Ports Authority (NPA)?','Avoiding wasteful competition and duplication','Generating revenue','High capital requirement','Making profit','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-16 09:51:24'),(585,'The first step for a businessman who wishes to engage in international trade is to','ask the exporter to move the goods to the shipping company for delivery','engage the services of clearing agent to clear the goods on his behalf','establish contact with the foreign trading partner','fill an application for import form with a bank','','','c','','neco','2013',79,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:28'),(586,'A law made by a country to prohibit importation of certain goods into the country is called _____ laws.','export','import','protectionist','tariff','','','c','','neco','2013',74,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:29'),(587,'Which of the following towns was NOT an initial commercial centre in Nigeria?','Kano','Lagos','Maiduguri','Yola','','','d','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:31'),(588,'Management function which arranges people, time, money and equipment, to achieve the objectives of an organization is referred to as','directing','motivating','organizing','planning','','','c','','neco','2013',75,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:32'),(589,'Bridging the gap between producers and consumers is the sole purpose of','distribution','hawking','retailing','warehousing','','','c','','neco','2013',69,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:33'),(590,'Which of the following is NOT a characteristic of labour? It is','fixed in supply','geographically mobile','man made','perishable in nature','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:34'),(591,'One of the problems associated with home trade is the','absence of currency exchange','better knowledge of the markets','inadequacy of storage facilities','proximity of buyers and sellers','','','c','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:35'),(592,'An instruction from a current account holder requesting to pay a named person or organization a. specified amount is \t\tcalled','bankers order','certified cheque','internal transfer','money order','','','b','','neco','2013',68,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:36'),(593,'Which of the following is NOT a commercial occupation?','Advertising','Agriculture','Communication','Insurance','','','b','','neco','2013',78,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:37'),(594,'In the marketing mix, place refers to','channel of distribution','location of the factory','the market place','where the product is located','','','d','','neco','2013',85,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:38'),(595,'Which of the following is NOT an attribute of an effective business manager?','Altruism','Empathy','Objectivity','Subjectivity','','','d','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:39'),(596,'The ability of money to be divided into smaller units for easy exchange of goods and services explains','divisibility','durability','recognisability','stability','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:40'),(597,'Which of the following is NOT a role of trade association?','Eliminating competition among members','Ensuring uniformity in mode of operation','Establishing link between government and associations','Promoting members interest','','','a','','neco','2013',76,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:41'),(598,'The transfer of enterprises from private to state ownership for economic or social reasons is referred to as','commercialization','indigenization','industrialization','naturalization','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:42'),(599,'The major divisions of Commerce are','import, export and transport','trade, communication and warehousing','trade and auxiliaries to trade','exchange, consumption and production','','','c','','wassce','1990',65,'Admin','2016-11-14 20:22:14','2020-07-14 12:59:43'),(600,'Which of the following statements is not true?','Commercial services are the life blood of a country economic system','There cannot occur commercial services until goods have been produced.','Without commercial services most goods and services will not be produced','There is no stage of production that does not employ commercial services.','','','b','','wassce','1990',53,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:44'),(601,'The three main divisions of production include industrial','commercial and banking services','commercial and services','transportation and services','manufacturing and services','','','b','','wassce','1990',49,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:45'),(602,'Which of the following is one of the functions of commerce?','Manufacturing','Growing of tomatoes','Storage of goods','Construction of Roads','','','c','','wassce','1990',60,'Admin','2016-11-14 20:22:15','2020-07-23 16:34:17'),(603,'Which of the following does not belong to the extractive industry?','Farming','Insuring','Mining','Drilling','','','b','','wassce','1990',62,'Admin','2016-11-14 20:22:15','2020-07-23 16:34:18'),(604,'The average stock is','N=2000','N=3000','N=5000','N=6000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','c','','wassce','1990',62,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:48'),(605,'The cost of goods sold is','N=6000','N=10000','N=42000','N=16000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','a','','wassce','1990',59,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:49'),(606,'The oldest and commonest form of business in Nigeria is','partnership','the co-operative society','sole proprietorship','joint stock venture','','','c','','wassce','1990',53,'Admin','2016-11-14 20:22:15','2020-07-23 16:34:17'),(607,'If a retailer Mr. Aigbojie buys goods manufactured by Adefila Limited from wholesaler Mrs. Jumai, who will prepare the delivery note?','Mr. Aigbojie','Adefila Limited','Mr. Jumai','Mr. Aigbojie and Adefila Limited','','','c','','wassce','1990',50,'Admin','2016-11-14 20:22:15','2020-07-23 16:34:18'),(608,'Which of the following is not a factor of production?','Capital','land','Labour','Staffing','','','d','','wassce','1990',66,'Admin','2016-11-14 20:22:15','2020-07-23 16:34:17'),(609,'In which class of occupation would you place a taxi-driver?','Extractive','Indirect services','Personal services','Commercial services','','','d','','wassce','1990',53,'Admin','2016-11-14 20:22:15','2020-07-14 12:59:54'),(610,'The purpose of issuing a credit note is to','correct errors of overcharging','correct errors of undercharging','write off  bad debts','encourage immediate payment','','','a','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:55'),(611,'The exchange of goods for other goods in home trade is known as','entrepot trade','home trade','barter trade','foreign trade','','','c','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:56'),(612,'Which of the following advertising media combines the advantages of sound and motion?','Radio','Neon signs','Press','Television','','','d','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:57'),(613,'Which of the following is a form of sales promotion?','Promotion through radio','Advertising by television','Distributing printed sales literature','Offering free samples to customers','','','d','','wassce','1990',70,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:58'),(614,'Efforts geared towards establishing and maintaining good image for a company is termed','human relations','professional relations','public relations','trade relations','','','c','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:58'),(615,'Which of the following is sent as a reply to an inquiry?','Tender','Estimate','Statement','Quotation','','','d','','wassce','1990',55,'Admin','2016-11-14 20:22:16','2020-07-14 12:59:59'),(616,'Which of the following statements best describes net profit? The excess of','total revenue over total expenditure','total capital income over expenditure','sales over purchases','total capital formation over capital consumption','','','a','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:00'),(617,'A business is in existence primarily to','make profit','provide goods and services','provide employment','compete with others in business','','','a','','wassce','1990',63,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:18'),(618,'A number of shops under one roof is the feature of a','supermarket','chain store','department store','mail order business','','','c','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:04'),(619,'An agreement between two parties which will give rise to enforceable rights and obligation is known as','a warrant','a contract','a consideration','an offer','','','b','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:17'),(620,'Auctions and Tenders become binding when they are','accepted','offered','received','advertised','','','a','','wassce','1990',61,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:16'),(621,'The organized efforts of consumers to protect themselves against the unfair practices of businessmen is called','strike','consumerism','amalgamation','propaganda','','','d','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:08'),(622,'Which of the following is the most suitable means of \ttransporting bulky goods from Lagos to Kaduna? By','Train','Airplane','Ship','Lorry','','','a','','wassce','1990',55,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:09'),(623,'Which of the following is the quickest and accurate means of communication?','Telegram','Express mail','Courier services','Telex','','','d','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:10'),(624,'Which of the following is the safest means of sending a postal order from Lagos to a friend in Jos?','Special delivery','Recorded delivery','Registered letter','First class mail','','','b','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:17'),(625,'One of the objectives of the indigenization programme of the Federal Government of Nigeria is to','encourage the use of local raw materials','expel all foreigners from Nigeria','make Nigerian businessmen very rich','maximize local retention of profits','','','d','','wassce','1990',55,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:18'),(626,'The law which stipulates that labels should give an accurate account of a product is the','price control act','consumer credit act','trade description act','hire purchase act','','','c','','wassce','1990',46,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:17'),(627,'Which of the following is not an essential of a contract?','Offer and acceptance','Intention to create legal relations','All contracts written out','Legality of object','','','c','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:14'),(628,'One advantage of personal selling is','low cost','immediate feedback','the appeal to many people at a time','self service','','','b','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:15'),(629,'Charges paid by a ship for staying at a port beyond agreed sailing time is called','profit','interest','holding','demurrage','','','d','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:18'),(630,'Entrepot Trade refers to','importing for domestic consumption','importing for industrial use','importing for government concerns','importing for re-export','','','d','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:17'),(631,'Which of the following could account for a favourable balance of payment?','High capital repayments','high debt service repayment','higher imports than exports','Higher exports than imports','','','d','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:18'),(632,'Which of the following is not part of the facilities provided by the Nigerian Ports Authority?','Dredging','Warehousing','Collection of customs duties','Loading and off-loading of cargoes','','','c','','wassce','1990',72,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:19'),(633,'The main purpose of branding is to','increase the quantity of goods demanded','differentiate goods from other similar goods made by other producers','increase the selling price of goods','enhance turnover of goods','','','b','','wassce','1990',57,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:17'),(634,'An individual who makes the final use of goods and services provided by a firm is the','manufacturer','wholesaler','consumer','retailer','','','c','','wassce','1990',57,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:21'),(635,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','cartel','trust','holding company','consortium','','','a','','wassce','1990',53,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:19'),(636,'When a business is insolvent it may result in','incorporation','recuperation','liquidation','restoration','','','c','','wassce','1990',44,'Admin','2016-11-14 20:22:16','2020-07-23 16:34:17'),(637,'In insurance the term Uberrimaefidei stands for','utmost good faith','subrogation','insurable interest','indemnity against loss','','','a','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:24'),(638,'Fidelity guarantee is an insurance cover against loss arising from','trade debts','personal accidents','dishonest staff','fire disaster','','','c','','wassce','1990',54,'Admin','2016-11-14 20:22:16','2020-07-14 13:00:25'),(639,'Which of the following is a type of marine insurance?','Endowment','Freight','Accident','Fidelity','','','b','','wassce','1990',50,'Admin','2016-11-14 20:22:17','2020-07-14 13:00:26'),(640,'The word Ltd written after the name of a company means that','the individual member’s capital is limited','the total sum of the company’s capital is limited','members are liable to the extent of their holding','company’s location is limited','','','c','','wassce','1990',58,'Admin','2016-11-14 20:22:17','2020-07-23 16:34:17'),(641,'Which of the following is a public corporation? The','Nigeria Breweries Limited','Nigerian Ports Authority','Lagos Chamber of Commerce','Nigerian Bottling Company','','','b','','wassce','1990',65,'Admin','2016-11-14 20:22:17','2020-07-23 16:34:18'),(642,'Which of the following is not required in a Memorandum of Association? The','name of the company','location of the company','names of the Board of Directors','limitation of member’s liability','','','c','','wassce','1990',56,'Admin','2016-11-14 20:22:17','2020-07-23 16:34:16'),(643,'The amount paid by the insurance company to the insured upon giving up his policy is called','Surrender value','cash bonus','assured sum','dividend','','','a','','wassce','1990',47,'Admin','2016-11-14 20:22:17','2020-07-23 16:34:19'),(644,'The amount paid by the assured to the insurer is called','interest','premium','dividend','indemnity','','','b','','wassce','1990',60,'Admin','2016-11-14 20:22:17','2020-07-16 15:36:49'),(645,'With the exception of life assurance and personal accident insurance, contracts of insurance are contracts of','premium','indemnity','proximate cause','utmost good faith','','','b','','wassce','1990',58,'Admin','2016-11-14 20:22:17','2020-07-23 16:34:18'),(646,'An author’s exclusive right to published and unpublished works is known as','patent right','fundamental human right','copyright','authorship','','','c','','wassce','1990',55,'Admin','2016-11-14 20:22:17','2020-07-23 16:34:18'),(647,'The cost which is incurred as a result of failure to load or unload a ship at the ports within a specified period is referred to as','demurrage charges','premium charges','trade charges','excess charges','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:47','2020-07-22 21:30:16'),(648,'The process whereby a firm directs its marketing efforts towards a single market by the use of a particular marketing mix is referred to as','concentration segmentation','marketing concept','consumer orientation','market penetration','','','d','','utme','2016',68,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:36'),(649,'The function of money that is mostly affected by inflation is','store of value','medium of exchange','measure of value','unit of account','','','a','','utme','2016',72,'Admin','2016-11-14 20:59:49','2020-07-22 21:30:06'),(650,'Ordinary warehouse is usually owned and used by','government','agents','retailers','wholesalers','','','d','','utme','2016',69,'Admin','2016-11-14 20:59:49','2020-07-23 11:40:28'),(651,'The winding up of a firm by a resolution of its shareholders is an example of','voluntary liquidation','bankruptcy','recession','involuntary liquidation.','','','a','','utme','2016',54,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:39'),(652,'Which of the following is used for temporary storage of data on a computer?','RAM.','ROM.','floppy disk.','flash disk.','','','a','','utme','2016',70,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:56'),(653,'An advantage of the Second-Tier Securities Market to an economy is in','creating avenues for investment','regulating competition amongst companies','granting financial assistance to consumers','increasing companies profit margins-.','','','a','','utme','2016',72,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:57'),(654,'The  lumbering of trees by a furniture company is an example of','primary production','secondary production','tertiary production','Indirect production','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:58'),(655,'Which of the following types of occupation involves services that can be referred to as auxiliaries’ trade?','Constructive occupation','Manufacturing occupation.','Industrial occupation.','Commercial occupation','','','d','','utme','2016',74,'Admin','2016-11-14 20:59:49','2020-07-22 21:30:05'),(656,'The transformation of cotton into clothing is an example of','secondary production','tertiary production','primary production','direct production','','','a','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:00'),(657,'A basic concept of advertising that reveals the essential message an advertiser wishes to communicate is referred to as the','medium','theme','target','reach','','','a','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:01'),(658,'The type of wholesaler that combines selling, delivery and collection in one operation is','specialist   wholesaler','rack jobber','drop shipment','truck. wholesaler','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:50','2020-07-23 16:34:07'),(659,'Given: - [Index of export price] / [Index of import price]  x 100  The formula can be used to determine the','terms of payment','balance of payments','terms of trade','import tariffs.','','','c','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:03'),(660,'Commission on turnover is usually a benefit accruable to the','drawer','drawee','payer','payee','','','d','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:04'),(661,'Avast is an example of','a web browser','a search engine','an antivirus','a spread sheet','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:05'),(662,'The component of balance of payments which shows how the balance of both current and capital accounts are settled is \t\t\tknown as','current account','monetary movement account','capital account.','social welfare account','','','b','','utme','2016',62,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:06'),(663,'The act of interpreting ideas within an organization is','motivating','organizing','planning .','communicating','','','d','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-16 15:29:37'),(664,'One of the duties of the employer to his employee is to','delegate his duties to other staff','charge the employee on the use of equipment','serve faithfully and honestly','provide job security.','','','d','','utme','2016',59,'Admin','2016-11-14 20:59:50','2020-07-23 16:34:07'),(665,'The buying and selling of goods and services is referred, to as','trading','marketing','insurance','advertising','','','a','','utme','2016',66,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:09'),(666,'A document that serves as an instrument for preferential tariff is referred to as','an indent','a certificate of origin','a consular invoice','an advice note.','','','b','','utme','2016',64,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:10'),(667,'Funds used for paying wages, salaries and payments for raw materials are categorized under','liquid capital','circulating capital','fixed capital','nominal capital.','','','b','','utme','2016',57,'Admin','2016-11-14 20:59:50','2020-07-22 21:21:36'),(668,'A formal letter to a dealer to enquire details about certain items for sale is referred to as','an inquiry','an invoice','an order','a quotation','','','a','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:12'),(669,'The pricing policy that seeks ,to set .prices relatively high in order to attract the wealthy segment of the market is','target return pricing','market skimming','variable pricing.','market penetration','','','b','','utme','2016',75,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:13'),(670,'In the transportation industry, dead freight is used to describe the','cost paid for an empty space left in the ship','charge for each day a performance was delayed','persons that hire a ship for a specific purpose.','cost of shipping a particular cargo for a specific voyage','','','a','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:14'),(671,'When expenses on trading are deducted, the result is the','rate of turn over','net profit','gross profit','cost of goods sold.','','','b','','utme','2016',88,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:15'),(672,'A supplier of flour who intends to sign a contract with a baker \tthrough post can establish a binding agreement only','after the offeror has made an offer.','when the offeror’s letter has reached the offeree.','when the. Offeree’s letter has been posted.','after the offeree’s letter has been received by the offeror.','','','d','','utme','2016',49,'Admin','2016-11-14 20:59:50','2020-07-22 21:30:15'),(673,'Which of the following is a modern trend in retailing?','Kiosk','Mobile shop','Vending machine.','Tied shop','','','c','','utme','2016',58,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:17'),(674,'Which of the following is a traditional medium of communication used to mark festivals?','Palm frond.','Metal gong.','Talking drum.','Gun blast.','','','c','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:18'),(675,'One of the functions of the retailer is','granting credit facilities to close relatives','provision of after-sales services','branding and packaging of goods.','warehousing of goods.','','','b','','utme','2016',64,'Admin','2016-11-14 20:59:50','2020-07-22 21:30:05'),(676,'One of the factors of determining the volume of production is','availability of forex','availability of storage facilities.','the location of the business.','the number of skilled manpower.','','','b','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:20'),(677,'Which of the following is the best method for computing working capital?','Total assets less current liabilities.','Current liabilities less current assets.','Fixed liabilities less current assets.','Current assets less current liabilities.','','','a','','utme','2016',66,'Admin','2016-11-14 20:59:50','2020-07-23 11:40:28'),(678,'The minimum lending rate of a bank is a component of its','current assets','debit balance.','credit balance.','fixed assets.','','','a','','utme','2016',57,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:28'),(679,'One of the functions of the Nigerian Ports Authority is that it','gives preferential treatment to Nigerian investors','provides credit facilities to importers.','encourages the growth of infant industries.','provides warehousing facilities at the docks.','','','d','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:29'),(680,'An ancillary to trade which promotes socio-cultural development all over the world is','transportation','communication','tourism.','insurance.','','','c','','utme','2016',75,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:30'),(681,'An association that acts as a watchdog between  entrepreneurs and government to protect trade from any unfavourable laws is said','cartel','syndicate','Chamber of Commerce','Nigeria Bar Association.','','','c','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:06'),(682,'Labour as an input in production can be motivated by','training','profit.','remuneration.','promotion','','','c','','utme','2016',64,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:32'),(683,'Discharging certain duties by an organization to the public to gain high patronage is a concern of financial responsibility','economic responsibility.','legal responsibility.','financial responsibility.','social responsibility.','','','d','','utme','2016',66,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:33'),(684,'Complying with the rules relating to the conduct of business activities in a country is an aspect of','cultural environment.','demographic environment.','legal environment','politician environment','','','c','','utme','2016',62,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:08'),(685,'Which of the following is NOT backed by gold but by government securities?','Fiduciary note.','Fiat money.','Token money.','Commodity money.','','','a','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:36'),(686,'Which of the following is a legal tender?','Cheque.','Traveller’scheque.','Bank note','Goldsmith receipt.','','','c','','utme','2016',57,'Admin','2016-11-14 20:59:51','2020-07-22 21:21:36'),(687,'Where a manufacturer collects money from wholesalers in exchange for goods produced is referred to as','charge account.','trading checks.','trade credit.','I owe you.','','','c','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:06'),(688,'Quantity discount is offered mainly to persuade the buyer to','defer payment.','make prompt purchases.','make advance payment.','purchase more','','','b','','utme','2016',81,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:08'),(689,'The placement of workers based on their qualifications can be categorized under','public sector','skilled labour','private sector.','unskilled labour','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:40'),(690,'A group of computers that exchange data is referred to as','an information bank.','a network.','a database.','an intranet site.','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:41'),(691,'The form of credit sales common to low income groups is','hire purchase','club trading','book-me-down.','credit trading.','','','a','','utme','2016',68,'Admin','2016-11-14 20:59:51','2020-07-22 21:21:35'),(692,'Petrol voucher is an example of a','bank draft.','legal tender.','token money','partial money.','','','d','','utme','2016',56,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:43'),(693,'One of the major reasons for merger is to','reduce the number of unskilled manpower','increase the number of skilled manpower.','prevent liquidation.','liberalize the market.','','','c','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:44'),(694,'A major function of commerce is to','facilitate human satisfaction through exchange','eliminate trade barriers','provide raw materials for manufacturers','influence government policies','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:46'),(695,'The major factors that facilitate merchandising are','communication, advertising and banking','trading, warehousing and production','management, insurance and advertising','banking, insurance and transportation.','','','d','','utme','2000',49,'Admin','2016-11-14 21:29:41','2020-07-14 13:01:46'),(696,'Production involves','making goods available where and when needed','changing the form of goods, moving and making them available as needed','the manufacturing of goods and provision of services','the assembling of all necessary parts to produce a finished product.','','','b','','utme','2000',52,'Admin','2016-11-14 21:29:44','2020-07-14 13:01:47'),(697,'The application of division of labour should generally bring about','increase in the quantity of goods and services','increase in the variety of goods and services','cheapness of goods and services','cost efficiency in the production of goods and services.','','','a','','utme','2000',55,'Admin','2016-11-14 21:29:44','2020-07-22 21:30:15'),(698,'The term Plc implies that the shares are available','to the public at the company','privately on the stock exchange','publicly on the stock exchange','publicly in commercial banks.','','','c','','utme','2000',67,'Admin','2016-11-14 21:29:45','2020-07-23 16:34:05'),(699,'Which of these is both merit and demerit in partnership?','The number of partners','Its unlimited nature','The bearing of risk','The withdrawal of a major partner.','','','a','','utme','2000',70,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:51'),(700,'The measure of independence available to the individual business units that come together is the main difference between','vertical and horizontal, integration','mergers and acquisitions','consortium and amalgamation','trust and cartel.','','','b','','utme','2000',52,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:52'),(701,'Government policies relating to the establishment and operations of businesses are targeted at','increasing the profits of business owners','the general improvement of the economy','even spread of facilities and employment','diversification and expansion of businesses.','','','b','','utme','2000',56,'Admin','2016-11-14 21:29:45','2020-07-22 21:21:37'),(702,'On liquidation of a public limited liability company, the residual owners are the','creditors','ordinary   shareholders','preference shareholders','debenture holders.','','','b','','utme','2000',51,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:53'),(703,'Bank overdraft as a short term source of fund is','an overdrawn account','granted to a newly opened account','repayable after more than a year','a current liability.','','','d','','utme','2000',73,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:55'),(704,'The share capital value that forms part of the balance sheet total is the','paid-up share capital','called-up share capital','authorized share capital','issued share capital.','','','a','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:55'),(705,'The main factors militating against the rapid growth of trade in Nigeria are','inadequate transportation network and huge capital outlay','lack of motivation and government attitude towards trade','lack of good transportation network and insecurity of investments','huge capital outlay and government attitude to trade.','','','a','','utme','2000',67,'Admin','2016-11-14 21:29:45','2020-07-16 15:36:49'),(706,'The current trends in retailing competition in Nigeria are','advertising and sales promotion strategies','branding, enterprising and differentiation of goods and services','self-service, after-sales services and branding strategies','after-sales services and sales promotion strategies.','','','a','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:57'),(707,'The function of a merchant wholesaler is to','buy in bulk, store and sell to retailers as desired','possess title to the goods, store and sell to retailers','bring buyers and sellers together','find markets for producers’ finished goods.','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:58'),(708,'An invoice can be described as a','contractual agreement for the sale of goods','document specifying quantity, description, prices and total value of purchases','receipt containing necessary information about the goods','letter specifying the contractual sales of goods between two parties.','','','b','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:59'),(709,'Ocean liners are subdivided into','passenger liners and cargo liners','coastal liners and cargo liners','cargo liners and tramp liners','passenger liners and tramp liners.','','','a','','utme','2000',63,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:00'),(710,'Tourists with no fixed address in a town may receive their letters from the post office through a','recorded delivery','poste restante','parcel post','postmaster.','','','b','','utme','2000',71,'Admin','2016-11-14 21:29:45','2020-07-23 16:34:08'),(711,'The insurance principle that requires full disclosure of information on the insured is known as','indemnity','uberrimaefidei','subrogation','caveat emptor.','','','b','','utme','2000',74,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:02'),(712,'Mr. Olatunde took up a fire insurance on a property valued at N 1000 and the amount insured is  N800. The property caught fire causing a loss of  N400. If the insurance was taken with the \tclause ‘with average’, what is the amount to be paid by the insurance company?','N320','N420','N460','N560.','','','a','','utme','2000',63,'Admin','2016-11-14 21:29:45','2020-07-22 21:30:04'),(713,'The Central Bank differs from commercial banks because it','renders service to customers','carries out foreign exchange transactions','issues currencies','discounts bills.','','','c','','utme','2000',71,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:05'),(714,'A bank form used to transfer money from personal to creditor’s account is called','debit transfer form','credit transfer form','customer transfer form','bank transfer form.','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-23 16:34:07'),(715,'The computer using linear integrated circuit technology coupled with quantification of data in terms of length and distance is known as','digital computer','analogue computer','mainframe computer','hybrid computer.','','','a','','utme','2000',75,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:07'),(716,'A printer that burns the print image onto the photosensitive drum is called','dot matrix printer','daisy wheel printer','laser printer','thermal printer.','','','c','','utme','2000',60,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:08'),(717,'A console is a device used in','moving an indicator on the screen','communicating between operator and programme','holding magnetic tape reel','forming characters by heating sensitive ribbon.','','','a','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:09'),(718,'A form of money that has gone out of use is','paper money','bank money','commodity money','foreign money.','','','c','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:17'),(719,'The major condition for obtaining loan in thrift, credit and loans cooperative societies is','provision of collateral security','a high level of education','possession of a large business','an approved project plan.','','','a','','utme','2000',64,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:18'),(720,'The Stock Exchange helps to provide capital for industrial projects because it','determines value of shares, stocks and other securities','assists government in implementing its monetary policies','assists companies to change their securities into cash','renders agency services to organizations and governments.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:19'),(721,'A shortcoming of the Second-tier Foreign Exchange Market in Nigeria is that it','serves as a mechanism for evaluating an unrealistic exchange rate for the naira','creates unhealthy competition amongst users of foreign exchange','contributes to destabilizing national resource allocation','contributes to flooding the market with foreign essential commodities.','','','b','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:20'),(722,'The chart above represents the','product mix relationship','marketing mix relationship','promotion mix relationship','advertising mix relationship.','','','b','','utme','2000',63,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:21'),(723,'A group of specialized functions of marketing is','buying, selling, storing and information','buying, selling, advertising and packaging','buying, selling, labelling and promotion','buying, selling, skimming and pricing.','','','c','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:06'),(724,'The type of advertising that seeks to persuade consumers to buy a particular product is','informative advertising','competitive advertising','persuasive advertising','mass and specific advertising.','','','c','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:23'),(725,'The practice whereby soft drink manufacturers give away caps, bags and other items when consumers buy their product is a \t\tform of','marketing strategy','publicity','advertising','sales promotion.','','','d','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:04'),(726,'The most important advantage of personal selling is that it','allows sellers to perceive buyers’ needs','allows sellers to sell their goods quickly','takes place easily on the highways','takes place without the permission of government.','','','a','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:33'),(727,'The role of public relations is principally to','sustain good relationship','create good image','carry out publicity','advertise a firm’s products.','','','b','','utme','2000',61,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:34'),(728,'The basic elements of a valid contract are','offer, acceptance, consideration and witness','offer, intention, acceptance and legality','offer, acceptance, intention, capacity and legality','offer, acceptance, capacity, legality and consideration.','','','d','','utme','2000',60,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:04'),(729,'A bus driver operating between Lagos and Jos pledged the owner’s credit in Benin in order to have the engine repaired and the bill sent to the owner. This is a case of','del credere agency','agency by necessity','agency by ratification','agency by estoppel.','','','b','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:36'),(730,'After registration, a certificate of trading is usually issued to a','partnership','public company','private company','sole proprietorship.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:16'),(731,'An aspect of the law which allows an exclusive right for a limited number of years is a','copyright','trade mark','ratification','patent','','','d','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:38'),(732,'The first known legislation to protect consumer rights in Nigeria is the','Usury Laws','Hire Purchase Act','Sale of Goods Act','Food and Drugs Act.','','','c','','utme','2000',71,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:39'),(733,'The main difference between nationalization and indigenization is in terms of','shareholding','profit','technology','efficiency.','','','b','','utme','2000',70,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:40'),(734,'The primary objectives of a trade association is to','undertake research work on behalf of members','establish easy link with government','exchange information and negotiate as a pressure group','operate as a group against other groups.','','','c','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:15'),(735,'A chamber of commerce is an association made up of','entrepreneurs','manufacturers','merchants','importers.','','','b','','utme','2000',72,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:42'),(736,'The composite functions of management are','planning, supervising, communicating','planning, controlling, organizing and directing','coordinating,  supervising,  staffing  and communicating','directing,  supervising, motivating and controlling.','','','b','','utme','2000',60,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:43'),(737,'The three components of staffing are','recruitment, selection and placement','recruitment, interview and appointment','recruitment, test and placement','recruitment, procurement and appointment','','','a','','utme','2000',69,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:44'),(738,'The legal aspect of business is designed to','protect business organizations and consumers','safeguard consumers from undue business practices','protect infant industries from collapse','encourage free exchanges among businesses.','','','a','','utme','2000',64,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:45'),(739,'In an organization, civic consideration arises from','the profit derived from the environment','its operations within the environment','its social negative impacts on the community','the fact that it is registered in that locality','','','b','','utme','2000',62,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:46'),(740,'The instrument establishing the Economic Community of West African States in 1975 is','a decree','an act','a treaty','constitution','','','c','','utme','2000',72,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:46'),(741,'One of the functions of the Niger Basin Commission is to','ensure equal treatment of African nations','foster closer co-operation among West African nations','map out regulations that will guide all forms of navigation','guarantee freedom of navigation for all West African nations.','','','c','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:47'),(742,'The pivot on which the wheel of commerce rotates is','tariff','trade','taxation','price.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:48'),(743,'A distinguishing characteristic of labour is that it is','constant','expensive','mobile','cheap','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:49'),(744,'Land as a factor of production does not vary in','quantity','nature','quality \t\t\t\t.','cost.','','','b','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-22 21:21:38'),(745,'Which of the following services does a lawyer render?','industrial services','indirect services','direct services','commercial services.','','','c','','utme','2001',92,'Admin','2016-11-15 07:01:48','2020-07-22 21:30:04'),(746,'The partner that only contributes part of the capital used in the formation and running of a business is known as','a passive partner','an active partner','a dormant partner','a nominal partner.','','','c','','utme','2001',88,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:52'),(747,'One major advantage of a credit and thrift cooperative is that','it can approach government for a loan','it encourages saving habits','there are no legal restrictions','each member has a vote during meetings.','','','b','','utme','2001',97,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:53'),(748,'A form of ownership which exploits the strength of one partner to remedy the weaknesses of the other is a','joint partnership','cooperative','corporation','joint venture.','','','a','','utme','2001',97,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:54'),(749,'At the collapse of a business enterprise, the person appointed to dispose of the assets is called','a broker','an auctioneer','a liquidator','an auditor.','','','c','','utme','2001',97,'Admin','2016-11-15 07:01:48','2020-07-23 11:40:29'),(750,'Entrusting the management of a company to the courts to enable the settlement of the company’s obligations is an indication of','distress','closure','bankruptcy','liquidation.','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:56'),(751,'The financial instrument for borrowing in which the collateral is usually more than the amount borrowed is','trust certificate','detachable warrant','mortgage bond','convertible securities.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:57'),(752,'I.   Personal Savings, II.   Retained Earnings, III. Accrued Taxes. Which of the items above constitute internal sources of financing for companies?','I and II','I and III','II and III','I, II and III.','','','c','','utme','2001',107,'Admin','2016-11-15 07:01:48','2020-07-23 16:34:08'),(753,'The difference between total current assets and total current liabilities of a business is known as','quick ratio','liquidity ratio','working capital','circulating capital.','','','c','','utme','2001',99,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:59'),(754,'One of the reasons why wholesaling must continue is that','the tax paid by wholesalers on their profit enhances national revenue','by creating artificial scarcity, the wholesaler is enhancing competition in the economy','the wholesaler provides technical advice to the retailer','the gap between manufacturers and retailers is reduced by wholesalers.','','','d','','utme','2001',108,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:00'),(755,'A merchant wholesaler is referred to as','del-credere agent','a broker','rack jobber','a factor.','','','a','','utme','2001',89,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:01'),(756,'A pro-forma invoice is sent to inform a buyer about the','quantity of goods','prices of goods','designation of goods','quality of goods.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:02'),(757,'The balance of payments of countries is','a record of imports and exports','a systematic record of transactions among countries at a given time','the current and the capital accounts and their payments','the trade relationships and payments among nations.','','','a','','utme','2001',74,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:03'),(758,'The major procedures in the purchase and sale of goods are enquiry','quotation, order and invoice','placement, order and invoice','bargain, order and invoice','order, sale and invoice.','','','a','','utme','2001',87,'Admin','2016-11-15 07:01:48','2020-07-16 15:36:49'),(759,'The trade discount receivable by Mr. Bacus is','N= 4,500','N= 7,500','N= 10,500','N= 12,000.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',89,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(760,'If  Mr. Bacus fulfils his promise, he will be entitled to a cash discount of','N= 2,760','N= 3,000','N= 6,500','N= 9,500.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(761,'Bank Giro is a method of settling debt from a','customer to a bank','bank to a customer','customer to another','bank to another.','','','a','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:06'),(762,'Warehousing is a productive function because it increases the','quantity of goods','utility of goods','quality of goods','price of goods.','','','a','','utme','2001',88,'Admin','2016-11-15 07:01:49','2020-07-23 11:40:29'),(763,'A factor necessary for siting a warehouse is nearness to','raw materials','labour','capital','consumers.','','','d','','utme','2001',101,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:08'),(764,'Pooling of risk in insurance means that','compensations are paid out of a common fund','two people can pool their risks to be insured','two insurance companies can buy two policies','insurance companies should encourage taking risks','','','a','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:09'),(765,'The indemnification of Ama by his insurance company after a fire disaster means that he','has been guaranteed by the insurance company','will be cleared of any fault by the insurance company','has been covered by the insurance company','will be covered to the limit of the amount in the policy.','','','b','','utme','2001',109,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:10'),(766,'The major difference between insurance and assurance is that while insurance','takes care of uncertainty, assurance takes care of risks','takes care of risks, assurance takes care  uncertainty','hinges on probabilities, assurance is based on possibilities','is about indemnity assurance is about life in the future.','','','c','','utme','2001',96,'Admin','2016-11-15 07:01:49','2020-07-23 16:34:05'),(767,'A documentary bill will normally be accompanied by','sales invoice, bill of lading and insurance certificate','clean bill, bill of lading and insurance certificate','bill of lading, consular invoice and insurance certificate','consular invoice, FOB certificate and bill of  lading.','','','d','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:12'),(768,'Which of the following best describes the classification of computers?','Mini-computer, speed and size','Micro-computer, cost and abilities','Mini-computer, micro-computer and work station','Mini-computer, hybrid and digit','','','c','','utme','2001',103,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:13'),(769,'The temporary working area of the central processing unit is called the','C-D ROM','C-D RAM','ROM','RAM.','','','b','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:14'),(770,'The significance of money to modern economic systems is that it','is used as a means payment','promotes specialization and exchange','measures value and promotes exchange','causes inflation and deflation in the economy','','','c','','utme','2001',76,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:15'),(771,'One major characteristic of credit unions and thrift societies is that','the legal processes involved in their formation are rigid','membership compulsory to people in the same line of  business','the contribution of every member depends the member’s ability','a minimum of ten people in the same line of business can form the union','','','c','','utme','2001',104,'Admin','2016-11-15 07:01:49','2020-07-22 21:30:05'),(772,'The Nigerian Stock Exchange publishes a daily official list that gives full information on the','method of transactions agreed to by members','number of participating members in a day','changes in the prices and earnings of security','changes in the official rules set by the man','','','c','','utme','2001',88,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:17'),(773,'The main factors that determine the value stock on the Stock Exchange are dividend an','the psychology of the market','capital gain','capital appreciation','warrant payment','','','c','','utme','2001',104,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:18'),(774,'One of the main objectives of the Second- tier Securities Market in Nigeria is to','achieve a realistic exchange rate for the naira','eliminate currency  dealings in the black market','assist companies to raise capital','attract investment flow.','','','d','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:19'),(775,'The activities aimed at finding out customers’ needs and satisfaction can be described as','socio-marketing','macro-marketing','micro-marketing','conceptual marketing.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:20'),(776,'The most effective type of advertising for branded products is','direct advertising','indirect advertising','informative advertising','competitive advertising.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:21'),(777,'Which of these companies are more engaged in public relations activities?','I and II','I and III','II and IV','Ill and IV.','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','b','','utme','2001',99,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:22'),(778,'Which of these companies offers after-sales services?','IV','Ill','II','I','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','c','','utme','2001',81,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:23'),(779,'Who are the parties to the contract of renting the room?','Musa and Jacob','Musa and Audu','Adamu and Musa','Audu and Jocob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',99,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:24'),(780,'Who is the offeree in this contract?','Musa','Audu','Adamu','Jacob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',95,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:36'),(781,'The maximum number of shareholders in a public liability company is','twenty','fifty','one hundred','unlimited.','','','d','','utme','2001',87,'Admin','2016-11-15 07:01:49','2020-07-22 21:30:06'),(782,'One way by which government reduces the repatriation of capital   is through','nationalization','divestiture','indigenization','naturalization.','','','c','','utme','2001',85,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:46'),(783,'One of the major functions of a chamber of commerce is to','promote and protect trade, industry and agriculture','advise members on regulations of other countries','settle disputes that arise out of trade','publish books and periodicals desired by members.','','','a','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:47'),(784,'Departmentalization is an aspect of','planning','organizing','directing','controlling.','','','b','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:53'),(785,'A functional organizational structure is where','staff performing the same functions are grouped together','departments performing similar functions are grouped together','activities of similar nature are-grouped together','staff performing similar functions are grouped together.','','','c','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:55'),(786,'In the line type of organizational structure','the lines of authority are vertical','there is the application of division of labour','specialization is carried to a maximum degree','the lines of authority are horizontal.','','','c','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-23 11:40:30'),(787,'Proper disposal of waste by business firms is one way of discharging their','responsibility to government','environmental responsibility','community responsibility','responsibility to customers.','','','b','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:57'),(788,'One of the obstacles  to achieving the objectives of ECOWAS is','lack of a common currency','colonial linkages','sovereignty of states','language differences.','','','d','','utme','2001',100,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:58'),(789,'One of the main objectives of establishing the Niger River Basin Commission was to','embark on a comprehensive survey of the available water resources','carry out research for the development of fresh water fisheries','develop infrastructure to facilitate economic activities','promote trade among member-states to improve standards of living.','','','c','','utme','2001',85,'Admin','2016-11-15 07:01:50','2020-07-23 16:34:08'),(790,'The most important factor that delayed the development of commerce in Nigeria was','the inefficient means of communication','that there were few entrepreneurs','the unavailability of infrastructure facilities','that there were few developed markets.','','','c','','utme','2002',125,'Admin','2016-11-15 07:26:05','2020-07-14 13:04:00'),(791,'Secondary production has to do with changing the','shape of raw materials through construction operations','physical form of raw materials into finished goods','utility of raw materials by an engineering process','nature of raw materials through manufacturing processes.','','','b','','utme','2002',134,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:01'),(792,'The major responsibility of an entrepreneur is','employing all factors of production in the business','coordinating and determining the proportion of what to produce','planning and organizing all activities in the business','directing and controlling all the affairs of the business.','','','a','','utme','2002',124,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:37'),(793,'Which of the following best describes the scope of commerce?','All forms of commercial exchanges and the manufacturing industry','Buying and selling and the construction industry','All occupational exchanges relating to industries and commercial activities','Buying and selling as well as the extraction of natural resources.','','','c','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:03'),(794,'Capital as a factor of production can be used as','money that is regarded as asset','goods that are useful in business','input for further production','services that provide satisfaction','','','c','','utme','2002',135,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:04'),(795,'The agency that currently oversees the privatization and commercialization processes in Nigeria is the','Securities and Exchange Commission','Technical Committee on Privatization and Commercialization','Nigerian Stock Exchange','Bureau of Public Enterprises.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:08','2020-07-23 11:40:31'),(796,'Okeze contracted to sell TV sets to Ojo. Unknown to them, the sets were stolen in transit.   This contract may be terminated on the grounds of','bankruptcy','frustration','fraudulence','breach of contract.','','','b','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:37'),(797,'Which of the following countries are members the Lake Chad Basin Commission?','Niger and Cameroun','Benin and Niger','Chad and Benin','Nigeria and Mali.','','','a','','utme','2002',132,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:36'),(798,'A core investor in the current phase of privatization in Nigeria is one who','can afford to buy most the shares of the enterprises','will be at the core of the enterprises','can mobilize foreign currency equivalent to the value of the enterprises','has the technical know-how of the enterprises','','','a','','utme','2002',129,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:36'),(799,'The agency in Nigeria which ensures that products conform to government quality specifications is the','Standards Organization of Nigeria','Nigerian Consumers’ Association','Manufacturers’ Association of Nigeria','Nigerian Chamber of Commerce.','','','a','','utme','2002',125,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:37'),(800,'Awarding scholarships and sponsoring sports by a business organization are examples of','advertising strategy','economic responsibility','marketing strategy','social responsibility','','','c','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:09'),(801,'The commercialization of public enterprises aimed at','increasing efficiency and making the enterprises self-sufficient','advertising a promoting the goods and services of the enterprises','increased assistance and patronage of the enterprises by the public','selling the goods and services of the enterprises.','','','a','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-22 21:30:06'),(802,'An author’s exclusive right to his published an unpublished works is known as','authors right','constitutional right','patent right','copyright','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-23 11:40:29'),(803,'Under the endowment policy, the money handed over to the insured at the expiration of the stipulated time or at death is the','indemnity','surrender value','lump sum benefit','insurance premium','','','c','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:12'),(804,'The machine used for sending telex messages is known as a','radar','fax machine','Dictaphone','teleprinter.','','','b','','utme','2002',143,'Admin','2016-11-15 07:26:08','2020-07-23 11:40:29'),(805,'Which of these insurance principles requires a close connection between the actual loss suffered and the risk insured','Indemnity','Proximate cause','Contribution','Subrogation.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:14'),(806,'The unit through which results of a processed data are displayed is the','logic unit','display unit','control unit','output unit.','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:15'),(807,'Which of the following is used to inform the addressee that a registered parcel is ready for collection?','Express label','Counterfoil','Telegram','Slip.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:16'),(808,'The type of computer commonly found in offices is','laptop','desktop','the hybrid computer','the mainframe computer.','','','c','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:17'),(809,'The mode of transporting crude oil to the ports for export purposes is by','tanker','rail','road','pipeline.','','','d','','utme','2002',129,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:17'),(810,'The temporary insurance certificate issued to the insured before drawing up a policy is a','cover  note','testimonial','time policy','proposal  form.','','','a','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:18'),(811,'The bulls and bears in the Stock Exchange market help to minimize','the number of shares and bonds sold','price increases of securities','fluctuations in the prices of securities','the elasticity of the prices of securities.','','','a','','utme','2002',143,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:37'),(812,'Debentures differ from shares in that','they are secured on the company’s assets','ownership is open to the public','they form part of the capital of the business','rewards are usually paid out of profits.','','','c','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-22 21:30:16'),(813,'The Stock Exchange is a market where','long-term securities are sold','all types of securities are sold','short-term securities are sold','medium-term securities are sold.','','','b','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:27'),(814,'A retail cooperative society aims at','hoarding manufactured goods','cutting off the profit of middlemen','lending money to members at low interest rates','encouraging members to save money.','','','b','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:28'),(815,'A bill of exchange already accepted can be discounted by the holder in','the central bank','at least two banks','his bank','any bank.','','','d','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:29'),(816,'The document issued by the seller which gives details of the goods he sells is known as','catalogue','tender','price list','invoice','','','d','','utme','2002',120,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:30'),(817,'Given:  I.Retail; II.Export; III.Transport; IV.Import; V.Insurance; VI.Banking and finance; VII. Wholesale; VIII. Communication. Which of the above are aids to trade?','I, II,  III and VIII','III, V, VI and VIII','I, II, III and VI','II, V, VI and VII','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:31'),(818,'The organizational structure that relates the positions of specialists to the line managers is called','line structure','staff structure','line and staff structure','functional structure.','','','d','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:33'),(819,'A wholesaler who possesses the tittle to the goods he sells is known as','a merchant wholesaler','a multiple wholesaler','a general wholesaler','an agent wholesaler.','','','d','','utme','2002',139,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:34'),(820,'An important principle of a good organizational structure is','ideal standard','span of control','clarity of mission','adequacy of resources.','','','b','','utme','2002',128,'Admin','2016-11-15 07:26:09','2020-07-23 11:40:29'),(821,'A company that is registered with the Corporate Affairs Commission only without being enlisted on the Stock Exchange is a','public liability company','joint venture company','limited company','registered company.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:36'),(822,'A contract for the sale of goods involves the','producer, seller and the buyer of goods','offering of goods to customers','transfer of the title to goods for money','exchange of goods.','','','c','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:37'),(823,'The total of the share capital which a company would be allowed to issue is known as','called-up capital','paid-up capital','nominal capital','issued  capital.','','','d','','utme','2002',119,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:38'),(824,'The process of mobilizing, engaging  and maintaining workers to work for an organization is referred to as','staffing','selection','recruitment','employment.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:39'),(825,'Recognized members of the Stock Exchange who buy and sell securities on their own behalf are known as','bolls','jobbers','brokers','stags.','','','c','','utme','2002',124,'Admin','2016-11-15 07:26:09','2020-07-23 11:40:29'),(826,'Which of the following involves foreign trade?','Supermarkets','Chain stores','Departmental stores','Commodity markets.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:40'),(827,'Which of the following is a function of employers’ association?','Undertaking research on behalf of employees','Promotion of thrift in workers','Promotion of workers’ welfare','Dissemination of information through sponsored journals.','','','c','','utme','2002',147,'Admin','2016-11-15 07:26:09','2020-07-23 16:34:05'),(828,'Which of the following industries is normally located near the \tsource of its raw materials?','Footwear industry','Cement industry','Textile  industry','Automobile assembly.','','','b','','utme','2002',134,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:42'),(829,'One of the most important function of marketing is','encouraging research activities to meet needs','creating classes of merchants among businessmen','the extension of markets for businesses','providing finances to businesses','','','a','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:43'),(830,'Securities on which the buyers are not issued with certificates are called','authorized securities','inscribed securities','bearer securities','registered securities.','','','b','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-23 11:40:31'),(831,'In product pricing, which of these elements needs more consideration than others?','the demand for the product','the demography of the buyers of the product','the economic conditions in the market','the cost of producing the product.','','','d','','utme','2002',140,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:45'),(832,'The principal objectives of the Central Bank of Nigeria can be classified broadly into','bankers’ bank, lender of last resort and issuance of currency','service, currency management and financial intermediation','banking services, foreign exchange operations and open','markets operations service, monetary policy and developmental functions.','','','a','','utme','2002',145,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:46'),(833,'The letters E and OE stand for','errors of exception','errors  and omissions expected','estimated and order error','end of error.','','','b','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:47'),(834,'An important issue for consideration in the product element of the marketing mix is the','adequate promotion of the product','channel of distribution of the product','price of the product','planning and development of the product.','','','d','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-16 15:29:37'),(835,'group of companies is a collection of','subsidiaries and their holding company','firms','associates and their holding company','industries.','','','a','','utme','2002',141,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:49'),(836,'Which of the following is an example of trade associations?','European Union','National Marketing Board','Organization of African Unity','National Farmers’ Council.','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:50'),(837,'Which of the following determines the quality of goods that a retailer sells','The mode of contract of sales','The type of manufacturer','The regulations regarding sales in the area','The location of his shop.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:51'),(838,'An advantage of hire purchase to the consumer is the','economies of scale in production','possession of goods before payment','increase in turnover and profits','low interest rate chargeable.','','','b','','utme','2002',121,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:52'),(839,'The founders’ shares are usually referred to as deferred shares because the holders','are entitled to cumulative dividends','receive their dividends after other shareholders','receive   their   dividends   before   other shareholders','are not entitled to any dividends.','','','a','','utme','2002',131,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:53'),(840,'An example of a service -rendering trade association is','Nigerian Bar Association','Association of Nigerian Miners','Cocoa Farmers ’Association','Manufacturers ’Association of Nigeria.','','','a','','utme','2003',101,'Admin','2016-11-15 10:56:19','2020-07-23 11:40:28'),(841,'An obstacle to international trade is','trade imbalance between   countries','availability of  local market','quantity and quality of labour','cost of finance','','','a','','utme','2003',77,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:55'),(842,'The right  of ownership with respect to goods or property is','right of occupancy','proxy','title','certificate of occupancy','','','c','','utme','2003',107,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:56'),(843,'The main motive of chambers of commerce and trade associations is to','assist government in achieving its objectives','protect the interest of consumers','maximize profit','protect and promote the interests of members','','','a','','utme','2003',95,'Admin','2016-11-15 10:56:19','2020-07-23 16:34:07'),(844,'A pattern that shows the kinds of participants involved in the production, distribution and ultimate use of a product is referred to as','selection','strategy','structure','synergy','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:58'),(845,'Goods that are manufactured or acquired by the seller after the contract of sale are','specialty goods','future goods','specific goods','general goods','','','c','','utme','2003',90,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:00'),(846,'What was the amount paid by Ojo?','N382,500','N425,000','N363,375','N61,625','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','c','','utme','2003',91,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:01'),(847,'How much was the trade discount?','N42,500','N27,500','N22,500','N20,000','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','a','','utme','2003',97,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:02'),(848,'The basic function of the Nigerian Ports Authority is to','ensure that the right caliber of personnel is  employed at the ports','coordinate and regulate the activities of  shipping lines','facilitate and control the movement of goods and services into and out of the country','coordinate the activities of all the seaports in the country','','','d','','utme','2003',91,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:03'),(849,'The concept that refers to the sale, transfer or exchange of goods and services is','industry','trade','tariff','marketing','','','b','','utme','2003',98,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:04'),(850,'A guarantee given by one person or party to another in which \tthe integrity of the person is assured is','fidelity','term assurance','subrogation','indemnity','','','a','','utme','2003',86,'Admin','2016-11-15 10:56:20','2020-07-22 21:30:16'),(851,'A firm that adapts itself to delivering the desired satisfaction more effectively and efficiently than its competitors is said to be practicing','price concept','distribution concept','product concept','marketing concept','','','d','','utme','2003',107,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:06'),(852,'The payment made periodically in respect of an insurance policy entered into is known as','bond','commission','premium','surrender value','','','c','','utme','2003',92,'Admin','2016-11-15 10:56:20','2020-07-22 21:30:15'),(853,'An example of service rendered by NIPOST is','electronic mail','courier','telephone','mail delivery','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:09'),(854,'The focal point of marketing is','the competitor','the buyer','profit-making','sales','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:09'),(855,'The type of marine insurance which covers either damage or loss to the vessel and such as caused by it to other vessels is','hull insurance','time insurance','freight insurance','cargo insurance','','','a','','utme','2003',99,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:10'),(856,'The management function that makes the difference in intensity of behaviour is','coordinating','controlling','motivation','planning','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:24','2020-07-23 11:40:31'),(857,'One of the functions of seaports is the provision of','berthing and landing facilities','loading and off-loading facilities','control room for relaying radio messages','warehouses for storage of cargo.','','','b','','utme','2003',94,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:13'),(858,'The process of dividing tasks into jobs and departments and of delegating authority is known as','staffing','leading','directing','organizing','','','d','','utme','2003',98,'Admin','2016-11-15 10:56:25','2020-07-14 13:05:13'),(859,'Communication process involves the transmission of a message over a selected channel to the','receiver','audience','sender','encoder','','','b','','utme','2003',94,'Admin','2016-11-15 10:56:28','2020-07-14 13:05:15'),(860,'Stimulation of demand is a kind of communication in marketing which connotes','personal selling','sales promotion','advertising','merchandising','','','c','','utme','2003',88,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:16'),(861,'A functional structure is an organizational structure in which','abstract rules are applied','equity prevails','a specialist enforces his directives','there is no hierarchy.','','','c','','utme','2003',77,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:17'),(862,'Entrepreneurship mainly involves','risk-taking','initiating','skilled manpower','knowledge','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:26'),(863,'In the event of the liquidation of a company the first to be settled are','debenture holders','members  of the  board','preference shareholders','ordinary shareholders.','','','a','','utme','2003',102,'Admin','2016-11-15 10:56:29','2020-07-22 21:30:16'),(864,'The business organization established mainly for the purpose of carrying out specific assignments for a specific duration is a','joint venture','cooperative society','partnership','company.','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:28'),(865,'Which of these factors of production is relatively fixed in supply?','Capital','Entrepreneur','Human resources','Natural resources','','','d','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:29'),(866,'The location of a business is mostly influenced by','market outlet','management decision','capital','environment','','','d','','utme','2003',138,'Admin','2016-11-15 10:56:29','2020-07-27 09:52:42'),(867,'The evolution of commerce in Nigeria is traceable to the','period of barter economy as human needs became limitless','desire by human beings to satisfy their needs through the services of other people in the society','development of human civilizations and the desire to meet their needs','primitive stage of existence of  human beings.','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:31'),(868,'One of the requirements necessary for setting up a business is','registration','advertisement','knowledge of the business','documentation','','','c','','utme','2003',96,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:32'),(869,'The assembling of products into usable forms is known as','construction','manufacturing','formation','creation','','','b','','utme','2003',101,'Admin','2016-11-15 10:56:29','2020-07-22 21:21:37'),(870,'The government’s policy thrust on the business environment is to','promote experts','attract investors','be self-sufficient','increase production','','','b','','utme','2003',87,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:33'),(871,'Social responsibility is the ability of an organization to','tackle the socio-economic problem of its community','meet the needs of its community','contribute to sustaining   and developing its community','operate without disrupting the very essence of the environment.','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:34'),(872,'The act of a person employing another to enter into a contract on his behalf is known as','business','sale of goods','bilateral agreement','agency','','','d','','utme','2003',93,'Admin','2016-11-15 10:56:29','2020-07-22 21:30:04'),(873,'The ECOBANK is the initiative of','some well-meaning Nigerian shareholders','the Federal Government of  Nigeria','West African states to foster trade','the Lagos State Government to enhance capital mobilization.','','','c','','utme','2003',93,'Admin','2016-11-15 10:56:29','2020-07-23 16:34:08'),(874,'Privatization is concerned with','equal ownership between  the public and the government','the dilution of ownership among the public','the individual ownership of companies','government ownership of companies.','','','c','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-23 16:34:07'),(875,'Electronic computers differ from human beings in that they process data and minimize errors in a','faster and more accurate manner','more organized manner','faster but less accurate manner','slower but more accurate manner','','','a','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-22 21:30:06'),(876,'A major benefit derivable from the privatization and commercialization of public enterprises in Nigeria is','increase in wages','employment generation','information technology','revenue generation','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:46'),(877,'The device which interprets and carries out the instructions presented to it by the computer program is known as','software','microprocessor','mouse','hard-disk','','','b','','utme','2003',96,'Admin','2016-11-15 10:56:33','2020-07-14 13:05:47'),(878,'The market structure, business conditions and financial systems in Nigeria constitute the','economic environment','political environment','cultural environment','technological environment','','','a','','utme','2003',81,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:53'),(879,'The protection of consumers against exploitation by manufacturers is to ensure','that there are varieties of products','that the right quality of goods and services is sold','increase in production capacity','increase in the level of consumer awareness.','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:54'),(880,'The most widely used computer language that focuses on solving science-oriented problems is','FORTRAN','BASIC','ADA','COBOL','','','a','','utme','2003',111,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:55'),(881,'Banks are engaged in the business of buying and selling of','bills of exchange','instruments of credit','intangible products','land','','','a','','utme','2003',97,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:56'),(882,'A source of short-term finance to companies is','share capital','debentures','retained earnings','corporate tax','','','c','','utme','2003',96,'Admin','2016-11-15 10:56:34','2020-07-22 21:21:37'),(883,'The body charged with the responsibility to register shares for subscription on the stock market in Nigeria is the','Securities and Exchange Commission','Nigerian Stock Exchange','Nigerian Deposit Insurance Company','Central Bank of Nigeria,','','','a','','utme','2003',93,'Admin','2016-11-15 10:56:34','2020-07-23 11:40:28'),(884,'An essential factor for evaluating the different sources of funds for a business is the','decree establishing the business','ownership structure of the business concern','size and the type of the business','burden of cost and repayment','','','b','','utme','2003',85,'Admin','2016-11-15 10:56:34','2020-07-22 21:30:15'),(885,'Money can simply be referred to as a','medium of exchange','means for the settlement of debts','durable asset for doing business','stands of value','','','a','','utme','2003',104,'Admin','2016-11-15 10:56:34','2020-07-14 13:06:00'),(886,'A type of  long-term loan granted to companies with fixed interest as well as with redeemable and irredeemable features is referred to as','a debenture','a bond','a term loan','an overdraft','','','a','','utme','2003',102,'Admin','2016-11-15 10:56:34','2020-07-14 13:06:01'),(887,'Public debt management is one of the functions of a','merchant bank','central bank','commercial bank','development bank.','','','b','','utme','2003',202,'Admin','2016-11-15 10:56:38','2020-07-14 13:06:02');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `crk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=696 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `crk` VALUES (1,'In Jesus’ teaching on the mount, the only justifiable reason for divorce is ','indolence ','insubordination ',' infidelity ','infertility','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:54'),(2,'According to John’s Gospel, Lazarus was from: ','Jerusalem  ','Teberias ','Bethany ','Galilee','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:55'),(3,'Jesus’ new commandment according to the Gospel of Jesus of John is ','salvation ','love ','peace ','spirit','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:56'),(4,'The thief as described by Jesus comes to ','destroy, kill and steal ','destroy, steal and kill ','kill, destroy and kill ','steal, kill and destroy ','','','d','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:57'),(5,'The agony of Jesus in the Garden of Gethsemane is a ','sign of abandonment ','manifestation of human weakness ','punishment ','preparation for his death','','','d','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:58'),(6,'Eutychus fell from the third storey to the ground when Paul  prolonged his sermon at ','Troas ','Ephesus ','Miletus ','Corinth.','','','a','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:59'),(7,'Charismatic leaders in the Book of Judges arose in Israel to ','revive faith in Yahweh ','rally the tribe together ','lead the Israel to battles ','settle dispute','','','c','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:01'),(8,'What did God create on the fifth day? ','the firmament  ','the two great light ','water under the heaven ','living Creature','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(9,'Joshua and Caleb were from the tribe of ','Judah and Rueben ','Reuben and Dan ','Ephraim and Reuben ','Judah and Ephraim','','','d','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:03'),(10,'Manahem, the son of Gadi reigned over Israel for ','eight years ','twenty years ','six month ','ten years.','','','d','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:04'),(11,'The death of Adonibezek in Bezek was a typical proof of ','cowardice ','nemesis ','insanity ','absurdity','','','b','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:05'),(12,'In order that Benjamin might be brought to Egypt, Joseph  ','Reuben ','Judah ','Simon ','Zebulon','','','c','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:06'),(13,'When Paul came to Rome, the first set of people to whom he preached were the ','Romans ','Jews ','Greeks ','Samaritans.','','','b','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:07'),(14,'The three sons of Noah Sdhem, Ham and ','Lot ','Hirah ','Cain ','Japeth.','','','d','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:07'),(15,'The renowned interpreters of the Mosaic Law in the time of Jesus were the ','Sadducees ','Scribes ','Herodians ','Pharisees','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:08'),(16,'The mother of Esau is ','Ruth ','Ester ','Rebecca ','Jezebel  ','','','c','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:09'),(17,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) Who was the speaker? ','Joseph ','Jacob ','Job ','James','','','b','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:10'),(18,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29)  When did he say this? ','When he was about to die ','When he was seriously sick ','When he offended God ','When his brother cheated him','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:11'),(19,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) What was his wish? ','he wanted to buried at Canaan in the cave at Ephron ','he wanted to be buried at Jericho ','he wanted to commune with his ancestors ','he wanted to be closed to his fathers.','','','a','','post-utme','2006',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:12'),(20,'Who was authorized by God to go and liberate the Israelites the Egyptian bondage? ','Joshua ','Daniel ','Solomon ','Moses.','','','d','','post-utme','2006',73,'Admin','0000-00-00 00:00:00','2020-07-27 02:54:01'),(21,'The names of the two kings of Jericho destroyed by the Israelites during the conquest were ','Adonija and Haggith ','Shion and Og ','Zadok and Benaiah ','Hiram and Jeroboam.','','','b','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:14'),(22,'Who is an atheist? ','someone who does believe in God ','someone who rejects completely the idea of a divine being ','someone who believes that it is impossible to know if there is God or not ','someone who abuses religious people.','','','b','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:15'),(23,'What is meant by the Christian doctrine that God is Trinity? ','the idea started in Trinidad and Tobago ','God is three persons in one ','God is omnipotent ','God is the Holy Spirit','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:16'),(24,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus                              ','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:17'),(25,'The person who the Bible calls the son of consolation is ','Barsabas ','Barabbas ','Barnabas ','Bathsheba','','','c','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:18'),(26,'Who do people say the son of man is? Jesus asks this question to know people’s ','desires ','demand  ','mind ','opinion','','','c','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(27,'In Peter’s teaching,” God…………..the proud and gives grace to the humble','receives ','relegates ','resists ','restores.','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:20'),(28,'The lesson which Jesus teaches in the parable of the Good Samaritan is that your neighbor is','only your friend  ','your next of kin  ','a distant friend ','anyone who needs your  help','','','d','','post-utme','2007',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:21'),(29,'Amram and Jochebad gave birth to : ','Mirian ','Jedida ','Jethro ','Hur','','','a','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:22'),(30,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Zipporah and Pauh ','Pauh and Miriam ','Shiphrah and Zipporah ','Shiprah and Puah','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-27 02:54:01'),(31,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:23'),(32,'Daniel was delivered from the den of lions for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power','','','b','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:24'),(33,'Which of the following carried Judah into captivity ','Pharaoh Neco of Egypt ','Goliath of Philistia ','Assyrian ','Nebuchadnezzar of Babylon','','','d','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:25'),(34,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','slaughter of all his sons ','city of Jerusalem ','feasting of the children of Israel ','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:26'),(35,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-27 02:54:01'),(36,'The king of Persia who made it possible for the return of the exiles from Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:28'),(37,'The meaning of Emmanuel is ','laughter ','“for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:29'),(38,'“Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:30'),(39,'One of the following said: “the lion has roared who will not fear? The Lord has spoken, who can  but prophesy?” ','Nathan ','Jeremiah ','Amos ','Hosea','','','c','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:31'),(40,'Where did Paul cure a slave girl who had a spirit of divination ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:32'),(41,'Joshua’s first victory was over the people of ','Ai ','Gibeon ','Gilgal ','Jericho','','','d','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:33'),(42,'Josiah’s reign was popular because of his ','allies ','victory ','violence ','reforms','','','d','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:34'),(43,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:35'),(44,'Who baptized the Ethiopian Eunuch? ','Paul ','peter ','Philip ','Rufus','','','c','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:36'),(45,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:36'),(46,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah.','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:38'),(47,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:38'),(48,'The person who the Bible calls the consolation is:  ','Barsabbas ','Barabbas ','Barnabs ','Bathsheba','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:39'),(49,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','Slaughter of his son ','city of Jerusalem ','feasting of hiss children of Israel','','','b','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:40'),(50,'Daniel was delivered from the den of lion for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power.','','','b','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:41'),(51,'Name three places Christian religious people look up to find the truth about the nature of God','In the sacred scripture ','In the religious leader ','In the church ','In their conscience.','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:42'),(52,'Explain why Jesus was identified as the lamb by John (Jn:1:29 ) ','lamb of God is a figurative language which describes Christ sacrificial mission in the word ','he is being compared to the Passover Lamb that would atone for the sins of all world ','Because the lamb is attentive to his owner ','it shows patience, meekness, gentleness and innocence','','','b','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:43'),(53,'Who do people say the son of man is? Jesus asks this question to know people’s ','desire ','demand ','mind ','pinion','','','c','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:44'),(54,'In Peter’s teaching,” God…………the proud and gives grace to the humble ','receives ','relegates ','resists ','restores','','','c','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:45'),(55,'The lesson, who Jesus teaches in the parable of the Good Samaritan is that your neighbor is ','only your friend ','your next of king ','a distant friend ','anyone who needs your help','','','d','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:46'),(56,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus','','','d','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(57,'Which of the following carried Judah into captivity ','pharaoh  Neco of Egypt ','Goliath of philistia ','Assyrians ','Nebuchadnezzar of Babylon','','','d','','post-utme','2008',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:48'),(58,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:49'),(59,'Amram and Jochebad gave birth to : ','Miriam ','jedida ','Jethro ','Hur','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:49'),(60,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Ziporah and Puah ','Puah and Miriam ','Shiphrah and Zipporah ','Shiphrah and Puah','','','d','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:50'),(61,'The king of Persia who made it possible for the return of the exiles form Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:16'),(62,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2008',58,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:17'),(63,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah','','','c','','post-utme','2008',58,'Admin','0000-00-00 00:00:00','2020-07-14 13:44:18'),(64,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2008',57,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:54'),(65,'The meaning of Emmanuel is ','laughter ','for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:55'),(66,'Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:56'),(67,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:57'),(68,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:58'),(69,'One of the following said: “the lion has roared who will not fear? ','Nathan ','Jeremiah ','Amos ','Hosea','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:59'),(70,'Josiah’s reign was popular because of his ','Allies ','victory ','violence ','reforms','','','d','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:00'),(71,'Where did Paul cure a slave girl who had a spirit of divination? ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:01'),(72,'Who baptized the Ethiopian Eunuch? ','Paul ','Peter ','Philip ','Rufus','','','c','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:02'),(73,'Joshua’s first victory was over the people of ','Ai ','Gideon ','Gilgal ','Jericho ','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:03'),(74,'“There shall be neither dew nor rain this year except by my word” Who said this?','Moses ','Pharaoh ','Elijah ','Esther ','','','c','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:04'),(75,'In the case before Solomon over the deal and the living, child the mother of the dead child supported. ','Giving the living child to her opponent ','Killing the living child ','joint ownership of the living child ','king Solomon having the living child','','','b','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:04'),(76,'Before Moses died. God appointed ………. to succeed him ','Aaron ','Balaam','Joshua ','Manasseh ','','','c','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:05'),(77,'Those bitten by the serpent were treated by ','Drinking from the Red sea ','fasting for seven day ','looking at the bronze serpent ','call upon the lord ','','','c','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:06'),(78,'In order that Benjamin might be brought to Egypt, Joseph detained ','Ruben ','Levi ','Jacob ','Simoen ','','','d','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:07'),(79,'Those inspired by God to lead the tribes of Israel in battle were the ','Judges  ','Captains of Guard  ','priest  ','prophet  ','','','a','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:08'),(80,'God told Samuel that he, would punish Eli because he  ','did not correct his son’s sinful behavior ','did not offer sacrifice as the: Law ','did not warn the people of Israel to stop surfing ','Warned his sons against rape and drunkenness','','','a','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:09'),(81,'The sun stood still when ','Moses led Israel across the Red sea ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorite at Gideon ','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:10'),(82,'Who is reputed for pulling down the altar of Baal at the risk of annoying his father? ','Joseph ','Jesse ','Gideon   ','Samuel ','','','c','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:11'),(83,'In the trade treated between King Solomon and Lebanon, Solomon was to supply wheat and oil while Hiram was to supply','Grains only ','precious stories ','wheat advice ','Timber ','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:12'),(84,'Which prophet cried thus “woe is me” for lost, I am a man of unclean lips ','Hosea ','Jeremiah ','Isaiah ','Micah ','','','c','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:13'),(85,'Hosanna means  ','Ride on in majesty ','Ride on Glory ','Ride on to die ','Save me','','','d','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:14'),(86,'The conversion of Paul was made possible by','Simeon ','Zacchaccus ','the risen Lord ','Mathew ','','','c','','post-utme','2009',60,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:15'),(87,'Let his habitation be made desolate, and let there be no one to live in it’ who is being referred to here?  ','King soul ','Judas Iscariot ','Stephen ','Barnabas ','','','b','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:16'),(88,'The proconsul when Paul arrived in commit was called','Festus ','portions ','Pilate ','Gallio ','','','d','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:17'),(89,'‘Now I known that Lord has sent his angel to deliver me ……”who said this? ','Joseph ','Moses ','Paul ','Peter ','','','d','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:18'),(90,'The seven deacons were appointed by ','conduct a mission to the Gentiles','Replace the twelve ','Lead the church in Jerusalem ','Help in the distribution of food ','','','d','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:19'),(91,'What did God create on the 6th day ','The firmament ','light ','Dry land and sea ','man and living creatures ','','','d','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(92,'Joshua’s first victory was in ','Ai ','Gibeon ','Jordan ','Giligal ','','','c','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:20'),(93,'In the parable of the sower, the seeds on the good ground represent those who ','Accept and live by the world of God ','feed the poor ','Have and love riches ','Give alms in market places ','','','a','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:21'),(94,'Which prophet encouraged Jeroboam I to  revolt at the initial stage? ','Micaiah ','Jeremiah ','Nathan ','Joel ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:22'),(95,'‘This had is gone: and where shall I go’ who is being referred to here ','Isaac ','Joseph ','Peter ','Silas ','','','b','','post-utme','2009',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:23'),(96,'According to Psalm 51, the sacrifice acceptable to God is','A clean hear ','Obedience ','A blemish less lamb ','A broken spirit ','','','c','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-26 19:30:54'),(97,'A would –be apostle who puts his hand to the plaughjsa and looks back lacks ','faith ','Kindness ','Repentance ','Total commitment ','','','d','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:25'),(98,'For which of these prophets of God did the Bible record explicitly to have abandoned an agribusiness for a call to serve God? ','Elisha ','Ezekiel ','Elijah ','Obadiah.','','','a','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:26'),(99,'Why did David spare the life of Saul at Ziph? ','he recognized Gods anointing on Saul ','Saul was also an Israelite ','He did not want blood shed ','He was Saul’s in- law','','','a','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:27'),(100,'Deborah was a judge when Israel was under the yoke of ','Moab ','Midian ','Canaan ','Philistine','','','c','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:28'),(101,'The treatment of those  bitten by fiery serpent was to ','drink from the Red sea ','look at the bronze serpent ','fast for seven days ','call upon the lord','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:29'),(102,'Which of these was detained by Joseph in order that Benjamin might be brought to Egypt ','Reuben ','Levi ','Judah ','Simon','','','d','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:30'),(103,'In the biblical account of creation, man was permitted to ','plant fruit trees for food ','water the garden ','make garment of hides and skin ','name all the creatures','','','d','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:31'),(104,'Each of these spies sent out by Moses on God’s command to report on the nature of the promised land was a ','great warrior ','wise judge ','priest ','leaders in his own tribe','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:32'),(105,'God reveal to Samuel that he was going to punish Eli because he ','did not correct his sons sinful behavior ','did not offer sacrifice as the law required ','did not warn the people of Israel to stop sinning ','warned his sons but did not punish them','','','d','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:33'),(106,'The sun stood still when ','Moses led the Israelites out of Egypt ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorites at Gideon','','','d','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:34'),(107,'When was this statement made? ‘I repent that I Made Saul king \\'','at the anointing of Saul ','When Saul failed to ray ','When Saul disobeyed God over Amalek ','When Saul finished the morning offering','','','c','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:35'),(108,'The commander of David’s army was ','Abner ','Joab ','Abiathar ','Adonijah','','','b','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:36'),(109,'That was the sin of David that involved Bathseba? ','Murder ','adultery ','dishonesty ','arrogance','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:37'),(110,'What is the meaning of Emmanuel? ','Son of Emmaus ','God is our Redeemer ','God with us ','Saviour','','','c','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:38'),(111,'What specific reply did John the Baptist give to the soldiers during his preaching ','collect no more than is appointed you ','do not begin to say to yourselves: we have Abraham as our father ','bear fruits that befit repentance ','be content with your wages','','','d','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-15 03:50:53'),(112,'Jesus taught that one should make friends quickly with one’s ','enemy ','neighbor ','master ','accuser','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:52'),(113,'The Pharisees and the Scribes accused the disciples of Jesus transgressing the tradition of the elders because they ','did not regard synagogue rules ','did not pray before meals ','ate with unwashed hands ','disobeyed the elders','','','c','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:53'),(114,'If anyone would be first, he must be last of all and servant of all. What does this saying of Jesus teach? ','endurance ','lack of ambition ','humility ','relaxation','','','c','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:53'),(115,'Which religious groups asked Jesus about payment of taxes to Ceaser? ','Pharisees and Sadducces ','Pharisees and Herodians ','Sadducces and herodians ','Herodians and Zealots','','','b','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:54'),(116,'To whom was the body of Jesus Christ given for burial after His death? ','Nicodemus the Pharisee ','Simon of Cyrene ','Simon the disciple ','Joseph of Arimathea.','','','b','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:55'),(117,'Paul was accused of apparently being a preacher of foreign divinities in Athens because he preached Jesus and the ','Cross ','Law ','resurrection ','second coming','','','c','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:56'),(118,'What specifically makes Samson a unique prophet of God? ','He was a Nazarene ','He loved honey ','He killed many at his death ','He spoke with power in riddles','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-15 03:50:53'),(119,'“It is not the sound of shouting for victory, or the sound of the cry of defeat, but the sound of singing that I hear” When was this statement made? ','at the consecration of the Israelites ','at the crossing of the Red Sea ','during the fall of Jericho ','in a strange worship of a god','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:58'),(120,'“Blessed be the Lord God of Israel is a hymn of praise by ','the virgin Mary at the Annunciation ','Zachariah at the birth of John the Baptist ','Simeon at the presentation of Jesus in the temple ','Elizabeth at the visit of Mary','','','b','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:59'),(121,'The shema emphasizes the ','unity of God ','richness of the spirit of God ','omnipotence of God ','crucial role o’ Israel in the world.','','','c','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:00'),(122,'The expression ‘dry bones’ in Ezekiel refers to ','an Israelites proverb ','the whole house of Israel ','the slain in the valley ','sinful Israelites and Judean','','','b','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:01'),(123,'What Josiah, the king of Judah, is best remembered for in Jewish history is ','His ability to destroy all the shine of Baals','His order that the bones and tombs of the prophets of God must be preserved ','His strong opposition to Pharaoh-Neco of Egypt ','His reparation of the temples of God','','','d','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:02'),(124,'After receiving an order from God, Jonah went down to…………….  ','Joppa ','Tarshish  ','Nineveh','Jerusalem ','','','b','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:03'),(125,'True religion, according to Amos’ submission, is the one in which  ','God is always appeased with sacrifices and tithes ','Foods and drinks are served as a mark of love ','Justice and righteousness flows like an endless stream  ','Feast and solemn assemblies play important roles ','','','c','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:04'),(126,'The last born of Gomer for Hoshea was ………….  ','Jezreel','Loammi ','Diblaim  ','Loruhamah ','','','b','','post-utme','2011',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:05'),(127,'According to Paul in Romans, the law and the prophets bore witness to the righteousness of God but man could not be justified until he  ','Had faith in Jesus ','Saw the glory of God ','Made a serious personal effort ','submitted wholly to the law ','','','a','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:06'),(128,'One of the following was not among the religious sects in the New Testament ','The Pharisees','The Nazarenes ','The Essences   ','The Sadducees','','','c','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:06'),(129,'One of the following  is not correct about the order of creation in the Creation Stories ','the evening came before the morning ','darkness came before light','animals were created before man ','the morning came before the evening','','','d','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:07'),(130,'What was Cain’s immediate reaction to the acceptance of Abel’s offering?','He offered another sacrifice ','He was angry and his countenance fell ','He was angry with God','He was angry with Abel ','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(131,'Pick the odd out of the following characters:  ','Saul   ','David','Jonathan','Solomon','','','c','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:09'),(132,'“Talitha cumi”  means  ','Dorcas, Arise','Little girl, I say to you, arise ','Thy will be done','Jesus is coming','','','b','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:10'),(133,'Who according to James blaspheme the honourable name by which Christians are called','Non believers','Pagan rulers','Antichrists','Rich people','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:11'),(134,'Who was the last person Jesus appeared to after his resurrection according to Paul?','Mary Magdalene','Joseph of Arimathea  ','Paul','Thomas','','','c','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:12'),(135,'How many disciples of Jesus Christ were fishermen? ','two  ','three  ','four','five','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:13'),(136,'Who among the seven deacons was an evangelist who had four daughters who prophesied?  ','Stephen','Philip ','Barnabas   ','Nicholas','','','b','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:14'),(137,'“God has given your enemy into your hand this day, now, therefore, let me pin him to the earth with one stroke of the spear, and I will not strike him twice”. This statement was made to David by','Abishai ','Abner    ','Ahimelech ','David’s armour bearer','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:15'),(138,'The phrase ‘you cows of Bashan’ referred to ','Cows in the land of Bashan  ','The fat and greedy men of Israel who oppress the priest ','The fat and greedy women of Israel who oppress the poor  ','The fat rich women of Samaria who oppress the poor.','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:16'),(139,'The book of _______ mostly emphasized social justice ','Amos ','Ezekiel  ','Hoshea  ','Isaiah.','','','a','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:17'),(140,'Among the spiritual gifts, love is supreme because it ','facilitates development ','gives room for friendship ','has eternal value ','promotes understanding','','','c','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:17'),(141,'John the Baptist describes Jesus to his two disciples as the ','beloved Son of God ','great one of Israel ','holy one of God','lamb of God.','','','d','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:18'),(142,'Joseph’s brothers hated him the more because ','he dreamed about his future dominion over his family members ','he used to give his father evil reports about them ','his father had him at his old age ','his father made a special robe for him','','','a','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:19'),(143,'After eating the forbidden fruit Adam’s and Eve’s eyes opened and they realized that they ','had sinned against God','had disobeyed God   ','were naked  ','had been deceived by the serpent.','','','c','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:20'),(144,'What did Ahab do to Prophet Micaiah for speaking the truth about the war between Israel and Syria? ','he promoted him ','he gave him a gift ','he denied him any fox ','he imprisoned him.','','','d','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:21'),(145,'The Amalekites who opposed the Israelites in the wilderness were from the lineage of  ','Benjamin ','Jacob ','Esau ','Reuben','','','c','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:22'),(146,'During the period of three and a half years of drought in Israel, the man who hid one hundred prophets of God in a cave was  ','Isaiah  ','Lisha ','Elijah ','Obadiah','','','d','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:23'),(147,'During his first missionary journey, Paul first recorded sermon was delivered at  ','Perga   ','Iconium ','Antioch','Lystra ','','','c','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:24'),(148,'In his second letter to the Christians in Thessalonians, Paul admonished them to have nothing to do with anyone who refused to obey what he wrote in the letter. What did Paul think would happen to the person?  ','The person would be encouraged  ','The person would be ashamed  ','The person would be disturbed  ','The person would repent','','','b','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:25'),(149,'In the Sermon on the Mount, the meek are blessed because  ','They shall see God  ','They shall be exalted  ','They shall inherit the earth  ','They shall be called sons of God ','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:26'),(150,'Which of the following is not a natural miracle:  ','Stilling of the storm  ','Walking on the sea  ','Raising of Lazarus from the dead  ','Feeding the five thousand','','','d','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:27'),(151,'The prophet whose message was primarily on social justice and true religion is  ','Isaiah  ','Agabus  ','Amos  ','Jeremiah','','','d','','post-utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:28'),(152,'The prophet who prophesied that Paul would be arrested in Jerusalem is  ','Isaiah  ','Agabus  ','Philip  ','Stephen  ','','','b','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:28'),(153,'One of the lessons one can derive from the story of Deborah the Prophetess is that  ','Women are not good warriors  ','Women should not be allowed to take leadership roles  ','Women’s rights should be fought for by all ','God can use anyone regardless of their gender and tribes.','','','b','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:29'),(154,'One of the following is not among the reasons why Jesus taught in Parables  ','to fulfill the prophecy in Psalm 78:2  ','to create understanding  ','to make people learn the unknown through the known  ','to show the omniscient power of Jesus','','','b','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:30'),(155,'The disciple in Damascus who prayed for Saul (Paul) to receive his sight after his conversions was  ','Ananias ','Sapphira  ','Barnabas  ','Thomas ','','','a','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:31'),(156,'According to James, one of the causes of wars among Christians is ','their passions  ','their wickedness  ','their faith without work  ','their pride','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:32'),(157,'One of the following was not among the decisions reached at the Council of Jerusalem concerning the Gentiles who became Christians:  ','That Gentiles should obtain from what has been sacrificed to idols  ','The Gentiles should abstain from blood  ','That Gentiles should abstain from what is strangled ','That Gentiles should abstain from love of the world ','','','d','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:33'),(158,'“Thy glory, O Israel upon thy high places! How are the mighty fallen! Tell it not in the streets of Ashkelon… How  are the mighty fallen in the midst of the battle!” The above dirge was written by David when  ','He killed Goliath  ','Uriah the Hittite died  ','Saul and Jonathan died  ','Abner was killed by Joab','','','c','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:34'),(159,'Who was one of the Seven Deacons who had four daughters who were prophetesses?  ','Nicolaus  ','Stephen  ','Prochorus  ','Philip ','','','d','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:35'),(160,'According to the Letter to the Hebrews, why should Christians lay aside every weight and sin which clings so closely?  ','Sin is contagious  ','Christian can easily be influenced by sinners  ','Christians are surrounded by so great a cloud of witness  ','No sinner will inherit the kingdom of God ','','','c','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:36'),(161,'“To obey is better than sacrifice” came from  ','Prophet Daniel  ','Prophet Ezekiel  ','Prophet Elijah  ','Prophet Samuel ','','','d','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:37'),(162,'The three sons of Saul who lost their live on Mount Gilboa were  ','Jonathan, Ishbosheth and Abinadab  ','Abinadab, Jonathan and Ishbosheth  ','Jonathan, Abinadab and Malchisua  ','Ishbosheth, Malchishau and Abinadab','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:38'),(163,'The original name of Shadrach was  ','Daniel  ','Mishael  ','Hananiah  ','Azariah','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:39'),(164,'The person who was invited to nurse Moses was ','Jochebed  ','Puah  ','Shiphrah  ','Miriam ','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:39'),(165,'“… But let judgment run down as waters, and righteousness as a mighty stream… “Fairness, judgment and righteousness were set aside during the time of  ________ for burnt and meat offerings.','Amos  ','Hosea  ','Ezekiel  ','Hezekiah ','','','a','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:41'),(166,'Eli’s inability to discipline his sons led to all the following except  ','God’s curse on his family  ','the extension of his life span  ','the cancellation of priesthood from his lineage','the death of his sons','','','b','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:42'),(167,'Who was the King of Judah who witnessed the second deportation?  ','Gedaliah  ','Jehoiachin  ','Zedekiah ','Jehoiakim','','','c','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:42'),(168,'Paul, the apostle to the gentile, was a native of  ','Perga in Pamphylis  ','Rome  ','Jerusalem  ','Tarsus ','','','b','','post-utme','2012',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:43'),(169,'In the Sermon on the Mount, Jesus taught his disciples that whenever they faced persecution, they should  ','be more serious with their drive for souls ','be rejoiced and be exceedingly glad  ','withdraw and  be less active  ','resist persecution and fight for their rights  ','','','b','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:44'),(170,'According to Peter, Judgment of God must first begin in  ','the house of God  ','the public places  ','the midst of criminals ','the government auditoria ','','','a','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:45'),(171,'Paul told the believers in Corinth that no one can say Jesus is Lord except by  ','knowledge  ','revelation  ','grace  ','the Holy Spirit ','','','a','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:46'),(172,'Render to Caesar the things that they are Caesar’s and to God the things are God’s, the above quotation emphasizes  ','Obedience to divine authority  ','Striking a balance between civil and divine authorities ','Disobedience to civil authority  ','Total rejection of both divine and civil authorities','','','b','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:08'),(173,'The women sang and said David slain his ten thousands and Saul his  ','five thousands   ','thousand  ','thousands   ','six thousand','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:09'),(174,'Israel went into Assyria captivity in','720BC  ','730 AD   ','750BC','722 BC','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:10'),(175,'A prophet mostly emphasized the holiness of God. This prophet was  ','Hosea  ','Jeremiah  ','Ezekiel   ','Isaiah','','','d','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:11'),(176,'One of the following was not among the religious sects in the New Testament  ','The Pharisees   ','The Nazarenes','The Essenes','The Sadducees','','','c','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:12'),(177,'“Talitha cumi” means','Dorcas, Arise   ','Little girl, I say to you, arise  ','Thy will be done','Jesus is coming','','','b','','post-utme','2013',57,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:12'),(178,'Who was the secretary employed by Jeremiah to write his prophecy?','Amanuensis  ','Amos  ','Baruch  ','Joshua','','','c','','post-utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:14'),(179,'Who among the seven deacons was an evangelist  who had four daughters who prophesied?  ','Stephen  ','Philip   ','Barnabas   ','Nicholas','','','b','','post-utme','2013',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:15'),(180,'The son of Solomon who made unwise decisions was ….','Jeroboam      ','Rechoboam','Rehoboam    ','Asa','','','c','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:16'),(181,'The book of ____ mostly emphasized social justice','Amos   ','Ezekiel   ','Hoshea','Isaiah','','','a','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:16'),(182,'In one of the missionary journeys, Paul was stoned   to a state of coma in  ','Antioch in Pisidia   ','Iconium  ','Lystra   ','Antioch of Syria','','','c','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:17'),(183,'Moses spoke  to the Israelites to fear not, but be calm, confident and see the salvation of God at  ','Pi-Hahirotti   ','Meribah   ','Wilderness of Sinai ','d.Elim','','','a','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:18'),(184,'One of the following is not in the Pentateuch  ','Exodus    ','Judges     ','Leviticus   ','Numbers','','','b','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:19'),(185,'The sons of Samuel who did not walk in his ways were:','Phinehas and Hophni    ','Hophni and Amos  ','Joel and Phinehas        ','Abijah and Joel','','','d','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:20'),(186,'What was the second temptation of Jesus according to the Gospel according to Luke?','The Devil wanted Jesus to worship him  ','The Devil wanted Jesus to deny God','The Devil wanted Jesus to jump from the pinnacle of the Temple    ','The devil wanted Jesus to turn stones to bread','','','a','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:21'),(187,'Jonah refused to go to Nineveh because  ','Ninevites were in human and wicked','God was merciful, gracious and could forgive them  ','he was timid to deliver the message  ','he did not want to endanger his life','','','b','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:22'),(188,'‘Those who honour me I will honour , and those who despise  me shall be lightly esteemed.’ Who was being addressed?  ','Eli   ','Samuel','Hophni   ','Joshua','','','a','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:23'),(189,'Amos reference to ‘cows of Bashan’ was a metaphoric allusion to  ','women of Samaria  ','rich people of Samaria   ','poor people of Samaria  ','illustrious sons of Samaria','','','a','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:24'),(190,'Amos explained true religion as  ','singing of praises to God  ','self-righteousness','fasting and praying  ','being just and righteous','','','d','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:25'),(191,'Who was the prophet who said “I will put my law within them, and will write it upon their heart….”?  ','Isaiah  ','Jeremiah','Hosea   ','Amos','','','b','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:26'),(192,'The relationship between God and Israel was described by Hosea as that of a','faithless wife and a loving husband','a loving wife and a faithless husband  ','a penitent wife and aggressive husband  ','a faithless husband and a faithless and nonchalant wife.','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:27'),(193,'One of the following is not among the “I am” Sayings of Jesus  ','I am the bread of life','I am the gate of life','I am the good shepherd','I am the way','','','b','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:28'),(194,'In what way was Moses a prototype of Jesus Christ?','Moses was a great prophet who led Israel out of Egypt','Moses did not die naturally','Moses appeared to Jesus on Mount of Transfiguration','Moses was persecuted by his people','','','a','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:28'),(195,'“O dry bones, hear the word of the Lord… “The dry bones mentioned by Prophet Ezekiel  in the statement above refer to the','Amalakite king and soldiers  ','Whole house of Israel  ','Hittites and the Assyrians  ','Babylonians troubling Israel','','','b','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:29'),(196,'The eunuch who went to Jerusalem to worship in Acts 8:27 was a  ','minister of God  ','minister of Candace the queen Gaza  ','minister of Candace the king of the Ethiopians','minister of Candace the queen of the Ethiopians','','','d','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:30'),(197,'At the time of creation, the river that flowed out of Eden to water the garden divided into','Pishon, Hauijah, Gihon and Tigris','Tigris, Cush, Assune and Hauijah','Pishon, Tigris, Gihon and Euphrates','Euphrates, Gihon, Assyna and Tigris','','','c','','wassce','2005',80,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:31'),(198,'During the creative activity of God, He made the beasts','in His own image','to multiply on the earth','according to their kinds','to serve the needs of man','','','c','','wassce','2005',81,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:32'),(199,'“Two nations are in your womb, and two peoples born of you shall be divided”. The two people are','Moses and Jacob','Jacob and Benjamin','Esau and Ishmael','Esau and Jacob','','','d','','wassce','2005',60,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:33'),(200,'Moses was nursed by','Pharaoh’s daughter','Rachael','his mother','Rebecca','','','c','','wassce','2005',73,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:34'),(201,'The name Ichabod means','Yahweh is God','beloved of  Yahweh','I have asked him from the Lord','the glory has departed from Israel.','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:35'),(202,'When Saul and his troops came after David in the wilderness of Ziph, David and Abishai went to Saul’s camp \t\tto','slay him','surprise him','capture him alive','dialogue with him','','','b','','wassce','2005',74,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:36'),(203,'Saul’s death on Mount Gilboa was in consequence of his','sin of disobedience','resorting to the witch of Endor','loss of confidence in David','armour bearer’s obedience','','','a','','wassce','2005',87,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:37'),(204,'Naboth would not give the vineyard to Ahab because it was','under cultivation','inherited from his father','better than Ahab’s offer','undervalued by the king','','','b','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:38'),(205,'A good example of parental responsibility was demonstrated by','Samuel','Eli','David','Asa','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:39'),(206,'When God said to Solomon, “Ask what I shall give you”, he requested for','long life and prosperity','power and assistance against his enemies','peace and understanding to serve God','wisdom and understanding to serve the people','','','d','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:40'),(207,'The remote cause of the fall of Jerusalem was','Josiah’s death at the battle of Megiddo','the military might of Israel’s enemies','the sins of Manasseh, the king','Judah’s with holding of tribute to Nebuchadnezzar','','','c','','wassce','2005',67,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:41'),(208,'Nebuchadnezzar punished those who refused to worship the golden image by throwing them into','the River Nile','the rivers of  Babylon','a furnace','a lion’s den','','','c','','wassce','2005',65,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:42'),(209,'The wife of Hosea was called','Gomer','B . Rahab','Jael','Hagar','','','a','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:43'),(210,'As a reward for their faith, Shadrach, Meshack and Abednego were','asked to return to Jerusalem','granted respectable positions','offered money by the king','made to praise Yahweh','','','b','','wassce','2005',62,'Admin','2016-11-12 11:56:06','2020-07-27 02:54:01'),(211,'Who among the prophets was referred to as a prophet of doom?','Isaiah','Ezekiel','Amos','Jeremiah','','','d','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:44'),(212,'Jonah typified Jesus Christ when he','surrendered himself to be swallowed by the fish','offered to lose his life that others might be saved','rejected the message of God','announced destruction for the Ninevites','','','b','','wassce','2005',86,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:45'),(213,'The message of Amos was mainly about','the love of God','man’s response to God’s love.','the holiness of God','social justice','','','d','','wassce','2005',86,'Admin','2016-11-12 11:56:06','2020-07-15 03:50:53'),(214,'Before Joseph and Mary came together, she was found to be with a child','to be called Jesus','of the Holy Spirit','who shall be called Emmanuel','spoken of by the prophets','','','b','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:54'),(215,'“How is it that you, a Jew, ask a drink of me, a woman of \tSamaria?” The speaker was surprised because','Jesus was God and not human','the Jews could only buy water from Samaria','the Jews had no dealings with Samaria','it was unlawful for a man to receive water from a woman','','','c','','wassce','2005',70,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:01'),(216,'Jesus said “Not everyone who says to me ‘Lord, Lord,’ shall enter into the kingdom of heaven, but he who','hears the word of God”.','prays and fasts’','prophesies in my name”','does the will of my father”','','','d','','wassce','2005',75,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:02'),(217,'According to Jesus, a disciple must not','hate his parents and family','bear his own cross','be a poor man','count the cost','','','d','','wassce','2005',74,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:03'),(218,'Instead of being unnecessarily anxious about life and the affairs of this world, Jesus taught us to','relax our minds and wait for the manna from above','seek first the kingdom of God and its righteousness','seek water baptism and qualify for divine healing','repent of our sins and preach the gospel.','','','b','','wassce','2005',69,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:04'),(219,'According to Jesus, the seventy disciples who returned from a successful missionary work should rejoice because','the demons were subject to them','the sick were healed through their ministry','the lame walked just at their command','their names were written in heaven','','','d','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:05'),(220,'The seeds that fell among thorns represent those who hear the word of God but lose it because','they refuse to be baptized in water','their parental background does not allow them to believe','the cares of the world and delight in riches choke the word','the unbelievers do not permit new converts to receive the word','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:06'),(221,'The rich man who ignored the needs of Lazarus lacked','a sense of proportion','parental care','human sympathy','spiritual contentment','','','a','','wassce','2005',65,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:07'),(222,'Abiding in Christ’s love demands that we','have hope for the future','keep His commandments','imitate one another','manifest the peace of God','','','b','','wassce','2005',81,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:08'),(223,'According to Jesus, a good shepherd lays down his life for the sheep but a hireling','sells them off for personal profit','abandons the sheep in the face of danger','protects some of the sheep leaving others to danger','asks for better pay before doing his work.','','','b','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:09'),(224,'The arrest of Jesus by his enemies was','an accident of faith','a result of his tough teaching','a fulfilment of the scriptures','a ploy to see his miraculous powers','','','b','','wassce','2005',65,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:10'),(225,'The final trial of Jesus was presided over by','Herod','Caiaphas','the High Priest','Pilate','','','d','','wassce','2005',83,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:11'),(226,'Before his ascension, Jesus commissioned his disciples to go to all nations and','cast out demons','heal the sick','raise the dead','make disciples of them','','','d','','wassce','2005',63,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:12'),(227,'The experience which totally changed Paul’s focus in life was his','witnessing the martyrdom of Stephen','determination to wipe out the church','participation in the council of Jerusalem','encounter with Jesus on the road to Damascus','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:13'),(228,'Herod persecuted the early church because he was','opposed to the Apostles’ teaching','impressed by his growing popularity after killing James','unhappy that the Jewish leaders were not doing enough havoc to the apostles','asserting the extended powers granted him Rome.','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:14'),(229,'One of the early Christians who sold his property and gave the money to the apostles was','Barnabas','Stephen','Barabbas','Matthias','','','a','','wassce','2005',70,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:14'),(230,'Which of the following was not characteristic of the Early Church?','Constant change in leadership','Devotion to the teachings of the apostles','Breaking bread in members’ homes','Communal fellowship','','','a','','wassce','2005',82,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:15'),(231,'“Father forgive them for they know not what they do” was the prayer said by','Philip','Peter','Paul','Stephen','','','d','','wassce','2005',75,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:16'),(232,'Paul argued that Jesus died for us while we were yet sinners in order to','prove that he was not an ordinary man','show Gods’ love for sinful man','warn us to desist from sin','give us power to possess the earth','','','b','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:17'),(233,'Paul, in Romans, taught that Christians are Abraham’s descendants by','grace','faith','circumcision','law','','','b','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:18'),(234,'According to Romans, when civil authorities punish evil doers, they do so as the','agents of God’s wrath','supervisory authority','agents of the darkness of this world','representatives of angelic powers','','','a','','wassce','2005',77,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:19'),(235,'Paul said he was not fit to be called an apostle because he','was not called like the others','was not a Jew','persecuted the Early Church','was only a distributor of letters','','','c','','wassce','2005',70,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:20'),(236,'In Romans, Paul admonished Christians, in their dealings with secular powers, to','reject all secular laws','pray for the leaders','refuse to pay tax to them','respect the authorities','','','d','','wassce','2005',85,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:21'),(237,'Paul taught that by our common faith in Jesus and baptism, the difference between Jews and Gentiles has become','permanent','temporal','irrelevant','real','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:22'),(238,'The Philippians’ gifts to Paul were for','the growth of the church','his sustenance','distribution to the saints','other Christian prisoners','','','b','','wassce','2005',80,'Admin','2016-11-12 11:56:07','2020-07-26 19:30:54'),(239,'Which of the following does not relate to the new life in Christ?','Baptism','Circumcision','Grace of God','Faith','','','b','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-15 13:50:19'),(240,'Paul taught the Colossians that the relationship between wives and their husbands should be as','is fitting in the Lord','the culture demands','is written in the law','the husband commands','','','a','','wassce','2005',89,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:25'),(241,'At the coming of the Lord, unbelievers will','be condemned','have a desolate land','be hit by famine','die in divine war','','','a','','wassce','2005',76,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:26'),(242,'Paul compares the manifestations of spiritual gifts in individual members of the Church to the','unity of the human body','rights of the individual members of the Church','rights of the different parts of the body','unity of the Church','','','a','','wassce','2005',81,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:27'),(243,'Paul wrote to the Thessalonians about idleness because he \tlearnt that they were','among the idlest people in Asia','forcing Christians to work in the Church','unwilling to give offerings','expecting the second coming of Christ','','','d','','wassce','2005',64,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:28'),(244,'Paul appealed to Philemon to forgive Onesimus on the basis of','equality','righteousness','love','faith','','','a','','wassce','2005',80,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:29'),(245,'James recommends the anointing oil of the elders because such anointing','prepares the sick for his last journey','makes the sick holy and righteous','promotes physical recovery','ensures forgiveness to the sick','','','d','','wassce','2005',87,'Admin','2016-11-12 11:56:08','2020-07-15 14:05:27'),(246,'Peter advised his fellow elders to tend the flock of God that was in their charge','with care','willingly','by example','domineeringly','','','a','','wassce','2005',78,'Admin','2016-11-12 11:56:08','2020-07-14 14:13:31'),(247,'In Timothy, Paul urges Christians to pray for kings and those in authority for the achievement of','a successful Christian life','godly and acceptable life','peace and exaltation in life','quiet and peaceable life.','','','d','','utme','2009',76,'Admin','2016-11-12 12:16:55','2020-07-23 10:07:48'),(248,'According to Galatians, one of the benefits of being a joint heir with Christ is having His Spirit in','worship','the heart','the body','prayers','','','b','','utme','2009',63,'Admin','2016-11-12 12:16:57','2020-07-23 10:07:48'),(249,'According to Ephesians, children who obey their parents in the Lord will','be happy','go to heaven','have long life','be great.','','','c','','utme','2009',69,'Admin','2016-11-12 12:16:57','2020-07-14 14:13:33'),(250,'According to Thessalonians, the day of the Lord will not come unless the','living die first','scoffers come first','dead rise first','rebellion comes first.','','','d','','utme','2009',80,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:34'),(251,'In Romans, Paul condemned sin taking over mortal bodies in the new life as instruments of','greediness','wickedness','sadness','foolishness.','','','b','','utme','2009',94,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:35'),(252,'In his teaching on partiality, James declares that mercy triumphs over','judgment','righteousness','grace','faith.','','','a','','utme','2009',96,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:36'),(253,'In Paul’s arrangement of the spiritual gifts in Corinthians, the last is','the utterance of wisdom','interpretation of tongues','gifts of healing','various kinds of tongues.','','','b','','utme','2009',81,'Admin','2016-11-12 12:16:58','2020-07-23 10:07:48'),(254,'In His sermon on the Mount, Jesus said that the poor in spirit are blessed for they would','be satisfied','be comforted on the last day','inherit the kingdom of heaven','inherit the earth.','','','a','','utme','2009',86,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:38'),(255,'According to Matthew, the stone on the tomb of Jesus was removed by','an angel','a Roman soldier','Mary Magdalene','Peter and John.','','','a','','utme','2009',82,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:39'),(256,'Angel Gabriel told Zachariah that he would become dumb until John was born because he','looked down on the Angel','was advanced in age','disagreed with Elizabeth, his wife','did not believe God’s words.','','','d','','utme','2009',70,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:40'),(257,'“...but should write to them to abstain from the pollutions of idols and from unchastity and from what is strangled and from blood...” The statement above was made at the Council of Jerusalem by','Philip','Simon','James','Peter','','','d','','utme','2009',73,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:41'),(258,'In the country of the Gerasenes, Jesus healed the','man possessed of demons','paralytic at the pool','leper','blind man.','','','a','','utme','2009',65,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:42'),(259,'Following the death of Stephen, the only group of believers not scattered by the great persecution was the','deacons','apostles','prophets','disciples.','','','d','','utme','2009',89,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:43'),(260,'According to Luke, when Moses and Elijah appeared during the Transfiguration, they spoke of Jesus’','departure','second coming','resurrection','trials.','','','a','','utme','2009',61,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:43'),(261,'The baptism of Jesus by John in River Jordan was to','convince others that John was His forerunner','ensure that proper baptism must be in a river','service as an example','fulfil all righteousness.','','','d','','utme','2009',79,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:45'),(262,'Herod was delighted to see Jesus because he had heard of Him for so long and wanted to','send Him to Rome','sentence Him to death','see Him perform miracles','make Him his friend.','','','c','','utme','2009',85,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:47'),(263,'“Do you understand what you are reading?” Philip asked the Ethiopian eunuch the question above when he found him reading the book of','Hosea','Ezekiel','Jeremiah','Isaiah.','','','d','','utme','2009',80,'Admin','2016-11-12 12:16:58','2020-07-23 10:07:46'),(264,'“Unbind him, and let him go.” The statement was made by Jesus when','He raised to life the dead Lazarus','He healed the son of the widow at Nain','He healed the centurion’s servant','a boy bound by Satan was brought to Him.','','','a','','utme','2009',90,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:48'),(265,'In Luke, at the Last Supper, Jesus revealed His','resurrection','imminent sufferings','love for His disciples','ascension.','','','b','','utme','2009',71,'Admin','2016-11-12 12:16:58','2020-07-15 03:50:53'),(266,'The good shepherd according to Jesus is one who','lays down his life for his sheep','goes about with his sheep','keeps many healthy sheep','feeds his sheep in green pastures.','','','a','','utme','2009',85,'Admin','2016-11-12 12:16:58','2020-07-27 02:54:01'),(267,'Jesus: stilling of the storm was to','escape from danger','impress His disciples','demonstrate His power','help the fishermen.','','','c','','utme','2009',64,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:51'),(268,'“Can any one forbid water for baptizing these people who have received the Holy Spirit just as we have?” The statement above was made by Peter at the conversion of','Herod','Lydia','Saul','Cornelius.','','','d','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:52'),(269,'The disciple who replaced Judas Iscariot was','Justus','Stephen','Mathias','Luke.','','','c','','utme','2009',66,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:53'),(270,'The message in the parable of the weeds is to','make Christians to be aware of the evil one','remind Christians to pray always','teach Christians to be aware of false teaching','warn Christians on what will happen at the close of age','','','c','','utme','2009',76,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:54'),(271,'The sin of the sons of Eli was that they treated the offering of the LORD with','suspicion','contempt','disgust','jealousy.','','','b','','utme','2009',94,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:55'),(272,'In order for the people of Israel to be ready to meet the LORD by the third day at Mount Sinai, they were','not to drink alcohol','to wear white garments','to wash their garments everyday','not to go near a woman.','','','c','','utme','2009',83,'Admin','2016-11-12 12:16:58','2020-07-15 23:00:49'),(273,'For worshipping the molten calf, God described the Israelites as','a stubborn nation','an unholy nation','a stiff-necked people','an unrighteous people','','','c','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:57'),(274,'“1 will not eat until I have told my errand” In the statement above, the errand of Abraham’s servant was to','find a wife for Isaac','deliver the camels to Laban','assess Isaac’s future wife','deliver Isaac’s message to Laban','','','a','','utme','2009',93,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:58'),(275,'Saul leant from Samuel’s spirit that the LORD would','give the Philistines into his hands','afflict him with sickness','because Isaac’s future wife','pardon his iniquity','','','c','','utme','2009',87,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:59'),(276,'“My spirit shall not abide in man forever, for he is flesh...” When God made the statement above, He concluded that man’s days shall be','one hundred years','one hundred and fifty years','eighty years','one hundred and twenty years.','','','a','','utme','2009',62,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:00'),(277,'According to proverbs, a son that is attentive to a father’s instruction will','be rich','have eternal life','gain insight','be forgiven his sins','','','b','','utme','2009',74,'Admin','2016-11-12 12:16:59','2020-07-23 10:07:48'),(278,'When God called Moses to deliver the Israelites, he resisted because he could not speak and he was told to','perform some signs with his rod','wait for a sign from God','go with Joshua who would speak for him','go with Aaron who would speak for him','','','d','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:02'),(279,'David was anointed king over Judah at','Zuph','Bethlehem','Hebron','Gibeon.','','','c','','utme','2009',79,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:03'),(280,'“Behold, if people of Israel are to come, let us deal shrewdly with them, lest they multiply.....” ln the statement, the first step by the king of Egypt was to','cast all Hebrew male children into the Nile','impose heavy tax on them','kill Hebrew male children','set taskmasters over them to afflict them with burdens','','','d','','utme','2009',77,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:04'),(281,'“Let the waters under the heavens be gathered together into one place, and let the dry land appear.” In the statement above  the dry land and the water refer to','earth and oceans','firmament and seas','firmament and oceans','earth and seas','','','d','','utme','2009',83,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:04'),(282,'What did Gideon call the altar which he built to the LORD?','The LORD is merciful','The LORD is peace','Jehovah Jireh','The LORD is great','','','a','','utme','2009',86,'Admin','2016-11-12 12:16:59','2020-07-23 10:07:46'),(283,'When King Nebuchadnezzar besieged Judah, he took away all classes of people but spared the','poorest people of the land','palace guards','children and the aged','priests and prophets','','','a','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:18'),(284,'After Prophet Ezekiel had eaten what he was offered, he was sent to speak to','a people of hard language','the house of Israel','the house of Judah','a people of foreign language','','','b','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-07-15 14:05:27'),(285,'Josiah believed that the wrath of the LORD was kindled against him and all Judah because','they did not observe the Passover','there was an unholy thing in their midst','the people have forgotten God','their fathers were disobedient to God.','','','b','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-07-15 09:02:40'),(286,'“Son of man, stand upon your feet, and I will speak with you.” What happened to the Son of man after the instruction above?','The Spirit entered him.','He became terrified.','The angels gave him support.','He began to prophesy.','','','a','','utme','2009',79,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:21'),(287,'God had pity on the people of Nineveh because','they listened to Jonah’s message','the king punished all the violent people in the land','they turned from their evil way.','they made sacrifices of sin offering to God.','','','c','','utme','2009',68,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:21'),(288,'The Kingdom of Israel was divided because the','kingdom was too large to be administered','leadership wanted to create more nations','followership wanted more nations','last two kings made unwise policies.','','','d','','utme','2009',82,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:22'),(289,'“Behold, I am the LORD, the God of all flesh; is anything too hard for me...” The statement above suggests that God is','merciful','awesome','most powerful','not changeable.','','','b','','utme','2009',79,'Admin','2016-11-12 12:16:59','2020-07-23 10:07:48'),(290,'Immediately after the contest on Mount Carmel, Elijah prayed and God answered him with','thunder','rainfall','a whirlwind','a heavy storm.','','','a','','utme','2009',95,'Admin','2016-11-12 12:16:59','2020-07-24 13:49:46'),(291,'Prophet Amos told Israel to hate evil, love good and establish justice in the gate so that God would','heal their diseases','give them good leaders','be gracious to them','multiply their descendants.','','','c','','utme','2009',87,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:25'),(292,'In addition to the declaration of freedom to the exiles in Babylon, King Cyrus ordered for','free will offering for the house of God in Jerusalem','the release of Jewish, slaves in the empire','security check on the Jews before departure','support from craftsmen in Babylon.','','','a','','utme','2009',86,'Admin','2016-11-12 12:16:59','2020-07-23 10:07:48'),(293,'“Am I God, to kill and to make alive, that this man sends words to me to cure a man of his leprosy...” Prophet Elisha responded to the king’s reaction in the statement above by','directing the nation of Israel to pray and fast','requesting the leper to come to his house','directing the leper to go to River Jordan','asking the leper to offer a sacrifice.','','','b','','utme','2009',73,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:27'),(294,'According to Prophet Jeremiah, one of the promises of God was that He would give the Israelites','new priests','new commandments','kings after His own heart','shepherds after His own heart.','','','c','','utme','2009',74,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:28'),(295,'Prophet Hosea named his second child Not Pitied because God would no more pity the','kings of Judah','kings of Israel','house of Judah','house of Israel.','','','c','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-07-23 10:07:47'),(296,'“Test your servants for ten days; let us be given vegetables to eat and water to drink...” In the statement above, Daniel was talking to','King Darius','the chief of the eunuchs','the steward of the chief eunuch.','King Artaxerxes.','','','b','','utme','2009',72,'Admin','2016-11-12 12:16:59','2020-07-14 14:14:30'),(297,'God blessed and hallowed the seventh day because','it was the day He rested from creation','it was the day He created man','He wanted it to be a day of worship','He saw that all He had created was good.','','','a','','utme','2011',75,'Admin','2016-11-12 12:27:45','2020-07-14 14:14:31'),(298,'Noah’s ark was sustained during the flood by its','resting on the highest mountains','being rowed on the waters','floating on the water','being anchored safely','','','c','','utme','2011',64,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:32'),(299,'God visited the children of Israel on Mount Sinai during the giving of  the commandments through','a storm','mist and dew','smoke and fire','a still small voice','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:33'),(300,'When asked to interpret Pharaoh’s dream, Joseph’s first response was','...God has revealed to Pharaoh what he is about to do.','...It is not in me; God will give Pharaoh a favourable answer.','...God will shortly bring it to pass.','…let Pharaoh select a man discrete and wise','','','b','','utme','2011',83,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:33'),(301,'When Joshua fell upon his face during Israel’s defeat at Ai, God told him to rise and','send more courageous soldiers to Ai','encourage the people','pray fervently against their enemies','sanctify the people','','','d','','utme','2011',63,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:34'),(302,'God guided Abraham’s steward in choosing a wife for Isaac by','teaching him how to select a good woman','leading a lady to fulfil his prayer request','taking him to Abraham’s fatherland','giving him an exemplary woman.','','','c','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-27 02:54:01'),(303,'Why was God angry with Eli?','Eli’s sons disregarded the people’s warning','Eli’s sons were wicked people.','Eli’s sons dishonoured God and he treated them with levity.','Eli’s sons were appointed as priests against God’s will.','','','c','','utme','2011',79,'Admin','2016-11-12 12:27:46','2020-07-23 10:07:48'),(304,'Laxity in disciplining children is dangerous to both the family and society as exemplified by','Jonathan','Tamar','Absalom','Ahikam.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-15 13:37:42'),(305,'God promised Abraham that nations of the earth shall be blessed through him because','he had obeyed Him','his descendants had obeyed Him','of his kindness to Hagar','of  his exemplary leadership.','','','a','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:38'),(306,'The punishment for Adam and Eve’s sin was that they','were driven out of the garden','would be naked forever','would never fellowship with God','would be enemies of crawling animals.','','','a','','utme','2011',64,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:39'),(307,'‘Do not destroy him; for who can stretch out his hand on the LORD’S anointed, and be guiltless?’ In the statement above, David was acknowledging God’s role in','Abishai’s command','Saul’s leadership','Samuel’s priesthood','Elijah’s prophet hood.','','','b','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:40'),(308,'Saul’s decision to consult a medium displayed his lack of','faith in his army','faith in God','leadership qualities','respect for the dead.','','','b','','utme','2011',86,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:41'),(309,'Solomon made the most unwise decision by engaging in','marriages to foreign women','alliances with his brothers','so many wars of conquest','developmental works.','','','a','','utme','2011',100,'Admin','2016-11-12 12:27:46','2020-07-25 00:18:23'),(310,'The man of God whose word was ignored by Kings Ahab and Jehoshaphat was','Elijah','Zedekiah','Malakiah','Micaiah','','','d','','utme','2011',86,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:43'),(311,'Baal did not answer his worshippers at the contest on Mount Carmel because he','was annoyed with their sacrifice','did not hear','wanted to disgrace his worshippers','was asleep.','','','b','','utme','2011',87,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:43'),(312,'The workmen who repaired the house of the LORD during Josiah’s religious reforms were not made to account for the money given them because they','did not receive the money directly','lacked accounting capabilities','bribed the Temple officials','were honest workmen.','','','a','','utme','2011',108,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:44'),(313,'During Jehoiakim’s reign, Judah was destroyed as punishment for Manasseh’s sin of','keeping Temple prostitutes in the land','defiling the vessels in the Temple','offering unacceptable sacrifice','shedding innocent blood.','','','a','','utme','2011',70,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:45'),(314,'Nehemiah responded to the opposition of the enemies of Israel by','telling the people not to say a word','reporting the issue to King Artaxerxes','inviting them to dialogue in the King’s court','asking God to return their taunt back to them.','','','d','','utme','2011',84,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:46'),(315,'Nebuchadnezzar ordered his subjects to worship the image he set up whenever they','heard his voice','saw him stand before the image','heard the sound of the horn','were told to do so.','','','c','','utme','2011',75,'Admin','2016-11-12 12:27:46','2020-07-27 02:54:01'),(316,'‘What is this that you have done!”  The people in the ship asked Jonah the question above because','he was fast asleep in the ship','they knew he was fleeing from the LORD','he lied to them about his presence in the ship','they realized that he had made attempts to commit suicide.','','','b','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:48'),(317,'What shall I do with you, O Ephraim? What shall I do with you, O Judah? Your love is like a morning cloud...” In the statement above, the love of Israel is compared to a morning cloud because it','disappears fast','withers','is cloudy','darkens the day','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:49'),(318,'According to Amos, God desires knowledge of Him rather than','fervent prayers','dependency on the Law','the multitude of prophecies','burnt offerings','','','d','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:50'),(319,'In his vision, Isaiah’s guilt was taken away and his sin forgiven after','the angel of the LORD appeared to him','his mouth was touched with a burning coal','the seraphim had spoken to him','he had agreed to serve God.','','','b','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:51'),(320,'The prophet who was ordained from the womb for God’s service was','Jeremiah','Isaiah','Ezekiel','Hosea.','','','a','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:52'),(321,'According to Jeremiah, the anger of God towards Israel would only be reduced by','His mercy','the prophet’s repentance','the prophet’s prayers','His glory.','','','a','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:53'),(322,'When Zechariah saw the angel of the Lord standing on the right side of the altar of incense, he','cried out to him','was troubled and afraid','rejoiced in the Lord','left the Temple immediately.','','','b','','utme','2011',63,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:54'),(323,'‘Follow me and leave the dead to bury their own dead’ By this statement, Jesus means that','disciples shall not attend burials','there is no life after death','following Him comes before anything else','shall leave their families in God’s care','','','c','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:48'),(324,'The disciples became terrified when they saw Jesus walking on the sea because','they thought He would drown','they thought He was a ghost','they lacked faith in Him','there was a great storm.','','','c','','utme','2011',71,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(325,'The Jews sought to kill Jesus after He healed the man at the pool of Bethzatha because they thought that He','claimed to have authority to forgive sins','made Himself equal with God','did not agree with the law of Moses','said that He was born before Abraham.','','','c','','utme','2011',69,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(326,'In the parable of the sower, the seed that fell among the thorns symbolized the one who hears the word but','does not understand it','loses it to the enemy','does not immediately receive it','the cares of the world choke it.','','','d','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(327,'Jesus encouraged His followers to rejoice when they were \tpersecuted because','great would be their reward in heaven','angels would come to their aid','they would not lack anything good','all their sins would be forgiven.','','','a','','utme','2011',73,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(328,'‘Blessed are you, Simon Bar-Jona ! For flesh and blood has not revealed this to you...’ As exemplified by the statement above, for believers to be able to identify with Jesus, they must','offer their lives','be led by the Spirit','keep all the commandments','vow not to deny Him.','','','b','','utme','2011',71,'Admin','2016-11-12 12:27:47','2020-07-14 14:14:59'),(329,'Jesus drove the money changers and sellers of doves out of the Temple because','the people defiled it with dubious business','there was no need for animal sacrifice anymore','the people were disobedient to the Law','animals and birds were not allowed in it.','','','a','','utme','2011',96,'Admin','2016-11-12 12:27:47','2020-07-22 13:18:13'),(330,'The tearing of the curtain of the Temple into two at the death of Jesus signifies','the passing away of the prophets','direct access to God through Christ','that Jesus was a powerful person','that God was truly with Jesus.','','','b','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:01'),(331,'“Tell people, His disciples came by night and stole him away while we were asleep...” The intention of the speaker in the statement above was to','implicate the disciples','absolve the soldiers from all blame','deny the resurrection story','convince the authority','','','c','','utme','2011',98,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(332,'Jesus charged His followers to walk in the light while they had the light so that they may','have eternal life','become custodians of it','have the light of life','become sons of it.','','','c','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:03'),(333,'In the early Church, believer devoted themselves to the','daily distribution of food','apostles’ teaching and fellowship','breaking of bread in the Temple','performance of miracles','','','c','','utme','2011',76,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:04'),(334,'The disciple that went to preach in Samaria after the great persecution in Jerusalem was','Philip','Andrew','Peter','James.','','','a','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:05'),(335,'Saul was convened so that he might','cause confusion among the Jews','help Peter in his work','not be killed for his sins','spread the word to the Gentiles.','','','d','','utme','2011',84,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:06'),(336,'What effect did the decision of the Council of Jerusalem have on the early Church?','Members became more untied','the Church experienced freedom from persecution','The Jews became leaders of the community.','Gentiles were free to be members of the Church','','','d','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:07'),(337,'Paul in Romans stated that the righteousness of God has been manifested through','the Law','the priests','faith in Jesus','Temple sacrifices.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:08'),(338,'According to Romans, all who were baptized into Christ were also baptized into His','crucifixion','persecution','suffering','death','','','d','','utme','2011',77,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:09'),(339,'According to Paul in Philippians, humility means giving consideration to other people’s','wealth','weakness','interests','needs.','','','c','','utme','2011',80,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(340,'In Corinthians, believers are taught to forgive one another in order to','keep Satan from gaining advantage','prevent the wrongdoer from losing his salvation','remove the curse from the offender','discourage the offender from committing more sin.','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:22'),(341,'In Corinthians, Paul stated that by one Spirit we were','free from bondage of sin','united into one church','committee to Christian service','baptized into one body','','','d','','utme','2011',77,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(342,'Paul commended the churches in Macedonia for giving out of their freewill to the','saints','poor','priests','sick.','','','b','','utme','2011',82,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(343,'‘Pay all of  them their dues, taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honour to whom honour is due’. Paul made the statement above to the Church at','Thessalonica','Rome','Corinth','Ephesus.','','','b','','utme','2011',76,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:48'),(344,'At the second coming of Christ, those who are alive shall be','bound for life','caught up together with the Lord','separated from the dead','taken to the new Jerusalem','','','b','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:26'),(345,'According to James, treatment of brethren at fellowship should not be based on','appearance','sentiments','gender','age.','','','a','','utme','2011',67,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:27'),(346,'Peter in his epistle, charged his fellow elders to','take care of their families','be strong in their faith','have compassion on the weak','tend the flock of God.','','','d','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:28'),(347,'The land, the sea and vegetation were created on the','first day','second day','third day','fifth day.','','','c','','wassce','2008',70,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:29'),(348,'God blessed the seventh day and hallowed it because it marked the day that He','completed His work of creation','handed over the earth to Adam','saw all His created work as perfect','rested from His work of creation.','','','d','','wassce','2008',72,'Admin','2016-11-12 12:38:50','2020-07-15 03:50:53'),(349,'Which of the following was not part of the honour done to Joseph when Pharaoh made him a ruler in Egypt?','Joseph was made to address the people','The land of Goshen was given to Joseph','Joseph was dressed in garments of fine linen','A gold chain was put around Joseph’s neck.','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:31'),(350,'What was Moses’ reaction when God called him to liberate his people from Egypt?','He was afraid of being punished for his previous offence','His people would think he was too young to lead them','His people would not listen to him','His father in-law would not allow him to go.','','','c','','wassce','2008',79,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:32'),(351,'God led the Israelites in the wilderness during the day in form of','fire','light','cloud','rainbow.','','','c','','wassce','2008',64,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:33'),(352,'When Moses stayed away for too long on the mountain, the people of Israel','prayed and fasted','embarked on farming','returned to Egypt','made and worshipped idol.','','','d','','wassce','2008',70,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:34'),(353,'God provided water for the Israelites by asking Moses to strike the rock at trice wilderness of','Rephidium','sin','Massah','Paran.','','','b','','wassce','2008',62,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:35'),(354,'When the Spirit of the Lord departed from Saul','a new spirit entered into him','an evil spirit from God tormented him','he consulted an oracle','he went into hiding.','','','b','','wassce','2008',66,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:35'),(355,'When David spared the life of Saul the second time he took away his','bow and arrow','spear and jar of water','royal crown and armour','spear and iron shield.','','','b','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:36'),(356,'Solomon first applied wisdom granted to him by God at Gibeon by the','establishment of high places in Judah','utterances of proverbs and parables','marriage alliances with foreign nations','judgment between the two harlots.','','','d','','wassce','2008',76,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:37'),(357,'In his reform, King Josiah first attacked the','prostitutes that came around the temple at night','priests that made burnt offerings in the temple','Canaanite divinities - the Baal and Ashera','traders who profaned the temple.','','','c','','wassce','2008',72,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:38'),(358,'A good example of parental responsibility was demonstrated by','Asa','Jeroboam','Joel','Rehoboam.','','','a','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:39'),(359,'Gomer’s attitude towards her loving husband symbolizes','Hosea’s unfaithfulness to God','Israel’s faithfulness to God','God’s love for Israel','God’s hatred for Israel’s iniquities.','','','b','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:41'),(360,'The universal nature of God was demonstrated in the salvation of the people of','Joppa','Tarshish','Tekoa','Nineveh.','','','d','','wassce','2008',77,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:42'),(361,'Ahab was condemned for allowing Jericho to be rebuilt although that city had been','under Joshua’s curse','devastated by an earthquake','the scene of unexplained fatal accidents','the site for Canaanite human sacrifice.','','','a','','wassce','2008',82,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(362,'Amos declared that God hated solemn feasts, songs and sacrifices because the people of Israel were','unjust and unrighteous','unforgiving and unrepentant','despicable and untruthful','luxurious and arrogant.','','','a','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:44'),(363,'At Ezekiel’s call he beheld','the love of God','God’s glory','power of God','God’s mercy.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:45'),(364,'In spite of Israel’s faithlessness, Jeremiah saw a ray of hope for them if only they should','forgive one another','repent and return to God','always swear by God','show favour to strangers.','','','b','','wassce','2008',63,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(365,'Jesus came to John at River Jordan to','proclaim himself as Messiah','disclose himself to John','call some of John’s disciples','receive baptism like others.','','','d','','wassce','2008',67,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:52'),(366,'“Blessed are the peace makers for','theirs is the kingdom of God”','they shall be called sons of God”','they shall inherit the earth”','they shall be comforted”.','','','b','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:58'),(367,'According to the Mosaic law, the only authority to declare a leper healed was','Jesus Christ','the Emperor','the priest','the elders.','','','c','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:59'),(368,'Which of the following did not happen immediately after Jesus had yielded up his spirit on the cross?','The curtain of the temple was torn into two','Joseph of Arimathea removed his body for burial','The earth shook, the rocks were split','The tombs of the saints were opened.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:00'),(369,'According to Matthew, the disciples were sent out with the charge to go nowhere among the Gentiles nor enter any town of the','Jews','Samaritans','Israelites','Unbelievers.','','','b','','wassce','2008',64,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:01'),(370,'Which of the following miracles shows Jesus’ power over nature?','Walking on the sea','Healing of the leper','Healing of the woman with issue of blood','Raising of Lazarus from the dead','','','a','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:02'),(371,'The fate that would befall those who do not receive the gospel of Jesus would be','rejection by men','lack of peace in the family','condemnation by the church','condemnation by God.','','','d','','wassce','2008',70,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:03'),(372,'Which, according to Luke, were the last words of Jesus?','“Eli. Eli, lamasabach-thani”','“Father forgive them for they know not what they do”','“Truly, I say to you, today you will be with me in paradise”','“Father unto thy hands I commit my spirit”','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:04'),(373,'The first five disciples that Jesus called as recorded in the Synoptic gospels were','Peter, Andrew, James, John and Levi','Peter, Andrew, James, John and Thomas','Peter, Andrew, James. John and Zebedee','Peter, Andrew, James, John and Judas Iscariot.','','','b','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:05'),(374,'Peter’s general outlook towards Gentile converts was significantly changed by the conversion of','people of Lydda','the people of Samaria','Simon the magician','Cornelius the centurion.','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:06'),(375,'Which Jewish party was bitterly opposed to the disciples for preaching the resurrection of Jesus?','The Pharisees','The Sadducees .','The Zealots','The Sanhedrin.','','','b','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-07-26 19:30:54'),(376,'When Peter was in prison the Church','appealed to the authorities','lived in fear','prayed ceaselessly','fought for his release.','','','c','','wassce','2008',60,'Admin','2016-11-12 12:38:51','2020-07-15 13:50:19'),(377,'The miracles of Jesus in St. John’s Gospel are referred to as signs’ of the','manifestations of Jesus as the Messiah','consuming power of God’s glory','judgment that will come upon unbelievers','second coming of Jesus.','','','a','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(378,'Believers according to Jesus in John’s gospel, become his friends, if they imbibe his teaching on','forgiveness','obedience','love','faith.','','','c','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:18'),(379,'The miracles of Jesus recorded in John’s gospel are called','works','signs','powers','wonders.','','','b','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:19'),(380,'The result of justification by faith is','divine protection','peace with God','forgiveness of sins','answered prayers.','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:20'),(381,'Which of the following is the result of Christian baptism?','Fulfilment of all righteousness','Walking in the newness of life','Ability to fast always','Yielding of one’s life to prayer.','','','b','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:21'),(382,'Sin that reigns in our mortal bodies makes us obey','one another','rules and regulations','our passions','our rulers.','','','c','','wassce','2008',67,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:22'),(383,'Paul considered himself unfit to be called an apostle because he','did not see Jesus','persecuted the church','worked hard to attain his position','was the least among the believers.','','','d','','wassce','2008',52,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:23'),(384,'Paul says that only the heathen who are led astray by dumb idols could say','“Jesus is Lord!”','“Praise ye the Lord!”','“Hail the messiah!”','“Jesus be cursed!”','','','d','','wassce','2008',69,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:24'),(385,'In the Epistle to Galatians, Christians are children of God through','faith in Christ','keeping of the law','helping the needy','baptism and confirmation','','','a','','wassce','2008',59,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:25'),(386,'Christ demonstrated humility by','riding on an ass to Jerusalem','allowing John to baptize him','taking the form of a servant','eating with sinners','','','c','','wassce','2008',78,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:26'),(387,'Peter admonished Christians to be sober and watchful in order to a void','temptation','God’s wrath','the devourer','damnation','','','a','','wassce','2008',74,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:27'),(388,'New life in Christ means','paying your tithe regularly','helping the poor and the needy','being dead to sin','getting baptized.','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:28'),(389,'In Romans, Paul taught that where there is no law, there is no','transgression','peace','reward','punishment','','','a','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:29'),(390,'The purpose of grace is to','justify the law','cancel the law','fight the law','establish the law','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:30'),(391,'In Romans. Paul stressed that the righteousness of God is','faith in the law for all who believe','works of the law for all who believe','fervent prayers by all believers','faith in Jesus Christ for all who believe','','','d','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:31'),(392,'The concept of  forgiveness does not include','reconciliation','restoration','peace','wealth','','','d','','wassce','2008',49,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:32'),(393,'Paul said in Galatians that, before faith came, we were confined under','grace','the law','righteousness','love','','','b','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:33'),(394,'In his letter to Philemon Paul did not ask him to','grant freedom to his slave Onesimus','allow Onesimus become a servant of God','forgive Onesimus for his earlier misbehaviour','prepare a feast for him.','','','a','','wassce','2008',65,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:34'),(395,'Peter enjoined humility because the humble shall','not be tempted','be blessed','receive God’s grace','have long life.','','','b','','wassce','2008',69,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:35'),(396,'Paul, unhappy with high incidence of idleness among the Thessalonians, commanded them to','assist those brothers who live in Idleness','exhort the busy-bodies to leave the church','ensure that any one who does not work must not eat','regard the lazy ones as enemies','','','c','','wassce','2008',66,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:36'),(397,'The new covenant between God and the Israelites is centered on','religious doctrines','intensive teaching','collective responsibility','individual responsibility.','','','a','','utme','2013',76,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:37'),(398,'The ark that God commanded Noah to build was made of','acacia wood','gopher wood','cedar wood','cypress wood','','','c','','utme','2013',68,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:38'),(399,'During Moses leadership in Israel, he exhibited most importantly, the talent of a','mediator','warrior','seer','preacher.','','','b','','utme','2013',64,'Admin','2016-11-12 12:51:29','2020-07-14 14:16:39'),(400,'Moses ran away from Egypt after killing an Egyptian because he felt that he might be','endangering other Israelites by his actions','killed by the Egyptian mob','imprisoned by the Egyptian security officers','killed by Pharaoh of Egypt.','','','d','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:40'),(401,'How did God guide Eleazar in choosing a wife for lsaac?','He caused Rebekah to give him free accommodation','He made Rebekah’s parents willing to release her','He caused His angel to go ahead of him','He revealed to Rebekah before Eleazar’s arrival','','','d','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:40'),(402,'David’s immediate reaction to the news that the hearts of the Israelites have gone after Absalom was to','Weep for Judah','flee to the wilderness','mobilize his army','plead with Absalom','','','c','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-07-23 10:07:46'),(403,'David’s inaction at Ammon’s incest with Tamar showed his','lack of control over his children','excessive love for Ammon','ability to forgive as a leader','wisdom and strength of character','','','a','','utme','2013',81,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:42'),(404,'The young man of Egypt took David to the band of the Amalekites because','he was afraid for his life','he sought revenge against his former master','David was kind to him','the spirit of God was working through him.','','','d','','utme','2013',67,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:43'),(405,'Because David sought God’s will to pursue the Amalekites \twho had invaded Ziklag, he was rewarded with victory and','many new territories','spoils','many prisoners of war','favour','','','b','','utme','2013',75,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:44'),(406,'‘...why then have you not kept watch over your lord the king?...” The question above by David was addressed to','Amasa','Joab','Abishai','Abner.','','','c','','utme','2013',73,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:45'),(407,'Solomon’s wisdom surpassed the wisdom of all the people of the East and all wisdom of Egypt because he','prayed and fasted daily','employed the service of seers','judged difficult cases','got his wisdom from God.','','','d','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-15 03:50:53'),(408,'Saul relied on a medium because God did not answer him through','dreams, visions and prophets','inspiration, tambourines and prophets','dreams, urim and prophets','lyre, urim and prophets.','','','c','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:47'),(409,'When Naboth refused to exchange his vineyard with King Ahab, Ahab reacted by','taking to prayers and fasting','going to his house vexed and sullen','ordering the killing of Naboth','forcefully taking it from him.','','','d','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:48'),(410,'The sins of Israel during the reign of Ahab consisted of','worship of the king','trampling upon the poor','worship of idols','desecrating the Temple','','','d','','utme','2013',66,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:49'),(411,'The book of the law was found in the house of the LORD during the reign of king','Josiah','Ahab','Omri','Hezekiah.','','','c','','utme','2013',84,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:50'),(412,'King Josiah was killed by Pharaoh Neco in a battle at','Syria','Meggiddo','Megiddo','Egypt.','','','c','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:51'),(413,'The major reason God allowed the Babylonian attack on the city of Jerusalem was to','demonstrate the ability of God to deliver His people from captivity','set a trap for the Babylonians and destroy them','restore the people of Judah and their leaders to the true worship of God','punish the people of Judah and their leaders for their sins.','','','c','','utme','2013',82,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:52'),(414,'When the three Hebrew men refused to worship the King’s image, he commanded that they be','thrown into a furnace','stoned','beheaded','thrown into the lion’s den.','','','c','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-07-23 10:07:47'),(415,'Jonah’s explanation to the LORD for resisting His first call teaches us that God is','repentant of evil','not ready to act fast','quick to anger','not sincere in His call.','','','c','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-07-15 13:50:19'),(416,'Before his call, Amos was a','herdsman','seer','farmer','prophet.','','','a','','utme','2013',68,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:55'),(417,'Amos’ prophecies which were considered as a conspiracy against the northern kingdom were reported to the king by','Micaiah','Amaziah','Hilkiah','Micah.','','','a','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:56'),(418,'How did God help Jeremiah overcome his inability to speak as prophet?','He put out His hands and touched his mouth.','He sent the Seraphim to speak to him.','He gave him a cake of honey to eat.','He touched his mouth with a burning coal.','','','d','','utme','2013',70,'Admin','2016-11-12 12:51:30','2020-07-14 14:16:57'),(419,'Prophet Ezekiel was set upon his feet to hear the LORD speak when','an angel of the LORD lifted him','a voice from heaven commanded him to do so','the Spirit entered into him','He was made to touch the ephod','','','d','','utme','2013',87,'Admin','2016-11-12 12:51:30','2020-07-23 10:07:47'),(420,'According to Jeremiah, the people of Israel were in exile because of their','impatience and immorality','rebellion against Nebuchadnezzar','maltreatment of the poor','unfaithfulness and faithlessness.','','','b','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:05'),(421,'‘‘... and many will rejoice at his birth; for he will be great before the Lord...” In the statement above, the angel made this pronouncement because of','Elizabeth’s disbelief because of her bareness','Mary’s holy nature','Zachariah’s fervent prayers','Joseph’s hesitation to marry Mary.','','','a','','utme','2013',75,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:06'),(422,'One quality of a good disciple that was exhibited by the first followers of Jesus was','faith','piousness','diligence','resourcefulness.','','','c','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:07'),(423,'“Lord, if you will, you can make me clean.” The statement above was made by the','leper','paralytic','centurion servant','epileptic boy.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:08'),(424,'The disciples of Jesus could not heal the boy with epilepsy because they','did not fast','had little faith','were powerless','did not pray.','','','a','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:08'),(425,'The seeds that fell among the thorns in the parable of the sower refer to people that heard the word of God but','the evil one snatched it','had no faith to nurture it','the criticism of others quenched it','the cares of the words choked it.','','','d','','utme','2013',83,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:09'),(426,'The promise to those who are persecuted for righteousness sake is that they will','inherit the earth','inherit the kingdom of heaven','see God','be called sons of God.','','','b','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:10'),(427,'According to Peter during the great confession, people believed that Jesus was','the Messiah','a priest','the Son of God','one of the prophets.','','','c','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-07-15 09:16:12'),(428,'‘‘... Behold, your king is coming to you, humble, and mounted on an ass...,” The prophecy in the statement above was fulfilled during Jesus','birth in a manger','transfiguration','triumphal entry','baptism by John','','','d','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-07-14 14:17:12'),(429,'After His arrest, Jesus was taken to','Pontiphas','Agrippa','Caiaphas','Pilate','','','a','','utme','2013',70,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:13'),(430,'According to Mark, the young man that the women saw in Jesus’ tomb told them to go with the disciples and wait for Him in','Bethlehem','Jerusalem','Bethany','Galilee','','','a','','utme','2013',69,'Admin','2016-11-12 12:51:31','2020-07-23 10:07:48'),(431,'“He was not the light but was sent to bear witness to the light.” The statement above refers to','Simeon','Jesus','John the Baptist','Peter Barjona','','','b','','utme','2013',71,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:15'),(432,'The appointment of deacons became necessary because of the complaint by the','Gentile converts','Hellenists','Pharisees','Sadducees','','','d','','utme','2013',69,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:16'),(433,'According to Paul, before his conversion, he persecuted the church violently to','make it desirable to the Gentiles','purge it','destroy it','have it conform to the Law.','','','d','','utme','2013',75,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:17'),(434,'“Lord, I have heard from many about this man, how much evil he has done to thy saints at Jerusalem...” Ananias’ response above to God’s request for him to meet Saul shows that he','felt that Saul should not be forgiven','felt that Saul should be punished','was not interested in meeting Saul','was afraid to meet Saul.','','','a','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-07-15 03:50:53'),(435,'“It is necessary to circumcise them, and to charge them to keep the law of Moses.” In response to the Pharisees’ statement above, Peter rebuked them, by saying that God has','made circumcision for only those in leadership','chosen the Israelites among other people','cleansed the Gentiles’ heart by faith','put the yoke upon the Gentiles’ necks.','','','a','','utme','2013',80,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:19'),(436,'According to Galatians, judgment is without mercy to one who has shown no mercy, yet mercy triumphs over','tribulation','the law','judgment','punishment.','','','a','','utme','2013',75,'Admin','2016-11-12 12:51:31','2020-07-23 10:07:48'),(437,'According to Colossians, the Lord does not wish that any should perish, but that all should','rejoice','be saved','be humble','repent','','','b','','utme','2013',86,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:21'),(438,'According to Peter, when Christians humble themselves, God will','protect them','direct their ways','grant them eternal life','exalt them.','','','d','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:22'),(439,'According to Paul in his letter to Philemon, forgiveness should not be by compulsion but by','justification','faith','free will','His grace.','','','b','','utme','2013',78,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:23'),(440,'In Corinthians, Paul said that one can only say Jesus is Lord by','denouncing the law','faith','grace','the Holy Spirit.','','','b','','utme','2013',81,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:24'),(441,'When Christians give freely, God will supply','only for those that give','their needs according to His riches in glory','their needs according to the measure they give','their needs day by day.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:25'),(442,'Paul in Timothy urged believers to make supplications, prayers, intercession and thanksgivings for all those who','are in authority','have accepted Christ','have wronged them','are the need','','','c','','utme','2013',79,'Admin','2016-11-12 12:51:31','2020-07-23 10:07:47'),(443,'According to Thessalonians, the second coming of the Lord will be','with the blowing of a trumpet','after scoffers have come','when the elements are dissolved','like a thief in the night.','','','b','','utme','2013',61,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:27'),(444,'According to James, when we meet various trails in life, we should','bless God’s name','call upon the name of the Lord','count it all joy','rejoice because the Lord is good.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:28'),(445,'“As each has received a gift, employ it for one another, as good stewards of God’s varied grace...” In the statement above, Peter teaches believers in virtue of','hospitality','giving','communion','fellowship.','','','a','','utme','2013',66,'Admin','2016-11-12 12:51:31','2020-07-14 14:17:29'),(446,'What in the creation account, gave man an edge over every other creature?','Other creatures were made for man','Man alone was created in the Image of God','Man had the rare privilege to dwell in Eden','Satan acknowledged his privileged position','','','b','','wassce','2009',78,'Admin','2016-11-12 13:02:28','2020-07-14 14:17:30'),(447,'At Shechem, God appeared to Abram and told him that','he should continue on his journey southward.','he should leave his country and Kindred.','the land would be given to his descendants.','in the land he should build an altar.','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:29','2020-07-14 14:17:31'),(448,'In their dealings with God, Abraham and Sarah learnt the \tfollowing lessons except that God is','able to bless the righteous.','faithful to His promise','all powerful-nothing is too hard for Him.','not in a hurry to carry out His promises.','','','c','','wassce','2009',74,'Admin','2016-11-12 13:02:29','2020-07-14 14:17:32'),(449,'Pharaoh’s horsemen and his army overtook the fleeing Hebrews encamped by the sea at','Migdol.','Etham.','Phiahiroth.','Meriba.','','','c','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:33'),(450,'The episode of David and Bathsheba, Uriah’s wife was in \tviolation of God’s','sixth commandment.','seventh commandment,','eight commandment.','ninth commandment.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-15 13:50:19'),(451,'When the people of Israel received the encouraging report \tgiven by two of the twelve spies, they decided to','stone Moses for taking them out of Egypt.','choose Caleb as their leader and go back to Egypt.','stone the two spies who gave the report.','raise an army to fight the Canaanites.','','','d','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:35'),(452,'Which of the following tribes accompanied Deborah and Barak to the war against Jabin and Sisera?','Naphtali and Zebulum','Issachar and Reuben','Ephraim and Dan','Judah and Benjamin','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:36'),(453,'On matters of parental responsibility, Samuel could not be commended because he','made his children judges instead of priests.','wanted his children to succeed him.','did nothing to stop his children’s immoral behaviours.','did not care what happened to Israel after his death.','','','c','','wassce','2009',81,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:37'),(454,'Eli, the priest in Shiloh, was condemned because he','allowed his children to deprive God of His share of sacrifice.','allowed the Ark of God to be taken to the battle field','did not take God’s message through Samuel seriously.','officiated at the temple without the assistance of the prophet.','','','c','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:38'),(455,'David’s first Contact with Saul was because he was','skillful in playing.','victorious over Goliath.','a man of valour.','a shepherd boy.','','','a','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:38'),(456,'David showed Nathan the prophet that he had repented of his sin by','refusing to marry Uriah’s wife.','confessing that he had sinned.','offering to compensate Uriah’s family','making sacrifice to please God.','','','b','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:39'),(457,'Elijah was a prophet during the reign of','Gideon.','David.','Ahab.','Rehoboam.','','','c','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:40'),(458,'When God ordered famine on Israel, Elijah was fed by the ravens at','Brook Cherith.','River Jordan.','River Kishon','Mount Carmel.','','','a','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:41'),(459,'“The Lord forbid that I should give you the inheritance of my fathers”. The inheritance referred to here is','birth right.','the world.','the kingship.','a vineyard.','','','d','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:42'),(460,'The king of Judah who suffered in the hands of Nebuchadnezzar was','Jehoachin.','Manasseh.','Josiah.','Zedekiah.','','','d','','wassce','2009',79,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:43'),(461,'The punishment of Israel according to the vision of Jeremiah includes all the following except','occupation of the land by foreigners.','restoration of their kings and priests.','destruction of their flocks and herds.','consumption of their harvest by their enemies.','','','a','','wassce','2009',89,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:44'),(462,'Complete this statement “Holy, Holy, Holy is the Lord of Hosts,','the Seraphim’s bow to His glory”.','the whole earth will sing His glory”.','the whole earth is full of His glory”.','His creatures will rise to praise His Holy name”.','','','c','','wassce','2009',57,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:45'),(463,'When Isaiah saw the Lord in His holiness and glory, he exclaimed','“Blessed is me for 1 am truly holy”.','“Woe is me! For I am lost”','“Blessed be the name of the Lord”.','“I am finished, for I have seen a holy God”.','','','b','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-07-15 13:50:19'),(464,'Jeremiah said the people of Judah were in a state of mourning because,','they sinned against God.','their vessels were empty','their farms were destroyed.','there was drought in the land.','','','a','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:47'),(465,'The king planned to set Daniel over the whole kingdom because,','he was the most educated of all.','an excellent spirit was in him.','he wanted to favour a foreigner.','Daniel brought information to the king.','','','b','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-15 09:16:12'),(466,'God spoke through Amos that He would punish Israel for the following sins except that they','sold the righteous for silver.','sold the needy for a pair of shoes.','trampled the head of the poor into the dust.','pursued their brothers with the swords.','','','d','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:49'),(467,'The first batch of Jewish exiles to rebuild the temple was under the leadership of','Joshua.','Hanani.','Sheshbazzar.','Zerubabel.','','','d','','wassce','2009',65,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:50'),(468,'Which two tribes in Israel led in the rebuilding of the temple after the exile?','Judah and Benjamin','Naphtali and Joseph','Manasseh and Reuben','Judah and Ephraim','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:51'),(469,'After his baptism Jesus began to','proclaim the kingdom of God.','baptize others.','confront religious leaders.','teach in parables.','','','a','','wassce','2009',78,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:52'),(470,'The devout man in Jerusalem whom the Lord promised would see Christ before his death was named','Zechariah.','Joseph.','Stephen','Simeon.','','','d','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:53'),(471,'Jesus ordered the seventy disciples not to salute any one because','their mission required urgency.','it is not part of their mission to salute people.','they may forget their mission.','salutations to strangers defile the Jews.','','','a','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:54'),(472,'Jesus teaches, “Let your light so shine before men...” By light Jesus refers to,','the Christian character and virtues in us.','the bright lights at the altar in the church.','the light that shows the right way.','our knowledge of the scripture.','','','a','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:55'),(473,'“And if anyone will not receive you or listen to your words, shake off the dust from your feet as you leave that house.” This is a sign of','forgiveness','rebuke','acceptance','condemnation.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:56'),(474,'“Foxes have holes and birds of the air have nets; but the son of man has nowhere to lay His head”. By this statement, Jesus meant that His disciples','would not grow rich.','would not enjoy good houses.','had a lot of task ahead.','had a lot of enemies.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:57'),(475,'The treasures which Jesus wants us to lay in heaven include','generosity and kindness.','love and mercy.','works of righteousness','gold and silver.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:58'),(476,'“No one can serve two masters...” This means that one should not','be idolatrous.','belong to two religions.','worship money.','bean unbeliever.','','','a','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:59'),(477,'Whoever drinks the water Jesus gives will never thirst? What is this water?','The spirit of God.','Holy and anointed water.','The word of God.','Law of God.','','','a','','wassce','2009',57,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:00'),(478,'Jesus said “I am the bread of life; he who comes to me shall not hunger...” ‘Bread of life’ in this context means the','body of Jesus Christ.','manna given to the Israelites.','holy bread of life.','spiritual food through Jesus.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:01'),(479,'John’s summary of God’s love for the world is that He','sent his son to judge the world righteously.','created man in his own image with authority.','made light that the world might walk in it.','gave his only son to save all believers.','','','d','','wassce','2009',52,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:02'),(480,'According to John’s Gospel, Lazarus was from','Bethany','Galilee.','Jerusalem.','Bethsaida.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:03'),(481,'Jesus said to Martha, “...and whoever live and believes in me shall never die...” Jesus talks about','physical death.','spiritual death.','emotional death.','natural death.','','','b','','wassce','2009',62,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:04'),(482,'The meeting of the Christian Council of Jerusalem was chaired by','Peter.','Paul.','James.','John.','','','a','','wassce','2009',76,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:04'),(483,'Paul wished to retain Onesimus with him but did not do so because','Onesimus was unwilling to stay with him.','he was afraid of Philemon’s reaction.','he did not like such a favour to be imposed on Philemon.','Onesimus would soon be released from jail.','','','c','','wassce','2009',64,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:05'),(484,'Paul and his associates gave the Thessalonian believers an \timportant example to imitate. This example was to','be ready to help the poor always','toil, labour and work to earn a living','depend on foreign aids for sustenance.','suffer imprisonment without complaint.','','','b','','wassce','2009',54,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:06'),(485,'Peter urged all Christians to endure sufferings in faith conscious of the fact that','Jesus, himself also resisted suffering','the devil could lure them from faith with suffering.','only the physical body is affected.','suffering is temporary and leads to eternal glory.','','','d','','wassce','2009',67,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:07'),(486,'Paul’s teaching in Colossians on love, respect and obedience concerns','Christian giving.','family relationship.','master servant relationship.','Christian relations with their enemies.','','','b','','wassce','2009',75,'Admin','2016-11-12 13:02:31','2020-07-15 03:50:53'),(487,'According to Peter, God set up the state for the purpose of','silencing the ignorance of foolish men.','collecting appropriate taxes from its citizens','carrying out appropriate sanctions for the guilty','ensuring the protection of its citizens','','','d','','wassce','2009',56,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:09'),(488,'In Paul’s epistle to the Thessalonians, any Christian living \tin idleness should be','thrown out of the Church.','looked at as an enemy.','sympathized with','avoided by the others.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:10'),(489,'The two major obstacles against Abraham’s hope for a son were','impotency and old age','faithlessness and unbelief.','old age and barrenness.','sin and doubt.','','','b','','wassce','2009',65,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:11'),(490,'The theme justification by faith can only be achieved through','sacrifices to Jesus.','resurrection of Jesus.','redemptive power of Jesus.','response of angels to Jesus.','','','c','','wassce','2009',71,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:12'),(491,'According to Paul in Romans, if it is the adherents of the law who are to be the heirs of Abraham then faith in Jesus is','null and void.','not attainable','.     \t\t\t\\nbeyond the reach of Gentiles','transgression of the law.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:13'),(492,'“Your blood be upon your heads! I am innocent. From now on I will go to the Gentiles.” This was Paul’s utterance at','Antioch.','Corinth.','Lystra.','Ephesus.','','','d','','wassce','2009',70,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:14'),(493,'The preaching of the resurrection of Jesus by his disciples \twas opposed by the','Jews.','Elders.','Sadducees.','Pharisees.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:15'),(494,'The first missionary journey was started by Paul and','Judas','.      \\nBarabbas.','Timothy.','Barnabas.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:16'),(495,'During the election to replace Judas among the twelve, Peter quoted from the book of','Joel.','Psalms.','Isaiah.','Ezekiel.','','','b','','wassce','2009',75,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:17'),(496,'What was Herod’s reaction when he heard the news about Jesus’ birth?','He sent gifts','He was excited','He was troubled','He became calm','','','c','','utme','2015',73,'Admin','2016-11-12 13:28:12','2020-07-14 14:18:18'),(497,'“....... Behold, I will bring evil upon you; I will utterly sweep you away .....” Elijah pronounced destruction on Ahab with the statement above for his sin of','the killing of God’s prophets','worship of other gods','going to war against Ramoth-gilead','greed, covetousness and murder','','','a','','utme','2015',63,'Admin','2016-11-12 13:28:14','2020-07-23 10:07:49'),(498,'The ruler of the synagogue whose child Jesus raised to life was','Zebedee','a widow','Jairus','a centurion','','','c','','utme','2015',67,'Admin','2016-11-12 13:28:14','2020-07-14 02:17:50'),(499,'According to Amos, true religion entails','engaging in sacrifices and burnt offerings','being just and righteous','fasting and praying always','engaging in holy feasts and assemblies','','','b','','utme','2015',71,'Admin','2016-11-12 13:28:14','2020-07-23 10:07:48'),(500,'Paul in Romans said that the righteousness of God has been manifested through faith in Jesus Christ for','the exaltation of the authority','the cleansing of the sinners','the dead in Christ','all those who believe','','','d','','utme','2015',67,'Admin','2016-11-12 13:28:14','2020-07-14 12:27:52'),(501,'“I tell you, if these were silent, the very stones would cry out.” Jesus’ statement above was made when','He was rebuked by the Pharisees for eating with sinners','the scribes and the chief priest came to arrest Him','He consoled a woman on His way to the cross','the Pharisees asked Him to rebuke His disciples','','','d','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:29'),(502,'Before Moses brought the Israelites to meet God on Mount Sinai, he charged them to','touch the mountain at the sight of smoke','ensure they eat very well','wash the garments and be consecrated','mate with their wives for three days','','','c','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:30'),(503,'In His teaching about Himself, Jesus said the hireling is not a good shepherd because he','leaves the sheep and flees at the sight of danger','owns the sheep but does not care for them','cares for the sheep but does not discipline them','is the gate-keeper who shuts the sheep out','','','a','','utme','2015',71,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:31'),(504,'God displayed His supremacy when Ahab was king during \tthe','incidence of Naboth’s vineyard','war with Ramoth-gilead','inciting of Jehoshaphat against him','contest of Mount Carmel','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:32'),(505,'In his teaching on effective prayer, James said that the prayer of faith would','influence the authority','heal and cleanse sins','ensure salvation for the sick','enhance commitment to church','','','b','','utme','2015',58,'Admin','2016-11-12 13:28:15','2020-07-23 10:07:46'),(506,'Paul in Thessalonians declared that at the second coming \tof the Lord, those who are alive will not precede those that are','ignorant','condemned','asleep','faithful','','','c','','utme','2015',52,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:33'),(507,'When Ezekiel ate the scroll that was given to him his call. it signified that','God would always go before him','his sins were forgiven','he would never be hungry','he was filled with God’s word','','','d','','utme','2015',53,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:35'),(508,'“ ..... I will surely tear the kingdom from you and will give it to your servant .....” An unwise decision of Solomon that resulted in God making the pronouncement above was his','dependence on other nations for supplies','policy of forced labour','neglect of God for other gods','heavy taxation on the people','','','c','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:35'),(509,'God fed the Israelites with Manna at the wilderness of','Zin','Elim','Sinai','Sin','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:36'),(510,'“The very stone which the builders rejected has become the head of the corner” The statement above in Peter was directed to those who','did not believe in Jesus’ preciousness','built the Temple of Jerusalem','don’t offer spiritual sacrifice','are hard hearted against Jesus Christ','','','d','','utme','2015',66,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:37'),(511,'A good example of parental responsibility was demonstrated by','Samuel','Eli','Asa','David','','','c','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:38'),(512,'Why did Pilate send Jesus to Herod during the trial?','Jesus, as a Galilean was under Herod’s jurisdiction','Pilate had no power to pass the death sentence','Herod’s court was the last point before crucifixion','Herod had longed to see Jesus perform miracles','','','a','','utme','2015',80,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:39'),(513,'Who was the king that granted Nehemiah permission to go and rebuild Jerusalem?','Darius','Nebuchadnezzar','Artaxerxes','Cyrus','','','c','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:40'),(514,'“Shall l pursue after this band? Shall l overtake them?” David’s dependence on God for direction is depicted in the statement above when','Absalom had revolted against him','Saul was within his grasp','the Amalekites had raided Ziklag','he was to go against Goliath','','','c','','utme','2015',63,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:41'),(515,'A parable that teaches a lesson on the demands of the kingdom is that of the','lost coin','Weeds','Samaritan','prodigal son','','','c','','utme','2015',61,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:42'),(516,'Paul admonished the Romans to live a new life in Christ by yielding themselves to God as men who','have been brought from death to life','will meet Christ in God’s Kingdom','will receive judgment on the last day','have suffered for the sake of the gospel','','','a','','utme','2015',54,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:43'),(517,'An action that demonstrated Solomon’s wisdom was his','judgment of the prostitute’s child','reliance on a medium','alliance with other nations','taxation policy for his building works','','','a','','utme','2015',75,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:44'),(518,'According to Corinthians, Paul while defending himself advised believers to boast only of the things that','exhibit their authority','show their weakness','display their exaltation','depict their righteousness','','','d','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-07-15 14:05:27'),(519,'The most important aspect of the religious reforms of King Josiah was the','renewal of the covenant','cleaning of the Temple','discovery of the tomb of the man of God','discovery of the book of the law','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:46'),(520,'Cornelius who was converted and baptized by Peter was a','member of the Sanhedrin','centurion','Gentile who persecuted the church','scribe','','','b','','utme','2015',77,'Admin','2016-11-12 13:28:15','2020-07-15 03:50:53'),(521,'David was successful as a leader in Israel because','he submitted to God’s guidance','of his training as a solider','of the love of his people','of his life as a shepherd','','','a','','utme','2015',60,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:55'),(522,'The action that portrayed Moses as a leader of the Israelites was his','request to Pharaoh to spare Israelite’s sons','disobedience to Pharaoh and escape','killing of an Egyptian who fought with a Hebrew','protection of the daughter of Jethro','','','c','','utme','2015',62,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:56'),(523,'“How is it that you have agreed together to tempt the spirit of the Lord ....” The statement above was made in reference to the greed of','Gehazi and Naaman','Ahab and Jezebel','Judas and scribes','Ananias and Sapphira','','','d','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-07-23 10:07:47'),(524,'The king who captured and drove the Israelites into exile during the reign of Jehoiachin was','Nebuchadnezzar','Darius','Cyrus','Artaxerxes','','','a','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:58'),(525,'Nebuchadnezzar decreed that all his subjects should worship the image he had set up whenever they','desired something from him','saw him stand before it','looked upon it','heard the sound of music','','','d','','utme','2015',54,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:59'),(526,'“The Son of man must suffer many things, and be rejected by the elders .....” Jesus made the statement above after He','cleansed the Temple','demanded to know who people thought He was','taught on the Mount','was asked by Pilate if He was the King of the Jews','','','b','','utme','2015',65,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:59'),(527,'How old was Abram when God appeared to him the second time?','105 years','75 years','99 years','85 years','','','c','','utme','2015',69,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:00'),(528,'“Leaves the dead to bury their own dead ....” Jesus’ statement above to the man He asked to follow Him was indicative of','His power over death','His desire to save the man','the futility of life','the cost of discipleship','','','d','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:01'),(529,'Paul in Romans advised believers to respect those in authority to avoid God’s wrath and also for the sake of','conscience','Christ','faith','others','','','a','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:02'),(530,'“What is this conversation which you are holding with each other ...” Jesus made the statement above to','Cleopas and the other disciple when','they were on their way to Emmaus','He was about to be arrested','they were gathered in a room after His resurrection','','','a','','utme','2015',70,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:03'),(531,'A key requirement for healing as exemplified by the disciple’s inability to heal the epileptic boy is','righteousness','power','humility','Faith','','','b','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:04'),(532,'According to Paul in Philippians, Jesus demonstrated humility when He','had pity on the possessed man','likened Himself to God','forgave those who crucified Him','took the form of man','','','d','','utme','2015',78,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:05'),(533,'“Holy, holy, holy is the Lord of host ....” The statement above was made in reference to the call of','Ezekiel','Jeremiah','Amos','Isaiah','','','d','','utme','2015',62,'Admin','2016-11-12 13:28:16','2020-07-23 10:07:46'),(534,'For obeying His word, God rewarded Shiphrah and Puah with','families','positions','servants','wealth','','','a','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:07'),(535,'In his teaching on Spiritual gifts in Corinthians, Paul said that all gifts are inspired by','the same Spirit','prayer','the individual’s ability','grace','','','a','','utme','2015',73,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:08'),(536,'When David’s son Absalom rebelled against him, David was forced to','flee from Jerusalem','abdicate the throne','divide his kingdom','surrender to him','','','a','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:09'),(537,'“Go and stand in the temple and speak to the people all the words of this life.” The angel’s statement above to Peter was after','the murmurings of the Hellenists','his release from prison','his vision of eating unclean meat','he received the Holy Spirit','','','b','','utme','2015',53,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:10'),(538,'In His sermon on the Mount, Jesus discouraged His listeners from laying up treasures on earth because','it would create enmity','they would not be respected','thieves would steal them','the earth would pass away','','','d','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:11'),(539,'Paul returned Philemon’s slave back to him, to ensure that','Philemon forgave and accepted the slave','the slave can complete his service time','he would be welcome when he left prison','he could boast of Philemon’s obedience','','','b','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:12'),(540,'One of the prophets that prophesied hope for Israel in spite of God’s promise of punishment was','Amos','Jeremiah','Obadiah','Hosea','','','b','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:13'),(541,'The church that was commended for giving even when in extreme poverty was in','Galatia','Corinth','Macedonia','Thessalonica','','','d','','utme','2015',67,'Admin','2016-11-12 13:28:16','2020-07-23 10:07:48'),(542,'“........ I am the Lord, and there is no other, besides me \tthere is no God....” God’s statement above through Isaiah depicts','assurance to Isaiah of His existence','Israel’s acceptance of His Supremacy','His divine nature','His sovereignty','','','c','','utme','2015',73,'Admin','2016-11-12 13:28:16','2020-07-23 10:07:46'),(543,'Believers today are partakers of the New Covenant through','partaking in baptism by immersion','the gift of the spirit','adherence to all the sacraments','obedience to church leadership','','','b','','utme','2015',55,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:22'),(544,'God’s message through Jonah’s was to the people of','Joppa','Tarshish','Samaira','Nineveh','','','d','','utme','2015',64,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:23'),(545,'Amos is often referred to as a prophet of','doom','love','hope','justice','','','a','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:24'),(546,'On the fourth day, God created the sun, moon and stars for the following purposes except','to separate the day from the night.','for signs of seasons, days and years.','to give light upon the earth.','to dry up flood from the face of the earth.','','','a','','wassce','2010',77,'Admin','2016-11-12 13:36:18','2020-07-14 14:19:25'),(547,'Which of the following rivers flowed out of Eden to water \tits garden? River','Abana','Pharpar','Pishon','Nile','','','c','','wassce','2010',69,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:26'),(548,'The wife of Moses was called','Rebecca.','Rachel.','Zipporah.','Deborah','','','c','','wassce','2010',72,'Admin','2016-11-12 13:36:21','2020-07-26 19:30:54'),(549,'When Joseph was sent to his brothers, he met them pasturing at','Hebron.','Bethel.','Beersheba','Dothan','','','d','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:28'),(550,'How old was Joshua before he died?','95 years','98 years','110 years','111 years','','','c','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:29'),(551,'Why was Saul asked to destroy the Amalekites?','They were worshipping false gods','They opposed the Israelites when they left Egypt','They did not assist the Israelites','God did not like the Amalekites','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:31'),(552,'The first king of Israel lost his throne because he','was a weak king.','knew little about governance.','lost the support of Yahweh.','was irresponsible.','','','d','','wassce','2010',74,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:32'),(553,'During the Ammonite war Uriah disobeyed King David by refusing to go to his house to sleep because','it was wrong to go home drunk.','his wife would regard him as a coward.','it would be unpatriotic to break military vow.','he suspected that the king had lost interest in the battle.','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:34'),(554,'When Abner wanted to transfer his allegiance to David, the latter gave him the condition to','openly submit to Joab.','convince all Israel to come over to David.','restore his wife Michal to him.','slay Ishbosheth. Saul’s successor.','','','c','','wassce','2010',55,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:35'),(555,'God said to Solomon in a dream, <em>“Ask what I shall give you”</em>. What did Solomon ask for?','Power and authority','Great wealth and riches','Stable and long term in office','An understanding mind','','','d','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:36'),(556,'Solomon showed lack of wisdom when he','put up temples for the gods of his wives','married many wives with children','invited the Queen of Sheba','gave out judgment to two harlots.','','','a','','wassce','2010',64,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:37'),(557,'Solomon told Hiram, King of Tyre that he had decided to build a temple for the Lord because','the Lord had given him peace and all good things.','his father, David, never intended to build one.','he wanted to force Hiram to come to his aid.','Hiram had entered into a marriage alliance with his father.','','','a','','wassce','2010',63,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:38'),(558,'Elijah destroyed the prophets of Baal','to oppose Baal worship.','as an act of revenge.','as an act of sacrifice.','to shame Jezebel.','','','a','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:39'),(559,'Who was the king who reintroduced the Passover feast in Israel?','Jeroboam','Asa','Josiah','Rehoboam','','','c','','wassce','2010',76,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:40'),(560,'Who was the prophet responsible for the re-building of the Temple during the exile?','Ezra','Isaiah','Jeremiah','Ezekiel','','','a','','wassce','2010',70,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:41'),(561,'Which of the following prophets taught that Yahweh was merciful?','Isaiah','Hosea','Amos','Ezekiel','','','b','','wassce','2010',71,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:42'),(562,'Daniel was delivered from the lion’s den because','of his faith in God’s power.','of the king’s prayers.','he was able to charm the lions.','the lions were kind to him.','','','a','','wassce','2010',74,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:43'),(563,'The person who discovered the book of law in the sanctuary during the reign of Josiah was','Zedekiah','Huldah.','Hilkiah','Jeremiah.','','','c','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:44'),(564,'According to Amos’ prophecy, the “Day of the Lord” to the Israelites would be a day of','victory over enemies','happiness.','doom.','national triumph.','','','c','','wassce','2010',78,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:45'),(565,'Isaiah said that when Israel spread forth their hands, God would hide his face because they were','making many prayers','offering vain sacrifices.','worshipping God with their hearts.','observing elaborate feasts.','','','b','','wassce','2010',57,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:48'),(566,'From Luke’s account of the baptism of Jesus, which of the following happened before the voice was heard?','John was reluctant to baptize Him.','John called Jesus the Lamb of God.','Jesus arrived with Peter, James and John','The Holy Spirit descended upon Jesus.','','','d','','wassce','2010',84,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:49'),(567,'Before their first encounter with Jesus, Peter and Andrew were','preachers.','tax collectors.','fishermen.','tent makers.','','','c','','wassce','2010',63,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:50'),(568,'By the action of the Good Samaritan, Christians are encouraged to','go out to the streets and look for someone to help.','always travel with enough money in case the need arises to help.','show compassion and render help to the needy.','avoid travelling on lonely roads where armed robbers could attack.','','','c','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:51'),(569,'The <em>lost sheep</em> and the <em>lost coin</em> share the following except that','both of them are lost and need to be found','it is their owners’ responsibility to look for them.','the coin, may not know that it is lost.','their owners rejoice when they are found.','','','a','','wassce','2010',73,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:52'),(570,'The parable of the rich man and Lazarus indicates that','poverty is a mark of righteousness.','death is a leveler for rich and poor','only poor people will die physically.','all rich men are going to hell fire.','','','b','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:53'),(571,'In one of the resurrection appearances Jesus asked his disciples, whether they had anything to eat as he','was hungry after three days in the grave without food.','suspected that the disciples stock may have finished','wanted to prove to them that he was not a ghost.','wanted to replenish the food stuff.','','','b','','wassce','2010',59,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:54'),(572,'By introducing Jesus as the Lamb, John was pointing to','Jesus’ sacrificial death.','Jesus’ miraculous healing.','the Jewish yearly sacrifices.','the priestly function of Jesus','','','a','','wassce','2010',85,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:55'),(573,'St. John refers to Jesus’ miracles as ‘signs’ because they convey the following ideas except','acceptance of Jesus as son of God.','proofs of the kingdom of God.','faith in Jesus as the means to eternal life.','demand for more wonders.','','','d','','wassce','2010',60,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:56'),(574,'Apart from the miracles at the wedding feast, another miracle of Jesus at Cana in Galilee was','feeding the four thousand.','healing the noble man’s son.','healing of a man born blind','healing a paralytic man.','','','d','','wassce','2010',79,'Admin','2016-11-12 13:36:22','2020-07-15 13:50:19'),(575,'At whose well did Jesus meet the Samaritan woman?','Abraham','Isaac','Jacob','Joseph','','','c','','wassce','2010',66,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:05'),(576,'The lame man who was healed at the pool of Bethizatha was charged by the Jews for breaking the law of the Sabbath \tbecause he','consulted Jesus on the Sabbath day.','was carrying his pallet on a Sabbath day.','was on a journey on a Sabbath day.','was seen with Jesus on a Sabbath day.','','','b','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(577,'The descent of the Holy Spirit on the day of  Pentecost was prophesied by','Amos.','Joel.','David.','Ezekiel.','','','b','','wassce','2010',75,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(578,'When the apostles in Jerusalem heard that Samaria had received the gospel, they sent to them','Mark and Barnabas.','Peter and John.','Paul and John.','Peter and Paul.','','','b','','wassce','2010',85,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:07'),(579,'The conversion of the Ethiopian eunuch confirms the','universality of the gospel.','work of the Apostles.','work of Philip in Samaria','the love of God for the eunuch.','','','a','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:08'),(580,'After his conversion, Paul was introduced to the disciples in Jerusalem by','Peter','Ananias.','Barnabas.','Philip','','','c','','wassce','2010',65,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:09'),(581,'Before Barnabas and Saul were sent on missionary journey, the elders, laid hands on them. The laying on of  hands signifies','confirmation.','selection.','commissioning.','protection','','','c','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:10'),(582,'The man who delivered judgment of the Jerusalem Council on the admission of Gentiles into the Church was','Peter.','Paul.','Barnabas.','James.','','','d','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:11'),(583,'Why according to Paul must Christians be subject to civil authority?','To receive God’s approval','To avoid God’s wrath','God has commanded it','It is an Old Testament law','','','b','','wassce','2010',72,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:12'),(584,'In the Epistle to the Romans, justification is received through','faith in Jesus.','moral uprightness','observance of the law.','giving of alms','','','a','','wassce','2010',71,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:13'),(585,'By saying that no human being will be justified in the sight of God by works: Paul meant that','the mosaic law was useless in ensuring justification for man.','the law had been weakened in human flesh.','knowledge of sin came through the law.','Moses who gave the law was not justified by the law.','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:15'),(586,'Paul’s greatest writing about spiritual gift is found in his letter to the','Galatians.','Ephesians.','Romans.','Corinthians','','','d','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:16'),(587,'In Corinthians, Paul cited all the following resurrection appearances of Jesus except','Cephas.','The Twelve.','Mary Magdalene','James.','','','d','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:17'),(588,'According to Peter, a Christian should exercise his freedom by','doing what is right.','claiming his freedom at all cost.','enduring pain while suffering.','using it as a pretext for evil.','','','a','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:18'),(589,'In which of the following ways did the Philippians share in Paul’s suffering while in prison?','Appealing for the release of Paul','Sending him relief materials','Continuing in prayer for him','Remaining in partnership with him in receiving.','','','b','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:19'),(590,'What advice did Peter give to the elders of the church in their relationship with the younger members?','Work as if being under external constraint','Work without a domineering spirit','Work with a desire for material gains','Control their flocks with firm hands','','','b','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:20'),(591,'In Philippians, Paul taught that Jesus ‘humility and death on the cross earned Him','salvation for Israel.','adoption as son of God.','exaltation as Lord.','eternal life in the kingdom.','','','c','','wassce','2010',72,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:21'),(592,'Why did Paul wish to retain Onesimus?','To protect him from persecution','Christianity was opposed to slavery','Philemon had earnestly requested that from Paul','To serve him during his imprisonment','','','b','','wassce','2010',70,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:22'),(593,'James teaches that the man who shall be blessed is he who','hears the word of God.','knows the law perfectly.','does the word he hears.','teaches the word of God well.','','','c','','wassce','2010',72,'Admin','2016-11-12 13:36:23','2020-07-27 02:54:01'),(594,'Through God the Christian is no longer a slave but a son, and if a son then','a master.','a redeemed.','an heir.','a beneficiary.','','','c','','wassce','2010',68,'Admin','2016-11-12 13:36:23','2020-07-14 14:20:23'),(595,'Peter recommends submission to the civil authority so as to','silence the ungodly.','encourage the believers.','promote faith in God.','live as free men.','','','a','','wassce','2010',78,'Admin','2016-11-12 13:36:23','2020-07-14 14:20:24'),(596,'What was God’s purpose in creating man?','To be master of all creation','To help Him look after the garden','To name the things He created','To multiply and fill the earth','','','d','','utme','2010',84,'Admin','2016-11-12 13:46:53','2020-07-27 02:54:01'),(597,'Isaac’s prayer to God for his barren wife showed that he','truly loved her','sincerely loved his God','had faith in God','was tired of being childless','','','c','','utme','2010',74,'Admin','2016-11-12 13:46:54','2020-07-14 14:20:26'),(598,'In God’s covenant with Israel, the central theme was','restoration','circumcision','obedience','salvation','','','c','','utme','2010',85,'Admin','2016-11-12 13:46:54','2020-07-14 14:20:27'),(599,'‘Who am I that I should go to Pharoah......’ When Moses resisted God’s call with the state¬ment above, it portrayed his','stubbornness','incompetence','lack of strength','lack of eloquence','','','d','','utme','2010',77,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:28'),(600,'What was Samson’s major achievement as Israel’s leader?','He suppressed the Philistines','He captured the city of Jericho','He saved the Israelites from the Amorites','He secured permanent independence for Israel','','','a','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:30'),(601,'God guided the Israelites on their way from Egypt to the Promised Land by','the work of two angels','dividing the Red Sea','a pillar of cloud and a pillar of fire','miracles that gave them direction on the way','','','d','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:31'),(602,'‘Deal gently for my sake with the young man Absalom.’ David’s statement above exhibited his','indulgent love for his son','willingness to forgive his competitors','desire to punish Absalom himself','high level of parental control','','','a','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-07-23 10:07:48'),(603,'How did king Asa prove to be a godly king?','He killed all the prophets of Baal at Mount Carmel.','He saved Judah from the Philistine menace','He instituted spiritual reforms that removed all idols and prostitution in the land.','He made the worship of Yahweh mandatory for every Jew and sojourner.','','','c','','utme','2010',80,'Admin','2016-11-12 13:46:55','2020-07-15 13:50:19'),(604,'The Hebrew midwives who obeyed God rather than Pharaoh were blessed with','favour from all the Israelites','long life in Canaan','resources','families','','','d','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:34'),(605,'When Saul disobeyed God’s command, Samuel rebuked him by saying that','the sword would never depart from his house','to obey was better than sacrifice','he should fear the LORD and obey the people’s voice.','though he was little, yet he was the head.','','','b','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:35'),(606,'David’s behaviour after Prophet Nathan accused him of murder and adultery showed his','justification','repentance','greed','righteousness','','','b','','utme','2010',90,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:36'),(607,'How did King Solomon demonstrate his wisdom in settling the dispute over the ownership of a baby by the two \\nProstitutes?','He interrogated them for seven days until the truth was discovered.','He interrogated them for only three days and the truth was revealed','He asked them to divide the child into two and the mother was known.','He threatened to give the child to a neutral woman and the mother was known.','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:37'),(608,'The prophet who made known the imminent divi¬sion of the kingdom of Israel during Solomon’s reign was','Jehu','Ahijah','Elisha','Elijah','','','b','','utme','2010',81,'Admin','2016-11-12 13:46:55','2020-07-23 10:07:49'),(609,'Naaman’s leprosy was transferred to Gehazi be¬cause Gehazi was','ambitious','anxious','covetous','contemptuous','','','c','','utme','2010',64,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:39'),(610,'Obadiah who was m charge of Ahab’s house hold demonstrated reverence for the LORD by','giving Elijah the bull for the sacrifice on Mount Carmel.','rebuking Ahab and Jezebel for their evil deeds','hiding a hundred prophets of God from Jezebel’s wrath.','helping Elijah to kill the prophets of Baal on Mount Carmel.','','','c','','utme','2010',71,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:40'),(611,'Although Josiah removed the vessels of Baal and Asherah from the Temple, God did not turn from the fierceness of His \twrath because”','the people did not remove them completely','Jehoahaz, Josiah’s son, had provoked Him','Manasseh had provoked Him','the people had opposed Josiah.','','','c','','utme','2010',84,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:41'),(612,'What was Nehemiah’s initial reaction to the news about the ruins of Jerusalem?','He tasked the people on what to contribute','He called for volunteers to assist him','He fasted and prayed for forgiveness of sins','He asked for permission to travel home.','','','c','','utme','2010',114,'Admin','2016-11-12 13:46:55','2020-07-27 19:27:04'),(613,'After the dedication of the Temple, Ezra studied the law of the LORD in order to','defend the Jews against the Babylonians','become the first judge in Jerusalem','enhance his prophetic status','teach His statutes and ordinances in Israel.','','','d','','utme','2010',83,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:43'),(614,'Daniel became distinguished above all other pre¬sidents and satraps because','an excellent spirit was in him','the spirit of Darius was in him','he was a good administrator','he was highly educated.','','','a','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-07-15 14:05:27'),(615,'How did the Ninevites react to Jonah’s message?','They did not believe it','They believed it for a while','They repented of their sins','They ordered him out of their city','','','c','','utme','2010',67,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:45'),(616,'In Prophet Hosea’s analysis, harlotry is equivalent to Israel’s','prostitution','idolatrous practices','religious practices','adultery.','','','b','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:46'),(617,'‘... But let justice roll down like waters, and righteousness like an overflowing stream.’ Amos’ statement above suggests that the society was terribly','vindictive','abusive','oppressive','destructive','','','c','','utme','2010',83,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:47'),(618,'Isaiah emphasized holiness above all things be¬cause God','knew their hearts were right with him','was not interested in their sacrifices','who called them is holy','was searching their sinful   hearts.','','','c','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:48'),(619,'God told Ezekiel that the house of Israel would not listen to him because they','were a people of foreign speech','had forsaken His laws','were of a stubborn heart','had not truly repented','','','c','','utme','2010',86,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:48'),(620,'According to Isaiah, God sent him to','proclaim liberty to the captives','proclaim victory over Israel’s enemies','be a watchman over Israel','destroy and overthrow nations.','','','a','','utme','2010',82,'Admin','2016-11-12 13:46:55','2020-07-23 10:07:48'),(621,'Jesus was tempted by the devil so as to','fulfil all righteousness','show His power over forces of nature','show that no one is above temptation','test the devil’s power','','','c','','utme','2010',92,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:50'),(622,'‘Depart from me, for l am a sinful man, oh Lord.’ This statement was uttered by Peter at the','last supper','garden of Gethsemane','call of the disciples','transfiguration','','','c','','utme','2010',99,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:51'),(623,'The impact of Jesus’ miracle of turning water into wine was that the','servants were astonished','master of ceremony believed','disciples believed more in Him','people glorified God.','','','c','','utme','2010',73,'Admin','2016-11-12 13:46:55','2020-07-14 14:20:52'),(624,'After the healing of the demoniac in the country of the Gerasenes, the people begged Jesus to (Mark 5:15-19)','stay with them','visit them always','go away from them','heal their sick.','','','c','','utme','2010',83,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:53'),(625,'Jesus told the parable of the lost sheep in order to illustrate that','every believer ought to rejoice with those who rejoice.','no person can hide from God','God’s love is unlimited','there is joy in heaven over a sinner who repents','','','d','','utme','2010',78,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:54'),(626,'According to Jesus, the seventy disciples should rejoice because','their names were written in heaven','their faith and zeal were increased','of the submission of evil Spirits to them','of the fall of Satan from heaven like lightening.','','','a','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:55'),(627,'According to Mark, after the transfiguration, Jesus charged His disciples to','be prepared for persecution','tell no one what they had seen','have no hands in His betrayal','go to the Gentiles immediately','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:56'),(628,'According to Luke, the multitude that followed Jesus during the triumphal entry rejoiced and praised God with a loud voice because (Luke 19:37-39)','they realized that Jesus was a prophet','of the mighty works He had done','He was riding on a colt in humility','they believed He was their Messiah','','','b','','utme','2010',84,'Admin','2016-11-12 13:46:56','2020-07-23 10:07:46'),(629,'‘Truly, I say to you, today you will be with me in paradise.....’ Jesus made the statement above to one of the \t\tcriminals because he (Luke 23:42-43)','respected Him','praised Him','rebuked his partner','was repentant','','','d','','utme','2010',75,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:58'),(630,'The message of the risen Christ to the women who came early to the tomb was to be relayed to the disciples and (Mark 16:7)','the Jews','the Sadducees','Thomas','Peter','','','d','','utme','2010',90,'Admin','2016-11-12 13:46:56','2020-07-14 14:20:59'),(631,'According to the Gospel of John, Jesus is the true vine while the vinedresser is (John 15:1)','the Holy Spirit','His father','the gardener','His mother','','','b','','utme','2010',81,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:00'),(632,'‘...Why has Satan filled your heart to lie to the Holy Spirit..’ Peter rebuked Ananias in the statement above for his sin of (Acts 5:3-4)','greed','insincerity','covetousness','partiality.','','','b','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:00'),(633,'Paul informed the Galatians that the gospel he preached came through (Gal. 3:23-29)','a revelation of Jesus Christ','his desire to lead them','inspiration from the angels','the faith of men.','','','a','','utme','2010',79,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:01'),(634,'‘You son of the devil, you enemy of all righteous¬ness, full of all deceit and villainy .....’ This statement of Paul was addressed to (Acts 13:6-11)','Elymas, the magician','Paulus, the proconsul','Simon, the Magician','Demetrius, the silversmith','','','a','','utme','2010',86,'Admin','2016-11-12 13:46:56','2020-07-23 10:07:46'),(635,'‘Unless you are circumcised according to the custom of Moses, you cannot be saved.’ The statement above by the men from Judea led to the','murmurs of the Hellenists','convening of the Jerusalem Council','persecution that scattered the disciples','circumcision of the Gentiles.','','','b','','utme','2010',92,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:03'),(636,'According to Galatians, the Law was added be¬cause of','righteousness','transgressions','grace','persecution.','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:04'),(637,'According to Galatians, the death of Christ has eliminate all forms of','suffering','differences','condemnation','poverty.','','','c','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:05'),(638,'Peter in his teaching no humility, admonishes Christians to','safeguard their faith','seek things that are above','be gentle in spirit','avoid life’s anxiety','','','b','','utme','2010',69,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:06'),(639,'Paul in Corinthians advised that Christians should re-affirm their love for those who','are kind to them','wrong them','humble themselves','are in authority.','','','b','','utme','2010',84,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:07'),(640,'According to Corinthians, variety of gifts are inspired by','fervent prayers','angels of God','constant fasting','the same Spirit','','','d','','utme','2010',76,'Admin','2016-11-12 13:46:56','2020-07-15 13:37:42'),(641,'According to Paul in Corinthians, generosity produce','righteousness','salvation','the grace of God','thanksgiving to God','','','d','','utme','2010',90,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:09'),(642,'Busy bodies and those living in idleness in the church at Thessalonica were admonished to','pray for those in authority for peace','do their work in quietness and earn a living','appeal to those in authority to create jobs','endure persecution from their masters.','','','b','','utme','2010',73,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:10'),(643,'Paul in Thessalonians told believers that the coming of the Lord would be accompanied by','songs of praise','the sound of the trumpet','signs and wonders','wailing and mourning','','','b','','utme','2010',76,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:11'),(644,'James stated in his epistle that when believers meet various trials, their faith produces','weakness','strength','steadfastness','righteousness','','','c','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:12'),(645,'Peter in his epistle enjoined servants to be sub¬missive to their masters with all','gentleness','seriousness','respect','humility.','','','c','','utme','2010',81,'Admin','2016-11-12 13:46:56','2020-07-14 14:21:13'),(646,'According to Joseph’s interpretation to Pharaoh’s dreams; the seven empty ears blighted by the east wind represented seven years of','famine.','abundance.','farming.','Harvest','','','a','','wassce','2011',75,'Admin','2016-11-12 14:29:10','2020-07-14 14:21:14'),(647,'Moses was born at a period when the Hebrew were','suffering.','increasing.','backsliding.','rejoicing.','','','a','','wassce','2011',68,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:14'),(648,'“…who is the Lord that I should heed his voice and let Israel go”? After this statement, Pharaoh','engaged Israel into forced labour with task masters.','ordered midwives to kill all males born to Israelites.','asked Israelites to fetch their own straws to produce bricks.','decreed that Israelites’ male babies be drowned in the Nile.','','','c','','wassce','2011',71,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:15'),(649,'The name Moses means','baptized in water','abandoned in water.','drawn out of water.','thrown into water.','','','c','','wassce','2011',79,'Admin','2016-11-12 14:29:12','2020-07-15 14:05:27'),(650,'After the departure of the Israelites God made Pharaoh pursue them in order to','force Israel to return to Egypt.','hasten Israel’s journey through the wilderness.','make Israel obey Moses.','get glory over Pharaoh and his host.','','','d','','wassce','2011',80,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:17'),(651,'Who among the following kings was raised by God against the Israelites for going after the Canaanite gods?','Agap','Jabin','Zebah','Zalmunnal','','','c','','wassce','2011',67,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:18'),(652,'Deborah, a prophetess who was a judge in Israel was the wife of','Joshua.','Abijah.','Lappidoth.','Sisera.','','','c','','wassce','2011',71,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:19'),(653,'The sons of Eli were regarded as worthless men for all the following reasons except','sleeping with the women at the tent of meeting','failing to attend the places of worship regularly.','taking the meat for sacrifice before boiling.','showing no respect for God.','','','b','','wassce','2011',75,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:20'),(654,'Who was the first king of Israel?','Kish','David','Solomon','Saul','','','d','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:21'),(655,'Joel and Abijah were the sons of','Eli.','Saul','Samuel','David.','','','c','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:28'),(656,'“...Behold, to obey is better than sacrifice and to hearken than the fat of rams”. This statement was Samuel’s reaction to','David’s defense of his sin.','Saul’s defense of disobedience.','King Agag’s defense of his victory.','Eli’s defense of the sins of his sons.','','','b','','wassce','2011',76,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:29'),(657,'On Mount Gilboa, king Saul decided to commit suicide in order to avoid','ridicule from the Philistines.','witnessing the death of his sons','being killed by his armour-bearer.','the agony of the injuries received.','','','a','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:30'),(658,'David bitterly mourned when Abner was slain by','Ishbosheth.','Absalom.','Asahel.','Joab.','','','d','','wassce','2011',52,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:31'),(659,'One of the main features of Solomon’s prayer at the dedication of the Temple was the','celebration of God who is faithful to his covenant','recognition that God loves sacrifices.','assertion that God dwells in man-made houses.','proclamation that no prayers be henceforth made outside the temple.','','','d','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-07-26 19:30:54'),(660,'In spite of Solomon’s apostasy, his empire remained intact until his death because','God deferred, for David’s sake, the punishment due to him','he won decisive victories over his enemies.','he always took wise decisions','. \\nhe made surrounding nations fight among themselves.','','','a','','wassce','2011',88,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:33'),(661,'“Your father made our yoke heavy. Now therefore, lighten the hard service of your father.” These were the words of','Jeroboam','Solomon','.         \\nDavid','Ahijah.','','','a','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:34'),(662,'Obadiah, Ahabs servant, made history for himself by','arresting the prophets of Yahweh','. \\nexecuting all the prophets.','hiding and feeding some of the prophets in a cave.','D inciting the prophets to rebel against king Ahab.','','','c','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:35'),(663,'The contest between Elijah and the prophets of Baal took place at mount','Olive.','Tabor.','Sinai','Camel.','','','d','','wassce','2011',56,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:36'),(664,'King Jehoshaphat was commended for adopting his father’s policies which included','removing Maacah, his grandmother from being queen.','waging wars with the king of Israel.','allowing the cult prostitutes to operate.','burning of incense at the high places.','','','a','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:42'),(665,'God’s constant love for unfaithful Israel is demonstrated in the book of','Amos','Isaiah','Hosea','Ezekiel','','','c','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:43'),(666,'During the rebuilding of the temple, Zerubbabel rejected the offer of help from the','inhabitants of Ammon.','people of Samaria.','friends of Sanballat and Tobiah','governors of the provinces beyond the rivers.','','','c','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-15 09:16:12'),(667,'“And I asked them concerning the Jews that survived, who has escaped exile, and concerning Jerusalem...” These were the words of','Jeremiah.','Nehemiah','Ezra.','Hanani.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:51'),(668,'The presentation of Myrrh to Jesus signifies Jesus’','humility and servant hood.','suffering and impending death.','lordship on earth.','kingship and messiah ship.','','','b','','wassce','2011',87,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:52'),(669,'“My son your sins are forgiven”. These were the words of Jesus to the','demoniac.','paralytic.','man born blind','centurion’s servant.','','','b','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:53'),(670,'Peter called for the construction of three booths for Jesus, Moses and Elijah, respectively during','the transfiguration.','the Ascension.','Jesus’ arrest.','the Passover feast.','','','a','','wassce','2011',82,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:53'),(671,'The incidents that took place following Jesus’ death on the cross did not include the','tearing into two of the temple’s veil.','quaking of the earth that broke the rocks.','the opening of the tombs.','trembling of the chief priest and his conversion.','','','b','','wassce','2011',69,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:54'),(672,'“How is it that you a Jew ask a drink of me...” This statement was made by the','Gentile woman.','woman of Samaria.','possessed woman.','woman of Galilee','','','b','','wassce','2011',69,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:55'),(673,'The Jews showed their hatred for Paul and Barnabas in Pisidia by','dragging out the apostles for stoning.','insisting and driving them out of the Synagogue.','influencing leading men in the city to drive them out.','beating and stoning them in the Synagogue','','','c','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(674,'When Jesus said “apart from me you can do nothing”, he \tmeant that Christians','pray without ceasing','. \\nmust faithfully trust in Him always.','cannot pass examinations if they did not pray.','should expect God to do everything for them.','','','b','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:57'),(675,'On the day of Ascension, Jesus promised his disciples','peace in the kingdom of God.','amazing grace.','power of  the Holy Ghost.','His abiding physical presence.','','','c','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(676,'On Ascension Day two men in white robes inform the disciples that Jesus would','send for them.','be seen in heaven.','prepare a place for them.','come again.','','','d','','wassce','2011',83,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:59'),(677,'“Go up and join this chariot”.  This statement was made to','John.','Paul.','James.','Philip.','','','d','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:00'),(678,'Saul was converted on his journey to','Samaria','Jerusalem.','Salamis.','Damascus.','','','d','','wassce','2011',67,'Admin','2016-11-12 14:29:13','2020-07-27 02:54:01'),(679,'Which of the following places was not visited by Paul during his first missionary journey?','Salamis','Athens','Antioch of Syria','Antioch of Pisidia','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:02'),(680,'Paul was stoned and dragged out of the city by','the Lyconians and the Ephesians.','enemies of the healed lame man','. \\nJews from Antioch and Iconium.','Jews in the Synagogue.','','','a','','wassce','2011',71,'Admin','2016-11-12 14:29:13','2020-07-27 02:54:01'),(681,'The resurrection of Jesus is significant to Christians for it \tmarked the','end of the Jewish faith.','assurance of eternal life for Christians.','beginning of Christianity','end of Jesus’ earthly ministry.','','','b','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:04'),(682,'According to Paul, ‘As sin reigned in death, grace also might reign through righteousness to','faith in God’.','the knowledge of God’.','eternal life','the glory of the father’.','','','c','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:05'),(683,'Paul in Romans declared “for as by one man’s disobedience many were made sinners, so by one man’s obedience many will be made...”','innocent.','righteous.','faithful.','Christians.','','','b','','wassce','2011',59,'Admin','2016-11-12 14:29:14','2020-07-27 02:54:01'),(684,'Which of the following is not true about spiritual gifts as taught by Paul?','Gifts should be used with all modesty','No gift can be independent of others','Gifts have nothing to do with the level of one’s faith','Specific gifts perform specific functions','','','b','','wassce','2011',77,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:07'),(685,'In his comparison of the human body with the body of Christ, Paul did not mention the','hand.','foot.','eye.','nose.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:08'),(686,'The New Life in Christ operates through','humility.','the name of Jesus.','one body.','wisdom.','','','b','','wassce','2011',78,'Admin','2016-11-12 14:29:14','2020-07-15 13:37:42'),(687,'‘Death is swallowed up in victory, “oh death, where is your victory”? This statement is found in the book of','Corinthians.','Romans.','Galatians.','Philemon','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:10'),(688,'According to Paul in Corinthians the gospel message could only be lifeless when Christians','deny the resurrection message.','persecute one another.','gossip among themselves.','entertain idolatrous practices.','','','a','','wassce','2011',84,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:11'),(689,'Paul asked the Thessalonians to imitate his action of','demanding support from his converts.','performing miracles','healing the sick.','working for his personal upkeep.','','','d','','wassce','2011',76,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:12'),(690,'With respect to the date of the Parosia, Paul advised Thessalonians to','be sober in maintaining their hope of salvation.','disregard all speculations about it.','know that the day would be announced later.','enjoy peace and security in the face of danger.','','','a','','wassce','2011',82,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:13'),(691,'Paul, pleaded with Philemon to forgive','Barnabas.','Timothy.','Onesimus.','Silas','','','c','','wassce','2011',103,'Admin','2016-11-12 14:29:14','2020-07-24 20:46:58'),(692,'James strongly condemned partiality in the Church for all the following reasons except that it','is contrary to Christ’s example of humility','accords due respect to the rich who merit it.','is a transgression of the commandment of God.','does not harmonize with the Christian virtue of love.','','','d','','wassce','2011',72,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:15'),(693,'The Galatians, were reminded by Paul that they were Abraham’s offspring and heirs according to','promise.','good works.','law.','grace.','','','a','','wassce','2011',66,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:16'),(694,'According to Paul in Galatians, law ceased to be our custodian as soon as','it was made available to us.','Christ adopted us as his children.','we adopted the faith of Abraham.','we stopped worshipping the elemental spirits.','','','b','','wassce','2011',61,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:29'),(695,'James advised Christians to portray their faith in Jesus by','listening to the word of God always.','converting others to Christ.','practicalizing their Christian belief','constant prayer and fasting.','','','c','','wassce','2011',76,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:30');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `currentaffairs` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `currentaffairs` VALUES (1,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:03'),(2,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:04'),(3,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:15'),(4,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:16'),(5,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:17'),(6,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013',576,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:18'),(7,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:19'),(8,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013',565,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:20'),(9,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013',551,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:21'),(10,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:22'),(11,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:23'),(12,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013',554,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:24'),(13,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:25'),(14,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013',577,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:25'),(15,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:26'),(16,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013',559,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:27'),(17,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013',588,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:28'),(18,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013',585,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:29'),(19,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013',572,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:30'),(20,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013',598,'Admin','0000-00-00 00:00:00','2020-07-25 08:19:21'),(21,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013',566,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:32'),(22,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013',550,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:33'),(23,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013',540,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:34'),(24,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:35'),(25,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:36'),(26,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013',564,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:37'),(27,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:38'),(28,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013',571,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:39'),(29,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-07-20 00:10:52'),(30,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:41'),(31,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:43'),(32,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:44'),(33,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:45'),(34,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013',560,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:47'),(35,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:48'),(36,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013',570,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:49'),(37,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013',583,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:50'),(38,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013',564,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:51'),(39,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013',572,'Admin','0000-00-00 00:00:00','2020-07-25 22:57:50'),(40,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013',585,'Admin','0000-00-00 00:00:00','2020-07-25 02:34:02'),(41,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:56'),(42,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013',583,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:57'),(43,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013',604,'Admin','0000-00-00 00:00:00','2020-07-28 02:46:19'),(44,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013',622,'Admin','0000-00-00 00:00:00','2020-07-26 04:06:39');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `economics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=658 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `economics` VALUES (1,'Which of the following is the best general definition of the study of economics? ','the best way invest in the stock market','business decision making under foreign competition ','individual and social choice','inflation unemployment in a growing economy','','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:31'),(2,'What implication does resources scarcity have for the satisfaction of wants?','not all wants can be satisfied ','we will never be faced with the need to make choice ','we must develop ways to decreases our individual wants ','the discovery of new resource.','','','a','','post-utme','2006',92,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(3,'In economics , rational decision-making requires that: ','one’s choices be arrived at logically and without error   ','one’s choice be consistent with one’s goals ','one’s choice never very ','one makes choice that do not involve trade-offs','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:33'),(4,'What happens to a supply curve when the variables that are normally held constant are allowed to changer? ','the curve flattens out','there is a movement along the curve','the curve shifts ','the curve becomes steeper.','','','c','','post-utme','2006',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:34'),(5,'If the price of Pepsi decrease relative to the price of coke and 7-up the demand for ','coke will decrease ','7-up will decrease ','coke and 7-up will increase','coke and 7-up will decrease.','','','d','','post-utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:35'),(6,'Suppose wages paid by a firm increase what would reasonably be expected to happen to the equilibrium price and equilibrium quantity for the firm’s output? ','price increase,  quantity decreases ','price decrease, quantity decrease','price decreases, quantity increase','price increases, quantity increase.','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:36'),(7,'When a nation’s exports are greater than its imports ','the net foreign trade is zero ','an unfavourable balance of payments exists ','a favourable balance of trade exists ','a favourable balance of payment exists.','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:37'),(8,'Inflation is likely to benefit ','persons with bank savings','persons who live on fixed pension funds ','creditors ','debtors.','','','d','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:38'),(9,'For which market model is there a very large number of firms? ','monopolistic competition','oligopoly ','pure monopoly ','pure- competition','','','d','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:38'),(10,'Which of the following is an economic cost ','uninsurable risk ','normal profit ','economic profit ','monopoly profit.','','','b','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-07-22 10:38:01'),(11,'Which tends to be a progressive tax in Nigeria? ','income tax ','property tax ','sales tax ','import- duties.','','','a','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:40'),(12,'A deficit budget is usually drawn up during ','economic buoyancy ','inflationary period ','war time ','economic recession.','','','d','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:41'),(13,'A drawer of a cheque is the ','person who is to be paid ','bank on which the cheque is drawn ','person who writes out the cheque ','bank official who certifies the payment. ','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:42'),(14,'The liability of a sole trade is','indeterminate ','unlimited ','limited ','transferable','','','b','','post-utme','2006',93,'Admin','0000-00-00 00:00:00','2020-07-21 11:09:34'),(15,'Which of the following is regarded as fixed cost? ','cost of raw materials ','labour wages ','rent land ','cost of light.                                                                                                                                                                                                                   ','','','c','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:44'),(16,'Which of the following is not a member of OPEC?','Indonesia',' Iran ','Venezuela','Egypt','','','d','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:45'),(17,'The creation of utility can be referred to as ','value added ','profit marginalization ','production','entrepreneurship.','','','c','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:46'),(18,'The production within the domestic territory of a country is called the ','net national product ','gross domestic product ','disposable income','gross national product.','','','b','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-21 11:27:21'),(19,'Suppose a consumer’s income increases from N30,000 to N36, 000. As a result the consumer increases her purchase of compact discs (CDS) from 25 CDS to 30CDS.What is consumer’s income elasticity of demand for CDS?','0.5','1,0 ','1','1.5','','','b','','post-utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-27 04:28:05'),(20,'The Multiplier is always the reciprocal of ','MPC ','MPS ','APC','APS','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:49'),(21,'If the marginal propensity to save is 0.4 and consumption expenditure changes by N10 million , the equilibrium  level of income will change by ','N15.0million ','N4,0million','N2.5million ','N25million.','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:50'),(22,'Economic freedom is brought about by the existence of ','Government ','Money ','Availability of Credit ','choice','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:51'),(23,'The only essential attribute of the good currency is ','scarcity ','homogeneity','acceptability ','cognoscibility.','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:52'),(24,'Economic is founded on the principle that: ','Human wants are more than human needs ','Material things are more than human wants ','Human wants are limitless while the means to satisfy them are limited  ','Human while are easy to define','','','c','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:53'),(25,'The capitalist system is characterized by all the following except: ','private ownership of the means of production ','Equitable distribution of income and wealth  ','capital accumulation  ','markets and  prices coordinate economic activities','','','b','','post-utme','2007',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:53'),(26,'If the equation relating consumption (C) to income (Y) is C=  N7,500+0.2Y,then ','consumption is inversely related to income','consumptions is the independent variable and income is the dependent variable ','if income is N15,000, the consumption is N10,500 ','if consumption is N30,000 then income is N10,000','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(27,'The reason for the law of demand can best be explained in terms of ','supply ','complementary ','the rationing function of prices ','diminishing marginal utility','','','d','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:55'),(28,'The demand curve for the pure monopolists is ','perfectly  price elastic ','perfectly price inelastic ','down sloping ','up sloping ','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:56'),(29,'Which of the following statements is correct? The Central  Bank ','prints the country’s currency ','handles the collection of depts. Owed to the government','lends money to businessmen ','issues the country’s currency','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:57'),(30,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','Consumers are rational','Consumers are willing to make choices ','Consumers make consistent choices','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-21 11:24:29'),(31,'The slope of the budget constraint ','changes as the marginal rate of satisfaction changes ','is the ration of the prices of the two goods? ','is the ratio of the budget of total utility? ','Equals one, since the consumer can buy combination along the budget constraint.','','','b','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:59'),(32,'Disposable income equals ','Personal income less business profits ','personal income less taxes and subsidies ','personal income less taxes plus subsidies ','National income plus transfer payments','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:00'),(33,'The ‘term’ of trade’ means ','The trade agreement between two countries ','The difference in the volumes of exports of two countries ','The value of a unit of export in relation to the value of a unit of import ','None of the above.','','','c','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(34,'The burden of tax on a commodity whose demand is infinitely inelastic ','is Zero ','will be borne by sellers alone ','will be borne by buyers alone ','it impossible to tell','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:03'),(35,'Inflation can be curbed by ','Increasing aggregate demand ','paying higher wages ','reducing aggregate demand ','A deficit budget','','','c','','post-utme','2007',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:04'),(36,'The supply and demand for goods and service are influenced by the ','Super markets ','Entrepreneurs ','Mechanism of the law ','price mechanism.','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:05'),(37,'In a sole proprietorship, the decisions are made by the ','Government ','Board of directors ','Shareholder’s Conference ','Owner','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:06'),(38,'Which of the following are direct taxes? ','Income and company taxes ','Sale taxes ','commodity taxes ','Excise Duties','','','a','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-21 12:06:16'),(39,'The production within the domestic territory of a country is called the ','Net national product ','Gross domestic ','Disposable income ','Gross national product','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:08'),(40,'A producer sustains a loss in the short run if? ','marginal revenue is less than price ','price is less than average cost','marginal cost is less than marginal  revenue ','average variable cost is less than average cost','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:09'),(41,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with terms funds ','deals with money only while capital market deals with capital as well ','is limited in scope while capital market is not ','uses interest rate while capital market does not','','','a','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-25 13:24:37'),(42,'A production possibility curve shows ','how much of  the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combinations of two commodities that can be produced.','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:11'),(43,'The situation in which the total amount of government spending exceeds total called ','balance budget ','budget surplus ','budget deficit ','fiscal surplus ','','','c','','post-utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-22 10:38:00'),(44,'The maximization of profit tends to be driving force in the economic decision making of  ','entrepreneurs  ','workers ','consumers ','legislators','','','a','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:13'),(45,'Which of the following equations is the correct one about Net National Product (NNP)? ','NNP= Gross National Product (GNP) - Depreciation ','NNP=  Gross National product (GNP Net incomes from abroad ','NNP= Gross Domestic product (GDP) – Deprecation ','NNP = Gross Domestic product (GDP) – Net incomes from aboard','','','a','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:13'),(46,'Middlemen in a economy perform the function of ','protection ','hoarding ','distribution ','exchange','','','c','','post-utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-21 11:15:39'),(47,'Which of the following statement is false? ','Ends in Economic are the resources with which it can attain our goals','Tables and graphs are focus of arithmetic technique used in economics to present ideas pictorially ','Three basic question every economy must answer are hat to produce, how to produce and for whom to produce ','A and B are substitutes if the supply of an increase, the price B will tend to increase.','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:15'),(48,' If the equation relating consumption (C) to income (Y) is C= N7,500 + 0.2Y, then ','consumption is inversely related to income ','consumption is the independent inversely related to income is the dependent variable ','if income is N15,000, the  consumption is 10,500 ','if consumption is N300,000, then income is N10,000','','','c','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:16'),(49,'Which of the following best describes a perfectly inelastic demand function? ','The quantity demand is insensitive to changes in price ','Price is insensitive changes in quantity ','price and quantity demanded changes by some percentage ','The demand function is horizontal.','','','a','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:17'),(50,' Which of the following statement is false? ','An economy where economic decision making is shared by individuals and government is known as mixed economy ','Given that apples and pears are substitutes, If the price of pear fall ','An elasticity of demand measured between two point on a demanded curve is called a point elasticity ','A and B are complements. If the supply of A decreases, the price B are tend to fall','','','c','','post-utme','2008',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:18'),(51,'Which of the following statement is true? ','if cross price elasticity that of demand between two goals, A and B, is negative we can conclude that A and B are substitutes ','the co-efficient of elasticity of demand is measured as a ration of change in quantity demand to change in price ','A market will be in disequilibrium when demand is not equal to supply ','All the above.','','','c','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:19'),(52,'The reason for the law of demand can best be explained in terms of: ','supply ','complementary goods ','the rationing function of price ','diminishing marginal utility.','','','d','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:20'),(53,'The demand curve for the pure monopolists is ','perfectly price elastic ','perfectly price inelastic ','down sloping ','up sloping','','','c','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:21'),(54,'Which of the following statement is correct? The Central bank ','prints the country’s currency ','handles the collection of debts of owed to the government ','leads money to businessmen ','issue the country’s currency.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:22'),(55,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','consumers are rational ','consumers make consistent ','choices.','','','d','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:23'),(56,'Which of the following equation is the correct one about Net National Product (NNP)? ','NNP= Gross National product (GNP) – Depreciation ','NNP = Gross National product (GNP) + Net incomes from abroad. ','NNP = Gross Domestic product (GDP) – Depreciation ','NNP = Gross Domestic product (GDP) – Net incomes from abroad.','','','a','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(57,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with long term funds. ','deals with money only while capital as well ','is limited in scope while capital market does not. ','Uses interest rates while capital market does nor.','','','a','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:25'),(58,'A production possibility curve shows ','how much of the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combination of two commodities that can be produced.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:26'),(59,'The situation in which the total amount of government spending excesses total revenues is called a:  ','balance budget ','budget surplus. ','budget difficult ','fiscal surplus','','','c','','post-utme','2008',97,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:27'),(60,'The maximization of profit tends to be the driving force in the economics decision making of:','entrepreneurs. ','Workers ','consumers ','legislators.','','','a','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 02:16:53'),(61,'Which of these factors does not cause a change in demand? ','Income ','Population ','price of the commodity itself.','Quantity of commodity','','','d','','post-utme','2008',103,'Admin','0000-00-00 00:00:00','2020-07-14 02:10:22'),(62,'When the demand for a commodity is inelastic, total revenue will fall if ','price is increase ','price remains constant ','price is reduced ','The commodity is a luxury.','','','c','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:30'),(63,'An economic system in which most capital goods are owned by individual and private firms is known as ','planned economy ','Capitalist economy. ','Mixed economy ','Socialist economy.','','','b','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(64,'Which of the following is the most liquid asset to a commercial bank? ','cash ','money at call ','stock and shares ','Treasury Bills.','','','a','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-25 15:09:39'),(65,'A recovery point on an indifference curve, the ','Total utility is decreasing ','Level of utility is constant ','Consumer is satisfied ','','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:33'),(66,'Which of the following does not hinder the efficient distribution of goods in West Africa? ','Government participation in the distribution trade ','Inadequate storage facilities for agricultural goods ','Inadequate credit facilities for potential distribution ','the tendency to hoard and smuggle.','','','a','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:34'),(67,'Which of the following is the most important reason why wages differ among occupation? ','Length and cost of training ','Supply of Labour ','Attractiveness ','Influence of trade Unions','','','c','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:35'),(68,'Tax incidence is the analysis of  ','How progressive a tax is ','How distorting a tax is ','Who ultimately pays the tax ','How a tax is collected.','','','c','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:36'),(69,' A monopolist will practice price discrimination in two market if ','there is a patent of the commodity ','There is free flow of information in the market ','The markets have different elasticity of demand ','The cost of separating the markets is low.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:39'),(70,'Which of the following is regarded as fixed cost? ','Cost of raw materials ','rent on land ','Labour wages ','cost of light.','','','b','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(71,'Given that fixed cost is N500.00, Variable cost is N1,500.00 and output is 40 units, what will be the average cost of producing one units? ','N12.50.00 ','N50.00 ','N37.50 ','N500.00','','','b','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:41'),(72,'For two substitute goods, the gross elasticity of demand is ','Greater than one but lee than zero ','zero ','Negative ','Positive ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:42'),(73,'If a person receives a higher wage than would be necessary to induce him to work, he is be receiving','rent ','profit ',' interest ',' gain ','','','a','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:43'),(74,'Which if this is likely to be inflationary ','Tax increase ','Budget surplus ','increase in unemployment ','wage increase ','','','d','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:44'),(75,'A characteristic of a debenture is that ','Its yield is based on profit ','Its yield is a fixed rate of interest ','It has no redemption date ','There is a voting when interest is paid ','','','b','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:45'),(76,'Which of these is not included in measuring national income by the income approach? ','Wages and salaries of public servants ','students branches and scholarships ','profit of international ','income of self-employment persons ','','','b','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:46'),(77,'The revenue accruing to the seller of commodity X as a result of a fall in price will ','increase','fall ','first fall but increase later  ','Remain unchanged ','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:47'),(78,'Deflation is persistence fall in price in the general price level and is usually caused by ','A reduction in total demand ',' An increase in government spending ',' an increase in money supply to banks ','An increase in aggregate demand ','','','a','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:48'),(79,'Under partnership, investors who have no desire to be actively involved in the day-to-day management of such organization are called ','Stock brokers ','Sleeping partners ','part-time investor ','Ordinary partners ','','','b','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:49'),(80,'In a sole proprietorship decision are made by the ','Government ','Board of directors ','Management ','Owners.','','','d','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:50'),(81,'A greater burden of taxes on essential goods in borne by the ','middle income group ','Higher income group ','Lower earning people ','People falling between the middle and higher income group ','','','c','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:51'),(82,'Demand as a factor of production is ','a composite demand ','joint demand ','A derived demand','An elasticity of demand ','','','c','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(83,'One disadvantage of sole proprietorship is its ','Limited liability ',' High profit ','High sense of ownership ','Low credit rating ','','','d','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:53'),(84,'The monetary system that requires double coincidence of wants is known as ','The gold standard ','The gold standard ','The commodity system ','The gold standard ','','','b','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(85,'The marginal theory of distribution makes an assertion that the price of any factor depends upon its marginal ','Unity ','Productivity ','rate of substitution ','revenue ','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:55'),(86,'By using exchanges controls, a country tries to eliminate a balance of payment deficit by ','limited her imports to its currency value of exports ','Reducing the nation’s domestic piece level ','limiting her exports to its currency value of exports ','Undervaluing, the country’s currency.','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:56'),(87,'Economics of scale operates only when ','Marginal cost is falling with output fixed cost is variable ','fixed cost is variable ','variable cost is less than fixed cost ','variable cost is equal to cost of output.','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-22 10:56:46'),(88,'If an increase in income induces a reduction in the demand for beans, beans can be referred to as: ','A normal good ','An inferior good ','A substitute ','A dash ','','','b','','post-utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-27 20:00:19'),(89,'Optimum population is desirable because it enable an economy to attain maximum ','per capital income ','per capital output ','per capital real income ','per capital revenue ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:59'),(90,'Marginal cost curve intersects average cost curve ','from above at its lowest point ','from below the lowest point ','from below at its lowest point ','from below after the lowest point ','','','c','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(91,'The concept of economic efficiency refers to: ','obtaining the maximum output from available resources at the lowest possible cost ','Conservation of natural gas and oil deposits ','equity in the distribution of national resource ','Producing without waste ','','','a','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:01'),(92,'A major factor affecting the value of money is the: ','price level ','banking habit ','Transaction motive ','Divisible nature of money ','','','a','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:02'),(93,'Which of the following is an example of invisible item on balance of payments account?','Shipping and aviation ',' Import and Export ','Merchandise ','Bullion ','','','a','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:03'),(94,'The best index for indentation comparison of standard of living is the ','Gross national product ','Net national income ','per capital income ','Gross national income.','','','c','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:04'),(95,'A major obstacle to economic development in many African countries ','A rise in industrial output ','Low farm productivity ','Free interaction ','Controlled international relations.','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-23 10:43:20'),(96,'The most popularly adopted industrialization strategy in West African ','import substitution ','Export promotion ','parts development ','infant industries potation.','','','b','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:06'),(97,'The basic concepts of Economics are ','choice, scarcity, resources and efficiency   ','wants, scarcity, choice, scale of preference and opportunity cost','wants, scarcity and choice  ','wants, choice, scale of preference and opportunity cost ','','','b','','post-utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:07'),(98,'In Economics human wants are usually described as  ','many','insatiable ','limited','numerous','','','b','','post-utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:08'),(99,'Basic economic problems of society include the following except:  ','what to produce','how to produce ','where to produce  ','for whom to produce ','','','c','','post-utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:09'),(100,'An economic system can be defined as an ',' arrangement specifying how production and consumption are controlled in a   society ','arrangement whereby goods are distributed in a society  ','arrangement whereby human wants are satisfied in a society  ','arrangement specifying how productive resources are distributed in a society ','','','a','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:10'),(101,'The following are features of a free market economy except ','private ownership of properties  ','existence of competition ','high level of profit maximization by private investors  ','joint decision-making by the citizens in a society.','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:11'),(102,'In a capitalist society, production and consumption are regulated by the: ','demand for the commodity ','the government  ','price system  ','private individuals ','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:12'),(103,'The following are advantages of socialism except ','equitable distribution of resources','absence of exploitation  ','equitable distribution of income ','promotion of high standard of living ','','','d','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(104,'Marginal Produce (MP) is best defined as ',' Total produce/no of labour','Change in total product/ change in variable factor','Total product/ fixed factor','Average product/ no of Labour','','','b','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:15'),(105,'Which of the following is NOT a limitation to division of labour and specialization ','the size of the market','availability of capital ','interdependence among the workers ','the nature of the product ','','','b','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:16'),(106,'The following are the advantages of internal economics of large scale production except ','financial economics ','administrative economics ','technical economics ','market economics','','','b','','post-utme','2011',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:19'),(107,'Which of the following is TRUE of marginal cost? ','it is a cost incurred by the firm on variable inputs ','it is the cost of producing one extra unit of a commodity at any output level ','it is the sum of the fixed cost and variable cost','it is referred to as overhead cost','','','b','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(108,'Which of the following items is NOT a variable cost? ','cost of machine ','cost of electricity ','salaries and wages','cost of raw materials.','','','a','','post-utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:21'),(109,'Which of the following is NOT True of a market demand schedule? ','it is a schedule of all consumers of a commodity in a market ','it is the aggregate demand schedule of all consumers of a commodity in a market ','it is a table showing the different quantities of a community which a consumer would purchase at various prices ','it is a table showing the composite demand schedule of all consumers of a commodity in a market.','','','c','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:22'),(110,'Supply is said to be inelastic when the coefficient of elasticity of supply is ','2.5','0.5','zero ','infinity ','','','b','','post-utme','2011',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:23'),(111,'Price legislation can be defined as ','how price fluctuates in the market','how prices are controlled in the market  ','how to avoid inflation  ','how the government fixes the prices of essential commodities.','','','d','','post-utme','2011',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:24'),(112,'Price discrimination exists when  ','The same product of the same quality is sold for different prices of the same buyer  ','The same product of the same quality is sold for different prices to different buyers  ','Different products are sold for the same price to the same buyers  ','Different products are sold for the same price to different buyers.','','','b','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(113,'A commodity is said to be price inelastic if  ','Changes in the quantity purchased of a good is less than proportionate changes in its price  ','Changes in the quantity purchased of a good is proportional to changes in its price  ','Changes in the quantity purchased of a good is more than proportionate changes in its price  ','The quantity purchased of a good never responds to change in its price.','','','a','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:26'),(114,'The parameter ‘b’ in a consumption function of the form; C = a + bY; where Y is the National income is  ','Marginal benefit of consumption  ','Marginal propensity to purchase  ','Marginal propensity to consume  ','Marginal propensity to save ','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:27'),(115,'Indifference curve and isoquant are respectively relevant is  ','Theories of consumer behaviours and production  ','Theories of human indifference and production  ','Theories of trade and production  ','Theories of production and trade','','','a','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:28'),(116,'Perfect price elastic supply means  ','No change in supply as price changes  ','Any change in price completely stops supply  ','Changes in price double supply  ','A change in price leads to proportionate change in supply','','','b','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:29'),(117,'Change in demand and change in quantity demanded are not the same because  ','All factors affecting change in demand also affect change in quantity demanded except income  ','All factors affecting change in demand are not affecting change in quantity demanded except income  ','Many factors leads to change in demand but only change in price affect change in quantity demanded   ','Many factors leads to change in demand but only change in income affect change in quantity demanded','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:30'),(118,'The following is the main difference between firm and industry  ','Industry is the group of firms producing related products  ','Industry is the group of firms in the manufacturing sector  ','Industry is the group of firms in different sectors of the economy  ','Industry is the group of firms with a single pressure group','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:31'),(119,'Roles of central bank include the following except  ','Lender of last resort to commercial bank  ','Banker to commercial bank  ','Regulator to both the money and capital markets ','Receipt  of government deposits','','','b','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:32'),(120,'Ordinary shareholders and preferential shareholders are different because ','Preferential shareholders participate and can vote and be voted for during the  AGM  ','ordinary shareholders are given priority in case the company is liquidated  ','Preferential shareholders are prominent shareholders than ordinary shareholders  ','Ordinary shareholders are the core shareholders in the company','','','d','','post-utme','2012',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:43'),(121,' Yam and palm oil are together; therefore  ','Yam is a substitute good while palm oil is a complementary good  ','Yam is complimentary good while palm oil is a substitute good  ','Yam and oil are complimentary goods ','Yam and beans are substitute goods','','','c','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:44'),(122,'Private and public limited liability companies are not the same because  ','Former is limited to fifty shareholders but not the later  ','both are not legal entities  ','Former is established secretly but latter is located in central places  ','Former is managed by board of directors but latter is managed by board of management.','','','a','','post-utme','2012',100,'Admin','0000-00-00 00:00:00','2020-07-22 10:44:43'),(123,'If salary of worker increases from 50,000 to 80,000 Naira and average price of certain commodities consumed by the worker increase from 120 Naira to 160 Naira then  ','The nominal income increases but leave the real income constant  ','The real income increases, but nominal income has reduced  ','The nominal income increases, but real income decreases  ','Both the nominal and real income increase','','','d','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:45'),(124,'Discount rate means  ','Rate at which money are borrowed from commercial bank  ','Rate at which bank receive deposit from the public  ','Central bank rate on the money borrowed by commercial banks  ','Commercial bank rate on the money borrowed from other commercial bank','','','c','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:46'),(125,'When the government expenditure and income are the same in fiscal year, this is referred as;','Net balance  ','Zero balanced budget  ','Balanced budget  ','Net income ','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:48'),(126,'Inflation as a result of increase in the payment for factors of production is called  ','Cost-pull inflation  ','Demand-push inflation  ','Cost-push inflation  ','Demand pull inflation ','','','c','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:50'),(127,'When Lump-sun tax is paid by a producer, it means that;  ','The tax is paid proportional to the quantity of output produced  ','The tax is paid regardless of volume of output  ','The tax is paid in arrears  ','The tax is returned to the producer after the payment','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(128,'The following is not correct  ','Average variable cost equals average total cost minus average fixed cost   ','Average fixed cost equals average variable cost minus average total cost  ','Average total cost equals average variable cost plus average fixed cost  ','Average total cost minus average variable cost equals average fixed cost ','','','b','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(129,'Normal profit means;  ','All the accountant cost are covered but not all the economist cost  ','All the economist cost are covered but not all the accountant cost  ','More than economist cost are covered  ','None of the economist and Accountant costs is covered ','','','a','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(130,'If the price of commodity X increases because of the increase in the price vis-à-vis the increase in demand  for other commodities are likely to be  ','Complimentary  ','Substitute  ','Compose  ','Intermediate','','','a','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(131,'The following may not inflate the National Income figure ','Student’s bursary  ','Owners occupied houses  ','Office Inducement  ','Intermediate goods','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:57'),(132,'Legal Entity means  ','A company is owned by large number of people  ','A company is owned by small number of people  ','A company is insulated against litigation  ','A company is not insulated against litigation ','','','d','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(133,'In the ownership structure of joint stock company the following is correct;  ','Ordinary shareholders are stronger than preferential shareholders  ','Preferential shareholder are stronger than ordinary shareholders  ','Ordinary shareholders are settled first in case of company’s liquidation  ','Ordinary and preferential shareholders are perpetual rivals ','','','a','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(134,'The difference between the output proceedings of Nigerians abroad and foreigners in Nigeria is known as;  ','Net export to abroad  ','Net import from abroad  ','Net income from abroad  ','Net income to abroad','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:01'),(135,'A stock variable is measured;  ','Over a period  ','At a point  ','Consistently  ','Intermittently ','','','b','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:02'),(136,'The following is not true of price mechanism ','Equilibrium price is determined by forces of demand and supply  ','Individual households and firms pursue personal interest  ','Producers and consumers are rational in decision making ','Price control in prominent in the commodity and input markets.','','','d','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(137,'In the short run, all of the following are applicable except  ','Output may be increased by changing all factors by the same proportion  ','Diminishing returns   ','There are sunk costs ','The total cost curve is the same as the total variable cost curve ','','','a','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:04'),(138,'The sum of MPS and MPC is  ','greater than 1 but less than infinity  ','greater than 0 but less than 1 ','equal to 1 ','none of the above','','','c','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:06'),(139,'For a perfectly competitive market, the shape of the --------- is horizontal while the ----------- is downward slopping  ','industry’s demand curve/industry’s supply curve  ','firm’s supply curve/industry’s demand curve  ','firm’s demand curve/industry’s demand curve  ','industry’s demand curve/firm’s demand curve','','','c','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-22 10:08:33'),(140,'Demand for money is: ','Composite demand  ','Derive demand  ','Joint demand  ','C and B ','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:08'),(141,'If the cross elasticity of demand between X and Y is zero, then   ','X and Y are substitutes ','X and Y are complements ','X and Y are dependent on each other  ','X and Y are independent of each other ','','','d','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:10'),(142,'Which of the following correctly defines inflation? ','A one-time increase in commodity prices ','A period when prices increase rapidly','A sustained increase in the overall price level ','An increase in the overall level of business activity','','','c','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:24'),(143,'If a market for good X is in disequilibrium, which of the following statements is true about the quantity of X that is actually exchanged?  ','It is determined by the forces of demand  ','it is determined by the forces of supply  ','it is determined by both demand and supply forces  ','it is determined by the forces of demand or supply whichever is shorter ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:25'),(144,'How can we eliminate a surplus in a commodity market? ','Increase quantity supplied ','Decrease quantity demanded  ','Allowing price to fall towards equilibrium  ','Allowing price to rise towards equilibrium ','','','c','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-25 06:53:27'),(145,'Identify one among the following which is NOT part of the objectives or functions of the African Development Bank (ADB). ','Provision of technical assistance for development projects   ','Provision of funds for the supply and demand of infrastructural facilities  ','Adoption of a common tariff policy for trade and development  ','Provision of fund for agricultural development','','','c','','post-utme','2013',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:27'),(146,'When the product of any one firm in an industry is not  perceived by consumers as a perfect substitute for the product of any other firm in the same industry, we have ','Perfect competition','Monopoly  ','Oligopolist ','Monopolistic competition   ','','','b','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-21 11:50:00'),(147,'In which of the following situations do we have a free good?  ','At zero price, more is demanded than supplied  ','At zero price, quantity supplied exceeds quantity demanded  ','At equilibrium price, quantity supply is equal to quantity demanded. ','Any quantity can be obtained when the price is low ','','','b','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:29'),(148,'In economics, a commodity is said to have an opportunity cost because  ','The price of the commodity is high  ','The commodity is scarce  ','Another good may have been purchased instead of it  ','The commodity provides many benefits','','','c','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:30'),(149,'One among the following options is not correct ','Any point inside the production possibility curve indicates unemployment or underemployment  ','Increase in the price of a commodity leads to a fall in the demand for its substitute ','The fixing of price above the equilibrium price level leads to surplus of the commodity ','An increase in both market supply and market demand may not result in a change in equilibrium price and quantity. ','','','d','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:31'),(150,'A country’s aggregate consumption was N20 million when its GDP was N100million. Following an increase in GDP to N120 million, consumption increased to N25 million. The marginal propensity to consume is given as','0.25','0.5','0.75','0.8','','','a','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:37'),(151,'Which of the following is not a measure for controlling inflation by the central bank?  ','Open market operation  ',' Reserve requirements  ','Sale of treasury bills ',' change of central Bank Governor','','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:39'),(152,'A 50% increase in the quantity demanded of a commodity, following a 100% decrease in its price, shows that the commodity has ','Fairly elastic demand  ','Unitary elastic demand','Inelastic demand','Perfectly elastic demand ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:40'),(153,'A total utility is increasing, marginal utility is  ','Negative and decreasing  ','Positive and increasing  ','positive and decreasing   ','Zero','','','c','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:41'),(154,'Which of the following statements is true? ','Disposable income is the only variable that determines consumption   ','Investment spending is positively related to the rate of interest   ','imports lead to a decrease in the level of exports  ','Imports lead to a decrease in spending on locally produced goods and services.','','','d','','post-utme','2013',98,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:42'),(155,'Which of the following will benefit a producer who wants to maximize profit?  ','reduce price when demand is inelastic ','increase price when demand is elastic   ','reduce price when demand is elastic  ','fixed the price of his commodity based on the price of other producers.','','','c','','post-utme','2013',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:45'),(156,'Based on the fact that demand curve shows the maximum price at which consumers will buy, it then shows ','average benefit   ','marginal benefit  ','total benefit  ','optimal satisfaction ','','','b','','post-utme','2013',86,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(157,'Money that a government has required to be accepted in settlement of debts is ','commodity money  ','currency value  ','barter   ','legal tender ','','','d','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:47'),(158,'Which of the following is one of the responsibilities of the Central Bank of Nigeria? ','issuing new bond to finance public sector borrowing requirements  ','auditing the various agencies and departments of government  ','loaning money to other countries that transact business with Nigeria  ','assisting banks that are in financial position ','','','a','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:54'),(159,'The law of comparative cost and absolute cost advantage are not the same is that; ','Former require that one of the countries has absolute advantage in the two goods but latter does not   ','Former requires one country to have at least absolute advantage in one of the trading goods over the other country but latter does not.','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in all the goods.  ','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in at least one of the goods.','','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:55'),(160,'When demand for a product is price inelastic, the following can happen  ','Consumers suffer the entire increase in tax on the product   ','producer suffers the entire increase in tax on the product  ','producer suffers larger proportion of the increase in tax on the product  ','consumers suffer larger proportion of the increase in tax on the product ','','','d','','post-utme','2013',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:56'),(161,'Disposable income means:','Income that is lost after tax has been removed   ','Income that could be spent when tax has been removed   ','Income that tax authority mandated to be given to charity when tax has been removed  ','Income to be disposed secretly for future spending after tax has been removed ','','','b','','post-utme','2013',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:57'),(162,'In economics, the pleasure, happiness, or satisfaction received from a product is called: ','Marginal cost ','Rational outcome ','Status fulfillment ','Utility.','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:07'),(163,'A person should consume more of something when its marginal: ','benefit exceeds its marginal cost ','cost benefit ','cost equal its marginal benefit ','benefit is still positive.','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:18'),(164,'Macroeconomics can best be described as the: ','analysis of how a consumer tries to spend income ','study of the large  aggregates of the economy or the economy as whole ','analysis of  how firms attempt to maximum their profits ','study of how supply and demand determine price in individual markets.','','','b','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:44'),(165,'When economics say that people act rationally in their self-interest, they mean that individual: ','look and pursue opportunities to increase their utility ','generally disregard the interest of others ','are mainly creatures of habit ','are unpredictable','','','a','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:01'),(166,'As it relates to international trade, dumping: ','is a form of price discrimination illegal under U.S antitrust laws ','is the practice of selling goods in a foreign market at less than the cost ','Constitutes a general case for permanent tariffs ','is defined as selling more goods than allowed by an import quota.','','','b','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:07'),(167,'A nation’s production possibility curve is bowed out from the origin because:','wants are virtually unlimited ','the originator of the idea drew it this way and modem economists follow this convention ','resources are scare ','resources are not equally efficiency in producing every good.','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:11'),(168,'If the production possibilities, curve were a straight down sloping line, this would suggest that: ','it is possible to produce  more of both products ','resources are perfectly shift able between the production  of these two goods ','both products are equally capable of satisfying consumer wants ','the two products have identical price.','','','b','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:16'),(169,'Productive efficiency refers to: ','the use of the least-cost method of production ','the production of the product-mix most wanted by society ','the full employment of all available resources ','production at some point inside of the production possibilities curve.','','','a','','post-utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(170,'Which of the following statement is correct? ','if demand increase and supply decrease equilibrium price will fall ','if supply increase and demand decrease, equilibrium price will fall ','It demand decrease and supply increase increases, equilibrium price will rise ','If supply declines and demand remain constant, equilibrium price will fall.','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(171,'If depreciation exceeds gross investment: ','the economy’s stock of capital may be either growing or shrinking  ','the economy’s stock of capital is growing ','net investment is zero ','the economy’s stock of capital is shrinking.','','','d','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:38'),(172,'Assuming the total population is 100 million, the civilian labour force is 50 million and 47 million workers are employed, the unemployment rate is ','3%','6%','7%','5.30%','','','b','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:39'),(173,'Unemployment involving a mismatch of the skills of unemployment workers and the skill required for available jobs is called: ','frictional unemployment ','structural unemployment ','cynical unemployment ','','','','b','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:40'),(174,'The greater is the marginal propensity to consume, the: ','smaller is the marginal propensity to save ','higher is the interest rate ','lower is the average propensity to consume ','lower is the rice level.','','','a','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:41'),(175,'Investment and saving are, respectively: ','income and wealth ','stock & flows ','injection: and leakages ','leakages and injections:','','','c','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:43'),(176,'The amount by which government expenditures exceed revenues during a particular year is the: ','public debt ','budget deficit ','full- employment ','GDP gap.','','','a','','post-utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(177,'The value of money varies ','inversely with the price of level ','directly with the volume of employment ','directly with the price level ','directly with the interest rate.','','','a','','post-utme','2010',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:45'),(178,'If actual reserves in the banking system are #40,000, excess reserves are #10,000, and checkable deposits are #240,000, then the legal reserve requirement is: ','10%','12.50%','20%','5%','','','b','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:46'),(179,'The discount rate is the interest: ','rate at which the Central Bank of Nigeria lends in the Nigeria Government ','yield on long-term government bonds ','rate at which commercial banks lend to the public ','rate at which the Central Banks of Nigeria lend to commercial banks.','','','d','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:47'),(180,'Assume a household would consume N100 worth of goods and services per week if its weekly income were zero and would spend an additional N80 per week for each 100 of additional income, if C represents consumption and Y income the equation that summarizes this relationship is','C =8+100Y ','C=100+8Y ','C = 100+80Y ','C=80+1Y','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:48'),(181,'For a bicycle company, an economist predicted that, other things being equal, a rise in consumer incomes will increase the demand for bicycles. This prediction is based on the assumption that: ','there are many goods that are substitutes for bicycles ',' there are many goods that are many goods that are substitutes for bicycles','there are many goods that are substitutes for bicycles ','bicycles are normal goods','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:49'),(182,'A demand curve which is parallel to the horizontal axis is','perfectly inelastic ','perfectly elastic ','relatively inelastic ','relatively elastic.','','','b','','post-utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:50'),(183,'Allocative efficiency occurs only at that output where: ','marginal benefit exceeds marginal cost the by greatest ','consumer surplus exceeds producer surplus by the greatest amount ','the areas of consumer and producer surplus are equal ','the combined amounts of consumer surplus and producer surplus are maximizes.','','','d','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:51'),(184,'The primary problem of economics is: ','to obtain more equitable distribution of money income ','production of a given output with the lowest cost combination of factors of production ','Adoption of capital- intensive technology ','Increasing the quantity of the fixed factor of production.  ','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:52'),(185,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',87,'Admin','2016-11-12 19:57:40','2020-07-16 12:39:39'),(186,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:09','2020-07-14 14:27:53'),(187,'The economic system in which resources are privately owned is known as','capitalism','socialism','Communism','unitarism','','','a','','wassce','2001',89,'Admin','2016-11-12 20:04:11','2020-07-26 11:05:19'),(188,'Quasi-rent refers to','Payment made on acquisition of firm’s premises','Payment  made  for  the  procurement  of  tools  and equipment','Returns on investment','Payment made on  any  factor  of  production  that  is temporarily fixed in supply','','','d','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:55'),(189,'The reward for entrepreneurship is','rent','wages','Interest','profit','','','d','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:56'),(190,'Which of the following is function of an entrepreneur?','Avoidance of risks','Decision making','Employment control','Organizing unions','','','b','','wassce','2001',80,'Admin','2016-11-12 20:04:11','2020-07-16 12:39:39'),(191,'The difference between the highest and lowest in a set of data is the','Range','median','variance','mode','','','a','','wassce','2001',98,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:58'),(192,'In which of the following economic systems is the consumer referred to as King?','Capitalist economy','Socialist economy','Communist economy','Mixed Economy','','','a','','wassce','2001',97,'Admin','2016-11-12 20:04:11','2020-07-26 11:05:19'),(193,'The dispersal of people in a country is called','mobility of people','geographical distribution','occupational distribution','state distribution','','','a','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:00'),(194,'In a country with ageing population, the total population','comprises young school leavers only','comprises mainly women','is increasing at a low rate','has reached the optimum level','','','c','','wassce','2001',101,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:01'),(195,'Population growth can be controlled by all the following except','legalizing abortion','incentives on immigration','family planning','limiting number of children per family','','','b','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:02'),(196,'Performance of one task in a production process is known as','Specialization','standardization','division of labour','segmentation','','','a','','wassce','2001',100,'Admin','2016-11-12 20:04:11','2020-07-16 12:39:39'),(197,'The marginal product at the fourth variable factor is','12','9','8','6','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',98,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:04'),(198,'The difference between the highest and the least marginal','product of the variable factor is    \\n\t3','8','10','12','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','a','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:04'),(199,'The average product of the variable factor when four units are employed is','6','8','12','48','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-21 11:33:29'),(200,'The cost incurred by using both fixed and variable factors in production is called','marginal cost','fixed cost','total cost','average cost','','','c','','wassce','2001',97,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:06'),(201,'Consumers buy more of a commodity at a lower price than at a higher price because','producers like to produce more','in any given situation, people like to buy more','consumers like to show off','with the same amount of money, they will be able to buy more','','','d','','wassce','2001',84,'Admin','2016-11-12 20:04:11','2020-07-26 11:05:19'),(202,'The demand for a commodity not directly for immediate consumption but for the production of another commodity is','competitive demand','derived demand','composite demand','joint demand','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:14'),(203,'Which of the following is a luxury item?','Petrol','Textbook','Pencil','Gold','','','d','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-22 10:27:12'),(204,'If the quantity demanded of a particular commodity is represented by the function Qd = 30 - 2p. What is the quantity demanded at a price of twelve Naira?','6 units','8 units','10 units','12 units','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:16'),(205,'The responsiveness of demand to a change in income is the measurement of','foreign exchange rate','cross elasticity of demand','income elasticity of demand','price index elasticity','','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:17'),(206,'The upward sloping of the supply curve indicates that','more will be supplied as price rises','less will be supplied as price rises','supply is not a function of price','supply is static and demand is dynamic','','','a','','wassce','2001',102,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:18'),(207,'Monoculture agriculture means','the cultivation of seasonal crops','the cultivation of one major crop','plantation agriculture','shifting cultivation!','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:19'),(208,'Industries are not sited in most rural areas of Nigeria because','of inadequate basic infrastructure','they lack raw materials','there is no appropriate government policy','the climate is not conducive','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:19'),(209,'Which of the following business units can issue shares?','Sole trader','Private limited company','Central Bank','Supermarket','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:20'),(210,'When the government initiates measures to make an organization in which it has substantial interest more profit \toriented, such a business is described as being','indigenized','restructured','Privatized','commercialized','','','d','','wassce','2001',70,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:21'),(211,'Which of the following is not a trade union in Nigeria?','Nigerian Labour Congress','Academic Staff Union of Universities','Nigerian Economic Society','Nigerian Union of Journalists','','','c','','wassce','2001',96,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:22'),(212,'The monopolist power can be controlled by the government through','Labour union','Price legislation','import restrictions','export promotion','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:23'),(213,'Which of the following is not a condition for a perfect market?','Homogenous commodity','Ignorance of consumers','Perfect information','Free entry and exit','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:24'),(214,'The reward for shareholdership of a company is','Wages','interest','dividends','profit','','','c','','wassce','2001',94,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:25'),(215,'In a public corporation, the risks of business are borne by the','workers','tax payers','board members','treasury','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:26'),(216,'One of the functions of money is','double coincidence of wants','unit of account','indivisibility','making payments through banks only','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:27'),(217,'Money is demanded for which of the following reasons?','To meet unforeseen contingencies','To solve the problem of inflation','It is easily divisible','It is portable','','','a','','wassce','2001',104,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:28'),(218,'The Quantity Theory of money states that a reduction in the quantity of money in circulation would bring about','a geometrical fall in prices','a proprotionate fall in price','a rise in prices','an unequal fall in prices','','','b','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:29'),(219,'Which of the following is the most liquid asset?','Bank notes','Silver','Bank deposit','Cheques','','','b','','wassce','2001',106,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:30'),(220,'The situation in which there is a persistent fall in the general price level is referred to as','devaluation','depreciation','deflation','inflation','','','c','','wassce','2001',77,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:31'),(221,'Commercial banks settle their daily interbank indebtedness through the','Money Market','Finance House','Acceptance House','Clearing House','','','d','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:32'),(222,'One disadvantage of inflation is that','fixed income earners gain','fixed income earners lose','businessmen lose','standard of living rises','','','b','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:33'),(223,'Short-term loans can be sourced from','the central bank','development banks','mortgage banks','commercial banks','','','d','','wassce','2001',81,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:34'),(224,'If there is an increase in wages and salaries without a corresponding increase in the supply of goods and services, the situation will lead to','a reduction in aggregate demand','inflation','depression','budget surplus','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:12','2020-07-28 02:23:43'),(225,'Public expenditure can be financed from all the following sources except','borrowing','grant-in-aid','royalties and rents','Mobilization fees','','','a','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:36'),(226,'Which of the following is a direct tax?','Import duty','Export duty','Capital gain tax','Sales tax','','','c','','wassce','2001',92,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:37'),(227,'Tax evasions means','postponing payment of tax','tax payment according to ability to pay','making false declaration of taxable income','paying little amount of money as tax','','','c','','wassce','2001',95,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:38'),(228,'A greater burden of tax on a product with high price elasticity of demand rests mainly on the','producer','teacher','civil servant','middlemen','','','a','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:39'),(229,'An ad valorem tax refers to a tax','imposed on exports','on goods manufactured in the country','based on the value of the commodity','levied on income','','','c','','wassce','2001',101,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:40'),(230,'Which of the following is associated with the development of the petroleum industry in Nigeria?','Neglect of agriculture','Increase in population growth','Increase in the rate of Unemployment','Decrease in the rate of inflation','','','a','','wassce','2001',98,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:41'),(231,'The following are examples of economic goods except','bottled water','air','household utensils','shelter','','','b','','wassce','2010',80,'Admin','2016-11-12 20:44:26','2020-07-14 14:28:42'),(232,'A tent-making factory offers','personal services','indirect services','social services','reflex services','','','b','','wassce','2010',81,'Admin','2016-11-12 20:44:28','2020-07-14 14:28:43'),(233,'In which of the following economic systems do we have mostly private ownership of resources and individual','decision making?','Capitalist system','Socialist system','Mixed system','','','a','','wassce','2010',93,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:44'),(234,'The sum of items divided by the number of items is the','Frequency','mean','median','mode','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:45'),(235,'Find the median of the following set of scores: 8, 9, 6, 5, 10','9','8','6','5','','','b','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:46'),(236,'Which of the following causes the demand curve to shift to the right?','A reduction in the size of population','An increase in the income of the buyer','The availability of substitutes','A decrease in price of the good','','','d','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:47'),(237,'Goods for which demand rises as income rises are','complementary goods','inferior goods','normal goods','substitutes','','','c','','wassce','2010',88,'Admin','2016-11-12 20:44:29','2020-07-26 11:05:19'),(238,'The slope of a supply curve is','Horizontal','uniform','positive','vertical','','','c','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:49'),(239,'Equilibrium price is the price at which quantity','demanded is greater than quantity supplied','supplied is greater than quantity demanded','demanded is equal to quantity supplied','supplied equals quantity produced','','','c','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:50'),(240,'A decrease in supply with demand remaining unchanged will cause the equilibrium price for a good to','be unchanged','remain elastic','remain inelastic','rise','','','d','','wassce','2010',76,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:51'),(241,'At the highest level of total utility, marginal utility is','Negative','positive and falling','positive and rising','zero','','','d','','wassce','2010',63,'Admin','2016-11-12 20:44:29','2020-07-15 09:09:54'),(242,'The law of diminishing marginal utility states that, the more a commodity is consumed the','higher the satisfaction derived from an additional unit','higher the price to be paid','lower the quantity supplied','lower the rate of increase in the total utility derived','','','d','','wassce','2010',87,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:53'),(243,'Greater inter-dependence among workers in production is associated with','utility','manufacturing','division of labour','factory workers','','','c','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:54'),(244,'If TC, FC and VC represent total cost, fixed cost and variable cost respectively, which of the following is\\n\tcorrect?','TC = FC-VC','FC = TC + VC','TC > FC + VC','TC = FC + VC','','','d','','wassce','2010',93,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:55'),(245,'The reward to land as a factor of production is','Profit','rent','interest','wage','','','b','','wassce','2010',85,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:57'),(246,'A firm is said to be a public joint stock company when it','is owned by the government','sells its shares to members of the public','operates as a government corporation','is not legally recognized as a firm','','','b','','wassce','2010',100,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:58'),(247,'All the following are sources of finance to a joint stock company except','debentures','cooperative loans','shares','bank loans','','','b','','wassce','2010',73,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:59'),(248,'The public sector of an economy includes','cooperative societies','nationalized industries','joint stock companies','pressure groups','','','b','','wassce','2010',89,'Admin','2016-11-12 20:44:29','2020-07-14 14:29:00'),(249,'One advantage of the Sole Proprietorship over other forms of business organizations is that it can','make very high profits','employ many workers','keep its affairs private','produce on a very large scale','','','c','','wassce','2010',69,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:01'),(250,'Which of the following is obtainable in a perfect market?','P = MR >AR','MR = MC>P','MR < P','P = MR = MC','','','d','','wassce','2010',73,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:03'),(251,'The wholesaler performs the following functions except','breaking the bulk','offering credit facilities to consumers','financing manufacturers','buying in bulk from manufacturers','','','b','','wassce','2010',83,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:05'),(252,'Age Group\t[0 -15\t\t30%], [16 - 40\t\t27%], [41 - 60\t\t25%], [61 and above\t18%] The data shows the age distribution of a country \\n\tin 1983. Using the data, calculate the percentage of working population in 1983.','48%','52%','57%','70%','','','b','','wassce','2010',84,'Admin','2016-11-12 20:44:33','2020-07-16 12:39:39'),(253,'A country whose population size is too small relative to its resources is','over populated','optimally populated','under populated','producing the optimum output','','','c','','wassce','2010',81,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:08'),(254,'An efficient weapon used in resolving disputes between employers and employees is','co – operation','collective bargaining','display of placards','legal action','','','b','','wassce','2010',66,'Admin','2016-11-12 20:44:33','2020-07-26 11:05:19'),(255,'Which of the following does not explain why a school principal earns more salary than a school messenger?','Length of training','Demand and Supply','Cost of training','The messenger is a non-teaching staff','','','b','','wassce','2010',78,'Admin','2016-11-12 20:44:33','2020-07-16 12:39:39'),(256,'The role of government in promoting agricultural development includes the following except','paying the wages of all farmers','establishing and funding research','formulation of policies','provision of rural infrastructure','','','a','','wassce','2010',94,'Admin','2016-11-12 20:44:33','2020-07-28 03:35:44'),(257,'The following are advantages of large scale agriculture except','use of simple implements','use of sophisticated implements','increase in employment','integration of crop and animal farming','','','a','','wassce','2010',84,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:14'),(258,'The following are all factors determining the location of industry except','minimum wage rate','availability of labour','nearness to raw materials','proximity to market','','','a','','wassce','2010',85,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:15'),(259,'Which of the following is not a concept in National income accounting?','Domestic National Product (DNP)','Gross National Product (GNP)','Gross Domestic Product (GDP)','Net Domestic Product (NDP)','','','a','','wassce','2010',100,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:17'),(260,'Which of the following equations is appropriate for determining the Net Domestic Product (NDP)?','NDP = GNP – depreciation','NDP = GDP + Net Income from abroad','NDP = GDP – depreciation','NDP = GDP x Net Income from abroad','','','c','','wassce','2010',91,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:18'),(261,'Which of the following over estimates the value of national income?','Incomplete statistical data','Wrong timing of computation','Changes in prices of goods within the year','Double counting','','','d','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:19'),(262,'The total stock of money available for use in an economy is','a function of money','a characteristic of money','the demand for money','the supply of money','','','d','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:21'),(263,'Which of the following is not a reason for holding money?','Ostentation','Speculation','Transactions','Precautionary','','','a','','wassce','2010',76,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:22'),(264,'The best way of combating demand-pull inflation is to','increase income taxes','reduce income taxes','increase import duties','increase salaries and wages','','','a','','wassce','2010',81,'Admin','2016-11-12 20:44:34','2020-07-16 12:39:39'),(265,'In which of the following ways has','Increase in money supply','A fall in real income','Appreciation in the value of money','Increased employment','','','b','','wassce','2010',80,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:24'),(266,'Which of the following is a legal tender?','Bank notes','Bank overdrafts','Bills of exchange','Money order','','','a','','wassce','2010',73,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:25'),(267,'The Central Bank controls money supply through all the following except','lending to the public','bank rate','legal reserve requirements','open market operation','','','a','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:27'),(268,'One of the functions of the Central Bank is','production of goods','issuing of currency','presenting budgets','printing of cheque book','','','b','','wassce','2010',81,'Admin','2016-11-12 20:44:34','2020-07-23 10:36:44'),(269,'The function of the Central Bank as a lender of last resort means that when all other sources fail','the consumer can always borrow money from the Central Bank','the government can ask the Central Bank to print more money','commercial banks can raise loans from the Central Bank','commercial banks can deposit money with the Central Bank','','','c','','wassce','2010',98,'Admin','2016-11-12 20:44:34','2020-07-24 23:28:50'),(270,'One disadvantage of direct taxes is that they','allocate scarce resources','are not rigid','can be progressive.','can be evaded','','','d','','wassce','2010',88,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:31'),(271,'Human wants are','Limited','scarce','unlimited','in grades','','','c','','wassce','2012',84,'Admin','2016-11-12 21:02:57','2020-07-14 14:29:32'),(272,'The difference between the money cost and the real cost of any item is that','real cost is the alternative forgone while the money cost is the actual amount paid for buying the item','the real cost is the opportunity cost, while the money cost is the marginal cost','money cost is the opportunity cost, while the real cost is the actual cost in monetary terms','money cost is always greater than real cost','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:34'),(273,'The Production Possibility Curve (PPC) indicates that as \tmore of one good is produced','less of the other good is produced','the same quantity of the other good is produced','more of the other good is produced','none of the other good is produced','','','a','','wassce','2012',75,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:35'),(274,'An arrangement of data in rows and columns is referred to as a','Graph','bar chart','pie chart','Table','','','d','','wassce','2012',92,'Admin','2016-11-12 21:03:03','2020-07-16 12:39:39'),(275,'A normal demand curve slopes','downwards from left to right','upwards from right to left','downwards from right to left','upwards from left to right','','','a','','wassce','2012',73,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:37'),(276,'The co-efficient of income elasticity of demand for inferior goods is','Positive','equal to one','less than one','negative','','','d','','wassce','2012',75,'Admin','2016-11-12 21:03:03','2020-07-14 14:29:39'),(277,'If a 20% rise in the price of  Whisky leads to a 30% increase in quantity demanded of Schnapps, the cross elasticity of demand is','3.0','2.5','2.3','1.5','','','d','','wassce','2012',77,'Admin','2016-11-12 21:03:04','2020-07-16 12:39:39'),(278,'Palm oil and palm kernel have','competitive supply','excess supply','joint supply','composite supply','','','c','','wassce','2012',77,'Admin','2016-11-12 21:03:04','2020-07-26 11:05:19'),(279,'A supply curve which is vertical has an elasticity co-efficient of','0','0.5','1.5','2','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:04','2020-07-15 09:09:54'),(280,'If the current price of an apple is twice that of last year, it implies that the value of money is','Stable','falling','rising','getting stronger','','','b','','wassce','2012',73,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:44'),(281,'Price fixed above the equilibrium is to','protect agricultural producers','discourage agricultural producers','lower the prices of agricultural produce','favour consumers','','','a','','wassce','2012',89,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:46'),(282,'A consumer purchasing a commodity X will maximize his satisfaction if','Px = Mux','Px  >_  MUx','Px > Mux','Px < Mux','','','a','','wassce','2012',79,'Admin','2016-11-12 21:03:04','2020-07-22 10:40:33'),(283,'When total utility is constant, it means marginal utility is','Increasing','zero','decreasing','one','','','b','','wassce','2012',75,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:49'),(284,'A rational consumer is one who','spends his income to maximize satisfaction','is not influenced by advertisement','behaves in a particular way all the time','knows the prices of all goods and buys the cheapest','','','a','','wassce','2012',81,'Admin','2016-11-12 21:03:04','2020-07-22 10:25:52'),(285,'Which of the following is not true about land?','The supply is fixed','Land is mobile','It is subject to diminishing returns','Land is heterogeneous','','','b','','wassce','2012',59,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:52'),(286,'The type of production that involves the tapping and \tharnessing of natural resources is','primary production','secondary production','tertiary production','industrial production','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:54'),(287,'Which of the following does not change in the short run?','Variable cost','Marginal cost','Total cost','Fixed cost','','','d','','wassce','2012',83,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:55'),(288,'The resources used in production are called','variable inputs','factors of production','capital for production','fixed inputs','','','b','','wassce','2012',100,'Admin','2016-11-12 21:03:04','2020-07-22 10:11:37'),(289,'A firm will shut down in the long run if its earning is','less than normal profit','greater than normal profit','equal to super normal profit','less than super normal profit','','','a','','wassce','2012',65,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:58'),(290,'A market structure where profit is maximized when marginal \trevenue, marginal cost and price are equal is known as','perfect competition','monopoly','oligopoly','imperfect competition','','','a','','wassce','2012',85,'Admin','2016-11-12 21:03:04','2020-07-14 14:29:59'),(291,'In which of the following markets does a firm have power to \tmake super normal profits both in the short run and long run?','Monopol','Duopoly','Oligopoly','Monopsony','','','a','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-07-14 14:30:00'),(292,'If there arc no barriers to entering a market, it means that','anyone can become a buyer or seller','unwanted goods can always enter the market','the market becomes a dumping ground','the goods are not inspected','','','a','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-07-28 00:06:45'),(293,'A firm’s main aim is to','survive in business','maximize profits','increase its market share','satisfy the ambitions of its managers','','','b','','wassce','2012',77,'Admin','2016-11-12 21:03:04','2020-07-14 14:30:03'),(294,'One good reason for the elimination of middlemen is that they','cause increase in price','help in price stability','grade and blend goods','are too many','','','a','','wassce','2012',84,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:05'),(295,'The increase in population growth in big cities is referred to as','settlement','migration','industrialization','Urbanization','','','d','','wassce','2012',76,'Admin','2016-11-12 21:03:08','2020-07-26 11:05:19'),(296,'Frictional unemployment can be reduced by','encouraging the use of retraining schemes','removing barriers to labour mobility','restricting the introduction of new technology','lowering the level of wages paid to young people','','','a','','wassce','2012',88,'Admin','2016-11-12 21:03:08','2020-07-21 11:27:15'),(297,'If the labour force of a country is 2.5 million and 2 million are employed, what is the unemployment rate?','0.2%','20%','200%','250%','','','b','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:08'),(298,'The grouping of population according to the economic activities people engage in is','age distribution','sex distribution','geographical distribution','occupational distribution','','','d','','wassce','2012',92,'Admin','2016-11-12 21:03:08','2020-07-16 17:21:34'),(299,'Natural growth rate of population can be defined as the','difference between birth rate and death rate','number of births in a year','increase in the population growth in a year','difference between the total population and the death rate','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:11'),(300,'Which of the following is not a consequence of increased unemployment?','A fall in tax revenue for the government','A reduction in trade union’s influence','A fall in the death rate','An increase in the labour force','','','c','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:12'),(301,'The following are features of subsistence agriculture except','little capital','processing of raw materials','small allotments of land','use of crude implements','','','b','','wassce','2012',85,'Admin','2016-11-12 21:03:08','2020-07-26 11:05:19'),(302,'Which of the following is not true of small companies?','The cannot benefit from economics of scale','are a good source of new jobs','can satisfy demand in specialist markets','have a good record of technical innovations','','','d','','wassce','2012',94,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:15'),(303,'The effect of privatization on the industrial sector of a country is that it','ensures efficiency','discourages efficiency','leads to decrease in output','leads to liquidation','','','a','','wassce','2012',84,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:16'),(304,'The production strategy used in an over populated country is','import substitution','capital intensive','labour intensive','first come first employed','','','c','','wassce','2012',76,'Admin','2016-11-12 21:03:08','2020-07-21 11:58:16'),(305,'National income is used to measure','a country’s population size','a country’s economic growth','the human level of development','the flow of imports to a country','','','b','','wassce','2012',75,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:19'),(306,'A tax is regressive if the','rate of tax is constant at all income levels','rate of tax decreases as income increases','rate of tax increases as income increases','tax is direct rather than indirect','','','b','','wassce','2012',82,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:20'),(307,'When a country’s net income from abroad is added to its total \toutput, the result is','gross domestic product','net national product','gross national product','net domestic product','','','c','','wassce','2012',78,'Admin','2016-11-12 21:03:09','2020-07-27 02:06:28'),(308,'A fall in national output will necessitate','a rise in expenditure on imports','a rise in the level of savings','an increase in consumption expenditure','a rise in the standard of living','','','a','','wassce','2012',99,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:22'),(309,'The demand for money to take advantage of changes in bond \tprices is the','unforeseen motive','transaction motive','speculative motive','precautionary motive','','','d','','wassce','2012',71,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:23'),(310,'Cost push inflation is caused by a','rise in the cost of production','decrease in the transportation cost','rise in demand for goods','decrease in the cost of production','','','c','','wassce','2012',88,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:24'),(311,'Deposits held in a commercial bank are part of','money supply','transfer payments','ordinary shares','treasury bills','','','a','','wassce','2012',89,'Admin','2016-11-12 21:03:12','2020-07-14 14:30:27'),(312,'One profitable form of business undertaken by the commercial banks is','the issuing of cheques','the payment of standing order','lending money to borrowers','accepting cheques from customers','','','c','','wassce','2012',84,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:28'),(313,'When governments want to discourage consumption, they \ttax goods whose demand','price inelastic','abnormal in nature','price elastic','normal in nature','','','c','','wassce','2012',91,'Admin','2016-11-12 21:03:13','2020-07-26 11:05:19'),(314,'A rise in government expenditure can lead to','higher inflation','higher unemployment','lower profits for industries','lower importation of raw materials by industries','','','a','','wassce','2012',109,'Admin','2016-11-12 21:03:13','2020-07-14 14:30:31'),(315,'Tariff is used to protect domestic industries by making foreign goods relatively','cheaper in the domestic market','more expensive in the domestic market','more expensive in the international market','cheaper in the international market','','','b','','wassce','2012',88,'Admin','2016-11-12 21:03:13','2020-07-26 11:05:19'),(316,'Musa has a choice of buying a shirt, a book and a bag. What is the opportunity cost of buying a book?','A bag only','A book and a bag','A shirt and a bag','A shirt only','','','c','','utme','2009',105,'Admin','2016-11-12 21:38:46','2020-07-22 22:03:54'),(317,'A typical feature of a market economy is that','all producers make profit','full employment exists','consumer sovereignty exists','there is equality of economic agents','','','c','','utme','2009',114,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:53'),(318,'The privatization exercise in Nigeria is a move towards a','mixed economy','subsistence economy','market economy','command economy','','','c','','utme','2009',114,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:32'),(319,'A high rent on land will affect the cost of producing maize','positively','negatively','at the early stage of production','at the later stage of production','','','b','','utme','2009',111,'Admin','2016-11-12 21:38:47','2020-07-22 22:02:41'),(320,'If the  active  population  is 50  million and unemployed is 5 million, what is the unemployment rate?','10%','45%','55%','90%','','','a','','utme','2009',102,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:34'),(321,'A cumulative frequency graph is','a histogram','an ogive','a bar chart','a pie chart','','','b','','utme','2009',116,'Admin','2016-11-12 21:38:47','2020-07-22 22:02:42'),(322,'A movement along the same demand curve is caused by the','price of the product','price of other products','income of the consumer','taste of the consumer','','','a','','utme','2009',101,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:35'),(323,'The demand curve for a luxury good is','negatively sloped','parallel to the price axis','parallel to the quantity axis','positive sloped','','','d','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-22 22:02:41'),(324,'Price elasticity of demand is expressed as','percentage change in price percentage change in quantity demanded','percentage change in quantity demanded percentage change in Income','percentage change in Income percentage change in quantity demanded','percentage change in quantity demande percentage change in price','','','d','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:34'),(325,'A major assumption in cardinal utility theory is that','utility is measurable','utility is not measurable','total utility equals marginal utility','total utility is constant','','','a','','utme','2009',108,'Admin','2016-11-12 21:38:47','2020-07-16 17:21:34'),(326,'A supply curve is positively sloped because','supply always exceeds demand','demand always exceeds supply','price is an incentive to consumers','price is an incentive to producers','','','d','','utme','2009',108,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:34'),(327,'The short-run supply curve for medical doctors is more  likely to be','perfectly elastic','perfectly inelastic','fairly inelastic','fairly elastic','','','b','','utme','2009',99,'Admin','2016-11-12 21:38:47','2020-07-22 21:45:30'),(328,'If the price of an item changes by 8% and quantity supplied changes from 600 units to 660 units, the price elasticity of supply is','0.80','1.25','2.00','10.00','','','b','','utme','2009',109,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:34'),(329,'In a regulated market, price is determined by','Consumers','producers','auction','government','','','d','','utme','2009',103,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:54'),(330,'A decrease in supply without a corresponding change in demand will lead to','an increase in equilibrium price and a decrease equilibrium quantity','a decrease in equilibrium price and an increase in equilibrium quantity','a decrease in equilibrium price and equilibrium quantity','an increase in equilibrium price and quantity','','','a','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:55'),(331,'Production takes place when','output is transformed into input','machines replace human effort','input is transformed into output','there is specialization and division of labour','','','c','','utme','2009',112,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:33'),(332,'The marginal product of the 5th unit of capital is','42','85','114','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','d','','utme','2009',94,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:55'),(333,'Determine the average product of the 4th unit of capital','53','86','212','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','a','','utme','2009',105,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:44'),(334,'Which of the following can be deduced from law of variable proportions when total output is rising?','MP is greater than AP','MP is less than AP','MP is equal to AP','MP is equal to zero','','','d','','utme','2009',110,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:34'),(335,'As the level of output increases, the average fixed cost of a firm will','continue to increase','remain uncharged','continue to decrease','be equal to the total cost','','','c','','utme','2009',121,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:35'),(336,'The shape of the long-run average cost curve is best explained by the','law of diminishing returns','law of returns to scale','cost of fixed inputs','cost of variable inputs','','','a','','utme','2009',114,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:33'),(337,'The supply curve of a perfectly competitive firm is identical to its','total cost','marginal cost','fixed cost','variable cost','','','b','','utme','2009',104,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:35'),(338,'If a monopolist is incurring short–run losses, this means that his','selling price is above the short–run marginal cost','selling price is below the short–run marginal cost','average revenue is greater than marginal revenue','average revenue is less than marginal revenue','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:16'),(339,'In the long run, one of the characteristics of monopolistic competitive firms is that the','make  abnormal profits','suffer losses','make normal profits','collude with each other','','','a','','utme','2009',131,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:33'),(340,'In developing countries, it is easier to obtain accurate national income estimates through the','GNP','GDP','NDP','NNP','','','b','','utme','2009',119,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:34'),(341,'Double counting is a problem in computing national income when using the','expenditure method','income method','output method','value–added method','','','c','','utme','2009',96,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:34'),(342,'In the circular flow of income, an increase in saving causes','an increase in imports','a decrease in the income stream','an increase in household consumption','a decrease in exports','','','b','','utme','2009',102,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:53'),(343,'The ability of commercial banks to create money depends on the','Ratio','liquidity ratio','interest rate','capital base','','','b','','utme','2009',128,'Admin','2016-11-12 21:38:48','2020-07-26 11:05:19'),(344,'The reform in the banking sector in Nigeria is principally \tmotivated by the need to','increase the capital base of banks','provide more money to run the economy','minimize the rate of bank failures','enhance efficiency in bank operations','','','a','','utme','2009',117,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:54'),(345,'A manufacturer who wants to build a new plant will source funds from the','commercial banks','money market','capital market','government','','','c','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:34'),(346,'Cost–push inflation occurs when','production cost is high','factor prices decrease','there is too much money in circulation','government embarks on deficit financing','','','a','','utme','2009',122,'Admin','2016-11-12 21:38:48','2020-07-28 03:35:44'),(347,'If government expenditure exceeds revenue, this results in','balanced budget','national debt','budget deficit','budget surplus','','','c','','utme','2009',121,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:33'),(348,'The Basic Needs Approach to development is directed a','poverty alleviation','provision of educational infrastructure','provision of health services','improvement in worker’s income','','','a','','utme','2009',126,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:34'),(349,'The major reason why countries strive to achieve optimum growth is to','be self–sufficient','raise general living standards','raise the level of production','reduce aggregate expenditure','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-07-22 22:02:40'),(350,'According to the theory of comparative advantage, specialization will result in','labour–intensive method of production','capital–intensive method of production','efficient allocation of resources','efficient distribution of output','','','c','','utme','2009',114,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:44'),(351,'Dumping in international trade means selling a good at a','higher price at home than abroad','lower price at home than abroad','price that equates marginal cost with marginal revenue','price above marginal cost abroad','','','a','','utme','2009',114,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:45'),(352,'Guided deregulation as currently practiced in Nigeria implies that','market forces determine interest and exchange rates','government alone determines interest and exchange rates','market forces and government determine interest and exchange rates','exchange rate is regulated while interest rate is fixed','','','c','','utme','2009',94,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:54'),(353,'An important function of the world bank is to','provide short–term loans to members','encourage trade between members','promote capital–intensive productions','provide long–term loans to members','','','d','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:44'),(354,'The major problem confronting a sole proprietor is','high level of risk','limited expertise','limited source of capital','high taxation','','','c','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:45'),(355,'A public liability company is run on a daily basis by','the chief executive','the shareholders','the board of directors','financial consultants','','','c','','utme','2009',114,'Admin','2016-11-12 21:38:48','2020-07-22 22:02:43'),(356,'The marketing of agricultural products in Nigeria can be improved by','a massive production of farm produce','re–establishing the marketing boards','establishing more agricultural banks','processing of farm produce','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:53'),(357,'To enhance the competitiveness of domestic agricultural products, there is need to','ban the importation of agricultural products','increase the exportation of agricultural products','improve the quality of domestic agricultural products','increase the output of domestic agricultural products','','','c','','utme','2009',100,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:46'),(358,'In Nigeria, the location of a steel industry at Ajaokuta is due to','the availability of transport network','the proximity to source of power','the proximity to large deposits of iron ore','political consideration.','','','c','','utme','2009',119,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:53'),(359,'Industries for consumer goods are concentrated in urban centres as result of','large market','power supply','government policy','weather conditions','','','a','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:53'),(360,'The current industrial development strategy in Nigeria is aimed at encouraging','small–scale industries','medium–scale Industries','small – and medium–scale Industries','medium–and large–scale Industries','','','c','','utme','2009',128,'Admin','2016-11-12 21:38:48','2020-07-26 11:05:19'),(361,'Activities in the oil and gas industry are classified into','oil exportation and distribution','refining and marketing of finished products','upstream and downstream','exploration and drilling','','','c','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:35'),(362,'High dependency ratio is influenced by','high infant mortality rate','the level of income','high birth rate','inadequate medical care for children','','','c','','utme','2009',118,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:45'),(363,'Occupational distribution of population determines the','size of a population available and willing to work','population density of a place','dependency ratio of a country','size and categories of the labour force','','','a','','utme','2009',114,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:34'),(364,'The mobility of labour is mainly determined by','the age of workers','government policy','trade unions','wage rate differentials','','','d','','utme','2009',116,'Admin','2016-11-12 21:38:49','2020-07-26 11:05:19'),(365,'When workers have a union, the supply of labour is said to be','Monopolistic','oligopolistic','Monoposonistic','competitive','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:49','2020-07-22 22:03:53'),(366,'Economics is the study of human behaviour as it relates to the','efficient allocation of resources','operation of companies','production of goods','generation of income','','','a','','utme','2010',129,'Admin','2016-11-12 22:11:49','2020-07-27 17:23:03'),(367,'A classroom teacher is promoted to the rank of a principal. This is an example of','vertical mobility','lateral mobility','social mobility','horizontal mobility','','','d','','utme','2010',117,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(368,'The downturn in the prices of shares on stock markets is a \thighlight of','efficient allocation of resources','the regulatory nature of the market','the invisible hand','consumer rationality','','','b','','utme','2010',122,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(369,'If  X = 6 and N = 6, determine the value of   Efx.','36','12','1','72','','','a','','utme','2010',129,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(370,'The standard deviation of a set of data is','always measured from the mode','always measured from the median','the most representative of averages','a measure of dispersion','','','d','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(371,'The mean is the best measure of central tendency because it','is not affected by extreme values in a data','is a balancing point in an observation','is a midpoint value in an array of data','can be calculated from incomplete data','','','b','','utme','2010',112,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(372,'The most popular sizes of dresses and shoes are determined by the','Range','mode','mean','median','','','d','','utme','2010',130,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(373,'If  the demand for a good is more elastic than its supply, the tax burden is borne','equally by consumers and producers','more by consumers','more by producers','more by retailers and producers','','','c','','utme','2010',120,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(374,'If  the price of a commodity with elastic demand increases, the revenue accruing to the producer will','Double','be constant','increase','decrease','','','d','','utme','2010',123,'Admin','2016-11-12 22:11:50','2020-07-28 00:06:45'),(375,'An excess demand for beans will result from','an increase in the price of  beans','a decrease in the price of  beans','an increase in the supply of  beans','a decrease in the supply of  beans','','','b','','utme','2010',121,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(376,'Consumer surplus tends to be higher when demand is','perfectly elastic','inelastic','elastic','unitary elastic','','','c','','utme','2010',98,'Admin','2016-11-12 22:11:50','2020-07-22 22:03:45'),(377,'One of  the assumptions of ordinal utility theory is that','choice is not consistent','total utility is a function of price','utility can be ranked','satisfaction is measurable','','','c','','utme','2010',123,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(378,'The law of diminishing marginal utility explains why','the slope of a normal demand curve is negative','the slope of a normal demand curve is positive','an abnormal demand curve slopes upward','the consumption of inferior goods increases with income','','','a','','utme','2010',128,'Admin','2016-11-12 22:11:50','2020-07-22 22:03:55'),(379,'If a consumer plans to spend 120k on four oranges but spent 80k, his consumer surplus is','N = 1.50','N = 1.00','N = 0.40','N = 2.0','','','c','','utme','2010',119,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(380,'A set of  factors that can shift the supply curve are changes in','weather, price and technology','technology, price and taste','technology, weather and population','population, price and taste','','','c','','utme','2010',136,'Admin','2016-11-12 22:11:50','2020-07-23 16:01:34'),(381,'If  the coefficient of price elasticity of supply is greater than one, the supply is said to be','perfectly elastic','infinitely inelastic','fairly inelastic','fairly elastic','','','d','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(382,'If commodity X is a by-product of commodity Y, this implies that both commodities are','in competitive supply','jointly supplied','in composite supply','in excess supply','','','c','','utme','2010',123,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(383,'In perfect competition, price is determined by the','Government','buyers','sellers','market','','','d','','utme','2010',106,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(384,'In order to reduce hardship faced by consumers due to high prices, government can introduce','maximum prices','minimum prices','commodity boards','price control boards','','','d','','utme','2010',126,'Admin','2016-11-12 22:11:50','2020-07-27 17:23:03'),(385,'Average product is less than marginal product when','there is constant returns to scale','there is decreasing returns to scale','there is increasing returns to scale','diminishing returns set in','','','c','','utme','2010',123,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(386,'A firm enjoying economics of scale is said to be','reducing average cost as production increases','maximizing profits as production increases','benefiting from the activities of other firms','having an upward - sloping average cost curve','','','a','','utme','2010',110,'Admin','2016-11-12 22:11:51','2020-07-22 22:03:55'),(387,'The rising portion of the long - run average cost curve of a','firm is an indication that it is experiencing \\n\tincreasing efficiency','diseconomies of scale','economics of scale','increasing marginal returns','','','b','','utme','2010',111,'Admin','2016-11-12 22:11:51','2020-07-22 22:03:55'),(388,'An industry’s supply curve is more likely to be elastic when firms are','enjoying free entry and exit','operating below capacity','operating at full capacity','maximizing profits','','','b','','utme','2010',108,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(389,'One of  the characteristics of  monopolistic competition is that','there is mobility of factors of production','consumers have perfect knowledge of price','no single seller dominates the market','the firms are price – takers','','','a','','utme','2010',125,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(390,'The demand curve for factors of production','is perfectly elastic','slopes downwards','slopes upwards','is perfectly inelastic','','','b','','utme','2010',114,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(391,'An agreement among firms on price and segmentation is termed','Cartel','haggling','collusion','specialization','','','b','','utme','2010',109,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(392,'In national income accounting, tax is determined by the','level of  income','level of investment','level of consumption','rate of savings','','','a','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(393,'A decrease in aggregate spending in an economy will ultimately lead to','Boom','deflation','inflation','recession','','','b','','utme','2010',112,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(394,'If  MPC is 0.7 while government expenditure increased by N= 150m, the equilibrium national income is','N= 214 million','N= 105 million','N= 45 million','N= 500 million','','','b','','utme','2010',133,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(395,'The function of money which makes division of  labour \tpossible is its','unit of account','medium of exchange','store of value','standard of deferred payment','','','b','','utme','2010',130,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(396,'By buying treasury bills, the Central Bank of  Nigeria intends \tto','increase money supply in the economy','reduce money supply in the economy','reduce the cash reserve ratio for banks','increase the capital base of commercial banks','','','b','','utme','2010',127,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(397,'The velocity of money is represented as','money supply /real GDP','real GDPmoney supply','nominal GDP/real GDP','money supply/nominal GDP','','','a','','utme','2010',117,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(398,'One of the functions of commercial banks is','maintaining stable price in the economy','granting loans to customers','regulating monetary policies','issuing bank notes and coins','','','b','','utme','2010',124,'Admin','2016-11-12 22:11:51','2020-07-26 11:05:19'),(399,'A strategy for curbing unemployment is to','implement government stabilization policy','increase government expenditure and decrease taxes','increase taxes and decrease government expenditure','ensure even distribution of job opportunities','','','b','','utme','2010',124,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(400,'In Nigeria, the huge public debt is as a result of','balanced budgeting','surplus budgeting','deficit budgeting','zero budgeting','','','c','','utme','2010',118,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(401,'National development plans in Nigeria fail mainly because of','over dependence on foreign aids','poor implementation strategies','inadequate funding of projects','shortage of skilled manpower','','','b','','utme','2010',114,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(402,'The ultimate aim of agricultural policies in Nigeria is to achieve','food sufficiency','full employment','industrialization','industrial capacity utilization','','','c','','utme','2010',105,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(403,'Government can boost agricultural output in Nigeria primarily by','embarking on buffer stock programs','granting subsidies on farm Inputs','placing embargo on food importation','placing farmers on monthly income','','','c','','utme','2010',116,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(404,'Localization of industries refers to the','spread of firms producing different products','concentration of firms of an industry','siting of industries near the market','siting of firms producing different products','','','b','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-07-22 22:03:53'),(405,'in developing countries, governments influence the location of  industries in order to','spread development','encourage entrepreneurs','redistribute wealth','encourage industries to earn high profits','','','a','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(406,'A disadvantage of Nigeria’s dependence on imported petroleum products is the','instability in the demand to the  products','instability in the supply for the products','dominance of multinational firms','poor maintenance of the refineries','','','b','','utme','2010',123,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(407,'The maximum number of shareholders  for a limited liability company is','Twenty','seven','five','infinite','','','d','','utme','2010',108,'Admin','2016-11-12 22:11:51','2020-07-23 16:01:33'),(408,'The primary motive for an individual engaging in production is to','make profit','redistribute wealth','satisfy basic human wants','put inputs into use','','','a','','utme','2010',128,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(409,'One of  the characteristics of  free trade zone is','common tariff against non-member countries','free factor mobility within the zone','different trade policies of non-member countries','harmonized trade among member countries','','','b','','utme','2010',124,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(410,'If  Nigeria imports vehicles from Japan, the transaction will appear as a','debit on Japan’s balance of payments','credit on Nigeria’s balance of trade','credit on Japan’s balance of payments','credit on Nigeria’s balance of payments','','','a','','utme','2010',126,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(411,'One of  the objectives of ADB is to','provide subsidies on imported goods to members countries','promote economic and social development of member countries','mobilize short-term loans for member countries','provide technical assistance to only poor member countries','','','c','','utme','2010',111,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(412,'The choice of the method of production in an economy is determined by the','level of income','rate of population growth','level of technical know-how','availability of natural resources','','','c','','utme','2010',129,'Admin','2016-11-12 22:11:51','2020-07-28 03:35:44'),(413,'The amount of labour hired depends on the','number of skilled labour available','marginal productivity of labour','skill of labour','price of other inputs','','','b','','utme','2010',104,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(414,'Economic as a field of study is a','pure science','political science','social science','physical science','','','c','','wassce','2003',77,'Admin','2016-11-12 22:37:36','2020-07-14 14:33:25'),(415,'The three major agents of an economic system are the','consumers, workers and producers','markets, telecommunication and banks','schools, hospitals and universities','individuals, firms and government','','','d','','wassce','2003',74,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:26'),(416,'Which of the following  is  not  an  advantage  of  tabular presentation of data?','enables easy location of required figures','makes for easy comparison of figures','occupies more space than mathematical equation','shows whether the figures are increasing or decreasing','','','c','','wassce','2003',102,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:35'),(417,'The problem of scarcity is reduced by','controlling consumption of goods and services','producing everything needed by consumers','ensuring efficient allocation of resources','restricting consumer choices and tastes','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:36'),(418,'The reward for labour is','wages','profit','rend','dividends','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:38'),(419,'Which of the following factors of production consists of man made goods?','Land','Labour','Capital','Entrepreneur','','','c','','wassce','2003',83,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:39'),(420,'One major function of the entrepreneur is','bearing of risk','maximizing profits','taking charge of day to day management','determining the selling price of his products','','','c','','wassce','2003',87,'Admin','2016-11-12 22:37:38','2020-07-22 10:09:29'),(421,'A major limiting factor of mass production is','efficient management','adequate labour supply','small size of the market','adequate  supply of raw materials','','','c','','wassce','2003',98,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:42'),(422,'Division of labour leads to','improved craftsmanship','the production of standardized goods','increase in the cost of goods','trade by barter','','','b','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-16 12:39:39'),(423,'Which of the following is  an  advantage of localization of \\n\tindustry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:45'),(424,'The additional satisfaction derived from the consumption of one more unit of a good is called','marginal product','marginal utility','marginal revenue','marginal cost','','','b','','wassce','2003',98,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:46'),(425,'West  African   countries  have  low  levels  of  economic \tdevelopment due to','underpopulation','inadequate labour','failure to plan','ineffective plan implementation','','','b','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-26 11:05:19'),(426,'When the total product is at its maximum, marginal \\n\tproduct is','increasing','positive','negative','zero','','','d','','wassce','2003',111,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:49'),(427,'Marginal cost can be derived from the','total product','total revenue','total cost','average fixed cost','','','d','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:50'),(428,'The market supply curve slopes upwards from left to right indicating that','at a lower price, more is supplied','two commodities can be supplied at the same time','at a lower price, less is supplied','producers pay high taxes','','','c','','wassce','2003',74,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:51'),(429,'The marginal revenue when output is 4 units is','5 naira','8 naira','56 naira','61 naira','Use the data below to answer question:  Output [1, 2, 3, 4, 5]  Total Revenue(N=) [40, 49, 56, 61, 65]','','a','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:52'),(430,'The term under population refers to a situation where the population is','dispersed over the country','small in relation to available resources','greater than the available resources','concentrated in a few areas','','','b','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:53'),(431,'West African countries experience rapid population growth due to','existence of birth control clinics','early marriages','adequate sex education in schools','late marriages','','','b','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:54'),(432,'Which of the following could be  used  to  measure  the efficiency of labour?','Education and training','Rate of inflation','Level of unemployment','Input-Output ratio','','','d','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:55'),(433,'Which of the following is necessary for the survival of small firms in West Africa?','Access to land for development','Inadequate collaterals for bank loans','Government assistance in the form of loans and tax holidays','High transportation costs.','','','c','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:56'),(434,'A normal demand curve slopes','downwards from left to right','upwards from left to right','downwards from right to left','upwards from the origin','','','a','','wassce','2003',103,'Admin','2016-11-12 22:37:38','2020-07-16 12:39:39'),(435,'If the quantity demanded of a commodity increases from 20 to 30 units when there is an increase in price from 4 naira to 5 naira, the elasticity of demand is','0','1','2','5','','','c','','wassce','2003',90,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:58'),(436,'Price elasticity of supply measures the responsiveness of','quantity supplied to   changes in suppliers’ income','changes in prices of other commodities','a change in the prices of the commodity','a change in the demand for the product','','','c','','wassce','2003',77,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:59'),(437,'The most common type of business in West African countries is','joint stock companies','sole proprietorships','partnerships','public enterprises','','','b','','wassce','2003',92,'Admin','2016-11-12 22:37:38','2020-07-16 12:39:39'),(438,'Which of the following is a type of business organization?','Stock exchange','Insurance company','Chain stores','Co-operative','','','b','','wassce','2003',73,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:01'),(439,'One advantage of the sole proprietorship is that','control and supervision is under one man','accounts must be publicized','it is always successful','funds are easy to obtain','','','a','','wassce','2003',81,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:02'),(440,'The shares which do not carry any fixed rate of dividend are known as','debentures','cumulative preference shares','ordinary shares','participating preference shares','','','c','','wassce','2003',84,'Admin','2016-11-12 22:37:38','2020-07-26 11:05:19'),(441,'The economic goal of public corporations is to','maximize profit','expand assets','minimize costs','provide essential services.','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:03'),(442,'One of the factors responsible for low agricultural \\n\tproduction in West Africa is','inadequate labour','shortage of land','inadequate implements','inadequate research','','','c','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:04'),(443,'Efficient distribution of goods in West Africa will be \\n\tfacilitated by','poor storage facilities','adequate transportation system','high standard of living','high cost of living','','','b','','wassce','2003',88,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:05'),(444,'The demand for money is','derived demand','composite demand','joint demand','complimentary demand','','','a','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:06'),(445,'Money becomes a very poor store of value in a period of','deflation','depression','recession','inflation','','','d','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:07'),(446,'A continuous fall in the general price level is called','recession','depression','deflation','stagflation','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:08'),(447,'Which of the following is a function of the central bank?','Accepting deposits from the public','Lending to the commercial bank','Discounting bills of exchange','Agent of payment for individuals','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:09'),(448,'Cost-push inflation is likely to arise when','there is an increase in government spending','there is an increase in direct taxes','demand for higher wages is granted','there is a decrease in bank lending','','','c','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-07-16 12:39:39'),(449,'The most important function of merchant banks is the','issuing of currency','provision of short term loans','provision of medium and long term loans','provision of short and long term loans','','','c','','wassce','2003',92,'Admin','2016-11-12 22:37:39','2020-07-16 12:39:39'),(450,'Precautionary motive relates to','demand for money','demand for goods','supply of money','supply of goods','','','a','','wassce','2003',109,'Admin','2016-11-12 22:37:39','2020-07-19 12:29:50'),(451,'Invisible trade refers to trade in','services','goods and services','tangible goods','crude oil','','','a','','wassce','2003',83,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:13'),(452,'When the demand for foreign exchange exceeds its supply, the value of the domestic currency','appreciates','depreciates','inflates','expands','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:14'),(453,'Which of the following is part of the capital account of the balance of payments?','Net investment from abroad','Import of machinery','Insurance','Transportation costs','','','a','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:15'),(454,'The most common index for measuring development is','the level of illiteracy','the per capital income','nutritional levels','population growth rate','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:16'),(455,'Governments of West African countries levy taxes to','prevent prices from falling','make people richer','limit the number of banks','finance government projects','','','d','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:17'),(456,'Which of the following is a direct tax?','Import duties','Purchase tax','Export duties','Personal income tax','','','d','','wassce','2003',91,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:18'),(457,'The tax whose rate increases as the level of income increases is known as','regressive tax','proportional tax','progressive tax','company tax','','','c','','wassce','2003',134,'Admin','2016-11-12 22:37:39','2020-07-18 09:03:24'),(458,'Public expenditure on education and health is known as expenditure on','general services','social services','commercial services','economic services','','','b','','wassce','2003',83,'Admin','2016-11-12 22:37:39','2020-07-22 10:40:32'),(459,'Budget deficit can be financed by','reducing the level of taxation','printing more money','lending to financial institutions','employing more workers','','','b','','wassce','2003',79,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:29'),(460,'A major problem facing the Economic Community of West African States (ECOWAS) as an economic integration, is the','increasing population','willingness of member to co-operate','geographical contiguity','weak trade relations','','','d','','wassce','2003',96,'Admin','2016-11-12 22:37:39','2020-07-16 12:39:39'),(461,'In a socialist economy, the means of production is owned and controlled by the','state','rich','Entrepreneur','traders','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:39','2020-07-20 04:56:56'),(462,'It is necessary to estimate the national income of a country because it','indicates the overall performance of the economy','ensures equitable distribution of wealth','assists investors in identifying profitable ventures','enables governments to conserve national resources','','','a','','wassce','2003',78,'Admin','2016-11-12 22:37:39','2020-07-28 00:06:45'),(463,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','perfect competition','monopsony','duopoly','cartel','','','d','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:33'),(464,'Which of the following is an economic activity?','Attending a town’s meeting','A visit to the stadium','Payment of school fee','Arresting a petty thief','','','c','','wassce','2004',88,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:33'),(465,'The reward for land as a factor of production is','interest','rent','dividend','wages','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:46','2020-07-16 17:21:34'),(466,'The three broad categories of production are','direct, secondary and extractive','primary, tertiary and direct','primary, secondary and tertiary','secondary, primary and indirect','','','c','','wassce','2004',93,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:35'),(467,'A carpenter’s consumer good include:  I.  a kilogram of rice II.  3 pairs of shoes    III.  4 pairs of socks   IV. 3 screw-drivers','I and IV only','I, II, III and IV','I, II and IV only','I, II and III only','','','a','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:36'),(468,'In a capitalist system, the means of production is owned and controlled by','the government','politicians','private individuals','the workers','','','c','','wassce','2004',78,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:37'),(469,'Mixed economy refers to a system in which the means of production are controlled by','private enterprise and the government','private individuals','the government only','the workers and businessmen','','','a','','wassce','2004',94,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:38'),(470,'An economic good is described as a good which','yield utility and commands a price','is useful and occupies a space','is in high demand and transferable','has unlimited supply','','','a','','wassce','2004',80,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:39'),(471,'The concept of opportunity cost is important to the firm because it','determines the prices of the firm’s products','increases the level of output of the firm','leads to maximum satisfaction of the consumers','Guides firms in allocating scarce resources','','','d','','wassce','2004',94,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:40'),(472,'As a firm expands, it enjoys some advantages called','variable proportions','diminishing marginal returns','internal economics of scale','decreasing returns to scale','','','c','','wassce','2004',89,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:41'),(473,'Division of labour is limited by','the size of the market','the productivity of capital','cost of production','factors of production','','','a','','wassce','2004',73,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:42'),(474,'An entrepreneur is likely to make more profits when','expenditure is more than revenue','competitors charge lower prices','cost per unit output falls','quantity of output reduces','','','c','','wassce','2004',84,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:43'),(475,'Natural growth rate is','birth rate less death rate','death rate less migration','death rate plus birth rate','birth rate plus migration','','','a','','wassce','2004',81,'Admin','2016-11-12 23:04:46','2020-07-16 12:39:39'),(476,'A major effect of aging populations is','reduced labour force','rise in prices of commodities','reduced infrastructure','neglect of agriculture','','','a','','wassce','2004',98,'Admin','2016-11-12 23:04:46','2020-07-26 11:05:19'),(477,'One of the problems associated with the middleman in the distribution of goods is that he','buys in large quantities','hoards goods','grants credit to the retailer','sells varieties of goods','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:47'),(478,'The distribution of goods is said to be completed when it reaches the','wholesalers','consumers','retailers','manufacturers','','','b','','wassce','2004',90,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:49'),(479,'The gap between demand and  supply  curves  below the equilibrium price indicates','excess demand','excess supply','equilibrium quantity','equilibrium price','','','a','','wassce','2004',99,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:52'),(480,'Demand for inferior good is an example of','expansion of demand','contraction of demand','individual demand','abnormal demand','','','d','','wassce','2004',90,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:55'),(481,'When a change in price does not affect the quantity demanded of a commodity, the price elasticity of demand is','fairly inelastic','infinitely elastic','perfectly inelastic','unitary elastic','','','c','','wassce','2004',96,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:56'),(482,'For both the monopolist and the perfectly competitive firm, profit maximizing output occurs at the point where the','marginal cost curve cuts the marginal revenue curve from below','marginal revenue curve cuts the marginal output from above','marginal cost curve intersects the X-axis','marginal revenue curve intersects the Y-axis','','','a','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:34:58'),(483,'The market structure in which the operators are many and none of them can influence the price is','imperfect market','perfect market','oligopolistic market','stock market','','','b','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:34:59'),(484,'One main benefit of partnerships is','the possibility of raising funds on the stock exchange','the possibility of attracting twenty one or more members','that members can specialize in various functions','that it enjoys its own separate legal entity.','','','c','','wassce','2004',85,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:00'),(485,'Joint ventures are partnerships involving','the poor and the rich','employers and workers','government and private investor','multi-nationals and individual','','','c','','wassce','2004',102,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:10'),(486,'The value of money is best determined by','input-output ratio','the purchasing power','the importance people attach to it','economics of scale','','','b','','wassce','2004',84,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:11'),(487,'Which of the following will be an effect of inflation?','Wages earners will gain','Borrowing of money will be restricted','Money lenders will gain','Borrowers of money will gain','','','d','','wassce','2004',92,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:12'),(488,'Government can control inflation by','printing more money','reducing the rate of taxes','reducing the level of expenditure','establishing more banks','','','c','','wassce','2004',98,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:13'),(489,'The market consisting  of  a  network  of  dealers  where \tcurrencies can be bought and sold is known as','capital market','foreign exchange market','commodity market','the stock market','','','b','','wassce','2004',82,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:14'),(490,'Open Market Operation (OMO) means the','provision of credit facilities by commercial banks','provision of credit facilities by the mortgage banks','buying and selling of government securities by the central bank','procedure for the establishment of commercial banks','','','c','','wassce','2004',82,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:15'),(491,'Which of the following is an advantage of  localization of industry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2004',78,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:16'),(492,'Which of the following will ensure efficiency in the industrial sector of your country?','Indigenization','Privatization','Nationalization','Liquidation','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:47','2020-07-16 12:39:39'),(493,'The number of people who are qualified to work and who offer themselves for employment are called','migrant labour','working population','labour turnover','mobility of labour','','','b','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:18'),(494,'When the general price level persistently falls, the rate of  unemployment','rises','stagnates','rapidly reduces','equals natural growth rate','','','a','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:19'),(495,'Which of the following is not a direct effort to increase agricultural production?','Operation feed the nation','Use of improved seedlings','Increased loans to farmer and co-operative societies','National Youth Service Corps','','','d','','wassce','2004',89,'Admin','2016-11-12 23:04:47','2020-07-26 11:05:19'),(496,'To ensure high employment rates, developing countries should','build more universities','protect infant industries','organize trade fairs','prevent rural-urban drift','','','b','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-07-16 12:39:39'),(497,'The act of selling goods in foreign markets at prices below those charged at home markets is called','exchange','specialization','dumping','exporting','','','c','','wassce','2004',92,'Admin','2016-11-12 23:04:47','2020-07-22 10:44:46'),(498,'Taxes levied on commodities are','direct taxes','indirect taxes','poll taxes','investment taxes','','','b','','wassce','2004',91,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:22'),(499,'One disadvantage of direct taxes is that','government’s revenue is reduced','price of essential commodities fall','people are discouraged from additional work','firms make more profits','','','c','','wassce','2004',86,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:32'),(500,'International trade is an application of the principle of','industrial production','mass production','regional co-operation','comparative costs advantage','','','d','','wassce','2004',95,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:39'),(501,'Trade among West African countries is poor because the','countries are self-sufficient','communication links are weak','number of banks is insufficient','people are not enterprising','','','b','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:40'),(502,'A policy by which governments restrict the amount of \\n\tforeign currencies bought and sold is known as','devaluation','credit creation','exchange control','export promotion','','','c','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:41'),(503,'Which of the following items is under the capital account of a balance of payments','Repayments of foreign loans','Visible imports','Invisible exports','Cocoa export','','','a','','wassce','2004',97,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:42'),(504,'A surplus in the balance of payments should be used to','subsidize multi-national companies','build infrastructure for friendly nations','make donation to developed countries','buy investments overseas','','','d','','wassce','2004',98,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:43'),(505,'Development planning which takes an overall view of the economy is described as','Aggregate economic planning','Disaggregated economic planning','Sectorial economic planning','System economic planning','','','a','','wassce','2004',91,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:43'),(506,'The national income of a country can be estimated by the','cost-benefit method','distribution method','expenditure method','consumption method','','','c','','wassce','2004',88,'Admin','2016-11-12 23:04:51','2020-07-28 00:06:45'),(507,'Which of the following is excluded when estimating national income?','Dividends','Wages and salaries','Transfer payment','Profits','','','c','','wassce','2004',72,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:47'),(508,'The economic Community of West African States (ECOWAS) has been slow in achieving its objectives because of','political instability in member state','the activities of multi-national','inadequate personnel at the secretariat','inadequate international support','','','a','','wassce','2004',73,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:49'),(509,'A major achievement of  the  Organization  of  Petroleum Exporting Countries (OPEC) is that','crude oil price has increased tremendously','petroleum products prices have remained low','producing countries are highly industrialized','price of crude oil has remained relatively stable.','','','d','','wassce','2004',99,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:50'),(510,'Economic activities are undertaken to solve the problem of','consumption','opportunity cost','production','scarcity','','','b','','wassce','2005',86,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:51'),(511,'Farming, mining and fishing are','primary production','secondary production','tertiary production','intermediate production','','','a','','wassce','2005',97,'Admin','2016-11-12 23:29:58','2020-07-16 12:39:39'),(512,'A list of consumers’ wants arranged in order of priority is known as','a budget','an opportunity cost','a scale of preference','choice','','','c','','wassce','2005',98,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:53'),(513,'The 150.00 Naira which Olu would have used to purchase a textbook was used to buy a T-shirt. This implies that','Olu’s real cost is 150.00 Naira','Olu’s opportunity cost is the T-shirt','Olu’s opportunity cost is the textbook','Olu’s money cost is also the real cost.','','','c','','wassce','2005',82,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:54'),(514,'The remuneration of the entrepreneur as a factor of production is called','wages','salary','interest','profit','','','d','','wassce','2005',90,'Admin','2016-11-12 23:29:58','2020-07-26 11:05:19'),(515,'The production factor, whose entire world supply is fixed is','land','skilled labour','capital goods','entrepreneurship','','','a','','wassce','2005',74,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:56'),(516,'When all factor inputs are reduced by half, the production possibility curve will shift','outwards','inwards','downwards','upwards','','','b','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-07-26 11:05:19'),(517,'When a worker changes from one type of job to another, it is called','geographical mobility of labour','occupational mobility of labour','immobility of labour','rural-urban migration.','','','b','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:35:57'),(518,'Which of the following determines the sizes of a country’s population?    (l) Birth rate    (ll) Death rate     \\n\t(lll) Migration rate     (lV) lmportation rate    (V) Unemployment','l), (ll) and (V)','(ll) and (lV)','(I), (II) and (lll)','(I) and (V)','','','c','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-28 00:06:45'),(519,'Age distribution is important because it helps the \tgovernment to','check rural-urban drift','determine the number of foreigners','determine the number of factories','undertake effective planning','','','d','','wassce','2005',90,'Admin','2016-11-12 23:29:59','2020-07-16 12:39:39'),(520,'A group of firms producing similar commodities for the same market constitute','a cartel','an industry','a co-operative','wholesalers','','','b','','wassce','2005',88,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:00'),(521,'A factor that has slowed down the rate of industrial development in West Africa is','inadequate technology','increasing rate of manpower production','increased demand for local goods','intervention of the government in business activities.','','','a','','wassce','2005',71,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:01'),(522,'To achieve an equilibrium position, the consumer must buy so much of each commodity whose price is equal its','marginal utility','total utility','average utility','variable utility','','','a','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:02'),(523,'Price control refers to','the ways of making more goods available in the market','a policy of ensuring stable price in the market','a general reduction in the price level','effective working of the forces of demand and supply','','','b','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:03'),(524,'The desire for goods without the ability to pay is called','choice','effective demand','joint demand','wants','','','d','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:04'),(525,'Amount of goods offered to the market at respective prices and presented in a table is called','price schedule','supply schedule','scale of preference','demand schedule','','','b','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:05'),(526,'At the equilibrium price, quantity demanded is','greater than quantity supplied','equal to quantity supplied','less than quantity supplied','equal to excess supply','','','b','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:06'),(527,'lf the government fixed a price of a commodity above the equilibrium price, the quantity supplied will be','less than quantity demanded','equal to the quantity demanded','greater than quantity demanded','equal to zero','','','c','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-19 12:29:50'),(528,'One of the factors determining price elasticity of demand for a commodity is the','availability of close substitutes','number of producers','government policy','price of other commodities.','','','a','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:08'),(529,'lf elasticity of demand for a commodity is less than one, demand is','unitary elastic','inelastic','infinitely elastic','zero elastic','','','b','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:10'),(530,'The transfer of ownership of a public enterprise to  individuals and firms is called','commercialization','nationalization','privatization','restructuring','','','c','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:11'),(531,'One-man businesses are popular in West Africa because of all the following except the','ease of entry','small capital required','limited entrepreneurial skill needed','tendency to become joint-stock companies.','','','d','','wassce','2005',99,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:12'),(532,'Wholesalers are often criticized because they','help to break the bulk','finance producers','increase prices','provide after-scale services','','','c','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:13'),(533,'ln which of the following business units are the owners mostly the customers?','Co-operatives','Limited liability companies','Partnerships','Public corporations','','','a','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:14'),(534,'information about new goods is passed on to buyers through','advertising','retail trade','the manufacturer','wholesale trade','','','a','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:15'),(535,'The profit of the producer can be calculated as','total cost less total revenue','average revenue less average cost','total revenue less total cost','marginal revenue less marginal cost','','','c','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:16'),(536,'The direct exchange of one good for another without the use of money is known as','foreign exchange','exchange rate','expenditure','barter','','','d','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:37'),(537,'Acceptability, durability, homogeneity and portability are all \tattributes of good','markets','money','banks','government','','','b','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-25 13:09:58'),(538,'The term demand for money means','desire to borrow money from people','desire of an individual to invest all his money in  projects','willingness of people to hold money','willingness of people to keep all their resources in  assets.','','','c','','wassce','2005',81,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:39'),(539,'A persistent and appreciable rise in the general level of prices is known as','depreciation','inflation','deflation','production','','','b','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:40'),(540,'To a commercial bank, deposits are','liabilities','assets','capital','cash at hand','','','d','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:41'),(541,'The lender of last resort in the banking system is the','industrial bank','mortgage bank','commercial bank','central bank','','','d','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:42'),(542,'Discounting a bill of exchange means the bill is','cashed over the counter','sold on the stock exchange','bought for less than its face value','sold to the highest bidder','','','c','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:43'),(543,'The central bank controls credit in the economy through the use of','legal tender','travelers cheque','foreign exchange instruments','open market operations','','','d','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:44'),(544,'Among the principles of taxation propounded by Adam Smith was that','a tax should be impossible to evade','a tax should be convenient to pay','no tax should be levied on food','there should be no taxation without representation','','','b','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:45'),(545,'Mr. Bala’s income is $800.00 per month while that of Mr. Jatau is $1,200.00. lf Messrs Bala and Jatau pay $80.00 and $120.00 respectively as taxes, the tax system is','progressive','regressive','proportional','ad-valorem','','','c','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:46'),(546,'Government revenue from the groundnut industry is from','licenses','rents','royalties','taxes','','','d','','wassce','2005',103,'Admin','2016-11-12 23:29:59','2020-07-28 03:03:33'),(547,'The theory of comparative cost advantage is associated with','Alfred Marshal','Adam Smith','David Ricardo','J.B. Say','','','c','','wassce','2005',82,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:48'),(548,'When the value of a nation’s exports is greater than its imports','a favourable balance of trade exists','an unfavourable balance of payment exists','the net foreign trade is zero','inflation occurs','','','a','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:49'),(549,'To improve the balance of payments position of West African countries, there must be','removal of barriers to importation of goods and services','increased rate of exportation of goods and services','increased domestic consumption of foreign produced goods','the development of the local market.','','','b','','wassce','2005',92,'Admin','2016-11-12 23:29:59','2020-07-28 03:35:44'),(550,'The Economic Community of West African State (ECOWAS) is an example of','bilateral trade','economic integration','regional marketing board','international competition','','','b','','wassce','2005',95,'Admin','2016-11-12 23:30:00','2020-07-28 03:45:03'),(551,'One reason for the low agricultural production in West African countries is that','agriculture employs the highest percentage of the labour force','too much money is invested in agriculture','farmers lack the finance and technology required','the farms are too large','','','c','','wassce','2005',97,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:51'),(552,'Mono-product economies are those that','produce one main commodity','produce only raw materials','depend on the export of their raw materials','specialize in agricultural industries','','','a','','wassce','2005',89,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:52'),(553,'.\\n\\n\tAn essential characteristics of a market economy is','government control','producer surplus','consumer surplus','consumer sovereignty','','','d','','wassce','2005',98,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:53'),(554,'ln a capitalist system, goods are produced for those who','want them most but cannot pay for them','can pay for them but do not want them','want them and can also pay for them','are dependent on the labour force','','','c','','wassce','2005',73,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:54'),(555,'An economy which exhibits features of both private and State enterprises is known as a','capitalist economy','mixed economy','communist economy','socialist economy','','','b','','wassce','2005',78,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:55'),(556,'ln calculating the national income of a country x, the cost of both raw materials and the finished products \t\twere included. This is a case of','double counting','price fluctuations','price differentiation','price discrimination','','','a','','wassce','2005',93,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:56'),(557,'Economic development is defined as','outward shift of the production possibility curve','availability of more goods and services','growth accompanied by qualitative change in living standards.','growth in the national income','','','c','','wassce','2005',82,'Admin','2016-11-12 23:30:00','2020-07-14 14:36:57'),(558,'Which of the following is not an objective of the \\n\tOrganization of Petroleum Exporting Countries (OPEC)?','Stabilization of oil prices','Co-ordinating oil prices','Harmonizing oil prices','Stagnation of developed economies.','','','d','','wassce','2005',128,'Admin','2016-11-12 23:30:00','2020-07-27 14:37:14'),(559,'The study of Economics enables individuals to','change jobs.','evade taxes.','accumulate huge wealth','make national decision','','','d','','wassce','2006',81,'Admin','2016-11-12 23:59:28','2020-07-14 14:36:59'),(560,'Most of the problems of economies arise as a result of','demands for scarce resource','increase in  the demand for more goods and services.','the desire of producers to supply more goods and services.','the need to reduce the level of poverty.','','','a','','wassce','2006',87,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:05'),(561,'Which of the following tools of economic analysis is used when data contains more than one category?','Bars charts','Component bar charts','Graphs','Symbolical statement','','','b','','wassce','2006',85,'Admin','2016-11-12 23:59:29','2020-07-28 03:45:03'),(562,'The reward of capital as a factor of production is','rent','wage','interest','commission.','','','c','','wassce','2006',97,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:07'),(563,'Mining is an example of','tertiary production','primary production','secondary production','advanced production','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:29','2020-07-15 09:09:54'),(564,'An owner-manager of a firm can also be called','shareholder','an entrepreneur','an employer','a chairman','','','b','','wassce','2006',97,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:09'),(565,'If the fixed cost of a firm is 800 Naira and its variable cost is \t2,700 Naira while its total output is 100 units, what is the average cost of the firm?','25 Naira','35 Naira','45 Naira','50 Naira','','','b','','wassce','2006',75,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:10'),(566,'Distribution of good and services is hindered by','good road network','efficient storage facilities','too many middlemen.','Adequate market information.','','','c','','wassce','2006',67,'Admin','2016-11-12 23:59:29','2020-07-26 11:05:19'),(567,'A movement along the same demand curve either upwards \tor downwards as a result of changes in price implies','a change in demand','a change in quantity demanded.','an increase in demand','a shift in the demand curve to the right.','','','b','','wassce','2006',86,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:12'),(568,'Middlemen in an economy perform the function of','distribution','exchange','hoarding.','protection.','','','a','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:13'),(569,'One of the factors affecting geographical distribution of population is','high birth rate','high death rate','encouragement of early marriage in the rural areas','climatic conditions of  the different parts of the country','','','d','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:14'),(570,'Standardization of products or services is a feature of','large firms','retailers','small firms','wholesalers.','','','a','','wassce','2006',72,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:15'),(571,'The amount of satisfaction obtained from the consumption of a commodity at a particular time is called','marginal utility','diminishing utility','total utility','average utility','','','c','','wassce','2006',78,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:16'),(572,'What are inferior goods? These are goods','that are generally in short supply.','that are no longer in demand','whose demand falls as income increases','whose price falls as demand increases','','','c','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:17'),(573,'In the analysis of utility theory, the basis of demand is','marginal utility','average utility','fixed utility','diminishing utility','','','a','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:18'),(574,'In the normal market situation, when the price of a commodity rises, the','demand for the commodity will rise','demand for the commodity will fall','supply of the commodity will be constant','Supply of the commodity will fall.','','','b','','wassce','2006',89,'Admin','2016-11-12 23:59:30','2020-07-25 13:24:16'),(575,'When the quantity of a commodity supplied increases and the quantity demanded decreases there will be','a rise in price','no change in price','price fluctuation','a fall in price.','','','d','','wassce','2006',93,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:20'),(576,'The market price of a commodity is normally determined by the','law of demand','interaction of the forces of demand and supply.','total number of people in the market','total quantity of the commodity in the market.','','','b','','wassce','2006',74,'Admin','2016-11-12 23:59:30','2020-07-16 12:39:39'),(577,'The mechanism which allows the price of a commodity to be fixed either above or below the equilibrium is known as','monopolistic competition','price discrimination','perfect competitive market','price control','','','d','','wassce','2006',79,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:22'),(578,'A debenture holder is entitled to payments in the form of','allowance','interest','salary','donation','','','b','','wassce','2006',81,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:23'),(579,'The main difference between a private and a public \\n\tenterprise is the','amount of profit realized','mode of operation','objective of the business','ownership structure','','','d','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:24'),(580,'The total amount of money raised by a company through insurance of shares to the public is','debentures','nominal capital','ordinary shares','paid-up capital','','','b','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:24'),(581,'Buying and selling of shares is a function performed mostly \tby the','insurance companies','stock exchange','merchant banks','discount houses','','','b','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:25'),(582,'Which of the following is not reason for establishing public \tenterprises?','Discouraging investors','Opening up neglected parts of the country','Effective control of a natural monopoly','Rapid economic development','','','a','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:26'),(583,'For a monopolist, the average revenue (AR) curve is  above','the total cost curve','the same as the marginal cost curve','above the marginal revenue curve','the same at that of the perfect competitor.','','','c','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-07-21 11:05:36'),(584,'Advertising expenses would not be necessary under perfect competition because','consumers would have complete knowledge of goods','cost of production would be at the maximum level','.  \\n\tevery firm  would enjoy the benefits of large scale production','incomes of the consumers in the community would be high.','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:28'),(585,'The equilibrium level of output of a monopolist is determined at a point where','marginal cost equal average  revenue','marginal cost equals average cost','marginal cost equals marginal  revenue','marginal  revenue equals average cost','','','c','','wassce','2006',89,'Admin','2016-11-12 23:59:30','2020-07-16 12:39:39'),(586,'.\\n\\nWhich of the following is a legal tender in West Africa?','Treasury bill','Share','Credit card','Currency','','','d','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:30'),(587,'The policy of government to increase the supply of money to meet its own expenditure plans is likely to be','speculative','deflationary','inflationary','contractionary','','','c','','wassce','2006',104,'Admin','2016-11-12 23:59:30','2020-07-19 12:29:50'),(588,'The tendency for prices to rise while the value of money falls is known as','bills of exchange','inflation','depreciation','deflation.','','','b','','wassce','2006',101,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:32'),(589,'One way to solve the economic problem of inflation in a country is by increasing the','supply of commodities','supply of currency','salaries of workers','demand for commodities.','','','a','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:33'),(590,'The motive for holding money for investing in securities is \treferred to as','transactionary','speculative','accumulation','deflationary','','','b','','wassce','2006',79,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:34'),(591,'A cheque book is issued to customers of a bank operating a','savings account','time deposit account','current account','fixed deposit account','','','c','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:35'),(592,'Amount proposed for payments of wages and salaries in a budget is regarded as part of','recurrent expenditure','direct investment','recurrent revenue','capital receipt','','','a','','wassce','2006',76,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:36'),(593,'The difference between the Gross National Product (GNP) and the Gross Domestic Product(GDP) is','total interest payment','net income generated internally','total national savings','net income from abroad.','','','d','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:37'),(594,'Which of the following agricultural systems is mainly for the','cultivation of food crops for family consumption?','Co-operative farming','Commercial farming','Subsistence farming','','','c','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:38'),(595,'Agriculture is important to the economy of West African countries because it is the source of','power','equipment supply','industrial  input','technological progress','','','c','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:38'),(596,'The economic system in which the state takes the','economic decisions through details planning is','capitalism','socialism','traditional economic system','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:39'),(597,'A mixed economy combines the characteristics of both','planned  and capitalist economics','exchange subsistence economies','subsistence and planned economies','capitalist and exchange economics','','','a','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-07-19 12:29:50'),(598,'In a rapidly growing economy, a change in technology which is labour saving is likely to cause','residual unemployment','structure unemployment','disguised unemployment','frictional unemployment','','','d','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:41'),(599,'Which of the following is a form of tax evasion?','Wrong declaration of earnings','Payments of flat rate tax','constant employment','Low capacity utilization','','','a','','wassce','2006',69,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:42'),(600,'Where the burden of a tax finally rest is called','tax object','tax rate','incidence of taxation','system of taxation.','','','c','','wassce','2006',77,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:43'),(601,'An increase in the quantity of goods and services produced \tin a country which raises her national income is known as','economic development','economic growth','domestic investment','productivity.','','','b','','wassce','2006',80,'Admin','2016-11-12 23:59:31','2020-07-16 12:39:39'),(602,'The formula “index of export prices” / “Index of import prices”   x 100   is used to measure the','volume of trade between countries','direction of international trade','commodity terms of trade','volume of imports','','','a','','wassce','2006',101,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:45'),(603,'Which of the following is an invisible item?','Banking services','Petroleum products','Processed rice','Processed milk','','','a','','wassce','2006',90,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:46'),(604,'In an attempt to correct a deficit balance of payments, a country may decide to increase','domestic production','imports','domestic expenditure','tax on infant industries.','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:47'),(605,'Which of the following is an objective of economic integration?','Harmonization of cultural practices','Free movement of persons, goods and services','Payment of high tariffs','Dumping of goods in less developed countries','','','b','','wassce','2006',96,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:48'),(606,'One of the functions of the International Monetary Fund (IMF) is to','devalue the currency of member states','reduce drastically the size of deficit financing of member states','give financial assistance to member states that have temporary balance of payment difficulties','the rapid industrialization process in the less developed nations of the world','','','c','','wassce','2006',76,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:49'),(607,'The full meaning of OPEC is','Oil and Petroleum Exporting Countries','Original Petroleum Exporting Companies','Organization of Petrol Exporting Countries','Organization of Petroleum Exporting Countries','','','d','','wassce','2006',73,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:50'),(608,'The three principal economic units in any system are','trade, industry and banking','workers, consumers and shareholder','households, firms and government','companies, industry and plants','','','c','','wassce','2007',107,'Admin','2016-11-13 15:46:54','2020-07-21 11:31:45'),(609,'The satisfaction derived from the use of a commodity is its','demand','elasticity','wealth','utility','','','d','','wassce','2007',85,'Admin','2016-11-13 15:46:55','2020-07-26 11:05:19'),(610,'The reward which accrues to labour for participating in production is','interest','wage','bonus','profit','','','b','','wassce','2007',86,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:53'),(611,'The Malthusian theory of population does not concern itself with','growth of food production in arithmetical progression','growth of population in geometric progression','positive checks to population growth','development and growth of manpower','','','d','','wassce','2007',86,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:54'),(612,'One characteristic of labour is that it is','fixed in demand','fixed in supply','mobile','untrainable','','','c','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:55'),(613,'A country where labour is not sufficient to make proper use of the natural resources is said to have an','active population','optimum population','over-population','under-population','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:56'),(614,'When population is classified according to professions, it is called','geographical distribution of population','age distribution of population','sex distribution of population','occupational distribution of population','','','d','','wassce','2007',90,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:57'),(615,'What must be added to variable cost to give total cost?','Average total cost','Average variable cost','Fixed cost','Marginal cost','','','c','','wassce','2007',79,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:58'),(616,'Revenue is the','total profit made after sales','amount spent on purchases','amount of goods produced','total money realized from sales.','','','d','','wassce','2007',91,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:04'),(617,'Given that TR is total revenue, then TRn - TR(n-1) can be used to find the','marginal revenue','marginal cost','average cost','average revenue','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:10'),(618,'The lower the price of a commodity, the greater the quantity demanded. This is based on the assumption that consumers’','income is diminished','income remains the same','utility is diminished','population is high','','','b','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:11'),(619,'The demand for beans in bags is given by the function Q - 36 + 0.4P = 0. Where P is price in Naira and Q is quantity, find Q when P = 20 Naira.','12 bags','24 bags','28 bags','30 bags','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:12'),(620,'If the price of good X rises and the quantity demanded of good Y increases then the two goods X and Y must be','inferior good','substitutes','complements','free goods','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:13'),(621,'Use the following  demand schedule to answer question Price (N=) [15, 13]\tQuantity Demanded[60, 70] The percentage change in quantity demanded is','12.7%','15.7%','16.7%','19.7%','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:14'),(622,'In a situation where demand is perfectly elastic, imposition of a tax on a commodity to raise its price will result in','consumers increasing their demand for the product','consumers demand for the product remaining unchanged','consumers shifting completely to substitute products','suppliers increases the supply of the product','','','c','','wassce','2007',93,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:15'),(623,'Patents are examples of','natural barriers to entry','legal barriers to entry','illegal barriers to entry','unnatural barriers to entry','','','b','','wassce','2007',69,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:16'),(624,'Which of the following is a characteristic of monopoly?','Many sellers','Homogeneous commodity.','A single seller','Perfect knowledge','','','c','','wassce','2007',92,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:17'),(625,'When a firm is nationalized','former owners are removed without compensation','it has the right to draw on state funds for capital investment','it must break even within a specified period','workers take control of the firm','','','b','','wassce','2007',66,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:18'),(626,'The practice whereby a business is owned by two or more independent firms is termed','indigenization','joint venture','commercialization','foreign investment','','','b','','wassce','2007',83,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:19'),(627,'The main objective of privatizing a government business is to','create additional employment','increase expenditure','source for new funds','increase the level of efficiency','','','d','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:20'),(628,'The return on investment that is just sufficient to satisfy the owner of a business is called','economic profit','business profit','normal profit','excess profit','','','c','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:21'),(629,'Which of the following is a middlemen in the chain of distribution?','An entrepreneur','A producer','A banker','A retailer','','','d','','wassce','2007',79,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:22'),(630,'A negative effect of the presence of a large number of middlemen in the distributive network is','greater variety of goods','greater quality of goods','lower price of goods','higher price of goods','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(631,'An example of a producer good is a','tin of milk','hammer','loaf of bread','shirt','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(632,'To promote the development of the agricultural sector, governments of West African countries should','encourage rural-urban drift','discourage foreign investment in agriculture','support the marketing of farm produce','reduces tariff on food import','','','c','','wassce','2007',87,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:24'),(633,'The most important quality of money is that it must be','relatively scarce','generally acceptable','portable','durable','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:25'),(634,'A certain amount of money is needed for everyday expenditure like buying of goods, transportation and others. This is','transaction demand for money','precautionary demand for money','derived demand for money','speculative demand for money','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:27'),(635,'Long-term loans can be secured from','commercial banks','discount houses','development banks','acceptance houses','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:29'),(636,'The value of money is generally measured in relation to the','interest rate charged on bank loan','general price level','size of a country’s gold stock','volume of imports','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:30'),(637,'Which of the following is true under rapid inflation? People','demand less foreign exchange','set up businesses','to pay their taxes','hardly want to lend money','','','d','','wassce','2007',79,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:31'),(638,'Which of the following financial institutions was originally known as a Building Society?','Development bank','Insurance company','Mortgage bank','Merchant bank','','','c','','wassce','2007',88,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:32'),(639,'A non-bank financial intermediary which is regarded as a pool of risks is the','cooperative society','stock exchange','insurance company','post office','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:33'),(640,'A foreign exchange market deals in','treasury bills','currencies','government bonds','commodities','','','b','','wassce','2007',80,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:34'),(641,'Which of the following institutions assists the government in managing the national debt?','Commercial Banks','The Central Bank','The Capital Market','The World Bank','','','b','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:35'),(642,'If tax takes a larger proportion of the income of people with \tlower income, the tax is','progressive','proportional','regressive','ad-valorem','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:36'),(643,'Which of Ike following is an example of direct tax?','Import duties','Income tax','Export duties','Purchase tax','','','b','','wassce','2007',61,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:38'),(644,'Monetary control measures are coordinated by','development banks','merchant banks','commercial banks','the Central banks','','','d','','wassce','2007',115,'Admin','2016-11-13 15:46:57','2020-07-24 08:55:10'),(645,'A country whose economy is buoyant is likely to have','a weak currency','devaluation from time to time','a strong currency','balance of payment problem','','','c','','wassce','2007',63,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:41'),(646,'The Net National Product (NNP) is Gross National Product (GNP) less','domestic product','foreign product','depreciation','investment','','','c','','wassce','2007',73,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:42'),(647,'If the population of a country is low and the Gross National Product is high, the per capita income will be','high','low','average','unitary','','','a','','wassce','2007',96,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:44'),(648,'The population of a country in a certain year was fifty million and the per capita income was $2050. What was the national income?','$ 750,000 million','$100,250 million','$ 102,500 million','125,050 million','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-07-28 03:45:03'),(649,'One of the advantages of capitalism is that','consumers are exploited','private initiative is discouraged','efficient allocation of resources is assured','job security is assured','','','c','','wassce','2007',74,'Admin','2016-11-13 15:46:57','2020-07-22 10:11:38'),(650,'Which of the following contributes the highest amount of foreign exchange to the economy of West African nations?','Construction, manufacturing and banking','Shipping, trading and fishing','Power, telecommunications and sports','Extraction, farming and tourism','','','d','','wassce','2007',93,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:54'),(651,'International trade depends on the concept of','marginal cost advantage','comparative cost disadvantage','Comparative cost advantage','absolute cost','','','c','','wassce','2007',86,'Admin','2016-11-13 15:46:57','2020-07-14 02:26:11'),(652,'One advantage of international trade is that','countries depend on each other','it introduces variation in prices','it increases demand for foreign goods','it makes variety of goods available','','','d','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 02:25:01'),(653,'The practice of selling goods overseas and often below the cost of production is known as','retailing','dumping','internal trade','advertising','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:57','2020-07-14 02:23:51'),(654,'A summary of all the receipts and payments of a country in \tinternational transactions is called','terms of trade','balance of payment','balance of payment adjustment','capital account','','','b','','wassce','2007',77,'Admin','2016-11-13 15:46:57','2020-07-14 02:20:28'),(655,'4Which of the following countries export cocoa?','Liberia and The Gambia','Ghana and Sierra Leone','Nigeria and Ghana','Sierra Leone and Nigeria','','','c','','wassce','2007',78,'Admin','2016-11-13 15:46:57','2020-07-14 02:27:23'),(656,'Which of the following are examples of transfer payments?','Gifts and donations','Rents and rates','Profits and dividends','Internal and external debts','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 02:25:01'),(657,'ECA means','Economic Commission for Africa','Economic Community of Africa','Exporting Countries of Africa','Economic Conference on Africa','','','a','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-07-14 02:12:40');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `english` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=597 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `english` VALUES (1,' He put…………..  eggs in a basket.','white dozen eggs ','a dozen white eggs  ',' a white dozen eggs ','dozen white','most appropriate option','','b','','utme','2003',3805,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:05'),(2,'The reason why he was not offered admission was …………… his results could not be found.','that   ','when  ','owing to ','because ','most appropriate option','','a','','utme','2003',3643,'Admin','0000-00-00 00:00:00','2020-07-23 11:29:48'),(3,'Course………….  writers are to reflect local colour',' material\\'s ','materials\\'','materials ','material ','most appropriate option','','b','','utme','2003',3832,'Admin','0000-00-00 00:00:00','2020-07-23 11:12:10'),(4,'If you saw the photograph of the man……………………you be able to identify him?','could','would   ','can ','will ','most appropriate option','','b','','utme','2003',3862,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(5,'As Obande does not know anyone in this city, he hopes that some kind …………  will put him up for the night','man','men ','inhabitants ','individuals','most appropriate option','','a','','utme','2003',3765,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(6,' The doctor asked the patient what………….','The problem is   ',' Is your problem ','The problem was. ',' Is the problem','most appropriate option','','c','','utme','2003',3691,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:13'),(7,'The woman is one? of the …………. of the society.','elitist  ',' elites ','ellte','elitists ','most appropriate option','','c','','utme','2003',3768,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:47'),(8,'Three quarters of the people in the village  killed but only half of then \\n          huts……. affected  \\n','were/ were ','was/was','were/ was','was/were ','most appropriate option','','c','','utme','2003',3735,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(9,'The armed robbers went into the house and robbed the three','woman occupants','women\\'s occupants ','woman\\'s occupants','   women occupants.','most appropriate option','','a','','utme','2003',3883,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:23'),(10,' It was a free-for-all and the students were blamed for taking the law','in their own hands ','into their own hands ','into their hands ','in their hands.','most appropriate option','','b','','utme','2003',3752,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:45'),(11,'The candidate\\'s charisma should be a..………factor in winning the election. ','determinant ','determinate','determining ','determinable ','most appropriate option','','c','','utme','2003',3786,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(12,'I can\\'t stand people prying into my private life. \\'Ladi said \\'………… agree Agbenu','Me too ','Likewise myself ','Me neither ','I also ','most appropriate option','','b','','utme','2003',3730,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:20'),(13,' Four weeks ..................  enough for the police to  conclude   their','were',' is ',' are ',' has been','most appropriate option','','b','','utme','2003',3705,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:37'),(14,'  It is bad to take………… property without permission. ','someone else\\'s ','someone’s else',' someone\\'s ','someone\\'s else\\'s\\' ','most appropriate option','','b','','utme','2003',3654,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(15,'Classmate……………………….  I haven\\'t seen for years, wrote to me last week.','whose ','which ','that',' whom','most appropriate option','','d','','utme','2003',3745,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(16,'If you would do me this favour,  I …………..  be very grateful','should',' would ',' shall ','will','most appropriate option','','b','','utme','2003',3710,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(17,'Ali plays ……….violin with remarkable skill','a    ','the','their ','some ','most appropriate option','','b','','utme','2003',3744,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:52'),(18,'1 have the ……… of meeting the President.','privilege  ','privelege ','previlege ','privilege ','most appropriate option','','d','','utme','2003',3714,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(19,'The sergeant spoke to me in a ……………  manner','Coarse','causal     ','coerce    ','course ','most appropriate option','','a','','utme','2003',3754,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:45'),(20,'Idakwo ran……………. miss the train','lest he may',' lest ha should','lest he almost   ','lest he will ','most appropriate option','','b','','utme','2003',3836,'Admin','0000-00-00 00:00:00','2020-07-23 11:49:41'),(21,'How is the new editor ……………on with hit work','moving','getting','pushing ','going','most appropriate option','','b','','utme','2003',3684,'Admin','0000-00-00 00:00:00','2020-07-22 22:19:05'),(22,'  Be careful not to…………….  this money ','loose  ',' loss ',' lost',' loss','most appropriate option','','b','','utme','2003',3742,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(23,'Nowadays, many graduates are not Will disposed to teaching……………..','are they','aren\\'t they?','do they?    ',' they are?','most appropriate option','','a','','utme','2003',3604,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:24'),(24,'Adike ………….. a message from the club regularly.','Receive ',' had received ',' receive',' has received ','most appropriate option','','a','','utme','2003',3711,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:36'),(25,'It is often……. that inflation ……….  from too much money chasing very few goods.    ','said/results','say/result      ','said/result   ','say/ resulted','most appropriate option','','a','','utme','2003',3701,'Admin','0000-00-00 00:00:00','2020-07-23 12:26:14'),(26,'','spot    ','Law   ','North ','naught ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3705,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:36'),(27,'','cost    ','won’t    ','hope    ','coast ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3829,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(28,'','there   ','dear    ','fair         ','bear','choose the option that has a different vowel sound from the others.','','c','','utme','2003',3816,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(29,'','wife','of','off','laugh','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3807,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(30,'','chef','chief','shoe','ocean','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3831,'Admin','0000-00-00 00:00:00','2020-07-23 11:20:19'),(31,'If he went to London, he would see the Queen','He did not go to London and did not see the Queen',' He would like to see the Queen when he goes to London','When he goes to London, he will see the Queen ','He did not see the queen when he went to London.','that best explains the information conveyed ','','c','','utme','2003',3671,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:14'),(32,'Ngozi has always considered her father to be an impassioned man ','Her father is a very strict man  ','Her father is a very lively man ','Her father is an emotional man ','Her father is a disciplined man ','that best explains the information conveyed ','','c','','utme','2003',3769,'Admin','0000-00-00 00:00:00','2020-07-26 16:38:14'),(33,'The manager paid us in hard currency  ','We were paid in a strong and stable currency ','We were paid in new notes ','We were paid in new notes','We were paid in foreign currency.','that best explains the information conveyed ','','a','','utme','2003',3773,'Admin','0000-00-00 00:00:00','2020-07-23 11:29:48'),(34,'The elders rebuked ','Olu for talking issue with his principal. ','Olu was scolded for acting in collusion with his principal ','Olu was reprimanded for arguing with his principal','Olu was blamed for issuing a statement denying his principal.','that best explains the information conveyed ','','b','','utme','2003',3926,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:35'),(35,'In spite of his humble beginning, Audu now throws his weight around ','His noble birth notwithstanding, Audu is a corrupt man ','From his poor background, Audu is now a rich man ','Despite his obvious poverty, Audu is a proud man ','Audu is arrogant despite his simple upbringing .','that best explains the information conveyed ','','d','','utme','2003',3718,'Admin','0000-00-00 00:00:00','2020-07-14 14:39:35'),(36,' <u>Ch</u>alet','chairman','College','champagne','Chemical','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.  ','','c','','utme','2003',3750,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(37,'Tee<u>th</u>','taught','tank','though','thought',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2003',3776,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(38,'Co<u>n</u>crete ','anxious ','concern ',' consider ','attend ',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3750,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:23'),(39,'He is well known for his <i>inordinate</i> ambition ','passionate ','sound ','excessive','moderate ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3731,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:14'),(40,'A <i>conservative</i> estimate put the number of missing persons at forty.','an accurate ','An incorrect ','A rough ','Primitive ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3818,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:40'),(41,'Agbenu was <i>ecstatic</i> about her result ','sad','dispassionate ','mad ','pessimistic ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3770,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(42,'Students could be <i>timid</i>','Pugnacious ','friendly ','bold ','covetous','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3847,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(43,'The labour leader’s <i>recalcitrant</i> stance was applauded ','flexible ','uncompromising ','well-informed ','stubborn ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3816,'Admin','0000-00-00 00:00:00','2020-07-23 11:47:17'),(44,'The company has continued to <i>monopolize</i> the distribution of the products.','regularize ','liberalize ','centralize ','specialize ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3742,'Admin','0000-00-00 00:00:00','2020-07-23 11:12:10'),(45,'The doctor examined the patient <i>painstakingly</i> ','Carefully ','Perfunctorily ','Professionally ','Painfully ','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3701,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:31'),(46,'Toyin is married to an <i>impatient, self-centred man ','a tolerant ','a tolerable','a fretful ','an edgy','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3773,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(47,'The agency has sworn to deal  with all the <i>apostles</i>  of confederation ','opponents ','apostates ','Proponents ','Protagonists ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3714,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:45'),(48,'The members of the congregation were <i>inspired</i> by the sermon ','enthralled ','disenchanted ','disoriented ','bewitched ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3789,'Admin','0000-00-00 00:00:00','2020-07-23 11:25:43'),(49,'<i>Gregarious</i> animals can be found in the zoo.','lonely ','tame ','wild ','various ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3875,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:40'),(50,'I am <i>loath</i> to do the assignment ','unwilling ','waiting ','dying ','willing ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3774,'Admin','0000-00-00 00:00:00','2020-07-23 11:47:16'),(51,'Only those who are <i>gullible</i> fall victim to his trickery ','astute ','Courteous ','saucy ','devastated','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3812,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(52,'A cool bath in a hot weather can be truly <i>invigorating</i> ','debilitating ','devastating ','disgusting ','unpalatable','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3689,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:05'),(53,'The witness decided to <i>conceal</i> the evidence ','waive ','divulge ','hide','destroy ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3720,'Admin','0000-00-00 00:00:00','2020-07-22 22:09:03'),(54,'The President SPOKE to the press ','Did the Present write to the press?','Did the president speak to the press?','Who spoke to the press?','Are these the pressmen that the President spoke to?','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','a','','utme','2003',3657,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(55,'My MOTHER served rice and fresh fish stew for dinner.','Did your mother serve rice and fresh fish stew for lunch?','Who served rice and fresh fish stew for dinner?','What kind of meal did your mother serve for dinner?','what kind of meal did your mother serve for dinner? ','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','b','','utme','2003',3801,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(56,'Mark<u>e</u>t  ','mortgage ',' bachelor ',' get ',' enter ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3691,'Admin','0000-00-00 00:00:00','2020-07-22 22:14:14'),(57,'c<u>olo</u>nel ',' golden',' girl',' colony ',' goal ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3800,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:34'),(58,'t<u>e</u>nd ','caned ',' jeopardy ','turned ',' earned ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3782,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(59,'The boys knew that a storm was <i>imminent</i>','Impending ','encroaching ','possible ','threatening ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3728,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:21'),(60,'The leader has the <i>unstinting</i> support of his party ','cautious ','uninspiring ','unsparing ','laudable ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3691,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(61,'The <i>essence</i> of governance is to seek the good and well-being of the majority of the people ','characteristics ','importance ','Secret ','Goal','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3657,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:36'),(62,'The carpenter built a <i>commodious</i> wardrobe ','wide ','gigantic ','small ','spacious','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3698,'Admin','0000-00-00 00:00:00','2020-07-25 10:03:03'),(63,'The company is to <i>shed</i> three thousand staff this year ','Throw up ','placate ','lay off','demote ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3815,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:20'),(64,'A few years ago, nobody would have believed that the economy would <i>turn around </i>','change ','deteriorate ','improve ','stagnate ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3776,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(65,'The man’s story sounded <i>plausible</i> to his audience ','credible ','entertaining ','fantastic ','credulous ','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3881,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(66,'Before announcing his retirement, Ochima resolved to <i>settle an account with</i> the bank.','get  back at ','pay back all he owes ','close his account with ','retire his loans from ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3752,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(67,'He shared his room with a person whose behaviour was quite <i>nauseating</i> ','disgusting ','disrespectful ','disagraceful ','discouraging ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3806,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(68,'From what she said, one may <i>infer</i> that she does not like the course','agree ','deduce ','suppose ','realize ','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3780,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(69,'The party supporters <i>vilified</i> the Chairman for the role he played in the crisis that rocked the party ','impeached ','condemned ','challenged ','elected','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3672,'Admin','0000-00-00 00:00:00','2020-07-23 11:15:20'),(70,'Publishing as a business venture has become a <i>hot potato</i> in Nigeria. ','unacceptable  ','unpleasant ','expensive                                                              ','profitable','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3688,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(71,'The <i>cynics</i>  feared that the nation’s nascent democracy would fail','illusionists','pessimists','delinquents','critics','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3680,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(72,'The nurse was in favour of <i>voluntary eutheanasia</i>','a sleeping pill','a major operation','a painless death','a simple operation','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3767,'Admin','0000-00-00 00:00:00','2020-07-23 11:49:41'),(73,'There was a <i>glut</i> of oil on the market','an abundance of','an increase in','a variety of','an accumulation of','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3737,'Admin','0000-00-00 00:00:00','2020-07-23 11:12:10'),(74,'Typist','refuse  (noun)','superb','propose','rebel (verb)','choose the option that has the same stress pattern as the given word.','','a','','utme','2003',3719,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(75,'Cement','perfect (adjective)','include','interest','employ(noun)','choose the option that has the same stress pattern as the given word.','','b','','utme','2003',3663,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:34'),(76,'I shall find time for my ……… when I get …… with this difficult assignment.','Pat time /over','pass-time/over','pastime/through','pastime/through','choose the option that best completes the gap(s).','','d','','utme','2004',3706,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(77,'Agbo says he is not afraid of ………','anybody','nothing','nobody','no one','choose the option that best completes the gap(s).','','a','','utme','2004',3627,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(78,'It is …….. responsibility to look after their parents in old age.','theirs’','their','theirs','their’s','choose the option that best completes the gap(s).','','b','','utme','2004',3859,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(79,'One needs to exemplify or ………. the aspect of the subject being discussed','supply','declare','satisfy','demonstrate','choose the option that best completes the gap(s).','','d','','utme','2004',3893,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:29'),(80,'……………his illness, Muhammad could not come to school.','with reference to','referring to','owing to','due to .','choose the option that best completes the gap(s).','','d','','utme','2004',3847,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(81,'After so many trials, the experiment………….','paid up','paid for','paid out','paid off','choose the option that best completes the gap(s).','','d','','utme','2004',3821,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(82,'People dislike Mariam because she is ……………','trickful',' trickish','trickly','tricker','choose the option that best completes the gap(s).','','c','','utme','2004',3792,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(83,'The reporter said that the Honourable speaker………….. impeached ','is to be','might have been','may have being','will have been','choose the option that best completes the gap(s).','','b','','utme','2004',3760,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(84,'Actually, he forgot the one to …………… the job was given.','whom','who','whomever','whoever','choose the option that best completes the gap(s).','','a','','utme','2004',3675,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(85,'You may not have heard the last word on the matter……..','may you have','haven’t you','have you','mayn’t have you?','choose the option that best completes the gap(s).','','c','','utme','2004',3693,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(86,'All God’s prophets were given the great……….to preach salvation to people.','commission','commition','commission','commission','choose the option that best completes the gap(s).','','d','','utme','2004',3849,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(87,'Ali goes to the stadium regularly, but he …………… to the church for months.','hasn’t been','haven’t been','didn’t go','hadn’t been','choose the option that best completes the gap(s).','','a','','utme','2004',3817,'Admin','0000-00-00 00:00:00','2020-07-14 14:40:50'),(88,'Each of the houses…………',' have got',' Have','has','were given a new look.','choose the option that best completes the gap(s).','','c','','utme','2004',3801,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(89,'The minister addressed the workers to boost their…………',' Morale','morality',' mural',' moral','choose the option that best completes the gap(s).','','a','','utme','2004',3622,'Admin','0000-00-00 00:00:00','2020-07-23 08:31:53'),(90,'I don’t coming home, is he?......... he is isn’t.','Yes','No','won','now','choose the option that best completes the gap(s).','','b','','utme','2004',3778,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(91,'………..as a federal capital only……….. the last twenty years.','has existed/for','existed/over','was existing/from','is existing/in','choose the option that best completes the gap(s).','','a','','utme','2004',3704,'Admin','0000-00-00 00:00:00','2020-07-22 22:15:36'),(92,'No teacher of honour would subject his student to any form of ……..','harassment','Harassment','harassment','harassment','choose the option that best completes the gap(s).','','b','','utme','2004',3711,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(93,'Each producer  is able to place a price on his product by considering its…………','worth','choice','judgement','assessment','choose the option that best completes the gap(s).','','a','','utme','2004',3750,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(94,'The police claim that a number of stolen cars…………. recovered.','has being','is being','has been','have been','choose the option that best completes the gap(s).','','c','','utme','2004',3749,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:21'),(95,'The storm………….. Havoc on several buildings in the village.','wreaked','wrecked','made','did','choose the option that best completes the gap(s).','','a','','utme','2004',3710,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(96,'The chairman refused to shake…………. with the secretary','hand','his hand','hands','his hands','choose the option that best completes the gap(s).','','c','','utme','2004',3757,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(97,'The poor widow who could not buy the clothes was seen…….her wool into……….yesterday','to spin/yards','spinning/yarn','making/tailoring','to spill/clothes','choose the option that best completes the gap(s).','','b','','utme','2004',3707,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(98,'He not only looked after the children when their parents died, ………..sponsored their education to university.','but also','also he','but he','also','choose the option that best completes the gap(s).','','a','','utme','2004',3789,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(99,'His supporters railed round him in moments of …………..','criticism','Crisis','acrimony','disillusionment.','choose the option that best completes the gap(s).','','b','','utme','2004',3813,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(100,'The interpreter was wrong because he gave the congregation a ………… translation of the pastor’s statement.','literal','unilateral','literary','lateral','choose the option that best completes the gap(s).','','a','','utme','2004',3716,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:41'),(101,'Ju<u>dge</u>','gear','spinach','pleasure','camouflage','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','d','','utme','2004',3777,'Admin','0000-00-00 00:00:00','2020-07-23 11:47:15'),(102,'caus<u>ed</u>','chanced','frost','released','realized','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','b','','utme','2004',3730,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(103,'mis<u>chi</u>ef ','Christmas','ritual','Brochure','Champagne','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','a','','utme','2004',3602,'Admin','0000-00-00 00:00:00','2020-07-23 12:26:12'),(104,'Everyone was ready to play the evil’s advocate in the impeachment controversy.','everyone was willing to speak against the impeachment to encourage discussion on it.','everyone was willing to defend an unpopular point of view concerning the impeachment.','everyone was willing to fight for the defenceless citizens no matter the consequences.','everyone was willing to be an evil genius in the controversy','that best explains the information conveyed in the sentence.','','a','','utme','2004',3634,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(105,'Adamu’s father is a key figure in that ministry','The ministry trusts Adamu’s father as a central figure','Adamu’s father is a figurehead in the ministry','Adamu’s father’s position is essential in the ministry.','Adamu’s father keeps the key to the ministry.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3821,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(106,'The government warns that drink-driving is punishable under the law.','a drunkard driving can be punished','driving while drunk is an offence','driving while drinking is an offence','drinking and driving is an offence.','that best explains the information conveyed in the sentence.','','a','','utme','2004',3677,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(107,'In many countries, democracy is ostensibly being practiced.','democracy is indeed being practiced  in many countries','many countries have effective democracy.','many countries have democracy in practice','democracy is apparently practice in many countries.','that best explains the information conveyed in the sentence.','','d','','utme','2004',3844,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:42'),(108,'The investigators stated clearly that they had reached a dead end in their scrutiny of suspects in the murder case.','the investigators did not know what to do with the suspect’s murder','The investigators had evidence to sentence the suspects to death in the end.','there was no further progress in the investigation of the murder suspects.','the end had come for the suspects in the murder case.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3710,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(109,'',' Secondment','Orthopaedic',' oriental','photographic','choose the option that has a different stress pattern from the others.','','a','','utme','2004',3719,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(110,'','ratify',' famous',' result',' taxi','choose the option that has a different stress pattern from the others.','','c','','utme','2004',3745,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(111,'Sailors are unusually <i>dauntless</i> in their exploits','selfless','ruthless','excited','frightened','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3703,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(112,'The <i>potency</i> of the drug has been acknowledged.','action','loss','inefficacy','power','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3598,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(113,'The dictator wanted <i>tractable</i> men in his cabinet.','reliable','intelligent ','tough','unruly','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3727,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(114,'After the war, the victors became increasingly <i>vindictive</i>','friendly','vociferous','arrogant','treacherous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3885,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(115,'The ship was <i>imperiled</i> by high winds','piloted','destroyed','deceived','saved','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3768,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(116,'Beauty queens sometime wear <i>outlandish</i>  dresses.','beautiful','flashy','familiar','attractive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3702,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(117,'The journalist said he was working <i>freelance</i>','tirelessly','satisfactorily','without a pay','dependently','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3737,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:46'),(118,'My father’s presentation was rather <i>causal</i>','formal','vital','informal ','divisive','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3718,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(119,'The flying Eagles put up a <i>plucky</i> defence against their opponents.','strong','weak','careless','tactful','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3750,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(120,'The man who scare the girl was a bit <i>deranged</i>','sane ','amorous','crazy','dangerous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3679,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(121,'The injured man is determined to <i>get back</i> at his assailant.','attack','identify','visit','forgive','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3814,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(122,'The player <i>writhed in pain</i> after the fall.','remained still','cried out','walked out','shook violently','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3820,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(123,'The noise of the fan <i>unnerved</i>  the star player.','refreshed','confused','helped','calmed','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3783,'Admin','0000-00-00 00:00:00','2020-07-24 10:26:10'),(124,'The team got <i>an ecstatic</i> welcome from the crowd.','An unexpected','a joyous','a cold','a thunderous','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3726,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(125,'We found a <i>shady</i> place for the display.','an open','an unsafe','a stuffy','an enclosed','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3664,'Admin','0000-00-00 00:00:00','2020-07-25 09:59:40'),(126,'expostulate','exposTUlate','expostuLATE','EXpostulate','exPOStulate','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2004',3644,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(127,'sufficiency','sufFIciency','SUFficiency','sufficienCY','suffiCIENcy','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2004',3800,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:23'),(128,'The town was in such a <i>turmoil</i> that the dance was called off.','mourning state','rainy state','state of darkness','state of confusion','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3766,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(129,'The festivals create in the people a feeling of price in the cultural <i>heritage</i>  ','history','heirloom','legacy','possession','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3679,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(130,'<i>Funnily enough,</i> the priest prayed for the robber who shot him.','Timidly','Unexpectedly','Disappointingly','Fearlessly.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3595,'Admin','0000-00-00 00:00:00','2020-07-24 20:11:24'),(131,'The presence of the captain makes the sailors <i>ill at ease</i>.','uncomfortable ','sickly ','impatient','easily ill','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3689,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(132,'The press describe the efforts of the government in <i>pejorative</i> terms.','critical','contemptible','palpable','superlative','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3682,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(133,'Okonkwo manages his household <i>with a heavy hand.</i>','like a powerful dictator','using the cane on every occasion','without tolerating weakness','like a heavy weight champion.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3824,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(134,'The school’s badge is the <i>insignia</i> of office for all the prefects in the school.','Power','symbol','seal','recognition','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3711,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(135,'Ibro shows enough <i>liberality</i>  with his meager income.','generosity','frugality','prodigality','insensitivity','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3700,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(136,'It is a <i>misnomer</i> to call three thousand naira a living wage.','an incontrovertible assertion','an appropriate term','a wrong description','a mishmash','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3781,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(137,'His plans <i>boomeranged</i> on him','bounce','fell','catapulted','backfired','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3731,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(138,'The manager’s knowledge of the strike is of <i>the utmost</i>  importance.','standard','genuine','paramount','basic','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3686,'Admin','0000-00-00 00:00:00','2020-07-23 12:26:14'),(139,'There has been a <i>downturn</i> in the affairs of the company.','a massive increase','little progress','a turn-around','a decline','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3693,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(140,'The <i>mottled</i> skin of a person with HIV indicates an advance stage  of its development.','Brown ','spotted','scaly','pimply','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3774,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(141,'In spite of constant financial support from his father, Udenyi treats his studies with considerable <i>levity</i>.','seriousness','enthusiasm ','wastefulness','lassitude','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3813,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(142,'The prosecutor was fully able to <i>substantiate</i> the charge.','expatiate on','prove','dismiss','weaken','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3780,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:19'),(143,'The teacher wants MY pen.','Does the teacher want his pen?','What does the teacher want?','Does the teacher want your ruler?','Who wants my pen?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','a','','utme','2004',3781,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:44'),(144,'The student BOUGHT the book.','Who bought the book?','Did the student steal the book?','What did the student buy?','How will the student get the book?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','b','','utme','2004',3787,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(145,'n<u>i</u>ne','pint','gill','pin','click','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2004',3712,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(146,'b<u>ea</u>r','beer','steer','rare','fear','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','d','','utme','2004',3735,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(147,'',' Circulation','eleven',' impossible','criticism','choose the option that has the stress on the first syllable.','','d','','utme','2004',3800,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(148,'','bachelor','condemn',' afternoon','intact ','choose the option that has the stress on the first syllable.','','a','','utme','2004',3843,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(149,'',' foul','tout','owl','foe','choose the option that has a different vowel sound from the others.','','d','','utme','2004',3808,'Admin','0000-00-00 00:00:00','2020-07-25 22:56:00'),(150,'','alter',' water',' pot','hall','choose the option that has a different vowel sound from the others.','','c','','utme','2004',3691,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(151,'If the rain hadn’t fallen, we wouldn’t have missed the match.','The rain is falling, so we will miss the match.','The rain fell, so we didn’t watch the match','The rain fell, so we watched the match','The rain didn’t fall, so we didn’t watch the match.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3865,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(152,'The class was tired of the new boy jawing away all the time.','He bit off people’s jaws','He was always chewing in the class.','He was always making trouble for the class','He talked continuously in the class','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3783,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(153,'The new Headmaster hoped that his men would pull together','He expected that the men would cooperate with him','He thought that the men would compose themselves at work','He was certain that they would resign en masse','He was certain that their condition would improve under him.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3817,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(154,'If the trader paid in full, his order was not pruned down.','The trader who made full payment did not have his order reduced','The trader who made some payment did not have his order delayed.','Unless the trader paid in full his order would be rejected.','As the trader did not increase his order, he did not need to pay in full','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3778,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(155,'The men were not pawns in someone else’s political game.','The action they executed was their idea','The men used someone else’s plain','They were used by someone’s political game','They love playing political games','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3847,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(156,'The crisis ended as suddenly as it began','The crisis ha suddenly as it began','The crisis will not end suddenly','The crisis stopped almost immediately','The crisis will stop immediately.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3796,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(157,'One thing I will not be complaining about in my new job is a lack of excitement','The job is bad  ','The job is exiting','The job is not too exciting','The job has been previously done','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3772,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(158,'The Governor parried all the questions put to him by the journalist.','The Governor answered all the questions brilliantly','The Governor evaded all the questions','The Governor failed all the questions','The Governor mastered all the questions','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3817,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(159,'if I visited England, I might go to Manchester City ','When I go to England, I could go to Manchester City','Whenever I visit England, I must go to Manchester City','I did not go to England and could not go to Manchester City','I could not visit Manchester City because I did not want to go to England.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3864,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(160,'The man puts his foot down whenever he is convince of his action','He desires to assert his will in the situation','He makes his mark wherever he goes','His attitude demonstrates someone who likes  to oppress others around him','He demonstrates firmness of character','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3735,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(161,'The teacher recounted two events that were <i>analogous</i>  with  each other','similar with','Advantageous to','distant from','different from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3881,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(162,'The Principal was filled with <i>scorn</i>  when we gave  our reason for coming late','contempt','sympathy ','anger','pity','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3877,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(163,'After fifty years, he could not find anyone who was <i>contemporary</i> with him at college','strange to','friendly with','belonged to','contented against','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3778,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(164,'Idris gives me a <i>sour</i> look every time I pass by him','bad','satisfactory','friendly','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3816,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(165,'The officer was given an <i>invidious</i> task','vivid','cruel','pleasant','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3864,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(166,'The views of the plateau are in stark contrast to the <i>workaday</i> cottages below','ordinary an uninteresting','beautiful an interesting','comfortable an fascinating','ugly an unfascinating','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(167,'The President can afford to dispense with some of his <i>henchmen</i>','detractors','body guards','sycophants','advisers','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3868,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(168,'Asabe bought a <i>glossy</i>  pair of shoes ','smooth and shiny','rough an dull','smooth and shining','rough an gummy','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3955,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(169,'Manu is hard to convince because he is an <i>opinionated</i>  person','an objective','an imperative','a subjective','a discursive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3829,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(170,'Some people consider the leather uphoistery and thick rugs a bit <i>sumptuous</i>  ','expensive','desirable','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3734,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(171,'The dramatist provided as satisfactory <i>denouement</i>  to the play','audition','climax','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3881,'Admin','0000-00-00 00:00:00','2020-07-26 13:31:05'),(172,'Many Nigerians are <i>wary</i> of night journeys','worried about','unscarred of','satisfied with','troubled about','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3788,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(173,'The proprietor accuse Uche of silently<i> acquiescing</i>  to the students’ demands','submitting to','adjusting','compromising on','resisting','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3899,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(174,'No wonder Sikemi later became a detective; she has been very <i>observant </i>','curious','perceptive','inductive','inquisitive','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3835,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(175,'Nigeria has been playing a <i>vital role</i> in the political an economic development of Africa','creditable','crucial','respectable','laudable','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3737,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(176,'Emeka’s painting was <i>so realistic</i>  that it could almost have been a photograph','picture square','concrete','lively','authentic','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3895,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(177,'<i>Courteously</i>, Ade stood back to let his teacher go first through the door','patiently','politely','carefully','calmly','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3833,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(178,'Many people use to lie in <i>poverty</i>','instability','want','difficult','the slums','choose the option nearest in meaning to the word or phrase  in italics ','','c','','utme','2005',3787,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(179,'<i>Accountability</i> is certainly a desirable quality in a politician','respectability','responsibility','courage','Diligence','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3808,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(180,'The <i>common</i> practice among some media practitioners is to be sensational in their reporting','prevalent','rampant','ordinary','cogent','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3819,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(181,'That <i>fateful</i> decision change the company’s outlook in many ways.','wonderful','uncontrollable','disastrous','unsuccessful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3890,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(182,'The accident victim received a <i>superficial</i> wound from the crash','a serious','a painless','an internal','an external','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3833,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(183,'The boxer <i>fizzled</i> out just in the sixth round','knocked out his opponent','showed off his talents','became tire out fought on spiritedly','surrendered rather disappointingly','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3754,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(184,'The manager describe Mfon as a man of vehement <i>character</i>','weak an uninterested','strong an insistent','troublesome an noisy','clever and helpful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3750,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(185,'Obi’s dog is old but still <i>lively</i>','attractive','howling','barking','frisky','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3825,'Admin','0000-00-00 00:00:00','2020-07-26 13:31:05'),(186,'His <i>taciturnity</i> amaze everyone in one court during the legal tussle','obliviousness','reticence','sensibility ','pervasiveness','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3856,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(187,'The greatness of the creator of the universe is always <i>inexpressible</i> to many adherents of certain faiths','inevitable','wonderful','unbearable','ineffable','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3814,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(188,'We <i>made a pile</i> in the business deal','lost a lot of money','earned a lot of money','broke even        ','cut corners','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3762,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(189,'Yesterday, my mother asked me.... ',' If I am tired? ','are you tired?',' whether was I tired?','If I was tired','choose the option that best completes the gap(s)','','d','','utme','2005',3809,'Admin','0000-00-00 00:00:00','2020-07-26 13:31:05'),(190,'The Bank Manager assured us that there was nothing to worry about','as regard to the loan ','with regards to the loan','in regard of the loan  ','with regard to the loan','choose the option that best completes the gap(s)','','b','','utme','2005',3893,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(191,'The first prize was','a carved wooden, attractive ','a wooden attractive carved   ',' an attractive carved wooden   ','a carved attractive wooden tray ','choose the option that best completes the gap(s)','','c','','utme','2005',3860,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(192,'Tsadu always cautions that difficult jobs should be done','step from step ','step by step','steps after steps    ','steps by steps','choose the option that best completes the gap(s)','','b','','utme','2005',3881,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(193,'I was often angry …… Oche since he differed…   me often','with/to ','about/with   ','against/from','with/with','choose the option that best completes the gap(s)','','d','','utme','2005',3755,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(194,'I am writing to you for ……..  reasons','concerned ','several','plenty ','myriad of','choose the option that best completes the gap(s)','','b','','utme','2005',3923,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(195,'As we sat ………the silence, my eyes……..  the room','under/looked  ','over/surrounded ',' in/roamed',' along/observed','choose the option that best completes the gap(s)','','c','','utme','2005',3799,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(196,'Is it true that Okoro……..  when the gates were closed?','had returned','would return  ','should return    ','would have returned','choose the option that best completes the gap(s)','','a','','utme','2005',3892,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(197,'The public library has stopped………. books to readers','borrowing','lending ','renting ','loaning','choose the option that best completes the gap(s)','','a','','utme','2005',3723,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(198,'We won\\'t leave until it ……..  Raining','will stop ','stopped','stops    ','has stopped','choose the option that best completes the gap(s)','','c','','utme','2005',3854,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(199,'The …………   event marked the beginning of a new life for the entire cabinet','historical  ','historicity of the','historic ','history of the','choose the option that best completes the gap(s)','','c','','utme','2005',3767,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(200,'The train ………. before I arrived','was leaving   ','has left','had left   ','would leave ','choose the option that best completes the gap(s)','','c','','utme','2005',3766,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(201,'You can travel on your own ……….. ?','isn\\'t it','can\\'t you   ','won\\'t you  ','shan\\'t you','choose the option that best completes the gap(s)','','b','','utme','2005',3769,'Admin','0000-00-00 00:00:00','2020-07-26 13:31:05'),(202,'The man is refurbishing the flat with a view to ……. it.','sell   ','selling ','have sold ','be selling  ','choose the option that best completes the gap(s)','','d','','utme','2005',3682,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(203,'The Secretary-General was shocked at the number of…….','child\\'s soldiers   ','childish soldiers  ','children soldiers ','child soldiers','choose the option that best completes the gap(s)','','d','','utme','2005',3793,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(204,'In spite of Shade\\'s good looks, her hair is always………','unkept','unkempt   ','unwashed','uncared for','choose the option that best completes the gap(s)','','b','','utme','2005',3799,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(205,'By the end of the football match today, we ……. the best player','could have known  ','might have known','will have known ','would have known ','choose the option that best completes the gap(s)','','d','','utme','2005',3869,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(206,'It is African for a younger person to show……..to elders','understanding ','indifference ','deference','satisfaction ','choose the option that best completes the gap(s)','','c','','utme','2005',3756,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(207,'A nursery rhyme is used to teach pupils how to spell the word','hipoppotemus','hippoppotemus','hipoppotamus ','hippopotamus','choose the option that best completes the gap(s)','','d','','utme','2005',3704,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(208,'b<u>ee</u>r','bear',' pear ',' fair',' pier','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','d','','utme','2005',3768,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(209,'g<u>uar</u>d','gourd','guide','argue','chat','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','c','','utme','2005',3882,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(210,'l<u>u</u>ck','lock','lack','brother','turn','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','a','','utme','2005',3789,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(211,'fi<u>l</u>m','salt','walk','pslam','chalk','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','a','','utme','2005',3882,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(212,'heal<u>th</u>y    ','father','path','they','that','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2005',3787,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(213,'E<u>n</u>glish','single','impugn','ink','orange','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2005',3815,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:19'),(214,'jurisprudence','JUrisprudence','juRISprudence',' jurisPRUdence','jurispruDENCE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3740,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(215,'suburbanite','SUburbanite','suBURbanite','  suburBAnite','suburbaNITE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3830,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(216,'departmentalize','departMENtalize         ','dePARTmentalize     ','DEpartmentalize','departmenTAIize','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','d','','utme','2005',3789,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(217,'refuse(noun)','reform   ','intact   ','obscure','phantom','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3782,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(218,'downtrodden','downgrading','prescribing','functional','internal','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3927,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(219,'','interpreter',' remarkable','  impossible ','criticism','choose the option that has a different stress pattern from the others','','a','','utme','2005',3914,'Admin','0000-00-00 00:00:00','2020-07-26 14:03:59'),(220,'','  impound','canoe','  subject(verb)',' knowledge','choose the option that has a different stress pattern from the others','','d','','utme','2005',3798,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(221,'Your mother CAN cook the meal',' Who will cook the meal?','Can my father cook the meal?','Isn\\'t my mother able to cook the meal7','What can my mother do?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','c','','utme','2005',3869,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(222,'The EAGLES won the match','Did the Eagles lose the match?','Who won the match?','What did the Eagles win?','Did the Eagles win the match?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','b','','utme','2005',3847,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(223,'The police claim that a number of stolen cars…… recovered ','have been ','has been  ','has being',' have being ','choose the option that best completes the gap(s).','','b','','utme','2006',3801,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(224,'     ………….  been there to look for her several times without success.','He\\'ll','He’s  ','Is he ','He is','choose the option that best completes the gap(s).','','b','','utme','2006',3716,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(225,' Until he lost the election, Agbo…………… to be the Student Union president.','had been hoping ','has been hoping   ','would have hoped   ',' has hoped ','choose the option that best completes the gap(s).','','b','','utme','2006',3830,'Admin','0000-00-00 00:00:00','2020-07-18 21:52:01'),(226,'The old man was rushed to hospital when his blood  pressure dropped to a ……..  level','dangerously lowly','dangerous lowly ',' dangerously low',' dangerous low','choose the option that best completes the gap(s).','','c','','utme','2006',3723,'Admin','0000-00-00 00:00:00','2020-07-23 11:25:46'),(227,'If he ……… for admission, I am sure he would succeed','will apply ','applied ','had applied ','has applied','choose the option that best completes the gap(s).','','c','','utme','2006',3648,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:52'),(228,'The ……….   robber showed no mercy during the attack. ','loquacious ','senseless ','ruthless ','benevolent','choose the option that best completes the gap(s).','','c','','utme','2006',3895,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:35'),(229,'Did you have ……… when you went to visit the medical doctor? ','diarrhea ','diarrhea','diarhoea  ','diarrhea ','choose the option that best completes the gap(s).','','a','','utme','2006',3714,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(230,'Your performance will improve if you…….  Hard','are practicing ','practical ','would practice ','practise','choose the option that best completes the gap(s).','','b','','utme','2006',3724,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(231,'The brave hunter killed the ………… in the forest ','big spitting cobra black','Black big spitting cobra ','big black spitting cobra ','big spitting black cobra ','choose the option that best completes the gap(s).','','c','','utme','2006',3677,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(232,'He wrote to you,……….  ?','hadn’t he ','wouldn’t  he ','didn’t he','hasn’t he','choose the option that best completes the gap(s).','','c','','utme','2006',3714,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:13'),(233,'The clubs were not…….. on a solid ethical base ','funded','found ','created ','founded ','choose the option that best completes the gap(s).','','d','','utme','2006',3702,'Admin','0000-00-00 00:00:00','2020-07-22 22:19:46'),(234,'I watched him as he……  the hole','dug ','digs','is digging ','dugged','choose the option that best completes the gap(s).','','a','','utme','2006',3639,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(235,'His father hardly misses the news because he goes about with his………..  Radio','pointable ','potable ','potable','portable','choose the option that best completes the gap(s).','','d','','utme','2006',3749,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:31'),(236,'The investigation Commission has treated all the …… submitted to it by the warring factions','protests ','petitions ','applications','enquires ','choose the option that best completes the gap(s).','','b','','utme','2006',3722,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(237,'Olu brought his clothes and those of his………..','Senior brother’s','elder brothers','elder brother’s ','senior brother.','choose the option that best completes the gap(s).','','c','','utme','2006',3743,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(238,'Our neigbour was attracted by the ………. from my mother’s cooking ','flavour','stench','scent','aroma ','choose the option that best completes the gap(s).','','d','','utme','2006',3775,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(239,'Everybody is allowed to ………. his views on state matters ','Air ','hear ','show ','share ','choose the option that best completes the gap(s).','','a','','utme','2006',3830,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(240,'Despite all preparations, the wedding did not …..','come along ','come by','come on ','come off','choose the option that best completes the gap(s).','','d','','utme','2006',3741,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:47'),(241,'For beating ……. his course mate, Agbaji was……… from the university.','up/rusticated ','on/expelled','at/removed ','away/sent out ','choose the option that best completes the gap(s).','','a','','utme','2006',3761,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(242,'We have been living peacefully here but……….. hear rumours of war.','again ','slowly','occasionally ','eventually','choose the option that best completes the gap(s).','','c','','utme','2006',3815,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(243,'Genealogy ','GeneaLOGY','geneAlogy','geNEalogy ','GEnealogy ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','b ','','utme','2006',3762,'Admin','0000-00-00 00:00:00','2020-07-22 21:09:40'),(244,'Catholicism ','caTHOlicism ','catholiCism','CAtholicism ','cathoLIcism ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2006',3699,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(245,'','ability ','Registration ',' quadruplicate ','revivalist ','choose the option that has a different stress pattern from the others. ','','a','','utme','2006',3798,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(246,'','competent ','represent ',' syllabus ','quality ','choose the option that has a different stress pattern from the others. ','','b','','utme','2006',3765,'Admin','0000-00-00 00:00:00','2020-07-14 14:43:51'),(247,'apparent ','arrested ','telephone ','paragraph ','appetite ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3620,'Admin','0000-00-00 00:00:00','2020-07-23 11:56:23'),(248,'Unfair ','insight ','towards ','first-class','instant ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3841,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(249,'Dovetail ','proviso ','simplicity ','jargon ','psychiatry ','choose the option that has the same stress pattern as the given word.','','a','','utme','2006',3894,'Admin','0000-00-00 00:00:00','2020-07-22 21:42:48'),(250,'',' Insult (noun)','prepare ',' provoke','pronounce ','choose the option that has the stress on the first syllable.','','a','','utme','2006',3722,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(251,'','Frequent (verb)','mature ','madam','convict (verb)','choose the option that has the stress on the first syllable.','','c','','utme','2006',3675,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:16'),(252,'In our college, the regulations concerning resists are a grey area','The regulations have just been revised','The regulations have often been ignored','The regulations are perfectly clear','The regulations are not very clear.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3742,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:13'),(253,'Ogiri takes after his father, he fawns upon anyone with influence.','Like his father, Ogiri likes to flatter people with influence in society','Like his father, Ogiri hates influential people','Ogiri. who always follows his father, tries to act like an influential man','Ogiri, who looks like his father, follows rich and influential people about','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3781,'Admin','0000-00-00 00:00:00','2020-07-23 12:26:12'),(254,'You are to write a report and give it to the security office','After writing your report, give it to the security office','You are writing a report, as the security office directed','The report you are writing should be given to the security office','You have been ordered to write a report, which you wilt give to the security office ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3704,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(255,'After the war the victors became Increasingly vindictive ','Vengeful attacks were Incessantly carried out on those who lost the war ','  Friendly measures were taken to heal the wounds','Repressive measures were taken against those who lost the war','Those who won the war became treacherous ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3789,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(256,'The prefect reeled off the names of all the students who Drake the library law.','The prefect gave a disjointed list of the students in the law library.','  The prefect omitted the names of the students who broke into the law library ','The prefect submitted a complete list of the students who stole library books','The prefect gave an accurate list of the students who disobeyed library regulations.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3623,'Admin','0000-00-00 00:00:00','2020-07-22 21:42:48'),(257,'1 owe you far less than you owe me','My debt to you is greater than yours to me','Your debt is not much greater than mine','What we owe each other Is approximately the same','I owe you something, but you owe me much more','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3692,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:53'),(258,'The dispute over land acquisition has now come a head','The problem has reached crisis proportions ','The problem has now been referred to the headquarters ','Because of the dispute, land acquisition has now been halted ','The problem has now been solved ','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3710,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(259,'He has hardly spoken when the bell rang ','He found it difficult to speak, and then the bell rang','When the bell rang, he was still speaking ','The bell rang very soon after he spoke','He spoke in a harsh manner and the bell rang ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3687,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(260,'I think she takes her guardian’s support for granted ','Her guardian has been helping her for a long time, and she is very grateful to him. ','She wants her guardian to grant her more support.','She thinks her guardian will no longer support her as he has been doing.',' Her guardian has been helping her for a long time, but she does not show enough gratitude. ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3671,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:42'),(261,'The class has fallen in with the teacher\\'s plans','The class has ignored the plans','The class has rejected the plans',' The class has accepted the plans','The class has modified the plans','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3828,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:35'),(262,'The move to expel the chairman was <i>sanctioned</i> by members of the party       ','unleashed  ','opposed ','supported',' initiated','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3742,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:23'),(263,'Because Jamiu is so <i>easily offended,</i> he was not considered for the post of headboy','Irritable    ','stubborn   ','troublesome ','docile','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3747,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:36'),(264,'The witness provided a <i>monstrous</i> account of the event','supportive  ','tragic','shocking ','verbatim','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3703,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(265,'Adamu is rather <i>meddlesome</i> in dealing with his friends','impertinent ','intimidating ','quarrelsome',' uncaring','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3520,'Admin','0000-00-00 00:00:00','2020-07-22 21:05:44'),(266,'The commander said that the battle would be sustained, total and <i>relentless</i>','continuous ','brutal   ','fierce ','innocuous','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3751,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(267,'The government has announced its <i>preparedness for</i> the scheme','determination ','regret ','pleasure ','readiness','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3657,'Admin','0000-00-00 00:00:00','2020-07-23 11:15:54'),(268,'The chairman advised the participants to follow <i>convention</i> in stating their points.','eloquence ','advice ','prudence ','tradition','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3685,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:37'),(269,'His discovery of the vaccine became a <i>quantum leap</i> in the search for a scientific cure for the illness','victorious battle ','slow but steady step',' great improvement   ','fast but sure step','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3680,'Admin','0000-00-00 00:00:00','2020-07-23 11:15:20'),(270,'After the meeting, I read a <i>leer</i> on his face as he looked at the woman.   ','satisfying meaning ','bad look ','pleasant disposition ','poor smile','choose the option nearest in meaning to the word or phrase in italics','','b','','utme','2006',3762,'Admin','0000-00-00 00:00:00','2020-07-22 22:15:36'),(271,'His loss suddenly became <i>redeemable</i> ','Incurable  ','exclusive','recoverable ','repulsive','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3727,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(272,'The plan has gone <i>awry</i>','wide   ','wrong   ','well    ',' wild','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3731,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:32'),(273,'The judge emphasized his <i>morbid</i> desire in his judgement','inordinate ','uncritical ','ravenous ',' Unpleasant','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3709,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(274,'77. The recommended novel has a <i>convoluted</i> theme',' a simple ','an attractive ','a disgusting ','a complicated ','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3612,'Admin','0000-00-00 00:00:00','2020-07-22 21:14:06'),(275,'The party men <i>reveled</i> all night when the election results were announced.','Celebrated ','mourned','fought ','discussed ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3651,'Admin','0000-00-00 00:00:00','2020-07-23 11:47:17'),(276,'He is <i>prolific</i>  writer ','a very productive','a well-known','a clever ','an influential ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3796,'Admin','0000-00-00 00:00:00','2020-07-23 11:27:06'),(277,'h<u>ur</u>t','hut ','girl ','hate   ','hot','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3718,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:20'),(278,'c<u>o</u>ck','cop   ','cope ','cork ','cup','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3673,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(279,'s<u>ay</u>s','fierce  ','dam','wet','rain','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','c','','utme','2006',3793,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(280,'c<u>h</u>aracter','unique   ','charade   ','arch   ','church ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3840,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(281,'  bush<u>es</u>','shapes ','shoes  ','rapes   ','rakes','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3764,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:35'),(282,'gara<u>ge</u>','gear   ','sure   ','pressure ','measure','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2006',3753,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(283,'The usually hostile crowd was captivated by the .player\\'s <i>winsome</i> attitude','obnoxious  ','friendly  ','colourful  ','drunken','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3633,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:19'),(284,'The reporter made a <i>masterly</i> analysis of the situation','an unskilful ','a mistaken ','an indepth','a proper','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3773,'Admin','0000-00-00 00:00:00','2020-07-22 22:15:35'),(285,'He has no reason to <i>have his heart in his mouth</i>',' think negatively',' feel guilty ',' be afraid',' be confident','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3791,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(286,'That little boy has become quite <i>chubby</i>','thin    ',' intelligent   ','huge    ','tall','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3698,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:36'),(287,'Akpan was able to <i>douse</i> the flames with the new piece of equipment','reduce ','extinguish ','ignite ','reinforce','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3672,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(288,'He gave himself up by his <i>plebeian</i> tastes','robust ','voracious ','patrician   ','laughable','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3770,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(289,'<i>No sooner had</i> he arrived than it started to rain',' Long before ',' Seldom ','Simultaneously','Just before','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3729,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(290,'The action was <i>premeditated</i>','unnecessary ','catastrophic ','unplanned ','uncoordinated','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3757,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(291,'A <i>tentative</i> solution was provided','A convincing ',' provisional','An amicable ','A definite','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3657,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(292,'The chief said he would use the power <i>inherent</i> in his office to stop the celebration',' unrelated to ',' common to ',' allotted to ',' impervious to','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:37'),(293,'In our last play, Segun acted the <i>hero</i>','villain  ',' devil ','criminal ',' assassin','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3764,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(294,'The police found a <i>conclusive</i> proof of the boy\\'s guilt','a corroborative ','A doubtful ','a consolatory',' an incriminating','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2006',3761,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(295,'The point you have made is quite <i>apt</i>','illogical ','helpful ','irrelevant ','insensitive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3851,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(296,'The man drew a sword as people <i>congregated round</i> him','praised',' gathered round ',' mobbed ',' fled from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3804,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(297,'The notice reads, No <i>cash</i> transactions in this hall\\'','money   ','gainful ','business ','cheque','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3771,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(298,' He <i>deprecated</i> the attempts made to unseat him.','despised','challenged    ','resisted','condemned','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3699,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:54'),(299,'The striking workers have vowed not to return to work until the decision is <i>reversed.</i> ','rescinded         ','dismissed','implemented    ','reverted. ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3781,'Admin','0000-00-00 00:00:00','2020-07-14 14:44:57'),(300,'The police are not happy with the growing number of <i>depraved</i> people around the politician.','violent ','immoral ','indolent ','loquacious ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3706,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(301,'The last criticism at the rally was made <i>in ignorance</i>','uniformed ','objective ','unimpeaccable','impeccable ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3617,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(302,'The astute businessman neatly <i>fended</i> off questions off questions about his private life.','asked ','explained ','welcomed','sidestepped.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3662,'Admin','0000-00-00 00:00:00','2020-07-25 17:06:43'),(303,'We were warned not to indulge in <i>recriminations.</i>','counter-charges      ','indiscretions  ','accusation','frivolous allegations.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3728,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(304,'The shortage of petrol was a <i>perennial</i> problem','a recurring   ','a seasonal ','an annual','an incurable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3781,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(305,'The rest of the boys admire Olu\\'s <i>verve</i>','intelligence','work  ','handsomeness     ',' energy.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3757,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(306,'He holds on firmly to his <i>hackneyed</i> view of life','wayward  ','principled',' obsolete','positive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3680,'Admin','0000-00-00 00:00:00','2020-07-23 11:56:22'),(307,'I visited Amina <i>umpteen times</i> in her college, but she never came to me','often   ',' seldom   ',' twice   ','occasionally.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3682,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:34'),(308,'The debt the company incurred became rather <i>intolerable</i>. ','inevitable   ','unprecedented','insupportable ','dangerous.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3759,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(309,'The tax rebate was a <i>concession</i> given to the civil servants ','a donation ',' an allowance','an incentive  ','an emolument. ','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2007',3726,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:14'),(310,' <i>Beads</i> of sweat ran down Ngozi\\'s armpit','Pools','Springs   ','Ponds    ','Rivulets.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3851,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(311,'The noise across the road  <i>drowned</i> the sound of the keyboard in my room',' neutralized ',' overshadowed','balanced   ','equalized.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3772,'Admin','0000-00-00 00:00:00','2020-07-23 11:20:20'),(312,'Things may change soon, but at the moment our economic situation is <i>precarious.</i>',' redeemable','buoyant ','uncertain   ',' unattractive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3847,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:45'),(313,'shoe<u>s</u>','horse','house','loss','reason','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2007',3782,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(314,'E<u>ngs</u>lish','end','thin','think','edge','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3794,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(315,'clo<u>ths</u>e','thomas','three','they','mouth','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3770,'Admin','0000-00-00 00:00:00','2020-07-23 11:28:28'),(316,'p<u>os</u>table','paw','pot','port','post','choose the option that has the same vowel sound as the letter(s) underlined.','','b','','utme','2007',3692,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(317,'bl<u>ues</u>','book','root','foot','look','choose the option that has the same vowel sound as the letter(s) underlined.','','d','','utme','2007',3805,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(318,'p<u>ears</u>','dear','year','there','near','choose the option that has the same vowel sound as the letter(s) underlined.','','a','','utme','2007',3777,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:05'),(319,'The refugees were received at the <i>transit</i> camp.','passage ',' permanent ','temporary ','nearby.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3694,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(320,'The man paid a large sum to <i>redeem</i> his mortgaged property ','ransom ','acquire ','pawn ','recover.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3761,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:40'),(321,'Lami and her husband are simply <i>munificent</i>','a wealthy   ','angry   ','happy  ','niggardly.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3821,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:04'),(322,'Is it necessary for us to go?\\' she asked in her <i>shrill</i> voice ','angry ','quiet',' indistinct ','aggressive.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3642,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:30'),(323,'The police demanded a <i>factual</i> account of the accident','a supportive  ','an uncorroborated','an admissible ','an undisguised.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3768,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(324,'The suggestions he made were very <i>unobtrusive</i>','forceful   ','helpful ','sincere    ','reasonable.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3744,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(325,'Mr. Adeyemo is quite a <i>conceited</i> young man','a resourceful','a practical ','an experienced ','an unassuming.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3804,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:20'),(326,'The stadium was <i>seething</i> with people when we entered',' filled ',' crowded ','empty   ','noisy.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3771,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:21'),(327,'The Vice-Chancellor <i>relinquished</i> power at the end of busterm ','abandoned   ','wielded  ','gave up',' clung on to.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3821,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:37'),(328,'The students were <i>undeterred</i> by the noisy lecture environment. ','frustrated  ','encouraged','discouraged','challenged.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3805,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(329,'For anything to do with academic work, he has a great  a <i>version</i>','conversion ','attention','contempt  ','predilection.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3740,'Admin','0000-00-00 00:00:00','2020-07-23 12:26:14'),(330,'The study he carried out of the problem was quite <i>comprehensive</i>','detailed ',' sketch  ','inscrutable ','complete.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3746,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(331,'The man advised his wife to steer a <i>middle course</i> the argument between her and her employers','be recalcitrant  ','be unrepentant','be compromising','be unrelenting','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3822,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(332,'Do not be <i>discouraged</i> by failure in life.','overjoyed','dissuaded','actuated ','disoriented.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3709,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(333,'Otokpa took after his late father who was a <i>tee totaller.</i>','a drunk ',' careless ','a disciplinarian ','sober','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3781,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(334,'capitalism    ','capiTAIism   ','capitaLIsm','caPItalism ','CApitalism.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2007',3691,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:13'),(335,'association ','aSSociation    ','associaTION','associAtion   ','Association.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2007',3837,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(336,'advertisement ','adVERtisement  ','advertiseMENT',' adverTISEment   ','ADvertisement.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2007',3755,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:46'),(337,'',' intact  ',' integral ','negotiate ','about.','choose the option that has the stress on the first syllable.','','b','','utme','2007',3742,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(338,'','conduce   ',' renewal ','calendar ','reproduce.','choose the option that has the stress on the first syllable.','','c','','utme','2007',3721,'Admin','0000-00-00 00:00:00','2020-07-23 11:56:22'),(339,'','understand   ','address ','afternoon ','taxi.','choose the option that has the stress on the first syllable.','','d','','utme','2007',3767,'Admin','0000-00-00 00:00:00','2020-07-23 11:49:41'),(340,'',' superior ','surcharge','slaughter ','superman.','choose the option that has a different stress pattern from the others.','','a','','utme','2007',3589,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:20'),(341,'','education ','individual ','agriculture','Cinderella.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3744,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(342,'','cigarette ','European ','evacuee','expedite.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3581,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:40'),(343,'Because of his …… nature, Ayo was tricked out of his wrist watch. ','kind   ','pliable  ',' uncompromising ','uncalculating ','choose the option that best completes the gap(s).','','a','','utme','2007',3716,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:19'),(344,'He says he ............. find me a job, but will accommodate me.','could not ','was notable to','is not able to','cannot be able to ','choose the option that best completes the gap(s).','','a','','utme','2007',3745,'Admin','0000-00-00 00:00:00','2020-07-23 12:26:14'),(345,'The idle steward could not see ....... on the wall, and he lost his job.','the writing','what will be written ','the handwriting','what is written','choose the option that best completes the gap(s).','','c','','utme','2007',3762,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(346,'... went to the stadium to watch a football match.','Amadi and me  ','Amadi and I   ','Me and  Amadi   ','Amadi and myself  ','choose the option that best completes the gap(s).','','b','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(347,' If he arrived late, everyone... …….. him','would have blamed   ','will blame ','would  blame ','must blame','choose the option that best completes the gap(s).','','a','','utme','2007',3730,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(348,'When they examined his body, they found that he ...',' had been dead  ',' had been dying  ','died  ','was dead','choose the option that best completes the gap(s).','','d','','utme','2007',3718,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(349,'The rain fell for days... ','on ending ','at ending ','on end  ','at end','choose the option that best completes the gap(s).','','c','','utme','2007',3730,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(350,'Yesterday in the hall, Ola said that ...........  his watch.','he had mislaid ','he had forgot ','ne has misplaced  ','he have lost ','choose the option that best completes the gap(s).','','a','','utme','2007',3662,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:19'),(351,'Government should invest more in …...   training.','teacher\\'s  ','teacher  ','teachers  ','teachers','choose the option that best completes the gap(s).','','b','','utme','2007',3593,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(352,'The team has benefitted from the coach\\'s ………. of experience. ','minefield ','reservoir ','wealth ','world ','choose the option that best completes the gap(s).','','c','','utme','2007',3810,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(353,'There was …………. any traffic as he drove home.',' hardly ',' normally ','usually  ','no ','choose the option that best completes the gap(s).','','a','','utme','2007',3858,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:13'),(354,'I look forward to ……. you next week.','seen ','seeing  ',' be seeing ','see ','choose the option that best completes the gap(s).','','b','','utme','2007',3779,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(355,'The girl cannot speak with a clear voice; she is always ………. ','blabbing ',' vociferating ',' stuttering ','gesticulating ','choose the option that best completes the gap(s).','','c','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(356,'The politician …….. the family of the deceased.  ',' greeted  ',' condoled  ','wept over ','commiserated with ','choose the option that best completes the gap(s).','','d','','utme','2007',3769,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(357,'Making a phone call instead of paying a visit represents a …….  trend ',' sudden new major social  ',' new social sudden major',' new sudden major social','sudden social new major','choose the option that best completes the gap(s).','','c','','utme','2007',3752,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(358,'Our soldiers are starting to zero …………. the enemy.','at    ','in on ',' unto ','on at ','choose the option that best completes the gap(s).','','b','','utme','2007',3510,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(359,'My father has been away on a journey but my mother  says she …...he …… this Friday.',' expects/would arrive','expected/win arrive ','expects/will arrive','expected/would arrive ','choose the option that best completes the gap(s).','','a','','utme','2007',3780,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:52'),(360,'Kola was fined; ……….. thieves were given a jail sentence.','the rest of the','rest ','the rest','rest off ','choose the option that best completes the gap(s).','','a','','utme','2007',3708,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:41'),(361,'I………  to pursue my education.','did not chance   ','did not have the opportunity','was not chanced    ','was not opportuned ','choose the option that best completes the gap(s).','','a','','utme','2007',3750,'Admin','0000-00-00 00:00:00','2020-07-23 11:28:28'),(362,'Didn\\'t .......  draw your attention to the entry requirements?','anyone ','everyone ','everybody','no body','choose the option that best completes the gap(s).','','a','','utme','2007',3708,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:31'),(363,'He could not have rewarded them more handsomely.','He did not reward them very well,','He rewarded them well, and he was also a good- looking man.','He rewarded them very well.','He spoke to them in a very generous way.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3661,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(364,'My advice to Tolu was: \\'Look before you leap.\\'','Tolu was advised to consider her opinions before reaching any decisions.','Tolu was advised to consider the possible consequences before taking action.','Tolu was advised to weigh her decisions by looking and leaping.  ','Tolu was advised to leap only after looking.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2007',3789,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:36'),(365,'The official had allegedly been taking bribes.','Some people accused the official of taking bribes.','The official had been taking bribes without feeling any guilt.  ','It was proved that the official had been taking bribes ','The official accused some people of taking bribes.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3770,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(366,'Emeka hardly ever holds with my view on good governance.','Emeka sometimes opposes my idea of good governance.  ','My view on what good Governance is conforms with that of Emeka.','Emeka never really supports my opinion of good governance ','Emeka may never hold a view which conflicts with mine on good governance.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3693,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:14'),(367,'The next village is at least 30 kilometres away.','The next village is 30 kilometres away, possibly less. ','The next village is approximately 30 kilometres away.    ','The next village is   only 30 kilometres away.','The next village is 30 kilometres away, or possibly more.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3747,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:35'),(368,'The woman won\\'t have lived through the night. ','It was likely that the woman died before morning ','The woman survived her ordeal but not without some help .   ','From all indications, the woman was taken much worse, though she overcame her ordeal','The woman might not have lived if she hadn’t got the right support','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3722,'Admin','0000-00-00 00:00:00','2020-07-23 11:56:23'),(369,'There\\'s a door at either end of the building.','The building has two ends and two doors. ','The building has two ends, but only one doc\\'','The building has two ends, but I do not know which of the two has a door. ','The building has many ends each with a door.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3631,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(370,'We have to iron out our differences at once.','We must clear up without delay our misunderstanding ','We must sure that our problems are eliminated  at all costs ','We have to settle our disagreement once and for all.   ','We have to solve some of our problems for now.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3645,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(371,'There should be a level playing field for women entering  politics.  ','Women should not be allowed to enter  politics   ','Sports facilities should be provided for women entering politics.','Special privileges should be  given to women who want to enter politics','Men and women should be able to compete are political arena on an equal basis.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3699,'Admin','0000-00-00 00:00:00','2020-07-24 20:09:59'),(372,'The country is holding its first free elections for five years. ','The last time the country held free electors  was five years ago. ','The first free elections in the  country have now taken five years to conduct.','The country held elections five years ago but they were not free. ','There were elections in the country five years ago.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3806,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:40'),(373,'He needn\\'t have bought that new table ','It isn\\'t possible that he bought the table ','He bought the table, but it wasn\\'t necessary ','He didn’t buy the table because it wasn\\'t necessary','He doesn\\'t need to buy the table ','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3681,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(374,'Thanks to that phone call, I was able to obtain the visa,','in spite of that phone call, I obtained the vist ',' It was because of that phone call that the visa','I am grateful to whoever phoned me and I obtained the visa','If I had not recieved that phone call, I would not have obtained the visa.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3775,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:21'),(375,'It is likely that the governor will exact his pound of flesh ','He will probably demand a hefty  bribe ','He will probably engineer the assassination of his opponents ','He will probably impose crushing new taxes','He will probably demand for and get all that is due to him ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3813,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:42'),(376,'It was too cold for him to go out ','He had a bad cold, and did not go out,','Although it was very cold, he still went out ','As it was very cold, he did not go out','He was afraid to go out that day.','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3666,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(377,'Ado and Abu are always together these days. They must be up to something.','They must have reconciled after their quarrel','They are probably planning something bar','They are capable of a praiseworthy achievement ','They bear some responsibility for what has happened.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3701,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(378,'He wants the meeting to be adjourned,','He wants the meeting closed ','He wants the meeting cancelled ','He wants the meeting to continue till another day ','He want  the meeting to another day without delay ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3712,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(379,'My father is one of the vociferous few challenging the company’s appointment of the manager.','My father is the one who shouts with a loud voice against the appointment of the manager','My father and others speak on behalf of the company against the appointment of the manager','My father is one of those objecting to the appointment of the manager','My father is agitated by the appointment of the manager','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3759,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:13'),(380,'The voyagers fetched up in Nigeria','the foreigners finally settled in Nigeria','The journey by sea ended in Nigeria','The travellers made a stopover in Nigeria','The discoverers landed in Nigeria after a long journey,','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3824,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(381,'In those days in this school, everyone who spoke in a','language other than English paid a fine of ten naira','  Everyone of us paid a fine of ten naira because we did not always speak in English  ',' Everyone would pay a fine of ten naira for wanting to use a language other than English ','Those who spoke a language other than English on the premises paid a fine  of ten naira ','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3692,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:30'),(382,'The officer has discussed the vexed issue of incessant power failure','In anger, the officer explained the problem of constant power failure','The officer added his voice to the much discussed problem of power cut','The officer\\'s explanations angered those who have suffered the effects of frequency power failure ','The officer told the people not , to be angered by the frequent power cut','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3634,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:47'),(383,'The weather condition now <i>prevailin</i>g in the town is unbearable   ','widespread   ','dominant','unconscious ','disappointed','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3743,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(384,'The lady was  completely <i>nonplussed when her suitor</i>  rejected her gifts ','unpuzzled ','surprised ',' unconscious ','disappointed  ','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3767,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(385,'As a public officer, he should act with <i>scrupulous</i>  honesty at all times  ','impeccable  ','careless ','transparent ','uncompromising ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3833,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:12'),(386,'Men from the agency went into the market in search of <i>unwholesome</i>  food items ','banned ','imported ','healthy ','uncooked ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3749,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:46'),(387,'The condition of the hostels has become <i>deplorable </i>','admirable ','regrettable ','bearable ','malignant','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3798,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(388,'The plan to merge the two local government areas has met with much <i>apathy.</i>','hospitality ','criticism ','consideration ','enthusiasm ','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3842,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:12'),(389,'There is now a <i>dearth</i>  of talent in the industry; she said ','a lack ','an abundance ','a rebirth ','a shortage ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3641,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:21'),(390,'The students  <i>vandalized </i> their hostel curing the riot.','  deserted ','Unrepaired  ',' protected','decorated.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3765,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:46'),(391,'His <i>kind-hearted</i> master bought him a motorcycle',' stingy   ','generous    ',' shrewd ','angry.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3577,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(392,'<i>Mutual</i> love is what Kabi and Musa have in common, and nothing else.   ',' insincere     ','unhappy','one-sided    ','disrespectful. ','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3700,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(393,'Always strive to get what is <i>legitimate,</i>','illicit    ','legal',' good    ','impure','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3786,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:49'),(394,'Some aspects of their culture are <i>out of date</i>','genuine  ','pragmatic ','fashionable ','fake','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3768,'Admin','0000-00-00 00:00:00','2020-07-23 12:20:40'),(395,'On the first day of her examination, Amina felt very <i>confident.</i>','excited ','dull  ','beefed up','strung up. ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3750,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:34'),(396,'My father is always very <i>frank</i> about his intentions','open   ','objective','secretive','deceitful','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3705,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(397,'The speaker was rather <i>bold</i> in his presentation of the case ','unfair ','reserved ','ashamed ','formal','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3794,'Admin','0000-00-00 00:00:00','2020-07-19 12:52:42'),(398,'The doctor tried to <i>soothe</i> the patient before the operation  ','examine   ',' treat ',' calm ','induce','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3694,'Admin','0000-00-00 00:00:00','2020-07-16 13:10:29'),(399,'The charge brought against my brother was hardly <i>tenable\\\\</i>','sensible  ','defensible   ','meaningful',' flimsy','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3781,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:29'),(400,'The man described his son as a <i>willful</i> character','   wicked ','obstinate','wild    ','tricky.','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3777,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:44'),(401,'Our teacher described Agbo\\'s story as a <i>phantom</i>','scary  ','realistic ','fanciful   ','interesting ','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3744,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(402,'I find the way she approaches her customers quite <i>repugnant</i> ','unpleasant   ','attractive. ','ungodly    ','encouraging','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3783,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(403,'Participation in the programme is <i>optional</i>','unnecessary   ',' recommended','hard to justify   ','a matter of choice','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3658,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(404,'Scientists have <i>invented</i> ways of preserving fruits much longer   ','coined ','devised   ','arranged','organized','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3654,'Admin','0000-00-00 00:00:00','2020-07-23 11:49:41'),(405,'The attempt to count the population was <i>largely</i> successful.  ',' mostly ','completely   ',' hardly','totally.','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3679,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:04'),(406,'The governor has <i>approved</i>  the award of the contract','appreciated ',' acknowledged ','vetoed ','endorsed','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3663,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:49'),(407,'I cannot stand Simon, I find his attitude <i>offensive</i>','unapproachable   ',' obnoxious ','wicked','  unpardonable','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3711,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(408,'The  man would not <i>withdraw</i>  what hi hid ','take back   ',' takeout   ','take','tike from','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3631,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(409,'The <i>disagreement</i> between the two men became obvious during the meeting','insult','confrontation','passion','insinuation','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3790,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:46'),(410,'The principal  detested his <i>recalcitrant</i> attitude ','disobedient ','arrogant ','voracious ','vengeful ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3840,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(411,'The union officials suddenly became <i>reactive</i>','unruly ','impatient ','calm  ','submissive ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3709,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(412,'The popularity of the military dictator <i>waned</i>  after war ','increased ','changed ','declined ','skyrocketed.','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3674,'Admin','0000-00-00 00:00:00','2020-07-23 11:15:20'),(413,'The chairman addressed the………… ','university French teacher','university of French teachers ','French one hundred university teachers ','university French one hundred teacher ','choose the option  best completes the gap(s) .','','a','','utme','2008',3786,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(414,'Kanuri is a language.........','I can\\'t speak it well ','that I cant speak it well ','of which I can\\'t speak it well','I can\\'t speak well ','choose the option  best completes the gap(s) .','','d','','utme','2008',3720,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:14'),(415,'Last Tuesday, Ochonu asked me.........',' had I come yesterday ','did you come yesterday ','whether I had come the day before ','If I had come yesterday','choose the option  best completes the gap(s) .','','c','','utme','2008',3754,'Admin','0000-00-00 00:00:00','2020-07-23 11:56:23'),(416,'The young man has..... to sober...……  after being drunk.','began/up ','begun/in    ','begun/up    ','began/down','choose the option  best completes the gap(s) .','','c','','utme','2008',3803,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:20'),(417,'My mother had........  the fire wood before it began to rain. ','splitting ','splited  ','splitted','splitting','choose the option  best completes the gap(s) .','','a','','utme','2008',3677,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(418,'The police officer warned the... communities against taking the law……… hands','feuding/into their own ','feudal/ to their own ','feuding to their own   ','feudal/in their own','choose the option  best completes the gap(s) .','','a','','utme','2008',3703,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:48'),(419,'Agbo could not travel as he had come...…  influenza','over with ','down with ','in from ','on to ','choose the option  best completes the gap(s) .','','b','','utme','2008',3643,'Admin','0000-00-00 00:00:00','2020-07-23 11:28:29'),(420,'When he.........from his journey, I want to see him.','returns ','might have returned ','returned ','must have returned ','choose the option  best completes the gap(s) .','','a','','utme','2008',3739,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:13'),(421,'I knocked his door, but he.........','has already ten ','left already ','would already leave','had already left ','choose the option  best completes the gap(s) .','','d','','utme','2008',3691,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:31'),(422,'………of the students  turned up, so the lecture was cancelled.','few ','Little',' A few  ',' A little','choose the option  best completes the gap(s) .','','a','','utme','2008',3696,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(423,'He brought a  ……… against his neighbour.','complaint ','complains','complain ','complaining ','choose the option  best completes the gap(s) .','','a','','utme','2008',3664,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:54'),(424,'The hotel lacks the ..……. for accommodating so many guests.','ability','capability','capacity','competence ','choose the option  best completes the gap(s) .','','c','','utme','2008',3710,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(425,'If you are not careful, you would .......... your money.','toss  ','lose','loose   ','lost','choose the option  best completes the gap(s) .','','b','','utme','2008',3793,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(426,'You must practise in order to................perfection.','obtain   ','have','get ','achieve','choose the option  best completes the gap(s) .','','d','','utme','2008',3756,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:46'),(427,'The condition of the room was so………... so I went outside ','intolerant','intolerable ','inconstant ','invariabl ','choose the option  best completes the gap(s) .','','b','','utme','2008',3803,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(428,'You don\\'t like Mathematics, ........... you?','do','don\\'t','cant ','can ','choose the option  best completes the gap(s) .','','a','','utme','2008',3787,'Admin','0000-00-00 00:00:00','2020-07-23 11:15:54'),(429,'They have had their debt written ........... by their creditors.','down ','on ','up ','off','choose the option  best completes the gap(s) .','','d','','utme','2008',3726,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:20'),(430,'Uncle Ochai now has enough money to complete his…….. building.','two storey ','two-storeyed ','two-story ','two storeyed ','choose the option  best completes the gap(s) .','','a','','utme','2008',3688,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(431,'By the end of this month……….for three years in this school.','I will study ','I  will have been studying ','I  am studying','I had been studying ','choose the option  best completes the gap(s) .','','b','','utme','2008',3820,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:36'),(432,'He ……… the picture on table','laid ','lay ',' lied  ','Iain ','choose the option  best completes the gap(s) .','','a','','utme','2008',3772,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(433,'Sc<u>oo</u> led ','cold ','could ','court','you','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3689,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(434,'sh<u>ir</u> t  ','shut ','shade','surf','shed','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','c','','utme','2008',3740,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:19'),(435,'w<u>ai</u> st ','fete ','says','plait','breakfast ','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3672,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(436,'<u>th</u> atch ','clothing   ','mother','then ','method','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2008',3701,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(437,'<u> ch</u> ateau  ','chart    ','church ','champagne',' chemical.','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2008',3724,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(438,' ju<u>dge</u> ','measure','General ','Pressure','Grace ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2008',3795,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:49'),(439,'','distress','control','bottom','report','choose the option has a different stress pattern from the others.','','c','','utme','2008',3839,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(440,'','original','deplorable','ability','revolution','choose the option has a different stress pattern from the others.','','d','','utme','2008',3767,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(441,'','release','exit','exchange','explode','choose the option has a different stress pattern from the others.','','b','','utme','2008',3728,'Admin','0000-00-00 00:00:00','2020-07-23 11:41:14'),(442,'','bachelor','forget','cement','ago','choose the option that has the stress on the first syllable.','','a','','utme','2008',3739,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(443,'','librarian','immunize','militia','continuous','choose the option that has the stress on the first syllable.','','a','','utme','2008',3804,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(444,'','july','litereture','august','oesophagus','choose the option that has the stress on the first syllable.','','d','','utme','2008',3691,'Admin','0000-00-00 00:00:00','2020-07-22 22:19:38'),(445,'xenophobia   ','XEndphobia   ','xeNOphobia',' xenoPHObia     ','xenophoBIA.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2008',3759,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(446,'photography ','phoTOgraphy   ','PHOtograhy',' photoGRAphy   ','photograPHY','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2008',3665,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(447,'melodramatic ','MEIodramatic  ','meLOdramatic',' meloDRAmatic ','melodraMAtic.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2008',3744,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:47'),(448,'It was our collective idea but Ado was doing every­ thing to steal the snow  ',' Ado was not part of the planning but he tried to rub us of the benefits of it.',' We planned the show together out Ado was trying to abort it. ','It was a joint project but Ado is trying to attract the most attention','We collated the idea for the show but Ado was trying to steal the programme.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3728,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:35'),(449,'As we watched, he just popped along to the shop for some bread  ',' He has walked slowly to the shop.',' He stole some bread from the shop but we could not stop him',' He broke into the bread shop before our very eyes    ','He went quickly to the shop for some bread.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3643,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(450,'In all ramifications, Chief Adeyemi was a successful principal of the school','He was partly a failure and partly a success    ','Everyone admitted that he was largely successful during his tenure ','He was not totally successful in the school  ','His tenure witnessed a huge success ','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3839,'Admin','0000-00-00 00:00:00','2020-07-23 11:56:21'),(451,'I couldn\\'t buy the biscuit because of the hold-up in the supermarket. ','The shop had not opened.','The attendant was slow  ',' Armed robbers were',' There was nobody to attend to me.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3734,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(452,'You could have heard the sound, if you weren\\'t asleep.','You were not asleep so you heard the sound.','You were asleep so you did not hear the sound.','You heard the sound though you were asleep.','You did not hear the sound though you were not asleep','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3759,'Admin','0000-00-00 00:00:00','2020-07-22 21:01:02'),(453,'Musa will not well because he has an itching palm.','He has rashes in his palm ','He is always looking for something to touch ','He is always read to accept bribe','He is always tapping people on the back','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3884,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(454,'Emeka was always conspicuous by his absence when it came to attending lecturers.','That Emeka always attended lecturer made him conspicuous at school.','Emeka’s absence from lecturers was all too glaring. ','It was obvious that Emeka was not present at lectures   ','What made Emeka conspicuous was his occasional absence from school','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3786,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:00'),(455,'He was injured by friend fire. ','He was wounded in a war by a friend of his who fired a shot mistakenly.','He was injured by a gunshot that was fired by a friend. ','He was gut in a war by a weapon fired by his own side    ','it was a war and he was hit by a bomb fired by an unknown soldier.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3673,'Admin','0000-00-00 00:00:00','2020-07-23 11:49:41'),(456,'Kola visits us on occasions, and I don\\'t like that.','I do not like Kola because he visits us only when an event is being celebrated. ','I hate the fact that Kola only visits us when something is being celebrated.','That Kola does not visit us often is something I object to.   ','Kola seldom visits us and that is because he is a fair-weather friend.','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3673,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(457,'At the time I arrived, Olu was lying in third place.',' Olu\\'s third position coincided with my arrival.',' When I arrived Olu was sleeping in the space reserved for him.',' It was a competition and Olu was in third position when I arrived. ','On my arrival at the competition, Olu went to sleep.','select the option that best explains the information conveyed in the sentence. ','','a','','utme','2009',3600,'Admin','0000-00-00 00:00:00','2020-07-14 14:48:03'),(458,'We had difficulty eating the meat because was <i>leathery.</i>   ','bitter    ','stringy ','tough ','tender.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3766,'Admin','0000-00-00 00:00:00','2020-07-27 11:27:30'),(459,'The boy is <i>indolent</i> to do well at school?','intelligent ','industrious  ','inactive  ','stothful.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3737,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(460,'Salasi\\'s <i>tremendous</i> effort has yielded results.','absolute  ','insignificant  ','unimaginable','prohibitive','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3730,'Admin','0000-00-00 00:00:00','2020-07-23 11:47:16'),(461,'The <i>computerised</i> service of the new banks is heart­  warming. ','manual ','mechanical ','electrical','condensed.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3679,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(462,'Life has become a <i>misery</i> for many owing to the harsh economic condition in the country','drudgery   ','ridicule   ','ritual ','comfort. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3742,'Admin','0000-00-00 00:00:00','2020-07-23 11:15:54'),(463,'The company director has a <i>vivacious</i> personality. ','a positive ','an unmanageable','an unimpressive ','a gregarious.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3685,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(464,'Young people have a <i>penchant</i> for fast cats ','likeness','passion ','madness ','dislike. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3658,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:45'),(465,'Most of his latest actions are <i>militant</i> in nature ','commanding ','civil ','zealous ','passionate. ','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3814,'Admin','0000-00-00 00:00:00','2020-07-23 11:49:41'),(466,'His ideas sounded quite palatable yet they were <i>jettisoned</i> by the group, ','accepted ','clumped ','denied ','criticized.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3804,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(467,'The compulsory leave made her feel <i>listless</i>',' restful   ',' great  ',' fat   ','energetic.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3764,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(468,'A novel is an <i>embellished</i> \\' falsehood\\', said the teacher','enriched ',' exaggerated ','adorned ','Obliterated.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3759,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(469,' I have had enough of your <i>impudence</i>','politeness ','incivility ','arrogance ','boldness.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3519,'Admin','0000-00-00 00:00:00','2020-07-23 16:14:14'),(470,'We were <i>collectively</i> responsible for keeping the machine in good shape.','jointly ','severally ','dutifully ','socially.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3844,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:37'),(471,'His comment was not <i>printable</i>','punishable  ','suitable ','offensive ','unfair.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3691,'Admin','0000-00-00 00:00:00','2020-07-23 16:30:19'),(472,'<i>Curiously,</i> he escaped unhurt ','interestingly','unsurprisingly ','annoyingly ','unusually.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3807,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(473,'Agwube\\'s explanation of her poor performance at the examination only <i>begged the question.</i>','delayed her punishment   ','sounded quite convincing ',' did not address the issue','overflogged the matter','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3754,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(474,'We have every need to preserve some of our national monuments for <i>posterity.</i> ','prosperity ','future','national pride   ','collective gain.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3813,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(475,'He <i>commands</i> the confidence and respect of all his subordinates ','requests',' enjoys   ','enforces','conjures.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3782,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(476,'The president has mapped out so many <i>laudable</i> projects to embark upon ','laughable   ','good',' praiseworthy   ','valuable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3731,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(477,'Adamu\\'s father is a <i>stern</i> man ','wicked ','strict','playful ','conservative.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3702,'Admin','0000-00-00 00:00:00','2020-07-23 11:25:45'),(478,'Nobody knew the source of the <i>altercation</i> between the couple  ','alter ego ','quarrel   ','deep love','wealth.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3654,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(479,'His poetry is said to be <i>inscrutable  </i> ','ludicrous','unlearnable ','inseparable ','mysterious.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3744,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(480,'Hers was a <i>specious</i> argument about the government of the day ','misleading ','precious ','spacious ','true.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3765,'Admin','0000-00-00 00:00:00','2020-07-23 11:20:20'),(481,'The Lagos bus conductor r wore his professional <i>livery</i>','badge   ','shoe ',' uniform ','cap.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3817,'Admin','0000-00-00 00:00:00','2020-07-22 22:19:37'),(482,'If Joy hadn\\'t been <i>tripped up</i> halfway through the race, she would have came first  ','discouraged','disqualified ','interrupted   ','exhausted.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3782,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(483,'There must be something <i>sinister</i> about her late arrival','reasonable ','joyful ','hopeful ','ominous.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3802,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:23'),(484,'The <i>unification</i> of the country has brought about great technological advancement ','A restoration','agreement','cohesion ','stability.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3821,'Admin','0000-00-00 00:00:00','2020-07-23 12:27:53'),(485,' His <i>amnesia</i> has affected his career ','loss of focus','loss of sight','loss of memory ','loss of direction.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3708,'Admin','0000-00-00 00:00:00','2020-07-23 11:49:41'),(486,' Idris\\' <i>forbearance</i> endeared him to us ','hard work','patience ','wisdom ','good manners.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3637,'Admin','0000-00-00 00:00:00','2020-07-23 12:26:14'),(487,'They hated the police and, by <i>implication,</i> me','extension',' inference ','examination','application','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3723,'Admin','0000-00-00 00:00:00','2020-07-20 14:23:24'),(488,'He is really very mean. He…… not lend me the money I wanted. ','should ','could  ','would','won\\'t  ','choose the option that best completes the gap(s).','','c','','utme','2009',3722,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:45'),(489,'When the cashier told him to join the queue, he considered it……. his dignity.','a drawback to ','an affront on','withdrawal from  ','a strain on ','choose the option that best completes the gap(s).','','b','','utme','2009',3750,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(490,'If anyone greets you, it is only polite to return….. Greeting','your  ','the one\\'s   ','Anyone\\'s ','one\\'s ','choose the option that best completes the gap(s).','','d','','utme','2009',3650,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(491,'Amina lives…..  campus.','in the. ',' on','at the ','inside','choose the option that best completes the gap(s).','','b','','utme','2009',3782,'Admin','0000-00-00 00:00:00','2020-07-22 22:15:35'),(492,'An acceptance of the offer would be a departure from the several rejections that….. ','had taken place ','have taken place','take place ','took place ','choose the option that best completes the gap(s).','','a','','utme','2009',3755,'Admin','0000-00-00 00:00:00','2020-07-22 21:20:41'),(493,' The….. part of a new book is often written by a more experienced writer than the author. ','foreward','foreword','forward  ','forword  ','choose the option that best completes the gap(s).','','b','','utme','2009',3819,'Admin','0000-00-00 00:00:00','2020-07-22 22:19:37'),(494,'The officer acted in….. the instructions. ','accordance ','accordance to','accordance of','accordance with ','choose the option that best completes the gap(s).','','d','','utme','2009',3664,'Admin','0000-00-00 00:00:00','2020-07-23 11:47:15'),(495,'The bomb was... …….','detonated  ','dismantled ','deactivated ',' depleted','choose the option that best completes the gap(s).','','a','','utme','2009',3733,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(496,'If you want to succeed in life, don\\'t be envious….. other people\\'s achievement ','of     ',' to    ','with    ','on','choose the option that best completes the gap(s).','','a','','utme','2009',3748,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(497,'They are taught to value honour….. their lives.  ','from','in',' than ','above','choose the option that best completes the gap(s).','','b','','utme','2009',3793,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(498,'Our plan for the trip fell............when the rich man did not give us a life….. ?','off/boat','through/line','down/jacket ','in/help','choose the option that best completes the gap(s).','','b','','utme','2009',3730,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:21'),(499,'1 missed the match though it was shown on television on  two…….. nights. ','concurrent ','consistent ','concrete ','conservative ','choose the option that best completes the gap(s).','','d','','utme','2009',3661,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:35'),(500,'The company paid some money to Abu to... …..  him for the losses he suffered during the accident.','indemnify ',' condole with ','settle ','recompense','choose the option that best completes the gap(s).','','a','','utme','2009',3827,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:37'),(501,'You are just-putting the hat on. ……?','don\\'t you  ','isn\\'t it ',' aren\\'t you  ','not so','choose the option that best completes the gap(s).','','c','','utme','2009',3792,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:34'),(502,'Government\\'s frowned upon politicians who are out to…….... Wealth','gain  ',' amass  ','steal ','waste','choose the option that best completes the gap(s).','','b','','utme','2009',3831,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(503,'I tried to discourage him, but he persisted……… revealing the secret to his son','for  ','in','  on ','to ','choose the option that best completes the gap(s).','','b','','utme','2009',3889,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(504,'He was determined to……... all opposition into submission','push ','cow ','box   ','pound ','choose the option that best completes the gap(s).','','b','','utme','2009',3821,'Admin','0000-00-00 00:00:00','2020-07-23 11:15:54'),(505,'I am told that the market is.-, in to the interests of people from all ………….of life','tuned/walks ','constructed /places ','designed/places  ','set/works ','choose the option that best completes the gap(s).','','a','','utme','2009',3811,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:01'),(506,'Uche has been in ……….with his pen pal  for years.','exchange','correspondence ','favour  ','cord','choose the option that best completes the gap(s).','','a','','utme','2009',3697,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:22'),(507,'Abba became …….... about his inability to pass the examination.','despondent ','disenchanted ','dogmatic','joyful','choose the option that best completes the gap(s).','','a','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(508,'c<u>aug</u>ht','hot','water','sup','wrong','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','b ','','utme','2009',3773,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(509,' c<u>ou</u>ntry','worry','courteous','bought','poultry','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','a','','utme','2009',3719,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(510,' tr<u>a</u>p','wonder','because','plait','quantity','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','c','','utme','2009',3688,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:21'),(511,'  re<u>s</u>t','result','show','unasked','wise','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3697,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(512,'  <u>th</u>ought','taught','weather','theatre','fate','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3749,'Admin','0000-00-00 00:00:00','2020-07-23 11:27:05'),(513,'sheer','dear','shirt','spare','shade','choose the option that rhymes with the given word.','','a','','utme','2009',3697,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(514,'great','creek','crate','knit','treat','choose the option that rhymes with the given word.','','b','','utme','2009',3777,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(515,'own','brown','frown','gown','phone','choose the option that rhymes with the given word.','','d','','utme','2009',3899,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:36'),(516,'ceremoniously ','CEremoniously   ','ceREmoniously','cereMOniously      ','ceremoNlously.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2009',3806,'Admin','0000-00-00 00:00:00','2020-07-23 16:38:35'),(517,'  understandable ','unDERstandable','understandABLE','UNderstandable ','underSTANDable.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2009',3722,'Admin','0000-00-00 00:00:00','2020-07-23 11:12:08'),(518,' management ','MAnagement ','maNAgement','manaGEment ','manageMENT','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2009',3782,'Admin','0000-00-00 00:00:00','2020-07-23 12:21:21'),(519,'I AM called Uche a pilot. ','What did Lam call Uche',' Did Okoro call Uche a pilot?    ','Did I am Uche a driver? ','Did Lam wish Uche to be a pilot?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','b','','utme','2009',3786,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(520,'The girl DANCED in the village square.   ','Who danced  in the village square?  ',' Is this the village square where the girl danced? ','Did the girl dance in the village square? ','Did the girl sing in the  village square?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','d','','utme','2009',3724,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(521,'My father READ the newspaper.','Did my father steal the newspaper? ','Who read the newspaper?',' What did my father read?','Whose father read the newspaper?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','a','','utme','2009',3701,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(522,'Though Mr, Iro is our new chairman, he views other members with jaundiced eye, ',' He takes a rather forceful position on dealing with his members.','He takes an unfavourable position concerning his members','He takes a sickly view of his members. ','He takes a rather hazy view of his members.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3873,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(523,'People are not interested in who rules ','People are not ruled by the leaders they want ','People are not concerned about who rules them ','The rulers are not concerned about the people ','People who rule are not interested in the ruled.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3877,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(524,'It is always good to steer a middle course in whatever one does. ','It is always good to get midway in anything one does. ','It is always good to act with moderation. ','It is always good to move away from the forefront','It is always good to work very hard.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3804,'Admin','0000-00-00 00:00:00','2020-07-27 07:14:53'),(525,'The witness said he had no axe to grind with his brothers.',' He had no hatred for the brothers ','He had no axe and therefore stole the matchet ','He had no axe and therefore borrowed their matchet ','He had no vested interest in the brothers.',' select the option that best explains the Information conveyed In the sentence. ','','d','','utme','2010',3850,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(526,'The footballers moved with their tails between their legs.','They moved happily because they won the match','They were unhappy because they had been despised  by their opponents. ','They were ashamed because they had been defeated ','they moved with their tails between their legs.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3925,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(527,'The headmaster managed to talk his way out of having  to give a speech ','He delivered a speech despite the difficulty ','He managed to give a speech out of a difficult situation ','He managed to get himself out of a difficult situation','He managed to talk on his way.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3823,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(528,'As regards the matter, we have crossed the rubicon','We are completely at a toss','We are irrevocably committed ',' We are already quaffed','We are perfectly committed.  ',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3802,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(529,'Uche is full of himself ','He is concerted ','He is complete  ','He is a rich man ','He is careful.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3797,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(530,'As debutants in that tournament, the Super Eagles were up against their first opponents by three goals to nil','The Super Eagles were playing in the tournament for the first time, but they won their match by three goals to nothing ','Though the Super Eagles were rated as the weakest side in the tournament they won their first match by three goals to nil ','Even though the Super Eagles were playing without some of their regulars, they won their match by three goals to nil.','As the best attackers in the match. the Super Eagles easily defeated their opponents by three goals to nothing.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3846,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(531,'The woman was mournful as her husband was found dead drunk  ','She was sad because her husband was absolutely drunk ','She was apprehensive that her husband would drink again as soon as he recovered from the drunken stupor. ','She was sad because her husband was drunk and always as helpless as a dead  man ','She was mourning because her husband drank and died.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3787,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(532,'I am optimistic about the Interview though It was a <i>mind- bending</i>  exercise, ','an enervating ','a debilitating','a difficult ','an easy','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3854,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(533,'The trader was amused by the  <i>cutthroat</i>  rush for the goods ','worrisome','strange ','lacklustre ','mad','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3862,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(534,'The teacher said that All\\'s essay was full of many  <i>redundant</i>  details ','unexplained ','strange','necessary ','useful','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3830,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(535,'His father surmounted the  <i>myriad</i>  of obstacles on his way ','most ','few ','all ','many','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3811,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(536,'Her  <i>ingenuous</i>  smile drew our attention ','witty',' naive ','clever ','arrogant','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3872,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(537,'Ndeni gave a  <i>flawless</i>  speech at the party ','a wonderful ','a careless ','an interesting ','an imperfect','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3918,'Admin','0000-00-00 00:00:00','2020-07-24 15:47:26'),(538,' Beneath Ado\\'s  <i>guff</i>  exterior, he\\'s really very kind-hearted','nice','harsh ','rough ','gentle','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3797,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(539,'The captain says sports is being  <i>debased</i>  by commercial sponsorship ','localized ','perverted','elevated ','overvalued','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3769,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(540,'Governing a country is not always as  <i>straightforward as</i>  people sometimes imagine.','complicated','troublesome   ','untoward   ','Irksome','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3686,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(541,'The crowd was very  <i>receptive </i>  to the speaker\\'s suggestion ','disobedient ','repellent ','alert','Hostile','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3820,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(542,'There was a general  <i>acquiescence</i>  on the new drug law ','resistance ','discrepancy ','compromise','agreement','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3810,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(543,'Aisha seems to feel  <i>ambivalent</i>  about her future','decisive ','anxious ','ambitious ','inconsiderate','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3729,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:36'),(544,'The report of the committee contained a  <i>plethora</i>  of details',' shortage ','simplicity ','multitude',' spectrum','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3787,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(545,'The weather was still very  <i>heavy and sultry </i> ','wintry and shadowy ','cold and friendly ','cloudy and thundery','hot and uncomfortable','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3717,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(546,'Ada gave her husband a look that made words  <i>superfluous</i> ','redundant ','spurious ','unnecessary',' scanty.','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3870,'Admin','0000-00-00 00:00:00','2020-07-23 16:21:44'),(547,'A political  <i>impasse</i>  does not offer the best opportunity for merrymaking ','manifesto ','party ','gridlock',' rally','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3848,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(548,'We were all  <i>enthusiastic</i>  as we awaited the result of the election ','bemused ','agitated ','elated','nervous','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3882,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(549,'The uniform makes the guards look  <i>absurd</i>  ','dirty','smart ','sensible','ridiculous','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3787,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(550,'The law is often  <i>tardy</i>  in reacting to changing attitude',' quick','low ','exclusive ','generous','choose the option nearest  in meaning to the word or phrase in Italics.','','b','','utme','2010',3861,'Admin','0000-00-00 00:00:00','2020-07-28 03:03:38'),(551,'Isa and llu  <i>ate sumptuous</i>  meals on their brother\\'s wedding day','expensive ','foreign ','insipid','cheap','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3885,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(552,'Kaltume  <i>crouched</i>  over the papers on her desk ','wrote on  ','stood on ','walked over','bent over','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3786,'Admin','0000-00-00 00:00:00','2020-07-23 12:26:13'),(553,'The <i> panacea</i>  for a country\\'s economic mess lies in systematic planning and hard work ','cure  ','hope','foresight ','trouble','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3964,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(554,'Thousands of workers have been victims of  <i>retrenchment</i>  since the military came back to power.','unemployment ','trench mentality ','suffering ','increase in penury','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3762,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(555,'The principal gave his speech   <i>off hand</i>  at the sports  meeting ','calmly ','Beautifully ','unconcerned','unprepared','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3716,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(556,'Jankoli was dressed in an old  <i>assortment</i>  of clothes','avalanche ','homogeneity ','sameness','melange','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3818,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(557,'The girl\\'s father was  <i>astounded</i>  to see her appear from the shrine ','collected ','overwhelmed','embarrassed ','astonished','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3766,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(558,'The director\\'s remark was extremely  <i>apposite</i>  to the issue being discussed ','appropriate','inconsequential ','emphatic ','adequate','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3899,'Admin','0000-00-00 00:00:00','2020-07-25 13:48:39'),(559,'Her reputation is without a  <i>blemish </i> ','struggle','problem ','fault ','blessing','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3813,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(560,'Ugo is  <i>eligible</i>  for the post of secretary ','nominated','invited','qualified ','intelligent','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3746,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:50'),(561,'This is an  <i>abridged</i> version of No Longer at Ease','an outdated    ','an enlarged ','an illustrated ','a shortened','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3878,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(562,'Lemoti ………..','is gifted only not ','is only not gifted  ','not only ','is only gifted','choose the option that best completes the gap(s)','','b','','utme','2010',3930,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(563,'He can recall the important dates in the nation\\'s history; it is interesting to listen as he rattles…….','off','over','up   ','out','choose the option that best completes the gap(s)','','a','','utme','2010',3730,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(564,'The boy told his mother','that was the girl he told her about ','that was the girl I told you about her','that was the girl I told her about ','that is the girl he told her about','choose the option that best completes the gap(s)','','a','','utme','2010',3904,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(565,'Last Monday his father asked me, .......','if\\' had come some days before ','if I had come the day before','did you come yesterday ','had I come yesterday','choose the option that best completes the gap(s)','','a','','utme','2010',3841,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(566,'His wife was badly injured in the fracas, but I think  she will pull','up  ','over ','through ','back','choose the option that best completes the gap(s)','','c','','utme','2010',3832,'Admin','0000-00-00 00:00:00','2020-07-25 13:48:39'),(567,'A wide range of options','is ','were   ','are',' was','choose the option that best completes the gap(s)','','d','','utme','2010',3720,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(568,'One of the women who .... in the premises.... been  ordered to quit ','sells/have ','sell/has  ','sell/have','sells/has','choose the option that best completes the gap(s)','','b','','utme','2010',3733,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(569,'The new trade agreement should facilitate…..... ','more economic rapid growth  ','economic more rapid  growth ','rapid economic more growth   ','more rapid economic growth.','choose the option that best completes the gap(s)','','d','','utme','2010',3861,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(570,'The principal said that he was pleased......... my effort.',' on ','of ','with','about','choose the option that best completes the gap(s)','','c','','utme','2010',3810,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(571,'Paper is made…….. wood pulp ','on ','of ','from ','with','choose the option that best completes the gap(s)','','c','','utme','2010',3768,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(572,'Long after everyone…... the hall, Obi still sat inside.','left','is leaving ','has left','had left','choose the option that best completes the gap(s)','','d','','utme','2010',3824,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(573,'They are the.... dresses ','babys\\' ','baby ','babies','babies\\'','choose the option that best completes the gap(s)','','d','','utme','2010',3835,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(574,'The politician was sent …….. exile','onto ','into','on ','to','choose the option that best completes the gap(s)','','c','','utme','2010',3805,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(575,'When we looked up, we …….... the plane some miles away. ','site ','cited ','sited ','sighted','choose the option that best completes the gap(s)','','d','','utme','2010',3862,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(576,'Vital... is still spread ……..... word of mouth in most villages in Africa. ','information/from  ','information/with','information/by ','information/through ','choose the option that best completes the gap(s)','','c','','utme','2010',3744,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(577,'Western  education is one of the ... of colonial rule','legacies  ','evidence ','remnants ','inheritance ','choose the option that best completes the gap(s)','','a','','utme','2010',3786,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(578,'The Federal Government has .... child trafficking ','postulated  ','projected ','prescribed ','proscribed','choose the option that best completes the gap(s)','','d','','utme','2010',3940,'Admin','0000-00-00 00:00:00','2020-07-27 08:58:42'),(579,'The man was happy that his son confessed his guilt and so the others were .... ','implicated','accused ','punished ','Exonerated','choose the option that best completes the gap(s)','','d','','utme','2010',3812,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(580,'  Based on the facts before me, I have no alternative...........to hold you responsible ','only ','as ','than ','but','choose the option that best completes the gap(s)','','c','','utme','2010',3830,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(581,'Many people would always find reasons to ... the law','arrogate ','debase  ',' circumvent ','circumspect','choose the option that best completes the gap(s)','','c','','utme','2010',3705,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(582,'c<u>oup</u> ','whup  ','shoot ','couple ','scout','choose the option that has the same vowel sound as the one represented by the letters underlined.','','b','','utme','2010',3920,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(583,'ind<u>i</u>ct ','bright   ','fish ','pick ','brick','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3749,'Admin','0000-00-00 00:00:00','2020-07-26 20:22:56'),(584,'r<u>oa</u>red ','towered ','coast ','brought ','rod','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3767,'Admin','0000-00-00 00:00:00','2020-07-23 15:55:35'),(585,'shea<u>th </u>','bathe ','length ','months ','paths','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2010',3812,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24'),(586,'<u>h</u>igh ','what  ','honest ','who ','vehicle','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3881,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(587,'o<u>f </u>course  ','plough ','dough ','over ','orphan','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3759,'Admin','0000-00-00 00:00:00','2020-07-27 11:42:13'),(588,'boys ','stays  ',' moist ','noise ','elbows','choose the option that rhymes with the given word.','','c','','utme','2010',3940,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(589,'shine ','clean ','fine ',' machine ','lain','choose the option that rhymes with the given word.','','c','','utme','2010',3681,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(590,'seer ','snare   ','spare','spear ','square','choose the option that rhymes with the given word.','','c','','utme','2010',3739,'Admin','0000-00-00 00:00:00','2020-07-23 12:18:30'),(591,'political ','politiCAL  ','POlitical','poliTlcal','poLltical','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3887,'Admin','0000-00-00 00:00:00','2020-07-27 17:35:32'),(592,'satisfactory ','satisfacTORY  ','saTISfactory','SATisfactory ','satisFACtory','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3716,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(593,'captivity ','captiviTY   ','captiVIty  ','capTlvity','CAPtivity','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','c','','utme','2010',3730,'Admin','0000-00-00 00:00:00','2020-07-26 08:30:54'),(594,'EMEKA finished his home work yesterday ','Was Emeka helped to do his home work? ','Did Emeka do his home work yesterday?','When did Emeka finish his home work? ','Who finished his home work yesterday','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','d','','utme','2010',3773,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:26'),(595,'Taiwo SAILED to London','Did Taiwo fly to London?',' Did Taiwo sail to Brazil','Did Taiwo sail to London?','Where did Taiwo sail to?','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','a','','utme','2010',3754,'Admin','0000-00-00 00:00:00','2020-07-26 19:53:02'),(596,'My bag is made of LEATHER ','Whose bag is made of leather? ','Is my bag made of polythene? ','Is Abu\\'s bag made of leather? ','Is my bag made of leather','the word in capital letters has the <i>emphatic stress.</i> Choose the option to which the given sentence relates','','b','','utme','2010',3799,'Admin','0000-00-00 00:00:00','2020-07-25 17:53:24');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `englishlit` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `englishlit` VALUES (1,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son','question is on William Shakespeare\\'s hamlet','','d','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:31'),(2,'Prince Hamlet refrains from killing King Claudius while the latter is praying because ','he does not want to murder a pious man ','he is not yet fully convinced of his uncle’s guilt  ','King Claudius might thereby gain eternal life ','murder of a person paying is an unpardonable sin ','question is on William Shakespeare\\'s hamlet','','b','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:32'),(3,'Which of these best describes setting in a novel? ','the place where an event takes place ','the time when an event takes place ','the place and time of an event ','the back ground of an event ','question is on William Shakespeare\\'s hamlet','','c','','post-utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:32'),(4,'The farm Flincomb-Ash is symbolic of: ','Tess\\'s fallen state ','Tess\\'s innocence ','Tess\\'s happiness ','the suffering and ill-luck that is Tess\\'s fate','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','d','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:33'),(5,'Prince, in the novel, is','the title of Tess\\'s ravisher ','Angel Clare\\'s other name  ','the name of a horse ','the name of Tess\\'s brother ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','c','','post-utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:34'),(6,'The period Tess spends at Talbothays is the period of her:','the happiest period of her life ','the period she suffers most horribly in the novel ','the period she falls into temptation ','the period when she became pregnant ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','a','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:35'),(7,'The play starts with a ','flashback ','prayer ','muezzin ','dialogue ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:36'),(8,'Caliph: \\\"Atthiru invites Mallam because ','Mallam has offended the caliph ','Mai Worno needs to be talked to ','Attahiru wants Mallam to explain the dream he had ','Mallam and Mai Wurno are friends ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:38'),(9,'Caliph: \\\"You have spoken well. I agree with the Waziri\\' s suggestion. You shall be organize your men and build in new well in the market. “That is our judgement\\\". What informed this statement? ','Waziri fight with the white man ','Waziri\\'s disagreement with Sarkin Zango ','the dispute between Caliph Attahiru and Prince Muhammed al-Tahir  ','the dispute between Sarkin Zango and Sarkin Fatake.','question is on Attahiru, Ahmed Yerima\\'s play','','d','','post-utme','2006',126,'Admin','0000-00-00 00:00:00','2020-07-26 04:38:32'),(10,'A five-line poem that treats a nonsensical subject with humour is a ','quartet ','limerick  ','panegyric  ','sestet.','','','b','','post-utme','2006',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:40'),(11,'Which of the following statement is most true about poetry?  ','the meanings of words are more important than their sounds  ','the sounds of words are more important than their meanings  ','the sounds of words are often more important than their meaning  ','sounds and meanings of words are of little consequence ','','','a','','post-utme','2006',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:40'),(12,'The expression “coin of gold” in “Naett, coin of gold” is ','personification ','epithet  ','metonymy  ','metaphor ','','','d','','post-utme','2006',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:41'),(13,'What figure of speech is “shining coal”?  ','paradox ','irony  ','oxymoron','paronomasia','','','c','','post-utme','2006',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:42'),(14,'The rhythm of the poem “Serenade” is  ','blue  ','jolting  ','jerky ','measured','','','c','','post-utme','2006',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:43'),(15,'Which of these best defined exposition in drama? ','the author’s own general introduction to the play  ','the author’s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals ','the first performance of the play on stage ','','','c','','post-utme','2006',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:44'),(16,'The tone or mood of the speaker in the poem is:  ','neutral  ','angry  ','happy  ','sad ','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.\\nAnd a few leaves lay on the starving sod,\\n…. They had fallen from an ash, and were gray\\n','','d','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:45'),(17,'Starving sod\\\" here is: ','a metaphor ','a personification ','a simile ','a paradox.','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.','','b','','post-utme','2006',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:46'),(18,'In Leopold Sedar Senghor\\'s \\\"I will pronounce Your Name\\\" Naeth represents ','Africa ','Senegal ','the poet\\'s mother ','the poet\\'s lover.','','','b','','post-utme','2006',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:47'),(19,'In Ofeimu\\'s \\\"we must learn Again to fly\\\" \\'Cumulus\\' symbolizes ','acloud ','old age ','sounded masses ','black hair.','','','b','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:48'),(20,'A brief but witty expression is called: ','song ','epigram','enecdote ','joke ','','','b','','post-utme','2006',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:49'),(21,'Pastoral poetry refers to the poetic composition of ','clergyman ','friare ','scops ','shepherds.','','','d','','post-utme','2006',141,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:49'),(22,'A literary composition that employs wit and humor to ridicule person or institution is','drama ','satire','norella ','clergy.','','','b','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:50'),(23,'In a tragedy, the moment when the protagonist suffers a reversal of fortune is know as ','eatharsis ','exposition ','enagnonsis ','peripeteia ','','','d','','post-utme','2006',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:51'),(24,'“When he was turned over, his eyeballs stared upward in amazement and horror, his mouth was locked torn wide: his trouser soaked with blood, were torn  open, and exposed to the cold , white air of morning the thick hairs of his groin, mattered together, black and rust red, and wound that seemed to be throbbing still\\\". This passage achieves realism through the use of ','details ','simple words ','the long sentence ','the past tense ','','','a','','post-utme','2007',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:02'),(25,'Earth has not anything to; show more  fair. Dull would he be of soul who could pass by a sight so touching in its majesty. This city now doth, like a garment, wear the beauty of the morning. It is suggested in this line that ','the beauty of the morning gains from the beauty of the city',' the beauty of the city gains  from the beauty of the morning','the beauty of the city and the beauty of the morning are unrelated ','there is no beauty on earth.','','','d','','post-utme','2007',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:03'),(26,'\\\"Of 0 cam fasten nut one cup upon him with that which he had drunk tonight already. He\\'ll be as full of quarrel and offence as my young mistress\\' dog ... \\\" Shakespeare, Othello  from the statement above it can be inferred that the speaker is ','disobedient ','quarrelsome ','drunkard ','scheming ','','','d','','post-utme','2007',145,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:04'),(27,'\\\"That that is why we must acc-c-cept the universal d-d-dome, b-b-because there is no d-d-d-direction, The b-b-bridge is the d-d-dome of religion and b-b- bridges d-don\\'t just g-g-go from here to the there; a bridge also face backwards\\\". Wole Soyinka, The Interpreters. The idiolectical feature of the character\\'s speech is the ','repetition of consonant sounds ','repetition of initial consonant sounds ','duplication of consonant sound clusters ','multiplication of diphthongs.','','','c','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:05'),(28,'\\\"As virtuous men pass wildly away, and higher to their souls, to go,  Whilst some of their sad friends to say,  \\\"The breadth goes now\\\", and some say \\\"No\\\".  The tone of this poem is generally ','appreciative ','serious','imaginative ','conversational.','','','d','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:06'),(29,'I am alone, And the murmur of my lips carry song and tears homewards from a plain a way from home. Okogbule Wonodi. \\\"Lament for Shola\\\". The poet-persona here expresses a feeling of ','love ','anger ','nostalgia ','sorrow ','','','c','','post-utme','2007',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:07'),(30,'One rhyme scheme typical of the English sonnet is ','bba abba cde cde ','bba abba cde dce ','abab cdcd efef gg ','abcd babb cde cc','','','c','','post-utme','2007',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:08'),(31,'Face thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2007',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:09'),(32,'A short witty statement is an ','epistle ','eulogy','epigram ','anecdote','','','c','','post-utme','2007',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:10'),(33,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2007',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:11'),(34,'A literary device that creates a mental picture of a situation is ','imagery','symbolism ','flashback ','epilogue.','','','a','','post-utme','2007',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:12'),(35,'Periphrasis in poetic diction is marked by ','circumlocution ','irony ','proverb ','parable.','','','a','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:13'),(36,'A deliberate imitation of a literary style with the intention to ridicule is ','lampoon ','prosody ','pun ','parody.','','','d','','post-utme','2007',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:14'),(37,'What happened to Tess at the end of Thomas Herds Tess of the D\\'urbervilles?','She is executed for committing murder ','She got married to Angel Clare ','She got married to Alec D’Urbervilles ','She gave birth to a baby boy.','','','c','','post-utme','2007',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:14'),(38,'The wood where Alec raped Tess is known as: ','Chase borough ','The Chase ','Greenhill ','Trantridge.','','','b','','post-utme','2007',131,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(39,'The name of the place where Tess and Angel Clare meet each other the second time is: ','Tratridge ','Brazil ','Dubeyfield','Talbothays farm.','','','d','','post-utme','2007',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:16'),(40,'\\\"Taxi Driver\\\" in Timothy Wangusa\\'s \\\"A Taxi Driver on his Death\\\" can be interpreted as a metaphor describing ','a careful driver ','a ruthless dictator ','a drunkard ','a careless man.','','','b','','post-utme','2007',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:17'),(41,'The tone in Dennis Brutus\\' \\\"A Troubadour I Traverse .... \\\" can be described as: ','defiant ','submissive ','regretful ','arrogant.','','','a','','post-utme','2007',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:18'),(42,'\\\"Naett\\\" in Leopold Sedar Senmghor\\'s \\\"I will Pronounce you Name\\\" refers to: ','South Africa ','a women ','a man ','Black Africa.','','','d','','post-utme','2007',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:19'),(43,'\\\"Cloud I, early sequestered from my tribe, Free a lead - tethered scribe.\\\" The above lines\\' from J.P. Clark\\'s \\\"Agbor Dancer\\\" suggests that the persona is: ','one with his tribe ','alienated from his tribe ','one of the dancers ','one of the drummers.','','','b','','post-utme','2007',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:20'),(44,'The name of the author of \\\"We Must Learn to Fly\\\" is: ','Dennis Brutus ','Leopold Sedar Senghor ','Odia Ofeimun ','Wole Soyinka.','','','c','','post-utme','2007',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:21'),(45,'One of the following is a characteristic of a novel: ','It is written only in dialogues ','It adopts the poetic form ','It is written mainly in prose','It employs phrases and sentences.','','','d','','post-utme','2007',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:22'),(46,'The law protecting works of art from unlawful reproduction is called: ','plagiarism ','illegal photocopying ','It is written mainly in prose','copyright.','','','d','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:23'),(47,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son. ','','','d','','post-utme','2007',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:23'),(48,'What figure of speech does the following quotation contain? A life\\'s but a walking shadow (Macbeth)','a metaphor ','an image ','a synecdoche ','an allusion','','','a','','post-utme','2008',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:24'),(49,'Which of the following statement is most true about poetry? ','the meanings of words are more important than their sounds ','the sounds of words are more important than their meanings ','the sounds of words are often more important than their meanings ','sounds and meanings of words are of little consequence','','','a','','post-utme','2008',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:25'),(50,'Which of these best define exposition in drama?','the author\\'s own general introduction to the play ','the author\\'s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals','the first performance of the play on stage.','','','c','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:26'),(51,'When the speaker in a poem cannot be identified with poet, that speaker is called: ','a persona ','a dramatic persona ','a soliloquist','a ventriloquist.','','','a','','post-utme','2008',102,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:27'),(52,'Which of these definitions best described a lyric? ','a short poem','a short poem in which the poet is speaking','a poem expressing a personal idea, feeling or mood','a poem divided into stanza.','','','c','','post-utme','2008',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:28'),(53,'An autobiographical novel is: ','a novel written about another novelist ','a true account of a novelist\\'s life by himself ','a novel in which h the novel 1st draws mainly on materials from his own life ','a novel using the\\' I\\' pronoun.','','','c','','post-utme','2008',137,'Admin','0000-00-00 00:00:00','2020-07-17 15:08:25'),(54,'Plot in prose fiction is best defined as:  ','the cause and effect sequence of events  ','the brief summary of events  ','the central event  ','the subject-matter of a novel.','','','a','','post-utme','2008',139,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:30'),(55,'Which of these is not true about unity of action in a novel? ','action may be unified through a single main character  ','action may be unified by being set in one place  ','action may be unified by many characters  ','action may be unified by using set in one consistent point of view.','','','a','','post-utme','2008',149,'Admin','0000-00-00 00:00:00','2020-07-26 02:59:27'),(56,'Action in a novel is best defined as:  ','the summary of the novel’s story  ','what the characters do or say in the novel  ','the numerous sub-plots of the novel put together ','the totality of all the episodes in a novel leading to the conclusion','','','b','','post-utme','2008',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:32'),(57,'Suspense in a novel means:  ','the postponement of the hero’s death till the last possible moment ','the intense emotions that the author conveys  ','the inconclusive end of a novel  ','when we are curious about what happens next in a novel.','','','d','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:33'),(58,'A realistic novel is one in which the characters are:  ','real   ','historical ','just of above average intelligence  ','the types that we meet in everyday life.','','','a','','post-utme','2008',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:33'),(59,'Theme is best defined as:  ','the subject – matter of a novel or play ','the central idea in a play or novel  ','the point of view in that novel  ','the sum-total of all the characters’ experiences','','','a','','post-utme','2008',120,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(60,'What kind of repetition is used in the extract?  ','anaphora ','single word repetition  ','line repetition  ','phrase repetition.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:35'),(61,'A part from emphasis, what other effect does the repetition have?  ','makes the poem rhythmical  ','makes the poem tedious  ','makes the poem -notonous  ','makes the poem exhilarating.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',112,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:36'),(62,'The following line from a poem:  Western wind, when will thou blow? Is an example of: ','rhetorical question  ','caesura  ','alliteration  ','nature imagery.','','','a','','post-utme','2008',119,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(63,'Identify the odd one out of these types of imagery  ','visual imagery  ','tactile imagery  ','synesthesia  ','literal imagery.','','','d','','post-utme','2008',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:38'),(64,'When a poet uses mainly soft vowel sounds in a poem, the texture of the poem is ','mellifluous ','harsh ','assonantal ','neutral ','','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:39'),(65,'The sounds in the following lines may be described as an example of: The moan of doves in immemorial elms, and murmuring of innumerable bees ','alliteration ','euphony ','cacophony ','a mixture of all the above.','','','b','','post-utme','2008',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:40'),(66,'\\\"The man dies in him who keeps silent in the face of tyranny.\\\" This statement can be described as: ','Metaphoric ','Literal ','Tragic ','A smile.','','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(67,'The literary technique in which a reader is taken to the past of a current action in known as:','rewinding ','fast forward ','flashback ','repetition.','','','c','','post-utme','2008',132,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(68,'One rhyme scheme typical of the English sonnet is ','abba abba cde dce ','abba abba cde cde ','abab cdcd efef gg ','abcd babb cde cc.','','','c','','post-utme','2008',123,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(69,'The speaker of the above except is a ','son of Lord Montague ',' nephew to Lady Capulet ','kinsman to the Prince ',' servant to Paris.','\\\" ... This is a Montague, our foe; A villain, that is hither come in spit. To scorn at out solemnity this night. William Shakespeare: Romeo and Juliet I:V,61-63. ','','b','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(70,'In Gbemisola Adeoti\\'s \\\"Naked Soles\\\", the expression \\\"red milk of grief\\' means ','wine ','sea ','ink ','blood.','','','d','','post-utme','2008',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:44'),(71,'Farce thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2008',103,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:45'),(72,'A short witty statement is an ','epistle ','eulogy ','epigram ','anecdote.','','','c','','post-utme','2008',141,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:46'),(73,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2008',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:47'),(74,'Literary device that creates a mental picture of   a situation is ','imagery ','symbolism ','flashback ','epilogue','','','a','','post-utme','2008',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:48'),(75,'To whom does her in line 5 refers to?  ','God  ','Letter  ','World ','Nature','This is my letter to the world\\nThat never wrote to me\\nThe simple news nature told\\nWith tender majesty\\nHer message is committed\\nTo hands, I cannot see;\\nFor love of her, set countrymen,\\nJudge tenderly one me.\\n','','d','','post-utme','2009',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:49'),(76,'The suddenly her heart was whipped up, she now rode on strange waves: alone defying the wind and the rain; alone, fighting hunger and thirst in the desert, alone, struggling with strange demons in the forest bringing  glad tidings to her people. The mood of the lady in this  passage is one of ','simple defiance ','defeat  ','triumphant  ','depression','','','c','','post-utme','2009',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:50'),(77,'Mother, didn’t you hear me? I’ve brought the goat, hen and yams. Don’t you want them anymore? Why do you continue to look at me like that? I haven’t done anything wrong, again, have I, answer me, speak to me, mother’  The  dominant mood in this passage is one of ','sadness ','anxiety  ','anger  ','nonchalance.','','','b','','post-utme','2009',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:51'),(78,'What distinguishes poetry from other  forms of literature is its  ','Rhyme and verse ','rhythm and metaphor ','emotion and feeling  ','irony and paradox','','','a','','post-utme','2009',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:52'),(79,'Assonance poetry is the repetition of ','internal vowels in words ','consonant sounds in words ','final sounds at the end of a line 1 ','final sounds at the beginning of a line','','','a','','post-utme','2009',111,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:53'),(80,'There knells a jigger, a louse , a weevil, a flea, a bedbug! He is mistletoe, a parasite that lives on the trees of other people’s! the speaker uses a string of ','metaphors  ','parables  ','hyperboles  ','riddles','','','a','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:54'),(81,'As literacy form the short  story is most closely related to ','the discourse ','the novel  ','story telling  ','poetry ','','','b','','post-utme','2009',108,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:55'),(82,'A poem written on a grand theme, in an appropriately grand style, dealing, with heroic figures is called ','an epigram  ','an epic ','a soliloquy ','heroic poem','','','b','','post-utme','2009',115,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(83,'The literary device which uses ridicule to correct social ills is known as ','anecdote  ','saturation  ','hyperbole  ','satire.','','','d','','post-utme','2009',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:56'),(84,'Characterization is a novel means the ','list of characters featuring in it ','peculiar materialisms of the narrator ','mode of presenting the fictional individuals ','list of those that act the novel.','','','d','','post-utme','2009',135,'Admin','0000-00-00 00:00:00','2020-07-14 02:27:06'),(85,'Caricature is used to ','censure an individual by emphasizing his weakness ','expose the folly  in literature  ','ridicule a person by distorting his most prominent features ','elicit the artistic potential of dramatist.','','','c','','post-utme','2009',117,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(86,'The branch of knowledge that places emphasis on beauty is ','philosophy ','ode to pretty ','philology ','aesthetics.','','','d','','post-utme','2009',130,'Admin','0000-00-00 00:00:00','2020-07-14 02:29:26'),(87,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','‘You kiss her on the cheek \\nYou kiss her open-sore lips\\nAs white people do.\\nYou suck slimy saliva\\nFrom each other’s moths.\\nAs white people do.\\nOkot P’ Breck’s song of larie\\n','','b','','post-utme','2009',127,'Admin','0000-00-00 00:00:00','2020-07-14 02:23:34'),(88,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','','','d','','post-utme','2009',134,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(89,'‘Beholds her, single in the field you solitary Highland Lass! Reaping and singing, by herself stop here, or gently pass! Alone she cuts and blinds the gram, and sings a melancholy strain, O listen! For the Vale profound Is overflowing with the sound. The rhyming schema in the first stanza of The Solitary Reaper above is ','abcbddee ','ababccdd ','alxabcdd ','abcbddef','','','a','','post-utme','2009',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:02'),(90,'The tone of the poet is ','optimistic ','dupplicatory  ','sympathetic ','piteous','These only tears\\nDripping down the tears on your depressed face.\\nWill one day be staunche.\\nI swear’ \\n','','a','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:03'),(91,'The literary device  which anticipates that an event will take place is best described as ','parody ','flashback ','foreshadowing ','rising action ','','','c','','post-utme','2009',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:04'),(92,'The multiple deaths in the play serve as a punishment for ','impatience on the part of  Romeo and Juliet; ','imposing life partners on children ','disobedience of the protagonists  ','Tybalt’s fiery temper.','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:04'),(93,'Romeo’s death becomes inevitable because ','Emire Lawrence’s is not delivered: ','Juliet is married to Paris ','Romeo kills Tybalt in a duel ','Juliet has committed suicide.','Question is based on William Shakespeare’s Romeo and Juliet','','a','','post-utme','2009',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:05'),(94,'Before he met Juliet, Romeo was in love with ','country Paris ','Rosaline  ','Benvolio  ','Mercuito','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:06'),(95,'The major reason for Juliet’s  grief is ','The death of her cousin; ','her reluctant marriage to Romeo  ','the banishment of her lover ','her imminent death.','Question is based on William Shakespeare’s Romeo and Juliet','','c','','post-utme','2009',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:07'),(96,'Winston Smith begins his rebellion against the power of the state by ','educating the youth  ','keeping a private diary  ','purchasing arms ','disobeying Big Brother.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',138,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:08'),(97,'In the novel, Orwell attempts  to ','eulogizes the beauty of the socialist system; ','condemn the disgusting hypocrisy of all communist systems; ','satirize the artificiality  of a machine controlled society ','deride the political lock jam in Nigeria.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',125,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(98,'“The experts, of course disagree the urine test they ordered ‘said, Negative’. The lives above from acqah’s in the Nanel of the soul depict ','awareness ','inevitability ','progress ','contradiction.','Question is based on selected poems','','d','','post-utme','2009',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:20'),(99,'In Kunene’s Heritage of Liberation, freedom is to be achieved through the efforts of ','the new generation  ','the old generation ','present generation ','successive generations.','Question is based on selected poems','','d','','post-utme','2009',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:21'),(100,'The thematic pre-occupation of de Graft’s  Sons and Daughters can be summarized as ','the import of Western education ','the roles of women in modern economy ','how to become a lawyer ','dimly life in the face of social changes.','','','d','','post-utme','2010',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:22'),(101,'Lawyer Bonu in de Grafts Sons and Daughters can be described as a: ','caring father ','faithful husband ','deceitful friend ','shrewd politician.','','','d','','post-utme','2010',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:23'),(102,'De graft’s Sons and Daughters is structured into: ','three acts ','four scenes ','two acts ','five Episodes.','','','a','','post-utme','2010',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:24'),(103,'The central  conflict in de Graft’s Sons and Daughter is primarily: ','political ','generational ','racial','communal','','','d','','post-utme','2010',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:25'),(104,'He already had five wives and was soon going to break the legs of the antelope for the sixth time’. The expression ‘break the legs of the antelope’ means to: ','be ON honeymoon ','offer ritual sacrifice ','hunt for antelopes  ','have a  new baby.','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:26'),(105,'The medal in Oyono’s The Old man and the  two sons and his: ','house ','horse  ','land ','Job','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:32'),(106,'Kelara in Oyono’s The Old man and the Medal is: ','Mvodo’s sister ','commandant’s maid  ','Meka’s wife ','Agatha’s cousin.','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',120,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(107,'In Oyonon’s The Old Man and the Medal, Ignatius Obebe isa : ','driver ','soldier ','carpenter ','catechist.','Question is  based on Oyono’s Old man hand the medal','','d','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:34'),(108,'The medal in Oyono’s The Old man and the medal is a symbol of: ','colonial deceit ','African pride  ','genuine reward for loyalty ','respect and honour','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',110,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:35'),(109,'Dancing through blooming thorns” in Gbemisola  Adeoti’s Naked soles” connotes: ','hoeing a field of thorns ','dancing  in a keen competition ','being merry amidst suffering','playing flowers and plants.','Question is are based on selected African poems.','','c','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:35'),(110,'In Gbemisola Adeoti’s Naked Soles”, the expression red milk of grief’ refers to: ','wine  ','Ink ','blood ','palm-oil','Question is are based on selected African poems.','','c','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:36'),(111,'In Masizi Kunene’s “A Heritage of Liberation; this season’ refers to the period of: ','oppression ','freedom  ','migration  ','resettlement','Question is are based on selected African poems.','','b','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:37'),(112,'“Eagle in Kunene’s  “A Heritage  of  Liberation” is a symbol of: ','deceit ','peace ','agility ','death.','Question is are based on selected African poems.','','d','','post-utme','2010',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:38'),(113,'The tone in Gbemisola Adeoti’s Naked soles” is that of ','reconciliation  ','lamentation  ','exhortation ','admiration','Question is are based on selected African poems.','','b','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:39'),(114,'The attitude of the poet-Persona toward bats in D.H. Lawrence’s “Bats” is that of ','revulsion ','veneration  ','admiration  ','indifference.','Questions is based on Non-African Poetry','','a','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:40'),(115,'In China, according to D.H. Lawrence, bats are symbols of: ','death  ','birth ','caution ','joy','Questions is based on Non-African Poetry','','d','','post-utme','2010',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:41'),(116,'In Wendy Cope’s Sonnet VII,  poetry is regarded as a God –given weapon to: ','musicians ','recluses ','nomads ','pilgrims.','Questions is based on Non-African Poetry','','b','','post-utme','2010',129,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:42'),(117,'The greatest challenge to the poet-persona in Andrew Marvell’s “To His Coy Mistress’ is : ','chariot ','love  ','time ','youth','Questions is based on Non-African Poetry','','c','','post-utme','2010',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:43'),(118,'But the pigs were so clever that they could think of a way around every difficulty. As for the horses, they know every inch of the field and in fact understood the business of mowing and raking”. The dominant literary device in the excerpt above is ','repetition ','mimesis ','ellipsis ','personification.','Question is  based on literary appreciation','','d','','post-utme','2010',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:44'),(119,'“The dairy maids and men had flocked down from their cottages and out of the dairy-house with the arrival of the cows from the meads: the maids walking in  patterns, not on account of weather, but to keep their shoes above the mulch of the barton”. The setting of the above  passage can be described as: ','urban  ','celestial ','pastoral  ','religious.','Question is  based on literary appreciation','','c','','post-utme','2010',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:45'),(120,'“O mother, my mother!...How could I be expected to know? I was a child when I left this house four months ago. Why didn’t  you tell me there was danger in men-folk? Why didn’t you warn me?” the speech above achieves its literary effect through the use of: ','litotes  ','onomatopoeia ','allusion  ','repetition.','Question is  based on literary appreciation','','d','','post-utme','2010',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(121,'“The animals saw no reason to disbelieve him, especially as they could no longer remember very clearly  what conditions had been like before the rebellion. All the same, there were days when they felt that they would sooner have had less figures and more food”. The tone of the passage above is quite: ','exhilarating ','cynical ','optimistic ','obsequious.','Question is  based on literary appreciation','','b','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(122,'“We are tired of waiting for another war our trees their leaves have shed the winter has come and gone spring flowers have blossomed and withered” in line 2 of the poem above, the poet uses:','ellipsis ','alliteration ','inversion  ','oxymoron.','Question is  based on literary appreciation','','c','','post-utme','2010',138,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(123,'The poet personal in the poem above is: ','resigned to fate  ','a holy man  ','a daily traveler  ','suffering but optimistic. ','“I come and go\\na pilgrim\\ngrubbily unkempt\\nstubbornly cheerful\\ndefiantly whistling hope\\nand grubbing for crumbs of success\\nout of all near-defeats.\\n','','d','','post-utme','2010',112,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(124,'A novel that has a very strong presence of the supernatural is known as ______ ','faction  ','gothic  ','travel tale  ','fairy novel ','','','d','','post-utme','2012',130,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(125,'In a tragic-comedy, the unknotting of the plot, the resolution of the mystery and the resolution of the misunderstanding is called  ','exposition   ','denouement   ','catharsis  ','hubris','','','b','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:51'),(126,'The exclusive right given to authors to protect their works from unlawful production or reproduction is   ','A copyright  ','an authority to write  ','an author’s right   ','a constitutional provision ','','','a','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:52'),(127,'An epic deals with  ','humour  ','tragedy  ','gothic  ','hero','','','d','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:53'),(128,'The sudden revelation of events as they happen is called  ','epiphany  ','revelation  ','relay-events  ','resonance ','','','d','','post-utme','2012',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:54'),(129,'Comic relief is used in a work of art to  ','to suspend disbelief  ','to maneuver the portal of narration  ','to create chiaroscuro  ','to suspend to tension ','','','d','','post-utme','2012',123,'Admin','0000-00-00 00:00:00','2020-07-17 15:08:25'),(130,'The image in this excerpt suggest ','happiness  ','sorrow ','anger  ','kindness','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','b','','post-utme','2012',135,'Admin','0000-00-00 00:00:00','2020-07-15 19:31:30'),(131,'The world as used above is an example of  ','irony  ','metaphor ','exaggeration  ','parody ','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','c','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:07'),(132,'This extract is an example of  ','dirge  ','satire  ','ode  ','sonnet','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:08'),(133,'The general  idea in the extract is ','neglect  ','praise  ','ridicule  ','worship','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:09'),(134,'  The central motif in this excerpt is  ','religious  ','pride  ','poverty  ','deceit ','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:15'),(135,'The extract is an example of  ','pun  ','hyperbole  ','Irony  ','parody','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:17'),(136,'“Your hand is heavy, Night, upon by brow” is an example of  ','hyperbole  ','onomatopoeia  ','apostrophe  ','oxymoron ','','','a','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:18'),(137,'From this passage, the people that the writer admire are  ','poor  ','brilliant   ','rich   ','unassuming ','(Extract for question)\\nThe human beings who I most admire are those without sterling qualities but are extraordinary in their ordinariness, the unsung heroes who will never be in the limelight or boulevard of fame, people who do great things when no one is watching or those who are not marked with the maple leaves of chieftaincy titles. They only wear fate, hard work, perseverance, anonymity and time. Yet, they are passionate, caring, visionary, sincere, determined and honest. These qualities mold those that are special without being aware. I strive to stay true to some of these qualities that I admire. To find a person with a few of these qualities is rare these days. To know someone who has all of them is amazing and a true blessing. [Excerpt from Tomorrow Left Us Yesterday-Tayo Olafioye]\\n','','d','','post-utme','2012',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:19'),(138,'The writer informs the reader that people with good qualities are  ','many  ','few  ','fearful  ','famous','','','b','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:20'),(139,'Aaron’s brother who trains as an accountant is  ','George  ','Awere  ','Owusu  ','Kofi','Question is based on Joe de Graft’s Sons and daughters','','d','','post-utme','2012',138,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:20'),(140,'Which of the following is true of the Awere?  ','He is the fiancé of Maanan  ','He is a chartered accountant   ','He wins a scholarship to Goldsmith College  ','He wants to study dance and choreography ','Question is based on Joe de Graft’s Sons and daughters','','a','','post-utme','2012',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:21'),(141,'The conflict in the play centres around  ','gender  ','generation  ','religion  ','ethnicity ','Question is based on Joe de Graft’s Sons and daughters','','b','','post-utme','2012',114,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(142,' The text of Shakespeare’s Romeo and Juliet is sourced in ','1623 second Folio  ','1590 rehearsal guide  ','1599 Quarto  ','1616 manuscript ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','a','','post-utme','2012',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:23'),(143,'“There’s no trust No faith, no honesty in men, all perjured, All forsworn, all naught, all dissembles” The speaker of the above excerpt is ','Nurse  ','Juliet  ','Balthasaar  ','Capulet ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','b','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:24'),(144,'Another Suitor of Juliet in the play is  ','Mercutio  ','Gregory  ','Duke  ','Paris','Question is drawn from William Shakespeare’s ROMEO and JULIET','','d','','post-utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:25'),(145,'In the novel, the Ministry that is responsible for news, entertainment and fine arts in the Ministry of  ','Peace  ','Love  ','Plenty  ','Truth','Question is based on George Orwell’s Nineteen Eight Four','','d','','post-utme','2012',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:26'),(146,'The Ministry of Plenty in the Novel is responsible for  ','War  ','economic affairs  ','Population  ','Agriculture ','Question is based on George Orwell’s Nineteen Eight Four','','b','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:27'),(147,'The national day in The Old Man and the Medal is  ','1st of October  ','27th of May  ','12th June  ','14th July','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','d','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:28'),(148,'In Joys of Motherhood, Dr Meers is  ','Nnaife’s master  ','Nnuego’s uncle  ','The District Officer  ','An ombudsman','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','a','','post-utme','2012',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:29'),(149,'“ I don’t see how any mother who cares for the modesty of her daughter can coolly sit down there and defend such waywardness”. “way wardness” in the except above refers to  ','sexual immorality  ','painting  ','dancing  ','disobedience ','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:29'),(150,'Aaron’s painting is purchased by an American collector for the sum of ','250 dollars  ','220 pounds ','260 cedis  ','280 francs ','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:30'),(151,'James Ofosu is pleased with George because he studies ','Law  ','Accountancy ','Engineering   ','Medicine ','Question is  based  on Joe de Graft’s Sons and Daughters.','','d','','post-utme','2013',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:31'),(152,'Joe de Graft’s Sons and daughters is an example of ','domestic comedy ','dark comedy ','restoration comedy ','comedy of error','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:32'),(153,'The central conflict in the play is about  ','Lawyer Bonu’s attempt to seduce Maanan  ','career choice for James Ofosu’s children  ','Hannah’s lack of respect for James  ','Fosuwa’s bid to force Lawyer Bonu on Maanan','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:33'),(154,'David Rubadiri in “An African Thunderstorm” paints a graphic picture of the Thunderstorm through  the use of ',' simile and personification  ',' Irony and imagery',' hyperbole and rhyme ','innuendo and satire ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:34'),(155,'In Andrew Marvell’s “To his Coy mistress”, the poet adopts a consistent rhyming scheme of ','sestet    ','Couplet ',' tercet  ','free verse','Question is based on African and Non-African Poetry  ','','b','','post-utme','2013',123,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(156,'Mazisi Kunene is an African poet from  ','Ghana ','Nigeria  ','Malawi  ','South Africa','Question is based on African and Non-African Poetry  ','','d','','post-utme','2013',142,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:36'),(157,'In T.S. Eliot’s “The Journey of the Magi”, the journey can be described as  ','delightful   ','unnecessary ','allegorical  ','symbolic ','Question is based on African and Non-African Poetry  ','','c','','post-utme','2013',129,'Admin','0000-00-00 00:00:00','2020-07-16 15:29:37'),(158,'The dominant figurative device  in Kobena Acquah’s “In the Navel of the Soul” is','metaphor   ','assonance  ','paradox   ','euphemism ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',133,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(159,'‘fellow wayfarer…what good news do you bring me?\\\" The statement above is addressed by Meka to','the Commandant’s messenger ','a passing dog   ','a dove ','Engamba ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(160,'Gullet is so named by the natives because of his  ','razor-sharp wit  ','long neck ','closeness to the people ','hostility ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','b','','post-utme','2013',127,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(161,'The medal in the novel is a symbol of  ','ungodliness   ','victory   ','admiration ','deceit ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','d','','post-utme','2013',118,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(162,'In the Joys of Motherhood, the joy of a mother is predicated on having ','husband    ','sons ','daughters   ','wealth ','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','b','','post-utme','2013',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:42'),(163,'The protagonist of the novel is  ','Nwokocha Agbadi ','Nnaife  ','Nwakusor ','Nnu Ego.','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','d','','post-utme','2013',131,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:43'),(164,'From the conclusion of the novel, the author implies that ','rebellion is fruitless ','opposition pays ','two and two make four ','knowledge gives freedom.','Question is based on George Orwell’s Nineteen Eighty Four','','a','','post-utme','2013',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:44'),(165,'“It was an enormous  pyramidal structure of glittering white concret, soaring up, terrace after terrace, 300 metres into the air”.','Being described in the except above is  ','The party secretariat','O’ Brien’s  residence  ','The ministry of truth ','The Ministry of Plenty ','','c','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:45'),(166,'In the novel, Oceania is at war with  ','Romania   ','Catalonia    ','Eastasia ','Rhodeia','','','c','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:45'),(167,'“Minipax” in the true sense means ','ministry of Truth ','Ministry of Love  ','Ministry of War  ','Ministry of Plenty ','Question is based on George Orwell’s Nineteen Eighty Four','','d','','post-utme','2013',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:46'),(168,'In the Newspeak language, “duckspeak” is a word that simultaneously  refers to ','love and admiration  ','knowledge and ignorance  ','now and then ','abuse and praise ','Question is based on George Orwell’s Nineteen Eighty Four','','b','','post-utme','2013',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:47'),(169,'Hermeneutics is an art of  ','Calculation  ','exaggeration ','composition  ','interpretation ','Question is based on General literary principles.','','d','','post-utme','2013',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:48'),(170,'A poem written in unrhymed five stress lines is called  ','ballad  ','Blank verse ','sonnet      ','Ode','Question is based on General literary principles.','','b','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:49'),(171,'The type of sonnet that has an octave and a sestet has its origin in  ','England  ','Spain ','Portugal   ','Italy','Question is based on General literary principles.','','d','','post-utme','2013',143,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:50'),(172,'The tone of the excerpt above is  ','jubilant  ','condemnatory ','adulatory  ','defiant ','“We own this land \\n And the swamps\\n The palms\\n And the mangroves;\\n We ‘ll die defending them”\\n Tony Afejuku “Land Song”  \\n','','d','','post-utme','2013',113,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(173,'The figurative devices in the excerpt above are  ','rhyme and metaphor  ','alliteration and assonance  ','repetition and simile  ','rhyme and onomatopoeia ','“Her voice is a shell borne by the waves to crack the egg my soul sorely craves”\\nSegun Adekoya  “Love Blues” \\n','','a','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:52'),(174,'A speech in a play in which a character speaks his or her thoughts alone is','monologue','an aside','a soliloquy','an epilogue','','','c','','wassce','2015',98,'Admin','2016-12-12 05:41:49','2020-07-14 14:53:53'),(175,'In Literature, repetition is used essentially for','rhyme','suspense','allusion','emphasis','','','d','','wassce','2015',116,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:14'),(176,'The pattern of poem without reference to its content is referred to as the','limerick','metre','free verse','form','','','c','','wassce','2015',111,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:15'),(177,'The performers in a play constitute the','chorus','characters','audience','cast','','','b','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:16'),(178,'The stanza is an example of','appellation','apostrophe','euphemism','elegy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',125,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:17'),(179,'Pan is used here as','an allusion','symbol','irony','metonymy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','a','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:18'),(180,'The rhyme scheme of the stanza is','abcabcc','ababcdd','babaccc','bcbccaa','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',110,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:19'),(181,'A metrical foot in which a stressed syllable is followed by an unstressed syllable is','iambic','spondaic','trochaic','dactylic','','','c','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:25'),(182,'________ is the location of the action of the plot','Setting','Narrative technique','Point of view','Characterization','','','a','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:26'),(183,'A ballad is essentially a ____________ poem','descriptive','dramatic','pastoral','narrative','','','d','','wassce','2015',117,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:26'),(184,'The first four lines of the Shakespearean sonnet rhyme','abcd','abba','abab','cdcd','','','c','','wassce','2015',114,'Admin','2016-12-12 05:41:49','2020-07-15 19:31:30'),(185,'A story in which characters or actions represent abstract ideas or moral qualities is','an epic','a legend','an allegory','a satire','','','c','','wassce','2015',99,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:28'),(186,'The use of imagery in prose or verse','appeals to the senses','develop the plot','create confusion','obscures meaning','','','a','','wassce','2015',105,'Admin','2016-12-12 05:41:49','2020-07-15 19:31:30'),(187,'The lines illustrate','soliloquy','parallelism','dialogue','contrast','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','b','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:30'),(188,'‘heads’ in the second line is an example of','synecdoche','inversion','epithet','conceit','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','a','','wassce','2015',113,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:31'),(189,'A character that develops in the course of  a novel or play is described as','flat','antagonist','round','protagonist','','','c','','wassce','2015',106,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:32'),(190,'A dirge is a poem sung','to send a child to sleep','to make workers happy','at a birthday party','at a funeral','','','d','','wassce','2015',118,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:33'),(191,'In drama, the ___________ creates humour','hero','clown','villain','chorus','','','b','','wassce','2015',111,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:34'),(192,'<em>Let me not love thee if l love thee not</em> illustrates','metaphor','proverb','paradox','meiosis','','','c','','wassce','2015',110,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:35'),(193,'__________ is a literary device used to express something unpleasant in a more acceptable manner','Epilogue','Epigram','Euphemism','Eulogy','','','c','','wassce','2015',126,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:36'),(194,'The writer’s attitude to the couple is one of','resignation','indifference','patronage','praise','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','a','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:37'),(195,'The dominant literary device used in the passage is','litotes','personification','simile','paradox','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',106,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:38'),(196,'The rhetorical question that ends the passage stresses the','wickedness of thieves','poverty of the couple','security of the hut','filthiness of the surroundings','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',106,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:38'),(197,'The expression ‘such a rude room of such a poor pair’ illustrates','onomatopoeia','pun','rhyme','alliteration','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',99,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:39'),(198,'The setting is','dawn','sunset','midday','night','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',113,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:40'),(199,'The rhyme scheme is','aabbccddeeff','ababababaabb','abcaabbcabab','abbaabcaabab','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',101,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:41'),(200,'The theme of the poem is','the love of mother','invoking the spirit of womanhood','admiration for women’s hard work','the suffering of women','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',101,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:42'),(201,'The literary device used in line 7 is','conceit','personification','hyperbole','pathos','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:43'),(202,'The poet’s tone is one of','sadness','joy','condemnation','sarcasm','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',107,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:44'),(203,'“To bring forth sons and daughters brave” illustrates','paradox','zeugma','inversion','epigram','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','c','','wassce','2015',113,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:45'),(204,'The speaker is','Gonzalo','Antonio','Prospero','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:46'),(205,'The addressee is','Ariel','Ferdinand','Caliban','Miranda','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',87,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:47'),(206,'The “impostor” is','Sebastian','Antonio','Ferdinand','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',119,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:48'),(207,'The “advocate” and the “impostor” are','conspirators','enemies','suspicious of each other','attracted to each other','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',100,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:49'),(208,'The speaker’s utterance betrays his','anger','pretense','hatred','sorrow','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','b','','wassce','2015',107,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:56'),(209,'The speaker is','Gonzalo','Antonio','Sebastian','Alonso','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',131,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:58'),(210,'“these words” refer to','the shipwreck','the son’s disappearance','the daughter’s wedding','Prospero’s magic','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','b','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-07-17 15:18:54'),(211,'Where did the wedding take place?','Algiers','Milan','Tunis','Naples','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','c','','wassce','2015',124,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:06'),(212,'The setting is','outside Prospero’s cell','on a ship','in front of Prospero’s cell','another part of the island','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',91,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:08'),(213,'“.... in my rate” means','I’m very certain','so far as I can see','there’s no doubt','as it appears','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',119,'Admin','2016-12-12 05:41:50','2020-07-22 00:06:56'),(214,'Ariel has ‘come’ because','he has been invited by Prospero','he wants to make a request','he desires a meeting','flying is no problem to him','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:14'),(215,'Prospero has actually','raised a storm at sea','punished Miranda','dismissed Fedinand','commanded Ariel to disappear','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',117,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:17'),(216,'Before Ariel’s entry','Ferdinand has brought in some wood','Prospero has put Miranda to sleep','Caliban had been swearing at Prospero','Trinculo had discovered Caliban’s cloak','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',115,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:20'),(217,'‘Ariel and all his quality’ mean Ariel and','all at his command','the quality of a spirit','his band of spirits','an ability to cause mischief','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','d','','wassce','2015',123,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:23'),(218,'Soon after, Ariel','files off to do his duty','recounts the confusion on board the ship','kneels down to worship Prospero','calls Ceres and another spirit','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',117,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:25'),(219,'X and Y are','Antonio and Alonso','Sebastian and Alonso','Antonio and Gonzalo','Sebastian and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','a','','wassce','2015',116,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:28'),(220,'“We two” are','Antonio and Adrian','Sebastian and Adrian','Sebastian and Francisco','Antonio and Sebastian','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',149,'Admin','2016-12-12 05:41:51','2020-07-21 05:49:14'),(221,'The situation in the extract is highly','satirical','prophetic','ironical','comical','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','c','','wassce','2015',113,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:34'),(222,'What has happened to all the other characters in the scene?','They have been made deaf and dumb','Ariel has put them all to sleep','They have been sent away','Prospero has put them to sleep','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','b','','wassce','2015',116,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:37'),(223,'The “two” later plot to','kill all the other characters','escape from the island','kill Prospero and Miranda','kill Alonso and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',123,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:41'),(224,'‘I simply don’t understand what the matter with everybody is today. Everybody let me down, and ...’ The speaker above is referring to','Fosuwa and Maidservant','Hannah and George','Aaron and Maanan','Lawyer B and Mrs B','Based on J.C. De Graft’s  \tSons and Daughter. ','','b','','utme','2010',158,'Admin','2016-12-12 07:52:46','2020-07-27 15:23:17'),(225,'Maanan expresses dislike for Lawyer B because of','his condemnation of  her choice career','his recent advances towards her','the betrayal of her father’s trust','the betrayal of his wife’s trust','Based on J.C. De Graft’s  \tSons and Daughter. ','','c','','utme','2010',150,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(226,'The traditional order in the play is represented by','Mrs. B','Hannah','Maanan','Aunt','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',151,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(227,'Where does the play take place?','On the street','In George’s place','In Aunt’s house','In Ofosu’s place','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',159,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(228,'‘O’ deadly sin! O rude unthankfulness! Thy fault our law calls death, but the kind Prince, Taking thy \t\tpart, hath rushed aside the law and turned that black word.....’ Deadly sin refers to the','suicide of Juliet','suicide of  Romeo','murder of  Paris','murder of  Tybalt','Based on William Shakespeare’s  \tRomeo and Juliet.','','d','','utme','2010',143,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(229,'The play is mostly written in','blank verse','free verse','metres','foot','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',124,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(230,'‘O” serpent heart, hid with a flowering face!’ The statement refers to','Juliet','Romeo','Tybalt','Benvolio','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',151,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(231,'The spatial setting of the play is','Athens','Verona','Padua','Venice','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',145,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(232,'Romeo is banished to Mantua because he','kills Tybalt in a street duel','marries Juliet without parental consent','attends Capulet’s party uninvited','attempts to kill Paris his rival','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',181,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(233,'In the novel, the society puts high value on','egalitarianism','male ascendancy','procreation','gender equity','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',149,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(234,'The medicine man links the lump discovered on the head of Nnu Ego at birth, to the','possession of physical admirable qualities that makes her an epitome of perfection','wound inflicted on the slave woman buried with Agbadi’s wife','coming back of the Agunwa to the society to live again','ill-luck and tragic events attributed to a predestined fate.','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',154,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(235,'The constant companions of  Nnaife family are','togetherness and happiness','poverty and hunger','sickness and joblessness','disagreement and humiliation','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',158,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(236,'The disagreement between Mvondo and Nticentres on the latter’s claim to have','Assisted Meka in getting the medal','eaten the entire entrails of a sheep','eaten more than his share of the food','been in a Whiteman’s office','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','a','','utme','2010',127,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(237,'In the novel, the colonialists treat the Africans with','kids gloves','disdain','indifference','honour','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','b','','utme','2010',139,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(238,'The Ministry of Peace is concerned with making','instruments','weapons','wars','reconciliation','Based on George Orwell’s  \tNineteen Eighty-Four.','','d','','utme','2010',146,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(239,'The subject matter of the novel is','Totalitarian dictatorship','exploitation and cruelty','retributive justice','class segregation','Based on George Orwell’s  \tNineteen Eighty-Four.','','a','','utme','2010',149,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(240,'How did Winston start his rebellion against the state?','By engaging in anti-party activities','By keeping a private diary','When he started a secret affair','When he spied on the party','Based on George Orwell’s  \tNineteen Eighty-Four.','','b','','utme','2010',149,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(241,'The party seeks power for','the nation','its own sake','its members','peoples’ sake','','','b','','utme','2010',150,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(242,'A play which mainly aims at provoking excessive laughter is \tcalled','a tragi-comedy','comedy','a farce','satire','','','c','','utme','2010',140,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(243,'Both comedy and tragedy have','happy ending','climax','tragic hero','stanza','','','b','','utme','2010',157,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(244,'A formal dignified speech or writing praising a person or a thing for past or present deeds is','premiere','eulogy','anthology','lampoon','','','b','','utme','2010',158,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(245,'The narrative style in which the hero tells his own story directly is the','objective','subjective','first-person','third-person','','','c','','utme','2010',154,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(246,'The physical, historical or cultural background of a literary work is referred to as','episode','plot','time','setting','','','d','','utme','2010',152,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(247,'A plot structure that defies chronology can be described as','open-ended','circular','episodic','organic','','','c','','utme','2010',160,'Admin','2016-12-12 07:52:47','2020-07-27 15:23:17'),(248,'Pun as a literary device deals with','placing two opposite phrase','placing words side by side','playing on words','arrangement of words','','','c','','utme','2010',143,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(249,'In a narrative poem, the poet attempts to','summarize a story','describe a place','preach a sermon','tell a story','','','d','','utme','2010',158,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(250,'The account of experiences of an individual during the course \tof a journey is known as','a travelogue','an autobiography','a catalogue','a memoir','','','a','','utme','2010',144,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(251,'Satirical writing employs','epigram','synecdoche','irony','onomatopoeia','','','c','','utme','2010',154,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(252,'The person being addressed above is a','soldier','student','domestic servant','lawyer','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','c','','utme','2010',135,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(253,'From the tone of the speech above, the speaker is obviously','enraged','lackadaisical','elated','happy','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','a','','utme','2010',155,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(254,'The mood conveyed in the excerpt above is one of','sadness','frustration','sympathy','dilemma','‘That year the harvest was sad, like a funeral, and many farmers wept as they dug up the miserable yams. One man tied his cloth to a tree branch and hanged himself.’ (Chinua Achebe: Things Fall Apart)','','a','','utme','2010',158,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(255,'The rhyme scheme in the excerpt above is','bbaa','aabb','abab','abba','That age is best which is the first,<br> \tWhen youth and blood are warmer, <br> \tBut being spent, the worse, and worst <br> \tTime still succeed the former. ','','c','','utme','2010',157,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(256,'The subject matter of the extract above is','Storm','sea waves','house movement','earthquake','But the towering earth was tired sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of a million years was lost\t','','d','','utme','2010',134,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(257,'From the poem above, shadow means','famine','bleak future','period of sufferings','abstract ideas','And your laughter like a flame<br>\t \tPiercing the shadows<br> \tHas revealed Africa to me beyond<br> \tThe snow of yesterday<br>','','c','','utme','2010',166,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(258,'The speaker in the excerpt above is','hopeless','uncertain','afraid','confident','Don’t panic. Be calm. If you are somehow upset.... try to regain your exposure.','','c','','utme','2010',154,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(259,'The poem can be described as','a lyric','an epic','a sonnet','an elegy','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',166,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(260,'The theme of the poem is','futility of  life','distortion of  life','creation of  life','vanity of  life','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',129,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(261,'The rhyme scheme of the stanza above is','aabb','abab','bbaa','abba','A cursing rogue with a merry farce,<br>  \tA bundle of rags upon a crutch, ,<br> \tStumbled upon that windy place,<br> \tCalled cruachan, and it was as much.\t','','b','','utme','2010',143,'Admin','2016-12-12 07:52:48','2020-07-27 15:23:17'),(262,'In the play, Fasuwa represents the','new culture','patriarchy','old order','African civilization.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',138,'Admin','2016-12-12 10:46:52','2020-07-22 22:14:20'),(263,'The play opens with a conversation between Aaron and Awere about','Aaron’s choice of course','Maanan’s encounter with the lawyer','George and Kofi','Hannah and George.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',119,'Admin','2016-12-12 10:46:52','2020-07-22 22:14:20'),(264,'‘I still think you can do something about it... persuade him; make him see how frustrating the whole business is bound to be for you.’  <em>The whole business in the excerpt above refers to </em>','marriage proposal','career choice','business contract','political transition.','Based on J.C. De Graft’s Sons and  \tDaughters.','','b','','utme','2008',126,'Admin','2016-12-12 10:46:52','2020-07-22 22:14:21'),(265,'The central conflict in the play is','religious','romantic','generational','communal.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:49'),(266,'The change in fortune is achieved in the play when','James agrees that Aaron and Maanan should study what they want','Lawyer B harasses Maanan in his office','Haanah, James’ wife convinces him','Aaron and Maanan agree to read the courses James chooses for them.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',150,'Admin','2016-12-12 10:46:52','2020-07-26 20:56:08'),(267,'‘l will be brief, for my short date of breath Is not so long as is a tedious tale.’ The statement above is in reference to the speaker’s','retirement','imminent death','state of health','short-tempered nature.','Based on William Shakespeare’s Romeo and Juliet.','','b','','utme','2008',141,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:22'),(268,'Romeo’s death becomes inevitable because','Friar Lawrence’s letter is not delivered','Juliet is married to Paris','Romeo kills Tybalt in a duel','Juliet has committed suicide.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',141,'Admin','2016-12-12 10:46:53','2020-07-17 15:18:54'),(269,'The multiple deaths in the play serve as a punishment for','imposing life partner on Children','treating others with hatred','disobeying one’s own parents','shedding kinsmen’s blood.','Based on William Shakespeare’s Romeo and Juliet.','','a','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:57:59'),(270,'The major reason for Juliet’s grief is','the death of her cousin','her reluctant marriage to the County','the banishment of her lover','her imminent death.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:01'),(271,'The chorus in the prologue of the play is essentially meant to','foreshadow the play','highlight the characters','estimate the actions','introduce the play.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',130,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:21'),(272,'In the novel, Big Brother metaphorizes a','totalitarian authority','benevolent leader','revolutionary leader.','party brotherhood.','Based on George Orwell’s Nineteen  \tEighty-Four.','','a','','utme','2008',111,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:06'),(273,'In the novel, Orwell attempts to','satirize the artificiality of a machine ‘controlled society','eulogize the beauty of the socialist system','condemn the disgusting hypocrisy of all communist    \t systems','laud the boundless possibilities of the human intellect.','Based on George Orwell’s Nineteen  \tEighty-Four.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:08'),(274,'Winston Smith begins his rebellion against the power of the state by','purchasing arms','keeping a private diary','opposing the law','educating the youth.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',105,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:10'),(275,'The Ministry of Truth is concerned with','news, entertainment, education and fine arts','propaganda, war, publishing and enlightenment','investigation, propaganda and fine arts','economic affairs, education and propaganda.','Based on George Orwell’s Nineteen  \tEighty-Four.','','d','','utme','2008',144,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:21'),(276,'The events following the ceremony confirm Meka’s','disillusion with the whites','satisfaction with the medal','contribution to the colonialists','admiration for the church.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','a','','utme','2008',137,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:40'),(277,'“ ‘ By my mother!’ said Engamba. The night rat doesn’t tell what happened to him in the dark! Men are born and die...”  In the statement above, The night rat doesn’t tell what happened to him in the dark! refers to','the Whiteman’s treatment of Meka','Meka’s treatment of the medal in the whitewashed circle','people’s unwillingness to talk about how Whiteman treat them','people’s freedom of expression.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',169,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:22'),(278,'In the novel, the expression  <em>fobreak the leg of an antelope</em> means','hunting','marriage','fighting','honeymoon.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',126,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:40'),(279,'Ona has to leave her father’s house because','of her love for Agbadi','that is the tradition','her father is dead','of the safety of her child.','Based on Buchi Emecheta’s The Joys of Motherhood.','','a','','utme','2008',129,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:40'),(280,'Nnaife’s conscription into the army is portrayed as part of','family conflict','British oppression','family tradition','societal intrigue.','Based on Buchi Emecheta’s The Joys of Motherhood.','','d','','utme','2008',120,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:30'),(281,'The attitude of Nnu Ego when she was told that her Chi would not give her a child is one of','indifference','despair','apathy','hope.','Based on Buchi Emecheta’s The Joys of Motherhood.','','b','','utme','2008',129,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:39'),(282,'The subject matter of Adeoti’s Naked Soles is','soul and mind','hunger and strife','suffering and despair','hatred and bitterness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:33'),(283,'Rubadiri’s <em>An African Thunderstorm</em> appeals to the readers’ sense of','sight and taste','feeling and sight','smell, taste and hearing','sight, smell and hearing.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','b','','utme','2008',127,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:37'),(284,'‘The experts, of course Disagree. The urine test they ordered Said, Negative.’ The lines above from Acqah’s “In the Navel of the Soul” depict','contradiction','inevitability','progress','awareness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','a','','utme','2008',121,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:40'),(285,'In Kunene’s ‘A Heritage of Liberation,’ freedom is to be achieved through the efforts of','the old generation','new generation','present generation','successive generations.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',134,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:42'),(286,'Launko’s ‘End of the’ War suggests that war brings about','ultimate solution to all problems','partial solution to problems','multifaceted problems','only temporary relief.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',131,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:44'),(287,'The persona in the poem <em>Give Me The Minstrel’s Seat</em> discourages','togetherness','hatred','isolation','poverty.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:46'),(288,'Marvel’s To ‘His Coy Mistress’ is written mainly in','alternate rhymes','blank verse','heroic couplets','middle rhymes.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-07-19 02:52:35'),(289,'The attitude of the poet-persona to bats, in Lawrence’s Baf is one of','satisfaction','reverence','hatred','repulsion.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',149,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:51'),(290,'The language used, in Eliot’s ‘The Journey of the’ Magi is generally','difficult','complex','simple','complicated.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',152,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:22'),(291,'In Cope’s <em>Sonnet VII</em>, poetry is','a popular act','a boring act','an idle hobby','a useless undertaking.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',134,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:20'),(292,'An interlude is a brief','presentation in the interval of a dramatic performance','play before the main dramatic performance','presentation after the main dramatic performance','dialogue between two persons.','Based on General Literary Principles.','','a','','utme','2008',154,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:38'),(293,'An epic is a heroic story which includes','ballad','lyric','myth','dialogue.','Based on General Literary Principles.','','c','','utme','2008',131,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:22'),(294,'Farce can be described as a dramatic piece marked by','movement from serious to the light-hearted mood','comic and exaggerated actions','actions devoid of meaning','gloomy actions with momentary reliefs.','Based on General Literary Principles.','','b','','utme','2008',122,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:39'),(295,'A long story narrating a series of complicated events is called a','saga .','discourse','monologue','harangue.','Based on General Literary Principles.','','d','','utme','2008',135,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:21'),(296,'Oxymoron is the use of two contrasting words that are','placed far apart','different in meaning','placed side by side','similar in meaning.','Based on General Literary Principles.','','c','','utme','2008',122,'Admin','2016-12-12 10:46:54','2020-07-22 22:14:20'),(297,'A line or a group of lines repeated in the course of a poem is called','chorus','refrain','repetition','prologue.','Based on General Literary Principles.','','b','','utme','2008',107,'Admin','2016-12-12 10:46:54','2020-07-22 22:14:20'),(298,'Limerick is a light verse which consists of five lines that are','anapestic','trochaic','spondaic','dactylic.','Based on General Literary Principles.','','d','','utme','2008',119,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:15'),(299,'A short narrative or lyrical poem intended to be sung is a','leich','lay','lauda','letrilla.','Based on General Literary Principles.','','a','','utme','2008',134,'Admin','2016-12-12 10:46:54','2020-07-22 22:14:21'),(300,'A figurative device in which a statement is made and then withdrawn is referred to as','metanoia','metaphysical','metalanguage','metalepsis.','Based on General Literary Principles.','','d','','utme','2008',128,'Admin','2016-12-12 10:46:54','2020-07-27 06:54:13'),(301,'A literary work which imitates another in a distorted form is called','exodium','isocohen','metonymy','burlesque.','Based on General Literary Principles.','','d','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:21'),(302,'‘You do not have to be brutal to be a soldier, or rather you are brutal not because you are a soldier, but because there is a sadist, a rapist, a fascist and a murderer in you who is waiting for war and army uniforms to give them expression.’ ( Festus lyayi: Heroes ) The speaker here contends that','soldiers are generally wicked','human nature has to do with a profession','soldiers are characteristically gentle','the latent brutality in man finds expression in war.','based on Literary Appreciation.','','b','','utme','2008',158,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:23'),(303,'‘But the towering earth was tired of sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of million years was lost.’ The subject matter of the passage is','earthquake','Demolition','flood','storm.','based on Literary Appreciation.','','a','','utme','2008',126,'Admin','2016-12-12 10:46:54','2020-07-22 22:14:20'),(304,'The image depicted is one of','destruction','dejection','happiness','admiration.','based on Literary Appreciation.','','a','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:28'),(305,'The tone of the poem above is','satiric','affectionate','indifferent','sympathetic.','based on Literary Appreciation.','','b','','utme','2008',136,'Admin','2016-12-12 10:46:54','2020-07-22 22:12:39'),(306,'Life, though a vanity Yet, not purposeful In drawling<br> resignation Life’s spice is in strive<br> From the extract above, the poet suggests that','life is full of care','there can’t be life without strive','life is worthwhile without care','strive makes life worth living.','based on Literary Appreciation.','','b','','utme','2008',119,'Admin','2016-12-12 10:46:54','2020-07-22 22:12:38'),(307,'The subject of the poem above is','a prostitute','the lying father','the son','the orphan.','based on Literary Appreciation.','','c','','utme','2008',114,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:36'),(308,'The dominant rhetorical device in the excerpt above is','rhyme','alliteration','repetition','onomatopoeia.','based on Literary Appreciation.','','b','','utme','2008',151,'Admin','2016-12-12 10:46:54','2020-07-22 22:14:22'),(309,'The expression “The child is the father of the man” in the poem above is an example of','paradox','metaphor','simile','ellipsis','based on Literary Appreciation.','','a','','utme','2008',163,'Admin','2016-12-12 10:46:54','2020-07-24 22:29:39'),(310,'The technique employed in narrating the excerpt above is','flashback','stream of consciousness','foreshadowing','play-within-the-play.','based on Literary Appreciation.','','b','','utme','2008',141,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:42'),(311,'The poet’s tone above can be described as','lamentative','satiric','imploring','adoring.','based on Literary Appreciation.','','a','','utme','2008',143,'Admin','2016-12-12 10:46:54','2020-07-15 19:31:30'),(312,'In the play, the character of Lawyer B is represented through the use of','flashback','dialogue','play-within-the-play','irony','','','d','','utme','2009',124,'Admin','2016-12-12 17:55:00','2020-07-25 14:33:42'),(313,'James Ofosu’s desire is to see Maanan trained as','a choreographer','an attorney','an accountant','a surgeon','','','b','','utme','2009',140,'Admin','2016-12-12 17:55:00','2020-07-25 14:33:41'),(314,'The plot of the play is,','linear','cyclical','complicated','episodic','','','d','','utme','2009',141,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:42'),(315,'What causes the strained relationship between James and Lawyer B?','Betrayal of trust','Standard of education','Working experience','Family differences','','','a','','utme','2009',155,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:47'),(316,'‘Now look what we have: a permanent bloom of ugly paper flowers! The device used by Aaron in the excerpt above is','suspense','rhetorical question','oxymoron','allegory','','','c','','utme','2009',140,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:41'),(317,'When Friar Lawrence asks if the bride is ready, he wants to know if','Juliet is prepared','Rosaline is prepared','the corpse is ready','the bride is dressed','based on William Shake¬speare’s  \tRomeo and Juliet.','','c','','utme','2009',128,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:41'),(318,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nWhat makes Juliet’s night so tedious is the','murder of Tybalt by Romeo','arranged marriage between her and Paris','Eagerness’ to be married to Romeo','unconsummated marriage with Romeo','based on William Shake¬speare’s  \tRomeo and Juliet.','','d','','utme','2009',120,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:42'),(319,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nThe literary device used in the excerpt is','euphemism','simile','sarcasm','bathos','based on William Shake¬speare’s  \tRomeo and Juliet.','','b','','utme','2009',132,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:50'),(320,'The atmosphere of tragedy in the play is created through the use of','dreams and foreboding','fights and quarrels','wars and hatred','ideas and dramatization','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',133,'Admin','2016-12-12 17:55:01','2020-07-22 22:14:22'),(321,'Shakespeare depicts love and idealism through the','party at tire Capulets’','lovers’ tomb at the end','brawl between Romeo and Tybalt','balcony scene in the second Act.','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',130,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:41'),(322,'In the novel, the party approves separation of couples only','on condition of infidelity','where there are no children','in situation of irreconcilable differences','on the death of one of the couples','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',153,'Admin','2016-12-12 17:55:01','2020-07-22 22:12:38'),(323,'One of the themes of the novel is','colonialism','repression','senility','destruction','based on George Orwell’s  \tNineteen Eighty-Four','','b','','utme','2009',141,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:41'),(324,'Newspeak, the official language of Oceania, is devised to','meet the ideological needs of Ingsoc','help devoted party men and women','provide a medium of expression for world-view only','assist by cutting the choice of words for party members.','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',139,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:41'),(325,'The main concern of Winston in the novel is to','take power for himself','acquire wealth','overthrow the party','bring social change','based on George Orwell’s  \tNineteen Eighty-Four','','d','','utme','2009',117,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:41'),(326,'“We are hereto die of raget !say die of rage because this time the uncircumcised have gone too far...” The word uncircumcised in the statement above by Nli refers to','Nua and Mvondo','the whites','the people of Doum','the white farmers.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','b','','utme','2009',120,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:42'),(327,'The only two sons of Meka die fighting for','independence','the colonialists','the church','the in people.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',129,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:42'),(328,'In the novel; Africanness is .achieved in both','setting and characterization','narration and style','diction and syntax','pun and style','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',116,'Admin','2016-12-12 17:55:01','2020-07-14 14:59:59'),(329,'What prompts Nnu Ego to run to the effigy of her chi is that ...','she is worried and sick','she is pregnant','the chi asks her to come','milk is dripping from her breasts.','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','d','','utme','2009',140,'Admin','2016-12-12 17:55:02','2020-07-26 20:56:08'),(330,'In the society of Nwokocha Agbadi, a man’s social rating determined by his','oratorical power','physical prowess','gentle men','altruistic actions','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',144,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:42'),(331,'‘look at me jubilant for being given another opportunity to \tlive longer, and see this foolish woman eager to end her own life when her Maker is not yet ready for her...’The opportunity referred to in the extract above is','the misunderstanding between Nnaife and his wife','narrowly escaping being knocked down','the driver’s encounter with Nnu Ego','ominous visit of Agunwa','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',135,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:42'),(332,'Thorn in “Adeoti’sNaked Soles” symbolizes','victory','bleakness','destruction','suffering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',117,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:42'),(333,'‘Pregnant clouds Ride Safely on its back’ Pregnant clouds in Rubadiri’s “An AfricanThunderstorm implies”','uncertainty','calmness','disbelief','fertility','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',140,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(334,'The phrase the sunset in Kunene’s “A Heritage of Liberation” refers to','critical need','old age','patience','caution','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',146,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:42'),(335,'‘The silence of the battlefield heralds the widow’s anguish’ The widow in the lines above in Launko’s “Endof the War” is in anguish because of the','confirmation of her husband’s death','uncertainty over her husband returning alive','delay in the husband’s return from the battlefield','death of all the soldiers in the battlefield','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',126,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:42'),(336,'The end of “Give Me The Minstrel’s Seat”, seems to suggest that one needs the','support of others','complete command of one’s wives','support of one’s kinsmen','aid of poets','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',133,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(337,'According to “Give Me The Minstrels Seat”, a woman is','a necessary evil','only fulfilled when married','naturally jealous','a harbinger of good luck','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',129,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(338,'In Marvel’s “To His Coy Mistress”, the poet-persona tries to','Build up the climax of expectation of women','discuss how a woman labour hard','meet the people’s expectation in a religious adventure','discuss the nature of man and the value of time.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',118,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(339,'In Lawrence’s Bat, the poet’s attitude to bat is one of','fear','sarcasm','contempt','flattering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',125,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:42'),(340,'The first stariza of Eliot’s “The Journey of the Magi” depict the','hazards of the journey','increment of fortune for the pilgrims','blind acceptance of faith','journey as an influential factor.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',134,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(341,'In cope’s “Sonnet VII”, poets are presented; as','recluses','travelers','sociologists','searchers','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',143,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(342,'A poetic devices in which an idea in a line runs into another is called','rhyme scheme','enjambment','end rhyme','pathos','based on General Literary Principles.','','b','','utme','2009',140,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:13'),(343,'The use of sound pattern to suggest meaning in poetry is','rhythm','mimics','lyric','metonymy','based on General Literary Principles.','','a','','utme','2009',141,'Admin','2016-12-12 17:55:02','2020-07-14 15:00:14'),(344,'A conscious imitation of a literary work by another with the aim of ridicule is','mimesis','performance','mockery','parody','based on General Literary Principles.','','d','','utme','2009',134,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(345,'The use of gestures to communicate in drama is known as','burlesque','soliloquy','mime','melodrama','based on General Literary Principles.','','c','','utme','2009',138,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(346,'A short and witty remark is','a limerick','a tercel','an epigram','a litotes','based on General Literary Principles.','','c','','utme','2009',128,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:42'),(347,'An expression that signifies a whole through its significant parts is','synesthesia','synecdoche','metonymy','allegory','based on General Literary Principles.','','b','','utme','2009',126,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:42'),(348,'a structural arrangement of units of composition by which one element of equal importance with another is similarly placed is called','repetition','paradox','refrain','parallelism','based on General Literary Principles.','','d','','utme','2009',130,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:42'),(349,'The pride that contributes to the fall of a tragic character in a play is known as','hamartia','catharsis','hubris','epistasis','based on General Literary Principles.','','a','','utme','2009',145,'Admin','2016-12-12 17:55:03','2020-07-25 16:55:08'),(350,'metrical foot of two stressed or long syllables is called','a spondee','a trochee','an anapest','an iamb','based on General Literary Principles.','','a','','utme','2009',139,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(351,'A group of three lyric stanzas in classical Greek poetry is referred to as','triplet','triolet','trilogy.','triad','based on General Literary Principles.','','b','','utme','2009',135,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(352,'Biokun:  I did it for her! Let them laugh!<br>\\n\t\t\t\tLet them condemn me. I who have always <br>\t\\n\t\t\t\tderided superstition. I have gone bach to the <br>\\n\t\t\t\tshrine of Olokun. At least if he dies, Oroki <br>\\n\t\t\t\twill know I tried everything. <br>\\n\t\t\t\t(Femi I Qsofisan: No More the Wasted Breed)<br>\\nBiokun’s mood in this passage is one of','desperation','frustration','anger','anxiety','based on Literary Appreciation','','b','','utme','2009',145,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(353,'\t‘My song is the root<br>\\n\ttouching other roots <br>\\n\tin a covenant below the crust..’<br>\\n\t(Niyi  Osundare: Waiting Laughters)<br>\\n\\nThe imagery used in the second line of the extract above is','olfactory','visual','tactile','auditory','based on Literary Appreciation','','c','','utme','2009',122,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(354,'‘The huge sacrifice that <br>\\n\twards off death <br>\\n\tThe big offering that <br>\\n\tprevents diseases....’ <br>\\n\t( Temi Osofison: Morountodun ) <br>\\nThe poem above can best be described as','epic','heroic','praise','quatrain','based on Literary Appreciation','','d','','utme','2009',142,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:42'),(355,'Why blame her who denies love for the asking <br><br>\\n\tAnd not the Birds and Moths and Beetles <br>\\n\tThat after deep draughts from rich nectar wells <br>\\n\tFlee the drained petals to virgin flowers. <br>\\nThe lines above are an indictment of','adultery','gluttony','flirtation','infertility','based on Literary Appreciation','','b','','utme','2009',114,'Admin','2016-12-12 17:55:03','2020-07-26 20:56:08'),(356,'\tOh, the market is set like the hub of a wheel <br>\\n\tAnd it pulfs \tlike a magnet strong <br>\\n\tIt is easy to tell <br>\\n\tHow it casts its spell <br>\\n\tAnd draws all the crowds along. <br><br>\\nThe sound device used in the extract above is','rhyme','alliteration','emphasis','assonance','based on Literary Appreciation','','a','','utme','2009',139,'Admin','2016-12-12 17:55:03','2020-07-22 22:12:40'),(357,'A reference beyond the immediate purview of what is being presented is known as','allusion','diversion','inversion','imagery','based on Literary Appreciation','','a','','utme','2009',142,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(358,'‘The how is her barber’ The line is an example','metaphor','hyperbole','personification','litotes','based on Literary Appreciation','','a','','utme','2009',139,'Admin','2016-12-12 17:55:04','2020-07-25 14:33:41'),(359,'‘From the sky suspended <br>\\n\tthe strings of tattered pants <br>\\n\tmarched on trembling feet <br>\\n\tunder stone heavy-kits <br>\\n\tmarched, on their breast <br>\\n\tscared, monogram of skulls and bones.’ <br>\\n\t( Ossie Enejwe: Mass for the Dead ) <br><br>\\n“The subject matter of the extract above is','wastage','war','love','hatred','based on Literary Appreciation','','b','','utme','2009',128,'Admin','2016-12-12 17:55:04','2020-07-14 02:23:33'),(360,'‘Tonderai was assisted by the villages in placing his truck box into the back for the car and he got into the passenger side of the truck. Initially, he was a bit nervous and clearly uncomfortable, his young mind was asking how someone whom, he had almost caused a serious accident could be his benefactor.’ ( Daniel T. Manyika: Two worlds Apart )\\n\\n<br><br>The narrative point of view used in the extract above can best be described as','omniscient','subjective','panoramic','scenic','based on Literary Appreciation','','a','','utme','2009',121,'Admin','2016-12-12 17:55:04','2020-07-25 14:33:41'),(361,'‘Me to the Orangery<br> \\n\tSolitude invites, <br>\\n\ta wagtail, to tell the<br>  \t\t\t\\n\ttangled-wood-tale.’ <br>\\n\t( Christopher Okigbo: Heavengate ) <br><br>\\nThe complexity of the poem can be ascribed to the poet’s use of','archaic diction','structural inversion','compound words','extended met','based on Literary Appreciation','','b','','utme','2009',173,'Admin','2016-12-12 17:55:04','2020-07-28 02:21:30');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `entertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `entertainment` VALUES (1,'What year was ?Africa Queen? music track released by Tu-face Idibia?','2001','2002','2003','2004','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track ?African Queen? came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D?Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D?Banj  first album released?','2002','2005','2001','2004','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `fashion` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `fashion` VALUES (1,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,' ?Ole ku? dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Nigeria won Miss World','2000','2001','2002','2003','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknowledge` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `section` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'used by zh round 3',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknowledge` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many planets do we have?','10','9','8','6','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' What is the position of the Earth from the Sun?','1','2','3','4','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,' What year was Facebook created?','2001','2002','2003','2004','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'The first university in the world was?','Oxford','Al-Azhear of Cairo','Harvard','MIT','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year did Nigeria became a republic?','1960','1965','1963','1914','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,' What year did Tsunami occur','2000','2004','2005','2006','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' When did World War 1 started','1918','1901','1914','1910','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknwbrag` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknwbrag` VALUES (1,'What year was “Africa Queen” music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track “African Queen” came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo’ hit records','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D’Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D’Banj  first album released?','2002','2005','2001','2004','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'How many planets do we have?','10','9','8','6','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What is the position of the Earth from the Sun?','1','2','3','4','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What year was Facebook created?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'The first university in the world was…','Oxford','Al-Azhear of Cairo','Harvard','MIT','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' What year did Nigeria became a republic?','1960','1965','1963','1914','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' What year did Tsunami occur','2000','2004','2005','2006','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' When did World War 1 started','1918','1901','1914','1910','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(54,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(55,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(56,' ‘Ole ku’ dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(57,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(58,'What year did Nigeria won Miss World','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(59,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(60,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(61,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(62,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(63,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(65,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(66,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(67,'Who was the last successful Manchester United Coach?',' Sir Ali Ferguson.',' Alex Ferguson.',' Sir Alex Ferguson',' Sir Alex Fergson','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(68,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(69,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(70,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(71,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(72,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(74,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(75,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(76,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(77,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(78,'Which Nigeria football club won the Premiership title back –to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(79,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(80,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(81,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(82,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(83,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(84,'How many rings are in the Olympic colours?','6','5','4','3','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(85,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(86,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(87,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(88,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(89,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(90,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(91,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(92,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(93,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(94,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(95,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(96,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(97,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(98,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(99,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(100,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(101,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(102,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(103,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(104,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(105,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(106,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(107,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(108,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(109,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(110,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(111,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(112,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(113,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(114,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(115,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(116,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(117,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(118,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(119,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(120,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(121,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(122,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(123,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(124,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(125,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(126,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(127,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(128,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(129,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(130,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(131,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(132,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(133,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(134,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(135,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(136,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `geography` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=237 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `geography` VALUES (1,'The earth rotates through 150 of longitude once in  ','a minute  ','an hour  ','24 hours  ','a day','','','b','','post-utme','2006',210,'Admin','0000-00-00 00:00:00','2020-07-24 07:46:17'),(2,'Aeolian erosion refers to the work of ','Plants ','Wind  ','Ice ','running water','','','b','','post-utme','2006',171,'Admin','0000-00-00 00:00:00','2020-07-16 08:59:22'),(3,'The scale of a map is the ratio between the  ','distance over the land and the distance over the water ','distance on the map and the distance on the globe ','vertical and horizontal differences  ','distance on the map and that on the earth’s surface ','','','d','','post-utme','2006',187,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:28'),(4,'Which of the following scales should show the greatest amount of detail on a map?  ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2006',183,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(5,'Which of the following statements is not true for lines of latitude?  ','they form parallel circles   ','they range from 00 to 1800 N and S  ','only one line is also a Great Circle ','They form parallel circles','','','b','','post-utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-26 11:51:42'),(6,'Large in area and high in population, which of the following countries fits this description?','Lesotho  ','Togo ','Nigeria  ','Zaire','','','c','','post-utme','2006',210,'Admin','0000-00-00 00:00:00','2020-07-24 07:46:17'),(7,'One of these is NOT a landform in Africa   ','Scarp ','Inselberg  ','Drumlin','Doline','','','c','','post-utme','2006',204,'Admin','0000-00-00 00:00:00','2020-07-24 07:55:36'),(8,' Which of these does not lie in the principal earthquake region of the world? ','Japan ','Kenya  ','Iran   ','Turkey ','','','b','','post-utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-24 02:53:43'),(9,'Which  of   these  soil  groups  is  considered   the  most  productive?   ','Chernozems   ','Latosols  ','Podozols   ','Sierozems','','','a','','post-utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:46'),(10,'One example of inland drainage lake in  Africa is  ','Lake Chad ','Lake Victoria ','Lake Malawi ','Lake Turkana','','','a','','post-utme','2006',173,'Admin','0000-00-00 00:00:00','2020-07-24 03:01:36'),(11,'The African river that crosses the equator twice is  ','Zaire ','Nile ','Mississippi  ','Amazon','','','a','','post-utme','2006',217,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:48'),(12,'Some rivers in their delta regions breaks into many branches before entering the sea. These divisions are known as  ',' Creeks ','Distributaries','Tributaries ','Effluents','','','b','','post-utme','2006',198,'Admin','0000-00-00 00:00:00','2020-07-26 15:34:01'),(13,'Kariba Dam is found in River  ','Zambezi ','Congo  ','Niger  ','Nile','','','a','','post-utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(14,'The major air mass affecting the climate of West Africa in summer is the  ','harmattan wind  ','tropical continental  ','warm equatorial  ','tropical maritime ','','','b','','post-utme','2006',187,'Admin','0000-00-00 00:00:00','2020-07-19 22:25:38'),(15,'If a map has a scale of 1:50,000 and a cocoa plantation is represented on the map by a rectangle 4cm by 3cm, what is the area of the plantation?  ','3 sq. km  ','30 sq. km  ','12 sq. km  ','20 sq. km','','','a','','post-utme','2006',189,'Admin','0000-00-00 00:00:00','2020-07-20 11:53:58'),(16,'The gap between two ranges within which transportation is usually possible in a mountainous regions is called  ','Valley  ','Col  ','ridge  ','Spur','','','b','','post-utme','2006',161,'Admin','0000-00-00 00:00:00','2020-07-24 02:16:59'),(17,'What are greenhouse gasses?  ','Gases found around green houses in botanical gardens  ','Gases which are able to trap heat on the earth surface  ','Gases which help global circulation of winds and plants it growths  ','Gases which help farmers grow certain crops during the dry seasons','','','b','','post-utme','2006',206,'Admin','0000-00-00 00:00:00','2020-07-25 23:04:43'),(18,'The doldrums refer to  ','land areas bordering the confluence of the blue and white Nile  ','areas intense weather activities around the Mediterranean  ','areas of South Atlantic where cold and warm currents meet  ','area within a few degrees north and south of the equator.','','','d','','post-utme','2006',172,'Admin','0000-00-00 00:00:00','2020-07-26 12:29:36'),(19,'Nigeria Sat I is designed by primarily to  ','help GSM provider in achieving a wide national coverage  ','strengthen rapid response by Nigeria’s Armed Forces  ','help in the 2006 Census  ','provide information about various regions of the earth','','','d','','post-utme','2006',185,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(20,'The major sedimentary minerals found in Nigeria include:  ','tin, columbite and gold ','tin, coal and salt  ','limestone, columbite and diamond  ','limestone, petroleum and coal','','','d','','post-utme','2006',196,'Admin','0000-00-00 00:00:00','2020-07-14 15:00:57'),(21,'The cloud which are white globular masses, forming ripples in the sky is called  ','Cirrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2006',187,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(22,'Which of the following routes must have least gradient?  ','Motorway ','Rail line  ','Bush path  ','Carnal ','','','b','','post-utme','2006',172,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(23,'The foremost producers of petroleum in the Middle East are:  ','Saudi Arabia, Kuwait, Libya and Iran  ','Saudi Arabia, Iraq, Iran and Kuwait  ','Saudi Arabia, Iran, Venezuela and Oman ','Saudi Arabia, Iraq, Libya and Venezuela','','','b','','post-utme','2006',180,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:00'),(24,'Which of the following is not an Anglophone country  ','Ghana  ','Gambia  ','Liberia  ','Senegal','','','d','','post-utme','2007',211,'Admin','0000-00-00 00:00:00','2020-07-24 23:41:16'),(25,'The shallow part of the sea which separates the deep from the land is called  ','off shore coastal lowland  ','the on-shore tidal current  ','continental shelf formation  ','coastal coral cliff ','','','c','','post-utme','2007',166,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(26,'The port that handle the highest volume of cocoa export in Nigeria is  ','Sapele  ','Warri  ','Lagos  ','Port Harcourt','','','c','','post-utme','2007',182,'Admin','0000-00-00 00:00:00','2020-07-26 12:48:23'),(27,'One major characteristics of rural settlements is that  ','are heterogeneous  ','are homogenous  ','are large in size  ','have more problems than urban settlements','','','b','','post-utme','2007',222,'Admin','0000-00-00 00:00:00','2020-07-24 23:41:16'),(28,'Industrialization in Nigeria can best be promoted through the development of  ','textile industry  ','leather industry  ','iron and steel industry  ','automobile industry ','','','c','','post-utme','2007',191,'Admin','0000-00-00 00:00:00','2020-07-26 12:29:36'),(29,'Most of the industries located in rural areas are  ','low energy consumers  ','high energy consumers  ','raw materials oriented  ','transport oriented ','','','c','','post-utme','2007',216,'Admin','0000-00-00 00:00:00','2020-07-26 12:29:36'),(30,'The distribution of minerals resources in Nigeria is related to its:  ','relief  ','soil  ','vegetation  ','geology ','','','a','','post-utme','2007',182,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(31,'Which of the ocean currents is classified as cool?  ','Benguela  ','Kuro Siwo  ','Gulf Scream  ','Mozambique ','','','a','','post-utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:09'),(32,'The sea area with the highest degree of salinity is the ','Baltic Sea  ','Caspian Sea  ','Dead Sea  ','Mediterranean Sea','','','c','','post-utme','2007',183,'Admin','0000-00-00 00:00:00','2020-07-24 01:56:19'),(33,'The thermometric scale usually employed to described the absolute temperature of the atmosphere is  ','Centigrade  ','Celsius  ','Kelvin  ','Fahrenheit ','','','c','','post-utme','2007',208,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(34,'If the temperature at sea level in a particular place is 200C, place 3500m above sea level in the same area will have a temperature of  ','- 2.750C   ','2.250C  ','22750C  ','22.750C','','','a','','post-utme','2007',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:12'),(35,'Which of the following is not a form of precipitation? ','Dew   ','Snow   ','hail ','fog ','','','d','','post-utme','2007',190,'Admin','0000-00-00 00:00:00','2020-07-19 22:17:49'),(36,'Which of the following pressure belts does not experienced descending air?  ','600N  ','600S  ','00 latitude   ','300N','','','a','','post-utme','2007',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:14'),(37,'In the tropics, the most variable climatic element inter-annually is  ','temperature  ','solar radiation   ','pressure  ','prairies ','','','a','','post-utme','2007',197,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(38,'Soil that are formed by the wind deposition are called ','Laterites  ','loess  ','podsols  ','prairies ','','','b','','post-utme','2007',174,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(39,'Desert soil are usually deficient in ','fertility  ','light grey colour  ','humus content  ','horizons ','','','c','','post-utme','2007',187,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(40,'Podsols and laterites share the following characteristics in common, except  ','infertility  ','high degree of leaching  ','associated with forest vegetation  ','colour ','','','c','','post-utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(41,'The forest type which is the most rich in tree species is the  ','tropical  ','Deciduous  ','Coniferous  ','Mediterranean ','','','a','','post-utme','2007',175,'Admin','0000-00-00 00:00:00','2020-07-26 15:34:01'),(42,'Linseed oil is associated with  ','flax  ','coconut  ','olives  ','rapeseeds','','','a','','post-utme','2007',193,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(43,'Which of the following is not correct with regards to the solar system?  ','The planets all orbit round the sun  ','The sun is only a source of the energy needed on the planets  ','The earth as well as other planets rotate round the sun  ','all the planets have definite orbits around the sun','','','c','','post-utme','2007',189,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(44,'Fossil fuel reserves are found in the Lake Chad basin because  ','The basin lies approximately along he axis on which the rich Bakassi oil fields are found  ','The basin is at the edge of the desert with conditions similar to that of Iraq  ','it is an inland drainage basin with many large rivers emptying into it  ','Its rocks are sedimentary ','','','d','','post-utme','2007',178,'Admin','0000-00-00 00:00:00','2020-07-16 11:19:06'),(45,'Which of the following is correct?  ','The Canaries current is cold and washes the coast of NE Africa  ','The Peruvian current is warm and washes the West coast of America  ','The Gulf stream is warm and moves north eastward on the Atlantic  ','The middle east current is warm and washes the coast of Saudi Arabia ','','','c','','post-utme','2007',185,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(46,'Which of the following formulae is the correct one for converting X0 Fahrenheit temperature reading into Centigrade temperature readings (Y0)?  ','Y = (X + 32)5/90C ','Y = (X – 32)5/90C  ','Y =  (X – 32)9/50C  ','Y = (X+32)9/50C','','','c','','post-utme','2007',189,'Admin','0000-00-00 00:00:00','2020-07-26 12:29:36'),(47,'Oxbow lakes are found in  ','lower courses of some rivers ','wind bow out sites  ','places with history of tectonism ','areas of subsidence ','','','a','','post-utme','2008',175,'Admin','0000-00-00 00:00:00','2020-07-26 11:51:42'),(48,'Coombes are associated with  ','honey-bee farms  ','Karst environment  ','rift valley system  ','cases in the desert','','','b','','post-utme','2008',203,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(49,'The Stevenson’s screen is used to keep  ','barometer   ','thermometers  ','hygrometers  ','evapori meters','','','b','','post-utme','2008',180,'Admin','0000-00-00 00:00:00','2020-07-21 03:50:17'),(50,'Global Positioning Systems (GPS) help in  ','combating crime  ','providing early warning against disasters  ','climate change monitoring ','locating positions on the earth surface ','','','d','','post-utme','2008',170,'Admin','0000-00-00 00:00:00','2020-07-24 00:04:36'),(51,'One of these is not a factor of population growth  ','poverty  ','migration  ','prosperity  ','housing ','','','a','','post-utme','2008',195,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(52,'Which of the following is not a major problem of Kainji Dam?  ','increase in the herds of the cattle that depends on its waters  ','increase in usage of Niger in Niger Republic  ','silting of the dam  ','growing demand for irrigation water','','','b','','post-utme','2008',202,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(53,'The East Africa large lakes are together described as  ','Great Lakes St Lawrence Sea Ways  ','Rift Valley Lakes  ','Sources of large rivers like Nile  ','products of the formation of Mt Kilimanjaro ','','','b','','post-utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-24 01:48:48'),(54,'One of these is not true of rain gauges:  ','Rain gauge provide excellent measurement of rainfall ','Their measurements may be affected by the particular type used ','Their readings may be influenced by slope of the land  ','Rain splashes during heavy rains may lead to over estimation ','','','c','','post-utme','2008',196,'Admin','0000-00-00 00:00:00','2020-07-24 07:55:36'),(55,'South East Asia is noted for its regular experience of  ','hurricane  ','tornadoes  ','typhoons  ','strong wind','','','c','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-07-26 11:51:42'),(56,'Horse latitudes refers to  ','areas around the gulf of guinea ','areas around the equator  ','areas around the Mediterranean sea  ','areas around latitude 300 in both hemispheres.','','','d','','post-utme','2008',182,'Admin','0000-00-00 00:00:00','2020-07-15 13:12:03'),(57,'“High uniform temperature and heavy well distributed rainfall throughout the year” described ','Equaterial rainforest climate  ','Mid altitude friendly environment  ','the zone of forest with a lot of agricultural potentials  ','the great Amazon basin including the Brazilian forests','','','a','','post-utme','2008',196,'Admin','0000-00-00 00:00:00','2020-07-24 00:04:36'),(58,'On of the following is least important to ocean movement  ','salinity of the ocean water  ','temperature of the water  ','planetary wind  ','curvature of the coastal areas','','','d','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:43'),(59,'The cloud which are white globular masses, forming ripples in the sky is called ','Citrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2008',199,'Admin','0000-00-00 00:00:00','2020-07-19 22:41:22'),(60,'Which one of the following seas has highest degree of salinity in the world?  ','Caspian sea  ','Mediterranean sea  ','Dead Sea  ','Red sea','','','c','','post-utme','2008',199,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:45'),(61,'Which of the following landforms is NOT due to the process of glacier erosion? ','Come  ','valley -bench  ','Hanging valley  ','Esker','','','b','','post-utme','2008',190,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(62,'Which of the following rivers does NOT drain into Atlantic Ocean? ','The Niger  ','The Indus  ','The Amazon  ','The Volta','','','b','','post-utme','2008',197,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:48'),(63,'Which features on a  topographic sheet would you analyze to characterize the configuration of the area covered by the sheet  ','Isoyet and Isolines  ','ranges and spot heights ','Contour lines for cross section','Contour lines for slope estimates  ','','','d','','post-utme','2008',187,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(64,'The greatest challenge to future use of automobiles is  ','advances in air travel  ','identification of alternative to fossil fuels  ','changing and more reliable technology for rail transport ','population growth ','','','b','','post-utme','2008',168,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:49'),(65,'The statements ‘one cm 2 km can be represented by the ratio of  ','1:50,000 ','1:500,000  ','120,000','1:200,000','','','d','','post-utme','2008',187,'Admin','0000-00-00 00:00:00','2020-07-24 07:55:36'),(66,'What is the Local Standard time in New York (750W) when it is 2 p.m. in Accra?  ','7 p.m. (19hrs)  ','7 a.m. (0700hrs)  ','9 p.m. (2100hrs)  ','9 a.m. (0900hrs)','','','d','','post-utme','2008',176,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:48'),(67,'On any day in the year at a specific time  ','the sun is overhead along the equator  ','the sun is overhead along the topic of cancer  ','the North Pole has 24 hours of daylight  ','one half of the earth is in darkness','','','d','','post-utme','2008',178,'Admin','0000-00-00 00:00:00','2020-07-24 01:48:48'),(68,'Which of the following is not a true feature produced by volcanic activity? ','horst  ','caldera  ','dyke  ','geyser ','','','a','','post-utme','2008',213,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:53'),(69,'Which is the main crop grown in the Ghezira plains ','Wheat  ','Millet  ','Rice  ','Cotton','','','d','','post-utme','2008',214,'Admin','0000-00-00 00:00:00','2020-07-28 01:22:17'),(70,'Which of the following countries has a large number of people of Africa descent? ','England  ','Canada  ','Chile  ','Brazil ','','','d','','post-utme','2008',170,'Admin','0000-00-00 00:00:00','2020-07-24 01:56:19'),(71,'When it is 1200 noon on longitude 300E. What is the time on longitude 150W.  ','9.00 a.m. ','5.00 p.m.  ','9.00 p.m.  ','5.00 a.m. ','','','a','','post-utme','2008',179,'Admin','0000-00-00 00:00:00','2020-07-16 11:19:06'),(72,'Which of the following Nigerian towns is Not situated near a big river? ','Lokoja ','Onitsha  ','Jebba  ','Abuja','','','d','','post-utme','2008',178,'Admin','0000-00-00 00:00:00','2020-07-22 00:40:31'),(73,'Fishing is the mainstay of the economy of  ','Libya  ','Iran  ','Iceland  ','Chad','','','c','','post-utme','2008',177,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(74,'Which of the following features is produced by wave deposition  ','caves  ','stack  ','tomobolo  ','blow holes','','','c','','post-utme','2009',183,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(75,'Which of the following is the major factor responsible for Japan’s unparalleled industrial growth in the last few decades? ','Japan’s proximity to mainland ','Japan’s cargo population    ','availability of abundant coal and petroleum ','technological proficiency','','','d','','post-utme','2009',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:01'),(76,'Which of the following timber trees are found in the tropical rain forest of Africa? ','Obeche and teak  ','Mahogany and teak  ','Obeche and Mahogany ','Iroko and Eucalyptus','','','c','','post-utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-24 23:41:16'),(77,'Which of the following basins has the highest population concentration? the ','Indus  ','Niger  ','Nile  ','Mississippi ','','','b','','post-utme','2009',195,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(78,'Which of these economic activities is LEAST characteristics of typical urban centres?  ','Commerce ','quarrying  ','transportation  ','manufacturing ','','','b','','post-utme','2009',174,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(79,'In Karst region, when several dolines are joined together to form depression, it is known as ','cave  ','uvala  ','stalactite  ','calcite pallar','','','b','','post-utme','2009',190,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:05'),(80,'Rural settlements can be distinguished from urban settlements by their?  ','function  and population  ','Site and function  ','demography and morphology  ','morphology and location ','','','a','','post-utme','2009',194,'Admin','0000-00-00 00:00:00','2020-07-26 15:34:01'),(81,'The scientist who propounded the theory of continental drift was?  ','Francis bacon  ','Alfred Wegener   ','Authur Holmes ','Williams Davis','','','b','','post-utme','2009',181,'Admin','0000-00-00 00:00:00','2020-07-20 12:52:10'),(82,'The major world exports of wool are  ','Britain, Australia, Mediterranean Europe and Argentina   ','New Zealand, Uruguay, Australia and Argentina  ','Australia, India, Paraguay and Argentina  ','New Zealand, India, Uruguay and Peru','','','b','','post-utme','2009',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:08'),(83,'Blantyre, Rio Janeiro, New York and Lagos are similar in that they all serves as their countries ','major seaport  ','political headquarter ','commercial centres ','cultural centres','','','c','','post-utme','2009',169,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(84,'The dawn is a temperature grassland found in? ','Australia  ','South America  ','Eurasia  ','South Africa','','','a','','post-utme','2009',175,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:10'),(85,'Commercial grape cultivation is associated with?  ','cool temperature climate  ','monsoon regions  ','Mediterranean regions  ','Montane climate ','','','c','','post-utme','2009',176,'Admin','0000-00-00 00:00:00','2020-07-18 11:16:09'),(86,'The highest volume of shipping across the Atlantic ocean is  ','between Europe and Africa  ','between North America and Europe  ','between African and South America ','between North America and South America','','','b','','post-utme','2009',189,'Admin','0000-00-00 00:00:00','2020-07-15 01:42:42'),(87,'The Ukraine of economic activities  ','commercial grain agriculture  and livestock random ','plantation agriculture and nomadic herding.','','','','','a','','post-utme','2009',183,'Admin','0000-00-00 00:00:00','2020-07-24 01:29:00'),(88,'All planets have satellites except:  ','Earth & Venus ','Mars & Mercury  ','Mercury & Venus  ','Neptune & Venus','','','c','','post-utme','2010',190,'Admin','0000-00-00 00:00:00','2020-07-26 12:48:23'),(89,'Which of the following location in Nigeria has the least mean annual rainfall total?  ','Sokoto  ','Maiduguri  ','Potiskum  ','Nguru','','','b','','post-utme','2010',200,'Admin','0000-00-00 00:00:00','2020-07-16 09:57:57'),(90,'Which of the following is not the Karst features? ','Poljes  ','Uvala  ','Kopjes  ','Dolines ','','','c','','post-utme','2010',182,'Admin','0000-00-00 00:00:00','2020-07-23 20:40:52'),(91,'The world’s longest river is ','Amazon  ','Mississippi  ','Nile  ','Chang Jiang','','','c','','post-utme','2010',186,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(92,'One of these is a features of rejuvenated river: ','Incised menders  ','Braided channel  ','delta  ','Levees ','','','a','','post-utme','2010',169,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(93,'Which one of these is not a thermometric scale:  ','Celsius  ','Kelvin  ','Fahrenheit  ','Octas ','','','d','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(94,'Which of these is not a form of condensation? ','Snow ','Rime  ','Cloud  ','Fog','','','b','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:20'),(95,'Cyclones are centres of  ','relative low pressure  ','relative high pressure  ','Tsunamis  ','turning around of winds','','','a','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-17 01:22:34'),(96,'The best natural harbour in West Africa is at  ','Lome  ','Tema ','Lagos ','Freetown ','','','d','','post-utme','2010',181,'Admin','0000-00-00 00:00:00','2020-07-24 03:01:36'),(97,'Sandstone is metamorphosed into  ','Slate  ','Schist  ','graphite  ','Quartzite ','','','d','','post-utme','2010',178,'Admin','0000-00-00 00:00:00','2020-07-26 12:48:23'),(98,'The navigability of River Nile is limited because  ','it is too long  ','it is too shallow  ','it flows during the wet season only  ','it has several cataracts. ','','','d','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-25 15:47:23'),(99,'The cloud which is closely associated with thunderstorms is  ','strato-cumulus  ','Cirrocumulus  ','Cumulus-nimbus  ','Alto-stratus ','','','c','','post-utme','2010',175,'Admin','0000-00-00 00:00:00','2020-07-22 00:40:31'),(100,'Drought-tolerant plants are  ','Epiphytes  ','Hydrophytes  ','Droughytes  ','Xerophytes ','','','d','','post-utme','2010',189,'Admin','0000-00-00 00:00:00','2020-07-26 12:48:23'),(101,'Campos is the name for the grassland in  ','North America  ','South America  ','Africa  ','Asia ','','','b','','post-utme','2010',185,'Admin','0000-00-00 00:00:00','2020-07-26 12:31:56'),(102,'When the moon comes in between the earth and the sun in a perfect straight line, it is known as','Eclipse of the moon  ','Lunar eclipse ','solar eclipse  ','eclipse of the earth ','','','c','','post-utme','2010',192,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:28'),(103,'The earth rotates ','South East-South West  ','South West South West  ','West East  ','East West','','','c','','post-utme','2010',190,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(104,'A degree latitudinal distance is approximately ','70km  ','111km  ','180km  ','360km','','','b','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(105,'Large masswa of moving ice in the oceans are  ','glacier  ','iceberg  ','ice-sheet  ','ice-caps','','','b','','post-utme','2010',184,'Admin','0000-00-00 00:00:00','2020-07-25 09:55:24'),(106,'The world driest desert is  ','Atacama  ','Sahara  ','Kalahari  ','California ','','','a','','post-utme','2010',189,'Admin','0000-00-00 00:00:00','2020-07-25 02:56:11'),(107,'A line joining places of equal salinity is  ','isohaline  ','Isoneph  ','Isohyets  ','Isohel','','','a','','post-utme','2010',204,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(108,'Which of these is not on the western side of continental land masses? ','Agulhas  ','Canary  ','Penivian  ','California','','','a','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(109,'In general, temperature decreases from the equator towards the Poles because  ','angle of incidence of sun’s rays increases towards the poles ','angles of incidence sun’s rays decreases towards the poles  ','Snow-cover of the higher latitudes reduces the temperature  ','snow falls rather than rain in the pole','','','a','','post-utme','2010',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:36'),(110,'Which of the following continents is crossed by both the Tropic of Cancer and Tropic of Capricorn?  ','Asia  ','South America ','North America  ','Africa','','','d','','post-utme','2010',175,'Admin','0000-00-00 00:00:00','2020-07-19 22:17:49'),(111,'The sea bed, bordering the continents which is covered by the shallow water is known as ','continental slope ','coral reef ','continental shelf  ','continental platform  ','','','c','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-07-24 07:55:36'),(112,'The result of football match completed at 6.00p.m. at Accra (Ghana) and immediately announced over the wireless was heard at 12.00noon same day at another city. The longitude of the city is ','900E  ','600E  ','900W  ','450W ','','','c','','post-utme','2010',199,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(113,'Soil that are formed by wind deposition are called  ','laterites  ','prairies  ','podsols   ','Loess  ','','','d','','post-utme','2011',189,'Admin','0000-00-00 00:00:00','2020-07-24 01:56:19'),(114,'Which of the following is not a feature of sea deposition ','Shoal ','Beach ','Spit ','coal','','','d','','post-utme','2011',180,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(115,'Which of the following terms is associated with glaciations? ','Arête   ','Bay   ','Stacks   ','Reef   ','','','a','','post-utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(116,'The lower part of a river valley that has been submerged by the sea is called ','Estuary   ','Reef    ','Spit   ','Bar  ','','','b','','post-utme','2011',189,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(117,'Which of the following is a cold ocean current ','Mozambique   ','gulf stream ','Kuro Siwo  ','Benguela   ','','','d','','post-utme','2011',170,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(118,'The most important cause of tides is the,','distribution of the prevailing winds ','rotation of the earth on its own axis  ','inclination of the earth’s axis  ','gravity attraction of the moon ','','','d','','post-utme','2011',190,'Admin','0000-00-00 00:00:00','2020-07-14 15:02:51'),(119,'Desert soils are usually deficient in ','fertility  ','humus content ','horizon ','light grey colour   ','','','b','','post-utme','2011',189,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(120,'At the summer solstice [June 21st], which of the following latitudes will have the longest day ','700S   ','900S  ','300N   ','650N   ','','','d','','post-utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(121,'Cyclones refer to ','centers of relatively high pressure ','centers of relatively low pressure ','centers Tsunamis ','centers in the desert ','','','b','','post-utme','2011',177,'Admin','0000-00-00 00:00:00','2020-07-16 10:03:41'),(122,'The wearing away of the sides and bottom of a river channel is called ','corrasion ','corrosion ','hydraulic action ','Complicated erosion ','','','a','','post-utme','2011',175,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:48'),(123,'When the moon comes in between the earth and the sun in a straight line, it is known as  ','solar eclipse ','eclipse of the earth ','eclipse of the moon ','lunar eclipse ','','','a','','post-utme','2011',179,'Admin','0000-00-00 00:00:00','2020-07-24 02:53:43'),(124,'A degree of latitudinal distance is approximately  ','111km  ','221KM ',' 121km  ','212km  ','','','a','','post-utme','2011',185,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(125,'Which of the following places in Nigeria has the highest mean annual rainfall amount ','Sokoto  ','Maiduguri  ','Nguru   ','Kano  ','','','c','','post-utme','2011',213,'Admin','0000-00-00 00:00:00','2020-07-24 03:01:36'),(126,'The formulae for converting temperature from a centigrade (0C) to a Fahrenheit (0F) thermometric scale? ','0F = 1.8 x 0C + 32  ','0F = 0.5x 0C + 32  ','0F = 1.8x 0C – 32   ','0F = 0.5x 0C – 32  ','','','a','','post-utme','2011',186,'Admin','0000-00-00 00:00:00','2020-07-23 10:09:51'),(127,'The Northern Hemisphere’s Spring Equinox is during the month of','February ','march ','April   ','May  ','','','b','','post-utme','2011',206,'Admin','0000-00-00 00:00:00','2020-07-24 01:56:19'),(128,'Noonday sun is vertically overhead along the Tropic of Cancer during the month of  ','June  ','July  ','August  ','September ','','','a','','post-utme','2011',168,'Admin','0000-00-00 00:00:00','2020-07-14 21:18:43'),(129,'An instrument used in measuring the atmospheric pressure is called ','Barometer ','Thermomete','Hygrometer','Presometer','','','a','','post-utme','2011',188,'Admin','0000-00-00 00:00:00','2020-07-25 02:56:11'),(130,'Orographic rainfall is also called ','Relief rainfall','cyclonic rainfall ','convectional rainfall ','frontal rainfall ','','','a','','post-utme','2011',184,'Admin','0000-00-00 00:00:00','2020-07-24 07:55:36'),(131,'The forest type which is richest in tree species is the ','Deciduous forest ','Mediterranean forest ','Tropical Lowland  rainforest ','coniferous forest  ','','','c','','post-utme','2011',159,'Admin','0000-00-00 00:00:00','2020-07-24 07:55:36'),(132,'Which of the following statements is not true for lines of latitudes?','they range from 00 to 1800 North and South ','they range from 00 to 900 North and South ','They vary in D. they form parallel circles','only one line is a great circle.','','','a','','post-utme','2011',170,'Admin','0000-00-00 00:00:00','2020-07-26 15:34:01'),(133,'The earths rotates through 150C of longitude in  ','24hrs  ','15hrs  ','4hrs   ','1hrs   ','','','d','','post-utme','2011',202,'Admin','0000-00-00 00:00:00','2020-07-19 22:25:38'),(134,'What is the local standard time in New York (750W) when it is 2pm in Accra? ','9.00pm  ','9.00 pm  ','7.00pm   ','7.00am ','','','b','','post-utme','2011',167,'Admin','0000-00-00 00:00:00','2020-07-24 23:41:16'),(135,'Aeolian erosion refers to the work of  ','Wind ','Running water  ','Glacier  ','Ice  ','','','a','','post-utme','2011',170,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(136,'Which of the following landforms is the results of  river rejuvenated?  ','Ox-box lake ','flood plain ','terrace  ','alluvial fan  ','','','c','','post-utme','2011',208,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(137,'The representative fraction of 1:50,000 can be converted to the following  ','one cm to 5km  ','one cm to 0.05km  ','one cm to 2km  ','one cm to 4km  ','','','b','','post-utme','2011',187,'Admin','0000-00-00 00:00:00','2020-07-26 12:31:56'),(138,'Which of the following is not a rapid type of mass movement? ','Solidification ','Rockfall  ','Mudflow  ','Debris Slide','','','a','','post-utme','2012',193,'Admin','0000-00-00 00:00:00','2020-07-24 01:29:00'),(139,'A front in which warm air is overtaken and lifted off the ground by cold air in a depression is known as  ','Cold front  ','Warm front  ','Mixed front  ','Occluded','','','d','','post-utme','2012',173,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(140,'The earth’s atmosphere is said to be stable  ','when the environmental laps rate is greater than the adiabatic lapse rate  ','When the adiabatic lapse rate is greater than the environmental lapse rate  ','When the environmental lapse rate is equal to the adiabatic lapse rate  ','When the environmental lapse rate is not equal to the adiabatic lapse rate.','','','b','','post-utme','2012',188,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:49'),(141,'Environmental lapse rate is  ','The rate of temperature changes of an air parcel undergoing vertical displacement  ','The rate of temperature decrease of an air parcel undergoing horizontal displacement  ','The actual rate decrease of temperature with increase in altitude at a given place at a given moment  ','The rate of horizontal temperature gradient of an air parcel','','','c','','post-utme','2012',199,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:49'),(142,'What is the Centigrade equivalent of 950 Fahrenheit? ','1390C  ','37.20C  ','350C','3.60C','','','c','','post-utme','2012',197,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:27'),(143,'Which of the following States in Nigeria would a person NOT pass over by crow fly (direct distance) from Ibadan to Makurdi? ','Osun  ','Ondo ','Kogi  ','Enugu','','','d','','post-utme','2012',232,'Admin','0000-00-00 00:00:00','2020-07-25 08:50:09'),(144,'The Latitude which marks the limits of the overhead sun’s apparent movement is  ','0','66.5','32.5','23.5','','','d','','post-utme','2012',216,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:29'),(145,'Which of the following features is not commonly associated with a river at the floodplain stage? ','Meanders  ','Levees ','Braided channel  ','Knick point ','','','a','','post-utme','2012',202,'Admin','0000-00-00 00:00:00','2020-07-24 01:48:48'),(146,'The World’s richest fishing grounds are found  ','On the continental shelves  ','In oceanic deeps ','In big and fast-flowing river  ','In river estuaries ','','','a','','post-utme','2012',173,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(147,'A deflation hollow is produced by  ','River erosion  ','Water action in a limestone area  ','Wind erosion in deserts  ','Wave erosion on the coast ','','','c','','post-utme','2012',198,'Admin','0000-00-00 00:00:00','2020-07-26 08:42:12'),(148,'Akosomo dam is on the River  ','Niger  ','Nile  ','Congo  ','Volta','','','d','','post-utme','2012',186,'Admin','0000-00-00 00:00:00','2020-07-26 12:29:36'),(149,'Which of the following is a not characteristic of the International Date Line? ','The Line is approximately along the 1800 meridian  ','The line has a zigzag shape  ','Local time is the same on either side of the line  ','A traveler gains a day when crossing the line from the west to the east ','','','c','','post-utme','2012',162,'Admin','0000-00-00 00:00:00','2020-07-26 11:51:42'),(150,'Which of the following African cities is situated near the confluence of rivers? ','Niamey  ','Freetown  ','Cairo  ','Khartoum ','','','d','','post-utme','2012',189,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(151,'Ferrel’s law states that winds deflect to the  ','Left in the northern  ','Right in the Northern hemisphere and to the left in the Southern hemisphere  ','Right in both hemispheres  ','Left in both hemisphere.','','','b','','post-utme','2012',185,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:36'),(152,'Given an environmental lapse tate of 0.650C per 100 metres, a place with sea level temperature of 400 and 2500 metre above the sea level will approximately have a temperature of  ','31.250C  ','23.750C  ','32.50C  ','28.250C ','','','b','','post-utme','2012',211,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(153,'At the summer solstice (June 21), which of the following latitudes will have the shortest night?','30 “N  ','30 “S  ','50 “N  ','50 “S','','','c','','post-utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(154,'Which of the following landforms result from wind deposition? ','Playa  ','Barchan  ','Bajada  ','Fan','','','b','','post-utme','2012',212,'Admin','0000-00-00 00:00:00','2020-07-26 12:48:23'),(155,'Which of the following farming practices can be used to check soil erosion? ','Contour ploughing  ','Ploughing of land upslope  ','Bush burning  ','Shifting','','','a','','post-utme','2012',200,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(156,'Aeolian erosion refers to the work of  ','Plants  ','Wind  ','Ice  ','Running water','','','b','','post-utme','2012',223,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(157,'The difference in the readings on the dry and wet bulb thermometers used to determine  ','Relative humidity  ','Temperature range  ','Evaporation  ','Transpiration ','','','a','','post-utme','2012',180,'Admin','0000-00-00 00:00:00','2020-07-26 15:34:01'),(158,'Which of the following scales should show the greatest amount of detail on a map? ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2012',191,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(159,'Sandstone is metamorphosed into  ','Slate  ','Quartzite  ','Schiest  ','Graphite ','','','b','','post-utme','2012',181,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:44'),(160,'In humid areas, farmers add lime to the soil to  ','reduce acidity  ','Act as fertilizer  ','Facilitate the absorption of nutrient  ','Encourage the farmer','','','a','','post-utme','2012',198,'Admin','0000-00-00 00:00:00','2020-07-26 12:29:36'),(161,'In the hydrological cycle, the transfer of water from the earth’s surface to the atmosphere is by ',' Evaporation only  ','Transpiration Only  ','Evaporation  ','Condensation ','','','c','','post-utme','2012',172,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(162,'The second Equinox in any year take place during the month of','March   ','June   ','September   ','December','','','c','','post-utme','2013',191,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:47'),(163,'Which of the following countries in Africa would a person NOT pass over by crow fly (direct distance) from Abidjan to Cairo?  ','Niger    ','Libya','Burkina Faso  ','Chad','','','c','','post-utme','2013',217,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(164,'The main work of a river in its torrent stage is  ','Widening its valley','Down cutting','Deposition  ','Bifurcation','','','a','','post-utme','2013',194,'Admin','0000-00-00 00:00:00','2020-07-24 01:56:19'),(165,'Which of the locations in Nigeria has the highest mean annual rainfall total ?  ','Benin City  ','Port-Harcourt  ','C.Calabar   ','Ondo','','','b','','post-utme','2013',165,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:49'),(166,'The world’s longest river is  ','River Amazon    ','River-Mississippi   ','River Nile  ','River Chang Jiang','','','c','','post-utme','2013',196,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:51'),(167,'Which of the following is a feature  of a rejuvenated river?','Incised meanders   ',' Braided channel   ','Delta   ','Levees','','','a','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:53'),(168,'Which of the following is not a thermometric scale?','Celsius     ','Kelvin','Fahrenheit   ','Octas','','','d','','post-utme','2013',185,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(169,'Which of the following is not a form of condensation?  ','Snow  ','Rime  ','C.Cloud  ','Fog','','','d','','post-utme','2013',197,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:48'),(170,'The surface of discontinuity between the earth’s crust and the mantle is know as','Lithosphere   ','Barysphere','Mohocivic Discontinuity','Gutenburg discontinuity','','','b','','post-utme','2013',178,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:48'),(171,'Where is Sahel Savanna vegetation belt found in Nigeria?','Northwest   ','Northeast','Both Northwest and Northeast','From the middle belt to the north','','','b','','post-utme','2013',172,'Admin','0000-00-00 00:00:00','2020-07-14 15:03:57'),(172,'The largest soil group, found in the temperate grasslands, having a deep, black, nutrient-rich','A-horizon, a compact  B-horizon and a zone of calcium carbonate accumulation is called a','Chernozem  ','Pedocal   ','Podsol  ','Chestnut','','a','','post-utme','2013',196,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(173,'Drought-tolerant plants are known as  ','Epiphytes  ',' Hydrophytes','Drouphytes','Xerophytes','','','d','','post-utme','2013',172,'Admin','0000-00-00 00:00:00','2020-07-24 00:11:52'),(174,'The major disadvantage of the River Nile as a trade route is that  ','it is too long   ','it is too shallow   ','it flows during the wet season only   ','it has several cataracts','','','d','','post-utme','2013',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:01'),(175,'The earth rotates from  ','Southeast to Southwest','Southwest  to Southeast','West to East  ','East to West','','','c','','post-utme','2013',187,'Admin','0000-00-00 00:00:00','2020-07-24 00:11:52'),(176,'The tropical maritime air mass attains its maximum incursion over West African hinterlands','When the sun is overhead on the tropic of Capricorn  ','When the sun is overhead on the tropic of Cancer ','When the sun is overhead on the Equator','When the sun is overhead on both the tropic of Cancer and Tropic of Capricom','','','c','','post-utme','2013',184,'Admin','0000-00-00 00:00:00','2020-07-20 13:02:15'),(177,'A line joining places of equal salinity is known as','Isohaline   ','Isoneph','Isohyet   ','Isohel','','','a','','post-utme','2013',191,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(178,'Which of the following continents has the largest area with a tropical type of climate?','Asia   ','South America','North America  ','Africa','','','a','','post-utme','2013',178,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(179,'One hour’s difference in mean solar time represents what angular difference in longitude?','15o ','23.5o  ','90o','66.5o','','','a','','post-utme','2013',199,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:06'),(180,'An extended urban area, typically consisting of several towns merging with the suburbs of one or more cities can best be referred to as  ','Conurbation','Urban decay  ','Growth pole','Urban Inertia','','','a','','post-utme','2013',183,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:07'),(181,'Which of the following terms is not associated with desert-type topography?','Zuegen    ','Yardang  ','Mesa  ','Uvala','','','d','','post-utme','2013',177,'Admin','0000-00-00 00:00:00','2020-07-24 02:53:37'),(182,'The major characteristics of a karst scenery include','Excessive overland flow','Extensive and long surface flow  ','An underground network of caves and streams','Frequent  surface drainage','','','c','','post-utme','2013',193,'Admin','0000-00-00 00:00:00','2020-07-16 11:19:06'),(183,'Which of the following landforms originates from Aeolian erosion?','Deflation hollow  ','Sand dune  ','Playa   ','Wadi','','','a','','post-utme','2013',180,'Admin','0000-00-00 00:00:00','2020-07-20 12:40:02'),(184,'The cheapest means of transport for a long distance travel is by   ','Air   ','Rail','Water   ','Road','','','c','','post-utme','2013',212,'Admin','0000-00-00 00:00:00','2020-07-26 12:48:23'),(185,'A traveler crossing the international Date line from America to Asia at 1.00 P.M. on Saturday, July 13th, 2013, would have to change his watch to 1.00 P.m. on','Sunday, July 14th, 2013','Friday, July 12th 2013','Saturday, July 13th, 2013','Monday, July 15th, 2013','','','a','','post-utme','2013',182,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(186,'The shaduf method of irrigation was first practiced in','Sudan   ','Ghana   ','Egypt    ','Mali','','','c','','post-utme','2013',200,'Admin','0000-00-00 00:00:00','2020-07-24 01:29:00'),(187,'Climate is the: ','Prevailing weather conditions of a region for 10 years ','Prevailing weather conditions of a region for 15 years  ','Prevailing weather conditions of a region for 35 years  ','Prevailing weather conditions of a region for 20 years  ','','','c','','post-utme-aaua','2014',183,'Admin','0000-00-00 00:00:00','2020-07-17 01:22:34'),(188,'Igneous rocks are rocks formed by','The cooling of molten minerals from a liquid into a solid.','The change of minerals from a solid into a liquid','The deposition of minerals. ','The deposition of minerals a solid into a liquid. ','','','a','','post-utme-aaua','2014',157,'Admin','0000-00-00 00:00:00','2020-07-26 12:31:56'),(189,'Temperature is a measure of: ','The average hotness','The average coolness','The average heat. ','The average emission.','','','c','','post-utme-aaua','2014',180,'Admin','0000-00-00 00:00:00','2020-07-23 20:40:52'),(190,'Isotherm refers to: ','Line that connects points of equal sunshine','Line that connects points of equal rainfall','Line that connects points of equal pressure.  ','Line that connects points of equal temperature','','','d','','post-utme-aaua','2014',177,'Admin','0000-00-00 00:00:00','2020-07-24 23:41:16'),(191,'The longest river in Africa is:  ','River Nile. ','River Niger. ','River Benue','River Zambezi ','','','a','','post-utme-aaua','2014',183,'Admin','0000-00-00 00:00:00','2020-07-15 03:42:49'),(192,'Isobar refers to: ','Line that connects points of equal humidity. ','Line that connects points of equal rainfall.   ','Line that connects points of equal pressure.  ','Line that connects points of equal temperature. ','','','c','','post-utme-aaua','2014',176,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(193,'Topographic maps are: ','Representations of features on the Earth\\'s surface','Features on the Earth\\'s surface. ','Detailed and accurate graphic representations of features on the Earth\\'s surface ','Geographic coordinate grid on the Earth\\'s surface. ','','','c','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-07-24 07:55:36'),(194,'Lesotho is in: ','South Africa','West Africa.   ','East Africa','Central Africa','','','c','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-07-22 00:40:31'),(195,'Weathering of rocks is: ','The formations of rocks','The breaking down of rocks.   ','The deformations of rocks','The accumulation of rocks. ','','','b','','post-utme-aaua','2014',154,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:22'),(196,'Scale of a map is defined as: ','The ratio of a distance on the drawing board to the corresponding distance on the ground. ','The ratio of a distance on the map to the corresponding distance on the ground','The ratio of a distance on the tape to the corresponding distance on the ground. ','The ratio of a distance on the ruler to the corresponding distance on the ground','','','b','','post-utme-aaua','2014',158,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:23'),(197,'The capital of Niger state in Nigeria is: ','Gusau','Yola','Makurdi','Minna','','','d','','post-utme-aaua','2014',155,'Admin','0000-00-00 00:00:00','2020-07-21 03:43:11'),(198,'A valley is a:   ','Highland between hills','Lowland between hills','Rock between hills','Highland between trees. ','','','b','','post-utme-aaua','2014',189,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(199,'Nigeria has a total land area of: ','923,768 km2 ','823,768 km2 ','623,768 km2 ','723,768 km2 ','','','a','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-20 13:18:15'),(200,'A lake is a:   ','Large body of water surrounded by forest. ','Large body of water surrounded by land. ','Large body of water surrounded by rocks','Large body of water surrounded by water. ','','','b','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-07-26 12:48:23'),(201,'Nigeria is having','574 Local Government Areas','674 Local Government Areas. ','774 Local Government Areas. ','874 Local Government Areas','','','c','','post-utme-aaua','2014',159,'Admin','0000-00-00 00:00:00','2020-07-20 13:00:45'),(202,'An island is a:   ','Piece of land surrounded by water.   ','Piece of land surrounded by land. ','Piece of land surrounded by forest. ','Piece of land surrounded by rocks. ','','','a','','post-utme-aaua','2014',161,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:29'),(203,'The ethnic groups in Nigeria are: ','More than 250  ','More than 150   ','More than 100   ','Less than 150 ','','','a','','post-utme-aaua','2014',173,'Admin','0000-00-00 00:00:00','2020-07-24 23:41:16'),(204,'Orographic rainfall is a:   ','Temperate rainfall','Relief rainfall. ','Coastal rainfall','Forest rainfall.   ','b','','','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-07-17 01:36:15'),(205,'One major societal issues in Nigeria is: ','Poor feeding. ','Poor human rights','Poor language','Poor religion. ','','','b','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-07-24 01:56:19'),(206,'The United Nations estimate of Nigeria population in 2009 was','154,729,000','144,729,000.00','164,729,000.00','184,729,000.00','','','b','','post-utme-aaua','2014',179,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:48'),(207,'Nigeria lies between','Latitudes 4° and 13°N and longitudes 2° and 15°E. ','Latitudes 5° and 14°N and longitudes 4° and 15°E. ','Latitudes 4° and 14°N and longitudes 2° and 15°E. ','Latitudes 2° and 15°N and longitudes 4° and 14°E. ','','','c','','post-utme-aaua','2014',162,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:42'),(208,'Kinshasa is a: ','Central African City ','North African City ','East African City ','South African City ','','','a','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(209,'Freetown is a: ','North African City ','West African City ','South African City ','East African City ','','','b','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:45'),(210,'Which one of the following countries is having the highest quality of life? ','Sweden  ','Austria ','United States of America ','England  ','','','a','','post-utme-aaua','2014',197,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(211,'Nairobi is a: ','North African City ','West African City ','South African City ','East African City ','','','d','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-24 03:01:36'),(212,'The most populated country in the world is: ','Austria ','China ','United States of America ','Brazil ','','','b','','post-utme-aaua','2014',186,'Admin','0000-00-00 00:00:00','2020-07-14 15:04:48'),(213,'Casablanca is a','North African City ','West African City ','South African City ','Central African City ','','','a','','post-utme-aaua','2014',173,'Admin','0000-00-00 00:00:00','2020-07-26 15:39:48'),(214,'The World largest Ocean is: ','Pacific Ocean ','Atlantic Ocean ','Indian Ocean ','Arctic Ocean ','','','a','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-07-24 07:46:17'),(215,'Dominican Republic is in: ','Europe ','Africa ','America ','Asia ','','','c','','post-utme-aaua','2014',189,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(216,'The World Longest Coastlines is in: ','Austria ','England  ','United States of America ','Canada ','','','d','','post-utme-aaua','2014',165,'Admin','0000-00-00 00:00:00','2020-07-14 21:36:44'),(217,'Which of the following is an evidence to show that the earth is spherical in shape? ','Elliptical orbit ','Ea th s  u ed ho izo','Revolution of the earth ','Seasonal changes ','','','b','','post-utme-aaua','2014',187,'Admin','0000-00-00 00:00:00','2020-07-27 23:37:11'),(218,'A lines drawn on a maps to show places of equal rainfall is called ','Rainline ','Isotope ','Isotherm ','Hydrotope ','','','b','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(219,'Wind erosion is most common in ','Rocky areas ','Riverine areas ','Arid areas ','Humid areas ','','','c','','post-utme-aaua','2014',142,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(220,'The act of graphical representation of places with identified scale and legend is called ','Scaling ','Mapping  ','Sketching ','Drawing ','','','b','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(221,'A piece of land almost surrounded by water is called ','Headland ','Peninsula ','Island   ','Plateau ','','','c','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-07-24 00:11:52'),(222,'Planet warming the use of water transport is limited by all the following except  ','Wide valleys   ','Waterfalls ','Seasonality  ','Narrow gorges   ','','','a','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(223,'To obtain the climate of a place the average atmospheric weather conditions should be considered ','20years ','24years','35years ','10years ','','','c','','post-utme-aaua','2014',205,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(224,'Which of the following is a major hindrance to H.E.P.','Inadequate capital  ','Unavailability of good sites  ','Absence of domestic market  ','Sufficient volume of water  ','','','d','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:00'),(225,'Isotherms are lines drawn on maps joining places having equal ','Temperature   ','Cloud cover ','Pressure ','Water level ','','','a','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:01'),(226,'Precipitation include all the following except ','Fog','Snow ','Dust   ','Dew ','','','c','','post-utme-aaua','2014',163,'Admin','0000-00-00 00:00:00','2020-07-25 02:56:11'),(227,'The location of iron and steel industry at Ajaokuta in Nigeria is best explained by the presence of ','Limestone and coal  ','Iron ore   ','Bauxite  ','Manganese ','','','b','','post-utme-aaua','2014',181,'Admin','0000-00-00 00:00:00','2020-07-24 23:58:05'),(228,'Settlements can be classified according to all the following except the   ','The arrangements of the building   ','Number of people per settlements   ','Functions  ','The type of people that live in the area   ','','','d','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-07-24 02:16:59'),(229,'The average hurricane exists, on the average, for about ________. ','one week ','two weeks ','three weeks ','four weeks ','','','d','','post-utme-aaua','2014',191,'Admin','0000-00-00 00:00:00','2020-07-20 13:17:11'),(230,'……...Refers to the nature of the surface of an area and the features that abound therein above the sea level','Barchans ','Relief   ','Plateaux   ','Plain','','','b','','post-utme-aaua','2014',164,'Admin','0000-00-00 00:00:00','2020-07-20 12:55:32'),(231,'Any buoyant parcel of air is said to exhibit ________. ','Instability ','The dry adiabatic lapse rate ','The moist adiabatic lapse rate ','Advection','','','a','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-07-24 02:16:59'),(232,'The north east and south west trade winds meet along a plane surface where they continuously rub ','Abnormal front  ','Leeward front  ','Intertropical front ','Windward front  ','','','c','','post-utme-aaua','2014',181,'Admin','0000-00-00 00:00:00','2020-07-26 11:52:52'),(233,'________ is the time of day when tornadoes are most likely to occur','Dawn ','Mid-afternoon ','Evening ','Noon ','','','b','','post-utme-aaua','2014',164,'Admin','0000-00-00 00:00:00','2020-07-25 10:04:24'),(234,'Crude oil is ------------  rock mineral   ','An igneous   ','A sedimentary  ','A metamorphic  ','A plutonic  ','','','b','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(235,'The new name of Calicut, a famous city of Kerala is ','Kozhikode','Trivendrum','Kalighat ','Koderma ','','','a','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-07-15 00:27:42'),(236,'An anemometer is used to measure','wind vane','wind direction','wind speed','wind pressure','','','c','','post-utme-aaua','2014',163,'Admin','0000-00-00 00:00:00','2020-07-24 01:29:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `government` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=724 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `government` VALUES (1,'In which of the following countries is governmental powers most fused? ','Nigeria ','United States of America ','France ','Canada','','','c','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:12'),(2,'The benefits of separation of powers include the following except ','prevention of tyranny ','check of abuse ','promoting democracy with free and fair election ','avoidance of arbitrariness','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:13'),(3,'Laws made by state   government are known as ','edicts ','bye-law ','acts  ','decrees','','','a','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:14'),(4,'In a parliamentary system of government, the function of the head of state and the head of government are vested in ','the inner cabinet ','an individual ','two different individuals ','the ministerial council','','','c','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:15'),(5,'In a modern democracy, the ultimate source of sovereignty is the ','legislature and executive ','judiciary ','ruling political party ','people','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:16'),(6,'The British took over Nigeria through ','negotiation ','bargaining  ','war ','the sea','','','a','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:17'),(7,'Politics is an act for ','man to govern himself ','man to create governments ','states to control its destiny ','man to dominant others','','','a','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:18'),(8,'A major issue that distinguishes pressure groups from political parties is ','membership drive ','objective ','vomiting pattern ','ideology','','','b','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:19'),(9,'A nation consist of people with ','common history ','common ancestry ','a  shared set of values ','A, B and C above','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:20'),(10,'A totalitarian state is based on  ','multi-party system ','total protection of civic rights ','the totality of the state processes ','coercion as the instrument of government','','','d','','post-utme','2006',90,'Admin','0000-00-00 00:00:00','2020-07-28 00:06:45'),(11,'A political concept that defines  the beliefs, attitudes and values of a society is called ','political socialization ','political culture ','political transformation ','referendum','','','b','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:22'),(12,'The agent of political socialization generally regarded as the most important is ','family ','peer group','school ','churches and mosques','','','a','','post-utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:23'),(13,'A political ideology that defines a system of societal organization in which the state controls the commanding heights of the economy is called ','Totalitarianism ','Communalism ','socialism ','communism ','','','d','','post-utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-16 09:26:40'),(14,'Which of the following best describes French colonial policy in Africa? ','policy of association ','policy of Casus Belli ','policy hostility ','policy of assimilation','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:25'),(15,'What was the primary purpose of the Sir Henry Willink Commission of Inquiry? ','to approve the independence of Nigeria ','to allay the fears of minorities in Nigeria ','to amalgamate northern and southern  Nigeria ','to make Lagos a British Colony','','','b','','post-utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-16 09:26:40'),(16,'The military coup of July 25, 1975 which toppled General Yakubu Gowon from power  took place when he was attending which important event? ','OAU Summit in Kampala ','UN General Assembly in New York ','Assembly of Heads of states of ECOWAS in Monrovia ','The Olympic Games','','','a','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:27'),(17,'Which of the following political parties did not participate in the 1979 General Elections in Nigeria? ','Unity Party of Nigeria ','National Party of Nigeria ','social Democratic Party ','Great Nigeria People’s Party','','','c','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:28'),(18,'Alhaji Shehu Shagari was sworn in as President of the Federal Republic of Nigeria in 1979 by ',' Justice Fata Williams ','Justice Adetokunbo Ademola ','Justice Salihu Modibbo  Alfa Belgore ','Justice Isa Mohammed','','','b','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:29'),(19,'The electorate is generally  understood to refer to ','elected members of the National- Assembly ','elected members of the state house of assembly  ','candidates who can contest elections ','those citizens qualified to vote at elections','','','d','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:30'),(20,'Into how many local government areas in Nigeria officially delineated? ','654','650','820','774','','','d','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:31'),(21,'The centenary anniversary of the amalgamation of Northern and Southern Nigeria will be celebrated in ','2060','2063','2014','2007','','','c','','post-utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:32'),(22,'Which of these men introduced indirect rule in Nigeria? ','Mungo Park ','Dr. Nnamdi Azikiwe ','Lord Lugard ','Sir James Robertson.','','','c','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:33'),(23,'Democracy was first practiced in ','Ghana ','United States of America ','Greece ','Britain','','','c','','post-utme','2007',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:34'),(24,'Which of these countries has the highest population in West Africa? ','Mauritania','Ghana ','The Gambia ','Nigeria.','','','d','','post-utme','2007',94,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(25,'This African ruler resisted colonial rule and was later exiled by the colonial  officials ','Alaafin of Oyo ','Oba of Benin ','King Jaja of Opobo','Onisanbo of Ogbooro.','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:36'),(26,'The following countries are settler colonies except  ','Nigeria ','south Africa ','Angola ','Mozambique.','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:37'),(27,'Nigeria gained independence from colonial rule on ','1-Oct-60','November, 1963 ','29-May-99','1-Nov-60','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:38'),(28,'All but one of the following is not a symbol of political culture ','a national flag ','the government ','an anthem ','the constitution.','','','b','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:39'),(29,'All but one of these is not an agency of political socialization ','the constitution ','the family ','peer group ','schools ','','','a','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:40'),(30,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives ','propaganda ','lobbying ','assault ','boycott','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:41'),(31,'The following are Anglophone West African countries except ','Ghana ','Nigeria ','Kenya ','The Gambia.','','','c','','post-utme','2007',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:55'),(32,'A Nigerian who has been the secretary of the Commonwealth of Nations Organizations is ','Dr. Ibrahim Gambari ','Professor Adebayo Adedeji ','Chief Jaja Nwachukwu ','Chief Emeka Anyaoku','','','d','','post-utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:56'),(33,'How many countries are in Africa? ','fifteen ','fifty-three ','fifty','fifty-five','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:57'),(34,'Economic Community of West African States (ECOWAS) was based on the initiative of the heads of state  of these two countries ','Nigeria and Ghana ','Nigeria and Togo ','Senegal and Cote d’lvoire ','B and C above','','','b','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:58'),(35,'ECOWAS Treaty was signed on ','28-May-74','1-Oct-60','12-Jun-75','none of the above','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:05:59'),(36,'In which city was the ECOWAS Treaty signed ','Lagos ','Banjul ','Accra ','Abuja','','','a','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:00'),(37,'A capitalist state is based on ','religion ','creating job opportunities ','dictatorship ','free trade','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:01'),(38,'In politics, power is all of the following except ','capacity to affect the actions of others ','ability to make people do things they otherwise not do ','an object ','it is part of a relationship ','','','c','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:21'),(39,'Every political system performs the following basic functions except ','rule making ','rule transformation ','rule enforcement ','rule adjudication .','','','b','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:22'),(40,'These are common forms of governments except ','federal ','Unitary ','Plural ','confederal','','','c','','post-utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:23'),(41,'In a federal system ','the centre is weak ','plurality is abnormal ','there is nothing like autonomous units ','there is unit in diversity ','','','d','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:24'),(42,'The legislature performs the following functions except ','determines  the general direction of public policies ','investigating and monitoring the activities of the officials of government ','exercises power of appointment of government officials ','enforcing the law','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:25'),(43,'The independence constitution of 1960 ','introduced bicameral legislature ','catered for the three  regions of Nigeria ','provided for emergency powers ','provided for fundamental human rights','','','d','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-17 01:24:34'),(44,'Nigeria became a republic in ','1960','1961','1963','1914','','','c','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:27'),(45,'The amalgamation of the northern and southern protectorates and the colony of Lagos was in','1960','1966','1914','1957','','','c','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-16 09:36:50'),(46,'catered for the three  regions of Nigeria ','a renewed concept in international studies ','limited to the west ','a process of making the world  smaller ','an increasing integration of the world.','','','b','','post-utme','2007',102,'Admin','0000-00-00 00:00:00','2020-07-26 12:04:26'),(47,'The French colonial policy of Assimilation  was intended to ','to transfer technology to Africa ','to make Frenchmen out of African ','to produce well educated Africans ','to prepare Africans for the Olympic Games','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:30'),(48,'One of these is not a characteristic  of the state ','selection of political leaders ','a written constitution ','monopoly of the legitimate use of armed force ','sovereignty','','','b','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:31'),(49,'The Economic Community of West African States was established in ','May-75','May-63','May-66','May-96','','','a','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-15 19:31:30'),(50,'Nigeria became a republic on ','29-May-99','1-Oct-60','1-Jan-66','1-Oct-63','','','d','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:34'),(51,'Which of the following is not one of the functions of the modern legislatures? ','making laws  ','collecting taxes ','Ratification of treaties ','Performing oversight functions ','','','c','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:35'),(52,'The European Union (EU) is an ','Economic organization ','Association of former British colonies  ','Organization of European states ','Union  of European  organization','','','c','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:36'),(53,'What was the name of the highest ruling body during General Babangida’s rule?  ','The presidency  ','Armed Forces Ruling Council ','The National Council of states  ',' The Federal  Executive Council','','','b','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:37'),(54,'One of the following is not a specialized agency to the United Nations Organization ','security council ','International Labour Organization ','World Health Organization ','UNESCO','','','a','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-23 23:51:42'),(55,'Under which of the following conditions can a Nigerian be deprived of is or her citizenship? ','If married to a foreign  National ','If one holds a dual citizenship  ','If convicted of Armed robbery ','if one Abuse the National Flag.','','','b','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:39'),(56,'The first indigenous Governor-General of Nigeria is ','Donald Cameron ','Sir James Robertson  ','Sir Adesoji Aderemi  (the  Oni of Ife) ','Rt. Hon. Nnamdi  Aziwe','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:40'),(57,'The Action Group crisis was is in which year? ','1966','1962','1963','1965','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:41'),(58,'Free education was introduced in west region by which of these premiers? ','Chief Obafemi Awolowo ','Chief S.L. Akintola  ','Chief Michael Adekunle Ajasin ','Chief Bola Ige','','','a','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:42'),(59,'What does INEC stand for? ','Independent  National Elections Committee ','Independent  Newspapers executive  Committee ','Independent National Export Council ','independent National Electoral Commission ','','','d','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:43'),(60,'The government of one of the following countries operates an unwritten constitution ','The United States ','The Union of Soviet Socialist Republics ','Post –apartheid  South Africa ','The United Kingdom ','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:44'),(61,'The Oldest written constitution is ','American constitution ','British Constitution ','German constitution ','Roman Constitution ','','','a','','post-utme','2008',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:45'),(62,'The EFCC was established to ','Arrest and try corrupt politicians ','Combat economic and financial crimes in Nigeria ','Arrest, detain and prosecute corrupt state governors and legislators  ','Assist the World Bank in monitoring economic projects in Nigeria.','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:46'),(63,'The four British colonial territories in West Africa were ','Senegal, Ghana, Sierra Leone and Nigeria ','Nigeria, Ghana, Sierra Leone and Gambia ','Nigeria, Ghana, Togo and Gambia ','Gambia, Guinea, Ghana and Gabon','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:47'),(64,'In many countries, citizenship can be acquired through the following processes except ','nationalization ','naturalization ','registration ','birth','','','a','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:48'),(65,'Which of the following does not describe a party system? ','one dominant party system  ','two party system','three party system ','multi party system','','','c','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:49'),(66,'ECOMOG was set up primarily to ','drive away the Europeans from West Africa ','serve as a peace keeping force for ECOWAS ','help  Nigeria to control Africa  ','promote rapid economic development among ECOWAS members','','','b','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:50'),(67,'The principle since independence include the following except ','peaceful coexistence ','legal  equality of state ','political dependence ','Non- alignment','','','c','','post-utme','2008',98,'Admin','0000-00-00 00:00:00','2020-07-22 00:08:18'),(68,'The body charged with the trial of persons accused of crimes  against humanity is ','criminal Court of Justice ','International Criminal Court ','International Court of Justice ','ICPC','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:53'),(69,'The independence of the judiciary can be enhance by the following except ','when judges hold office for a fixed term ','when judges cannot be removed from offence even whey they commit crimes ','appointment of judges by and independent body','political neutrality of judges','','','b','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:54'),(70,'Which of the following is not  a feature of Nigeria’s electoral system? ','direct election ','proportional representation ','general election  ','secret ballot','','','b','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-26 12:04:26'),(71,'Laws made by local governments are called ','Acts of Parliament ','Local Government Acts ','Bye-laws ','Local Government Decrees','','','c','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:57'),(72,'In the pre-colonial era, which of the following was not a feature of the emirate administration? ','Madawakin ','Waziri ','Sarkin Dogari ','Sarkin Emir','','','d','','post-utme','2008',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:58'),(73,'Federalism was introduced in Nigeria by the ','Lyttleton Constitution ','Clifford constitution ','Macpheson constitution ','1999 constitution.','','','a','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:59'),(74,'Traditional rulers were restricted to ceremonial rules by the local  government  reforms of ','1966','1976','1984','1987','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-19 15:49:14'),(75,'In a parliamentary system, who ensures that members are in the house to vote on major issues? ','party leaders ','speaker of  the house ','clerk of the house  ','whip','','','d','','post-utme','2009',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:02'),(76,'A system in which no single person serves as the chief executive  is know as ','republican ','Revolutionary  ','Collegial  ','Parliamentary ','','','d','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(77,'A social system in which power is derived  from control over land is called ','Oligarchy  ','Feudalisms ','Socialism ','Welfarism ','','','b','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:05'),(78,'“Rule of law” refers to situations in which ','Lawyers are the rulers  ','Laws are supreme ','the judiciary is independent ','parliament makes laws ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:05'),(79,'An important principle of the civil service is ','Authoritarianism  ','Anonymity ','Repotism  ','partisanship.','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:06'),(80,'Which of these constitutions recognized local government is the third tier of government? ','The 1946 constitution ','The 1960 constitution','The  1963 constitution ','the 1979 constitution.','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(81,'A condition for judicial indolence is the appointment of judges by the  ','civil service commission ','judicial service commission ','low review constitution ',' code of conduct Bureau','','','b','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:08'),(82,'The minorities  Commission appointed in Nigeria in 1957 recommended that ','More states should be create in the federation ','No more states should created before independence ','Nigeria should revert to a unitary structure ','The legislature  should legislature should legislature for the minority areas ','','','b','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:09'),(83,'The second military coup data in Nigeria took place on ','15-Jan-66','1-Oct-66','29-Jul-66','13-Feb-76','','','c','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:10'),(84,'One of these was in existence  before the outbreak of the Second World War ','The OAU  ','League of Nations ','The UNOD  ','The Commonwealth of nations ','','','b','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:11'),(85,'In important advantage of creating more constituents in a federal state is to ','Enhance the people’s participation in government ','Enable ambitions politicians gain political power ','Make the states gain more power from the federal government ','curb the excesses of the federal government','','','a','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:12'),(86,'Under the Presidential system ','The party with the majority of seat forms the executive ','there is the principles of collective responsibility ','the president may come from any of the parties ','the states take instructions from the federal government','','','c','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:13'),(87,'Public opinion is important because it ','Tells government what action it must take ','Lets government know what the people want ','Allows police to manage crisis ','Mothers the minorities in resource learn areas ','','','b','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:14'),(88,'Bicameral legislature exists ','where two cameras are used to monitor court proceedings ','To prevent the concentration of power on legislative house ','To provide jobs for more politicians ','to ensure that just laws are passed.','','','d','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:16'),(89,'Africans were first elected to the legislature council in British West African ','Ghana ','Sierra Leone ','The Gambia ','Nigeria','','','d','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:17'),(90,'One of the functions of the ministry of External Affairs is the ','Deportation of illegal aliens ','Issuance of passports ','Defense of the country’s boarders ','Promotion of national interest','','','d','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:18'),(91,'The leader of the northern people’s congress was ','Yakubu Maitama Sule ','Abubakar Tafawa Balewa ','Aminu Kano ','Ahmadu Bello','','','d','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:19'),(92,'The idea of democracy started with the ','Romans ','Pensions ','Greeks ','Egyptians','','','c','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:20'),(93,'In the Marxist theory, those who live by selling, their labour are called ','Bourgeoisie ','Proletariat ','Feudal lords ','Slaves','','','b','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:22'),(94,'Which of the following NOT an acceptable means of achieving democracy? ','Referendums ','Recall ','Initiative ','Riots','','','d','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-27 18:13:49'),(95,'The branch of government responsible for implementing laws is the ','executive ','Legislature ','Judiciary ','Police ','','','a','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:24'),(96,'In a democracy, sovereignty is vested in ','The community ','Public officials ','judges  ','the head of state ','','','a','','post-utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:25'),(97,'Universal Adult Suffrage means all ','Adult citizens can vote ','citizens vote ','Qualified citizens  can vote ','Literate citizens can vote ','','','a','','post-utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:27'),(98,'A bill that applies to the whole population and is intended to promote the general welfare is called ','A private bill ','a decree ','an appropriation bill ','a public deal ','','','d','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:28'),(99,'The Arthur Richards Constitution was designed to last ','nine years  ','five years ','twelve years  ','six year','','','a','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:29'),(100,'Under the 1963 Republican constitution the president exercise ','judicial powers  ','executive powers  ','nominal powers ','concurrent powers','','','c','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:30'),(101,'The Clifford Constitution was notable for ','amalgamating the Northern and southern provinces ','introducing indirect rule ','establishing the legislature  council ','creating a Northern majority in the legislature council.','','','c','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:31'),(102,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as ','exclusive ','extra-ordinary  ','residual  ','concurrent','','','d','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:32'),(103,'During the period 1960-1966, Nigerian was governed under the ','presidential system of government ','Westminster system of government ','confederal system of government ','Unitary system of government.','','','b','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(104,'Which of the following in the Sokoto Caliphate performed functions similar to that of the Bashorun in Oyo Kingdom? ','Waziri ','Galadima ','Ma’aji  ','Alkali  ','','','a','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:34'),(105,'In the Igbo political system, the most senior  member of the council of elders is the ','Okpara  ',' Obi  ',' Eze  ',' Ofo','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:35'),(106,'A non-monarchial state can best be described as a ','republic ','confederation ','nation ','federation ','','','a','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:36'),(107,'Proportional representation favours a ','multi-party system ','three party system ','two-party system ','one party system ','','','a','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:55:56'),(108,'One major factor that differentiates the presidential from the parliamentary system is  ','separation of the powers ','judicial independence  ','passage of bills ','party system','','','a','','post-utme','2010',97,'Admin','0000-00-00 00:00:00','2020-07-28 00:06:45'),(109,'A state with a hegemonic party is one in which ','there is one dominant party ','there is no opposition party  ','there is only one party  ','other parties are officially recognized.','','','a','','post-utme','2010',63,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(110,'In the First Republic, Politics in Northern Nigeria was dominated by: ','NEPU ','UMBC ','NCNC ','NPC','','','d','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:40'),(111,'The creation of classless society is the ultimate aim of ','communism ','socialism  ','fascism ','capitalism.','','','a','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:41'),(112,'Herbert Macaulay was the first president of ','NCNC ',' AG  ','UMBC ','NEPU','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:42'),(113,'A special election organized to decide on a political issue is known as ','plebiscite ','by-election  ','general election ','primary election.','','','a','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(114,'Equality before the law is a component of: ','separation of powers ','checks and balances ','the rule of law  ','constitutional law','','','c','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:44'),(115,'In the process of implementing laws, the executive sometimes performs: ','judicial function ','bureaucratic function ','oversight function ','legislative function','','','a','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:45'),(116,'Which of the these was the main organ of the defunct OAU? ','The liberation committee ','The Council of Ministers  ','The commission for Mediation, Conciliation and Arbitration ','the Assembly of Heads of the state and Government.','','','d','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:47'),(117,'Nigeria hosted the commonwealth conference which eventually led to the independence of ','Mozambique ','Namibia  ','Zimbabwe ','Malawi','','','b','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:47'),(118,'Multilaterism in Nigeria’s foreign policy entails ','Africa being the centre piece of Nigeria’s foreign policy ','Non aligned posture in international affairs ',' Quest   for a permanent membership  of the UN security Council ','Membership of International Organizations','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:49'),(119,'The ancient Greeks practiced: ','direct democracy ','representative democracy ','liberal democracy ','benevolent dictatorships','','','a','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:50'),(120,'Fascism originated from ','Greece ','Italy  ','China  ','Germany','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:50'),(121,'According to Karl Marx, the mode of production that precedes capitalism is ','mercantilism ','feudalism ','socialism ','communalism','','','b','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:51'),(122,'One of the distinctive features of a democracy is that it ','Connotes civil rule ','facilitates popular participation ','provides for a unicameral legislature ','is not associated with one party state.','','','d','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:52'),(123,'Serfs are the dominated class under ','capitalisms ','socialism ','fascism ','feudalism ','','','a','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:07:59'),(124,'A human community that is usually cohesive and homogeneous is ','state ','kinship','clan','Nation.','','','d','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:01'),(125,'Which of the following made the earliest contact with the Nigerian society? ','The British  ','The Portuguese ','The French ','The Germans','','','b','','post-utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:02'),(126,'Under the 1963 Republican Constitution, the president exercised ','Judicial powers ','executive powers ','nominal powers ','concurrent powers.','','','c','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:04'),(127,'The principle of federal character was first enunciated in the: ','1989 constitution ','1963 constitution','1999 constitution ','1979 constitution','','','d','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:05'),(128,'Between 1960 and 1966, Nigeria was governed under the  ','presidential system of government ','Westminster system of government ','confederal system of government ','unitary system of government.','','','b','','post-utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-23 23:51:42'),(129,'One major factor that differentiates the presidential from the parliamentary system is: ','separation of powers','judicial independence ','passage of bills  ','party system.','','','a','','post-utme','2011',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:08'),(130,'A major feature of the policy of deregulation in Nigeria is the: ','enthronement of market forces mechanism ','increasing dominance of the economy by the state ','proliferations of public corporations ','phenomenal increase in direct foreign investment','','','a','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:09'),(131,'Bicameral legislature exists: ','where cameramen are allowed to cover the proceedings of the legislature ','to prevent the concentration of power in one legislative house ','to provide jobs for more politicians ','to ensure that just laws are passed','','','d','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:10'),(132,'A major issue that distinguishes pressure groups from political parties is: ','membership drive  ','the objective','the voting pattern ','the ideology','','','b','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:11'),(133,'Equality before the law is a component of: ','separation of powers','checks and balances ','the rule of law','constitutional law.','','','c','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:12'),(134,'A law passed by the legislature and assented to by the executive is: ','an act','a presidential proclamation ','a decree   ','a legislative order','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:13'),(135,'The principle of checks and balances empowers the judiciary to: ','invalidate the actions of the other arms ','administer the criminal justice system ','abrogate the law','apply the law','','','a','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:15'),(136,'In a parliamentary, the term shadow cabinet is often used to refer to the: ','back benchers in the house ','deputy prime ministers and assistant ministers ','rebellious members of the ruling party ','portfolio designates of the party in opposition.','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:16'),(137,'The fundamental assumption on which the idea of the rule of law is based is: ','supremacy of the constitution','rationality of human beings ','equality of human beings','love for social justice.','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:17'),(138,'Associations whose main interest is to influence public policies without attempting to capture state power are: ','communal groups','trade unions  ','political parties','pressure groups ','','','d','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:18'),(139,'Multilaterism in Nigeria’s foreign policy entails: ','Africa being the centre piece of Nigeria’s foreign policy ','Non-aligned posture in international affairs ','Quest for a permanent membership of the UN Security Council ','Membership of International Organizations','','','d','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:19'),(140,'The set of policies on the basis of which countries interact with one another is called: ','Diplomacy','Foreign policy ','National policy ','International relations.','','','b','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:20'),(141,'After the defeat of Germany in World War 1, her former colonies were administered under the League of Nations as: ','occupied territories ','trust territories  ','crown colonies ','protectorates.','','','b','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:22'),(142,'The Nigeria-Cameroon crisis over Bakaasi peninsula occurred owning to the interpretation of the Treaty of 1913 and the:','resolution of the OAU ','Maroua Accord','decision of the ECOWAS Tribunal ','decision of the International Court of Justice ','','','b','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:23'),(143,'The first Nigeria leader to become chairman of the Organization of African Unity was:  ','Tafawa Balewa','Murtala Mohammed','Yakubu Gowon  ','Aguiyi-Ironsi','','','c','','post-utme','2011',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:24'),(144,'Nigeria’s non-aligned policy was criticized because of the: ','ECOWAS Treaty ','Nuclear Test Ban Treaty  ','Anglo-Nigerian Pact ','Non-Proliferation Treaty ','','','c','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:25'),(145,'Fascism originated from: ','Greece','Italy ','China ','Germany ','','','b','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:26'),(146,'Diarchy refers to the: ','rule by the government and the opposition parties ','mixture of parliamentary and presidential systems ','rule by political and economic elites ','rule by the military and civilians.','','','c','','post-utme','2011',64,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:27'),(147,'A major flaw in liberal democracy is: ','the limitation of the freedom of expression ','its emphasis on political rights over economic rights ','that it promotes political instability ','its emphasis on collective ownership.','','','b','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:27'),(148,'Under military regimes in Nigeria, the branches of government that were fused are: ','executive and the legislature','executive and the judiciary ','legislature and the judiciary ','executive, the legislative and the judiciary ','','','a','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-15 19:31:30'),(149,'Which of the following does not described a party system? ','one dominant party system  ','two party system  ','three party system  ','multi-party system','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:30'),(150,'Laws made by local governments are called  ','Acts of Parliament ','Local Government Acts ','Bye-laws  ','Local Government Decrees ','','','b','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:31'),(151,'The commission established to handle the electoral activities in the Second Republic of Nigeria was ','National Electoral Commission  ','National Electoral Commission of Nigeria  ','Federal Electoral Commission  ','Independent National Electoral Commission','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:32'),(152,'The principle of checks and balances modifies the theory of  ','Rule of law ','Supremacy of law  ','Separation of powers  ','Delegated Legislation ','','','c','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:33'),(153,'The European Union (EU) is an  ','Economic organization  ','Association of former British Colonies ','Organization of European States ','Union European organization ','','','c','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:39'),(154,'In Nigeria, promotion of judges is the responsibility of the ','Chief Justice of the Federation  ','Judicial Service Commission  ','Council of Legal Education  ','Attorney-General and Minister of Justice ','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:41'),(155,'The Legislature in Nigeria under the 1999 constitution is composed  ','109 senators and 360 members of the House of Representative  ','109 senators and 350 members of the House of Representative  ','108 senators and 350 members of the House of Representative  ','100 senators and 250 members of the House of the Representative ','','','a','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:42'),(156,'Under a parliamentary system of government, the cabinet holds office at the pleasure of the ','head state ','electorate  ','legislature  ','opposition ','','','c','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-16 09:26:40'),(157,'The ultimate authority in a State is referred to as  ','president  ','sovereignty ','legislature  ','legitimacy ','','','b','','post-utme','2012',60,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:44'),(158,'The most important aspect of political participation in a democracy is  ','attending political rallies  ','voting in elections  ','registration with a political party  ','the observance of electoral processes ','','','b','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:45'),(159,'One of the foremost theorists of federalism was A. ','A.V Dicey  ','B. K.C Wheare ','C. Karl Marx  ','Baron de Montesquieu ','','','b','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:46'),(160,'The judicial organ of the United Nations is the  ','security council  ','European court  ','general assembly  ','International court of Justice  ','','','d','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:47'),(161,'The Universal Negro Improvement Association was founded by  ','Casely Hayford  ','Herber Macauly  ','Marcus Garvey  ','W.E.B. Du Bois','','','c','','post-utme','2012',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:48'),(162,'The Chick’s Commission in Nigeria was set up to look into  ','state’s creation  ','revenue allocation  ','minorities issues  ','extra-judicial killings','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:49'),(163,'Nigeria observed the principal of collective responsibility between  ','1960 and 1966 ','1979 and 1983  ','1985 and 1993 ','1999 and 2003','','','a','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:50'),(164,'The method used to determine the possible outcome of an electoral contest is ','conduct of elections into local government offices  ','registration of political party  ','conduct of gubernatorial elections  ','delineation of electoral constituencies ','','','a','','post-utme','2012',65,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:51'),(165,'The principle of checks and balances empowers the judiciary to  ','apply the law  ','administer the criminal justice system  ','abrogate the law  ','invalidate the actions of the other arms ','','','d','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:52'),(166,'The final stage in the process of enacting legislation is  ','assent  ','final reading  ','notification  ','guillotine  ','','','a','','post-utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-15 19:34:58'),(167,'Every political system performs the following basic functions excepts  ','Rule making  ','Rule transformation  ','Rule enforcement  ','Rule adjudication ','','','b','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:54'),(168,'Globalization is all but one of these ','A renewed concepts in international studies  ','Limitation to the domination of the West  ','A process of making the world smaller  ','An increasing integration of the world ','','','c','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:55'),(169,'A major factor that differentiates International politics from domestic politics is that International politics ','has no centralized institution of government ','cannot enforce sanctions  ','has centralized organs of administration  ','has a central law making body','','','a','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:57'),(170,'Globalization encompasses all the following except  ','market integration  ','internationalization of politics  ','technology improvement  ','economic liberalism ','','','d','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:58'),(171,'The ten non-permanent members of the security council are elected by the  ','general assembly ','trusteeship council  ','security council  ','economic and social council ','','','a','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:59'),(172,'Under the independence constitution of Nigeria, Dr. Nnamdi Azikwe was  ','Prime Minister ','Governor General  ','Lieutenant – Government ','Head of State','','','b','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:00'),(173,'Which organ is referred to as ‘the last hope’ of the common man  ','the parliament   ','the judiciary  ','the executive  ','the legislature','','','b','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-22 00:08:18'),(174,'What does INEC stand for?','Independent National Election Committee  ','Independent Newspapers Executive Committee  ','Independent National Export Council  ','Independent National Electoral Commission','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:02'),(175,'Which of the following is not a feature of Nigeria’s electoral system?  ','direct election   ','general election  ','Proportional representation  ','secret ballot','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:03'),(176,'The head of the Nigerian judiciary is the','Chief Justice of the Federation','Solicitor-General of the Federation  ','Attorney-General and Minister of Justice  ','President of the Court of Appeal','','','a','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:04'),(177,'Manipulation of electoral boundaries for electoral purposes is known as  ','delimitation   ','gerrymandering','devolution   ','deconcentration','','','b','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:05'),(178,'A mechanism used in parliament to limit debate is called  ','guillotine','adjournment   ','Motion of censor   ','delimitation','','','a','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:07'),(179,'A major function of the State Independent Electoral Commissions in Nigeria is the  ','Conduct of elections into local government offices  ','registration of political parties','conduct of gubernatorial elections','delineation of electoral constituencies','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:08'),(180,'In politics, power is all of the following except  ','capacity to affect the actions of others  ','Ability to make people do things they otherwise would not do   ','An object   ','it is part of a relationship','','','c','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:08'),(181,'Political activity at the diplomatic level is called  ','International relations','International law','International politics','All of the above','','','d','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:10'),(182,'Which of these is not an instrument of foreign policy','war    ','diplomacy  ','subversion   ','foreign aid','','','d','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:11'),(183,'The principles that have guided Nigeria’s foreign policy since independence include the following except  ','peaceful coexistence   ','political dependence  ','legal equality of states  ','non-alignment','','','b','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:12'),(184,'The independence  of the judiciary can be enhanced by the following except  ','when judges hold office for a fixed term','when judges cannot be removed from office even when they commit crimes','Appointment of judges by an independent body','political neutrality of judges','','','b','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:13'),(185,'The Aba women riot in Nigeria took place in   ','1960','1950','1922','1929','','','d','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-17 01:24:34'),(186,'The pressure group that resorts to unconventional methods to achieve its objectives is called ',' an institutional group  ',' a promotional group',' an interest group   ',' an anomic group','','','d','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:15'),(187,'All but one of the following is not a symbol of political culture','A national flag','The government   ','An anthem  ','The constitution','','','b','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:16'),(188,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives',' propaganda','Lobbying  ','Assault',' Boycott','','','c','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:17'),(189,'A capitalist state is based on','religion   ','creating job  opportunities  ','Dictatorship   ','Free trade','','','d','','post-utme','2013',59,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:18'),(190,'A major flaw in a liberal democracy is','that it promotes political instability','the limitation of the freedom of expression','its emphasis on political rights over economic rights','its emphasis on collection ownership','','','c','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(191,'Nigeria’s voting at the United Nations is guided primarily by','her national interests   ','world peace   ','the cold war  ','her concern for Africa','','','a','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:20'),(192,'On the basis of its structure, a political party can be classified an indirect if','it controls government indirectly  ','it contests elections by proxy','its membership is acquired through other groups  ','it campaigns for votes through agents.','','','c','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:21'),(193,'The study of government essentially facilitates the understanding of the','governance of human societies','functioning of the entire social formation  ','observance of fundamental human rights','organization of the executive arm of government','','','a','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:22'),(194,'In judicial administration, the term ‘the bench’ refers to the  ','lawyers   ','litigants    ','registrars','judges','','','d','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:23'),(195,'How does the president relieve a minister of his appointment in a presidential system of government?','In consultation with the legislature','In consultation with the judiciary  ','by executive action','after serving a full tenure','','','c','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-26 12:04:26'),(196,'An elected legislator in a presidential system can lose his seat through  ','recall  ','cross-carpeting','a vote of no confidence','impeachment','','','a','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:25'),(197,'Which of the following modern principles of democracy is found in the Yoruba traditional political system  ','checks and balances  ','the constitution','multipartism  ','bicameralism','','','a','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:26'),(198,'The subject matter of politics is best described  as   ','political parties','political power  ','elections','people','','','b','','post-utme','2013',97,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:27'),(199,'Government as an institution of a state can best be defined as a body that','recruits and trains political leaders','settles disputes and interprets laws for the state.','Legislates, executes and interprets laws for the state.','conducts elections for the state.','','','c','','wassce','2000',62,'Admin','2016-11-13 16:14:19','2020-07-14 15:09:28'),(200,'Political authority is the','legitimate right to exercise political power.','ability to control political behaviour.','right to participate in political campaigns.','right to form political parties.','','','a','','wassce','2000',64,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:30'),(201,'The rule of law refers to the principle of','legality and impartiality','the supreme power of rulers.','the immunity of judges from legal actions.','the orderly execution of government policies.','','','a','','wassce','2000',58,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:31'),(202,'Freedom of speech is a fundamental human right enjoyed by citizens but it may be limited if','loyalty is not shown to the ruling party','it exposes the wrong doings of the government','it endangers the security of the state.','it is used to cause embarrassment to the judiciary.','','','c','','wassce','2000',66,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:32'),(203,'Which of the following is an obligation of a citizen?','Attending political rallies','Taking part in Independence Day celebrations','Contesting elections','Paying respect to the national flag.','','','d','','wassce','2000',58,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:33'),(204,'The extent to which the citizens regard the institutions, officials and activities of government as right and acceptable is known as','power','legitimacy','influence','authority.','','','b','','wassce','2000',53,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:34'),(205,'Diplomatic immunity is a limitation to','the theory of separation of powers.','principles of checks and balances.','parliamentary supremacy.','the rule of law','','','d','','wassce','2000',54,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:35'),(206,'A federal state is always expensive to run because','every parliamentarian wants to become rich','government departments are duplicated','judges are highly paid from the consolidated fund.','maintenance of the army involves high expenditure.','','','b','','wassce','2000',77,'Admin','2016-11-13 16:14:22','2020-07-14 15:09:36'),(207,'In which of the following party systems are all shades of opinions and interests adequately represented?','Zero-party','One-party','Two-party','Multi-party','','','d','','wassce','2000',61,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:37'),(208,'Veto power in a presidential system lies with the','Attorney General','Chief of Army Staff','Executive President','Prime Minister.','','','c','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:38'),(209,'Which of the following is the lowest class of people in the hierarchy of a feudal system?','Nobles','Serfs','Lords','Manor.','','','b','','wassce','2000',55,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:39'),(210,'Mussolini’s fascism and Hitler’s Nazism are good examples of','anarchy','feudalism','totalitarianism','oligarchy','','','c','','wassce','2000',53,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:40'),(211,'Which of the following is supreme in a federal system?','Judiciary','legislature','Constitution','Executive.','','','c','','wassce','2000',71,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:41'),(212,'An order directing a detainee to be brought before the court is called','habeas corpus','an appearance','an injunction','a referendum','','','a','','wassce','2000',61,'Admin','2016-11-13 16:14:23','2020-07-22 00:06:56'),(213,'Which of the following is a feature of an elite party?','Members are recruited from the working class.','The leadership is composed of aristocrats and wealthy merchants.','It usually consists of existing associations, clubs and trade unions.','Its leadership has certain techniques which attract supporters.','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:43'),(214,'All undesirable feature of capitalism is','exploitation','market economy','profit motive','free competition','','','a','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:44'),(215,'The system of voting on behalf of another person is known as','voting by lot','casting votes.','voting by proxy','preference voting','','','c','','wassce','2000',68,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:45'),(216,'Authoritarianism is least Inherent in','feudalism','fascism','democracy','monarchy','','','c','','wassce','2000',95,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:46'),(217,'In which of the following systems of government are ceremonial and executive powers usually fused?','Parliamentary','Presidential','Collegial','Confederal.','','','b','','wassce','2000',69,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:47'),(218,'The programme of a political party is known as its','constitution','document','manifesto','propaganda','','','c','','wassce','2000',73,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:48'),(219,'Which of the following is a source of a country’s constitution','Mandamus','Judicial precedents','Injunctions','Political decisions','','','b','','wassce','2000',72,'Admin','2016-11-13 16:14:23','2020-07-17 15:18:54'),(220,'The acquisition of political power through hereditary means is a feature of','Communalism','Capitalism','Oligarchy','Monarch','','','d','','wassce','2000',51,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:50'),(221,'Which of the following factors limits the expression of public opinion?','The type of government in a state','The establishment of private media organizations.','The high literacy rate of the citizens','Religious belief of the citizens.','','','a','','wassce','2000',51,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:51'),(222,'If the federal government and the unit governments are to \tpreserve their autonomy, the','Federal government must be supreme','Unit governments must be supreme','Judiciary must be supreme','Constitution must be supreme','','','d','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:52'),(223,'Which of the following best describes the relationship between the central and the component government in a confederation?','The central government collects revenue for component government','The central and component governments have equal powers','The central government legislates for the component governments.','The central government is weaker than the component government.','','','d','','wassce','2000',64,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:53'),(224,'The administrative head of a public corporation in Nigeria is the','Managing Directors','Secretary','Board of Directors','Chairman','','','a','','wassce','2000',59,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:54'),(225,'The appointment, promotion and discipline of civil servants are the responsibility of the','Civil Service Union','Judicial Service Commission','Civil Service Commission','Electoral Commission.','','','c','','wassce','2000',58,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:55'),(226,'Red tapism in the civil service refers to','The use of red tapes on legal documents.','Sloness of action','Prevent entrance','the co-operation between civil servant s and politicians','','','b','','wassce','2000',81,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:56'),(227,'The grant of the right to vote is called','enfranchisement','disqualification','prohibition','participation','','','a','','wassce','2000',67,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:57'),(228,'The system which allows private individuals and companies to own and control the means of production is known as','socialism','fascism','capitalism','communism','','','c','','wassce','2000',65,'Admin','2016-11-13 16:14:24','2020-07-14 15:09:58'),(229,'Which of the following factors may work against a representative system of government?','High literacy of the electorate','The introduction of universal adult suffrage','Independent electoral commission','Rigging of elections','','','d','','wassce','2000',74,'Admin','2016-11-13 16:14:24','2020-07-14 15:09:59'),(230,'The powers allocated to the central government in a federation are contained in the','central legislative list','exclusive legislative list','residual legislative list','concurrent legislative list.','','','b','','wassce','2000',63,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:00'),(231,'The Nigerian federal legislature is called the','Senate','Congress','National Assembly','House of Representatives','','','c','','wassce','2000',70,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:01'),(232,'Delegated legislation has the advantage of','enlightening the public about law making procedure','saving parliamentary time','reducing the expenses of the legislature','preventing the executive from becoming too powerful.','','','b','','wassce','2000',67,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:02'),(233,'Nigeria’s first constitution was the','Lyttleton Constitution','Clifford Constitution','Macpherson constitution','Independence Constitution','','','b','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:03'),(234,'The Nigerian Macpherson Constitution of 1951 was significant for','the introduction of Electoral College','providing for the office of the Prime Minister','the creation of states.','establishing the Supreme Court','','','a','','wassce','2000',68,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:04'),(235,'The concept of regionalism in Nigeria was first introduced by the','Independence Constitution','Macpherson Constitution','Richard’s Constitution','Lyttleton Constitution','','','c','','wassce','2000',71,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:05'),(236,'Immediately after the Nigerian Civil War, Gowon’s regime embarked on','rejuvenation, resettlement and reconstruction','reconciliation, rehabilitation and reconstruction','rebuilding, rejuvenation and rehabilitation','rehabilitation, renaissance and repression.','','','b','','wassce','2000',73,'Admin','2016-11-13 16:14:24','2020-07-28 00:06:45'),(237,'Which of the following military regimes in Nigeria played a prominent role in the liberation of colonized African states?','Aguiyi Ironsi','Murtala / Obasanjo','Muhammadu Buhari','Ibrahim Babangida','','','b','','wassce','2000',68,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:07'),(238,'Traditional rulers appointed by the British to implement indirect rule in Eastern Nigeria were called','palace chiefs','village chiefs','warrant chiefs','crown chiefs','','','c','','wassce','2000',62,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:08'),(239,'The bill introduced by a member of the legislature is known as','a-private member’s bill','an executive bill','a state bill','a political party’s bill','','','a','','wassce','2000',75,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:09'),(240,'In the federation of Nigeria, states are equally represented in the','Senate','House of Representatives','Judiciary','National Population Commission','','','a','','wassce','2000',66,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:10'),(241,'In pre-colonial Igboland, administrative meetings were presided over by the','Mazi','Ogbuefi','Ozo title holder','Okpara','','','c','','wassce','2000',55,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:11'),(242,'Checks and balances was a feature of pre-colonial political administration of the','Hausa','Yoruba','1gbo','Fulani','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-07-23 23:51:42'),(243,'Which of the following groups had the best egalitarian traditional political system?','Hausa/Fulani','Yoruba','lgbo','Edo','','','c','','wassce','2000',89,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:14'),(244,'In the pre-colonial Hausa/Fulani system, the appointment of an Emir in the Caliphate was approved by the','Sardauna of Sokoto and the Alkali','Galadima and the Waziri','Shehu of Bomo and the Galadima','Sultan of Sokoto and the Emir of Gwandu','','','d','','wassce','2000',72,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:15'),(245,'The French policy of Assimilation in West Africa was a form of','indirect rule','direct rule','democratic rule','monarchy','','','b','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:16'),(246,'One of the problems facing the Economic Community of West African States (ECOWAS) is that','member states do not attend meetings regularly','member states do not have a common currency','some members states want to contribute larger funds to the community','it is a rival to the Organization of African Unity','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:17'),(247,'The world organization which existed before the United Nations Organization was the','League of Nations','European Economic Community','Organization of African Unity','Commonwealth of Nations.','','','a','','wassce','2000',77,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:18'),(248,'Which of the following bodies is the most representative organ of the United Nations organization (UNO)?','The Economic and Social Council','The Trusteeship Council','The Security Council','The General Assembly.','','','d','','wassce','2000',71,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:19'),(249,'Which of the following is NOT a feature of a state?','Government','Nationality','Sovereignty','Territory','','','b','','neco','2013',83,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:20'),(250,'The legitimacy of government is established when','civil service commission reflects federal character','electoral commission is well funded','free and fair elections are conducted','ministers are appointed to head ministries','','','c','','neco','2013',86,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:23'),(251,'The United Nations Organization (UNO) was founded in','1919','1935','1939','1945','','','d','','neco','2013',71,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:24'),(252,'Which of these best defines a state? A/An','country made up of heterogeneous people','.\\ncountry with definite territory free from external control.','independent country free from external control.','organized body of people occupying a definite territory with sovereign government.','','','b','','neco','2013',88,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:25'),(253,'To ensure impartiality and independence of electoral commission, the body should be','funded by political parties','headed by a justice of the Supreme Court','headed by a professor of political science','independent of government control','','','d','','neco','2013',75,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:26'),(254,'The term ‘collective responsibility’ is an indispensable feature of ___ system of government.','diarchy','federal','parliamentary','presidential','','','c','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:27'),(255,'The Chick’s commission was set up to look into the issue of revenue allocation in','1946','1951','1953','1957','','','c','','neco','2013',94,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:29'),(256,'In the Igbo pre-colonial administration, the council of elders was normally presided over by','Eze','Obi','Okpara','Onowu','','','c','','neco','2013',76,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:30'),(257,'In Nigeria, the head of the electoral commission is called the','Administrative Secretary','Chairman','Electoral Commissioner','Presiding Officer','','','b','','neco','2013',91,'Admin','2016-11-13 16:50:51','2020-07-17 15:18:54'),(258,'Authority is the','ability to compel others to do what they do not want','ability to delegate power to other bodies','ability to rule without fear or favour','capacity to encourage others to do what they intended doing','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:31'),(259,'The Economic Community of West African States (ECOWAS) was formed on','28th May, 1975','29th May, 1976','28th June, 1975','28th July, 1975','','','a','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:32'),(260,'Revenue allocation means the sharing of the','national cake among the people','wealth of a nation among different levels of government','wealth of a nation among the state governments for specific purposes','wealth of a nation between the federal and local governments','','','b','','neco','2013',61,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:33'),(261,'The first military intervention in Nigeria politics was in','1960','1962.','1963','1966','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:34'),(262,'To contest an election, a candidate must be a member of a','campaign organization.','civil society organization.','national assembly','political party.','','','d','','neco','2013',90,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:35'),(263,'Military rule is an example of ______ authority.','charismatic','coercive','delegated','legal','','','b','','neco','2013',73,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:36'),(264,'Which of these countries is NOT a member of Economic Community of West African States (ECOWAS).','Cameroon','Cape Verde','Ghana','Guinea','','','a','','neco','2013',77,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:37'),(265,'Who among the following was NOT an officer in the pre-colonial Yoruba society?','Aremo','Are-Onakakanfo','Balogun','Oluwo','','','d','','neco','2013',76,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:38'),(266,'The 1957 commission of enquiry which investigated the problems of ethnic domination in Nigeria was chaired by','Arthur Richard.','Frederick Lugard.','Henry Willink.','Hicks Phillipon','','','c','','neco','2013',68,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:40'),(267,'Which of these groups of people had no right to make law under the pre-colonial Igbo political structure?','Age grades','Council of Elders','Osu','Priests','','','c','','neco','2013',100,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:41'),(268,'21.\tIn a parliamentary system of government a general election is usually conducted after','dissolution of parliament.','plebiscite.','referendum.','resolution.','','','a','','neco','2013',86,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:42'),(269,'A nation is made up of people who share','heterogeneous characteristics.','homogeneous and heterogeneous characteristics.','homogeneous characteristics.','same government only.','','','a','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:43'),(270,'The Commonwealth of Nations consists of states formerly under ___colony.','Belgium','British','French','Portuguese','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:44'),(271,'Which of these is a feature of Nigeria federalism?','Conflict of authority does not arise','Minority groups are equally benefited','Parliamentary supremacy','Secession is constitutionally forbidden','','','b','','neco','2013',64,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:45'),(272,'Under the 1979 Nigeria constitution, the national assembly was made up of the','House of Chiefs and the Senate.','House of Lords and the House of Representatives.','Lower House and House of Representatives.','Senate and House of Representatives.','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:46'),(273,'','In a single member constituency the voters in that constituency have the right to','declare a winner of an election in their constituency','.\\nelect many representatives.','elect one representative.','','','a','','neco','2013',80,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:47'),(274,'Before the British colonialism in Nigeria, which of these was an instrument for dispensation of justice in !gbo land?','Cult','Land','Masquerade','Ofo','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:48'),(275,'The special box prepared by the electoral commission into which voters cast their votes is called','ballot box.','ballot paper.','logo.','polling booth.','','','a','','neco','2013',70,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:49'),(276,'An electoral officer charged with the responsibility of announcing election result at the local government level is known as','administrative secretary.','chairman.','polling clerk','presiding officer','','','d','','neco','2013',69,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:50'),(277,'The idea of federalism in Nigeria started with ______ constitution.','Clifford','Independence','Lyttleton','Macpherson','','','d','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:51'),(278,'Under the 1979 constitution of Nigeria, each state was allowed to elect','as many senators as the state could finance','five senators','from two to five senators depending on the population','three senators','','','b','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:52'),(279,'In the pre-colonial Hause/Fulani society, the political head was called','Alkali','Galadima','Ma `aji','Wasiri','','','d','','neco','2013',86,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:53'),(280,'In dividing a country into constituencies, it is important to','ask for permission from the traditional ruler in that area','consider historical','display the voters register','involve the politicians in the areas','','','b','','neco','2013',93,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:54'),(281,'The head of the Oyomesi in pre-colonial Yoruba traditional society was','Alaafin','Are - onakakanfo','Baale','Bashorun','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:55'),(282,'The age qualification required for a Nigerian to contest as a Senator is','18','21','30','40','','','d','','neco','2013',78,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:56'),(283,'Nigeria is presently divided into how many federal constituencies?','6','36','109','360','','','c','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:57'),(284,'Before an election is conducted, the country is divided into electoral districts mainly to','avoid double voting','avoid secret voting','enable the electoral commission have more people to register','make it possible for all people in various parts of the country to be represented.','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:58'),(285,'The following were the consequences of the Nigeria civil war EXCEPT the','creation of more states','disruption of educational and economic activities','general feelings of insecurity','loss of lives and properties','','','a','','neco','2013',66,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:59'),(286,'The parties that formed the coalition government in 1960 were ___ and ___','AG, NCNC','AG, NPC','NCNC.NEPU','NPC, NCNC','','','d','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:00'),(287,'In Igbo assembly during the pre-colonial era, decisions were normally reached by','balloting.','consensus','hand raising','queuing','','','b','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:01'),(288,'Which of the following is a function of an electoral commission?','Contesting elections','Organizing and conducting elections','Organizing political parties','Settling disputes among political parties','','','b','','neco','2013',85,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:02'),(289,'The cultural organisation which metamorphosed into \tNorthern People’s Congress (NPC) was','Arewa Consultative Forum','Borno Youth Movement','Egbe Omo Oduduwa','Jamiyyar Mutanen Arewa','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:03'),(290,'Before a candidate is declared winner under absolute majority system of voting, the candidate must score more than ___ of the total vote cast.','half','one - quarter','one - third','three - quarter','','','a','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-16 09:36:50'),(291,'Nigeria became a member country of the Common wealth of Nations on 1st October','1922','1951','1960','1963','','','c','','neco','2013',90,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:05'),(292,'A constitution that requires stringent procedures for amendment is termed ___ constitution.','federal','flexible','rigid','unitary','','','c','','neco','2013',69,'Admin','2016-11-13 16:50:52','2020-07-23 23:51:42'),(293,'To conduct local government elections, the electoral commission divides the local government area into','branches','constituencies','secretariats','wards.','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:07'),(294,'Agents of political socialization include the following EXCEPT','educational institutions','political godfathers','political parties','religious institutions','','','b','','neco','2013',78,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:08'),(295,'Ownership of land is a common feature of','aristocracy','capitalism','communalism','feudalism.','','','d','','neco','2013',70,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:09'),(296,'The term of the Secretary-General of United Nations (UN) is for ___ years.','eight','five','four','six','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:10'),(297,'How many members of the security council of the United Nations (UN) exercise veto power?','Eight','Five','Four','Six','','','b','','neco','2013',80,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:11'),(298,'The head of the electoral commission at the local government area is referred to as the','chairman','electoral officer','resident commissioner','returning officer','','','d','','neco','2013',84,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:12'),(299,'Who was the leader of the Northern Elements Progressive Union (NEPU)?','Alhaji Balarabe Musa','Alhaji Umaru Dikko','Mallam Aminu Kano','Sir Abubakar Tafawa Balewa','','','c','','neco','2013',81,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:13'),(300,'Which of the following is NOT a source of local government finance?','Commercial ventures','Grants','Rates','Sale of bonds','','','d','','neco','2013',86,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:14'),(301,'The first ever civilian - to - civilian transition was recorded in Nigeria in','1966','1979','1999','2003','','','d','','neco','2013',80,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:15'),(302,'A manifesto is essential to political parties because it enables them to','assess the electorates','gauge public opinion','manipulate election','present programme of action','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:16'),(303,'The two Greek words that make up democracy are ___ and ___ ,','arita, demo','demo, aria','demo, krat','demo, kratia','','','d','','neco','2013',92,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:17'),(304,'The Headquarters of Organization of Petroleum Exporting Countries (OPEC) is located in','Algiers','Baghdad','Riyadh','Vienna','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:53','2020-07-16 09:26:40'),(305,'The term, “Quorum” means the number of legislators chat','are absent from a day’s proceeding.','assent to any particular bill','belong to the opposition party in the house','must be present before business could start','','','d','','neco','2013',77,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:19'),(306,'The process of sensitizing the electorate on the need to vote on the election day and also observe the rules and regulations of election is referred to as','campaign','free and fair election','gerrymandering','political socialization.','','','d','','neco','2013',90,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:20'),(307,'Which of the following is NOT a feature of the civil service?','Anonymity','Expertise','Impartiality','Rigidity','','','d','','neco','2013',94,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:21'),(308,'In a federal state, power is shared','between the center government and the local authorities','among the state of the federation','among the major regions of the country','between the center government and other co-ordinate units.','','','d','','wassce','1999',71,'Admin','2016-11-13 17:15:28','2020-07-14 15:11:22'),(309,'In a federal system of government, the center is','superior to the other components','inferior to the other components','weak to the other components','equal to the other components','','','a','','wassce','1999',90,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:23'),(310,'In a presidential system of government, ministers are','individually responsible to the president','individually responsible to the senate','collectively responsible to the president','collectively responsible to the electorate','','','a','','wassce','1999',68,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:24'),(311,'The principle of collectively responsibility implies that','individual views cannot be expressed','decisions taken are defended in spite of individual opinions','those who hold different views must acquiesce','government cannot be personalized','','','b','','wassce','1999',77,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:25'),(312,'A government controlled by a few people for their own interests is said to be','an autocracy','a tyranny','an oligarchy','a meritocracy','','','c','','wassce','1999',77,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:26'),(313,'In the parliamentary system of government, formal legislation can take the following forms except','royal proclamations','order in council','acts of parliament','ministerial pronouncement','','','a','','wassce','1999',59,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:27'),(314,'One of the distinctive features of democracy is that it','connotes civil rule','facilitates popular','provides for a unicameral legislature','is not associated with one-party system','','','b','','wassce','1999',55,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:28'),(315,'A hereditary system of government is','an oligarchy','a gerontocracy','an aristocracy','a monarchy','','','d','','wassce','1999',52,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:29'),(316,'The separation of judicial, legislative and executive function is designed to','promote freedom','prevent tyranny','promote peace','prevent anarchy','','','b','','wassce','1999',65,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:30'),(317,'Bicameral legislature are a common feature of','monarchical systems','confederal systems','federal systems','unitary systems','','','c','','wassce','1999',55,'Admin','2016-11-13 17:15:29','2020-07-16 09:26:40'),(318,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as','exclusive','extra-ordinary','residual','concurrent.','','','d','','wassce','1999',66,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:32'),(319,'The most important function of the exclusive organ of government is to','formulate policies','give assent to bills','control foreign policies','enforce laws.','','','a','','wassce','1999',70,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:33'),(320,'The process of learning the norms and values associated with a political system is referred to as political','socialization','indoctrination','culture','participation','','','a','','wassce','1999',60,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:34'),(321,'Which of the following best describes the role of the civil service?','Promoting the interest of civil servants','Advising government and implementing its policies','Keeping records for government','Providing information on government and its agencies.','','','d','','wassce','1999',65,'Admin','2016-11-13 17:15:30','2020-07-26 12:04:26'),(322,'One instrument for safeguarding the rights of citizens is','judicial interpretation','presidential pardon','legislative intervention','writ of habeas corpus','','','d','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:36'),(323,'Legislative control over delegated legislation can be performed through','withdrawal of delegated powers by the judiciary','nullification of unconstitutional legislation','investigation into the exercise of delegated powers','approval of legislation by the Chief Justice.','','','c','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:37'),(324,'The feature which best differentiates pressure group from political parties is that they do not','have interest in politics','seek to influences public opinion','have permanent organization','nominate ministers','','','d','','wassce','1999',65,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:39'),(325,'The notion of equality before the law is the same as the principle of','supremacy of the constitution','rule of law','independence of the judiciary','nominate ministers','','','b','','wassce','1999',71,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:39'),(326,'A constitution is classified as unwritten when it','does not emanate from the legislature','provides for separation of powers','originates from Britain','is not contained in any single document','','','d','','wassce','1999',52,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:40'),(327,'.\\n\\nA state is said to be fascist when','its leader is patriotic but the citizens are not','all rights and liberties are subordinated to state interest','its citizens are fanatically in love with their leader','all rights and liberties are placed above state interests.','','','b','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:41'),(328,'A dominant two-party system is operated in','the United Kingdom and the United States','India and Pakistan','France and Germany','South Africa and Senegal','','','a','','wassce','1999',69,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:43'),(329,'Indirect legislation can be achieved by','judicial interpretation and precedent','passing a private member’s bill','second read of the law','the two legislative chambers considering a bill','','','a','','wassce','1999',72,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:44'),(330,'Naturalization is a process of acquiring citizenship by','persons of dual nationality','foreign visitors to a country','resident foreigners of good character','persons born abroad.','','','c','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:45'),(331,'The ideology which states that each person is the best judge of what is in his self-interest is','liberalism','socialism','fascism','feudalism','','','a','','wassce','1999',53,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:46'),(332,'The Code of Conduct Bureau was established essentiality to','ensure the independence of the public service','enhance probity and accountability in public service','probe public office holders','reduce corruption in public life.','','','b','','wassce','1999',67,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:47'),(333,'The British Government revoked the Character of the Royal Niger Company and took over the administration of Nigeria in','1861','1861','1900','1914','','','c','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:48'),(334,'The Independence constitution can be described as','monarchical and presidential','republican and parliamentary','monarchical and parliamentary','federal and republican','','','c','','wassce','1999',62,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:49'),(335,'Which of the following parties formed the opposition in the House of Representatives during Nigeria’s First Republic?','AG and UMBC','NCNC AND NEPU','NPC and NNDP','NCNC and AG','','','a','','wassce','1999',55,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:50'),(336,'The first Head of Government in Independent Nigeria was','Nnamdi Azikiwe','Ahmadu Bello','Tafawa Balewa','Herbert Macaulay','','','c','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:51'),(337,'A feature common to the 1963, 1979 and 1989 constitutions of Nigeria was that they provided for a','republican system','prime minister','ceremonial head of state','president as head of government','','','a','','wassce','1999',83,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:52'),(338,'The Lagos Colony and Protectorate was amalgamated with The Protectorate of Southern','1886','1893','1906','1922','','','c','','wassce','1999',56,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:53'),(339,'During the 1957 constitutional conference, the Willink Commission was set up to','recommend a date for independence','suggest an equitable revenue allocation  \tformula','create new regions in Nigeria','recommend solutions to the problem of the minorities','','','d','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-17 01:24:34'),(340,'The duty of an Alkali under the Hausa-Fulan political system is to','adjudicate under Islamic laws','make Islamic laws','execute Islamic laws','make treaties under Islamic laws','','','a','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:55'),(341,'The motion for self-government in Nigeria was proposed by Chief Anthony Enahoro in','1956','1953','1956','1958','','','b','','wassce','1999',68,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:56'),(342,'The legislative functions of the government of Benin Kingdom were performed by the','Esama','Ndichie','Uzama','Enigie','','','c','','wassce','1999',69,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:57'),(343,'The highest ruling body under the Murtala Obasanjo regime differed remarkably from that of the Gowon','administration because of the','inclusion of civilians as members','exclusion of military governors from the council','inclusion of the Chief justice as member','','','b','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-07-17 15:18:54'),(344,'Decree No.34 of May 1966 is also known as the','State Security Decree','Suspension and Modification Decree','Public Order Decree','Unification Decree','','','d','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:59'),(345,'In 1979, the Unity Party of Nigeria contested and won gubernatorial elections in','Lagos, Ogun, imo, Oyo and Bendel','Lagos, Kwara,Oyo,Ogun, and Benue','Lagos, Ogun,Oyo,Ondo and Bendel','Lagos, Kwara,Ogun,Oyo,Ondo','','','c','','wassce','1999',57,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:00'),(346,'Rate are usually collected in Nigeria by','ministries of commerce in the states','local government councils','the department of Inland Revenue','the traditional rulers','','','b','','wassce','1999',72,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:01'),(347,'One of the main reasons for the creation of more local governments in Nigeria is to','make them more responsive to people’s needs','weaken the powers of traditional authorities','make them more receptive to traditional rule','establish them as the third tier in the federal structure','','','a','','wassce','1999',67,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:02'),(348,'Based on its objectives, the Organization of African Unity can primarily be classified as','a social organization','a political organization','a cultural organization','an economic organization','','','b','','wassce','1999',64,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:04'),(349,'Nigeria’s role in ECOMOG is essentially informed by her','desire for peace and stability','chairmanship of ECOWAS.','desire to establish democracy','member ship of ECOWAS.','','','a','','wassce','1999',62,'Admin','2016-11-13 17:15:31','2020-07-28 00:06:45'),(350,'The annual budget of the OAU is approved by the','Council of Ministers','Secretary General','Assembly of Heads of State and Government','General Assembly','','','c','','wassce','1999',68,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:06'),(351,'The major strategy used by OPEC to influence oil price is by','allocating production quotas to members','influencing buyers at the international market to buyer at high prices','allowing member countries to produce at their discretion','increasing the supply of the commodity','','','a','','wassce','1999',57,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:07'),(352,'Nigeria’s was suspended from the Commonwealth because of her','tacit approval of military dictatorship','negative position towards other nations','complete negligence of freedom of the press','violation of fundamental human rights','','','d','','wassce','1999',79,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:08'),(353,'Nigeria’s non-aligned policy means that she will','have nothing to do with the super-powers','not take sides in international issues based on ideological considerations','avoid having any dealing with any country with Ideological','relate only with member countries of the Non-Aligned Movement','','','b','','wassce','1999',74,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:09'),(354,'One of the underlying principles of Nigerian foreign policy is','encouragement of peace-keeping operations in Africa','interference in the internal activities of other countries','non-commitment towards Africa unity','respect for sovereign equality of all states.','','','d','','wassce','1999',73,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:10'),(355,'Before a new member is admitted to the United Nations Organization, its application must be approved by all','permanent members of the Security Council','members of the General Assembly','members of the Economic and Social Council','members of the International Court of Justice','','','a','','wassce','1999',71,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:11'),(356,'Which of the following international organizations was in existence before the outbreak of the Second World War?','The OAU','The League of Nations','The UNO','The ECOWAS','','','b','','wassce','1999',67,'Admin','2016-11-13 17:15:31','2020-07-26 12:04:26'),(357,'The organ of the United Nations Organization responsible for the former colonies of defeated World War II power is the','General Assembly','Security Council','Economic and Social Council','Trusteeship Council','','','d','','wassce','1999',67,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:13'),(358,'The Land Use Decree of 1978 vested the ownership of land in Nigeria in the','State Governments','Federal Government','Local Governments','Local Chiefs','','','a','','utme','2016',71,'Admin','2016-11-13 17:26:43','2020-07-14 15:12:14'),(359,'During the civil war, the major power that expressed moral support for Biafra’s self-determination was','Great Britain','the United States','China','France','','','d','','utme','2016',83,'Admin','2016-11-13 17:26:44','2020-07-14 15:12:15'),(360,'How many states were created in Nigeria in 1967?','4','12','19','21','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:16'),(361,'Decree 34 of 1966 was unacceptable to many Nigeria because it was','seen as an instrument of impoverishment','perceived to abolish the federal system','promulgated without consultation with the people','considered as alien','','','b','','utme','2016',64,'Admin','2016-11-13 17:26:45','2020-07-22 21:44:00'),(362,'The Mid-Western Region was created in Nigeria in','1961','1962','1963','1964','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:18'),(363,'A major contentious issues confronting Nigerian Federalism is','poverty','education','health care delivery','revenue allocation','','','d','','utme','2016',61,'Admin','2016-11-13 17:26:45','2020-07-26 12:04:26'),(364,'A constitution of any country is basically','a mere piece of paper','a guide to how the country should be governed','a document stating what the leaders should do','a document stating how to power','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:21'),(365,'The term, Rule of Law means','nobody is above the law','everybody is equal before the law','we are being governed by lawyers','A and B above','','','d','','utme','2016',71,'Admin','2016-11-13 17:26:45','2020-07-22 21:44:02'),(366,'A good example of a country which operates a cabinet system of government is','France','United Kingdom','United States','Soviet Union','','','b','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-07-23 11:40:46'),(367,'Indirect Rule was first introduced into Nigeria by','Dame Margery Perham','Sir Donald Cameron','Sir Frederick Lugard','Sir Arthur Richards','','','c','','utme','2016',69,'Admin','2016-11-13 17:26:45','2020-07-22 21:44:02'),(368,'France introduced the policy of assimilation in her colonies primarily to','teach them the art of leadership','give them a sound education','change their way of life','discourage them from ritual killings','','','c','','utme','2016',56,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:25'),(369,'The first Governor-General of Nigeria was','Lord Lugard','Dr. Nnamdi Azikwe','Sir James Robertson','Major-General Aguiyi Ironsi','','','a','','utme','2016',59,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:26'),(370,'A disadvantage of the one-party system is that it','emphasizes political differences','makes accountability difficult','negates freedom of association','delays decision - making','','','c','','utme','2016',86,'Admin','2016-11-13 17:26:45','2020-07-23 11:40:46'),(371,'A typical form of delegated legislation is','an act','a bill','a decree','a bye-law','','','d','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-07-22 21:44:00'),(372,'In federalism system of Government currency, Armed forces and National defense is the primary function o','f\\nLocal government Chairman','Armed Forces Ruling Council','Security and Exchange Commission','Exclusive list','','','d','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:29'),(373,'An electoral process in which candidates are selected for elective offices by party members is','Primary election','Electoral College','Bye election','General election','','','a','','utme','2016',95,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:30'),(374,'The system of indirect rule failed in the former Eastern Nigeria primarily because','of the fragmented political structures','the chief refused to cooperate with colonial officer','the high incidence of taxation chief refused to cooperate with colonial officers','the colonial officers imposed warrant chiefs on the people','','','d','','utme','2016',80,'Admin','2016-11-13 17:26:45','2020-07-23 11:40:46'),(375,'Citizenship refers to the','legal status of a member of a state','indigenous member of a state','highest position in a state','social status of a person in a state','','','b','','utme','2016',87,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:32'),(376,'Before Nigeria became a republic, the highest body charged with the administration of justice was the','Supreme Court','Court of Appeal','Privy court','High Court','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:33'),(377,'Nigeria’s withdrawal from the Edinburgh Commonwealth Games in July 1986 was in protest against British','supply of arms of Rhodesia','failure to improve sanctions on South Africa','negative utterances on Nigeria','support for UNITA rebels in Angola','','','b','','utme','2016',71,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:34'),(378,'Which of these is not the supreme organ of the OAU?','the council of Ministers','The Administrative Secretary General','the Assembly of Heads of States and Government','Appointment of staff','','','d','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:35'),(379,'Which of the following electoral bodies in Nigeria conducted elections from 1979 to 1983?','Federal Electoral Commission','National Electoral Commission','National Electoral Commission of Nigeria','Independent National Electoral commission','','','b','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-07-26 12:04:26'),(380,'The Queen can do no wrong means','the Queen is above the law','the Queen acts on the advice of their ministers on matter of public policy','The Queen is the effective centre of power in the United Kingdom','The Queen has the loyalty of a vast number of the British population','','','a','','utme','2016',67,'Admin','2016-11-13 17:26:45','2020-07-14 15:12:38'),(381,'The main attributes of a state are','government, the police and the armed forces','population, territory, government and sovereignty','federal state and local governments','the press, the legislature, the executive and the judiciary','','','b','','utme','2016',87,'Admin','2016-11-13 17:26:45','2020-07-22 00:06:56'),(382,'Islam was introduced in Northern Nigeria','before the 13th century','in the 17th century','after the jihad of Uthman Dan Fodio','by the British in the early 20th century','','','c','','utme','2016',84,'Admin','2016-11-13 17:26:45','2020-07-22 21:44:01'),(383,'The Aro age-grade system in igboland was','a religious organization','a political organization','a commercial organization','an imperial organization','','','b','','utme','2016',67,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:41'),(384,'ECOWAS comprises','16 independent states','The whole Africa','All West African states','English speaking countries only','','','c','','utme','2016',88,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:42'),(385,'Prior to the formation of the OAU in 1963, Nigeria Identified with the','Brazzaville Group','Casablanca group','Libreville Group','Monrovia Group','','','a','','utme','2016',70,'Admin','2016-11-13 17:26:46','2020-07-23 11:40:47'),(386,'How many countries are founding members of O. P. E. C?','13','5','18','25','','','b','','utme','2016',64,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:44'),(387,'The foremost British trading company on the West African coast was','Royal Niger Company','United African Company','Lever Brothers','John Holt and Sons','','','c','','utme','2016',68,'Admin','2016-11-13 17:26:46','2020-07-23 11:40:45'),(388,'The Zikist Movement was popular for its','philosophy of non-violence','promotion of mass literacy','militant nationalism','encouragement of multi-party system','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:46'),(389,'Which of the following sets of factors contributed to the development of nationalism in Nigeria?','Racial discrimination and oppression','Corruption and ethnicity','Paternalism and indirect rule','Election malpractices and party differences','','','a','','utme','2016',71,'Admin','2016-11-13 17:26:46','2020-07-22 21:44:01'),(390,'Which constitution was created to legislate for the Lagos Colony and the Southern Provinces?','The Richard Constitution','The Clifford Constitution','The Lyttletion Constitution','the MacPherson Constitution','','','b','','utme','2016',77,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:49'),(391,'Judges in Nigeria enjoy security of tenure','if they are appointed by the president','if they have the support of the Nigerian Bar Association','if they are of good behaviour','during the life of the government which appoints them','','','c','','utme','2016',80,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:50'),(392,'Before the 1963 Constitution, the highest court of appeal for Nigeria was the','Supreme Court','Federal Court of Appeal','Privy Council','Federal High Court','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:46','2020-07-23 23:51:42'),(393,'Which of the following is NOT a function of the Police Force in Nigeria?','Traffic control','Arrest of criminals','making of law','Prosecution of criminals','','','c','','utme','2016',71,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:52'),(394,'In Nigeria, the highest court for Muslims is the','Alkali Court','Sharia Court of Appeal','Supreme Court','Upper Area Court','','','b','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-07-28 00:06:45'),(395,'Who was appointed by the federal government of Nigeria as the administrator of western region in 1962?','Dr. M. A. Majekodunmi','Chief Odeleye Fadahunsi','Chief S. L. Akintola','Chief Remi Fani Kayode','','','c','','utme','2016',66,'Admin','2016-11-13 17:26:46','2020-07-23 11:40:46'),(396,'The head of state in the first republic of Nigeria was','an executive president','a nominal president','a party leader','a nominee of the whole country','','','b','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-07-14 15:12:56'),(397,'Which of the following parties formed the opposition in the House of Representatives during Nigerian first republic?','NCNC and NEPU','AG and UMBC','NPC and NNDP','NCNC and MDF','','','b','','utme','2016',79,'Admin','2016-11-13 17:26:46','2020-07-22 21:44:01'),(398,'A prominent feature of a presidential system of government is','dual executive','vote of no confidence','the rule of law','separation of powers','','','d','','utme','2016',79,'Admin','2016-11-13 17:26:46','2020-07-22 21:44:01'),(399,'The executive checks the excesses of the legislature through','assent to bills','the use of veto power','the ratification of treaties','issuance of orders','','','b','','utme','2016',66,'Admin','2016-11-13 17:26:46','2020-07-15 19:34:58'),(400,'The consciousness of a common identity of a people is called','nationalism','integration','indoctrination','emancipation','','','b','','utme','2016',77,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:01'),(401,'Citizenship of a state by descent requires that','one is born and bred in the state','one’s mother was born in the state','one’s grandparents were citizens of that state','one is domiciled in that state','','','a','','utme','2016',74,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:02'),(402,'In order to dispense justice impartially, the judiciary primarily needs','discipline','logistics','motivation','independence','','','d','','utme','2016',74,'Admin','2016-11-13 17:26:46','2020-07-23 11:40:46'),(403,'A state with a hegemonic political party is one in which','there is one dominant party','there is no opposition party','there is only one party','other parties are officially recognized','','','a','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:04'),(404,'Nigeria commitment to the liberation of Africa could best be seen in her policy towards','Namibia and Mozambique','the Congo and Zimbabwe','Sierra Leone and Chad','South Africa and Angola','','','d','','utme','2016',60,'Admin','2016-11-13 17:26:46','2020-07-14 15:13:06'),(405,'The set of policies on the basis of which countries interact with one another is called','constructive engagement policy','socio-economic policy','national policy','foreign policy','','','d','','utme','2016',103,'Admin','2016-11-13 17:26:46','2020-07-26 09:26:37'),(406,'Nigeria’s membership of the UN complements her foreign policy in the area of','bilateral diplomacy','regional diplomacy','sub-regional diplomacy','multi-lateral diplomacy','','','d','','utme','2016',83,'Admin','2016-11-13 17:26:47','2020-07-26 12:04:26'),(407,'Nigeria teamed up with other developing countries to assert a neutral posture under the platform of','Nationalist Movement','Pan - African Movement','Non - aligned Movement','Negritude Movement','','','c','','utme','2016',74,'Admin','2016-11-13 17:26:47','2020-07-22 21:44:00'),(408,'Nation-state is synonymous with','liberation','sovereignty','nationalism','self-actualization','','','b','','utme','2010',86,'Admin','2016-11-13 18:33:18','2020-07-23 11:40:46'),(409,'A fundamental component of political culture is','community structure','family values','economic values','social values','','','d','','utme','2010',100,'Admin','2016-11-13 18:33:18','2020-07-25 12:29:30'),(410,'A form of oligarchy in which gifted people are at the helm of affairs is','plutocracy','theocracy','gerontocracy','aristocracy','','','d','','utme','2010',87,'Admin','2016-11-13 18:33:18','2020-07-25 12:29:30'),(411,'A state that is ruled by an elected citizen is','a republic','a plutocracy','an empire','a monarchy.','','','a','','utme','2010',93,'Admin','2016-11-13 18:33:18','2020-07-25 12:29:30'),(412,'A true democracy in the modern sense exists where the','majority of the people vote','majority of the people rule','elite rules','elected representatives rule.','','','d','','utme','2010',90,'Admin','2016-11-13 18:33:18','2020-07-25 12:29:30'),(413,'In a parliamentary system, when the legislature passes a vote of no confidence on the executive, it means that the','executive is required to resign','legislature ceases to trust the executive','legislature commences legal proceeding against the executive','executive is expected to go on suspension','','','a','','utme','2010',96,'Admin','2016-11-13 18:33:18','2020-07-25 12:29:30'),(414,'The legislative body of the United States of America is the','Congress','National Assembly','Council','Parliament','','','a','','utme','2010',70,'Admin','2016-11-13 18:33:18','2020-07-25 12:29:30'),(415,'Unicameralism is a feature of the legislature in','the United Kingdom','the United States','Ghana','Israel','','','a','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(416,'The upper house in most federal systems is created to','oversee and check the lower house','prevent excesses of the executive','enable experienced elders make inputs to governance','ensure equality of federating units','','','d','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(417,'In which of the following systems is the power of the component units more than that of the central government?','Unitary.','Federal.','Confederal','Monarchical.','','','c','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-07-25 12:20:58'),(418,'One of the general tenets of fascist doctrine is that the leader is','subordinate to the law of the state','weak relative to the constitution','subordinate to the norms of the society','supreme relative to the constitution','','','d','','utme','2010',84,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(419,'In a cabinet system of government, executive power is exercised by the','president','monarch','dominant party','head of government','','','d','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(420,'The principle of separation of powers is best practiced in the','monarchical system','parliamentary system.','feudal system','presidential system','','','d','','utme','2010',82,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(421,'A typical form of delegated legislation is','a decree','a bill','a bye-law','an act','','','c','','utme','2010',82,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(422,'16.\tThe rights of a citizen can be withdrawn by the state if the person','is convicted of a serious crime','leaves the country permanently','is pronounced dead','opposes the government violently.','','','a','','utme','2010',105,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(423,'An electoral process in which candidates are selected for elective offices by party members is','bye election','electoral college','general election','primary election.','','','d','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-20 19:21:56'),(424,'In theory, one major advantage of the one-party systems is that it','promotes greater mass participation in government','serves as an instrument of national integration','guarantees social justice','eliminates intra-party conflict.','','','b','','utme','2010',84,'Admin','2016-11-13 18:33:19','2020-07-25 12:20:58'),(425,'A tactic employed by pressure groups to achieve their objectives is','propaganda','electioneering campaign','lobbying','memorandum.','','','c','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(426,'Public opinion can be measured through','strike action','referendum','rumour','negotiation.','','','b','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(427,'Which of the following is the main function of the civil service?','Supporting the party in power.','Allocating resources to the federating units.','Mobilizing grassroots support for government.','Implementing government policies.','','','d','','utme','2010',72,'Admin','2016-11-13 18:33:19','2020-07-25 12:20:58'),(428,'Who was the political head of the Old Oyo Empire?','Aremo.','Oyomesi.','Alaafin.','Bashorun.','','','c','','utme','2010',80,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(429,'The Igbo political system was based on','family ties','Umunna','Umuada','age grades','','','d','','utme','2010',90,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(430,'The Aro age-grade system in lgboland was','a commercial organization','a political organization','an imperial organization','a religious organization.','','','d','','utme','2010',82,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(431,'France introduced the policy of assimilation in her colonies primarily to','change their way of life','give them a sound education','discourage them from ritual killings','teach them the art of leadership','','','a','','utme','2010',92,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(432,'The foremost British trading company on the West African coast was','Lever Brothers','United African Company','John Holt and. Sons','Royal Niger Company','','','b','','utme','2010',93,'Admin','2016-11-13 18:33:19','2020-07-25 12:20:58'),(433,'Which of these rulers resisted colonial rule and was deported to Calabar?','Oba Ovoramwen.','King Dosunmu','King Jaja.','King Kosoko','','','b','','utme','2010',74,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(434,'Nigerian nationalism was described as two-phased by','James S. Coleman','Edward Wilmot Blyden','David Ricardo','John Payne Jackson.','','','a','','utme','2010',76,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(435,'One major weakness of the Independence constitution is that it','gave full powers to the Supreme Court in Nigeria','gave total independence to Nigeria','empowered Britain to continue to rule','failed to provide the country with full sovereignty.','','','d','','utme','2010',79,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(436,'The first law-making body in Nigeria after amalgamation was','Legislative Council','National Assembly','Regional Assembly','Nigerian Council.','','','a','','utme','2010',92,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(437,'The designation of ministers as chief executives and accounting officers was recommended by a commission headed by','Simeon Adebo','S.J.Cookey','Dotun Philips.','Jerome Udoji.','','','d','','utme','2010',85,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(438,'A major shortcoming of the Ombudsman is','its inability to restrain bureaucratic excesses','lack of clear-cut mandate','lack of executive power to enforce decisions','lack of adequate resources.','','','c','','utme','2010',88,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(439,'One of the strong points of the multi-party system in Nigeria’s Fourth Republic is','government interference','wider political participation','wider anti-democracy campaign','the provision for a bicameral legislature.','','','b','','utme','2010',91,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(440,'In which of the following is the ceremonial and executive powers fused?','Federal system of government','Parliamentary system of government','Unitary system of government','Presidential system of government','','','d','','utme','2010',78,'Admin','2016-11-13 18:33:19','2020-07-25 12:29:30'),(441,'A major contentious issue confronting Nigerian federalism is','health care delivery','education','revenue allocation','poverty','','','c','','utme','2010',89,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(442,'The main purpose of establishing public enterprises in Nigeria is to','enrich the elite','provide essential services','compete with the private sector','increase government revenue','','','b','','utme','2010',91,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(443,'Parastatals are established to','expand business transactions','maximize government profits','render social services','enhance entrepreneurial skills','','','c','','utme','2010',87,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(444,'The General Purpose Committee of the local government is the','body responsible for supervising self-help projects','local government public relations unit','body for awarding contracts','cabinet of the local government.','','','d','','utme','2010',85,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(445,'The highest organ of the state during the Babangida Regime was the','Armed Forces Ruling Council','Supreme Military Council','Federal Executive Council .','Provisional Ruling Council.','','','d','','utme','2010',90,'Admin','2016-11-13 18:33:20','2020-07-23 11:40:47'),(446,'Decree 34 of 1966 was unacceptable to many Nigerians because it was','promulgated without consultation with the people','perceived to abolish the federal system','considered as alien','seen as an instrument of impoverishment','','','a','','utme','2010',93,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(447,'Nigeria broke diplomatic relations with France in 1961 because of:','her poor relations with the francophone countries','General de-Gaulle’s negative attitude towards her','France’s diplomatic relations with Israel','France’s atomic test in the Sahara Desert','','','d','','utme','2010',94,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(448,'An attribute that Nigeria shares with most non-aligned countries is','her large population','her heterogeneous population','her large size','the state of  her economy.','','','d','','utme','2010',83,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(449,'Nigeria spearheaded the formation of ECOWAS during the regime of','Murtala Muhammed','Yakubu Gowon','Ibrahim Babangida','Olusegun Obasanjo.','','','b','','utme','2010',100,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(450,'Nigeria was classified as a front line state for','spearheading the formation of African Union','supporting the liberation efforts in Southern Africa','helping to end the crisis in Liberia','participating in peacekeeping in the Congo','','','b','','utme','2010',74,'Admin','2016-11-13 18:33:20','2020-07-25 12:20:58'),(451,'The prominent role Nigeria played in the UN in the 70’s earned her.','permanent representation at the UN','membership of the Security Council','chairmanship of the General Assembly','non-permanent membership position.','','','b','','utme','2010',96,'Admin','2016-11-13 18:33:20','2020-07-23 11:40:46'),(452,'The head of Nigeria’s foreign mission in a Commonwealth nation is known as','ambassador','charge d’affaires.','attaché','high Commissioner','','','d','','utme','2010',88,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(453,'One major function of the Authority of Heads of State and Government of ECOWAS is','appointing staff of the Secretariat','appointing the Executive Secretary','preparing the budget of the Community','organizing international conferences','','','b','','utme','2010',74,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(454,'The tenure of non-permanent members of the Security Council is','4 years','2 years','6 years','5 years','','','b','','utme','2010',109,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(455,'The Secretary-General of the United Nations is appointed by the','Permanent members of the Security Council on the   recommendation of the General Assembly','General Assembly on the recommendation of the Security Council','General Assembly in plenary session','Security Council acting alone.','','','b','','utme','2010',88,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(456,'The approval of treaties and agreements of the Economic Community of West African States is the responsibility of the','Council of Ministers','ECOWAS Tribunal','Assembly of Heads of State and Government','Secretariat.','','','c','','utme','2010',97,'Admin','2016-11-13 18:33:20','2020-07-25 12:29:30'),(457,'The distinctive attribute of a state is the monopoly of','control','power','violence','justice.','','','b','','utme','2012',72,'Admin','2016-11-13 18:42:18','2020-07-22 00:08:18'),(458,'State as a political entity refers to','an organized group within a definite territory','an association of men in a given society','a branch of a nation','a geographical location.','','','a','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(459,'Political values are acquired in any given society through','political re-orientation','political campaign','political socialization','political indoctrination.','','','c','','utme','2012',101,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(460,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate.','','','d','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(461,'One judicial function performed by the executive is','granting of amnesty','implementing judicial orders','ensuring obedience to the law','appointing judges.','','','a','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:05'),(462,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary.','','','c','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-07-23 11:40:46'),(463,'A political system which empowers the leader with the ultimate responsibility to execute laws is','parliamentarianism','presidentialism','dictatorship','autocracy.','','','b','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:07'),(464,'A bill is a draft which is awaiting the consideration of the','executive','party caucus','legislature','judiciary.','','','c','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(465,'The private ownership of the means of production is a feature of','capitalism','socialism','communalism','communism.','','','a','','utme','2012',71,'Admin','2016-11-13 18:42:19','2020-07-23 11:40:45'),(466,'In a feudal system, the two major classes are the serfs and the','masses','vassals','lords','elite.','','','c','','utme','2012',75,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(467,'An example of a country with a flexible constitution is','South Africa','Britain','Benin Republic','the United States of America.','','','d','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-22 21:44:01'),(468,'The rule of law is a negation of','equality before the law','supremacy of the law','limited power','absolute power.','','','d','','utme','2012',75,'Admin','2016-11-13 18:42:19','2020-07-22 21:44:02'),(469,'To ensure the rights and freedom of citizens, the powers of the arms of government must be','fused','incorporated','separated','rotated.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(470,'Delegated legislation is made by bodies other than the','president','governor','parliament','judiciary','','','c','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(471,'The bringing of a session of a parliament to an end through royal proclamation is known as','political impasse','dissolution of parliament','vote of no confidence','prorogation of parliament.','','','b','','utme','2012',73,'Admin','2016-11-13 18:42:19','2020-07-22 21:44:02'),(472,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social light.','','','c','','utme','2012',82,'Admin','2016-11-13 18:42:19','2020-07-15 19:34:58'),(473,'The commission charged with the conduct of federal elections in Nigeria is','NEC','FEDECO','INEC','NECON.','','','c','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-07-22 21:44:02'),(474,'An electoral system in which parties are assigned seats in the parliament commensurate to the number of votes polled is','absolute majority','simple majority','proportional representation.','indirect election.','','','c','','utme','2012',78,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(475,'An intra-party activity for the selection of candidates for elective positions is known as','primary election','general election','mid-term election','bye-election.','','','a','','utme','2012',87,'Admin','2016-11-13 18:42:19','2020-07-16 09:36:50'),(476,'The primary aim of pressure groups is to','attract people’s attention','protects the interest of members','capture political power','fight corrupt officials.','','','b','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-07-23 11:40:45'),(477,'Which of the following is used in gauging public opinion?','Constitution','.\t\t\\nEducational institution.','Mass media.','Electoral college.','','','c','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-07-14 15:14:22'),(478,'A permanent structure that facilitates continuity and guarantees orderly conduct in governance is','bureaucracy','public corporation','ombudsman','political party.','','','a','','utme','2012',89,'Admin','2016-11-13 18:42:19','2020-07-26 12:04:26'),(479,'In the Hausa pre-colonial political system, a district was headed by','a hakimi','a dagaci','an alkali','a waziri.','','','d','','utme','2012',73,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(480,'Which of the following ensured the practice of democracy in the pre-colonial Yoruba political system?','Checks and balances.','Fusion of power.','Individual responsibility.','The rule of law.','','','a','','utme','2012',74,'Admin','2016-11-13 18:42:19','2020-07-22 21:44:02'),(481,'Colonization of Africa was mainly motivated by','security considerations','economic reasons','religious reasons','cultural factors.','','','b','','utme','2012',82,'Admin','2016-11-13 18:42:19','2020-07-23 11:40:46'),(482,'The French colonial system was underlined by the policy of','assimilation','paternalism','socialism','indirect rule.','','','a','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-07-14 16:08:08'),(483,'Radical nationalism in Nigeria is generally attributed to the influence of','Aminu Kano','Herbert Macaulay','Nnamdi Azikiwe','Mbonu Ojike.','','','b','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-07-15 19:31:30'),(484,'Two foreigners that directly aroused nationalist feelings among Nigerians are','Edward Blyden and Payne Jackson','Casely Hayford and James Horton','W.E.du Bois and H. O. Davies','Marcus Garvey and Casely Hayford.','','','d','','utme','2012',99,'Admin','2016-11-13 18:42:19','2020-07-23 11:40:47'),(485,'Members of the Senate in Nigeria’s First Republic were','elected directly by the people','elected by electoral college','nominated by regional and federal governments','nominated by the president of the house.','','','b','','utme','2012',65,'Admin','2016-11-13 18:42:19','2020-07-22 21:44:00'),(486,'In Nigeria, the agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil Defense Corps','Police.','','','d','','utme','2012',96,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(487,'The National Assembly in Nigeria is primarily responsible for','executing laws','interpreting laws','ratifying appointments','making laws.','','','d','','utme','2012',78,'Admin','2016-11-13 18:42:20','2020-07-23 11:40:46'),(488,'The major factor militating against the efficient operation of electoral commissions in Nigeria is','inadequate public support','population size','inadequate skilled manpower','excessive political interference.','','','d','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-07-14 15:14:59'),(489,'A major objective of the Public Complaints Commission is','training and promotion of public servants','settlement of disputes among individuals','addressing the grievances of individuals and groups','fighting corruption and indiscipline.','','','d','','utme','2012',72,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(490,'The three registered political parties at the inception of Nigeria’s Fourth Republic were','PDP, DPP and PPA','PDP, AD and APP','PDP,  AD and PPA','PDP, APP and AC.','','','b','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(491,'The Sharia legal system was first introduced in the Fourth Republic in','Kano State','Katsina State','Zamfara State','Sokoto State.','','','c','','utme','2012',89,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(492,'Quota system and federal character principles were entrenched in the 1979 Constitution to ensure','loyalty','economic empowerment','equity','even development.','','','d','','utme','2012',84,'Admin','2016-11-13 18:42:20','2020-07-23 11:40:46'),(493,'Workers in the public corporations are known as','civil servants','private employees','public servants','professional employees.','','','c','','utme','2012',77,'Admin','2016-11-13 18:42:20','2020-07-22 21:44:02'),(494,'The central objective of privatization in Nigeria is to','reduce the retrenchment of workers','encourage prompt payment of salaries','improve standard of living','improve the efficiency of enterprises.','','','d','','utme','2012',79,'Admin','2016-11-13 18:42:20','2020-07-23 11:40:45'),(495,'Military intervention in Nigeria arose from','perceived incapability of civilians to govern','international pressure for change','the desire for a military government','civilians’ desire to relinquish power.','','','a','','utme','2012',81,'Admin','2016-11-13 18:42:20','2020-07-26 12:04:26'),(496,'The first institution introduced by the military to exercise legislative power was the','Supreme Military Council','Armed Forces Ruling Council','Federal Executive Council','Provisional Ruling Council.','','','a','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 15:15:28'),(497,'The main focus of Nigeria’s foreign policy since independence centres on','south-south cooperation','sub-regionalism','globalism','Afrocentric.','','','d','','utme','2012',78,'Admin','2016-11-13 18:42:20','2020-07-22 21:44:01'),(498,'The country that championed decolonization in Africa was','Nigeria','South Africa','Ghana','Kenya.','','','c','','utme','2012',93,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(499,'A major drawback to the NEPAD initiative is its','articulation by few African leaders','affiliation to the African union','inability to empower the youth','reliance on Western donors for funds.','','','d','','utme','2012',66,'Admin','2016-11-13 18:42:20','2020-07-20 22:44:09'),(500,'The structure of the African Union includes','The Court of Justice, Pan African Congress and People’s Assembly','Pan African Parliament, the Court of Justice and the Peace and Security Council','Specialized Technical Commission, the Court of Justice and Humanitarian Board','People’s Assembly, Humanitarian Board and the Peace and Security Council.','','','b','','utme','2012',74,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(501,'ECOMOG at the initial stage of its intervention in Liberia was perceived as','neutral','incompetent','partisan','invaders.','','','d','','utme','2012',90,'Admin','2016-11-13 18:42:20','2020-07-22 21:44:02'),(502,'The African leader mostly credited for spearheading the formation of the African Union is','Muammar Ghaddafi','Abdelaziz Bouteflika','Abdoulaye Wade','Thabo Mbeki.','','','a','','utme','2012',68,'Admin','2016-11-13 18:42:20','2020-07-23 11:40:45'),(503,'One of the programmes binding members of the Commonwealth is the','food and aid programme','cultural programmes','agenda for peace','scholarship scheme.','','','d','','utme','2012',77,'Admin','2016-11-13 18:42:20','2020-07-22 21:44:00'),(504,'As part of the reforms in the UN, two slots were proposed in the Security Council for','Asia','Africa','America','Europe.','','','b','','utme','2012',75,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(505,'The founding members of OPEC are','Algeria, Iran, Iraq, Saudi Arabia and Kuwait','Nigeria, Libya, Iran, Iraq and, Saudi Arabia','Venezuela, Nigeria, Libya, Iran and Iraq','Saudi Arabia, Iran, Iraq, Kuwait and Venezuela.','','','d','','utme','2012',85,'Admin','2016-11-13 18:42:20','2020-07-14 16:08:08'),(506,'Power that is delegated is exercised','indirectly','by devolution','directly','by coercion.','','','a','','utme','2013',65,'Admin','2016-11-13 20:36:42','2020-07-19 23:25:04'),(507,'De jure sovereignty is acquired through','force','law','grant','treaty.','','','b','','utme','2013',82,'Admin','2016-11-13 20:36:42','2020-07-19 23:25:04'),(508,'A group of people who live together under a common law within a definite territory is a','state','community','nation-state','nation.','','','a','','utme','2013',72,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:07'),(509,'Political socialization is associated with','free choice of party programmes','military take over of civilian government','the transmission of political values','political transition.','','','c','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(510,'According to Aristotle, a form of government in which the few rule for the benefit of all is','polyarchy','diarchy','aristocracy','autocracy.','','','c','','utme','2013',85,'Admin','2016-11-13 20:36:43','2020-07-22 21:44:02'),(511,'Rule by the old people is known as','theocracy','monarchy','gerontocracy','feudalism.','','','c','','utme','2013',80,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(512,'As an executive, the commissioner is charged with the responsibility of','making laws','implementing laws','writing laws','giving loans.','','','b','','utme','2013',100,'Admin','2016-11-13 20:36:43','2020-07-23 23:51:42'),(513,'Rule adjudication is a primary function of the','legislature','judiciary','executive','government.','','','b','','utme','2013',74,'Admin','2016-11-13 20:36:43','2020-07-23 11:40:45'),(514,'The judiciary controls the executive in federal states through','motions','delegated legislation','judicial overview','judicial review.','','','d','','utme','2013',91,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(515,'One major advantage of the unitary system is that it tends to make government','strong and stable','free of controversy','distant from the people','popular among the masses.','','','a','','utme','2013',93,'Admin','2016-11-13 20:36:43','2020-07-28 01:02:34'),(516,'The presidential system differs from the parliamentary system of government in that','the tenure of office of the president is limited','the principle of collective responsibility applies','executive and legislative powers are fused','powers of the three arms of government are merged.','','','a','','utme','2013',85,'Admin','2016-11-13 20:36:43','2020-07-22 21:44:00'),(517,'Which of the following advocates’ equitable distribution of wealth?','Plutocracy.','Capitalism.','Aristocracy.','Socialism.','','','d','','utme','2013',70,'Admin','2016-11-13 20:36:43','2020-07-23 11:40:47'),(518,'A constitution that is difficult to amend is','flexible','rigid','written','unwritten.','','','c','','utme','2013',76,'Admin','2016-11-13 20:36:43','2020-07-14 15:16:46'),(519,'Which of the following constitutions is more suitable for centralization of political power?','Flexible constitution.','Unwritten constitution.','Rigid constitution','Written constitution.','','','d','','utme','2013',92,'Admin','2016-11-13 20:36:43','2020-07-22 21:44:02'),(520,'The act of transferring autonomous powers to subordinate agencies is','devolution','concentration','deconcentration','delegation.','','','a','','utme','2013',89,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(521,'Which of the following types of citizenship cannot be withdrawn?','Citizenship by naturalization.','Citizenship by conquest.','Citizenship by birth.','Honorary citizenship.','','','c','','utme','2013',72,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(522,'The right of citizens to vote is','adult suffrage','universal suffrage','nationality suffrage','electoral suffrage.','','','b','','utme','2013',77,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(523,'A political party is different from a pressure group in its','source of finance','objective','organization','strategy.','','','b','','utme','2013',73,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(524,'One of the functions of pressure groups is to','contest elections to serve the people','nominate the president','prepare the budget','articulate the opinion of their members.','','','d','','utme','2013',92,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(525,'Public opinion refers to the','aggregate of attitudes held by members of the national assembly','aggregate views of groups on particular government activities','views held by the president of a country','views of the Chief Justice of a country.','','','b','','utme','2013',84,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(526,'The class that oversees the implementation of government decisions and policies is the','Administrative','Executive','Clerical','Technical.','','','b','','utme','2013',88,'Admin','2016-11-13 20:36:43','2020-07-22 21:44:01'),(527,'The performance of ritual rites in the Yoruba empire is the responsibility of the','Oyo mesi','Aare-ona kakanfo','Oba','Ogboni.','','','d','','utme','2013',69,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(528,'Under the emirate system, the commander of the army is the','Alkali','Hakimi','Sarkin Fada','Madawaki.','','','d','','utme','2013',67,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(529,'The indirect rule system of administration was more successful in Northern Nigeria because','the people were mainly interested in being governed indirectly','of the existence of an organized structure in the area','the Europeans ensured that the farmlands of the natives were not confiscated','the natives showed little or no resistance.','','','b','','utme','2013',78,'Admin','2016-11-13 20:36:43','2020-07-19 23:25:04'),(530,'The earliest nationalist activities in Nigeria were spearheaded by','educated elites','trade unions','traditional rulers','political parties.','','','a','','utme','2013',63,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:16'),(531,'The first notable nationalist movement in West Africa was the','National Congress of British West Africa','West African Students Union','Nigeria Youth Movement','Aborigines Rights Protection Society.','','','a','','utme','2013',65,'Admin','2016-11-13 20:36:44','2020-07-26 12:04:26'),(532,'In Nigeria’s First Republic, the Prime Minister was both the','Head of government and a lawmaker','Head of State and Commander-in-Chief of the armed forces','Commander-in-Chief of the armed forces and Party leader','Head of State and Party leader.','','','a','','utme','2013',89,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(533,'Under the 1979 Constitution, statutory allocation of revenue to local government councils is the responsibility of the','Council of State','Houses of Assembly','National Economic Council','Federal Legislature.','','','d','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:24'),(534,'Under Nigeria’s Second Republic, the Senate was under the leadership of','John Wash Pam','J. S. Tarka','Joseph Wayas','Godwin Ume-Ezeoke.','','','c','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(535,'The Revenue Mobilization, Allocation and Fiscal Commission is statutorily empowered to determine the remuneration of','all civil servants','only elected representatives','political office holders','employees of public corporations.','','','a','','utme','2013',69,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(536,'The primary function of the Code of Conduct Bureau is to','ensure due process by public officers','ensure minimum standard of morality','retain custody of declarations','receive declaration of assets.','','','d','','utme','2013',86,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(537,'The party system practiced in Nigeria’s Third Republic was','multi-party','two-party','zero-party','one-party.','','','b','','utme','2013',82,'Admin','2016-11-13 20:36:44','2020-07-14 15:17:37'),(538,'Nigeria adopted a federal system of government because of','the fear of domination of minorities','uneven development','the availability of limited resource','the adoption of a state religion.','','','a','','utme','2013',78,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(539,'The highest policy making body under the Gowon Regime was the','Federal Executive Council','Armed Forces Ruling Council','Provisional Ruling Council','Supreme Military Council.','','','d','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(540,'Nigeria became a federation of thirty-six states during the era of','Yakubu Gowon','Ibrahim Babangida','Sani Abacha','Abdulsalami Abubakar.','','','d','','utme','2013',76,'Admin','2016-11-13 20:36:44','2020-07-22 21:44:00'),(541,'Which of the following headed the committee that recommended the suitability of Abuja as a new federal city?','Justice Akinola Aguda.','Justice Buba Ardo.','Justice Atanda Fatai Williams.','Justice Udo Udoma.','','','a','','utme','2013',86,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(542,'A public corporation is managed by','the board of directors','a minister','a general manager','the board of governors.','','','a','','utme','2013',79,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(543,'A major source of revenue in the post -1976 local government in Nigeria is','the joint state-local government account','internally generated revenue','the federation account','grants and loans.','','','c','','utme','2013',82,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(544,'The Provisional Ruling Council was the highest ruling body during the regime of','Sani Abacha','Muhammadu Buhari','Ibrahim Babangida','Murtala Muhammed.','','','c','','utme','2013',72,'Admin','2016-11-13 20:36:44','2020-07-23 11:40:47'),(545,'Nigeria’s non-alignment policy in the sixties lacked real substance because of her','close ties with Britain','Afrocentric policy','poor economic potential','partnership with Asian countries.','','','a','','utme','2013',88,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(546,'Under the Technical Aid Corps, Nigerian experts are deployed to','Asia, Africa and the Pacific','Africa, the Pacific and the Caribbean','Europe, South America and Asia','the Pacific, the Caribbean and Europe.','','','b','','utme','2013',76,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(547,'The centre-piece of Nigeria’s foreign policy covers only','Asia','Europe','Africa','Latin America.','','','c','','utme','2013',68,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:07'),(548,'Which of the following countries pioneered the establishment of ECOWAS alongside Nigeria?','Cameroun.','Ghana.','Togo.','Algeria.','','','c','','utme','2013',67,'Admin','2016-11-13 20:36:44','2020-07-14 15:18:09'),(549,'Nigeria’s role in the African Union was most prominent during the regime of','President Ibrahim Babangida','President Olusegun Obasanjo','President Shehu Shagari','President Umaru Yar’adua.','','','b','','utme','2013',67,'Admin','2016-11-13 20:36:44','2020-07-22 00:08:18'),(550,'A representative of a Commonwealth country in another member state is known as','High Commissioner','Consul-General','Ambassador','Attaché.','','','a','','utme','2013',86,'Admin','2016-11-13 20:36:44','2020-07-23 11:40:45'),(551,'The organ of UN that promotes voluntary co­operation among member states in diverse areas is the','Security Council','International Court of Justice','General Assembly','Economic and Social Council.','','','d','','utme','2013',84,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(552,'The main representative body of the United Nations is the','Secretariat','Security Council','General Assembly','Trusteeship Council.','','','b','','utme','2013',81,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(553,'The AU differs from the OAU in having','no assembly of Heads of State','effective tools for decision enforcement.','no permanent headquarters','a minimum of divergent viewpoints','','','b','','utme','2013',76,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(554,'OPEC has strong influence with the','IMF','EU','ADB','AU.','','','d','','utme','2013',88,'Admin','2016-11-13 20:36:44','2020-07-19 23:25:04'),(555,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','police, army, sovereignty custom.','','','c','','utme','2014',75,'Admin','2016-11-13 20:49:36','2020-07-14 15:18:46'),(556,'The process of taking part in political and public affairs can be termed political','recognition','culture','participation','socialization','','','d','','utme','2014',79,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:47'),(557,'Membership of a society is','conventional','mandatory','voluntary','constitutional','','','c','','utme','2014',113,'Admin','2016-11-13 20:49:40','2020-07-24 08:00:46'),(558,'In a democratic political system, the political sovereign is usually the','constitution','political parties','electorate','legislature','','','c','','utme','2014',66,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:51'),(559,'One basic feature of a monarchical form of government is that','separation of powers is absolute','members of the executive are elected','succession is through heredity','the ruler has a fixed tenure','','','c','','utme','2014',67,'Admin','2016-11-13 20:49:40','2020-07-15 19:34:58'),(560,'One main advantage of bicameral legislature is that it','makes for quick deliberation during emergencies','makes passage of bills easy','is less cumbersome to pass bills','is not easy to manipulate bills','','','d','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-07-22 21:44:01'),(561,'The court that has ultimate power to interprets the constitution is the','Supreme Court','Magistrate Court','High Court','Court of Appeal','','','a','','utme','2014',89,'Admin','2016-11-13 20:49:40','2020-07-26 12:04:26'),(562,'Unitary system of government is more suitable to a country','that is sparsely populated','that possesses a strong and modern army','with a robust and dynamic economy','with a relatively small area and a homogenous population','','','d','','utme','2014',81,'Admin','2016-11-13 20:49:40','2020-07-22 21:44:01'),(563,'An example of a country ruled by a constitutional monarch is','Uganda','Morocco','Italy','Libya','','','c','','utme','2014',80,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:56'),(564,'The development of a classless society is the goal of','conservatism','feudalism','liberalism','maxims','','','d','','utme','2014',73,'Admin','2016-11-13 20:49:40','2020-07-15 19:31:30'),(565,'A flexible constitution is one which is','easily amended','popular with the legislators','known to all the citizens','written by the parliament','','','a','','utme','2014',65,'Admin','2016-11-13 20:49:40','2020-07-14 15:18:58'),(566,'Which of the following is a feature of checks and balances?','judicial precedent','Judicial immunity','Judicial review','Code of conduct','','','c','','utme','2014',76,'Admin','2016-11-13 20:49:40','2020-07-22 00:06:56'),(567,'Laws made by military governments at the state level are called','decrees','bye-laws','edicts','acts','','','a','','utme','2014',75,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:00'),(568,'Citizenship is acquired by an alien through','registration','birth','conferment','naturalization','','','d','','utme','2014',75,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:01'),(569,'The officer responsible for announcing the result of an election is known as','ballot officer','presiding office','returning officer','electoral officer','','','c','','utme','2014',83,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:02'),(570,'The ultimate aim of political parties is to','implement people-oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','utme','2014',77,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:03'),(571,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their members','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:40','2020-07-23 11:40:48'),(572,'Which of the following is not a dimension of public opinion?','Polling','Orientation','intensity','Substance','','','a','','utme','2014',78,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:04'),(573,'The body that is responsible for the appointment, discipline, promotion and dismissal of civil servants is the','Ministry of Establishment','Bureau for Public Service Reforms','Civil Service Commission','Ministry of Labour and Productivity','','','c','','utme','2014',71,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:05'),(574,'In the pre-colonial Hausa political system, the Madawaki performed the function of','Minister of Education','Minister of Defense','Minister of Interior','Minister of works','','','b','','utme','2014',70,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:06'),(575,'In the Old Oyo Empire, the Ajele','ensured good governance of the districts','mobilized the army','was the Head of the army','ensured the safety of all trade routes','','','a','','utme','2014',79,'Admin','2016-11-13 20:49:40','2020-07-23 11:40:45'),(576,'The General Strike of 1945 was caused primarily by the','harshness in trade laws as it concerns the Africans','government’s rejection of a demand for an increase of 50 percent in the cost of living allowance','persistent implementation of discriminatory laws','disparity in the criteria for employment','','','a','','utme','2014',79,'Admin','2016-11-13 20:49:40','2020-07-14 15:19:08'),(577,'Before 1945, the component units of Nigeria were','districts','provinces','states','regions','','','b','','utme','2014',69,'Admin','2016-11-13 20:49:41','2020-07-23 11:40:46'),(578,'Nationalists agitation began in Nigeria with the','Lagos protest against water rate in 1908','introduction of indirect rule','annexation of Lagos in 1861','formation of West Africa Youth League','','','b','','utme','2014',59,'Admin','2016-11-13 20:49:41','2020-07-22 21:44:02'),(579,'The emergence of nationalism was essentially the result of the ills of','independence','slavery','colonialism','imperialism','','','c','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:11'),(580,'Which of the following nationalists was the founder of Nigeria’s first political party?','Abubakar Tafawa Balewa','Ahmadu Bello','Nnamdi Azikiwe','Herbert Macaulay','','','d','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:12'),(581,'The division of powers between the federal and regional governments into exclusive, concurrent and residual lists was done by the','1999 Constitution','Independence Constitution','Republican Constitution','1979 Constitution','','','b','','utme','2014',69,'Admin','2016-11-13 20:49:41','2020-07-23 11:40:45'),(582,'The Nigerian Independence Constitution was modified by the','1963 Constitution','1999 Constitution','1989 Constitution','1979 Constitution','','','a','','utme','2014',86,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:15'),(583,'The President of Nigeria was indirectly elected through secret ballot for a period of five years by the senate in','1983','1960','1963','1979','','','c','','utme','2014',58,'Admin','2016-11-13 20:49:41','2020-07-22 00:06:56'),(584,'The main function of the Federal Character Commission in Nigeria is','ensuring fair representation of all states in the public service','reviewing unfair administrative decisions','settling disputes among societies','providing free social services to the citizens','','','a','','utme','2014',64,'Admin','2016-11-13 20:49:41','2020-07-23 11:40:47'),(585,'The power of appointing the chairman of the Independent National Electoral Commission is vested in the','Judicial Council','Council of State','President','Senate','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:17'),(586,'The NCNC and the NPC facilitated the creation of the','Mid-West Region','Northern Region','Western Region','Eastern Region','','','a','','utme','2014',69,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:19'),(587,'One of the major problems of Nigerian federalism is','lack of revenue to cater for the demands of the federation','inadequate manpower to fill vacancies','imbalance in the structure and sizes of units of federation','pre-colonial administrative structure among the units of federation','','','c','','utme','2014',65,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:20'),(588,'Which of the following was done during the Gowon administration to reduce regional structural imbalance in the federation?','Appointment of ministers','Creation of states','Increase in revenue allocation','Formation of political parties','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:21'),(589,'A problem of public corporations in Nigeria is','choice of leadership','public control','emphasis on subsidies','wastage of resources','','','d','','utme','2014',82,'Admin','2016-11-13 20:49:41','2020-07-26 20:00:41'),(590,'One feature of public corporations that was weakened by privatization is','social control','national integration','social harmony','government control','','','d','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-28 00:06:45'),(591,'One of the main duties of the Local Government Service Commission is to','supervise and manage the personnel of local governments','conduct election into Local Council','create an enabling working environment for council workers','handle requests for the creation of more local governments','','','a','','utme','2014',84,'Admin','2016-11-13 20:49:41','2020-07-23 11:40:47'),(592,'The option A4 model was used in the conduct of the','2007 elections','1983 elections','1993 elections','1999 elections','','','c','','utme','2014',76,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:25'),(593,'The review of Nigeria foreign policy under the Murtala/Obasanjo regime was done by','Udoji Committee','Aboyade Committee','Adedeji Commission','Philips Commission','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:26'),(594,'Which of the following is a guiding principle of Nigeria’s foreign policy?','Total opposition to the Cold War','Posting of only carrier diplomats as envoys','Interference in the affairs of African countries','Decolonization of all African states','','','d','','utme','2014',80,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:27'),(595,'The Technical Aids Corps was established during the regime of','Olusegun Obasanjo','Sani Abacha','Ibrahim Babangida','Muhanmmadu Buhari','','','a','','utme','2014',69,'Admin','2016-11-13 20:49:41','2020-07-23 11:40:45'),(596,'The granting of asylum to Charles Taylor by Nigeria was to','protect Nigerians in Liberia','promote peace in Liberia','defy the western powers','Control Liberia','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:29'),(597,'Nigeria is regarded as a frontline state because she','sent policemen for peacekeeping in Namibia','assisted the liberation struggle in Southern Africa','assisted ECOMOG troops in Liberia','sent troops for peacekeeping Somalia.','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-22 21:44:01'),(598,'The reason behind Nigeria’s suspension from the Commonwealth in 1995 was','legal','political','economic','socio-cultural','','','b','','utme','2014',74,'Admin','2016-11-13 20:49:41','2020-07-22 21:44:02'),(599,'Commonwealth nations are represented in other member nations by','charge d’ affaires','ambassadors','high commissioners','attaches','','','c','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:49'),(600,'The UN succeeded the','Warsaw Pact','NATO','SEATO','League of Nations','','','d','','utme','2014',81,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:50'),(601,'The number of permanent members of the UN Security Council is','eight','five','six','seven','','','b','','utme','2014',70,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:51'),(602,'The Secretary General of the OAU holds office for a renewable period of','six years','three years','four years','five years','','','c','','utme','2014',78,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:52'),(603,'Former colonies of Britain belong to the association known as','OECD','NATO','European Union','Commonwealth','','','d','','utme','2014',60,'Admin','2016-11-13 20:49:41','2020-07-23 11:40:48'),(604,'Government refers to all the following, except','an institution of the state','the process of ruling a political community','the exercise of power and authority','the act of civil disobedience.','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:25','2020-07-14 15:19:54'),(605,'Government as the act of governing means the','activities of pressure groups and political parties','act of vetoing a bill','orders of judiciary and legislature','activities by which governmental policies are made and implemented','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:55'),(606,'Unwritten constitution means that the constitution is','not written down','based only on conventions.','not contained in any single book','in draft','','','c','','wassce','1988',62,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:56'),(607,'The delegation of Administrative Powers to the local units with the central supervision and control is called.','devolution','decentralization','deconcentration','centralization','','','a','','wassce','1988',92,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:57'),(608,'Which of the following is not the function of the government?','Building of roads, bridges, canals, etc.','Provision of education.','Maintenance of relations with other states.','Provision of all the material needs of all citizens.','','','d','','wassce','1988',76,'Admin','2016-11-13 21:14:26','2020-07-14 15:19:58'),(609,'A flexible constitution can only be amended by','two-third (2/3) majority vote in the legislature.','referendum.','three-quarter (3/4) majority vote in the legislature.','simple majority vote in the legislature.','','','d','','wassce','1988',42,'Admin','2016-11-13 21:14:26','2020-07-17 01:24:34'),(610,'Which one of the following countries has an unwritten constitution?','Great Britain','France','United States of America','Federal Republic of Germany','','','a','','wassce','1988',72,'Admin','2016-11-13 21:14:26','2020-07-17 01:24:34'),(611,'A rigid constitution is said to be best suited for a','Federal Government','Socialist','Military Government','Unitary Government','','','a','','wassce','1988',61,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:00'),(612,'Federal Election were held in Nigeria in','1946, 1951, 1954, 1979 and 1983','1954, 1959, 1964, 1979 and 1983.','1923, 1946, 1951, 1979 and 1983','1954, 1960, 1964, 1979 and 1983','','','b','','wassce','1988',66,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:01'),(613,'The two components of sovereignty are','the rule of law and fundamental human rights.','political power and political authority','political culture and political socialization.','political independence and supreme authority of the state within its territory.','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:02'),(614,'Nigeria broke diplomatic relations with Israel in 1973 because of Israeli.','recognition of Biafra.','occupation of Egyptian territory','refusal to give aid to Nigeria.','economic relations with South Africa.','','','b','','wassce','1988',71,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:03'),(615,'The United Nations Organization [UNO] has its headquarters in','Britain','USSR','USA','China','','','c','','wassce','1988',66,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:04'),(616,'The state is different from the government because','The state unlike the government is permanent','.\\nThe government is made up of powerful people.','Members of the government are elected.','The state is created by God.','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:26','2020-07-22 00:08:18'),(617,'A state is a special form of human association because it','has a legitimate monopoly of life and death penalties over its citizens','is the richest association in society.','has a constitution approved by the citizens','can punish law breakers','','','a','','wassce','1988',61,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:14'),(618,'Which of the following is not relevant to communism','Democracy','Violent revolution','Friedrich Engels','Private Enterprise.','','','d','','wassce','1988',54,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:15'),(619,'A Nigeria citizen can only be deprived of his citizenship if he is','condemned to death.','convicted by a Court of law','married to a foreigner','holding a dual citizenship.','','','d','','wassce','1988',60,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:16'),(620,'In the process of governing. OUTPUT refers to','the influence of pressure group','demand of the political system','the decision of the government.','the opinion of the electorate','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:26','2020-07-14 15:20:17'),(621,'Another word for red-tapism is','democracy','autocracy','idiosyncrasy.','bureaucracy','','','d','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-15 19:31:30'),(622,'Rule adjudication is the main function of the','Executive','President','legislature','judiciary','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:19'),(623,'The major problem that arose from the 1979 election centred around the','inability of many voters to find their names on the voters register','cancellation of election results in many constituencies because of alleged irregularities','inability of some dissatisfied candidates to seek redress in the Court of law.','controversy over the presidential election result.','','','d','','wassce','1988',74,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:20'),(624,'The following are the key factors which influence Nigeria’s foreign relations except','peaceful co-existence','economic dependence.','non-interference','respect for territorial integrity.','','','b','','wassce','1988',52,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:21'),(625,'The independent of Nigeria was in 1945 with the coming to power in Britain of','Conservative party','Tory party','Liberal party','Labour party','','','d','','wassce','1988',71,'Admin','2016-11-13 21:14:27','2020-07-16 09:26:40'),(626,'Which of the following is not an accepted way of resolving international conflict','Diplomacy.','Non-military use of force.','Propaganda','Nuclear war.','','','d','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-16 09:26:40'),(627,'The membership of the Council of States in Nigeria is made up of','Federal Ministers','State commissioners','State governors','the State Governors and the Head of State.','','','d','','wassce','1988',54,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:24'),(628,'The common wealth is','an economic organization','made up of all independent ex-colonies of Britain','made up of all countries who are friendly with Britain.','made up of independent European countries.','','','b','','wassce','1988',69,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:25'),(629,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known as the','Bales','Obas','Ogboni','Oyomesi.','','','d','','wassce','1988',86,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:26'),(630,'The declaration of a state of emergency in Western Nigeria was protected by the constitution of','1954','1951','1960','1963','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:26'),(631,'The primary purpose of the state is to','establish a system of law and order','train people to become good citizens','cater for all the needs of the citizens','ensure the self sufficiency of its people','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:27'),(632,'The Armed Forces Ruling Council came into existence under the','Buhari Administration','Gowon  Administration','Ironsi Administration','Babangida Administration','','','d','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:28'),(633,'Which of the following is not a specialized agency of the United Nations Organization?','World Health Organization','The Food and Agriculture Organization','The international Labour Organization','General Assembly','','','d','','wassce','1988',84,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:29'),(634,'The creation of the office of the Prime Minister in Nigeria was accomplished in','1951','1954','1957','1959','','','c','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:30'),(635,'Which of the following is not a function of a party secretariat?','Electing the leader of the party','Organizing party conferences','Publishing the party’s manifesto','Planning party strategy to win election','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:31'),(636,'The first Military President of Nigeria is','Lt. General Olusegun Obasanjo','Major General J.T.U. Aguiyi-Ironsi','Major General Ibrahim Babangida','General Murtala Muhammed','','','c','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:32'),(637,'The following factors favoured the introduction of indirect rule in Nigeria except the','Shortage of manpower','Shortage of funds','Existence of a system of taxation','Existence of educated elites','','','d','','wassce','1988',63,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:33'),(638,'The psychological support a regime gets from its citizens. If they believe the regime is right and ought to be obeyed is known as','Sovereignty','power','authority','legitimacy','','','d','','wassce','1988',48,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:34'),(639,'The voluntary activities of members of a society in the selection of rulers is known as','political participation','political socialization','political decision','political culture','','','a','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:35'),(640,'Residual powers under the Nigerian independence constitution were the powers exercised by','the Federal Government','the Regional Governments','the Local Government','both the Federal and Regional Governments','','','b','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:36'),(641,'The highest court of appeal under the Republican constitution of Nigeria was the','Federal High Court','Judicial Committee of the Privy Council','Regional court of Appeal','Supreme Court','','','d','','wassce','1988',58,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:37'),(642,'Nigeria became a federation of 19 states in','1875','1976','1967','1978','','','b','','wassce','1988',60,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:38'),(643,'A popular form of proportional representation is','communal representation','single transferable vote','the alternative vote','the second ballot','','','a','','wassce','1988',62,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:39'),(644,'A political concept that is composed of the attitudes, beliefs, emotions and values of a society is called political','culture','single transferable vote','authority','socialization','','','a','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:40'),(645,'flexible constitution is advantageous because it','guarantees political stability','prevents the passing of hasty bills by the legislature','can cope with emergency periods','allows for continuity','','','c','','wassce','1988',63,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:41'),(646,'The Economic community of West Africa state (E.C.O.W.A.S) is','an economic association','a political association','a cultural association','a social association','','','a','','wassce','1988',58,'Admin','2016-11-13 21:14:28','2020-07-17 15:18:54'),(647,'Which of the following is not an aim of the Organization of African Unity (O.A.U)','Promotion of unity and solidarity among African states','Co-operation of efforts to achieve a better life for the African people','Defense of the sovereignty and independence of African state','Enthronement of democratic governments in Africa.','','','d','','wassce','1988',62,'Admin','2016-11-13 21:14:28','2020-07-16 09:36:50'),(648,'It is the duty of a government to perform all the following functions, except','Preventing internal disorder','Ensuring security of life and property','Providing basic welfare services','Providing all the needs of its citizens','','','d','','wassce','1988',70,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:43'),(649,'Which of the following concepts is out of place?','Fascism','Welfarism','Totalitarianism','Authoritarianism','','','b','','wassce','1988',76,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:44'),(650,'The primary objective of all political parties is to','Promote the general interest of members of the public','Eradicate corruption in public life','Control the government','Campaign for vote','','','c','','wassce','1988',58,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:45'),(651,'The French policy of Assimilation','was a device to transfer technology to Africa','was the same in theory as the British policy of indirect rule','was aimed at converting Africans to Frenchmen','enabled the French to stay in Africa','','','c','','wassce','1988',62,'Admin','2016-11-13 21:14:28','2020-07-16 09:36:50'),(652,'Military Governors were members of the Supreme Military Council under the','Murtala Mohammed Regime','Yakubu Gowon Regime','Ibrahim Babangida Regime','Olusegun Obasanjo Regime','','','b','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:47'),(653,'The use of forced labour was one of the features of','British colonial policy','French colonial policy','American colonial policy','Divide and rule policy','','','b','','wassce','1988',70,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:48'),(654,'The controversy over the 1979 Presidential election result was','over the dispute on the conduct of the election','because educated Nigerians did not approve who received the number of votes','due to the interpretation of ¼   of the vote cast in 2/3 of all the states in the Federation.','because the winning candidate did not pay his taxes as and when due in the past three years.','','','c','','wassce','1988',80,'Admin','2016-11-13 21:14:28','2020-07-28 00:06:45'),(655,'All the following were frontline fighters for Nigeria’s Independence except','Obafemi Awolowo','Nnamdi Azikiwe','Lateef Jakande','Amino Kano','','','c','','wassce','1988',76,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:50'),(656,'It is argued that most of the new States of Africa cannot remain faithful to the doctrines of non-alignment mainly because of','corruption','ethnic problems','bad leadership','poor economy','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:51'),(657,'The first political party in Nigeria was','National Council of Nigerian Citizens (N.C.N.C)','Nigerian National Democratic Party (N.N.D.P)','Action group (A. G)','Northern Peoples Congress (N.P.C)','','','b','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:52'),(658,'To which of these countries did Nigeria send peacekeeping force?','South Africa','Angola','Chad','Namibia','','','c','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:53'),(659,'In the federation, the purpose of enumerating the powers of the central government is to','ensure efficient administration','ensure greater unity','reduce the financial burden of the units','limit its powers against those of the units','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:53'),(660,'The ultimate aim of a communist system of government is \tthe distribution of goods and services according to','age','qualification','party loyalty','need, want and ability','','','d','','wassce','1988',78,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:54'),(661,'Under what system of government does the state require ownership and control of the means of production for its use in benefiting the population?','Capitalism','Socialism','Feudalism','Welfarism','','','b','','wassce','1988',63,'Admin','2016-11-13 21:14:28','2020-07-22 00:08:18'),(662,'The question of civil war was raised for the first time at the \tmeeting of the O.A.U in September 1967 in','Kampala','Addis Ababa','Lagos','Kinshasa','','','d','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:56'),(663,'Nigeria objected to the discussion of the civil war in the O.A. U. summit on the grounds that','it amount to interference in its internal affairs','some African countries recognized Biafra','Tanzania and Ivory Coast recognized Biafra','the resolution of the conflict was difficult','','','a','','wassce','1988',57,'Admin','2016-11-13 21:14:28','2020-07-14 15:20:57'),(664,'Government is the machinery established to manage the affairs of','rulers','aliens','the civil service','the state','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:41','2020-07-14 15:20:58'),(665,'The judicial organ of government is the body which','implements the law','makes the law','punishes lawmakers','interprets the law','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:42','2020-07-14 15:20:59'),(666,'Which of the following is a false description of the first Nigeria Prime Minister? He','was first among equals','presided over the cabinet','was the Head of Government','exercised the prerogative of mercy','','','d','','wassce','1989',75,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:00'),(667,'The twelve state structure was created in Nigeria in','1965','1966','1967','1974','','','c','','wassce','1989',69,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:01'),(668,'The laws which the state legislators make normally pass through','the commissioner','the process of deliberations','the judiciary','some committees in the civil service','','','b','','wassce','1989',97,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:02'),(669,'In the parliamentary system of government, ministers are','chosen from the House as well as outside','collectively responsible to parliament','representatives of various interests in the country','not members of the legislature','','','b','','wassce','1989',74,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:03'),(670,'Any type of restricted franchise is a violation of principle of','constitutionalism','sovereignty','political equally','popular election','','','c','','wassce','1989',60,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:04'),(671,'Which of the following is not the responsibility of the Electoral Commission in Nigeria?','Swearing in of members of the House of Assembly','Counting and publication of election results','delimitation of constituencies','Compilation of electoral register','','','a','','wassce','1989',71,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:05'),(672,'Which of the following is not civic obligation of a citizen?','Obedience to law','payment of taxes','voting during elections','freedom of conscience and religion','','','d','','wassce','1989',77,'Admin','2016-11-13 21:30:42','2020-07-15 19:31:30'),(673,'The study of Government offers an individual all the following, except a','knowledge of his rights and duties','training in good citizenship','knowledge of the processes of government','training to become a judge','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:07'),(674,'Voting started in Nigeria in 1923 because the Clifford Constitution of 1922 granted','decolonization','independence','an elective principle','self-government','','','c','','wassce','1989',75,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:08'),(675,'The organ of the UNO which can impose mandatory sanctions on any of its members is the','International Court of Justice','Economic and Social Council','General Assembly','Security Council','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:09'),(676,'A unified - local government system was adopted in Nigeria under the','Tafawa Balewa administration','Yakubu Gowon administration','Shehu Shagari administration','Murtala / Obasanjo administration','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:10'),(677,'The two parties which formed the coalition government in 1959 were the','NPC and the NCNC','NCNC and the AG','NPC and the NNA','PRP and the UPGA','','','a','','wassce','1989',72,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:11'),(678,'Which of the following is not written into independence constitution of 1960?','Fundamental human rights','Exclusive powers','Concurrent list','Role of political parties','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:12'),(679,'The process of depriving persons of the right of voting is known as','enfranchisement','disqualification','dismissal','disenfranchisement','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:13'),(680,'The predominant influence of Northern Nigeria in the First Republic violated the federal principle of','effective co-operation among the constituent units','geographical contiguity','unity','absence of marked inequalities among the component units','','','d','','wassce','1989',60,'Admin','2016-11-13 21:30:42','2020-07-14 15:21:14'),(681,'Bicameralism refers to','a one chamber legislature','the process of voting in the legislature','the upper chamber in a legislature','a two-chamber legislature','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:15'),(682,'The head of state under the independence constitution of Nigeria was','an absolute monarch','a constitution monarch','imposed by the British','invested with executive power','','','b','','wassce','1989',66,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:16'),(683,'The principle of separation of powers implies that the three main organs of government work','separately','independently but co-operatively','against one another','reluctantly and gradually for the executive','','','b','','wassce','1989',60,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:17'),(684,'The emergency powers conferred on the Federal Government under the independence constitution was first exercised in the','Western Region','Mid-Western Region','Eastern Region','Northern Region','','','a','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:18'),(685,'A sovereign state in one','whose constitution can only be changed by a military government','where its citizens can speak without fear or favour','in which sovereignty is invested in the military','whose government decisions are made independent of foreign interference','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:19'),(686,'Which of the following is not a component of political culture?','Attitudes','Beliefs','Emotions','Age','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:20'),(687,'Representative democracy is characterized by','free election and proper register of voters','unlimited expenditure of political parties','a politically educated electorate','representation of the poor only','','','a','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:21'),(688,'The ratification of the appointment and dismissal of an Emir in the pre-colonial Fulani Empire was done by the','Empire of Lafiagi and the Etsu of pategi','Emirs of Kano and Katsina','Emirs of Gwandu and Sokoto','Emir of llorin','','','c','','wassce','1989',60,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:22'),(689,'The primary function of a legislature is the','appointment of the president','making of laws','voting of bills','monitoring of the judiciary','','','b','','wassce','1989',61,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:22'),(690,'Which of the following title among the Igbos in the pre-colonial era required substantial wealth before one could acquire it','Ofo','Okpara','Ozo','Eze','','','c','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-07-23 23:51:42'),(691,'According to Marxist theory, those who own and control the means of production in a capitalist society are','exploiters','colonialists','workers','bourgeoisie','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:24'),(692,'The head of the Oyomesi in the old Oyo Empire was','Aremo','Are Onakakanfo','Olowo','Bashorun','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:25'),(693,'The head of the Nigerian Mission to the Commonwealth of Nations is','an Ambassador','a Consular','the Minister of External Affairs','a High Commissioner','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:26'),(694,'While political parties aim at forming a government, pressure groups aim at','imposing a military rule','causing social unrest','influencing government decisions','controlling a nation’s economy','','','c','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:28'),(695,'Nigeria does not maintain diplomatic relations with South Africa because of the latter’s','industrial policy','apartheid policy','foreign policy','agricultural policy','','','b','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:28'),(696,'Which of the following countries does not operate a federal constitution?','USA','Canada','Nigeria','France','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:29'),(697,'Socialism developed as a protest against the evils of','monarchy','oligarchy','feudalism','capitalism','','','d','','wassce','1989',66,'Admin','2016-11-13 21:30:43','2020-07-26 20:00:41'),(698,'The major advantage of the secret ballot is that','it is faster than other systems','nobody can be prevented from voting','it ensures the anonymity of each voter','losers can ask for another secret vote','','','c','','wassce','1989',84,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:31'),(699,'One of the first action of military governments when they take over power in Nigeria is to','detain all the politicians','appoint new ministers and commissioners','tour the country to explain why they have taken over','suspend the constitution','','','d','','wassce','1989',54,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:32'),(700,'A parliamentary-cabinet system of government is practiced in','Canada','Nigeria','the Soviet Union','all European countries','','','a','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:33'),(701,'Foreign policy refers to','a policy made by a foreign country','a policy made by a country for foreigners','a policy made by a country when it is at war','the general principles which govern a state’s international behaviour','','','d','','wassce','1989',86,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:34'),(702,'The constitution of the Federal Republic of Nigeria','promotes unity in diversity','allows for the dominance of the minority ethnic groups','concentrates governmental power at one level of government','advances the interest of the rich','','','a','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-07-16 09:36:50'),(703,'Which of the following is not an objective in foreign policy?','Prestige','Large population','Territorial integrity','Survival','','','b','','wassce','1989',56,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:36'),(704,'The principle of anonymity of civil servants means that they are','career officers','not the servants of a particular government','trained for the duties they perform','not credited or blamed for anything they do','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:37'),(705,'During the 1964 Federal elections there was a total boycott of voting in','the Western Region','Lagos','the Northern Region','the Eastern Region','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:38'),(706,'Which of the following is not a pressure group? The','Nigerian Farmers’ Council','Nigerian Union of Teachers','National Party of Nigeria','Academic Staff Union of Universities','','','c','','wassce','1989',57,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:39'),(707,'Which of the following is not a public corporation? The','Nigerian Ports Authority','National Sports Commission','National Youth Service Corps','Nigerian Railway Corporation','','','c','','wassce','1989',66,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:39'),(708,'Which of the following is not an academic discipline in which a student of Government can specialize','Public Administration','Local Government','Political Territory','Public Education','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:43','2020-07-22 00:08:18'),(709,'The Republican Constitution of 1963 was indigenous because it was approved by','a referendum','the representatives of the people in parliament','the British parliament','the colonial government','','','b','','wassce','1989',63,'Admin','2016-11-13 21:30:43','2020-07-14 15:21:41'),(710,'Local government reforms were carried out by the Federal Military Government in','1966','1967','1970','1976','','','d','','wassce','1989',60,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:42'),(711,'With which country did Nigeria break diplomatic relations in 1963 for exploding a nuclear device in the Sahara?','The Soviet Union','The U.S.A','China','France','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:43'),(712,'The first political party in Nigeria was formed after the introduction of the','Richard constitution','Clifford constitution','Bourdillon constitution','Macpherson constitution','','','b','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:44'),(713,'Which of the following did not formally recognize Biafra’ as an independent state?','Sierra Leone','Tanzania','Gabon','Zambia','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:16'),(714,'When there is a conflict between the regional and federal laws under the concurrent legislative list, the','Federal laws would prevail','Federal laws would be declared null and void','regional laws would prevail','Head of State would settle the conflict','','','a','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:16'),(715,'Nigeria hosted the meeting of Commonwealth Heads of State in','1965','1966','1967','1968','','','b','','wassce','1989',62,'Admin','2016-11-13 21:30:44','2020-07-14 11:56:17'),(716,'A fascist regime is both','representative and accountable','responsive and responsible','fair and legitimate','authoritarian and totalitarian','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:48'),(717,'Which of the following is not a function of the Secretary-General of the United Nations Organization?','Supervising the Secretariat','Interpreting the treaties','Alerting the Security Council on any matter that may threaten international peace','Making annual report','','','b','','wassce','1989',60,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:49'),(718,'Capitalism often encourages','Private ownership of the means of production','Deconcentration of political and economic powers in the same hands','A centrally planned economy','Public ownership of all forms enterprises','','','a','','wassce','1989',68,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:50'),(719,'Which of the following African countries has diplomatic relations with South Africa?','Malawi','Zambia','Gabon','Tanzania','','','a','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:51'),(720,'Citizens who are legally qualified to vote form','Political parties','A Trade Union Congress','Members of the House of House Assembly','The electorate','','','d','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:52'),(721,'Election among candidates from the same party before the final elections are called','Primaries','Running Mates','Second ballots','Party conventions','','','a','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-07-14 01:58:08'),(722,'Which of the following countries is not a member of the Economic Community of West African States (ECOWAS)?','Nigeria','Cameroun','Ghana','Togo','','','b','','wassce','1989',59,'Admin','2016-11-13 21:30:44','2020-07-26 20:00:41'),(723,'The international organization formed after the Second World War to guarantee international peace and security is the','World Bank','United Nations Organization','League of Nations','British Commonwealth of Nations','','','b','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-07-14 02:11:20');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `history` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `history` VALUES (1,'Islam was introduced in Northern Nigeria  ','before the 13th century  ','in the 17th century  ','in the 19th century  ','in the 18th century ','','','a','','posr-utme-aaua','2013',714,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:52'),(2,'Lagos became the crown colony in  ','1914','1861','1886','29-Mar-05','','','c','','posr-utme-aaua','2013',714,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:53'),(3,'In the pre-colonial Igbo political system, which of the following was the most democratic organ of government','The Umand ','Eze  ','Isu  ','Ohanaeze','','','d','','posr-utme-aaua','2013',743,'Admin','0000-00-00 00:00:00','2020-07-22 09:43:07'),(4,'A historical feature of the legislative council that met in 1923 was that for the first time it  ','included the official members who were Nigerians  ','included only British officials  ','included elected African members ','acted in a deliberative capacity  ','','','d','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:55'),(5,'When was the emirate system of administration introduced in Northern Nigeria? ','19th century ','20th century ','18th century  ','17th century ','','','c','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-22 09:52:30'),(6,'Pre-colonial Igbo society was  ','centralised ','acephalous','feudal  ','capitalist ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:57'),(7,'The Colonial Administration in Nigeria was  ','Authoritarian','Democratic  ','A&B  ','None of the above ','','','a','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:58'),(8,'In the traditional Hausa-Fulani political system, political authority was vested in the  ','Emir  ','Talakawa  ','Alkali ','Emirate Council ','','','a','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:21:59'),(9,'In the Oyo empire, the Alaafin was ','an absolute monarch  ','popularly elected  ','a constitutional  monarch ','worshipped as deity ','','','a','','posr-utme-aaua','2013',732,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:00'),(10,'The concept of Indirect Rule in Nigeria is usually associated with  ','Sir George T.  Goldie  ','Claude Macdonald  ','Lord Lugard  ','Consul Philip ','','','c','','posr-utme-aaua','2013',761,'Admin','0000-00-00 00:00:00','2020-07-25 10:09:13'),(11,'The Lagos Colony and the Southern Protectorate of Nigeria were joined in the year ','1904','1906','1910','1914','','','b','','posr-utme-aaua','2013',719,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:02'),(12,'The Committee that recommended Abuja as the New Federal Capital was headed by  ','Graham Douglas  ','Mamman Nasir  ','Rotimi Williams  ','Akinola Aguda ','','','d','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:03'),(13,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known ','Ogbon','Oyo Mesi ','Baale','Ohanaeze','','','b','','posr-utme-aaua','2013',748,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:04'),(14,'Galadima in the emirate refers to  ','a village head  ','the office in charge of the army  ','the administrator of the capital city  ','a judge ','','','c','','posr-utme-aaua','2013',766,'Admin','0000-00-00 00:00:00','2020-07-26 18:43:32'),(15,'Which of the following was the last to win Independence from colonial rule?  ','Cote d I oi e','Algeria  ','Tanzania  ','Angola ','','','d','','posr-utme-aaua','2013',751,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:06'),(16,'Which of the following made the earliest contact with the Nigerian societies?  ','The Portuguese ','The Germans  ','The British ','The French','','','a','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:07'),(17,'In the pre-colonial Yoruba society, the power of the Oyo Mesi were checked by  ','Baale  ','Ogboni  ','Are Ona Kankafo  ','Bashorun ','','','d','','posr-utme-aaua','2013',720,'Admin','0000-00-00 00:00:00','2020-07-22 10:00:40'),(18,'The Ogboni Cult in the pre-colonial Yoruba political system played the role of the  ','judiciary  ','executive  ','police  ','legislation ','','','a','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-27 05:15:10'),(19,'The Aro system in Igboland was a ','Political organisation  ','Commercial organisation  ','Religious organisation  ','Imperial organisation ','','','c','','posr-utme-aaua','2013',736,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:26'),(20,'Which of the following formalised colonial penetration into Africa?  ','Paris Treaty  ','Berlin Conference  ','Lagos Treaty  ','Cape Coast ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:35'),(21,'An acephalous pre-colonial system is best represented by the  ','Oyo Empire  ','Igbo political organisation  ','Ijaw political organisation  ','Benin Empire ','','','b','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:36'),(22,'The use of forced labour was one of the features of  ','British colonial policy  ','French colonial policy  ','American colonial policy  ','divide and rule ','','','b','','posr-utme-aaua','2013',733,'Admin','0000-00-00 00:00:00','2020-07-27 23:34:06'),(23,'During the early colonial period in Nigeria, the governor ruled the protectorate by  ','Crown Colony Orders  ','Proclamation  ','Order?in-Council  ','The Act of Parliament ','','','d','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:38'),(24,'The ratification of the appointment and dismissal of an emir in the pre-colonial Fulani empire was done by','Emir of Kano  ','Emir of Sokoto  ','Emir of Gwandu  ','B & C','','','d','','posr-utme-aaua','2013',738,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:39'),(25,'In the Hausa/Fulani traditional political system jingali was  ','one of the sources of revenue to cattle owners  ','tax paid on cattle  ','a property tax paid to land owners ','a type of flat rate tax ','','','b','','posr-utme-aaua','2013',722,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:40'),(26,'Which of the following titles among the Igbos in the pre-colonial era required substantial wealth before one could acquire it?','Obi  ','Eze  ','Ozo  ','Ofo ','','','c','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:41'),(27,'Nigerian educated elites agitated against colonial rule  ','by bribing colonial governors  ','through lobbying  ','through newspapers ','by fighting civil war ','','','c','','posr-utme-aaua','2013',746,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:42'),(28,'In the absence of the existence of traditional rulers in the Igbo communities the British Colonial administration appointed','Eze  ','Obi  ','Ozo  ','Warrant chiefs ','','','d','','posr-utme-aaua','2013',739,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:43'),(29,'The colonial government whose constitution introduced elective principle into Nigerian politics was  ','Arthur Richards  ','Fredrick Lugard  ','Hugh Clifford  ','John Macpherson ','','','c','','posr-utme-aaua','2013',722,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:44'),(30,'The introduction of indirect rule in eastern Nigeria led to the Aba Women Riots of  ','1914','1929','1935','1916','','','b','','posr-utme-aaua','2013',747,'Admin','0000-00-00 00:00:00','2020-07-27 06:47:31'),(31,'A chief could be deposed in the pre-colonial era if he  ','violated the written constitution  ','persistently neglected the advice of the elders  ','refuse to collect taxes for the Britishs  ','married too many wives ','','','b','','posr-utme-aaua','2013',713,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:46'),(32,'Which of the following in the pre-colonial era had integrated political structure  ','Tiv  ','Ilaje ','Jukun  ','Nupe ','','','d','','posr-utme-aaua','2013',705,'Admin','0000-00-00 00:00:00','2020-07-26 18:52:19'),(33,'The Yoruba, Edo, Nupe, and Ibo languages are classified as belonging to the  ','Arabic  ','Kwa-sub group  ','Kaw sub group  ','Kai sub group ','','','b','','posr-utme-aaua','2013',728,'Admin','0000-00-00 00:00:00','2020-07-25 16:50:33'),(34,'Archaeology findings in Ugbo-Ukwu are suggestive of rich  ','Agricultural potentials  ','cultural civilization  ','mineral deposit  ','all of the above ','','','b','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:55'),(35,'Geographically, Nigeria lies between latitudes  ','40 and 140  ','4 and 100   ','140 and 4  ','all of the above ','','','a','','posr-utme-aaua','2013',754,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:56'),(36,'Ali Ghaji s  eig  e ded i  Ka e  Bo o in  ','1501','1502','1503','1504','','','d','','posr-utme-aaua','2013',740,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:57'),(37,'All of the following are renowned historians except  ','Prof Ade Ajayi ','Prof Toyin Falola  ','Prof Obaro Ikime  ','Prof Akin Oyebade ','','','d','','posr-utme-aaua','2013',756,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:58'),(38,'In Yorubaland, the concept which derived mainly from the wave of dispersal that attended the process of state formation is known as','Omo iya  ','Ebi  ','Oduduwa  ','all of the above ','','','b','','posr-utme-aaua','2013',734,'Admin','0000-00-00 00:00:00','2020-07-14 15:22:59'),(39,'Oron and Ekoi people of the Cross River Basin might have migrated to Nigeria through the  ','sea  ','mountain  ','sky  ','none ','','','a','','posr-utme-aaua','2013',696,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:00'),(40,'The Portuguese first visited Benin around  ','1485','1484','1486','1483','','','a','','posr-utme-aaua','2013',758,'Admin','0000-00-00 00:00:00','2020-07-26 09:23:40'),(41,'Songhai Empire fell in... ','1591','1691','1791','1891','','','a','','posr-utme-aaua','2013',721,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:02'),(42,'The Head of the Sokoto Caliphate was known as  ','Sultan  ','Caliph  ','Emir  ','Alhaji ','','','b','','posr-utme-aaua','2013',745,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:03'),(43,'The Ekitiparapo war lasted for  ','10 years  ','16 years  ','100years','50 years ','','','b','','posr-utme-aaua','2013',751,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:04'),(44,'Yoruba inter-state wars lasted for  ','16 years  ','10 years  ','100 years  ','50 years ','','','c','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:05'),(45,'The Sokoto Jihad led to the formation of Islamic States in following States except  ','Senegal  ','Mali  ','Chad  ','Togo ','','','d','','posr-utme-aaua','2013',760,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:06'),(46,'Be li   Af i a   o fe e e took pla e et ee  ','1884 and 1885  ','1885 and 1886  ','1886 and 1887  ','1883 and 1884 ','','','a','','posr-utme-aaua','2013',726,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:07'),(47,'???. and slave raiding were complementary exercises among the Yoruba  ','farming  ','hunting  ','war  ','diplomacy ','','','c','','posr-utme-aaua','2013',713,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:08'),(48,'The 1804 Jihad in Northern Nigeria could be referred to all except  ','Sokoto Jihad  ','Uthman Dan Fodiyo Jihad  ','Fulani Jihad  ','Seku Ahmadu Jihad ','','','d','','posr-utme-aaua','2013',730,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:09'),(49,'Samori Toure was captured in 1893 by  ','French imperialism  ','British imperialism  ','Germany imperialist  ','none of the above ','','','a','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:10'),(50,'The first independence day speech in Nigeria was given by??.','Muhammadu Buhari','Obafemi Awolowo','Tafawa Balewa','Nnamdi Azikwe','','','c','','posr-utme-aaua','2013',724,'Admin','0000-00-00 00:00:00','2020-07-14 15:23:11');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `image` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `url` text NOT NULL,\n  `name` varchar(200) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `insurance` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `insurance` VALUES (1,'Which of the following policies will prevent loss of home if the wage earner dies?','Term assurance','Endowment assurance','Mortgage insurance','Whole life assurance','','','c','','wassce','2014',76,'Admin','2017-01-09 12:28:06','2020-07-14 15:23:56'),(2,'One of the objectives of buying a term assurance policy is to','protect  dependants  in  case  of  death  of  the  life assured','reduce financial burden of the life assured','supplement retirement income  of  the  life  assured','maximize savings from the life assured','','','a','','wassce','2014',69,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:57'),(3,'An assurance policy taken by experts to cover possible negligence arising from their duties is','consequential loss','professional indemnity','cargo','freight','','','b','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:58'),(4,'The class of insurance that  covers  legal  liability to a third party for bodily injury and property damage caused by goods supplied is','employer’s liability','public liability','professional indemnity','products liability','','','d','','wassce','2014',80,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:59'),(5,'The  type  of  cover  that  is  designed  against  loss  of earnings following loss caused by fire and special perils is','product guarantee insurance','materials damage cover','fire damage policy','consequential loss cover','','','d','','wassce','2014',50,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:00'),(6,'Which  of  the  following  risks  is  covered  by  insurance policy?','An investment loss on the stock market','Dishonesty of an employee leading to fraud','Failure of a business venture','Rise and fall of prices of goods in the market','','','b','','wassce','2014',70,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:01'),(7,'In  classification  of  risks, what is the name given to a risk  where  the  causes  of  events are linked to factors \tthat are due to the society we live in?','Dynamic risk','Particular risk','Speculative risk','Fundamental risk','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:02'),(8,'The evidence of the insurance contract is','proposal form','policy','schedule','endorsement','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:03'),(9,'The right of the insurer to step in place of the insured for the purpose of recovering damages is called','representation','indemnity','subrogation','contribution','','','c','','wassce','2014',74,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:04'),(10,'Which of the following is a contract of benefit?','Personal accident insurance','Business interruption insurance','Fire insurance','Money insurance','','','a','','wassce','2014',66,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:05'),(11,'Which of the following is not a feature of insurable interest?','Loss suffered','subject matter','Legal relationship','Financial value','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:06'),(12,'A prospective insured in an engineering insurance may be advised to purchase one of the following classes of insurance','fire cover','boiler cover','tempest cover','equipment cover','','','d','','wassce','2014',77,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:07'),(13,'The class of non-life insurance policy where cover note is issued is','fire insurance','burglary insurance','motor insurance','fidelity guarantee','','','c','','wassce','2014',70,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:08'),(14,'Abandonment is mostly applicable to','marine insurance','motor insurance','fire insurance','engineering insurance','','','b','','wassce','2014',82,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:09'),(15,'Which of the following is not a benefit covered under a personal accident policy?','Death','Temporary disablement','Loss of baggage','Medical expenses','','','c','','wassce','2014',72,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:10'),(16,'In the preparation of food for eat - in - customers, the cooks made a mistake in using excess quantity of an \tingredient. A customer ate and  suffered  poisoning. \tWhich policy of the operator would pick this liability?','Public liability','Personal liability','All risks insurance','Loss of profit insurance','','','a','','wassce','2014',75,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:11'),(17,'How much premium will the insurer charge?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','b','','wassce','2014',88,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:12'),(18,'How  much  premium  will  the  insurer  return  to  the insured?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','a','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:13'),(19,'A policy that combines cover for many perils as a single policy  to  suit  the  insurance  needs of  an insured is','accident policy','protection policy','paternal policy','packaged policy','','','d','','wassce','2014',77,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:14'),(20,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:15'),(21,'The document that sets out the list of items covered in insurance is a','manifest','bill of lading','policy list','policy specification or form','','','d','','wassce','2014',94,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:16'),(22,'One of the information contained in a motor insurance cover note is the','behaviour of the insured','occupation of the insured','commencement date','previous and present insurance history','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:17'),(23,'In property insurance, which of the following is not a direct loss?','Reinstating the property destroyed','Replacing the property destroyed','Repairing the property damaged','Replacing third party property damaged','','','d','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:18'),(24,'Ade insured his property for N= 350,000.00. The property is subject to average condition. He suffered a loss amounting to N= 30,000.00 with the value of the property at the time of loss to be N= 370,000.00. How much will the insurer pay?','N= 14,583.33','N= 28,378.38','N= 30,000.00','N= 31,714.29','','','d','','wassce','2014',70,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:20'),(25,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of dispute','resolution of policy','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:21'),(26,'An insurer who buys reinsurance cover is insured as','retrocession','retrocedant','cession','cadent','','','d','','wassce','2014',72,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:22'),(27,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','wassce','2014',84,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:23'),(28,'Family income option in a life policy provides that','the beneficiary will be paid for life','the beneficiary receives the policy sum','interest will be added monthly','salary will be paid to the insured until death','','','b','','wassce','2014',76,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:24'),(29,'A provision in a policy that exempts an insurer from liability if the loss is less than a certain amount is','excess','transfer','lay days','franchise','','','a','','wassce','2014',90,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:25'),(30,'Which of the following policies is a peril covered under a standard fire policy?','Lightning','Storm','Civil commotion','Escape of oil','','','a','','wassce','2014',65,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:34'),(31,'A type of reinsurance where cession and acceptance is obligatory is','treaty','captive','facultative','retrocession','','','a','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:35'),(32,'A contract sold  by  insurance companies that  pay  a monthly or  quarterly income  benefit for the  life  of a person is','endowment','annuity','income','freight','','','b','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:36'),(33,'George effected two personal accident policies. The first policy provides N= 25,000.00 cover for loss of limb. The second policy provides N= 30,000.00 cover for loss of limb. What is the total amount that  George  will receive in the event of a valid loss of limb claim?','N= 5,000.00','N= 25,000.00','N= 30,000.00','N= 55,000.00','','','a','','wassce','2014',76,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:37'),(34,'Renewal notice is  used by  insurers  to  remind the insured of the','reduction of cover','continuation of cover','expiration of cover','increase of cover','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:38'),(35,'Risk Net Insurance Brokers Limited placed a business with an insurance company, in return the broker will be entitled to','fees','commission','profit','revenue','','','b','','wassce','2014',68,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:38'),(36,'The professional service required for effective claims administration by insurers would be provided by','loss assessors','risk managers','loss adjusters','claims consultants','','','c','','wassce','2014',73,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:40'),(37,'Which  of the following activities is  not a  function of the  Chartered  Insurance  Institute  of  Nigeria?','Setting a standard for members','Promoting Professional growth','Promoting the interest of insurers','Specifying professional qualification','','','d','','wassce','2014',79,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:41'),(38,'Effective supervision and licensing of insurance firms in Nigeria is the function of','National Insurance Commission','Institute of Loss Adjusters of Nigeria','Chartered Insurance Institute of Nigeria','Nigerian Corporation of Registered Insurance Brokers','','','a','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:41'),(39,'The payment made when the insured is  not  entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','wassce','2014',84,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:42'),(40,'The owner of a life assurance policy who enters into an agreement to sell the ownership of the policy and beneficiary rights upon the death of the insured is called','an underwriter','a aviator','a factor','an assessor','','','d','','wassce','2014',78,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:43'),(41,'A small fixed sum retained by the insured in the form of a claim is','slip','severity','excess','frequency','','','b','','wassce','2014',74,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:44'),(42,'A voucher signed by the insured before collecting his claim is','money collect receipt','discharge voucher','payment receipt','pay - in - slip','','','b','','wassce','2014',83,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:45'),(43,'To which of the following parties does the principle of utmost good faith apply in a contract of insurance?','The proposer only','The insurer only','The insurer and proposer','The third party and insured','','','c','','wassce','2014',81,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:46'),(44,'Insurers A and B cover a risk at the ratio of 2:5 for the sum insured of N= 1,800. How much would insurer  A get from the risk?','N= 1,285.00','N= 771.00','N= 514.00','N= 180.00','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:47'),(45,'The consideration paid for insurance contract is','money','commission','premium','fee','','','c','','wassce','2014',71,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:48'),(46,'The alternative to seeking for surrender value in a life assurance contract is','automatic non - forfeiture','revival condition','paid-up policy','standing order','','','c','','wassce','2014',75,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:49'),(47,'Which of the following is a risk covered in endowment assurance?','Permanent disability','Bodily injury','Temporary disability','Death cover','','','d','','wassce','2014',70,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:50'),(48,'A <em>revival clause</em> in a life policy will allow an insured to revive a policy that lapsed on account of nonpayment of premium, provided the insured','can prove he is sick at the time','cannot fall sick after the policy','can prove he is in good health','can recover from the ill health','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:51'),(49,'Which of  the  following  risks  are  covered  under engineering insurance?','Material damage and liability cover','Boiler and special perils cover','Computer and explosion cover','Property damage and business interruption cover','','','d','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:52'),(50,'Which of the following is not a function of an insurance broker?','Assisting clients in paying premium','Maintaining proper records of claims','Assisting clients in connecting to insurers','Assisting clients in effecting uninsured loss','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:53'),(51,'The primary function of insurance is','making profit','managing of risk','spreading of risk','prevention of accident','','','c','','model','1',89,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:54'),(52,'An  insurance  feature  that  requires  the  parties  to disclose  all  material  facts  about  the  agreement is known as','Adhesion','Disclosure','Material fact','Utmost good faith','','','b','','model','1',90,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:55'),(53,'An insurance principle that requires the insured to be honest and disclose all relevant facts is called','subrogation','utmost good faith','proximate cause','insurable interest','','','b','','model','1',92,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:56'),(54,'The facts which might influence any party’s willingness to enter the contract or reject it is called','insurable fact','insurance fact','insured fact','material fact','','','d','','model','1',71,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:57'),(55,'A  statement  of  fact  that  the insured must have an interest in the object of the contract is called','warranty','insurable interest','subrogation','object interest','','','b','','model','1',63,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:58'),(56,'A fundamental condition which must be filled  by the  insured for compensation is','warranty','obligation','interest','premium','','','a','','model','1',73,'Admin','2017-01-09 13:02:57','2020-07-14 15:24:59'),(57,'The object of an insurance policy is equally known as','insurance title','insurance premium','subject matter','risk object','','','c','','model','1',68,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:00'),(58,'In insurance contract the insured is the','offeror','offeree','Actuary','Ofree','','','a','','model','1',86,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:01'),(59,'In insurance contract offeree is the','insured','insurance company','client','Third party','','','b','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:02'),(60,'An individual who is interested in taking an insurance policy must fill a form of application called:','premium slip','policy document','proposal form','claim form','','','c','','model','1',84,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:03'),(61,'The payment made by the insured to the insurer upon which the validity of insurance is based is called','Exgratia payment','Loss payment','Compensation','Premium','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:04'),(62,'The temporary document issued by the insurer to the insured while the policy is being prepared is','insurance certificate','promissory note','exchange slip','cover note','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:05'),(63,'The evidence of the contractual agreement between the insured and insurer is','policy','proposal form','insurance certificate','cover note','','','a','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:06'),(64,'Which of these is an aid to trade?','cover note','insurance','premium','policy','','','b','','model','1',87,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:07'),(65,'The following are exempted from a contract because they do not have the contractual capacity except','Drunkard','Alien','Mental patient','Adult','','','d','','model','1',69,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:15'),(66,'Insured is likewise known as','insuree','Insurer','policy holder','contractor','','','c','','model','1',90,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:16'),(67,'Insurance contract is between','Broker and Agent','Insured and Insurer','Insurer  and Agent','Insured and Agent','','','b','','model','1',72,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:17'),(68,'The buyer of insurance product is','Agent','Broker','Insured','Insurer','','','c','','model','1',76,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:18'),(69,'The seller of insurance product is','Insurer','Insured','Broker','Agent','','','a','','model','1',71,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:19'),(70,'Which of this is an odd one out?','offer and acceptance','contractual capacity','legality of object','Adhesion','','','d','','model','1',83,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:20'),(71,'The uncertainty as to the occurrence of a loos is','Hazard','Loss','Risk','insurance','','','c','','model','1',76,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:21'),(72,'The risks which affect the society and whose causes are beyond human control is','particular risk','static','fundamental','speculative','','','c','','model','1',74,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:22'),(73,'Risks that are peculiar to an individual actions and decision is known as','fundamental risk','particular risk','pure risk','speculative risk','','','b','','model','1',70,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:23'),(74,'Risk of loss resulting from change in culture and taste is called','static risk','pure risk','dynamic risk','speculative risk','','','c','','model','1',79,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:24'),(75,'The following risks are insurable except','particular','pure','static','dynamic risk','','','d','','model','1',90,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:25'),(76,'The following are insurable except','Marine','Goods','Gambling','Accident','','','c','','model','1',59,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:26'),(77,'The following are non-insurable except','Lose of profit as a result of change in fashion','Speculation','Lose of profit as a result of maladministration','Fire','','','d','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:27'),(78,'Factors which may influence the occurrence of a loss is','Risk','Loss','Peril','Hazard','','','d','','model','1',64,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:28'),(79,'Hazard that relates to the attitude of the insured is known as','Physical hazard','Good physical hazard','Moral hazard','Good moral hazard','','','c','','model','1',82,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:29'),(80,'Hazard that relates to the subject matter of insurance is called','moral','physical','peril','Good peril','','','b','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:30'),(81,'The following are examples of bad moral hazard except','Fraudulent activities','Carelessness','Honesty','Unreasonableness','','','c','','model','1',70,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:31'),(82,'The cause of a loss is known as','Risk','Peril','Hazard','Moral','','','b','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:32'),(83,'The  principle  of  insurance  which  states  that a person must be in a legally recognized relationship to what is  insured  such  that  he  will  benefit  from its existence or suffer by its loss is','utmost good faith','insurable interest','proximate cause','subrogation','','','b','','model','1',80,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:33'),(84,'A person who has lawful possession of goods belonging to another is known as','Owner','Bailee','Agent','Trustee','','','b','','model','1',76,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:34'),(85,'Transfer of rights and liabilities under a contract with the consent of the other party is known as','Assignment','liability','Interest','Legality','','','a','','model','1',74,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(86,'Another name for utmost good faith is','cadent','cede','ex gratia','uberrimae fidei','','','d','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(87,'The principle of insurance which states that the insure should be truthful and disclose all material fact is','subrogation','utmost good faith','indemnity','insurable interest','','','b','','model','1',77,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:37'),(88,'A miss statement of fact that is made by the insured or his broker to an underwriter during negotiation is called','annuity','misrepresentation','endorsement','disclosure','','','b','','model','1',71,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:38'),(89,'Indemnity is provided through the following media except','cash','commission','reinstatement','repair','','','b','','model','1',67,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:39'),(90,'Any circumstance that promotes the probability of a loss is called','accident','hazard','loss','risk','','','b','','model','1',101,'Admin','2017-01-09 13:02:58','2020-07-23 20:38:48'),(91,'A financial compensation sufficient to return the insured back to the original position after loss is known as','deposit','loan','indemnity','profit','','','c','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:41'),(92,'Another name for business interruption insurance is','property insurance','consequential loss','credit insurance','excess loss','','','b','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:42'),(93,'Subrogation principle can be applied in the following insurance policies except in','aviation policy','engineering policy','life policy','marine policy','','','c','','model','1',77,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:43'),(94,'Payment of claims  in  liability  insurance are usually made in favour of','insurance agent','a third party','employees','employers','','','b','','model','1',86,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:44'),(95,'The person  that  brings  an insurance  contract  into existence between  the principal and third party  is a/an','agent','bailee','contractor','insurer','','','a','','model','1',75,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:45'),(96,'“Hull” in marine policy refers to the','boiler','cost of transporting the goods','goods on board','ship','','','d','','model','1',96,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:46'),(97,'A formal document containing the condition of the insurance contract is called','agreement','contract form','contract slip','policy document','','','d','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:47'),(98,'Engineering insurance covers the following except','boiler explosion','building and civil','business interruption','machinery breakdown','','','c','','model','1',82,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:48'),(99,'A policy designed to protect individuals against negligence while carrying out their daily activities is called','business interruption','employers liability','engineering','professional indemnity','','','d','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:49'),(100,'Unlawful breaking and entering into any premises or place of safe keeping is covered under which of these policies?','burglary','business interruption','employers liability','public liability','','','a','','model','1',71,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:50'),(101,'When someone is placed back in the same financial position that he was in just prior to a loss, that is ----','Actual cash value','Consideration','Contribution','Indemnity','','','d','','model','2',73,'Admin','2017-01-09 13:21:17','2020-07-14 15:25:51'),(102,'Insurable interest means','Interest gained on money in a bank','Interest payable on a loan','Financial interest a person has in something he expects to inherit','The financial interest a person has in something of value','','','d','','model','2',93,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:52'),(103,'Below are insurable policies except','Earthquake','Fire','Life','Marine','','','a','','model','2',82,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:53'),(104,'The term pooling of risks in insurance means that','Many who face risks pay premium so that those who suffer loss may be reimbursed','Insurance companies share heavy losses','Insurance company re-assures with another','Insurance companies operates pool betting business','','','a','','model','2',80,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:54'),(105,'Which of the following is not a principle of insurance?','Indemnity','Compensation','Proximate cause','Insurable interest','','','b','','model','2',78,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:55'),(106,'The amount of money paid periodically by an insured to the insurance company to cover risk is called','Commission','Premium','Cover note','Dividend','','','b','','model','2',80,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:56'),(107,'Insurance was developed as a result of the existence of','Hazards','Loss','Risk','Indemnity','','','c','','model','2',79,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:57'),(108,'Which of the following is not a function of insurance?','Serves as collateral','Encouraging saving','Provides insecurity','Reduces risks','','','c','','model','2',89,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:58'),(109,'In the utmost good faith principle, the value of the subject matter should','Be over stated','Understated','Not be stated','Not be overstated nor understated','','','d','','model','2',66,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:59'),(110,'Which of the following is non- insurable risk?','Gambling','Accident','Fire','Theft','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:00'),(111,'Which of the following is a temporary document given to the insured in an insurance contract?','Cover note','Subrogation','Policy document','Reinsurance','','','a','','model','2',87,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:01'),(112,'Hazard that deals with the human habits and character that arises from human attitude and the conduct of people is called','physical','Moral','Static','Dynamic','','','b','','model','2',62,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:02'),(113,'A peril is best defined as','Chance of a loss','The occurrence of a loan','The cause of a loss','The result of a loss','','','c','','model','2',80,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:03'),(114,'One of the essential features of insurance contract is','Premium','Subrogation','Interest','Disclosure','','','d','','model','2',77,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:04'),(115,'Insurance  feature  that  emphasized   the  fact  that insurance contract is a contract between the insurer and  the  insured  and  which states  that  the insured must  adhere to  the  agreement  is  called','Disclosure','Warranty','Adhesion','Material facts','','','c','','model','2',78,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:05'),(116,'The principle that requires the insured to disclose to the insurer all matters relating to the object of insurance is called','Uberrimae fidei','Proximate cause','Abandonment','Subrogation','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:06'),(117,'There must  be  a  close  connection  between  the loss actually suffered and the risk is relating to the principle  of','Abandonment','Proximate cause','Utmost good faith','Adhesion','','','b','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:07'),(118,'The principle of subrogation imposed an obligation on the insured to','Disclose all material information','Have financial risks in the object','Press for compensation','Surrender legal right after compensation','','','d','','model','2',69,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:08'),(119,'Which of the following is not a principle of insurance','Indemnity','Insurable risk','Subrogation','Insurable interest','','','b','','model','2',74,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:09'),(120,'An application form which is filled by anyone taking out an insurance policy is called','A policy form','A claim form','A proposal form','Proximate cause form','','','c','','model','2',70,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:10'),(121,'Insurance is necessary because of the need to','Pool resources together','Meet uncertainties in future','Make profit','Lend money to individual','','','b','','model','2',86,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:11'),(122,'The policy that covers debt that cannot be recovered is called','Life assurance','Motor vehicle policy','Comprehensive policy','Bad debt insurance policy','','','d','','model','2',66,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:12'),(123,'Risk whose cause is beyond human control is','Fundamental','Speculative','Particular','Static','','','a','','model','2',87,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:13'),(124,'Cover note usually run for about','One month','Two days','5 years','3 days','','','a','','model','2',88,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(125,'A card used by motorist in the West African sub-region is called','Brown card','Certificate','Insurance card','visa card','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(126,'Uncertainty of loss is known as','Risk','Certainty','Insurance','Hazard','','','a','','model','2',111,'Admin','2017-01-09 13:21:19','2020-07-25 19:57:16'),(127,'Re-insurance contract is between','Re-insurer and insurer','Re- insurance and insurance','Co-insurer and insurer','Insurance broker and re-insurer','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:16'),(128,'The continuation of insurance contract after expiration is','Renewal','Revival','Resuscitation','Rejuvenation','','','a','','model','2',68,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:17'),(129,'The  payment  made  by  underwriter  as  a  form  of  \tkindness  without  admission  of  liability  so  as  to maintain goodwill is known as ------------','Kindness payment','Ex-gratia payment','Favour payment','Claim','','','b','','model','2',72,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:18'),(130,'One of the following is the duty of the insured in insurance claim process','Late report of the loss','Little idea of the loss size','Quick report of the loss','Hiding fact','','','c','','model','2',66,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:19'),(131,'The prices set by the insurer for the insurance cover is known as','Due','Levy','Premium','Charge','','','c','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:20'),(132,'The transfer of risk already undertaken from one insurance company to another is','Over insurance','Re insurance','Under insurance','Group insurance','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:21'),(133,'When an insured person admits that he has indemnified, he means that','The damage proper by has been recovered','He was paid premium fully','The insurance company has restored him to his former position','He was paid his premium fully','','','c','','model','2',71,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:22'),(134,'A house worth N=60,000 insured against fire for N=40,000.  Fire destroyed and cause damage worth N=30,000. On the house under which insurance principle will the owner be entitled to compensation of N=30,000.','Contribution','Subrogation','indemnity','Uberrimae fidei','','','c','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:23'),(135,'The person who calculate the amount given to the insured if he does not want to continue with the contract of insurance is called','Actuary','Insurance agent','Insurance broker','Assessor loss adjuster','','','d','','model','2',86,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:24'),(136,'The amount given to the insured if he does not want the contract to continue is called','Insurance broker','Premium','Surrender value','Assessor loss adjuster','','','c','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:25'),(137,'The sum paid for transporting the goods or for the hire of a ship is called','Marine cargo','Freight insurance','Hull insurance','Risk insurance','','','b','','model','2',86,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:26'),(138,'The duty of the loss adjuster in insurance claims is to','Make loss','Prevent loss','Safeguard loss','Recommend appropriate payment','','','d','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:27'),(139,'Consequential loss is also known as','Business interruption insurance','Credit insurance','Excess loss','Property insurance','','','a','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:28'),(140,'Subrogation principle can be applied in the following insurance policies except in','motor','Life','Marine','Aviation','','','b','','model','2',103,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:44'),(141,'The acronym “CllN” refers to','Certified insurance institute','Certified insured institute','Certified international institute','Chartered insurance institute','','','d','','model','2',83,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:45'),(142,'Amount paid to the beneficiary upon the death of the insured is','Premium','Compensation','Declaration','Death benefit','','','d','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:46'),(143,'The clauses in the policy which make alterations or additions to the information stated in the policy is known as','correction','Modification','Change','Endorsement','','','d','','model','2',64,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:47'),(144,'The date on which an insurance or reinsurance contract comes into force is known as','Starting point date','Inception date','Beginning date','Commencement date','','','b','','model','2',80,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:00'),(145,'Factor that causes an exposure to injury, loss or damage is','Risk','Hazard','Peril','Accident','','','b','','model','2',65,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:08'),(146,'Workman compensation is also referred to as','Fidelity insurance','Employment liability','Public liability','Product liability','','','a','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:09'),(147,'An insurance cover for lawyers, accountants and brokers is','Employment','Professional','Public','Product','','','b','','model','2',65,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:10'),(148,'The deliberate or intentional throwing over board of part of a cargo to lighten the ship in the interest of the reminder of the cargo is','Barratry','Jettison','Breach','Caveat emptor','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:11'),(149,'The wrongful act willfully committed by either the master or the prejudice of either the owner or crew to the chatterer of the ship is','Barratry','Caveat emptor','Bailee','Jettison','','','a','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:12'),(150,'The legal right to insure a subject matter is','Indemnity','Subject Matter','Subrogation','Insurable interest','','','d','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:13'),(151,'--------- shows what the insured should do or not do to maintain the existence of the policy','Cover note','Policy','Warranty','Certificate','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:14'),(152,'The uncertainty of an event occurring is known as','Hazard','Risk','Loss','Accident','','','b','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:15'),(153,'The provider of protection to an insurance  company against the excess risk it has given insurance covers is called','Assurer','Insuring','Reinsurer','Insurer','','','c','','model','3',74,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:16'),(154,'---------- is the evidence cover of the risk given to the insured by the insurer','Cover','Policy','Claim','Compensation','','','b','','model','3',77,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:19'),(155,'------------ is the protection which the insured buys for his risk','Indemnity','Compensation','Cover','Subrogation','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:20'),(156,'A temporary certificate to show that a cover is in existence is called','Policy','Certificate','Cover note','Claim slip','','','c','','model','3',73,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:21'),(157,'------------ is used to bring amendment in a policy that is either to add in a new thing or removal of an existing thing in the policy','Excess','Endorsement','Claim form','Policy','','','b','','model','3',65,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:23'),(158,'The cause of a loss is known as','Peril','Hazard','Loss','Risk','','','a','','model','3',85,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:24'),(159,'The price of insurance is known as','Rate','Interest','Premium','Profit','','','c','','model','3',80,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:25'),(160,'The monetary consideration paid by the insured to the insurers for the insurance granted by the policy is called','Premium','Money','Price','Benefit','','','a','','model','3',75,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:26'),(161,'------------- is a policy designed to place the insured in the same financial position as he was immediately before the happening of the event insured against','Indemnity','Subrogation','Surrender value','Actuary','','','a','','model','3',82,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:27'),(162,'The essential value of valid contract that states that the parties to a contract must be in perfect agreement and have a common mind is','Consideration','Perpetual existence','Excess','Consensus ad-idem','','','d','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:28'),(163,'A  Statement signed by the insured, certifying the Statement','Certificate','Declaration','Confirmation slip','Accuracy statement','','','b','','model','3',65,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:29'),(164,'Change for the transportation of goods by water is called','Bill','Ticket','Freight','Consideration','','','c','','model','3',87,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:30'),(165,'Life assurance provides dual benefits of savings and ------------ to a policy holder','Acceptance','Consideration','Contribution','Security','','','d','','model','3',88,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:31'),(166,'Another name for consequential loss is','Stop loss','Credit insurance','Business interruption insurance','Excess loss','','','c','','model','3',73,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:32'),(167,'Subrogation principle can be applied in the following insurance policies except in -------- policy','Life','Motor','Theft','Burglary','','','a','','model','3',61,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:33'),(168,'A place where the business of insurance is transacted is called a/an','Insurance market','Brokerage firm','Insurance house','Insurance conference room','','','a','','model','3',66,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:34'),(169,'A customer that suffers loss or sustain injury while using a business outfit that belongs to another perosn, can sue the property owner under -------------- insurance','Professional indemnity','Public liability','Employers’ liability','Personal accident','','','b','','model','3',77,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:35'),(170,'The type of questionnaire drawn up by   insurers, requesting certain information to assess risk is --------- form','Acceptance','Compensation','Credit','Proposal','','','d','','model','3',67,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:38'),(171,'The shifting of responsibility of one’s own losses to another is known as ---------- transfer','Fund','Risk','Business','Policy','','','b','','model','3',72,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:39'),(172,'A financial compensation sufficient to return the insured back to his original position after loss is known as','Deposit','Loan','Indemnity','Overdraft','','','c','','model','3',73,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:40'),(173,'The following are types of life assurances,  except','annuity','Endowment','Hire purchase','Whole life','','','c','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:41'),(174,'A marine policy that provider cover for the construction of sea vessels is called --------- policy','Building','Mixed','Port','Valued','','','a','','model','3',107,'Admin','2017-01-09 13:38:39','2020-07-24 09:56:17'),(175,'Spreading of risk to ensure that no insurer is liquidated by the occurrence of a large loss is the concept of','Insurance','Re insurance','Renewal','Treaty','','','b','','model','3',88,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:43'),(176,'The person  that  brings  an  insurance  contract into existence  between  the principal  and  third  party is a/an','Agent','Bailee','Contractor','Insurer','','','a','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:44'),(177,'Any circumstance that promotes the probability of a loss is called','Accident','Hazard','Loss','Risk','','','b','','model','3',64,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:45'),(178,'Indemnity is provided through the following media except','Cash','Commission','Reinstatement','Repair','','','b','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:47'),(179,'The policy that covers loss of cash while in transit or at home is --------------- insurance','Burglary','Business interruption','Credit','Money','','','d','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:48'),(180,'A person who makes an insurance claim is called','Actuary','Adjustor','Claimant','Client','','','c','','model','3',91,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:49'),(181,'To break or act contrary to a law or promise means','Breach','Shake','Confirm','Disagreement','','','a','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:50'),(182,'A professional officer of an insurance company whose duty among others is to calculate the premium to be \tpaid by the insured is called','Agent','Principal','Actuarist','Adjuster','','','c','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:51'),(183,'Which of these is insurable?','Fire','Inflation','Bad publicity','Riot and war','','','a','','model','3',85,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:52'),(184,'The principle that requires all material facts to be disclosed is known as','Indemnity','Fidelity','Proximate cause','Utmost good faith','','','d','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:53'),(185,'In insurance contract, failure to disclose all relevant material facts will render the contract','legal','Voidable','Void','Implied','','','c','','model','3',82,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:54'),(186,'Any information that will influence a prudent insurer is called','contract','misrepresentation','disclosure','Material facts','','','d','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:55'),(187,'The insurance principle which implies that a proof is required that the direct and immediate cause of the loss suffered was by the occurrence of the risk insured against is called','Indemnity','Proximate cause','Insurable interest','Utmost good faith','','','b','','model','3',74,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:56'),(188,'Method of providing indemnity whereby subject matter is being restored to its former position is','Repairs','Cash','Reinstatement','Replacement','','','c','','model','3',77,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:57'),(189,'A relief to insurer of each and every loss which does not exceed a specified amount is','Excess','Franchise','Deductible','Annuity','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:58'),(190,'When an   insurer agrees   to   replace   irreparably damaged or stolen goods with similar type it is called','Reinstatement','Cash','Repairs','Replacement','','','d','','model','3',74,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:59'),(191,'Cover note usually run for about','21 days','one month','12 months','3 month','','','b','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:00'),(192,'The process of changing anything wrong with the policy to make it current is','Endorsement','Specification','Rectification','Correction','','','c','','model','3',60,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:01'),(193,'A syndicate or an insurance company that transfer risk under re-insurance is','Cede','Cession','Commutation','Cedant','','','d','','model','3',67,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:02'),(194,'A particular risk which is transferred to another re-insurance under a re-insurance treaty is','Cedant','Cession','Facultative','Cede','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:03'),(195,'Application by the insured to the insurer for the payment of money due under his contract of insurance is','Proof','Evidence','Claim','Compensation','','','c','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:04'),(196,'The following are the methods of claim settlement except','Cash','Repair','Reinstatement','Repayment','','','d','','model','3',81,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:05'),(197,'Person who makes claim is called','Claimant','Client','Insured','Insurer','','','a','','model','3',65,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:06'),(198,'A payment made by insurer as a form of sympathy to maintain goodwill is','Compensation payment','Contract payment','Charity payment','Ex - gratia payment','','','d','','model','3',79,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:07'),(199,'The policy that provides protection for goods or cargoes and ships against the perils of the sea is','Fire','Marine','Aviation','Credit','','','b','','model','3',82,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:08'),(200,'Another name for an insured in a life insurance contract is','Insurer','Assured','Assurer','Agent','','','b','','model','3',73,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:09'),(201,'Insurance is defined as','risking of loss','pooling of risk','gathering of risk','waiving of risk','','','b','','model','4',76,'Admin','2017-01-09 13:49:45','2020-07-14 15:28:10'),(202,'In a contract of insurance, a firm statement is usually made by a person known as the','offeror','offeree','insur','client','','','a','','model','4',67,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:11'),(203,'The premium paid by the insured to the insurance company is','capital','commission','common fund','consideration','','','d','','model','4',86,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:12'),(204,'The insured is also known as','the client','the consumer','the policy holder','agent','','','c','','model','4',81,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:13'),(205,'The coming together of minds of  the two parties to the insurance contract is called','surrender value','acceptance','consensus ad-idem','adhesion','','','c','','model','4',69,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:14'),(206,'Uberrimae fidei is equally known as','contract','agreement','consensus','utmost good faith','','','d','','model','4',83,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:15'),(207,'The legal right that a person must have to enable him or her to insure his or her property is known as','freedom','franchise','insurable interest','Access right','','','c','','model','4',64,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:17'),(208,'An undertaking by the insured that certain things shall be done or not be done or certain things shall be put in place or not in place is called','warranties and representation','utmost good faith and uberrimae fidei','insurable and non-insurable','subrogation and indemnity','','','a','','model','4',65,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:18'),(209,'In insurance, uncertainty of loss means','hazard','risk','accident','earthquake','','','b','','model','4',70,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:19'),(210,'Occurrence of an unplanned event is called','hazard','loss','risk','speculation','','','c','','model','4',76,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:20'),(211,'An insurance contract where both parties signed the agreement which involve mutuality of agreement is known as','unilateral contract','multilateral contract','bilateral contract','united contract','','','c','','model','4',66,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:21'),(212,'An insurance contract which does not involve mutuality of agreement in which only one of the parties involved in the contract makes promises that are legally binding is called','double contract','single contract','multilateral contract','unilateral contract','','','d','','model','4',75,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:22'),(213,'Insurance is a contract that is based on','possibility','probability','positivity','negativity','','','b','','model','4',98,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:23'),(214,'Assurance is a contract that is based on','negativity','possibility','positivity','probability','','','d','','model','4',60,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:24'),(215,'With insurance contract there is','certainty of occurrence','uncertainty of occurrence','certainty of reward','uncertainty  of reward','','','b','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:25'),(216,'With assurance contract there is','uncertainly of reward','certainty of reward','certainty of occurrence','uncertainty of occurrence','','','c','','model','4',80,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:26'),(217,'Indemnity is not applicable in','assurance contract','insurance contract','insurance terms','insurance content','','','a','','model','4',87,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:27'),(218,'Non- indemnity insurance means that the assured can','be restored back to his former position','not be restored back to his former position','be brought back to contract','not be brought back to contract','','','b','','model','4',83,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:28'),(219,'A seller of insurance product is','insurer','promisor','client','insured','','','a','','model','4',74,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:29'),(220,'A buyer of insurance product is','insured','promise','insurer','insuree','','','a','','model','4',76,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:30'),(221,'A contract which has no legal effect is called','voidable contract','legal contract','void contract','valid contract','','','c','','model','4',77,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:31'),(222,'A contract that is contrary to public policy is','valid contract','legal contract','illegal contract','voidable contract','','','c','','model','4',87,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:33'),(223,'Which of the following cannot enter into an insurance contract?','adult','insured','minor','insurer','','','c','','model','4',91,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:34'),(224,'Risk that affect the society and whose causes are beyond human control is','particular risk','pure risk','fundamental risk','static risk','','','c','','model','4',84,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:35'),(225,'The process of evaluating and minimizing risk is','risk management','risk certainty','risk insurance','risk re-grouping','','','a','','model','4',76,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:36'),(226,'Another name for utmost good faith','expirit - de - corps','uberrimae fidei','caveat emptor','proximate cause','','','b','','model','4',80,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:37'),(227,'Inter company agreement in which insurers agreed to waive their right against each other for loss is','knock for knock agreement','employers’ liability','tit for tat agreement','salvage agreement','','','a','','model','4',72,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:38'),(228,'Contribution will only arise when','two or more parties disagree','two or more parties are promisor','two or more policies of indemnity exist','one policy of indemnity exist','','','c','','model','4',82,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:39'),(229,'One of the following is a condition for contribution','bilateral interest','multilatual interest','two subject matter','common subject matter','','','d','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:40'),(230,'one of these is a content of a proposal form','children of the proposer','education of the proposer','occupation of the proposer','educational','','','c','','model','4',74,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:41'),(231,'The statement “ I to the best of my knowledge hereby confirm that the statements contained in this prosal form are true and correct” represents','confirmation','declaration','witnessing','humility','','','b','','model','4',75,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:42'),(232,'When the proposer fails to fill the proposal form truthfully, the contract will become','voidable','illegal','void','enforceable','','','c','','model','4',100,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:45'),(233,'Proposal form is used in the following classes of insurance except','Accident','theft','life','large risk of fire','','','d','','model','4',73,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:46'),(234,'The following classes of insurance apply the use of proposal form except','public liability','large risk of marine insurance','small risk of marine insurance','theft','','','b','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:47'),(235,'Proposal form is not applicable to the following except','aviation','engineering','large risk of fire','fidelity guarantee','','','d','','model','4',75,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:48'),(236,'Which of the method below can be used to provide indemnity in the event of loss','moral advice','resolution of policy','cash payment','professional encouragement','','','c','','model','4',85,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:49'),(237,'A card used by motorist in the West African sub-region is called','insurance certificate','insurance register','insurance green card','Ecowas brown card','','','d','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:49'),(238,'Situation that are not included in the policy are usually referred to as','condition','exception','preamble','operative clause','','','b','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:51'),(239,'The part of a policy form that shows the name and address of the company is known as','heading','conclusion','condition','preamble','','','a','','model','4',85,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:52'),(240,'One of these shows the introduction to the details of the insurance policy, parties as well as the premium for the contract','preamble','heading','exception','condition','','','a','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:53'),(241,'Policy condition which are automatically applicable and not stated in the contract of agreement is known as','agreed condition','agreed negotiation','implied condition','expressed condition','','','c','','model','4',83,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:54'),(242,'A written amendment in addition or alterations to the information stated in the policy is called','endorsement','specification','construction','attestation','','','a','','model','4',67,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:55'),(243,'The process of changing what is wrong in the policy is called','specification','attestation clause','rectification','justification','','','c','','model','4',70,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:56'),(244,'The process of transferring risk from one insurer to another is called','contribution','re-insurance','re-processing','re-activating','','','b','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:57'),(245,'A reminder to the insured that this existing contract is due to expire is','proposal form','slip','claim form','renewal notice','','','d','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:58'),(246,'One of these is a form of motor vehicle insurance policy','comprehensive','1st party only','2nd party only','accident','','','a','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:59'),(247,'Third party provides cover only for damages to','assurer','insurer','2nd party','another person','','','d','','model','4',83,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:00'),(248,'The type of cover for violent and forcible entry into a premises is called','burglary and theft','third party fire and theft','third party and theft','stealing','','','a','','model','4',63,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:01'),(249,'The deliberate throwing overboard of part of a cargo to lighten the ship is called','barratry','overthrown','voyaging','jettisoning','','','d','','model','4',86,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:02'),(250,'The deliberate throwing overboard of part of a cargo without a good intention is called','jettison','barratry','voyaging','overboard','','','b','','model','4',64,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:03'),(251,'Insurance premium depends on the','amount of profit to be made by the insurer','various insurance companies in a place','extent of the possible loss and the frequency of risk','supply and demand','','','c','','model','5',87,'Admin','2017-01-09 13:58:40','2020-07-14 15:29:04'),(252,'Subrogation in insurance means that','the insured could not make a profit from the insurer','the insured must be fully indemnified','the insurer must take the place of the insured','the insured should pool their risks','','','c','','model','5',76,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:05'),(253,'Payment by the insurer to the insured out of sympathy is known as','utmost good faith','proximate cause','peril','ex-gratia payment','','','d','','model','5',74,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:06'),(254,'If the insured does not want the contract to continue he receives','surrender value','consideration','premium','commission','','','a','','model','5',80,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:07'),(255,'Re-insurance means','accumulation of risk','multiplication of risk','transfer of risk','adding of risk','','','c','','model','5',86,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:08'),(256,'Another name for the assured is','insurance company’s client','insurance broker','insurance company','insurance agent','','','c','','model','5',76,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:09'),(257,'One of the following is legally used by the insured while the policy is being processed','indemnity form','claim form','cover note','proposal form','','','c','','model','5',75,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:10'),(258,'One of the following is necessary to meet uncertainties in future','profit','capital','borrowing','insurance','','','d','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:11'),(259,'When an insured person admits that he has been indemnified, he means that','the insurance company has accepted his claims','the damaged property has been recovered','He has paid his premium','the insurance company has restored him to his former position','','','d','','model','5',78,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:12'),(260,'If the insured has been fully indemnified, the insurers are entitled to take any advantage due to the insured. Principle of insurance involved is','insurable interest','contribution','indemnity','subrogation','','','d','','model','5',77,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:13'),(261,'The settlement of disagreement between the insured and the insurer is called','litigation','arbitration','negotiation','compromising','','','c','','model','5',71,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:14'),(262,'One of this is a method of claim settlement','price','trade by barter','exchange','cash','','','d','','model','5',75,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:15'),(263,'Replacement of damaged property by the insurance company is','arbitration','negotiation','Re-instatement','rectification','','','c','','model','5',84,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:17'),(264,'A reminder to the insured who may have forgotten to seek for continuation after his policy expiry date is','notification message','renewal notice','registration notice','agreement notice','','','b','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:19'),(265,'Which of the following risks is covered by insurance policy?','an investment loss on the stock market','dishonesty of an employee leading to fraud','failure of a business venture','rise and fall of prices of goods in the market','','','b','','model','5',78,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:20'),(266,'One of this is the evidence of insurance contract','schedule','policy','proposal form','endorsement','','','c','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:21'),(267,'One of this is the consideration paid for insurance contract','fee','cheque','commission','premium','','','d','','model','5',73,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:22'),(268,'The payment made when the insured is not entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:23'),(269,'To which of the following does the principle of utmost good faith apply in a contract of insurance?','the insurer only','the proposer only','the third party and insured','insurer and proposer','','','d','','model','5',73,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:24'),(270,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of policy','resolution of dispute','','','a','','model','5',89,'Admin','2017-01-09 13:58:49','2020-07-24 21:23:57'),(271,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','model','5',91,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:26'),(272,'A factor which may influence the occurrence of a loss is','peril','loss','hazard','risk','','','c','','model','5',76,'Admin','2017-01-09 13:58:52','2020-07-14 15:29:27'),(273,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','model','5',78,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:28'),(274,'A reinsurance contract in which the reassured agrees to offer and the reinsurer agrees to accept all risks of certain size within a defined class is','underwriting','treaty','tort','syndicate','','','b','','model','5',72,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:29'),(275,'A contract which has no legal effect is called','void policy','voidable policy','legal policy','formal policy','','','a','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:30'),(276,'The contract aimed at providing specific payment at regular intervals for a fixed   period or for life is','accident','annuity','average','term','','','b','','model','5',95,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:31'),(277,'policy designed for the insured who is incapacitated to carry out normal duty is','medical expenses','temporary disablement','permanent disablement','medical expenses','','','b','','model','5',79,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:32'),(278,'Physical loss of limbs or total blindness injury is an example of','permanent disablement','temporary disablement','mid-term disablement','total disablement','','','a','','model','5',75,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(279,'A policy that covers the peril of the sea is','aviation','marine','life','fire','','','b','','model','5',83,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(280,'An  attempt  to  deprive  someone of his  property is','theft','burglary','robbery','larceny','','','c','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:35'),(281,'The process of examining, accepting or rejecting risks and classifying the ones accepted is','underwriting','policy','procedures','warranty','','','a','','model','5',79,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:35'),(282,'The periodic payment made by the insured to the insurer as financial cost of obtaining insurance','annuity','premium','claim','dividend','','','b','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:36'),(283,'The amount added to the standard premium in respect of the larger than standard risk presented by the proposer is called','premium increase','premium loading','premium payment','premium commission','','','b','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:37'),(284,'Return premium is the same thing as','premium payment','premium refund','premium tax','premium bonus','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:38'),(285,'The principle of maritime law which makes owners of ship and cargo share in a lost incurred voluntarily is','general average','special average','specific average','particular average','','','a','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:39'),(286,'The amount given to the insured if he does not want the contract to continue is called','premium','price','consideration','surrender value','','','d','','model','5',74,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:40'),(287,'Partial loss can be divided into','particular average and general average','particular average and total loss','actual loss and total loss','total loss and particular loss','','','a','','model','5',88,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:41'),(288,'Marine  losses are divided into','actual total and total loss','total loss and partial loss','partial loss and actual loss','average loss and partial loss','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:42'),(289,'The division of total loss are','average loss and partial loss','partial loss and full loss','total loss and actual loss','actual total loss and constructive total loss','','','d','','model','5',70,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:43'),(290,'Marine insurance policy which covers all the ship or vessels belonging to one owner is','flect policy','mixed policy','value policy','fixed policy','','','a','','model','5',86,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:44'),(291,'The full meaning of NAICOM is','Nigerian insurance company','national insurance commission','national insurer commission','national insured commission','','','b','','model','5',83,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:45'),(292,'Speailative risks are','insurable risk','non insurable risk','financial risk','non financial risk','','','b','','model','5',85,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:46'),(293,'The form of risk that can easily be calculated and estimated is known as','non insurable risk','non-financial risk','speculative risk','insurable risk','','','d','','model','5',83,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:47'),(294,'A risk that has its origin in the activities of an individual and the effects borne by this individual is called','pure risk','particular risk','speculative risk','fundamental risk','','','b','','model','5',66,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:48'),(295,'Business interruption insurance can also be called','consequential loss','constructive loss','partial  loss','general loss','','','a','','model','5',88,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:50'),(296,'The maximum number of days allowed for a policy holder to pay his renewal premium after it has become due is called','surrender value','conditions','days of grace','days of liberty','','','c','','model','5',73,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:51'),(297,'The  factor  that has  the  tendency  to  increase  the occurrence of a risk is called','risk','loss','hazard','peril','','','d','','model','5',80,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:52'),(298,'The cause of a loss is','peril','hazard','risk','loss','','','a','','model','5',85,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:53'),(299,'The party who proposes to the insurance company to insure his properly is called','offeree','offeror','acceptance party','offer client','','','b','','model','5',75,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:55'),(300,'One of these is a full time professional','broker','agent','factor','insurer','','','a','','model','5',70,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:56'),(301,'Insurance against risk is possible because of the law of','large numbers','few numbers','inverse proportion','diminishing returns','','','a','','wassce','2015',78,'Admin','2017-01-09 14:33:34','2020-07-14 15:29:59'),(302,'Which  of  the  following  is  not  a  component  of  an insurance policy?','Signature clause','Particular clause','Recital clause','Operative clause','','','b','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:01'),(303,'Which of the following is a component of premium in insurance?','Margin','Reserve','Funds','Capital','','','c','','wassce','2015',73,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:03'),(304,'In which of the following classes of insurance is no <em>claim discount</em> applicable?','Money insurance','Marine insurance','Motor insurance','Aviation insurance','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:05'),(305,'The payment by an insurer to the insured in the event of loss is','claim','premium','fee','interest','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:07'),(306,'Which of the following is the function of a loss adjuster?','Ensures payment of adequate compensation','Advises the insurer on claim','Operates with unlimited authority','Notifies insurer of the loss','','','a','','wassce','2015',68,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:08'),(307,'A fire insurance policy guaranteed by the insured to be in place for a stated period with a particular insurer is granted a _____________','no claim discount','fleet discount','long - term agreement discount','plurality discount','','','a','','wassce','2015',74,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:09'),(308,'A type of re - insurance  where  the re - insurer has  the option  to  accept  or  reject  any  risk  presented  for re-insurance is','stop loss','facultative','treaty','excess of loss','','','b','','wassce','2015',91,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:10'),(309,'A new Nissan car valued at N= 350,000 was used to replace a Peugeot car with a sum insured N= 250.000 in private policy. The Peugeot car enjoys a 25% no claim discount. If the rate of premium is 11% and the no claim discount is transferred to the  new vehicle, what  would be the premium for the new Nissan car?','N= 20,625','N= 27,500','N= 28,875','N= 38,500','','','b','','wassce','2015',85,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:12'),(310,'One of the features of term assurance is','investment','profit','protection','surrender','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:13'),(311,'Which  of  the  following  statements  is  true  about property insurance?','The probability that the event may occur','The probability that the event will not occur','The probability that the event may or may not occur','The probability that the event must occur','','','c','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:14'),(312,'In a life assurance contract, when does  the  principle of insurable interest arise?','At the beginning of the contract','At the time of claim','At the middle of the contract','At the time of payment of premium','','','a','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(313,'Which class of life assurance would a young couple who desires to start a new business in five years time purchase?','Whole life policy','Limited whole life policy','Keyman policy','Endowment policy','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(314,'In which of the following policies is <em>certificate of insurance</em>  used?','Burglary insurance','Product liability insurance','Employer’s liability insurance','Money insurance','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:16'),(315,'Which  of  the  following  would  not  give  cause  for subrogation right?','Benefit','Contract','Statute','Salvage','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:17'),(316,'Educational endowment policy is designed to protect the interest of','father','mother','child','uncle','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:18'),(317,'A clause in an insurance policy that makes a claim jointly payable to the policyholder and the third party is','claim clause','mortgagee clause','mortgage clause','joint liability clause','','','d','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:21'),(318,'The policy that covers  an  insured  employee  against injury  sustained  in  the  course  of  employment  is','professional indemnity','product liability','public liability','employer’s liability','','','d','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:22'),(319,'What is  the  maximum  liability which the insurer can pay on a particular loss?','Average','Sum insured','Franchise','Excess','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:23'),(320,'A policy taken to cover several shipments for a sum assured is','floating policy','valued policy','declaration policy','special policy','','','a','','wassce','2015',70,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:24'),(321,'A policy taken for full protection against fire and other risks such as flood, tempest, riot and civil commotion is','consequential loss','fire and all risks policy','combined householder’s policy','fire and special perils','','','a','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:25'),(322,'The  person  that   transfers  risks  to  the  insurance company is called','a broker','an insured','an underwriter','a loss adjuster','','','b','','wassce','2015',82,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:26'),(323,'A clause in marine insurance policy prohibiting the insured from giving up a damaged property is','deductible','abandonment','indemnity','compensation','','','a','','wassce','2015',76,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:27'),(324,'Insurance is described as a risk','avoidance mechanism','regulating mechanism','transfer mechanism','assessment mechanism','','','c','','wassce','2015',69,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:28'),(325,'A fire insurance policy valued at N= 250,000 is issued at the rate of 0.2%. How much would the premium be, if the policy is granted with 5% long - term agreement discount?','N= 475','N= 500','N= 12,500','N= 13,000','','','a','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:29'),(326,'What is the full meaning of “NCRIB” in the insurance industry?','National  Council of  Registered Insurance  Brokers','Nigerian  Council of  Registered Insurance  Brokers','Nigerian Corporation of Registered Insurance Brokers','National Corporation of Registered Insurance Brokers','','','b','','wassce','2015',81,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:30'),(327,'Which of the following is not a function of an insurance underwriter?','Determining rates and coverage for the risk','Deciding whether to take the risk','Looking for an insurer to take the risk','Deciding whether to reject the risk','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:31'),(328,'The cover that is taken at the option of the motor vehicle owner is','a comprehensive cover','an act only cover','a third party only cover','a special type cover','','','c','','wassce','2015',92,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:31'),(329,'The  sum  insured  for  a  risk  is  N= 150,000  and  was accepted  for  fire  insurance at a rate of  0.25%. How much will the insured pay as a premium?','N= 125','N= 375','N= 500','N= 875','','','b','','wassce','2015',67,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:32'),(330,'The amount payable to an insured in the event of fire damage of household items is the','cost of repair','actual cash value','replacement cost','sum insured','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:33'),(331,'A motorist travelling from Ghana to Nigeria would be required to obtain one of the following types of motor insurance cover','green card','brown card','yellow card','purple card','','','b','','wassce','2015',73,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:34'),(332,'One of the benefits payable under personal accident insurance policy is','retirement benefit','surrender benefit','death benefit','transfer benefit','','','c','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:35'),(333,'A  trade  group for insurance  companies in  Nigeria is called','Chartered Insurance Institute of Nigeria','National Insurance Commission','Nigerian Corporation of Registered Insurance Brokers','Nigerian Insurers Association','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:36'),(334,'The process of  assessing  risks  in  insurance  and classifying them according to their degree of insurability so  that  the  appropriate  rate  may  be  assigned  is','inspecting','underwriting','surveying','evaluating','','','d','','wassce','2015',87,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:37'),(335,'Who  among  the  following  is  an  employer  of  loss adjuster?','Insurer','Broker','Insured','Agent','','','a','','wassce','2015',75,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:38'),(336,'The meaning of with <em>profit policy</em>  in life assurance is that the sum assured is paid','without profit','with profit','with interest','without interest','','','c','','wassce','2015',86,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:39'),(337,'The  document issued by  the  insurer when there is a change in the particulars of a risk insured is','endorsement','certificate','voucher','policy','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:40'),(338,'The amount charged when a ship overstays at the port under a marine contract is','penalty','fine','overcharge','demurrage','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:41'),(339,'Which of the following documents forms the basis of a contract in insurance business?','Policy document','Proposal form','Claim form','Discharge form','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:42'),(340,'The  difference  between  theft  and burglary insurance lies in evidence of','pilfering  of insured items','removal of insured items by tricks','forceful violent entry or exit affecting insured items','threat leading to loss of insured items','','','c','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:43'),(341,'The right of choice of option for method of indemnity is exercised by the','insured','insurance broker','insurance consultant','insurer','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:44'),(342,'Cover note  in  motor  insurance is issued for a period not exceeding','30 days','60 days','90 days','120 days','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:45'),(343,'Which of the following activities is not involved in claims management?','Proof of loss','Particulars of loss','Premium calculation','Primary investigation','','','c','','wassce','2015',71,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:46'),(344,'Life  assurance  contract is useful to a policyholder in the area of','production','protection','industrialization','rehabilitation','','','b','','wassce','2015',81,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:47'),(345,'Which  of  the  following  functions  is  related  to  life assurance contract? Benefits are','determined  on  the  happening  of  insured  event','determined by the indemnity doctrine','determined at the inception of the policy','assessed by the extent of the loss','','','c','','wassce','2015',90,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:48'),(346,'The saving element in a permanent life assurance policy which represent the policyholder’s interest in the policy is','surrender value','cash value','sum assured','residual value','','','c','','wassce','2015',79,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:49'),(347,'Which of the following is a duty of an insured in an insurance contract?','Concealment of facts','Exposure of facts','Disclosure of facts','Acceptance of facts','','','c','','wassce','2015',72,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:50'),(348,'The principle of maritime law which makes owners of a ship and cargo share in a loss incurred voluntarily is','special average','general average','specific average','particular average','','','b','','wassce','2015',80,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:51'),(349,'Which of the following factors limits indemnity?','Cession','Re - insurance','Excess','Co - insurance','','','b','','wassce','2015',74,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:52'),(350,'A  temporary  insurance  document  providing  coverage until a permanent policy is issued is','proposal form','cover note','policy document','insurance certificate','','','b','','wassce','2015',91,'Admin','2017-01-09 14:33:36','2020-07-27 10:46:53');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `irk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `irk` VALUES (1,'The reason Mecca suwar lay emphasis on oneness of Allah is because  ','it was the only way to call Mecca to Islam  ','it is the only article of faith  ','it is the only article of peace between Prophet Muhammad and the Mecca  ','the pre-Islamic Mecca were idolatrous ','','','d','','post-utme-aaua','2012',931,'Admin','0000-00-00 00:00:00','2020-07-14 15:34:59'),(2,'Uthman B. Affan reigned between  ','644 and 656 ','657 and 688  ','655 and 657  ','644 and 655  ','','','a','','post-utme-aaua','2012',967,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:00'),(3,'The final and total prohibition of intoxicants is contained in Surah  ','al-Baqarah  ','an-Nisa  ','al-Maidah  ','al- I a  ','','','c','','post-utme-aaua','2012',941,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:02'),(4,'Hajjatul Wada of Prophet Muhammad was delivered in ','632','630','628','631','','','a','','post-utme-aaua','2012',953,'Admin','0000-00-00 00:00:00','2020-07-27 07:07:31'),(5,'Suratul-Kawthar was revealed following the _____ of the Mecca  ','uproar  ','insinuation  ','intolerance  ','resistance  ','','','b','','post-utme-aaua','2012',952,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:04'),(6,'Zakat is paid on the following except____  ','cash  ','cattle  ','slaves','all of the above ','','','c','','post-utme-aaua','2012',936,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:05'),(7,'The i itial suggestio  to o pile the Qu a   as aised   ','A u Bak  ','Umar B. Khattab  ','Zaid B. Thabit  ','Uthman B. Affan  ','','','b','','post-utme-aaua','2012',953,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:06'),(8,'One importance of wearing the Ihram during Hajj is_____  ','it directs the mind of all Muslims towards Allah  ','it purifies the Muslims  ','it makes all Muslims equal  ','it distinguishes pilgrims by country of origin  ','','','c','','post-utme-aaua','2012',954,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:07'),(9,'The reason for the declaration of Jihad against the Islamic state of Borno by Muhammad Bello wasbecause of the people','rebellion  ','extremism ','syncretism  ','fundamentalism ','','','c','','post-utme-aaua','2012',941,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:08'),(10,'The oa d gi e  to P ophet Muhad is the first  e elatio  of the Qu a  tells us about ____ ','education  ','prosperity  ','worship  ','Allah ','','','a','','post-utme-aaua','2012',939,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:09'),(11,'?eek k o ledge, e e  u to Chi a   ea s ____ ','go to China to seek knowledge  ','knowledge is found in China  ','go at any length to seek knowledge  ','knowledge must be sought in china   ','','','c','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:10'),(12,'The spokesman of the Muslims before Emperor Negus was ','Jaafar  ','Al-As  ','Abu Musa  ','Masa Musa  ','','','a','','post-utme-aaua','2012',928,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:11'),(13,'The first place of Muslims ig atio   as ___','Abyssinia  ','Taif  ','Medina  ','Yathrib ','','','b','','post-utme-aaua','2012',935,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:12'),(14,'Al-Tawrat was revealed to  ','Isa  ','Musa  ','Prophet Muhammad  ','Idris ','','','b','','post-utme-aaua','2012',933,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:13'),(15,'Literally, Boko Haram means  ','book is forbidden  ','education is forbidden  ','Western education is forbidden  ','school is forbidden  ','','','c','','post-utme-aaua','2012',918,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:14'),(16,'Wudu means  ','ablution','dry ablution  ','water ablution  ','wet ablution ','','','b','','post-utme-aaua','2012',955,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:27'),(17,'If Alhaji Musa Ayuba invested N10, 000: 00 in a business and made a profit of N2, 000: 00 at the','N215.00','N100: 00  ','N50:00  ','N1000:00 ','','','c','','post-utme-aaua','2012',950,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:28'),(18,'Ibadah refers to  ','worship of ancestors  ','worship of the Prophet  ','worship of the caliphs ','worship of Allah  ','','','d','','post-utme-aaua','2012',967,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:29'),(19,'Shirk means ____  ','monotheism ','polytheism','henotheism  ','syncretism ','','','b','','post-utme-aaua','2012',922,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:29'),(20,'Which one of the following is not associated with shirk _____ ','idol worship  ','trinity  ','monotheism  ','henotheism ','','','c','','post-utme-aaua','2012',938,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:30'),(21,'If a Muslim prays five times daily on a regular basis, how many times will he have prayed a regular ','1825','1835','1835','1845','','','a','','post-utme-aaua','2012',906,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:31'),(22,'Lakum dinukum wa Liya dinin means  ','religion is good  ','to you is my religion and to me yours  ','to you is your religion and to me is my religion ','my religion is better than yours  ','','','c','','post-utme-aaua','2012',916,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:32'),(23,'According to Islamic traditions, inability to marriage may rise as a consequence of   ','defects in sex organs  ','permanent illness  ','impotence  ','all of the above  ','','','d','','post-utme-aaua','2012',918,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:33'),(24,'Walam yakun lahu Kufuwan Ahadun is_____  ','the second ayat of the 112th surah  ','sixth ayat of the 111th surah  ','fourth ayat of the 112th surah ','seventh ayat of the 114th surah  ','','','c','','post-utme-aaua','2012',970,'Admin','0000-00-00 00:00:00','2020-07-26 22:34:57'),(25,'The main message of ayay Amanar-Rasul is  ','the significance of knowledge  ','the articles of faith  ','the pillars of Islam  ','payment of Zakat ','','','b','','post-utme-aaua','2012',925,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:35'),(26,'Talaq al-','irrevocable ','revocable  ','impermissible  ','detestable ','','','a','','post-utme-aaua','2012',922,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:36'),(27,'The word Hafizi in Q.  82: 10 means  ','angels  ','jinns  ','spirits ','man  ','','','a','','post-utme-aaua','2012',930,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:37'),(28,'When Prophet Muhammad got to Yathrib, he had to first and foremost settle the feud between  ','Aws and Khazraj  ','banu Nadir and Mecca  ','Mecca and Medina ','Aws and Nadir  ','','','a','','post-utme-aaua','2012',933,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:38'),(29,'The prophet admonishes that if an abomination is found, a true Muslim should at least  ','hate if from his heart  ','change it with his hands immediately  ','condemn it publicly  ','declare Jihad  ','','','a','','post-utme-aaua','2012',934,'Admin','0000-00-00 00:00:00','2020-07-14 15:35:39'),(30,'The reason Q.  2: 219 forbids wine ad gambling is because  ','they lead one to greater sin than gain  ','they lead to poverty ultimately ','they lead to extravagance and intoxication  ','they make a Muslim to abandon religion  ','','','a','','post-utme-aaua','2012',945,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:02');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `mathematics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `mathematics` VALUES (1,'A regular polygon has each of it angles at 160. What is the number of sides of the polygon? ','36','9','18','20','','','c','','post-utme','2006',1205,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(2,'A girl walks 30m from a point P on  a bearing of 040 to a point Q. she   then walks 30m on a bearing of 140 to a point R. the bearing of R from P is ','90','50 ','45','40','','','a','','post-utme','2006',1167,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(3,'How many different three digit numbers can be formed using the integers 1 to 6 if no integer 1 to 6 if no integer occurs twice in a number? ','720','1260','2520','5040','','','b','','post-utme','2006',1157,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(4,'In how many different ways can the letters of the word GEOLOGY be arranged in order? ','720','1260','2520','5040','','','c','','post-utme','2006',1180,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(5,'A cyclist rode for 30minutes at xhkm/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14   ','x<20  ','x<29  ','x< 28','','','d','','post-utme','2006',1186,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(6,'A business invested a total of N200,000 in two companies which paid dividends of 5% and 7% respectively. If the received a total of N11, 600 as dividend, how much did he invest at 5% ','N160,000 ','N140,000 ','N120,000 ','N80,000','','','c','','post-utme','2006',1167,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(7,'In a class, 37 students take a least one of chemistry, Economics and Government, 8 students take Chemistry, 19 take Economics and 25 take Government, 12 students take Economics and Government but nobody takes Chemistry and Economics. How many students take both chemistry and Government? ','3','4','5','6','','','a','','post-utme','2006',1193,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(8,'Solve for p in the following  equation given in base two  11(p+ 110) = 1001p   ','10','11','110','111','','','b','','post-utme','2006',1187,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(9,'Factorize 16(3x+2y)2-25 (a+2b)2','(12x +8y+5a+10b)(12x+8y-5a-10b)    ','(12x+8y-5a-10b) (12x+8y-5a-10b),    ','20 (3x +2y-a-2b)(3x+2y+a+2b)  ','20(3x+2y+a+2b) (3x+2y+a+2b).','','','a','','post-utme','2006',1162,'Admin','0000-00-00 00:00:00','2020-07-26 18:24:12'),(10,'1.3logx+logy =3. Then, y is  ','(10/x)3 ','(x/10)3  ','(x/10)-3 ','(10/x)1-1/3 ','','','a','','post-utme','2006',1175,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(11,'Z is partly constant and partly varies inversely as the square of d. when d = 1, z = 11 and when d = 2, z = 5. Find the value of z when d = 4.  ','2','3.5','5','5.5','','','b','','post-utme','2006',1162,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(12,'Expand the expression (x2-2x-3)(x2+x+1).  ','x4-4x2-5x-3  ','–x3-4x2+5x-3','x4-x3-4x2-5x-3  ','x4-4x2-5x -3','','','c','','post-utme','2006',1144,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(13,'The indefinite integral of the function f(x) = xcosx for any constant k, is ','–cos + sinx +k,  ','xsinx-cosx,   ','xsinx for any constant k,   ','x+sinx+cosx+k','','','c','','post-utme','2006',1118,'Admin','0000-00-00 00:00:00','2020-07-26 20:31:30'),(14,'The trigonometric expression cos 2A +sin 2A can be written as    ','cosA (cosA-sinA),    ','Cos2A +sin2A-2sinAcosA,  ','Cos2A + sin2A = Cos2A –sin2A+2sinAcosA','cos2A+sin2A','','','c','','post-utme','2006',1174,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(15,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is with replacement: ','0.9','1','0.47','0.49','','','d','','post-utme','2006',1156,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(16,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is without replacement ','0.1','0.47','0.42','0.21','','','b','','post-utme','2006',1233,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(17,'The interior angles of a pentagon are: 180o, 118o, 78o, 84o and  x. The value of x is: ','80o ','108o  ','120o  ','134o','','','a','','post-utme','2007',1177,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(18,'All the vertices of an isosceles triangle lie on a circle and each of the base angles  of the triangle is 65o. The angle subtended at the centre of the circle by the base of the triangle is: ','130o  ','115o  ','50o  ','65o','','','c','','post-utme','2007',1172,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(19,'A square tile measures 20cm by 20cm. How many of such tiles will cover a floor measuring 5m by 4m? ','500','400','320','250','','','a','','post-utme','2007',1174,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(20,'The volume of a certain sphere is numerically equal to twice its surface area. The diameter of the sphere is: ','6','9','12','','','','c','','post-utme','2007',1170,'Admin','0000-00-00 00:00:00','2020-07-26 20:31:30'),(21,'A bearing of 310o, expressed as a compass bearing is: ','N50oW  ','N40oW  ','S40oW  ','S50oW','','','a','','post-utme','2007',1127,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(22,'Which of the following specified sets of data is not necessarily sufficient for the construction of a triangle? ','three angles  ','two sides and a right angle  ','two sides and an included angle ','three sides','','','a','','post-utme','2007',1192,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(23,'The average age of the three children in a family is 9 years. If the average age of their parent is 39 years, the average age of the whole family is: ','20 years  ','21years  ','24years  ','27years','','','b','','post-utme','2007',1121,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(24,'Evaluate x in base 3 if 41x-22x=17x. ','11','8','12','22','','','d','','post-utme','2007',1303,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(25,'When the price of egg was raised by N2 an egg, the number of eggs which can be bought for N 120 is reduced by 5. The present price of an egg is ','N 6. ','N 7  ','N 8','N10','','','c','','post-utme','2007',1139,'Admin','0000-00-00 00:00:00','2020-07-27 06:47:56'),(26,'How long will take a sum of money invested at 8% simple interest to double the original sum? ','8 years  ','10.5years  ','(1years ','12.5years','','','d','','post-utme','2007',1149,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(27,'The journey from Lagos to Ibadan usually takes a motorist 1 hour 30 minutes. By increasing his average speed by 20km/hr, the motorist saves 15 minutes. His usual speed, in Km/hr is ','100','90','85','80','','','a','','post-utme','2007',1136,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(28,'The smallest section of a rod which can be cut 36cm in length is','90cm ','180cm ','360cm  ','540cm.','','','b','','post-utme','2007',1129,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(29,'If x= 0.0012 + 0.00074 + 0.003174, what is the difference between x to 2 decimal places and x to 1 significant figure? ','0.01','0.0051','0.1','0.005','','','d','','post-utme','2007',1159,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(30,'In a survey of 100 students in an institution, 80 students speak Yoruba, 22 speak Igbo, while 6 speak neither Igbo nor Yoruba. How many students speak Yoruba and Igbo? ','96','8','64','12','','','b','','post-utme','2007',1181,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(31,'The expression a 3 + b 3 is equal  to ','(a2 +b)(a-ab+b2 )','(a+b)(a2 –ab+b2 )  ','(a-b2)(a2-  ab+b)','(a­-b)(a2+ab+b2)','','','b','','post-utme','2008',1214,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(32,'Factorize 16(3x +2y)2 -25(a+2b)2  ','(12x + 8y -5a-10b)(12x+8y-5a-10b)','20(3x +2y-a-2b)(3x+2y+a+1-2b) ','(12x +8y+5a+10b)(12x +8y-5a-10b)','20(3x +2y+ a+2b)(3x + 2y+a+2b)','','','a','','post-utme','2008',1117,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(33,'A cone has base radius 4cm and  height 3cm. The area of its curved surface is','12pcm2     ','20pcm2','24pcm2 ','15cm2','','','b','','post-utme','2008',1156,'Admin','0000-00-00 00:00:00','2020-07-26 17:53:46'),(34,'A. cylinder has height 4cm and base radius 5cm.its volume to 3 significant figure is  ','314.2cm2 ','31.42 cm2 ','251 4cm2 ','251cm2','','','b','','post-utme','2008',1189,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(35,'A cyclist rode for 30minutes at xkm/hr and due to a breakdown, he had to push the bike for 2hrs at (x – 5) km/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14','x<29','x<28','x<20','','','c','','post-utme','2008',1177,'Admin','0000-00-00 00:00:00','2020-07-27 06:47:56'),(36,'The expression ax2 + bx takes the value 6 when x = 1 and 10 when x = 2. Find its value when  x = 5       ','10','12','6','.-10','','','a','','post-utme','2008',1193,'Admin','0000-00-00 00:00:00','2020-07-27 06:47:56'),(37,'Dividing 2x3 – x2 – 5x + 1 by x  + 3 gives the remainder ','.-3','47','61','-47','','','d','','post-utme','2008',1198,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(38,'The difference of two numbers is 10, while their product is 39. Find these numbers','– 3 and 10 or 13 and 10,','3 and – 10 or 3 and 13,  ','3 and – 3 or 3 and 13,     ',' – 3 and – 13 or   13 and  3 ','','','d','','post-utme','2008',1183,'Admin','0000-00-00 00:00:00','2020-07-26 20:31:30'),(39,'The average age of x pupils in a class is 14 years 2 months. A pupils of 15years 2 months joins the class and  the average age is increased  by one month. Find x.      ','12, ',' 6, ','11,','14,','','','c','','post-utme','2008',1227,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(40,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. 13. How many learn both languages? ','60','45','15','120','','','c','','post-utme','2008',1119,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(41,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. How many learn Igbo only?   ','45','30','15','60','','','a','','post-utme','2008',1164,'Admin','0000-00-00 00:00:00','2020-07-26 20:31:30'),(42,'If the distance covered by a body in time t seconds is s = t2 - 6t2  - 5t, what is its initial velocity?  ','0ms-1    ','-4 ms-1 ','(13t2  - 12t + 5) ms-1   ','5ms-1 ','','','d','','post-utme','2008',1213,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(43,'The trigonometric expression cos2A + sin 2A can be written as:  ','cosA(cosA + sinA)  ','B.cos2A + sin2A – 2sinAcosA,  ','2sinAcosA + cos2A + sin2A,  ','D.cos2A +sinA  – 2sinAcosA','','','c','','post-utme','2008',1099,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(44,'With replacement ','0.9,','1, ','0.4,','0.49','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','d','','post-utme','2008',1128,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(45,'Without replacement ','0.1, ','0.47, ','0.42,   ','0.21','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','b','','post-utme','2008',1228,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(46,'The fair coins are tossed simultaneously. What is the probability of obtaining at least 1 tail turns up? ','1/4','3/4','1/2','1','','','b','','post-utme','2008',1175,'Admin','0000-00-00 00:00:00','2020-07-26 16:31:52'),(47,'A regular polygon has each of it angles as 1600. What is the number of sides of the polygon?  ','18,    ','36,       ','9,     ','20','','','a','','post-utme','2008',1170,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(48,'One angle of an octagon is 1000 while the other sides are equal. Find each of these exterior angles. ','800,','600,','1400,           ','400,   ','','','d','','post-utme','2008',1172,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(49,'A sector circle of radius 7.2cm which subtends an angle of 3000 at the centre is used to   form a cone. What is the radius of the base of the cone?. ','6cm ','7cm ','8cm    ','9cm      ','','','a','','post-utme','2009',1093,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(50,'If 32y – 6(3y) = 27, find y ','3','-1','2','-3','','','c','','post-utme','2009',1161,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(51,'An (n-2)2 sided figure has n diagonal, find the number n of diagonal for a 25 sided Figure   ','8','7','6','10','','','b','','post-utme','2009',1191,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(52,'A sum of money was invested at 8% per annum simple interest. If after 4 years, the   money became ','N180 ','N 165 ','N15   ','N 200','','','d','','post-utme','2009',1222,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(53,'Two fair dice are rolled. What is the probability that both show up the same number of point?','1/36 ','7/36 ','½ ','1/6','','','d','','post-utme','2009',1176,'Admin','0000-00-00 00:00:00','2020-07-27 06:47:56'),(54,'Find the probability of selecting a figure which is parallelogram from a square, a rectangle, a rhombus, a kite and a trapezium  ','3/5 ','2/5 ','1/5 ','1/5 ','','','a','','post-utme','2009',1275,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(55,'A man kept 6 black, 5 brown and 7 purple shirts in a drawer. What is the probability of his picking a purple shirt with his eyes close ','1/7','7/18 ','11/18 ','7/11','','','b','','post-utme','2009',1175,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(56,'If P varies inversely as V and V varies directly as R2, find the relationship between P and R given that R = 7 when P = 2 ','P = 98R2 ','PR2 = 98 ','P2R = 89 ','P = 1/98R ','','','b','','post-utme','2009',1262,'Admin','0000-00-00 00:00:00','2020-07-26 20:31:30'),(57,'If 7 and 189 are the first and fourth terms of a geometric progression respectively find the sum of the first three terms of the progression ','182','180','91','63','','','c','','post-utme','2009',1254,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(58,'Find the positive number n such that thrice its square is equal to twelve time the number ','1','4','2','5','','','b','','post-utme','2009',1232,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(59,'Given a regular hexagon, calculate each interior angle of the hexagon ','60','30','120','15','','','c','','post-utme','2009',1202,'Admin','0000-00-00 00:00:00','2020-07-27 06:47:56'),(60,'Factorize 6x2 – 14x – 12 ','2(x + 3)(3x – 2) ','6(x – 2)(x + 1) ','2(x – 3)(3x + 2) ','6(x + 2)(x – 1) ','','','c','','post-utme','2009',1183,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(61,'The value of (0.303)3 – (0.02)3 is ','0.019','0.0019','0.0268','0.000019','','','c','','post-utme','2009',1212,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(62,'What is the product of 27/5 ¸(3)3 and (1/5) ','5','3','2','1','','','c','','post-utme','2009',1200,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(63,'Find the probability that a number selected at random 40 to 50 is a prime number   ','3/11','5/11','5/10','4/10','','','a','','post-utme','2009',1158,'Admin','0000-00-00 00:00:00','2020-07-26 18:24:12'),(64,'If the length of the sides of a right angled triangle are (3x + 1)cm, (3x – 1)cm and xcm, what is x ? ','2','6','18','12','','','d','','post-utme','2009',1136,'Admin','0000-00-00 00:00:00','2020-07-27 06:47:56'),(65,'A number of pencils were shared out among peter, Paul and Audu in the ratio 2:3:5 respectively. If Peter got 5, how many were shared? ','15','25','30','50','','','b','','post-utme','2009',1113,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(66,'Solve 4x2 +20x -24 =0',' 1, 6',' -1, -6','6, -1','-6, 1','','','d','','post-utme','2013',1179,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(67,'What is the 15th term of the sequence -3, 2,7,…? ','65','66','68','67','','','d','','post-utme','2013',1139,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(68,'What is the remainder when x3 +5x2-6x+1 is divided by x-1? ','-1','2','-2','1','','','d','','post-utme','2013',1185,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(69,'If  are the roots of equation 6 +5x –x2 =0, find  x','11','-11','1','-1','','','b','','post-utme','2013',1202,'Admin','0000-00-00 00:00:00','2020-07-27 15:15:07'),(70,'Solve the equation  = 25x+4 ','-4, 2 ',' -4,-2 ','4, -2','4, 2','','','a','','post-utme','2013',1140,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(71,'What is the coordinate of centre of the circle X2+y2+2x-4y =10?  ','(-1,-2)','( 1, 2)',' (-1, 2) ',' (1, -2)','','','d','','post-utme','2013',1093,'Admin','0000-00-00 00:00:00','2020-07-26 11:51:42'),(72,'Solve the equation 3x+1 = 271-x  ','1/2','-1/2','3/4','-3/4','','','a','','post-utme','2013',1190,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(73,'Given f(x) =3+x and g(x) =3-x, find g (f(x))','6','x','-x','0','','','b','','post-utme','2013',1115,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35'),(74,'Differentiate sin (2x-5) with respect to x. ','cos (2x-5)','–cos (2x-5)   ',' 2cos (2x-5)','-2cos (2x-5)','','','c','','post-utme','2013',1194,'Admin','0000-00-00 00:00:00','2020-07-27 18:07:35');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `naijafb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `naijafb` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'What is the full meaning of APC','All progress Congress','Alliance progress Congress','All progressive Congress','Alliance progressive Congress','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full meaning of PDP','Power for the People','People Democracy Party','People Democratic Party','Share the money sharp sharp','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'How old was President Buhari when he won 2015 presidential general election','70','72','73','74','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'About how many million votes did General Buhari use to deaf President Goodluck Jonathan?','10.1 Million','5.1 Million','2.1 million','1.1 million','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Who was the spoken man of APC during the presidential elections?','Liel Mohammed','Lia Mohammed','Bello Mohammed','Adams Mohammed','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who was the spoken man of PDP during the presidential elections?','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'President Buhari is from what state?','Kano','Kaduna','Katsina','Jigawa','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many presidential elections did General Buhari contested in before wining in2015?','3','5','4','2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'The only woman that contested in 2015 presidential election was from which party','ANPP','CPC','AA','KOWA','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'What is the name of first female Nigerian to run for office as a democratic president?','Funmilayo Ransome Kuti','Remi Sonaiya','Oby Ezekweslli','Bola Ara','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'2015 general election INEC chairman was','Attahiru Hammed Jega','Attahiru Mohammed Jega','Attahiru Muhammadu Jega','Atta Muhammadu Jega','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'The official release of 2015 presidential general election results was on','March 30th','March 31th','March 29th','April 4th','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'2015 general presidential election took place on','14-Mar','28-Mar','1-Apr','14-Feb','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' The spokesperson for President Goodluck Jonathan?s during 2015 election was','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which country won 2015 FIFA U-17 world cup','Mali','Nigeria','Brazi','Spain','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' Nigeria became a republic in','1960','1962','1963','1965','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What day is regarded as democracy day?','27-May','1-May','29-May','25-May','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What day is regarded as workers? day?','27-May','1-May','29-May','25-May','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' What day is regarded as children?s day?','27-May','1-May','29-May','25-May','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,' In year 2015, Nigeria as an independent state will be how old','50','53','54','55','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' What are the colors of Nigeria Flag?','Green white green','Green and white','Green , green white','Green brown green','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,' Nigeria commercial capital is','Abuja','Port Harcourt','Lagos','Kano','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' How many states are in Nigeria?','37','36','35','34','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' Which of the following is not a minister of President Buhari administration 2015','Babatunde fashola','Chris Ngige','Kayode Fayemi','Solomon David','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' How many ministers were appointed by President Buhari Administration?','30','37','32','36','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Which Nigeria army office allegedly looted 32 billion naira?','Gen. Sambo Dasuki','Col. Sambo Dasuki','Major. Sambo Dasuki','Officer Sambo Dasuki','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' The full meaning of EFCC is','Economic and Financial Crimes Conduct','Economic and Finances Crimes Commission','Economic and Financial Crimes Commotion','Economic and Financial Crimes Commission','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' What is the Capital of Jigawa State?','Bornu','Maiduguri','Dutse','Makurdi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' What is the Capital of Benue State?','Bornu','Maiduguri','Dutse','Makurdi','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' What is the Capital of Zamfara State?','Bornu','Maiduguri','Gusau','Makudi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `physics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `physics` VALUES (1,'A 70kg man ascends a flight of stairs of height 4m in 7s. The power expended by the man is;','40W ','100W ','280W ','400W','','','a','','post-utme','2006',3898,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(2,'A body accelerates uniformly from rest at 6ms-2 for 8 seconds and then decelerates uniformly to rest in the next 5 seconds. The magnitude of the deceleration is: ','9.6ms-2 ','48 ms-2 ',' 24 ms-2 ','39.2 ms-2','','','a','','post-utme','2006',3828,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(3,'A nail is pulled from a wall with a string tied to the nail. If the string is inclined at an angle of 30oC to the wall and the tension in the string is 50N, the effective force used in pulling the nail is: ','25N ','25√3 N ','50N ','50√3N','','','a','','post-utme','2006',3772,'Admin','0000-00-00 00:00:00','2020-07-24 17:24:17'),(4,'If M and R are the mass and radius of the earth respectively and G is the universal gravitational constant, the earth’s gravitational potential at an altitude H above the ground level is: ','A.-GM/H ','–GM/(R+H) ','C. -GM/2H ','D. –GM/(R-H)','','','b','','post-utme','2006',3858,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(5,'Which of the following statements is not true? ','as the slope of an incline plane increases, the velocity ratio decreases, ','the efficiency of an incline plane decreases as the slope increases ','the effort required to push a given load up an incline plane increases as the slope increases','The mechanical advantage of smooth incline plane depends on the ratio of the length to the height of the plane.','','','d','','post-utme','2006',3776,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(6,'The ice and steam point of a thermometer are 20mm and 100mm respectively: A temperature of 75oC correspond to Ymm on the thermometer. What is Y? ','100mm ','70mm ','80mm ','60mm','','','c','','post-utme','2006',3790,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(7,'  An electric kettle with negligible heat capacity is rated at 2000W, if 2.0kg of water is put in it, how long will it take temperature of water to rise from 20oC to 100oC? (specific heat capacity of water = 4200J/Kg-1K-1) ','336s ','240s ',' 168s ','84s','','','a','','post-utme','2006',3792,'Admin','0000-00-00 00:00:00','2020-07-25 10:19:29'),(8,' A quantity of ice –10oc is heated until temperature of heating vessel is 90oc. Which of the following constant is NOT required to determine the quantity of heat supplied to the vessel? ','Specific latent heat of vaporization ','specific heat capacity of ice ','specific latent heat of fusion ','specific heat capacity of water','','','a','','post-utme','2006',3793,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(9,'The scent from a jar of perfume open move through the air molecules by ','evaporation ','osmosis ','diffusion ','Convection','','','c','','post-utme','2006',3944,'Admin','0000-00-00 00:00:00','2020-07-26 11:47:26'),(10,'  A convex lens of focal length 10.0cm is used to form a real image which is half the size of the object. How far from the object is the image? ','45cm ','30cm ','15cm ','20cm','','','c','','post-utme','2006',3770,'Admin','0000-00-00 00:00:00','2020-07-24 01:39:46'),(11,'An object of height 3.00cm is placed 10cm from a biconvex lens of 15cm, the image of the object is ','real and 3.00cm tall ','virtual and 3.00cm tall ',' virtual and 9.00cm tall ','real and 9.00cm tall','','','c','','post-utme','2006',3840,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(12,'The most suitable type of mirror used for the construction of search light is the: ','concave mirror ','Convex mirror ','Spherical mirror ','Parabolic Mirror','','','d','','post-utme','2006',3873,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(13,'Light wave and ripples of water are similar because both','are longitudinal waves ','have the same velocity ','can be diffracted and refracted ','have the same frequency ','','','c','','post-utme','2006',3900,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(14,'Three 4Ω resistors were connected in series by Tola, while Ade connected the ','1:02','1:09','1:10','1:15','','','b','','post-utme','2006',3882,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(15,'A coil of copper wire of N turns is kept rotating between the poles of a magnet  such that the magnetic flux linking the coil changes continuously. Which of the  following statements is TRUE? ','An e.m.f is induced in the coil such that when  the change of flux is positive the e.m.f is positive, and when the change of flux is negative the e.m.f is negative. ','An e.m.f is induced in the coil whose magnitude  is inversely proportional to both the number of turns in the coil and the rate of  change of magnetic flux ','. An e.m.f is set up in the permanent magnet which  reduces the flux in the coil to zero ','A current flows in the coil and e.m.f is set  up proportional to both the rate of change of the flux and the number of turns','','','d','','post-utme','2006',3959,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(16,'The principle of operation of an induction coil is based on ','Ohm’s law ','Ampere’s Law ','Faraday’s Law ','Coulomb’s Law','','','c','','post-utme','2006',3845,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(17,'Which of the following radiations cannot be deflected by an electric field or ','(i) and (ii) only ','(ii) only ','(iii) and (iv) only ','(i) and (iii) only','','','c','','post-utme','2006',3829,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(18,'The half-life of a radioactive element is 9 days. What fraction of atoms has decayed in 36 days? ','16-Jan','¼ ',' ½ ','15/16','','','d','','post-utme','2006',3806,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(19,'What is the dimension of pressure? ','ML-1T-2 ','MLT-2 ','ML2T-3 ','ML-3','','','a','','post-utme','2007',3869,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(20,'Calculate the length of a displaced pendulum bob that passes its lowest point twice every second. [g=10ms-1] ','.100m ','0.253m ','0.450m ','0.58m','','','b','','post-utme','2007',3809,'Admin','0000-00-00 00:00:00','2020-07-24 17:23:30'),(21,'When a ball rolls on a  smooth level ground, the motion of its centre is ','translational ','Random ','Oscillatory ','Rotational','','','a','','post-utme','2007',3912,'Admin','0000-00-00 00:00:00','2020-07-25 23:18:36'),(22,'A vehicle of mass m is driven by an engine of power P from rest. Find the minimum time it will take to acquire a speed v. ','mv2/p ','mv2/2p ','mv/p ','mv/2p','','','b','','post-utme','2007',3791,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(23,'A box of mass 40kg is being dragged  along by the rope inclined at 60o to the horizontal. The frictional force between the box and the floor is 100N and the tension on the rope is 300N. How much work is done in dragging the box through a distance of 4m? ','680J ','200J ','100J ','400J','','','c','','post-utme','2007',3873,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(24,'A body is projected from the earth’s surface with the hope of letting it escape from the earth gravitational field. What is the minimum escape velocity?  [Earth’s radius = 6.4 x 103km, g = 10 ms-2]','11.3kms-1 ','13.3kms-1 ','12.3kms-1 ','14.3kms-1 ','','','a','','post-utme','2007',3811,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(25,'A uniform rod PQ of mass 2kg and length of 1m is pivoted at the end P, if a load of 14N is placed at the centre, find the force that should be applied vertically upwards at Q to maintain the rod in equilibrium ','7N ','28N ','68N ','17N','','','d','','post-utme','2007',3832,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(26,'The energy contained in wire when it is extended by 0.02m by a force 500N is ','104J ','103J ','10J ','5J','','','d','','post-utme','2007',3921,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(27,'What is the acceleration due to gravity ‘g’ on the moon, if ‘g’ is   10ms-2 on the earth?','0.74ms-2 ','0.1ms-2 ','10.0 ms-2 ','1.67 ms-2','','','c','','post-utme','2007',3844,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(28,'A 5kg block is released from rest on a smooth plane inclined at an angle of 30o to the horizontal. What is the acceleration down the plane?  [ g = 10ms-2]','5.0 ms-2 ',' 8.7 ms-2 ','25.0 ms-2 ','5.8 ms-2   ','','','a','','post-utme','2007',3976,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(29,'A rectangular metal block of volume 10-6m3 at 273K is heated to 573K, if the coefficient of linear expansion is 1.2 x 10-5K-1, the percentage change of its volume is ','1.50%','1.10%','0.10%','0.40%','','','b','','post-utme','2007',3788,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(30,'A temperature scale has a lower fixed point of 40mm and an upper fixed point of 200mm. What is the reading on this scale when the temperature reads 60oc? ','136.omm ','33.3mm ','96.0mm ','36.0mm','','','a','','post-utme','2007',3844,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(31,'A 500kg car was initially at rest travelled with an acceleration of 5ms-2, what is its kinetic energy after 4s ','2.5 x 103J ','105J ','5 x 103J ','5 x 105J','','','b','','post-utme','2007',3831,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(32,'The temperature at which the water vapour in the air saturates the air and begins to condense is','melting point ','triple point ','dew point ','melting point','','','c','','post-utme','2007',3810,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(33,'The period of a simple pendulum will increase by what factor of its extensible length increased by a factor of four ','2','4','2','¼','','','c','','post-utme','2007',3894,'Admin','0000-00-00 00:00:00','2020-07-24 17:24:17'),(34,'An air column 10cm in length is trapped into the sealed end of a capillary tube by a 15cm column of mercury with the tube held vertically. On inverting the tube, the air column becomes 15cm long, what is the atmospheric pressure during the experiment? ','76cm ','75cm ','60cm ','70cm','','','b','','post-utme','2007',3799,'Admin','0000-00-00 00:00:00','2020-07-26 04:20:30'),(35,'An electric cell has an internal resistance of 2Ω. A current of 0.5A was measured when a resistor of resistance 5Ω was connected across it. Determine the electromotive force of the cell','3.5V ','2.5V ','4.5V ','2.35V','','','a','','post-utme','2007',3947,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(36,'The speed of light in air is 3 x 108ms-1. If the refractive index of light from air to water is 4/3, calculate the speed of light in water ','2.25 x 108ms-2 ','2.25ms-1 ','4.00ms-1 ','4.33ms-1','','','c','','post-utme','2007',3838,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(37,'It is known that an atomic nucleus comprises of positive charged protons. Which of the following also exist in the nucleus? ','a beta particle ','an Alpha particle ','A neutron ','An electron','','','c','','post-utme','2007',3878,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(38,'The silver wall of a vacuum flask prevents heat loss due to ','conduction ','Convection ','Radiation ','Diffraction','','','c','','post-utme','2007',3819,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(39,'The electromagnetic waves that are sensitive to temperature changes are','ultra-violet rays ','Gamma rays ','infrared-rays ','X-rays','','','c','','post-utme','2007',3766,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(40,'Under constant tension and constant mass per unit length, the note produced by a plucked string is 500Hz when the length of the string is 0.90m, at what length is the frequency 150Hz?','6m ','3m ','5m ','4m','','','b','','post-utme','2007',3896,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(41,'Two bodies P and Q are projected on the same horizontal plane, with the same initial speed but at different angles of 30o and 60o respectively to the horizontal. Neglecting air resistance, what is the ratio of range of P to that of Q? ','1:01','1:√3 ','√3:1 ','1:02','','','a','','post-utme','2007',3835,'Admin','0000-00-00 00:00:00','2020-07-24 17:23:30'),(42,'A capacity of 2.0 x 10-11F and an inductor are joined in series. The value of the inductance that will give the circuit a resonant frequency of 200KHz is ','1/16H ','1/8H ','1/64H ','1/32H','','','d','','post-utme','2007',3882,'Admin','0000-00-00 00:00:00','2020-07-26 12:27:11'),(43,'Which of these is not a fundamental S.I unit ','Ampere ','Kelvin ','Seconds ','Radians','','','d','','post-utme','2009',3875,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(44,'If two masses 40g and 60g respectively, are attached firmly to end of a light metre rule, what is the centre of gravity of the system? ','at the mid point of the metre rule ','40cm from the lighter mass ','40cm from the heavier masses ','60cm from the heavier masses ','','','c','','post-utme','2009',3963,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(45,'To find the dept of the sea, a ship send out a second waves and an echo after one second. If the velocity of sound in water is 1500m/s, what is the depth of the sea ','0.75km ','1.50km ','2.20km ','3.00km ','','','a','','post-utme','2009',3708,'Admin','0000-00-00 00:00:00','2020-07-26 11:47:26'),(46,'A machine has a velocity ratio of 5, if it requires a 50kg weight to overcome 200kg weight, the efficiency is? ','4%','5%','40%','80%','','','d','','post-utme','2009',3843,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(47,'If the force on a charge of 0.2 Coulomb in an electric field is 4N, then electric intensity of the field is ','0.8','0.8N/C  ','20.0 N/C ','4.2 N/C ','','','c','','post-utme','2009',3825,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(48,'The resistance of a wire depends on ','the length of the wire ','the diameter of the wire ','the temperature of the wire ','All of the above','','','d','','post-utme','2009',3944,'Admin','0000-00-00 00:00:00','2020-07-26 04:20:30'),(49,'Which of these is not contained in a dry cell? ','carbon rod ','paste of magnesium dioxide ','paste of ammonium chloride ','zinc case ','','','c','','post-utme','2009',3909,'Admin','0000-00-00 00:00:00','2020-07-26 04:20:30'),(50,'When a yellow card is observed through a blue glass, the card would appear as ','black ','green ','red ','white ','','','a','','post-utme','2009',3913,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(51,'A devise that converts sound energy into electrical energy is ','the horn of a motor car ','An AC generator ','A microphone ','Telephone earpiece ','','','c','','post-utme','2009',3832,'Admin','0000-00-00 00:00:00','2020-07-20 01:48:00'),(52,'Radio waves have the velocity of 3 x 108ms-1. If a radio station sends out a broadcast on a frequency 800kHz, what is the wavelength of the broadcast? ','375.0m ','267.0m ','240.0m ','37.5m ','','','a','','post-utme','2009',3918,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(53,'The mode of heat transfer which does not require material medium is','conduction ','radiation ','convection ','propagation','','','b','','post-utme','2009',3839,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(54,'The height at which the atmosphere ceases to exist is about 80km, if the atmosphere pressure on the ground level is 760mmHg, the pressure at height of 20km above the ground is ','380mmHg ','570mmHg ','190mmHg ','480mmHg','','','c','','post-utme','2009',3817,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(55,'A simple pendulum 0.6 long has a period of 1.55, what is the period of a similar pendulum 0.4 long in the same direction ','1.4 √1/3s ','1.5 √1/3s ','2.25s ','None of the above','','','d','','post-utme','2009',3813,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(56,'Which of the following  is common to evaporation and boiling, they ','take place at any temperature ','are surface phenomena ','involve change of state ','take place at a definite pressure ','','','b','','post-utme','2009',3866,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(57,'A house hold refrigerator is rated 200 watts. If electricity cost 5k per Kwh, what is the cost of operating it for 20 days ','N4.80  ','N48.00 ','N480.00 ','N4800.00 ','','','a','','post-utme','2009',3910,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(58,'The resistance of a 5m uniform wire of cross sectional area of 0.2 x 106m2 is 0.45. What is the resistivity of the material of the wire ','1.10 x 105 ohms ','4.25 x106Ωm ','2.40 x 107Ωm ','1.70 x 108Ωm ','','','a','','post-utme','2009',3883,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(59,'Which of the following instruments has a pure tone? ','guitar ','Vibrating String ','Turning forks ','Screen ','','','c','','post-utme','2009',3888,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(60,'Four lenses are being considered for use as a microscope object. Which of the following focal length is most suitable ','-5mm ','+5mm ','5cm ','+5cm ','','','b','','post-utme','2009',3779,'Admin','0000-00-00 00:00:00','2020-07-18 11:24:58'),(61,'The product PV where P is pressure and V is a volume has the same unit as ','force ','power ','energy ','acceleration ','','','c','','post-utme','2009',3932,'Admin','0000-00-00 00:00:00','2020-07-25 23:18:36'),(62,'The force with which an object is attracted to the earth is called ','acceleration ','mass ','gravity ','weight','','','d','','post-utme','2009',3836,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(63,'The refractive index of a liquid is 1.5, if the velocity of light in a vacuum is 3.0 x 108ms-1, the velocity of light in the liquid is ','1.5 x 108ms-2 ','2.0 x 108ms-1 ','3.1 x 108ms-1','4.5 x 108ms-1 ','','','d','','post-utme','2009',3798,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(64,'A train has an initial velocity of 44m/s and an acceleration of -4m/s2 what is its velocity after 10seconds? ','2m/s ','4m/s ','8m/s ','12m/s ','','','b','','post-utme','2009',3848,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(65,'A man of mass 50kg ascends a flight of stair 5m high in 5 seconds. If acceleration due to gravity is 10ms-2 the power expanded is ','100W ','300W ','250W ','500W','','','d','','post-utme','2009',3931,'Admin','0000-00-00 00:00:00','2020-07-24 17:22:48'),(66,'Two strings of the same length and under the same tension give notes of frequency in the ratio 4:1, the masses of the string are in the ratio of ','2:01','1:02','1:04','1:16','','','d','','post-utme','2009',3804,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(67,'Which of the following phenomena cannot be explained by the molecular theory of matter? ','evaporation ','expansion ','conduction ','radiation','','','d','','post-utme','2010',3831,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(68,'The most likely measurement of length of an object using a venier caliper is: ','3.0cm ','3.3cm ','3.33cm ','3.333cm','','','b','','post-utme','2010',3976,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(69,'If 21g of alcohol of density 0.7gcm-3 is mixed with 10g of water, what would be the density of the resulting mixture? ','780gcm-3 ','0.78gcm-3 ','30gcm-3 ','10gcm-3','','','c','','post-utme','2010',3887,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(70,' For  a particle having an x co-ordinate that varies in time according to the express ion x = 4t -2t2 The instantaneous velocity for of the particle at t = 2.5s is:','12m/s ','6m/s ','0m/s ','10m/s','','','b','','post-utme','2010',3877,'Admin','0000-00-00 00:00:00','2020-07-18 11:38:18'),(71,'  A long-jumper leaves the ground at an angle of 20o above the horizontal and at speed of 11m/s. How far does it jumps in the horizontal direction? ','0.384m ','7.94m ','8.45m ','5m','','','d','','post-utme','2010',3835,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(72,'A mass of 0.5kg is attached to one end of a helical spring and produces an extension of 2.5cm. The mass now set into vertically oscillation of amplitude 10mm. The period of oscillation is: (g = 10m/s2) ','0.33s ','100s ','200s ','280s','','','a','','post-utme','2010',3815,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(73,'A boat is passing under a bridge. The deck of the boat is 15m below the bridge. A small package is to be dropped from the bridge onto the deck of the boat is 25m from just below the drop point. What speed is necessary to have the package land in the boat? (g= 9.8ms-2)','17m/s ','14m/s ','1.7m/s ','4.9m/s','','','b','','post-utme','2010',3960,'Admin','0000-00-00 00:00:00','2020-07-25 17:21:17'),(74,'A 0.60kg rubber stopper is whirled in a horizontal circle of 0.80m radius at a rate of 3.0 revolutions per second. What is the tension in the string? ','14N ','80N ','170N ','24N','','','c','','post-utme','2010',3921,'Admin','0000-00-00 00:00:00','2020-07-26 11:47:26'),(75,'An automobile is traveling at 60km/hr. calculate the angular velocity of the 0.35m radius wheels. ','16.67rad/s ','47.6 rad/s ','21 rad/s ','171.4 rad/s','','','b','','post-utme','2010',3825,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(76,'An air bubble at the bottom of a lake has a volume of 20cm3, pressure of 4.9Pa, and temperature 4oc the bubble rises to the surface where the temperature is 20oc and the pressure 1.0Pa. Find the volume as the bubble reaches the surface. (take 1 atm = 1.0 x 105 N/m2) ','124cm3 ','319cm3 ','60cm3 ','104 cm3','','','d','','post-utme','2010',3886,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(77,'  A gas at constant pressure of 4.0 x 105 Pa is cooled so that its volume decreases from 1.6m3 to 1.2m3. What work is performed by the gas? ','6.4 x 105 J ','3.2 x 105 J  ','1.6 x 105 J ','0.4 x 105 J  ','','','c','','post-utme','2010',3853,'Admin','0000-00-00 00:00:00','2020-07-27 19:50:11'),(78,'Highly polished silvery  surfaces are: ','poor absorbers but good emitter of radiation ','good absorbers and good emitters of radiation ','poor emitters but good reflectors of radiation ','poor emitters and poor reflectors of radiation','','','c','','post-utme','2010',3856,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(79,'A 0.040kg string 0.80m long is stretched and vibrated in a fundamental mode with a frequency of 40Hz. What is the speed (of propagation) of the wave and tension in the string? ','64m/s ','340m/s ','32m/s ','128m/s','','','a','','post-utme','2010',3964,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(80,'What is the total power output of a source with intensity 0.050 W/m2 at a distance of 3.0m from the source? ','112W ','5.6W ','15W ','30W','','','b','','post-utme','2010',3757,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(81,'The superposition of two or more waves to produce a maximum or zero effect at a point is known as: ','reflection ','refraction ','diffraction ','interference','','','d','','post-utme','2010',3893,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(82,'The acceleration due to gravity ','increases with increasing altitude ','decreases with increasing altitude ','increases with increase in the square of the altitude ','is not affected by the altitude','','','b','','post-utme','2010',3921,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(83,'Which of the following statements are correct of nuclear fission? During the process \\nI. energy is released \\nII. More neutrons are released than those that cause fission \\nIII. Small nuclei merge into large nuclei \\nIV. There is a loss on mass\\n','II and I only','III','I,II and IV','IV and III','','','c','','post-utme','2010',3936,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(84,'Which of the following statements is not true? ','electric field intensity is force per unit charge. ','electric potential is a vector ','the S.I unit of electric field strength is N/C ','electric field intensity is equal to the potential gradient','','','b','','post-utme','2010',3803,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(85,'Which of the following about electrolysis is false? ','liquid that conduct electricity and are split up chemically by the current are electrolyzed','the current into the electrolyte by the anode ','the current is taken away from the electrolyte by the cathode ','the container which holds the electrolyte and the electrode is the voltmeter','','','d','','post-utme','2010',3891,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(86,'Which of the following is not true about the properties of x-rays? ','they are not deflected by magnetic or electric field','they ionized a gas making it a conductor ','they are massive ','they have high penetrating power ','','','c','','post-utme','2010',3902,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(87,'A transformer is connected to a 240 V supply. The primary coil has 40 turns, and the secondary is found to be 960V. What is the ratio of the number of turns of the primary coil to the number of turns of the secondary coil? ','4:01','1:04','1:06','6:01','','','a','','post-utme','2010',3819,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(88,'Which of the following is not true about an object that is projected upwards at angle θ? ','the velocity is maximum at the maximum height ','the acceleration along the horizontal direction is zero ','the maximum range (Rmax) for an object moving with speed u is given by u2/g ','the time it takes to get the maximum height is equal to the time it takes to come back to the point of projection','','','a','','post-utme','2010',3857,'Admin','0000-00-00 00:00:00','2020-07-28 02:18:07'),(89,'When three coplanar non-parallel forces are in equilibrium i. they can be represented in magnitude and direction by the three sides of a triangle taken in order ii. The lines of action meet at a point iii. The magnitude of any one force equals the magnitude of the other two forces iv. Any one force is the equivalent of the other two. Which of the following statements above are correct? ','i and iii only ','i and ii only','i, ii,iii and iv ','none of them','','','b','','post-utme','2010',3894,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(90,'Which of the following statements is not true about a body performing simple harmonic motion? ','the linear speed is the product of the angular speed and the radius or amplitude ','the linear acceleration is the product of the square of the angular speed and the displacement ','frequency is the number of complete revolution per second made by a vibrating body ','the S.I unit of amplitude is Hertz (Hz)','','','d','','post-utme','2010',3792,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(91,'In the force of gravity on an object of mass m, the gravitational field strength, g, is given by the following equation. ','g = √MF ','g = MF ','g = M√F ','g = F/M.','','','d','','post-utme','2010',3914,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(92,' A body of mass m slides down an inclined plane with a constant velocity. If the angle of the incline is Ø, the coefficient of kinetic friction between the body and the plane is  ','cot Ø ','cos Ø  ','tan Ø  ','sine Ø','','','c','','post-utme','2011',3899,'Admin','0000-00-00 00:00:00','2020-07-26 17:12:51'),(93,'the velocity of a 500 kg car moving long a straight  road, changes from 12 m/s to 20 m/s in 5 sec. calculate the average force moving the car. ','2000N  ','1600N  ','1200N  ','800N','','','d','','post-utme','2011',3796,'Admin','0000-00-00 00:00:00','2020-07-25 23:18:36'),(94,'When a 2kg body is at a height 5m above the floor, its velocity  is 4m/s. What is its total energy  at this height? (acceleration due to gravity = 10m/s2)  ','80J  ','00J  ','  116J  ',' 180J','','','c','','post-utme','2011',3877,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(95,'The density of sea water is 1030kg/m3. What is the pressure at a depth of  80 m below sea surface? Atmospheric pressure is 1.013 x 105 pa and acceleration  due to gravity is 10 m/s2  ','9.25 x  105 pa  ','8.24 105 pa   ','7.23 x 105 pa  ','8.34 x 109 pa','','','a','','post-utme','2011',3848,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(96,'6000 J of heat is delivered to 10g of dry ice at O0C. What is the final temperature if the container has a heat capacity of 20J/K? (specific heat of water = 4200j/kg.k, latent heat of fusion of ice = 3.33 x 105J/kg)  ','142.90C  ','63.60C  ','43.00C  ','00C','','','c','','post-utme','2011',3745,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(97,'A sample of radioactive substance, whose half-life is 16 days, registers 32 decays per second. How long will it take for the rate of decay to reduce to 2 decays per second? ','80 days  ','64 days  ','48 days  ','32 days','','','b','','post-utme','2011',3933,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(98,'When white light passes through a triangular prism, the emerging rays of light arranged in order of decreasing angle of deviation are ','red, orange, yellow, green  ','blue, green,  orange, yellow ','red, green, yellow, orange ','blue, green, yellow, orange','','','d','','post-utme','2011',3882,'Admin','0000-00-00 00:00:00','2020-07-26 12:45:58'),(99,' The electric field between two parallel plates is E.  A particle of mass m and carrying charge q is released at a point half the distance between the plates. The velocity  of the particle t  seconds after its release is  ','qEt/m ','qEt2  ','mqt2/2E  ','MQT/2E','','','','','post-utme','2011',3826,'Admin','0000-00-00 00:00:00','2020-07-26 04:20:30'),(100,'An airplane increases its speed 36 km/h to 360 km/h in 20.0 s. How far does it travel while accelerating.  ','4.4 km     ','1.1 km  ','2.3 km  ','1.0 km','','','b','','post-utme','2011',3767,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(101,'An object is said to be in simple harmonic motion (SHM) if  ','the acceleration is directly proportional to the displacement and is directed towards the equilibrium position of the object. ','the acceleration is inversely proportional to the displacement and directed toward the equilibrium position  of the object  ','the displacement is directly proportional  to the momentum  and directed toward the equilibrium position of  the object ','the momentum is directly proportional to the displacement and directed toward the equilibrium position of the object.','','','a','','post-utme','2011',3851,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(102,'A wheel and axle is used to raise a weight of 600n with an effort of 300n. if the radii of the wheel and axle are 50 cm and 10 cm respectively, what is the efficiency of the system      ','40%','50%','20%','10%','','','a','','post-utme','2011',3782,'Admin','0000-00-00 00:00:00','2020-07-26 12:51:50'),(103,'The  term “Viscosity” is used to describe  ','surface tension in fluids ','friction in fluids  ','surface tension in solids  ','moment in solids','','','b','','post-utme','2011',3946,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(104,' A particle is in equilibrium under the action of three forces. One force is 40N towards the west and another is 30N towards the south. What is the third force acting on the body?   ','40N, N530E  ','50N, N370E   ','50N, N530E     ','40N, N370E','','','b','','post-utme','2011',3803,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(105,'A hydraulic press works on the principle of transmission of   ','force  ','energy  ','volume  ','pressure','','','d','','post-utme','2011',3971,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(106,'Which of the following is not a thermometer?  ','thermocouple  ','pyrometer  ','hydrometer  ','platinum resistance thermometer. ','','','c','','post-utme','2011',3713,'Admin','0000-00-00 00:00:00','2020-07-26 04:20:30'),(107,'Dry air of column length 10 cm is trapped by a pellet of mercury of length 15 cm, with the open end uppermost. When the capillary is inverted the length of the air column increased to 25 cm while that of mercury remained constant. Calculate the atmospheric pressure (in cm of Hg.)  ','35 cm Hg  ','15 cm Hg  ','20 cm Hg  ','35 cm Hg','','','d','','post-utme','2011',3875,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(108,'Which of the following is not true about a chemical cell?   ','in primary cells the process through which current is generated is irreversible  ','secondary cells can be recharged after they run down by passing a current into the cell in the  reverse direction ','positive ions are attracted to the positive electrode where they become neutralized by acquiring electrons  ','primary cells  can be recharged','','','d','','post-utme','2011',3794,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(109,'A cigarette lighter in a car is a resistor that, when activated, is connected across the 12 – V battery. If the lighter dissipates 33 W of power, find the current it delivers  to the lighter.  ','9.90 Ω  ','6.60 Ω  ','4.36','17.50Ω','','','c','','post-utme','2011',3863,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(110,'A p-n junction can act as  ','an amplifier  ','a rectifier  ','an inductor ','a capacitor ','','','b','','post-utme','2011',3907,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52'),(111,'  Calcium has a work function of 19 eV with a wavelength of 150 nm. Calculate the maximum energy of a photo electron emitted. (1 eV = 16.1 x 10-19J, h = 6.6 x 10-34Js)            ','6.35 Ev  ','8.25 cV  ','14.60eV  ','None of above','','','d','','post-utme','2011',3994,'Admin','0000-00-00 00:00:00','2020-07-26 11:37:34'),(112,'Sound waves were sent out from a source and after being reflected from  an obstacle were received by a sensor placed beside the source. If the waves were received 10 seconds after they were sent out, calculate  the distance between the  source and the obstacle (speed of sound = 330 m/s) ','990m  ','660m ','1320 m ','None of above','','','d','','post-utme','2011',3862,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(113,'Two plane mirrors are inclined at angle 45 to another. A ray of light has incident angle of 20 at the surface of the first mirror. The reflected ray is then incident on the second mirror. Calculate the angle of reflection at the second mirror ','65','45','25','20','','','c','','post-utme','2012',3819,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(114,'When the length of the string of a simple pendulum is L its period is 0.5π second is 0.5π seconds. The period when the length is increased to 4L will be ','0.5π seconds','π seconds ','2π seconds ','4π seconds','','','b','','post-utme','2012',3886,'Admin','0000-00-00 00:00:00','2020-07-24 17:24:17'),(115,'A uniform meter rule AB has a mass 15g. A 30g mass is suspended at the 10.0cm mark, and another 5g mass is suspended at the 65.0cm mark. Calculate the position of the fulcrum that will keep the meter rule balanced horizontally ','50.0cm ','32.0cm ','27.5cm ','17.9cm ','','','d','','post-utme','2012',3778,'Admin','0000-00-00 00:00:00','2020-07-25 23:18:36'),(116,'rectangular block measures 40cm x 25cm and made of material of density 7800kg/m3. Calculate the pressure the block exerts on the floor when it stands on the smallest of its surfaces ','3.12 x 103N/m2 ','3.90 x 103N/m2 ','1.9 x 104N/m2 ','3.12 x 104N/m2','','','b','','post-utme','2012',3959,'Admin','0000-00-00 00:00:00','2020-07-28 01:26:52'),(117,'A ship sinks to the bottom of a 250m deep lake. The atmospheric pressure over the lake is 1.03 x 105 Pa. Taking the density of water in the lake to be 1000 kg/m3, calculate the pressure exerted on the boat. [acceleration due to gravity = 10 m/s2] ','2.60 x 106Pa  ','2.50 x 106Pa ','2.60 x 105Pa ','1.03 x 105Pa','','','a','','post-utme','2012',3776,'Admin','0000-00-00 00:00:00','2020-07-21 19:33:12'),(118,'Three knives made of steel, plastic and flat wood respectively are placed on the table for an equal amount of time. The steel knife feels coldest to touched because','The steel knife has the lowest temperature ','The plastic and wooden knives have absorbed more heat from the environment than the steel knife. ','Both wooden and plastic knives have lower densities than the steel ','The steel knife conducts heat faster from the finger than the wooden and plastic knives ','','','d','','post-utme','2012',3819,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(119,'Which of the following quantities is a scalar quantity?','Electric field ','Coulomb force','Electric potential ','Acceleration due to gravity','','','c','','post-utme','2012',3796,'Admin','0000-00-00 00:00:00','2020-07-25 23:18:36'),(120,'A car accelerates at 5.0m/s2 for 6s, the travels at the speed attained for 20s, and comes to rest after another 4.0s. Calculate the average velocity of the car during the motion.','25.0m/s','20.0m/s ','1.25m/s ','0.16m/s','','','a','','post-utme','2012',3875,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(121,'Which of the following quantities is equal to the area under a velocity-time graph?','Acceleration ','Distance travelled ','Average Velocity of motion ','Total time taken.','','','b','','post-utme','2012',3906,'Admin','0000-00-00 00:00:00','2020-07-25 23:18:36'),(122,'A 25N force pulls a 2.0kg body up a 300 inclined plane. If force is parallel to the plane and the body moves up the plane at constant velocity. Calculate the magnitude of the frictional force between the body and the plane. [g =10m/s2]','25N','10N','5N','15N','','','d','','post-utme','2012',3904,'Admin','0000-00-00 00:00:00','2020-07-26 11:03:44'),(123,'The process by which solid change directly to vapour is called ','Evaporation','Fusion ','Condensation ','Sublimation ','','','d','','post-utme','2012',3768,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(124,'A coin is at the bottom of a bucket filled with a liquid whose refractive index is 1.35. The coin appears to be 12.0cm below the surface of the liquid. Calculate the depth of the liquid.','16.2cm  ','13.4cm  ','8.9cm  ','5.4cm','','','a','','post-utme','2012',3877,'Admin','0000-00-00 00:00:00','2020-07-26 11:06:15'),(125,'A 3.0cm object is placed 12.0cm in front of bi-convex lens of focal length 8.0cm. Calculate the height of the image of the object.  ','3.0cm ','6.0cm ','12.0cm ','24.0cm','','','d','','post-utme','2012',3804,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(126,'To use a milli-ammeter to measure current up to 10A, what connection needs to be made?','A small resistance must be connected in parallel with the milli-ammeter ','A small resistance must be connected in series with the milli-ammeter ','A high resistance must be connected in parallel with the milli-ammeter ','The milli-ammeter must be disconnected from the circuit.','','','b','','post-utme','2012',3876,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(127,'Two 2µF capacitors are connected in parallel. The combination is connected in series with a 6µF capacitor. What is the equivalent capacitor for the combination?','10.0µF  ','8.0µF  ','1.5µF  ','2.4µF','','','c','','post-utme','2012',3815,'Admin','0000-00-00 00:00:00','2020-07-26 08:38:21'),(128,'Five 100-Watt bulbs are put on for 45days during which the home-owner is on vacation. If 1kW-hour of electricity cost N7.50, how much does it cost the home-owner? ','N168.75  ','N90.0  ','N4050.00  ','N810.00','','','d','','post-utme','2012',3867,'Admin','0000-00-00 00:00:00','2020-07-26 12:27:11'),(129,'To convert an a.c generator to d.c generator, one needs to ','Remove the brush touching the slip rings ','Laminate the armature ','Replace the permanent magnets with  iron-core armature. ','replace the slip rings with split rings','','','d','','post-utme','2012',3750,'Admin','0000-00-00 00:00:00','2020-07-26 12:37:52');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `proentertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `progeneral` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `category` varchar(30) COLLATE utf8_unicode_ci NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `progeneral` VALUES (1,'World environmental day happened last week in what day of the week','Tuesday','Wednesday','Thursday','Friday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'World environmental day is on every','5th of June','1st of June','4th of June','3rd of June','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'ECOWAS is now how many years old','30','40','20','35','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many people died by Boko Haram since the inception of new government','over 20','over 50','30','50','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Ghana petrol station explosion happened on ','Monday','Tuesday','Wednesday','Friday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Which Nigeria artiste was nominated for Black Canadian award','Yemi Alade','Tu-face','Psquare','Asa','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'The new Nigeria elected nation assembly is the ','7th ','8th ','5th ','6th ','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'President Buhari is to participate in G7 summit when','Friday','Saturday','Sunday','Monday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'President Buhari attended what \\\"G\\\" summit','G8','G7','G16','G10','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'APC house of representative  speaker election was won by','Tinub','Gbajabiamila','Saraki','Dark Mark','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which state reinstate 480 sacked workers','Lagos','Yobe','Sokoto','Ogun','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which Sokoto local government area reinstate 480 sacked workers',' North ','South ','East','West','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many petrol tanker truck accident happened last week in Nigeria','1','2','3','4','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Some part of Afghanistan district was captured by','Boko Haram','Taliban','Islamic State','Islamic brother hood','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which country was affect by middle east respiratory syndrome (MERS)','North Korea','South Korea','China','Japan','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria state governor rode Okada(Motor bike) to state house of assembly inauguration','Lagos governor','Ogun governor','Ekiti governor','Rivers governor','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'About how many people where on board in China ship disaster','about 300','about 200','over 400','over 500','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country in Africa asked Nigeria to help in training of army and police','Sudan','Egypt','South Sudan','Angola','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Which company sue PDP for 70 million campaign debt','Silon Concepts Limited','AIT','Media Technologies','Waat Concepts','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'The UEFA championship was played in','England','Moscow','Berlin','Paris','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Sexual intercourse with children under 11 bill was pass into laws when','5th of June','3rd June','4th of June','1st June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'did President Buhari travelled to Chad last week','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'What day of the week  did President Buhari travelled to Niger last week','Monday','Tuesday','Wednesday','Thursday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'How many special advisers did the president presented to Nation assembly','3','10','15','12','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What is the name of governor of Kano state','Abdulia Ganduje','El Rfia','Hammed Musa','Atiku Abubaka','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' How many CBN staff was sent to prison by EFCC ','10','8','7','6','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'When did world economic forum took place last week','4th of June','3rd of June','5th of June','1stof June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Elected FIFA president resignation news broke out when last week','Monday','Tuesday','Wednesday','Friday','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Health  workers strike enters week ?.. Last week','2','4','1','3','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'The new coach of Real Madrid was assigned on','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Serena Williams wins??.. Grand slam','14','15','18','20','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Who is the third tennis player to win 20 grand slam ','Rafi Nadal','Serena Williams','Venus Williams','Joko','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'How many passenger escape death as Aero aircraft developers fault mid air','100','120','about 100','over 120','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The world oldest cat dies at','12','20','22','27','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What was the score between Nigeria and Hungry in under 20 world cup match','4-0','2-0','1-0','2-2','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Nigeria team is to face which team in the round second round of under 20 world cup','Brazil','Germany','Italy','USA','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'In woman world cup, Germany defeated Ivory coast by','10-0','4-0','7-0','2-0','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'Which team won the UEFA championship title last week','Barcelona','Juventus','Real Madrid','Chelsea','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `propolitic` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `prosport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `protechy` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Anonymous',\n  `question_id` mediumint(9) NOT NULL,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `message` text COLLATE utf8mb4_unicode_ci,\n  `type` enum('1','2','3','4','5','6','7') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `status` enum('0','1') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question` VALUES (1,'Anonymous',4,'english',NULL,'1','0','2018-08-31 10:33:36','2018-08-31 10:33:36'),(2,'Anonymous',2,'english','You got busted','5','0','2018-08-31 11:05:51','2018-08-31 11:05:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question_type` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,\n  `description` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question_type` VALUES (1,'Question','There is an error in question',NULL,NULL),(2,'Option A','There is an error with option a',NULL,NULL),(3,'Option B','There is an error with option b',NULL,NULL),(4,'Option C','There is an error with option c',NULL,NULL),(5,'Option D','There is an error with option d',NULL,NULL),(6,'Answer','Something is wrong with the answer',NULL,NULL),(7,'Solution','Something is wrong with the solution',NULL,NULL);\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `socialfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `socialfb` VALUES (1,'What year was \\'Africa Queen\\' music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track \\'African Queen\\' came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D\\'Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D\\'Banj  first album released?','2002','2005','2001','2004','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What is the full meaning of NEA','National Entertainment Awards','Nigerian Entertainment Awards','Nigerian Entertainment Award','National Entertainment Award','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Nigerian Entertainment Award (NEA) 2015 was held in','Lagos Nigeria','Abuja Nigeria','New York USA','London Britain','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who won the best Female act award in Nigerian Entertainment Award (NEA)  2015','Cynthia Morgan','Yemi Alade','Seyi Shay','Tiwa savage','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Who won the best Film Director of the Year (Indigenous Films) in Nigerian Entertainment Award (NEA)  2015','Kunle Afolayan','Alex Konstantaras','Olanrewaju Abiodun','Chiwetel Ejiofor','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Best Male act was given to ??.. in Nigerian Entertainment Award (NEA) 2015','Olamide','Davido','Wizkid','Shizzi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Best Rap act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Best Pop act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Best Afrobeat Act was given to ?. In Nigerian Entertainment Award (NEA)  2015','2face Idibia','Femi Kuti','Baba Fryo','Alariwo','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Olamide life in concert \\'Beast Mode \\'hold this year on','March 10 2015','December 27 2015','December 31 2015','March 21 2015','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Which of the following guest artiste will not feature in Olamide life concert 2015','Davido','D?Banji','Wizkid','Olamide','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'what is the full meaning of KADAMFEST','Kaduna Music Festival','Kano  Music Festival','Kaduna  Music Festivals','Kano Music Festivals','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What edition is Miss World 2015','60th','61th','62nd','63rd','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Which country hosted Miss World 2015 edition','China','Japan','Singapore','India','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'What is the date of Miss World 2015 pageant?','10-Dec-15','16-Dec-15','19-Dec-15','21-Dec-15','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' Which country won Miss World 2015 pageant?','China','South Africa','Spain','Norway','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Tiwa Savage is how old in 2015','28','30','35','32','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Which of this song was release by Wizkid in 2015','On top matter','Love my babe','Expensive shit','Mummy mi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Who was the most nominated artiste for Tooxclusive award 2015','Davido','Olamide','Di?ja','Korede bello','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'Who is the fourth highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'Who is the Second highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Who is the third highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Who is the highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'30 days in Alanta was released on','31-Oct-15','31-Oct-14','1-May-15','1-May-14','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is Miss Nollywood Queen 2015','Miss Gwendolyn Okutele','Miss Adebayo Kemi','Miss Basira Malla','Miss Obichi Emeka','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' Miss Nollywood Queen 2015 is from what state','Enugu','Delta','Ondo','Lagos','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'What is the name of Olamide ablum released in 2015','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' What is the full meaning of SMD','Super Michael Data','Supreme Mavin Dynasty','Shoki Makossa Dance','Simple Motion Dance','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Who started SMD?','Olamide','Davido','P-Square','Don Jazzy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' What is the name of Olamide ablum released in 2012','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the name of Olamide ablum release in 2014','Rapsodi','YBNL','Street OT','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'\\'Yemi my lover\\' is in which Olamide album','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'What is the full name of Phyno','Godfrey Nelson','Azubuike Chibuzo Nelson','Phillip Onome','Paul Nwoko Godfrey','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,' Which of this artiste is not a Glo ambassador','D?Banj','Peter and Paul Okoye (PSquare)','Tu Face ','Wande Coal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,'Which of the following artiste is not a airtel ambassador','Phyno','Tu Face','Wande Coal','Patoranking','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sport` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','Sir Ali Ferguson.','Alex Ferguson.','Sir Alex Ferguson','Sir Alex Fergson','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'How many rings are in the Olympic colours?','6','5','4','3','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sportfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sportfb` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','?Sir Ali Ferguson.','?Alex Ferguson.','?Sir Alex Ferguson','?Sir Alex Fergson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'How many rings are in the Olympic colours?','6','5','4','3','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'When was Jose Mourinho sacked by Chelsea in 2015','15-Dec','5-Dec','27-Dec','17-Dec','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which coach is regarded as the Special One','Pep Guardiola','Raphael Benitez','Jose  Mourinho','?Sir Alex Ferguson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Which club in Nigeria premier league has the longest winning run in 2015','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' Which club in Nigeria premier league has the longest unbeating run in','Warri Wolves FC','Kano Pillars FC','Enyimba FC','Shooting Star FC','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' The 2015 Nigeria Professional Football League was won by','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The 2015 Nigeria Professional Football League second place winner was','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What is the name of Nigeria second football division','National Division league','Nigeria Second division league','Nigeria National league','Second National league','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'which of the following 2015 Nigeria Professional Football League was relegated','El-Kanemi Warriors','Enugu Rangers','Kwara United?','Abia Warriors','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'which of the following 2015 Nigeria Professional Football League was not relegated','Kwara United?','Bayelsa United','Sharks','El-Kanemi Warriors','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Kano Pillars\\' 12-year undefeated streak at home came to an end in a 2-1 loss to','Nasarawa United','Wikki Tourists','Kwara United?','Enyimba FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is the president of Nigeria football federation?','Amaju Pinnick','Alhaji Ibrahim Galadim','Alh. Aminu Maigari','Alhaji Ibrahim Pinnick','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' What is the full meaning of NFF','Nigeria Football Federation','Nation Football Federation','Nigerian Football Federation','National Football Federation','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'Which of the following is not a bet company in Nigeria','Bea Bet','Naira Bet','Surebet247 ','Bet9ja','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' Which of the following is the first sport betting website in Nigeria','Surebet247','360bet','Bet365NAIJA','Naira Bet','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Leicester City F.C. is also known as ','Lei City','The Eagle','The Foxes','Blue team','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' Leicester City F.C. is also known as the following expect','The Foxes','The Blues','The City ','Blue Army','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'Who is the current hit man for Leicester City','Jamie Vardy','Wes Morgan','Danny Simpson','Eden Hazard','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'Who is the current highest goal scorer as of December 2015 in English Premier League','Wilfried Bony','Robin van Persie','Diafra Sakho','Jamie Vardy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'Who won the Ballon D?or cup 2015','Lionel Messi ','Neymar ','Cristiano Ronaldo','Robin van Persie','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n"
  },
  {
    "path": "storage/backups/2020-08-16.sql",
    "content": "/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `accounting` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=515 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `accounting` VALUES (1,'The bad debt account is closed by transferring the balance to ','credit of capital account  ','debit of profit  and loss  ','debit of the debtors personal account ','credit of profit and loss account ','','','b','','post-utme','2010',103,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(2,'A credit note from a supplier would first be entered in the ','purchase book  ','sales book  ','returns inward book  ','returns outward','','','a','','post-utme','2010',107,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(3,'Where a proprietor withdraws cash from the business for his private use, the entries would be ','credit cash account, debit proprietor\\'s account ','credit proprietor\\'s account, debit cash account ','credit proprietor\\'s account, debit   drawings   account    ','credit   cash account,  debit drawings account','','','d','','post-utme','2010',111,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(4,'Which   of the   following   is   a  long  term liability ','bank overdraft ','bank deposit ','good will ','debentures','','','d','','post-utme','2010',105,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(5,'Which of the following is a function of the sales journal ','it records both cash and credit sales ','it shows the balance in the sales account ','it record credit sales only ','it shows the aggregate balances in the debtors lodger','','','a','','post-utme','2010',120,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(6,'Which of the following is the most liquid ','stock ','debtors ','machinery ','loose tools','','','b','','post-utme','2010',100,'','0000-00-00 00:00:00','2020-08-14 13:03:11'),(7,'A debit balance on a bank statement indicates that ','bank is a debtor to the customer ','customer is a debtor to the bank ','bank is not a creditor to the customer ','customer is not a debtor to the bank','','','b','','post-utme','2010',111,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(8,'At the end of a trading period, wages will be  ','debited to trading account and shown as a current liability ','credited to profit and loss Account and shown as a current liability ','credited to trading account and shown as a current asset ','debited to profit and loss account and shown as a current liability','','','a','','post-utme','2010',108,'','0000-00-00 00:00:00','2020-08-14 10:57:35'),(9,'Which of the following is not an asset ','Goodwill ','General reserves ','Debtors ','Prepayments','','','b','','post-utme','2010',119,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(10,'A company\\'s profit and loss account for a period  is  prepared by ','deducting total expenses from total revenues ','deducting total cash payments from total revenue ','deducting  all  outflows  of funds  from  all inwards of funds ','balancing its receipts and payments','','','a','','post-utme','2010',111,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(11,'The journal is a book ','of primary entry into which all transactions are entered before posting ','kept by journalist for reporting events ','of prime entry into which postings are made from the ledger  ','of analyzing major accounts','','','a','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(12,'The receipts and payments of a club is the same  as ','  Profit and   loss  account  ','Trading Account ','Cash book ','control Account','','','c','','post-utme','2010',99,'','0000-00-00 00:00:00','2020-08-12 12:01:09'),(13,'In a balance sheet, bank overdraft is ','Current Asset ','Fixed asset ','long term liability ','Current Liability','','','d','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-08-12 19:15:53'),(14,'Money set aside for the saving of business overheads    is    referred    to   ','Capital Expenditure  ','Revenue  Expenditure ','Revenue receipts','','','','c','','post-utme','2010',121,'','0000-00-00 00:00:00','2020-08-13 12:48:17'),(15,'Money spent on buying of plots of land by a firm is ','Capital Expenditure ','capital receipts ','Revenue Expenditure',' Revenue Receipts','','','a','','post-utme','2010',116,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(16,'Prepaid expenses  is an  item  in ','Fixed Asset  ','  Current    Asset   ','Liabilities ','Long term liabilities ','','','b','','post-utme','2010',114,'','0000-00-00 00:00:00','2020-08-14 13:03:11'),(17,'Final accounts of (i) Cash book (ii) trading account  (iii) Profit and  loss account  (iv)Balance sheet  ','i only ','i and ii only','iii and iv only ','ii and iii  only','','','c','','post-utme','2010',103,'','0000-00-00 00:00:00','2020-08-14 13:03:11'),(18,'Trading account is prepared to ascertain ','Gross profit ','Net profit ','Gross profit or Gross loss ',' Net profit or net loss','','','c','','post-utme','2010',109,'','0000-00-00 00:00:00','2020-08-14 13:03:11'),(19,'A statement that shows the financial position of a business is ','profit and loss account  ','Trading Account ','Statement of income  ',' Balance sheet','','','d','','post-utme','2010',104,'','0000-00-00 00:00:00','2020-08-14 13:10:21'),(20,'  Prepaid wages is an item in the (i)Balance Sheet (ii) Profit and loss account (iii)Trading  account (iv) Cash account ','i, ii, iii only ','ii, iii  ','i, ii ','iii, iv','','','a','','post-utme','2010',122,'','0000-00-00 00:00:00','2020-08-14 13:11:58'),(21,'Partnership    is    a    business    owned and controlled by ','Two members ','two to ten members ','Two to twenty person  ','Two to five persons','','','c','','post-utme','2010',105,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(22,'If a   machine   cost   2000   naira   and its estimated   life   span   is   10   years   and its residual is 500 naira. The yearly value of depreciation  in  naira is ','250','180','150','130','','','c','','post-utme','2010',96,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(23,'Bad debt is also known as ','Unpaid debt','irrecoverable debt  ','Payment debt  ','current    debt','','','b','','post-utme','2010',103,'','0000-00-00 00:00:00','2020-08-12 12:01:09'),(24,'Bad debt is an item in ','Trading, profit and loss account  ','consignment account  ','Balance sheet ','Receipt and expenditure AC','','','a','','post-utme','2010',115,'','0000-00-00 00:00:00','2020-08-15 05:32:17'),(25,'The diary or events in which all financial transactions    are    recorded    for    easy reference and to assist in the double entry system is ','Ledger','Journal   ','Purchases and sales day books ','Debit and credit documents','','','a','','post-utme','2011',106,'','0000-00-00 00:00:00','2020-08-14 12:52:38'),(26,'Which of the following is not a book of original entry? ','Cash book  ','Purchases journal  ','Sales journal ','Ledger','','','d','','post-utme','2011',103,'','0000-00-00 00:00:00','2020-07-26 06:44:15'),(27,'The test of arithmetical accuracy of all postings in the ledger is provided in the: ','Journal  ','Day book  ','Cash book  ','Trial balance','','','d','','post-utme','2011',120,'','0000-00-00 00:00:00','2020-07-14 13:21:49'),(28,'Errors   revealed   by   the   trial   balance include error of:  ','Principle  ','Single entry ','Omission  ','commission ','','','b','','post-utme','2011',108,'','0000-00-00 00:00:00','2020-08-12 12:01:09'),(29,'Accounting equation is given by  ','Assets - Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owner\\'s Equity = Liabilities ','Assets = Liabilities + Owner\\'s Equity','','','d','','post-utme','2011',95,'','0000-00-00 00:00:00','2020-08-12 19:17:07'),(30,'Which of the following is not a current asset?  ','Stock  ','Debtors  ','Creditors ','Cash','','','c','','post-utme','2011',124,'','0000-00-00 00:00:00','2020-08-12 19:14:31'),(31,'Final accounts of a company refers to: ','Trading and profit and loss account  ','Profit and loss account and balance sheet  ','Trading account and balance sheet  ','Trading , profit and loss account and balance sheet','','','d','','post-utme','2011',91,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(32,'A cheque which has been sent but has yet gone through the bank account of the receiver of it is known as:','Dishonoured cheque','Unpresented cheque ','Uncredited cheque','Unhonoured cheque','','','b','','post-utme','2011',109,'','0000-00-00 00:00:00','2020-07-25 20:35:38'),(33,'Which of the following does not appear in a bank statement?   ','Uncredited cheque ','Bank charges ','Dishonoured cheque ',' Dividend   received   on    behalf   of customer','','','d','','post-utme','2011',105,'','0000-00-00 00:00:00','2020-08-14 10:57:16'),(34,'Where a correct amount is entered, but in the wrong person\\'s account, is an error of  ','Principle  ',' Omission','Commission','Compensation','','','c','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(35,'A credit balance of N350,000 in a cash account shows that  ','N350.000 was the total cash received  ','N350,000 was the total cash paid out  ','Cash at hand equals N350,000 ','N350,000 was the cash overspent','','','d','','post-utme','2011',113,'','0000-00-00 00:00:00','2020-08-12 18:46:05'),(36,'Which   accounting  concept  states; that revenues and expenses are recognized as they are earned or incurred and not when  money is received?','Entity   ','Realization','Accrual  ','Periodicity','','','c','','post-utme','2011',113,'','0000-00-00 00:00:00','2020-08-12 18:46:26'),(37,'Which of the following is not a business asset?','Deposit account in bank','Interest due on loan','Five acres of land','Library books owned by a lawyer ','','','b','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-08-14 12:52:38'),(38,'Prime cost is','Direct cost of production','Cost of raw materials consume:','Cost of raw materials purchase-:','Indirect cost of production','','','a','','post-utme','2011',105,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(39,'Subscription   received   in   respect of a future period is','Subscription deposit','Subscription in advance','Accrued subscription','Subscription in arrears','','','b','','post-utme','2011',123,'','0000-00-00 00:00:00','2020-08-08 13:45:08'),(40,'The petty cash book kept on imprest system should have','A credit balance only','A debit or nil balance','A debit balance only','Both debit and credit balance;','','','c','','post-utme','2011',101,'','0000-00-00 00:00:00','2020-08-14 10:59:38'),(41,'Wilson Company owns land which cost 14100, 000. If a \\\"quick sate\\\" of the land was necessary to generate cash, the company feels it would receive only N80, 000.    The company continues to report the asset on the balance sheet at N100, 000   This is justified under which of the following concepts?  ','The historical-cost principle.','The value is tied to objective and verifiable past transactions.','Neither of the above.',' Both \\\"a\\\" and \\\"b\\\"','','','a','','post-utme','2012',109,'','0000-00-00 00:00:00','2020-08-13 12:56:11'),(42,'Retained earnings will change over time because of several factors.  Which of the following factors would explain an increase in retained earning?','Net loss ','Net income,','Dividends ','investment by stakeholders.','','','b','','post-utme','2012',122,'','0000-00-00 00:00:00','2020-08-12 19:18:24'),(43,'Which of the following would not be included in a balance sheet?','Accounts receivable','Accounts payable  ','Sales','Cash','','','c','','post-utme','2012',102,'','0000-00-00 00:00:00','2020-08-13 12:59:35'),(44,'A company provided the following information about its balance sheet: Cash N100 Accounts receivable N500 Stockholders\\' equity 14700 Account payable N200 Bank loans Nl000 Based on the information provided, how much are Remington\\'s liabilities?','N200   ','N900   ','N 1,200   ','N 1,700','','','c','','post-utme','2012',108,'','0000-00-00 00:00:00','2020-08-12 19:17:07'),(45,'A complete set of financial statements for Hartman Company, at December 31, 1999, would include each of the following except:','Balance sheet as of December 31,1999 ','Income   statement   for   the   year   ended December 31, 1999.','Statement of projected cash flows for 2000  ','Notes containing additional information that is useful interpreting the financial statements.','','','c','','post-utme','2012',104,'','0000-00-00 00:00:00','2020-08-12 19:14:31'),(46,'If the equipment account has a balance of N22.500 and its accumulated account has a balance of N14,000 the book value of the equipment is:  ','N22.500   ','N8.500 ','N 14,000  ','N36.500','','','b','','post-utme','2012',114,'','0000-00-00 00:00:00','2020-08-14 12:58:27'),(47,'The balance unearned rent account for Jones Co. as at 31st Dec. is 1,200. If Jones Co tailed to record the adjusting entry for 600 of rent earned during December, the effect on the balance sheet and income statement','for December is:',' Liabilities   overstated—N60Q:   c:et income overstate d 44600',' Liabilities   understated   £4500:   net income  understated N600','Asset    understated—N600:     net    income  overstated N600',' Liabilities   overstated   N600:    net income understated N600','','d','','post-utme','2012',105,'','0000-00-00 00:00:00','2020-08-12 19:18:24'),(48,'If goods purchased on account is returned, the buyer may inform the seller of the details by issuing:','An invoice  ','A debt memorandum','A credit memorandum  ',' A bill','','','c','','post-utme','2012',107,'','0000-00-00 00:00:00','2020-08-12 10:18:19'),(49,'Which of the following entries classes the  owner\\'s drawing account at the end of the period?','Debit the drawing account, credit the owner\\'s capital account','Debit the income summary account credit the drawing account','Debit   the   drawing account credit income summary accounting','Debit the owner\\'s capital account, credit the drawing account','','','d','','post-utme','2012',101,'','0000-00-00 00:00:00','2020-07-30 16:49:44'),(50,'At the end the fiscal year, account receivable has a balance of 100,000 and allowance for doubtful account has a balance of 7,000. The expected that realized value of the  receivable is: account','N 107,000','N100,000','c. N93,000','N 147,000','','','c','','post-utme','2012',118,'','0000-00-00 00:00:00','2020-08-14 10:56:41'),(51,'Which of the following accounts would be classified as a current on the balance sheet?','Office Equipment','Accumulated Depreciation','Land','Accounts receivable','','','d','','post-utme','2012',112,'','0000-00-00 00:00:00','2020-08-14 12:58:27'),(52,'A petty cash fund is:','Used to pay relatively small amount','reimbursed when the amount of money in the fund is reduced to a predetermined minimum amount','Established by estimating the amount of cash needed for disbursement of  relatively small amount during a specified period  ','All of the above','','','d','','post-utme','2012',96,'','0000-00-00 00:00:00','2020-08-13 12:59:35'),(53,'A debit may signify: ','an increase in the owner\\'s capital amount','an increase in a liability account','a decrease in an asset account','an increase in an asset account','','','d','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-08-12 19:18:24'),(54,'The receipt of cash from customers in a payment of their account would recorded by a','Debit to account receivable; credit to cash ','b  Debit to cash credit to accounts receivable  ','Debit to cash, credit to accounts payable  ','Debit to account payable credit to cash','','','b','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-08-12 19:18:09'),(55,'The essential amount of depreciation or equipment for a period is 2,000 the adjusting end to record depreciation would be','Debit depreciation expense, 2000, credit expense, 2,000','Debit equipment, 2,000; credit depreciation expense, 2,000','Debit accumulated depreciation, 2,000. credit depreciation expense 2,000    ','Debit depreciation expense, 2,000; credit accumulated depreciation 2,000.','','','d','','post-utme','2012',103,'','0000-00-00 00:00:00','2020-08-12 12:01:09'),(56,'Which of the following assets could be described as a current asset?','Stock of goods for resale','Machinery to manufacture goods for resale ',' Buildings to house the machinery','Land on which the buildings stand.','','','a','','post-utme','2012',112,'','0000-00-00 00:00:00','2020-08-14 13:03:11'),(57,'The purchase journal records:','invoices from creditors','Debtors\\' invoices','Cash payments to suppliers','Amounts owing to employees for wage;','','','a','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-08-14 12:58:02'),(58,'If a business shows a debit balance in its own record of its bank balance, this indicates.','The business has a bank overdraft','The business is a debtor of the bank','The business has money in the bank','The ledger entry must be wrong.','','','a','','post-utme','2012',93,'','0000-00-00 00:00:00','2020-08-12 19:18:24'),(59,'If a business pays for only 11 months rent during a financial year, what accounting term is given to the outstanding term is given to the outstanding one month\\'s rent? Which of the following equations properly represents a derivation of the fundamental accounting equation?','Assets + liabilities = owner\\'s equity ','Assets = owner\\'s equity','Cash = assets.  ','Assets - liabilities = owner\\'s equity','','','d','','post-utme','2012',97,'','0000-00-00 00:00:00','2020-08-14 12:52:38'),(60,'A business shows total debtors\\' balances of N400,000 in its ledger at the end of its financial year. A customer owing N40,000 is bankrupt, and there is no possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor\\'s total will be included as a current asset in the balance sheet?','N400,000,   ','N352,800    ','N352,000.  ','N436,200 ','','','c','','post-utme','2012',90,'','0000-00-00 00:00:00','2020-08-12 19:15:27'),(61,'To arrive at the gross profit of a trading  business, which one of the following formulate is applied?','Sales - (Opening Stock-Purchases-Closing Stock)','Sales - (Opening stock + Purchases + Closing Stock)','Sales - (Opening stock + Purchases - Closing Stock)','Sales - (Opening stock - purchases + closing stock)','','','c','','post-utme','2012',106,'','0000-00-00 00:00:00','2020-08-13 12:56:22'),(62,' Which one of the following is not part of a company\\'s equity capital?','Ordinary shares','Preference shares','Voting Shares','Equity shares','','','c','','post-utme','2012',94,'','0000-00-00 00:00:00','2020-08-13 12:59:35'),(63,' An expenditure whose benefit is finished or enjoyed immediately is called: ','Expense   ','Liability ','Cost ','Income','','','a','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-08-13 12:53:42'),(64,'Where no partnership agreements exist, a partner who puts a sum of money into a firm in excess of the capital he has agreed to subscribe is entitled to interest rate per annum on such money ','15%','10%','5%','2%','','','c','','post-utme','2013',106,'','0000-00-00 00:00:00','2020-08-13 12:59:35'),(65,'MORADE had total assets of N760,000, capital stock of N150,000 and retained earnings of N215,000. What was Morade\\'s debt-to-equity ratio? ','2.63','1.08','0.52','0.48','','','b','','post-utme','2013',100,'','0000-00-00 00:00:00','2020-08-14 13:03:11'),(66,'9.   Which   of   the   following   is   a   correct expression of the accounting equation? ','Assets = Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owners\\' Equity = Liabilities ','Assets = Liabilities - Owner\\'s Equity','','','a','','post-utme','2013',102,'','0000-00-00 00:00:00','2020-08-14 12:58:02'),(67,'Which of these items would be accounted for as an expense? ','repayment of a bank loan ','dividends to stockholders ','the purchase of land ','payment of the current period\\'s rent','','','d','','post-utme','2013',111,'','0000-00-00 00:00:00','2020-08-13 12:56:22'),(68,'At the end the fiscal year, account receivable has a balance of Nl00,000 and allowance for  doubtful   account  has a balance   of N7,000. The expected net realized value of the account receivable is: ','Nl07,000 ','N100,000 ','N93,000 ','N7,000 ','','','c','','post-utme','2013',114,'','0000-00-00 00:00:00','2020-08-12 18:46:26'),(69,'A debit balance of Nl50,000 in a cash account   shows   that   ','  cash  has   been overspent   by   N150,000   ','  there   was N150,000 cash in hand ',' the total of cash received   was   less   than   N150,000   ','N150,000 was the total of cash paid out. ','','','b','','post-utme','2013',99,'','0000-00-00 00:00:00','2020-08-13 12:56:11'),(70,'Posting  the  transactions   in bookkeeping means ','making the first entry of a double entry transaction ','entering items in a cash book ','making the second  entry of a double entry transaction ','something other than the above.','','','a','','post-utme','2013',115,'','0000-00-00 00:00:00','2020-08-12 18:46:26'),(71,' On December 31, 2012, Infinite Grace had a note payable due on August 1, 2013. On January 20, 2013, Infinite Grace signed a financing agreement to borrow the balance of the note payable from a lending institution to refinance the note. The agreement does not expire within one year, and no violation of any provision in the financing agreement exists. On  February 1, 2013. Infinite Grace was informed by its financial advisor that the lender is not expected to be financially capable of honouring the agreement. Infinite Grace\\'s financial statements were issued on March 31, 2013. How should Infinite Grace classify the note on its balance sheet at December 31,2012? ','as a current liability because the financing agreement was signed after the balance sheet datecapable of honouring the agreement   ','as a current liability because the leader is not expected to be financially ',' as   a   long-term   liability because  the agreement  does   not  expire within one year ',' as a long-term liability because no violation of any provision in the financing agreement exists.','','','c','','post-utme','2013',107,'','0000-00-00 00:00:00','2020-08-13 20:41:29'),(72,'A business shows total debtors\\' balance of N400,000 in its ledger at the end of its financial customer owing N40,00 are bankrupt, and there is no  possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor’ total will be included as a current asset in the balance sheet? ','N400,000  ','N352,800  ','N352, 000  ','N36, 200','','','b','','post-utme','2013',102,'','0000-00-00 00:00:00','2020-08-12 19:17:31'),(73,'Companies and  Allied  Matters  Act. 1990 requires  every  company   to  keep  certain statutory books. Which of the following is not part of the statutory books to be kept by the company? ','register of directors and secretaries ','a register of charges (fixed and floating) ','minutes books of meetings of the company and meetings of its directors ','a register of companies in the same line of business','','','d','','post-utme','2013',97,'','0000-00-00 00:00:00','2020-08-12 18:46:26'),(74,'The    main    objective   of   the   financial statements is to ','provide a true and fair- view of the financial position of the business ','help managers take correct decisions ','show every transaction affects two items in the  balance sheet ','help owners of a business to plan for the future.','','','a','','post-utme','2013',91,'','0000-00-00 00:00:00','2020-07-30 16:49:44'),(75,' Impersonal accounts contain ','capital and cash account ','nominal account and real account ',' real and cash account ','capital and real act minis ','','','b','','post-utme','2013',89,'','0000-00-00 00:00:00','2020-07-14 13:23:08'),(76,'One of (he following errors will affect the agreement of the trial balance ','error of omission ','trial balance error ','principle error ','error of original entry','','','b','','post-utme','2013',147,'','0000-00-00 00:00:00','2020-08-12 19:17:07'),(77,'Which of the following is a fictitious asset? ','prepayments ','preliminary expenses ','investment ','plant and machinery ','','','b','','post-utme','2013',91,'','0000-00-00 00:00:00','2020-08-13 12:53:42'),(78,'  Which of the following is not part of the main uses of the journal ',' purchase and sale   of   fixed   assets   on  credit   ','the  correction of errors ','writing off bad debts ','none of the above','','','d','','post-utme','2013',92,'','0000-00-00 00:00:00','2020-08-12 19:17:31'),(79,'…………………checks the arithmetical accuracy of double entry accounts ','trading account ','profit and loss account ','balance sheet ','trial lance','','','d','','post-utme','2013',108,'','0000-00-00 00:00:00','2020-08-12 19:15:53'),(80,'The distinguishing feature between a two-column and three-columncash book is','discount column','cash column','bank column','ledger folio','','','a','','wassce','2013',106,'Admin','2016-11-15 20:31:29','2020-08-12 19:17:07'),(81,'The lodgment of business cash into the business bank account is an example of','contra entry','bank reconciliation','self balancing ledger','reversal entry','','','b','','wassce','2013',132,'Admin','2016-11-15 20:31:30','2020-08-14 13:03:11'),(82,'credit balance is','a liability or an expense.','a liability or an income.','an expenditure or an income.','an asset or an expense.','','','b','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-08-13 12:56:11'),(83,'Which of the following is not a characteristic of a Trial Balance?','It has columns for debit and credit balances','Total of debit balance equals total of credit balance','It is a statement','It is an account','','','d','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-08-07 11:02:55'),(84,'The capital of a sole trader changes as a result of','paying wages by cash.','equipment purchased by cheque.','drawings by cheque.','purchases on credit.','','','c','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-08-13 12:56:22'),(85,'The order of financial accounting process involves: (I) recording; (II) presenting; (III) collecting; (IV) analyzing.','I, II. Ill and IV','II, III, I and IV','Ill, I, II and IV','IV, III, II and I','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:21'),(86,'A dishonoured cheque is','debited in the cash book.','credited in the cash book.','double entry in the cash book.','credited in the bank book.','','','c','','wassce','2013',95,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:22'),(87,'A petty cashier received a float of GHc 120 and spent GHc 84. The imprest is','GHc 204.','GHc 120.','GHc 84.','GHc 36.','','','d','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-08-14 13:03:11'),(88,'Which of the following is not a book of original entry?','Cash Book','Purchases Ledger','Returns Outwards Journal','General Journal','','','b','','wassce','2013',85,'Admin','2016-11-15 20:31:30','2020-08-12 18:46:05'),(89,'The current ratio is','1.87 : 1.','1 : 1.87.','1 : 2.','2 : 1.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',109,'Admin','2016-11-15 20:31:30','2020-08-13 12:59:35'),(90,'The capital employed is','N=740,000.','N=580,000.','N=370,000.','N=280,000.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','c','','wassce','2013',105,'Admin','2016-11-15 20:31:30','2020-08-05 15:32:18'),(91,'The returns on capital employed is','17.2%','16.2%.','15.2%.','11.2%.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',85,'Admin','2016-11-15 20:31:30','2020-08-12 19:17:31'),(92,'The double entry principle states that','every debit entry must have a corresponding credit entry','every credit entry must have a corresponding double entry','every debit entry must have a corresponding double entry','every asset must have a corresponding liability.','','','a','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:31'),(93,'Which of the following is a nominal account?','Machinery Account','Drawings Account','Debtors Account','Wages Account','','','d','','wassce','2013',111,'Admin','2016-11-15 20:31:30','2020-08-13 12:56:22'),(94,'Reserves account is kept in the','private ledger.','creditors ledger.','nominal ledger.','debtors ledger.','','','c','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-08-13 12:53:42'),(95,'An advantage of control account is','locating figures.','adding figures.','changing figures.','locating errors.','','','d','','wassce','2013',104,'Admin','2016-11-15 20:31:30','2020-08-13 12:53:42'),(96,'The accumulated fund of a not-for-profit making organization is','a fixed asset.','a current asset.','a liability.','capital.','','','d','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-08-12 10:18:19'),(97,'A business is treated as being separate from the owners. This statement is emphasized by','consistency concept.','realization concept.','going concern concept.','business entity concept.','','','d','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-08-05 15:32:18'),(98,'Which of the following is recorded on the debit side of the Trial Balance?','Bank overdraft','Returns outwards','Purchases','Capital','','','c','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-07-30 16:49:45'),(99,'Which of the following is determined in the Trading Account?','Factory overheads','Cost of goods sold','Prime cost','Net profit','','','b','','wassce','2013',108,'Admin','2016-11-15 20:31:31','2020-08-14 12:52:38'),(100,'Cash receipts and payments involving discounts are entered in','three-column cash book.','two-column cash book.','analytical cash book.','petty cash book.','','','a','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-08-13 12:56:22'),(101,'The minimum number of persons required to form a partnership business is','2.','3.','5','10.','','','a','','wassce','2013',89,'Admin','2016-11-15 20:31:31','2020-08-12 19:15:27'),(102,'Which of the following accounts has a credit balance?','Returns Inwards Account','Machinery Account','Sales Account','Cash Account','','','c','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-08-12 18:45:25'),(103,'The accounting principle that states that, in the preparation of accounting statement, revenue are recognized as        soon as goods are passed on to the customer is the','materiality concept.','matching concept.','consistency concept.','realization concept.','','','d','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-08-12 18:46:05'),(104,'Agreement between partners is contained in the Partnership','Act.','Deed.','Accord','Deal.','','','b','','wassce','2013',113,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:43'),(105,'A low current ratio in a business indicates that the business is','faced with long term loan repayment problem.','efficient in the utilization of its resources.','unable to pay its bills on time.','growing its net asset effectively.','','','c','','wassce','2013',130,'Admin','2016-11-15 20:31:31','2020-08-14 13:24:24'),(106,'Which of the following is a recurrent expenditure in public sector accounting?','Purchase of vehicles','Purchase of drugs','Construction of boreholes','Construction of buildings','','','b','','wassce','2013',98,'Admin','2016-11-15 20:31:31','2020-08-13 12:59:35'),(107,'In departmental accounts, administrative expenses are recorded in the','Trading Account.','Balance Sheet.','Profit and Loss Account.','Profit and Loss Appropriation Account.','','','c','','wassce','2013',105,'Admin','2016-11-15 20:31:31','2020-08-12 19:15:53'),(108,'The Public Accounts Committee is an organ of','military regime.','parliament.','presidency.','councilors.','','','b','','wassce','2013',103,'Admin','2016-11-15 20:31:31','2020-08-12 18:46:26'),(109,'The balance at the end of the period is',' 270,000.','139,000.','131,000.','120,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','c','','wassce','2013',89,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:59'),(110,'The total expenditure for the period is','319,000.','270,000','139,000.','109,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','d','','wassce','2013',96,'Admin','2016-11-15 20:31:31','2020-08-13 12:48:17'),(111,'Which of the following is not an item on the credit side of the purchases ledger control account?','Cash received','Cash payment','Contra settlement','Cheque payment','','','a','','wassce','2013',97,'Admin','2016-11-15 20:31:31','2020-08-12 19:16:36'),(112,'When a business is purchased from a sole trader, the excess of the purchase price over the net assets is','reserve.','goodwill.','freehold.','valuation price.','','','b','','wassce','2013',97,'Admin','2016-11-15 20:31:31','2020-08-12 19:18:09'),(113,'A set of instructions or programs which controls the operation of a computer is','software.','hardware.','monitor.','keyboard.','','','a','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-08-05 15:32:18'),(114,'The process of detecting, tracing and eliminating errors in a computer program is','reproduction.','debugging.','sorting.','retrieving.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:04'),(115,'In a not-for-profit making organization, the cash book is referred to as','income and expenditure account.','receipts and payments account.','two column cash book.','petty cash book.','','','b','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:05'),(116,'When the going concern concept is no longer applicable, the fixed assets are recorded at their','net book value.','realizable value.','gross value.','revalued amount.','','','b','','wassce','2013',109,'Admin','2016-11-15 20:31:31','2020-08-13 12:48:17'),(117,'The cost of raw materials consumed is','GHc 58,000.','GHc 52,500.','GHc 52,000.','GHc 50,000.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','b','','wassce','2013',107,'Admin','2016-11-15 20:31:31','2020-08-14 10:59:38'),(118,'The prime cost is','GHc 64,500.','GHc 64,000.','GHc 58,500.','GHc 52,500.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','a','','wassce','2013',114,'Admin','2016-11-15 20:31:31','2020-08-14 13:11:58'),(119,'Which of the following relates to the essence of partnership? To','run a charity organization.','pursue a social objective.','form a business for profit.','run a religious objective.','','','c','','wassce','2013',94,'Admin','2016-11-15 20:31:31','2020-08-12 19:17:07'),(120,'The basic assumption which underlines the preparation of periodic financial statement is known as accounting','bases.','techniques.','concepts.','method.','','','a','','wassce','2013',116,'Admin','2016-11-15 20:31:31','2020-08-12 19:14:31'),(121,'Upon the dissolution of a partnership business, the party to be settled first out of the proceeds realized is','unsecured creditors.','partners’ loan and advances.','secured creditors.','partners’ capital.','','','c','','wassce','2013',82,'Admin','2016-11-15 20:31:31','2020-08-13 12:53:42'),(122,'Stock account is a type of','nominal account.','personal account.','real account.','fixed assets account.','','','c','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-08-14 13:03:11'),(123,'At the end of a trading period, cost of goods sold is debited to the trading account while cost of services is        debited to the','balance sheet.','manufacturing account.','trading account.','profit and loss account.','','','d','','wassce','2013',106,'Admin','2016-11-15 20:31:31','2020-08-14 13:24:24'),(124,'Which of the following is not part of prime costof production?','Depreciation of factory equipment','Direct expenses','Direct wages','Carriage on raw materials','','','a','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-08-12 19:17:31'),(125,'Excess of current assets over current liabilities is','deferred capital.','nominal capital.','working capital','authorized capital.','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:31','2020-08-13 12:56:22'),(126,'A statement showing a trader’s financial position as at a particular date is a/an','trading account.','profit and loss account.','balance sheet.','appropriation account.','','','c','','wassce','2013',115,'Admin','2016-11-15 20:31:31','2020-08-13 12:59:35'),(127,'A trading account is prepared to disclose the','net profit or loss for the year.','gross profit or loss for the year.','accumulated fund for the year.','gross profit on manufacturing.','','','b','','wassce','2013',104,'Admin','2016-11-15 20:31:31','2020-08-12 12:01:09'),(128,'Balance as per cash book 2, 970  Bank Charges 220 ;Unpresented cheques 3, 950; Uncredited cheques 4,178 ; Direct debit by bank 1, 000 . Determine  the balance as per bank Statement','N1,978','N1,962','N1,522','N2,522','','','d','','utme','2016',99,'Admin','2016-11-16 07:48:40','2020-08-14 13:03:11'),(129,'The records of Superstores shows a loan of  N14,000 from Bala, creditor N8, 000 and assets N190, 500. What is the firm’s capital?','184, 000','1 96, 500','212 000','168, 500','','','d','','utme','2016',102,'Admin','2016-11-16 07:48:41','2020-08-05 15:32:18'),(130,'The major advantage of the journal proper is that it','helps in the preparation of the balance sheet','prevents fraud and theft of item of the business','serves as a book of instruction to the bookkeeper','helps the banking industry to be efficient.','','','b','','utme','2016',92,'Admin','2016-11-16 07:48:41','2020-07-23 10:49:59'),(131,'One of the objectives of accounting is that it can be used for','business decision making','due process in business','motivating employees','determining the work force.','','','a','','utme','2016',93,'Admin','2016-11-16 07:48:41','2020-08-14 13:03:11'),(132,'The ratio that gives the indication of the efficiency of a firm’s sales with respect to cost of goods sold is a','return on capital employed','gross profit margin','net profit margin','return on equity.','','','b','','utme','2016',110,'Admin','2016-11-16 07:48:41','2020-08-13 12:56:22'),(133,'The instrument used in analysis and interpretation of financial statement is the','accounting ratios','income and expenditure extract','balance sheet extract','fund accounting.','','','a','','utme','2016',96,'Admin','2016-11-16 07:48:41','2020-07-30 16:49:44'),(134,'An item in the balance sheet of a limited liability company is','accrued expenses','lighting and heating','salaries and wages','general expenses.','','','a','','utme','2016',106,'Admin','2016-11-16 07:48:41','2020-08-14 13:03:11'),(135,'The documents that provide instant information to firms on their transactions with banks are','bank statement and debit note','cheque stub and deposit slip','cheque book and cashbook','payslip and credit invoice.','','','a','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-08-13 12:48:17'),(136,'Which of the following is the capital reserve of a company?','Accumulated depreciation.','Retained profit.','Share premium','Loss on forfeited shares','','','b','','utme','2016',102,'Admin','2016-11-16 07:48:41','2020-08-14 13:03:11'),(137,'The effect of overstating-revenue expenditure in the profit and loss account is that the','opening stock will be increased','net profit will be understated','net profit will be overstated','opening stock will be decreased','','','b','','utme','2016',95,'Admin','2016-11-16 07:48:41','2020-08-14 13:11:58'),(138,'Which of the following conditions would attract credit and debit notes to be used?','When goods are received from supplier.','When a trial balance is extracted','When a buyer is under or over charged.','When goods are sold to a buyer.','','','c','','utme','2016',117,'Admin','2016-11-16 07:48:41','2020-08-13 12:48:17'),(139,'Given:  Drawings [3,500]; Net loss [2, 500]; Capital 1.1.2007 [35, 000], Additional capital [10, 000]. The adjusted capital as at 31 : 12 : 2007 is','N45, 000','N39,000','N35, 000','N46, 000','','','d','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:27'),(140,'A receipt is an evidence of','payments','stocking','delivery','discounts.','','','a','','utme','2016',97,'Admin','2016-11-16 07:48:41','2020-08-14 10:57:16'),(141,'An organization which has records of only personal accounts is said to be operating on the basis of','single entry','real accounts','double entry','nominal accounts','','','a','','utme','2016',121,'Admin','2016-11-16 07:48:41','2020-08-12 18:45:25'),(142,'A proprietor started business with N13, 000.  Assets and liabilities at the end of the year; fixed assets N8, 800, stock N2, 600, debtors  N1 , 000, cash N3, 000 and creditors N1 , 000. Determine the profit for the year?','N2, 400','N3, 000','N9, 800','N 1 , 400','','','d','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-08-13 12:59:35'),(143,'Badge Plc issued 450, 000 ordinary shares, of 50K each at N1 .50 per share. Application and allotment 45k, 1st call 50k, 2nd call 55k. Determine the amount received on final call.','N225, 000','N236, 250','N 247, 500','N 202, 500','','','c','','utme','2016',111,'Admin','2016-11-16 07:48:41','2020-08-14 10:57:35'),(144,'When goods are sent to the branch at cost plus mark­up, it means that the branch should sell at','a price above or below the stipulated price','any price but not below the transfer price','cost price','a price that is equal to the mark-up.','','','a','','utme','2016',84,'Admin','2016-11-16 07:48:41','2020-07-22 21:43:51'),(145,'The income and expenditure account differs from receipts and payments account because it','accounts for notional charges','records transactions that relate to the period on cash basis','records transactions that relate to the period  on accrual basis','accounts for balance of cash at bank.','','','b','','utme','2016',106,'Admin','2016-11-16 07:48:41','2020-08-14 13:03:11'),(146,'The major sources of revenue for the state and local governments is','value added tax','statutory allocation','taxes and levies','recurrent revenue.','','','b','','utme','2016',103,'Admin','2016-11-16 07:48:41','2020-08-12 19:15:27'),(147,'Which of the following -is -correct about the imprest system?','II and IV','I, III and IV','I, II and III','III and IV','I.   The amount of the imprest is the same from one organization to another. II. At the end of a fixed period, the petty cashier received a fixed sum of money.  III.  At the end of a period, the petty-cashier is reimbursed, with the amount spent in that period. IV. The system is a method by which a measure  of control is kept on petty cash expenses','','c','','utme','2016',110,'Admin','2016-11-16 07:48:41','2020-08-12 19:16:36'),(148,'When the fixed capital method is used, the partners share of profits and remunerations are credited to the','current account.','profit and Loss account.','profit and loss appropriation account.','capital account.','','','d','','utme','2016',112,'Admin','2016-11-16 07:48:41','2020-08-12 19:18:09'),(149,'A discount that is allowed to encourage a debtor to pay off his debt within a period is the','trade discount','annual discount','periodic discount','cash discount.','','','d','','utme','2016',117,'Admin','2016-11-16 07:48:41','2020-08-12 19:17:31'),(150,'The costs of acquiring fixed assets and bringing them into the firm is a','general expenses','recurrent expenditure','revenue expenditure','capital expenditure.','','','d','','utme','2016',109,'Admin','2016-11-16 07:48:41','2020-08-14 12:52:38'),(151,'The impersonal account is subdivided into','realand nominal accounts','nominal and personal accounts','real and current accounts','personal and real accounts.','','','a','','utme','2016',103,'Admin','2016-11-16 07:48:41','2020-08-13 12:56:11'),(152,'Opening balance of Diksacompany was 12, 202, closing balance N15,300, total cash received during the period N40, 000. What was the amount of cash paid during the same period?','N36. 902','N27,502','N12,498','N43.098','','','c','','utme','2016',112,'Admin','2016-11-16 07:48:42','2020-08-12 18:46:26'),(153,'The total cash and cheques received from customers in a control account is derived from the','income and expenditure account','cashbook','purchases day book','sales journal','','','d','','utme','2016',99,'Admin','2016-11-16 07:48:42','2020-08-12 19:16:36'),(154,'Which of the followings is a credit item in creditors ledger control account?','Returns outwards.','Discount Received.','Bad debts.','Purchases.','','','d','','utme','2016',127,'Admin','2016-11-16 07:48:42','2020-08-12 19:17:31'),(155,'The trader’s capital in a single entry system is ascertained by preparing','gross profit','statement of affairs','suspense account','appropriation account','','','b','','utme','2016',103,'Admin','2016-11-16 07:48:42','2020-07-23 10:37:19'),(156,'From the information above, sources of income for a Not-for-profit making organization include','I, III, IV','I, II, III','I, II, IV','I and IV','I.   Members subscription II.  Fines  from members  III. Donation  IV.  Loan from bank','','b','','utme','2016',98,'Admin','2016-11-16 07:48:42','2020-08-13 12:56:11'),(157,'Clifford pays rent of  N200 per month for premises. He paid N 2,800 within the year, Compute the prepayment.','N300','N400','N660','N200','','','b','','utme','2016',113,'Admin','2016-11-16 07:48:42','2020-08-14 13:10:21'),(158,'Purchases can be ascertained through the preparation of a','stock account','sales account','total debtors’ control account','total creditors, control account','','','d','','utme','2016',92,'Admin','2016-11-16 07:48:42','2020-08-14 10:57:35'),(159,'When stock is withdrawn, for personal use, the accounting entries is to debit','stock account, credit drawings','drawing account credit stock account','personal account credit cash account','cash account, credit personal account.','','','b','','utme','2016',165,'Admin','2016-11-16 07:48:42','2020-08-08 18:22:13'),(160,'Sundry debtors in the balance sheet of Onoja Bakery and Sons totaled N800,000. A provision of 2% was made for discount and 5% provision for bad and doubtful debts.  Find the amount for sundry debtors after provision.','N744,800','N 760,000','N784, 000','N744, 000','','','d','','utme','2016',95,'Admin','2016-11-16 07:48:42','2020-08-12 10:18:19'),(161,'Which of the following is accounted for in receipts and payments account?','Accrued expenses on annual dances','Subscriptions due but not yet received','Interest on bank deposit','Depreciation of the club house.','','','c','','utme','2016',95,'Admin','2016-11-16 07:48:42','2020-08-13 12:59:35'),(162,'When the purchase Consideration is lower than the net asset, the buyer has gained the advantage of','capital reserve','revenue reserve','net-income','net loss','','','a','','utme','2016',87,'Admin','2016-11-16 07:48:42','2020-08-14 12:52:51'),(163,'An increase in government expenditure within a year is taken care of by means of','virement','financial regulations','supplementary estimate','warrant.','','','b','','utme','2016',102,'Admin','2016-11-16 07:48:42','2020-08-14 13:03:11'),(164,'A business organization prepares departmental account in order to','ascertain the contribution of each department to the organization','ascertain interdepartmental transfer','build other branches','know the number of departments in the organization.','','','a','','utme','2016',95,'Admin','2016-11-16 07:48:42','2020-08-05 15:32:18'),(165,'The objective of departmental account is to','ascertain the amount of profits or losses for the enterprise','ascertain the amount of profits or losses for each department','ascertain the cost of running the organization.','offset the loss of each department.','','','b','','utme','2016',110,'Admin','2016-11-16 07:48:42','2020-08-12 18:45:25'),(166,'Which of the following expenses relate to the profit and loss account of a manufacturing firm?','Administrative overhead.','Direct labour','Direct materials.','Work-in-progress.','','','a','','utme','2016',104,'Admin','2016-11-16 07:48:42','2020-08-07 11:02:55'),(167,'The difference between book keeping and accounting is that while','book keeping interprets data accounting records it','book keeping is regarded as  the language of the business, accounting ascertains its .strength and weakness','book keeping records data accounting interprets it','book keeping - summaries information, accounting communicates it.','','','c','','utme','2016',108,'Admin','2016-11-16 07:48:42','2020-08-14 13:11:58'),(168,'Alaka who owed Saka N15, 000, settled his deb  after- deducting cash discount of 10%. To record the discount in the book of Saka, debit','Saka’s account and credit discount received account','Alaka’s account and credit discount received account','discount received account andcredit Alaka’s account','discount allowed account and credit Alaka’s account.','','','a','','utme','2016',115,'Admin','2016-11-16 07:48:42','2020-08-14 13:24:24'),(169,'If the scrap value is now N15, 000, what will be the yearly depreciation using straight line method?','N11 000','N7, 000','N 4, 000','N24. 000','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','c','','utme','2016',105,'Admin','2016-11-16 07:48:42','2020-08-12 19:16:36'),(170,'The yearly depreciation using the straight line method would be','N5,200','N6,500','N8, 800','N4, 400','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','a','','utme','2016',103,'Admin','2016-11-16 07:48:42','2020-08-13 12:56:11'),(171,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N  5,000','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','c','','utme','2016',108,'Admin','2016-11-16 07:48:42','2020-08-05 10:03:40'),(172,'The market value of goods produced is','N30,500','N3, 600','N31,600','N31,620','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','b','','utme','2016',127,'Admin','2016-11-16 07:48:42','2020-07-22 21:30:17'),(173,'A suspense account is used to','agree the trial balance','record sales','record purchases','correct errors','','','a','','wassce','1997',62,'Admin','2016-11-18 07:24:28','2020-08-05 15:32:18'),(174,'To correct an error, the Purchases Account was debited while Suspense Account was credited. Which  of  the following was the cause of the error?','Under casting of purchases','Overcasting of purchases','Original entry.','Transportation of returns outwards','','','a','','wassce','1997',74,'Admin','2016-11-18 07:24:28','2020-08-14 13:03:11'),(175,'Subscription in advance is treated in the Balance Sheet of \tnon-profit making organizations as','current asset','fixed asset','Current liability','accumulated fund','','','c','','wassce','1997',98,'Admin','2016-11-18 07:24:28','2020-08-12 19:16:36'),(176,'A Sales Day Book is used to record','cash sales of stock','credit sales of stock','cash and credit sales of stock','cash sales of fixed assets','','','b','','wassce','1997',91,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:19'),(177,'Which of the following is not a capital expenditure to a local government?','Beds','Theatre equipment','Incubators','Drugs','','','d','','wassce','1997',94,'Admin','2016-11-18 07:24:28','2020-08-12 19:17:31'),(178,'A Receipt and Payments Account reveals','net profit','surplus','cash in hand','gross profit','','','c','','wassce','1997',100,'Admin','2016-11-18 07:24:28','2020-08-12 19:17:31'),(179,'An example of appropriation of profit in a company is','salaries','rent income','debenture interest','dividend.','','','d','','wassce','1997',74,'Admin','2016-11-18 07:24:28','2020-08-12 19:18:09'),(180,'In a partnership goodwill is recognized when','a new partner is admitted','a partner is dormant','the business is making huge profit','the business has good customer relations','','','a','','wassce','1997',89,'Admin','2016-11-18 07:24:28','2020-07-19 14:28:27'),(181,'Which of the following is a normal account?','Machinery','Debtors','Creditors','Salaries','','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:28','2020-08-12 19:16:36'),(182,'The net book value at the time of sale was','N=  16,000','N=  14,000','N=  12,000','N= 6,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:28','2020-08-14 13:03:11'),(183,'Accumulated depreciation at the time of sale was','N= 16,000','N=  14,000','N=  12,000','N=  8,000','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','b','','wassce','1997',80,'Admin','2016-11-18 07:24:28','2020-08-14 10:56:41'),(184,'The prof it on sale was','N=  8,000','N=  7,000','N=  6,000','N=  1,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',84,'Admin','2016-11-18 07:24:28','2020-08-14 13:03:11'),(185,'In Manufacturing Account, prime cost plus factory overhead is known as','conversion cost','cost of raw materials consumed','total cost','production cost','','','d','','wassce','1997',84,'Admin','2016-11-18 07:24:28','2020-08-13 12:56:11'),(186,'Which of the following is an advantage of the imprest system?','Making high profits in the business','Rewarding the imprest holder','Easy preparation of the final accounts','Meeting small items of expenditure','','','d','','wassce','1997',80,'Admin','2016-11-18 07:24:28','2020-08-13 12:48:17'),(187,'Where a business is purchased, the full amount of the purchase consideration is credited to','Purchase of Business Account','Creditor’s Account','Vendor’s Account','Purchaser’s Account.','','','a','','wassce','1997',79,'Admin','2016-11-18 07:24:28','2020-08-12 19:17:31'),(188,'A financial plan of action expressed in monetary terms is known as','imprest','consolidated fund','warrant','budget','','','d','','wassce','1997',90,'Admin','2016-11-18 07:24:28','2020-07-30 16:25:25'),(189,'Which of the following is not a source document for recording sales?','Debit note','Credit note','Receipt','Sales journal','','','d','','wassce','1997',111,'Admin','2016-11-18 07:24:28','2020-08-14 13:03:11'),(190,'The mark-up is','N  15,000','N 9,000','N  4,000','N  3,000','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','d','','wassce','1997',88,'Admin','2016-11-18 07:24:28','2020-08-13 12:59:35'),(191,'The double entry required for the mark-up is debit Branch','Sales Account, credit Branch Adjustment Account','Adjustment Account, credit Branch Stock Account','Stock Account, credit Branch Adjustment Account','Profit and Loss Account, credit Branch Stock Account,','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','c','','wassce','1997',76,'Admin','2016-11-18 07:24:28','2020-08-14 13:03:11'),(192,'A ledger is a','book of accounts','summary of entries','book of original entry','double entry posting','','','d','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:44'),(193,'A real account is the account of','expenses or losses','gains or income','physical tangible items','fictitious items','','','c','','wassce','1997',88,'Admin','2016-11-18 07:24:29','2020-08-07 11:02:55'),(194,'An item is fictitious because it','does not exist','is too costly','is worthless','cannot be sold for cash','','','a','','wassce','1997',82,'Admin','2016-11-18 07:24:29','2020-08-14 13:11:58'),(195,'Which of the following is not a personal account?','Bolaji Account','Drawings Account','P.Z. Plc Account','Cash Account','','','c','','wassce','1997',92,'Admin','2016-11-18 07:24:29','2020-08-13 12:48:17'),(196,'A provision is','an expense of business to be paid for in cash','an amount of loss from trading activities','a loss in value of all business assets','an expense the amount of which is not certain','','','d','','wassce','1997',99,'Admin','2016-11-18 07:24:29','2020-08-13 12:56:22'),(197,'A cash discount is a','Trading Account item','Profit and Loss Account item','Appropriation Account item','Receipts and Payments Account item','','','b','','wassce','1997',86,'Admin','2016-11-18 07:24:29','2020-08-14 13:03:11'),(198,'The amount of capital expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','b','','wassce','1997',78,'Admin','2016-11-18 07:24:29','2020-07-19 14:28:27'),(199,'The amount of revenue expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','c','','wassce','1997',100,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:50'),(200,'An expense becomes an accrual because it','is due for payment','is a Profit and Loss Account item','is a Trading Account item','is to be paid within the next one year','','','a','','wassce','1997',96,'Admin','2016-11-18 07:24:29','2020-08-14 13:03:11'),(201,'The amount for which a business is sold is known as','goodwill','capital reserve','purchase consideration','premium','','','c','','wassce','1997',76,'Admin','2016-11-18 07:24:29','2020-08-05 15:32:18'),(202,'The person, who is responsible for the formation of a company is called the','promoter','sponsor','shareholder','director','','','a','','wassce','1997',78,'Admin','2016-11-18 07:24:29','2020-08-12 19:18:09'),(203,'The amount of a company’s profit given to a shareholder is known as','premium','dividend','interest','allotment','','','b','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:54'),(204,'Which of the following best describes the path of a transaction?','Source documents to Journal to Ledger','Source documents to Ledger to Journal','Journal to Ledger to source documents','Journal to source documents to Ledger','','','a','','wassce','1997',98,'Admin','2016-11-18 07:24:29','2020-08-14 10:57:16'),(205,'Where there are no proper books of account, the capital at the commencement of a period is ascertained by preparing','Total Debtors and Creditors Accounts','Bank Reconciliation Statement','Statement of Affairs','Trading, Profit and Loss Accounts','','','c','','wassce','1997',98,'Admin','2016-11-18 07:24:29','2020-08-13 12:59:35'),(206,'Rent receivable is a','current asset','current liability','contingent liability','fictitious asset','','','b','','wassce','1997',95,'Admin','2016-11-18 07:24:29','2020-07-30 16:49:45'),(207,'Which of the following is a factory overhead?','carriage on raw materials','Purchase of raw materials','Production wages','Depreciation of factory equipment.','','','d','','wassce','1997',97,'Admin','2016-11-18 07:24:29','2020-08-12 18:46:05'),(208,'The purchase consideration was','N  24,000','N 23,000','N  20,000','N 15,000','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','a','','wassce','1997',67,'Admin','2016-11-18 07:24:29','2020-08-05 15:32:18'),(209,'The amount of goodwill was','N  4,000','N  3,000','N  2,000','N  1,000.','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','d','','wassce','1997',91,'Admin','2016-11-18 07:24:29','2020-08-05 10:03:40'),(210,'When a share is sold for less than its nominal value, the difference is called','discount','reserve','premium','loss','','','a','','wassce','1997',85,'Admin','2016-11-18 07:24:29','2020-08-13 12:56:11'),(211,'Which of the following serves the same purpose as a Trading Account?','Branch Adjustment Account','Goods sent to Branch Account','Branch Stock Account','Branch Debtors Account','','','c','','wassce','1997',92,'Admin','2016-11-18 07:24:29','2020-08-12 19:15:53'),(212,'Which of the following is not a revenue receipt?','Receipt from sales of goods','Rent from premises sublet','Interest on savings account','cash on sale of fixed asset','','','d','','wassce','1997',93,'Admin','2016-11-18 07:24:29','2020-08-12 19:17:07'),(213,'The art of collecting, recording, presenting and interpreting accounting data is','cost accounting','management accounting','financial accounting','data processing.','','','c','','wassce','2006',100,'Admin','2016-11-18 07:56:05','2020-08-14 13:11:58'),(214,'The depreciation method in which the number of years of the useful life of an asset is allocated in a reverse order is','straight line','reducing balance','sum of the years’ digits','revaluation.','','','c','','wassce','2006',107,'Admin','2016-11-18 07:56:06','2020-08-12 19:16:36'),(215,'A system where a separate cash book is maintained for small payments is','single entry','imprest','float','reimbursement.','','','b','','wassce','2006',110,'Admin','2016-11-18 07:56:06','2020-08-12 18:46:26'),(216,'Public sector accounting is practiced in','public limited companies','government organizations','profit making organizations','public trading companies.','','','b','','wassce','2006',122,'Admin','2016-11-18 07:56:06','2020-08-12 10:18:19'),(217,'A book that contains the accounts for the financial transactions of an organization is the','journal','ledger','folio','register','','','b','','wassce','2006',101,'Admin','2016-11-18 07:56:06','2020-08-13 12:59:35'),(218,'A sales ledger contains','creditors’ accounts','nominal accounts','real accounts','debtors’ accounts.','','','d','','wassce','2006',121,'Admin','2016-11-18 07:56:06','2020-07-14 13:26:09'),(219,'Books of account consists of','ledgers and subsidiary books','ledgers and principal books','folios and subsidiary books','ledgers and cash book.','','','a','','wassce','2006',98,'Admin','2016-11-18 07:56:06','2020-08-13 12:56:22'),(220,'The amount set aside out of profits earned by a company which are not meant for liability or contingency are','dividends','provisions','retained profits','reserves','','','d','','wassce','2006',106,'Admin','2016-11-18 07:56:06','2020-08-13 12:56:11'),(221,'The basis of accounting which eliminates debtors and creditors is','cash basis','accrual basis','fund basis','commitment basis.','','','a','','wassce','2006',107,'Admin','2016-11-18 07:56:06','2020-08-12 19:16:36'),(222,'Which of the following is not a revenue account?','Sales','Purchases','Discount received','Interest received','','','b','','wassce','2006',103,'Admin','2016-11-18 07:56:06','2020-08-14 13:24:24'),(223,'If  no profit is to be retained, proposed preference shares dividend is','N  28,000','N  16,000','N  12,000.','N  4,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',88,'Admin','2016-11-18 07:56:06','2020-08-12 18:46:05'),(224,'If  no profit is to be retained, proposed ordinary shares dividend is','N   48,000','N  44,000','N  40,000','N  28,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','c','','wassce','2006',96,'Admin','2016-11-18 07:56:06','2020-08-12 12:01:09'),(225,'The dividend per ordinary share for the year is','N  0.88 kobo','N  0.40 kobo','N  0.20 kobo','N  0.17 kobo','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',100,'Admin','2016-11-18 07:56:06','2020-08-13 12:56:11'),(226,'A customer who returns goods to the supplier because they are defective is issued a','debit note','credit note','delivery note','bank note.','','','b','','wassce','2006',101,'Admin','2016-11-18 07:56:06','2020-08-12 19:14:31'),(227,'Cross referencing among different books of accounts is achieved with the use of','columns','reference numbers','folio','margin.','','','c','','wassce','2006',102,'Admin','2016-11-18 07:56:07','2020-08-12 18:46:05'),(228,'In company accounts, profit after tax is shared in the','appropriation account','revaluation account','current account','realization account.','','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-25 20:35:38'),(229,'Which of the following is not a source of revenue to a government?','Taxation','Sale of goods','Imposition of fines','Grants','','','b','','wassce','2006',103,'Admin','2016-11-18 07:56:07','2020-08-14 10:57:16'),(230,'Whatever is fed into the computer is exactly what would be processed and produced as output. This is the concept of','sorting out','last in, first out','first in, first out','garbage in, garbage out.','','','d','','wassce','2006',103,'Admin','2016-11-18 07:56:07','2020-08-14 13:11:58'),(231,'Bank reconciliation statement reconciles','bank and cash balances in the cash book','bank balance in the cash book and bank statement balance','cash balance in the cash book and bank statement balance','bank balance brought down and bank balance carried down in the cash bcok.','','','b','','wassce','2006',96,'Admin','2016-11-18 07:56:07','2020-08-07 11:02:55'),(232,'The unit which keeps government’s books of accounts is the','Central Bank','Internal Audit Department','Treasury Department','Accountant General’s Department.','','','c','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-08-12 19:17:07'),(233,'Which of the following is not a debit item in a partnership \tappropriation account?','Interest on drawings','Partner’s salary','Interest on partner’s capital','Share of profit.','','','a','','wassce','2006',110,'Admin','2016-11-18 07:56:07','2020-08-13 12:59:35'),(234,'Revenue is recognized in the profit and loss account as soon as a','debtor pays what is due from him','sale of goods takes place and money is received','sale of goods takes place whether or not money is received','sale of a fixed asset takes place.','','','c','','wassce','2006',95,'Admin','2016-11-18 07:56:07','2020-08-12 10:18:19'),(235,'“A business unit is assumed to operate into foreseeable future and earn reasonable net income”. This statement is emphasized by the concept of','business entity','going concern','realization','accrual.','','','b','','wassce','2006',116,'Admin','2016-11-18 07:56:07','2020-08-13 12:56:11'),(236,'Which of the following is not used in solving problems of incomplete records?','Control Accounts','Statement of affairs','Cash book','Balance sheet','','','d','','wassce','2006',112,'Admin','2016-11-18 07:56:07','2020-08-12 19:17:07'),(237,'In a system of incomplete records, the opening capital is determined by preparing','statement of affairs','balance sheet','cash book','trial balance.','','','a','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:27'),(238,'Cost of raw materials consumed is','D113,000','D105,500','D98,000','D95,500.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','c','','wassce','2006',98,'Admin','2016-11-18 07:56:07','2020-08-14 10:57:35'),(239,'Prime cost is','D120,500','D117,700','D114,900','D114,300.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','b','','wassce','2006',90,'Admin','2016-11-18 07:56:07','2020-08-13 12:56:22'),(240,'Cost of goods manufactured is','D138,000','D131,800','D130,500','D123,000.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','a','','wassce','2006',83,'Admin','2016-11-18 07:56:07','2020-08-05 15:32:18'),(241,'A set of instructions fed into a computer for accomplishing a given task is a/an','input','programme','output','data.','','','b','','wassce','2006',107,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:31'),(242,'Control accounts are also known as','contra accounts','total accounts','ledger accounts','integral accounts.','','','b','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-08-14 13:24:24'),(243,'Which of the following is charged to trading account?','Discounts allowed','Carriage outwards','Salaries','Carriage inwards.','','','d','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-08-12 18:45:25'),(244,'Which of the following is not a debit item in a creditor’s control \taccount?','Cash paid','Returns outwards','Purchases','Discounts received','','','c','','wassce','2006',99,'Admin','2016-11-18 07:56:07','2020-08-12 19:16:36'),(245,'Using the straight line method, the depreciation charged for year 2002 was','N 160,000','N  130.000','N  100,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',97,'Admin','2016-11-18 07:56:07','2020-08-13 12:56:11'),(246,'Using the reducing balance method, the depreciation charged for year 2002 was','N 100,000','N  90,000','N  80,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',93,'Admin','2016-11-18 07:56:07','2020-08-12 19:17:07'),(247,'Using the reducing balance method, the depreciation charged for year 2003 was','N  160,000','N  150,000','N   130,000','N  120,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','b','','wassce','2006',90,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:37'),(248,'Which of the following is not a revenue expenditure?','Payment: of salaries','Payment for advertisement','Purchases of motor vehicle','Purchases of goods.','','','c','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-08-13 12:56:11'),(249,'The amount allowed off the cost price of an article to stimulate patronage is','cash discount','trade discount','discount on debt','discount on bills.','','','b','','wassce','2006',104,'Admin','2016-11-18 07:56:08','2020-08-14 13:24:24'),(250,'Which of the following is a Journal as well as an account?','Sales day book','Cash book','General journal','Purchases journal','','','c','','wassce','2006',93,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:40'),(251,'Which of the following columns of a three column cash book \tare memoranda?  I. Discount received  II. Discount allowed III. Cash IV. Bank','I and II only','I and III only','II and III only','ll and IV only.','','','d','','wassce','2006',114,'Admin','2016-11-18 07:56:08','2020-08-05 10:03:40'),(252,'The adjusted cash book balance is','D11,200','D8,400','D6,200','D5,600','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','d','','wassce','2006',99,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:49'),(253,'The balance as per bank statement is','D10,900','D8,400','D5,600','D2,800','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:08','2020-08-12 19:17:31'),(254,'Where the head office maintains all books of account, goods sent to branch is credited to','Goods Sent to Branch Account','Branch Stock Account','Branch Stock Adjustment Account','Head Office Current Account','','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:08','2020-08-14 13:03:11'),(255,'Which of the following is not a purpose for preparing departmental accounts? To','compare the results of different departments','employ staff into different departments','reward departmental managers','obtain information for formulating policies.','','','b','','wassce','2006',89,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:52'),(256,'Rent expenses for the year 2005 is','N 11,400','N  11,300','N  11,200','N  10,200.','Rent accrued 1st January, 2005 [600], Rent paid in 2005 [11,300], Rent prepaid 31st December, 2005 [500]','','c','','wassce','2006',121,'Admin','2016-11-18 07:56:08','2020-08-12 19:18:09'),(257,'Which of the following is not classified as an overhead?','Factory rates','Factory power','Factory building extension','Factory depreciation.','','','c','','wassce','2006',102,'Admin','2016-11-18 07:56:08','2020-08-14 13:03:11'),(258,'The objective of accounting information is to enable users to','prepare the financial statements.','value stock','make decisions','prepare budgets','','','c','','wassce','2012',107,'Admin','2016-12-13 21:23:13','2020-08-07 11:02:55'),(259,'Trade discounts are given for','bulk purchases','prompt payment','quick delivery','cash payment','','','a','','wassce','2012',98,'Admin','2016-12-13 21:23:13','2020-08-14 12:58:27'),(260,'When closing stock is overstated, it would reduce','cost of sales and increase gross profit.','gross profit and increase cost of sales.','purchases and increase sales.','sales and increase purchases.','','','a','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:58'),(261,'Which of the following is not a source document?','Journal proper','Sales invoice','Debit note','Credit note','','','a','','wassce','2012',101,'Admin','2016-12-13 21:23:13','2020-08-14 13:10:21'),(262,'A fixed asset fully written-down by a trader is now considered to be worth N5,000. The double entry required to effect       this is: debit','Asset Account; credit Purchases Account.','Asset Account; credit Capital Account.','Capital Account; credit Asset Account.','Capital Account; credit Profit and Loss Account.','','','b','','wassce','2012',93,'Admin','2016-12-13 21:23:13','2020-08-12 19:18:09'),(263,'Which of the following is a book of original entry?','Ledger','Balance sheet','Bank statement','Sales journal','','','d','','wassce','2012',106,'Admin','2016-12-13 21:23:13','2020-07-30 16:25:25'),(264,'A Balance Sheet shows only','fixed assets and current assets','assets and long term liabilities.','assets and liabilities','assets and capital','','','c','','wassce','2012',90,'Admin','2016-12-13 21:23:13','2020-07-25 17:52:56'),(265,'The process of entering transaction from one book to another is','reading.','posting.','numbering','listing','','','b','','wassce','2012',92,'Admin','2016-12-13 21:23:13','2020-07-30 16:49:44'),(266,'which of the following is a Trading Account item?','Discounts allowed','Discounts received','Carriage outwards','Carriage inwards','','','d','','wassce','2012',92,'Admin','2016-12-13 21:23:13','2020-08-12 18:46:26'),(267,'The addition of prime cost and factory overheads is','total factory overheads.','market value of goods produced.','cost of goods produced','work-in-progress.','','','c','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-26 06:44:15'),(268,'Capital receipt is collected','on sales of motor vehicle.','on sales of stock in trade.','from trade debtor','from trading activities.','','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:05'),(269,'Which of the following is an example of factory overheads?','Salary of marketing officer','Salary of production officer','Salary of accounting officer','Wages of machine operator','','','d','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-08-13 19:42:03'),(270,'Osa started business with Le40,000 cash. The accounting entry is debit','Cash Account; credit Capital Account.','Capital Account; credit Cash Account.','Purchases Account; credit Cash Account.','Expenses Account; credit Capital Account.','','','a','','wassce','2012',102,'Admin','2016-12-13 21:23:13','2020-08-12 19:18:24'),(271,'Branch Stock Account is used to determine the','net value of goods sent to branch.','gross profit of the branch.','branch credit sales.','branch net profit or loss.','','','b','','wassce','2012',99,'Admin','2016-12-13 21:23:13','2020-08-12 19:15:53'),(272,'The name given to a budget in public service accounting is','vote.','subvention.','general order.','estimate.','','','d','','wassce','2012',97,'Admin','2016-12-13 21:23:13','2020-08-12 19:15:53'),(273,'Which of the following is not prepared by a partnership?','Trading Account','Profit and Loss Account','Income and Expenditure Account','Profit and Loss Appropriation Account','','','c','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-08-12 19:16:36'),(274,'A partner who only makes capital contribution but does not take part in the management of the partnership business is a/an','ordinary partner','limited partner','dormant partner','nominal partner','','','d','','wassce','2012',103,'Admin','2016-12-13 21:23:13','2020-08-14 13:10:21'),(275,'Which of the following is component of prime cost?','Depreciation','Royalty','Factory rent','Factory electricity','','','d','','wassce','2012',109,'Admin','2016-12-13 21:23:13','2020-08-12 19:18:24'),(276,'The concept which establishes the rule for the periodic recognition of revenue as soon as it is capable of objective measurement is','going concern.','entity.','consistency.','realization.','','','d','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-08-14 12:52:38'),(277,'Rent accrued in 2009 was D140. In 2010, D900 was paid while D160 was outstanding. Rent for 2010 was','D1,200.','D1.060.','D920.','D880.','','','c','','wassce','2012',87,'Admin','2016-12-13 21:23:13','2020-08-13 12:56:22'),(278,'Which of the following is not an input device?','Card reader','Paper top reader','Alpha-numeric keyboard','Line printer','','','d','','wassce','2012',80,'Admin','2016-12-13 21:23:14','2020-08-13 12:56:22'),(279,'The equivalent of Income and Expenditure Account in a trading concern is','Trading Account.','Profit and Loss Account.','Appropriation Account.','Balance Sheet.','','','b','','wassce','2012',108,'Admin','2016-12-13 21:23:14','2020-08-13 12:59:35'),(280,'The term used to denote the capital of a not-for-profit making \torganization is','annuity fund.','nominal capital.','circulating capital.','cumulated fund','','','d','','wassce','2012',101,'Admin','2016-12-13 21:23:14','2020-08-14 12:52:51'),(281,'The portion of authorized capital that has been allotted to subscribers is','called up capital','paid up capital.','issued capital','nominal capital.','','','c','','wassce','2012',93,'Admin','2016-12-13 21:23:14','2020-08-12 19:18:24'),(282,'Partners whose liabilities are restricted to their financial contribution to the partnership in the event of winding up are','ordinary partners','limited partners','dormant partners','sleeping partners','','','b','','wassce','2012',85,'Admin','2016-12-13 21:23:14','2020-08-12 10:18:19'),(283,'If creditors at 1/1/10 were Le 3,000; creditors at 31/12/10 Le 5,500 and payments to creditors Le 29,000. The purchases figure for 2010 is','Le 34,500','Le 32,000','Le 31,500','Le 26,500','','','c','','wassce','2012',104,'Admin','2016-12-13 21:23:14','2020-08-14 13:03:11'),(284,'Which of the following is not found in the personal ledger?','Debtors Account','Creditors Account','Capital Account','Nominal Account','','','c','','wassce','2012',109,'Admin','2016-12-13 21:23:14','2020-08-14 12:58:02'),(285,'The Sales Ledger Control Account is also referred to as','Bought Ledger Control Account.','Purchases Account.','Total Debtors Account.','Total Creditors Account.','','','c','','wassce','2012',98,'Admin','2016-12-13 21:23:14','2020-08-12 19:18:09'),(286,'Capital expenditure for the year was','Le 545,000','Le 490,000','Le 450,000','Le 300,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','b','','wassce','2012',101,'Admin','2016-12-13 21:23:14','2020-08-12 18:46:26'),(287,'The amount of recurrent expenditure was','Le 245,000.','Le 175,000','Le 135,00.','Le 80,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','c','','wassce','2012',97,'Admin','2016-12-13 21:23:14','2020-08-14 12:58:27'),(288,'An increase in the provision for doubtful debts results in a/an','increase in the gross profit.','decrease in the gross profit.','decrease in the net profit.','increase in the net profit.','','','c','','wassce','2012',86,'Admin','2016-12-13 21:23:14','2020-08-14 12:58:27'),(289,'Which of the following errors affects the agreement of a Trial Balance?','Wrong addition in the sales account','Crediting a purchase to A. Tambi’s account instead of F. Tambi’s account','Failure to enter sales in the books','Posting the purchase of a van to the debit side of the purchases account','','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:14','2020-08-14 13:24:24'),(290,'The excess of the value of assets over the purchase \tconsideration on acquisition of a business is credited to','share capital account.','goodwill account.','capital reserve account','general reserve account.','','','c','','wassce','2012',98,'Admin','2016-12-13 21:23:14','2020-07-26 06:44:15'),(291,'Shares of N3 nominal value were issued at a price of  N4. The difference of N1 is a','commission.','discount.','premium.','bonus.','','','c','','wassce','2012',103,'Admin','2016-12-13 21:23:14','2020-08-12 19:18:24'),(292,'Which of the following is not the purpose of control account?','Check on errors of addition','Locate errors','Locate missing figures','Monitor the cash book','','','d','','wassce','2012',106,'Admin','2016-12-13 21:23:14','2020-08-14 13:10:21'),(293,'Which of the following is not part of the Central Processing Unit of a computer?','Arithmetical and Logical unit','Memory unit','Input unit','Control unit','','','c','','wassce','2012',111,'Admin','2016-12-13 21:23:14','2020-07-25 17:52:56'),(294,'The double entry to record the proceeds on disposal of assets is debit','Bank Account; credit Asset Disposal Account.','Asset Disposal Account; credit Bank Account.','Provision for Depreciation Account; credit Asset Disposal Account','Asset Disposal Account; credit Provision for Depreciation Account.','','','a','','wassce','2012',89,'Admin','2016-12-13 21:23:14','2020-08-13 12:48:17'),(295,'An underwriter for a company’s share is paid','Interest.','commission.','dividend.','salary.','','','b','','wassce','2012',103,'Admin','2016-12-13 21:23:15','2020-08-12 19:15:53'),(296,'Which of the following is found in a Memorandum of \tAssociation?','Names of directors','Appointment of directors','Object of the business','Payment of dividend','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:15','2020-08-14 10:59:38'),(297,'Administrative, selling and distribution expenses in a \tmanufacturing firm are recorded in','Trading Account.','Manufacturing Account.','Profit and Loss Account.','Balance Sheet.','','','c','','wassce','2012',124,'Admin','2016-12-13 21:23:15','2020-08-15 05:32:17'),(298,'Which of the following is not a revenue to a local government?','Fines','Licenses','Personal income tax','Tenement rates','','','c','','wassce','2012',92,'Admin','2016-12-13 21:23:15','2020-07-25 17:52:56'),(299,'The capital is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','a','','wassce','2012',96,'Admin','2016-12-13 21:23:15','2020-08-12 19:18:24'),(300,'The liability is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','d','','wassce','2012',117,'Admin','2016-12-13 21:23:15','2020-08-12 19:18:24'),(301,'Which of the following is not an item in the profit and loss account?','Drawings','Interest','Balances','Bad debts','','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:15','2020-08-13 12:53:42'),(302,'A loss made on the disposal of a fixed asset is debited to','Sales Account.','Purchases Account.','Profit and Loss Account.','Capital Account.','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:15','2020-08-02 21:18:26'),(303,'Which of the following describes a trial balance?','It is a special account','It is a list of balances in the books','It reveals the financial position of a business','It shows all the entries in the books of a business','','','b','','wassce','2015',76,'Admin','2016-12-14 06:09:04','2020-08-13 20:41:29'),(304,'Which of the following is not a feature of accounting information?','Affordability','Timeliness','Accuracy','Completeness','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:05','2020-08-14 12:58:02'),(305,'Which of the following is the equation for determining net profit or loss from the records of a firm?','Closing Capital - Drawings - Capital Introduced','Opening Capital + Drawings - Closing Capital','Closing Capital + Opening Capital - Drawings','Closing Capital + Drawings - Opening Capital','','','d','','wassce','2015',100,'Admin','2016-12-14 06:09:05','2020-08-12 18:46:26'),(306,'Purchase invoice is first entered in the','purchases account','cash book','sales journal','purchase journal','','','d','','wassce','2015',94,'Admin','2016-12-14 06:09:05','2020-08-12 19:14:31'),(307,'Assets acquired is recorded by debiting','Asset Account, crediting Cash Account','Cash Account, crediting Asset Account','Purchase of Business Account, crediting Sale of Business Account','Asset Account, crediting Purchase of business Account','','','a','','wassce','2015',84,'Admin','2016-12-14 06:09:05','2020-08-14 13:03:11'),(308,'Goods returned to a supplier is','debited to Returns outwards account','credited to Returns outwards account','debited to Returns inwards account','credited to Returns inwards account','','','b','','wassce','2015',86,'Admin','2016-12-14 06:09:05','2020-08-12 18:46:05'),(309,'Which of the following is a real account?','Plant account','Salaries account','Creditors account','Trading account','','','a','','wassce','2015',90,'Admin','2016-12-14 06:09:05','2020-08-07 11:02:55'),(310,'The accounting ledger for goods sold on credit are debit','Debtors Account, credit Sales Account','Creditors Account, credit Sales Account','Sales Account, credit Debtors Account','Sales Account, credit Creditors Account','','','a','','wassce','2015',84,'Admin','2016-12-14 06:09:05','2020-08-12 12:01:09'),(311,'Which of the following is not a book of original entry?','Sales journal','Purchases account','Cash account','Return inwards journal','','','c','','wassce','2015',93,'Admin','2016-12-14 06:09:05','2020-08-02 21:18:26'),(312,'What is the ledger entry for the sale of plant and machinery on credit to Wilson?','Credit Sales Account and debit Cash Account','Credit Plant and Machinery Account and debit Wilson’s Account','Credit Sales Account and debit Wilson’s Account','Credit Plant and Machinery Account and debit Cash Account','','','b','','wassce','2015',81,'Admin','2016-12-14 06:09:05','2020-08-12 10:18:19'),(313,'Discount Received Account is a','real account','personal account','nominal account','profit and loss account','','','c','','wassce','2015',81,'Admin','2016-12-14 06:09:05','2020-08-13 12:56:11'),(314,'Which of the following accounts has a credit balance?','Capital','Cash','Drawings','Premises','','','a','','wassce','2015',81,'Admin','2016-12-14 06:09:05','2020-08-12 19:17:31'),(315,'The accounting entry to correct sales day book overcast is','debit Sales Account and credit Debtors Account','debit Suspense Account and credit Sales Account','debit Debtors Account and credit Suspense Account','debit Sales Account and credit Suspense Account','','','d','','wassce','2015',101,'Admin','2016-12-14 06:09:05','2020-08-14 12:58:02'),(316,'Which of the following expresses the accounting equating?','Capital + Assets = Liabilities','Assets - Liabilities = Capital','Liabilities + Current Assets = Fixed Assets','Liabilities - Capital = Current Assets','','','b','','wassce','2015',91,'Admin','2016-12-14 06:09:05','2020-08-15 05:32:17'),(317,'When the invoice of a customer is overcast, the supplier will send to him a','cheque','payment voucher','debit note','credit note','','','d','','wassce','2015',75,'Admin','2016-12-14 06:09:05','2020-08-12 18:46:26'),(318,'Unpresented cheques are cheque','that have been recorded in the cash book, but not by the bank','that have been received by the bank, but recorded in the cash book','returned by the bank','written, but not handed over to customers','','','a','','wassce','2015',87,'Admin','2016-12-14 06:09:05','2020-08-13 12:56:22'),(319,'The cost of putting goods into a saleable condition is charged to','balance sheet','trial balance','profit and loss account','trading account','','','d','','wassce','2015',99,'Admin','2016-12-14 06:09:05','2020-08-13 12:59:35'),(320,'Which of the following is not a method of depreciating fixed assets?','Revaluation','Straight line','Diminishing balance','Obsolescence','','','d','','wassce','2015',69,'Admin','2016-12-14 06:09:05','2020-08-14 12:52:38'),(321,'In preparing a profit and loss account, a decrease in provision for doubtful debts accounts is treated as','Currentability','expenses','Income','Current asset','','','c','','wassce','2015',94,'Admin','2016-12-14 06:09:06','2020-08-05 15:32:18'),(322,'Which of the following items is found in the sales ledger control account?','Discount received','Total credit purchases','Discount allowed','Returns outwards','','','a','','wassce','2015',81,'Admin','2016-12-14 06:09:06','2020-07-30 16:25:25'),(323,'The process of using sales ledger balance to cancel off purchases ledger balance is','balancing','set off','reconciliation','cancelling','','','b','','wassce','2015',101,'Admin','2016-12-14 06:09:06','2020-08-13 12:53:42'),(324,'The total of the returns outwards journal is posted to the','credit side of the returns outwards book','debit side of the returns outwards account','debit side of the purchases returns book','credit side of the returns outwards account','','','d','','wassce','2015',105,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:03'),(325,'Which of the following is not revealed by a firm’s accounting records?','Profit of a period','Quality of labour force','Credit worthiness','Value of assets','','','b','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-07-26 06:44:15'),(326,'In the balance sheet of a social club, subscription owing is treated as a','current liability','current asset','tangible asset','long-term liability','','','b','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-08-14 12:52:51'),(327,'The accounting concept that allows the cost of kitchen cutlery to be expensed, though it will be used for more than one year is','materiality','accrual','going concern','business entity','','','a','','wassce','2015',92,'Admin','2016-12-14 06:09:06','2020-08-12 19:18:09'),(328,'The accounting concept that assumes that a business will continue operating for an indefinite period is','business entity','going concern','consistency','duality','','','b','','wassce','2015',76,'Admin','2016-12-14 06:09:06','2020-08-12 19:15:27'),(329,'The accounting concept that states that a firm’s financial affairs must be separated from that of the owner’s private transactions is','business entity','going concern','consistency','duality','','','a','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-08-12 18:46:05'),(330,'Goodwill is recognized in partnership accounts when','the business makes a huge profit','the business has good customer relationship','a partner is dormant','a new partner is admitted','','','d','','wassce','2015',86,'Admin','2016-12-14 06:09:06','2020-08-13 12:48:17'),(331,'In which of the following accounts is interest on partners capital found?','Profit and loss','Trading','Income surplus','Profit and loss appropriation.','','','d','','wassce','2015',96,'Admin','2016-12-14 06:09:06','2020-08-12 18:46:26'),(332,'Which of the following is not stated in the partnership agreement?','Profit sharing ratio','Interest on capital','Interest on fixed asset','Purpose of partnership','','','c','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-08-13 12:56:11'),(333,'How much was paid for goodwill?','GHc/ 350,000','GHc/ 260,000','GHc/  90,000','GHc/ 60,000','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','d','','wassce','2015',86,'Admin','2016-12-14 06:09:06','2020-08-13 12:56:11'),(334,'The double entry to record the goodwill in the books is debit','Cash Account and credit Goodwill Account','Goodwill Account and credit Purchase of Business Account','Goodwill Account and credit Cash Account','Purchase of Business Account and credit Cash Account','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','b','','wassce','2015',93,'Admin','2016-12-14 06:09:06','2020-08-13 12:56:11'),(335,'The document which sets out the internal arrangement for the proper management of a company is the','prospectus','article of association','memorandum of association','certificate of incorporation','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','c','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-08-13 12:56:22'),(336,'A person who has applied to purchase shares in a company is referred to as','a promoter','a subscriber','an allottee','an underwriter','','','b','','wassce','2015',94,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:19'),(337,'Which of the following expenses is allocated according to the floor \tarea?','Wages and Salaries','Rent and rates','Canteen expenses','Discount allowed','','','b','','wassce','2015',92,'Admin','2016-12-14 06:09:06','2020-08-12 12:01:09'),(338,'Goods stolen at the branch is debited to','Defalcations Account','Branch Stock Account','Branch Adjustment Account','Branch Debtors Account','','','c','','wassce','2015',89,'Admin','2016-12-14 06:09:06','2020-08-14 12:58:02'),(339,'Which of the following is a source of revenue for a local government?','Personal income tax','Company registration fees','Royalties','Market tolls','','','d','','wassce','2015',72,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:22'),(340,'The instrument used to release fund which the minister of finance had earlier withheld is','reserve expenditure warrant','supplementary general warrant','provisional general warrant','supplementary statutory warrant','','','b','','wassce','2015',95,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:23'),(341,'Which of the following relates to cash basis of accounting?','Accruals and prepayments are considered','Debtors and creditors are recorded','Fixed assets are written off in the year of purchase','Profits are maximized','','','d','','wassce','2015',84,'Admin','2016-12-14 06:09:06','2020-08-05 10:03:40'),(342,'Which of the following is found on the credit side of a partnership’s appropriation of profit account?','Interest on capital','Interest on drawings','share of profit','Drawings','','','b','','wassce','2015',75,'Admin','2016-12-14 06:09:06','2020-08-14 13:11:58'),(343,'Which of the following is a spreadsheet application?','Excel','Word','Internet','Windows','','','a','','wassce','2015',83,'Admin','2016-12-14 06:09:06','2020-08-12 18:45:25'),(344,'The quality of output information depends on the','quality of input data','time of processing','speed of processing','quantity of output device','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:07','2020-07-14 13:29:27'),(345,'The source document used to make entries in the purchases day book is','debit note','credit note','invoice','receipt','','','a','','wassce','2014',86,'Admin','2016-12-14 06:44:38','2020-08-13 12:59:35'),(346,'book that contains individual accounts of suppliers is the','purchases ledger','general ledger','nominal ledger','sales ledger','','','a','','wassce','2014',87,'Admin','2016-12-14 06:44:39','2020-08-13 12:56:22'),(347,'In the operation of an imprest system of petty cash, the','petty cashier pays all expenses','petty cashier pays money to the accountant','petty cashier regularly begins each period with the same amount of money','main cashier accounts to the petty cashier for some expenses made by him','','','c','','wassce','2014',85,'Admin','2016-12-14 06:44:39','2020-08-12 19:15:27'),(348,'An example of a credit entry in a profit and loss account is','carriage inwards','carriage outwards','discounts allowed','discounts received','','','d','','wassce','2014',71,'Admin','2016-12-14 06:44:39','2020-08-12 12:01:09'),(349,'Which of the following subsidiary books involves cash movement?','Sales day book','Purchases day book','Returns inwards book','Petty cash book','','','d','','wassce','2014',85,'Admin','2016-12-14 06:44:39','2020-08-12 19:16:36'),(350,'The accounting treatment for a dishonoured cheque is; debit','Customer’s Account; Credit Bank Account','Bank Account; Credit Customer’s Account','Customer’s Account; Credit Sales Account','Sales Account; Credit Customer’s Account\\\\','','','a','','wassce','2014',93,'Admin','2016-12-14 06:44:39','2020-08-13 12:48:17'),(351,'Net turnover is referred to as','purchases','assets','sales','profits','','','c','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:33'),(352,'Which of the following transactions will result in disagreement between the cash book and the bank statement?','Selling of goods on credit to a customer','Withdrawal of goods by the proprietor for his personal use','Cheque paid directly into the bank account by a customer','Omission of purchases received from a supplier on credit','','','c','','wassce','2014',79,'Admin','2016-12-14 06:44:39','2020-08-14 10:57:35'),(353,'Purchases Account is overcast by N200, while Wages Account is under cast by N200. This is','an error of omission','a compensating error','an error of commission','an error of principle','','','b','','wassce','2014',93,'Admin','2016-12-14 06:44:39','2020-08-12 18:45:25'),(354,'Which of the following is used to record the disposal of a fixed asset?','Journal  Proper','Petty  Cash  Book','Sales Day Book','Purchases Day Book','','','a','','wassce','2014',77,'Admin','2016-12-14 06:44:39','2020-08-12 19:18:09'),(355,'The annual depreciation is','N9,000','N8,500','N8,000','N6,500','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',95,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:38'),(356,'The accumulated depreciation as at 31/12/2013 is','N18,500','N17,000','N16,000','N8,000','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',99,'Admin','2016-12-14 06:44:39','2020-08-12 10:18:19'),(357,'An error of principle is made, if','an entry has been made in the wrong class of account','a transaction has been completely omitted','an entry has been made on the wrong side of the two accounts concerned','a transaction is entered in both accounts for the wrong amount','','','a','','wassce','2014',98,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:40'),(358,'Which of the following is entered in the general journal?','Purchase of goods','Sale of goods on credit','Returns inwards','Acquisition of fixed assets','','','d','','wassce','2014',89,'Admin','2016-12-14 06:44:39','2020-08-14 13:03:11'),(359,'The cost of carriage outward is classified as','a selling and distribution expense','an administrative expense','a trading expense','a finance expense','','','a','','wassce','2014',86,'Admin','2016-12-14 06:44:39','2020-08-14 13:03:11'),(360,'The purchase of ten ceiling fans by Akpan Electronic Enterprises will be recorded as','an acquisition of fixed asset','an expense in its general office expense account','part of capital in the capital account','an acquisition of stock','','','d','','wassce','2014',106,'Admin','2016-12-14 06:44:39','2020-08-13 12:56:11'),(361,'Which of the following accounts would appear in the nominal ledger?  (I)  Sanison’s account (a debtor)  ( II) Motor vehicle account (III) Sales account  (IV)  Rent and rates account','I, II and III only','I, III and IV only','II, III and IV only','Ill and IV only','','','b','','wassce','2014',89,'Admin','2016-12-14 06:44:39','2020-08-13 12:59:35'),(362,'The sum of direct cost in a manufacturing account is','production cost','prime cost','total cost','finance cost','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:39','2020-08-12 19:17:07'),(363,'Net profit in a business is','the amount of money taken out of the business by the owner','the cash in the business bank account','the difference between sales and cost of sales','sale revenue less cost of sales and expenses','','','d','','wassce','2014',101,'Admin','2016-12-14 06:44:39','2020-08-14 12:52:51'),(364,'An example of a self-balancing account is the','suspense account','creditor’s account','control account','debtor’s accoun','','','c','','wassce','2014',87,'Admin','2016-12-14 06:44:39','2020-08-13 12:59:35'),(365,'The gross profit is','GHc/  2,160,000','GHc/ 1440,000','GHc/ 1,080,000','GHc/ 720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',92,'Admin','2016-12-14 06:44:39','2020-08-12 18:46:26'),(366,'The cost of sales is','GHc/  2,160,000t','GHc/ 1440,000','GHc/ 1,080,000','GHc/  720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',97,'Admin','2016-12-14 06:44:39','2020-08-12 19:17:07'),(367,'Which of the following is not an administrative expenses in a \tmanufacturing organization?','Discounts allowed','Office electricity','Stationery','Insurance','','','a','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-08-13 12:48:17'),(368,'When an asset is sold, the entries for the accumulated depreciation are: debit','Asset Disposal Account; credit Provision for Depreciation Account.','Provision for Depreciation Account; Credit Asset Disposal Account','Fixed Asset Account; Credit Asset Disposal Account','Asset Disposal Account; Credit Fixed Asset Account','','','b','','wassce','2014',81,'Admin','2016-12-14 06:44:39','2020-08-14 12:58:27'),(369,'A petty cash account has an imprest of D28,000. The account has a debit balance of D5.000. How much cash is needed to restore the imprest?','D33,000','D28,000','D23,000','D5,000','','','c','','wassce','2014',86,'Admin','2016-12-14 06:44:39','2020-08-14 13:11:58'),(370,'In a not - for - profit making organization, when the total income \tis less than the total expenditure, the difference is a','surplus','shortfall','loss','deficit','','','d','','wassce','2014',96,'Admin','2016-12-14 06:44:39','2020-08-13 12:59:35'),(371,'The accounting concept underlying the treatment of personal expenses of the business owner as drawing is','periodicity','accrual','entity','materiality','','','c','','wassce','2014',92,'Admin','2016-12-14 06:44:39','2020-08-14 13:03:11'),(372,'Which of the following items is not contained in the Receipts and Payments Account?','Subscription paid in advance','tock paid for in advance','Outstanding wages and salaries','Donations','','','c','','wassce','2014',83,'Admin','2016-12-14 06:44:40','2020-08-13 12:53:42'),(373,'The concept that states that a business should not lay claim to any profits before it is earned with reasonable certainty is','consistency concept','prudence concept','accrual concept','going concern concept','','','b','','wassce','2014',85,'Admin','2016-12-14 06:44:40','2020-08-13 12:53:42'),(374,'When shares are issued above their nominal value, the \texcess above the nominal value is','credited to Profit and Loss Account','debited to Share Premium Account','credited to Share Capital Account','credited to share Premium Account','','','d','','wassce','2014',92,'Admin','2016-12-14 06:44:40','2020-08-12 10:18:19'),(375,'Shares issued below nominal value are referred to as shares at','premium','discount','face value','cumulative value','','','b','','wassce','2014',95,'Admin','2016-12-14 06:44:40','2020-08-12 18:46:26'),(376,'The accounting ratio used to measure the average number of days for which suppliers remain unpaid is','stock turnover','creditors’ payment period','debtors collection period','return on capital employed','','','b','','wassce','2014',94,'Admin','2016-12-14 06:44:40','2020-08-14 12:58:02'),(377,'When the purchase consideration exceeds the value of business, the difference is','profit','discount','goodwill','reserve','','','c','','wassce','2014',99,'Admin','2016-12-14 06:44:40','2020-08-12 18:46:26'),(378,'The primary classification of government expenditure is based on','Programs','funds','activity','project','','','b','','wassce','2014',94,'Admin','2016-12-14 06:44:40','2020-08-12 19:15:27'),(379,'An example of input device of a computer is','an optical character reader','a graph plotter','a visual display unit','printer','','','a','','wassce','2014',74,'Admin','2016-12-14 06:44:40','2020-08-07 11:02:55'),(380,'The accounting concept which states that expenditure involving insignificant amounts should be regarded as expenses and not assets is','business entity','materiality','dual aspect','realization','','','b','','wassce','2014',110,'Admin','2016-12-14 06:44:40','2020-08-14 13:03:11'),(381,'A company made a net profit of N2,000,000 for the year and its net profit percentage is 25%. What is the total sales   for the year?','N8,000,000','N6,000,000','N800,000','N500,000','','','a','','wassce','2014',99,'Admin','2016-12-14 06:44:40','2020-08-13 12:59:35'),(382,'Which of the following information is recorded in the returns outwards book?','Goods purchased on credit and subsequently returned to supplier','Fixed asset bought on credit and subsequently returned to supplier','Cash payment received from a customer and subsequently returned to supplier','Goods sold to a customer and subsequently returned to the business.','','','a','','wassce','2014',99,'Admin','2016-12-14 06:44:40','2020-08-12 12:01:09'),(383,'Calculate the stock figure to be included in the balance sheet at the year end.','D408,000','D346,000','D284,000','D62,000',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-08-14 13:24:24'),(384,'The concept applied in answering question 42 above is','matching','consistency','prudence','entity',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',78,'Admin','2016-12-14 06:44:40','2020-08-14 10:59:38'),(385,'Subscriptions in advance is classified in the balance sheet as','an asset','a liability','a deficit','a surplus','','','b','','wassce','2014',84,'Admin','2016-12-14 06:44:40','2020-08-12 19:18:09'),(386,'Which of the following items is not treated in the Profit and Loss Account?','Office expenses','Salaries and allowances','Carriage inwards','Discounts allowed','','','c','','wassce','2014',100,'Admin','2016-12-14 06:44:40','2020-08-14 13:03:11'),(387,'The document prepared by a local/district government to present its annual estimates for a planning period is','a balance sheet','budget','an income and expenditure account','a cash book','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-08-05 10:03:39'),(388,'A manufacturing account is drawn up by','firms providing personal services','firms engaged solely in buying and selling of goods','firms which make and sell articles','non - trading organization.','','','c','','wassce','2014',90,'Admin','2016-12-14 06:44:40','2020-08-13 12:53:42'),(389,'Which of the following is not a factory overhead cost?','Manufacturing wages','Factory rent','Depreciation of machinery','Salary of factory guard','','','a','','wassce','2014',94,'Admin','2016-12-14 06:44:40','2020-08-12 19:14:31'),(390,'A collection of fields relating to one logically definable unit of business information is known as','data','character','byte','record','','','d','','wassce','2014',99,'Admin','2016-12-14 06:44:40','2020-08-14 13:03:11'),(391,'The principle of double entry book - keeping states that','every debtor must have a creditor','every account debited must be immediately credited','for every debit entry, there must be a corresponding credit entry','for every double debit, there must be a double credit.','','','c','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-08-14 12:52:38'),(392,'The accounting principle that is applied to check arbitrary actions on the part of accountants is','consistency','materiality','objectivity','realization','','','a','','utme','2004',119,'Admin','2016-12-15 06:52:04','2020-08-13 12:48:17'),(393,'The loss of equipment in a fire disaster results in','a decrease in current assets','an increase in liabilities and assets','a decrease in assets and capital','an increase in liabilities and a decrease in  assets.','','','c','','utme','2004',107,'Admin','2016-12-15 06:52:06','2020-07-23 10:49:57'),(394,'A source document is used for verifying the','amount due to creditors','actual cost of an asset','selling price of goods','amount due from debtors','','','c','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-08-13 12:48:17'),(395,'The rule of accounting equation requires that account payable should be placed under','liabilities','equities','assets','capital','','','a','','utme','2004',108,'Admin','2016-12-15 06:52:07','2020-08-13 12:56:22'),(396,'A debit in the suspense account will appear in the balance sheet as','a current asset','a current liability','capital','drawings','','','a','','utme','2004',119,'Admin','2016-12-15 06:52:07','2020-08-13 12:56:11'),(397,'The recipient whose name appears on a cheque is called a','payee','drawer','drawee','payee','','','d','','utme','2004',103,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:58'),(398,'The imprest account is subsidiary to the','ledger account','bank account','cash book','petty cash','','','d','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-08-13 12:59:35'),(399,'The three-column cash book differs from the two-column cash book in','cash column','discount column','bank column','folio column','','','b','','utme','2004',119,'Admin','2016-12-15 06:52:07','2020-08-12 19:15:53'),(400,'Zakari started a business on January 2000. He bought a shop costing N 54,000 and stock worth N 7,600.  Profit for the year amounted to N 22,100. His closing capital was N 73,800. Zakari’s personal drawings amounted to','N 2,300','N9,900','N 17,100','N 19,500','','','b','','utme','2004',132,'Admin','2016-12-15 06:52:07','2020-08-12 19:15:27'),(401,'The balance on the provision for depreciation account is','added to fixed assets on the balance sheet','deducted from fixed assets on the balance sheet','deducted from the profit and loss account','added to the current liabilities of the account','','','b','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:59'),(402,'Given: Rates paid during the year amounted to N 2,250 at N125 per month and N 1,035 was paid for electricity in the same period at N 115 per month. Determine the amount of prepaid rates','N 345','N 750','N 1,380','N 1,500','','','b','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-08-12 18:46:26'),(403,'Where closing stock is undervalued, the effect is','an increase in gross profit','a decrease in gross profit','an increase in purchases','a decrease in purchases','','','b','','utme','2004',129,'Admin','2016-12-15 06:52:07','2020-08-12 19:15:53'),(404,'At the year end, the purchases ledger showed a debit balance of N 108. The total on the debit side of the purchases ledger control account will be','N 22,966','N 22,156','N 21,834','N 21,054','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','a','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-07-14 13:30:34'),(405,'The balancing figure in the purchases ledger control account is','N 15,828','N 15,720','N 14,940','N 14,694','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','d','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-08-13 12:48:17'),(406,'In a sales ledger, contra entry is found on the','debit side of the debtors’ control account','debit side of the creditors’ control account','credit side of the debtors’ control account','credit side of the creditors’ control account','','','c','','utme','2004',106,'Admin','2016-12-15 06:52:07','2020-08-14 12:52:51'),(407,'The beginning and ending accounts receivable balances were N 20,000 and N 30,000 respectively.The collection from customers during the period was N 70.000. What was the total sale on account?','N 20,000','N 60,000','N 80,000','N 120,000','','','b','','utme','2004',120,'Admin','2016-12-15 06:52:07','2020-08-12 12:01:09'),(408,'Determine how much to be charged to profit and loss account.','N 606','N 786','N 791','N 856','Given: General expenses account Paid by cheque [ N671 ]; Paid by cash [N 70 ]; Accrued b/f [N 65 ] Accrued c/f [N 115 ]','','c','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-08-14 10:57:16'),(409,'In converting single entry to final account, the balancing figures on the income and expenses accounts are transferred to the','revenue and expenditure account','receipts and payments account','profit and loss appropriation account','profit and loss account','','','d','','utme','2004',131,'Admin','2016-12-15 06:52:07','2020-08-14 13:10:21'),(410,'Determine the amount for the beginning inventory','N 20,140','N10,240','N 8,140','N 7,240','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-08-13 12:56:22'),(411,'What is the figure for purchases?','N 2,400','N 2,500','N 4,200','N 5,200','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-08-12 19:15:27'),(412,'Cost classification in relation to charges is determined by the level of','raw materials','labour','activity','profitability','','','c','','utme','2004',125,'Admin','2016-12-15 06:52:07','2020-08-13 12:53:42'),(413,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N 5,000','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','c','','utme','2004',128,'Admin','2016-12-15 06:52:07','2020-08-12 12:01:09'),(414,'The market value of goods produced is','N 30,500','N 30,600','N 31,600','N 31,620','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','b','','utme','2004',133,'Admin','2016-12-15 06:52:07','2020-08-14 13:03:11'),(415,'The accumulated fund is','N 9,400','N 9,300','N 9,200','N 9,100','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-08-13 12:56:22'),(416,'In the balance sheet, the subscription in arrears will be','N 200','N 300','N 1,200','N 1,300','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-08-12 19:15:53'),(417,'Where the debit side of the income and expenditure account is higher than the credit side, the difference is','deficit','surplus','gain','loss','','','a','','utme','2004',108,'Admin','2016-12-15 06:52:07','2020-08-13 12:53:42'),(418,'In the balance sheet of a not-for-profit-making organization, subscription paid in advance is regarded as a','current asset','current liability','capital','reserve','','','b','','utme','2004',125,'Admin','2016-12-15 06:52:07','2020-08-13 12:59:35'),(419,'A rapidly growing business organization with multiple units that is interested in comparing the performances and weaknesses of each unit should adopt.','manufacturing accounts','consolidated accounts','departmental accounts','joint venture accounts','','','c','','utme','2004',130,'Admin','2016-12-15 06:52:07','2020-07-23 10:37:19'),(420,'How are credit sales by a department treated?','the same way as normal debtors’ transactions','in a different way from normal debtors’ transactions','as an addition to the sales manager’s account','as an addition to the production manager’s account','','','a','','utme','2004',106,'Admin','2016-12-15 06:52:07','2020-08-13 12:59:35'),(421,'Discounts granted to branch customers are treated as a debit to branch','stock account and a credit to branch debtors’ account','discount account and a credit to branch bank account','stock account and a credit to branch bank account','discount account and a credit to branch debtors’ account','','','a','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-08-14 12:58:27'),(422,'Transfers from the head office to branches are best carried out at','cost price','selling price','cost plus mark-up','market price','','','c','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-07-25 17:52:56'),(423,'On dissolution, the final distribution of cash to partners is based on','partnership agreement','Articles of Association','goodwill','capital balances.','','','d','','utme','2004',121,'Admin','2016-12-15 06:52:08','2020-08-12 19:17:31'),(424,'The balance of profit and loss account will be','N 4,000','N 2,800','N 1,500','N 300','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','a','','utme','2004',129,'Admin','2016-12-15 06:52:08','2020-08-14 13:24:24'),(425,'What is Kunle’s share of the profit?','N 600','N 300','N180','N 120','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','d','','utme','2004',117,'Admin','2016-12-15 06:52:08','2020-08-12 19:17:07'),(426,'When a new partner is admitted to a partnership, there is a need to revalue the','capital of the business','capital and liabilities of the business','assets and capital of the business','assets and liabilities of the business','','','d','','utme','2004',137,'Admin','2016-12-15 06:52:08','2020-08-12 19:17:31'),(427,'The accounting entry to record the premium on goodwill is to debit','cash and credit old partners’ capital','goodwill and credit revaluation','assets and credit capital','capital and credit assets','','','b','','utme','2004',134,'Admin','2016-12-15 06:52:08','2020-07-30 16:49:44'),(428,'The expenses incurred in promoting a company are','promoters’ expenses','floating expenses','preliminary expenses','the Board’s expenses','','','c','','utme','2004',137,'Admin','2016-12-15 06:52:08','2020-08-12 19:15:53'),(429,'Debentures can be redeemed out of','existing share capital reserve','existing general reserve','proceeds from new issue of shares','withholding tax.','','','a','','utme','2004',123,'Admin','2016-12-15 06:52:08','2020-08-14 12:52:51'),(430,'Share premium is an example of','revenue reserves','capital reserves','general reserves','loan capital','','','b','','utme','2004',131,'Admin','2016-12-15 06:52:08','2020-08-15 05:32:17'),(431,'According to the provisions of the 1999 Constitution, all revenues generated by the Federal Government must be paid into the?','Consolidated Revenue Fund','Federation Account','Revenue Mobilization Allocation and Fiscal Commission’s Account','Equalization Fund','','','a','','utme','2004',140,'Admin','2016-12-15 06:52:08','2020-08-13 12:53:42'),(432,'The budget statement presented to the legislature by the Chief Executive is called','an appropriation act','a budget bill','an appropriation bill','a budget proposal','','','c','','utme','2004',116,'Admin','2016-12-15 06:52:08','2020-08-05 10:03:39'),(433,'The statement of assets and liabilities in the public sector can be described as the','income and expenditure account of government','appropriation account of government','balance sheet of government','funds flow statement of government','','','d','','utme','2004',123,'Admin','2016-12-15 06:52:08','2020-08-12 19:17:31'),(434,'A company has departments X, Y and Z. Department X occupies a space twice that of Y while Z   occupies half the space of  Y. If the company pays N 70 000 on rent, what is the amount of rent that should be allocated to Y?','N 30,000','N 40,000','N 20,000','N 10, 000.','','','c','','utme','2007',117,'Admin','2016-12-16 07:02:01','2020-08-13 12:53:42'),(435,'Calculate the total figure for the receipts and payments account.','N 11,410','N  13,630','N  9, 310','N  11, 530.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','d','','utme','2007',125,'Admin','2016-12-16 07:02:01','2020-08-12 19:15:27'),(436,'Determine the opening cash balance of the club','N 3070','N 2220','N 5710','N 4320.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','b','','utme','2007',119,'Admin','2016-12-16 07:02:01','2020-08-12 18:46:05'),(437,'Purchases of raw materials amount to N  81 000, direct labour is N  38 000 and factory overhead N  29 000. Calculate the prime cost.','N 176,000','N 170,000','N 167,000','N  156,000.','Stock at start: Raw materials [N57, 000]; Work-in-progress [42, 000]; Finished goods [71, 000 ]','','a','','utme','2007',134,'Admin','2016-12-16 07:02:01','2020-08-14 12:52:51'),(438,'I.Profits and losses will be shared unequally II.  Interest is not allowed on capital, III. Salaries are not allowed. IV. Interest is charged on drawings. Which of  the following would apply where there is no agreement during partnership formation?','I only','I, II and III','I, II and IV','II and III.','','','c','','utme','2007',128,'Admin','2016-12-16 07:02:01','2020-08-12 19:18:09'),(439,'The value of goods sent to branch is','N 4 000','N 6000','N 8000','N 2000','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','c','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-08-13 12:59:35'),(440,'Determine the closing stock.','N 5 500','N  6500','N 2500','N 4500','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','a','','utme','2007',119,'Admin','2016-12-16 07:02:02','2020-08-13 12:56:22'),(441,'Expenses paid during the conversion of a partnership to a \tcompany are','debited to the partners’ capital account','debited to the realization account','debited to the cash account.','credited to the realization account','','','d','','utme','2007',130,'Admin','2016-12-16 07:02:02','2020-08-07 11:02:55'),(442,'In the trading and profit and loss account of a manufacturing organization, purchases is','always the same amount as the total factory overhead cost','given separately','equivalent to the total cost of goods manufactured','always the same as the prime cost.','','','b','','utme','2007',138,'Admin','2016-12-16 07:02:02','2020-08-12 19:18:09'),(443,'Goods worth N 50 000 were sent at different times from head office to the branch during the year. By the end of the period, only N  40 000 worth of goods had arrived at the branch. Which of the following is correct about the treatment of this transaction?','Branch should debit goods received from head office with N 50 000.','Head office should debit goods sent to branch account with N 10 000.','Head office should debit goods sent to branch account with N 50 000.','Branch should debit goods received from head office with N  10000.','','','b','','utme','2007',120,'Admin','2016-12-16 07:02:02','2020-08-14 10:57:35'),(444,'An accounting ratio that considers only quick assets to determine the short-term safety margin of a firm is the','fixed assets ratio','capital gearing ratio','current assets ratio','acid test ratio.','','','d','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(445,'What would be the total amount received on second call?','N 240, 000','N 280 ,000','N 40,000','N 56,000.','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','c','','utme','2007',121,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(446,'The total amount of money received on application was','N  5600,00','N  220,000','N  800, 000','N  1 000 000','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','a','','utme','2007',129,'Admin','2016-12-16 07:02:02','2020-08-13 12:48:17'),(447,'Determine the working capital.','N 7,38,0000','N 8,48,0000','N  5 480 000','N  6 480 000.','Shaku Company Ltd: Stock [N 3,600, 000]; Cash at hand [N800, 000]; Cash in bank [2,400, 000]; Debtors [ 580, 000]; Trade creditors [N 920, 000 ]; \tBank overdraft [ N200, 000 ]; Tax liabilities [N600, 000]; Salary owed to staff {N 180, 000]','','c','','utme','2007',119,'Admin','2016-12-16 07:02:02','2020-08-12 18:46:26'),(448,'The receipts and payments account of a not-for-profit-making organization plays a similar role in a profit-making organization as','a cash account','a balance sheet','an income account','an expenses account','','','b','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-08-13 12:56:22'),(449,'Osei and Yabo were in partnership sharing profits and losses in the ratio of 3:2. On admitting Takwa, the profit and loss sharing ratio was changed to 1:1:1  Suppose Takwa paid N  30 000 for goodwill this amount would be','credited to Takwa’s current account','debited to goodwill account','shared to all the partners’ capital account','credited to the old partners’ capital account.','','','b','','utme','2007',136,'Admin','2016-12-16 07:02:02','2020-08-14 10:59:38'),(450,'The amount of subscriptions accrued is reported in the balance sheet under','fixed asset','long-term liability','current asset','current liability.','','','d','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-08-12 18:46:05'),(451,'The lighting charge to be apportioned to Zema is','N 891','N 819','N 927','N 975','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','b','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-08-13 12:56:22'),(452,'Find the salary charged to Zera product.','N 1 854','N 1 845','N 1 062','N 1 134.','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','c','','utme','2007',138,'Admin','2016-12-16 07:02:02','2020-08-14 12:52:51'),(453,'The gross profit disclosed in the branch stock adjustment account represents','head office profit','unrealized profit','estimated profit','branch profit','','','d','','utme','2007',134,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(454,'Partners’ share of profit is credited to','a partner’s current account','a partner’s capital account','the profit and loss account','the profit and loss appropriation account','','','a','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-08-13 12:53:42'),(455,'A pension granted to any past president or vice-president shall be charged to the','consolidated revenue fund','special pension fund','contingency fund','development fund.','','','b','','utme','2007',132,'Admin','2016-12-16 07:02:02','2020-08-14 12:58:02'),(456,'The federal government approved  N 140 m to local governments W, X, Y and Z. The amount is to be shared on the basis of 40% equality. 35% population and 25% internal revenue generation. Calculate the share of local government W on equality.','N 35 m','N 14 m .','N 56 m','N 28 m.','','','c','','utme','2007',129,'Admin','2016-12-16 07:02:02','2020-08-12 19:15:53'),(457,'Stock valuation is useful because it informs the sales department on the','prices of the competing goods','prices that will affect profitability','number of goods to produce','number of goods to sell.','','','b','','utme','2007',113,'Admin','2016-12-16 07:02:02','2020-08-05 10:03:39'),(458,'Using the straight-line method, the depreciation of the asset in \tthe first year was','N  210 m','N 343m','N 105m','N 270m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','c','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-08-07 11:02:55'),(459,'What was the asset value at the beginning of the third year?','N 63 m','N 133 m','N 36m','N 28 m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','d','','utme','2007',135,'Admin','2016-12-16 07:02:02','2020-08-12 19:18:09'),(460,'The drawings for the period stand at','N  2 750','N  3 750','N  2 500','N 2 570.','Given: Opening capital [N7, 000 ]; Additional capital [N3, 500 ]; Net profit [N2 500 ]; Closing capital [N10, 250]','','a','','utme','2007',120,'Admin','2016-12-16 07:02:02','2020-08-13 12:53:42'),(461,'I.    Facilitating the preparation of final accounts II.   Making the existence of error easy to detect III. Checking the accuracy of postings periodically. From the above, which of the following are among the uses of control accounts?','I, II and III','I and III','II and III','I and II.','','','c','','utme','2007',143,'Admin','2016-12-16 07:02:02','2020-08-13 12:59:35'),(462,'Determine the amount provided for discount allowed on debtors.','N 1 000','N 3000','N 900','N1500.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',133,'Admin','2016-12-16 07:02:02','2020-08-15 05:32:17'),(463,'The provision for bad debt is','N2 000','N 800','N3 000','N1 900.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',134,'Admin','2016-12-16 07:02:02','2020-08-12 19:15:27'),(464,'The amount to be charged to the profit and loss account is','N 30,000','N25,000','N 5 ,000','N20,000.','Given: Prepaid b/f [N10, 000 ]; Cash paid during the year  [N20, 000]; Prepaid c/f [N5, 000] ','','b','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-08-12 19:17:07'),(465,'The purchases ledger control account showed a credit balance of N 525 000 on April 30, 2006. This amount shows','what the debtors of a business enterprise owed the business','the total amount which each debtor owed the business','what a business enterprise owed its creditors','the total amount which a business enterprise owed each creditor.','','','c','','utme','2007',127,'Admin','2016-12-16 07:02:03','2020-08-12 19:16:36'),(466,'Find the value of the total assets?','N 17 700','N 10,500','N 20,000','N 15,400.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','d','','utme','2007',135,'Admin','2016-12-16 07:02:03','2020-08-13 12:53:42'),(467,'What will be the equity of the business?','N 12,800','N 4,900','N 8,200','N 9,500.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','c','','utme','2007',119,'Admin','2016-12-16 07:02:03','2020-08-14 12:58:27'),(468,'Journal proper is used in recording','transactions that are not regular','returns from customers','credit sales','the receipt and payment of  money','','','a','','utme','2007',134,'Admin','2016-12-16 07:02:03','2020-08-14 13:10:21'),(469,'The process whereby a cheque received by one person is given to another for payment is known as','cheque crossing','payment in cheque','cheque transfer','cheque endorsement.','','','c','','utme','2007',133,'Admin','2016-12-16 07:02:03','2020-08-14 12:58:27'),(470,'Calculate the balance in the bank statement','N 10 740','N11 860','N 17 500','N16,380.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','c','','utme','2007',123,'Admin','2016-12-16 07:02:03','2020-08-14 10:57:35'),(471,'What is the adjusted cash book balance?','N 14,680','N 15,560','N 16,440','N17,000.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','a','','utme','2007',126,'Admin','2016-12-16 07:02:03','2020-08-14 13:10:21'),(472,'The fourth stage of the accounting information system is','recording','interpreting','summarizing','classifying.','','','c','','utme','2007',124,'Admin','2016-12-16 07:02:03','2020-08-12 19:15:27'),(473,'How much is sundry expenses?','N 2 700','N 2,250','N1,550','N2000.','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','a','','utme','2007',115,'Admin','2016-12-16 07:02:03','2020-08-14 13:24:24'),(474,'The total of the trial balance is','N 6 600','N 6 650','N 5 600','N 5 900','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','b','','utme','2007',121,'Admin','2016-12-16 07:02:03','2020-07-30 16:49:44'),(475,'If Mr. Ajasin paid his creditors N 5 000 out of N 20 000 owed, what would be the effect of this transaction on the accounting equation?','A decrease .in the total liabilities and assets by N5 000.','An increase in total liabilities and owners’ equity by N15 000.','An increase in the total assets by N15 000','A decrease in owners’ equity by N 5 000.','','','a','','utme','2007',138,'Admin','2016-12-16 07:02:03','2020-08-14 12:58:02'),(476,'Which of the following branches of accounting was first developed?','Cost accounting','Financial accounting','Management accounting','Petroleum accounting','','','b','','utme','2009',116,'Admin','2016-12-16 21:08:06','2020-08-07 11:02:55'),(477,'The accounting convention which states that the performance of a business should be determined by matching all expenses against all revenues is','accruals','materiality','objectivity','periodicity','','','a','','utme','2009',124,'Admin','2016-12-16 21:08:07','2020-08-12 19:17:31'),(478,'The process of bookkeeping includes records produced from','ledgers','source documents','minutes of meeting','intuitive reasoning','','','b','','utme','2009',125,'Admin','2016-12-16 21:08:07','2020-07-28 08:07:41'),(479,'Musa, a prepaid customer of XYZ and KLM, bought  N1500 recharge card from XYZ and  N2000 recharge card from KLM for business calls. The entry to record these transaction is debit','telephone  N 3,500, credit XYZ and KLM  N 3,500','telephone N 3,500. credit cash  N 3,500','sundries N 3,500, credit KLM  N 3,500','sundries  N 3.500, credit telephone  N3,500','','','a','','utme','2009',129,'Admin','2016-12-16 21:08:07','2020-08-13 12:56:11'),(480,'What is the total debit for the trial balance?','N  4 690 000','N 2 620 000','N  2 520 000','N 1 565 000','Given: Capital [N 2, 375, 000 ]; Debtors [N 495, 000 ]; Motor vehicles [N 870, 000 ]; Creditors [N 245,000 ]; Prepayments [N 500, 000 ]; Bills receivable [N 505, 000 ]; Furniture [N 150, 000 ]','','c','','utme','2009',115,'Admin','2016-12-16 21:08:07','2020-08-12 18:45:25'),(481,'If Odukoya takes money out of the business bank account for his own private use, the effect of the transaction is','increase in assets and increase in capital','increase in assets and decrease in capital','decrease in capital and increase in assets','decrease in capital and decrease in assets.','','','d','','utme','2009',119,'Admin','2016-12-16 21:08:07','2020-08-05 15:32:18'),(482,'What are the current liabilities?','I and II','IV and V','Ill and V','II and IV','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','b','','utme','2009',113,'Admin','2016-12-16 21:08:07','2020-08-14 13:10:21'),(483,'Find the fixed assets','I, II and V','I, II and IV','I, II and III','Ill, IV and V','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','c','','utme','2009',135,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:26'),(484,'Cash discount is often recorded on','the debit side of the cash book','the credit side of the cash book','the folio column of the cash book','both credit and debit side of the cash book','','','d','','utme','2009',103,'Admin','2016-12-16 21:08:08','2020-07-28 08:07:41'),(485,'The standing order is a payment instruction given by a','customer to the bank','bank to the customers','bank to an employee','customer to a fellow customer','','','a','','utme','2009',119,'Admin','2016-12-16 21:08:08','2020-08-13 12:48:17'),(486,'Which of the following should not be added or subtracted from the bank statement balance to determine the adjusted cash balance?','Error by the bank','Under casting of the cash book','Overcasting of the cash book','Bank service charges','','','a','','utme','2009',121,'Admin','2016-12-16 21:08:08','2020-07-28 08:07:41'),(487,'Calculate the balance as per bank statement at the end of the year','24,700','25,200','26,200','27,700','Given: Balance as per cash book [N20,000 ]; Unpresented cheques [N 5,200 ]; Direct credit to the bank [\t  N 1,000 ]; \tDirect debit from the bank [N 1,000 ]; Credit in the cash book [N 500 ]','','a','','utme','2009',130,'Admin','2016-12-16 21:08:08','2020-08-12 19:17:31'),(488,'Determine the capital of the business','N 9,400','N 6,000','N 3,400','N 3,000','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','d','','utme','2009',132,'Admin','2016-12-16 21:08:08','2020-08-12 19:14:31'),(489,'What is the net working capital?','N 2,600','N1,800','N 800','N 600','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','c','','utme','2009',137,'Admin','2016-12-16 21:08:08','2020-08-13 12:59:35'),(490,'Which of the following items are current assets?','Stock, bills receivable, cash and debtors','Stock, bills payable, cash and debtors','Stock, bad debt, bills receivable and cash','Stock, work-in-progress, cash and bills payable.','','','a','','utme','2009',121,'Admin','2016-12-16 21:08:08','2020-07-28 08:07:41'),(491,'Using FIFO method, what is the value of the closing stock?','N 34,000','N 29,000','N 17,000','N 12,000','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','c','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:05'),(492,'What is the value of closing stock using simple average?','N 11,500','N 17,000','N 17,500','N 28,500','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','d','','utme','2009',117,'Admin','2016-12-16 21:08:08','2020-08-13 12:53:42'),(493,'Which of the following methods gives a conservative closing stock value during a period of rising prices?','LIFO','FIFO','Simple average','Periodic simple average','','','a','','utme','2009',112,'Admin','2016-12-16 21:08:08','2020-08-14 13:03:11'),(494,'Apart from the common control accounts, a control account can also be opened for','sales account','purchases account','cash account','wages account','','','c','','utme','2009',111,'Admin','2016-12-16 21:08:08','2020-08-14 12:52:38'),(495,'Which of the following is a debit item in the purchases ledger control account?','Balance b/d','Cheque dishonoured','Purchases','Balance c/d','','','d','','utme','2009',122,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:05'),(496,'Which of the following is an item in the debit side of the sales ledger control account?','Interest charged by suppliers','Bills receivable honoured','Transfer of credit balances from credit control account','Transfer of debit balances from creditors control account','','','a','','utme','2009',112,'Admin','2016-12-16 21:08:08','2020-08-13 12:48:17'),(497,'The costs incurred by departments that support the production department with such activities as maintenance, production control and storage are called','autonomous costs','service costs','supporting costs','subsidiary costs','','','b','','utme','2009',112,'Admin','2016-12-16 21:08:08','2020-08-13 12:59:35'),(498,'Determine the gross profit','N 49,000','N 48,000','N 31,000','N30,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',133,'Admin','2016-12-16 21:08:08','2020-08-13 12:56:11'),(499,'What is the net profit?','N  46,000','N 45,000','N  28,000','N  27,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-08-14 13:10:21'),(500,'Receipts and payments account is a summary of the','budget','trading account','cash book','profit and loss account','','','c','','utme','2009',126,'Admin','2016-12-16 21:08:08','2020-08-12 19:15:53'),(501,'What is the accumulated fund?','23,700','27,750','29,650','51,650','Given: Furniture and fittings [N 20,000]  Equipment [N15,000] Bank overdrafts [ N6,500] Bar creditors [ N4,800 ] Subscription in arrears [ N4,700 ] Subscription in advance [ N650]','','b','','utme','2009',123,'Admin','2016-12-16 21:08:08','2020-08-13 12:48:17'),(502,'I.  Space occupied by each department    II. Average value of stock held by each department III. \tDepartmental turnover  IV. Number of articles sold by each department. From the information given, the two most logical bases for apportioning expenses that are common to departments are','I and II','I and III','II and III','Ill and IV','','','b','','utme','2009',119,'Admin','2016-12-16 21:08:08','2020-08-14 13:03:11'),(503,'One of the purposes of maintaining the account of a branch at the head office is to','record charges in shareholdings','record charges in liabilities','check the excesses of customers','check the excesses of members of staff.','','','d','','utme','2009',130,'Admin','2016-12-16 21:08:08','2020-08-14 13:03:11'),(504,'Which of the following is a common cause of a discrepancy between head office and branch trial balance?','Debtors and cash in transit','Creditors and cash in transit','Stock and cash in transit','Stock and prepayments','','','a','','utme','2009',122,'Admin','2016-12-16 21:08:08','2020-08-14 13:03:11'),(505,'Sule and Ahmad are in partnership sharing profits and losses equally. If  Khadija is admitted as a new partner to take 1/5 th as her share, what is the new profit or loss sharing ratio?','Sule1/3 , Ahmad 1/3 and Khadija 1/3','Sule1/5, Ahmad 1/5 and Khadija 3/5','Sule2/5,  Ahmad2/5 and Khadija 1/5','Sule ,2/5, Ahmad and 1/5 Khadija 2/5','','','c','','utme','2009',139,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:26'),(506,'In partnership account, conversion of non-cash assets into cash \t\tis referred to as','realization','disposal','dissolution','revaluation','','','c','','utme','2009',117,'Admin','2016-12-16 21:08:08','2020-08-12 19:17:07'),(507,'The share premium account would be','credited with application and allotment  N 187,500','debited with application and allotment  N 375,000','credited with application and allotment  N 375,000','debited with application and allotment  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','c','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-08-14 12:52:51'),(508,'The second and final call account was debited with','ordinary share capital account  N 187,500','12% preference share capital  N  375,000','bank account  N 187,500','12% preference share capital account  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','d','','utme','2009',119,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:26'),(509,'Provision for bad and doubtful debts in companies final accounts is treated in','trading account','profit and loss account','fund flow statement','cash flow statement','','','b','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-08-12 12:01:09'),(510,'The book value per share is obtained by dividing','shareholders equity by outstanding shares','total assets by outstanding shares','gross profit by outstanding shares','net profit by outstanding shares','','','a','','utme','2009',129,'Admin','2016-12-16 21:08:08','2020-08-13 20:41:29'),(511,'Expenditure incurred on consumables and goods for resale is','revenue expenditure','capital expenditure','sunk cost','miscellaneous expenses','','','a','','utme','2009',145,'Admin','2016-12-16 21:08:08','2020-08-13 19:42:03'),(512,'Replacement and renewal of fixed assets are','revenue receipt','capital receipt','capital expenditure','revenue expenditure','','','c','','utme','2009',118,'Admin','2016-12-16 21:08:08','2020-07-28 08:07:41'),(513,'Which of the following is credited to the consolidated revenue fund?','Recurrent expenditure','Capital expenditure','Transfers to revenue fund','Internal revenue','','','c','','utme','2009',118,'Admin','2016-12-16 21:08:09','2020-08-13 12:56:22'),(514,'One of the reasons for the existence of the public sector is to','take adequate care of the needy','supplement the commercial sector','provide cheap services to all citizens','correct perceived inequalities.','','','c','','utme','2009',122,'Admin','2016-12-16 21:08:09','2020-08-12 12:01:09');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `api_call_ip_address` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `ipAddress` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `requestCount` int(11) NOT NULL DEFAULT '1',\n  `countryName` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `countryCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `cityName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `zipCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `latitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `longitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=11390 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `api_call_ip_address` VALUES (1,'chemistry','41.204.237.6',55,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:16:31','2019-10-11 19:53:51'),(2,'english','41.204.237.6',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-22 17:05:06'),(3,'physics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(4,'government','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(5,'irk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(6,'civiledu','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(7,'currentaffairs','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(8,'economics','197.255.171.219',494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:28:05','2018-11-16 16:14:04'),(9,'english','197.255.171.219',622,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 16:17:59','2018-11-16 17:04:20'),(10,'english','105.112.40.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 20:56:48','2018-11-16 20:56:48'),(11,'chemistry','66.249.66.146',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 02:15:11','2019-01-20 17:41:49'),(12,'chemistry','105.112.27.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 18:01:33','2018-11-17 18:01:33'),(13,'chemistry','105.112.34.182',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 19:42:35','2018-11-17 19:48:36'),(14,'english','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:11:14','2018-11-18 07:11:16'),(15,'mathematics','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:23:49','2018-11-18 07:23:58'),(16,'english','35.187.100.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:08:37','2018-11-18 15:08:37'),(17,'english','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(18,'biology','54.157.207.237',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:22:23'),(19,'physics','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(20,'chemistry','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(21,'englishlit','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(22,'currentaffairs','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(23,'history','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(24,'mathematics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(25,'commerce','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(26,'biology','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:10'),(27,'physics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(28,'englishlit','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(29,'government','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(30,'economics','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:59:54'),(31,'chemistry','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(32,'crk','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(33,'irk','54.242.159.164',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:01:08'),(34,'insurance','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(35,'currentaffairs','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(36,'history','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(37,'english','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:10','2018-11-18 16:00:23'),(38,'civiledu','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:23','2018-11-18 16:00:23'),(39,'chemistry','38.132.114.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:11:29','2018-11-18 16:11:29'),(40,'biology','154.118.73.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:26:38','2018-11-19 07:42:11'),(41,'mathematics','154.118.73.218',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:57:21','2018-11-19 08:27:22'),(42,'biology','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(43,'physics','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(44,'englishlit','54.226.211.137',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:04'),(45,'crk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(46,'geography','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(47,'civiledu','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(48,'currentaffairs','54.226.211.137',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:12'),(49,'chemistry','105.112.34.116',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 11:42:43','2018-11-19 12:07:25'),(50,'biology','105.112.34.116',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 12:03:49','2018-11-19 12:04:31'),(51,'chemistry','105.112.32.113',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 15:15:17','2018-11-19 15:15:17'),(52,'chemistry','105.112.38.168',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:39:07','2018-11-19 16:39:53'),(53,'chemistry','105.112.33.204',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:41:17','2018-11-19 17:08:45'),(54,'chemistry','105.112.34.113',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 17:16:16','2018-11-19 17:50:41'),(55,'chemistry','105.112.39.125',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 18:09:49','2018-11-19 18:10:22'),(56,'commerce','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(57,'accounting','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(58,'biology','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(59,'physics','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(60,'geography','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(61,'civiledu','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(62,'currentaffairs','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(63,'mathematics','154.120.115.82',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 09:18:07','2018-11-20 09:18:27'),(64,'accounting','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(65,'chemistry','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(66,'government','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(67,'crk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(68,'geography','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(69,'irk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(70,'currentaffairs','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(71,'chemistry','197.210.55.232',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:36:42','2018-11-21 16:04:23'),(72,'chemistry','197.210.55.152',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:51:48','2018-11-21 16:04:07'),(73,'mathematics','197.210.55.232',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:25','2018-11-21 16:04:26'),(74,'english','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(75,'mathematics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(76,'commerce','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(77,'geography','54.235.56.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(78,'economics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(79,'civiledu','54.235.56.218',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(80,'insurance','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(81,'mathematics','197.210.55.49',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:06:37','2018-11-21 16:12:12'),(82,'accounting','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(83,'physics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(84,'government','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(85,'crk','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(86,'history','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(87,'mathematics','197.210.53.227',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:39:55','2018-11-21 18:46:03'),(88,'mathematics','197.210.53.213',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:41:49','2018-11-21 18:50:09'),(89,'mathematics','197.210.53.241',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:50:32','2018-11-21 18:50:33'),(90,'physics','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(91,'englishlit','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(92,'government','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(93,'geography','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(94,'irk','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(95,'civiledu','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(96,'history','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:34'),(97,'mathematics','105.112.39.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:03:34','2018-11-21 20:03:35'),(98,'chemistry','105.112.39.146',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:35:42','2018-11-21 21:02:43'),(99,'biology','197.210.29.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:41:34','2018-11-21 20:41:35'),(100,'commerce','41.203.72.24',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 08:31:50','2018-11-22 08:31:54'),(101,'biology','154.118.57.75',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:21:36','2018-11-22 09:21:42'),(102,'english','154.118.57.75',430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:32:20','2018-11-22 09:48:24'),(103,'mathematics','154.118.57.75',138,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:34:54','2018-11-22 09:48:24'),(104,'commerce','154.118.57.75',67,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:36:29','2018-11-22 09:37:01'),(105,'mathematics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(106,'biology','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(107,'physics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(108,'chemistry','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(109,'geography','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(110,'economics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(111,'irk','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(112,'crk','105.112.32.158',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:17:53','2018-11-22 12:19:16'),(113,'crk','105.112.26.27',714,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:39:40','2018-11-22 12:50:37'),(114,'geography','105.112.26.27',333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:51:29','2018-11-22 12:56:58'),(115,'irk','105.112.26.27',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:56:49','2018-11-22 12:56:57'),(116,'mathematics','197.210.52.148',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:57','2018-11-22 20:15:32'),(117,'mathematics','197.210.53.170',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:41'),(118,'mathematics','197.210.53.74',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:25'),(119,'commerce','197.210.53.170',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:42','2018-11-22 20:14:59'),(120,'commerce','197.210.52.148',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-22 20:14:57','2020-02-06 09:18:23'),(121,'commerce','197.210.53.74',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:58','2018-11-22 20:15:00'),(122,'accounting','197.210.53.170',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:17'),(123,'accounting','197.210.53.74',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:31'),(124,'accounting','197.210.52.148',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:02','2018-11-22 20:15:34'),(125,'chemistry','45.222.98.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 08:18:28','2018-11-23 08:29:56'),(126,'crk','105.112.46.53',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 09:29:55','2018-11-23 10:34:53'),(127,'chemistry','105.112.46.53',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 13:13:27','2018-11-23 13:56:23'),(128,'chemistry','105.112.45.132',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:12:24','2018-11-23 16:12:25'),(129,'chemistry','105.112.42.3',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:18:35','2018-11-23 17:30:48'),(130,'accounting','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(131,'biology','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(132,'physics','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(133,'irk','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(134,'civiledu','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(135,'currentaffairs','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(136,'history','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(137,'chemistry','122.172.127.49',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:22:39','2018-11-23 18:25:03'),(138,'physics','122.172.127.49',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:25:06','2018-11-23 18:25:21'),(139,'chemistry','105.112.41.195',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 19:35:37','2019-03-06 06:04:52'),(140,'chemistry','105.112.29.74',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 20:03:18','2018-11-23 22:58:38'),(141,'chemistry','105.112.40.253',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 09:25:34','2018-11-24 09:25:34'),(142,'english','41.203.72.10',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:16:56','2018-11-24 13:19:08'),(143,'accounting','41.203.72.10',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:21:12','2018-11-27 06:00:10'),(144,'english','105.112.44.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 14:40:08','2018-11-24 14:40:08'),(145,'chemistry','105.112.43.82',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 19:55:21','2018-11-24 20:10:56'),(146,'chemistry','105.112.46.85',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 20:28:29','2018-11-28 09:54:04'),(147,'chemistry','105.112.41.167',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:10:36','2018-11-24 21:25:21'),(148,'chemistry','105.112.40.197',880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:57:55','2018-11-24 22:40:30'),(149,'english','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(150,'physics','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(151,'englishlit','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(152,'crk','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(153,'geography','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(154,'civiledu','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(155,'insurance','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(156,'chemistry','105.112.44.13',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 08:45:46','2018-11-25 09:31:13'),(157,'chemistry','105.112.41.148',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 09:44:43','2018-11-25 10:48:33'),(158,'chemistry','66.102.8.72',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:23:12','2018-11-25 10:23:13'),(159,'chemistry','108.177.7.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:28:48','2018-11-25 10:28:49'),(160,'chemistry','108.177.6.56',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:36','2018-11-25 10:29:54'),(161,'chemistry','108.177.6.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:41','2018-11-25 10:29:42'),(162,'chemistry','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:50','2018-11-25 10:29:51'),(163,'civiledu','108.177.6.53',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:53','2018-11-25 10:29:54'),(164,'commerce','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:56','2018-11-25 10:29:57'),(165,'crk','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:58','2018-11-25 10:29:58'),(166,'chemistry','108.177.6.58',200,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-25 10:30:05','2019-09-12 00:12:04'),(167,'insurance','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:10','2018-11-25 10:30:11'),(168,'history','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:12','2018-11-25 10:30:12'),(169,'geography','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:15','2018-11-25 10:30:15'),(170,'geography','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:18','2018-11-25 10:30:19'),(171,'commerce','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:19','2018-11-25 10:30:20'),(172,'englishlit','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:20'),(173,'crk','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:21'),(174,'geography','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:21','2018-11-25 10:30:21'),(175,'civiledu','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:22','2018-11-25 10:30:23'),(176,'civiledu','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:24','2018-11-25 10:30:24'),(177,'insurance','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:25','2018-11-25 10:30:25'),(178,'englishlit','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:27','2018-11-25 10:30:27'),(179,'commerce','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:29','2018-11-25 10:30:29'),(180,'history','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:35','2018-11-25 10:30:35'),(181,'insurance','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:37','2018-11-25 10:30:37'),(182,'currentaffairs','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:42','2018-11-25 10:30:42'),(183,'chemistry','108.177.7.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:45','2018-11-25 10:31:04'),(184,'history','108.177.7.81',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:11','2018-11-25 10:31:39'),(185,'english','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:43','2018-11-25 10:31:43'),(186,'economics','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:47','2018-11-25 10:31:48'),(187,'mathematics','108.177.7.81',100,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:52','2020-08-15 08:37:10'),(188,'englishlit','108.177.7.81',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:32:37'),(189,'chemistry','66.249.88.76',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:31:59'),(190,'crk','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:10','2018-11-25 10:32:10'),(191,'insurance','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:14','2018-11-25 10:32:14'),(192,'civiledu','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:17','2018-11-25 10:32:18'),(193,'geography','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:21','2018-11-25 10:32:22'),(194,'chemistry','104.133.10.99',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:47:20','2018-11-25 10:48:39'),(195,'chemistry','105.112.46.101',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:07:44','2018-11-25 12:07:44'),(196,'chemistry','105.112.33.216',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:33:34','2018-11-25 12:56:01'),(197,'currentaffairs','105.112.33.216',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:56:40','2018-11-25 13:10:15'),(198,'economics','105.112.33.216',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:10:36','2018-11-25 13:16:55'),(199,'chemistry','105.112.40.40',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:15:46','2018-11-25 13:19:21'),(200,'chemistry','105.112.42.88',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:21:39','2018-11-25 13:21:39'),(201,'chemistry','105.112.41.248',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:01:24','2018-11-25 17:01:24'),(202,'english','105.112.41.248',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:04:33','2018-11-25 17:13:28'),(203,'english','105.112.41.0',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:18:30','2018-11-25 17:55:36'),(204,'english','197.210.53.141',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 19:58:43','2018-11-25 20:00:07'),(205,'english','197.210.52.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:07','2018-11-25 20:00:41'),(206,'english','197.210.53.23',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:21','2018-11-25 20:00:55'),(207,'english','105.112.43.127',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:19:59','2018-11-25 20:20:01'),(208,'english','197.211.63.176',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:00:14','2018-11-26 05:00:51'),(209,'commerce','197.211.63.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:10','2018-11-26 05:01:10'),(210,'mathematics','197.211.63.176',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:21','2018-11-26 10:14:10'),(211,'biology','105.112.42.191',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:08','2018-11-26 09:33:08'),(212,'accounting','105.112.42.191',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:09','2018-11-26 09:33:12'),(213,'english','41.76.197.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:38','2018-11-26 10:12:41'),(214,'currentaffairs','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:50','2018-11-26 10:12:50'),(215,'government','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:54','2018-11-26 10:12:54'),(216,'civiledu','41.76.197.2',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:58','2018-11-26 10:13:05'),(217,'englishlit','41.76.197.2',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:13:14','2018-11-27 16:00:52'),(218,'english','129.56.76.55',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:51:31','2018-11-26 10:52:34'),(219,'mathematics','129.56.76.55',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:52:19','2018-11-26 10:52:28'),(220,'english','197.210.227.200',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 11:27:18','2018-11-26 11:27:18'),(221,'english','105.112.28.18',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:05:44','2018-11-26 13:06:45'),(222,'physics','105.112.28.18',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:07:06','2018-11-26 13:34:17'),(223,'physics','105.112.21.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:05:04','2018-11-26 16:05:04'),(224,'english','197.210.63.52',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:11:53','2018-11-26 16:11:56'),(225,'english','197.211.61.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:28:59','2018-11-26 16:28:59'),(226,'currentaffairs','197.211.61.82',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:29:23','2018-11-28 11:57:35'),(227,'chemistry','77.88.47.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 22:02:53','2019-04-15 13:33:36'),(228,'mathematics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(229,'chemistry','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(230,'government','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(231,'economics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(232,'civiledu','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(233,'currentaffairs','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(234,'history','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(235,'commerce','41.203.72.10',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 05:53:52','2018-11-27 06:00:02'),(236,'physics','41.203.72.10',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:00:04','2018-11-27 06:01:08'),(237,'english','41.190.30.106',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:14:24','2018-11-27 06:21:01'),(238,'civiledu','41.190.30.106',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:21:10','2018-11-27 06:21:10'),(239,'civiledu','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:03','2018-11-27 06:38:04'),(240,'english','41.190.2.145',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:07','2018-11-27 06:39:15'),(241,'mathematics','41.190.2.145',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:09','2018-11-27 06:38:26'),(242,'insurance','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:14','2018-11-27 06:38:14'),(243,'chemistry','41.190.2.145',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:27','2018-11-27 06:38:37'),(244,'chemistry','105.112.27.114',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:39:39','2018-11-27 06:41:07'),(245,'englishlit','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(246,'government','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(247,'crk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(248,'geography','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(249,'irk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(250,'insurance','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(251,'history','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(252,'physics','105.112.28.250',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 08:14:13','2018-11-27 08:14:48'),(253,'english','197.211.61.80',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:09','2018-11-27 13:40:37'),(254,'mathematics','197.211.61.80',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:21','2018-11-27 13:38:36'),(255,'english','197.210.226.36',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:47:29','2018-11-27 13:47:32'),(256,'english','197.210.29.222',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:18:13','2018-11-27 14:20:00'),(257,'commerce','197.210.29.222',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:20:17','2018-11-27 14:20:22'),(258,'english','105.112.120.89',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:34:35','2018-11-27 14:37:02'),(259,'crk','105.112.120.89',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:38:57','2018-11-27 14:40:34'),(260,'mathematics','129.205.114.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:17','2018-11-27 14:40:17'),(261,'english','129.205.114.24',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:21','2018-11-27 14:41:29'),(262,'chemistry','129.205.114.24',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:42:02','2018-11-27 14:42:57'),(263,'physics','129.205.114.24',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:43:24','2018-11-27 14:44:50'),(264,'english','129.56.65.7',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:45:40','2018-11-27 16:45:49'),(265,'biology','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:46:22','2018-11-27 16:49:06'),(266,'accounting','129.56.65.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:26','2018-11-27 16:49:26'),(267,'geography','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:40','2018-11-27 16:59:23'),(268,'physics','105.112.26.254',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 17:27:44','2018-11-27 17:27:56'),(269,'english','129.56.60.65',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 18:02:16','2018-11-27 18:02:18'),(270,'english','105.112.34.100',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 19:45:56','2018-11-27 19:46:05'),(271,'chemistry','105.112.46.246',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:12:41','2018-11-27 20:12:45'),(272,'mathematics','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:30','2018-11-27 20:13:30'),(273,'currentaffairs','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:37','2018-11-27 20:13:38'),(274,'chemistry','5.102.173.71',20,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-28 03:23:29','2020-04-23 13:10:36'),(275,'english','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(276,'mathematics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(277,'accounting','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(278,'biology','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(279,'physics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(280,'economics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(281,'insurance','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(282,'english','197.210.29.201',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:58:56','2018-11-28 06:59:01'),(283,'currentaffairs','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:28','2018-11-28 07:00:28'),(284,'mathematics','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:50','2018-11-28 07:00:50'),(285,'currentaffairs','197.210.226.232',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:01:32','2018-11-28 07:02:24'),(286,'mathematics','105.112.68.162',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:39:34','2018-11-28 07:40:17'),(287,'english','129.56.51.37',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:53:25','2018-11-28 09:57:29'),(288,'englishlit','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:54:29','2018-11-28 17:19:35'),(289,'mathematics','129.56.51.37',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:57:49','2018-11-28 09:57:52'),(290,'chemistry','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:36:59','2018-11-28 13:36:59'),(291,'english','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:50:26','2018-11-28 13:50:26'),(292,'mathematics','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:51:25','2018-11-28 13:51:25'),(293,'geography','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:52:11','2018-11-28 13:52:11'),(294,'accounting','105.112.42.193',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 14:17:01','2018-11-28 14:17:30'),(295,'english','105.112.46.85',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:11','2018-11-28 17:19:16'),(296,'history','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:55','2018-11-28 17:20:33'),(297,'english','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:31','2018-11-28 17:48:31'),(298,'mathematics','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:35','2018-11-28 17:48:40'),(299,'chemistry','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:49:26','2018-11-28 17:50:45'),(300,'biology','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:50:12','2018-11-28 17:50:16'),(301,'accounting','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:52:59','2018-11-28 17:52:59'),(302,'history','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:53:04','2018-11-28 17:53:09'),(303,'physics','105.112.26.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 02:32:12','2018-11-29 02:33:14'),(304,'english','105.112.3.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:04:28','2018-11-29 05:07:31'),(305,'english','197.210.226.122',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:31:51','2018-11-29 05:33:21'),(306,'english','197.210.226.203',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:33:22','2018-11-29 05:37:32'),(307,'mathematics','197.210.226.122',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:38:12','2018-11-29 05:38:14'),(308,'english','102.163.30.124',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:45:54','2018-11-29 07:47:50'),(309,'accounting','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(310,'commerce','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(311,'biology','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(312,'physics','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(313,'chemistry','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(314,'englishlit','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(315,'geography','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(316,'crk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(317,'currentaffairs','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(318,'history','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(319,'irk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(320,'insurance','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(321,'chemistry','105.112.68.243',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 11:06:07','2018-11-29 11:06:07'),(322,'chemistry','197.149.95.62',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:08:23','2018-11-29 13:08:50'),(323,'english','197.211.60.94',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:18:57','2018-11-29 13:19:11'),(324,'english','129.56.159.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:43','2018-11-30 05:15:43'),(325,'mathematics','129.56.159.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:54','2018-11-30 05:15:55'),(326,'english','129.56.190.68',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 14:03:21','2018-11-30 14:03:21'),(327,'commerce','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(328,'physics','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(329,'chemistry','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(330,'englishlit','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(331,'government','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(332,'currentaffairs','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(333,'history','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(334,'mathematics','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(335,'crk','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(336,'geography','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(337,'history','105.112.47.245',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 19:21:33','2018-11-30 19:21:33'),(338,'english','105.112.46.230',2160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 21:59:34','2018-12-01 00:55:45'),(339,'commerce','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(340,'biology','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(341,'englishlit','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(342,'government','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(343,'civiledu','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(344,'insurance','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(345,'history','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(346,'english','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(347,'accounting','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(348,'physics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(349,'geography','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(350,'economics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(351,'english','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:57:37','2018-12-01 00:57:45'),(352,'physics','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:08','2018-12-01 00:58:11'),(353,'englishlit','105.112.68.163',840,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:33','2018-12-01 01:55:58'),(354,'english','101.206.169.22',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:48:58','2018-12-01 03:50:48'),(355,'geography','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:15','2018-12-01 03:49:15'),(356,'history','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:20','2018-12-01 03:49:20'),(357,'economics','101.206.169.22',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:50:52','2018-12-01 03:50:57'),(358,'physics','101.206.169.22',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:51:11','2018-12-01 03:51:31'),(359,'physics','105.112.21.158',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:34:50','2018-12-01 09:35:53'),(360,'biology','105.112.21.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:39:19','2018-12-01 09:39:19'),(361,'economics','105.112.32.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 14:44:33','2018-12-01 14:48:45'),(362,'english','192.241.239.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:43:19','2018-12-01 19:43:34'),(363,'economics','192.241.239.137',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:45:45','2018-12-01 19:45:48'),(364,'crk','41.90.4.17',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:39:33','2018-12-02 16:39:35'),(365,'english','105.112.68.194',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:46:19','2018-12-02 16:46:49'),(366,'englishlit','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:48:58','2018-12-02 16:48:58'),(367,'government','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:50:02','2018-12-02 16:50:02'),(368,'mathematics','105.112.35.216',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 20:03:41','2018-12-02 20:05:19'),(369,'mathematics','197.210.44.169',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 07:17:58','2018-12-03 07:17:58'),(370,'english','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:44:57','2019-01-01 08:57:25'),(371,'physics','66.249.66.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:47:01','2018-12-11 00:12:59'),(372,'commerce','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:52:28','2018-12-10 06:37:01'),(373,'mathematics','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:53:01','2019-01-01 09:08:53'),(374,'english','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(375,'mathematics','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(376,'accounting','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(377,'crk','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(378,'geography','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(379,'civiledu','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(380,'insurance','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(381,'english','197.210.55.187',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:21:56','2018-12-04 05:22:40'),(382,'english','197.210.55.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:22:22','2018-12-04 05:23:48'),(383,'english','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:46','2018-12-04 05:23:46'),(384,'economics','197.210.55.77',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:50','2018-12-04 05:23:55'),(385,'government','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:19','2018-12-04 05:24:19'),(386,'currentaffairs','197.210.55.77',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:20','2018-12-04 05:27:52'),(387,'biology','41.203.72.24',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 08:44:56','2018-12-04 08:45:38'),(388,'physics','129.18.144.249',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:37:18','2018-12-04 11:37:48'),(389,'mathematics','129.18.144.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:38:26','2018-12-04 11:38:26'),(390,'chemistry','129.18.144.249',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:39:19','2018-12-04 12:05:27'),(391,'chemistry','41.58.182.193',441,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:28:25','2019-02-18 09:48:30'),(392,'biology','41.58.182.193',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:59:24','2019-01-14 13:14:55'),(393,'accounting','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(394,'mathematics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(395,'crk','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(396,'commerce','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(397,'geography','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(398,'physics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(399,'englishlit','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(400,'economics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(401,'irk','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(402,'insurance','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(403,'civiledu','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(404,'history','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(405,'chemistry','5.255.250.167',134,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-06 10:34:57','2020-03-09 20:47:54'),(406,'english','198.54.114.114',2064829,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 23:13:35','2019-01-05 10:14:01'),(407,'mathematics','197.210.54.46',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:39:25','2018-12-07 14:39:27'),(408,'chemistry','107.167.108.170',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:41:02','2018-12-07 14:41:16'),(409,'english','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(410,'commerce','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(411,'physics','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(412,'crk','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(413,'civiledu','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(414,'insurance','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(415,'currentaffairs','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(416,'chemistry','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(417,'geography','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(418,'irk','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(419,'chemistry','93.158.161.84',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 12:23:24','2019-08-28 13:58:43'),(420,'mathematics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(421,'physics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(422,'englishlit','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(423,'government','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(424,'economics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(425,'irk','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(426,'civiledu','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(427,'chemistry','41.190.2.156',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 21:46:56','2018-12-08 21:53:59'),(428,'mathematics','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(429,'english','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(430,'commerce','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(431,'englishlit','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(432,'government','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(433,'economics','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(434,'crk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(435,'civiledu','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(436,'geography','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(437,'currentaffairs','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(438,'history','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(439,'irk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(440,'english','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:24:35','2019-01-21 04:56:34'),(441,'accounting','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:27:10','2018-12-10 05:27:10'),(442,'economics','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:28:56','2018-12-11 00:19:57'),(443,'currentaffairs','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:26:15','2018-12-10 06:26:15'),(444,'mathematics','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:32:16','2018-12-10 06:32:17'),(445,'government','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 09:31:31','2018-12-10 09:31:32'),(446,'crk','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:34:20','2018-12-10 11:34:20'),(447,'geography','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:40:41','2018-12-10 11:40:41'),(448,'english','66.249.66.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:01:44','2018-12-12 11:56:08'),(449,'crk','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:02:21','2018-12-11 00:02:21'),(450,'mathematics','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:13:24','2018-12-11 00:13:24'),(451,'english','105.112.45.33',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 12:02:56','2018-12-11 12:38:16'),(452,'chemistry','93.158.166.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 14:37:30','2018-12-11 14:37:30'),(453,'chemistry','180.76.15.21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 16:53:35','2018-12-11 16:53:35'),(454,'chemistry','180.76.15.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 19:26:46','2018-12-11 19:26:46'),(455,'english','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(456,'mathematics','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(457,'accounting','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(458,'biology','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(459,'geography','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(460,'economics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(461,'history','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(462,'physics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(463,'government','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(464,'irk','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(465,'civiledu','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(466,'chemistry','180.76.15.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 23:48:00','2018-12-11 23:48:00'),(467,'chemistry','180.76.15.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 00:21:20','2018-12-12 00:21:20'),(468,'chemistry','180.76.15.14',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 07:46:34','2018-12-12 07:46:34'),(469,'chemistry','154.113.73.98',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:36','2018-12-12 10:41:28'),(470,'mathematics','154.113.73.98',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:49','2018-12-12 10:36:58'),(471,'crk','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:20','2018-12-12 11:59:20'),(472,'physics','66.249.66.148',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:38','2019-01-21 04:57:41'),(473,'english','105.112.47.144',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:00:13','2018-12-12 22:58:12'),(474,'englishlit','105.112.47.144',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:02:31','2018-12-12 12:04:05'),(475,'accounting','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 21:01:10','2018-12-12 21:01:10'),(476,'chemistry','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 22:50:15','2018-12-12 22:50:15'),(477,'english','105.112.46.125',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:28:26','2018-12-13 08:44:01'),(478,'economics','105.112.46.125',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:29:01','2018-12-13 08:29:01'),(479,'english','105.112.41.38',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:57:18','2018-12-13 12:33:26'),(480,'english','129.56.134.30',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 09:16:11','2018-12-13 09:16:17'),(481,'chemistry','93.158.161.83',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-13 09:55:28','2019-08-18 19:16:42'),(482,'government','105.112.41.38',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:18','2018-12-13 10:21:18'),(483,'economics','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:51','2018-12-13 10:46:29'),(484,'biology','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:30:17','2018-12-13 10:32:39'),(485,'chemistry','105.112.41.38',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:47:04','2018-12-13 11:10:33'),(486,'accounting','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:57:43','2018-12-13 11:01:54'),(487,'mathematics','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:05:06','2018-12-13 11:15:23'),(488,'englishlit','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:10:58','2018-12-13 11:14:55'),(489,'chemistry','180.76.15.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 15:45:10','2018-12-13 15:45:10'),(490,'chemistry','180.76.15.16',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:18:30','2018-12-13 16:18:31'),(491,'irk','54.227.19.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:32:52','2018-12-13 16:32:52'),(492,'chemistry','180.76.15.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:51:50','2018-12-13 16:51:50'),(493,'english','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:37','2018-12-13 19:06:38'),(494,'mathematics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:40','2018-12-13 19:08:24'),(495,'crk','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:57','2018-12-13 19:06:58'),(496,'economics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:01','2018-12-13 19:08:24'),(497,'government','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:14','2018-12-13 19:07:14'),(498,'civiledu','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(499,'biology','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(500,'history','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:42','2018-12-13 19:07:42'),(501,'chemistry','178.154.171.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 21:33:50','2018-12-13 21:33:50'),(502,'chemistry','180.76.15.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 00:15:20','2018-12-14 00:15:20'),(503,'chemistry','180.76.15.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 07:43:39','2018-12-14 07:43:39'),(504,'chemistry','197.211.61.108',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 15:01:10','2018-12-14 15:01:10'),(505,'english','105.112.46.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 21:38:58','2018-12-14 21:38:59'),(506,'mathematics','105.112.32.198',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 15:16:16','2018-12-15 15:16:17'),(507,'english','105.112.38.110',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:20:52','2018-12-15 19:20:28'),(508,'biology','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:25:40','2018-12-15 18:25:40'),(509,'economics','105.112.38.110',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:21:25','2018-12-15 19:30:28'),(510,'accounting','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:30:34','2018-12-15 19:30:34'),(511,'physics','175.126.202.88',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 00:43:36','2018-12-16 00:44:38'),(512,'accounting','105.112.34.239',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 10:25:26','2018-12-16 10:25:26'),(513,'accounting','105.112.41.67',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 15:44:34','2018-12-16 16:36:06'),(514,'accounting','105.112.29.182',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 16:52:50','2018-12-16 17:06:10'),(515,'accounting','105.112.34.195',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 17:18:42','2018-12-16 18:36:42'),(516,'chemistry','197.211.56.111',287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:10:04','2018-12-16 19:21:43'),(517,'accounting','105.112.46.33',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:32:00','2018-12-16 19:34:06'),(518,'english','105.112.46.33',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:36:15','2018-12-16 19:36:15'),(519,'mathematics','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(520,'englishlit','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(521,'government','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(522,'economics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(523,'civiledu','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(524,'insurance','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(525,'history','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(526,'accounting','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(527,'physics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(528,'chemistry','197.211.61.98',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:12:52','2018-12-17 06:13:44'),(529,'mathematics','197.211.61.98',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:14:29','2018-12-17 06:14:29'),(530,'english','105.112.45.142',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:21:44','2018-12-17 06:21:44'),(531,'commerce','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(532,'mathematics','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(533,'englishlit','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(534,'accounting','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(535,'crk','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(536,'civiledu','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(537,'irk','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(538,'insurance','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(539,'currentaffairs','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(540,'history','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(541,'crk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(542,'geography','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(543,'economics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(544,'history','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(545,'chemistry','197.210.45.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 17:24:25','2018-12-17 17:39:16'),(546,'mathematics','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:41','2018-12-17 18:04:43'),(547,'english','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:52','2018-12-17 18:04:56'),(548,'chemistry','197.210.227.233',92,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 21:46:03','2020-04-28 16:08:26'),(549,'crk','41.90.4.25',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 05:23:20','2018-12-18 05:23:20'),(550,'mathematics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(551,'chemistry','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(552,'englishlit','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(553,'government','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(554,'economics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(555,'currentaffairs','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(556,'history','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(557,'english','197.149.92.146',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 15:42:59','2019-01-21 14:07:29'),(558,'english','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(559,'physics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(560,'government','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(561,'crk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(562,'economics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(563,'irk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(564,'history','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(565,'mathematics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(566,'commerce','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(567,'biology','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(568,'physics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(569,'crk','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(570,'civiledu','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(571,'mathematics','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(572,'commerce','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(573,'accounting','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(574,'biology','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(575,'government','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(576,'geography','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(577,'insurance','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(578,'english','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(579,'chemistry','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(580,'crk','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(581,'currentaffairs','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(582,'english','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:07:37','2018-12-19 07:07:37'),(583,'currentaffairs','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:08:26','2018-12-19 07:08:26'),(584,'chemistry','141.8.142.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 10:43:20','2018-12-19 10:43:20'),(585,'chemistry','129.205.114.31',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 14:19:13','2018-12-19 14:46:54'),(586,'chemistry','197.210.45.94',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 18:51:50','2018-12-19 19:42:45'),(587,'chemistry','197.210.226.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:52:25','2018-12-19 19:52:25'),(588,'chemistry','197.210.226.37',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:53:27','2018-12-19 19:53:31'),(589,'chemistry','129.205.114.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 22:33:31','2018-12-19 22:33:31'),(590,'chemistry','197.210.131.150',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 06:24:47','2018-12-20 06:43:46'),(591,'english','41.58.233.100',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:12:36','2018-12-20 09:15:21'),(592,'commerce','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(593,'biology','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(594,'physics','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(595,'englishlit','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(596,'geography','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(597,'history','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(598,'mathematics','105.112.37.70',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 19:08:41','2018-12-20 19:08:41'),(599,'english','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(600,'commerce','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(601,'geography','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(602,'economics','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(603,'civiledu','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(604,'insurance','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(605,'history','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(606,'currentaffairs','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:19','2018-12-21 08:05:19'),(607,'biology','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:51','2018-12-21 08:05:51'),(608,'english','105.112.47.163',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:24:03','2018-12-21 10:19:51'),(609,'chemistry','105.112.47.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:39:11','2018-12-21 08:39:37'),(610,'physics','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:45:24','2018-12-21 08:45:25'),(611,'mathematics','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(612,'chemistry','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(613,'englishlit','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(614,'geography','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(615,'civiledu','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(616,'currentaffairs','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(617,'history','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(618,'mathematics','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:33:23','2018-12-22 05:33:23'),(619,'english','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:35:01','2018-12-22 05:35:01'),(620,'chemistry','197.211.61.114',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:26:13','2018-12-22 11:17:52'),(621,'english','197.211.61.114',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:31:29','2018-12-22 10:01:02'),(622,'mathematics','197.211.61.114',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 10:51:19','2018-12-22 11:44:17'),(623,'biology','197.211.61.114',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:15:56','2018-12-22 11:38:07'),(624,'economics','197.211.61.114',601,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:45:00','2018-12-22 11:54:26'),(625,'english','105.112.46.179',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:02:33','2018-12-22 12:32:21'),(626,'biology','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:12:59','2018-12-22 12:12:59'),(627,'mathematics','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:14:25','2018-12-22 12:14:25'),(628,'biology','105.112.27.90',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 14:12:09','2018-12-22 14:12:19'),(629,'biology','105.112.28.72',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 08:30:27','2018-12-23 08:31:00'),(630,'mathematics','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:34','2018-12-23 10:24:34'),(631,'commerce','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(632,'biology','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(633,'government','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(634,'crk','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(635,'civiledu','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(636,'history','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(637,'english','102.163.30.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 14:59:34','2018-12-23 14:59:34'),(638,'chemistry','94.130.64.96',101,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-24 16:32:40','2019-10-29 05:22:55'),(639,'chemistry','87.250.224.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 15:07:57','2018-12-25 15:07:57'),(640,'english','105.112.46.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 16:28:23','2018-12-25 16:28:24'),(641,'chemistry','197.242.105.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 21:07:41','2018-12-25 21:07:41'),(642,'mathematics','129.56.150.67',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 06:03:54','2018-12-26 06:03:54'),(643,'currentaffairs','105.112.43.199',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 07:57:50','2018-12-26 08:02:07'),(644,'economics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:16','2018-12-26 08:24:50'),(645,'english','105.112.43.199',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:19','2018-12-26 08:13:25'),(646,'biology','105.112.43.199',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:13:33','2018-12-26 08:15:51'),(647,'mathematics','105.112.43.199',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:19:50','2018-12-26 08:19:50'),(648,'chemistry','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:21:57','2018-12-26 08:22:00'),(649,'physics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:23:21','2018-12-26 08:23:26'),(650,'biology','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(651,'physics','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(652,'government','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(653,'geography','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(654,'civiledu','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(655,'currentaffairs','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(656,'history','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(657,'accounting','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(658,'chemistry','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(659,'irk','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(660,'english','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(661,'commerce','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(662,'physics','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(663,'englishlit','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(664,'irk','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(665,'civiledu','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(666,'currentaffairs','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(667,'commerce','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(668,'accounting','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(669,'biology','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(670,'chemistry','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(671,'economics','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(672,'irk','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(673,'currentaffairs','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(674,'mathematics','197.211.63.177',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 09:02:54','2018-12-28 09:02:54'),(675,'english','66.249.75.30',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:23:21','2018-12-28 10:23:21'),(676,'government','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:24:59','2018-12-28 10:24:59'),(677,'geography','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:28:56','2018-12-28 10:28:56'),(678,'mathematics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:30:30','2018-12-28 10:30:30'),(679,'physics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:43:38','2018-12-28 10:43:39'),(680,'physics','119.4.252.222',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 13:32:48','2018-12-28 13:32:48'),(681,'mathematics','105.112.40.153',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:15','2018-12-29 06:30:15'),(682,'english','105.112.40.153',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:27','2018-12-29 06:30:31'),(683,'mathematics','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(684,'english','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(685,'commerce','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(686,'physics','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(687,'biology','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(688,'englishlit','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(689,'government','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(690,'chemistry','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(691,'geography','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(692,'currentaffairs','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 11:39:05'),(693,'irk','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 12:00:15'),(694,'insurance','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(695,'biology','197.211.61.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-30 18:14:56','2018-12-30 18:14:56'),(696,'englishlit','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 08:59:20','2019-01-01 08:59:20'),(697,'civiledu','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 09:06:49','2019-01-01 09:06:49'),(698,'mathematics','197.210.227.192',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 13:01:04','2019-01-01 13:01:05'),(699,'english','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:15','2019-01-02 13:19:15'),(700,'mathematics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:33','2019-01-02 13:19:33'),(701,'physics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:52','2019-01-02 13:19:52'),(702,'chemistry','216.244.66.249',236,'','US',NULL,'Washington',NULL,NULL,NULL,NULL,'2019-01-03 00:12:52','2020-08-16 03:14:27'),(703,'chemistry','129.56.72.46',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:37:05','2019-01-03 15:53:03'),(704,'physics','129.56.72.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:42:55','2019-01-03 15:42:55'),(705,'english','129.56.72.46',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:43:08','2019-01-03 15:43:45'),(706,'chemistry','197.211.61.138',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-04 14:31:06','2019-01-04 14:31:06'),(707,'chemistry','54.36.222.37',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:24:51','2019-01-05 15:25:12'),(708,'chemistry','105.112.68.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:25:43','2019-01-05 15:25:43'),(709,'chemistry','41.58.55.77',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:20:09','2019-01-05 16:29:28'),(710,'government','41.58.55.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:30:37','2019-01-05 16:30:37'),(711,'english','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:28','2019-01-06 16:30:29'),(712,'physics','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:33','2019-01-06 16:30:33'),(713,'english','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(714,'mathematics','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(715,'physics','54.163.211.17',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(716,'englishlit','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(717,'crk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(718,'government','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(719,'irk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(720,'economics','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(721,'history','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(722,'insurance','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(723,'currentaffairs','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(724,'mathematics','105.112.16.240',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(725,'physics','105.112.16.240',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(726,'english','35.171.138.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:39:33','2019-01-07 09:39:33'),(727,'chemistry','141.8.142.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:47:24','2019-01-07 09:47:24'),(728,'chemistry','129.56.36.237',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 14:52:19','2019-01-07 14:54:09'),(729,'chemistry','129.56.35.102',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:18:44','2019-01-08 07:43:45'),(730,'mathematics','129.56.35.102',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:20:24','2019-01-08 07:41:53'),(731,'mathematics','105.112.23.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:11:31','2019-01-08 09:11:31'),(732,'english','105.112.32.121',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:42:08','2019-01-08 09:42:22'),(733,'chemistry','197.211.61.143',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:10:03','2019-01-08 14:10:20'),(734,'chemistry','154.68.226.2',118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:34:37','2019-01-08 14:39:59'),(735,'english','154.68.226.2',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:39:32','2019-01-08 14:39:32'),(736,'chemistry','105.112.75.253',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:28:30','2019-01-08 18:28:52'),(737,'chemistry','105.112.33.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:43:41','2019-01-08 18:43:41'),(738,'chemistry','35.192.130.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 23:46:16','2019-01-08 23:46:25'),(739,'mathematics','105.112.18.0',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 07:37:37','2019-01-09 07:37:38'),(740,'chemistry','154.118.13.144',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:11:55','2019-01-09 08:13:04'),(741,'mathematics','154.118.13.144',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:12:11','2019-01-09 08:12:47'),(742,'mathematics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(743,'commerce','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(744,'accounting','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(745,'government','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(746,'economics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(747,'civiledu','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(748,'currentaffairs','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(749,'chemistry','41.77.168.134',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:45:00','2019-01-09 08:58:31'),(750,'mathematics','41.77.168.134',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:48:48','2019-01-09 08:48:48'),(751,'english','41.77.168.134',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:58:57','2019-01-09 09:03:34'),(752,'commerce','54.196.34.230',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:52:38'),(753,'accounting','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(754,'chemistry','54.196.34.230',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:19:42'),(755,'englishlit','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(756,'economics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(757,'irk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(758,'insurance','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(759,'physics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(760,'government','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(761,'crk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(762,'geography','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(763,'civiledu','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(764,'history','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(765,'chemistry','80.248.6.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:06:19','2019-01-09 10:06:19'),(766,'chemistry','154.118.61.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:32:10','2019-01-09 10:32:45'),(767,'english','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(768,'mathematics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(769,'commerce','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(770,'accounting','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(771,'physics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(772,'government','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(773,'insurance','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(774,'chemistry','197.242.96.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:31:54','2019-01-09 12:36:27'),(775,'commerce','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(776,'accounting','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(777,'physics','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(778,'government','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(779,'crk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(780,'irk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(781,'history','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(782,'chemistry','197.211.61.140',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:31:17','2019-01-09 13:31:45'),(783,'chemistry','197.210.28.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:45:23','2019-01-09 13:45:42'),(784,'chemistry','105.112.26.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:11:31','2019-01-09 16:11:31'),(785,'chemistry','212.100.76.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:20:25','2019-01-09 16:20:25'),(786,'english','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(787,'commerce','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(788,'chemistry','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(789,'accounting','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(790,'crk','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(791,'englishlit','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(792,'geography','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(793,'economics','54.234.47.73',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:14:14'),(794,'irk','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(795,'history','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(796,'insurance','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(797,'chemistry','51.75.71.123',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 23:42:44','2019-01-09 23:43:14'),(798,'chemistry','129.205.114.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 01:56:23','2019-01-10 01:56:30'),(799,'mathematics','197.210.47.164',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:43:39','2019-01-10 09:02:20'),(800,'chemistry','197.210.47.164',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:49:36','2019-01-10 08:58:38'),(801,'mathematics','163.172.103.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 09:01:09','2019-01-10 09:01:09'),(802,'chemistry','41.223.145.174',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 14:44:39','2019-01-10 14:44:40'),(803,'english','54.82.110.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 20:51:21','2019-01-10 20:51:21'),(804,'english','105.112.46.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:06:16','2019-01-10 21:06:16'),(805,'english','54.80.138.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:20','2019-01-10 21:09:20'),(806,'accounting','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(807,'physics','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(808,'chemistry','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(809,'government','54.80.138.166',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(810,'geography','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:23'),(811,'insurance','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(812,'history','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(813,'commerce','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:33','2019-01-10 21:45:05'),(814,'crk','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:45:05'),(815,'economics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:23'),(816,'civiledu','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:25'),(817,'mathematics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:45:05'),(818,'biology','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:21:37'),(819,'irk','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:45:05'),(820,'currentaffairs','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:34:23'),(821,'mathematics','105.112.46.80',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:40:26','2019-01-10 21:40:35'),(822,'chemistry','197.210.226.19',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 06:57:07','2019-01-11 07:15:56'),(823,'chemistry','197.210.53.216',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:13','2019-01-11 07:55:13'),(824,'chemistry','197.210.52.249',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:24','2019-02-01 07:57:34'),(825,'chemistry','197.210.53.38',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:33','2019-01-11 07:55:33'),(826,'chemistry','141.0.12.246',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 08:09:00','2019-01-11 08:09:00'),(827,'chemistry','93.158.161.104',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-11 11:59:42','2019-11-14 01:45:39'),(828,'mathematics','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(829,'physics','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(830,'chemistry','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(831,'government','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(832,'geography','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(833,'economics','54.205.11.114',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(834,'currentaffairs','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(835,'english','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(836,'commerce','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(837,'biology','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(838,'crk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(839,'irk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(840,'insurance','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(841,'civiledu','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(842,'history','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(843,'chemistry','197.210.227.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:05:33','2019-01-11 19:05:33'),(844,'english','197.210.227.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:09:52','2019-01-11 19:09:52'),(845,'englishlit','197.211.61.137',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 22:39:43','2019-01-11 22:39:43'),(846,'physics','197.242.97.253',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:01:48','2019-01-11 23:05:05'),(847,'mathematics','197.242.97.253',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:06:07','2019-01-11 23:31:02'),(848,'chemistry','197.211.61.137',101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:08:07','2019-01-11 23:30:04'),(849,'irk','197.211.61.137',2640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:30:32','2019-01-12 01:52:58'),(850,'civiledu','197.211.61.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:38:40','2019-01-12 00:01:30'),(851,'crk','197.211.61.137',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 01:59:32','2019-01-12 02:01:42'),(852,'chemistry','154.113.86.220',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 12:01:05','2019-01-12 12:05:52'),(853,'chemistry','197.210.55.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:02','2019-01-12 13:17:02'),(854,'chemistry','197.210.54.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:27','2019-01-12 13:17:35'),(855,'chemistry','197.210.54.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:18:25','2019-01-12 13:18:25'),(856,'english','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(857,'mathematics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(858,'commerce','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(859,'biology','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(860,'physics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(861,'irk','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(862,'insurance','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(863,'english','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(864,'biology','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(865,'physics','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(866,'government','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(867,'irk','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(868,'civiledu','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(869,'insurance','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(870,'chemistry','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(871,'englishlit','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(872,'history','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(873,'english','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(874,'mathematics','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(875,'biology','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(876,'geography','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(877,'irk','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(878,'insurance','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(879,'history','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(880,'english','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:04:50','2019-01-12 20:04:50'),(881,'chemistry','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:05:26','2019-01-12 20:05:27'),(882,'irk','197.210.47.86',180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:21:42','2019-01-12 20:26:58'),(883,'insurance','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:27:49','2019-01-12 20:27:49'),(884,'mathematics','197.210.47.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:36:53','2019-01-12 20:39:06'),(885,'chemistry','154.120.102.146',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 00:32:56','2019-01-13 00:33:43'),(886,'english','197.210.54.214',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:56:19'),(887,'english','197.210.54.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:02:41'),(888,'mathematics','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:09:53','2019-01-13 08:09:53'),(889,'mathematics','197.210.55.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:10:36','2019-01-13 08:10:36'),(890,'english','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:51:48','2019-01-13 08:51:48'),(891,'english','197.210.55.13',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:59:29','2019-01-13 08:59:29'),(892,'chemistry','197.210.44.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:00:31','2019-01-13 11:00:31'),(893,'english','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(894,'commerce','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(895,'biology','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(896,'chemistry','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(897,'englishlit','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(898,'government','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(899,'history','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(900,'english','197.210.226.45',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 14:49:00','2019-01-13 14:49:00'),(901,'physics','197.210.227.184',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(902,'physics','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(903,'english','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:59:10','2019-01-13 15:59:10'),(904,'english','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:02:36','2019-01-13 16:02:36'),(905,'biology','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:05:26','2019-01-13 16:05:26'),(906,'biology','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:10:47','2019-01-13 16:12:44'),(907,'physics','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:39:55','2019-01-13 16:39:55'),(908,'economics','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:33:11','2019-01-13 17:41:35'),(909,'mathematics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(910,'english','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(911,'accounting','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(912,'physics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(913,'chemistry','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(914,'englishlit','54.87.49.142',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(915,'crk','54.87.49.142',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(916,'government','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(917,'geography','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(918,'economics','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(919,'commerce','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(920,'civiledu','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(921,'currentaffairs','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(922,'history','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(923,'english','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(924,'commerce','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(925,'physics','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(926,'englishlit','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(927,'geography','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(928,'insurance','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(929,'currentaffairs','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(930,'mathematics','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(931,'accounting','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(932,'crk','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(933,'mathematics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(934,'commerce','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(935,'government','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(936,'chemistry','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(937,'crk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(938,'englishlit','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(939,'economics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(940,'irk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(941,'geography','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(942,'insurance','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(943,'civiledu','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(944,'currentaffairs','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(945,'chemistry','41.58.81.61',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 06:35:26','2019-01-14 11:20:24'),(946,'chemistry','67.222.154.247',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:40:10','2019-01-14 07:40:10'),(947,'mathematics','41.58.182.193',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:50:27','2019-01-14 15:09:22'),(948,'commerce','41.58.182.193',2080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 09:57:28','2019-01-14 13:27:13'),(949,'chemistry','154.120.102.252',854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:00:36','2019-01-14 10:20:54'),(950,'accounting','41.58.182.193',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:01:42','2019-01-14 13:14:55'),(951,'commerce','197.211.61.136',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:38:39','2019-01-14 10:38:59'),(952,'biology','41.58.81.61',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:18:50','2019-01-14 11:19:07'),(953,'chemistry','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:24:11','2019-01-14 11:24:11'),(954,'english','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:25:28','2019-01-14 11:25:28'),(955,'english','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(956,'commerce','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(957,'accounting','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(958,'government','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(959,'crk','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(960,'civiledu','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(961,'insurance','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(962,'chemistry','73.142.154.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:37:12','2019-01-14 11:37:12'),(963,'chemistry','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:10:52','2019-01-14 14:26:38'),(964,'geography','154.118.29.188',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:50:28','2019-01-14 14:27:52'),(965,'history','154.118.29.188',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:23:24'),(966,'economics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:27:38'),(967,'insurance','154.118.29.188',95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:24:14'),(968,'english','154.118.29.188',71,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:24','2019-01-14 14:25:44'),(969,'crk','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:33','2019-01-14 14:23:40'),(970,'englishlit','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:39','2019-01-14 14:27:06'),(971,'biology','154.118.29.188',77,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:19','2019-01-14 14:25:59'),(972,'accounting','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:21','2019-01-14 14:26:39'),(973,'mathematics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:22','2019-01-14 14:25:10'),(974,'physics','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:27','2019-01-14 14:27:00'),(975,'currentaffairs','154.118.29.188',109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:29','2019-01-14 14:24:12'),(976,'commerce','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:24:22'),(977,'irk','154.118.29.188',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:27:24'),(978,'civiledu','154.118.29.188',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:39','2019-01-14 14:27:37'),(979,'government','154.118.29.188',112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:45','2019-01-14 14:27:52'),(980,'english','105.112.26.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:16:02','2019-01-14 13:16:02'),(981,'physics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:23:47','2019-01-14 13:23:47'),(982,'chemistry','102.176.244.209',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:27:15','2019-01-14 13:27:15'),(983,'englishlit','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:28:42','2019-01-14 13:28:42'),(984,'chemistry','3.82.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:46'),(985,'chemistry','54.221.199.147',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:47'),(986,'english','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:18:34'),(987,'mathematics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(988,'government','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(989,'crk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(990,'economics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(991,'irk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(992,'civiledu','54.83.84.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(993,'insurance','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:41'),(994,'geography','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:09'),(995,'economics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:58','2019-01-14 14:35:25'),(996,'civiledu','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:04','2019-01-14 14:37:40'),(997,'chemistry','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:12','2019-01-14 14:37:32'),(998,'irk','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:34','2019-01-14 14:37:32'),(999,'mathematics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:38','2019-01-14 14:34:17'),(1000,'currentaffairs','41.217.124.252',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:52','2019-01-14 14:36:53'),(1001,'crk','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:59','2019-01-14 14:33:56'),(1002,'physics','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:04','2019-01-14 14:34:57'),(1003,'english','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:10','2019-01-14 14:36:11'),(1004,'accounting','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:16','2019-01-14 14:37:41'),(1005,'commerce','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:24','2019-01-14 14:36:54'),(1006,'government','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:33:56','2019-01-14 14:35:57'),(1007,'englishlit','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:34:57','2019-01-14 14:36:30'),(1008,'accounting','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1009,'physics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1010,'chemistry','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1011,'currentaffairs','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1012,'history','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1013,'biology','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:25','2019-01-14 14:37:26'),(1014,'history','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:36:21','2019-01-14 14:37:39'),(1015,'mathematics','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:40:53','2019-01-14 15:01:48'),(1016,'insurance','154.120.104.84',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:10','2019-01-14 14:59:05'),(1017,'history','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:40','2019-01-14 14:58:06'),(1018,'government','154.120.104.84',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:00:27'),(1019,'currentaffairs','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:37'),(1020,'economics','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:20'),(1021,'civiledu','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:51','2019-01-14 14:59:48'),(1022,'biology','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:58','2019-01-14 15:01:49'),(1023,'chemistry','154.120.104.84',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:04','2019-01-14 15:01:09'),(1024,'englishlit','154.120.104.84',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:05','2019-01-14 15:01:56'),(1025,'commerce','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:07','2019-01-14 15:01:04'),(1026,'crk','154.120.104.84',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1027,'geography','154.120.104.84',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 14:59:41'),(1028,'english','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1029,'irk','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:44:31','2019-01-14 15:01:38'),(1030,'physics','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:46:00','2019-01-14 15:00:40'),(1031,'accounting','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:48:21','2019-01-14 15:01:46'),(1032,'crk','54.224.217.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 15:45:45','2019-01-14 15:45:45'),(1033,'commerce','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:22:40','2019-01-14 16:22:40'),(1034,'history','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:24:24','2019-01-14 16:24:24'),(1035,'chemistry','168.253.115.37',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:46:30','2019-01-14 16:46:30'),(1036,'chemistry','197.242.101.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 17:00:07','2019-01-14 17:00:08'),(1037,'chemistry','105.112.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:34:19','2019-01-14 18:34:19'),(1038,'english','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:33','2019-01-14 18:52:34'),(1039,'chemistry','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:40','2019-01-14 18:52:40'),(1040,'mathematics','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:00','2019-01-14 18:53:01'),(1041,'biology','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:10','2019-01-14 18:53:11'),(1042,'english','218.94.63.46',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1043,'english','218.94.63.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:03'),(1044,'economics','218.94.63.46',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1045,'english','197.211.61.152',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 03:35:57','2019-01-15 03:36:17'),(1046,'chemistry','154.118.16.190',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:40:00'),(1047,'chemistry','154.118.16.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:39:18'),(1048,'chemistry','105.112.37.149',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:48:36','2019-01-15 10:57:07'),(1049,'economics','105.112.37.149',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:50:17','2019-01-15 15:03:40'),(1050,'commerce','41.222.43.114',164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:59:58','2019-01-15 14:58:39'),(1051,'currentaffairs','41.222.43.114',176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:04','2019-01-15 14:59:14'),(1052,'accounting','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:13','2019-01-15 14:57:38'),(1053,'history','41.222.43.114',156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:17','2019-01-15 14:58:14'),(1054,'crk','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:27','2019-01-15 14:56:43'),(1055,'irk','41.222.43.114',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:33','2019-01-15 14:59:08'),(1056,'economics','41.222.43.114',171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:38','2019-01-15 14:57:48'),(1057,'mathematics','41.222.43.114',147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:48','2019-01-15 14:58:28'),(1058,'physics','41.222.43.114',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:58','2019-01-15 14:56:23'),(1059,'civiledu','41.222.43.114',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:03','2019-01-15 14:58:33'),(1060,'english','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:19','2019-01-15 14:58:49'),(1061,'insurance','41.222.43.114',178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:33','2019-01-15 14:59:03'),(1062,'government','41.222.43.114',170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:48','2019-01-15 14:58:58'),(1063,'chemistry','41.222.43.114',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:58','2019-01-15 14:58:44'),(1064,'geography','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:04','2019-01-15 14:53:49'),(1065,'biology','41.222.43.114',149,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:13','2019-01-15 14:55:33'),(1066,'englishlit','41.222.43.114',166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:03:14','2019-01-15 14:58:08'),(1067,'chemistry','197.210.45.97',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:04:32','2019-01-15 11:04:46'),(1068,'economics','197.210.45.97',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:15:28','2019-01-15 11:40:03'),(1069,'biology','197.210.45.97',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:17:50','2019-01-15 11:18:29'),(1070,'chemistry','169.159.108.237',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:25:31','2019-01-15 11:25:31'),(1071,'chemistry','129.18.141.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:50:09','2019-01-15 11:50:09'),(1072,'english','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:29','2019-01-15 12:33:29'),(1073,'mathematics','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:44','2019-01-15 12:33:45'),(1074,'chemistry','154.117.120.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:34:24','2019-01-15 12:34:24'),(1075,'englishlit','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:46','2019-01-15 13:57:08'),(1076,'crk','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:47','2019-01-15 13:56:49'),(1077,'accounting','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:48','2019-01-15 13:57:48'),(1078,'history','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:58','2019-01-15 13:56:58'),(1079,'mathematics','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:03','2019-01-15 13:57:03'),(1080,'economics','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:13','2019-01-15 13:57:28'),(1081,'geography','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:18','2019-01-15 13:57:18'),(1082,'chemistry','41.184.122.84',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-15 13:57:23','2019-11-12 12:30:51'),(1083,'biology','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:33','2019-01-15 13:57:53'),(1084,'insurance','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:38','2019-01-15 13:58:43'),(1085,'civiledu','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:43','2019-01-15 13:58:53'),(1086,'irk','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:58','2019-01-15 13:57:58'),(1087,'physics','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:03','2019-01-15 13:58:48'),(1088,'currentaffairs','41.184.122.84',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:13','2019-01-15 13:58:38'),(1089,'commerce','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:33','2019-01-15 13:58:33'),(1090,'english','41.217.112.165',595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:13:18','2019-01-15 18:35:09'),(1091,'mathematics','41.217.112.165',682,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:37:42','2019-01-15 20:35:48'),(1092,'mathematics','154.118.11.179',218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:09:53','2019-01-15 21:33:28'),(1093,'mathematics','105.112.19.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:11:19','2019-01-15 20:11:19'),(1094,'chemistry','154.118.11.179',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:00:39','2019-01-15 21:00:39'),(1095,'english','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1096,'commerce','54.211.194.179',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1097,'biology','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1098,'chemistry','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1099,'accounting','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1100,'physics','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1101,'englishlit','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1102,'geography','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1103,'government','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1104,'civiledu','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1105,'currentaffairs','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1106,'crk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1107,'history','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1108,'economics','54.211.194.179',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1109,'irk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1110,'english','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1111,'mathematics','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1112,'commerce','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1113,'biology','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1114,'englishlit','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1115,'government','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1116,'history','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1117,'accounting','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1118,'crk','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1119,'economics','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1120,'civiledu','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1121,'insurance','54.90.226.10',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1122,'chemistry','105.112.18.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:40:38','2019-01-16 06:40:39'),(1123,'chemistry','105.112.26.11',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:57:01','2019-01-16 06:57:01'),(1124,'english','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:11:18','2019-01-16 08:11:18'),(1125,'economics','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:12:44','2019-01-16 08:12:44'),(1126,'government','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:37:13','2019-01-16 08:37:13'),(1127,'commerce','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1128,'accounting','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1129,'physics','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1130,'geography','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1131,'civiledu','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1132,'insurance','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1133,'history','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1134,'english','54.235.31.132',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 10:26:39','2019-01-16 10:26:39'),(1135,'government','54.90.239.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:30:56','2019-01-16 12:30:56'),(1136,'economics','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:34:56','2019-01-16 12:34:57'),(1137,'insurance','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:48:13','2019-01-16 13:48:13'),(1138,'civiledu','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:55:55','2019-01-16 13:55:55'),(1139,'government','54.226.242.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 15:41:22','2019-01-16 15:41:22'),(1140,'economics','197.210.64.25',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:45:11','2019-01-16 16:54:28'),(1141,'chemistry','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:58:41','2019-01-16 16:58:53'),(1142,'mathematics','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:59:05','2019-01-16 17:07:06'),(1143,'mathematics','41.138.87.73',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 17:49:50','2019-01-16 17:53:24'),(1144,'chemistry','173.225.16.67',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 18:43:39','2019-01-19 04:12:25'),(1145,'commerce','34.207.210.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 19:50:10','2019-01-16 19:50:29'),(1146,'biology','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 20:40:19','2019-01-16 20:40:19'),(1147,'chemistry','41.138.81.104',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:39:14','2019-01-16 21:39:58'),(1148,'history','41.138.81.104',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:40:15','2019-01-16 21:41:27'),(1149,'accounting','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 22:44:31','2019-01-16 22:44:31'),(1150,'mathematics','3.83.38.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 04:39:27','2019-01-17 04:39:27'),(1151,'english','102.176.244.209',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 13:44:54','2019-01-21 11:05:17'),(1152,'chemistry','197.255.52.86',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:42:55','2019-01-17 14:43:15'),(1153,'accounting','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1154,'physics','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1155,'chemistry','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1156,'englishlit','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1157,'government','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1158,'geography','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1159,'insurance','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1160,'biology','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1161,'crk','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1162,'civiledu','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1163,'chemistry','68.13.248.93',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 02:01:44','2019-01-18 02:02:05'),(1164,'chemistry','72.183.76.77',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 03:28:05','2019-01-18 03:29:19'),(1165,'chemistry','197.211.61.152',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 07:10:31','2019-01-18 07:12:13'),(1166,'biology','54.162.164.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 09:21:43','2019-01-18 09:21:43'),(1167,'chemistry','105.112.112.103',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:18:21','2019-01-18 10:19:31'),(1168,'chemistry','197.210.221.158',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:20:34','2019-01-18 10:21:00'),(1169,'chemistry','165.73.192.11',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:30:28','2019-01-18 10:30:38'),(1170,'chemistry','197.210.47.116',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:39:50','2020-04-21 15:26:10'),(1171,'history','66.249.93.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 11:29:27','2019-01-18 11:29:27'),(1172,'chemistry','154.118.20.163',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:12:36','2019-01-18 12:12:36'),(1173,'chemistry','129.56.80.136',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:13:30','2019-01-18 12:14:17'),(1174,'mathematics','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:14:30','2019-01-18 12:14:30'),(1175,'english','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:15:08','2019-01-18 12:15:09'),(1176,'history','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:34:02','2019-01-18 13:34:02'),(1177,'mathematics','41.203.72.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:35:18','2019-01-18 13:35:19'),(1178,'english','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:46:36','2019-01-18 13:46:36'),(1179,'chemistry','41.191.104.66',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:54:05','2019-01-18 13:54:05'),(1180,'chemistry','72.182.201.96',96,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 14:53:27','2019-01-18 14:54:54'),(1181,'chemistry','66.249.73.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:35:04','2019-01-18 16:35:04'),(1182,'commerce','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1183,'physics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1184,'chemistry','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1185,'englishlit','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1186,'geography','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1187,'crk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1188,'irk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:38'),(1189,'currentaffairs','54.211.126.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1190,'civiledu','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1191,'history','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1192,'insurance','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1193,'biology','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:40:42'),(1194,'government','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:38'),(1195,'economics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:47'),(1196,'english','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1197,'accounting','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1198,'mathematics','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:40:42','2019-01-18 16:40:42'),(1199,'crk','54.161.130.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 17:33:33','2019-01-18 17:33:33'),(1200,'chemistry','102.134.114.214',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 20:59:05','2019-01-18 20:59:42'),(1201,'government','54.227.72.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 22:16:13','2019-01-18 22:16:13'),(1202,'government','54.91.120.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 01:06:53','2019-01-19 01:06:53'),(1203,'accounting','54.227.122.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 04:33:38','2019-01-19 04:33:38'),(1204,'commerce','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1205,'physics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1206,'government','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1207,'geography','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1208,'economics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1209,'irk','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1210,'civiledu','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1211,'crk','54.221.144.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:40:28','2019-01-19 07:40:28'),(1212,'chemistry','129.56.27.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 09:08:03','2019-01-19 09:08:03'),(1213,'chemistry','142.120.136.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 10:20:14','2019-01-19 10:20:14'),(1214,'chemistry','178.5.57.197',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 11:52:36','2019-01-19 11:54:27'),(1215,'chemistry','163.172.103.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 12:08:33','2019-01-19 12:08:33'),(1216,'chemistry','41.190.2.147',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:15:10','2019-01-19 13:19:19'),(1217,'chemistry','105.176.145.237',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:26:28','2019-01-19 13:31:47'),(1218,'biology','105.176.145.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:33:44','2019-01-19 13:33:44'),(1219,'english','197.211.61.157',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 17:04:45','2019-01-19 17:04:45'),(1220,'english','54.162.8.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:40:29','2019-01-19 20:40:29'),(1221,'mathematics','51.15.164.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:50:22','2019-01-19 20:50:22'),(1222,'history','66.249.88.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:16:25','2019-01-20 07:16:25'),(1223,'history','66.249.93.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:27:21','2019-01-20 07:27:21'),(1224,'chemistry','197.210.29.161',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 11:59:53','2019-01-20 12:02:04'),(1225,'english','54.87.9.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 15:47:38','2019-01-20 15:47:38'),(1226,'chemistry','66.249.66.148',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 17:41:21','2019-01-20 17:44:12'),(1227,'chemistry','46.229.168.129',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-20 18:19:28','2020-03-16 03:20:32'),(1228,'english','54.205.83.37',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1229,'mathematics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1230,'government','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1231,'accounting','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1232,'geography','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1233,'crk','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1234,'economics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1235,'economics','54.205.83.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1236,'civiledu','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1237,'insurance','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1238,'currentaffairs','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1239,'history','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1240,'history','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:05:55','2019-01-21 05:05:55'),(1241,'mathematics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1242,'commerce','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1243,'physics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1244,'englishlit','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1245,'geography','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1246,'economics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1247,'currentaffairs','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1248,'english','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1249,'biology','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1250,'chemistry','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1251,'crk','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1252,'history','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1253,'chemistry','41.190.3.176',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 08:43:52','2019-01-21 08:49:54'),(1254,'chemistry','41.191.104.112',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 13:29:06','2019-02-11 14:20:17'),(1255,'chemistry','197.210.226.53',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:14:04','2019-01-21 17:18:25'),(1256,'chemistry','197.210.226.64',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:19:47','2019-01-21 17:49:54'),(1257,'chemistry','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:21:23','2019-01-21 17:21:23'),(1258,'mathematics','197.210.227.233',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:29:23','2019-01-21 17:29:23'),(1259,'mathematics','197.210.226.64',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:48:04','2019-05-25 14:23:44'),(1260,'chemistry','197.210.52.70',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 18:43:18','2019-01-26 10:26:21'),(1261,'mathematics','105.112.23.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 23:50:11','2019-01-21 23:50:11'),(1262,'chemistry','41.191.104.126',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 12:07:26','2019-01-22 12:13:11'),(1263,'chemistry','105.112.27.156',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:30:44','2019-01-22 13:33:01'),(1264,'english','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:36','2019-01-22 13:33:36'),(1265,'commerce','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:56','2019-01-22 13:33:56'),(1266,'mathematics','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:34:19','2019-01-22 13:34:19'),(1267,'english','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1268,'accounting','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1269,'government','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1270,'civiledu','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1271,'insurance','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1272,'currentaffairs','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1273,'history','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1274,'chemistry','41.191.107.133',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:40:08','2019-01-22 14:40:08'),(1275,'chemistry','41.191.107.216',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 15:11:15','2019-04-12 06:41:44'),(1276,'chemistry','41.191.107.208',154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 16:28:30','2019-01-22 16:33:44'),(1277,'biology','54.147.167.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:04:47','2019-01-22 18:04:47'),(1278,'insurance','54.81.167.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:45:46','2019-01-22 18:45:46'),(1279,'biology','197.211.61.167',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 19:57:02','2019-01-22 19:57:02'),(1280,'commerce','3.81.140.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 20:21:37','2019-01-22 20:21:37'),(1281,'chemistry','41.191.104.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:21:52','2019-01-22 21:21:52'),(1282,'chemistry','41.191.104.124',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:28:37','2019-01-27 21:27:34'),(1283,'englishlit','54.172.206.195',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:57:00','2019-01-22 21:57:00'),(1284,'chemistry','197.211.60.92',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 02:17:56','2019-01-23 02:20:31'),(1285,'chemistry','66.249.93.42',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 04:09:58','2019-02-14 14:08:04'),(1286,'chemistry','41.191.107.155',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 10:14:34','2019-01-23 10:14:45'),(1287,'chemistry','41.191.104.86',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 12:43:27','2019-01-23 12:43:27'),(1288,'chemistry','41.191.107.198',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:01:14','2019-01-23 13:08:26'),(1289,'chemistry','41.191.104.249',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:08:39','2019-01-23 13:15:36'),(1290,'mathematics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1291,'english','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1292,'biology','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1293,'commerce','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1294,'physics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1295,'englishlit','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1296,'chemistry','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1297,'government','54.162.153.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1298,'irk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1299,'crk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1300,'geography','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1301,'civiledu','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1302,'currentaffairs','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1303,'economics','212.100.95.210',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:14:58','2019-01-24 08:14:59'),(1304,'chemistry','66.249.93.44',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:24:17','2019-02-04 14:03:36'),(1305,'english','41.191.107.227',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:51:56','2019-01-24 09:52:02'),(1306,'chemistry','41.191.107.227',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 09:32:48','2019-01-24 09:34:19'),(1307,'english','41.191.107.206',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 10:03:24','2019-04-18 16:27:25'),(1308,'english','41.217.124.194',937,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 12:30:40','2019-01-24 13:11:10'),(1309,'mathematics','41.217.124.194',363,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 13:22:56','2019-01-24 13:37:40'),(1310,'commerce','54.91.221.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:05:23','2019-01-24 14:05:23'),(1311,'english','41.191.107.138',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:21:11','2019-04-14 17:04:58'),(1312,'chemistry','41.191.107.138',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:33:41','2019-01-27 21:20:19'),(1313,'commerce','41.217.124.194',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:39:06','2019-01-24 14:39:31'),(1314,'english','41.191.104.91',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:49:01','2019-04-15 21:32:14'),(1315,'mathematics','41.191.104.91',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 15:18:28','2019-04-15 21:20:52'),(1316,'history','3.82.242.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 00:01:01','2019-01-25 00:01:01'),(1317,'englishlit','54.82.44.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:01:01','2019-01-25 04:01:01'),(1318,'chemistry','105.112.96.148',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:45:44','2019-01-25 04:45:44'),(1319,'chemistry','41.190.2.209',15,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 05:44:24','2019-09-18 16:51:41'),(1320,'chemistry','197.210.8.9',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 06:10:55','2019-01-25 08:35:26'),(1321,'history','54.161.164.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 08:01:07','2019-01-25 08:01:07'),(1322,'chemistry','197.210.60.170',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:01:12','2019-01-25 11:01:12'),(1323,'english','197.210.60.170',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:04:07','2019-01-25 11:07:03'),(1324,'chemistry','41.190.30.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:53:49','2019-01-25 11:53:49'),(1325,'biology','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:35:12','2019-01-25 14:35:38'),(1326,'englishlit','41.190.31.164',116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:41:44','2019-01-25 14:56:06'),(1327,'chemistry','197.210.52.237',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:07','2019-01-25 14:51:53'),(1328,'chemistry','197.210.52.239',162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:30','2019-01-25 14:52:22'),(1329,'chemistry','197.210.52.138',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:52:01','2019-01-25 14:52:32'),(1330,'government','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:53:59','2019-01-25 14:53:59'),(1331,'chemistry','197.210.44.60',2108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:58:41','2019-01-25 16:28:06'),(1332,'commerce','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:08:21','2019-01-25 15:08:21'),(1333,'accounting','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:09:36','2019-01-25 15:10:08'),(1334,'crk','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:11:50','2019-01-25 15:12:13'),(1335,'economics','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:16:03','2019-01-25 15:16:03'),(1336,'chemistry','185.118.165.15',126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:21:37','2019-01-25 15:27:32'),(1337,'chemistry','105.112.38.7',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:49:44','2019-01-25 20:14:22'),(1338,'mathematics','105.112.38.7',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:55:45','2019-01-25 20:02:25'),(1339,'english','105.112.38.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:12:22','2019-01-25 20:12:23'),(1340,'chemistry','105.112.98.242',1160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:23:43','2019-01-25 22:04:17'),(1341,'chemistry','197.210.62.66',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 22:14:16','2019-04-19 16:33:37'),(1342,'chemistry','197.210.226.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:16:32','2019-01-26 10:16:32'),(1343,'chemistry','197.210.52.4',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:20:35','2019-01-26 10:38:06'),(1344,'chemistry','197.210.45.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:38:39','2019-01-26 10:40:16'),(1345,'chemistry','197.210.227.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:58:13','2019-01-26 10:58:13'),(1346,'mathematics','197.210.227.236',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:08:55','2019-01-26 11:32:01'),(1347,'mathematics','197.210.227.193',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:10:35','2019-01-26 11:45:54'),(1348,'mathematics','197.210.226.194',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:17:53','2019-01-26 11:44:49'),(1349,'mathematics','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:47:35','2019-01-26 11:51:16'),(1350,'mathematics','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:48:03','2019-01-26 11:48:03'),(1351,'mathematics','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:50:09','2019-01-26 11:50:10'),(1352,'mathematics','54.161.51.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:52:23','2019-01-26 11:52:23'),(1353,'english','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:34:52','2019-01-26 12:34:53'),(1354,'english','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:39:32','2019-01-26 12:39:33'),(1355,'english','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:41:59','2019-01-26 12:47:45'),(1356,'english','197.210.8.2',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:13:52','2019-01-26 13:40:15'),(1357,'english','197.210.28.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:55:37','2019-01-26 13:58:04'),(1358,'english','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:08:24','2019-01-26 14:08:24'),(1359,'english','197.210.52.84',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:09:01','2019-01-26 14:15:02'),(1360,'english','197.210.52.208',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:10:08','2019-01-26 14:11:18'),(1361,'chemistry','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:16:42','2019-01-26 14:16:43'),(1362,'chemistry','197.210.52.208',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:20:31','2019-01-26 14:50:18'),(1363,'chemistry','197.210.52.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:45:38','2019-01-26 14:45:39'),(1364,'chemistry','197.210.47.74',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:53:11','2019-01-26 15:07:24'),(1365,'chemistry','105.112.98.2',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:41:26','2019-01-26 16:41:29'),(1366,'biology','41.203.78.47',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:56:45','2019-01-26 16:56:45'),(1367,'chemistry','105.112.98.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 09:04:09','2019-01-27 09:04:09'),(1368,'chemistry','105.112.99.102',833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:41:18','2019-01-27 19:46:51'),(1369,'biology','105.112.99.102',778,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:37','2019-01-27 19:46:51'),(1370,'physics','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1371,'economics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1372,'commerce','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:34'),(1373,'crk','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:37'),(1374,'mathematics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:44'),(1375,'english','105.112.99.102',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:46:51'),(1376,'geography','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:47:37'),(1377,'government','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:43','2019-01-27 19:47:37'),(1378,'accounting','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:45','2019-01-27 19:47:40'),(1379,'history','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:46','2019-01-27 19:43:54'),(1380,'englishlit','105.112.99.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:47:38'),(1381,'currentaffairs','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:48:50'),(1382,'civiledu','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:14:14','2019-01-27 19:47:37'),(1383,'mathematics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1384,'chemistry','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1385,'biology','105.112.98.183',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1386,'physics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1387,'english','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1388,'economics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1389,'commerce','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1390,'crk','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1391,'geography','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1392,'civiledu','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1393,'government','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1394,'englishlit','105.112.98.183',518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1395,'accounting','105.112.98.183',519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1396,'currentaffairs','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1397,'history','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:43','2019-01-27 21:21:57'),(1398,'chemistry','41.191.104.92',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:53:33','2019-01-27 20:54:45'),(1399,'biology','41.191.104.92',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:55:04','2019-01-27 20:55:04'),(1400,'chemistry','41.191.104.121',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:01:54','2019-02-06 15:11:52'),(1401,'mathematics','41.191.107.223',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:14:36','2019-04-16 11:16:36'),(1402,'mathematics','41.191.107.138',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:19:15','2019-04-13 21:33:36'),(1403,'physics','41.191.107.138',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:20:04','2019-01-27 21:23:56'),(1404,'mathematics','41.191.104.124',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:26:45','2019-01-27 21:34:02'),(1405,'physics','41.191.104.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:27:11','2019-01-27 21:27:24'),(1406,'biology','41.191.104.74',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:07:34','2019-01-27 22:12:08'),(1407,'biology','41.191.107.130',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:13:49','2019-01-27 22:13:59'),(1408,'biology','41.191.104.244',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:46:09','2019-01-27 22:46:50'),(1409,'biology','41.191.107.128',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:56:46','2019-01-27 23:56:03'),(1410,'chemistry','41.191.107.128',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:55:10','2019-01-27 23:55:51'),(1411,'economics','41.191.107.128',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:56:39','2019-01-27 23:56:41'),(1412,'geography','41.191.107.128',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:57:14','2019-01-28 15:11:27'),(1413,'biology','41.191.104.89',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:59:44'),(1414,'biology','41.191.104.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:51:19'),(1415,'biology','41.191.104.121',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:55:36','2019-01-28 00:56:31'),(1416,'chemistry','41.191.104.89',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:58:40','2019-01-28 09:07:28'),(1417,'biology','41.191.104.85',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:08:49','2019-01-28 01:15:07'),(1418,'biology','41.191.107.221',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:27:22','2019-01-28 01:29:30'),(1419,'biology','41.191.107.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:33:26','2019-01-28 01:33:26'),(1420,'biology','41.191.104.235',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:48:38','2019-01-28 01:48:38'),(1421,'mathematics','41.191.107.235',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:55:16','2019-01-28 09:02:13'),(1422,'chemistry','41.191.107.235',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:56:12','2019-01-28 08:59:29'),(1423,'mathematics','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:03:14','2019-01-28 09:03:14'),(1424,'physics','41.191.107.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:04:58','2019-01-28 09:04:58'),(1425,'mathematics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:50','2019-01-28 09:08:18'),(1426,'physics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:54','2019-01-28 09:08:18'),(1427,'geography','41.191.104.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:07:07','2019-01-28 09:08:12'),(1428,'chemistry','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:36:06','2019-01-28 10:36:06'),(1429,'english','41.191.107.141',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:49:24','2019-01-28 10:51:33'),(1430,'chemistry','46.229.168.149',23,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-28 11:21:50','2019-12-12 15:32:00'),(1431,'english','3.87.136.203',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:28:02','2019-01-28 14:24:49'),(1432,'englishlit','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:41:29','2019-01-28 11:41:29'),(1433,'mathematics','41.191.107.194',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:14','2019-01-28 12:06:41'),(1434,'chemistry','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:20','2019-01-28 12:01:32'),(1435,'physics','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:50','2019-01-28 12:03:12'),(1436,'geography','41.191.107.194',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:52:52','2019-01-28 12:03:18'),(1437,'chemistry','41.191.104.251',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:08:23','2019-01-28 12:09:42'),(1438,'physics','41.191.107.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:22:50','2019-01-28 12:22:50'),(1439,'physics','41.191.104.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:14','2019-01-28 12:29:14'),(1440,'chemistry','41.191.104.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:28','2019-01-28 12:32:08'),(1441,'mathematics','41.191.104.83',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:30:25','2019-01-28 12:34:16'),(1442,'mathematics','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:35:42','2019-01-28 12:56:25'),(1443,'geography','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:40:50','2019-01-28 12:52:24'),(1444,'chemistry','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:02','2019-01-28 13:03:30'),(1445,'physics','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:08','2019-01-28 12:53:41'),(1446,'geography','41.191.104.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:04:49','2019-01-28 13:17:51'),(1447,'mathematics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:08:42','2019-04-13 07:20:19'),(1448,'physics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:12:38','2019-01-28 13:14:17'),(1449,'chemistry','41.191.104.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:16:02','2019-01-28 13:16:02'),(1450,'geography','41.191.104.104',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:24','2019-01-28 13:30:58'),(1451,'chemistry','41.191.104.104',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:32','2019-01-28 13:28:22'),(1452,'physics','41.191.104.104',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:20:17','2019-01-28 13:22:40'),(1453,'chemistry','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:33:01','2019-01-28 13:35:54'),(1454,'physics','41.191.107.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:35:11','2019-01-28 13:40:07'),(1455,'mathematics','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:36:00','2019-01-28 13:41:19'),(1456,'mathematics','41.191.107.42',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:39','2019-01-28 13:53:09'),(1457,'chemistry','41.191.107.42',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:55','2019-02-06 14:53:26'),(1458,'geography','41.191.107.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:43:17','2019-01-28 13:43:17'),(1459,'physics','41.191.107.139',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:57:59','2019-01-28 14:02:46'),(1460,'chemistry','41.191.107.139',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:06','2019-01-28 14:04:13'),(1461,'mathematics','41.191.107.139',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:21','2019-01-28 14:04:17'),(1462,'geography','41.191.107.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:01:42','2019-01-28 14:01:42'),(1463,'mathematics','41.191.104.126',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:04:59','2019-04-13 16:07:19'),(1464,'physics','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:05:50','2019-01-28 14:06:23'),(1465,'biology','3.87.136.203',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:26:19','2019-01-28 14:28:08'),(1466,'mathematics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:18','2019-01-28 14:27:18'),(1467,'physics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:22','2019-01-28 14:27:22'),(1468,'chemistry','41.191.107.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:30:58','2019-01-28 14:30:58'),(1469,'physics','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:45','2019-01-28 14:40:48'),(1470,'chemistry','41.191.107.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:52','2019-01-28 14:40:52'),(1471,'chemistry','41.191.107.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:53:59','2019-01-28 14:53:59'),(1472,'mathematics','41.191.104.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:04','2019-01-28 15:06:48'),(1473,'physics','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:27','2019-01-28 15:00:27'),(1474,'chemistry','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:33','2019-01-28 15:00:33'),(1475,'geography','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:38','2019-01-28 15:00:38'),(1476,'mathematics','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:03:29','2019-01-28 15:08:10'),(1477,'physics','105.176.90.140',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:02','2019-01-28 15:18:49'),(1478,'chemistry','105.176.90.140',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:37','2019-01-28 15:04:37'),(1479,'geography','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:52','2019-01-28 15:08:28'),(1480,'mathematics','41.191.107.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:05:29','2019-01-28 15:08:01'),(1481,'physics','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:08:08','2019-01-28 15:08:08'),(1482,'mathematics','41.191.107.128',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:10:31','2019-01-28 15:10:39'),(1483,'physics','41.191.104.241',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:14','2019-01-28 15:28:02'),(1484,'chemistry','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:51','2019-01-28 15:27:55'),(1485,'mathematics','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:51','2019-01-28 15:28:09'),(1486,'geography','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:57','2019-01-28 15:28:35'),(1487,'geography','41.191.104.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:30:25','2019-01-28 15:32:10'),(1488,'mathematics','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:31:56','2019-01-28 15:31:56'),(1489,'physics','41.191.104.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:00','2019-01-28 15:32:07'),(1490,'chemistry','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:04','2019-01-28 15:32:04'),(1491,'physics','41.191.104.121',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:49:37','2019-02-06 14:58:19'),(1492,'geography','41.191.104.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:43','2019-01-28 15:58:43'),(1493,'geography','41.191.104.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:53','2019-01-28 15:58:53'),(1494,'chemistry','197.210.47.34',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 21:35:41','2019-01-28 21:40:22'),(1495,'chemistry','41.203.78.54',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 22:07:08','2019-07-20 14:00:13'),(1496,'chemistry','105.112.28.85',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 02:40:05','2019-01-29 02:40:42'),(1497,'chemistry','41.190.2.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 07:03:46','2019-01-29 07:03:46'),(1498,'chemistry','41.76.82.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 09:57:24','2019-01-29 09:57:24'),(1499,'english','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1500,'mathematics','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1501,'commerce','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1502,'englishlit','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1503,'crk','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1504,'geography','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1505,'insurance','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1506,'biology','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1507,'chemistry','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1508,'economics','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1509,'civiledu','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1510,'chemistry','41.203.78.51',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 13:55:15','2019-01-29 14:10:57'),(1511,'chemistry','154.120.108.55',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:17:52','2019-01-29 14:29:07'),(1512,'chemistry','154.118.21.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:37:44','2019-01-29 14:38:42'),(1513,'chemistry','197.210.28.128',997,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:55:16','2019-01-29 16:55:38'),(1514,'chemistry','197.210.53.210',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:47:02','2019-01-29 18:06:59'),(1515,'chemistry','197.210.52.103',295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:49:25','2019-01-29 18:50:59'),(1516,'chemistry','197.210.53.88',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:56:42','2019-01-29 17:56:42'),(1517,'chemistry','197.210.53.26',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:09:55','2019-01-29 18:22:46'),(1518,'chemistry','197.210.53.74',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:10:35','2019-01-29 18:10:35'),(1519,'chemistry','197.210.52.203',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:16:48','2019-02-06 16:04:53'),(1520,'chemistry','197.210.52.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:35:19','2019-01-29 18:39:12'),(1521,'chemistry','197.210.52.202',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:43:20','2019-02-06 16:09:29'),(1522,'chemistry','197.210.53.106',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:44:33','2019-01-29 18:45:54'),(1523,'chemistry','197.210.53.114',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:19','2019-04-20 15:08:50'),(1524,'chemistry','197.210.52.185',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:40','2019-01-29 18:51:44'),(1525,'chemistry','197.210.52.26',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:51:14','2019-01-29 18:51:36'),(1526,'englishlit','197.211.63.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:31:42','2019-01-29 20:31:42'),(1527,'chemistry','197.210.227.126',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:25','2019-01-29 20:32:25'),(1528,'chemistry','197.210.227.15',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:43','2019-01-29 20:32:43'),(1529,'chemistry','197.210.226.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:01','2019-01-29 20:37:21'),(1530,'chemistry','197.210.227.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:27','2019-01-29 20:36:27'),(1531,'mathematics','41.203.78.49',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:41:06','2019-01-29 20:41:06'),(1532,'crk','41.80.186.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 09:20:34','2019-01-30 09:20:34'),(1533,'biology','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:38','2019-01-30 15:50:53'),(1534,'commerce','54.211.28.234',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1535,'accounting','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1536,'crk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1537,'geography','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1538,'irk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1539,'insurance','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1540,'englishlit','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:56','2019-01-30 15:52:40'),(1541,'history','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:07','2019-01-30 15:51:07'),(1542,'government','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:09','2019-01-30 15:51:09'),(1543,'physics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1544,'economics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1545,'currentaffairs','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:40'),(1546,'english','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1547,'mathematics','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1548,'chemistry','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1549,'englishlit','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:16','2019-01-30 16:51:35'),(1550,'commerce','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:27'),(1551,'biology','54.226.7.228',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:34'),(1552,'geography','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1553,'civiledu','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1554,'currentaffairs','54.226.7.228',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1555,'history','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1556,'government','54.226.7.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1557,'english','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1558,'mathematics','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1559,'chemistry','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1560,'crk','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1561,'chemistry','41.216.173.30',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 16:01:01','2019-01-31 16:03:23'),(1562,'chemistry','45.33.136.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 23:43:59','2019-01-31 23:44:26'),(1563,'chemistry','41.203.78.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:52:42','2019-02-01 07:52:42'),(1564,'chemistry','197.210.53.198',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:55:26','2019-02-01 07:56:02'),(1565,'chemistry','197.210.53.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:57:16','2019-02-01 07:57:16'),(1566,'chemistry','45.33.136.190',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:27:53','2019-02-01 08:31:16'),(1567,'chemistry','197.211.60.139',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:43:16','2019-02-01 08:45:06'),(1568,'mathematics','197.211.60.139',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:45:55','2019-02-01 08:45:55'),(1569,'chemistry','197.210.29.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 09:32:41','2019-02-01 09:32:41'),(1570,'chemistry','105.112.98.24',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-02 22:45:13','2019-02-02 23:25:03'),(1571,'civiledu','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 20:57:22','2019-02-03 20:57:22'),(1572,'currentaffairs','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 21:10:15','2019-02-03 21:10:15'),(1573,'accounting','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1574,'chemistry','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1575,'crk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1576,'geography','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1577,'irk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1578,'insurance','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1579,'currentaffairs','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1580,'chemistry','41.66.199.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:36:31','2019-02-03 23:09:20'),(1581,'biology','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:54:09','2019-02-03 22:54:09'),(1582,'commerce','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 23:10:29','2019-02-03 23:10:29'),(1583,'geography','3.81.102.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 00:57:31','2019-02-04 00:57:31'),(1584,'mathematics','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1585,'commerce','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1586,'chemistry','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1587,'irk','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1588,'civiledu','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1589,'currentaffairs','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1590,'history','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1591,'commerce','54.162.226.75',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 23:35:46','2019-02-04 23:35:46'),(1592,'crk','54.162.82.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:35:33','2019-02-05 05:43:58'),(1593,'accounting','54.162.82.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:50:40','2019-02-05 05:50:40'),(1594,'history','54.90.106.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 07:25:12','2019-02-05 07:25:12'),(1595,'accounting','54.91.82.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 11:33:57','2019-02-05 11:33:57'),(1596,'chemistry','77.88.47.65',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-05 11:57:00','2020-03-07 02:21:05'),(1597,'geography','54.204.118.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 12:42:45','2019-02-05 12:42:45'),(1598,'chemistry','95.216.6.46',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 14:24:43','2019-02-05 14:25:02'),(1599,'geography','54.234.119.237',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 17:21:12','2019-02-05 17:21:12'),(1600,'irk','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 22:54:06','2019-02-05 22:54:06'),(1601,'chemistry','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 23:25:31','2019-02-05 23:25:31'),(1602,'accounting','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1603,'biology','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:23:05'),(1604,'physics','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1605,'chemistry','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1606,'geography','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1607,'economics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1608,'civiledu','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1609,'english','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1610,'mathematics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1611,'englishlit','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:51'),(1612,'government','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1613,'history','54.159.117.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:56','2019-02-06 01:22:56'),(1614,'physics','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:32:08'),(1615,'geography','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1616,'physics','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1617,'mathematics','41.191.104.236',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:50','2019-04-14 05:45:01'),(1618,'chemistry','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:33:26','2019-02-06 10:35:49'),(1619,'chemistry','41.191.107.136',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:04','2019-02-07 10:43:21'),(1620,'mathematics','41.191.107.136',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:11','2019-04-14 16:53:02'),(1621,'geography','41.191.107.136',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:15','2019-02-07 10:13:16'),(1622,'physics','41.191.107.136',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:40:28','2019-02-07 11:01:08'),(1623,'chemistry','41.191.107.212',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:49:30','2019-04-18 18:00:20'),(1624,'physics','41.191.107.212',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:34','2019-04-17 10:11:06'),(1625,'geography','41.191.107.212',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:44','2019-02-06 13:24:41'),(1626,'mathematics','41.191.107.212',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:49','2019-04-17 10:14:28'),(1627,'chemistry','41.191.107.52',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:54:59','2019-02-06 10:55:38'),(1628,'chemistry','41.191.104.115',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 11:10:51','2019-02-06 11:10:51'),(1629,'civiledu','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:13:06','2019-02-06 12:13:06'),(1630,'currentaffairs','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:35:08','2019-02-06 12:35:08'),(1631,'mathematics','41.191.107.220',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:39:15'),(1632,'mathematics','41.191.107.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:38:11'),(1633,'chemistry','41.191.107.220',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:02','2019-02-06 13:44:46'),(1634,'physics','41.191.107.220',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:55','2019-02-06 13:42:33'),(1635,'chemistry','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:03','2019-02-06 13:58:11'),(1636,'geography','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:46','2019-02-06 13:47:46'),(1637,'physics','41.191.104.99',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:51:59','2019-02-06 13:57:37'),(1638,'mathematics','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:56:24','2019-04-13 23:06:19'),(1639,'physics','41.191.107.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 14:43:26','2019-02-06 16:44:44'),(1640,'chemistry','54.221.129.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:09:36','2019-02-06 15:40:30'),(1641,'mathematics','41.191.104.121',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:15:51','2019-02-06 15:15:51'),(1642,'mathematics','41.191.104.217',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:29:45','2019-02-06 15:52:46'),(1643,'mathematics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1644,'biology','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1645,'physics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1646,'government','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1647,'economics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1648,'insurance','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1649,'chemistry','41.191.104.217',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:53:35','2019-02-06 15:55:08'),(1650,'chemistry','197.210.52.163',51,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:59:16','2020-04-12 16:16:23'),(1651,'chemistry','197.210.52.177',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:02:47','2019-02-06 16:09:41'),(1652,'chemistry','197.210.52.125',42,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:03:44','2019-11-29 22:14:03'),(1653,'chemistry','197.210.52.1',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:12','2019-02-06 16:04:36'),(1654,'chemistry','41.191.104.76',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:57','2019-02-06 16:04:57'),(1655,'mathematics','41.191.104.76',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:05:52','2019-04-17 07:41:52'),(1656,'chemistry','197.210.53.23',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:10:28','2020-02-04 09:59:59'),(1657,'chemistry','41.191.104.238',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:21','2019-02-06 16:23:37'),(1658,'mathematics','41.191.104.238',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:53','2019-02-06 17:51:13'),(1659,'geography','41.191.104.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:23:13','2019-02-06 16:23:13'),(1660,'physics','41.191.104.238',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:25:01','2019-02-06 17:52:29'),(1661,'mathematics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:23','2019-02-06 16:32:23'),(1662,'physics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:36','2019-02-06 16:32:36'),(1663,'chemistry','41.191.107.146',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:57:39','2019-02-06 16:57:39'),(1664,'physics','41.191.107.146',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:58:54','2019-02-06 17:00:38'),(1665,'physics','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:48','2019-02-06 17:03:48'),(1666,'geography','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:55','2019-02-06 17:03:55'),(1667,'chemistry','41.191.107.215',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:06:36','2019-03-28 16:12:49'),(1668,'mathematics','41.191.104.67',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:15:33','2019-02-06 17:20:02'),(1669,'chemistry','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:24:42','2019-02-06 17:27:26'),(1670,'physics','41.191.104.211',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:25:40','2019-02-06 17:26:06'),(1671,'mathematics','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:32','2019-04-14 07:05:25'),(1672,'geography','41.191.104.211',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:34','2019-02-06 17:27:34'),(1673,'geography','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:29:31','2019-02-07 13:38:12'),(1674,'physics','41.191.107.38',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:30:12','2019-02-07 16:06:38'),(1675,'mathematics','41.191.107.38',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:35:19','2019-04-13 08:12:17'),(1676,'geography','41.191.107.38',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:36:56','2019-02-07 16:06:34'),(1677,'mathematics','41.191.104.244',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:40:30','2019-04-14 21:51:22'),(1678,'physics','41.191.104.244',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:43:54','2019-02-06 17:46:16'),(1679,'geography','54.145.62.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 18:07:58','2019-02-06 18:07:58'),(1680,'english','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1681,'english','3.81.49.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1682,'mathematics','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1683,'physics','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1684,'commerce','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1685,'chemistry','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1686,'biology','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1687,'government','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1688,'civiledu','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1689,'irk','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1690,'currentaffairs','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1691,'biology','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:52'),(1692,'physics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1693,'government','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:35'),(1694,'geography','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1695,'economics','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1696,'irk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1697,'insurance','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1698,'mathematics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1699,'commerce','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1700,'crk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1701,'currentaffairs','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1702,'history','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:55'),(1703,'englishlit','54.159.238.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:48','2019-02-06 23:58:48'),(1704,'chemistry','129.205.112.31',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 04:25:52','2019-02-09 18:02:32'),(1705,'mathematics','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:08:57','2019-02-07 08:31:49'),(1706,'physics','41.191.107.132',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:24:48','2019-02-07 07:53:26'),(1707,'geography','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:52:40','2019-02-07 08:17:40'),(1708,'chemistry','41.191.107.132',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 08:14:41','2019-02-07 08:18:31'),(1709,'physics','41.191.107.129',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 14:01:28'),(1710,'physics','41.191.107.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 13:59:51'),(1711,'biology','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:01:37','2019-02-07 14:01:37'),(1712,'chemistry','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:03:41','2019-02-07 14:14:08'),(1713,'mathematics','41.191.107.129',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:15:41','2019-02-07 14:17:01'),(1714,'physics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:26:47','2019-02-07 14:47:40'),(1715,'chemistry','197.210.227.51',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:31:34','2019-02-07 14:40:43'),(1716,'physics','41.191.104.213',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:38:05','2019-02-07 14:59:23'),(1717,'chemistry','197.210.227.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:39:16','2019-02-07 14:39:16'),(1718,'chemistry','41.191.104.213',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:41:28','2019-02-07 15:01:58'),(1719,'chemistry','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:42:07','2019-02-07 14:42:07'),(1720,'economics','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:44:11','2019-02-07 14:44:11'),(1721,'geography','41.191.104.213',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:51:09','2019-02-07 14:51:09'),(1722,'mathematics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:53:38','2019-02-07 14:55:12'),(1723,'chemistry','41.191.107.34',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:18:05','2019-02-07 15:48:37'),(1724,'physics','41.191.107.34',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:30:55','2019-02-07 15:45:52'),(1725,'chemistry','41.191.107.38',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:54:06','2019-02-07 16:07:17'),(1726,'physics','41.191.104.81',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:07:36','2019-02-07 16:09:23'),(1727,'chemistry','41.191.104.81',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:12:44','2019-02-07 16:12:44'),(1728,'mathematics','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:46','2019-02-07 16:22:18'),(1729,'chemistry','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:54','2019-02-07 16:24:30'),(1730,'physics','41.191.107.206',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:57','2019-02-07 16:38:27'),(1731,'geography','41.191.107.206',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:59','2019-02-07 16:30:19'),(1732,'english','197.210.227.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:31:53','2019-02-07 16:31:53'),(1733,'history','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:33:37','2019-02-07 16:33:37'),(1734,'biology','41.191.107.206',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:03','2019-04-18 16:28:46'),(1735,'economics','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:39','2019-02-07 16:34:39'),(1736,'accounting','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:56','2019-02-07 16:34:56'),(1737,'english','184.73.22.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:38:25','2019-02-07 16:50:24'),(1738,'physics','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:43:12','2019-02-07 16:43:12'),(1739,'english','154.66.57.61',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:44:58','2019-02-07 16:47:26'),(1740,'accounting','41.191.107.193',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:45:10','2019-02-07 16:47:47'),(1741,'biology','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:50','2019-02-07 16:46:50'),(1742,'chemistry','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:55','2019-02-07 16:46:55'),(1743,'mathematics','41.191.107.193',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:48:25','2019-04-13 07:49:25'),(1744,'commerce','154.66.57.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:49:07','2019-02-07 16:49:08'),(1745,'mathematics','184.73.22.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:05:51','2019-02-07 17:05:51'),(1746,'englishlit','197.210.227.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:06:39','2019-02-07 17:06:57'),(1747,'mathematics','197.210.227.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:08:37','2019-02-07 17:08:37'),(1748,'mathematics','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:12:32','2019-02-07 17:12:32'),(1749,'english','197.210.227.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:13:32','2019-02-07 17:15:24'),(1750,'english','197.210.227.160',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:17:16','2019-02-07 17:17:16'),(1751,'government','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:04','2019-02-07 19:40:04'),(1752,'chemistry','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:05','2019-02-07 19:40:05'),(1753,'chemistry','41.203.78.86',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 22:56:58','2019-02-08 01:04:26'),(1754,'english','41.203.78.86',10687,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 23:11:07','2019-02-08 01:12:58'),(1755,'chemistry','41.203.72.82',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:02:21','2019-02-08 01:03:10'),(1756,'mathematics','41.203.78.86',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:13:49','2019-02-08 01:20:31'),(1757,'commerce','41.203.78.86',1400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:21:06','2019-02-08 01:25:03'),(1758,'accounting','129.205.112.31',637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 03:59:44','2019-02-10 07:56:43'),(1759,'commerce','129.205.112.31',16415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:02:10','2019-02-10 07:24:35'),(1760,'english','129.205.112.31',3880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:54:53','2019-02-09 20:30:32'),(1761,'mathematics','129.205.112.31',1581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 05:04:07','2019-02-10 08:18:03'),(1762,'economics','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:37:15','2019-02-08 09:37:15'),(1763,'currentaffairs','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:42:06','2019-02-08 09:42:06'),(1764,'commerce','41.203.78.102',5836,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 13:46:12','2019-02-08 21:42:21'),(1765,'english','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1766,'accounting','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1767,'biology','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1768,'englishlit','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1769,'government','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1770,'economics','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1771,'history','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1772,'insurance','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 16:42:58','2019-02-08 16:42:58'),(1773,'biology','54.161.98.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 17:53:20','2019-02-08 17:53:20'),(1774,'mathematics','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 20:43:14','2019-02-08 20:43:14'),(1775,'insurance','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:12:10','2019-02-08 21:12:10'),(1776,'chemistry','41.203.78.102',2128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:33:15','2019-02-08 22:12:38'),(1777,'mathematics','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:42:45','2019-02-08 21:51:29'),(1778,'english','41.203.78.102',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:43:28','2019-02-09 01:27:32'),(1779,'accounting','41.203.78.102',2720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:51:49','2019-02-08 21:56:42'),(1780,'biology','41.203.78.102',2400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:57:02','2019-02-08 22:05:16'),(1781,'physics','41.203.78.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:06:14','2019-02-08 22:07:44'),(1782,'englishlit','41.203.78.102',1880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:13:10','2019-02-08 22:20:30'),(1783,'government','41.203.78.102',2800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:21:29','2019-02-08 23:52:43'),(1784,'crk','41.203.78.102',3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:52:55','2019-02-09 00:00:48'),(1785,'chemistry','54.91.117.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:57:22','2019-02-08 23:57:22'),(1786,'geography','41.203.78.102',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:01:57','2019-02-09 00:24:16'),(1787,'economics','41.203.78.102',3720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:26:24','2019-02-09 00:34:36'),(1788,'irk','41.203.78.102',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:35:41','2019-02-09 00:37:20'),(1789,'civiledu','41.203.78.102',2240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:38:00','2019-02-09 00:44:30'),(1790,'insurance','41.203.78.102',1680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:46:06','2019-02-09 00:57:03'),(1791,'civiledu','52.55.225.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:48:42','2019-02-09 00:48:42'),(1792,'currentaffairs','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:57:53','2019-02-09 01:00:05'),(1793,'history','41.203.78.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 01:01:27','2019-02-09 01:01:41'),(1794,'government','54.197.84.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 03:29:54','2019-02-09 03:29:54'),(1795,'accounting','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 05:17:44','2019-02-09 05:17:44'),(1796,'crk','54.210.158.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 06:41:14','2019-02-09 06:41:14'),(1797,'chemistry','40.77.167.168',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 07:15:13','2020-01-13 09:41:58'),(1798,'mathematics','197.210.8.53',432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:27','2019-02-09 08:02:28'),(1799,'chemistry','197.210.8.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:53','2019-02-09 07:54:53'),(1800,'commerce','197.210.8.53',2379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:03:00','2019-02-09 09:22:09'),(1801,'mathematics','3.83.132.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:18:09','2019-02-09 08:18:09'),(1802,'biology','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:54:44','2019-02-09 08:54:44'),(1803,'chemistry','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:18:40','2019-02-09 09:18:40'),(1804,'englishlit','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:17','2019-02-09 09:19:17'),(1805,'mathematics','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:52','2019-02-09 09:19:52'),(1806,'economics','54.83.86.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 10:26:21','2019-02-09 10:26:21'),(1807,'chemistry','197.210.44.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:14:26','2019-02-09 11:15:08'),(1808,'physics','197.210.44.28',952,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:16:33','2019-02-09 12:01:21'),(1809,'commerce','197.210.227.64',78,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:22:57','2019-02-09 12:24:33'),(1810,'physics','54.167.138.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:50:33','2019-02-09 13:26:19'),(1811,'chemistry','157.55.39.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:39:52','2019-02-09 13:39:52'),(1812,'english','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:47:52','2019-02-09 13:47:52'),(1813,'government','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:53:44','2019-02-09 13:53:44'),(1814,'englishlit','54.160.227.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 14:42:34','2019-02-09 14:42:34'),(1815,'englishlit','34.207.56.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 17:36:00','2019-02-09 17:36:00'),(1816,'chemistry','46.229.168.134',104,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-02-09 18:20:56','2020-07-23 02:17:17'),(1817,'crk','54.205.112.119',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 18:24:29','2019-02-09 18:24:29'),(1818,'englishlit','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:31:53','2019-02-10 08:28:16'),(1819,'accounting','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:36:27','2019-02-09 20:36:27'),(1820,'history','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:41:04','2019-02-09 20:41:04'),(1821,'economics','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:52:59','2019-02-09 20:52:59'),(1822,'economics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 21:36:49','2019-02-09 21:36:49'),(1823,'chemistry','54.165.27.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 04:31:45','2019-02-10 04:31:45'),(1824,'geography','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:01:47','2019-02-10 08:01:47'),(1825,'physics','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:19:34','2019-02-10 08:25:15'),(1826,'history','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:37:28','2019-02-10 08:37:28'),(1827,'english','54.162.92.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 12:54:28','2019-02-10 12:54:28'),(1828,'mathematics','41.191.107.239',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:39:53','2019-02-10 14:01:17'),(1829,'physics','41.191.107.239',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:42','2019-02-10 13:48:33'),(1830,'history','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:47','2019-02-10 13:48:45'),(1831,'accounting','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:45:18','2019-02-10 13:52:35'),(1832,'mathematics','41.191.107.145',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:02:05','2019-02-11 14:40:35'),(1833,'economics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:04:14','2019-02-10 14:04:14'),(1834,'physics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:05:04','2019-02-10 14:05:04'),(1835,'geography','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:06:01','2019-02-10 14:06:01'),(1836,'government','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1837,'accounting','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1838,'physics','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1839,'crk','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1840,'civiledu','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1841,'insurance','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1842,'currentaffairs','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:28'),(1843,'history','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:30'),(1844,'english','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1845,'biology','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:25'),(1846,'chemistry','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1847,'irk','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1848,'englishlit','34.228.6.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:15','2019-02-11 02:52:15'),(1849,'chemistry','197.210.45.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 10:22:02','2019-02-11 10:22:02'),(1850,'chemistry','40.77.167.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:09:52','2019-02-11 13:09:52'),(1851,'biology','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:36:32','2019-02-11 13:36:32'),(1852,'history','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:37:35','2019-02-11 13:37:35'),(1853,'english','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1854,'accounting','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1855,'physics','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1856,'geography','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1857,'irk','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1858,'insurance','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1859,'currentaffairs','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1860,'mathematics','41.191.104.71',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:12:03','2019-02-11 14:12:03'),(1861,'mathematics','41.191.104.112',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:18:49','2019-02-11 14:18:49'),(1862,'chemistry','41.58.77.114',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:51','2019-02-11 14:28:05'),(1863,'physics','41.191.104.112',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:53','2019-02-11 14:26:11'),(1864,'history','41.191.104.112',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:23:33','2019-02-11 14:26:08'),(1865,'biology','41.58.77.114',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:24:08','2019-02-11 14:24:08'),(1866,'mathematics','41.58.77.114',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:25:00','2019-02-11 14:26:24'),(1867,'physics','41.191.104.234',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:35','2019-02-11 14:40:10'),(1868,'economics','41.191.104.234',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:52','2019-02-11 14:35:32'),(1869,'mathematics','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:41','2019-02-11 14:35:41'),(1870,'chemistry','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:47','2019-02-11 14:35:47'),(1871,'biology','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:37:04','2019-02-11 14:37:04'),(1872,'biology','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:45:01','2019-02-11 14:45:01'),(1873,'chemistry','105.112.99.29',197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:29:39','2019-02-11 16:54:32'),(1874,'physics','105.112.99.29',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:30:30','2019-02-11 16:50:11'),(1875,'biology','105.112.99.29',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:38:24','2019-02-11 16:41:30'),(1876,'mathematics','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1877,'commerce','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1878,'chemistry','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1879,'englishlit','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1880,'government','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1881,'irk','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1882,'insurance','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1883,'chemistry','40.77.167.19',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 08:00:52','2019-02-12 08:00:52'),(1884,'english','54.146.30.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:52:31','2019-02-12 09:52:31'),(1885,'chemistry','77.246.49.12',38,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:59:54','2019-02-12 10:43:38'),(1886,'chemistry','66.249.83.214',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:17:35','2019-02-15 07:42:21'),(1887,'chemistry','66.249.83.212',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:32:16','2019-02-17 16:13:54'),(1888,'geography','54.198.25.67',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 11:51:48','2019-02-12 11:51:48'),(1889,'english','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1890,'biology','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1891,'physics','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1892,'government','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1893,'irk','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 15:35:54'),(1894,'civiledu','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1895,'history','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:55:19'),(1896,'chemistry','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:13:08','2019-02-12 15:13:08'),(1897,'geography','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:27:03','2019-02-12 15:27:03'),(1898,'insurance','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:37:09','2019-02-12 15:37:09'),(1899,'currentaffairs','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:38:51','2019-02-12 15:38:51'),(1900,'accounting','54.224.187.178',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:15:56','2019-02-12 16:47:43'),(1901,'commerce','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:54:29','2019-02-12 16:54:29'),(1902,'chemistry','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:55:19','2019-02-12 16:55:19'),(1903,'english','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:56:44','2019-02-12 16:56:44'),(1904,'englishlit','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 17:05:53','2019-02-12 17:05:53'),(1905,'chemistry','77.246.53.3',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:29:38','2019-02-12 19:29:38'),(1906,'chemistry','46.229.168.132',61,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-12 19:33:18','2020-04-01 16:00:41'),(1907,'physics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:37:08','2019-02-12 19:37:08'),(1908,'mathematics','3.83.244.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 21:14:53','2019-02-12 21:14:53'),(1909,'chemistry','54.90.184.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:12:11','2019-02-12 23:12:11'),(1910,'accounting','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:50:49','2019-02-12 23:50:49'),(1911,'chemistry','82.145.222.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 02:31:59','2019-02-13 02:32:09'),(1912,'chemistry','41.220.28.0',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 03:41:16','2019-02-13 04:18:17'),(1913,'chemistry','40.77.167.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 04:07:04','2019-02-13 04:07:04'),(1914,'irk','54.226.159.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 05:17:46','2019-02-13 05:17:46'),(1915,'chemistry','77.246.53.157',1075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 06:15:44','2019-02-13 07:57:20'),(1916,'biology','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:18:12','2019-02-13 07:18:12'),(1917,'accounting','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:42:14','2019-02-13 07:42:14'),(1918,'chemistry','77.246.55.170',2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 09:57:35','2019-02-13 12:53:59'),(1919,'irk','54.234.114.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 10:48:37','2019-02-13 10:48:37'),(1920,'chemistry','77.246.49.61',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 13:40:12','2019-02-13 14:09:22'),(1921,'mathematics','77.246.49.61',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:09:22'),(1922,'mathematics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:11:21'),(1923,'chemistry','41.220.30.108',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:10','2019-02-13 14:13:10'),(1924,'physics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:17','2019-02-19 09:00:47'),(1925,'accounting','41.220.30.108',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:14:56','2019-02-13 14:17:32'),(1926,'insurance','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:41:06','2019-02-13 14:44:45'),(1927,'english','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1928,'mathematics','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1929,'accounting','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1930,'physics','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1931,'chemistry','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1932,'crk','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1933,'crk','54.211.35.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1934,'irk','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1935,'currentaffairs','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1936,'history','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1937,'mathematics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:12:14','2019-02-13 15:12:14'),(1938,'physics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:14:36','2019-02-13 15:14:37'),(1939,'chemistry','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:15:45','2019-02-13 15:15:45'),(1940,'irk','54.144.251.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:47:59','2019-02-13 15:47:59'),(1941,'physics','77.246.53.12',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:20:07','2019-02-13 16:34:41'),(1942,'mathematics','77.246.53.12',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:14','2019-02-13 16:35:19'),(1943,'chemistry','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:32','2019-02-13 16:34:32'),(1944,'accounting','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:48','2019-02-13 16:34:48'),(1945,'mathematics','77.246.53.162',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:07','2019-02-13 17:07:40'),(1946,'physics','77.246.53.162',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:43','2019-02-13 17:05:44'),(1947,'chemistry','77.246.53.162',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:21','2019-02-13 17:05:39'),(1948,'accounting','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:26','2019-02-13 16:54:33'),(1949,'commerce','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:57:16','2019-02-13 16:57:32'),(1950,'biology','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:59:47','2019-02-13 17:02:48'),(1951,'physics','54.159.21.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 18:06:23','2019-02-13 18:06:23'),(1952,'chemistry','46.229.168.150',12,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 02:03:11','2020-01-21 05:27:03'),(1953,'biology','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 02:28:08','2019-02-14 02:28:08'),(1954,'chemistry','41.86.149.34',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 07:40:21','2020-03-16 11:43:51'),(1955,'physics','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:41:02','2019-02-14 08:41:02'),(1956,'chemistry','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:45:15','2019-02-14 08:45:16'),(1957,'physics','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:45:52','2019-02-14 09:45:52'),(1958,'chemistry','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:12','2019-02-14 09:46:12'),(1959,'mathematics','77.246.49.1',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:22','2019-02-14 10:21:31'),(1960,'biology','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:31','2019-02-14 09:46:31'),(1961,'chemistry','66.249.93.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:08:04','2019-02-14 14:08:04'),(1962,'insurance','52.206.40.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:35:57','2019-02-14 14:35:57'),(1963,'irk','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:05:01','2019-02-14 16:05:01'),(1964,'mathematics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:25:27','2019-02-14 16:25:27'),(1965,'physics','107.167.107.223',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:26:57','2019-02-14 16:26:58'),(1966,'chemistry','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:28:35','2019-02-14 16:28:35'),(1967,'physics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:32:02','2019-02-14 16:32:02'),(1968,'physics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:02','2019-02-14 17:39:02'),(1969,'mathematics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:03','2019-02-14 17:39:03'),(1970,'chemistry','66.249.64.168',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:04','2019-02-15 07:38:28'),(1971,'mathematics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1972,'biology','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1973,'chemistry','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1974,'englishlit','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1975,'crk','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1976,'economics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1977,'civiledu','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1978,'mathematics','41.220.30.127',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:40:08','2019-02-14 18:40:09'),(1979,'chemistry','197.210.53.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 23:05:50','2019-02-14 23:11:24'),(1980,'chemistry','197.210.53.75',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 23:06:02','2019-10-28 09:52:49'),(1981,'physics','77.246.53.165',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:37:58','2019-02-15 02:38:49'),(1982,'physics','66.102.8.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:17','2019-02-15 02:56:50'),(1983,'physics','66.249.64.170',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:28','2019-02-15 08:55:28'),(1984,'physics','66.249.64.168',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:56:52','2019-02-16 03:08:43'),(1985,'mathematics','77.246.53.165',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:58:41','2019-02-15 02:58:41'),(1986,'chemistry','66.102.6.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 04:13:56','2019-02-15 04:13:56'),(1987,'chemistry','77.246.53.155',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:12:45','2019-02-15 05:12:46'),(1988,'physics','66.249.83.210',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:21:09','2019-02-17 08:51:10'),(1989,'chemistry','66.249.83.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:54','2019-02-15 05:37:54'),(1990,'chemistry','66.249.64.170',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:55','2019-02-15 05:40:03'),(1991,'chemistry','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:40:02','2019-02-15 05:40:02'),(1992,'chemistry','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 07:38:29','2019-02-15 07:38:29'),(1993,'physics','66.102.8.106',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:21','2019-02-16 03:07:38'),(1994,'physics','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:45','2019-02-15 08:54:45'),(1995,'physics','66.249.83.212',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:10','2019-02-16 03:29:02'),(1996,'physics','41.220.30.120',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:22','2019-02-15 08:59:22'),(1997,'history','54.166.99.0',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:39:50','2019-02-15 09:39:50'),(1998,'physics','185.26.180.219',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:40:20','2019-02-15 10:02:05'),(1999,'physics','77.246.55.130',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:34:33','2019-02-15 13:38:14'),(2000,'english','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:38:16','2019-02-15 13:38:16'),(2001,'insurance','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:22','2019-02-15 13:39:22'),(2002,'commerce','197.210.227.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:24','2019-02-15 13:39:24'),(2003,'commerce','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 14:41:28','2019-02-15 14:41:28'),(2004,'physics','66.249.83.214',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:06','2019-02-19 18:52:31'),(2005,'physics','77.246.53.177',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:34','2019-02-15 15:11:34'),(2006,'chemistry','66.249.83.198',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:13:48','2019-02-15 15:13:49'),(2007,'chemistry','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:15:21','2019-02-15 17:15:21'),(2008,'biology','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:32:07','2019-02-15 17:32:07'),(2009,'englishlit','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:50:05','2019-02-15 17:50:05'),(2010,'civiledu','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:58:30','2019-02-15 17:58:30'),(2011,'economics','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 18:01:11','2019-02-15 18:01:11'),(2012,'mathematics','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:23'),(2013,'englishlit','54.162.96.90',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:12'),(2014,'geography','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2015,'irk','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2016,'civiledu','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2017,'currentaffairs','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:25'),(2018,'history','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2019,'english','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2020,'economics','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2021,'insurance','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2022,'biology','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:18','2019-02-15 23:11:20'),(2023,'commerce','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:34:11','2019-02-16 11:34:11'),(2024,'economics','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:35:07','2019-02-16 11:35:07'),(2025,'economics','197.210.53.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:59:36','2019-02-16 11:59:36'),(2026,'economics','197.210.53.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:09:10','2019-02-16 12:09:10'),(2027,'physics','64.233.172.202',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:45:29','2019-02-16 12:45:29'),(2028,'chemistry','197.210.8.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 15:55:05','2019-02-16 15:56:43'),(2029,'chemistry','209.205.211.242',1740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:08:07','2019-02-20 09:17:37'),(2030,'biology','209.205.211.242',3303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:14:54','2019-02-19 18:49:01'),(2031,'mathematics','209.205.211.242',2635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 17:10:46','2019-02-17 21:51:53'),(2032,'english','209.205.211.242',3998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:01:15','2019-02-19 18:31:24'),(2033,'english','197.210.52.4',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:06:11','2019-02-16 18:06:11'),(2034,'physics','66.249.88.52',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:25:31','2019-02-16 18:25:32'),(2035,'physics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:27:41','2019-02-16 18:27:42'),(2036,'physics','209.205.211.242',2056,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:36:36','2019-02-19 18:57:19'),(2037,'economics','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:52:25','2019-02-16 18:52:25'),(2038,'insurance','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:53:03','2019-02-16 18:53:03'),(2039,'english','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2040,'accounting','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2041,'government','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2042,'crk','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2043,'geography','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2044,'economics','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2045,'insurance','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2046,'economics','209.205.211.242',3993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:07:13','2019-02-20 10:21:53'),(2047,'commerce','209.205.211.242',2963,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:32:01','2019-02-20 10:47:11'),(2048,'accounting','209.205.211.242',3180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:02:28','2019-02-20 10:34:51'),(2049,'government','209.205.211.242',4769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:18:37','2019-02-20 11:25:34'),(2050,'englishlit','209.205.211.242',2428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:34:54','2019-02-20 11:06:13'),(2051,'civiledu','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:45:29','2019-02-18 13:07:15'),(2052,'crk','209.205.211.242',2529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:02:00','2019-03-28 01:41:15'),(2053,'history','209.205.211.242',1491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:13:13','2019-02-20 11:54:00'),(2054,'geography','209.205.211.242',1807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:24:15','2019-02-18 13:11:51'),(2055,'irk','209.205.211.242',533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:57:46','2019-02-18 13:14:15'),(2056,'insurance','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 00:04:12','2019-02-18 13:21:54'),(2057,'chemistry','197.210.46.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 05:30:36','2019-02-17 05:30:36'),(2058,'mathematics','66.249.83.214',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-19 18:52:31'),(2059,'biology','66.249.83.212',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-17 09:09:38'),(2060,'physics','77.246.55.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:10:12','2019-02-17 09:10:33'),(2061,'mathematics','66.249.84.40',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:47','2019-02-17 10:32:48'),(2062,'mathematics','66.249.64.168',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:48','2019-02-17 10:32:48'),(2063,'mathematics','64.233.172.200',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:42','2019-02-17 10:33:42'),(2064,'mathematics','66.249.64.170',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:44','2019-02-17 10:33:44'),(2065,'mathematics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 16:14:46','2019-02-17 16:14:46'),(2066,'english','34.238.255.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 12:56:12','2019-02-18 12:56:12'),(2067,'currentaffairs','209.205.211.242',585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 13:24:51','2019-02-18 13:37:43'),(2068,'physics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:10:32','2019-02-18 17:10:32'),(2069,'mathematics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:11:34','2019-02-18 17:11:34'),(2070,'physics','77.246.53.136',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 19:24:42','2019-02-18 19:25:37'),(2071,'english','174.129.141.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 20:49:05','2019-02-18 20:49:05'),(2072,'chemistry','41.191.104.80',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 00:07:04','2019-04-18 08:45:16'),(2073,'insurance','3.82.5.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 01:58:28','2019-02-19 01:58:28'),(2074,'english','54.211.123.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 06:24:59','2019-02-19 06:24:59'),(2075,'chemistry','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:14:42','2019-02-19 10:14:42'),(2076,'englishlit','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:22:31','2019-02-19 10:22:31'),(2077,'economics','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:42:59','2019-02-19 10:42:59'),(2078,'chemistry','54.224.95.200',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 12:27:33','2019-02-19 12:27:33'),(2079,'insurance','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:12:57','2019-02-19 14:12:57'),(2080,'accounting','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:23:32','2019-02-19 14:23:32'),(2081,'civiledu','54.147.55.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:12:39','2019-02-19 18:12:39'),(2082,'physics','77.246.49.36',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:52:53','2019-02-19 18:53:54'),(2083,'chemistry','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:07','2019-02-19 18:53:10'),(2084,'biology','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:18','2019-02-19 18:53:48'),(2085,'mathematics','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:21','2019-02-19 18:53:47'),(2086,'government','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:02:12','2019-02-19 19:02:12'),(2087,'accounting','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:06:42','2019-02-19 19:06:42'),(2088,'chemistry','197.211.57.22',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 20:15:50','2019-02-19 20:22:45'),(2089,'economics','54.161.218.154',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:34','2019-02-19 21:58:35'),(2090,'accounting','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2091,'physics','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2092,'chemistry','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2093,'englishlit','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2094,'geography','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2095,'history','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2096,'english','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 00:48:47','2019-02-20 00:48:48'),(2097,'physics','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:00:30','2019-02-20 01:00:30'),(2098,'geography','66.249.70.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:02:46','2019-02-20 01:02:47'),(2099,'history','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:04:05','2019-02-20 01:04:05'),(2100,'economics','54.81.179.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:18:54','2019-02-20 01:18:54'),(2101,'chemistry','66.249.83.222',26,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2019-11-22 10:45:51'),(2102,'biology','66.249.83.192',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2020-03-04 20:11:48'),(2103,'physics','66.249.83.223',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:05','2019-02-22 08:52:17'),(2104,'physics','77.246.53.28',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:41','2019-02-20 05:28:41'),(2105,'chemistry','207.46.13.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:55:58','2019-02-20 05:55:58'),(2106,'insurance','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:05','2019-02-20 13:44:06'),(2107,'mathematics','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:23','2019-02-20 13:44:24'),(2108,'physics','54.204.105.177',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 15:14:53','2019-02-20 15:14:53'),(2109,'english','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:05:47','2019-02-20 18:05:47'),(2110,'biology','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:13:36','2019-02-20 18:13:37'),(2111,'physics','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2112,'chemistry','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2113,'crk','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2114,'geography','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2115,'economics','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2116,'insurance','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2117,'history','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2118,'currentaffairs','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2119,'mathematics','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:37','2019-02-20 18:36:37'),(2120,'biology','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:43','2019-02-20 18:36:43'),(2121,'english','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2122,'accounting','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2123,'government','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2124,'englishlit','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:49','2019-02-20 18:36:49'),(2125,'englishlit','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:29:11','2019-02-20 19:29:11'),(2126,'chemistry','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:54:43','2019-02-20 19:54:43'),(2127,'biology','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:55','2019-02-20 20:16:55'),(2128,'geography','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:59','2019-02-20 20:16:59'),(2129,'chemistry','105.112.26.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:32:19','2019-02-20 20:32:19'),(2130,'chemistry','54.83.94.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 23:36:55','2019-02-20 23:36:55'),(2131,'mathematics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2132,'mathematics','54.167.183.249',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2133,'commerce','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2134,'accounting','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2135,'physics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2136,'geography','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2137,'economics','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2138,'insurance','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2139,'english','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2140,'chemistry','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2141,'irk','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2142,'history','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2143,'chemistry','46.229.168.130',18,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2020-03-24 16:18:58'),(2144,'chemistry','46.229.168.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2019-02-21 14:32:12'),(2145,'geography','54.221.38.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 02:38:12','2019-02-22 02:38:12'),(2146,'mathematics','54.89.229.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 03:48:22','2019-02-22 03:48:22'),(2147,'chemistry','129.205.112.63',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:18:55','2019-02-22 06:19:17'),(2148,'mathematics','129.205.112.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:19:48','2019-02-22 06:19:48'),(2149,'mathematics','66.249.83.222',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 08:52:08','2019-02-27 03:45:37'),(2150,'economics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 09:26:06','2019-02-22 09:26:07'),(2151,'mathematics','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2152,'mathematics','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2153,'physics','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2154,'biology','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2155,'englishlit','34.201.133.169',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2156,'chemistry','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2157,'government','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2158,'crk','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2159,'geography','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2160,'civiledu','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2161,'civiledu','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2162,'history','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2163,'history','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2164,'economics','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2165,'chemistry','129.56.89.91',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 14:58:18','2019-02-22 14:58:54'),(2166,'mathematics','129.56.89.91',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 15:07:31','2019-02-22 15:07:31'),(2167,'economics','54.161.215.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 00:00:12','2019-02-23 00:00:12'),(2168,'history','3.93.218.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 04:23:21','2019-02-23 04:23:21'),(2169,'accounting','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2170,'biology','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2171,'chemistry','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2172,'government','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2173,'irk','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2174,'insurance','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2175,'currentaffairs','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2176,'chemistry','192.173.38.121',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 23:14:30','2019-02-23 23:14:42'),(2177,'english','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2178,'accounting','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2179,'government','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2180,'crk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2181,'geography','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2182,'irk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2183,'civiledu','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2184,'chemistry','160.120.230.179',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 23:58:16','2019-02-24 23:58:16'),(2185,'chemistry','197.210.45.125',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 10:22:09','2019-02-25 10:23:43'),(2186,'biology','197.210.28.208',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 12:45:32','2019-02-25 12:45:33'),(2187,'chemistry','207.46.13.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 09:41:52','2019-02-26 09:41:52'),(2188,'chemistry','129.205.113.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 15:05:12','2019-02-26 15:05:12'),(2189,'english','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2190,'english','3.87.158.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2191,'mathematics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2192,'commerce','3.87.158.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2193,'biology','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2194,'physics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2195,'geography','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2196,'government','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2197,'economics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2198,'history','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2199,'crk','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2200,'currentaffairs','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2201,'english','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2202,'mathematics','54.226.211.137',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:44'),(2203,'commerce','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2204,'chemistry','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2205,'government','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2206,'history','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2207,'accounting','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2208,'economics','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:30'),(2209,'irk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2210,'insurance','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2211,'chemistry','41.191.107.201',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:30:53','2019-02-26 19:30:53'),(2212,'chemistry','41.191.107.145',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:32:08','2019-02-26 19:33:01'),(2213,'physics','54.243.5.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 22:16:47','2019-02-26 22:16:47'),(2214,'accounting','54.166.233.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 23:08:29','2019-02-26 23:08:29'),(2215,'physics','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:36','2020-02-09 06:54:16'),(2216,'biology','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:43','2020-02-15 20:12:30'),(2217,'chemistry','66.249.83.223',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:44','2020-02-05 04:26:16'),(2218,'physics','77.246.53.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 03:45:58','2019-02-27 03:45:58'),(2219,'chemistry','66.249.93.52',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 11:18:17','2019-06-22 21:48:18'),(2220,'chemistry','41.191.104.245',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 12:41:52','2019-02-27 12:41:52'),(2221,'chemistry','66.249.93.48',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 12:41:34','2019-08-02 12:51:50'),(2222,'insurance','54.209.60.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 13:15:55','2019-02-28 13:15:55'),(2223,'mathematics','52.73.168.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 15:40:02','2019-02-28 15:40:02'),(2224,'chemistry','41.190.2.218',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:47:11','2019-03-01 08:49:37'),(2225,'mathematics','41.190.2.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:50:33','2019-03-01 08:50:34'),(2226,'english','41.190.2.218',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:52:26','2019-03-01 09:52:41'),(2227,'chemistry','66.249.66.158',82,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:22:29','2019-05-21 08:24:45'),(2228,'english','41.190.3.242',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:52:56','2019-03-01 10:52:56'),(2229,'physics','41.190.3.242',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:59:56','2019-03-01 10:59:56'),(2230,'english','41.190.2.156',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:08:07','2019-03-01 11:10:46'),(2231,'englishlit','41.190.2.156',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:11:29','2019-03-01 11:15:39'),(2232,'englishlit','41.190.31.166',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:22:14','2019-03-01 11:22:15'),(2233,'mathematics','41.242.89.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 14:24:39','2019-03-01 14:24:39'),(2234,'chemistry','54.85.62.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:23','2019-03-01 18:59:23'),(2235,'commerce','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2236,'physics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2237,'englishlit','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2238,'government','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2239,'crk','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2240,'economics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2241,'currentaffairs','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2242,'chemistry','88.6.244.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:08:40','2019-03-01 19:08:40'),(2243,'englishlit','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:21'),(2244,'english','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2245,'commerce','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:46'),(2246,'biology','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2247,'geography','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2248,'economics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2249,'irk','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2250,'history','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2251,'chemistry','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:58:25'),(2252,'government','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2253,'currentaffairs','107.20.60.54',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2254,'mathematics','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:05','2019-03-01 19:57:41'),(2255,'accounting','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2256,'physics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2257,'crk','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2258,'civiledu','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2259,'insurance','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2260,'chemistry','197.211.57.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 00:15:49','2019-03-02 00:15:49'),(2261,'mathematics','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:00:36','2019-03-02 04:00:36'),(2262,'geography','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:11:33','2019-03-02 04:11:33'),(2263,'insurance','3.89.38.207',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 06:24:49','2019-03-02 06:30:51'),(2264,'mathematics','54.80.44.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:08'),(2265,'biology','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:05'),(2266,'physics','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:39'),(2267,'chemistry','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:00'),(2268,'englishlit','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:52'),(2269,'economics','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2270,'civiledu','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2271,'commerce','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2272,'crk','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2273,'insurance','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2274,'currentaffairs','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:55'),(2275,'biology','105.112.44.175',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 15:21:52','2019-03-02 15:26:09'),(2276,'chemistry','105.112.21.63',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 16:03:37','2019-03-02 16:03:53'),(2277,'englishlit','169.159.66.161',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 17:05:42','2019-03-02 17:05:42'),(2278,'geography','34.229.78.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 22:36:51','2019-03-02 22:36:51'),(2279,'chemistry','105.112.23.37',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-03 21:25:44','2019-03-03 21:26:34'),(2280,'english','105.112.45.107',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 06:08:59','2019-03-04 06:09:55'),(2281,'chemistry','154.66.15.65',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 09:03:04','2019-03-04 09:03:04'),(2282,'chemistry','40.77.167.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 10:53:20','2019-05-08 11:01:31'),(2283,'chemistry','66.249.64.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 11:52:26','2019-03-04 11:52:26'),(2284,'chemistry','157.55.39.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 17:38:04','2019-03-04 17:38:04'),(2285,'english','129.56.36.43',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 20:56:28','2019-03-04 20:56:29'),(2286,'chemistry','66.249.93.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 22:00:50','2019-03-04 22:00:50'),(2287,'history','3.83.116.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 08:18:13','2019-03-05 08:18:13'),(2288,'english','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2289,'mathematics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2290,'biology','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2291,'irk','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2292,'insurance','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2293,'currentaffairs','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2294,'history','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2295,'commerce','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2296,'accounting','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2297,'economics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2298,'civiledu','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2299,'chemistry','129.205.112.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 05:43:39','2019-03-06 05:43:39'),(2300,'english','105.112.41.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 06:01:30','2019-03-06 06:01:30'),(2301,'chemistry','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:53:58','2019-03-07 07:53:58'),(2302,'english','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:03','2019-03-07 07:54:03'),(2303,'currentaffairs','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:05','2019-03-07 07:54:05'),(2304,'englishlit','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:11','2019-03-07 07:54:11'),(2305,'mathematics','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:13','2019-03-07 07:54:13'),(2306,'english','54.146.17.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 10:10:28','2019-03-07 10:10:28'),(2307,'chemistry','41.203.78.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 18:01:15','2019-03-07 18:01:40'),(2308,'mathematics','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:29:12','2019-03-08 00:29:12'),(2309,'accounting','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:43:38','2019-03-08 00:43:39'),(2310,'irk','129.205.112.111',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:47:07','2019-03-08 00:47:07'),(2311,'commerce','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:57:56','2019-03-08 00:57:56'),(2312,'mathematics','105.112.23.187',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 02:10:15','2019-03-08 02:10:16'),(2313,'chemistry','182.156.84.42',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 07:34:03','2019-03-08 07:34:38'),(2314,'english','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:32','2019-03-08 21:33:32'),(2315,'mathematics','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:51','2019-03-08 21:33:51'),(2316,'chemistry','66.249.66.128',66,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-03-08 22:28:29','2020-08-15 00:35:57'),(2317,'commerce','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2318,'accounting','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2319,'englishlit','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2320,'government','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2321,'crk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2322,'irk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2323,'civiledu','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2324,'biology','105.112.41.40',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 11:20:50','2019-03-10 11:20:50'),(2325,'english','66.249.66.159',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-10 18:44:59','2019-12-20 19:13:10'),(2326,'currentaffairs','66.249.66.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:01:44','2019-03-10 19:01:44'),(2327,'mathematics','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:07:00','2019-03-10 19:07:00'),(2328,'biology','66.249.66.159',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:11:15','2019-07-20 09:55:14'),(2329,'chemistry','197.242.96.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:22:23','2019-03-10 22:22:23'),(2330,'commerce','197.211.32.243',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:37:02','2019-03-10 22:37:05'),(2331,'english','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:35'),(2332,'commerce','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2333,'biology','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2334,'chemistry','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2335,'geography','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:27'),(2336,'currentaffairs','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:32'),(2337,'history','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:43'),(2338,'englishlit','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:37','2019-03-10 23:37:40'),(2339,'mathematics','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:47'),(2340,'physics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2341,'economics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2342,'civiledu','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2343,'english','105.112.106.77',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:59:59','2019-03-11 00:33:51'),(2344,'mathematics','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:03','2019-03-11 00:13:40'),(2345,'civiledu','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:29','2019-03-11 00:10:45'),(2346,'chemistry','41.216.168.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 10:36:04','2019-03-11 10:36:31'),(2347,'biology','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:11:03','2019-03-11 12:11:04'),(2348,'currentaffairs','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:16:12','2019-03-11 12:16:13'),(2349,'mathematics','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:21:12','2019-03-11 12:21:13'),(2350,'chemistry','197.210.62.63',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:26:12','2019-03-11 12:26:12'),(2351,'chemistry','197.210.54.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:24','2019-03-12 04:11:25'),(2352,'chemistry','197.210.54.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:37','2019-03-12 04:11:38'),(2353,'chemistry','207.46.13.222',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 23:05:23','2019-03-12 23:05:23'),(2354,'chemistry','105.112.16.104',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:30:57','2019-03-13 08:32:49'),(2355,'mathematics','105.112.16.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:33:15','2019-03-13 08:33:15'),(2356,'chemistry','157.55.39.236',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-14 04:31:32','2020-05-06 01:55:10'),(2357,'chemistry','129.18.151.222',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-14 17:26:09','2019-03-14 17:27:29'),(2358,'mathematics','18.207.245.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2359,'mathematics','18.207.245.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2360,'biology','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2361,'commerce','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2362,'physics','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2363,'chemistry','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2364,'economics','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2365,'irk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2366,'government','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2367,'history','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2368,'crk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2369,'physics','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:25','2019-03-16 12:35:39'),(2370,'mathematics','129.205.113.120',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:34','2019-03-16 12:33:03'),(2371,'commerce','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2372,'accounting','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2373,'chemistry','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2374,'englishlit','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2375,'civiledu','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2376,'insurance','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2377,'history','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2378,'english','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 12:33:00','2019-03-16 12:33:31'),(2379,'mathematics','105.178.112.15',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 13:18:33','2019-03-16 14:33:21'),(2380,'englishlit','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:40','2019-03-16 15:14:43'),(2381,'commerce','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:45','2019-03-16 15:15:22'),(2382,'history','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:47','2019-03-16 15:14:59'),(2383,'chemistry','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:49','2019-03-16 15:14:54'),(2384,'accounting','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:52','2019-03-16 15:15:17'),(2385,'civiledu','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:57','2019-03-16 15:15:01'),(2386,'insurance','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:15:19','2019-03-16 15:15:25'),(2387,'chemistry','40.77.167.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 18:24:33','2019-03-16 18:24:33'),(2388,'commerce','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2389,'accounting','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2390,'biology','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2391,'chemistry','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2392,'englishlit','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2393,'irk','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2394,'history','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2395,'mathematics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:53'),(2396,'accounting','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 08:48:07'),(2397,'biology','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:03:03'),(2398,'physics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:47'),(2399,'englishlit','100.24.30.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:02'),(2400,'currentaffairs','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:45'),(2401,'history','100.24.30.47',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:06'),(2402,'english','100.24.30.47',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:57:07','2019-03-17 09:11:58'),(2403,'economics','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:00:11'),(2404,'irk','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2405,'civiledu','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2406,'commerce','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2407,'crk','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2408,'geography','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2409,'english','3.93.187.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:32:15','2019-03-17 11:32:15'),(2410,'chemistry','37.9.87.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:48:48','2019-03-17 11:48:48'),(2411,'chemistry','94.130.237.95',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-18 23:20:28','2020-03-04 10:30:43'),(2412,'chemistry','46.229.168.133',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-19 07:43:34','2020-04-15 11:01:00'),(2413,'english','105.112.104.202',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 15:27:18','2019-03-19 15:27:19'),(2414,'chemistry','40.77.167.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 17:56:39','2019-03-19 17:56:39'),(2415,'chemistry','66.102.6.20',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 20:29:21','2019-03-19 20:29:22'),(2416,'chemistry','84.224.213.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 14:12:39','2019-03-20 14:12:39'),(2417,'english','105.112.104.10',340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:17:23','2019-03-20 20:12:29'),(2418,'irk','105.112.104.10',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:54:32','2019-03-20 19:54:32'),(2419,'accounting','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:07','2019-03-21 02:02:08'),(2420,'chemistry','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2421,'government','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2422,'geography','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2423,'irk','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2424,'currentaffairs','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2425,'history','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2426,'commerce','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2427,'biology','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2428,'chemistry','185.161.72.105',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 13:47:45','2019-03-21 13:47:45'),(2429,'english','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2430,'commerce','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2431,'physics','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2432,'government','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2433,'irk','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2434,'insurance','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2435,'currentaffairs','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2436,'physics','66.249.64.178',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-22 04:05:38','2019-09-25 11:24:23'),(2437,'chemistry','82.145.222.11',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 08:45:03','2019-03-22 08:53:13'),(2438,'crk','52.91.165.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 09:38:12','2019-03-22 09:38:12'),(2439,'economics','54.158.54.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 11:28:41','2019-03-22 11:28:41'),(2440,'history','54.90.213.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 12:47:11','2019-03-22 12:47:11'),(2441,'english','66.249.64.176',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:40:29','2019-04-12 08:26:44'),(2442,'commerce','66.249.64.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:50:23','2019-03-22 13:50:23'),(2443,'civiledu','66.249.64.178',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:55:48','2019-03-22 13:55:48'),(2444,'mathematics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2445,'chemistry','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2446,'crk','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2447,'geography','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2448,'economics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2449,'insurance','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2450,'history','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2451,'commerce','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2452,'physics','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2453,'englishlit','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:42'),(2454,'crk','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:00:30'),(2455,'economics','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2456,'irk','34.229.89.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2457,'history','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:43'),(2458,'english','34.229.89.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2459,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2460,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2461,'chemistry','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2462,'geography','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2463,'accounting','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2464,'civiledu','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2465,'insurance','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:42'),(2466,'currentaffairs','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:56'),(2467,'biology','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:37','2019-03-22 17:32:37'),(2468,'government','34.229.89.118',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:40','2019-03-22 17:32:45'),(2469,'mathematics','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:44','2019-03-22 17:32:44'),(2470,'english','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:18','2019-03-22 17:33:18'),(2471,'mathematics','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:19','2019-03-22 17:33:19'),(2472,'chemistry','41.191.107.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:21:08','2019-03-23 13:21:08'),(2473,'chemistry','41.191.107.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:44:44','2019-03-23 13:44:44'),(2474,'chemistry','129.205.112.163',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:17:58','2019-03-23 22:17:58'),(2475,'economics','129.205.112.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:18:49','2019-03-23 22:19:03'),(2476,'mathematics','197.210.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:44:13','2019-03-24 10:44:13'),(2477,'chemistry','197.210.226.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:46:33','2019-03-24 10:46:34'),(2478,'chemistry','197.211.53.242',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 10:42:54','2019-03-25 10:44:52'),(2479,'chemistry','41.203.117.95',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:03','2019-03-25 13:54:15'),(2480,'physics','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:28','2019-03-25 13:47:28'),(2481,'crk','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:13','2019-03-25 13:48:13'),(2482,'mathematics','41.203.117.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:31','2019-03-25 13:48:38'),(2483,'chemistry','41.203.117.96',143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:49:27','2019-03-25 14:31:34'),(2484,'accounting','41.203.117.96',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:30:45','2019-03-25 14:30:45'),(2485,'english','41.203.117.96',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:31:48','2019-03-25 14:31:48'),(2486,'currentaffairs','41.203.117.96',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:34:10','2019-03-28 05:33:36'),(2487,'english','105.112.46.123',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-26 13:20:41','2019-03-26 13:20:41'),(2488,'chemistry','46.229.168.153',58,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 15:28:52','2020-04-02 19:27:21'),(2489,'chemistry','46.229.168.140',46,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-03-26 21:40:59','2020-07-19 20:47:32'),(2490,'englishlit','41.80.214.85',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 06:56:24','2019-03-27 06:56:24'),(2491,'chemistry','73.59.41.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 21:49:59','2019-03-27 21:49:59'),(2492,'chemistry','41.203.72.196',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 08:11:19','2019-03-28 12:35:17'),(2493,'chemistry','40.77.167.104',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 15:19:42','2019-03-28 15:19:42'),(2494,'mathematics','129.205.112.28',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:06:58','2019-03-29 19:07:07'),(2495,'physics','129.205.112.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:07:30','2019-03-29 19:07:30'),(2496,'economics','3.80.51.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:44:22','2019-03-29 19:44:22'),(2497,'government','18.234.162.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 21:01:37','2019-03-29 21:01:37'),(2498,'chemistry','46.229.168.161',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-29 21:28:49','2019-12-18 04:07:27'),(2499,'irk','3.87.11.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 00:18:36','2019-03-30 00:18:36'),(2500,'geography','54.197.32.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 03:33:46','2019-03-30 03:33:46'),(2501,'biology','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:08:31','2019-03-30 08:08:31'),(2502,'insurance','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:26:32','2019-03-30 08:26:32'),(2503,'chemistry','3.84.72.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 02:49:20','2019-03-31 02:49:20'),(2504,'chemistry','34.204.94.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 04:43:23','2019-03-31 04:43:23'),(2505,'english','3.81.184.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 10:44:44','2019-03-31 10:44:44'),(2506,'chemistry','105.112.23.125',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:00:42','2019-03-31 13:15:36'),(2507,'english','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:09:11','2019-03-31 13:09:11'),(2508,'mathematics','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:11:16','2019-03-31 13:11:16'),(2509,'chemistry','197.211.47.194',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:03:32','2019-04-01 09:06:11'),(2510,'chemistry','41.76.196.129',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:06:31','2019-04-01 09:06:31'),(2511,'commerce','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2512,'biology','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2513,'government','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2514,'crk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2515,'irk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2516,'civiledu','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2517,'currentaffairs','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2518,'english','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:22','2019-04-02 02:07:22'),(2519,'biology','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:23','2019-04-02 02:07:27'),(2520,'commerce','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2521,'physics','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2522,'chemistry','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2523,'geography','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2524,'irk','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2525,'history','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2526,'government','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:28','2019-04-02 02:07:28'),(2527,'mathematics','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:41','2019-04-02 02:07:46'),(2528,'accounting','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2529,'englishlit','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2530,'currentaffairs','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:49'),(2531,'biology','3.86.140.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 04:02:20','2019-04-02 04:02:20'),(2532,'englishlit','3.94.89.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 06:08:13','2019-04-02 06:08:13'),(2533,'chemistry','41.184.180.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 08:54:01','2019-04-02 08:54:10'),(2534,'accounting','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:03:12','2019-04-02 10:03:12'),(2535,'government','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:26:32','2019-04-02 10:26:32'),(2536,'chemistry','207.46.13.126',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-02 13:11:18','2019-08-14 07:10:32'),(2537,'biology','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:17','2019-04-03 08:40:36'),(2538,'chemistry','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:29','2019-04-03 08:40:19'),(2539,'mathematics','105.112.44.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:41:16','2019-04-03 08:41:16'),(2540,'chemistry','209.97.150.141',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 09:48:38','2019-04-03 09:50:08'),(2541,'english','105.112.32.51',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:33','2019-04-03 11:02:48'),(2542,'biology','105.112.32.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:37','2019-04-03 11:02:37'),(2543,'chemistry','41.190.2.238',1555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:28:32','2019-04-03 11:47:36'),(2544,'mathematics','41.190.2.238',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:30:49','2019-04-03 11:30:49'),(2545,'physics','41.190.2.238',526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:47:52','2019-04-03 12:42:05'),(2546,'physics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:13:30','2019-04-03 15:13:31'),(2547,'chemistry','41.190.30.103',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:35:55','2019-04-03 15:36:14'),(2548,'mathematics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:39:13','2019-04-03 15:39:14'),(2549,'accounting','41.190.30.103',136,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:45:47','2019-04-03 15:46:17'),(2550,'economics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:49:22','2019-04-03 15:49:22'),(2551,'crk','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:51:56','2019-04-03 15:51:57'),(2552,'biology','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:54:17','2019-04-03 15:54:17'),(2553,'commerce','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:55:40','2019-04-03 15:55:40'),(2554,'government','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:58:11','2019-04-03 15:58:12'),(2555,'geography','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:00:47','2019-04-03 16:00:47'),(2556,'civiledu','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:02:39','2019-04-03 16:02:39'),(2557,'englishlit','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:05:21','2019-04-03 16:05:22'),(2558,'insurance','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:08:37','2019-04-03 16:08:38'),(2559,'currentaffairs','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:11:38','2019-04-03 16:11:38'),(2560,'history','41.190.30.103',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:14:03','2019-04-03 16:18:17'),(2561,'english','41.190.30.103',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:18:32','2019-04-03 16:20:28'),(2562,'government','41.190.2.134',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:33:07','2019-04-04 09:35:25'),(2563,'geography','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:38:24','2019-04-04 09:38:25'),(2564,'civiledu','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:39:50','2019-04-04 09:39:51'),(2565,'commerce','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:41:37','2019-04-04 09:41:37'),(2566,'crk','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:54:15','2019-04-04 09:54:16'),(2567,'economics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:57:56','2019-04-04 09:57:56'),(2568,'accounting','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:01:07','2019-04-04 10:01:07'),(2569,'mathematics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:06:55','2019-04-04 10:06:55'),(2570,'physics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:12:17','2019-04-04 10:12:17'),(2571,'history','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:21:45','2019-04-04 10:21:45'),(2572,'englishlit','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:24:08','2019-04-04 10:24:08'),(2573,'english','41.190.30.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:13:41','2019-04-04 13:13:42'),(2574,'mathematics','41.190.3.233',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:54:16','2019-04-04 13:54:16'),(2575,'chemistry','41.190.3.233',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:55:19','2019-04-04 13:55:19'),(2576,'chemistry','185.22.187.7',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 15:25:03','2019-04-04 15:25:20'),(2577,'chemistry','37.9.87.166',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-05 14:29:44','2019-10-25 17:45:28'),(2578,'irk','54.196.110.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 15:52:32','2019-04-05 15:52:32'),(2579,'mathematics','197.210.44.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:32','2019-04-05 16:49:32'),(2580,'chemistry','197.210.44.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:34','2019-04-05 16:49:34'),(2581,'chemistry','197.210.44.111',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:50:28','2019-04-05 16:51:41'),(2582,'chemistry','197.210.47.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:54:08','2019-04-05 16:54:09'),(2583,'chemistry','52.90.61.82',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:21:23','2019-04-05 18:36:20'),(2584,'currentaffairs','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:23:14','2019-04-05 18:23:14'),(2585,'crk','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:36:17','2019-04-05 18:36:17'),(2586,'civiledu','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:02','2019-04-05 18:37:02'),(2587,'english','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:32','2019-04-05 18:37:32'),(2588,'chemistry','157.55.39.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:59:25','2019-07-19 10:24:33'),(2589,'physics','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:17','2019-04-05 19:08:17'),(2590,'biology','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:21','2019-04-05 19:08:21'),(2591,'currentaffairs','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:29:36','2019-04-05 20:29:36'),(2592,'insurance','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:35:29','2019-04-05 20:35:29'),(2593,'physics','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:38:52','2019-04-05 21:38:52'),(2594,'irk','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:43:07','2019-04-05 21:43:07'),(2595,'chemistry','54.91.42.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:01','2019-04-05 21:54:36'),(2596,'commerce','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:13','2019-04-05 21:45:13'),(2597,'civiledu','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:50:08','2019-04-05 21:50:08'),(2598,'history','35.172.115.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 01:23:16','2019-04-06 01:23:16'),(2599,'currentaffairs','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:01','2019-04-06 03:46:01'),(2600,'crk','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:30','2019-04-06 03:46:30'),(2601,'englishlit','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 04:05:47','2019-04-06 04:05:47'),(2602,'accounting','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:26:27','2019-04-06 07:26:27'),(2603,'physics','3.85.62.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:19','2019-04-06 07:42:57'),(2604,'civiledu','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:26','2019-04-06 07:36:26'),(2605,'mathematics','197.210.61.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 14:29:44','2019-04-06 14:29:45'),(2606,'chemistry','207.46.13.167',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-06 18:40:36','2019-10-27 04:49:17'),(2607,'commerce','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2608,'accounting','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2609,'biology','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2610,'economics','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2611,'irk','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2612,'insurance','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2613,'currentaffairs','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2614,'english','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:24:22'),(2615,'mathematics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:02'),(2616,'biology','3.90.165.250',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:28'),(2617,'chemistry','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:47'),(2618,'government','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:16'),(2619,'geography','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:37'),(2620,'economics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:15'),(2621,'chemistry','141.0.13.241',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:16:18','2019-04-07 11:17:09'),(2622,'chemistry','105.112.104.108',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:17:50','2019-04-07 11:53:35'),(2623,'chemistry','82.145.222.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:22:54','2019-04-07 11:22:54'),(2624,'mathematics','105.112.104.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:46:52','2019-04-07 11:46:52'),(2625,'biology','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:15:42','2019-04-07 12:15:42'),(2626,'accounting','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:17:42','2019-04-07 12:17:42'),(2627,'chemistry','105.112.104.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:26:42','2019-04-07 13:27:24'),(2628,'biology','105.112.104.18',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:27:54','2019-04-07 13:28:33'),(2629,'mathematics','105.112.104.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:29:59','2019-04-07 13:29:59'),(2630,'chemistry','185.26.180.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:00:35','2019-04-07 16:00:35'),(2631,'chemistry','105.112.106.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:02:56','2019-04-07 16:02:56'),(2632,'chemistry','105.112.43.80',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 17:41:13','2019-04-07 17:41:38'),(2633,'chemistry','105.112.104.114',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:43:25','2019-04-08 04:55:15'),(2634,'mathematics','105.112.104.114',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:51:11','2019-04-08 04:51:12'),(2635,'chemistry','105.112.34.168',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 05:14:41','2019-04-08 05:14:55'),(2636,'chemistry','105.112.104.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 07:59:31','2019-04-08 07:59:31'),(2637,'chemistry','41.205.240.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:19:15','2019-04-09 00:19:15'),(2638,'economics','3.86.54.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:39:42','2019-04-09 00:39:42'),(2639,'commerce','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:29:18'),(2640,'accounting','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2641,'physics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2642,'crk','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2643,'economics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:23:09'),(2644,'insurance','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:44'),(2645,'history','3.88.201.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:56'),(2646,'mathematics','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:44:33','2019-04-09 09:44:33'),(2647,'accounting','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:54:57','2019-04-09 09:54:57'),(2648,'accounting','3.87.215.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 12:06:38','2019-04-09 12:06:38'),(2649,'physics','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:22','2019-04-09 17:06:22'),(2650,'economics','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:23','2019-04-09 17:05:23'),(2651,'accounting','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:47','2019-04-09 17:05:47'),(2652,'crk','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:57','2019-04-09 17:06:07'),(2653,'chemistry','207.46.13.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 02:00:09','2019-04-10 02:00:09'),(2654,'irk','54.173.242.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:23:34','2019-04-10 07:23:40'),(2655,'commerce','54.173.242.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:48:23','2019-04-10 07:48:23'),(2656,'government','54.147.61.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 09:44:06','2019-04-10 09:44:06'),(2657,'geography','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2658,'government','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2659,'economics','3.93.241.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 12:17:07','2019-04-10 12:17:07'),(2660,'irk','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:56','2019-04-10 14:28:56'),(2661,'history','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:57','2019-04-10 14:28:57'),(2662,'irk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:31','2019-04-10 15:59:53'),(2663,'accounting','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:33','2019-04-10 16:03:21'),(2664,'economics','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:47','2019-04-10 16:02:08'),(2665,'currentaffairs','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:51','2019-04-10 16:01:26'),(2666,'insurance','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:10','2019-04-10 16:01:37'),(2667,'biology','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:18','2019-04-10 16:02:37'),(2668,'commerce','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:48','2019-04-10 16:02:17'),(2669,'civiledu','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:49','2019-04-10 16:02:48'),(2670,'crk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:56','2019-04-10 16:02:27'),(2671,'government','3.80.78.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:02:58','2019-04-10 16:02:58'),(2672,'chemistry','207.46.13.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:32:08','2019-04-10 17:32:08'),(2673,'chemistry','66.249.69.48',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:41:29','2019-04-10 17:41:29'),(2674,'insurance','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:38:05','2019-04-10 18:38:05'),(2675,'civiledu','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:44:01','2019-04-10 18:44:01'),(2676,'irk','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:58:11','2019-04-10 18:58:11'),(2677,'government','3.87.45.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 20:21:49','2019-04-10 20:21:49'),(2678,'government','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:40','2019-04-10 22:50:40'),(2679,'geography','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:42','2019-04-10 22:50:42'),(2680,'english','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2681,'chemistry','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2682,'englishlit','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2683,'crk','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2684,'economics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:46'),(2685,'irk','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2686,'insurance','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2687,'biology','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:15','2019-04-11 00:10:18'),(2688,'mathematics','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:20','2019-04-11 00:11:23'),(2689,'government','54.86.96.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:30','2019-04-11 00:10:30'),(2690,'physics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:33','2019-04-11 00:11:18'),(2691,'accounting','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2692,'geography','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2693,'civiledu','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2694,'economics','3.93.17.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 02:50:27','2019-04-11 02:50:27'),(2695,'chemistry','197.253.24.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 10:49:51','2019-04-11 10:49:51'),(2696,'chemistry','157.55.39.202',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-11 12:13:39','2019-08-25 13:52:51'),(2697,'insurance','54.88.86.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 17:31:52','2019-04-11 17:31:52'),(2698,'chemistry','121.201.98.53',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 20:36:45','2019-04-11 20:36:50'),(2699,'english','41.191.107.216',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 06:44:42','2019-04-14 21:10:37'),(2700,'mathematics','41.191.104.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:09:38','2019-04-12 07:09:38'),(2701,'mathematics','41.191.107.41',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:45:52','2019-04-16 10:48:23'),(2702,'mathematics','41.191.107.131',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:54:27','2019-04-12 07:55:42'),(2703,'mathematics','41.191.104.115',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:01:58','2019-04-12 08:16:36'),(2704,'mathematics','41.191.107.49',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:17:28','2019-04-13 06:52:57'),(2705,'mathematics','41.191.104.102',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:25:53','2019-04-12 08:25:53'),(2706,'mathematics','66.249.64.180',125,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:28:03','2019-09-25 10:59:54'),(2707,'accounting','66.249.64.178',100,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:46:02','2019-09-30 03:38:01'),(2708,'chemistry','207.46.13.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:56:53','2019-04-12 08:56:53'),(2709,'mathematics','41.191.107.34',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:03:02','2019-04-13 23:22:24'),(2710,'english','41.191.107.34',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:06:00','2019-04-13 23:48:54'),(2711,'english','105.112.104.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 14:42:37','2019-04-12 14:42:37'),(2712,'chemistry','46.229.168.163',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 16:31:11','2020-04-13 20:58:16'),(2713,'mathematics','41.191.107.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:36:57','2019-04-13 06:40:11'),(2714,'mathematics','41.191.107.151',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:42:48','2019-04-15 12:15:35'),(2715,'english','41.191.107.49',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:53:45','2019-04-13 06:53:45'),(2716,'mathematics','41.191.107.229',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:15:13','2019-04-13 07:17:41'),(2717,'english','41.191.104.98',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:23:28','2019-04-13 07:26:33'),(2718,'mathematics','41.191.104.123',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:28:03','2019-04-13 07:33:06'),(2719,'english','41.191.107.56',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:34:59','2019-04-13 07:41:26'),(2720,'mathematics','41.191.107.56',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:35:12','2019-04-13 07:36:14'),(2721,'english','41.191.107.38',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:01:35','2019-04-15 22:19:39'),(2722,'mathematics','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:14:24','2019-04-13 08:22:39'),(2723,'mathematics','41.191.107.200',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:13:40','2019-04-13 15:16:42'),(2724,'english','41.191.104.245',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:19:40','2019-04-13 15:21:22'),(2725,'mathematics','41.191.104.245',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:20:48','2019-04-13 15:36:18'),(2726,'english','41.191.104.126',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:41:45','2019-04-13 16:13:10'),(2727,'biology','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:10:57','2019-04-13 16:10:57'),(2728,'mathematics','41.191.107.202',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:15:56','2019-04-15 09:45:36'),(2729,'english','41.191.107.202',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:18:30','2019-04-18 12:32:41'),(2730,'mathematics','41.191.107.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:27:24','2019-04-13 16:30:57'),(2731,'english','41.191.107.192',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:32:20','2019-04-14 16:42:26'),(2732,'english','41.191.107.207',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:35:14','2019-04-13 16:35:15'),(2733,'english','41.191.107.57',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:38:16','2019-04-14 18:25:42'),(2734,'biology','41.191.107.57',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:42:04','2019-04-13 16:42:04'),(2735,'english','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:06:49','2019-04-13 17:06:49'),(2736,'history','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:14:30','2019-04-13 17:14:30'),(2737,'english','41.191.107.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:03:33','2019-04-13 20:03:33'),(2738,'mathematics','41.191.104.69',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:53:34','2019-04-13 20:53:34'),(2739,'chemistry','68.38.183.43',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:59:58','2019-04-13 20:59:58'),(2740,'english','41.191.104.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:20:44','2019-04-17 07:51:45'),(2741,'mathematics','41.191.104.66',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:24:15','2019-04-14 05:46:29'),(2742,'english','41.191.107.150',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:03:19','2019-04-14 22:45:16'),(2743,'english','41.191.107.152',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:11:07','2019-04-13 22:21:17'),(2744,'mathematics','41.191.107.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:17:02','2019-04-13 22:17:02'),(2745,'english','41.191.107.200',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:23:24','2019-04-13 22:26:39'),(2746,'english','41.191.104.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:39:29','2019-04-13 22:41:41'),(2747,'english','41.191.107.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:51:32','2019-04-13 22:51:32'),(2748,'mathematics','41.191.107.222',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:54:57','2019-04-18 15:45:59'),(2749,'english','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:00:50','2019-04-13 23:00:50'),(2750,'english','41.191.107.137',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:32:04','2019-04-13 23:35:00'),(2751,'englishlit','18.232.74.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:13','2019-04-13 23:36:13'),(2752,'biology','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:44','2019-04-13 23:36:44'),(2753,'english','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:40:56','2019-04-13 23:40:56'),(2754,'mathematics','41.191.107.37',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:58:26','2019-04-14 00:21:39'),(2755,'biology','41.191.107.37',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:01:19','2019-04-14 00:01:19'),(2756,'english','41.191.107.37',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:09:50','2019-04-14 00:17:04'),(2757,'chemistry','157.55.39.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 04:27:16','2019-04-14 04:27:16'),(2758,'mathematics','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:15:55','2019-04-15 21:56:33'),(2759,'mathematics','41.191.104.105',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:19:56','2019-04-16 13:49:06'),(2760,'english','41.191.104.105',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:23:15','2019-04-16 14:41:34'),(2761,'english','41.191.104.247',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:34:00','2019-04-14 21:59:12'),(2762,'mathematics','41.191.107.39',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:52:06','2019-04-14 06:52:06'),(2763,'english','41.191.107.39',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:53:36','2019-04-16 11:08:43'),(2764,'mathematics','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:59:07','2019-04-14 06:59:07'),(2765,'english','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:01:04','2019-04-14 07:01:04'),(2766,'english','41.191.104.211',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:07:58','2019-04-17 08:04:27'),(2767,'english','41.191.104.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:15:46','2019-04-14 07:19:13'),(2768,'english','41.191.104.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:30:14','2019-04-14 07:32:46'),(2769,'chemistry','37.9.87.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 09:45:40','2019-04-14 09:45:40'),(2770,'irk','52.90.216.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 10:20:51','2019-04-14 10:20:51'),(2771,'biology','3.81.103.16',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 11:31:56','2019-04-19 04:55:11'),(2772,'accounting','34.204.107.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:03:29','2019-04-14 13:03:29'),(2773,'biology','41.191.107.44',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:11','2019-04-14 13:49:11'),(2774,'mathematics','41.191.107.44',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:49','2019-04-14 13:50:03'),(2775,'mathematics','41.191.104.250',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:35','2019-04-18 08:49:17'),(2776,'biology','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:42','2019-04-14 13:53:42'),(2777,'chemistry','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:47','2019-04-14 13:53:47'),(2778,'englishlit','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:18:28','2019-04-14 16:18:28'),(2779,'geography','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:22:19','2019-04-14 16:22:19'),(2780,'english','41.191.104.212',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:35:03','2019-04-17 05:50:48'),(2781,'english','41.191.107.136',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:55:31','2019-04-14 16:55:31'),(2782,'geography','54.152.49.211',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:59:08','2019-04-14 16:59:51'),(2783,'english','41.191.104.71',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:06:18','2019-04-14 17:13:26'),(2784,'english','41.191.104.116',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:16:25','2019-04-17 08:38:00'),(2785,'mathematics','41.191.104.116',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:25:32','2019-04-14 22:10:15'),(2786,'english','41.191.104.119',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:30:02','2019-04-14 17:44:00'),(2787,'english','41.191.107.55',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:47:44','2019-04-14 17:51:39'),(2788,'english','41.191.104.108',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:55:26','2019-04-14 18:02:51'),(2789,'english','41.191.107.205',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:07:34','2019-04-14 18:17:06'),(2790,'mathematics','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:30:52','2019-04-16 10:27:56'),(2791,'english','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:36:07','2019-04-16 10:29:42'),(2792,'english','41.191.104.240',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:37:18','2019-04-17 08:43:35'),(2793,'biology','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:48:01','2019-04-14 18:48:01'),(2794,'english','41.191.107.219',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:52:14','2019-04-14 18:52:15'),(2795,'english','41.191.107.129',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:56:38','2019-04-14 19:01:32'),(2796,'currentaffairs','3.90.232.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:06','2019-04-14 19:07:06'),(2797,'english','41.191.107.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:18','2019-04-14 19:09:59'),(2798,'english','41.191.104.227',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:14:06','2019-04-14 19:15:42'),(2799,'english','41.191.104.253',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:24:38','2019-04-14 19:24:38'),(2800,'english','41.191.104.112',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:46:42','2019-04-14 19:49:06'),(2801,'english','41.191.104.125',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:52:06','2019-04-14 19:52:07'),(2802,'english','41.191.104.252',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:13:43','2019-04-14 21:20:04'),(2803,'english','41.191.104.87',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:36:40','2019-04-14 21:43:10'),(2804,'english','41.191.107.237',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:45:45','2019-04-18 12:38:45'),(2805,'english','41.191.104.244',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:52:54','2019-04-14 21:58:31'),(2806,'chemistry','41.191.104.247',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:47','2019-04-14 21:59:47'),(2807,'biology','41.191.104.247',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:57','2019-04-14 22:02:53'),(2808,'biology','41.191.104.116',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:07:01','2019-04-14 22:10:51'),(2809,'currentaffairs','54.83.92.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:19:54','2019-04-14 22:19:54'),(2810,'english','41.191.107.43',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:31:31','2019-04-14 22:37:38'),(2811,'biology','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:38:27','2019-04-14 22:38:27'),(2812,'english','41.191.104.236',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:47:43','2019-04-14 22:51:24'),(2813,'english','41.191.107.215',86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:57:31','2019-04-21 07:04:12'),(2814,'english','41.191.104.122',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 23:14:59','2019-04-14 23:16:16'),(2815,'currentaffairs','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 04:56:40','2019-04-15 04:56:40'),(2816,'biology','41.191.104.236',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:06:52','2019-04-15 05:06:52'),(2817,'biology','41.191.107.143',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:09:27','2019-04-15 05:09:27'),(2818,'english','41.191.107.143',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:10:01','2019-04-17 21:35:39'),(2819,'chemistry','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:25:39','2019-04-15 05:25:39'),(2820,'chemistry','197.210.45.192',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:57:49','2019-04-15 05:58:34'),(2821,'english','41.191.107.151',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:44:16','2019-04-15 12:15:57'),(2822,'mathematics','41.191.104.230',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:47:22','2019-04-15 06:47:22'),(2823,'chemistry','100.24.41.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:39:29','2019-04-15 08:39:29'),(2824,'economics','100.24.41.153',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:41:00','2019-04-15 08:46:51'),(2825,'mathematics','41.191.107.45',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:19:04','2019-04-15 09:19:04'),(2826,'english','41.191.107.45',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:21:49','2019-04-15 09:23:48'),(2827,'physics','41.191.107.202',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:44:31','2019-04-15 09:44:31'),(2828,'accounting','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:45','2019-04-15 10:30:45'),(2829,'insurance','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:59','2019-04-15 10:30:59'),(2830,'accounting','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:29','2019-04-15 12:13:29'),(2831,'biology','54.146.247.244',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:34','2019-04-15 12:16:32'),(2832,'biology','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:17:48','2019-04-15 12:17:48'),(2833,'government','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:19:13','2019-04-15 12:19:13'),(2834,'mathematics','41.191.104.246',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:58:00','2019-04-15 12:58:00'),(2835,'english','41.191.104.246',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 13:05:40','2019-04-15 13:27:26'),(2836,'english','41.191.107.235',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:15:42','2019-04-15 14:15:42'),(2837,'english','41.191.107.149',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:19:44','2019-04-15 14:20:56'),(2838,'english','41.191.104.248',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:29:00','2019-04-15 14:31:19'),(2839,'english','41.191.107.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:32:49','2019-04-19 06:55:21'),(2840,'english','41.191.104.235',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:42:02','2019-04-17 08:31:05'),(2841,'mathematics','41.191.104.235',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:44:03','2019-04-15 14:44:48'),(2842,'english','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:39:05','2019-04-15 21:39:05'),(2843,'mathematics','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:41:15','2019-04-15 21:41:15'),(2844,'english','41.191.104.83',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:47:14','2019-04-15 21:48:53'),(2845,'english','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:51:15','2019-04-15 21:53:42'),(2846,'mathematics','41.191.107.201',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:59:07','2019-04-15 21:59:07'),(2847,'english','41.191.107.201',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:01:58','2019-04-15 22:03:34'),(2848,'mathematics','41.191.104.80',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:08:37','2019-04-18 08:45:25'),(2849,'english','41.191.104.80',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:11:48','2019-04-15 22:11:48'),(2850,'mathematics','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:24:37','2019-04-15 22:24:37'),(2851,'english','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:26:42','2019-04-15 22:26:42'),(2852,'mathematics','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2853,'commerce','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2854,'biology','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2855,'physics','34.207.128.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2856,'economics','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2857,'irk','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2858,'civiledu','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2859,'accounting','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2860,'chemistry','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:37:13'),(2861,'currentaffairs','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2862,'english','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2863,'government','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2864,'crk','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2865,'biology','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2866,'mathematics','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2867,'english','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2868,'chemistry','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2869,'government','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2870,'crk','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2871,'economics','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2872,'englishlit','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2873,'geography','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2874,'irk','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2875,'civiledu','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2876,'insurance','3.91.220.96',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2877,'insurance','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2878,'history','3.91.220.96',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2879,'history','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2880,'mathematics','54.224.201.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:37:58','2019-04-16 03:10:18'),(2881,'english','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2882,'accounting','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2883,'englishlit','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2884,'government','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2885,'crk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2886,'currentaffairs','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:59:59'),(2887,'commerce','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2888,'geography','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2889,'economics','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2890,'irk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2891,'civiledu','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2892,'history','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2893,'biology','54.224.201.145',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 03:10:11','2019-04-16 03:10:17'),(2894,'mathematics','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:12:18','2019-04-16 09:12:18'),(2895,'biology','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:29:02','2019-04-16 09:29:02'),(2896,'english','41.191.104.232',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:42:38','2019-04-16 09:48:20'),(2897,'english','41.191.107.41',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:49:42','2019-04-16 10:49:42'),(2898,'english','41.191.104.94',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:52:36','2019-04-16 11:05:20'),(2899,'mathematics','41.191.104.94',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:01:04','2019-04-16 13:37:18'),(2900,'english','41.191.107.223',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:14:00','2019-04-16 11:14:00'),(2901,'english','41.191.104.243',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:01:15','2019-04-16 13:01:15'),(2902,'english','41.191.104.113',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:04:04','2019-04-22 16:45:32'),(2903,'chemistry','157.55.39.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:39:34','2019-04-16 14:39:34'),(2904,'irk','54.226.182.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:47:43','2019-04-16 14:47:43'),(2905,'english','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:32:59'),(2906,'mathematics','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:46'),(2907,'accounting','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:50'),(2908,'biology','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:08'),(2909,'chemistry','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:33'),(2910,'currentaffairs','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:17'),(2911,'history','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:26'),(2912,'english','41.191.107.232',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-16 22:12:50','2020-01-17 15:50:46'),(2913,'mathematics','41.191.107.48',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:08:33','2019-04-17 05:08:33'),(2914,'english','41.191.107.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:11:56','2019-04-17 05:21:50'),(2915,'english','41.191.104.209',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:29:28','2019-04-17 05:35:08'),(2916,'english','41.191.104.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:38:16','2019-04-17 05:43:44'),(2917,'english','41.191.104.101',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:55:22','2019-04-17 05:57:06'),(2918,'english','41.191.104.215',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:08:35','2019-04-17 08:14:14'),(2919,'english','41.191.104.229',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:15:48','2019-04-17 08:15:48'),(2920,'english','41.191.107.157',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:54:44','2019-04-17 09:04:13'),(2921,'english','41.191.104.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:09:49','2019-04-17 09:14:17'),(2922,'english','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:34'),(2923,'mathematics','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:47'),(2924,'accounting','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2925,'englishlit','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:17'),(2926,'crk','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2927,'civiledu','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2928,'history','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:43'),(2929,'english','41.191.107.158',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:17:03','2019-04-17 09:21:36'),(2930,'english','41.191.104.79',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:43:16','2019-04-17 09:52:06'),(2931,'economics','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:54:34','2019-04-17 09:54:34'),(2932,'english','41.191.107.212',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:58:06','2019-04-18 18:02:13'),(2933,'biology','41.191.107.212',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:26','2019-04-17 10:10:02'),(2934,'chemistry','41.242.60.178',3655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:43','2019-04-18 16:24:22'),(2935,'mathematics','41.242.60.178',4368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:06:02','2019-04-18 16:14:42'),(2936,'history','41.191.107.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:11:59','2019-04-17 10:17:23'),(2937,'geography','41.242.60.178',4586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:46:59','2019-04-18 15:58:23'),(2938,'biology','41.242.60.178',3792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:47:33','2019-04-18 16:20:34'),(2939,'english','41.191.104.97',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 14:41:16','2019-04-17 14:41:16'),(2940,'chemistry','105.112.120.90',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:08','2019-04-17 19:01:28'),(2941,'crk','105.112.120.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:50','2019-04-17 18:54:50'),(2942,'chemistry','107.167.107.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:06:47','2019-04-18 08:06:48'),(2943,'english','41.242.60.178',10980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:10:26','2019-04-18 15:55:34'),(2944,'mathematics','105.112.22.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:05:20','2019-04-18 11:05:20'),(2945,'crk','41.242.60.178',5752,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:17:29','2019-04-18 15:57:03'),(2946,'chemistry','207.46.13.94',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-18 11:50:50','2019-12-16 22:19:20'),(2947,'chemistry','207.46.13.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:28','2019-04-18 11:52:29'),(2948,'chemistry','207.46.13.91',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:51','2019-04-18 11:52:52'),(2949,'chemistry','207.46.13.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:53:29','2019-04-18 11:53:29'),(2950,'english','104.133.10.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 12:22:48','2019-04-18 12:22:49'),(2951,'economics','41.242.60.178',4544,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:20','2019-04-18 15:59:44'),(2952,'irk','41.242.60.178',3510,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:42','2019-04-18 16:01:01'),(2953,'civiledu','41.242.60.178',4680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:03','2019-04-18 16:02:40'),(2954,'currentaffairs','41.242.60.178',4120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:25','2019-04-18 16:29:06'),(2955,'history','41.242.60.178',4000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:46','2019-04-18 16:13:14'),(2956,'commerce','41.242.60.178',4160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:30','2019-04-18 16:16:35'),(2957,'accounting','41.242.60.178',3955,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:52','2019-04-18 16:18:32'),(2958,'physics','41.242.60.178',3529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:35:37','2019-04-18 16:22:15'),(2959,'englishlit','41.242.60.178',3287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:20','2019-04-18 16:26:08'),(2960,'government','41.242.60.178',2998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:42','2019-04-18 16:27:48'),(2961,'english','41.191.104.254',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:11:36','2019-04-18 18:05:09'),(2962,'english','41.191.104.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:14:50','2019-04-18 15:14:50'),(2963,'english','41.191.107.222',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:36:08','2019-04-18 15:37:19'),(2964,'english','41.191.107.203',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:47:57','2019-04-28 08:22:11'),(2965,'mathematics','41.191.107.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:08:54','2019-04-18 16:08:54'),(2966,'english','41.191.107.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:11:13','2019-04-18 16:11:13'),(2967,'english','18.205.17.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:14:02','2019-04-18 17:14:02'),(2968,'crk','105.112.120.55',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:31:40','2019-04-18 17:32:05'),(2969,'english','41.191.104.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:37:57','2019-04-18 17:39:42'),(2970,'history','3.87.15.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 20:46:27','2019-04-18 20:46:27'),(2971,'chemistry','54.36.150.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 00:33:38','2019-04-19 00:33:38'),(2972,'mathematics','41.191.104.212',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:14:26','2019-04-19 03:14:26'),(2973,'biology','41.191.104.123',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:26:07','2019-04-19 03:26:39'),(2974,'currentaffairs','50.17.23.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:47:16','2019-04-19 03:47:16'),(2975,'economics','54.211.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 08:17:33','2019-04-19 08:17:33'),(2976,'chemistry','105.112.53.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:25:47','2019-04-19 11:25:47'),(2977,'english','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:28','2019-04-19 11:43:28'),(2978,'mathematics','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:34','2019-04-19 11:43:35'),(2979,'chemistry','129.56.87.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:45:39','2019-04-19 11:45:39'),(2980,'english','150.70.168.140',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:52:20','2019-04-19 11:52:20'),(2981,'chemistry','45.56.148.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:08:00','2019-04-19 12:08:00'),(2982,'chemistry','197.210.29.247',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:11:16','2019-04-19 12:11:16'),(2983,'chemistry','41.203.78.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:30:23','2019-04-19 12:31:44'),(2984,'chemistry','54.36.150.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 15:16:27','2019-04-19 15:16:27'),(2985,'chemistry','197.210.226.150',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:13:39','2019-04-19 17:13:39'),(2986,'chemistry','197.210.227.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:14:17','2019-04-19 17:14:17'),(2987,'chemistry','141.0.12.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 19:46:58','2019-04-19 19:46:58'),(2988,'chemistry','105.112.37.27',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:20:05','2019-04-19 21:26:36'),(2989,'physics','105.112.37.27',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:27:16','2019-04-19 21:28:59'),(2990,'chemistry','141.0.13.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:52:32','2019-04-19 21:52:32'),(2991,'chemistry','129.205.112.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:54:09','2019-04-19 21:54:09'),(2992,'chemistry','54.36.148.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 22:05:06','2019-04-19 22:05:06'),(2993,'accounting','3.81.231.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 03:16:50','2019-04-20 03:16:50'),(2994,'chemistry','197.210.53.127',62,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:17:30','2020-05-25 11:23:46'),(2995,'chemistry','46.229.168.145',7,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-04-20 06:50:25','2020-07-19 19:33:37'),(2996,'physics','3.84.223.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 06:58:19','2019-04-20 06:58:19'),(2997,'chemistry','129.205.112.93',82,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 07:41:38','2019-08-22 14:35:12'),(2998,'chemistry','54.36.149.78',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 10:51:52','2019-04-20 10:51:52'),(2999,'chemistry','197.210.45.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 11:27:41','2019-04-20 11:27:41'),(3000,'chemistry','141.0.13.88',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 12:34:07','2019-09-06 19:28:17'),(3001,'chemistry','197.149.95.94',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 14:34:54','2019-04-20 14:35:18'),(3002,'chemistry','197.210.52.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:06:20','2019-04-20 15:06:53'),(3003,'chemistry','197.210.53.251',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:07:19','2019-04-20 15:08:04'),(3004,'chemistry','105.112.68.65',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 18:16:36','2019-04-20 18:17:01'),(3005,'chemistry','213.205.240.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 20:44:50','2019-04-20 20:44:50'),(3006,'biology','66.249.69.154',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 01:47:39','2019-04-21 01:47:40'),(3007,'mathematics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:24','2019-04-21 02:39:48'),(3008,'commerce','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3009,'accounting','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3010,'physics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3011,'chemistry','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3012,'government','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3013,'geography','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:49'),(3014,'irk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3015,'currentaffairs','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:39','2019-04-21 02:39:41'),(3016,'biology','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:48','2019-04-21 02:39:48'),(3017,'crk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3018,'economics','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3019,'english','54.162.77.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:51','2019-04-21 02:39:51'),(3020,'chemistry','207.46.13.23',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 06:08:10','2019-04-21 06:08:10'),(3021,'chemistry','40.77.167.30',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 07:33:49','2019-04-21 07:33:49'),(3022,'chemistry','197.210.52.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:52:14','2019-04-21 20:54:39'),(3023,'mathematics','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:06','2019-04-21 20:54:06'),(3024,'chemistry','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:30','2019-04-21 20:54:30'),(3025,'chemistry','3.95.160.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:01:30','2019-04-21 21:01:30'),(3026,'mathematics','197.210.52.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:08:15','2019-04-21 21:08:15'),(3027,'geography','18.212.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 22:48:55','2019-04-21 22:48:55'),(3028,'english','3.90.10.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 00:18:21','2019-04-22 00:18:21'),(3029,'mathematics','41.191.104.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:45:03','2019-04-22 16:45:03'),(3030,'biology','41.191.104.113',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:47:55','2019-04-22 16:47:55'),(3031,'chemistry','54.36.149.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 18:08:13','2019-04-22 18:08:13'),(3032,'economics','3.91.230.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 21:54:59','2019-04-22 21:54:59'),(3033,'english','3.92.201.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 00:59:05','2019-04-23 00:59:05'),(3034,'biology','66.249.66.158',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 01:15:09','2019-07-28 01:21:20'),(3035,'mathematics','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:10','2019-04-23 03:28:10'),(3036,'civiledu','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:12','2019-04-23 03:28:12'),(3037,'physics','18.212.208.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:29:49','2019-04-23 04:14:14'),(3038,'commerce','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:49:07','2019-04-23 03:49:07'),(3039,'crk','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:57:30','2019-04-23 03:57:30'),(3040,'history','54.159.47.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 21:59:22','2019-04-23 21:59:22'),(3041,'irk','52.204.101.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 03:42:30','2019-04-24 03:42:30'),(3042,'chemistry','207.46.13.180',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:12','2019-04-24 08:03:12'),(3043,'chemistry','207.46.13.159',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:17','2019-04-24 08:03:17'),(3044,'chemistry','207.46.13.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:22','2019-04-24 08:03:22'),(3045,'chemistry','207.46.13.87',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:28','2019-08-04 15:43:48'),(3046,'english','66.249.66.158',87,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-25 18:26:25','2020-01-23 20:32:43'),(3047,'chemistry','1.127.110.152',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 00:54:05','2019-04-26 00:54:20'),(3048,'chemistry','40.77.167.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 03:53:28','2019-04-26 03:53:28'),(3049,'currentaffairs','3.90.189.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 05:24:35','2019-04-26 05:24:35'),(3050,'chemistry','197.210.44.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 10:16:42','2019-04-26 10:16:42'),(3051,'chemistry','1.127.106.232',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:04:42','2019-04-26 12:04:42'),(3052,'physics','1.127.106.232',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:40:22','2019-04-26 12:47:18'),(3053,'chemistry','46.229.168.138',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-26 13:52:16','2020-02-26 17:26:37'),(3054,'mathematics','1.127.109.88',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:09:51','2019-04-27 00:22:30'),(3055,'commerce','1.127.109.88',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:23:12','2019-04-27 00:24:06'),(3056,'biology','1.127.109.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:47:44','2019-04-27 00:47:44'),(3057,'chemistry','40.77.167.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:58:09','2019-04-27 00:58:09'),(3058,'physics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:19'),(3059,'english','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:06'),(3060,'government','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3061,'accounting','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3062,'biology','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3063,'crk','3.89.242.31',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3064,'chemistry','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3065,'geography','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:14'),(3066,'englishlit','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3067,'economics','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3068,'irk','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3069,'currentaffairs','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3070,'history','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3071,'mathematics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:22','2019-04-27 01:11:29'),(3072,'commerce','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:31','2019-04-27 01:12:19'),(3073,'biology','100.25.216.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 02:25:13','2019-04-27 02:25:13'),(3074,'crk','3.82.139.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 06:35:55','2019-04-27 06:35:55'),(3075,'chemistry','46.229.168.154',17,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-27 07:27:19','2020-03-26 03:24:26'),(3076,'commerce','52.91.249.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 08:35:06','2019-04-27 08:35:06'),(3077,'currentaffairs','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 09:50:55','2019-04-27 09:50:55'),(3078,'chemistry','154.118.65.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:30','2019-04-27 10:57:30'),(3079,'commerce','34.228.140.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:38','2019-04-27 10:57:38'),(3080,'biology','1.127.106.17',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:45:45','2019-04-27 12:46:43'),(3081,'mathematics','1.127.106.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:47:05','2019-04-27 12:48:52'),(3082,'englishlit','52.23.198.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 13:44:10','2019-04-27 13:44:10'),(3083,'chemistry','66.249.73.80',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 21:38:40','2019-04-27 21:38:40'),(3084,'mathematics','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3085,'english','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3086,'accounting','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3087,'physics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3088,'chemistry','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3089,'biology','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3090,'government','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3091,'economics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3092,'civiledu','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3093,'insurance','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:12'),(3094,'chemistry','41.203.78.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 08:55:23','2019-04-28 08:55:37'),(3095,'chemistry','41.190.2.64',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:52:36','2019-04-28 11:56:48'),(3096,'chemistry','41.190.3.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:56:16','2019-04-28 11:56:16'),(3097,'chemistry','157.55.39.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 21:48:24','2019-04-28 21:48:24'),(3098,'chemistry','40.77.167.71',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-29 06:23:21','2019-11-07 16:42:12'),(3099,'chemistry','41.190.2.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:39:52','2019-04-29 10:39:52'),(3100,'biology','41.191.104.87',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:40:48','2019-04-29 10:40:48'),(3101,'insurance','52.204.170.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 21:28:49','2019-04-29 21:28:49'),(3102,'crk','3.85.56.1',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 22:14:35','2019-04-29 22:14:35'),(3103,'accounting','3.85.173.186',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 23:37:13','2019-04-29 23:37:13'),(3104,'chemistry','157.55.39.12',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 07:21:41','2019-06-12 00:41:53'),(3105,'commerce','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3106,'biology','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3107,'physics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3108,'government','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3109,'irk','34.224.60.217',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:24:47'),(3110,'currentaffairs','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3111,'history','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3112,'english','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3113,'crk','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3114,'economics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3115,'civiledu','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3116,'insurance','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3117,'geography','34.224.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:33:31','2019-04-30 09:33:31'),(3118,'chemistry','46.229.168.151',51,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-30 09:38:26','2019-12-01 18:07:27'),(3119,'chemistry','154.68.194.212',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 16:36:27','2019-04-30 16:37:47'),(3120,'chemistry','157.55.39.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 04:27:55','2019-05-01 04:27:55'),(3121,'chemistry','54.36.148.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 05:05:50','2019-05-01 05:05:50'),(3122,'biology','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3123,'physics','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:50'),(3124,'englishlit','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3125,'government','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3126,'civiledu','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3127,'currentaffairs','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3128,'history','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3129,'mathematics','54.226.59.135',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:23','2019-05-01 07:01:57'),(3130,'english','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:54'),(3131,'commerce','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:46'),(3132,'accounting','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3133,'irk','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3134,'geography','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:42','2019-05-01 07:01:56'),(3135,'insurance','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:58:08','2019-05-01 06:58:08'),(3136,'chemistry','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 07:01:56','2019-05-01 07:01:56'),(3137,'chemistry','197.210.45.72',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:45:40','2019-05-01 10:59:40'),(3138,'mathematics','197.210.45.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:53:54','2019-05-01 10:55:42'),(3139,'english','197.210.45.72',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:55:54','2019-05-01 10:57:36'),(3140,'biology','41.191.104.237',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 14:18:27','2019-05-01 14:18:27'),(3141,'chemistry','197.210.54.37',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:20','2019-05-02 10:53:48'),(3142,'chemistry','197.210.54.223',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:32','2019-05-02 10:47:10'),(3143,'chemistry','197.210.55.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 10:14:45','2019-05-02 10:50:02'),(3144,'chemistry','197.210.226.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:20:04','2019-05-02 11:20:04'),(3145,'chemistry','197.210.226.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:22:30','2019-05-02 11:22:30'),(3146,'chemistry','197.210.8.29',630,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:34:06','2019-05-02 12:14:01'),(3147,'chemistry','197.210.54.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 13:47:41','2019-05-02 13:48:21'),(3148,'chemistry','129.205.112.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 04:12:08','2019-05-03 04:12:09'),(3149,'chemistry','197.210.29.46',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 07:52:22','2019-05-03 08:00:45'),(3150,'chemistry','197.210.54.222',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:06:50','2019-05-03 09:26:09'),(3151,'chemistry','197.210.55.133',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:07:57','2019-05-03 09:13:11'),(3152,'chemistry','197.210.54.105',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:11:28','2019-05-03 09:28:30'),(3153,'chemistry','197.210.55.36',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:54:00','2019-05-03 08:55:53'),(3154,'mathematics','105.112.10.87',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 11:24:44','2019-05-03 11:24:44'),(3155,'chemistry','197.210.60.42',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 12:22:25','2019-05-03 13:34:02'),(3156,'mathematics','197.210.60.42',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 13:36:32','2019-05-03 13:54:05'),(3157,'mathematics','197.210.55.133',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:55:08','2019-05-04 06:23:05'),(3158,'mathematics','197.210.54.38',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:57:02','2019-05-04 06:24:02'),(3159,'mathematics','197.210.54.132',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:59:05','2019-05-04 06:07:02'),(3160,'mathematics','197.210.54.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 06:25:03','2019-05-04 06:25:03'),(3161,'chemistry','41.190.3.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 12:28:58','2019-05-04 12:28:58'),(3162,'chemistry','197.210.44.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 15:39:23','2019-05-05 15:39:23'),(3163,'chemistry','40.77.167.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 21:50:59','2019-07-20 03:21:08'),(3164,'mathematics','18.204.19.147',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3165,'physics','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3166,'accounting','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:49'),(3167,'englishlit','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3168,'economics','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3169,'irk','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3170,'insurance','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3171,'geography','18.204.19.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:44','2019-05-06 23:11:44'),(3172,'english','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:08'),(3173,'commerce','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:01'),(3174,'chemistry','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3175,'currentaffairs','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3176,'accounting','23.22.231.188',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 02:31:16','2019-05-08 02:31:16'),(3177,'insurance','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 13:09:16','2019-05-08 13:09:17'),(3178,'physics','66.249.66.158',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 14:31:06','2019-05-08 14:31:06'),(3179,'biology','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 22:48:34','2019-05-08 22:48:34'),(3180,'economics','105.112.38.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 13:52:26','2019-05-09 13:52:26'),(3181,'mathematics','3.80.87.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 18:51:06','2019-05-09 18:51:06'),(3182,'chemistry','187.85.6.94',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 20:51:54','2019-05-09 20:52:08'),(3183,'englishlit','54.196.16.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 00:29:52','2019-05-10 00:29:52'),(3184,'englishlit','105.112.106.10',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 06:29:03','2019-05-10 06:29:03'),(3185,'chemistry','129.56.111.134',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 07:46:16','2019-05-10 07:49:26'),(3186,'chemistry','129.205.112.138',591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 09:28:33','2019-05-10 11:48:10'),(3187,'chemistry','207.46.13.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 10:25:32','2019-05-10 10:25:32'),(3188,'english','129.205.112.138',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 11:48:25','2019-05-10 11:52:58'),(3189,'english','129.205.112.140',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 18:19:45','2019-05-10 18:19:45'),(3190,'chemistry','172.90.37.138',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:27:48','2019-05-13 00:36:13'),(3191,'biology','172.90.37.138',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:31:17','2019-05-11 14:31:17'),(3192,'geography','3.93.186.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 17:05:27','2019-05-11 17:05:27'),(3193,'chemistry','54.197.219.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 21:40:32','2019-05-11 21:40:32'),(3194,'english','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3195,'mathematics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3196,'commerce','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3197,'biology','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3198,'physics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3199,'economics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3200,'irk','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3201,'economics','54.164.105.120',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 01:32:51','2019-05-12 01:32:51'),(3202,'biology','66.249.64.176',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-12 05:47:32','2019-09-21 02:44:48'),(3203,'mathematics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3204,'commerce','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3205,'biology','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3206,'englishlit','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3207,'economics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3208,'civiledu','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3209,'history','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3210,'chemistry','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3211,'government','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3212,'crk','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3213,'geography','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3214,'civiledu','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3215,'currentaffairs','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3216,'history','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3217,'mathematics','3.81.224.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:05:34','2019-05-12 07:05:34'),(3218,'english','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3219,'mathematics','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:59:25'),(3220,'commerce','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:48'),(3221,'physics','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:27'),(3222,'crk','34.229.209.208',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3223,'irk','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3224,'currentaffairs','34.229.209.208',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3225,'chemistry','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:58:54'),(3226,'government','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:45:06'),(3227,'economics','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:49:05'),(3228,'biology','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:49:05'),(3229,'insurance','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:58:54'),(3230,'accounting','34.229.209.208',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:38','2019-05-12 09:58:38'),(3231,'geography','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:42','2019-05-12 09:58:54'),(3232,'civiledu','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3233,'history','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3234,'currentaffairs','54.80.195.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 10:51:10','2019-05-12 10:51:10'),(3235,'chemistry','46.229.168.131',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 23:53:27','2020-05-04 19:51:47'),(3236,'biology','54.146.12.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 01:52:08','2019-05-13 01:52:08'),(3237,'physics','3.82.108.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 03:15:59','2019-05-13 03:15:59'),(3238,'physics','54.152.180.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 06:31:46','2019-05-13 06:31:46'),(3239,'english','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 07:47:11','2019-05-13 07:47:11'),(3240,'mathematics','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 08:15:22','2019-05-13 08:15:22'),(3241,'commerce','3.84.15.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 09:46:15','2019-05-13 09:46:15'),(3242,'commerce','54.157.233.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 12:58:13','2019-05-13 12:58:13'),(3243,'irk','54.175.238.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 17:30:45','2019-05-13 17:30:45'),(3244,'economics','18.206.157.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 19:50:15','2019-05-13 19:50:15'),(3245,'accounting','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3246,'englishlit','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3247,'government','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3248,'crk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3249,'geography','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3250,'irk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3251,'currentaffairs','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3252,'economics','18.234.203.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:23:50','2019-05-14 09:23:50'),(3253,'physics','66.249.64.180',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-14 11:36:21','2019-08-24 00:09:49'),(3254,'biology','54.221.14.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 17:29:34','2019-05-14 17:29:34'),(3255,'chemistry','46.229.168.162',43,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-15 05:36:54','2020-03-22 22:42:10'),(3256,'crk','3.94.115.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 08:37:16','2019-05-15 08:37:16'),(3257,'english','54.159.102.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 10:04:02','2019-05-15 10:04:02'),(3258,'currentaffairs','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:34:44','2019-05-15 14:34:44'),(3259,'geography','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:57:11','2019-05-15 14:57:11'),(3260,'government','54.224.250.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 18:04:50','2019-05-15 18:04:50'),(3261,'government','3.84.0.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:54:43','2019-05-15 19:54:43'),(3262,'chemistry','77.88.47.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:56:40','2019-05-15 19:56:40'),(3263,'englishlit','3.84.53.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 23:23:15','2019-05-15 23:23:15'),(3264,'crk','107.20.105.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:20:12','2019-05-16 00:20:12'),(3265,'chemistry','34.228.195.54',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:22:33','2019-05-16 03:09:28'),(3266,'chemistry','40.77.167.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:07:33','2019-05-16 11:07:33'),(3267,'englishlit','52.202.251.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:24:33','2019-05-16 11:24:33'),(3268,'chemistry','5.255.250.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-16 21:12:24','2019-08-21 01:57:50'),(3269,'accounting','54.92.151.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 21:37:19','2019-05-16 21:37:19'),(3270,'chemistry','46.229.168.146',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 02:19:29','2020-04-16 08:40:54'),(3271,'chemistry','46.229.168.139',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 17:44:01','2020-05-30 04:55:22'),(3272,'commerce','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3273,'government','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3274,'crk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3275,'irk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3276,'insurance','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3277,'currentaffairs','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3278,'history','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3279,'mathematics','105.112.52.3',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 21:46:44','2019-05-17 21:46:44'),(3280,'chemistry','54.36.148.94',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-18 05:43:40','2020-05-29 00:37:58'),(3281,'chemistry','3.84.208.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 09:11:50','2019-05-18 09:11:50'),(3282,'chemistry','40.77.167.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 16:21:00','2019-05-18 16:21:00'),(3283,'accounting','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:09','2019-05-18 18:40:09'),(3284,'history','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:52','2019-05-18 18:40:52'),(3285,'mathematics','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:39'),(3286,'english','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:50'),(3287,'commerce','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:44'),(3288,'physics','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:42'),(3289,'biology','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3290,'crk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3291,'irk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3292,'currentaffairs','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3293,'economics','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3294,'history','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3295,'accounting','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:37','2019-05-18 19:44:37'),(3296,'englishlit','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:47','2019-05-18 19:44:47'),(3297,'insurance','3.80.150.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 22:44:14','2019-05-18 22:44:14'),(3298,'chemistry','157.55.39.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 04:44:12','2019-05-19 04:44:12'),(3299,'history','3.94.79.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 06:05:58','2019-05-19 06:05:58'),(3300,'chemistry','40.77.167.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 16:57:00','2019-05-19 16:57:00'),(3301,'insurance','54.163.157.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 03:05:04','2019-05-20 03:05:04'),(3302,'chemistry','157.55.39.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 13:59:47','2019-05-20 13:59:47'),(3303,'english','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3304,'mathematics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3305,'biology','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3306,'physics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3307,'crk','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3308,'economics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3309,'insurance','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3310,'english','54.91.198.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 17:32:47','2019-05-21 17:32:47'),(3311,'physics','54.145.4.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 18:22:25','2019-05-21 18:22:25'),(3312,'mathematics','54.234.10.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 02:40:52','2019-05-22 02:40:52'),(3313,'mathematics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3314,'physics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3315,'crk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3316,'geography','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3317,'irk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3318,'civiledu','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3319,'history','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3320,'chemistry','95.216.226.236',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 05:15:03','2019-05-25 05:21:26'),(3321,'government','52.55.44.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 07:55:42','2019-05-23 07:55:42'),(3322,'civiledu','54.208.169.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 10:29:28','2019-05-23 10:29:28'),(3323,'chemistry','139.78.253.195',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:06:11','2019-05-23 23:22:30'),(3324,'chemistry','3.85.143.239',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:44:40','2019-05-23 21:04:27'),(3325,'chemistry','40.77.167.134',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 23:49:56','2019-07-17 20:20:15'),(3326,'chemistry','54.36.149.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 01:52:33','2019-05-24 01:52:33'),(3327,'english','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3328,'biology','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3329,'chemistry','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3330,'englishlit','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3331,'geography','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3332,'economics','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3333,'irk','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3334,'chemistry','173.212.246.232',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 07:36:57','2019-05-24 07:37:03'),(3335,'chemistry','197.210.47.154',119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 16:46:41','2019-05-24 17:36:26'),(3336,'chemistry','185.20.6.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:01:25','2019-05-24 18:01:25'),(3337,'chemistry','197.210.54.59',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:29:11','2019-05-24 18:29:11'),(3338,'chemistry','197.210.55.73',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:36:24','2019-05-24 18:37:10'),(3339,'currentaffairs','197.210.55.73',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:38:00','2019-05-24 18:38:00'),(3340,'chemistry','197.210.227.35',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:20:02','2019-05-25 14:21:17'),(3341,'chemistry','197.210.226.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:21:41','2019-05-25 14:22:30'),(3342,'mathematics','197.210.227.35',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:23:25','2019-05-25 14:25:38'),(3343,'mathematics','197.210.226.250',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:24:57','2019-05-25 14:24:57'),(3344,'chemistry','207.46.13.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-26 03:26:44','2019-08-07 06:55:06'),(3345,'chemistry','54.36.148.190',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 05:37:38','2019-05-28 05:37:38'),(3346,'chemistry','197.253.9.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 10:08:10','2019-05-28 10:08:10'),(3347,'chemistry','105.112.41.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 21:38:58','2019-05-29 21:38:58'),(3348,'chemistry','93.158.161.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 23:17:18','2019-05-29 23:17:18'),(3349,'chemistry','62.210.202.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 07:54:02','2019-05-30 07:54:08'),(3350,'chemistry','197.210.227.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:02','2019-05-30 10:34:02'),(3351,'chemistry','197.210.226.60',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:40','2019-05-30 10:34:40'),(3352,'chemistry','100.43.85.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 19:55:06','2019-05-30 19:55:06'),(3353,'chemistry','207.46.13.20',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-31 10:40:41','2019-09-14 00:58:44'),(3354,'chemistry','141.0.13.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-31 10:57:54','2019-05-31 10:57:54'),(3355,'biology','105.112.46.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-01 12:10:54','2019-06-01 12:19:36'),(3356,'chemistry','157.55.39.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-03 17:51:53','2019-06-03 17:51:53'),(3357,'accounting','209.205.209.34',522,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 19:18:46','2020-05-29 19:55:11'),(3358,'economics','209.205.209.34',1892,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 20:32:30','2020-05-30 17:12:57'),(3359,'chemistry','157.55.39.53',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 21:15:44','2019-10-07 21:10:09'),(3360,'history','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:18:40','2019-06-05 02:18:40'),(3361,'irk','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:42:34','2019-06-05 02:42:34'),(3362,'accounting','54.234.117.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 06:15:30','2019-06-05 06:15:30'),(3363,'accounting','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:14:25','2019-06-05 08:14:25'),(3364,'geography','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:53:33','2019-06-05 08:53:33'),(3365,'accounting','3.84.113.32',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:33','2019-06-05 09:00:49'),(3366,'chemistry','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:39','2019-06-05 09:00:39'),(3367,'insurance','54.146.5.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 11:54:23','2019-06-05 11:54:23'),(3368,'chemistry','105.112.53.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 13:10:39','2019-06-05 13:12:41'),(3369,'chemistry','100.43.85.122',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-05 13:15:48','2020-03-08 10:35:22'),(3370,'chemistry','76.1.76.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 14:34:50','2019-06-05 14:35:18'),(3371,'chemistry','197.210.55.175',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:11:03','2019-06-05 16:12:43'),(3372,'chemistry','197.210.54.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:12:00','2019-06-05 16:12:00'),(3373,'mathematics','197.211.32.242',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 20:45:55','2019-06-05 20:45:56'),(3374,'currentaffairs','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:19:16','2019-06-05 23:19:16'),(3375,'insurance','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:31:01','2019-06-05 23:31:01'),(3376,'englishlit','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:36:02','2019-06-05 23:36:02'),(3377,'chemistry','97.116.149.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-07 14:42:32','2019-06-07 14:42:32'),(3378,'chemistry','207.46.13.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 02:59:43','2019-06-08 02:59:43'),(3379,'mathematics','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3380,'accounting','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3381,'biology','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3382,'chemistry','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3383,'geography','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3384,'civiledu','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3385,'currentaffairs','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3386,'chemistry','54.226.148.240',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:42:27','2019-06-08 11:42:27'),(3387,'biology','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3388,'government','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3389,'crk','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3390,'economics','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3391,'civiledu','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3392,'insurance','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3393,'currentaffairs','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3394,'chemistry','41.217.123.66',142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:01','2019-06-08 15:05:05'),(3395,'english','41.217.123.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:48','2019-06-08 13:21:48'),(3396,'chemistry','197.242.107.128',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:49:30','2019-06-08 15:55:27'),(3397,'english','197.242.107.128',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:56:31','2019-06-08 15:56:36'),(3398,'english','197.242.108.36',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 16:54:19','2019-06-08 16:57:53'),(3399,'physics','197.242.116.150',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:11:54','2019-06-08 20:49:56'),(3400,'english','197.242.116.150',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:31:40','2019-06-08 21:06:14'),(3401,'chemistry','197.242.116.150',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:36:15','2019-06-08 21:06:22'),(3402,'physics','162.213.3.221',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-09 05:09:58','2019-06-09 05:09:58'),(3403,'chemistry','105.112.23.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 09:15:53','2019-06-10 13:05:55'),(3404,'chemistry','197.149.92.146',56,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-10 12:11:23','2020-02-25 16:32:20'),(3405,'chemistry','41.75.207.170',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 12:27:15','2019-06-14 07:43:40'),(3406,'chemistry','207.46.13.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 22:01:38','2019-06-10 22:01:38'),(3407,'chemistry','40.77.167.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 08:14:51','2019-06-11 08:14:51'),(3408,'chemistry','129.56.38.156',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 21:53:28','2019-06-11 21:54:00'),(3409,'irk','34.201.166.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:03:53','2019-06-12 03:03:53'),(3410,'biology','3.94.159.33',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:45:38','2019-06-12 04:28:00'),(3411,'english','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:51:24','2019-06-12 03:51:24'),(3412,'accounting','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:52:12','2019-06-12 03:52:12'),(3413,'crk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:20:40','2019-06-12 04:20:40'),(3414,'geography','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:38:56','2019-06-12 04:38:56'),(3415,'government','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:41:50','2019-06-12 04:41:50'),(3416,'irk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:42:17','2019-06-12 04:42:17'),(3417,'physics','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:51:23','2019-06-12 04:51:23'),(3418,'english','154.118.8.161',198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:36:41','2019-06-12 14:02:53'),(3419,'chemistry','154.118.8.161',91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:39:30','2019-06-12 12:18:14'),(3420,'physics','154.118.8.161',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:40:15','2019-06-12 12:04:32'),(3421,'chemistry','54.83.120.25',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 21:54:54','2019-06-12 22:18:00'),(3422,'chemistry','3.90.108.129',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 22:47:16','2019-06-13 00:16:33'),(3423,'chemistry','46.229.168.142',84,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-13 04:36:54','2020-07-10 20:02:07'),(3424,'chemistry','41.78.172.115',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 15:09:45','2019-06-14 12:18:50'),(3425,'chemistry','105.112.106.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:18','2019-06-13 18:32:18'),(3426,'english','105.112.106.235',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:48','2019-06-13 18:32:50'),(3427,'english','41.75.207.170',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:42:12','2019-06-14 07:42:12'),(3428,'physics','41.75.207.170',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:43:30','2019-06-14 07:44:40'),(3429,'physics','66.249.83.16',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-14 08:47:03','2019-09-05 01:30:44'),(3430,'chemistry','105.112.33.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 20:32:24','2019-06-14 20:32:24'),(3431,'english','197.242.114.252',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 05:49:46','2019-06-15 06:28:24'),(3432,'chemistry','105.112.45.8',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 08:23:34','2019-06-15 08:24:00'),(3433,'english','41.217.116.6',99,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:13:31','2019-06-15 14:39:43'),(3434,'biology','18.206.190.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:27:51','2019-06-15 12:27:51'),(3435,'chemistry','3.81.65.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 13:16:11','2019-06-15 13:16:11'),(3436,'accounting','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:47','2019-06-15 14:20:47'),(3437,'english','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:58','2019-06-15 14:20:58'),(3438,'chemistry','197.210.52.46',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-15 14:26:37','2020-02-06 08:45:34'),(3439,'chemistry','197.210.53.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:27:22','2019-06-15 14:27:22'),(3440,'currentaffairs','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:46:51','2019-06-15 14:46:51'),(3441,'mathematics','34.239.126.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 15:58:44','2019-06-15 15:58:44'),(3442,'chemistry','197.210.53.178',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:40:54','2019-06-15 21:42:38'),(3443,'chemistry','197.210.52.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:42:12','2019-06-15 21:42:32'),(3444,'chemistry','46.229.168.147',51,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-15 21:50:41','2020-06-11 21:19:10'),(3445,'chemistry','197.210.53.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:20:17','2019-06-15 22:20:17'),(3446,'biology','54.237.246.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:32:27','2019-06-15 22:32:27'),(3447,'biology','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:11:58','2019-06-15 23:11:58'),(3448,'irk','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:27:36','2019-06-15 23:27:36'),(3449,'physics','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 00:17:33','2019-06-16 00:17:33'),(3450,'irk','34.228.23.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 01:44:49'),(3451,'accounting','34.228.23.109',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 02:01:41'),(3452,'chemistry','45.55.21.112',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:27:31','2019-06-16 02:28:29'),(3453,'chemistry','105.14.195.18',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:48:24','2019-06-17 01:41:38'),(3454,'physics','66.249.83.18',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-16 12:16:03','2019-09-15 16:06:04'),(3455,'englishlit','54.164.133.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 17:50:46','2019-06-16 17:50:46'),(3456,'mathematics','54.196.189.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:52'),(3457,'mathematics','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3458,'english','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3459,'englishlit','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:55','2019-06-16 19:48:55'),(3460,'chemistry','206.189.171.227',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 02:00:46','2019-06-17 02:02:05'),(3461,'chemistry','41.190.16.26',6367,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 07:08:02','2019-07-23 11:35:50'),(3462,'mathematics','3.91.71.81',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:35:54','2019-06-17 09:22:24'),(3463,'englishlit','3.91.71.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:37:04','2019-06-17 09:22:24'),(3464,'english','3.91.71.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 09:10:38','2019-06-17 09:10:38'),(3465,'mathematics','107.21.78.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 10:58:09','2019-06-17 10:58:09'),(3466,'currentaffairs','34.238.242.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 13:56:42','2019-06-17 13:56:42'),(3467,'commerce','34.227.190.206',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 21:33:57','2019-06-17 21:33:57'),(3468,'chemistry','66.249.83.16',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-18 02:33:50','2019-11-06 14:40:47'),(3469,'currentaffairs','3.91.183.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 06:29:09','2019-06-18 06:29:09'),(3470,'chemistry','66.249.69.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 07:22:19','2019-06-18 07:22:19'),(3471,'economics','41.190.16.26',4519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:08:32','2019-07-23 11:57:15'),(3472,'commerce','41.190.16.26',5932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:28','2019-07-23 11:33:05'),(3473,'english','41.190.16.26',6405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:29','2019-07-23 11:25:21'),(3474,'chemistry','100.43.90.165',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 06:10:09','2019-06-19 06:10:09'),(3475,'mathematics','41.190.16.26',1164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 10:57:58','2019-07-23 11:30:59'),(3476,'chemistry','129.56.101.165',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 17:58:38','2019-06-19 18:00:41'),(3477,'chemistry','82.145.223.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:25','2019-06-20 01:08:25'),(3478,'chemistry','41.203.78.211',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:32','2019-06-20 01:08:32'),(3479,'accounting','41.190.16.26',2791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 12:19:54','2019-07-23 11:33:51'),(3480,'biology','41.190.16.26',3586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 13:01:43','2019-07-23 11:34:35'),(3481,'biology','66.249.66.208',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-21 06:35:47','2019-10-29 04:39:15'),(3482,'mathematics','34.229.108.180',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-21 23:58:00','2019-06-21 23:58:00'),(3483,'chemistry','157.55.39.173',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-22 05:09:56','2019-06-22 05:09:56'),(3484,'chemistry','100.43.85.201',11,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 16:57:01','2019-12-08 06:55:23'),(3485,'chemistry','5.255.250.164',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 22:01:02','2019-09-08 03:42:02'),(3486,'chemistry','46.229.168.152',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-23 06:10:52','2020-05-29 19:42:11'),(3487,'chemistry','77.88.47.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 13:02:24','2019-06-23 13:02:24'),(3488,'chemistry','207.46.13.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 20:52:25','2019-06-23 20:52:25'),(3489,'physics','41.190.16.26',1049,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 08:37:20','2019-07-23 11:35:12'),(3490,'chemistry','93.158.166.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 11:27:50','2019-06-24 11:27:50'),(3491,'english','3.90.20.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 17:28:04','2019-06-24 17:28:04'),(3492,'irk','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:07:15','2019-06-24 19:07:15'),(3493,'commerce','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:10:29','2019-06-24 19:10:29'),(3494,'geography','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:24:40','2019-06-24 19:24:40'),(3495,'chemistry','207.46.13.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 21:37:18','2019-06-24 21:37:18'),(3496,'biology','52.90.179.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 22:59:08','2019-06-24 22:59:08'),(3497,'economics','3.89.60.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 00:47:23','2019-06-25 00:47:23'),(3498,'mathematics','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 04:00:29','2019-06-25 04:00:29'),(3499,'englishlit','41.190.16.26',1730,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:34','2019-07-23 11:44:00'),(3500,'government','41.190.16.26',1944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:47','2019-07-23 11:47:36'),(3501,'crk','41.190.16.26',2466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:59','2019-07-23 11:48:21'),(3502,'geography','41.190.16.26',1488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:13','2019-07-23 11:57:01'),(3503,'irk','41.190.16.26',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:46','2019-07-23 11:57:27'),(3504,'civiledu','41.190.16.26',960,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:58','2019-07-23 11:57:42'),(3505,'currentaffairs','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:26','2019-07-23 11:58:09'),(3506,'history','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:40','2019-07-23 11:58:22'),(3507,'chemistry','154.120.89.121',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 08:40:28','2019-06-25 08:55:46'),(3508,'chemistry','100.43.91.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 09:22:05','2019-06-25 09:22:05'),(3509,'chemistry','46.229.168.148',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 14:14:29','2019-08-05 06:27:37'),(3510,'chemistry','37.9.87.211',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 07:15:23','2019-06-26 07:15:23'),(3511,'chemistry','154.113.84.24',291,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-26 08:20:23','2019-11-05 14:51:24'),(3512,'biology','154.113.84.24',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:12:21','2019-06-26 14:55:23'),(3513,'english','154.113.84.24',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:13:32','2019-06-26 14:55:25'),(3514,'english','105.112.53.54',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:32:43','2019-06-26 14:23:50'),(3515,'biology','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:47','2019-06-26 14:23:47'),(3516,'physics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:51','2019-06-26 14:23:52'),(3517,'chemistry','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:53','2019-06-26 14:23:53'),(3518,'mathematics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:54','2019-06-26 14:23:54'),(3519,'economics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:56','2019-06-26 14:23:56'),(3520,'physics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:26','2019-06-26 14:55:26'),(3521,'mathematics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:28','2019-06-26 14:55:29'),(3522,'economics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:30','2019-06-26 14:55:30'),(3523,'chemistry','41.217.123.115',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:22','2019-06-26 18:34:34'),(3524,'history','41.217.123.115',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:45','2019-06-26 18:04:21'),(3525,'chemistry','207.46.13.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 18:31:26','2019-06-26 18:31:26'),(3526,'mathematics','197.210.243.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:11:39','2019-06-27 19:11:39'),(3527,'english','197.210.243.239',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:12:15','2019-06-27 19:14:45'),(3528,'economics','197.210.243.239',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:14:54','2019-06-27 19:16:28'),(3529,'chemistry','185.26.180.221',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:56:48','2019-06-27 19:56:48'),(3530,'chemistry','77.88.5.10',4,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 01:59:49','2019-09-18 15:11:44'),(3531,'chemistry','105.112.18.14',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:46','2019-06-28 03:11:47'),(3532,'biology','105.112.18.14',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:52','2019-06-28 03:13:33'),(3533,'chemistry','40.77.167.115',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 03:52:03','2020-03-19 20:45:55'),(3534,'economics','197.210.58.211',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 04:41:14','2019-06-28 04:44:00'),(3535,'chemistry','54.36.150.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 16:41:57','2019-06-28 16:41:57'),(3536,'chemistry','54.36.150.166',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 19:07:14','2019-06-28 19:07:14'),(3537,'history','154.120.95.55',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 22:43:11','2019-06-28 22:43:11'),(3538,'chemistry','66.249.64.176',131,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 23:46:36','2019-09-30 03:33:36'),(3539,'chemistry','107.3.154.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 02:57:34','2019-06-30 05:13:41'),(3540,'chemistry','40.77.167.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 05:06:27','2019-06-29 05:06:27'),(3541,'civiledu','52.207.228.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 07:20:25','2019-06-29 07:20:25'),(3542,'englishlit','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:09:53','2019-06-29 08:09:53'),(3543,'crk','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:11:50','2019-06-29 08:11:50'),(3544,'government','34.235.169.213',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:16:14','2019-06-29 16:16:14'),(3545,'insurance','54.146.66.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:57:38','2019-06-29 16:57:38'),(3546,'physics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:19:06','2019-06-29 18:19:06'),(3547,'mathematics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:23:50','2019-06-29 18:23:50'),(3548,'insurance','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:30:42','2019-06-29 18:30:42'),(3549,'crk','54.227.42.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 19:50:41','2019-06-29 19:50:41'),(3550,'government','3.82.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 20:28:23','2019-06-29 20:28:23'),(3551,'english','52.91.23.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 03:47:35','2019-06-30 03:47:35'),(3552,'mathematics','107.3.154.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 05:14:08','2019-06-30 05:14:08'),(3553,'chemistry','37.9.87.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 17:29:41','2019-06-30 17:29:41'),(3554,'chemistry','154.118.47.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 07:13:55','2019-07-01 07:14:33'),(3555,'chemistry','46.229.168.135',87,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 09:26:34','2020-01-31 22:31:52'),(3556,'english','209.205.209.34',8089,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 19:21:38','2020-05-30 17:19:39'),(3557,'chemistry','197.211.53.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 21:31:20','2019-07-01 21:31:40'),(3558,'chemistry','157.55.39.182',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 05:23:02','2019-07-02 05:23:02'),(3559,'chemistry','93.158.161.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 15:43:59','2019-07-02 15:43:59'),(3560,'history','209.205.209.34',650,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:22:26','2020-05-30 18:38:30'),(3561,'physics','209.205.209.34',1763,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:36:44','2020-05-30 15:29:21'),(3562,'chemistry','129.56.51.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 18:42:17','2019-07-02 18:42:17'),(3563,'chemistry','197.210.28.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:11:10','2019-07-02 20:11:22'),(3564,'geography','197.210.28.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:17:11','2019-07-02 20:17:11'),(3565,'biology','54.147.7.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 22:46:21','2019-07-02 22:46:21'),(3566,'biology','209.205.209.34',5018,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-03 05:37:07','2020-05-30 18:25:53'),(3567,'chemistry','64.233.172.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:09:13','2019-07-03 19:09:14'),(3568,'history','3.95.227.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:48:54','2019-07-03 19:48:54'),(3569,'chemistry','37.9.87.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 08:05:14','2019-07-04 08:05:14'),(3570,'geography','3.95.241.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 16:23:04','2019-07-04 16:23:04'),(3571,'chemistry','105.112.48.115',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 19:52:32','2019-07-04 20:12:07'),(3572,'mathematics','105.112.48.115',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:07:51','2019-07-04 20:13:22'),(3573,'physics','105.112.48.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:12:30','2019-07-04 20:12:30'),(3574,'chemistry','91.242.162.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:05:11','2019-07-06 06:05:11'),(3575,'history','18.232.141.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:40:14','2019-07-06 06:40:14'),(3576,'chemistry','154.118.37.114',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:14:49','2019-07-06 18:14:49'),(3577,'chemistry','91.242.162.3',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:41:15','2019-07-06 19:28:38'),(3578,'chemistry','91.242.162.36',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 09:39:14','2019-07-07 09:39:14'),(3579,'chemistry','197.210.65.91',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 17:22:08','2019-07-07 17:22:57'),(3580,'chemistry','141.8.143.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 19:45:26','2019-07-07 19:45:26'),(3581,'chemistry','91.242.162.25',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-07 19:49:57','2019-09-10 11:10:42'),(3582,'mathematics','129.205.113.212',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:16'),(3583,'chemistry','129.205.113.212',33,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:27'),(3584,'accounting','129.205.113.212',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:04'),(3585,'economics','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:43'),(3586,'government','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:32:17'),(3587,'commerce','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3588,'geography','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3589,'crk','129.205.113.212',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:11'),(3590,'currentaffairs','129.205.113.212',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:01','2019-07-07 22:32:40'),(3591,'englishlit','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:23','2019-07-07 22:27:11'),(3592,'physics','129.205.113.212',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:26','2019-07-07 22:32:46'),(3593,'history','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:32:41'),(3594,'irk','129.205.113.212',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3595,'civiledu','129.205.113.212',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3596,'biology','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:56','2019-07-07 22:33:24'),(3597,'insurance','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:23:58','2019-07-07 22:32:21'),(3598,'english','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:25:57','2019-07-07 22:33:06'),(3599,'chemistry','198.144.145.220',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:29:31','2019-07-07 21:29:54'),(3600,'chemistry','41.203.78.249',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 09:28:28','2019-07-08 09:31:26'),(3601,'physics','66.249.88.36',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 10:04:41','2019-07-08 10:04:42'),(3602,'mathematics','197.210.8.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 11:09:57','2019-07-08 11:09:57'),(3603,'chemistry','169.239.188.48',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-08 11:26:53','2019-08-27 13:36:26'),(3604,'english','3.85.90.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 15:56:12','2019-07-08 15:56:12'),(3605,'chemistry','105.112.66.91',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:33:56','2019-07-08 21:35:52'),(3606,'english','105.112.66.91',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:53:51','2019-07-08 21:53:51'),(3607,'commerce','209.205.209.34',1403,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:05:44'),(3608,'chemistry','209.205.209.34',3228,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:38:59'),(3609,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3610,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3611,'english','41.78.172.115',90,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 07:23:35','2019-11-27 13:09:02'),(3612,'englishlit','41.78.172.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:24:07','2019-07-09 07:24:33'),(3613,'government','41.78.172.115',105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:25:34','2019-07-16 07:09:26'),(3614,'chemistry','129.56.37.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:43:13','2019-07-09 07:43:14'),(3615,'mathematics','209.205.209.34',2378,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 08:37:56','2020-05-30 17:58:26'),(3616,'chemistry','192.151.145.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 12:04:16','2019-07-09 12:04:31'),(3617,'physics','105.112.74.109',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:45:55','2019-07-09 21:20:51'),(3618,'government','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:53:35','2019-07-09 20:53:35'),(3619,'englishlit','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:55:52','2019-07-09 20:55:52'),(3620,'english','105.112.74.109',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:56:28','2019-07-09 21:24:57'),(3621,'mathematics','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 21:10:35','2019-07-09 21:10:35'),(3622,'chemistry','91.242.162.49',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 22:37:01','2019-07-09 23:20:10'),(3623,'physics','66.249.64.29',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 02:22:25','2019-07-10 02:22:25'),(3624,'mathematics','41.78.172.115',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 08:51:07','2019-07-15 16:59:28'),(3625,'chemistry','129.56.36.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 10:15:55','2019-07-10 10:16:28'),(3626,'chemistry','91.242.162.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 18:09:11','2019-07-10 18:09:11'),(3627,'chemistry','154.160.30.70',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 19:00:58','2019-07-10 19:01:06'),(3628,'chemistry','129.205.112.207',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 23:16:02','2019-07-10 23:16:41'),(3629,'english','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3630,'mathematics','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3631,'commerce','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3632,'chemistry','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3633,'irk','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3634,'civiledu','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3635,'history','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3636,'chemistry','41.203.78.28',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:47:47','2019-07-11 11:21:52'),(3637,'english','41.203.78.28',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 11:35:10','2019-07-11 11:35:10'),(3638,'chemistry','157.55.39.101',14,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 17:52:52','2020-01-09 17:51:46'),(3639,'chemistry','66.249.88.68',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3640,'chemistry','66.249.88.65',76,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3641,'chemistry','82.145.223.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:34','2019-07-12 01:28:34'),(3642,'chemistry','129.205.112.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:40','2019-07-12 01:28:40'),(3643,'chemistry','54.162.122.174',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 08:18:20','2019-07-12 10:00:37'),(3644,'chemistry','40.77.167.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 11:56:19','2019-07-12 11:56:19'),(3645,'physics','66.102.6.44',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 18:47:05','2019-07-12 18:47:05'),(3646,'chemistry','105.112.40.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 14:34:42','2019-07-13 14:34:42'),(3647,'english','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:22:10','2019-07-13 15:22:10'),(3648,'englishlit','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:28:12','2019-07-13 15:28:12'),(3649,'currentaffairs','105.112.23.162',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 19:42:12','2019-07-13 19:42:12'),(3650,'chemistry','197.210.47.253',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 23:32:27','2019-07-13 23:32:37'),(3651,'chemistry','197.210.226.221',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-14 08:42:39','2019-07-14 08:42:39'),(3652,'chemistry','41.58.163.166',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 03:36:09','2019-07-15 03:38:30'),(3653,'chemistry','197.210.45.131',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:01:08','2019-07-15 11:02:28'),(3654,'chemistry','207.46.13.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:30:08','2019-07-15 11:30:08'),(3655,'chemistry','105.112.121.65',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 01:47:52','2019-07-16 01:54:58'),(3656,'geography','209.205.209.34',1148,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-16 04:33:29','2020-05-30 17:26:43'),(3657,'chemistry','157.55.39.75',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 22:12:07','2019-07-16 22:12:07'),(3658,'chemistry','41.223.213.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 00:56:58','2019-07-17 01:11:43'),(3659,'english','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:53:17','2019-07-17 05:53:18'),(3660,'mathematics','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:55:34','2019-07-17 05:55:34'),(3661,'government','209.205.209.34',2686,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:52:58','2020-05-30 18:38:59'),(3662,'crk','209.205.209.34',3361,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:54:29','2020-05-30 12:48:20'),(3663,'chemistry','197.242.111.36',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 08:00:14','2019-07-17 08:08:20'),(3664,'chemistry','41.203.78.33',425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 09:54:12','2019-07-17 11:26:32'),(3665,'chemistry','69.171.251.8',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:55','2019-07-17 10:23:56'),(3666,'chemistry','69.171.251.23',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3667,'chemistry','69.171.251.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3668,'englishlit','209.205.209.34',1090,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 12:39:36','2020-05-30 15:26:43'),(3669,'irk','209.205.209.34',1003,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 17:02:18','2020-05-30 18:50:40'),(3670,'chemistry','41.223.215.235',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:10:02','2019-07-17 17:11:19'),(3671,'chemistry','41.223.213.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:16:10','2019-07-17 17:16:10'),(3672,'chemistry','35.153.135.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 00:14:01','2019-07-18 00:14:01'),(3673,'chemistry','154.118.46.101',392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 03:48:26','2019-07-18 05:29:47'),(3674,'chemistry','5.255.250.162',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-18 06:37:25','2019-09-08 14:04:58'),(3675,'chemistry','154.118.61.127',1190,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 08:56:03','2019-07-18 09:20:17'),(3676,'irk','34.238.242.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:04:13','2019-07-18 09:04:13'),(3677,'english','154.118.61.127',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:09','2019-07-18 09:18:21'),(3678,'commerce','154.118.61.127',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:43','2019-07-18 09:19:05'),(3679,'accounting','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:11','2019-07-18 09:29:34'),(3680,'biology','154.118.61.127',378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:25','2019-07-18 09:19:44'),(3681,'englishlit','154.118.61.127',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:33','2019-07-18 09:30:44'),(3682,'government','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:49','2019-07-18 09:31:01'),(3683,'crk','154.118.61.127',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:17','2019-07-18 09:31:18'),(3684,'economics','154.118.61.127',584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:55','2019-07-18 09:31:56'),(3685,'civiledu','154.118.61.127',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:27:48','2019-07-18 09:27:51'),(3686,'mathematics','154.118.61.127',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:28:55','2019-07-18 09:29:06'),(3687,'physics','154.118.61.127',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:29:57','2019-07-18 09:30:06'),(3688,'geography','154.118.61.127',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:31:27','2019-07-18 09:31:38'),(3689,'chemistry','178.255.215.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 18:42:41','2019-07-18 18:42:41'),(3690,'chemistry','157.55.39.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 22:58:37','2019-07-19 04:22:47'),(3691,'chemistry','154.118.59.83',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 05:44:42','2019-07-19 06:04:52'),(3692,'chemistry','41.203.78.52',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 16:01:50','2019-07-19 16:28:25'),(3693,'chemistry','197.242.102.82',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:28:00','2019-07-20 04:29:38'),(3694,'english','197.242.102.82',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:31:50','2019-07-20 11:59:47'),(3695,'mathematics','197.242.102.82',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:48:08','2019-07-20 04:48:08'),(3696,'chemistry','40.77.167.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 06:20:29','2019-07-20 06:20:29'),(3697,'biology','197.242.102.82',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:04:42','2019-07-20 11:58:12'),(3698,'physics','152.9.196.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:47:30','2019-07-20 11:47:30'),(3699,'mathematics','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:14','2019-07-20 14:11:14'),(3700,'chemistry','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:27','2019-07-20 14:11:27'),(3701,'chemistry','207.46.13.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 21:45:31','2019-07-20 21:45:31'),(3702,'english','41.217.118.129',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 05:37:39','2019-07-21 05:37:39'),(3703,'chemistry','41.203.78.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 15:30:53','2019-07-21 15:32:05'),(3704,'chemistry','157.55.39.239',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-22 03:02:39','2020-03-31 17:07:02'),(3705,'biology','54.91.22.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 06:50:06','2019-07-22 06:50:06'),(3706,'chemistry','93.80.129.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 07:59:39','2019-07-22 07:59:39'),(3707,'mathematics','3.84.79.213',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 08:19:57','2019-07-22 08:19:58'),(3708,'chemistry','207.46.13.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 06:32:43','2019-07-23 06:32:43'),(3709,'chemistry','154.118.66.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 07:11:56','2019-07-23 07:11:56'),(3710,'chemistry','54.36.150.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 12:38:55','2019-07-23 12:38:56'),(3711,'english','154.118.66.199',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:20:16','2019-07-23 19:20:16'),(3712,'chemistry','197.210.57.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:36:14','2019-07-23 19:45:25'),(3713,'chemistry','197.210.57.16',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:38:03','2019-07-23 19:46:41'),(3714,'chemistry','197.211.57.133',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 20:29:13','2019-07-23 20:30:01'),(3715,'chemistry','54.36.150.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 00:15:09','2019-07-24 00:15:09'),(3716,'chemistry','207.46.13.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 01:42:30','2019-07-24 01:42:30'),(3717,'english','154.120.114.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 03:35:04','2019-07-24 03:35:04'),(3718,'englishlit','41.80.181.76',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 06:15:35','2019-07-25 05:43:43'),(3719,'chemistry','54.172.234.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 08:19:54','2019-07-24 08:49:47'),(3720,'chemistry','40.77.167.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 16:39:03','2019-07-25 16:39:03'),(3721,'chemistry','40.77.167.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 23:17:21','2019-07-25 23:17:21'),(3722,'insurance','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:14','2019-07-26 05:17:07'),(3723,'accounting','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:44','2019-07-26 05:17:08'),(3724,'englishlit','41.203.78.111',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:14','2019-07-26 05:17:17'),(3725,'government','41.203.78.111',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:58','2019-07-26 05:17:11'),(3726,'currentaffairs','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:26','2019-07-26 05:17:13'),(3727,'economics','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:27','2019-07-26 05:17:14'),(3728,'geography','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:29','2019-07-26 05:17:16'),(3729,'english','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:36','2019-07-26 05:17:19'),(3730,'chemistry','66.249.64.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 15:13:58','2019-07-26 15:13:58'),(3731,'chemistry','207.46.13.115',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-27 00:45:02','2020-01-23 09:22:32'),(3732,'chemistry','157.55.39.89',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 07:32:50','2019-07-27 07:32:50'),(3733,'chemistry','46.229.168.137',45,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-07-27 09:18:32','2020-07-05 12:08:49'),(3734,'mathematics','3.85.206.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 10:07:21','2019-07-27 10:09:00'),(3735,'english','154.118.28.124',72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 12:49:22','2019-07-28 06:55:02'),(3736,'chemistry','40.77.167.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 15:09:18','2019-07-28 15:09:18'),(3737,'chemistry','201.186.162.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 17:45:36','2019-07-28 17:45:37'),(3738,'chemistry','80.248.10.224',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:34:33','2019-07-29 00:37:02'),(3739,'physics','80.248.10.224',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:35:39','2019-07-29 00:35:39'),(3740,'biology','154.118.28.124',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 09:57:14','2019-07-29 09:57:14'),(3741,'english','41.203.78.138',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 16:14:46','2019-07-29 16:14:46'),(3742,'chemistry','54.36.149.43',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-29 16:22:54','2020-05-29 00:45:16'),(3743,'insurance','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:39','2019-07-30 02:31:46'),(3744,'accounting','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:43','2019-07-30 02:31:31'),(3745,'englishlit','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:46','2019-07-30 02:31:23'),(3746,'government','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:49','2019-07-30 02:31:29'),(3747,'currentaffairs','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:51','2019-07-30 02:31:19'),(3748,'economics','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:53','2019-07-30 02:31:42'),(3749,'geography','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:56','2019-07-30 02:31:40'),(3750,'english','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:01','2019-07-30 02:31:25'),(3751,'mathematics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:04','2019-07-30 02:31:26'),(3752,'commerce','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:06','2019-07-30 02:31:28'),(3753,'biology','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:19','2019-07-30 02:31:32'),(3754,'physics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:22','2019-07-30 02:31:34'),(3755,'chemistry','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:24','2019-07-30 02:31:35'),(3756,'crk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:28','2019-07-30 02:31:37'),(3757,'history','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:30','2019-07-30 02:31:38'),(3758,'irk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:49','2019-07-30 02:31:43'),(3759,'civiledu','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:52','2019-07-30 02:31:44'),(3760,'insurance','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:01','2019-07-30 03:25:41'),(3761,'accounting','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3762,'englishlit','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:33'),(3763,'government','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3764,'currentaffairs','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:30'),(3765,'economics','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:39'),(3766,'geography','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:04','2019-07-30 03:25:39'),(3767,'english','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:05','2019-07-30 03:25:33'),(3768,'mathematics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3769,'commerce','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3770,'biology','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3771,'physics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3772,'chemistry','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:37'),(3773,'crk','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:38'),(3774,'history','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:10','2019-07-30 03:25:38'),(3775,'irk','198.23.156.170',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:11','2019-07-30 03:25:40'),(3776,'civiledu','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:12','2019-07-30 03:25:40'),(3777,'chemistry','54.36.148.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 12:20:11','2019-07-30 12:20:11'),(3778,'history','34.229.51.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 14:05:01','2019-07-30 14:05:01'),(3779,'english','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3780,'commerce','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3781,'chemistry','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3782,'englishlit','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3783,'government','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3784,'crk','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3785,'insurance','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3786,'chemistry','93.158.161.52',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 13:53:11','2019-07-31 13:53:11'),(3787,'chemistry','95.70.149.106',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 17:40:54','2019-07-31 17:40:58'),(3788,'chemistry','197.210.52.110',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-31 23:43:35','2020-05-25 11:22:19'),(3789,'physics','197.210.52.34',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 23:44:25','2019-07-31 23:44:25'),(3790,'chemistry','129.205.113.242',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 11:01:44','2019-08-01 11:38:22'),(3791,'chemistry','46.229.168.136',5,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-01 13:52:01','2020-03-24 23:22:11'),(3792,'chemistry','207.46.13.109',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 15:09:54','2019-08-01 15:09:54'),(3793,'chemistry','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:06:12','2019-08-01 17:06:12'),(3794,'english','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:07:32','2019-08-01 17:07:32'),(3795,'crk','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:17:03','2019-08-01 17:17:04'),(3796,'mathematics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3797,'accounting','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3798,'physics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3799,'chemistry','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3800,'englishlit','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3801,'crk','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3802,'currentaffairs','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3803,'chemistry','85.104.168.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 06:18:15','2019-08-02 06:18:15'),(3804,'chemistry','102.67.6.4',86,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-02 11:56:48','2020-02-06 09:19:26'),(3805,'chemistry','41.203.78.141',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 17:46:29','2019-08-02 17:50:14'),(3806,'physics','141.0.13.86',225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 19:55:06','2019-08-02 20:20:39'),(3807,'chemistry','54.89.107.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 12:30:12','2019-08-03 12:30:12'),(3808,'chemistry','40.77.167.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 14:46:31','2019-08-03 14:46:31'),(3809,'chemistry','197.210.62.39',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 15:09:21','2019-08-03 15:11:54'),(3810,'chemistry','41.190.3.29',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:05:32','2019-08-03 20:06:34'),(3811,'chemistry','157.55.39.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:11:00','2019-08-03 20:11:00'),(3812,'chemistry','105.112.112.6',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 00:43:46','2019-08-04 00:43:46'),(3813,'chemistry','41.190.31.100',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 14:53:51','2019-08-04 14:54:18'),(3814,'chemistry','129.18.141.135',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:26:00','2019-08-04 21:27:04'),(3815,'chemistry','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:29:51','2019-08-04 21:29:51'),(3816,'chemistry','24.59.53.207',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:30:40','2019-08-04 21:31:48'),(3817,'chemistry','73.251.19.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:32:47','2019-08-05 19:48:27'),(3818,'chemistry','54.36.150.27',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 04:34:37','2020-04-20 23:49:30'),(3819,'englishlit','105.112.16.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:00:40','2019-08-05 08:00:40'),(3820,'chemistry','41.215.245.118',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:34:13','2019-08-05 21:13:05'),(3821,'mathematics','41.215.245.118',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:03:37','2019-08-05 21:14:43'),(3822,'chemistry','54.36.150.94',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:51:17','2019-08-05 09:51:17'),(3823,'chemistry','108.5.104.122',121,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 11:40:26','2019-08-10 00:14:27'),(3824,'chemistry','172.58.231.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 11:41:16','2019-08-05 11:41:16'),(3825,'chemistry','105.112.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 16:00:47','2019-08-05 16:00:47'),(3826,'mathematics','3.208.18.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 18:34:25','2019-08-05 18:34:25'),(3827,'chemistry','51.75.58.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-06 06:04:58','2019-08-06 06:04:58'),(3828,'english','105.112.46.183',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 17:24:18','2019-08-06 20:33:07'),(3829,'chemistry','157.55.39.189',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 20:45:44','2019-08-29 20:50:04'),(3830,'chemistry','154.120.111.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:02:33','2019-08-06 21:02:33'),(3831,'chemistry','41.184.168.168',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:47:59','2019-08-07 07:40:56'),(3832,'chemistry','76.169.69.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:59:50','2019-08-06 22:00:41'),(3833,'chemistry','197.210.28.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 22:09:16','2019-08-06 22:09:16'),(3834,'chemistry','197.242.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:24:27','2019-08-07 05:24:27'),(3835,'chemistry','54.162.105.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:45:21','2019-08-07 05:45:21'),(3836,'chemistry','105.112.99.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:37:02','2019-08-07 07:37:02'),(3837,'chemistry','197.255.3.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:53:01','2019-08-07 07:53:01'),(3838,'chemistry','105.112.66.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:07:50','2019-08-07 08:07:50'),(3839,'chemistry','197.210.10.11',99,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:28:59','2019-08-07 08:32:24'),(3840,'mathematics','197.210.10.11',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:32:47','2019-08-07 08:32:50'),(3841,'chemistry','102.67.3.4',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:36:49','2019-08-07 08:58:38'),(3842,'chemistry','41.164.52.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:03:24','2019-08-07 10:03:24'),(3843,'chemistry','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:05:52','2019-08-07 10:05:52'),(3844,'mathematics','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:06:42','2019-08-07 10:06:42'),(3845,'chemistry','197.149.90.214',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:24:50','2019-08-07 10:26:08'),(3846,'chemistry','41.203.73.88',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:39:15','2019-08-07 11:39:55'),(3847,'physics','209.136.56.4',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:54:06','2019-08-12 23:34:33'),(3848,'chemistry','197.242.98.242',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:04:40','2019-08-07 12:08:12'),(3849,'chemistry','66.249.83.192',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:30:34','2020-01-09 11:42:25'),(3850,'chemistry','41.58.96.12',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 14:11:55','2019-08-07 14:12:42'),(3851,'chemistry','197.210.65.148',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 18:36:06','2019-08-07 18:36:06'),(3852,'economics','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:15','2019-08-08 06:27:15'),(3853,'commerce','197.210.226.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:24','2019-08-08 06:27:24'),(3854,'commerce','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:29:02','2019-08-08 06:29:02'),(3855,'chemistry','196.6.204.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 08:52:03','2019-08-08 08:52:36'),(3856,'chemistry','105.112.112.43',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 13:28:20','2019-08-08 13:28:58'),(3857,'chemistry','197.210.45.222',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 23:36:48','2019-08-08 23:37:30'),(3858,'chemistry','207.46.13.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 05:43:38','2019-08-09 05:43:38'),(3859,'chemistry','197.210.44.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 08:23:41','2019-08-09 08:23:41'),(3860,'chemistry','107.167.108.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 13:55:03','2019-08-09 13:55:03'),(3861,'chemistry','141.0.12.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:36:14','2019-08-09 14:40:11'),(3862,'english','141.0.12.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:40:26','2019-08-09 14:40:26'),(3863,'chemistry','154.113.86.202',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 15:44:28','2019-08-09 15:45:32'),(3864,'english','54.196.180.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 19:46:19','2019-08-09 19:46:19'),(3865,'chemistry','41.190.31.199',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:16:32','2019-08-09 22:00:42'),(3866,'mathematics','41.190.31.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:19:49','2019-08-09 21:19:49'),(3867,'crk','41.190.31.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:38:51','2019-08-09 21:38:54'),(3868,'chemistry','129.205.113.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 05:01:10','2019-08-10 05:01:50'),(3869,'chemistry','41.217.117.119',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 06:33:30','2019-08-10 06:33:30'),(3870,'currentaffairs','54.85.115.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 10:57:06','2019-08-10 10:57:06'),(3871,'history','18.206.174.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 13:08:50','2019-08-10 13:08:50'),(3872,'chemistry','100.43.81.123',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 14:14:16','2019-08-10 14:14:17'),(3873,'english','184.72.210.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 04:30:40','2019-08-11 04:30:40'),(3874,'chemistry','66.249.88.116',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:14:03','2019-08-11 14:14:03'),(3875,'chemistry','157.55.39.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:28:36','2019-08-11 14:28:36'),(3876,'insurance','3.88.255.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 17:15:20','2019-08-11 17:15:20'),(3877,'english','197.242.117.204',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 21:39:05','2019-08-11 21:40:36'),(3878,'chemistry','207.46.13.52',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 04:20:20','2019-08-12 04:20:20'),(3879,'economics','34.227.176.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 20:07:33','2019-08-12 20:07:33'),(3880,'chemistry','105.112.16.68',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 08:45:00','2019-08-13 08:45:03'),(3881,'chemistry','46.229.168.141',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 22:26:44','2019-09-04 10:48:38'),(3882,'chemistry','34.204.200.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:43:45','2019-08-14 03:43:46'),(3883,'chemistry','18.205.192.78',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:52:28','2019-08-14 04:56:47'),(3884,'biology','54.162.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 12:09:34','2019-08-14 12:09:34'),(3885,'chemistry','154.120.99.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 15:57:20','2019-08-14 16:01:54'),(3886,'chemistry','105.112.98.5',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 00:49:21','2019-08-15 01:14:50'),(3887,'chemistry','197.210.61.7',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 15:41:08','2019-08-15 15:41:09'),(3888,'mathematics','41.203.78.198',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:01:08','2019-08-16 05:59:18'),(3889,'chemistry','207.46.13.149',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:44:55','2019-08-15 18:44:58'),(3890,'chemistry','207.46.13.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 19:29:33','2019-08-15 19:29:33'),(3891,'physics','41.203.78.198',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 06:16:07','2019-08-16 06:17:30'),(3892,'commerce','154.118.43.180',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 11:29:52','2019-08-16 11:29:52'),(3893,'accounting','54.198.77.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 15:23:17','2019-08-16 15:23:17'),(3894,'mathematics','197.242.99.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:04:35','2019-08-17 03:06:16'),(3895,'english','197.242.99.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:06:56','2019-08-17 03:06:56'),(3896,'chemistry','207.46.13.1',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 14:03:29','2019-08-17 14:03:30'),(3897,'crk','105.112.42.138',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 16:15:38','2019-08-17 16:15:41'),(3898,'chemistry','129.205.112.252',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:23:17','2019-08-17 22:29:43'),(3899,'english','129.205.112.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:27:47','2019-08-17 22:27:47'),(3900,'chemistry','197.242.101.185',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 13:44:15','2019-08-18 13:45:05'),(3901,'chemistry','18.232.124.77',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 14:54:17','2019-08-18 15:09:41'),(3902,'english','82.145.222.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:13:30','2019-08-18 20:13:30'),(3903,'physics','82.145.222.187',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:29','2019-08-18 20:14:41'),(3904,'biology','82.145.222.187',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:57','2019-08-18 20:18:29'),(3905,'chemistry','82.145.222.187',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:17:25','2019-08-18 20:20:03'),(3906,'chemistry','157.55.39.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 08:32:02','2019-08-19 08:32:02'),(3907,'chemistry','154.118.15.197',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 11:05:07','2019-08-19 11:07:21'),(3908,'chemistry','154.118.25.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 13:15:15','2019-08-19 13:15:15'),(3909,'chemistry','35.242.171.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 15:59:15','2019-08-19 15:59:20'),(3910,'chemistry','40.77.167.133',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 20:09:27','2019-08-19 20:09:27'),(3911,'chemistry','154.118.17.37',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 07:44:43','2019-08-20 07:44:57'),(3912,'chemistry','154.113.84.131',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 08:32:47','2019-08-20 08:33:28'),(3913,'mathematics','197.210.29.72',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 10:20:40','2019-08-20 10:21:02'),(3914,'chemistry','154.113.84.148',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 15:22:38','2019-08-20 15:24:56'),(3915,'chemistry','169.159.87.27',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 21:11:10','2019-08-20 21:11:12'),(3916,'physics','66.249.88.71',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-21 12:32:59','2019-08-21 12:33:01'),(3917,'englishlit','3.81.145.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 08:13:22','2019-08-22 08:13:22'),(3918,'chemistry','105.112.39.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 13:11:13','2019-08-22 13:14:10'),(3919,'biology','129.205.112.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:29:46','2019-08-22 14:29:46'),(3920,'mathematics','129.205.112.93',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:30:42','2019-08-22 14:32:55'),(3921,'english','129.205.112.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:36:50','2019-08-22 14:36:53'),(3922,'chemistry','41.184.168.107',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:19:24','2019-09-06 17:21:30'),(3923,'chemistry','41.58.210.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:22:34','2019-08-22 19:22:34'),(3924,'accounting','34.227.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:52:08','2019-08-22 19:52:08'),(3925,'chemistry','157.55.39.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 21:25:26','2019-08-22 21:25:26'),(3926,'chemistry','129.205.112.83',485,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 10:26:23','2019-08-23 10:47:40'),(3927,'english','197.242.102.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 14:25:28','2019-08-23 14:25:28'),(3928,'chemistry','207.46.13.154',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:07:03','2019-11-18 02:00:21'),(3929,'english','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:19','2019-08-23 20:31:22'),(3930,'geography','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:51','2019-08-23 20:31:54'),(3931,'physics','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:33:18','2019-08-23 20:33:21'),(3932,'government','129.205.112.109',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:34:13','2019-08-23 20:35:30'),(3933,'chemistry','129.205.112.109',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:37:45','2019-08-23 20:40:50'),(3934,'chemistry','40.77.167.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 09:58:33','2019-08-24 09:58:33'),(3935,'biology','197.210.62.41',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 10:11:54','2019-08-24 10:11:56'),(3936,'english','3.92.165.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 02:48:10','2019-08-26 02:48:10'),(3937,'chemistry','129.205.112.98',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 14:07:19','2019-08-27 09:07:12'),(3938,'englishlit','41.80.80.75',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:38:33','2019-08-26 16:38:36'),(3939,'mathematics','129.205.112.98',368,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:54:38','2019-08-27 18:32:30'),(3940,'physics','197.210.64.64',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 05:43:46','2019-08-27 05:43:48'),(3941,'chemistry','66.102.8.114',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 12:39:36','2019-08-27 12:39:38'),(3942,'chemistry','169.239.188.14',185,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 13:39:29','2019-08-27 13:43:17'),(3943,'mathematics','107.22.87.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:02:33','2019-08-28 05:02:33'),(3944,'chemistry','129.205.112.99',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:04:37','2019-08-28 12:15:39'),(3945,'chemistry','3.87.39.253',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 06:57:54','2019-08-28 06:57:55'),(3946,'physics','41.203.78.236',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 10:23:20','2019-08-29 07:46:26'),(3947,'english','129.205.112.99',15637,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 11:37:09','2019-09-01 08:17:00'),(3948,'mathematics','129.205.112.99',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:19:14','2019-09-01 05:59:18'),(3949,'commerce','129.205.112.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:22:31','2019-08-28 12:22:34'),(3950,'chemistry','207.46.13.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-29 11:21:14','2019-08-29 11:21:14'),(3951,'chemistry','40.77.167.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-30 05:57:46','2019-08-30 05:57:46'),(3952,'chemistry','66.249.83.64',25,'',NULL,'',NULL,NULL,NULL,'','','2019-08-30 11:25:31','2019-08-30 11:25:32'),(3953,'chemistry','157.55.39.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-31 02:12:18','2019-08-31 02:12:18'),(3954,'chemistry','197.210.8.81',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 08:57:11','2019-08-31 08:59:21'),(3955,'mathematics','18.212.178.244',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 09:18:17','2019-08-31 09:18:17'),(3956,'chemistry','197.255.172.32',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 11:43:45','2019-08-31 11:43:45'),(3957,'accounting','129.205.112.99',5,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 16:55:58','2019-08-31 16:55:59'),(3958,'biology','129.205.112.99',45,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 16:56:17','2019-08-31 17:39:24'),(3959,'chemistry','105.112.46.156',8,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 17:20:01','2019-08-31 17:20:21'),(3960,'chemistry','41.190.3.191',48,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 19:13:59','2019-08-31 19:17:54'),(3961,'chemistry','35.192.166.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-01 13:20:44','2019-09-01 13:20:44'),(3962,'chemistry','154.66.37.174',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 06:43:23','2019-09-02 06:43:56'),(3963,'chemistry','197.253.59.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 07:37:32','2019-09-02 07:37:32'),(3964,'english','105.112.66.6',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 11:05:53','2019-09-02 11:05:53'),(3965,'chemistry','105.112.75.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 15:41:26','2019-09-02 15:41:56'),(3966,'chemistry','54.36.150.178',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 02:18:15','2019-09-03 02:18:18'),(3967,'physics','197.210.28.217',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 05:11:07','2019-09-03 05:11:09'),(3968,'mathematics','3.88.69.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 11:24:03','2019-09-03 11:24:03'),(3969,'chemistry','197.210.226.232',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:32','2019-09-03 13:34:57'),(3970,'chemistry','197.210.227.69',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:56','2019-09-03 13:27:38'),(3971,'chemistry','197.210.226.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:25:32','2019-09-03 13:25:32'),(3972,'chemistry','197.210.227.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:33:08','2019-09-03 13:33:08'),(3973,'chemistry','197.210.226.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:36:44','2019-09-03 13:36:47'),(3974,'chemistry','54.36.150.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 23:05:24','2019-09-03 23:05:24'),(3975,'mathematics','54.221.189.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-04 18:49:49','2019-09-04 18:49:49'),(3976,'history','3.90.177.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:03:49','2019-09-05 06:03:49'),(3977,'mathematics','3.90.177.176',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:04:44','2019-09-05 06:04:44'),(3978,'accounting','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3979,'geography','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3980,'english','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:23'),(3981,'economics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3982,'mathematics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3983,'civiledu','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3984,'insurance','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3985,'chemistry','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3986,'currentaffairs','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3987,'englishlit','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3988,'history','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3989,'government','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3990,'biology','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3991,'chemistry','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3992,'englishlit','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3993,'geography','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3994,'economics','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3995,'irk','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3996,'civiledu','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3997,'chemistry','41.217.84.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:16:54','2019-09-05 16:16:54'),(3998,'chemistry','3.84.149.56',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:15','2019-09-05 16:17:16'),(3999,'chemistry','47.206.102.2',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:40','2019-09-05 16:18:25'),(4000,'chemistry','91.242.162.70',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:21','2019-09-06 12:27:22'),(4001,'mathematics','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:51','2019-09-07 12:05:12'),(4002,'chemistry','91.242.162.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:23:18','2019-09-06 15:33:50'),(4003,'mathematics','41.184.168.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:42:47','2019-09-06 15:42:47'),(4004,'mathematics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4005,'biology','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4006,'physics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4007,'chemistry','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4008,'englishlit','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4009,'economics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4010,'insurance','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4011,'english','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 05:35:36','2019-09-07 13:17:14'),(4012,'chemistry','129.205.112.115',71,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 08:22:52','2019-09-07 08:36:32'),(4013,'chemistry','154.118.11.75',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 19:29:07','2019-09-07 19:36:47'),(4014,'chemistry','41.190.3.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 21:38:56','2019-09-07 21:38:57'),(4015,'biology','154.118.37.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 05:09:59','2019-09-08 05:09:59'),(4016,'chemistry','77.88.5.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 09:42:20','2019-09-08 09:42:20'),(4017,'chemistry','207.46.13.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 14:03:52','2019-09-09 14:03:52'),(4018,'mathematics','54.209.217.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 18:28:02','2019-09-09 18:28:02'),(4019,'biology','54.226.212.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 01:20:10','2019-09-10 01:20:10'),(4020,'english','197.242.108.80',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 06:32:36','2019-09-10 06:32:36'),(4021,'economics','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:35:23','2019-09-10 16:35:24'),(4022,'english','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:36:16','2019-09-10 16:36:16'),(4023,'commerce','3.89.252.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 18:39:39','2019-09-10 18:39:39'),(4024,'chemistry','91.242.162.73',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:08:33','2019-10-24 12:14:06'),(4025,'physics','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4026,'chemistry','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4027,'englishlit','54.91.126.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:32:57'),(4028,'government','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4029,'crk','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4030,'civiledu','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4031,'history','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:09'),(4032,'chemistry','207.46.13.197',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:55:18','2019-09-10 19:55:18'),(4033,'chemistry','197.210.29.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 20:02:55','2019-09-10 20:02:55'),(4034,'accounting','18.234.153.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 22:03:30','2019-09-10 22:03:30'),(4035,'chemistry','110.44.120.215',208,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 01:19:49','2019-09-12 06:46:02'),(4036,'mathematics','110.44.120.215',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:04','2019-09-16 16:31:02'),(4037,'accounting','110.44.120.215',124,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:48','2019-09-13 05:09:09'),(4038,'physics','110.44.120.215',1180,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:45:48','2019-09-20 12:59:42'),(4039,'biology','110.44.120.215',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:53:41','2019-09-17 03:03:55'),(4040,'biology','110.44.120.206',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:08','2019-09-11 15:42:20'),(4041,'mathematics','110.44.120.206',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:16','2019-09-11 10:51:39'),(4042,'chemistry','110.44.120.206',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:48','2019-09-11 15:41:47'),(4043,'chemistry','129.56.92.16',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 13:46:20','2019-09-11 13:46:52'),(4044,'physics','66.249.64.176',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:39:39','2019-09-21 02:46:11'),(4045,'biology','66.249.64.178',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:49:48','2019-09-30 03:47:58'),(4046,'accounting','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:50:53','2019-09-11 16:50:55'),(4047,'mathematics','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:18','2019-09-11 16:51:19'),(4048,'chemistry','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:23','2019-09-11 16:51:24'),(4049,'biology','108.177.7.94',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:26','2019-09-11 16:54:23'),(4050,'biology','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:43','2019-09-11 16:51:45'),(4051,'chemistry','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:46','2019-09-11 16:51:47'),(4052,'physics','108.177.7.91',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:16','2019-09-11 16:53:33'),(4053,'accounting','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:49','2019-09-11 16:52:51'),(4054,'physics','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:54:16','2019-09-11 16:54:18'),(4055,'accounting','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:57:33','2019-09-11 16:57:34'),(4056,'chemistry','66.249.64.180',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:58:44','2019-09-17 21:57:53'),(4057,'accounting','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:07:30','2019-09-11 17:07:32'),(4058,'biology','104.132.0.101',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:23','2019-09-11 17:08:58'),(4059,'chemistry','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:50','2019-09-11 17:08:51'),(4060,'chemistry','34.236.170.225',11,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 17:38:25','2019-09-11 19:05:17'),(4061,'mathematics','35.243.2.1',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:39:59','2019-09-11 19:40:00'),(4062,'physics','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:09','2019-09-11 19:40:10'),(4063,'chemistry','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:40','2019-09-11 19:40:42'),(4064,'biology','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:53','2019-09-11 19:41:54'),(4065,'mathematics','35.243.2.2',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:59','2019-09-11 19:42:01'),(4066,'accounting','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:42:51','2019-09-11 19:42:53'),(4067,'mathematics','35.234.176.172',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:37:08','2019-09-11 22:37:10'),(4068,'physics','35.234.176.173',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:37:39','2019-09-11 22:37:41'),(4069,'biology','35.234.176.171',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:38:37','2019-09-11 22:38:39'),(4070,'chemistry','35.234.176.171',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:41:31','2019-09-11 22:41:33'),(4071,'currentaffairs','35.174.166.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 23:13:34','2019-09-11 23:13:34'),(4072,'mathematics','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:42','2019-09-12 00:09:58'),(4073,'biology','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:50','2019-09-12 00:09:22'),(4074,'accounting','108.177.6.58',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:09:14','2019-09-12 00:09:16'),(4075,'physics','108.177.6.58',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:11:56','2019-09-12 00:12:18'),(4076,'biology','103.10.28.200',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 01:50:53','2019-09-12 01:51:21'),(4077,'chemistry','216.10.240.90',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 03:25:50','2019-09-12 03:25:51'),(4078,'physics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:44:02','2019-09-12 06:45:27'),(4079,'chemistry','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:01','2019-09-12 06:46:03'),(4080,'biology','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:36','2019-09-12 06:46:38'),(4081,'mathematics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:48','2019-09-12 06:47:16'),(4082,'chemistry','41.184.239.224',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:00:01','2019-09-12 08:01:26'),(4083,'physics','121.220.192.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:50:39','2019-09-12 08:50:40'),(4084,'biology','1.144.106.173',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:20:55','2019-09-12 09:20:57'),(4085,'accounting','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:35:59','2019-09-12 09:36:01'),(4086,'mathematics','202.51.76.34',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:37:29','2019-09-13 05:07:49'),(4087,'mathematics','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:14','2019-09-12 09:55:15'),(4088,'biology','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:34','2019-09-12 09:55:36'),(4089,'mathematics','49.195.140.246',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:57','2019-09-12 09:55:59'),(4090,'biology','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:14:20','2019-09-12 10:14:21'),(4091,'mathematics','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:17:03','2019-09-12 10:17:04'),(4092,'physics','175.37.109.166',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:04:59','2019-09-12 11:09:15'),(4093,'mathematics','14.200.41.186',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:06:08','2019-09-12 11:06:10'),(4094,'mathematics','211.30.203.218',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:09:11','2019-09-12 11:09:13'),(4095,'physics','120.17.45.139',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 11:11:29','2019-09-12 11:11:31'),(4096,'chemistry','120.17.45.139',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:12:10','2019-09-12 11:12:11'),(4097,'biology','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:14:53','2019-09-12 11:14:55'),(4098,'mathematics','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:01','2019-09-12 11:17:03'),(4099,'chemistry','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:06','2019-09-12 11:17:09'),(4100,'mathematics','124.180.202.128',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:23:33','2019-09-12 11:23:35'),(4101,'mathematics','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:26:22','2019-09-12 11:26:24'),(4102,'biology','175.37.109.166',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:46:31','2019-09-12 11:47:01'),(4103,'biology','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:48:41','2019-09-12 11:48:43'),(4104,'mathematics','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:49:54','2019-09-12 11:49:56'),(4105,'biology','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:43:46','2019-09-12 14:43:47'),(4106,'physics','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:49:17','2019-09-12 14:49:19'),(4107,'biology','27.34.20.106',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:02','2019-09-12 14:54:04'),(4108,'chemistry','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:14','2019-09-12 14:54:16'),(4109,'physics','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:26','2019-09-12 14:54:28'),(4110,'physics','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:58:24','2019-09-12 14:58:26'),(4111,'biology','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:59:49','2019-09-12 14:59:51'),(4112,'chemistry','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:00:06','2019-09-12 15:00:08'),(4113,'biology','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:01:16','2019-09-12 15:01:18'),(4114,'physics','110.44.127.178',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:02','2019-09-12 15:29:03'),(4115,'physics','27.34.17.16',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:40','2019-09-12 15:30:08'),(4116,'physics','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:50:55','2019-09-12 15:50:57'),(4117,'biology','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:51:13','2019-09-12 15:51:15'),(4118,'chemistry','91.242.162.72',3,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 18:05:30','2019-09-12 18:20:23'),(4119,'chemistry','49.195.156.140',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:06:39','2019-09-12 19:06:41'),(4120,'biology','202.51.88.114',60,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:10:30','2019-09-12 19:16:01'),(4121,'biology','49.181.243.120',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 20:37:28','2019-09-12 20:37:58'),(4122,'chemistry','91.242.162.45',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:30:11','2019-09-12 23:30:11'),(4123,'physics','220.240.160.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:51:25','2019-09-12 23:51:26'),(4124,'chemistry','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:57:36','2019-09-12 23:57:37'),(4125,'biology','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:59:54','2019-09-12 23:59:56'),(4126,'mathematics','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 00:00:25','2019-09-13 00:00:27'),(4127,'biology','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:33:57','2019-09-13 01:33:58'),(4128,'mathematics','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:37:24','2019-09-13 01:37:26'),(4129,'physics','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:15:58','2019-09-13 02:15:59'),(4130,'accounting','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:16:14','2019-09-13 02:16:16'),(4131,'biology','27.34.17.16',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:07:26','2019-09-13 03:07:28'),(4132,'chemistry','141.8.132.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:10:44','2019-09-13 03:10:44'),(4133,'physics','1.144.105.17',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 04:06:29','2019-09-13 04:06:31'),(4134,'biology','125.254.44.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:00:53','2019-09-13 05:00:54'),(4135,'physics','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:08:24','2019-09-13 05:08:25'),(4136,'mathematics','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4137,'biology','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:15'),(4138,'government','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4139,'english','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4140,'economics','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4141,'insurance','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4142,'accounting','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4143,'currentaffairs','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4144,'chemistry','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4145,'history','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:17'),(4146,'englishlit','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4147,'physics','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:06','2019-09-13 06:03:07'),(4148,'physics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:16','2019-09-13 06:03:17'),(4149,'mathematics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:42','2019-09-13 06:03:43'),(4150,'chemistry','27.34.48.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:06:07','2019-09-13 06:09:13'),(4151,'biology','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:09:23','2019-09-13 06:09:24'),(4152,'commerce','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:50','2019-09-13 06:20:51'),(4153,'physics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4154,'government','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4155,'economics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4156,'irk','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4157,'currentaffairs','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4158,'history','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4159,'biology','175.35.106.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:16:45','2019-09-13 07:16:46'),(4160,'physics','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:29:45','2019-09-13 07:29:47'),(4161,'chemistry','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:31:28','2019-09-13 07:31:29'),(4162,'mathematics','27.34.70.161',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:32:08','2019-09-13 07:32:44'),(4163,'physics','1.41.245.225',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:14:08','2019-09-13 08:14:09'),(4164,'biology','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:40:42','2019-09-13 08:40:44'),(4165,'mathematics','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:45:42','2019-09-13 08:45:43'),(4166,'chemistry','110.150.214.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 09:32:23','2019-09-13 09:32:24'),(4167,'accounting','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:12','2019-09-13 11:01:14'),(4168,'mathematics','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:24','2019-09-13 11:01:25'),(4169,'physics','66.249.64.166',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:33:40','2019-09-13 14:33:41'),(4170,'accounting','66.249.64.180',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:39:00','2019-09-25 11:14:55'),(4171,'chemistry','220.244.110.40',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:15:30','2019-09-13 23:15:32'),(4172,'mathematics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:18','2019-09-13 23:46:20'),(4173,'physics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:45','2019-09-13 23:46:47'),(4174,'mathematics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:03:10','2019-09-14 01:03:12'),(4175,'physics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:04:12','2019-09-14 01:04:14'),(4176,'mathematics','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:11:39','2019-09-14 03:11:40'),(4177,'biology','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:12:05','2019-09-14 03:12:06'),(4178,'mathematics','3.92.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 06:23:58','2019-09-14 06:23:58'),(4179,'physics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:10:22','2019-09-14 08:10:23'),(4180,'mathematics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:11:18','2019-09-14 08:11:20'),(4181,'mathematics','211.27.254.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:53:20','2019-09-14 08:53:22'),(4182,'chemistry','41.86.6.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:55:03','2019-09-14 08:55:59'),(4183,'mathematics','66.249.66.212',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:03:19','2019-10-01 13:36:10'),(4184,'accounting','66.249.66.212',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:11:53','2019-10-10 06:34:01'),(4185,'biology','66.249.66.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:13:24','2019-10-09 01:01:54'),(4186,'chemistry','66.249.66.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:14:57','2019-10-29 04:35:40'),(4187,'physics','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:15:49','2019-10-10 06:52:10'),(4188,'chemistry','207.46.13.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:21:21','2019-09-14 13:21:21'),(4189,'chemistry','129.56.90.193',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:23:39','2019-09-14 13:25:42'),(4190,'chemistry','185.20.6.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:12:04','2019-09-14 14:12:04'),(4191,'chemistry','54.91.254.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:13:12','2019-09-14 14:13:12'),(4192,'chemistry','3.95.179.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:15:08','2019-09-14 14:15:08'),(4193,'mathematics','54.167.105.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 23:41:30','2019-09-14 23:41:30'),(4194,'physics','110.44.120.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 02:50:34','2019-09-15 02:50:36'),(4195,'chemistry','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:14:22','2019-09-15 04:15:04'),(4196,'biology','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:15:02','2019-09-15 04:15:37'),(4197,'accounting','113.199.203.102',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:16:18','2019-09-15 04:16:20'),(4198,'chemistry','35.172.100.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 07:24:14','2019-09-15 07:24:28'),(4199,'mathematics','54.221.170.133',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 13:27:05','2019-09-15 13:59:54'),(4200,'crk','54.221.170.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 14:16:11','2019-09-15 14:16:11'),(4201,'chemistry','54.36.148.104',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 18:59:31','2019-09-15 18:59:31'),(4202,'mathematics','34.207.243.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 19:16:51','2019-09-15 19:16:51'),(4203,'mathematics','47.30.248.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 04:20:11','2019-09-16 04:20:13'),(4204,'mathematics','49.195.29.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 06:12:19','2019-09-16 06:12:21'),(4205,'chemistry','157.51.26.93',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:06:39','2019-09-16 11:06:40'),(4206,'mathematics','41.86.152.178',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:19:00','2019-09-16 11:19:01'),(4207,'english','105.112.45.87',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 12:37:29','2019-09-16 12:37:56'),(4208,'mathematics','154.120.94.26',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 13:28:56','2019-09-16 13:28:57'),(4209,'physics','157.51.31.138',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-16 14:16:36','2019-09-16 14:17:04'),(4210,'chemistry','157.51.31.138',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 14:17:05','2019-09-16 14:17:32'),(4211,'physics','49.126.207.89',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:02:39','2019-09-16 16:12:06'),(4212,'chemistry','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:12:11','2019-09-16 16:12:12'),(4213,'biology','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:16:05','2019-09-16 16:16:06'),(4214,'chemistry','197.210.44.251',16,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:25:35','2019-09-16 16:28:49'),(4215,'chemistry','197.210.62.38',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:26','2019-09-16 16:29:26'),(4216,'chemistry','197.210.45.121',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:50','2019-09-16 16:29:50'),(4217,'mathematics','3.95.23.58',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:40:13','2019-09-16 16:40:13'),(4218,'chemistry','27.34.70.118',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:54:28','2019-09-17 01:54:29'),(4219,'physics','27.34.70.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:55:46','2019-09-17 01:57:21'),(4220,'physics','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:44:39','2019-09-17 06:44:41'),(4221,'biology','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:48:22','2019-09-17 06:48:23'),(4222,'physics','113.199.202.174',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:16:31','2019-09-17 07:16:33'),(4223,'biology','43.245.95.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:55:04','2019-09-17 07:57:24'),(4224,'chemistry','197.210.141.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 08:18:07','2019-09-17 08:18:07'),(4225,'physics','27.34.48.127',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-17 13:39:15','2019-09-17 13:39:17'),(4226,'chemistry','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:39:29','2019-09-17 13:39:30'),(4227,'biology','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:42:20','2019-09-17 13:42:22'),(4228,'chemistry','41.190.2.129',92,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:53:44','2019-09-18 12:00:00'),(4229,'mathematics','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:56:08','2019-09-18 11:06:40'),(4230,'mathematics','34.230.32.127',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 19:04:41','2019-09-17 19:04:41'),(4231,'crk','105.112.52.75',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 20:33:57','2019-09-17 20:34:00'),(4232,'mathematics','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 21:53:45','2019-09-17 21:53:47'),(4233,'biology','66.249.64.180',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-17 22:13:17','2019-09-25 11:22:46'),(4234,'chemistry','91.242.162.56',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 00:16:39','2019-09-18 00:16:39'),(4235,'physics','49.181.255.251',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:11:15','2019-09-18 02:11:47'),(4236,'chemistry','49.181.255.251',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:12:23','2019-09-18 02:12:24'),(4237,'physics','110.44.127.203',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:21:31','2019-09-18 02:21:32'),(4238,'chemistry','40.77.167.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 03:04:48','2019-09-18 03:04:48'),(4239,'chemistry','49.180.134.8',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 04:19:37','2019-09-18 04:19:38'),(4240,'government','41.190.2.129',658,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-18 04:37:51','2019-09-18 11:14:19'),(4241,'english','35.233.231.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 05:38:18','2019-09-18 05:38:18'),(4242,'english','41.190.2.129',77,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:17:49','2019-09-18 09:59:30'),(4243,'biology','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:26:52','2019-09-18 11:11:13'),(4244,'chemistry','197.210.226.214',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 10:04:09','2019-09-18 10:04:09'),(4245,'english','188.29.164.19',28,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:23:26','2019-09-18 11:25:54'),(4246,'commerce','41.190.2.129',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:28:08','2019-09-18 11:56:09'),(4247,'chemistry','66.249.83.20',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 11:46:32','2019-11-06 14:40:23'),(4248,'english','105.112.41.25',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:49:33','2019-09-18 11:49:33'),(4249,'chemistry','105.112.38.22',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:07:36','2019-09-18 12:07:36'),(4250,'english','105.112.38.22',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:09:51','2019-09-18 12:11:42'),(4251,'chemistry','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:22','2019-09-18 12:49:23'),(4252,'chemistry','157.55.39.178',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:23','2019-09-18 12:49:23'),(4253,'biology','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:38','2019-09-18 12:49:38'),(4254,'english','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:50:03','2019-09-18 12:50:03'),(4255,'chemistry','197.210.65.154',21,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:11:00','2019-09-18 14:14:29'),(4256,'government','197.210.65.154',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:15:12','2019-09-18 14:17:53'),(4257,'government','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:22:02','2019-09-18 14:22:03'),(4258,'chemistry','41.190.2.121',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:24:39','2019-09-18 14:24:39'),(4259,'commerce','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:25:26','2019-09-18 14:25:26'),(4260,'english','197.149.125.34',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:29:51','2019-09-18 15:03:08'),(4261,'economics','105.112.29.230',10,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:08:25','2019-09-18 17:49:38'),(4262,'commerce','41.190.30.252',119,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 15:20:43','2019-09-19 15:57:17'),(4263,'commerce','105.112.29.213',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:29:15','2019-09-18 15:29:15'),(4264,'government','41.190.30.252',245,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:07:56','2019-09-20 12:55:06'),(4265,'english','105.112.41.242',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:10:59','2019-09-18 16:12:46'),(4266,'english','41.190.30.252',301,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:30:17','2019-09-20 12:50:25'),(4267,'mathematics','41.190.2.209',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:45:19','2019-09-18 16:45:20'),(4268,'chemistry','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:05','2019-09-19 15:57:38'),(4269,'mathematics','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:20','2019-09-19 15:57:59'),(4270,'biology','41.190.30.252',602,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:26:22','2019-09-20 12:54:08'),(4271,'chemistry','150.70.167.82',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 18:31:12','2019-09-26 00:57:44'),(4272,'chemistry','40.77.167.63',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 01:09:50','2020-01-08 07:44:01'),(4273,'mathematics','41.217.116.241',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 03:47:25','2019-09-19 03:54:42'),(4274,'government','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:20:51','2019-09-19 07:20:52'),(4275,'biology','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:22:21','2019-09-19 07:22:22'),(4276,'mathematics','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4277,'chemistry','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4278,'englishlit','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4279,'crk','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4280,'geography','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4281,'currentaffairs','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4282,'history','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:55'),(4283,'english','45.222.100.155',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:45:54','2019-09-19 08:47:36'),(4284,'biology','27.34.25.22',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 10:47:54','2019-09-19 10:47:56'),(4285,'physics','27.34.70.49',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 12:46:48','2019-09-19 13:37:35'),(4286,'chemistry','41.138.163.117',264,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 16:24:08','2019-09-20 08:36:52'),(4287,'physics','27.34.70.50',260,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-19 17:28:13','2019-09-19 18:55:53'),(4288,'chemistry','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 17:50:14','2019-09-19 17:50:15'),(4289,'biology','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 18:55:47','2019-09-19 18:55:48'),(4290,'chemistry','54.36.148.175',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 20:34:08','2019-09-19 20:34:08'),(4291,'english','41.217.116.241',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 05:04:08','2019-09-20 05:04:56'),(4292,'biology','110.44.125.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:16:05','2019-09-20 13:16:59'),(4293,'physics','103.95.16.239',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:20','2019-09-20 13:33:21'),(4294,'physics','103.94.222.78',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:40','2019-09-20 13:33:42'),(4295,'physics','103.58.145.248',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:47:59','2019-09-20 14:02:35'),(4296,'chemistry','103.58.145.248',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:49:11','2019-09-20 13:49:13'),(4297,'physics','27.34.26.105',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:02','2019-09-20 13:51:04'),(4298,'biology','27.34.26.105',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:12','2019-09-20 13:53:00'),(4299,'biology','103.58.145.248',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:49','2019-09-20 13:58:53'),(4300,'physics','27.34.70.223',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 14:15:53','2019-09-20 14:15:54'),(4301,'biology','27.34.104.212',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:24','2019-09-20 15:10:26'),(4302,'biology','27.34.69.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:35','2019-09-20 15:10:36'),(4303,'physics','43.228.192.35',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:33:07','2019-09-27 00:26:30'),(4304,'mathematics','43.228.192.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:34:07','2019-09-20 15:36:30'),(4305,'accounting','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:08','2019-09-20 18:55:09'),(4306,'englishlit','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4307,'government','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4308,'geography','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4309,'irk','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4310,'civiledu','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4311,'history','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4312,'biology','103.95.16.185',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 19:02:51','2019-09-20 19:02:52'),(4313,'chemistry','93.158.166.147',2,'','NG','','Lagos',NULL,NULL,'','','2019-09-20 20:08:32','2019-10-24 17:47:31'),(4314,'physics','27.34.25.249',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-20 22:44:30','2019-09-20 22:44:31'),(4315,'biology','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:44:50','2019-09-20 22:44:51'),(4316,'chemistry','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:46:10','2019-09-20 22:46:12'),(4317,'chemistry','35.173.47.43',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 00:22:18','2019-09-21 00:22:22'),(4318,'mathematics','66.249.64.178',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 02:47:16','2019-09-21 02:47:18'),(4319,'chemistry','3.81.148.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:13:38','2019-09-21 05:13:46'),(4320,'chemistry','154.120.114.154',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:17:33','2019-09-21 06:18:06'),(4321,'chemistry','54.89.142.238',106,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 08:00:06','2019-09-21 08:09:05'),(4322,'chemistry','91.242.162.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 11:12:15','2019-09-21 11:12:15'),(4323,'commerce','41.190.31.67',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:09:29','2019-09-21 19:06:59'),(4324,'government','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:11:30','2019-09-21 15:11:31'),(4325,'mathematics','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:12:57','2019-09-21 15:12:58'),(4326,'chemistry','105.112.53.39',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 18:24:08','2019-09-21 18:28:24'),(4327,'english','197.210.44.0',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 20:50:21','2019-09-21 20:50:21'),(4328,'mathematics','18.234.75.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 21:50:19','2019-09-21 21:50:19'),(4329,'mathematics','34.207.140.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 22:36:26','2019-09-21 22:36:26'),(4330,'biology','27.34.68.44',36,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:18'),(4331,'biology','27.34.68.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:16'),(4332,'chemistry','34.228.212.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 07:07:50','2019-09-22 07:07:50'),(4333,'chemistry','91.242.162.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 09:55:37','2019-09-22 09:55:37'),(4334,'commerce','41.190.3.118',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 10:30:11','2019-09-22 10:32:00'),(4335,'mathematics','35.175.238.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 22:29:35','2019-09-22 22:29:35'),(4336,'biology','103.232.154.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 01:46:19','2019-09-23 01:46:20'),(4337,'biology','27.34.104.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 02:47:02','2019-09-23 02:47:03'),(4338,'mathematics','105.112.27.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 15:37:49','2019-09-23 15:37:50'),(4339,'chemistry','154.113.86.210',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:52:59','2019-09-24 08:58:26'),(4340,'mathematics','154.113.86.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:58:49','2019-09-24 08:58:49'),(4341,'mathematics','154.113.86.202',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 09:42:16','2019-09-24 09:42:41'),(4342,'currentaffairs','54.173.205.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 12:53:57','2019-09-24 12:53:57'),(4343,'english','105.112.52.225',21,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:28:15','2019-09-24 16:49:26'),(4344,'biology','105.112.52.225',663,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:30:16','2019-09-24 14:54:54'),(4345,'chemistry','105.112.52.225',22,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:32:07','2019-09-24 15:00:30'),(4346,'currentaffairs','105.112.52.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 13:34:54','2019-09-24 13:34:54'),(4347,'commerce','105.112.52.225',598,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:30:24','2019-09-24 14:57:46'),(4348,'accounting','105.112.52.225',341,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:33:47','2019-09-24 14:59:43'),(4349,'physics','105.112.52.225',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:55:31','2019-09-24 15:02:06'),(4350,'mathematics','105.112.52.225',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:58:41','2019-09-24 14:58:42'),(4351,'english','41.190.31.234',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 15:47:34','2019-09-24 15:47:34'),(4352,'physics','54.198.206.199',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 21:19:56','2019-09-24 21:19:56'),(4353,'government','52.5.110.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 02:40:21','2019-09-25 02:40:21'),(4354,'biology','105.112.41.33',286,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 03:16:07','2019-09-25 12:05:04'),(4355,'english','154.118.20.99',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 04:50:44','2019-09-25 04:58:16'),(4356,'physics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 05:48:27','2019-09-25 05:48:29'),(4357,'mathematics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 07:16:11','2019-09-25 07:16:13'),(4358,'accounting','105.112.41.33',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:01','2019-09-25 10:01:11'),(4359,'mathematics','105.112.41.33',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:41','2019-09-25 09:14:48'),(4360,'physics','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:25:33','2019-09-25 11:45:37'),(4361,'chemistry','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:53:46','2019-09-25 08:53:47'),(4362,'government','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:02:04','2019-09-25 09:02:04'),(4363,'commerce','105.112.41.33',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:12:58','2019-09-25 09:46:15'),(4364,'english','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:24:47','2019-09-25 09:45:39'),(4365,'history','54.92.191.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 16:07:48','2019-09-25 16:07:48'),(4366,'biology','154.118.42.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 21:32:52','2019-09-25 21:32:53'),(4367,'chemistry','91.242.162.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 03:32:45','2019-09-26 03:54:55'),(4368,'english','154.118.17.103',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 07:55:26','2019-09-26 07:58:00'),(4369,'chemistry','37.9.87.217',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 08:32:29','2019-09-28 02:46:55'),(4370,'civiledu','105.112.44.193',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:35:16','2019-09-26 09:59:45'),(4371,'insurance','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:22','2019-09-26 09:59:23'),(4372,'currentaffairs','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:32','2019-09-26 09:59:32'),(4373,'chemistry','105.112.44.193',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:04:54','2019-09-26 11:38:07'),(4374,'biology','105.112.44.193',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:20','2019-09-26 19:16:16'),(4375,'englishlit','105.112.44.193',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:28','2019-09-26 11:34:05'),(4376,'physics','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:10:00','2019-09-26 11:29:36'),(4377,'accounting','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:14:27','2019-09-26 10:17:13'),(4378,'irk','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:33:54','2019-09-26 10:33:54'),(4379,'government','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:01:08','2019-09-26 11:01:09'),(4380,'commerce','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:28:09','2019-09-26 11:28:10'),(4381,'chemistry','157.55.39.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 18:38:53','2019-11-24 22:31:16'),(4382,'chemistry','154.118.37.164',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:42:25','2019-09-26 21:43:27'),(4383,'mathematics','154.118.37.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:43:52','2019-09-26 21:43:52'),(4384,'government','52.73.45.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 00:37:59','2019-09-27 00:37:59'),(4385,'irk','54.175.103.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 05:05:42','2019-09-27 05:05:42'),(4386,'chemistry','36.99.136.130',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4387,'chemistry','111.7.100.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4388,'chemistry','111.7.100.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:44','2019-10-09 11:27:44'),(4389,'physics','49.244.242.12',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:00:55','2019-09-27 12:00:56'),(4390,'chemistry','157.55.39.74',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:45:44','2019-09-27 12:45:44'),(4391,'english','197.210.54.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 17:55:01','2019-09-27 17:55:01'),(4392,'economics','54.234.192.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 00:10:36','2019-09-28 00:10:36'),(4393,'englishlit','54.91.218.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 02:43:56','2019-09-28 02:43:56'),(4394,'english','154.120.93.57',595,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:40:25','2019-10-01 11:59:48'),(4395,'biology','154.120.93.57',225,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:57:15','2019-09-28 16:09:59'),(4396,'chemistry','105.112.23.210',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:27:45','2019-09-28 11:29:58'),(4397,'physics','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:20','2019-09-28 11:55:21'),(4398,'accounting','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:43','2019-09-28 11:55:45'),(4399,'englishlit','54.172.49.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 15:59:20','2019-09-28 15:59:20'),(4400,'chemistry','154.120.93.57',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 16:06:01','2019-09-28 16:08:44'),(4401,'biology','171.76.250.218',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 18:56:35','2019-09-28 18:58:46'),(4402,'mathematics','105.112.11.104',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 20:48:14','2019-09-28 20:48:14'),(4403,'mathematics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:28'),(4404,'biology','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:29'),(4405,'physics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4406,'chemistry','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4407,'crk','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4408,'economics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4409,'civiledu','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4410,'civiledu','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 23:37:51','2019-09-28 23:37:51'),(4411,'chemistry','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 00:03:54','2019-09-29 00:03:54'),(4412,'physics','54.224.133.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:24:13','2019-09-29 01:52:53'),(4413,'english','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4414,'mathematics','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4415,'accounting','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4416,'crk','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4417,'civiledu','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:54'),(4418,'insurance','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:54','2019-09-29 01:52:54'),(4419,'physics','3.95.189.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 02:51:59','2019-09-29 02:51:59'),(4420,'chemistry','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 06:16:54','2019-09-29 06:16:56'),(4421,'physics','93.71.107.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:18','2019-09-29 07:40:10'),(4422,'chemistry','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:31','2019-09-29 07:39:32'),(4423,'biology','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:40:23','2019-09-29 07:40:25'),(4424,'mathematics','154.120.93.57',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:15:50','2019-09-29 18:43:31'),(4425,'commerce','154.120.93.57',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:31:37','2019-09-29 18:37:10'),(4426,'chemistry','5.255.250.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 10:22:17','2019-10-15 18:07:00'),(4427,'chemistry','107.167.107.151',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:05','2019-09-29 13:44:39'),(4428,'chemistry','105.112.113.181',90,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:22','2019-09-29 13:42:00'),(4429,'mathematics','105.112.113.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:35:38','2019-09-29 13:35:38'),(4430,'chemistry','36.252.98.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:43:36','2019-09-29 13:43:38'),(4431,'chemistry','82.145.220.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 18:07:39','2019-09-29 18:07:47'),(4432,'chemistry','129.56.100.60',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:15:36','2019-09-30 09:16:57'),(4433,'english','129.56.100.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:16:16','2019-09-30 09:16:25'),(4434,'government','41.190.2.44',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:13:45','2019-09-30 14:15:39'),(4435,'biology','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:04','2019-09-30 13:57:15'),(4436,'mathematics','41.190.2.44',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:57','2019-09-30 14:29:55'),(4437,'chemistry','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:43:01','2019-09-30 17:46:58'),(4438,'english','41.190.2.44',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:45:04','2019-09-30 17:49:27'),(4439,'commerce','41.190.2.44',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:54:47','2019-09-30 18:56:36'),(4440,'history','54.147.150.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 15:44:23','2019-09-30 15:44:23'),(4441,'government','41.58.215.64',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:08:17','2019-09-30 18:08:17'),(4442,'mathematics','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:30:32','2019-09-30 18:30:33'),(4443,'government','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:31:38','2019-09-30 18:31:38'),(4444,'biology','27.33.202.67',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 00:15:27','2019-10-01 00:15:29'),(4445,'chemistry','197.210.63.23',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 06:59:39','2019-10-01 07:17:32'),(4446,'physics','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:29:40','2019-10-26 17:47:17'),(4447,'biology','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:39:21','2019-10-12 01:46:00'),(4448,'chemistry','197.210.246.222',930,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 14:56:07','2019-10-08 18:45:58'),(4449,'chemistry','196.220.144.2',702,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 15:04:34','2019-10-06 18:10:34'),(4450,'physics','171.76.168.198',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 20:07:42','2019-10-01 20:07:43'),(4451,'english','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4452,'commerce','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4453,'chemistry','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4454,'economics','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4455,'insurance','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4456,'currentaffairs','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4457,'history','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:35'),(4458,'english','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4459,'commerce','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4460,'englishlit','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4461,'government','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4462,'crk','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4463,'insurance','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4464,'currentaffairs','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:34'),(4465,'english','154.118.21.211',125,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 07:40:32','2019-10-02 08:32:13'),(4466,'chemistry','41.184.176.252',1053,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 10:36:18','2020-01-27 12:19:42'),(4467,'accounting','54.84.164.37',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 12:49:33','2019-10-02 12:49:33'),(4468,'chemistry','3.87.61.43',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-02 13:16:54','2019-10-02 13:16:57'),(4469,'english','197.210.246.222',520,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:48:04','2019-10-08 18:55:26'),(4470,'mathematics','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:50:53','2019-10-02 19:50:56'),(4471,'history','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:52:48','2019-10-02 19:52:51'),(4472,'english','196.220.144.2',291,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:15:37','2019-10-06 20:24:53'),(4473,'mathematics','196.220.144.2',1403,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:35:07','2019-10-06 18:58:12'),(4474,'physics','196.220.144.2',960,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:39:30','2019-10-06 19:09:01'),(4475,'economics','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:50:04','2019-10-08 18:48:36'),(4476,'biology','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:52:35','2019-10-08 18:56:29'),(4477,'commerce','197.210.246.222',320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:56:17','2019-10-02 20:58:19'),(4478,'accounting','197.210.246.222',760,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:58:36','2019-10-08 18:48:07'),(4479,'chemistry','100.43.90.108',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 03:16:03','2019-10-04 02:08:43'),(4480,'physics','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:07','2019-10-03 05:18:08'),(4481,'chemistry','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:34','2019-10-03 05:18:36'),(4482,'english','154.120.87.191',165,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 06:04:34','2019-10-03 16:10:48'),(4483,'english','35.210.215.17',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 07:46:05','2019-10-03 07:46:05'),(4484,'chemistry','5.255.250.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 09:44:47','2019-10-03 09:44:47'),(4485,'chemistry','105.112.41.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 10:51:00','2019-10-03 10:51:26'),(4486,'physics','54.242.236.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 13:11:23','2019-10-03 13:11:23'),(4487,'chemistry','207.46.13.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 16:53:40','2019-10-03 16:53:40'),(4488,'currentaffairs','3.82.243.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 21:55:12','2019-10-03 21:55:12'),(4489,'english','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 05:55:09','2019-10-04 06:29:52'),(4490,'englishlit','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:24:38','2019-10-04 06:29:57'),(4491,'insurance','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:29:57','2019-10-04 06:32:40'),(4492,'government','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:15','2019-10-04 06:33:46'),(4493,'currentaffairs','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:33','2019-10-04 06:32:04'),(4494,'crk','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:31:19','2019-10-04 06:33:25'),(4495,'commerce','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:32:20','2019-10-04 06:33:41'),(4496,'english','41.217.46.141',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 07:54:54','2019-10-04 09:02:54'),(4497,'government','3.85.89.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 09:20:47','2019-10-04 09:20:47'),(4498,'mathematics','3.87.186.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 11:42:15','2019-10-04 11:42:15'),(4499,'english','197.210.44.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:52:50','2019-10-04 14:55:58'),(4500,'mathematics','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:55:40','2019-10-04 14:55:40'),(4501,'chemistry','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:01:20','2019-10-04 15:01:20'),(4502,'biology','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:10:50','2019-10-04 15:10:51'),(4503,'englishlit','196.220.144.2',1080,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-04 21:36:39','2019-10-06 19:21:44'),(4504,'government','196.220.144.2',1001,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:40:51','2019-10-06 19:06:34'),(4505,'geography','196.220.144.2',1320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:43:47','2019-10-06 19:15:16'),(4506,'civiledu','196.220.144.2',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:48:25','2019-10-04 21:51:04'),(4507,'history','52.206.150.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 23:32:16','2019-10-04 23:32:16'),(4508,'physics','119.160.67.57',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 03:40:07','2019-10-05 03:40:08'),(4509,'english','41.217.100.83',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 05:04:25','2019-10-05 06:01:53'),(4510,'chemistry','54.36.149.48',47,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-05 06:27:28','2020-05-06 15:23:56'),(4511,'irk','52.205.10.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 13:25:19','2019-10-05 13:25:19'),(4512,'english','154.118.67.81',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 18:02:59','2019-10-05 20:13:49'),(4513,'physics','110.44.115.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 02:22:30','2019-10-06 02:22:31'),(4514,'mathematics','105.112.17.47',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 05:36:53','2019-10-06 05:37:17'),(4515,'english','41.217.97.111',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:14:35','2019-10-06 11:53:33'),(4516,'government','54.224.0.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:26:54','2019-10-06 06:26:54'),(4517,'irk','54.243.12.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 11:38:30','2019-10-06 11:38:30'),(4518,'economics','196.220.144.2',521,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-06 18:16:49','2019-10-06 19:02:58'),(4519,'history','174.129.83.246',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 18:59:36','2019-10-06 18:59:36'),(4520,'accounting','196.220.144.2',280,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 19:24:55','2019-10-06 19:26:22'),(4521,'english','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:32','2019-10-07 02:07:33'),(4522,'mathematics','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4523,'physics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4524,'englishlit','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4525,'crk','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4526,'economics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4527,'civiledu','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4528,'commerce','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4529,'accounting','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4530,'geography','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4531,'irk','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4532,'economics','18.204.201.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 07:02:49','2019-10-07 07:02:49'),(4533,'english','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4534,'biology','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4535,'englishlit','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4536,'crk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4537,'geography','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4538,'economics','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:11'),(4539,'irk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4540,'insurance','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4541,'currentaffairs','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4542,'history','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4543,'chemistry','40.77.167.166',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 14:48:22','2020-04-16 19:24:46'),(4544,'english','154.120.92.245',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:16:45','2019-10-08 08:28:43'),(4545,'chemistry','207.46.13.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:29:00','2019-10-08 08:29:00'),(4546,'chemistry','197.210.60.68',198,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 13:13:26','2019-10-08 13:25:10'),(4547,'chemistry','91.242.162.77',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 17:35:58','2019-10-08 18:04:36'),(4548,'englishlit','197.210.246.222',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-08 18:46:58','2019-10-08 18:47:31'),(4549,'biology','196.220.144.2',80,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:06:19','2019-10-08 19:06:44'),(4550,'commerce','196.220.144.2',240,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:07:20','2019-10-08 19:08:52'),(4551,'chemistry','66.249.66.208',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 00:58:25','2019-10-26 17:44:22'),(4552,'mathematics','66.249.66.208',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 01:11:04','2019-10-26 17:53:47'),(4553,'chemistry','34.229.149.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 04:15:06','2019-10-09 04:15:06'),(4554,'commerce','54.242.23.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 06:59:31','2019-10-09 06:59:31'),(4555,'chemistry','36.99.136.139',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:44'),(4556,'chemistry','36.99.136.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:43'),(4557,'chemistry','54.36.150.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 12:06:00','2019-10-09 12:06:00'),(4558,'chemistry','35.175.120.211',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 02:34:06','2019-10-10 04:07:28'),(4559,'insurance','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:18','2019-11-12 01:51:04'),(4560,'accounting','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:22','2019-11-12 01:51:08'),(4561,'englishlit','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:25','2019-11-12 01:51:13'),(4562,'government','198.187.29.38',1680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:30','2019-11-12 01:51:18'),(4563,'currentaffairs','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:34','2019-11-12 01:51:24'),(4564,'economics','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:38','2019-11-12 01:51:29'),(4565,'geography','198.187.29.38',1760,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:43','2019-11-12 01:51:33'),(4566,'english','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:50','2019-11-12 01:51:37'),(4567,'mathematics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:54','2019-11-12 01:51:41'),(4568,'commerce','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:58','2019-11-12 01:51:45'),(4569,'biology','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:09','2019-11-12 01:51:48'),(4570,'physics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:13','2019-11-12 01:51:52'),(4571,'chemistry','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:17','2019-11-12 01:51:56'),(4572,'crk','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:20','2019-11-12 01:52:00'),(4573,'history','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:24','2019-11-12 01:52:04'),(4574,'irk','198.187.29.38',810,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:35','2019-11-12 01:52:07'),(4575,'civiledu','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:38','2019-11-12 01:52:11'),(4576,'english','54.147.174.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-11 01:20:30','2019-10-11 01:20:30'),(4577,'chemistry','105.112.51.58',49,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 09:52:44','2019-10-11 09:54:21'),(4578,'chemistry','182.140.244.74',11,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 11:22:18','2019-10-11 11:22:28'),(4579,'mathematics','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4580,'accounting','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4581,'biology','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4582,'government','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4583,'crk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4584,'geography','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4585,'irk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4586,'insurance','54.224.74.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 00:50:18','2019-10-12 00:50:18'),(4587,'mathematics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:33:21','2019-10-12 01:33:22'),(4588,'physics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:39:23','2019-10-12 01:39:25'),(4589,'accounting','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:48:29','2019-10-26 17:37:06'),(4590,'currentaffairs','105.112.40.99',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 05:00:59','2019-10-12 05:00:59'),(4591,'biology','105.112.40.100',10,'',NULL,'',NULL,NULL,NULL,'','','2019-10-12 16:50:45','2019-10-12 16:51:53'),(4592,'currentaffairs','3.87.162.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 01:34:03','2019-10-13 01:34:03'),(4593,'commerce','54.83.149.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 06:55:56','2019-10-13 06:55:56'),(4594,'chemistry','41.217.58.69',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 07:04:52','2019-10-13 09:28:40'),(4595,'crk','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:00','2019-10-13 11:14:03'),(4596,'chemistry','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:11','2019-10-13 11:14:14'),(4597,'currentaffairs','18.212.242.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:31:55','2019-10-13 11:31:55'),(4598,'biology','171.76.195.83',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:53:18','2019-10-13 11:53:45'),(4599,'physics','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:13','2019-10-13 12:00:14'),(4600,'chemistry','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:35','2019-10-13 12:00:36'),(4601,'government','54.89.105.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 14:56:23','2019-10-13 14:56:23'),(4602,'chemistry','129.56.105.4',53,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:17:44','2019-10-13 15:21:07'),(4603,'mathematics','129.56.105.4',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:23:57','2019-10-13 15:24:00'),(4604,'chemistry','3.92.76.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 02:02:14','2019-10-14 02:02:17'),(4605,'history','3.94.214.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 04:11:49','2019-10-14 04:11:49'),(4606,'chemistry','197.210.64.86',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 07:32:24','2019-10-14 07:32:27'),(4607,'history','3.89.135.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 08:16:22','2019-10-14 08:16:22'),(4608,'chemistry','157.55.39.168',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 09:16:59','2019-10-14 09:17:00'),(4609,'mathematics','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:57:53','2019-10-14 16:35:36'),(4610,'commerce','41.190.30.180',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:59:39','2019-10-14 16:45:26'),(4611,'government','41.190.30.180',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:00:51','2019-10-14 16:25:28'),(4612,'biology','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:03:11','2019-10-14 16:35:03'),(4613,'chemistry','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:09:18','2019-10-14 16:33:53'),(4614,'english','41.190.30.180',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:13:01','2019-10-14 16:38:31'),(4615,'mathematics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4616,'mathematics','3.88.110.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4617,'englishlit','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4618,'commerce','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4619,'crk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4620,'accounting','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4621,'biology','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4622,'economics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4623,'irk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4624,'geography','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4625,'insurance','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4626,'currentaffairs','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4627,'mathematics','18.215.162.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 07:32:53','2019-10-15 07:32:53'),(4628,'chemistry','105.112.26.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 11:12:59','2019-10-15 11:12:59'),(4629,'english','34.227.191.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 14:04:54','2019-10-15 14:04:54'),(4630,'irk','34.207.92.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 16:11:12','2019-10-15 16:11:12'),(4631,'english','105.112.120.131',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:31:08','2019-10-16 00:50:07'),(4632,'physics','105.112.120.131',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:33:25','2019-10-16 00:33:25'),(4633,'history','54.237.235.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 03:43:24','2019-10-16 03:43:24'),(4634,'government','41.190.31.103',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:29:16','2019-10-16 06:29:16'),(4635,'biology','41.190.31.103',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:30:16','2019-10-16 06:31:46'),(4636,'economics','35.173.136.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 11:30:36','2019-10-16 11:30:36'),(4637,'commerce','3.86.101.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 13:52:29','2019-10-16 13:52:29'),(4638,'english','105.112.46.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 16:05:22','2019-10-16 16:08:03'),(4639,'insurance','34.203.203.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 14:09:34','2019-10-17 14:09:34'),(4640,'chemistry','3.85.245.126',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 17:30:44','2019-10-17 17:55:33'),(4641,'english','41.217.98.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 22:28:02','2019-10-17 22:28:02'),(4642,'english','41.217.89.22',145,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 04:35:09','2019-10-18 06:06:03'),(4643,'chemistry','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:23:36','2019-10-18 06:23:36'),(4644,'accounting','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:59:21','2019-10-18 06:59:21'),(4645,'commerce','154.120.107.217',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 07:40:00','2019-10-18 07:41:16'),(4646,'commerce','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 08:40:41','2019-10-18 08:40:41'),(4647,'mathematics','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 09:07:15','2019-10-18 09:07:15'),(4648,'chemistry','41.191.105.90',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 15:48:28','2019-10-18 15:49:58'),(4649,'mathematics','54.234.162.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 18:25:03','2019-10-18 18:25:03'),(4650,'english','105.112.46.232',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 19:58:44','2019-10-20 16:01:53'),(4651,'mathematics','105.112.46.232',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 20:37:17','2019-10-18 20:37:38'),(4652,'english','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4653,'mathematics','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4654,'accounting','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4655,'englishlit','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4656,'biology','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4657,'government','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4658,'chemistry','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4659,'geography','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4660,'irk','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4661,'civiledu','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4662,'currentaffairs','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:13'),(4663,'government','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:41:48','2019-10-19 05:41:48'),(4664,'english','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:45:20','2019-10-19 05:45:20'),(4665,'mathematics','197.210.44.151',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:55','2019-10-19 08:59:56'),(4666,'biology','197.210.44.151',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:56','2019-10-19 09:27:54'),(4667,'english','105.112.73.172',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 09:37:46','2019-10-19 09:37:48'),(4668,'chemistry','207.46.13.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 15:25:34','2019-10-19 15:25:34'),(4669,'chemistry','3.209.80.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 16:51:54','2019-10-19 16:51:54'),(4670,'english','18.206.241.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 04:13:55','2019-10-20 04:13:55'),(4671,'mathematics','54.80.29.100',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:33:07','2019-10-20 12:33:46'),(4672,'chemistry','207.46.13.122',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:35:39','2019-10-20 12:35:39'),(4673,'mathematics','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4674,'accounting','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4675,'englishlit','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4676,'government','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4677,'crk','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4678,'insurance','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4679,'currentaffairs','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:17','2019-10-20 16:35:17'),(4680,'chemistry','105.112.41.90',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 17:54:25','2019-10-20 17:54:28'),(4681,'english','105.112.44.170',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 18:58:27','2019-10-20 18:58:27'),(4682,'chemistry','141.8.188.161',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 21:56:45','2019-10-20 21:56:46'),(4683,'irk','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:28:19','2019-10-21 01:28:19'),(4684,'mathematics','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:36:39','2019-10-21 01:36:39'),(4685,'chemistry','197.210.64.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 05:52:18','2019-10-21 05:52:19'),(4686,'insurance','52.90.91.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 08:46:16','2019-10-21 08:46:16'),(4687,'chemistry','197.210.8.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:11:30','2019-10-21 10:11:30'),(4688,'chemistry','197.210.47.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:26:02','2019-10-21 10:26:26'),(4689,'mathematics','197.210.47.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:27:16','2019-10-21 10:27:16'),(4690,'chemistry','34.228.38.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 15:27:28','2019-10-21 15:27:28'),(4691,'chemistry','141.8.143.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 20:01:50','2019-10-21 20:01:50'),(4692,'chemistry','54.36.149.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 03:32:50','2019-10-22 03:32:50'),(4693,'currentaffairs','3.95.63.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 10:54:12','2019-10-22 10:54:12'),(4694,'english','41.203.78.1',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:10:05','2019-10-22 13:10:05'),(4695,'biology','54.196.129.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:22:41','2019-10-22 13:22:41'),(4696,'chemistry','197.210.53.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:09:28','2020-04-07 17:00:28'),(4697,'chemistry','197.210.53.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:10:41','2019-10-22 15:10:41'),(4698,'commerce','3.87.222.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:12:55','2019-10-22 17:12:55'),(4699,'physics','66.249.64.239',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:37:27','2019-10-22 17:37:29'),(4700,'currentaffairs','18.212.225.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 21:17:58','2019-10-22 21:17:58'),(4701,'accounting','54.89.96.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 23:16:46','2019-10-22 23:16:46'),(4702,'government','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 01:59:48','2019-10-23 01:59:48'),(4703,'mathematics','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 02:02:09','2019-10-23 02:02:09'),(4704,'chemistry','66.249.88.71',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 08:13:03','2019-10-23 14:35:06'),(4705,'englishlit','3.85.139.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 11:12:36','2019-10-23 11:12:36'),(4706,'english','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4707,'mathematics','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4708,'accounting','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:13'),(4709,'government','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4710,'crk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4711,'irk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4712,'civiledu','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4713,'chemistry','66.249.83.18',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:35:06','2019-11-06 14:40:34'),(4714,'chemistry','197.211.57.153',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:36:10','2019-10-23 14:40:46'),(4715,'mathematics','197.211.57.153',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:37:19','2019-10-23 14:38:17'),(4716,'chemistry','74.125.210.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:38:27','2019-10-23 14:38:27'),(4717,'history','3.84.20.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 17:22:28','2019-10-23 17:22:28'),(4718,'english','105.112.44.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 18:01:51','2019-10-23 18:01:51'),(4719,'english','105.112.53.50',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:15:14','2019-10-23 20:15:14'),(4720,'biology','3.89.55.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:28:18','2019-10-23 20:28:18'),(4721,'history','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 00:17:49','2019-10-24 00:17:49'),(4722,'english','41.190.3.189',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 03:02:51','2019-10-24 03:02:52'),(4723,'chemistry','197.253.35.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:18:00','2019-10-24 07:18:00'),(4724,'chemistry','91.242.162.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:42:43','2019-10-24 07:52:10'),(4725,'chemistry','41.203.73.203',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:45:04','2019-10-24 08:53:03'),(4726,'biology','41.203.73.203',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:53:59','2019-10-24 08:54:01'),(4727,'chemistry','129.205.112.139',108,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 11:19:07','2019-10-24 12:02:39'),(4728,'chemistry','154.120.87.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 17:55:11','2019-10-24 17:56:27'),(4729,'chemistry','54.36.148.163',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 19:43:38','2019-10-24 19:43:39'),(4730,'accounting','34.204.7.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 06:14:19','2019-10-25 06:14:19'),(4731,'history','23.22.145.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 07:34:04','2019-10-25 07:34:04'),(4732,'mathematics','129.205.112.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:18:03','2019-10-25 09:18:03'),(4733,'commerce','129.205.112.139',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:29:16','2019-10-25 09:31:21'),(4734,'english','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4735,'biology','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4736,'physics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4737,'government','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4738,'crk','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:03'),(4739,'economics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4740,'civiledu','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4741,'chemistry','100.43.81.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:45:17','2019-10-25 16:45:17'),(4742,'crk','18.212.239.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 18:29:40','2019-10-25 18:29:40'),(4743,'commerce','35.173.231.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 23:55:41','2019-10-25 23:55:41'),(4744,'accounting','54.234.193.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 02:03:11','2019-10-26 02:03:11'),(4745,'english','197.242.102.245',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:44:02','2019-10-26 12:15:20'),(4746,'mathematics','197.242.102.245',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:46:55','2019-10-26 05:46:55'),(4747,'chemistry','41.203.73.208',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 09:43:31','2019-10-26 09:47:32'),(4748,'biology','54.81.220.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 15:10:39','2019-10-26 15:10:39'),(4749,'geography','18.204.197.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 16:03:30','2019-10-26 16:03:30'),(4750,'insurance','54.80.115.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 18:02:39','2019-10-26 18:02:39'),(4751,'commerce','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4752,'accounting','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4753,'biology','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4754,'chemistry','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4755,'physics','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4756,'government','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4757,'crk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4758,'englishlit','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:35'),(4759,'irk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4760,'insurance','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4761,'history','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4762,'chemistry','120.18.21.195',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:10','2019-10-27 05:56:57'),(4763,'mathematics','120.18.21.195',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:46','2019-10-27 05:25:47'),(4764,'crk','18.205.116.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:31:51','2019-10-27 05:31:51'),(4765,'english','154.120.107.117',322,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 06:13:42','2019-10-27 10:26:33'),(4766,'commerce','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4767,'accounting','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4768,'biology','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4769,'chemistry','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:52'),(4770,'englishlit','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4771,'government','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4772,'irk','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4773,'chemistry','157.55.39.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:39:09','2019-10-27 14:39:09'),(4774,'englishlit','3.88.251.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:47:29','2019-10-27 14:47:29'),(4775,'commerce','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 18:59:58','2019-10-27 18:59:58'),(4776,'crk','3.88.198.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:12:54','2019-10-28 01:12:54'),(4777,'chemistry','40.77.167.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:42:41','2019-10-28 01:42:41'),(4778,'biology','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 04:16:20','2019-10-28 04:16:20'),(4779,'government','18.232.138.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 06:35:55','2019-10-28 06:35:55'),(4780,'physics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:30:28','2019-10-28 07:30:29'),(4781,'mathematics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:31:02','2019-10-28 07:31:04'),(4782,'government','3.95.66.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 08:05:51','2019-10-28 08:05:51'),(4783,'english','105.112.72.133',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:29:38','2019-10-28 09:29:39'),(4784,'chemistry','197.210.52.23',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:51:40','2019-10-28 09:53:37'),(4785,'chemistry','197.210.53.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:53:00','2019-10-28 09:53:00'),(4786,'crk','3.90.3.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:10:58','2019-10-28 11:10:58'),(4787,'chemistry','197.210.8.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:13:17','2019-10-28 11:13:17'),(4788,'currentaffairs','197.210.8.173',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:14:37','2019-10-28 11:14:46'),(4789,'civiledu','34.207.224.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 17:19:22','2019-10-28 17:19:22'),(4790,'biology','3.89.72.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 03:11:01','2019-10-29 03:11:01'),(4791,'government','54.89.226.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 05:28:30','2019-10-29 05:28:30'),(4792,'economics','3.93.216.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 06:59:51','2019-10-29 06:59:51'),(4793,'english','105.112.40.87',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 09:57:48','2019-10-29 12:46:07'),(4794,'english','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 11:36:32','2019-10-29 11:36:32'),(4795,'accounting','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 12:02:06','2019-10-29 12:02:06'),(4796,'mathematics','105.112.73.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:23:32','2019-10-29 15:23:32'),(4797,'english','41.190.30.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:36:54','2019-10-29 15:36:54'),(4798,'mathematics','105.112.17.202',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:55:44','2019-10-29 15:55:44'),(4799,'english','196.27.128.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:57:02','2019-10-29 15:57:02'),(4800,'chemistry','196.27.128.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:59:40','2019-10-29 15:59:41'),(4801,'mathematics','154.68.226.2',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:06:09','2019-10-29 16:06:09'),(4802,'english','197.210.227.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:21:51','2019-10-29 16:21:51'),(4803,'english','107.167.106.232',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:41:14','2019-10-29 16:42:06'),(4804,'mathematics','18.206.56.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:46:50','2019-10-29 16:46:50'),(4805,'english','105.112.73.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:52:32','2019-10-29 16:52:33'),(4806,'englishlit','197.211.58.67',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:08:44','2019-10-29 17:08:44'),(4807,'government','197.211.58.70',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:11:12','2019-10-29 17:11:13'),(4808,'chemistry','129.56.94.58',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:18','2019-10-29 17:48:50'),(4809,'mathematics','197.210.85.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:26','2019-10-29 17:48:26'),(4810,'mathematics','129.56.94.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:49:32','2019-10-29 17:49:35'),(4811,'chemistry','197.210.53.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:31:50','2019-10-29 19:31:50'),(4812,'english','105.112.53.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:33:58','2019-10-29 19:33:58'),(4813,'chemistry','197.210.52.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:34:08','2019-10-29 19:34:08'),(4814,'mathematics','105.112.53.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:35:34','2019-10-29 19:35:34'),(4815,'chemistry','136.243.91.32',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 20:51:17','2020-01-07 22:24:25'),(4816,'english','54.198.170.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 22:10:58','2019-10-29 22:10:58'),(4817,'physics','3.81.122.72',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:05:58','2019-10-29 23:38:38'),(4818,'english','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4819,'mathematics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4820,'commerce','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4821,'englishlit','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4822,'economics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:39'),(4823,'civiledu','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:39','2019-10-29 23:38:39'),(4824,'mathematics','52.205.254.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 03:27:41','2019-10-30 03:27:41'),(4825,'accounting','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4826,'englishlit','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4827,'geography','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4828,'economics','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4829,'irk','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:56'),(4830,'civiledu','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4831,'currentaffairs','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4832,'mathematics','197.210.226.198',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-30 04:44:48','2020-05-28 20:25:41'),(4833,'english','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:02:12','2019-10-30 06:02:12'),(4834,'physics','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:03:57','2019-10-30 06:03:57'),(4835,'mathematics','34.226.220.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 07:03:46','2019-10-30 07:03:46'),(4836,'chemistry','197.210.57.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 12:45:49','2019-10-30 12:45:49'),(4837,'economics','107.23.28.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 18:15:18','2019-10-30 18:15:18'),(4838,'civiledu','18.214.99.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 19:00:42','2019-10-30 19:00:42'),(4839,'chemistry','197.210.65.172',97,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:11:50'),(4840,'chemistry','197.210.65.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:02:02'),(4841,'chemistry','197.210.57.224',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:55:52','2019-10-30 20:55:53'),(4842,'mathematics','197.210.57.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:56:37','2019-10-30 20:56:37'),(4843,'mathematics','197.210.57.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4844,'mathematics','197.210.57.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4845,'mathematics','197.210.57.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4846,'chemistry','197.210.57.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4847,'chemistry','197.211.58.123',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:15','2019-10-31 11:21:15'),(4848,'mathematics','197.211.58.123',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:24','2019-10-31 13:23:52'),(4849,'chemistry','91.242.162.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 17:52:10','2019-10-31 17:52:10'),(4850,'chemistry','197.210.84.213',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 18:55:16','2019-10-31 18:58:56'),(4851,'insurance','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 20:05:10','2019-10-31 20:05:10'),(4852,'history','18.206.189.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 04:45:22','2019-11-01 04:45:22'),(4853,'crk','54.86.61.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 06:49:49','2019-11-01 06:49:49'),(4854,'biology','54.198.198.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 07:35:21','2019-11-01 07:35:21'),(4855,'english','105.112.77.49',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:39:35','2019-11-01 09:39:36'),(4856,'government','54.174.215.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:52:23','2019-11-01 09:52:23'),(4857,'economics','107.22.138.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 11:25:59','2019-11-01 11:25:59'),(4858,'chemistry','34.207.95.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 14:53:34','2019-11-01 14:53:34'),(4859,'english','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 16:08:03','2019-11-01 16:08:03'),(4860,'englishlit','54.236.206.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 22:07:32','2019-11-01 22:07:32'),(4861,'biology','175.37.47.44',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 23:06:13','2019-11-01 23:06:14'),(4862,'accounting','54.90.121.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 06:44:10','2019-11-02 06:44:10'),(4863,'chemistry','40.77.167.175',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:15:55','2019-11-02 07:15:56'),(4864,'history','35.171.19.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:52:07','2019-11-02 07:52:07'),(4865,'english','105.112.73.230',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:32:09','2019-11-02 13:32:09'),(4866,'crk','3.84.129.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:39:50','2019-11-02 13:39:50'),(4867,'chemistry','197.211.58.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 14:34:58','2019-11-02 14:34:58'),(4868,'commerce','54.162.250.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 16:05:23','2019-11-02 16:05:23'),(4869,'accounting','35.172.138.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 18:09:32','2019-11-02 18:09:32'),(4870,'economics','100.27.31.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 20:25:53','2019-11-02 20:25:53'),(4871,'insurance','18.205.22.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 04:08:45','2019-11-03 04:08:45'),(4872,'englishlit','34.204.2.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 07:47:31','2019-11-03 07:47:31'),(4873,'mathematics','105.112.40.245',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 12:10:24','2019-11-03 12:12:07'),(4874,'chemistry','197.211.58.152',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 17:54:39','2019-11-03 17:55:20'),(4875,'commerce','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:18:15','2019-11-03 19:18:15'),(4876,'english','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:41:39','2019-11-03 19:41:39'),(4877,'physics','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 20:10:58','2019-11-03 20:10:58'),(4878,'crk','54.242.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 21:58:54','2019-11-03 21:58:54'),(4879,'chemistry','197.210.58.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:22:50','2019-11-03 23:22:50'),(4880,'chemistry','197.210.57.85',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:23:06','2019-11-03 23:23:09'),(4881,'chemistry','41.58.233.184',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 00:27:44','2019-11-04 00:30:17'),(4882,'crk','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 01:28:20','2019-11-04 01:28:20'),(4883,'english','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4884,'biology','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4885,'mathematics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4886,'physics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4887,'englishlit','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4888,'government','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4889,'civiledu','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4890,'crk','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4891,'insurance','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4892,'geography','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4893,'currentaffairs','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4894,'accounting','3.84.43.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 19:32:08','2019-11-04 19:32:08'),(4895,'english','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:48','2019-11-05 02:19:48'),(4896,'commerce','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4897,'accounting','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4898,'englishlit','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4899,'crk','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4900,'geography','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4901,'insurance','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4902,'chemistry','54.36.148.22',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:26:28','2019-11-05 02:26:30'),(4903,'mathematics','34.229.222.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 10:07:21','2019-11-05 10:07:21'),(4904,'chemistry','154.120.94.130',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 12:22:45','2019-11-05 12:23:42'),(4905,'commerce','197.211.58.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 19:23:50','2019-11-05 19:23:51'),(4906,'mathematics','18.209.50.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 20:22:48','2019-11-05 20:22:48'),(4907,'chemistry','89.234.68.70',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:17:05','2019-11-06 04:17:44'),(4908,'chemistry','83.71.247.36',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:21:42','2019-11-06 04:22:32'),(4909,'english','18.233.99.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 07:47:51','2019-11-06 07:47:51'),(4910,'currentaffairs','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 09:50:51','2019-11-06 09:50:51'),(4911,'accounting','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 10:24:20','2019-11-06 10:24:20'),(4912,'mathematics','54.145.206.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 12:14:51','2019-11-06 12:14:51'),(4913,'insurance','3.82.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 16:51:53','2019-11-06 16:51:53'),(4914,'history','54.84.14.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 23:14:10','2019-11-06 23:14:10'),(4915,'history','18.212.250.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 02:06:08','2019-11-07 02:06:08'),(4916,'mathematics','197.211.58.187',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 11:26:16','2019-11-07 11:28:37'),(4917,'englishlit','52.205.0.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 16:47:19','2019-11-07 16:47:19'),(4918,'chemistry','66.249.64.116',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 17:17:10','2020-01-25 10:15:50'),(4919,'irk','18.212.71.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 18:58:31','2019-11-07 18:58:31'),(4920,'accounting','54.225.61.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 21:07:53','2019-11-07 21:07:53'),(4921,'english','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:28:09','2019-11-08 00:28:09'),(4922,'history','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:36:53','2019-11-08 00:36:53'),(4923,'crk','35.172.133.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 05:00:20','2019-11-08 05:00:20'),(4924,'commerce','54.91.119.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 06:26:52','2019-11-08 06:26:52'),(4925,'accounting','34.207.107.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 09:53:52','2019-11-08 09:53:52'),(4926,'economics','54.157.32.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 11:20:44','2019-11-08 11:20:44'),(4927,'english','66.249.66.210',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 14:58:50','2019-11-08 14:58:51'),(4928,'chemistry','54.234.228.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 17:47:37','2019-11-08 17:47:37'),(4929,'insurance','3.88.176.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 19:01:26','2019-12-23 08:02:50'),(4930,'chemistry','157.55.39.209',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 21:25:34','2019-11-08 21:25:35'),(4931,'chemistry','91.242.162.26',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:13:24','2019-11-08 22:13:25'),(4932,'englishlit','18.212.146.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:21:32','2019-11-08 22:21:32'),(4933,'chemistry','197.210.70.127',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 00:49:45','2019-11-09 02:10:25'),(4934,'history','197.210.70.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:10:38','2019-11-09 01:10:38'),(4935,'english','197.210.70.127',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:12:33','2019-11-09 02:27:22'),(4936,'crk','34.227.56.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:23:16','2019-11-09 02:23:16'),(4937,'english','197.210.70.11',596,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:29:42','2019-11-09 02:43:37'),(4938,'mathematics','197.210.70.11',115,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:48:03','2019-11-09 03:02:34'),(4939,'commerce','197.210.70.11',887,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-09 03:04:20','2019-11-09 03:25:18'),(4940,'accounting','197.210.70.11',514,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:25:25','2019-11-09 03:37:34'),(4941,'biology','197.210.70.11',549,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:37:38','2019-11-09 07:08:42'),(4942,'physics','54.224.42.134',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 05:11:09','2019-11-09 05:11:09'),(4943,'physics','197.210.70.11',62,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:08:48','2019-11-09 07:17:18'),(4944,'chemistry','197.210.70.11',322,'','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:22:44','2020-01-16 09:56:50'),(4945,'englishlit','197.210.70.11',361,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:33:50','2019-11-09 07:42:56'),(4946,'government','197.210.70.11',438,'Nigeria','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:43:01','2019-11-09 08:01:54'),(4947,'irk','197.210.70.11',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:06:48','2019-11-09 08:07:41'),(4948,'mathematics','197.210.70.169',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:46','2019-11-09 08:08:46'),(4949,'crk','197.210.70.169',391,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:53','2019-11-09 08:46:48'),(4950,'civiledu','197.210.70.169',393,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:09:11','2019-11-09 09:00:04'),(4951,'insurance','197.210.70.169',350,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:11:33','2019-11-09 09:05:35'),(4952,'history','197.210.70.169',50,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:13:57','2019-11-09 08:15:02'),(4953,'geography','197.210.70.169',236,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:16:57','2019-11-09 08:47:31'),(4954,'economics','197.210.70.169',461,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:22:02','2019-11-09 08:53:44'),(4955,'irk','197.210.70.169',33,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:13','2019-11-09 08:57:41'),(4956,'currentaffairs','197.210.70.169',44,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:59','2019-11-09 09:06:11'),(4957,'physics','197.210.70.169',68,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:30:48','2019-11-09 08:33:02'),(4958,'government','197.210.70.169',285,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:32:21','2019-11-09 08:38:37'),(4959,'physics','3.85.57.153',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:37:56','2019-11-09 08:37:56'),(4960,'chemistry','159.138.155.115',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:57:32','2019-11-09 08:57:32'),(4961,'commerce','54.87.49.120',3,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 10:09:51'),(4962,'accounting','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 09:33:31'),(4963,'chemistry','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4964,'government','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4965,'irk','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4966,'civiledu','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4967,'history','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4968,'englishlit','54.87.49.120',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:36:47','2019-11-09 09:36:47'),(4969,'english','105.112.45.248',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:58:49','2019-11-09 09:58:49'),(4970,'english','54.158.200.213',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 12:26:02','2019-11-09 12:26:02'),(4971,'crk','3.95.160.82',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 14:20:40','2019-11-09 14:20:40'),(4972,'mathematics','18.206.174.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 06:53:11','2019-11-10 06:53:11'),(4973,'accounting','54.90.247.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 09:13:09','2019-11-10 09:13:09'),(4974,'chemistry','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:29:58','2019-11-10 11:29:58'),(4975,'english','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:56:18','2019-11-10 11:56:18'),(4976,'mathematics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4977,'commerce','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4978,'physics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4979,'englishlit','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:03'),(4980,'crk','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4981,'geography','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4982,'economics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4983,'mathematics','54.175.81.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 21:05:09','2019-11-10 21:05:09'),(4984,'biology','3.90.109.201',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:25'),(4985,'biology','3.90.109.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:10'),(4986,'chemistry','102.134.115.193',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 14:41:27','2019-11-11 14:46:16'),(4987,'chemistry','54.36.148.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 16:31:40','2019-11-11 16:31:40'),(4988,'economics','3.91.196.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 18:48:42','2019-11-11 18:48:42'),(4989,'mathematics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4990,'commerce','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4991,'biology','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:46'),(4992,'physics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4993,'economics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4994,'currentaffairs','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4995,'history','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4996,'english','54.90.246.133',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:35:46','2019-11-11 20:35:46'),(4997,'mathematics','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:33:47','2019-11-11 23:33:47'),(4998,'insurance','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:47:30','2019-11-11 23:47:30'),(4999,'chemistry','14.210.2.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 02:24:20','2019-11-12 02:24:20'),(5000,'chemistry','3.233.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 05:05:46','2019-11-12 05:05:46'),(5001,'biology','54.92.179.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 08:42:22','2019-11-12 08:42:22'),(5002,'history','54.85.253.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 09:42:51','2019-11-12 09:42:51'),(5003,'chemistry','197.210.71.200',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 12:32:36','2019-11-12 12:32:37'),(5004,'chemistry','223.73.239.66',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 15:29:45','2019-11-12 15:29:46'),(5005,'chemistry','41.190.30.18',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 18:17:17','2019-11-12 18:17:43'),(5006,'englishlit','3.92.166.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 20:15:35','2019-11-12 20:15:35'),(5007,'accounting','103.10.31.31',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:23:01','2019-11-13 05:29:07'),(5008,'physics','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:54','2019-11-13 05:28:55'),(5009,'biology','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:59','2019-11-13 05:29:00'),(5010,'accounting','54.166.15.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 08:33:25','2019-11-13 08:33:25'),(5011,'biology','66.249.64.116',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 09:19:50','2019-11-13 09:19:52'),(5012,'history','54.159.26.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 11:22:16','2019-11-13 11:22:16'),(5013,'physics','66.249.64.112',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 12:14:10','2020-01-11 03:27:45'),(5014,'accounting','3.88.111.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 17:40:10','2019-11-13 17:40:10'),(5015,'chemistry','207.46.13.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 19:01:59','2019-11-13 19:01:59'),(5016,'economics','3.88.230.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:09','2019-11-13 20:05:09'),(5017,'english','105.112.77.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:42','2019-11-13 20:05:45'),(5018,'chemistry','105.112.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 00:12:42','2019-11-14 00:12:42'),(5019,'insurance','3.87.3.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 04:04:18','2019-11-14 04:04:18'),(5020,'english','104.133.10.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:36','2019-11-14 06:14:47'),(5021,'crk','104.133.10.100',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:48','2019-11-14 06:11:51'),(5022,'chemistry','91.242.162.9',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:50:51','2019-11-14 06:50:52'),(5023,'englishlit','34.239.138.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 08:49:26','2019-11-14 08:49:26'),(5024,'english','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5025,'mathematics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5026,'chemistry','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:12','2019-11-14 10:38:15'),(5027,'physics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:14','2019-11-14 10:38:17'),(5028,'commerce','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:19','2019-11-14 10:38:23'),(5029,'currentaffairs','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:21','2019-11-14 10:38:24'),(5030,'government','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:22','2019-11-14 10:38:25'),(5031,'accounting','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:24','2019-11-14 10:38:27'),(5032,'economics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:25','2019-11-14 10:38:28'),(5033,'biology','104.132.127.96',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:27','2019-11-14 10:44:31'),(5034,'geography','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:29','2019-11-14 10:38:32'),(5035,'history','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:31','2019-11-14 10:38:34'),(5036,'insurance','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:33','2019-11-14 10:38:36'),(5037,'civiledu','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:35','2019-11-14 10:38:38'),(5038,'crk','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:37','2019-11-14 10:38:40'),(5039,'englishlit','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:38','2019-11-14 10:38:41'),(5040,'mathematics','197.156.253.124',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 11:11:37','2019-11-14 11:13:49'),(5041,'crk','34.229.192.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:42:00','2019-11-14 12:42:00'),(5042,'chemistry','105.112.113.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:43:31','2019-11-14 12:43:31'),(5043,'english','154.118.34.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 15:44:21','2019-11-14 15:44:24'),(5044,'chemistry','82.145.221.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 17:59:18','2019-11-14 17:59:18'),(5045,'physics','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:46:23','2019-11-14 18:46:23'),(5046,'english','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:53:00','2019-11-14 18:53:00'),(5047,'commerce','3.87.121.240',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-14 19:14:45','2019-11-14 19:14:45'),(5048,'crk','34.238.39.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 22:51:14','2019-11-14 22:51:14'),(5049,'economics','34.228.32.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 02:11:21','2019-11-15 02:11:21'),(5050,'chemistry','105.112.55.179',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:49:45','2019-11-15 08:02:02'),(5051,'physics','105.112.55.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:51:09','2019-11-15 07:51:09'),(5052,'chemistry','105.112.72.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 12:48:53','2019-11-15 12:50:34'),(5053,'accounting','34.203.12.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 19:40:58','2019-11-15 19:40:58'),(5054,'commerce','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5055,'accounting','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5056,'biology','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5057,'chemistry','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:32'),(5058,'geography','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5059,'economics','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5060,'insurance','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5061,'biology','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5062,'chemistry','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5063,'englishlit','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5064,'geography','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5065,'economics','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5066,'irk','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5067,'currentaffairs','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5068,'mathematics','18.212.5.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 08:58:36','2019-11-16 08:58:36'),(5069,'english','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:23:31','2019-11-16 11:23:31'),(5070,'mathematics','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:21','2019-11-16 11:30:21'),(5071,'mathematics','105.112.183.226',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:22','2019-11-16 11:30:23'),(5072,'english','105.112.183.226',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:32:08','2019-11-16 11:32:09'),(5073,'chemistry','3.88.21.220',320,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:53:05','2019-11-16 14:57:29'),(5074,'english','34.207.122.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:55:25','2019-11-16 14:55:25'),(5075,'chemistry','41.58.118.229',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:02:07','2019-11-16 15:05:13'),(5076,'physics','41.58.118.229',147,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:06:10','2019-11-16 15:11:36'),(5077,'mathematics','41.58.118.229',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:17:15','2019-11-16 15:17:18'),(5078,'chemistry','34.227.24.189',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:20:27','2019-11-16 15:20:41'),(5079,'english','41.58.118.229',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-16 15:21:00','2019-11-16 15:23:00'),(5080,'government','41.58.118.229',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:23:59','2019-11-16 15:24:02'),(5081,'chemistry','105.112.183.165',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:28:10','2019-11-16 15:28:10'),(5082,'chemistry','18.212.227.139',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:30:31','2019-11-16 15:30:34'),(5083,'chemistry','34.238.168.46',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:34:19','2019-11-16 15:42:25'),(5084,'chemistry','54.88.106.95',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:46:48','2019-11-16 15:46:51'),(5085,'chemistry','34.227.27.84',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:59:45','2019-11-16 16:02:50'),(5086,'english','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 16:19:39','2019-11-16 16:19:42'),(5087,'english','197.210.28.14',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 17:38:36','2019-11-16 17:38:36'),(5088,'geography','3.92.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 02:58:10','2019-11-17 02:58:10'),(5089,'mathematics','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:39:52','2019-11-17 05:56:58'),(5090,'english','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:40:15','2019-11-17 05:56:35'),(5091,'english','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:04:57','2019-11-17 07:04:57'),(5092,'commerce','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:11:06','2019-11-17 07:11:06'),(5093,'currentaffairs','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:58:01','2019-11-17 07:58:01'),(5094,'economics','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 08:25:21','2019-11-17 08:25:21'),(5095,'mathematics','100.26.97.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 10:58:29','2019-11-17 10:58:29'),(5096,'englishlit','100.27.23.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:42:13','2019-11-17 11:42:13'),(5097,'chemistry','3.226.254.115',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:59:22','2019-11-17 12:24:41'),(5098,'mathematics','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:07:43','2019-11-17 13:07:43'),(5099,'insurance','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:16:37','2019-11-17 13:16:37'),(5100,'commerce','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:52'),(5101,'accounting','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:49'),(5102,'physics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:50'),(5103,'crk','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:46'),(5104,'geography','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:42'),(5105,'economics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:44'),(5106,'history','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:40'),(5107,'accounting','3.90.28.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 01:39:00','2019-11-18 01:39:00'),(5108,'englishlit','54.145.175.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:30:31','2019-11-18 11:30:31'),(5109,'chemistry','154.68.195.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:44:51','2019-11-18 11:44:51'),(5110,'chemistry','105.112.177.109',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 16:07:34','2019-11-18 16:09:34'),(5111,'history','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 22:55:46','2019-12-08 23:07:31'),(5112,'biology','52.90.143.9',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:27:47','2019-11-25 19:20:30'),(5113,'english','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5114,'commerce','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5115,'government','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5116,'crk','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5117,'insurance','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5118,'currentaffairs','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5119,'chemistry','157.55.39.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:14:36','2019-11-19 04:14:36'),(5120,'history','54.152.47.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:20:09','2019-11-19 04:20:09'),(5121,'crk','3.87.113.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 06:24:27','2019-11-19 06:24:27'),(5122,'commerce','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:06:20','2019-11-19 09:06:20'),(5123,'biology','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:12:53','2019-11-19 09:12:53'),(5124,'chemistry','129.56.29.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:13:53','2019-11-19 09:13:53'),(5125,'mathematics','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:13:31','2019-11-19 10:13:31'),(5126,'commerce','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:15:00','2019-11-19 10:15:00'),(5127,'english','105.112.61.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:46:39','2019-11-19 10:46:39'),(5128,'accounting','3.87.101.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 11:57:03','2019-11-19 11:57:03'),(5129,'accounting','54.90.128.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 13:36:06','2019-11-19 13:36:06'),(5130,'economics','54.198.9.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 14:11:01','2019-11-19 14:11:01'),(5131,'chemistry','82.145.221.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 17:06:44','2019-11-19 17:06:59'),(5132,'commerce','34.207.90.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 18:09:26','2019-11-19 18:09:26'),(5133,'insurance','35.175.235.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 21:47:15','2019-11-19 21:47:15'),(5134,'economics','54.243.7.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 23:21:26','2019-11-19 23:21:26'),(5135,'englishlit','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 00:51:45','2019-11-20 00:51:45'),(5136,'accounting','3.81.87.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 03:46:05','2019-11-20 03:46:05'),(5137,'crk','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 05:37:07','2019-11-20 05:37:07'),(5138,'geography','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 06:00:11','2019-11-20 06:00:11'),(5139,'englishlit','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:11:12','2019-11-20 13:11:12'),(5140,'physics','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:12:49','2019-11-20 13:12:49'),(5141,'commerce','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:10:33','2019-11-20 14:10:33'),(5142,'english','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:24:22','2019-11-20 14:24:22'),(5143,'englishlit','3.86.15.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:59:45','2019-11-20 14:59:45'),(5144,'crk','54.211.114.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 18:58:30','2019-11-20 18:58:30'),(5145,'englishlit','54.227.23.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 20:17:56','2019-11-20 20:17:56'),(5146,'economics','54.173.226.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 02:00:33','2019-11-21 02:00:33'),(5147,'currentaffairs','3.87.237.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 15:38:11','2019-11-21 15:38:11'),(5148,'englishlit','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:11:52','2019-11-21 19:11:52'),(5149,'civiledu','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:27:16','2019-11-21 19:27:16'),(5150,'english','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:41:38','2019-11-21 19:41:38'),(5151,'accounting','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 20:05:16','2019-11-21 20:05:16'),(5152,'chemistry','61.138.222.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 02:40:12','2019-11-22 02:40:12'),(5153,'commerce','34.229.113.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 05:56:54','2019-11-22 05:56:54'),(5154,'english','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5155,'mathematics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5156,'physics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5157,'crk','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5158,'geography','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5159,'insurance','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5160,'history','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5161,'mathematics','41.191.105.89',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:47:00','2019-11-22 09:47:25'),(5162,'mathematics','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:28:36','2019-11-22 18:28:36'),(5163,'irk','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:38:47','2019-11-22 18:38:47'),(5164,'chemistry','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:24:34','2019-11-22 19:24:37'),(5165,'mathematics','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:26:12','2019-11-22 19:26:15'),(5166,'chemistry','154.160.27.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 20:46:34','2019-11-22 20:46:34'),(5167,'government','34.235.143.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 23:08:27','2019-11-22 23:08:27'),(5168,'commerce','3.93.212.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:05:01','2019-11-23 01:05:01'),(5169,'insurance','107.23.192.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:56:47','2019-11-23 01:56:47'),(5170,'english','54.87.140.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 03:56:10','2019-11-23 03:56:10'),(5171,'crk','3.80.89.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 04:32:38','2019-11-23 04:32:38'),(5172,'chemistry','40.77.167.170',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 06:00:38','2019-11-23 06:00:39'),(5173,'mathematics','3.87.21.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 13:23:50','2019-11-23 13:23:50'),(5174,'chemistry','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:04:39','2019-11-23 14:04:39'),(5175,'geography','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:13:49','2019-11-23 14:13:49'),(5176,'chemistry','3.82.225.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:59:38','2019-11-23 14:59:38'),(5177,'currentaffairs','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 18:52:45','2019-11-23 18:52:45'),(5178,'geography','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 19:17:25','2019-11-23 19:17:25'),(5179,'english','54.90.185.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 20:11:52','2019-11-23 20:11:52'),(5180,'geography','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 21:06:07','2019-11-23 21:06:07'),(5181,'chemistry','3.87.114.3',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 00:02:34','2019-11-24 00:03:13'),(5182,'geography','3.92.185.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 03:57:44','2019-11-24 03:57:44'),(5183,'englishlit','18.212.68.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 07:58:51','2019-11-24 07:58:51'),(5184,'chemistry','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 08:41:40','2019-11-24 08:41:40'),(5185,'currentaffairs','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 09:06:30','2019-11-24 09:06:30'),(5186,'biology','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 11:46:34','2019-11-24 11:46:34'),(5187,'commerce','3.94.119.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 13:14:32','2019-11-24 13:14:32'),(5188,'economics','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 14:33:11','2019-11-24 14:33:11'),(5189,'commerce','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:06:24','2019-11-24 15:06:24'),(5190,'english','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:27:19','2019-11-24 15:27:19'),(5191,'chemistry','159.138.159.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 18:34:43','2020-01-29 06:08:04'),(5192,'physics','35.173.191.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:09:52','2019-11-24 19:09:52'),(5193,'englishlit','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:56:50','2019-11-24 19:56:50'),(5194,'mathematics','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 20:10:28','2019-11-24 20:10:28'),(5195,'geography','3.95.237.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:00:07','2019-11-24 22:00:07'),(5196,'chemistry','129.205.112.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:36:55','2019-11-24 22:36:55'),(5197,'mathematics','34.239.115.115',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-25 00:20:37'),(5198,'accounting','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5199,'geography','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5200,'economics','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5201,'insurance','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5202,'currentaffairs','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5203,'history','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5204,'government','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:14:49','2019-11-25 00:14:49'),(5205,'biology','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:26:53','2019-11-25 00:26:53'),(5206,'chemistry','91.242.162.34',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:29:05','2019-11-25 00:29:05'),(5207,'mathematics','54.161.28.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 01:18:44','2019-11-25 01:18:44'),(5208,'insurance','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:18:39','2019-11-25 02:18:39'),(5209,'english','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:50:26','2019-11-25 02:50:26'),(5210,'biology','3.80.24.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 13:54:57','2019-11-25 13:54:57'),(5211,'accounting','54.174.106.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:15:50','2019-11-25 22:15:50'),(5212,'chemistry','54.36.150.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:39:17','2019-11-25 22:39:17'),(5213,'chemistry','59.62.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:05:11','2019-11-26 00:05:11'),(5214,'biology','52.207.70.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:23:52','2019-11-26 00:23:52'),(5215,'currentaffairs','3.92.68.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 04:10:20','2019-11-26 04:10:20'),(5216,'biology','3.80.157.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 09:41:29','2019-11-26 09:41:29'),(5217,'currentaffairs','34.201.221.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 13:34:13','2019-11-26 13:34:13'),(5218,'biology','54.226.198.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 19:19:54','2019-11-26 19:19:54'),(5219,'currentaffairs','3.90.165.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 23:25:19','2019-11-26 23:25:19'),(5220,'irk','3.87.128.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 02:59:37','2019-11-27 02:59:37'),(5221,'chemistry','197.210.85.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 04:36:41','2019-11-27 04:36:41'),(5222,'chemistry','52.91.32.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 06:56:10','2019-11-27 06:56:10'),(5223,'chemistry','3.84.51.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 08:55:13','2019-11-27 08:55:13'),(5224,'englishlit','54.205.247.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 09:48:58','2019-11-27 09:48:58'),(5225,'biology','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 12:58:49','2019-11-27 12:58:49'),(5226,'irk','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 13:14:40','2019-11-27 13:14:40'),(5227,'insurance','54.198.168.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 14:09:50','2019-11-27 14:09:50'),(5228,'economics','52.90.222.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 17:06:53','2019-11-27 17:06:53'),(5229,'history','3.92.231.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 18:56:25','2019-11-27 18:56:25'),(5230,'chemistry','18.234.89.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:41:07','2019-11-27 19:41:07'),(5231,'chemistry','49.87.102.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:46:18','2019-11-27 19:46:18'),(5232,'accounting','54.161.90.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 20:54:04','2019-11-27 20:54:04'),(5233,'chemistry','27.214.192.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 23:04:04','2019-11-27 23:04:04'),(5234,'chemistry','34.230.10.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 01:37:13','2019-11-28 01:37:13'),(5235,'irk','18.209.6.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 04:53:50','2019-11-28 04:53:50'),(5236,'biology','3.82.192.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:53:14','2019-11-28 07:53:15'),(5237,'history','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:55:43','2019-11-28 07:55:43'),(5238,'commerce','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5239,'englishlit','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5240,'currentaffairs','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 08:20:01','2019-11-28 08:20:01'),(5241,'mathematics','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:18:07','2019-11-28 10:18:07'),(5242,'chemistry','105.112.55.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:31:45','2019-11-28 10:31:45'),(5243,'commerce','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:42:22','2019-11-28 10:42:22'),(5244,'crk','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 11:14:13','2019-11-28 11:14:13'),(5245,'economics','18.234.45.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 12:07:05','2019-11-28 12:07:05'),(5246,'commerce','52.200.202.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 14:58:46','2019-11-28 14:58:46'),(5247,'biology','41.190.3.204',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 16:57:43','2019-11-28 16:57:44'),(5248,'chemistry','54.36.148.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 17:06:02','2019-11-28 17:06:03'),(5249,'crk','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:31:30','2019-11-28 19:31:30'),(5250,'accounting','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:33:45','2019-11-28 19:33:45'),(5251,'economics','3.85.242.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:37'),(5252,'commerce','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:38'),(5253,'accounting','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5254,'biology','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5255,'physics','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5256,'crk','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5257,'geography','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5258,'currentaffairs','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5259,'geography','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 06:56:30','2019-11-29 06:56:30'),(5260,'economics','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 07:23:58','2019-11-29 07:23:58'),(5261,'commerce','3.90.78.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 09:46:03','2019-11-29 09:46:03'),(5262,'crk','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 14:54:27','2019-11-29 14:54:27'),(5263,'english','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:32:55','2019-11-29 16:32:55'),(5264,'insurance','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:33:40','2019-11-29 16:33:40'),(5265,'biology','54.165.28.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 17:08:15','2019-11-29 17:13:52'),(5266,'englishlit','3.91.91.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 20:29:30','2019-11-29 20:29:30'),(5267,'chemistry','197.210.53.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 22:14:15','2019-11-29 22:14:15'),(5268,'geography','3.80.133.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 00:24:52','2019-11-30 00:24:52'),(5269,'crk','54.144.64.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 03:05:17','2019-11-30 03:05:17'),(5270,'chemistry','141.0.13.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 04:28:46','2019-11-30 04:28:50'),(5271,'crk','34.235.132.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 09:54:43','2019-11-30 09:54:43'),(5272,'economics','3.84.73.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 14:56:44','2019-11-30 14:56:44'),(5273,'chemistry','54.196.143.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 15:46:01','2019-11-30 15:46:01'),(5274,'physics','174.129.162.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 17:01:07','2019-11-30 17:01:07'),(5275,'commerce','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:18:36','2019-11-30 19:18:36'),(5276,'englishlit','3.84.92.186',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:29:52','2019-11-30 19:36:20'),(5277,'english','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:34:16','2019-11-30 19:34:16'),(5278,'crk','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 02:44:38','2019-12-01 02:44:38'),(5279,'englishlit','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 03:14:33','2019-12-01 03:14:33'),(5280,'economics','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:41:42','2019-12-01 06:41:42'),(5281,'chemistry','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:51:45','2019-12-01 06:51:45'),(5282,'chemistry','207.46.13.30',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 08:20:41','2019-12-01 08:20:42'),(5283,'government','3.94.79.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 09:03:08','2019-12-01 09:03:08'),(5284,'chemistry','197.211.58.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 10:28:55','2019-12-01 10:28:55'),(5285,'english','3.83.92.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 13:54:48','2019-12-01 13:54:48'),(5286,'chemistry','182.247.60.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:04:17','2019-12-02 05:04:17'),(5287,'physics','18.212.94.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:51:40','2019-12-02 05:51:40'),(5288,'english','196.13.161.254',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:09:22','2019-12-02 11:11:49'),(5289,'chemistry','196.13.161.254',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:14:59','2019-12-02 12:04:31'),(5290,'currentaffairs','3.86.66.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:36:59','2019-12-02 11:36:59'),(5291,'chemistry','80.248.3.98',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 12:03:05','2019-12-02 12:03:05'),(5292,'currentaffairs','18.212.29.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 13:05:10','2019-12-02 13:05:10'),(5293,'civiledu','34.227.18.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:34:27','2019-12-02 16:34:27'),(5294,'chemistry','124.112.95.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:43:26','2019-12-02 16:43:26'),(5295,'english','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:15:18','2019-12-02 20:15:18'),(5296,'englishlit','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:44:03','2019-12-02 20:44:03'),(5297,'accounting','54.89.129.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 21:26:25','2019-12-02 21:26:25'),(5298,'chemistry','70.49.10.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 04:21:31','2019-12-03 04:21:32'),(5299,'english','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:12','2019-12-03 05:44:12'),(5300,'commerce','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5301,'accounting','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5302,'economics','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5303,'irk','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5304,'insurance','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5305,'history','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5306,'commerce','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5307,'accounting','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5308,'chemistry','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5309,'government','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5310,'geography','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5311,'civiledu','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5312,'history','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5313,'english','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5314,'commerce','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5315,'englishlit','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5316,'crk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5317,'irk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:21'),(5318,'insurance','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5319,'currentaffairs','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5320,'irk','3.82.106.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 20:45:47','2019-12-03 20:45:47'),(5321,'mathematics','52.90.36.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 22:27:46','2019-12-03 22:27:46'),(5322,'government','54.152.243.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 01:01:26','2019-12-04 01:01:26'),(5323,'chemistry','207.46.13.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 03:26:32','2019-12-04 03:26:32'),(5324,'insurance','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 04:39:43','2019-12-04 04:39:43'),(5325,'chemistry','14.134.201.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:29:57','2019-12-04 06:29:57'),(5326,'chemistry','218.73.129.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:30:25','2019-12-04 06:30:25'),(5327,'commerce','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:53:13','2019-12-04 06:53:13'),(5328,'crk','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:05:20','2019-12-04 07:05:20'),(5329,'english','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:15:26','2019-12-04 07:15:26'),(5330,'mathematics','41.190.3.143',119,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:24:47','2019-12-05 00:11:26'),(5331,'biology','41.190.3.143',168,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:28:53','2019-12-05 12:00:11'),(5332,'chemistry','197.211.58.2',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:19:02','2019-12-04 15:19:02'),(5333,'currentaffairs','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:20:27','2019-12-04 15:20:27'),(5334,'mathematics','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:26:56','2019-12-04 15:26:56'),(5335,'chemistry','105.112.181.189',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:14:48','2019-12-04 17:14:58'),(5336,'geography','18.208.212.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:29:42','2019-12-04 17:29:42'),(5337,'english','41.190.3.143',91,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:55:40','2019-12-05 06:58:47'),(5338,'government','41.190.3.143',84,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:56:50','2019-12-05 06:41:34'),(5339,'commerce','41.190.3.143',175,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:57:42','2019-12-05 06:53:25'),(5340,'chemistry','41.190.3.143',140,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 19:01:13','2019-12-05 07:14:29'),(5341,'mathematics','54.172.178.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 20:35:24','2019-12-04 20:35:24'),(5342,'geography','54.172.178.184',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 21:08:09','2019-12-04 21:36:53'),(5343,'english','54.163.0.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 23:30:16','2019-12-04 23:30:16'),(5344,'geography','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:01:50','2019-12-05 01:01:50'),(5345,'history','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:18:02','2019-12-05 01:18:02'),(5346,'geography','204.236.206.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:22:32','2019-12-05 07:22:32'),(5347,'physics','54.86.78.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:59:42','2019-12-05 07:59:42'),(5348,'englishlit','54.172.67.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 09:02:59','2019-12-05 09:02:59'),(5349,'currentaffairs','3.91.46.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 10:24:47','2019-12-05 10:24:47'),(5350,'biology','174.129.108.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 14:55:19','2019-12-05 14:55:19'),(5351,'chemistry','105.112.179.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 17:00:52','2019-12-05 17:00:52'),(5352,'commerce','3.84.85.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:00:24','2019-12-05 18:23:26'),(5353,'english','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:44:01','2019-12-05 18:44:01'),(5354,'economics','3.88.46.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 19:56:33','2019-12-05 19:56:33'),(5355,'history','54.81.95.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 20:35:42','2019-12-05 20:35:42'),(5356,'chemistry','113.138.129.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:25','2019-12-05 21:06:25'),(5357,'chemistry','40.77.167.50',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:35','2019-12-05 21:06:35'),(5358,'mathematics','18.233.165.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 22:52:02','2019-12-05 22:52:02'),(5359,'englishlit','54.175.59.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 00:21:22','2019-12-06 00:21:22'),(5360,'chemistry','52.90.137.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 01:50:04','2019-12-06 01:50:04'),(5361,'geography','3.87.199.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 02:52:45','2019-12-06 02:52:45'),(5362,'mathematics','3.88.194.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 04:08:29','2019-12-06 04:08:29'),(5363,'government','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:32:21','2019-12-06 05:32:21'),(5364,'mathematics','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:40:15','2019-12-06 05:40:15'),(5365,'insurance','34.227.157.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 06:43:30','2019-12-06 06:43:30'),(5366,'physics','54.172.2.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 10:09:01','2019-12-06 10:09:01'),(5367,'biology','66.249.88.17',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 14:07:38','2020-02-15 20:12:28'),(5368,'chemistry','197.210.84.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:36:43','2019-12-06 18:36:43'),(5369,'crk','197.210.84.159',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:40:55','2019-12-06 19:11:31'),(5370,'biology','34.205.127.71',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5371,'biology','34.205.127.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5372,'accounting','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:12:45','2019-12-07 10:12:45'),(5373,'history','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:34:21','2019-12-07 10:34:21'),(5374,'chemistry','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5375,'englishlit','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5376,'government','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5377,'crk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5378,'irk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5379,'civiledu','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5380,'currentaffairs','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5381,'irk','54.242.7.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 01:13:25','2019-12-08 01:13:25'),(5382,'englishlit','54.242.126.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 06:59:59','2019-12-08 06:59:59'),(5383,'chemistry','40.77.167.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 15:51:20','2019-12-08 15:51:20'),(5384,'chemistry','197.210.47.7',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:00:48','2019-12-08 16:00:49'),(5385,'chemistry','197.210.47.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:17:03','2019-12-08 16:17:03'),(5386,'insurance','54.152.41.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 17:44:29','2019-12-08 17:44:29'),(5387,'chemistry','93.158.161.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 18:45:52','2019-12-08 18:45:52'),(5388,'economics','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 19:54:55','2019-12-08 19:54:55'),(5389,'biology','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 20:26:43','2019-12-08 20:26:43'),(5390,'commerce','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5391,'english','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5392,'accounting','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5393,'accounting','3.82.25.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5394,'physics','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:42'),(5395,'biology','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5396,'geography','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5397,'economics','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5398,'crk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5399,'civiledu','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5400,'irk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5401,'chemistry','40.77.167.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 00:56:26','2019-12-09 00:56:26'),(5402,'accounting','54.226.206.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 03:42:51','2019-12-09 03:42:51'),(5403,'history','52.206.133.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 04:25:20','2019-12-09 04:25:20'),(5404,'biology','54.173.252.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 05:46:38','2019-12-09 05:46:39'),(5405,'irk','18.234.114.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 11:05:35','2019-12-09 11:05:35'),(5406,'chemistry','54.36.148.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:28:12','2019-12-09 16:28:16'),(5407,'biology','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:39'),(5408,'englishlit','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:38'),(5409,'crk','54.89.129.103',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:48:45'),(5410,'commerce','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5411,'economics','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5412,'irk','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5413,'physics','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5414,'chemistry','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5415,'insurance','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:40'),(5416,'currentaffairs','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5417,'commerce','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:17:25','2019-12-09 19:17:25'),(5418,'economics','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:32:29','2019-12-09 19:32:29'),(5419,'civiledu','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 22:44:39','2019-12-09 22:44:39'),(5420,'english','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:24','2019-12-09 23:12:24'),(5421,'geography','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:35','2019-12-09 23:12:35'),(5422,'chemistry','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:27:16','2019-12-09 23:27:16'),(5423,'chemistry','40.77.167.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:01:39','2019-12-10 00:01:39'),(5424,'accounting','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:03:12','2019-12-10 00:03:12'),(5425,'insurance','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:37:10','2019-12-10 00:37:10'),(5426,'crk','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 01:09:15','2019-12-10 01:09:15'),(5427,'chemistry','100.27.31.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 02:44:54','2019-12-10 02:44:54'),(5428,'commerce','54.237.164.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 04:47:40','2019-12-10 04:47:40'),(5429,'english','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:13:52','2019-12-10 06:13:52'),(5430,'geography','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:33:46','2019-12-10 06:33:46'),(5431,'economics','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:51:24','2019-12-10 06:51:24'),(5432,'accounting','54.242.54.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 07:57:03','2019-12-10 07:57:03'),(5433,'insurance','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:23:16','2019-12-10 09:23:16'),(5434,'chemistry','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:37:33','2019-12-10 09:37:33'),(5435,'crk','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:18:58','2019-12-10 10:18:58'),(5436,'englishlit','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:59:01','2019-12-10 10:59:01'),(5437,'government','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:19:21','2019-12-10 11:19:21'),(5438,'english','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:50:52','2019-12-10 11:50:52'),(5439,'geography','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:05:06','2019-12-10 12:05:06'),(5440,'irk','54.226.150.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:45:46','2019-12-10 12:45:46'),(5441,'commerce','3.90.68.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 13:50:00','2019-12-10 13:50:00'),(5442,'government','3.82.210.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 14:37:36','2019-12-10 14:37:36'),(5443,'crk','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:21:52','2019-12-10 15:21:52'),(5444,'economics','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:35:48','2019-12-10 15:35:48'),(5445,'currentaffairs','35.168.14.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 16:27:37','2019-12-10 16:27:37'),(5446,'geography','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:35:21','2019-12-10 20:35:21'),(5447,'economics','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:39:50','2019-12-10 20:39:50'),(5448,'accounting','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:37','2019-12-10 20:59:37'),(5449,'english','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:50','2019-12-10 20:59:50'),(5450,'crk','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 21:34:22','2019-12-10 21:34:22'),(5451,'englishlit','54.165.112.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 00:04:55','2019-12-11 00:04:55'),(5452,'government','34.201.143.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 03:16:18','2019-12-11 03:16:18'),(5453,'englishlit','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:53:05','2019-12-11 04:53:05'),(5454,'insurance','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:55:54','2019-12-11 04:55:54'),(5455,'chemistry','105.112.179.103',425,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 06:39:31','2019-12-11 07:10:00'),(5456,'mathematics','105.112.179.103',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:10:34','2019-12-11 07:10:34'),(5457,'mathematics','105.112.16.69',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:18:04','2019-12-11 07:18:48'),(5458,'chemistry','3.229.122.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:58:12','2019-12-11 09:05:40'),(5459,'geography','174.129.57.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 09:22:20','2019-12-11 09:22:20'),(5460,'crk','54.90.130.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 12:16:19','2019-12-11 12:16:19'),(5461,'chemistry','188.180.82.238',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 13:07:40','2019-12-11 13:09:06'),(5462,'chemistry','41.203.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 15:02:50','2019-12-11 15:02:50'),(5463,'chemistry','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 22:51:11','2019-12-11 22:51:11'),(5464,'accounting','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:23:14','2019-12-11 23:23:14'),(5465,'englishlit','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:52:10','2019-12-11 23:52:10'),(5466,'physics','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 00:19:17','2019-12-12 00:19:17'),(5467,'commerce','54.197.2.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 01:28:00','2019-12-12 01:28:00'),(5468,'englishlit','3.93.184.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 03:07:29','2019-12-12 03:07:29'),(5469,'crk','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 09:35:33','2019-12-12 09:35:33'),(5470,'english','18.209.36.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 11:09:56','2019-12-12 11:09:56'),(5471,'chemistry','34.228.199.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 13:40:09','2019-12-12 13:40:09'),(5472,'englishlit','3.85.74.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 14:21:15','2019-12-12 14:21:15'),(5473,'chemistry','100.27.31.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 16:34:32','2019-12-12 16:34:32'),(5474,'government','54.236.209.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 19:00:46','2019-12-12 19:00:46'),(5475,'crk','18.205.239.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:05:15','2019-12-12 20:05:15'),(5476,'crk','197.210.84.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:31:16','2019-12-12 20:40:53'),(5477,'economics','34.239.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 21:01:23','2019-12-12 21:01:23'),(5478,'english','54.172.192.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 23:30:27','2019-12-12 23:30:27'),(5479,'chemistry','40.77.167.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 02:15:26','2019-12-13 02:15:26'),(5480,'chemistry','114.229.7.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 03:41:13','2019-12-13 03:41:13'),(5481,'chemistry','105.112.80.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 08:56:22','2019-12-13 08:56:45'),(5482,'mathematics','34.203.244.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 09:11:37','2019-12-13 09:11:37'),(5483,'physics','110.44.121.20',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 10:10:52','2019-12-13 10:10:53'),(5484,'chemistry','105.112.24.37',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:15:54','2019-12-13 11:15:55'),(5485,'mathematics','105.112.179.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:03','2019-12-13 11:29:48'),(5486,'physics','105.112.179.227',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:26','2019-12-13 11:30:06'),(5487,'physics','3.93.52.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 12:46:32','2019-12-13 12:46:32'),(5488,'history','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:34','2019-12-13 21:12:28'),(5489,'currentaffairs','129.205.112.254',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:39','2019-12-13 21:09:28'),(5490,'chemistry','129.205.112.254',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:44','2019-12-13 21:12:08'),(5491,'mathematics','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:54','2019-12-13 21:11:38'),(5492,'government','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:59','2019-12-13 21:11:53'),(5493,'physics','129.205.112.254',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:04','2019-12-13 21:12:23'),(5494,'englishlit','129.205.112.254',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:09','2019-12-13 21:12:13'),(5495,'economics','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:15','2019-12-13 21:12:38'),(5496,'commerce','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:40','2019-12-13 21:12:33'),(5497,'english','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:47','2019-12-13 21:11:28'),(5498,'accounting','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:50','2019-12-13 21:10:34'),(5499,'geography','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:30','2019-12-13 21:10:38'),(5500,'crk','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:35','2019-12-13 21:11:58'),(5501,'irk','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:15','2019-12-13 21:09:43'),(5502,'biology','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:30','2019-12-13 21:12:18'),(5503,'insurance','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:01:20','2019-12-13 21:13:30'),(5504,'civiledu','129.205.112.254',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:03:35','2019-12-13 21:11:03'),(5505,'currentaffairs','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 18:57:39','2019-12-13 18:57:39'),(5506,'currentaffairs','54.226.13.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 19:41:05','2019-12-13 19:41:05'),(5507,'mathematics','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 20:26:39','2019-12-13 20:26:39'),(5508,'civiledu','3.83.131.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 23:08:17','2019-12-13 23:08:17'),(5509,'englishlit','54.163.205.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 02:02:08','2019-12-14 02:02:08'),(5510,'english','3.84.191.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:05:13','2019-12-14 03:05:13'),(5511,'physics','105.112.178.117',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:10:23','2019-12-14 03:22:06'),(5512,'biology','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:35:59','2019-12-14 03:40:01'),(5513,'accounting','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:37:14','2019-12-14 03:40:02'),(5514,'mathematics','105.112.177.67',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:11','2019-12-14 03:40:22'),(5515,'physics','105.112.177.67',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:58','2019-12-14 03:44:29'),(5516,'accounting','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:12:59','2019-12-14 04:12:59'),(5517,'mathematics','105.112.177.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:16:55','2019-12-14 04:16:55'),(5518,'mathematics','105.112.179.177',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:17:37','2019-12-14 04:17:38'),(5519,'chemistry','58.19.12.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:18:56','2019-12-14 04:18:56'),(5520,'mathematics','105.112.176.112',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:39:57','2019-12-14 04:44:54'),(5521,'mathematics','105.112.23.162',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:29:29','2019-12-14 05:38:43'),(5522,'mathematics','105.112.178.10',110,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:40:14','2019-12-14 06:24:21'),(5523,'english','105.112.178.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:20:57','2019-12-14 06:20:58'),(5524,'physics','105.112.178.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:22:14','2019-12-14 06:23:31'),(5525,'mathematics','105.112.176.255',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:48:33','2019-12-14 06:54:19'),(5526,'mathematics','105.112.177.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:16:27','2019-12-14 07:52:21'),(5527,'physics','105.112.177.210',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:18:35','2019-12-14 07:19:49'),(5528,'mathematics','34.229.0.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 14:14:24','2019-12-14 14:14:24'),(5529,'chemistry','3.94.129.211',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:29:03','2019-12-14 18:49:30'),(5530,'crk','3.82.19.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:54:57','2019-12-14 18:54:57'),(5531,'mathematics','105.112.74.0',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:40:25','2019-12-14 19:50:59'),(5532,'mathematics','105.112.178.125',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:55:19','2019-12-14 19:57:26'),(5533,'english','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:42'),(5534,'accounting','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:43'),(5535,'government','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5536,'crk','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5537,'economics','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5538,'insurance','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5539,'currentaffairs','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5540,'mathematics','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 02:56:53','2019-12-15 02:56:53'),(5541,'irk','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 03:08:39','2019-12-15 03:08:39'),(5542,'mathematics','105.112.24.144',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 05:33:44','2019-12-15 05:33:44'),(5543,'mathematics','105.112.24.123',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:27:08','2019-12-15 06:28:35'),(5544,'biology','105.112.24.123',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:28:39','2019-12-15 06:28:39'),(5545,'commerce','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:52:53','2019-12-15 07:52:53'),(5546,'government','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:53:27','2019-12-15 07:53:27'),(5547,'mathematics','105.112.75.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:03:20','2019-12-15 08:03:20'),(5548,'mathematics','105.112.178.111',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:24:49','2019-12-15 08:24:49'),(5549,'chemistry','89.163.242.18',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:57:38','2019-12-15 08:57:38'),(5550,'mathematics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:59:24','2019-12-15 09:11:12'),(5551,'commerce','105.112.16.234',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:01:55','2019-12-15 09:05:33'),(5552,'englishlit','105.112.16.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:05:43','2019-12-15 09:05:44'),(5553,'economics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:07:37','2019-12-15 09:09:01'),(5554,'mathematics','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:32'),(5555,'commerce','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:33'),(5556,'accounting','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5557,'englishlit','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5558,'crk','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5559,'geography','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5560,'currentaffairs','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5561,'insurance','18.206.121.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:44:42','2019-12-15 10:44:42'),(5562,'mathematics','197.210.44.70',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 11:39:41','2019-12-15 11:40:19'),(5563,'english','54.226.135.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 13:31:12','2019-12-15 13:31:12'),(5564,'crk','34.207.159.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 14:25:42','2019-12-15 14:25:42'),(5565,'chemistry','197.210.8.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:09:00','2019-12-15 15:09:49'),(5566,'mathematics','105.112.181.210',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:31:11','2019-12-15 15:31:12'),(5567,'chemistry','197.211.58.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 16:28:08','2019-12-15 16:28:08'),(5568,'civiledu','107.22.61.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 21:18:49','2019-12-15 21:18:49'),(5569,'mathematics','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 22:16:18','2019-12-15 22:16:18'),(5570,'geography','18.206.180.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 00:01:24','2019-12-16 00:01:24'),(5571,'accounting','3.95.7.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 01:08:36','2019-12-16 01:08:36'),(5572,'chemistry','105.112.99.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:48:06','2019-12-16 04:48:06'),(5573,'geography','34.207.88.147',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:49:45','2019-12-16 08:10:20'),(5574,'mathematics','105.112.24.13',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 05:19:46','2019-12-16 05:19:46'),(5575,'english','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:18:08','2019-12-16 06:18:08'),(5576,'geography','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:30:45','2019-12-16 06:30:45'),(5577,'chemistry','105.112.30.62',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 11:31:31','2019-12-16 11:34:57'),(5578,'chemistry','207.46.13.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 12:26:05','2019-12-16 12:26:05'),(5579,'physics','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 16:53:46','2019-12-16 16:53:46'),(5580,'englishlit','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 17:13:34','2019-12-16 17:13:34'),(5581,'geography','3.92.69.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 18:41:59','2019-12-16 18:41:59'),(5582,'biology','52.202.45.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 21:27:25','2019-12-16 21:27:25'),(5583,'currentaffairs','3.95.195.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 22:56:29','2019-12-16 22:56:29'),(5584,'economics','3.81.134.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 23:46:29','2019-12-16 23:46:29'),(5585,'commerce','54.164.27.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 00:54:33','2019-12-17 00:54:33'),(5586,'commerce','3.92.4.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 04:14:33','2019-12-17 04:14:33'),(5587,'chemistry','197.210.61.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 06:57:40','2019-12-17 06:57:40'),(5588,'chemistry','102.134.114.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:37','2019-12-17 07:45:37'),(5589,'mathematics','102.134.114.193',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:57','2019-12-17 07:47:44'),(5590,'mathematics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:30:56','2019-12-17 08:30:56'),(5591,'physics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:32:55','2019-12-17 08:32:55'),(5592,'englishlit','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:58:40','2019-12-17 08:58:40'),(5593,'chemistry','151.80.39.216',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:17:12','2019-12-30 07:30:25'),(5594,'chemistry','151.80.39.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:23:31','2019-12-17 09:23:31'),(5595,'chemistry','5.196.87.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:30:13','2020-01-07 19:20:55'),(5596,'chemistry','151.80.39.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:39:21','2019-12-17 09:45:56'),(5597,'geography','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:13:13','2019-12-17 10:13:13'),(5598,'government','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:29:20','2019-12-17 10:29:20'),(5599,'mathematics','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:55:34','2019-12-17 10:55:34'),(5600,'mathematics','105.112.178.120',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:24:11','2019-12-17 13:24:11'),(5601,'english','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:31:22','2019-12-17 13:31:22'),(5602,'insurance','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:39:48','2019-12-17 13:39:48'),(5603,'mathematics','105.112.23.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:00:33','2019-12-17 14:00:33'),(5604,'history','54.91.62.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:51:56','2019-12-17 14:51:56'),(5605,'chemistry','106.56.38.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 21:15:06','2019-12-17 21:15:06'),(5606,'chemistry','182.110.22.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 22:30:20','2019-12-17 22:30:20'),(5607,'geography','54.204.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 00:38:06','2019-12-18 00:38:06'),(5608,'chemistry','154.120.93.60',252,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:40:21','2019-12-18 06:53:13'),(5609,'english','154.120.93.60',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:48:52','2019-12-18 06:48:55'),(5610,'mathematics','154.120.93.60',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:53:33','2019-12-18 06:53:56'),(5611,'chemistry','197.210.65.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:44','2019-12-18 07:42:44'),(5612,'chemistry','197.210.64.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:51','2019-12-18 07:42:51'),(5613,'accounting','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 09:13:48','2019-12-18 09:13:48'),(5614,'chemistry','197.210.227.76',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:32:30','2019-12-18 13:51:25'),(5615,'chemistry','197.210.226.124',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:33:10','2019-12-19 08:29:25'),(5616,'chemistry','197.210.227.42',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:50:23','2019-12-18 13:52:09'),(5617,'mathematics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5618,'commerce','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5619,'physics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5620,'englishlit','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5621,'crk','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5622,'currentaffairs','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5623,'history','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5624,'english','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5625,'accounting','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5626,'biology','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:07'),(5627,'englishlit','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5628,'geography','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5629,'irk','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5630,'insurance','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5631,'chemistry','69.30.213.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 14:31:25','2019-12-18 14:31:25'),(5632,'physics','105.112.176.201',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 05:24:23','2019-12-19 05:24:23'),(5633,'chemistry','5.189.172.182',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:05:46','2019-12-19 07:06:30'),(5634,'government','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:12:43','2019-12-19 07:12:43'),(5635,'history','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:33:41','2019-12-19 07:33:41'),(5636,'irk','52.91.34.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 09:17:34','2019-12-19 09:17:34'),(5637,'englishlit','54.88.253.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 10:35:04','2019-12-19 10:35:04'),(5638,'economics','105.112.177.36',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:42:18','2019-12-19 16:42:19'),(5639,'chemistry','105.112.177.36',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:43:25','2019-12-19 16:45:28'),(5640,'chemistry','105.112.177.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:02:16','2019-12-19 17:02:16'),(5641,'commerce','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:40:56','2019-12-19 17:40:56'),(5642,'biology','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:43:13','2019-12-19 17:43:13'),(5643,'mathematics','197.210.53.166',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 18:09:35','2019-12-19 18:09:35'),(5644,'insurance','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:04:27','2019-12-20 01:04:27'),(5645,'biology','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:31:54','2019-12-20 01:31:54'),(5646,'economics','54.146.230.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 05:50:03','2019-12-20 05:50:03'),(5647,'history','3.85.190.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 07:45:09','2019-12-20 07:45:09'),(5648,'history','54.80.62.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 08:26:39','2019-12-20 08:26:39'),(5649,'accounting','54.198.39.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:15:34','2019-12-20 10:15:34'),(5650,'chemistry','197.210.61.37',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:58:34','2019-12-20 11:00:32'),(5651,'englishlit','34.202.161.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 15:24:52','2019-12-20 15:24:52'),(5652,'chemistry','3.85.93.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 16:07:34','2019-12-20 16:07:34'),(5653,'irk','3.87.205.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 21:37:02','2019-12-20 21:37:02'),(5654,'economics','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:05:01','2019-12-21 03:05:01'),(5655,'crk','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:09:00','2019-12-21 03:09:00'),(5656,'chemistry','41.190.31.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 06:38:03','2019-12-21 06:38:04'),(5657,'commerce','54.234.19.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 07:41:34','2019-12-21 07:41:34'),(5658,'chemistry','154.120.111.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:08:50','2019-12-21 08:08:50'),(5659,'chemistry','207.46.13.100',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:11:14','2019-12-21 08:11:14'),(5660,'accounting','3.82.104.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:03:47','2019-12-21 09:03:47'),(5661,'english','154.120.82.204',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:45:44','2019-12-21 09:45:44'),(5662,'crk','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 10:54:28','2019-12-21 10:54:28'),(5663,'history','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:24:32','2019-12-21 11:24:32'),(5664,'chemistry','197.210.71.189',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:53:25','2019-12-21 11:55:06'),(5665,'economics','54.234.34.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:08:12','2019-12-21 17:08:12'),(5666,'chemistry','196.220.136.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:23:29','2019-12-21 17:23:29'),(5667,'government','52.200.198.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 19:00:57','2019-12-21 19:00:57'),(5668,'chemistry','54.145.127.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 20:50:25','2019-12-21 20:50:25'),(5669,'geography','34.239.125.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 22:50:03','2019-12-21 22:50:03'),(5670,'economics','54.144.125.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 23:56:36','2019-12-21 23:56:36'),(5671,'commerce','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:51:11','2019-12-22 00:51:11'),(5672,'government','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:59:35','2019-12-22 00:59:35'),(5673,'insurance','54.82.100.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 06:04:36','2019-12-22 06:04:36'),(5674,'economics','3.91.31.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:14:42','2019-12-22 07:14:42'),(5675,'crk','100.24.16.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:56:40','2019-12-22 07:56:40'),(5676,'englishlit','54.174.249.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 12:39:37','2019-12-22 12:39:37'),(5677,'chemistry','106.57.151.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 14:24:18','2019-12-22 14:24:18'),(5678,'chemistry','58.62.85.244',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 15:07:13','2019-12-22 15:07:13'),(5679,'chemistry','113.121.210.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 16:19:36','2019-12-22 16:19:36'),(5680,'chemistry','197.211.58.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 18:58:28','2019-12-22 18:58:28'),(5681,'crk','18.208.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 19:35:12','2019-12-22 19:35:12'),(5682,'english','52.91.199.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 20:40:32','2019-12-22 20:40:32'),(5683,'crk','54.197.16.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 22:29:28','2019-12-22 22:29:28'),(5684,'chemistry','207.46.13.32',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 05:30:59','2019-12-23 19:53:30'),(5685,'chemistry','41.58.249.101',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 07:32:16','2019-12-23 07:41:55'),(5686,'accounting','3.88.176.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 08:35:37','2019-12-23 08:35:37'),(5687,'chemistry','52.207.237.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 10:59:07','2019-12-23 10:59:07'),(5688,'physics','54.90.171.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 12:33:14','2019-12-23 12:33:14'),(5689,'englishlit','3.94.55.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 14:39:35','2019-12-23 14:39:35'),(5690,'chemistry','105.112.24.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 16:46:27','2019-12-23 16:46:27'),(5691,'english','34.230.73.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 17:01:58','2019-12-23 17:01:58'),(5692,'englishlit','3.81.216.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 21:28:10','2019-12-23 21:28:10'),(5693,'currentaffairs','107.22.114.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 22:06:26','2019-12-23 22:06:26'),(5694,'englishlit','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:36:52','2019-12-24 00:36:52'),(5695,'crk','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:42:20','2019-12-24 00:42:20'),(5696,'chemistry','3.88.226.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 02:28:27','2019-12-24 02:28:27'),(5697,'economics','18.212.81.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 03:34:43','2019-12-24 03:34:43'),(5698,'government','3.84.146.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 04:34:22','2019-12-24 04:34:22'),(5699,'crk','54.89.84.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 07:50:50','2019-12-24 07:50:50'),(5700,'chemistry','41.203.73.248',604,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:03:43','2019-12-24 09:45:17'),(5701,'english','41.203.73.248',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:12:17','2019-12-24 09:12:20'),(5702,'mathematics','41.203.73.248',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:29:46','2019-12-24 09:32:59'),(5703,'chemistry','41.203.73.144',121,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 10:18:01','2019-12-24 11:28:03'),(5704,'physics','41.203.73.144',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 11:28:36','2019-12-24 11:28:39'),(5705,'english','54.234.136.92',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 11:35:59','2019-12-24 11:35:59'),(5706,'english','108.173.207.253',10,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 18:30:37','2019-12-24 18:32:01'),(5707,'english','54.86.42.151',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 19:06:22','2019-12-24 19:06:22'),(5708,'physics','54.162.161.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 02:38:17','2019-12-25 02:38:17'),(5709,'currentaffairs','54.158.129.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 09:00:12','2019-12-25 09:00:12'),(5710,'currentaffairs','34.201.150.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 10:02:21','2019-12-25 10:02:21'),(5711,'chemistry','197.211.58.122',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 12:27:20','2019-12-25 12:27:41'),(5712,'civiledu','184.72.131.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 14:01:27','2019-12-25 14:01:27'),(5713,'english','41.190.31.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:21:37','2019-12-25 17:21:37'),(5714,'english','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:51:12','2019-12-25 17:51:12'),(5715,'accounting','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 18:07:03','2019-12-25 18:07:03'),(5716,'englishlit','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 19:07:55','2019-12-25 19:07:55'),(5717,'commerce','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:07','2019-12-26 09:45:08'),(5718,'chemistry','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5719,'englishlit','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5720,'government','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5721,'geography','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5722,'irk','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5723,'insurance','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5724,'chemistry','197.210.53.171',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:00','2019-12-26 11:07:17'),(5725,'chemistry','197.210.52.12',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:37','2020-04-07 18:47:51'),(5726,'chemistry','197.210.53.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:49','2019-12-26 10:58:49'),(5727,'chemistry','159.138.149.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:12','2019-12-26 12:40:12'),(5728,'chemistry','159.138.158.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:19','2019-12-26 12:40:19'),(5729,'chemistry','159.138.155.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:40','2019-12-26 12:40:40'),(5730,'chemistry','159.138.157.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:42','2019-12-26 12:40:42'),(5731,'chemistry','159.138.153.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:37','2019-12-26 12:41:37'),(5732,'chemistry','159.138.148.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:39','2019-12-26 12:41:39'),(5733,'chemistry','40.77.167.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 16:52:21','2019-12-26 16:52:21'),(5734,'chemistry','151.80.39.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 18:13:53','2019-12-26 18:13:53'),(5735,'mathematics','54.92.139.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 19:28:36','2019-12-26 19:28:36'),(5736,'commerce','3.83.25.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 21:13:20','2019-12-26 21:13:20'),(5737,'government','3.86.200.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 22:19:35','2019-12-26 22:19:35'),(5738,'insurance','54.236.119.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 01:39:51','2019-12-27 01:39:51'),(5739,'english','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:11:47','2019-12-27 04:11:47'),(5740,'crk','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:17:19','2019-12-27 04:17:19'),(5741,'mathematics','105.112.18.136',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 08:38:34','2019-12-27 08:38:35'),(5742,'civiledu','52.4.139.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 11:24:11','2019-12-27 11:24:11'),(5743,'mathematics','52.70.132.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:02:50','2019-12-27 12:02:50'),(5744,'chemistry','54.36.149.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:04:00','2019-12-27 12:04:00'),(5745,'geography','34.229.11.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 15:04:56','2019-12-27 15:04:56'),(5746,'economics','54.82.208.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 17:32:43','2019-12-27 17:32:43'),(5747,'geography','3.95.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 18:44:54','2019-12-27 18:44:54'),(5748,'chemistry','41.203.73.152',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:28:07','2019-12-28 05:58:59'),(5749,'geography','18.232.139.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:38:53','2019-12-27 19:38:53'),(5750,'chemistry','207.46.13.72',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:58:11','2019-12-27 19:58:11'),(5751,'english','18.212.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 21:36:45','2019-12-27 21:36:45'),(5752,'geography','3.81.112.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 22:26:48','2019-12-27 22:26:48'),(5753,'englishlit','3.95.29.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 07:09:48','2019-12-28 07:09:48'),(5754,'geography','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 08:46:11','2019-12-28 08:46:11'),(5755,'chemistry','157.55.39.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:01:00','2019-12-28 13:56:07'),(5756,'physics','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:07:43','2019-12-28 09:07:43'),(5757,'currentaffairs','3.90.16.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:52:08','2019-12-28 09:52:08'),(5758,'chemistry','198.27.70.196',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 13:04:37','2019-12-28 13:05:18'),(5759,'economics','54.208.246.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 16:54:27','2019-12-28 16:54:27'),(5760,'physics','3.90.201.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 21:17:55','2019-12-28 21:17:55'),(5761,'englishlit','54.88.31.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 22:11:00','2019-12-28 22:11:00'),(5762,'chemistry','46.229.168.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 00:53:10','2019-12-29 00:53:10'),(5763,'mathematics','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 01:48:09','2019-12-29 01:48:09'),(5764,'geography','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:00:13','2019-12-29 02:00:13'),(5765,'government','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:45:45','2019-12-29 02:45:45'),(5766,'mathematics','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 03:11:26','2019-12-29 03:11:26'),(5767,'mathematics','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:29:09','2019-12-29 04:29:09'),(5768,'insurance','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:50:21','2019-12-29 04:50:21'),(5769,'accounting','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 06:48:58','2019-12-29 06:48:58'),(5770,'history','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 07:05:29','2019-12-29 07:05:29'),(5771,'geography','18.212.192.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 14:35:59','2019-12-29 14:35:59'),(5772,'chemistry','159.138.157.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 15:56:34','2019-12-29 15:56:34'),(5773,'chemistry','159.138.156.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:52','2019-12-29 16:06:52'),(5774,'chemistry','159.138.156.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:54','2019-12-29 16:06:54'),(5775,'chemistry','159.138.151.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:08','2019-12-29 16:17:08'),(5776,'chemistry','159.138.155.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:10','2019-12-29 16:17:10'),(5777,'chemistry','54.173.230.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 17:07:40','2019-12-29 17:07:40'),(5778,'chemistry','77.88.5.57',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 20:09:09','2020-02-17 06:41:03'),(5779,'chemistry','105.112.37.95',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 22:46:03','2019-12-29 22:48:25'),(5780,'accounting','54.162.107.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 00:28:34','2019-12-30 00:28:34'),(5781,'chemistry','5.196.87.181',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:24:52','2019-12-30 07:24:52'),(5782,'chemistry','5.196.87.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:28:37','2019-12-30 07:28:37'),(5783,'chemistry','151.80.39.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:31:37','2019-12-30 07:31:37'),(5784,'history','3.80.177.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 10:00:20','2019-12-30 10:00:20'),(5785,'chemistry','41.87.80.10',177,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:52:05','2020-01-03 12:40:11'),(5786,'english','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:05','2020-01-03 09:47:26'),(5787,'biology','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:35','2020-01-06 10:18:55'),(5788,'physics','41.87.80.10',238,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 12:26:15','2020-01-14 13:07:03'),(5789,'chemistry','197.210.71.107',112,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 18:08:04','2019-12-30 21:50:09'),(5790,'government','54.227.176.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 01:11:30','2019-12-31 01:11:30'),(5791,'englishlit','107.22.1.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 02:42:52','2019-12-31 02:42:52'),(5792,'geography','41.87.80.10',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:35','2020-01-03 09:11:05'),(5793,'mathematics','41.87.80.10',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:42','2020-01-03 12:40:26'),(5794,'commerce','41.87.80.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 11:27:07','2019-12-31 15:11:01'),(5795,'physics','197.210.85.161',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:01','2019-12-31 21:44:09'),(5796,'geography','197.210.85.161',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:36','2019-12-31 21:17:50'),(5797,'commerce','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:39','2019-12-31 17:35:25'),(5798,'biology','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:27:53','2019-12-31 17:50:46'),(5799,'mathematics','197.210.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:22','2019-12-31 17:35:22'),(5800,'english','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:50','2019-12-31 17:50:42'),(5801,'chemistry','197.210.85.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 19:06:57','2019-12-31 21:19:14'),(5802,'biology','54.89.212.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 20:08:07','2019-12-31 20:08:07'),(5803,'history','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:24:33','2019-12-31 21:24:33'),(5804,'insurance','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:51:19','2019-12-31 21:51:19'),(5805,'economics','3.83.156.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 23:11:47','2019-12-31 23:11:47'),(5806,'economics','54.159.177.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 00:29:53','2020-01-01 00:29:53'),(5807,'history','34.235.146.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 02:22:24','2020-01-01 02:22:24'),(5808,'physics','197.210.70.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:22:07','2020-01-01 06:22:07'),(5809,'accounting','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:52:22','2020-01-01 06:52:22'),(5810,'chemistry','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 07:22:30','2020-01-01 07:22:30'),(5811,'history','3.82.145.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 12:16:11','2020-01-01 12:16:11'),(5812,'physics','197.210.64.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:45','2020-01-01 13:42:45'),(5813,'geography','197.210.65.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:52','2020-01-01 13:42:52'),(5814,'physics','197.210.47.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:07:21','2020-01-01 14:07:21'),(5815,'irk','3.86.222.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:39:17','2020-01-01 14:39:17'),(5816,'crk','54.173.160.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 19:37:03','2020-01-01 19:37:03'),(5817,'economics','54.81.159.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 20:29:55','2020-01-01 20:29:55'),(5818,'commerce','34.207.138.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 23:01:12','2020-01-01 23:01:12'),(5819,'crk','3.84.24.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 04:49:38','2020-01-02 04:49:38'),(5820,'chemistry','197.210.227.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:20:08','2020-01-02 05:20:08'),(5821,'chemistry','197.210.226.177',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:22:40','2020-01-02 05:23:22'),(5822,'chemistry','197.210.227.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:23:39','2020-01-02 05:24:16'),(5823,'accounting','3.81.217.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 06:18:28','2020-01-02 06:18:28'),(5824,'economics','3.84.17.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 10:40:34','2020-01-02 10:40:34'),(5825,'chemistry','159.138.152.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:40','2020-01-02 11:34:40'),(5826,'chemistry','159.138.154.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:41','2020-01-02 11:34:41'),(5827,'chemistry','159.138.149.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:19','2020-01-02 13:42:19'),(5828,'chemistry','159.138.155.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:22','2020-01-02 13:42:22'),(5829,'english','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:16','2020-01-02 13:48:16'),(5830,'chemistry','197.210.53.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:29','2020-01-02 13:48:29'),(5831,'biology','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:54','2020-01-02 13:48:54'),(5832,'chemistry','40.77.167.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 14:52:08','2020-01-02 14:52:08'),(5833,'chemistry','173.252.87.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:12:40','2020-01-02 15:12:40'),(5834,'chemistry','105.112.96.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:14:54','2020-01-02 15:15:27'),(5835,'government','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:23:11','2020-01-02 15:23:11'),(5836,'chemistry','197.210.29.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:01:48','2020-01-02 16:01:48'),(5837,'chemistry','54.198.147.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:20:52','2020-01-02 16:20:52'),(5838,'geography','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:21:06','2020-01-02 18:21:06'),(5839,'government','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:53:06','2020-01-02 18:53:06'),(5840,'chemistry','141.0.12.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:46:34','2020-01-02 19:46:34'),(5841,'chemistry','54.36.148.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:54:13','2020-01-02 19:54:13'),(5842,'chemistry','107.167.116.51',81,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:22:38','2020-01-02 20:56:21'),(5843,'chemistry','69.171.251.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:25:00','2020-01-02 20:25:00'),(5844,'chemistry','173.252.95.39',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:27:00','2020-01-02 20:27:01'),(5845,'chemistry','105.112.107.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:44:23','2020-01-02 20:44:23'),(5846,'chemistry','197.210.85.199',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:48:24','2020-01-02 21:10:22'),(5847,'chemistry','173.252.127.12',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:56:49','2020-01-02 20:56:52'),(5848,'physics','107.167.107.19',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:06:13','2020-01-02 23:06:17'),(5849,'physics','105.112.121.61',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:07:14','2020-01-02 23:08:11'),(5850,'physics','107.167.107.16',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:19','2020-01-02 23:12:21'),(5851,'physics','105.112.112.87',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:44','2020-01-02 23:12:47'),(5852,'commerce','18.206.201.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:19:52','2020-01-02 23:19:52'),(5853,'economics','50.19.154.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:46:41','2020-01-03 01:31:33'),(5854,'accounting','50.19.154.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:56:30','2020-01-03 00:56:30'),(5855,'crk','3.82.121.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 03:17:13','2020-01-03 03:17:13'),(5856,'insurance','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 05:01:58','2020-01-03 05:01:58'),(5857,'mathematics','105.112.177.41',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 07:28:37','2020-01-03 07:28:38'),(5858,'accounting','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:14:39','2020-01-03 09:14:39'),(5859,'englishlit','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:40:09','2020-01-03 09:40:09'),(5860,'chemistry','173.252.127.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5861,'chemistry','173.252.127.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5862,'chemistry','69.171.251.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 10:12:20','2020-01-03 10:12:20'),(5863,'english','52.23.234.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 11:11:09','2020-01-03 11:11:09'),(5864,'chemistry','54.36.149.6',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 12:32:58','2020-01-03 12:32:58'),(5865,'chemistry','173.252.127.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5866,'chemistry','173.252.127.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5867,'accounting','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:47:56','2020-01-03 22:47:56'),(5868,'crk','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:59:55','2020-01-03 22:59:55'),(5869,'crk','18.234.186.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 00:39:01','2020-01-04 00:39:01'),(5870,'accounting','52.206.79.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 01:50:47','2020-01-04 01:50:47'),(5871,'mathematics','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5872,'commerce','3.83.117.183',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:17'),(5873,'accounting','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5874,'englishlit','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5875,'crk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5876,'irk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5877,'civiledu','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5878,'chemistry','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:25:30','2020-01-04 07:25:30'),(5879,'physics','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:54:21','2020-01-04 07:54:21'),(5880,'accounting','54.211.18.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 08:33:09','2020-01-04 08:33:09'),(5881,'englishlit','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:26:47','2020-01-04 09:26:47'),(5882,'physics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:28:39','2020-01-04 09:28:39'),(5883,'insurance','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:47:41','2020-01-04 09:47:41'),(5884,'geography','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:14','2020-01-04 09:54:14'),(5885,'english','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:18','2020-01-04 09:54:18'),(5886,'mathematics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:24','2020-01-04 09:54:24'),(5887,'chemistry','159.138.158.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:29:58','2020-01-04 10:29:58'),(5888,'chemistry','159.138.153.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:30:00','2020-01-04 10:30:00'),(5889,'currentaffairs','34.203.237.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 13:00:10','2020-01-04 13:00:10'),(5890,'chemistry','159.138.152.167',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 14:50:39','2020-01-04 14:50:39'),(5891,'english','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:36:52','2020-01-04 15:36:52'),(5892,'englishlit','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:40:27','2020-01-04 15:40:27'),(5893,'crk','35.174.5.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 19:26:20','2020-01-04 19:26:20'),(5894,'chemistry','197.210.226.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:08:58','2020-01-04 22:08:58'),(5895,'economics','18.232.58.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:09:24','2020-01-04 22:09:24'),(5896,'chemistry','18.206.248.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 00:08:29','2020-01-05 00:08:29'),(5897,'government','34.207.181.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 01:22:25','2020-01-05 01:22:25'),(5898,'englishlit','3.92.193.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 02:40:51','2020-01-05 02:40:51'),(5899,'crk','52.23.188.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 05:08:41','2020-01-05 05:08:41'),(5900,'english','52.207.216.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 07:59:31','2020-01-05 07:59:31'),(5901,'english','150.70.168.143',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 13:37:22','2020-01-05 13:37:25'),(5902,'english','35.173.133.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 16:54:20','2020-01-05 16:54:20'),(5903,'chemistry','159.138.154.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:07','2020-01-05 19:39:07'),(5904,'chemistry','159.138.157.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:10','2020-01-05 19:39:10'),(5905,'chemistry','197.211.58.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:13:15','2020-01-05 20:13:24'),(5906,'physics','66.102.8.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:39:20','2020-01-05 20:39:20'),(5907,'biology','66.102.8.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:40:26','2020-01-05 20:41:57'),(5908,'english','66.102.8.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:41:46','2020-01-05 20:41:46'),(5909,'physics','197.210.71.215',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:23','2020-01-05 21:15:06'),(5910,'geography','197.210.71.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:29','2020-01-05 20:46:29'),(5911,'mathematics','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:44','2020-01-05 20:51:35'),(5912,'chemistry','197.210.71.215',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:04','2020-04-05 08:30:45'),(5913,'biology','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:51','2020-01-05 20:52:21'),(5914,'commerce','197.210.71.215',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:48:01','2020-01-05 20:52:36'),(5915,'chemistry','40.77.167.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 04:41:04','2020-01-06 04:41:04'),(5916,'physics','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 06:59:39','2020-01-06 06:59:39'),(5917,'biology','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:25','2020-01-06 07:01:25'),(5918,'chemistry','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:36','2020-01-06 07:01:36'),(5919,'biology','54.196.116.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 08:39:32','2020-01-06 08:39:32'),(5920,'currentaffairs','52.90.145.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 09:20:05','2020-01-06 09:20:05'),(5921,'currentaffairs','54.81.36.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 10:59:33','2020-01-06 10:59:33'),(5922,'civiledu','54.165.53.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 14:25:40','2020-01-06 14:25:40'),(5923,'english','54.165.254.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 19:05:30','2020-01-06 19:05:30'),(5924,'englishlit','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 20:46:10','2020-01-06 20:46:10'),(5925,'accounting','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 23:28:47','2020-01-06 23:28:47'),(5926,'chemistry','40.77.167.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 00:55:53','2020-01-07 00:55:53'),(5927,'chemistry','197.210.85.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 10:49:45','2020-01-07 10:49:45'),(5928,'chemistry','114.119.144.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 16:29:50','2020-01-07 16:29:50'),(5929,'mathematics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:22','2020-01-07 19:50:22'),(5930,'biology','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5931,'physics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5932,'chemistry','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5933,'englishlit','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5934,'government','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5935,'history','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5936,'history','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:03:53','2020-01-08 00:03:53'),(5937,'mathematics','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:14:17','2020-01-08 00:14:17'),(5938,'commerce','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 02:50:48','2020-01-08 02:50:48'),(5939,'government','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:21:02','2020-01-08 03:21:02'),(5940,'physics','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:30','2020-01-08 03:49:31'),(5941,'accounting','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:55','2020-01-08 03:49:56'),(5942,'mathematics','105.112.24.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 05:26:53','2020-01-08 05:26:53'),(5943,'insurance','18.234.250.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:04:04','2020-01-08 07:04:04'),(5944,'chemistry','157.55.39.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:32:02','2020-01-08 07:32:03'),(5945,'english','3.90.5.24',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 08:20:47','2020-01-08 08:20:48'),(5946,'chemistry','197.210.152.54',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 09:59:01','2020-01-08 10:01:03'),(5947,'biology','197.210.152.54',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:01:17','2020-01-08 10:01:54'),(5948,'crk','54.175.37.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:33:34','2020-01-08 10:33:34'),(5949,'english','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 11:25:14','2020-01-08 11:25:14'),(5950,'mathematics','3.89.141.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 18:26:35','2020-01-08 18:26:35'),(5951,'geography','3.90.5.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 21:36:06','2020-01-08 21:36:06'),(5952,'economics','54.224.174.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 01:24:15','2020-01-09 01:24:15'),(5953,'geography','3.92.200.47',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 02:38:09','2020-01-09 02:46:31'),(5954,'english','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:01:22','2020-01-09 05:01:22'),(5955,'geography','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:35:09','2020-01-09 05:35:09'),(5956,'chemistry','114.119.158.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 08:20:35','2020-01-09 08:20:35'),(5957,'chemistry','197.210.84.180',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:25','2020-01-09 11:42:25'),(5958,'chemistry','66.249.93.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:27','2020-01-09 11:42:29'),(5959,'geography','3.81.50.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 15:48:20','2020-01-09 15:48:20'),(5960,'englishlit','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:10:05','2020-01-09 17:10:05'),(5961,'physics','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:29:29','2020-01-09 17:29:29'),(5962,'currentaffairs','54.91.26.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 20:05:46','2020-01-09 20:05:46'),(5963,'biology','54.90.217.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 23:39:42','2020-01-09 23:39:42'),(5964,'economics','3.88.190.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 04:30:45','2020-01-10 04:30:45'),(5965,'chemistry','159.138.155.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:39','2020-01-10 05:45:39'),(5966,'chemistry','159.138.148.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:42','2020-01-10 05:45:42'),(5967,'physics','3.90.20.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 07:05:46','2020-01-10 07:05:46'),(5968,'mathematics','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 09:57:03','2020-01-10 09:57:03'),(5969,'geography','54.242.86.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 14:16:02','2020-01-10 14:16:02'),(5970,'mathematics','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:33:50','2020-01-10 15:33:50'),(5971,'government','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:52:04','2020-01-10 15:52:04'),(5972,'mathematics','105.112.177.83',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 16:08:56','2020-01-10 16:08:57'),(5973,'mathematics','54.92.183.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 17:00:01','2020-01-10 17:00:01'),(5974,'accounting','54.175.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 19:11:24','2020-01-10 19:11:24'),(5975,'history','54.196.1.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 20:19:00','2020-01-10 20:19:00'),(5976,'insurance','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:04:48','2020-01-11 00:04:48'),(5977,'englishlit','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:23:07','2020-01-11 00:23:07'),(5978,'chemistry','157.55.39.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 07:47:08','2020-01-11 07:47:08'),(5979,'geography','3.85.229.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 08:19:26','2020-01-11 08:19:26'),(5980,'currentaffairs','54.210.29.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 09:17:59','2020-01-11 09:17:59'),(5981,'chemistry','129.205.112.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:01:54','2020-01-11 10:01:54'),(5982,'chemistry','114.119.163.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:12:45','2020-01-11 10:12:45'),(5983,'biology','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:49:13','2020-01-11 10:49:13'),(5984,'english','41.190.3.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:50:45','2020-01-11 10:53:17'),(5985,'government','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:03','2020-01-11 10:57:03'),(5986,'currentaffairs','3.81.114.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:29','2020-01-11 10:57:29'),(5987,'accounting','34.224.97.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 20:14:24','2020-01-11 20:14:24'),(5988,'history','34.228.161.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 03:43:41','2020-01-12 03:43:41'),(5989,'chemistry','54.36.150.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 07:38:14','2020-01-12 07:38:17'),(5990,'chemistry','66.249.66.159',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:18:04','2020-01-12 20:11:39'),(5991,'chemistry','207.46.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:37:09','2020-01-12 16:37:09'),(5992,'chemistry','41.206.30.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 11:30:26','2020-01-13 11:30:26'),(5993,'chemistry','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:08','2020-01-13 17:08:08'),(5994,'biology','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:51','2020-01-13 17:08:51'),(5995,'biology','3.95.28.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:38:02','2020-01-13 17:38:02'),(5996,'chemistry','105.112.21.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:40:01','2020-01-13 17:42:28'),(5997,'history','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 19:43:41','2020-01-13 19:43:41'),(5998,'insurance','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:27','2020-01-13 20:05:27'),(5999,'economics','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:30','2020-01-13 20:05:30'),(6000,'mathematics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6001,'commerce','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6002,'biology','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6003,'government','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6004,'economics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6005,'irk','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6006,'insurance','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6007,'english','18.209.172.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:02:39','2020-01-13 22:02:39'),(6008,'economics','3.83.111.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:58:30','2020-01-13 22:58:30'),(6009,'history','54.159.7.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 01:49:56','2020-01-14 01:49:56'),(6010,'accounting','18.215.161.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 03:52:50','2020-01-14 03:52:50'),(6011,'mathematics','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:35:01','2020-01-14 04:35:01'),(6012,'chemistry','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:56:46','2020-01-14 04:56:46'),(6013,'chemistry','105.112.106.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 06:53:23','2020-01-14 06:53:23'),(6014,'irk','34.237.245.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 10:17:26','2020-01-14 10:17:26'),(6015,'physics','197.210.64.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 12:36:48','2020-01-14 12:36:48'),(6016,'chemistry','162.238.118.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:13:49','2020-01-14 13:13:49'),(6017,'crk','54.145.57.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:25:40','2020-01-14 13:25:40'),(6018,'mathematics','52.91.218.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:29:53','2020-01-14 14:29:56'),(6019,'biology','52.91.218.226',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:31:04','2020-01-14 14:31:07'),(6020,'physics','197.210.226.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 16:50:50','2020-01-14 16:50:50'),(6021,'commerce','54.152.183.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 17:45:43','2020-01-14 17:45:43'),(6022,'chemistry','197.211.58.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 19:02:46','2020-01-14 19:02:46'),(6023,'accounting','18.206.115.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:06:49','2020-01-14 20:06:49'),(6024,'physics','197.210.227.105',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:18:08','2020-01-14 21:20:01'),(6025,'chemistry','105.112.112.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:27:30','2020-01-14 20:27:30'),(6026,'physics','197.210.227.176',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:14:48','2020-01-14 21:18:53'),(6027,'physics','197.210.226.126',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:19:38','2020-01-14 21:19:39'),(6028,'biology','66.249.66.128',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 22:53:39','2020-01-14 22:53:41'),(6029,'economics','34.229.47.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 01:05:22','2020-01-15 01:05:22'),(6030,'chemistry','18.212.26.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 02:18:02','2020-01-15 02:18:02'),(6031,'chemistry','54.208.21.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 05:24:27','2020-01-15 05:24:27'),(6032,'chemistry','159.138.152.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:16','2020-01-15 07:37:16'),(6033,'chemistry','159.138.157.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:19','2020-01-15 07:37:19'),(6034,'government','100.26.203.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:42:28','2020-01-15 08:42:28'),(6035,'chemistry','197.210.29.194',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:53:58','2020-01-15 08:54:11'),(6036,'physics','34.236.147.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 09:37:53','2020-01-15 09:37:56'),(6037,'economics','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 12:29:24','2020-01-15 12:29:24'),(6038,'insurance','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 14:56:31','2020-01-15 14:56:31'),(6039,'economics','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:09:36','2020-01-15 15:09:36'),(6040,'crk','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:19:41','2020-01-15 15:19:41'),(6041,'chemistry','197.210.45.172',92,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:26:03','2020-01-15 15:31:10'),(6042,'commerce','18.209.5.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 17:07:51','2020-01-15 17:07:51'),(6043,'chemistry','197.211.58.205',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 20:53:18','2020-01-15 20:53:44'),(6044,'chemistry','197.211.58.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:03','2020-01-15 21:02:03'),(6045,'englishlit','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:38','2020-01-15 21:02:38'),(6046,'accounting','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:11:49','2020-01-15 21:11:49'),(6047,'chemistry','76.227.27.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:26:06','2020-01-15 21:35:01'),(6048,'english','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:19:54','2020-01-15 22:19:54'),(6049,'crk','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:34:26','2020-01-15 22:34:26'),(6050,'chemistry','159.138.158.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:24','2020-01-16 03:41:24'),(6051,'chemistry','159.138.154.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:27','2020-01-16 03:41:27'),(6052,'chemistry','37.150.17.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 09:03:33','2020-01-16 09:03:33'),(6053,'english','54.226.244.165',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 10:17:00','2020-01-16 10:17:03'),(6054,'insurance','34.229.6.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 12:22:59','2020-01-16 12:22:59'),(6055,'englishlit','100.26.51.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 14:37:15','2020-01-16 14:37:15'),(6056,'accounting','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:45:59','2020-01-16 15:45:59'),(6057,'physics','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:48:23','2020-01-16 15:48:23'),(6058,'english','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:15:39','2020-01-16 18:15:39'),(6059,'currentaffairs','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:19:03','2020-01-16 18:19:03'),(6060,'chemistry','18.205.239.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 19:22:43','2020-01-16 19:22:43'),(6061,'crk','54.209.182.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 20:55:34','2020-01-16 20:55:34'),(6062,'crk','52.87.197.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 21:40:29','2020-01-16 21:40:29'),(6063,'englishlit','54.90.245.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 22:42:09','2020-01-16 22:42:09'),(6064,'englishlit','52.91.61.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 00:58:04','2020-01-17 00:58:04'),(6065,'chemistry','174.129.61.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 03:28:11','2020-01-17 03:28:11'),(6066,'government','3.85.188.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 04:20:24','2020-01-17 04:20:24'),(6067,'chemistry','159.138.155.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:19','2020-01-17 05:35:19'),(6068,'chemistry','159.138.154.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:20','2020-02-24 05:01:25'),(6069,'crk','18.234.143.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 07:39:30','2020-01-17 07:39:30'),(6070,'chemistry','159.138.150.55',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 10:29:28','2020-01-17 10:29:29'),(6071,'chemistry','159.138.153.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:18','2020-01-17 13:26:18'),(6072,'chemistry','159.138.156.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:21','2020-01-17 13:26:21'),(6073,'accounting','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:31:59','2020-01-17 18:31:59'),(6074,'english','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:32:57','2020-01-17 18:32:57'),(6075,'history','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 23:43:23','2020-01-17 23:43:23'),(6076,'chemistry','84.241.193.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 02:10:58','2020-01-18 02:10:58'),(6077,'economics','54.147.112.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:09:08','2020-01-18 04:09:08'),(6078,'chemistry','159.138.128.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:53','2020-01-18 04:22:53'),(6079,'chemistry','159.138.150.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:55','2020-01-18 04:22:55'),(6080,'accounting','52.207.178.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:28:30','2020-01-18 11:06:20'),(6081,'history','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:30:16','2020-01-18 10:30:16'),(6082,'englishlit','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:36:43','2020-01-18 10:36:43'),(6083,'chemistry','197.210.65.53',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-18 21:33:39','2020-04-21 11:21:31'),(6084,'chemistry','197.210.65.246',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:05','2020-01-18 21:51:06'),(6085,'chemistry','197.210.65.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:24','2020-01-18 21:51:24'),(6086,'chemistry','197.210.65.33',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:40','2020-01-18 21:51:44'),(6087,'chemistry','197.210.64.160',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:52:12','2020-01-18 21:52:15'),(6088,'physics','197.210.47.29',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:54:25','2020-01-18 21:54:28'),(6089,'mathematics','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:39:47','2020-01-19 11:39:47'),(6090,'government','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:50:10','2020-01-19 11:50:10'),(6091,'chemistry','5.186.127.79',196,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:25:22','2020-03-07 23:25:18'),(6092,'englishlit','5.186.127.79',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:58:08','2020-02-03 17:34:24'),(6093,'commerce','3.82.117.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 14:53:51','2020-01-19 14:53:51'),(6094,'english','54.225.22.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 18:38:53','2020-01-19 18:38:53'),(6095,'chemistry','41.190.31.147',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 22:23:33','2020-01-19 22:23:33'),(6096,'geography','18.232.68.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 05:23:53','2020-01-20 05:23:53'),(6097,'geography','54.159.45.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:03:51','2020-01-20 06:03:51'),(6098,'geography','100.27.24.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:45:32','2020-01-20 06:45:32'),(6099,'physics','54.227.113.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 13:15:49','2020-01-20 13:15:49'),(6100,'geography','34.203.192.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:05:57','2020-01-20 14:05:57'),(6101,'english','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:10:11','2020-01-20 14:10:14'),(6102,'accounting','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:13:50','2020-01-20 14:13:53'),(6103,'biology','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:17:51','2020-01-20 14:17:54'),(6104,'chemistry','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:21:26','2020-01-20 14:21:29'),(6105,'commerce','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:31:36','2020-01-20 14:31:39'),(6106,'geography','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:36:02','2020-01-20 14:36:05'),(6107,'history','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:38:08','2020-01-20 14:38:11'),(6108,'physics','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:44:17','2020-01-20 14:44:20'),(6109,'chemistry','34.203.190.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:47:27','2020-01-20 14:47:27'),(6110,'englishlit','18.208.215.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 15:44:11','2020-01-20 15:44:11'),(6111,'biology','54.163.24.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 20:05:22','2020-01-20 20:05:22'),(6112,'currentaffairs','54.224.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 21:53:39','2020-01-20 21:53:39'),(6113,'biology','54.224.78.213',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 22:15:45','2020-01-20 22:15:47'),(6114,'englishlit','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:06:37','2020-01-21 04:06:37'),(6115,'physics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:24:39','2020-01-21 04:24:39'),(6116,'economics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:38:24','2020-01-21 04:38:24'),(6117,'mathematics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:05:21','2020-01-21 05:05:21'),(6118,'commerce','34.207.229.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:42:09','2020-01-21 05:42:09'),(6119,'mathematics','3.80.112.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 08:48:34','2020-01-21 08:48:34'),(6120,'chemistry','159.138.156.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:02','2020-01-21 09:08:02'),(6121,'chemistry','159.138.155.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:05','2020-01-21 09:08:05'),(6122,'insurance','34.201.67.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:58:44','2020-01-21 09:58:44'),(6123,'chemistry','34.201.67.206',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 10:24:35','2020-01-21 10:24:39'),(6124,'crk','3.84.124.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 11:25:57','2020-01-21 11:25:57'),(6125,'english','54.82.117.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 12:39:35','2020-01-21 12:39:38'),(6126,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6127,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6128,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6129,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6130,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6131,'chemistry','197.210.65.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:51:28','2020-01-21 16:51:28'),(6132,'geography','34.235.141.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 17:46:43','2020-01-21 17:46:43'),(6133,'mathematics','54.221.179.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 23:42:47','2020-01-21 23:42:47'),(6134,'accounting','54.88.104.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 05:24:34','2020-01-22 05:24:34'),(6135,'chemistry','52.91.210.222',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:50'),(6136,'chemistry','52.91.210.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:17'),(6137,'english','197.210.45.42',52,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:07:55','2020-01-22 10:20:09'),(6138,'chemistry','197.210.45.42',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:16:58','2020-01-22 10:17:01'),(6139,'english','197.210.84.40',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 11:05:36','2020-01-22 11:07:18'),(6140,'accounting','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:06:53','2020-01-22 14:06:56'),(6141,'biology','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:16:26','2020-01-22 14:16:29'),(6142,'chemistry','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:17:57','2020-01-22 14:18:00'),(6143,'commerce','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:24:26','2020-01-22 14:24:28'),(6144,'english','3.85.50.174',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:28:45','2020-01-22 14:31:27'),(6145,'geography','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:44:20','2020-01-22 14:44:23'),(6146,'government','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:49:57','2020-01-22 14:50:00'),(6147,'history','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:52:09','2020-01-22 14:52:12'),(6148,'physics','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:57:23','2020-01-22 14:57:26'),(6149,'mathematics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:06:42','2020-01-22 19:06:42'),(6150,'physics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:10:39','2020-01-22 19:10:40'),(6151,'physics','105.112.178.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 01:21:24','2020-01-23 01:21:24'),(6152,'history','54.242.9.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 07:11:29','2020-01-23 07:11:29'),(6153,'accounting','3.95.2.128',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:02:04','2020-01-23 12:49:19'),(6154,'biology','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:11:55','2020-01-23 12:54:42'),(6155,'chemistry','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:16:26','2020-01-23 12:57:07'),(6156,'commerce','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:25:56','2020-01-23 13:00:45'),(6157,'geography','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:34:50','2020-01-23 13:07:52'),(6158,'government','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:42:08','2020-01-23 13:08:44'),(6159,'english','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:43:06','2020-01-23 13:02:16'),(6160,'history','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:46:06','2020-01-23 13:11:05'),(6161,'physics','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:53:50','2020-01-23 13:18:26'),(6162,'chemistry','78.67.8.249',190,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 11:18:52','2020-05-28 07:54:26'),(6163,'biology','54.226.136.136',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 11:47:50','2020-01-23 11:47:50'),(6164,'insurance','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:24:44','2020-01-23 12:24:44'),(6165,'economics','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:33:40','2020-01-23 12:33:40'),(6166,'chemistry','3.83.32.171',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 14:11:16','2020-01-23 14:46:53'),(6167,'history','54.80.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 15:21:18','2020-01-23 15:21:18'),(6168,'accounting','54.227.208.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 19:10:55','2020-01-23 19:10:55'),(6169,'chemistry','114.119.129.17',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:30:35','2020-01-23 22:30:35'),(6170,'chemistry','54.145.181.222',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:34:50','2020-01-23 22:34:50'),(6171,'english','66.249.66.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:23:18','2020-01-24 01:23:18'),(6172,'chemistry','159.138.153.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:26','2020-01-24 01:38:26'),(6173,'chemistry','159.138.155.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:28','2020-01-24 01:38:28'),(6174,'irk','54.221.33.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 02:21:24','2020-01-24 02:21:24'),(6175,'crk','3.92.163.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 07:56:53','2020-01-24 07:56:53'),(6176,'chemistry','159.138.155.158',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:33:54','2020-01-24 09:33:54'),(6177,'chemistry','159.138.155.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:02','2020-01-24 09:34:02'),(6178,'chemistry','159.138.159.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:05','2020-01-24 09:34:05'),(6179,'chemistry','159.138.158.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:55','2020-01-24 11:45:55'),(6180,'chemistry','159.138.152.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:58','2020-01-24 11:45:58'),(6181,'commerce','54.234.15.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 12:20:42','2020-01-24 12:20:42'),(6182,'crk','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:21:36','2020-01-24 16:21:36'),(6183,'accounting','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:29:29','2020-01-24 16:29:29'),(6184,'english','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:48','2020-01-24 18:50:48'),(6185,'mathematics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6186,'commerce','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6187,'chemistry','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6188,'geography','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6189,'economics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6190,'insurance','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6191,'chemistry','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:38:45','2020-01-24 19:38:47'),(6192,'chemistry','159.138.155.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:17','2020-01-24 19:48:17'),(6193,'chemistry','159.138.157.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:20','2020-01-24 19:48:20'),(6194,'economics','54.234.219.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 21:16:38','2020-01-24 21:16:38'),(6195,'chemistry','54.82.250.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 00:25:04','2020-01-25 00:25:04'),(6196,'geography','52.91.20.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 02:53:58','2020-01-25 02:53:58'),(6197,'government','52.205.208.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 05:54:14','2020-01-25 05:54:14'),(6198,'government','3.82.98.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 06:50:25','2020-01-25 06:50:25'),(6199,'economics','18.232.150.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 07:40:32','2020-01-25 07:40:32'),(6200,'chemistry','66.249.64.112',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:00:41','2020-01-25 10:06:05'),(6201,'chemistry','66.249.64.114',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:11:26','2020-01-25 10:25:38'),(6202,'insurance','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:06:32','2020-01-25 11:06:32'),(6203,'crk','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:16:24','2020-01-25 11:16:24'),(6204,'mathematics','105.112.177.119',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 12:21:44','2020-01-25 12:24:10'),(6205,'economics','184.72.97.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:05:36','2020-01-25 15:05:36'),(6206,'english','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6207,'economics','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6208,'englishlit','54.172.2.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 16:46:58','2020-01-25 16:46:58'),(6209,'english','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 18:56:16','2020-01-25 18:56:16'),(6210,'commerce','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 19:01:52','2020-01-25 19:01:52'),(6211,'crk','54.227.219.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:07:54','2020-01-25 23:07:54'),(6212,'crk','34.227.56.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:54:31','2020-01-25 23:54:31'),(6213,'geography','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 09:48:50','2020-01-26 09:48:50'),(6214,'physics','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:42','2020-01-26 13:25:42'),(6215,'insurance','54.163.34.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:44','2020-01-26 13:53:10'),(6216,'englishlit','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 14:26:21','2020-01-26 14:26:21'),(6217,'chemistry','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 15:31:14','2020-01-26 15:31:14'),(6218,'currentaffairs','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:40:36','2020-01-26 16:40:36'),(6219,'english','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:56:27','2020-01-26 16:56:27'),(6220,'mathematics','54.234.126.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 17:35:46','2020-01-26 17:35:46'),(6221,'englishlit','3.80.203.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 18:54:41','2020-01-26 18:54:41'),(6222,'mathematics','3.92.208.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 19:40:52','2020-01-26 19:40:52'),(6223,'englishlit','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:07:23','2020-01-26 22:07:23'),(6224,'commerce','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:27:30','2020-01-26 22:27:30'),(6225,'crk','3.81.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 23:10:54','2020-01-26 23:10:54'),(6226,'economics','54.237.215.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 00:37:31','2020-01-27 00:37:31'),(6227,'government','100.24.9.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 02:34:55','2020-01-27 02:34:55'),(6228,'mathematics','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6229,'biology','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6230,'chemistry','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6231,'englishlit','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6232,'government','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6233,'civiledu','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6234,'currentaffairs','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:27','2020-01-27 04:08:27'),(6235,'english','3.89.150.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 06:06:57','2020-01-27 06:06:57'),(6236,'chemistry','114.119.167.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 07:14:52','2020-01-27 07:14:52'),(6237,'english','54.167.78.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 08:12:16','2020-01-27 08:12:16'),(6238,'biology','3.94.145.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:10:32','2020-01-27 12:10:32'),(6239,'crk','41.184.176.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:18:46','2020-01-27 12:18:46'),(6240,'english','52.205.236.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 14:56:14','2020-01-27 14:56:14'),(6241,'chemistry','105.112.38.62',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 15:47:21','2020-01-27 15:51:48'),(6242,'insurance','34.239.130.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 16:38:00','2020-01-27 16:38:00'),(6243,'chemistry','114.119.133.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 19:10:16','2020-01-27 19:10:16'),(6244,'chemistry','3.92.236.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 20:56:15','2020-01-27 20:56:15'),(6245,'chemistry','35.173.249.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 22:22:57','2020-01-27 22:22:57'),(6246,'chemistry','114.119.163.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 23:25:06','2020-01-27 23:25:06'),(6247,'commerce','3.95.235.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 00:29:02','2020-01-28 00:29:02'),(6248,'chemistry','151.80.39.47',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 01:56:45','2020-04-02 23:36:26'),(6249,'chemistry','114.119.131.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 02:19:39','2020-01-28 02:19:39'),(6250,'chemistry','114.119.146.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 03:40:30','2020-01-28 03:40:30'),(6251,'chemistry','159.138.158.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:23','2020-01-28 06:57:23'),(6252,'chemistry','159.138.151.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:26','2020-01-28 06:57:26'),(6253,'mathematics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6254,'accounting','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6255,'physics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6256,'government','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6257,'crk','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:04'),(6258,'insurance','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6259,'currentaffairs','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6260,'geography','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:08:11','2020-01-28 11:08:11'),(6261,'englishlit','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:17:47','2020-01-28 11:17:47'),(6262,'accounting','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:22:33','2020-01-28 11:22:33'),(6263,'chemistry','157.55.39.83',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:38:03','2020-01-28 11:38:03'),(6264,'economics','35.171.182.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:01:23','2020-01-28 14:01:23'),(6265,'economics','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:18','2020-01-28 14:44:18'),(6266,'english','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:19','2020-01-28 14:44:19'),(6267,'physics','3.94.103.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 18:25:15','2020-01-28 18:25:15'),(6268,'commerce','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:38','2020-01-29 02:20:38'),(6269,'accounting','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6270,'physics','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6271,'government','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6272,'crk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6273,'irk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6274,'currentaffairs','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6275,'english','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:42','2020-01-29 02:55:43'),(6276,'mathematics','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6277,'accounting','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6278,'government','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6279,'insurance','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6280,'currentaffairs','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6281,'history','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:44'),(6282,'chemistry','159.138.159.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:08:05','2020-01-29 06:08:05'),(6283,'mathematics','3.83.117.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:37:49','2020-01-29 06:37:49'),(6284,'geography','18.232.162.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 08:36:32','2020-01-29 08:36:32'),(6285,'insurance','52.90.181.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 12:12:29','2020-01-29 12:12:29'),(6286,'chemistry','18.234.111.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 14:21:47','2020-01-29 14:21:47'),(6287,'commerce','54.87.20.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 15:21:30','2020-01-29 15:21:30'),(6288,'mathematics','52.90.10.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 16:29:01','2020-01-29 16:29:01'),(6289,'chemistry','207.46.13.92',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:25:12','2020-01-29 18:25:12'),(6290,'mathematics','3.81.141.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:38:00','2020-01-29 18:38:00'),(6291,'government','41.190.3.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:13:05','2020-01-29 19:13:06'),(6292,'chemistry','207.46.13.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:32:15','2020-01-29 19:32:15'),(6293,'commerce','3.88.140.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 21:29:47','2020-01-29 21:29:47'),(6294,'biology','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:49:14','2020-01-30 01:49:14'),(6295,'english','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:50:59','2020-01-30 01:50:59'),(6296,'mathematics','54.91.188.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 03:44:50','2020-01-30 03:44:50'),(6297,'english','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:22:30','2020-01-30 05:22:30'),(6298,'government','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:24:43','2020-01-30 05:24:43'),(6299,'englishlit','3.80.30.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 06:21:01','2020-01-30 06:21:01'),(6300,'economics','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:13:00','2020-01-30 08:13:00'),(6301,'crk','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:15:11','2020-01-30 08:15:11'),(6302,'geography','18.207.190.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 10:50:25','2020-01-30 10:50:25'),(6303,'english','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:28:50','2020-01-30 13:28:50'),(6304,'civiledu','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:59:42','2020-01-30 13:59:42'),(6305,'geography','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 14:27:14','2020-01-30 14:27:14'),(6306,'insurance','34.237.245.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:05:29','2020-01-30 16:05:29'),(6307,'chemistry','46.229.161.131',212,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-04-19 15:14:37'),(6308,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6309,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6310,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6311,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6312,'physics','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:01:23','2020-01-30 20:01:23'),(6313,'geography','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:23:45','2020-01-30 20:23:45'),(6314,'chemistry','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 21:51:40','2020-01-30 21:51:40'),(6315,'englishlit','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 22:08:33','2020-01-30 22:08:33'),(6316,'currentaffairs','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:21:19','2020-01-31 01:21:19'),(6317,'government','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:38:18','2020-01-31 01:38:18'),(6318,'economics','54.89.156.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:05:07','2020-01-31 03:05:07'),(6319,'chemistry','207.46.13.209',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:23:54','2020-01-31 12:04:42'),(6320,'english','105.112.182.82',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 06:30:35','2020-01-31 06:32:01'),(6321,'physics','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:12:51','2020-01-31 07:12:51'),(6322,'english','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:23:23','2020-01-31 07:23:23'),(6323,'economics','54.210.244.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:58:52','2020-01-31 07:58:52'),(6324,'englishlit','3.86.29.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 10:32:00','2020-01-31 10:32:00'),(6325,'chemistry','54.237.205.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 12:11:56','2020-01-31 12:11:56'),(6326,'mathematics','52.86.208.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 15:08:11','2020-01-31 15:08:11'),(6327,'accounting','3.86.202.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 17:15:43','2020-01-31 17:15:43'),(6328,'insurance','3.91.133.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 18:38:12','2020-01-31 18:38:12'),(6329,'mathematics','3.82.155.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 22:46:02','2020-01-31 22:46:02'),(6330,'insurance','18.234.65.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 23:57:02','2020-01-31 23:57:02'),(6331,'commerce','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:38:11','2020-02-01 00:38:11'),(6332,'english','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:08','2020-02-01 00:43:08'),(6333,'physics','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:27','2020-02-01 00:43:27'),(6334,'english','105.112.59.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:48:46','2020-02-01 04:48:46'),(6335,'englishlit','54.209.65.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:57:37','2020-02-01 04:57:37'),(6336,'geography','52.91.111.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 06:32:15','2020-02-01 06:32:15'),(6337,'english','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6338,'mathematics','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6339,'biology','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6340,'chemistry','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6341,'englishlit','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6342,'insurance','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6343,'history','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6344,'economics','54.87.59.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:18:15','2020-02-01 12:18:15'),(6345,'insurance','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:55:22','2020-02-01 12:55:22'),(6346,'civiledu','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 13:00:35','2020-02-01 13:00:35'),(6347,'accounting','34.203.212.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 14:38:27','2020-02-01 14:38:27'),(6348,'biology','34.228.168.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 01:57:16','2020-02-02 01:57:16'),(6349,'english','54.227.175.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 03:18:24','2020-02-02 03:18:24'),(6350,'government','52.23.185.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 05:33:56','2020-02-02 05:33:56'),(6351,'crk','52.23.225.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 08:26:03','2020-02-02 08:26:03'),(6352,'history','54.152.74.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 10:18:23','2020-02-02 10:18:23'),(6353,'civiledu','54.175.193.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 14:11:21','2020-02-02 14:11:21'),(6354,'chemistry','34.229.20.78',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:23'),(6355,'chemistry','34.229.20.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:22'),(6356,'chemistry','105.112.178.165',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 19:12:14','2020-02-02 19:31:58'),(6357,'biology','18.212.175.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 23:50:11','2020-02-02 23:50:11'),(6358,'currentaffairs','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 00:42:03','2020-02-03 00:42:03'),(6359,'history','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:15','2020-02-03 01:17:15'),(6360,'government','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:42','2020-02-03 01:17:42'),(6361,'economics','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:35:23','2020-02-03 01:35:23'),(6362,'economics','52.204.49.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 02:42:06','2020-02-03 02:42:06'),(6363,'economics','3.90.112.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 04:45:10','2020-02-03 04:45:10'),(6364,'english','34.228.141.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 06:53:18','2020-02-03 06:53:18'),(6365,'accounting','54.175.163.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 07:43:49','2020-02-03 07:43:49'),(6366,'chemistry','105.112.75.189',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:18:05','2020-02-03 09:50:11'),(6367,'biology','66.249.88.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:41:16','2020-02-03 09:41:18'),(6368,'chemistry','105.112.55.63',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:08:19','2020-02-03 10:31:05'),(6369,'chemistry','197.210.71.2',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:30:49','2020-02-03 10:30:59'),(6370,'mathematics','5.186.127.79',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:01:59','2020-03-08 01:56:09'),(6371,'english','5.186.127.79',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:02:29','2020-02-03 19:50:47'),(6372,'history','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:40:14','2020-02-03 19:40:14'),(6373,'chemistry','54.227.12.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 21:50:10','2020-02-03 21:50:10'),(6374,'crk','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 01:59:00','2020-02-04 01:59:00'),(6375,'commerce','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 02:10:16','2020-02-04 02:10:16'),(6376,'chemistry','105.112.178.251',234,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 03:42:45','2020-02-04 05:35:31'),(6377,'crk','54.174.29.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 08:39:40','2020-02-04 08:39:40'),(6378,'chemistry','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:58:55','2020-02-04 09:58:55'),(6379,'irk','54.145.39.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:59:39','2020-02-04 09:59:39'),(6380,'mathematics','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:00:08','2020-02-04 10:00:08'),(6381,'economics','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:48:18','2020-02-04 10:48:18'),(6382,'accounting','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:54:29','2020-02-04 10:54:29'),(6383,'civiledu','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 11:29:41','2020-02-04 11:29:41'),(6384,'economics','54.162.191.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:01:04','2020-02-04 12:01:04'),(6385,'chemistry','159.138.155.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:43:25','2020-02-04 12:43:25'),(6386,'crk','3.83.164.35',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:13:32','2020-02-04 14:20:46'),(6387,'irk','3.83.164.35',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:18:49','2020-02-04 14:24:05'),(6388,'english','3.83.164.35',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:25:01','2020-02-04 14:28:15'),(6389,'mathematics','3.83.164.35',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 14:29:22','2020-02-04 14:33:35'),(6390,'civiledu','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:34:31','2020-02-04 14:39:09'),(6391,'insurance','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:40:01','2020-02-04 14:43:43'),(6392,'chemistry','129.56.111.10',6,'','NG','','Lagos',NULL,NULL,'','','2020-02-04 14:41:58','2020-02-05 06:14:39'),(6393,'economics','129.56.111.10',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:42:39','2020-02-04 14:42:39'),(6394,'currentaffairs','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:44:50','2020-02-04 14:48:55'),(6395,'government','18.207.229.112',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 15:33:33','2020-02-04 15:33:33'),(6396,'mathematics','190.120.217.202',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 16:44:57','2020-02-04 16:44:57'),(6397,'government','54.81.18.48',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 17:27:35','2020-02-04 17:46:16'),(6398,'crk','54.81.18.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 17:46:16','2020-02-04 17:46:16'),(6399,'chemistry','197.211.61.135',16,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 19:19:08','2020-02-04 19:24:05'),(6400,'chemistry','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:15:38','2020-02-04 20:15:38'),(6401,'geography','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:28:22','2020-02-04 20:28:22'),(6402,'government','34.233.134.3',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 21:13:57','2020-02-04 21:13:57'),(6403,'commerce','52.91.40.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 22:24:13','2020-02-04 22:24:13'),(6404,'economics','34.228.184.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 00:11:53','2020-02-05 00:11:53'),(6405,'economics','18.215.150.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 03:12:14','2020-02-05 03:12:14'),(6406,'insurance','54.237.226.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 04:33:22','2020-02-05 04:33:22'),(6407,'chemistry','207.46.13.202',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 05:48:51','2020-02-05 07:58:31'),(6408,'chemistry','206.189.180.4',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:11:56','2020-02-05 06:12:29'),(6409,'physics','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:13:27','2020-02-05 06:13:27'),(6410,'biology','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:14:43','2020-02-05 06:14:43'),(6411,'chemistry','159.138.152.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 09:26:20','2020-02-05 09:26:20'),(6412,'englishlit','34.228.66.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 10:25:53','2020-02-05 10:25:53'),(6413,'chemistry','207.46.13.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:16:47','2020-02-05 12:16:47'),(6414,'economics','52.87.240.0',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:48:30','2020-02-05 12:51:43'),(6415,'englishlit','52.87.240.0',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:52:17','2020-02-05 12:55:42'),(6416,'chemistry','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:42:37','2020-02-05 13:42:40'),(6417,'biology','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:43:23','2020-02-05 13:43:27'),(6418,'chemistry','159.138.156.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:18','2020-02-05 14:20:18'),(6419,'chemistry','159.138.156.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:20','2020-02-05 14:20:20'),(6420,'english','18.233.225.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:35:35','2020-02-05 14:35:35'),(6421,'chemistry','159.138.158.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:22','2020-02-05 16:03:22'),(6422,'chemistry','159.138.158.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:24','2020-02-05 16:03:24'),(6423,'chemistry','149.28.23.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:07:00','2020-02-05 16:07:01'),(6424,'chemistry','197.210.45.223',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:12:02','2020-02-05 19:12:03'),(6425,'crk','54.147.234.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:55:34','2020-02-05 19:55:34'),(6426,'crk','34.227.152.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 00:47:24','2020-02-06 00:47:24'),(6427,'insurance','54.198.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:07:31','2020-02-06 05:07:31'),(6428,'mathematics','54.198.78.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:13:14','2020-02-06 05:39:35'),(6429,'chemistry','105.112.178.38',113,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:24:23','2020-02-06 08:18:18'),(6430,'chemistry','197.210.52.78',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:45:06','2020-02-06 09:09:46'),(6431,'chemistry','197.210.53.153',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:52:38','2020-02-06 09:16:07'),(6432,'chemistry','197.210.52.148',167,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:56:55','2020-02-06 09:16:55'),(6433,'chemistry','197.210.53.241',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:57:58','2020-02-06 09:03:21'),(6434,'english','197.210.53.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:03','2020-02-06 09:17:03'),(6435,'english','197.210.53.153',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:17','2020-02-06 09:17:20'),(6436,'accounting','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:19:37','2020-02-06 09:19:40'),(6437,'biology','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:20','2020-02-06 09:20:23'),(6438,'physics','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:51','2020-02-06 09:20:54'),(6439,'english','102.67.6.4',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:35','2020-02-06 09:21:38'),(6440,'englishlit','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:36','2020-02-06 09:21:39'),(6441,'mathematics','102.67.6.4',90,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:48','2020-02-06 09:22:30'),(6442,'government','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:53','2020-02-06 09:21:56'),(6443,'crk','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:07','2020-02-06 09:22:11'),(6444,'geography','197.210.52.46',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:18','2020-02-06 09:22:21'),(6445,'economics','197.210.52.148',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:28','2020-02-06 09:22:31'),(6446,'irk','197.210.52.46',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:48','2020-02-06 09:22:50'),(6447,'civiledu','197.210.52.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:57','2020-02-06 09:23:00'),(6448,'insurance','197.210.53.228',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:13','2020-02-06 09:24:16'),(6449,'biology','102.67.6.4',45,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:44','2020-02-06 09:25:01'),(6450,'history','197.210.53.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:25:32','2020-02-06 09:25:35'),(6451,'chemistry','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:05:57','2020-02-06 11:05:57'),(6452,'physics','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:34:52','2020-02-06 11:34:52'),(6453,'chemistry','129.18.170.187',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 12:20:37','2020-02-06 12:20:49'),(6454,'english','41.184.164.93',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 14:04:50','2020-02-06 14:04:53'),(6455,'englishlit','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:10:15','2020-02-06 14:10:15'),(6456,'crk','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:31:21','2020-02-06 14:31:21'),(6457,'chemistry','197.211.61.128',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:45:01','2020-02-06 14:45:39'),(6458,'englishlit','54.242.25.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 15:06:36','2020-02-06 15:06:36'),(6459,'currentaffairs','3.84.248.139',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 16:33:00','2020-02-06 16:33:00'),(6460,'chemistry','159.138.153.33',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 19:22:39','2020-02-06 19:22:42'),(6461,'crk','3.88.183.247',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 21:12:07','2020-02-06 21:12:07'),(6462,'englishlit','18.232.114.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 22:46:55','2020-02-06 22:46:55'),(6463,'economics','54.227.10.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 01:41:04','2020-02-07 01:41:04'),(6464,'english','3.86.106.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 02:18:26','2020-02-07 02:18:26'),(6465,'biology','35.174.9.116',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:28:22','2020-02-07 04:28:23'),(6466,'government','35.174.9.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:47:35','2020-02-07 04:47:35'),(6467,'crk','54.157.234.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 09:15:39','2020-02-07 09:15:39'),(6468,'mathematics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:24','2020-02-07 10:02:27'),(6469,'chemistry','41.184.164.93',46,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:52','2020-02-13 12:05:06'),(6470,'physics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:03:10','2020-02-07 10:03:13'),(6471,'chemistry','34.207.81.136',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 12:31:01','2020-02-07 12:31:01'),(6472,'chemistry','159.138.148.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:48','2020-02-07 13:54:48'),(6473,'chemistry','159.138.151.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:51','2020-02-07 13:54:51'),(6474,'chemistry','159.138.156.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:39','2020-02-07 14:47:39'),(6475,'chemistry','159.138.152.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:40','2020-02-07 14:47:40'),(6476,'english','52.201.218.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 18:39:18','2020-02-07 18:39:18'),(6477,'chemistry','105.112.117.84',293,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:30:28','2020-02-07 20:00:57'),(6478,'english','105.112.117.84',104,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:48:33','2020-02-07 20:02:22'),(6479,'biology','3.87.229.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 20:58:03','2020-02-07 20:58:03'),(6480,'englishlit','54.226.235.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 05:22:08','2020-02-08 05:22:08'),(6481,'currentaffairs','18.212.207.50',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 12:56:59','2020-02-08 13:19:35'),(6482,'english','105.112.121.51',3687,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:00:54','2020-02-08 16:40:24'),(6483,'chemistry','105.112.121.51',247,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:17:20','2020-02-08 16:40:24'),(6484,'mathematics','105.112.121.51',280,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 14:55:34','2020-02-08 16:40:25'),(6485,'currentaffairs','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6486,'biology','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6487,'civiledu','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6488,'accounting','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6489,'history','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6490,'government','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6491,'crk','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6492,'geography','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6493,'physics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6494,'irk','105.112.121.51',180,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:28'),(6495,'commerce','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:51','2020-02-08 16:40:24'),(6496,'englishlit','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:24'),(6497,'economics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:23'),(6498,'civiledu','34.230.4.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 17:05:03','2020-02-08 17:05:03'),(6499,'englishlit','54.167.22.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 20:45:17','2020-02-08 20:45:17'),(6500,'english','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:52:30','2020-02-08 20:52:30'),(6501,'accounting','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:59:40','2020-02-08 20:59:40'),(6502,'chemistry','105.112.23.32',172,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:31:48','2020-02-09 02:17:39'),(6503,'commerce','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6504,'physics','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6505,'chemistry','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6506,'englishlit','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6507,'crk','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6508,'geography','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:19'),(6509,'history','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:19','2020-02-08 23:44:19'),(6510,'physics','66.249.83.192',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 06:54:16','2020-02-09 06:54:18'),(6511,'mathematics','105.112.38.128',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:07:48','2020-02-09 11:09:27'),(6512,'biology','105.112.38.128',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:10:56','2020-02-09 11:10:57'),(6513,'biology','105.112.57.10',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:16:17','2020-02-09 11:16:56'),(6514,'chemistry','105.112.176.118',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 13:28:05','2020-02-09 14:36:23'),(6515,'chemistry','105.112.38.60',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 21:58:06','2020-02-09 21:58:42'),(6516,'englishlit','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6517,'civiledu','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6518,'mathematics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6519,'physics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6520,'currentaffairs','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6521,'commerce','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6522,'government','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6523,'accounting','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6524,'english','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6525,'chemistry','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6526,'crk','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6527,'history','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6528,'economics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:45'),(6529,'irk','105.112.121.100',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6530,'biology','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6531,'geography','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6532,'mathematics','3.88.254.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 23:58:44','2020-02-09 23:58:44'),(6533,'commerce','54.234.42.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 04:53:06','2020-02-10 04:53:06'),(6534,'insurance','52.205.252.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 12:48:35','2020-02-10 12:48:35'),(6535,'biology','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:31:06','2020-02-10 13:33:56'),(6536,'geography','54.86.139.235',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:34:52','2020-02-10 13:40:06'),(6537,'government','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:38:55','2020-02-10 13:41:36'),(6538,'chemistry','159.138.159.131',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 14:59:24','2020-02-10 14:59:25'),(6539,'chemistry','66.102.8.239',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 19:24:51','2020-03-10 07:49:39'),(6540,'mathematics','54.198.180.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 23:23:53','2020-02-10 23:23:53'),(6541,'geography','34.228.215.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 03:09:40','2020-02-11 03:09:40'),(6542,'economics','54.86.162.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 06:23:36','2020-02-11 06:23:36'),(6543,'chemistry','159.138.128.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:43','2020-02-11 08:08:43'),(6544,'chemistry','159.138.157.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:44','2020-02-11 08:08:44'),(6545,'crk','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:19:44','2020-02-11 08:19:44'),(6546,'geography','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:28:36','2020-02-11 08:28:36'),(6547,'geography','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:07:20','2020-02-11 11:07:20'),(6548,'english','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:29:21','2020-02-11 11:29:21'),(6549,'physics','52.90.177.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 20:57:31','2020-02-11 20:57:31'),(6550,'chemistry','54.36.148.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 21:31:54','2020-02-11 21:31:55'),(6551,'englishlit','52.23.243.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 00:28:14','2020-02-12 00:28:14'),(6552,'mathematics','105.112.59.79',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 01:05:16','2020-02-12 01:05:16'),(6553,'currentaffairs','54.172.153.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 04:22:50','2020-02-12 04:22:50'),(6554,'biology','54.81.207.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 06:05:04','2020-02-12 06:05:04'),(6555,'geography','3.83.240.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 07:57:33','2020-02-12 07:57:33'),(6556,'chemistry','114.119.164.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 09:32:25','2020-02-12 09:32:25'),(6557,'chemistry','159.138.157.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:57','2020-02-12 12:35:57'),(6558,'chemistry','159.138.155.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:59','2020-02-12 12:35:59'),(6559,'mathematics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:18:10','2020-02-12 16:18:10'),(6560,'physics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:23:01','2020-02-12 16:23:01'),(6561,'chemistry','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:44:21','2020-02-12 16:44:21'),(6562,'biology','66.249.88.14',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 17:50:44','2020-02-15 20:12:28'),(6563,'geography','18.212.14.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 21:05:47','2020-02-12 21:05:47'),(6564,'government','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:08:36','2020-02-12 22:08:36'),(6565,'mathematics','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:15:14','2020-02-12 22:15:14'),(6566,'mathematics','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:42:26','2020-02-13 01:42:26'),(6567,'accounting','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:51:06','2020-02-13 01:51:06'),(6568,'history','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:03:04','2020-02-13 03:03:04'),(6569,'englishlit','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:13:21','2020-02-13 03:13:21'),(6570,'chemistry','54.36.150.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 06:05:15','2020-02-13 06:05:15'),(6571,'irk','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6572,'geography','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6573,'accounting','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6574,'currentaffairs','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6575,'english','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6576,'government','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6577,'mathematics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6578,'civiledu','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6579,'physics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6580,'crk','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6581,'biology','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6582,'commerce','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6583,'englishlit','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6584,'history','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6585,'chemistry','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6586,'economics','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:47:15','2020-02-13 09:50:43'),(6587,'chemistry','159.138.152.95',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 16:01:29','2020-02-13 16:01:33'),(6588,'geography','3.85.140.177',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-13 18:30:03','2020-02-13 18:30:03'),(6589,'chemistry','107.167.108.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 22:22:25','2020-02-13 22:22:25'),(6590,'accounting','18.206.218.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 03:40:45','2020-02-14 03:40:45'),(6591,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6592,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6593,'chemistry','159.138.153.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:50','2020-02-14 08:34:50'),(6594,'chemistry','159.138.150.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:53','2020-02-14 08:34:53'),(6595,'chemistry','159.138.158.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:49','2020-02-14 08:40:49'),(6596,'chemistry','159.138.151.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:52','2020-02-14 08:40:52'),(6597,'chemistry','54.36.150.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 09:29:11','2020-02-14 09:29:11'),(6598,'commerce','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:16','2020-02-14 12:46:16'),(6599,'physics','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6600,'government','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6601,'geography','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6602,'irk','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6603,'currentaffairs','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6604,'history','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6605,'english','54.234.90.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 13:13:09','2020-02-14 13:13:09'),(6606,'government','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 15:59:30','2020-02-14 15:59:34'),(6607,'physics','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 16:21:32','2020-02-14 16:21:35'),(6608,'mathematics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6609,'physics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6610,'englishlit','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6611,'english','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6612,'biology','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6613,'irk','3.84.126.190',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:53'),(6614,'government','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6615,'currentaffairs','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6616,'economics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6617,'commerce','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6618,'geography','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6619,'civiledu','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6620,'accounting','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6621,'history','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6622,'chemistry','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6623,'crk','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6624,'crk','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6625,'currentaffairs','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6626,'geography','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6627,'economics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6628,'civiledu','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6629,'irk','52.205.39.67',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:40'),(6630,'englishlit','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6631,'government','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6632,'chemistry','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6633,'history','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6634,'physics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6635,'biology','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6636,'accounting','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6637,'mathematics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6638,'english','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6639,'commerce','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:38','2020-02-14 17:43:41'),(6640,'history','54.161.219.62',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-14 18:19:40','2020-02-14 18:19:40'),(6641,'chemistry','207.46.13.106',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 13:28:42','2020-02-26 14:54:53'),(6642,'mathematics','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6643,'commerce','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6644,'chemistry','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6645,'englishlit','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6646,'government','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6647,'insurance','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6648,'history','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6649,'chemistry','157.55.39.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 18:35:48','2020-02-15 18:35:48'),(6650,'biology','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 20:12:28','2020-02-15 20:12:30'),(6651,'insurance','107.22.1.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 00:40:58','2020-02-16 00:40:58'),(6652,'economics','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:40:03','2020-02-16 01:40:03'),(6653,'history','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:59:35','2020-02-16 01:59:35'),(6654,'economics','100.26.204.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 04:49:19','2020-02-16 04:49:19'),(6655,'history','54.173.184.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 07:23:00','2020-02-16 07:23:00'),(6656,'chemistry','54.158.124.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 08:06:19','2020-02-16 08:06:19'),(6657,'accounting','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 09:59:42','2020-02-16 09:59:42'),(6658,'history','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 10:06:30','2020-02-16 10:06:30'),(6659,'biology','54.81.159.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:49:34','2020-02-16 16:58:41'),(6660,'english','54.81.159.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:52:09','2020-02-16 16:56:21'),(6661,'chemistry','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:21','2020-02-16 16:54:24'),(6662,'commerce','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:43','2020-02-16 16:54:46'),(6663,'accounting','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:06','2020-02-16 16:55:09'),(6664,'mathematics','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:58','2020-02-16 16:56:01'),(6665,'irk','52.91.167.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 22:51:34','2020-02-16 22:51:34'),(6666,'crk','34.233.126.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 01:08:54','2020-02-17 01:08:54'),(6667,'economics','54.234.27.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 05:03:19','2020-02-17 05:03:19'),(6668,'commerce','54.221.92.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 06:44:50','2020-02-17 06:44:50'),(6669,'chemistry','159.138.128.150',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:05:44','2020-02-17 07:05:44'),(6670,'english','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6671,'mathematics','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6672,'accounting','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6673,'englishlit','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6674,'government','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:10'),(6675,'civiledu','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-17 07:26:10'),(6676,'insurance','34.229.240.235',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-19 13:08:34'),(6677,'biology','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:53:21','2020-02-17 07:53:21'),(6678,'chemistry','41.190.3.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 09:00:45','2020-02-17 09:00:46'),(6679,'accounting','34.224.39.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 10:20:33','2020-02-17 10:20:33'),(6680,'english','197.156.253.124',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 11:19:47','2020-02-17 11:19:47'),(6681,'crk','184.72.213.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 13:48:40','2020-02-17 13:48:40'),(6682,'accounting','54.165.1.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 17:44:51','2020-02-17 17:44:51'),(6683,'economics','54.83.109.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 20:16:53','2020-02-17 20:16:53'),(6684,'chemistry','5.255.250.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 21:22:58','2020-02-17 21:22:58'),(6685,'government','54.221.59.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 23:17:36','2020-02-17 23:17:36'),(6686,'chemistry','34.201.122.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 00:07:06','2020-02-18 00:07:06'),(6687,'government','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:37:21','2020-02-18 02:37:21'),(6688,'geography','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:43:15','2020-02-18 02:43:15'),(6689,'mathematics','52.87.200.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 03:25:39','2020-02-18 03:25:39'),(6690,'commerce','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:40:17','2020-02-18 05:40:17'),(6691,'economics','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:53:54','2020-02-18 05:53:54'),(6692,'chemistry','54.224.96.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:08:00','2020-02-18 11:08:00'),(6693,'insurance','54.224.96.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:30:46','2020-02-18 11:30:46'),(6694,'crk','18.212.173.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 13:09:34','2020-03-20 07:37:00'),(6695,'chemistry','114.119.134.79',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 15:47:10','2020-02-18 15:47:10'),(6696,'englishlit','100.24.12.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 18:48:21','2020-02-18 18:48:21'),(6697,'crk','3.85.34.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 22:20:53','2020-02-18 22:20:53'),(6698,'chemistry','196.220.136.213',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 00:45:34','2020-02-19 00:45:35'),(6699,'english','54.147.36.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 03:54:04','2020-02-19 03:54:04'),(6700,'crk','34.229.241.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 05:30:54','2020-02-19 05:30:54'),(6701,'chemistry','41.184.42.114',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 13:13:14','2020-02-19 13:13:37'),(6702,'english','54.227.161.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 15:50:25','2020-02-19 15:50:25'),(6703,'chemistry','82.145.222.210',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:03:16','2020-02-19 18:03:27'),(6704,'chemistry','54.36.150.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:07:42','2020-02-19 18:07:46'),(6705,'englishlit','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:26:35','2020-02-19 19:26:35'),(6706,'chemistry','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:27:02','2020-02-19 19:27:02'),(6707,'physics','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:53:17','2020-02-19 19:53:17'),(6708,'english','204.236.246.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 22:37:37','2020-02-19 22:37:37'),(6709,'englishlit','34.230.79.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 00:17:30','2020-02-20 00:17:30'),(6710,'currentaffairs','54.242.206.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 01:18:47','2020-02-20 01:18:47'),(6711,'crk','3.85.213.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 04:49:03','2020-02-20 04:49:03'),(6712,'englishlit','3.81.90.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 08:44:59','2020-02-20 08:44:59'),(6713,'government','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:23','2020-02-20 10:57:04'),(6714,'physics','3.81.90.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:35','2020-02-20 09:14:41'),(6715,'irk','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:28:55','2020-02-20 10:57:05'),(6716,'currentaffairs','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:33:57','2020-02-20 10:57:05'),(6717,'history','3.81.90.103',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:37:42','2020-02-20 10:45:58'),(6718,'history','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6719,'chemistry','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6720,'accounting','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6721,'commerce','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6722,'physics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6723,'civiledu','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6724,'crk','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6725,'economics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6726,'currentaffairs','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6727,'biology','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6728,'government','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6729,'english','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6730,'irk','35.168.19.41',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6731,'englishlit','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6732,'geography','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6733,'mathematics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6734,'geography','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:07','2020-02-20 11:04:56'),(6735,'commerce','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:45','2020-02-20 10:57:04'),(6736,'chemistry','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6737,'geography','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6738,'englishlit','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6739,'history','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6740,'accounting','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6741,'english','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6742,'commerce','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6743,'crk','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6744,'civiledu','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6745,'physics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6746,'mathematics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6747,'government','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6748,'irk','54.162.219.78',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6749,'biology','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6750,'economics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:11','2020-02-20 10:47:14'),(6751,'currentaffairs','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:12','2020-02-20 10:47:15'),(6752,'economics','3.81.90.103',3,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 11:01:05'),(6753,'civiledu','3.81.90.103',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 10:57:05'),(6754,'government','18.207.192.142',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 13:42:22','2020-02-20 13:42:22'),(6755,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6756,'chemistry','54.167.198.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6757,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6758,'english','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:31','2020-02-20 17:26:32'),(6759,'accounting','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6760,'biology','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6761,'government','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6762,'crk','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6763,'currentaffairs','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6764,'history','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6765,'crk','3.80.65.155',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:00:34','2020-02-20 18:00:34'),(6766,'biology','3.80.65.155',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:13:55','2020-02-20 18:13:55'),(6767,'english','204.236.203.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 21:11:32','2020-02-20 21:11:32'),(6768,'mathematics','3.89.145.218',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 22:35:41','2020-02-20 22:35:41'),(6769,'chemistry','46.229.168.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:29:39','2020-02-21 02:29:39'),(6770,'chemistry','157.55.39.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:49:20','2020-02-21 02:49:20'),(6771,'english','54.147.53.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 03:48:00','2020-02-21 03:48:00'),(6772,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6773,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6774,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6775,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6776,'currentaffairs','3.90.168.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 19:24:12','2020-02-21 19:24:12'),(6777,'chemistry','34.226.190.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 20:12:12','2020-02-21 20:12:12'),(6778,'currentaffairs','18.234.246.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 21:02:21','2020-02-21 21:02:21'),(6779,'civiledu','54.162.109.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 23:30:06','2020-02-21 23:30:06'),(6780,'english','3.92.223.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:55:12','2020-02-22 03:55:12'),(6781,'chemistry','159.138.153.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:52','2020-02-22 03:58:52'),(6782,'chemistry','159.138.155.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:53','2020-02-22 03:58:53'),(6783,'englishlit','54.234.225.91',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 04:45:49','2020-02-22 04:45:49'),(6784,'accounting','3.81.14.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 06:32:53','2020-02-22 06:32:53'),(6785,'biology','3.85.195.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 08:05:36','2020-02-22 08:05:36'),(6786,'english','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:02','2020-02-22 12:38:03'),(6787,'commerce','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6788,'physics','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6789,'englishlit','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6790,'crk','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6791,'currentaffairs','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6792,'history','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:04'),(6793,'biology','3.88.4.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 21:11:38','2020-02-22 21:11:39'),(6794,'chemistry','35.173.57.84',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 00:53:28','2020-02-23 01:21:39'),(6795,'government','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:01:42','2020-02-23 13:01:42'),(6796,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6797,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6798,'commerce','54.196.170.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 14:07:46','2020-02-23 14:07:46'),(6799,'chemistry','54.36.150.158',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 15:20:46','2020-02-23 15:20:49'),(6800,'insurance','35.173.187.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 17:32:21','2020-02-23 17:32:21'),(6801,'crk','3.86.33.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 20:19:46','2020-02-23 20:19:46'),(6802,'english','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6803,'mathematics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6804,'commerce','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6805,'physics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6806,'government','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6807,'geography','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6808,'currentaffairs','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:05'),(6809,'chemistry','159.138.156.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 05:01:23','2020-02-24 05:01:23'),(6810,'mathematics','54.205.146.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 06:01:05','2020-02-24 06:01:05'),(6811,'geography','54.159.1.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 08:03:19','2020-02-24 08:03:19'),(6812,'economics','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 12:58:49','2020-02-24 12:58:49'),(6813,'geography','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 13:18:08','2020-02-24 13:18:08'),(6814,'english','3.81.236.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 15:33:14','2020-02-24 15:33:14'),(6815,'geography','54.210.217.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 17:00:33','2020-02-24 17:00:33'),(6816,'chemistry','105.112.55.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 19:06:53','2020-02-24 23:57:08'),(6817,'chemistry','34.227.17.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:20:04','2020-03-05 17:43:13'),(6818,'physics','34.227.17.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:52:30','2020-02-24 23:52:30'),(6819,'englishlit','54.92.166.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 02:36:43','2020-02-25 02:36:43'),(6820,'geography','35.175.234.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 03:33:37','2020-02-25 03:33:37'),(6821,'currentaffairs','52.87.168.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 06:07:47','2020-02-25 06:07:47'),(6822,'biology','18.233.100.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 09:34:43','2020-02-25 09:34:43'),(6823,'chemistry','157.55.39.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 11:42:40','2020-02-25 11:42:40'),(6824,'physics','66.249.80.52',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 15:14:29','2020-02-25 15:14:31'),(6825,'physics','107.23.131.74',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 18:59:40','2020-02-25 19:13:57'),(6826,'english','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6827,'mathematics','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6828,'commerce','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:57'),(6829,'biology','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6830,'currentaffairs','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6831,'history','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6832,'englishlit','35.170.185.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:56:19','2020-02-25 19:56:19'),(6833,'mathematics','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:37:16','2020-02-25 20:37:16'),(6834,'biology','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:57:18','2020-02-25 20:57:18'),(6835,'chemistry','185.26.180.143',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:07:17','2020-02-25 21:07:19'),(6836,'chemistry','192.95.16.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:56:59','2020-02-25 21:56:59'),(6837,'geography','3.92.190.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 23:13:07','2020-02-25 23:13:07'),(6838,'government','54.146.199.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 01:42:52','2020-02-26 01:42:52'),(6839,'mathematics','3.89.35.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 04:40:50','2020-02-26 04:40:50'),(6840,'history','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:21:37','2020-02-26 05:21:37'),(6841,'accounting','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:41:03','2020-02-26 05:41:03'),(6842,'biology','54.91.45.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 07:38:13','2020-02-26 07:38:13'),(6843,'chemistry','54.221.93.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:04:36','2020-02-26 09:15:23'),(6844,'chemistry','66.102.8.241',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6845,'chemistry','66.249.80.50',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6846,'chemistry','66.102.8.243',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-03-09 23:52:26'),(6847,'physics','66.249.88.65',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:22:54','2020-02-26 12:22:56'),(6848,'biology','54.235.235.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:50:49','2020-02-26 12:50:49'),(6849,'geography','54.161.25.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 17:04:18','2020-02-26 17:04:18'),(6850,'english','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6851,'mathematics','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6852,'biology','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6853,'chemistry','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6854,'government','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6855,'geography','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:01'),(6856,'irk','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:01','2020-02-27 04:05:01'),(6857,'accounting','54.197.40.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 05:01:31','2020-02-27 05:01:31'),(6858,'history','107.20.37.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 13:39:41','2020-02-27 13:39:41'),(6859,'chemistry','3.80.114.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 23:45:34','2020-02-27 23:45:34'),(6860,'english','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:45:04','2020-02-28 13:47:42'),(6861,'government','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:50:32','2020-02-28 13:52:07'),(6862,'commerce','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:54:04','2020-02-28 13:55:34'),(6863,'biology','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:57:38','2020-02-28 13:59:56'),(6864,'mathematics','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:59:07','2020-02-28 13:59:48'),(6865,'biology','52.204.53.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:24'),(6866,'biology','52.204.53.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:22'),(6867,'insurance','3.89.28.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 02:19:14','2020-02-29 02:19:14'),(6868,'economics','54.86.68.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 03:27:08','2020-02-29 03:27:08'),(6869,'accounting','18.207.149.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 06:17:21','2020-02-29 06:17:21'),(6870,'crk','54.224.249.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 07:18:55','2020-02-29 07:18:55'),(6871,'chemistry','49.70.183.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:00:47','2020-02-29 10:00:47'),(6872,'chemistry','34.226.148.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6873,'chemistry','34.226.148.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6874,'biology','54.234.130.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:39:43','2020-02-29 10:39:43'),(6875,'history','54.172.167.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 14:10:22','2020-02-29 14:10:22'),(6876,'chemistry','66.249.88.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:08','2020-02-29 15:50:09'),(6877,'chemistry','66.102.6.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:09','2020-02-29 15:50:09'),(6878,'irk','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:58:08','2020-02-29 15:58:08'),(6879,'chemistry','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:59:27','2020-02-29 15:59:27'),(6880,'history','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 19:55:14','2020-02-29 19:55:14'),(6881,'crk','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 20:06:10','2020-02-29 20:06:10'),(6882,'commerce','52.202.140.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 22:45:59','2020-02-29 22:45:59'),(6883,'chemistry','223.245.212.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 23:22:31','2020-02-29 23:22:31'),(6884,'biology','18.212.32.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 00:01:45','2020-03-01 00:01:45'),(6885,'accounting','52.23.172.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 01:53:29','2020-03-01 01:53:29'),(6886,'chemistry','1.203.150.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 02:14:54','2020-03-01 02:14:54'),(6887,'economics','54.156.62.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 06:18:07','2020-03-01 06:18:07'),(6888,'government','35.173.129.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 08:48:14','2020-03-01 08:48:14'),(6889,'chemistry','3.84.9.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 10:00:47','2020-03-01 10:00:47'),(6890,'geography','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 11:39:24','2020-03-01 11:39:24'),(6891,'government','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 12:03:05','2020-03-01 12:03:05'),(6892,'economics','18.209.9.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 16:36:07','2020-03-01 16:36:07'),(6893,'insurance','54.87.188.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 18:39:16','2020-03-01 18:39:16'),(6894,'englishlit','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:12:13','2020-03-01 23:12:13'),(6895,'english','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:29:26','2020-03-01 23:29:26'),(6896,'commerce','54.163.13.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 03:36:21','2020-03-02 03:36:21'),(6897,'crk','54.198.115.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 08:50:58','2020-03-02 08:50:58'),(6898,'crk','34.229.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 09:24:47','2020-03-02 09:24:47'),(6899,'chemistry','197.210.64.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 16:39:01','2020-03-02 16:39:01'),(6900,'english','105.112.55.216',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:24:46','2020-03-02 17:24:54'),(6901,'englishlit','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:46:18','2020-03-02 17:46:18'),(6902,'physics','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:59:07','2020-03-02 17:59:07'),(6903,'english','3.91.231.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 19:29:38','2020-03-02 19:29:38'),(6904,'currentaffairs','54.167.241.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 20:17:40','2020-03-02 20:17:40'),(6905,'chemistry','36.249.227.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:16:09','2020-03-02 21:16:09'),(6906,'chemistry','114.227.162.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:19:42','2020-03-02 21:19:42'),(6907,'englishlit','54.91.143.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 23:10:58','2020-03-02 23:10:58'),(6908,'englishlit','54.88.133.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 01:40:43','2020-03-03 01:40:43'),(6909,'government','34.228.244.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 05:09:18','2020-03-03 05:09:18'),(6910,'chemistry','141.8.188.144',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 08:07:45','2020-03-03 08:07:45'),(6911,'chemistry','82.145.220.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 09:48:31','2020-03-03 09:48:49'),(6912,'economics','3.80.28.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:11:56','2020-03-03 10:11:56'),(6913,'chemistry','82.145.209.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:36:44','2020-03-03 10:36:44'),(6914,'english','18.212.178.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:54:12','2020-03-03 10:54:12'),(6915,'chemistry','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:08:29','2020-03-03 12:08:29'),(6916,'biology','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:20:31','2020-03-03 12:20:31'),(6917,'chemistry','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:27','2020-03-03 13:36:27'),(6918,'mathematics','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:47','2020-03-03 13:36:47'),(6919,'english','52.87.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 17:00:16','2020-03-03 17:00:16'),(6920,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6921,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6922,'chemistry','40.77.167.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:37:26','2020-03-03 19:37:26'),(6923,'biology','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6924,'physics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6925,'geography','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6926,'economics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6927,'irk','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6928,'civiledu','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:58'),(6929,'currentaffairs','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:58','2020-03-03 20:05:58'),(6930,'biology','197.210.53.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:43:36','2020-03-03 20:43:38'),(6931,'physics','103.221.233.72',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 04:04:33','2020-03-04 04:25:46'),(6932,'english','105.112.182.249',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 10:31:20','2020-03-04 10:31:20'),(6933,'english','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:04:45','2020-03-04 11:04:45'),(6934,'accounting','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:05:53','2020-03-04 11:05:53'),(6935,'chemistry','197.210.53.87',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:39:34','2020-03-04 12:39:35'),(6936,'chemistry','197.210.52.235',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:04','2020-03-04 12:40:06'),(6937,'mathematics','197.210.53.94',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:07','2020-03-04 12:46:33'),(6938,'english','18.207.127.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 21:42:11','2020-03-04 21:42:11'),(6939,'chemistry','5.196.87.151',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 22:56:07','2020-04-02 22:19:08'),(6940,'englishlit','35.175.218.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 00:22:30','2020-03-05 00:22:30'),(6941,'commerce','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 02:31:37','2020-03-05 02:31:37'),(6942,'chemistry','54.89.222.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 04:03:59','2020-03-05 04:03:59'),(6943,'commerce','3.85.195.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 12:01:13','2020-03-05 12:01:13'),(6944,'crk','54.81.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 19:11:38','2020-03-05 19:11:38'),(6945,'mathematics','107.22.108.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 20:30:46','2020-03-05 20:30:46'),(6946,'english','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:08:59','2020-03-05 22:08:59'),(6947,'accounting','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6948,'biology','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6949,'chemistry','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6950,'irk','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6951,'insurance','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6952,'history','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6953,'geography','54.242.26.49',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 02:38:31','2020-03-06 02:55:09'),(6954,'biology','35.153.139.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 07:52:20','2020-03-06 07:52:20'),(6955,'geography','107.23.228.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 12:34:01','2020-03-06 12:34:01'),(6956,'currentaffairs','35.173.223.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 13:38:42','2020-03-06 13:38:42'),(6957,'chemistry','35.153.102.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 14:20:41','2020-03-06 14:20:41'),(6958,'biology','3.86.217.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 15:34:02','2020-03-06 15:34:02'),(6959,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6960,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6961,'chemistry','183.166.134.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:16:38','2020-03-06 21:16:38'),(6962,'chemistry','54.81.120.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:29:55','2020-03-06 21:29:55'),(6963,'mathematics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 23:47:39','2020-03-06 23:47:39'),(6964,'physics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 00:22:50','2020-03-07 00:22:50'),(6965,'mathematics','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 02:56:44','2020-03-07 02:56:44'),(6966,'physics','18.234.121.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 06:30:53','2020-03-07 06:30:53'),(6967,'chemistry','197.210.65.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:18:55','2020-03-07 08:18:55'),(6968,'chemistry','197.210.64.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:19:20','2020-03-07 08:19:20'),(6969,'chemistry','197.210.64.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:20:36','2020-03-07 08:20:36'),(6970,'english','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:01'),(6971,'accounting','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:02'),(6972,'geography','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6973,'irk','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6974,'civiledu','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6975,'insurance','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6976,'history','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6977,'english','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:35','2020-03-07 14:55:35'),(6978,'biology','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:36','2020-03-07 14:55:37'),(6979,'chemistry','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:37','2020-03-07 14:55:38'),(6980,'geography','52.90.45.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 15:21:48','2020-03-07 15:21:48'),(6981,'accounting','35.173.220.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 19:36:21','2020-03-07 19:36:21'),(6982,'commerce','5.186.127.79',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:16:03','2020-03-08 01:58:17'),(6983,'accounting','5.186.127.79',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:24:36','2020-03-08 01:52:42'),(6984,'biology','5.186.127.79',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 02:01:14','2020-03-08 02:01:15'),(6985,'englishlit','54.242.45.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 10:11:30','2020-03-08 10:11:30'),(6986,'chemistry','112.114.88.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:37:05','2020-03-08 13:37:05'),(6987,'history','54.174.12.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:54:38','2020-03-08 13:54:38'),(6988,'chemistry','54.173.164.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 16:27:27','2020-03-08 16:27:27'),(6989,'biology','52.90.68.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 17:35:15','2020-03-08 17:35:15'),(6990,'chemistry','114.119.164.166',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 18:08:08','2020-03-25 11:05:38'),(6991,'chemistry','60.185.69.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 20:52:07','2020-03-08 20:52:07'),(6992,'chemistry','197.210.227.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:17:20','2020-03-08 21:17:20'),(6993,'chemistry','197.210.226.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:18:58','2020-03-08 21:18:58'),(6994,'chemistry','197.210.226.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:19:11','2020-03-08 21:19:11'),(6995,'chemistry','114.119.160.43',3,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:20','2020-06-23 16:54:17'),(6996,'chemistry','161.151.254.43',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:41','2020-03-08 22:39:44'),(6997,'chemistry','161.151.254.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:41:32','2020-03-08 22:41:35'),(6998,'insurance','18.234.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 04:42:23','2020-03-09 04:42:23'),(6999,'chemistry','114.119.161.43',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 05:05:47','2020-04-06 00:24:10'),(7000,'economics','3.208.8.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 06:44:35','2020-03-09 06:44:35'),(7001,'chemistry','114.119.166.156',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 08:22:53','2020-03-10 01:02:52'),(7002,'history','54.175.112.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 09:37:37','2020-03-09 09:37:37'),(7003,'history','197.210.53.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:45:49','2020-03-09 12:45:50'),(7004,'chemistry','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:00','2020-03-09 12:56:20'),(7005,'history','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:03','2020-03-09 12:56:24'),(7006,'mathematics','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:04','2020-03-09 12:56:26'),(7007,'chemistry','197.210.53.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:59:22','2020-03-09 12:59:22'),(7008,'english','197.210.53.133',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:06:27','2020-03-09 13:06:27'),(7009,'accounting','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:29:10','2020-03-09 13:29:10'),(7010,'history','3.93.0.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 14:25:16','2020-03-09 14:25:16'),(7011,'crk','3.84.223.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 22:45:44','2020-03-09 22:45:44'),(7012,'chemistry','67.86.217.149',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:10:20','2020-04-07 19:16:09'),(7013,'chemistry','108.41.239.178',421,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:11:34','2020-04-13 13:17:04'),(7014,'commerce','3.84.214.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 01:51:20','2020-03-10 01:51:20'),(7015,'chemistry','197.210.70.26',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 04:06:56','2020-03-10 04:07:00'),(7016,'chemistry','197.210.70.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:17','2020-03-10 05:19:17'),(7017,'mathematics','197.210.70.216',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:26','2020-03-10 05:19:26'),(7018,'mathematics','197.210.71.234',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:08','2020-03-10 05:20:08'),(7019,'mathematics','197.210.70.250',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:21','2020-03-10 05:20:21'),(7020,'chemistry','197.210.70.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:35','2020-03-10 05:20:35'),(7021,'mathematics','197.210.71.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:53','2020-03-10 05:20:53'),(7022,'mathematics','197.210.70.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:52:55','2020-03-10 05:52:55'),(7023,'chemistry','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:05','2020-03-10 05:55:05'),(7024,'mathematics','197.210.70.182',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:15','2020-03-10 05:55:16'),(7025,'mathematics','197.210.174.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:58','2020-03-10 05:55:59'),(7026,'mathematics','108.41.239.178',367,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:06','2020-04-12 16:31:22'),(7027,'biology','197.210.70.40',46,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:35','2020-03-10 05:57:24'),(7028,'biology','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:55','2020-03-10 05:56:56'),(7029,'biology','197.210.70.170',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:58:15','2020-03-10 05:58:18'),(7030,'accounting','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:15:57','2020-03-10 06:15:57'),(7031,'crk','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:24:17','2020-03-10 06:24:17'),(7032,'chemistry','197.211.61.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 07:49:41','2020-03-10 07:49:41'),(7033,'chemistry','114.119.167.13',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 08:49:55','2020-03-31 11:06:57'),(7034,'economics','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:06:10','2020-03-10 09:06:10'),(7035,'irk','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:16:37','2020-03-10 09:16:37'),(7036,'chemistry','34.205.63.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 10:16:06','2020-03-10 10:16:06'),(7037,'government','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:04:13','2020-03-10 12:04:13'),(7038,'chemistry','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:21:49','2020-03-10 12:21:49'),(7039,'biology','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:06:43','2020-03-10 14:06:43'),(7040,'geography','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:12:24','2020-03-10 14:12:24'),(7041,'history','3.95.217.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 15:16:08','2020-03-10 15:16:08'),(7042,'commerce','18.212.139.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 16:38:48','2020-03-10 16:38:48'),(7043,'english','197.210.45.11',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:10:47','2020-03-10 17:41:19'),(7044,'geography','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:50','2020-03-10 17:41:20'),(7045,'mathematics','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:51','2020-03-10 17:41:21'),(7046,'economics','174.129.129.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:44:51','2020-03-10 17:44:51'),(7047,'government','54.234.46.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 19:25:59','2020-03-10 19:25:59'),(7048,'chemistry','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:21:32','2020-03-10 20:21:32'),(7049,'insurance','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:37:32','2020-03-10 20:37:32'),(7050,'chemistry','66.249.83.200',73,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-03-19 07:35:53'),(7051,'chemistry','66.249.83.204',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-04-26 10:46:35'),(7052,'englishlit','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:31:52','2020-03-11 02:31:52'),(7053,'english','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:42:48','2020-03-11 02:42:48'),(7054,'chemistry','116.31.102.8',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:21:00','2020-03-11 05:21:30'),(7055,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7056,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7057,'crk','35.174.12.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 10:23:39','2020-03-11 10:43:26'),(7058,'chemistry','52.90.116.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 11:19:41','2020-03-11 11:19:41'),(7059,'english','197.210.65.20',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:49','2020-03-11 13:34:49'),(7060,'biology','197.210.47.25',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:52','2020-03-11 13:34:52'),(7061,'chemistry','197.210.64.50',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:53','2020-03-11 13:34:54'),(7062,'mathematics','197.210.64.137',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:55','2020-03-11 13:34:56'),(7063,'chemistry','157.55.39.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:47:42','2020-03-11 14:47:42'),(7064,'chemistry','41.190.30.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:53:34','2020-03-11 14:53:35'),(7065,'english','54.221.96.198',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 15:42:57','2020-03-11 15:43:28'),(7066,'chemistry','197.211.61.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 16:33:36','2020-03-11 16:33:36'),(7067,'english','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:58:34','2020-03-11 18:58:34'),(7068,'englishlit','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:59:49','2020-03-11 18:59:49'),(7069,'physics','54.196.100.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:38:57','2020-03-11 19:38:57'),(7070,'chemistry','54.196.100.247',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:59:42','2020-03-11 19:59:42'),(7071,'english','3.82.116.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 20:42:05','2020-03-11 20:42:05'),(7072,'currentaffairs','54.211.73.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 21:57:05','2020-03-11 21:57:05'),(7073,'englishlit','54.234.241.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 01:46:19','2020-03-12 02:20:47'),(7074,'chemistry','54.167.99.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 05:23:04','2020-03-12 05:23:04'),(7075,'government','54.226.177.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:03:06','2020-03-12 06:03:06'),(7076,'economics','3.88.159.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:56:58','2020-03-12 06:56:58'),(7077,'mathematics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7078,'commerce','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7079,'english','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7080,'physics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:38'),(7081,'biology','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7082,'crk','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7083,'englishlit','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7084,'geography','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7085,'government','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7086,'insurance','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7087,'history','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7088,'currentaffairs','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:39','2020-03-12 07:43:39'),(7089,'chemistry','54.90.183.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 08:12:53','2020-03-12 08:12:53'),(7090,'english','3.83.156.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 10:27:53','2020-03-12 10:27:53'),(7091,'crk','3.89.215.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:13:49','2020-03-12 11:13:49'),(7092,'chemistry','3.90.255.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:50:26','2020-03-12 11:50:27'),(7093,'english','197.210.44.229',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 13:37:55','2020-03-12 13:37:55'),(7094,'mathematics','197.210.29.214',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:31:12','2020-03-12 15:31:12'),(7095,'chemistry','197.210.29.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:35:28','2020-03-12 15:36:34'),(7096,'chemistry','197.210.61.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:09','2020-03-12 15:38:09'),(7097,'chemistry','172.58.236.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:33','2020-03-12 15:41:06'),(7098,'biology','197.210.70.44',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 16:21:26','2020-03-12 16:21:28'),(7099,'biology','197.210.226.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:14:12','2020-03-12 17:14:14'),(7100,'biology','3.92.167.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:33:54','2020-03-12 17:33:54'),(7101,'chemistry','54.174.77.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 18:08:05','2020-03-12 18:08:05'),(7102,'english','129.205.113.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 20:47:35','2020-03-12 20:47:35'),(7103,'crk','52.90.72.30',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 00:32:24','2020-03-13 00:32:24'),(7104,'currentaffairs','52.91.74.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 03:07:06','2020-03-13 03:07:06'),(7105,'chemistry','66.249.88.54',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 04:13:43','2020-03-13 22:03:51'),(7106,'biology','54.226.184.43',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:52:03','2020-03-13 09:52:04'),(7107,'english','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:56:39','2020-03-13 09:56:39'),(7108,'accounting','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:58:08','2020-03-13 09:58:08'),(7109,'chemistry','3.92.56.188',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7110,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7111,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7112,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7113,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7114,'chemistry','54.242.59.9',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 16:39:40','2020-03-13 16:39:41'),(7115,'chemistry','207.46.13.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 20:02:53','2020-03-13 20:02:53'),(7116,'chemistry','54.146.129.212',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7117,'chemistry','54.146.129.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7118,'chemistry','66.249.83.202',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 22:03:49','2020-03-13 22:03:51'),(7119,'biology','54.152.253.226',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 02:58:06','2020-03-14 02:58:06'),(7120,'mathematics','66.249.83.200',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 08:36:31','2020-03-14 08:36:33'),(7121,'english','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7122,'mathematics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7123,'chemistry','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:35'),(7124,'economics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:35','2020-03-14 10:43:36'),(7125,'civiledu','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:36','2020-03-14 10:43:36'),(7126,'insurance','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7127,'currentaffairs','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7128,'commerce','34.239.245.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:45:23','2020-03-14 10:45:23'),(7129,'chemistry','3.90.43.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 13:49:52','2020-03-14 13:49:52'),(7130,'crk','54.161.109.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 14:49:17','2020-03-14 14:49:17'),(7131,'english','52.91.100.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:07:53','2020-03-14 18:07:53'),(7132,'chemistry','86.121.62.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:41:03','2020-03-14 18:41:03'),(7133,'chemistry','3.87.81.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:54:06','2020-03-14 18:54:06'),(7134,'chemistry','5.255.250.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:21:06','2020-03-14 19:21:06'),(7135,'chemistry','105.112.38.232',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:05','2020-03-15 06:16:13'),(7136,'mathematics','105.112.38.232',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:50','2020-03-14 19:55:10'),(7137,'chemistry','54.146.242.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:53:47','2020-03-14 19:53:51'),(7138,'mathematics','54.145.20.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 20:35:13','2020-03-14 20:35:13'),(7139,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7140,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7141,'chemistry','18.209.61.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:43:11','2020-03-14 22:43:11'),(7142,'biology','14.199.220.107',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:46:33','2020-03-14 22:46:34'),(7143,'economics','3.82.205.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:07:15','2020-03-15 01:07:15'),(7144,'chemistry','66.249.64.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:41:19','2020-03-15 01:41:22'),(7145,'geography','18.209.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 02:28:10','2020-03-15 02:28:10'),(7146,'geography','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:36:57','2020-03-15 03:36:57'),(7147,'biology','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:42:39','2020-03-15 03:42:39'),(7148,'mathematics','105.112.38.221',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 07:08:04','2020-03-15 07:08:05'),(7149,'physics','54.209.184.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 10:35:32','2020-03-15 10:35:32'),(7150,'chemistry','61.177.20.67',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:07:25','2020-03-15 11:08:03'),(7151,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7152,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7153,'englishlit','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:00:27','2020-03-15 13:00:27'),(7154,'geography','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:12:58','2020-03-15 13:12:58'),(7155,'chemistry','66.249.80.40',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:13:16','2020-03-15 13:13:18'),(7156,'currentaffairs','54.157.45.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:17:59','2020-03-15 14:17:59'),(7157,'chemistry','114.119.165.83',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:58:19','2020-04-09 07:14:34'),(7158,'mathematics','197.210.70.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 15:43:48','2020-03-15 15:43:56'),(7159,'biology','3.80.249.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 16:18:19','2020-03-15 16:18:19'),(7160,'chemistry','40.77.167.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 17:54:45','2020-03-15 17:54:45'),(7161,'chemistry','54.234.65.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:02:01','2020-03-15 19:02:01'),(7162,'chemistry','192.3.183.226',69,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:05:22','2020-03-16 02:10:39'),(7163,'physics','54.175.61.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:07:09','2020-03-15 23:07:09'),(7164,'mathematics','54.152.128.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:41:27','2020-03-15 23:41:27'),(7165,'chemistry','5.255.250.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 01:11:48','2020-03-16 01:11:48'),(7166,'geography','100.27.28.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 02:48:46','2020-03-16 02:48:46'),(7167,'government','18.204.205.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 03:52:44','2020-03-16 03:52:44'),(7168,'mathematics','52.87.174.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 04:36:55','2020-03-16 04:36:55'),(7169,'history','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:37:41','2020-03-16 06:37:41'),(7170,'biology','34.230.5.124',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:40'),(7171,'biology','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:39'),(7172,'crk','35.173.183.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:03:46','2020-03-16 09:03:46'),(7173,'chemistry','66.249.88.55',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:48:48','2020-03-16 09:48:49'),(7174,'geography','54.226.6.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 14:13:41','2020-03-16 14:13:41'),(7175,'mathematics','105.112.153.142',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:02:32','2020-03-16 17:02:47'),(7176,'physics','105.112.153.142',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:03:09','2020-03-16 17:03:10'),(7177,'english','105.112.153.142',480,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:04:23','2020-03-16 20:08:50'),(7178,'accounting','54.144.114.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 21:09:52','2020-03-16 21:09:52'),(7179,'history','54.152.71.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 07:17:16','2020-03-17 07:17:16'),(7180,'english','41.86.149.34',280,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 09:42:41','2020-03-17 12:11:29'),(7181,'english','105.112.22.72',440,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 15:51:33','2020-03-17 16:19:25'),(7182,'chemistry','105.112.22.72',323,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 16:24:18','2020-03-17 17:11:03'),(7183,'physics','105.112.22.72',164,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 17:05:04','2020-03-17 17:28:30'),(7184,'mathematics','105.112.22.72',149,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:14:51','2020-03-17 17:38:27'),(7185,'government','105.112.22.72',276,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:40:56','2020-03-17 17:50:13'),(7186,'englishlit','105.112.47.130',334,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:54:27','2020-03-17 18:14:37'),(7187,'government','105.112.47.130',22,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:56:02','2020-03-17 17:56:03'),(7188,'crk','105.112.47.130',543,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:16:10','2020-03-17 18:30:39'),(7189,'english','105.112.47.130',40,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:18:33','2020-03-17 18:18:35'),(7190,'accounting','105.112.47.130',158,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:35:02','2020-03-17 18:37:47'),(7191,'chemistry','34.227.17.84',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:52:23','2020-03-17 18:52:23'),(7192,'chemistry','144.76.67.169',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 00:01:13','2020-03-18 00:01:58'),(7193,'chemistry','54.36.149.77',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:03:44','2020-03-18 05:03:44'),(7194,'economics','52.201.123.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:33:29','2020-03-18 05:33:29'),(7195,'history','3.93.187.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 11:38:00','2020-03-18 11:38:00'),(7196,'english','129.205.113.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:00:34','2020-03-18 20:00:34'),(7197,'chemistry','66.249.88.56',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:39:56','2020-03-18 20:39:58'),(7198,'irk','54.90.235.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:56:56','2020-03-18 20:56:56'),(7199,'chemistry','54.36.150.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 21:24:26','2020-03-18 21:24:26'),(7200,'crk','18.232.99.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 23:57:52','2020-03-18 23:57:52'),(7201,'commerce','3.88.101.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 01:46:16','2020-03-19 01:46:16'),(7202,'accounting','3.81.2.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 05:42:19','2020-03-19 05:42:19'),(7203,'chemistry','66.102.8.229',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 07:35:52','2020-03-19 07:35:54'),(7204,'economics','18.209.171.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 08:15:35','2020-03-19 08:15:35'),(7205,'chemistry','3.87.142.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 11:32:20','2020-03-19 11:32:20'),(7206,'government','54.172.25.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 12:12:58','2020-03-19 12:12:58'),(7207,'economics','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:31:06','2020-03-19 14:31:06'),(7208,'commerce','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:35:27','2020-03-19 14:35:27'),(7209,'geography','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:55:22','2020-03-19 14:55:22'),(7210,'government','54.242.179.61',1,'Nigeria','NG','LA','Lagos','Lagos','','6.4531','3.3958','2020-03-19 20:38:35','2020-03-19 20:38:35'),(7211,'chemistry','18.207.197.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 21:48:48','2020-03-19 21:48:48'),(7212,'english','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:32:19','2020-03-20 00:32:19'),(7213,'englishlit','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:50:34','2020-03-20 00:50:34'),(7214,'chemistry','114.119.165.169',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 01:18:55','2020-04-05 03:27:02'),(7215,'accounting','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7216,'biology','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7217,'chemistry','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7218,'crk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7219,'geography','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:26'),(7220,'irk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7221,'civiledu','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7222,'crk','3.93.49.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 08:22:17','2020-03-20 08:22:17'),(7223,'chemistry','197.210.71.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 09:39:01','2020-03-20 09:39:01'),(7224,'chemistry','117.63.134.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:39:07','2020-03-20 14:39:07'),(7225,'chemistry','41.190.2.160',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:55:17','2020-03-20 14:55:40'),(7226,'physics','18.234.143.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 16:22:33','2020-03-20 16:22:33'),(7227,'currentaffairs','3.88.171.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 18:44:05','2020-03-20 18:44:05'),(7228,'englishlit','3.80.210.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 19:58:26','2020-03-20 19:58:26'),(7229,'crk','54.234.191.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 22:13:05','2020-03-20 22:13:05'),(7230,'englishlit','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:13:40','2020-03-21 00:13:40'),(7231,'economics','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:45:11','2020-03-21 00:45:11'),(7232,'government','54.81.79.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:06:58','2020-03-21 02:06:58'),(7233,'chemistry','36.49.27.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:48:44','2020-03-21 02:48:44'),(7234,'irk','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:15:05','2020-03-21 04:15:05'),(7235,'english','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:39:38','2020-03-21 04:39:38'),(7236,'englishlit','41.80.20.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 05:52:43','2020-03-21 05:53:35'),(7237,'chemistry','154.113.86.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 08:44:48','2020-03-21 08:44:48'),(7238,'chemistry','54.36.150.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 10:28:05','2020-03-21 10:28:05'),(7239,'chemistry','42.49.170.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 12:22:18','2020-03-21 12:22:18'),(7240,'english','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:55','2020-03-21 13:16:56'),(7241,'commerce','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:56','2020-03-21 13:16:58'),(7242,'physics','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:59','2020-03-21 13:18:04'),(7243,'englishlit','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:00','2020-03-21 13:17:01'),(7244,'insurance','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:01','2020-03-21 13:18:05'),(7245,'currentaffairs','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:18:05'),(7246,'history','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:17:03'),(7247,'accounting','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:03','2020-03-21 13:18:04'),(7248,'government','18.234.135.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:16'),(7249,'economics','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7250,'civiledu','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7251,'chemistry','102.89.3.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 14:16:11','2020-03-21 14:16:11'),(7252,'accounting','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:30:53','2020-03-22 03:30:53'),(7253,'englishlit','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:32:36','2020-03-22 03:32:36'),(7254,'chemistry','116.248.186.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 12:56:38','2020-03-22 12:56:38'),(7255,'accounting','105.112.52.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 15:00:00','2020-03-22 15:00:02'),(7256,'commerce','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7257,'physics','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7258,'englishlit','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7259,'government','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7260,'crk','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7261,'insurance','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7262,'history','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7263,'chemistry','59.63.75.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 17:32:33','2020-03-22 17:32:34'),(7264,'mathematics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7265,'biology','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7266,'physics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7267,'chemistry','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7268,'geography','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7269,'irk','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7270,'currentaffairs','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:33'),(7271,'commerce','3.89.66.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 23:32:36','2020-03-22 23:32:36'),(7272,'chemistry','77.88.5.109',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 01:02:57','2020-05-28 06:27:27'),(7273,'crk','52.90.48.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 04:30:54','2020-03-23 04:30:54'),(7274,'biology','3.92.24.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 08:53:22','2020-03-23 08:53:22'),(7275,'mathematics','54.165.10.238',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 10:35:39','2020-03-23 10:35:39'),(7276,'economics','54.164.64.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 13:08:24','2020-03-23 13:08:24'),(7277,'geography','18.209.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 14:04:53','2020-03-23 14:04:53'),(7278,'geography','3.89.20.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 15:04:00','2020-03-23 15:04:00'),(7279,'englishlit','54.210.71.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:16:17','2020-03-23 23:16:17'),(7280,'geography','54.91.123.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:54:39','2020-03-23 23:54:39'),(7281,'currentaffairs','18.234.156.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 01:21:49','2020-03-24 01:21:49'),(7282,'physics','18.215.170.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 02:05:13','2020-03-24 02:05:13'),(7283,'english','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7284,'mathematics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7285,'physics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7286,'irk','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7287,'civiledu','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7288,'insurance','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7289,'currentaffairs','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7290,'physics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 07:37:59','2020-03-24 07:37:59'),(7291,'mathematics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 08:09:12','2020-03-24 08:09:12'),(7292,'mathematics','100.24.26.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 14:18:48','2020-03-24 14:18:48'),(7293,'accounting','52.87.217.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 04:37:55','2020-03-25 04:37:55'),(7294,'chemistry','114.119.160.245',41,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-25 10:25:16','2020-06-23 19:50:56'),(7295,'history','52.23.203.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 12:19:56','2020-03-25 12:19:56'),(7296,'chemistry','154.118.9.188',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 14:09:50','2020-03-25 14:09:50'),(7297,'commerce','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7298,'chemistry','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7299,'englishlit','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7300,'crk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:53'),(7301,'geography','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7302,'irk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7303,'insurance','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7304,'biology','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7305,'physics','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7306,'chemistry','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7307,'crk','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:20'),(7308,'geography','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7309,'civiledu','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7310,'currentaffairs','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7311,'english','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7312,'commerce','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7313,'biology','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7314,'government','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7315,'geography','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7316,'civiledu','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7317,'currentaffairs','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7318,'history','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 08:23:17','2020-03-26 08:23:17'),(7319,'economics','3.84.167.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:17:04','2020-03-26 09:17:04'),(7320,'english','197.211.61.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:24:43','2020-03-26 09:24:43'),(7321,'biology','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:33:58','2020-03-26 11:33:59'),(7322,'chemistry','102.89.3.190',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:00','2020-03-26 11:34:00'),(7323,'commerce','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:01','2020-03-26 11:34:01'),(7324,'crk','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:22','2020-03-26 12:14:19'),(7325,'commerce','102.89.3.190',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:23','2020-03-26 12:11:33'),(7326,'crk','102.89.3.190',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:08','2020-03-26 12:08:09'),(7327,'commerce','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:09','2020-03-26 12:14:21'),(7328,'crk','102.89.3.126',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:11:32','2020-03-26 12:11:32'),(7329,'crk','102.89.2.115',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:21:27','2020-03-26 12:22:22'),(7330,'crk','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:44','2020-03-26 12:22:45'),(7331,'commerce','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:46','2020-03-26 12:22:46'),(7332,'crk','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:40','2020-03-26 12:23:40'),(7333,'commerce','197.210.84.177',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:41','2020-03-26 12:23:42'),(7334,'crk','197.210.84.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:11','2020-03-26 12:24:12'),(7335,'commerce','197.210.84.39',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:12','2020-03-26 12:24:13'),(7336,'crk','197.210.84.227',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:09','2020-03-26 12:29:09'),(7337,'commerce','197.210.84.119',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:10','2020-03-26 12:29:10'),(7338,'crk','197.210.84.207',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:03','2020-03-26 12:32:04'),(7339,'commerce','197.210.84.125',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:05','2020-03-26 12:32:06'),(7340,'crk','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:21','2020-03-26 12:36:21'),(7341,'commerce','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:22','2020-03-26 12:36:22'),(7342,'crk','197.210.84.31',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:30','2020-03-26 12:36:30'),(7343,'commerce','197.210.84.245',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:31','2020-03-26 12:36:32'),(7344,'crk','197.210.84.165',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:47','2020-03-26 12:37:47'),(7345,'commerce','197.210.84.17',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:48','2020-03-26 12:37:48'),(7346,'crk','197.210.85.81',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:57','2020-03-26 12:37:57'),(7347,'commerce','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:58','2020-03-26 12:37:58'),(7348,'crk','197.210.84.67',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:00','2020-03-26 12:44:00'),(7349,'commerce','197.210.84.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:01','2020-03-26 12:44:01'),(7350,'english','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:13','2020-03-26 13:09:04'),(7351,'mathematics','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:14','2020-03-26 13:09:05'),(7352,'english','197.210.85.140',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:15','2020-03-26 14:03:15'),(7353,'mathematics','197.210.85.254',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:16','2020-03-26 14:03:17'),(7354,'english','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:01','2020-03-26 14:10:37'),(7355,'mathematics','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:03','2020-03-26 14:10:38'),(7356,'irk','3.94.121.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:26:17','2020-03-26 19:26:17'),(7357,'chemistry','114.119.161.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:45:34','2020-03-26 19:45:34'),(7358,'crk','174.129.131.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 22:50:44','2020-03-26 22:50:44'),(7359,'commerce','3.91.233.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 01:48:15','2020-03-27 01:48:15'),(7360,'accounting','54.208.155.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 05:24:26','2020-03-27 05:24:26'),(7361,'economics','52.91.100.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:22:14','2020-03-27 09:22:14'),(7362,'chemistry','66.102.8.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:51:49','2020-03-27 09:51:51'),(7363,'government','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 10:43:15','2020-03-27 10:43:15'),(7364,'chemistry','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:21:50','2020-03-27 11:21:50'),(7365,'english','102.89.0.135',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:47','2020-03-27 11:36:38'),(7366,'mathematics','102.89.1.184',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:48','2020-04-27 18:37:31'),(7367,'mathematics','102.89.1.114',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:33:55','2020-03-27 11:33:55'),(7368,'mathematics','102.89.0.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:36:39','2020-03-27 11:36:39'),(7369,'geography','54.209.201.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 13:36:58','2020-03-27 13:36:58'),(7370,'commerce','54.162.99.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 14:52:49','2020-03-27 14:52:49'),(7371,'economics','34.227.72.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 17:36:43','2020-03-27 17:36:43'),(7372,'crk','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 19:48:01','2020-03-27 19:48:01'),(7373,'insurance','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 20:10:12','2020-03-27 20:10:12'),(7374,'mathematics','18.212.220.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 22:19:25','2020-03-27 22:19:25'),(7375,'englishlit','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:27:23','2020-03-27 23:27:23'),(7376,'english','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:38:18','2020-03-27 23:38:18'),(7377,'crk','54.91.106.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 02:52:57','2020-03-28 02:52:57'),(7378,'english','54.204.180.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 04:14:13','2020-03-28 04:14:13'),(7379,'accounting','105.112.31.78',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:01:29','2020-03-28 06:01:32'),(7380,'chemistry','105.112.31.78',218,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 06:16:34','2020-03-28 10:26:50'),(7381,'mathematics','105.112.31.78',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:21:28','2020-03-28 06:21:37'),(7382,'crk','105.112.31.78',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:24:50','2020-03-28 06:24:54'),(7383,'crk','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:58:54','2020-03-28 06:58:57'),(7384,'mathematics','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:59:17','2020-03-28 06:59:19'),(7385,'biology','3.81.58.70',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:00:16','2020-03-28 07:28:03'),(7386,'biology','18.212.96.129',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:28:19','2020-03-28 07:29:29'),(7387,'chemistry','18.212.96.129',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 07:29:37','2020-03-28 07:46:04'),(7388,'mathematics','18.212.96.129',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:30:36','2020-03-28 07:30:39'),(7389,'chemistry','54.196.165.71',160,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:19:31','2020-03-28 08:21:56'),(7390,'crk','3.82.235.188',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:53:24','2020-03-28 08:53:24'),(7391,'chemistry','157.55.39.86',7,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 09:13:40','2020-03-28 09:13:40'),(7392,'physics','54.145.168.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 14:48:56','2020-03-28 14:48:56'),(7393,'english','35.172.185.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 17:23:34','2020-03-28 17:23:34'),(7394,'currentaffairs','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 18:18:16','2020-03-28 18:18:16'),(7395,'englishlit','54.84.20.113',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 18:46:01','2020-03-28 18:46:01'),(7396,'crk','34.207.92.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 20:17:19','2020-03-28 20:17:19'),(7397,'englishlit','54.227.76.74',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 22:38:07','2020-03-28 22:38:07'),(7398,'chemistry','100.26.102.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 23:45:57','2020-03-28 23:45:57'),(7399,'english','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:26:48','2020-03-29 01:26:48'),(7400,'government','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:48:28','2020-03-29 01:48:28'),(7401,'currentaffairs','54.166.138.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 02:46:57','2020-03-29 02:46:57'),(7402,'economics','54.224.84.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 03:48:49','2020-03-29 03:48:49'),(7403,'chemistry','3.235.65.91',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 05:20:26','2020-03-29 05:44:48'),(7404,'english','54.174.190.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 10:18:53','2020-03-29 10:18:53'),(7405,'civiledu','54.172.166.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:13:13','2020-03-29 11:13:13'),(7406,'chemistry','54.174.40.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:55:39','2020-03-29 11:55:39'),(7407,'chemistry','180.103.58.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:00:01','2020-03-29 12:00:01'),(7408,'chemistry','82.145.220.58',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:01:04','2020-03-29 12:01:05'),(7409,'mathematics','54.92.219.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:42:18','2020-03-29 12:42:18'),(7410,'mathematics','18.206.91.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 13:35:15','2020-03-29 13:35:15'),(7411,'chemistry','58.255.198.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 14:37:51','2020-03-29 14:37:51'),(7412,'chemistry','111.160.25.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 17:47:36','2020-03-29 17:47:36'),(7413,'chemistry','18.206.237.17',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 18:38:42','2020-03-29 18:38:45'),(7414,'currentaffairs','54.163.120.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 19:48:21','2020-03-29 19:48:21'),(7415,'chemistry','54.145.49.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 21:49:35','2020-03-29 21:49:35'),(7416,'englishlit','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:05:16','2020-03-30 01:05:16'),(7417,'accounting','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:33:36','2020-03-30 01:33:36'),(7418,'commerce','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7419,'accounting','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7420,'physics','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7421,'geography','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7422,'civiledu','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7423,'currentaffairs','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7424,'history','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7425,'mathematics','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:50:17','2020-03-31 05:50:17'),(7426,'commerce','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:51:26','2020-03-31 05:51:26'),(7427,'geography','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 07:58:39','2020-03-31 10:19:30'),(7428,'biology','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:01:26','2020-03-31 09:22:41'),(7429,'currentaffairs','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:27:55','2020-03-31 09:50:10'),(7430,'government','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:46:16','2020-03-31 10:11:00'),(7431,'civiledu','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:00:56','2020-03-31 09:10:50'),(7432,'english','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:08:10','2020-03-31 10:09:09'),(7433,'mathematics','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7434,'commerce','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 10:07:16'),(7435,'chemistry','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7436,'crk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7437,'irk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7438,'englishlit','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 16:48:59','2020-03-31 16:48:59'),(7439,'physics','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 17:25:08','2020-03-31 17:25:08'),(7440,'geography','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 18:36:35','2020-03-31 18:36:35'),(7441,'currentaffairs','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 19:04:20','2020-03-31 19:04:20'),(7442,'currentaffairs','54.224.172.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 21:22:54','2020-03-31 21:22:54'),(7443,'chemistry','197.210.84.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:38','2020-03-31 22:04:43'),(7444,'chemistry','197.210.84.199',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:50','2020-03-31 22:04:55'),(7445,'chemistry','197.210.84.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:05:03','2020-03-31 22:05:05'),(7446,'physics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:04:01','2020-04-01 02:04:01'),(7447,'mathematics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:10:56','2020-04-01 02:10:56'),(7448,'mathematics','3.80.85.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 04:50:44','2020-04-01 04:50:44'),(7449,'mathematics','18.212.146.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 06:03:05','2020-04-01 06:03:05'),(7450,'chemistry','114.119.163.81',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 09:42:15','2020-04-01 09:42:15'),(7451,'chemistry','197.211.57.245',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 12:50:39','2020-04-01 12:52:16'),(7452,'english','34.230.39.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 16:42:36','2020-04-01 16:42:36'),(7453,'mathematics','18.234.121.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 19:01:10','2020-04-01 19:01:10'),(7454,'accounting','54.147.176.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 20:49:28','2020-04-01 20:49:28'),(7455,'biology','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:56','2020-04-01 21:17:56'),(7456,'physics','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7457,'government','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7458,'geography','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7459,'economics','54.147.176.88',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-22 05:41:24'),(7460,'civiledu','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7461,'insurance','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7462,'chemistry','54.36.148.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 00:49:26','2020-04-02 00:49:29'),(7463,'history','54.236.10.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 03:47:55','2020-04-02 03:47:55'),(7464,'chemistry','197.210.70.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 20:57:50','2020-04-02 20:57:52'),(7465,'economics','34.229.174.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 01:39:45','2020-04-03 01:39:45'),(7466,'history','3.81.12.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 02:51:48','2020-04-03 02:51:48'),(7467,'government','102.89.1.199',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 11:46:35','2020-04-03 11:46:36'),(7468,'commerce','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7469,'accounting','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7470,'crk','54.224.177.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:53:40'),(7471,'economics','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7472,'civiledu','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7473,'currentaffairs','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7474,'history','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7475,'physics','54.227.76.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 18:36:02','2020-04-03 18:36:02'),(7476,'english','3.85.190.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 21:48:32','2020-04-03 21:48:32'),(7477,'commerce','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 23:42:41','2020-04-03 23:42:41'),(7478,'economics','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 00:01:21','2020-04-04 00:01:21'),(7479,'chemistry','207.46.13.220',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 01:45:34','2020-04-04 10:12:07'),(7480,'government','54.209.223.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 02:40:53','2020-04-04 02:40:53'),(7481,'geography','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:46:07','2020-04-04 03:46:07'),(7482,'chemistry','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:56:04','2020-04-04 03:56:04'),(7483,'government','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 04:24:02','2020-04-04 04:24:02'),(7484,'economics','54.87.134.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:29:31','2020-04-04 08:29:31'),(7485,'mathematics','105.112.56.96',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:37:54','2020-04-04 08:42:05'),(7486,'english','197.210.71.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:22:13','2020-04-04 10:22:13'),(7487,'chemistry','197.211.61.123',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:43:13','2020-04-04 10:46:06'),(7488,'physics','197.211.61.123',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:46:42','2020-04-04 10:46:42'),(7489,'english','197.211.61.123',726,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:11','2020-04-04 12:22:56'),(7490,'commerce','3.80.214.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:21','2020-04-04 10:47:21'),(7491,'english','197.211.61.125',406,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-04 12:41:24','2020-04-04 13:00:00'),(7492,'chemistry','197.211.61.125',10,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:00:38','2020-04-04 13:13:18'),(7493,'insurance','3.86.32.0',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:22:34','2020-04-04 13:22:34'),(7494,'englishlit','52.23.172.123',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:17:24','2020-04-04 14:17:24'),(7495,'chemistry','157.55.39.42',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:48:38','2020-04-04 14:48:38'),(7496,'chemistry','66.249.64.104',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:18:30','2020-04-04 17:18:31'),(7497,'english','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:20:12','2020-04-04 17:20:12'),(7498,'crk','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:30:11','2020-04-04 17:30:11'),(7499,'crk','54.163.215.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 22:41:54','2020-04-04 22:41:54'),(7500,'physics','52.91.100.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 04:23:04','2020-04-05 04:23:04'),(7501,'biology','3.81.133.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 05:11:31','2020-04-05 05:11:31'),(7502,'englishlit','54.89.124.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 06:31:33','2020-04-05 06:31:33'),(7503,'chemistry','197.210.71.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:23:44','2020-04-05 08:23:44'),(7504,'chemistry','197.210.71.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:35','2020-04-05 08:28:01'),(7505,'chemistry','197.210.71.175',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:53','2020-04-05 08:29:40'),(7506,'chemistry','197.210.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:28:36','2020-04-05 08:28:36'),(7507,'english','197.210.71.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:32:51','2020-04-05 08:32:53'),(7508,'english','197.210.174.172',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:34:34','2020-04-05 08:34:37'),(7509,'currentaffairs','3.87.91.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 09:08:45','2020-04-05 09:08:45'),(7510,'crk','18.206.247.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:11:56','2020-04-05 10:11:56'),(7511,'englishlit','3.208.20.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:55:11','2020-04-05 10:55:11'),(7512,'chemistry','66.249.88.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 11:30:48','2020-04-05 11:30:50'),(7513,'economics','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:16:19','2020-04-05 12:16:19'),(7514,'government','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:53:23','2020-04-05 12:53:23'),(7515,'english','34.233.133.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 13:47:53','2020-04-05 13:47:53'),(7516,'mathematics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7517,'commerce','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7518,'biology','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7519,'physics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7520,'chemistry','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7521,'englishlit','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:26'),(7522,'history','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:26','2020-04-06 12:14:26'),(7523,'accounting','54.152.156.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:19:13','2020-04-06 12:19:13'),(7524,'accounting','3.80.94.111',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 15:07:41','2020-04-06 15:07:41'),(7525,'chemistry','105.112.115.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 22:20:42','2020-04-06 22:20:42'),(7526,'commerce','34.227.162.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 06:35:37','2020-04-07 06:35:37'),(7527,'crk','107.23.255.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 08:35:49','2020-04-07 08:35:49'),(7528,'physics','18.212.66.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 09:45:19','2020-04-07 09:45:19'),(7529,'mathematics','34.236.143.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 13:42:20','2020-04-07 13:42:20'),(7530,'chemistry','64.233.172.196',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 14:19:21','2020-04-07 14:19:22'),(7531,'chemistry','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:06','2020-04-07 16:55:06'),(7532,'chemistry','197.210.53.20',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:14','2020-04-07 16:55:14'),(7533,'chemistry','197.210.52.112',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:33','2020-04-07 16:55:33'),(7534,'geography','3.95.225.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 17:53:36','2020-04-07 17:53:36'),(7535,'chemistry','197.210.52.88',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:07:14','2020-04-07 19:19:19'),(7536,'chemistry','197.210.53.6',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:32:43','2020-04-07 18:39:36'),(7537,'chemistry','197.210.52.36',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:34:00','2020-04-07 18:43:49'),(7538,'chemistry','197.210.53.99',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:05','2020-04-07 19:17:34'),(7539,'chemistry','197.210.52.22',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:27','2020-04-07 18:48:54'),(7540,'english','197.210.53.99',695,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:56'),(7541,'english','197.210.53.6',765,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:31'),(7542,'english','197.210.53.65',848,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:28:00'),(7543,'english','197.210.52.12',917,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:55'),(7544,'english','197.210.52.88',795,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:55'),(7545,'english','197.210.52.36',477,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:58'),(7546,'geography','18.205.107.57',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 20:02:08','2020-04-07 20:02:08'),(7547,'english','108.41.239.178',1802,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-12 16:31:21'),(7548,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7549,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7550,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7551,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7552,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7553,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7554,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7555,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7556,'irk','108.41.239.178',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:01','2020-04-12 16:31:20'),(7557,'civiledu','108.41.239.178',626,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7558,'insurance','108.41.239.178',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:23'),(7559,'currentaffairs','108.41.239.178',429,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7560,'physics','54.156.62.219',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 00:38:52','2020-04-08 00:38:52'),(7561,'englishlit','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:17:24','2020-04-08 01:17:24'),(7562,'geography','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:43:32','2020-04-08 01:43:32'),(7563,'currentaffairs','3.94.134.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 03:38:40','2020-04-08 03:38:40'),(7564,'chemistry','77.88.5.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-08 04:45:23','2020-04-08 04:45:23'),(7565,'english','18.206.175.184',3,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:05'),(7566,'chemistry','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7567,'government','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7568,'geography','18.206.175.184',2,'','NG','','Lagos',NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7569,'irk','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7570,'civiledu','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7571,'currentaffairs','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7572,'mathematics','3.95.38.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 10:05:10','2020-04-08 10:05:10'),(7573,'geography','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 11:58:50','2020-04-08 11:58:50'),(7574,'physics','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 12:09:29','2020-04-08 12:09:29'),(7575,'mathematics','34.230.69.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 13:57:51','2020-04-08 13:57:51'),(7576,'accounting','54.152.166.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 03:29:44','2020-04-09 03:29:44'),(7577,'chemistry','34.203.216.217',233,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 06:33:24','2020-04-09 06:37:01'),(7578,'chemistry','197.210.70.115',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 11:54:08','2020-04-09 16:40:18'),(7579,'chemistry','197.210.71.11',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:31','2020-04-09 17:27:14'),(7580,'chemistry','197.210.70.183',287,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:58','2020-04-09 17:20:35'),(7581,'english','197.210.70.109',813,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:40:07'),(7582,'english','197.210.70.69',465,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:38:21'),(7583,'english','197.210.70.149',469,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:25:34'),(7584,'english','197.210.70.211',792,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:31'),(7585,'english','197.210.70.81',624,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7586,'english','197.210.70.183',315,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:35'),(7587,'english','197.210.70.205',600,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7588,'english','197.210.71.235',595,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:17'),(7589,'english','197.210.70.27',674,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:52'),(7590,'english','197.210.70.15',552,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:44'),(7591,'english','197.210.71.79',478,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:33'),(7592,'english','197.210.70.251',820,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:20:15'),(7593,'english','197.210.70.95',701,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:25:00'),(7594,'english','197.210.70.115',676,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:47','2020-04-09 17:26:31'),(7595,'english','197.210.70.225',620,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:48','2020-04-09 17:26:34'),(7596,'english','197.210.70.53',679,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:33'),(7597,'english','197.210.70.239',623,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:24:53'),(7598,'english','197.210.70.217',663,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:30'),(7599,'english','197.210.70.1',515,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:51','2020-04-09 17:24:27'),(7600,'english','197.210.70.137',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:52','2020-04-09 17:25:32'),(7601,'english','197.210.71.11',588,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:58','2020-04-09 17:19:49'),(7602,'english','197.210.70.41',639,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:59','2020-04-09 17:25:34'),(7603,'english','197.210.70.121',555,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:00','2020-04-09 17:25:35'),(7604,'english','197.210.70.189',462,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:01','2020-04-09 17:25:35'),(7605,'english','197.210.70.171',473,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:04','2020-04-09 17:26:34'),(7606,'english','197.210.71.167',510,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:14','2020-04-09 17:24:21'),(7607,'chemistry','197.210.70.109',327,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:42','2020-04-09 17:24:47'),(7608,'mathematics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:35'),(7609,'mathematics','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:28'),(7610,'mathematics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:18:51'),(7611,'mathematics','197.210.70.171',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:24:24'),(7612,'mathematics','197.210.71.167',520,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:25:25'),(7613,'mathematics','197.210.70.69',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:19:18'),(7614,'mathematics','197.210.70.115',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:18:11'),(7615,'mathematics','197.210.70.149',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:51'),(7616,'mathematics','197.210.70.137',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:38'),(7617,'mathematics','197.210.70.95',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:35'),(7618,'mathematics','197.210.70.121',360,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:39'),(7619,'mathematics','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:07'),(7620,'accounting','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:37'),(7621,'accounting','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:18:19'),(7622,'commerce','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:19:14'),(7623,'commerce','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:51'),(7624,'commerce','197.210.70.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 15:19:39'),(7625,'commerce','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:33'),(7626,'accounting','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:18'),(7627,'accounting','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:43'),(7628,'commerce','197.210.71.11',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:44'),(7629,'accounting','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:27:00'),(7630,'commerce','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:26:47'),(7631,'commerce','197.210.71.79',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:24:23'),(7632,'biology','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:20:25'),(7633,'commerce','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:17'),(7634,'mathematics','197.210.70.15',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:30'),(7635,'biology','197.210.71.11',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:40','2020-04-09 17:26:43'),(7636,'biology','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:20:31'),(7637,'biology','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:26:10'),(7638,'commerce','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:56'),(7639,'accounting','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:27:03'),(7640,'biology','197.210.70.41',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:55'),(7641,'biology','197.210.70.251',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:26:55'),(7642,'accounting','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:25:57'),(7643,'biology','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:26:42'),(7644,'physics','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:19:26'),(7645,'biology','197.210.71.167',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:25:49'),(7646,'physics','197.210.70.95',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:26:56'),(7647,'physics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:59'),(7648,'englishlit','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:11'),(7649,'physics','197.210.70.81',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:26:59'),(7650,'physics','197.210.70.239',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:19:05'),(7651,'physics','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:50'),(7652,'biology','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:20:21'),(7653,'englishlit','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:12'),(7654,'physics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:18:58'),(7655,'chemistry','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:51','2020-04-09 16:40:16'),(7656,'chemistry','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:18:32'),(7657,'physics','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:26:02'),(7658,'chemistry','197.210.71.167',480,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:53','2020-04-09 17:27:14'),(7659,'englishlit','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:54','2020-04-09 17:18:22'),(7660,'englishlit','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:55','2020-04-09 17:26:25'),(7661,'englishlit','197.210.70.121',357,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:56','2020-04-09 17:26:21'),(7662,'government','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:17'),(7663,'chemistry','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:09'),(7664,'government','197.210.70.27',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:27'),(7665,'englishlit','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:18:20'),(7666,'chemistry','197.210.70.225',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:07'),(7667,'government','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:20:42'),(7668,'chemistry','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:19:30'),(7669,'chemistry','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:24:47'),(7670,'crk','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:59','2020-04-09 17:24:54'),(7671,'government','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:26:18'),(7672,'crk','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:25:01'),(7673,'government','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 15:51:08'),(7674,'englishlit','197.210.70.81',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:01','2020-04-09 17:26:17'),(7675,'crk','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:03','2020-04-09 17:27:20'),(7676,'geography','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:04','2020-04-09 17:27:21'),(7677,'geography','197.210.70.27',278,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:19:43'),(7678,'crk','197.210.70.81',237,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:20:43'),(7679,'government','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:08','2020-04-09 17:27:30'),(7680,'geography','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:25'),(7681,'government','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:27:17'),(7682,'crk','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:37'),(7683,'government','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:27:27'),(7684,'crk','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:25:07'),(7685,'geography','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:19:46'),(7686,'economics','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:20:58'),(7687,'economics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:26:24'),(7688,'geography','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:25:03'),(7689,'government','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:20:43'),(7690,'crk','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 16:39:57'),(7691,'crk','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 17:20:43'),(7692,'geography','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:26:23'),(7693,'economics','197.210.71.79',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:20:49'),(7694,'crk','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:27:27'),(7695,'geography','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:15','2020-04-09 17:27:29'),(7696,'economics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:17','2020-04-09 17:27:42'),(7697,'economics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:18','2020-04-09 17:25:03'),(7698,'irk','197.210.70.15',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:19:50'),(7699,'economics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:26:12'),(7700,'economics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:27:42'),(7701,'irk','197.210.71.167',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:20','2020-04-09 17:20:47'),(7702,'civiledu','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:43'),(7703,'irk','197.210.70.53',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:25:11'),(7704,'economics','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:32'),(7705,'irk','197.210.70.41',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:18:38'),(7706,'currentaffairs','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:23','2020-04-09 17:25:07'),(7707,'irk','197.210.70.81',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:25:14'),(7708,'civiledu','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:19:55'),(7709,'insurance','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:20:58'),(7710,'currentaffairs','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:21:02'),(7711,'insurance','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:27:50'),(7712,'currentaffairs','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:21:07'),(7713,'civiledu','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 16:40:24'),(7714,'currentaffairs','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:28','2020-04-09 16:40:39'),(7715,'civiledu','197.210.70.27',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:27:51'),(7716,'history','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:21:10'),(7717,'currentaffairs','197.210.71.11',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:20:06'),(7718,'civiledu','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:27:39'),(7719,'currentaffairs','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 17:20:11'),(7720,'insurance','197.210.70.205',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 15:22:09'),(7721,'insurance','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 16:34:20'),(7722,'insurance','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:33','2020-04-09 17:27:51'),(7723,'civiledu','197.210.70.95',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:27:39'),(7724,'irk','197.210.71.11',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:25:10'),(7725,'civiledu','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 16:29:46'),(7726,'insurance','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:27:52'),(7727,'civiledu','197.210.70.211',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:20:55'),(7728,'irk','197.210.70.69',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:18:39'),(7729,'currentaffairs','197.210.70.53',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:20:06'),(7730,'civiledu','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:47'),(7731,'currentaffairs','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:48'),(7732,'currentaffairs','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:48'),(7733,'history','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:28:00'),(7734,'history','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:55'),(7735,'economics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:42'),(7736,'irk','197.210.70.217',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:20:51'),(7737,'insurance','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:40','2020-04-09 17:19:57'),(7738,'insurance','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:18:43'),(7739,'insurance','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 16:40:38'),(7740,'history','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:21:10'),(7741,'history','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:20:11'),(7742,'history','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 16:40:37'),(7743,'history','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 17:21:05'),(7744,'history','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:28:01'),(7745,'history','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:27:54'),(7746,'mathematics','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:22'),(7747,'commerce','197.210.70.41',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:24'),(7748,'commerce','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:38'),(7749,'biology','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:27:10'),(7750,'mathematics','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:47'),(7751,'commerce','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:24:39'),(7752,'commerce','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:59','2020-04-09 17:26:44'),(7753,'mathematics','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:25:39'),(7754,'accounting','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:24:41'),(7755,'commerce','197.210.70.53',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:04','2020-04-09 17:24:17'),(7756,'mathematics','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:05','2020-04-09 17:25:37'),(7757,'accounting','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:06','2020-04-09 17:19:01'),(7758,'biology','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:26:47'),(7759,'biology','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:18:58'),(7760,'commerce','197.210.70.109',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:19:01'),(7761,'commerce','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:20:12'),(7762,'accounting','197.210.70.171',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:11','2020-04-09 17:26:47'),(7763,'accounting','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:12','2020-04-09 17:26:40'),(7764,'mathematics','197.210.70.189',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:26:31'),(7765,'englishlit','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:27:13'),(7766,'accounting','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:25:40'),(7767,'accounting','197.210.70.53',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:20:21'),(7768,'biology','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:56'),(7769,'commerce','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:39'),(7770,'accounting','197.210.71.235',319,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:19:25'),(7771,'physics','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:25:59'),(7772,'chemistry','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:19','2020-04-09 17:26:05'),(7773,'accounting','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:26:47'),(7774,'physics','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:19:23'),(7775,'government','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:22','2020-04-09 17:24:50'),(7776,'englishlit','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:24','2020-04-09 17:26:21'),(7777,'physics','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:25','2020-04-09 16:31:21'),(7778,'englishlit','197.210.70.211',398,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 17:27:22'),(7779,'biology','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 16:39:44'),(7780,'government','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 16:40:23'),(7781,'chemistry','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 17:26:09'),(7782,'irk','197.210.71.235',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:29','2020-04-09 17:25:52'),(7783,'englishlit','197.210.70.205',438,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:30','2020-04-09 17:27:13'),(7784,'irk','197.210.70.27',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:19:47'),(7785,'civiledu','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:26:16'),(7786,'civiledu','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 16:34:11'),(7787,'government','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 17:26:23'),(7788,'crk','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:17'),(7789,'civiledu','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:38'),(7790,'geography','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:25:05'),(7791,'government','197.210.70.189',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:27:08'),(7792,'government','197.210.71.79',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:24:48'),(7793,'history','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:36','2020-04-09 16:40:38'),(7794,'currentaffairs','197.210.70.69',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:38','2020-04-09 16:32:06'),(7795,'civiledu','197.210.70.189',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:39','2020-04-09 17:21:04'),(7796,'geography','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:41','2020-04-09 17:27:25'),(7797,'chemistry','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:26:14'),(7798,'irk','197.210.70.239',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:19:59'),(7799,'government','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:24:54'),(7800,'civiledu','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:43','2020-04-09 17:26:17'),(7801,'crk','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:24:50'),(7802,'geography','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:27:23'),(7803,'economics','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:18:37'),(7804,'currentaffairs','197.210.70.225',437,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:21:06'),(7805,'physics','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:59'),(7806,'physics','197.210.70.137',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:55'),(7807,'economics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:47','2020-04-09 17:25:08'),(7808,'crk','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:20:52'),(7809,'geography','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:27:37'),(7810,'irk','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:49','2020-04-09 17:20:45'),(7811,'currentaffairs','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:21:03'),(7812,'government','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:27:14'),(7813,'biology','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:24:31'),(7814,'currentaffairs','197.210.70.121',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:53','2020-04-09 17:27:52'),(7815,'irk','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:34'),(7816,'crk','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:29'),(7817,'economics','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 17:20:58'),(7818,'history','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 16:32:01'),(7819,'crk','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:59','2020-04-09 17:25:00'),(7820,'englishlit','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:24:53'),(7821,'irk','197.210.70.171',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:27:35'),(7822,'crk','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:38:38'),(7823,'history','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:42'),(7824,'insurance','197.210.70.95',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:19:56'),(7825,'geography','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:09'),(7826,'crk','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:33:56'),(7827,'irk','197.210.70.189',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:27:33'),(7828,'insurance','197.210.70.251',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:25:11'),(7829,'civiledu','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:07','2020-04-09 17:20:56'),(7830,'insurance','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 16:34:15'),(7831,'irk','197.210.70.149',176,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 17:27:41'),(7832,'currentaffairs','197.210.70.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 16:40:42'),(7833,'economics','197.210.70.121',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 17:25:07'),(7834,'commerce','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:50'),(7835,'commerce','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:41'),(7836,'crk','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:20:44'),(7837,'chemistry','197.210.70.251',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:05'),(7838,'mathematics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:19:13'),(7839,'englishlit','197.210.71.235',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:07'),(7840,'commerce','197.210.70.137',236,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:26:31'),(7841,'commerce','197.210.71.167',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:24:23'),(7842,'biology','197.210.70.137',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:26:06'),(7843,'mathematics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:20:20'),(7844,'accounting','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:25:53'),(7845,'biology','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:46','2020-04-09 17:26:11'),(7846,'accounting','197.210.70.239',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:26:54'),(7847,'government','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:27:08'),(7848,'physics','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:48','2020-04-09 17:26:05'),(7849,'physics','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:24:29'),(7850,'physics','197.210.71.167',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:19:22'),(7851,'englishlit','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:26:09'),(7852,'physics','197.210.70.149',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:50','2020-04-09 17:26:08'),(7853,'chemistry','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:27:13'),(7854,'geography','197.210.70.137',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:25:02'),(7855,'geography','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:20:50'),(7856,'geography','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:25:06'),(7857,'accounting','197.210.71.11',119,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:20:26'),(7858,'physics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:19:05'),(7859,'chemistry','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:18:26'),(7860,'crk','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 16:39:56'),(7861,'geography','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:25:18'),(7862,'government','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:24:59'),(7863,'economics','197.210.70.217',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:27:25'),(7864,'government','197.210.70.239',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:27:11'),(7865,'economics','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:26:31'),(7866,'irk','197.210.70.1',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:19:46'),(7867,'insurance','197.210.70.225',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 16:40:29'),(7868,'irk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:20:55'),(7869,'economics','197.210.70.183',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:27:43'),(7870,'civiledu','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:58','2020-04-09 17:27:43'),(7871,'currentaffairs','197.210.70.149',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 17:21:04'),(7872,'civiledu','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 16:31:55'),(7873,'history','197.210.70.81',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 16:30:00'),(7874,'civiledu','197.210.70.41',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:27:44'),(7875,'currentaffairs','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:28:03'),(7876,'insurance','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:20:03'),(7877,'economics','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:19:53'),(7878,'irk','197.210.70.95',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:19:52'),(7879,'currentaffairs','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:03'),(7880,'currentaffairs','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:10'),(7881,'history','197.210.70.121',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 16:29:54'),(7882,'insurance','197.210.70.239',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 16:40:27'),(7883,'irk','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 17:27:47'),(7884,'biology','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:19:01'),(7885,'commerce','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:25:59'),(7886,'englishlit','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:56','2020-04-09 16:33:35'),(7887,'physics','197.210.70.115',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:57','2020-04-09 17:26:57'),(7888,'englishlit','197.210.70.53',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:26:09'),(7889,'crk','197.210.70.211',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:14'),(7890,'geography','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:27'),(7891,'crk','197.210.70.27',317,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:27:27'),(7892,'physics','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:20:31'),(7893,'chemistry','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:18:23'),(7894,'biology','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:20:24'),(7895,'economics','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 15:51:41'),(7896,'englishlit','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:27:12'),(7897,'accounting','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:20:23'),(7898,'commerce','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:26:40'),(7899,'chemistry','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:19:34'),(7900,'irk','197.210.70.115',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:27:38'),(7901,'physics','197.210.70.183',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:25:59'),(7902,'accounting','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:00'),(7903,'economics','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:45'),(7904,'government','197.210.70.205',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:04','2020-04-09 17:26:07'),(7905,'crk','197.210.70.225',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 17:27:17'),(7906,'geography','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:40:36'),(7907,'geography','197.210.70.251',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:38:42'),(7908,'insurance','197.210.70.121',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:27:49'),(7909,'englishlit','197.210.70.137',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:26:15'),(7910,'chemistry','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:20:41'),(7911,'economics','197.210.70.109',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 16:40:33'),(7912,'mathematics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 17:26:43'),(7913,'insurance','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 16:40:42'),(7914,'economics','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:27:31'),(7915,'englishlit','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:24:55'),(7916,'irk','197.210.70.109',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:18:37'),(7917,'mathematics','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:25:46'),(7918,'mathematics','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:43'),(7919,'commerce','197.210.70.95',222,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:45'),(7920,'accounting','197.210.70.115',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:21','2020-04-09 17:19:09'),(7921,'biology','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:27:04'),(7922,'commerce','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:26:35'),(7923,'physics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:23','2020-04-09 17:26:48'),(7924,'physics','197.210.70.225',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:24','2020-04-09 17:26:55'),(7925,'irk','197.210.70.137',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:25','2020-04-09 17:27:41'),(7926,'chemistry','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:26','2020-04-09 17:19:10'),(7927,'englishlit','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:24:44'),(7928,'irk','197.210.70.225',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 16:19:11'),(7929,'government','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:26:12'),(7930,'crk','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:28','2020-04-09 17:24:46'),(7931,'englishlit','197.210.70.217',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:24:57'),(7932,'civiledu','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:19:55'),(7933,'government','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:42'),(7934,'englishlit','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:54'),(7935,'civiledu','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:31','2020-04-09 17:18:40'),(7936,'englishlit','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:27:09'),(7937,'geography','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 16:31:42'),(7938,'government','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:25:00'),(7939,'currentaffairs','197.210.70.189',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:33','2020-04-09 17:28:02'),(7940,'insurance','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:34','2020-04-09 17:25:10'),(7941,'insurance','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:27:49'),(7942,'civiledu','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:25'),(7943,'crk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:23'),(7944,'currentaffairs','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:13'),(7945,'geography','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:04'),(7946,'mathematics','197.210.70.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:16','2020-04-09 17:19:16'),(7947,'crk','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:23','2020-04-09 17:27:26'),(7948,'biology','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:25','2020-04-09 17:24:31'),(7949,'chemistry','197.210.70.41',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:26','2020-04-09 17:19:28'),(7950,'physics','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:29','2020-04-09 17:24:35'),(7951,'accounting','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:30','2020-04-09 17:26:46'),(7952,'englishlit','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:33','2020-04-09 17:27:10'),(7953,'englishlit','197.210.70.27',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:34','2020-04-09 17:24:45'),(7954,'geography','197.210.70.189',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:37','2020-04-09 17:25:02'),(7955,'crk','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:41','2020-04-09 17:27:28'),(7956,'economics','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:42','2020-04-09 17:20:52'),(7957,'geography','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:46','2020-04-09 17:27:26'),(7958,'civiledu','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:47','2020-04-09 17:26:19'),(7959,'insurance','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:27:47'),(7960,'insurance','197.210.71.235',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:19:59'),(7961,'currentaffairs','197.210.71.235',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:50','2020-04-09 17:25:28'),(7962,'history','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:05'),(7963,'history','197.210.70.189',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:03'),(7964,'civiledu','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:55','2020-04-09 17:27:40'),(7965,'insurance','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:56','2020-04-09 17:27:32'),(7966,'currentaffairs','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:57','2020-04-09 17:25:24'),(7967,'currentaffairs','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:58','2020-04-09 17:20:07'),(7968,'mathematics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:20:18'),(7969,'biology','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:19:04'),(7970,'physics','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:18','2020-04-09 17:20:28'),(7971,'biology','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:32','2020-04-09 17:26:52'),(7972,'chemistry','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:52','2020-04-09 17:26:57'),(7973,'chemistry','197.210.70.211',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:54','2020-04-09 17:20:38'),(7974,'irk','197.210.71.79',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:04','2020-04-09 17:20:50'),(7975,'civiledu','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:18','2020-04-09 17:21:29'),(7976,'insurance','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:20','2020-04-09 17:18:43'),(7977,'insurance','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:23','2020-04-09 17:27:58'),(7978,'currentaffairs','197.210.70.81',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:28','2020-04-09 17:27:55'),(7979,'currentaffairs','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:31','2020-04-09 17:27:56'),(7980,'government','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:34','2020-04-09 17:24:55'),(7981,'government','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 17:27:26'),(7982,'history','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 16:40:41'),(7983,'accounting','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:38','2020-04-09 17:20:26'),(7984,'history','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:39','2020-04-09 17:20:15'),(7985,'accounting','197.210.70.27',233,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:40','2020-04-09 17:19:23'),(7986,'history','197.210.70.95',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:41','2020-04-09 16:19:47'),(7987,'economics','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:27:56','2020-04-09 17:27:35'),(7988,'chemistry','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:01','2020-04-09 17:27:09'),(7989,'mathematics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:14','2020-04-09 17:25:47'),(7990,'accounting','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:34','2020-04-09 17:20:17'),(7991,'biology','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:35','2020-04-09 17:26:04'),(7992,'biology','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:36','2020-04-09 17:24:26'),(7993,'englishlit','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:45','2020-04-09 17:20:33'),(7994,'chemistry','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:54','2020-04-09 17:19:28'),(7995,'economics','197.210.70.211',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:12','2020-04-09 17:26:24'),(7996,'geography','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:15','2020-04-09 17:27:26'),(7997,'geography','197.210.70.239',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:20','2020-04-09 17:27:32'),(7998,'civiledu','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:28','2020-04-09 17:20:03'),(7999,'government','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:22','2020-04-09 17:27:20'),(8000,'irk','197.210.70.211',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:38','2020-04-09 17:26:26'),(8001,'insurance','197.210.70.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:20:02'),(8002,'history','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:08'),(8003,'history','197.210.70.217',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:07'),(8004,'history','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:47','2020-04-09 17:20:12'),(8005,'history','197.210.70.211',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:52','2020-04-09 17:21:12'),(8006,'history','197.210.70.205',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:55','2020-04-09 17:21:06'),(8007,'commerce','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:09','2020-04-09 17:20:20'),(8008,'physics','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:11','2020-04-09 17:20:37'),(8009,'civiledu','197.210.70.149',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:49','2020-04-09 17:21:00'),(8010,'economics','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:52','2020-04-09 17:20:57'),(8011,'currentaffairs','197.210.70.183',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:09','2020-04-09 17:27:59'),(8012,'history','197.210.70.137',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:13','2020-04-09 16:34:24'),(8013,'crk','197.210.70.137',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:38:31','2020-04-09 17:19:42'),(8014,'accounting','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:39:37','2020-04-09 17:26:43'),(8015,'biology','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:12','2020-04-09 17:27:01'),(8016,'geography','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:28','2020-04-09 17:20:54'),(8017,'insurance','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:33','2020-04-09 17:21:00'),(8018,'economics','197.210.70.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 17:20:44','2020-04-09 17:20:50'),(8019,'civiledu','18.232.76.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:01:19','2020-04-10 02:01:19'),(8020,'economics','3.88.169.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:51:46','2020-04-10 02:51:46'),(8021,'history','3.82.157.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 05:11:10','2020-04-10 05:11:10'),(8022,'mathematics','54.196.241.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 06:19:44','2020-04-10 06:19:44'),(8023,'history','3.88.70.16',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:01:55','2020-04-10 15:25:17'),(8024,'commerce','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8025,'physics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8026,'chemistry','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8027,'englishlit','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:14'),(8028,'crk','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8029,'irk','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:16'),(8030,'currentaffairs','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:17'),(8031,'english','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:14','2020-04-10 15:25:14'),(8032,'geography','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:15','2020-04-10 15:25:15'),(8033,'economics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:16','2020-04-10 15:25:16'),(8034,'commerce','54.89.208.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 17:29:46','2020-04-10 17:29:46'),(8035,'chemistry','197.210.8.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 18:23:00','2020-04-10 18:23:00'),(8036,'crk','35.173.248.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 19:52:55','2020-04-10 19:52:55'),(8037,'chemistry','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:34','2020-04-10 22:44:37'),(8038,'englishlit','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8039,'government','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8040,'geography','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8041,'economics','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8042,'civiledu','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8043,'insurance','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:38','2020-04-10 22:44:38'),(8044,'economics','52.55.93.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 23:42:01','2020-04-10 23:42:01'),(8045,'government','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:41:11','2020-04-11 01:41:11'),(8046,'chemistry','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:45:12','2020-04-11 01:45:12'),(8047,'geography','35.175.184.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 02:56:41','2020-04-11 02:56:41'),(8048,'government','34.224.58.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 04:37:27','2020-04-11 04:37:27'),(8049,'chemistry','116.88.133.110',51,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-11 05:33:06','2020-04-19 15:27:03'),(8050,'economics','3.90.47.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 05:55:15','2020-04-11 05:55:15'),(8051,'english','3.82.203.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 07:21:01','2020-04-11 07:21:01'),(8052,'biology','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8053,'government','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8054,'irk','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:09'),(8055,'civiledu','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:09'),(8056,'insurance','3.80.112.97',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:22:11'),(8057,'currentaffairs','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:10'),(8058,'history','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:10','2020-04-11 08:18:10'),(8059,'crk','54.83.85.175',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:06:53','2020-04-11 12:07:40'),(8060,'englishlit','34.229.42.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:50:10','2020-04-11 12:50:10'),(8061,'english','3.85.102.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 14:35:24','2020-04-11 14:35:24'),(8062,'crk','52.203.28.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 15:29:45','2020-04-11 15:29:45'),(8063,'crk','3.81.73.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 18:10:31','2020-04-11 18:10:31'),(8064,'commerce','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8065,'accounting','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8066,'physics','54.175.255.15',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 02:11:02'),(8067,'englishlit','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:20'),(8068,'government','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8069,'irk','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8070,'currentaffairs','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8071,'english','54.175.255.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 02:31:32','2020-04-12 02:31:32'),(8072,'currentaffairs','18.206.125.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 08:03:24','2020-04-12 08:03:24'),(8073,'mathematics','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8074,'mathematics','197.210.53.31',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:17'),(8075,'english','197.210.53.138',219,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 17:58:35'),(8076,'commerce','197.210.53.223',76,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:19'),(8077,'mathematics','197.210.53.138',290,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:36'),(8078,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8079,'english','197.210.53.31',62,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8080,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8081,'mathematics','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:31:54'),(8082,'mathematics','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8083,'english','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8084,'commerce','197.210.53.138',259,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:40'),(8085,'english','197.210.53.232',75,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:52'),(8086,'english','197.210.53.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8087,'commerce','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8088,'accounting','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8089,'currentaffairs','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:40'),(8090,'history','197.210.53.232',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8091,'civiledu','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8092,'history','197.210.53.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8093,'history','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8094,'currentaffairs','197.210.52.179',142,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8095,'civiledu','197.210.52.179',163,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8096,'history','197.210.52.170',110,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8097,'history','197.210.52.179',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:43'),(8098,'accounting','197.210.53.138',234,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-30 18:08:11'),(8099,'insurance','197.210.52.170',143,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:42'),(8100,'accounting','197.210.53.232',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:31:01'),(8101,'commerce','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:18','2020-04-12 13:30:55'),(8102,'biology','197.210.53.138',185,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:21','2020-04-30 17:57:35'),(8103,'physics','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:23'),(8104,'physics','197.210.53.138',234,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:49'),(8105,'mathematics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:52'),(8106,'accounting','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:52'),(8107,'biology','197.210.53.223',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:49'),(8108,'biology','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:24'),(8109,'physics','197.210.53.223',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:53'),(8110,'physics','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8111,'government','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8112,'englishlit','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:30'),(8113,'englishlit','197.210.53.138',160,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:15'),(8114,'physics','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8115,'englishlit','197.210.53.232',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:32'),(8116,'chemistry','197.210.53.138',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:53'),(8117,'government','197.210.53.138',182,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:57:07'),(8118,'chemistry','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:33'),(8119,'biology','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8120,'chemistry','197.210.53.232',111,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:25','2020-04-12 13:19:31'),(8121,'englishlit','197.210.52.170',122,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:30'),(8122,'chemistry','197.210.53.223',75,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:31'),(8123,'government','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:30'),(8124,'government','197.210.53.223',77,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:32'),(8125,'crk','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:30'),(8126,'government','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:30:56'),(8127,'crk','197.210.53.223',109,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:34'),(8128,'crk','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:35'),(8129,'geography','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:33'),(8130,'economics','197.210.53.138',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 17:58:26'),(8131,'geography','197.210.53.138',179,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 18:08:29'),(8132,'economics','197.210.53.223',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-12 13:19:39'),(8133,'crk','197.210.53.138',296,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-30 18:13:36'),(8134,'geography','197.210.53.31',71,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:32','2020-04-12 13:19:36'),(8135,'irk','197.210.53.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:36'),(8136,'irk','197.210.52.179',98,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:38'),(8137,'irk','197.210.52.170',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:30:47'),(8138,'economics','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:41'),(8139,'geography','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8140,'economics','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:37'),(8141,'irk','197.210.53.31',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8142,'economics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:41'),(8143,'civiledu','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:39'),(8144,'irk','197.210.53.223',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:37'),(8145,'civiledu','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:31:53'),(8146,'insurance','197.210.53.31',130,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:40'),(8147,'currentaffairs','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:31:54'),(8148,'currentaffairs','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:19:39'),(8149,'insurance','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:37','2020-04-12 13:19:40'),(8150,'currentaffairs','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:39','2020-04-12 13:19:42'),(8151,'crk','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:47','2020-04-12 13:30:50'),(8152,'commerce','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:53','2020-04-12 13:31:38'),(8153,'englishlit','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:58','2020-04-12 13:31:01'),(8154,'chemistry','197.210.52.106',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 16:15:11','2020-04-12 16:15:17'),(8155,'chemistry','105.112.50.114',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:16:45','2020-04-12 16:22:27'),(8156,'accounting','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8157,'crk','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8158,'history','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8159,'government','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8160,'commerce','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8161,'geography','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8162,'physics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8163,'biology','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8164,'englishlit','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8165,'economics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8166,'biology','34.224.87.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 03:38:22','2020-04-13 03:38:22'),(8167,'accounting','54.162.182.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 07:00:45','2020-04-13 07:00:45'),(8168,'chemistry','154.118.48.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 08:54:43','2020-04-13 08:54:59'),(8169,'chemistry','41.217.88.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 09:03:00','2020-04-13 09:03:00'),(8170,'chemistry','54.36.149.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:40:53','2020-04-13 23:40:53'),(8171,'chemistry','54.36.148.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:51:04','2020-04-13 23:51:04'),(8172,'chemistry','54.36.148.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:59:53','2020-04-13 23:59:53'),(8173,'chemistry','54.36.148.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:02:02','2020-04-14 00:02:02'),(8174,'chemistry','54.36.148.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:04:51','2020-04-14 00:04:52'),(8175,'insurance','54.166.10.181',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-14 00:24:25','2020-04-20 18:30:46'),(8176,'mathematics','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:41:23','2020-04-14 05:41:23'),(8177,'chemistry','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:48:13','2020-04-14 05:48:13'),(8178,'accounting','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:48','2020-04-14 09:01:50'),(8179,'physics','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:50','2020-04-14 09:01:50'),(8180,'chemistry','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8181,'englishlit','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8182,'civiledu','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8183,'currentaffairs','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8184,'history','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8185,'geography','18.206.240.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 10:07:05','2020-04-14 10:11:06'),(8186,'physics','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:00:35','2020-04-14 16:00:35'),(8187,'englishlit','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:37:56','2020-04-14 16:37:56'),(8188,'geography','18.206.195.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 17:01:28','2020-04-14 17:01:28'),(8189,'chemistry','217.146.176.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 18:42:57','2020-04-14 18:42:58'),(8190,'currentaffairs','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 20:54:30','2020-04-14 20:54:30'),(8191,'mathematics','54.163.208.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 00:52:55','2020-04-15 00:52:55'),(8192,'geography','100.26.52.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 01:58:43','2020-04-15 01:58:43'),(8193,'physics','34.235.149.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 02:45:09','2020-04-15 02:45:09'),(8194,'mathematics','3.87.134.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 03:39:42','2020-04-15 03:39:42'),(8195,'mathematics','34.201.57.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 04:44:44','2020-04-15 04:44:44'),(8196,'accounting','3.84.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 06:20:10','2020-04-15 06:20:10'),(8197,'chemistry','197.210.53.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:40:42','2020-04-15 10:40:43'),(8198,'chemistry','197.210.52.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:42:02','2020-04-15 10:42:02'),(8199,'insurance','52.91.233.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 15:29:09','2020-04-15 15:29:09'),(8200,'civiledu','54.242.136.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 17:12:47','2020-04-15 17:12:47'),(8201,'accounting','3.94.112.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 18:27:15','2020-04-15 18:55:50'),(8202,'history','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 19:09:02','2020-04-15 19:09:02'),(8203,'english','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8204,'commerce','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8205,'accounting','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8206,'government','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8207,'geography','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8208,'economics','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8209,'insurance','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8210,'mathematics','3.85.212.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 02:18:36','2020-04-16 02:18:36'),(8211,'economics','18.234.50.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 12:59:34','2020-04-16 12:59:34'),(8212,'history','18.215.157.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 13:52:47','2020-04-16 13:52:47'),(8213,'chemistry','197.210.44.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:42','2020-04-16 18:43:09'),(8214,'chemistry','197.210.64.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:58','2020-04-16 18:42:58'),(8215,'chemistry','197.210.65.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:43:29','2020-04-16 18:43:29'),(8216,'chemistry','197.210.47.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:44:34','2020-04-16 18:44:34'),(8217,'chemistry','197.210.64.155',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:45:46','2020-04-16 18:45:48'),(8218,'crk','3.87.156.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 22:43:05','2020-04-16 22:43:05'),(8219,'commerce','18.207.198.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:03:48','2020-04-17 02:03:48'),(8220,'commerce','54.237.135.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:41:43','2020-04-17 02:41:43'),(8221,'physics','66.249.88.30',50,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-20 17:05:28'),(8222,'physics','66.249.81.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-17 08:08:43'),(8223,'physics','41.144.89.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:44','2020-04-17 08:08:46'),(8224,'economics','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:53:39','2020-04-17 08:53:39'),(8225,'geography','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:14:00','2020-04-17 09:14:00'),(8226,'government','18.206.205.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:56:27','2020-04-17 10:02:57'),(8227,'chemistry','18.206.205.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 10:01:34','2020-04-17 10:01:34'),(8228,'commerce','3.83.68.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 11:09:10','2020-04-17 11:09:10'),(8229,'chemistry','197.210.60.237',244,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 12:26:25','2020-04-17 12:32:16'),(8230,'economics','18.212.205.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 13:09:33','2020-04-17 13:09:33'),(8231,'chemistry','207.46.13.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 15:19:30','2020-04-17 15:19:30'),(8232,'english','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 16:39:41','2020-04-17 16:39:41'),(8233,'englishlit','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:10:38','2020-04-17 17:10:38'),(8234,'insurance','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:26:22','2020-04-17 17:26:22'),(8235,'crk','18.234.121.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 18:20:42','2020-04-17 18:20:42'),(8236,'chemistry','197.210.84.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 20:34:57','2020-04-17 20:34:57'),(8237,'crk','3.92.82.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 22:15:16','2020-04-17 22:15:16'),(8238,'physics','18.234.86.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 03:54:15','2020-04-18 03:54:15'),(8239,'currentaffairs','100.27.24.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 06:16:30','2020-04-18 06:16:30'),(8240,'crk','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:33:36','2020-04-18 07:33:36'),(8241,'englishlit','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:34:50','2020-04-18 07:34:50'),(8242,'english','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:35:39','2020-04-18 07:35:39'),(8243,'englishlit','107.23.21.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 08:31:03','2020-04-18 08:31:03'),(8244,'biology','3.93.151.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 11:56:02','2020-04-18 11:56:02'),(8245,'english','197.210.45.162',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 14:25:05','2020-04-18 14:25:07'),(8246,'currentaffairs','52.201.218.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 15:20:26','2020-04-18 15:20:26'),(8247,'economics','54.208.89.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:02:52','2020-04-18 18:02:52'),(8248,'chemistry','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:03'),(8249,'english','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:04'),(8250,'chemistry','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8251,'english','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8252,'english','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8253,'chemistry','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8254,'english','197.210.47.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:30:57','2020-04-18 18:31:00'),(8255,'chemistry','197.210.47.50',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8256,'english','197.210.47.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8257,'mathematics','197.210.47.209',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8258,'physics','197.210.47.182',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8259,'biology','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8260,'accounting','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8261,'english','197.210.65.39',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:34:12'),(8262,'commerce','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8263,'english','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8264,'accounting','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8265,'commerce','197.210.65.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8266,'biology','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8267,'biology','197.210.64.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:12'),(8268,'accounting','197.210.64.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8269,'commerce','197.210.47.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8270,'irk','197.210.47.117',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:50'),(8271,'english','197.210.47.142',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8272,'economics','197.210.47.112',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8273,'geography','197.210.47.125',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:34:50','2020-04-18 18:34:52'),(8274,'civiledu','197.210.47.139',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8275,'english','197.210.64.74',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8276,'insurance','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8277,'currentaffairs','197.210.47.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:59','2020-04-18 18:57:01'),(8278,'economics','197.210.64.116',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8279,'english','197.210.47.248',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8280,'irk','197.210.47.33',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:15','2020-04-18 19:01:17'),(8281,'civiledu','197.210.47.240',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:18','2020-04-18 19:01:20'),(8282,'mathematics','197.210.65.174',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8283,'english','197.210.65.168',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8284,'biology','197.210.65.164',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8285,'commerce','197.210.65.181',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8286,'english','197.210.47.9',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:07','2020-04-18 19:03:09'),(8287,'mathematics','197.210.47.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8288,'biology','197.210.47.19',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8289,'accounting','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8290,'english','197.210.65.0',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8291,'irk','197.210.64.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:25'),(8292,'civiledu','197.210.65.126',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8293,'economics','197.210.65.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8294,'biology','197.210.65.15',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8295,'accounting','197.210.65.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8296,'english','197.210.65.11',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8297,'commerce','197.210.65.26',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8298,'accounting','197.210.64.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8299,'mathematics','197.210.64.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8300,'english','197.210.47.101',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8301,'commerce','197.210.47.108',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8302,'biology','197.210.65.132',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:37'),(8303,'english','197.210.47.62',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:12:53'),(8304,'accounting','197.210.47.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:38'),(8305,'physics','197.210.47.32',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:36','2020-04-18 19:09:38'),(8306,'civiledu','197.210.64.42',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8307,'english','197.210.65.69',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8308,'insurance','197.210.65.75',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8309,'irk','197.210.65.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:30','2020-04-18 19:11:31'),(8310,'physics','197.210.47.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8311,'biology','197.210.47.56',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8312,'chemistry','197.210.47.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:52','2020-04-18 19:12:55'),(8313,'english','197.210.64.106',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8314,'government','197.210.65.97',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8315,'chemistry','197.210.65.99',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8316,'englishlit','197.210.64.37',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8317,'english','197.210.65.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8318,'biology','197.210.65.196',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8319,'accounting','197.210.65.206',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8320,'commerce','197.210.65.198',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8321,'physics','197.210.64.111',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:07'),(8322,'english','197.210.64.140',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8323,'englishlit','197.210.64.82',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8324,'chemistry','197.210.64.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:07','2020-04-18 19:56:10'),(8325,'english','197.210.65.23',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:35','2020-04-18 19:56:38'),(8326,'englishlit','197.210.64.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:37','2020-04-18 19:56:39'),(8327,'government','197.210.47.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:38','2020-04-18 19:56:40'),(8328,'chemistry','197.210.65.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:39','2020-04-18 19:56:41'),(8329,'mathematics','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8330,'accounting','197.210.47.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8331,'biology','197.210.65.134',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8332,'english','197.210.64.213',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8333,'english','197.210.65.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8334,'commerce','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8335,'mathematics','197.210.64.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8336,'irk','197.210.65.92',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:17','2020-04-18 19:59:19'),(8337,'accounting','3.208.18.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 06:23:07','2020-04-19 06:23:07'),(8338,'chemistry','40.77.167.36',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 07:38:38','2020-04-19 16:13:18'),(8339,'mathematics','105.112.179.226',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:23'),(8340,'accounting','105.112.179.226',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:52:55'),(8341,'government','105.112.179.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 11:58:19'),(8342,'english','105.112.179.226',480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:24'),(8343,'physics','105.112.179.226',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:55:09'),(8344,'biology','105.112.179.226',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:57:24'),(8345,'commerce','105.112.179.226',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:05:08','2020-04-19 12:57:24'),(8346,'chemistry','105.112.179.226',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:48:05','2020-04-19 12:55:09'),(8347,'chemistry','105.112.22.76',49,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:16:51','2020-04-19 13:26:58'),(8348,'biology','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:23:32','2020-04-19 13:23:33'),(8349,'mathematics','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:28:01','2020-04-19 13:28:01');\nINSERT INTO `api_call_ip_address` VALUES (8350,'mathematics','197.210.45.45',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:23:32'),(8351,'english','197.210.45.45',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8352,'commerce','197.210.45.45',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8353,'accounting','197.210.45.45',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8354,'english','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8355,'mathematics','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8356,'accounting','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8357,'commerce','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8358,'commerce','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8359,'accounting','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8360,'english','197.210.63.48',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:43:25'),(8361,'mathematics','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8362,'history','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8363,'currentaffairs','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8364,'insurance','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8365,'government','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8366,'crk','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8367,'geography','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8368,'history','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8369,'currentaffairs','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8370,'insurance','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8371,'english','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8372,'currentaffairs','197.210.45.45',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:11:15'),(8373,'insurance','197.210.45.45',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8374,'history','197.210.45.45',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8375,'chemistry','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8376,'physics','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8377,'biology','197.210.45.45',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:13:01','2020-04-19 19:24:58'),(8378,'mathematics','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8379,'chemistry','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:31:55'),(8380,'physics','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8381,'english','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8382,'biology','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:17:47','2020-04-19 21:17:49'),(8383,'english','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8384,'accounting','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8385,'englishlit','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8386,'economics','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8387,'civiledu','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8388,'insurance','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8389,'history','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8390,'currentaffairs','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:34:27','2020-04-19 21:34:29'),(8391,'chemistry','54.36.150.129',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:45:45','2020-04-19 22:45:45'),(8392,'chemistry','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:47:37'),(8393,'physics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8394,'mathematics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8395,'english','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8396,'biology','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:54:25','2020-04-19 22:54:27'),(8397,'chemistry','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8398,'physics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8399,'mathematics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8400,'english','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8401,'physics','3.93.200.226',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 00:55:26','2020-04-20 01:33:19'),(8402,'history','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:07:59','2020-04-20 01:07:59'),(8403,'currentaffairs','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:20:29','2020-04-20 01:20:29'),(8404,'englishlit','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:46:52','2020-04-20 01:46:52'),(8405,'chemistry','54.85.179.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:14:11','2020-04-20 03:14:11'),(8406,'english','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8407,'history','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8408,'insurance','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8409,'currentaffairs','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8410,'english','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8411,'biology','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:53:43'),(8412,'commerce','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8413,'accounting','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8414,'mathematics','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:56:26','2020-08-02 12:18:16'),(8415,'mathematics','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 04:11:00','2020-04-20 04:11:00'),(8416,'geography','3.92.207.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 06:39:01','2020-04-20 06:39:01'),(8417,'geography','3.80.247.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 07:47:21','2020-04-20 07:47:21'),(8418,'biology','218.26.54.96',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 09:58:41','2020-04-20 09:58:42'),(8419,'physics','3.90.203.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 11:17:13','2020-04-20 11:17:13'),(8420,'geography','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:08:33','2020-04-20 12:08:33'),(8421,'englishlit','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:30:06','2020-04-20 12:30:06'),(8422,'civiledu','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8423,'english','197.210.8.224',720,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 14:29:47'),(8424,'insurance','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8425,'currentaffairs','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8426,'chemistry','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8427,'mathematics','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8428,'physics','197.210.8.224',680,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8429,'commerce','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8430,'biology','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8431,'currentaffairs','54.145.65.159',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:05:19','2020-04-20 14:05:19'),(8432,'chemistry','54.36.148.196',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:35:15','2020-04-20 14:35:15'),(8433,'biology','66.249.83.204',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:44:36','2020-04-20 14:44:37'),(8434,'chemistry','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:50:33'),(8435,'english','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8436,'mathematics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8437,'physics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8438,'commerce','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:52:12','2020-04-20 14:52:14'),(8439,'chemistry','102.89.0.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 18:20:36','2020-04-20 18:20:36'),(8440,'chemistry','102.89.0.10',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:21:01','2020-04-20 18:24:58'),(8441,'physics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8442,'mathematics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8443,'english','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:58'),(8444,'physics','54.166.10.181',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:55:28','2020-04-20 18:55:28'),(8445,'mathematics','35.153.167.2',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 20:10:20','2020-04-20 20:10:20'),(8446,'mathematics','52.91.67.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 23:39:22','2020-04-20 23:39:22'),(8447,'physics','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8448,'chemistry','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8449,'english','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8450,'mathematics','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8451,'accounting','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8452,'biology','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8453,'chemistry','105.112.182.146',64,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:25:58','2020-04-21 19:28:52'),(8454,'biology','105.112.182.146',147,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:31:52','2020-04-21 20:02:15'),(8455,'physics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:00:51','2020-04-21 18:36:52'),(8456,'chemistry','197.210.64.120',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:02:51','2020-04-21 10:02:53'),(8457,'history','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8458,'currentaffairs','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8459,'english','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8460,'insurance','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8461,'commerce','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:24','2020-04-21 19:24:43'),(8462,'mathematics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:33','2020-04-21 18:43:38'),(8463,'chemistry','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8464,'english','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8465,'mathematics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8466,'physics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8467,'mathematics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8468,'english','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8469,'physics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8470,'chemistry','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8471,'chemistry','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8472,'mathematics','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8473,'english','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8474,'commerce','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8475,'english','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8476,'mathematics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8477,'physics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8478,'chemistry','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8479,'english','105.112.182.146',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:29','2020-04-21 11:08:28'),(8480,'chemistry','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8481,'english','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8482,'physics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8483,'mathematics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8484,'english','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8485,'mathematics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8486,'biology','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8487,'physics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8488,'chemistry','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8489,'mathematics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8490,'physics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8491,'english','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8492,'english','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8493,'englishlit','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8494,'physics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8495,'mathematics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8496,'mathematics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8497,'physics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8498,'english','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8499,'chemistry','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8500,'physics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8501,'mathematics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8502,'english','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8503,'chemistry','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8504,'physics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8505,'english','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8506,'chemistry','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8507,'mathematics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8508,'physics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8509,'english','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8510,'mathematics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8511,'mathematics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8512,'physics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8513,'english','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8514,'chemistry','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8515,'mathematics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8516,'english','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8517,'chemistry','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8518,'physics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8519,'mathematics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8520,'physics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8521,'chemistry','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:58'),(8522,'english','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8523,'english','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8524,'physics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8525,'chemistry','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8526,'mathematics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8527,'physics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8528,'mathematics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8529,'chemistry','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8530,'english','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8531,'englishlit','41.80.21.184',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:46:19','2020-04-21 11:46:21'),(8532,'chemistry','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8533,'mathematics','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8534,'biology','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8535,'english','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8536,'mathematics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8537,'chemistry','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8538,'physics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8539,'english','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8540,'accounting','105.112.182.146',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:21:36','2020-04-21 19:33:14'),(8541,'mathematics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8542,'english','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8543,'chemistry','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8544,'physics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8545,'english','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8546,'mathematics','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8547,'biology','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8548,'commerce','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8549,'physics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8550,'chemistry','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8551,'english','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8552,'mathematics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8553,'chemistry','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8554,'mathematics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8555,'english','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8556,'physics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8557,'history','54.242.239.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 14:06:07','2020-04-21 14:06:07'),(8558,'government','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 15:55:50','2020-04-21 15:55:51'),(8559,'history','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 16:23:43','2020-04-21 16:23:43'),(8560,'chemistry','197.210.28.55',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 18:02:59','2020-04-21 18:03:01'),(8561,'mathematics','3.81.94.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 19:58:20','2020-04-21 19:58:20'),(8562,'biology','105.112.18.128',77,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:18:41','2020-04-21 23:24:00'),(8563,'physics','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:18:53','2020-04-21 23:00:17'),(8564,'accounting','105.112.18.128',42,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:35:26','2020-04-21 23:10:50'),(8565,'chemistry','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:37:37','2020-04-21 20:58:32'),(8566,'mathematics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8567,'chemistry','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8568,'english','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:14'),(8569,'physics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8570,'english','102.89.1.175',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:09:09','2020-04-21 21:42:43'),(8571,'english','102.89.1.91',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:10:02','2020-04-21 21:25:29'),(8572,'english','102.89.0.89',20,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:11:30','2020-04-21 21:11:32'),(8573,'chemistry','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8574,'mathematics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8575,'physics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8576,'chemistry','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8577,'english','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8578,'mathematics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8579,'physics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8580,'chemistry','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:07','2020-04-21 21:42:43'),(8581,'physics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8582,'mathematics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8583,'commerce','105.112.18.128',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 22:04:53','2020-04-21 22:49:43'),(8584,'mathematics','105.112.18.128',7,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 22:27:23','2020-04-21 22:27:24'),(8585,'english','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8586,'irk','102.89.1.102',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8587,'insurance','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8588,'civiledu','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8589,'geography','105.112.18.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:32:29','2020-04-21 23:32:29'),(8590,'mathematics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8591,'physics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8592,'english','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8593,'chemistry','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8594,'physics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8595,'mathematics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8596,'english','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8597,'biology','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8598,'insurance','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:44','2020-04-21 23:46:47'),(8599,'english','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8600,'chemistry','197.210.46.117',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-05-25 11:18:27'),(8601,'geography','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8602,'history','52.207.122.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:21:54','2020-04-22 06:21:54'),(8603,'chemistry','102.89.2.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:27:13','2020-04-22 06:27:13'),(8604,'mathematics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8605,'english','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8606,'physics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8607,'chemistry','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8608,'biology','105.112.28.69',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 08:37:38','2020-04-22 09:14:05'),(8609,'physics','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:37:13','2020-04-22 11:01:24'),(8610,'biology','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:45:01','2020-04-22 10:48:10'),(8611,'accounting','105.112.31.149',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:07:02','2020-04-22 10:07:52'),(8612,'economics','105.112.31.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:16:04','2020-04-22 10:16:05'),(8613,'biology','105.112.30.170',28,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 11:06:24','2020-04-22 12:40:53'),(8614,'accounting','105.112.30.170',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 11:33:34','2020-04-22 11:59:20'),(8615,'chemistry','41.190.12.66',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:15:54','2020-04-22 12:17:36'),(8616,'biology','41.190.12.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:16:26','2020-04-22 12:18:01'),(8617,'chemistry','105.112.176.19',468,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 12:22:58','2020-04-22 12:30:38'),(8618,'chemistry','41.190.12.130',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:35:57','2020-04-22 12:39:25'),(8619,'biology','41.190.12.130',9,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:37:06','2020-04-22 12:41:42'),(8620,'english','41.190.12.130',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:39:46','2020-04-22 12:43:48'),(8621,'insurance','197.210.84.226',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:37:40','2020-04-22 13:37:42'),(8622,'insurance','197.210.84.190',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:40:05','2020-04-22 13:40:07'),(8623,'chemistry','54.82.80.108',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 14:30:16','2020-04-22 14:30:16'),(8624,'crk','34.229.173.152',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:15:56','2020-04-22 16:15:56'),(8625,'physics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8626,'english','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8627,'chemistry','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8628,'mathematics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8629,'biology','105.112.183.159',84,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:46:06','2020-04-22 22:39:25'),(8630,'accounting','105.112.183.159',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:48:17','2020-04-22 22:31:08'),(8631,'english','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:13:11','2020-04-22 18:13:11'),(8632,'commerce','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:34:19','2020-04-22 18:34:19'),(8633,'currentaffairs','3.94.91.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:10:02','2020-04-22 19:10:02'),(8634,'chemistry','105.112.183.159',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:38:14','2020-04-22 19:41:59'),(8635,'chemistry','157.55.39.45',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:52:26','2020-04-22 19:52:27'),(8636,'physics','105.112.183.159',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 21:25:48','2020-04-22 22:40:27'),(8637,'economics','54.166.255.13',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 22:23:41','2020-04-22 22:23:41'),(8638,'commerce','105.112.183.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 23:09:25','2020-04-22 23:09:26'),(8639,'chemistry','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:00:28','2020-04-23 00:00:28'),(8640,'government','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:24:21','2020-04-23 00:24:21'),(8641,'mathematics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:39:20','2020-04-23 01:39:20'),(8642,'government','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:47:47','2020-04-23 01:47:47'),(8643,'economics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:48:36','2020-04-23 01:48:36'),(8644,'geography','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:36:53','2020-04-23 02:36:53'),(8645,'commerce','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:53:38','2020-04-23 02:53:38'),(8646,'chemistry','105.112.61.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:54:52','2020-04-23 02:54:52'),(8647,'insurance','54.86.197.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 06:26:13','2020-04-23 06:26:13'),(8648,'crk','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:16:42','2020-04-23 10:16:42'),(8649,'englishlit','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:34:38','2020-04-23 10:34:38'),(8650,'english','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 11:05:41','2020-04-23 11:05:41'),(8651,'biology','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8652,'mathematics','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8653,'crk','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8654,'english','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8655,'civiledu','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8656,'economics','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8657,'crk','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 14:30:55','2020-04-23 14:30:55'),(8658,'biology','54.224.0.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 17:35:04','2020-04-23 17:35:04'),(8659,'chemistry','40.77.167.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 19:39:50','2020-04-23 19:39:50'),(8660,'physics','54.174.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:04:30','2020-04-23 22:04:30'),(8661,'englishlit','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:50:05','2020-04-23 22:50:05'),(8662,'currentaffairs','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 23:11:05','2020-04-23 23:11:05'),(8663,'crk','18.234.95.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 00:49:03','2020-04-24 00:49:03'),(8664,'chemistry','102.134.114.129',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 01:33:54','2020-04-24 01:38:52'),(8665,'englishlit','54.209.127.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 02:15:39','2020-04-24 02:15:39'),(8666,'english','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:17:39','2020-04-24 03:17:39'),(8667,'government','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:43:50','2020-04-24 03:43:50'),(8668,'chemistry','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 04:48:11','2020-04-24 04:48:11'),(8669,'economics','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 05:19:42','2020-04-24 05:19:42'),(8670,'mathematics','54.196.250.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 08:15:48','2020-04-24 08:15:48'),(8671,'insurance','3.82.47.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 09:43:06','2020-04-24 09:43:06'),(8672,'civiledu','100.24.31.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:26:45','2020-04-24 10:26:45'),(8673,'mathematics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8674,'commerce','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8675,'biology','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8676,'chemistry','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:08'),(8677,'government','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8678,'geography','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8679,'economics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8680,'physics','188.164.100.205',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:39:15','2020-04-24 10:39:17'),(8681,'chemistry','35.171.2.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 14:25:12','2020-04-24 14:25:12'),(8682,'mathematics','54.145.214.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 17:31:43','2020-04-24 17:31:43'),(8683,'chemistry','54.36.148.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 18:06:18','2020-04-24 18:06:18'),(8684,'accounting','34.239.139.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 23:10:31','2020-04-24 23:10:31'),(8685,'chemistry','54.227.8.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 01:51:07','2020-04-25 01:51:07'),(8686,'chemistry','105.112.47.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 04:58:07','2020-04-25 04:58:07'),(8687,'mathematics','34.204.43.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 05:02:06','2020-04-25 05:02:06'),(8688,'currentaffairs','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:33:21','2020-04-25 06:33:21'),(8689,'biology','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:58:18','2020-04-25 06:58:18'),(8690,'english','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:13','2020-04-25 07:02:13'),(8691,'commerce','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:32','2020-04-25 07:02:32'),(8692,'geography','54.162.26.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 08:14:44','2020-04-25 08:14:44'),(8693,'biology','41.190.31.157',123,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 14:18:38','2020-04-25 15:45:29'),(8694,'english','41.190.31.157',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:19:08','2020-04-25 15:19:08'),(8695,'chemistry','41.190.31.157',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:34:32','2020-04-25 15:49:01'),(8696,'mathematics','18.207.244.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:00:51','2020-04-25 19:00:51'),(8697,'geography','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:43:51','2020-04-25 19:43:51'),(8698,'chemistry','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 20:00:20','2020-04-25 20:00:20'),(8699,'geography','54.196.233.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 22:34:56','2020-04-25 22:34:56'),(8700,'geography','54.226.23.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 23:54:11','2020-04-25 23:54:11'),(8701,'physics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:34:21','2020-04-26 03:34:21'),(8702,'englishlit','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:46:24','2020-04-26 03:46:24'),(8703,'english','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:15:25','2020-04-26 04:15:25'),(8704,'geography','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:21:18','2020-04-26 04:21:18'),(8705,'economics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:38:52','2020-04-26 04:38:52'),(8706,'currentaffairs','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 05:01:46','2020-04-26 05:01:46'),(8707,'crk','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:37:57','2020-04-26 07:37:57'),(8708,'geography','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:39:49','2020-04-26 07:39:49'),(8709,'englishlit','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:24:17','2020-04-26 08:24:17'),(8710,'commerce','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:32:11','2020-04-26 08:32:11'),(8711,'biology','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:36:32','2020-04-26 08:36:32'),(8712,'mathematics','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:08:49','2020-04-26 09:08:49'),(8713,'english','34.207.68.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:44:24','2020-04-26 09:44:24'),(8714,'mathematics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:12:46','2020-04-26 11:12:46'),(8715,'physics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:15:20','2020-04-26 11:15:20'),(8716,'crk','54.152.233.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 12:24:21','2020-04-26 12:24:21'),(8717,'mathematics','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:36:48','2020-04-26 14:36:48'),(8718,'biology','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:55:09','2020-04-26 14:55:09'),(8719,'economics','18.215.246.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 21:05:56','2020-04-26 21:05:56'),(8720,'mathematics','3.81.151.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 01:31:08','2020-04-27 01:31:08'),(8721,'biology','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:05','2020-04-27 02:58:05'),(8722,'chemistry','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:38','2020-04-27 02:58:38'),(8723,'accounting','34.235.166.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 03:48:21','2020-04-27 03:48:21'),(8724,'history','54.224.76.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 05:14:17','2020-04-27 05:14:17'),(8725,'chemistry','52.201.249.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 08:03:17','2020-04-27 08:03:17'),(8726,'biology','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8727,'physics','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8728,'crk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8729,'geography','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8730,'irk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8731,'insurance','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8732,'history','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8733,'chemistry','54.234.116.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:51'),(8734,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8735,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8736,'government','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:13:02','2020-04-27 10:13:02'),(8737,'physics','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:23:37','2020-04-27 11:23:37'),(8738,'commerce','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:41:20','2020-04-27 11:41:20'),(8739,'chemistry','99.7.238.16',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:37:52','2020-04-27 13:42:57'),(8740,'physics','99.7.238.16',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:43:03','2020-04-27 13:43:03'),(8741,'chemistry','77.88.5.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:54:22','2020-04-27 13:54:22'),(8742,'biology','3.88.17.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:37:10','2020-04-27 14:37:10'),(8743,'mathematics','197.210.8.233',680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:44:44','2020-04-27 15:08:49'),(8744,'chemistry','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8745,'english','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8746,'physics','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8747,'economics','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:20:06','2020-04-27 20:20:06'),(8748,'commerce','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:39:52','2020-04-27 20:39:52'),(8749,'history','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:49:28','2020-04-27 20:49:28'),(8750,'government','107.21.137.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 02:38:07','2020-04-28 02:38:07'),(8751,'commerce','3.95.203.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 05:37:46','2020-04-28 05:37:46'),(8752,'crk','3.91.54.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:01:44','2020-04-28 07:01:44'),(8753,'geography','18.212.75.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:55:58','2020-04-28 07:55:58'),(8754,'physics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8755,'english','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8756,'mathematics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8757,'chemistry','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8758,'chemistry','196.222.104.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:11:38','2020-04-28 10:21:09'),(8759,'physics','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8760,'chemistry','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8761,'crk','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8762,'geography','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8763,'economics','18.209.104.117',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 11:04:14'),(8764,'currentaffairs','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8765,'history','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8766,'economics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:46:56','2020-04-28 11:46:56'),(8767,'english','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:47:28','2020-04-28 11:47:28'),(8768,'commerce','105.112.70.76',56,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:08:02','2020-04-28 13:10:12'),(8769,'accounting','105.112.70.76',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:11:44','2020-04-28 13:22:13'),(8770,'biology','105.112.70.76',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:29:15','2020-04-28 12:29:15'),(8771,'government','3.84.75.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 13:46:11','2020-04-28 13:46:11'),(8772,'economics','3.80.87.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 14:32:49','2020-04-28 14:32:49'),(8773,'physics','54.210.29.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:28:17','2020-04-28 15:28:17'),(8774,'insurance','197.210.227.65',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:30:30','2020-04-28 16:09:26'),(8775,'insurance','197.210.227.77',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:32:37','2020-04-28 15:41:11'),(8776,'accounting','197.210.227.77',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:38:20','2020-04-28 16:20:02'),(8777,'insurance','197.210.227.25',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:43:40','2020-04-28 17:43:09'),(8778,'insurance','197.210.226.63',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:02:54','2020-04-28 17:36:29'),(8779,'insurance','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:05:09','2020-04-28 16:05:11'),(8780,'englishlit','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:47','2020-04-28 16:07:49'),(8781,'government','197.210.227.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:51','2020-04-28 16:07:53'),(8782,'currentaffairs','197.210.226.63',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:54','2020-04-28 17:56:54'),(8783,'economics','197.210.227.25',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:58','2020-04-28 17:33:39'),(8784,'geography','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:02','2020-04-28 16:20:19'),(8785,'english','197.210.227.25',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:06','2020-04-28 17:57:58'),(8786,'mathematics','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:09','2020-04-28 16:09:56'),(8787,'commerce','197.210.227.25',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:13','2020-04-28 17:33:53'),(8788,'biology','197.210.227.25',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:17','2020-04-28 17:44:06'),(8789,'physics','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:20','2020-04-28 16:10:08'),(8790,'crk','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:28','2020-04-28 16:10:15'),(8791,'history','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:32','2020-04-28 16:08:35'),(8792,'irk','197.210.227.233',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:36','2020-04-28 16:08:38'),(8793,'civiledu','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:39','2020-04-28 17:47:22'),(8794,'accounting','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:28','2020-04-28 16:09:30'),(8795,'englishlit','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:32','2020-04-28 16:09:34'),(8796,'government','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:35','2020-04-28 16:09:38'),(8797,'currentaffairs','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:39','2020-04-28 16:09:41'),(8798,'economics','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:42','2020-04-28 16:09:45'),(8799,'geography','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:46','2020-04-28 16:09:48'),(8800,'english','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:50','2020-04-28 16:09:52'),(8801,'commerce','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:58','2020-04-28 16:10:00'),(8802,'biology','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:02','2020-04-28 16:10:04'),(8803,'chemistry','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:09','2020-04-28 16:10:12'),(8804,'history','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:17','2020-04-28 16:10:19'),(8805,'irk','197.210.226.63',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:20','2020-04-28 16:10:22'),(8806,'civiledu','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:23','2020-04-28 16:10:25'),(8807,'government','3.80.238.158',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:15:49','2020-04-28 16:15:49'),(8808,'englishlit','197.210.226.63',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:03','2020-04-28 17:41:09'),(8809,'government','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:06','2020-04-28 17:56:50'),(8810,'currentaffairs','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:10','2020-04-28 17:46:35'),(8811,'economics','197.210.226.63',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:14','2020-04-28 17:45:40'),(8812,'mathematics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:24','2020-04-28 17:46:51'),(8813,'physics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:35','2020-04-28 17:47:04'),(8814,'chemistry','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:40','2020-04-28 17:47:08'),(8815,'crk','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:45','2020-04-28 17:47:11'),(8816,'history','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:49','2020-04-28 16:20:51'),(8817,'irk','197.210.227.77',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:04','2020-04-28 16:21:05'),(8818,'civiledu','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:07','2020-04-28 16:21:10'),(8819,'geography','3.93.153.210',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:54:50','2020-04-28 17:00:53'),(8820,'accounting','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:23','2020-04-28 17:47:35'),(8821,'englishlit','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:26','2020-04-28 17:47:39'),(8822,'government','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:30','2020-04-28 17:46:31'),(8823,'currentaffairs','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:33','2020-04-28 17:36:51'),(8824,'geography','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:41','2020-04-28 17:33:43'),(8825,'mathematics','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:48','2020-04-28 17:33:50'),(8826,'chemistry','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:02','2020-04-28 17:39:24'),(8827,'history','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:09','2020-04-28 17:47:15'),(8828,'irk','197.210.227.25',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:13','2020-04-28 17:44:24'),(8829,'civiledu','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:15','2020-04-28 17:56:36'),(8830,'insurance','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:24','2020-04-28 17:55:24'),(8831,'accounting','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:28','2020-04-28 17:44:57'),(8832,'government','197.210.227.122',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:36','2020-04-28 17:45:31'),(8833,'currentaffairs','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:39','2020-04-28 17:55:39'),(8834,'economics','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:43','2020-04-28 17:49:01'),(8835,'geography','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:47','2020-04-28 17:47:55'),(8836,'english','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:50','2020-04-28 17:47:59'),(8837,'insurance','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:54','2020-04-28 17:56:39'),(8838,'accounting','197.210.226.66',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:58','2020-04-28 17:55:28'),(8839,'englishlit','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:02','2020-04-28 17:56:46'),(8840,'geography','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:17','2020-04-28 17:46:43'),(8841,'accounting','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:30','2020-04-28 17:43:13'),(8842,'economics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:52','2020-04-28 17:36:54'),(8843,'geography','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:56','2020-04-28 17:57:18'),(8844,'commerce','197.210.227.96',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:24','2020-04-28 17:46:56'),(8845,'crk','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:39','2020-04-28 17:37:41'),(8846,'irk','197.210.227.1',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:46','2020-04-28 17:47:19'),(8847,'geography','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:55','2020-04-28 17:49:05'),(8848,'english','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:58','2020-04-28 17:55:52'),(8849,'mathematics','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:07','2020-04-28 17:55:55'),(8850,'commerce','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:11','2020-04-28 17:39:13'),(8851,'biology','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:14','2020-04-28 17:39:17'),(8852,'physics','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:18','2020-04-28 17:56:07'),(8853,'crk','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:25','2020-04-28 17:39:27'),(8854,'history','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:28','2020-04-28 17:56:28'),(8855,'irk','197.210.226.66',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:32','2020-04-28 17:56:32'),(8856,'insurance','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:40:58','2020-04-28 17:46:20'),(8857,'government','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:41:11','2020-04-28 17:48:52'),(8858,'currentaffairs','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:35','2020-04-28 17:47:47'),(8859,'economics','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:38','2020-04-28 17:57:01'),(8860,'geography','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:42','2020-04-28 17:43:44'),(8861,'physics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:07','2020-04-28 17:44:09'),(8862,'crk','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:14','2020-04-28 17:48:22'),(8863,'history','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:18','2020-04-28 17:44:21'),(8864,'civiledu','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:25','2020-04-28 17:44:44'),(8865,'englishlit','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:45:04','2020-04-28 17:45:06'),(8866,'english','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:44','2020-04-28 17:46:47'),(8867,'biology','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:57','2020-04-28 17:56:03'),(8868,'insurance','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:47:29','2020-04-28 17:47:32'),(8869,'mathematics','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:00','2020-04-28 17:48:03'),(8870,'commerce','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:05','2020-04-28 17:48:07'),(8871,'biology','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:08','2020-04-28 17:48:11'),(8872,'chemistry','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:16','2020-04-28 17:48:19'),(8873,'history','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:24','2020-04-28 17:48:27'),(8874,'englishlit','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:29','2020-04-28 17:55:32'),(8875,'government','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:33','2020-04-28 17:55:35'),(8876,'economics','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:41','2020-04-28 17:55:44'),(8877,'commerce','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:56','2020-04-28 17:55:59'),(8878,'chemistry','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:08','2020-04-28 17:56:10'),(8879,'crk','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:22','2020-04-28 17:56:24'),(8880,'accounting','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:41','2020-04-28 17:56:43'),(8881,'government','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:16','2020-04-28 18:02:16'),(8882,'commerce','105.112.16.71',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:49','2020-04-28 18:02:49'),(8883,'biology','105.112.16.71',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:06:21','2020-04-28 18:11:14'),(8884,'english','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:20:03','2020-04-28 18:20:03'),(8885,'commerce','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:32:41','2020-04-28 18:32:41'),(8886,'accounting','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:33:53','2020-04-28 18:33:53'),(8887,'biology','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:55:42','2020-04-28 18:55:42'),(8888,'history','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:58:00','2020-04-28 18:58:00'),(8889,'chemistry','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:04:13','2020-04-28 19:04:13'),(8890,'chemistry','41.217.104.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:28:12','2020-04-28 19:28:26'),(8891,'economics','35.175.150.1',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 20:02:33','2020-04-28 20:02:33'),(8892,'commerce','52.23.234.72',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:03:58','2020-04-28 21:03:58'),(8893,'commerce','105.112.176.198',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:35:39','2020-04-28 22:06:40'),(8894,'biology','105.112.176.198',21,'','NG','','Lagos',NULL,NULL,'','','2020-04-28 21:49:14','2020-04-28 23:16:53'),(8895,'accounting','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:07:36','2020-04-28 22:07:37'),(8896,'mathematics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:15:12','2020-04-28 22:15:12'),(8897,'physics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:19:21','2020-04-28 22:19:21'),(8898,'government','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:21:48','2020-04-28 22:21:48'),(8899,'insurance','34.229.212.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 23:55:04','2020-04-28 23:55:04'),(8900,'english','35.170.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 01:09:28','2020-04-29 01:09:28'),(8901,'crk','54.204.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 02:49:37','2020-04-29 02:49:37'),(8902,'crk','34.229.217.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 08:41:40','2020-04-29 08:41:40'),(8903,'chemistry','52.54.222.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 09:31:21','2020-04-29 09:31:21'),(8904,'physics','3.86.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 11:56:45','2020-04-29 11:56:45'),(8905,'english','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:13:54','2020-04-29 14:13:54'),(8906,'currentaffairs','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:28:47','2020-04-29 14:28:47'),(8907,'crk','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 16:51:12','2020-04-29 16:51:12'),(8908,'mathematics','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:19:40','2020-04-29 17:19:40'),(8909,'biology','105.112.176.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:26:33','2020-04-29 18:09:50'),(8910,'commerce','105.112.176.237',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:29:23','2020-04-29 18:01:40'),(8911,'englishlit','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:42:30','2020-04-29 17:42:30'),(8912,'accounting','105.112.176.237',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:02:58','2020-04-29 18:02:58'),(8913,'biology','105.112.179.192',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:33:15','2020-04-29 19:16:31'),(8914,'currentaffairs','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:36:50','2020-04-29 18:36:50'),(8915,'economics','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:47:33','2020-04-29 18:47:33'),(8916,'physics','105.112.179.192',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:05:41','2020-04-29 19:30:14'),(8917,'englishlit','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:09:49','2020-04-29 19:09:49'),(8918,'mathematics','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:10:38','2020-04-29 19:10:38'),(8919,'commerce','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:41:21','2020-04-29 19:41:21'),(8920,'chemistry','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:58:11','2020-04-29 19:58:11'),(8921,'government','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:21:57','2020-04-29 20:21:57'),(8922,'commerce','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:18','2020-04-29 20:27:18'),(8923,'commerce','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:44','2020-04-29 20:27:44'),(8924,'english','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:28:17','2020-04-29 21:37:09'),(8925,'biology','105.112.24.82',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:47:45','2020-04-29 22:13:57'),(8926,'government','3.87.44.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:09:09','2020-04-29 21:09:09'),(8927,'accounting','105.112.24.82',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:11:05','2020-04-29 22:06:33'),(8928,'mathematics','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:43','2020-04-29 21:59:17'),(8929,'physics','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:54','2020-04-29 21:36:55'),(8930,'chemistry','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 22:39:32','2020-04-29 22:39:32'),(8931,'chemistry','54.36.148.219',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 23:51:25','2020-04-29 23:51:25'),(8932,'chemistry','54.36.148.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:02:17','2020-04-30 00:02:17'),(8933,'chemistry','54.36.148.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:13:27','2020-04-30 00:13:27'),(8934,'physics','3.95.148.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:16:11','2020-04-30 00:16:11'),(8935,'chemistry','54.36.148.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:24:14','2020-04-30 00:24:14'),(8936,'chemistry','54.36.148.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:57:32','2020-04-30 00:57:32'),(8937,'chemistry','54.36.148.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 01:26:38','2020-04-30 01:26:38'),(8938,'english','3.83.49.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 04:59:57','2020-04-30 04:59:57'),(8939,'physics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 11:48:10','2020-04-30 11:48:12'),(8940,'mathematics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:14:32','2020-04-30 12:14:35'),(8941,'accounting','3.90.113.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:48:25','2020-04-30 12:48:25'),(8942,'geography','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:50:57','2020-04-30 12:50:59'),(8943,'commerce','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:51:24','2020-04-30 12:51:26'),(8944,'physics','54.167.205.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 13:29:15','2020-04-30 13:29:15'),(8945,'insurance','54.160.135.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 16:43:16','2020-04-30 16:43:16'),(8946,'chemistry','157.55.39.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:40:23','2020-04-30 17:40:23'),(8947,'insurance','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:56:54','2020-04-30 17:59:10'),(8948,'currentaffairs','197.210.53.138',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:10','2020-04-30 18:08:22'),(8949,'economics','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:15','2020-04-30 17:59:31'),(8950,'geography','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:18','2020-04-30 18:00:52'),(8951,'english','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:22','2020-04-30 17:59:44'),(8952,'commerce','197.210.53.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:29','2020-04-30 17:57:31'),(8953,'physics','197.210.52.197',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:39','2020-04-30 18:01:14'),(8954,'history','197.210.53.151',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:53','2020-04-30 18:13:42'),(8955,'irk','197.210.53.138',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:58','2020-04-30 18:13:47'),(8956,'civiledu','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:01','2020-04-30 17:59:07'),(8957,'insurance','197.210.52.197',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:05','2020-04-30 17:58:07'),(8958,'government','197.210.53.151',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:16','2020-04-30 17:58:18'),(8959,'currentaffairs','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:20','2020-04-30 17:58:22'),(8960,'geography','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:28','2020-04-30 17:58:31'),(8961,'biology','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:43','2020-04-30 17:58:46'),(8962,'physics','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:47','2020-04-30 18:08:48'),(8963,'irk','197.210.52.31',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:01','2020-04-30 18:01:32'),(8964,'accounting','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:12','2020-04-30 17:59:14'),(8965,'englishlit','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:15','2020-04-30 18:12:52'),(8966,'government','197.210.52.67',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:19','2020-04-30 18:12:56'),(8967,'currentaffairs','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:23','2020-04-30 18:10:46'),(8968,'geography','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:37','2020-04-30 17:59:39'),(8969,'mathematics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:46','2020-04-30 18:01:00'),(8970,'commerce','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:51','2020-04-30 17:59:53'),(8971,'biology','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:56','2020-04-30 18:08:45'),(8972,'chemistry','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:07','2020-04-30 18:00:09'),(8973,'crk','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:11','2020-04-30 18:00:13'),(8974,'history','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:16','2020-04-30 18:11:26'),(8975,'irk','197.210.52.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:20','2020-04-30 18:00:21'),(8976,'civiledu','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:22','2020-04-30 18:00:25'),(8977,'insurance','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:26','2020-04-30 18:10:30'),(8978,'accounting','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:30','2020-04-30 18:10:34'),(8979,'englishlit','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:34','2020-04-30 18:10:38'),(8980,'government','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:38','2020-04-30 18:00:40'),(8981,'currentaffairs','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:42','2020-04-30 18:12:59'),(8982,'economics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:46','2020-04-30 18:13:04'),(8983,'english','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:54','2020-04-30 18:00:56'),(8984,'commerce','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:03','2020-04-30 18:13:19'),(8985,'biology','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:07','2020-04-30 18:11:09'),(8986,'chemistry','197.210.52.197',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:16','2020-04-30 18:13:31'),(8987,'crk','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:21','2020-04-30 18:01:23'),(8988,'civiledu','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:34','2020-04-30 18:01:36'),(8989,'insurance','197.210.52.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:05','2020-04-30 18:12:44'),(8990,'englishlit','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:12','2020-04-30 18:08:15'),(8991,'government','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:16','2020-04-30 18:08:18'),(8992,'economics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:24','2020-04-30 18:10:50'),(8993,'english','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:31','2020-04-30 18:08:33'),(8994,'chemistry','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:50','2020-04-30 18:08:52'),(8995,'history','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:56','2020-04-30 18:08:59'),(8996,'irk','197.210.52.197',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:00','2020-04-30 18:09:02'),(8997,'civiledu','197.210.53.138',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:03','2020-04-30 18:13:51'),(8998,'geography','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:52','2020-04-30 18:10:54'),(8999,'english','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:56','2020-04-30 18:10:58'),(9000,'mathematics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:59','2020-04-30 18:13:16'),(9001,'commerce','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:03','2020-04-30 18:11:05'),(9002,'physics','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:11','2020-04-30 18:11:14'),(9003,'crk','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:20','2020-04-30 18:11:22'),(9004,'irk','197.210.53.91',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:28','2020-04-30 18:11:29'),(9005,'civiledu','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:31','2020-04-30 18:11:33'),(9006,'accounting','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:12:46','2020-04-30 18:12:48'),(9007,'geography','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:05','2020-04-30 18:13:08'),(9008,'english','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:09','2020-04-30 18:13:12'),(9009,'biology','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:21','2020-04-30 18:13:23'),(9010,'physics','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:25','2020-04-30 18:13:28'),(9011,'chemistry','129.205.113.173',4,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:44:54','2020-04-30 18:51:44'),(9012,'chemistry','40.77.167.109',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 19:59:37','2020-04-30 19:59:37'),(9013,'chemistry','18.212.194.164',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 22:59:35','2020-04-30 22:59:35'),(9014,'mathematics','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:52:42','2020-04-30 23:52:43'),(9015,'chemistry','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:32','2020-04-30 23:58:33'),(9016,'biology','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:49','2020-04-30 23:58:50'),(9017,'physics','197.210.63.5',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9018,'mathematics','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9019,'chemistry','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9020,'english','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9021,'english','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9022,'accounting','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9023,'chemistry','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9024,'government','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9025,'economics','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:09'),(9026,'irk','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9027,'civiledu','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9028,'chemistry','54.152.163.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 06:38:44','2020-05-01 06:38:44'),(9029,'civiledu','54.85.192.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 07:42:44','2020-05-01 07:42:44'),(9030,'chemistry','50.66.43.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 08:44:35','2020-05-01 08:44:35'),(9031,'accounting','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:23:43','2020-05-01 09:23:45'),(9032,'biology','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:26:39','2020-05-01 09:26:41'),(9033,'chemistry','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:28:41','2020-05-01 09:28:43'),(9034,'commerce','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:31:07','2020-05-01 09:31:09'),(9035,'geography','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:32:07','2020-05-01 09:32:09'),(9036,'government','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:33:07','2020-05-01 09:33:09'),(9037,'englishlit','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:34:23','2020-05-01 09:34:25'),(9038,'english','3.92.79.199',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:35:10','2020-05-01 09:36:06'),(9039,'physics','54.197.3.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:32','2020-05-01 09:36:32'),(9040,'history','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:45','2020-05-01 09:36:47'),(9041,'physics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:37:23','2020-05-01 09:37:25'),(9042,'crk','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:02','2020-05-01 09:38:04'),(9043,'irk','3.92.79.199',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:36','2020-05-01 09:38:37'),(9044,'mathematics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:40:07','2020-05-01 09:40:09'),(9045,'civiledu','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:44:20','2020-05-01 09:44:22'),(9046,'insurance','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:45:12','2020-05-01 09:45:14'),(9047,'mathematics','18.212.127.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 10:27:34','2020-05-01 10:27:34'),(9048,'chemistry','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 11:53:35','2020-05-01 11:53:35'),(9049,'civiledu','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:07:15','2020-05-01 12:07:15'),(9050,'geography','35.171.18.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:48:39','2020-05-01 12:48:39'),(9051,'accounting','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 13:58:07','2020-05-01 15:50:39'),(9052,'english','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:12:28','2020-05-01 15:32:24'),(9053,'government','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:27:18','2020-05-01 15:42:41'),(9054,'geography','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:34:50','2020-05-01 14:34:50'),(9055,'irk','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:40:41','2020-05-01 15:22:36'),(9056,'economics','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:52:00','2020-05-01 15:03:28'),(9057,'chemistry','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:13:35','2020-05-01 15:13:35'),(9058,'civiledu','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:59:12','2020-05-01 15:59:12'),(9059,'physics','54.147.40.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 17:31:20','2020-05-01 17:31:20'),(9060,'englishlit','3.80.145.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:30:32','2020-05-01 18:30:32'),(9061,'geography','3.81.84.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:59:33','2020-05-01 18:59:33'),(9062,'mathematics','54.152.182.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 19:39:12','2020-05-01 19:39:12'),(9063,'currentaffairs','54.147.140.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 20:19:55','2020-05-01 20:46:03'),(9064,'mathematics','18.232.86.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 01:07:21','2020-05-02 01:07:21'),(9065,'physics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 02:21:54','2020-05-02 02:21:54'),(9066,'mathematics','54.159.74.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 05:28:06','2020-05-02 05:28:06'),(9067,'mathematics','3.95.199.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 11:49:15','2020-05-02 11:49:54'),(9068,'geography','54.160.152.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 12:51:05','2020-05-02 12:51:05'),(9069,'accounting','54.242.134.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 13:44:35','2020-05-02 13:44:35'),(9070,'civiledu','54.80.130.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 14:38:04','2020-05-02 14:38:04'),(9071,'insurance','34.227.221.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 16:37:38','2020-05-02 16:37:38'),(9072,'chemistry','34.226.155.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 17:58:23','2020-05-02 18:51:09'),(9073,'history','34.226.155.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 18:31:23','2020-05-02 18:31:23'),(9074,'mathematics','54.166.138.44',41,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-02 21:12:05','2020-05-03 16:51:28'),(9075,'english','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:19','2020-05-02 21:57:19'),(9076,'commerce','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9077,'physics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9078,'geography','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9079,'economics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9080,'civiledu','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9081,'insurance','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9082,'chemistry','3.83.147.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 22:48:32','2020-05-02 22:48:32'),(9083,'currentaffairs','107.21.76.29',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:19:42','2020-05-03 05:43:14'),(9084,'mathematics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:23:15','2020-05-03 05:35:39'),(9085,'commerce','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:24:10','2020-05-03 05:36:03'),(9086,'accounting','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:18','2020-05-03 05:36:47'),(9087,'biology','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:59','2020-05-03 05:37:26'),(9088,'physics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:26:47','2020-05-03 05:38:06'),(9089,'chemistry','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:27:25','2020-05-03 05:38:29'),(9090,'englishlit','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:16','2020-05-03 05:38:53'),(9091,'government','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:51','2020-05-03 05:39:37'),(9092,'crk','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:29:36','2020-05-03 05:40:00'),(9093,'geography','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:30:23','2020-05-03 05:40:40'),(9094,'economics','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:07','2020-05-03 05:41:19'),(9095,'irk','107.21.76.29',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:39','2020-05-03 05:41:43'),(9096,'civiledu','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:32:21','2020-05-03 05:42:07'),(9097,'insurance','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:33:00','2020-05-03 05:42:48'),(9098,'history','107.21.76.29',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:34:12','2020-05-03 05:44:29'),(9099,'english','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:17'),(9100,'mathematics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:16'),(9101,'commerce','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9102,'biology','3.83.109.40',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9103,'englishlit','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9104,'accounting','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9105,'crk','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9106,'currentaffairs','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9107,'physics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9108,'economics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9109,'history','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9110,'government','3.83.55.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:34:46','2020-05-03 09:34:46'),(9111,'economics','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9112,'english','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:36'),(9113,'commerce','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9114,'accounting','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9115,'geography','54.235.52.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 11:00:21','2020-05-03 11:00:21'),(9116,'commerce','54.146.7.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 12:56:31','2020-05-03 12:56:31'),(9117,'economics','54.91.125.121',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 15:12:25','2020-05-03 15:12:25'),(9118,'mathematics','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:18:04','2020-05-03 16:18:04'),(9119,'englishlit','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:19:28','2020-05-03 16:19:28'),(9120,'commerce','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:02','2020-05-03 16:52:05'),(9121,'accounting','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:26','2020-05-03 16:52:28'),(9122,'biology','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:51','2020-05-03 16:52:53'),(9123,'physics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:53:34','2020-05-03 16:53:36'),(9124,'chemistry','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:00','2020-05-03 16:54:02'),(9125,'englishlit','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:48','2020-05-03 16:54:51'),(9126,'government','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:55:31','2020-05-03 16:55:34'),(9127,'crk','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:56:11','2020-05-03 16:56:13'),(9128,'geography','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:04','2020-05-03 16:57:06'),(9129,'economics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:24','2020-05-03 16:57:26'),(9130,'irk','54.166.138.44',30,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:51','2020-05-03 16:57:53'),(9131,'civiledu','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:17','2020-05-03 16:58:19'),(9132,'insurance','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:58','2020-05-03 16:59:00'),(9133,'currentaffairs','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:59:20','2020-05-03 16:59:22'),(9134,'history','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:00:11','2020-05-03 17:50:17'),(9135,'mathematics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:10','2020-05-03 17:43:43'),(9136,'commerce','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:38','2020-05-03 17:44:06'),(9137,'accounting','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:04','2020-05-03 17:44:35'),(9138,'biology','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:28','2020-05-03 17:44:59'),(9139,'physics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:59','2020-05-03 17:45:22'),(9140,'chemistry','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:03:27','2020-05-03 17:45:51'),(9141,'englishlit','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:02','2020-05-03 17:46:17'),(9142,'crk','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:28','2020-05-03 17:47:18'),(9143,'government','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:57','2020-05-03 17:46:53'),(9144,'geography','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:27','2020-05-03 17:47:43'),(9145,'economics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:55','2020-05-03 17:48:08'),(9146,'irk','3.95.205.237',180,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:29','2020-05-03 17:48:30'),(9147,'civiledu','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:57','2020-05-03 17:48:54'),(9148,'insurance','3.95.205.237',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:23','2020-05-03 17:49:18'),(9149,'currentaffairs','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:55','2020-05-03 17:49:38'),(9150,'insurance','18.234.85.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:51:52','2020-05-03 17:51:52'),(9151,'chemistry','54.81.105.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 19:38:19','2020-05-03 19:38:19'),(9152,'civiledu','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:43:29','2020-05-03 19:43:29'),(9153,'englishlit','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:54:13','2020-05-03 19:54:13'),(9154,'chemistry','105.112.115.225',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 20:27:24','2020-05-03 20:27:24'),(9155,'crk','34.233.133.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 21:37:40','2020-05-03 21:37:40'),(9156,'english','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 23:39:58','2020-05-03 23:39:58'),(9157,'crk','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 00:00:14','2020-05-04 00:00:14'),(9158,'english','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9159,'english','34.201.133.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9160,'physics','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9161,'accounting','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9162,'englishlit','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9163,'geography','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9164,'government','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9165,'economics','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9166,'civiledu','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9167,'irk','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9168,'insurance','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9169,'crk','54.146.129.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 04:53:02','2020-05-04 04:53:02'),(9170,'biology','54.82.169.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 05:39:54','2020-05-04 05:39:54'),(9171,'government','18.212.134.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 07:54:46','2020-05-04 07:54:46'),(9172,'chemistry','41.190.3.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 08:37:26','2020-05-04 08:37:29'),(9173,'chemistry','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:07:07','2020-05-04 09:07:07'),(9174,'economics','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:24:40','2020-05-04 09:24:40'),(9175,'mathematics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:05:23','2020-05-04 10:16:55'),(9176,'commerce','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:06:28','2020-05-04 10:17:26'),(9177,'accounting','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:07:00','2020-05-04 10:18:01'),(9178,'biology','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:17','2020-05-04 10:18:33'),(9179,'physics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:52','2020-05-04 10:18:59'),(9180,'chemistry','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:09:47','2020-05-04 10:19:29'),(9181,'chemistry','197.211.53.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:17','2020-05-04 10:10:17'),(9182,'englishlit','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:27','2020-05-04 10:20:35'),(9183,'government','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:11','2020-05-04 10:21:10'),(9184,'crk','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:46','2020-05-04 10:21:49'),(9185,'economics','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:14','2020-05-04 10:22:21'),(9186,'geography','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:42','2020-05-04 10:22:44'),(9187,'irk','54.226.73.173',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:13:40','2020-05-04 10:23:05'),(9188,'civiledu','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:14:36','2020-05-04 10:24:07'),(9189,'insurance','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:05','2020-05-04 10:24:41'),(9190,'currentaffairs','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:37','2020-05-04 10:25:21'),(9191,'history','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:16:05','2020-05-04 10:25:43'),(9192,'physics','34.230.85.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 11:44:10','2020-05-04 11:44:10'),(9193,'englishlit','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 12:53:41','2020-05-04 12:53:41'),(9194,'currentaffairs','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 13:03:08','2020-05-04 13:03:08'),(9195,'english','54.91.147.136',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 13:59:39','2020-05-04 14:10:23'),(9196,'crk','54.167.221.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 16:21:35','2020-05-04 16:21:35'),(9197,'mathematics','34.227.100.151',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 18:01:31','2020-05-04 18:53:32'),(9198,'commerce','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:06','2020-05-04 18:53:59'),(9199,'accounting','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:40','2020-05-04 18:54:21'),(9200,'biology','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:08','2020-05-04 18:54:50'),(9201,'physics','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:52','2020-05-04 18:48:01'),(9202,'chemistry','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:22','2020-05-04 18:55:24'),(9203,'englishlit','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:55','2020-05-04 18:55:50'),(9204,'government','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:06:25','2020-05-04 18:56:46'),(9205,'irk','34.227.100.151',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:05','2020-05-04 18:58:12'),(9206,'geography','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:32','2020-05-04 18:57:53'),(9207,'economics','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:56','2020-05-04 18:57:27'),(9208,'crk','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:08:29','2020-05-04 18:57:05'),(9209,'civiledu','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:22','2020-05-04 18:58:33'),(9210,'insurance','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:52','2020-05-04 18:59:01'),(9211,'currentaffairs','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:10:36','2020-05-04 18:59:20'),(9212,'history','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:11:01','2020-05-04 18:59:44'),(9213,'englishlit','54.91.12.60',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:19:14','2020-05-04 18:19:14'),(9214,'english','34.227.100.151',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:41:22','2020-05-04 18:56:16'),(9215,'chemistry','77.88.5.170',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:43:38','2020-05-04 18:43:38'),(9216,'chemistry','54.90.243.173',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 19:36:36','2020-05-04 19:36:36'),(9217,'economics','18.208.245.55',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 20:24:40','2020-05-04 20:24:40'),(9218,'government','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:34:09','2020-05-04 22:34:09'),(9219,'crk','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:56:00','2020-05-04 22:56:00'),(9220,'english','34.230.41.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 01:39:36','2020-05-05 01:39:36'),(9221,'english','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9222,'biology','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9223,'chemistry','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9224,'government','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9225,'irk','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:53'),(9226,'civiledu','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9227,'insurance','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9228,'currentaffairs','54.82.122.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 15:55:27','2020-05-05 15:55:27'),(9229,'currentaffairs','35.171.182.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 17:52:25','2020-05-05 17:52:25'),(9230,'civiledu','54.162.194.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:44:31','2020-05-05 18:44:31'),(9231,'chemistry','105.112.22.22',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:54:47','2020-05-05 18:55:46'),(9232,'economics','3.81.61.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 20:23:57','2020-05-05 20:23:57'),(9233,'civiledu','34.229.1.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:13:48','2020-05-05 21:13:48'),(9234,'english','35.175.224.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:50:44','2020-05-05 21:50:44'),(9235,'english','66.249.64.72',7,'',NULL,'',NULL,NULL,NULL,'','','2020-05-05 22:53:19','2020-05-05 22:53:19'),(9236,'accounting','3.89.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 23:06:38','2020-05-05 23:06:38'),(9237,'biology','66.249.64.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 04:40:45','2020-05-06 04:40:46'),(9238,'biology','3.82.138.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 11:39:57','2020-05-06 11:39:57'),(9239,'government','54.159.33.148',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 15:34:04','2020-05-06 15:34:04'),(9240,'chemistry','54.36.149.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:24:22','2020-05-06 16:24:22'),(9241,'chemistry','54.36.148.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:28:45','2020-05-06 16:28:45'),(9242,'chemistry','54.36.149.15',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:32:20','2020-05-06 16:32:20'),(9243,'chemistry','105.112.52.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 17:44:03','2020-05-06 17:44:03'),(9244,'government','35.153.179.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:00:30','2020-05-06 18:00:30'),(9245,'crk','107.22.153.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:46:09','2020-05-06 18:46:09'),(9246,'insurance','52.207.168.128',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 20:37:45','2020-05-06 20:37:45'),(9247,'crk','54.152.178.63',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 22:54:07','2020-05-06 22:54:07'),(9248,'chemistry','102.89.2.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 23:18:18','2020-05-06 23:18:18'),(9249,'english','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9250,'commerce','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9251,'chemistry','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9252,'government','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9253,'irk','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9254,'civiledu','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9255,'insurance','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:11'),(9256,'chemistry','197.210.46.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:09:52','2020-05-25 11:09:52'),(9257,'chemistry','197.210.198.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:16:21','2020-05-25 11:16:21'),(9258,'chemistry','197.210.53.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:23:10','2020-05-25 11:23:15'),(9259,'chemistry','157.55.39.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:55:56','2020-05-25 11:55:56'),(9260,'commerce','3.94.205.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:06:49','2020-05-25 12:06:49'),(9261,'economics','54.226.128.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:53:03','2020-05-25 12:53:03'),(9262,'crk','54.91.154.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 14:42:35','2020-05-25 14:42:35'),(9263,'mathematics','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:28:22','2020-05-25 15:28:22'),(9264,'chemistry','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:33:33','2020-05-25 15:33:33'),(9265,'economics','54.91.243.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 17:58:39','2020-05-25 17:58:39'),(9266,'mathematics','66.249.66.136',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:15:02','2020-05-25 19:15:05'),(9267,'chemistry','15.236.101.59',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:49:10','2020-05-25 19:51:59'),(9268,'government','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:08:24','2020-05-25 21:08:24'),(9269,'chemistry','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:16:46','2020-05-25 21:16:46'),(9270,'chemistry','197.210.70.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:21:23','2020-05-25 22:21:23'),(9271,'geography','18.212.164.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:31:38','2020-05-25 22:31:38'),(9272,'government','54.81.15.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 23:48:45','2020-05-25 23:48:45'),(9273,'commerce','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 00:35:21','2020-05-26 00:35:21'),(9274,'economics','34.203.224.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 01:14:02','2020-05-26 01:14:02'),(9275,'crk','18.232.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 02:43:23','2020-05-26 02:43:23'),(9276,'insurance','18.212.41.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 04:09:34','2020-05-26 04:09:34'),(9277,'englishlit','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 06:53:11','2020-05-26 06:53:11'),(9278,'chemistry','41.190.31.41',122,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:00:17','2020-05-26 07:07:55'),(9279,'irk','41.190.31.41',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:09:11','2020-05-26 07:09:13'),(9280,'english','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:27','2020-05-26 07:19:27'),(9281,'english','41.190.31.41',839,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:30','2020-05-26 10:55:38'),(9282,'civiledu','54.159.94.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:11:23','2020-05-26 08:11:23'),(9283,'chemistry','105.112.24.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:25:30','2020-05-26 08:25:30'),(9284,'crk','3.87.153.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 09:29:02','2020-05-26 09:29:02'),(9285,'crk','52.90.24.192',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 11:46:19','2020-05-26 11:46:19'),(9286,'physics','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 21:42:14','2020-05-26 21:42:14'),(9287,'english','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:01:46','2020-05-26 22:01:46'),(9288,'chemistry','197.210.84.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:06:54','2020-05-26 22:09:09'),(9289,'currentaffairs','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:28:46','2020-05-26 23:28:46'),(9290,'englishlit','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:33:46','2020-05-26 23:33:46'),(9291,'englishlit','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 02:53:40','2020-05-27 02:53:40'),(9292,'economics','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 03:19:57','2020-05-27 03:19:57'),(9293,'chemistry','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:08:27','2020-05-27 04:08:27'),(9294,'crk','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:26:11','2020-05-27 04:26:11'),(9295,'insurance','18.209.13.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 05:07:33','2020-05-27 05:07:33'),(9296,'government','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:46:52','2020-05-27 06:46:52'),(9297,'crk','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:59:51','2020-05-27 06:59:51'),(9298,'geography','34.201.141.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 08:25:36','2020-05-27 08:25:36'),(9299,'english','3.84.219.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 10:53:47','2020-05-27 10:53:47'),(9300,'chemistry','169.255.236.30',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:14:45','2020-05-27 11:16:08'),(9301,'chemistry','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:29:07','2020-05-27 12:32:12'),(9302,'physics','41.190.30.150',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:34:30','2020-05-27 12:20:54'),(9303,'economics','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:37:24','2020-05-27 12:37:24'),(9304,'government','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:40:47','2020-05-27 12:23:05'),(9305,'biology','41.190.30.150',79,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:43:55','2020-05-27 12:19:37'),(9306,'biology','34.228.70.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:47:18','2020-05-27 11:47:18'),(9307,'mathematics','41.190.30.150',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:48:42','2020-05-27 12:17:48'),(9308,'english','41.190.30.150',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:50:16','2020-05-27 12:13:47'),(9309,'geography','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:53:34','2020-05-27 12:15:29'),(9310,'history','41.190.30.150',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:57:18','2020-05-27 11:57:22'),(9311,'englishlit','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 12:01:50','2020-05-27 12:07:14'),(9312,'chemistry','34.204.193.85',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 15:13:53','2020-05-27 15:45:24'),(9313,'currentaffairs','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:35:28','2020-05-27 17:35:28'),(9314,'civiledu','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:48:39','2020-05-27 17:48:39'),(9315,'chemistry','41.190.14.68',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:10','2020-05-27 17:54:19'),(9316,'english','41.190.14.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:32','2020-05-27 17:51:35'),(9317,'english','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:17:07','2020-05-27 20:17:07'),(9318,'chemistry','94.130.16.50',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:08','2020-05-27 20:36:12'),(9319,'biology','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:43','2020-05-27 20:33:43'),(9320,'accounting','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:51:21','2020-05-27 20:51:21'),(9321,'chemistry','154.66.36.151',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:46:00','2020-05-27 22:52:44'),(9322,'english','154.66.36.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:48:02','2020-05-27 22:48:02'),(9323,'chemistry','105.112.70.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 23:32:12','2020-05-27 23:32:12'),(9324,'chemistry','157.55.39.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 03:31:42','2020-05-28 03:31:42'),(9325,'english','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:40','2020-05-28 04:32:41'),(9326,'mathematics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9327,'biology','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9328,'economics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9329,'irk','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9330,'insurance','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9331,'history','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9332,'chemistry','196.32.235.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:01:12','2020-05-28 05:01:12'),(9333,'chemistry','129.205.112.224',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:51:40','2020-05-28 05:53:11'),(9334,'mathematics','129.205.112.224',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:55:48','2020-05-28 05:59:02'),(9335,'chemistry','82.145.210.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:57:23','2020-05-28 05:57:23'),(9336,'chemistry','185.26.180.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 07:18:49','2020-05-28 07:18:49'),(9337,'geography','54.196.45.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:04:20','2020-05-28 09:04:20'),(9338,'chemistry','197.210.226.225',105,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:25:44','2020-05-28 10:24:13'),(9339,'chemistry','197.210.226.44',55,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:27:16','2020-05-28 10:22:52'),(9340,'chemistry','197.210.227.211',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:30:21','2020-05-28 10:21:54'),(9341,'english','197.210.227.211',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:54:07','2020-05-28 09:54:10'),(9342,'english','197.210.226.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:55:01','2020-05-28 09:55:04'),(9343,'english','197.210.226.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 10:03:53','2020-05-28 10:09:18'),(9344,'physics','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:10:25','2020-05-28 13:10:25'),(9345,'chemistry','197.210.44.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:26:05','2020-05-28 13:26:05'),(9346,'government','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:29:47','2020-05-28 13:29:47'),(9347,'chemistry','197.210.52.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:54:51','2020-05-28 14:08:36'),(9348,'chemistry','197.210.52.59',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:57:55','2020-05-28 13:57:55'),(9349,'chemistry','197.210.52.25',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:58:05','2020-05-28 13:58:13'),(9350,'chemistry','197.210.52.232',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:06:52','2020-05-28 14:06:55'),(9351,'chemistry','197.210.53.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:08:55','2020-05-28 14:53:41'),(9352,'chemistry','197.210.52.82',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:19:48','2020-05-28 14:54:31'),(9353,'chemistry','197.210.53.190',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:14','2020-05-28 14:53:55'),(9354,'insurance','197.210.53.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:51','2020-05-28 14:49:51'),(9355,'physics','197.210.53.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:50:15','2020-05-28 14:50:15'),(9356,'mathematics','197.210.53.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:51:48','2020-05-28 14:52:01'),(9357,'mathematics','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:34','2020-05-28 14:52:34'),(9358,'english','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:52','2020-05-28 14:52:52'),(9359,'english','197.210.52.82',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:07','2020-05-28 14:53:16'),(9360,'chemistry','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:33','2020-05-28 14:53:33'),(9361,'insurance','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:20:04','2020-05-28 15:20:04'),(9362,'chemistry','129.205.112.208',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:37:00','2020-05-28 15:38:41'),(9363,'crk','18.208.110.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:19:54','2020-05-28 17:19:54'),(9364,'chemistry','129.56.80.227',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:42:36','2020-05-28 17:57:17'),(9365,'chemistry','197.210.226.198',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 18:07:17','2020-05-28 19:14:47'),(9366,'chemistry','197.210.226.91',1562,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:09:38','2020-05-28 20:03:58'),(9367,'chemistry','197.210.226.220',2081,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:11:37','2020-05-28 20:03:48'),(9368,'english','197.210.226.220',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:05:42','2020-05-28 20:15:39'),(9369,'english','197.210.226.91',1080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:06:07','2020-05-28 20:15:26'),(9370,'english','197.210.226.198',2840,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:07:48','2020-05-28 20:15:35'),(9371,'mathematics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:07','2020-05-28 20:23:22'),(9372,'mathematics','197.210.226.91',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:15','2020-05-28 20:25:33'),(9373,'biology','197.210.226.198',1480,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:01','2020-05-28 20:41:32'),(9374,'biology','197.210.226.91',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:14','2020-05-28 20:41:25'),(9375,'civiledu','197.210.226.198',1960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:42:54','2020-05-28 21:07:50'),(9376,'civiledu','197.210.226.91',1560,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:43:16','2020-05-28 21:09:58'),(9377,'civiledu','197.210.226.220',1320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:45:38','2020-05-28 21:10:08'),(9378,'physics','197.210.226.220',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:19','2020-05-28 20:49:51'),(9379,'physics','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:27','2020-05-28 20:49:39'),(9380,'government','197.210.226.91',1400,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:05','2020-05-28 20:57:45'),(9381,'government','197.210.226.220',960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:12','2020-05-28 20:57:41'),(9382,'government','197.210.226.198',1680,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:52:42','2020-05-28 20:56:48'),(9383,'insurance','197.210.226.91',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:58:57','2020-05-28 21:03:46'),(9384,'insurance','197.210.226.220',1360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:59:01','2020-05-28 21:03:58'),(9385,'history','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:48','2020-05-28 21:02:54'),(9386,'history','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:53','2020-05-28 21:02:49'),(9387,'geography','197.210.226.91',760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:05:51','2020-05-28 21:08:55'),(9388,'geography','197.210.226.198',640,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:06:05','2020-05-28 21:07:54'),(9389,'geography','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:07:55','2020-05-28 21:08:51'),(9390,'economics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:09:59','2020-05-28 21:15:23'),(9391,'economics','197.210.226.91',1160,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:15','2020-05-28 21:15:30'),(9392,'economics','197.210.226.198',1720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:42','2020-05-28 21:15:34'),(9393,'commerce','197.210.226.91',1760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:15','2020-05-28 21:17:42'),(9394,'commerce','197.210.226.198',2080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:19','2020-05-28 21:17:46'),(9395,'commerce','197.210.226.220',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:14:56','2020-05-28 21:15:26'),(9396,'geography','3.82.229.138',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 22:59:25','2020-05-28 22:59:25'),(9397,'chemistry','54.36.148.3',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 23:37:10','2020-05-28 23:37:10'),(9398,'chemistry','54.36.148.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:24:10','2020-05-29 00:24:10'),(9399,'chemistry','54.36.148.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:31:09','2020-05-29 00:31:09'),(9400,'geography','54.164.65.241',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:26:22','2020-05-29 01:59:55'),(9401,'economics','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:34:57','2020-05-29 01:34:57'),(9402,'english','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 02:28:56','2020-05-29 02:28:56'),(9403,'mathematics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9404,'biology','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9405,'government','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9406,'geography','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9407,'economics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9408,'currentaffairs','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9409,'history','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9410,'geography','54.164.210.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:31:40','2020-05-29 08:31:40'),(9411,'chemistry','197.210.64.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:43:12','2020-05-29 21:25:53'),(9412,'physics','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:30:46','2020-05-29 09:30:46'),(9413,'englishlit','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:48:29','2020-05-29 09:48:29'),(9414,'biology','3.85.236.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:29:11','2020-05-29 11:29:11'),(9415,'chemistry','34.239.119.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:51:20','2020-05-29 11:51:20'),(9416,'chemistry','185.20.6.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:58:05','2020-05-29 11:58:05'),(9417,'currentaffairs','54.85.98.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 12:25:10','2020-05-29 12:25:10'),(9418,'physics','3.81.136.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 15:59:43','2020-05-29 15:59:43'),(9419,'mathematics','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 16:57:16','2020-05-29 16:57:16'),(9420,'geography','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 17:11:25','2020-05-29 17:11:25'),(9421,'geography','3.86.16.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:01:00','2020-05-29 19:01:00'),(9422,'mathematics','34.229.23.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:42:00','2020-05-29 19:42:00'),(9423,'government','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:04:38','2020-05-29 21:04:38'),(9424,'history','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:37:50','2020-05-29 21:37:50'),(9425,'mathematics','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:09:44','2020-05-29 23:09:44'),(9426,'accounting','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:39:35','2020-05-29 23:39:35'),(9427,'mathematics','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:47'),(9428,'commerce','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:48'),(9429,'accounting','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9430,'biology','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9431,'geography','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9432,'irk','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9433,'currentaffairs','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9434,'accounting','3.89.232.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 08:21:13','2020-05-30 08:21:13'),(9435,'biology','54.208.77.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 11:46:23','2020-05-30 11:46:23'),(9436,'chemistry','144.76.56.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 17:12:22','2020-05-30 17:12:22'),(9437,'accounting','3.94.91.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 18:38:25','2020-05-30 18:38:25'),(9438,'insurance','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 11:49:35','2020-06-01 11:49:35'),(9439,'economics','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 12:10:32','2020-06-01 12:10:32'),(9440,'english','54.159.64.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:04:44','2020-06-01 13:04:44'),(9441,'mathematics','52.2.222.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:49:07','2020-06-01 13:49:07'),(9442,'englishlit','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9443,'crk','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9444,'economics','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:42:44','2020-06-01 14:42:44'),(9445,'crk','54.174.23.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:33:34','2020-06-01 16:33:34'),(9446,'geography','54.174.23.76',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:19','2020-06-01 17:19:55'),(9447,'mathematics','54.174.23.76',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:29','2020-06-01 17:43:19'),(9448,'biology','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9449,'chemistry','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9450,'englishlit','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9451,'government','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9452,'economics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:55','2020-06-01 17:19:55'),(9453,'english','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:18','2020-06-01 17:43:18'),(9454,'accounting','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9455,'physics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9456,'insurance','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:20','2020-06-01 17:43:20'),(9457,'history','3.85.59.140',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 20:12:18','2020-06-01 20:33:55'),(9458,'physics','35.172.115.238',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 23:04:28','2020-06-01 23:04:28'),(9459,'english','54.209.246.16',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 01:03:57','2020-06-02 01:03:57'),(9460,'currentaffairs','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:01:14','2020-06-02 02:01:14'),(9461,'englishlit','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:06:10','2020-06-02 02:06:10'),(9462,'insurance','54.211.248.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 04:46:23','2020-06-02 04:46:23'),(9463,'crk','54.205.222.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 05:30:27','2020-06-02 05:30:27'),(9464,'economics','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:20:56','2020-06-02 06:20:56'),(9465,'chemistry','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:38:36','2020-06-02 06:38:36'),(9466,'englishlit','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 07:02:43','2020-06-02 07:02:43'),(9467,'government','54.196.8.56',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 08:34:31','2020-06-02 08:34:31'),(9468,'geography','54.86.69.81',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 10:40:11','2020-06-02 10:40:11'),(9469,'chemistry','41.190.12.59',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-02 10:55:51','2020-06-02 10:55:54'),(9470,'english','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 12:19:33','2020-06-02 12:19:33'),(9471,'economics','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 23:59:57','2020-06-02 23:59:57'),(9472,'currentaffairs','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 00:22:59','2020-06-03 00:22:59'),(9473,'civiledu','35.173.231.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 02:25:11','2020-06-03 02:25:11'),(9474,'english','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 04:48:53','2020-06-03 05:17:39'),(9475,'accounting','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9476,'government','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9477,'civiledu','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9478,'insurance','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9479,'currentaffairs','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:42'),(9480,'history','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9481,'biology','3.208.9.26',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:51:48','2020-06-03 05:51:48'),(9482,'accounting','3.81.96.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 06:39:27','2020-06-03 06:39:27'),(9483,'economics','34.228.56.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:19:49','2020-06-03 12:19:49'),(9484,'englishlit','34.228.56.210',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:47:48','2020-06-03 12:51:59'),(9485,'mathematics','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9486,'commerce','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9487,'accounting','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9488,'biology','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9489,'englishlit','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9490,'government','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9491,'crk','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9492,'geography','52.91.141.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 18:34:51','2020-06-03 18:34:51'),(9493,'mathematics','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:32','2020-06-03 19:33:45'),(9494,'commerce','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:54','2020-06-03 19:36:09'),(9495,'currentaffairs','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:05','2020-06-03 19:34:05'),(9496,'crk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:11','2020-06-03 19:35:12'),(9497,'chemistry','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:57','2020-06-03 19:36:15'),(9498,'irk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:26','2020-06-03 19:36:00'),(9499,'english','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:36','2020-06-03 19:35:36'),(9500,'englishlit','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:54:43','2020-06-03 19:54:43'),(9501,'government','54.85.212.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 21:33:59','2020-06-03 21:33:59'),(9502,'insurance','3.86.225.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 23:35:47','2020-06-03 23:35:47'),(9503,'crk','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 00:57:31','2020-06-04 00:57:31'),(9504,'physics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:23:50','2020-06-04 06:23:50'),(9505,'mathematics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:34:26','2020-06-04 06:34:26'),(9506,'geography','34.205.74.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 07:10:34','2020-06-04 07:10:34'),(9507,'economics','54.242.18.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 08:36:04','2020-06-04 08:36:04'),(9508,'geography','3.83.161.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:26:27','2020-06-04 10:53:11'),(9509,'english','3.83.161.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:49:32','2020-06-04 10:49:32'),(9510,'mathematics','54.91.240.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 12:15:58','2020-06-04 12:15:58'),(9511,'biology','3.87.239.123',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 15:09:53','2020-06-04 15:09:53'),(9512,'chemistry','41.190.12.5',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-04 15:57:02','2020-06-04 15:57:05'),(9513,'geography','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:22:59','2020-06-04 16:22:59'),(9514,'physics','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:23:13','2020-06-04 16:23:13'),(9515,'englishlit','3.94.109.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:58:33','2020-06-04 16:58:33'),(9516,'currentaffairs','54.159.111.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:11:39','2020-06-04 19:11:39'),(9517,'english','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:37:05','2020-06-04 19:37:08'),(9518,'mathematics','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:44:40','2020-06-04 19:51:52'),(9519,'biology','18.207.247.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:57:06','2020-06-04 19:57:06'),(9520,'physics','54.196.42.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 00:29:32','2020-06-05 00:29:32'),(9521,'geography','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 02:42:52','2020-06-05 02:42:52'),(9522,'government','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:47','2020-06-05 03:06:47'),(9523,'mathematics','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:51','2020-06-05 03:06:51'),(9524,'history','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 07:51:51','2020-06-05 07:51:51'),(9525,'accounting','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 08:06:02','2020-06-05 08:06:02'),(9526,'accounting','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:31','2020-06-05 15:31:38'),(9527,'crk','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:41','2020-06-05 15:31:44'),(9528,'accounting','54.160.137.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 17:41:28','2020-06-05 17:41:28'),(9529,'biology','18.205.22.3',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:49:31','2020-06-05 18:55:02'),(9530,'commerce','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:01','2020-06-05 18:55:02'),(9531,'accounting','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9532,'government','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9533,'economics','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9534,'insurance','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9535,'history','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9536,'history','52.91.27.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 23:09:41','2020-06-05 23:09:41'),(9537,'history','3.85.77.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 01:06:10','2020-06-06 01:06:10'),(9538,'accounting','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:12:01','2020-06-06 03:12:01'),(9539,'chemistry','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:28:00','2020-06-06 03:28:00'),(9540,'irk','3.91.16.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 05:27:37','2020-06-06 05:27:37'),(9541,'english','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9542,'physics','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9543,'englishlit','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9544,'government','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:40'),(9545,'economics','3.90.106.57',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 17:12:22'),(9546,'irk','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9547,'history','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9548,'commerce','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9549,'physics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9550,'chemistry','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9551,'crk','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9552,'economics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9553,'civiledu','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9554,'insurance','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9555,'insurance','52.207.159.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 15:54:55','2020-06-06 15:54:55'),(9556,'economics','52.70.110.33',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 18:01:25','2020-06-06 18:01:25'),(9557,'history','52.90.40.161',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 19:35:54','2020-06-06 20:01:45'),(9558,'accounting','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:44','2020-06-06 20:01:45'),(9559,'biology','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9560,'chemistry','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9561,'crk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9562,'irk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9563,'civiledu','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9564,'history','54.210.221.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 21:37:33','2020-06-06 21:37:33'),(9565,'economics','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:20:46','2020-06-07 00:20:46'),(9566,'englishlit','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:46:15','2020-06-07 00:46:15'),(9567,'english','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9568,'mathematics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9569,'physics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9570,'chemistry','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:16'),(9571,'government','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9572,'crk','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9573,'insurance','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9574,'irk','54.224.8.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 05:20:52','2020-06-07 05:20:52'),(9575,'commerce','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:08:43','2020-06-07 08:08:43'),(9576,'english','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:42:36','2020-06-07 08:42:36'),(9577,'crk','54.221.109.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 10:13:14','2020-06-07 10:13:14'),(9578,'economics','54.225.32.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:34:16','2020-06-07 12:34:16'),(9579,'english','52.72.124.107',400,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:53:32','2020-06-07 13:40:54'),(9580,'government','3.93.176.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 15:19:14','2020-06-07 15:19:14'),(9581,'chemistry','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:21:24','2020-06-07 17:21:24'),(9582,'economics','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:49:48','2020-06-07 17:49:48'),(9583,'government','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:52:13','2020-06-07 17:52:13'),(9584,'geography','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:53:52','2020-06-07 17:53:52'),(9585,'crk','105.112.176.254',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-07 19:15:46','2020-06-07 19:15:48'),(9586,'commerce','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:29:05','2020-06-07 21:29:05'),(9587,'english','54.90.107.82',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:36:38','2020-06-07 22:14:18'),(9588,'insurance','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:52:14','2020-06-07 21:52:14'),(9589,'english','54.83.121.94',680,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 23:24:33','2020-06-08 00:10:20'),(9590,'crk','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 00:57:41','2020-06-08 00:57:41'),(9591,'english','3.80.114.187',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:05:57','2020-06-08 01:07:20'),(9592,'civiledu','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:19:10','2020-06-08 01:19:10'),(9593,'englishlit','54.87.33.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 02:09:25','2020-06-08 02:09:25'),(9594,'english','54.196.250.109',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:14:09','2020-06-08 06:58:08'),(9595,'crk','3.80.171.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:47:50','2020-06-08 07:07:58'),(9596,'english','3.80.171.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:55:00','2020-06-08 06:55:00'),(9597,'english','54.167.101.91',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 13:03:52','2020-06-08 13:05:05'),(9598,'physics','3.95.171.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 15:20:45','2020-06-08 15:20:45'),(9599,'english','52.203.0.65',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 16:36:54','2020-06-08 16:36:54'),(9600,'english','34.201.76.45',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:10:20','2020-06-08 17:17:39'),(9601,'history','34.201.76.45',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:19:47','2020-06-08 17:19:50'),(9602,'englishlit','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:33:25','2020-06-08 17:33:25'),(9603,'currentaffairs','54.204.150.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:27:19','2020-06-08 18:27:19'),(9604,'history','3.87.156.54',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:58:06','2020-06-08 19:42:37'),(9605,'insurance','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:18:35','2020-06-08 20:18:35'),(9606,'crk','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:21:48','2020-06-08 20:21:48'),(9607,'englishlit','18.207.128.248',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:58:53','2020-06-08 20:58:53'),(9608,'chemistry','3.93.176.236',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 21:53:07','2020-06-08 21:53:07'),(9609,'economics','54.82.36.157',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 23:04:51','2020-06-08 23:04:51'),(9610,'government','54.86.240.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:01:33','2020-06-09 00:01:33'),(9611,'crk','3.85.86.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:37:54','2020-06-09 00:37:54'),(9612,'geography','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 02:38:55','2020-06-09 02:38:55'),(9613,'english','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:10:07','2020-06-09 03:10:07'),(9614,'history','3.83.163.75',680,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:12:41','2020-06-09 05:07:42'),(9615,'mathematics','3.83.163.75',320,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:02:16','2020-06-09 04:41:32'),(9616,'english','3.83.163.75',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:41:57','2020-06-09 05:07:46'),(9617,'history','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:33','2020-06-09 10:53:29'),(9618,'english','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:36','2020-06-09 10:53:32'),(9619,'mathematics','52.23.182.126',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 10:54:17','2020-06-09 11:12:18'),(9620,'mathematics','35.175.193.162',1596,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 14:27:00','2020-06-09 16:15:07'),(9621,'economics','54.204.126.52',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 15:24:33','2020-06-09 15:24:33'),(9622,'currentaffairs','54.91.74.154',3,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:21:57','2020-06-09 17:25:11'),(9623,'civiledu','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:24:52','2020-06-09 17:24:52'),(9624,'mathematics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9625,'government','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9626,'crk','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9627,'geography','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9628,'economics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:11'),(9629,'insurance','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:11','2020-06-09 17:25:11'),(9630,'history','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:06','2020-06-09 17:36:08'),(9631,'english','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:09','2020-06-09 17:36:12'),(9632,'history','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:51:30','2020-06-09 17:51:30'),(9633,'english','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 19:54:48','2020-06-09 19:54:48'),(9634,'economics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:09:36','2020-06-09 20:09:36'),(9635,'mathematics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:17:47','2020-06-09 20:17:47'),(9636,'biology','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:20:39','2020-06-09 20:20:39'),(9637,'accounting','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:32:25','2020-06-09 20:32:25'),(9638,'geography','54.175.242.92',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 22:47:17','2020-06-09 22:47:17'),(9639,'mathematics','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9640,'biology','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9641,'chemistry','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9642,'crk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9643,'geography','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:58'),(9644,'irk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9645,'insurance','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9646,'economics','3.94.91.40',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 06:49:53','2020-06-10 06:49:53'),(9647,'english','54.164.250.86',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 07:55:11','2020-06-10 07:55:14'),(9648,'biology','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:01','2020-06-10 10:14:17'),(9649,'english','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:04','2020-06-10 10:14:20'),(9650,'geography','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:43:01','2020-06-10 09:43:01'),(9651,'currentaffairs','34.228.169.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 10:40:47','2020-06-10 10:40:47'),(9652,'physics','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:41','2020-06-10 12:30:40'),(9653,'english','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:51','2020-06-10 12:30:44'),(9654,'physics','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:32:35','2020-06-10 12:32:35'),(9655,'government','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:52:28','2020-06-10 12:52:28'),(9656,'insurance','34.229.159.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 14:58:20','2020-06-10 14:58:20'),(9657,'mathematics','35.173.239.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 15:35:55','2020-06-10 15:35:55'),(9658,'crk','3.86.97.187',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 16:58:01','2020-06-10 16:58:01'),(9659,'history','34.229.88.249',470,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:16','2020-06-10 17:23:26'),(9660,'english','34.229.88.249',482,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:19','2020-06-10 17:23:29'),(9661,'history','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:02','2020-06-10 18:16:04'),(9662,'english','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:05','2020-06-10 18:16:08'),(9663,'mathematics','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:05:59','2020-06-10 22:05:59'),(9664,'geography','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:27:25','2020-06-10 22:27:25'),(9665,'geography','52.72.218.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:19:39','2020-06-11 01:19:39'),(9666,'english','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:59:15','2020-06-11 01:59:15'),(9667,'geography','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 02:27:07','2020-06-11 02:27:07'),(9668,'mathematics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:11:45','2020-06-11 03:11:45'),(9669,'englishlit','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:26:44','2020-06-11 03:26:44'),(9670,'economics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:33:39','2020-06-11 03:33:39'),(9671,'physics','54.237.231.196',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:12:05','2020-06-11 06:34:08'),(9672,'english','54.237.231.196',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:28:30','2020-06-11 06:34:10'),(9673,'geography','54.82.9.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 07:31:00','2020-06-11 07:31:00'),(9674,'physics','34.201.154.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 08:15:39','2020-06-11 08:15:39'),(9675,'englishlit','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:18:15','2020-06-11 09:18:15'),(9676,'currentaffairs','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:53:23','2020-06-11 09:53:23'),(9677,'geography','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 17:57:01','2020-06-11 17:57:01'),(9678,'chemistry','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:07:43','2020-06-11 18:07:43'),(9679,'government','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:18:55','2020-06-11 18:18:55'),(9680,'mathematics','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:29:47','2020-06-11 18:29:47'),(9681,'mathematics','34.204.107.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 20:09:41','2020-06-11 20:09:41'),(9682,'history','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:07:01','2020-06-11 21:07:01'),(9683,'accounting','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:15:15','2020-06-11 21:15:15'),(9684,'mathematics','54.81.240.233',280,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 06:45:16','2020-06-12 07:03:55'),(9685,'mathematics','54.162.119.234',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 07:52:29','2020-06-12 07:54:13'),(9686,'accounting','54.224.233.71',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 08:25:02','2020-06-12 08:25:02'),(9687,'mathematics','34.203.222.37',720,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-12 09:06:04','2020-06-12 09:50:04'),(9688,'mathematics','52.90.186.75',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:37:46','2020-06-12 10:44:14'),(9689,'biology','3.89.193.33',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:55:51','2020-06-12 10:55:51'),(9690,'englishlit','41.90.5.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:05:39','2020-06-12 13:05:41'),(9691,'history','54.236.252.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:33:09','2020-06-12 13:33:09'),(9692,'mathematics','3.81.215.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:39:44','2020-06-12 16:01:07'),(9693,'history','54.165.172.105',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:55:54','2020-06-12 15:55:54'),(9694,'accounting','3.86.93.233',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 17:29:11','2020-06-12 17:29:11'),(9695,'irk','3.208.21.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 20:36:13','2020-06-12 20:36:13'),(9696,'biology','54.152.97.16',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 22:32:45','2020-06-12 22:32:45'),(9697,'mathematics','54.226.209.23',800,'','US','','Virginia',NULL,NULL,'','','2020-06-12 23:38:09','2020-06-13 00:51:21'),(9698,'mathematics','52.91.175.68',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 01:40:43','2020-06-13 01:40:45'),(9699,'mathematics','54.152.163.102',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 02:16:58','2020-06-13 02:23:32'),(9700,'mathematics','54.163.49.62',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-13 06:48:30','2020-06-13 07:42:02'),(9701,'economics','3.80.186.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 07:05:55','2020-06-13 07:05:55'),(9702,'english','34.226.218.50',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:26:06','2020-06-13 08:33:08'),(9703,'insurance','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:28:58','2020-06-13 08:28:58'),(9704,'economics','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:55:48','2020-06-13 08:55:48'),(9705,'history','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 09:26:26','2020-06-13 09:26:26'),(9706,'history','34.235.159.175',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 11:48:21','2020-06-13 11:48:21'),(9707,'english','3.92.177.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 12:37:38','2020-06-13 12:37:38'),(9708,'englishlit','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:26:25','2020-06-13 14:26:25'),(9709,'economics','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:48:24','2020-06-13 14:48:24'),(9710,'irk','3.82.202.68',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 17:12:27','2020-06-13 17:12:27'),(9711,'mathematics','3.88.29.43',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 22:46:42','2020-06-13 22:46:45'),(9712,'english','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:02:32','2020-06-13 23:02:32'),(9713,'biology','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:10:31','2020-06-13 23:10:31'),(9714,'commerce','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:11:36','2020-06-13 23:11:36'),(9715,'crk','18.212.212.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 00:37:04','2020-06-14 00:37:04'),(9716,'economics','54.144.12.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 03:33:29','2020-06-14 03:33:29'),(9717,'government','18.215.251.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 05:40:04','2020-06-14 05:40:04'),(9718,'chemistry','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 06:42:21','2020-06-14 06:42:21'),(9719,'economics','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:03:38','2020-06-14 08:03:38'),(9720,'geography','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:07:21','2020-06-14 08:07:21'),(9721,'commerce','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:44:47','2020-06-14 08:44:47'),(9722,'biology','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:49:18','2020-06-14 08:49:18'),(9723,'insurance','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 11:39:05','2020-06-14 11:39:05'),(9724,'crk','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 12:49:53','2020-06-14 12:49:53'),(9725,'government','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 13:52:33','2020-06-14 13:52:33'),(9726,'civiledu','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:41:47','2020-06-14 15:41:47'),(9727,'english','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:45:01','2020-06-14 15:45:01'),(9728,'englishlit','34.207.148.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 16:28:31','2020-06-14 16:28:31'),(9729,'chemistry','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:15:57','2020-06-14 22:15:57'),(9730,'crk','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:29:17','2020-06-14 22:29:17'),(9731,'history','54.83.174.162',560,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:21','2020-06-15 02:23:52'),(9732,'english','54.83.174.162',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:28','2020-06-15 02:23:55'),(9733,'english','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:12:28','2020-06-15 06:12:28'),(9734,'englishlit','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:21:57','2020-06-15 06:21:57'),(9735,'currentaffairs','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:11:29','2020-06-15 08:11:29'),(9736,'physics','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:22:03','2020-06-15 08:22:03'),(9737,'crk','18.212.75.232',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 09:01:28','2020-06-15 09:01:28'),(9738,'englishlit','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:24:36','2020-06-15 10:24:36'),(9739,'insurance','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:29:58','2020-06-15 10:29:58'),(9740,'chemistry','54.172.215.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:11:58','2020-06-15 12:11:58'),(9741,'history','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:21:57','2020-06-15 12:23:22'),(9742,'english','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:22:00','2020-06-15 12:23:25'),(9743,'economics','184.73.145.115',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 13:15:25','2020-06-15 13:15:25'),(9744,'government','54.84.68.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 14:07:49','2020-06-15 14:07:49'),(9745,'crk','34.239.49.32',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 15:22:17','2020-06-15 15:22:17'),(9746,'english','54.242.223.207',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 16:33:06','2020-06-15 16:33:06'),(9747,'geography','54.242.223.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 16:43:55','2020-06-15 16:43:55'),(9748,'englishlit','41.80.97.78',40,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-06-16 02:45:58','2020-06-16 02:46:01'),(9749,'history','54.172.25.21',1840,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:41','2020-06-16 07:01:25'),(9750,'english','54.172.25.21',2080,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:44','2020-06-16 07:11:56'),(9751,'economics','3.82.194.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 04:52:57','2020-06-16 04:52:57'),(9752,'currentaffairs','52.54.215.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-16 05:58:53','2020-06-16 05:58:53'),(9753,'civiledu','34.205.23.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 07:14:44','2020-06-16 07:14:44'),(9754,'english','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 09:59:20','2020-06-16 09:59:20'),(9755,'history','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:29','2020-06-16 10:27:07'),(9756,'english','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:32','2020-06-16 10:27:10'),(9757,'accounting','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:15:35','2020-06-16 10:15:35'),(9758,'biology','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:36:24','2020-06-16 10:36:24'),(9759,'physics','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:16:12','2020-06-16 13:22:05'),(9760,'english','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:17:24','2020-06-16 13:22:09'),(9761,'history','34.224.165.104',480,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:48','2020-06-16 15:44:51'),(9762,'english','34.224.165.104',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:51','2020-06-16 15:44:55'),(9763,'history','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:39','2020-06-16 18:19:42'),(9764,'english','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:44','2020-06-16 18:19:45'),(9765,'english','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:30'),(9766,'accounting','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:31'),(9767,'biology','18.205.237.24',2,'','US','','Virginia',NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9768,'physics','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9769,'government','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9770,'currentaffairs','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9771,'history','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9772,'geography','54.92.200.132',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 22:39:24','2020-06-16 22:39:24'),(9773,'physics','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 01:48:53','2020-06-17 01:48:53'),(9774,'government','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 02:03:54','2020-06-17 02:03:54'),(9775,'englishlit','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:26:11','2020-06-17 03:26:11'),(9776,'insurance','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:55:22','2020-06-17 03:55:22'),(9777,'biology','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:51','2020-06-17 05:30:54'),(9778,'english','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:54','2020-06-17 05:30:56'),(9779,'english','3.90.249.44',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 09:46:18','2020-06-17 09:46:55'),(9780,'chemistry','105.112.87.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-17 09:58:18','2020-06-17 09:58:20'),(9781,'chemistry','66.249.88.14',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-06-17 09:59:01','2020-06-17 09:59:04'),(9782,'mathematics','3.88.138.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 10:39:06','2020-06-17 10:39:06'),(9783,'geography','34.229.135.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:18:07','2020-06-17 11:18:07'),(9784,'economics','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:30','2020-06-17 11:34:32'),(9785,'english','35.174.4.0',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:32','2020-06-17 12:40:24'),(9786,'commerce','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:38:34','2020-06-17 12:38:36'),(9787,'history','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:40:18','2020-06-17 12:40:21'),(9788,'economics','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:13:12','2020-06-17 14:13:12'),(9789,'geography','18.205.18.35',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:36:52','2020-06-17 14:55:05'),(9790,'english','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 15:17:53','2020-06-17 15:17:53'),(9791,'english','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:50','2020-06-17 20:31:50'),(9792,'mathematics','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9793,'biology','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9794,'physics','54.161.200.177',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 21:32:59'),(9795,'chemistry','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9796,'irk','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9797,'civiledu','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9798,'geography','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:59:12','2020-06-17 20:59:12'),(9799,'englishlit','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 22:04:38','2020-06-17 22:04:38'),(9800,'biology','3.80.178.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 23:41:46','2020-06-17 23:41:46'),(9801,'currentaffairs','18.234.191.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 00:56:37','2020-06-18 00:56:37'),(9802,'physics','34.228.64.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 03:47:00','2020-06-18 03:47:00'),(9803,'mathematics','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:16:20','2020-06-18 06:16:20'),(9804,'geography','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:41:02','2020-06-18 06:41:02'),(9805,'mathematics','34.230.69.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 07:24:35','2020-06-18 07:24:35'),(9806,'government','23.20.220.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:17:08','2020-06-18 08:17:08'),(9807,'commerce','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:15','2020-06-18 08:57:15'),(9808,'accounting','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9809,'englishlit','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9810,'geography','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9811,'economics','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9812,'insurance','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9813,'history','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9814,'history','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 09:42:52','2020-06-18 09:42:52'),(9815,'mathematics','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:15:46','2020-06-18 10:15:46'),(9816,'accounting','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:16:19','2020-06-18 10:16:19'),(9817,'accounting','54.210.194.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 22:40:17','2020-06-18 22:40:17'),(9818,'biology','3.80.246.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 23:21:08','2020-06-18 23:21:08'),(9819,'history','54.83.113.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 02:45:33','2020-06-19 02:45:33'),(9820,'accounting','52.90.48.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 06:38:29','2020-06-19 06:38:29'),(9821,'irk','52.201.246.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 08:58:17','2020-06-19 08:58:17'),(9822,'economics','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:17:42','2020-06-19 21:17:42'),(9823,'insurance','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:35:24','2020-06-19 21:35:24'),(9824,'economics','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:10:39','2020-06-19 23:10:39'),(9825,'history','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:30:20','2020-06-19 23:30:20'),(9826,'economics','54.196.106.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 02:31:48','2020-06-20 02:31:48'),(9827,'englishlit','18.233.155.89',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 04:55:13','2020-06-20 04:55:13'),(9828,'history','52.91.173.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 06:51:56','2020-06-20 06:51:56'),(9829,'irk','52.203.62.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 09:34:33','2020-06-20 09:34:33'),(9830,'english','54.87.80.5',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:00:50','2020-06-20 12:00:50'),(9831,'commerce','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:48:20','2020-06-20 13:11:36'),(9832,'mathematics','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:36'),(9833,'biology','54.165.162.104',37,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:12:18'),(9834,'englishlit','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:28'),(9835,'crk','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:33:04'),(9836,'economics','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:17'),(9837,'irk','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:58'),(9838,'civiledu','54.165.162.104',23,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:25'),(9839,'english','54.165.162.104',22,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:11:35'),(9840,'accounting','54.165.162.104',25,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9841,'government','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9842,'insurance','54.165.162.104',14,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:10:29'),(9843,'currentaffairs','54.165.162.104',26,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:12:18'),(9844,'geography','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:42','2020-06-20 13:11:16'),(9845,'physics','54.165.162.104',32,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:46','2020-06-20 13:12:18'),(9846,'history','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:57','2020-06-20 13:12:19'),(9847,'chemistry','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:07:22','2020-06-20 13:10:58'),(9848,'economics','54.145.114.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 16:22:38','2020-06-20 16:22:38'),(9849,'government','18.207.167.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 17:33:28','2020-06-20 17:33:28'),(9850,'chemistry','34.229.200.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 18:50:32','2020-06-20 18:50:32'),(9851,'geography','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 20:55:26','2020-06-20 20:55:26'),(9852,'commerce','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:27:07','2020-06-20 21:27:07'),(9853,'biology','54.234.45.227',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:34:23','2020-06-20 22:01:46'),(9854,'english','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:03:31','2020-06-21 00:03:31'),(9855,'insurance','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:07:20','2020-06-21 00:07:20'),(9856,'crk','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:30:51','2020-06-21 00:30:51'),(9857,'english','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:08:21','2020-06-21 03:08:21'),(9858,'englishlit','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:28:58','2020-06-21 03:28:58'),(9859,'civiledu','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:13:32','2020-06-21 04:13:32'),(9860,'crk','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:36:06','2020-06-21 04:36:06'),(9861,'government','54.227.23.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 10:01:04','2020-06-21 10:01:04'),(9862,'history','18.206.211.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 12:36:25','2020-06-21 12:36:25'),(9863,'physics','3.80.240.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 15:52:13','2020-06-21 15:52:13'),(9864,'englishlit','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:00:57','2020-06-21 17:00:57'),(9865,'english','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:13:38','2020-06-21 17:13:38'),(9866,'currentaffairs','34.238.151.127',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 18:19:01','2020-06-21 18:19:01'),(9867,'crk','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:44:26','2020-06-21 21:44:26'),(9868,'englishlit','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:54:44','2020-06-21 21:54:44'),(9869,'economics','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:08:26','2020-06-21 22:08:26'),(9870,'chemistry','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:33:17','2020-06-21 22:33:17'),(9871,'insurance','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:20:32','2020-06-21 23:20:32'),(9872,'government','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:37:50','2020-06-21 23:37:50'),(9873,'crk','3.84.250.255',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 00:51:48','2020-06-22 00:51:48'),(9874,'geography','54.221.187.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 01:53:56','2020-06-22 01:53:56'),(9875,'english','18.209.110.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 03:40:04','2020-06-22 03:40:04'),(9876,'economics','34.230.36.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 13:54:50','2020-06-22 13:54:50'),(9877,'currentaffairs','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 15:38:47','2020-06-22 15:38:47'),(9878,'civiledu','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 16:11:57','2020-06-22 16:11:57'),(9879,'biology','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:24:35','2020-06-22 18:24:35'),(9880,'english','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:41:12','2020-06-22 18:41:12'),(9881,'accounting','54.90.154.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 20:56:27','2020-06-22 20:56:27'),(9882,'mathematics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9883,'accounting','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9884,'biology','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9885,'economics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9886,'insurance','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9887,'currentaffairs','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9888,'history','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9889,'geography','54.196.101.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 05:30:08','2020-06-23 05:30:08'),(9890,'physics','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:13:29','2020-06-23 09:13:29'),(9891,'government','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:42:29','2020-06-23 09:42:29'),(9892,'englishlit','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 10:04:23','2020-06-23 10:04:23'),(9893,'insurance','35.153.133.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 11:44:24','2020-06-23 11:44:24'),(9894,'crk','34.205.18.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:01:55','2020-06-23 13:07:27'),(9895,'government','34.205.18.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:39:31','2020-06-23 13:39:31'),(9896,'chemistry','41.190.30.186',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-23 14:36:31','2020-06-23 14:36:38'),(9897,'accounting','54.227.55.70',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 18:14:12','2020-06-23 18:14:12'),(9898,'mathematics','18.209.61.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 19:02:39','2020-06-23 19:02:39'),(9899,'geography','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:24:58','2020-06-23 20:24:58'),(9900,'economics','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:45:09','2020-06-23 20:45:09'),(9901,'geography','3.89.130.67',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 21:21:11','2020-06-23 21:21:11'),(9902,'geography','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:28:57','2020-06-23 22:28:57'),(9903,'english','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:39:49','2020-06-23 22:39:49'),(9904,'physics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 02:49:35','2020-06-24 02:49:35'),(9905,'mathematics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 03:07:03','2020-06-24 03:07:03'),(9906,'englishlit','54.158.85.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 04:02:10','2020-06-24 04:02:10'),(9907,'currentaffairs','18.204.209.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 05:53:24','2020-06-24 05:53:24'),(9908,'geography','54.158.151.153',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:14:42','2020-06-24 07:14:42'),(9909,'biology','54.81.22.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:52:37','2020-06-24 07:52:37'),(9910,'physics','34.207.160.124',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 12:25:46','2020-06-24 12:25:46'),(9911,'geography','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:49:47','2020-06-24 14:49:47'),(9912,'mathematics','107.21.199.228',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:55:40','2020-06-24 15:41:17'),(9913,'government','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 15:12:17','2020-06-24 15:12:17'),(9914,'mathematics','54.162.201.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 16:28:06','2020-06-24 16:28:06'),(9915,'accounting','18.206.251.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 04:06:31','2020-06-25 04:06:31'),(9916,'biology','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 05:08:21','2020-06-25 05:08:21'),(9917,'history','3.84.8.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 08:20:25','2020-06-25 08:20:25'),(9918,'history','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:40:28','2020-06-25 09:40:28'),(9919,'english','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:50:38','2020-06-25 09:50:38'),(9920,'accounting','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 12:06:48','2020-06-25 12:06:48'),(9921,'irk','54.234.51.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 14:44:49','2020-06-25 14:44:49'),(9922,'economics','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 02:40:10','2020-06-26 02:40:10'),(9923,'insurance','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 03:05:31','2020-06-26 03:05:31'),(9924,'history','52.90.69.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 05:53:52','2020-06-26 05:53:52'),(9925,'history','34.207.74.169',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 06:38:00','2020-06-26 06:38:00'),(9926,'englishlit','54.91.84.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 08:40:21','2020-06-26 08:40:21'),(9927,'irk','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:42:58','2020-06-26 09:42:58'),(9928,'economics','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:46:26','2020-06-26 09:46:26'),(9929,'commerce','54.175.1.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 12:27:10','2020-06-26 12:27:10'),(9930,'english','3.94.119.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 15:45:31','2020-06-26 15:45:31'),(9931,'crk','18.207.229.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 17:10:47','2020-06-26 17:10:47'),(9932,'accounting','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9933,'biology','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9934,'crk','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9935,'physics','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9936,'economics','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9937,'chemistry','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9938,'irk','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9939,'insurance','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9940,'currentaffairs','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9941,'history','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9942,'history','54.236.208.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9943,'economics','34.205.32.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 20:26:36','2020-06-26 20:26:36'),(9944,'chemistry','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:19:29','2020-06-26 22:19:29'),(9945,'government','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:28:09','2020-06-26 22:28:09'),(9946,'geography','3.87.90.156',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 00:28:07','2020-06-27 00:28:07'),(9947,'crk','35.175.174.168',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 13:22:54','2020-06-27 13:22:54'),(9948,'government','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 18:54:24','2020-06-27 18:54:24'),(9949,'history','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 19:36:24','2020-06-27 19:36:24'),(9950,'mathematics','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:03:20','2020-06-27 20:03:20'),(9951,'physics','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:47:39','2020-06-27 20:47:39'),(9952,'biology','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:49:44','2020-06-27 20:49:44'),(9953,'currentaffairs','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:41:30','2020-06-27 22:47:05'),(9954,'english','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 23:00:09'),(9955,'biology','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 22:47:05'),(9956,'government','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9957,'geography','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9958,'insurance','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9959,'history','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9960,'mathematics','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:08:42','2020-06-27 23:08:42'),(9961,'englishlit','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:16:39','2020-06-27 23:16:39'),(9962,'english','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:05:48','2020-06-28 00:26:33'),(9963,'crk','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:22:50','2020-06-28 00:32:46'),(9964,'insurance','3.90.110.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:16:59','2020-06-28 02:16:59'),(9965,'englishlit','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:55:43','2020-06-28 02:55:43'),(9966,'crk','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:06:30','2020-06-28 03:06:30'),(9967,'chemistry','34.227.105.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:45:11','2020-06-28 03:45:11'),(9968,'economics','54.152.205.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 05:31:01','2020-06-28 05:31:01'),(9969,'geography','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:34:01','2020-06-28 06:34:01'),(9970,'economics','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:52:00','2020-06-28 06:52:00'),(9971,'economics','54.236.22.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 12:40:35','2020-06-28 12:40:35'),(9972,'currentaffairs','100.26.43.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 13:51:22','2020-06-28 13:51:22'),(9973,'mathematics','34.201.45.145',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:38:42','2020-06-28 16:38:42'),(9974,'commerce','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9975,'accounting','34.201.45.145',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:53:13'),(9976,'biology','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9977,'chemistry','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9978,'geography','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9979,'irk','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9980,'insurance','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:23','2020-06-28 16:39:23'),(9981,'english','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9982,'biology','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9983,'physics','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9984,'chemistry','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9985,'englishlit','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9986,'civiledu','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:28'),(9987,'currentaffairs','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:28','2020-06-28 23:19:28'),(9988,'geography','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:24:53','2020-06-29 01:24:53'),(9989,'history','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:51:44','2020-06-29 01:51:44'),(9990,'englishlit','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:10:38','2020-06-29 02:10:38'),(9991,'english','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:15:48','2020-06-29 02:15:48'),(9992,'physics','18.232.165.163',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 05:11:32','2020-06-29 05:11:32'),(9993,'chemistry','35.172.134.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 06:37:11','2020-06-29 06:37:11'),(9994,'chemistry','54.85.126.38',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:18:44','2020-06-29 10:18:44'),(9995,'biology','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:59:34','2020-06-29 10:59:34'),(9996,'accounting','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:24:56','2020-06-29 11:24:56'),(9997,'geography','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:33:40','2020-06-29 11:33:40'),(9998,'mathematics','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:38:46','2020-06-29 11:38:46'),(9999,'mathematics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 13:50:54','2020-06-29 13:50:54'),(10000,'geography','3.84.39.14',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:15:45','2020-06-29 14:49:49'),(10001,'economics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:32:34','2020-06-29 14:32:34'),(10002,'english','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 15:13:58','2020-06-29 15:13:58'),(10003,'mathematics','54.172.215.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 16:01:15','2020-06-29 16:01:15'),(10004,'physics','54.167.221.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 20:53:21','2020-06-29 20:53:21'),(10005,'currentaffairs','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 21:44:22','2020-06-29 21:44:22'),(10006,'englishlit','3.87.114.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 23:55:57','2020-06-29 23:55:57'),(10007,'biology','54.165.2.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 00:45:46','2020-06-30 00:45:46'),(10008,'chemistry','54.166.139.196',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 02:22:51','2020-06-30 02:22:51'),(10009,'physics','3.92.221.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 03:02:17','2020-06-30 03:02:17'),(10010,'mathematics','184.72.82.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 04:50:03','2020-06-30 04:50:03'),(10011,'government','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 06:53:24','2020-06-30 06:53:24'),(10012,'mathematics','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:00:07','2020-06-30 07:00:07'),(10013,'geography','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:09:39','2020-06-30 07:09:39'),(10014,'mathematics','52.202.65.159',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 08:52:07','2020-06-30 08:52:07'),(10015,'history','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:08:39','2020-06-30 09:37:56'),(10016,'accounting','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 10:04:26'),(10017,'physics','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 09:37:55'),(10018,'chemistry','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10019,'englishlit','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10020,'irk','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10021,'civiledu','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10022,'english','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:00','2020-06-30 15:33:00'),(10023,'commerce','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10024,'accounting','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10025,'chemistry','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10026,'government','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10027,'geography','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10028,'civiledu','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10029,'accounting','52.55.83.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 17:10:09','2020-06-30 17:10:09'),(10030,'biology','54.89.237.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:04:39','2020-06-30 19:04:39'),(10031,'commerce','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10032,'accounting','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10033,'chemistry','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10034,'irk','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10035,'civiledu','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10036,'insurance','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10037,'currentaffairs','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10038,'biology','54.234.3.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 20:15:32','2020-06-30 20:15:32'),(10039,'history','34.227.88.114',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 21:38:23','2020-06-30 21:38:23'),(10040,'history','54.86.39.12',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 22:33:09','2020-06-30 22:33:09'),(10041,'accounting','54.172.57.23',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 01:19:58','2020-07-01 01:19:58'),(10042,'irk','3.86.160.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 04:51:36','2020-07-01 04:51:36'),(10043,'chemistry','54.91.179.155',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 08:07:07','2020-07-01 08:07:07'),(10044,'physics','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 10:50:24','2020-07-01 10:50:24'),(10045,'economics','23.20.242.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 11:31:17','2020-07-01 11:31:17'),(10046,'insurance','54.87.197.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 12:53:01','2020-07-01 12:53:01'),(10047,'economics','3.91.214.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 14:03:22','2020-07-01 14:03:22'),(10048,'history','54.84.225.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 15:25:35','2020-07-01 15:25:35'),(10049,'history','3.94.169.218',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 16:02:27','2020-07-01 16:02:27'),(10050,'economics','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 17:46:59','2020-07-01 17:46:59'),(10051,'irk','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:20:57','2020-07-01 18:20:57'),(10052,'englishlit','54.84.229.165',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:58:33','2020-07-01 18:58:33'),(10053,'commerce','34.228.230.135',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 00:24:39','2020-07-02 00:24:39'),(10054,'english','52.91.78.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 01:41:45','2020-07-02 01:41:45'),(10055,'crk','184.72.205.154',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 02:39:16','2020-07-02 02:39:16'),(10056,'economics','52.91.54.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 04:40:45','2020-07-02 04:40:45'),(10057,'chemistry','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:11:03','2020-07-02 06:11:03'),(10058,'government','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:42:32','2020-07-02 06:42:32'),(10059,'government','34.239.131.100',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:04:51','2020-07-02 08:04:51'),(10060,'economics','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:41:05','2020-07-02 08:41:05'),(10061,'commerce','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:56:42','2020-07-02 08:56:42'),(10062,'geography','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:38:08','2020-07-02 09:38:08'),(10063,'biology','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:54:27','2020-07-02 09:54:27'),(10064,'crk','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:13:25','2020-07-02 11:13:25'),(10065,'insurance','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:14:35','2020-07-02 11:14:35'),(10066,'english','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:36:17','2020-07-02 11:36:17'),(10067,'english','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:32:13','2020-07-02 14:32:13'),(10068,'englishlit','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:43:14','2020-07-02 14:43:14'),(10069,'crk','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:08:57','2020-07-02 15:08:57'),(10070,'civiledu','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:35:16','2020-07-02 15:35:16'),(10071,'physics','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:42:25','2020-07-02 15:42:25'),(10072,'economics','54.234.26.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 16:32:16','2020-07-02 16:32:16'),(10073,'crk','34.201.40.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 17:47:14','2020-07-02 17:47:14'),(10074,'history','54.164.23.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 21:46:06','2020-07-02 21:46:06'),(10075,'government','3.84.186.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 22:58:39','2020-07-02 22:58:39'),(10076,'physics','18.208.193.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:11:53','2020-07-03 00:11:53'),(10077,'biology','54.160.208.244',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:48:21','2020-07-03 00:48:21'),(10078,'englishlit','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:15:26','2020-07-03 02:15:26'),(10079,'english','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:23:09','2020-07-03 02:23:09'),(10080,'currentaffairs','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:26:38','2020-07-03 04:26:38'),(10081,'insurance','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:57:52','2020-07-03 04:57:52'),(10082,'englishlit','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:03:51','2020-07-03 05:03:51'),(10083,'economics','54.172.4.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:40:21','2020-07-03 05:40:21'),(10084,'crk','204.236.197.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:18:22','2020-07-03 06:18:22'),(10085,'chemistry','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:58:20','2020-07-03 06:58:20'),(10086,'economics','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 07:05:43','2020-07-03 07:05:43'),(10087,'government','34.235.117.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:09:45','2020-07-03 08:09:45'),(10088,'crk','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:52:38','2020-07-03 08:52:38'),(10089,'geography','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 09:01:32','2020-07-03 09:01:32'),(10090,'english','54.144.92.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 11:49:20','2020-07-03 11:49:20'),(10091,'currentaffairs','54.89.189.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 21:42:09','2020-07-03 21:42:09'),(10092,'civiledu','54.91.226.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 22:22:22','2020-07-03 22:22:22'),(10093,'english','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:22:03','2020-07-04 00:22:03'),(10094,'biology','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:38:50','2020-07-04 00:38:50'),(10095,'history','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:48:34','2020-07-04 01:48:34'),(10096,'accounting','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:56:25','2020-07-04 01:56:25'),(10097,'history','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:54','2020-07-04 06:18:57'),(10098,'english','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:57','2020-07-04 06:19:00'),(10099,'mathematics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10100,'accounting','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10101,'physics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10102,'englishlit','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10103,'crk','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10104,'geography','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10105,'civiledu','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10106,'history','54.162.152.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 09:43:19','2020-07-04 09:43:19'),(10107,'geography','3.93.171.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 10:35:06','2020-07-04 10:35:06'),(10108,'english','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:36:34','2020-07-04 11:36:34'),(10109,'englishlit','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:38:05','2020-07-04 11:38:05'),(10110,'crk','3.81.50.112',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 15:36:29','2020-07-04 15:36:29'),(10111,'physics','34.224.81.74',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 16:13:25','2020-07-04 16:13:25'),(10112,'mathematics','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:24:26','2020-07-04 19:24:26'),(10113,'biology','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:58:10','2020-07-04 19:58:10'),(10114,'geography','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:24:53','2020-07-04 20:24:53'),(10115,'accounting','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:51:26','2020-07-04 20:51:26'),(10116,'geography','54.152.35.97',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:04:02','2020-07-04 22:04:02'),(10117,'mathematics','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:51:02','2020-07-04 22:51:02'),(10118,'geography','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:11:06','2020-07-04 23:11:06'),(10119,'english','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:13:22','2020-07-04 23:13:22'),(10120,'mathematics','184.72.78.80',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 00:30:41','2020-07-05 00:30:41'),(10121,'physics','18.234.140.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 03:22:51','2020-07-05 03:22:51'),(10122,'englishlit','54.81.208.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 04:42:18','2020-07-05 04:42:18'),(10123,'currentaffairs','3.92.239.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 05:50:06','2020-07-05 05:50:06'),(10124,'biology','3.94.250.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 07:05:26','2020-07-05 07:05:26'),(10125,'mathematics','18.234.172.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 10:56:25','2020-07-05 10:56:25'),(10126,'history','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:16:14','2020-07-05 14:16:14'),(10127,'accounting','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:18:21','2020-07-05 14:18:21'),(10128,'government','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:30','2020-07-05 18:09:38'),(10129,'insurance','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:32','2020-07-05 18:09:42'),(10130,'mathematics','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:34','2020-07-05 18:09:46'),(10131,'chemistry','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:36','2020-07-05 18:09:40'),(10132,'englishlit','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:44','2020-07-05 18:09:48'),(10133,'accounting','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:50','2020-07-05 18:09:52'),(10134,'accounting','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:25:43','2020-07-05 23:25:43'),(10135,'mathematics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10136,'commerce','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10137,'physics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10138,'chemistry','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10139,'economics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10140,'civiledu','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10141,'currentaffairs','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:09','2020-07-05 23:26:09'),(10142,'biology','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:48:59','2020-07-05 23:48:59'),(10143,'biology','100.24.36.11',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 01:28:52','2020-07-06 01:28:52'),(10144,'history','18.206.244.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 03:18:07','2020-07-06 03:18:07'),(10145,'history','54.89.235.4',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 04:39:50','2020-08-02 00:44:33'),(10146,'accounting','3.86.51.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 05:43:10','2020-07-06 05:43:10'),(10147,'physics','3.82.188.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 10:53:25','2020-07-06 10:53:25'),(10148,'physics','54.157.235.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 15:25:50','2020-07-06 15:25:50'),(10149,'economics','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:18:01','2020-07-06 16:18:01'),(10150,'insurance','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:25:30','2020-07-06 16:25:30'),(10151,'commerce','3.81.6.59',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 17:19:24','2020-07-06 17:19:24'),(10152,'economics','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:18:54','2020-07-06 18:18:54'),(10153,'history','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:49:09','2020-07-06 18:49:09'),(10154,'history','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 20:27:09','2020-07-06 20:27:09'),(10155,'economics','3.93.171.183',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 22:14:21','2020-07-30 10:46:46'),(10156,'irk','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:20:52','2020-07-06 23:20:52'),(10157,'englishlit','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:45:32','2020-07-06 23:45:32'),(10158,'commerce','18.207.123.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 03:59:46','2020-07-07 03:59:46'),(10159,'english','3.88.230.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 05:07:19','2020-07-07 05:07:19'),(10160,'economics','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:15:10','2020-07-07 09:15:10'),(10161,'government','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:48:39','2020-07-07 09:48:39'),(10162,'chemistry','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 10:12:14','2020-07-07 10:12:14'),(10163,'government','54.221.150.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 11:33:19','2020-07-07 11:33:19'),(10164,'commerce','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:34','2020-07-07 12:23:34'),(10165,'economics','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:36','2020-07-07 12:23:36'),(10166,'biology','52.23.160.61',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:46:17','2020-07-07 13:24:15'),(10167,'geography','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:14:39','2020-07-07 13:14:39'),(10168,'currentaffairs','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:17:34','2020-07-07 13:17:34'),(10169,'insurance','54.152.5.128',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:14:12','2020-07-07 16:33:40'),(10170,'accounting','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:28:51','2020-07-07 14:36:55'),(10171,'commerce','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:31:07','2020-07-07 16:33:39'),(10172,'civiledu','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:34:07','2020-07-07 16:33:40'),(10173,'irk','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:47:28','2020-07-07 16:04:09'),(10174,'english','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:08:10','2020-07-07 15:08:10'),(10175,'crk','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:12:21','2020-07-07 15:12:21'),(10176,'currentaffairs','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:48:43','2020-07-07 16:00:50'),(10177,'chemistry','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:26:23','2020-07-07 16:45:13'),(10178,'englishlit','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:39','2020-07-07 16:33:39'),(10179,'economics','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10180,'history','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10181,'englishlit','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:11:13','2020-07-07 18:11:13'),(10182,'physics','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:38:18','2020-07-07 18:38:18'),(10183,'english','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:09:59','2020-07-07 19:09:59'),(10184,'civiledu','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:24:15','2020-07-07 19:24:15'),(10185,'crk','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:42:39','2020-07-07 19:42:39'),(10186,'crk','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 20:43:43','2020-07-07 20:43:43'),(10187,'economics','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 21:02:06','2020-07-07 21:02:06'),(10188,'crk','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:06:52','2020-07-07 23:06:52'),(10189,'mathematics','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:08:47','2020-07-07 23:08:47'),(10190,'history','54.235.227.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 00:51:52','2020-07-08 00:51:52'),(10191,'commerce','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:13'),(10192,'chemistry','54.224.19.167',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:17:55'),(10193,'englishlit','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:09'),(10194,'crk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:10'),(10195,'irk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:00'),(10196,'civiledu','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:06'),(10197,'currentaffairs','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:02'),(10198,'biology','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:26:00','2020-07-08 04:26:00'),(10199,'government','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:49:34','2020-07-08 04:49:34'),(10200,'physics','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 05:13:41','2020-07-08 05:13:41'),(10201,'englishlit','54.86.107.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:13:13','2020-07-08 06:13:13'),(10202,'currentaffairs','54.162.112.134',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:54:34','2020-07-08 06:54:34'),(10203,'englishlit','41.80.97.238',80,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-07-08 07:25:57','2020-07-08 07:28:00'),(10204,'crk','54.82.43.186',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 07:45:34','2020-07-08 07:45:34'),(10205,'englishlit','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:21:52','2020-07-08 09:21:52'),(10206,'insurance','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:44:49','2020-07-08 09:44:49'),(10207,'chemistry','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:54:11','2020-07-08 09:54:11'),(10208,'economics','52.91.173.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 10:49:13','2020-07-08 10:49:13'),(10209,'government','54.80.100.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 11:30:37','2020-07-08 11:30:37'),(10210,'crk','54.158.254.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:24:11','2020-07-08 12:24:11'),(10211,'english','18.207.151.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:58:44','2020-07-08 12:58:44'),(10212,'geography','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:02:59','2020-07-08 14:02:59'),(10213,'economics','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:07','2020-07-08 14:33:07'),(10214,'english','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:48','2020-07-08 14:33:48'),(10215,'commerce','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10216,'chemistry','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10217,'englishlit','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10218,'government','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10219,'economics','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10220,'insurance','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10221,'currentaffairs','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10222,'chemistry','212.7.216.22',41,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:34','2020-07-08 18:09:03'),(10223,'biology','212.7.216.22',42,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:53','2020-07-08 18:09:33'),(10224,'crk','212.7.216.22',40,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:11:50','2020-07-08 18:11:53'),(10225,'accounting','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 00:35:57','2020-07-09 00:35:57'),(10226,'currentaffairs','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:01:51','2020-07-09 01:01:51'),(10227,'civiledu','3.92.165.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:53:39','2020-07-09 01:53:39'),(10228,'biology','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:43:43','2020-07-09 03:43:43'),(10229,'english','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:48:40','2020-07-09 03:48:40'),(10230,'accounting','54.166.150.192',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 04:46:10','2020-07-09 04:46:10'),(10231,'insurance','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:51:46','2020-07-09 07:51:46'),(10232,'accounting','18.212.91.129',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:26','2020-07-09 07:52:33'),(10233,'englishlit','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:27','2020-07-09 07:52:27'),(10234,'english','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:28','2020-07-09 07:52:28'),(10235,'history','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:38','2020-07-09 07:52:38'),(10236,'geography','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:17:51','2020-07-09 15:17:51'),(10237,'history','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:21:14','2020-07-09 15:21:14'),(10238,'englishlit','3.85.20.113',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 16:51:17','2020-07-09 16:51:17'),(10239,'government','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:25:48','2020-07-09 17:25:48'),(10240,'english','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:47:06','2020-07-09 17:47:06'),(10241,'insurance','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 18:54:52','2020-07-09 18:54:52'),(10242,'physics','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 19:28:45','2020-07-09 19:28:45'),(10243,'crk','3.92.73.237',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 20:40:38','2020-07-09 20:40:38'),(10244,'biology','3.89.195.91',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:11:30','2020-07-10 00:11:30'),(10245,'mathematics','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:54:45','2020-07-10 00:54:45'),(10246,'geography','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 01:07:34','2020-07-10 01:07:34'),(10247,'accounting','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:08:59','2020-07-10 03:08:59'),(10248,'geography','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:12:39','2020-07-10 03:12:39'),(10249,'mathematics','34.229.218.101',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:56:28','2020-07-10 04:19:24'),(10250,'english','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:57:59','2020-07-10 03:57:59'),(10251,'geography','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 04:00:44','2020-07-10 04:00:44'),(10252,'physics','52.207.226.86',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 07:22:18','2020-07-10 07:22:18'),(10253,'englishlit','100.26.198.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 08:32:27','2020-07-10 08:32:27'),(10254,'currentaffairs','34.207.220.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 09:37:56','2020-07-10 09:37:56'),(10255,'biology','34.201.217.57',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 13:17:48','2020-07-10 13:17:48'),(10256,'mathematics','34.201.82.215',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:30:23','2020-07-10 17:26:20'),(10257,'government','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:49:19','2020-07-10 16:49:19'),(10258,'geography','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:57:20','2020-07-10 16:57:20'),(10259,'mathematics','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:29:32','2020-07-10 18:29:32'),(10260,'history','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:38:27','2020-07-10 18:38:27'),(10261,'accounting','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:51:34','2020-07-10 18:51:34'),(10262,'accounting','54.88.28.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 03:49:42','2020-07-11 03:49:42'),(10263,'biology','18.212.149.169',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 05:05:51','2020-07-11 05:05:51'),(10264,'history','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:21:44','2020-07-11 07:21:44'),(10265,'biology','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:43:14','2020-07-11 07:43:14'),(10266,'history','52.207.241.232',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 09:22:36','2020-07-11 09:22:36'),(10267,'english','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:03:15','2020-07-11 11:03:15'),(10268,'accounting','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:05:18','2020-07-11 11:05:18'),(10269,'chemistry','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 12:39:00','2020-07-11 12:39:02'),(10270,'mathematics','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:50:40','2020-07-11 13:50:43'),(10271,'english','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:52:41','2020-07-11 13:52:43'),(10272,'physics','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:54:53','2020-07-11 13:54:56'),(10273,'irk','3.87.253.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 13:57:22','2020-07-11 13:57:22'),(10274,'biology','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:58:09','2020-07-11 13:58:11'),(10275,'commerce','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:00:45','2020-07-11 14:00:47'),(10276,'accounting','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:02:26','2020-07-11 14:02:30'),(10277,'commerce','197.210.53.65',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:07:24','2020-07-11 14:07:27'),(10278,'biology','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:09:29','2020-07-11 14:09:31'),(10279,'englishlit','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:11:03','2020-07-11 14:11:06'),(10280,'government','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:12:42','2020-07-11 14:12:44'),(10281,'crk','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:14:42','2020-07-11 14:14:45'),(10282,'geography','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:16:22','2020-07-11 14:16:25'),(10283,'economics','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:18:03','2020-07-11 14:18:06'),(10284,'irk','197.210.53.29',30,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:19:52','2020-07-11 14:19:54'),(10285,'civiledu','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:21:54','2020-07-11 14:21:56'),(10286,'insurance','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:24:40','2020-07-11 14:24:42'),(10287,'currentaffairs','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:30:13','2020-07-11 14:30:16'),(10288,'history','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:31:59','2020-07-11 14:32:02'),(10289,'chemistry','129.205.113.79',4400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-11 14:33:08','2020-07-13 03:19:10'),(10290,'english','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:49'),(10291,'commerce','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:47:21'),(10292,'accounting','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:31'),(10293,'civiledu','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:49:01'),(10294,'insurance','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:09'),(10295,'currentaffairs','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:19'),(10296,'history','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:26'),(10297,'mathematics','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:15:58','2020-07-11 23:15:58'),(10298,'chemistry','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:21:17','2020-07-11 23:21:17'),(10299,'insurance','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:48:13','2020-07-11 23:48:13'),(10300,'english','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:09:33','2020-07-12 00:09:33'),(10301,'economics','3.82.54.117',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:10:41','2020-07-12 00:29:04'),(10302,'history','3.88.228.30',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 01:17:11','2020-07-12 01:17:11'),(10303,'history','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:50:23','2020-07-12 02:50:23'),(10304,'chemistry','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:58:58','2020-07-12 02:58:58'),(10305,'mathematics','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 03:10:59','2020-07-12 03:10:59'),(10306,'economics','3.87.92.43',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 04:42:49','2020-07-12 04:42:49'),(10307,'englishlit','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 05:52:03','2020-07-12 05:52:03'),(10308,'irk','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 06:21:53','2020-07-12 06:21:53'),(10309,'commerce','54.163.60.37',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 10:46:43','2020-07-12 10:46:43'),(10310,'english','3.94.101.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 12:43:58','2020-07-12 12:43:58'),(10311,'mathematics','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 14:59:40','2020-07-12 14:59:40'),(10312,'english','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:00:14','2020-07-12 15:00:14'),(10313,'chemistry','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:07:58','2020-07-12 15:07:58'),(10314,'economics','34.227.46.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 16:40:51','2020-07-12 16:40:51'),(10315,'chemistry','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:39:39','2020-07-12 17:39:39'),(10316,'english','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:54:55','2020-07-12 17:54:55'),(10317,'mathematics','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 18:17:06','2020-07-12 18:17:06'),(10318,'government','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:17:30','2020-07-12 19:17:30'),(10319,'geography','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:43:56','2020-07-12 19:43:56'),(10320,'biology','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:30:00','2020-07-12 20:30:00'),(10321,'commerce','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:32:43','2020-07-12 20:32:43'),(10322,'economics','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:03','2020-07-12 22:04:03'),(10323,'insurance','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:33','2020-07-12 22:04:33'),(10324,'crk','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:43:42','2020-07-12 22:43:42'),(10325,'english','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:02:31','2020-07-12 23:02:31'),(10326,'mathematics','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:14:52','2020-07-12 23:14:52'),(10327,'english','129.205.113.79',5320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-13 00:22:00','2020-07-13 03:18:50'),(10328,'mathematics','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:25','2020-07-13 03:18:54'),(10329,'commerce','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:30','2020-07-13 03:18:57'),(10330,'accounting','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:34','2020-07-13 03:19:00'),(10331,'biology','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:37','2020-07-13 03:19:03'),(10332,'physics','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:40','2020-07-13 03:19:07'),(10333,'englishlit','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:47','2020-07-13 03:19:13'),(10334,'government','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:09','2020-07-13 03:19:16'),(10335,'crk','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:12','2020-07-13 03:19:20'),(10336,'geography','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:16','2020-07-13 03:19:23'),(10337,'economics','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:19','2020-07-13 03:19:26'),(10338,'irk','129.205.113.79',3180,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:22','2020-07-13 03:19:29'),(10339,'civiledu','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:24','2020-07-13 03:18:24'),(10340,'insurance','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:28','2020-07-13 03:18:27'),(10341,'currentaffairs','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:24','2020-07-13 03:18:30'),(10342,'history','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:28','2020-07-13 03:18:40'),(10343,'civiledu','54.234.157.166',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:28:47','2020-07-13 02:28:47'),(10344,'physics','54.234.157.166',3,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:48:14','2020-07-13 02:57:04'),(10345,'biology','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10346,'chemistry','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10347,'englishlit','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10348,'government','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10349,'currentaffairs','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10350,'history','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10351,'englishlit','54.208.167.162',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 03:42:04','2020-07-13 03:42:04'),(10352,'economics','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:26:48','2020-07-13 04:26:48'),(10353,'crk','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:32:06','2020-07-13 04:32:06'),(10354,'mathematics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10355,'commerce','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10356,'biology','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10357,'government','3.83.177.66',3,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 07:20:14','2020-07-13 07:20:15'),(10358,'crk','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10359,'economics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10360,'insurance','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10361,'mathematics','52.70.110.88',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:58:11','2020-07-13 07:58:11'),(10362,'history','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 08:43:27','2020-07-13 08:43:27'),(10363,'crk','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 09:16:49','2020-07-13 09:16:49'),(10364,'government','35.173.241.103',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 12:01:52','2020-07-13 12:01:52'),(10365,'biology','35.173.241.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 12:19:03','2020-07-13 12:19:03'),(10366,'physics','3.80.67.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 13:51:28','2020-07-13 13:51:28'),(10367,'english','3.80.67.43',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 14:26:17','2020-07-13 14:33:36'),(10368,'currentaffairs','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:37:38','2020-07-13 15:37:38'),(10369,'englishlit','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:58:51','2020-07-13 15:58:51'),(10370,'crk','3.88.24.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 17:12:19','2020-07-13 17:12:19'),(10371,'insurance','3.88.24.28',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 17:29:37','2020-07-13 17:29:37'),(10372,'chemistry','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:17:46','2020-07-13 18:17:46'),(10373,'englishlit','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:33:29','2020-07-13 18:33:29'),(10374,'government','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:07:04','2020-07-13 20:07:04'),(10375,'crk','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:37:11','2020-07-13 20:37:11'),(10376,'economics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:39:05','2020-07-13 20:39:05'),(10377,'geography','18.207.196.180',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 21:02:47','2020-07-13 21:02:47'),(10378,'mathematics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 21:10:43','2020-07-13 21:10:43'),(10379,'english','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10380,'commerce','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10381,'accounting','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10382,'physics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10383,'economics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10384,'civiledu','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10385,'insurance','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10386,'english','3.90.9.102',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 22:41:54','2020-07-13 22:56:29'),(10387,'english','129.205.124.79',3480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:25:59','2020-07-14 02:30:06'),(10388,'mathematics','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:02','2020-07-14 02:30:10'),(10389,'commerce','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:06','2020-07-14 02:30:15'),(10390,'accounting','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:09','2020-07-14 02:30:18'),(10391,'biology','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:12','2020-07-14 02:30:22'),(10392,'physics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:16','2020-07-14 02:30:26'),(10393,'chemistry','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:19','2020-07-14 02:30:30'),(10394,'englishlit','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:22','2020-07-14 02:30:34'),(10395,'government','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:26','2020-07-14 02:30:39'),(10396,'crk','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:29','2020-07-14 02:30:43'),(10397,'geography','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:33','2020-07-14 02:30:47'),(10398,'economics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:36','2020-07-14 02:30:51'),(10399,'irk','129.205.124.79',2490,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:41','2020-07-14 02:29:45'),(10400,'civiledu','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:44','2020-07-14 02:29:50'),(10401,'insurance','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:47','2020-07-14 02:29:54'),(10402,'currentaffairs','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:50','2020-07-14 02:29:58'),(10403,'history','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:54','2020-07-14 02:30:02'),(10404,'mathematics','3.86.112.201',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 06:09:14','2020-07-14 06:09:14'),(10405,'economics','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 07:28:22','2020-07-14 07:28:22'),(10406,'english','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 08:04:24','2020-07-14 08:04:24'),(10407,'chemistry','129.205.113.93',443,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-14 09:05:47','2020-07-14 13:21:22'),(10408,'physics','129.205.113.93',212,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 09:08:38','2020-07-14 15:34:58'),(10409,'english','129.205.113.93',939,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:08:42','2020-07-14 14:50:30'),(10410,'currentaffairs','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:07','2020-07-14 10:09:07'),(10411,'mathematics','129.205.113.93',121,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:52','2020-07-14 15:32:06'),(10412,'commerce','129.205.113.93',1891,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:15:00','2020-07-14 15:55:42'),(10413,'biology','129.205.113.93',534,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:20:01','2020-07-14 13:14:00'),(10414,'englishlit','129.205.113.93',508,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:22:39','2020-07-14 15:00:25'),(10415,'government','129.205.113.93',1091,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:23:37','2020-07-14 15:55:56'),(10416,'civiledu','129.205.113.93',577,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:38:09','2020-07-14 13:42:59'),(10417,'crk','129.205.113.93',1240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:40:26','2020-07-14 14:22:30'),(10418,'economics','129.205.113.93',899,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:41:55','2020-07-14 14:38:54'),(10419,'civiledu','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:43:55','2020-07-14 10:43:55'),(10420,'geography','129.205.113.93',316,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:51:07','2020-07-14 15:05:11'),(10421,'insurance','129.205.113.93',471,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:54:35','2020-07-14 15:30:53'),(10422,'irk','129.205.113.93',50,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:58:36','2020-07-14 15:36:02'),(10423,'currentaffairs','129.205.113.93',63,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:59:48','2020-07-14 15:37:11'),(10424,'accounting','129.205.113.93',682,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:30:09','2020-07-14 13:33:35'),(10425,'history','129.205.113.93',67,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:33:06','2020-07-14 15:23:11'),(10426,'accounting','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:37:00','2020-07-14 12:37:00'),(10427,'english','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:39:37','2020-07-14 12:39:37'),(10428,'history','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:06:47','2020-07-14 13:06:47'),(10429,'biology','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:31:56','2020-07-14 13:31:56'),(10430,'mathematics','18.234.46.151',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 15:02:11','2020-07-14 15:02:11'),(10431,'english','54.90.207.165',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 18:07:02','2020-07-14 18:07:02'),(10432,'commerce','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10433,'physics','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10434,'chemistry','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10435,'englishlit','34.229.179.114',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10436,'government','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10437,'insurance','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10438,'currentaffairs','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:53','2020-07-14 19:16:53'),(10439,'geography','18.208.128.143',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 22:14:45','2020-07-14 22:14:45'),(10440,'english','3.95.191.40',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 23:24:07','2020-07-14 23:24:07'),(10441,'history','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 23:41:01','2020-07-14 23:41:01'),(10442,'mathematics','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:06:33','2020-07-15 00:06:33'),(10443,'englishlit','3.87.215.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:46:37','2020-07-15 00:46:37'),(10444,'insurance','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 03:51:06','2020-07-15 03:51:06'),(10445,'english','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 04:09:32','2020-07-15 04:09:32'),(10446,'crk','3.81.221.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 05:08:09','2020-07-15 05:08:09'),(10447,'chemistry','3.88.132.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:07:35','2020-07-15 08:07:35'),(10448,'mathematics','54.147.235.60',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:53:27','2020-07-15 09:41:51'),(10449,'crk','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:02:40','2020-07-15 09:02:40'),(10450,'biology','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:28:35','2020-07-15 09:28:35'),(10451,'physics','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:31:51','2020-07-15 09:31:51'),(10452,'geography','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:32:08','2020-07-15 10:32:08'),(10453,'accounting','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:38:37','2020-07-15 10:38:37'),(10454,'geography','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 11:56:02','2020-07-15 12:59:45'),(10455,'mathematics','3.83.193.244',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:33:30'),(10456,'commerce','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10457,'accounting','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10458,'englishlit','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10459,'crk','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10460,'civiledu','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10461,'insurance','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10462,'english','3.81.39.121',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 14:04:24','2020-07-15 14:04:24'),(10463,'englishlit','54.224.172.84',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 16:54:49','2020-07-15 16:54:49'),(10464,'chemistry','102.89.3.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-07-15 17:48:20','2020-07-15 17:48:20'),(10465,'currentaffairs','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 17:48:58','2020-07-15 17:48:58'),(10466,'chemistry','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 18:12:17','2020-07-15 18:12:17'),(10467,'english','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 18:17:37','2020-07-15 18:17:37'),(10468,'biology','54.210.122.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 20:30:49','2020-07-15 20:30:49'),(10469,'physics','54.210.122.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 21:05:21','2020-07-15 21:05:21'),(10470,'mathematics','54.90.176.188',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 22:58:09','2020-07-15 22:58:09'),(10471,'crk','54.90.176.188',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 23:00:49','2020-07-15 23:00:49'),(10472,'mathematics','34.229.226.194',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 01:11:04','2020-07-16 01:11:04'),(10473,'geography','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 02:43:29','2020-07-16 02:43:29'),(10474,'government','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 02:54:36','2020-07-16 02:54:36'),(10475,'mathematics','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 03:13:19','2020-07-16 03:13:19'),(10476,'history','3.85.23.254',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 04:15:53','2020-07-16 04:15:53'),(10477,'mathematics','18.212.87.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 05:27:05','2020-07-16 05:27:05'),(10478,'accounting','18.212.87.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 05:57:55','2020-07-16 05:57:55'),(10479,'chemistry','81.7.11.155',41,'','DE','','Thuringia','Jena','07745','50.8933','11.5847','2020-07-16 06:13:09','2020-07-16 06:13:18'),(10480,'mathematics','18.234.132.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 07:36:28','2020-07-16 07:36:28'),(10481,'biology','18.205.237.244',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 13:41:47','2020-07-16 13:41:47'),(10482,'chemistry','54.167.108.112',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 16:28:05','2020-07-16 16:28:06'),(10483,'mathematics','34.202.166.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 17:24:28','2020-07-16 17:24:28'),(10484,'accounting','52.20.255.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 19:21:42','2020-07-16 19:21:42'),(10485,'economics','3.81.224.51',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 03:22:55','2020-07-17 03:50:42'),(10486,'insurance','3.81.224.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 04:01:21','2020-07-17 04:01:21'),(10487,'mathematics','3.95.1.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 05:12:24','2020-07-17 05:12:24'),(10488,'irk','54.204.68.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 08:14:36','2020-07-17 08:14:36'),(10489,'englishlit','54.204.68.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 08:19:55','2020-07-17 08:19:55'),(10490,'english','3.88.16.205',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 13:06:26','2020-07-17 13:06:26'),(10491,'commerce','18.206.210.183',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 14:19:11','2020-07-17 14:19:11'),(10492,'economics','54.89.243.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 15:31:32','2020-07-17 15:31:32'),(10493,'mathematics','100.24.42.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 16:28:27','2020-07-17 16:28:27'),(10494,'economics','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 17:50:15','2020-07-17 17:50:15'),(10495,'geography','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:15:04','2020-07-17 18:15:04'),(10496,'government','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:27:05','2020-07-17 18:27:05'),(10497,'commerce','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:28:15','2020-07-17 18:28:15'),(10498,'insurance','54.172.215.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 19:31:06','2020-07-17 19:31:06'),(10499,'english','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 20:42:09','2020-07-17 20:42:09'),(10500,'biology','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 20:45:14','2020-07-17 20:45:14'),(10501,'chemistry','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 21:17:31','2020-07-17 21:17:31'),(10502,'crk','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 22:55:45','2020-07-17 22:55:45'),(10503,'physics','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 23:12:51','2020-07-17 23:12:51'),(10504,'economics','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 23:13:05','2020-07-17 23:13:05'),(10505,'crk','54.152.47.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 00:11:06','2020-07-18 00:11:06'),(10506,'mathematics','54.227.114.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 02:04:13','2020-07-18 02:04:13'),(10507,'history','54.227.114.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 02:26:59','2020-07-18 02:26:59'),(10508,'chemistry','3.83.174.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 03:38:08','2020-07-18 03:38:08'),(10509,'government','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 04:39:59','2020-07-18 04:39:59'),(10510,'biology','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:05:29','2020-07-18 05:05:29'),(10511,'history','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:38:54','2020-07-18 05:38:54'),(10512,'englishlit','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:55:47','2020-07-18 05:55:47'),(10513,'english','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 06:01:27','2020-07-18 06:01:27'),(10514,'currentaffairs','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 06:31:11','2020-07-18 06:31:11'),(10515,'chemistry','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 08:36:38','2020-07-18 08:36:38'),(10516,'economics','54.164.73.164',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 09:03:24','2020-07-18 09:51:57'),(10517,'government','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 09:21:47','2020-07-18 09:21:47'),(10518,'crk','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 10:08:07','2020-07-18 10:08:07'),(10519,'geography','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 10:16:51','2020-07-18 10:16:51'),(10520,'english','3.94.122.190',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 11:27:02','2020-07-18 11:27:02'),(10521,'mathematics','3.94.122.190',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 11:56:11','2020-07-18 11:56:11'),(10522,'currentaffairs','54.234.122.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 18:21:25','2020-07-18 18:21:25'),(10523,'civiledu','18.215.146.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 19:07:46','2020-07-18 19:07:46'),(10524,'history','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:06:58','2020-07-18 20:06:58'),(10525,'economics','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:07:06','2020-07-18 20:07:06'),(10526,'accounting','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:09:41','2020-07-18 20:09:41'),(10527,'english','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:15:29','2020-07-18 20:15:29'),(10528,'biology','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:45:48','2020-07-18 20:45:48'),(10529,'mathematics','54.208.42.17',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 21:46:57','2020-07-18 21:46:57'),(10530,'mathematics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10531,'accounting','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10532,'physics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10533,'chemistry','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10534,'englishlit','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:36'),(10535,'economics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:36','2020-07-18 23:37:36'),(10536,'insurance','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:36','2020-07-18 23:37:36'),(10537,'geography','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:05:10','2020-07-19 02:05:10'),(10538,'english','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:24:02','2020-07-19 02:24:02'),(10539,'englishlit','3.84.156.226',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:52:35','2020-07-19 02:55:26'),(10540,'history','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 03:13:35','2020-07-19 03:13:35'),(10541,'physics','54.172.87.14',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 04:04:24','2020-07-19 04:04:24'),(10542,'english','3.87.78.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 04:39:20','2020-07-19 04:39:20'),(10543,'insurance','3.87.78.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 05:05:03','2020-07-19 05:05:03'),(10544,'accounting','52.87.187.114',7,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:22:59','2020-07-19 09:45:54'),(10545,'biology','52.87.187.114',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:28:42','2020-07-19 09:41:35'),(10546,'geography','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:57:42','2020-07-19 09:41:36'),(10547,'mathematics','52.87.187.114',7,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:05:50','2020-07-19 09:45:54'),(10548,'currentaffairs','52.87.187.114',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:06:40','2020-07-19 09:45:55'),(10549,'english','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:41:35'),(10550,'commerce','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:40:42'),(10551,'chemistry','52.87.187.114',9,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:45:55'),(10552,'englishlit','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:38:48'),(10553,'economics','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:49','2020-07-19 09:41:36'),(10554,'government','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:40:43'),(10555,'crk','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10556,'irk','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10557,'civiledu','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10558,'history','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:41:35','2020-07-19 09:41:35'),(10559,'physics','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:41:35','2020-07-19 09:41:35'),(10560,'mathematics','54.83.167.125',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 10:33:40','2020-07-19 10:34:30'),(10561,'english','100.24.46.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 11:28:49','2020-07-19 11:28:49'),(10562,'mathematics','3.89.137.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 12:48:58','2020-07-19 12:48:58'),(10563,'physics','3.89.137.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 13:12:25','2020-07-19 13:12:25'),(10564,'biology','35.153.203.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 15:30:03','2020-07-19 15:30:03'),(10565,'mathematics','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:13:34','2020-07-19 18:13:34'),(10566,'chemistry','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:38:42','2020-07-19 18:38:42'),(10567,'geography','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:43:42','2020-07-19 18:43:42'),(10568,'mathematics','54.90.132.175',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:37:55','2020-07-19 20:06:51'),(10569,'history','54.90.132.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:52:46','2020-07-19 19:52:46'),(10570,'government','54.90.132.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:53:17','2020-07-19 19:53:17'),(10571,'accounting','35.175.232.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 20:45:01','2020-07-19 20:45:01'),(10572,'currentaffairs','18.207.214.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 00:10:52','2020-07-20 00:10:52'),(10573,'mathematics','18.208.110.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 01:01:06','2020-07-20 01:01:06'),(10574,'accounting','18.208.110.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 01:07:29','2020-07-20 01:07:29'),(10575,'biology','34.229.38.131',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 03:32:40','2020-07-20 03:32:40'),(10576,'chemistry','34.229.38.131',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 03:34:20','2020-07-20 03:34:20'),(10577,'history','54.157.223.34',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 04:50:50','2020-07-20 05:03:04'),(10578,'irk','54.227.12.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 08:27:27','2020-07-20 08:27:27'),(10579,'englishlit','52.90.162.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 16:42:27','2020-07-20 16:42:27'),(10580,'irk','52.90.162.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 17:12:36','2020-07-20 17:12:36'),(10581,'accounting','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:24','2020-07-20 19:13:25'),(10582,'chemistry','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10583,'englishlit','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10584,'economics','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10585,'insurance','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10586,'currentaffairs','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10587,'history','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10588,'commerce','54.166.211.116',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:40:35','2020-07-20 19:40:35'),(10589,'insurance','3.88.7.36',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 20:42:06','2020-07-20 20:42:06'),(10590,'english','3.88.7.36',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 21:17:21','2020-07-20 21:17:21'),(10591,'government','3.93.216.121',3,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-20 22:44:09','2020-07-23 22:53:55'),(10592,'economics','54.173.94.139',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 23:22:10','2020-07-20 23:22:10'),(10593,'chemistry','184.72.65.217',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 00:44:38','2020-07-21 00:44:38'),(10594,'government','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 01:23:18','2020-07-21 01:23:18'),(10595,'commerce','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 01:45:25','2020-07-21 01:45:25'),(10596,'economics','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:09:47','2020-07-21 02:09:47'),(10597,'geography','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:13:54','2020-07-21 02:13:54'),(10598,'biology','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:39:04','2020-07-21 02:39:04'),(10599,'insurance','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:51:51','2020-07-21 02:51:51'),(10600,'english','35.173.186.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 03:37:34','2020-07-21 03:37:34'),(10601,'englishlit','54.164.4.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 05:49:14','2020-07-21 05:49:14'),(10602,'physics','54.164.4.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 06:13:20','2020-07-21 06:13:20'),(10603,'economics','54.81.181.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 06:51:42','2020-07-21 06:51:42'),(10604,'crk','54.81.181.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 07:25:25','2020-07-21 07:25:25'),(10605,'commerce','18.232.108.127',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 09:00:24','2020-07-21 09:00:24'),(10606,'history','18.206.221.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 09:55:32','2020-07-21 09:55:32'),(10607,'physics','18.206.221.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 10:29:06','2020-07-21 10:29:06'),(10608,'biology','3.85.231.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 11:23:48','2020-07-21 11:23:48'),(10609,'government','3.85.231.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 11:29:12','2020-07-21 11:29:12'),(10610,'physics','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 12:12:57','2020-07-21 12:12:57'),(10611,'englishlit','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 12:28:24','2020-07-21 12:28:24'),(10612,'currentaffairs','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 13:01:37','2020-07-21 13:01:37'),(10613,'english','52.70.85.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 13:22:43','2020-07-21 13:22:43'),(10614,'crk','54.208.43.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 14:15:12','2020-07-21 14:15:12'),(10615,'englishlit','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:26:49','2020-07-21 15:26:49'),(10616,'chemistry','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:31:23','2020-07-21 15:31:23'),(10617,'government','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:48:50','2020-07-21 15:48:50'),(10618,'insurance','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:49:29','2020-07-21 15:49:29'),(10619,'economics','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:58:01','2020-07-21 15:58:01'),(10620,'crk','52.90.180.213',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 16:47:13','2020-07-21 16:47:13'),(10621,'geography','54.166.134.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 17:57:24','2020-07-21 17:57:24'),(10622,'english','54.166.134.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 18:26:42','2020-07-21 18:26:42'),(10623,'currentaffairs','54.196.19.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 20:15:13','2020-07-21 20:15:13'),(10624,'civiledu','35.173.200.62',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 01:25:29','2020-07-22 01:25:29'),(10625,'currentaffairs','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:15:29','2020-07-22 03:15:29'),(10626,'biology','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:17:25','2020-07-22 03:17:25'),(10627,'accounting','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:42:17','2020-07-22 03:42:17'),(10628,'history','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:53:51','2020-07-22 03:53:51'),(10629,'biology','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10630,'chemistry','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10631,'government','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10632,'economics','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10633,'irk','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10634,'insurance','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:37'),(10635,'currentaffairs','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:37','2020-07-22 08:21:37'),(10636,'geography','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:30:53','2020-07-22 08:30:53'),(10637,'english','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:46:13','2020-07-22 08:46:13'),(10638,'history','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 09:16:26','2020-07-22 09:16:26'),(10639,'insurance','18.208.145.205',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 11:46:58','2020-07-22 11:46:58'),(10640,'crk','18.213.2.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 13:18:13','2020-07-22 13:18:13'),(10641,'mathematics','54.237.29.101',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:22:08','2020-07-22 16:37:58'),(10642,'biology','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:23:10','2020-07-22 15:23:10'),(10643,'geography','54.237.29.101',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:24:37','2020-07-22 17:13:37'),(10644,'currentaffairs','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:40:39','2020-07-22 15:40:39'),(10645,'accounting','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:59:56','2020-07-22 15:59:56'),(10646,'physics','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 16:56:32','2020-07-22 16:56:32'),(10647,'mathematics','35.172.179.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 17:56:39','2020-07-22 17:56:39'),(10648,'english','3.91.150.134',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 18:44:30','2020-07-22 18:44:30'),(10649,'physics','3.91.150.134',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 19:29:50','2020-07-22 19:29:50'),(10650,'chemistry','129.205.113.94',720,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-22 20:27:18','2020-07-23 15:52:22'),(10651,'englishlit','54.90.128.253',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 20:39:37','2020-07-22 20:39:37'),(10652,'english','129.205.113.94',1440,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:01:01','2020-07-23 16:38:38'),(10653,'currentaffairs','54.90.128.253',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 21:07:21','2020-07-22 21:07:21'),(10654,'commerce','129.205.113.94',240,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:21:35','2020-07-23 16:34:19'),(10655,'accounting','129.205.113.94',200,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:30:17','2020-07-23 16:34:11'),(10656,'government','129.205.113.94',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-22 21:44:00','2020-07-23 11:40:48'),(10657,'economics','129.205.113.94',240,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:45:29','2020-07-23 16:01:35'),(10658,'englishlit','18.212.49.25',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 21:58:08','2020-07-22 21:58:08'),(10659,'biology','18.212.49.25',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:10:49','2020-07-22 22:10:49'),(10660,'englishlit','129.205.113.94',80,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:12:38','2020-07-22 22:14:23'),(10661,'mathematics','129.205.113.94',120,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:20:22','2020-07-23 16:32:53'),(10662,'mathematics','100.26.51.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10663,'english','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10664,'commerce','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10665,'chemistry','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10666,'englishlit','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10667,'crk','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10668,'irk','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:13','2020-07-23 00:21:13'),(10669,'civiledu','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:13','2020-07-23 00:21:13'),(10670,'geography','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 01:38:33','2020-07-23 01:38:33'),(10671,'government','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:07:36','2020-07-23 02:07:36'),(10672,'mathematics','100.24.34.150',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:15:27','2020-07-23 02:41:47'),(10673,'history','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:39:13','2020-07-23 02:39:13'),(10674,'accounting','100.24.34.185',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 03:24:06','2020-07-23 03:24:06'),(10675,'government','54.86.165.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 05:03:44','2020-07-23 05:03:44'),(10676,'physics','3.81.158.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 06:50:10','2020-07-23 06:50:10'),(10677,'accounting','3.81.158.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 07:47:32','2020-07-23 07:47:32'),(10678,'biology','3.93.234.122',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 09:54:06','2020-07-23 09:55:43'),(10679,'crk','129.205.113.94',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-23 10:07:46','2020-07-23 10:07:49'),(10680,'history','3.82.28.234',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 11:06:41','2020-07-23 11:38:26'),(10681,'accounting','3.87.197.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 12:37:21','2020-07-23 12:37:21'),(10682,'biology','129.205.113.94',40,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 15:58:50','2020-07-23 15:58:53'),(10683,'commerce','52.91.50.150',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 16:35:17','2020-07-23 16:35:17'),(10684,'economics','54.158.23.7',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-23 20:04:53','2020-07-23 20:06:13'),(10685,'insurance','54.158.23.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 20:38:48','2020-07-23 20:38:48'),(10686,'english','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10687,'physics','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10688,'englishlit','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10689,'crk','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:56'),(10690,'geography','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:56','2020-07-23 22:53:56'),(10691,'insurance','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:56','2020-07-23 22:53:56'),(10692,'irk','3.93.234.122',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 23:46:27','2020-07-23 23:46:27'),(10693,'englishlit','3.93.234.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 00:00:05','2020-07-24 00:00:05'),(10694,'commerce','52.91.97.199',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 02:39:14','2020-07-24 02:39:14'),(10695,'english','54.144.20.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 04:14:21','2020-07-24 04:14:21'),(10696,'chemistry','54.175.57.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:01:12','2020-07-24 07:01:12'),(10697,'economics','54.175.57.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:09:33','2020-07-24 07:09:33'),(10698,'geography','54.91.125.95',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:50:17','2020-07-24 07:50:17'),(10699,'government','54.91.125.95',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 08:00:46','2020-07-24 08:00:46'),(10700,'economics','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 08:55:10','2020-07-24 08:55:10'),(10701,'commerce','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:05:30','2020-07-24 09:05:30'),(10702,'biology','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:22:11','2020-07-24 09:22:11'),(10703,'insurance','52.90.221.56',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:56:17','2020-07-24 09:56:17'),(10704,'english','52.90.221.56',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 10:26:11','2020-07-24 10:26:11'),(10705,'economics','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 12:40:41','2020-07-24 12:40:41'),(10706,'crk','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 12:43:43','2020-07-24 12:43:43'),(10707,'physics','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 13:09:15','2020-07-24 13:09:15'),(10708,'crk','3.86.247.69',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 13:49:46','2020-07-24 13:49:46'),(10709,'commerce','3.82.129.194',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 14:50:01','2020-07-24 14:50:02'),(10710,'history','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 16:39:08','2020-07-24 16:39:08'),(10711,'physics','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 17:09:54','2020-07-24 17:09:54'),(10712,'government','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 17:26:57','2020-07-24 17:26:57'),(10713,'physics','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 19:35:38','2020-07-24 19:35:38'),(10714,'currentaffairs','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 19:42:14','2020-07-24 19:42:14'),(10715,'english','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 20:04:34','2020-07-24 20:04:34'),(10716,'crk','34.238.174.197',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 20:46:58','2020-07-24 20:46:58'),(10717,'insurance','3.89.107.73',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 21:23:57','2020-07-24 21:23:57'),(10718,'government','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:22:31','2020-07-24 22:22:31'),(10719,'englishlit','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:29:40','2020-07-24 22:29:40'),(10720,'chemistry','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:40:36','2020-07-24 22:40:36'),(10721,'economics','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 23:28:50','2020-07-24 23:28:50'),(10722,'geography','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 23:58:05','2020-07-24 23:58:05'),(10723,'crk','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 00:18:23','2020-07-25 00:18:23'),(10724,'english','54.156.47.47',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 01:27:57','2020-07-25 01:27:57'),(10725,'biology','3.80.22.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 02:21:10','2020-07-25 02:21:10'),(10726,'currentaffairs','3.80.22.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 02:34:02','2020-07-25 02:34:02'),(10727,'economics','18.234.149.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 06:53:27','2020-07-25 06:53:27'),(10728,'currentaffairs','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:19:21','2020-07-25 08:19:21'),(10729,'civiledu','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:23:31','2020-07-25 08:23:31'),(10730,'geography','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:50:09','2020-07-25 08:50:09'),(10731,'english','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:03:03','2020-07-25 10:03:03'),(10732,'history','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:09:13','2020-07-25 10:09:13'),(10733,'biology','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:30:13','2020-07-25 10:30:13'),(10734,'accounting','18.215.241.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 11:59:50','2020-07-25 11:59:50'),(10735,'geography','54.92.143.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 15:47:23','2020-07-25 15:47:23'),(10736,'history','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 16:50:33','2020-07-25 16:50:33'),(10737,'englishlit','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 16:55:08','2020-07-25 16:55:08'),(10738,'english','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 17:06:43','2020-07-25 17:06:43'),(10739,'physics','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 17:21:17','2020-07-25 17:21:17'),(10740,'insurance','3.92.54.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 19:57:17','2020-07-25 19:57:17'),(10741,'accounting','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:17:40','2020-07-25 22:17:40'),(10742,'biology','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:33:58','2020-07-25 22:33:58'),(10743,'currentaffairs','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:57:50','2020-07-25 22:57:50'),(10744,'geography','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 23:04:44','2020-07-25 23:04:44'),(10745,'physics','54.196.77.219',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:09:59','2020-07-26 00:09:59'),(10746,'geography','54.196.77.219',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:15:49','2020-07-26 00:37:55'),(10747,'mathematics','54.196.77.219',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:17:08','2020-07-26 00:37:04'),(10748,'english','54.196.77.219',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 01:09:23','2020-07-26 01:09:23'),(10749,'englishlit','52.87.51.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 02:59:27','2020-07-26 02:59:27'),(10750,'physics','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 03:33:40','2020-07-26 03:33:40'),(10751,'currentaffairs','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:06:40','2020-07-26 04:06:40'),(10752,'chemistry','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:24:08','2020-07-26 04:24:08'),(10753,'englishlit','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:38:32','2020-07-26 04:38:32'),(10754,'chemistry','35.173.205.203',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 05:43:58','2020-07-26 05:43:58'),(10755,'biology','35.173.205.203',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 05:53:03','2020-07-26 05:53:03'),(10756,'geography','54.144.125.3',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 08:42:11','2020-07-26 08:42:12'),(10757,'mathematics','54.144.125.3',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:15:30','2020-07-26 10:17:04'),(10758,'history','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:23:40','2020-07-26 09:23:40'),(10759,'government','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:26:37','2020-07-26 09:26:37'),(10760,'chemistry','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:46:38','2020-07-26 09:46:38'),(10761,'accounting','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 11:08:38','2020-07-26 11:08:38'),(10762,'government','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 11:30:21','2020-07-26 11:30:21'),(10763,'physics','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 12:05:55','2020-07-26 12:05:55'),(10764,'accounting','3.95.236.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 15:04:50','2020-07-26 15:04:50'),(10765,'chemistry','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 16:33:46','2020-07-26 16:33:46'),(10766,'english','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 16:38:14','2020-07-26 16:38:14'),(10767,'biology','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 17:06:07','2020-07-26 17:06:07'),(10768,'history','52.201.234.18',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 18:43:32','2020-07-26 18:52:19'),(10769,'irk','174.129.160.146',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 22:34:57','2020-07-26 22:34:57'),(10770,'economics','52.71.169.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 02:06:28','2020-07-27 02:06:28'),(10771,'economics','54.81.49.33',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:28:05','2020-07-27 04:58:54'),(10772,'englishlit','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10773,'crk','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10774,'civiledu','54.81.49.33',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:58:54'),(10775,'insurance','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10776,'currentaffairs','54.81.49.33',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:58:54'),(10777,'history','54.81.49.33',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:58','2020-07-27 05:15:10'),(10778,'english','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10779,'mathematics','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10780,'accounting','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10781,'biology','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10782,'chemistry','3.94.145.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:00:25','2020-07-27 06:00:25'),(10783,'history','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:47:31','2020-07-27 06:47:31'),(10784,'englishlit','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:54:13','2020-07-27 06:54:13'),(10785,'irk','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 07:07:31','2020-07-27 07:07:31'),(10786,'commerce','107.20.42.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 09:52:42','2020-07-27 09:52:42'),(10787,'insurance','3.86.238.35',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 10:46:53','2020-07-27 10:46:53'),(10788,'english','3.85.236.123',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 11:27:30','2020-07-27 11:27:30'),(10789,'mathematics','54.91.169.111',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 13:25:56','2020-07-27 13:31:18'),(10790,'economics','35.171.165.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 14:37:15','2020-07-27 14:37:15'),(10791,'chemistry','34.207.248.6',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 15:18:15','2020-07-27 15:18:15'),(10792,'government','52.205.44.192',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 18:13:49','2020-07-27 18:13:49'),(10793,'crk','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 19:27:04','2020-07-27 19:27:04'),(10794,'physics','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 19:50:11','2020-07-27 19:50:11'),(10795,'economics','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 20:00:19','2020-07-27 20:00:19'),(10796,'commerce','52.90.125.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 22:19:32','2020-07-27 22:19:32'),(10797,'history','54.86.33.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 23:34:07','2020-07-27 23:34:07'),(10798,'geography','54.86.33.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 23:37:11','2020-07-27 23:37:11'),(10799,'government','54.92.185.193',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:02:34','2020-07-28 01:02:34'),(10800,'biology','54.92.185.193',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:03:08','2020-08-01 04:29:11'),(10801,'geography','54.92.185.193',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:22:18','2020-08-01 04:29:12'),(10802,'physics','54.92.185.193',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:26:52','2020-07-28 01:26:52'),(10803,'physics','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:18:07','2020-07-28 02:18:07'),(10804,'englishlit','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:21:30','2020-07-28 02:21:30'),(10805,'economics','54.90.185.60',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:23:43','2020-07-28 03:03:33'),(10806,'currentaffairs','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:46:19','2020-07-28 02:46:19'),(10807,'english','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 03:03:38','2020-07-28 03:03:38'),(10808,'english','52.91.215.173',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 04:06:52','2020-07-28 04:06:52'),(10809,'crk','52.91.215.173',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 04:25:34','2020-07-28 04:25:34'),(10810,'englishlit','18.215.242.104',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 05:03:57','2020-07-28 05:03:57'),(10811,'insurance','18.215.242.104',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 05:23:14','2020-07-28 05:23:14'),(10812,'government','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 06:09:59','2020-07-28 06:09:59'),(10813,'chemistry','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 06:25:08','2020-07-28 06:25:08'),(10814,'physics','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 06:30:39','2020-07-28 06:30:39'),(10815,'crk','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 06:59:14','2020-07-28 06:59:14'),(10816,'economics','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 07:01:23','2020-07-28 07:01:23'),(10817,'geography','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 07:11:41','2020-07-28 07:11:41'),(10818,'chemistry','52.201.243.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 08:23:06','2020-07-28 08:23:06'),(10819,'biology','52.201.243.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 08:50:38','2020-07-28 08:50:38'),(10820,'english','52.201.243.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 09:21:31','2020-07-28 09:21:31'),(10821,'currentaffairs','3.84.39.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 10:07:36','2020-07-28 10:07:36'),(10822,'chemistry','3.84.39.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 10:34:02','2020-07-28 10:34:02'),(10823,'currentaffairs','54.156.73.100',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 15:43:55','2020-07-28 15:43:55'),(10824,'civiledu','54.156.73.100',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 16:03:41','2020-07-28 16:03:41'),(10825,'biology','54.80.3.159',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 17:09:21','2020-08-03 22:49:01'),(10826,'history','54.80.3.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 17:09:52','2020-07-28 17:09:52'),(10827,'accounting','54.80.3.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 17:33:19','2020-07-28 17:33:19'),(10828,'chemistry','3.89.8.238',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 19:41:50','2020-07-28 19:41:50'),(10829,'english','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:55','2020-07-28 21:30:55'),(10830,'mathematics','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:55','2020-07-28 21:30:55'),(10831,'commerce','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:55','2020-07-28 21:30:55'),(10832,'accounting','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:56','2020-07-28 21:30:56'),(10833,'physics','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:56','2020-07-28 21:30:56'),(10834,'government','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:56','2020-07-28 21:30:56'),(10835,'crk','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:56','2020-07-28 21:30:56'),(10836,'physics','52.91.114.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 22:37:42','2020-07-28 22:37:42'),(10837,'economics','52.91.114.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 22:41:39','2020-07-28 22:41:39'),(10838,'english','35.175.137.147',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 23:18:37','2020-08-03 01:32:59'),(10839,'history','34.207.184.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 00:03:00','2020-07-29 00:03:00'),(10840,'geography','34.207.184.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 00:05:31','2020-07-29 00:05:31'),(10841,'englishlit','34.207.184.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 00:16:42','2020-07-29 00:16:42'),(10842,'englishlit','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 00:54:44','2020-07-29 00:54:44'),(10843,'geography','18.212.37.181',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 01:45:40','2020-07-29 01:45:40'),(10844,'physics','18.212.37.181',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 02:08:02','2020-07-29 02:08:02'),(10845,'insurance','18.212.37.181',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 02:21:25','2020-07-29 02:21:25'),(10846,'crk','52.206.154.18',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 03:07:34','2020-07-29 03:07:34'),(10847,'mathematics','52.206.154.18',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 03:16:48','2020-07-29 03:16:48'),(10848,'chemistry','40.77.167.212',1,'','US','','Virginia','Boydton','23917','36.6676','-78.3875','2020-07-29 03:56:15','2020-07-29 03:56:15'),(10849,'chemistry','52.3.90.15',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 05:02:12','2020-07-29 06:37:22'),(10850,'biology','52.3.90.15',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 05:21:22','2020-07-29 05:35:17'),(10851,'accounting','52.3.90.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 05:41:19','2020-07-29 05:41:19'),(10852,'currentaffairs','52.3.90.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 06:07:46','2020-07-29 06:07:46'),(10853,'geography','52.3.90.15',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 06:38:55','2020-07-29 06:42:08'),(10854,'physics','52.3.90.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 06:55:51','2020-07-29 06:55:51'),(10855,'mathematics','52.3.90.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 07:04:08','2020-07-29 07:04:08'),(10856,'mathematics','3.90.160.71',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 08:11:15','2020-07-29 08:32:08'),(10857,'english','3.90.160.71',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 08:38:21','2020-07-29 08:38:21'),(10858,'geography','3.90.160.71',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 09:04:45','2020-07-29 09:04:45'),(10859,'physics','54.198.183.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 10:15:14','2020-07-29 10:15:14'),(10860,'englishlit','54.159.213.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 11:09:35','2020-07-29 11:09:35'),(10861,'currentaffairs','18.212.188.75',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 11:47:10','2020-07-29 11:47:10'),(10862,'englishlit','18.212.188.75',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 11:59:11','2020-07-29 11:59:11'),(10863,'chemistry','18.212.188.75',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 12:25:35','2020-07-29 12:25:35'),(10864,'biology','18.208.147.241',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 13:25:12','2020-07-29 13:25:12'),(10865,'mathematics','52.201.137.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 14:54:23','2020-07-29 14:54:23'),(10866,'economics','52.201.137.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 15:23:30','2020-07-29 15:23:30'),(10867,'chemistry','3.80.45.191',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 16:02:21','2020-07-29 16:02:21'),(10868,'mathematics','54.196.93.42',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 16:45:07','2020-07-29 17:25:16'),(10869,'history','54.196.93.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 16:54:08','2020-07-29 16:54:08'),(10870,'accounting','54.196.93.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 17:54:21','2020-07-29 17:54:21'),(10871,'english','197.210.52.96',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:01:09','2020-07-29 18:01:22'),(10872,'english','197.210.53.110',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:10:41','2020-07-29 19:01:49'),(10873,'chemistry','197.210.53.105',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:24:12','2020-07-29 18:24:14'),(10874,'english','197.210.52.27',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:36:56','2020-07-29 18:51:30'),(10875,'english','197.210.53.185',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:38:00','2020-07-29 18:38:03'),(10876,'government','54.173.152.80',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 18:46:55','2020-07-29 19:03:06'),(10877,'commerce','197.210.52.27',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:51:36','2020-07-29 18:51:38'),(10878,'physics','54.87.252.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 19:42:32','2020-07-29 19:42:32'),(10879,'mathematics','54.87.252.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 20:00:21','2020-07-29 20:00:21'),(10880,'biology','50.17.32.216',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 21:28:44','2020-07-29 21:28:44'),(10881,'chemistry','50.17.32.216',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 21:29:16','2020-07-29 21:29:16'),(10882,'accounting','3.85.3.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 22:34:15','2020-07-29 22:34:15'),(10883,'biology','54.83.185.147',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 23:55:45','2020-07-29 23:55:45'),(10884,'government','35.171.165.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 00:45:01','2020-07-30 00:45:01'),(10885,'history','3.84.11.161',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 01:54:51','2020-07-30 02:21:02'),(10886,'chemistry','54.160.201.75',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 02:56:09','2020-07-30 02:56:09'),(10887,'crk','3.80.35.18',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 04:05:19','2020-07-30 04:05:19'),(10888,'accounting','3.91.68.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 05:08:46','2020-07-30 05:08:46'),(10889,'government','3.91.68.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 05:17:12','2020-07-30 05:17:12'),(10890,'irk','3.91.68.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 05:23:39','2020-07-30 05:23:39'),(10891,'commerce','3.80.87.112',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 06:47:01','2020-07-30 06:47:01'),(10892,'english','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:31:35'),(10893,'commerce','3.92.231.58',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:58:06'),(10894,'chemistry','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:31:35'),(10895,'englishlit','3.92.231.58',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:58:06'),(10896,'government','3.92.231.58',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:58:06'),(10897,'currentaffairs','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:36','2020-07-30 08:31:36'),(10898,'history','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:36','2020-07-30 08:31:36'),(10899,'crk','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:58:06','2020-07-30 08:58:06'),(10900,'economics','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:58:07','2020-07-30 08:58:07'),(10901,'civiledu','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:58:07','2020-07-30 08:58:07'),(10902,'insurance','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:58:07','2020-07-30 08:58:07'),(10903,'biology','3.93.171.183',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 10:16:33','2020-07-30 10:16:33'),(10904,'insurance','3.93.171.183',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 11:07:57','2020-07-30 11:07:57'),(10905,'history','100.24.49.157',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 12:21:42','2020-07-30 12:30:53'),(10906,'english','197.210.52.196',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-30 13:35:55','2020-07-30 13:35:58'),(10907,'english','197.210.53.28',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-30 13:36:54','2020-07-30 13:36:56'),(10908,'english','197.210.52.34',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-30 13:43:27','2020-07-30 13:43:29'),(10909,'english','197.210.52.100',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-30 13:44:10','2020-07-30 13:44:12'),(10910,'chemistry','54.160.205.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 13:53:04','2020-07-30 13:53:04'),(10911,'englishlit','54.160.205.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 14:06:37','2020-07-30 14:06:37'),(10912,'mathematics','54.82.10.146',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 14:53:45','2020-07-30 14:54:05'),(10913,'commerce','34.207.224.109',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 16:01:43','2020-07-30 16:01:43'),(10914,'english','107.22.153.35',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 18:57:08','2020-07-30 18:57:08'),(10915,'history','3.90.21.245',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 20:57:31','2020-07-30 20:57:31'),(10916,'government','54.197.205.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 23:08:48','2020-07-30 23:08:48'),(10917,'chemistry','54.197.205.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 23:09:28','2020-07-30 23:09:28'),(10918,'geography','34.227.109.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 23:53:11','2020-07-30 23:53:11'),(10919,'insurance','34.227.109.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 00:10:14','2020-07-31 00:10:14'),(10920,'english','54.167.229.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 00:44:33','2020-07-31 00:44:33'),(10921,'biology','54.167.229.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 01:00:25','2020-07-31 01:00:25'),(10922,'commerce','3.85.76.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 01:35:47','2020-07-31 01:35:47'),(10923,'economics','3.87.186.231',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 03:31:10','2020-07-31 03:55:17'),(10924,'crk','3.87.186.231',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 03:58:27','2020-07-31 03:58:27'),(10925,'physics','3.87.186.231',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 04:28:41','2020-07-31 04:28:41'),(10926,'insurance','107.21.68.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 05:20:36','2020-07-31 05:20:36'),(10927,'commerce','54.198.183.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 05:59:37','2020-07-31 05:59:37'),(10928,'insurance','54.198.183.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 06:03:41','2020-07-31 06:03:41'),(10929,'physics','3.86.88.4',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:01:12','2020-07-31 08:01:12'),(10930,'mathematics','3.83.68.206',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 08:49:35'),(10931,'biology','3.83.68.206',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 08:53:54'),(10932,'physics','3.83.68.206',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 09:41:28'),(10933,'chemistry','3.83.68.206',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 08:49:35'),(10934,'economics','3.83.68.206',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 08:49:35'),(10935,'irk','3.83.68.206',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:36','2020-07-31 08:49:36'),(10936,'currentaffairs','3.83.68.206',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:36','2020-07-31 10:33:56'),(10937,'government','3.83.68.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 09:08:38','2020-07-31 09:08:38'),(10938,'englishlit','3.83.68.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 10:13:30','2020-07-31 10:13:30'),(10939,'english','3.83.68.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 10:24:28','2020-07-31 10:24:28'),(10940,'crk','18.234.66.250',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 11:58:01','2020-07-31 11:58:01'),(10941,'insurance','18.234.66.250',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 11:59:29','2020-07-31 11:59:29'),(10942,'chemistry','54.196.132.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 12:44:28','2020-07-31 12:44:28'),(10943,'englishlit','54.196.132.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 12:53:34','2020-07-31 12:53:34'),(10944,'economics','54.196.132.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 13:15:01','2020-07-31 13:15:01'),(10945,'government','54.196.132.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 13:24:52','2020-07-31 13:24:52'),(10946,'biology','3.84.231.20',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 15:42:26','2020-07-31 15:42:26'),(10947,'english','52.90.43.238',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 16:24:46','2020-07-31 16:24:46'),(10948,'chemistry','105.112.180.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-07-31 17:23:42','2020-07-31 17:23:42'),(10949,'crk','3.81.218.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 18:34:35','2020-07-31 18:34:35'),(10950,'currentaffairs','54.89.115.133',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 20:53:49','2020-07-31 20:53:49'),(10951,'economics','54.89.115.133',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 20:54:21','2020-07-31 20:54:21'),(10952,'commerce','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10953,'biology','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10954,'physics','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10955,'chemistry','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10956,'englishlit','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10957,'irk','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:42','2020-07-31 22:32:42'),(10958,'insurance','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:42','2020-07-31 22:32:42'),(10959,'currentaffairs','52.3.103.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:35:12','2020-07-31 22:35:12'),(10960,'civiledu','54.166.224.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 23:29:00','2020-07-31 23:29:00'),(10961,'accounting','54.173.129.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 01:13:24','2020-08-01 01:13:24'),(10962,'biology','54.173.129.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 01:25:40','2020-08-01 01:25:40'),(10963,'chemistry','54.175.234.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 02:11:12','2020-08-01 02:11:12'),(10964,'civiledu','34.207.77.33',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 03:09:13','2020-08-01 03:09:13'),(10965,'accounting','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:11','2020-08-01 04:29:11'),(10966,'englishlit','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:11','2020-08-01 04:29:12'),(10967,'crk','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:12','2020-08-01 04:29:12'),(10968,'insurance','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:12','2020-08-01 04:29:12'),(10969,'history','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:12','2020-08-01 04:29:12'),(10970,'physics','54.226.180.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 06:32:01','2020-08-01 06:32:01'),(10971,'geography','54.226.180.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 06:32:05','2020-08-01 06:32:05'),(10972,'english','54.226.180.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 06:59:07','2020-08-01 06:59:07'),(10973,'englishlit','54.226.180.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 07:05:02','2020-08-01 07:05:02'),(10974,'crk','18.212.61.37',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 08:36:16','2020-08-01 08:36:16'),(10975,'crk','54.234.142.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 10:41:56','2020-08-01 10:41:56'),(10976,'history','54.234.142.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 10:57:12','2020-08-01 10:57:12'),(10977,'englishlit','54.234.142.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 10:57:20','2020-08-01 10:57:20'),(10978,'english','197.210.71.157',160,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-01 10:58:36','2020-08-01 11:47:53'),(10979,'mathematics','18.207.178.82',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 12:30:35','2020-08-01 13:14:51'),(10980,'accounting','18.207.178.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 12:47:19','2020-08-01 12:47:19'),(10981,'currentaffairs','18.207.178.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 12:56:48','2020-08-01 12:56:48'),(10982,'geography','18.207.178.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 12:57:02','2020-08-01 12:57:02'),(10983,'physics','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 13:55:31','2020-08-01 13:55:31'),(10984,'mathematics','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 14:12:02','2020-08-01 14:12:02'),(10985,'geography','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 14:16:45','2020-08-01 14:16:45'),(10986,'mathematics','18.212.230.154',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:02:00','2020-08-01 15:34:11'),(10987,'english','18.212.230.154',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:21:13','2020-08-01 15:21:13'),(10988,'geography','18.212.230.154',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:28:17','2020-08-01 15:34:12'),(10989,'commerce','18.212.230.154',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:32:10','2020-08-01 15:32:10'),(10990,'accounting','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10991,'chemistry','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10992,'irk','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10993,'insurance','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10994,'history','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10995,'physics','54.85.213.9',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 17:03:34','2020-08-01 17:03:34'),(10996,'englishlit','54.85.213.9',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 17:18:57','2020-08-01 17:18:57'),(10997,'currentaffairs','184.73.119.167',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 19:03:07','2020-08-01 19:03:07'),(10998,'englishlit','184.73.119.167',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 19:23:50','2020-08-01 19:23:50'),(10999,'biology','184.73.119.167',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 19:34:50','2020-08-01 19:34:50'),(11000,'chemistry','184.73.119.167',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 20:11:31','2020-08-01 20:11:31'),(11001,'mathematics','54.196.27.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 21:44:46','2020-08-01 21:44:46'),(11002,'commerce','3.94.7.62',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 23:23:09','2020-08-01 23:23:09'),(11003,'english','3.94.7.62',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 23:54:51','2020-08-01 23:54:51'),(11004,'mathematics','3.94.7.62',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 23:55:07','2020-08-02 00:02:38'),(11005,'currentaffairs','54.80.76.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 01:24:02','2020-08-02 01:24:02'),(11006,'government','34.229.58.184',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 02:46:31','2020-08-02 03:06:00'),(11007,'government','18.206.98.71',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 04:01:49','2020-08-02 04:01:49'),(11008,'accounting','18.233.6.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 04:51:28','2020-08-02 04:51:28'),(11009,'government','54.145.131.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 07:28:53','2020-08-02 07:28:53'),(11010,'biology','54.145.131.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 07:38:39','2020-08-02 07:38:39'),(11011,'history','54.145.131.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 07:45:26','2020-08-02 07:45:26'),(11012,'history','54.89.218.19',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 08:30:34','2020-08-02 08:30:34'),(11013,'government','52.71.254.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 09:17:41','2020-08-02 09:17:41'),(11014,'englishlit','107.20.36.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 10:53:52','2020-08-02 10:53:52'),(11015,'commerce','107.20.36.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 10:55:52','2020-08-02 10:55:52'),(11016,'government','107.20.36.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 11:11:49','2020-08-02 11:11:49'),(11017,'insurance','54.80.64.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 11:51:23','2020-08-02 11:51:23'),(11018,'irk','54.80.64.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 12:00:52','2020-08-02 12:00:52'),(11019,'physics','102.89.3.48',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-02 12:18:12','2020-08-02 12:18:16'),(11020,'chemistry','102.89.3.48',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-02 12:18:12','2020-08-02 12:18:16'),(11021,'english','102.89.2.37',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-02 12:18:12','2020-08-02 12:18:16'),(11022,'physics','54.165.123.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 12:42:04','2020-08-02 12:42:04'),(11023,'economics','54.88.178.170',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 16:27:17','2020-08-02 16:47:55'),(11024,'economics','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 18:05:21','2020-08-02 18:05:21'),(11025,'insurance','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 18:06:26','2020-08-02 18:06:26'),(11026,'chemistry','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 18:10:03','2020-08-02 18:10:03'),(11027,'history','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 18:38:04','2020-08-02 18:38:04'),(11028,'crk','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 19:00:19','2020-08-02 19:00:19'),(11029,'biology','54.236.112.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 19:47:26','2020-08-02 19:47:26'),(11030,'history','54.236.112.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 19:53:02','2020-08-02 19:53:02'),(11031,'chemistry','18.206.248.186',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 20:40:45','2020-08-02 20:40:45'),(11032,'irk','18.206.248.186',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 20:47:36','2020-08-02 20:47:36'),(11033,'englishlit','18.206.248.186',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 21:15:39','2020-08-02 21:15:39'),(11034,'government','52.91.234.242',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 22:06:32','2020-08-02 22:06:32'),(11035,'economics','54.167.102.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 23:45:51','2020-08-02 23:45:51'),(11036,'government','54.161.137.172',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 04:22:51','2020-08-03 04:22:51'),(11037,'english','54.161.137.172',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 04:31:17','2020-08-03 04:31:17'),(11038,'crk','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:11:33','2020-08-03 05:11:33'),(11039,'economics','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:17:27','2020-08-03 05:17:27'),(11040,'chemistry','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:21:20','2020-08-03 05:21:20'),(11041,'government','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:41:24','2020-08-03 05:41:24'),(11042,'geography','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:46:40','2020-08-03 05:46:40'),(11043,'commerce','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 06:13:26','2020-08-03 06:13:26'),(11044,'biology','3.84.207.211',1,'United States','US','VA','Virginia','Ashburn','','39.0481','-77.4728','2020-08-03 06:25:08','2020-08-03 06:25:08'),(11045,'insurance','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 06:53:08','2020-08-03 06:53:08'),(11046,'english','3.83.204.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 07:48:29','2020-08-03 07:48:29'),(11047,'physics','184.72.189.245',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 10:22:04','2020-08-03 10:22:04'),(11048,'economics','184.72.189.245',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 10:32:24','2020-08-03 10:32:24'),(11049,'crk','184.72.189.245',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 10:41:28','2020-08-03 10:41:28'),(11050,'commerce','18.234.210.121',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 12:28:41','2020-08-03 12:28:41'),(11051,'physics','34.229.129.196',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 14:16:13','2020-08-03 14:17:43'),(11052,'government','34.229.129.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 14:38:57','2020-08-03 14:38:57'),(11053,'mathematics','34.229.129.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 14:48:06','2020-08-03 14:48:06'),(11054,'biology','34.229.129.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 15:11:44','2020-08-03 15:11:44'),(11055,'englishlit','34.229.129.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 15:16:42','2020-08-03 15:16:42'),(11056,'physics','100.24.25.50',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 15:55:08','2020-08-03 15:55:08'),(11057,'english','100.24.25.50',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 16:01:24','2020-08-03 16:01:24'),(11058,'englishlit','100.24.25.50',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 16:30:38','2020-08-03 16:30:38'),(11059,'currentaffairs','100.24.25.50',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 16:56:41','2020-08-03 16:56:41'),(11060,'crk','18.208.194.126',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 18:01:52','2020-08-03 18:01:52'),(11061,'insurance','54.164.15.197',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 18:48:09','2020-08-03 18:48:09'),(11062,'economics','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:11:53','2020-08-03 20:11:53'),(11063,'chemistry','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:19:06','2020-08-03 20:19:06'),(11064,'englishlit','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:20:34','2020-08-03 20:20:34'),(11065,'government','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:24:31','2020-08-03 20:24:31'),(11066,'geography','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:53:58','2020-08-03 20:53:58'),(11067,'english','54.80.3.159',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:21:48','2020-08-03 22:49:01'),(11068,'physics','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:01','2020-08-03 22:49:01'),(11069,'government','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:01','2020-08-03 22:49:01'),(11070,'crk','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:01','2020-08-03 22:49:02'),(11071,'economics','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:02','2020-08-03 22:49:02'),(11072,'civiledu','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:02','2020-08-03 22:49:02'),(11073,'chemistry','54.144.209.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 23:27:51','2020-08-03 23:27:51'),(11074,'currentaffairs','54.144.209.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 23:36:14','2020-08-03 23:36:14'),(11075,'biology','54.144.209.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 23:42:48','2020-08-03 23:42:48'),(11076,'mathematics','34.227.25.213',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 03:09:04','2020-08-13 12:56:47'),(11077,'commerce','3.91.236.94',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 04:38:34','2020-08-04 04:38:34'),(11078,'currentaffairs','3.91.236.94',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 04:50:48','2020-08-04 04:50:48'),(11079,'civiledu','3.80.101.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 05:25:55','2020-08-04 05:25:55'),(11080,'history','18.204.198.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 07:12:49','2020-08-04 07:12:49'),(11081,'biology','18.204.198.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 07:15:16','2020-08-04 07:15:16'),(11082,'geography','18.204.198.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 07:18:51','2020-08-04 07:18:51'),(11083,'chemistry','184.72.158.83',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 09:21:17','2020-08-04 09:21:17'),(11084,'english','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:10','2020-08-04 10:33:10'),(11085,'biology','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:33:11'),(11086,'chemistry','54.227.124.205',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:55:06'),(11087,'government','54.227.124.205',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:55:06'),(11088,'geography','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:33:11'),(11089,'economics','54.227.124.205',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:55:06'),(11090,'irk','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:33:11'),(11091,'mathematics','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:55:05','2020-08-04 10:55:05'),(11092,'commerce','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:55:05','2020-08-04 10:55:05'),(11093,'accounting','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:55:05','2020-08-04 10:55:05'),(11094,'insurance','54.227.124.205',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:55:06','2020-08-04 11:06:30'),(11095,'geography','34.227.205.152',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 12:17:57','2020-08-04 12:17:57'),(11096,'history','34.227.205.152',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 12:29:21','2020-08-04 12:29:21'),(11097,'physics','34.227.205.152',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 12:31:07','2020-08-04 12:31:07'),(11098,'english','184.73.64.229',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 13:18:10','2020-08-04 13:18:10'),(11099,'chemistry','184.73.64.229',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 13:26:35','2020-08-04 13:26:35'),(11100,'physics','34.226.248.152',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 14:20:06','2020-08-04 14:20:06'),(11101,'mathematics','54.161.120.114',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 15:41:13','2020-08-04 15:41:13'),(11102,'insurance','54.161.120.114',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 16:10:09','2020-08-04 16:10:09'),(11103,'crk','54.161.120.114',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 16:41:33','2020-08-04 16:41:33'),(11104,'englishlit','54.161.120.114',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 17:09:00','2020-08-04 17:09:00'),(11105,'biology','54.210.144.234',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 18:39:39','2020-08-04 18:39:39'),(11106,'geography','54.210.144.234',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 18:42:38','2020-08-04 18:42:38'),(11107,'mathematics','54.210.144.234',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 18:52:59','2020-08-04 18:52:59'),(11108,'currentaffairs','54.156.81.192',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 19:39:49','2020-08-04 19:39:49'),(11109,'accounting','54.156.81.192',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 19:44:09','2020-08-04 19:44:09'),(11110,'physics','54.156.81.192',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 19:46:08','2020-08-04 19:46:08'),(11111,'mathematics','54.90.140.125',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 21:20:53','2020-08-04 21:33:13'),(11112,'english','54.90.140.125',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 21:40:11','2020-08-04 21:40:11'),(11113,'geography','54.90.140.125',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 21:40:44','2020-08-04 21:40:44'),(11114,'physics','54.166.224.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 23:28:14','2020-08-04 23:28:14'),(11115,'englishlit','54.166.224.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 23:52:44','2020-08-04 23:52:44'),(11116,'currentaffairs','54.166.224.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 00:25:48','2020-08-05 00:25:48'),(11117,'biology','54.224.51.57',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 01:03:27','2020-08-05 01:44:13'),(11118,'insurance','54.224.51.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 01:25:01','2020-08-05 01:25:01'),(11119,'english','54.224.51.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 01:53:06','2020-08-05 01:53:06'),(11120,'englishlit','54.224.51.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 02:26:17','2020-08-05 02:26:17'),(11121,'chemistry','54.224.51.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 02:32:41','2020-08-05 02:32:41'),(11122,'english','54.89.110.93',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 05:23:35','2020-08-05 05:23:35'),(11123,'commerce','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 06:33:31','2020-08-05 06:33:31'),(11124,'mathematics','184.72.205.157',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 06:34:42','2020-08-05 07:02:06'),(11125,'currentaffairs','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 06:53:50','2020-08-05 06:53:50'),(11126,'history','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 07:15:50','2020-08-05 07:15:50'),(11127,'government','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 07:17:02','2020-08-05 07:17:02'),(11128,'civiledu','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 07:40:48','2020-08-05 07:40:48'),(11129,'government','3.95.170.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 08:19:24','2020-08-05 08:43:23'),(11130,'crk','3.95.170.247',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 08:27:36','2020-08-05 08:27:36'),(11131,'physics','3.95.170.247',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 08:40:22','2020-08-05 08:40:22'),(11132,'government','54.175.234.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 11:04:25','2020-08-05 11:04:25'),(11133,'accounting','3.88.242.175',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 12:24:19','2020-08-05 12:24:19'),(11134,'biology','3.87.173.252',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 14:11:37','2020-08-05 14:11:37'),(11135,'government','3.87.173.252',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 14:40:06','2020-08-05 14:40:06'),(11136,'economics','3.87.173.252',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 14:42:22','2020-08-05 14:42:22'),(11137,'civiledu','3.87.173.252',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 14:45:49','2020-08-05 14:45:49'),(11138,'history','3.87.173.252',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 15:02:26','2020-08-05 15:20:09'),(11139,'englishlit','54.161.233.35',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 16:18:32','2020-08-05 16:18:32'),(11140,'insurance','54.226.47.140',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 17:13:03','2020-08-05 17:13:03'),(11141,'irk','18.207.92.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 18:36:35','2020-08-05 18:36:35'),(11142,'commerce','18.207.92.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 18:48:13','2020-08-05 18:48:13'),(11143,'physics','54.152.230.200',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 20:00:45','2020-08-05 20:00:45'),(11144,'crk','54.152.230.200',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 20:11:11','2020-08-05 20:11:11'),(11145,'crk','34.229.15.151',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 21:00:09','2020-08-05 21:00:09'),(11146,'economics','34.229.15.151',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 21:03:31','2020-08-05 21:03:31'),(11147,'economics','54.85.52.148',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 22:54:12','2020-08-05 22:54:12'),(11148,'english','54.85.52.148',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 23:17:52','2020-08-05 23:17:52'),(11149,'insurance','52.23.220.25',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 00:36:34','2020-08-06 00:36:34'),(11150,'economics','3.85.73.59',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 01:28:49','2020-08-06 01:28:49'),(11151,'crk','3.85.73.59',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 01:37:40','2020-08-06 01:37:40'),(11152,'history','3.85.73.59',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 02:08:22','2020-08-06 02:08:50'),(11153,'government','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:12:32','2020-08-06 04:15:37'),(11154,'physics','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:14:05','2020-08-06 03:16:21'),(11155,'irk','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:30:58','2020-08-06 03:58:43'),(11156,'history','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:37:14','2020-08-06 04:24:32'),(11157,'chemistry','54.234.122.99',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:51:30','2020-08-06 03:51:30'),(11158,'englishlit','54.234.122.99',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 04:05:17','2020-08-06 04:05:17'),(11159,'currentaffairs','54.234.122.99',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 04:07:38','2020-08-06 04:07:38'),(11160,'geography','54.234.122.99',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 04:08:52','2020-08-06 04:08:52'),(11161,'commerce','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 04:09:23','2020-08-06 04:20:09'),(11162,'government','100.27.28.222',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:08:19','2020-08-06 06:06:41'),(11163,'physics','100.27.28.222',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:10:32','2020-08-06 05:12:37'),(11164,'irk','100.27.28.222',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:24:16','2020-08-06 05:50:07'),(11165,'history','100.27.28.222',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:30:09','2020-08-06 05:30:09'),(11166,'currentaffairs','100.27.28.222',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:58:47','2020-08-06 05:58:47'),(11167,'geography','100.27.28.222',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 06:00:29','2020-08-06 06:00:29'),(11168,'commerce','100.27.28.222',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 06:00:59','2020-08-06 06:00:59'),(11169,'english','54.175.152.162',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 08:46:23','2020-08-06 08:46:23'),(11170,'geography','3.87.172.207',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 12:20:45','2020-08-06 12:20:45'),(11171,'government','23.20.178.5',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 12:59:06','2020-08-06 12:59:06'),(11172,'commerce','23.20.178.5',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 13:31:48','2020-08-06 13:31:48'),(11173,'insurance','3.84.191.101',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 14:40:51','2020-08-06 14:40:51'),(11174,'chemistry','3.84.191.101',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 14:41:39','2020-08-06 14:41:39'),(11175,'english','3.84.191.101',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 15:09:42','2020-08-06 15:09:42'),(11176,'economics','35.153.209.1',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 16:39:01','2020-08-06 16:39:01'),(11177,'physics','35.153.209.1',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 17:07:29','2020-08-06 17:07:29'),(11178,'commerce','18.206.220.44',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 19:45:46','2020-08-06 19:45:46'),(11179,'physics','54.224.79.154',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 21:04:33','2020-08-06 21:04:33'),(11180,'mathematics','54.224.79.154',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 21:14:56','2020-08-06 21:14:56'),(11181,'physics','54.159.17.82',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 21:52:44','2020-08-06 21:52:44'),(11182,'government','54.159.17.82',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 21:59:55','2020-08-06 21:59:55'),(11183,'physics','3.87.36.152',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 23:04:02','2020-08-06 23:04:02'),(11184,'currentaffairs','3.83.114.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 23:50:09','2020-08-06 23:50:09'),(11185,'english','54.152.136.131',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 00:59:16','2020-08-07 00:59:16'),(11186,'crk','54.152.136.131',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 01:15:40','2020-08-07 01:15:40'),(11187,'chemistry','3.85.9.206',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 02:24:42','2020-08-07 02:24:42'),(11188,'insurance','3.85.9.206',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 02:25:13','2020-08-07 02:25:13'),(11189,'government','3.85.9.206',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 02:29:12','2020-08-07 02:29:12'),(11190,'englishlit','3.85.9.206',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 02:39:33','2020-08-07 02:39:33'),(11191,'chemistry','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 03:23:34','2020-08-07 03:23:34'),(11192,'economics','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 03:44:44','2020-08-07 03:44:44'),(11193,'geography','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 03:54:37','2020-08-07 03:54:37'),(11194,'crk','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 04:28:29','2020-08-07 04:28:29'),(11195,'biology','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 04:46:44','2020-08-07 04:46:44'),(11196,'english','3.90.17.44',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 05:36:50','2020-08-07 05:36:50'),(11197,'chemistry','197.253.9.53',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-07 08:11:02','2020-08-10 09:36:19'),(11198,'commerce','107.21.169.213',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 11:26:37','2020-08-07 11:26:37'),(11199,'currentaffairs','107.21.169.213',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 11:34:39','2020-08-07 11:34:39'),(11200,'mathematics','54.174.200.1',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 12:44:50','2020-08-07 12:44:50'),(11201,'history','54.221.171.232',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 13:49:45','2020-08-07 13:49:45'),(11202,'biology','54.221.171.232',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 13:51:15','2020-08-07 13:51:15'),(11203,'accounting','54.221.171.232',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 13:51:45','2020-08-07 13:51:45'),(11204,'commerce','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:09','2020-08-07 17:42:10'),(11205,'accounting','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11206,'physics','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11207,'chemistry','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11208,'geography','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11209,'economics','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11210,'civiledu','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11211,'englishlit','54.152.199.92',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 20:47:07','2020-08-07 20:47:07'),(11212,'physics','54.152.199.92',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 21:18:14','2020-08-07 21:18:14'),(11213,'mathematics','3.84.11.161',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 01:45:31','2020-08-08 01:45:31'),(11214,'geography','54.81.96.169',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 02:43:27','2020-08-08 02:43:27'),(11215,'geography','54.152.241.237',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 03:24:11','2020-08-08 03:24:11'),(11216,'english','54.152.241.237',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 03:42:12','2020-08-08 03:42:12'),(11217,'mathematics','54.152.241.237',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 03:46:30','2020-08-08 03:46:30'),(11218,'geography','3.86.188.202',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 04:23:34','2020-08-08 04:23:34'),(11219,'english','3.86.188.202',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 04:34:51','2020-08-08 04:34:51'),(11220,'physics','54.80.237.218',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 06:31:58','2020-08-08 06:31:58'),(11221,'currentaffairs','52.202.44.153',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 07:28:53','2020-08-08 07:28:53'),(11222,'englishlit','52.202.44.153',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 07:51:03','2020-08-08 07:51:03'),(11223,'english','3.92.214.183',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 08:36:50','2020-08-08 08:36:50'),(11224,'chemistry','3.92.214.183',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 08:56:46','2020-08-08 08:56:46'),(11225,'mathematics','184.72.205.168',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 12:18:32','2020-08-08 12:53:49'),(11226,'history','184.72.205.168',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 12:53:25','2020-08-08 12:53:25'),(11227,'government','184.72.205.168',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 13:15:33','2020-08-08 13:15:33'),(11228,'accounting','184.72.205.168',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 13:45:08','2020-08-08 13:45:08'),(11229,'physics','100.26.51.248',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 14:35:33','2020-08-08 14:35:33'),(11230,'government','100.26.51.248',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 14:45:34','2020-08-08 14:45:34'),(11231,'economics','3.81.102.105',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 16:31:49','2020-08-08 16:31:49'),(11232,'civiledu','3.81.102.105',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 16:39:45','2020-08-08 16:39:45'),(11233,'accounting','107.21.87.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 18:22:14','2020-08-08 18:22:14'),(11234,'biology','54.152.253.2',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 19:33:12','2020-08-08 19:33:12'),(11235,'government','54.84.74.107',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 20:58:36','2020-08-08 20:58:36'),(11236,'irk','34.205.127.83',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 00:41:28','2020-08-09 00:41:28'),(11237,'physics','3.83.111.174',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 01:35:12','2020-08-09 01:35:12'),(11238,'crk','35.175.231.170',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 07:48:52','2020-08-09 07:48:52'),(11239,'history','35.175.231.170',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 07:58:03','2020-08-09 07:58:03'),(11240,'history','54.85.57.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 08:36:40','2020-08-09 08:36:40'),(11241,'englishlit','3.90.66.124',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 10:41:12','2020-08-09 10:41:12'),(11242,'english','54.209.222.135',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 14:27:26','2020-08-09 14:27:26'),(11243,'chemistry','34.228.228.69',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 16:49:01','2020-08-09 16:49:01'),(11244,'commerce','54.159.197.205',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 19:22:10','2020-08-09 19:22:10'),(11245,'geography','54.159.197.205',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 19:28:41','2020-08-09 19:28:41'),(11246,'biology','54.159.197.205',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 19:34:11','2020-08-09 19:34:11'),(11247,'english','54.160.132.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 20:26:52','2020-08-09 20:26:52'),(11248,'insurance','54.160.132.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 20:48:31','2020-08-09 20:48:31'),(11249,'economics','3.82.43.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 22:51:23','2020-08-09 22:51:23'),(11250,'physics','3.82.43.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 23:20:12','2020-08-09 23:20:12'),(11251,'crk','3.82.43.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 23:48:17','2020-08-09 23:48:17'),(11252,'commerce','35.175.247.116',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 01:29:23','2020-08-10 01:29:23'),(11253,'english','35.175.247.116',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 01:39:07','2020-08-10 01:39:07'),(11254,'physics','35.175.247.116',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 01:39:38','2020-08-10 01:39:38'),(11255,'physics','50.17.32.216',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 02:57:35','2020-08-10 03:18:03'),(11256,'government','50.17.32.216',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 03:33:14','2020-08-10 03:33:14'),(11257,'physics','100.24.33.18',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 05:23:01','2020-08-10 05:23:01'),(11258,'currentaffairs','100.24.33.18',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 05:33:02','2020-08-10 05:33:02'),(11259,'english','100.24.33.18',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 05:39:00','2020-08-10 05:39:00'),(11260,'crk','54.88.30.126',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 06:45:49','2020-08-10 06:45:49'),(11261,'government','54.88.30.126',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 06:49:04','2020-08-10 06:49:04'),(11262,'biology','3.91.235.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 07:26:44','2020-08-10 07:26:44'),(11263,'insurance','3.91.235.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 07:46:58','2020-08-10 07:46:58'),(11264,'chemistry','3.91.235.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 07:57:06','2020-08-10 07:57:06'),(11265,'commerce','34.229.185.11',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 12:20:30','2020-08-10 12:20:30'),(11266,'government','100.26.46.228',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 14:54:49','2020-08-10 16:20:21'),(11267,'physics','100.26.46.228',4,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 14:55:21','2020-08-10 16:20:20'),(11268,'irk','100.26.46.228',4,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:15:22','2020-08-10 16:20:21'),(11269,'history','100.26.46.228',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:22:28','2020-08-10 16:20:21'),(11270,'currentaffairs','100.26.46.228',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:55:35','2020-08-10 16:20:21'),(11271,'geography','100.26.46.228',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:56:56','2020-08-10 16:25:08'),(11272,'commerce','100.26.46.228',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:57:33','2020-08-10 15:57:33'),(11273,'biology','100.26.46.228',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 16:20:20','2020-08-10 16:20:20'),(11274,'economics','100.26.46.228',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 16:20:21','2020-08-10 16:20:21'),(11275,'mathematics','54.226.147.90',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 17:17:31','2020-08-10 17:17:31'),(11276,'commerce','54.226.147.90',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 17:36:49','2020-08-10 17:36:49'),(11277,'history','18.234.209.92',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 19:37:09','2020-08-10 19:37:09'),(11278,'chemistry','18.209.163.124',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 20:44:19','2020-08-10 20:44:19'),(11279,'chemistry','197.210.85.126',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-10 20:45:36','2020-08-10 20:46:04'),(11280,'english','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:51','2020-08-11 00:16:51'),(11281,'mathematics','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:51','2020-08-11 00:16:51'),(11282,'biology','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11283,'crk','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11284,'geography','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11285,'irk','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11286,'civiledu','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11287,'english','54.234.125.46',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 02:22:18','2020-08-11 02:22:18'),(11288,'biology','54.234.125.46',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 02:26:31','2020-08-11 02:26:31'),(11289,'government','54.80.143.147',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 05:54:08','2020-08-11 05:54:08'),(11290,'mathematics','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 07:50:06','2020-08-11 07:50:06'),(11291,'biology','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 07:51:08','2020-08-11 07:51:08'),(11292,'currentaffairs','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 08:21:18','2020-08-11 08:21:18'),(11293,'geography','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 08:32:37','2020-08-11 08:32:37'),(11294,'crk','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 08:43:59','2020-08-11 08:43:59'),(11295,'mathematics','54.198.59.199',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 10:19:40','2020-08-11 10:19:40'),(11296,'english','197.210.71.188',1000,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-08-11 10:39:24','2020-08-11 12:25:37'),(11297,'english','54.198.59.199',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 10:40:53','2020-08-11 10:40:53'),(11298,'chemistry','197.210.71.188',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-11 10:45:17','2020-08-11 10:45:19'),(11299,'mathematics','66.102.6.73',40,'',NULL,'',NULL,'Ashburn','20149','39.0437','-77.4875','2020-08-11 11:39:12','2020-08-11 11:39:15'),(11300,'mathematics','66.102.6.71',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:39:21','2020-08-11 11:39:23'),(11301,'biology','197.210.71.188',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:39:42','2020-08-11 11:58:39'),(11302,'biology','66.102.6.71',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:40:40','2020-08-11 11:40:43'),(11303,'physics','66.102.6.73',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:42:14','2020-08-11 11:42:16'),(11304,'english','197.210.53.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:50:21','2020-08-11 11:50:23'),(11305,'english','197.210.52.144',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:50:57','2020-08-11 11:51:00'),(11306,'physics','129.205.112.237',120,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:58:40','2020-08-11 12:04:51'),(11307,'physics','197.210.71.188',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:58:45','2020-08-11 11:58:48'),(11308,'government','129.205.112.237',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:58:54','2020-08-11 11:58:56'),(11309,'government','197.210.71.188',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:59:23','2020-08-11 17:19:23'),(11310,'mathematics','129.205.112.237',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:59:30','2020-08-11 11:59:32'),(11311,'mathematics','41.190.14.218',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 12:15:25','2020-08-11 12:15:27'),(11312,'biology','197.210.70.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 13:30:27','2020-08-11 13:30:30'),(11313,'english','105.112.117.120',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 13:52:23','2020-08-11 13:52:25'),(11314,'mathematics','105.112.117.120',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 13:53:50','2020-08-11 13:53:53'),(11315,'english','18.208.144.141',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 21:38:53','2020-08-11 21:38:53'),(11316,'mathematics','54.81.177.247',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:56:08','2020-08-12 17:58:41'),(11317,'accounting','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:57:59'),(11318,'biology','54.81.177.247',5,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:59:12'),(11319,'crk','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:57:59'),(11320,'irk','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:57:59'),(11321,'civiledu','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:57:59'),(11322,'insurance','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:58:00'),(11323,'history','54.81.177.247',4,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:00','2020-08-12 17:58:42'),(11324,'chemistry','54.81.177.247',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:41','2020-08-12 17:59:51'),(11325,'government','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:41','2020-08-12 17:58:41'),(11326,'economics','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:41','2020-08-12 17:58:41'),(11327,'currentaffairs','54.81.177.247',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:42','2020-08-12 17:59:59'),(11328,'english','197.210.70.155',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-13 17:53:05','2020-08-13 17:54:12'),(11329,'mathematics','197.210.70.155',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-13 18:17:59','2020-08-13 18:18:01'),(11330,'english','54.224.255.255',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-13 21:44:01','2020-08-13 21:44:01'),(11331,'mathematics','197.210.70.184',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-14 23:45:07','2020-08-14 23:45:10'),(11332,'biology','66.102.8.213',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:44:13','2020-08-15 00:44:15'),(11333,'biology','66.102.8.215',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:44:18','2020-08-15 00:44:20'),(11334,'biology','66.102.6.90',120,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:00','2020-08-15 00:47:44'),(11335,'chemistry','66.102.6.92',160,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:01','2020-08-15 00:48:23'),(11336,'mathematics','66.102.8.213',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:45:04','2020-08-15 00:45:06'),(11337,'biology','66.102.6.91',320,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:06','2020-08-15 00:47:49'),(11338,'government','66.102.8.215',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:45:36','2020-08-15 00:45:39'),(11339,'biology','66.102.6.92',160,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:42','2020-08-15 00:47:34'),(11340,'biology','66.249.88.117',80,'',NULL,'',NULL,'Ashburn','20149','39.0437','-77.4875','2020-08-15 00:45:53','2020-08-15 00:47:02'),(11341,'government','66.102.6.91',360,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:55','2020-08-15 00:51:03'),(11342,'chemistry','66.102.6.91',40,'','US','','New Jersey','North Bergen','07047','40.8043','-74.0121','2020-08-15 00:46:11','2020-08-15 00:46:14'),(11343,'chemistry','66.249.88.121',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:46:11','2020-08-15 00:46:14'),(11344,'physics','66.249.88.117',80,'',NULL,'',NULL,'Ashburn','20149','39.0437','-77.4875','2020-08-15 00:46:18','2020-08-15 00:46:50'),(11345,'government','66.102.6.92',160,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:46:33','2020-08-15 00:50:15'),(11346,'government','66.102.6.90',240,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:46:36','2020-08-15 00:50:53'),(11347,'chemistry','66.249.88.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:46:47','2020-08-15 00:46:49'),(11348,'physics','66.102.6.90',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:01','2020-08-15 00:47:04'),(11349,'government','66.249.88.121',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:08','2020-08-15 00:47:11'),(11350,'commerce','66.102.6.92',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:11','2020-08-15 00:47:44'),(11351,'government','66.102.8.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:33','2020-08-15 00:47:35'),(11352,'mathematics','66.102.6.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:36','2020-08-15 00:47:38'),(11353,'mathematics','66.102.6.90',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:48:02','2020-08-15 00:48:05'),(11354,'mathematics','66.249.88.121',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:48:04','2020-08-15 00:48:06'),(11355,'commerce','66.102.6.91',120,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:48:54','2020-08-15 00:50:03'),(11356,'commerce','66.102.6.90',79,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:50:16','2020-08-15 00:50:21'),(11357,'english','108.177.6.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:57:24','2020-08-15 00:57:26'),(11358,'mathematics','108.177.6.59',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:57:50','2020-08-15 00:58:00'),(11359,'biology','108.177.6.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:58:14','2020-08-15 00:58:17'),(11360,'commerce','108.177.6.59',276,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:58:36','2020-08-15 00:59:23'),(11361,'physics','108.177.6.59',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:59:42','2020-08-15 00:59:49'),(11362,'economics','108.177.6.59',184,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:59:49','2020-08-15 01:00:31'),(11363,'geography','108.177.6.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:00:59','2020-08-15 01:01:01'),(11364,'englishlit','108.177.6.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:01:26','2020-08-15 01:01:28'),(11365,'government','108.177.6.52',357,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:22:05','2020-08-15 01:26:04'),(11366,'english','108.177.6.52',240,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:24:17','2020-08-15 01:25:01'),(11367,'chemistry','108.177.6.52',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:25:41','2020-08-15 01:25:44'),(11368,'biology','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:28','2020-08-15 03:55:28'),(11369,'physics','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:28','2020-08-15 03:55:28'),(11370,'chemistry','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:28','2020-08-15 03:55:28'),(11371,'englishlit','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:28','2020-08-15 03:55:29'),(11372,'geography','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:29','2020-08-15 03:55:29'),(11373,'insurance','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:29','2020-08-15 03:55:29'),(11374,'history','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:29','2020-08-15 03:55:29'),(11375,'mathematics','108.177.7.82',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 08:37:22','2020-08-15 08:38:27'),(11376,'mathematics','108.177.7.83',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 08:38:27','2020-08-15 08:38:30'),(11377,'english','108.177.7.83',160,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 08:40:28','2020-08-15 08:41:19'),(11378,'government','108.177.7.83',280,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 08:42:26','2020-08-15 08:45:15'),(11379,'english','54.145.17.5',2,'',NULL,'',NULL,'Virginia Beach','23461','36.7754','-75.9633','2020-08-15 18:09:17','2020-08-15 18:09:17'),(11380,'accounting','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:17'),(11381,'physics','54.145.17.5',4,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:18'),(11382,'englishlit','54.145.17.5',4,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:18'),(11383,'crk','54.145.17.5',4,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:18'),(11384,'insurance','54.145.17.5',4,'',NULL,'',NULL,'Virginia Beach','23461','36.7754','-75.9633','2020-08-15 18:09:17','2020-08-15 18:09:18'),(11385,'currentaffairs','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:17'),(11386,'mathematics','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:18','2020-08-15 18:09:18'),(11387,'economics','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:18','2020-08-15 18:09:18'),(11388,'irk','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:18','2020-08-15 18:09:18'),(11389,'chemistry','5.189.130.197',41,'','DE','','Bavaria','Nürnberg','90402','49.4542','11.0775','2020-08-16 00:00:52','2020-08-16 00:01:34');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `biology` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=385 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `biology` VALUES (1,'In the egg of bird, the embryo is located in the','Chalaza','Yolk  ','albumen  ','embryo','','','d','','utme','2003',209,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:43'),(2,'One distinctive feature in the life history  of liverworts is that they exhibit','alternation of generation  ','vegetative reproduction  ','sexual reproduction','sexual reproduction','','','a','','utme','2003',201,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(3,'The umbrella-shaped fruiting body of a fully developed mushroom is the','pileus  ','Mycelium','basidium  ','Stipe','','','a','','utme','2003',193,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(4,'The similarly  among organisms belonging to the same group will be least within each','family  ','order  ','kingdom   ','species','','','c','','utme','2003',183,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(5,'Hermaphroditic reproduction can be found among the','arthropods and nematodes  ','Pisces and amphibians   ','annelids and molluscs','coelenterates and  platyghelminthes','','','d','','utme','2003',196,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(6,'An insect whose economic importance is both harmful and beneficial is the','tests fly  ','black','mosquito   ','butterfly','','','d','','utme','2003',197,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:42'),(7,'The cell component that is present in a prokaryotic cell is the','chloroplast   ','ribosome','mitochondrion   ','nuclear envelope','','','b','','utme','2003',194,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(8,'The stunted group of a leguminous plant suffering from nitrogen deficiency may be corrected by inoculating the soil with','denitrifying bacteria  ','saprophytic bacteria','Rhizobium   ','nitrosomonas','','','c','','utme','2003',204,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:14'),(9,'If water that has been coloured red is poured at the base of a wilting plant, it will appear as a red stain in the cells of','Xylem  ',' epidermis  ','phloem  ','parench','','','a','','utme','2003',203,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(10,'The dark reaction of photosynthesis involves the  ','reduction of carbon (IV) oxides to organic compounds  ','release of oxygen and the splitting of water','photolysis of water and the production of starch  ','splitting of water into hydrogen ions.','','','a','','utme','2003',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:42'),(11,'Organisms I, II, III and IV have surface volume ratios  of 1:2, 1:3, 1:4, 1:5, respectively. The organism that is likely to have the most complex transport system is','IV','III  ','I  ','II','','','a','','utme','2003',170,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(12,'The part of the mammalian digestive  system where absorption of nutrients takes place is the','ileum  ','colon  ','esophagus  ','duodenum','','','a','','utme','2003',183,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:08'),(13,'The best method of propagating sugarcane by','seed sowing  ','layering','grafting  ','stem cuttings','','','d','','utme','2003',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:08'),(14,'In mammalian males, the excretory and reproductive  systems share the','ureter     ','vas deferens  ','urethra  ','Testes.','','','c','','utme','2003',200,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:34'),(15,'Metabolic production of urea is carried out in the','Urinary bladder and kidney','liver   ','pancreas  ','kidney and malphigian tubule','','','b','','utme','2003',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(16,'The structure can be found in the','sympathetic and parasympathetic nervous systems  ','peripheral and central nervous systems','peripheral nervous system only  ','central nervous system only','','','b','','utme','2003',186,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(17,'The point marked I is referred to as  ','myelin sheath','dendrites  ','axon  ','node of Ranvier','','','d','','utme','2003',196,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:04'),(18,'Homologous pairs of chromosomes separate during','cytolysis   ','cleavage','mitosis  ','Meiosis','','','d','','utme','2003',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:53'),(19,'An example of a caryopsis is','guava   ','maize grain','coconut','tomato','','','b','','utme','2003',198,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(20,'The response of plants to external stimuli in a non-directional manner is known as ','tactic movement','phototropism  ','geotropism','nastic  movement','','','d','','utme','2003',198,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(21,'The most important hormone that induces the ripening of fruit is','ethylene  ','indole acetic acid','gibberellin  ','cytokinin','','','a','','utme','2003',189,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:43'),(22,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','a','','utme','2003',190,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:21'),(23,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','c','','utme','2003',210,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(24,'One example of fossil fuel is','limestone  ','coral  ','coal  ','firewood','','','b','','utme','2003',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(25,'The most effective method of dealing with non-gradable pollutants by  \\\\','dumping  ','recycling  ','incineration  ','Burying','','','d','','utme','2003',186,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(26,'The correct sequence of biomes from northern to southern Nigeria is','gulnea savanna _ sudan savanna_ tropical rain forest_ sahel savanna_eetuarine  ','estuarine_tripical rainforest_guinea savanna _ sahel_ savanna  ','sahel savanna_ tropical_rain forest_ estuarine _guinea savanna','sahel savanna_sudan savanna_guinea savanna _tropical rain forest_estuarine','','','b','','utme','2003',188,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(27,'Mycorrhiza is an association  between fungi and','protozoans','roots of higher plants','bacteria','filamentous algae','','','d','','utme','2003',196,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:09'),(28,'A limiting factor in a plant population near a chemical factory is likely to be','light  ','humidity  ','wind  ','PH.','','','d','','utme','2003',216,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(29,'Soil fertility can best be conserved and renewed by the activities of','earthworms  ','man  ','rodents  ','microbes','','','b','','utme','2003',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(30,'The pioneer organism in ecological  succession are usually the','mosses  ','lichens  ','ferns','Algae','','','d','','utme','2003',214,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:16'),(31,'If a DNA strand has a base sequence TCA, its complementary strand must be','ATG  ','TAG','GAT  ','AGT','','','d','','utme','2003',195,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(32,'A man and his wife are both heterozygous for the sickle cell trait. The likely percentage of their offspring that will be either carriers of sicklers is','75%','50%','25%','100%','','','d','','utme','2003',236,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(33,'If the pair of alleles for baidness is given as Bb, a female carrier will be denoted by','XbY   ','XBXB  ','XBY','XBXb','','','a','','utme','2003',193,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:08'),(34,'An organ  that has been extensively used to test the chromosome theory of heredity is','Drosophila   melanogaster','Muscat domestic  ','Zea mays  ','homo sapiens','','','c','','utme','2003',197,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(35,'A feature association with the Y- chromosome in humans is  ','Drosophila melanogaster','prominent fingernails  ','facial hairs  ','enlarged breast','','','b','','utme','2003',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(36,'The type of reproduction that leads to variation in animal and plant population is','  budding',' sexual','vegatative','asexual','','','a','','utme','2003',198,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(37,'An insect with a mandibulate  mouth part will obtain its food by','biting and chewing   ','chewing and sucking  ','chewing  ','Sucking','','','c','','utme','2003',187,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:09'),(38,'An argument against Lamarck’s theory of evolution is that  ','disuse of  body part cannot weaken the part  ','disused part is dropped off in the offspring  ','acquired traits cannot be passed onto the offspring  ','traits cannot be acquired through constant use of body parts','','','b','','utme','2003',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(39,'Spines and shells on animals are adaptations for','camouflage  ','chemical defence','physical defence  ','mimicry','','','c','','utme','2003',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(40,'An example of cryptic colouration is the','mottled colours on moths that rest o lichens  ','bright colour of an insect pollinated flower','green colour of a plant  ','bright marks on a poisonous tropical frog on variegated  leaves','','','d','','utme','2003',179,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(41,'Which of the following requires the use of carbon dating to prove that evolution has occurred?  ','comparative anatomy  ','biochemical similarities   ','molecular records','fossil records','','','d','','utme','2003',197,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:20'),(42,'The inactive state exhibited by an animal during hot dry seasons is termed  ','aestivation','dormancy  ','resting','Hibernation','','','a','','utme','2003',189,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:20'),(43,'The rods in the retina of the eye are examples of','cells   ','Tissues  ','organs  ','systems','','','a','','utme','2004',197,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(44,'The absence of special food and water-conducting systems  restricts the body size in','algae, liverworts and mosses  ','liverworts, mosses and ferns  ','the bryophytes and the pteriodophytes  ','the thallophytes and the pteriodphytes','','','a','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:16'),(45,'A plant like feature I Euglena is the','Pellicle  ','pigment sport','large vacuole   ','gullet','','','b','','utme','2004',199,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(46,'The most common characteristic of the fungal hyphae is the possession of  ','cell like compartments with one nucleus each  ','cell walls that are true are both rigid and chitinous  ','a multicellular mycelium in strate  ','cell like partitions formed  by cross walls','','','b','','utme','2004',193,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(47,'Insects are considered the most successful among the invertebrates because they','possess exoskeletons',' survive in various environmental conditions  ','have wings for flight  ',' possess the ability to change their forms','','','a','','utme','2004',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(48,'The larval stage of a mosquito is called','wriggler  ','Grub  ','maggot  ','Caterpillar','','','a','','utme','2004',218,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(49,'The function of the long-winged reproductive in a  termite colony is to','disperse the population  ',' feed the young   ','participate in swarming','protect the young','','','c','','utme','2004',171,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(50,'A peculiar characteristic of mammals is that they  ','have teeth  ','are warm blooded  ','haelungs','have sebaceous glands','','','d','','utme','2004',177,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:43'),(51,'In the internal structure of plants, a wide pith in the centre is common to','dicot stems and moocot stems','dicot stems and monocot roots','dicot roots and monocot roots','dicotroots and monocot stems','','','b','','utme','2004',198,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(52,'The gall bladder of mammal has a duct connected to','liver  ',' duodenum  ','small intestine','pancreas','','','b','','utme','2004',183,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:07'),(53,'Al living cells require water because it','is a medium for all metabolic reactions  ','is a medium that neutralizes acids in cells','is the main source of energy for the cells','prevents the development of disease in cells.','','','a','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(54,'The Breakdown of fats and oils into simpler absorbable compounds is catalyzed by the group of enzymes called','lipases   ','hydrolases  ','amylases','peptidases','','','a','','utme','2004',181,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:08'),(55,'The surface of an alveolus in a mammal is well supplied with tiny blood vessels known as','arterioles  ','Venules','arteries  ','capillaries','','','d','','utme','2004',171,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:16'),(56,'The anaerobic fermentation of a glucose molecule yields.','38ATP molecules  ','2ATP molecules and alcohol','Pyruvic acid and alcohol  ','water and carbon (IV) oxide','','','b','','utme','2004',178,'Admin','0000-00-00 00:00:00','2020-08-15 00:44:15'),(57,'The opening of the stoma is controlled by the  ','presence of a pore  ','increase in solute concentration  in the guard cells  ','presence of guard cells','decrease in solute concentration in the guard cells','','','b','','utme','2004',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(58,'The type of reproduction that is common to both Hydra and yeast is','conjugation','binary fission','grafting  ','Budding','','','d','','utme','2004',190,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(59,'The eggs of birds contain relatively larger quantities of yolk than those of amphibians and reptiles because','birds are generally bigger in size','embroyonic development is longer in birds  ','those of birds are fertilized internally  ','birds lay shelled eggs','','','b','','utme','2004',209,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(60,'Epigeal germination of a seed is characterized by','more rapid  elongation of the hypocotyl than the epicotyl','more rapid elongation of the epicotyl than the hypocotyl  ','equal growth rate of both the hypocotyl and epicotyl  ','lack of growth of the hypocotyl','','','a','','utme','2004',188,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:14'),(61,'Nervous control differs from hormonal control in that the former  ','involves only chemical  transmission','is a slower process','produces short term changes  ','has no specific pathway','','','c','','utme','2004',185,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(62,'If a nursing mother is not  producing enough milk, her hormonal system is probably deficient in','prollactine  ','estosterone','thyroxin','insulin','','','a','','utme','2004',172,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:43'),(63,'The two key cations involved in the action potential of nervous transmissions are ','Na+ and Fe2+',' Mg2+ and K+','Na+ and K+  ','Fe2+ and Mg 2+','','','c','','utme','2004',196,'Admin','0000-00-00 00:00:00','2020-08-14 12:42:33'),(64,'A caterpillar and an aphid living in different parts of the same plant can be said to',' occupy the same ecological riches   ',' Be in different habitats  ','occupy different ecological riches  ','be in  similar micro habitats','','','c','','utme','2004',182,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(65,'Use the table below to answer questions 33 and 34\\nZone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nHigh relative humidity will be expected in zones \\n','I and II','I and IV  ','II and III  ','II and IV','','','c','','utme','2004',184,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(66,'Zone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nWhich of the zones is likely to be a desert\\n','I  ','II  ','III  ','IV','','','a','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-08-15 00:44:18'),(67,'The association between termites and the cellulose digesting protozoans in heir guts is an example of  ','saprophytism  ','mutualism','parasitism  ','commensalism','','','b','','utme','2004',167,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(68,'The progressive loss of energy at each level in a food chain  leads to','an increase in biomass at each successive level  ','a decrease in biomass at each successive level  ','an increase in the number of organisms at each successive level','an increase in the total weight of living matter at each successive level.','','','b','','utme','2004',188,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:21'),(69,'One adaptation of reptiles of water loss is the presence of','Keratinous scales  ','claws on Limbs  ','Long tails   ','long stickly tongues','','','a','','utme','2004',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(70,'A state in Nigeria that is most susceptible to desert encroachment is','Kwara  ','Taraba  ','Kaduna','Katsina','','','d','','utme','2004',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:43'),(71,'The Scarcity of food causes a sudden decrease in population size by','decrease the reproductive rate','bringing about immigration','raising the mortality rate','minimizing the rate of competition','','','a','','utme','2004',178,'Admin','0000-00-00 00:00:00','2020-08-14 12:42:33'),(72,'The soil type that will be most difficult to plough in a wet season is one that is  ','loamy   ','clayey  ','sandy  ','silty','','','b','','utme','2004',181,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(73,'A farm practice that results in he loss of soil fertility is','mixed farming','bush fallowing','shifting cultivation  ','continuous cropping','','','d','','utme','2004',193,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:42'),(74,'Paternity disputes can most accurately be resolved though the use of','Gringer printing   ','blood group typing   ','DNA analysis   ','tongue rolling','','','c','','utme','2004',178,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(75,'In a mendelian cross of red and white varieties of the four o’clock pant, the F1 generation expresses incomplete dominance by having flowers which are','white  ','red  ','pink  ','multi-coloured','','','c','','utme','2004',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:04'),(76,'Identical twins inherit their genes from','Different eggs and sperms','The same egg and sperm  ','two egg and a sperm  ','one egg and two sperms','','','b','','utme','2004',192,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(77,'Sex –linked genes are located on','Y-chromostome  ','X and Y chromosomes  ','Homologens chromosomes  ','X-Chromosome','','','d','','utme','2004',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:31'),(78,'Which of the following is an example of intraspecific competition?','a lizard and an ant eater chasing an insect  ','a worker termite and a solider in a limited space  ','a hawk and an eagle targeting the same chicken','yam and potato shoots growing out through the same window','','','b','','utme','2004',200,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(79,'Plants survive hot dry condition by  ','storing water in large parenchyma cells','producing numerous leaves  ','having numerous stomata  ','having every green leaves','','','a','','utme','2004',175,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:10'),(80,'Rodents gnaw on food with their','molar teeth  ','strong jaws   ','flat-ridged teeth  ','chisel like front teeth','','','d','','utme','2004',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:49'),(81,'The sports and stripes of the leopard and tiger and example of','cryptic colouration  ','warning colouration  ','Disruptive colouration  ','counter shading','','','c','','utme','2004',171,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(82,'An evidence of the relationship between living organisms and their extinct relatives can best be obtained from','Embryology  ','Comparative anatomy  ','comparative physiology','all of the above','','','d','','utme','2004',221,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:56'),(83,'The organelle common to both plant and animal cells is the','centriole','plasmalemma  ','cell wall','chloroplast','','','c','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(84,'Which of the following is likely to have a higher concentration of mitochondria? ',' Sperm cell',' white blood cell  ',' Egg cell','red blood cell','','','a','','utme','2005',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(85,'The hyphal wall of fungi is rigid  owing to the presence of','cell wall','lignin  ','cellulose  ','chitia','','','d','','utme','2005',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:15'),(86,'Angiosperms and gymnosperms belong to the class','schizophyta  ','spermatophyte  ','pteridophyta  ','bryophta','','','b','','utme','2005',178,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(87,'An example of a adially symmetrical organism is','planaria  ','Hydra   ','tapeworm  ','roundworm','','','b','','utme','2005',208,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:41'),(88,'the leech and the earthworm belong to the','molluscs  ','crustaceans','arachnids  ','annelids','','','d','','utme','2005',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:44'),(89,'I. Rettus rattus   II. Agama agama  II Bufo regularis  IV. Tilapia Zill. The order of evolutionary advancement  of the above','I, II and III , IV  ','I, IV, III, II  ','II, III, IV, I','IV, III, II, I','','','d','','utme','2005',206,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(90,'The stage in the life history  of a moth responsible for the destruction of agricultural crops is the','nymph','imago','pupa   ','caterpillar','','','d','','utme','2005',203,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:21'),(91,'The blackly is a vector of','material','trypanosomiasis','onchocerciasis','yellow fever','','','c','','utme','2005',221,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(92,'The transition from amphibians to mammals involves the limbs becoming arranged to support the weight  more effectively requiring modifications in the','collar bones and coccyx','pectoral and pelvic girdles','scapulae and clavicles   ','vertebrae and sternum','','','b','','utme','2005',183,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(93,'The main function of the caudal fin in tilapia  is to  ','propel it forward in water  ','seer it while changing directions  ','balance it in eater','enable it to float in water','','','a','','utme','2005',207,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:44'),(94,'In the root vascular system, the stele is directly surrounding by the','pericycle  ','cortex','endodermis  ','Parenchyma','','','c','','utme','2005',187,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:42'),(95,'The only vein that caries pure oxygenated blood is the  ','renal vein  ','Pulmonary vein  ','hepatic vein','sciatic vein','','','b','','utme','2005',192,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:39'),(96,'The function of the fluid filled pericardium is to','reduce the friction caused by the pumping movements of the heart   ','supply the heart with oxygen and nutrients  ','prevent disease organisms from attacking the heart  ','reduce the  intensity of the pumping action of the heart','','','a','','utme','2005',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(97,'The mammalian lung is made air light by the','pleural cavity  ','mucous membrane','pleural membrane  ','diaphragm','','','a','','utme','2005',187,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:08'),(98,'A test tube containing yeast in glucose solution was suspended in a converted conical flask containing alkaline pyrogallol. The  bubbles of carbon (IV) oxide produced indicate that the yeast cells are','respiring in the absence of oxygen  ','librating oxygen  on their own','living and consuming oxygen  ','being killed by the alcohol produced','','','a','','utme','2005',210,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:43'),(99,'The urinary tubules of the kidney function through  ','osmosis and diffusion  ','active transport and osmosis  ','ultra filtration and selective re-absorption','active transport and cytoplasmic streaming  ','','','c','','utme','2005',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(100,'Excess water  in plants is excreted as water vapour and droplets respectively through  ','respiration and guttation  ','transpiration and guttation','photosynthesis and guttation','guttation and condensation','','','b','','utme','2005',164,'Admin','0000-00-00 00:00:00','2020-08-11 15:50:01'),(101,'When bacteria swim from cold to warm regions, this is known as','negative chemotaxis  ','positive thermotaxis  ','positive phototaxis','negative phototaxis','','','b','','utme','2005',208,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:08'),(102,'Hydrostatic skeleton is the type of supporting system found in','Mammals  ','reptiles  ','oligochaetes   ','arthropods','','','c','','utme','2005',212,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(103,'Which of the following is a homeostatic response in humans?','withdrawing the hand from a hot object','the mouth getting watery when food is lighted  ','yawning owing to tiredness  ','shivering in a cold environment','','','d','','utme','2005',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:09'),(104,'The optimal temperature  for breeding cockroaches is','15oC','19oC  ','24oC  ','33oC','','','c','','utme','2005',203,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(105,'At which temperature will cockroaches not survive after 10 days?   ','15oC','19oC  ','24oC  ','33oC','','','a','','utme','2005',196,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(106,'The mambilla plateau is a unique Nigeria biome located in','Plateau State  ','Borno state  ','Taraba state  ','Benue state','','','a','','utme','2005',180,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(107,'In Nigeria, the Guinea Savanna belt borders the','mangrove swamps and the Sahel  savanna  ','rainforests and the Sudan savanna  ','deserts and the Sudan savanna  ','rainforests and the desert.','','','b','','utme','2005',192,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:00'),(108,'The population density of Tridax in an abandoned square farmland of side 200m was found to be 5 plants per m2. The population size of the plant on the farm is','40','4000','40000','200000','','','d','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(109,'Secondary succession is much faster then primary succession because','pioneer colonizers are more in number  ','soil is already present  ','Secondary series require less nutrients  ','species competition is increased','','','b','','utme','2005',185,'Admin','0000-00-00 00:00:00','2020-08-12 22:30:55'),(110,'Which of the following is used to test for the presence of lime in a soil sample? ','H2SO4(aq)  ','NaOH(aq)','Hcl(aq)  ','HNO3(aq)','','','c','','utme','2005',184,'Admin','0000-00-00 00:00:00','2020-08-14 17:59:41'),(111,'The importance of practicing crop rotation  in agriculture is to','maintain soil fertility','improve the nutritional value of crops   ','control soil erosion   ','ensure the growth of crops.','','','a','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(112,'The recycling method of solid waste disposal is unsuitable for','organic matter  ','glass  ','plastics','metal scraps','','','a','','utme','2005',191,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(113,'A non-renewable alternative source of energy is','wind generators  ','solar panels  ','nuclear energy','hydroelectric power','','','c','','utme','2005',185,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(114,'Which of the following gis the best explanation for a child who is phenol-typically short and born of two tall parents?','The father possesses a gene for shortness  ','The mother possesses a gene for shortness  ','Nature makes the child short  ','Both parents posses genes for shortness.','','','d','','utme','2005',192,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:01'),(115,'A yellow maize is crossed with the a white maize and the first filial generation produce yellow maize only. The white trait is said to exhibit  ','dominance',' recessiveness','codominance  ','Incomplete  dominance','','','b','','utme','2005',171,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:36'),(116,'The association in which one member benefits and the other is relatively unaffected by the interaction is termed  ','symbiosis','parasitism','commensalism  ','Mutualism','','','c','','utme','2005',188,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:39'),(117,'When a peacock displays its colourful  feathers, it is  ','ready for a fight  ','protecting itself from predators  ','protecting its mate from predator','courting a female','','','d','','utme','2005',188,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:10'),(118,'When an animal has a dark coloured dorsal surface and light coloured ventral surface, this is an adaptation called  ','concealment coloration  ','countershading','colour blending  ','disruptive coloration','','','b','','utme','2005',204,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:50'),(119,'The only caste in the termite colony whose members can feed themselves are the  ','reproductive',' workers  ','nymhs  ','soldiers','','','b','','utme','2005',177,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:44'),(120,'An evidence of a common ancestry for fishes, amphibians, reptiles, birds and mammals is the','possession of wings by bird and bats','cold-bloodedness of fishes, amphibians and reptiles  ','presence of gill clefts in vertebrate embryos','','','','c','','utme','2005',206,'Admin','0000-00-00 00:00:00','2020-08-15 00:44:14'),(121,'Mendel, s second law of inheritance states that','alleles separate predictably  ','alleles segregate  independently','chromosomes segregate independently  ','alleles combine randomly','','','b','','utme','2006',182,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:38'),(122,'One advantage of variation in a species population  is that individuals','easily reach their reproduction age','with favoured trait become dominant','are better adapted  to changes','are easily  recognized by mates','','','c','','utme','2006',192,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(123,'The two normal types of sex chromosomes are','xxy and xyy','xx and xyy  ','xx and xy  ','xy and xxy','','','c','','utme','2006',181,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:38'),(124,'Hassan and Hussain are identical twins but Hasan grows taller and fatter than Hussain. This is probably  because  ','Hussain in endowed with genes for shortness and thinness  ','They are raised in different environments','they have dissimilar genotypes  ','Hassan inherits genes for tallness and fatness from the father.','','','b','','utme','2006',179,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:00'),(125,'Population that doubles in size to constant intervals is an indication of','sigmoid   ','population explosion  ','rapid growth','  exponential growth','','','d','','utme','2006',181,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:44'),(126,'The causative reagent of typhoid fever is  ','Entamoeba','Salmonella','Shigella  ','Escherichia','','','b','','utme','2006',197,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(127,'The  soil type that contains nutrients which are not readily available for plants is ',' sandy  ','Alluvial  ','loamy  ','clayey  ','','','d','','utme','2006',188,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:38'),(128,'Grasses recover quickly from bush fires in the savanna  because of their  ','succulent stems   ','rapid growth  ','fibrous roots  ','perennating organs','','','d','','utme','2006',199,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(129,'The main purpose of establishing shelter belts in the sahel region to  ','break the harmattan wind  ','beautify the region  ',' check desert encroachment  ','provide wood fuel','','','a','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(130,'Climax communities in a biotic succession are usually characterized by','a constant change in the appearance of the commodities  ','a stable composition of plant and animal species  ','rapid changes in the plant and animal species  ','different species that are constantly changing','','','b','','utme','2006',163,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:38'),(131,'The product of excretion common to the mammalian kidney lung and skin is','Urea  ','carbon (IV)oxides  ','mineral salt','water','','','d','','utme','2006',178,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:44'),(132,'In rabbits, the chamber of the heart that receives oxygenated blood from the lungs is the  ','left auricle','right auricle','left ventricle','right ventricle','','','a','','utme','2006',179,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:07'),(133,'One basic similarly between nervous and endocrine system is that both  ','produce precise and short –lived  effects  ','Involve the use of chemical substances  ','transmit very fast impulses  ','produce widespread effects.','','','b','','utme','2006',186,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(134,'Night blindness result from a deficiency of  ','Vitamin E  ','Vitamin K  ','Vitamin C  ','Vitamin A','','','d','','utme','2006',176,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(135,'Water is necessary for a germinating seed because  it','wets the soil for proper germination  ','protects the seed from desiccation  ','activates the enzymes','promotes aerobic respiration  ','','','c','','utme','2006',181,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(136,'An increase  in air pressure in the lings is due to the','increase in the volume of the thoracic cavity  ','relaxation of the diaphragm','upward movement of the ribs','contraction intercostal muscles','','','b','','utme','2006',204,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:16'),(137,'In the transverse section of a dicot stem, the region lying between the endodermis and the vascular bundle is the','parenchyma  ','Pholem','phypodermis  ','pericyle','','','d','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:21'),(138,'A unique characteristic of the cervical vertebrae  is the present  of','long transverse processes  ','zygaphphysis   ','vertebraterial canal  ','large centrum','','','c','','utme','2006',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:38'),(139,'Which of following produces both hormones and enzymes?','Gall blader  ','Lieum  ','Pancreas  ','kidney','','','c','','utme','2006',188,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(140,'The formation of water in tissue  respiration  results from the  ','combination of water  molecules','breakdown of water molecules  ','reduction of carbon (IV) oxide','reduction of oxygen by hydrogen','','','d','','utme','2006',173,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:00'),(141,'The organ situated in the pericardial cavity of a mammal is the','stomach  ','Liver  ','Liver','spleen','','','c','','utme','2006',158,'Admin','0000-00-00 00:00:00','2020-08-13 13:00:34'),(142,'Mammals are  capable  of producing hypertonic urine mainly because of re-absorption in the  ','urethra  ','loop of henle  ','ureater  ','Bowman’s capsule','','','b','','utme','2006',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:45'),(143,'The mammalian vain which starts with and ends in a capillary network is the','hepatic portal vein','pulmonary vein  ','renal vein','measenteric vein','','','a','','utme','2006',183,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:44'),(144,'The part of the mammalian skin involved in temperature regulation is the','sebaceous gland  ','sweat gland','hair follicle  ','hair pailla','','','b','','utme','2006',202,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:41'),(145,'The variation illustrated is','physiological   ','discontinuous  ','morphological   ',' biochemical','','','c','','utme','2006',177,'Admin','0000-00-00 00:00:00','2020-08-12 00:42:05'),(146,'The change in the length of the necks of the giraffes shown was brought about by  ','predation','symbiosis','natural selection','geographical isolation','','','c','','utme','2006',180,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(147,'Which of the following vertebrates has the most simple structured heart?','fish  ','Mammal','Amphibian  ','Reptile','','','a','','utme','2006',171,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:49'),(148,'The role of the Golgi com plex in a eukaryotic cell is to  ','transport genetic material out of the cell','transport organic materials in and out of the cell','provide attachment for ribosomal granules','conduct ions and out of the cell','','','b','','utme','2006',189,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:41'),(149,'The dominant phase in the life cycle of a bryophyte is the','prothallus  ','Gametangium  ','saprophyte   ','gametophyte','','','d','','utme','2006',179,'Admin','0000-00-00 00:00:00','2020-08-14 16:46:17'),(150,'The evidence that supports the advancement of  fern over mosses is derived from ','biochemical similarities  ','','physiological records  ','molecular records','','','b','','utme','2006',198,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:44'),(151,'A characteristic that best exemplifies the evolutionary advancement of mammals over other  vertebrates in the  ','terrestrial mode of life  ','possession  of paired limbs  ','a false foot  ','radial symmetry','','','c','','utme','2006',177,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:03'),(152,'An organism which exhibits extracelluar digestion is  ','Paramecium','Rhizopus  ','Spirogyra  ','Amoeba  ','','','b','','utme','2006',187,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(153,'The chromosomes of members of the kingdom  monera are within the','nucleus  ',' nucleolus  ',' cytoplasm   ',' Nucleoplasm','','','c','','utme','2007',193,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:39'),(154,'A water medium is necessary for fertilization in','angisperms','ferns  ','fungi  ','conifers','','','b','','utme','2007',213,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(155,'The process of shedding the exoskeleton of an arthropod is known as','instar formation','metamorphosis  ','tagmosis  ','Ecdysis','','','d','','utme','2007',209,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(156,'The part labeled IV is responsible for','ingestion   ','locomotion  ',' osmoregualtion  ','respiration','','','c','','utme','2007',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:15'),(157,'Which of the following is common to the mosquito, housefly and blackfly?  ','Their  immature stages are aquatic   ','They undergo complete metamorphosis  ','Their adults have two pairs of wings   ','They are parasites of man','','','b','','utme','2007',190,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:14'),(158,'Which of the following has the most primitive respiratory system?','Fish','Snail  ','Mouse','insect','','','b','','utme','2007',176,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:54'),(159,'Moncot stems differ from dioct  stems in that monocots have','fewer vascular bundies',' no cambium  ','phloem with parenchyma   ',' no pith','','','b','','utme','2007',184,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:16'),(160,'In mammals , the  organ directly on top of the kidney is the','prostate gland  ',' pancrease   ','thyroid gland  ',' adrenal gland','','','d','','utme','2007',171,'Admin','0000-00-00 00:00:00','2020-08-14 16:46:19'),(161,'The photosynthetic pigment is include  ','melanin and haemoglobin  ',' chlorophyll and carotenoids  ',' carotenoids and haemoglobin  ',' chloroplasts and cytochromes','','','b','','utme','2007',180,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:04'),(162,'The pancreas secretes enzymes for the digestion of  ','fats, vitamins and cellulose',' fats, carbohydrates and vitamins  ','proteins, celluclose and minerals  ','fats, proteins and carbohydrates','','','d','','utme','2007',178,'Admin','0000-00-00 00:00:00','2020-08-12 08:47:39'),(163,'Which of the following uses diffusion as the principal method of gaseous exchange?','Rate  ','lizard','Earthworm  ','Grasshopper','','','c','','utme','2007',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:49'),(164,'The opening  and closing of the stoma are regulated by','osmosis   ','diffusion  ','transpiration  ','respiration','','','a','','utme','2007',183,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(165,'The waste product of plants used in the conversion of hide to leather is','resin  ','tannin  ','gum  ','Alkaloid','','','b','','utme','2007',171,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:21'),(166,'The correct sequence of the movement of urea during urine formation is','Convoluted tubule_ glomerulus_Henle’s loop_ Bowman’s capsule_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tuble_ Henle’s loop_collecting tubule','convoluted tubule_ Bowman’s capsule_Henle’s loop _ glomerulus_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tubule_ Henle’s loop_convoluted tubule_collecting tubule','','','d','','utme','2007',176,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(167,'Pineapple is an example of','a composite fruit  ','a simple fruit','an aggregate fruit','a dehiscent fruit','','','a','','utme','2007',170,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:50'),(168,'Stunted growth and poor root development are a result of as deficiency in  ','calcium  ','sulphur  ','iron  ','phosphorous','','','a','','utme','2007',186,'Admin','0000-00-00 00:00:00','2020-08-12 08:47:39'),(169,'The highest level of ecological organization is the','niche','biosphere  ','population  ','Ecosystem','','','d','','utme','2007',187,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:44'),(170,'A biotic factor which affects the distribution and abundance of organisms in a terrestrial  habitat is','competition  ','temperature  ','light  ','pH','','','a','','utme','2007',175,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(171,'Which of the following is an example of parasitism?  ','Mistletoe growing on an orange tree','Fungi growing on a dead  tree branch  ','cattle egrets taking ticks from the body of cattle','a squirrel living in an abandoned nest of a bird','','','a','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-08-15 00:44:19'),(172,'The organs that will be most useful  to giant  African rats in finding their way in underground habitats are the  ','Eyes   ','vibrissae','tails  ','Nostrils','','','b','','utme','2007',171,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:54'),(173,'One adaptation  shown by hydrophytes in fresh water habitats is the','poor  development of roots and xylem tissues  ','well developed roots and supporting system  ','leaves reduced to spines  ','waxy  cuticle on shoot surface','','','a','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(174,'The mangrove swamp in Nigeria is restricted to the','Guinea savanna','Tropical rainforest','Sudan savanna   ','Sahel savanna','','','b','','utme','2007',179,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:37'),(175,'In which of the following Nigerian states can montane vegetation be found?','Plateau','Taraba  ','Enugu  ','Bauchi','','','a','','utme','2007',170,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:01'),(176,'The increasing order of the particle size in the following soil types  is','clay_silt_sand_gravel  ','Silt_clay-sand_gravel  ','clay_sand_slit_gravel','silt_sand_clay gravel','','','a','','utme','2007',202,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(177,'A crucible  of 5gm weighted 10gm after filling with fresh soil. It is hen healed in an oven at 100oC for 1 hour. After cooling in a desiccators, the  weight was 8gm. The percentage of water in the soil is  ','20%','40%','6%','80%','','','b','','utme','2007',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:37'),(178,'The causative agent of bird flu is a','virus  ','bacterium  ','fungus  ','protozoan   ','','','a','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:10'),(179,'An accurate identification  of a rapist can be carried out by conducting a','blood group test  ','behavioural traits test  ','DNA analysis   ','RNA analysis','','','c','','utme','2007',199,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(180,'Which of  the following is true of cloning?','it involves the asexual multiplication of the tissues of the original organisms  ',' the clone is similar to but not exactly like the original organism   ','Only one cell of the original organism is needed to initiate the process','it is welcomed as an ethically  and morally sound science','','','c','','utme','2007',190,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:37'),(181,'An example of a sex-linked  trait is the','ability to roll the tongue','possession of facial hair in adult humans  ','ability to grow long hair in females  ','colour of the skin in human','','','c','','utme','2007',188,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(182,'Which of the following factors can bring about competition in a population? ',' Drought   ','Mortality','Dispersion   ','Emigration','','','d','','utme','2007',168,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(183,'In lizards, the lowering  of the gular fold is used to','attract mates  ','frighten enemies','catch insects   ','defend their territory','','','b','','utme','2007',193,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(184,'The type of protective adaptation exhibited by the animals is  ','flash colouration   ','disruptive  colouration','warming colouration','countershading  colouration','','','d','','utme','2007',181,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:45'),(185,'An example of a fish that aestivates is','lung fish   ','shark','cat fish','croaker','','','a','','utme','2007',188,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:55'),(186,'The theory  which supports the view that the large muscles developed by an athlete will be passed on to the offspring was proposed by','Darwin  ','Lamarck   ','Pasteur   ','Mendel.','','','b','','utme','2007',160,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(187,'In terms of the number of individuals, which of the following  taxa is most inclusive?','order','family','class  ','species','','','c','','utme','2008',181,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(188,'A characteristic that can possibly be shared by both living  and non-living organisms is  ','locomotion  ','irritability','increase in biomass','increase in size','','','d','','utme','2008',190,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(189,'The cell of an onion bulb can be differentiated from a cheek cell by the presence of  ','plasmalemma  ',' chloroplast','cell wall  ',' nucleus','','','c','','utme','2008',182,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(190,'In plants, the structure that performs  a similar  function with the testis is in mammals  is the   ','stigma','filament  ','anther','replace','','','c','','utme','2008',195,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(191,'The bacteria type that are arranged in chains are the','Staphylococci  ','clostridia','streptococci','Bacilli','','','c','','utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(192,'The most abundant group of organism in the animal kingdom is','Mammalian','Aves  ','Annelida  ','Insecta','','','d','','utme','2008',163,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(193,'Radial symmetry is a feature common to the  ','platyhelminthes','nematodes  ','coelentrates','arthropods','','','c','','utme','2008',183,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(194,'Which of the following  is used mainly for balancing in fish?','The causal fin  ','the pectoral fin','the anal fin  ','The dorsal fin','','','d','','utme','2008',184,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(195,'The beak of a duck is structurally adapted  for','scooping and sieving food  ','catching and gasping food  ','picking and cracking food  ','boring and sucking food  ','','','a','','utme','2008',176,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(196,'The most important characteristic that makes reptiles to conquer terrestrial habitats is the possession of','long tail','scaly skin','sharp claw','amniotic egg','','','b','','utme','2008',187,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(197,'Inn a dictyledonous stem, the zone between the epidermis and the pericycle is the','cortex  ','stele','xylem','phloem','','','a','','utme','2008',188,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(198,'The order of passage of food in the digestive system is','ileum caecum large intestine rectum','ileum colon caecum rectum','large intestine ileum caecum rectum','colon caeum ileum rectum  ','','','b','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(199,'Insectivorous plants traps and kill their prey to derive  ','phosphorous  ','calcium  ','nitrogen','Zinc','','','c','','utme','2008',175,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(200,'In the alimentary system of a bird, the function  of teeth is carried out by the','crop  ','Beak  ','Gizzard','tongue','','','c','','utme','2008',163,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(201,'What will happen when two equal  sized pieces of unripe pawpaw labeled X and Y are dropped into equal volumes of concentrated salt solution and distilled water respectively?  ','Pawpaw X will become  turgid  ','Both  will increase in size','pawpaw Y will become turgid','Both will decrease in size','','','c','','utme','2008',176,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(202,'Exhaled air differs from inhaled air in that it  ','contains less amount of carbon (IV) oxide  ','is usually lower in temperature','often has more oxygen  ','usually has more water vapour','','','d','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(203,'In the mammalian kidney,  the Bowman’s  capsule is located in the','ureter','Pelvis  ','cortex','medulla  ','','','d','','utme','2008',199,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(204,'A plant  parenchyma cell also acts as a supporting tissue when it','becomes faccid  ','contains cystals  ','becomes turgid','is pigmented','','','c','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(205,'During ovulation, an egg is released from the','corpus luteum  ','ovarian funnel  ','Graafian follicle','fallopian tube','','','c','','utme','2008',181,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(206,'The transmission of impulses along a nerve fibre is characterized by','hormonal and temperature changes   ','electrical and ionic changes  ','hormonal changes  ','electrostatic changes','','','b','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(207,'The major consequences of bush burning in an ecosystem is  ','the loss of water absorbing ability of the soil','the loss of biological diversity','a decrease in animal population','an increase in soil fertility','','','b','','utme','2008',181,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(208,'Which of the following associations is an example of mutalism?','hydra viridis and zoochlorellae','human and lice   ','Shark and Remora fish  ','Bread and Rhizopus stolonifer  ','','','a','','utme','2008',187,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(209,'In a typical freshwater habitat, the edge of the stream or pond constitutes the','tidal zone  ','interidal zone  ','littoral zone  ','euphotic zone','','','c','','utme','2008',223,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(210,'The main ecological  problem facing interidal organisms is','dessciation','floatation','salinity','humidity','','','a','','utme','2008',190,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(211,'Stomata  of some plants are sunken and protected by hairs. These are features of ','mesophytes','epiphtes  ','hydrophytes  ','Xerophytes','','','d','','utme','2008',201,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(212,'An ecological factor that will have the most  limiting effect on the abundance of phytoplankton in a turbid pond is   ','pH  ','oxygen','light  ','temperature','','','c','','utme','2008',198,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(213,'In an experiment to determine the percentage of air in a soil  sample, the  Following readings were recorded:\\nVolume of water inn a measuring cylinder = 500cm3  \\nVolume of soil added to water= 350cm2\\nVolume of water andn soil after stirring= 800cm2\\nThe percentage of air in the soil sample is \\n','6.25%','10. 36%    ','14.28%','43.28%','','','c','','utme','2008',176,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(214,'A boy who is fond of swimming in a pond finds himself passing urine with traces of blood. He is likely to have contracted  ','Schistosomiasis','onchoerciasis','poliomyelitis  ','salmonellosis','','','a','','utme','2008',187,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(215,'The easiest way to establish  the level of pollution in a local stream is to measure the level of','oxygen','carbon(IV) oxide','ammonia','alkalinity','','','a','','utme','2008',202,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(216,'Which of the following is a major case of variation among  organisms?  ','inbreeding  ','backcrossing   ','sexual reproduction','Gene dominance','','','c','','utme','2008',172,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(217,'The Rhesus factor of blood was first identified in a category of  ','monkeys   ','human females','human males  ','chimpanzees','','','a','','utme','2008',195,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(218,'Genetically modified food products have not become  universally accepted because','They are not tasty as others produced  by conventional means','they are usually costlier than others produced by conventional means','their  efforts on human consumers is not yet fully understood   ','the technology can be applied only  in developed  countries','','','c','','utme','2008',184,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(219,'A major  adaptive feature of endo-parasites is the   ','loss of the organ of movement  ','presence of claws  ','loss of the central nervous system  ','presence of piercing mouthparts','','','a','','utme','2008',193,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(220,'The ability of a chameleon to change its colour is an adaptive feature for  ','attraction','defence  ','display','attack     ','','','b','','utme','2008',180,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(221,'Which of the following is the most advanced evolutionary development in plants?  (a) possession of unicellular structures  ','possession of unicellular structures  ','Development of flowers','dispersal of spores  ','Development of secondary thickening','','','b','','utme','2008',184,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(222,'The natural process that produces adaptive evolutionary  changes is  ','mutation  ','gene flow  ','genetic drift','natural selection','','','d','','utme','2008',191,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(223,'What is the level of organization  of an onion bulb?','tissue  ','organ','systemic','organism','','','b','','utme','2009',191,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(224,'A characteristic exhibited by all living organism is  ','sexual reproduction   ','aerobic respiration  ','the ability to move from one place to another  ','the ability to remove unwanted substances.','','','d','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:03'),(225,'In a cell, the genes are carried by  ','nuclear membranes','chromatin threads  ','lysosomes','mitochondria','','','b','','utme','2009',196,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:31'),(226,'Alternation of a sexual and sexual modes of reproduction is found in','blue-green algae  ',' Euglena','fern',' maize','','','c','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:14'),(227,'The first terrestrial vertebratese volved from','pisces  ','Reptilia  ','Amphibia  ','Mammalia','','','c','','utme','2009',196,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(228,'In plants, the structures that play roles similar to the arteries and veins of animals are the  ','xylem and phloem','root hairs and xylem  ','lenticels and phloem  ','roots and stems','','','a','','utme','2009',192,'Admin','0000-00-00 00:00:00','2020-08-15 20:57:21'),(229,'A blue-green alga is not a protophytes because','it is aquatic  ','its cells are prokaryotic','it cannot move','it is not a green plant','','','b','','utme','2009',245,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(230,'The feature that makes locomotion in water easy for fish is the','scaly body','slimy body  ','steam lined body','lateral line','','','c','','utme','2009',186,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(231,'Bird toes suitable for digging have claws that are  ','blunt','curved  ','hooked','sharp','','','a','','utme','2009',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:42'),(232,'Chewing the cud is an adaptation peculiar to','herbivores','omnivores  ','rodents   ','ruminants','','','d','','utme','2009',210,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(233,'Which of the following is an example of a carnivorous plant?','Hydra','Bladderwort','Yeast','Spirogyra','','','b','','utme','2009',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(234,'The part of the alimentary system of a bird where food is  ground into small particles is the','cloaca  ','stomach  ','crop  ','gizzard','','','d','','utme','2009',170,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:42'),(235,'Which of the following describes the sequence of blood flow fro the heart to a tissue?','Heart_artery_arteriole _ tissue','Heart_vein_venule _tissue','Heart _ venule _vein_tissue','Heart _arteriole _artery_tissue','','','a','','utme','2009',193,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(236,'The enzymes of the glycolytic pathway are located in  the','mitochondria  ','gastric juice','plasma','cytoplasm','','','d','','utme','2009',167,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(237,'In insects, the structure that performs  the same function as the kidney in man is the','nephridium','flame cell  ','malphigiann tubule','trachea','','','c','','utme','2009',209,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(238,'The axial  skeleton is found in the','skull , ribs, vertebral column and breast bone   ','skull humerus, vertebral column and ribs  ',' breastbone, clavicle, rids and vertebral column',' femur, sternum, ulnae and skull','','','a','','utme','2009',190,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(239,'The reproductive  system of a male mammal is made up of  ','claspers, prostrate, gland, sperm duct and vas deferns','testis, prostrate gland, sperm duct and vas deferns  ','oviduct , urethra, testis and sperm  duct','testis, uterus, prostrate gland and sperm duct.','','','b','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:14'),(240,'In a bean seed, absorption of water at the beginning  of germination is through the  ','hilum','micropyle  ','testa  ','plumule','','','b','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-08-12 08:01:32'),(241,'The most important ecological factor in a terrestrial environment is','rainfall',' humidity','wind',' soil','','','a','','utme','2009',201,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(242,'The association between bacteria residing I the caecum and the ruminant is  ','parasitism  ','predation  ','saprophytism  ','mutalism','','','d','','utme','2009',196,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:55'),(243,'A marine protozoan is likely to have no contractile acuole  mainly because the cytoplasm is  ','isotonic to sea water','hypotonic to sea water','hypertonic to sea water','impervious to seas water','','','a','','utme','2009',197,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:20'),(244,'In freshwater  marshes and swamps, the most important abiotic factor that organisms have to','nature  of substratum  ','high salinity  ','high temperature  ','low pH','','','a','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:42'),(245,'Which of the following biomass could be characterized by very low rainfall, cold nights, hardays and fast blooming plants?  ','Northern Guinea savanna','southern Guinea savanna  ','Tropical desert',' montane forest','','','b','','utme','2009',178,'Admin','0000-00-00 00:00:00','2020-08-15 00:44:20'),(246,'The optimum temperature  for the growth of the organism is','25oC','50oC','75oC   ','100oC','','','b','','utme','2009',198,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(247,'Mass of a crucible = 10g\\n Mass of a crucible and soil before heating = -29g.\\nMass of a crucible and sol after heating = 18g. From the information above, determine the percentage of wter in the given soil sample?  \\n','20%','25%','40%','50%','','','d','','utme','2009',171,'Admin','0000-00-00 00:00:00','2020-08-13 13:00:34'),(248,'I Onchocerciasis  II Schistosomiasis  \\nIII Salmonellosis  IV Meningitis \\nWhich of the diseases listed above are associated with water? \\n','I and II only  ','II, III and IV  ','I, II and III  ','II and IV','','','c','','utme','2009',207,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:48'),(249,'The major cause of global warming is the','Burning of fossil fuel','construction of dams','use of electricity  ','exploration of space','','','a','','utme','2009',183,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(250,'The uniqueness of an individual organism in a population is accounted for by','evolution','variation  ','adaptation','mutation','','','b','','utme','2009',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(251,'A phenotypic character with intermediate forms that can be graded from one extreme to the other is referred to as','discontinous variation   ','continuous variation','a mutant','a genome','','','b','','utme','2009',190,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:41'),(252,'A farmer’s assumption that the seed from a good harvest will produce a good yield is explained by the theory  of','evolution','adaptation','variation','heredity','','','d','','utme','2009',189,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:07'),(253,'In Mendelian inheritance, discontinuous characters are controlled by the','centromeres','alleles','chromosomes','chromatids','','','b','','utme','2009',208,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:09'),(254,'A woman with the ability to roll her tongue (Tt) marries a man who cannot roll his tongue  (tt). What is the probability of each of their children being a tongue roller?','100%','75%','50%','25%','','','c','','utme','2009',192,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(255,'A health condition that isi known to have resulted from gene mutation is  ','heamophilia ','colour blindeness  ',' sickle cell anaemia  ',' anaemia  ','','','c','','utme','2009',198,'Admin','0000-00-00 00:00:00','2020-08-15 20:57:21'),(256,'Plants that grow in an area that is neither too wet nor too dry are','xerophytes  ','mesophytes  ','epiphytes','hydrophytes','','','b','','utme','2009',209,'Admin','0000-00-00 00:00:00','2020-08-15 20:57:21'),(257,'The part of a domestic fowl responsible  for preventing heat loss is the  ','filoplume ','contour feather  ',' down feather',' quill','','','c','','utme','2009',184,'Admin','0000-00-00 00:00:00','2020-08-15 20:57:21'),(258,'Which of the following animals is most adapted for water conservation?','Earthworms  ','mammals   ','Flatworms  ','Insects','','','d','','utme','2009',171,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(259,'The specialized pigment cells that are involved in colouration and colour change in animals are the','xanthophyl','chromatophores','chlorophyll','mechanic','','','d','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:22'),(260,'During the dry season in the tropics, the body metabolism of some animals slows to a minimal level in a process referred to as','hibernation','aestivation','dormancy','sense scense  ','','','b','','utme','2009',174,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(261,'According to Darwin, the driving force behind evolutionary change is','atural selection','genetic drift  ','mutation','gene flow','','','a','','utme','2009',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(262,'Which of the following characterizes a mature plant cell?','The cytoplasm fills up the entire cell space',' The nucleus is pushed to the centre of the cell',' the cell wall is made up of cellulose','The nucleus is small and irregular in shape','','','d','','utme','2010',288,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(263,'Which of the following is NOT a function of the nucleus of a cell?  ','it controls the life processes of the cell','It translates genetic formation for   the manufacture of proteins','it stores and carries hereditary information  ','it sis a reservoir of energy for the cell','','','d','','utme','2010',264,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(264,'The dominant phase in the life cycle of a fern is the','gametophyte  ',' prothallus','sporophyte  ',' antheridium','','','c','','utme','2010',261,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(265,'Parental care is exhibited by','toads','snails',' earthworms',' birds','','','d','','utme','2010',269,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(266,'Which of the following groups of cells is devoid of true nuclei?','viruses','algae  ','Monera','Fungi','','','c','','utme','2010',265,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(267,'Which of the following is true of the transverse section of a dicot stem?','The epidermis is completely encircled by the cortex','The xylem is more interiorly located than the phloem',' The cambium lies between the cortex and the vascular bundles','The vascular bundles are randomly scattered within the  cortex','','','b','','utme','2010',254,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(268,'Which of the following is lacking in the diet of a person with kwashiorkor?','Vitamins  ','Proteins','Carbohydrates  ','Minerals','','','b','','utme','2010',272,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(269,'The mode of nutrition of sundew and bladderwort can be described as','autotrophic  ','saprophytic  ','holozoic   ','chemosynthetic','','','c','','utme','2010',236,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(270,'When a mixture of a food substance fand Benedict’s solution was warmed, the solution changed from blue to brick red . This indicates the presence of','reducing  sugar','fatty acid','sucrose  ','amino acid','','','a','','utme','2010',258,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(271,'The primary structure responsible for pumping blood for circulation through the mammalian circulatory systems is the','veins  ','right auricle  ','arteries','left ventricle','','','d','','utme','2010',278,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(272,'Circulation of blood to all parts of the body except the lungs is through  ','the pulmonary artery  ','systemic circulation','the lymphatic system','pulmonary circulation','','','b','','utme','2010',261,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(273,'Yeast respires anaerobically  to covert simple sugar to carbon (IV) oxide and','alcohol  ','acid','oxygen','water','','','a','','utme','2010',280,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(274,'The sheet of muscle that separates the thoracic and the abdominal cavities is the ','diaphragm  ','intercostal muscles',' pleural membrane   ',' pericardium','','','c','','utme','2010',263,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(275,'The oily substance that lubricates the mammalian hair to keep it flexible ad water repellent is secreted by the','sweat glands','sebaceous glands','fatty  cells','granular layer','','','b','','utme','2010',255,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(276,'The outer layer of the kidney where the Bowman’s capsules are found is the','cortex','pelvis  ','medulla','pyramid','','','a','','utme','2010',277,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(277,'Which of the following stimuli is likely to elicit a nastic response in an organism? ','Touch  ','Light intensity  ','Chemical substances  ','gravity','','','a','','utme','2010',248,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(278,'In the male reproductive system of a mammal, sperm is stored in the','van deferens  ','urethra','epididymis  ','seminiferous tubules   ','','','c','','utme','2010',270,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(279,'Chemosynthetic organism are capable  of manufacturing their food  from simple inorganic substances through the process of','oxidation','denitrification','reduction','phosphorylation','','','a','','utme','2010',275,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(280,'The part of the human gut  that has an acidic  content is the','stomach  ','duodenum  ','ileum','colon','','','a','','utme','2010',268,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(281,'I. Stomata _ spirogyra   II alveoli _ earthworm  III malpighian tubule_mammal Iv.Contractile vacuole _protozoa \\nWhich of the above structures is correctly matched with the organisms in which it is found? \\n','III  ','II   ','I','IV','','','d','','utme','2010',273,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(282,'A food chain always begins with a  ','consumer  ','decomposer  ','producer','primary  consumer','','','c','','utme','2010',262,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(283,'Mycorrhizae promote plant growth by','absorbing inorganic ions from the soil  ','protecting it from infection','helping it to utilize atmospheric nitrogen','serving as a growth regulator','','','a','','utme','2010',300,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(284,'The barrier between maternal and foetal blood is the','placenta  ','liver','umbilical chord  ','uterine wall','','','a','','utme','2010',253,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(285,'The blood component  that has the greatest affinity for oxygen is the ','lymphocytes',' leucocytes','erythorocytes  ','thromboytes','','','c','','utme','2010',281,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(286,'Which of the following organisms is mainly  found in the marine habitat?','Achatina  ','Tilapia  ','Dog fish  ','Tortoise','','','c','','utme','2010',257,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(287,'The two halves of the pelvic girdle are jointed together at the  ','public  symphysis  ','ilium  ','pubis  ','obturator foramen','','','a','','utme','2010',281,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(288,'I. Adoption of appropriate nocturnal habits   II. Burrowing   III. adjusting their  internal body temperature   IV. Possession of many sweat pores.\\nWhich of the above are ways in which desert animals adapt to extreme heat of environment?  \\n','I and IV only  ','II and III only  ','I and II only  ','I, II and III only','','','d','','utme','2010',273,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(289,'Low annual rainfall, sparse vegetation, high dermal temperatures and cold nights are characteristics features of the','tropical  rainforest  ','desert   ','mundane forest','guinea savanna','','','b','','utme','2010',271,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(290,'The average number of individuals of a species  per unit area of the habitat is the ',' population density','population frequency  ','population size','population distribution','','','a','','utme','2010',291,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(291,'The loss of soil through erosion can be reduced by','watering','crop rotation  ','maturing  ','irrigation','','','b','','utme','2010',288,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(292,'The vector for yellow fever is  ','edges mosquito  ','anopheles mosquito  ','tsetse fly  ','blackly','','','a','','utme','2010',279,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(293,'The protozoan plasmodium falciparum is transmitted by','female anopheles mosquitoes  ','female Aedes mosquitoes  ','female Culex mosquitoes   ','Female  blackfly','','','a','','utme','2010',251,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(294,'A dilute solution of phenylthiocarbamide tastes bitter to some people  and is tasteless to others. This is an example of  ','taste bud variation','discontinuous variation   ','morphological variation',' continuous variation','','','b','','utme','2010',268,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(295,'Throxne and adrenalin are examples of hormones which control','blood grouping','tongue rolling  ','behavioural patterns','colour variation ','','','c','','utme','2010',274,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(296,'A pair of genes that control a trait is referred to as','anallele','recessive','dominant  ','ahybrid','','','a','','utme','2010',287,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(297,'The chromosome number of a cell before and after the process of meiosis is conventionally represented as','2n_2n   ','n_n  ','n-2n  ','2n-n','','','d','','utme','2010',277,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(298,'If both parents are heterozygous for trait, he probability that an offspring will be recessive for that trait is','¾   ','½    ','¼','1','','','c','','utme','2010',259,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(299,'At what stage in the life history of a mammal is the sex of an individual set?','At adolescence','At puberty  ','At birth  ','At conception','','','d','','utme','2010',272,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(300,'The main distinguishing features between the soldier termite and other members of the caste are the','presence of wings, possession of a small head and large thorax','presence of wings, possession of a large thorax  and a small head','absence of wings, possession off strong mandibles and a large head','absence of wings, possession of big head and the absence of mandible.','','','c','','utme','2010',259,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(301,'The flippers of a whale  and the fins of a fish are examples of','divergent evolution  ','co evolution','continuous variation','convergent evolution','','','a','','utme','2010',270,'Admin','0000-00-00 00:00:00','2020-08-16 19:54:03'),(302,'The function of the red head in male Agama lizards is to','scare other males from the territory  ','attract female lizards for mating purposes  ','warn predators of the distastefulness of the animal  ','Conceal and camouflage the animal from predators','','','b','','utme','2011',156,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:48'),(303,'In which of the following species is the biomass of an individual the smallest?','Agama sp  ','Bufo sp','spirogyra sp   ','Tilapia sp','','','c','','utme','2011',200,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(304,'Seed plants are divided into','angiosperms and gymnosperms','monocotyledons and dicotyledons','thallophyes and pbryophytes  ','Tracheophytes and ferns','','','a','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:43'),(305,'In which of the following groups of vertebrates is parental  care mostly exhibited? ','  Amphibia','Aves  ','Mammalia  ','Reptilia','','','c','','utme','2011',187,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:01'),(306,'The adult form of III is a vector of  ','river blindness','cholera','elephantiasis','sleeping sickness','','','c','','utme','2011',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(307,'The adaptive importance of nuptial flight from termite colonies is to','provide abundant food for birds and other animals during the early rains','ensure cross breeding between members of one colony  and another','expel  the reproductive so as to provide  enough food for other members','disperse the reproductive in order to establish  new colonies','','','d','','utme','2011',180,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:16'),(308,'Which of the following can cause shrinkage  of living cells?  ','Isotonic solution   ','Delonized water  ','Hypertonic solution','hypotonic solution','','','c','','utme','2011',183,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(309,'Which of the following is true of leucocytes?  ','They are most numerous and ramify all cells  ','They are large and nucleated  ','They are involved in blood clotting','They are respiratory pigments','','','b','','utme','2011',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:14'),(310,'The conversion of a nutrient into a molecule in the body of a consumer is referred to a s  ','assimilation','absorption  ','inhibition','digestion','','','d','','utme','2011',235,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(311,'The ability  of a living organism to detect and respond to changes in the environment is referred to as','irritability','growth    ','taxis','locomotion','','','a','','utme','2011',176,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:42'),(312,'In mammals, the exchange of nutrients and metabolic products occurs in the','oesophagus','trachea','lymph   ','lungs','','','c','','utme','2011',183,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(313,'An example of an endospermous seed is   ','cashew  nut  ','cottons seed','bean seed  ','maize grain','','','d','','utme','2011',176,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(314,'I. Parasitism _ Sundew    II Autrrophism_Amoeba    III Saprophytism_ Alga  IV. Heterotrophism- Agama. Which of the above modes of nutrition is correctly matched with the organism that  exhibits it?','III','IV  ','I','II','','','b','','utme','2011',181,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(315,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nIn which of the test tubes will glucose be detected after complete hydrolysis?\\n','II and III only','I only','I, II and III   ','I and II only','','','a','','utme','2011',189,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:49'),(316,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nThe enzyme involved in the hydrolysis is\\n','erepsin  ','perilymph   ','maltase  ','rennin','','','c','','utme','2011',191,'Admin','0000-00-00 00:00:00','2020-08-11 11:39:42'),(317,'The part of the mammalian ear responsible for the maintenance of balance is the ','pinna   ',' perilymph  ',' Ossicles   ',' cochlea','','','d','','utme','2011',196,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:43'),(318,'The path followed by air as it passes through the lungs in mammals is  ','bronchi_ trachea_ alveoli_ bronchioles  ','Trachea _ Bronchiole _ bronchi_ alveoli   ','bornchioles _ alveoli _ bronchi_ trachea   ','trachea_ bronchi _ bronchioles_ alveoli','','','d','','utme','2011',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:42'),(319,'The movement response of a cockroach away  from a light source can be described as  ','negative phototaxism  ','negative photropism','positive  photropism  ','positive phototaxism','','','a','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(320,'The vascular tissues in higher plants are responsible for  ','suction pressure  ','transpiration pull','the transport of gases and water   ','the movement of food and water','','','d','','utme','2011',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(321,'Which of the following organs regulates the levels of water, salts, hydrogen ions and urea in the mammalian blood?','kidney','bladder  ','colon  ','liver','','','a','','utme','2011',169,'Admin','0000-00-00 00:00:00','2020-08-12 08:47:39'),(322,'The sequence of the one way gaseous exchange mechanism in a fish is','gills _ operculum _ mouth','mouth_operculum_ gills  ','mouth _gills _operculum','operculum _ gills_ mouth','','','c','','utme','2011',182,'Admin','0000-00-00 00:00:00','2020-08-14 16:46:19'),(323,'The  type of asexual reproduction that is common to both paramecium and protists is','speculation  ','fragmentation','fission','budding','','','c','','utme','2011',172,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:06'),(324,'In nature, plants and animals are perpetually engaged in mutulism because  ','all animals rely on food produced  by plants','they  utilize respiratory wastes of each other  ','they are neighbours  ','they are rivals','','','b','','utme','2011',150,'Admin','0000-00-00 00:00:00','2020-08-12 22:30:55'),(325,'In an experiment to determine the percentage of humus and water in a soil sample, the following results were obtained. \\nWeight of the evaporating basin alone = 80.5g   Weight of basin and soil = 101.5g    Weight after drying the soil in the oven = 99.0g    Weight of basin and roasted soil = 95.5h\\nThe percentage of humus in the soil sample is  \\n','17.60%','26.70%','16.20%','16.70%','','','d','','utme','2011',167,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(326,'An example of a filter-feeding animals is','butterly  ','whale','mosquito  ','shark','','','b','','utme','2011',175,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:43'),(327,'Which of the  following is a feature of the population Pyramid of a developing country?  ','Low birth rate','low death rate  ','short lifespan','long lifespan','','','c','','utme','2011',176,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:45'),(328,'the interaction of a community of organisms with its abiotic environment constitutes','a food chain','an ecosystem  ','a microhabitat','a niche','','','b','','utme','2011',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:20'),(329,'The vector of the malaria parasite is a','female anopheles mosquito  ','male culex mosquitoes','female culex mosquito  ','female Aids mosquito','','','a','','utme','2011',192,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(330,'Which of the following  instruments is used  to measure relative humidity?','Thermometer  ','Hygrometer  ','Anemometer','Hydrometer','','','b','','utme','2011',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:37'),(331,'Exo-erythrocytic phase  of the life cycle  of malaria parasite occurs in the','reticuloendothelial cells of humans','maphigian tubules of mosquito','brain of humans  ','liver  of humans','','','d','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:39'),(332,'Habitats are generally classified into  ','aquatic and terrestrial','arboreal  and marine biomes','microhabitats and macro habitats','biotic and abiotic','','','a','','utme','2011',192,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(333,'Drancunculiasis can be contacted  through  ','drinking contaminated water','bathing in contaminated water  ','bites of blackfly   ','eating contaminated food','','','b','','utme','2011',199,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(334,'Which of the following groups of environmental factors are density dependent?  ','Temperature, salinity, predation and disease   ',' Food, predation, disease and accumulation of metabolites  ','Temperature, food disease and light  ','food, salinity, accumulation  of metabolites and light','','','b','','utme','2011',212,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(335,'Millet, sorghum, maize and onions are common crops grown in Nigerian in the  (a) Sudan savanna','montane forests   ','Sahel savanna','Tropical rainforests','','','','a','','utme','2011',165,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:54'),(336,'In which of the following biomes is the south western part of Nigeria located?  ','Tropical rainforest  ','Tropical woodland  ','desert','Temperature forest','','','a','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:39'),(337,'Lack of space in a population  could lead to an increase in','birth rate','disease rate','drought   ','water  scarcity','','','b','','utme','2011',196,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:08'),(338,'The inheritable characters that are determined by a gene located only on the X-chromosome is  ','sex linked','homozygous  ','dominant  ','recessive','','','a','','utme','2011',173,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(339,'If the cross of a red  flowered plant with a white flowered plant produces a pink flowered plant, it is an example of','incomplete dominance  ',' mutation  ',' linkage','co dominance','','','d','','utme','2011',213,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:14'),(340,'Which of the following theories was NOT considered by Darwin in his evolutionary theory?','survival of the fittest  ','use and disuse  ','competition ',' variation','','','b','','utme','2011',171,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(341,'The crossing of individuals of the same species with different genetic characters is',' polygenic inheritance  ',' non disjunction  ','inbreeding','cross breeding','','','c','','utme','2011',182,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(342,'The number of alleles controlling  blood groups in humans is','4','5','2','3','','','d','','utme','2011',194,'Admin','0000-00-00 00:00:00','2020-08-14 16:46:17'),(343,'During blood transfusion, agglutination may occur as a result of the reaction between','two different antigens  ','two different antibodies  ','similar antigens and antibodies  ','contrasting antigens and antibodies','','','d','','utme','2011',200,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(344,'The fallacy in Lamarck’s evolutionary theory was the  assumption that','acquired traits  are heritable','acquired traits are seldom formed','traits  are acquired  through the use of body parts  ','traits are acquired through disuse  of body parts.','','','c','','utme','2011',204,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:04'),(345,'The brightly coloured eye spots on the hind wings of a moth are an example of ',' disruptive colouration',' continuous variation    ','divergent  Evolution','convergent  evolution','','','d','','utme','2011',183,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(346,'Which of the following is most advanced in the evolutionary trend of animals?  ',' Liver fluke  ','Earthworm','Snail  ','cockroach','','','d','','utme','2012',193,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(347,'Which of the following is the lowest category of  classification?  ','Class   ','species  ','Family','Genus','','','b','','utme','2012',198,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(348,'Plants  that show secondary growth are usually found among the','thallophytes','pteridophytes','monocotyledons  ','dicotyledons','','','d','','utme','2012',192,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(349,'The fungi are a distinct group of eukaryotes mainly  because they have  ','spores  ','no chlorophyll  ','many fruiting bodies','sexual and asexual reproduction','','','d','','utme','2012',197,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(350,'An arthropod that is destructive at the early stage of its life cycle is','butterfly  ','mosquito  ','bee','millipede','','','a','','utme','2012',176,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(351,'An animal body that can be cut along its axis in any plane to give two identical parts is said to be  ','radically  symmetrical','bilaterally symmetrical','asymmetrical','symmetrical','','','a','','utme','2012',172,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:01'),(352,'Which  of the following possesses mammary gland?','Dogfish','Whale  ','Shark  ','Catfish','','','b','','utme','2012',217,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:44'),(353,'The feature  that links birds to reptiles in evolution is the possession of  ','feathers  ','beak  ','skeleton','scales','','','d','','utme','2012',187,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(354,'Counter shading is an adaptive  feature that enables animals to  ','flight enemies  ','remain undetected','warn enemies  ','attract mates','','','b','','utme','2012',184,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(355,'Which of the following plant structures lacks a waterproof of cuticle?  ','leaf  ','stem  ','root','shoot','','','c','','utme','2012',194,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(356,'In the mammalian male reproductive system, the part that serves as a passage for both urine and semen is the ','urethra  ','ureter  ','bladder','seminal vesicle','','','a','','utme','2012',179,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:00'),(357,'In plants, which of the  following is required in minute quantities  for growth?','copper  ','potassium','phosphorous','sodium  ','','','a','','utme','2012',179,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:34'),(358,'Which of the following organisms is both parasitic and  autotrophic?  ','Sundew  ','Loranthus','Rhizopus  ','tapeworm','','','a','','utme','2012',188,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(359,'A function of the hydrochloric acid produced in the human stomach during digestion is to  ','neutralize the effect of bile   ','coagulate milk protein and emulsify fats  ','stop the action of ptyalin  ','break up food into smaller particles','','','c','','utme','2012',199,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(360,'Which of the following is a polysaccharide?','Glucose  ','sucrose','Maltose   ','Cellulose','','','d','','utme','2012',198,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:01'),(361,'In the kidney of mammals, the site of ultra filtration is the','urinferous tuble','Bowman capsule  ','loop of Henle  ','renal tuble','','','b','','utme','2012',174,'Admin','0000-00-00 00:00:00','2020-08-15 00:44:14'),(362,'Which of the following  is involved1 in secondary  thickening in plants?','collenchyma  and  xylem cells  ','Vascular cambium and collenchyma’s cells  ','vascular cambium and cork cambium','Cork cambium and sclerenchyma','','','c','','utme','2012',195,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:34'),(363,'An example of a fruit  that develops from a single carpel is','(a)okro  ','tomato','bean  ','orange','','','c','','utme','2012',166,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:43'),(364,'Plant  growth can be artificially stimulated by the addition of  ','gibberellin  ','kinin','abscisic acid  ','ethylene','','','a','','utme','2012',193,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(365,'The autonomic nervous system consists of neurons that control the','voluntary  muscle','heart beat','tongue  ','hands','','','b','','utme','2012',189,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:14'),(366,'Plants of temperate origin can be grown in tropical areas in the vegetation zones of the','rain forest   ','Guinea savanna   ','Sudan savanna','montane forest','','','d','','utme','2012',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:03'),(367,'The water cycle is maintained mainly by   ','evaporation  of water in the environment  ','evaporation and condensation of water  in the environment  ','condensation of water in the environment  ','transpiration and respiration in plants','','','b','','utme','2012',174,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:33'),(368,'Organisms living in an estuarine habitat are adapted to  ','withstand   wide fluctuations in temperature   ','survive only in water with low salinity   ','withstand wide fluctuations in salinity   ','feed only on phytoplankton and dead organic matter.','','','c','','utme','2012',181,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:48'),(369,'The presence of stilt roots, pneumatophores, sunken stomata and salt glands are adaptive features of plants found in the','tropical rainforest','mangrove swamps  ','grassland  ','montane forest','','','b','','utme','2012',169,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:54'),(370,'Which of the following animals an exist solely on the water they get from food and metabolic reactions?  ','Forest arboreal dwellers  ','Desert dwellers','forest ground dwellers','rainforest dwellers','','','b','','utme','2012',200,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(371,'The most likely first colonizers of a bare rock are  ','mosses  ','ferns','lichen  ','fungi','','','c','','utme','2012',191,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:32'),(372,'The carrying capacity of a habitat is reached when the population growth begins to','increase slowly','increase exponentially','slow down','remain steady','','','d','','utme','2012',213,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(373,'The abiotic factors that  control human population include  ','disease and famine  ','space and rainfall  ','flooding and earthquake   ','temperature','','','a','','utme','2012',184,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(374,'An indigenous method of renewing and maintaining  soil fertility is by','clearing farms a by burning','planting one crop type  ','adding inorganic fertilizers yearly   ','crop rotation and shifting cultivation','','','d','','utme','2012',188,'Admin','0000-00-00 00:00:00','2020-08-11 15:49:58'),(375,'The disease caused by water-brone pathogen include','gonrrhoea and poliomyelitis   ','typhoid and syphilis   ','tuberculosis and cholera','typhoid and cholera','','','d','','utme','2012',192,'Admin','0000-00-00 00:00:00','2020-08-15 00:44:13'),(376,'Which of the following is true in blood transfusion?','a person of blood group AB can donate blood only to another person of blood group AB','Persons of blood groups A and B can donate or receive blood from each other','A person of blood group AB can receive blood only from persons of blood group A or B  ','A person of blood group O can donate only to a person of blood group O.','','','a','','utme','2012',190,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:53'),(377,'A yellow maize is planted and all the fruits obtained are of yellow seeds. When they are cross bred, yellow seeds and white seeds are obtained in a ratio 3:1. The yellow seed is said to be  ','non heritable','sex linked','a recessive trait  ','a dominant trait','','','d','','utme','2012',202,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:55'),(378,'When a colour blind man marries a carrier woman. What is the probability of their offspring being colorblind?','25%','50%','75%','100%','','','c','','utme','2012',192,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:38'),(379,'The correct base pairing for DNA is','adenine _ thymine and guanine_ cytosine  ','adenine_ guanine and thymine_ cytosine  ','adenine_ cytosine and guanine_ thymine  ','adenine_ adenine  and cytosine_cytosine','','','a','','utme','2012',177,'Admin','0000-00-00 00:00:00','2020-08-14 16:46:17'),(380,'The short thick beak in birds is an adaptation for','crushing seeds','sucking nectar  ','tearing flesh','straining mud','','','a','','utme','2012',215,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(381,'The basking of Agama lizards in the sun is to','chance the colour of their body  ','raise their body temperature to become active','fight to defend their territories','attract the female for courtship','','','b','','utme','2012',171,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:43'),(382,'The significance of a very large number  of termites involved in nuptial swarming is to','provide birds with plenty of food','ensure their perpetuation despite predatory pressure  ','search for a favourable place to breed  ','ensure that every individual gets a mate.','','','c','','utme','2012',202,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:39'),(383,'The use and disuse of body parts and the inheritance of acquired traits were used to explain  ','Darwin’s theory','Lamarck’s theory','genetic drift  ','gene flow','','','b','','utme','2012',176,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:09'),(384,'From his study of Galapagos finches, Darwin derived his theory of evolution from ',' comparative anatomy','comparative physiology',' fossil remains  ','comparative embryology.','','','a','','utme','2012',158,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:21');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `chemistry` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `chemistry` VALUES (1,'25cm3 of a gas X contains Zmolecules at 150C and 75mmHg. How many molecules will 25cmm3 of another gas Y contain at the same temperature and pressure','2Y','2Z','Z','Y','','','c','','utme','2001',1247,'Admin','0000-00-00 00:00:00','2020-08-16 03:14:27'),(2,'What mass of water is produced when 8.0g of hydriogen reacts with excess oxygen [H = 1, O = 16]','36.0g','8.0g','72.0g','16.0g','','','c','','utme','2001',1194,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:33'),(3,'A particle that contains 9 protons, 10 neutrons and 10electrons is a','Neghative ion','Positive ion','Neutral atom of a non metal','Neutral atom of a metal','','','a','','utme','2001',1165,'Admin','0000-00-00 00:00:00','2020-08-14 02:27:06'),(4,'Cancerous growths are cured by exposure to','ɣ-rays',' β – rays',' ἀ – rays','X -rays','','','a','','utme','2001',1189,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(5,'An oxide X02 has a vapour density of 32. What is the atomic mass of X [O = 16]','32','20','14','12','','','a','','utme','2001',1177,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(6,'Milikan’s contribution to the development of atomic theory is the determination of','Charge on electron','Positive rays','Charge to amss ratio','Cathode rays','','','c','','utme','2001',1131,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:34'),(7,'Four elements W, X, Y, and Z have atomic numbers 2, 6, 16 and 20 respectively. Which of these elements is a metal','X','W','Z','Y','','','c','','utme','2001',1242,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:12'),(8,'An element X with relative atomic mass 16.2 contains two isotopes      X  with relative abundance of 90% and      X with relative abundance of 10%. The value of m is','16','18','12','14','','','b','','utme','2001',1221,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:12'),(9,'Which of the following statements is correct about the average kinetic energy of the molecules of a gas','It inctreasaes with increase in pressure','It increases at constant pressure','It increases with increase in temperature','It increases in volume','','','c','','utme','2001',1217,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:47'),(10,'The pollution from petroleum spillage in rivers and lakes can best be dispersed by','Pouring detergents','Passing of ships through the area','Pouring organic solvents','Evaporation','','','a','','utme','2001',1236,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(11,'Deliquenscent substances are used for','Cooling','Wetting','Melting','Drying','','','d','','utme','2001',1216,'Admin','0000-00-00 00:00:00','2020-08-07 08:11:04'),(12,'Pure solvents are obtained by','Distillation','Condensation','Extraction','EvapopraTION','','','a','','utme','2001',1143,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(13,'What is the decrease in volume of air when pyrogallol is shaken with 30.00cm3 of air','15.00cm3','6.00cm3','0.63cm3','0.06cm3','','','b','','utme','2001',1175,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(14,'Environmental pollution is worsened by the release from automobile exhausts of','Water vapour','Steam','Smoke','Heavy metals','','','c','','utme','2001',1185,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(15,'The chemiocal used for coagulation in water purification is','Aluminum tetraoxosulphate(VI)','Copper tetratoxosulphate (VI)','Sodium tetraoxosulphate(VI)','Calcium tetraoxosulphate (VI)','','','a','','utme','2001',1179,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(16,'Phosphorous is stored under water to precvent it from','Dehydrating','Becoming inert','Smelling','Catching fire','','','d','','utme','2001',1106,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(17,'In which of the following reactuions does reduction take place','Fe2+ - e-   Fe3+','2O2-  → O2 + 4e-','Cr - 2e-  → Cr2+','2H+  +  2e-   →H2','','','d','','utme','2001',1193,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(18,'P(g) + O(g)    ⇌ 3R(s)  +  S(g)   ΔH is negative which of the following will increase the yield of R','Using a larger closed vessel','Increasing the temperature','Removing some S','Adding a positive catalyst','','','c','','utme','2001',1194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:08'),(19,'A metal M displaces zinc from zinc chloride solution. This shows that','M is more electronegative than zinc','Zinc is above hydrogen in the series','M is more electropositive than zinc','Electrons flow from zinc to M','','','c','','utme','2001',1241,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(20,'Which of the following best explains the increase in the rate of a chemical reaction as the temperature rises','The bonds in the reacting molecules are more readily broken','The molecules collisions become more violent','A lower proportion of the molecules has the necessary minimum energy to react','The collision frequency of the molecules increases','','','d','','utme','2001',1167,'Admin','0000-00-00 00:00:00','2020-08-12 16:05:39'),(21,'What current in amperes will deposit 2.7g of aluminium in 2 hours [Al = 27, f = 96500 C mol-1]','32','8','4','16','','','c','','utme','2001',1169,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:11'),(22,'Ethanoic acid is','Tribasic','Unionizeable','Monobasic','Dibasic','','','c','','utme','2001',1189,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(23,'C(s) + 2S (g)  → CS2 (g)      Δ H = +89kJ mol-1. The chemical equation above implies that','Each of carbon and sulphur has 89kJ of energy','Both carbon and sulphur contribute 89kJ of energy','89kJ of energy is released','89kJ is absorbed','','','d','','utme','2001',1148,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:14'),(24,' 2SO2(g) + O2(g) ⇌  2SO3(g)  The equilibrium constant for the reaction above is increased by  [ΔH = -189kJ mol -1]','Increasing the temperature of the system','Increasing the pressure of the system','The addition of a catalyst to the system','Increasing the surface area of the vessel','','','b','','utme','2001',1173,'Admin','0000-00-00 00:00:00','2020-08-12 16:05:39'),(25,'3CU(s)  +  8HNO3(aq) →  3Cu(NO3)2(aq)  +  4H2O(I)  +  2NO(g)  In the equation above, copper is','An electron acceptor','A base','An oxidizing agent','A reducing agent','','','d','','utme','2001',1179,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(26,'When ΔH is negative, a reaction is said to be','Ionic','Reversible','Exothermic','Endothermic','','','c','','utme','2001',1202,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(27,'As the concentration of an electrolyte reduces, the conductivity','Reduces to zero','Decreases','Increases','Is unaffected','','','b','','utme','2001',1178,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(28,'In which of the following reactions has the oxidation number of nitrogen increased','2NO(g)  +  Br2(l)  → 2NOBr(l)','2NO2(g)  +  O2(g)   → 2NO2(g)','FeSO4(aq)  +  NO(g) → Fe(NO)SO4(s)','2NO(g)  +  CI2(g) →  2NOCI(l)','','','b','','utme','2001',1096,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:08'),(29,'NH3(g)  +  HCI(g)  → NH4CI(s) The entropy change in the system is','Negative','Indeterminate','Positive','Zero','','','b','','utme','2001',1152,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(30,'Fermentation is the','Breaking down of carbohydrate to glucose','Conversion of sugar to alcohol in the presence of yeast','Breaking down of sugar to carbohydrate','Conversion of alcohol to sugar in the presence of yeast','','','b','','utme','2001',1172,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:32'),(31,'The general formula for the alkanals is','ROH','R2CO','RCOOR1','RCHO','','','d','','utme','2001',1189,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(32,'The main impurity in iron ore during the extraction of iron is','Silicon (IV) oxide','Carbon(IV) oxide','Calciumtrioxosilicate','Sulphur(II) oxide','','','a','','utme','2001',1180,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(33,'During the vulcanization of rubber, sulphur is added to','Break down rubber polymer','Lengthen the chain of rubber','Bind rubber molecules together','Act as a catalyst','','','c','','utme','2001',1168,'Admin','0000-00-00 00:00:00','2020-08-14 02:27:06'),(34,'Catalytic hydrogenation of benzene produces','Oil','Cyclohexane','Cycloexane','Margarine','','','c','','utme','2001',1234,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:13'),(35,'A trihydric alkanol is','glycerol','phenol','glycol','ethanol','','','a','','utme','2001',1134,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:11'),(36,'When chlorine is passed into water and the resulting solution exposed to sunlight, the product formed are','Chlorine gas and hydrogen','Oxygen and oxochlorate(l) acid','Hydrochloric acid and oxygen','','','','b','','utme','2001',1215,'Admin','0000-00-00 00:00:00','2020-08-12 16:05:38'),(37,'Proteins in acid solution undergo','Polymerization','Substitution','Fermentation','Hydrolysis','','','d','','utme','2001',1183,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(38,'A characteristic reaction of the compounds with the general formula CnH2n is','Esterification','Polymerization','Decarboxylation','Substitution','','','b','','utme','2001',1202,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:12'),(39,'The pair of organic compounds that are isomers is','Benzene and methylbenzene','Trichloromethane and Tetrachloromethane','Ethanol and propanone','But-1-ene and but-2-ene','','','d','','utme','2001',1144,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(40,'A burning candle produces water and','Carbon(II)oxide','Carbon(IV) oxide','Oxygen','Hydrogen','','','d','','utme','2001',1194,'Admin','0000-00-00 00:00:00','2020-08-14 09:12:35'),(41,'The gas that can best be collected by downward displacement of air is','Chlorine','Sulphur(IV)oxide','Ammonia','Carbon(IV)oxide','','','c','','utme','2001',1214,'Admin','0000-00-00 00:00:00','2020-08-12 16:05:39'),(42,'Which of the following metals burns brick with a brick-red','Pb','Ca','Na','Ma','','','b','','utme','2001',1173,'Admin','0000-00-00 00:00:00','2020-08-14 09:12:35'),(43,'Which of the followinig respresents hybridization in ethyne?','Sp2','Sp2d','Sp3','sp','','','d','','utme','2001',1189,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(44,'When sodium reacts with water, the resulting solution is','weakly acdic','neutral','acidic','alkaline','','','d','','utme','2001',1196,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:07'),(45,'Which of the following gases contains the least number of atoms at s.t.p','4 moles of chlorine','3 moles of ozone','1 mole of butane','7 moles of argon','','','c','','utme','2002',1159,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(46,'A compound contains 31.91% potassium, 28.93% chlorine and the rest oxygen. What is the chemical formular of the compound','KCLO3','KCLO4','KCLO','KCLO2','','','a','','utme','2002',1121,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(47,'The formula CH2O for ethanoic acid is regarded as its','General formula','Structural formula','Molecular formula','Empirical formula','','','d','','utme','2002',1136,'Admin','0000-00-00 00:00:00','2020-08-14 09:12:35'),(48,'A little quantity of Trichloromethane (b.pt.600C) was added to a large quantity of ethanol (b.pt.780C). the most probable boiling point of the resultant mixture is from','699C – 700C','820C – 840C','600C – 780C','700C – 744C','','','d','','utme','2002',1141,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:27'),(49,'The chromatographic separation of ink is based on the ability of the components to','React with each other','React with the solvent','Dissolve in each other in the column','Move at different speeds in the column','','','d','','utme','2002',1156,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(50,'Steam changes the colour of anhydrous cobalt(II) chloride from','White to red','Blue to white','White to green','Blue to pink','','','d','','utme','2002',1127,'Admin','0000-00-00 00:00:00','2020-08-12 15:37:42'),(51,'Which of the following solutions containing only hydroxyl ions will liberate hydrogen gas when reacted with magnesium metal','1.0 x 10-2 mol dm-3','1.0 x 10-4 mol dm -3','1.0 x 10-5 mol dm-3','1.0 x 10-12 mol dm-3','','','d','','utme','2002',1124,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:13'),(52,'The substance least considered as a source of environmental pollution is','Silicate minerals','Uranium','Lead compounds','Organophosphorous compounds','','','a','','utme','2002',1178,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:08'),(53,'The property which makes alcohol soluble in water is the','Hydrogen bonding','Covalent nature','Ionic character','Boiling point','','','c','','utme','2002',1179,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(54,'The furring of kettles is caused by the presence in water of','Calcium trioxocarbonate(IV)','Calcium tetraoxosulphate(VI)','CALCIUM HYDROXIDE','Calcium hydrofentrioxocarbonate(IV)','','','d','','utme','2002',1234,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:56'),(55,'Tetraoxosulphate(VI) acid burns the skin by','Heating','Hydration','Dehydration','Hydrolysis','','','c','','utme','2002',1183,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:11'),(56,'When a salt loses its water of crystallization to the atmosphere on exposure, the process is said to be','Deliquescence','Effervescence','Efflorescence','Fluorescence','','','c','','utme','2002',1197,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(57,'Three drops of a 1.0 mol dm-3 solution of Na OH are added to 20cm3 of a solution of pH8.4. the pH of the resulting solution will be','Greater than 8.4','Unaltered','Close to that of pure water','Less than 8.4','','','a','','utme','2002',1148,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(58,'The solubility of a salt of molar mass 101g at 200C is 0.34mol dm-3. If 3.40g of the salt is dissolved completely in 250cm3 of water in a beaker, the resulting solution is','Unsaturated','A suspension','Saturated','Supersaturated','','','a','','utme','2002',1138,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(59,'25cm3 of a 0.2mol dm-3 solution of Na2CO3 requires 20cm3 of  solution of HCl for neutralization. The concentration of the solution is','0.6 mol dm-3','0.5 mol dm-3','0.4 mol dm-3','0.2 mol dm-3','','','b','','utme','2002',1157,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(60,'which of the following chlorides would exhibit the least ionic character','AlCl3','CaCl2','MgCi2','LiCl','','','a','','utme','2002',1171,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(61,'If 0.75 mole of cyclopropane and 0.66 mole of oxygen are mixed in a vessel with a total pressure of 0.7 atmosphere. What is the partial pressure of oxygen in the mixture','0.55 atmosphere','0.44 atmosphere','0.33 atmosphere','0.22 atmosphere','','','c','','utme','2002',1155,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(62,'The processes which return carbon(IV) oxide to the atmosphere include','Photosynthesis, decay and respiration','Photosynthesis, respiration and transpiration','Respiration, decay and combustion','Ozone, depletion, combustion and decay','','','c','','utme','2002',1169,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:47'),(63,'Which of the following statements is true of a proton.','The total mass of the protons in a particular nucleus always half the nuclear mass','The mass of a proton is 1840 times the mass of an electron','The mass proton is 1.0008g','The mass of a proton is one-twelfth the molar mass of carbon','','','b','','utme','2002',1127,'Admin','0000-00-00 00:00:00','2020-08-07 19:20:01'),(64,'A gas X diffuses twice as fast as gas Y under the same conditions. If the relative molecular mass of X is 28. Calculate the relative molecular mass of Y','120','14','56','112','','','d','','utme','2002',1149,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(65,'A fixed mass of gas has a  volume of 92cm3 at 30C. What will be be its volume at 180C if the pressure remains constant','15.3cm3','87.3cm3','97.0cm3','552.0cm3','','','c','','utme','2002',1129,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(66,'The postulate of Dalton’s atomic theory which still holds is that','Particles of different elements combine in a simple whole number ratio','Atoms can neither be created nor destroyed','The particles of the same element are exactly alike','All elements are made of small indivisible particles','','','a','','utme','2002',1141,'Admin','0000-00-00 00:00:00','2020-08-13 07:25:57'),(67,'Ordinary glass is manufactured from silica, Ca CO3 and','K2CO3','NaHCO3','Na2CO3','K2SO4','','','c','','utme','2002',1160,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(68,'A rock sample was added to cold dilute HNMO3. The gas evolved was passed into a solution of acidified K2Cr2O7 and the solution turned green. The rock sample contains','NO3-','Cl-','SO42-','SO32-','','','d','','utme','2002',1117,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:03'),(69,'Hydrogen is readily released when dilute hydrochloric acid reacts with','Au','Cu','Na','Ag','','','c','','utme','2002',1116,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(70,'The most important use of hydrogen is in the','Hydrogenation of oils','Manufacture of methyl alcohol','Manufacture of ammonia','Manufacture of ethyl alcohol','','','c','','utme','2002',1175,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(71,'Which of the following gives a precipitate when treated with NaOH solution','Na2CO3','CH3COONa','NH4Cl','AlCl3','','','d','','utme','2002',1220,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:52'),(72,'The intermediate product formed when ethanol is progressively oxidized to ethanoic acid with potassium heptaoxodichromate(VI) is','Ethanol','Methanol','Butanal','Propanal','','','a','','utme','2002',1148,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:47'),(73,'The gas that gives brown colouration in brown ring test','Co2','NO2','NO','CO','','','b','','utme','2002',1082,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:12'),(74,'The boiling of fat and aqueous caustic soda is referred as','Saponification','Esterification','Acidification','Hydrolysis','','','a','','utme','2002',1184,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(75,'What volume of oxygen is produced from the decomposition of 2 moles of KClO3 at s.t.p   [Molar volume of a gas at s.t.p = 22.4 dm3]','22.4 dm3','33.6 dm3','44.8 dm3','67.2 dm3','','','d','','utme','2003',1099,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(76,'Which of the following is a physical change','Burning kerosene','Freezing ice-cream','Exposing white phosphorus to air','Dissolving calcium in water','','','b','','utme','2003',1169,'Admin','0000-00-00 00:00:00','2020-08-13 12:52:29'),(77,'What is the percentage by mass of oxygen in Al2(SO4)3.2H2O','14.29%','25.39%','50.79%','59.25%','','','d','','utme','2003',1142,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:52'),(78,'The filter in a cigarette reduces the nicotine content by','Burning','Adsorption','Evaporation','Absorption','','','b','','utme','2003',1154,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(79,'3Cu  +  pHNO3  → 3Cu(NO3)2  +  4H2O  + xNO   In the equation above, the values of p and x respectively are','1 and 3','2 and 3','6 and 2','8 and 2','','','d','','utme','2003',1159,'Admin','0000-00-00 00:00:00','2020-08-12 15:37:42'),(80,'Neutral atoms of neon with atomic number 10 have the same number of electrons as','O2+','Ca2+','K+','Mg2+','','','d','','utme','2003',1130,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(81,'The noble gases owe their inactivity to','Octet configuration','Cyclic shape','Hexagonal shape','Obtuse configuration','','','a','','utme','2003',1171,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(82,'According to the kinetic theory, an increase in temperature causes the kinetic energy of particles to','Decrease','Increase','Remain constant','Be zero','','','b','','utme','2003',1144,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(83,' I.  H = 1s1\\nII. O = 1s22s22p4\\nIII. N = 1s22s22p3\\nIV. Zn = 1s22s22p63s23p64s23d10\\nFrom the above, which of the following pairs is likely to be paramagnetic?\\n','I and II','I and  III','I    and IV','III  and IV','','','a','','utme','2003',1150,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(84,'A gas exerts pressure on its container because','Some of its molecules are moving faster than others','Of the collision of the molecules with each other','Of the mass of the molecules of gas','The molecules of a gas collide with the walls of the container','','','d','','utme','2003',1146,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:55'),(85,'When cathode rays are detected onto the electrode of an electrometer, the instrument becomes','Negatively charged','Positively charged','Neutral','Bipolar','','','a','','utme','2003',1175,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:07'),(86,'The weakest attractive force that can be observed between two molecules is','Ionic','Covalent','Coordinate covalent','Van der Waals','','','d','','utme','2003',1172,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(87,'A consequence of global warming is','Air pollution','Water pollution','Increased humidity','Flooding','','','d','','utme','2003',1165,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:55'),(88,'Which of the following ions is acidic','K+','NO-3','S2-','H3O+','','','d','','utme','2003',1196,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(89,'The structural component that makes detergent dissolve more quickly in water than soap is','–SO3 –Na+','–COO-Na+','–SO4- Na+','–COO-K+','','','a','','utme','2003',1170,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:52'),(90,'A liquid that will dissolve fast is','Hydrochloric acid','Calcium hydroxide','Kerosene','Water','','','c','','utme','2003',1139,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(91,'What mass of K2CrO4 is required to prepare 250cm3 of 0.020 mol dm-3 solution   [K2CrO4 = 194.2g mol-1]','0.97g','9.70g','19.42g','97.10g','','','a','','utme','2003',1200,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(92,'Farmlands affected by crude –oil spillage can be decontaminated by','Adding acidic solutions','Using aerobic bacteria','Pouring water on the affected area','Burning off the oil from the area','','','b','','utme','2003',1190,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(93,'When 10g of sodium hydroxide is dissolved in 1000cm3 of water, the solution formed is approximately   [Na = 23, H = 1, O = 16]','0.01 mol dm-3','0.10 mol dm-3','0.25 mol dm-3','0.50 mol dm-3','','','c','','utme','2003',1174,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(94,'A charge in the temperature of a saturated solution disturbs the equilibrium between the','Dissolved solute and the solvent','Solvent and the undissolved solute','Dissolved solute and the undissolved solute','Dissolved solute and the solution','','','c','','utme','2003',1171,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:55'),(95,'If an equilibrium reaction has   H>0, the reaction will proceed favourably in the forward direction at','High temperature','Any temperature','Low temperature','Minimum temperature','','','a','','utme','2003',1123,'Admin','0000-00-00 00:00:00','2020-08-13 12:52:29'),(96,'The commonest feature of the reactions at the anode is that','Electrons are consumed','Oxidation is involved','Ions are reduced','Electrode dissolves','','','b','','utme','2003',1133,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(97,'Which of the following will change when a catalyst is added to a chemical reaction','The activation energy','The potential energy of the reactants','The heat of reaction','The potential energy of the products','','','a','','utme','2003',1110,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:14'),(98,'If Y is an oxidizing agent that reacts with a reducing agent, Z, which of the following is correct','Y increases in oxidation number','Y becomes reduced','Z loses protons','Z gains protons','','','b','','utme','2003',1192,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:07'),(99,'When at equilibrium, which of the reactions below will shift to the right if the pressure is increased and the temperature is kept constant',' 2SO3(g)  ⇌  2SO2(g)  +  O2(g)',' 2CO2(g)  ⇌ 2CO(g)  +  O2(g)',' 2H2(g)  +  O2(g) ⇌  2H2O(g)',' 2NO(g)   ⇌ N2(g)  +  O2(g)','','','c','','utme','2003',1135,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:23'),(100,'In the electrolysis of a concentrated solution of sodium chloride using inert electrodes, which of the following ions are discharged at the cathode and anode respectively','Na+ and Cl-','Na+ and OH-','H+ and OH-','H+ and Cl-','','','d','','utme','2003',1169,'Admin','0000-00-00 00:00:00','2020-08-02 15:10:30'),(101,' CO(g) + H2O(g) ⇌  CO2(g)  +  H2(g)\\nFrom the reaction above, calculate the standard heat change if the standard enthalpies of formation of CO2 (g), H2O (g) and CO (g) in kJ mol-1 are -394, -242 and -110 respectively.\\n','-262 kJ  mol-1','-42kJ mol-1','+42 kJ mol-1','+262 kJ mol-1','','','b','','utme','2003',1134,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:08'),(102,'When sugar is dissolved in tea, the reaction is always accompanied by','Positive entropy change','Negative entropy change','No entropy change','A minimum entropy change','','','a','','utme','2003',1113,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(103,'Which of the following is an electrolyte','Alcohol','Sodium acetate solution','Solid potassium hydroxide','Mercury','','','b','','utme','2003',1203,'Admin','0000-00-00 00:00:00','2020-08-16 14:08:28'),(104,'Chlorine gas is prepared in the laboratory by','Adding concentrated hydrochloric acid to solid manganese (IV) oxide','Adding concentrated tetraoxosulphate (VI) acid to solid sodium chloride','Dropping concentrated hydrochloric acid onto potassium tetraoxomanganate (VII) crystals','Oxidizing concentrated hydrochloric acid using potassium heptaoxodichromate (VI) crystals','','','a','','utme','2003',1170,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:23'),(105,'Metals of the first transition series have special proper ties which are different from those of groups I and II elements because they have partially filled','s  orbitals','p orbitals','d orbitals','f orbitals','','','c','','utme','2003',1183,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(106,'Hydrogen can be displaced form a hot alkaline solution by','Fe','Cu','Ca','Sn','','','d','','utme','2003',1126,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:41'),(107,'Which of the following statements is true of sulphur (IV) oxide','It forms Tetraoxosulphate (VI) acid with water','It is an odourless gas','It is an acid anhydride','It forms white precipitate with acidified barium chloride','','','c','','utme','2003',1206,'Admin','0000-00-00 00:00:00','2020-08-06 20:18:04'),(108,'The salt that will form a precipitate soluble in excess ammonia solution is','Ca(NO3)2','Cu(NO3)2','Mg(NO3)2','Al(NO3)3','','','b','','utme','2003',1101,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(109,'The metal that liberates hydrogen from cold water in bubbles only is','Na','K','Ca','Al','','','c','','utme','2003',1130,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(110,'Chlorine gas turns a damp starch-iodide paper','Pink','Colourless','Red','Dark blue','','','d','','utme','2003',1156,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(111,'The modern process of manufacturing steel from iron is by','Treatment with acids','Oxidation','Blast reduction','Treatment with alkalis','','','c','','utme','2003',1104,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(112,'Ethene reacts with hydrogen bromide to give','CH2Br2','CH3CH2Br','C2H2Br2','CHBr3','','','b','','utme','2003',1098,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:08'),(113,'Carbohydrates are compounds containing carbon, hydrogen and oxygen in the ratio','3:01:01','2:01:01','1:02:01','1:01:01','','','c','','utme','2003',1122,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(114,'How many isomers does pentane have','6','5','4','3','','','d','','utme','2003',1179,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:03'),(115,'The leachate of a certain plant ash is used in local soap making because it contains','Sodium chloride and potassium hydroxide','Sodium hydroxide','Potassium hydroxide','Soluble carbonates and hydrogen carbonates','','','c','','utme','2003',1184,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(116,'The formula for ethyl butanoate is','C3H7COOC2H5','C2H5COOC3H7','C4H9COOC2H5','C2H5COOC4H9','','','a','','utme','2003',1151,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(117,'The type of reaction that is peculiar to benzene is','Addition','Hydrolysis','Polymerization','Substitution','','','d','','utme','2003',1131,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(118,'Ethanol reacts with excess acidified K2Cr2O7 to produce','Ethanoic acid','Ethanol','Ethyl ethanoate','Ethanoic acid','','','d','','utme','2003',1127,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(119,'A compound contains 40.0% carbon, 6.7% hydrogen and 53.3% oxygen. If the molar mass of the compound is 180, find the molecular formula  [H = 1, C = 12, O = 16]','CH2O','C3H6O3','C6H12O6','C6H6O3','','','c','','utme','2003',1154,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:47'),(120,'The process by which atoms are rearranged into different molecular structures in the petroleum refining process is referred to as','Catalytic cracking','Hydrocracking','Polymerization','Reforming','','','d','','utme','2003',1167,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(121,'Which of the following is found in cotton','Starch','Cellulose','fat','oil','','','b','','utme','2003',1134,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:01'),(122,'the principal constituent of natural gas is methane','ethane','propane','butane','butane','','','a','','utme','2003',1107,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(123,'When a solid substance disappears completely as a gas on heating, the substance is said to have under gone','Evaporation','Distillation','Crystallization','Sublimation','','','d','','utme','2004',1237,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:21'),(124,'A chemical reaction is always associated with','An increase in the composition of one of the substances','A change in the volume of the reactants','A change in the nature of the reactants','The formation of new substances','','','d','','utme','2004',1132,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:33'),(125,'If a solution contains 4.8g of Tetraoxosulphate (VI) acid. Calculate the amount of copper(II) oxide that will react with it  [CU = 64, O = 16, S = 32, H = 1]','0.8g','4.0g','40.0g','80.0g','','','b','','utme','2004',1138,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(126,'What volume of gas is evolved at s.t.p. if 2g of calcium trioxocarbonate(IV) is added to a solution of hydrochloric acid    [Ca = 40, C = 12, O = 16, CI = 35.5, H = 1, Molar volume of a gas at s.t.p = 22.4dm3]','112cm3','224cm3','448cm3','224cm3','','','c','','utme','2004',1146,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:07'),(127,'According to Charles  law, the volume of a gas becomes zero at','00C','-1000C','-2730C','-3730C','','','c','','utme','2004',1114,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(128,'It is difficult to achieve an orderly arrangement of the molecules of a gas because they','Have no definite shape','Have little force attraction between them','Can collide with one another in the container','Are too small in size','','','b','','utme','2004',1166,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(129,'A given volume of methane diffuses in 20s. how long will it take the same volume of sulphur(IV) oxide to diffuse under the same conditions    [C = 12, H = 1, S = 32, O = 16]','5s','20s','40s','60s','','','c','','utme','2004',1155,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:41'),(130,'An electron can be added to a halogen atom to form a halide ion with','2 valence electrons','3 valence electrons','7 valence electrons','Valence electrons','','','d','','utme','2004',1135,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(131,'The shape of the s-orbital is','Spherical','Elliptical','Spiral','Circular','','','a','','utme','2004',1208,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:12'),(132,'The property of chlorine which causes hydrogen chloride to be more ionic than the chlorine molecule is its','Electrovalency','Electron affinity','Electropositivity','Electronegativity','','','d','','utme','2004',1118,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(133,'Chlorine consisting of two isotopes of mass numbers 35 and 37 in the ratio 3:1 has an atomic mass of 35.5. Calculate the relative abundance of the isotope of mass number 37.','20','25','60','75','','','b','','utme','2004',1131,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:12'),(134,'Which of the following mixtures of gases is likely to burn in flame','Neon and hydrogen','Nitrogen and helium','Helium and neon','Neon and nitrogen','','','a','','utme','2004',1129,'Admin','0000-00-00 00:00:00','2020-08-16 14:08:28'),(135,'Hardness of water is caused by the presence of the ions of','Magnesium and silver','Calcium and magnesium','Sodium and potassium','Calcium and sodium','','','b','','utme','2004',1201,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:41'),(136,'Pollution of underground water by metal ions is very likely in a soil that has high','Acidity','Alkalinity','Chloride content','Nitrate content','','','a','','utme','2004',1150,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(137,'A carcinogenic substance is','Asbestos dust','Sawdust','Nitrogen(II) oxide','Carbon (II) oxide','','','a','','utme','2004',1079,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(138,'The solubility in mol dm-3 of 20g of CuSO4 dissolved in 100g of water at 1800C is  [Cu = 64, S = 32, O = 16]','0.13','0.25','1.25','2','','','c','','utme','2004',1129,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(139,'Calcium Tetraoxosulphate(VI) dissolves in water only sparingly to form a','Solution','Suspension','Precipitate','Colloid','','','d','','utme','2004',1128,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(140,'Which of these compounds is a normal salt','NaHS','NaSO4','NaHCO3','Na2CO3','','','d','','utme','2004',1096,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(141,'What volume of 0.5mol dm-3 H2SO4 will exactly neutralize 20cm3 of 0.1 mol dm-3 NaOH solution','2.0cm3','5.0cm3','6.8cm3','8.3cm3','','','a','','utme','2004',1197,'Admin','0000-00-00 00:00:00','2020-08-10 09:36:18'),(142,'The oxidation state of chlorine in HClO4 is','-5','-1','1','7','','','d','','utme','2004',1175,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(143,'ZnO(s) + CO (g) → Zn(s) + CO2 (g). ','Decomposed','Displaced','Oxidized','Reduced','','','d','','utme','2004',1141,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:13'),(144,'Which of the following acts as both a reducing and an oxidizing agent','H2','SO2','H2S','CO2','','','b','','utme','2004',1167,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(145,'In the electrolysis of brine, the anode is','Platinum','Copper','Zinc','Carbon','','','d','','utme','2004',1075,'Admin','0000-00-00 00:00:00','2020-08-11 05:43:02'),(146,'The mass of silver deposited when a current of 10A is passed through a solution of silver salt for 4830s is    [Ag = 108, F = 96500 Cmol-1]','108.0g','54.0g','27.0g','13.5g','','','b','','utme','2004',1170,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(147,' 2CO(g)  +  O2(g) →  2CO2(g)\\nGiven that   Δ H [CO] is 110.4kJ mol-1 and Δ H [CO2] is -393.0kJ mol-1, the energy change for the reaction above is\\n','-503.7kJ','-282.6kJ','+282.6kJ','+503.7kJ','','','N','','utme','2004',1107,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(148,'Which of the following hydrogen halides has the highest entropy value','HF','HCl','HBr','Hl','','','a','','utme','2004',1069,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(149,' N2O4(g)    ⇌  2NO2(g)','A constant volume','An increase in pressure','A decrease in pressure',' A decrease in volume','','','c','','utme','2004',1126,'Admin','0000-00-00 00:00:00','2020-08-13 12:52:29'),(150,'Which of the following shows little or no net reaction when the volume of the system is decreased',' H2(g)  +  l2(g)  ⇌  2Hl(g)','2NO2(g)  ⇌  N2O4(g)',' PCl5(g)   ⇌ PCl3(g)  + Cl2(g)',' 203(g)   ⇌  3O2(g)','','','a','','utme','2004',1162,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(151,'The allotrope of carbon used in the decolourization of sugar is','Graphite','Soot','Charcoal','Lampblack','','','c','','utme','2004',1129,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(152,'Which of the following gases can be collected by the method of downward delivery','Chlorine','Oxygen','Ammonia','Hydrogen','','','a','','utme','2004',1161,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(153,'Which steam is passed over red-hot carbon, the substances produced are','Hydrogen and trioxocarbonate(IV) acid','Hydrogen, oxygen and carbon(IV) oxide','Hydrogen and carbon (II) oxide','Hydrogen and carbon (IV) oxide','','','c','','utme','2004',1184,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(154,' sulphur (IV) oxide bleaches by','Reduction','Oxidation','Hydration','Absorption','','','a','','utme','2004',1170,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:03'),(155,'Carbon is tetravalent because','The electrons in both the 2s and 2p orbitals are equivalent','The electrons in all the orbitals of carbon are equivalent','The 2s and 2p atomic orbitals hybridize','All the atomic orbitals of carbon hybridize','','','c','','utme','2004',1140,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(156,'Aluminium hydroxide is used in the dyeing industry as a','Salt','Dye','Mordant','Dispersant','','','c','','utme','2004',1090,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:06'),(157,'Alloys are best prepared by','Electroplating','Arc-welding','Reducing a mixture of their metallic oxides','Cooling a molten mixture of the metals','','','d','','utme','2004',1178,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(158,'Transition metals posses variable oxidation states because they have','Electrons in the d orbitals','Electrons in the s orbitals','A variable number of electrons in the p orbitals','Partially filled p orbitals','','','d','','utme','2004',1175,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(159,'Sodium metal is always kept under oil because it','Readily reacts with water','Is reduced by atmospheric nitrogen','Reacts vigorously on exposure to air','Reacts with oxygen and carbon(IV) oxide','','','c','','utme','2004',1153,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(160,'Oxyacetylene flame is used for iron-welding because it',' makes the iron metal solidity very quickly','Combines with oxygen to give a pop sound','Evolves a lot of heat when burnt','Dissociates to produce carbon (IV) oxide and oxygen','','','c','','utme','2004',1109,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(161,'The alkyl group can be represented by the general formula','CnH2n+1','CnH2n','CnH2n+2','CnH2n-2','','','a','','utme','2004',1088,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(162,'An isomer of C5H12 is','Butane','2-methylbutane','2-methylprpane','2-ethylbutane','','','b','','utme','2004',1190,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(163,'A characteristic of the alkane family is','Addition reaction','Elimination reaction','Substitution reaction','Neutralization reaction','','','c','','utme','2004',1094,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(164,'Which of these reagents can confirm the presence of a triple bond','Bromine water','Acidified KMnO4 ','Copper (I) chloride','Bromine gas','','','c','','utme','2004',1125,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:34'),(165,'Vulcanization involves the removal of','A monomer','The single bond','The double bond','A polymer','','','c','','utme','2004',1115,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(166,'The reaction above is','Carboxylation','Decarboxylation','Acidification','Esterification','','','b','','utme','2004',1133,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(167,' Alkanol + Alkanoic acid ⇌  Ester + water.\\nThe reverse reaction of the equation above is known as\\n','Hydrolysis','Saponification','Hydration','Fermentation','','','a','','utme','2004',1089,'Admin','0000-00-00 00:00:00','2020-08-13 06:14:16'),(168,'In the production of soap, concentrated sodium chloride solution is added to','Increase the solubility of the soap','Decrease the solubility of the soap','Saponify the soap','Emulsify the soap','','','b','','utme','2004',1085,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:06'),(169,'The gas that can be dried using concentrated Tetraoxosulphate (VI) acid is','Ammonia','Hydrogen bromide','Sulphur (IV) oxide','Hydrogen sulphide','','','c','','utme','2005',1303,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:06'),(170,'The property used in the industrial preparation of nitrogen and oxygen from air is','Rate of diffusion','Solubility','Density','Boiling point','','','d','','utme','2005',1210,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(171,'A dense white fume is formed when ammonia gas reacts with','H2(g)','O2(g)','HCI(g)','Cl2(g)','','','c','','utme','2005',1175,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(172,'In a flame test for calcium, the flame appears','Blue when viewed through a blue glass','Green when viewed through a blue glass','Orange-red when viewed through a blue glass','Brick-red when viewed through a blue glass','','','c','','utme','2005',1241,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:01'),(173,'Which of the following alloys contain iron','Steel and permalloy','Duralumlin and steel','nd Soft Solder a Duralumlin ','Brass and bronze','','','a','','utme','2005',1169,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(174,'To obtain pure carbon(II) oxide from its mixture with carbon (IV)oxide, the mixture should be','Bubbled through concentrated Tetraoxosulphate(VI) acid','Bubbled through sodium hydroxide','Passed over heated copper(II) oxide','Bubbled through water','','','b','','utme','2005',1299,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(175,'N2(g)  +  3H2(g)  ⇌   2NH2(g)   Δ H = - 90kJ  In the equation above, the yield of ammonia can be decreased by','Adding a catalyst','Removing ammonia','Increasing the pressure','Increasing the temperature','','','d','','utme','2005',1175,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(176,'Metalloids are also referred to as','Metals','Semi-metals','Colloids','Non-metals','','','b','','utme','2005',1149,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(177,'The ores that can be concentrated by flotation are','Nitride ores','Chloride ores','Oxide ores','Sulphide ores','','','d','','utme','2005',1162,'Admin','0000-00-00 00:00:00','2020-08-16 14:08:28'),(178,'The most suitable metal that can be used as a lightening  conductor is','Aluminium','Iron','Copper','Silver','','','d','','utme','2005',1243,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:06'),(179,'NH4CI(g) ⇌   NH3(g)  +  HCI(g)   The reaction above can only attain equilibrium if','It is in a closed system','It is in an open system','One of the products is removed','A gaseous reactant is added','','','a','','utme','2005',1142,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(180,'When pure aluminum metal is heated to red hot in the presence of nitrogen gas, the compound formed is','AI2N','AIN','AI2N2','AI2N3','','','b','','utme','2005',1247,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(181,'The most abundant element on the earth’s crust is','Oxygen','Fluorine','hydrogen','nitrogen','','','a','','utme','2005',1236,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(182,'The pressure of 100cm3 of oxygen at 350C is 750mmHg. What will be the volume of the gas if the pressure is reduced to 100mmHg  without changing the temperature','850cm3','750cm3','650cm3','580cm3','','','b','','utme','2005',1230,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:07'),(183,'What is the valence shell electron configuration of the element with atomic number 17','1s22s22p63s23p5','1s22s22p63s23p4','3s23p5','2s22p6','','','a','','utme','2005',1189,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:07'),(184,'A heterogeneous mixture can be defined as any mixture','Whose composition is uniform','Whose composition is not uniform','Formed by solids and liquids','Of a solute and a solvent','','','b','','utme','2005',1148,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:08'),(185,'The density of a certain gas is 1.98g dm-3 at s.t.p. What is the molecular mass of the gas   [Molar volume of a gas at s.t.p = 22.4dm-3]','26.0g','31.0g','54.0g','44.0g','','','d','','utme','2005',1177,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:06'),(186,'Treatment of cancer   II. Detection of leakages in water mains   III. Detection of the ages of ancient tools    Which combination of the above refers to the uses of radioactive isotopes?','I, II and III','I, II, III and IV','II and III','I and II','','','a','','utme','2005',1246,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(187,'An element will readily form an electrovalent compound if its electron configuration is','2,8,8','2,,8,4','2,8,5','2,8,1','','','d','','utme','2005',1210,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:21'),(188,'How many moles of limestone will be required to produce 5.6g of CaO','0.20 mol','1, 12mol','0.10 mol','0.56 mol','','','c','','utme','2005',1235,'Admin','0000-00-00 00:00:00','2020-08-16 15:27:08'),(189,'The shape of the hydrocarbon compound CH4 is','Square planar','Tetrahedral','Planar','Linear','','','b','','utme','2005',1187,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:56'),(190,'Which of these properties gives a solid its definite shape','Weak intermolecular attraction','High boiling point','High melting point','Strong intermolecular attraction','','','d','','utme','2005',1210,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:13'),(191,'The component of an atom that contributes least to its mass is the','Nucleus','Neutron','Electron','Proton','','','c','','utme','2005',1213,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:13'),(192,'Sugar is separated from its impurities by','Distillation','Evaporation','Precipitation','Crystallization','','','d','','utme','2005',1227,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:06'),(193,'Equal moles of ethyne and hydrogen iodide react to give','CH2 = CH2','CH2 = CHI','CH2 – CHI','CH2 – CI3','','','b','','utme','2005',1264,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:13'),(194,'How many hydrogen atoms does a single ring cycloalkane have less than the corresponding open- chain alkane','Three','One','Four','Two','','','d','','utme','2005',1248,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(195,'The decolourization of the purple colour of a tetraoxomanganate (VII) ion is a test for','Alkanals','Alkanes','Alkenes','Alkanols','','','c','','utme','2005',1204,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(196,'In the purification of impure samples of ethyl ethanoate synthesized by esterification, concentrated sodium trioxocarbonate(IV) solution is used to remove','Water','Acidic impurities','Basic impurities','Ethoxyethane','','','b','','utme','2005',1246,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(197,'A substance that is used as a ripening agent for fruits is','Propene','Methane','Ethene','Butane','','','c','','utme','2005',1141,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(198,'Which of the following are structural isomers','Propanoic acid and propan-1, 2-diol','Ethanoic acid and propanoic acid','Ethan-1, 2 –diol and ethanoic acid','Propanal and propanone','','','d','','utme','2005',1202,'Admin','0000-00-00 00:00:00','2020-08-12 15:45:25'),(199,'The enzyme responsible for converting sucrose into two simple isomeric sugars is','Invertase','Amylase','Lactose','Maltase','','','a','','utme','2005',1230,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(200,'Natural water collected from rivers and ponds contains oxygen, carbon(IV) oxide and','Chlorine','Hydrogen','Sulphur(IV) oxide','Nitrogen','','','c','','utme','2005',1174,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:01'),(201,'Kerosene is commonly used to remove the red colour stain of palm oil from clothes because it','Helps to spread the oil over a larger surface area','Makes the oil evaporate easily by dissolving it','Helps to dilute the oil and reduce its colour','Reacts with the oil to form an odourless compound','','','b','','utme','2005',1207,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(202,'25cm3 of a mixture of noble gases was obtained from air after the removal of other constituents. What was the original volume of air','125cm3','1250cm3','2500cm3','80cm3','','','c','','utme','2005',1190,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(203,'The solubility curve shows the variation of solute concentration with','Volume','Vapour density','Pressure','Temperature','','','d','','utme','2005',1188,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:02'),(204,'The air around smelting industries is likely to contain','CO2, SO3 and H2','SO2N2 and CO2','H2, SO2 and CO2','H2S, CO and N2','','','b','','utme','2005',1260,'Admin','0000-00-00 00:00:00','2020-08-14 20:11:39'),(205,'When water boilers are used for a long period of time, the solid substances left behind as scale are','Magnesium trioxosilicate (IV) and calcium Tetraoxosulphate(VI)','Magnesium trioxosilicate(IV) and rust','Clay and magnesium trioxosilicate (IV)','clay and rust','','','','','utme','2005',1190,'Admin','0000-00-00 00:00:00','2020-08-16 14:08:28'),(206,'The gas that is the most dangerous pollutant to humans is','Carbon(IV) oxide','Nitrogen (II)oxide','Hydrogen sulphide','Sulphur(IV) oxide','','','c','','utme','2005',1284,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(207,'In which of the following reactions can the oxidation number of nitrogen be said to have increased','FeSO4(aq)  +  NO(g) →   Fe(NO)SO4(S)','2NO(g)  +  O2(g) → 2NO2(g)','NO(g)  +  CI2(g)  → NOCI2(l)','NO(g)  +  Br2(l)   → NOBr2(l)','','','b','','utme','2005',1229,'Admin','0000-00-00 00:00:00','2020-08-16 11:06:05'),(208,'A concentrated solution containing H+, Cu2+, OH- and Cl- was electrolyzed using platinum electrodes. The ion that will be discharged at the cathode is','OH-','Cl-','Cu2+','H+','','','c','','utme','2005',1159,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(209,'Phenolphthalein in acidic solution is','Colourless','Yellow','Red','Orange','','','a','','utme','2005',1165,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:47'),(210,'When sulphur (IV) oxide is passed into a solution of sodium hydroxide for a long time. It eventually produces a solution of','Na2SO4','NaHSO4','Na2SO3','NaHSO3','','','d','','utme','2005',1173,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:23'),(211,'What is the correct IUPAC name for NO2','Dioxonitrate(III) ion','Dioxonitrate(IV) ION','trioxonitrate(iii) ion','trioxonitrate(iv) ion','','','a','','utme','2005',1202,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(212,'What will happen if an aluminum spoon is used to stir a solution of iron (II) trioxonitrate(V)','The spoon will be reduced while the iron(II) ions will be oxidized','The spoon will be oxidized while the iron (II) ions will be reduced to the metal','The spoon will be reduced','The spoon will increase in size','','','b','','utme','2005',1293,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(213,'Which of the following equimolar solutions will have the highest pH','NH4OH','CH3COONa','HCI','NaOH','','','c','','utme','2005',1174,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(214,'2H2 + O2  → 2H2O  ΔH = -571Kj  In equation above, how much heat will be liberated if 12.0g of hydrogen is burnt in excess oxygen?','-1713kJ','+1142kJ','-571kJ','-1142kJ','','','a','','utme','2005',1226,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:04'),(215,'Which of the following ions requires the largest quantity of electricity for discharge at an electrode','2.5 moles of Cu2+','4.0 moles of CI-','2.0 moles of Al3+','3.0 moles of Na+','','','c','','utme','2005',1219,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:04'),(216,'H2(g)  +  Br2(g) →  2BHr(g)  The reaction above is carried out at 250C. If Δ H is kJ mol-1 and   Δ S is -106J mol-1K-1 the reaction will','Proceed spontaneously at lower temperatures','Not proceed spontaneously at the given temperature','Proceed spontaneously at the given temperature','[proceed in the reverse direction at the given temperature','','','d','','utme','2006',1148,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(217,'Na2CO3(aq)  +  2HCI(aq)  → 2NaCI(aq)  +  H2O(l)  +  CO2(g)    How many moles of sodium trioxocarbonate (IV) are there in a 25cm3 solution which required 10cm3 of 0.05 mol dm-3 hydrochloric acid solution to neutralize it?','0.100mloe','0.001mole','1.000mole','0.010mole','','','d','','utme','2006',1125,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(218,'The ion that can be used as an oxidizing agent is','Fe3+','F-','Ca2+','Au3+','','','c','','utme','2006',1128,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(219,'Zinc and carbon rods are used as anode and cathode respectively in a','Voltaic cell','Lead accumulator','Leclanche cell','Daniel cell','','','c','','utme','2006',1141,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(220,'Trioxonitrate(V) acid is not used for preparing hydrogen gas from metals because it','Renders the metal passive','Is strongly oxidizing','Is volatile','','','','a','','utme','2006',1171,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:01'),(221,'Forms a layer of oxide on the metal   If the heat of combustion of hydrogen is -285.8kJ. what is the heat of formation of water','-285.8Kj','-571.6kJ','+571kJ','+285.8kJ','','','a','','utme','2006',1183,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:01'),(222,'In the electrolysis of CuSO4(aq) using platinum electrodes, the reaction at the anode is','4H+  +  4e-  → 2H2','2OH  +  2OH-  →  2H2O + O2','2OH-  - 2e-    → 2OH','4OH-  -  4e- →  2H2O + O2','','','d','','utme','2006',1161,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:57'),(223,'IN which of the following is the oxidation number of sulphur equal to -2','H2S','SO3','S8','SO2','','','a','','utme','2006',1159,'Admin','0000-00-00 00:00:00','2020-08-16 14:08:28'),(224,'5SO2(g)  +  2KMnO4(aq)  +  2H2O(l)  ⇌   K2SO4(aq)  +  2MnSO4(aq)  +   2H2HSO4(aq)   In the reaction above, the products give a','Colourless solution','Purple precipitate','Purple solution','Colourless precipitate','','','a','','utme','2006',1172,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(225,'The solution that will conduct the highest amount of electricity is','2.0 moldm-3 of ethanoic acid','0.5 mol dm-3 of ethanoic acid','2.0 mol dm-3 of hydrochloric acid','0.5 moldm-3 of hydrochloric acid','','','c','','utme','2006',1137,'Admin','0000-00-00 00:00:00','2020-08-14 09:12:35'),(226,'What is the mola. Mass of a substance, if 0.4 mole of the substance has a mass of 25.0g','6.3g','40.0g','62.5g','2.5g','','','c','','utme','2006',1224,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(227,'The order in which a mixture of sand ammonium chloride and sodium chloride can be separated is','Sublimation   dissolution  filtration  evaporation','Dissolution  dryness  filtration  evaporation','Filtration  sublimation  evaporation  dryness','Dissolution  filtration  sublimation  evaporation','','','a','','utme','2006',1117,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:02'),(228,'The volume of 2.5 moles of oxygen at s.t.p is','56.0dm3','84.0dm3','50.0dm3','20.0dm3','','','a','','utme','2006',1137,'Admin','0000-00-00 00:00:00','2020-08-14 09:12:35'),(229,'[Molar volume of a gas at s.t.p + 22.4dm3} Nuclear fission involves the splitting of a heavy element into two nuclei of','Equal masses with a release of energy','Nearly equal masses with a release of energy and radiation','Equal masses with a release of energy and radiation','Unequal masses without any release of energy','','','b','','utme','2006',1181,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:11'),(230,'2C2H2(g)  +  5O2(g)     4CO2(g)  +  2H2O(g) In the reaction, the mass of carbon (IV) oxide produced on burning 78g of ethyne is [C = 12, O = 16, H = 1]','39','352g','264g','156g','','','c','','utme','2006',1099,'Admin','0000-00-00 00:00:00','2020-08-14 09:12:35'),(231,'A particle that contain s 11protons, 12 neutrons and 10 electrons is probably a','Metallic ion','Non-metallic ion','Neutral metal','Neutral non-metal','','','a','','utme','2006',1196,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:33'),(232,'The element with the electron configuration 1s22s22p3 is','Oxygen','Chlorine','Nitrogen','Calcium','','','c','','utme','2006',1205,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(233,'A difference between chemical and physical change is that in a chemical change','Heat is supplied',' A new substance is formed','Oxygen is consumed','A reversible process occurs','','','b','','utme','2006',1222,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(234,'A degree in atomic size and an increase in knuckler charge across a period lead to','A decrease in covalency in bond formation','An increase in chemical reactivity','An increase in the tendency to loss electrons','A decrease in electro positivity','','','d','','utme','2006',1129,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:47'),(235,'The idea of planetary electrons was that of','Bohr','Thompson','Rutherford','Dalton','','','a','','utme','2006',1170,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(236,'If 30cm3 of a gas at 500C is warmed to 800C at a fixed pressure. The fractional increase in volume is','0.91','0.009','1.09','0.093','','','d','','utme','2006',1201,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(237,'Which of the following has an isomer','C4H10','C6H6','C2H4','C2H6','','','a','','utme','2006',1193,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(238,'An example of aliphatic unsaturated hydrocarbon is','Butanol','Propene','Pentane','Benzene','','','b','','utme','2006',1147,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(239,'One mole of a hydrocarbon contains 36g of carbon and its vapour density is 20. The structure of the hydrocarbon is','CH3CH2CH3','CH3CH = CH2','CH3CH2C = CH','CH3C = CH','','','d','','utme','2006',1159,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(240,'CH3-CH2-C = CH  The hybridization in the compound above is','Sp3 and sp','Sp3 and sp2','Sp','Sp2','','','a','','utme','2006',1188,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(241,'Nigerian crude oil is described as light crude because of its','Low aliphatic hydrocarbon content','Low sulphur content','High natural gas content','High octane number','','','c','','utme','2006',1190,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(242,'The gas obtained as a product of anaerobic action ob organic matter buried in the earth is','Nitrogen(IV) oxide','Carbon(IV) oxide','Methane','Ethene','','','c','','utme','2006',1170,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:56'),(243,'When a crystal was added to the clear solution of its salt, the crystal did not dissolve and the solution remained unchanged. This showed that the solution was','Supersaturated','Unsaturated','Saturated','Concentrated','','','c','','utme','2006',1180,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:57'),(244,'The produce of the combustion of candle wax are','Carbon(IV) oxide and water','Oxygen and water','Hydrogen and water','Carbon(II)oxide an d water','','','a','','utme','2006',1155,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(245,'When 5.0cm3 of a saturated solution of sugar of molar mass 342g at 400C was evaporated to dryness, 34.2g of dry solid was obtained. The solubility of sugar at 400C is','7.0 mol dm-3','3.5 mol dm-3','2.0 mol dm-3','10.0mol dm-3','','','c','','utme','2006',1195,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(246,'Which of the following results in the fall of acid rain','Gaseous hydrocarbons','Oxide of lead','Particulate matter','Oxides of sulphur','','','d','','utme','2006',1129,'Admin','0000-00-00 00:00:00','2020-08-13 07:25:57'),(247,'Water has the ability to dissolve almost all substances because its molecule has a structure with','One positive end and one neutral end','Two positive ends','One positive end and one negative end','Two negative ends','','','c','','utme','2006',1173,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:55'),(248,'An emulsion may be produced by shaking a detergent solution with','Palm wine','Palm oil','Ethanoic acid','Water','','','d','','utme','2006',1126,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(249,'One heating may be produced by shaking a detergent solution with','Cu(NO3)2','AgNO3','Ca(NO3)2','NaNO3','','','b','','utme','2006',1125,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(250,'Dynamic equilibrium describes a situation where','A reaction gives back the reactants','Reactants are converted to products','The concentration of reactants and products is equal','Both forward and reverse reaction proceed at the same rate','','','d','','utme','2006',1201,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(251,'The raw material used for the smelting of iron ore in a furnace is','Zn(NO3)2','CaSO4','CuSO4','CaCO3','','','d','','utme','2006',1167,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(252,'Carbon exists naturally in the combined state as','Diamond','Coal','Wood','Graphite','','','c','','utme','2006',1136,'Admin','0000-00-00 00:00:00','2020-08-11 05:43:02'),(253,'The sulphide which is insoluble in dilute hydrochloric acid is','CuS','Na2S','FeS','ZnS','','','a','','utme','2006',1146,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:52'),(254,'The efficiency of a solid catalyst to increase reaction rates depends on its','Concentration','Solubility','Quantity','Surface area','','','d','','utme','2006',1192,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(255,'In the industrial production of H2 from natural gas, the CO2 produced along with the H2 is removed by','Passing the mixture into lime water','Washing under pressure','Drying over phosphorous(V)oxide','Using ammoniac copper(l) chloride','','','b','','utme','2006',1138,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(256,'Which of the following typically represents a photochemical reaction','Conversion of dinitrogen (IV) oxide to nitrogen(IV) oxide','Conversion of silver halides to grey metallic silver','Decomposition of calcium hydroxide to its oxide','Formation of water from hydrogen and oxygen molecules','','','b','','utme','2006',1189,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(257,'Group IA metals are not found free in nature because they','Have high melting and boiling points','Conduct heat and electricity','Are very reactive and unstable','Are malleable and ductile','','','c','','utme','2006',1148,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:09'),(258,'The characteristic colour of the flame shown when a copper salt moistened with concentrated hydrochloric acid on platinum is put on a bunzen burner is','Green','Lilac','Yellow','Brick-red','','','a','','utme','2006',1134,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(259,'The ion that will give a white precipitate with aqueous NaOH and soluble in excess of the base is','Zn2+','Mg2+','Ca2+','Cu2+','','','a','','utme','2006',1153,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:52'),(260,'Which of he following pairs of substances will react further with oxygen to form a higher oxide','SO2 and NO','CO2 and H2O','CO and CO2','NO and H2O','','','a','','utme','2006',1103,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:21'),(261,'Which of the following is an example of a mixture','Blood','Sand','Washing soda','Common salt','','','a','','utme','2010',1339,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(262,'Calculate the percentage by mass of nitrogen in calcium trioxonitrate (V)   {Ca = 40, N = 14, O = 16}','13.10%','17.10%','27.60%','8.5','','','d','','utme','2010',1259,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(263,'The droplets of water observed around a bottle of milk taken out of though refrigerator is due to the fact that the','Temperature of the milk drops as it loses heat into the surroundings','Saturated vapour pressure of the milk is equal to the atmospheric pressure','Water vapour in the air around loses some of its energy to the bottle','Water vapour in the air around the bottle gains some energy from the bottle','','','c','','utme','2010',1286,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(264,'The volume of a gas is Vcm3 at P mm Hg. What is the new volume of the gas if the pressure is reduced to half at constant temperature','2 V cm3','V  2cm3','V cm3','4 V cm3','','','a','','utme','2010',1282,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(265,'Moving from left to right across a period, the general rise in the first ionization energy can be attributed to the','Increase in nuclear charge','Decrease in screening effect','Increase in screening effect','Decrease in nuclear charge','','','a','','utme','2010',1302,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(266,'How many unpaired electron(s) are there in the nitrogen  sub - levels','2','1','0','3','','','d','','utme','2010',1241,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(267,'The stability of the noble gases is due to the fact that they','Have duplet or octet electron configurations','Belong to group zero of the periodic table','Are volatile in nature','Have no electron in their outermost shells','','','a','','utme','2010',1308,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(268,'The maximum number of electrons in the L shell of an atom is','8','18','32','2','','','a','','utme','2010',1283,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(269,'Elements in the same periodic table have the same','Atomic number','Chemical properties','Physical properties','Number of shells','','','d','','utme','2010',1338,'Admin','0000-00-00 00:00:00','2020-08-16 14:08:28'),(270,'A noble gas with a high power of fog penetration used in aerodrome beacons is','Argon','Helium','Neon','Krypton','','','c','','utme','2010',1271,'Admin','0000-00-00 00:00:00','2020-08-16 07:42:19'),(271,'Permanent hardness of water can be removed by','Adding slaked lime','Adding caustic soda','Boiling','Filtration','','','b','','utme','2010',1311,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(272,'Substances employed as drying agents are usually','Hygroscopic','Efflorescent','Acidic','Amphoteric','','','a','','utme','2010',1258,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(273,'Calculate the solubility in mol dm -3 of 40g of Cu So4 dissolved in 100g of water at 1200C  {Cu = 64, S = 32, 0 = 16}','2.5','0.4','0.25','4','','','a','','utme','2010',1270,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(274,'Coffee stains can best be removed by','Turpentine','A solution of borax in water','Ammonia solution','Kerosene','','','b','','utme','2010',1237,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(275,'Carbon (II) oxide is considered dangerous if inhaled mainly because it','Competes with oxygen in the blood','Competes with carbon (IV) oxide in the blood','Can cause lung cancer','Can cause injury to the nervous system','','','a','','utme','2010',1300,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(276,'The acid that is used to remove rust is','Hydrochloric','Trioxonitrate (V)','Tetraoxosulphate (VI)','Boric','','','b','','utme','2010',1307,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(277,'Calculate the volume of 0.5 mol dm-3 H2SO4 that is neutralized by 25cm3 of 0.1 mol dm-3 NaOH','2.5cm3','0.4cm3','0.1cm3','5.0cm3','','','a','','utme','2010',1278,'Admin','0000-00-00 00:00:00','2020-08-15 04:12:13'),(278,'The colour of methyl orange in alkaline medium is','Pink','Orange','Red','Yellow','','','d','','utme','2010',1249,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(279,'Which of the following salts is slightly soluble in water','CaSO4','Na2CO3','PbCl2','AgCl','','','a','','utme','2010',1333,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(280,'6AgNO3(aq)  +  PH3(g) +    3H2O(l)      →    6Ag(s)+   H3PO3(aq)   +    6HNO3(aq)  In the reaction above, the reducing agent is','H2O(l)','PH3(g)','AgNO3(aq)','HNO3(AQ)','','','b','','utme','2010',1289,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(281,'The IUPAC nomencalatyre of the compound LiAIH4 is','Aluminium tetrahydrido lithium','Tetrahydrido lithium aluminate (III)','Lithium aluminium hydride','Lithium tetrahydridoaluminate (III)','','','d','','utme','2010',1302,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(282,'Iron can be protected from corrosion by coating the surface with','Silver','Copper','Zinc','Gold','','','c','','utme','2010',1248,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(283,'What quantity of aluminum is deposited when a current of 10A is passed through a solution of an aluminum salt for 1930s  {AI = 27, F = 96500 C mol-}','1.8g','5.4g','14.2g','0.2g','','','a','','utme','2010',1358,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(284,'In which of the following is the entropy change positive','Reaction between an acid and a base','Addition of concentrated acid to water','Dissolution of sodium metal in water','Thermal dissociation of ammonium chloride','','','c','','utme','2010',1314,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(285,'If a reaction is exothermic and thee is a great disorder, it means that','The reaction is in a state of equilibrium','There will be a large increase in free energy','There will be a large decrease in free energy','The reaction is static','','','b','','utme','2010',1220,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(286,'In the preparation of oxygen by heating KCIO3 in the presence of MnC2, only moderate hear is needed because the catalyst acts by','Increasing the surface area of the reactant','Increasing the rate of the reaction','Lowering the energy barrier of the reaction','Lowering the pressure of the reaction','','','c','','utme','2010',1302,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(287,'2H2(g) +    O2(g)  ⇌ 2H2O(g)    ΔH   =  - ve  What happens to the equilibrium constant of the reaction above if the temperature is increased?','It becomes zero','It decreases','It increases','It is unaffected','','','b','','utme','2010',1359,'Admin','0000-00-00 00:00:00','2020-08-16 14:08:28'),(288,'To a solution of an unknown compound, a little dilute Tetraoxosulphate (IV) acid was added with some freshly prepared (II) Tetraoxosulphate (VI) Solution. The brown ring observed after the addition of a stream of concentrated  Tetraoxosulphate (VI) acid confirmed the presence of','CI','SO','NO','CO','','','c','','utme','2010',1272,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(289,'Which of the following is used as a rocket fuel','CH3COOH','H2SO4','HCL','HNO3','','','d','','utme','2010',1288,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(290,'A constituent common to moist air, it gradually rusts. This is due to the formation of','Silver','Copper','Tin','Lead','','','c','','utme','2010',1296,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(291,'When iron is exposed to moist air, it gradually rusts. This is due to the formation of','Anahydrous  iron (III) oxide','Anhydrous iron (II) oxide','Hydrated iron (II) oxide','Hydrated iron  (III) oxide','','','d','','utme','2010',1297,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(292,'A compound gives an orange red colour to a non luminous flame. This compound is likely to contain','Ca2+','Fe3+','Fe2+','Na+','','','a','','utme','2010',1270,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(293,'Stainless steel is used for making','Tools','Coins and medals','Moving parts of clocks','Magnets','','','a','','utme','2010',1273,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(294,'The residual solids from the fractional distillation of petroleum are used as','Raw materials for the cracking process','Fuel for driving tractors','Fuel for jet engines','Coatings for pipes','','','d','','utme','2010',1296,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(295,'Which of the following is used as fuel in miners’ lamp','Ethyne','Ethane','Ethane','Ethanol','','','a','','utme','2010',1268,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(296,'Which of the following organic compounds is very soluble in water','C2H2','C2H4','CH3COOC2H5','CH3COOH','','','d','','utme','2010',1331,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(297,'Benzene reacts with hydrogen in the presence of nickel catalyst at 1800C to give','Toluene','Cyclopentane','Cyclohexane','Xylene','','','c','','utme','2010',1308,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(298,'Which of the following is used to hasten the ripening of fruit','Ethanol','Ethyne','Ethane','Ethane','','','d','','utme','2010',1317,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(299,'The final products of the reaction between methane and chloride in the presence of ultraviolet light are hydrogen chloride and','Dichloromethane','Tetrachloromethane','Chloromethane','Trichloromethane','','','b','','utme','2010',1297,'Admin','0000-00-00 00:00:00','2020-08-15 04:12:13'),(300,'The correct order of increasing boiling points of the following  compounds C3H7OH, C7H16 and C4H10 is','C4H10  →  C7H16 → C3H7OH','C7H16 → C3H7OH → C4H16','C4H10  → C3H7OH  → C4H10','C3H7OH →  C4H10  → C7H16','','','a','','utme','2010',1343,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(301,'One of the major uses of Alkanes is','In the hydrogenation of oils','In the textile industries','In the production of plastics','As domestic and industrial fuels','','','d','','utme','2010',1242,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(302,'The haloalkanes used in the dry cleaning industries are','Chloroethane and dichloroethene','trichloroethene and tetrachloroethene','chloromethane and dichloroethene','Trichloromethane and tetrachloromethane','','','d','','utme','2010',1317,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(303,' Two hydrocarbons X and Y were treated with bromine water. Decolorized the solution and Y did not. Which class of compound does Y belong','Alkynes','Alkenes','Alkanes','Benzene','','','c','','utme','2010',1242,'Admin','0000-00-00 00:00:00','2020-08-15 19:54:44'),(304,'The compound that is used as an anaesthetic is','CHCI3','CH2C2','CH3CI','CCI4','','','a','','utme','2010',1253,'Admin','0000-00-00 00:00:00','2020-08-15 04:12:13');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `civiledu` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=437 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `civiledu` VALUES (1,'Who among the following could be described as the founding father of Nigerian nationalism?','Nnamdi Azikiwe','Herbert Macauley','Ahmadu Bello','Obafemi Awolowo','','','b','','wassce','2014',93,'Admin','2016-11-26 14:40:53','2020-08-13 13:00:57'),(2,'Rule of Law means','supremacy of the law','absence of legal immunity','peace, order and stability','obedience to any authority','','','a','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:38'),(3,'A major characteristic of civil society is','the desire to win election','corporate responsibility','social responsibility','political gerrymandering.','','','b','','wassce','2014',90,'Admin','2016-11-26 14:40:53','2020-08-03 19:26:55'),(4,'Citizenship status is acquired through','birth, indigenization, colonization and referendum','association, convention, naturalization and incorporation','birth, naturalization, honorary and registration','registration, inter-relationship, integration and declaration.','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-08-11 09:19:38'),(5,'Human Rights are basic natural rights which people enjoy primarily because they are','members of a political party','international citizens','members of a community','human beings.','','','d','','wassce','2014',79,'Admin','2016-11-26 14:40:53','2020-08-12 16:40:22'),(6,'Interpersonal relationship exists when','citizens pay their taxes regularly to inland revenue service','citizens are politically conscious and participate in voting','there is interaction between persons in a social setting.','groups share social interest and communal aspiration','','','d','','wassce','2014',83,'Admin','2016-11-26 14:40:53','2020-08-13 13:01:09'),(7,'Cultism can be described to be','amiable','attractive','dangerous','harmless.','','','c','','wassce','2014',83,'Admin','2016-11-26 14:40:53','2020-07-27 15:24:24'),(8,'Based on the statements above, the decision of the student on having a bullet proof vest shows that cultism','spreads fear and terror.','is a training ground for armed forces.','breeds courageous graduates.','propagates self - defence.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','a','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-08-13 12:50:49'),(9,'It could be inferred from the statements above that cultism in schools could lead to','sudden prosperity.','uninterrupted academic calender.','popularity on campus.','untimely death.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','d','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-07-14 13:33:44'),(10,'Victims of human trafficking are usually compelled to engage in','lucrative employment','visiting tourist sites','part - time studies','forced labour.','','','d','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:45'),(11,'One habit which People Living With HIV/AIDS (PLWHAs) must avoid to remain healthy and productive is','regular contact with healthy people.','self - pity and self - medication','participation in profitable ventures','pursuit of academic studies.','','','b','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-08-13 12:50:49'),(12,'Youth empowerment is best described as the','training given to individuals for acquiring means livelihood','practice of engaging in prospective career','provision of subsidized meals to the citizens by government,','mobilization of citizens for political rally.','','','a','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:47'),(13,'The National Assembly, Presidency and Court which are inter - related and interdependent in our democracy constitute the','tiers of government','types of democracy','forms of government.','arms of government','','','d','','wassce','2014',75,'Admin','2016-11-26 14:40:54','2020-08-12 16:40:23'),(14,'A system of government that listens to public opinion and tolerates opposition is','dictatorial regime','capitalist regime','democratic regime','socialist regime','','','c','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-07-25 18:35:32'),(15,'A situation where most citizens fail to vote in elections could be described as political','socialization','culture.','apathy','legitimacy','','','c','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:50'),(16,'The division of Nigeria into various constituencies with each electing a person to represent it in the National Assembly is a demonstration of','checks and balances','popular participation','political rivalry among the constituents','drive towards secession in the country.','','','b','','wassce','2014',91,'Admin','2016-11-26 14:40:54','2020-08-13 13:00:57'),(17,'In Nigeria, public servants are expected to be','non - partisan','political','ambitious','apolitical','','','a','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:52'),(18,'The principle that public servants cannot be held responsible for their official actions denotes','impartiality','accountability','anonymity','neutrality.','','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:54','2020-08-11 09:19:38'),(19,'Universal Declaration of Human Rights (UDHR) is based on the resolution of the','Human Rights Watch','United Nations Organization','Amnesty International','League of Nations.','','','b','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:54'),(20,'According to the story, Imoh’s parents were','wealthy couple','prominent politicians','honest and responsible','religious fanatics','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','c','','wassce','2014',95,'Admin','2016-11-26 14:40:54','2020-08-13 13:00:57'),(21,'What value did Imoh demonstrate.','Tolerance','Confidence','Fair play','Honesty','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','d','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:56'),(22,'Conflicts are better resolved in the society through','tribunal','litigation.','dialogue','the court','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-08-12 16:40:23'),(23,'To prevent the spread of HIV/AIDS, people should be encouraged to','avoid casual sexual activities','marry very early in life','engage in gainful employment','pursue higher education','','','a','','wassce','2014',101,'Admin','2016-11-26 14:40:54','2020-08-05 07:40:48'),(24,'The nearest government to the people and an important means of promoting grassroots development is the','state government','unitary government','local government','federal government','','','c','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-08-11 09:19:38'),(25,'Democratic governance is usually characterized by','free, fair and credible elections','buoyant and competitive economy','accessible employment opportunities','youth participation in governance','','','a','','wassce','2014',100,'Admin','2016-11-26 14:40:54','2020-08-13 13:01:09'),(26,'Political apathy often leads to','low level of participation','good governance','political stability','low literacy level','','','a','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-27 15:24:24'),(27,'Which of the following is not necessary for public servants to perform effectively?','In - service training','Appointment based on nepotism','Value re - orientation for public servants','Incentives for meeting set goals','','','b','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-08-13 12:50:49'),(28,'One of the conditions which can limit the enjoyment of Human Rights in Nigeria is the','acceptance of foreign aid by the government','improvement in literacy level of the citizens','declaration of state of emergency by government','periodic review of the constitution by government','','','c','','wassce','2014',93,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:02'),(29,'The implication of positive communal relationships is that it','promotes solidarity and love','ensures obedience to constituted authority','encourages ethnic diversity','promotes rural-urban drift.','','','a','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-08-13 13:00:57'),(30,'One major factor that attracts some Nigerians into human trafficking is','over - population related issues','influx of foreigners into the country','insatiable quest for quick wealth','influence of Western and social media','','','c','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:04'),(31,'One of the reasons most HIV/AIDS patients are \treluctant to disclose their status is because of','the incurable nature of the ailment','fear of social stigmatization.','lack of sufficient public awareness','shortage of health counsellors','','','b','','wassce','2014',77,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:05'),(32,'The position of the court on this matter justifies the essence of the','rule of law','legislature','police command','separation of powers','The Bawali High Court has ordered the police in Area Z Command to produce Mr. Zeb, who is in police custody for an alleged offence. The court insists that Mr. Zeb cannot be punished until he is found guilty of breach of any law of the land by a court of competent jurisdiction.','','a','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-08-11 09:19:38'),(33,'Leaders can best protect the interests of their followers by','embarking on periodic constitutional review','creating socio - economic opportunities for foreigners','creating conducive atmosphere for participation','rewarding supporters with contracts','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:07'),(34,'The most popular means through which citizens of a country can participate in politics is by','being members of political parties','engaging in constructive criticism','engaging in political debates','voting in elections','','','d','','wassce','2014',97,'Admin','2016-11-26 14:40:54','2020-08-13 13:01:09'),(35,'Civil societies are vital for the promotion of popular participation because they are','profit - oriented organizations','engaged in developmental programmes','involved in political education','formidable oppositions to government','','','c','','wassce','2014',97,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:09'),(36,'From this dialogue, it is very likely that Wanja will be exhibiting the following characters except','disobedience to constituted authority','truancy and perpetual lateness to school','hospitable attitude towards people','arrogance and unruly behaviour.','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:10'),(37,'Which of the following may result from Wanja’s habit?','Humility for elders','Criminality in the society','Advocacy for hard drugs by NGOs','Excellent performance in school','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',80,'Admin','2016-11-26 14:40:55','2020-08-03 19:26:55'),(38,'From Ada’s admonition, it could be deduced that taking hard drugs could','make people respect the addicts.','lead to insanity of the addicts','make people to adore the drug addicts','ensure courteous behaviour by the addicts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',87,'Admin','2016-11-26 14:40:55','2020-08-13 13:00:57'),(39,'From the above dialogue, Wanja’s behaviour could be curtailed by','sending him abroad for further studies','financial inducement','re - orientation and rehabilitation','indulging him with expensive gifts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',78,'Admin','2016-11-26 14:40:55','2020-08-11 09:19:38'),(40,'Which of the following governmental agencies is the most capable of controlling the activities of Wanja and his group?','National Agency for Food and Drug Administration and Control (NAFDAC)','National Orientation Agency (NO A)','National Emergency Management Agency (NEMA)','National Drug Law Enforcement Agency (NDLEA)','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','d','','wassce','2014',71,'Admin','2016-11-26 14:40:55','2020-08-07 21:33:40'),(41,'One of the major barriers to national development is the','low poverty level','existence of multi - party system','prevalence of corrupt practices','persistent rural - urban migration','','','c','','wassce','2014',75,'Admin','2016-11-26 14:40:55','2020-07-25 18:35:32'),(42,'The quotation above shows that the speaker is concerned about','nationalism','revolution','tourism','welfarism','“Here is your country. Cherish these natural wonders, cherish the natural resources, cherish the history and romance as sacred heritage, for your children and your children’s children. Do not let selfish men or greedy interests skin your country of its beauty, its riches...”','','a','','wassce','2014',89,'Admin','2016-11-26 14:40:55','2020-08-07 21:33:40'),(43,'A major benefit of youth empowerment is','dependence on foreign aid.','discouragement of patriotism','reduction in crime rate','negation to national prosperity','','','c','','wassce','2014',67,'Admin','2016-11-26 14:40:55','2020-08-13 13:00:57'),(44,'When leaders like Chief Bilisi place self interest above public good, the result is that','rebellion becomes inevitable','cooperation of citizens is guaranteed','International support for the regime is ensured','society becomes more peaceful and orderly.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','a','','wassce','2014',70,'Admin','2016-11-26 14:40:55','2020-07-25 14:57:28'),(45,'The condition of disorderly behaviour exhibited by the mob in the story best describes the','ineffectiveness of the police','breakdown of law and order','importance of ministerial position','need for stiffer security measures','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','b','','wassce','2014',78,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:18'),(46,'A major lesson Nigerians could learn from the story is that','leaders can empower voters by giving them money','security officials should use brutal force on citizens','the underprivileged should not vie for elective positions','greed and related vices can cause serious breach of  the law.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','d','','wassce','2014',82,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:19'),(47,'Which of the following is not a function of the Independent National Electoral Commission (INEC)?','Administering oath of office to elected officers','Conducting periodic elections','Recruitment of electoral officers.','Registration of political parties','','','a','','neco','2014',81,'Admin','2016-11-26 17:20:10','2020-07-25 18:35:32'),(48,'The upper legislative chamber of the National Assembly of Nigeria is also known as the','honourables','house of commons.','house of lords','senate','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:14','2020-08-07 21:33:40'),(49,'Cooperation between one country and another can be described as','bilateral','international','multilateral','multinational.','','','a','','neco','2014',93,'Admin','2016-11-26 17:20:14','2020-07-25 18:35:32'),(50,'The “right to vote and be voted for” can only be enjoyed by Nigerian citizens who attain the age of','13.','15.','16.','18.','','','d','','neco','2014',85,'Admin','2016-11-26 17:20:14','2020-08-11 09:19:38'),(51,'A representative of a commonwealth country in another member state is known as a / an.','ambassador','attaché.','consul-general.','high commissioner.','','','d','','neco','2014',109,'Admin','2016-11-26 17:20:14','2020-08-12 16:40:22'),(52,'The following are values that promote interpersonal relationship, except','caring.','honesty.','patience','properties.','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:25'),(53,'The responsibilities of government to   its citizens include the following, except','creating employment opportunity','maintenance of law and order','payment of property tax to its citizens','protection of lives and property','','','c','','neco','2014',74,'Admin','2016-11-26 17:20:14','2020-08-13 12:50:49'),(54,'Most African countries owed their creation to','African Union (AU).','Commonwealth of Nations.','Ethnic and tribal leaders.','European Colonialists','','','a','','neco','2014',85,'Admin','2016-11-26 17:20:14','2020-07-25 14:57:28'),(55,'The structure of the Nigerian legislature is - in nature','bicameral','confederal','federal','unicameral','','','a','','neco','2014',81,'Admin','2016-11-26 17:20:14','2020-08-11 09:19:38'),(56,'The most effective approach towards the elimination of sexually transmitted diseases is by','abstinence.','Casual sex.','use of condom.','use of drugs','','','a','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:28'),(57,'The first executive president of Nigeria is/was','Abubakar Tafawa Balewa','Goodluck Jonathan','NnamdiAzikiwe.','Shehu Shagari.','','','d','','neco','2014',83,'Admin','2016-11-26 17:20:15','2020-08-12 16:40:23'),(58,'One of the aims of citizenship education is to produce students with','creative skill.','high sense of entrepreneurial skill.','high sense of patriotism.','manipulative skills.','','','c','','neco','2014',78,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:30'),(59,'The symbol for the campaign against AIDs is Ribbon','black','blue','green','red','','','d','','neco','2014',113,'Admin','2016-11-26 17:20:15','2020-08-13 13:00:53'),(60,'ln 2013, Nigeria celebrated her ______ independence anniversary','50th','51st','52nd','54th','','','d','','neco','2014',94,'Admin','2016-11-26 17:20:15','2020-08-13 13:00:57'),(61,'In democracy, lack of press freedom leads to the denial of freedom of','association','expression','movement','voting','','','b','','neco','2014',65,'Admin','2016-11-26 17:20:15','2020-08-13 13:01:09'),(62,'Franchise means right to','contest for political post','join association','live in Nigeria','vote and be voted for','','','d','','neco','2014',84,'Admin','2016-11-26 17:20:15','2020-08-13 13:00:57'),(63,'How many members constitute the lower legislative chamber in Nigeria?','300','302','312','360','','','d','','neco','2014',83,'Admin','2016-11-26 17:20:15','2020-08-13 13:00:57'),(64,'How many senators are elected from each state in Nigeria?','2','3','4','5','','','b','','neco','2014',70,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:36'),(65,'When was the first HIV/AIDs case reported in Nigeria?','1980','1983','1985','1987','','','c','','neco','2014',84,'Admin','2016-11-26 17:20:15','2020-08-13 13:01:09'),(66,'Which of the following system of government advocates equitable distribution of wealth?','Aristocracy','Capitalism','Plutocracy','Socialism','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:38'),(67,'The right of an individual to seek redress in a law court is categorized under','economic.','political','procedural,','social','','','c','','neco','2014',84,'Admin','2016-11-26 17:20:16','2020-08-03 19:26:55'),(68,'The National Youths Service Corps Scheme was established in Nigeria in','1970','1971','1973','1975.','','','c','','neco','2014',85,'Admin','2016-11-26 17:20:16','2020-07-25 18:35:32'),(69,'Which of the following is a legal obligation of a citizen?','Giving financial assistance to the poor','Helping in community development','Payment of taxes','Respecting the national symbols','','','c','','neco','2014',89,'Admin','2016-11-26 17:20:16','2020-08-13 13:00:57'),(70,'Which of these is not a system of government?','Anarchy','Monarchy','Oligarchy','Socialism','','','d','','neco','2014',92,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:41'),(71,'The laws made by the third tier of government in Nigeria are refer to as','bye-laws.','constitutional laws.','decrees.','edicts','','','a','','neco','2014',98,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:49'),(72,'What does “35% affirmative action” of the present administration stand for? More','PDP  stalwarts   should   be engaged in government','political positions for women in government','women to be considered for campaign','women to be elected as governors','','','b','','neco','2014',93,'Admin','2016-11-26 17:20:16','2020-07-25 18:35:32'),(73,'A political party’s programme is known as its','constitution.','document.','functions.','manifesto.','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:16','2020-08-13 13:01:09'),(74,'How many Senator(s) represent the Federal Capital Territory in the senate?','1','2','3','4','','','a','','neco','2014',96,'Admin','2016-11-26 17:20:16','2020-08-13 13:00:53'),(75,'The International Court of Justice is located in','Britain.','Netherlands.','Nigeria.','Norway.','','','b','','neco','2014',81,'Admin','2016-11-26 17:20:17','2020-07-25 18:35:32'),(76,'The headquarters of United Nations is located in','Abuja.','England','Hague.','New York.','','','d','','neco','2014',96,'Admin','2016-11-26 17:20:17','2020-07-27 15:24:24'),(77,'One advantage of Bi-cameral legislature is that it','guards against intra-party clashes.','is the only system available.','prevents arbitrary law making','projects party manifestoes.','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:01'),(78,'Public Complaints Commission in Nigeria is also known as','elder’s forum.','judiciary.','ombudsman.','people’s court.','','','c','','neco','2014',87,'Admin','2016-11-26 17:20:17','2020-08-07 21:33:40'),(79,'The public service structure of Nigeria is an offshoot of','America.','British.','Canada.','India.','','','b','','neco','2014',82,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:03'),(80,'A de-facto authority is mostly associated with','anarchy.','customs and tradition.','force.','law.','','','b','','neco','2014',81,'Admin','2016-11-26 17:20:17','2020-07-25 14:57:28'),(81,'The United Nations universal declaration on human rights was proposed in the year','1925','1930','1946','1948','','','d','','neco','2014',76,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:05'),(82,'Political apathy can be discouraged through the following, except','educating the electorate.','good governance.','independent judiciary.','press censorship.','','','d','','neco','2014',87,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:06'),(83,'One of the civic responsibilities of a citizen is to obey','bye-laws.','constituted authority.','court judgments.','edicts.','','','b','','neco','2014',79,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:07'),(84,'Which of the following is not a function of political parties?','Aggregation of opinion','Educating the government','Interest articulation','Unifying factor.','','','d','','neco','2014',67,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:08'),(85,'Nigeria is now hundred years since amalgamation which means she has celebrated — anniversary.','amalgamation.','centenary.','golden jubilee.','independence.','','','b','','neco','2014',69,'Admin','2016-11-26 17:20:17','2020-07-25 18:35:32'),(86,'Which of the following bodies is responsible for defending the country against external aggression? The','Army','Civil defense.','Customs.','Police.','','','a','','neco','2014',95,'Admin','2016-11-26 17:20:17','2020-08-03 19:26:55'),(87,'One of the following is a country as well as a continent.','Africa','Antarctica','Asia','Australia','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:10'),(88,'In a parliamentary system of government, the powers of the executive is vested in the office of the','minister.','premier','president.','prime minister.','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:11'),(89,'One of the major problems facing local government administration in Nigeria is','insufficient councilors','lack of control by the central government','lack of funds','leadership','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:17','2020-08-13 13:00:57'),(90,'The land contention between Nigeria and Cameroon is called','Bakassi Penisula','Bonny Island','Calabar River','Lekki Penisula','','','a','','neco','2014',81,'Admin','2016-11-26 17:20:17','2020-08-07 21:33:40'),(91,'The headquarters of ECOWAS is located in','Abuja','Accra','Adis-Ababa','Lome','','','d','','neco','2014',97,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:15'),(92,'Human rights abuse can be prevented through the following, except','constitutional means','court of law','mass literacy','protest','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:16'),(93,'The public Service is a branch of the ____ arm of government','civilian','executive','judiciary','legislative','','','b','','neco','2014',86,'Admin','2016-11-26 17:20:18','2020-08-13 13:01:09'),(94,'When the national flag is flown half mask, it is a sign of national','centenary celebration','children’s day','independence','mourning','','','d','','neco','2014',79,'Admin','2016-11-26 17:20:18','2020-08-11 09:19:38'),(95,'One of the ways to ensure a free and fair election is to','allow parties to campaign on election day','appoint a politician as the chairman of the electoral commission','ensure INEC chairman is appointed from a pressure group','guarantee the security of electoral officers and materials','','','d','','neco','2014',80,'Admin','2016-11-26 17:20:18','2020-08-13 13:00:57'),(96,'How many colours are in the traffic light?','2','3','4','5','','','b','','neco','2014',78,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:19'),(97,'The channel through which political parties make their program known to the people is ..............','canvassing','campaigning','convincing','coronation','','','b','','wassce','2012',79,'Admin','2016-11-26 17:47:57','2020-07-14 13:35:20'),(98,'What arm of the criminal justice system is prison?','first','second','third','none','','','c','','wassce','2012',92,'Admin','2016-11-26 17:47:58','2020-07-25 18:35:32'),(99,'................ is the apex body saddled by law to fight corruption and other related offences','IRS','ICPC','EFCC','NPF','','','c','','wassce','2012',97,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:30'),(100,'The responsibility of protecting past and present high ranking government officials falls on ...............','police','army','civil defense corps','SSS','','','a','','wassce','2012',83,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:31'),(101,'............ is obtained from the Nigerian immigration services as a requirement to travel out of the country','ticket','yellow card','passport','national ID card','','','c','','wassce','2012',72,'Admin','2016-11-26 17:47:58','2020-07-25 18:35:32'),(102,'There are ............. local government in Nigeria','700','714','744','774','','','d','','wassce','2012',102,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:33'),(103,'Local government is the ............... tier of government','1st','2nd','3rd','4th','','','c','','wassce','2012',91,'Admin','2016-11-26 17:47:58','2020-08-11 09:19:38'),(104,'Television and radio are example  of ......... media','print','electronic','advertising','mass','','','b','','wassce','2012',116,'Admin','2016-11-26 17:47:58','2020-08-13 13:00:57'),(105,'Newspapers and magazine and example of ..... media','print','electronic','advertising','mass','','','a','','wassce','2012',94,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:36'),(106,'One of the listed criteria qualifies one for election .......','certificate','beauty','height','citizenship','','','d','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-27 15:24:24'),(107,'The following are duties to be performed by the citizens of a country EXCEPT','Destroying government properties','obey law and order','payment of tax','show loyalty','','','a','','wassce','2012',103,'Admin','2016-11-26 17:47:58','2020-08-13 13:01:09'),(108,'The form of government in which the electorate exercise their governing power directly through their elected \trepresentation is called ........','supremacy','democracy','autocracy','charismatic','','','b','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:39'),(109,'Punishment for law breaking include the following except ..........','freedom of movement','detention','sanctions','political instability','','','d','','wassce','2012',99,'Admin','2016-11-26 17:47:58','2020-08-03 19:26:55'),(110,'The act of counting the numbers of people living in a country in order to determine the total numbers of \tpeople in a state is known as .......','election','national population census','voting','rights','','','b','','wassce','2012',111,'Admin','2016-11-26 17:47:58','2020-08-13 13:00:53'),(111,'The last population census in Nigeria was conducted in ...........','2003','2006','2007','2005','','','b','','wassce','2012',106,'Admin','2016-11-26 17:47:58','2020-07-27 15:24:24'),(112,'The 219 chibok girls were ................ while ..............','abducted, praying in the mosque','kidnaped, praying in the church','abducted, wondering along the street of chibok town','kidnaped, preparing to write their WAEC examination','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:43'),(113,'The following are types of drugs except','cannabis','depressants','benzodiazepine pines','steroids','','','c','','wassce','2012',119,'Admin','2016-11-26 17:47:59','2020-08-07 21:33:40'),(114,'Cocaine, morphine and heroin are example of','tobacco','steroids','narcotics','inhalants','','','c','','wassce','2012',99,'Admin','2016-11-26 17:47:59','2020-08-12 16:40:23'),(115,'......... refer to a group of drugs that are inhaled in the form of a gas or solvent','hallucinogens','stimulants','inhalants','gasoline','','','c','','wassce','2012',110,'Admin','2016-11-26 17:47:59','2020-08-03 19:26:55'),(116,'Cannabis is also called .........','barbiturates','cassava','marijuana','caffeine','','','b','','wassce','2012',108,'Admin','2016-11-26 17:47:59','2020-08-13 12:50:49'),(117,'Which of the following is the most common forms of drug abuse','drug trafficking','self medication','drug combination','frequent use','','','b','','wassce','2012',91,'Admin','2016-11-26 17:47:59','2020-07-25 18:35:32'),(118,'The following factors are responsible for drug abuse except','family upbringing','high stress level','poverty','foster parenthood','','','d','','wassce','2012',91,'Admin','2016-11-26 17:47:59','2020-08-12 16:40:23'),(119,'........ is the type of parenthood where a different couple raise a particular child that is not their own','helicopter parent','foster parenthood','slow parenting','different parenthood','','','b','','wassce','2012',94,'Admin','2016-11-26 17:47:59','2020-08-13 13:00:53'),(120,'One of the following is a cause of single parents in Nigeria','slow parenting','social group','nature of work','divorce','','','d','','wassce','2012',96,'Admin','2016-11-26 17:47:59','2020-08-13 13:01:09'),(121,'.......... strengthens the sensitive mental and emotional bond between the parent and children','narcissistic parenting','attachment parenting','positive parenting','teenage parenting','','','b','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:51'),(122,'........... is the verdict that results when a law court declares a defendant guilty of a crime','immunity clause','conviction','customary clause','traditions','','','b','','wassce','2012',119,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:52'),(123,'The clause which exempts the president from being prosecuted while still in office is called','military clause','special clause','conviction clause','immunity clause','','','d','','wassce','2012',86,'Admin','2016-11-26 17:47:59','2020-08-07 21:33:40'),(124,'All the following can limit the right of a citizen except','war','state of emergency','universality','military rule','','','c','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-08-03 19:26:55'),(125,'The following are causes of emergency rule except','crisis','blood lettings','stage peaceful protest','sabotage / terrorism','','','c','','wassce','2012',76,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:55'),(126,'The World AIDs Day is usually ..........................','June 12th every year','May second every year','October 1st every year','December 1st every year','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-08-13 12:50:49'),(127,'One of the following is not human right group','Constitutional Right Project (CRP)','National Association of Democratic Lawyers (NADL)','Nigeria Bar Association (NBA)','Civil Liberties Organization (CLO)','','','c','','wassce','2012',95,'Admin','2016-11-26 17:47:59','2020-08-11 09:19:38'),(128,'One of the following is not a pressure group','National Association of Nigeria Student (NANS)','Nigeria Labour Congress (NLC)','Academic Staff Union of Universities (ASUU)','Committee for Defense of Human Right (CDHR)','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:58'),(129,'One of the following is not a political party','PDP','APGA','ANPC','CPC','','','c','','wassce','2012',95,'Admin','2016-11-26 17:47:59','2020-08-13 12:50:49'),(130,'One of the following is a social group','dangote group of companies','rotary club','Millan group','human right Africa','','','c','','wassce','2012',91,'Admin','2016-11-26 17:47:59','2020-08-07 21:33:40'),(131,'The organization with the motives and goals of helping people is called','social group','charity group','pressure group','human right group','','','b','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:01'),(132,'The following are the reasons why people do not participate in polities except','illiteracy','lack of justice','multi-party system','religion','','','c','','wassce','2012',91,'Admin','2016-11-26 17:47:59','2020-08-07 21:33:40'),(133,'............... is the prejudicial treatment of fellow human being','god fatherism','independence','justice','discrimination','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-08-13 13:00:53'),(134,'Laws are interpreted by the','Judiciary','President','Legislature','Executive','','','a','','wassce','2012',115,'Admin','2016-11-26 17:47:59','2020-08-13 13:00:53'),(135,'The president belongs to ............... arm of the government','Executive','Judiciary','Military','Legislature','','','a','','wassce','2012',89,'Admin','2016-11-26 17:47:59','2020-08-13 13:01:09'),(136,'The process whereby an individual choose to favour a person who come from his family or tribe over other people or tribes is known as','stereotype','ethnicity','nepotism','favouritism','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-08-13 13:00:53'),(137,'When a group of people believe in and keep to certain norms, values and ways of life of their community since its creation, we call this .................','religion','stereotypes','traditions','custom','','','c','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:06'),(138,'Traffic lights are also known and referred to as','three directives light','spotlight','flow traffic directive','informative sign','','','b','','wassce','2012',87,'Admin','2016-11-26 17:48:00','2020-08-13 13:00:53'),(139,'One of the following is not a federal road agencies','DTO','FRSC','TRACE','VIO','','','c','','wassce','2012',86,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:08'),(140,'One of the following is a regulatory prohibitory sign','stop police','speed limit','t junction','ferry','','','a','','wassce','2012',99,'Admin','2016-11-26 17:48:00','2020-08-13 13:01:09'),(141,'The traffic light has how many colours','3','4','5','2','','','a','','wassce','2012',82,'Admin','2016-11-26 17:48:00','2020-08-13 13:00:57'),(142,'From the basic road traffic regulation pedestrians should not attempt to cross the road when the light are ............. and ...............','green and yellow','green and red','yellow and red','red and yellow','','','a','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:11'),(143,'Motorcyclists must always protect their heads with safety ............. which must be properly fastened','seat belt','head guild','helmets','cap cycles','','','c','','wassce','2012',103,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:12'),(144,'Pedestrians should always cross road using','stop hold','parked vehicles','zebra crossing','bridge','','','c','','wassce','2012',92,'Admin','2016-11-26 17:48:00','2020-08-13 13:00:57'),(145,'The former NAFDAC DG Prof Dora Akunyili died on','June 9. 2014','June 17, 2014','June 7, 2014','May 27, 2014','','','c','','wassce','2012',107,'Admin','2016-11-26 17:48:00','2020-08-13 12:50:49'),(146,'Political values are acquired in any given society through','Political re-orientation','Political campaign','Political socialization','Political indoctrination','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:51','2020-07-27 15:24:24'),(147,'To ensure the rights and freedom of citizens; the power of the arms of government must be','fused','incorporated','separated','rotated','','','c','','neco','2012',86,'Admin','2016-11-26 18:05:52','2020-07-27 15:24:24'),(148,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social right','','','b','','neco','2012',81,'Admin','2016-11-26 18:05:52','2020-08-13 12:50:49'),(149,'The commission charged with the conduct of federal \telections in Nigeria between 2014 and 2015 is..........','Nec','fedeco','Inec','Necon','','','c','','neco','2012',88,'Admin','2016-11-26 18:05:52','2020-08-03 19:26:55'),(150,'The colour of the Nigeria flag is ..............., anytime it \tis half masked it means that the nation is ...............','green white green - rejoicing','white green white - mourning','green white green - mourning','green white blue - voting','','','c','','neco','2012',83,'Admin','2016-11-26 18:05:52','2020-08-13 13:00:57'),(151,'Which of the following is used in gauging public opinion','Constitution','Educational Institution','Mass media','Electoral college','','','c','','neco','2012',77,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:19'),(152,'In Nigeria, The agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil  defense corps','Police','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:52','2020-08-12 16:40:23'),(153,'The National Assembly in Nigeria is primarily responsible for','executing laws','Interpreting laws','ratifying appointment','making laws','','','d','','neco','2012',86,'Admin','2016-11-26 18:05:52','2020-08-12 16:40:23'),(154,'The major factor militating against efficient operation \tof electoral commission in Nigeria is .......................','Inadequate public support','Population size','Inadequate skilled manpower','excessive political interference','','','d','','neco','2012',72,'Admin','2016-11-26 18:05:53','2020-08-13 12:50:49'),(155,'When Ebola disease is very rampant ............. count \ttheir loses while ......... smile to the bank','fish sellers, bush meat sellers','bush meat sellers, fish sellers','bread sellers, fish sellers','students, teachers','','','b','','neco','2012',101,'Admin','2016-11-26 18:05:53','2020-08-11 09:19:38'),(156,'Workers in the Public Corporations are known as','Civil servants','Private employees','Public servants','Professional employees','','','c','','neco','2012',86,'Admin','2016-11-26 18:05:53','2020-07-25 18:35:32'),(157,'Membership of a society is','conventional','Mandatory','Voluntary','Constitutional','','','c','','neco','2012',80,'Admin','2016-11-26 18:05:53','2020-07-27 15:24:24'),(158,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','Police, Army, sovereignty and custom','','','c','','neco','2012',102,'Admin','2016-11-26 18:05:53','2020-07-25 14:57:28'),(159,'Citizenship is acquired by an alien through','registration','birth','Conferment','Naturalization','','','d','','neco','2012',88,'Admin','2016-11-26 18:05:53','2020-08-03 19:26:55'),(160,'The office responsible for announcing the result of an election is known as','ballot officer','presiding officer','Returning officer','Electoral officer','','','c','','neco','2012',94,'Admin','2016-11-26 18:05:53','2020-08-03 19:26:55'),(161,'Law made by military governments are called','decrees','Bye-laws','Edicts','acts','','','a','','neco','2012',78,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:29'),(162,'The ultimate aim of political parties is to','implement people oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','neco','2012',81,'Admin','2016-11-26 18:05:53','2020-08-13 13:01:09'),(163,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their member','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','neco','2012',86,'Admin','2016-11-26 18:05:53','2020-08-13 13:00:57'),(164,'Public servants in Nigeria belong to the ............. arm of government','military','executive','legislature','judiciary','','','b','','neco','2012',88,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:32'),(165,'One of the main duties of the local government service commission is to','supervise and manage the personnel of local government','conduct election into local council','create an enabling working environment for council workers','handle request for the creation of more local government','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:53','2020-07-25 18:35:32'),(166,'The option A4 model was used in the conduct of the','2007 election','1983 election','1993 election','1999 election','','','c','','neco','2012',103,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:34'),(167,'The following is the function of a responsible parenthood','care and love','gambling','Drug addition','fighting','','','a','','neco','2012',80,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:35'),(168,'Custom refers to .............','tradition or social value or patterns','image of a country','sharing similar or common ethnic background','A state of feeling of oneness among the people','','','a','','neco','2012',94,'Admin','2016-11-26 18:05:53','2020-08-13 13:01:09'),(169,'The term V. I. O. mean','Vehicle inspection officer','vehicle implementation officer','vehicle induce operation','vehicle induction officer','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:53','2020-08-13 13:00:57'),(170,'Which of these countries operate a unitary system of \tgovernment','Nigeria','U. S. A','Ghana','Britain','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:37'),(171,'Which of the following are not fundamental human right','right to life','right to gainful employment','right to vote and be voted for','right to overthrow a government','','','d','','neco','2012',85,'Admin','2016-11-26 18:05:53','2020-08-11 09:19:38'),(172,'A constitution that is very easy to amend is called a ...... constitution','rigid','flexible','an easy','simple','','','b','','neco','2012',93,'Admin','2016-11-26 18:05:53','2020-08-13 13:00:53'),(173,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate','','','d','','neco','2012',91,'Admin','2016-11-26 18:05:53','2020-07-27 15:24:24'),(174,'One judicial function performed by the executive is','granting of amnesty','implementing judicial order','ensuring obedience to the law','appointing judges','','','a','','neco','2012',87,'Admin','2016-11-26 18:05:53','2020-08-13 13:00:57'),(175,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary','','','a','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-08-13 13:00:53'),(176,'The private ownership of the means of production is a feature of','capitalism','Socialism','Communalism','Communism','','','a','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-08-13 13:00:53'),(177,'A government is said to be legitimate if it','has the people’s mandate to rule','is not oppressive','provide social services for the people','accepts people’s criticism','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:44'),(178,'All type of government perform all the following functions except','providing welfare and developmental facilities','maintaining law and order','encouraging the struggle for power','encouraging trade with other state','','','c','','neco','2012',100,'Admin','2016-11-26 18:05:54','2020-08-07 21:33:40'),(179,'A coup d’etat is regarded as','A source of political legitimacy','A manipulation of the constitution','A constitutional way of changing the government','an unconstitutional way of changing the government','','','d','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:46'),(180,'Which of the following is an advantage of local government','Agents for money based politics','electoral commissions','training grounds for political leaders','agents of pressure group','','','c','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:47'),(181,'Public Corporations are financed','by tax payers','with private funds','with entrepreneurial funds','by political parties','','','a','','neco','2012',111,'Admin','2016-11-26 18:05:54','2020-08-12 16:40:23'),(182,'A manifesto refers to','the register of party members','rejected ballot papers','valid ballot papers','Document containing the aims and programmes of   a political party','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:54','2020-08-03 19:26:55'),(183,'Which of the following is not a duty of a citizen','obedience to the law','payment of taxes','service to the Nation','giving alms to the poor','','','d','','neco','2012',88,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:49'),(184,'The police perform all the following function except','public execution of law breaker','controlling and directing traffic','protection of life and property','enforcement of law and orders','','','a','','neco','2012',84,'Admin','2016-11-26 18:05:54','2020-08-13 13:00:57'),(185,'An agreed set of rules prescribing the governance of a country can be called the','constitution','charter','manifesto','programme','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:51'),(186,'The lack of interest in politics by many citizens in a country is called','civic agitation','mass apathy','mass protest','political unrest','','','b','','neco','2012',96,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:52'),(187,'The following are ways to prevent drug addiction except','civic education','law enforcement and regulation','mass media effort','voting at election','','','d','','neco','2012',96,'Admin','2016-11-26 18:05:54','2020-08-13 13:00:53'),(188,'The following are examples of pressure group except','N. U. R. T','NBA','NLC','PDP','','','d','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:54'),(189,'The following are Road Traffic signs except','Regulatory sign','Informative sign','Warning sign','Philosophy sign','','','d','','neco','2012',85,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:55'),(190,'The function of Federal Road Safety Corp (FRSC) is','Enforcing the traffic regulation on road','making law','executing law','Interpreting law','','','a','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-08-07 21:33:40'),(191,'The function of vehicle inspection officer (VIO) is','ensuring the road wordiness of vehicle on the road','protection of life and property','collection of tax','counting of votes cast at election','','','a','','neco','2012',110,'Admin','2016-11-26 18:05:54','2020-08-11 09:19:38'),(192,'Colonization of Africa was mainly motivated by','security consideration','economic reasons','religious reasons','cultural factor','','','b','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-07-27 15:24:24'),(193,'Which of these is a type of parenthood','single parenthood','ethnic parenthood','village parenthood','clan parenthood','','','a','','neco','2012',77,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:42'),(194,'Decrees are laws made by ............','Democratic government','The prime minister','The military','Parliaments','','','c','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:43'),(195,'Austerity measure was first introduced in Nigeria by ..........','President Babangida','Olusegun Obasanjo','President Sehu Shagari','President Goodluck Jonathan','','','c','','neco','2012',107,'Admin','2016-11-26 18:05:54','2020-08-13 13:00:57'),(196,'Before crossing the road you are expected to ...........','Look left and then right','Look left, right and left again','Look back and left','Look forward for oncoming okada','','','b','','wassce','2013',111,'Admin','2016-11-27 17:07:11','2020-07-25 18:35:32'),(197,'.............. was the capital of Nigeria before .................','Abuja - Lagos','Lagos - Abuja','Ikeja - Abuja','Benin - Abuja','','','b','','wassce','2013',97,'Admin','2016-11-27 17:07:15','2020-07-14 11:39:46'),(198,'The primary duty of the police force is to','Make law','Interpret the law','Deal with danfo and okada drivers','Non of the above','','','d','','wassce','2013',91,'Admin','2016-11-27 17:07:19','2020-07-14 13:37:03'),(199,'The law is enforced by','Military','Legislators','Police force','Area boys','','','c','','wassce','2013',101,'Admin','2016-11-27 17:07:27','2020-08-13 13:00:53'),(200,'Which of the following is NOT an offence','Tax avoidance','Tax evidence','Stealing by trick','Money laundering','','','a','','wassce','2013',89,'Admin','2016-11-27 17:07:31','2020-08-11 09:19:38'),(201,'Some core Rights or Freedoms in the Universal Declaration of Human Rights of 1948 are','The right to life and right to freedom of opinion and expression','The right to fight and smoke in the public place','The right to attack your enemies and the right to make slanderous speeches','None of the above','','','a','','wassce','2013',95,'Admin','2016-11-27 17:07:35','2020-08-13 13:00:57'),(202,'Cultism can lead to','Immoral activities and indiscipline','Maintenance of law and order in the society','Corrupt free society','Sound cultural development','','','a','','wassce','2013',80,'Admin','2016-11-27 17:07:39','2020-07-14 13:37:40'),(203,'Popular participation can','promote political awareness and education','Lead to political apathy','lead to the election of wrong leaders','to political instability','','','a','','wassce','2013',107,'Admin','2016-11-27 17:07:47','2020-07-27 15:24:24'),(204,'One of the ways to prevent the spread of HIV/AIDs is','Not to eat in fast food joints','Not to shake hands with anybody','To avoid any object contaminated with blood','Sleep under a mosquito net','','','c','','wassce','2013',77,'Admin','2016-11-27 17:07:51','2020-07-14 13:37:42'),(205,'Nigeria became independent in ........... and a Republic in ................ Respectively','1963 and 1960','1960 and 1963','1954 and 1960','None of the above','','','b','','wassce','2013',108,'Admin','2016-11-27 17:07:55','2020-07-25 14:57:28'),(206,'The process of enlightening or training citizens on their rights and responsibilities is known as','Workshop training','Citizenship Education','Political Education','Citizenship Rights','','','b','','wassce','2013',95,'Admin','2016-11-27 17:07:55','2020-08-13 13:01:09'),(207,'The ideas, things or principles cherished by the people in a community are referred to as','rights','culture','values','due process','','','c','','wassce','2013',101,'Admin','2016-11-27 17:08:03','2020-08-13 12:50:49'),(208,'The illicit or illegal business in the sales and \ttransportation of human beings for economic and other selfish purposes is known as','Human capital development','Human traffic rule disobedience','Human trafficking','Mans inhumanity to man','','','c','','wassce','2013',78,'Admin','2016-11-27 17:08:03','2020-07-14 13:37:46'),(209,'An indifference attitude towards political activities by the citizens of a state is termed','political apathy','political unrest','political ideology','political disunity','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:07','2020-07-14 13:37:47'),(210,'For which of these can someone be arrested while driving on a high way','driving and laughing','driving and singing','driving and eating or receiving phone call','driving and crying','','','c','','wassce','2013',87,'Admin','2016-11-27 17:08:11','2020-07-14 13:37:48'),(211,'The process in which every qualified citizen of a state has the right to vote is called ............ suffrage','universal adult','democratic','tax payer','communal','','','a','','wassce','2013',90,'Admin','2016-11-27 17:08:11','2020-07-27 15:24:24'),(212,'The armed forces and the police are part of the ........ organ of government','executive','judicial','legislative','informative','','','a','','wassce','2013',86,'Admin','2016-11-27 17:08:14','2020-08-13 12:50:49'),(213,'The exercise of arbitrary power, whims and caprices constitutes a negation of .........','rule of law','fundamental human right','checks and balance','indirect rule','','','a','','wassce','2013',94,'Admin','2016-11-27 17:08:15','2020-08-13 13:01:09'),(214,'Which of the following concepts confirms the general acceptance and recognition of a government?','Democratic powers','Legitimacy','sovereignty','popular democracy','','','b','','wassce','2013',102,'Admin','2016-11-27 17:08:15','2020-08-12 16:40:22'),(215,'Which of the following can cause Human Trafficking in a country','poverty, youth unemployment and greed','Sound education and proper counselling','Social and economic contentment','B and C above','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:15','2020-08-12 16:40:23'),(216,'The use of drugs through self - medication or without due medical prescription is referred to as','Personal drug administration','Drug abuse','Human right abuse','Drug trafficking','','','b','','wassce','2013',93,'Admin','2016-11-27 17:08:15','2020-07-14 13:38:01'),(217,'An important characteristics of Democracy is','The absence of free press and mass media','Unequal political rights','Respect for principle of rule of law','The absence of separation of powers between the   arms and levels of government','','','c','','wassce','2013',88,'Admin','2016-11-27 17:08:15','2020-08-03 19:26:55'),(218,'Which one of the following is the founding father of Nigeria nationalism?','Goodluck Jonathan','Oba Kosoko','Herbert Macaulay','Olusegun Obasanjo','','','c','','wassce','2013',109,'Admin','2016-11-27 17:08:19','2020-08-13 13:00:57'),(219,'The use of illicit or hard drugs such as marijuana (Indian hemp) heroine, morphine etc. is known as','Human right abuse','Drug trafficking','Drug enhancement','Drug abuse','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:23','2020-07-25 14:57:28'),(220,'The farthest government to the people is the ............ government','Local','State','Federal','A and B above','','','c','','wassce','2013',114,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:05'),(221,'An instrument for exercise of power for controlling, administering and managing the affairs of people based on laws is the','Civil service','Executive','Government','State','','','c','','wassce','2013',101,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:06'),(222,'The ideology which emphasizes a classless society is','Communism','Capitalism','Totalitarianism','Feudalism','','','a','','wassce','2013',89,'Admin','2016-11-27 17:08:27','2020-08-13 13:00:53'),(223,'Which of the following constitutes drug abuse','taking less than the dose recommended by the doctor','taking more than the dose recommended by the doctor','taking the exact dose recommended by the doctor','A and B above','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:31','2020-07-25 14:57:28'),(224,'The power to legislate is usually exercised by','parliament','executive','judiciary','the president','','','a','','wassce','2013',83,'Admin','2016-11-27 17:08:39','2020-08-07 21:33:40'),(225,'Membership of a state is known as','citizenship','statism','patriotism','indigenousness','','','a','','wassce','2013',95,'Admin','2016-11-27 17:08:39','2020-07-25 18:35:32'),(226,'The process of learning the political attitudes, values and beliefs that are relevant to the political system is known as','political culture','political socialization','political participation','political science','','','b','','wassce','2013',115,'Admin','2016-11-27 17:08:39','2020-08-13 12:50:49'),(227,'The system of government in which all aspects of life are controlled by the government is','democracy','totalitarianism','capitalism','socialism','','','b','','wassce','2013',96,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:18'),(228,'It is an offense to drive along the high way','without putting on the seat belt','and talk or smile at the same time','and make phone calls at the same time','A and C above','','','d','','wassce','2013',88,'Admin','2016-11-27 17:08:43','2020-07-25 18:35:32'),(229,'The individual rights would be better protected if enshrined in the ..................','Courts','Constitutions','Bible and Quran','National Newspapers','','','b','','wassce','2013',81,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:20'),(230,'What is the minimum age for voters in Nigeria','15','20','18','50','','','c','','wassce','2013',99,'Admin','2016-11-27 17:08:43','2020-08-13 13:01:09'),(231,'Which of these characteristics of the civil service ensure continuity of government?','Neutrality','Permanence','Bureaucracy','Loyalty','','','a','','wassce','2013',107,'Admin','2016-11-27 17:08:43','2020-08-13 13:01:09'),(232,'Public corporation are owned by the','government','banks','private individuals','foreigners','','','a','','wassce','2013',101,'Admin','2016-11-27 17:08:43','2020-08-13 13:01:09'),(233,'The principle of equality before the law is the same as','social equality','social injustices','checks and balances','democratic justices','','','a','','wassce','2013',87,'Admin','2016-11-27 17:08:43','2020-08-13 13:01:09'),(234,'The organ of government which are normally fused in a military regime are the','judiciary and legislative','civil service and executive','legislative and executive','legislative and judiciary','','','c','','wassce','2013',92,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:24'),(235,'The illegal sales and transportation of human beings for economic and some other selfish purpose is termed','Slave Trade','Survival of the Fittest','Gross Human Right Abuse','Human Trafficking','','','d','','wassce','2013',108,'Admin','2016-11-27 17:08:43','2020-08-13 12:50:49'),(236,'The lack of interest in politics and political activities by the citizens of a country is known as','political disinterestedness','political culture','political disintegration','political apathy','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:26'),(237,'Popular participation refers to','Political Apathy','The active involvement of citizens in the social political activities of a country','The rule of the party with the largest number of supporters','The rule of a prominent and popular politician','','','b','','wassce','2013',84,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:27'),(238,'The rule of law simply means','The ruling of a lawful leader','The absence of political instability','Supremacy of the law','The ruling of legislators','','','c','','wassce','2013',88,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:28'),(239,'Cultism is ........, and so it should be ........','useful - allowed','cultural - encouraged','dangerous - discouraged','amiable - supported','','','c','','wassce','2013',97,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:29'),(240,'Drug abuse can be curbed by','encouraging the use of enhancement drugs in sports','teaching youths moral and religious principles','encouraging rural urban migration','None of the above','','','b','','wassce','2013',91,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:30'),(241,'A problem commonly faced by most people living with HIV/AIDs is of','Stigmatization','Non availability of drugs','Government insincerity','Lost of appetite','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:31'),(242,'Which of the following type of government is hereditary?','Democracy','Oligarchy','Monarchy','Fascism','','','c','','wassce','2013',85,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:32'),(243,'An organization whose ultimate aim is to gain the control of government and implement its programmes is known as a','Trade Union','Local Government','Political Party','Pressure Group','','','c','','wassce','2013',81,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:33'),(244,'The president belongs to .......... arm of the government','Legislative','Judiciary','Executive','Anti-crime','','','c','','wassce','2013',96,'Admin','2016-11-27 17:08:44','2020-08-13 12:50:49'),(245,'In Nigeria the outbreak of Ebola disease was first observed in the year','2012','2013','1960','2014','','','d','','wassce','2013',87,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:35'),(246,'Juvenile delinquency and cultism are ......... and should be .........','undesirable - encouraged','desirable - discouraged','undesirable - discouraged','desirable - discouraged','','','c','','neco','2013',95,'Admin','2016-11-27 17:44:15','2020-08-13 12:50:49'),(247,'Those who consume fish and vegetable frequently stand the chance of contacting the','HIV/AIDs disease','Ebola disease','Typhoid and yellow fever disease','None of the above','','','d','','neco','2013',88,'Admin','2016-11-27 17:44:16','2020-07-27 15:24:24'),(248,'The primary function of the legislature is the','monitoring the executive','making of laws','voting of bills','appointment of ministers','','','b','','neco','2013',79,'Admin','2016-11-27 17:44:16','2020-08-03 19:26:55'),(249,'Ejiro, the senior brother of Omonigho had fever last week. The doctor prescribed a certain drug for him, He was asked to take one tablet, three times a day for four days. He took the drug as recommend for the first and second day and stopped. Five days later he took one tablet in the morning and one again at night. Omonigho’s action can be said to be a kind of','bad drug administration','drug Abuse','drug trafficking','Human trafficking','','','b','','neco','2013',89,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:39'),(250,'When a constitution is difficult to amend it is said to be','rigid','flexible','written','federal','','','a','','neco','2013',81,'Admin','2016-11-27 17:44:16','2020-07-25 18:35:32'),(251,'If Omonigho had taken the tablet one three times a day for six days his action constitutes a kind of','good drug administration','drug abuse','drug trafficking','none of the abuse','','','b','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-07-25 18:35:32'),(252,'Ejiro, who is not sick decide to take the same drug for the same duration as recommended for Omonigho by the doctor.Ejiro’s action can be described as a form of','preventive measure','drug abuse','drug trafficking','Self help activity','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:16','2020-08-13 13:01:09'),(253,'As Mr Umukoro got to Oghara junction, near Sapele, he packed the bus and bought some roasted monkey bush meat. Some of the passengers in the bus followed suit, that day was a good Friday. On motion Mr Umukoro, the driver and some of the passengers were doing justice to the monkey bush meat. No sooner had they started than they were stopped and Mr Umukoro was fined by men of the FRSC. If the fine was proper which of the reasons bellow could be responsible for it','some of the passengers ate the bush meat while the bus was on motion','Mr Umukoro, the driver was driving and eating at the same time','They were not supposed to eat monkey bush meat because they can contact the Ebola virus from it.','They were not expected to eat and any kind of meat on a good Friday','','','b','','neco','2013',92,'Admin','2016-11-27 17:44:16','2020-08-13 12:50:49'),(254,'The Ebola virus sneaked into Nigeria through','The Liberian born American, Mr Patrick Sawyer','The Ghanaian born American, Mr Patrick Sayer','Members of the Boko Haram','Monkeys and bats','','','a','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:43'),(255,'As a citizen you can be deprived of your Fundamental Human Rights during','Emergency Rule','Election period','National day celebration','National public holidays','','','a','','neco','2013',87,'Admin','2016-11-27 17:44:16','2020-08-11 09:19:38'),(256,'Malaria fever can be transmitted through','hand shaking','eating of unbalanced diet','mosquito bite','eating of bush meat such as bat and monkey','','','c','','neco','2013',90,'Admin','2016-11-27 17:44:16','2020-08-13 13:00:53'),(257,'Plenty of money in the society, not backed by commensurate productive activities can lead to','deflation','inflation','National developmental','cashless society','','','b','','neco','2013',97,'Admin','2016-11-27 17:44:16','2020-08-13 13:00:57'),(258,'In the year 2014, the Nigerian President Good luck Ebelle Jonathan  urged Nigerians to .......... the rumors  that drinking and bathing with salt water prevents or cures Ebola virus','ignore','accept','welcome','embrace','','','a','','neco','2013',99,'Admin','2016-11-27 17:44:16','2020-08-13 13:00:57'),(259,'The primary duty of the army is to','execute the law','interpret the law','overthrow the government when there is anarchy','defend the country against external aggression','','','d','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-08-13 13:01:09'),(260,'The first known outbreak of Ebola was in ................','2014, in Sierra Leone','1976, in a remote village near the Ebola River in Congo','2014, in port Harcourt, Nigeria','Enugu, during the Nigeria - Biafra war','','','b','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-27 15:24:24'),(261,'On a particular day in 2014, the National flag was flown half mask. This act symbolizes','National tailors day','National mourning','Children’s day','Golden jubilee celebration','','','b','','neco','2013',105,'Admin','2016-11-27 17:44:16','2020-08-03 19:26:55'),(262,'Vehicles are expected to continue with their journey when the traffic light shows ...............','Red','Blue','Yellow','Green','','','d','','neco','2013',99,'Admin','2016-11-27 17:44:16','2020-08-11 09:19:38'),(263,'In which of the following system is survival of the fittest mostly practiced','Communist system','Capitalist system','Feudalist','Totalistic system','','','b','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:52'),(264,'For now the Ebola disease has','no known cure','several known cures','cannot kill its action','no physically observable symptoms','','','a','','neco','2013',87,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:57'),(265,'Some years ago a popular Governor in one of the states in Nigeria was asked to mention some mineral \tresources from his state. He made mention of “Fanta, Pepsi, Coca cola. The governor is','right','wrong','illiterate','unpatriotic','','','b','','neco','2013',85,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:57'),(266,'If you were to be in the Governor’s shoes which of the following would you have chosen?','Miranda and seven up','coca cola and Fanta','petroleum','stock, bonds and cash','','','c','','neco','2013',94,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:53'),(267,'The right practice of democracy can','ensure equity, justice and far play','discourage political education and awareness’','political unrest','lawlessness','','','a','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:02'),(268,'Political Apathy can lead to','very fast pace of development','the emergence of sound democratic government','wrong set of people coming into power','development of sound political culture','','','c','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:03'),(269,'Human traffickers usually engage their victims .........','in educative programs','in forced labour','in skill acquisition activities','in recreational activities','','','b','','neco','2013',71,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:04'),(270,'During a particular voting exercise if majority of the \tpeople refuse to vote, this can be described as','political stubbornness','political apathy','political awareness','political socialization','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:17','2020-08-13 13:01:09'),(271,'Mr Dickson’s little son, clement was sent away from school because he has not paid his school fees of \tN=11,000. That same day as Mr Dickson boarded a Danfo bus he noticed that the purse of a fellow passenger dropped on the floor of the bus. Mr Dickson tactically picked up the purse, opened it and saw a handsome sum of N=100,000. No body in the bus noticed him, neither did the fellow passenger. As a patriotic and good citizen of Nigeria, what is Mr Dickson expected to do','Pay his tithe (1/10 of the money) to the church take the rest and pray for forgiveness','Draw the attention of the fellow passenger and give the money back to him /her','Use part of the money to pay his son’s fess and keep the rest because opportunity comes but once','Leave the purse on the floor, and mind his business','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:57'),(272,'Public corporations are','meant to make profit','not meant to make profit','not expected to produce','established to gather public opinion','','','b','','neco','2013',98,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:07'),(273,'The attitude of the crowd towards, the sick man was that of ............','indifference','friendliness','hospitality','political apathy','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',104,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:53'),(274,'Which of the following could be a possible reason for the crowds attitude towards the sick man','They were afraid that he might be an unknown soldier','They kept their distance so as not to contact the Ebola virus, in case he has it','They were not used to helping visitors','They kept their distance so as not to contact the HIV/AIDs virus, in case he has it','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','b','','neco','2013',101,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(275,'If the crowd insisted on keeping their distance what appropriate action could they have taken','call the appropriate health department to intervene','left him to his fate','stone him to death','desert him','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(276,'If the crowd suspected that he had the Ebola virus and wish to call the Ebola emergency line, which one of the following could they have called?','08023169485','0803361424','08023361936','08027063614','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',90,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:10'),(277,'Any forms of restricted franchise is a violation of the principle of','political equality','sovereignty','legality','constitutionalism','','','a','','neco','2013',92,'Admin','2016-11-27 17:44:17','2020-08-07 21:33:40'),(278,'Which of the following is not the civic obligation of a citizen','payment of taxes','freedom of conscience and speech','voting during elections','obedience to law','','','b','','neco','2013',97,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:12'),(279,'A sovereign state is one','whose citizens are free to evade responsibility','whose governments decisions are made independent of foreign interference','which has a president and a prime minister','where its citizens can speak without fear or favour','','','b','','neco','2013',99,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:13'),(280,'Jamiu and Onome were among those standing inside a BRT bus in Lagos. Onome mistakenly stepped on Jamiu and Jamiu gave Onome a very dirty slap. As a law a biding citizen of the country which of the following reactions is expected of Onome','Turn the other chick for another slap','Slap Jamiu back and prepare for any fight that might ensure','Let Jamiu know that he, Onome stepped on him inadvertently, but pardon him to avoid escalating the matter','Push Jamiu down from the moving bus','','','c','','neco','2013',86,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:53'),(281,'Juvenile delinquency refers to','active youths participation in sports','wrong doings by the youths','Refusal to worship God by the youths','Urban Rural migration by the youth','','','b','','neco','2013',88,'Admin','2016-11-27 17:44:17','2020-08-03 19:26:55'),(282,'Psychopathy is a form of ................ behaviour','Normal','abnormal','desired','valued','','','b','','neco','2013',85,'Admin','2016-11-27 17:44:17','2020-08-12 16:40:22'),(283,'Consumers of ......... especially ........... and ..............stand the a great risk of contacting the Ebola disease','fish, tilapia, titus','bush meat, monkey, bat','meat, cow, dog','vegetable, water leaf, bitter leaf','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:17'),(284,'Government is the machinery established to manage the affairs of','the state','the civil service','peasants and students','strangers','','','a','','neco','2013',102,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:18'),(285,'The judicial organs of government is the body which','makes the law','implements the law','interpreters the law','rewards lawmakers','','','c','','neco','2013',82,'Admin','2016-11-27 17:44:17','2020-08-03 19:26:55'),(286,'The Ebola disease is usually acquired when a person comes in contact with','the blood or bodily fluids of an infested organism','anybody whose name is Bola','any animal','snake fish','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:20'),(287,'The prime minister is vested with the powers of the executive in ........... system of government','a parliamentary','a presidential','a monarchical','unitary','','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:27'),(288,'Through which of these can citizenship status be acquired','birth, naturalization, honorary and registration','birth, colonization and integration','referendum, incorporation and acceptance','convention registration and colonization','','','a','','neco','2013',100,'Admin','2016-11-27 17:44:17','2020-08-11 09:19:38'),(289,'That which people enjoy primarily because they are human beings are called ...............','Human Obligation','Constitutional Right','Human Right','Democratic Right','','','c','','neco','2013',94,'Admin','2016-11-27 17:44:18','2020-08-11 09:19:38'),(290,'Which of these categories of people stand the greatest risk of contacting the Ebola virus .........','Lecturers and students in the school','Health workers and their family members','Hunters and their family members','b and c above','','','d','','neco','2013',79,'Admin','2016-11-27 17:44:18','2020-08-13 13:00:57'),(291,'It is often said that public servants cannot be held responsible for their actions. This principle denotes .................','anonymity','civic irresponsibility','accountability','neutrality','','','a','','neco','2013',85,'Admin','2016-11-27 17:44:18','2020-08-13 12:50:49'),(292,'Free, fair and credible elections are attributes of .......','undemocratic government','democratic government','military regime','monarchical governance','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:52'),(293,'The followings are symptoms of Ebola excepts','sudden fever and vomiting','headaches and diarrhea','muscle pains','frequent hunger and increase thirst for water','','','d','','neco','2013',106,'Admin','2016-11-27 17:44:18','2020-07-25 18:35:32'),(294,'Public service belongs to ................','the legislative arm of government','the judiciary arm of government','senate arm of government','the executive arm of government','','','d','','neco','2013',99,'Admin','2016-11-27 17:44:18','2020-08-13 13:01:09'),(295,'Human traffickers usually force their victims to engage in','rewarding exercise','religious activities','forced labour','useful trade','','','c','','wassce','2011',107,'Admin','2016-12-12 19:40:24','2020-08-13 13:00:53'),(296,'Public servants in Nigeria are expected to be .............','involved in politics','non-partisan','ambitious politically','partial','','','b','','wassce','2011',97,'Admin','2016-12-12 19:40:24','2020-08-13 13:00:53'),(297,'HIV and Ebola can be contacted through contact with','Non infected person','contaminated medical equipment such as needles and syringes','Very sick person','Healthy reptiles','','','b','','wassce','2011',117,'Admin','2016-12-12 19:40:24','2020-08-12 16:40:23'),(298,'Which of the following is not a preventive measure against the acquisition of the Ebola disease...........','Do not touch an infected person or their body fluids including blood, vomit, urine, saliva','Wash your hands regularly with soap and water and apply sanitizers frequently','Beware of hand shake and go for medical checkup as soon as possible when sick','Do not bath with medicated soap','','','d','','wassce','2011',91,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:09'),(299,'Nigeria celebrated her centenary anniversary in the ......','1954','1960','1963','2014','','','d','','wassce','2011',101,'Admin','2016-12-12 19:40:24','2020-08-13 13:01:09'),(300,'Which of the following are Ebola Emergency lines','08023169484 or 08033086660','08023361936 or 08034623521','08023164216 or 08033065936','08055281400 or 08023361936','','','a','','wassce','2011',107,'Admin','2016-12-12 19:40:24','2020-07-27 15:24:24'),(301,'An individual with feverish condition who has taken Panadol is advised to see the ............ if the feverish condition persists after .......... days','father, four','pastor, three','doctor, three','doctor, ten','','','c','','wassce','2011',105,'Admin','2016-12-12 19:40:24','2020-08-12 16:40:22'),(302,'Which of these is NOT undesirable in the society','cultism','terrorism','patriotism','vandalism','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:25','2020-07-25 14:57:28'),(303,'As at 2014 Nigeria has .......... states','47','37','60','57','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:14'),(304,'The Boko Haram insurgency started around','2009','2014','1960','1963','','','a','','wassce','2011',98,'Admin','2016-12-12 19:40:25','2020-08-11 09:19:38'),(305,'A sense of right and wrong guiding a person’s action is known as','attitude','conscience','action','manner','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:25','2020-08-12 16:40:22'),(306,'Which of the following is a bad habit capable of leading to future psychological and physiological ill health','self Actualization','Self Meditation','Self Medication','Self Appraisal','','','c','','wassce','2011',94,'Admin','2016-12-12 19:40:25','2020-08-12 16:40:22'),(307,'Civic Education is also known as ....................','Organizational Structure','Citizenship Education','Customers Opinion','Government Policy','','','b','','wassce','2011',107,'Admin','2016-12-12 19:40:25','2020-08-13 13:00:53'),(308,'The number of Girls abducted by members of Boko Haram at Chibok in 2014 is roughly','200','219','419','180','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-08-13 13:01:09'),(309,'The Ebola virus can be prevented by','washing our hands regularly and applying sanitizer','washing our head always','taking drugs regularly','eating balanced diet','','','a','','wassce','2011',96,'Admin','2016-12-12 19:40:25','2020-08-13 13:01:09'),(310,'If six political parties contest for an election (A, B, C, D, E, F), what is the probability that party C will wine the election','1/3','1/4','1/6','1/2','','','c','','wassce','2011',94,'Admin','2016-12-12 19:40:25','2020-08-12 16:40:23'),(311,'Another word for abduction is ...........................','to steal','to adopt','to kidnap','to kill','','','c','','wassce','2011',100,'Admin','2016-12-12 19:40:25','2020-07-27 15:24:24'),(312,'In Lagos state and some other states in Nigeria, motorcycle (okada) riders are expected to wear ............ while on motion','Boot','Hand glove','Crash helmet','Black coloured shirt','','','c','','wassce','2011',76,'Admin','2016-12-12 19:40:25','2020-08-13 13:00:57'),(313,'In Lagos state, the BRT lane is reserved for ....... only','The governor','Soldiers','Commercial buses','BRT buses','','','d','','wassce','2011',98,'Admin','2016-12-12 19:40:25','2020-08-12 16:40:23'),(314,'Mondays and Thursday are days meant for in between environmental sanitation exercise in ........... and .......... states respectively','Lagos and Edo','Edo and Lagos','Abuja and Lagos','Delta and Lagos','','','b','','wassce','2011',103,'Admin','2016-12-12 19:40:25','2020-08-13 12:50:49'),(315,'One way for Nigerians to maintain steady good health is by','taking malaria medicine everyday','bathing with salt water and eating bitter kola always','taking balance diet and engaging in regular physical exercise','taking alcohol and cigarettes regularly','','','c','','wassce','2011',86,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:29'),(316,'Which of the following is the cleanest source of water in Nigeria','pond water','river water','rain water','lagoon water','','','c','','wassce','2011',98,'Admin','2016-12-12 19:40:25','2020-08-13 13:01:09'),(317,'Which of these tax below is paid by nearly everybody in Nigeria','Direct tax','Excise tax','Proportional tax','Regressive','','','b','','wassce','2011',103,'Admin','2016-12-12 19:40:25','2020-08-13 13:00:57'),(318,'Which of the following was a former military head of state in Nigeria','MKO Abiola','Goodluck Jonathan','General Idiagbon','General Babagida','','','d','','wassce','2011',97,'Admin','2016-12-12 19:40:25','2020-08-13 13:00:53'),(319,'The three larges and most influential ethnic groups in Nigeria are','Yoruba, Edo and Hausa','Igbo, Iteskiri and Hausa','Hausa, Igbo and Yoruba','Fulani, Yoruba and Efik','','','c','','wassce','2011',107,'Admin','2016-12-12 19:40:25','2020-08-11 09:19:38'),(320,'The former National anthem begins with.......................','Nigeria We Hail Thee','Arise O Compatriots','I pledge to Nigeria my Country','So help me God','','','a','','wassce','2011',104,'Admin','2016-12-12 19:40:25','2020-08-13 12:50:49'),(321,'NUC and NBA stands for ......... and ......... respectively','National University Commission and Nigeria Bar Association','Nigeria Bar Association and National University Commission','National Union Congress and Nigeria Basketball Authority','National Utilities Commission and Nigeria Bar Association','','','a','','wassce','2011',88,'Admin','2016-12-12 19:40:26','2020-08-07 21:33:40'),(322,'General Murtala Mohammed was assassinated on his way to work in ..............','February 13, 1976','June 12, 1993','October 1, 1960','June 8, 1998','','','a','','wassce','2011',104,'Admin','2016-12-12 19:40:26','2020-08-13 12:50:49'),(323,'Naira and Kobo was introduced in Nigeria in ..............','2nd July,1963','1st January 1972','June 12, 1993','March13, 1995','','','b','','wassce','2011',97,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:37'),(324,'In the General election of June 12 1993, the two main candidates that contested for the post of presidency were ......','MKO Abiola and Olusegun Obasanjo','MKO Abiola and Tofa','Atiku and Olusegun Obasanjo','Yaradua and Goodluck Jonathan','','','b','','wassce','2011',92,'Admin','2016-12-12 19:40:26','2020-08-13 13:00:53'),(325,'A committee of PDP members is made up of 9 Hausas, 8 Igbo and 7 Yorubas. If the president wishes to choose just one person to be his special adviser, find the probability that the person chosen is neither Hausa nor Yoruba','7/24','2/3','3/8','1/3','','','d','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-08-13 13:01:09'),(326,'Driving, especially along the highway requires serious  ...........','concentration','meditation','concentration','perambulation','','','c','','wassce','2011',96,'Admin','2016-12-12 19:40:26','2020-08-13 13:01:09'),(327,'A Taxi diver who mistakenly Jams and kills someone is guilty of ............... and he will receive ................ punishment than if it were a case of ........','murder, less, manslaughter','man slaughter, less, murder','manslaughter, more, murder','civil offence, less, murder','','','b','','wassce','2011',94,'Admin','2016-12-12 19:40:26','2020-08-13 13:00:57'),(328,'The full meaning of NYSC is ..............','Now Your Suffering Continues','Nigeria Youths Serving Christ','National Youth Service Corps','Nigerian Youth Service Corps','','','c','','wassce','2011',94,'Admin','2016-12-12 19:40:26','2020-08-11 09:19:38'),(329,'The NYSC was established in the year .................','May 22, 1973','June 15, 1960','May 22, 1963','August 20,1993','','','a','','wassce','2011',97,'Admin','2016-12-12 19:40:26','2020-08-13 13:01:09'),(330,'One of the main objectives of establishing the NYSC is to .................','Enable the youths to have some practical experience \t\t     after schooling','Forster National unity','Engage the young graduates because “Idle mind is the devil’s workshop”','Create employment for the young graduates','','','b','','wassce','2011',86,'Admin','2016-12-12 19:40:26','2020-08-07 21:33:40'),(331,'Those eligible to partake in the scheme are those','Those seeking for admission into the higher institutions','Who have successfully completed their studies from higher institution .eg. college of education, \t\t     polytechnic & university','Who are looking for something to keep them busy','Who are from poor family background','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-27 15:24:24'),(332,'The age limit for the service is ..............','25','35','30','18','','','c','','wassce','2011',92,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:45'),(333,'At the end of the service year each corper will be given ......... as an evidence that he or she has successfully completed the service','NYSC passport','National ID Card','NYSC discharge certificate','Letter of appreciation','','','c','','wassce','2011',106,'Admin','2016-12-12 19:40:26','2020-08-12 16:40:22'),(334,'Which of the following is true','The CD (Community Development) exercise   embarked by corpers is not paid for by the community','Corpers collect extra money for embarking on the C.D','Corpers are not usually given monthly allowances','The aim of the NYSC scheme is to foster disunity   in the country','','','a','','wassce','2011',96,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:47'),(335,'The killing of NYSC members in certain parts of the country  ................','Contradicts the goal of establishing the scheme','Is in line with the aims of establishing the scheme','Is not a serious matter','Enhances national unity','','','a','','wassce','2011',86,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:48'),(336,'Nigeria is a ............. state','Communist','Capitalist','socialist','Feudalist','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:27','2020-08-11 09:19:38'),(337,'Some years to come, when you become the President of Nigeria, which of the options below will you choose \tto eradicate porzverty in the country','carry all the poor people away from Nigeria to another country so when there are no poor people poverty will be gone forever','print plenty Naira Notes and give millions to every Nigeria','Import plenty Agricultural and Manufactured goods','None of the above','','','d','','wassce','2011',95,'Admin','2016-12-12 19:40:27','2020-08-13 13:00:53'),(338,'On the 18th of November 2014 in Yobe, some crowds lynched a suspected suicide bomber. The action of the crowd is .....','right because ‘he who kills by the sword must die by the sword’','wrong because they have unlawfully taken the law into their hands, they should have handed the suicide  bomber over to the police','right because we all have to fights against all forms of terrorism','right so that others will learn lesson from this action','','','b','','wassce','2011',88,'Admin','2016-12-12 19:40:27','2020-08-07 21:33:40'),(339,'In the year 2014 the catholic church in Nigeria suspended the usual hand shaking (as a sign of peace) among its members just after the “Lord’s prayer” The most likely reason for this action is to prevent the \t\tspread of ............, in case a member has it','HIV/AIDs virus','The Ebola virus','Evil and demonic spirit','malaria fever','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:52'),(340,'Decrees are laws made by .............','the parliament','the judiciary','the military','senators','','','c','','wassce','2011',91,'Admin','2016-12-12 19:40:27','2020-08-12 16:40:23'),(341,'The document containing the aims and programs of a political party is called ...........','register','manifesto','memorandum of party','party library','','','b','','wassce','2011',100,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:53'),(342,'The former PHCN is a good example of .................. in Nigeria','civil service','perfect competition','public corporation','private monopoly','','','c','','wassce','2011',107,'Admin','2016-12-12 19:40:27','2020-07-14 13:40:54'),(343,'Orderliness can be defined as','being punctual to work','studying diligently in school','doing things in a proper way','learning the Western way of life','','','c','','wassce','2016',91,'Admin','2016-12-12 19:57:13','2020-08-13 13:00:57'),(344,'The Traffic in Persons Prohibition and Administration Act was passed in Nigeria in','December 2001.','October 2002','August 2003','April 2004.','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:13','2020-08-13 13:01:09'),(345,'The process of enabling someone to perform an action which adds value to his/her life is known as','employment','recruitment','socialization','empowerment','','','d','','wassce','2016',89,'Admin','2016-12-12 19:57:13','2020-08-03 19:26:55'),(346,'Rates are collected in Nigeria by','Federal Inland Revenue Service','State Ministry of Finance','Local Government Councils','Council of Traditional Rulers','','','c','','wassce','2016',93,'Admin','2016-12-12 19:57:13','2020-07-14 13:40:59'),(347,'The Fourth Schedule of the 1999 Constitution of Nigeria outlines the functions of','federal government','local government','national government','state government','','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:00'),(348,'Lack of interest in politics by citizens in the country is referred to as political','ignorance','apathy','participation','socialization','','','b','','wassce','2016',92,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:01'),(349,'Which of the following instruments is not used by a civil society group?','Propaganda','Boycott','Protest','Violence','','','d','','wassce','2016',95,'Admin','2016-12-12 19:57:13','2020-08-11 09:19:38'),(350,'The administrative class in the public service is to','implement policies','formulate policies','veto policies','oversee policies','','','a','','wassce','2016',76,'Admin','2016-12-12 19:57:13','2020-07-25 14:57:28'),(351,'“We the people of the Federal Republic of Nigeria” is usually the opening phrase of the preamble to','coup announcement','government gazettes','constitution','mansard','','','c','','wassce','2016',81,'Admin','2016-12-12 19:57:13','2020-08-07 21:33:40'),(352,'One of the responsibilities of a good citizen is to','possess an international passport','enjoy all amenities provided by government','serve the country when required','develop his potentialities to the fullest','','','c','','wassce','2016',88,'Admin','2016-12-12 19:57:13','2020-08-03 19:26:55'),(353,'Naturalized citizens cannot be denied their legal status as members of a country unless if they','are jailed for one year within seven years of acquiring citizenship','are found guilty to be spies or secret agents for another country','refuse to represent the country in an international sporting event','give adequate information to the host country','','','a','','wassce','2016',83,'Admin','2016-12-12 19:57:13','2020-07-27 15:24:24'),(354,'Citizenship education influences an individual to be','patriotic','educated','complacent','competent','','','a','','wassce','2016',100,'Admin','2016-12-12 19:57:13','2020-08-07 21:33:40'),(355,'Which of the following is not an example of orderliness?','Listening skill','Driving skill','Decorum','Deviance','','','d','','wassce','2016',73,'Admin','2016-12-12 19:57:14','2020-08-13 13:01:09'),(356,'Which of the following statements is not correct?','Valid driver’s license must be obtained before attempting to drive','Flowing garment can be worn on a motorcycle or bicycle','Headlights should be used during unfavourable weather','Drivers must not engage in distractive activities while driving','','','d','','wassce','2016',82,'Admin','2016-12-12 19:57:14','2020-08-13 13:00:57'),(357,'Cultism can best be discouraged through','mentoring of cultists by the rich','provision of jobs for cultists','sensitization on the dangers of cultism','establishment of cultists support groups','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:10'),(358,'Which of the following is a consequence of drug abuse?','Depression','Victimization','Inefficiency','Cowardice','','','a','','wassce','2016',89,'Admin','2016-12-12 19:57:14','2020-08-13 13:00:53'),(359,'The effect of human trafficking on the victims is','illiteracy','affluence','exposure','exploitation','','','d','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:11'),(360,'The general attitude of government and society towards cultism is that of','affection','sympathy','abhorrence','support','','','c','','wassce','2016',94,'Admin','2016-12-12 19:57:14','2020-08-13 12:50:49'),(361,'Drug abuse can be prevented by','fighting drug addicts','poverty reduction','reducing drugs in circulation','legal sanction','','','b','','wassce','2016',94,'Admin','2016-12-12 19:57:14','2020-08-12 16:40:22'),(362,'A major factor responsible for human trafficking is','hunger','illiteracy','greed','joblessness','','','c','','wassce','2016',94,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:14'),(363,'People Living With HIV/AIDS (PLWHA) can be supported by','billing them for antiretroviral therapy','providing drugs for them at subsidized rates','providing special attires for them','providing accommodation for them in designated locations','','','b','','wassce','2016',91,'Admin','2016-12-12 19:57:14','2020-08-13 13:00:53'),(364,'Cult members are particularly hostile to','lecturers','perceived enemies','their group members','all students','','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:14','2020-08-13 13:00:53'),(365,'Drug law enforcement agencies in Nigeria are not empowered to','execute drug suspects','arrest drug barons','prosecute drug traffickers','rehabilitate drug addicts','','','a','','wassce','2016',82,'Admin','2016-12-12 19:57:14','2020-08-12 16:40:23'),(366,'Which of the following is not a means of reducing the incidence of HIV/AIDS in our society?','Education and enlightenment programs','The use of specially designed cutlery by victims','Avoiding pre-marital and extra-marital sex','Upholding the value of chastity','','','b','','wassce','2016',95,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:25'),(367,'Youth empowerment promotes','self-reliance','youthful exuberance','pursuit of higher education','foreign scholarship','','','a','','wassce','2016',90,'Admin','2016-12-12 19:57:14','2020-08-13 13:00:57'),(368,'The Supreme Court of Nigeria helps in law','drafting','application','interpretation','enforcement','','','c','','wassce','2016',82,'Admin','2016-12-12 19:57:15','2020-08-13 12:50:49'),(369,'Democracy thrives most where there is','nonpartisan judiciary','freedom of speech and association','absence of universal suffrage','one-party system','','','b','','wassce','2016',82,'Admin','2016-12-12 19:57:15','2020-08-11 09:19:38'),(370,'Rule of law is limited by the following except','state of emergency','habeas corpus','illiteracy','immunity','','','c','','wassce','2016',87,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:28'),(371,'Preventive measures of HIV/AIDS do not include','abstinence','screening of blood before transfusion','use of barrier method','stigmatization of victims','','','d','','wassce','2016',80,'Admin','2016-12-12 19:57:15','2020-08-13 13:01:09'),(372,'One of reasons leaders fail to protect the interest of their followers is','selfishness','inadequate finance','ignorance','rigid policies','','','a','','wassce','2016',87,'Admin','2016-12-12 19:57:15','2020-07-25 18:35:32'),(373,'Which of the following is not a form of political participation?','Taking part in voters’ registration exercise','Voting during elections','Joining political party','Ballot box stuffing during elections','','','d','','wassce','2016',97,'Admin','2016-12-12 19:57:15','2020-08-13 12:50:49'),(374,'Civil Society groups perform the following roles during general elections except','educating the voters','serving as watchdog','counting votes','stimulating participation','','','c','','wassce','2016',74,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:33'),(375,'Which of the following is not an example of civil society group?','United Action for Democracy','United Nations Organization','Transition Monitoring Group','Amnesty International','','','b','','wassce','2016',88,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:34'),(376,'One of the major complaints against public service is','inefficiency','understaffing','victimization','discrimination','','','a','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:35'),(377,'Which of the following is not a way of improving public service?','Politicization','Refresher courses','The use of Code Conduct Bureau','Reformation','','','a','','wassce','2016',96,'Admin','2016-12-12 19:57:15','2020-08-13 13:00:53'),(378,'Children that are not cared for are mostly prone to','criminal attitudes','terminal diseases','examination failure','forced migration','','','a','','wassce','2016',91,'Admin','2016-12-12 19:57:15','2020-07-14 13:41:38'),(379,'The motherland in the monologue could best be described as','a nation in transition','a morally upgrading country','a socially viable nation','an ethically bankrupt country','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-25 14:57:28'),(380,'In spite of the state of affairs reflected in the above monologue, the citizens can make the country better by being committed to','promoting inter-communal relations','strengthening capacity building','championing moral values','encouraging interpersonal relations','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','c','','wassce','2016',85,'Admin','2016-12-12 19:57:15','2020-08-11 09:19:38'),(381,'Based on the monologue above, the best approach to curb moral decadence in the motherland is by','value re-orientation','introducing war against corruption','legalizing capital punishment','sending corrupt officials on exile','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','a','','wassce','2016',84,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:41'),(382,'The most important contribution of responsible parenthood to national development is that it','increases youthful population','fosters national integration','augments the nation workforce','breeds dependable citizenry','','','c','','wassce','2016',91,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:42'),(383,'Which of the following can not be easily abused?','Cosmetics','Stimulant','Tobacco','Narcotics','','','a','','wassce','2016',80,'Admin','2016-12-12 19:57:16','2020-07-27 15:24:24'),(384,'Dr. Fajir cannot exercise some basic rights because he','was a suspect in a criminal case','was found guilty of a criminal offence','failed to comply with court order','embezzled public fund','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','b','','wassce','2016',130,'Admin','2016-12-12 19:57:16','2020-08-04 05:25:55'),(385,'According to the above story, the open trial of Dr. Fajir and his representation by lawyers of his choice in a court of competent jurisdiction is an indication of','respect for habeas corpus','freedom of expression','respect for human rights','freedom of legal representation','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','c','','wassce','2016',82,'Admin','2016-12-12 19:57:16','2020-07-27 15:24:24'),(386,'Based on the above story, which of the following would Dr.Fajir not be allowed to do while in prison?','Voting during elections','Engaging in hard labour','Participating in prison fellowship','Writing examination','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','a','','wassce','2016',78,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:46'),(387,'The most important place for building good values is the','social welfare centre','workplace','family','media houses','','','c','','wassce','2016',76,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:47'),(388,'Citizen’s compliance with tenets of the Nigerian National Pledge will enable the country to','receive reciprocal assistance','witness value clarification','get international aid','experience development','','','b','','wassce','2016',82,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:48'),(389,'Which of the following statements may be true about the behaviour of the candidates in the diagram?','The candidates are doing what is ethical','Candidates involved in malpractice should be banned for life','Their action can also affect innocent candidates','Their misconduct will guarantee a reliable certificate','','','b','','wassce','2015',78,'Admin','2016-12-12 20:15:41','2020-07-25 18:35:32'),(390,'Based on the above diagram, the candidates would not have cheated if','they were well-spaced','there was an invigilator','they were hardworking','there was nobody to copy from','','','c','','wassce','2015',90,'Admin','2016-12-12 20:15:41','2020-08-13 13:00:53'),(391,'In which year did the United Nations General Assembly adopt the Universal Declaration of Human Rights?','1945','1946','1947','1948','','','a','','wassce','2015',81,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:50'),(392,'Two forms of road signs are regulatory and','punitive','informative','persuasive','inhibitive','','','b','','wassce','2015',86,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:52'),(393,'Which of the following factors does not affect interpersonal relationship?','Communication','Withdrawal','Compatibility','Forgiveness','','','b','','wassce','2015',87,'Admin','2016-12-12 20:15:41','2020-08-13 12:50:49'),(394,'The following cadre of students are the main target for campus cult membership except','students from wealthy homes','students from influential parents','bold and morally sound students','wayward and fun-loving students','','','c','','wassce','2015',88,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:54'),(395,'The National Agency for Food and Drug Administration and Control (NAFDAC) was established in','1993','1996','1999','2001','','','a','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:55'),(396,'National Agency for the Prohibition of Traffic in Persons (NAPTIP) is an initiative of','Federal Government of Nigeria','United States Agency for International Development','Woman Trafficking and Child Labour Eradication \tFoundation','United Nations Office on Drugs and Crime','','','a','','wassce','2015',78,'Admin','2016-12-12 20:15:42','2020-08-13 13:01:09'),(397,'World AIDS day is observed on','20th May','30th July','27th August','1th December','','','d','','wassce','2015',73,'Admin','2016-12-12 20:15:42','2020-08-13 13:01:09'),(398,'An enabling environment created to help an individual have effective control of his/her situation is known as','reinforcement','empowerment','endowment','enhancement','','','b','','wassce','2015',91,'Admin','2016-12-12 20:15:42','2020-08-11 09:19:38'),(399,'In order to avoid undue interference in the process of governance, there should be','clear cut separation of governmental powers','proper fusion of governmental powers and functions','more roles for traditional rulers in the governmental process','additional responsibility for local government council','','','a','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:59'),(400,'Red-tapism is one the shortcomings of','private enterprise','public service','non-governmental organization','pressure groups','','','b','','wassce','2015',91,'Admin','2016-12-12 20:15:42','2020-07-25 14:57:28'),(401,'An ideology that aims at promoting national consciousness and identity is','nationalism','socialization','civic culture','progressivism','','','a','','wassce','2015',89,'Admin','2016-12-12 20:15:42','2020-08-11 09:19:38'),(402,'Human rights are described as inviolable mainly because they are','authoritative declaration','enforceable everywhere','not to be unnecessarily taken away','legal declaration instruments','','','d','','wassce','2015',64,'Admin','2016-12-12 20:15:42','2020-08-13 13:00:57'),(403,'Law and order can best be maintained in Nigeria through the','prohibition of public protest','enforcement of rules and regulations','use of divide and rule policy','promotion of indigenization policy','','','b','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-08-13 13:00:57'),(404,'A responsible parent is someone who','cares and provides for the children','indulges the children because of love','works in order to receive salary','employs house-helps to take care of the children','','','a','','wassce','2015',80,'Admin','2016-12-12 20:15:42','2020-08-11 09:19:38'),(405,'A major way of promoting responsible parenthood is through','sex education','sound education','population control measures','tax reduction measures','','','a','','wassce','2015',95,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:05'),(406,'Which of the following is not included in the stages of interpersonal relationship?','Rejuvenation','Deterioration','Termination','Continuation','','','c','','wassce','2015',82,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:06'),(407,'Cultism in tertiary institutions in Nigeria was originally introduced to','perpetuate the use of local gin and alcohol','harass opponents of university administrators','fight colonialism and oppressive rules','promote inter-communal marriages.','','','c','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-08-13 13:00:53'),(408,'Which of the following is not a function of the National Drug Law Enforcement Agency (NDLEA)?','Applying and implementing all drug laws','Arresting, investigating and prosecuting drug traffickers','Undertaking the registration of companies dealing \tin drugs','Carrying out enlightenment campaigns on drug trafficking','','','c','','wassce','2015',73,'Admin','2016-12-12 20:15:42','2020-07-25 18:35:32'),(409,'An individual who finds it difficult to control in-take of drug is known as drug','baron','traffickers','mogul','addict','','','d','','wassce','2015',77,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:09'),(410,'The NDLEA personnel are not usually found in','international airports','seaports','border crossings','foreign embassies','','','d','','wassce','2015',94,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:10'),(411,'Which of the following statements best describes Human Trafficking?','Recruitment of youths as casual workers','Desperate desire by youths to travel abroad','Buying and selling of humans for selfish purposes','Transportation of gods and service through human portage','','','c','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-08-13 13:01:09'),(412,'From the above write-up what category of Kantoguan youth deserves to be effectively empowered?','Children of the ruling political class','Unemployed youths and school drop-outs','University undergraduates','Youth wing of religious organizations','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','b','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:33'),(413,'The responsibility of empowering the youth rests mostly with','the political class','religious organizations','university administrators','national government','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','d','','wassce','2015',80,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:35'),(414,'Based on the write-up, what immediate measures can those in authority take to empower the youths?','Build more youth orientation camps in the country','Enhance religious and moral education in schools and colleges','Provide entrepreneurial training with adequate fund','Provide free meal for the teeming unemployed youths','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','c','','wassce','2015',85,'Admin','2016-12-12 20:15:43','2020-07-27 15:24:24'),(415,'A very important segment of the society which is distinct from government, business and home is the','civil society','public service','mass media','traditional institution','','','a','','wassce','2015',97,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:36'),(416,'HIV/AIDS is generally described as terminal in nature because it is','preventable','transmittable','avertable','incurable','','','d','','wassce','2015',82,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:37'),(417,'Inter-communal relationship is best described as','the interaction between individuals, groups or organizations with common aspirations','the interaction among individuals and professionals in a social setting','loyalty to community leaders so as to achieve rapid communal development','respect for collective national symbols in order to foster nationalistic feeling','','','a','','wassce','2015',87,'Admin','2016-12-12 20:15:43','2020-08-13 13:01:09'),(418,'A situation whereby someone is obliged to inform a superior about his actions and decisions for the purpose of control is','probity','self-discipline','accountability','fair play','','','c','','wassce','2015',93,'Admin','2016-12-12 20:15:43','2020-08-13 12:50:49'),(419,'The above quotation summarizes the','Universal Declaration of Human Rights.','African Charter on Human Rights.','Geneva Conventions and Protocols.','United Nations Organization Charter.','“All human beings are born free and equal in dignity and rights. They are endowed with reason and \t\tconscience and should act towards one another in a spirit of brotherhood”.','','a','','wassce','2015',78,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:40'),(420,'Effective and responsible parenthood is primarily','a national duty','a military duty','a political duty','an economic duty','','','a','','wassce','2015',74,'Admin','2016-12-12 20:15:43','2020-08-07 21:33:40'),(421,'Association and affiliation between two or more people is called','multilateral relations','bilateral relations','inter-communal relations','interpersonal relations','','','d','','wassce','2015',86,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:43'),(422,'A bill passed by the National Assembly requires the assent of the president before it becomes law. The law can be declared null and void by the court of law. The process above emphasizes the','supremacy of judiciary over other arms of government','relationship among the arms of government','importance of law makers in a democracy','fundamentals of the rule of law.','','','d','','wassce','2015',76,'Admin','2016-12-12 20:15:43','2020-08-07 21:33:40'),(423,'The idea that “Law should be impartial with the people who break it” implies','principle of fair hearing','right to legal representation','equality before the law','prerogative writ of habeas corpus','','','c','','wassce','2015',105,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:45'),(424,'The foreign policy objective of Nigeria as enshrined in the 1999 Constitution exclude the promotion of','national interest','African integration','support for donor agencies','just world economic order','','','c','','wassce','2015',101,'Admin','2016-12-12 20:15:43','2020-08-13 13:01:09'),(425,'Democracy can promote national development if there is','good governance','promotion of culture','immunity for leaders','registration of parties','','','a','','wassce','2015',81,'Admin','2016-12-12 20:15:44','2020-08-13 13:01:09'),(426,'A major civil society group which campaigned against military rule prior to the advent of the Fourth Republic in Nigeria is the','Campaign for Democracy','Save Nigeria Group','Civil Liberties Organization','National Democratic Coalition','','','a','','wassce','2015',75,'Admin','2016-12-12 20:15:44','2020-08-03 19:26:55'),(427,'Which of the following function is not performed by the Public Service Commission?','Evaluating the performance of ministries and departments','Advising government on technical matters','Preparing the annual budget and assenting to it','Organizing enlightenment program and training','','','d','','wassce','2015',107,'Admin','2016-12-12 20:15:44','2020-08-13 12:50:49'),(428,'Which of the following is a major challenge to civil society in Nigeria?','Value disorientation','Diverse political interests','Inadequate funding','Unstable political system','','','a','','wassce','2015',85,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:50'),(429,'Democracy is yet to take firm root in Africa because','it retards African development','African leaders are not experienced enough','most African leaders detest the will of the people','it is an expensive system of government','','','c','','wassce','2015',83,'Admin','2016-12-12 20:15:44','2020-08-13 13:01:09'),(430,'Nationalism ensures the following except','national consciousness','secession in a country','national integration','unity in a country','','','b','','wassce','2015',91,'Admin','2016-12-12 20:15:44','2020-08-13 12:50:49'),(431,'Justice demands that people should always do what is','persistently convenient','consistently right','individually acceptable','courageously necessary','','','b','','wassce','2015',77,'Admin','2016-12-12 20:15:44','2020-08-13 13:00:57'),(432,'Orderliness in the society is good mainly because it','discourages poverty','promotes peace and stability','guarantees employment for youths','ensures maximum rewards from leaders','','','b','','wassce','2015',84,'Admin','2016-12-12 20:15:44','2020-08-13 12:50:49'),(433,'Which of the following is necessary for the effective application of the rule of law?','Political will to ensure that laws are obeyed','Employment opportunities for all citizens','The fusion of the three arms of government','Extension of the retirement age of judges','','','a','','wassce','2015',83,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:56'),(434,'Ade’s action as shown in the dialogue is a demonstration of political','wisdom','apathy','lawlessness','participation','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','b','','wassce','2015',87,'Admin','2016-12-12 20:15:44','2020-08-13 13:00:53'),(435,'It could be inferred from the dialogue that failure to vote in an election would','guarantee citizens’ rights','encourage the emergence of responsive government','promote accountability in governance','perpetuate irresponsible leadership','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','d','','wassce','2015',93,'Admin','2016-12-12 20:15:44','2020-07-27 15:24:24'),(436,'From the above dialogue, political leaders can encourage citizens to perform their civic duties by','fulfilling their electoral promises','travelling overseas to seek for foreign investors','engaging in religious activities','visiting all the local governments in the country','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','a','','wassce','2015',90,'Admin','2016-12-12 20:15:44','2020-07-14 02:24:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `commerce` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=888 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `commerce` VALUES (1,'Ships that sail across the ocean and operate on scheduled time are ','ferries ','ocean liners ','tramp steamers  ','coastal liner','','','b','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(2,'Non-insurable risks include ','gambling ','damage to property','death','marine ','','','a','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-08-02 10:55:52'),(3,'The program that makes up the operating system in a computer is         ','micro program','system flowchart','system software','syntax','','','c','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(4,'When an organization studies a market that is underserved by others and creates a product or service for the segment, it is engaged in','market integration  ','market positioning','market orchestration','product differentiation','','','c','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(5,'Coverage against unexpected events is called',' insurance ','assurance   ','warranty','reinsurance','','','a','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(6,'An insured risk which occurs accidentally as a result of defects in a ship is','a voyage policy    ','a total loss','an emergency     ','a particular average','','','d','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(7,'Communication enhances business activities by','facilitating interaction between producers and consumers ','facilitating interaction among media houses','ensuring the movement of goods from the producer to the consumer','keeping the goods safe until they are needed','','','a','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(8,'In business, the computer is very important  especially in  ','financial management','marketing management   ','educational  management    ','information management','','','d','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(9,'What is the most important use of promotion in marketing?     ','Persuasion   ','Conviction','Information ','Education','','','c','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(10,'The current highest decision-making body on  privatization and commercialization of public enterprises in Nigeria is the','National Council on Privatization','Securities and Exchange Commission','Nigeria Investment Promotion Commission','Bureau of Public Enterprises','','','d','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(11,'The members of the Niger Basin Commission  include  ','Guinea, Ghana and Niger Republic','Burkina Faso, Guinea and Nigeria ','The Gambia, Benin Republic and Chad Republic',' Nigeria, The Gambia and Cameroon','','','d','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(12,'Business environment refers to all elements that are  ','outside an organization but relevant to its operations ','inside an organization but irrelevant to its operations   ','internal to an organization and relevant to its operations','external to an organization but indirectly related to its  operations','','','d','','utme','2004',325,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(13,'Consumer rights include the right to   ','credit','free samples of a product  ','redress','a share of profits','','','c','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(14,'One important requirement for the membership of the ECOWAS is ','integrity ','independence ','landmass   ','population','','','b','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(15,'In Nigeria, the body that ensures that its members operate according to their professional ethics is the   ','SON  ','NPF   ','MAN ','NAFDAC','','','a','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(16,'A transporter who had to sell some perishable goods without the prior authority of the owner  becomes an agent by   ','conduct ','necessity','ratification  ','estoppel','','','b','','utme','2004',321,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(17,'Poor sewage disposal, oil spill and indiscriminate refuse dumping all ','lead to  land pollution','water pollution   ','land and water pollution','air and water pollution','','','d','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(18,'One of the advantages of commercialization is that it','encourages entrepreneurship','increases the salaries of workers','motivates government to establish more  businesses   ','gives workers on-the-job training','','','a','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(19,'A common element in all contracts is    ','offer','  consideration   ','acceptance ','agreement','','','d','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(20,'Sources of finance to a business include personal  savings, shares, debentures and ','loans from IMF   ','bank overdrafts ','central bank loans','money from political parties','','','b','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(21,'Charges for loans paid by commercial banks to the Central Bank of Nigeria are called   ','bank rates   ','credit charges   ','interest rates',' bank charges','','','a','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(22,'In the primary market, new shares are issued  through  ','personal selling, publicity and advertising  ','a prospectus, an offer for sale and a bill of exchange   ','advertising, a prospectus and a bill of exchange','a prospectus, an offer for sale and placing','','','b','','utme','2004',346,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(23,'The instruments of credit include ','billboards and postal stamps','payment vouchers and statement of account','bills of exchange and promissory notes','bills of exchange and salary vouchers','','','c','','utme','2004',335,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:38'),(24,'The shares of a company listed on the stock exchange for sale are referred to as','registered shares  ','deferred shares ','issued shares       ','quoted shares','','','d','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(25,'What is the role of the capital market in the privatization exercise in Nigeria?    ','Selling the shares and stocks of the companies to be  privatized ','Encouraging private companies to  participate in the exercise ','Negotiating with individuals who want to buy public companies','Advertising for government','','','a','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(26,'In international trade, documentary credit is also known as   ','credit note   ','letters of credit','bankers\\' draft       ','letter of hypothecation','','','b','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(27,'A specialized institution in Nigeria that deals in  capital investments in the form of stocks, shares, bonds and debentures is the ','Securities and Exchange Commission ','commodity market','Nigerian Stock Exchange ','Central Bank of Nigeria','','','a','','utme','2004',325,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(28,'A group of assets which a business acquires with the intention of reselling them are referred to as','  current assets    ','investment assets','fixed assets    ','intangible assets','','','b','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(29,'Authorized share capital is also known as','called-up share capital    ','paid-up share capital ','registered share capital  ','issued share capital','','','c','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(30,'An action taken by a company outside its object clause is regarded as ','ultra vires    ','a trespass   ','uberrima fides    ','caveat emptor','','','a','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(31,'The strategy adopted by a firm that ceases to operate at one or more locations because of inactivity is  ','rejuvenation ','focus','diversification     ','consolidation','','','c','','utme','2004',337,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(32,'A written partnership contract is known as','an invoice ',' a deed      ','a prospectus','a proposal','','','b','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(33,'The merger of a textile mill, a cement company and a tannery is referred to as ','  conglomerate merger ',' horizontal merger ','lateral merger',' vertical merger','','','d','','utme','2004',314,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(34,'As the branches indicate, iv is','commerce','exchange ','finance      ','construction','','','d','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(35,'What does v represent?','Aids to trade','Advertising  ','Manufacturing  ','Industry','','','a','','utme','2004',337,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(36,'The most important function of commerce is','helping people to improve their profits','facilitating exchanges among individuals and firms ','assisting trade through banking and insurance   ','enhancing business relationships','','','b','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(37,'The acronym PLC is used to identify a ','company limited by shares ','private company limited by shares','public company limited by shares','company limited by guarantee','','','c','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(38,'Commerce includes all the occupations concerned with ','sales  ','production','marketing    ','distribution ','','','d','','utme','2004',321,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(39,'Factors of production can be described as the','resources required for the provision of goods and services   ','skills involved in deciding and directing the flow of goods  ','monetary tools employed by government to ensure stable production      ','elements involved in the process of formulating policies\\' on production ','','','a','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(40,'Fluctuations in the supply of goods may be eliminated if the distribution system maintains','modern technology ','a team of retailers','warehouse services  ','sufficient middlemen','','','a','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(41,'Loan schemes by thrift societies are ','mortgage schemes   ','conventional schemes   ','mutual schemes     ','unconventional schemes ','','','c','','utme','2004',339,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(42,'An internal demand for goods to be purchased or drawn from stock is','a quotation','a requisition   ','a tender  ','an order','','','b','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(43,'The term 4 net 7 on an invoice means that','4% surcharge will be made unless payment is made within seven days   ','4% discount will be allowed on the price charged only if the goods are bought within seven days  ','4% discount will be allowed on the price charged if payment is made after seven days ','4% discount will be allowed on the price charged if payment is made within even days.','','','d','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(44,'An order sent by an importer to an overseas supplier stating the details of goods required is known as   ','A export invoice    ','ship\\'s manifest','an indent    ','bill of lading','','','c','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(45,'Organizing trade fairs in Nigeria is the responsibility of   ','National Directorate of Employment  ','Federal Ministry of Commerce','trade associations   ','chambers of commerce ','','','d','','utme','2004',335,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(46,'International fade takes place as a result of','uniformity in costs of production','inequitable distribution of natural resources','parity in the level of industrialization','similarities in climatic conditions.','','','b','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(47,'The use of vending machines in retailing is hindered in a developing economy owing to','poor distribution network   ','low level of education    ','ineffective communication system','lack of steady power supply.','','','d','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(48,'Manufactures’ Association  of Nigeria contributes to development by advising the government on','industrial policy and harmony   ','budget and control ','budget and industrial policy','environmental protection policy ','','','a','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(49,'Discounts offered by firms to middlemen for bulk purchases are ','A   trade discounts','sales  bonanza    ','cash discounts ','seasonal','','','a','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(50,'Goods are  of merchantable  quality if they','conform to description  ','are of equal weight','are of the same quality ','conform to buyers\\' purpose','','','a','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(51,'A floating policy is an example of','marine insurance    ','actuaries insurance ','motor insurance    ','fire insurance.','','','b','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:42'),(52,'The most important benefit of insurance is that it Provides ','control over activities','the insured with a right to premium','the insured with a right to full compensation','protection against risks.','','','d','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(53,'Which part of the computer system does the keyboard device belong to? ','Output unit ',' Logic unit ','Input unit ','Control unit.','','','c','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(54,'The Lake Chad Basin Commission was formed in ','1974','1984','1954','1964','','','d','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(55,'A major disadvantage of the privatisation policy is that ','the economy would be private-sector-led ','citizens would benefit less from government','more money would be brought into circulation','government would loss control of the economy.','','','d','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(56,'The most important right of the employee in discharging his duties to the employer is the right to ','regular emoluments  ','job security ','working facilities  ','annual leave. ','','','b','','utme','2005',133,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(57,'The most dangerous pollution is','water ','noise pollution','soil pollution   ','air pollution.','','','d','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-08-13 06:15:21'),(58,'The primary objective of consumer protection laws is to ensure that consumers derive maximum satisfaction from goods and services','consumers buy goods and services at cheap rates   ','manufacturers of goods and service providers overcome ','Internal competition','manufacturers of goods and service providers get optimum profit','','','a','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(59,'The compensation the insured gets depends heavily on the ','economic situation','premium paid ','risk suffered','insurer\\'s buoyancy','','','b','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(60,'The computer that functions by taking discrete numbers and  performing mathematical calculations is called ','mainframe ','digital ','hybride','analogue.','','','c','','utme','2005',150,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(61,'Commercialization of government corporations brings about an increase in the level of','money supply in the economy','distrust among business operators','competition among business operators','social responsibility','','','c','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(62,'The difference between personal selling and sales promotion is that while sales promotion includes free gifts and samples, personal selling involves','distributing instructional posters','face-to-face communication with customers','premium programming for customers','publishing promotional booklets.','','','b','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:53'),(63,'The type of communication from a superior to a subordinate in an organization is referred to as','horizontal communication','lateral communication','downward communication','upward communication.','','','c','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:54'),(64,'A step-by-step method of carrying out functions in  an office is known as','procedure','organizing',' policy ','programme.','','','a','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:55'),(65,'The best means of sending unwritten messages simultaneously   to   many   branches   of  an organization within a country is the','television',' telephone   ','telegraph   ','radio.','','','c','','utme','2005',175,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(66,'The   media    used   for   inter-departmental communication include.','circulars, advertisement and notice boards','memoranda, circulars and the telephone','memoranda, advertising and face-to-face','memoranda, advertising and the grapevine','','','b','','utme','2005',121,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(67,'An instrument that is traded in the second-tier foreign exchange market is','money order','stock ','travellers\\' cheque  ','debenture.','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-08-02 21:18:26'),(68,'The development of a container and a graphic design for a product is called ','packaging ','promotion','processing  ','production.','','','a','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:59'),(69,'A business firm that is involved in conveying goods or people is known as a ','consignor','commercial firm ','carrier','transporter','','','c','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(70,'The factors essential for tourism are','accessibility, capital, amenities and schools','goods weather, amenities, accessibility and scenery.','amenities, capital, accessibility and markets','good weather, capital, schools and scenery.','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(71,'In GIF contracts, risk passes at the time of shipment but the property does not pass until','there is physical transfer of goods','the shipping manifests are signed','the shipping documents are transferred','the goods on board are delivered.','','','b','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(72,'A partnership is dissolved when','the business suffers a loss','there is bankruptcy','there is consistent theft','there is a misunderstanding between partners','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(73,'One of the disadvantages of sole proprietorship is','secrecy of annual reports','pride of ownership ','limited liability','unlimited liability.','','','d','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(74,'The most important concept in production is','utility ','wealth creation','transformation  ','distribution.','','','a','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(75,'An acquired firm in a merger will always receive a',' premium  ',' grant ','share ','discount','','','b','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:06'),(76,'Occupations are classified into','production, labour and economics','extraction, construction and manufacturing','industry, commerce and serves','trade, aids to trade and services.','','','c','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(77,'The Nigerian Telecommunications Limited is a','Jointly owned company ','public corporation ','privately owned company ','public company. ','','','b','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(78,'An engineer in government employ is to be rendering   ','primary service   ','tertiary service ','indirect service   ','direct service. ','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:09'),(79,'The availability of goods and services is brought to the notice of consumers through','personal selling  ','public relations','the telephone  ','advertising.','','','d','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:21'),(80,'The necessary documents used in foreign trade are ','bill of lading, invoice and letter of inquiry','indent, bill of exchange, bill of lading and invoice','invoice, shipping note, bill of lading and freight note   ','shipping note, certificate of origin and visible exports.','','','c','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:11'),(81,'A cheque drawn by a bank official on the bank\\'s deposits in another bank on a customer\\'s instructions is known as ','promissary note',' bankdraft   ','bankers\\' order  ',' travellers cheque.','','','c','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(82,'A type of credit offered by both commercial and merchant banks in Nigeria is ','trade credit','line of credit ','discounting facility ','overdraft.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:13'),(83,'A major function of a chamber of commerce is',' increasing productivity','promoting both home and foreign trade','promoting trade in a particular line',' maximizing profit.','','','b','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:14'),(84,'Which of the middlemen in the channel of distribution has title to the goods he distributes?','The merchant wholesaler ','The agent','the limited wholesaler ','The retailer','','','a','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:15'),(85,'Which of the following confirms the accuracy of the duty charged on imported goods?',' An indent ','Consular invoice',' Consignment note  ','Shipping note.','','','b','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(86,'The association that comprises all types of businesses is referred to as',' chamber of commerce   ',' trust','trade association   ',' cartel.','','','a','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:30'),(87,'Wholesalers can be divided into',' sales agents and brokers   ',' full service wholesalers and merchant wholesalers',' cooperative wholesale society and limited service wholesalers ',' merchant wholesalers and agent middlemen.','','','b','','utme','2005',137,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(88,'In Nigeria the ministry in charge of registering trade associations is that of ',' industries',' commerce ','culture and tourism ',' finance.','','','b','','utme','2005',142,'Admin','0000-00-00 00:00:00','2020-08-02 21:18:26'),(89,'Invisible imports consists of',' cement, shipping and consultancy services',' banking   drinks, insurance and technical services.   ','','tourism, banking, canned foods and cement.','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:33'),(90,'The bank that discounts bills of exchange is the ','central bank  ',' mortgage bank','development bank  ','commercial bank.','','','d','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:34'),(91,'The market where only indigenous firms are considered is the ','money market ',' second-tier securities market ',' local market ',' stock exchange.','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:35'),(92,'From which of the following sources can partnerships increase their capital?',' Admission of a new partner',' Sale of shares   ','Discharge of a mortgage','Grants from relations.','','','a','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(93,'The excess of the assets over the liabilities of a business is called ','working capital','net worth ','capital employed ',' initial capital','','','a','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(94,'Initial public offering is undertaken through the','secondary securities market','first-tier securities market','primary securities market','second-tier securities market','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:52'),(95,'The major participants in the stock market when stock prices are rising generally are the','bulls ','registrars ','bears ','companies','','','a','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:53'),(96,'The fixed and current assets of a business are called ',' called-up capital    ','capital employed',' paid-up capital  ','authorized capital.','','','b','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:54'),(97,'To increase the supply of money in a country, the central bank has to ','reduce cash ratio',' sell securities in the open market',' call on special deposits ',' raise cash ratio.','','','a','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-08-13 06:15:21'),(98,'A good financial instrument which serves as a  hedge against inflation is ','a bond  ','a share',' an option ',' a warrant.','','','a','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:56'),(99,'One advantage of a crossed cheque is that it can','only be paid into a savings account','be cashed over the bank\\'s counter','only be paid into the owner\\'s account',' be cashed by anyone','','','c','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(100,'Given\\n    N\\n Sales    15 000\\n Opening stock  5 600\\n Purchases   9 700\\n Closing stock  4 400\\n Gross profit  4 500\\n Net profit   2 000\\nFrom the data above, calculate the rate of turnover \\n',' 3.50 times ','3.00 times ',' 2.00 times ',' 2.18 times.','','','d','','utme','2005',148,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(101,'question','optiona','optionb','optionc','optiond','','image','answer','solution','utme','examye',61,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(102,'Tourism can be classified as ',' tangible import',' intangible import',' visible export ','invisible export','','','d','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:05'),(103,'The input, output and central processing units are the basic components of a computer\\'s','memory ',' printer ',' hardware ',' software','','','c','','utme','2006',110,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(104,'An employer insures against his employees\\' dishonesty by taking up  ','fidelity guarantee insurance   ',' accident insurance   ','group life assurance  ','endowment policy.','','','a','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(105,'Payment made to the insured by the insurer outside its legal obligation is ','premium paid',' exgratia payment ','surrender value',' sum assured.','','','b','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:14'),(106,'An important social reason for development tourism in Nigeria is the  ','promotion of culture interaction   ',' provision of job opportunities','improvement of her balance of payments','encouragement of international relations.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:15'),(107,'The mode of transportation that conveys a limited variety of products through fixed laid routes is','waterways  ','Broad ','rail  ','pipeline.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-08-10 01:29:23'),(108,'A computer that can be used in weather forecast is ','  a hybrid computer ',' an analog computer','a mainframe computer ',' a digital computer.','','','d','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(109,'The setting of objectives for an organization and determining how to accomplish them is ','social responsibility  ','planning  ','organizing',' decision-making.','','','b','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:18'),(110,'An aspect of marketing that stimulates buying by providing free gifts is ',' advertising  ',' personal selling ','publicity ',' sales promotion,','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:19'),(111,'The limit of functions, activities and personnel that a supervisor can effectively manage  in a business organization  is  ','spun of control ',' delegation of authority ','chain of command ',' authority and responsibility','','','a','','utme','2006',128,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(112,'A seller attracts and retains patronage by',' enhancing public relations ',' enhancing sales promotion  ','  rendering pre-sales service',' rendering customer service.','','','d','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:21'),(113,'A bond which attracts only interest but leaves the capital unpaid is referred to as','a long-term loan','a development bond ',' a redeemable bond','  an irredeemable bond.','','','d','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(114,'A public company has 2 000 000 ordinary shares of 50k each and offers 50% for subscription at N2 per share. If the shares were fully subscribed, calculate the issued capital.','  N4 000 000     ',' N2 000 000','N1 000 000     ','  N500 000.','','','b','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:23'),(115,'The main requirement for admission to the second-tier securities market is the ','provision of a three-year trading record   ','disclosure of all trading activities   ',' creation of a good atmosphere for growth and development   ','guaranteeing of dividends to shareholders.','','','b','','utme','2006',114,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:36'),(116,'What is the capital employed?','N200 000','N340 000','N170 000','N300 000','','','d','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:25'),(117,'Which of the following is a development bank in Nigeria?','Union Bank Plc   ','First Bank Plc','First City Monument Bank ','Federal Mortgage Bank.','','','d','','utme','2006',110,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(118,'Trading on the stock exchange in anticipation of  price change in the market value of shares is','speculation  ','forecasting ','expectation','projection.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:26'),(119,'A financial institution which uses its capital strength to acquire controlling interests in other firms can be regarded as a','subsidiary company','holding company ','trust   ','cartel.','','','b','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:27'),(120,'A current account is beneficial to its holder as','cheques can be issued to anybody','customers cannot withdraw frequently','it is only the holder that can make withdrawals','it allows customers the use of passbooks.','','','a','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:28'),(121,'The conversion of raw materials into finished products creates ','form utility ','marginal utility','place utility ','time utility.','','','a','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(122,'The factor which critically determines the choice of occupation is ','training  ','skill ','interest','aptitude.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(123,'Capital to a business is technically  ','an expense','a liability ','  an asset ','a profit.','','','c','','utme','2006',112,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:31'),(124,'I. Wholesaling  II. Fishing  III. Canning IV. Retailing  The sequence in which the occupational activities above are performed is','Ill, II, I and IV     ','Ill, I, IV and II','I, II, III and IV      ','II, III, I and IV.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:32'),(125,'The development of commerce resulted from','trading ','competition ','importation','specialization.','','','a','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:33'),(126,'The difference between a private and public limited liability company is that the former','is unable to offer shares to the public','is unable to declare and pay dividend','has a higher number of shareholders','pays higher salaries to its managers.','','','a','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:34'),(127,'Materials used for further production of goods and  services are known as ','export goods','intermediate goods ','capital goods','  consumer goods.','','','c','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(128,'A liquidator\\'s fee is to be charged to the','realization account  ','trading account','revaluation account ','reconstruction account.','','','a','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:36'),(129,'The safety and quality of products are the social responsibility of ','the Standards Organization of Nigeria  ','the Manufacturers Association of Nigeria','the Corporate Affairs Commission','business organizations.','','','a','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:37'),(130,'A   feature   common   to   privatization   and commercialization is  ','profit-making    ','credit sales ','market expansion ','price increases.','','','a','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:38'),(131,'A protection right which can be reviewed or renewed after seven years is known as ','patent','design ','registration name ','trade mark','','','a','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(132,'The headquarters of the Lake Chad Basin Commission is in ','Niamey ','N\\'Djamena','Abuja ','Lagos.','','','b','','utme','2006',96,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(133,'In Nigeria, the main source of pollution is','domestic waste   ','organic waste','gas flaring   ','industrial waste.','','','d','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:40'),(134,'‘Safeguarding the health of the nation\\' is the slogan used by ','NDLEA ','NHIS ','NAFDAC ','EPI.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:53'),(135,'When one person approves an act previously done by another in the former\\'s name without authority, this is known as   ','ratification ','estoppels','illegality ','misrepresentation.','','','b','','utme','2006',105,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(136,'The members of ECOWAS include',' Nigeria, Chad, Gabon and Cape Verde','  Burkina Faso, Nigeria, Niger and Mauritania','Guinea, Mali, Cameroon and Nigeria','Togo, Niger, Nigeria and Ghana.','','','d','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:55'),(137,'The most important advantage of privatization is the enhancement of ','liquidity ','accountability','profitability  ','efficiency.','','','d','','utme','2006',112,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(138,'A trade association consists of members engaged in the same trade while a chamber of commerce is','highly regulated by a government agency','not restricted on a particular industry','made up of members that are registered',' made up of firms in the banking industry.','','','b','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(139,'Hire purchase is beneficial to the seller because',' it enhances his living standard ','it increases his turnover ','people pay instalmentally',' of the patronage he enjoys.','','','b','','utme','2006',116,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:31'),(140,'Consumerism aims at protecting the consumer from','harmful products  ','drug addiction','smoking cigarettes ','alcohol consumption. ','','','a','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:59'),(141,'The major types of warehouses are ','manufacturer, bonded, departmental and private  ','bonded, public, cold room and private','manufacturer, bonded, public and departmental','wholesaler, manufacturer, public and bonded.','','','d','','utme','2006',105,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(142,'The Customs and Excise Department is responsible for the collection of','royalties ','tariffs','taxes ','charges.','','','b','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:01'),(143,'A shop which consists of many stores trading under a single roof and which stocks varieties of gods with each unit having its own head is a ','multiple shop  ','supermarket ','superstore','departmental store.','','','d','','utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:03'),(144,'An objective of the farmers\\' association is to','ensure that the prices of goods are fair and reasonable  ','correct the imbalance between consumers and producers ','improve the methods of selling and advertising   ','provide a stable market outlet for farm inputs,','','','a','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(145,'The documents used in the purchase and sale of goods which contain other terms of trade are','debit note and credit note ','delivery note and advice not   ','invoice and order      ','quotation and invoice.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(146,'In international trade, exchanging goods for other goods and services purchased instead of paying in foreign currency is known as ','countertrade','balance of trade ','balance of payments','terms of trade.','','','a','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(147,'The role of a wholesaler in the channel of distribution is to    ','produce goods in large quantities and sell in small quantities ','buy goods directly from the manufacturers','buy good in large quantities and sell in small quantities','sell goods directly to the consumers ','','','c','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:20'),(148,'Foreign trade also involves ','providing services for other countries    ','specialisation and the exchange of goods in a country   ','buying and selling within a country ','the exchange of goods and services between firms. ','','','a','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(149,'Consumers require protection against exploitation to ensure ','adequate consumer awareness','availability of product variety','the sale of quality products','increased aggregate demand.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(150,'The business environment that takes into cognizance the age distribution, ethnic mix and educational level of the consumer is','demographic environment','economic environment','cultural environment','natural environment.','','','a','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(151,'An agent who takes title to goods and has authority  to buy and sell on behalf of another is','a jobber   ','a broker  ','a factor','an auctioneer.','','','c','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(152,'Citizens are against privatisation mainly because of ','the rationalization of organizations','increased prices of goods and services','the likelihood of monopoly','ineffective management.','','','b','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(153,'The major achievement of ECOWAS is','the expansion of regional trade','the emergence of a monetary union','infrastructure! development in member countries','mobility of labour among member countries.','','','a','','utme','2007',85,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(154,'An announcement of a person\\'s willingness to enter into a contract is referred to as ','a proxy','an offer ','a consideration ','an acceptance.','','','b','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(155,'The macro-environmental forces and trends which are a constraint on business operations are  referred to as  ','technological factors','economic factors   ','external factors ','internal factors.','','','c','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(156,'Which of the following best describes inputs for any production activity?   ','Natural resources.',' Business resources.','Human resources.','Material resources.','','','a','','utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(157,'Personal selling is most effective in marketing industrial goods because it involves','recognition and attachment to customers','personal interaction and information gathering','demonstrations and product acceptability','after-sales services and product demonstrations.','','','b','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(158,'The controllable variables that a firm uses to achieve its marketing objectives are called','marketing principles ','marketing mix','marketing concepts','marketing functions.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(159,'Public relations and advertising are similar in terms of','communicating product information','customer education ','the mode of operation','creating a favourable attitude.','','','a','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(160,'A major function of an entrepreneur is','decision-making ','encouraging competition','human-resource training','motivating employees.','','','a','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(161,'A Memorandum of Association is applicable to a',' sole trader ','joint-stock company',' partnership   ',' public corporation.','','','b','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(162,'The sustainable growth of commerce is largely due to ','marketing   ','advertising','exchange ','branding.','','','c','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(163,'A major advantage of a cooperative society is that it ','gives members the opportunity to unite','draws members closer to government','promotes awareness among members','encourages thrift among members.','','','d','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(164,'The making of doors from timber planks is a type of ','manufacturing ','tertiary production','secondary production   ','primary production.','','','c','','utme','2007',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:24'),(165,'Law-making is an example of ','indirect service','commercial occupation ','direct service','industrial occupation.','','','c','','utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-15 05:13:13'),(166,'A document which advertises the shares of a company is known as a  ','memorandum of satisfaction   ','dividend warrant     ','deed','prospectus.','','','d','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-10 12:20:30'),(167,'The scope of economic activities can be enlarged by    ','transportation and trading   ','business and its promotion  ','trading and aids to trade','insurance and banking.','','','c','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-08-15 05:13:13'),(168,'The creation of utilities to satisfy human wants is referred to as   ','production  ','consumption','industrialization    ','occupation.','','','a','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(169,'A major criticism of a cooperative society is','limited capital ','granting excessive loans to members   ','selling goods on credit to non- members    ','management incompetence.','','','d','','utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(170,'An economic activity which deals with natural resources is a form of  ','extraction','refining   ','construction ','manufacturing.','','','a','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(171,'The first stage in tourism planning is','assessing feedback from tourists','preparing a list of tourist attractions','creating recreational opportunities','building community support.','','','b','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:36'),(172,'An agreement by the insurer to compensate the insured for losses suffered is   ','policy','surrender value   ','caveat emptor ','indemnity.','','','d','','utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(173,'One of the functions of the Nigeria Ports Authority is the provision of  ','facilities to enhance the speedy loading and offloading of ','facilities to ensure that goods get to their destinations  ','shelter for operators of cargoes',' courier services to ensure speedy delivery.','','','a','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(174,'The   World   Tourism   Organization   has   its headquarters in ','New York    ','Paris','Madrid     ','London.','','','a','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(175,'Digital computer is divided into ','analogue, hybrid and mini ','super, mainframe, mini and micro    ','mainframe, hybrid and micro','super, mainframe, micro and analogue.','','','a','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(176,'A distinctive advantage of GSM is its ','mobility',' cost   ','stability   ','coverage.','','','a','','utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(177,'In the permanent storage device, DASD means','Data Access Storage Device','Data Access Systems Device','Direct Access Systems Device','Direct Access Storage Device.','','','d','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(178,'The major determinant of fire insurance premium is the ','type and structure of the property to be insured ','usefulness of the property to the owner','owner of the property to be insured','extent of fire damage anticipated.','','','a','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(179,'The Internet is a system of telecommunications used for   ','communicating long-distance messages ','sending and receiving text messages','sending electronic messages .','communicating messages through telegrams.','','','c','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(180,'A written  agreement for  hiring  a  ship for transporting goods is a ','consular invoice','bill of lading ','charter party ','certificate of origin.','','','c','','utme','2007',87,'Admin','0000-00-00 00:00:00','2020-08-15 05:13:13'),(181,'The major function of a trade association is that it','liaises with foreign trade associations','helps to promote foreign trade','facilitates members\\' access to credit facilities','helps to promote research on behalf of members.','','','d','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-15 05:13:13'),(182,'A major setback of international trade is','inadequate exports','economic sanctions','devaluation of currency','exchange rate appreciation.','','','b','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-15 05:13:13'),(183,'Which of the following requires payment into the payee\\'s account?   ','Crossed cheque.','Traveller’s cheque.    ',' Open cheque.','Certified cheque.','','','a','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(184,'The traditional way of paying cooperative dividend is to distribute profit in proportion to members\\'','subscriptions  ','total savings','volume of purchases   ','contributions.','','','c','','utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-29 13:58:20'),(185,'The abbreviation C & F indicates that the','production cost excludes the cost of carriage','selling price includes the cost of carriage','cost of production includes delivery charges','cost price includes the cost of carriage.','','','b','','utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(186,'The sale of foreign investment and gold reserves can be used to ','correct adverse balance of trade','increase invisible imports','correct adverse balance of payments','correct a budget deficit.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(187,'A share premium is an example of','issued capital ','capital stock ','equity capital','capital reserve.','','','d','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(188,'A major benefit a debtor can derive from using a credit facility is ','better service  ','goodwill','convenience    ','control.','','','c','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(189,'The function  of money that facilitates the comparison of the quality of goods as a basis of exchange is the   ','unit of account','measure of value ','store of value','medium of exchange','','','b','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:48'),(190,'The difference between the buying and selling price of shares is known as   ','brokerage','margin   ','jobber\\'s turn   ','gross profit.','','','c','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(191,'Which of the following is a risk-free security?','Preference share.   ','Ordinary share.','Treasury bill.    ','Debenture.','','','c','','utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(192,'The central bank controls the quantity of money in circulation through  ','open-market operations','decreasing the tax rate ','issuing new currencies    ','increasing the tax rate.','','','d','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(193,'The selling of new shares to existing shareholders is referred to as ','public issue ','offer for sale','rights issue  ','bonus issue.','','','c','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-10 17:23:43'),(194,'A new company requiring a large amount of equity finance may source funds from the','capital market   ','central bank','money market    ','commercial banks.','','','d','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(195,'A credit instrument which also serves as a legal tender is   ','cheque    ','paper money','voucher   ','money order.','','','b','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(196,'The body regulating the sale and purchase of shares in Nigeria is the ',' Corporate   Affairs Commission   ','Securities   and   Exchange Commission    ','Securities   and   Exchange Tribunal     ','Nigerian Stock Exchange.','','','b','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(197,'An aspect of commerce that facilitates the distribution of products is ','transportation ','advertising  ','branding ','trading ','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:55'),(198,'An activity that involves derivation of raw materials from land and sea is ','construction ','farming ','agriculture ','extraction ','','','d','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(199,'The art of soap-making is an example of ','Primary occupation ','Secondary occupation ','Tertiary occupation ','Construction occupation ','','','b','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:23'),(200,'Given: I. shoe marker    II. Policeman     III. Fisherman    IV. Gardener    V. Broker .    The persons engaged in primary occupation are \\n','I, III and IV ','III and IV','III and V','I , II and V','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:58'),(201,'The process of changing the form of a raw material is known as  ','fabrication ','extraction ','conversion ','production ','','','d','','utme','2008',91,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(202,'In the long run, all factors of production are ','fixed ','variable ','marginal ','constant ','','','b','','utme','2008',87,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(203,'The quality and quantity of production mostly depend  on the ','effectiveness of factors ','availability of factors','level of education of entrepreneurs ','level of cooperation among workers','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:01'),(204,'The promotion of savings culture is a feature of a ','trade association ','consumers  cooperative society ','thrift cooperative society ','business association ','','','c','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(205,'A document which gives a legal status to a company is the certificate of ','incorporation ','trading ','commencement of business','business registration','','','a','','utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(206,'A proposed company may not be registered if ','the name conflicts with that of another ','it does not put ‘limited’ after its proposed name ','it has no paid-up capital ','it has no asset of its own.','','','a','','utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:05'),(207,'An example of a cartel is ','OPEC','ECOWAS ','AU ','EU','','','a','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-23 16:35:16'),(208,'The cheapest source of funds available to a company is through ','the sale of shares','retained profits ','the sale of bonds','lease financing','','','b','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(209,'The components of capital employed in a business are ','owners’ equity and long-term debts ','total assets and current liabilities ','share capital and long-term debts','share capital and current liabilities.','','','b','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:07'),(210,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. What is the company’s authorized share capital?','N2500 000','N4000 0000','N5000 000','N7500 000','','','a','','utme','2008',67,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(211,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. Determine the company’s reserve share capital ','N2500 000','N1000 000','N1500 000','N2000 000','','','b','','utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(212,'In order to prevent liquidity problems in commercial banks, the central bank uses.','moral suasion  ','fiscal policy','reserve ratio','taxation ','','','c','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:10'),(213,'An account maintained with a commercial bank for the purpose of foreign exchange transaction is the ','foreign account ','International account ','domiciliary account ','foreign reserves account ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:11'),(214,'A trader who gives credit stands to enjoy ','higher profit ','cash discount ','increased sales ','trade discount','','','c','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(215,'A person who buys new issues with a view of reselling at a higher price in the near future is referred to as a ','bull ','bear ','dealer ','stage','','','a','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(216,'A source of capital that has both elements of debt and equity is a ','debenture ','warrant ','loan ','share','','','d','','utme','2008',97,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(217,'A type of retail trade where a group of similar states which is owned by a firm operates in different locations is a ','conglomerate ','chain store','departmental store ','supermarket ','','','b','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:15'),(218,'A warehouse which is used to store goods whose customs duty is not yet paid is a ','wholesale warehouse','bonded warehouse','public warehouse','branded warehouse','','','b','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:16'),(219,'Balance of payments is made up of ','visible  and current  items ','invisible and capital items ','current and capital items','visible and invisible items','','','d','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(220,'Most of the barriers to international trade have been eliminated through ','diversification ','globalization ','commercialization ','privatization ','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:18'),(221,'A document sent by a seller to inform a buyer about the prices of goods is the ','catalogue ','price list','credit note','proforma invoice ','','','b','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(222,'Which ‘FOB’ is written on a document, it implies that the buyer bears the ','cost of goods and advert ','loading cost and insurance ','insurance and transport costs','transport and communication costs','','','c','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-29 14:16:36'),(223,'A crossed cheque with the inscription ‘not negotiable’ must be paid into the ','current account of the drawer ','current account of the payee of the drawer ','savings account of the payee','fixed account of the payee','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:21'),(224,'The pooling of business information for the benefit of members is a major function of a ','pressure group ','trade association ','cultural group ','trade union ','','','b','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:22'),(225,'An association to which all chambers of commerce in Nigeria are affiliated is the ','Nigeria Labour Congress ','National Association of Chambers of Commerce, Industry, Mines and Agriculture','Nigeria Association of Chambers of Commerce, Industry, Mines and Agriculture ','Nigeria Stock Exchange ','','','c','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(226,'The resources which are necessary for business development include ','manufacturing, materials, mentors and money ','merchant, materials, mentors and money','man, money, materials and machines','machines, manufacturing, money and materials','','','c','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(227,'The four Ps of marketing are','product, place, process and promotion ','price, product, property and place','price, product, place and promotion ','price, production, place and property ','','','c','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(228,'Personal selling is used for the purpose of ','establishing the company ','providing information ','creating product awareness','launchers ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:26'),(229,'Ships used for international transport are ','trawlers ','yachts','ocean liners ','launchers ','','','c','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:27'),(230,'A function generally performed by authorities of both the air and seaports is the ','maintenance of warehouses where goods can be stored','provision of facilities for loading and unloading  of cargoes ','maintenance of security and order at the ports.','provision of facilities for landing and refueling at the ports.','','','d','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(231,'A major factor hindering effective communication process is ','climatic condition ','social unrest ','distance ','noise ','','','d','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:29'),(232,'The fear of many communities concerning tourism development is the ','influence of foreign culture ','fear of disease transmission ','fear of pollution ','religious intolerance ','','','a','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:30'),(233,'The development of tourism in Nigeria  will enhance ','agriculture ','revenue generation ','export ','labour mobility ','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(234,'A historical building is a feature of ','cultural tourism ','industrial tourism ','agricultural  tourism','D. ecological   tourism','','','a','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(235,'The sum of money paid by a policy-holder to an insurer is referred to as ','interest ','premium ','gross profit ','sales revenue','','','b','','utme','2008',67,'Admin','0000-00-00 00:00:00','2020-08-02 21:18:26'),(236,'An example of a non-insurable risk is ','burglary ','speculation ','fire ','accident ','','','b','','utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:33'),(237,'The coordinating section of the central processing unit that manages the flow of data is the ','arithmetic logic unit','control unit','magnetic unit','register','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:34'),(238,'An agreement between two parties which is enforceable by law is a ','promise ','warranty ','contract ','condition ','','','c','','utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:35'),(239,'The implied provisions in every sale of goods as contained in the ales of Goods Act of 1893 are conditions and ','consideration ','sureties ','warranties ','guaranties ','','','c','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(240,'When an employee incurs expenses while executing his normal duty, the employer is responsible for his ','safety ','family’s security ','family’s welfare ','indemnification ','','','d','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:37'),(241,'The body charged with divesting government interests in public enterprises is ','SON','NPC','BPE ','NDE','','','c','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:38'),(242,'The practice whereby government relinquishes its ownership interest in a public enterprises is ','commercialization ','indigenization ','privatization ','nationalization ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(243,'A factor is a business environment which increases the rate of product obsolescence is ','technology ','political','legal ','economic','','','a','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(244,'Which of the following is a form of social responsibility of a business? ','selling goods  at cheaper prices ','using the best technology available ','maintaining  tidy and safe environment ','Meeting contractor’s obligation ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:41'),(245,'A computer component that decodes and interprets instructions and also directs program implementation  is ','memory unit','Central processing unit ','control unit ','system unit','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:42'),(246,'Which software program can be used to generate ','MS Word ','Database ','MS Excel','Adobe','','','c','','utme','2008',70,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(247,'The central focus of commercial activities is ','pricing   ','advertising ','trading ','marketing ','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:44'),(248,'An aid to trade associated with communications is ','banking ','transportation','warehousing ','insurance ','','','b','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(249,'The services of a textile worker are an example of ','extractive activity ','commercial activity ','manufacturing ','construction ','','','c','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(250,'Resources harnessed in certain proportion to create goods and services are ','factors of production ','technology and labour ','land and entrepreneur ','raw materials ','','','a','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(251,'Primary production is associated with ','banking ','manufacturing ','agriculture ','construction ','','','c','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:29'),(252,'The major components of modern retailing include ','branding, doorstep  selling and customer stimulation ','branding, sales promotion and mail order ','chain stores, customer stimulation and doorstep selling ','branding, supermarkets and after-sales service','','','d','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(253,'A chain store usually combines the features of ','multiple shops and departmental stores ','hypermarkets and stalls ','multiple shops and hypermarkets','mail order business and multiple shops','','','a','','utme','2009',89,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(254,'One of the functions of the wholesalers is to ','forecast prices','reduce prices of goods','political unrest ','analyse sales periodically ','','','c','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(255,'An artificial barrier to international trade is ','political unrest  ','culture of the people','unit of measurement ','custom duties','','','d','','utme','2009',67,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(256,'The most commonly used commercial documents are ','order notes, debit notes, invoices and quotations ','letters of enquiry, consignment notes, receipts and invoices ','credit notes, statement of accounts, dispatch order and bills ','balance sheet, receipts, invoices and manifests.','','','b','','utme','2009',91,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:00'),(257,'The term free on board means that the price includes ','costs and insurance only ','costs and freight only','freight and insurance only','costs, insurance and freight ','','','d','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-29 13:58:20'),(258,'If a buyer is given 12.5% discount on N50000 worth of goods, how much will he pay?','N56 250','N43 750','N43 250','N6250','','','b','','utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:02'),(259,'A cheque which a bank draws on its own funds is a','bankdraft ','cashier’s cheque ','bank cheque ','crossed cheque','','','a','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(260,'Billboards and posters are forms of ','electronic media ','print media','outdoor media ','window display media','','','c','','utme','2009',71,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(261,'A collective term for advertising, personal selling and publicity is ','exhibition ','promotion ','trade fair ','mechanizing','','','a','','utme','2009',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:05'),(262,'The central bank differs from commercial banks  because it ','renders service to customers','carriers but foreign exchange transactions ','issues currencies ','discounts bills','','','c','','utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(263,'One of he facilities enjoyed by a current account holder is ','a dividend  ','a bonus','an overdraft ','interest on deposits','','','c','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:07'),(264,'In which of the following will be number of words used determine the cost of the message sent?','telephone','telegram ','e-mail','telex','','','b','','utme','2009',60,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(265,'The transmission of telephone services from one country to another is facilitated by ','communication satellite ','international facility ','interconnectivity ','internet services','','','a','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:09'),(266,'The principle of insurance which entitles an insurance company to take any advantage due to the insured after full indemnity is ','contribution  ','subrogation ','proximate cause ','utmost good faith ','','','b','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:10'),(267,'A risk that can be estimated and calculated to be compensated is ','a delivery risk ','an insurable risk','a credit risk ','a systematic risk ','','','b','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(268,'The most important reason for the existence of insurance business is to ','prevent the occurrence of any loss','spread losses to all covered participants','provide for the replacement of facilities','encourage individuals to save','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(269,'One major advantage of transportation to a business is to','extend the firm’s market coverage','ensure that goods are produced faster','procure raw materials cheaply ','ensure the quality of products','','','a','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(270,'Warehousing is important to manufacturers because it helps to ','improve the quality of goods ','produce goods in advance','meet the demand of customers ','determine input requirements','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(271,'One of the major problems of a sole proprietor is sourcing for ','raw materials ','labour ','machineries ','funds','','','d','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(272,'In a public limited liability company, planning is carried out by ','the chairman of the board ','the board of directors ','shareholders','employees','','','b','','utme','2009',91,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(273,'Partnerships are most effective where ','the partners are family friends ','professionals are involved','members can easily raise enough capital ','government regulations are favourable ','','','b','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(274,'The type of partnership in which all partners are jointly liable in bearing risk is ','limited partnership ','partnership-at will','ordinary partnership ','industrial partnership ','','','c','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(275,'The financial instrument that entitles the holder to receive dividend and capital gains is a ','share  ','bond ','bill of exchange ','treasury bill ','','','a','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:18'),(276,'The circulating capital of a business enterprise is classified into ','cash, work-in progress and debtors ','cash, vehicles, land and buildings ','debtors, stock of raw materials and fittings ','pre-payments, debtors and equipment.','','','a','','utme','2009',87,'Admin','0000-00-00 00:00:00','2020-07-28 12:17:02'),(277,'If a firm has a turnover of N50 000 and the cost of goods sold is N40 000, what is the percentage of gross profit on sale? ','30.50%','20.50%','20.00%','D.10.0%','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:36'),(278,'A body established to protect the interest of members against the exploitation of retail traders and manufacturers is the ','wholesalers association ','consumer’s  association ','government agency ','workers’ union ','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:21'),(279,'The manufactures’ Association of Nigeria is an example of a ','labour union ','pressure group ','conglomerate ','cartel','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:22'),(280,'The characteristic which ensures that money is free from forgery is its ','legality ','durability ','recognition ','credibility ','','','b','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(281,'The major dealers on the stock market are the ','agents ','jobbers ','investors ','brokers','','','d','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(282,'The daily official publications of the Nigerian Stock Exchange give detailed information on the ','changes in the official rules set by the market ','method of transactions agreed upon by members ','participation of members in a day ','changes in the price of securities','','','c','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(283,'The function which ensures that set objectives are attained by an organization is ','planning ','directing ','staffing ','controlling ','','','d','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:26'),(284,'An organizational structure that is military in nature is the ','line structure ','staff structure ','line and staff structure ','functional structure ','','','d','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(285,'The efficiency of an organization is enhanced by ','government assistance ','the host community ','customer support ','skilled manpower ','','','d','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(286,'The concept which focuses on consumers in decision-making is ','selling concept ','marketing concept ','product concept ','production concept ','','','b','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(287,'Market skimming is an example of ','market penetration ','Sales promotion ','pricing policy','advertising ','','','a','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(288,'The most important attributes in a sale of goods contract are ','offer and consideration','price and goods ','offer and acceptance ','demand and supply','','','c','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(289,'Unresolved disputes between the employer and employees are usually referred to the ','code of conduct bureau','personnel unit ','disciplinary committee','industrial arbitration tribunal ','','','d','','utme','2009',96,'Admin','0000-00-00 00:00:00','2020-08-02 21:18:26'),(290,'The process of eliminating a virus from a computer program is ','programming ','debugging ','formatting ','looping','','','c','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(291,'The primary memory component of a computer is the ','cache ','console ','assemblers','compilers ','','','b','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(292,'A customer with XYZ Plc sent money through his account to his sister’s  account in another branch. This is an example of ','e-business','e –commerce ','e-finance ','D e-banking ','','','d','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(293,'The economic environment of a business is concerned with ','climatic conditions','changing values ','the growth rate','the interest rate','','','c','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:38'),(294,'A firm that disposes its wastes properly is discharging its ','community responsibility ','environmental responsibility ','civic responsibility ','social responsibility ','','','b','','utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:46'),(295,'The wealth of a nation depend on the volume of its','bilateral trade activities','commercial activities','multilateral trade activities','stock market','','','b','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(296,'Which of the following can be used to differentiate skilled and unskilled lab our? ','education and training','available resources ','level of commitment','salaries and wages','','','a','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(297,'A doctor who attends to patients at home after his official duty is','A community development worker','a direct service worker','an indirect service worker ','a direct and an indirect worker','','','b','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(298,'Manufacturing and construction activities are class8ified under','Primary production','Tertiary production','secondary production','direct production','','','c','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(299,'The reward of rent, wages, interest and profits accrue from','capitals, labour, land, and entrepreneur respectively','land entrepreneur, labour and capital respectively','land, labour, capital, and entrepreneur respectively','labour, entrepreneur, land and capital respectively.','','','c','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(300,'The factor of production that is subject to depreciation is','capital ','land','labour','entrepreneur','','','a','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:38'),(301,'Division of labour ultimately leads to ','conservation','integration','specialization','repetition','','','c','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(302,'A worker who process rice is engaged in','constructive activity','commercial activity','extractive activity','Manufacturing activity','','','d','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(303,'After- sales service is a function usually rendered by','a retailer','a wholesaler ','an agent ','an entrepreneur ','','','a','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(304,'A trend is retailing which enables consumers to have free access to different products is ','after sales service ','branding ','self-service','vending machine','','','c','','utme','2010',83,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(305,'The activity which entails buying of goods in bulk and selling in small quantities to retailers is ','assembling ','wholesaling ','retailing ','merchandising ','','','b','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:21'),(306,'The comparison of a country’s visible and invisible exports and imports expressed in monetary term is ','balance of payment ','terms of trade','balance of trade','terms of payment ','','','c','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(307,'The document that gives an importer a freehand to obtain goods from any manufacturer is ','a consular invoice ','a closed indent ','an open indent ','a freight note','','','c','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(308,'Entrepot trade usually occurs in ','exchanging goods within a nation ','exchanging goods among countries ','importing goods among countries ','exporting goods to be re-exported ','','','c','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(309,'The document issued to a port authority when goods are deposited is a ','dock landing account ','bill of sight ','bill of lading ','dock warrant ','','','d','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(310,'The details of the goods required by the purchaser is outlined in ','a consular invoice ','an indent ','an invoice ','a certificate of origin ','','','c','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(311,'Selling goods in foreign countries at prices below their marginal cost is ','dumping ','depreciation ','devaluation ','discounting ','','','a','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(312,'A process of creating more market for a product is through ','consumerism ','marketing ','advertising ','repositioning.','','','c','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(313,'One of the merits of television as a medium of advertising is that it ','is prone to censorship ','is relatively cheap ','has more sensory stimulation ','has more network coverage','','','c','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(314,'The best mode of ensuring that items posted get to the named addressed is through','recorded delivery ','registered mail','certificate of posting ','express mail','','','b','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(315,'A businessman who undertakes the hull insurance policy is aiming at ','covering losses on damages to the cargo ','protecting injured crew in the ship ','averting payment of the freight ','covering damages to the body of the ship ','','','a','','utme','2010',109,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(316,'An agent who brings a customer into business contact with his principal is known as ','a del credere agent ','an auctioneer','a factor','a broker','','','d','','utme','2010',111,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(317,'A major hindrance to tourism growth in Nigeria is ','absence of genuine tour operators ','lack of tourism master plan ','inadequate tourist centres','non-compliance to immigration laws.','','','b','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(318,'The warehouse that is owned and controlled by the government is a ','wholesalers’ warehouse ','public warehouse ','state warehouse','manufacturers’ warehouse','','','b','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-08-05 13:22:33'),(319,'One of the main features of a partnership is ','limited liability ','lack of corporate existence ','unlimited membership ','lack of mutual confidence','','','b','','utme','2010',93,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(320,'An arrangement by independent firms to share the market of their products on quota basis is referred to as  ','trust ','integration ','syndicate ','cartel','','','d','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(321,'An illegal arrangement by manufacturers to control the price or condition of sale of a product is ','ring ','factoring ','consortium ','merger','','','c','','utme','2010',120,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(322,'A public company with an authorized capital of N60,000, issued 36,000 shraes at 150k each. What is its capital?','N60,000','N36,000','N54,000','N90,000','','','c','','utme','2010',83,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(323,'One of the functions of NACCIMA is ','negotiating with labour unions in matters of wages and conditions of service','pooling of members’ resources for long-term investment ','disseminating information to members on matters relating to tariffs ','ensuring uniformity in labour matters and industrial relations.','','','d','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(324,'A characteristic of money which ensures that its value is not lost is ','homogeneity ','easy portability ','divisibility ','relative scarcity ','','','d','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(325,'The instrument used in the capital market is ','treasury bill ','bill of exchange ','stock ','debenture ','','','c','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(326,'A pre-requisite for admission into the second-tier securities Market is for a company to ','make 20% of its equity share available to he public for subscription ','have a minimum of 100 shareholders ','have a maximum of 100 shareholders ','make 10% of its equity share available to the public for subscription','','','d','','utme','2010',112,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(327,'The tree components of staffing are ','recruitment, interview and appointment ','recruitment, test and placement ','recruitment, selection and appointment ','recruitment, selection and placement ','','','d','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(328,'Which of the following is a matter of personal preference on the part of a superior officer?','Unity of command ','span of control ','delegation of authority ','unity of direction','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(329,'The conversion of raw materials into finished goods leads to the creation of ','form utility ','product utility ','possession utility ','place utility ','','','a','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(330,'The main concern of marketing concept is to ','reduce the number of retail outlets ','identify consumer needs and satisfy them ','increase sales to meet consumer needs ','encourage division of labour.','','','b','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(331,'The best pricing strategy for a company that produces warm clothing is ','target return pricing ','bid pricing ','variable pricing ','product line pricing ','','','d','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(332,'The deliberate and sustained efforts of an organization towards the creation of goodwill for its products and services is through ','Public relations ','advertising ','sales promotion ','rebranding ','','','a','','utme','2010',111,'Admin','0000-00-00 00:00:00','2020-08-05 13:22:33'),(333,'The label on a product such as ‘pampers’ is a type of ','trademark  ','branding ','packaging ','patent right','','','a','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(334,'An opportunity to reject a binding contract at will by a third party is said to be a ','valid contract ','quasi contract ','voidable contract','conditional  contract','','','c','','utme','2010',123,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(335,'An agency contract must involve ','a principal and a consumer','a principal  and a producer ','a principal and a third party ','a principal and a third party ','','','d','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(336,'The difference between trademark and patent right is that the latter ','gives exclusive right to import a particular good ','is conferred by the government ','confers monopoly  on a product ','confers exclusive right to publish literary works.','','','c','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(337,'Which of the following is a function of consumerism? ','Protecting consumers’ rights ','providing consumers’ choice','providing consumers’ needs','Making profiteering impossible','','','a','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(338,'A printed copy of processed information from the computer is the ','soft copy ','file copy ','scanned copy ','hard copy ','','','d','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(339,'The central working system of a computer used for data processing is the ','memory unit ','monitor ','floppy disk drive ','hard drive','','','b','','utme','2010',108,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(340,'The major problem confronting Cyber Café operators is ','Advanced fee fraud by clientele ','poor network coverage ','high operating costs ','copyright violations by clients','','','c','','utme','2010',95,'Admin','0000-00-00 00:00:00','2020-08-05 13:22:33'),(341,'A device that enables the downloading of information from the internet is the ','floppy drive ','compact disk ','modem ','blue tooth ','','','c','','utme','2010',115,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(342,'In e-baking, ATM means ','authentic Teller Machine','Automatic Teller Machine ','All-purpose Teller Machine','Automated Teller Machine','','','d','','utme','2010',110,'Admin','0000-00-00 00:00:00','2020-08-05 13:22:33'),(343,'One way by which a business can discharge its social responsibility to its community is to ','hold monthly meetings of its customers','build houses for its executives ','award scholarship to staff children ','build public health centres.','','','d','','utme','2010',105,'Admin','0000-00-00 00:00:00','2020-08-05 13:22:33'),(344,'The most important function of commerce is in ','enhancing business relationships ','helping people to improve their profits ','facilitating exchange among individuals and firms','assisting trade through banking and insurance','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:38'),(345,'The three main classifications of occupation are ','construction, trade and services ','manufacturing, industry and services ','farming, banking and trading  ','industry, commerce and services','','','d','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:12'),(346,'An oil exploration company is engaged in ','tertiary production ','constructive occupation ','extractive occupation ','secondary production','','','c','','utme','2011',93,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(347,'Services rendered to the public is provided by ','Government ','civil servants ','professionals ','domestic servants ','','','b','','utme','2011',111,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(348,'The creation of goods and services to satisfy human wants is referred to as ','manufacturing ','commercialization ','Production ','entrepreneurship ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:21'),(349,'Which of the following is a limitation  of division of labour? ','decline in craftsmanship ','monotony of work ','reduction in output','reduction in labour force','','','d','','utme','2011',106,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(350,'Resources obtained from the extractive sector that are transformed into finished products are examples of ','primary production ','tertiary production ','direct production ','secondary production.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(351,'An individual that links the producer with the retailer is ','an agent ','a wholesaler ','an entrepreneur ','a principal ','','','b','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:24'),(352,'One of the functions of a retailer is the ','financing of production activities ','provision of credit facilities to relations ','provision of jobs for customers ','breaking of bulk','','','b','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(353,'The main aim of selling directly to the consumers by manufacturers is to ','reduce transportation cost','make contact with individual consumers ','discourage the activities of middlemen ','maximize profit margin','','','c','','utme','2011',118,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(354,'Balance of payment problems arise if a country’s ','exports is more than imports','imports is more than exports','currently is devaluated','Invisible exports is more than visible exports ','','','b','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:27'),(355,'The three components of a country’s balance of payment are ','Current account, capital account and monetary movement account ','capital account, trade account and business record ','sales account, profit and loss account and capital account ','monetary movement account, trade account and ales ledger.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:28'),(356,'A document that indicates obligation that is transferable by delivery and endorsement is a ','bill of lading ','bill of exchange ','documentary evidence ','negotiable instrument ','','','a','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(357,'The document which can be exchanged for a bill of lading is ','freight note ','mate receipt ','export invoice ','ship report','','','a','','utme','2011',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:30'),(358,'The price quoted which includes the cost of insurance, freight and all delivery charges to the importer’s warehouse is ','Free Alongside Ship','Franco ','Free on Board ','Free on Rail','','','c','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:31'),(359,'The purchase of goods under the CWO system of payment implies that ','money must be enclosed when ordering ','payment must be made on delivery ','payment must be made on the spot.','cash must be paid on the spot ','','','b','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(360,'The most effective but limited medium of advertising in Nigeria is ','billboard ','television ','newspaper ','radio ','','','a','','utme','2011',116,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(361,'A cheque that has been drawn but not presented for payment can still be honoured ','within 6 months ','after 9 months ','within 9 months ','after 6 months','','','a','','utme','2011',117,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:34'),(362,'The major source of income to commercial banks is ','loans ','deposits ','interests ','overdrafts ','','','b','','utme','2011',115,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:18'),(363,'An ancillary to trade that easily links suppliers with consumers is ','tourism  ','banking ','communication ','transportation','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:36'),(364,'Mr. Lawal insured his warehouse against burglary but it was later gutted buy fire. This implies that ','the loss should be borne by the insurer ','Mr. Lawal is liable  only for half of the estimated loss ','the insurer should make a consolation payment for the loss','the loss should be borne by Mr. Lawal','','','d','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:37'),(365,'The agreement of insurers to spread risks  among themselves is a major feature of ','reinsurance','life assurance ','underwriter','marine insurance ','','','a','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(366,'Inbound tourism occurs when ','non-residents of a country travel to other countries ','residents of a country travel to other countries ','non-residents of a country travel countries ','residents of a country travel within it','','','d','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:39'),(367,'One of the major disadvantages of pipeline transportation is its ','high cost of construction ','limitation in scope ','vulnerability to climatic changes ','high maintenance cost ','','','a','','utme','2011',105,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:40'),(368,'The business organization that can effectively combine management with control is ','private limited liability company ','sole proprietorship ','public limited liability company ','co-operative society ','','','b','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-08-10 17:23:43'),(369,'When two or more companies agree to execute a project too large for one to handle, this is referred to as ','an amalgamation ','a cartel ','a merger ','a consortium ','','','d','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(370,'In the event of voluntary liquidation, the appointment of a liquidator is the responsibility of the ','directors ','creditors ','promoters ','court ','','','a','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:43'),(371,'A source of business financing which involves pledging of a specific asset is ','bond ','mortgage ','debentures ','loan','','','b','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:44'),(372,'An example of a trade association is ','ALGON','NLC','NURTW','NULGE','','','a','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:17'),(373,'A broker is an agent who links a potential investor with ','a shareholder who wants to register a company ','Other members of the exchange who want to trade ','government official on the exchange ','a quoted company ','','','d','','utme','2011',85,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(374,'Second-tier securities Market differs from the first-tier securities Market in that the former is ','Highly restricted ','regulated by the SEC','regulated by the NIPC','Less restricted ','','','a','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:56'),(375,'A communication process providing information for decision-making in an organization is the ','Management Information System','Transmission Control Protocol ','Information Retrieval System ','File Transfer Protocol.','','','c','','utme','2011',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:57'),(376,'The managerial ability of a supervisor in an organization may be underutilized if the ','morale of the supervised is high ','span of control is wide','span of control is narrow','morale of the supervised is low','','','c','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(377,'The arrangement and interrelationship of the various components and positions of a business is referred to as ','organizational structure ','clarity of objective ','unity of direction ','line structure','','','a','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(378,'The variety of goods and services which a company offers for sale is its ','place mix ','promotion mix ','price mix','product mix','','','d','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:07'),(379,'Activities undertaken to create awareness for goods by conducting contests is ','marketing concept ','consumerism ','sales promotion ','marketing mix','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:08'),(380,'The slogan, a wonderful world,  used by a communication network is a form of ','product differentiation ','persuasive advertising ','publicity ','packaging ','','','b','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:09'),(381,'To make a simple contract valid, the intention must be ','legal and written ','legal and binding ','legal and attractive ','legal and harmonious ','','','b','','utme','2011',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:10'),(382,'The major parties to an agency relationship are the ','principal and the creditor ','bailee and the bailor','principal and the agent','shareholder and the creditor ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:11'),(383,'One of the obligations of an employer to an employee is to ','Indemnify  him against liabilities incurred on duty ','award scholarship to his children ','terminate his appointment  without prior notice','indemnify him against injuries caused through negligence ','','','a','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(384,'The body charged with the responsibility of regulating foods and drugs in Nigeria is the ','SON','NDLEA','NAFDAC','CAC','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:13'),(385,'The physical components of a computer system refers to the ','system unit ','hardware ','software ','compact disk ','','','b','','utme','2011',107,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(386,'An example of a computer operating system is ','the pagemaker ','the Word Perfect ','Microsoft Word 2000','Windows 2000','','','d','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(387,'Intranet differs from extranet in that the former ','requires a modem before it could be used ','can generally be accessed by the public ','is restricted to employees of an organization ','requires internet protocols','','','c','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(388,'A software application which enables a user to display and interact with texts, images and videos is the ','web server','internet Protocol','coreldraw ','web browser ','','','c','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(389,'A predominant mark-up language for web pages is ','IP','HTTP','HTML','TCP','','','c','','utme','2011',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:19'),(390,'The symbol @ in an internet mail address is used  to  ','separate the user name from the machine name ','link the user with other internet users ','locate the addresses of internet  uses ','link the user with the machine.','','','c','','utme','2011',119,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(391,'A business organization is said to be socially responsible when it ','gets involve in issues relating to the society ','rewards its staff for long-term service','offers discounts to customers','invites the public to its annual general  meetings.','','','a','','utme','2011',119,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:21'),(392,'One of the major benefits of commerce to government is to ','improve the standard of living ','generate revenue for growth and development ','encourage cooperation among public organizations ','encourage the development of socio-cultural values','','','b','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:22'),(393,'An example of an activity in the construction industry is ','blacksmithing  ','bricklaying ','car assembling ','shoemaking ','','','c','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:23'),(394,'One of the inputs in production that can be motivated by remuneration is ','capital ','entrepreneur ','labour ','land ','','','c','','utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:24'),(395,'The allocation of tasks to different skills in a production process is referred to as ','production technique ','production function ','division of labour','delegation of responsibility ','','','c','','utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:36'),(396,'The sales of goods through a medium that accepts money and deliver the items to the customer is ','an automated teller machine ','a vending machine','a counting machine','a branding machine','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:26'),(397,'The main purpose of branding is to ','create identity for a product ','make a product look attractive ','create product awareness ','increase sales volume ','','','a','','utme','2012',83,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:20'),(398,'The basis for international trade is embedded in the principle of ','absolute advantage ','globalization ','deregulation','comparative advantage ','','','d','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:04'),(399,'The major problem encountered in international trade is that of  ','distance ','differences in culture ','politics ','differences in currency ','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:29'),(400,'The document a seller uses in dispatching goods to a customer by a carrier is ','a bill of lading ','an invoice ','an advice note','a delivery note','','','d','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(401,'A document which serves as an order with details of goods required by an intending purchaser is   ','a freight note ','an indent ','a bill of lading ','a waybill','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:31'),(402,'If a customer pays within nine days of receiving goods and takes advantage of 3% off the invoice price, this is stated as ','3/9; net 3. ','9/27; net 30','30; net 9/3','9/30; net 3.','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:32'),(403,'Which of the following is a characteristic of a bearer cheque? ','it is made with transverse lines ','it is made payable to whoever presents it','It is made without teraservers lines','it is only payable into the payee’s account ','','','b','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(404,'A bill of exchange paid before its due date at an amount less than its face value is said to have been ','accepted ','rejected','discounted ','dishonoured ','','','c','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:33'),(405,'The most effective type of advertising for branding products is ','mass advertising ','persuasive advertising ','informative advertising ','competitive advertising ','','','c','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:17'),(406,'A current account holder pays fees for services in form of ','bank charges ','inertest rates','commission on turnover','minimum lending rate','','','a','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:08'),(407,'Printed messages sent by cable are recorded as ','telegram ','SMS','telex','MMS','','','a','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:36'),(408,'Communication is relevant to business activities because it ','creates wealth for people ','reduces the cost and risk of traveling ','connects people','enhances delivery of goods and services','','','b','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:37'),(409,'The right of an insurance company to stand in place of an insured against a third party, who is liable for the occurrence of a loss, is the principle of ','proximate cause','insurable interest ','insurance priority ','subrogation ','','','c','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(410,'Assurance is different from insurance in that the former is based on ','probability ','possibility ','risk ','uncertainty ','','','b','','utme','2012',59,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(411,'A person who undertakes a life insurance is said to be an ','Insurer ','assurer ','assured ','insured ','','','d','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:41'),(412,'Tourism serves the purpose of ','cross-cultural understanding and peaceful interaction ','opening avenues for leaving the country','economic development and naturalization ','exploiting the country’s natural endowment','','','d','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(413,'The type of letters that are delivered through the normal mail or by airmail express service is referred to as ','Inland letters ','registered letters','airmail letters','express letters','','','c','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(414,'A business organization that exploits the capabilities of a member to remedy the weaknesses of another is a ','joint venture ','partnership ','nominal partnership ','cooperative ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:44'),(415,'The most important business objective is to ','improve investments ','provide quality  products','target consumers for satisfaction ','carve a niche for the business ','','','c','','utme','2012',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:45'),(416,'In case of liquidation of a public limited liability company, those that are first paid are ','ordinary shareholders ','preference shareholders ','cumulative preference shareholders ','debenture holders','','','d','','utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:46'),(417,'A feature common to public and private limited liability companies is that ','both can sue and  be sued ','the minimum number of their shareholders is five','the transfer of their shares  is not restricted ','their annual accounts are published for public use','','','a','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(418,'A business organization can obtain long-term financing through ','bank overdraft ','the sale of shares ','credit purchases ','bureau de change ','','','b','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:38'),(419,'The portion of the authorized share capital given out to the public for subscription is ','called-up capital ','issued capital ','paid up capital ','reserved capital ','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(420,'A company has an authorized capital of 40 million shares at N1 each, out of which 32 million are issued and fully paid-up. What happens to the remaining 8million shares?','it has been issued but not paid-up ','it has been applied for but not issued ','it is not paid up','it is not yet been issued ','','','d','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:50'),(421,'If the rate of turnover of a company in 1999 was 4 times while the average stock was N49, 600, determine the turnover.','N199, 400','N198, 400','N100, 200','N99, 200','','','b','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:08'),(422,'Given:  N\\n Opening stock  1,800\\n Purchases   2, 800\\n Sales    8,000\\n Closing stock    350\\n Carriage on sales    500\\n Calculate the value of the unused stock.\\n','N 800','N500','N350','N320','','','c','','utme','2012',78,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(423,'The main objective of a trade association is to ','protect is members against litigation ','boost the trade of its members ','secure credit for its members ','protect its members against victimization ','','','d','','utme','2012',64,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(424,'The promotion and protection of trade, industry and agriculture thorugh trade fairs is a function of ','NACRDB','NACCIMA','the Consumer Protection Council ','the Chamber of Commerce ','','','d','','utme','2012',88,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(425,'Dealing in quoted securities on the Nigeria Stock Exchange is restricted to authorized ','companies ','brokers ','investors ','principals','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:03'),(426,'Securities that entitle the investor to coupon rates are ','bonds ','equities ','warrants ','treasury bills','','','b','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(427,'Under what management function will the motivation of employees fall?','staffing ','controlling ','organizing ','directing ','','','b','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:05'),(428,'The promotion of team spirit in an organization is referred to as ','Unit of direction ','spirit de corps ','unity of purpose','discipline ','','','a','','utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(429,'One of the characteristics of a good organizational chart is that it should ','be rigid ','show government policy','facilitate communication ','be acceptable ','','','c','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:07'),(430,'An organization which focuses on consumer satisfaction is practicing ','consumerism ','market segmentation ','selling concept ','marketing concept ','','','d','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(431,'Goods and Services are made available to consumers through','the channel of distribution ','sales promotion ','the advertising agency','the middlemen ','','','a','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:09'),(432,'A person who in consideration for an extra commission, takes responsibility for goods sold on credit and in case of default is a ','commission agent','del credere agent ','broker ','factor ','','','b','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(433,'Yahaya bought a piece of furniture on a credit sale agreement from Ahmed and resold it to Ali before all installments were made. The court upheld that Ahmed could not recover possession of the items from Ali. The reason for the judement was because ','ownership was transferred on completion of installment ','ownership was transferred on delivery ','Yahaya could not pass title to a third party ','Ali was still indebted to Yahaya','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:11'),(434,'The body which ensures that consumers are protected against harmful product in Nigeria is ','NAFDAC ','NDLEA','SON','CPC','','','a','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(435,'The process of decoding data in a computer is known as ','dilution ','default drive ','decryption ','data security ','','','c','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:13'),(436,'Which of the following is a type of system software? ','Utility programs ','Registers ','Hard drives ','Packages','','','a','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:14'),(437,'Computers that process all data as binary zeros and ones are ','analog computers ','digital computers ','hybrid computers','desktop computers','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(438,'Modern mans of payment is greatly facilitated by ','e-commerce ','paper money ','e-banking ','D credit transfer ','','','c','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(439,'The provision of quality and safe products which guarantee the health of consumers is an example of ','quality control ','price control ','civic responsibility ','social responsibility ','','','a','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:17'),(440,'A business organization must always consider the overall effect of its actions on the ','competitor ','product ','profit ','society ','','','c','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(441,'The type of labour that makes use of physical effort in production processes is the ','unskilled labour','skilled labour','blue-collar job','white-collar job','','','a','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(442,'The assembling of products into usable forms is known as ','creation ','manufacturing ','construction ','formation ','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(443,'The final link in the chain of distribution is ','Middlemen ','wholesaling ','consumer ','retailing ','','','c','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(444,'A country is said to be experiencing an unfavourable balance of trade if her','exports exceed imports ','visible exports  exceed  visible imports ','imports and export are equal ','visible imports exceed visible exports ','','','d','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(445,'Trading position of Nigeria is the same as her ','desire  to trade with many countries','willingness to grant credit to foreigners ','balance of trade ','terms of trade','','','a','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(446,'The role of customs and excise authority includes the ','provision of a good transport system to facilitate imports and exports ','provision of security at the port ','control of the flow of goods in and out of the country ','provision of dockyards for ship repairs ','','','c','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(447,'The document lodged with the customs authorities before a ship can leave the port is a ','shipping note ','ship report ','ship manifest','dock warrant ','','','c','','utme','2013',83,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(448,'The document which must be endorsed by the ambassador of a country of destination before shipment of goods is a ','consular invoice ','certificate of origin ','bill of lading ','closed indent ','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-08-13 06:15:21'),(449,'A country’s terms of trade are said to improve when the ratio of her export ','decreases ','remains constant ','increases ','equals import','','','c','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(450,'Which of the following advertising medium appeals to only the literate it the society?','Radio advertising ','Print Media advertising ','Television advertising ','Cinema advertising ','','','b','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(451,'The two main forms of communication are ','oral and written ','verbal and non-verbal ','e-mail and fax','traditional and modern media ','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(452,'The most reliable and efficient means of conveying urgent documents is through','postal order ','ordinary letters ','registered letters ','courier services','','','d','','utme','2013',85,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(453,'An undertaking given by a person to another assuring his integrity is ','proximate clause ','fidelity guarantee ','subrogation ','insurable interest ','','','b','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(454,'If Mr. N takes a fire insurance policy with average clause, his compensation will be ','N5, 000','N7, 500','N70, 000','N75,000','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(455,'The difference between indemnity insurance and non-indemnity insurance is that the latter provides ','cover for exporters against risks ','cover for importers against risks ','full payment to the insured ','consolation payment to the insured ','','','d','','utme','2013',83,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(456,'An importance of warehousing is in the ','production of goods ','transportation of goods ','Importation of goods ','repackaging of goods','','','a','','utme','2013',78,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(457,'In order to increase the capital owned, a sole trader may ','seek for bank loan ','issue debentures ','acquire extra shop fittings on credit ','draw less of his profit for personal use','','','d','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(458,'A business partner who provides capital but abstains from participation in administration of a firm is a ','general partner ','nominal partner ','secret partner ','dormant partner ','','','d','','utme','2013',70,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(459,'Which of the following will NOT be stated in a Memorandum of Association? ','Name clause ','Rights of shareholders ','object clause ','Registered office','','','d','','utme','2013',91,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(460,'The amount of authorized capital that shareholders have subscribed to is ','issued share capital ','authorized share capital ','owner’s equity ','working capital ','','','c','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(461,'The rate of turnover of a firm in a given year is 5 times while the average stock is \\n N12.500. what is the turnover of the firm? \\n','N24,000','N46,500','N62, 500','N65,000','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(462,'A lawyer that defrauds his client may be derobed by the Nigerian Bar Association in order to ','protect other lawyers ','protect the integrity of the association','compensate the affected client ','prevent the client from sueing the association ','','','c','','utme','2013',85,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(463,'In the Nigeria GSM industry, a parliament is organized by the Nigerian Communication Commission in order to ','increase profit of service providers ','protect the interest of government ','encourage more people into the business ','protect the interest of consumers ','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(464,'Trade Fairs in Nigeria are organized by ','the Federal Government ','Manufactures’ Association of Nigeria','Ministry of Commerce and industry ','Chambers of commerce','','','d','','utme','2013',86,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(465,'Money is generally acceptable for transactions due to','the legal backing ','the rule of law ','it’s acceptability in the global market ','the Central Bank Governor’s signature ','','','d','','utme','2013',91,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(466,'Which of the following is a quality of money?  ','Availability','Scarcity  ','Indivisibility ','Convertibility ','','','a','','utme','2013',87,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(467,'Money can simply be referred to as a ','measure of value','standard of value','means of settlement ','durable asset for doing business','','','a','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(468,'Gilt-edged securities are issued mainly by ','individuals ','non-governmental organizations','government ','multi-national companies ','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(469,'The initial function of a manager is ','setting up an organization ','coordinating ','planning ','provision of welfare package ','','','b','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(470,'The most suitable organizational structure for small or medium-sized enterprises is ','line structure ','staff structure ','committee structure ','functional structure ','','','a','','utme','2013',60,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(471,'In a staff-authority relationship, the opinion of a specialist is one department to another is ','a directive ','an advice ','a command','a delegation ','','','b','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(472,'Management of a business involves he development of ideas for the ','distribution of goods and services that human wants','transportation of goods and services that goods and services that human wants ','transfer of little of ownership of goods and services to individuals.','production of goods and services that satisfy human needs.','','','d','','utme','2013',62,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(473,'Which of the following is used as a pricing policy? ','packaging ','market selection ','labeling ','market skimming ','','','d','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:06'),(474,'The essential utility derived from the use of a product is known as ','augmented benefit','branded benefit ','core benefit ','formal benefit','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(475,'The breaking down of a market into separate and identifiable elements is known as ','differentiation ','segmentation ','skimming ','penetration ','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(476,'A contract that is acknowledged before the law court is referred to as ','informal contract','formal contract ','contract of records ','specialty contract ','','','b','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(477,'An agent employed to sell goods delivered to him by the principal is referred to as a ','Special agent ','del credere agent ','factor ','universal agent','','','b','','utme','2013',78,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(478,'A motor dealer who agreed to sell a car to Mr. X but sold and delivered it to Mr. Y on the delivery date agreed with Mr. X. He has discharged the contract by ','performance ','frustration ','an agreement ','breach ','','','d','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(479,'A contract can be terminated through ','physical combat ','family intervention ','frustration ','consultation ','','','d','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(480,'The right of retain possession of goods until the contract price is paid is referred to as ','a promise ','ultra vires ','a branch ','a lien ','','','a','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-08-05 18:48:13'),(481,'The sole legal right held by the author to publish his book is a ','trademark ','copyright ','patent right ','book mark','','','b','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(482,'The process of transferring data from one computer to another is referred to as ','down loading ','faxing ','browsing ','decoding ','','','a','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(483,'The physical component of a computer system is ','software ','hardware ','hard disk','floppy disk ','','','b','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(484,'A computer accessory through which information can be retrieved is the ','hard disk ','input  device ','control unit ','floppy disk ','','','d','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(485,'The type of computer application software used mainly for management information is ','Corel draw ','AutoCAD','data base','word perfect','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(486,'To meet security requirement before gaining access to data, a computer operator supplies ','an e-mail address ','a yahoo address ','a password ','a modem','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(487,'A major factor that affects business operations is ','technology ','supply ','product ','rivalry ','','','a','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(488,'The environmental hazard that is most difficult to control is ','land pollution','water pollution ','air pollution','political unrest ','','','c','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(489,'Which of the following can be defined as trade and aids to trade?','Advertising','Commerce','Wholesaling','Retailing','','','b','','wassce','2000',70,'Admin','2016-11-14 07:16:10','2020-08-15 00:58:51'),(490,'Which of the following is not a source of finance to a sole proprietor?','Trade Credit','Overdrafts','Debentures','Leasing of equipment','','','d','','wassce','2000',62,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:09'),(491,'Partners who allow their names to be used in a partnership but do not take part in the management of the business are','active partners','limited partners','general partners','nominal partners','','','d','','wassce','2000',60,'Admin','2016-11-14 07:16:10','2020-08-15 00:50:18'),(492,'A private company is one which','must publish its audited account','floats its shares on the stock exchange market','restricts the rights to transfer its shares','is owned by a maximum of twenty members merger','','','c','','wassce','2000',66,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:09'),(493,'The coming together of two or more firms at different stages of production is','horizontal merger','vertical merger','amalgamation','cartel','','','b','','wassce','2000',69,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:09'),(494,'The total value of fixed and current assets is?','working capital','capital employed','Fixed capital','capital owned','','','b','','wassce','2000',54,'Admin','2016-11-14 07:16:10','2020-08-15 00:47:41'),(495,'What is P in the above equation?','Purchases returns','Net Profit','Sales','Carriage outwards','Use the following equation to answer question   Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',69,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:04'),(496,'What is G in the above equation?','Sales returns','Carriage inwards','Purchases','Sales','Use the following equation to answer question  Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',63,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:07'),(497,'Which of the following is true about cumulative preference shares?','Unpaid dividends are carried forward','Shareholders can secure capital refund on demand','Shareholders are entitled to further share of profit','Dividends are paid into a special account','','','a','','wassce','2000',59,'Admin','2016-11-14 07:16:10','2020-08-15 00:50:02'),(498,'A debenture is mortgaged when it is','not secured on the assets of a company','secured on the assets of a company','irredeemable','redeemable','','','b','','wassce','2000',64,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:10'),(499,'A retail outlet which sells a fairly narrow range of goods with a number of branches in different towns is a','supermarket','mail-order shop','mobile shop','multiple shop','','','a','','wassce','2000',63,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:10'),(500,'A consignment note is used when','goods are wrapped and labeled for easy identification','goods are dispatched to agents through transporters','damaged goods are being returned','there is over-invoicing','','','b','','wassce','2000',61,'Admin','2016-11-14 07:16:10','2020-08-15 00:58:51'),(501,'Which of the following is not contained in an advice note?','Type of goods','Price of goods','Date of dispatch','Means of dispatch','','','d','','wassce','2000',59,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:06'),(502,'A refund of the duty collected on goods imported and processed for re- export is','excise duty','excise draw back','preferential duty','value added tax','','','b','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:08'),(503,'When a country’s total visible and invisible exports are more than its visible and invisible imports, it has','favourable balance of payments','favourable balance of trade','unfavourable balance of trade','unfavourable balance of payments','','','a','','wassce','2000',53,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:08'),(504,'Which of the following is not a function of a retailer?','Supplying goods to final consumers','Bulk breaking','Giving information to the wholesaler','Branding and packaging of goods','','','d','','wassce','2000',49,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:10'),(505,'A merchant who wishes to order goods from a foreign country sends','an invoice','an indent','an advice note','a credit note','','','b','','wassce','2000',55,'Admin','2016-11-14 07:16:11','2020-08-15 00:50:17'),(506,'The production of goods in anticipation of demand is \tpossible because of the existence of','Packaging','advertising','warehousing','branding','','','c','','wassce','2000',64,'Admin','2016-11-14 07:16:11','2020-08-15 00:58:52'),(507,'Which of the following is sent in reply to a letter of enquiry?','Quotation','Order','Consumer invoice','Advice note','','','b','','wassce','2000',64,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(508,'The abbreviated phrase E & OE is usually printed on','an invoice','a cheque','a delivery note','a debit note','','','a','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(509,'Which of the following refers to a price reduction based on the size of order?','Cash discount','Trade discount','Seasonal discount','Cash on delivery','','','b','','wassce','2000',69,'Admin','2016-11-14 07:16:11','2020-08-15 00:58:52'),(510,'Which of the following is not a means of payment in foreign trade?','Telegraphic money order','Specially crossed cheque','Letters of credit','Debit transfer','','','b','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:05'),(511,'A bill of exchange on maturity is allowed','seven days of grace','five days of grace','four days of grace','three days of grace','','','a','','wassce','2000',65,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:06'),(512,'Which of the following is not a financial institution?','Commodity Board','Insurance company','Clearing house','Stock exchange','','','a','','wassce','2000',61,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(513,'When a customer writes a cheque in his own name and withdraws cash with it from his account he is both the','drawee and the payee','drawer and the payer','drawee and the drawer','drawer and the payee','','','c','','wassce','2000',55,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:10'),(514,'Which of the following is a means of payment through the post office?','Standing Order','Promissory note','Money order','Telegraphic transfer','','','c','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:10'),(515,'Which of the following encourages people to save towards owning a house?','Merchant bank','Development bank','Mortgage bank','Commercial bank','','','c','','wassce','2000',48,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:08'),(516,'Which of the following services is not rendered by commercial banks?','Business advice','Currency notes issue','Accepting deposits','Credit transfer','','','b','','wassce','2000',56,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:07'),(517,'A retirement insurance policy which enables the assured to receive income for a specific period is','annuity','endowment','whole life','fidelity guarantee','','','a','','wassce','2000',64,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:10'),(518,'A house worth  N50.000 was insured against fire for  N30,000. Fire destroyed and caused damages worth N20.000 on the house. Under which insurance principle will the owner be entitled to a compensation of  N20,000?','Contribution','Subrogation','Indemnity','Uberrimaefidei','','','c','','wassce','2000',70,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:03'),(519,'When an insurance company indemnifies the insured and takes over his rights, this is known as','abandonment','subrogation','proximate cause','contribution','','','b','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(520,'In Public Limited Liability Companies, equities are referred to as','preference shares','authorized capital','ordinary shares','called-up capital','','','c','','wassce','2000',67,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(521,'The method of sending messages by the teleprinter is','telephone','cablegram','telex','railex','','','c','','wassce','2000',67,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:10'),(522,'The information on terms of carriage of mails is found in','business journal','post office guide','trade directory','service manual','','','b','','wassce','2000',51,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:05'),(523,'Rail transport is less flexible than road transport because','rail lines run between specific terminals','train is slow over long distances','only bulky goods are carried by rail','road transport is suitable for short distances','','','a','','wassce','2000',57,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(524,'Which of the following is used for moving only goods from one seaport to another?','Ocean liner','Cargo liner','Ferry','Coaster','','','b','','wassce','2000',64,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:06'),(525,'The marketing activity that stimulates immediate demand for a product is','sales promotion','publicity','consumer relations','personal selling','','','a','','wassce','2000',66,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:10'),(526,'Which of these is not a basic marketing function?','Exchange','Production','Facilitation','Information','','','b','','wassce','2000',69,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:07'),(527,'Branding is a tool for','competitive advertising','consumerism','marketing research','pricing policy','','','a','','wassce','2000',50,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:10'),(528,'Firms wishing to defend established products as well as launch new ones will make use of','franchising','product differentiation','branding','advertising','','','d','','wassce','2000',50,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:07'),(529,'Which of the following is a method of sales promotion?','Radio giggles','Poster display','Trade fair','Television broadcast','','','c','','wassce','2000',64,'Admin','2016-11-14 07:16:12','2020-08-15 00:50:18'),(530,'The deliberate and sustained efforts to maintain a good image of a company is known as','personal relations','public relations','professional relations','industrial relations','','','b','','wassce','2000',55,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:03'),(531,'A contract of sale where ownership passes to the buyer on the payment of the first instalment is known as','hire purchase','lease','cash on delivery','credit sale','','','d','','wassce','2000',57,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:08'),(532,'Which of the following agents guarantees payment transactions entered into on behalf of the principal?','Auctioneer','Factor','Broker','Del credere','','','d','','wassce','2000',74,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:06'),(533,'Which of the following is not a means of consumer protection?','Price control','Sale of Goods Act','Trade Description Act','Tax laws','','','d','','wassce','2000',66,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:09'),(534,'Which of the following is a basic requirement for a valid contract?','Representation','Consideration','Interest','Performance','','','b','','wassce','2000',68,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:09'),(535,'A counter-offer in a contract is regarded as','an acceptance','an invitation to treat','a rejection','a consideration','','','c','','wassce','2000',57,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:10'),(536,'Which of the following is not a right of the consumer?','Safety','Choice','Discount','Value','','','c','','wassce','2000',68,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:09'),(537,'Which of the following is an agreement to transport goods but not a document of title?','Air-waybill','Bill of lading','Charter party','Freight note','','','c','','wassce','2000',68,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:08'),(538,'In which of the following classes of occupation would you place a doctor?','Extractive','Commercial','Direct services','Indirect services','','','c','','wassce','2000',67,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:09'),(539,'Commercialization is good for the Nigerian economy because it','creates room for competition','increases the cost of living','leads to the reduction of workforce','leads to uneven distribution of wealth','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:40','2020-07-14 12:58:07'),(540,'Obtaining feedback on the quality and performance of competing products of different manufacturers, explains the retailer’s function of','after sales service','granting to credits to consumers','market research','stocking variety of goods','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:08'),(541,'The direct contact of a seller with potential buyers with a view to making sales is called','advertising','personal selling','public relations','publicity','','','b','','neco','2013',70,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:09'),(542,'The process of dividing a total market into groups made up of people with similar need refers to marketing','function','mix','research','segmentation','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:11'),(543,'The final link in the chain of distribution is the','agent','consumer','manufacturer','retailer','','','b','','neco','2013',65,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:12'),(544,'Platinum Habib Bank Plc. is an example of __ bank.','central','commercial','development','merchant','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:13'),(545,'Which of the following is NOT a means of payment through the post office?','Giro system','Money order','Postage stamp','Standing order','','','d','','neco','2013',78,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:14'),(546,'Branch managers who virtually have no control on goods they sell is a disadvantage of __  store.','chain','departmental','mail order','super','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:15'),(547,'Instrument used in place of legal tender but not freely acceptable are called ___ money.','bank','commodity','gold - backed','representative','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:34'),(548,'The assurance policy in which the assured pays lump sum of money which matures at his retirement is ___assurance.','annuity','endowment','life','term','','','a','','neco','2013',81,'Admin','2016-11-14 08:18:41','2020-08-12 08:48:16'),(549,'By making it possible for wholesalers to keep surplus stock until demand improves, the warehouse performs the function of','employment creation','price stabilization','production planning','storage','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:36'),(550,'Calculate the net profit.','30,000','33,000','38,000','40,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','b','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:37'),(551,'Calculate the total liabilities.','40,000','50,000','55,000','57,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','c','','neco','2013',67,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:38'),(552,'Calculate the current assets.','15,000','20,000','30,000','45,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','a','','neco','2013',65,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:39'),(553,'Ensuring free movement of factors of production among member states through the removal of obstacles is one of \t\tthe objectives of','ECOWAS','LCBC','NBC','OAU','','','a','','neco','2013',76,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:40'),(554,'Which of the following documents contains the name of the company, registration number and signature of the registrar?','Articles of association','Certificate of incorporation','Certificate of trading','Memorandum of association','','','d','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-08-13 12:59:05'),(555,'The method of shopping on the internet by using the computer to browse the website of the manufacturer is known as','e-banking','e-commerce','e-exchange','e-trade','','','d','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-08-12 09:06:08'),(556,'The development of a container and a graphic design for a product is known as','advertising','branding','packaging','trade mark','','','c','','neco','2013',68,'Admin','2016-11-14 08:18:42','2020-07-29 13:52:51'),(557,'When an agent is appointed verbally or in writing by the principal to act on his behalf, the appointment is said to be by','estoppels','express','implication','ratification','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:44'),(558,'The features of an entrepreneur consist of the following, EXCEPT','coordinating factors of production','earning wages as income','efficiency in management','maintaining good communication','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:46'),(559,'Another name for trade discount is _________ discount,','cash','functional','quality','quantity','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:42','2020-08-13 13:06:59'),(560,'Those engaged in extraction, manufacturing, and construction occupations are called ___ workers.','commercial','direct','indirect','industrial','','','d','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-08-13 13:06:59'),(561,'Which of these is NOT a source of capital to First Bank of Nigeria Plc?','Equipment leasing','Lean from friends','Profit plough back','Sales of shares','','','b','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:49'),(562,'In trading, profit and loss account, carriage outward is','added to purchases','deducted from purchases','deducted from sales','treated as expenses','','','d','','neco','2013',68,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:50'),(563,'The pricing policy adopted by firms selling to wealthy people is','market penetration','market skimming','pricing above the market','pricing with the market','','','b','','neco','2013',62,'Admin','2016-11-14 08:18:42','2020-08-12 09:06:08'),(564,'Which of the following is NOT a function of courier companies?','Ensuring international transmission of message','Providing door to door delivery services','Providing efficient means of mail delivery','Undertaking the shipment of export and import','','','d','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:52'),(565,'“MTN, Your Best Connection” is an example of ___ advertisement.','competitive','direct','informative','mass','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:53'),(566,'The assertion ‘consumers are always right’ refers to marketing','board.','concept','function','mix','','','b','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:54'),(567,'Which of the following is charged by the NIPOST on postal order?','Dividend','Interest','Poundage','Premium','','','c','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:56'),(568,'The following are characteristics of debenture holders, EXCEPT','being one of the sources of long term loan to public companies.','being paid interest','they are creditors of the company','they are entitled to profits','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-08-12 08:48:16'),(569,'The money paid to savings account holders by banks after a period of transaction is called','dividend','gain','interest','premium','','','c','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:58'),(570,'Double coincidence of wants is a disadvantage of','business','buying and selling','credit sales','trade by barter','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:59'),(571,'Price quotation which excludes all delivery charges is called','cost and freight','ex - ship','ex - warehouse','free - on - board','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:00'),(572,'Which of the following does NOT appear on a cheque on presentation for payment?','Amount in words and figures','Date of withdrawal','Name of the cashier','Name of the payee','','','c','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:01'),(573,'The aspect of production which provides goods and services for immediate consumption is called ___ production.','direct','indirect','primary','secondary','','','a','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:02'),(574,'The actual gain made by a business after all expenses has been deducted is called','gross profit','margin','mark-up','net profit','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:03'),(575,'The following documents are used between buyers and sellers, EXCEPT','catalogue','dispatch rate','invoice','license','','','d','','neco','2013',81,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:04'),(576,'The total assets of a business less current liabilities refers to _____ capital.','authorized','called up','employed','owned','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-08-12 08:48:16'),(577,'The following are merits of industrial integration, EXCEPT','controlling output and price','eliminating waste','leading to monopoly','preventing over production','','','c','','neco','2013',80,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:06'),(578,'The use of middlemen by manufacturers become necessary where the goods','are of low rate of turnover','are susceptible to faking or adulteration','involved are branded','produced are in large quantities','','','d','','neco','2013',74,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:07'),(579,'The oldest form of business enterprise in Nigeria is','partnership','private liability company','public enterprise','sole proprietorship','','','d','','neco','2013',79,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:08'),(580,'Social responsibilities of a business to the consumers \tinclude the following, EXCEPT','educating the customers','ensuring truth in advertisement','granting credit facilities','providing of quality product','','','c','','neco','2013',59,'Admin','2016-11-14 08:18:42','2020-08-12 09:06:08'),(581,'Products that have stayed long on themselves in a shop can be sold easily through','branding','discounting','doorstep selling','franchising','','','b','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:10'),(582,'The durable capital of an enterprise which is used continuously for further production is called ___ capital.','called up','circulating','fixed','liquid','','','c','','neco','2013',59,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:11'),(583,'A manufacturer is said to have performed all the necessary marketing functions in the distribution channel when the goods move from','manufacturer ? consumer','manufacturer ? retailer ? consumer','manufacturer ? wholesaler ? retailer ? consumer','manufacturer ? wholesaler ?jobber ? retailer ?consumer','','','c','','neco','2013',73,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:12'),(584,'Which of the following is NOT a reason for government’s ownership of Nigerian Ports Authority (NPA)?','Avoiding wasteful competition and duplication','Generating revenue','High capital requirement','Making profit','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-16 09:51:24'),(585,'The first step for a businessman who wishes to engage in international trade is to','ask the exporter to move the goods to the shipping company for delivery','engage the services of clearing agent to clear the goods on his behalf','establish contact with the foreign trading partner','fill an application for import form with a bank','','','c','','neco','2013',79,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:28'),(586,'A law made by a country to prohibit importation of certain goods into the country is called _____ laws.','export','import','protectionist','tariff','','','c','','neco','2013',74,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:29'),(587,'Which of the following towns was NOT an initial commercial centre in Nigeria?','Kano','Lagos','Maiduguri','Yola','','','d','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:31'),(588,'Management function which arranges people, time, money and equipment, to achieve the objectives of an organization is referred to as','directing','motivating','organizing','planning','','','c','','neco','2013',76,'Admin','2016-11-14 08:18:43','2020-08-12 08:48:16'),(589,'Bridging the gap between producers and consumers is the sole purpose of','distribution','hawking','retailing','warehousing','','','c','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-08-13 12:59:05'),(590,'Which of the following is NOT a characteristic of labour? It is','fixed in supply','geographically mobile','man made','perishable in nature','','','a','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-08-13 13:06:59'),(591,'One of the problems associated with home trade is the','absence of currency exchange','better knowledge of the markets','inadequacy of storage facilities','proximity of buyers and sellers','','','c','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:35'),(592,'An instruction from a current account holder requesting to pay a named person or organization a. specified amount is \t\tcalled','bankers order','certified cheque','internal transfer','money order','','','b','','neco','2013',68,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:36'),(593,'Which of the following is NOT a commercial occupation?','Advertising','Agriculture','Communication','Insurance','','','b','','neco','2013',78,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:37'),(594,'In the marketing mix, place refers to','channel of distribution','location of the factory','the market place','where the product is located','','','d','','neco','2013',85,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:38'),(595,'Which of the following is NOT an attribute of an effective business manager?','Altruism','Empathy','Objectivity','Subjectivity','','','d','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:39'),(596,'The ability of money to be divided into smaller units for easy exchange of goods and services explains','divisibility','durability','recognisability','stability','','','a','','neco','2013',82,'Admin','2016-11-14 08:18:43','2020-08-13 13:06:59'),(597,'Which of the following is NOT a role of trade association?','Eliminating competition among members','Ensuring uniformity in mode of operation','Establishing link between government and associations','Promoting members interest','','','a','','neco','2013',77,'Admin','2016-11-14 08:18:43','2020-08-13 13:06:59'),(598,'The transfer of enterprises from private to state ownership for economic or social reasons is referred to as','commercialization','indigenization','industrialization','naturalization','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:42'),(599,'The major divisions of Commerce are','import, export and transport','trade, communication and warehousing','trade and auxiliaries to trade','exchange, consumption and production','','','c','','wassce','1990',69,'Admin','2016-11-14 20:22:14','2020-08-15 00:59:07'),(600,'Which of the following statements is not true?','Commercial services are the life blood of a country economic system','There cannot occur commercial services until goods have been produced.','Without commercial services most goods and services will not be produced','There is no stage of production that does not employ commercial services.','','','b','','wassce','1990',59,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:09'),(601,'The three main divisions of production include industrial','commercial and banking services','commercial and services','transportation and services','manufacturing and services','','','b','','wassce','1990',52,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:04'),(602,'Which of the following is one of the functions of commerce?','Manufacturing','Growing of tomatoes','Storage of goods','Construction of Roads','','','c','','wassce','1990',64,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:09'),(603,'Which of the following does not belong to the extractive industry?','Farming','Insuring','Mining','Drilling','','','b','','wassce','1990',65,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:10'),(604,'The average stock is','N=2000','N=3000','N=5000','N=6000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','c','','wassce','1990',67,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:10'),(605,'The cost of goods sold is','N=6000','N=10000','N=42000','N=16000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','a','','wassce','1990',65,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:07'),(606,'The oldest and commonest form of business in Nigeria is','partnership','the co-operative society','sole proprietorship','joint stock venture','','','c','','wassce','1990',58,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:09'),(607,'If a retailer Mr. Aigbojie buys goods manufactured by Adefila Limited from wholesaler Mrs. Jumai, who will prepare the delivery note?','Mr. Aigbojie','Adefila Limited','Mr. Jumai','Mr. Aigbojie and Adefila Limited','','','c','','wassce','1990',53,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:04'),(608,'Which of the following is not a factor of production?','Capital','land','Labour','Staffing','','','d','','wassce','1990',72,'Admin','2016-11-14 20:22:15','2020-08-15 00:58:51'),(609,'In which class of occupation would you place a taxi-driver?','Extractive','Indirect services','Personal services','Commercial services','','','d','','wassce','1990',56,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:03'),(610,'The purpose of issuing a credit note is to','correct errors of overcharging','correct errors of undercharging','write off  bad debts','encourage immediate payment','','','a','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:09'),(611,'The exchange of goods for other goods in home trade is known as','entrepot trade','home trade','barter trade','foreign trade','','','c','','wassce','1990',50,'Admin','2016-11-14 20:22:16','2020-08-15 00:48:54'),(612,'Which of the following advertising media combines the advantages of sound and motion?','Radio','Neon signs','Press','Television','','','d','','wassce','1990',64,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:09'),(613,'Which of the following is a form of sales promotion?','Promotion through radio','Advertising by television','Distributing printed sales literature','Offering free samples to customers','','','d','','wassce','1990',73,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:07'),(614,'Efforts geared towards establishing and maintaining good image for a company is termed','human relations','professional relations','public relations','trade relations','','','c','','wassce','1990',57,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:09'),(615,'Which of the following is sent as a reply to an inquiry?','Tender','Estimate','Statement','Quotation','','','d','','wassce','1990',61,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:03'),(616,'Which of the following statements best describes net profit? The excess of','total revenue over total expenditure','total capital income over expenditure','sales over purchases','total capital formation over capital consumption','','','a','','wassce','1990',50,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:07'),(617,'A business is in existence primarily to','make profit','provide goods and services','provide employment','compete with others in business','','','a','','wassce','1990',71,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(618,'A number of shops under one roof is the feature of a','supermarket','chain store','department store','mail order business','','','c','','wassce','1990',62,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:10'),(619,'An agreement between two parties which will give rise to enforceable rights and obligation is known as','a warrant','a contract','a consideration','an offer','','','b','','wassce','1990',65,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:11'),(620,'Auctions and Tenders become binding when they are','accepted','offered','received','advertised','','','a','','wassce','1990',66,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(621,'The organized efforts of consumers to protect themselves against the unfair practices of businessmen is called','strike','consumerism','amalgamation','propaganda','','','d','','wassce','1990',62,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:07'),(622,'Which of the following is the most suitable means of \ttransporting bulky goods from Lagos to Kaduna? By','Train','Airplane','Ship','Lorry','','','a','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:07'),(623,'Which of the following is the quickest and accurate means of communication?','Telegram','Express mail','Courier services','Telex','','','d','','wassce','1990',61,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(624,'Which of the following is the safest means of sending a postal order from Lagos to a friend in Jos?','Special delivery','Recorded delivery','Registered letter','First class mail','','','b','','wassce','1990',49,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:10'),(625,'One of the objectives of the indigenization programme of the Federal Government of Nigeria is to','encourage the use of local raw materials','expel all foreigners from Nigeria','make Nigerian businessmen very rich','maximize local retention of profits','','','d','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(626,'The law which stipulates that labels should give an accurate account of a product is the','price control act','consumer credit act','trade description act','hire purchase act','','','c','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(627,'Which of the following is not an essential of a contract?','Offer and acceptance','Intention to create legal relations','All contracts written out','Legality of object','','','c','','wassce','1990',57,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:07'),(628,'One advantage of personal selling is','low cost','immediate feedback','the appeal to many people at a time','self service','','','b','','wassce','1990',66,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:10'),(629,'Charges paid by a ship for staying at a port beyond agreed sailing time is called','profit','interest','holding','demurrage','','','d','','wassce','1990',64,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:09'),(630,'Entrepot Trade refers to','importing for domestic consumption','importing for industrial use','importing for government concerns','importing for re-export','','','d','','wassce','1990',66,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:04'),(631,'Which of the following could account for a favourable balance of payment?','High capital repayments','high debt service repayment','higher imports than exports','Higher exports than imports','','','d','','wassce','1990',56,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:06'),(632,'Which of the following is not part of the facilities provided by the Nigerian Ports Authority?','Dredging','Warehousing','Collection of customs duties','Loading and off-loading of cargoes','','','c','','wassce','1990',75,'Admin','2016-11-14 20:22:16','2020-08-15 00:58:51'),(633,'The main purpose of branding is to','increase the quantity of goods demanded','differentiate goods from other similar goods made by other producers','increase the selling price of goods','enhance turnover of goods','','','b','','wassce','1990',64,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(634,'An individual who makes the final use of goods and services provided by a firm is the','manufacturer','wholesaler','consumer','retailer','','','c','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-08-15 00:49:40'),(635,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','cartel','trust','holding company','consortium','','','a','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(636,'When a business is insolvent it may result in','incorporation','recuperation','liquidation','restoration','','','c','','wassce','1990',48,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(637,'In insurance the term Uberrimaefidei stands for','utmost good faith','subrogation','insurable interest','indemnity against loss','','','a','','wassce','1990',61,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(638,'Fidelity guarantee is an insurance cover against loss arising from','trade debts','personal accidents','dishonest staff','fire disaster','','','c','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:07'),(639,'Which of the following is a type of marine insurance?','Endowment','Freight','Accident','Fidelity','','','b','','wassce','1990',58,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:08'),(640,'The word Ltd written after the name of a company means that','the individual member’s capital is limited','the total sum of the company’s capital is limited','members are liable to the extent of their holding','company’s location is limited','','','c','','wassce','1990',64,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:09'),(641,'Which of the following is a public corporation? The','Nigeria Breweries Limited','Nigerian Ports Authority','Lagos Chamber of Commerce','Nigerian Bottling Company','','','b','','wassce','1990',69,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:10'),(642,'Which of the following is not required in a Memorandum of Association? The','name of the company','location of the company','names of the Board of Directors','limitation of member’s liability','','','c','','wassce','1990',60,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:09'),(643,'The amount paid by the insurance company to the insured upon giving up his policy is called','Surrender value','cash bonus','assured sum','dividend','','','a','','wassce','1990',50,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:08'),(644,'The amount paid by the assured to the insurer is called','interest','premium','dividend','indemnity','','','b','','wassce','1990',67,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:09'),(645,'With the exception of life assurance and personal accident insurance, contracts of insurance are contracts of','premium','indemnity','proximate cause','utmost good faith','','','b','','wassce','1990',62,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:08'),(646,'An author’s exclusive right to published and unpublished works is known as','patent right','fundamental human right','copyright','authorship','','','c','','wassce','1990',58,'Admin','2016-11-14 20:22:17','2020-08-15 00:58:51'),(647,'The cost which is incurred as a result of failure to load or unload a ship at the ports within a specified period is referred to as','demurrage charges','premium charges','trade charges','excess charges','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:47','2020-07-22 21:30:16'),(648,'The process whereby a firm directs its marketing efforts towards a single market by the use of a particular marketing mix is referred to as','concentration segmentation','marketing concept','consumer orientation','market penetration','','','d','','utme','2016',69,'Admin','2016-11-14 20:59:49','2020-07-29 18:51:38'),(649,'The function of money that is mostly affected by inflation is','store of value','medium of exchange','measure of value','unit of account','','','a','','utme','2016',73,'Admin','2016-11-14 20:59:49','2020-08-15 00:58:38'),(650,'Ordinary warehouse is usually owned and used by','government','agents','retailers','wholesalers','','','d','','utme','2016',69,'Admin','2016-11-14 20:59:49','2020-07-23 11:40:28'),(651,'The winding up of a firm by a resolution of its shareholders is an example of','voluntary liquidation','bankruptcy','recession','involuntary liquidation.','','','a','','utme','2016',54,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:39'),(652,'Which of the following is used for temporary storage of data on a computer?','RAM.','ROM.','floppy disk.','flash disk.','','','a','','utme','2016',70,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:56'),(653,'An advantage of the Second-Tier Securities Market to an economy is in','creating avenues for investment','regulating competition amongst companies','granting financial assistance to consumers','increasing companies profit margins-.','','','a','','utme','2016',72,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:57'),(654,'The  lumbering of trees by a furniture company is an example of','primary production','secondary production','tertiary production','Indirect production','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:58'),(655,'Which of the following types of occupation involves services that can be referred to as auxiliaries’ trade?','Constructive occupation','Manufacturing occupation.','Industrial occupation.','Commercial occupation','','','d','','utme','2016',75,'Admin','2016-11-14 20:59:49','2020-07-29 18:51:37'),(656,'The transformation of cotton into clothing is an example of','secondary production','tertiary production','primary production','direct production','','','a','','utme','2016',59,'Admin','2016-11-14 20:59:50','2020-08-13 12:59:05'),(657,'A basic concept of advertising that reveals the essential message an advertiser wishes to communicate is referred to as the','medium','theme','target','reach','','','a','','utme','2016',69,'Admin','2016-11-14 20:59:50','2020-08-15 00:59:20'),(658,'The type of wholesaler that combines selling, delivery and collection in one operation is','specialist   wholesaler','rack jobber','drop shipment','truck. wholesaler','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:44'),(659,'Given: - [Index of export price] / [Index of import price]  x 100  The formula can be used to determine the','terms of payment','balance of payments','terms of trade','import tariffs.','','','c','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:03'),(660,'Commission on turnover is usually a benefit accruable to the','drawer','drawee','payer','payee','','','d','','utme','2016',61,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:45'),(661,'Avast is an example of','a web browser','a search engine','an antivirus','a spread sheet','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:05'),(662,'The component of balance of payments which shows how the balance of both current and capital accounts are settled is \t\t\tknown as','current account','monetary movement account','capital account.','social welfare account','','','b','','utme','2016',62,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:06'),(663,'The act of interpreting ideas within an organization is','motivating','organizing','planning .','communicating','','','d','','utme','2016',57,'Admin','2016-11-14 20:59:50','2020-08-15 00:59:22'),(664,'One of the duties of the employer to his employee is to','delegate his duties to other staff','charge the employee on the use of equipment','serve faithfully and honestly','provide job security.','','','d','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-08-15 00:50:19'),(665,'The buying and selling of goods and services is referred, to as','trading','marketing','insurance','advertising','','','a','','utme','2016',66,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:09'),(666,'A document that serves as an instrument for preferential tariff is referred to as','an indent','a certificate of origin','a consular invoice','an advice note.','','','b','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-29 18:51:38'),(667,'Funds used for paying wages, salaries and payments for raw materials are categorized under','liquid capital','circulating capital','fixed capital','nominal capital.','','','b','','utme','2016',57,'Admin','2016-11-14 20:59:50','2020-07-22 21:21:36'),(668,'A formal letter to a dealer to enquire details about certain items for sale is referred to as','an inquiry','an invoice','an order','a quotation','','','a','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:12'),(669,'The pricing policy that seeks ,to set .prices relatively high in order to attract the wealthy segment of the market is','target return pricing','market skimming','variable pricing.','market penetration','','','b','','utme','2016',76,'Admin','2016-11-14 20:59:50','2020-08-13 13:06:59'),(670,'In the transportation industry, dead freight is used to describe the','cost paid for an empty space left in the ship','charge for each day a performance was delayed','persons that hire a ship for a specific purpose.','cost of shipping a particular cargo for a specific voyage','','','a','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:37'),(671,'When expenses on trading are deducted, the result is the','rate of turn over','net profit','gross profit','cost of goods sold.','','','b','','utme','2016',89,'Admin','2016-11-14 20:59:50','2020-08-13 13:06:59'),(672,'A supplier of flour who intends to sign a contract with a baker \tthrough post can establish a binding agreement only','after the offeror has made an offer.','when the offeror’s letter has reached the offeree.','when the. Offeree’s letter has been posted.','after the offeree’s letter has been received by the offeror.','','','d','','utme','2016',49,'Admin','2016-11-14 20:59:50','2020-07-22 21:30:15'),(673,'Which of the following is a modern trend in retailing?','Kiosk','Mobile shop','Vending machine.','Tied shop','','','c','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-08-15 00:59:21'),(674,'Which of the following is a traditional medium of communication used to mark festivals?','Palm frond.','Metal gong.','Talking drum.','Gun blast.','','','c','','utme','2016',66,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:44'),(675,'One of the functions of the retailer is','granting credit facilities to close relatives','provision of after-sales services','branding and packaging of goods.','warehousing of goods.','','','b','','utme','2016',64,'Admin','2016-11-14 20:59:50','2020-07-22 21:30:05'),(676,'One of the factors of determining the volume of production is','availability of forex','availability of storage facilities.','the location of the business.','the number of skilled manpower.','','','b','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:20'),(677,'Which of the following is the best method for computing working capital?','Total assets less current liabilities.','Current liabilities less current assets.','Fixed liabilities less current assets.','Current assets less current liabilities.','','','a','','utme','2016',69,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:46'),(678,'The minimum lending rate of a bank is a component of its','current assets','debit balance.','credit balance.','fixed assets.','','','a','','utme','2016',58,'Admin','2016-11-14 20:59:51','2020-08-15 00:50:19'),(679,'One of the functions of the Nigerian Ports Authority is that it','gives preferential treatment to Nigerian investors','provides credit facilities to importers.','encourages the growth of infant industries.','provides warehousing facilities at the docks.','','','d','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:29'),(680,'An ancillary to trade which promotes socio-cultural development all over the world is','transportation','communication','tourism.','insurance.','','','c','','utme','2016',75,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:30'),(681,'An association that acts as a watchdog between  entrepreneurs and government to protect trade from any unfavourable laws is said','cartel','syndicate','Chamber of Commerce','Nigeria Bar Association.','','','c','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:06'),(682,'Labour as an input in production can be motivated by','training','profit.','remuneration.','promotion','','','c','','utme','2016',64,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:32'),(683,'Discharging certain duties by an organization to the public to gain high patronage is a concern of financial responsibility','economic responsibility.','legal responsibility.','financial responsibility.','social responsibility.','','','d','','utme','2016',66,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:33'),(684,'Complying with the rules relating to the conduct of business activities in a country is an aspect of','cultural environment.','demographic environment.','legal environment','politician environment','','','c','','utme','2016',62,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:08'),(685,'Which of the following is NOT backed by gold but by government securities?','Fiduciary note.','Fiat money.','Token money.','Commodity money.','','','a','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:36'),(686,'Which of the following is a legal tender?','Cheque.','Traveller’scheque.','Bank note','Goldsmith receipt.','','','c','','utme','2016',57,'Admin','2016-11-14 20:59:51','2020-07-22 21:21:36'),(687,'Where a manufacturer collects money from wholesalers in exchange for goods produced is referred to as','charge account.','trading checks.','trade credit.','I owe you.','','','c','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:06'),(688,'Quantity discount is offered mainly to persuade the buyer to','defer payment.','make prompt purchases.','make advance payment.','purchase more','','','b','','utme','2016',81,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:08'),(689,'The placement of workers based on their qualifications can be categorized under','public sector','skilled labour','private sector.','unskilled labour','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:40'),(690,'A group of computers that exchange data is referred to as','an information bank.','a network.','a database.','an intranet site.','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:41'),(691,'The form of credit sales common to low income groups is','hire purchase','club trading','book-me-down.','credit trading.','','','a','','utme','2016',68,'Admin','2016-11-14 20:59:51','2020-07-22 21:21:35'),(692,'Petrol voucher is an example of a','bank draft.','legal tender.','token money','partial money.','','','d','','utme','2016',57,'Admin','2016-11-14 20:59:51','2020-08-12 09:06:08'),(693,'One of the major reasons for merger is to','reduce the number of unskilled manpower','increase the number of skilled manpower.','prevent liquidation.','liberalize the market.','','','c','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:44'),(694,'A major function of commerce is to','facilitate human satisfaction through exchange','eliminate trade barriers','provide raw materials for manufacturers','influence government policies','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:46'),(695,'The major factors that facilitate merchandising are','communication, advertising and banking','trading, warehousing and production','management, insurance and advertising','banking, insurance and transportation.','','','d','','utme','2000',50,'Admin','2016-11-14 21:29:41','2020-08-12 09:06:08'),(696,'Production involves','making goods available where and when needed','changing the form of goods, moving and making them available as needed','the manufacturing of goods and provision of services','the assembling of all necessary parts to produce a finished product.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:44','2020-08-15 00:58:45'),(697,'The application of division of labour should generally bring about','increase in the quantity of goods and services','increase in the variety of goods and services','cheapness of goods and services','cost efficiency in the production of goods and services.','','','a','','utme','2000',56,'Admin','2016-11-14 21:29:44','2020-08-13 12:59:05'),(698,'The term Plc implies that the shares are available','to the public at the company','privately on the stock exchange','publicly on the stock exchange','publicly in commercial banks.','','','c','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-08-15 00:59:22'),(699,'Which of these is both merit and demerit in partnership?','The number of partners','Its unlimited nature','The bearing of risk','The withdrawal of a major partner.','','','a','','utme','2000',71,'Admin','2016-11-14 21:29:45','2020-08-13 13:06:59'),(700,'The measure of independence available to the individual business units that come together is the main difference between','vertical and horizontal, integration','mergers and acquisitions','consortium and amalgamation','trust and cartel.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-08-12 08:48:16'),(701,'Government policies relating to the establishment and operations of businesses are targeted at','increasing the profits of business owners','the general improvement of the economy','even spread of facilities and employment','diversification and expansion of businesses.','','','b','','utme','2000',56,'Admin','2016-11-14 21:29:45','2020-07-22 21:21:37'),(702,'On liquidation of a public limited liability company, the residual owners are the','creditors','ordinary   shareholders','preference shareholders','debenture holders.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-08-15 00:58:44'),(703,'Bank overdraft as a short term source of fund is','an overdrawn account','granted to a newly opened account','repayable after more than a year','a current liability.','','','d','','utme','2000',73,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:55'),(704,'The share capital value that forms part of the balance sheet total is the','paid-up share capital','called-up share capital','authorized share capital','issued share capital.','','','a','','utme','2000',55,'Admin','2016-11-14 21:29:45','2020-08-15 00:58:36'),(705,'The main factors militating against the rapid growth of trade in Nigeria are','inadequate transportation network and huge capital outlay','lack of motivation and government attitude towards trade','lack of good transportation network and insecurity of investments','huge capital outlay and government attitude to trade.','','','a','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-29 14:16:36'),(706,'The current trends in retailing competition in Nigeria are','advertising and sales promotion strategies','branding, enterprising and differentiation of goods and services','self-service, after-sales services and branding strategies','after-sales services and sales promotion strategies.','','','a','','utme','2000',66,'Admin','2016-11-14 21:29:45','2020-08-12 08:48:16'),(707,'The function of a merchant wholesaler is to','buy in bulk, store and sell to retailers as desired','possess title to the goods, store and sell to retailers','bring buyers and sellers together','find markets for producers’ finished goods.','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:58'),(708,'An invoice can be described as a','contractual agreement for the sale of goods','document specifying quantity, description, prices and total value of purchases','receipt containing necessary information about the goods','letter specifying the contractual sales of goods between two parties.','','','b','','utme','2000',70,'Admin','2016-11-14 21:29:45','2020-08-13 13:06:59'),(709,'Ocean liners are subdivided into','passenger liners and cargo liners','coastal liners and cargo liners','cargo liners and tramp liners','passenger liners and tramp liners.','','','a','','utme','2000',63,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:00'),(710,'Tourists with no fixed address in a town may receive their letters from the post office through a','recorded delivery','poste restante','parcel post','postmaster.','','','b','','utme','2000',71,'Admin','2016-11-14 21:29:45','2020-07-23 16:34:08'),(711,'The insurance principle that requires full disclosure of information on the insured is known as','indemnity','uberrimaefidei','subrogation','caveat emptor.','','','b','','utme','2000',74,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:02'),(712,'Mr. Olatunde took up a fire insurance on a property valued at N 1000 and the amount insured is  N800. The property caught fire causing a loss of  N400. If the insurance was taken with the \tclause ‘with average’, what is the amount to be paid by the insurance company?','N320','N420','N460','N560.','','','a','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-08-13 12:59:05'),(713,'The Central Bank differs from commercial banks because it','renders service to customers','carries out foreign exchange transactions','issues currencies','discounts bills.','','','c','','utme','2000',72,'Admin','2016-11-14 21:29:45','2020-08-12 09:06:08'),(714,'A bank form used to transfer money from personal to creditor’s account is called','debit transfer form','credit transfer form','customer transfer form','bank transfer form.','','','a','','utme','2000',61,'Admin','2016-11-14 21:29:45','2020-08-15 00:50:19'),(715,'The computer using linear integrated circuit technology coupled with quantification of data in terms of length and distance is known as','digital computer','analogue computer','mainframe computer','hybrid computer.','','','a','','utme','2000',75,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:07'),(716,'A printer that burns the print image onto the photosensitive drum is called','dot matrix printer','daisy wheel printer','laser printer','thermal printer.','','','c','','utme','2000',61,'Admin','2016-11-14 21:29:45','2020-08-15 00:50:20'),(717,'A console is a device used in','moving an indicator on the screen','communicating between operator and programme','holding magnetic tape reel','forming characters by heating sensitive ribbon.','','','a','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:09'),(718,'A form of money that has gone out of use is','paper money','bank money','commodity money','foreign money.','','','c','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:17'),(719,'The major condition for obtaining loan in thrift, credit and loans cooperative societies is','provision of collateral security','a high level of education','possession of a large business','an approved project plan.','','','a','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-08-13 13:06:59'),(720,'The Stock Exchange helps to provide capital for industrial projects because it','determines value of shares, stocks and other securities','assists government in implementing its monetary policies','assists companies to change their securities into cash','renders agency services to organizations and governments.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:19'),(721,'A shortcoming of the Second-tier Foreign Exchange Market in Nigeria is that it','serves as a mechanism for evaluating an unrealistic exchange rate for the naira','creates unhealthy competition amongst users of foreign exchange','contributes to destabilizing national resource allocation','contributes to flooding the market with foreign essential commodities.','','','b','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-07-29 14:16:36'),(722,'The chart above represents the','product mix relationship','marketing mix relationship','promotion mix relationship','advertising mix relationship.','','','b','','utme','2000',63,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:21'),(723,'A group of specialized functions of marketing is','buying, selling, storing and information','buying, selling, advertising and packaging','buying, selling, labelling and promotion','buying, selling, skimming and pricing.','','','c','','utme','2000',79,'Admin','2016-11-14 21:29:46','2020-08-15 00:59:22'),(724,'The type of advertising that seeks to persuade consumers to buy a particular product is','informative advertising','competitive advertising','persuasive advertising','mass and specific advertising.','','','c','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:23'),(725,'The practice whereby soft drink manufacturers give away caps, bags and other items when consumers buy their product is a \t\tform of','marketing strategy','publicity','advertising','sales promotion.','','','d','','utme','2000',78,'Admin','2016-11-14 21:29:46','2020-07-29 18:51:37'),(726,'The most important advantage of personal selling is that it','allows sellers to perceive buyers’ needs','allows sellers to sell their goods quickly','takes place easily on the highways','takes place without the permission of government.','','','a','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-08-15 00:59:21'),(727,'The role of public relations is principally to','sustain good relationship','create good image','carry out publicity','advertise a firm’s products.','','','b','','utme','2000',61,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:34'),(728,'The basic elements of a valid contract are','offer, acceptance, consideration and witness','offer, intention, acceptance and legality','offer, acceptance, intention, capacity and legality','offer, acceptance, capacity, legality and consideration.','','','d','','utme','2000',60,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:04'),(729,'A bus driver operating between Lagos and Jos pledged the owner’s credit in Benin in order to have the engine repaired and the bill sent to the owner. This is a case of','del credere agency','agency by necessity','agency by ratification','agency by estoppel.','','','b','','utme','2000',68,'Admin','2016-11-14 21:29:46','2020-08-15 00:59:20'),(730,'After registration, a certificate of trading is usually issued to a','partnership','public company','private company','sole proprietorship.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:16'),(731,'An aspect of the law which allows an exclusive right for a limited number of years is a','copyright','trade mark','ratification','patent','','','d','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:38'),(732,'The first known legislation to protect consumer rights in Nigeria is the','Usury Laws','Hire Purchase Act','Sale of Goods Act','Food and Drugs Act.','','','c','','utme','2000',71,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:39'),(733,'The main difference between nationalization and indigenization is in terms of','shareholding','profit','technology','efficiency.','','','b','','utme','2000',71,'Admin','2016-11-14 21:29:46','2020-08-12 08:48:16'),(734,'The primary objectives of a trade association is to','undertake research work on behalf of members','establish easy link with government','exchange information and negotiate as a pressure group','operate as a group against other groups.','','','c','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:15'),(735,'A chamber of commerce is an association made up of','entrepreneurs','manufacturers','merchants','importers.','','','b','','utme','2000',73,'Admin','2016-11-14 21:29:46','2020-07-29 14:16:36'),(736,'The composite functions of management are','planning, supervising, communicating','planning, controlling, organizing and directing','coordinating,  supervising,  staffing  and communicating','directing,  supervising, motivating and controlling.','','','b','','utme','2000',60,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:43'),(737,'The three components of staffing are','recruitment, selection and placement','recruitment, interview and appointment','recruitment, test and placement','recruitment, procurement and appointment','','','a','','utme','2000',69,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:44'),(738,'The legal aspect of business is designed to','protect business organizations and consumers','safeguard consumers from undue business practices','protect infant industries from collapse','encourage free exchanges among businesses.','','','a','','utme','2000',64,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:45'),(739,'In an organization, civic consideration arises from','the profit derived from the environment','its operations within the environment','its social negative impacts on the community','the fact that it is registered in that locality','','','b','','utme','2000',63,'Admin','2016-11-14 21:29:46','2020-08-13 12:59:05'),(740,'The instrument establishing the Economic Community of West African States in 1975 is','a decree','an act','a treaty','constitution','','','c','','utme','2000',73,'Admin','2016-11-14 21:29:46','2020-08-15 00:59:21'),(741,'One of the functions of the Niger Basin Commission is to','ensure equal treatment of African nations','foster closer co-operation among West African nations','map out regulations that will guide all forms of navigation','guarantee freedom of navigation for all West African nations.','','','c','','utme','2000',69,'Admin','2016-11-14 21:29:46','2020-08-15 00:58:37'),(742,'The pivot on which the wheel of commerce rotates is','tariff','trade','taxation','price.','','','d','','utme','2001',85,'Admin','2016-11-15 07:01:48','2020-08-15 00:58:44'),(743,'A distinguishing characteristic of labour is that it is','constant','expensive','mobile','cheap','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:48','2020-08-12 08:48:16'),(744,'Land as a factor of production does not vary in','quantity','nature','quality \t\t\t\t.','cost.','','','b','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-22 21:21:38'),(745,'Which of the following services does a lawyer render?','industrial services','indirect services','direct services','commercial services.','','','c','','utme','2001',92,'Admin','2016-11-15 07:01:48','2020-07-22 21:30:04'),(746,'The partner that only contributes part of the capital used in the formation and running of a business is known as','a passive partner','an active partner','a dormant partner','a nominal partner.','','','c','','utme','2001',88,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:52'),(747,'One major advantage of a credit and thrift cooperative is that','it can approach government for a loan','it encourages saving habits','there are no legal restrictions','each member has a vote during meetings.','','','b','','utme','2001',98,'Admin','2016-11-15 07:01:48','2020-07-29 18:51:37'),(748,'A form of ownership which exploits the strength of one partner to remedy the weaknesses of the other is a','joint partnership','cooperative','corporation','joint venture.','','','a','','utme','2001',97,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:54'),(749,'At the collapse of a business enterprise, the person appointed to dispose of the assets is called','a broker','an auctioneer','a liquidator','an auditor.','','','c','','utme','2001',98,'Admin','2016-11-15 07:01:48','2020-08-15 00:58:46'),(750,'Entrusting the management of a company to the courts to enable the settlement of the company’s obligations is an indication of','distress','closure','bankruptcy','liquidation.','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:48','2020-07-28 12:17:02'),(751,'The financial instrument for borrowing in which the collateral is usually more than the amount borrowed is','trust certificate','detachable warrant','mortgage bond','convertible securities.','','','c','','utme','2001',95,'Admin','2016-11-15 07:01:48','2020-08-12 09:06:08'),(752,'I.   Personal Savings, II.   Retained Earnings, III. Accrued Taxes. Which of the items above constitute internal sources of financing for companies?','I and II','I and III','II and III','I, II and III.','','','c','','utme','2001',107,'Admin','2016-11-15 07:01:48','2020-07-23 16:34:08'),(753,'The difference between total current assets and total current liabilities of a business is known as','quick ratio','liquidity ratio','working capital','circulating capital.','','','c','','utme','2001',101,'Admin','2016-11-15 07:01:48','2020-08-15 00:58:45'),(754,'One of the reasons why wholesaling must continue is that','the tax paid by wholesalers on their profit enhances national revenue','by creating artificial scarcity, the wholesaler is enhancing competition in the economy','the wholesaler provides technical advice to the retailer','the gap between manufacturers and retailers is reduced by wholesalers.','','','d','','utme','2001',110,'Admin','2016-11-15 07:01:48','2020-08-15 00:59:21'),(755,'A merchant wholesaler is referred to as','del-credere agent','a broker','rack jobber','a factor.','','','a','','utme','2001',90,'Admin','2016-11-15 07:01:48','2020-08-12 08:48:16'),(756,'A pro-forma invoice is sent to inform a buyer about the','quantity of goods','prices of goods','designation of goods','quality of goods.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:02'),(757,'The balance of payments of countries is','a record of imports and exports','a systematic record of transactions among countries at a given time','the current and the capital accounts and their payments','the trade relationships and payments among nations.','','','a','','utme','2001',75,'Admin','2016-11-15 07:01:48','2020-08-15 00:58:36'),(758,'The major procedures in the purchase and sale of goods are enquiry','quotation, order and invoice','placement, order and invoice','bargain, order and invoice','order, sale and invoice.','','','a','','utme','2001',89,'Admin','2016-11-15 07:01:48','2020-08-13 13:06:59'),(759,'The trade discount receivable by Mr. Bacus is','N= 4,500','N= 7,500','N= 10,500','N= 12,000.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',89,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(760,'If  Mr. Bacus fulfils his promise, he will be entitled to a cash discount of','N= 2,760','N= 3,000','N= 6,500','N= 9,500.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(761,'Bank Giro is a method of settling debt from a','customer to a bank','bank to a customer','customer to another','bank to another.','','','a','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:06'),(762,'Warehousing is a productive function because it increases the','quantity of goods','utility of goods','quality of goods','price of goods.','','','a','','utme','2001',89,'Admin','2016-11-15 07:01:49','2020-08-15 00:50:20'),(763,'A factor necessary for siting a warehouse is nearness to','raw materials','labour','capital','consumers.','','','d','','utme','2001',101,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:08'),(764,'Pooling of risk in insurance means that','compensations are paid out of a common fund','two people can pool their risks to be insured','two insurance companies can buy two policies','insurance companies should encourage taking risks','','','a','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-08-12 09:06:08'),(765,'The indemnification of Ama by his insurance company after a fire disaster means that he','has been guaranteed by the insurance company','will be cleared of any fault by the insurance company','has been covered by the insurance company','will be covered to the limit of the amount in the policy.','','','b','','utme','2001',109,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:10'),(766,'The major difference between insurance and assurance is that while insurance','takes care of uncertainty, assurance takes care of risks','takes care of risks, assurance takes care  uncertainty','hinges on probabilities, assurance is based on possibilities','is about indemnity assurance is about life in the future.','','','c','','utme','2001',97,'Admin','2016-11-15 07:01:49','2020-08-15 00:58:36'),(767,'A documentary bill will normally be accompanied by','sales invoice, bill of lading and insurance certificate','clean bill, bill of lading and insurance certificate','bill of lading, consular invoice and insurance certificate','consular invoice, FOB certificate and bill of  lading.','','','d','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:12'),(768,'Which of the following best describes the classification of computers?','Mini-computer, speed and size','Micro-computer, cost and abilities','Mini-computer, micro-computer and work station','Mini-computer, hybrid and digit','','','c','','utme','2001',103,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:13'),(769,'The temporary working area of the central processing unit is called the','C-D ROM','C-D RAM','ROM','RAM.','','','b','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:14'),(770,'The significance of money to modern economic systems is that it','is used as a means payment','promotes specialization and exchange','measures value and promotes exchange','causes inflation and deflation in the economy','','','c','','utme','2001',77,'Admin','2016-11-15 07:01:49','2020-08-15 00:58:46'),(771,'One major characteristic of credit unions and thrift societies is that','the legal processes involved in their formation are rigid','membership compulsory to people in the same line of  business','the contribution of every member depends the member’s ability','a minimum of ten people in the same line of business can form the union','','','c','','utme','2001',105,'Admin','2016-11-15 07:01:49','2020-08-06 04:20:09'),(772,'The Nigerian Stock Exchange publishes a daily official list that gives full information on the','method of transactions agreed to by members','number of participating members in a day','changes in the prices and earnings of security','changes in the official rules set by the man','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:49','2020-08-13 13:06:59'),(773,'The main factors that determine the value stock on the Stock Exchange are dividend an','the psychology of the market','capital gain','capital appreciation','warrant payment','','','c','','utme','2001',104,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:18'),(774,'One of the main objectives of the Second- tier Securities Market in Nigeria is to','achieve a realistic exchange rate for the naira','eliminate currency  dealings in the black market','assist companies to raise capital','attract investment flow.','','','d','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:19'),(775,'The activities aimed at finding out customers’ needs and satisfaction can be described as','socio-marketing','macro-marketing','micro-marketing','conceptual marketing.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:20'),(776,'The most effective type of advertising for branded products is','direct advertising','indirect advertising','informative advertising','competitive advertising.','','','d','','utme','2001',85,'Admin','2016-11-15 07:01:49','2020-08-13 13:06:59'),(777,'Which of these companies are more engaged in public relations activities?','I and II','I and III','II and IV','Ill and IV.','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','b','','utme','2001',100,'Admin','2016-11-15 07:01:49','2020-08-15 00:59:22'),(778,'Which of these companies offers after-sales services?','IV','Ill','II','I','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','c','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-08-15 00:50:20'),(779,'Who are the parties to the contract of renting the room?','Musa and Jacob','Musa and Audu','Adamu and Musa','Audu and Jocob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',99,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:24'),(780,'Who is the offeree in this contract?','Musa','Audu','Adamu','Jacob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',95,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:36'),(781,'The maximum number of shareholders in a public liability company is','twenty','fifty','one hundred','unlimited.','','','d','','utme','2001',87,'Admin','2016-11-15 07:01:49','2020-07-22 21:30:06'),(782,'One way by which government reduces the repatriation of capital   is through','nationalization','divestiture','indigenization','naturalization.','','','c','','utme','2001',85,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:46'),(783,'One of the major functions of a chamber of commerce is to','promote and protect trade, industry and agriculture','advise members on regulations of other countries','settle disputes that arise out of trade','publish books and periodicals desired by members.','','','a','','utme','2001',82,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:47'),(784,'Departmentalization is an aspect of','planning','organizing','directing','controlling.','','','b','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:53'),(785,'A functional organizational structure is where','staff performing the same functions are grouped together','departments performing similar functions are grouped together','activities of similar nature are-grouped together','staff performing similar functions are grouped together.','','','c','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-08-15 00:58:37'),(786,'In the line type of organizational structure','the lines of authority are vertical','there is the application of division of labour','specialization is carried to a maximum degree','the lines of authority are horizontal.','','','c','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-23 11:40:30'),(787,'Proper disposal of waste by business firms is one way of discharging their','responsibility to government','environmental responsibility','community responsibility','responsibility to customers.','','','b','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:57'),(788,'One of the obstacles  to achieving the objectives of ECOWAS is','lack of a common currency','colonial linkages','sovereignty of states','language differences.','','','d','','utme','2001',101,'Admin','2016-11-15 07:01:49','2020-08-15 00:58:37'),(789,'One of the main objectives of establishing the Niger River Basin Commission was to','embark on a comprehensive survey of the available water resources','carry out research for the development of fresh water fisheries','develop infrastructure to facilitate economic activities','promote trade among member-states to improve standards of living.','','','c','','utme','2001',86,'Admin','2016-11-15 07:01:50','2020-08-12 08:48:16'),(790,'The most important factor that delayed the development of commerce in Nigeria was','the inefficient means of communication','that there were few entrepreneurs','the unavailability of infrastructure facilities','that there were few developed markets.','','','c','','utme','2002',125,'Admin','2016-11-15 07:26:05','2020-07-14 13:04:00'),(791,'Secondary production has to do with changing the','shape of raw materials through construction operations','physical form of raw materials into finished goods','utility of raw materials by an engineering process','nature of raw materials through manufacturing processes.','','','b','','utme','2002',134,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:01'),(792,'The major responsibility of an entrepreneur is','employing all factors of production in the business','coordinating and determining the proportion of what to produce','planning and organizing all activities in the business','directing and controlling all the affairs of the business.','','','a','','utme','2002',125,'Admin','2016-11-15 07:26:08','2020-08-10 17:23:43'),(793,'Which of the following best describes the scope of commerce?','All forms of commercial exchanges and the manufacturing industry','Buying and selling and the construction industry','All occupational exchanges relating to industries and commercial activities','Buying and selling as well as the extraction of natural resources.','','','c','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:03'),(794,'Capital as a factor of production can be used as','money that is regarded as asset','goods that are useful in business','input for further production','services that provide satisfaction','','','c','','utme','2002',136,'Admin','2016-11-15 07:26:08','2020-07-29 14:16:36'),(795,'The agency that currently oversees the privatization and commercialization processes in Nigeria is the','Securities and Exchange Commission','Technical Committee on Privatization and Commercialization','Nigerian Stock Exchange','Bureau of Public Enterprises.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:08','2020-07-23 11:40:31'),(796,'Okeze contracted to sell TV sets to Ojo. Unknown to them, the sets were stolen in transit.   This contract may be terminated on the grounds of','bankruptcy','frustration','fraudulence','breach of contract.','','','b','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:37'),(797,'Which of the following countries are members the Lake Chad Basin Commission?','Niger and Cameroun','Benin and Niger','Chad and Benin','Nigeria and Mali.','','','a','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-08-15 00:58:37'),(798,'A core investor in the current phase of privatization in Nigeria is one who','can afford to buy most the shares of the enterprises','will be at the core of the enterprises','can mobilize foreign currency equivalent to the value of the enterprises','has the technical know-how of the enterprises','','','a','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-08-15 00:50:19'),(799,'The agency in Nigeria which ensures that products conform to government quality specifications is the','Standards Organization of Nigeria','Nigerian Consumers’ Association','Manufacturers’ Association of Nigeria','Nigerian Chamber of Commerce.','','','a','','utme','2002',125,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:37'),(800,'Awarding scholarships and sponsoring sports by a business organization are examples of','advertising strategy','economic responsibility','marketing strategy','social responsibility','','','c','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:09'),(801,'The commercialization of public enterprises aimed at','increasing efficiency and making the enterprises self-sufficient','advertising a promoting the goods and services of the enterprises','increased assistance and patronage of the enterprises by the public','selling the goods and services of the enterprises.','','','a','','utme','2002',134,'Admin','2016-11-15 07:26:08','2020-08-15 00:58:36'),(802,'An author’s exclusive right to his published an unpublished works is known as','authors right','constitutional right','patent right','copyright','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-23 11:40:29'),(803,'Under the endowment policy, the money handed over to the insured at the expiration of the stipulated time or at death is the','indemnity','surrender value','lump sum benefit','insurance premium','','','c','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:12'),(804,'The machine used for sending telex messages is known as a','radar','fax machine','Dictaphone','teleprinter.','','','b','','utme','2002',144,'Admin','2016-11-15 07:26:08','2020-08-15 00:59:22'),(805,'Which of these insurance principles requires a close connection between the actual loss suffered and the risk insured','Indemnity','Proximate cause','Contribution','Subrogation.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:14'),(806,'The unit through which results of a processed data are displayed is the','logic unit','display unit','control unit','output unit.','','','d','','utme','2002',136,'Admin','2016-11-15 07:26:08','2020-08-15 00:58:35'),(807,'Which of the following is used to inform the addressee that a registered parcel is ready for collection?','Express label','Counterfoil','Telegram','Slip.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:16'),(808,'The type of computer commonly found in offices is','laptop','desktop','the hybrid computer','the mainframe computer.','','','c','','utme','2002',127,'Admin','2016-11-15 07:26:08','2020-08-12 09:06:08'),(809,'The mode of transporting crude oil to the ports for export purposes is by','tanker','rail','road','pipeline.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-08-15 00:58:36'),(810,'The temporary insurance certificate issued to the insured before drawing up a policy is a','cover  note','testimonial','time policy','proposal  form.','','','a','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:18'),(811,'The bulls and bears in the Stock Exchange market help to minimize','the number of shares and bonds sold','price increases of securities','fluctuations in the prices of securities','the elasticity of the prices of securities.','','','a','','utme','2002',144,'Admin','2016-11-15 07:26:08','2020-08-15 00:59:22'),(812,'Debentures differ from shares in that','they are secured on the company’s assets','ownership is open to the public','they form part of the capital of the business','rewards are usually paid out of profits.','','','c','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-22 21:30:16'),(813,'The Stock Exchange is a market where','long-term securities are sold','all types of securities are sold','short-term securities are sold','medium-term securities are sold.','','','b','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:27'),(814,'A retail cooperative society aims at','hoarding manufactured goods','cutting off the profit of middlemen','lending money to members at low interest rates','encouraging members to save money.','','','b','','utme','2002',127,'Admin','2016-11-15 07:26:08','2020-08-13 12:59:05'),(815,'A bill of exchange already accepted can be discounted by the holder in','the central bank','at least two banks','his bank','any bank.','','','d','','utme','2002',127,'Admin','2016-11-15 07:26:08','2020-08-15 00:59:22'),(816,'The document issued by the seller which gives details of the goods he sells is known as','catalogue','tender','price list','invoice','','','d','','utme','2002',120,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:30'),(817,'Given:  I.Retail; II.Export; III.Transport; IV.Import; V.Insurance; VI.Banking and finance; VII. Wholesale; VIII. Communication. Which of the above are aids to trade?','I, II,  III and VIII','III, V, VI and VIII','I, II, III and VI','II, V, VI and VII','','','b','','utme','2002',138,'Admin','2016-11-15 07:26:09','2020-08-15 00:58:46'),(818,'The organizational structure that relates the positions of specialists to the line managers is called','line structure','staff structure','line and staff structure','functional structure.','','','d','','utme','2002',136,'Admin','2016-11-15 07:26:09','2020-08-12 09:06:08'),(819,'A wholesaler who possesses the tittle to the goods he sells is known as','a merchant wholesaler','a multiple wholesaler','a general wholesaler','an agent wholesaler.','','','d','','utme','2002',139,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:34'),(820,'An important principle of a good organizational structure is','ideal standard','span of control','clarity of mission','adequacy of resources.','','','b','','utme','2002',128,'Admin','2016-11-15 07:26:09','2020-07-23 11:40:29'),(821,'A company that is registered with the Corporate Affairs Commission only without being enlisted on the Stock Exchange is a','public liability company','joint venture company','limited company','registered company.','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:09','2020-08-13 06:15:21'),(822,'A contract for the sale of goods involves the','producer, seller and the buyer of goods','offering of goods to customers','transfer of the title to goods for money','exchange of goods.','','','c','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:37'),(823,'The total of the share capital which a company would be allowed to issue is known as','called-up capital','paid-up capital','nominal capital','issued  capital.','','','d','','utme','2002',119,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:38'),(824,'The process of mobilizing, engaging  and maintaining workers to work for an organization is referred to as','staffing','selection','recruitment','employment.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:39'),(825,'Recognized members of the Stock Exchange who buy and sell securities on their own behalf are known as','bolls','jobbers','brokers','stags.','','','c','','utme','2002',126,'Admin','2016-11-15 07:26:09','2020-08-15 00:50:20'),(826,'Which of the following involves foreign trade?','Supermarkets','Chain stores','Departmental stores','Commodity markets.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:40'),(827,'Which of the following is a function of employers’ association?','Undertaking research on behalf of employees','Promotion of thrift in workers','Promotion of workers’ welfare','Dissemination of information through sponsored journals.','','','c','','utme','2002',148,'Admin','2016-11-15 07:26:09','2020-08-15 00:58:37'),(828,'Which of the following industries is normally located near the \tsource of its raw materials?','Footwear industry','Cement industry','Textile  industry','Automobile assembly.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-29 13:52:51'),(829,'One of the most important function of marketing is','encouraging research activities to meet needs','creating classes of merchants among businessmen','the extension of markets for businesses','providing finances to businesses','','','a','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:43'),(830,'Securities on which the buyers are not issued with certificates are called','authorized securities','inscribed securities','bearer securities','registered securities.','','','b','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-23 11:40:31'),(831,'In product pricing, which of these elements needs more consideration than others?','the demand for the product','the demography of the buyers of the product','the economic conditions in the market','the cost of producing the product.','','','d','','utme','2002',140,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:45'),(832,'The principal objectives of the Central Bank of Nigeria can be classified broadly into','bankers’ bank, lender of last resort and issuance of currency','service, currency management and financial intermediation','banking services, foreign exchange operations and open','markets operations service, monetary policy and developmental functions.','','','a','','utme','2002',146,'Admin','2016-11-15 07:26:09','2020-08-13 12:59:05'),(833,'The letters E and OE stand for','errors of exception','errors  and omissions expected','estimated and order error','end of error.','','','b','','utme','2002',133,'Admin','2016-11-15 07:26:09','2020-08-13 06:15:21'),(834,'An important issue for consideration in the product element of the marketing mix is the','adequate promotion of the product','channel of distribution of the product','price of the product','planning and development of the product.','','','d','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-16 15:29:37'),(835,'group of companies is a collection of','subsidiaries and their holding company','firms','associates and their holding company','industries.','','','a','','utme','2002',141,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:49'),(836,'Which of the following is an example of trade associations?','European Union','National Marketing Board','Organization of African Unity','National Farmers’ Council.','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:50'),(837,'Which of the following determines the quality of goods that a retailer sells','The mode of contract of sales','The type of manufacturer','The regulations regarding sales in the area','The location of his shop.','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-08-15 00:50:19'),(838,'An advantage of hire purchase to the consumer is the','economies of scale in production','possession of goods before payment','increase in turnover and profits','low interest rate chargeable.','','','b','','utme','2002',121,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:52'),(839,'The founders’ shares are usually referred to as deferred shares because the holders','are entitled to cumulative dividends','receive their dividends after other shareholders','receive   their   dividends   before   other shareholders','are not entitled to any dividends.','','','a','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-08-15 00:59:22'),(840,'An example of a service -rendering trade association is','Nigerian Bar Association','Association of Nigerian Miners','Cocoa Farmers ’Association','Manufacturers ’Association of Nigeria.','','','a','','utme','2003',101,'Admin','2016-11-15 10:56:19','2020-07-23 11:40:28'),(841,'An obstacle to international trade is','trade imbalance between   countries','availability of  local market','quantity and quality of labour','cost of finance','','','a','','utme','2003',77,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:55'),(842,'The right  of ownership with respect to goods or property is','right of occupancy','proxy','title','certificate of occupancy','','','c','','utme','2003',107,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:56'),(843,'The main motive of chambers of commerce and trade associations is to','assist government in achieving its objectives','protect the interest of consumers','maximize profit','protect and promote the interests of members','','','a','','utme','2003',95,'Admin','2016-11-15 10:56:19','2020-07-23 16:34:07'),(844,'A pattern that shows the kinds of participants involved in the production, distribution and ultimate use of a product is referred to as','selection','strategy','structure','synergy','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:58'),(845,'Goods that are manufactured or acquired by the seller after the contract of sale are','specialty goods','future goods','specific goods','general goods','','','c','','utme','2003',90,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:00'),(846,'What was the amount paid by Ojo?','N382,500','N425,000','N363,375','N61,625','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','c','','utme','2003',91,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:01'),(847,'How much was the trade discount?','N42,500','N27,500','N22,500','N20,000','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','a','','utme','2003',98,'Admin','2016-11-15 10:56:20','2020-07-29 18:51:38'),(848,'The basic function of the Nigerian Ports Authority is to','ensure that the right caliber of personnel is  employed at the ports','coordinate and regulate the activities of  shipping lines','facilitate and control the movement of goods and services into and out of the country','coordinate the activities of all the seaports in the country','','','d','','utme','2003',91,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:03'),(849,'The concept that refers to the sale, transfer or exchange of goods and services is','industry','trade','tariff','marketing','','','b','','utme','2003',98,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:04'),(850,'A guarantee given by one person or party to another in which \tthe integrity of the person is assured is','fidelity','term assurance','subrogation','indemnity','','','a','','utme','2003',87,'Admin','2016-11-15 10:56:20','2020-08-15 00:50:21'),(851,'A firm that adapts itself to delivering the desired satisfaction more effectively and efficiently than its competitors is said to be practicing','price concept','distribution concept','product concept','marketing concept','','','d','','utme','2003',109,'Admin','2016-11-15 10:56:20','2020-08-15 00:50:19'),(852,'The payment made periodically in respect of an insurance policy entered into is known as','bond','commission','premium','surrender value','','','c','','utme','2003',93,'Admin','2016-11-15 10:56:20','2020-08-12 08:48:16'),(853,'An example of service rendered by NIPOST is','electronic mail','courier','telephone','mail delivery','','','d','','utme','2003',98,'Admin','2016-11-15 10:56:24','2020-08-15 00:58:38'),(854,'The focal point of marketing is','the competitor','the buyer','profit-making','sales','','','d','','utme','2003',99,'Admin','2016-11-15 10:56:24','2020-08-13 13:06:59'),(855,'The type of marine insurance which covers either damage or loss to the vessel and such as caused by it to other vessels is','hull insurance','time insurance','freight insurance','cargo insurance','','','a','','utme','2003',99,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:10'),(856,'The management function that makes the difference in intensity of behaviour is','coordinating','controlling','motivation','planning','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:24','2020-07-23 11:40:31'),(857,'One of the functions of seaports is the provision of','berthing and landing facilities','loading and off-loading facilities','control room for relaying radio messages','warehouses for storage of cargo.','','','b','','utme','2003',95,'Admin','2016-11-15 10:56:24','2020-08-12 08:48:16'),(858,'The process of dividing tasks into jobs and departments and of delegating authority is known as','staffing','leading','directing','organizing','','','d','','utme','2003',99,'Admin','2016-11-15 10:56:25','2020-08-13 06:15:21'),(859,'Communication process involves the transmission of a message over a selected channel to the','receiver','audience','sender','encoder','','','b','','utme','2003',95,'Admin','2016-11-15 10:56:28','2020-08-15 00:58:46'),(860,'Stimulation of demand is a kind of communication in marketing which connotes','personal selling','sales promotion','advertising','merchandising','','','c','','utme','2003',88,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:16'),(861,'A functional structure is an organizational structure in which','abstract rules are applied','equity prevails','a specialist enforces his directives','there is no hierarchy.','','','c','','utme','2003',78,'Admin','2016-11-15 10:56:29','2020-07-29 18:51:38'),(862,'Entrepreneurship mainly involves','risk-taking','initiating','skilled manpower','knowledge','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:26'),(863,'In the event of the liquidation of a company the first to be settled are','debenture holders','members  of the  board','preference shareholders','ordinary shareholders.','','','a','','utme','2003',104,'Admin','2016-11-15 10:56:29','2020-08-12 09:06:08'),(864,'The business organization established mainly for the purpose of carrying out specific assignments for a specific duration is a','joint venture','cooperative society','partnership','company.','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:28'),(865,'Which of these factors of production is relatively fixed in supply?','Capital','Entrepreneur','Human resources','Natural resources','','','d','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:29'),(866,'The location of a business is mostly influenced by','market outlet','management decision','capital','environment','','','d','','utme','2003',139,'Admin','2016-11-15 10:56:29','2020-08-01 15:32:10'),(867,'The evolution of commerce in Nigeria is traceable to the','period of barter economy as human needs became limitless','desire by human beings to satisfy their needs through the services of other people in the society','development of human civilizations and the desire to meet their needs','primitive stage of existence of  human beings.','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:31'),(868,'One of the requirements necessary for setting up a business is','registration','advertisement','knowledge of the business','documentation','','','c','','utme','2003',96,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:32'),(869,'The assembling of products into usable forms is known as','construction','manufacturing','formation','creation','','','b','','utme','2003',101,'Admin','2016-11-15 10:56:29','2020-07-22 21:21:37'),(870,'The government’s policy thrust on the business environment is to','promote experts','attract investors','be self-sufficient','increase production','','','b','','utme','2003',87,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:33'),(871,'Social responsibility is the ability of an organization to','tackle the socio-economic problem of its community','meet the needs of its community','contribute to sustaining   and developing its community','operate without disrupting the very essence of the environment.','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:34'),(872,'The act of a person employing another to enter into a contract on his behalf is known as','business','sale of goods','bilateral agreement','agency','','','d','','utme','2003',94,'Admin','2016-11-15 10:56:29','2020-08-15 00:58:44'),(873,'The ECOBANK is the initiative of','some well-meaning Nigerian shareholders','the Federal Government of  Nigeria','West African states to foster trade','the Lagos State Government to enhance capital mobilization.','','','c','','utme','2003',93,'Admin','2016-11-15 10:56:29','2020-07-23 16:34:08'),(874,'Privatization is concerned with','equal ownership between  the public and the government','the dilution of ownership among the public','the individual ownership of companies','government ownership of companies.','','','c','','utme','2003',91,'Admin','2016-11-15 10:56:29','2020-08-15 00:58:37'),(875,'Electronic computers differ from human beings in that they process data and minimize errors in a','faster and more accurate manner','more organized manner','faster but less accurate manner','slower but more accurate manner','','','a','','utme','2003',98,'Admin','2016-11-15 10:56:29','2020-08-15 00:58:46'),(876,'A major benefit derivable from the privatization and commercialization of public enterprises in Nigeria is','increase in wages','employment generation','information technology','revenue generation','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:46'),(877,'The device which interprets and carries out the instructions presented to it by the computer program is known as','software','microprocessor','mouse','hard-disk','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:33','2020-08-15 00:50:19'),(878,'The market structure, business conditions and financial systems in Nigeria constitute the','economic environment','political environment','cultural environment','technological environment','','','a','','utme','2003',82,'Admin','2016-11-15 10:56:34','2020-08-12 09:06:08'),(879,'The protection of consumers against exploitation by manufacturers is to ensure','that there are varieties of products','that the right quality of goods and services is sold','increase in production capacity','increase in the level of consumer awareness.','','','b','','utme','2003',98,'Admin','2016-11-15 10:56:34','2020-08-15 00:58:44'),(880,'The most widely used computer language that focuses on solving science-oriented problems is','FORTRAN','BASIC','ADA','COBOL','','','a','','utme','2003',111,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:55'),(881,'Banks are engaged in the business of buying and selling of','bills of exchange','instruments of credit','intangible products','land','','','a','','utme','2003',97,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:56'),(882,'A source of short-term finance to companies is','share capital','debentures','retained earnings','corporate tax','','','c','','utme','2003',96,'Admin','2016-11-15 10:56:34','2020-07-22 21:21:37'),(883,'The body charged with the responsibility to register shares for subscription on the stock market in Nigeria is the','Securities and Exchange Commission','Nigerian Stock Exchange','Nigerian Deposit Insurance Company','Central Bank of Nigeria,','','','a','','utme','2003',94,'Admin','2016-11-15 10:56:34','2020-08-15 00:50:19'),(884,'An essential factor for evaluating the different sources of funds for a business is the','decree establishing the business','ownership structure of the business concern','size and the type of the business','burden of cost and repayment','','','b','','utme','2003',85,'Admin','2016-11-15 10:56:34','2020-07-22 21:30:15'),(885,'Money can simply be referred to as a','medium of exchange','means for the settlement of debts','durable asset for doing business','stands of value','','','a','','utme','2003',105,'Admin','2016-11-15 10:56:34','2020-08-15 00:50:19'),(886,'A type of  long-term loan granted to companies with fixed interest as well as with redeemable and irredeemable features is referred to as','a debenture','a bond','a term loan','an overdraft','','','a','','utme','2003',102,'Admin','2016-11-15 10:56:34','2020-07-14 13:06:01'),(887,'Public debt management is one of the functions of a','merchant bank','central bank','commercial bank','development bank.','','','b','','utme','2003',203,'Admin','2016-11-15 10:56:38','2020-08-15 00:58:36');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `crk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=696 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `crk` VALUES (1,'In Jesus’ teaching on the mount, the only justifiable reason for divorce is ','indolence ','insubordination ',' infidelity ','infertility','','','c','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(2,'According to John’s Gospel, Lazarus was from: ','Jerusalem  ','Teberias ','Bethany ','Galilee','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:55'),(3,'Jesus’ new commandment according to the Gospel of Jesus of John is ','salvation ','love ','peace ','spirit','','','b','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(4,'The thief as described by Jesus comes to ','destroy, kill and steal ','destroy, steal and kill ','kill, destroy and kill ','steal, kill and destroy ','','','d','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(5,'The agony of Jesus in the Garden of Gethsemane is a ','sign of abandonment ','manifestation of human weakness ','punishment ','preparation for his death','','','d','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:58'),(6,'Eutychus fell from the third storey to the ground when Paul  prolonged his sermon at ','Troas ','Ephesus ','Miletus ','Corinth.','','','a','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(7,'Charismatic leaders in the Book of Judges arose in Israel to ','revive faith in Yahweh ','rally the tribe together ','lead the Israel to battles ','settle dispute','','','c','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:01'),(8,'What did God create on the fifth day? ','the firmament  ','the two great light ','water under the heaven ','living Creature','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(9,'Joshua and Caleb were from the tribe of ','Judah and Rueben ','Reuben and Dan ','Ephraim and Reuben ','Judah and Ephraim','','','d','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(10,'Manahem, the son of Gadi reigned over Israel for ','eight years ','twenty years ','six month ','ten years.','','','d','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:04'),(11,'The death of Adonibezek in Bezek was a typical proof of ','cowardice ','nemesis ','insanity ','absurdity','','','b','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(12,'In order that Benjamin might be brought to Egypt, Joseph  ','Reuben ','Judah ','Simon ','Zebulon','','','c','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(13,'When Paul came to Rome, the first set of people to whom he preached were the ','Romans ','Jews ','Greeks ','Samaritans.','','','b','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(14,'The three sons of Noah Sdhem, Ham and ','Lot ','Hirah ','Cain ','Japeth.','','','d','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(15,'The renowned interpreters of the Mosaic Law in the time of Jesus were the ','Sadducees ','Scribes ','Herodians ','Pharisees','','','d','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(16,'The mother of Esau is ','Ruth ','Ester ','Rebecca ','Jezebel  ','','','c','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:09'),(17,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) Who was the speaker? ','Joseph ','Jacob ','Job ','James','','','b','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:10'),(18,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29)  When did he say this? ','When he was about to die ','When he was seriously sick ','When he offended God ','When his brother cheated him','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:11'),(19,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) What was his wish? ','he wanted to buried at Canaan in the cave at Ephron ','he wanted to be buried at Jericho ','he wanted to commune with his ancestors ','he wanted to be closed to his fathers.','','','a','','post-utme','2006',67,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(20,'Who was authorized by God to go and liberate the Israelites the Egyptian bondage? ','Joshua ','Daniel ','Solomon ','Moses.','','','d','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(21,'The names of the two kings of Jericho destroyed by the Israelites during the conquest were ','Adonija and Haggith ','Shion and Og ','Zadok and Benaiah ','Hiram and Jeroboam.','','','b','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:14'),(22,'Who is an atheist? ','someone who does believe in God ','someone who rejects completely the idea of a divine being ','someone who believes that it is impossible to know if there is God or not ','someone who abuses religious people.','','','b','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(23,'What is meant by the Christian doctrine that God is Trinity? ','the idea started in Trinidad and Tobago ','God is three persons in one ','God is omnipotent ','God is the Holy Spirit','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:16'),(24,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus                              ','','','d','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(25,'The person who the Bible calls the son of consolation is ','Barsabas ','Barabbas ','Barnabas ','Bathsheba','','','c','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:18'),(26,'Who do people say the son of man is? Jesus asks this question to know people’s ','desires ','demand  ','mind ','opinion','','','c','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(27,'In Peter’s teaching,” God…………..the proud and gives grace to the humble','receives ','relegates ','resists ','restores.','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(28,'The lesson which Jesus teaches in the parable of the Good Samaritan is that your neighbor is','only your friend  ','your next of kin  ','a distant friend ','anyone who needs your  help','','','d','','post-utme','2007',60,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(29,'Amram and Jochebad gave birth to : ','Mirian ','Jedida ','Jethro ','Hur','','','a','','post-utme','2007',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(30,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Zipporah and Pauh ','Pauh and Miriam ','Shiphrah and Zipporah ','Shiprah and Puah','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-27 02:54:01'),(31,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:23'),(32,'Daniel was delivered from the den of lions for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power','','','b','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(33,'Which of the following carried Judah into captivity ','Pharaoh Neco of Egypt ','Goliath of Philistia ','Assyrian ','Nebuchadnezzar of Babylon','','','d','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:25'),(34,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','slaughter of all his sons ','city of Jerusalem ','feasting of the children of Israel ','','','b','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(35,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-08-05 20:11:11'),(36,'The king of Persia who made it possible for the return of the exiles from Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(37,'The meaning of Emmanuel is ','laughter ','“for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:29'),(38,'“Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:35'),(39,'One of the following said: “the lion has roared who will not fear? The Lord has spoken, who can  but prophesy?” ','Nathan ','Jeremiah ','Amos ','Hosea','','','c','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(40,'Where did Paul cure a slave girl who had a spirit of divination ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:32'),(41,'Joshua’s first victory was over the people of ','Ai ','Gibeon ','Gilgal ','Jericho','','','d','','post-utme','2007',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:33'),(42,'Josiah’s reign was popular because of his ','allies ','victory ','violence ','reforms','','','d','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(43,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:35'),(44,'Who baptized the Ethiopian Eunuch? ','Paul ','peter ','Philip ','Rufus','','','c','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(45,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:36'),(46,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah.','','','c','','post-utme','2007',78,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:23'),(47,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(48,'The person who the Bible calls the consolation is:  ','Barsabbas ','Barabbas ','Barnabs ','Bathsheba','','','c','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(49,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','Slaughter of his son ','city of Jerusalem ','feasting of hiss children of Israel','','','b','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:40'),(50,'Daniel was delivered from the den of lion for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power.','','','b','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:41'),(51,'Name three places Christian religious people look up to find the truth about the nature of God','In the sacred scripture ','In the religious leader ','In the church ','In their conscience.','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:42'),(52,'Explain why Jesus was identified as the lamb by John (Jn:1:29 ) ','lamb of God is a figurative language which describes Christ sacrificial mission in the word ','he is being compared to the Passover Lamb that would atone for the sins of all world ','Because the lamb is attentive to his owner ','it shows patience, meekness, gentleness and innocence','','','b','','post-utme','2008',60,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(53,'Who do people say the son of man is? Jesus asks this question to know people’s ','desire ','demand ','mind ','pinion','','','c','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(54,'In Peter’s teaching,” God…………the proud and gives grace to the humble ','receives ','relegates ','resists ','restores','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(55,'The lesson, who Jesus teaches in the parable of the Good Samaritan is that your neighbor is ','only your friend ','your next of king ','a distant friend ','anyone who needs your help','','','d','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:46'),(56,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus','','','d','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(57,'Which of the following carried Judah into captivity ','pharaoh  Neco of Egypt ','Goliath of philistia ','Assyrians ','Nebuchadnezzar of Babylon','','','d','','post-utme','2008',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:48'),(58,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(59,'Amram and Jochebad gave birth to : ','Miriam ','jedida ','Jethro ','Hur','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(60,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Ziporah and Puah ','Puah and Miriam ','Shiphrah and Zipporah ','Shiphrah and Puah','','','d','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(61,'The king of Persia who made it possible for the return of the exiles form Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:35'),(62,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(63,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah','','','c','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-08-07 08:29:17'),(64,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2008',58,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(65,'The meaning of Emmanuel is ','laughter ','for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(66,'Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:55'),(67,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-04 17:24:29'),(68,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:56'),(69,'One of the following said: “the lion has roared who will not fear? ','Nathan ','Jeremiah ','Amos ','Hosea','','','a','','post-utme','2008',71,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(70,'Josiah’s reign was popular because of his ','Allies ','victory ','violence ','reforms','','','d','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-08-04 17:24:29'),(71,'Where did Paul cure a slave girl who had a spirit of divination? ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(72,'Who baptized the Ethiopian Eunuch? ','Paul ','Peter ','Philip ','Rufus','','','c','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:02'),(73,'Joshua’s first victory was over the people of ','Ai ','Gideon ','Gilgal ','Jericho ','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:03'),(74,'“There shall be neither dew nor rain this year except by my word” Who said this?','Moses ','Pharaoh ','Elijah ','Esther ','','','c','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-07 08:29:17'),(75,'In the case before Solomon over the deal and the living, child the mother of the dead child supported. ','Giving the living child to her opponent ','Killing the living child ','joint ownership of the living child ','king Solomon having the living child','','','b','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(76,'Before Moses died. God appointed ………. to succeed him ','Aaron ','Balaam','Joshua ','Manasseh ','','','c','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(77,'Those bitten by the serpent were treated by ','Drinking from the Red sea ','fasting for seven day ','looking at the bronze serpent ','call upon the lord ','','','c','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:35'),(78,'In order that Benjamin might be brought to Egypt, Joseph detained ','Ruben ','Levi ','Jacob ','Simoen ','','','d','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(79,'Those inspired by God to lead the tribes of Israel in battle were the ','Judges  ','Captains of Guard  ','priest  ','prophet  ','','','a','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:23'),(80,'God told Samuel that he, would punish Eli because he  ','did not correct his son’s sinful behavior ','did not offer sacrifice as the: Law ','did not warn the people of Israel to stop surfing ','Warned his sons against rape and drunkenness','','','a','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(81,'The sun stood still when ','Moses led Israel across the Red sea ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorite at Gideon ','','','d','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(82,'Who is reputed for pulling down the altar of Baal at the risk of annoying his father? ','Joseph ','Jesse ','Gideon   ','Samuel ','','','c','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:11'),(83,'In the trade treated between King Solomon and Lebanon, Solomon was to supply wheat and oil while Hiram was to supply','Grains only ','precious stories ','wheat advice ','Timber ','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:12'),(84,'Which prophet cried thus “woe is me” for lost, I am a man of unclean lips ','Hosea ','Jeremiah ','Isaiah ','Micah ','','','c','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(85,'Hosanna means  ','Ride on in majesty ','Ride on Glory ','Ride on to die ','Save me','','','d','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(86,'The conversion of Paul was made possible by','Simeon ','Zacchaccus ','the risen Lord ','Mathew ','','','c','','post-utme','2009',60,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:15'),(87,'Let his habitation be made desolate, and let there be no one to live in it’ who is being referred to here?  ','King soul ','Judas Iscariot ','Stephen ','Barnabas ','','','b','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(88,'The proconsul when Paul arrived in commit was called','Festus ','portions ','Pilate ','Gallio ','','','d','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:23'),(89,'‘Now I known that Lord has sent his angel to deliver me ……”who said this? ','Joseph ','Moses ','Paul ','Peter ','','','d','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(90,'The seven deacons were appointed by ','conduct a mission to the Gentiles','Replace the twelve ','Lead the church in Jerusalem ','Help in the distribution of food ','','','d','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(91,'What did God create on the 6th day ','The firmament ','light ','Dry land and sea ','man and living creatures ','','','d','','post-utme','2009',63,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(92,'Joshua’s first victory was in ','Ai ','Gibeon ','Jordan ','Giligal ','','','c','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:20'),(93,'In the parable of the sower, the seeds on the good ground represent those who ','Accept and live by the world of God ','feed the poor ','Have and love riches ','Give alms in market places ','','','a','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(94,'Which prophet encouraged Jeroboam I to  revolt at the initial stage? ','Micaiah ','Jeremiah ','Nathan ','Joel ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:22'),(95,'‘This had is gone: and where shall I go’ who is being referred to here ','Isaac ','Joseph ','Peter ','Silas ','','','b','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(96,'According to Psalm 51, the sacrifice acceptable to God is','A clean hear ','Obedience ','A blemish less lamb ','A broken spirit ','','','c','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-26 19:30:54'),(97,'A would –be apostle who puts his hand to the plaughjsa and looks back lacks ','faith ','Kindness ','Repentance ','Total commitment ','','','d','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(98,'For which of these prophets of God did the Bible record explicitly to have abandoned an agribusiness for a call to serve God? ','Elisha ','Ezekiel ','Elijah ','Obadiah.','','','a','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:26'),(99,'Why did David spare the life of Saul at Ziph? ','he recognized Gods anointing on Saul ','Saul was also an Israelite ','He did not want blood shed ','He was Saul’s in- law','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(100,'Deborah was a judge when Israel was under the yoke of ','Moab ','Midian ','Canaan ','Philistine','','','c','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:55'),(101,'The treatment of those  bitten by fiery serpent was to ','drink from the Red sea ','look at the bronze serpent ','fast for seven days ','call upon the lord','','','b','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:55'),(102,'Which of these was detained by Joseph in order that Benjamin might be brought to Egypt ','Reuben ','Levi ','Judah ','Simon','','','d','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(103,'In the biblical account of creation, man was permitted to ','plant fruit trees for food ','water the garden ','make garment of hides and skin ','name all the creatures','','','d','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:31'),(104,'Each of these spies sent out by Moses on God’s command to report on the nature of the promised land was a ','great warrior ','wise judge ','priest ','leaders in his own tribe','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:32'),(105,'God reveal to Samuel that he was going to punish Eli because he ','did not correct his sons sinful behavior ','did not offer sacrifice as the law required ','did not warn the people of Israel to stop sinning ','warned his sons but did not punish them','','','d','','post-utme','2010',80,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(106,'The sun stood still when ','Moses led the Israelites out of Egypt ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorites at Gideon','','','d','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(107,'When was this statement made? ‘I repent that I Made Saul king \\'','at the anointing of Saul ','When Saul failed to ray ','When Saul disobeyed God over Amalek ','When Saul finished the morning offering','','','c','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(108,'The commander of David’s army was ','Abner ','Joab ','Abiathar ','Adonijah','','','b','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(109,'That was the sin of David that involved Bathseba? ','Murder ','adultery ','dishonesty ','arrogance','','','a','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(110,'What is the meaning of Emmanuel? ','Son of Emmaus ','God is our Redeemer ','God with us ','Saviour','','','c','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:56'),(111,'What specific reply did John the Baptist give to the soldiers during his preaching ','collect no more than is appointed you ','do not begin to say to yourselves: we have Abraham as our father ','bear fruits that befit repentance ','be content with your wages','','','d','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-15 03:50:53'),(112,'Jesus taught that one should make friends quickly with one’s ','enemy ','neighbor ','master ','accuser','','','d','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-08-07 08:29:17'),(113,'The Pharisees and the Scribes accused the disciples of Jesus transgressing the tradition of the elders because they ','did not regard synagogue rules ','did not pray before meals ','ate with unwashed hands ','disobeyed the elders','','','c','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-08-04 17:26:45'),(114,'If anyone would be first, he must be last of all and servant of all. What does this saying of Jesus teach? ','endurance ','lack of ambition ','humility ','relaxation','','','c','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:53'),(115,'Which religious groups asked Jesus about payment of taxes to Ceaser? ','Pharisees and Sadducces ','Pharisees and Herodians ','Sadducces and herodians ','Herodians and Zealots','','','b','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:54'),(116,'To whom was the body of Jesus Christ given for burial after His death? ','Nicodemus the Pharisee ','Simon of Cyrene ','Simon the disciple ','Joseph of Arimathea.','','','b','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(117,'Paul was accused of apparently being a preacher of foreign divinities in Athens because he preached Jesus and the ','Cross ','Law ','resurrection ','second coming','','','c','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:56'),(118,'What specifically makes Samson a unique prophet of God? ','He was a Nazarene ','He loved honey ','He killed many at his death ','He spoke with power in riddles','','','a','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(119,'“It is not the sound of shouting for victory, or the sound of the cry of defeat, but the sound of singing that I hear” When was this statement made? ','at the consecration of the Israelites ','at the crossing of the Red Sea ','during the fall of Jericho ','in a strange worship of a god','','','d','','post-utme','2010',85,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(120,'“Blessed be the Lord God of Israel is a hymn of praise by ','the virgin Mary at the Annunciation ','Zachariah at the birth of John the Baptist ','Simeon at the presentation of Jesus in the temple ','Elizabeth at the visit of Mary','','','b','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:59'),(121,'The shema emphasizes the ','unity of God ','richness of the spirit of God ','omnipotence of God ','crucial role o’ Israel in the world.','','','c','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(122,'The expression ‘dry bones’ in Ezekiel refers to ','an Israelites proverb ','the whole house of Israel ','the slain in the valley ','sinful Israelites and Judean','','','b','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(123,'What Josiah, the king of Judah, is best remembered for in Jewish history is ','His ability to destroy all the shine of Baals','His order that the bones and tombs of the prophets of God must be preserved ','His strong opposition to Pharaoh-Neco of Egypt ','His reparation of the temples of God','','','d','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(124,'After receiving an order from God, Jonah went down to…………….  ','Joppa ','Tarshish  ','Nineveh','Jerusalem ','','','b','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:03'),(125,'True religion, according to Amos’ submission, is the one in which  ','God is always appeased with sacrifices and tithes ','Foods and drinks are served as a mark of love ','Justice and righteousness flows like an endless stream  ','Feast and solemn assemblies play important roles ','','','c','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:04'),(126,'The last born of Gomer for Hoshea was ………….  ','Jezreel','Loammi ','Diblaim  ','Loruhamah ','','','b','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(127,'According to Paul in Romans, the law and the prophets bore witness to the righteousness of God but man could not be justified until he  ','Had faith in Jesus ','Saw the glory of God ','Made a serious personal effort ','submitted wholly to the law ','','','a','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:06'),(128,'One of the following was not among the religious sects in the New Testament ','The Pharisees','The Nazarenes ','The Essences   ','The Sadducees','','','c','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-08-07 08:29:17'),(129,'One of the following  is not correct about the order of creation in the Creation Stories ','the evening came before the morning ','darkness came before light','animals were created before man ','the morning came before the evening','','','d','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:07'),(130,'What was Cain’s immediate reaction to the acceptance of Abel’s offering?','He offered another sacrifice ','He was angry and his countenance fell ','He was angry with God','He was angry with Abel ','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(131,'Pick the odd out of the following characters:  ','Saul   ','David','Jonathan','Solomon','','','c','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(132,'“Talitha cumi”  means  ','Dorcas, Arise','Little girl, I say to you, arise ','Thy will be done','Jesus is coming','','','b','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(133,'Who according to James blaspheme the honourable name by which Christians are called','Non believers','Pagan rulers','Antichrists','Rich people','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:11'),(134,'Who was the last person Jesus appeared to after his resurrection according to Paul?','Mary Magdalene','Joseph of Arimathea  ','Paul','Thomas','','','c','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:12'),(135,'How many disciples of Jesus Christ were fishermen? ','two  ','three  ','four','five','','','c','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(136,'Who among the seven deacons was an evangelist who had four daughters who prophesied?  ','Stephen','Philip ','Barnabas   ','Nicholas','','','b','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(137,'“God has given your enemy into your hand this day, now, therefore, let me pin him to the earth with one stroke of the spear, and I will not strike him twice”. This statement was made to David by','Abishai ','Abner    ','Ahimelech ','David’s armour bearer','','','a','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(138,'The phrase ‘you cows of Bashan’ referred to ','Cows in the land of Bashan  ','The fat and greedy men of Israel who oppress the priest ','The fat and greedy women of Israel who oppress the poor  ','The fat rich women of Samaria who oppress the poor.','','','d','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(139,'The book of _______ mostly emphasized social justice ','Amos ','Ezekiel  ','Hoshea  ','Isaiah.','','','a','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:17'),(140,'Among the spiritual gifts, love is supreme because it ','facilitates development ','gives room for friendship ','has eternal value ','promotes understanding','','','c','','post-utme','2011',82,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(141,'John the Baptist describes Jesus to his two disciples as the ','beloved Son of God ','great one of Israel ','holy one of God','lamb of God.','','','d','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:18'),(142,'Joseph’s brothers hated him the more because ','he dreamed about his future dominion over his family members ','he used to give his father evil reports about them ','his father had him at his old age ','his father made a special robe for him','','','a','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:19'),(143,'After eating the forbidden fruit Adam’s and Eve’s eyes opened and they realized that they ','had sinned against God','had disobeyed God   ','were naked  ','had been deceived by the serpent.','','','c','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(144,'What did Ahab do to Prophet Micaiah for speaking the truth about the war between Israel and Syria? ','he promoted him ','he gave him a gift ','he denied him any fox ','he imprisoned him.','','','d','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:21'),(145,'The Amalekites who opposed the Israelites in the wilderness were from the lineage of  ','Benjamin ','Jacob ','Esau ','Reuben','','','c','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:22'),(146,'During the period of three and a half years of drought in Israel, the man who hid one hundred prophets of God in a cave was  ','Isaiah  ','Lisha ','Elijah ','Obadiah','','','d','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:23'),(147,'During his first missionary journey, Paul first recorded sermon was delivered at  ','Perga   ','Iconium ','Antioch','Lystra ','','','c','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:24'),(148,'In his second letter to the Christians in Thessalonians, Paul admonished them to have nothing to do with anyone who refused to obey what he wrote in the letter. What did Paul think would happen to the person?  ','The person would be encouraged  ','The person would be ashamed  ','The person would be disturbed  ','The person would repent','','','b','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(149,'In the Sermon on the Mount, the meek are blessed because  ','They shall see God  ','They shall be exalted  ','They shall inherit the earth  ','They shall be called sons of God ','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:26'),(150,'Which of the following is not a natural miracle:  ','Stilling of the storm  ','Walking on the sea  ','Raising of Lazarus from the dead  ','Feeding the five thousand','','','d','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:27'),(151,'The prophet whose message was primarily on social justice and true religion is  ','Isaiah  ','Agabus  ','Amos  ','Jeremiah','','','d','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-08-15 23:15:08'),(152,'The prophet who prophesied that Paul would be arrested in Jerusalem is  ','Isaiah  ','Agabus  ','Philip  ','Stephen  ','','','b','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:28'),(153,'One of the lessons one can derive from the story of Deborah the Prophetess is that  ','Women are not good warriors  ','Women should not be allowed to take leadership roles  ','Women’s rights should be fought for by all ','God can use anyone regardless of their gender and tribes.','','','b','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:29'),(154,'One of the following is not among the reasons why Jesus taught in Parables  ','to fulfill the prophecy in Psalm 78:2  ','to create understanding  ','to make people learn the unknown through the known  ','to show the omniscient power of Jesus','','','b','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:30'),(155,'The disciple in Damascus who prayed for Saul (Paul) to receive his sight after his conversions was  ','Ananias ','Sapphira  ','Barnabas  ','Thomas ','','','a','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-08-14 18:59:15'),(156,'According to James, one of the causes of wars among Christians is ','their passions  ','their wickedness  ','their faith without work  ','their pride','','','a','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(157,'One of the following was not among the decisions reached at the Council of Jerusalem concerning the Gentiles who became Christians:  ','That Gentiles should obtain from what has been sacrificed to idols  ','The Gentiles should abstain from blood  ','That Gentiles should abstain from what is strangled ','That Gentiles should abstain from love of the world ','','','d','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:33'),(158,'“Thy glory, O Israel upon thy high places! How are the mighty fallen! Tell it not in the streets of Ashkelon… How  are the mighty fallen in the midst of the battle!” The above dirge was written by David when  ','He killed Goliath  ','Uriah the Hittite died  ','Saul and Jonathan died  ','Abner was killed by Joab','','','c','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(159,'Who was one of the Seven Deacons who had four daughters who were prophetesses?  ','Nicolaus  ','Stephen  ','Prochorus  ','Philip ','','','d','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(160,'According to the Letter to the Hebrews, why should Christians lay aside every weight and sin which clings so closely?  ','Sin is contagious  ','Christian can easily be influenced by sinners  ','Christians are surrounded by so great a cloud of witness  ','No sinner will inherit the kingdom of God ','','','c','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(161,'“To obey is better than sacrifice” came from  ','Prophet Daniel  ','Prophet Ezekiel  ','Prophet Elijah  ','Prophet Samuel ','','','d','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(162,'The three sons of Saul who lost their live on Mount Gilboa were  ','Jonathan, Ishbosheth and Abinadab  ','Abinadab, Jonathan and Ishbosheth  ','Jonathan, Abinadab and Malchisua  ','Ishbosheth, Malchishau and Abinadab','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:38'),(163,'The original name of Shadrach was  ','Daniel  ','Mishael  ','Hananiah  ','Azariah','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:55'),(164,'The person who was invited to nurse Moses was ','Jochebed  ','Puah  ','Shiphrah  ','Miriam ','','','a','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-29 13:58:20'),(165,'“… But let judgment run down as waters, and righteousness as a mighty stream… “Fairness, judgment and righteousness were set aside during the time of  ________ for burnt and meat offerings.','Amos  ','Hosea  ','Ezekiel  ','Hezekiah ','','','a','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(166,'Eli’s inability to discipline his sons led to all the following except  ','God’s curse on his family  ','the extension of his life span  ','the cancellation of priesthood from his lineage','the death of his sons','','','b','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(167,'Who was the King of Judah who witnessed the second deportation?  ','Gedaliah  ','Jehoiachin  ','Zedekiah ','Jehoiakim','','','c','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:42'),(168,'Paul, the apostle to the gentile, was a native of  ','Perga in Pamphylis  ','Rome  ','Jerusalem  ','Tarsus ','','','b','','post-utme','2012',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:43'),(169,'In the Sermon on the Mount, Jesus taught his disciples that whenever they faced persecution, they should  ','be more serious with their drive for souls ','be rejoiced and be exceedingly glad  ','withdraw and  be less active  ','resist persecution and fight for their rights  ','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(170,'According to Peter, Judgment of God must first begin in  ','the house of God  ','the public places  ','the midst of criminals ','the government auditoria ','','','a','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:45'),(171,'Paul told the believers in Corinth that no one can say Jesus is Lord except by  ','knowledge  ','revelation  ','grace  ','the Holy Spirit ','','','a','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(172,'Render to Caesar the things that they are Caesar’s and to God the things are God’s, the above quotation emphasizes  ','Obedience to divine authority  ','Striking a balance between civil and divine authorities ','Disobedience to civil authority  ','Total rejection of both divine and civil authorities','','','b','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(173,'The women sang and said David slain his ten thousands and Saul his  ','five thousands   ','thousand  ','thousands   ','six thousand','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:09'),(174,'Israel went into Assyria captivity in','720BC  ','730 AD   ','750BC','722 BC','','','d','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(175,'A prophet mostly emphasized the holiness of God. This prophet was  ','Hosea  ','Jeremiah  ','Ezekiel   ','Isaiah','','','d','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-08-15 23:15:08'),(176,'One of the following was not among the religious sects in the New Testament  ','The Pharisees   ','The Nazarenes','The Essenes','The Sadducees','','','c','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(177,'“Talitha cumi” means','Dorcas, Arise   ','Little girl, I say to you, arise  ','Thy will be done','Jesus is coming','','','b','','post-utme','2013',57,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:12'),(178,'Who was the secretary employed by Jeremiah to write his prophecy?','Amanuensis  ','Amos  ','Baruch  ','Joshua','','','c','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(179,'Who among the seven deacons was an evangelist  who had four daughters who prophesied?  ','Stephen  ','Philip   ','Barnabas   ','Nicholas','','','b','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-08-04 10:34:24'),(180,'The son of Solomon who made unwise decisions was ….','Jeroboam      ','Rechoboam','Rehoboam    ','Asa','','','c','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(181,'The book of ____ mostly emphasized social justice','Amos   ','Ezekiel   ','Hoshea','Isaiah','','','a','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:16'),(182,'In one of the missionary journeys, Paul was stoned   to a state of coma in  ','Antioch in Pisidia   ','Iconium  ','Lystra   ','Antioch of Syria','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(183,'Moses spoke  to the Israelites to fear not, but be calm, confident and see the salvation of God at  ','Pi-Hahirotti   ','Meribah   ','Wilderness of Sinai ','d.Elim','','','a','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(184,'One of the following is not in the Pentateuch  ','Exodus    ','Judges     ','Leviticus   ','Numbers','','','b','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:19'),(185,'The sons of Samuel who did not walk in his ways were:','Phinehas and Hophni    ','Hophni and Amos  ','Joel and Phinehas        ','Abijah and Joel','','','d','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(186,'What was the second temptation of Jesus according to the Gospel according to Luke?','The Devil wanted Jesus to worship him  ','The Devil wanted Jesus to deny God','The Devil wanted Jesus to jump from the pinnacle of the Temple    ','The devil wanted Jesus to turn stones to bread','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(187,'Jonah refused to go to Nineveh because  ','Ninevites were in human and wicked','God was merciful, gracious and could forgive them  ','he was timid to deliver the message  ','he did not want to endanger his life','','','b','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:22'),(188,'‘Those who honour me I will honour , and those who despise  me shall be lightly esteemed.’ Who was being addressed?  ','Eli   ','Samuel','Hophni   ','Joshua','','','a','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:23'),(189,'Amos reference to ‘cows of Bashan’ was a metaphoric allusion to  ','women of Samaria  ','rich people of Samaria   ','poor people of Samaria  ','illustrious sons of Samaria','','','a','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:23'),(190,'Amos explained true religion as  ','singing of praises to God  ','self-righteousness','fasting and praying  ','being just and righteous','','','d','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(191,'Who was the prophet who said “I will put my law within them, and will write it upon their heart….”?  ','Isaiah  ','Jeremiah','Hosea   ','Amos','','','b','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(192,'The relationship between God and Israel was described by Hosea as that of a','faithless wife and a loving husband','a loving wife and a faithless husband  ','a penitent wife and aggressive husband  ','a faithless husband and a faithless and nonchalant wife.','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:27'),(193,'One of the following is not among the “I am” Sayings of Jesus  ','I am the bread of life','I am the gate of life','I am the good shepherd','I am the way','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(194,'In what way was Moses a prototype of Jesus Christ?','Moses was a great prophet who led Israel out of Egypt','Moses did not die naturally','Moses appeared to Jesus on Mount of Transfiguration','Moses was persecuted by his people','','','a','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(195,'“O dry bones, hear the word of the Lord… “The dry bones mentioned by Prophet Ezekiel  in the statement above refer to the','Amalakite king and soldiers  ','Whole house of Israel  ','Hittites and the Assyrians  ','Babylonians troubling Israel','','','b','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:29'),(196,'The eunuch who went to Jerusalem to worship in Acts 8:27 was a  ','minister of God  ','minister of Candace the queen Gaza  ','minister of Candace the king of the Ethiopians','minister of Candace the queen of the Ethiopians','','','d','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:30'),(197,'At the time of creation, the river that flowed out of Eden to water the garden divided into','Pishon, Hauijah, Gihon and Tigris','Tigris, Cush, Assune and Hauijah','Pishon, Tigris, Gihon and Euphrates','Euphrates, Gihon, Assyna and Tigris','','','c','','wassce','2005',80,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:31'),(198,'During the creative activity of God, He made the beasts','in His own image','to multiply on the earth','according to their kinds','to serve the needs of man','','','c','','wassce','2005',81,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:32'),(199,'“Two nations are in your womb, and two peoples born of you shall be divided”. The two people are','Moses and Jacob','Jacob and Benjamin','Esau and Ishmael','Esau and Jacob','','','d','','wassce','2005',61,'Admin','2016-11-12 11:56:06','2020-08-13 09:14:33'),(200,'Moses was nursed by','Pharaoh’s daughter','Rachael','his mother','Rebecca','','','c','','wassce','2005',75,'Admin','2016-11-12 11:56:06','2020-08-13 09:33:04'),(201,'The name Ichabod means','Yahweh is God','beloved of  Yahweh','I have asked him from the Lord','the glory has departed from Israel.','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:35'),(202,'When Saul and his troops came after David in the wilderness of Ziph, David and Abishai went to Saul’s camp \t\tto','slay him','surprise him','capture him alive','dialogue with him','','','b','','wassce','2005',75,'Admin','2016-11-12 11:56:06','2020-08-13 12:58:14'),(203,'Saul’s death on Mount Gilboa was in consequence of his','sin of disobedience','resorting to the witch of Endor','loss of confidence in David','armour bearer’s obedience','','','a','','wassce','2005',90,'Admin','2016-11-12 11:56:06','2020-08-13 13:06:00'),(204,'Naboth would not give the vineyard to Ahab because it was','under cultivation','inherited from his father','better than Ahab’s offer','undervalued by the king','','','b','','wassce','2005',66,'Admin','2016-11-12 11:56:06','2020-08-13 12:58:14'),(205,'A good example of parental responsibility was demonstrated by','Samuel','Eli','David','Asa','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:39'),(206,'When God said to Solomon, “Ask what I shall give you”, he requested for','long life and prosperity','power and assistance against his enemies','peace and understanding to serve God','wisdom and understanding to serve the people','','','d','','wassce','2005',70,'Admin','2016-11-12 11:56:06','2020-08-13 09:33:23'),(207,'The remote cause of the fall of Jerusalem was','Josiah’s death at the battle of Megiddo','the military might of Israel’s enemies','the sins of Manasseh, the king','Judah’s with holding of tribute to Nebuchadnezzar','','','c','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-08-13 13:06:00'),(208,'Nebuchadnezzar punished those who refused to worship the golden image by throwing them into','the River Nile','the rivers of  Babylon','a furnace','a lion’s den','','','c','','wassce','2005',65,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:42'),(209,'The wife of Hosea was called','Gomer','B . Rahab','Jael','Hagar','','','a','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:43'),(210,'As a reward for their faith, Shadrach, Meshack and Abednego were','asked to return to Jerusalem','granted respectable positions','offered money by the king','made to praise Yahweh','','','b','','wassce','2005',63,'Admin','2016-11-12 11:56:06','2020-08-13 12:57:28'),(211,'Who among the prophets was referred to as a prophet of doom?','Isaiah','Ezekiel','Amos','Jeremiah','','','d','','wassce','2005',78,'Admin','2016-11-12 11:56:06','2020-08-07 09:21:53'),(212,'Jonah typified Jesus Christ when he','surrendered himself to be swallowed by the fish','offered to lose his life that others might be saved','rejected the message of God','announced destruction for the Ninevites','','','b','','wassce','2005',86,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:45'),(213,'The message of Amos was mainly about','the love of God','man’s response to God’s love.','the holiness of God','social justice','','','d','','wassce','2005',87,'Admin','2016-11-12 11:56:06','2020-08-13 12:58:14'),(214,'Before Joseph and Mary came together, she was found to be with a child','to be called Jesus','of the Holy Spirit','who shall be called Emmanuel','spoken of by the prophets','','','b','','wassce','2005',69,'Admin','2016-11-12 11:56:06','2020-08-13 09:16:44'),(215,'“How is it that you, a Jew, ask a drink of me, a woman of \tSamaria?” The speaker was surprised because','Jesus was God and not human','the Jews could only buy water from Samaria','the Jews had no dealings with Samaria','it was unlawful for a man to receive water from a woman','','','c','','wassce','2005',71,'Admin','2016-11-12 11:56:06','2020-08-04 10:34:24'),(216,'Jesus said “Not everyone who says to me ‘Lord, Lord,’ shall enter into the kingdom of heaven, but he who','hears the word of God”.','prays and fasts’','prophesies in my name”','does the will of my father”','','','d','','wassce','2005',76,'Admin','2016-11-12 11:56:06','2020-08-08 00:12:55'),(217,'According to Jesus, a disciple must not','hate his parents and family','bear his own cross','be a poor man','count the cost','','','d','','wassce','2005',74,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:03'),(218,'Instead of being unnecessarily anxious about life and the affairs of this world, Jesus taught us to','relax our minds and wait for the manna from above','seek first the kingdom of God and its righteousness','seek water baptism and qualify for divine healing','repent of our sins and preach the gospel.','','','b','','wassce','2005',69,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:04'),(219,'According to Jesus, the seventy disciples who returned from a successful missionary work should rejoice because','the demons were subject to them','the sick were healed through their ministry','the lame walked just at their command','their names were written in heaven','','','d','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:05'),(220,'The seeds that fell among thorns represent those who hear the word of God but lose it because','they refuse to be baptized in water','their parental background does not allow them to believe','the cares of the world and delight in riches choke the word','the unbelievers do not permit new converts to receive the word','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:06'),(221,'The rich man who ignored the needs of Lazarus lacked','a sense of proportion','parental care','human sympathy','spiritual contentment','','','a','','wassce','2005',66,'Admin','2016-11-12 11:56:07','2020-08-13 09:14:33'),(222,'Abiding in Christ’s love demands that we','have hope for the future','keep His commandments','imitate one another','manifest the peace of God','','','b','','wassce','2005',82,'Admin','2016-11-12 11:56:07','2020-08-02 12:40:12'),(223,'According to Jesus, a good shepherd lays down his life for the sheep but a hireling','sells them off for personal profit','abandons the sheep in the face of danger','protects some of the sheep leaving others to danger','asks for better pay before doing his work.','','','b','','wassce','2005',68,'Admin','2016-11-12 11:56:07','2020-08-13 09:16:44'),(224,'The arrest of Jesus by his enemies was','an accident of faith','a result of his tough teaching','a fulfilment of the scriptures','a ploy to see his miraculous powers','','','b','','wassce','2005',66,'Admin','2016-11-12 11:56:07','2020-08-07 09:21:53'),(225,'The final trial of Jesus was presided over by','Herod','Caiaphas','the High Priest','Pilate','','','d','','wassce','2005',83,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:11'),(226,'Before his ascension, Jesus commissioned his disciples to go to all nations and','cast out demons','heal the sick','raise the dead','make disciples of them','','','d','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-08-13 09:15:52'),(227,'The experience which totally changed Paul’s focus in life was his','witnessing the martyrdom of Stephen','determination to wipe out the church','participation in the council of Jerusalem','encounter with Jesus on the road to Damascus','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:13'),(228,'Herod persecuted the early church because he was','opposed to the Apostles’ teaching','impressed by his growing popularity after killing James','unhappy that the Jewish leaders were not doing enough havoc to the apostles','asserting the extended powers granted him Rome.','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:14'),(229,'One of the early Christians who sold his property and gave the money to the apostles was','Barnabas','Stephen','Barabbas','Matthias','','','a','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-08-13 09:33:23'),(230,'Which of the following was not characteristic of the Early Church?','Constant change in leadership','Devotion to the teachings of the apostles','Breaking bread in members’ homes','Communal fellowship','','','a','','wassce','2005',82,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:15'),(231,'“Father forgive them for they know not what they do” was the prayer said by','Philip','Peter','Paul','Stephen','','','d','','wassce','2005',75,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:16'),(232,'Paul argued that Jesus died for us while we were yet sinners in order to','prove that he was not an ordinary man','show Gods’ love for sinful man','warn us to desist from sin','give us power to possess the earth','','','b','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-08-13 09:14:33'),(233,'Paul, in Romans, taught that Christians are Abraham’s descendants by','grace','faith','circumcision','law','','','b','','wassce','2005',68,'Admin','2016-11-12 11:56:07','2020-08-08 00:12:56'),(234,'According to Romans, when civil authorities punish evil doers, they do so as the','agents of God’s wrath','supervisory authority','agents of the darkness of this world','representatives of angelic powers','','','a','','wassce','2005',78,'Admin','2016-11-12 11:56:07','2020-08-13 09:33:04'),(235,'Paul said he was not fit to be called an apostle because he','was not called like the others','was not a Jew','persecuted the Early Church','was only a distributor of letters','','','c','','wassce','2005',70,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:20'),(236,'In Romans, Paul admonished Christians, in their dealings with secular powers, to','reject all secular laws','pray for the leaders','refuse to pay tax to them','respect the authorities','','','d','','wassce','2005',86,'Admin','2016-11-12 11:56:07','2020-08-13 13:05:02'),(237,'Paul taught that by our common faith in Jesus and baptism, the difference between Jews and Gentiles has become','permanent','temporal','irrelevant','real','','','c','','wassce','2005',74,'Admin','2016-11-12 11:56:07','2020-08-13 09:14:33'),(238,'The Philippians’ gifts to Paul were for','the growth of the church','his sustenance','distribution to the saints','other Christian prisoners','','','b','','wassce','2005',80,'Admin','2016-11-12 11:56:07','2020-07-26 19:30:54'),(239,'Which of the following does not relate to the new life in Christ?','Baptism','Circumcision','Grace of God','Faith','','','b','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-08-04 10:36:44'),(240,'Paul taught the Colossians that the relationship between wives and their husbands should be as','is fitting in the Lord','the culture demands','is written in the law','the husband commands','','','a','','wassce','2005',90,'Admin','2016-11-12 11:56:07','2020-08-13 09:15:24'),(241,'At the coming of the Lord, unbelievers will','be condemned','have a desolate land','be hit by famine','die in divine war','','','a','','wassce','2005',76,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:26'),(242,'Paul compares the manifestations of spiritual gifts in individual members of the Church to the','unity of the human body','rights of the individual members of the Church','rights of the different parts of the body','unity of the Church','','','a','','wassce','2005',82,'Admin','2016-11-12 11:56:07','2020-08-13 09:16:44'),(243,'Paul wrote to the Thessalonians about idleness because he \tlearnt that they were','among the idlest people in Asia','forcing Christians to work in the Church','unwilling to give offerings','expecting the second coming of Christ','','','d','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-08-13 12:57:28'),(244,'Paul appealed to Philemon to forgive Onesimus on the basis of','equality','righteousness','love','faith','','','a','','wassce','2005',80,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:29'),(245,'James recommends the anointing oil of the elders because such anointing','prepares the sick for his last journey','makes the sick holy and righteous','promotes physical recovery','ensures forgiveness to the sick','','','d','','wassce','2005',88,'Admin','2016-11-12 11:56:08','2020-08-13 09:15:52'),(246,'Peter advised his fellow elders to tend the flock of God that was in their charge','with care','willingly','by example','domineeringly','','','a','','wassce','2005',78,'Admin','2016-11-12 11:56:08','2020-07-14 14:13:31'),(247,'In Timothy, Paul urges Christians to pray for kings and those in authority for the achievement of','a successful Christian life','godly and acceptable life','peace and exaltation in life','quiet and peaceable life.','','','d','','utme','2009',79,'Admin','2016-11-12 12:16:55','2020-08-13 09:15:52'),(248,'According to Galatians, one of the benefits of being a joint heir with Christ is having His Spirit in','worship','the heart','the body','prayers','','','b','','utme','2009',67,'Admin','2016-11-12 12:16:57','2020-08-12 08:03:36'),(249,'According to Ephesians, children who obey their parents in the Lord will','be happy','go to heaven','have long life','be great.','','','c','','utme','2009',70,'Admin','2016-11-12 12:16:57','2020-08-01 10:54:37'),(250,'According to Thessalonians, the day of the Lord will not come unless the','living die first','scoffers come first','dead rise first','rebellion comes first.','','','d','','utme','2009',83,'Admin','2016-11-12 12:16:58','2020-08-13 09:15:52'),(251,'In Romans, Paul condemned sin taking over mortal bodies in the new life as instruments of','greediness','wickedness','sadness','foolishness.','','','b','','utme','2009',99,'Admin','2016-11-12 12:16:58','2020-08-13 12:57:28'),(252,'In his teaching on partiality, James declares that mercy triumphs over','judgment','righteousness','grace','faith.','','','a','','utme','2009',101,'Admin','2016-11-12 12:16:58','2020-08-13 13:06:00'),(253,'In Paul’s arrangement of the spiritual gifts in Corinthians, the last is','the utterance of wisdom','interpretation of tongues','gifts of healing','various kinds of tongues.','','','b','','utme','2009',83,'Admin','2016-11-12 12:16:58','2020-08-13 09:14:33'),(254,'In His sermon on the Mount, Jesus said that the poor in spirit are blessed for they would','be satisfied','be comforted on the last day','inherit the kingdom of heaven','inherit the earth.','','','a','','utme','2009',88,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(255,'According to Matthew, the stone on the tomb of Jesus was removed by','an angel','a Roman soldier','Mary Magdalene','Peter and John.','','','a','','utme','2009',84,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(256,'Angel Gabriel told Zachariah that he would become dumb until John was born because he','looked down on the Angel','was advanced in age','disagreed with Elizabeth, his wife','did not believe God’s words.','','','d','','utme','2009',73,'Admin','2016-11-12 12:16:58','2020-08-13 09:15:24'),(257,'“...but should write to them to abstain from the pollutions of idols and from unchastity and from what is strangled and from blood...” The statement above was made at the Council of Jerusalem by','Philip','Simon','James','Peter','','','d','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(258,'In the country of the Gerasenes, Jesus healed the','man possessed of demons','paralytic at the pool','leper','blind man.','','','a','','utme','2009',67,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(259,'Following the death of Stephen, the only group of believers not scattered by the great persecution was the','deacons','apostles','prophets','disciples.','','','d','','utme','2009',92,'Admin','2016-11-12 12:16:58','2020-08-13 13:06:00'),(260,'According to Luke, when Moses and Elijah appeared during the Transfiguration, they spoke of Jesus’','departure','second coming','resurrection','trials.','','','a','','utme','2009',64,'Admin','2016-11-12 12:16:58','2020-08-13 12:58:14'),(261,'The baptism of Jesus by John in River Jordan was to','convince others that John was His forerunner','ensure that proper baptism must be in a river','service as an example','fulfil all righteousness.','','','d','','utme','2009',81,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(262,'Herod was delighted to see Jesus because he had heard of Him for so long and wanted to','send Him to Rome','sentence Him to death','see Him perform miracles','make Him his friend.','','','c','','utme','2009',86,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(263,'“Do you understand what you are reading?” Philip asked the Ethiopian eunuch the question above when he found him reading the book of','Hosea','Ezekiel','Jeremiah','Isaiah.','','','d','','utme','2009',86,'Admin','2016-11-12 12:16:58','2020-08-13 12:57:28'),(264,'“Unbind him, and let him go.” The statement was made by Jesus when','He raised to life the dead Lazarus','He healed the son of the widow at Nain','He healed the centurion’s servant','a boy bound by Satan was brought to Him.','','','a','','utme','2009',90,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:48'),(265,'In Luke, at the Last Supper, Jesus revealed His','resurrection','imminent sufferings','love for His disciples','ascension.','','','b','','utme','2009',74,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(266,'The good shepherd according to Jesus is one who','lays down his life for his sheep','goes about with his sheep','keeps many healthy sheep','feeds his sheep in green pastures.','','','a','','utme','2009',87,'Admin','2016-11-12 12:16:58','2020-08-13 09:33:23'),(267,'Jesus: stilling of the storm was to','escape from danger','impress His disciples','demonstrate His power','help the fishermen.','','','c','','utme','2009',66,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(268,'“Can any one forbid water for baptizing these people who have received the Holy Spirit just as we have?” The statement above was made by Peter at the conversion of','Herod','Lydia','Saul','Cornelius.','','','d','','utme','2009',78,'Admin','2016-11-12 12:16:58','2020-08-13 09:33:23'),(269,'The disciple who replaced Judas Iscariot was','Justus','Stephen','Mathias','Luke.','','','c','','utme','2009',68,'Admin','2016-11-12 12:16:58','2020-08-13 09:33:04'),(270,'The message in the parable of the weeds is to','make Christians to be aware of the evil one','remind Christians to pray always','teach Christians to be aware of false teaching','warn Christians on what will happen at the close of age','','','c','','utme','2009',79,'Admin','2016-11-12 12:16:58','2020-08-13 13:06:00'),(271,'The sin of the sons of Eli was that they treated the offering of the LORD with','suspicion','contempt','disgust','jealousy.','','','b','','utme','2009',98,'Admin','2016-11-12 12:16:58','2020-08-13 13:05:02'),(272,'In order for the people of Israel to be ready to meet the LORD by the third day at Mount Sinai, they were','not to drink alcohol','to wear white garments','to wash their garments everyday','not to go near a woman.','','','c','','utme','2009',88,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(273,'For worshipping the molten calf, God described the Israelites as','a stubborn nation','an unholy nation','a stiff-necked people','an unrighteous people','','','c','','utme','2009',76,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(274,'“1 will not eat until I have told my errand” In the statement above, the errand of Abraham’s servant was to','find a wife for Isaac','deliver the camels to Laban','assess Isaac’s future wife','deliver Isaac’s message to Laban','','','a','','utme','2009',95,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(275,'Saul leant from Samuel’s spirit that the LORD would','give the Philistines into his hands','afflict him with sickness','because Isaac’s future wife','pardon his iniquity','','','c','','utme','2009',91,'Admin','2016-11-12 12:16:58','2020-08-13 09:14:54'),(276,'“My spirit shall not abide in man forever, for he is flesh...” When God made the statement above, He concluded that man’s days shall be','one hundred years','one hundred and fifty years','eighty years','one hundred and twenty years.','','','a','','utme','2009',63,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(277,'According to proverbs, a son that is attentive to a father’s instruction will','be rich','have eternal life','gain insight','be forgiven his sins','','','b','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-08-13 09:33:04'),(278,'When God called Moses to deliver the Israelites, he resisted because he could not speak and he was told to','perform some signs with his rod','wait for a sign from God','go with Joshua who would speak for him','go with Aaron who would speak for him','','','d','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-08-13 09:16:44'),(279,'David was anointed king over Judah at','Zuph','Bethlehem','Hebron','Gibeon.','','','c','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-08-13 13:06:00'),(280,'“Behold, if people of Israel are to come, let us deal shrewdly with them, lest they multiply.....” ln the statement, the first step by the king of Egypt was to','cast all Hebrew male children into the Nile','impose heavy tax on them','kill Hebrew male children','set taskmasters over them to afflict them with burdens','','','d','','utme','2009',82,'Admin','2016-11-12 12:16:59','2020-08-13 09:33:23'),(281,'“Let the waters under the heavens be gathered together into one place, and let the dry land appear.” In the statement above  the dry land and the water refer to','earth and oceans','firmament and seas','firmament and oceans','earth and seas','','','d','','utme','2009',84,'Admin','2016-11-12 12:16:59','2020-08-01 10:54:37'),(282,'What did Gideon call the altar which he built to the LORD?','The LORD is merciful','The LORD is peace','Jehovah Jireh','The LORD is great','','','a','','utme','2009',88,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(283,'When King Nebuchadnezzar besieged Judah, he took away all classes of people but spared the','poorest people of the land','palace guards','children and the aged','priests and prophets','','','a','','utme','2009',87,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(284,'After Prophet Ezekiel had eaten what he was offered, he was sent to speak to','a people of hard language','the house of Israel','the house of Judah','a people of foreign language','','','b','','utme','2009',80,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(285,'Josiah believed that the wrath of the LORD was kindled against him and all Judah because','they did not observe the Passover','there was an unholy thing in their midst','the people have forgotten God','their fathers were disobedient to God.','','','b','','utme','2009',83,'Admin','2016-11-12 12:16:59','2020-08-14 18:59:14'),(286,'“Son of man, stand upon your feet, and I will speak with you.” What happened to the Son of man after the instruction above?','The Spirit entered him.','He became terrified.','The angels gave him support.','He began to prophesy.','','','a','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(287,'God had pity on the people of Nineveh because','they listened to Jonah’s message','the king punished all the violent people in the land','they turned from their evil way.','they made sacrifices of sin offering to God.','','','c','','utme','2009',72,'Admin','2016-11-12 12:16:59','2020-08-14 18:59:15'),(288,'The Kingdom of Israel was divided because the','kingdom was too large to be administered','leadership wanted to create more nations','followership wanted more nations','last two kings made unwise policies.','','','d','','utme','2009',83,'Admin','2016-11-12 12:16:59','2020-08-01 10:54:37'),(289,'“Behold, I am the LORD, the God of all flesh; is anything too hard for me...” The statement above suggests that God is','merciful','awesome','most powerful','not changeable.','','','b','','utme','2009',82,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(290,'Immediately after the contest on Mount Carmel, Elijah prayed and God answered him with','thunder','rainfall','a whirlwind','a heavy storm.','','','a','','utme','2009',98,'Admin','2016-11-12 12:16:59','2020-08-13 09:15:52'),(291,'Prophet Amos told Israel to hate evil, love good and establish justice in the gate so that God would','heal their diseases','give them good leaders','be gracious to them','multiply their descendants.','','','c','','utme','2009',89,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(292,'In addition to the declaration of freedom to the exiles in Babylon, King Cyrus ordered for','free will offering for the house of God in Jerusalem','the release of Jewish, slaves in the empire','security check on the Jews before departure','support from craftsmen in Babylon.','','','a','','utme','2009',89,'Admin','2016-11-12 12:16:59','2020-08-13 09:33:04'),(293,'“Am I God, to kill and to make alive, that this man sends words to me to cure a man of his leprosy...” Prophet Elisha responded to the king’s reaction in the statement above by','directing the nation of Israel to pray and fast','requesting the leper to come to his house','directing the leper to go to River Jordan','asking the leper to offer a sacrifice.','','','b','','utme','2009',74,'Admin','2016-11-12 12:16:59','2020-08-13 12:57:28'),(294,'According to Prophet Jeremiah, one of the promises of God was that He would give the Israelites','new priests','new commandments','kings after His own heart','shepherds after His own heart.','','','c','','utme','2009',77,'Admin','2016-11-12 12:16:59','2020-08-13 12:57:28'),(295,'Prophet Hosea named his second child Not Pitied because God would no more pity the','kings of Judah','kings of Israel','house of Judah','house of Israel.','','','c','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-08-13 09:15:52'),(296,'“Test your servants for ten days; let us be given vegetables to eat and water to drink...” In the statement above, Daniel was talking to','King Darius','the chief of the eunuchs','the steward of the chief eunuch.','King Artaxerxes.','','','b','','utme','2009',75,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(297,'God blessed and hallowed the seventh day because','it was the day He rested from creation','it was the day He created man','He wanted it to be a day of worship','He saw that all He had created was good.','','','a','','utme','2011',77,'Admin','2016-11-12 12:27:45','2020-08-13 13:05:02'),(298,'Noah’s ark was sustained during the flood by its','resting on the highest mountains','being rowed on the waters','floating on the water','being anchored safely','','','c','','utme','2011',66,'Admin','2016-11-12 12:27:46','2020-08-13 13:05:02'),(299,'God visited the children of Israel on Mount Sinai during the giving of  the commandments through','a storm','mist and dew','smoke and fire','a still small voice','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:33'),(300,'When asked to interpret Pharaoh’s dream, Joseph’s first response was','...God has revealed to Pharaoh what he is about to do.','...It is not in me; God will give Pharaoh a favourable answer.','...God will shortly bring it to pass.','…let Pharaoh select a man discrete and wise','','','b','','utme','2011',83,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:33'),(301,'When Joshua fell upon his face during Israel’s defeat at Ai, God told him to rise and','send more courageous soldiers to Ai','encourage the people','pray fervently against their enemies','sanctify the people','','','d','','utme','2011',63,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:34'),(302,'God guided Abraham’s steward in choosing a wife for Isaac by','teaching him how to select a good woman','leading a lady to fulfil his prayer request','taking him to Abraham’s fatherland','giving him an exemplary woman.','','','c','','utme','2011',75,'Admin','2016-11-12 12:27:46','2020-08-13 09:14:54'),(303,'Why was God angry with Eli?','Eli’s sons disregarded the people’s warning','Eli’s sons were wicked people.','Eli’s sons dishonoured God and he treated them with levity.','Eli’s sons were appointed as priests against God’s will.','','','c','','utme','2011',80,'Admin','2016-11-12 12:27:46','2020-08-13 09:33:23'),(304,'Laxity in disciplining children is dangerous to both the family and society as exemplified by','Jonathan','Tamar','Absalom','Ahikam.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-15 13:37:42'),(305,'God promised Abraham that nations of the earth shall be blessed through him because','he had obeyed Him','his descendants had obeyed Him','of his kindness to Hagar','of  his exemplary leadership.','','','a','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:38'),(306,'The punishment for Adam and Eve’s sin was that they','were driven out of the garden','would be naked forever','would never fellowship with God','would be enemies of crawling animals.','','','a','','utme','2011',67,'Admin','2016-11-12 12:27:46','2020-08-13 13:06:00'),(307,'‘Do not destroy him; for who can stretch out his hand on the LORD’S anointed, and be guiltless?’ In the statement above, David was acknowledging God’s role in','Abishai’s command','Saul’s leadership','Samuel’s priesthood','Elijah’s prophet hood.','','','b','','utme','2011',72,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:40'),(308,'Saul’s decision to consult a medium displayed his lack of','faith in his army','faith in God','leadership qualities','respect for the dead.','','','b','','utme','2011',88,'Admin','2016-11-12 12:27:46','2020-08-13 09:33:23'),(309,'Solomon made the most unwise decision by engaging in','marriages to foreign women','alliances with his brothers','so many wars of conquest','developmental works.','','','a','','utme','2011',102,'Admin','2016-11-12 12:27:46','2020-08-07 04:28:29'),(310,'The man of God whose word was ignored by Kings Ahab and Jehoshaphat was','Elijah','Zedekiah','Malakiah','Micaiah','','','d','','utme','2011',88,'Admin','2016-11-12 12:27:46','2020-08-13 09:15:52'),(311,'Baal did not answer his worshippers at the contest on Mount Carmel because he','was annoyed with their sacrifice','did not hear','wanted to disgrace his worshippers','was asleep.','','','b','','utme','2011',87,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:43'),(312,'The workmen who repaired the house of the LORD during Josiah’s religious reforms were not made to account for the money given them because they','did not receive the money directly','lacked accounting capabilities','bribed the Temple officials','were honest workmen.','','','a','','utme','2011',108,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:44'),(313,'During Jehoiakim’s reign, Judah was destroyed as punishment for Manasseh’s sin of','keeping Temple prostitutes in the land','defiling the vessels in the Temple','offering unacceptable sacrifice','shedding innocent blood.','','','a','','utme','2011',71,'Admin','2016-11-12 12:27:46','2020-08-13 09:15:24'),(314,'Nehemiah responded to the opposition of the enemies of Israel by','telling the people not to say a word','reporting the issue to King Artaxerxes','inviting them to dialogue in the King’s court','asking God to return their taunt back to them.','','','d','','utme','2011',87,'Admin','2016-11-12 12:27:46','2020-08-13 12:58:14'),(315,'Nebuchadnezzar ordered his subjects to worship the image he set up whenever they','heard his voice','saw him stand before the image','heard the sound of the horn','were told to do so.','','','c','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-08-13 12:57:28'),(316,'‘What is this that you have done!”  The people in the ship asked Jonah the question above because','he was fast asleep in the ship','they knew he was fleeing from the LORD','he lied to them about his presence in the ship','they realized that he had made attempts to commit suicide.','','','b','','utme','2011',75,'Admin','2016-11-12 12:27:46','2020-08-07 08:29:17'),(317,'What shall I do with you, O Ephraim? What shall I do with you, O Judah? Your love is like a morning cloud...” In the statement above, the love of Israel is compared to a morning cloud because it','disappears fast','withers','is cloudy','darkens the day','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:49'),(318,'According to Amos, God desires knowledge of Him rather than','fervent prayers','dependency on the Law','the multitude of prophecies','burnt offerings','','','d','','utme','2011',77,'Admin','2016-11-12 12:27:46','2020-08-13 12:58:14'),(319,'In his vision, Isaiah’s guilt was taken away and his sin forgiven after','the angel of the LORD appeared to him','his mouth was touched with a burning coal','the seraphim had spoken to him','he had agreed to serve God.','','','b','','utme','2011',74,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:51'),(320,'The prophet who was ordained from the womb for God’s service was','Jeremiah','Isaiah','Ezekiel','Hosea.','','','a','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-07-14 14:14:52'),(321,'According to Jeremiah, the anger of God towards Israel would only be reduced by','His mercy','the prophet’s repentance','the prophet’s prayers','His glory.','','','a','','utme','2011',83,'Admin','2016-11-12 12:27:47','2020-08-13 09:14:54'),(322,'When Zechariah saw the angel of the Lord standing on the right side of the altar of incense, he','cried out to him','was troubled and afraid','rejoiced in the Lord','left the Temple immediately.','','','b','','utme','2011',65,'Admin','2016-11-12 12:27:47','2020-08-07 09:21:53'),(323,'‘Follow me and leave the dead to bury their own dead’ By this statement, Jesus means that','disciples shall not attend burials','there is no life after death','following Him comes before anything else','shall leave their families in God’s care','','','c','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:48'),(324,'The disciples became terrified when they saw Jesus walking on the sea because','they thought He would drown','they thought He was a ghost','they lacked faith in Him','there was a great storm.','','','c','','utme','2011',71,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(325,'The Jews sought to kill Jesus after He healed the man at the pool of Bethzatha because they thought that He','claimed to have authority to forgive sins','made Himself equal with God','did not agree with the law of Moses','said that He was born before Abraham.','','','c','','utme','2011',73,'Admin','2016-11-12 12:27:47','2020-08-13 13:05:02'),(326,'In the parable of the sower, the seed that fell among the thorns symbolized the one who hears the word but','does not understand it','loses it to the enemy','does not immediately receive it','the cares of the world choke it.','','','d','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-08-13 09:33:23'),(327,'Jesus encouraged His followers to rejoice when they were \tpersecuted because','great would be their reward in heaven','angels would come to their aid','they would not lack anything good','all their sins would be forgiven.','','','a','','utme','2011',73,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(328,'‘Blessed are you, Simon Bar-Jona ! For flesh and blood has not revealed this to you...’ As exemplified by the statement above, for believers to be able to identify with Jesus, they must','offer their lives','be led by the Spirit','keep all the commandments','vow not to deny Him.','','','b','','utme','2011',72,'Admin','2016-11-12 12:27:47','2020-08-13 09:16:44'),(329,'Jesus drove the money changers and sellers of doves out of the Temple because','the people defiled it with dubious business','there was no need for animal sacrifice anymore','the people were disobedient to the Law','animals and birds were not allowed in it.','','','a','','utme','2011',101,'Admin','2016-11-12 12:27:47','2020-08-13 12:57:28'),(330,'The tearing of the curtain of the Temple into two at the death of Jesus signifies','the passing away of the prophets','direct access to God through Christ','that Jesus was a powerful person','that God was truly with Jesus.','','','b','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:01'),(331,'“Tell people, His disciples came by night and stole him away while we were asleep...” The intention of the speaker in the statement above was to','implicate the disciples','absolve the soldiers from all blame','deny the resurrection story','convince the authority','','','c','','utme','2011',98,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(332,'Jesus charged His followers to walk in the light while they had the light so that they may','have eternal life','become custodians of it','have the light of life','become sons of it.','','','c','','utme','2011',76,'Admin','2016-11-12 12:27:47','2020-08-07 09:21:53'),(333,'In the early Church, believer devoted themselves to the','daily distribution of food','apostles’ teaching and fellowship','breaking of bread in the Temple','performance of miracles','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-08-13 12:58:14'),(334,'The disciple that went to preach in Samaria after the great persecution in Jerusalem was','Philip','Andrew','Peter','James.','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-08-08 00:12:56'),(335,'Saul was convened so that he might','cause confusion among the Jews','help Peter in his work','not be killed for his sins','spread the word to the Gentiles.','','','d','','utme','2011',84,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:06'),(336,'What effect did the decision of the Council of Jerusalem have on the early Church?','Members became more untied','the Church experienced freedom from persecution','The Jews became leaders of the community.','Gentiles were free to be members of the Church','','','d','','utme','2011',75,'Admin','2016-11-12 12:27:47','2020-08-13 12:58:14'),(337,'Paul in Romans stated that the righteousness of God has been manifested through','the Law','the priests','faith in Jesus','Temple sacrifices.','','','c','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-08-13 09:14:54'),(338,'According to Romans, all who were baptized into Christ were also baptized into His','crucifixion','persecution','suffering','death','','','d','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-08-13 12:58:14'),(339,'According to Paul in Philippians, humility means giving consideration to other people’s','wealth','weakness','interests','needs.','','','c','','utme','2011',80,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(340,'In Corinthians, believers are taught to forgive one another in order to','keep Satan from gaining advantage','prevent the wrongdoer from losing his salvation','remove the curse from the offender','discourage the offender from committing more sin.','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:22'),(341,'In Corinthians, Paul stated that by one Spirit we were','free from bondage of sin','united into one church','committee to Christian service','baptized into one body','','','d','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-08-13 13:06:00'),(342,'Paul commended the churches in Macedonia for giving out of their freewill to the','saints','poor','priests','sick.','','','b','','utme','2011',82,'Admin','2016-11-12 12:27:47','2020-07-23 10:07:47'),(343,'‘Pay all of  them their dues, taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honour to whom honour is due’. Paul made the statement above to the Church at','Thessalonica','Rome','Corinth','Ephesus.','','','b','','utme','2011',77,'Admin','2016-11-12 12:27:47','2020-08-13 13:05:02'),(344,'At the second coming of Christ, those who are alive shall be','bound for life','caught up together with the Lord','separated from the dead','taken to the new Jerusalem','','','b','','utme','2011',80,'Admin','2016-11-12 12:27:47','2020-08-13 09:15:24'),(345,'According to James, treatment of brethren at fellowship should not be based on','appearance','sentiments','gender','age.','','','a','','utme','2011',69,'Admin','2016-11-12 12:27:47','2020-08-13 09:33:04'),(346,'Peter in his epistle, charged his fellow elders to','take care of their families','be strong in their faith','have compassion on the weak','tend the flock of God.','','','d','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-08-13 12:58:14'),(347,'The land, the sea and vegetation were created on the','first day','second day','third day','fifth day.','','','c','','wassce','2008',70,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:29'),(348,'God blessed the seventh day and hallowed it because it marked the day that He','completed His work of creation','handed over the earth to Adam','saw all His created work as perfect','rested from His work of creation.','','','d','','wassce','2008',72,'Admin','2016-11-12 12:38:50','2020-07-15 03:50:53'),(349,'Which of the following was not part of the honour done to Joseph when Pharaoh made him a ruler in Egypt?','Joseph was made to address the people','The land of Goshen was given to Joseph','Joseph was dressed in garments of fine linen','A gold chain was put around Joseph’s neck.','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:31'),(350,'What was Moses’ reaction when God called him to liberate his people from Egypt?','He was afraid of being punished for his previous offence','His people would think he was too young to lead them','His people would not listen to him','His father in-law would not allow him to go.','','','c','','wassce','2008',80,'Admin','2016-11-12 12:38:50','2020-08-07 08:29:17'),(351,'God led the Israelites in the wilderness during the day in form of','fire','light','cloud','rainbow.','','','c','','wassce','2008',65,'Admin','2016-11-12 12:38:50','2020-08-08 00:12:55'),(352,'When Moses stayed away for too long on the mountain, the people of Israel','prayed and fasted','embarked on farming','returned to Egypt','made and worshipped idol.','','','d','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-08-13 09:33:04'),(353,'God provided water for the Israelites by asking Moses to strike the rock at trice wilderness of','Rephidium','sin','Massah','Paran.','','','b','','wassce','2008',62,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:35'),(354,'When the Spirit of the Lord departed from Saul','a new spirit entered into him','an evil spirit from God tormented him','he consulted an oracle','he went into hiding.','','','b','','wassce','2008',67,'Admin','2016-11-12 12:38:50','2020-08-07 09:21:53'),(355,'When David spared the life of Saul the second time he took away his','bow and arrow','spear and jar of water','royal crown and armour','spear and iron shield.','','','b','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:36'),(356,'Solomon first applied wisdom granted to him by God at Gibeon by the','establishment of high places in Judah','utterances of proverbs and parables','marriage alliances with foreign nations','judgment between the two harlots.','','','d','','wassce','2008',77,'Admin','2016-11-12 12:38:50','2020-08-13 09:15:24'),(357,'In his reform, King Josiah first attacked the','prostitutes that came around the temple at night','priests that made burnt offerings in the temple','Canaanite divinities - the Baal and Ashera','traders who profaned the temple.','','','c','','wassce','2008',74,'Admin','2016-11-12 12:38:50','2020-08-13 12:57:28'),(358,'A good example of parental responsibility was demonstrated by','Asa','Jeroboam','Joel','Rehoboam.','','','a','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:39'),(359,'Gomer’s attitude towards her loving husband symbolizes','Hosea’s unfaithfulness to God','Israel’s faithfulness to God','God’s love for Israel','God’s hatred for Israel’s iniquities.','','','b','','wassce','2008',68,'Admin','2016-11-12 12:38:51','2020-08-13 12:58:14'),(360,'The universal nature of God was demonstrated in the salvation of the people of','Joppa','Tarshish','Tekoa','Nineveh.','','','d','','wassce','2008',77,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:42'),(361,'Ahab was condemned for allowing Jericho to be rebuilt although that city had been','under Joshua’s curse','devastated by an earthquake','the scene of unexplained fatal accidents','the site for Canaanite human sacrifice.','','','a','','wassce','2008',82,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(362,'Amos declared that God hated solemn feasts, songs and sacrifices because the people of Israel were','unjust and unrighteous','unforgiving and unrepentant','despicable and untruthful','luxurious and arrogant.','','','a','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:44'),(363,'At Ezekiel’s call he beheld','the love of God','God’s glory','power of God','God’s mercy.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:45'),(364,'In spite of Israel’s faithlessness, Jeremiah saw a ray of hope for them if only they should','forgive one another','repent and return to God','always swear by God','show favour to strangers.','','','b','','wassce','2008',63,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(365,'Jesus came to John at River Jordan to','proclaim himself as Messiah','disclose himself to John','call some of John’s disciples','receive baptism like others.','','','d','','wassce','2008',69,'Admin','2016-11-12 12:38:51','2020-08-13 13:06:00'),(366,'“Blessed are the peace makers for','theirs is the kingdom of God”','they shall be called sons of God”','they shall inherit the earth”','they shall be comforted”.','','','b','','wassce','2008',59,'Admin','2016-11-12 12:38:51','2020-08-13 09:15:52'),(367,'According to the Mosaic law, the only authority to declare a leper healed was','Jesus Christ','the Emperor','the priest','the elders.','','','c','','wassce','2008',79,'Admin','2016-11-12 12:38:51','2020-08-07 09:21:53'),(368,'Which of the following did not happen immediately after Jesus had yielded up his spirit on the cross?','The curtain of the temple was torn into two','Joseph of Arimathea removed his body for burial','The earth shook, the rocks were split','The tombs of the saints were opened.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:00'),(369,'According to Matthew, the disciples were sent out with the charge to go nowhere among the Gentiles nor enter any town of the','Jews','Samaritans','Israelites','Unbelievers.','','','b','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-08-13 09:14:54'),(370,'Which of the following miracles shows Jesus’ power over nature?','Walking on the sea','Healing of the leper','Healing of the woman with issue of blood','Raising of Lazarus from the dead','','','a','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:02'),(371,'The fate that would befall those who do not receive the gospel of Jesus would be','rejection by men','lack of peace in the family','condemnation by the church','condemnation by God.','','','d','','wassce','2008',72,'Admin','2016-11-12 12:38:51','2020-08-13 09:16:44'),(372,'Which, according to Luke, were the last words of Jesus?','“Eli. Eli, lamasabach-thani”','“Father forgive them for they know not what they do”','“Truly, I say to you, today you will be with me in paradise”','“Father unto thy hands I commit my spirit”','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:04'),(373,'The first five disciples that Jesus called as recorded in the Synoptic gospels were','Peter, Andrew, James, John and Levi','Peter, Andrew, James, John and Thomas','Peter, Andrew, James. John and Zebedee','Peter, Andrew, James, John and Judas Iscariot.','','','b','','wassce','2008',79,'Admin','2016-11-12 12:38:51','2020-08-13 13:06:00'),(374,'Peter’s general outlook towards Gentile converts was significantly changed by the conversion of','people of Lydda','the people of Samaria','Simon the magician','Cornelius the centurion.','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:06'),(375,'Which Jewish party was bitterly opposed to the disciples for preaching the resurrection of Jesus?','The Pharisees','The Sadducees .','The Zealots','The Sanhedrin.','','','b','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-08-13 13:06:00'),(376,'When Peter was in prison the Church','appealed to the authorities','lived in fear','prayed ceaselessly','fought for his release.','','','c','','wassce','2008',61,'Admin','2016-11-12 12:38:51','2020-08-13 09:14:54'),(377,'The miracles of Jesus in St. John’s Gospel are referred to as signs’ of the','manifestations of Jesus as the Messiah','consuming power of God’s glory','judgment that will come upon unbelievers','second coming of Jesus.','','','a','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(378,'Believers according to Jesus in John’s gospel, become his friends, if they imbibe his teaching on','forgiveness','obedience','love','faith.','','','c','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:18'),(379,'The miracles of Jesus recorded in John’s gospel are called','works','signs','powers','wonders.','','','b','','wassce','2008',79,'Admin','2016-11-12 12:38:51','2020-08-08 00:12:56'),(380,'The result of justification by faith is','divine protection','peace with God','forgiveness of sins','answered prayers.','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:20'),(381,'Which of the following is the result of Christian baptism?','Fulfilment of all righteousness','Walking in the newness of life','Ability to fast always','Yielding of one’s life to prayer.','','','b','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-08-14 18:59:14'),(382,'Sin that reigns in our mortal bodies makes us obey','one another','rules and regulations','our passions','our rulers.','','','c','','wassce','2008',69,'Admin','2016-11-12 12:38:51','2020-08-13 12:57:28'),(383,'Paul considered himself unfit to be called an apostle because he','did not see Jesus','persecuted the church','worked hard to attain his position','was the least among the believers.','','','d','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-08-13 09:14:33'),(384,'Paul says that only the heathen who are led astray by dumb idols could say','“Jesus is Lord!”','“Praise ye the Lord!”','“Hail the messiah!”','“Jesus be cursed!”','','','d','','wassce','2008',71,'Admin','2016-11-12 12:38:51','2020-08-13 09:33:23'),(385,'In the Epistle to Galatians, Christians are children of God through','faith in Christ','keeping of the law','helping the needy','baptism and confirmation','','','a','','wassce','2008',59,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:25'),(386,'Christ demonstrated humility by','riding on an ass to Jerusalem','allowing John to baptize him','taking the form of a servant','eating with sinners','','','c','','wassce','2008',81,'Admin','2016-11-12 12:38:51','2020-08-13 13:05:02'),(387,'Peter admonished Christians to be sober and watchful in order to a void','temptation','God’s wrath','the devourer','damnation','','','a','','wassce','2008',74,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:27'),(388,'New life in Christ means','paying your tithe regularly','helping the poor and the needy','being dead to sin','getting baptized.','','','c','','wassce','2008',56,'Admin','2016-11-12 12:38:52','2020-08-07 09:21:53'),(389,'In Romans, Paul taught that where there is no law, there is no','transgression','peace','reward','punishment','','','a','','wassce','2008',75,'Admin','2016-11-12 12:38:52','2020-08-13 12:58:14'),(390,'The purpose of grace is to','justify the law','cancel the law','fight the law','establish the law','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:30'),(391,'In Romans. Paul stressed that the righteousness of God is','faith in the law for all who believe','works of the law for all who believe','fervent prayers by all believers','faith in Jesus Christ for all who believe','','','d','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:31'),(392,'The concept of  forgiveness does not include','reconciliation','restoration','peace','wealth','','','d','','wassce','2008',50,'Admin','2016-11-12 12:38:52','2020-08-07 09:21:53'),(393,'Paul said in Galatians that, before faith came, we were confined under','grace','the law','righteousness','love','','','b','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:33'),(394,'In his letter to Philemon Paul did not ask him to','grant freedom to his slave Onesimus','allow Onesimus become a servant of God','forgive Onesimus for his earlier misbehaviour','prepare a feast for him.','','','a','','wassce','2008',66,'Admin','2016-11-12 12:38:52','2020-08-02 19:00:19'),(395,'Peter enjoined humility because the humble shall','not be tempted','be blessed','receive God’s grace','have long life.','','','b','','wassce','2008',69,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:35'),(396,'Paul, unhappy with high incidence of idleness among the Thessalonians, commanded them to','assist those brothers who live in Idleness','exhort the busy-bodies to leave the church','ensure that any one who does not work must not eat','regard the lazy ones as enemies','','','c','','wassce','2008',67,'Admin','2016-11-12 12:38:52','2020-08-15 23:15:08'),(397,'The new covenant between God and the Israelites is centered on','religious doctrines','intensive teaching','collective responsibility','individual responsibility.','','','a','','utme','2013',84,'Admin','2016-11-12 12:51:29','2020-08-13 13:06:00'),(398,'The ark that God commanded Noah to build was made of','acacia wood','gopher wood','cedar wood','cypress wood','','','c','','utme','2013',75,'Admin','2016-11-12 12:51:29','2020-08-13 13:06:00'),(399,'During Moses leadership in Israel, he exhibited most importantly, the talent of a','mediator','warrior','seer','preacher.','','','b','','utme','2013',68,'Admin','2016-11-12 12:51:29','2020-08-11 15:38:05'),(400,'Moses ran away from Egypt after killing an Egyptian because he felt that he might be','endangering other Israelites by his actions','killed by the Egyptian mob','imprisoned by the Egyptian security officers','killed by Pharaoh of Egypt.','','','d','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(401,'How did God guide Eleazar in choosing a wife for lsaac?','He caused Rebekah to give him free accommodation','He made Rebekah’s parents willing to release her','He caused His angel to go ahead of him','He revealed to Rebekah before Eleazar’s arrival','','','d','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-08-13 12:58:14'),(402,'David’s immediate reaction to the news that the hearts of the Israelites have gone after Absalom was to','Weep for Judah','flee to the wilderness','mobilize his army','plead with Absalom','','','c','','utme','2013',82,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(403,'David’s inaction at Ammon’s incest with Tamar showed his','lack of control over his children','excessive love for Ammon','ability to forgive as a leader','wisdom and strength of character','','','a','','utme','2013',85,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(404,'The young man of Egypt took David to the band of the Amalekites because','he was afraid for his life','he sought revenge against his former master','David was kind to him','the spirit of God was working through him.','','','d','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-08-13 06:17:35'),(405,'Because David sought God’s will to pursue the Amalekites \twho had invaded Ziklag, he was rewarded with victory and','many new territories','spoils','many prisoners of war','favour','','','b','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(406,'‘...why then have you not kept watch over your lord the king?...” The question above by David was addressed to','Amasa','Joab','Abishai','Abner.','','','c','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(407,'Solomon’s wisdom surpassed the wisdom of all the people of the East and all wisdom of Egypt because he','prayed and fasted daily','employed the service of seers','judged difficult cases','got his wisdom from God.','','','d','','utme','2013',84,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:06'),(408,'Saul relied on a medium because God did not answer him through','dreams, visions and prophets','inspiration, tambourines and prophets','dreams, urim and prophets','lyre, urim and prophets.','','','c','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(409,'When Naboth refused to exchange his vineyard with King Ahab, Ahab reacted by','taking to prayers and fasting','going to his house vexed and sullen','ordering the killing of Naboth','forcefully taking it from him.','','','d','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-08-13 09:33:23'),(410,'The sins of Israel during the reign of Ahab consisted of','worship of the king','trampling upon the poor','worship of idols','desecrating the Temple','','','d','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-08-13 12:57:28'),(411,'The book of the law was found in the house of the LORD during the reign of king','Josiah','Ahab','Omri','Hezekiah.','','','c','','utme','2013',90,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(412,'King Josiah was killed by Pharaoh Neco in a battle at','Syria','Meggiddo','Megiddo','Egypt.','','','c','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(413,'The major reason God allowed the Babylonian attack on the city of Jerusalem was to','demonstrate the ability of God to deliver His people from captivity','set a trap for the Babylonians and destroy them','restore the people of Judah and their leaders to the true worship of God','punish the people of Judah and their leaders for their sins.','','','c','','utme','2013',89,'Admin','2016-11-12 12:51:30','2020-08-13 09:33:04'),(414,'When the three Hebrew men refused to worship the King’s image, he commanded that they be','thrown into a furnace','stoned','beheaded','thrown into the lion’s den.','','','c','','utme','2013',84,'Admin','2016-11-12 12:51:30','2020-08-13 09:14:33'),(415,'Jonah’s explanation to the LORD for resisting His first call teaches us that God is','repentant of evil','not ready to act fast','quick to anger','not sincere in His call.','','','c','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(416,'Before his call, Amos was a','herdsman','seer','farmer','prophet.','','','a','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(417,'Amos’ prophecies which were considered as a conspiracy against the northern kingdom were reported to the king by','Micaiah','Amaziah','Hilkiah','Micah.','','','a','','utme','2013',85,'Admin','2016-11-12 12:51:30','2020-08-13 13:05:02'),(418,'How did God help Jeremiah overcome his inability to speak as prophet?','He put out His hands and touched his mouth.','He sent the Seraphim to speak to him.','He gave him a cake of honey to eat.','He touched his mouth with a burning coal.','','','d','','utme','2013',75,'Admin','2016-11-12 12:51:30','2020-08-13 09:33:04'),(419,'Prophet Ezekiel was set upon his feet to hear the LORD speak when','an angel of the LORD lifted him','a voice from heaven commanded him to do so','the Spirit entered into him','He was made to touch the ephod','','','d','','utme','2013',94,'Admin','2016-11-12 12:51:30','2020-08-13 12:57:28'),(420,'According to Jeremiah, the people of Israel were in exile because of their','impatience and immorality','rebellion against Nebuchadnezzar','maltreatment of the poor','unfaithfulness and faithlessness.','','','b','','utme','2013',81,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(421,'‘‘... and many will rejoice at his birth; for he will be great before the Lord...” In the statement above, the angel made this pronouncement because of','Elizabeth’s disbelief because of her bareness','Mary’s holy nature','Zachariah’s fervent prayers','Joseph’s hesitation to marry Mary.','','','a','','utme','2013',80,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(422,'One quality of a good disciple that was exhibited by the first followers of Jesus was','faith','piousness','diligence','resourcefulness.','','','c','','utme','2013',87,'Admin','2016-11-12 12:51:30','2020-08-13 13:06:00'),(423,'“Lord, if you will, you can make me clean.” The statement above was made by the','leper','paralytic','centurion servant','epileptic boy.','','','d','','utme','2013',80,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:06'),(424,'The disciples of Jesus could not heal the boy with epilepsy because they','did not fast','had little faith','were powerless','did not pray.','','','a','','utme','2013',83,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(425,'The seeds that fell among the thorns in the parable of the sower refer to people that heard the word of God but','the evil one snatched it','had no faith to nurture it','the criticism of others quenched it','the cares of the words choked it.','','','d','','utme','2013',87,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(426,'The promise to those who are persecuted for righteousness sake is that they will','inherit the earth','inherit the kingdom of heaven','see God','be called sons of God.','','','b','','utme','2013',81,'Admin','2016-11-12 12:51:30','2020-08-13 12:57:28'),(427,'According to Peter during the great confession, people believed that Jesus was','the Messiah','a priest','the Son of God','one of the prophets.','','','c','','utme','2013',82,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(428,'‘‘... Behold, your king is coming to you, humble, and mounted on an ass...,” The prophecy in the statement above was fulfilled during Jesus','birth in a manger','transfiguration','triumphal entry','baptism by John','','','d','','utme','2013',85,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(429,'After His arrest, Jesus was taken to','Pontiphas','Agrippa','Caiaphas','Pilate','','','a','','utme','2013',72,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(430,'According to Mark, the young man that the women saw in Jesus’ tomb told them to go with the disciples and wait for Him in','Bethlehem','Jerusalem','Bethany','Galilee','','','a','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(431,'“He was not the light but was sent to bear witness to the light.” The statement above refers to','Simeon','Jesus','John the Baptist','Peter Barjona','','','b','','utme','2013',75,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(432,'The appointment of deacons became necessary because of the complaint by the','Gentile converts','Hellenists','Pharisees','Sadducees','','','d','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:06'),(433,'According to Paul, before his conversion, he persecuted the church violently to','make it desirable to the Gentiles','purge it','destroy it','have it conform to the Law.','','','d','','utme','2013',82,'Admin','2016-11-12 12:51:31','2020-08-13 12:58:14'),(434,'“Lord, I have heard from many about this man, how much evil he has done to thy saints at Jerusalem...” Ananias’ response above to God’s request for him to meet Saul shows that he','felt that Saul should not be forgiven','felt that Saul should be punished','was not interested in meeting Saul','was afraid to meet Saul.','','','a','','utme','2013',78,'Admin','2016-11-12 12:51:31','2020-08-13 09:33:23'),(435,'“It is necessary to circumcise them, and to charge them to keep the law of Moses.” In response to the Pharisees’ statement above, Peter rebuked them, by saying that God has','made circumcision for only those in leadership','chosen the Israelites among other people','cleansed the Gentiles’ heart by faith','put the yoke upon the Gentiles’ necks.','','','a','','utme','2013',86,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(436,'According to Galatians, judgment is without mercy to one who has shown no mercy, yet mercy triumphs over','tribulation','the law','judgment','punishment.','','','a','','utme','2013',80,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(437,'According to Colossians, the Lord does not wish that any should perish, but that all should','rejoice','be saved','be humble','repent','','','b','','utme','2013',89,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(438,'According to Peter, when Christians humble themselves, God will','protect them','direct their ways','grant them eternal life','exalt them.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-08-10 23:32:30'),(439,'According to Paul in his letter to Philemon, forgiveness should not be by compulsion but by','justification','faith','free will','His grace.','','','b','','utme','2013',84,'Admin','2016-11-12 12:51:31','2020-08-13 13:05:02'),(440,'In Corinthians, Paul said that one can only say Jesus is Lord by','denouncing the law','faith','grace','the Holy Spirit.','','','b','','utme','2013',85,'Admin','2016-11-12 12:51:31','2020-08-13 09:14:54'),(441,'When Christians give freely, God will supply','only for those that give','their needs according to His riches in glory','their needs according to the measure they give','their needs day by day.','','','d','','utme','2013',82,'Admin','2016-11-12 12:51:31','2020-08-13 06:17:35'),(442,'Paul in Timothy urged believers to make supplications, prayers, intercession and thanksgivings for all those who','are in authority','have accepted Christ','have wronged them','are the need','','','c','','utme','2013',85,'Admin','2016-11-12 12:51:31','2020-08-13 13:05:02'),(443,'According to Thessalonians, the second coming of the Lord will be','with the blowing of a trumpet','after scoffers have come','when the elements are dissolved','like a thief in the night.','','','b','','utme','2013',66,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(444,'According to James, when we meet various trails in life, we should','bless God’s name','call upon the name of the Lord','count it all joy','rejoice because the Lord is good.','','','d','','utme','2013',81,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(445,'“As each has received a gift, employ it for one another, as good stewards of God’s varied grace...” In the statement above, Peter teaches believers in virtue of','hospitality','giving','communion','fellowship.','','','a','','utme','2013',71,'Admin','2016-11-12 12:51:31','2020-08-13 06:17:41'),(446,'What in the creation account, gave man an edge over every other creature?','Other creatures were made for man','Man alone was created in the Image of God','Man had the rare privilege to dwell in Eden','Satan acknowledged his privileged position','','','b','','wassce','2009',79,'Admin','2016-11-12 13:02:28','2020-08-13 09:16:44'),(447,'At Shechem, God appeared to Abram and told him that','he should continue on his journey southward.','he should leave his country and Kindred.','the land would be given to his descendants.','in the land he should build an altar.','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:29','2020-07-14 14:17:31'),(448,'In their dealings with God, Abraham and Sarah learnt the \tfollowing lessons except that God is','able to bless the righteous.','faithful to His promise','all powerful-nothing is too hard for Him.','not in a hurry to carry out His promises.','','','c','','wassce','2009',75,'Admin','2016-11-12 13:02:29','2020-08-13 09:14:33'),(449,'Pharaoh’s horsemen and his army overtook the fleeing Hebrews encamped by the sea at','Migdol.','Etham.','Phiahiroth.','Meriba.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-08-07 08:29:17'),(450,'The episode of David and Bathsheba, Uriah’s wife was in \tviolation of God’s','sixth commandment.','seventh commandment,','eight commandment.','ninth commandment.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-15 13:50:19'),(451,'When the people of Israel received the encouraging report \tgiven by two of the twelve spies, they decided to','stone Moses for taking them out of Egypt.','choose Caleb as their leader and go back to Egypt.','stone the two spies who gave the report.','raise an army to fight the Canaanites.','','','d','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-08-13 09:15:52'),(452,'Which of the following tribes accompanied Deborah and Barak to the war against Jabin and Sisera?','Naphtali and Zebulum','Issachar and Reuben','Ephraim and Dan','Judah and Benjamin','','','a','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-08-13 13:05:02'),(453,'On matters of parental responsibility, Samuel could not be commended because he','made his children judges instead of priests.','wanted his children to succeed him.','did nothing to stop his children’s immoral behaviours.','did not care what happened to Israel after his death.','','','c','','wassce','2009',82,'Admin','2016-11-12 13:02:30','2020-08-07 08:29:17'),(454,'Eli, the priest in Shiloh, was condemned because he','allowed his children to deprive God of His share of sacrifice.','allowed the Ark of God to be taken to the battle field','did not take God’s message through Samuel seriously.','officiated at the temple without the assistance of the prophet.','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-08-13 09:14:33'),(455,'David’s first Contact with Saul was because he was','skillful in playing.','victorious over Goliath.','a man of valour.','a shepherd boy.','','','a','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:38'),(456,'David showed Nathan the prophet that he had repented of his sin by','refusing to marry Uriah’s wife.','confessing that he had sinned.','offering to compensate Uriah’s family','making sacrifice to please God.','','','b','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:39'),(457,'Elijah was a prophet during the reign of','Gideon.','David.','Ahab.','Rehoboam.','','','c','','wassce','2009',66,'Admin','2016-11-12 13:02:30','2020-08-07 09:21:53'),(458,'When God ordered famine on Israel, Elijah was fed by the ravens at','Brook Cherith.','River Jordan.','River Kishon','Mount Carmel.','','','a','','wassce','2009',60,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:41'),(459,'“The Lord forbid that I should give you the inheritance of my fathers”. The inheritance referred to here is','birth right.','the world.','the kingship.','a vineyard.','','','d','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:42'),(460,'The king of Judah who suffered in the hands of Nebuchadnezzar was','Jehoachin.','Manasseh.','Josiah.','Zedekiah.','','','d','','wassce','2009',80,'Admin','2016-11-12 13:02:30','2020-08-13 13:06:00'),(461,'The punishment of Israel according to the vision of Jeremiah includes all the following except','occupation of the land by foreigners.','restoration of their kings and priests.','destruction of their flocks and herds.','consumption of their harvest by their enemies.','','','a','','wassce','2009',93,'Admin','2016-11-12 13:02:30','2020-08-13 12:57:28'),(462,'Complete this statement “Holy, Holy, Holy is the Lord of Hosts,','the Seraphim’s bow to His glory”.','the whole earth will sing His glory”.','the whole earth is full of His glory”.','His creatures will rise to praise His Holy name”.','','','c','','wassce','2009',57,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:45'),(463,'When Isaiah saw the Lord in His holiness and glory, he exclaimed','“Blessed is me for 1 am truly holy”.','“Woe is me! For I am lost”','“Blessed be the name of the Lord”.','“I am finished, for I have seen a holy God”.','','','b','','wassce','2009',72,'Admin','2016-11-12 13:02:30','2020-08-08 00:12:56'),(464,'Jeremiah said the people of Judah were in a state of mourning because,','they sinned against God.','their vessels were empty','their farms were destroyed.','there was drought in the land.','','','a','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:47'),(465,'The king planned to set Daniel over the whole kingdom because,','he was the most educated of all.','an excellent spirit was in him.','he wanted to favour a foreigner.','Daniel brought information to the king.','','','b','','wassce','2009',66,'Admin','2016-11-12 13:02:30','2020-08-13 09:15:52'),(466,'God spoke through Amos that He would punish Israel for the following sins except that they','sold the righteous for silver.','sold the needy for a pair of shoes.','trampled the head of the poor into the dust.','pursued their brothers with the swords.','','','d','','wassce','2009',67,'Admin','2016-11-12 13:02:30','2020-08-13 09:15:24'),(467,'The first batch of Jewish exiles to rebuild the temple was under the leadership of','Joshua.','Hanani.','Sheshbazzar.','Zerubabel.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:30','2020-08-13 09:15:52'),(468,'Which two tribes in Israel led in the rebuilding of the temple after the exile?','Judah and Benjamin','Naphtali and Joseph','Manasseh and Reuben','Judah and Ephraim','','','c','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-08-13 09:33:04'),(469,'After his baptism Jesus began to','proclaim the kingdom of God.','baptize others.','confront religious leaders.','teach in parables.','','','a','','wassce','2009',78,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:52'),(470,'The devout man in Jerusalem whom the Lord promised would see Christ before his death was named','Zechariah.','Joseph.','Stephen','Simeon.','','','d','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:53'),(471,'Jesus ordered the seventy disciples not to salute any one because','their mission required urgency.','it is not part of their mission to salute people.','they may forget their mission.','salutations to strangers defile the Jews.','','','a','','wassce','2009',64,'Admin','2016-11-12 13:02:30','2020-07-29 13:58:20'),(472,'Jesus teaches, “Let your light so shine before men...” By light Jesus refers to,','the Christian character and virtues in us.','the bright lights at the altar in the church.','the light that shows the right way.','our knowledge of the scripture.','','','a','','wassce','2009',73,'Admin','2016-11-12 13:02:30','2020-08-13 12:57:28'),(473,'“And if anyone will not receive you or listen to your words, shake off the dust from your feet as you leave that house.” This is a sign of','forgiveness','rebuke','acceptance','condemnation.','','','d','','wassce','2009',64,'Admin','2016-11-12 13:02:30','2020-08-13 13:06:00'),(474,'“Foxes have holes and birds of the air have nets; but the son of man has nowhere to lay His head”. By this statement, Jesus meant that His disciples','would not grow rich.','would not enjoy good houses.','had a lot of task ahead.','had a lot of enemies.','','','c','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-07-28 12:17:02'),(475,'The treasures which Jesus wants us to lay in heaven include','generosity and kindness.','love and mercy.','works of righteousness','gold and silver.','','','c','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-08-13 12:57:28'),(476,'“No one can serve two masters...” This means that one should not','be idolatrous.','belong to two religions.','worship money.','bean unbeliever.','','','a','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-08-04 17:25:42'),(477,'Whoever drinks the water Jesus gives will never thirst? What is this water?','The spirit of God.','Holy and anointed water.','The word of God.','Law of God.','','','a','','wassce','2009',58,'Admin','2016-11-12 13:02:31','2020-08-13 09:33:23'),(478,'Jesus said “I am the bread of life; he who comes to me shall not hunger...” ‘Bread of life’ in this context means the','body of Jesus Christ.','manna given to the Israelites.','holy bread of life.','spiritual food through Jesus.','','','d','','wassce','2009',67,'Admin','2016-11-12 13:02:31','2020-08-15 23:15:08'),(479,'John’s summary of God’s love for the world is that He','sent his son to judge the world righteously.','created man in his own image with authority.','made light that the world might walk in it.','gave his only son to save all believers.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-08-13 12:57:28'),(480,'According to John’s Gospel, Lazarus was from','Bethany','Galilee.','Jerusalem.','Bethsaida.','','','a','','wassce','2009',69,'Admin','2016-11-12 13:02:31','2020-08-07 08:29:17'),(481,'Jesus said to Martha, “...and whoever live and believes in me shall never die...” Jesus talks about','physical death.','spiritual death.','emotional death.','natural death.','','','b','','wassce','2009',63,'Admin','2016-11-12 13:02:31','2020-08-13 09:15:52'),(482,'The meeting of the Christian Council of Jerusalem was chaired by','Peter.','Paul.','James.','John.','','','a','','wassce','2009',78,'Admin','2016-11-12 13:02:31','2020-08-13 13:06:00'),(483,'Paul wished to retain Onesimus with him but did not do so because','Onesimus was unwilling to stay with him.','he was afraid of Philemon’s reaction.','he did not like such a favour to be imposed on Philemon.','Onesimus would soon be released from jail.','','','c','','wassce','2009',64,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:05'),(484,'Paul and his associates gave the Thessalonian believers an \timportant example to imitate. This example was to','be ready to help the poor always','toil, labour and work to earn a living','depend on foreign aids for sustenance.','suffer imprisonment without complaint.','','','b','','wassce','2009',54,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:06'),(485,'Peter urged all Christians to endure sufferings in faith conscious of the fact that','Jesus, himself also resisted suffering','the devil could lure them from faith with suffering.','only the physical body is affected.','suffering is temporary and leads to eternal glory.','','','d','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-08-13 12:58:14'),(486,'Paul’s teaching in Colossians on love, respect and obedience concerns','Christian giving.','family relationship.','master servant relationship.','Christian relations with their enemies.','','','b','','wassce','2009',77,'Admin','2016-11-12 13:02:31','2020-08-13 09:33:04'),(487,'According to Peter, God set up the state for the purpose of','silencing the ignorance of foolish men.','collecting appropriate taxes from its citizens','carrying out appropriate sanctions for the guilty','ensuring the protection of its citizens','','','d','','wassce','2009',56,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:09'),(488,'In Paul’s epistle to the Thessalonians, any Christian living \tin idleness should be','thrown out of the Church.','looked at as an enemy.','sympathized with','avoided by the others.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:10'),(489,'The two major obstacles against Abraham’s hope for a son were','impotency and old age','faithlessness and unbelief.','old age and barrenness.','sin and doubt.','','','b','','wassce','2009',65,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:11'),(490,'The theme justification by faith can only be achieved through','sacrifices to Jesus.','resurrection of Jesus.','redemptive power of Jesus.','response of angels to Jesus.','','','c','','wassce','2009',74,'Admin','2016-11-12 13:02:31','2020-08-14 18:59:14'),(491,'According to Paul in Romans, if it is the adherents of the law who are to be the heirs of Abraham then faith in Jesus is','null and void.','not attainable','.     \t\t\t\\nbeyond the reach of Gentiles','transgression of the law.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:13'),(492,'“Your blood be upon your heads! I am innocent. From now on I will go to the Gentiles.” This was Paul’s utterance at','Antioch.','Corinth.','Lystra.','Ephesus.','','','d','','wassce','2009',73,'Admin','2016-11-12 13:02:31','2020-08-13 13:06:00'),(493,'The preaching of the resurrection of Jesus by his disciples \twas opposed by the','Jews.','Elders.','Sadducees.','Pharisees.','','','c','','wassce','2009',72,'Admin','2016-11-12 13:02:31','2020-08-13 13:06:00'),(494,'The first missionary journey was started by Paul and','Judas','.      \\nBarabbas.','Timothy.','Barnabas.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:16'),(495,'During the election to replace Judas among the twelve, Peter quoted from the book of','Joel.','Psalms.','Isaiah.','Ezekiel.','','','b','','wassce','2009',76,'Admin','2016-11-12 13:02:31','2020-08-13 13:05:02'),(496,'What was Herod’s reaction when he heard the news about Jesus’ birth?','He sent gifts','He was excited','He was troubled','He became calm','','','c','','utme','2015',73,'Admin','2016-11-12 13:28:12','2020-07-14 14:18:18'),(497,'“....... Behold, I will bring evil upon you; I will utterly sweep you away .....” Elijah pronounced destruction on Ahab with the statement above for his sin of','the killing of God’s prophets','worship of other gods','going to war against Ramoth-gilead','greed, covetousness and murder','','','a','','utme','2015',67,'Admin','2016-11-12 13:28:14','2020-08-13 12:58:14'),(498,'The ruler of the synagogue whose child Jesus raised to life was','Zebedee','a widow','Jairus','a centurion','','','c','','utme','2015',69,'Admin','2016-11-12 13:28:14','2020-08-13 13:06:00'),(499,'According to Amos, true religion entails','engaging in sacrifices and burnt offerings','being just and righteous','fasting and praying always','engaging in holy feasts and assemblies','','','b','','utme','2015',74,'Admin','2016-11-12 13:28:14','2020-08-13 09:16:44'),(500,'Paul in Romans said that the righteousness of God has been manifested through faith in Jesus Christ for','the exaltation of the authority','the cleansing of the sinners','the dead in Christ','all those who believe','','','d','','utme','2015',68,'Admin','2016-11-12 13:28:14','2020-08-13 09:16:44'),(501,'“I tell you, if these were silent, the very stones would cry out.” Jesus’ statement above was made when','He was rebuked by the Pharisees for eating with sinners','the scribes and the chief priest came to arrest Him','He consoled a woman on His way to the cross','the Pharisees asked Him to rebuke His disciples','','','d','','utme','2015',75,'Admin','2016-11-12 13:28:15','2020-08-13 09:16:44'),(502,'Before Moses brought the Israelites to meet God on Mount Sinai, he charged them to','touch the mountain at the sight of smoke','ensure they eat very well','wash the garments and be consecrated','mate with their wives for three days','','','c','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:30'),(503,'In His teaching about Himself, Jesus said the hireling is not a good shepherd because he','leaves the sheep and flees at the sight of danger','owns the sheep but does not care for them','cares for the sheep but does not discipline them','is the gate-keeper who shuts the sheep out','','','a','','utme','2015',73,'Admin','2016-11-12 13:28:15','2020-08-13 09:15:24'),(504,'God displayed His supremacy when Ahab was king during \tthe','incidence of Naboth’s vineyard','war with Ramoth-gilead','inciting of Jehoshaphat against him','contest of Mount Carmel','','','d','','utme','2015',67,'Admin','2016-11-12 13:28:15','2020-08-13 12:58:14'),(505,'In his teaching on effective prayer, James said that the prayer of faith would','influence the authority','heal and cleanse sins','ensure salvation for the sick','enhance commitment to church','','','b','','utme','2015',58,'Admin','2016-11-12 13:28:15','2020-07-23 10:07:46'),(506,'Paul in Thessalonians declared that at the second coming \tof the Lord, those who are alive will not precede those that are','ignorant','condemned','asleep','faithful','','','c','','utme','2015',54,'Admin','2016-11-12 13:28:15','2020-08-13 09:33:04'),(507,'When Ezekiel ate the scroll that was given to him his call. it signified that','God would always go before him','his sins were forgiven','he would never be hungry','he was filled with God’s word','','','d','','utme','2015',54,'Admin','2016-11-12 13:28:15','2020-08-08 00:12:56'),(508,'“ ..... I will surely tear the kingdom from you and will give it to your servant .....” An unwise decision of Solomon that resulted in God making the pronouncement above was his','dependence on other nations for supplies','policy of forced labour','neglect of God for other gods','heavy taxation on the people','','','c','','utme','2015',61,'Admin','2016-11-12 13:28:15','2020-08-13 12:58:14'),(509,'God fed the Israelites with Manna at the wilderness of','Zin','Elim','Sinai','Sin','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:36'),(510,'“The very stone which the builders rejected has become the head of the corner” The statement above in Peter was directed to those who','did not believe in Jesus’ preciousness','built the Temple of Jerusalem','don’t offer spiritual sacrifice','are hard hearted against Jesus Christ','','','d','','utme','2015',68,'Admin','2016-11-12 13:28:15','2020-08-13 09:15:52'),(511,'A good example of parental responsibility was demonstrated by','Samuel','Eli','Asa','David','','','c','','utme','2015',61,'Admin','2016-11-12 13:28:15','2020-08-13 12:57:28'),(512,'Why did Pilate send Jesus to Herod during the trial?','Jesus, as a Galilean was under Herod’s jurisdiction','Pilate had no power to pass the death sentence','Herod’s court was the last point before crucifixion','Herod had longed to see Jesus perform miracles','','','a','','utme','2015',80,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:39'),(513,'Who was the king that granted Nehemiah permission to go and rebuild Jerusalem?','Darius','Nebuchadnezzar','Artaxerxes','Cyrus','','','c','','utme','2015',67,'Admin','2016-11-12 13:28:15','2020-08-07 08:29:17'),(514,'“Shall l pursue after this band? Shall l overtake them?” David’s dependence on God for direction is depicted in the statement above when','Absalom had revolted against him','Saul was within his grasp','the Amalekites had raided Ziklag','he was to go against Goliath','','','c','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-08-13 09:15:52'),(515,'A parable that teaches a lesson on the demands of the kingdom is that of the','lost coin','Weeds','Samaritan','prodigal son','','','c','','utme','2015',62,'Admin','2016-11-12 13:28:15','2020-08-13 09:16:44'),(516,'Paul admonished the Romans to live a new life in Christ by yielding themselves to God as men who','have been brought from death to life','will meet Christ in God’s Kingdom','will receive judgment on the last day','have suffered for the sake of the gospel','','','a','','utme','2015',58,'Admin','2016-11-12 13:28:15','2020-08-13 13:05:02'),(517,'An action that demonstrated Solomon’s wisdom was his','judgment of the prostitute’s child','reliance on a medium','alliance with other nations','taxation policy for his building works','','','a','','utme','2015',76,'Admin','2016-11-12 13:28:15','2020-08-13 13:06:00'),(518,'According to Corinthians, Paul while defending himself advised believers to boast only of the things that','exhibit their authority','show their weakness','display their exaltation','depict their righteousness','','','d','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-07-15 14:05:27'),(519,'The most important aspect of the religious reforms of King Josiah was the','renewal of the covenant','cleaning of the Temple','discovery of the tomb of the man of God','discovery of the book of the law','','','d','','utme','2015',66,'Admin','2016-11-12 13:28:15','2020-08-13 12:58:14'),(520,'Cornelius who was converted and baptized by Peter was a','member of the Sanhedrin','centurion','Gentile who persecuted the church','scribe','','','b','','utme','2015',78,'Admin','2016-11-12 13:28:15','2020-07-29 13:58:20'),(521,'David was successful as a leader in Israel because','he submitted to God’s guidance','of his training as a solider','of the love of his people','of his life as a shepherd','','','a','','utme','2015',62,'Admin','2016-11-12 13:28:15','2020-08-13 09:33:04'),(522,'The action that portrayed Moses as a leader of the Israelites was his','request to Pharaoh to spare Israelite’s sons','disobedience to Pharaoh and escape','killing of an Egyptian who fought with a Hebrew','protection of the daughter of Jethro','','','c','','utme','2015',63,'Admin','2016-11-12 13:28:16','2020-08-13 13:05:02'),(523,'“How is it that you have agreed together to tempt the spirit of the Lord ....” The statement above was made in reference to the greed of','Gehazi and Naaman','Ahab and Jezebel','Judas and scribes','Ananias and Sapphira','','','d','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-07-23 10:07:47'),(524,'The king who captured and drove the Israelites into exile during the reign of Jehoiachin was','Nebuchadnezzar','Darius','Cyrus','Artaxerxes','','','a','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:58'),(525,'Nebuchadnezzar decreed that all his subjects should worship the image he had set up whenever they','desired something from him','saw him stand before it','looked upon it','heard the sound of music','','','d','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-08-13 09:33:23'),(526,'“The Son of man must suffer many things, and be rejected by the elders .....” Jesus made the statement above after He','cleansed the Temple','demanded to know who people thought He was','taught on the Mount','was asked by Pilate if He was the King of the Jews','','','b','','utme','2015',65,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:59'),(527,'How old was Abram when God appeared to him the second time?','105 years','75 years','99 years','85 years','','','c','','utme','2015',70,'Admin','2016-11-12 13:28:16','2020-08-04 17:25:42'),(528,'“Leaves the dead to bury their own dead ....” Jesus’ statement above to the man He asked to follow Him was indicative of','His power over death','His desire to save the man','the futility of life','the cost of discipleship','','','d','','utme','2015',73,'Admin','2016-11-12 13:28:16','2020-08-03 05:11:33'),(529,'Paul in Romans advised believers to respect those in authority to avoid God’s wrath and also for the sake of','conscience','Christ','faith','others','','','a','','utme','2015',60,'Admin','2016-11-12 13:28:16','2020-08-04 10:36:44'),(530,'“What is this conversation which you are holding with each other ...” Jesus made the statement above to','Cleopas and the other disciple when','they were on their way to Emmaus','He was about to be arrested','they were gathered in a room after His resurrection','','','a','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-08-13 09:33:23'),(531,'A key requirement for healing as exemplified by the disciple’s inability to heal the epileptic boy is','righteousness','power','humility','Faith','','','b','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:04'),(532,'According to Paul in Philippians, Jesus demonstrated humility when He','had pity on the possessed man','likened Himself to God','forgave those who crucified Him','took the form of man','','','d','','utme','2015',78,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:05'),(533,'“Holy, holy, holy is the Lord of host ....” The statement above was made in reference to the call of','Ezekiel','Jeremiah','Amos','Isaiah','','','d','','utme','2015',62,'Admin','2016-11-12 13:28:16','2020-07-23 10:07:46'),(534,'For obeying His word, God rewarded Shiphrah and Puah with','families','positions','servants','wealth','','','a','','utme','2015',67,'Admin','2016-11-12 13:28:16','2020-08-13 13:05:02'),(535,'In his teaching on Spiritual gifts in Corinthians, Paul said that all gifts are inspired by','the same Spirit','prayer','the individual’s ability','grace','','','a','','utme','2015',73,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:08'),(536,'When David’s son Absalom rebelled against him, David was forced to','flee from Jerusalem','abdicate the throne','divide his kingdom','surrender to him','','','a','','utme','2015',72,'Admin','2016-11-12 13:28:16','2020-08-13 09:15:52'),(537,'“Go and stand in the temple and speak to the people all the words of this life.” The angel’s statement above to Peter was after','the murmurings of the Hellenists','his release from prison','his vision of eating unclean meat','he received the Holy Spirit','','','b','','utme','2015',53,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:10'),(538,'In His sermon on the Mount, Jesus discouraged His listeners from laying up treasures on earth because','it would create enmity','they would not be respected','thieves would steal them','the earth would pass away','','','d','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:11'),(539,'Paul returned Philemon’s slave back to him, to ensure that','Philemon forgave and accepted the slave','the slave can complete his service time','he would be welcome when he left prison','he could boast of Philemon’s obedience','','','b','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:12'),(540,'One of the prophets that prophesied hope for Israel in spite of God’s promise of punishment was','Amos','Jeremiah','Obadiah','Hosea','','','b','','utme','2015',72,'Admin','2016-11-12 13:28:16','2020-08-13 13:05:02'),(541,'The church that was commended for giving even when in extreme poverty was in','Galatia','Corinth','Macedonia','Thessalonica','','','d','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-08-13 12:57:28'),(542,'“........ I am the Lord, and there is no other, besides me \tthere is no God....” God’s statement above through Isaiah depicts','assurance to Isaiah of His existence','Israel’s acceptance of His Supremacy','His divine nature','His sovereignty','','','c','','utme','2015',74,'Admin','2016-11-12 13:28:16','2020-08-13 09:14:33'),(543,'Believers today are partakers of the New Covenant through','partaking in baptism by immersion','the gift of the spirit','adherence to all the sacraments','obedience to church leadership','','','b','','utme','2015',55,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:22'),(544,'God’s message through Jonah’s was to the people of','Joppa','Tarshish','Samaira','Nineveh','','','d','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-08-13 09:33:23'),(545,'Amos is often referred to as a prophet of','doom','love','hope','justice','','','a','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:24'),(546,'On the fourth day, God created the sun, moon and stars for the following purposes except','to separate the day from the night.','for signs of seasons, days and years.','to give light upon the earth.','to dry up flood from the face of the earth.','','','a','','wassce','2010',77,'Admin','2016-11-12 13:36:18','2020-07-14 14:19:25'),(547,'Which of the following rivers flowed out of Eden to water \tits garden? River','Abana','Pharpar','Pishon','Nile','','','c','','wassce','2010',70,'Admin','2016-11-12 13:36:21','2020-08-13 06:17:41'),(548,'The wife of Moses was called','Rebecca.','Rachel.','Zipporah.','Deborah','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:21','2020-08-07 08:29:17'),(549,'When Joseph was sent to his brothers, he met them pasturing at','Hebron.','Bethel.','Beersheba','Dothan','','','d','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:28'),(550,'How old was Joshua before he died?','95 years','98 years','110 years','111 years','','','c','','wassce','2010',62,'Admin','2016-11-12 13:36:21','2020-08-13 09:16:44'),(551,'Why was Saul asked to destroy the Amalekites?','They were worshipping false gods','They opposed the Israelites when they left Egypt','They did not assist the Israelites','God did not like the Amalekites','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:31'),(552,'The first king of Israel lost his throne because he','was a weak king.','knew little about governance.','lost the support of Yahweh.','was irresponsible.','','','d','','wassce','2010',74,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:32'),(553,'During the Ammonite war Uriah disobeyed King David by refusing to go to his house to sleep because','it was wrong to go home drunk.','his wife would regard him as a coward.','it would be unpatriotic to break military vow.','he suspected that the king had lost interest in the battle.','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:34'),(554,'When Abner wanted to transfer his allegiance to David, the latter gave him the condition to','openly submit to Joab.','convince all Israel to come over to David.','restore his wife Michal to him.','slay Ishbosheth. Saul’s successor.','','','c','','wassce','2010',57,'Admin','2016-11-12 13:36:21','2020-08-13 13:05:02'),(555,'God said to Solomon in a dream, <em>“Ask what I shall give you”</em>. What did Solomon ask for?','Power and authority','Great wealth and riches','Stable and long term in office','An understanding mind','','','d','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:36'),(556,'Solomon showed lack of wisdom when he','put up temples for the gods of his wives','married many wives with children','invited the Queen of Sheba','gave out judgment to two harlots.','','','a','','wassce','2010',65,'Admin','2016-11-12 13:36:21','2020-08-13 12:58:14'),(557,'Solomon told Hiram, King of Tyre that he had decided to build a temple for the Lord because','the Lord had given him peace and all good things.','his father, David, never intended to build one.','he wanted to force Hiram to come to his aid.','Hiram had entered into a marriage alliance with his father.','','','a','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-08-13 13:06:00'),(558,'Elijah destroyed the prophets of Baal','to oppose Baal worship.','as an act of revenge.','as an act of sacrifice.','to shame Jezebel.','','','a','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:39'),(559,'Who was the king who reintroduced the Passover feast in Israel?','Jeroboam','Asa','Josiah','Rehoboam','','','c','','wassce','2010',77,'Admin','2016-11-12 13:36:21','2020-08-13 12:58:14'),(560,'Who was the prophet responsible for the re-building of the Temple during the exile?','Ezra','Isaiah','Jeremiah','Ezekiel','','','a','','wassce','2010',70,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:41'),(561,'Which of the following prophets taught that Yahweh was merciful?','Isaiah','Hosea','Amos','Ezekiel','','','b','','wassce','2010',72,'Admin','2016-11-12 13:36:21','2020-08-13 09:33:23'),(562,'Daniel was delivered from the lion’s den because','of his faith in God’s power.','of the king’s prayers.','he was able to charm the lions.','the lions were kind to him.','','','a','','wassce','2010',76,'Admin','2016-11-12 13:36:21','2020-08-13 12:57:28'),(563,'The person who discovered the book of law in the sanctuary during the reign of Josiah was','Zedekiah','Huldah.','Hilkiah','Jeremiah.','','','c','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:44'),(564,'According to Amos’ prophecy, the “Day of the Lord” to the Israelites would be a day of','victory over enemies','happiness.','doom.','national triumph.','','','c','','wassce','2010',78,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:45'),(565,'Isaiah said that when Israel spread forth their hands, God would hide his face because they were','making many prayers','offering vain sacrifices.','worshipping God with their hearts.','observing elaborate feasts.','','','b','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-08-13 09:33:04'),(566,'From Luke’s account of the baptism of Jesus, which of the following happened before the voice was heard?','John was reluctant to baptize Him.','John called Jesus the Lamb of God.','Jesus arrived with Peter, James and John','The Holy Spirit descended upon Jesus.','','','d','','wassce','2010',87,'Admin','2016-11-12 13:36:22','2020-08-13 09:14:54'),(567,'Before their first encounter with Jesus, Peter and Andrew were','preachers.','tax collectors.','fishermen.','tent makers.','','','c','','wassce','2010',63,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:50'),(568,'By the action of the Good Samaritan, Christians are encouraged to','go out to the streets and look for someone to help.','always travel with enough money in case the need arises to help.','show compassion and render help to the needy.','avoid travelling on lonely roads where armed robbers could attack.','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:22','2020-08-13 09:33:23'),(569,'The <em>lost sheep</em> and the <em>lost coin</em> share the following except that','both of them are lost and need to be found','it is their owners’ responsibility to look for them.','the coin, may not know that it is lost.','their owners rejoice when they are found.','','','a','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-08-13 09:15:52'),(570,'The parable of the rich man and Lazarus indicates that','poverty is a mark of righteousness.','death is a leveler for rich and poor','only poor people will die physically.','all rich men are going to hell fire.','','','b','','wassce','2010',59,'Admin','2016-11-12 13:36:22','2020-08-13 12:57:28'),(571,'In one of the resurrection appearances Jesus asked his disciples, whether they had anything to eat as he','was hungry after three days in the grave without food.','suspected that the disciples stock may have finished','wanted to prove to them that he was not a ghost.','wanted to replenish the food stuff.','','','b','','wassce','2010',60,'Admin','2016-11-12 13:36:22','2020-08-07 08:29:17'),(572,'By introducing Jesus as the Lamb, John was pointing to','Jesus’ sacrificial death.','Jesus’ miraculous healing.','the Jewish yearly sacrifices.','the priestly function of Jesus','','','a','','wassce','2010',86,'Admin','2016-11-12 13:36:22','2020-08-14 18:59:14'),(573,'St. John refers to Jesus’ miracles as ‘signs’ because they convey the following ideas except','acceptance of Jesus as son of God.','proofs of the kingdom of God.','faith in Jesus as the means to eternal life.','demand for more wonders.','','','d','','wassce','2010',61,'Admin','2016-11-12 13:36:22','2020-08-13 13:05:02'),(574,'Apart from the miracles at the wedding feast, another miracle of Jesus at Cana in Galilee was','feeding the four thousand.','healing the noble man’s son.','healing of a man born blind','healing a paralytic man.','','','d','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-08-15 23:15:08'),(575,'At whose well did Jesus meet the Samaritan woman?','Abraham','Isaac','Jacob','Joseph','','','c','','wassce','2010',66,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:05'),(576,'The lame man who was healed at the pool of Bethizatha was charged by the Jews for breaking the law of the Sabbath \tbecause he','consulted Jesus on the Sabbath day.','was carrying his pallet on a Sabbath day.','was on a journey on a Sabbath day.','was seen with Jesus on a Sabbath day.','','','b','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(577,'The descent of the Holy Spirit on the day of  Pentecost was prophesied by','Amos.','Joel.','David.','Ezekiel.','','','b','','wassce','2010',75,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(578,'When the apostles in Jerusalem heard that Samaria had received the gospel, they sent to them','Mark and Barnabas.','Peter and John.','Paul and John.','Peter and Paul.','','','b','','wassce','2010',85,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:07'),(579,'The conversion of the Ethiopian eunuch confirms the','universality of the gospel.','work of the Apostles.','work of Philip in Samaria','the love of God for the eunuch.','','','a','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:08'),(580,'After his conversion, Paul was introduced to the disciples in Jerusalem by','Peter','Ananias.','Barnabas.','Philip','','','c','','wassce','2010',66,'Admin','2016-11-12 13:36:22','2020-08-13 09:33:23'),(581,'Before Barnabas and Saul were sent on missionary journey, the elders, laid hands on them. The laying on of  hands signifies','confirmation.','selection.','commissioning.','protection','','','c','','wassce','2010',75,'Admin','2016-11-12 13:36:22','2020-08-13 09:14:54'),(582,'The man who delivered judgment of the Jerusalem Council on the admission of Gentiles into the Church was','Peter.','Paul.','Barnabas.','James.','','','d','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:11'),(583,'Why according to Paul must Christians be subject to civil authority?','To receive God’s approval','To avoid God’s wrath','God has commanded it','It is an Old Testament law','','','b','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-08-13 12:58:14'),(584,'In the Epistle to the Romans, justification is received through','faith in Jesus.','moral uprightness','observance of the law.','giving of alms','','','a','','wassce','2010',73,'Admin','2016-11-12 13:36:22','2020-08-13 13:06:00'),(585,'By saying that no human being will be justified in the sight of God by works: Paul meant that','the mosaic law was useless in ensuring justification for man.','the law had been weakened in human flesh.','knowledge of sin came through the law.','Moses who gave the law was not justified by the law.','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:15'),(586,'Paul’s greatest writing about spiritual gift is found in his letter to the','Galatians.','Ephesians.','Romans.','Corinthians','','','d','','wassce','2010',83,'Admin','2016-11-12 13:36:22','2020-08-13 13:06:00'),(587,'In Corinthians, Paul cited all the following resurrection appearances of Jesus except','Cephas.','The Twelve.','Mary Magdalene','James.','','','d','','wassce','2010',63,'Admin','2016-11-12 13:36:22','2020-08-13 13:05:02'),(588,'According to Peter, a Christian should exercise his freedom by','doing what is right.','claiming his freedom at all cost.','enduring pain while suffering.','using it as a pretext for evil.','','','a','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:18'),(589,'In which of the following ways did the Philippians share in Paul’s suffering while in prison?','Appealing for the release of Paul','Sending him relief materials','Continuing in prayer for him','Remaining in partnership with him in receiving.','','','b','','wassce','2010',63,'Admin','2016-11-12 13:36:22','2020-08-13 12:58:14'),(590,'What advice did Peter give to the elders of the church in their relationship with the younger members?','Work as if being under external constraint','Work without a domineering spirit','Work with a desire for material gains','Control their flocks with firm hands','','','b','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-08-13 09:14:54'),(591,'In Philippians, Paul taught that Jesus ‘humility and death on the cross earned Him','salvation for Israel.','adoption as son of God.','exaltation as Lord.','eternal life in the kingdom.','','','c','','wassce','2010',72,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:21'),(592,'Why did Paul wish to retain Onesimus?','To protect him from persecution','Christianity was opposed to slavery','Philemon had earnestly requested that from Paul','To serve him during his imprisonment','','','b','','wassce','2010',71,'Admin','2016-11-12 13:36:22','2020-08-13 09:15:52'),(593,'James teaches that the man who shall be blessed is he who','hears the word of God.','knows the law perfectly.','does the word he hears.','teaches the word of God well.','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:23','2020-08-13 09:15:24'),(594,'Through God the Christian is no longer a slave but a son, and if a son then','a master.','a redeemed.','an heir.','a beneficiary.','','','c','','wassce','2010',69,'Admin','2016-11-12 13:36:23','2020-08-13 09:16:44'),(595,'Peter recommends submission to the civil authority so as to','silence the ungodly.','encourage the believers.','promote faith in God.','live as free men.','','','a','','wassce','2010',80,'Admin','2016-11-12 13:36:23','2020-08-13 12:58:14'),(596,'What was God’s purpose in creating man?','To be master of all creation','To help Him look after the garden','To name the things He created','To multiply and fill the earth','','','d','','utme','2010',88,'Admin','2016-11-12 13:46:53','2020-08-13 06:17:41'),(597,'Isaac’s prayer to God for his barren wife showed that he','truly loved her','sincerely loved his God','had faith in God','was tired of being childless','','','c','','utme','2010',78,'Admin','2016-11-12 13:46:54','2020-08-13 09:33:04'),(598,'In God’s covenant with Israel, the central theme was','restoration','circumcision','obedience','salvation','','','c','','utme','2010',89,'Admin','2016-11-12 13:46:54','2020-08-12 08:04:24'),(599,'‘Who am I that I should go to Pharoah......’ When Moses resisted God’s call with the state¬ment above, it portrayed his','stubbornness','incompetence','lack of strength','lack of eloquence','','','d','','utme','2010',80,'Admin','2016-11-12 13:46:55','2020-08-13 09:15:52'),(600,'What was Samson’s major achievement as Israel’s leader?','He suppressed the Philistines','He captured the city of Jericho','He saved the Israelites from the Amorites','He secured permanent independence for Israel','','','a','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-08-13 09:14:54'),(601,'God guided the Israelites on their way from Egypt to the Promised Land by','the work of two angels','dividing the Red Sea','a pillar of cloud and a pillar of fire','miracles that gave them direction on the way','','','d','','utme','2010',79,'Admin','2016-11-12 13:46:55','2020-08-12 08:04:24'),(602,'‘Deal gently for my sake with the young man Absalom.’ David’s statement above exhibited his','indulgent love for his son','willingness to forgive his competitors','desire to punish Absalom himself','high level of parental control','','','a','','utme','2010',79,'Admin','2016-11-12 13:46:55','2020-08-13 09:14:33'),(603,'How did king Asa prove to be a godly king?','He killed all the prophets of Baal at Mount Carmel.','He saved Judah from the Philistine menace','He instituted spiritual reforms that removed all idols and prostitution in the land.','He made the worship of Yahweh mandatory for every Jew and sojourner.','','','c','','utme','2010',81,'Admin','2016-11-12 13:46:55','2020-08-05 06:24:09'),(604,'The Hebrew midwives who obeyed God rather than Pharaoh were blessed with','favour from all the Israelites','long life in Canaan','resources','families','','','d','','utme','2010',87,'Admin','2016-11-12 13:46:55','2020-08-13 12:57:28'),(605,'When Saul disobeyed God’s command, Samuel rebuked him by saying that','the sword would never depart from his house','to obey was better than sacrifice','he should fear the LORD and obey the people’s voice.','though he was little, yet he was the head.','','','b','','utme','2010',86,'Admin','2016-11-12 13:46:55','2020-08-12 08:04:24'),(606,'David’s behaviour after Prophet Nathan accused him of murder and adultery showed his','justification','repentance','greed','righteousness','','','b','','utme','2010',91,'Admin','2016-11-12 13:46:55','2020-08-05 06:24:09'),(607,'How did King Solomon demonstrate his wisdom in settling the dispute over the ownership of a baby by the two \\nProstitutes?','He interrogated them for seven days until the truth was discovered.','He interrogated them for only three days and the truth was revealed','He asked them to divide the child into two and the mother was known.','He threatened to give the child to a neutral woman and the mother was known.','','','c','','utme','2010',90,'Admin','2016-11-12 13:46:55','2020-08-13 09:14:54'),(608,'The prophet who made known the imminent divi¬sion of the kingdom of Israel during Solomon’s reign was','Jehu','Ahijah','Elisha','Elijah','','','b','','utme','2010',90,'Admin','2016-11-12 13:46:55','2020-08-15 23:15:08'),(609,'Naaman’s leprosy was transferred to Gehazi be¬cause Gehazi was','ambitious','anxious','covetous','contemptuous','','','c','','utme','2010',67,'Admin','2016-11-12 13:46:55','2020-08-12 08:04:24'),(610,'Obadiah who was m charge of Ahab’s house hold demonstrated reverence for the LORD by','giving Elijah the bull for the sacrifice on Mount Carmel.','rebuking Ahab and Jezebel for their evil deeds','hiding a hundred prophets of God from Jezebel’s wrath.','helping Elijah to kill the prophets of Baal on Mount Carmel.','','','c','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-08-13 13:05:02'),(611,'Although Josiah removed the vessels of Baal and Asherah from the Temple, God did not turn from the fierceness of His \twrath because”','the people did not remove them completely','Jehoahaz, Josiah’s son, had provoked Him','Manasseh had provoked Him','the people had opposed Josiah.','','','c','','utme','2010',86,'Admin','2016-11-12 13:46:55','2020-08-12 08:04:24'),(612,'What was Nehemiah’s initial reaction to the news about the ruins of Jerusalem?','He tasked the people on what to contribute','He called for volunteers to assist him','He fasted and prayed for forgiveness of sins','He asked for permission to travel home.','','','c','','utme','2010',123,'Admin','2016-11-12 13:46:55','2020-08-13 09:33:04'),(613,'After the dedication of the Temple, Ezra studied the law of the LORD in order to','defend the Jews against the Babylonians','become the first judge in Jerusalem','enhance his prophetic status','teach His statutes and ordinances in Israel.','','','d','','utme','2010',86,'Admin','2016-11-12 13:46:55','2020-08-12 08:04:24'),(614,'Daniel became distinguished above all other pre¬sidents and satraps because','an excellent spirit was in him','the spirit of Darius was in him','he was a good administrator','he was highly educated.','','','a','','utme','2010',78,'Admin','2016-11-12 13:46:55','2020-08-13 13:05:02'),(615,'How did the Ninevites react to Jonah’s message?','They did not believe it','They believed it for a while','They repented of their sins','They ordered him out of their city','','','c','','utme','2010',69,'Admin','2016-11-12 13:46:55','2020-08-13 13:06:00'),(616,'In Prophet Hosea’s analysis, harlotry is equivalent to Israel’s','prostitution','idolatrous practices','religious practices','adultery.','','','b','','utme','2010',73,'Admin','2016-11-12 13:46:55','2020-08-13 09:16:44'),(617,'‘... But let justice roll down like waters, and righteousness like an overflowing stream.’ Amos’ statement above suggests that the society was terribly','vindictive','abusive','oppressive','destructive','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:55','2020-08-12 08:04:24'),(618,'Isaiah emphasized holiness above all things be¬cause God','knew their hearts were right with him','was not interested in their sacrifices','who called them is holy','was searching their sinful   hearts.','','','c','','utme','2010',79,'Admin','2016-11-12 13:46:55','2020-08-12 08:04:24'),(619,'God told Ezekiel that the house of Israel would not listen to him because they','were a people of foreign speech','had forsaken His laws','were of a stubborn heart','had not truly repented','','','c','','utme','2010',89,'Admin','2016-11-12 13:46:55','2020-08-13 09:15:24'),(620,'According to Isaiah, God sent him to','proclaim liberty to the captives','proclaim victory over Israel’s enemies','be a watchman over Israel','destroy and overthrow nations.','','','a','','utme','2010',85,'Admin','2016-11-12 13:46:55','2020-08-13 12:58:14'),(621,'Jesus was tempted by the devil so as to','fulfil all righteousness','show His power over forces of nature','show that no one is above temptation','test the devil’s power','','','c','','utme','2010',96,'Admin','2016-11-12 13:46:55','2020-08-13 09:16:44'),(622,'‘Depart from me, for l am a sinful man, oh Lord.’ This statement was uttered by Peter at the','last supper','garden of Gethsemane','call of the disciples','transfiguration','','','c','','utme','2010',103,'Admin','2016-11-12 13:46:55','2020-08-13 09:33:23'),(623,'The impact of Jesus’ miracle of turning water into wine was that the','servants were astonished','master of ceremony believed','disciples believed more in Him','people glorified God.','','','c','','utme','2010',77,'Admin','2016-11-12 13:46:55','2020-08-13 09:14:54'),(624,'After the healing of the demoniac in the country of the Gerasenes, the people begged Jesus to (Mark 5:15-19)','stay with them','visit them always','go away from them','heal their sick.','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:56','2020-08-13 09:33:04'),(625,'Jesus told the parable of the lost sheep in order to illustrate that','every believer ought to rejoice with those who rejoice.','no person can hide from God','God’s love is unlimited','there is joy in heaven over a sinner who repents','','','d','','utme','2010',80,'Admin','2016-11-12 13:46:56','2020-08-11 08:29:17'),(626,'According to Jesus, the seventy disciples should rejoice because','their names were written in heaven','their faith and zeal were increased','of the submission of evil Spirits to them','of the fall of Satan from heaven like lightening.','','','a','','utme','2010',86,'Admin','2016-11-12 13:46:56','2020-08-13 09:33:23'),(627,'According to Mark, after the transfiguration, Jesus charged His disciples to','be prepared for persecution','tell no one what they had seen','have no hands in His betrayal','go to the Gentiles immediately','','','b','','utme','2010',89,'Admin','2016-11-12 13:46:56','2020-08-11 08:29:17'),(628,'According to Luke, the multitude that followed Jesus during the triumphal entry rejoiced and praised God with a loud voice because (Luke 19:37-39)','they realized that Jesus was a prophet','of the mighty works He had done','He was riding on a colt in humility','they believed He was their Messiah','','','b','','utme','2010',87,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(629,'‘Truly, I say to you, today you will be with me in paradise.....’ Jesus made the statement above to one of the \t\tcriminals because he (Luke 23:42-43)','respected Him','praised Him','rebuked his partner','was repentant','','','d','','utme','2010',77,'Admin','2016-11-12 13:46:56','2020-08-13 13:05:02'),(630,'The message of the risen Christ to the women who came early to the tomb was to be relayed to the disciples and (Mark 16:7)','the Jews','the Sadducees','Thomas','Peter','','','d','','utme','2010',93,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(631,'According to the Gospel of John, Jesus is the true vine while the vinedresser is (John 15:1)','the Holy Spirit','His father','the gardener','His mother','','','b','','utme','2010',85,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(632,'‘...Why has Satan filled your heart to lie to the Holy Spirit..’ Peter rebuked Ananias in the statement above for his sin of (Acts 5:3-4)','greed','insincerity','covetousness','partiality.','','','b','','utme','2010',87,'Admin','2016-11-12 13:46:56','2020-08-13 12:58:14'),(633,'Paul informed the Galatians that the gospel he preached came through (Gal. 3:23-29)','a revelation of Jesus Christ','his desire to lead them','inspiration from the angels','the faith of men.','','','a','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(634,'‘You son of the devil, you enemy of all righteous¬ness, full of all deceit and villainy .....’ This statement of Paul was addressed to (Acts 13:6-11)','Elymas, the magician','Paulus, the proconsul','Simon, the Magician','Demetrius, the silversmith','','','a','','utme','2010',90,'Admin','2016-11-12 13:46:56','2020-08-13 12:57:28'),(635,'‘Unless you are circumcised according to the custom of Moses, you cannot be saved.’ The statement above by the men from Judea led to the','murmurs of the Hellenists','convening of the Jerusalem Council','persecution that scattered the disciples','circumcision of the Gentiles.','','','b','','utme','2010',95,'Admin','2016-11-12 13:46:56','2020-08-13 12:58:14'),(636,'According to Galatians, the Law was added be¬cause of','righteousness','transgressions','grace','persecution.','','','b','','utme','2010',92,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(637,'According to Galatians, the death of Christ has eliminate all forms of','suffering','differences','condemnation','poverty.','','','c','','utme','2010',85,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(638,'Peter in his teaching no humility, admonishes Christians to','safeguard their faith','seek things that are above','be gentle in spirit','avoid life’s anxiety','','','b','','utme','2010',71,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(639,'Paul in Corinthians advised that Christians should re-affirm their love for those who','are kind to them','wrong them','humble themselves','are in authority.','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(640,'According to Corinthians, variety of gifts are inspired by','fervent prayers','angels of God','constant fasting','the same Spirit','','','d','','utme','2010',81,'Admin','2016-11-12 13:46:56','2020-08-13 12:57:28'),(641,'According to Paul in Corinthians, generosity produce','righteousness','salvation','the grace of God','thanksgiving to God','','','d','','utme','2010',95,'Admin','2016-11-12 13:46:56','2020-08-13 09:15:24'),(642,'Busy bodies and those living in idleness in the church at Thessalonica were admonished to','pray for those in authority for peace','do their work in quietness and earn a living','appeal to those in authority to create jobs','endure persecution from their masters.','','','b','','utme','2010',75,'Admin','2016-11-12 13:46:56','2020-08-12 08:04:24'),(643,'Paul in Thessalonians told believers that the coming of the Lord would be accompanied by','songs of praise','the sound of the trumpet','signs and wonders','wailing and mourning','','','b','','utme','2010',80,'Admin','2016-11-12 13:46:56','2020-08-13 09:14:33'),(644,'James stated in his epistle that when believers meet various trials, their faith produces','weakness','strength','steadfastness','righteousness','','','c','','utme','2010',85,'Admin','2016-11-12 13:46:56','2020-08-13 09:15:24'),(645,'Peter in his epistle enjoined servants to be sub¬missive to their masters with all','gentleness','seriousness','respect','humility.','','','c','','utme','2010',85,'Admin','2016-11-12 13:46:56','2020-08-13 12:57:28'),(646,'According to Joseph’s interpretation to Pharaoh’s dreams; the seven empty ears blighted by the east wind represented seven years of','famine.','abundance.','farming.','Harvest','','','a','','wassce','2011',75,'Admin','2016-11-12 14:29:10','2020-07-14 14:21:14'),(647,'Moses was born at a period when the Hebrew were','suffering.','increasing.','backsliding.','rejoicing.','','','a','','wassce','2011',69,'Admin','2016-11-12 14:29:12','2020-08-08 00:12:56'),(648,'“…who is the Lord that I should heed his voice and let Israel go”? After this statement, Pharaoh','engaged Israel into forced labour with task masters.','ordered midwives to kill all males born to Israelites.','asked Israelites to fetch their own straws to produce bricks.','decreed that Israelites’ male babies be drowned in the Nile.','','','c','','wassce','2011',71,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:15'),(649,'The name Moses means','baptized in water','abandoned in water.','drawn out of water.','thrown into water.','','','c','','wassce','2011',80,'Admin','2016-11-12 14:29:12','2020-08-04 17:26:45'),(650,'After the departure of the Israelites God made Pharaoh pursue them in order to','force Israel to return to Egypt.','hasten Israel’s journey through the wilderness.','make Israel obey Moses.','get glory over Pharaoh and his host.','','','d','','wassce','2011',80,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:17'),(651,'Who among the following kings was raised by God against the Israelites for going after the Canaanite gods?','Agap','Jabin','Zebah','Zalmunnal','','','c','','wassce','2011',67,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:18'),(652,'Deborah, a prophetess who was a judge in Israel was the wife of','Joshua.','Abijah.','Lappidoth.','Sisera.','','','c','','wassce','2011',73,'Admin','2016-11-12 14:29:12','2020-08-13 13:06:00'),(653,'The sons of Eli were regarded as worthless men for all the following reasons except','sleeping with the women at the tent of meeting','failing to attend the places of worship regularly.','taking the meat for sacrifice before boiling.','showing no respect for God.','','','b','','wassce','2011',75,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:20'),(654,'Who was the first king of Israel?','Kish','David','Solomon','Saul','','','d','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-08-13 09:15:52'),(655,'Joel and Abijah were the sons of','Eli.','Saul','Samuel','David.','','','c','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-08-13 09:33:23'),(656,'“...Behold, to obey is better than sacrifice and to hearken than the fat of rams”. This statement was Samuel’s reaction to','David’s defense of his sin.','Saul’s defense of disobedience.','King Agag’s defense of his victory.','Eli’s defense of the sins of his sons.','','','b','','wassce','2011',76,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:29'),(657,'On Mount Gilboa, king Saul decided to commit suicide in order to avoid','ridicule from the Philistines.','witnessing the death of his sons','being killed by his armour-bearer.','the agony of the injuries received.','','','a','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-08-13 09:33:04'),(658,'David bitterly mourned when Abner was slain by','Ishbosheth.','Absalom.','Asahel.','Joab.','','','d','','wassce','2011',54,'Admin','2016-11-12 14:29:13','2020-08-13 12:57:28'),(659,'One of the main features of Solomon’s prayer at the dedication of the Temple was the','celebration of God who is faithful to his covenant','recognition that God loves sacrifices.','assertion that God dwells in man-made houses.','proclamation that no prayers be henceforth made outside the temple.','','','d','','wassce','2011',67,'Admin','2016-11-12 14:29:13','2020-08-08 00:12:55'),(660,'In spite of Solomon’s apostasy, his empire remained intact until his death because','God deferred, for David’s sake, the punishment due to him','he won decisive victories over his enemies.','he always took wise decisions','. \\nhe made surrounding nations fight among themselves.','','','a','','wassce','2011',89,'Admin','2016-11-12 14:29:13','2020-08-07 09:21:53'),(661,'“Your father made our yoke heavy. Now therefore, lighten the hard service of your father.” These were the words of','Jeroboam','Solomon','.         \\nDavid','Ahijah.','','','a','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:34'),(662,'Obadiah, Ahabs servant, made history for himself by','arresting the prophets of Yahweh','. \\nexecuting all the prophets.','hiding and feeding some of the prophets in a cave.','D inciting the prophets to rebel against king Ahab.','','','c','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:35'),(663,'The contest between Elijah and the prophets of Baal took place at mount','Olive.','Tabor.','Sinai','Camel.','','','d','','wassce','2011',57,'Admin','2016-11-12 14:29:13','2020-08-13 09:15:24'),(664,'King Jehoshaphat was commended for adopting his father’s policies which included','removing Maacah, his grandmother from being queen.','waging wars with the king of Israel.','allowing the cult prostitutes to operate.','burning of incense at the high places.','','','a','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:42'),(665,'God’s constant love for unfaithful Israel is demonstrated in the book of','Amos','Isaiah','Hosea','Ezekiel','','','c','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:43'),(666,'During the rebuilding of the temple, Zerubbabel rejected the offer of help from the','inhabitants of Ammon.','people of Samaria.','friends of Sanballat and Tobiah','governors of the provinces beyond the rivers.','','','c','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-15 09:16:12'),(667,'“And I asked them concerning the Jews that survived, who has escaped exile, and concerning Jerusalem...” These were the words of','Jeremiah.','Nehemiah','Ezra.','Hanani.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:51'),(668,'The presentation of Myrrh to Jesus signifies Jesus’','humility and servant hood.','suffering and impending death.','lordship on earth.','kingship and messiah ship.','','','b','','wassce','2011',87,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:52'),(669,'“My son your sins are forgiven”. These were the words of Jesus to the','demoniac.','paralytic.','man born blind','centurion’s servant.','','','b','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:53'),(670,'Peter called for the construction of three booths for Jesus, Moses and Elijah, respectively during','the transfiguration.','the Ascension.','Jesus’ arrest.','the Passover feast.','','','a','','wassce','2011',85,'Admin','2016-11-12 14:29:13','2020-08-13 12:58:14'),(671,'The incidents that took place following Jesus’ death on the cross did not include the','tearing into two of the temple’s veil.','quaking of the earth that broke the rocks.','the opening of the tombs.','trembling of the chief priest and his conversion.','','','b','','wassce','2011',71,'Admin','2016-11-12 14:29:13','2020-08-13 09:33:23'),(672,'“How is it that you a Jew ask a drink of me...” This statement was made by the','Gentile woman.','woman of Samaria.','possessed woman.','woman of Galilee','','','b','','wassce','2011',69,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:55'),(673,'The Jews showed their hatred for Paul and Barnabas in Pisidia by','dragging out the apostles for stoning.','insisting and driving them out of the Synagogue.','influencing leading men in the city to drive them out.','beating and stoning them in the Synagogue','','','c','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(674,'When Jesus said “apart from me you can do nothing”, he \tmeant that Christians','pray without ceasing','. \\nmust faithfully trust in Him always.','cannot pass examinations if they did not pray.','should expect God to do everything for them.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-08-13 09:33:23'),(675,'On the day of Ascension, Jesus promised his disciples','peace in the kingdom of God.','amazing grace.','power of  the Holy Ghost.','His abiding physical presence.','','','c','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(676,'On Ascension Day two men in white robes inform the disciples that Jesus would','send for them.','be seen in heaven.','prepare a place for them.','come again.','','','d','','wassce','2011',84,'Admin','2016-11-12 14:29:13','2020-08-13 09:14:54'),(677,'“Go up and join this chariot”.  This statement was made to','John.','Paul.','James.','Philip.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-08-13 09:15:24'),(678,'Saul was converted on his journey to','Samaria','Jerusalem.','Salamis.','Damascus.','','','d','','wassce','2011',67,'Admin','2016-11-12 14:29:13','2020-07-27 02:54:01'),(679,'Which of the following places was not visited by Paul during his first missionary journey?','Salamis','Athens','Antioch of Syria','Antioch of Pisidia','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:02'),(680,'Paul was stoned and dragged out of the city by','the Lyconians and the Ephesians.','enemies of the healed lame man','. \\nJews from Antioch and Iconium.','Jews in the Synagogue.','','','a','','wassce','2011',72,'Admin','2016-11-12 14:29:13','2020-08-13 09:16:44'),(681,'The resurrection of Jesus is significant to Christians for it \tmarked the','end of the Jewish faith.','assurance of eternal life for Christians.','beginning of Christianity','end of Jesus’ earthly ministry.','','','b','','wassce','2011',74,'Admin','2016-11-12 14:29:13','2020-08-13 13:05:02'),(682,'According to Paul, ‘As sin reigned in death, grace also might reign through righteousness to','faith in God’.','the knowledge of God’.','eternal life','the glory of the father’.','','','c','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-08-15 23:15:08'),(683,'Paul in Romans declared “for as by one man’s disobedience many were made sinners, so by one man’s obedience many will be made...”','innocent.','righteous.','faithful.','Christians.','','','b','','wassce','2011',61,'Admin','2016-11-12 14:29:14','2020-08-13 09:33:23'),(684,'Which of the following is not true about spiritual gifts as taught by Paul?','Gifts should be used with all modesty','No gift can be independent of others','Gifts have nothing to do with the level of one’s faith','Specific gifts perform specific functions','','','b','','wassce','2011',79,'Admin','2016-11-12 14:29:14','2020-08-13 13:05:02'),(685,'In his comparison of the human body with the body of Christ, Paul did not mention the','hand.','foot.','eye.','nose.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:08'),(686,'The New Life in Christ operates through','humility.','the name of Jesus.','one body.','wisdom.','','','b','','wassce','2011',80,'Admin','2016-11-12 14:29:14','2020-08-13 09:14:54'),(687,'‘Death is swallowed up in victory, “oh death, where is your victory”? This statement is found in the book of','Corinthians.','Romans.','Galatians.','Philemon','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:10'),(688,'According to Paul in Corinthians the gospel message could only be lifeless when Christians','deny the resurrection message.','persecute one another.','gossip among themselves.','entertain idolatrous practices.','','','a','','wassce','2011',84,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:11'),(689,'Paul asked the Thessalonians to imitate his action of','demanding support from his converts.','performing miracles','healing the sick.','working for his personal upkeep.','','','d','','wassce','2011',77,'Admin','2016-11-12 14:29:14','2020-08-13 09:15:24'),(690,'With respect to the date of the Parosia, Paul advised Thessalonians to','be sober in maintaining their hope of salvation.','disregard all speculations about it.','know that the day would be announced later.','enjoy peace and security in the face of danger.','','','a','','wassce','2011',84,'Admin','2016-11-12 14:29:14','2020-08-13 09:33:04'),(691,'Paul, pleaded with Philemon to forgive','Barnabas.','Timothy.','Onesimus.','Silas','','','c','','wassce','2011',109,'Admin','2016-11-12 14:29:14','2020-08-13 09:15:52'),(692,'James strongly condemned partiality in the Church for all the following reasons except that it','is contrary to Christ’s example of humility','accords due respect to the rich who merit it.','is a transgression of the commandment of God.','does not harmonize with the Christian virtue of love.','','','d','','wassce','2011',74,'Admin','2016-11-12 14:29:14','2020-08-14 18:59:14'),(693,'The Galatians, were reminded by Paul that they were Abraham’s offspring and heirs according to','promise.','good works.','law.','grace.','','','a','','wassce','2011',66,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:16'),(694,'According to Paul in Galatians, law ceased to be our custodian as soon as','it was made available to us.','Christ adopted us as his children.','we adopted the faith of Abraham.','we stopped worshipping the elemental spirits.','','','b','','wassce','2011',63,'Admin','2016-11-12 14:29:14','2020-08-13 09:16:44'),(695,'James advised Christians to portray their faith in Jesus by','listening to the word of God always.','converting others to Christ.','practicalizing their Christian belief','constant prayer and fasting.','','','c','','wassce','2011',76,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:30');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `currentaffairs` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `currentaffairs` VALUES (1,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013',559,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(2,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-08-15 20:39:03'),(3,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013',558,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(4,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013',571,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(5,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(6,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(7,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(8,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013',568,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(9,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013',553,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(10,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013',592,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(11,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013',593,'Admin','0000-00-00 00:00:00','2020-08-13 12:51:11'),(12,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013',556,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(13,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(14,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013',580,'Admin','0000-00-00 00:00:00','2020-08-15 20:39:03'),(15,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(16,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013',560,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(17,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013',591,'Admin','0000-00-00 00:00:00','2020-08-15 20:39:03'),(18,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(19,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013',574,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(20,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013',603,'Admin','0000-00-00 00:00:00','2020-08-13 12:51:11'),(21,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013',568,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(22,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013',552,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(23,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013',542,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(24,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(25,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-07-14 15:36:36'),(26,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013',566,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(27,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(28,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(29,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013',584,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(30,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013',572,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(31,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013',577,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(32,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(33,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013',593,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(34,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013',562,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(35,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(36,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(37,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013',585,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(38,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013',567,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(39,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(40,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(41,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013',592,'Admin','0000-00-00 00:00:00','2020-08-15 20:39:03'),(42,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013',589,'Admin','0000-00-00 00:00:00','2020-08-15 20:39:03'),(43,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013',612,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(44,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013',630,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `economics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=658 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `economics` VALUES (1,'Which of the following is the best general definition of the study of economics? ','the best way invest in the stock market','business decision making under foreign competition ','individual and social choice','inflation unemployment in a growing economy','','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:31'),(2,'What implication does resources scarcity have for the satisfaction of wants?','not all wants can be satisfied ','we will never be faced with the need to make choice ','we must develop ways to decreases our individual wants ','the discovery of new resource.','','','a','','post-utme','2006',95,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(3,'In economics , rational decision-making requires that: ','one’s choices be arrived at logically and without error   ','one’s choice be consistent with one’s goals ','one’s choice never very ','one makes choice that do not involve trade-offs','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:33'),(4,'What happens to a supply curve when the variables that are normally held constant are allowed to changer? ','the curve flattens out','there is a movement along the curve','the curve shifts ','the curve becomes steeper.','','','c','','post-utme','2006',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:34'),(5,'If the price of Pepsi decrease relative to the price of coke and 7-up the demand for ','coke will decrease ','7-up will decrease ','coke and 7-up will increase','coke and 7-up will decrease.','','','d','','post-utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:35'),(6,'Suppose wages paid by a firm increase what would reasonably be expected to happen to the equilibrium price and equilibrium quantity for the firm’s output? ','price increase,  quantity decreases ','price decrease, quantity decrease','price decreases, quantity increase','price increases, quantity increase.','','','a','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(7,'When a nation’s exports are greater than its imports ','the net foreign trade is zero ','an unfavourable balance of payments exists ','a favourable balance of trade exists ','a favourable balance of payment exists.','','','d','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(8,'Inflation is likely to benefit ','persons with bank savings','persons who live on fixed pension funds ','creditors ','debtors.','','','d','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(9,'For which market model is there a very large number of firms? ','monopolistic competition','oligopoly ','pure monopoly ','pure- competition','','','d','','post-utme','2006',71,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:38'),(10,'Which of the following is an economic cost ','uninsurable risk ','normal profit ','economic profit ','monopoly profit.','','','b','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-07-22 10:38:01'),(11,'Which tends to be a progressive tax in Nigeria? ','income tax ','property tax ','sales tax ','import- duties.','','','a','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:40'),(12,'A deficit budget is usually drawn up during ','economic buoyancy ','inflationary period ','war time ','economic recession.','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(13,'A drawer of a cheque is the ','person who is to be paid ','bank on which the cheque is drawn ','person who writes out the cheque ','bank official who certifies the payment. ','','','c','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-29 15:50:46'),(14,'The liability of a sole trade is','indeterminate ','unlimited ','limited ','transferable','','','b','','post-utme','2006',93,'Admin','0000-00-00 00:00:00','2020-07-21 11:09:34'),(15,'Which of the following is regarded as fixed cost? ','cost of raw materials ','labour wages ','rent land ','cost of light.                                                                                                                                                                                                                   ','','','c','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(16,'Which of the following is not a member of OPEC?','Indonesia',' Iran ','Venezuela','Egypt','','','d','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:45'),(17,'The creation of utility can be referred to as ','value added ','profit marginalization ','production','entrepreneurship.','','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(18,'The production within the domestic territory of a country is called the ','net national product ','gross domestic product ','disposable income','gross national product.','','','b','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-05 21:03:31'),(19,'Suppose a consumer’s income increases from N30,000 to N36, 000. As a result the consumer increases her purchase of compact discs (CDS) from 25 CDS to 30CDS.What is consumer’s income elasticity of demand for CDS?','0.5','1,0 ','1','1.5','','','b','','post-utme','2006',101,'Admin','0000-00-00 00:00:00','2020-08-06 01:28:49'),(20,'The Multiplier is always the reciprocal of ','MPC ','MPS ','APC','APS','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:49'),(21,'If the marginal propensity to save is 0.4 and consumption expenditure changes by N10 million , the equilibrium  level of income will change by ','N15.0million ','N4,0million','N2.5million ','N25million.','','','d','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(22,'Economic freedom is brought about by the existence of ','Government ','Money ','Availability of Credit ','choice','','','d','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(23,'The only essential attribute of the good currency is ','scarcity ','homogeneity','acceptability ','cognoscibility.','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-08-15 08:59:21'),(24,'Economic is founded on the principle that: ','Human wants are more than human needs ','Material things are more than human wants ','Human wants are limitless while the means to satisfy them are limited  ','Human while are easy to define','','','c','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(25,'The capitalist system is characterized by all the following except: ','private ownership of the means of production ','Equitable distribution of income and wealth  ','capital accumulation  ','markets and  prices coordinate economic activities','','','b','','post-utme','2007',102,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(26,'If the equation relating consumption (C) to income (Y) is C=  N7,500+0.2Y,then ','consumption is inversely related to income','consumptions is the independent variable and income is the dependent variable ','if income is N15,000, the consumption is N10,500 ','if consumption is N30,000 then income is N10,000','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(27,'The reason for the law of demand can best be explained in terms of ','supply ','complementary ','the rationing function of prices ','diminishing marginal utility','','','d','','post-utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(28,'The demand curve for the pure monopolists is ','perfectly  price elastic ','perfectly price inelastic ','down sloping ','up sloping ','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:56'),(29,'Which of the following statements is correct? The Central  Bank ','prints the country’s currency ','handles the collection of depts. Owed to the government','lends money to businessmen ','issues the country’s currency','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:57'),(30,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','Consumers are rational','Consumers are willing to make choices ','Consumers make consistent choices','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-21 11:24:29'),(31,'The slope of the budget constraint ','changes as the marginal rate of satisfaction changes ','is the ration of the prices of the two goods? ','is the ratio of the budget of total utility? ','Equals one, since the consumer can buy combination along the budget constraint.','','','b','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(32,'Disposable income equals ','Personal income less business profits ','personal income less taxes and subsidies ','personal income less taxes plus subsidies ','National income plus transfer payments','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:00'),(33,'The ‘term’ of trade’ means ','The trade agreement between two countries ','The difference in the volumes of exports of two countries ','The value of a unit of export in relation to the value of a unit of import ','None of the above.','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(34,'The burden of tax on a commodity whose demand is infinitely inelastic ','is Zero ','will be borne by sellers alone ','will be borne by buyers alone ','it impossible to tell','','','c','','post-utme','2007',78,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(35,'Inflation can be curbed by ','Increasing aggregate demand ','paying higher wages ','reducing aggregate demand ','A deficit budget','','','c','','post-utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(36,'The supply and demand for goods and service are influenced by the ','Super markets ','Entrepreneurs ','Mechanism of the law ','price mechanism.','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(37,'In a sole proprietorship, the decisions are made by the ','Government ','Board of directors ','Shareholder’s Conference ','Owner','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:06'),(38,'Which of the following are direct taxes? ','Income and company taxes ','Sale taxes ','commodity taxes ','Excise Duties','','','a','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-21 12:06:16'),(39,'The production within the domestic territory of a country is called the ','Net national product ','Gross domestic ','Disposable income ','Gross national product','','','b','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(40,'A producer sustains a loss in the short run if? ','marginal revenue is less than price ','price is less than average cost','marginal cost is less than marginal  revenue ','average variable cost is less than average cost','','','b','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(41,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with terms funds ','deals with money only while capital market deals with capital as well ','is limited in scope while capital market is not ','uses interest rate while capital market does not','','','a','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-25 13:24:37'),(42,'A production possibility curve shows ','how much of  the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combinations of two commodities that can be produced.','','','d','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(43,'The situation in which the total amount of government spending exceeds total called ','balance budget ','budget surplus ','budget deficit ','fiscal surplus ','','','c','','post-utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-22 10:38:00'),(44,'The maximization of profit tends to be driving force in the economic decision making of  ','entrepreneurs  ','workers ','consumers ','legislators','','','a','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(45,'Which of the following equations is the correct one about Net National Product (NNP)? ','NNP= Gross National Product (GNP) - Depreciation ','NNP=  Gross National product (GNP Net incomes from abroad ','NNP= Gross Domestic product (GDP) – Deprecation ','NNP = Gross Domestic product (GDP) – Net incomes from aboard','','','a','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(46,'Middlemen in a economy perform the function of ','protection ','hoarding ','distribution ','exchange','','','c','','post-utme','2007',94,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(47,'Which of the following statement is false? ','Ends in Economic are the resources with which it can attain our goals','Tables and graphs are focus of arithmetic technique used in economics to present ideas pictorially ','Three basic question every economy must answer are hat to produce, how to produce and for whom to produce ','A and B are substitutes if the supply of an increase, the price B will tend to increase.','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:15'),(48,' If the equation relating consumption (C) to income (Y) is C= N7,500 + 0.2Y, then ','consumption is inversely related to income ','consumption is the independent inversely related to income is the dependent variable ','if income is N15,000, the  consumption is 10,500 ','if consumption is N300,000, then income is N10,000','','','c','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(49,'Which of the following best describes a perfectly inelastic demand function? ','The quantity demand is insensitive to changes in price ','Price is insensitive changes in quantity ','price and quantity demanded changes by some percentage ','The demand function is horizontal.','','','a','','post-utme','2008',96,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(50,' Which of the following statement is false? ','An economy where economic decision making is shared by individuals and government is known as mixed economy ','Given that apples and pears are substitutes, If the price of pear fall ','An elasticity of demand measured between two point on a demanded curve is called a point elasticity ','A and B are complements. If the supply of A decreases, the price B are tend to fall','','','c','','post-utme','2008',101,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(51,'Which of the following statement is true? ','if cross price elasticity that of demand between two goals, A and B, is negative we can conclude that A and B are substitutes ','the co-efficient of elasticity of demand is measured as a ration of change in quantity demand to change in price ','A market will be in disequilibrium when demand is not equal to supply ','All the above.','','','c','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:19'),(52,'The reason for the law of demand can best be explained in terms of: ','supply ','complementary goods ','the rationing function of price ','diminishing marginal utility.','','','d','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(53,'The demand curve for the pure monopolists is ','perfectly price elastic ','perfectly price inelastic ','down sloping ','up sloping','','','c','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(54,'Which of the following statement is correct? The Central bank ','prints the country’s currency ','handles the collection of debts of owed to the government ','leads money to businessmen ','issue the country’s currency.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:22'),(55,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','consumers are rational ','consumers make consistent ','choices.','','','d','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:23'),(56,'Which of the following equation is the correct one about Net National Product (NNP)? ','NNP= Gross National product (GNP) – Depreciation ','NNP = Gross National product (GNP) + Net incomes from abroad. ','NNP = Gross Domestic product (GDP) – Depreciation ','NNP = Gross Domestic product (GDP) – Net incomes from abroad.','','','a','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(57,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with long term funds. ','deals with money only while capital as well ','is limited in scope while capital market does not. ','Uses interest rates while capital market does nor.','','','a','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(58,'A production possibility curve shows ','how much of the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combination of two commodities that can be produced.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:26'),(59,'The situation in which the total amount of government spending excesses total revenues is called a:  ','balance budget ','budget surplus. ','budget difficult ','fiscal surplus','','','c','','post-utme','2008',99,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(60,'The maximization of profit tends to be the driving force in the economics decision making of:','entrepreneurs. ','Workers ','consumers ','legislators.','','','a','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 02:16:53'),(61,'Which of these factors does not cause a change in demand? ','Income ','Population ','price of the commodity itself.','Quantity of commodity','','','d','','post-utme','2008',104,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(62,'When the demand for a commodity is inelastic, total revenue will fall if ','price is increase ','price remains constant ','price is reduced ','The commodity is a luxury.','','','c','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(63,'An economic system in which most capital goods are owned by individual and private firms is known as ','planned economy ','Capitalist economy. ','Mixed economy ','Socialist economy.','','','b','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(64,'Which of the following is the most liquid asset to a commercial bank? ','cash ','money at call ','stock and shares ','Treasury Bills.','','','a','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(65,'A recovery point on an indifference curve, the ','Total utility is decreasing ','Level of utility is constant ','Consumer is satisfied ','','','','b','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(66,'Which of the following does not hinder the efficient distribution of goods in West Africa? ','Government participation in the distribution trade ','Inadequate storage facilities for agricultural goods ','Inadequate credit facilities for potential distribution ','the tendency to hoard and smuggle.','','','a','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(67,'Which of the following is the most important reason why wages differ among occupation? ','Length and cost of training ','Supply of Labour ','Attractiveness ','Influence of trade Unions','','','c','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(68,'Tax incidence is the analysis of  ','How progressive a tax is ','How distorting a tax is ','Who ultimately pays the tax ','How a tax is collected.','','','c','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(69,' A monopolist will practice price discrimination in two market if ','there is a patent of the commodity ','There is free flow of information in the market ','The markets have different elasticity of demand ','The cost of separating the markets is low.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:39'),(70,'Which of the following is regarded as fixed cost? ','Cost of raw materials ','rent on land ','Labour wages ','cost of light.','','','b','','post-utme','2008',97,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(71,'Given that fixed cost is N500.00, Variable cost is N1,500.00 and output is 40 units, what will be the average cost of producing one units? ','N12.50.00 ','N50.00 ','N37.50 ','N500.00','','','b','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:41'),(72,'For two substitute goods, the gross elasticity of demand is ','Greater than one but lee than zero ','zero ','Negative ','Positive ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:42'),(73,'If a person receives a higher wage than would be necessary to induce him to work, he is be receiving','rent ','profit ',' interest ',' gain ','','','a','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:43'),(74,'Which if this is likely to be inflationary ','Tax increase ','Budget surplus ','increase in unemployment ','wage increase ','','','d','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(75,'A characteristic of a debenture is that ','Its yield is based on profit ','Its yield is a fixed rate of interest ','It has no redemption date ','There is a voting when interest is paid ','','','b','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(76,'Which of these is not included in measuring national income by the income approach? ','Wages and salaries of public servants ','students branches and scholarships ','profit of international ','income of self-employment persons ','','','b','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(77,'The revenue accruing to the seller of commodity X as a result of a fall in price will ','increase','fall ','first fall but increase later  ','Remain unchanged ','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(78,'Deflation is persistence fall in price in the general price level and is usually caused by ','A reduction in total demand ',' An increase in government spending ',' an increase in money supply to banks ','An increase in aggregate demand ','','','a','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:48'),(79,'Under partnership, investors who have no desire to be actively involved in the day-to-day management of such organization are called ','Stock brokers ','Sleeping partners ','part-time investor ','Ordinary partners ','','','b','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(80,'In a sole proprietorship decision are made by the ','Government ','Board of directors ','Management ','Owners.','','','d','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(81,'A greater burden of taxes on essential goods in borne by the ','middle income group ','Higher income group ','Lower earning people ','People falling between the middle and higher income group ','','','c','','post-utme','2009',87,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(82,'Demand as a factor of production is ','a composite demand ','joint demand ','A derived demand','An elasticity of demand ','','','c','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(83,'One disadvantage of sole proprietorship is its ','Limited liability ',' High profit ','High sense of ownership ','Low credit rating ','','','d','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(84,'The monetary system that requires double coincidence of wants is known as ','The gold standard ','The gold standard ','The commodity system ','The gold standard ','','','b','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(85,'The marginal theory of distribution makes an assertion that the price of any factor depends upon its marginal ','Unity ','Productivity ','rate of substitution ','revenue ','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:55'),(86,'By using exchanges controls, a country tries to eliminate a balance of payment deficit by ','limited her imports to its currency value of exports ','Reducing the nation’s domestic piece level ','limiting her exports to its currency value of exports ','Undervaluing, the country’s currency.','','','d','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(87,'Economics of scale operates only when ','Marginal cost is falling with output fixed cost is variable ','fixed cost is variable ','variable cost is less than fixed cost ','variable cost is equal to cost of output.','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-22 10:56:46'),(88,'If an increase in income induces a reduction in the demand for beans, beans can be referred to as: ','A normal good ','An inferior good ','A substitute ','A dash ','','','b','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(89,'Optimum population is desirable because it enable an economy to attain maximum ','per capital income ','per capital output ','per capital real income ','per capital revenue ','','','b','','post-utme','2009',83,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(90,'Marginal cost curve intersects average cost curve ','from above at its lowest point ','from below the lowest point ','from below at its lowest point ','from below after the lowest point ','','','c','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(91,'The concept of economic efficiency refers to: ','obtaining the maximum output from available resources at the lowest possible cost ','Conservation of natural gas and oil deposits ','equity in the distribution of national resource ','Producing without waste ','','','a','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(92,'A major factor affecting the value of money is the: ','price level ','banking habit ','Transaction motive ','Divisible nature of money ','','','a','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(93,'Which of the following is an example of invisible item on balance of payments account?','Shipping and aviation ',' Import and Export ','Merchandise ','Bullion ','','','a','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(94,'The best index for indentation comparison of standard of living is the ','Gross national product ','Net national income ','per capital income ','Gross national income.','','','c','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(95,'A major obstacle to economic development in many African countries ','A rise in industrial output ','Low farm productivity ','Free interaction ','Controlled international relations.','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(96,'The most popularly adopted industrialization strategy in West African ','import substitution ','Export promotion ','parts development ','infant industries potation.','','','b','','post-utme','2009',83,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(97,'The basic concepts of Economics are ','choice, scarcity, resources and efficiency   ','wants, scarcity, choice, scale of preference and opportunity cost','wants, scarcity and choice  ','wants, choice, scale of preference and opportunity cost ','','','b','','post-utme','2011',102,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(98,'In Economics human wants are usually described as  ','many','insatiable ','limited','numerous','','','b','','post-utme','2011',101,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(99,'Basic economic problems of society include the following except:  ','what to produce','how to produce ','where to produce  ','for whom to produce ','','','c','','post-utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:09'),(100,'An economic system can be defined as an ',' arrangement specifying how production and consumption are controlled in a   society ','arrangement whereby goods are distributed in a society  ','arrangement whereby human wants are satisfied in a society  ','arrangement specifying how productive resources are distributed in a society ','','','a','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(101,'The following are features of a free market economy except ','private ownership of properties  ','existence of competition ','high level of profit maximization by private investors  ','joint decision-making by the citizens in a society.','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:11'),(102,'In a capitalist society, production and consumption are regulated by the: ','demand for the commodity ','the government  ','price system  ','private individuals ','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:12'),(103,'The following are advantages of socialism except ','equitable distribution of resources','absence of exploitation  ','equitable distribution of income ','promotion of high standard of living ','','','d','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(104,'Marginal Produce (MP) is best defined as ',' Total produce/no of labour','Change in total product/ change in variable factor','Total product/ fixed factor','Average product/ no of Labour','','','b','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:15'),(105,'Which of the following is NOT a limitation to division of labour and specialization ','the size of the market','availability of capital ','interdependence among the workers ','the nature of the product ','','','b','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:16'),(106,'The following are the advantages of internal economics of large scale production except ','financial economics ','administrative economics ','technical economics ','market economics','','','b','','post-utme','2011',90,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(107,'Which of the following is TRUE of marginal cost? ','it is a cost incurred by the firm on variable inputs ','it is the cost of producing one extra unit of a commodity at any output level ','it is the sum of the fixed cost and variable cost','it is referred to as overhead cost','','','b','','post-utme','2011',87,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(108,'Which of the following items is NOT a variable cost? ','cost of machine ','cost of electricity ','salaries and wages','cost of raw materials.','','','a','','post-utme','2011',102,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(109,'Which of the following is NOT True of a market demand schedule? ','it is a schedule of all consumers of a commodity in a market ','it is the aggregate demand schedule of all consumers of a commodity in a market ','it is a table showing the different quantities of a community which a consumer would purchase at various prices ','it is a table showing the composite demand schedule of all consumers of a commodity in a market.','','','c','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:22'),(110,'Supply is said to be inelastic when the coefficient of elasticity of supply is ','2.5','0.5','zero ','infinity ','','','b','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(111,'Price legislation can be defined as ','how price fluctuates in the market','how prices are controlled in the market  ','how to avoid inflation  ','how the government fixes the prices of essential commodities.','','','d','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(112,'Price discrimination exists when  ','The same product of the same quality is sold for different prices of the same buyer  ','The same product of the same quality is sold for different prices to different buyers  ','Different products are sold for the same price to the same buyers  ','Different products are sold for the same price to different buyers.','','','b','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(113,'A commodity is said to be price inelastic if  ','Changes in the quantity purchased of a good is less than proportionate changes in its price  ','Changes in the quantity purchased of a good is proportional to changes in its price  ','Changes in the quantity purchased of a good is more than proportionate changes in its price  ','The quantity purchased of a good never responds to change in its price.','','','a','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(114,'The parameter ‘b’ in a consumption function of the form; C = a + bY; where Y is the National income is  ','Marginal benefit of consumption  ','Marginal propensity to purchase  ','Marginal propensity to consume  ','Marginal propensity to save ','','','c','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-29 15:50:46'),(115,'Indifference curve and isoquant are respectively relevant is  ','Theories of consumer behaviours and production  ','Theories of human indifference and production  ','Theories of trade and production  ','Theories of production and trade','','','a','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(116,'Perfect price elastic supply means  ','No change in supply as price changes  ','Any change in price completely stops supply  ','Changes in price double supply  ','A change in price leads to proportionate change in supply','','','b','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:29'),(117,'Change in demand and change in quantity demanded are not the same because  ','All factors affecting change in demand also affect change in quantity demanded except income  ','All factors affecting change in demand are not affecting change in quantity demanded except income  ','Many factors leads to change in demand but only change in price affect change in quantity demanded   ','Many factors leads to change in demand but only change in income affect change in quantity demanded','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:30'),(118,'The following is the main difference between firm and industry  ','Industry is the group of firms producing related products  ','Industry is the group of firms in the manufacturing sector  ','Industry is the group of firms in different sectors of the economy  ','Industry is the group of firms with a single pressure group','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:31'),(119,'Roles of central bank include the following except  ','Lender of last resort to commercial bank  ','Banker to commercial bank  ','Regulator to both the money and capital markets ','Receipt  of government deposits','','','b','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(120,'Ordinary shareholders and preferential shareholders are different because ','Preferential shareholders participate and can vote and be voted for during the  AGM  ','ordinary shareholders are given priority in case the company is liquidated  ','Preferential shareholders are prominent shareholders than ordinary shareholders  ','Ordinary shareholders are the core shareholders in the company','','','d','','post-utme','2012',108,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(121,' Yam and palm oil are together; therefore  ','Yam is a substitute good while palm oil is a complementary good  ','Yam is complimentary good while palm oil is a substitute good  ','Yam and oil are complimentary goods ','Yam and beans are substitute goods','','','c','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(122,'Private and public limited liability companies are not the same because  ','Former is limited to fifty shareholders but not the later  ','both are not legal entities  ','Former is established secretly but latter is located in central places  ','Former is managed by board of directors but latter is managed by board of management.','','','a','','post-utme','2012',100,'Admin','0000-00-00 00:00:00','2020-07-22 10:44:43'),(123,'If salary of worker increases from 50,000 to 80,000 Naira and average price of certain commodities consumed by the worker increase from 120 Naira to 160 Naira then  ','The nominal income increases but leave the real income constant  ','The real income increases, but nominal income has reduced  ','The nominal income increases, but real income decreases  ','Both the nominal and real income increase','','','d','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(124,'Discount rate means  ','Rate at which money are borrowed from commercial bank  ','Rate at which bank receive deposit from the public  ','Central bank rate on the money borrowed by commercial banks  ','Commercial bank rate on the money borrowed from other commercial bank','','','c','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:46'),(125,'When the government expenditure and income are the same in fiscal year, this is referred as;','Net balance  ','Zero balanced budget  ','Balanced budget  ','Net income ','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:48'),(126,'Inflation as a result of increase in the payment for factors of production is called  ','Cost-pull inflation  ','Demand-push inflation  ','Cost-push inflation  ','Demand pull inflation ','','','c','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(127,'When Lump-sun tax is paid by a producer, it means that;  ','The tax is paid proportional to the quantity of output produced  ','The tax is paid regardless of volume of output  ','The tax is paid in arrears  ','The tax is returned to the producer after the payment','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(128,'The following is not correct  ','Average variable cost equals average total cost minus average fixed cost   ','Average fixed cost equals average variable cost minus average total cost  ','Average total cost equals average variable cost plus average fixed cost  ','Average total cost minus average variable cost equals average fixed cost ','','','b','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(129,'Normal profit means;  ','All the accountant cost are covered but not all the economist cost  ','All the economist cost are covered but not all the accountant cost  ','More than economist cost are covered  ','None of the economist and Accountant costs is covered ','','','a','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(130,'If the price of commodity X increases because of the increase in the price vis-à-vis the increase in demand  for other commodities are likely to be  ','Complimentary  ','Substitute  ','Compose  ','Intermediate','','','a','','post-utme','2012',92,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(131,'The following may not inflate the National Income figure ','Student’s bursary  ','Owners occupied houses  ','Office Inducement  ','Intermediate goods','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:57'),(132,'Legal Entity means  ','A company is owned by large number of people  ','A company is owned by small number of people  ','A company is insulated against litigation  ','A company is not insulated against litigation ','','','d','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(133,'In the ownership structure of joint stock company the following is correct;  ','Ordinary shareholders are stronger than preferential shareholders  ','Preferential shareholder are stronger than ordinary shareholders  ','Ordinary shareholders are settled first in case of company’s liquidation  ','Ordinary and preferential shareholders are perpetual rivals ','','','a','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(134,'The difference between the output proceedings of Nigerians abroad and foreigners in Nigeria is known as;  ','Net export to abroad  ','Net import from abroad  ','Net income from abroad  ','Net income to abroad','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:01'),(135,'A stock variable is measured;  ','Over a period  ','At a point  ','Consistently  ','Intermittently ','','','b','','post-utme','2012',94,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(136,'The following is not true of price mechanism ','Equilibrium price is determined by forces of demand and supply  ','Individual households and firms pursue personal interest  ','Producers and consumers are rational in decision making ','Price control in prominent in the commodity and input markets.','','','d','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(137,'In the short run, all of the following are applicable except  ','Output may be increased by changing all factors by the same proportion  ','Diminishing returns   ','There are sunk costs ','The total cost curve is the same as the total variable cost curve ','','','a','','post-utme','2013',90,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(138,'The sum of MPS and MPC is  ','greater than 1 but less than infinity  ','greater than 0 but less than 1 ','equal to 1 ','none of the above','','','c','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:06'),(139,'For a perfectly competitive market, the shape of the --------- is horizontal while the ----------- is downward slopping  ','industry’s demand curve/industry’s supply curve  ','firm’s supply curve/industry’s demand curve  ','firm’s demand curve/industry’s demand curve  ','industry’s demand curve/firm’s demand curve','','','c','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-22 10:08:33'),(140,'Demand for money is: ','Composite demand  ','Derive demand  ','Joint demand  ','C and B ','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:08'),(141,'If the cross elasticity of demand between X and Y is zero, then   ','X and Y are substitutes ','X and Y are complements ','X and Y are dependent on each other  ','X and Y are independent of each other ','','','d','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:10'),(142,'Which of the following correctly defines inflation? ','A one-time increase in commodity prices ','A period when prices increase rapidly','A sustained increase in the overall price level ','An increase in the overall level of business activity','','','c','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:24'),(143,'If a market for good X is in disequilibrium, which of the following statements is true about the quantity of X that is actually exchanged?  ','It is determined by the forces of demand  ','it is determined by the forces of supply  ','it is determined by both demand and supply forces  ','it is determined by the forces of demand or supply whichever is shorter ','','','c','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(144,'How can we eliminate a surplus in a commodity market? ','Increase quantity supplied ','Decrease quantity demanded  ','Allowing price to fall towards equilibrium  ','Allowing price to rise towards equilibrium ','','','c','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-07-25 06:53:27'),(145,'Identify one among the following which is NOT part of the objectives or functions of the African Development Bank (ADB). ','Provision of technical assistance for development projects   ','Provision of funds for the supply and demand of infrastructural facilities  ','Adoption of a common tariff policy for trade and development  ','Provision of fund for agricultural development','','','c','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(146,'When the product of any one firm in an industry is not  perceived by consumers as a perfect substitute for the product of any other firm in the same industry, we have ','Perfect competition','Monopoly  ','Oligopolist ','Monopolistic competition   ','','','b','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(147,'In which of the following situations do we have a free good?  ','At zero price, more is demanded than supplied  ','At zero price, quantity supplied exceeds quantity demanded  ','At equilibrium price, quantity supply is equal to quantity demanded. ','Any quantity can be obtained when the price is low ','','','b','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(148,'In economics, a commodity is said to have an opportunity cost because  ','The price of the commodity is high  ','The commodity is scarce  ','Another good may have been purchased instead of it  ','The commodity provides many benefits','','','c','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:30'),(149,'One among the following options is not correct ','Any point inside the production possibility curve indicates unemployment or underemployment  ','Increase in the price of a commodity leads to a fall in the demand for its substitute ','The fixing of price above the equilibrium price level leads to surplus of the commodity ','An increase in both market supply and market demand may not result in a change in equilibrium price and quantity. ','','','d','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:31'),(150,'A country’s aggregate consumption was N20 million when its GDP was N100million. Following an increase in GDP to N120 million, consumption increased to N25 million. The marginal propensity to consume is given as','0.25','0.5','0.75','0.8','','','a','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(151,'Which of the following is not a measure for controlling inflation by the central bank?  ','Open market operation  ',' Reserve requirements  ','Sale of treasury bills ',' change of central Bank Governor','','','d','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(152,'A 50% increase in the quantity demanded of a commodity, following a 100% decrease in its price, shows that the commodity has ','Fairly elastic demand  ','Unitary elastic demand','Inelastic demand','Perfectly elastic demand ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:40'),(153,'A total utility is increasing, marginal utility is  ','Negative and decreasing  ','Positive and increasing  ','positive and decreasing   ','Zero','','','c','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:41'),(154,'Which of the following statements is true? ','Disposable income is the only variable that determines consumption   ','Investment spending is positively related to the rate of interest   ','imports lead to a decrease in the level of exports  ','Imports lead to a decrease in spending on locally produced goods and services.','','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(155,'Which of the following will benefit a producer who wants to maximize profit?  ','reduce price when demand is inelastic ','increase price when demand is elastic   ','reduce price when demand is elastic  ','fixed the price of his commodity based on the price of other producers.','','','c','','post-utme','2013',87,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(156,'Based on the fact that demand curve shows the maximum price at which consumers will buy, it then shows ','average benefit   ','marginal benefit  ','total benefit  ','optimal satisfaction ','','','b','','post-utme','2013',86,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(157,'Money that a government has required to be accepted in settlement of debts is ','commodity money  ','currency value  ','barter   ','legal tender ','','','d','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:47'),(158,'Which of the following is one of the responsibilities of the Central Bank of Nigeria? ','issuing new bond to finance public sector borrowing requirements  ','auditing the various agencies and departments of government  ','loaning money to other countries that transact business with Nigeria  ','assisting banks that are in financial position ','','','a','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:54'),(159,'The law of comparative cost and absolute cost advantage are not the same is that; ','Former require that one of the countries has absolute advantage in the two goods but latter does not   ','Former requires one country to have at least absolute advantage in one of the trading goods over the other country but latter does not.','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in all the goods.  ','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in at least one of the goods.','','','d','','post-utme','2013',101,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(160,'When demand for a product is price inelastic, the following can happen  ','Consumers suffer the entire increase in tax on the product   ','producer suffers the entire increase in tax on the product  ','producer suffers larger proportion of the increase in tax on the product  ','consumers suffer larger proportion of the increase in tax on the product ','','','d','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(161,'Disposable income means:','Income that is lost after tax has been removed   ','Income that could be spent when tax has been removed   ','Income that tax authority mandated to be given to charity when tax has been removed  ','Income to be disposed secretly for future spending after tax has been removed ','','','b','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(162,'In economics, the pleasure, happiness, or satisfaction received from a product is called: ','Marginal cost ','Rational outcome ','Status fulfillment ','Utility.','','','d','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(163,'A person should consume more of something when its marginal: ','benefit exceeds its marginal cost ','cost benefit ','cost equal its marginal benefit ','benefit is still positive.','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:18'),(164,'Macroeconomics can best be described as the: ','analysis of how a consumer tries to spend income ','study of the large  aggregates of the economy or the economy as whole ','analysis of  how firms attempt to maximum their profits ','study of how supply and demand determine price in individual markets.','','','b','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(165,'When economics say that people act rationally in their self-interest, they mean that individual: ','look and pursue opportunities to increase their utility ','generally disregard the interest of others ','are mainly creatures of habit ','are unpredictable','','','a','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:01'),(166,'As it relates to international trade, dumping: ','is a form of price discrimination illegal under U.S antitrust laws ','is the practice of selling goods in a foreign market at less than the cost ','Constitutes a general case for permanent tariffs ','is defined as selling more goods than allowed by an import quota.','','','b','','post-utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(167,'A nation’s production possibility curve is bowed out from the origin because:','wants are virtually unlimited ','the originator of the idea drew it this way and modem economists follow this convention ','resources are scare ','resources are not equally efficiency in producing every good.','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:11'),(168,'If the production possibilities, curve were a straight down sloping line, this would suggest that: ','it is possible to produce  more of both products ','resources are perfectly shift able between the production  of these two goods ','both products are equally capable of satisfying consumer wants ','the two products have identical price.','','','b','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:16'),(169,'Productive efficiency refers to: ','the use of the least-cost method of production ','the production of the product-mix most wanted by society ','the full employment of all available resources ','production at some point inside of the production possibilities curve.','','','a','','post-utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(170,'Which of the following statement is correct? ','if demand increase and supply decrease equilibrium price will fall ','if supply increase and demand decrease, equilibrium price will fall ','It demand decrease and supply increase increases, equilibrium price will rise ','If supply declines and demand remain constant, equilibrium price will fall.','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(171,'If depreciation exceeds gross investment: ','the economy’s stock of capital may be either growing or shrinking  ','the economy’s stock of capital is growing ','net investment is zero ','the economy’s stock of capital is shrinking.','','','d','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(172,'Assuming the total population is 100 million, the civilian labour force is 50 million and 47 million workers are employed, the unemployment rate is ','3%','6%','7%','5.30%','','','b','','post-utme','2010',80,'Admin','0000-00-00 00:00:00','2020-08-03 14:03:53'),(173,'Unemployment involving a mismatch of the skills of unemployment workers and the skill required for available jobs is called: ','frictional unemployment ','structural unemployment ','cynical unemployment ','','','','b','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:40'),(174,'The greater is the marginal propensity to consume, the: ','smaller is the marginal propensity to save ','higher is the interest rate ','lower is the average propensity to consume ','lower is the rice level.','','','a','','post-utme','2010',80,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(175,'Investment and saving are, respectively: ','income and wealth ','stock & flows ','injection: and leakages ','leakages and injections:','','','c','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(176,'The amount by which government expenditures exceed revenues during a particular year is the: ','public debt ','budget deficit ','full- employment ','GDP gap.','','','a','','post-utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(177,'The value of money varies ','inversely with the price of level ','directly with the volume of employment ','directly with the price level ','directly with the interest rate.','','','a','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(178,'If actual reserves in the banking system are #40,000, excess reserves are #10,000, and checkable deposits are #240,000, then the legal reserve requirement is: ','10%','12.50%','20%','5%','','','b','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:46'),(179,'The discount rate is the interest: ','rate at which the Central Bank of Nigeria lends in the Nigeria Government ','yield on long-term government bonds ','rate at which commercial banks lend to the public ','rate at which the Central Banks of Nigeria lend to commercial banks.','','','d','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(180,'Assume a household would consume N100 worth of goods and services per week if its weekly income were zero and would spend an additional N80 per week for each 100 of additional income, if C represents consumption and Y income the equation that summarizes this relationship is','C =8+100Y ','C=100+8Y ','C = 100+80Y ','C=80+1Y','','','b','','post-utme','2010',85,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(181,'For a bicycle company, an economist predicted that, other things being equal, a rise in consumer incomes will increase the demand for bicycles. This prediction is based on the assumption that: ','there are many goods that are substitutes for bicycles ',' there are many goods that are many goods that are substitutes for bicycles','there are many goods that are substitutes for bicycles ','bicycles are normal goods','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:49'),(182,'A demand curve which is parallel to the horizontal axis is','perfectly inelastic ','perfectly elastic ','relatively inelastic ','relatively elastic.','','','b','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(183,'Allocative efficiency occurs only at that output where: ','marginal benefit exceeds marginal cost the by greatest ','consumer surplus exceeds producer surplus by the greatest amount ','the areas of consumer and producer surplus are equal ','the combined amounts of consumer surplus and producer surplus are maximizes.','','','d','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:51'),(184,'The primary problem of economics is: ','to obtain more equitable distribution of money income ','production of a given output with the lowest cost combination of factors of production ','Adoption of capital- intensive technology ','Increasing the quantity of the fixed factor of production.  ','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:52'),(185,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',88,'Admin','2016-11-12 19:57:40','2020-08-03 03:35:03'),(186,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',95,'Admin','2016-11-12 20:04:09','2020-08-15 00:59:51'),(187,'The economic system in which resources are privately owned is known as','capitalism','socialism','Communism','unitarism','','','a','','wassce','2001',90,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:30'),(188,'Quasi-rent refers to','Payment made on acquisition of firm’s premises','Payment  made  for  the  procurement  of  tools  and equipment','Returns on investment','Payment made on  any  factor  of  production  that  is temporarily fixed in supply','','','d','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:30'),(189,'The reward for entrepreneurship is','rent','wages','Interest','profit','','','d','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:56'),(190,'Which of the following is function of an entrepreneur?','Avoidance of risks','Decision making','Employment control','Organizing unions','','','b','','wassce','2001',82,'Admin','2016-11-12 20:04:11','2020-08-13 13:06:20'),(191,'The difference between the highest and lowest in a set of data is the','Range','median','variance','mode','','','a','','wassce','2001',99,'Admin','2016-11-12 20:04:11','2020-08-12 16:33:05'),(192,'In which of the following economic systems is the consumer referred to as King?','Capitalist economy','Socialist economy','Communist economy','Mixed Economy','','','a','','wassce','2001',97,'Admin','2016-11-12 20:04:11','2020-07-26 11:05:19'),(193,'The dispersal of people in a country is called','mobility of people','geographical distribution','occupational distribution','state distribution','','','a','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:00'),(194,'In a country with ageing population, the total population','comprises young school leavers only','comprises mainly women','is increasing at a low rate','has reached the optimum level','','','c','','wassce','2001',103,'Admin','2016-11-12 20:04:11','2020-08-13 13:06:20'),(195,'Population growth can be controlled by all the following except','legalizing abortion','incentives on immigration','family planning','limiting number of children per family','','','b','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-08-12 18:45:05'),(196,'Performance of one task in a production process is known as','Specialization','standardization','division of labour','segmentation','','','a','','wassce','2001',101,'Admin','2016-11-12 20:04:11','2020-08-13 12:58:38'),(197,'The marginal product at the fourth variable factor is','12','9','8','6','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',98,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:04'),(198,'The difference between the highest and the least marginal','product of the variable factor is    \\n\t3','8','10','12','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','a','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-08-12 18:45:05'),(199,'The average product of the variable factor when four units are employed is','6','8','12','48','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-21 11:33:29'),(200,'The cost incurred by using both fixed and variable factors in production is called','marginal cost','fixed cost','total cost','average cost','','','c','','wassce','2001',97,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:06'),(201,'Consumers buy more of a commodity at a lower price than at a higher price because','producers like to produce more','in any given situation, people like to buy more','consumers like to show off','with the same amount of money, they will be able to buy more','','','d','','wassce','2001',87,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:29'),(202,'The demand for a commodity not directly for immediate consumption but for the production of another commodity is','competitive demand','derived demand','composite demand','joint demand','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:14'),(203,'Which of the following is a luxury item?','Petrol','Textbook','Pencil','Gold','','','d','','wassce','2001',94,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:28'),(204,'If the quantity demanded of a particular commodity is represented by the function Qd = 30 - 2p. What is the quantity demanded at a price of twelve Naira?','6 units','8 units','10 units','12 units','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:16'),(205,'The responsiveness of demand to a change in income is the measurement of','foreign exchange rate','cross elasticity of demand','income elasticity of demand','price index elasticity','','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:17'),(206,'The upward sloping of the supply curve indicates that','more will be supplied as price rises','less will be supplied as price rises','supply is not a function of price','supply is static and demand is dynamic','','','a','','wassce','2001',105,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:28'),(207,'Monoculture agriculture means','the cultivation of seasonal crops','the cultivation of one major crop','plantation agriculture','shifting cultivation!','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:11','2020-07-31 07:56:41'),(208,'Industries are not sited in most rural areas of Nigeria because','of inadequate basic infrastructure','they lack raw materials','there is no appropriate government policy','the climate is not conducive','','','a','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:26'),(209,'Which of the following business units can issue shares?','Sole trader','Private limited company','Central Bank','Supermarket','','','b','','wassce','2001',94,'Admin','2016-11-12 20:04:11','2020-08-13 13:06:20'),(210,'When the government initiates measures to make an organization in which it has substantial interest more profit \toriented, such a business is described as being','indigenized','restructured','Privatized','commercialized','','','d','','wassce','2001',70,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:21'),(211,'Which of the following is not a trade union in Nigeria?','Nigerian Labour Congress','Academic Staff Union of Universities','Nigerian Economic Society','Nigerian Union of Journalists','','','c','','wassce','2001',97,'Admin','2016-11-12 20:04:12','2020-08-15 00:59:50'),(212,'The monopolist power can be controlled by the government through','Labour union','Price legislation','import restrictions','export promotion','','','b','','wassce','2001',94,'Admin','2016-11-12 20:04:12','2020-07-31 07:56:41'),(213,'Which of the following is not a condition for a perfect market?','Homogenous commodity','Ignorance of consumers','Perfect information','Free entry and exit','','','b','','wassce','2001',92,'Admin','2016-11-12 20:04:12','2020-08-09 11:14:18'),(214,'The reward for shareholdership of a company is','Wages','interest','dividends','profit','','','c','','wassce','2001',97,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:31'),(215,'In a public corporation, the risks of business are borne by the','workers','tax payers','board members','treasury','','','b','','wassce','2001',95,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:29'),(216,'One of the functions of money is','double coincidence of wants','unit of account','indivisibility','making payments through banks only','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-07-29 15:50:46'),(217,'Money is demanded for which of the following reasons?','To meet unforeseen contingencies','To solve the problem of inflation','It is easily divisible','It is portable','','','a','','wassce','2001',105,'Admin','2016-11-12 20:04:12','2020-08-12 16:33:05'),(218,'The Quantity Theory of money states that a reduction in the quantity of money in circulation would bring about','a geometrical fall in prices','a proprotionate fall in price','a rise in prices','an unequal fall in prices','','','b','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:29'),(219,'Which of the following is the most liquid asset?','Bank notes','Silver','Bank deposit','Cheques','','','b','','wassce','2001',106,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:30'),(220,'The situation in which there is a persistent fall in the general price level is referred to as','devaluation','depreciation','deflation','inflation','','','c','','wassce','2001',77,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:31'),(221,'Commercial banks settle their daily interbank indebtedness through the','Money Market','Finance House','Acceptance House','Clearing House','','','d','','wassce','2001',86,'Admin','2016-11-12 20:04:12','2020-08-15 00:59:49'),(222,'One disadvantage of inflation is that','fixed income earners gain','fixed income earners lose','businessmen lose','standard of living rises','','','b','','wassce','2001',92,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:29'),(223,'Short-term loans can be sourced from','the central bank','development banks','mortgage banks','commercial banks','','','d','','wassce','2001',83,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:27'),(224,'If there is an increase in wages and salaries without a corresponding increase in the supply of goods and services, the situation will lead to','a reduction in aggregate demand','inflation','depression','budget surplus','','','b','','wassce','2001',96,'Admin','2016-11-12 20:04:12','2020-08-15 00:59:51'),(225,'Public expenditure can be financed from all the following sources except','borrowing','grant-in-aid','royalties and rents','Mobilization fees','','','a','','wassce','2001',90,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:36'),(226,'Which of the following is a direct tax?','Import duty','Export duty','Capital gain tax','Sales tax','','','c','','wassce','2001',94,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:29'),(227,'Tax evasions means','postponing payment of tax','tax payment according to ability to pay','making false declaration of taxable income','paying little amount of money as tax','','','c','','wassce','2001',97,'Admin','2016-11-12 20:04:12','2020-08-13 12:58:38'),(228,'A greater burden of tax on a product with high price elasticity of demand rests mainly on the','producer','teacher','civil servant','middlemen','','','a','','wassce','2001',87,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:29'),(229,'An ad valorem tax refers to a tax','imposed on exports','on goods manufactured in the country','based on the value of the commodity','levied on income','','','c','','wassce','2001',103,'Admin','2016-11-12 20:04:12','2020-08-13 12:58:38'),(230,'Which of the following is associated with the development of the petroleum industry in Nigeria?','Neglect of agriculture','Increase in population growth','Increase in the rate of Unemployment','Decrease in the rate of inflation','','','a','','wassce','2001',99,'Admin','2016-11-12 20:04:12','2020-08-15 00:59:56'),(231,'The following are examples of economic goods except','bottled water','air','household utensils','shelter','','','b','','wassce','2010',81,'Admin','2016-11-12 20:44:26','2020-07-29 15:22:25'),(232,'A tent-making factory offers','personal services','indirect services','social services','reflex services','','','b','','wassce','2010',82,'Admin','2016-11-12 20:44:28','2020-08-15 01:00:29'),(233,'In which of the following economic systems do we have mostly private ownership of resources and individual','decision making?','Capitalist system','Socialist system','Mixed system','','','a','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-08-12 16:39:54'),(234,'The sum of items divided by the number of items is the','Frequency','mean','median','mode','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:45'),(235,'Find the median of the following set of scores: 8, 9, 6, 5, 10','9','8','6','5','','','b','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:46'),(236,'Which of the following causes the demand curve to shift to the right?','A reduction in the size of population','An increase in the income of the buyer','The availability of substitutes','A decrease in price of the good','','','d','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:47'),(237,'Goods for which demand rises as income rises are','complementary goods','inferior goods','normal goods','substitutes','','','c','','wassce','2010',89,'Admin','2016-11-12 20:44:29','2020-08-15 00:59:54'),(238,'The slope of a supply curve is','Horizontal','uniform','positive','vertical','','','c','','wassce','2010',77,'Admin','2016-11-12 20:44:29','2020-08-15 00:59:56'),(239,'Equilibrium price is the price at which quantity','demanded is greater than quantity supplied','supplied is greater than quantity demanded','demanded is equal to quantity supplied','supplied equals quantity produced','','','c','','wassce','2010',95,'Admin','2016-11-12 20:44:29','2020-08-15 01:00:28'),(240,'A decrease in supply with demand remaining unchanged will cause the equilibrium price for a good to','be unchanged','remain elastic','remain inelastic','rise','','','d','','wassce','2010',77,'Admin','2016-11-12 20:44:29','2020-08-15 01:00:27'),(241,'At the highest level of total utility, marginal utility is','Negative','positive and falling','positive and rising','zero','','','d','','wassce','2010',66,'Admin','2016-11-12 20:44:29','2020-08-15 00:59:55'),(242,'The law of diminishing marginal utility states that, the more a commodity is consumed the','higher the satisfaction derived from an additional unit','higher the price to be paid','lower the quantity supplied','lower the rate of increase in the total utility derived','','','d','','wassce','2010',88,'Admin','2016-11-12 20:44:29','2020-08-03 03:35:03'),(243,'Greater inter-dependence among workers in production is associated with','utility','manufacturing','division of labour','factory workers','','','c','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:54'),(244,'If TC, FC and VC represent total cost, fixed cost and variable cost respectively, which of the following is\\n\tcorrect?','TC = FC-VC','FC = TC + VC','TC > FC + VC','TC = FC + VC','','','d','','wassce','2010',95,'Admin','2016-11-12 20:44:29','2020-08-15 01:00:28'),(245,'The reward to land as a factor of production is','Profit','rent','interest','wage','','','b','','wassce','2010',85,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:57'),(246,'A firm is said to be a public joint stock company when it','is owned by the government','sells its shares to members of the public','operates as a government corporation','is not legally recognized as a firm','','','b','','wassce','2010',102,'Admin','2016-11-12 20:44:29','2020-08-15 00:59:56'),(247,'All the following are sources of finance to a joint stock company except','debentures','cooperative loans','shares','bank loans','','','b','','wassce','2010',73,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:59'),(248,'The public sector of an economy includes','cooperative societies','nationalized industries','joint stock companies','pressure groups','','','b','','wassce','2010',91,'Admin','2016-11-12 20:44:29','2020-08-15 01:00:29'),(249,'One advantage of the Sole Proprietorship over other forms of business organizations is that it can','make very high profits','employ many workers','keep its affairs private','produce on a very large scale','','','c','','wassce','2010',70,'Admin','2016-11-12 20:44:33','2020-07-29 15:22:25'),(250,'Which of the following is obtainable in a perfect market?','P = MR >AR','MR = MC>P','MR < P','P = MR = MC','','','d','','wassce','2010',73,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:03'),(251,'The wholesaler performs the following functions except','breaking the bulk','offering credit facilities to consumers','financing manufacturers','buying in bulk from manufacturers','','','b','','wassce','2010',85,'Admin','2016-11-12 20:44:33','2020-08-15 01:00:28'),(252,'Age Group\t[0 -15\t\t30%], [16 - 40\t\t27%], [41 - 60\t\t25%], [61 and above\t18%] The data shows the age distribution of a country \\n\tin 1983. Using the data, calculate the percentage of working population in 1983.','48%','52%','57%','70%','','','b','','wassce','2010',85,'Admin','2016-11-12 20:44:33','2020-08-15 01:00:30'),(253,'A country whose population size is too small relative to its resources is','over populated','optimally populated','under populated','producing the optimum output','','','c','','wassce','2010',85,'Admin','2016-11-12 20:44:33','2020-08-15 00:59:56'),(254,'An efficient weapon used in resolving disputes between employers and employees is','co – operation','collective bargaining','display of placards','legal action','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:33','2020-08-09 11:14:18'),(255,'Which of the following does not explain why a school principal earns more salary than a school messenger?','Length of training','Demand and Supply','Cost of training','The messenger is a non-teaching staff','','','b','','wassce','2010',79,'Admin','2016-11-12 20:44:33','2020-07-29 15:22:25'),(256,'The role of government in promoting agricultural development includes the following except','paying the wages of all farmers','establishing and funding research','formulation of policies','provision of rural infrastructure','','','a','','wassce','2010',94,'Admin','2016-11-12 20:44:33','2020-07-28 03:35:44'),(257,'The following are advantages of large scale agriculture except','use of simple implements','use of sophisticated implements','increase in employment','integration of crop and animal farming','','','a','','wassce','2010',86,'Admin','2016-11-12 20:44:33','2020-08-15 01:00:29'),(258,'The following are all factors determining the location of industry except','minimum wage rate','availability of labour','nearness to raw materials','proximity to market','','','a','','wassce','2010',87,'Admin','2016-11-12 20:44:33','2020-08-15 01:00:29'),(259,'Which of the following is not a concept in National income accounting?','Domestic National Product (DNP)','Gross National Product (GNP)','Gross Domestic Product (GDP)','Net Domestic Product (NDP)','','','a','','wassce','2010',101,'Admin','2016-11-12 20:44:34','2020-08-07 10:17:17'),(260,'Which of the following equations is appropriate for determining the Net Domestic Product (NDP)?','NDP = GNP – depreciation','NDP = GDP + Net Income from abroad','NDP = GDP – depreciation','NDP = GDP x Net Income from abroad','','','c','','wassce','2010',92,'Admin','2016-11-12 20:44:34','2020-08-12 16:33:05'),(261,'Which of the following over estimates the value of national income?','Incomplete statistical data','Wrong timing of computation','Changes in prices of goods within the year','Double counting','','','d','','wassce','2010',84,'Admin','2016-11-12 20:44:34','2020-08-09 11:14:18'),(262,'The total stock of money available for use in an economy is','a function of money','a characteristic of money','the demand for money','the supply of money','','','d','','wassce','2010',86,'Admin','2016-11-12 20:44:34','2020-08-15 01:00:27'),(263,'Which of the following is not a reason for holding money?','Ostentation','Speculation','Transactions','Precautionary','','','a','','wassce','2010',76,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:22'),(264,'The best way of combating demand-pull inflation is to','increase income taxes','reduce income taxes','increase import duties','increase salaries and wages','','','a','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-08-15 00:59:49'),(265,'In which of the following ways has','Increase in money supply','A fall in real income','Appreciation in the value of money','Increased employment','','','b','','wassce','2010',81,'Admin','2016-11-12 20:44:34','2020-08-07 10:17:17'),(266,'Which of the following is a legal tender?','Bank notes','Bank overdrafts','Bills of exchange','Money order','','','a','','wassce','2010',73,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:25'),(267,'The Central Bank controls money supply through all the following except','lending to the public','bank rate','legal reserve requirements','open market operation','','','a','','wassce','2010',84,'Admin','2016-11-12 20:44:34','2020-07-29 15:50:46'),(268,'One of the functions of the Central Bank is','production of goods','issuing of currency','presenting budgets','printing of cheque book','','','b','','wassce','2010',82,'Admin','2016-11-12 20:44:34','2020-08-12 16:39:54'),(269,'The function of the Central Bank as a lender of last resort means that when all other sources fail','the consumer can always borrow money from the Central Bank','the government can ask the Central Bank to print more money','commercial banks can raise loans from the Central Bank','commercial banks can deposit money with the Central Bank','','','c','','wassce','2010',103,'Admin','2016-11-12 20:44:34','2020-08-15 00:59:50'),(270,'One disadvantage of direct taxes is that they','allocate scarce resources','are not rigid','can be progressive.','can be evaded','','','d','','wassce','2010',89,'Admin','2016-11-12 20:44:34','2020-07-29 15:22:25'),(271,'Human wants are','Limited','scarce','unlimited','in grades','','','c','','wassce','2012',84,'Admin','2016-11-12 21:02:57','2020-07-14 14:29:32'),(272,'The difference between the money cost and the real cost of any item is that','real cost is the alternative forgone while the money cost is the actual amount paid for buying the item','the real cost is the opportunity cost, while the money cost is the marginal cost','money cost is the opportunity cost, while the real cost is the actual cost in monetary terms','money cost is always greater than real cost','','','a','','wassce','2012',78,'Admin','2016-11-12 21:03:03','2020-08-09 11:14:18'),(273,'The Production Possibility Curve (PPC) indicates that as \tmore of one good is produced','less of the other good is produced','the same quantity of the other good is produced','more of the other good is produced','none of the other good is produced','','','a','','wassce','2012',77,'Admin','2016-11-12 21:03:03','2020-08-15 00:59:50'),(274,'An arrangement of data in rows and columns is referred to as a','Graph','bar chart','pie chart','Table','','','d','','wassce','2012',93,'Admin','2016-11-12 21:03:03','2020-08-09 21:12:42'),(275,'A normal demand curve slopes','downwards from left to right','upwards from right to left','downwards from right to left','upwards from left to right','','','a','','wassce','2012',74,'Admin','2016-11-12 21:03:03','2020-08-15 01:00:29'),(276,'The co-efficient of income elasticity of demand for inferior goods is','Positive','equal to one','less than one','negative','','','d','','wassce','2012',76,'Admin','2016-11-12 21:03:03','2020-08-15 00:59:56'),(277,'If a 20% rise in the price of  Whisky leads to a 30% increase in quantity demanded of Schnapps, the cross elasticity of demand is','3.0','2.5','2.3','1.5','','','d','','wassce','2012',77,'Admin','2016-11-12 21:03:04','2020-07-16 12:39:39'),(278,'Palm oil and palm kernel have','competitive supply','excess supply','joint supply','composite supply','','','c','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-07-29 15:22:25'),(279,'A supply curve which is vertical has an elasticity co-efficient of','0','0.5','1.5','2','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:04','2020-07-15 09:09:54'),(280,'If the current price of an apple is twice that of last year, it implies that the value of money is','Stable','falling','rising','getting stronger','','','b','','wassce','2012',75,'Admin','2016-11-12 21:03:04','2020-08-15 01:00:30'),(281,'Price fixed above the equilibrium is to','protect agricultural producers','discourage agricultural producers','lower the prices of agricultural produce','favour consumers','','','a','','wassce','2012',91,'Admin','2016-11-12 21:03:04','2020-08-03 03:35:03'),(282,'A consumer purchasing a commodity X will maximize his satisfaction if','Px = Mux','Px  >_  MUx','Px > Mux','Px < Mux','','','a','','wassce','2012',81,'Admin','2016-11-12 21:03:04','2020-08-15 00:59:51'),(283,'When total utility is constant, it means marginal utility is','Increasing','zero','decreasing','one','','','b','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-08-15 00:59:50'),(284,'A rational consumer is one who','spends his income to maximize satisfaction','is not influenced by advertisement','behaves in a particular way all the time','knows the prices of all goods and buys the cheapest','','','a','','wassce','2012',83,'Admin','2016-11-12 21:03:04','2020-08-15 01:00:29'),(285,'Which of the following is not true about land?','The supply is fixed','Land is mobile','It is subject to diminishing returns','Land is heterogeneous','','','b','','wassce','2012',61,'Admin','2016-11-12 21:03:04','2020-08-15 00:59:55'),(286,'The type of production that involves the tapping and \tharnessing of natural resources is','primary production','secondary production','tertiary production','industrial production','','','a','','wassce','2012',79,'Admin','2016-11-12 21:03:04','2020-08-03 03:35:03'),(287,'Which of the following does not change in the short run?','Variable cost','Marginal cost','Total cost','Fixed cost','','','d','','wassce','2012',84,'Admin','2016-11-12 21:03:04','2020-08-09 21:12:42'),(288,'The resources used in production are called','variable inputs','factors of production','capital for production','fixed inputs','','','b','','wassce','2012',101,'Admin','2016-11-12 21:03:04','2020-08-13 12:58:38'),(289,'A firm will shut down in the long run if its earning is','less than normal profit','greater than normal profit','equal to super normal profit','less than super normal profit','','','a','','wassce','2012',66,'Admin','2016-11-12 21:03:04','2020-07-29 15:50:46'),(290,'A market structure where profit is maximized when marginal \trevenue, marginal cost and price are equal is known as','perfect competition','monopoly','oligopoly','imperfect competition','','','a','','wassce','2012',86,'Admin','2016-11-12 21:03:04','2020-08-15 00:59:54'),(291,'In which of the following markets does a firm have power to \tmake super normal profits both in the short run and long run?','Monopol','Duopoly','Oligopoly','Monopsony','','','a','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-08-09 11:14:18'),(292,'If there arc no barriers to entering a market, it means that','anyone can become a buyer or seller','unwanted goods can always enter the market','the market becomes a dumping ground','the goods are not inspected','','','a','','wassce','2012',80,'Admin','2016-11-12 21:03:04','2020-08-15 01:00:30'),(293,'A firm’s main aim is to','survive in business','maximize profits','increase its market share','satisfy the ambitions of its managers','','','b','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-08-15 08:59:21'),(294,'One good reason for the elimination of middlemen is that they','cause increase in price','help in price stability','grade and blend goods','are too many','','','a','','wassce','2012',87,'Admin','2016-11-12 21:03:08','2020-08-13 12:58:38'),(295,'The increase in population growth in big cities is referred to as','settlement','migration','industrialization','Urbanization','','','d','','wassce','2012',76,'Admin','2016-11-12 21:03:08','2020-07-26 11:05:19'),(296,'Frictional unemployment can be reduced by','encouraging the use of retraining schemes','removing barriers to labour mobility','restricting the introduction of new technology','lowering the level of wages paid to young people','','','a','','wassce','2012',88,'Admin','2016-11-12 21:03:08','2020-07-21 11:27:15'),(297,'If the labour force of a country is 2.5 million and 2 million are employed, what is the unemployment rate?','0.2%','20%','200%','250%','','','b','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:08'),(298,'The grouping of population according to the economic activities people engage in is','age distribution','sex distribution','geographical distribution','occupational distribution','','','d','','wassce','2012',94,'Admin','2016-11-12 21:03:08','2020-08-13 12:58:38'),(299,'Natural growth rate of population can be defined as the','difference between birth rate and death rate','number of births in a year','increase in the population growth in a year','difference between the total population and the death rate','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:11'),(300,'Which of the following is not a consequence of increased unemployment?','A fall in tax revenue for the government','A reduction in trade union’s influence','A fall in the death rate','An increase in the labour force','','','c','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:12'),(301,'The following are features of subsistence agriculture except','little capital','processing of raw materials','small allotments of land','use of crude implements','','','b','','wassce','2012',86,'Admin','2016-11-12 21:03:08','2020-07-29 15:22:25'),(302,'Which of the following is not true of small companies?','The cannot benefit from economics of scale','are a good source of new jobs','can satisfy demand in specialist markets','have a good record of technical innovations','','','d','','wassce','2012',96,'Admin','2016-11-12 21:03:08','2020-08-15 00:59:54'),(303,'The effect of privatization on the industrial sector of a country is that it','ensures efficiency','discourages efficiency','leads to decrease in output','leads to liquidation','','','a','','wassce','2012',87,'Admin','2016-11-12 21:03:08','2020-08-15 01:00:28'),(304,'The production strategy used in an over populated country is','import substitution','capital intensive','labour intensive','first come first employed','','','c','','wassce','2012',79,'Admin','2016-11-12 21:03:08','2020-08-15 01:00:27'),(305,'National income is used to measure','a country’s population size','a country’s economic growth','the human level of development','the flow of imports to a country','','','b','','wassce','2012',76,'Admin','2016-11-12 21:03:09','2020-08-15 00:59:50'),(306,'A tax is regressive if the','rate of tax is constant at all income levels','rate of tax decreases as income increases','rate of tax increases as income increases','tax is direct rather than indirect','','','b','','wassce','2012',85,'Admin','2016-11-12 21:03:09','2020-08-15 00:59:50'),(307,'When a country’s net income from abroad is added to its total \toutput, the result is','gross domestic product','net national product','gross national product','net domestic product','','','c','','wassce','2012',84,'Admin','2016-11-12 21:03:09','2020-08-15 01:00:30'),(308,'A fall in national output will necessitate','a rise in expenditure on imports','a rise in the level of savings','an increase in consumption expenditure','a rise in the standard of living','','','a','','wassce','2012',102,'Admin','2016-11-12 21:03:09','2020-08-15 01:00:28'),(309,'The demand for money to take advantage of changes in bond \tprices is the','unforeseen motive','transaction motive','speculative motive','precautionary motive','','','d','','wassce','2012',71,'Admin','2016-11-12 21:03:09','2020-07-14 14:30:23'),(310,'Cost push inflation is caused by a','rise in the cost of production','decrease in the transportation cost','rise in demand for goods','decrease in the cost of production','','','c','','wassce','2012',90,'Admin','2016-11-12 21:03:09','2020-08-12 16:33:05'),(311,'Deposits held in a commercial bank are part of','money supply','transfer payments','ordinary shares','treasury bills','','','a','','wassce','2012',91,'Admin','2016-11-12 21:03:12','2020-08-03 14:03:53'),(312,'One profitable form of business undertaken by the commercial banks is','the issuing of cheques','the payment of standing order','lending money to borrowers','accepting cheques from customers','','','c','','wassce','2012',85,'Admin','2016-11-12 21:03:13','2020-08-15 01:00:28'),(313,'When governments want to discourage consumption, they \ttax goods whose demand','price inelastic','abnormal in nature','price elastic','normal in nature','','','c','','wassce','2012',92,'Admin','2016-11-12 21:03:13','2020-08-09 11:14:18'),(314,'A rise in government expenditure can lead to','higher inflation','higher unemployment','lower profits for industries','lower importation of raw materials by industries','','','a','','wassce','2012',112,'Admin','2016-11-12 21:03:13','2020-08-15 01:00:29'),(315,'Tariff is used to protect domestic industries by making foreign goods relatively','cheaper in the domestic market','more expensive in the domestic market','more expensive in the international market','cheaper in the international market','','','b','','wassce','2012',88,'Admin','2016-11-12 21:03:13','2020-07-26 11:05:19'),(316,'Musa has a choice of buying a shirt, a book and a bag. What is the opportunity cost of buying a book?','A bag only','A book and a bag','A shirt and a bag','A shirt only','','','c','','utme','2009',105,'Admin','2016-11-12 21:38:46','2020-07-22 22:03:54'),(317,'A typical feature of a market economy is that','all producers make profit','full employment exists','consumer sovereignty exists','there is equality of economic agents','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:47','2020-08-12 16:33:05'),(318,'The privatization exercise in Nigeria is a move towards a','mixed economy','subsistence economy','market economy','command economy','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:47','2020-07-31 07:56:41'),(319,'A high rent on land will affect the cost of producing maize','positively','negatively','at the early stage of production','at the later stage of production','','','b','','utme','2009',112,'Admin','2016-11-12 21:38:47','2020-08-09 11:14:18'),(320,'If the  active  population  is 50  million and unemployed is 5 million, what is the unemployment rate?','10%','45%','55%','90%','','','a','','utme','2009',105,'Admin','2016-11-12 21:38:47','2020-08-13 12:58:38'),(321,'A cumulative frequency graph is','a histogram','an ogive','a bar chart','a pie chart','','','b','','utme','2009',116,'Admin','2016-11-12 21:38:47','2020-07-22 22:02:42'),(322,'A movement along the same demand curve is caused by the','price of the product','price of other products','income of the consumer','taste of the consumer','','','a','','utme','2009',101,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:35'),(323,'The demand curve for a luxury good is','negatively sloped','parallel to the price axis','parallel to the quantity axis','positive sloped','','','d','','utme','2009',99,'Admin','2016-11-12 21:38:47','2020-08-12 16:39:54'),(324,'Price elasticity of demand is expressed as','percentage change in price percentage change in quantity demanded','percentage change in quantity demanded percentage change in Income','percentage change in Income percentage change in quantity demanded','percentage change in quantity demande percentage change in price','','','d','','utme','2009',99,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:01'),(325,'A major assumption in cardinal utility theory is that','utility is measurable','utility is not measurable','total utility equals marginal utility','total utility is constant','','','a','','utme','2009',110,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:02'),(326,'A supply curve is positively sloped because','supply always exceeds demand','demand always exceeds supply','price is an incentive to consumers','price is an incentive to producers','','','d','','utme','2009',110,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:03'),(327,'The short-run supply curve for medical doctors is more  likely to be','perfectly elastic','perfectly inelastic','fairly inelastic','fairly elastic','','','b','','utme','2009',100,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:03'),(328,'If the price of an item changes by 8% and quantity supplied changes from 600 units to 660 units, the price elasticity of supply is','0.80','1.25','2.00','10.00','','','b','','utme','2009',109,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:34'),(329,'In a regulated market, price is determined by','Consumers','producers','auction','government','','','d','','utme','2009',107,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:03'),(330,'A decrease in supply without a corresponding change in demand will lead to','an increase in equilibrium price and a decrease equilibrium quantity','a decrease in equilibrium price and an increase in equilibrium quantity','a decrease in equilibrium price and equilibrium quantity','an increase in equilibrium price and quantity','','','a','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:55'),(331,'Production takes place when','output is transformed into input','machines replace human effort','input is transformed into output','there is specialization and division of labour','','','c','','utme','2009',113,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:03'),(332,'The marginal product of the 5th unit of capital is','42','85','114','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','d','','utme','2009',94,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:55'),(333,'Determine the average product of the 4th unit of capital','53','86','212','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','a','','utme','2009',105,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:44'),(334,'Which of the following can be deduced from law of variable proportions when total output is rising?','MP is greater than AP','MP is less than AP','MP is equal to AP','MP is equal to zero','','','d','','utme','2009',111,'Admin','2016-11-12 21:38:47','2020-08-13 12:58:38'),(335,'As the level of output increases, the average fixed cost of a firm will','continue to increase','remain uncharged','continue to decrease','be equal to the total cost','','','c','','utme','2009',124,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:01'),(336,'The shape of the long-run average cost curve is best explained by the','law of diminishing returns','law of returns to scale','cost of fixed inputs','cost of variable inputs','','','a','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-08-09 11:14:18'),(337,'The supply curve of a perfectly competitive firm is identical to its','total cost','marginal cost','fixed cost','variable cost','','','b','','utme','2009',105,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:03'),(338,'If a monopolist is incurring short–run losses, this means that his','selling price is above the short–run marginal cost','selling price is below the short–run marginal cost','average revenue is greater than marginal revenue','average revenue is less than marginal revenue','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:16'),(339,'In the long run, one of the characteristics of monopolistic competitive firms is that the','make  abnormal profits','suffer losses','make normal profits','collude with each other','','','a','','utme','2009',132,'Admin','2016-11-12 21:38:48','2020-08-13 13:06:20'),(340,'In developing countries, it is easier to obtain accurate national income estimates through the','GNP','GDP','NDP','NNP','','','b','','utme','2009',121,'Admin','2016-11-12 21:38:48','2020-08-13 12:58:38'),(341,'Double counting is a problem in computing national income when using the','expenditure method','income method','output method','value–added method','','','c','','utme','2009',97,'Admin','2016-11-12 21:38:48','2020-08-12 16:33:05'),(342,'In the circular flow of income, an increase in saving causes','an increase in imports','a decrease in the income stream','an increase in household consumption','a decrease in exports','','','b','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-08-12 16:33:05'),(343,'The ability of commercial banks to create money depends on the','Ratio','liquidity ratio','interest rate','capital base','','','b','','utme','2009',129,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:01'),(344,'The reform in the banking sector in Nigeria is principally \tmotivated by the need to','increase the capital base of banks','provide more money to run the economy','minimize the rate of bank failures','enhance efficiency in bank operations','','','a','','utme','2009',117,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:54'),(345,'A manufacturer who wants to build a new plant will source funds from the','commercial banks','money market','capital market','government','','','c','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:34'),(346,'Cost–push inflation occurs when','production cost is high','factor prices decrease','there is too much money in circulation','government embarks on deficit financing','','','a','','utme','2009',126,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:04'),(347,'If government expenditure exceeds revenue, this results in','balanced budget','national debt','budget deficit','budget surplus','','','c','','utme','2009',122,'Admin','2016-11-12 21:38:48','2020-08-13 12:58:38'),(348,'The Basic Needs Approach to development is directed a','poverty alleviation','provision of educational infrastructure','provision of health services','improvement in worker’s income','','','a','','utme','2009',126,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:34'),(349,'The major reason why countries strive to achieve optimum growth is to','be self–sufficient','raise general living standards','raise the level of production','reduce aggregate expenditure','','','b','','utme','2009',111,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:01'),(350,'According to the theory of comparative advantage, specialization will result in','labour–intensive method of production','capital–intensive method of production','efficient allocation of resources','efficient distribution of output','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-08-13 13:06:20'),(351,'Dumping in international trade means selling a good at a','higher price at home than abroad','lower price at home than abroad','price that equates marginal cost with marginal revenue','price above marginal cost abroad','','','a','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-08-12 16:33:05'),(352,'Guided deregulation as currently practiced in Nigeria implies that','market forces determine interest and exchange rates','government alone determines interest and exchange rates','market forces and government determine interest and exchange rates','exchange rate is regulated while interest rate is fixed','','','c','','utme','2009',95,'Admin','2016-11-12 21:38:48','2020-08-09 21:12:42'),(353,'An important function of the world bank is to','provide short–term loans to members','encourage trade between members','promote capital–intensive productions','provide long–term loans to members','','','d','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:03'),(354,'The major problem confronting a sole proprietor is','high level of risk','limited expertise','limited source of capital','high taxation','','','c','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:45'),(355,'A public liability company is run on a daily basis by','the chief executive','the shareholders','the board of directors','financial consultants','','','c','','utme','2009',114,'Admin','2016-11-12 21:38:48','2020-07-22 22:02:43'),(356,'The marketing of agricultural products in Nigeria can be improved by','a massive production of farm produce','re–establishing the marketing boards','establishing more agricultural banks','processing of farm produce','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:53'),(357,'To enhance the competitiveness of domestic agricultural products, there is need to','ban the importation of agricultural products','increase the exportation of agricultural products','improve the quality of domestic agricultural products','increase the output of domestic agricultural products','','','c','','utme','2009',102,'Admin','2016-11-12 21:38:48','2020-08-12 16:39:54'),(358,'In Nigeria, the location of a steel industry at Ajaokuta is due to','the availability of transport network','the proximity to source of power','the proximity to large deposits of iron ore','political consideration.','','','c','','utme','2009',122,'Admin','2016-11-12 21:38:48','2020-08-12 16:33:05'),(359,'Industries for consumer goods are concentrated in urban centres as result of','large market','power supply','government policy','weather conditions','','','a','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:00'),(360,'The current industrial development strategy in Nigeria is aimed at encouraging','small–scale industries','medium–scale Industries','small – and medium–scale Industries','medium–and large–scale Industries','','','c','','utme','2009',131,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:03'),(361,'Activities in the oil and gas industry are classified into','oil exportation and distribution','refining and marketing of finished products','upstream and downstream','exploration and drilling','','','c','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:01'),(362,'High dependency ratio is influenced by','high infant mortality rate','the level of income','high birth rate','inadequate medical care for children','','','c','','utme','2009',118,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:45'),(363,'Occupational distribution of population determines the','size of a population available and willing to work','population density of a place','dependency ratio of a country','size and categories of the labour force','','','a','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-07-31 07:56:41'),(364,'The mobility of labour is mainly determined by','the age of workers','government policy','trade unions','wage rate differentials','','','d','','utme','2009',117,'Admin','2016-11-12 21:38:49','2020-08-15 01:00:00'),(365,'When workers have a union, the supply of labour is said to be','Monopolistic','oligopolistic','Monoposonistic','competitive','','','b','','utme','2009',109,'Admin','2016-11-12 21:38:49','2020-08-15 01:00:03'),(366,'Economics is the study of human behaviour as it relates to the','efficient allocation of resources','operation of companies','production of goods','generation of income','','','a','','utme','2010',131,'Admin','2016-11-12 22:11:49','2020-08-13 09:01:03'),(367,'A classroom teacher is promoted to the rank of a principal. This is an example of','vertical mobility','lateral mobility','social mobility','horizontal mobility','','','d','','utme','2010',120,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:01'),(368,'The downturn in the prices of shares on stock markets is a \thighlight of','efficient allocation of resources','the regulatory nature of the market','the invisible hand','consumer rationality','','','b','','utme','2010',124,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:03'),(369,'If  X = 6 and N = 6, determine the value of   Efx.','36','12','1','72','','','a','','utme','2010',132,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(370,'The standard deviation of a set of data is','always measured from the mode','always measured from the median','the most representative of averages','a measure of dispersion','','','d','','utme','2010',119,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:00'),(371,'The mean is the best measure of central tendency because it','is not affected by extreme values in a data','is a balancing point in an observation','is a midpoint value in an array of data','can be calculated from incomplete data','','','b','','utme','2010',116,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:04'),(372,'The most popular sizes of dresses and shoes are determined by the','Range','mode','mean','median','','','d','','utme','2010',132,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(373,'If  the demand for a good is more elastic than its supply, the tax burden is borne','equally by consumers and producers','more by consumers','more by producers','more by retailers and producers','','','c','','utme','2010',122,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(374,'If  the price of a commodity with elastic demand increases, the revenue accruing to the producer will','Double','be constant','increase','decrease','','','d','','utme','2010',124,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(375,'An excess demand for beans will result from','an increase in the price of  beans','a decrease in the price of  beans','an increase in the supply of  beans','a decrease in the supply of  beans','','','b','','utme','2010',123,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(376,'Consumer surplus tends to be higher when demand is','perfectly elastic','inelastic','elastic','unitary elastic','','','c','','utme','2010',99,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(377,'One of  the assumptions of ordinal utility theory is that','choice is not consistent','total utility is a function of price','utility can be ranked','satisfaction is measurable','','','c','','utme','2010',126,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:03'),(378,'The law of diminishing marginal utility explains why','the slope of a normal demand curve is negative','the slope of a normal demand curve is positive','an abnormal demand curve slopes upward','the consumption of inferior goods increases with income','','','a','','utme','2010',130,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:03'),(379,'If a consumer plans to spend 120k on four oranges but spent 80k, his consumer surplus is','N = 1.50','N = 1.00','N = 0.40','N = 2.0','','','c','','utme','2010',121,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:00'),(380,'A set of  factors that can shift the supply curve are changes in','weather, price and technology','technology, price and taste','technology, weather and population','population, price and taste','','','c','','utme','2010',138,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:04'),(381,'If  the coefficient of price elasticity of supply is greater than one, the supply is said to be','perfectly elastic','infinitely inelastic','fairly inelastic','fairly elastic','','','d','','utme','2010',118,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(382,'If commodity X is a by-product of commodity Y, this implies that both commodities are','in competitive supply','jointly supplied','in composite supply','in excess supply','','','c','','utme','2010',125,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(383,'In perfect competition, price is determined by the','Government','buyers','sellers','market','','','d','','utme','2010',107,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(384,'In order to reduce hardship faced by consumers due to high prices, government can introduce','maximum prices','minimum prices','commodity boards','price control boards','','','d','','utme','2010',130,'Admin','2016-11-12 22:11:50','2020-08-15 01:00:04'),(385,'Average product is less than marginal product when','there is constant returns to scale','there is decreasing returns to scale','there is increasing returns to scale','diminishing returns set in','','','c','','utme','2010',123,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(386,'A firm enjoying economics of scale is said to be','reducing average cost as production increases','maximizing profits as production increases','benefiting from the activities of other firms','having an upward - sloping average cost curve','','','a','','utme','2010',113,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(387,'The rising portion of the long - run average cost curve of a','firm is an indication that it is experiencing \\n\tincreasing efficiency','diseconomies of scale','economics of scale','increasing marginal returns','','','b','','utme','2010',112,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(388,'An industry’s supply curve is more likely to be elastic when firms are','enjoying free entry and exit','operating below capacity','operating at full capacity','maximizing profits','','','b','','utme','2010',110,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:00'),(389,'One of  the characteristics of  monopolistic competition is that','there is mobility of factors of production','consumers have perfect knowledge of price','no single seller dominates the market','the firms are price – takers','','','a','','utme','2010',126,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(390,'The demand curve for factors of production','is perfectly elastic','slopes downwards','slopes upwards','is perfectly inelastic','','','b','','utme','2010',117,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:03'),(391,'An agreement among firms on price and segmentation is termed','Cartel','haggling','collusion','specialization','','','b','','utme','2010',109,'Admin','2016-11-12 22:11:51','2020-07-27 17:23:03'),(392,'In national income accounting, tax is determined by the','level of  income','level of investment','level of consumption','rate of savings','','','a','','utme','2010',111,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:01'),(393,'A decrease in aggregate spending in an economy will ultimately lead to','Boom','deflation','inflation','recession','','','b','','utme','2010',115,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:01'),(394,'If  MPC is 0.7 while government expenditure increased by N= 150m, the equilibrium national income is','N= 214 million','N= 105 million','N= 45 million','N= 500 million','','','b','','utme','2010',135,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:03'),(395,'The function of money which makes division of  labour \tpossible is its','unit of account','medium of exchange','store of value','standard of deferred payment','','','b','','utme','2010',133,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(396,'By buying treasury bills, the Central Bank of  Nigeria intends \tto','increase money supply in the economy','reduce money supply in the economy','reduce the cash reserve ratio for banks','increase the capital base of commercial banks','','','b','','utme','2010',128,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(397,'The velocity of money is represented as','money supply /real GDP','real GDPmoney supply','nominal GDP/real GDP','money supply/nominal GDP','','','a','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(398,'One of the functions of commercial banks is','maintaining stable price in the economy','granting loans to customers','regulating monetary policies','issuing bank notes and coins','','','b','','utme','2010',125,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(399,'A strategy for curbing unemployment is to','implement government stabilization policy','increase government expenditure and decrease taxes','increase taxes and decrease government expenditure','ensure even distribution of job opportunities','','','b','','utme','2010',127,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:02'),(400,'In Nigeria, the huge public debt is as a result of','balanced budgeting','surplus budgeting','deficit budgeting','zero budgeting','','','c','','utme','2010',121,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:03'),(401,'National development plans in Nigeria fail mainly because of','over dependence on foreign aids','poor implementation strategies','inadequate funding of projects','shortage of skilled manpower','','','b','','utme','2010',115,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(402,'The ultimate aim of agricultural policies in Nigeria is to achieve','food sufficiency','full employment','industrialization','industrial capacity utilization','','','c','','utme','2010',106,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(403,'Government can boost agricultural output in Nigeria primarily by','embarking on buffer stock programs','granting subsidies on farm Inputs','placing embargo on food importation','placing farmers on monthly income','','','c','','utme','2010',117,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(404,'Localization of industries refers to the','spread of firms producing different products','concentration of firms of an industry','siting of industries near the market','siting of firms producing different products','','','b','','utme','2010',123,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:01'),(405,'in developing countries, governments influence the location of  industries in order to','spread development','encourage entrepreneurs','redistribute wealth','encourage industries to earn high profits','','','a','','utme','2010',121,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:01'),(406,'A disadvantage of Nigeria’s dependence on imported petroleum products is the','instability in the demand to the  products','instability in the supply for the products','dominance of multinational firms','poor maintenance of the refineries','','','b','','utme','2010',127,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:03'),(407,'The maximum number of shareholders  for a limited liability company is','Twenty','seven','five','infinite','','','d','','utme','2010',110,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(408,'The primary motive for an individual engaging in production is to','make profit','redistribute wealth','satisfy basic human wants','put inputs into use','','','a','','utme','2010',129,'Admin','2016-11-12 22:11:51','2020-08-03 03:35:03'),(409,'One of  the characteristics of  free trade zone is','common tariff against non-member countries','free factor mobility within the zone','different trade policies of non-member countries','harmonized trade among member countries','','','b','','utme','2010',127,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:01'),(410,'If  Nigeria imports vehicles from Japan, the transaction will appear as a','debit on Japan’s balance of payments','credit on Nigeria’s balance of trade','credit on Japan’s balance of payments','credit on Nigeria’s balance of payments','','','a','','utme','2010',128,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:01'),(411,'One of  the objectives of ADB is to','provide subsidies on imported goods to members countries','promote economic and social development of member countries','mobilize short-term loans for member countries','provide technical assistance to only poor member countries','','','c','','utme','2010',112,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:03'),(412,'The choice of the method of production in an economy is determined by the','level of income','rate of population growth','level of technical know-how','availability of natural resources','','','c','','utme','2010',131,'Admin','2016-11-12 22:11:51','2020-08-15 01:00:01'),(413,'The amount of labour hired depends on the','number of skilled labour available','marginal productivity of labour','skill of labour','price of other inputs','','','b','','utme','2010',106,'Admin','2016-11-12 22:11:51','2020-08-13 13:06:20'),(414,'Economic as a field of study is a','pure science','political science','social science','physical science','','','c','','wassce','2003',79,'Admin','2016-11-12 22:37:36','2020-08-15 01:00:29'),(415,'The three major agents of an economic system are the','consumers, workers and producers','markets, telecommunication and banks','schools, hospitals and universities','individuals, firms and government','','','d','','wassce','2003',77,'Admin','2016-11-12 22:37:37','2020-08-15 01:00:30'),(416,'Which of the following  is  not  an  advantage  of  tabular presentation of data?','enables easy location of required figures','makes for easy comparison of figures','occupies more space than mathematical equation','shows whether the figures are increasing or decreasing','','','c','','wassce','2003',103,'Admin','2016-11-12 22:37:37','2020-08-13 12:58:38'),(417,'The problem of scarcity is reduced by','controlling consumption of goods and services','producing everything needed by consumers','ensuring efficient allocation of resources','restricting consumer choices and tastes','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:36'),(418,'The reward for labour is','wages','profit','rend','dividends','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:38'),(419,'Which of the following factors of production consists of man made goods?','Land','Labour','Capital','Entrepreneur','','','c','','wassce','2003',83,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:39'),(420,'One major function of the entrepreneur is','bearing of risk','maximizing profits','taking charge of day to day management','determining the selling price of his products','','','c','','wassce','2003',89,'Admin','2016-11-12 22:37:38','2020-08-12 16:33:05'),(421,'A major limiting factor of mass production is','efficient management','adequate labour supply','small size of the market','adequate  supply of raw materials','','','c','','wassce','2003',102,'Admin','2016-11-12 22:37:38','2020-08-15 01:00:28'),(422,'Division of labour leads to','improved craftsmanship','the production of standardized goods','increase in the cost of goods','trade by barter','','','b','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-16 12:39:39'),(423,'Which of the following is  an  advantage of localization of \\n\tindustry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2003',88,'Admin','2016-11-12 22:37:38','2020-08-12 16:33:05'),(424,'The additional satisfaction derived from the consumption of one more unit of a good is called','marginal product','marginal utility','marginal revenue','marginal cost','','','b','','wassce','2003',100,'Admin','2016-11-12 22:37:38','2020-08-15 00:59:55'),(425,'West  African   countries  have  low  levels  of  economic \tdevelopment due to','underpopulation','inadequate labour','failure to plan','ineffective plan implementation','','','b','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-08-07 10:17:17'),(426,'When the total product is at its maximum, marginal \\n\tproduct is','increasing','positive','negative','zero','','','d','','wassce','2003',111,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:49'),(427,'Marginal cost can be derived from the','total product','total revenue','total cost','average fixed cost','','','d','','wassce','2003',92,'Admin','2016-11-12 22:37:38','2020-07-29 15:22:25'),(428,'The market supply curve slopes upwards from left to right indicating that','at a lower price, more is supplied','two commodities can be supplied at the same time','at a lower price, less is supplied','producers pay high taxes','','','c','','wassce','2003',75,'Admin','2016-11-12 22:37:38','2020-08-12 16:33:05'),(429,'The marginal revenue when output is 4 units is','5 naira','8 naira','56 naira','61 naira','Use the data below to answer question:  Output [1, 2, 3, 4, 5]  Total Revenue(N=) [40, 49, 56, 61, 65]','','a','','wassce','2003',83,'Admin','2016-11-12 22:37:38','2020-08-15 01:00:28'),(430,'The term under population refers to a situation where the population is','dispersed over the country','small in relation to available resources','greater than the available resources','concentrated in a few areas','','','b','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:53'),(431,'West African countries experience rapid population growth due to','existence of birth control clinics','early marriages','adequate sex education in schools','late marriages','','','b','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:54'),(432,'Which of the following could be  used  to  measure  the efficiency of labour?','Education and training','Rate of inflation','Level of unemployment','Input-Output ratio','','','d','','wassce','2003',84,'Admin','2016-11-12 22:37:38','2020-08-15 01:00:30'),(433,'Which of the following is necessary for the survival of small firms in West Africa?','Access to land for development','Inadequate collaterals for bank loans','Government assistance in the form of loans and tax holidays','High transportation costs.','','','c','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:56'),(434,'A normal demand curve slopes','downwards from left to right','upwards from left to right','downwards from right to left','upwards from the origin','','','a','','wassce','2003',104,'Admin','2016-11-12 22:37:38','2020-08-07 10:17:17'),(435,'If the quantity demanded of a commodity increases from 20 to 30 units when there is an increase in price from 4 naira to 5 naira, the elasticity of demand is','0','1','2','5','','','c','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-08-15 01:00:28'),(436,'Price elasticity of supply measures the responsiveness of','quantity supplied to   changes in suppliers’ income','changes in prices of other commodities','a change in the prices of the commodity','a change in the demand for the product','','','c','','wassce','2003',77,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:59'),(437,'The most common type of business in West African countries is','joint stock companies','sole proprietorships','partnerships','public enterprises','','','b','','wassce','2003',93,'Admin','2016-11-12 22:37:38','2020-08-15 01:00:27'),(438,'Which of the following is a type of business organization?','Stock exchange','Insurance company','Chain stores','Co-operative','','','b','','wassce','2003',74,'Admin','2016-11-12 22:37:38','2020-08-15 00:59:55'),(439,'One advantage of the sole proprietorship is that','control and supervision is under one man','accounts must be publicized','it is always successful','funds are easy to obtain','','','a','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-08-12 18:45:05'),(440,'The shares which do not carry any fixed rate of dividend are known as','debentures','cumulative preference shares','ordinary shares','participating preference shares','','','c','','wassce','2003',84,'Admin','2016-11-12 22:37:38','2020-07-26 11:05:19'),(441,'The economic goal of public corporations is to','maximize profit','expand assets','minimize costs','provide essential services.','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:03'),(442,'One of the factors responsible for low agricultural \\n\tproduction in West Africa is','inadequate labour','shortage of land','inadequate implements','inadequate research','','','c','','wassce','2003',91,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:04'),(443,'Efficient distribution of goods in West Africa will be \\n\tfacilitated by','poor storage facilities','adequate transportation system','high standard of living','high cost of living','','','b','','wassce','2003',88,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:05'),(444,'The demand for money is','derived demand','composite demand','joint demand','complimentary demand','','','a','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:06'),(445,'Money becomes a very poor store of value in a period of','deflation','depression','recession','inflation','','','d','','wassce','2003',89,'Admin','2016-11-12 22:37:39','2020-08-15 01:00:28'),(446,'A continuous fall in the general price level is called','recession','depression','deflation','stagflation','','','c','','wassce','2003',102,'Admin','2016-11-12 22:37:39','2020-08-12 18:45:05'),(447,'Which of the following is a function of the central bank?','Accepting deposits from the public','Lending to the commercial bank','Discounting bills of exchange','Agent of payment for individuals','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:09'),(448,'Cost-push inflation is likely to arise when','there is an increase in government spending','there is an increase in direct taxes','demand for higher wages is granted','there is a decrease in bank lending','','','c','','wassce','2003',94,'Admin','2016-11-12 22:37:39','2020-08-15 00:59:54'),(449,'The most important function of merchant banks is the','issuing of currency','provision of short term loans','provision of medium and long term loans','provision of short and long term loans','','','c','','wassce','2003',92,'Admin','2016-11-12 22:37:39','2020-07-16 12:39:39'),(450,'Precautionary motive relates to','demand for money','demand for goods','supply of money','supply of goods','','','a','','wassce','2003',109,'Admin','2016-11-12 22:37:39','2020-07-19 12:29:50'),(451,'Invisible trade refers to trade in','services','goods and services','tangible goods','crude oil','','','a','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-08-15 01:00:27'),(452,'When the demand for foreign exchange exceeds its supply, the value of the domestic currency','appreciates','depreciates','inflates','expands','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:14'),(453,'Which of the following is part of the capital account of the balance of payments?','Net investment from abroad','Import of machinery','Insurance','Transportation costs','','','a','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:15'),(454,'The most common index for measuring development is','the level of illiteracy','the per capital income','nutritional levels','population growth rate','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:16'),(455,'Governments of West African countries levy taxes to','prevent prices from falling','make people richer','limit the number of banks','finance government projects','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-08-03 14:03:53'),(456,'Which of the following is a direct tax?','Import duties','Purchase tax','Export duties','Personal income tax','','','d','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-08-15 00:59:50'),(457,'The tax whose rate increases as the level of income increases is known as','regressive tax','proportional tax','progressive tax','company tax','','','c','','wassce','2003',137,'Admin','2016-11-12 22:37:39','2020-08-12 16:33:05'),(458,'Public expenditure on education and health is known as expenditure on','general services','social services','commercial services','economic services','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-08-15 00:59:50'),(459,'Budget deficit can be financed by','reducing the level of taxation','printing more money','lending to financial institutions','employing more workers','','','b','','wassce','2003',80,'Admin','2016-11-12 22:37:39','2020-08-12 16:39:54'),(460,'A major problem facing the Economic Community of West African States (ECOWAS) as an economic integration, is the','increasing population','willingness of member to co-operate','geographical contiguity','weak trade relations','','','d','','wassce','2003',98,'Admin','2016-11-12 22:37:39','2020-08-15 01:00:27'),(461,'In a socialist economy, the means of production is owned and controlled by the','state','rich','Entrepreneur','traders','','','a','','wassce','2003',87,'Admin','2016-11-12 22:37:39','2020-08-15 00:59:50'),(462,'It is necessary to estimate the national income of a country because it','indicates the overall performance of the economy','ensures equitable distribution of wealth','assists investors in identifying profitable ventures','enables governments to conserve national resources','','','a','','wassce','2003',80,'Admin','2016-11-12 22:37:39','2020-08-13 12:58:38'),(463,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','perfect competition','monopsony','duopoly','cartel','','','d','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:33'),(464,'Which of the following is an economic activity?','Attending a town’s meeting','A visit to the stadium','Payment of school fee','Arresting a petty thief','','','c','','wassce','2004',90,'Admin','2016-11-12 23:04:46','2020-08-13 13:06:20'),(465,'The reward for land as a factor of production is','interest','rent','dividend','wages','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:46','2020-07-16 17:21:34'),(466,'The three broad categories of production are','direct, secondary and extractive','primary, tertiary and direct','primary, secondary and tertiary','secondary, primary and indirect','','','c','','wassce','2004',95,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:29'),(467,'A carpenter’s consumer good include:  I.  a kilogram of rice II.  3 pairs of shoes    III.  4 pairs of socks   IV. 3 screw-drivers','I and IV only','I, II, III and IV','I, II and IV only','I, II and III only','','','a','','wassce','2004',82,'Admin','2016-11-12 23:04:46','2020-07-31 07:56:41'),(468,'In a capitalist system, the means of production is owned and controlled by','the government','politicians','private individuals','the workers','','','c','','wassce','2004',81,'Admin','2016-11-12 23:04:46','2020-08-15 00:59:55'),(469,'Mixed economy refers to a system in which the means of production are controlled by','private enterprise and the government','private individuals','the government only','the workers and businessmen','','','a','','wassce','2004',95,'Admin','2016-11-12 23:04:46','2020-08-03 03:35:03'),(470,'An economic good is described as a good which','yield utility and commands a price','is useful and occupies a space','is in high demand and transferable','has unlimited supply','','','a','','wassce','2004',82,'Admin','2016-11-12 23:04:46','2020-08-07 10:17:17'),(471,'The concept of opportunity cost is important to the firm because it','determines the prices of the firm’s products','increases the level of output of the firm','leads to maximum satisfaction of the consumers','Guides firms in allocating scarce resources','','','d','','wassce','2004',94,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:40'),(472,'As a firm expands, it enjoys some advantages called','variable proportions','diminishing marginal returns','internal economics of scale','decreasing returns to scale','','','c','','wassce','2004',91,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:29'),(473,'Division of labour is limited by','the size of the market','the productivity of capital','cost of production','factors of production','','','a','','wassce','2004',74,'Admin','2016-11-12 23:04:46','2020-08-03 14:03:53'),(474,'An entrepreneur is likely to make more profits when','expenditure is more than revenue','competitors charge lower prices','cost per unit output falls','quantity of output reduces','','','c','','wassce','2004',86,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:30'),(475,'Natural growth rate is','birth rate less death rate','death rate less migration','death rate plus birth rate','birth rate plus migration','','','a','','wassce','2004',82,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:30'),(476,'A major effect of aging populations is','reduced labour force','rise in prices of commodities','reduced infrastructure','neglect of agriculture','','','a','','wassce','2004',98,'Admin','2016-11-12 23:04:46','2020-07-26 11:05:19'),(477,'One of the problems associated with the middleman in the distribution of goods is that he','buys in large quantities','hoards goods','grants credit to the retailer','sells varieties of goods','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:47'),(478,'The distribution of goods is said to be completed when it reaches the','wholesalers','consumers','retailers','manufacturers','','','b','','wassce','2004',92,'Admin','2016-11-12 23:04:46','2020-08-15 00:59:56'),(479,'The gap between demand and  supply  curves  below the equilibrium price indicates','excess demand','excess supply','equilibrium quantity','equilibrium price','','','a','','wassce','2004',101,'Admin','2016-11-12 23:04:46','2020-08-15 00:59:55'),(480,'Demand for inferior good is an example of','expansion of demand','contraction of demand','individual demand','abnormal demand','','','d','','wassce','2004',91,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:31'),(481,'When a change in price does not affect the quantity demanded of a commodity, the price elasticity of demand is','fairly inelastic','infinitely elastic','perfectly inelastic','unitary elastic','','','c','','wassce','2004',99,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:27'),(482,'For both the monopolist and the perfectly competitive firm, profit maximizing output occurs at the point where the','marginal cost curve cuts the marginal revenue curve from below','marginal revenue curve cuts the marginal output from above','marginal cost curve intersects the X-axis','marginal revenue curve intersects the Y-axis','','','a','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-08-12 16:39:54'),(483,'The market structure in which the operators are many and none of them can influence the price is','imperfect market','perfect market','oligopolistic market','stock market','','','b','','wassce','2004',89,'Admin','2016-11-12 23:04:47','2020-08-15 00:59:55'),(484,'One main benefit of partnerships is','the possibility of raising funds on the stock exchange','the possibility of attracting twenty one or more members','that members can specialize in various functions','that it enjoys its own separate legal entity.','','','c','','wassce','2004',86,'Admin','2016-11-12 23:04:47','2020-07-29 15:50:46'),(485,'Joint ventures are partnerships involving','the poor and the rich','employers and workers','government and private investor','multi-nationals and individual','','','c','','wassce','2004',103,'Admin','2016-11-12 23:04:47','2020-08-15 01:00:29'),(486,'The value of money is best determined by','input-output ratio','the purchasing power','the importance people attach to it','economics of scale','','','b','','wassce','2004',84,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:11'),(487,'Which of the following will be an effect of inflation?','Wages earners will gain','Borrowing of money will be restricted','Money lenders will gain','Borrowers of money will gain','','','d','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-07-31 07:56:41'),(488,'Government can control inflation by','printing more money','reducing the rate of taxes','reducing the level of expenditure','establishing more banks','','','c','','wassce','2004',99,'Admin','2016-11-12 23:04:47','2020-08-15 01:00:27'),(489,'The market consisting  of  a  network  of  dealers  where \tcurrencies can be bought and sold is known as','capital market','foreign exchange market','commodity market','the stock market','','','b','','wassce','2004',83,'Admin','2016-11-12 23:04:47','2020-08-09 21:12:42'),(490,'Open Market Operation (OMO) means the','provision of credit facilities by commercial banks','provision of credit facilities by the mortgage banks','buying and selling of government securities by the central bank','procedure for the establishment of commercial banks','','','c','','wassce','2004',82,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:15'),(491,'Which of the following is an advantage of  localization of industry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2004',79,'Admin','2016-11-12 23:04:47','2020-08-15 00:59:56'),(492,'Which of the following will ensure efficiency in the industrial sector of your country?','Indigenization','Privatization','Nationalization','Liquidation','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:47','2020-07-16 12:39:39'),(493,'The number of people who are qualified to work and who offer themselves for employment are called','migrant labour','working population','labour turnover','mobility of labour','','','b','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-31 07:56:41'),(494,'When the general price level persistently falls, the rate of  unemployment','rises','stagnates','rapidly reduces','equals natural growth rate','','','a','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:19'),(495,'Which of the following is not a direct effort to increase agricultural production?','Operation feed the nation','Use of improved seedlings','Increased loans to farmer and co-operative societies','National Youth Service Corps','','','d','','wassce','2004',89,'Admin','2016-11-12 23:04:47','2020-07-26 11:05:19'),(496,'To ensure high employment rates, developing countries should','build more universities','protect infant industries','organize trade fairs','prevent rural-urban drift','','','b','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-07-16 12:39:39'),(497,'The act of selling goods in foreign markets at prices below those charged at home markets is called','exchange','specialization','dumping','exporting','','','c','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-08-12 18:45:05'),(498,'Taxes levied on commodities are','direct taxes','indirect taxes','poll taxes','investment taxes','','','b','','wassce','2004',92,'Admin','2016-11-12 23:04:47','2020-08-12 16:33:05'),(499,'One disadvantage of direct taxes is that','government’s revenue is reduced','price of essential commodities fall','people are discouraged from additional work','firms make more profits','','','c','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-08-12 16:39:54'),(500,'International trade is an application of the principle of','industrial production','mass production','regional co-operation','comparative costs advantage','','','d','','wassce','2004',95,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:39'),(501,'Trade among West African countries is poor because the','countries are self-sufficient','communication links are weak','number of banks is insufficient','people are not enterprising','','','b','','wassce','2004',94,'Admin','2016-11-12 23:04:47','2020-07-29 15:50:46'),(502,'A policy by which governments restrict the amount of \\n\tforeign currencies bought and sold is known as','devaluation','credit creation','exchange control','export promotion','','','c','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-08-13 13:06:20'),(503,'Which of the following items is under the capital account of a balance of payments','Repayments of foreign loans','Visible imports','Invisible exports','Cocoa export','','','a','','wassce','2004',97,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:42'),(504,'A surplus in the balance of payments should be used to','subsidize multi-national companies','build infrastructure for friendly nations','make donation to developed countries','buy investments overseas','','','d','','wassce','2004',102,'Admin','2016-11-12 23:04:47','2020-08-12 16:39:54'),(505,'Development planning which takes an overall view of the economy is described as','Aggregate economic planning','Disaggregated economic planning','Sectorial economic planning','System economic planning','','','a','','wassce','2004',94,'Admin','2016-11-12 23:04:47','2020-08-15 01:00:28'),(506,'The national income of a country can be estimated by the','cost-benefit method','distribution method','expenditure method','consumption method','','','c','','wassce','2004',88,'Admin','2016-11-12 23:04:51','2020-07-28 00:06:45'),(507,'Which of the following is excluded when estimating national income?','Dividends','Wages and salaries','Transfer payment','Profits','','','c','','wassce','2004',72,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:47'),(508,'The economic Community of West African States (ECOWAS) has been slow in achieving its objectives because of','political instability in member state','the activities of multi-national','inadequate personnel at the secretariat','inadequate international support','','','a','','wassce','2004',75,'Admin','2016-11-12 23:04:51','2020-08-15 00:59:54'),(509,'A major achievement of  the  Organization  of  Petroleum Exporting Countries (OPEC) is that','crude oil price has increased tremendously','petroleum products prices have remained low','producing countries are highly industrialized','price of crude oil has remained relatively stable.','','','d','','wassce','2004',99,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:50'),(510,'Economic activities are undertaken to solve the problem of','consumption','opportunity cost','production','scarcity','','','b','','wassce','2005',89,'Admin','2016-11-12 23:29:58','2020-08-15 00:59:55'),(511,'Farming, mining and fishing are','primary production','secondary production','tertiary production','intermediate production','','','a','','wassce','2005',99,'Admin','2016-11-12 23:29:58','2020-08-15 00:59:54'),(512,'A list of consumers’ wants arranged in order of priority is known as','a budget','an opportunity cost','a scale of preference','choice','','','c','','wassce','2005',100,'Admin','2016-11-12 23:29:58','2020-08-13 13:06:20'),(513,'The 150.00 Naira which Olu would have used to purchase a textbook was used to buy a T-shirt. This implies that','Olu’s real cost is 150.00 Naira','Olu’s opportunity cost is the T-shirt','Olu’s opportunity cost is the textbook','Olu’s money cost is also the real cost.','','','c','','wassce','2005',84,'Admin','2016-11-12 23:29:58','2020-08-15 01:00:27'),(514,'The remuneration of the entrepreneur as a factor of production is called','wages','salary','interest','profit','','','d','','wassce','2005',90,'Admin','2016-11-12 23:29:58','2020-07-26 11:05:19'),(515,'The production factor, whose entire world supply is fixed is','land','skilled labour','capital goods','entrepreneurship','','','a','','wassce','2005',74,'Admin','2016-11-12 23:29:58','2020-07-14 14:35:56'),(516,'When all factor inputs are reduced by half, the production possibility curve will shift','outwards','inwards','downwards','upwards','','','b','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-08-13 12:58:38'),(517,'When a worker changes from one type of job to another, it is called','geographical mobility of labour','occupational mobility of labour','immobility of labour','rural-urban migration.','','','b','','wassce','2005',92,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:56'),(518,'Which of the following determines the sizes of a country’s population?    (l) Birth rate    (ll) Death rate     \\n\t(lll) Migration rate     (lV) lmportation rate    (V) Unemployment','l), (ll) and (V)','(ll) and (lV)','(I), (II) and (lll)','(I) and (V)','','','c','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:30'),(519,'Age distribution is important because it helps the \tgovernment to','check rural-urban drift','determine the number of foreigners','determine the number of factories','undertake effective planning','','','d','','wassce','2005',90,'Admin','2016-11-12 23:29:59','2020-07-16 12:39:39'),(520,'A group of firms producing similar commodities for the same market constitute','a cartel','an industry','a co-operative','wholesalers','','','b','','wassce','2005',88,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:00'),(521,'A factor that has slowed down the rate of industrial development in West Africa is','inadequate technology','increasing rate of manpower production','increased demand for local goods','intervention of the government in business activities.','','','a','','wassce','2005',73,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:56'),(522,'To achieve an equilibrium position, the consumer must buy so much of each commodity whose price is equal its','marginal utility','total utility','average utility','variable utility','','','a','','wassce','2005',97,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:51'),(523,'Price control refers to','the ways of making more goods available in the market','a policy of ensuring stable price in the market','a general reduction in the price level','effective working of the forces of demand and supply','','','b','','wassce','2005',75,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:03'),(524,'The desire for goods without the ability to pay is called','choice','effective demand','joint demand','wants','','','d','','wassce','2005',88,'Admin','2016-11-12 23:29:59','2020-08-09 21:12:42'),(525,'Amount of goods offered to the market at respective prices and presented in a table is called','price schedule','supply schedule','scale of preference','demand schedule','','','b','','wassce','2005',90,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:55'),(526,'At the equilibrium price, quantity demanded is','greater than quantity supplied','equal to quantity supplied','less than quantity supplied','equal to excess supply','','','b','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:29'),(527,'lf the government fixed a price of a commodity above the equilibrium price, the quantity supplied will be','less than quantity demanded','equal to the quantity demanded','greater than quantity demanded','equal to zero','','','c','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-29 15:50:46'),(528,'One of the factors determining price elasticity of demand for a commodity is the','availability of close substitutes','number of producers','government policy','price of other commodities.','','','a','','wassce','2005',96,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:50'),(529,'lf elasticity of demand for a commodity is less than one, demand is','unitary elastic','inelastic','infinitely elastic','zero elastic','','','b','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:10'),(530,'The transfer of ownership of a public enterprise to  individuals and firms is called','commercialization','nationalization','privatization','restructuring','','','c','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:11'),(531,'One-man businesses are popular in West Africa because of all the following except the','ease of entry','small capital required','limited entrepreneurial skill needed','tendency to become joint-stock companies.','','','d','','wassce','2005',100,'Admin','2016-11-12 23:29:59','2020-08-09 21:12:42'),(532,'Wholesalers are often criticized because they','help to break the bulk','finance producers','increase prices','provide after-scale services','','','c','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:13'),(533,'ln which of the following business units are the owners mostly the customers?','Co-operatives','Limited liability companies','Partnerships','Public corporations','','','a','','wassce','2005',95,'Admin','2016-11-12 23:29:59','2020-08-09 11:14:18'),(534,'information about new goods is passed on to buyers through','advertising','retail trade','the manufacturer','wholesale trade','','','a','','wassce','2005',92,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:49'),(535,'The profit of the producer can be calculated as','total cost less total revenue','average revenue less average cost','total revenue less total cost','marginal revenue less marginal cost','','','c','','wassce','2005',88,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:49'),(536,'The direct exchange of one good for another without the use of money is known as','foreign exchange','exchange rate','expenditure','barter','','','d','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:50'),(537,'Acceptability, durability, homogeneity and portability are all \tattributes of good','markets','money','banks','government','','','b','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-08-09 11:14:18'),(538,'The term demand for money means','desire to borrow money from people','desire of an individual to invest all his money in  projects','willingness of people to hold money','willingness of people to keep all their resources in  assets.','','','c','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-08-12 18:45:05'),(539,'A persistent and appreciable rise in the general level of prices is known as','depreciation','inflation','deflation','production','','','b','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:30'),(540,'To a commercial bank, deposits are','liabilities','assets','capital','cash at hand','','','d','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:50'),(541,'The lender of last resort in the banking system is the','industrial bank','mortgage bank','commercial bank','central bank','','','d','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:31'),(542,'Discounting a bill of exchange means the bill is','cashed over the counter','sold on the stock exchange','bought for less than its face value','sold to the highest bidder','','','c','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-08-15 08:59:21'),(543,'The central bank controls credit in the economy through the use of','legal tender','travelers cheque','foreign exchange instruments','open market operations','','','d','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:44'),(544,'Among the principles of taxation propounded by Adam Smith was that','a tax should be impossible to evade','a tax should be convenient to pay','no tax should be levied on food','there should be no taxation without representation','','','b','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:45'),(545,'Mr. Bala’s income is $800.00 per month while that of Mr. Jatau is $1,200.00. lf Messrs Bala and Jatau pay $80.00 and $120.00 respectively as taxes, the tax system is','progressive','regressive','proportional','ad-valorem','','','c','','wassce','2005',95,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:55'),(546,'Government revenue from the groundnut industry is from','licenses','rents','royalties','taxes','','','d','','wassce','2005',107,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:27'),(547,'The theory of comparative cost advantage is associated with','Alfred Marshal','Adam Smith','David Ricardo','J.B. Say','','','c','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-08-03 03:35:03'),(548,'When the value of a nation’s exports is greater than its imports','a favourable balance of trade exists','an unfavourable balance of payment exists','the net foreign trade is zero','inflation occurs','','','a','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:49'),(549,'To improve the balance of payments position of West African countries, there must be','removal of barriers to importation of goods and services','increased rate of exportation of goods and services','increased domestic consumption of foreign produced goods','the development of the local market.','','','b','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-08-09 21:12:42'),(550,'The Economic Community of West African State (ECOWAS) is an example of','bilateral trade','economic integration','regional marketing board','international competition','','','b','','wassce','2005',96,'Admin','2016-11-12 23:30:00','2020-08-13 12:58:38'),(551,'One reason for the low agricultural production in West African countries is that','agriculture employs the highest percentage of the labour force','too much money is invested in agriculture','farmers lack the finance and technology required','the farms are too large','','','c','','wassce','2005',98,'Admin','2016-11-12 23:30:00','2020-08-12 16:39:54'),(552,'Mono-product economies are those that','produce one main commodity','produce only raw materials','depend on the export of their raw materials','specialize in agricultural industries','','','a','','wassce','2005',91,'Admin','2016-11-12 23:30:00','2020-08-15 00:59:49'),(553,'.\\n\\n\tAn essential characteristics of a market economy is','government control','producer surplus','consumer surplus','consumer sovereignty','','','d','','wassce','2005',99,'Admin','2016-11-12 23:30:00','2020-08-15 00:59:55'),(554,'ln a capitalist system, goods are produced for those who','want them most but cannot pay for them','can pay for them but do not want them','want them and can also pay for them','are dependent on the labour force','','','c','','wassce','2005',74,'Admin','2016-11-12 23:30:00','2020-08-03 03:35:03'),(555,'An economy which exhibits features of both private and State enterprises is known as a','capitalist economy','mixed economy','communist economy','socialist economy','','','b','','wassce','2005',79,'Admin','2016-11-12 23:30:00','2020-08-15 01:00:29'),(556,'ln calculating the national income of a country x, the cost of both raw materials and the finished products \t\twere included. This is a case of','double counting','price fluctuations','price differentiation','price discrimination','','','a','','wassce','2005',95,'Admin','2016-11-12 23:30:00','2020-08-15 08:59:21'),(557,'Economic development is defined as','outward shift of the production possibility curve','availability of more goods and services','growth accompanied by qualitative change in living standards.','growth in the national income','','','c','','wassce','2005',86,'Admin','2016-11-12 23:30:00','2020-08-13 13:06:20'),(558,'Which of the following is not an objective of the \\n\tOrganization of Petroleum Exporting Countries (OPEC)?','Stabilization of oil prices','Co-ordinating oil prices','Harmonizing oil prices','Stagnation of developed economies.','','','d','','wassce','2005',129,'Admin','2016-11-12 23:30:00','2020-08-15 00:59:51'),(559,'The study of Economics enables individuals to','change jobs.','evade taxes.','accumulate huge wealth','make national decision','','','d','','wassce','2006',81,'Admin','2016-11-12 23:59:28','2020-07-14 14:36:59'),(560,'Most of the problems of economies arise as a result of','demands for scarce resource','increase in  the demand for more goods and services.','the desire of producers to supply more goods and services.','the need to reduce the level of poverty.','','','a','','wassce','2006',88,'Admin','2016-11-12 23:59:29','2020-08-15 00:59:49'),(561,'Which of the following tools of economic analysis is used when data contains more than one category?','Bars charts','Component bar charts','Graphs','Symbolical statement','','','b','','wassce','2006',85,'Admin','2016-11-12 23:59:29','2020-07-28 03:45:03'),(562,'The reward of capital as a factor of production is','rent','wage','interest','commission.','','','c','','wassce','2006',98,'Admin','2016-11-12 23:59:29','2020-08-12 16:39:54'),(563,'Mining is an example of','tertiary production','primary production','secondary production','advanced production','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:29','2020-07-15 09:09:54'),(564,'An owner-manager of a firm can also be called','shareholder','an entrepreneur','an employer','a chairman','','','b','','wassce','2006',97,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:09'),(565,'If the fixed cost of a firm is 800 Naira and its variable cost is \t2,700 Naira while its total output is 100 units, what is the average cost of the firm?','25 Naira','35 Naira','45 Naira','50 Naira','','','b','','wassce','2006',78,'Admin','2016-11-12 23:59:29','2020-08-15 01:00:29'),(566,'Distribution of good and services is hindered by','good road network','efficient storage facilities','too many middlemen.','Adequate market information.','','','c','','wassce','2006',69,'Admin','2016-11-12 23:59:29','2020-08-13 13:06:20'),(567,'A movement along the same demand curve either upwards \tor downwards as a result of changes in price implies','a change in demand','a change in quantity demanded.','an increase in demand','a shift in the demand curve to the right.','','','b','','wassce','2006',86,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:12'),(568,'Middlemen in an economy perform the function of','distribution','exchange','hoarding.','protection.','','','a','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:13'),(569,'One of the factors affecting geographical distribution of population is','high birth rate','high death rate','encouragement of early marriage in the rural areas','climatic conditions of  the different parts of the country','','','d','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-08-03 03:35:03'),(570,'Standardization of products or services is a feature of','large firms','retailers','small firms','wholesalers.','','','a','','wassce','2006',74,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:28'),(571,'The amount of satisfaction obtained from the consumption of a commodity at a particular time is called','marginal utility','diminishing utility','total utility','average utility','','','c','','wassce','2006',78,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:16'),(572,'What are inferior goods? These are goods','that are generally in short supply.','that are no longer in demand','whose demand falls as income increases','whose price falls as demand increases','','','c','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:54'),(573,'In the analysis of utility theory, the basis of demand is','marginal utility','average utility','fixed utility','diminishing utility','','','a','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:29'),(574,'In the normal market situation, when the price of a commodity rises, the','demand for the commodity will rise','demand for the commodity will fall','supply of the commodity will be constant','Supply of the commodity will fall.','','','b','','wassce','2006',90,'Admin','2016-11-12 23:59:30','2020-07-29 15:22:25'),(575,'When the quantity of a commodity supplied increases and the quantity demanded decreases there will be','a rise in price','no change in price','price fluctuation','a fall in price.','','','d','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:56'),(576,'The market price of a commodity is normally determined by the','law of demand','interaction of the forces of demand and supply.','total number of people in the market','total quantity of the commodity in the market.','','','b','','wassce','2006',75,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:27'),(577,'The mechanism which allows the price of a commodity to be fixed either above or below the equilibrium is known as','monopolistic competition','price discrimination','perfect competitive market','price control','','','d','','wassce','2006',79,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:22'),(578,'A debenture holder is entitled to payments in the form of','allowance','interest','salary','donation','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-08-12 16:33:05'),(579,'The main difference between a private and a public \\n\tenterprise is the','amount of profit realized','mode of operation','objective of the business','ownership structure','','','d','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:24'),(580,'The total amount of money raised by a company through insurance of shares to the public is','debentures','nominal capital','ordinary shares','paid-up capital','','','b','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:28'),(581,'Buying and selling of shares is a function performed mostly \tby the','insurance companies','stock exchange','merchant banks','discount houses','','','b','','wassce','2006',95,'Admin','2016-11-12 23:59:30','2020-08-09 21:12:42'),(582,'Which of the following is not reason for establishing public \tenterprises?','Discouraging investors','Opening up neglected parts of the country','Effective control of a natural monopoly','Rapid economic development','','','a','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-08-13 12:58:38'),(583,'For a monopolist, the average revenue (AR) curve is  above','the total cost curve','the same as the marginal cost curve','above the marginal revenue curve','the same at that of the perfect competitor.','','','c','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-07-21 11:05:36'),(584,'Advertising expenses would not be necessary under perfect competition because','consumers would have complete knowledge of goods','cost of production would be at the maximum level','.  \\n\tevery firm  would enjoy the benefits of large scale production','incomes of the consumers in the community would be high.','','','a','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:30'),(585,'The equilibrium level of output of a monopolist is determined at a point where','marginal cost equal average  revenue','marginal cost equals average cost','marginal cost equals marginal  revenue','marginal  revenue equals average cost','','','c','','wassce','2006',91,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:55'),(586,'.\\n\\nWhich of the following is a legal tender in West Africa?','Treasury bill','Share','Credit card','Currency','','','d','','wassce','2006',77,'Admin','2016-11-12 23:59:30','2020-08-07 10:17:17'),(587,'The policy of government to increase the supply of money to meet its own expenditure plans is likely to be','speculative','deflationary','inflationary','contractionary','','','c','','wassce','2006',105,'Admin','2016-11-12 23:59:30','2020-08-03 03:35:03'),(588,'The tendency for prices to rise while the value of money falls is known as','bills of exchange','inflation','depreciation','deflation.','','','b','','wassce','2006',102,'Admin','2016-11-12 23:59:30','2020-08-07 10:17:17'),(589,'One way to solve the economic problem of inflation in a country is by increasing the','supply of commodities','supply of currency','salaries of workers','demand for commodities.','','','a','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:33'),(590,'The motive for holding money for investing in securities is \treferred to as','transactionary','speculative','accumulation','deflationary','','','b','','wassce','2006',81,'Admin','2016-11-12 23:59:30','2020-08-12 16:39:54'),(591,'A cheque book is issued to customers of a bank operating a','savings account','time deposit account','current account','fixed deposit account','','','c','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:49'),(592,'Amount proposed for payments of wages and salaries in a budget is regarded as part of','recurrent expenditure','direct investment','recurrent revenue','capital receipt','','','a','','wassce','2006',77,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:54'),(593,'The difference between the Gross National Product (GNP) and the Gross Domestic Product(GDP) is','total interest payment','net income generated internally','total national savings','net income from abroad.','','','d','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-07-31 07:56:41'),(594,'Which of the following agricultural systems is mainly for the','cultivation of food crops for family consumption?','Co-operative farming','Commercial farming','Subsistence farming','','','c','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:51'),(595,'Agriculture is important to the economy of West African countries because it is the source of','power','equipment supply','industrial  input','technological progress','','','c','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:51'),(596,'The economic system in which the state takes the','economic decisions through details planning is','capitalism','socialism','traditional economic system','','','b','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:28'),(597,'A mixed economy combines the characteristics of both','planned  and capitalist economics','exchange subsistence economies','subsistence and planned economies','capitalist and exchange economics','','','a','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:54'),(598,'In a rapidly growing economy, a change in technology which is labour saving is likely to cause','residual unemployment','structure unemployment','disguised unemployment','frictional unemployment','','','d','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-08-09 11:14:18'),(599,'Which of the following is a form of tax evasion?','Wrong declaration of earnings','Payments of flat rate tax','constant employment','Low capacity utilization','','','a','','wassce','2006',71,'Admin','2016-11-12 23:59:31','2020-08-15 01:00:27'),(600,'Where the burden of a tax finally rest is called','tax object','tax rate','incidence of taxation','system of taxation.','','','c','','wassce','2006',78,'Admin','2016-11-12 23:59:31','2020-08-09 11:14:18'),(601,'An increase in the quantity of goods and services produced \tin a country which raises her national income is known as','economic development','economic growth','domestic investment','productivity.','','','b','','wassce','2006',80,'Admin','2016-11-12 23:59:31','2020-07-16 12:39:39'),(602,'The formula “index of export prices” / “Index of import prices”   x 100   is used to measure the','volume of trade between countries','direction of international trade','commodity terms of trade','volume of imports','','','a','','wassce','2006',103,'Admin','2016-11-12 23:59:31','2020-08-15 08:59:21'),(603,'Which of the following is an invisible item?','Banking services','Petroleum products','Processed rice','Processed milk','','','a','','wassce','2006',92,'Admin','2016-11-12 23:59:31','2020-08-15 01:00:28'),(604,'In an attempt to correct a deficit balance of payments, a country may decide to increase','domestic production','imports','domestic expenditure','tax on infant industries.','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:47'),(605,'Which of the following is an objective of economic integration?','Harmonization of cultural practices','Free movement of persons, goods and services','Payment of high tariffs','Dumping of goods in less developed countries','','','b','','wassce','2006',96,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:48'),(606,'One of the functions of the International Monetary Fund (IMF) is to','devalue the currency of member states','reduce drastically the size of deficit financing of member states','give financial assistance to member states that have temporary balance of payment difficulties','the rapid industrialization process in the less developed nations of the world','','','c','','wassce','2006',79,'Admin','2016-11-12 23:59:31','2020-08-15 01:00:30'),(607,'The full meaning of OPEC is','Oil and Petroleum Exporting Countries','Original Petroleum Exporting Companies','Organization of Petrol Exporting Countries','Organization of Petroleum Exporting Countries','','','d','','wassce','2006',74,'Admin','2016-11-12 23:59:31','2020-08-03 03:35:03'),(608,'The three principal economic units in any system are','trade, industry and banking','workers, consumers and shareholder','households, firms and government','companies, industry and plants','','','c','','wassce','2007',107,'Admin','2016-11-13 15:46:54','2020-07-21 11:31:45'),(609,'The satisfaction derived from the use of a commodity is its','demand','elasticity','wealth','utility','','','d','','wassce','2007',85,'Admin','2016-11-13 15:46:55','2020-07-26 11:05:19'),(610,'The reward which accrues to labour for participating in production is','interest','wage','bonus','profit','','','b','','wassce','2007',87,'Admin','2016-11-13 15:46:55','2020-08-09 21:12:42'),(611,'The Malthusian theory of population does not concern itself with','growth of food production in arithmetical progression','growth of population in geometric progression','positive checks to population growth','development and growth of manpower','','','d','','wassce','2007',86,'Admin','2016-11-13 15:46:55','2020-07-14 14:37:54'),(612,'One characteristic of labour is that it is','fixed in demand','fixed in supply','mobile','untrainable','','','c','','wassce','2007',81,'Admin','2016-11-13 15:46:56','2020-08-13 12:58:38'),(613,'A country where labour is not sufficient to make proper use of the natural resources is said to have an','active population','optimum population','over-population','under-population','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:56'),(614,'When population is classified according to professions, it is called','geographical distribution of population','age distribution of population','sex distribution of population','occupational distribution of population','','','d','','wassce','2007',91,'Admin','2016-11-13 15:46:56','2020-08-03 03:35:03'),(615,'What must be added to variable cost to give total cost?','Average total cost','Average variable cost','Fixed cost','Marginal cost','','','c','','wassce','2007',81,'Admin','2016-11-13 15:46:56','2020-08-15 00:59:55'),(616,'Revenue is the','total profit made after sales','amount spent on purchases','amount of goods produced','total money realized from sales.','','','d','','wassce','2007',93,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:26'),(617,'Given that TR is total revenue, then TRn - TR(n-1) can be used to find the','marginal revenue','marginal cost','average cost','average revenue','','','a','','wassce','2007',88,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:29'),(618,'The lower the price of a commodity, the greater the quantity demanded. This is based on the assumption that consumers’','income is diminished','income remains the same','utility is diminished','population is high','','','b','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:11'),(619,'The demand for beans in bags is given by the function Q - 36 + 0.4P = 0. Where P is price in Naira and Q is quantity, find Q when P = 20 Naira.','12 bags','24 bags','28 bags','30 bags','','','c','','wassce','2007',91,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:28'),(620,'If the price of good X rises and the quantity demanded of good Y increases then the two goods X and Y must be','inferior good','substitutes','complements','free goods','','','b','','wassce','2007',78,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:30'),(621,'Use the following  demand schedule to answer question Price (N=) [15, 13]\tQuantity Demanded[60, 70] The percentage change in quantity demanded is','12.7%','15.7%','16.7%','19.7%','','','c','','wassce','2007',79,'Admin','2016-11-13 15:46:56','2020-08-15 00:59:55'),(622,'In a situation where demand is perfectly elastic, imposition of a tax on a commodity to raise its price will result in','consumers increasing their demand for the product','consumers demand for the product remaining unchanged','consumers shifting completely to substitute products','suppliers increases the supply of the product','','','c','','wassce','2007',95,'Admin','2016-11-13 15:46:56','2020-08-15 00:59:55'),(623,'Patents are examples of','natural barriers to entry','legal barriers to entry','illegal barriers to entry','unnatural barriers to entry','','','b','','wassce','2007',71,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:29'),(624,'Which of the following is a characteristic of monopoly?','Many sellers','Homogeneous commodity.','A single seller','Perfect knowledge','','','c','','wassce','2007',93,'Admin','2016-11-13 15:46:56','2020-08-12 16:39:54'),(625,'When a firm is nationalized','former owners are removed without compensation','it has the right to draw on state funds for capital investment','it must break even within a specified period','workers take control of the firm','','','b','','wassce','2007',67,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:27'),(626,'The practice whereby a business is owned by two or more independent firms is termed','indigenization','joint venture','commercialization','foreign investment','','','b','','wassce','2007',85,'Admin','2016-11-13 15:46:56','2020-08-15 00:59:49'),(627,'The main objective of privatizing a government business is to','create additional employment','increase expenditure','source for new funds','increase the level of efficiency','','','d','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:20'),(628,'The return on investment that is just sufficient to satisfy the owner of a business is called','economic profit','business profit','normal profit','excess profit','','','c','','wassce','2007',81,'Admin','2016-11-13 15:46:56','2020-08-13 12:58:38'),(629,'Which of the following is a middlemen in the chain of distribution?','An entrepreneur','A producer','A banker','A retailer','','','d','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-08-13 12:58:38'),(630,'A negative effect of the presence of a large number of middlemen in the distributive network is','greater variety of goods','greater quality of goods','lower price of goods','higher price of goods','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(631,'An example of a producer good is a','tin of milk','hammer','loaf of bread','shirt','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(632,'To promote the development of the agricultural sector, governments of West African countries should','encourage rural-urban drift','discourage foreign investment in agriculture','support the marketing of farm produce','reduces tariff on food import','','','c','','wassce','2007',88,'Admin','2016-11-13 15:46:56','2020-07-29 15:50:46'),(633,'The most important quality of money is that it must be','relatively scarce','generally acceptable','portable','durable','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:25'),(634,'A certain amount of money is needed for everyday expenditure like buying of goods, transportation and others. This is','transaction demand for money','precautionary demand for money','derived demand for money','speculative demand for money','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:27'),(635,'Long-term loans can be secured from','commercial banks','discount houses','development banks','acceptance houses','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:29'),(636,'The value of money is generally measured in relation to the','interest rate charged on bank loan','general price level','size of a country’s gold stock','volume of imports','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:30'),(637,'Which of the following is true under rapid inflation? People','demand less foreign exchange','set up businesses','to pay their taxes','hardly want to lend money','','','d','','wassce','2007',81,'Admin','2016-11-13 15:46:57','2020-08-15 01:00:28'),(638,'Which of the following financial institutions was originally known as a Building Society?','Development bank','Insurance company','Mortgage bank','Merchant bank','','','c','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-08-15 01:00:28'),(639,'A non-bank financial intermediary which is regarded as a pool of risks is the','cooperative society','stock exchange','insurance company','post office','','','c','','wassce','2007',81,'Admin','2016-11-13 15:46:57','2020-08-15 01:00:27'),(640,'A foreign exchange market deals in','treasury bills','currencies','government bonds','commodities','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:57','2020-08-15 01:00:28'),(641,'Which of the following institutions assists the government in managing the national debt?','Commercial Banks','The Central Bank','The Capital Market','The World Bank','','','b','','wassce','2007',91,'Admin','2016-11-13 15:46:57','2020-08-03 03:35:03'),(642,'If tax takes a larger proportion of the income of people with \tlower income, the tax is','progressive','proportional','regressive','ad-valorem','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:36'),(643,'Which of Ike following is an example of direct tax?','Import duties','Income tax','Export duties','Purchase tax','','','b','','wassce','2007',64,'Admin','2016-11-13 15:46:57','2020-08-13 12:58:38'),(644,'Monetary control measures are coordinated by','development banks','merchant banks','commercial banks','the Central banks','','','d','','wassce','2007',117,'Admin','2016-11-13 15:46:57','2020-08-07 10:17:17'),(645,'A country whose economy is buoyant is likely to have','a weak currency','devaluation from time to time','a strong currency','balance of payment problem','','','c','','wassce','2007',64,'Admin','2016-11-13 15:46:57','2020-08-09 21:12:42'),(646,'The Net National Product (NNP) is Gross National Product (GNP) less','domestic product','foreign product','depreciation','investment','','','c','','wassce','2007',74,'Admin','2016-11-13 15:46:57','2020-08-15 00:59:51'),(647,'If the population of a country is low and the Gross National Product is high, the per capita income will be','high','low','average','unitary','','','a','','wassce','2007',96,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:44'),(648,'The population of a country in a certain year was fifty million and the per capita income was $2050. What was the national income?','$ 750,000 million','$100,250 million','$ 102,500 million','125,050 million','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-07-28 03:45:03'),(649,'One of the advantages of capitalism is that','consumers are exploited','private initiative is discouraged','efficient allocation of resources is assured','job security is assured','','','c','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-08-12 18:45:05'),(650,'Which of the following contributes the highest amount of foreign exchange to the economy of West African nations?','Construction, manufacturing and banking','Shipping, trading and fishing','Power, telecommunications and sports','Extraction, farming and tourism','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:57','2020-07-29 15:50:46'),(651,'International trade depends on the concept of','marginal cost advantage','comparative cost disadvantage','Comparative cost advantage','absolute cost','','','c','','wassce','2007',86,'Admin','2016-11-13 15:46:57','2020-07-14 02:26:11'),(652,'One advantage of international trade is that','countries depend on each other','it introduces variation in prices','it increases demand for foreign goods','it makes variety of goods available','','','d','','wassce','2007',85,'Admin','2016-11-13 15:46:57','2020-08-15 00:59:54'),(653,'The practice of selling goods overseas and often below the cost of production is known as','retailing','dumping','internal trade','advertising','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:57','2020-07-14 02:23:51'),(654,'A summary of all the receipts and payments of a country in \tinternational transactions is called','terms of trade','balance of payment','balance of payment adjustment','capital account','','','b','','wassce','2007',79,'Admin','2016-11-13 15:46:57','2020-07-29 15:50:46'),(655,'4Which of the following countries export cocoa?','Liberia and The Gambia','Ghana and Sierra Leone','Nigeria and Ghana','Sierra Leone and Nigeria','','','c','','wassce','2007',79,'Admin','2016-11-13 15:46:57','2020-07-31 07:56:41'),(656,'Which of the following are examples of transfer payments?','Gifts and donations','Rents and rates','Profits and dividends','Internal and external debts','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 02:25:01'),(657,'ECA means','Economic Commission for Africa','Economic Community of Africa','Exporting Countries of Africa','Economic Conference on Africa','','','a','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-08-13 12:58:38');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `english` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=597 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `english` VALUES (1,' He put…………..  eggs in a basket.','white dozen eggs ','a dozen white eggs  ',' a white dozen eggs ','dozen white','most appropriate option','','b','','utme','2003',3814,'Admin','0000-00-00 00:00:00','2020-08-12 10:39:46'),(2,'The reason why he was not offered admission was …………… his results could not be found.','that   ','when  ','owing to ','because ','most appropriate option','','a','','utme','2003',3647,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(3,'Course………….  writers are to reflect local colour',' material\\'s ','materials\\'','materials ','material ','most appropriate option','','b','','utme','2003',3843,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:30'),(4,'If you saw the photograph of the man……………………you be able to identify him?','could','would   ','can ','will ','most appropriate option','','b','','utme','2003',3873,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:47'),(5,'As Obande does not know anyone in this city, he hopes that some kind …………  will put him up for the night','man','men ','inhabitants ','individuals','most appropriate option','','a','','utme','2003',3774,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(6,' The doctor asked the patient what………….','The problem is   ',' Is your problem ','The problem was. ',' Is the problem','most appropriate option','','c','','utme','2003',3698,'Admin','0000-00-00 00:00:00','2020-08-13 13:19:08'),(7,'The woman is one? of the …………. of the society.','elitist  ',' elites ','ellte','elitists ','most appropriate option','','c','','utme','2003',3775,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:30'),(8,'Three quarters of the people in the village  killed but only half of then \\n          huts……. affected  \\n','were/ were ','was/was','were/ was','was/were ','most appropriate option','','c','','utme','2003',3746,'Admin','0000-00-00 00:00:00','2020-08-13 10:34:07'),(9,'The armed robbers went into the house and robbed the three','woman occupants','women\\'s occupants ','woman\\'s occupants','   women occupants.','most appropriate option','','a','','utme','2003',3896,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(10,' It was a free-for-all and the students were blamed for taking the law','in their own hands ','into their own hands ','into their hands ','in their hands.','most appropriate option','','b','','utme','2003',3764,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(11,'The candidate\\'s charisma should be a..………factor in winning the election. ','determinant ','determinate','determining ','determinable ','most appropriate option','','c','','utme','2003',3794,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(12,'I can\\'t stand people prying into my private life. \\'Ladi said \\'………… agree Agbenu','Me too ','Likewise myself ','Me neither ','I also ','most appropriate option','','b','','utme','2003',3747,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(13,' Four weeks ..................  enough for the police to  conclude   their','were',' is ',' are ',' has been','most appropriate option','','b','','utme','2003',3713,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:20'),(14,'  It is bad to take………… property without permission. ','someone else\\'s ','someone’s else',' someone\\'s ','someone\\'s else\\'s\\' ','most appropriate option','','b','','utme','2003',3664,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(15,'Classmate……………………….  I haven\\'t seen for years, wrote to me last week.','whose ','which ','that',' whom','most appropriate option','','d','','utme','2003',3753,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(16,'If you would do me this favour,  I …………..  be very grateful','should',' would ',' shall ','will','most appropriate option','','b','','utme','2003',3724,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(17,'Ali plays ……….violin with remarkable skill','a    ','the','their ','some ','most appropriate option','','b','','utme','2003',3760,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(18,'1 have the ……… of meeting the President.','privilege  ','privelege ','previlege ','privilege ','most appropriate option','','d','','utme','2003',3721,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:32'),(19,'The sergeant spoke to me in a ……………  manner','Coarse','causal     ','coerce    ','course ','most appropriate option','','a','','utme','2003',3762,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:30'),(20,'Idakwo ran……………. miss the train','lest he may',' lest ha should','lest he almost   ','lest he will ','most appropriate option','','b','','utme','2003',3849,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(21,'How is the new editor ……………on with hit work','moving','getting','pushing ','going','most appropriate option','','b','','utme','2003',3693,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(22,'  Be careful not to…………….  this money ','loose  ',' loss ',' lost',' loss','most appropriate option','','b','','utme','2003',3757,'Admin','0000-00-00 00:00:00','2020-08-16 10:11:35'),(23,'Nowadays, many graduates are not Will disposed to teaching……………..','are they','aren\\'t they?','do they?    ',' they are?','most appropriate option','','a','','utme','2003',3612,'Admin','0000-00-00 00:00:00','2020-08-13 10:41:38'),(24,'Adike ………….. a message from the club regularly.','Receive ',' had received ',' receive',' has received ','most appropriate option','','a','','utme','2003',3726,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:26'),(25,'It is often……. that inflation ……….  from too much money chasing very few goods.    ','said/results','say/result      ','said/result   ','say/ resulted','most appropriate option','','a','','utme','2003',3711,'Admin','0000-00-00 00:00:00','2020-08-11 15:43:48'),(26,'','spot    ','Law   ','North ','naught ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3714,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(27,'','cost    ','won’t    ','hope    ','coast ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3837,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:57'),(28,'','there   ','dear    ','fair         ','bear','choose the option that has a different vowel sound from the others.','','c','','utme','2003',3826,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:07'),(29,'','wife','of','off','laugh','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3816,'Admin','0000-00-00 00:00:00','2020-08-13 10:41:38'),(30,'','chef','chief','shoe','ocean','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3839,'Admin','0000-00-00 00:00:00','2020-08-11 15:46:15'),(31,'If he went to London, he would see the Queen','He did not go to London and did not see the Queen',' He would like to see the Queen when he goes to London','When he goes to London, he will see the Queen ','He did not see the queen when he went to London.','that best explains the information conveyed ','','c','','utme','2003',3682,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:28'),(32,'Ngozi has always considered her father to be an impassioned man ','Her father is a very strict man  ','Her father is a very lively man ','Her father is an emotional man ','Her father is a disciplined man ','that best explains the information conveyed ','','c','','utme','2003',3775,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:28'),(33,'The manager paid us in hard currency  ','We were paid in a strong and stable currency ','We were paid in new notes ','We were paid in new notes','We were paid in foreign currency.','that best explains the information conveyed ','','a','','utme','2003',3779,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(34,'The elders rebuked ','Olu for talking issue with his principal. ','Olu was scolded for acting in collusion with his principal ','Olu was reprimanded for arguing with his principal','Olu was blamed for issuing a statement denying his principal.','that best explains the information conveyed ','','b','','utme','2003',3931,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(35,'In spite of his humble beginning, Audu now throws his weight around ','His noble birth notwithstanding, Audu is a corrupt man ','From his poor background, Audu is now a rich man ','Despite his obvious poverty, Audu is a proud man ','Audu is arrogant despite his simple upbringing .','that best explains the information conveyed ','','d','','utme','2003',3728,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(36,' <u>Ch</u>alet','chairman','College','champagne','Chemical','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.  ','','c','','utme','2003',3758,'Admin','0000-00-00 00:00:00','2020-08-13 13:19:08'),(37,'Tee<u>th</u>','taught','tank','though','thought',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2003',3789,'Admin','0000-00-00 00:00:00','2020-08-13 13:18:27'),(38,'Co<u>n</u>crete ','anxious ','concern ',' consider ','attend ',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3764,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(39,'He is well known for his <i>inordinate</i> ambition ','passionate ','sound ','excessive','moderate ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3750,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(40,'A <i>conservative</i> estimate put the number of missing persons at forty.','an accurate ','An incorrect ','A rough ','Primitive ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3826,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:39'),(41,'Agbenu was <i>ecstatic</i> about her result ','sad','dispassionate ','mad ','pessimistic ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3782,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(42,'Students could be <i>timid</i>','Pugnacious ','friendly ','bold ','covetous','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3857,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(43,'The labour leader’s <i>recalcitrant</i> stance was applauded ','flexible ','uncompromising ','well-informed ','stubborn ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3826,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(44,'The company has continued to <i>monopolize</i> the distribution of the products.','regularize ','liberalize ','centralize ','specialize ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3752,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(45,'The doctor examined the patient <i>painstakingly</i> ','Carefully ','Perfunctorily ','Professionally ','Painfully ','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3709,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(46,'Toyin is married to an <i>impatient, self-centred man ','a tolerant ','a tolerable','a fretful ','an edgy','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3782,'Admin','0000-00-00 00:00:00','2020-08-12 12:11:27'),(47,'The agency has sworn to deal  with all the <i>apostles</i>  of confederation ','opponents ','apostates ','Proponents ','Protagonists ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3728,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(48,'The members of the congregation were <i>inspired</i> by the sermon ','enthralled ','disenchanted ','disoriented ','bewitched ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3798,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:47'),(49,'<i>Gregarious</i> animals can be found in the zoo.','lonely ','tame ','wild ','various ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3887,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(50,'I am <i>loath</i> to do the assignment ','unwilling ','waiting ','dying ','willing ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3781,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(51,'Only those who are <i>gullible</i> fall victim to his trickery ','astute ','Courteous ','saucy ','devastated','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3824,'Admin','0000-00-00 00:00:00','2020-08-13 13:18:27'),(52,'A cool bath in a hot weather can be truly <i>invigorating</i> ','debilitating ','devastating ','disgusting ','unpalatable','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3708,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(53,'The witness decided to <i>conceal</i> the evidence ','waive ','divulge ','hide','destroy ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3729,'Admin','0000-00-00 00:00:00','2020-08-13 10:41:38'),(54,'The President SPOKE to the press ','Did the Present write to the press?','Did the president speak to the press?','Who spoke to the press?','Are these the pressmen that the President spoke to?','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','a','','utme','2003',3670,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(55,'My MOTHER served rice and fresh fish stew for dinner.','Did your mother serve rice and fresh fish stew for lunch?','Who served rice and fresh fish stew for dinner?','What kind of meal did your mother serve for dinner?','what kind of meal did your mother serve for dinner? ','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','b','','utme','2003',3816,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(56,'Mark<u>e</u>t  ','mortgage ',' bachelor ',' get ',' enter ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3699,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(57,'c<u>olo</u>nel ',' golden',' girl',' colony ',' goal ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3812,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(58,'t<u>e</u>nd ','caned ',' jeopardy ','turned ',' earned ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3791,'Admin','0000-00-00 00:00:00','2020-08-11 11:50:58'),(59,'The boys knew that a storm was <i>imminent</i>','Impending ','encroaching ','possible ','threatening ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3738,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:17'),(60,'The leader has the <i>unstinting</i> support of his party ','cautious ','uninspiring ','unsparing ','laudable ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3705,'Admin','0000-00-00 00:00:00','2020-08-13 10:33:11'),(61,'The <i>essence</i> of governance is to seek the good and well-being of the majority of the people ','characteristics ','importance ','Secret ','Goal','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3665,'Admin','0000-00-00 00:00:00','2020-08-13 13:18:40'),(62,'The carpenter built a <i>commodious</i> wardrobe ','wide ','gigantic ','small ','spacious','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3707,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(63,'The company is to <i>shed</i> three thousand staff this year ','Throw up ','placate ','lay off','demote ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3824,'Admin','0000-00-00 00:00:00','2020-08-13 13:18:27'),(64,'A few years ago, nobody would have believed that the economy would <i>turn around </i>','change ','deteriorate ','improve ','stagnate ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3784,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:28'),(65,'The man’s story sounded <i>plausible</i> to his audience ','credible ','entertaining ','fantastic ','credulous ','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3888,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(66,'Before announcing his retirement, Ochima resolved to <i>settle an account with</i> the bank.','get  back at ','pay back all he owes ','close his account with ','retire his loans from ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3764,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(67,'He shared his room with a person whose behaviour was quite <i>nauseating</i> ','disgusting ','disrespectful ','disagraceful ','discouraging ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3816,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(68,'From what she said, one may <i>infer</i> that she does not like the course','agree ','deduce ','suppose ','realize ','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3790,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(69,'The party supporters <i>vilified</i> the Chairman for the role he played in the crisis that rocked the party ','impeached ','condemned ','challenged ','elected','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3685,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:26'),(70,'Publishing as a business venture has become a <i>hot potato</i> in Nigeria. ','unacceptable  ','unpleasant ','expensive                                                              ','profitable','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3698,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(71,'The <i>cynics</i>  feared that the nation’s nascent democracy would fail','illusionists','pessimists','delinquents','critics','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3693,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(72,'The nurse was in favour of <i>voluntary eutheanasia</i>','a sleeping pill','a major operation','a painless death','a simple operation','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3777,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:47'),(73,'There was a <i>glut</i> of oil on the market','an abundance of','an increase in','a variety of','an accumulation of','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3748,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:58'),(74,'Typist','refuse  (noun)','superb','propose','rebel (verb)','choose the option that has the same stress pattern as the given word.','','a','','utme','2003',3728,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:11'),(75,'Cement','perfect (adjective)','include','interest','employ(noun)','choose the option that has the same stress pattern as the given word.','','b','','utme','2003',3675,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(76,'I shall find time for my ……… when I get …… with this difficult assignment.','Pat time /over','pass-time/over','pastime/through','pastime/through','choose the option that best completes the gap(s).','','d','','utme','2004',3720,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(77,'Agbo says he is not afraid of ………','anybody','nothing','nobody','no one','choose the option that best completes the gap(s).','','a','','utme','2004',3638,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(78,'It is …….. responsibility to look after their parents in old age.','theirs’','their','theirs','their’s','choose the option that best completes the gap(s).','','b','','utme','2004',3873,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(79,'One needs to exemplify or ………. the aspect of the subject being discussed','supply','declare','satisfy','demonstrate','choose the option that best completes the gap(s).','','d','','utme','2004',3901,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(80,'……………his illness, Muhammad could not come to school.','with reference to','referring to','owing to','due to .','choose the option that best completes the gap(s).','','d','','utme','2004',3859,'Admin','0000-00-00 00:00:00','2020-08-13 13:19:08'),(81,'After so many trials, the experiment………….','paid up','paid for','paid out','paid off','choose the option that best completes the gap(s).','','d','','utme','2004',3837,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(82,'People dislike Mariam because she is ……………','trickful',' trickish','trickly','tricker','choose the option that best completes the gap(s).','','c','','utme','2004',3805,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:47'),(83,'The reporter said that the Honourable speaker………….. impeached ','is to be','might have been','may have being','will have been','choose the option that best completes the gap(s).','','b','','utme','2004',3773,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(84,'Actually, he forgot the one to …………… the job was given.','whom','who','whomever','whoever','choose the option that best completes the gap(s).','','a','','utme','2004',3688,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(85,'You may not have heard the last word on the matter……..','may you have','haven’t you','have you','mayn’t have you?','choose the option that best completes the gap(s).','','c','','utme','2004',3706,'Admin','0000-00-00 00:00:00','2020-08-13 13:18:27'),(86,'All God’s prophets were given the great……….to preach salvation to people.','commission','commition','commission','commission','choose the option that best completes the gap(s).','','d','','utme','2004',3867,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(87,'Ali goes to the stadium regularly, but he …………… to the church for months.','hasn’t been','haven’t been','didn’t go','hadn’t been','choose the option that best completes the gap(s).','','a','','utme','2004',3832,'Admin','0000-00-00 00:00:00','2020-08-12 19:58:13'),(88,'Each of the houses…………',' have got',' Have','has','were given a new look.','choose the option that best completes the gap(s).','','c','','utme','2004',3820,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:30'),(89,'The minister addressed the workers to boost their…………',' Morale','morality',' mural',' moral','choose the option that best completes the gap(s).','','a','','utme','2004',3630,'Admin','0000-00-00 00:00:00','2020-08-13 10:41:38'),(90,'I don’t coming home, is he?......... he is isn’t.','Yes','No','won','now','choose the option that best completes the gap(s).','','b','','utme','2004',3789,'Admin','0000-00-00 00:00:00','2020-08-13 10:34:07'),(91,'………..as a federal capital only……….. the last twenty years.','has existed/for','existed/over','was existing/from','is existing/in','choose the option that best completes the gap(s).','','a','','utme','2004',3717,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(92,'No teacher of honour would subject his student to any form of ……..','harassment','Harassment','harassment','harassment','choose the option that best completes the gap(s).','','b','','utme','2004',3723,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(93,'Each producer  is able to place a price on his product by considering its…………','worth','choice','judgement','assessment','choose the option that best completes the gap(s).','','a','','utme','2004',3764,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(94,'The police claim that a number of stolen cars…………. recovered.','has being','is being','has been','have been','choose the option that best completes the gap(s).','','c','','utme','2004',3761,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(95,'The storm………….. Havoc on several buildings in the village.','wreaked','wrecked','made','did','choose the option that best completes the gap(s).','','a','','utme','2004',3720,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(96,'The chairman refused to shake…………. with the secretary','hand','his hand','hands','his hands','choose the option that best completes the gap(s).','','c','','utme','2004',3766,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(97,'The poor widow who could not buy the clothes was seen…….her wool into……….yesterday','to spin/yards','spinning/yarn','making/tailoring','to spill/clothes','choose the option that best completes the gap(s).','','b','','utme','2004',3720,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(98,'He not only looked after the children when their parents died, ………..sponsored their education to university.','but also','also he','but he','also','choose the option that best completes the gap(s).','','a','','utme','2004',3802,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:19'),(99,'His supporters railed round him in moments of …………..','criticism','Crisis','acrimony','disillusionment.','choose the option that best completes the gap(s).','','b','','utme','2004',3827,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(100,'The interpreter was wrong because he gave the congregation a ………… translation of the pastor’s statement.','literal','unilateral','literary','lateral','choose the option that best completes the gap(s).','','a','','utme','2004',3724,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(101,'Ju<u>dge</u>','gear','spinach','pleasure','camouflage','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','d','','utme','2004',3789,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(102,'caus<u>ed</u>','chanced','frost','released','realized','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','b','','utme','2004',3739,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:30'),(103,'mis<u>chi</u>ef ','Christmas','ritual','Brochure','Champagne','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','a','','utme','2004',3612,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(104,'Everyone was ready to play the evil’s advocate in the impeachment controversy.','everyone was willing to speak against the impeachment to encourage discussion on it.','everyone was willing to defend an unpopular point of view concerning the impeachment.','everyone was willing to fight for the defenceless citizens no matter the consequences.','everyone was willing to be an evil genius in the controversy','that best explains the information conveyed in the sentence.','','a','','utme','2004',3645,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:28'),(105,'Adamu’s father is a key figure in that ministry','The ministry trusts Adamu’s father as a central figure','Adamu’s father is a figurehead in the ministry','Adamu’s father’s position is essential in the ministry.','Adamu’s father keeps the key to the ministry.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3828,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(106,'The government warns that drink-driving is punishable under the law.','a drunkard driving can be punished','driving while drunk is an offence','driving while drinking is an offence','drinking and driving is an offence.','that best explains the information conveyed in the sentence.','','a','','utme','2004',3691,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:32'),(107,'In many countries, democracy is ostensibly being practiced.','democracy is indeed being practiced  in many countries','many countries have effective democracy.','many countries have democracy in practice','democracy is apparently practice in many countries.','that best explains the information conveyed in the sentence.','','d','','utme','2004',3862,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(108,'The investigators stated clearly that they had reached a dead end in their scrutiny of suspects in the murder case.','the investigators did not know what to do with the suspect’s murder','The investigators had evidence to sentence the suspects to death in the end.','there was no further progress in the investigation of the murder suspects.','the end had come for the suspects in the murder case.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3718,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(109,'',' Secondment','Orthopaedic',' oriental','photographic','choose the option that has a different stress pattern from the others.','','a','','utme','2004',3734,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(110,'','ratify',' famous',' result',' taxi','choose the option that has a different stress pattern from the others.','','c','','utme','2004',3756,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(111,'Sailors are unusually <i>dauntless</i> in their exploits','selfless','ruthless','excited','frightened','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3712,'Admin','0000-00-00 00:00:00','2020-08-13 13:18:27'),(112,'The <i>potency</i> of the drug has been acknowledged.','action','loss','inefficacy','power','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3608,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(113,'The dictator wanted <i>tractable</i> men in his cabinet.','reliable','intelligent ','tough','unruly','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3740,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(114,'After the war, the victors became increasingly <i>vindictive</i>','friendly','vociferous','arrogant','treacherous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3896,'Admin','0000-00-00 00:00:00','2020-08-13 07:11:45'),(115,'The ship was <i>imperiled</i> by high winds','piloted','destroyed','deceived','saved','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3781,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(116,'Beauty queens sometime wear <i>outlandish</i>  dresses.','beautiful','flashy','familiar','attractive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3714,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(117,'The journalist said he was working <i>freelance</i>','tirelessly','satisfactorily','without a pay','dependently','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3750,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(118,'My father’s presentation was rather <i>causal</i>','formal','vital','informal ','divisive','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3727,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(119,'The flying Eagles put up a <i>plucky</i> defence against their opponents.','strong','weak','careless','tactful','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3762,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(120,'The man who scare the girl was a bit <i>deranged</i>','sane ','amorous','crazy','dangerous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3692,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(121,'The injured man is determined to <i>get back</i> at his assailant.','attack','identify','visit','forgive','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3832,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(122,'The player <i>writhed in pain</i> after the fall.','remained still','cried out','walked out','shook violently','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3840,'Admin','0000-00-00 00:00:00','2020-08-16 10:11:35'),(123,'The noise of the fan <i>unnerved</i>  the star player.','refreshed','confused','helped','calmed','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3795,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(124,'The team got <i>an ecstatic</i> welcome from the crowd.','An unexpected','a joyous','a cold','a thunderous','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3737,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(125,'We found a <i>shady</i> place for the display.','an open','an unsafe','a stuffy','an enclosed','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3682,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:26'),(126,'expostulate','exposTUlate','expostuLATE','EXpostulate','exPOStulate','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2004',3657,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(127,'sufficiency','sufFIciency','SUFficiency','sufficienCY','suffiCIENcy','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2004',3809,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(128,'The town was in such a <i>turmoil</i> that the dance was called off.','mourning state','rainy state','state of darkness','state of confusion','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3779,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(129,'The festivals create in the people a feeling of price in the cultural <i>heritage</i>  ','history','heirloom','legacy','possession','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3693,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(130,'<i>Funnily enough,</i> the priest prayed for the robber who shot him.','Timidly','Unexpectedly','Disappointingly','Fearlessly.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3609,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(131,'The presence of the captain makes the sailors <i>ill at ease</i>.','uncomfortable ','sickly ','impatient','easily ill','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3705,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(132,'The press describe the efforts of the government in <i>pejorative</i> terms.','critical','contemptible','palpable','superlative','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3690,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(133,'Okonkwo manages his household <i>with a heavy hand.</i>','like a powerful dictator','using the cane on every occasion','without tolerating weakness','like a heavy weight champion.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3838,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(134,'The school’s badge is the <i>insignia</i> of office for all the prefects in the school.','Power','symbol','seal','recognition','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3721,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(135,'Ibro shows enough <i>liberality</i>  with his meager income.','generosity','frugality','prodigality','insensitivity','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3719,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(136,'It is a <i>misnomer</i> to call three thousand naira a living wage.','an incontrovertible assertion','an appropriate term','a wrong description','a mishmash','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3788,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(137,'His plans <i>boomeranged</i> on him','bounce','fell','catapulted','backfired','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3746,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(138,'The manager’s knowledge of the strike is of <i>the utmost</i>  importance.','standard','genuine','paramount','basic','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3696,'Admin','0000-00-00 00:00:00','2020-08-13 20:25:19'),(139,'There has been a <i>downturn</i> in the affairs of the company.','a massive increase','little progress','a turn-around','a decline','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3701,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(140,'The <i>mottled</i> skin of a person with HIV indicates an advance stage  of its development.','Brown ','spotted','scaly','pimply','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3789,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:11'),(141,'In spite of constant financial support from his father, Udenyi treats his studies with considerable <i>levity</i>.','seriousness','enthusiasm ','wastefulness','lassitude','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3833,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(142,'The prosecutor was fully able to <i>substantiate</i> the charge.','expatiate on','prove','dismiss','weaken','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3794,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:39'),(143,'The teacher wants MY pen.','Does the teacher want his pen?','What does the teacher want?','Does the teacher want your ruler?','Who wants my pen?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','a','','utme','2004',3787,'Admin','0000-00-00 00:00:00','2020-08-13 10:34:07'),(144,'The student BOUGHT the book.','Who bought the book?','Did the student steal the book?','What did the student buy?','How will the student get the book?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','b','','utme','2004',3797,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(145,'n<u>i</u>ne','pint','gill','pin','click','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2004',3730,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(146,'b<u>ea</u>r','beer','steer','rare','fear','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','d','','utme','2004',3749,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(147,'',' Circulation','eleven',' impossible','criticism','choose the option that has the stress on the first syllable.','','d','','utme','2004',3817,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(148,'','bachelor','condemn',' afternoon','intact ','choose the option that has the stress on the first syllable.','','a','','utme','2004',3852,'Admin','0000-00-00 00:00:00','2020-08-13 20:25:40'),(149,'',' foul','tout','owl','foe','choose the option that has a different vowel sound from the others.','','d','','utme','2004',3822,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(150,'','alter',' water',' pot','hall','choose the option that has a different vowel sound from the others.','','c','','utme','2004',3699,'Admin','0000-00-00 00:00:00','2020-08-14 16:59:03'),(151,'If the rain hadn’t fallen, we wouldn’t have missed the match.','The rain is falling, so we will miss the match.','The rain fell, so we didn’t watch the match','The rain fell, so we watched the match','The rain didn’t fall, so we didn’t watch the match.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3870,'Admin','0000-00-00 00:00:00','2020-08-11 17:00:30'),(152,'The class was tired of the new boy jawing away all the time.','He bit off people’s jaws','He was always chewing in the class.','He was always making trouble for the class','He talked continuously in the class','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3791,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(153,'The new Headmaster hoped that his men would pull together','He expected that the men would cooperate with him','He thought that the men would compose themselves at work','He was certain that they would resign en masse','He was certain that their condition would improve under him.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3831,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(154,'If the trader paid in full, his order was not pruned down.','The trader who made full payment did not have his order reduced','The trader who made some payment did not have his order delayed.','Unless the trader paid in full his order would be rejected.','As the trader did not increase his order, he did not need to pay in full','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3789,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:56'),(155,'The men were not pawns in someone else’s political game.','The action they executed was their idea','The men used someone else’s plain','They were used by someone’s political game','They love playing political games','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3860,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(156,'The crisis ended as suddenly as it began','The crisis ha suddenly as it began','The crisis will not end suddenly','The crisis stopped almost immediately','The crisis will stop immediately.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3805,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(157,'One thing I will not be complaining about in my new job is a lack of excitement','The job is bad  ','The job is exiting','The job is not too exciting','The job has been previously done','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3784,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:43'),(158,'The Governor parried all the questions put to him by the journalist.','The Governor answered all the questions brilliantly','The Governor evaded all the questions','The Governor failed all the questions','The Governor mastered all the questions','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3832,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:05'),(159,'if I visited England, I might go to Manchester City ','When I go to England, I could go to Manchester City','Whenever I visit England, I must go to Manchester City','I did not go to England and could not go to Manchester City','I could not visit Manchester City because I did not want to go to England.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3878,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:47'),(160,'The man puts his foot down whenever he is convince of his action','He desires to assert his will in the situation','He makes his mark wherever he goes','His attitude demonstrates someone who likes  to oppress others around him','He demonstrates firmness of character','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3745,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(161,'The teacher recounted two events that were <i>analogous</i>  with  each other','similar with','Advantageous to','distant from','different from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3893,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(162,'The Principal was filled with <i>scorn</i>  when we gave  our reason for coming late','contempt','sympathy ','anger','pity','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3890,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:53'),(163,'After fifty years, he could not find anyone who was <i>contemporary</i> with him at college','strange to','friendly with','belonged to','contented against','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3792,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(164,'Idris gives me a <i>sour</i> look every time I pass by him','bad','satisfactory','friendly','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3821,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(165,'The officer was given an <i>invidious</i> task','vivid','cruel','pleasant','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3870,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:06'),(166,'The views of the plateau are in stark contrast to the <i>workaday</i> cottages below','ordinary an uninteresting','beautiful an interesting','comfortable an fascinating','ugly an unfascinating','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3783,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:25'),(167,'The President can afford to dispense with some of his <i>henchmen</i>','detractors','body guards','sycophants','advisers','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3878,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:10'),(168,'Asabe bought a <i>glossy</i>  pair of shoes ','smooth and shiny','rough an dull','smooth and shining','rough an gummy','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3967,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:26'),(169,'Manu is hard to convince because he is an <i>opinionated</i>  person','an objective','an imperative','a subjective','a discursive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3843,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(170,'Some people consider the leather uphoistery and thick rugs a bit <i>sumptuous</i>  ','expensive','desirable','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3745,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(171,'The dramatist provided as satisfactory <i>denouement</i>  to the play','audition','climax','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3893,'Admin','0000-00-00 00:00:00','2020-08-11 15:46:15'),(172,'Many Nigerians are <i>wary</i> of night journeys','worried about','unscarred of','satisfied with','troubled about','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3799,'Admin','0000-00-00 00:00:00','2020-08-14 13:41:36'),(173,'The proprietor accuse Uche of silently<i> acquiescing</i>  to the students’ demands','submitting to','adjusting','compromising on','resisting','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3906,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(174,'No wonder Sikemi later became a detective; she has been very <i>observant </i>','curious','perceptive','inductive','inquisitive','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3844,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:11'),(175,'Nigeria has been playing a <i>vital role</i> in the political an economic development of Africa','creditable','crucial','respectable','laudable','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3746,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(176,'Emeka’s painting was <i>so realistic</i>  that it could almost have been a photograph','picture square','concrete','lively','authentic','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3906,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(177,'<i>Courteously</i>, Ade stood back to let his teacher go first through the door','patiently','politely','carefully','calmly','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3840,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(178,'Many people use to lie in <i>poverty</i>','instability','want','difficult','the slums','choose the option nearest in meaning to the word or phrase  in italics ','','c','','utme','2005',3790,'Admin','0000-00-00 00:00:00','2020-08-09 09:09:10'),(179,'<i>Accountability</i> is certainly a desirable quality in a politician','respectability','responsibility','courage','Diligence','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3813,'Admin','0000-00-00 00:00:00','2020-08-14 13:41:36'),(180,'The <i>common</i> practice among some media practitioners is to be sensational in their reporting','prevalent','rampant','ordinary','cogent','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3830,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(181,'That <i>fateful</i> decision change the company’s outlook in many ways.','wonderful','uncontrollable','disastrous','unsuccessful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3902,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:47'),(182,'The accident victim received a <i>superficial</i> wound from the crash','a serious','a painless','an internal','an external','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3840,'Admin','0000-00-00 00:00:00','2020-08-11 11:21:41'),(183,'The boxer <i>fizzled</i> out just in the sixth round','knocked out his opponent','showed off his talents','became tire out fought on spiritedly','surrendered rather disappointingly','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3766,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:11'),(184,'The manager describe Mfon as a man of vehement <i>character</i>','weak an uninterested','strong an insistent','troublesome an noisy','clever and helpful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3764,'Admin','0000-00-00 00:00:00','2020-08-13 10:34:54'),(185,'Obi’s dog is old but still <i>lively</i>','attractive','howling','barking','frisky','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3837,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(186,'His <i>taciturnity</i> amaze everyone in one court during the legal tussle','obliviousness','reticence','sensibility ','pervasiveness','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3869,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:19'),(187,'The greatness of the creator of the universe is always <i>inexpressible</i> to many adherents of certain faiths','inevitable','wonderful','unbearable','ineffable','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3823,'Admin','0000-00-00 00:00:00','2020-08-12 15:32:43'),(188,'We <i>made a pile</i> in the business deal','lost a lot of money','earned a lot of money','broke even        ','cut corners','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3776,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(189,'Yesterday, my mother asked me.... ',' If I am tired? ','are you tired?',' whether was I tired?','If I was tired','choose the option that best completes the gap(s)','','d','','utme','2005',3821,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:26'),(190,'The Bank Manager assured us that there was nothing to worry about','as regard to the loan ','with regards to the loan','in regard of the loan  ','with regard to the loan','choose the option that best completes the gap(s)','','b','','utme','2005',3901,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(191,'The first prize was','a carved wooden, attractive ','a wooden attractive carved   ',' an attractive carved wooden   ','a carved attractive wooden tray ','choose the option that best completes the gap(s)','','c','','utme','2005',3871,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(192,'Tsadu always cautions that difficult jobs should be done','step from step ','step by step','steps after steps    ','steps by steps','choose the option that best completes the gap(s)','','b','','utme','2005',3889,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:47'),(193,'I was often angry …… Oche since he differed…   me often','with/to ','about/with   ','against/from','with/with','choose the option that best completes the gap(s)','','d','','utme','2005',3763,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(194,'I am writing to you for ……..  reasons','concerned ','several','plenty ','myriad of','choose the option that best completes the gap(s)','','b','','utme','2005',3934,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(195,'As we sat ………the silence, my eyes……..  the room','under/looked  ','over/surrounded ',' in/roamed',' along/observed','choose the option that best completes the gap(s)','','c','','utme','2005',3812,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(196,'Is it true that Okoro……..  when the gates were closed?','had returned','would return  ','should return    ','would have returned','choose the option that best completes the gap(s)','','a','','utme','2005',3899,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:10'),(197,'The public library has stopped………. books to readers','borrowing','lending ','renting ','loaning','choose the option that best completes the gap(s)','','a','','utme','2005',3732,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(198,'We won\\'t leave until it ……..  Raining','will stop ','stopped','stops    ','has stopped','choose the option that best completes the gap(s)','','c','','utme','2005',3864,'Admin','0000-00-00 00:00:00','2020-08-13 13:19:08'),(199,'The …………   event marked the beginning of a new life for the entire cabinet','historical  ','historicity of the','historic ','history of the','choose the option that best completes the gap(s)','','c','','utme','2005',3781,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(200,'The train ………. before I arrived','was leaving   ','has left','had left   ','would leave ','choose the option that best completes the gap(s)','','c','','utme','2005',3775,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(201,'You can travel on your own ……….. ?','isn\\'t it','can\\'t you   ','won\\'t you  ','shan\\'t you','choose the option that best completes the gap(s)','','b','','utme','2005',3781,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(202,'The man is refurbishing the flat with a view to ……. it.','sell   ','selling ','have sold ','be selling  ','choose the option that best completes the gap(s)','','d','','utme','2005',3688,'Admin','0000-00-00 00:00:00','2020-08-11 13:52:23'),(203,'The Secretary-General was shocked at the number of…….','child\\'s soldiers   ','childish soldiers  ','children soldiers ','child soldiers','choose the option that best completes the gap(s)','','d','','utme','2005',3806,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(204,'In spite of Shade\\'s good looks, her hair is always………','unkept','unkempt   ','unwashed','uncared for','choose the option that best completes the gap(s)','','b','','utme','2005',3809,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(205,'By the end of the football match today, we ……. the best player','could have known  ','might have known','will have known ','would have known ','choose the option that best completes the gap(s)','','d','','utme','2005',3884,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(206,'It is African for a younger person to show……..to elders','understanding ','indifference ','deference','satisfaction ','choose the option that best completes the gap(s)','','c','','utme','2005',3764,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(207,'A nursery rhyme is used to teach pupils how to spell the word','hipoppotemus','hippoppotemus','hipoppotamus ','hippopotamus','choose the option that best completes the gap(s)','','d','','utme','2005',3718,'Admin','0000-00-00 00:00:00','2020-08-13 10:41:38'),(208,'b<u>ee</u>r','bear',' pear ',' fair',' pier','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','d','','utme','2005',3773,'Admin','0000-00-00 00:00:00','2020-08-11 11:50:58'),(209,'g<u>uar</u>d','gourd','guide','argue','chat','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','c','','utme','2005',3896,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:19'),(210,'l<u>u</u>ck','lock','lack','brother','turn','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','a','','utme','2005',3798,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:53'),(211,'fi<u>l</u>m','salt','walk','pslam','chalk','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','a','','utme','2005',3894,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:47'),(212,'heal<u>th</u>y    ','father','path','they','that','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2005',3801,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(213,'E<u>n</u>glish','single','impugn','ink','orange','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2005',3827,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:30'),(214,'jurisprudence','JUrisprudence','juRISprudence',' jurisPRUdence','jurispruDENCE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3748,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(215,'suburbanite','SUburbanite','suBURbanite','  suburBAnite','suburbaNITE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3838,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(216,'departmentalize','departMENtalize         ','dePARTmentalize     ','DEpartmentalize','departmenTAIize','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','d','','utme','2005',3799,'Admin','0000-00-00 00:00:00','2020-08-12 20:17:49'),(217,'refuse(noun)','reform   ','intact   ','obscure','phantom','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3789,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(218,'downtrodden','downgrading','prescribing','functional','internal','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3934,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:47'),(219,'','interpreter',' remarkable','  impossible ','criticism','choose the option that has a different stress pattern from the others','','a','','utme','2005',3925,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(220,'','  impound','canoe','  subject(verb)',' knowledge','choose the option that has a different stress pattern from the others','','d','','utme','2005',3805,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:25'),(221,'Your mother CAN cook the meal',' Who will cook the meal?','Can my father cook the meal?','Isn\\'t my mother able to cook the meal7','What can my mother do?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','c','','utme','2005',3889,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(222,'The EAGLES won the match','Did the Eagles lose the match?','Who won the match?','What did the Eagles win?','Did the Eagles win the match?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','b','','utme','2005',3862,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:24'),(223,'The police claim that a number of stolen cars…… recovered ','have been ','has been  ','has being',' have being ','choose the option that best completes the gap(s).','','b','','utme','2006',3818,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(224,'     ………….  been there to look for her several times without success.','He\\'ll','He’s  ','Is he ','He is','choose the option that best completes the gap(s).','','b','','utme','2006',3722,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(225,' Until he lost the election, Agbo…………… to be the Student Union president.','had been hoping ','has been hoping   ','would have hoped   ',' has hoped ','choose the option that best completes the gap(s).','','b','','utme','2006',3842,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:25'),(226,'The old man was rushed to hospital when his blood  pressure dropped to a ……..  level','dangerously lowly','dangerous lowly ',' dangerously low',' dangerous low','choose the option that best completes the gap(s).','','c','','utme','2006',3727,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(227,'If he ……… for admission, I am sure he would succeed','will apply ','applied ','had applied ','has applied','choose the option that best completes the gap(s).','','c','','utme','2006',3661,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(228,'The ……….   robber showed no mercy during the attack. ','loquacious ','senseless ','ruthless ','benevolent','choose the option that best completes the gap(s).','','c','','utme','2006',3905,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:39'),(229,'Did you have ……… when you went to visit the medical doctor? ','diarrhea ','diarrhea','diarhoea  ','diarrhea ','choose the option that best completes the gap(s).','','a','','utme','2006',3723,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(230,'Your performance will improve if you…….  Hard','are practicing ','practical ','would practice ','practise','choose the option that best completes the gap(s).','','b','','utme','2006',3737,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(231,'The brave hunter killed the ………… in the forest ','big spitting cobra black','Black big spitting cobra ','big black spitting cobra ','big spitting black cobra ','choose the option that best completes the gap(s).','','c','','utme','2006',3694,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(232,'He wrote to you,……….  ?','hadn’t he ','wouldn’t  he ','didn’t he','hasn’t he','choose the option that best completes the gap(s).','','c','','utme','2006',3722,'Admin','0000-00-00 00:00:00','2020-08-13 10:34:54'),(233,'The clubs were not…….. on a solid ethical base ','funded','found ','created ','founded ','choose the option that best completes the gap(s).','','d','','utme','2006',3710,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(234,'I watched him as he……  the hole','dug ','digs','is digging ','dugged','choose the option that best completes the gap(s).','','a','','utme','2006',3651,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:06'),(235,'His father hardly misses the news because he goes about with his………..  Radio','pointable ','potable ','potable','portable','choose the option that best completes the gap(s).','','d','','utme','2006',3757,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(236,'The investigation Commission has treated all the …… submitted to it by the warring factions','protests ','petitions ','applications','enquires ','choose the option that best completes the gap(s).','','b','','utme','2006',3733,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(237,'Olu brought his clothes and those of his………..','Senior brother’s','elder brothers','elder brother’s ','senior brother.','choose the option that best completes the gap(s).','','c','','utme','2006',3755,'Admin','0000-00-00 00:00:00','2020-08-13 10:41:38'),(238,'Our neigbour was attracted by the ………. from my mother’s cooking ','flavour','stench','scent','aroma ','choose the option that best completes the gap(s).','','d','','utme','2006',3782,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(239,'Everybody is allowed to ………. his views on state matters ','Air ','hear ','show ','share ','choose the option that best completes the gap(s).','','a','','utme','2006',3840,'Admin','0000-00-00 00:00:00','2020-08-11 13:52:25'),(240,'Despite all preparations, the wedding did not …..','come along ','come by','come on ','come off','choose the option that best completes the gap(s).','','d','','utme','2006',3757,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:30'),(241,'For beating ……. his course mate, Agbaji was……… from the university.','up/rusticated ','on/expelled','at/removed ','away/sent out ','choose the option that best completes the gap(s).','','a','','utme','2006',3769,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:56'),(242,'We have been living peacefully here but……….. hear rumours of war.','again ','slowly','occasionally ','eventually','choose the option that best completes the gap(s).','','c','','utme','2006',3830,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(243,'Genealogy ','GeneaLOGY','geneAlogy','geNEalogy ','GEnealogy ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','b ','','utme','2006',3768,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:43'),(244,'Catholicism ','caTHOlicism ','catholiCism','CAtholicism ','cathoLIcism ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2006',3710,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(245,'','ability ','Registration ',' quadruplicate ','revivalist ','choose the option that has a different stress pattern from the others. ','','a','','utme','2006',3811,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(246,'','competent ','represent ',' syllabus ','quality ','choose the option that has a different stress pattern from the others. ','','b','','utme','2006',3778,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:10'),(247,'apparent ','arrested ','telephone ','paragraph ','appetite ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3627,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(248,'Unfair ','insight ','towards ','first-class','instant ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3854,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:10'),(249,'Dovetail ','proviso ','simplicity ','jargon ','psychiatry ','choose the option that has the same stress pattern as the given word.','','a','','utme','2006',3904,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(250,'',' Insult (noun)','prepare ',' provoke','pronounce ','choose the option that has the stress on the first syllable.','','a','','utme','2006',3733,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(251,'','Frequent (verb)','mature ','madam','convict (verb)','choose the option that has the stress on the first syllable.','','c','','utme','2006',3684,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(252,'In our college, the regulations concerning resists are a grey area','The regulations have just been revised','The regulations have often been ignored','The regulations are perfectly clear','The regulations are not very clear.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3753,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(253,'Ogiri takes after his father, he fawns upon anyone with influence.','Like his father, Ogiri likes to flatter people with influence in society','Like his father, Ogiri hates influential people','Ogiri. who always follows his father, tries to act like an influential man','Ogiri, who looks like his father, follows rich and influential people about','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3791,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(254,'You are to write a report and give it to the security office','After writing your report, give it to the security office','You are writing a report, as the security office directed','The report you are writing should be given to the security office','You have been ordered to write a report, which you wilt give to the security office ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3714,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(255,'After the war the victors became Increasingly vindictive ','Vengeful attacks were Incessantly carried out on those who lost the war ','  Friendly measures were taken to heal the wounds','Repressive measures were taken against those who lost the war','Those who won the war became treacherous ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3799,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(256,'The prefect reeled off the names of all the students who Drake the library law.','The prefect gave a disjointed list of the students in the law library.','  The prefect omitted the names of the students who broke into the law library ','The prefect submitted a complete list of the students who stole library books','The prefect gave an accurate list of the students who disobeyed library regulations.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3636,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(257,'1 owe you far less than you owe me','My debt to you is greater than yours to me','Your debt is not much greater than mine','What we owe each other Is approximately the same','I owe you something, but you owe me much more','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3710,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(258,'The dispute over land acquisition has now come a head','The problem has reached crisis proportions ','The problem has now been referred to the headquarters ','Because of the dispute, land acquisition has now been halted ','The problem has now been solved ','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3718,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:47'),(259,'He has hardly spoken when the bell rang ','He found it difficult to speak, and then the bell rang','When the bell rang, he was still speaking ','The bell rang very soon after he spoke','He spoke in a harsh manner and the bell rang ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3699,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(260,'I think she takes her guardian’s support for granted ','Her guardian has been helping her for a long time, and she is very grateful to him. ','She wants her guardian to grant her more support.','She thinks her guardian will no longer support her as he has been doing.',' Her guardian has been helping her for a long time, but she does not show enough gratitude. ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3679,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(261,'The class has fallen in with the teacher\\'s plans','The class has ignored the plans','The class has rejected the plans',' The class has accepted the plans','The class has modified the plans','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3841,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:47'),(262,'The move to expel the chairman was <i>sanctioned</i> by members of the party       ','unleashed  ','opposed ','supported',' initiated','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3752,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(263,'Because Jamiu is so <i>easily offended,</i> he was not considered for the post of headboy','Irritable    ','stubborn   ','troublesome ','docile','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3761,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(264,'The witness provided a <i>monstrous</i> account of the event','supportive  ','tragic','shocking ','verbatim','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3709,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(265,'Adamu is rather <i>meddlesome</i> in dealing with his friends','impertinent ','intimidating ','quarrelsome',' uncaring','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3524,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(266,'The commander said that the battle would be sustained, total and <i>relentless</i>','continuous ','brutal   ','fierce ','innocuous','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3765,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(267,'The government has announced its <i>preparedness for</i> the scheme','determination ','regret ','pleasure ','readiness','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3668,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(268,'The chairman advised the participants to follow <i>convention</i> in stating their points.','eloquence ','advice ','prudence ','tradition','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3698,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:30'),(269,'His discovery of the vaccine became a <i>quantum leap</i> in the search for a scientific cure for the illness','victorious battle ','slow but steady step',' great improvement   ','fast but sure step','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3693,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(270,'After the meeting, I read a <i>leer</i> on his face as he looked at the woman.   ','satisfying meaning ','bad look ','pleasant disposition ','poor smile','choose the option nearest in meaning to the word or phrase in italics','','b','','utme','2006',3773,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:07'),(271,'His loss suddenly became <i>redeemable</i> ','Incurable  ','exclusive','recoverable ','repulsive','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3740,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(272,'The plan has gone <i>awry</i>','wide   ','wrong   ','well    ',' wild','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3739,'Admin','0000-00-00 00:00:00','2020-08-12 15:32:43'),(273,'The judge emphasized his <i>morbid</i> desire in his judgement','inordinate ','uncritical ','ravenous ',' Unpleasant','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3717,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:30'),(274,'77. The recommended novel has a <i>convoluted</i> theme',' a simple ','an attractive ','a disgusting ','a complicated ','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3622,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(275,'The party men <i>reveled</i> all night when the election results were announced.','Celebrated ','mourned','fought ','discussed ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3662,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(276,'He is <i>prolific</i>  writer ','a very productive','a well-known','a clever ','an influential ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3803,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(277,'h<u>ur</u>t','hut ','girl ','hate   ','hot','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3731,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(278,'c<u>o</u>ck','cop   ','cope ','cork ','cup','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3685,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(279,'s<u>ay</u>s','fierce  ','dam','wet','rain','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','c','','utme','2006',3801,'Admin','0000-00-00 00:00:00','2020-08-11 15:43:48'),(280,'c<u>h</u>aracter','unique   ','charade   ','arch   ','church ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3850,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:58'),(281,'  bush<u>es</u>','shapes ','shoes  ','rapes   ','rakes','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3773,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(282,'gara<u>ge</u>','gear   ','sure   ','pressure ','measure','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2006',3766,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(283,'The usually hostile crowd was captivated by the .player\\'s <i>winsome</i> attitude','obnoxious  ','friendly  ','colourful  ','drunken','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3643,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(284,'The reporter made a <i>masterly</i> analysis of the situation','an unskilful ','a mistaken ','an indepth','a proper','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3781,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(285,'He has no reason to <i>have his heart in his mouth</i>',' think negatively',' feel guilty ',' be afraid',' be confident','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3798,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(286,'That little boy has become quite <i>chubby</i>','thin    ',' intelligent   ','huge    ','tall','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3709,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(287,'Akpan was able to <i>douse</i> the flames with the new piece of equipment','reduce ','extinguish ','ignite ','reinforce','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3680,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(288,'He gave himself up by his <i>plebeian</i> tastes','robust ','voracious ','patrician   ','laughable','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3786,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(289,'<i>No sooner had</i> he arrived than it started to rain',' Long before ',' Seldom ','Simultaneously','Just before','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3746,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(290,'The action was <i>premeditated</i>','unnecessary ','catastrophic ','unplanned ','uncoordinated','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3763,'Admin','0000-00-00 00:00:00','2020-08-16 10:11:35'),(291,'A <i>tentative</i> solution was provided','A convincing ',' provisional','An amicable ','A definite','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3668,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(292,'The chief said he would use the power <i>inherent</i> in his office to stop the celebration',' unrelated to ',' common to ',' allotted to ',' impervious to','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3782,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:30'),(293,'In our last play, Segun acted the <i>hero</i>','villain  ',' devil ','criminal ',' assassin','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3782,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(294,'The police found a <i>conclusive</i> proof of the boy\\'s guilt','a corroborative ','A doubtful ','a consolatory',' an incriminating','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2006',3774,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(295,'The point you have made is quite <i>apt</i>','illogical ','helpful ','irrelevant ','insensitive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3864,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(296,'The man drew a sword as people <i>congregated round</i> him','praised',' gathered round ',' mobbed ',' fled from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3815,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(297,'The notice reads, No <i>cash</i> transactions in this hall\\'','money   ','gainful ','business ','cheque','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3777,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(298,' He <i>deprecated</i> the attempts made to unseat him.','despised','challenged    ','resisted','condemned','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:45'),(299,'The striking workers have vowed not to return to work until the decision is <i>reversed.</i> ','rescinded         ','dismissed','implemented    ','reverted. ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3789,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(300,'The police are not happy with the growing number of <i>depraved</i> people around the politician.','violent ','immoral ','indolent ','loquacious ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3716,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(301,'The last criticism at the rally was made <i>in ignorance</i>','uniformed ','objective ','unimpeaccable','impeccable ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3629,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(302,'The astute businessman neatly <i>fended</i> off questions off questions about his private life.','asked ','explained ','welcomed','sidestepped.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3673,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(303,'We were warned not to indulge in <i>recriminations.</i>','counter-charges      ','indiscretions  ','accusation','frivolous allegations.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3741,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:56'),(304,'The shortage of petrol was a <i>perennial</i> problem','a recurring   ','a seasonal ','an annual','an incurable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3791,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(305,'The rest of the boys admire Olu\\'s <i>verve</i>','intelligence','work  ','handsomeness     ',' energy.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3767,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:06'),(306,'He holds on firmly to his <i>hackneyed</i> view of life','wayward  ','principled',' obsolete','positive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3699,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(307,'I visited Amina <i>umpteen times</i> in her college, but she never came to me','often   ',' seldom   ',' twice   ','occasionally.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3693,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(308,'The debt the company incurred became rather <i>intolerable</i>. ','inevitable   ','unprecedented','insupportable ','dangerous.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3771,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:47'),(309,'The tax rebate was a <i>concession</i> given to the civil servants ','a donation ',' an allowance','an incentive  ','an emolument. ','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2007',3737,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(310,' <i>Beads</i> of sweat ran down Ngozi\\'s armpit','Pools','Springs   ','Ponds    ','Rivulets.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3863,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(311,'The noise across the road  <i>drowned</i> the sound of the keyboard in my room',' neutralized ',' overshadowed','balanced   ','equalized.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3785,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(312,'Things may change soon, but at the moment our economic situation is <i>precarious.</i>',' redeemable','buoyant ','uncertain   ',' unattractive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3862,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(313,'shoe<u>s</u>','horse','house','loss','reason','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2007',3790,'Admin','0000-00-00 00:00:00','2020-08-11 11:09:55'),(314,'E<u>ngs</u>lish','end','thin','think','edge','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3804,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(315,'clo<u>ths</u>e','thomas','three','they','mouth','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3782,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(316,'p<u>os</u>table','paw','pot','port','post','choose the option that has the same vowel sound as the letter(s) underlined.','','b','','utme','2007',3697,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:28'),(317,'bl<u>ues</u>','book','root','foot','look','choose the option that has the same vowel sound as the letter(s) underlined.','','d','','utme','2007',3810,'Admin','0000-00-00 00:00:00','2020-08-11 11:50:22'),(318,'p<u>ears</u>','dear','year','there','near','choose the option that has the same vowel sound as the letter(s) underlined.','','a','','utme','2007',3788,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(319,'The refugees were received at the <i>transit</i> camp.','passage ',' permanent ','temporary ','nearby.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3708,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(320,'The man paid a large sum to <i>redeem</i> his mortgaged property ','ransom ','acquire ','pawn ','recover.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3769,'Admin','0000-00-00 00:00:00','2020-08-11 15:46:01'),(321,'Lami and her husband are simply <i>munificent</i>','a wealthy   ','angry   ','happy  ','niggardly.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3833,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(322,'Is it necessary for us to go?\\' she asked in her <i>shrill</i> voice ','angry ','quiet',' indistinct ','aggressive.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3655,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(323,'The police demanded a <i>factual</i> account of the accident','a supportive  ','an uncorroborated','an admissible ','an undisguised.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3777,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(324,'The suggestions he made were very <i>unobtrusive</i>','forceful   ','helpful ','sincere    ','reasonable.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3751,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(325,'Mr. Adeyemo is quite a <i>conceited</i> young man','a resourceful','a practical ','an experienced ','an unassuming.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3817,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(326,'The stadium was <i>seething</i> with people when we entered',' filled ',' crowded ','empty   ','noisy.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3785,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(327,'The Vice-Chancellor <i>relinquished</i> power at the end of busterm ','abandoned   ','wielded  ','gave up',' clung on to.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3832,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(328,'The students were <i>undeterred</i> by the noisy lecture environment. ','frustrated  ','encouraged','discouraged','challenged.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3822,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(329,'For anything to do with academic work, he has a great  a <i>version</i>','conversion ','attention','contempt  ','predilection.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3748,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:07'),(330,'The study he carried out of the problem was quite <i>comprehensive</i>','detailed ',' sketch  ','inscrutable ','complete.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3754,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(331,'The man advised his wife to steer a <i>middle course</i> the argument between her and her employers','be recalcitrant  ','be unrepentant','be compromising','be unrelenting','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3833,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:24'),(332,'Do not be <i>discouraged</i> by failure in life.','overjoyed','dissuaded','actuated ','disoriented.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3716,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(333,'Otokpa took after his late father who was a <i>tee totaller.</i>','a drunk ',' careless ','a disciplinarian ','sober','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3791,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(334,'capitalism    ','capiTAIism   ','capitaLIsm','caPItalism ','CApitalism.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2007',3702,'Admin','0000-00-00 00:00:00','2020-08-13 10:34:07'),(335,'association ','aSSociation    ','associaTION','associAtion   ','Association.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2007',3845,'Admin','0000-00-00 00:00:00','2020-08-11 11:16:29'),(336,'advertisement ','adVERtisement  ','advertiseMENT',' adverTISEment   ','ADvertisement.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2007',3761,'Admin','0000-00-00 00:00:00','2020-08-13 10:33:11'),(337,'',' intact  ',' integral ','negotiate ','about.','choose the option that has the stress on the first syllable.','','b','','utme','2007',3756,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:39'),(338,'','conduce   ',' renewal ','calendar ','reproduce.','choose the option that has the stress on the first syllable.','','c','','utme','2007',3733,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:30'),(339,'','understand   ','address ','afternoon ','taxi.','choose the option that has the stress on the first syllable.','','d','','utme','2007',3775,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(340,'',' superior ','surcharge','slaughter ','superman.','choose the option that has a different stress pattern from the others.','','a','','utme','2007',3598,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(341,'','education ','individual ','agriculture','Cinderella.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3751,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:28'),(342,'','cigarette ','European ','evacuee','expedite.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3593,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(343,'Because of his …… nature, Ayo was tricked out of his wrist watch. ','kind   ','pliable  ',' uncompromising ','uncalculating ','choose the option that best completes the gap(s).','','a','','utme','2007',3724,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:10'),(344,'He says he ............. find me a job, but will accommodate me.','could not ','was notable to','is not able to','cannot be able to ','choose the option that best completes the gap(s).','','a','','utme','2007',3762,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:11'),(345,'The idle steward could not see ....... on the wall, and he lost his job.','the writing','what will be written ','the handwriting','what is written','choose the option that best completes the gap(s).','','c','','utme','2007',3775,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(346,'... went to the stadium to watch a football match.','Amadi and me  ','Amadi and I   ','Me and  Amadi   ','Amadi and myself  ','choose the option that best completes the gap(s).','','b','','utme','2007',3715,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(347,' If he arrived late, everyone... …….. him','would have blamed   ','will blame ','would  blame ','must blame','choose the option that best completes the gap(s).','','a','','utme','2007',3737,'Admin','0000-00-00 00:00:00','2020-08-12 12:11:27'),(348,'When they examined his body, they found that he ...',' had been dead  ',' had been dying  ','died  ','was dead','choose the option that best completes the gap(s).','','d','','utme','2007',3728,'Admin','0000-00-00 00:00:00','2020-08-11 11:10:25'),(349,'The rain fell for days... ','on ending ','at ending ','on end  ','at end','choose the option that best completes the gap(s).','','c','','utme','2007',3737,'Admin','0000-00-00 00:00:00','2020-08-11 15:43:48'),(350,'Yesterday in the hall, Ola said that ...........  his watch.','he had mislaid ','he had forgot ','ne has misplaced  ','he have lost ','choose the option that best completes the gap(s).','','a','','utme','2007',3676,'Admin','0000-00-00 00:00:00','2020-08-13 10:34:54'),(351,'Government should invest more in …...   training.','teacher\\'s  ','teacher  ','teachers  ','teachers','choose the option that best completes the gap(s).','','b','','utme','2007',3605,'Admin','0000-00-00 00:00:00','2020-08-12 20:17:22'),(352,'The team has benefitted from the coach\\'s ………. of experience. ','minefield ','reservoir ','wealth ','world ','choose the option that best completes the gap(s).','','c','','utme','2007',3819,'Admin','0000-00-00 00:00:00','2020-08-13 13:18:40'),(353,'There was …………. any traffic as he drove home.',' hardly ',' normally ','usually  ','no ','choose the option that best completes the gap(s).','','a','','utme','2007',3867,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:25'),(354,'I look forward to ……. you next week.','seen ','seeing  ',' be seeing ','see ','choose the option that best completes the gap(s).','','b','','utme','2007',3794,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(355,'The girl cannot speak with a clear voice; she is always ………. ','blabbing ',' vociferating ',' stuttering ','gesticulating ','choose the option that best completes the gap(s).','','c','','utme','2007',3713,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:53'),(356,'The politician …….. the family of the deceased.  ',' greeted  ',' condoled  ','wept over ','commiserated with ','choose the option that best completes the gap(s).','','d','','utme','2007',3776,'Admin','0000-00-00 00:00:00','2020-08-13 10:34:54'),(357,'Making a phone call instead of paying a visit represents a …….  trend ',' sudden new major social  ',' new social sudden major',' new sudden major social','sudden social new major','choose the option that best completes the gap(s).','','c','','utme','2007',3762,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(358,'Our soldiers are starting to zero …………. the enemy.','at    ','in on ',' unto ','on at ','choose the option that best completes the gap(s).','','b','','utme','2007',3514,'Admin','0000-00-00 00:00:00','2020-08-11 11:07:29'),(359,'My father has been away on a journey but my mother  says she …...he …… this Friday.',' expects/would arrive','expected/win arrive ','expects/will arrive','expected/would arrive ','choose the option that best completes the gap(s).','','a','','utme','2007',3785,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(360,'Kola was fined; ……….. thieves were given a jail sentence.','the rest of the','rest ','the rest','rest off ','choose the option that best completes the gap(s).','','a','','utme','2007',3716,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(361,'I………  to pursue my education.','did not chance   ','did not have the opportunity','was not chanced    ','was not opportuned ','choose the option that best completes the gap(s).','','a','','utme','2007',3757,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(362,'Didn\\'t .......  draw your attention to the entry requirements?','anyone ','everyone ','everybody','no body','choose the option that best completes the gap(s).','','a','','utme','2007',3717,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(363,'He could not have rewarded them more handsomely.','He did not reward them very well,','He rewarded them well, and he was also a good- looking man.','He rewarded them very well.','He spoke to them in a very generous way.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3674,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:10'),(364,'My advice to Tolu was: \\'Look before you leap.\\'','Tolu was advised to consider her opinions before reaching any decisions.','Tolu was advised to consider the possible consequences before taking action.','Tolu was advised to weigh her decisions by looking and leaping.  ','Tolu was advised to leap only after looking.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2007',3799,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:19'),(365,'The official had allegedly been taking bribes.','Some people accused the official of taking bribes.','The official had been taking bribes without feeling any guilt.  ','It was proved that the official had been taking bribes ','The official accused some people of taking bribes.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3780,'Admin','0000-00-00 00:00:00','2020-08-13 10:41:38'),(366,'Emeka hardly ever holds with my view on good governance.','Emeka sometimes opposes my idea of good governance.  ','My view on what good Governance is conforms with that of Emeka.','Emeka never really supports my opinion of good governance ','Emeka may never hold a view which conflicts with mine on good governance.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3705,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(367,'The next village is at least 30 kilometres away.','The next village is 30 kilometres away, possibly less. ','The next village is approximately 30 kilometres away.    ','The next village is   only 30 kilometres away.','The next village is 30 kilometres away, or possibly more.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3757,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:32'),(368,'The woman won\\'t have lived through the night. ','It was likely that the woman died before morning ','The woman survived her ordeal but not without some help .   ','From all indications, the woman was taken much worse, though she overcame her ordeal','The woman might not have lived if she hadn’t got the right support','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3736,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(369,'There\\'s a door at either end of the building.','The building has two ends and two doors. ','The building has two ends, but only one doc\\'','The building has two ends, but I do not know which of the two has a door. ','The building has many ends each with a door.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3641,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:26'),(370,'We have to iron out our differences at once.','We must clear up without delay our misunderstanding ','We must sure that our problems are eliminated  at all costs ','We have to settle our disagreement once and for all.   ','We have to solve some of our problems for now.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3658,'Admin','0000-00-00 00:00:00','2020-08-11 15:46:01'),(371,'There should be a level playing field for women entering  politics.  ','Women should not be allowed to enter  politics   ','Sports facilities should be provided for women entering politics.','Special privileges should be  given to women who want to enter politics','Men and women should be able to compete are political arena on an equal basis.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3704,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(372,'The country is holding its first free elections for five years. ','The last time the country held free electors  was five years ago. ','The first free elections in the  country have now taken five years to conduct.','The country held elections five years ago but they were not free. ','There were elections in the country five years ago.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3821,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(373,'He needn\\'t have bought that new table ','It isn\\'t possible that he bought the table ','He bought the table, but it wasn\\'t necessary ','He didn’t buy the table because it wasn\\'t necessary','He doesn\\'t need to buy the table ','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3705,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(374,'Thanks to that phone call, I was able to obtain the visa,','in spite of that phone call, I obtained the vist ',' It was because of that phone call that the visa','I am grateful to whoever phoned me and I obtained the visa','If I had not recieved that phone call, I would not have obtained the visa.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3786,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:07'),(375,'It is likely that the governor will exact his pound of flesh ','He will probably demand a hefty  bribe ','He will probably engineer the assassination of his opponents ','He will probably impose crushing new taxes','He will probably demand for and get all that is due to him ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3828,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(376,'It was too cold for him to go out ','He had a bad cold, and did not go out,','Although it was very cold, he still went out ','As it was very cold, he did not go out','He was afraid to go out that day.','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3687,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(377,'Ado and Abu are always together these days. They must be up to something.','They must have reconciled after their quarrel','They are probably planning something bar','They are capable of a praiseworthy achievement ','They bear some responsibility for what has happened.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3714,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:06'),(378,'He wants the meeting to be adjourned,','He wants the meeting closed ','He wants the meeting cancelled ','He wants the meeting to continue till another day ','He want  the meeting to another day without delay ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3726,'Admin','0000-00-00 00:00:00','2020-08-11 11:58:28'),(379,'My father is one of the vociferous few challenging the company’s appointment of the manager.','My father is the one who shouts with a loud voice against the appointment of the manager','My father and others speak on behalf of the company against the appointment of the manager','My father is one of those objecting to the appointment of the manager','My father is agitated by the appointment of the manager','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3779,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(380,'The voyagers fetched up in Nigeria','the foreigners finally settled in Nigeria','The journey by sea ended in Nigeria','The travellers made a stopover in Nigeria','The discoverers landed in Nigeria after a long journey,','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3841,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(381,'In those days in this school, everyone who spoke in a','language other than English paid a fine of ten naira','  Everyone of us paid a fine of ten naira because we did not always speak in English  ',' Everyone would pay a fine of ten naira for wanting to use a language other than English ','Those who spoke a language other than English on the premises paid a fine  of ten naira ','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3712,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(382,'The officer has discussed the vexed issue of incessant power failure','In anger, the officer explained the problem of constant power failure','The officer added his voice to the much discussed problem of power cut','The officer\\'s explanations angered those who have suffered the effects of frequency power failure ','The officer told the people not , to be angered by the frequent power cut','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3649,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(383,'The weather condition now <i>prevailin</i>g in the town is unbearable   ','widespread   ','dominant','unconscious ','disappointed','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3754,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(384,'The lady was  completely <i>nonplussed when her suitor</i>  rejected her gifts ','unpuzzled ','surprised ',' unconscious ','disappointed  ','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3783,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(385,'As a public officer, he should act with <i>scrupulous</i>  honesty at all times  ','impeccable  ','careless ','transparent ','uncompromising ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3848,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:30'),(386,'Men from the agency went into the market in search of <i>unwholesome</i>  food items ','banned ','imported ','healthy ','uncooked ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3761,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(387,'The condition of the hostels has become <i>deplorable </i>','admirable ','regrettable ','bearable ','malignant','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3813,'Admin','0000-00-00 00:00:00','2020-08-13 15:51:20'),(388,'The plan to merge the two local government areas has met with much <i>apathy.</i>','hospitality ','criticism ','consideration ','enthusiasm ','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3861,'Admin','0000-00-00 00:00:00','2020-08-13 15:51:20'),(389,'There is now a <i>dearth</i>  of talent in the industry; she said ','a lack ','an abundance ','a rebirth ','a shortage ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3658,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(390,'The students  <i>vandalized </i> their hostel curing the riot.','  deserted ','Unrepaired  ',' protected','decorated.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3780,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(391,'His <i>kind-hearted</i> master bought him a motorcycle',' stingy   ','generous    ',' shrewd ','angry.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3593,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(392,'<i>Mutual</i> love is what Kabi and Musa have in common, and nothing else.   ',' insincere     ','unhappy','one-sided    ','disrespectful. ','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3714,'Admin','0000-00-00 00:00:00','2020-08-13 10:39:56'),(393,'Always strive to get what is <i>legitimate,</i>','illicit    ','legal',' good    ','impure','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3809,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(394,'Some aspects of their culture are <i>out of date</i>','genuine  ','pragmatic ','fashionable ','fake','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3779,'Admin','0000-00-00 00:00:00','2020-08-11 15:46:15'),(395,'On the first day of her examination, Amina felt very <i>confident.</i>','excited ','dull  ','beefed up','strung up. ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3767,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(396,'My father is always very <i>frank</i> about his intentions','open   ','objective','secretive','deceitful','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3725,'Admin','0000-00-00 00:00:00','2020-08-13 17:54:09'),(397,'The speaker was rather <i>bold</i> in his presentation of the case ','unfair ','reserved ','ashamed ','formal','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3808,'Admin','0000-00-00 00:00:00','2020-08-13 15:51:20'),(398,'The doctor tried to <i>soothe</i> the patient before the operation  ','examine   ',' treat ',' calm ','induce','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3707,'Admin','0000-00-00 00:00:00','2020-08-13 15:51:20'),(399,'The charge brought against my brother was hardly <i>tenable\\\\</i>','sensible  ','defensible   ','meaningful',' flimsy','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3793,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(400,'The man described his son as a <i>willful</i> character','   wicked ','obstinate','wild    ','tricky.','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3794,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(401,'Our teacher described Agbo\\'s story as a <i>phantom</i>','scary  ','realistic ','fanciful   ','interesting ','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3765,'Admin','0000-00-00 00:00:00','2020-08-14 13:41:36'),(402,'I find the way she approaches her customers quite <i>repugnant</i> ','unpleasant   ','attractive. ','ungodly    ','encouraging','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3796,'Admin','0000-00-00 00:00:00','2020-08-14 13:41:36'),(403,'Participation in the programme is <i>optional</i>','unnecessary   ',' recommended','hard to justify   ','a matter of choice','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3677,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:25'),(404,'Scientists have <i>invented</i> ways of preserving fruits much longer   ','coined ','devised   ','arranged','organized','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3675,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(405,'The attempt to count the population was <i>largely</i> successful.  ',' mostly ','completely   ',' hardly','totally.','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3691,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(406,'The governor has <i>approved</i>  the award of the contract','appreciated ',' acknowledged ','vetoed ','endorsed','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3678,'Admin','0000-00-00 00:00:00','2020-08-11 11:05:45'),(407,'I cannot stand Simon, I find his attitude <i>offensive</i>','unapproachable   ',' obnoxious ','wicked','  unpardonable','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3729,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(408,'The  man would not <i>withdraw</i>  what hi hid ','take back   ',' takeout   ','take','tike from','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3651,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(409,'The <i>disagreement</i> between the two men became obvious during the meeting','insult','confrontation','passion','insinuation','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3816,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:53'),(410,'The principal  detested his <i>recalcitrant</i> attitude ','disobedient ','arrogant ','voracious ','vengeful ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3859,'Admin','0000-00-00 00:00:00','2020-08-13 10:37:39'),(411,'The union officials suddenly became <i>reactive</i>','unruly ','impatient ','calm  ','submissive ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3725,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(412,'The popularity of the military dictator <i>waned</i>  after war ','increased ','changed ','declined ','skyrocketed.','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3688,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(413,'The chairman addressed the………… ','university French teacher','university of French teachers ','French one hundred university teachers ','university French one hundred teacher ','choose the option  best completes the gap(s) .','','a','','utme','2008',3804,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(414,'Kanuri is a language.........','I can\\'t speak it well ','that I cant speak it well ','of which I can\\'t speak it well','I can\\'t speak well ','choose the option  best completes the gap(s) .','','d','','utme','2008',3734,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:30'),(415,'Last Tuesday, Ochonu asked me.........',' had I come yesterday ','did you come yesterday ','whether I had come the day before ','If I had come yesterday','choose the option  best completes the gap(s) .','','c','','utme','2008',3769,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(416,'The young man has..... to sober...……  after being drunk.','began/up ','begun/in    ','begun/up    ','began/down','choose the option  best completes the gap(s) .','','c','','utme','2008',3821,'Admin','0000-00-00 00:00:00','2020-08-16 10:11:35'),(417,'My mother had........  the fire wood before it began to rain. ','splitting ','splited  ','splitted','splitting','choose the option  best completes the gap(s) .','','a','','utme','2008',3692,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:06'),(418,'The police officer warned the... communities against taking the law……… hands','feuding/into their own ','feudal/ to their own ','feuding to their own   ','feudal/in their own','choose the option  best completes the gap(s) .','','a','','utme','2008',3723,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(419,'Agbo could not travel as he had come...…  influenza','over with ','down with ','in from ','on to ','choose the option  best completes the gap(s) .','','b','','utme','2008',3665,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(420,'When he.........from his journey, I want to see him.','returns ','might have returned ','returned ','must have returned ','choose the option  best completes the gap(s) .','','a','','utme','2008',3751,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(421,'I knocked his door, but he.........','has already ten ','left already ','would already leave','had already left ','choose the option  best completes the gap(s) .','','d','','utme','2008',3711,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(422,'………of the students  turned up, so the lecture was cancelled.','few ','Little',' A few  ',' A little','choose the option  best completes the gap(s) .','','a','','utme','2008',3713,'Admin','0000-00-00 00:00:00','2020-08-13 20:52:13'),(423,'He brought a  ……… against his neighbour.','complaint ','complains','complain ','complaining ','choose the option  best completes the gap(s) .','','a','','utme','2008',3679,'Admin','0000-00-00 00:00:00','2020-08-13 13:18:27'),(424,'The hotel lacks the ..……. for accommodating so many guests.','ability','capability','capacity','competence ','choose the option  best completes the gap(s) .','','c','','utme','2008',3724,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(425,'If you are not careful, you would .......... your money.','toss  ','lose','loose   ','lost','choose the option  best completes the gap(s) .','','b','','utme','2008',3816,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(426,'You must practise in order to................perfection.','obtain   ','have','get ','achieve','choose the option  best completes the gap(s) .','','d','','utme','2008',3773,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(427,'The condition of the room was so………... so I went outside ','intolerant','intolerable ','inconstant ','invariabl ','choose the option  best completes the gap(s) .','','b','','utme','2008',3819,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:19'),(428,'You don\\'t like Mathematics, ........... you?','do','don\\'t','cant ','can ','choose the option  best completes the gap(s) .','','a','','utme','2008',3804,'Admin','0000-00-00 00:00:00','2020-08-12 12:11:27'),(429,'They have had their debt written ........... by their creditors.','down ','on ','up ','off','choose the option  best completes the gap(s) .','','d','','utme','2008',3747,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(430,'Uncle Ochai now has enough money to complete his…….. building.','two storey ','two-storeyed ','two-story ','two storeyed ','choose the option  best completes the gap(s) .','','a','','utme','2008',3713,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:57'),(431,'By the end of this month……….for three years in this school.','I will study ','I  will have been studying ','I  am studying','I had been studying ','choose the option  best completes the gap(s) .','','b','','utme','2008',3832,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:47'),(432,'He ……… the picture on table','laid ','lay ',' lied  ','Iain ','choose the option  best completes the gap(s) .','','a','','utme','2008',3785,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:19'),(433,'Sc<u>oo</u> led ','cold ','could ','court','you','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3706,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(434,'sh<u>ir</u> t  ','shut ','shade','surf','shed','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','c','','utme','2008',3760,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(435,'w<u>ai</u> st ','fete ','says','plait','breakfast ','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3695,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(436,'<u>th</u> atch ','clothing   ','mother','then ','method','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2008',3722,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(437,'<u> ch</u> ateau  ','chart    ','church ','champagne',' chemical.','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2008',3738,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(438,' ju<u>dge</u> ','measure','General ','Pressure','Grace ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2008',3815,'Admin','0000-00-00 00:00:00','2020-08-12 20:17:22'),(439,'','distress','control','bottom','report','choose the option has a different stress pattern from the others.','','c','','utme','2008',3856,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(440,'','original','deplorable','ability','revolution','choose the option has a different stress pattern from the others.','','d','','utme','2008',3791,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:25'),(441,'','release','exit','exchange','explode','choose the option has a different stress pattern from the others.','','b','','utme','2008',3746,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:53'),(442,'','bachelor','forget','cement','ago','choose the option that has the stress on the first syllable.','','a','','utme','2008',3756,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(443,'','librarian','immunize','militia','continuous','choose the option that has the stress on the first syllable.','','a','','utme','2008',3819,'Admin','0000-00-00 00:00:00','2020-08-13 15:51:20'),(444,'','july','litereture','august','oesophagus','choose the option that has the stress on the first syllable.','','d','','utme','2008',3711,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(445,'xenophobia   ','XEndphobia   ','xeNOphobia',' xenoPHObia     ','xenophoBIA.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2008',3777,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:28'),(446,'photography ','phoTOgraphy   ','PHOtograhy',' photoGRAphy   ','photograPHY','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2008',3682,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(447,'melodramatic ','MEIodramatic  ','meLOdramatic',' meloDRAmatic ','melodraMAtic.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2008',3756,'Admin','0000-00-00 00:00:00','2020-08-13 10:41:38'),(448,'It was our collective idea but Ado was doing every­ thing to steal the snow  ',' Ado was not part of the planning but he tried to rub us of the benefits of it.',' We planned the show together out Ado was trying to abort it. ','It was a joint project but Ado is trying to attract the most attention','We collated the idea for the show but Ado was trying to steal the programme.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3748,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(449,'As we watched, he just popped along to the shop for some bread  ',' He has walked slowly to the shop.',' He stole some bread from the shop but we could not stop him',' He broke into the bread shop before our very eyes    ','He went quickly to the shop for some bread.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3656,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:30'),(450,'In all ramifications, Chief Adeyemi was a successful principal of the school','He was partly a failure and partly a success    ','Everyone admitted that he was largely successful during his tenure ','He was not totally successful in the school  ','His tenure witnessed a huge success ','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3855,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(451,'I couldn\\'t buy the biscuit because of the hold-up in the supermarket. ','The shop had not opened.','The attendant was slow  ',' Armed robbers were',' There was nobody to attend to me.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3753,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:19'),(452,'You could have heard the sound, if you weren\\'t asleep.','You were not asleep so you heard the sound.','You were asleep so you did not hear the sound.','You heard the sound though you were asleep.','You did not hear the sound though you were not asleep','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3776,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(453,'Musa will not well because he has an itching palm.','He has rashes in his palm ','He is always looking for something to touch ','He is always read to accept bribe','He is always tapping people on the back','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3893,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(454,'Emeka was always conspicuous by his absence when it came to attending lecturers.','That Emeka always attended lecturer made him conspicuous at school.','Emeka’s absence from lecturers was all too glaring. ','It was obvious that Emeka was not present at lectures   ','What made Emeka conspicuous was his occasional absence from school','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3793,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:43'),(455,'He was injured by friend fire. ','He was wounded in a war by a friend of his who fired a shot mistakenly.','He was injured by a gunshot that was fired by a friend. ','He was gut in a war by a weapon fired by his own side    ','it was a war and he was hit by a bomb fired by an unknown soldier.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3686,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:01'),(456,'Kola visits us on occasions, and I don\\'t like that.','I do not like Kola because he visits us only when an event is being celebrated. ','I hate the fact that Kola only visits us when something is being celebrated.','That Kola does not visit us often is something I object to.   ','Kola seldom visits us and that is because he is a fair-weather friend.','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3688,'Admin','0000-00-00 00:00:00','2020-08-14 13:41:36'),(457,'At the time I arrived, Olu was lying in third place.',' Olu\\'s third position coincided with my arrival.',' When I arrived Olu was sleeping in the space reserved for him.',' It was a competition and Olu was in third position when I arrived. ','On my arrival at the competition, Olu went to sleep.','select the option that best explains the information conveyed in the sentence. ','','a','','utme','2009',3612,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(458,'We had difficulty eating the meat because was <i>leathery.</i>   ','bitter    ','stringy ','tough ','tender.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3788,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(459,'The boy is <i>indolent</i> to do well at school?','intelligent ','industrious  ','inactive  ','stothful.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3749,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:47'),(460,'Salasi\\'s <i>tremendous</i> effort has yielded results.','absolute  ','insignificant  ','unimaginable','prohibitive','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3742,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(461,'The <i>computerised</i> service of the new banks is heart­  warming. ','manual ','mechanical ','electrical','condensed.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3687,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:05'),(462,'Life has become a <i>misery</i> for many owing to the harsh economic condition in the country','drudgery   ','ridicule   ','ritual ','comfort. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3756,'Admin','0000-00-00 00:00:00','2020-08-13 16:19:38'),(463,'The company director has a <i>vivacious</i> personality. ','a positive ','an unmanageable','an unimpressive ','a gregarious.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3696,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(464,'Young people have a <i>penchant</i> for fast cats ','likeness','passion ','madness ','dislike. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3673,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:43'),(465,'Most of his latest actions are <i>militant</i> in nature ','commanding ','civil ','zealous ','passionate. ','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3825,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:46'),(466,'His ideas sounded quite palatable yet they were <i>jettisoned</i> by the group, ','accepted ','clumped ','denied ','criticized.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3820,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(467,'The compulsory leave made her feel <i>listless</i>',' restful   ',' great  ',' fat   ','energetic.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3783,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(468,'A novel is an <i>embellished</i> \\' falsehood\\', said the teacher','enriched ',' exaggerated ','adorned ','Obliterated.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3769,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:46'),(469,' I have had enough of your <i>impudence</i>','politeness ','incivility ','arrogance ','boldness.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3528,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:32'),(470,'We were <i>collectively</i> responsible for keeping the machine in good shape.','jointly ','severally ','dutifully ','socially.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3855,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(471,'His comment was not <i>printable</i>','punishable  ','suitable ','offensive ','unfair.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3704,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:25'),(472,'<i>Curiously,</i> he escaped unhurt ','interestingly','unsurprisingly ','annoyingly ','unusually.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3815,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:46'),(473,'Agwube\\'s explanation of her poor performance at the examination only <i>begged the question.</i>','delayed her punishment   ','sounded quite convincing ',' did not address the issue','overflogged the matter','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3765,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(474,'We have every need to preserve some of our national monuments for <i>posterity.</i> ','prosperity ','future','national pride   ','collective gain.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3823,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(475,'He <i>commands</i> the confidence and respect of all his subordinates ','requests',' enjoys   ','enforces','conjures.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3793,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(476,'The president has mapped out so many <i>laudable</i> projects to embark upon ','laughable   ','good',' praiseworthy   ','valuable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3747,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:54'),(477,'Adamu\\'s father is a <i>stern</i> man ','wicked ','strict','playful ','conservative.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3715,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(478,'Nobody knew the source of the <i>altercation</i> between the couple  ','alter ego ','quarrel   ','deep love','wealth.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3673,'Admin','0000-00-00 00:00:00','2020-08-13 17:54:12'),(479,'His poetry is said to be <i>inscrutable  </i> ','ludicrous','unlearnable ','inseparable ','mysterious.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(480,'Hers was a <i>specious</i> argument about the government of the day ','misleading ','precious ','spacious ','true.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3778,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(481,'The Lagos bus conductor r wore his professional <i>livery</i>','badge   ','shoe ',' uniform ','cap.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3830,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(482,'If Joy hadn\\'t been <i>tripped up</i> halfway through the race, she would have came first  ','discouraged','disqualified ','interrupted   ','exhausted.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3799,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(483,'There must be something <i>sinister</i> about her late arrival','reasonable ','joyful ','hopeful ','ominous.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3817,'Admin','0000-00-00 00:00:00','2020-08-13 16:19:38'),(484,'The <i>unification</i> of the country has brought about great technological advancement ','A restoration','agreement','cohesion ','stability.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3830,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:24'),(485,' His <i>amnesia</i> has affected his career ','loss of focus','loss of sight','loss of memory ','loss of direction.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3721,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(486,' Idris\\' <i>forbearance</i> endeared him to us ','hard work','patience ','wisdom ','good manners.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3654,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:24'),(487,'They hated the police and, by <i>implication,</i> me','extension',' inference ','examination','application','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3733,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:46'),(488,'He is really very mean. He…… not lend me the money I wanted. ','should ','could  ','would','won\\'t  ','choose the option that best completes the gap(s).','','c','','utme','2009',3735,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(489,'When the cashier told him to join the queue, he considered it……. his dignity.','a drawback to ','an affront on','withdrawal from  ','a strain on ','choose the option that best completes the gap(s).','','b','','utme','2009',3758,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(490,'If anyone greets you, it is only polite to return….. Greeting','your  ','the one\\'s   ','Anyone\\'s ','one\\'s ','choose the option that best completes the gap(s).','','d','','utme','2009',3666,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(491,'Amina lives…..  campus.','in the. ',' on','at the ','inside','choose the option that best completes the gap(s).','','b','','utme','2009',3792,'Admin','0000-00-00 00:00:00','2020-08-13 16:24:09'),(492,'An acceptance of the offer would be a departure from the several rejections that….. ','had taken place ','have taken place','take place ','took place ','choose the option that best completes the gap(s).','','a','','utme','2009',3768,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(493,' The….. part of a new book is often written by a more experienced writer than the author. ','foreward','foreword','forward  ','forword  ','choose the option that best completes the gap(s).','','b','','utme','2009',3829,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:26'),(494,'The officer acted in….. the instructions. ','accordance ','accordance to','accordance of','accordance with ','choose the option that best completes the gap(s).','','d','','utme','2009',3681,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:12'),(495,'The bomb was... …….','detonated  ','dismantled ','deactivated ',' depleted','choose the option that best completes the gap(s).','','a','','utme','2009',3747,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(496,'If you want to succeed in life, don\\'t be envious….. other people\\'s achievement ','of     ',' to    ','with    ','on','choose the option that best completes the gap(s).','','a','','utme','2009',3759,'Admin','0000-00-00 00:00:00','2020-08-14 13:41:36'),(497,'They are taught to value honour….. their lives.  ','from','in',' than ','above','choose the option that best completes the gap(s).','','b','','utme','2009',3806,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:56'),(498,'Our plan for the trip fell............when the rich man did not give us a life….. ?','off/boat','through/line','down/jacket ','in/help','choose the option that best completes the gap(s).','','b','','utme','2009',3745,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:57'),(499,'1 missed the match though it was shown on television on  two…….. nights. ','concurrent ','consistent ','concrete ','conservative ','choose the option that best completes the gap(s).','','d','','utme','2009',3671,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:05'),(500,'The company paid some money to Abu to... …..  him for the losses he suffered during the accident.','indemnify ',' condole with ','settle ','recompense','choose the option that best completes the gap(s).','','a','','utme','2009',3837,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(501,'You are just-putting the hat on. ……?','don\\'t you  ','isn\\'t it ',' aren\\'t you  ','not so','choose the option that best completes the gap(s).','','c','','utme','2009',3803,'Admin','0000-00-00 00:00:00','2020-08-13 16:19:38'),(502,'Government\\'s frowned upon politicians who are out to…….... Wealth','gain  ',' amass  ','steal ','waste','choose the option that best completes the gap(s).','','b','','utme','2009',3846,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(503,'I tried to discourage him, but he persisted……… revealing the secret to his son','for  ','in','  on ','to ','choose the option that best completes the gap(s).','','b','','utme','2009',3907,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(504,'He was determined to……... all opposition into submission','push ','cow ','box   ','pound ','choose the option that best completes the gap(s).','','b','','utme','2009',3833,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(505,'I am told that the market is.-, in to the interests of people from all ………….of life','tuned/walks ','constructed /places ','designed/places  ','set/works ','choose the option that best completes the gap(s).','','a','','utme','2009',3825,'Admin','0000-00-00 00:00:00','2020-08-13 17:54:12'),(506,'Uche has been in ……….with his pen pal  for years.','exchange','correspondence ','favour  ','cord','choose the option that best completes the gap(s).','','a','','utme','2009',3707,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:18'),(507,'Abba became …….... about his inability to pass the examination.','despondent ','disenchanted ','dogmatic','joyful','choose the option that best completes the gap(s).','','a','','utme','2009',3767,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(508,'c<u>aug</u>ht','hot','water','sup','wrong','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','b ','','utme','2009',3785,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:44'),(509,' c<u>ou</u>ntry','worry','courteous','bought','poultry','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','a','','utme','2009',3739,'Admin','0000-00-00 00:00:00','2020-08-14 09:43:31'),(510,' tr<u>a</u>p','wonder','because','plait','quantity','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','c','','utme','2009',3703,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:53'),(511,'  re<u>s</u>t','result','show','unasked','wise','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3705,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:24'),(512,'  <u>th</u>ought','taught','weather','theatre','fate','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3758,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(513,'sheer','dear','shirt','spare','shade','choose the option that rhymes with the given word.','','a','','utme','2009',3705,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(514,'great','creek','crate','knit','treat','choose the option that rhymes with the given word.','','b','','utme','2009',3787,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:58'),(515,'own','brown','frown','gown','phone','choose the option that rhymes with the given word.','','d','','utme','2009',3912,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:46'),(516,'ceremoniously ','CEremoniously   ','ceREmoniously','cereMOniously      ','ceremoNlously.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2009',3813,'Admin','0000-00-00 00:00:00','2020-08-13 16:19:38'),(517,'  understandable ','unDERstandable','understandABLE','UNderstandable ','underSTANDable.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2009',3728,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:45'),(518,' management ','MAnagement ','maNAgement','manaGEment ','manageMENT','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2009',3792,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:43'),(519,'I AM called Uche a pilot. ','What did Lam call Uche',' Did Okoro call Uche a pilot?    ','Did I am Uche a driver? ','Did Lam wish Uche to be a pilot?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','b','','utme','2009',3803,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(520,'The girl DANCED in the village square.   ','Who danced  in the village square?  ',' Is this the village square where the girl danced? ','Did the girl dance in the village square? ','Did the girl sing in the  village square?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','d','','utme','2009',3734,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:26'),(521,'My father READ the newspaper.','Did my father steal the newspaper? ','Who read the newspaper?',' What did my father read?','Whose father read the newspaper?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','a','','utme','2009',3713,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(522,'Though Mr, Iro is our new chairman, he views other members with jaundiced eye, ',' He takes a rather forceful position on dealing with his members.','He takes an unfavourable position concerning his members','He takes a sickly view of his members. ','He takes a rather hazy view of his members.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3896,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(523,'People are not interested in who rules ','People are not ruled by the leaders they want ','People are not concerned about who rules them ','The rulers are not concerned about the people ','People who rule are not interested in the ruled.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3906,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:13'),(524,'It is always good to steer a middle course in whatever one does. ','It is always good to get midway in anything one does. ','It is always good to act with moderation. ','It is always good to move away from the forefront','It is always good to work very hard.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3824,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(525,'The witness said he had no axe to grind with his brothers.',' He had no hatred for the brothers ','He had no axe and therefore stole the matchet ','He had no axe and therefore borrowed their matchet ','He had no vested interest in the brothers.',' select the option that best explains the Information conveyed In the sentence. ','','d','','utme','2010',3871,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(526,'The footballers moved with their tails between their legs.','They moved happily because they won the match','They were unhappy because they had been despised  by their opponents. ','They were ashamed because they had been defeated ','they moved with their tails between their legs.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3948,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(527,'The headmaster managed to talk his way out of having  to give a speech ','He delivered a speech despite the difficulty ','He managed to give a speech out of a difficult situation ','He managed to get himself out of a difficult situation','He managed to talk on his way.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3854,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(528,'As regards the matter, we have crossed the rubicon','We are completely at a toss','We are irrevocably committed ',' We are already quaffed','We are perfectly committed.  ',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3825,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(529,'Uche is full of himself ','He is concerted ','He is complete  ','He is a rich man ','He is careful.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3820,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(530,'As debutants in that tournament, the Super Eagles were up against their first opponents by three goals to nil','The Super Eagles were playing in the tournament for the first time, but they won their match by three goals to nothing ','Though the Super Eagles were rated as the weakest side in the tournament they won their first match by three goals to nil ','Even though the Super Eagles were playing without some of their regulars, they won their match by three goals to nil.','As the best attackers in the match. the Super Eagles easily defeated their opponents by three goals to nothing.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3877,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(531,'The woman was mournful as her husband was found dead drunk  ','She was sad because her husband was absolutely drunk ','She was apprehensive that her husband would drink again as soon as he recovered from the drunken stupor. ','She was sad because her husband was drunk and always as helpless as a dead  man ','She was mourning because her husband drank and died.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3808,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(532,'I am optimistic about the Interview though It was a <i>mind- bending</i>  exercise, ','an enervating ','a debilitating','a difficult ','an easy','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3879,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(533,'The trader was amused by the  <i>cutthroat</i>  rush for the goods ','worrisome','strange ','lacklustre ','mad','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3895,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(534,'The teacher said that All\\'s essay was full of many  <i>redundant</i>  details ','unexplained ','strange','necessary ','useful','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3854,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(535,'His father surmounted the  <i>myriad</i>  of obstacles on his way ','most ','few ','all ','many','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3841,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(536,'Her  <i>ingenuous</i>  smile drew our attention ','witty',' naive ','clever ','arrogant','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3894,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(537,'Ndeni gave a  <i>flawless</i>  speech at the party ','a wonderful ','a careless ','an interesting ','an imperfect','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3942,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(538,' Beneath Ado\\'s  <i>guff</i>  exterior, he\\'s really very kind-hearted','nice','harsh ','rough ','gentle','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3824,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(539,'The captain says sports is being  <i>debased</i>  by commercial sponsorship ','localized ','perverted','elevated ','overvalued','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3794,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(540,'Governing a country is not always as  <i>straightforward as</i>  people sometimes imagine.','complicated','troublesome   ','untoward   ','Irksome','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3707,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(541,'The crowd was very  <i>receptive </i>  to the speaker\\'s suggestion ','disobedient ','repellent ','alert','Hostile','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3848,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(542,'There was a general  <i>acquiescence</i>  on the new drug law ','resistance ','discrepancy ','compromise','agreement','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3837,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(543,'Aisha seems to feel  <i>ambivalent</i>  about her future','decisive ','anxious ','ambitious ','inconsiderate','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3750,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(544,'The report of the committee contained a  <i>plethora</i>  of details',' shortage ','simplicity ','multitude',' spectrum','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3818,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(545,'The weather was still very  <i>heavy and sultry </i> ','wintry and shadowy ','cold and friendly ','cloudy and thundery','hot and uncomfortable','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3745,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(546,'Ada gave her husband a look that made words  <i>superfluous</i> ','redundant ','spurious ','unnecessary',' scanty.','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3898,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(547,'A political  <i>impasse</i>  does not offer the best opportunity for merrymaking ','manifesto ','party ','gridlock',' rally','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3869,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(548,'We were all  <i>enthusiastic</i>  as we awaited the result of the election ','bemused ','agitated ','elated','nervous','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3902,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(549,'The uniform makes the guards look  <i>absurd</i>  ','dirty','smart ','sensible','ridiculous','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3803,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(550,'The law is often  <i>tardy</i>  in reacting to changing attitude',' quick','low ','exclusive ','generous','choose the option nearest  in meaning to the word or phrase in Italics.','','b','','utme','2010',3886,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(551,'Isa and llu  <i>ate sumptuous</i>  meals on their brother\\'s wedding day','expensive ','foreign ','insipid','cheap','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3914,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(552,'Kaltume  <i>crouched</i>  over the papers on her desk ','wrote on  ','stood on ','walked over','bent over','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3812,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(553,'The <i> panacea</i>  for a country\\'s economic mess lies in systematic planning and hard work ','cure  ','hope','foresight ','trouble','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3991,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(554,'Thousands of workers have been victims of  <i>retrenchment</i>  since the military came back to power.','unemployment ','trench mentality ','suffering ','increase in penury','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3784,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(555,'The principal gave his speech   <i>off hand</i>  at the sports  meeting ','calmly ','Beautifully ','unconcerned','unprepared','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3739,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(556,'Jankoli was dressed in an old  <i>assortment</i>  of clothes','avalanche ','homogeneity ','sameness','melange','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3840,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(557,'The girl\\'s father was  <i>astounded</i>  to see her appear from the shrine ','collected ','overwhelmed','embarrassed ','astonished','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3780,'Admin','0000-00-00 00:00:00','2020-08-14 09:46:19'),(558,'The director\\'s remark was extremely  <i>apposite</i>  to the issue being discussed ','appropriate','inconsequential ','emphatic ','adequate','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3921,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(559,'Her reputation is without a  <i>blemish </i> ','struggle','problem ','fault ','blessing','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3838,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(560,'Ugo is  <i>eligible</i>  for the post of secretary ','nominated','invited','qualified ','intelligent','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3767,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(561,'This is an  <i>abridged</i> version of No Longer at Ease','an outdated    ','an enlarged ','an illustrated ','a shortened','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3905,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(562,'Lemoti ………..','is gifted only not ','is only not gifted  ','not only ','is only gifted','choose the option that best completes the gap(s)','','b','','utme','2010',3952,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(563,'He can recall the important dates in the nation\\'s history; it is interesting to listen as he rattles…….','off','over','up   ','out','choose the option that best completes the gap(s)','','a','','utme','2010',3758,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(564,'The boy told his mother','that was the girl he told her about ','that was the girl I told you about her','that was the girl I told her about ','that is the girl he told her about','choose the option that best completes the gap(s)','','a','','utme','2010',3932,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(565,'Last Monday his father asked me, .......','if\\' had come some days before ','if I had come the day before','did you come yesterday ','had I come yesterday','choose the option that best completes the gap(s)','','a','','utme','2010',3867,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(566,'His wife was badly injured in the fracas, but I think  she will pull','up  ','over ','through ','back','choose the option that best completes the gap(s)','','c','','utme','2010',3856,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(567,'A wide range of options','is ','were   ','are',' was','choose the option that best completes the gap(s)','','d','','utme','2010',3741,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(568,'One of the women who .... in the premises.... been  ordered to quit ','sells/have ','sell/has  ','sell/have','sells/has','choose the option that best completes the gap(s)','','b','','utme','2010',3752,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(569,'The new trade agreement should facilitate…..... ','more economic rapid growth  ','economic more rapid  growth ','rapid economic more growth   ','more rapid economic growth.','choose the option that best completes the gap(s)','','d','','utme','2010',3888,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(570,'The principal said that he was pleased......... my effort.',' on ','of ','with','about','choose the option that best completes the gap(s)','','c','','utme','2010',3829,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(571,'Paper is made…….. wood pulp ','on ','of ','from ','with','choose the option that best completes the gap(s)','','c','','utme','2010',3785,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(572,'Long after everyone…... the hall, Obi still sat inside.','left','is leaving ','has left','had left','choose the option that best completes the gap(s)','','d','','utme','2010',3852,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(573,'They are the.... dresses ','babys\\' ','baby ','babies','babies\\'','choose the option that best completes the gap(s)','','d','','utme','2010',3864,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(574,'The politician was sent …….. exile','onto ','into','on ','to','choose the option that best completes the gap(s)','','c','','utme','2010',3827,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(575,'When we looked up, we …….... the plane some miles away. ','site ','cited ','sited ','sighted','choose the option that best completes the gap(s)','','d','','utme','2010',3885,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(576,'Vital... is still spread ……..... word of mouth in most villages in Africa. ','information/from  ','information/with','information/by ','information/through ','choose the option that best completes the gap(s)','','c','','utme','2010',3768,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(577,'Western  education is one of the ... of colonial rule','legacies  ','evidence ','remnants ','inheritance ','choose the option that best completes the gap(s)','','a','','utme','2010',3810,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(578,'The Federal Government has .... child trafficking ','postulated  ','projected ','prescribed ','proscribed','choose the option that best completes the gap(s)','','d','','utme','2010',3964,'Admin','0000-00-00 00:00:00','2020-08-14 16:34:12'),(579,'The man was happy that his son confessed his guilt and so the others were .... ','implicated','accused ','punished ','Exonerated','choose the option that best completes the gap(s)','','d','','utme','2010',3844,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(580,'  Based on the facts before me, I have no alternative...........to hold you responsible ','only ','as ','than ','but','choose the option that best completes the gap(s)','','c','','utme','2010',3853,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(581,'Many people would always find reasons to ... the law','arrogate ','debase  ',' circumvent ','circumspect','choose the option that best completes the gap(s)','','c','','utme','2010',3724,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(582,'c<u>oup</u> ','whup  ','shoot ','couple ','scout','choose the option that has the same vowel sound as the one represented by the letters underlined.','','b','','utme','2010',3945,'Admin','0000-00-00 00:00:00','2020-08-15 03:36:45'),(583,'ind<u>i</u>ct ','bright   ','fish ','pick ','brick','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3772,'Admin','0000-00-00 00:00:00','2020-08-14 16:34:12'),(584,'r<u>oa</u>red ','towered ','coast ','brought ','rod','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3792,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(585,'shea<u>th </u>','bathe ','length ','months ','paths','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2010',3834,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:29'),(586,'<u>h</u>igh ','what  ','honest ','who ','vehicle','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3902,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:55'),(587,'o<u>f </u>course  ','plough ','dough ','over ','orphan','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3791,'Admin','0000-00-00 00:00:00','2020-08-16 00:10:56'),(588,'boys ','stays  ',' moist ','noise ','elbows','choose the option that rhymes with the given word.','','c','','utme','2010',3968,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(589,'shine ','clean ','fine ',' machine ','lain','choose the option that rhymes with the given word.','','c','','utme','2010',3711,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(590,'seer ','snare   ','spare','spear ','square','choose the option that rhymes with the given word.','','c','','utme','2010',3773,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(591,'political ','politiCAL  ','POlitical','poliTlcal','poLltical','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3917,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(592,'satisfactory ','satisfacTORY  ','saTISfactory','SATisfactory ','satisFACtory','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3741,'Admin','0000-00-00 00:00:00','2020-08-14 14:24:10'),(593,'captivity ','captiviTY   ','captiVIty  ','capTlvity','CAPtivity','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','c','','utme','2010',3753,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(594,'EMEKA finished his home work yesterday ','Was Emeka helped to do his home work? ','Did Emeka do his home work yesterday?','When did Emeka finish his home work? ','Who finished his home work yesterday','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','d','','utme','2010',3802,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:57'),(595,'Taiwo SAILED to London','Did Taiwo fly to London?',' Did Taiwo sail to Brazil','Did Taiwo sail to London?','Where did Taiwo sail to?','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','a','','utme','2010',3783,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31'),(596,'My bag is made of LEATHER ','Whose bag is made of leather? ','Is my bag made of polythene? ','Is Abu\\'s bag made of leather? ','Is my bag made of leather','the word in capital letters has the <i>emphatic stress.</i> Choose the option to which the given sentence relates','','b','','utme','2010',3828,'Admin','0000-00-00 00:00:00','2020-08-16 14:14:31');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `englishlit` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `englishlit` VALUES (1,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son','question is on William Shakespeare\\'s hamlet','','d','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(2,'Prince Hamlet refrains from killing King Claudius while the latter is praying because ','he does not want to murder a pious man ','he is not yet fully convinced of his uncle’s guilt  ','King Claudius might thereby gain eternal life ','murder of a person paying is an unpardonable sin ','question is on William Shakespeare\\'s hamlet','','b','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:32'),(3,'Which of these best describes setting in a novel? ','the place where an event takes place ','the time when an event takes place ','the place and time of an event ','the back ground of an event ','question is on William Shakespeare\\'s hamlet','','c','','post-utme','2006',116,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(4,'The farm Flincomb-Ash is symbolic of: ','Tess\\'s fallen state ','Tess\\'s innocence ','Tess\\'s happiness ','the suffering and ill-luck that is Tess\\'s fate','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','d','','post-utme','2006',129,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(5,'Prince, in the novel, is','the title of Tess\\'s ravisher ','Angel Clare\\'s other name  ','the name of a horse ','the name of Tess\\'s brother ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','c','','post-utme','2006',113,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(6,'The period Tess spends at Talbothays is the period of her:','the happiest period of her life ','the period she suffers most horribly in the novel ','the period she falls into temptation ','the period when she became pregnant ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','a','','post-utme','2006',106,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(7,'The play starts with a ','flashback ','prayer ','muezzin ','dialogue ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',129,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(8,'Caliph: \\\"Atthiru invites Mallam because ','Mallam has offended the caliph ','Mai Worno needs to be talked to ','Attahiru wants Mallam to explain the dream he had ','Mallam and Mai Wurno are friends ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',144,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(9,'Caliph: \\\"You have spoken well. I agree with the Waziri\\' s suggestion. You shall be organize your men and build in new well in the market. “That is our judgement\\\". What informed this statement? ','Waziri fight with the white man ','Waziri\\'s disagreement with Sarkin Zango ','the dispute between Caliph Attahiru and Prince Muhammed al-Tahir  ','the dispute between Sarkin Zango and Sarkin Fatake.','question is on Attahiru, Ahmed Yerima\\'s play','','d','','post-utme','2006',131,'Admin','0000-00-00 00:00:00','2020-08-08 07:51:03'),(10,'A five-line poem that treats a nonsensical subject with humour is a ','quartet ','limerick  ','panegyric  ','sestet.','','','b','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(11,'Which of the following statement is most true about poetry?  ','the meanings of words are more important than their sounds  ','the sounds of words are more important than their meanings  ','the sounds of words are often more important than their meaning  ','sounds and meanings of words are of little consequence ','','','a','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(12,'The expression “coin of gold” in “Naett, coin of gold” is ','personification ','epithet  ','metonymy  ','metaphor ','','','d','','post-utme','2006',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:41'),(13,'What figure of speech is “shining coal”?  ','paradox ','irony  ','oxymoron','paronomasia','','','c','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(14,'The rhythm of the poem “Serenade” is  ','blue  ','jolting  ','jerky ','measured','','','c','','post-utme','2006',131,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(15,'Which of these best defined exposition in drama? ','the author’s own general introduction to the play  ','the author’s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals ','the first performance of the play on stage ','','','c','','post-utme','2006',132,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(16,'The tone or mood of the speaker in the poem is:  ','neutral  ','angry  ','happy  ','sad ','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.\\nAnd a few leaves lay on the starving sod,\\n…. They had fallen from an ash, and were gray\\n','','d','','post-utme','2006',137,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(17,'Starving sod\\\" here is: ','a metaphor ','a personification ','a simile ','a paradox.','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.','','b','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(18,'In Leopold Sedar Senghor\\'s \\\"I will pronounce Your Name\\\" Naeth represents ','Africa ','Senegal ','the poet\\'s mother ','the poet\\'s lover.','','','b','','post-utme','2006',122,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(19,'In Ofeimu\\'s \\\"we must learn Again to fly\\\" \\'Cumulus\\' symbolizes ','acloud ','old age ','sounded masses ','black hair.','','','b','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-07-14 14:50:48'),(20,'A brief but witty expression is called: ','song ','epigram','enecdote ','joke ','','','b','','post-utme','2006',114,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(21,'Pastoral poetry refers to the poetic composition of ','clergyman ','friare ','scops ','shepherds.','','','d','','post-utme','2006',142,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(22,'A literary composition that employs wit and humor to ridicule person or institution is','drama ','satire','norella ','clergy.','','','b','','post-utme','2006',129,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(23,'In a tragedy, the moment when the protagonist suffers a reversal of fortune is know as ','eatharsis ','exposition ','enagnonsis ','peripeteia ','','','d','','post-utme','2006',139,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:03'),(24,'“When he was turned over, his eyeballs stared upward in amazement and horror, his mouth was locked torn wide: his trouser soaked with blood, were torn  open, and exposed to the cold , white air of morning the thick hairs of his groin, mattered together, black and rust red, and wound that seemed to be throbbing still\\\". This passage achieves realism through the use of ','details ','simple words ','the long sentence ','the past tense ','','','a','','post-utme','2007',132,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(25,'Earth has not anything to; show more  fair. Dull would he be of soul who could pass by a sight so touching in its majesty. This city now doth, like a garment, wear the beauty of the morning. It is suggested in this line that ','the beauty of the morning gains from the beauty of the city',' the beauty of the city gains  from the beauty of the morning','the beauty of the city and the beauty of the morning are unrelated ','there is no beauty on earth.','','','d','','post-utme','2007',134,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(26,'\\\"Of 0 cam fasten nut one cup upon him with that which he had drunk tonight already. He\\'ll be as full of quarrel and offence as my young mistress\\' dog ... \\\" Shakespeare, Othello  from the statement above it can be inferred that the speaker is ','disobedient ','quarrelsome ','drunkard ','scheming ','','','d','','post-utme','2007',146,'Admin','0000-00-00 00:00:00','2020-08-07 14:45:18'),(27,'\\\"That that is why we must acc-c-cept the universal d-d-dome, b-b-because there is no d-d-d-direction, The b-b-bridge is the d-d-dome of religion and b-b- bridges d-don\\'t just g-g-go from here to the there; a bridge also face backwards\\\". Wole Soyinka, The Interpreters. The idiolectical feature of the character\\'s speech is the ','repetition of consonant sounds ','repetition of initial consonant sounds ','duplication of consonant sound clusters ','multiplication of diphthongs.','','','c','','post-utme','2007',131,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(28,'\\\"As virtuous men pass wildly away, and higher to their souls, to go,  Whilst some of their sad friends to say,  \\\"The breadth goes now\\\", and some say \\\"No\\\".  The tone of this poem is generally ','appreciative ','serious','imaginative ','conversational.','','','d','','post-utme','2007',127,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(29,'I am alone, And the murmur of my lips carry song and tears homewards from a plain a way from home. Okogbule Wonodi. \\\"Lament for Shola\\\". The poet-persona here expresses a feeling of ','love ','anger ','nostalgia ','sorrow ','','','c','','post-utme','2007',120,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(30,'One rhyme scheme typical of the English sonnet is ','bba abba cde cde ','bba abba cde dce ','abab cdcd efef gg ','abcd babb cde cc','','','c','','post-utme','2007',143,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(31,'Face thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(32,'A short witty statement is an ','epistle ','eulogy','epigram ','anecdote','','','c','','post-utme','2007',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:10'),(33,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2007',121,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(34,'A literary device that creates a mental picture of a situation is ','imagery','symbolism ','flashback ','epilogue.','','','a','','post-utme','2007',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:12'),(35,'Periphrasis in poetic diction is marked by ','circumlocution ','irony ','proverb ','parable.','','','a','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:13'),(36,'A deliberate imitation of a literary style with the intention to ridicule is ','lampoon ','prosody ','pun ','parody.','','','d','','post-utme','2007',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:14'),(37,'What happened to Tess at the end of Thomas Herds Tess of the D\\'urbervilles?','She is executed for committing murder ','She got married to Angel Clare ','She got married to Alec D’Urbervilles ','She gave birth to a baby boy.','','','c','','post-utme','2007',120,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(38,'The wood where Alec raped Tess is known as: ','Chase borough ','The Chase ','Greenhill ','Trantridge.','','','b','','post-utme','2007',131,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(39,'The name of the place where Tess and Angel Clare meet each other the second time is: ','Tratridge ','Brazil ','Dubeyfield','Talbothays farm.','','','d','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(40,'\\\"Taxi Driver\\\" in Timothy Wangusa\\'s \\\"A Taxi Driver on his Death\\\" can be interpreted as a metaphor describing ','a careful driver ','a ruthless dictator ','a drunkard ','a careless man.','','','b','','post-utme','2007',117,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(41,'The tone in Dennis Brutus\\' \\\"A Troubadour I Traverse .... \\\" can be described as: ','defiant ','submissive ','regretful ','arrogant.','','','a','','post-utme','2007',130,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(42,'\\\"Naett\\\" in Leopold Sedar Senmghor\\'s \\\"I will Pronounce you Name\\\" refers to: ','South Africa ','a women ','a man ','Black Africa.','','','d','','post-utme','2007',115,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(43,'\\\"Cloud I, early sequestered from my tribe, Free a lead - tethered scribe.\\\" The above lines\\' from J.P. Clark\\'s \\\"Agbor Dancer\\\" suggests that the persona is: ','one with his tribe ','alienated from his tribe ','one of the dancers ','one of the drummers.','','','b','','post-utme','2007',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:20'),(44,'The name of the author of \\\"We Must Learn to Fly\\\" is: ','Dennis Brutus ','Leopold Sedar Senghor ','Odia Ofeimun ','Wole Soyinka.','','','c','','post-utme','2007',138,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(45,'One of the following is a characteristic of a novel: ','It is written only in dialogues ','It adopts the poetic form ','It is written mainly in prose','It employs phrases and sentences.','','','d','','post-utme','2007',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:22'),(46,'The law protecting works of art from unlawful reproduction is called: ','plagiarism ','illegal photocopying ','It is written mainly in prose','copyright.','','','d','','post-utme','2007',126,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(47,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son. ','','','d','','post-utme','2007',128,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(48,'What figure of speech does the following quotation contain? A life\\'s but a walking shadow (Macbeth)','a metaphor ','an image ','a synecdoche ','an allusion','','','a','','post-utme','2008',114,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(49,'Which of the following statement is most true about poetry? ','the meanings of words are more important than their sounds ','the sounds of words are more important than their meanings ','the sounds of words are often more important than their meanings ','sounds and meanings of words are of little consequence','','','a','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(50,'Which of these best define exposition in drama?','the author\\'s own general introduction to the play ','the author\\'s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals','the first performance of the play on stage.','','','c','','post-utme','2008',118,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(51,'When the speaker in a poem cannot be identified with poet, that speaker is called: ','a persona ','a dramatic persona ','a soliloquist','a ventriloquist.','','','a','','post-utme','2008',104,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(52,'Which of these definitions best described a lyric? ','a short poem','a short poem in which the poet is speaking','a poem expressing a personal idea, feeling or mood','a poem divided into stanza.','','','c','','post-utme','2008',110,'Admin','0000-00-00 00:00:00','2020-08-07 14:45:18'),(53,'An autobiographical novel is: ','a novel written about another novelist ','a true account of a novelist\\'s life by himself ','a novel in which h the novel 1st draws mainly on materials from his own life ','a novel using the\\' I\\' pronoun.','','','c','','post-utme','2008',138,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(54,'Plot in prose fiction is best defined as:  ','the cause and effect sequence of events  ','the brief summary of events  ','the central event  ','the subject-matter of a novel.','','','a','','post-utme','2008',140,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(55,'Which of these is not true about unity of action in a novel? ','action may be unified through a single main character  ','action may be unified by being set in one place  ','action may be unified by many characters  ','action may be unified by using set in one consistent point of view.','','','a','','post-utme','2008',156,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(56,'Action in a novel is best defined as:  ','the summary of the novel’s story  ','what the characters do or say in the novel  ','the numerous sub-plots of the novel put together ','the totality of all the episodes in a novel leading to the conclusion','','','b','','post-utme','2008',127,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(57,'Suspense in a novel means:  ','the postponement of the hero’s death till the last possible moment ','the intense emotions that the author conveys  ','the inconclusive end of a novel  ','when we are curious about what happens next in a novel.','','','d','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:33'),(58,'A realistic novel is one in which the characters are:  ','real   ','historical ','just of above average intelligence  ','the types that we meet in everyday life.','','','a','','post-utme','2008',117,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(59,'Theme is best defined as:  ','the subject – matter of a novel or play ','the central idea in a play or novel  ','the point of view in that novel  ','the sum-total of all the characters’ experiences','','','a','','post-utme','2008',121,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(60,'What kind of repetition is used in the extract?  ','anaphora ','single word repetition  ','line repetition  ','phrase repetition.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-08-06 06:25:46'),(61,'A part from emphasis, what other effect does the repetition have?  ','makes the poem rhythmical  ','makes the poem tedious  ','makes the poem -notonous  ','makes the poem exhilarating.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',115,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(62,'The following line from a poem:  Western wind, when will thou blow? Is an example of: ','rhetorical question  ','caesura  ','alliteration  ','nature imagery.','','','a','','post-utme','2008',119,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(63,'Identify the odd one out of these types of imagery  ','visual imagery  ','tactile imagery  ','synesthesia  ','literal imagery.','','','d','','post-utme','2008',132,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(64,'When a poet uses mainly soft vowel sounds in a poem, the texture of the poem is ','mellifluous ','harsh ','assonantal ','neutral ','','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:39'),(65,'The sounds in the following lines may be described as an example of: The moan of doves in immemorial elms, and murmuring of innumerable bees ','alliteration ','euphony ','cacophony ','a mixture of all the above.','','','b','','post-utme','2008',137,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(66,'\\\"The man dies in him who keeps silent in the face of tyranny.\\\" This statement can be described as: ','Metaphoric ','Literal ','Tragic ','A smile.','','','a','','post-utme','2008',117,'Admin','0000-00-00 00:00:00','2020-08-07 14:45:18'),(67,'The literary technique in which a reader is taken to the past of a current action in known as:','rewinding ','fast forward ','flashback ','repetition.','','','c','','post-utme','2008',133,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(68,'One rhyme scheme typical of the English sonnet is ','abba abba cde dce ','abba abba cde cde ','abab cdcd efef gg ','abcd babb cde cc.','','','c','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-08-15 23:19:25'),(69,'The speaker of the above except is a ','son of Lord Montague ',' nephew to Lady Capulet ','kinsman to the Prince ',' servant to Paris.','\\\" ... This is a Montague, our foe; A villain, that is hither come in spit. To scorn at out solemnity this night. William Shakespeare: Romeo and Juliet I:V,61-63. ','','b','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(70,'In Gbemisola Adeoti\\'s \\\"Naked Soles\\\", the expression \\\"red milk of grief\\' means ','wine ','sea ','ink ','blood.','','','d','','post-utme','2008',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:44'),(71,'Farce thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2008',105,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(72,'A short witty statement is an ','epistle ','eulogy ','epigram ','anecdote.','','','c','','post-utme','2008',141,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:46'),(73,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2008',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:47'),(74,'Literary device that creates a mental picture of   a situation is ','imagery ','symbolism ','flashback ','epilogue','','','a','','post-utme','2008',123,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:03'),(75,'To whom does her in line 5 refers to?  ','God  ','Letter  ','World ','Nature','This is my letter to the world\\nThat never wrote to me\\nThe simple news nature told\\nWith tender majesty\\nHer message is committed\\nTo hands, I cannot see;\\nFor love of her, set countrymen,\\nJudge tenderly one me.\\n','','d','','post-utme','2009',123,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(76,'The suddenly her heart was whipped up, she now rode on strange waves: alone defying the wind and the rain; alone, fighting hunger and thirst in the desert, alone, struggling with strange demons in the forest bringing  glad tidings to her people. The mood of the lady in this  passage is one of ','simple defiance ','defeat  ','triumphant  ','depression','','','c','','post-utme','2009',108,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(77,'Mother, didn’t you hear me? I’ve brought the goat, hen and yams. Don’t you want them anymore? Why do you continue to look at me like that? I haven’t done anything wrong, again, have I, answer me, speak to me, mother’  The  dominant mood in this passage is one of ','sadness ','anxiety  ','anger  ','nonchalance.','','','b','','post-utme','2009',132,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(78,'What distinguishes poetry from other  forms of literature is its  ','Rhyme and verse ','rhythm and metaphor ','emotion and feeling  ','irony and paradox','','','a','','post-utme','2009',129,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(79,'Assonance poetry is the repetition of ','internal vowels in words ','consonant sounds in words ','final sounds at the end of a line 1 ','final sounds at the beginning of a line','','','a','','post-utme','2009',112,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(80,'There knells a jigger, a louse , a weevil, a flea, a bedbug! He is mistletoe, a parasite that lives on the trees of other people’s! the speaker uses a string of ','metaphors  ','parables  ','hyperboles  ','riddles','','','a','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:54'),(81,'As literacy form the short  story is most closely related to ','the discourse ','the novel  ','story telling  ','poetry ','','','b','','post-utme','2009',108,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:55'),(82,'A poem written on a grand theme, in an appropriately grand style, dealing, with heroic figures is called ','an epigram  ','an epic ','a soliloquy ','heroic poem','','','b','','post-utme','2009',120,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(83,'The literary device which uses ridicule to correct social ills is known as ','anecdote  ','saturation  ','hyperbole  ','satire.','','','d','','post-utme','2009',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:56'),(84,'Characterization is a novel means the ','list of characters featuring in it ','peculiar materialisms of the narrator ','mode of presenting the fictional individuals ','list of those that act the novel.','','','d','','post-utme','2009',135,'Admin','0000-00-00 00:00:00','2020-07-14 02:27:06'),(85,'Caricature is used to ','censure an individual by emphasizing his weakness ','expose the folly  in literature  ','ridicule a person by distorting his most prominent features ','elicit the artistic potential of dramatist.','','','c','','post-utme','2009',117,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(86,'The branch of knowledge that places emphasis on beauty is ','philosophy ','ode to pretty ','philology ','aesthetics.','','','d','','post-utme','2009',133,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(87,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','‘You kiss her on the cheek \\nYou kiss her open-sore lips\\nAs white people do.\\nYou suck slimy saliva\\nFrom each other’s moths.\\nAs white people do.\\nOkot P’ Breck’s song of larie\\n','','b','','post-utme','2009',127,'Admin','0000-00-00 00:00:00','2020-07-14 02:23:34'),(88,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','','','d','','post-utme','2009',137,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(89,'‘Beholds her, single in the field you solitary Highland Lass! Reaping and singing, by herself stop here, or gently pass! Alone she cuts and blinds the gram, and sings a melancholy strain, O listen! For the Vale profound Is overflowing with the sound. The rhyming schema in the first stanza of The Solitary Reaper above is ','abcbddee ','ababccdd ','alxabcdd ','abcbddef','','','a','','post-utme','2009',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:02'),(90,'The tone of the poet is ','optimistic ','dupplicatory  ','sympathetic ','piteous','These only tears\\nDripping down the tears on your depressed face.\\nWill one day be staunche.\\nI swear’ \\n','','a','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:03'),(91,'The literary device  which anticipates that an event will take place is best described as ','parody ','flashback ','foreshadowing ','rising action ','','','c','','post-utme','2009',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:04'),(92,'The multiple deaths in the play serve as a punishment for ','impatience on the part of  Romeo and Juliet; ','imposing life partners on children ','disobedience of the protagonists  ','Tybalt’s fiery temper.','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',123,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(93,'Romeo’s death becomes inevitable because ','Emire Lawrence’s is not delivered: ','Juliet is married to Paris ','Romeo kills Tybalt in a duel ','Juliet has committed suicide.','Question is based on William Shakespeare’s Romeo and Juliet','','a','','post-utme','2009',130,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(94,'Before he met Juliet, Romeo was in love with ','country Paris ','Rosaline  ','Benvolio  ','Mercuito','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',117,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(95,'The major reason for Juliet’s  grief is ','The death of her cousin; ','her reluctant marriage to Romeo  ','the banishment of her lover ','her imminent death.','Question is based on William Shakespeare’s Romeo and Juliet','','c','','post-utme','2009',123,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(96,'Winston Smith begins his rebellion against the power of the state by ','educating the youth  ','keeping a private diary  ','purchasing arms ','disobeying Big Brother.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',141,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(97,'In the novel, Orwell attempts  to ','eulogizes the beauty of the socialist system; ','condemn the disgusting hypocrisy of all communist systems; ','satirize the artificiality  of a machine controlled society ','deride the political lock jam in Nigeria.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',125,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(98,'“The experts, of course disagree the urine test they ordered ‘said, Negative’. The lives above from acqah’s in the Nanel of the soul depict ','awareness ','inevitability ','progress ','contradiction.','Question is based on selected poems','','d','','post-utme','2009',127,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(99,'In Kunene’s Heritage of Liberation, freedom is to be achieved through the efforts of ','the new generation  ','the old generation ','present generation ','successive generations.','Question is based on selected poems','','d','','post-utme','2009',120,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(100,'The thematic pre-occupation of de Graft’s  Sons and Daughters can be summarized as ','the import of Western education ','the roles of women in modern economy ','how to become a lawyer ','dimly life in the face of social changes.','','','d','','post-utme','2010',121,'Admin','0000-00-00 00:00:00','2020-08-13 13:20:30'),(101,'Lawyer Bonu in de Grafts Sons and Daughters can be described as a: ','caring father ','faithful husband ','deceitful friend ','shrewd politician.','','','d','','post-utme','2010',117,'Admin','0000-00-00 00:00:00','2020-08-13 13:20:30'),(102,'De graft’s Sons and Daughters is structured into: ','three acts ','four scenes ','two acts ','five Episodes.','','','a','','post-utme','2010',117,'Admin','0000-00-00 00:00:00','2020-08-07 14:45:18'),(103,'The central  conflict in de Graft’s Sons and Daughter is primarily: ','political ','generational ','racial','communal','','','d','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(104,'He already had five wives and was soon going to break the legs of the antelope for the sixth time’. The expression ‘break the legs of the antelope’ means to: ','be ON honeymoon ','offer ritual sacrifice ','hunt for antelopes  ','have a  new baby.','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:26'),(105,'The medal in Oyono’s The Old man and the  two sons and his: ','house ','horse  ','land ','Job','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',132,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(106,'Kelara in Oyono’s The Old man and the Medal is: ','Mvodo’s sister ','commandant’s maid  ','Meka’s wife ','Agatha’s cousin.','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(107,'In Oyonon’s The Old Man and the Medal, Ignatius Obebe isa : ','driver ','soldier ','carpenter ','catechist.','Question is  based on Oyono’s Old man hand the medal','','d','','post-utme','2010',101,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:34'),(108,'The medal in Oyono’s The Old man and the medal is a symbol of: ','colonial deceit ','African pride  ','genuine reward for loyalty ','respect and honour','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',111,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(109,'Dancing through blooming thorns” in Gbemisola  Adeoti’s Naked soles” connotes: ','hoeing a field of thorns ','dancing  in a keen competition ','being merry amidst suffering','playing flowers and plants.','Question is are based on selected African poems.','','c','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(110,'In Gbemisola Adeoti’s Naked Soles”, the expression red milk of grief’ refers to: ','wine  ','Ink ','blood ','palm-oil','Question is are based on selected African poems.','','c','','post-utme','2010',125,'Admin','0000-00-00 00:00:00','2020-08-13 13:20:30'),(111,'In Masizi Kunene’s “A Heritage of Liberation; this season’ refers to the period of: ','oppression ','freedom  ','migration  ','resettlement','Question is are based on selected African poems.','','b','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:37'),(112,'“Eagle in Kunene’s  “A Heritage  of  Liberation” is a symbol of: ','deceit ','peace ','agility ','death.','Question is are based on selected African poems.','','d','','post-utme','2010',119,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(113,'The tone in Gbemisola Adeoti’s Naked soles” is that of ','reconciliation  ','lamentation  ','exhortation ','admiration','Question is are based on selected African poems.','','b','','post-utme','2010',128,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(114,'The attitude of the poet-Persona toward bats in D.H. Lawrence’s “Bats” is that of ','revulsion ','veneration  ','admiration  ','indifference.','Questions is based on Non-African Poetry','','a','','post-utme','2010',135,'Admin','0000-00-00 00:00:00','2020-08-13 13:20:30'),(115,'In China, according to D.H. Lawrence, bats are symbols of: ','death  ','birth ','caution ','joy','Questions is based on Non-African Poetry','','d','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:03'),(116,'In Wendy Cope’s Sonnet VII,  poetry is regarded as a God –given weapon to: ','musicians ','recluses ','nomads ','pilgrims.','Questions is based on Non-African Poetry','','b','','post-utme','2010',131,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(117,'The greatest challenge to the poet-persona in Andrew Marvell’s “To His Coy Mistress’ is : ','chariot ','love  ','time ','youth','Questions is based on Non-African Poetry','','c','','post-utme','2010',133,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(118,'But the pigs were so clever that they could think of a way around every difficulty. As for the horses, they know every inch of the field and in fact understood the business of mowing and raking”. The dominant literary device in the excerpt above is ','repetition ','mimesis ','ellipsis ','personification.','Question is  based on literary appreciation','','d','','post-utme','2010',131,'Admin','0000-00-00 00:00:00','2020-08-13 13:20:30'),(119,'“The dairy maids and men had flocked down from their cottages and out of the dairy-house with the arrival of the cows from the meads: the maids walking in  patterns, not on account of weather, but to keep their shoes above the mulch of the barton”. The setting of the above  passage can be described as: ','urban  ','celestial ','pastoral  ','religious.','Question is  based on literary appreciation','','c','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(120,'“O mother, my mother!...How could I be expected to know? I was a child when I left this house four months ago. Why didn’t  you tell me there was danger in men-folk? Why didn’t you warn me?” the speech above achieves its literary effect through the use of: ','litotes  ','onomatopoeia ','allusion  ','repetition.','Question is  based on literary appreciation','','d','','post-utme','2010',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(121,'“The animals saw no reason to disbelieve him, especially as they could no longer remember very clearly  what conditions had been like before the rebellion. All the same, there were days when they felt that they would sooner have had less figures and more food”. The tone of the passage above is quite: ','exhilarating ','cynical ','optimistic ','obsequious.','Question is  based on literary appreciation','','b','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(122,'“We are tired of waiting for another war our trees their leaves have shed the winter has come and gone spring flowers have blossomed and withered” in line 2 of the poem above, the poet uses:','ellipsis ','alliteration ','inversion  ','oxymoron.','Question is  based on literary appreciation','','c','','post-utme','2010',140,'Admin','0000-00-00 00:00:00','2020-08-15 23:19:25'),(123,'The poet personal in the poem above is: ','resigned to fate  ','a holy man  ','a daily traveler  ','suffering but optimistic. ','“I come and go\\na pilgrim\\ngrubbily unkempt\\nstubbornly cheerful\\ndefiantly whistling hope\\nand grubbing for crumbs of success\\nout of all near-defeats.\\n','','d','','post-utme','2010',115,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(124,'A novel that has a very strong presence of the supernatural is known as ______ ','faction  ','gothic  ','travel tale  ','fairy novel ','','','d','','post-utme','2012',130,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(125,'In a tragic-comedy, the unknotting of the plot, the resolution of the mystery and the resolution of the misunderstanding is called  ','exposition   ','denouement   ','catharsis  ','hubris','','','b','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(126,'The exclusive right given to authors to protect their works from unlawful production or reproduction is   ','A copyright  ','an authority to write  ','an author’s right   ','a constitutional provision ','','','a','','post-utme','2012',136,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(127,'An epic deals with  ','humour  ','tragedy  ','gothic  ','hero','','','d','','post-utme','2012',133,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(128,'The sudden revelation of events as they happen is called  ','epiphany  ','revelation  ','relay-events  ','resonance ','','','d','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-08-06 06:25:46'),(129,'Comic relief is used in a work of art to  ','to suspend disbelief  ','to maneuver the portal of narration  ','to create chiaroscuro  ','to suspend to tension ','','','d','','post-utme','2012',124,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(130,'The image in this excerpt suggest ','happiness  ','sorrow ','anger  ','kindness','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','b','','post-utme','2012',136,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(131,'The world as used above is an example of  ','irony  ','metaphor ','exaggeration  ','parody ','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','c','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:07'),(132,'This extract is an example of  ','dirge  ','satire  ','ode  ','sonnet','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:08'),(133,'The general  idea in the extract is ','neglect  ','praise  ','ridicule  ','worship','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',128,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(134,'  The central motif in this excerpt is  ','religious  ','pride  ','poverty  ','deceit ','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',123,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(135,'The extract is an example of  ','pun  ','hyperbole  ','Irony  ','parody','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:17'),(136,'“Your hand is heavy, Night, upon by brow” is an example of  ','hyperbole  ','onomatopoeia  ','apostrophe  ','oxymoron ','','','a','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:18'),(137,'From this passage, the people that the writer admire are  ','poor  ','brilliant   ','rich   ','unassuming ','(Extract for question)\\nThe human beings who I most admire are those without sterling qualities but are extraordinary in their ordinariness, the unsung heroes who will never be in the limelight or boulevard of fame, people who do great things when no one is watching or those who are not marked with the maple leaves of chieftaincy titles. They only wear fate, hard work, perseverance, anonymity and time. Yet, they are passionate, caring, visionary, sincere, determined and honest. These qualities mold those that are special without being aware. I strive to stay true to some of these qualities that I admire. To find a person with a few of these qualities is rare these days. To know someone who has all of them is amazing and a true blessing. [Excerpt from Tomorrow Left Us Yesterday-Tayo Olafioye]\\n','','d','','post-utme','2012',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:19'),(138,'The writer informs the reader that people with good qualities are  ','many  ','few  ','fearful  ','famous','','','b','','post-utme','2012',130,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(139,'Aaron’s brother who trains as an accountant is  ','George  ','Awere  ','Owusu  ','Kofi','Question is based on Joe de Graft’s Sons and daughters','','d','','post-utme','2012',141,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(140,'Which of the following is true of the Awere?  ','He is the fiancé of Maanan  ','He is a chartered accountant   ','He wins a scholarship to Goldsmith College  ','He wants to study dance and choreography ','Question is based on Joe de Graft’s Sons and daughters','','a','','post-utme','2012',133,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(141,'The conflict in the play centres around  ','gender  ','generation  ','religion  ','ethnicity ','Question is based on Joe de Graft’s Sons and daughters','','b','','post-utme','2012',115,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(142,' The text of Shakespeare’s Romeo and Juliet is sourced in ','1623 second Folio  ','1590 rehearsal guide  ','1599 Quarto  ','1616 manuscript ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','a','','post-utme','2012',119,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(143,'“There’s no trust No faith, no honesty in men, all perjured, All forsworn, all naught, all dissembles” The speaker of the above excerpt is ','Nurse  ','Juliet  ','Balthasaar  ','Capulet ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','b','','post-utme','2012',121,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:24'),(144,'Another Suitor of Juliet in the play is  ','Mercutio  ','Gregory  ','Duke  ','Paris','Question is drawn from William Shakespeare’s ROMEO and JULIET','','d','','post-utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:25'),(145,'In the novel, the Ministry that is responsible for news, entertainment and fine arts in the Ministry of  ','Peace  ','Love  ','Plenty  ','Truth','Question is based on George Orwell’s Nineteen Eight Four','','d','','post-utme','2012',109,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:26'),(146,'The Ministry of Plenty in the Novel is responsible for  ','War  ','economic affairs  ','Population  ','Agriculture ','Question is based on George Orwell’s Nineteen Eight Four','','b','','post-utme','2012',122,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(147,'The national day in The Old Man and the Medal is  ','1st of October  ','27th of May  ','12th June  ','14th July','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','d','','post-utme','2012',128,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(148,'In Joys of Motherhood, Dr Meers is  ','Nnaife’s master  ','Nnuego’s uncle  ','The District Officer  ','An ombudsman','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','a','','post-utme','2012',116,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(149,'“ I don’t see how any mother who cares for the modesty of her daughter can coolly sit down there and defend such waywardness”. “way wardness” in the except above refers to  ','sexual immorality  ','painting  ','dancing  ','disobedience ','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(150,'Aaron’s painting is purchased by an American collector for the sum of ','250 dollars  ','220 pounds ','260 cedis  ','280 francs ','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:30'),(151,'James Ofosu is pleased with George because he studies ','Law  ','Accountancy ','Engineering   ','Medicine ','Question is  based  on Joe de Graft’s Sons and Daughters.','','d','','post-utme','2013',116,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(152,'Joe de Graft’s Sons and daughters is an example of ','domestic comedy ','dark comedy ','restoration comedy ','comedy of error','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',121,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(153,'The central conflict in the play is about  ','Lawyer Bonu’s attempt to seduce Maanan  ','career choice for James Ofosu’s children  ','Hannah’s lack of respect for James  ','Fosuwa’s bid to force Lawyer Bonu on Maanan','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',125,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(154,'David Rubadiri in “An African Thunderstorm” paints a graphic picture of the Thunderstorm through  the use of ',' simile and personification  ',' Irony and imagery',' hyperbole and rhyme ','innuendo and satire ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(155,'In Andrew Marvell’s “To his Coy mistress”, the poet adopts a consistent rhyming scheme of ','sestet    ','Couplet ',' tercet  ','free verse','Question is based on African and Non-African Poetry  ','','b','','post-utme','2013',125,'Admin','0000-00-00 00:00:00','2020-08-15 23:19:25'),(156,'Mazisi Kunene is an African poet from  ','Ghana ','Nigeria  ','Malawi  ','South Africa','Question is based on African and Non-African Poetry  ','','d','','post-utme','2013',143,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(157,'In T.S. Eliot’s “The Journey of the Magi”, the journey can be described as  ','delightful   ','unnecessary ','allegorical  ','symbolic ','Question is based on African and Non-African Poetry  ','','c','','post-utme','2013',130,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(158,'The dominant figurative device  in Kobena Acquah’s “In the Navel of the Soul” is','metaphor   ','assonance  ','paradox   ','euphemism ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',134,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(159,'‘fellow wayfarer…what good news do you bring me?\\\" The statement above is addressed by Meka to','the Commandant’s messenger ','a passing dog   ','a dove ','Engamba ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(160,'Gullet is so named by the natives because of his  ','razor-sharp wit  ','long neck ','closeness to the people ','hostility ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','b','','post-utme','2013',128,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:03'),(161,'The medal in the novel is a symbol of  ','ungodliness   ','victory   ','admiration ','deceit ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','d','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(162,'In the Joys of Motherhood, the joy of a mother is predicated on having ','husband    ','sons ','daughters   ','wealth ','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','b','','post-utme','2013',125,'Admin','0000-00-00 00:00:00','2020-08-06 06:25:46'),(163,'The protagonist of the novel is  ','Nwokocha Agbadi ','Nnaife  ','Nwakusor ','Nnu Ego.','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','d','','post-utme','2013',132,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(164,'From the conclusion of the novel, the author implies that ','rebellion is fruitless ','opposition pays ','two and two make four ','knowledge gives freedom.','Question is based on George Orwell’s Nineteen Eighty Four','','a','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(165,'“It was an enormous  pyramidal structure of glittering white concret, soaring up, terrace after terrace, 300 metres into the air”.','Being described in the except above is  ','The party secretariat','O’ Brien’s  residence  ','The ministry of truth ','The Ministry of Plenty ','','c','','post-utme','2013',121,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(166,'In the novel, Oceania is at war with  ','Romania   ','Catalonia    ','Eastasia ','Rhodeia','','','c','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:45'),(167,'“Minipax” in the true sense means ','ministry of Truth ','Ministry of Love  ','Ministry of War  ','Ministry of Plenty ','Question is based on George Orwell’s Nineteen Eighty Four','','d','','post-utme','2013',131,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(168,'In the Newspeak language, “duckspeak” is a word that simultaneously  refers to ','love and admiration  ','knowledge and ignorance  ','now and then ','abuse and praise ','Question is based on George Orwell’s Nineteen Eighty Four','','b','','post-utme','2013',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:47'),(169,'Hermeneutics is an art of  ','Calculation  ','exaggeration ','composition  ','interpretation ','Question is based on General literary principles.','','d','','post-utme','2013',111,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(170,'A poem written in unrhymed five stress lines is called  ','ballad  ','Blank verse ','sonnet      ','Ode','Question is based on General literary principles.','','b','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:49'),(171,'The type of sonnet that has an octave and a sestet has its origin in  ','England  ','Spain ','Portugal   ','Italy','Question is based on General literary principles.','','d','','post-utme','2013',144,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(172,'The tone of the excerpt above is  ','jubilant  ','condemnatory ','adulatory  ','defiant ','“We own this land \\n And the swamps\\n The palms\\n And the mangroves;\\n We ‘ll die defending them”\\n Tony Afejuku “Land Song”  \\n','','d','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(173,'The figurative devices in the excerpt above are  ','rhyme and metaphor  ','alliteration and assonance  ','repetition and simile  ','rhyme and onomatopoeia ','“Her voice is a shell borne by the waves to crack the egg my soul sorely craves”\\nSegun Adekoya  “Love Blues” \\n','','a','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(174,'A speech in a play in which a character speaks his or her thoughts alone is','monologue','an aside','a soliloquy','an epilogue','','','c','','wassce','2015',99,'Admin','2016-12-12 05:41:49','2020-08-10 09:07:23'),(175,'In Literature, repetition is used essentially for','rhyme','suspense','allusion','emphasis','','','d','','wassce','2015',117,'Admin','2016-12-12 05:41:49','2020-08-10 09:07:23'),(176,'The pattern of poem without reference to its content is referred to as the','limerick','metre','free verse','form','','','c','','wassce','2015',112,'Admin','2016-12-12 05:41:49','2020-08-07 14:45:18'),(177,'The performers in a play constitute the','chorus','characters','audience','cast','','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:49','2020-07-28 15:12:56'),(178,'The stanza is an example of','appellation','apostrophe','euphemism','elegy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',129,'Admin','2016-12-12 05:41:49','2020-08-13 13:04:14'),(179,'Pan is used here as','an allusion','symbol','irony','metonymy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','a','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:18'),(180,'The rhyme scheme of the stanza is','abcabcc','ababcdd','babaccc','bcbccaa','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',110,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:19'),(181,'A metrical foot in which a stressed syllable is followed by an unstressed syllable is','iambic','spondaic','trochaic','dactylic','','','c','','wassce','2015',109,'Admin','2016-12-12 05:41:49','2020-08-06 06:25:46'),(182,'________ is the location of the action of the plot','Setting','Narrative technique','Point of view','Characterization','','','a','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:26'),(183,'A ballad is essentially a ____________ poem','descriptive','dramatic','pastoral','narrative','','','d','','wassce','2015',118,'Admin','2016-12-12 05:41:49','2020-08-06 06:25:46'),(184,'The first four lines of the Shakespearean sonnet rhyme','abcd','abba','abab','cdcd','','','c','','wassce','2015',116,'Admin','2016-12-12 05:41:49','2020-08-06 06:25:46'),(185,'A story in which characters or actions represent abstract ideas or moral qualities is','an epic','a legend','an allegory','a satire','','','c','','wassce','2015',100,'Admin','2016-12-12 05:41:49','2020-08-10 21:23:13'),(186,'The use of imagery in prose or verse','appeals to the senses','develop the plot','create confusion','obscures meaning','','','a','','wassce','2015',106,'Admin','2016-12-12 05:41:49','2020-07-28 15:12:56'),(187,'The lines illustrate','soliloquy','parallelism','dialogue','contrast','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','b','','wassce','2015',116,'Admin','2016-12-12 05:41:49','2020-08-15 14:21:23'),(188,'‘heads’ in the second line is an example of','synecdoche','inversion','epithet','conceit','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','a','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-08-13 12:53:29'),(189,'A character that develops in the course of  a novel or play is described as','flat','antagonist','round','protagonist','','','c','','wassce','2015',106,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:32'),(190,'A dirge is a poem sung','to send a child to sleep','to make workers happy','at a birthday party','at a funeral','','','d','','wassce','2015',119,'Admin','2016-12-12 05:41:49','2020-08-10 21:23:13'),(191,'In drama, the ___________ creates humour','hero','clown','villain','chorus','','','b','','wassce','2015',113,'Admin','2016-12-12 05:41:50','2020-08-15 14:21:24'),(192,'<em>Let me not love thee if l love thee not</em> illustrates','metaphor','proverb','paradox','meiosis','','','c','','wassce','2015',110,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:35'),(193,'__________ is a literary device used to express something unpleasant in a more acceptable manner','Epilogue','Epigram','Euphemism','Eulogy','','','c','','wassce','2015',128,'Admin','2016-12-12 05:41:50','2020-08-13 13:04:14'),(194,'The writer’s attitude to the couple is one of','resignation','indifference','patronage','praise','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','a','','wassce','2015',123,'Admin','2016-12-12 05:41:50','2020-08-07 14:45:18'),(195,'The dominant literary device used in the passage is','litotes','personification','simile','paradox','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:50','2020-08-15 23:19:25'),(196,'The rhetorical question that ends the passage stresses the','wickedness of thieves','poverty of the couple','security of the hut','filthiness of the surroundings','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:50','2020-08-13 13:04:14'),(197,'The expression ‘such a rude room of such a poor pair’ illustrates','onomatopoeia','pun','rhyme','alliteration','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',99,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:39'),(198,'The setting is','dawn','sunset','midday','night','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',116,'Admin','2016-12-12 05:41:50','2020-08-13 12:53:29'),(199,'The rhyme scheme is','aabbccddeeff','ababababaabb','abcaabbcabab','abbaabcaabab','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-08-13 12:53:33'),(200,'The theme of the poem is','the love of mother','invoking the spirit of womanhood','admiration for women’s hard work','the suffering of women','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-08-15 14:21:24'),(201,'The literary device used in line 7 is','conceit','personification','hyperbole','pathos','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',111,'Admin','2016-12-12 05:41:50','2020-08-15 23:19:25'),(202,'The poet’s tone is one of','sadness','joy','condemnation','sarcasm','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',108,'Admin','2016-12-12 05:41:50','2020-08-13 12:53:33'),(203,'“To bring forth sons and daughters brave” illustrates','paradox','zeugma','inversion','epigram','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','c','','wassce','2015',114,'Admin','2016-12-12 05:41:50','2020-08-06 06:25:46'),(204,'The speaker is','Gonzalo','Antonio','Prospero','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',121,'Admin','2016-12-12 05:41:50','2020-08-13 12:53:33'),(205,'The addressee is','Ariel','Ferdinand','Caliban','Miranda','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',88,'Admin','2016-12-12 05:41:50','2020-08-13 13:04:14'),(206,'The “impostor” is','Sebastian','Antonio','Ferdinand','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-08-07 08:03:09'),(207,'The “advocate” and the “impostor” are','conspirators','enemies','suspicious of each other','attracted to each other','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',100,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:49'),(208,'The speaker’s utterance betrays his','anger','pretense','hatred','sorrow','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:50','2020-08-10 21:23:13'),(209,'The speaker is','Gonzalo','Antonio','Sebastian','Alonso','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',131,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:58'),(210,'“these words” refer to','the shipwreck','the son’s disappearance','the daughter’s wedding','Prospero’s magic','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','b','','wassce','2015',105,'Admin','2016-12-12 05:41:50','2020-08-13 12:53:29'),(211,'Where did the wedding take place?','Algiers','Milan','Tunis','Naples','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','c','','wassce','2015',126,'Admin','2016-12-12 05:41:50','2020-08-10 09:07:23'),(212,'The setting is','outside Prospero’s cell','on a ship','in front of Prospero’s cell','another part of the island','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',92,'Admin','2016-12-12 05:41:50','2020-08-06 06:25:46'),(213,'“.... in my rate” means','I’m very certain','so far as I can see','there’s no doubt','as it appears','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',121,'Admin','2016-12-12 05:41:50','2020-08-07 08:03:09'),(214,'Ariel has ‘come’ because','he has been invited by Prospero','he wants to make a request','he desires a meeting','flying is no problem to him','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:14'),(215,'Prospero has actually','raised a storm at sea','punished Miranda','dismissed Fedinand','commanded Ariel to disappear','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',119,'Admin','2016-12-12 05:41:50','2020-08-13 06:17:03'),(216,'Before Ariel’s entry','Ferdinand has brought in some wood','Prospero has put Miranda to sleep','Caliban had been swearing at Prospero','Trinculo had discovered Caliban’s cloak','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',117,'Admin','2016-12-12 05:41:50','2020-08-13 12:53:29'),(217,'‘Ariel and all his quality’ mean Ariel and','all at his command','the quality of a spirit','his band of spirits','an ability to cause mischief','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','d','','wassce','2015',124,'Admin','2016-12-12 05:41:50','2020-08-07 14:45:18'),(218,'Soon after, Ariel','files off to do his duty','recounts the confusion on board the ship','kneels down to worship Prospero','calls Ceres and another spirit','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',117,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:25'),(219,'X and Y are','Antonio and Alonso','Sebastian and Alonso','Antonio and Gonzalo','Sebastian and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','a','','wassce','2015',118,'Admin','2016-12-12 05:41:51','2020-08-13 12:53:33'),(220,'“We two” are','Antonio and Adrian','Sebastian and Adrian','Sebastian and Francisco','Antonio and Sebastian','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',153,'Admin','2016-12-12 05:41:51','2020-08-15 23:19:25'),(221,'The situation in the extract is highly','satirical','prophetic','ironical','comical','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','c','','wassce','2015',115,'Admin','2016-12-12 05:41:51','2020-08-13 13:04:14'),(222,'What has happened to all the other characters in the scene?','They have been made deaf and dumb','Ariel has put them all to sleep','They have been sent away','Prospero has put them to sleep','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','b','','wassce','2015',116,'Admin','2016-12-12 05:41:51','2020-07-14 14:55:37'),(223,'The “two” later plot to','kill all the other characters','escape from the island','kill Prospero and Miranda','kill Alonso and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',125,'Admin','2016-12-12 05:41:51','2020-08-15 14:21:23'),(224,'‘I simply don’t understand what the matter with everybody is today. Everybody let me down, and ...’ The speaker above is referring to','Fosuwa and Maidservant','Hannah and George','Aaron and Maanan','Lawyer B and Mrs B','Based on J.C. De Graft’s  \tSons and Daughter. ','','b','','utme','2010',166,'Admin','2016-12-12 07:52:46','2020-08-15 14:21:23'),(225,'Maanan expresses dislike for Lawyer B because of','his condemnation of  her choice career','his recent advances towards her','the betrayal of her father’s trust','the betrayal of his wife’s trust','Based on J.C. De Graft’s  \tSons and Daughter. ','','c','','utme','2010',157,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(226,'The traditional order in the play is represented by','Mrs. B','Hannah','Maanan','Aunt','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',158,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(227,'Where does the play take place?','On the street','In George’s place','In Aunt’s house','In Ofosu’s place','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',168,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(228,'‘O’ deadly sin! O rude unthankfulness! Thy fault our law calls death, but the kind Prince, Taking thy \t\tpart, hath rushed aside the law and turned that black word.....’ Deadly sin refers to the','suicide of Juliet','suicide of  Romeo','murder of  Paris','murder of  Tybalt','Based on William Shakespeare’s  \tRomeo and Juliet.','','d','','utme','2010',150,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(229,'The play is mostly written in','blank verse','free verse','metres','foot','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',131,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(230,'‘O” serpent heart, hid with a flowering face!’ The statement refers to','Juliet','Romeo','Tybalt','Benvolio','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',159,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(231,'The spatial setting of the play is','Athens','Verona','Padua','Venice','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',153,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(232,'Romeo is banished to Mantua because he','kills Tybalt in a street duel','marries Juliet without parental consent','attends Capulet’s party uninvited','attempts to kill Paris his rival','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',188,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(233,'In the novel, the society puts high value on','egalitarianism','male ascendancy','procreation','gender equity','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',157,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(234,'The medicine man links the lump discovered on the head of Nnu Ego at birth, to the','possession of physical admirable qualities that makes her an epitome of perfection','wound inflicted on the slave woman buried with Agbadi’s wife','coming back of the Agunwa to the society to live again','ill-luck and tragic events attributed to a predestined fate.','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',163,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(235,'The constant companions of  Nnaife family are','togetherness and happiness','poverty and hunger','sickness and joblessness','disagreement and humiliation','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',166,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(236,'The disagreement between Mvondo and Nticentres on the latter’s claim to have','Assisted Meka in getting the medal','eaten the entire entrails of a sheep','eaten more than his share of the food','been in a Whiteman’s office','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','a','','utme','2010',135,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(237,'In the novel, the colonialists treat the Africans with','kids gloves','disdain','indifference','honour','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','b','','utme','2010',148,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(238,'The Ministry of Peace is concerned with making','instruments','weapons','wars','reconciliation','Based on George Orwell’s  \tNineteen Eighty-Four.','','d','','utme','2010',154,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(239,'The subject matter of the novel is','Totalitarian dictatorship','exploitation and cruelty','retributive justice','class segregation','Based on George Orwell’s  \tNineteen Eighty-Four.','','a','','utme','2010',157,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(240,'How did Winston start his rebellion against the state?','By engaging in anti-party activities','By keeping a private diary','When he started a secret affair','When he spied on the party','Based on George Orwell’s  \tNineteen Eighty-Four.','','b','','utme','2010',157,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(241,'The party seeks power for','the nation','its own sake','its members','peoples’ sake','','','b','','utme','2010',159,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(242,'A play which mainly aims at provoking excessive laughter is \tcalled','a tragi-comedy','comedy','a farce','satire','','','c','','utme','2010',147,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(243,'Both comedy and tragedy have','happy ending','climax','tragic hero','stanza','','','b','','utme','2010',167,'Admin','2016-12-12 07:52:47','2020-08-15 14:21:24'),(244,'A formal dignified speech or writing praising a person or a thing for past or present deeds is','premiere','eulogy','anthology','lampoon','','','b','','utme','2010',167,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(245,'The narrative style in which the hero tells his own story directly is the','objective','subjective','first-person','third-person','','','c','','utme','2010',162,'Admin','2016-12-12 07:52:47','2020-08-15 14:21:23'),(246,'The physical, historical or cultural background of a literary work is referred to as','episode','plot','time','setting','','','d','','utme','2010',160,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(247,'A plot structure that defies chronology can be described as','open-ended','circular','episodic','organic','','','c','','utme','2010',167,'Admin','2016-12-12 07:52:47','2020-08-15 14:20:34'),(248,'Pun as a literary device deals with','placing two opposite phrase','placing words side by side','playing on words','arrangement of words','','','c','','utme','2010',150,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(249,'In a narrative poem, the poet attempts to','summarize a story','describe a place','preach a sermon','tell a story','','','d','','utme','2010',166,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(250,'The account of experiences of an individual during the course \tof a journey is known as','a travelogue','an autobiography','a catalogue','a memoir','','','a','','utme','2010',153,'Admin','2016-12-12 07:52:48','2020-08-15 23:19:25'),(251,'Satirical writing employs','epigram','synecdoche','irony','onomatopoeia','','','c','','utme','2010',162,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(252,'The person being addressed above is a','soldier','student','domestic servant','lawyer','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','c','','utme','2010',143,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(253,'From the tone of the speech above, the speaker is obviously','enraged','lackadaisical','elated','happy','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','a','','utme','2010',163,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(254,'The mood conveyed in the excerpt above is one of','sadness','frustration','sympathy','dilemma','‘That year the harvest was sad, like a funeral, and many farmers wept as they dug up the miserable yams. One man tied his cloth to a tree branch and hanged himself.’ (Chinua Achebe: Things Fall Apart)','','a','','utme','2010',166,'Admin','2016-12-12 07:52:48','2020-08-15 23:19:25'),(255,'The rhyme scheme in the excerpt above is','bbaa','aabb','abab','abba','That age is best which is the first,<br> \tWhen youth and blood are warmer, <br> \tBut being spent, the worse, and worst <br> \tTime still succeed the former. ','','c','','utme','2010',167,'Admin','2016-12-12 07:52:48','2020-08-15 23:19:25'),(256,'The subject matter of the extract above is','Storm','sea waves','house movement','earthquake','But the towering earth was tired sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of a million years was lost\t','','d','','utme','2010',142,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(257,'From the poem above, shadow means','famine','bleak future','period of sufferings','abstract ideas','And your laughter like a flame<br>\t \tPiercing the shadows<br> \tHas revealed Africa to me beyond<br> \tThe snow of yesterday<br>','','c','','utme','2010',174,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(258,'The speaker in the excerpt above is','hopeless','uncertain','afraid','confident','Don’t panic. Be calm. If you are somehow upset.... try to regain your exposure.','','c','','utme','2010',163,'Admin','2016-12-12 07:52:48','2020-08-15 14:21:23'),(259,'The poem can be described as','a lyric','an epic','a sonnet','an elegy','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',173,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(260,'The theme of the poem is','futility of  life','distortion of  life','creation of  life','vanity of  life','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',136,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(261,'The rhyme scheme of the stanza above is','aabb','abab','bbaa','abba','A cursing rogue with a merry farce,<br>  \tA bundle of rags upon a crutch, ,<br> \tStumbled upon that windy place,<br> \tCalled cruachan, and it was as much.\t','','b','','utme','2010',151,'Admin','2016-12-12 07:52:48','2020-08-15 14:20:34'),(262,'In the play, Fasuwa represents the','new culture','patriarchy','old order','African civilization.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',138,'Admin','2016-12-12 10:46:52','2020-07-22 22:14:20'),(263,'The play opens with a conversation between Aaron and Awere about','Aaron’s choice of course','Maanan’s encounter with the lawyer','George and Kofi','Hannah and George.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',120,'Admin','2016-12-12 10:46:52','2020-08-13 12:53:29'),(264,'‘I still think you can do something about it... persuade him; make him see how frustrating the whole business is bound to be for you.’  <em>The whole business in the excerpt above refers to </em>','marriage proposal','career choice','business contract','political transition.','Based on J.C. De Graft’s Sons and  \tDaughters.','','b','','utme','2008',128,'Admin','2016-12-12 10:46:52','2020-08-10 09:07:23'),(265,'The central conflict in the play is','religious','romantic','generational','communal.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:52','2020-07-14 14:57:49'),(266,'The change in fortune is achieved in the play when','James agrees that Aaron and Maanan should study what they want','Lawyer B harasses Maanan in his office','Haanah, James’ wife convinces him','Aaron and Maanan agree to read the courses James chooses for them.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',152,'Admin','2016-12-12 10:46:52','2020-08-13 13:04:14'),(267,'‘l will be brief, for my short date of breath Is not so long as is a tedious tale.’ The statement above is in reference to the speaker’s','retirement','imminent death','state of health','short-tempered nature.','Based on William Shakespeare’s Romeo and Juliet.','','b','','utme','2008',142,'Admin','2016-12-12 10:46:53','2020-08-10 21:23:13'),(268,'Romeo’s death becomes inevitable because','Friar Lawrence’s letter is not delivered','Juliet is married to Paris','Romeo kills Tybalt in a duel','Juliet has committed suicide.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',142,'Admin','2016-12-12 10:46:53','2020-08-07 14:45:18'),(269,'The multiple deaths in the play serve as a punishment for','imposing life partner on Children','treating others with hatred','disobeying one’s own parents','shedding kinsmen’s blood.','Based on William Shakespeare’s Romeo and Juliet.','','a','','utme','2008',134,'Admin','2016-12-12 10:46:53','2020-08-13 12:53:29'),(270,'The major reason for Juliet’s grief is','the death of her cousin','her reluctant marriage to the County','the banishment of her lover','her imminent death.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',129,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:28'),(271,'The chorus in the prologue of the play is essentially meant to','foreshadow the play','highlight the characters','estimate the actions','introduce the play.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',132,'Admin','2016-12-12 10:46:53','2020-08-15 23:19:25'),(272,'In the novel, Big Brother metaphorizes a','totalitarian authority','benevolent leader','revolutionary leader.','party brotherhood.','Based on George Orwell’s Nineteen  \tEighty-Four.','','a','','utme','2008',115,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:27'),(273,'In the novel, Orwell attempts to','satirize the artificiality of a machine ‘controlled society','eulogize the beauty of the socialist system','condemn the disgusting hypocrisy of all communist    \t systems','laud the boundless possibilities of the human intellect.','Based on George Orwell’s Nineteen  \tEighty-Four.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:08'),(274,'Winston Smith begins his rebellion against the power of the state by','purchasing arms','keeping a private diary','opposing the law','educating the youth.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',106,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:27'),(275,'The Ministry of Truth is concerned with','news, entertainment, education and fine arts','propaganda, war, publishing and enlightenment','investigation, propaganda and fine arts','economic affairs, education and propaganda.','Based on George Orwell’s Nineteen  \tEighty-Four.','','d','','utme','2008',146,'Admin','2016-12-12 10:46:53','2020-08-13 13:04:14'),(276,'The events following the ceremony confirm Meka’s','disillusion with the whites','satisfaction with the medal','contribution to the colonialists','admiration for the church.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','a','','utme','2008',137,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:40'),(277,'“ ‘ By my mother!’ said Engamba. The night rat doesn’t tell what happened to him in the dark! Men are born and die...”  In the statement above, The night rat doesn’t tell what happened to him in the dark! refers to','the Whiteman’s treatment of Meka','Meka’s treatment of the medal in the whitewashed circle','people’s unwillingness to talk about how Whiteman treat them','people’s freedom of expression.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',170,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:27'),(278,'In the novel, the expression  <em>fobreak the leg of an antelope</em> means','hunting','marriage','fighting','honeymoon.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-08-13 06:17:03'),(279,'Ona has to leave her father’s house because','of her love for Agbadi','that is the tradition','her father is dead','of the safety of her child.','Based on Buchi Emecheta’s The Joys of Motherhood.','','a','','utme','2008',130,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:27'),(280,'Nnaife’s conscription into the army is portrayed as part of','family conflict','British oppression','family tradition','societal intrigue.','Based on Buchi Emecheta’s The Joys of Motherhood.','','d','','utme','2008',120,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:30'),(281,'The attitude of Nnu Ego when she was told that her Chi would not give her a child is one of','indifference','despair','apathy','hope.','Based on Buchi Emecheta’s The Joys of Motherhood.','','b','','utme','2008',131,'Admin','2016-12-12 10:46:53','2020-08-15 14:21:23'),(282,'The subject matter of Adeoti’s Naked Soles is','soul and mind','hunger and strife','suffering and despair','hatred and bitterness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',127,'Admin','2016-12-12 10:46:53','2020-08-13 12:53:33'),(283,'Rubadiri’s <em>An African Thunderstorm</em> appeals to the readers’ sense of','sight and taste','feeling and sight','smell, taste and hearing','sight, smell and hearing.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','b','','utme','2008',129,'Admin','2016-12-12 10:46:53','2020-08-10 09:07:23'),(284,'‘The experts, of course Disagree. The urine test they ordered Said, Negative.’ The lines above from Acqah’s “In the Navel of the Soul” depict','contradiction','inevitability','progress','awareness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','a','','utme','2008',122,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:26'),(285,'In Kunene’s ‘A Heritage of Liberation,’ freedom is to be achieved through the efforts of','the old generation','new generation','present generation','successive generations.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',138,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:28'),(286,'Launko’s ‘End of the’ War suggests that war brings about','ultimate solution to all problems','partial solution to problems','multifaceted problems','only temporary relief.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:26'),(287,'The persona in the poem <em>Give Me The Minstrel’s Seat</em> discourages','togetherness','hatred','isolation','poverty.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:46'),(288,'Marvel’s To ‘His Coy Mistress’ is written mainly in','alternate rhymes','blank verse','heroic couplets','middle rhymes.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',129,'Admin','2016-12-12 10:46:53','2020-07-29 00:16:42'),(289,'The attitude of the poet-persona to bats, in Lawrence’s Baf is one of','satisfaction','reverence','hatred','repulsion.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',149,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:51'),(290,'The language used, in Eliot’s ‘The Journey of the’ Magi is generally','difficult','complex','simple','complicated.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',152,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:22'),(291,'In Cope’s <em>Sonnet VII</em>, poetry is','a popular act','a boring act','an idle hobby','a useless undertaking.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',137,'Admin','2016-12-12 10:46:53','2020-08-15 14:21:24'),(292,'An interlude is a brief','presentation in the interval of a dramatic performance','play before the main dramatic performance','presentation after the main dramatic performance','dialogue between two persons.','Based on General Literary Principles.','','a','','utme','2008',155,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:28'),(293,'An epic is a heroic story which includes','ballad','lyric','myth','dialogue.','Based on General Literary Principles.','','c','','utme','2008',132,'Admin','2016-12-12 10:46:53','2020-08-06 06:25:46'),(294,'Farce can be described as a dramatic piece marked by','movement from serious to the light-hearted mood','comic and exaggerated actions','actions devoid of meaning','gloomy actions with momentary reliefs.','Based on General Literary Principles.','','b','','utme','2008',122,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:39'),(295,'A long story narrating a series of complicated events is called a','saga .','discourse','monologue','harangue.','Based on General Literary Principles.','','d','','utme','2008',135,'Admin','2016-12-12 10:46:53','2020-07-22 22:14:21'),(296,'Oxymoron is the use of two contrasting words that are','placed far apart','different in meaning','placed side by side','similar in meaning.','Based on General Literary Principles.','','c','','utme','2008',122,'Admin','2016-12-12 10:46:54','2020-07-22 22:14:20'),(297,'A line or a group of lines repeated in the course of a poem is called','chorus','refrain','repetition','prologue.','Based on General Literary Principles.','','b','','utme','2008',108,'Admin','2016-12-12 10:46:54','2020-08-07 14:45:18'),(298,'Limerick is a light verse which consists of five lines that are','anapestic','trochaic','spondaic','dactylic.','Based on General Literary Principles.','','d','','utme','2008',120,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:27'),(299,'A short narrative or lyrical poem intended to be sung is a','leich','lay','lauda','letrilla.','Based on General Literary Principles.','','a','','utme','2008',135,'Admin','2016-12-12 10:46:54','2020-08-07 14:45:18'),(300,'A figurative device in which a statement is made and then withdrawn is referred to as','metanoia','metaphysical','metalanguage','metalepsis.','Based on General Literary Principles.','','d','','utme','2008',133,'Admin','2016-12-12 10:46:54','2020-08-09 10:41:12'),(301,'A literary work which imitates another in a distorted form is called','exodium','isocohen','metonymy','burlesque.','Based on General Literary Principles.','','d','','utme','2008',125,'Admin','2016-12-12 10:46:54','2020-08-06 06:25:46'),(302,'‘You do not have to be brutal to be a soldier, or rather you are brutal not because you are a soldier, but because there is a sadist, a rapist, a fascist and a murderer in you who is waiting for war and army uniforms to give them expression.’ ( Festus lyayi: Heroes ) The speaker here contends that','soldiers are generally wicked','human nature has to do with a profession','soldiers are characteristically gentle','the latent brutality in man finds expression in war.','based on Literary Appreciation.','','b','','utme','2008',159,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:27'),(303,'‘But the towering earth was tired of sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of million years was lost.’ The subject matter of the passage is','earthquake','Demolition','flood','storm.','based on Literary Appreciation.','','a','','utme','2008',129,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:26'),(304,'The image depicted is one of','destruction','dejection','happiness','admiration.','based on Literary Appreciation.','','a','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:28'),(305,'The tone of the poem above is','satiric','affectionate','indifferent','sympathetic.','based on Literary Appreciation.','','b','','utme','2008',136,'Admin','2016-12-12 10:46:54','2020-07-22 22:12:39'),(306,'Life, though a vanity Yet, not purposeful In drawling<br> resignation Life’s spice is in strive<br> From the extract above, the poet suggests that','life is full of care','there can’t be life without strive','life is worthwhile without care','strive makes life worth living.','based on Literary Appreciation.','','b','','utme','2008',120,'Admin','2016-12-12 10:46:54','2020-08-15 14:21:24'),(307,'The subject of the poem above is','a prostitute','the lying father','the son','the orphan.','based on Literary Appreciation.','','c','','utme','2008',114,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:36'),(308,'The dominant rhetorical device in the excerpt above is','rhyme','alliteration','repetition','onomatopoeia.','based on Literary Appreciation.','','b','','utme','2008',152,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:26'),(309,'The expression “The child is the father of the man” in the poem above is an example of','paradox','metaphor','simile','ellipsis','based on Literary Appreciation.','','a','','utme','2008',170,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:28'),(310,'The technique employed in narrating the excerpt above is','flashback','stream of consciousness','foreshadowing','play-within-the-play.','based on Literary Appreciation.','','b','','utme','2008',143,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:27'),(311,'The poet’s tone above can be described as','lamentative','satiric','imploring','adoring.','based on Literary Appreciation.','','a','','utme','2008',145,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:27'),(312,'In the play, the character of Lawyer B is represented through the use of','flashback','dialogue','play-within-the-play','irony','','','d','','utme','2009',125,'Admin','2016-12-12 17:55:00','2020-08-15 01:01:26'),(313,'James Ofosu’s desire is to see Maanan trained as','a choreographer','an attorney','an accountant','a surgeon','','','b','','utme','2009',140,'Admin','2016-12-12 17:55:00','2020-07-25 14:33:41'),(314,'The plot of the play is,','linear','cyclical','complicated','episodic','','','d','','utme','2009',141,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:42'),(315,'What causes the strained relationship between James and Lawyer B?','Betrayal of trust','Standard of education','Working experience','Family differences','','','a','','utme','2009',157,'Admin','2016-12-12 17:55:01','2020-08-13 12:53:33'),(316,'‘Now look what we have: a permanent bloom of ugly paper flowers! The device used by Aaron in the excerpt above is','suspense','rhetorical question','oxymoron','allegory','','','c','','utme','2009',142,'Admin','2016-12-12 17:55:01','2020-08-15 14:21:23'),(317,'When Friar Lawrence asks if the bride is ready, he wants to know if','Juliet is prepared','Rosaline is prepared','the corpse is ready','the bride is dressed','based on William Shake¬speare’s  \tRomeo and Juliet.','','c','','utme','2009',129,'Admin','2016-12-12 17:55:01','2020-08-13 12:53:33'),(318,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nWhat makes Juliet’s night so tedious is the','murder of Tybalt by Romeo','arranged marriage between her and Paris','Eagerness’ to be married to Romeo','unconsummated marriage with Romeo','based on William Shake¬speare’s  \tRomeo and Juliet.','','d','','utme','2009',120,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:42'),(319,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nThe literary device used in the excerpt is','euphemism','simile','sarcasm','bathos','based on William Shake¬speare’s  \tRomeo and Juliet.','','b','','utme','2009',134,'Admin','2016-12-12 17:55:01','2020-08-15 23:19:25'),(320,'The atmosphere of tragedy in the play is created through the use of','dreams and foreboding','fights and quarrels','wars and hatred','ideas and dramatization','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',135,'Admin','2016-12-12 17:55:01','2020-08-15 14:21:23'),(321,'Shakespeare depicts love and idealism through the','party at tire Capulets’','lovers’ tomb at the end','brawl between Romeo and Tybalt','balcony scene in the second Act.','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',134,'Admin','2016-12-12 17:55:01','2020-08-15 01:01:27'),(322,'In the novel, the party approves separation of couples only','on condition of infidelity','where there are no children','in situation of irreconcilable differences','on the death of one of the couples','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',156,'Admin','2016-12-12 17:55:01','2020-08-15 01:01:26'),(323,'One of the themes of the novel is','colonialism','repression','senility','destruction','based on George Orwell’s  \tNineteen Eighty-Four','','b','','utme','2009',143,'Admin','2016-12-12 17:55:01','2020-08-15 14:21:23'),(324,'Newspeak, the official language of Oceania, is devised to','meet the ideological needs of Ingsoc','help devoted party men and women','provide a medium of expression for world-view only','assist by cutting the choice of words for party members.','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',141,'Admin','2016-12-12 17:55:01','2020-08-13 13:04:14'),(325,'The main concern of Winston in the novel is to','take power for himself','acquire wealth','overthrow the party','bring social change','based on George Orwell’s  \tNineteen Eighty-Four','','d','','utme','2009',118,'Admin','2016-12-12 17:55:01','2020-08-15 01:01:26'),(326,'“We are hereto die of raget !say die of rage because this time the uncircumcised have gone too far...” The word uncircumcised in the statement above by Nli refers to','Nua and Mvondo','the whites','the people of Doum','the white farmers.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','b','','utme','2009',125,'Admin','2016-12-12 17:55:01','2020-08-15 14:21:23'),(327,'The only two sons of Meka die fighting for','independence','the colonialists','the church','the in people.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',133,'Admin','2016-12-12 17:55:01','2020-08-13 13:04:14'),(328,'In the novel; Africanness is .achieved in both','setting and characterization','narration and style','diction and syntax','pun and style','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',119,'Admin','2016-12-12 17:55:01','2020-08-15 14:21:23'),(329,'What prompts Nnu Ego to run to the effigy of her chi is that ...','she is worried and sick','she is pregnant','the chi asks her to come','milk is dripping from her breasts.','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','d','','utme','2009',140,'Admin','2016-12-12 17:55:02','2020-07-26 20:56:08'),(330,'In the society of Nwokocha Agbadi, a man’s social rating determined by his','oratorical power','physical prowess','gentle men','altruistic actions','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',145,'Admin','2016-12-12 17:55:02','2020-08-15 01:01:26'),(331,'‘look at me jubilant for being given another opportunity to \tlive longer, and see this foolish woman eager to end her own life when her Maker is not yet ready for her...’The opportunity referred to in the extract above is','the misunderstanding between Nnaife and his wife','narrowly escaping being knocked down','the driver’s encounter with Nnu Ego','ominous visit of Agunwa','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',137,'Admin','2016-12-12 17:55:02','2020-08-10 09:07:23'),(332,'Thorn in “Adeoti’sNaked Soles” symbolizes','victory','bleakness','destruction','suffering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',119,'Admin','2016-12-12 17:55:02','2020-08-15 01:01:28'),(333,'‘Pregnant clouds Ride Safely on its back’ Pregnant clouds in Rubadiri’s “An AfricanThunderstorm implies”','uncertainty','calmness','disbelief','fertility','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',141,'Admin','2016-12-12 17:55:02','2020-08-07 14:45:18'),(334,'The phrase the sunset in Kunene’s “A Heritage of Liberation” refers to','critical need','old age','patience','caution','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',149,'Admin','2016-12-12 17:55:02','2020-08-15 23:19:25'),(335,'‘The silence of the battlefield heralds the widow’s anguish’ The widow in the lines above in Launko’s “Endof the War” is in anguish because of the','confirmation of her husband’s death','uncertainty over her husband returning alive','delay in the husband’s return from the battlefield','death of all the soldiers in the battlefield','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',127,'Admin','2016-12-12 17:55:02','2020-08-13 12:53:33'),(336,'The end of “Give Me The Minstrel’s Seat”, seems to suggest that one needs the','support of others','complete command of one’s wives','support of one’s kinsmen','aid of poets','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',134,'Admin','2016-12-12 17:55:02','2020-08-13 12:53:33'),(337,'According to “Give Me The Minstrels Seat”, a woman is','a necessary evil','only fulfilled when married','naturally jealous','a harbinger of good luck','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',132,'Admin','2016-12-12 17:55:02','2020-08-10 21:23:13'),(338,'In Marvel’s “To His Coy Mistress”, the poet-persona tries to','Build up the climax of expectation of women','discuss how a woman labour hard','meet the people’s expectation in a religious adventure','discuss the nature of man and the value of time.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',118,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(339,'In Lawrence’s Bat, the poet’s attitude to bat is one of','fear','sarcasm','contempt','flattering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',125,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:42'),(340,'The first stariza of Eliot’s “The Journey of the Magi” depict the','hazards of the journey','increment of fortune for the pilgrims','blind acceptance of faith','journey as an influential factor.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',135,'Admin','2016-12-12 17:55:02','2020-08-07 08:03:09'),(341,'In cope’s “Sonnet VII”, poets are presented; as','recluses','travelers','sociologists','searchers','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',143,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(342,'A poetic devices in which an idea in a line runs into another is called','rhyme scheme','enjambment','end rhyme','pathos','based on General Literary Principles.','','b','','utme','2009',143,'Admin','2016-12-12 17:55:02','2020-08-15 01:01:28'),(343,'The use of sound pattern to suggest meaning in poetry is','rhythm','mimics','lyric','metonymy','based on General Literary Principles.','','a','','utme','2009',143,'Admin','2016-12-12 17:55:02','2020-08-15 01:01:27'),(344,'A conscious imitation of a literary work by another with the aim of ridicule is','mimesis','performance','mockery','parody','based on General Literary Principles.','','d','','utme','2009',134,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(345,'The use of gestures to communicate in drama is known as','burlesque','soliloquy','mime','melodrama','based on General Literary Principles.','','c','','utme','2009',140,'Admin','2016-12-12 17:55:03','2020-08-13 13:04:14'),(346,'A short and witty remark is','a limerick','a tercel','an epigram','a litotes','based on General Literary Principles.','','c','','utme','2009',128,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:42'),(347,'An expression that signifies a whole through its significant parts is','synesthesia','synecdoche','metonymy','allegory','based on General Literary Principles.','','b','','utme','2009',127,'Admin','2016-12-12 17:55:03','2020-07-28 15:12:56'),(348,'a structural arrangement of units of composition by which one element of equal importance with another is similarly placed is called','repetition','paradox','refrain','parallelism','based on General Literary Principles.','','d','','utme','2009',131,'Admin','2016-12-12 17:55:03','2020-08-07 14:45:18'),(349,'The pride that contributes to the fall of a tragic character in a play is known as','hamartia','catharsis','hubris','epistasis','based on General Literary Principles.','','a','','utme','2009',149,'Admin','2016-12-12 17:55:03','2020-08-15 01:01:26'),(350,'metrical foot of two stressed or long syllables is called','a spondee','a trochee','an anapest','an iamb','based on General Literary Principles.','','a','','utme','2009',140,'Admin','2016-12-12 17:55:03','2020-08-13 12:53:29'),(351,'A group of three lyric stanzas in classical Greek poetry is referred to as','triplet','triolet','trilogy.','triad','based on General Literary Principles.','','b','','utme','2009',136,'Admin','2016-12-12 17:55:03','2020-08-06 06:25:46'),(352,'Biokun:  I did it for her! Let them laugh!<br>\\n\t\t\t\tLet them condemn me. I who have always <br>\t\\n\t\t\t\tderided superstition. I have gone bach to the <br>\\n\t\t\t\tshrine of Olokun. At least if he dies, Oroki <br>\\n\t\t\t\twill know I tried everything. <br>\\n\t\t\t\t(Femi I Qsofisan: No More the Wasted Breed)<br>\\nBiokun’s mood in this passage is one of','desperation','frustration','anger','anxiety','based on Literary Appreciation','','b','','utme','2009',145,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(353,'\t‘My song is the root<br>\\n\ttouching other roots <br>\\n\tin a covenant below the crust..’<br>\\n\t(Niyi  Osundare: Waiting Laughters)<br>\\n\\nThe imagery used in the second line of the extract above is','olfactory','visual','tactile','auditory','based on Literary Appreciation','','c','','utme','2009',123,'Admin','2016-12-12 17:55:03','2020-07-28 15:12:56'),(354,'‘The huge sacrifice that <br>\\n\twards off death <br>\\n\tThe big offering that <br>\\n\tprevents diseases....’ <br>\\n\t( Temi Osofison: Morountodun ) <br>\\nThe poem above can best be described as','epic','heroic','praise','quatrain','based on Literary Appreciation','','d','','utme','2009',143,'Admin','2016-12-12 17:55:03','2020-08-13 12:53:33'),(355,'Why blame her who denies love for the asking <br><br>\\n\tAnd not the Birds and Moths and Beetles <br>\\n\tThat after deep draughts from rich nectar wells <br>\\n\tFlee the drained petals to virgin flowers. <br>\\nThe lines above are an indictment of','adultery','gluttony','flirtation','infertility','based on Literary Appreciation','','b','','utme','2009',114,'Admin','2016-12-12 17:55:03','2020-07-26 20:56:08'),(356,'\tOh, the market is set like the hub of a wheel <br>\\n\tAnd it pulfs \tlike a magnet strong <br>\\n\tIt is easy to tell <br>\\n\tHow it casts its spell <br>\\n\tAnd draws all the crowds along. <br><br>\\nThe sound device used in the extract above is','rhyme','alliteration','emphasis','assonance','based on Literary Appreciation','','a','','utme','2009',139,'Admin','2016-12-12 17:55:03','2020-07-22 22:12:40'),(357,'A reference beyond the immediate purview of what is being presented is known as','allusion','diversion','inversion','imagery','based on Literary Appreciation','','a','','utme','2009',142,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(358,'‘The how is her barber’ The line is an example','metaphor','hyperbole','personification','litotes','based on Literary Appreciation','','a','','utme','2009',140,'Admin','2016-12-12 17:55:04','2020-08-15 01:01:28'),(359,'‘From the sky suspended <br>\\n\tthe strings of tattered pants <br>\\n\tmarched on trembling feet <br>\\n\tunder stone heavy-kits <br>\\n\tmarched, on their breast <br>\\n\tscared, monogram of skulls and bones.’ <br>\\n\t( Ossie Enejwe: Mass for the Dead ) <br><br>\\n“The subject matter of the extract above is','wastage','war','love','hatred','based on Literary Appreciation','','b','','utme','2009',130,'Admin','2016-12-12 17:55:04','2020-08-07 14:45:18'),(360,'‘Tonderai was assisted by the villages in placing his truck box into the back for the car and he got into the passenger side of the truck. Initially, he was a bit nervous and clearly uncomfortable, his young mind was asking how someone whom, he had almost caused a serious accident could be his benefactor.’ ( Daniel T. Manyika: Two worlds Apart )\\n\\n<br><br>The narrative point of view used in the extract above can best be described as','omniscient','subjective','panoramic','scenic','based on Literary Appreciation','','a','','utme','2009',123,'Admin','2016-12-12 17:55:04','2020-08-13 12:53:29'),(361,'‘Me to the Orangery<br> \\n\tSolitude invites, <br>\\n\ta wagtail, to tell the<br>  \t\t\t\\n\ttangled-wood-tale.’ <br>\\n\t( Christopher Okigbo: Heavengate ) <br><br>\\nThe complexity of the poem can be ascribed to the poet’s use of','archaic diction','structural inversion','compound words','extended met','based on Literary Appreciation','','b','','utme','2009',178,'Admin','2016-12-12 17:55:04','2020-08-15 01:01:27');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `entertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `entertainment` VALUES (1,'What year was ?Africa Queen? music track released by Tu-face Idibia?','2001','2002','2003','2004','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track ?African Queen? came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D?Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D?Banj  first album released?','2002','2005','2001','2004','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `fashion` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `fashion` VALUES (1,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,' ?Ole ku? dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Nigeria won Miss World','2000','2001','2002','2003','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknowledge` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `section` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'used by zh round 3',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknowledge` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many planets do we have?','10','9','8','6','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' What is the position of the Earth from the Sun?','1','2','3','4','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,' What year was Facebook created?','2001','2002','2003','2004','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'The first university in the world was?','Oxford','Al-Azhear of Cairo','Harvard','MIT','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year did Nigeria became a republic?','1960','1965','1963','1914','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,' What year did Tsunami occur','2000','2004','2005','2006','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' When did World War 1 started','1918','1901','1914','1910','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknwbrag` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknwbrag` VALUES (1,'What year was “Africa Queen” music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track “African Queen” came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo’ hit records','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D’Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D’Banj  first album released?','2002','2005','2001','2004','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'How many planets do we have?','10','9','8','6','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What is the position of the Earth from the Sun?','1','2','3','4','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What year was Facebook created?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'The first university in the world was…','Oxford','Al-Azhear of Cairo','Harvard','MIT','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' What year did Nigeria became a republic?','1960','1965','1963','1914','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' What year did Tsunami occur','2000','2004','2005','2006','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' When did World War 1 started','1918','1901','1914','1910','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(54,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(55,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(56,' ‘Ole ku’ dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(57,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(58,'What year did Nigeria won Miss World','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(59,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(60,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(61,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(62,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(63,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(65,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(66,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(67,'Who was the last successful Manchester United Coach?',' Sir Ali Ferguson.',' Alex Ferguson.',' Sir Alex Ferguson',' Sir Alex Fergson','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(68,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(69,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(70,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(71,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(72,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(74,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(75,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(76,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(77,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(78,'Which Nigeria football club won the Premiership title back –to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(79,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(80,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(81,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(82,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(83,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(84,'How many rings are in the Olympic colours?','6','5','4','3','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(85,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(86,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(87,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(88,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(89,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(90,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(91,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(92,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(93,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(94,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(95,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(96,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(97,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(98,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(99,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(100,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(101,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(102,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(103,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(104,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(105,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(106,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(107,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(108,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(109,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(110,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(111,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(112,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(113,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(114,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(115,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(116,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(117,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(118,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(119,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(120,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(121,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(122,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(123,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(124,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(125,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(126,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(127,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(128,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(129,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(130,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(131,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(132,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(133,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(134,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(135,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(136,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `geography` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=237 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `geography` VALUES (1,'The earth rotates through 150 of longitude once in  ','a minute  ','an hour  ','24 hours  ','a day','','','b','','post-utme','2006',211,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(2,'Aeolian erosion refers to the work of ','Plants ','Wind  ','Ice ','running water','','','b','','post-utme','2006',174,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(3,'The scale of a map is the ratio between the  ','distance over the land and the distance over the water ','distance on the map and the distance on the globe ','vertical and horizontal differences  ','distance on the map and that on the earth’s surface ','','','d','','post-utme','2006',190,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(4,'Which of the following scales should show the greatest amount of detail on a map?  ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2006',185,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(5,'Which of the following statements is not true for lines of latitude?  ','they form parallel circles   ','they range from 00 to 1800 N and S  ','only one line is also a Great Circle ','They form parallel circles','','','b','','post-utme','2006',187,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(6,'Large in area and high in population, which of the following countries fits this description?','Lesotho  ','Togo ','Nigeria  ','Zaire','','','c','','post-utme','2006',214,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(7,'One of these is NOT a landform in Africa   ','Scarp ','Inselberg  ','Drumlin','Doline','','','c','','post-utme','2006',209,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(8,' Which of these does not lie in the principal earthquake region of the world? ','Japan ','Kenya  ','Iran   ','Turkey ','','','b','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(9,'Which  of   these  soil  groups  is  considered   the  most  productive?   ','Chernozems   ','Latosols  ','Podozols   ','Sierozems','','','a','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-08-12 12:05:08'),(10,'One example of inland drainage lake in  Africa is  ','Lake Chad ','Lake Victoria ','Lake Malawi ','Lake Turkana','','','a','','post-utme','2006',176,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(11,'The African river that crosses the equator twice is  ','Zaire ','Nile ','Mississippi  ','Amazon','','','a','','post-utme','2006',224,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(12,'Some rivers in their delta regions breaks into many branches before entering the sea. These divisions are known as  ',' Creeks ','Distributaries','Tributaries ','Effluents','','','b','','post-utme','2006',205,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(13,'Kariba Dam is found in River  ','Zambezi ','Congo  ','Niger  ','Nile','','','a','','post-utme','2006',190,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(14,'The major air mass affecting the climate of West Africa in summer is the  ','harmattan wind  ','tropical continental  ','warm equatorial  ','tropical maritime ','','','b','','post-utme','2006',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:03:03'),(15,'If a map has a scale of 1:50,000 and a cocoa plantation is represented on the map by a rectangle 4cm by 3cm, what is the area of the plantation?  ','3 sq. km  ','30 sq. km  ','12 sq. km  ','20 sq. km','','','a','','post-utme','2006',191,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(16,'The gap between two ranges within which transportation is usually possible in a mountainous regions is called  ','Valley  ','Col  ','ridge  ','Spur','','','b','','post-utme','2006',165,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(17,'What are greenhouse gasses?  ','Gases found around green houses in botanical gardens  ','Gases which are able to trap heat on the earth surface  ','Gases which help global circulation of winds and plants it growths  ','Gases which help farmers grow certain crops during the dry seasons','','','b','','post-utme','2006',215,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(18,'The doldrums refer to  ','land areas bordering the confluence of the blue and white Nile  ','areas intense weather activities around the Mediterranean  ','areas of South Atlantic where cold and warm currents meet  ','area within a few degrees north and south of the equator.','','','d','','post-utme','2006',175,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(19,'Nigeria Sat I is designed by primarily to  ','help GSM provider in achieving a wide national coverage  ','strengthen rapid response by Nigeria’s Armed Forces  ','help in the 2006 Census  ','provide information about various regions of the earth','','','d','','post-utme','2006',190,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(20,'The major sedimentary minerals found in Nigeria include:  ','tin, columbite and gold ','tin, coal and salt  ','limestone, columbite and diamond  ','limestone, petroleum and coal','','','d','','post-utme','2006',197,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(21,'The cloud which are white globular masses, forming ripples in the sky is called  ','Cirrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2006',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:08:18'),(22,'Which of the following routes must have least gradient?  ','Motorway ','Rail line  ','Bush path  ','Carnal ','','','b','','post-utme','2006',174,'Admin','0000-00-00 00:00:00','2020-08-12 09:07:05'),(23,'The foremost producers of petroleum in the Middle East are:  ','Saudi Arabia, Kuwait, Libya and Iran  ','Saudi Arabia, Iraq, Iran and Kuwait  ','Saudi Arabia, Iran, Venezuela and Oman ','Saudi Arabia, Iraq, Libya and Venezuela','','','b','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(24,'Which of the following is not an Anglophone country  ','Ghana  ','Gambia  ','Liberia  ','Senegal','','','d','','post-utme','2007',217,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(25,'The shallow part of the sea which separates the deep from the land is called  ','off shore coastal lowland  ','the on-shore tidal current  ','continental shelf formation  ','coastal coral cliff ','','','c','','post-utme','2007',168,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(26,'The port that handle the highest volume of cocoa export in Nigeria is  ','Sapele  ','Warri  ','Lagos  ','Port Harcourt','','','c','','post-utme','2007',186,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(27,'One major characteristics of rural settlements is that  ','are heterogeneous  ','are homogenous  ','are large in size  ','have more problems than urban settlements','','','b','','post-utme','2007',226,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(28,'Industrialization in Nigeria can best be promoted through the development of  ','textile industry  ','leather industry  ','iron and steel industry  ','automobile industry ','','','c','','post-utme','2007',195,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(29,'Most of the industries located in rural areas are  ','low energy consumers  ','high energy consumers  ','raw materials oriented  ','transport oriented ','','','c','','post-utme','2007',219,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(30,'The distribution of minerals resources in Nigeria is related to its:  ','relief  ','soil  ','vegetation  ','geology ','','','a','','post-utme','2007',183,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(31,'Which of the ocean currents is classified as cool?  ','Benguela  ','Kuro Siwo  ','Gulf Scream  ','Mozambique ','','','a','','post-utme','2007',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:02:23'),(32,'The sea area with the highest degree of salinity is the ','Baltic Sea  ','Caspian Sea  ','Dead Sea  ','Mediterranean Sea','','','c','','post-utme','2007',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(33,'The thermometric scale usually employed to described the absolute temperature of the atmosphere is  ','Centigrade  ','Celsius  ','Kelvin  ','Fahrenheit ','','','c','','post-utme','2007',212,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(34,'If the temperature at sea level in a particular place is 200C, place 3500m above sea level in the same area will have a temperature of  ','- 2.750C   ','2.250C  ','22750C  ','22.750C','','','a','','post-utme','2007',196,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(35,'Which of the following is not a form of precipitation? ','Dew   ','Snow   ','hail ','fog ','','','d','','post-utme','2007',196,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(36,'Which of the following pressure belts does not experienced descending air?  ','600N  ','600S  ','00 latitude   ','300N','','','a','','post-utme','2007',190,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(37,'In the tropics, the most variable climatic element inter-annually is  ','temperature  ','solar radiation   ','pressure  ','prairies ','','','a','','post-utme','2007',199,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(38,'Soil that are formed by the wind deposition are called ','Laterites  ','loess  ','podsols  ','prairies ','','','b','','post-utme','2007',179,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(39,'Desert soil are usually deficient in ','fertility  ','light grey colour  ','humus content  ','horizons ','','','c','','post-utme','2007',192,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(40,'Podsols and laterites share the following characteristics in common, except  ','infertility  ','high degree of leaching  ','associated with forest vegetation  ','colour ','','','c','','post-utme','2007',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(41,'The forest type which is the most rich in tree species is the  ','tropical  ','Deciduous  ','Coniferous  ','Mediterranean ','','','a','','post-utme','2007',178,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(42,'Linseed oil is associated with  ','flax  ','coconut  ','olives  ','rapeseeds','','','a','','post-utme','2007',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(43,'Which of the following is not correct with regards to the solar system?  ','The planets all orbit round the sun  ','The sun is only a source of the energy needed on the planets  ','The earth as well as other planets rotate round the sun  ','all the planets have definite orbits around the sun','','','c','','post-utme','2007',193,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(44,'Fossil fuel reserves are found in the Lake Chad basin because  ','The basin lies approximately along he axis on which the rich Bakassi oil fields are found  ','The basin is at the edge of the desert with conditions similar to that of Iraq  ','it is an inland drainage basin with many large rivers emptying into it  ','Its rocks are sedimentary ','','','d','','post-utme','2007',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(45,'Which of the following is correct?  ','The Canaries current is cold and washes the coast of NE Africa  ','The Peruvian current is warm and washes the West coast of America  ','The Gulf stream is warm and moves north eastward on the Atlantic  ','The middle east current is warm and washes the coast of Saudi Arabia ','','','c','','post-utme','2007',192,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(46,'Which of the following formulae is the correct one for converting X0 Fahrenheit temperature reading into Centigrade temperature readings (Y0)?  ','Y = (X + 32)5/90C ','Y = (X – 32)5/90C  ','Y =  (X – 32)9/50C  ','Y = (X+32)9/50C','','','c','','post-utme','2007',195,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(47,'Oxbow lakes are found in  ','lower courses of some rivers ','wind bow out sites  ','places with history of tectonism ','areas of subsidence ','','','a','','post-utme','2008',177,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(48,'Coombes are associated with  ','honey-bee farms  ','Karst environment  ','rift valley system  ','cases in the desert','','','b','','post-utme','2008',209,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(49,'The Stevenson’s screen is used to keep  ','barometer   ','thermometers  ','hygrometers  ','evapori meters','','','b','','post-utme','2008',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(50,'Global Positioning Systems (GPS) help in  ','combating crime  ','providing early warning against disasters  ','climate change monitoring ','locating positions on the earth surface ','','','d','','post-utme','2008',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(51,'One of these is not a factor of population growth  ','poverty  ','migration  ','prosperity  ','housing ','','','a','','post-utme','2008',196,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(52,'Which of the following is not a major problem of Kainji Dam?  ','increase in the herds of the cattle that depends on its waters  ','increase in usage of Niger in Niger Republic  ','silting of the dam  ','growing demand for irrigation water','','','b','','post-utme','2008',204,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(53,'The East Africa large lakes are together described as  ','Great Lakes St Lawrence Sea Ways  ','Rift Valley Lakes  ','Sources of large rivers like Nile  ','products of the formation of Mt Kilimanjaro ','','','b','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(54,'One of these is not true of rain gauges:  ','Rain gauge provide excellent measurement of rainfall ','Their measurements may be affected by the particular type used ','Their readings may be influenced by slope of the land  ','Rain splashes during heavy rains may lead to over estimation ','','','c','','post-utme','2008',200,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(55,'South East Asia is noted for its regular experience of  ','hurricane  ','tornadoes  ','typhoons  ','strong wind','','','c','','post-utme','2008',190,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(56,'Horse latitudes refers to  ','areas around the gulf of guinea ','areas around the equator  ','areas around the Mediterranean sea  ','areas around latitude 300 in both hemispheres.','','','d','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(57,'“High uniform temperature and heavy well distributed rainfall throughout the year” described ','Equaterial rainforest climate  ','Mid altitude friendly environment  ','the zone of forest with a lot of agricultural potentials  ','the great Amazon basin including the Brazilian forests','','','a','','post-utme','2008',200,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(58,'On of the following is least important to ocean movement  ','salinity of the ocean water  ','temperature of the water  ','planetary wind  ','curvature of the coastal areas','','','d','','post-utme','2008',186,'Admin','0000-00-00 00:00:00','2020-08-11 07:04:27'),(59,'The cloud which are white globular masses, forming ripples in the sky is called ','Citrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2008',201,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(60,'Which one of the following seas has highest degree of salinity in the world?  ','Caspian sea  ','Mediterranean sea  ','Dead Sea  ','Red sea','','','c','','post-utme','2008',199,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:45'),(61,'Which of the following landforms is NOT due to the process of glacier erosion? ','Come  ','valley -bench  ','Hanging valley  ','Esker','','','b','','post-utme','2008',191,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(62,'Which of the following rivers does NOT drain into Atlantic Ocean? ','The Niger  ','The Indus  ','The Amazon  ','The Volta','','','b','','post-utme','2008',198,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(63,'Which features on a  topographic sheet would you analyze to characterize the configuration of the area covered by the sheet  ','Isoyet and Isolines  ','ranges and spot heights ','Contour lines for cross section','Contour lines for slope estimates  ','','','d','','post-utme','2008',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:03:03'),(64,'The greatest challenge to future use of automobiles is  ','advances in air travel  ','identification of alternative to fossil fuels  ','changing and more reliable technology for rail transport ','population growth ','','','b','','post-utme','2008',173,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(65,'The statements ‘one cm 2 km can be represented by the ratio of  ','1:50,000 ','1:500,000  ','120,000','1:200,000','','','d','','post-utme','2008',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(66,'What is the Local Standard time in New York (750W) when it is 2 p.m. in Accra?  ','7 p.m. (19hrs)  ','7 a.m. (0700hrs)  ','9 p.m. (2100hrs)  ','9 a.m. (0900hrs)','','','d','','post-utme','2008',178,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(67,'On any day in the year at a specific time  ','the sun is overhead along the equator  ','the sun is overhead along the topic of cancer  ','the North Pole has 24 hours of daylight  ','one half of the earth is in darkness','','','d','','post-utme','2008',181,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(68,'Which of the following is not a true feature produced by volcanic activity? ','horst  ','caldera  ','dyke  ','geyser ','','','a','','post-utme','2008',216,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(69,'Which is the main crop grown in the Ghezira plains ','Wheat  ','Millet  ','Rice  ','Cotton','','','d','','post-utme','2008',221,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(70,'Which of the following countries has a large number of people of Africa descent? ','England  ','Canada  ','Chile  ','Brazil ','','','d','','post-utme','2008',176,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(71,'When it is 1200 noon on longitude 300E. What is the time on longitude 150W.  ','9.00 a.m. ','5.00 p.m.  ','9.00 p.m.  ','5.00 a.m. ','','','a','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(72,'Which of the following Nigerian towns is Not situated near a big river? ','Lokoja ','Onitsha  ','Jebba  ','Abuja','','','d','','post-utme','2008',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(73,'Fishing is the mainstay of the economy of  ','Libya  ','Iran  ','Iceland  ','Chad','','','c','','post-utme','2008',179,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(74,'Which of the following features is produced by wave deposition  ','caves  ','stack  ','tomobolo  ','blow holes','','','c','','post-utme','2009',188,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(75,'Which of the following is the major factor responsible for Japan’s unparalleled industrial growth in the last few decades? ','Japan’s proximity to mainland ','Japan’s cargo population    ','availability of abundant coal and petroleum ','technological proficiency','','','d','','post-utme','2009',196,'Admin','0000-00-00 00:00:00','2020-08-11 07:04:27'),(76,'Which of the following timber trees are found in the tropical rain forest of Africa? ','Obeche and teak  ','Mahogany and teak  ','Obeche and Mahogany ','Iroko and Eucalyptus','','','c','','post-utme','2009',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:02:23'),(77,'Which of the following basins has the highest population concentration? the ','Indus  ','Niger  ','Nile  ','Mississippi ','','','b','','post-utme','2009',200,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(78,'Which of these economic activities is LEAST characteristics of typical urban centres?  ','Commerce ','quarrying  ','transportation  ','manufacturing ','','','b','','post-utme','2009',178,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(79,'In Karst region, when several dolines are joined together to form depression, it is known as ','cave  ','uvala  ','stalactite  ','calcite pallar','','','b','','post-utme','2009',195,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(80,'Rural settlements can be distinguished from urban settlements by their?  ','function  and population  ','Site and function  ','demography and morphology  ','morphology and location ','','','a','','post-utme','2009',196,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(81,'The scientist who propounded the theory of continental drift was?  ','Francis bacon  ','Alfred Wegener   ','Authur Holmes ','Williams Davis','','','b','','post-utme','2009',187,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(82,'The major world exports of wool are  ','Britain, Australia, Mediterranean Europe and Argentina   ','New Zealand, Uruguay, Australia and Argentina  ','Australia, India, Paraguay and Argentina  ','New Zealand, India, Uruguay and Peru','','','b','','post-utme','2009',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(83,'Blantyre, Rio Janeiro, New York and Lagos are similar in that they all serves as their countries ','major seaport  ','political headquarter ','commercial centres ','cultural centres','','','c','','post-utme','2009',173,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(84,'The dawn is a temperature grassland found in? ','Australia  ','South America  ','Eurasia  ','South Africa','','','a','','post-utme','2009',176,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(85,'Commercial grape cultivation is associated with?  ','cool temperature climate  ','monsoon regions  ','Mediterranean regions  ','Montane climate ','','','c','','post-utme','2009',182,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(86,'The highest volume of shipping across the Atlantic ocean is  ','between Europe and Africa  ','between North America and Europe  ','between African and South America ','between North America and South America','','','b','','post-utme','2009',193,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(87,'The Ukraine of economic activities  ','commercial grain agriculture  and livestock random ','plantation agriculture and nomadic herding.','','','','','a','','post-utme','2009',189,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(88,'All planets have satellites except:  ','Earth & Venus ','Mars & Mercury  ','Mercury & Venus  ','Neptune & Venus','','','c','','post-utme','2010',194,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(89,'Which of the following location in Nigeria has the least mean annual rainfall total?  ','Sokoto  ','Maiduguri  ','Potiskum  ','Nguru','','','b','','post-utme','2010',203,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(90,'Which of the following is not the Karst features? ','Poljes  ','Uvala  ','Kopjes  ','Dolines ','','','c','','post-utme','2010',190,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(91,'The world’s longest river is ','Amazon  ','Mississippi  ','Nile  ','Chang Jiang','','','c','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(92,'One of these is a features of rejuvenated river: ','Incised menders  ','Braided channel  ','delta  ','Levees ','','','a','','post-utme','2010',171,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(93,'Which one of these is not a thermometric scale:  ','Celsius  ','Kelvin  ','Fahrenheit  ','Octas ','','','d','','post-utme','2010',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(94,'Which of these is not a form of condensation? ','Snow ','Rime  ','Cloud  ','Fog','','','b','','post-utme','2010',195,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(95,'Cyclones are centres of  ','relative low pressure  ','relative high pressure  ','Tsunamis  ','turning around of winds','','','a','','post-utme','2010',192,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(96,'The best natural harbour in West Africa is at  ','Lome  ','Tema ','Lagos ','Freetown ','','','d','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(97,'Sandstone is metamorphosed into  ','Slate  ','Schist  ','graphite  ','Quartzite ','','','d','','post-utme','2010',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(98,'The navigability of River Nile is limited because  ','it is too long  ','it is too shallow  ','it flows during the wet season only  ','it has several cataracts. ','','','d','','post-utme','2010',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(99,'The cloud which is closely associated with thunderstorms is  ','strato-cumulus  ','Cirrocumulus  ','Cumulus-nimbus  ','Alto-stratus ','','','c','','post-utme','2010',179,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(100,'Drought-tolerant plants are  ','Epiphytes  ','Hydrophytes  ','Droughytes  ','Xerophytes ','','','d','','post-utme','2010',193,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(101,'Campos is the name for the grassland in  ','North America  ','South America  ','Africa  ','Asia ','','','b','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(102,'When the moon comes in between the earth and the sun in a perfect straight line, it is known as','Eclipse of the moon  ','Lunar eclipse ','solar eclipse  ','eclipse of the earth ','','','c','','post-utme','2010',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(103,'The earth rotates ','South East-South West  ','South West South West  ','West East  ','East West','','','c','','post-utme','2010',193,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(104,'A degree latitudinal distance is approximately ','70km  ','111km  ','180km  ','360km','','','b','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(105,'Large masswa of moving ice in the oceans are  ','glacier  ','iceberg  ','ice-sheet  ','ice-caps','','','b','','post-utme','2010',189,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(106,'The world driest desert is  ','Atacama  ','Sahara  ','Kalahari  ','California ','','','a','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(107,'A line joining places of equal salinity is  ','isohaline  ','Isoneph  ','Isohyets  ','Isohel','','','a','','post-utme','2010',207,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(108,'Which of these is not on the western side of continental land masses? ','Agulhas  ','Canary  ','Penivian  ','California','','','a','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(109,'In general, temperature decreases from the equator towards the Poles because  ','angle of incidence of sun’s rays increases towards the poles ','angles of incidence sun’s rays decreases towards the poles  ','Snow-cover of the higher latitudes reduces the temperature  ','snow falls rather than rain in the pole','','','a','','post-utme','2010',184,'Admin','0000-00-00 00:00:00','2020-08-12 12:03:03'),(110,'Which of the following continents is crossed by both the Tropic of Cancer and Tropic of Capricorn?  ','Asia  ','South America ','North America  ','Africa','','','d','','post-utme','2010',179,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(111,'The sea bed, bordering the continents which is covered by the shallow water is known as ','continental slope ','coral reef ','continental shelf  ','continental platform  ','','','c','','post-utme','2010',190,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(112,'The result of football match completed at 6.00p.m. at Accra (Ghana) and immediately announced over the wireless was heard at 12.00noon same day at another city. The longitude of the city is ','900E  ','600E  ','900W  ','450W ','','','c','','post-utme','2010',204,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(113,'Soil that are formed by wind deposition are called  ','laterites  ','prairies  ','podsols   ','Loess  ','','','d','','post-utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(114,'Which of the following is not a feature of sea deposition ','Shoal ','Beach ','Spit ','coal','','','d','','post-utme','2011',182,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(115,'Which of the following terms is associated with glaciations? ','Arête   ','Bay   ','Stacks   ','Reef   ','','','a','','post-utme','2011',191,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(116,'The lower part of a river valley that has been submerged by the sea is called ','Estuary   ','Reef    ','Spit   ','Bar  ','','','b','','post-utme','2011',192,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(117,'Which of the following is a cold ocean current ','Mozambique   ','gulf stream ','Kuro Siwo  ','Benguela   ','','','d','','post-utme','2011',174,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(118,'The most important cause of tides is the,','distribution of the prevailing winds ','rotation of the earth on its own axis  ','inclination of the earth’s axis  ','gravity attraction of the moon ','','','d','','post-utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(119,'Desert soils are usually deficient in ','fertility  ','humus content ','horizon ','light grey colour   ','','','b','','post-utme','2011',192,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(120,'At the summer solstice [June 21st], which of the following latitudes will have the longest day ','700S   ','900S  ','300N   ','650N   ','','','d','','post-utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(121,'Cyclones refer to ','centers of relatively high pressure ','centers of relatively low pressure ','centers Tsunamis ','centers in the desert ','','','b','','post-utme','2011',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(122,'The wearing away of the sides and bottom of a river channel is called ','corrasion ','corrosion ','hydraulic action ','Complicated erosion ','','','a','','post-utme','2011',179,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(123,'When the moon comes in between the earth and the sun in a straight line, it is known as  ','solar eclipse ','eclipse of the earth ','eclipse of the moon ','lunar eclipse ','','','a','','post-utme','2011',182,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(124,'A degree of latitudinal distance is approximately  ','111km  ','221KM ',' 121km  ','212km  ','','','a','','post-utme','2011',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(125,'Which of the following places in Nigeria has the highest mean annual rainfall amount ','Sokoto  ','Maiduguri  ','Nguru   ','Kano  ','','','c','','post-utme','2011',218,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(126,'The formulae for converting temperature from a centigrade (0C) to a Fahrenheit (0F) thermometric scale? ','0F = 1.8 x 0C + 32  ','0F = 0.5x 0C + 32  ','0F = 1.8x 0C – 32   ','0F = 0.5x 0C – 32  ','','','a','','post-utme','2011',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:04:40'),(127,'The Northern Hemisphere’s Spring Equinox is during the month of','February ','march ','April   ','May  ','','','b','','post-utme','2011',209,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(128,'Noonday sun is vertically overhead along the Tropic of Cancer during the month of  ','June  ','July  ','August  ','September ','','','a','','post-utme','2011',170,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(129,'An instrument used in measuring the atmospheric pressure is called ','Barometer ','Thermomete','Hygrometer','Presometer','','','a','','post-utme','2011',190,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(130,'Orographic rainfall is also called ','Relief rainfall','cyclonic rainfall ','convectional rainfall ','frontal rainfall ','','','a','','post-utme','2011',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(131,'The forest type which is richest in tree species is the ','Deciduous forest ','Mediterranean forest ','Tropical Lowland  rainforest ','coniferous forest  ','','','c','','post-utme','2011',161,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(132,'Which of the following statements is not true for lines of latitudes?','they range from 00 to 1800 North and South ','they range from 00 to 900 North and South ','They vary in D. they form parallel circles','only one line is a great circle.','','','a','','post-utme','2011',175,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(133,'The earths rotates through 150C of longitude in  ','24hrs  ','15hrs  ','4hrs   ','1hrs   ','','','d','','post-utme','2011',206,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(134,'What is the local standard time in New York (750W) when it is 2pm in Accra? ','9.00pm  ','9.00 pm  ','7.00pm   ','7.00am ','','','b','','post-utme','2011',171,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(135,'Aeolian erosion refers to the work of  ','Wind ','Running water  ','Glacier  ','Ice  ','','','a','','post-utme','2011',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(136,'Which of the following landforms is the results of  river rejuvenated?  ','Ox-box lake ','flood plain ','terrace  ','alluvial fan  ','','','c','','post-utme','2011',208,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(137,'The representative fraction of 1:50,000 can be converted to the following  ','one cm to 5km  ','one cm to 0.05km  ','one cm to 2km  ','one cm to 4km  ','','','b','','post-utme','2011',191,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(138,'Which of the following is not a rapid type of mass movement? ','Solidification ','Rockfall  ','Mudflow  ','Debris Slide','','','a','','post-utme','2012',196,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(139,'A front in which warm air is overtaken and lifted off the ground by cold air in a depression is known as  ','Cold front  ','Warm front  ','Mixed front  ','Occluded','','','d','','post-utme','2012',175,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(140,'The earth’s atmosphere is said to be stable  ','when the environmental laps rate is greater than the adiabatic lapse rate  ','When the adiabatic lapse rate is greater than the environmental lapse rate  ','When the environmental lapse rate is equal to the adiabatic lapse rate  ','When the environmental lapse rate is not equal to the adiabatic lapse rate.','','','b','','post-utme','2012',190,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(141,'Environmental lapse rate is  ','The rate of temperature changes of an air parcel undergoing vertical displacement  ','The rate of temperature decrease of an air parcel undergoing horizontal displacement  ','The actual rate decrease of temperature with increase in altitude at a given place at a given moment  ','The rate of horizontal temperature gradient of an air parcel','','','c','','post-utme','2012',203,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(142,'What is the Centigrade equivalent of 950 Fahrenheit? ','1390C  ','37.20C  ','350C','3.60C','','','c','','post-utme','2012',202,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(143,'Which of the following States in Nigeria would a person NOT pass over by crow fly (direct distance) from Ibadan to Makurdi? ','Osun  ','Ondo ','Kogi  ','Enugu','','','d','','post-utme','2012',241,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(144,'The Latitude which marks the limits of the overhead sun’s apparent movement is  ','0','66.5','32.5','23.5','','','d','','post-utme','2012',219,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(145,'Which of the following features is not commonly associated with a river at the floodplain stage? ','Meanders  ','Levees ','Braided channel  ','Knick point ','','','a','','post-utme','2012',202,'Admin','0000-00-00 00:00:00','2020-07-24 01:48:48'),(146,'The World’s richest fishing grounds are found  ','On the continental shelves  ','In oceanic deeps ','In big and fast-flowing river  ','In river estuaries ','','','a','','post-utme','2012',176,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(147,'A deflation hollow is produced by  ','River erosion  ','Water action in a limestone area  ','Wind erosion in deserts  ','Wave erosion on the coast ','','','c','','post-utme','2012',200,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(148,'Akosomo dam is on the River  ','Niger  ','Nile  ','Congo  ','Volta','','','d','','post-utme','2012',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(149,'Which of the following is a not characteristic of the International Date Line? ','The Line is approximately along the 1800 meridian  ','The line has a zigzag shape  ','Local time is the same on either side of the line  ','A traveler gains a day when crossing the line from the west to the east ','','','c','','post-utme','2012',163,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(150,'Which of the following African cities is situated near the confluence of rivers? ','Niamey  ','Freetown  ','Cairo  ','Khartoum ','','','d','','post-utme','2012',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:08:18'),(151,'Ferrel’s law states that winds deflect to the  ','Left in the northern  ','Right in the Northern hemisphere and to the left in the Southern hemisphere  ','Right in both hemispheres  ','Left in both hemisphere.','','','b','','post-utme','2012',186,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(152,'Given an environmental lapse tate of 0.650C per 100 metres, a place with sea level temperature of 400 and 2500 metre above the sea level will approximately have a temperature of  ','31.250C  ','23.750C  ','32.50C  ','28.250C ','','','b','','post-utme','2012',214,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(153,'At the summer solstice (June 21), which of the following latitudes will have the shortest night?','30 “N  ','30 “S  ','50 “N  ','50 “S','','','c','','post-utme','2012',183,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(154,'Which of the following landforms result from wind deposition? ','Playa  ','Barchan  ','Bajada  ','Fan','','','b','','post-utme','2012',215,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(155,'Which of the following farming practices can be used to check soil erosion? ','Contour ploughing  ','Ploughing of land upslope  ','Bush burning  ','Shifting','','','a','','post-utme','2012',205,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(156,'Aeolian erosion refers to the work of  ','Plants  ','Wind  ','Ice  ','Running water','','','b','','post-utme','2012',231,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(157,'The difference in the readings on the dry and wet bulb thermometers used to determine  ','Relative humidity  ','Temperature range  ','Evaporation  ','Transpiration ','','','a','','post-utme','2012',181,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(158,'Which of the following scales should show the greatest amount of detail on a map? ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2012',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(159,'Sandstone is metamorphosed into  ','Slate  ','Quartzite  ','Schiest  ','Graphite ','','','b','','post-utme','2012',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(160,'In humid areas, farmers add lime to the soil to  ','reduce acidity  ','Act as fertilizer  ','Facilitate the absorption of nutrient  ','Encourage the farmer','','','a','','post-utme','2012',203,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(161,'In the hydrological cycle, the transfer of water from the earth’s surface to the atmosphere is by ',' Evaporation only  ','Transpiration Only  ','Evaporation  ','Condensation ','','','c','','post-utme','2012',176,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(162,'The second Equinox in any year take place during the month of','March   ','June   ','September   ','December','','','c','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(163,'Which of the following countries in Africa would a person NOT pass over by crow fly (direct distance) from Abidjan to Cairo?  ','Niger    ','Libya','Burkina Faso  ','Chad','','','c','','post-utme','2013',217,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(164,'The main work of a river in its torrent stage is  ','Widening its valley','Down cutting','Deposition  ','Bifurcation','','','a','','post-utme','2013',197,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(165,'Which of the locations in Nigeria has the highest mean annual rainfall total ?  ','Benin City  ','Port-Harcourt  ','C.Calabar   ','Ondo','','','b','','post-utme','2013',168,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(166,'The world’s longest river is  ','River Amazon    ','River-Mississippi   ','River Nile  ','River Chang Jiang','','','c','','post-utme','2013',197,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(167,'Which of the following is a feature  of a rejuvenated river?','Incised meanders   ',' Braided channel   ','Delta   ','Levees','','','a','','post-utme','2013',197,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(168,'Which of the following is not a thermometric scale?','Celsius     ','Kelvin','Fahrenheit   ','Octas','','','d','','post-utme','2013',189,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(169,'Which of the following is not a form of condensation?  ','Snow  ','Rime  ','C.Cloud  ','Fog','','','d','','post-utme','2013',199,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(170,'The surface of discontinuity between the earth’s crust and the mantle is know as','Lithosphere   ','Barysphere','Mohocivic Discontinuity','Gutenburg discontinuity','','','b','','post-utme','2013',182,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(171,'Where is Sahel Savanna vegetation belt found in Nigeria?','Northwest   ','Northeast','Both Northwest and Northeast','From the middle belt to the north','','','b','','post-utme','2013',174,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(172,'The largest soil group, found in the temperate grasslands, having a deep, black, nutrient-rich','A-horizon, a compact  B-horizon and a zone of calcium carbonate accumulation is called a','Chernozem  ','Pedocal   ','Podsol  ','Chestnut','','a','','post-utme','2013',200,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(173,'Drought-tolerant plants are known as  ','Epiphytes  ',' Hydrophytes','Drouphytes','Xerophytes','','','d','','post-utme','2013',174,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(174,'The major disadvantage of the River Nile as a trade route is that  ','it is too long   ','it is too shallow   ','it flows during the wet season only   ','it has several cataracts','','','d','','post-utme','2013',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(175,'The earth rotates from  ','Southeast to Southwest','Southwest  to Southeast','West to East  ','East to West','','','c','','post-utme','2013',190,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(176,'The tropical maritime air mass attains its maximum incursion over West African hinterlands','When the sun is overhead on the tropic of Capricorn  ','When the sun is overhead on the tropic of Cancer ','When the sun is overhead on the Equator','When the sun is overhead on both the tropic of Cancer and Tropic of Capricom','','','c','','post-utme','2013',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(177,'A line joining places of equal salinity is known as','Isohaline   ','Isoneph','Isohyet   ','Isohel','','','a','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(178,'Which of the following continents has the largest area with a tropical type of climate?','Asia   ','South America','North America  ','Africa','','','a','','post-utme','2013',179,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(179,'One hour’s difference in mean solar time represents what angular difference in longitude?','15o ','23.5o  ','90o','66.5o','','','a','','post-utme','2013',203,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(180,'An extended urban area, typically consisting of several towns merging with the suburbs of one or more cities can best be referred to as  ','Conurbation','Urban decay  ','Growth pole','Urban Inertia','','','a','','post-utme','2013',189,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(181,'Which of the following terms is not associated with desert-type topography?','Zuegen    ','Yardang  ','Mesa  ','Uvala','','','d','','post-utme','2013',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(182,'The major characteristics of a karst scenery include','Excessive overland flow','Extensive and long surface flow  ','An underground network of caves and streams','Frequent  surface drainage','','','c','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(183,'Which of the following landforms originates from Aeolian erosion?','Deflation hollow  ','Sand dune  ','Playa   ','Wadi','','','a','','post-utme','2013',183,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(184,'The cheapest means of transport for a long distance travel is by   ','Air   ','Rail','Water   ','Road','','','c','','post-utme','2013',215,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(185,'A traveler crossing the international Date line from America to Asia at 1.00 P.M. on Saturday, July 13th, 2013, would have to change his watch to 1.00 P.m. on','Sunday, July 14th, 2013','Friday, July 12th 2013','Saturday, July 13th, 2013','Monday, July 15th, 2013','','','a','','post-utme','2013',182,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(186,'The shaduf method of irrigation was first practiced in','Sudan   ','Ghana   ','Egypt    ','Mali','','','c','','post-utme','2013',202,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(187,'Climate is the: ','Prevailing weather conditions of a region for 10 years ','Prevailing weather conditions of a region for 15 years  ','Prevailing weather conditions of a region for 35 years  ','Prevailing weather conditions of a region for 20 years  ','','','c','','post-utme-aaua','2014',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(188,'Igneous rocks are rocks formed by','The cooling of molten minerals from a liquid into a solid.','The change of minerals from a solid into a liquid','The deposition of minerals. ','The deposition of minerals a solid into a liquid. ','','','a','','post-utme-aaua','2014',158,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(189,'Temperature is a measure of: ','The average hotness','The average coolness','The average heat. ','The average emission.','','','c','','post-utme-aaua','2014',184,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(190,'Isotherm refers to: ','Line that connects points of equal sunshine','Line that connects points of equal rainfall','Line that connects points of equal pressure.  ','Line that connects points of equal temperature','','','d','','post-utme-aaua','2014',179,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(191,'The longest river in Africa is:  ','River Nile. ','River Niger. ','River Benue','River Zambezi ','','','a','','post-utme-aaua','2014',186,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(192,'Isobar refers to: ','Line that connects points of equal humidity. ','Line that connects points of equal rainfall.   ','Line that connects points of equal pressure.  ','Line that connects points of equal temperature. ','','','c','','post-utme-aaua','2014',179,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(193,'Topographic maps are: ','Representations of features on the Earth\\'s surface','Features on the Earth\\'s surface. ','Detailed and accurate graphic representations of features on the Earth\\'s surface ','Geographic coordinate grid on the Earth\\'s surface. ','','','c','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(194,'Lesotho is in: ','South Africa','West Africa.   ','East Africa','Central Africa','','','c','','post-utme-aaua','2014',177,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(195,'Weathering of rocks is: ','The formations of rocks','The breaking down of rocks.   ','The deformations of rocks','The accumulation of rocks. ','','','b','','post-utme-aaua','2014',159,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(196,'Scale of a map is defined as: ','The ratio of a distance on the drawing board to the corresponding distance on the ground. ','The ratio of a distance on the map to the corresponding distance on the ground','The ratio of a distance on the tape to the corresponding distance on the ground. ','The ratio of a distance on the ruler to the corresponding distance on the ground','','','b','','post-utme-aaua','2014',162,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(197,'The capital of Niger state in Nigeria is: ','Gusau','Yola','Makurdi','Minna','','','d','','post-utme-aaua','2014',158,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(198,'A valley is a:   ','Highland between hills','Lowland between hills','Rock between hills','Highland between trees. ','','','b','','post-utme-aaua','2014',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(199,'Nigeria has a total land area of: ','923,768 km2 ','823,768 km2 ','623,768 km2 ','723,768 km2 ','','','a','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(200,'A lake is a:   ','Large body of water surrounded by forest. ','Large body of water surrounded by land. ','Large body of water surrounded by rocks','Large body of water surrounded by water. ','','','b','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(201,'Nigeria is having','574 Local Government Areas','674 Local Government Areas. ','774 Local Government Areas. ','874 Local Government Areas','','','c','','post-utme-aaua','2014',164,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(202,'An island is a:   ','Piece of land surrounded by water.   ','Piece of land surrounded by land. ','Piece of land surrounded by forest. ','Piece of land surrounded by rocks. ','','','a','','post-utme-aaua','2014',164,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(203,'The ethnic groups in Nigeria are: ','More than 250  ','More than 150   ','More than 100   ','Less than 150 ','','','a','','post-utme-aaua','2014',179,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(204,'Orographic rainfall is a:   ','Temperate rainfall','Relief rainfall. ','Coastal rainfall','Forest rainfall.   ','b','','','','post-utme-aaua','2014',181,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(205,'One major societal issues in Nigeria is: ','Poor feeding. ','Poor human rights','Poor language','Poor religion. ','','','b','','post-utme-aaua','2014',174,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(206,'The United Nations estimate of Nigeria population in 2009 was','154,729,000','144,729,000.00','164,729,000.00','184,729,000.00','','','b','','post-utme-aaua','2014',184,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(207,'Nigeria lies between','Latitudes 4° and 13°N and longitudes 2° and 15°E. ','Latitudes 5° and 14°N and longitudes 4° and 15°E. ','Latitudes 4° and 14°N and longitudes 2° and 15°E. ','Latitudes 2° and 15°N and longitudes 4° and 14°E. ','','','c','','post-utme-aaua','2014',163,'Admin','0000-00-00 00:00:00','2020-08-12 09:07:05'),(208,'Kinshasa is a: ','Central African City ','North African City ','East African City ','South African City ','','','a','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(209,'Freetown is a: ','North African City ','West African City ','South African City ','East African City ','','','b','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(210,'Which one of the following countries is having the highest quality of life? ','Sweden  ','Austria ','United States of America ','England  ','','','a','','post-utme-aaua','2014',202,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(211,'Nairobi is a: ','North African City ','West African City ','South African City ','East African City ','','','d','','post-utme-aaua','2014',173,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(212,'The most populated country in the world is: ','Austria ','China ','United States of America ','Brazil ','','','b','','post-utme-aaua','2014',187,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(213,'Casablanca is a','North African City ','West African City ','South African City ','Central African City ','','','a','','post-utme-aaua','2014',176,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(214,'The World largest Ocean is: ','Pacific Ocean ','Atlantic Ocean ','Indian Ocean ','Arctic Ocean ','','','a','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(215,'Dominican Republic is in: ','Europe ','Africa ','America ','Asia ','','','c','','post-utme-aaua','2014',192,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(216,'The World Longest Coastlines is in: ','Austria ','England  ','United States of America ','Canada ','','','d','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(217,'Which of the following is an evidence to show that the earth is spherical in shape? ','Elliptical orbit ','Ea th s  u ed ho izo','Revolution of the earth ','Seasonal changes ','','','b','','post-utme-aaua','2014',191,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(218,'A lines drawn on a maps to show places of equal rainfall is called ','Rainline ','Isotope ','Isotherm ','Hydrotope ','','','b','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(219,'Wind erosion is most common in ','Rocky areas ','Riverine areas ','Arid areas ','Humid areas ','','','c','','post-utme-aaua','2014',145,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(220,'The act of graphical representation of places with identified scale and legend is called ','Scaling ','Mapping  ','Sketching ','Drawing ','','','b','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(221,'A piece of land almost surrounded by water is called ','Headland ','Peninsula ','Island   ','Plateau ','','','c','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(222,'Planet warming the use of water transport is limited by all the following except  ','Wide valleys   ','Waterfalls ','Seasonality  ','Narrow gorges   ','','','a','','post-utme-aaua','2014',182,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(223,'To obtain the climate of a place the average atmospheric weather conditions should be considered ','20years ','24years','35years ','10years ','','','c','','post-utme-aaua','2014',209,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(224,'Which of the following is a major hindrance to H.E.P.','Inadequate capital  ','Unavailability of good sites  ','Absence of domestic market  ','Sufficient volume of water  ','','','d','','post-utme-aaua','2014',181,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(225,'Isotherms are lines drawn on maps joining places having equal ','Temperature   ','Cloud cover ','Pressure ','Water level ','','','a','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(226,'Precipitation include all the following except ','Fog','Snow ','Dust   ','Dew ','','','c','','post-utme-aaua','2014',166,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(227,'The location of iron and steel industry at Ajaokuta in Nigeria is best explained by the presence of ','Limestone and coal  ','Iron ore   ','Bauxite  ','Manganese ','','','b','','post-utme-aaua','2014',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(228,'Settlements can be classified according to all the following except the   ','The arrangements of the building   ','Number of people per settlements   ','Functions  ','The type of people that live in the area   ','','','d','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(229,'The average hurricane exists, on the average, for about ________. ','one week ','two weeks ','three weeks ','four weeks ','','','d','','post-utme-aaua','2014',192,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(230,'……...Refers to the nature of the surface of an area and the features that abound therein above the sea level','Barchans ','Relief   ','Plateaux   ','Plain','','','b','','post-utme-aaua','2014',166,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(231,'Any buoyant parcel of air is said to exhibit ________. ','Instability ','The dry adiabatic lapse rate ','The moist adiabatic lapse rate ','Advection','','','a','','post-utme-aaua','2014',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:08:18'),(232,'The north east and south west trade winds meet along a plane surface where they continuously rub ','Abnormal front  ','Leeward front  ','Intertropical front ','Windward front  ','','','c','','post-utme-aaua','2014',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(233,'________ is the time of day when tornadoes are most likely to occur','Dawn ','Mid-afternoon ','Evening ','Noon ','','','b','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-08-12 12:08:18'),(234,'Crude oil is ------------  rock mineral   ','An igneous   ','A sedimentary  ','A metamorphic  ','A plutonic  ','','','b','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(235,'The new name of Calicut, a famous city of Kerala is ','Kozhikode','Trivendrum','Kalighat ','Koderma ','','','a','','post-utme-aaua','2014',174,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(236,'An anemometer is used to measure','wind vane','wind direction','wind speed','wind pressure','','','c','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `government` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=724 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `government` VALUES (1,'In which of the following countries is governmental powers most fused? ','Nigeria ','United States of America ','France ','Canada','','','c','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(2,'The benefits of separation of powers include the following except ','prevention of tyranny ','check of abuse ','promoting democracy with free and fair election ','avoidance of arbitrariness','','','c','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(3,'Laws made by state   government are known as ','edicts ','bye-law ','acts  ','decrees','','','a','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:12'),(4,'In a parliamentary system of government, the function of the head of state and the head of government are vested in ','the inner cabinet ','an individual ','two different individuals ','the ministerial council','','','c','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(5,'In a modern democracy, the ultimate source of sovereignty is the ','legislature and executive ','judiciary ','ruling political party ','people','','','d','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(6,'The British took over Nigeria through ','negotiation ','bargaining  ','war ','the sea','','','a','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(7,'Politics is an act for ','man to govern himself ','man to create governments ','states to control its destiny ','man to dominant others','','','a','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(8,'A major issue that distinguishes pressure groups from political parties is ','membership drive ','objective ','vomiting pattern ','ideology','','','b','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:25'),(9,'A nation consist of people with ','common history ','common ancestry ','a  shared set of values ','A, B and C above','','','d','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(10,'A totalitarian state is based on  ','multi-party system ','total protection of civic rights ','the totality of the state processes ','coercion as the instrument of government','','','d','','post-utme','2006',92,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(11,'A political concept that defines  the beliefs, attitudes and values of a society is called ','political socialization ','political culture ','political transformation ','referendum','','','b','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(12,'The agent of political socialization generally regarded as the most important is ','family ','peer group','school ','churches and mosques','','','a','','post-utme','2006',103,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(13,'A political ideology that defines a system of societal organization in which the state controls the commanding heights of the economy is called ','Totalitarianism ','Communalism ','socialism ','communism ','','','d','','post-utme','2006',97,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(14,'Which of the following best describes French colonial policy in Africa? ','policy of association ','policy of Casus Belli ','policy hostility ','policy of assimilation','','','d','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:08'),(15,'What was the primary purpose of the Sir Henry Willink Commission of Inquiry? ','to approve the independence of Nigeria ','to allay the fears of minorities in Nigeria ','to amalgamate northern and southern  Nigeria ','to make Lagos a British Colony','','','b','','post-utme','2006',101,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(16,'The military coup of July 25, 1975 which toppled General Yakubu Gowon from power  took place when he was attending which important event? ','OAU Summit in Kampala ','UN General Assembly in New York ','Assembly of Heads of states of ECOWAS in Monrovia ','The Olympic Games','','','a','','post-utme','2006',79,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(17,'Which of the following political parties did not participate in the 1979 General Elections in Nigeria? ','Unity Party of Nigeria ','National Party of Nigeria ','social Democratic Party ','Great Nigeria People’s Party','','','c','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:07'),(18,'Alhaji Shehu Shagari was sworn in as President of the Federal Republic of Nigeria in 1979 by ',' Justice Fata Williams ','Justice Adetokunbo Ademola ','Justice Salihu Modibbo  Alfa Belgore ','Justice Isa Mohammed','','','b','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(19,'The electorate is generally  understood to refer to ','elected members of the National- Assembly ','elected members of the state house of assembly  ','candidates who can contest elections ','those citizens qualified to vote at elections','','','d','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:59'),(20,'Into how many local government areas in Nigeria officially delineated? ','654','650','820','774','','','d','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(21,'The centenary anniversary of the amalgamation of Northern and Southern Nigeria will be celebrated in ','2060','2063','2014','2007','','','c','','post-utme','2006',96,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(22,'Which of these men introduced indirect rule in Nigeria? ','Mungo Park ','Dr. Nnamdi Azikiwe ','Lord Lugard ','Sir James Robertson.','','','c','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:07'),(23,'Democracy was first practiced in ','Ghana ','United States of America ','Greece ','Britain','','','c','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(24,'Which of these countries has the highest population in West Africa? ','Mauritania','Ghana ','The Gambia ','Nigeria.','','','d','','post-utme','2007',99,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:02'),(25,'This African ruler resisted colonial rule and was later exiled by the colonial  officials ','Alaafin of Oyo ','Oba of Benin ','King Jaja of Opobo','Onisanbo of Ogbooro.','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(26,'The following countries are settler colonies except  ','Nigeria ','south Africa ','Angola ','Mozambique.','','','a','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(27,'Nigeria gained independence from colonial rule on ','1-Oct-60','November, 1963 ','29-May-99','1-Nov-60','','','a','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(28,'All but one of the following is not a symbol of political culture ','a national flag ','the government ','an anthem ','the constitution.','','','b','','post-utme','2007',79,'Admin','0000-00-00 00:00:00','2020-08-15 23:15:08'),(29,'All but one of these is not an agency of political socialization ','the constitution ','the family ','peer group ','schools ','','','a','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:24'),(30,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives ','propaganda ','lobbying ','assault ','boycott','','','c','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(31,'The following are Anglophone West African countries except ','Ghana ','Nigeria ','Kenya ','The Gambia.','','','c','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(32,'A Nigerian who has been the secretary of the Commonwealth of Nations Organizations is ','Dr. Ibrahim Gambari ','Professor Adebayo Adedeji ','Chief Jaja Nwachukwu ','Chief Emeka Anyaoku','','','d','','post-utme','2007',84,'Admin','0000-00-00 00:00:00','2020-08-16 16:28:11'),(33,'How many countries are in Africa? ','fifteen ','fifty-three ','fifty','fifty-five','','','b','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(34,'Economic Community of West African States (ECOWAS) was based on the initiative of the heads of state  of these two countries ','Nigeria and Ghana ','Nigeria and Togo ','Senegal and Cote d’lvoire ','B and C above','','','b','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(35,'ECOWAS Treaty was signed on ','28-May-74','1-Oct-60','12-Jun-75','none of the above','','','d','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:05'),(36,'In which city was the ECOWAS Treaty signed ','Lagos ','Banjul ','Accra ','Abuja','','','a','','post-utme','2007',78,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:02'),(37,'A capitalist state is based on ','religion ','creating job opportunities ','dictatorship ','free trade','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(38,'In politics, power is all of the following except ','capacity to affect the actions of others ','ability to make people do things they otherwise not do ','an object ','it is part of a relationship ','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:02'),(39,'Every political system performs the following basic functions except ','rule making ','rule transformation ','rule enforcement ','rule adjudication .','','','b','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(40,'These are common forms of governments except ','federal ','Unitary ','Plural ','confederal','','','c','','post-utme','2007',78,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:02'),(41,'In a federal system ','the centre is weak ','plurality is abnormal ','there is nothing like autonomous units ','there is unit in diversity ','','','d','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:02'),(42,'The legislature performs the following functions except ','determines  the general direction of public policies ','investigating and monitoring the activities of the officials of government ','exercises power of appointment of government officials ','enforcing the law','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-14 15:06:25'),(43,'The independence constitution of 1960 ','introduced bicameral legislature ','catered for the three  regions of Nigeria ','provided for emergency powers ','provided for fundamental human rights','','','d','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:25'),(44,'Nigeria became a republic in ','1960','1961','1963','1914','','','c','','post-utme','2007',84,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:41'),(45,'The amalgamation of the northern and southern protectorates and the colony of Lagos was in','1960','1966','1914','1957','','','c','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(46,'catered for the three  regions of Nigeria ','a renewed concept in international studies ','limited to the west ','a process of making the world  smaller ','an increasing integration of the world.','','','b','','post-utme','2007',106,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(47,'The French colonial policy of Assimilation  was intended to ','to transfer technology to Africa ','to make Frenchmen out of African ','to produce well educated Africans ','to prepare Africans for the Olympic Games','','','b','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(48,'One of these is not a characteristic  of the state ','selection of political leaders ','a written constitution ','monopoly of the legitimate use of armed force ','sovereignty','','','b','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(49,'The Economic Community of West African States was established in ','May-75','May-63','May-66','May-96','','','a','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:01'),(50,'Nigeria became a republic on ','29-May-99','1-Oct-60','1-Jan-66','1-Oct-63','','','d','','post-utme','2008',100,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:06'),(51,'Which of the following is not one of the functions of the modern legislatures? ','making laws  ','collecting taxes ','Ratification of treaties ','Performing oversight functions ','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(52,'The European Union (EU) is an ','Economic organization ','Association of former British colonies  ','Organization of European states ','Union  of European  organization','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:02'),(53,'What was the name of the highest ruling body during General Babangida’s rule?  ','The presidency  ','Armed Forces Ruling Council ','The National Council of states  ',' The Federal  Executive Council','','','b','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-08-15 23:15:08'),(54,'One of the following is not a specialized agency to the United Nations Organization ','security council ','International Labour Organization ','World Health Organization ','UNESCO','','','a','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(55,'Under which of the following conditions can a Nigerian be deprived of is or her citizenship? ','If married to a foreign  National ','If one holds a dual citizenship  ','If convicted of Armed robbery ','if one Abuse the National Flag.','','','b','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(56,'The first indigenous Governor-General of Nigeria is ','Donald Cameron ','Sir James Robertson  ','Sir Adesoji Aderemi  (the  Oni of Ife) ','Rt. Hon. Nnamdi  Aziwe','','','a','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:23'),(57,'The Action Group crisis was is in which year? ','1966','1962','1963','1965','','','b','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(58,'Free education was introduced in west region by which of these premiers? ','Chief Obafemi Awolowo ','Chief S.L. Akintola  ','Chief Michael Adekunle Ajasin ','Chief Bola Ige','','','a','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(59,'What does INEC stand for? ','Independent  National Elections Committee ','Independent  Newspapers executive  Committee ','Independent National Export Council ','independent National Electoral Commission ','','','d','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(60,'The government of one of the following countries operates an unwritten constitution ','The United States ','The Union of Soviet Socialist Republics ','Post –apartheid  South Africa ','The United Kingdom ','','','d','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(61,'The Oldest written constitution is ','American constitution ','British Constitution ','German constitution ','Roman Constitution ','','','a','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:08'),(62,'The EFCC was established to ','Arrest and try corrupt politicians ','Combat economic and financial crimes in Nigeria ','Arrest, detain and prosecute corrupt state governors and legislators  ','Assist the World Bank in monitoring economic projects in Nigeria.','','','c','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(63,'The four British colonial territories in West Africa were ','Senegal, Ghana, Sierra Leone and Nigeria ','Nigeria, Ghana, Sierra Leone and Gambia ','Nigeria, Ghana, Togo and Gambia ','Gambia, Guinea, Ghana and Gabon','','','c','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(64,'In many countries, citizenship can be acquired through the following processes except ','nationalization ','naturalization ','registration ','birth','','','a','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:00'),(65,'Which of the following does not describe a party system? ','one dominant party system  ','two party system','three party system ','multi party system','','','c','','post-utme','2008',62,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:01'),(66,'ECOMOG was set up primarily to ','drive away the Europeans from West Africa ','serve as a peace keeping force for ECOWAS ','help  Nigeria to control Africa  ','promote rapid economic development among ECOWAS members','','','b','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(67,'The principle since independence include the following except ','peaceful coexistence ','legal  equality of state ','political dependence ','Non- alignment','','','c','','post-utme','2008',99,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(68,'The body charged with the trial of persons accused of crimes  against humanity is ','criminal Court of Justice ','International Criminal Court ','International Court of Justice ','ICPC','','','b','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:12'),(69,'The independence of the judiciary can be enhance by the following except ','when judges hold office for a fixed term ','when judges cannot be removed from offence even whey they commit crimes ','appointment of judges by and independent body','political neutrality of judges','','','b','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:00'),(70,'Which of the following is not  a feature of Nigeria’s electoral system? ','direct election ','proportional representation ','general election  ','secret ballot','','','b','','post-utme','2008',71,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:01'),(71,'Laws made by local governments are called ','Acts of Parliament ','Local Government Acts ','Bye-laws ','Local Government Decrees','','','c','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-08-13 13:03:52'),(72,'In the pre-colonial era, which of the following was not a feature of the emirate administration? ','Madawakin ','Waziri ','Sarkin Dogari ','Sarkin Emir','','','d','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:24'),(73,'Federalism was introduced in Nigeria by the ','Lyttleton Constitution ','Clifford constitution ','Macpheson constitution ','1999 constitution.','','','a','','post-utme','2008',89,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(74,'Traditional rulers were restricted to ceremonial rules by the local  government  reforms of ','1966','1976','1984','1987','','','b','','post-utme','2009',87,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:07'),(75,'In a parliamentary system, who ensures that members are in the house to vote on major issues? ','party leaders ','speaker of  the house ','clerk of the house  ','whip','','','d','','post-utme','2009',71,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:24'),(76,'A system in which no single person serves as the chief executive  is know as ','republican ','Revolutionary  ','Collegial  ','Parliamentary ','','','d','','post-utme','2009',87,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(77,'A social system in which power is derived  from control over land is called ','Oligarchy  ','Feudalisms ','Socialism ','Welfarism ','','','b','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:05'),(78,'“Rule of law” refers to situations in which ','Lawyers are the rulers  ','Laws are supreme ','the judiciary is independent ','parliament makes laws ','','','b','','post-utme','2009',83,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:07'),(79,'An important principle of the civil service is ','Authoritarianism  ','Anonymity ','Repotism  ','partisanship.','','','b','','post-utme','2009',89,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(80,'Which of these constitutions recognized local government is the third tier of government? ','The 1946 constitution ','The 1960 constitution','The  1963 constitution ','the 1979 constitution.','','','d','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:36'),(81,'A condition for judicial indolence is the appointment of judges by the  ','civil service commission ','judicial service commission ','low review constitution ',' code of conduct Bureau','','','b','','post-utme','2009',99,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(82,'The minorities  Commission appointed in Nigeria in 1957 recommended that ','More states should be create in the federation ','No more states should created before independence ','Nigeria should revert to a unitary structure ','The legislature  should legislature should legislature for the minority areas ','','','b','','post-utme','2009',88,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(83,'The second military coup data in Nigeria took place on ','15-Jan-66','1-Oct-66','29-Jul-66','13-Feb-76','','','c','','post-utme','2009',110,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:07'),(84,'One of these was in existence  before the outbreak of the Second World War ','The OAU  ','League of Nations ','The UNOD  ','The Commonwealth of nations ','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(85,'In important advantage of creating more constituents in a federal state is to ','Enhance the people’s participation in government ','Enable ambitions politicians gain political power ','Make the states gain more power from the federal government ','curb the excesses of the federal government','','','a','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:38'),(86,'Under the Presidential system ','The party with the majority of seat forms the executive ','there is the principles of collective responsibility ','the president may come from any of the parties ','the states take instructions from the federal government','','','c','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(87,'Public opinion is important because it ','Tells government what action it must take ','Lets government know what the people want ','Allows police to manage crisis ','Mothers the minorities in resource learn areas ','','','b','','post-utme','2009',83,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:24'),(88,'Bicameral legislature exists ','where two cameras are used to monitor court proceedings ','To prevent the concentration of power on legislative house ','To provide jobs for more politicians ','to ensure that just laws are passed.','','','d','','post-utme','2009',96,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:01'),(89,'Africans were first elected to the legislature council in British West African ','Ghana ','Sierra Leone ','The Gambia ','Nigeria','','','d','','post-utme','2009',98,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(90,'One of the functions of the ministry of External Affairs is the ','Deportation of illegal aliens ','Issuance of passports ','Defense of the country’s boarders ','Promotion of national interest','','','d','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(91,'The leader of the northern people’s congress was ','Yakubu Maitama Sule ','Abubakar Tafawa Balewa ','Aminu Kano ','Ahmadu Bello','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-08-16 16:28:11'),(92,'The idea of democracy started with the ','Romans ','Pensions ','Greeks ','Egyptians','','','c','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:07'),(93,'In the Marxist theory, those who live by selling, their labour are called ','Bourgeoisie ','Proletariat ','Feudal lords ','Slaves','','','b','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(94,'Which of the following NOT an acceptable means of achieving democracy? ','Referendums ','Recall ','Initiative ','Riots','','','d','','post-utme','2009',115,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:23'),(95,'The branch of government responsible for implementing laws is the ','executive ','Legislature ','Judiciary ','Police ','','','a','','post-utme','2009',97,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(96,'In a democracy, sovereignty is vested in ','The community ','Public officials ','judges  ','the head of state ','','','a','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(97,'Universal Adult Suffrage means all ','Adult citizens can vote ','citizens vote ','Qualified citizens  can vote ','Literate citizens can vote ','','','a','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:37'),(98,'A bill that applies to the whole population and is intended to promote the general welfare is called ','A private bill ','a decree ','an appropriation bill ','a public deal ','','','d','','post-utme','2009',88,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(99,'The Arthur Richards Constitution was designed to last ','nine years  ','five years ','twelve years  ','six year','','','a','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:02'),(100,'Under the 1963 Republican constitution the president exercise ','judicial powers  ','executive powers  ','nominal powers ','concurrent powers','','','c','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:05'),(101,'The Clifford Constitution was notable for ','amalgamating the Northern and southern provinces ','introducing indirect rule ','establishing the legislature  council ','creating a Northern majority in the legislature council.','','','c','','post-utme','2010',97,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(102,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as ','exclusive ','extra-ordinary  ','residual  ','concurrent','','','d','','post-utme','2010',85,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:15'),(103,'During the period 1960-1966, Nigerian was governed under the ','presidential system of government ','Westminster system of government ','confederal system of government ','Unitary system of government.','','','b','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(104,'Which of the following in the Sokoto Caliphate performed functions similar to that of the Bashorun in Oyo Kingdom? ','Waziri ','Galadima ','Ma’aji  ','Alkali  ','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(105,'In the Igbo political system, the most senior  member of the council of elders is the ','Okpara  ',' Obi  ',' Eze  ',' Ofo','','','a','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:36'),(106,'A non-monarchial state can best be described as a ','republic ','confederation ','nation ','federation ','','','a','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-08-10 06:58:54'),(107,'Proportional representation favours a ','multi-party system ','three party system ','two-party system ','one party system ','','','a','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(108,'One major factor that differentiates the presidential from the parliamentary system is  ','separation of the powers ','judicial independence  ','passage of bills ','party system','','','a','','post-utme','2010',97,'Admin','0000-00-00 00:00:00','2020-07-28 00:06:45'),(109,'A state with a hegemonic party is one in which ','there is one dominant party ','there is no opposition party  ','there is only one party  ','other parties are officially recognized.','','','a','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(110,'In the First Republic, Politics in Northern Nigeria was dominated by: ','NEPU ','UMBC ','NCNC ','NPC','','','d','','post-utme','2010',91,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:40'),(111,'The creation of classless society is the ultimate aim of ','communism ','socialism  ','fascism ','capitalism.','','','a','','post-utme','2010',93,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:41'),(112,'Herbert Macaulay was the first president of ','NCNC ',' AG  ','UMBC ','NEPU','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-08-13 13:03:52'),(113,'A special election organized to decide on a political issue is known as ','plebiscite ','by-election  ','general election ','primary election.','','','a','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(114,'Equality before the law is a component of: ','separation of powers ','checks and balances ','the rule of law  ','constitutional law','','','c','','post-utme','2010',93,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(115,'In the process of implementing laws, the executive sometimes performs: ','judicial function ','bureaucratic function ','oversight function ','legislative function','','','a','','post-utme','2010',86,'Admin','0000-00-00 00:00:00','2020-08-16 16:28:11'),(116,'Which of the these was the main organ of the defunct OAU? ','The liberation committee ','The Council of Ministers  ','The commission for Mediation, Conciliation and Arbitration ','the Assembly of Heads of the state and Government.','','','d','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:03'),(117,'Nigeria hosted the commonwealth conference which eventually led to the independence of ','Mozambique ','Namibia  ','Zimbabwe ','Malawi','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:01'),(118,'Multilaterism in Nigeria’s foreign policy entails ','Africa being the centre piece of Nigeria’s foreign policy ','Non aligned posture in international affairs ',' Quest   for a permanent membership  of the UN security Council ','Membership of International Organizations','','','d','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:24'),(119,'The ancient Greeks practiced: ','direct democracy ','representative democracy ','liberal democracy ','benevolent dictatorships','','','a','','post-utme','2010',93,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(120,'Fascism originated from ','Greece ','Italy  ','China  ','Germany','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-08-11 11:58:54'),(121,'According to Karl Marx, the mode of production that precedes capitalism is ','mercantilism ','feudalism ','socialism ','communalism','','','b','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:15'),(122,'One of the distinctive features of a democracy is that it ','Connotes civil rule ','facilitates popular participation ','provides for a unicameral legislature ','is not associated with one party state.','','','d','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(123,'Serfs are the dominated class under ','capitalisms ','socialism ','fascism ','feudalism ','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:08'),(124,'A human community that is usually cohesive and homogeneous is ','state ','kinship','clan','Nation.','','','d','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:23'),(125,'Which of the following made the earliest contact with the Nigerian society? ','The British  ','The Portuguese ','The French ','The Germans','','','b','','post-utme','2011',96,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:08'),(126,'Under the 1963 Republican Constitution, the president exercised ','Judicial powers ','executive powers ','nominal powers ','concurrent powers.','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(127,'The principle of federal character was first enunciated in the: ','1989 constitution ','1963 constitution','1999 constitution ','1979 constitution','','','d','','post-utme','2011',82,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:41'),(128,'Between 1960 and 1966, Nigeria was governed under the  ','presidential system of government ','Westminster system of government ','confederal system of government ','unitary system of government.','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:08'),(129,'One major factor that differentiates the presidential from the parliamentary system is: ','separation of powers','judicial independence ','passage of bills  ','party system.','','','a','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(130,'A major feature of the policy of deregulation in Nigeria is the: ','enthronement of market forces mechanism ','increasing dominance of the economy by the state ','proliferations of public corporations ','phenomenal increase in direct foreign investment','','','a','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(131,'Bicameral legislature exists: ','where cameramen are allowed to cover the proceedings of the legislature ','to prevent the concentration of power in one legislative house ','to provide jobs for more politicians ','to ensure that just laws are passed','','','d','','post-utme','2011',87,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:36'),(132,'A major issue that distinguishes pressure groups from political parties is: ','membership drive  ','the objective','the voting pattern ','the ideology','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(133,'Equality before the law is a component of: ','separation of powers','checks and balances ','the rule of law','constitutional law.','','','c','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(134,'A law passed by the legislature and assented to by the executive is: ','an act','a presidential proclamation ','a decree   ','a legislative order','','','a','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:40'),(135,'The principle of checks and balances empowers the judiciary to: ','invalidate the actions of the other arms ','administer the criminal justice system ','abrogate the law','apply the law','','','a','','post-utme','2011',90,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(136,'In a parliamentary, the term shadow cabinet is often used to refer to the: ','back benchers in the house ','deputy prime ministers and assistant ministers ','rebellious members of the ruling party ','portfolio designates of the party in opposition.','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:16'),(137,'The fundamental assumption on which the idea of the rule of law is based is: ','supremacy of the constitution','rationality of human beings ','equality of human beings','love for social justice.','','','a','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:37'),(138,'Associations whose main interest is to influence public policies without attempting to capture state power are: ','communal groups','trade unions  ','political parties','pressure groups ','','','d','','post-utme','2011',98,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(139,'Multilaterism in Nigeria’s foreign policy entails: ','Africa being the centre piece of Nigeria’s foreign policy ','Non-aligned posture in international affairs ','Quest for a permanent membership of the UN Security Council ','Membership of International Organizations','','','d','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:02'),(140,'The set of policies on the basis of which countries interact with one another is called: ','Diplomacy','Foreign policy ','National policy ','International relations.','','','b','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:23'),(141,'After the defeat of Germany in World War 1, her former colonies were administered under the League of Nations as: ','occupied territories ','trust territories  ','crown colonies ','protectorates.','','','b','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(142,'The Nigeria-Cameroon crisis over Bakaasi peninsula occurred owning to the interpretation of the Treaty of 1913 and the:','resolution of the OAU ','Maroua Accord','decision of the ECOWAS Tribunal ','decision of the International Court of Justice ','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:41'),(143,'The first Nigeria leader to become chairman of the Organization of African Unity was:  ','Tafawa Balewa','Murtala Mohammed','Yakubu Gowon  ','Aguiyi-Ironsi','','','c','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:40'),(144,'Nigeria’s non-aligned policy was criticized because of the: ','ECOWAS Treaty ','Nuclear Test Ban Treaty  ','Anglo-Nigerian Pact ','Non-Proliferation Treaty ','','','c','','post-utme','2011',81,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:58'),(145,'Fascism originated from: ','Greece','Italy ','China ','Germany ','','','b','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:08'),(146,'Diarchy refers to the: ','rule by the government and the opposition parties ','mixture of parliamentary and presidential systems ','rule by political and economic elites ','rule by the military and civilians.','','','c','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:40'),(147,'A major flaw in liberal democracy is: ','the limitation of the freedom of expression ','its emphasis on political rights over economic rights ','that it promotes political instability ','its emphasis on collective ownership.','','','b','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:24'),(148,'Under military regimes in Nigeria, the branches of government that were fused are: ','executive and the legislature','executive and the judiciary ','legislature and the judiciary ','executive, the legislative and the judiciary ','','','a','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:05'),(149,'Which of the following does not described a party system? ','one dominant party system  ','two party system  ','three party system  ','multi-party system','','','b','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(150,'Laws made by local governments are called  ','Acts of Parliament ','Local Government Acts ','Bye-laws  ','Local Government Decrees ','','','b','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:39'),(151,'The commission established to handle the electoral activities in the Second Republic of Nigeria was ','National Electoral Commission  ','National Electoral Commission of Nigeria  ','Federal Electoral Commission  ','Independent National Electoral Commission','','','c','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(152,'The principle of checks and balances modifies the theory of  ','Rule of law ','Supremacy of law  ','Separation of powers  ','Delegated Legislation ','','','c','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:37'),(153,'The European Union (EU) is an  ','Economic organization  ','Association of former British Colonies ','Organization of European States ','Union European organization ','','','c','','post-utme','2012',92,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(154,'In Nigeria, promotion of judges is the responsibility of the ','Chief Justice of the Federation  ','Judicial Service Commission  ','Council of Legal Education  ','Attorney-General and Minister of Justice ','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:41'),(155,'The Legislature in Nigeria under the 1999 constitution is composed  ','109 senators and 360 members of the House of Representative  ','109 senators and 350 members of the House of Representative  ','108 senators and 350 members of the House of Representative  ','100 senators and 250 members of the House of the Representative ','','','a','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(156,'Under a parliamentary system of government, the cabinet holds office at the pleasure of the ','head state ','electorate  ','legislature  ','opposition ','','','c','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:05'),(157,'The ultimate authority in a State is referred to as  ','president  ','sovereignty ','legislature  ','legitimacy ','','','b','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:37'),(158,'The most important aspect of political participation in a democracy is  ','attending political rallies  ','voting in elections  ','registration with a political party  ','the observance of electoral processes ','','','b','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(159,'One of the foremost theorists of federalism was A. ','A.V Dicey  ','B. K.C Wheare ','C. Karl Marx  ','Baron de Montesquieu ','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:12'),(160,'The judicial organ of the United Nations is the  ','security council  ','European court  ','general assembly  ','International court of Justice  ','','','d','','post-utme','2012',62,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(161,'The Universal Negro Improvement Association was founded by  ','Casely Hayford  ','Herber Macauly  ','Marcus Garvey  ','W.E.B. Du Bois','','','c','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-08-10 06:58:54'),(162,'The Chick’s Commission in Nigeria was set up to look into  ','state’s creation  ','revenue allocation  ','minorities issues  ','extra-judicial killings','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-08-11 11:58:55'),(163,'Nigeria observed the principal of collective responsibility between  ','1960 and 1966 ','1979 and 1983  ','1985 and 1993 ','1999 and 2003','','','a','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:38'),(164,'The method used to determine the possible outcome of an electoral contest is ','conduct of elections into local government offices  ','registration of political party  ','conduct of gubernatorial elections  ','delineation of electoral constituencies ','','','a','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(165,'The principle of checks and balances empowers the judiciary to  ','apply the law  ','administer the criminal justice system  ','abrogate the law  ','invalidate the actions of the other arms ','','','d','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:52'),(166,'The final stage in the process of enacting legislation is  ','assent  ','final reading  ','notification  ','guillotine  ','','','a','','post-utme','2012',92,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(167,'Every political system performs the following basic functions excepts  ','Rule making  ','Rule transformation  ','Rule enforcement  ','Rule adjudication ','','','b','','post-utme','2012',96,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(168,'Globalization is all but one of these ','A renewed concepts in international studies  ','Limitation to the domination of the West  ','A process of making the world smaller  ','An increasing integration of the world ','','','c','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(169,'A major factor that differentiates International politics from domestic politics is that International politics ','has no centralized institution of government ','cannot enforce sanctions  ','has centralized organs of administration  ','has a central law making body','','','a','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-08-15 23:15:08'),(170,'Globalization encompasses all the following except  ','market integration  ','internationalization of politics  ','technology improvement  ','economic liberalism ','','','d','','post-utme','2012',87,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(171,'The ten non-permanent members of the security council are elected by the  ','general assembly ','trusteeship council  ','security council  ','economic and social council ','','','a','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 15:08:59'),(172,'Under the independence constitution of Nigeria, Dr. Nnamdi Azikwe was  ','Prime Minister ','Governor General  ','Lieutenant – Government ','Head of State','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:12'),(173,'Which organ is referred to as ‘the last hope’ of the common man  ','the parliament   ','the judiciary  ','the executive  ','the legislature','','','b','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(174,'What does INEC stand for?','Independent National Election Committee  ','Independent Newspapers Executive Committee  ','Independent National Export Council  ','Independent National Electoral Commission','','','d','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:25'),(175,'Which of the following is not a feature of Nigeria’s electoral system?  ','direct election   ','general election  ','Proportional representation  ','secret ballot','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:03'),(176,'The head of the Nigerian judiciary is the','Chief Justice of the Federation','Solicitor-General of the Federation  ','Attorney-General and Minister of Justice  ','President of the Court of Appeal','','','a','','post-utme','2013',78,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(177,'Manipulation of electoral boundaries for electoral purposes is known as  ','delimitation   ','gerrymandering','devolution   ','deconcentration','','','b','','post-utme','2013',92,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:41'),(178,'A mechanism used in parliament to limit debate is called  ','guillotine','adjournment   ','Motion of censor   ','delimitation','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:14'),(179,'A major function of the State Independent Electoral Commissions in Nigeria is the  ','Conduct of elections into local government offices  ','registration of political parties','conduct of gubernatorial elections','delineation of electoral constituencies','','','a','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(180,'In politics, power is all of the following except  ','capacity to affect the actions of others  ','Ability to make people do things they otherwise would not do   ','An object   ','it is part of a relationship','','','c','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:04'),(181,'Political activity at the diplomatic level is called  ','International relations','International law','International politics','All of the above','','','d','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:38'),(182,'Which of these is not an instrument of foreign policy','war    ','diplomacy  ','subversion   ','foreign aid','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:41'),(183,'The principles that have guided Nigeria’s foreign policy since independence include the following except  ','peaceful coexistence   ','political dependence  ','legal equality of states  ','non-alignment','','','b','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:15'),(184,'The independence  of the judiciary can be enhanced by the following except  ','when judges hold office for a fixed term','when judges cannot be removed from office even when they commit crimes','Appointment of judges by an independent body','political neutrality of judges','','','b','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:13'),(185,'The Aba women riot in Nigeria took place in   ','1960','1950','1922','1929','','','d','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-07-17 01:24:34'),(186,'The pressure group that resorts to unconventional methods to achieve its objectives is called ',' an institutional group  ',' a promotional group',' an interest group   ',' an anomic group','','','d','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:39'),(187,'All but one of the following is not a symbol of political culture','A national flag','The government   ','An anthem  ','The constitution','','','b','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:08'),(188,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives',' propaganda','Lobbying  ','Assault',' Boycott','','','c','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:05'),(189,'A capitalist state is based on','religion   ','creating job  opportunities  ','Dictatorship   ','Free trade','','','d','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:40'),(190,'A major flaw in a liberal democracy is','that it promotes political instability','the limitation of the freedom of expression','its emphasis on political rights over economic rights','its emphasis on collection ownership','','','c','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:24'),(191,'Nigeria’s voting at the United Nations is guided primarily by','her national interests   ','world peace   ','the cold war  ','her concern for Africa','','','a','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:24'),(192,'On the basis of its structure, a political party can be classified an indirect if','it controls government indirectly  ','it contests elections by proxy','its membership is acquired through other groups  ','it campaigns for votes through agents.','','','c','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:40'),(193,'The study of government essentially facilitates the understanding of the','governance of human societies','functioning of the entire social formation  ','observance of fundamental human rights','organization of the executive arm of government','','','a','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(194,'In judicial administration, the term ‘the bench’ refers to the  ','lawyers   ','litigants    ','registrars','judges','','','d','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(195,'How does the president relieve a minister of his appointment in a presidential system of government?','In consultation with the legislature','In consultation with the judiciary  ','by executive action','after serving a full tenure','','','c','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(196,'An elected legislator in a presidential system can lose his seat through  ','recall  ','cross-carpeting','a vote of no confidence','impeachment','','','a','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:25'),(197,'Which of the following modern principles of democracy is found in the Yoruba traditional political system  ','checks and balances  ','the constitution','multipartism  ','bicameralism','','','a','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-07-14 15:09:26'),(198,'The subject matter of politics is best described  as   ','political parties','political power  ','elections','people','','','b','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(199,'Government as an institution of a state can best be defined as a body that','recruits and trains political leaders','settles disputes and interprets laws for the state.','Legislates, executes and interprets laws for the state.','conducts elections for the state.','','','c','','wassce','2000',64,'Admin','2016-11-13 16:14:19','2020-08-15 08:42:28'),(200,'Political authority is the','legitimate right to exercise political power.','ability to control political behaviour.','right to participate in political campaigns.','right to form political parties.','','','a','','wassce','2000',65,'Admin','2016-11-13 16:14:22','2020-08-15 00:47:33'),(201,'The rule of law refers to the principle of','legality and impartiality','the supreme power of rulers.','the immunity of judges from legal actions.','the orderly execution of government policies.','','','a','','wassce','2000',61,'Admin','2016-11-13 16:14:22','2020-08-15 00:50:14'),(202,'Freedom of speech is a fundamental human right enjoyed by citizens but it may be limited if','loyalty is not shown to the ruling party','it exposes the wrong doings of the government','it endangers the security of the state.','it is used to cause embarrassment to the judiciary.','','','c','','wassce','2000',68,'Admin','2016-11-13 16:14:22','2020-08-15 00:48:58'),(203,'Which of the following is an obligation of a citizen?','Attending political rallies','Taking part in Independence Day celebrations','Contesting elections','Paying respect to the national flag.','','','d','','wassce','2000',61,'Admin','2016-11-13 16:14:22','2020-08-15 00:50:52'),(204,'The extent to which the citizens regard the institutions, officials and activities of government as right and acceptable is known as','power','legitimacy','influence','authority.','','','b','','wassce','2000',55,'Admin','2016-11-13 16:14:22','2020-08-15 08:42:26'),(205,'Diplomatic immunity is a limitation to','the theory of separation of powers.','principles of checks and balances.','parliamentary supremacy.','the rule of law','','','d','','wassce','2000',57,'Admin','2016-11-13 16:14:22','2020-08-15 08:42:26'),(206,'A federal state is always expensive to run because','every parliamentarian wants to become rich','government departments are duplicated','judges are highly paid from the consolidated fund.','maintenance of the army involves high expenditure.','','','b','','wassce','2000',78,'Admin','2016-11-13 16:14:22','2020-08-15 01:23:15'),(207,'In which of the following party systems are all shades of opinions and interests adequately represented?','Zero-party','One-party','Two-party','Multi-party','','','d','','wassce','2000',66,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:00'),(208,'Veto power in a presidential system lies with the','Attorney General','Chief of Army Staff','Executive President','Prime Minister.','','','c','','wassce','2000',71,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:16'),(209,'Which of the following is the lowest class of people in the hierarchy of a feudal system?','Nobles','Serfs','Lords','Manor.','','','b','','wassce','2000',56,'Admin','2016-11-13 16:14:23','2020-08-15 08:42:27'),(210,'Mussolini’s fascism and Hitler’s Nazism are good examples of','anarchy','feudalism','totalitarianism','oligarchy','','','c','','wassce','2000',57,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:02'),(211,'Which of the following is supreme in a federal system?','Judiciary','legislature','Constitution','Executive.','','','c','','wassce','2000',74,'Admin','2016-11-13 16:14:23','2020-08-15 08:42:27'),(212,'An order directing a detainee to be brought before the court is called','habeas corpus','an appearance','an injunction','a referendum','','','a','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-08-12 18:43:54'),(213,'Which of the following is a feature of an elite party?','Members are recruited from the working class.','The leadership is composed of aristocrats and wealthy merchants.','It usually consists of existing associations, clubs and trade unions.','Its leadership has certain techniques which attract supporters.','','','b','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-08-15 08:42:27'),(214,'All undesirable feature of capitalism is','exploitation','market economy','profit motive','free competition','','','a','','wassce','2000',75,'Admin','2016-11-13 16:14:23','2020-08-15 08:42:26'),(215,'The system of voting on behalf of another person is known as','voting by lot','casting votes.','voting by proxy','preference voting','','','c','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-08-15 08:42:26'),(216,'Authoritarianism is least Inherent in','feudalism','fascism','democracy','monarchy','','','c','','wassce','2000',98,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:14'),(217,'In which of the following systems of government are ceremonial and executive powers usually fused?','Parliamentary','Presidential','Collegial','Confederal.','','','b','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-08-15 00:47:10'),(218,'The programme of a political party is known as its','constitution','document','manifesto','propaganda','','','c','','wassce','2000',78,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:00'),(219,'Which of the following is a source of a country’s constitution','Mandamus','Judicial precedents','Injunctions','Political decisions','','','b','','wassce','2000',73,'Admin','2016-11-13 16:14:23','2020-08-15 00:49:00'),(220,'The acquisition of political power through hereditary means is a feature of','Communalism','Capitalism','Oligarchy','Monarch','','','d','','wassce','2000',53,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:15'),(221,'Which of the following factors limits the expression of public opinion?','The type of government in a state','The establishment of private media organizations.','The high literacy rate of the citizens','Religious belief of the citizens.','','','a','','wassce','2000',53,'Admin','2016-11-13 16:14:23','2020-08-15 08:42:26'),(222,'If the federal government and the unit governments are to \tpreserve their autonomy, the','Federal government must be supreme','Unit governments must be supreme','Judiciary must be supreme','Constitution must be supreme','','','d','','wassce','2000',63,'Admin','2016-11-13 16:14:23','2020-08-12 18:43:54'),(223,'Which of the following best describes the relationship between the central and the component government in a confederation?','The central government collects revenue for component government','The central and component governments have equal powers','The central government legislates for the component governments.','The central government is weaker than the component government.','','','d','','wassce','2000',69,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:00'),(224,'The administrative head of a public corporation in Nigeria is the','Managing Directors','Secretary','Board of Directors','Chairman','','','a','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-08-15 08:42:27'),(225,'The appointment, promotion and discipline of civil servants are the responsibility of the','Civil Service Union','Judicial Service Commission','Civil Service Commission','Electoral Commission.','','','c','','wassce','2000',59,'Admin','2016-11-13 16:14:23','2020-08-15 08:42:26'),(226,'Red tapism in the civil service refers to','The use of red tapes on legal documents.','Sloness of action','Prevent entrance','the co-operation between civil servant s and politicians','','','b','','wassce','2000',81,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:56'),(227,'The grant of the right to vote is called','enfranchisement','disqualification','prohibition','participation','','','a','','wassce','2000',70,'Admin','2016-11-13 16:14:23','2020-08-15 00:50:53'),(228,'The system which allows private individuals and companies to own and control the means of production is known as','socialism','fascism','capitalism','communism','','','c','','wassce','2000',66,'Admin','2016-11-13 16:14:24','2020-08-15 00:48:27'),(229,'Which of the following factors may work against a representative system of government?','High literacy of the electorate','The introduction of universal adult suffrage','Independent electoral commission','Rigging of elections','','','d','','wassce','2000',75,'Admin','2016-11-13 16:14:24','2020-08-15 01:23:00'),(230,'The powers allocated to the central government in a federation are contained in the','central legislative list','exclusive legislative list','residual legislative list','concurrent legislative list.','','','b','','wassce','2000',64,'Admin','2016-11-13 16:14:24','2020-08-15 00:47:33'),(231,'The Nigerian federal legislature is called the','Senate','Congress','National Assembly','House of Representatives','','','c','','wassce','2000',71,'Admin','2016-11-13 16:14:24','2020-08-15 01:23:00'),(232,'Delegated legislation has the advantage of','enlightening the public about law making procedure','saving parliamentary time','reducing the expenses of the legislature','preventing the executive from becoming too powerful.','','','b','','wassce','2000',70,'Admin','2016-11-13 16:14:24','2020-08-15 01:22:59'),(233,'Nigeria’s first constitution was the','Lyttleton Constitution','Clifford Constitution','Macpherson constitution','Independence Constitution','','','b','','wassce','2000',61,'Admin','2016-11-13 16:14:24','2020-08-15 00:50:13'),(234,'The Nigerian Macpherson Constitution of 1951 was significant for','the introduction of Electoral College','providing for the office of the Prime Minister','the creation of states.','establishing the Supreme Court','','','a','','wassce','2000',70,'Admin','2016-11-13 16:14:24','2020-08-15 01:23:16'),(235,'The concept of regionalism in Nigeria was first introduced by the','Independence Constitution','Macpherson Constitution','Richard’s Constitution','Lyttleton Constitution','','','c','','wassce','2000',73,'Admin','2016-11-13 16:14:24','2020-08-15 00:48:59'),(236,'Immediately after the Nigerian Civil War, Gowon’s regime embarked on','rejuvenation, resettlement and reconstruction','reconciliation, rehabilitation and reconstruction','rebuilding, rejuvenation and rehabilitation','rehabilitation, renaissance and repression.','','','b','','wassce','2000',74,'Admin','2016-11-13 16:14:24','2020-08-13 12:53:07'),(237,'Which of the following military regimes in Nigeria played a prominent role in the liberation of colonized African states?','Aguiyi Ironsi','Murtala / Obasanjo','Muhammadu Buhari','Ibrahim Babangida','','','b','','wassce','2000',70,'Admin','2016-11-13 16:14:24','2020-08-15 08:42:27'),(238,'Traditional rulers appointed by the British to implement indirect rule in Eastern Nigeria were called','palace chiefs','village chiefs','warrant chiefs','crown chiefs','','','c','','wassce','2000',63,'Admin','2016-11-13 16:14:24','2020-08-15 01:23:14'),(239,'The bill introduced by a member of the legislature is known as','a-private member’s bill','an executive bill','a state bill','a political party’s bill','','','a','','wassce','2000',80,'Admin','2016-11-13 16:14:24','2020-08-15 00:50:52'),(240,'In the federation of Nigeria, states are equally represented in the','Senate','House of Representatives','Judiciary','National Population Commission','','','a','','wassce','2000',66,'Admin','2016-11-13 16:14:24','2020-07-14 15:10:10'),(241,'In pre-colonial Igboland, administrative meetings were presided over by the','Mazi','Ogbuefi','Ozo title holder','Okpara','','','c','','wassce','2000',56,'Admin','2016-11-13 16:14:24','2020-08-15 00:49:58'),(242,'Checks and balances was a feature of pre-colonial political administration of the','Hausa','Yoruba','1gbo','Fulani','','','b','','wassce','2000',62,'Admin','2016-11-13 16:14:24','2020-08-13 13:03:52'),(243,'Which of the following groups had the best egalitarian traditional political system?','Hausa/Fulani','Yoruba','lgbo','Edo','','','c','','wassce','2000',92,'Admin','2016-11-13 16:14:24','2020-08-15 00:49:00'),(244,'In the pre-colonial Hausa/Fulani system, the appointment of an Emir in the Caliphate was approved by the','Sardauna of Sokoto and the Alkali','Galadima and the Waziri','Shehu of Bomo and the Galadima','Sultan of Sokoto and the Emir of Gwandu','','','d','','wassce','2000',76,'Admin','2016-11-13 16:14:24','2020-08-15 08:42:27'),(245,'The French policy of Assimilation in West Africa was a form of','indirect rule','direct rule','democratic rule','monarchy','','','b','','wassce','2000',60,'Admin','2016-11-13 16:14:24','2020-08-15 00:47:33'),(246,'One of the problems facing the Economic Community of West African States (ECOWAS) is that','member states do not attend meetings regularly','member states do not have a common currency','some members states want to contribute larger funds to the community','it is a rival to the Organization of African Unity','','','b','','wassce','2000',61,'Admin','2016-11-13 16:14:24','2020-08-15 00:50:13'),(247,'The world organization which existed before the United Nations Organization was the','League of Nations','European Economic Community','Organization of African Unity','Commonwealth of Nations.','','','a','','wassce','2000',80,'Admin','2016-11-13 16:14:24','2020-08-15 01:23:16'),(248,'Which of the following bodies is the most representative organ of the United Nations organization (UNO)?','The Economic and Social Council','The Trusteeship Council','The Security Council','The General Assembly.','','','d','','wassce','2000',73,'Admin','2016-11-13 16:14:24','2020-08-15 00:49:59'),(249,'Which of the following is NOT a feature of a state?','Government','Nationality','Sovereignty','Territory','','','b','','neco','2013',85,'Admin','2016-11-13 16:50:50','2020-08-13 13:03:52'),(250,'The legitimacy of government is established when','civil service commission reflects federal character','electoral commission is well funded','free and fair elections are conducted','ministers are appointed to head ministries','','','c','','neco','2013',87,'Admin','2016-11-13 16:50:50','2020-08-10 06:58:54'),(251,'The United Nations Organization (UNO) was founded in','1919','1935','1939','1945','','','d','','neco','2013',72,'Admin','2016-11-13 16:50:50','2020-08-13 12:53:07'),(252,'Which of these best defines a state? A/An','country made up of heterogeneous people','.\\ncountry with definite territory free from external control.','independent country free from external control.','organized body of people occupying a definite territory with sovereign government.','','','b','','neco','2013',88,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:25'),(253,'To ensure impartiality and independence of electoral commission, the body should be','funded by political parties','headed by a justice of the Supreme Court','headed by a professor of political science','independent of government control','','','d','','neco','2013',75,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:26'),(254,'The term ‘collective responsibility’ is an indispensable feature of ___ system of government.','diarchy','federal','parliamentary','presidential','','','c','','neco','2013',76,'Admin','2016-11-13 16:50:51','2020-08-10 06:58:54'),(255,'The Chick’s commission was set up to look into the issue of revenue allocation in','1946','1951','1953','1957','','','c','','neco','2013',95,'Admin','2016-11-13 16:50:51','2020-08-07 16:29:41'),(256,'In the Igbo pre-colonial administration, the council of elders was normally presided over by','Eze','Obi','Okpara','Onowu','','','c','','neco','2013',77,'Admin','2016-11-13 16:50:51','2020-08-10 06:58:54'),(257,'In Nigeria, the head of the electoral commission is called the','Administrative Secretary','Chairman','Electoral Commissioner','Presiding Officer','','','b','','neco','2013',91,'Admin','2016-11-13 16:50:51','2020-07-17 15:18:54'),(258,'Authority is the','ability to compel others to do what they do not want','ability to delegate power to other bodies','ability to rule without fear or favour','capacity to encourage others to do what they intended doing','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:31'),(259,'The Economic Community of West African States (ECOWAS) was formed on','28th May, 1975','29th May, 1976','28th June, 1975','28th July, 1975','','','a','','neco','2013',88,'Admin','2016-11-13 16:50:51','2020-08-08 15:42:24'),(260,'Revenue allocation means the sharing of the','national cake among the people','wealth of a nation among different levels of government','wealth of a nation among the state governments for specific purposes','wealth of a nation between the federal and local governments','','','b','','neco','2013',61,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:33'),(261,'The first military intervention in Nigeria politics was in','1960','1962.','1963','1966','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:34'),(262,'To contest an election, a candidate must be a member of a','campaign organization.','civil society organization.','national assembly','political party.','','','d','','neco','2013',90,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:35'),(263,'Military rule is an example of ______ authority.','charismatic','coercive','delegated','legal','','','b','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-29 10:00:02'),(264,'Which of these countries is NOT a member of Economic Community of West African States (ECOWAS).','Cameroon','Cape Verde','Ghana','Guinea','','','a','','neco','2013',78,'Admin','2016-11-13 16:50:51','2020-08-16 16:28:11'),(265,'Who among the following was NOT an officer in the pre-colonial Yoruba society?','Aremo','Are-Onakakanfo','Balogun','Oluwo','','','d','','neco','2013',77,'Admin','2016-11-13 16:50:51','2020-08-13 12:53:07'),(266,'The 1957 commission of enquiry which investigated the problems of ethnic domination in Nigeria was chaired by','Arthur Richard.','Frederick Lugard.','Henry Willink.','Hicks Phillipon','','','c','','neco','2013',69,'Admin','2016-11-13 16:50:51','2020-07-29 10:00:02'),(267,'Which of these groups of people had no right to make law under the pre-colonial Igbo political structure?','Age grades','Council of Elders','Osu','Priests','','','c','','neco','2013',100,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:41'),(268,'21.\tIn a parliamentary system of government a general election is usually conducted after','dissolution of parliament.','plebiscite.','referendum.','resolution.','','','a','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-08-13 13:03:52'),(269,'A nation is made up of people who share','heterogeneous characteristics.','homogeneous and heterogeneous characteristics.','homogeneous characteristics.','same government only.','','','a','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:43'),(270,'The Commonwealth of Nations consists of states formerly under ___colony.','Belgium','British','French','Portuguese','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:44'),(271,'Which of these is a feature of Nigeria federalism?','Conflict of authority does not arise','Minority groups are equally benefited','Parliamentary supremacy','Secession is constitutionally forbidden','','','b','','neco','2013',64,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:45'),(272,'Under the 1979 Nigeria constitution, the national assembly was made up of the','House of Chiefs and the Senate.','House of Lords and the House of Representatives.','Lower House and House of Representatives.','Senate and House of Representatives.','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:46'),(273,'','In a single member constituency the voters in that constituency have the right to','declare a winner of an election in their constituency','.\\nelect many representatives.','elect one representative.','','','a','','neco','2013',80,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:47'),(274,'Before the British colonialism in Nigeria, which of these was an instrument for dispensation of justice in !gbo land?','Cult','Land','Masquerade','Ofo','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:48'),(275,'The special box prepared by the electoral commission into which voters cast their votes is called','ballot box.','ballot paper.','logo.','polling booth.','','','a','','neco','2013',71,'Admin','2016-11-13 16:50:51','2020-08-02 21:36:40'),(276,'An electoral officer charged with the responsibility of announcing election result at the local government level is known as','administrative secretary.','chairman.','polling clerk','presiding officer','','','d','','neco','2013',70,'Admin','2016-11-13 16:50:51','2020-08-10 06:58:54'),(277,'The idea of federalism in Nigeria started with ______ constitution.','Clifford','Independence','Lyttleton','Macpherson','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:52','2020-08-15 23:15:08'),(278,'Under the 1979 constitution of Nigeria, each state was allowed to elect','as many senators as the state could finance','five senators','from two to five senators depending on the population','three senators','','','b','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:52'),(279,'In the pre-colonial Hause/Fulani society, the political head was called','Alkali','Galadima','Ma `aji','Wasiri','','','d','','neco','2013',86,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:53'),(280,'In dividing a country into constituencies, it is important to','ask for permission from the traditional ruler in that area','consider historical','display the voters register','involve the politicians in the areas','','','b','','neco','2013',93,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:54'),(281,'The head of the Oyomesi in pre-colonial Yoruba traditional society was','Alaafin','Are - onakakanfo','Baale','Bashorun','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:55'),(282,'The age qualification required for a Nigerian to contest as a Senator is','18','21','30','40','','','d','','neco','2013',78,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:56'),(283,'Nigeria is presently divided into how many federal constituencies?','6','36','109','360','','','c','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:57'),(284,'Before an election is conducted, the country is divided into electoral districts mainly to','avoid double voting','avoid secret voting','enable the electoral commission have more people to register','make it possible for all people in various parts of the country to be represented.','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:52','2020-08-12 18:43:54'),(285,'The following were the consequences of the Nigeria civil war EXCEPT the','creation of more states','disruption of educational and economic activities','general feelings of insecurity','loss of lives and properties','','','a','','neco','2013',66,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:59'),(286,'The parties that formed the coalition government in 1960 were ___ and ___','AG, NCNC','AG, NPC','NCNC.NEPU','NPC, NCNC','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:52','2020-08-13 13:03:52'),(287,'In Igbo assembly during the pre-colonial era, decisions were normally reached by','balloting.','consensus','hand raising','queuing','','','b','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:01'),(288,'Which of the following is a function of an electoral commission?','Contesting elections','Organizing and conducting elections','Organizing political parties','Settling disputes among political parties','','','b','','neco','2013',86,'Admin','2016-11-13 16:50:52','2020-08-07 16:29:41'),(289,'The cultural organisation which metamorphosed into \tNorthern People’s Congress (NPC) was','Arewa Consultative Forum','Borno Youth Movement','Egbe Omo Oduduwa','Jamiyyar Mutanen Arewa','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:03'),(290,'Before a candidate is declared winner under absolute majority system of voting, the candidate must score more than ___ of the total vote cast.','half','one - quarter','one - third','three - quarter','','','a','','neco','2013',75,'Admin','2016-11-13 16:50:52','2020-08-08 15:42:24'),(291,'Nigeria became a member country of the Common wealth of Nations on 1st October','1922','1951','1960','1963','','','c','','neco','2013',90,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:05'),(292,'A constitution that requires stringent procedures for amendment is termed ___ constitution.','federal','flexible','rigid','unitary','','','c','','neco','2013',69,'Admin','2016-11-13 16:50:52','2020-07-23 23:51:42'),(293,'To conduct local government elections, the electoral commission divides the local government area into','branches','constituencies','secretariats','wards.','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:52','2020-08-13 20:52:13'),(294,'Agents of political socialization include the following EXCEPT','educational institutions','political godfathers','political parties','religious institutions','','','b','','neco','2013',79,'Admin','2016-11-13 16:50:52','2020-08-10 06:58:54'),(295,'Ownership of land is a common feature of','aristocracy','capitalism','communalism','feudalism.','','','d','','neco','2013',70,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:09'),(296,'The term of the Secretary-General of United Nations (UN) is for ___ years.','eight','five','four','six','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:10'),(297,'How many members of the security council of the United Nations (UN) exercise veto power?','Eight','Five','Four','Six','','','b','','neco','2013',80,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:11'),(298,'The head of the electoral commission at the local government area is referred to as the','chairman','electoral officer','resident commissioner','returning officer','','','d','','neco','2013',84,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:12'),(299,'Who was the leader of the Northern Elements Progressive Union (NEPU)?','Alhaji Balarabe Musa','Alhaji Umaru Dikko','Mallam Aminu Kano','Sir Abubakar Tafawa Balewa','','','c','','neco','2013',81,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:13'),(300,'Which of the following is NOT a source of local government finance?','Commercial ventures','Grants','Rates','Sale of bonds','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:53','2020-08-10 06:58:54'),(301,'The first ever civilian - to - civilian transition was recorded in Nigeria in','1966','1979','1999','2003','','','d','','neco','2013',82,'Admin','2016-11-13 16:50:53','2020-08-08 15:42:24'),(302,'A manifesto is essential to political parties because it enables them to','assess the electorates','gauge public opinion','manipulate election','present programme of action','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:16'),(303,'The two Greek words that make up democracy are ___ and ___ ,','arita, demo','demo, aria','demo, krat','demo, kratia','','','d','','neco','2013',92,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:17'),(304,'The Headquarters of Organization of Petroleum Exporting Countries (OPEC) is located in','Algiers','Baghdad','Riyadh','Vienna','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:53','2020-08-10 06:58:54'),(305,'The term, “Quorum” means the number of legislators chat','are absent from a day’s proceeding.','assent to any particular bill','belong to the opposition party in the house','must be present before business could start','','','d','','neco','2013',77,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:19'),(306,'The process of sensitizing the electorate on the need to vote on the election day and also observe the rules and regulations of election is referred to as','campaign','free and fair election','gerrymandering','political socialization.','','','d','','neco','2013',91,'Admin','2016-11-13 16:50:53','2020-08-13 13:03:52'),(307,'Which of the following is NOT a feature of the civil service?','Anonymity','Expertise','Impartiality','Rigidity','','','d','','neco','2013',94,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:21'),(308,'In a federal state, power is shared','between the center government and the local authorities','among the state of the federation','among the major regions of the country','between the center government and other co-ordinate units.','','','d','','wassce','1999',73,'Admin','2016-11-13 17:15:28','2020-08-15 00:48:28'),(309,'In a federal system of government, the center is','superior to the other components','inferior to the other components','weak to the other components','equal to the other components','','','a','','wassce','1999',93,'Admin','2016-11-13 17:15:29','2020-08-15 00:50:52'),(310,'In a presidential system of government, ministers are','individually responsible to the president','individually responsible to the senate','collectively responsible to the president','collectively responsible to the electorate','','','a','','wassce','1999',71,'Admin','2016-11-13 17:15:29','2020-08-15 08:42:27'),(311,'The principle of collectively responsibility implies that','individual views cannot be expressed','decisions taken are defended in spite of individual opinions','those who hold different views must acquiesce','government cannot be personalized','','','b','','wassce','1999',79,'Admin','2016-11-13 17:15:29','2020-08-15 00:50:52'),(312,'A government controlled by a few people for their own interests is said to be','an autocracy','a tyranny','an oligarchy','a meritocracy','','','c','','wassce','1999',80,'Admin','2016-11-13 17:15:29','2020-08-15 01:23:01'),(313,'In the parliamentary system of government, formal legislation can take the following forms except','royal proclamations','order in council','acts of parliament','ministerial pronouncement','','','a','','wassce','1999',63,'Admin','2016-11-13 17:15:29','2020-08-15 08:42:28'),(314,'One of the distinctive features of democracy is that it','connotes civil rule','facilitates popular','provides for a unicameral legislature','is not associated with one-party system','','','b','','wassce','1999',58,'Admin','2016-11-13 17:15:29','2020-08-15 00:48:58'),(315,'A hereditary system of government is','an oligarchy','a gerontocracy','an aristocracy','a monarchy','','','d','','wassce','1999',54,'Admin','2016-11-13 17:15:29','2020-08-15 01:23:15'),(316,'The separation of judicial, legislative and executive function is designed to','promote freedom','prevent tyranny','promote peace','prevent anarchy','','','b','','wassce','1999',67,'Admin','2016-11-13 17:15:29','2020-08-15 00:50:51'),(317,'Bicameral legislature are a common feature of','monarchical systems','confederal systems','federal systems','unitary systems','','','c','','wassce','1999',56,'Admin','2016-11-13 17:15:29','2020-08-15 00:48:29'),(318,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as','exclusive','extra-ordinary','residual','concurrent.','','','d','','wassce','1999',70,'Admin','2016-11-13 17:15:29','2020-08-15 00:49:59'),(319,'The most important function of the exclusive organ of government is to','formulate policies','give assent to bills','control foreign policies','enforce laws.','','','a','','wassce','1999',70,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:33'),(320,'The process of learning the norms and values associated with a political system is referred to as political','socialization','indoctrination','culture','participation','','','a','','wassce','1999',63,'Admin','2016-11-13 17:15:29','2020-08-15 01:23:01'),(321,'Which of the following best describes the role of the civil service?','Promoting the interest of civil servants','Advising government and implementing its policies','Keeping records for government','Providing information on government and its agencies.','','','d','','wassce','1999',68,'Admin','2016-11-13 17:15:30','2020-08-15 08:42:26'),(322,'One instrument for safeguarding the rights of citizens is','judicial interpretation','presidential pardon','legislative intervention','writ of habeas corpus','','','d','','wassce','1999',63,'Admin','2016-11-13 17:15:30','2020-08-15 00:50:52'),(323,'Legislative control over delegated legislation can be performed through','withdrawal of delegated powers by the judiciary','nullification of unconstitutional legislation','investigation into the exercise of delegated powers','approval of legislation by the Chief Justice.','','','c','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:37'),(324,'The feature which best differentiates pressure group from political parties is that they do not','have interest in politics','seek to influences public opinion','have permanent organization','nominate ministers','','','d','','wassce','1999',67,'Admin','2016-11-13 17:15:30','2020-08-15 00:49:58'),(325,'The notion of equality before the law is the same as the principle of','supremacy of the constitution','rule of law','independence of the judiciary','nominate ministers','','','b','','wassce','1999',73,'Admin','2016-11-13 17:15:30','2020-08-15 00:47:10'),(326,'A constitution is classified as unwritten when it','does not emanate from the legislature','provides for separation of powers','originates from Britain','is not contained in any single document','','','d','','wassce','1999',54,'Admin','2016-11-13 17:15:30','2020-08-15 01:23:14'),(327,'.\\n\\nA state is said to be fascist when','its leader is patriotic but the citizens are not','all rights and liberties are subordinated to state interest','its citizens are fanatically in love with their leader','all rights and liberties are placed above state interests.','','','b','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-08-15 00:48:59'),(328,'A dominant two-party system is operated in','the United Kingdom and the United States','India and Pakistan','France and Germany','South Africa and Senegal','','','a','','wassce','1999',69,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:43'),(329,'Indirect legislation can be achieved by','judicial interpretation and precedent','passing a private member’s bill','second read of the law','the two legislative chambers considering a bill','','','a','','wassce','1999',73,'Admin','2016-11-13 17:15:30','2020-08-15 00:47:33'),(330,'Naturalization is a process of acquiring citizenship by','persons of dual nationality','foreign visitors to a country','resident foreigners of good character','persons born abroad.','','','c','','wassce','1999',62,'Admin','2016-11-13 17:15:30','2020-08-13 12:53:07'),(331,'The ideology which states that each person is the best judge of what is in his self-interest is','liberalism','socialism','fascism','feudalism','','','a','','wassce','1999',56,'Admin','2016-11-13 17:15:30','2020-08-15 00:48:59'),(332,'The Code of Conduct Bureau was established essentiality to','ensure the independence of the public service','enhance probity and accountability in public service','probe public office holders','reduce corruption in public life.','','','b','','wassce','1999',70,'Admin','2016-11-13 17:15:30','2020-08-15 00:49:58'),(333,'The British Government revoked the Character of the Royal Niger Company and took over the administration of Nigeria in','1861','1861','1900','1914','','','c','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-08-15 00:47:10'),(334,'The Independence constitution can be described as','monarchical and presidential','republican and parliamentary','monarchical and parliamentary','federal and republican','','','c','','wassce','1999',66,'Admin','2016-11-13 17:15:30','2020-08-15 01:23:15'),(335,'Which of the following parties formed the opposition in the House of Representatives during Nigeria’s First Republic?','AG and UMBC','NCNC AND NEPU','NPC and NNDP','NCNC and AG','','','a','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-08-15 08:42:26'),(336,'The first Head of Government in Independent Nigeria was','Nnamdi Azikiwe','Ahmadu Bello','Tafawa Balewa','Herbert Macaulay','','','c','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:51'),(337,'A feature common to the 1963, 1979 and 1989 constitutions of Nigeria was that they provided for a','republican system','prime minister','ceremonial head of state','president as head of government','','','a','','wassce','1999',84,'Admin','2016-11-13 17:15:30','2020-07-29 10:00:02'),(338,'The Lagos Colony and Protectorate was amalgamated with The Protectorate of Southern','1886','1893','1906','1922','','','c','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-08-15 08:42:27'),(339,'During the 1957 constitutional conference, the Willink Commission was set up to','recommend a date for independence','suggest an equitable revenue allocation  \tformula','create new regions in Nigeria','recommend solutions to the problem of the minorities','','','d','','wassce','1999',59,'Admin','2016-11-13 17:15:30','2020-08-07 16:29:41'),(340,'The duty of an Alkali under the Hausa-Fulan political system is to','adjudicate under Islamic laws','make Islamic laws','execute Islamic laws','make treaties under Islamic laws','','','a','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-08-15 01:23:16'),(341,'The motion for self-government in Nigeria was proposed by Chief Anthony Enahoro in','1956','1953','1956','1958','','','b','','wassce','1999',69,'Admin','2016-11-13 17:15:30','2020-08-15 00:47:10'),(342,'The legislative functions of the government of Benin Kingdom were performed by the','Esama','Ndichie','Uzama','Enigie','','','c','','wassce','1999',74,'Admin','2016-11-13 17:15:30','2020-08-15 01:23:01'),(343,'The highest ruling body under the Murtala Obasanjo regime differed remarkably from that of the Gowon','administration because of the','inclusion of civilians as members','exclusion of military governors from the council','inclusion of the Chief justice as member','','','b','','wassce','1999',68,'Admin','2016-11-13 17:15:30','2020-08-15 01:23:16'),(344,'Decree No.34 of May 1966 is also known as the','State Security Decree','Suspension and Modification Decree','Public Order Decree','Unification Decree','','','d','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-07-14 15:11:59'),(345,'In 1979, the Unity Party of Nigeria contested and won gubernatorial elections in','Lagos, Ogun, imo, Oyo and Bendel','Lagos, Kwara,Oyo,Ogun, and Benue','Lagos, Ogun,Oyo,Ondo and Bendel','Lagos, Kwara,Ogun,Oyo,Ondo','','','c','','wassce','1999',60,'Admin','2016-11-13 17:15:31','2020-08-15 08:42:27'),(346,'Rate are usually collected in Nigeria by','ministries of commerce in the states','local government councils','the department of Inland Revenue','the traditional rulers','','','b','','wassce','1999',75,'Admin','2016-11-13 17:15:31','2020-08-15 01:23:16'),(347,'One of the main reasons for the creation of more local governments in Nigeria is to','make them more responsive to people’s needs','weaken the powers of traditional authorities','make them more receptive to traditional rule','establish them as the third tier in the federal structure','','','a','','wassce','1999',70,'Admin','2016-11-13 17:15:31','2020-08-15 00:50:00'),(348,'Based on its objectives, the Organization of African Unity can primarily be classified as','a social organization','a political organization','a cultural organization','an economic organization','','','b','','wassce','1999',66,'Admin','2016-11-13 17:15:31','2020-08-15 00:48:58'),(349,'Nigeria’s role in ECOMOG is essentially informed by her','desire for peace and stability','chairmanship of ECOWAS.','desire to establish democracy','member ship of ECOWAS.','','','a','','wassce','1999',65,'Admin','2016-11-13 17:15:31','2020-08-15 08:42:26'),(350,'The annual budget of the OAU is approved by the','Council of Ministers','Secretary General','Assembly of Heads of State and Government','General Assembly','','','c','','wassce','1999',70,'Admin','2016-11-13 17:15:31','2020-08-15 08:42:28'),(351,'The major strategy used by OPEC to influence oil price is by','allocating production quotas to members','influencing buyers at the international market to buyer at high prices','allowing member countries to produce at their discretion','increasing the supply of the commodity','','','a','','wassce','1999',59,'Admin','2016-11-13 17:15:31','2020-08-15 01:23:16'),(352,'Nigeria’s was suspended from the Commonwealth because of her','tacit approval of military dictatorship','negative position towards other nations','complete negligence of freedom of the press','violation of fundamental human rights','','','d','','wassce','1999',81,'Admin','2016-11-13 17:15:31','2020-08-15 00:47:34'),(353,'Nigeria’s non-aligned policy means that she will','have nothing to do with the super-powers','not take sides in international issues based on ideological considerations','avoid having any dealing with any country with Ideological','relate only with member countries of the Non-Aligned Movement','','','b','','wassce','1999',78,'Admin','2016-11-13 17:15:31','2020-08-15 00:49:58'),(354,'One of the underlying principles of Nigerian foreign policy is','encouragement of peace-keeping operations in Africa','interference in the internal activities of other countries','non-commitment towards Africa unity','respect for sovereign equality of all states.','','','d','','wassce','1999',75,'Admin','2016-11-13 17:15:31','2020-08-15 01:23:01'),(355,'Before a new member is admitted to the United Nations Organization, its application must be approved by all','permanent members of the Security Council','members of the General Assembly','members of the Economic and Social Council','members of the International Court of Justice','','','a','','wassce','1999',71,'Admin','2016-11-13 17:15:31','2020-07-14 15:12:11'),(356,'Which of the following international organizations was in existence before the outbreak of the Second World War?','The OAU','The League of Nations','The UNO','The ECOWAS','','','b','','wassce','1999',68,'Admin','2016-11-13 17:15:31','2020-08-15 08:42:28'),(357,'The organ of the United Nations Organization responsible for the former colonies of defeated World War II power is the','General Assembly','Security Council','Economic and Social Council','Trusteeship Council','','','d','','wassce','1999',70,'Admin','2016-11-13 17:15:31','2020-08-15 01:23:15'),(358,'The Land Use Decree of 1978 vested the ownership of land in Nigeria in the','State Governments','Federal Government','Local Governments','Local Chiefs','','','a','','utme','2016',73,'Admin','2016-11-13 17:26:43','2020-08-15 00:50:59'),(359,'During the civil war, the major power that expressed moral support for Biafra’s self-determination was','Great Britain','the United States','China','France','','','d','','utme','2016',87,'Admin','2016-11-13 17:26:44','2020-08-15 01:25:12'),(360,'How many states were created in Nigeria in 1967?','4','12','19','21','','','b','','utme','2016',74,'Admin','2016-11-13 17:26:45','2020-08-15 01:23:10'),(361,'Decree 34 of 1966 was unacceptable to many Nigeria because it was','seen as an instrument of impoverishment','perceived to abolish the federal system','promulgated without consultation with the people','considered as alien','','','b','','utme','2016',68,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:29'),(362,'The Mid-Western Region was created in Nigeria in','1961','1962','1963','1964','','','c','','utme','2016',76,'Admin','2016-11-13 17:26:45','2020-08-15 01:25:13'),(363,'A major contentious issues confronting Nigerian Federalism is','poverty','education','health care delivery','revenue allocation','','','d','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:28'),(364,'A constitution of any country is basically','a mere piece of paper','a guide to how the country should be governed','a document stating what the leaders should do','a document stating how to power','','','b','','utme','2016',77,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:29'),(365,'The term, Rule of Law means','nobody is above the law','everybody is equal before the law','we are being governed by lawyers','A and B above','','','d','','utme','2016',74,'Admin','2016-11-13 17:26:45','2020-08-15 00:51:00'),(366,'A good example of a country which operates a cabinet system of government is','France','United Kingdom','United States','Soviet Union','','','b','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-07-23 11:40:46'),(367,'Indirect Rule was first introduced into Nigeria by','Dame Margery Perham','Sir Donald Cameron','Sir Frederick Lugard','Sir Arthur Richards','','','c','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-08-15 00:47:35'),(368,'France introduced the policy of assimilation in her colonies primarily to','teach them the art of leadership','give them a sound education','change their way of life','discourage them from ritual killings','','','c','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:12'),(369,'The first Governor-General of Nigeria was','Lord Lugard','Dr. Nnamdi Azikwe','Sir James Robertson','Major-General Aguiyi Ironsi','','','a','','utme','2016',61,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:28'),(370,'A disadvantage of the one-party system is that it','emphasizes political differences','makes accountability difficult','negates freedom of association','delays decision - making','','','c','','utme','2016',90,'Admin','2016-11-13 17:26:45','2020-08-15 08:43:16'),(371,'A typical form of delegated legislation is','an act','a bill','a decree','a bye-law','','','d','','utme','2016',83,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:11'),(372,'In federalism system of Government currency, Armed forces and National defense is the primary function o','f\\nLocal government Chairman','Armed Forces Ruling Council','Security and Exchange Commission','Exclusive list','','','d','','utme','2016',75,'Admin','2016-11-13 17:26:45','2020-08-15 08:43:15'),(373,'An electoral process in which candidates are selected for elective offices by party members is','Primary election','Electoral College','Bye election','General election','','','a','','utme','2016',100,'Admin','2016-11-13 17:26:45','2020-08-15 00:50:59'),(374,'The system of indirect rule failed in the former Eastern Nigeria primarily because','of the fragmented political structures','the chief refused to cooperate with colonial officer','the high incidence of taxation chief refused to cooperate with colonial officers','the colonial officers imposed warrant chiefs on the people','','','d','','utme','2016',87,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:11'),(375,'Citizenship refers to the','legal status of a member of a state','indigenous member of a state','highest position in a state','social status of a person in a state','','','b','','utme','2016',89,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:30'),(376,'Before Nigeria became a republic, the highest body charged with the administration of justice was the','Supreme Court','Court of Appeal','Privy court','High Court','','','c','','utme','2016',76,'Admin','2016-11-13 17:26:45','2020-08-15 08:43:15'),(377,'Nigeria’s withdrawal from the Edinburgh Commonwealth Games in July 1986 was in protest against British','supply of arms of Rhodesia','failure to improve sanctions on South Africa','negative utterances on Nigeria','support for UNITA rebels in Angola','','','b','','utme','2016',75,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:12'),(378,'Which of these is not the supreme organ of the OAU?','the council of Ministers','The Administrative Secretary General','the Assembly of Heads of States and Government','Appointment of staff','','','d','','utme','2016',73,'Admin','2016-11-13 17:26:45','2020-08-12 18:43:54'),(379,'Which of the following electoral bodies in Nigeria conducted elections from 1979 to 1983?','Federal Electoral Commission','National Electoral Commission','National Electoral Commission of Nigeria','Independent National Electoral commission','','','b','','utme','2016',86,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:29'),(380,'The Queen can do no wrong means','the Queen is above the law','the Queen acts on the advice of their ministers on matter of public policy','The Queen is the effective centre of power in the United Kingdom','The Queen has the loyalty of a vast number of the British population','','','a','','utme','2016',69,'Admin','2016-11-13 17:26:45','2020-08-15 01:25:12'),(381,'The main attributes of a state are','government, the police and the armed forces','population, territory, government and sovereignty','federal state and local governments','the press, the legislature, the executive and the judiciary','','','b','','utme','2016',87,'Admin','2016-11-13 17:26:45','2020-07-22 00:06:56'),(382,'Islam was introduced in Northern Nigeria','before the 13th century','in the 17th century','after the jihad of Uthman Dan Fodio','by the British in the early 20th century','','','c','','utme','2016',87,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:29'),(383,'The Aro age-grade system in igboland was','a religious organization','a political organization','a commercial organization','an imperial organization','','','b','','utme','2016',75,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:28'),(384,'ECOWAS comprises','16 independent states','The whole Africa','All West African states','English speaking countries only','','','c','','utme','2016',89,'Admin','2016-11-13 17:26:46','2020-08-15 01:25:12'),(385,'Prior to the formation of the OAU in 1963, Nigeria Identified with the','Brazzaville Group','Casablanca group','Libreville Group','Monrovia Group','','','a','','utme','2016',74,'Admin','2016-11-13 17:26:46','2020-08-15 00:48:45'),(386,'How many countries are founding members of O. P. E. C?','13','5','18','25','','','b','','utme','2016',68,'Admin','2016-11-13 17:26:46','2020-08-15 01:25:14'),(387,'The foremost British trading company on the West African coast was','Royal Niger Company','United African Company','Lever Brothers','John Holt and Sons','','','c','','utme','2016',72,'Admin','2016-11-13 17:26:46','2020-08-16 16:28:11'),(388,'The Zikist Movement was popular for its','philosophy of non-violence','promotion of mass literacy','militant nationalism','encouragement of multi-party system','','','c','','utme','2016',74,'Admin','2016-11-13 17:26:46','2020-08-15 00:45:39'),(389,'Which of the following sets of factors contributed to the development of nationalism in Nigeria?','Racial discrimination and oppression','Corruption and ethnicity','Paternalism and indirect rule','Election malpractices and party differences','','','a','','utme','2016',77,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:06'),(390,'Which constitution was created to legislate for the Lagos Colony and the Southern Provinces?','The Richard Constitution','The Clifford Constitution','The Lyttletion Constitution','the MacPherson Constitution','','','b','','utme','2016',81,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:06'),(391,'Judges in Nigeria enjoy security of tenure','if they are appointed by the president','if they have the support of the Nigerian Bar Association','if they are of good behaviour','during the life of the government which appoints them','','','c','','utme','2016',84,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:29'),(392,'Before the 1963 Constitution, the highest court of appeal for Nigeria was the','Supreme Court','Federal Court of Appeal','Privy Council','Federal High Court','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:46','2020-08-15 08:43:15'),(393,'Which of the following is NOT a function of the Police Force in Nigeria?','Traffic control','Arrest of criminals','making of law','Prosecution of criminals','','','c','','utme','2016',72,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:06'),(394,'In Nigeria, the highest court for Muslims is the','Alkali Court','Sharia Court of Appeal','Supreme Court','Upper Area Court','','','b','','utme','2016',78,'Admin','2016-11-13 17:26:46','2020-08-15 00:46:40'),(395,'Who was appointed by the federal government of Nigeria as the administrator of western region in 1962?','Dr. M. A. Majekodunmi','Chief Odeleye Fadahunsi','Chief S. L. Akintola','Chief Remi Fani Kayode','','','c','','utme','2016',68,'Admin','2016-11-13 17:26:46','2020-08-15 00:48:40'),(396,'The head of state in the first republic of Nigeria was','an executive president','a nominal president','a party leader','a nominee of the whole country','','','b','','utme','2016',82,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:28'),(397,'Which of the following parties formed the opposition in the House of Representatives during Nigerian first republic?','NCNC and NEPU','AG and UMBC','NPC and NNDP','NCNC and MDF','','','b','','utme','2016',84,'Admin','2016-11-13 17:26:46','2020-08-15 08:43:15'),(398,'A prominent feature of a presidential system of government is','dual executive','vote of no confidence','the rule of law','separation of powers','','','d','','utme','2016',82,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:11'),(399,'The executive checks the excesses of the legislature through','assent to bills','the use of veto power','the ratification of treaties','issuance of orders','','','b','','utme','2016',69,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:28'),(400,'The consciousness of a common identity of a people is called','nationalism','integration','indoctrination','emancipation','','','b','','utme','2016',82,'Admin','2016-11-13 17:26:46','2020-08-16 16:28:11'),(401,'Citizenship of a state by descent requires that','one is born and bred in the state','one’s mother was born in the state','one’s grandparents were citizens of that state','one is domiciled in that state','','','a','','utme','2016',75,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:29'),(402,'In order to dispense justice impartially, the judiciary primarily needs','discipline','logistics','motivation','independence','','','d','','utme','2016',78,'Admin','2016-11-13 17:26:46','2020-08-15 00:48:46'),(403,'A state with a hegemonic political party is one in which','there is one dominant party','there is no opposition party','there is only one party','other parties are officially recognized','','','a','','utme','2016',84,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:28'),(404,'Nigeria commitment to the liberation of Africa could best be seen in her policy towards','Namibia and Mozambique','the Congo and Zimbabwe','Sierra Leone and Chad','South Africa and Angola','','','d','','utme','2016',63,'Admin','2016-11-13 17:26:46','2020-08-15 00:48:09'),(405,'The set of policies on the basis of which countries interact with one another is called','constructive engagement policy','socio-economic policy','national policy','foreign policy','','','d','','utme','2016',106,'Admin','2016-11-13 17:26:46','2020-08-15 00:48:09'),(406,'Nigeria’s membership of the UN complements her foreign policy in the area of','bilateral diplomacy','regional diplomacy','sub-regional diplomacy','multi-lateral diplomacy','','','d','','utme','2016',85,'Admin','2016-11-13 17:26:47','2020-08-15 01:23:09'),(407,'Nigeria teamed up with other developing countries to assert a neutral posture under the platform of','Nationalist Movement','Pan - African Movement','Non - aligned Movement','Negritude Movement','','','c','','utme','2016',78,'Admin','2016-11-13 17:26:47','2020-08-15 08:44:28'),(408,'Nation-state is synonymous with','liberation','sovereignty','nationalism','self-actualization','','','b','','utme','2010',95,'Admin','2016-11-13 18:33:18','2020-08-15 08:44:30'),(409,'A fundamental component of political culture is','community structure','family values','economic values','social values','','','d','','utme','2010',106,'Admin','2016-11-13 18:33:18','2020-08-15 08:44:12'),(410,'A form of oligarchy in which gifted people are at the helm of affairs is','plutocracy','theocracy','gerontocracy','aristocracy','','','d','','utme','2010',93,'Admin','2016-11-13 18:33:18','2020-08-15 01:23:10'),(411,'A state that is ruled by an elected citizen is','a republic','a plutocracy','an empire','a monarchy.','','','a','','utme','2010',100,'Admin','2016-11-13 18:33:18','2020-08-15 00:48:38'),(412,'A true democracy in the modern sense exists where the','majority of the people vote','majority of the people rule','elite rules','elected representatives rule.','','','d','','utme','2010',97,'Admin','2016-11-13 18:33:18','2020-08-15 00:50:58'),(413,'In a parliamentary system, when the legislature passes a vote of no confidence on the executive, it means that the','executive is required to resign','legislature ceases to trust the executive','legislature commences legal proceeding against the executive','executive is expected to go on suspension','','','a','','utme','2010',103,'Admin','2016-11-13 18:33:18','2020-08-15 00:50:59'),(414,'The legislative body of the United States of America is the','Congress','National Assembly','Council','Parliament','','','a','','utme','2010',76,'Admin','2016-11-13 18:33:18','2020-08-15 08:44:28'),(415,'Unicameralism is a feature of the legislature in','the United Kingdom','the United States','Ghana','Israel','','','a','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:11'),(416,'The upper house in most federal systems is created to','oversee and check the lower house','prevent excesses of the executive','enable experienced elders make inputs to governance','ensure equality of federating units','','','d','','utme','2010',96,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:28'),(417,'In which of the following systems is the power of the component units more than that of the central government?','Unitary.','Federal.','Confederal','Monarchical.','','','c','','utme','2010',85,'Admin','2016-11-13 18:33:19','2020-08-15 08:43:14'),(418,'One of the general tenets of fascist doctrine is that the leader is','subordinate to the law of the state','weak relative to the constitution','subordinate to the norms of the society','supreme relative to the constitution','','','d','','utme','2010',90,'Admin','2016-11-13 18:33:19','2020-08-15 00:51:00'),(419,'In a cabinet system of government, executive power is exercised by the','president','monarch','dominant party','head of government','','','d','','utme','2010',94,'Admin','2016-11-13 18:33:19','2020-08-15 00:45:56'),(420,'The principle of separation of powers is best practiced in the','monarchical system','parliamentary system.','feudal system','presidential system','','','d','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:12'),(421,'A typical form of delegated legislation is','a decree','a bill','a bye-law','an act','','','c','','utme','2010',91,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:11'),(422,'16.\tThe rights of a citizen can be withdrawn by the state if the person','is convicted of a serious crime','leaves the country permanently','is pronounced dead','opposes the government violently.','','','a','','utme','2010',110,'Admin','2016-11-13 18:33:19','2020-08-14 14:29:55'),(423,'An electoral process in which candidates are selected for elective offices by party members is','bye election','electoral college','general election','primary election.','','','d','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:11'),(424,'In theory, one major advantage of the one-party systems is that it','promotes greater mass participation in government','serves as an instrument of national integration','guarantees social justice','eliminates intra-party conflict.','','','b','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-08-15 01:23:09'),(425,'A tactic employed by pressure groups to achieve their objectives is','propaganda','electioneering campaign','lobbying','memorandum.','','','c','','utme','2010',92,'Admin','2016-11-13 18:33:19','2020-08-15 00:48:46'),(426,'Public opinion can be measured through','strike action','referendum','rumour','negotiation.','','','b','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-08-15 01:25:13'),(427,'Which of the following is the main function of the civil service?','Supporting the party in power.','Allocating resources to the federating units.','Mobilizing grassroots support for government.','Implementing government policies.','','','d','','utme','2010',77,'Admin','2016-11-13 18:33:19','2020-08-15 00:48:08'),(428,'Who was the political head of the Old Oyo Empire?','Aremo.','Oyomesi.','Alaafin.','Bashorun.','','','c','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:10'),(429,'The Igbo political system was based on','family ties','Umunna','Umuada','age grades','','','d','','utme','2010',96,'Admin','2016-11-13 18:33:19','2020-08-15 00:48:45'),(430,'The Aro age-grade system in lgboland was','a commercial organization','a political organization','an imperial organization','a religious organization.','','','d','','utme','2010',86,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:13'),(431,'France introduced the policy of assimilation in her colonies primarily to','change their way of life','give them a sound education','discourage them from ritual killings','teach them the art of leadership','','','a','','utme','2010',99,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:27'),(432,'The foremost British trading company on the West African coast was','Lever Brothers','United African Company','John Holt and. Sons','Royal Niger Company','','','b','','utme','2010',99,'Admin','2016-11-13 18:33:19','2020-08-15 01:23:10'),(433,'Which of these rulers resisted colonial rule and was deported to Calabar?','Oba Ovoramwen.','King Dosunmu','King Jaja.','King Kosoko','','','b','','utme','2010',81,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:12'),(434,'Nigerian nationalism was described as two-phased by','James S. Coleman','Edward Wilmot Blyden','David Ricardo','John Payne Jackson.','','','a','','utme','2010',83,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:12'),(435,'One major weakness of the Independence constitution is that it','gave full powers to the Supreme Court in Nigeria','gave total independence to Nigeria','empowered Britain to continue to rule','failed to provide the country with full sovereignty.','','','d','','utme','2010',85,'Admin','2016-11-13 18:33:19','2020-08-14 14:29:55'),(436,'The first law-making body in Nigeria after amalgamation was','Legislative Council','National Assembly','Regional Assembly','Nigerian Council.','','','a','','utme','2010',96,'Admin','2016-11-13 18:33:19','2020-08-14 14:29:55'),(437,'The designation of ministers as chief executives and accounting officers was recommended by a commission headed by','Simeon Adebo','S.J.Cookey','Dotun Philips.','Jerome Udoji.','','','d','','utme','2010',90,'Admin','2016-11-13 18:33:19','2020-08-14 14:29:55'),(438,'A major shortcoming of the Ombudsman is','its inability to restrain bureaucratic excesses','lack of clear-cut mandate','lack of executive power to enforce decisions','lack of adequate resources.','','','c','','utme','2010',94,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:28'),(439,'One of the strong points of the multi-party system in Nigeria’s Fourth Republic is','government interference','wider political participation','wider anti-democracy campaign','the provision for a bicameral legislature.','','','b','','utme','2010',97,'Admin','2016-11-13 18:33:19','2020-08-15 00:50:59'),(440,'In which of the following is the ceremonial and executive powers fused?','Federal system of government','Parliamentary system of government','Unitary system of government','Presidential system of government','','','d','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-08-15 08:44:11'),(441,'A major contentious issue confronting Nigerian federalism is','health care delivery','education','revenue allocation','poverty','','','c','','utme','2010',97,'Admin','2016-11-13 18:33:20','2020-08-15 08:44:06'),(442,'The main purpose of establishing public enterprises in Nigeria is to','enrich the elite','provide essential services','compete with the private sector','increase government revenue','','','b','','utme','2010',100,'Admin','2016-11-13 18:33:20','2020-08-15 08:44:28'),(443,'Parastatals are established to','expand business transactions','maximize government profits','render social services','enhance entrepreneurial skills','','','c','','utme','2010',93,'Admin','2016-11-13 18:33:20','2020-08-15 08:44:04'),(444,'The General Purpose Committee of the local government is the','body responsible for supervising self-help projects','local government public relations unit','body for awarding contracts','cabinet of the local government.','','','d','','utme','2010',92,'Admin','2016-11-13 18:33:20','2020-08-15 00:46:35'),(445,'The highest organ of the state during the Babangida Regime was the','Armed Forces Ruling Council','Supreme Military Council','Federal Executive Council .','Provisional Ruling Council.','','','d','','utme','2010',97,'Admin','2016-11-13 18:33:20','2020-08-15 08:43:15'),(446,'Decree 34 of 1966 was unacceptable to many Nigerians because it was','promulgated without consultation with the people','perceived to abolish the federal system','considered as alien','seen as an instrument of impoverishment','','','a','','utme','2010',97,'Admin','2016-11-13 18:33:20','2020-08-14 14:29:55'),(447,'Nigeria broke diplomatic relations with France in 1961 because of:','her poor relations with the francophone countries','General de-Gaulle’s negative attitude towards her','France’s diplomatic relations with Israel','France’s atomic test in the Sahara Desert','','','d','','utme','2010',98,'Admin','2016-11-13 18:33:20','2020-08-15 08:44:30'),(448,'An attribute that Nigeria shares with most non-aligned countries is','her large population','her heterogeneous population','her large size','the state of  her economy.','','','d','','utme','2010',89,'Admin','2016-11-13 18:33:20','2020-08-15 00:46:34'),(449,'Nigeria spearheaded the formation of ECOWAS during the regime of','Murtala Muhammed','Yakubu Gowon','Ibrahim Babangida','Olusegun Obasanjo.','','','b','','utme','2010',107,'Admin','2016-11-13 18:33:20','2020-08-15 08:44:11'),(450,'Nigeria was classified as a front line state for','spearheading the formation of African Union','supporting the liberation efforts in Southern Africa','helping to end the crisis in Liberia','participating in peacekeeping in the Congo','','','b','','utme','2010',82,'Admin','2016-11-13 18:33:20','2020-08-15 00:46:41'),(451,'The prominent role Nigeria played in the UN in the 70’s earned her.','permanent representation at the UN','membership of the Security Council','chairmanship of the General Assembly','non-permanent membership position.','','','b','','utme','2010',104,'Admin','2016-11-13 18:33:20','2020-08-15 08:44:04'),(452,'The head of Nigeria’s foreign mission in a Commonwealth nation is known as','ambassador','charge d’affaires.','attaché','high Commissioner','','','d','','utme','2010',95,'Admin','2016-11-13 18:33:20','2020-08-15 00:45:57'),(453,'One major function of the Authority of Heads of State and Government of ECOWAS is','appointing staff of the Secretariat','appointing the Executive Secretary','preparing the budget of the Community','organizing international conferences','','','b','','utme','2010',80,'Admin','2016-11-13 18:33:20','2020-08-15 08:43:14'),(454,'The tenure of non-permanent members of the Security Council is','4 years','2 years','6 years','5 years','','','b','','utme','2010',115,'Admin','2016-11-13 18:33:20','2020-08-15 01:25:12'),(455,'The Secretary-General of the United Nations is appointed by the','Permanent members of the Security Council on the   recommendation of the General Assembly','General Assembly on the recommendation of the Security Council','General Assembly in plenary session','Security Council acting alone.','','','b','','utme','2010',94,'Admin','2016-11-13 18:33:20','2020-08-15 00:50:59'),(456,'The approval of treaties and agreements of the Economic Community of West African States is the responsibility of the','Council of Ministers','ECOWAS Tribunal','Assembly of Heads of State and Government','Secretariat.','','','c','','utme','2010',103,'Admin','2016-11-13 18:33:20','2020-08-15 01:23:11'),(457,'The distinctive attribute of a state is the monopoly of','control','power','violence','justice.','','','b','','utme','2012',77,'Admin','2016-11-13 18:42:18','2020-08-15 08:44:05'),(458,'State as a political entity refers to','an organized group within a definite territory','an association of men in a given society','a branch of a nation','a geographical location.','','','a','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:10'),(459,'Political values are acquired in any given society through','political re-orientation','political campaign','political socialization','political indoctrination.','','','c','','utme','2012',105,'Admin','2016-11-13 18:42:19','2020-08-15 00:48:46'),(460,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate.','','','d','','utme','2012',85,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:29'),(461,'One judicial function performed by the executive is','granting of amnesty','implementing judicial orders','ensuring obedience to the law','appointing judges.','','','a','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:30'),(462,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary.','','','c','','utme','2012',85,'Admin','2016-11-13 18:42:19','2020-08-13 12:53:07'),(463,'A political system which empowers the leader with the ultimate responsibility to execute laws is','parliamentarianism','presidentialism','dictatorship','autocracy.','','','b','','utme','2012',85,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:05'),(464,'A bill is a draft which is awaiting the consideration of the','executive','party caucus','legislature','judiciary.','','','c','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-08-15 00:48:40'),(465,'The private ownership of the means of production is a feature of','capitalism','socialism','communalism','communism.','','','a','','utme','2012',74,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:11'),(466,'In a feudal system, the two major classes are the serfs and the','masses','vassals','lords','elite.','','','c','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-08-15 00:48:44'),(467,'An example of a country with a flexible constitution is','South Africa','Britain','Benin Republic','the United States of America.','','','d','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:11'),(468,'The rule of law is a negation of','equality before the law','supremacy of the law','limited power','absolute power.','','','d','','utme','2012',78,'Admin','2016-11-13 18:42:19','2020-08-15 08:43:15'),(469,'To ensure the rights and freedom of citizens, the powers of the arms of government must be','fused','incorporated','separated','rotated.','','','c','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:11'),(470,'Delegated legislation is made by bodies other than the','president','governor','parliament','judiciary','','','c','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-08-15 08:43:15'),(471,'The bringing of a session of a parliament to an end through royal proclamation is known as','political impasse','dissolution of parliament','vote of no confidence','prorogation of parliament.','','','b','','utme','2012',76,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:29'),(472,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social light.','','','c','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:06'),(473,'The commission charged with the conduct of federal elections in Nigeria is','NEC','FEDECO','INEC','NECON.','','','c','','utme','2012',87,'Admin','2016-11-13 18:42:19','2020-08-15 00:45:57'),(474,'An electoral system in which parties are assigned seats in the parliament commensurate to the number of votes polled is','absolute majority','simple majority','proportional representation.','indirect election.','','','c','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-08-15 00:47:34'),(475,'An intra-party activity for the selection of candidates for elective positions is known as','primary election','general election','mid-term election','bye-election.','','','a','','utme','2012',91,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:29'),(476,'The primary aim of pressure groups is to','attract people’s attention','protects the interest of members','capture political power','fight corrupt officials.','','','b','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:11'),(477,'Which of the following is used in gauging public opinion?','Constitution','.\t\t\\nEducational institution.','Mass media.','Electoral college.','','','c','','utme','2012',78,'Admin','2016-11-13 18:42:19','2020-08-15 00:48:38'),(478,'A permanent structure that facilitates continuity and guarantees orderly conduct in governance is','bureaucracy','public corporation','ombudsman','political party.','','','a','','utme','2012',98,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:04'),(479,'In the Hausa pre-colonial political system, a district was headed by','a hakimi','a dagaci','an alkali','a waziri.','','','d','','utme','2012',75,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:11'),(480,'Which of the following ensured the practice of democracy in the pre-colonial Yoruba political system?','Checks and balances.','Fusion of power.','Individual responsibility.','The rule of law.','','','a','','utme','2012',77,'Admin','2016-11-13 18:42:19','2020-08-15 08:44:12'),(481,'Colonization of Africa was mainly motivated by','security considerations','economic reasons','religious reasons','cultural factors.','','','b','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-08-08 15:42:24'),(482,'The French colonial system was underlined by the policy of','assimilation','paternalism','socialism','indirect rule.','','','a','','utme','2012',83,'Admin','2016-11-13 18:42:19','2020-08-15 00:46:41'),(483,'Radical nationalism in Nigeria is generally attributed to the influence of','Aminu Kano','Herbert Macaulay','Nnamdi Azikiwe','Mbonu Ojike.','','','b','','utme','2012',87,'Admin','2016-11-13 18:42:19','2020-08-15 01:25:13'),(484,'Two foreigners that directly aroused nationalist feelings among Nigerians are','Edward Blyden and Payne Jackson','Casely Hayford and James Horton','W.E.du Bois and H. O. Davies','Marcus Garvey and Casely Hayford.','','','d','','utme','2012',102,'Admin','2016-11-13 18:42:19','2020-08-15 00:51:00'),(485,'Members of the Senate in Nigeria’s First Republic were','elected directly by the people','elected by electoral college','nominated by regional and federal governments','nominated by the president of the house.','','','b','','utme','2012',67,'Admin','2016-11-13 18:42:19','2020-08-11 11:59:23'),(486,'In Nigeria, the agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil Defense Corps','Police.','','','d','','utme','2012',97,'Admin','2016-11-13 18:42:20','2020-08-15 00:48:40'),(487,'The National Assembly in Nigeria is primarily responsible for','executing laws','interpreting laws','ratifying appointments','making laws.','','','d','','utme','2012',81,'Admin','2016-11-13 18:42:20','2020-08-15 00:48:44'),(488,'The major factor militating against the efficient operation of electoral commissions in Nigeria is','inadequate public support','population size','inadequate skilled manpower','excessive political interference.','','','d','','utme','2012',80,'Admin','2016-11-13 18:42:20','2020-08-15 01:25:12'),(489,'A major objective of the Public Complaints Commission is','training and promotion of public servants','settlement of disputes among individuals','addressing the grievances of individuals and groups','fighting corruption and indiscipline.','','','d','','utme','2012',77,'Admin','2016-11-13 18:42:20','2020-08-15 08:44:05'),(490,'The three registered political parties at the inception of Nigeria’s Fourth Republic were','PDP, DPP and PPA','PDP, AD and APP','PDP,  AD and PPA','PDP, APP and AC.','','','b','','utme','2012',76,'Admin','2016-11-13 18:42:20','2020-08-16 16:28:11'),(491,'The Sharia legal system was first introduced in the Fourth Republic in','Kano State','Katsina State','Zamfara State','Sokoto State.','','','c','','utme','2012',93,'Admin','2016-11-13 18:42:20','2020-08-15 00:48:40'),(492,'Quota system and federal character principles were entrenched in the 1979 Constitution to ensure','loyalty','economic empowerment','equity','even development.','','','d','','utme','2012',87,'Admin','2016-11-13 18:42:20','2020-08-16 16:28:11'),(493,'Workers in the public corporations are known as','civil servants','private employees','public servants','professional employees.','','','c','','utme','2012',79,'Admin','2016-11-13 18:42:20','2020-08-15 08:43:14'),(494,'The central objective of privatization in Nigeria is to','reduce the retrenchment of workers','encourage prompt payment of salaries','improve standard of living','improve the efficiency of enterprises.','','','d','','utme','2012',82,'Admin','2016-11-13 18:42:20','2020-08-15 01:25:13'),(495,'Military intervention in Nigeria arose from','perceived incapability of civilians to govern','international pressure for change','the desire for a military government','civilians’ desire to relinquish power.','','','a','','utme','2012',85,'Admin','2016-11-13 18:42:20','2020-08-15 00:48:39'),(496,'The first institution introduced by the military to exercise legislative power was the','Supreme Military Council','Armed Forces Ruling Council','Federal Executive Council','Provisional Ruling Council.','','','a','','utme','2012',81,'Admin','2016-11-13 18:42:20','2020-08-15 01:25:12'),(497,'The main focus of Nigeria’s foreign policy since independence centres on','south-south cooperation','sub-regionalism','globalism','Afrocentric.','','','d','','utme','2012',83,'Admin','2016-11-13 18:42:20','2020-08-15 08:44:29'),(498,'The country that championed decolonization in Africa was','Nigeria','South Africa','Ghana','Kenya.','','','c','','utme','2012',94,'Admin','2016-11-13 18:42:20','2020-08-15 00:46:41'),(499,'A major drawback to the NEPAD initiative is its','articulation by few African leaders','affiliation to the African union','inability to empower the youth','reliance on Western donors for funds.','','','d','','utme','2012',69,'Admin','2016-11-13 18:42:20','2020-08-15 08:44:29'),(500,'The structure of the African Union includes','The Court of Justice, Pan African Congress and People’s Assembly','Pan African Parliament, the Court of Justice and the Peace and Security Council','Specialized Technical Commission, the Court of Justice and Humanitarian Board','People’s Assembly, Humanitarian Board and the Peace and Security Council.','','','b','','utme','2012',79,'Admin','2016-11-13 18:42:20','2020-08-15 08:44:28'),(501,'ECOMOG at the initial stage of its intervention in Liberia was perceived as','neutral','incompetent','partisan','invaders.','','','d','','utme','2012',93,'Admin','2016-11-13 18:42:20','2020-08-15 08:44:05'),(502,'The African leader mostly credited for spearheading the formation of the African Union is','Muammar Ghaddafi','Abdelaziz Bouteflika','Abdoulaye Wade','Thabo Mbeki.','','','a','','utme','2012',70,'Admin','2016-11-13 18:42:20','2020-08-15 00:48:09'),(503,'One of the programmes binding members of the Commonwealth is the','food and aid programme','cultural programmes','agenda for peace','scholarship scheme.','','','d','','utme','2012',79,'Admin','2016-11-13 18:42:20','2020-08-15 00:48:45'),(504,'As part of the reforms in the UN, two slots were proposed in the Security Council for','Asia','Africa','America','Europe.','','','b','','utme','2012',79,'Admin','2016-11-13 18:42:20','2020-08-15 08:44:05'),(505,'The founding members of OPEC are','Algeria, Iran, Iraq, Saudi Arabia and Kuwait','Nigeria, Libya, Iran, Iraq and, Saudi Arabia','Venezuela, Nigeria, Libya, Iran and Iraq','Saudi Arabia, Iran, Iraq, Kuwait and Venezuela.','','','d','','utme','2012',86,'Admin','2016-11-13 18:42:20','2020-08-12 18:43:54'),(506,'Power that is delegated is exercised','indirectly','by devolution','directly','by coercion.','','','a','','utme','2013',75,'Admin','2016-11-13 20:36:42','2020-08-15 14:58:36'),(507,'De jure sovereignty is acquired through','force','law','grant','treaty.','','','b','','utme','2013',94,'Admin','2016-11-13 20:36:42','2020-08-15 14:58:36'),(508,'A group of people who live together under a common law within a definite territory is a','state','community','nation-state','nation.','','','a','','utme','2013',83,'Admin','2016-11-13 20:36:43','2020-08-15 08:43:15'),(509,'Political socialization is associated with','free choice of party programmes','military take over of civilian government','the transmission of political values','political transition.','','','c','','utme','2013',80,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(510,'According to Aristotle, a form of government in which the few rule for the benefit of all is','polyarchy','diarchy','aristocracy','autocracy.','','','c','','utme','2013',96,'Admin','2016-11-13 20:36:43','2020-08-16 16:28:11'),(511,'Rule by the old people is known as','theocracy','monarchy','gerontocracy','feudalism.','','','c','','utme','2013',92,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(512,'As an executive, the commissioner is charged with the responsibility of','making laws','implementing laws','writing laws','giving loans.','','','b','','utme','2013',111,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(513,'Rule adjudication is a primary function of the','legislature','judiciary','executive','government.','','','b','','utme','2013',87,'Admin','2016-11-13 20:36:43','2020-08-15 08:44:11'),(514,'The judiciary controls the executive in federal states through','motions','delegated legislation','judicial overview','judicial review.','','','d','','utme','2013',103,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(515,'One major advantage of the unitary system is that it tends to make government','strong and stable','free of controversy','distant from the people','popular among the masses.','','','a','','utme','2013',110,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(516,'The presidential system differs from the parliamentary system of government in that','the tenure of office of the president is limited','the principle of collective responsibility applies','executive and legislative powers are fused','powers of the three arms of government are merged.','','','a','','utme','2013',99,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(517,'Which of the following advocates’ equitable distribution of wealth?','Plutocracy.','Capitalism.','Aristocracy.','Socialism.','','','d','','utme','2013',81,'Admin','2016-11-13 20:36:43','2020-08-15 00:47:35'),(518,'A constitution that is difficult to amend is','flexible','rigid','written','unwritten.','','','c','','utme','2013',87,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(519,'Which of the following constitutions is more suitable for centralization of political power?','Flexible constitution.','Unwritten constitution.','Rigid constitution','Written constitution.','','','d','','utme','2013',105,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(520,'The act of transferring autonomous powers to subordinate agencies is','devolution','concentration','deconcentration','delegation.','','','a','','utme','2013',99,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(521,'Which of the following types of citizenship cannot be withdrawn?','Citizenship by naturalization.','Citizenship by conquest.','Citizenship by birth.','Honorary citizenship.','','','c','','utme','2013',86,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(522,'The right of citizens to vote is','adult suffrage','universal suffrage','nationality suffrage','electoral suffrage.','','','b','','utme','2013',90,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(523,'A political party is different from a pressure group in its','source of finance','objective','organization','strategy.','','','b','','utme','2013',83,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(524,'One of the functions of pressure groups is to','contest elections to serve the people','nominate the president','prepare the budget','articulate the opinion of their members.','','','d','','utme','2013',107,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(525,'Public opinion refers to the','aggregate of attitudes held by members of the national assembly','aggregate views of groups on particular government activities','views held by the president of a country','views of the Chief Justice of a country.','','','b','','utme','2013',98,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(526,'The class that oversees the implementation of government decisions and policies is the','Administrative','Executive','Clerical','Technical.','','','b','','utme','2013',98,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(527,'The performance of ritual rites in the Yoruba empire is the responsibility of the','Oyo mesi','Aare-ona kakanfo','Oba','Ogboni.','','','d','','utme','2013',85,'Admin','2016-11-13 20:36:43','2020-08-15 23:15:08'),(528,'Under the emirate system, the commander of the army is the','Alkali','Hakimi','Sarkin Fada','Madawaki.','','','d','','utme','2013',74,'Admin','2016-11-13 20:36:43','2020-08-15 01:23:10'),(529,'The indirect rule system of administration was more successful in Northern Nigeria because','the people were mainly interested in being governed indirectly','of the existence of an organized structure in the area','the Europeans ensured that the farmlands of the natives were not confiscated','the natives showed little or no resistance.','','','b','','utme','2013',91,'Admin','2016-11-13 20:36:43','2020-08-15 14:58:36'),(530,'The earliest nationalist activities in Nigeria were spearheaded by','educated elites','trade unions','traditional rulers','political parties.','','','a','','utme','2013',75,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(531,'The first notable nationalist movement in West Africa was the','National Congress of British West Africa','West African Students Union','Nigeria Youth Movement','Aborigines Rights Protection Society.','','','a','','utme','2013',78,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(532,'In Nigeria’s First Republic, the Prime Minister was both the','Head of government and a lawmaker','Head of State and Commander-in-Chief of the armed forces','Commander-in-Chief of the armed forces and Party leader','Head of State and Party leader.','','','a','','utme','2013',103,'Admin','2016-11-13 20:36:44','2020-08-15 08:44:12'),(533,'Under the 1979 Constitution, statutory allocation of revenue to local government councils is the responsibility of the','Council of State','Houses of Assembly','National Economic Council','Federal Legislature.','','','d','','utme','2013',96,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(534,'Under Nigeria’s Second Republic, the Senate was under the leadership of','John Wash Pam','J. S. Tarka','Joseph Wayas','Godwin Ume-Ezeoke.','','','c','','utme','2013',97,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(535,'The Revenue Mobilization, Allocation and Fiscal Commission is statutorily empowered to determine the remuneration of','all civil servants','only elected representatives','political office holders','employees of public corporations.','','','a','','utme','2013',80,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(536,'The primary function of the Code of Conduct Bureau is to','ensure due process by public officers','ensure minimum standard of morality','retain custody of declarations','receive declaration of assets.','','','d','','utme','2013',96,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(537,'The party system practiced in Nigeria’s Third Republic was','multi-party','two-party','zero-party','one-party.','','','b','','utme','2013',90,'Admin','2016-11-13 20:36:44','2020-08-15 00:48:07'),(538,'Nigeria adopted a federal system of government because of','the fear of domination of minorities','uneven development','the availability of limited resource','the adoption of a state religion.','','','a','','utme','2013',90,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(539,'The highest policy making body under the Gowon Regime was the','Federal Executive Council','Armed Forces Ruling Council','Provisional Ruling Council','Supreme Military Council.','','','d','','utme','2013',97,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(540,'Nigeria became a federation of thirty-six states during the era of','Yakubu Gowon','Ibrahim Babangida','Sani Abacha','Abdulsalami Abubakar.','','','d','','utme','2013',87,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(541,'Which of the following headed the committee that recommended the suitability of Abuja as a new federal city?','Justice Akinola Aguda.','Justice Buba Ardo.','Justice Atanda Fatai Williams.','Justice Udo Udoma.','','','a','','utme','2013',99,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(542,'A public corporation is managed by','the board of directors','a minister','a general manager','the board of governors.','','','a','','utme','2013',89,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(543,'A major source of revenue in the post -1976 local government in Nigeria is','the joint state-local government account','internally generated revenue','the federation account','grants and loans.','','','c','','utme','2013',95,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(544,'The Provisional Ruling Council was the highest ruling body during the regime of','Sani Abacha','Muhammadu Buhari','Ibrahim Babangida','Murtala Muhammed.','','','c','','utme','2013',85,'Admin','2016-11-13 20:36:44','2020-08-15 08:43:14'),(545,'Nigeria’s non-alignment policy in the sixties lacked real substance because of her','close ties with Britain','Afrocentric policy','poor economic potential','partnership with Asian countries.','','','a','','utme','2013',99,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(546,'Under the Technical Aid Corps, Nigerian experts are deployed to','Asia, Africa and the Pacific','Africa, the Pacific and the Caribbean','Europe, South America and Asia','the Pacific, the Caribbean and Europe.','','','b','','utme','2013',87,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(547,'The centre-piece of Nigeria’s foreign policy covers only','Asia','Europe','Africa','Latin America.','','','c','','utme','2013',81,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(548,'Which of the following countries pioneered the establishment of ECOWAS alongside Nigeria?','Cameroun.','Ghana.','Togo.','Algeria.','','','c','','utme','2013',76,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(549,'Nigeria’s role in the African Union was most prominent during the regime of','President Ibrahim Babangida','President Olusegun Obasanjo','President Shehu Shagari','President Umaru Yar’adua.','','','b','','utme','2013',83,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(550,'A representative of a Commonwealth country in another member state is known as','High Commissioner','Consul-General','Ambassador','Attaché.','','','a','','utme','2013',99,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(551,'The organ of UN that promotes voluntary co­operation among member states in diverse areas is the','Security Council','International Court of Justice','General Assembly','Economic and Social Council.','','','d','','utme','2013',97,'Admin','2016-11-13 20:36:44','2020-08-15 08:44:06'),(552,'The main representative body of the United Nations is the','Secretariat','Security Council','General Assembly','Trusteeship Council.','','','b','','utme','2013',90,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(553,'The AU differs from the OAU in having','no assembly of Heads of State','effective tools for decision enforcement.','no permanent headquarters','a minimum of divergent viewpoints','','','b','','utme','2013',83,'Admin','2016-11-13 20:36:44','2020-08-15 08:44:28'),(554,'OPEC has strong influence with the','IMF','EU','ADB','AU.','','','d','','utme','2013',100,'Admin','2016-11-13 20:36:44','2020-08-15 14:58:36'),(555,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','police, army, sovereignty custom.','','','c','','utme','2014',82,'Admin','2016-11-13 20:49:36','2020-08-15 08:44:05'),(556,'The process of taking part in political and public affairs can be termed political','recognition','culture','participation','socialization','','','d','','utme','2014',81,'Admin','2016-11-13 20:49:40','2020-08-15 00:48:44'),(557,'Membership of a society is','conventional','mandatory','voluntary','constitutional','','','c','','utme','2014',121,'Admin','2016-11-13 20:49:40','2020-08-15 01:23:10'),(558,'In a democratic political system, the political sovereign is usually the','constitution','political parties','electorate','legislature','','','c','','utme','2014',68,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:04'),(559,'One basic feature of a monarchical form of government is that','separation of powers is absolute','members of the executive are elected','succession is through heredity','the ruler has a fixed tenure','','','c','','utme','2014',71,'Admin','2016-11-13 20:49:40','2020-08-15 08:43:14'),(560,'One main advantage of bicameral legislature is that it','makes for quick deliberation during emergencies','makes passage of bills easy','is less cumbersome to pass bills','is not easy to manipulate bills','','','d','','utme','2014',69,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:06'),(561,'The court that has ultimate power to interprets the constitution is the','Supreme Court','Magistrate Court','High Court','Court of Appeal','','','a','','utme','2014',92,'Admin','2016-11-13 20:49:40','2020-08-15 08:43:14'),(562,'Unitary system of government is more suitable to a country','that is sparsely populated','that possesses a strong and modern army','with a robust and dynamic economy','with a relatively small area and a homogenous population','','','d','','utme','2014',88,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:29'),(563,'An example of a country ruled by a constitutional monarch is','Uganda','Morocco','Italy','Libya','','','c','','utme','2014',88,'Admin','2016-11-13 20:49:40','2020-08-15 08:43:14'),(564,'The development of a classless society is the goal of','conservatism','feudalism','liberalism','maxims','','','d','','utme','2014',75,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:06'),(565,'A flexible constitution is one which is','easily amended','popular with the legislators','known to all the citizens','written by the parliament','','','a','','utme','2014',72,'Admin','2016-11-13 20:49:40','2020-08-15 01:23:10'),(566,'Which of the following is a feature of checks and balances?','judicial precedent','Judicial immunity','Judicial review','Code of conduct','','','c','','utme','2014',80,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:12'),(567,'Laws made by military governments at the state level are called','decrees','bye-laws','edicts','acts','','','a','','utme','2014',78,'Admin','2016-11-13 20:49:40','2020-08-15 00:48:40'),(568,'Citizenship is acquired by an alien through','registration','birth','conferment','naturalization','','','d','','utme','2014',78,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:28'),(569,'The officer responsible for announcing the result of an election is known as','ballot officer','presiding office','returning officer','electoral officer','','','c','','utme','2014',88,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:10'),(570,'The ultimate aim of political parties is to','implement people-oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','utme','2014',80,'Admin','2016-11-13 20:49:40','2020-08-15 01:25:12'),(571,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their members','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','utme','2014',74,'Admin','2016-11-13 20:49:40','2020-08-15 08:43:15'),(572,'Which of the following is not a dimension of public opinion?','Polling','Orientation','intensity','Substance','','','a','','utme','2014',83,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:06'),(573,'The body that is responsible for the appointment, discipline, promotion and dismissal of civil servants is the','Ministry of Establishment','Bureau for Public Service Reforms','Civil Service Commission','Ministry of Labour and Productivity','','','c','','utme','2014',77,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:06'),(574,'In the pre-colonial Hausa political system, the Madawaki performed the function of','Minister of Education','Minister of Defense','Minister of Interior','Minister of works','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:40','2020-08-15 00:46:40'),(575,'In the Old Oyo Empire, the Ajele','ensured good governance of the districts','mobilized the army','was the Head of the army','ensured the safety of all trade routes','','','a','','utme','2014',82,'Admin','2016-11-13 20:49:40','2020-08-15 00:50:59'),(576,'The General Strike of 1945 was caused primarily by the','harshness in trade laws as it concerns the Africans','government’s rejection of a demand for an increase of 50 percent in the cost of living allowance','persistent implementation of discriminatory laws','disparity in the criteria for employment','','','a','','utme','2014',84,'Admin','2016-11-13 20:49:40','2020-08-15 00:47:34'),(577,'Before 1945, the component units of Nigeria were','districts','provinces','states','regions','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:46'),(578,'Nationalists agitation began in Nigeria with the','Lagos protest against water rate in 1908','introduction of indirect rule','annexation of Lagos in 1861','formation of West Africa Youth League','','','b','','utme','2014',63,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:44'),(579,'The emergence of nationalism was essentially the result of the ills of','independence','slavery','colonialism','imperialism','','','c','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:11'),(580,'Which of the following nationalists was the founder of Nigeria’s first political party?','Abubakar Tafawa Balewa','Ahmadu Bello','Nnamdi Azikiwe','Herbert Macaulay','','','d','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:12'),(581,'The division of powers between the federal and regional governments into exclusive, concurrent and residual lists was done by the','1999 Constitution','Independence Constitution','Republican Constitution','1979 Constitution','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-08-15 00:45:38'),(582,'The Nigerian Independence Constitution was modified by the','1963 Constitution','1999 Constitution','1989 Constitution','1979 Constitution','','','a','','utme','2014',88,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:45'),(583,'The President of Nigeria was indirectly elected through secret ballot for a period of five years by the senate in','1983','1960','1963','1979','','','c','','utme','2014',61,'Admin','2016-11-13 20:49:41','2020-08-15 08:44:29'),(584,'The main function of the Federal Character Commission in Nigeria is','ensuring fair representation of all states in the public service','reviewing unfair administrative decisions','settling disputes among societies','providing free social services to the citizens','','','a','','utme','2014',66,'Admin','2016-11-13 20:49:41','2020-08-15 08:44:29'),(585,'The power of appointing the chairman of the Independent National Electoral Commission is vested in the','Judicial Council','Council of State','President','Senate','','','c','','utme','2014',78,'Admin','2016-11-13 20:49:41','2020-08-15 08:44:28'),(586,'The NCNC and the NPC facilitated the creation of the','Mid-West Region','Northern Region','Western Region','Eastern Region','','','a','','utme','2014',70,'Admin','2016-11-13 20:49:41','2020-08-15 08:44:28'),(587,'One of the major problems of Nigerian federalism is','lack of revenue to cater for the demands of the federation','inadequate manpower to fill vacancies','imbalance in the structure and sizes of units of federation','pre-colonial administrative structure among the units of federation','','','c','','utme','2014',67,'Admin','2016-11-13 20:49:41','2020-08-15 08:44:29'),(588,'Which of the following was done during the Gowon administration to reduce regional structural imbalance in the federation?','Appointment of ministers','Creation of states','Increase in revenue allocation','Formation of political parties','','','b','','utme','2014',76,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:45'),(589,'A problem of public corporations in Nigeria is','choice of leadership','public control','emphasis on subsidies','wastage of resources','','','d','','utme','2014',85,'Admin','2016-11-13 20:49:41','2020-08-15 08:44:10'),(590,'One feature of public corporations that was weakened by privatization is','social control','national integration','social harmony','government control','','','d','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-08-11 11:59:25'),(591,'One of the main duties of the Local Government Service Commission is to','supervise and manage the personnel of local governments','conduct election into Local Council','create an enabling working environment for council workers','handle requests for the creation of more local governments','','','a','','utme','2014',87,'Admin','2016-11-13 20:49:41','2020-08-15 08:43:14'),(592,'The option A4 model was used in the conduct of the','2007 elections','1983 elections','1993 elections','1999 elections','','','c','','utme','2014',79,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:08'),(593,'The review of Nigeria foreign policy under the Murtala/Obasanjo regime was done by','Udoji Committee','Aboyade Committee','Adedeji Commission','Philips Commission','','','c','','utme','2014',76,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:08'),(594,'Which of the following is a guiding principle of Nigeria’s foreign policy?','Total opposition to the Cold War','Posting of only carrier diplomats as envoys','Interference in the affairs of African countries','Decolonization of all African states','','','d','','utme','2014',85,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:45'),(595,'The Technical Aids Corps was established during the regime of','Olusegun Obasanjo','Sani Abacha','Ibrahim Babangida','Muhanmmadu Buhari','','','a','','utme','2014',75,'Admin','2016-11-13 20:49:41','2020-08-15 01:25:12'),(596,'The granting of asylum to Charles Taylor by Nigeria was to','protect Nigerians in Liberia','promote peace in Liberia','defy the western powers','Control Liberia','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-08-15 01:23:11'),(597,'Nigeria is regarded as a frontline state because she','sent policemen for peacekeeping in Namibia','assisted the liberation struggle in Southern Africa','assisted ECOMOG troops in Liberia','sent troops for peacekeeping Somalia.','','','b','','utme','2014',75,'Admin','2016-11-13 20:49:41','2020-08-15 00:46:33'),(598,'The reason behind Nigeria’s suspension from the Commonwealth in 1995 was','legal','political','economic','socio-cultural','','','b','','utme','2014',77,'Admin','2016-11-13 20:49:41','2020-08-15 00:46:33'),(599,'Commonwealth nations are represented in other member nations by','charge d’ affaires','ambassadors','high commissioners','attaches','','','c','','utme','2014',78,'Admin','2016-11-13 20:49:41','2020-08-15 08:44:06'),(600,'The UN succeeded the','Warsaw Pact','NATO','SEATO','League of Nations','','','d','','utme','2014',82,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:39'),(601,'The number of permanent members of the UN Security Council is','eight','five','six','seven','','','b','','utme','2014',73,'Admin','2016-11-13 20:49:41','2020-08-15 01:25:12'),(602,'The Secretary General of the OAU holds office for a renewable period of','six years','three years','four years','five years','','','c','','utme','2014',80,'Admin','2016-11-13 20:49:41','2020-08-15 08:43:14'),(603,'Former colonies of Britain belong to the association known as','OECD','NATO','European Union','Commonwealth','','','d','','utme','2014',64,'Admin','2016-11-13 20:49:41','2020-08-15 08:44:05'),(604,'Government refers to all the following, except','an institution of the state','the process of ruling a political community','the exercise of power and authority','the act of civil disobedience.','','','d','','wassce','1988',57,'Admin','2016-11-13 21:14:25','2020-08-15 08:42:26'),(605,'Government as the act of governing means the','activities of pressure groups and political parties','act of vetoing a bill','orders of judiciary and legislature','activities by which governmental policies are made and implemented','','','d','','wassce','1988',69,'Admin','2016-11-13 21:14:26','2020-08-15 00:49:59'),(606,'Unwritten constitution means that the constitution is','not written down','based only on conventions.','not contained in any single book','in draft','','','c','','wassce','1988',65,'Admin','2016-11-13 21:14:26','2020-08-15 00:48:59'),(607,'The delegation of Administrative Powers to the local units with the central supervision and control is called.','devolution','decentralization','deconcentration','centralization','','','a','','wassce','1988',96,'Admin','2016-11-13 21:14:26','2020-08-15 01:23:00'),(608,'Which of the following is not the function of the government?','Building of roads, bridges, canals, etc.','Provision of education.','Maintenance of relations with other states.','Provision of all the material needs of all citizens.','','','d','','wassce','1988',80,'Admin','2016-11-13 21:14:26','2020-08-15 00:48:58'),(609,'A flexible constitution can only be amended by','two-third (2/3) majority vote in the legislature.','referendum.','three-quarter (3/4) majority vote in the legislature.','simple majority vote in the legislature.','','','d','','wassce','1988',44,'Admin','2016-11-13 21:14:26','2020-08-15 00:50:51'),(610,'Which one of the following countries has an unwritten constitution?','Great Britain','France','United States of America','Federal Republic of Germany','','','a','','wassce','1988',74,'Admin','2016-11-13 21:14:26','2020-08-15 00:47:09'),(611,'A rigid constitution is said to be best suited for a','Federal Government','Socialist','Military Government','Unitary Government','','','a','','wassce','1988',64,'Admin','2016-11-13 21:14:26','2020-08-15 01:23:15'),(612,'Federal Election were held in Nigeria in','1946, 1951, 1954, 1979 and 1983','1954, 1959, 1964, 1979 and 1983.','1923, 1946, 1951, 1979 and 1983','1954, 1960, 1964, 1979 and 1983','','','b','','wassce','1988',70,'Admin','2016-11-13 21:14:26','2020-08-15 00:48:28'),(613,'The two components of sovereignty are','the rule of law and fundamental human rights.','political power and political authority','political culture and political socialization.','political independence and supreme authority of the state within its territory.','','','d','','wassce','1988',56,'Admin','2016-11-13 21:14:26','2020-08-15 01:23:16'),(614,'Nigeria broke diplomatic relations with Israel in 1973 because of Israeli.','recognition of Biafra.','occupation of Egyptian territory','refusal to give aid to Nigeria.','economic relations with South Africa.','','','b','','wassce','1988',74,'Admin','2016-11-13 21:14:26','2020-08-15 08:42:27'),(615,'The United Nations Organization [UNO] has its headquarters in','Britain','USSR','USA','China','','','c','','wassce','1988',68,'Admin','2016-11-13 21:14:26','2020-08-15 01:23:15'),(616,'The state is different from the government because','The state unlike the government is permanent','.\\nThe government is made up of powerful people.','Members of the government are elected.','The state is created by God.','','','a','','wassce','1988',65,'Admin','2016-11-13 21:14:26','2020-08-15 00:50:15'),(617,'A state is a special form of human association because it','has a legitimate monopoly of life and death penalties over its citizens','is the richest association in society.','has a constitution approved by the citizens','can punish law breakers','','','a','','wassce','1988',63,'Admin','2016-11-13 21:14:26','2020-08-15 00:48:28'),(618,'Which of the following is not relevant to communism','Democracy','Violent revolution','Friedrich Engels','Private Enterprise.','','','d','','wassce','1988',57,'Admin','2016-11-13 21:14:26','2020-08-15 00:50:14'),(619,'A Nigeria citizen can only be deprived of his citizenship if he is','condemned to death.','convicted by a Court of law','married to a foreigner','holding a dual citizenship.','','','d','','wassce','1988',63,'Admin','2016-11-13 21:14:26','2020-08-15 00:50:52'),(620,'In the process of governing. OUTPUT refers to','the influence of pressure group','demand of the political system','the decision of the government.','the opinion of the electorate','','','d','','wassce','1988',57,'Admin','2016-11-13 21:14:26','2020-08-15 00:47:10'),(621,'Another word for red-tapism is','democracy','autocracy','idiosyncrasy.','bureaucracy','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-08-15 00:48:27'),(622,'Rule adjudication is the main function of the','Executive','President','legislature','judiciary','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:27','2020-08-15 01:23:00'),(623,'The major problem that arose from the 1979 election centred around the','inability of many voters to find their names on the voters register','cancellation of election results in many constituencies because of alleged irregularities','inability of some dissatisfied candidates to seek redress in the Court of law.','controversy over the presidential election result.','','','d','','wassce','1988',79,'Admin','2016-11-13 21:14:27','2020-08-15 01:23:16'),(624,'The following are the key factors which influence Nigeria’s foreign relations except','peaceful co-existence','economic dependence.','non-interference','respect for territorial integrity.','','','b','','wassce','1988',56,'Admin','2016-11-13 21:14:27','2020-08-15 00:50:14'),(625,'The independent of Nigeria was in 1945 with the coming to power in Britain of','Conservative party','Tory party','Liberal party','Labour party','','','d','','wassce','1988',74,'Admin','2016-11-13 21:14:27','2020-08-15 01:23:00'),(626,'Which of the following is not an accepted way of resolving international conflict','Diplomacy.','Non-military use of force.','Propaganda','Nuclear war.','','','d','','wassce','1988',69,'Admin','2016-11-13 21:14:27','2020-08-15 08:42:27'),(627,'The membership of the Council of States in Nigeria is made up of','Federal Ministers','State commissioners','State governors','the State Governors and the Head of State.','','','d','','wassce','1988',55,'Admin','2016-11-13 21:14:27','2020-08-15 00:47:10'),(628,'The common wealth is','an economic organization','made up of all independent ex-colonies of Britain','made up of all countries who are friendly with Britain.','made up of independent European countries.','','','b','','wassce','1988',70,'Admin','2016-11-13 21:14:27','2020-08-15 00:49:59'),(629,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known as the','Bales','Obas','Ogboni','Oyomesi.','','','d','','wassce','1988',88,'Admin','2016-11-13 21:14:27','2020-08-15 08:42:26'),(630,'The declaration of a state of emergency in Western Nigeria was protected by the constitution of','1954','1951','1960','1963','','','d','','wassce','1988',64,'Admin','2016-11-13 21:14:27','2020-08-15 01:23:15'),(631,'The primary purpose of the state is to','establish a system of law and order','train people to become good citizens','cater for all the needs of the citizens','ensure the self sufficiency of its people','','','a','','wassce','1988',60,'Admin','2016-11-13 21:14:27','2020-08-15 00:49:58'),(632,'The Armed Forces Ruling Council came into existence under the','Buhari Administration','Gowon  Administration','Ironsi Administration','Babangida Administration','','','d','','wassce','1988',66,'Admin','2016-11-13 21:14:27','2020-08-15 01:23:00'),(633,'Which of the following is not a specialized agency of the United Nations Organization?','World Health Organization','The Food and Agriculture Organization','The international Labour Organization','General Assembly','','','d','','wassce','1988',87,'Admin','2016-11-13 21:14:27','2020-08-15 00:50:14'),(634,'The creation of the office of the Prime Minister in Nigeria was accomplished in','1951','1954','1957','1959','','','c','','wassce','1988',57,'Admin','2016-11-13 21:14:27','2020-08-15 00:47:35'),(635,'Which of the following is not a function of a party secretariat?','Electing the leader of the party','Organizing party conferences','Publishing the party’s manifesto','Planning party strategy to win election','','','a','','wassce','1988',59,'Admin','2016-11-13 21:14:27','2020-08-15 00:50:14'),(636,'The first Military President of Nigeria is','Lt. General Olusegun Obasanjo','Major General J.T.U. Aguiyi-Ironsi','Major General Ibrahim Babangida','General Murtala Muhammed','','','c','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-07-14 15:20:32'),(637,'The following factors favoured the introduction of indirect rule in Nigeria except the','Shortage of manpower','Shortage of funds','Existence of a system of taxation','Existence of educated elites','','','d','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-08-15 01:23:14'),(638,'The psychological support a regime gets from its citizens. If they believe the regime is right and ought to be obeyed is known as','Sovereignty','power','authority','legitimacy','','','d','','wassce','1988',49,'Admin','2016-11-13 21:14:27','2020-08-15 00:49:59'),(639,'The voluntary activities of members of a society in the selection of rulers is known as','political participation','political socialization','political decision','political culture','','','a','','wassce','1988',67,'Admin','2016-11-13 21:14:27','2020-08-15 00:50:51'),(640,'Residual powers under the Nigerian independence constitution were the powers exercised by','the Federal Government','the Regional Governments','the Local Government','both the Federal and Regional Governments','','','b','','wassce','1988',70,'Admin','2016-11-13 21:14:27','2020-08-15 00:47:34'),(641,'The highest court of appeal under the Republican constitution of Nigeria was the','Federal High Court','Judicial Committee of the Privy Council','Regional court of Appeal','Supreme Court','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:27','2020-08-15 00:47:35'),(642,'Nigeria became a federation of 19 states in','1875','1976','1967','1978','','','b','','wassce','1988',61,'Admin','2016-11-13 21:14:27','2020-08-15 00:48:57'),(643,'A popular form of proportional representation is','communal representation','single transferable vote','the alternative vote','the second ballot','','','a','','wassce','1988',64,'Admin','2016-11-13 21:14:27','2020-08-15 01:23:00'),(644,'A political concept that is composed of the attitudes, beliefs, emotions and values of a society is called political','culture','single transferable vote','authority','socialization','','','a','','wassce','1988',68,'Admin','2016-11-13 21:14:28','2020-08-15 00:48:59'),(645,'flexible constitution is advantageous because it','guarantees political stability','prevents the passing of hasty bills by the legislature','can cope with emergency periods','allows for continuity','','','c','','wassce','1988',65,'Admin','2016-11-13 21:14:28','2020-08-15 01:23:15'),(646,'The Economic community of West Africa state (E.C.O.W.A.S) is','an economic association','a political association','a cultural association','a social association','','','a','','wassce','1988',59,'Admin','2016-11-13 21:14:28','2020-08-15 01:23:16'),(647,'Which of the following is not an aim of the Organization of African Unity (O.A.U)','Promotion of unity and solidarity among African states','Co-operation of efforts to achieve a better life for the African people','Defense of the sovereignty and independence of African state','Enthronement of democratic governments in Africa.','','','d','','wassce','1988',64,'Admin','2016-11-13 21:14:28','2020-08-15 00:47:35'),(648,'It is the duty of a government to perform all the following functions, except','Preventing internal disorder','Ensuring security of life and property','Providing basic welfare services','Providing all the needs of its citizens','','','d','','wassce','1988',71,'Admin','2016-11-13 21:14:28','2020-08-15 08:42:27'),(649,'Which of the following concepts is out of place?','Fascism','Welfarism','Totalitarianism','Authoritarianism','','','b','','wassce','1988',79,'Admin','2016-11-13 21:14:28','2020-08-15 01:22:59'),(650,'The primary objective of all political parties is to','Promote the general interest of members of the public','Eradicate corruption in public life','Control the government','Campaign for vote','','','c','','wassce','1988',61,'Admin','2016-11-13 21:14:28','2020-08-15 00:47:34'),(651,'The French policy of Assimilation','was a device to transfer technology to Africa','was the same in theory as the British policy of indirect rule','was aimed at converting Africans to Frenchmen','enabled the French to stay in Africa','','','c','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-08-15 00:50:53'),(652,'Military Governors were members of the Supreme Military Council under the','Murtala Mohammed Regime','Yakubu Gowon Regime','Ibrahim Babangida Regime','Olusegun Obasanjo Regime','','','b','','wassce','1988',61,'Admin','2016-11-13 21:14:28','2020-08-15 00:50:52'),(653,'The use of forced labour was one of the features of','British colonial policy','French colonial policy','American colonial policy','Divide and rule policy','','','b','','wassce','1988',72,'Admin','2016-11-13 21:14:28','2020-08-15 08:42:27'),(654,'The controversy over the 1979 Presidential election result was','over the dispute on the conduct of the election','because educated Nigerians did not approve who received the number of votes','due to the interpretation of ¼   of the vote cast in 2/3 of all the states in the Federation.','because the winning candidate did not pay his taxes as and when due in the past three years.','','','c','','wassce','1988',81,'Admin','2016-11-13 21:14:28','2020-08-15 00:47:09'),(655,'All the following were frontline fighters for Nigeria’s Independence except','Obafemi Awolowo','Nnamdi Azikiwe','Lateef Jakande','Amino Kano','','','c','','wassce','1988',78,'Admin','2016-11-13 21:14:28','2020-08-15 01:23:15'),(656,'It is argued that most of the new States of Africa cannot remain faithful to the doctrines of non-alignment mainly because of','corruption','ethnic problems','bad leadership','poor economy','','','d','','wassce','1988',70,'Admin','2016-11-13 21:14:28','2020-08-15 00:49:59'),(657,'The first political party in Nigeria was','National Council of Nigerian Citizens (N.C.N.C)','Nigerian National Democratic Party (N.N.D.P)','Action group (A. G)','Northern Peoples Congress (N.P.C)','','','b','','wassce','1988',62,'Admin','2016-11-13 21:14:28','2020-08-15 00:49:59'),(658,'To which of these countries did Nigeria send peacekeeping force?','South Africa','Angola','Chad','Namibia','','','c','','wassce','1988',70,'Admin','2016-11-13 21:14:28','2020-08-15 01:23:01'),(659,'In the federation, the purpose of enumerating the powers of the central government is to','ensure efficient administration','ensure greater unity','reduce the financial burden of the units','limit its powers against those of the units','','','d','','wassce','1988',72,'Admin','2016-11-13 21:14:28','2020-08-15 08:42:27'),(660,'The ultimate aim of a communist system of government is \tthe distribution of goods and services according to','age','qualification','party loyalty','need, want and ability','','','d','','wassce','1988',81,'Admin','2016-11-13 21:14:28','2020-08-15 00:49:59'),(661,'Under what system of government does the state require ownership and control of the means of production for its use in benefiting the population?','Capitalism','Socialism','Feudalism','Welfarism','','','b','','wassce','1988',65,'Admin','2016-11-13 21:14:28','2020-08-15 01:23:16'),(662,'The question of civil war was raised for the first time at the \tmeeting of the O.A.U in September 1967 in','Kampala','Addis Ababa','Lagos','Kinshasa','','','d','','wassce','1988',71,'Admin','2016-11-13 21:14:28','2020-08-15 08:42:26'),(663,'Nigeria objected to the discussion of the civil war in the O.A. U. summit on the grounds that','it amount to interference in its internal affairs','some African countries recognized Biafra','Tanzania and Ivory Coast recognized Biafra','the resolution of the conflict was difficult','','','a','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-08-15 08:42:27'),(664,'Government is the machinery established to manage the affairs of','rulers','aliens','the civil service','the state','','','d','','wassce','1989',73,'Admin','2016-11-13 21:30:41','2020-08-15 00:47:11'),(665,'The judicial organ of government is the body which','implements the law','makes the law','punishes lawmakers','interprets the law','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:42','2020-08-15 01:23:01'),(666,'Which of the following is a false description of the first Nigeria Prime Minister? He','was first among equals','presided over the cabinet','was the Head of Government','exercised the prerogative of mercy','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:42','2020-08-15 00:50:52'),(667,'The twelve state structure was created in Nigeria in','1965','1966','1967','1974','','','c','','wassce','1989',71,'Admin','2016-11-13 21:30:42','2020-08-15 01:23:14'),(668,'The laws which the state legislators make normally pass through','the commissioner','the process of deliberations','the judiciary','some committees in the civil service','','','b','','wassce','1989',98,'Admin','2016-11-13 21:30:42','2020-08-15 00:47:11'),(669,'In the parliamentary system of government, ministers are','chosen from the House as well as outside','collectively responsible to parliament','representatives of various interests in the country','not members of the legislature','','','b','','wassce','1989',76,'Admin','2016-11-13 21:30:42','2020-08-16 16:28:11'),(670,'Any type of restricted franchise is a violation of principle of','constitutionalism','sovereignty','political equally','popular election','','','c','','wassce','1989',62,'Admin','2016-11-13 21:30:42','2020-08-15 01:23:00'),(671,'Which of the following is not the responsibility of the Electoral Commission in Nigeria?','Swearing in of members of the House of Assembly','Counting and publication of election results','delimitation of constituencies','Compilation of electoral register','','','a','','wassce','1989',73,'Admin','2016-11-13 21:30:42','2020-08-15 01:22:59'),(672,'Which of the following is not civic obligation of a citizen?','Obedience to law','payment of taxes','voting during elections','freedom of conscience and religion','','','d','','wassce','1989',78,'Admin','2016-11-13 21:30:42','2020-08-02 11:11:49'),(673,'The study of Government offers an individual all the following, except a','knowledge of his rights and duties','training in good citizenship','knowledge of the processes of government','training to become a judge','','','d','','wassce','1989',66,'Admin','2016-11-13 21:30:42','2020-08-15 08:42:26'),(674,'Voting started in Nigeria in 1923 because the Clifford Constitution of 1922 granted','decolonization','independence','an elective principle','self-government','','','c','','wassce','1989',79,'Admin','2016-11-13 21:30:42','2020-08-16 16:28:11'),(675,'The organ of the UNO which can impose mandatory sanctions on any of its members is the','International Court of Justice','Economic and Social Council','General Assembly','Security Council','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-08-15 00:47:12'),(676,'A unified - local government system was adopted in Nigeria under the','Tafawa Balewa administration','Yakubu Gowon administration','Shehu Shagari administration','Murtala / Obasanjo administration','','','d','','wassce','1989',67,'Admin','2016-11-13 21:30:42','2020-08-15 01:23:15'),(677,'The two parties which formed the coalition government in 1959 were the','NPC and the NCNC','NCNC and the AG','NPC and the NNA','PRP and the UPGA','','','a','','wassce','1989',75,'Admin','2016-11-13 21:30:42','2020-08-15 00:50:13'),(678,'Which of the following is not written into independence constitution of 1960?','Fundamental human rights','Exclusive powers','Concurrent list','Role of political parties','','','d','','wassce','1989',81,'Admin','2016-11-13 21:30:42','2020-08-15 01:23:00'),(679,'The process of depriving persons of the right of voting is known as','enfranchisement','disqualification','dismissal','disenfranchisement','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:42','2020-08-15 08:42:25'),(680,'The predominant influence of Northern Nigeria in the First Republic violated the federal principle of','effective co-operation among the constituent units','geographical contiguity','unity','absence of marked inequalities among the component units','','','d','','wassce','1989',62,'Admin','2016-11-13 21:30:42','2020-08-15 00:47:10'),(681,'Bicameralism refers to','a one chamber legislature','the process of voting in the legislature','the upper chamber in a legislature','a two-chamber legislature','','','d','','wassce','1989',73,'Admin','2016-11-13 21:30:43','2020-08-12 18:43:54'),(682,'The head of state under the independence constitution of Nigeria was','an absolute monarch','a constitution monarch','imposed by the British','invested with executive power','','','b','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-08-15 00:50:13'),(683,'The principle of separation of powers implies that the three main organs of government work','separately','independently but co-operatively','against one another','reluctantly and gradually for the executive','','','b','','wassce','1989',61,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:15'),(684,'The emergency powers conferred on the Federal Government under the independence constitution was first exercised in the','Western Region','Mid-Western Region','Eastern Region','Northern Region','','','a','','wassce','1989',62,'Admin','2016-11-13 21:30:43','2020-08-15 00:49:59'),(685,'A sovereign state in one','whose constitution can only be changed by a military government','where its citizens can speak without fear or favour','in which sovereignty is invested in the military','whose government decisions are made independent of foreign interference','','','d','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-08-15 00:50:53'),(686,'Which of the following is not a component of political culture?','Attitudes','Beliefs','Emotions','Age','','','d','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-08-15 00:50:53'),(687,'Representative democracy is characterized by','free election and proper register of voters','unlimited expenditure of political parties','a politically educated electorate','representation of the poor only','','','a','','wassce','1989',70,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:00'),(688,'The ratification of the appointment and dismissal of an Emir in the pre-colonial Fulani Empire was done by the','Empire of Lafiagi and the Etsu of pategi','Emirs of Kano and Katsina','Emirs of Gwandu and Sokoto','Emir of llorin','','','c','','wassce','1989',62,'Admin','2016-11-13 21:30:43','2020-08-15 00:47:34'),(689,'The primary function of a legislature is the','appointment of the president','making of laws','voting of bills','monitoring of the judiciary','','','b','','wassce','1989',64,'Admin','2016-11-13 21:30:43','2020-08-15 00:50:51'),(690,'Which of the following title among the Igbos in the pre-colonial era required substantial wealth before one could acquire it','Ofo','Okpara','Ozo','Eze','','','c','','wassce','1989',75,'Admin','2016-11-13 21:30:43','2020-08-15 00:49:59'),(691,'According to Marxist theory, those who own and control the means of production in a capitalist society are','exploiters','colonialists','workers','bourgeoisie','','','d','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:16'),(692,'The head of the Oyomesi in the old Oyo Empire was','Aremo','Are Onakakanfo','Olowo','Bashorun','','','d','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-08-15 00:50:15'),(693,'The head of the Nigerian Mission to the Commonwealth of Nations is','an Ambassador','a Consular','the Minister of External Affairs','a High Commissioner','','','d','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-08-15 08:42:26'),(694,'While political parties aim at forming a government, pressure groups aim at','imposing a military rule','causing social unrest','influencing government decisions','controlling a nation’s economy','','','c','','wassce','1989',74,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:00'),(695,'Nigeria does not maintain diplomatic relations with South Africa because of the latter’s','industrial policy','apartheid policy','foreign policy','agricultural policy','','','b','','wassce','1989',59,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:14'),(696,'Which of the following countries does not operate a federal constitution?','USA','Canada','Nigeria','France','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:43','2020-08-16 16:28:10'),(697,'Socialism developed as a protest against the evils of','monarchy','oligarchy','feudalism','capitalism','','','d','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-08-15 08:42:26'),(698,'The major advantage of the secret ballot is that','it is faster than other systems','nobody can be prevented from voting','it ensures the anonymity of each voter','losers can ask for another secret vote','','','c','','wassce','1989',88,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:15'),(699,'One of the first action of military governments when they take over power in Nigeria is to','detain all the politicians','appoint new ministers and commissioners','tour the country to explain why they have taken over','suspend the constitution','','','d','','wassce','1989',56,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:15'),(700,'A parliamentary-cabinet system of government is practiced in','Canada','Nigeria','the Soviet Union','all European countries','','','a','','wassce','1989',73,'Admin','2016-11-13 21:30:43','2020-08-15 00:50:13'),(701,'Foreign policy refers to','a policy made by a foreign country','a policy made by a country for foreigners','a policy made by a country when it is at war','the general principles which govern a state’s international behaviour','','','d','','wassce','1989',87,'Admin','2016-11-13 21:30:43','2020-08-07 16:29:41'),(702,'The constitution of the Federal Republic of Nigeria','promotes unity in diversity','allows for the dominance of the minority ethnic groups','concentrates governmental power at one level of government','advances the interest of the rich','','','a','','wassce','1989',71,'Admin','2016-11-13 21:30:43','2020-08-15 08:42:27'),(703,'Which of the following is not an objective in foreign policy?','Prestige','Large population','Territorial integrity','Survival','','','b','','wassce','1989',60,'Admin','2016-11-13 21:30:43','2020-08-15 00:50:52'),(704,'The principle of anonymity of civil servants means that they are','career officers','not the servants of a particular government','trained for the duties they perform','not credited or blamed for anything they do','','','d','','wassce','1989',80,'Admin','2016-11-13 21:30:43','2020-08-15 00:50:15'),(705,'During the 1964 Federal elections there was a total boycott of voting in','the Western Region','Lagos','the Northern Region','the Eastern Region','','','d','','wassce','1989',71,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:16'),(706,'Which of the following is not a pressure group? The','Nigerian Farmers’ Council','Nigerian Union of Teachers','National Party of Nigeria','Academic Staff Union of Universities','','','c','','wassce','1989',58,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:01'),(707,'Which of the following is not a public corporation? The','Nigerian Ports Authority','National Sports Commission','National Youth Service Corps','Nigerian Railway Corporation','','','c','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-08-15 08:42:26'),(708,'Which of the following is not an academic discipline in which a student of Government can specialize','Public Administration','Local Government','Political Territory','Public Education','','','d','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:01'),(709,'The Republican Constitution of 1963 was indigenous because it was approved by','a referendum','the representatives of the people in parliament','the British parliament','the colonial government','','','b','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-08-15 08:42:26'),(710,'Local government reforms were carried out by the Federal Military Government in','1966','1967','1970','1976','','','d','','wassce','1989',63,'Admin','2016-11-13 21:30:44','2020-08-15 01:23:00'),(711,'With which country did Nigeria break diplomatic relations in 1963 for exploding a nuclear device in the Sahara?','The Soviet Union','The U.S.A','China','France','','','d','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-08-15 08:42:27'),(712,'The first political party in Nigeria was formed after the introduction of the','Richard constitution','Clifford constitution','Bourdillon constitution','Macpherson constitution','','','b','','wassce','1989',67,'Admin','2016-11-13 21:30:44','2020-08-15 00:50:52'),(713,'Which of the following did not formally recognize Biafra’ as an independent state?','Sierra Leone','Tanzania','Gabon','Zambia','','','d','','wassce','1989',73,'Admin','2016-11-13 21:30:44','2020-08-15 01:23:16'),(714,'When there is a conflict between the regional and federal laws under the concurrent legislative list, the','Federal laws would prevail','Federal laws would be declared null and void','regional laws would prevail','Head of State would settle the conflict','','','a','','wassce','1989',72,'Admin','2016-11-13 21:30:44','2020-08-15 00:49:00'),(715,'Nigeria hosted the meeting of Commonwealth Heads of State in','1965','1966','1967','1968','','','b','','wassce','1989',68,'Admin','2016-11-13 21:30:44','2020-08-15 00:50:52'),(716,'A fascist regime is both','representative and accountable','responsive and responsible','fair and legitimate','authoritarian and totalitarian','','','d','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-08-15 08:42:28'),(717,'Which of the following is not a function of the Secretary-General of the United Nations Organization?','Supervising the Secretariat','Interpreting the treaties','Alerting the Security Council on any matter that may threaten international peace','Making annual report','','','b','','wassce','1989',61,'Admin','2016-11-13 21:30:44','2020-08-15 00:50:13'),(718,'Capitalism often encourages','Private ownership of the means of production','Deconcentration of political and economic powers in the same hands','A centrally planned economy','Public ownership of all forms enterprises','','','a','','wassce','1989',68,'Admin','2016-11-13 21:30:44','2020-07-14 15:21:50'),(719,'Which of the following African countries has diplomatic relations with South Africa?','Malawi','Zambia','Gabon','Tanzania','','','a','','wassce','1989',70,'Admin','2016-11-13 21:30:44','2020-08-15 01:23:15'),(720,'Citizens who are legally qualified to vote form','Political parties','A Trade Union Congress','Members of the House of House Assembly','The electorate','','','d','','wassce','1989',71,'Admin','2016-11-13 21:30:44','2020-08-15 00:47:11'),(721,'Election among candidates from the same party before the final elections are called','Primaries','Running Mates','Second ballots','Party conventions','','','a','','wassce','1989',68,'Admin','2016-11-13 21:30:44','2020-08-15 00:50:51'),(722,'Which of the following countries is not a member of the Economic Community of West African States (ECOWAS)?','Nigeria','Cameroun','Ghana','Togo','','','b','','wassce','1989',62,'Admin','2016-11-13 21:30:44','2020-08-15 00:50:13'),(723,'The international organization formed after the Second World War to guarantee international peace and security is the','World Bank','United Nations Organization','League of Nations','British Commonwealth of Nations','','','b','','wassce','1989',71,'Admin','2016-11-13 21:30:44','2020-08-15 00:50:53');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `history` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `history` VALUES (1,'Islam was introduced in Northern Nigeria  ','before the 13th century  ','in the 17th century  ','in the 19th century  ','in the 18th century ','','','a','','posr-utme-aaua','2013',721,'Admin','0000-00-00 00:00:00','2020-08-13 20:15:51'),(2,'Lagos became the crown colony in  ','1914','1861','1886','29-Mar-05','','','c','','posr-utme-aaua','2013',719,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(3,'In the pre-colonial Igbo political system, which of the following was the most democratic organ of government','The Umand ','Eze  ','Isu  ','Ohanaeze','','','d','','posr-utme-aaua','2013',747,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(4,'A historical feature of the legislative council that met in 1923 was that for the first time it  ','included the official members who were Nigerians  ','included only British officials  ','included elected African members ','acted in a deliberative capacity  ','','','d','','posr-utme-aaua','2013',741,'Admin','0000-00-00 00:00:00','2020-08-13 12:50:07'),(5,'When was the emirate system of administration introduced in Northern Nigeria? ','19th century ','20th century ','18th century  ','17th century ','','','c','','posr-utme-aaua','2013',741,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(6,'Pre-colonial Igbo society was  ','centralised ','acephalous','feudal  ','capitalist ','','','b','','posr-utme-aaua','2013',757,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(7,'The Colonial Administration in Nigeria was  ','Authoritarian','Democratic  ','A&B  ','None of the above ','','','a','','posr-utme-aaua','2013',738,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(8,'In the traditional Hausa-Fulani political system, political authority was vested in the  ','Emir  ','Talakawa  ','Alkali ','Emirate Council ','','','a','','posr-utme-aaua','2013',743,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(9,'In the Oyo empire, the Alaafin was ','an absolute monarch  ','popularly elected  ','a constitutional  monarch ','worshipped as deity ','','','a','','posr-utme-aaua','2013',738,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(10,'The concept of Indirect Rule in Nigeria is usually associated with  ','Sir George T.  Goldie  ','Claude Macdonald  ','Lord Lugard  ','Consul Philip ','','','c','','posr-utme-aaua','2013',771,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(11,'The Lagos Colony and the Southern Protectorate of Nigeria were joined in the year ','1904','1906','1910','1914','','','b','','posr-utme-aaua','2013',724,'Admin','0000-00-00 00:00:00','2020-08-13 12:50:07'),(12,'The Committee that recommended Abuja as the New Federal Capital was headed by  ','Graham Douglas  ','Mamman Nasir  ','Rotimi Williams  ','Akinola Aguda ','','','d','','posr-utme-aaua','2013',757,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(13,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known ','Ogbon','Oyo Mesi ','Baale','Ohanaeze','','','b','','posr-utme-aaua','2013',751,'Admin','0000-00-00 00:00:00','2020-08-13 12:50:07'),(14,'Galadima in the emirate refers to  ','a village head  ','the office in charge of the army  ','the administrator of the capital city  ','a judge ','','','c','','posr-utme-aaua','2013',777,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(15,'Which of the following was the last to win Independence from colonial rule?  ','Cote d I oi e','Algeria  ','Tanzania  ','Angola ','','','d','','posr-utme-aaua','2013',755,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(16,'Which of the following made the earliest contact with the Nigerian societies?  ','The Portuguese ','The Germans  ','The British ','The French','','','a','','posr-utme-aaua','2013',764,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(17,'In the pre-colonial Yoruba society, the power of the Oyo Mesi were checked by  ','Baale  ','Ogboni  ','Are Ona Kankafo  ','Bashorun ','','','d','','posr-utme-aaua','2013',725,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(18,'The Ogboni Cult in the pre-colonial Yoruba political system played the role of the  ','judiciary  ','executive  ','police  ','legislation ','','','a','','posr-utme-aaua','2013',761,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(19,'The Aro system in Igboland was a ','Political organisation  ','Commercial organisation  ','Religious organisation  ','Imperial organisation ','','','c','','posr-utme-aaua','2013',740,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(20,'Which of the following formalised colonial penetration into Africa?  ','Paris Treaty  ','Berlin Conference  ','Lagos Treaty  ','Cape Coast ','','','b','','posr-utme-aaua','2013',757,'Admin','0000-00-00 00:00:00','2020-08-13 20:15:51'),(21,'An acephalous pre-colonial system is best represented by the  ','Oyo Empire  ','Igbo political organisation  ','Ijaw political organisation  ','Benin Empire ','','','b','','posr-utme-aaua','2013',758,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(22,'The use of forced labour was one of the features of  ','British colonial policy  ','French colonial policy  ','American colonial policy  ','divide and rule ','','','b','','posr-utme-aaua','2013',738,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(23,'During the early colonial period in Nigeria, the governor ruled the protectorate by  ','Crown Colony Orders  ','Proclamation  ','Order?in-Council  ','The Act of Parliament ','','','d','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-07-29 01:10:41'),(24,'The ratification of the appointment and dismissal of an emir in the pre-colonial Fulani empire was done by','Emir of Kano  ','Emir of Sokoto  ','Emir of Gwandu  ','B & C','','','d','','posr-utme-aaua','2013',742,'Admin','0000-00-00 00:00:00','2020-08-13 12:50:07'),(25,'In the Hausa/Fulani traditional political system jingali was  ','one of the sources of revenue to cattle owners  ','tax paid on cattle  ','a property tax paid to land owners ','a type of flat rate tax ','','','b','','posr-utme-aaua','2013',725,'Admin','0000-00-00 00:00:00','2020-08-13 12:48:56'),(26,'Which of the following titles among the Igbos in the pre-colonial era required substantial wealth before one could acquire it?','Obi  ','Eze  ','Ozo  ','Ofo ','','','c','','posr-utme-aaua','2013',762,'Admin','0000-00-00 00:00:00','2020-08-13 12:50:07'),(27,'Nigerian educated elites agitated against colonial rule  ','by bribing colonial governors  ','through lobbying  ','through newspapers ','by fighting civil war ','','','c','','posr-utme-aaua','2013',750,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(28,'In the absence of the existence of traditional rulers in the Igbo communities the British Colonial administration appointed','Eze  ','Obi  ','Ozo  ','Warrant chiefs ','','','d','','posr-utme-aaua','2013',743,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(29,'The colonial government whose constitution introduced elective principle into Nigerian politics was  ','Arthur Richards  ','Fredrick Lugard  ','Hugh Clifford  ','John Macpherson ','','','c','','posr-utme-aaua','2013',727,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(30,'The introduction of indirect rule in eastern Nigeria led to the Aba Women Riots of  ','1914','1929','1935','1916','','','b','','posr-utme-aaua','2013',757,'Admin','0000-00-00 00:00:00','2020-08-13 20:15:51'),(31,'A chief could be deposed in the pre-colonial era if he  ','violated the written constitution  ','persistently neglected the advice of the elders  ','refuse to collect taxes for the Britishs  ','married too many wives ','','','b','','posr-utme-aaua','2013',718,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(32,'Which of the following in the pre-colonial era had integrated political structure  ','Tiv  ','Ilaje ','Jukun  ','Nupe ','','','d','','posr-utme-aaua','2013',715,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(33,'The Yoruba, Edo, Nupe, and Ibo languages are classified as belonging to the  ','Arabic  ','Kwa-sub group  ','Kaw sub group  ','Kai sub group ','','','b','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(34,'Archaeology findings in Ugbo-Ukwu are suggestive of rich  ','Agricultural potentials  ','cultural civilization  ','mineral deposit  ','all of the above ','','','b','','posr-utme-aaua','2013',740,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(35,'Geographically, Nigeria lies between latitudes  ','40 and 140  ','4 and 100   ','140 and 4  ','all of the above ','','','a','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-08-13 12:50:07'),(36,'Ali Ghaji s  eig  e ded i  Ka e  Bo o in  ','1501','1502','1503','1504','','','d','','posr-utme-aaua','2013',744,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(37,'All of the following are renowned historians except  ','Prof Ade Ajayi ','Prof Toyin Falola  ','Prof Obaro Ikime  ','Prof Akin Oyebade ','','','d','','posr-utme-aaua','2013',761,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(38,'In Yorubaland, the concept which derived mainly from the wave of dispersal that attended the process of state formation is known as','Omo iya  ','Ebi  ','Oduduwa  ','all of the above ','','','b','','posr-utme-aaua','2013',739,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(39,'Oron and Ekoi people of the Cross River Basin might have migrated to Nigeria through the  ','sea  ','mountain  ','sky  ','none ','','','a','','posr-utme-aaua','2013',701,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(40,'The Portuguese first visited Benin around  ','1485','1484','1486','1483','','','a','','posr-utme-aaua','2013',769,'Admin','0000-00-00 00:00:00','2020-08-13 20:15:51'),(41,'Songhai Empire fell in... ','1591','1691','1791','1891','','','a','','posr-utme-aaua','2013',725,'Admin','0000-00-00 00:00:00','2020-08-13 12:50:07'),(42,'The Head of the Sokoto Caliphate was known as  ','Sultan  ','Caliph  ','Emir  ','Alhaji ','','','b','','posr-utme-aaua','2013',749,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(43,'The Ekitiparapo war lasted for  ','10 years  ','16 years  ','100years','50 years ','','','b','','posr-utme-aaua','2013',756,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(44,'Yoruba inter-state wars lasted for  ','16 years  ','10 years  ','100 years  ','50 years ','','','c','','posr-utme-aaua','2013',735,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(45,'The Sokoto Jihad led to the formation of Islamic States in following States except  ','Senegal  ','Mali  ','Chad  ','Togo ','','','d','','posr-utme-aaua','2013',766,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(46,'Be li   Af i a   o fe e e took pla e et ee  ','1884 and 1885  ','1885 and 1886  ','1886 and 1887  ','1883 and 1884 ','','','a','','posr-utme-aaua','2013',731,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(47,'???. and slave raiding were complementary exercises among the Yoruba  ','farming  ','hunting  ','war  ','diplomacy ','','','c','','posr-utme-aaua','2013',717,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(48,'The 1804 Jihad in Northern Nigeria could be referred to all except  ','Sokoto Jihad  ','Uthman Dan Fodiyo Jihad  ','Fulani Jihad  ','Seku Ahmadu Jihad ','','','d','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-08-13 20:15:51'),(49,'Samori Toure was captured in 1893 by  ','French imperialism  ','British imperialism  ','Germany imperialist  ','none of the above ','','','a','','posr-utme-aaua','2013',742,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43'),(50,'The first independence day speech in Nigeria was given by??.','Muhammadu Buhari','Obafemi Awolowo','Tafawa Balewa','Nnamdi Azikwe','','','c','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:43');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `image` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `url` text NOT NULL,\n  `name` varchar(200) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `insurance` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `insurance` VALUES (1,'Which of the following policies will prevent loss of home if the wage earner dies?','Term assurance','Endowment assurance','Mortgage insurance','Whole life assurance','','','c','','wassce','2014',76,'Admin','2017-01-09 12:28:06','2020-07-14 15:23:56'),(2,'One of the objectives of buying a term assurance policy is to','protect  dependants  in  case  of  death  of  the  life assured','reduce financial burden of the life assured','supplement retirement income  of  the  life  assured','maximize savings from the life assured','','','a','','wassce','2014',69,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:57'),(3,'An assurance policy taken by experts to cover possible negligence arising from their duties is','consequential loss','professional indemnity','cargo','freight','','','b','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:58'),(4,'The class of insurance that  covers  legal  liability to a third party for bodily injury and property damage caused by goods supplied is','employer’s liability','public liability','professional indemnity','products liability','','','d','','wassce','2014',80,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:59'),(5,'The  type  of  cover  that  is  designed  against  loss  of earnings following loss caused by fire and special perils is','product guarantee insurance','materials damage cover','fire damage policy','consequential loss cover','','','d','','wassce','2014',51,'Admin','2017-01-09 12:28:08','2020-08-13 12:52:49'),(6,'Which  of  the  following  risks  is  covered  by  insurance policy?','An investment loss on the stock market','Dishonesty of an employee leading to fraud','Failure of a business venture','Rise and fall of prices of goods in the market','','','b','','wassce','2014',70,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:01'),(7,'In  classification  of  risks, what is the name given to a risk  where  the  causes  of  events are linked to factors \tthat are due to the society we live in?','Dynamic risk','Particular risk','Speculative risk','Fundamental risk','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:02'),(8,'The evidence of the insurance contract is','proposal form','policy','schedule','endorsement','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:03'),(9,'The right of the insurer to step in place of the insured for the purpose of recovering damages is called','representation','indemnity','subrogation','contribution','','','c','','wassce','2014',74,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:04'),(10,'Which of the following is a contract of benefit?','Personal accident insurance','Business interruption insurance','Fire insurance','Money insurance','','','a','','wassce','2014',66,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:05'),(11,'Which of the following is not a feature of insurable interest?','Loss suffered','subject matter','Legal relationship','Financial value','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:06'),(12,'A prospective insured in an engineering insurance may be advised to purchase one of the following classes of insurance','fire cover','boiler cover','tempest cover','equipment cover','','','d','','wassce','2014',77,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:07'),(13,'The class of non-life insurance policy where cover note is issued is','fire insurance','burglary insurance','motor insurance','fidelity guarantee','','','c','','wassce','2014',71,'Admin','2017-01-09 12:28:08','2020-08-13 06:19:42'),(14,'Abandonment is mostly applicable to','marine insurance','motor insurance','fire insurance','engineering insurance','','','b','','wassce','2014',82,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:09'),(15,'Which of the following is not a benefit covered under a personal accident policy?','Death','Temporary disablement','Loss of baggage','Medical expenses','','','c','','wassce','2014',72,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:10'),(16,'In the preparation of food for eat - in - customers, the cooks made a mistake in using excess quantity of an \tingredient. A customer ate and  suffered  poisoning. \tWhich policy of the operator would pick this liability?','Public liability','Personal liability','All risks insurance','Loss of profit insurance','','','a','','wassce','2014',75,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:11'),(17,'How much premium will the insurer charge?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','b','','wassce','2014',90,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(18,'How  much  premium  will  the  insurer  return  to  the insured?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','a','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:13'),(19,'A policy that combines cover for many perils as a single policy  to  suit  the  insurance  needs of  an insured is','accident policy','protection policy','paternal policy','packaged policy','','','d','','wassce','2014',78,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(20,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:15'),(21,'The document that sets out the list of items covered in insurance is a','manifest','bill of lading','policy list','policy specification or form','','','d','','wassce','2014',94,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:16'),(22,'One of the information contained in a motor insurance cover note is the','behaviour of the insured','occupation of the insured','commencement date','previous and present insurance history','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:17'),(23,'In property insurance, which of the following is not a direct loss?','Reinstating the property destroyed','Replacing the property destroyed','Repairing the property damaged','Replacing third party property damaged','','','d','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:18'),(24,'Ade insured his property for N= 350,000.00. The property is subject to average condition. He suffered a loss amounting to N= 30,000.00 with the value of the property at the time of loss to be N= 370,000.00. How much will the insurer pay?','N= 14,583.33','N= 28,378.38','N= 30,000.00','N= 31,714.29','','','d','','wassce','2014',71,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(25,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of dispute','resolution of policy','','','a','','wassce','2014',79,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(26,'An insurer who buys reinsurance cover is insured as','retrocession','retrocedant','cession','cadent','','','d','','wassce','2014',73,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(27,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(28,'Family income option in a life policy provides that','the beneficiary will be paid for life','the beneficiary receives the policy sum','interest will be added monthly','salary will be paid to the insured until death','','','b','','wassce','2014',77,'Admin','2017-01-09 12:28:09','2020-08-13 12:52:49'),(29,'A provision in a policy that exempts an insurer from liability if the loss is less than a certain amount is','excess','transfer','lay days','franchise','','','a','','wassce','2014',92,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(30,'Which of the following policies is a peril covered under a standard fire policy?','Lightning','Storm','Civil commotion','Escape of oil','','','a','','wassce','2014',65,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:34'),(31,'A type of reinsurance where cession and acceptance is obligatory is','treaty','captive','facultative','retrocession','','','a','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:35'),(32,'A contract sold  by  insurance companies that  pay  a monthly or  quarterly income  benefit for the  life  of a person is','endowment','annuity','income','freight','','','b','','wassce','2014',84,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(33,'George effected two personal accident policies. The first policy provides N= 25,000.00 cover for loss of limb. The second policy provides N= 30,000.00 cover for loss of limb. What is the total amount that  George  will receive in the event of a valid loss of limb claim?','N= 5,000.00','N= 25,000.00','N= 30,000.00','N= 55,000.00','','','a','','wassce','2014',76,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:37'),(34,'Renewal notice is  used by  insurers  to  remind the insured of the','reduction of cover','continuation of cover','expiration of cover','increase of cover','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:38'),(35,'Risk Net Insurance Brokers Limited placed a business with an insurance company, in return the broker will be entitled to','fees','commission','profit','revenue','','','b','','wassce','2014',69,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(36,'The professional service required for effective claims administration by insurers would be provided by','loss assessors','risk managers','loss adjusters','claims consultants','','','c','','wassce','2014',73,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:40'),(37,'Which  of the following activities is  not a  function of the  Chartered  Insurance  Institute  of  Nigeria?','Setting a standard for members','Promoting Professional growth','Promoting the interest of insurers','Specifying professional qualification','','','d','','wassce','2014',79,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:41'),(38,'Effective supervision and licensing of insurance firms in Nigeria is the function of','National Insurance Commission','Institute of Loss Adjusters of Nigeria','Chartered Insurance Institute of Nigeria','Nigerian Corporation of Registered Insurance Brokers','','','a','','wassce','2014',81,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(39,'The payment made when the insured is  not  entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(40,'The owner of a life assurance policy who enters into an agreement to sell the ownership of the policy and beneficiary rights upon the death of the insured is called','an underwriter','a aviator','a factor','an assessor','','','d','','wassce','2014',78,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:43'),(41,'A small fixed sum retained by the insured in the form of a claim is','slip','severity','excess','frequency','','','b','','wassce','2014',74,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:44'),(42,'A voucher signed by the insured before collecting his claim is','money collect receipt','discharge voucher','payment receipt','pay - in - slip','','','b','','wassce','2014',83,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:45'),(43,'To which of the following parties does the principle of utmost good faith apply in a contract of insurance?','The proposer only','The insurer only','The insurer and proposer','The third party and insured','','','c','','wassce','2014',81,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:46'),(44,'Insurers A and B cover a risk at the ratio of 2:5 for the sum insured of N= 1,800. How much would insurer  A get from the risk?','N= 1,285.00','N= 771.00','N= 514.00','N= 180.00','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:47'),(45,'The consideration paid for insurance contract is','money','commission','premium','fee','','','c','','wassce','2014',71,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:48'),(46,'The alternative to seeking for surrender value in a life assurance contract is','automatic non - forfeiture','revival condition','paid-up policy','standing order','','','c','','wassce','2014',76,'Admin','2017-01-09 12:28:10','2020-08-13 13:02:48'),(47,'Which of the following is a risk covered in endowment assurance?','Permanent disability','Bodily injury','Temporary disability','Death cover','','','d','','wassce','2014',71,'Admin','2017-01-09 12:28:10','2020-08-13 13:03:27'),(48,'A <em>revival clause</em> in a life policy will allow an insured to revive a policy that lapsed on account of nonpayment of premium, provided the insured','can prove he is sick at the time','cannot fall sick after the policy','can prove he is in good health','can recover from the ill health','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:51'),(49,'Which of  the  following  risks  are  covered  under engineering insurance?','Material damage and liability cover','Boiler and special perils cover','Computer and explosion cover','Property damage and business interruption cover','','','d','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:52'),(50,'Which of the following is not a function of an insurance broker?','Assisting clients in paying premium','Maintaining proper records of claims','Assisting clients in connecting to insurers','Assisting clients in effecting uninsured loss','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:53'),(51,'The primary function of insurance is','making profit','managing of risk','spreading of risk','prevention of accident','','','c','','model','1',89,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:54'),(52,'An  insurance  feature  that  requires  the  parties  to disclose  all  material  facts  about  the  agreement is known as','Adhesion','Disclosure','Material fact','Utmost good faith','','','b','','model','1',90,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:55'),(53,'An insurance principle that requires the insured to be honest and disclose all relevant facts is called','subrogation','utmost good faith','proximate cause','insurable interest','','','b','','model','1',93,'Admin','2017-01-09 13:02:56','2020-08-13 13:03:27'),(54,'The facts which might influence any party’s willingness to enter the contract or reject it is called','insurable fact','insurance fact','insured fact','material fact','','','d','','model','1',71,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:57'),(55,'A  statement  of  fact  that  the insured must have an interest in the object of the contract is called','warranty','insurable interest','subrogation','object interest','','','b','','model','1',65,'Admin','2017-01-09 13:02:56','2020-08-13 13:02:48'),(56,'A fundamental condition which must be filled  by the  insured for compensation is','warranty','obligation','interest','premium','','','a','','model','1',73,'Admin','2017-01-09 13:02:57','2020-07-14 15:24:59'),(57,'The object of an insurance policy is equally known as','insurance title','insurance premium','subject matter','risk object','','','c','','model','1',69,'Admin','2017-01-09 13:02:57','2020-08-13 13:03:27'),(58,'In insurance contract the insured is the','offeror','offeree','Actuary','Ofree','','','a','','model','1',86,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:01'),(59,'In insurance contract offeree is the','insured','insurance company','client','Third party','','','b','','model','1',66,'Admin','2017-01-09 13:02:57','2020-08-13 06:19:42'),(60,'An individual who is interested in taking an insurance policy must fill a form of application called:','premium slip','policy document','proposal form','claim form','','','c','','model','1',84,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:03'),(61,'The payment made by the insured to the insurer upon which the validity of insurance is based is called','Exgratia payment','Loss payment','Compensation','Premium','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:04'),(62,'The temporary document issued by the insurer to the insured while the policy is being prepared is','insurance certificate','promissory note','exchange slip','cover note','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:05'),(63,'The evidence of the contractual agreement between the insured and insurer is','policy','proposal form','insurance certificate','cover note','','','a','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:06'),(64,'Which of these is an aid to trade?','cover note','insurance','premium','policy','','','b','','model','1',87,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:07'),(65,'The following are exempted from a contract because they do not have the contractual capacity except','Drunkard','Alien','Mental patient','Adult','','','d','','model','1',70,'Admin','2017-01-09 13:02:57','2020-08-13 13:02:48'),(66,'Insured is likewise known as','insuree','Insurer','policy holder','contractor','','','c','','model','1',91,'Admin','2017-01-09 13:02:57','2020-08-13 12:52:49'),(67,'Insurance contract is between','Broker and Agent','Insured and Insurer','Insurer  and Agent','Insured and Agent','','','b','','model','1',72,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:17'),(68,'The buyer of insurance product is','Agent','Broker','Insured','Insurer','','','c','','model','1',77,'Admin','2017-01-09 13:02:57','2020-08-13 06:19:42'),(69,'The seller of insurance product is','Insurer','Insured','Broker','Agent','','','a','','model','1',71,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:19'),(70,'Which of this is an odd one out?','offer and acceptance','contractual capacity','legality of object','Adhesion','','','d','','model','1',85,'Admin','2017-01-09 13:02:57','2020-08-13 13:02:48'),(71,'The uncertainty as to the occurrence of a loos is','Hazard','Loss','Risk','insurance','','','c','','model','1',76,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:21'),(72,'The risks which affect the society and whose causes are beyond human control is','particular risk','static','fundamental','speculative','','','c','','model','1',74,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:22'),(73,'Risks that are peculiar to an individual actions and decision is known as','fundamental risk','particular risk','pure risk','speculative risk','','','b','','model','1',70,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:23'),(74,'Risk of loss resulting from change in culture and taste is called','static risk','pure risk','dynamic risk','speculative risk','','','c','','model','1',79,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:24'),(75,'The following risks are insurable except','particular','pure','static','dynamic risk','','','d','','model','1',90,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:25'),(76,'The following are insurable except','Marine','Goods','Gambling','Accident','','','c','','model','1',60,'Admin','2017-01-09 13:02:57','2020-08-13 12:52:49'),(77,'The following are non-insurable except','Lose of profit as a result of change in fashion','Speculation','Lose of profit as a result of maladministration','Fire','','','d','','model','1',66,'Admin','2017-01-09 13:02:57','2020-08-13 13:02:48'),(78,'Factors which may influence the occurrence of a loss is','Risk','Loss','Peril','Hazard','','','d','','model','1',65,'Admin','2017-01-09 13:02:57','2020-08-13 13:02:48'),(79,'Hazard that relates to the attitude of the insured is known as','Physical hazard','Good physical hazard','Moral hazard','Good moral hazard','','','c','','model','1',82,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:29'),(80,'Hazard that relates to the subject matter of insurance is called','moral','physical','peril','Good peril','','','b','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:30'),(81,'The following are examples of bad moral hazard except','Fraudulent activities','Carelessness','Honesty','Unreasonableness','','','c','','model','1',70,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:31'),(82,'The cause of a loss is known as','Risk','Peril','Hazard','Moral','','','b','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:32'),(83,'The  principle  of  insurance  which  states  that a person must be in a legally recognized relationship to what is  insured  such  that  he  will  benefit  from its existence or suffer by its loss is','utmost good faith','insurable interest','proximate cause','subrogation','','','b','','model','1',80,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:33'),(84,'A person who has lawful possession of goods belonging to another is known as','Owner','Bailee','Agent','Trustee','','','b','','model','1',76,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:34'),(85,'Transfer of rights and liabilities under a contract with the consent of the other party is known as','Assignment','liability','Interest','Legality','','','a','','model','1',74,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(86,'Another name for utmost good faith is','cadent','cede','ex gratia','uberrimae fidei','','','d','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(87,'The principle of insurance which states that the insure should be truthful and disclose all material fact is','subrogation','utmost good faith','indemnity','insurable interest','','','b','','model','1',77,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:37'),(88,'A miss statement of fact that is made by the insured or his broker to an underwriter during negotiation is called','annuity','misrepresentation','endorsement','disclosure','','','b','','model','1',71,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:38'),(89,'Indemnity is provided through the following media except','cash','commission','reinstatement','repair','','','b','','model','1',68,'Admin','2017-01-09 13:02:58','2020-08-13 13:03:27'),(90,'Any circumstance that promotes the probability of a loss is called','accident','hazard','loss','risk','','','b','','model','1',107,'Admin','2017-01-09 13:02:58','2020-08-13 13:02:48'),(91,'A financial compensation sufficient to return the insured back to the original position after loss is known as','deposit','loan','indemnity','profit','','','c','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:41'),(92,'Another name for business interruption insurance is','property insurance','consequential loss','credit insurance','excess loss','','','b','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:42'),(93,'Subrogation principle can be applied in the following insurance policies except in','aviation policy','engineering policy','life policy','marine policy','','','c','','model','1',79,'Admin','2017-01-09 13:02:58','2020-08-13 13:03:27'),(94,'Payment of claims  in  liability  insurance are usually made in favour of','insurance agent','a third party','employees','employers','','','b','','model','1',86,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:44'),(95,'The person  that  brings  an insurance  contract  into existence between  the principal and third party  is a/an','agent','bailee','contractor','insurer','','','a','','model','1',76,'Admin','2017-01-09 13:02:58','2020-08-13 12:52:49'),(96,'“Hull” in marine policy refers to the','boiler','cost of transporting the goods','goods on board','ship','','','d','','model','1',96,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:46'),(97,'A formal document containing the condition of the insurance contract is called','agreement','contract form','contract slip','policy document','','','d','','model','1',67,'Admin','2017-01-09 13:02:58','2020-08-13 13:02:48'),(98,'Engineering insurance covers the following except','boiler explosion','building and civil','business interruption','machinery breakdown','','','c','','model','1',83,'Admin','2017-01-09 13:02:58','2020-08-02 04:36:46'),(99,'A policy designed to protect individuals against negligence while carrying out their daily activities is called','business interruption','employers liability','engineering','professional indemnity','','','d','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:49'),(100,'Unlawful breaking and entering into any premises or place of safe keeping is covered under which of these policies?','burglary','business interruption','employers liability','public liability','','','a','','model','1',72,'Admin','2017-01-09 13:02:58','2020-08-13 13:03:27'),(101,'When someone is placed back in the same financial position that he was in just prior to a loss, that is ----','Actual cash value','Consideration','Contribution','Indemnity','','','d','','model','2',74,'Admin','2017-01-09 13:21:17','2020-08-13 12:52:49'),(102,'Insurable interest means','Interest gained on money in a bank','Interest payable on a loan','Financial interest a person has in something he expects to inherit','The financial interest a person has in something of value','','','d','','model','2',94,'Admin','2017-01-09 13:21:18','2020-08-13 13:02:48'),(103,'Below are insurable policies except','Earthquake','Fire','Life','Marine','','','a','','model','2',83,'Admin','2017-01-09 13:21:18','2020-08-13 12:52:49'),(104,'The term pooling of risks in insurance means that','Many who face risks pay premium so that those who suffer loss may be reimbursed','Insurance companies share heavy losses','Insurance company re-assures with another','Insurance companies operates pool betting business','','','a','','model','2',81,'Admin','2017-01-09 13:21:18','2020-08-13 13:02:48'),(105,'Which of the following is not a principle of insurance?','Indemnity','Compensation','Proximate cause','Insurable interest','','','b','','model','2',78,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:55'),(106,'The amount of money paid periodically by an insured to the insurance company to cover risk is called','Commission','Premium','Cover note','Dividend','','','b','','model','2',80,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:56'),(107,'Insurance was developed as a result of the existence of','Hazards','Loss','Risk','Indemnity','','','c','','model','2',79,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:57'),(108,'Which of the following is not a function of insurance?','Serves as collateral','Encouraging saving','Provides insecurity','Reduces risks','','','c','','model','2',89,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:58'),(109,'In the utmost good faith principle, the value of the subject matter should','Be over stated','Understated','Not be stated','Not be overstated nor understated','','','d','','model','2',66,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:59'),(110,'Which of the following is non- insurable risk?','Gambling','Accident','Fire','Theft','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:00'),(111,'Which of the following is a temporary document given to the insured in an insurance contract?','Cover note','Subrogation','Policy document','Reinsurance','','','a','','model','2',88,'Admin','2017-01-09 13:21:19','2020-08-13 13:03:27'),(112,'Hazard that deals with the human habits and character that arises from human attitude and the conduct of people is called','physical','Moral','Static','Dynamic','','','b','','model','2',62,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:02'),(113,'A peril is best defined as','Chance of a loss','The occurrence of a loan','The cause of a loss','The result of a loss','','','c','','model','2',80,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:03'),(114,'One of the essential features of insurance contract is','Premium','Subrogation','Interest','Disclosure','','','d','','model','2',78,'Admin','2017-01-09 13:21:19','2020-08-13 12:52:49'),(115,'Insurance  feature  that  emphasized   the  fact  that insurance contract is a contract between the insurer and  the  insured  and  which states  that  the insured must  adhere to  the  agreement  is  called','Disclosure','Warranty','Adhesion','Material facts','','','c','','model','2',79,'Admin','2017-01-09 13:21:19','2020-08-13 12:52:49'),(116,'The principle that requires the insured to disclose to the insurer all matters relating to the object of insurance is called','Uberrimae fidei','Proximate cause','Abandonment','Subrogation','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:06'),(117,'There must  be  a  close  connection  between  the loss actually suffered and the risk is relating to the principle  of','Abandonment','Proximate cause','Utmost good faith','Adhesion','','','b','','model','2',77,'Admin','2017-01-09 13:21:19','2020-08-13 13:02:48'),(118,'The principle of subrogation imposed an obligation on the insured to','Disclose all material information','Have financial risks in the object','Press for compensation','Surrender legal right after compensation','','','d','','model','2',69,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:08'),(119,'Which of the following is not a principle of insurance','Indemnity','Insurable risk','Subrogation','Insurable interest','','','b','','model','2',74,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:09'),(120,'An application form which is filled by anyone taking out an insurance policy is called','A policy form','A claim form','A proposal form','Proximate cause form','','','c','','model','2',70,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:10'),(121,'Insurance is necessary because of the need to','Pool resources together','Meet uncertainties in future','Make profit','Lend money to individual','','','b','','model','2',86,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:11'),(122,'The policy that covers debt that cannot be recovered is called','Life assurance','Motor vehicle policy','Comprehensive policy','Bad debt insurance policy','','','d','','model','2',66,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:12'),(123,'Risk whose cause is beyond human control is','Fundamental','Speculative','Particular','Static','','','a','','model','2',87,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:13'),(124,'Cover note usually run for about','One month','Two days','5 years','3 days','','','a','','model','2',88,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(125,'A card used by motorist in the West African sub-region is called','Brown card','Certificate','Insurance card','visa card','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(126,'Uncertainty of loss is known as','Risk','Certainty','Insurance','Hazard','','','a','','model','2',116,'Admin','2017-01-09 13:21:19','2020-08-13 13:02:48'),(127,'Re-insurance contract is between','Re-insurer and insurer','Re- insurance and insurance','Co-insurer and insurer','Insurance broker and re-insurer','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:16'),(128,'The continuation of insurance contract after expiration is','Renewal','Revival','Resuscitation','Rejuvenation','','','a','','model','2',68,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:17'),(129,'The  payment  made  by  underwriter  as  a  form  of  \tkindness  without  admission  of  liability  so  as  to maintain goodwill is known as ------------','Kindness payment','Ex-gratia payment','Favour payment','Claim','','','b','','model','2',72,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:18'),(130,'One of the following is the duty of the insured in insurance claim process','Late report of the loss','Little idea of the loss size','Quick report of the loss','Hiding fact','','','c','','model','2',67,'Admin','2017-01-09 13:21:19','2020-08-13 13:02:48'),(131,'The prices set by the insurer for the insurance cover is known as','Due','Levy','Premium','Charge','','','c','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:20'),(132,'The transfer of risk already undertaken from one insurance company to another is','Over insurance','Re insurance','Under insurance','Group insurance','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:21'),(133,'When an insured person admits that he has indemnified, he means that','The damage proper by has been recovered','He was paid premium fully','The insurance company has restored him to his former position','He was paid his premium fully','','','c','','model','2',71,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:22'),(134,'A house worth N=60,000 insured against fire for N=40,000.  Fire destroyed and cause damage worth N=30,000. On the house under which insurance principle will the owner be entitled to compensation of N=30,000.','Contribution','Subrogation','indemnity','Uberrimae fidei','','','c','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:23'),(135,'The person who calculate the amount given to the insured if he does not want to continue with the contract of insurance is called','Actuary','Insurance agent','Insurance broker','Assessor loss adjuster','','','d','','model','2',87,'Admin','2017-01-09 13:21:20','2020-08-13 06:19:42'),(136,'The amount given to the insured if he does not want the contract to continue is called','Insurance broker','Premium','Surrender value','Assessor loss adjuster','','','c','','model','2',79,'Admin','2017-01-09 13:21:20','2020-08-13 12:52:49'),(137,'The sum paid for transporting the goods or for the hire of a ship is called','Marine cargo','Freight insurance','Hull insurance','Risk insurance','','','b','','model','2',86,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:26'),(138,'The duty of the loss adjuster in insurance claims is to','Make loss','Prevent loss','Safeguard loss','Recommend appropriate payment','','','d','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:27'),(139,'Consequential loss is also known as','Business interruption insurance','Credit insurance','Excess loss','Property insurance','','','a','','model','2',74,'Admin','2017-01-09 13:21:20','2020-08-13 12:52:49'),(140,'Subrogation principle can be applied in the following insurance policies except in','motor','Life','Marine','Aviation','','','b','','model','2',103,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:44'),(141,'The acronym “CllN” refers to','Certified insurance institute','Certified insured institute','Certified international institute','Chartered insurance institute','','','d','','model','2',83,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:45'),(142,'Amount paid to the beneficiary upon the death of the insured is','Premium','Compensation','Declaration','Death benefit','','','d','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:46'),(143,'The clauses in the policy which make alterations or additions to the information stated in the policy is known as','correction','Modification','Change','Endorsement','','','d','','model','2',66,'Admin','2017-01-09 13:21:20','2020-08-13 13:02:48'),(144,'The date on which an insurance or reinsurance contract comes into force is known as','Starting point date','Inception date','Beginning date','Commencement date','','','b','','model','2',81,'Admin','2017-01-09 13:21:20','2020-08-13 12:52:49'),(145,'Factor that causes an exposure to injury, loss or damage is','Risk','Hazard','Peril','Accident','','','b','','model','2',66,'Admin','2017-01-09 13:21:20','2020-08-13 13:02:48'),(146,'Workman compensation is also referred to as','Fidelity insurance','Employment liability','Public liability','Product liability','','','a','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:09'),(147,'An insurance cover for lawyers, accountants and brokers is','Employment','Professional','Public','Product','','','b','','model','2',65,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:10'),(148,'The deliberate or intentional throwing over board of part of a cargo to lighten the ship in the interest of the reminder of the cargo is','Barratry','Jettison','Breach','Caveat emptor','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:11'),(149,'The wrongful act willfully committed by either the master or the prejudice of either the owner or crew to the chatterer of the ship is','Barratry','Caveat emptor','Bailee','Jettison','','','a','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:12'),(150,'The legal right to insure a subject matter is','Indemnity','Subject Matter','Subrogation','Insurable interest','','','d','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:13'),(151,'--------- shows what the insured should do or not do to maintain the existence of the policy','Cover note','Policy','Warranty','Certificate','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:14'),(152,'The uncertainty of an event occurring is known as','Hazard','Risk','Loss','Accident','','','b','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:15'),(153,'The provider of protection to an insurance  company against the excess risk it has given insurance covers is called','Assurer','Insuring','Reinsurer','Insurer','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-08-13 13:03:27'),(154,'---------- is the evidence cover of the risk given to the insured by the insurer','Cover','Policy','Claim','Compensation','','','b','','model','3',78,'Admin','2017-01-09 13:38:38','2020-08-13 12:52:49'),(155,'------------ is the protection which the insured buys for his risk','Indemnity','Compensation','Cover','Subrogation','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:20'),(156,'A temporary certificate to show that a cover is in existence is called','Policy','Certificate','Cover note','Claim slip','','','c','','model','3',73,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:21'),(157,'------------ is used to bring amendment in a policy that is either to add in a new thing or removal of an existing thing in the policy','Excess','Endorsement','Claim form','Policy','','','b','','model','3',66,'Admin','2017-01-09 13:38:38','2020-08-13 13:03:27'),(158,'The cause of a loss is known as','Peril','Hazard','Loss','Risk','','','a','','model','3',85,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:24'),(159,'The price of insurance is known as','Rate','Interest','Premium','Profit','','','c','','model','3',80,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:25'),(160,'The monetary consideration paid by the insured to the insurers for the insurance granted by the policy is called','Premium','Money','Price','Benefit','','','a','','model','3',76,'Admin','2017-01-09 13:38:38','2020-08-13 13:02:48'),(161,'------------- is a policy designed to place the insured in the same financial position as he was immediately before the happening of the event insured against','Indemnity','Subrogation','Surrender value','Actuary','','','a','','model','3',83,'Admin','2017-01-09 13:38:38','2020-08-13 13:02:48'),(162,'The essential value of valid contract that states that the parties to a contract must be in perfect agreement and have a common mind is','Consideration','Perpetual existence','Excess','Consensus ad-idem','','','d','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:28'),(163,'A  Statement signed by the insured, certifying the Statement','Certificate','Declaration','Confirmation slip','Accuracy statement','','','b','','model','3',65,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:29'),(164,'Change for the transportation of goods by water is called','Bill','Ticket','Freight','Consideration','','','c','','model','3',88,'Admin','2017-01-09 13:38:38','2020-08-13 13:03:27'),(165,'Life assurance provides dual benefits of savings and ------------ to a policy holder','Acceptance','Consideration','Contribution','Security','','','d','','model','3',88,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:31'),(166,'Another name for consequential loss is','Stop loss','Credit insurance','Business interruption insurance','Excess loss','','','c','','model','3',74,'Admin','2017-01-09 13:38:38','2020-08-13 12:52:49'),(167,'Subrogation principle can be applied in the following insurance policies except in -------- policy','Life','Motor','Theft','Burglary','','','a','','model','3',61,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:33'),(168,'A place where the business of insurance is transacted is called a/an','Insurance market','Brokerage firm','Insurance house','Insurance conference room','','','a','','model','3',66,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:34'),(169,'A customer that suffers loss or sustain injury while using a business outfit that belongs to another perosn, can sue the property owner under -------------- insurance','Professional indemnity','Public liability','Employers’ liability','Personal accident','','','b','','model','3',77,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:35'),(170,'The type of questionnaire drawn up by   insurers, requesting certain information to assess risk is --------- form','Acceptance','Compensation','Credit','Proposal','','','d','','model','3',69,'Admin','2017-01-09 13:38:39','2020-08-13 13:03:27'),(171,'The shifting of responsibility of one’s own losses to another is known as ---------- transfer','Fund','Risk','Business','Policy','','','b','','model','3',72,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:39'),(172,'A financial compensation sufficient to return the insured back to his original position after loss is known as','Deposit','Loan','Indemnity','Overdraft','','','c','','model','3',74,'Admin','2017-01-09 13:38:39','2020-08-13 12:52:49'),(173,'The following are types of life assurances,  except','annuity','Endowment','Hire purchase','Whole life','','','c','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:41'),(174,'A marine policy that provider cover for the construction of sea vessels is called --------- policy','Building','Mixed','Port','Valued','','','a','','model','3',111,'Admin','2017-01-09 13:38:39','2020-08-09 20:48:31'),(175,'Spreading of risk to ensure that no insurer is liquidated by the occurrence of a large loss is the concept of','Insurance','Re insurance','Renewal','Treaty','','','b','','model','3',88,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:43'),(176,'The person  that  brings  an  insurance  contract into existence  between  the principal  and  third  party is a/an','Agent','Bailee','Contractor','Insurer','','','a','','model','3',85,'Admin','2017-01-09 13:38:39','2020-08-13 13:02:48'),(177,'Any circumstance that promotes the probability of a loss is called','Accident','Hazard','Loss','Risk','','','b','','model','3',64,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:45'),(178,'Indemnity is provided through the following media except','Cash','Commission','Reinstatement','Repair','','','b','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:47'),(179,'The policy that covers loss of cash while in transit or at home is --------------- insurance','Burglary','Business interruption','Credit','Money','','','d','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:48'),(180,'A person who makes an insurance claim is called','Actuary','Adjustor','Claimant','Client','','','c','','model','3',91,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:49'),(181,'To break or act contrary to a law or promise means','Breach','Shake','Confirm','Disagreement','','','a','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:50'),(182,'A professional officer of an insurance company whose duty among others is to calculate the premium to be \tpaid by the insured is called','Agent','Principal','Actuarist','Adjuster','','','c','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:51'),(183,'Which of these is insurable?','Fire','Inflation','Bad publicity','Riot and war','','','a','','model','3',85,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:52'),(184,'The principle that requires all material facts to be disclosed is known as','Indemnity','Fidelity','Proximate cause','Utmost good faith','','','d','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:53'),(185,'In insurance contract, failure to disclose all relevant material facts will render the contract','legal','Voidable','Void','Implied','','','c','','model','3',82,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:54'),(186,'Any information that will influence a prudent insurer is called','contract','misrepresentation','disclosure','Material facts','','','d','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:55'),(187,'The insurance principle which implies that a proof is required that the direct and immediate cause of the loss suffered was by the occurrence of the risk insured against is called','Indemnity','Proximate cause','Insurable interest','Utmost good faith','','','b','','model','3',75,'Admin','2017-01-09 13:38:39','2020-08-13 13:02:48'),(188,'Method of providing indemnity whereby subject matter is being restored to its former position is','Repairs','Cash','Reinstatement','Replacement','','','c','','model','3',77,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:57'),(189,'A relief to insurer of each and every loss which does not exceed a specified amount is','Excess','Franchise','Deductible','Annuity','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:58'),(190,'When an   insurer agrees   to   replace   irreparably damaged or stolen goods with similar type it is called','Reinstatement','Cash','Repairs','Replacement','','','d','','model','3',75,'Admin','2017-01-09 13:38:39','2020-08-13 13:03:27'),(191,'Cover note usually run for about','21 days','one month','12 months','3 month','','','b','','model','3',85,'Admin','2017-01-09 13:38:39','2020-08-13 12:52:49'),(192,'The process of changing anything wrong with the policy to make it current is','Endorsement','Specification','Rectification','Correction','','','c','','model','3',60,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:01'),(193,'A syndicate or an insurance company that transfer risk under re-insurance is','Cede','Cession','Commutation','Cedant','','','d','','model','3',68,'Admin','2017-01-09 13:38:39','2020-08-13 13:03:27'),(194,'A particular risk which is transferred to another re-insurance under a re-insurance treaty is','Cedant','Cession','Facultative','Cede','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:03'),(195,'Application by the insured to the insurer for the payment of money due under his contract of insurance is','Proof','Evidence','Claim','Compensation','','','c','','model','3',82,'Admin','2017-01-09 13:38:39','2020-08-13 13:03:27'),(196,'The following are the methods of claim settlement except','Cash','Repair','Reinstatement','Repayment','','','d','','model','3',81,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:05'),(197,'Person who makes claim is called','Claimant','Client','Insured','Insurer','','','a','','model','3',65,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:06'),(198,'A payment made by insurer as a form of sympathy to maintain goodwill is','Compensation payment','Contract payment','Charity payment','Ex - gratia payment','','','d','','model','3',79,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:07'),(199,'The policy that provides protection for goods or cargoes and ships against the perils of the sea is','Fire','Marine','Aviation','Credit','','','b','','model','3',82,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:08'),(200,'Another name for an insured in a life insurance contract is','Insurer','Assured','Assurer','Agent','','','b','','model','3',74,'Admin','2017-01-09 13:38:40','2020-08-13 13:02:48'),(201,'Insurance is defined as','risking of loss','pooling of risk','gathering of risk','waiving of risk','','','b','','model','4',77,'Admin','2017-01-09 13:49:45','2020-08-13 13:03:27'),(202,'In a contract of insurance, a firm statement is usually made by a person known as the','offeror','offeree','insur','client','','','a','','model','4',67,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:11'),(203,'The premium paid by the insured to the insurance company is','capital','commission','common fund','consideration','','','d','','model','4',87,'Admin','2017-01-09 13:49:46','2020-08-13 13:03:27'),(204,'The insured is also known as','the client','the consumer','the policy holder','agent','','','c','','model','4',81,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:13'),(205,'The coming together of minds of  the two parties to the insurance contract is called','surrender value','acceptance','consensus ad-idem','adhesion','','','c','','model','4',69,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:14'),(206,'Uberrimae fidei is equally known as','contract','agreement','consensus','utmost good faith','','','d','','model','4',83,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:15'),(207,'The legal right that a person must have to enable him or her to insure his or her property is known as','freedom','franchise','insurable interest','Access right','','','c','','model','4',64,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:17'),(208,'An undertaking by the insured that certain things shall be done or not be done or certain things shall be put in place or not in place is called','warranties and representation','utmost good faith and uberrimae fidei','insurable and non-insurable','subrogation and indemnity','','','a','','model','4',67,'Admin','2017-01-09 13:49:46','2020-08-13 13:02:48'),(209,'In insurance, uncertainty of loss means','hazard','risk','accident','earthquake','','','b','','model','4',70,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:19'),(210,'Occurrence of an unplanned event is called','hazard','loss','risk','speculation','','','c','','model','4',76,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:20'),(211,'An insurance contract where both parties signed the agreement which involve mutuality of agreement is known as','unilateral contract','multilateral contract','bilateral contract','united contract','','','c','','model','4',66,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:21'),(212,'An insurance contract which does not involve mutuality of agreement in which only one of the parties involved in the contract makes promises that are legally binding is called','double contract','single contract','multilateral contract','unilateral contract','','','d','','model','4',76,'Admin','2017-01-09 13:49:46','2020-08-13 13:03:27'),(213,'Insurance is a contract that is based on','possibility','probability','positivity','negativity','','','b','','model','4',98,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:23'),(214,'Assurance is a contract that is based on','negativity','possibility','positivity','probability','','','d','','model','4',60,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:24'),(215,'With insurance contract there is','certainty of occurrence','uncertainty of occurrence','certainty of reward','uncertainty  of reward','','','b','','model','4',80,'Admin','2017-01-09 13:49:47','2020-08-13 06:19:42'),(216,'With assurance contract there is','uncertainly of reward','certainty of reward','certainty of occurrence','uncertainty of occurrence','','','c','','model','4',81,'Admin','2017-01-09 13:49:47','2020-08-13 12:52:49'),(217,'Indemnity is not applicable in','assurance contract','insurance contract','insurance terms','insurance content','','','a','','model','4',87,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:27'),(218,'Non- indemnity insurance means that the assured can','be restored back to his former position','not be restored back to his former position','be brought back to contract','not be brought back to contract','','','b','','model','4',83,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:28'),(219,'A seller of insurance product is','insurer','promisor','client','insured','','','a','','model','4',75,'Admin','2017-01-09 13:49:47','2020-08-13 13:02:48'),(220,'A buyer of insurance product is','insured','promise','insurer','insuree','','','a','','model','4',76,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:30'),(221,'A contract which has no legal effect is called','voidable contract','legal contract','void contract','valid contract','','','c','','model','4',77,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:31'),(222,'A contract that is contrary to public policy is','valid contract','legal contract','illegal contract','voidable contract','','','c','','model','4',88,'Admin','2017-01-09 13:49:47','2020-08-13 12:52:49'),(223,'Which of the following cannot enter into an insurance contract?','adult','insured','minor','insurer','','','c','','model','4',91,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:34'),(224,'Risk that affect the society and whose causes are beyond human control is','particular risk','pure risk','fundamental risk','static risk','','','c','','model','4',84,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:35'),(225,'The process of evaluating and minimizing risk is','risk management','risk certainty','risk insurance','risk re-grouping','','','a','','model','4',77,'Admin','2017-01-09 13:49:47','2020-08-13 13:03:27'),(226,'Another name for utmost good faith','expirit - de - corps','uberrimae fidei','caveat emptor','proximate cause','','','b','','model','4',80,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:37'),(227,'Inter company agreement in which insurers agreed to waive their right against each other for loss is','knock for knock agreement','employers’ liability','tit for tat agreement','salvage agreement','','','a','','model','4',73,'Admin','2017-01-09 13:49:47','2020-08-13 13:03:27'),(228,'Contribution will only arise when','two or more parties disagree','two or more parties are promisor','two or more policies of indemnity exist','one policy of indemnity exist','','','c','','model','4',82,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:39'),(229,'One of the following is a condition for contribution','bilateral interest','multilatual interest','two subject matter','common subject matter','','','d','','model','4',80,'Admin','2017-01-09 13:49:47','2020-08-13 06:19:42'),(230,'one of these is a content of a proposal form','children of the proposer','education of the proposer','occupation of the proposer','educational','','','c','','model','4',74,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:41'),(231,'The statement “ I to the best of my knowledge hereby confirm that the statements contained in this prosal form are true and correct” represents','confirmation','declaration','witnessing','humility','','','b','','model','4',76,'Admin','2017-01-09 13:49:47','2020-08-13 13:03:27'),(232,'When the proposer fails to fill the proposal form truthfully, the contract will become','voidable','illegal','void','enforceable','','','c','','model','4',100,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:45'),(233,'Proposal form is used in the following classes of insurance except','Accident','theft','life','large risk of fire','','','d','','model','4',74,'Admin','2017-01-09 13:49:47','2020-08-13 13:02:48'),(234,'The following classes of insurance apply the use of proposal form except','public liability','large risk of marine insurance','small risk of marine insurance','theft','','','b','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:47'),(235,'Proposal form is not applicable to the following except','aviation','engineering','large risk of fire','fidelity guarantee','','','d','','model','4',75,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:48'),(236,'Which of the method below can be used to provide indemnity in the event of loss','moral advice','resolution of policy','cash payment','professional encouragement','','','c','','model','4',85,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:49'),(237,'A card used by motorist in the West African sub-region is called','insurance certificate','insurance register','insurance green card','Ecowas brown card','','','d','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:49'),(238,'Situation that are not included in the policy are usually referred to as','condition','exception','preamble','operative clause','','','b','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:51'),(239,'The part of a policy form that shows the name and address of the company is known as','heading','conclusion','condition','preamble','','','a','','model','4',85,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:52'),(240,'One of these shows the introduction to the details of the insurance policy, parties as well as the premium for the contract','preamble','heading','exception','condition','','','a','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:53'),(241,'Policy condition which are automatically applicable and not stated in the contract of agreement is known as','agreed condition','agreed negotiation','implied condition','expressed condition','','','c','','model','4',85,'Admin','2017-01-09 13:49:48','2020-08-13 13:03:27'),(242,'A written amendment in addition or alterations to the information stated in the policy is called','endorsement','specification','construction','attestation','','','a','','model','4',67,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:55'),(243,'The process of changing what is wrong in the policy is called','specification','attestation clause','rectification','justification','','','c','','model','4',70,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:56'),(244,'The process of transferring risk from one insurer to another is called','contribution','re-insurance','re-processing','re-activating','','','b','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:57'),(245,'A reminder to the insured that this existing contract is due to expire is','proposal form','slip','claim form','renewal notice','','','d','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:58'),(246,'One of these is a form of motor vehicle insurance policy','comprehensive','1st party only','2nd party only','accident','','','a','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:59'),(247,'Third party provides cover only for damages to','assurer','insurer','2nd party','another person','','','d','','model','4',84,'Admin','2017-01-09 13:49:48','2020-08-13 12:52:49'),(248,'The type of cover for violent and forcible entry into a premises is called','burglary and theft','third party fire and theft','third party and theft','stealing','','','a','','model','4',65,'Admin','2017-01-09 13:49:48','2020-08-13 13:03:27'),(249,'The deliberate throwing overboard of part of a cargo to lighten the ship is called','barratry','overthrown','voyaging','jettisoning','','','d','','model','4',86,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:02'),(250,'The deliberate throwing overboard of part of a cargo without a good intention is called','jettison','barratry','voyaging','overboard','','','b','','model','4',64,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:03'),(251,'Insurance premium depends on the','amount of profit to be made by the insurer','various insurance companies in a place','extent of the possible loss and the frequency of risk','supply and demand','','','c','','model','5',87,'Admin','2017-01-09 13:58:40','2020-07-14 15:29:04'),(252,'Subrogation in insurance means that','the insured could not make a profit from the insurer','the insured must be fully indemnified','the insurer must take the place of the insured','the insured should pool their risks','','','c','','model','5',76,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:05'),(253,'Payment by the insurer to the insured out of sympathy is known as','utmost good faith','proximate cause','peril','ex-gratia payment','','','d','','model','5',75,'Admin','2017-01-09 13:58:44','2020-08-13 13:02:48'),(254,'If the insured does not want the contract to continue he receives','surrender value','consideration','premium','commission','','','a','','model','5',80,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:07'),(255,'Re-insurance means','accumulation of risk','multiplication of risk','transfer of risk','adding of risk','','','c','','model','5',86,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:08'),(256,'Another name for the assured is','insurance company’s client','insurance broker','insurance company','insurance agent','','','c','','model','5',79,'Admin','2017-01-09 13:58:44','2020-08-13 13:03:27'),(257,'One of the following is legally used by the insured while the policy is being processed','indemnity form','claim form','cover note','proposal form','','','c','','model','5',76,'Admin','2017-01-09 13:58:48','2020-08-13 13:03:27'),(258,'One of the following is necessary to meet uncertainties in future','profit','capital','borrowing','insurance','','','d','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:11'),(259,'When an insured person admits that he has been indemnified, he means that','the insurance company has accepted his claims','the damaged property has been recovered','He has paid his premium','the insurance company has restored him to his former position','','','d','','model','5',78,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:12'),(260,'If the insured has been fully indemnified, the insurers are entitled to take any advantage due to the insured. Principle of insurance involved is','insurable interest','contribution','indemnity','subrogation','','','d','','model','5',77,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:13'),(261,'The settlement of disagreement between the insured and the insurer is called','litigation','arbitration','negotiation','compromising','','','c','','model','5',71,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:14'),(262,'One of this is a method of claim settlement','price','trade by barter','exchange','cash','','','d','','model','5',76,'Admin','2017-01-09 13:58:48','2020-08-13 13:02:48'),(263,'Replacement of damaged property by the insurance company is','arbitration','negotiation','Re-instatement','rectification','','','c','','model','5',85,'Admin','2017-01-09 13:58:48','2020-08-13 13:03:27'),(264,'A reminder to the insured who may have forgotten to seek for continuation after his policy expiry date is','notification message','renewal notice','registration notice','agreement notice','','','b','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:19'),(265,'Which of the following risks is covered by insurance policy?','an investment loss on the stock market','dishonesty of an employee leading to fraud','failure of a business venture','rise and fall of prices of goods in the market','','','b','','model','5',79,'Admin','2017-01-09 13:58:48','2020-08-13 12:52:49'),(266,'One of this is the evidence of insurance contract','schedule','policy','proposal form','endorsement','','','c','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:21'),(267,'One of this is the consideration paid for insurance contract','fee','cheque','commission','premium','','','d','','model','5',74,'Admin','2017-01-09 13:58:48','2020-08-13 12:52:49'),(268,'The payment made when the insured is not entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:23'),(269,'To which of the following does the principle of utmost good faith apply in a contract of insurance?','the insurer only','the proposer only','the third party and insured','insurer and proposer','','','d','','model','5',73,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:24'),(270,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of policy','resolution of dispute','','','a','','model','5',95,'Admin','2017-01-09 13:58:49','2020-08-10 07:46:58'),(271,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','model','5',91,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:26'),(272,'A factor which may influence the occurrence of a loss is','peril','loss','hazard','risk','','','c','','model','5',77,'Admin','2017-01-09 13:58:52','2020-08-13 12:52:49'),(273,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','model','5',78,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:28'),(274,'A reinsurance contract in which the reassured agrees to offer and the reinsurer agrees to accept all risks of certain size within a defined class is','underwriting','treaty','tort','syndicate','','','b','','model','5',72,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:29'),(275,'A contract which has no legal effect is called','void policy','voidable policy','legal policy','formal policy','','','a','','model','5',81,'Admin','2017-01-09 13:58:53','2020-08-04 11:06:30'),(276,'The contract aimed at providing specific payment at regular intervals for a fixed   period or for life is','accident','annuity','average','term','','','b','','model','5',96,'Admin','2017-01-09 13:58:53','2020-08-13 12:52:49'),(277,'policy designed for the insured who is incapacitated to carry out normal duty is','medical expenses','temporary disablement','permanent disablement','medical expenses','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-08-13 13:03:27'),(278,'Physical loss of limbs or total blindness injury is an example of','permanent disablement','temporary disablement','mid-term disablement','total disablement','','','a','','model','5',75,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(279,'A policy that covers the peril of the sea is','aviation','marine','life','fire','','','b','','model','5',83,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(280,'An  attempt  to  deprive  someone of his  property is','theft','burglary','robbery','larceny','','','c','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:35'),(281,'The process of examining, accepting or rejecting risks and classifying the ones accepted is','underwriting','policy','procedures','warranty','','','a','','model','5',80,'Admin','2017-01-09 13:58:53','2020-08-13 12:52:49'),(282,'The periodic payment made by the insured to the insurer as financial cost of obtaining insurance','annuity','premium','claim','dividend','','','b','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:36'),(283,'The amount added to the standard premium in respect of the larger than standard risk presented by the proposer is called','premium increase','premium loading','premium payment','premium commission','','','b','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:37'),(284,'Return premium is the same thing as','premium payment','premium refund','premium tax','premium bonus','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:38'),(285,'The principle of maritime law which makes owners of ship and cargo share in a lost incurred voluntarily is','general average','special average','specific average','particular average','','','a','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:39'),(286,'The amount given to the insured if he does not want the contract to continue is called','premium','price','consideration','surrender value','','','d','','model','5',74,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:40'),(287,'Partial loss can be divided into','particular average and general average','particular average and total loss','actual loss and total loss','total loss and particular loss','','','a','','model','5',88,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:41'),(288,'Marine  losses are divided into','actual total and total loss','total loss and partial loss','partial loss and actual loss','average loss and partial loss','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:42'),(289,'The division of total loss are','average loss and partial loss','partial loss and full loss','total loss and actual loss','actual total loss and constructive total loss','','','d','','model','5',71,'Admin','2017-01-09 13:58:53','2020-08-13 12:52:49'),(290,'Marine insurance policy which covers all the ship or vessels belonging to one owner is','flect policy','mixed policy','value policy','fixed policy','','','a','','model','5',87,'Admin','2017-01-09 13:58:57','2020-08-13 13:03:27'),(291,'The full meaning of NAICOM is','Nigerian insurance company','national insurance commission','national insurer commission','national insured commission','','','b','','model','5',83,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:45'),(292,'Speailative risks are','insurable risk','non insurable risk','financial risk','non financial risk','','','b','','model','5',85,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:46'),(293,'The form of risk that can easily be calculated and estimated is known as','non insurable risk','non-financial risk','speculative risk','insurable risk','','','d','','model','5',83,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:47'),(294,'A risk that has its origin in the activities of an individual and the effects borne by this individual is called','pure risk','particular risk','speculative risk','fundamental risk','','','b','','model','5',68,'Admin','2017-01-09 13:58:58','2020-08-13 13:03:27'),(295,'Business interruption insurance can also be called','consequential loss','constructive loss','partial  loss','general loss','','','a','','model','5',89,'Admin','2017-01-09 13:58:58','2020-08-13 12:52:49'),(296,'The maximum number of days allowed for a policy holder to pay his renewal premium after it has become due is called','surrender value','conditions','days of grace','days of liberty','','','c','','model','5',74,'Admin','2017-01-09 13:58:58','2020-08-13 12:52:49'),(297,'The  factor  that has  the  tendency  to  increase  the occurrence of a risk is called','risk','loss','hazard','peril','','','d','','model','5',81,'Admin','2017-01-09 13:58:58','2020-08-13 13:02:48'),(298,'The cause of a loss is','peril','hazard','risk','loss','','','a','','model','5',86,'Admin','2017-01-09 13:58:58','2020-08-13 13:02:48'),(299,'The party who proposes to the insurance company to insure his properly is called','offeree','offeror','acceptance party','offer client','','','b','','model','5',75,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:55'),(300,'One of these is a full time professional','broker','agent','factor','insurer','','','a','','model','5',70,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:56'),(301,'Insurance against risk is possible because of the law of','large numbers','few numbers','inverse proportion','diminishing returns','','','a','','wassce','2015',79,'Admin','2017-01-09 14:33:34','2020-08-13 13:03:27'),(302,'Which  of  the  following  is  not  a  component  of  an insurance policy?','Signature clause','Particular clause','Recital clause','Operative clause','','','b','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:01'),(303,'Which of the following is a component of premium in insurance?','Margin','Reserve','Funds','Capital','','','c','','wassce','2015',73,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:03'),(304,'In which of the following classes of insurance is no <em>claim discount</em> applicable?','Money insurance','Marine insurance','Motor insurance','Aviation insurance','','','a','','wassce','2015',79,'Admin','2017-01-09 14:33:34','2020-08-13 13:03:27'),(305,'The payment by an insurer to the insured in the event of loss is','claim','premium','fee','interest','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:07'),(306,'Which of the following is the function of a loss adjuster?','Ensures payment of adequate compensation','Advises the insurer on claim','Operates with unlimited authority','Notifies insurer of the loss','','','a','','wassce','2015',68,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:08'),(307,'A fire insurance policy guaranteed by the insured to be in place for a stated period with a particular insurer is granted a _____________','no claim discount','fleet discount','long - term agreement discount','plurality discount','','','a','','wassce','2015',75,'Admin','2017-01-09 14:33:34','2020-08-13 13:03:27'),(308,'A type of re - insurance  where  the re - insurer has  the option  to  accept  or  reject  any  risk  presented  for re-insurance is','stop loss','facultative','treaty','excess of loss','','','b','','wassce','2015',91,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:10'),(309,'A new Nissan car valued at N= 350,000 was used to replace a Peugeot car with a sum insured N= 250.000 in private policy. The Peugeot car enjoys a 25% no claim discount. If the rate of premium is 11% and the no claim discount is transferred to the  new vehicle, what  would be the premium for the new Nissan car?','N= 20,625','N= 27,500','N= 28,875','N= 38,500','','','b','','wassce','2015',85,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:12'),(310,'One of the features of term assurance is','investment','profit','protection','surrender','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:13'),(311,'Which  of  the  following  statements  is  true  about property insurance?','The probability that the event may occur','The probability that the event will not occur','The probability that the event may or may not occur','The probability that the event must occur','','','c','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:14'),(312,'In a life assurance contract, when does  the  principle of insurable interest arise?','At the beginning of the contract','At the time of claim','At the middle of the contract','At the time of payment of premium','','','a','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(313,'Which class of life assurance would a young couple who desires to start a new business in five years time purchase?','Whole life policy','Limited whole life policy','Keyman policy','Endowment policy','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(314,'In which of the following policies is <em>certificate of insurance</em>  used?','Burglary insurance','Product liability insurance','Employer’s liability insurance','Money insurance','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:16'),(315,'Which  of  the  following  would  not  give  cause  for subrogation right?','Benefit','Contract','Statute','Salvage','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:17'),(316,'Educational endowment policy is designed to protect the interest of','father','mother','child','uncle','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:18'),(317,'A clause in an insurance policy that makes a claim jointly payable to the policyholder and the third party is','claim clause','mortgagee clause','mortgage clause','joint liability clause','','','d','','wassce','2015',79,'Admin','2017-01-09 14:33:35','2020-08-13 12:52:49'),(318,'The policy that covers  an  insured  employee  against injury  sustained  in  the  course  of  employment  is','professional indemnity','product liability','public liability','employer’s liability','','','d','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:22'),(319,'What is  the  maximum  liability which the insurer can pay on a particular loss?','Average','Sum insured','Franchise','Excess','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:23'),(320,'A policy taken to cover several shipments for a sum assured is','floating policy','valued policy','declaration policy','special policy','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-08-13 13:03:27'),(321,'A policy taken for full protection against fire and other risks such as flood, tempest, riot and civil commotion is','consequential loss','fire and all risks policy','combined householder’s policy','fire and special perils','','','a','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:25'),(322,'The  person  that   transfers  risks  to  the  insurance company is called','a broker','an insured','an underwriter','a loss adjuster','','','b','','wassce','2015',83,'Admin','2017-01-09 14:33:35','2020-08-13 13:02:48'),(323,'A clause in marine insurance policy prohibiting the insured from giving up a damaged property is','deductible','abandonment','indemnity','compensation','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-08-13 13:02:48'),(324,'Insurance is described as a risk','avoidance mechanism','regulating mechanism','transfer mechanism','assessment mechanism','','','c','','wassce','2015',69,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:28'),(325,'A fire insurance policy valued at N= 250,000 is issued at the rate of 0.2%. How much would the premium be, if the policy is granted with 5% long - term agreement discount?','N= 475','N= 500','N= 12,500','N= 13,000','','','a','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:29'),(326,'What is the full meaning of “NCRIB” in the insurance industry?','National  Council of  Registered Insurance  Brokers','Nigerian  Council of  Registered Insurance  Brokers','Nigerian Corporation of Registered Insurance Brokers','National Corporation of Registered Insurance Brokers','','','b','','wassce','2015',82,'Admin','2017-01-09 14:33:35','2020-08-13 13:03:27'),(327,'Which of the following is not a function of an insurance underwriter?','Determining rates and coverage for the risk','Deciding whether to take the risk','Looking for an insurer to take the risk','Deciding whether to reject the risk','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:31'),(328,'The cover that is taken at the option of the motor vehicle owner is','a comprehensive cover','an act only cover','a third party only cover','a special type cover','','','c','','wassce','2015',93,'Admin','2017-01-09 14:33:35','2020-08-13 13:02:48'),(329,'The  sum  insured  for  a  risk  is  N= 150,000  and  was accepted  for  fire  insurance at a rate of  0.25%. How much will the insured pay as a premium?','N= 125','N= 375','N= 500','N= 875','','','b','','wassce','2015',67,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:32'),(330,'The amount payable to an insured in the event of fire damage of household items is the','cost of repair','actual cash value','replacement cost','sum insured','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:33'),(331,'A motorist travelling from Ghana to Nigeria would be required to obtain one of the following types of motor insurance cover','green card','brown card','yellow card','purple card','','','b','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-08-13 13:03:27'),(332,'One of the benefits payable under personal accident insurance policy is','retirement benefit','surrender benefit','death benefit','transfer benefit','','','c','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:35'),(333,'A  trade  group for insurance  companies in  Nigeria is called','Chartered Insurance Institute of Nigeria','National Insurance Commission','Nigerian Corporation of Registered Insurance Brokers','Nigerian Insurers Association','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:36'),(334,'The process of  assessing  risks  in  insurance  and classifying them according to their degree of insurability so  that  the  appropriate  rate  may  be  assigned  is','inspecting','underwriting','surveying','evaluating','','','d','','wassce','2015',87,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:37'),(335,'Who  among  the  following  is  an  employer  of  loss adjuster?','Insurer','Broker','Insured','Agent','','','a','','wassce','2015',75,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:38'),(336,'The meaning of with <em>profit policy</em>  in life assurance is that the sum assured is paid','without profit','with profit','with interest','without interest','','','c','','wassce','2015',86,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:39'),(337,'The  document issued by  the  insurer when there is a change in the particulars of a risk insured is','endorsement','certificate','voucher','policy','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:40'),(338,'The amount charged when a ship overstays at the port under a marine contract is','penalty','fine','overcharge','demurrage','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:41'),(339,'Which of the following documents forms the basis of a contract in insurance business?','Policy document','Proposal form','Claim form','Discharge form','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:42'),(340,'The  difference  between  theft  and burglary insurance lies in evidence of','pilfering  of insured items','removal of insured items by tricks','forceful violent entry or exit affecting insured items','threat leading to loss of insured items','','','c','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:43'),(341,'The right of choice of option for method of indemnity is exercised by the','insured','insurance broker','insurance consultant','insurer','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:44'),(342,'Cover note  in  motor  insurance is issued for a period not exceeding','30 days','60 days','90 days','120 days','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:45'),(343,'Which of the following activities is not involved in claims management?','Proof of loss','Particulars of loss','Premium calculation','Primary investigation','','','c','','wassce','2015',72,'Admin','2017-01-09 14:33:36','2020-08-13 13:03:27'),(344,'Life  assurance  contract is useful to a policyholder in the area of','production','protection','industrialization','rehabilitation','','','b','','wassce','2015',81,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:47'),(345,'Which  of  the  following  functions  is  related  to  life assurance contract? Benefits are','determined  on  the  happening  of  insured  event','determined by the indemnity doctrine','determined at the inception of the policy','assessed by the extent of the loss','','','c','','wassce','2015',90,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:48'),(346,'The saving element in a permanent life assurance policy which represent the policyholder’s interest in the policy is','surrender value','cash value','sum assured','residual value','','','c','','wassce','2015',79,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:49'),(347,'Which of the following is a duty of an insured in an insurance contract?','Concealment of facts','Exposure of facts','Disclosure of facts','Acceptance of facts','','','c','','wassce','2015',72,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:50'),(348,'The principle of maritime law which makes owners of a ship and cargo share in a loss incurred voluntarily is','special average','general average','specific average','particular average','','','b','','wassce','2015',80,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:51'),(349,'Which of the following factors limits indemnity?','Cession','Re - insurance','Excess','Co - insurance','','','b','','wassce','2015',75,'Admin','2017-01-09 14:33:36','2020-08-13 13:02:48'),(350,'A  temporary  insurance  document  providing  coverage until a permanent policy is issued is','proposal form','cover note','policy document','insurance certificate','','','b','','wassce','2015',92,'Admin','2017-01-09 14:33:36','2020-08-13 12:52:49');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `irk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `irk` VALUES (1,'The reason Mecca suwar lay emphasis on oneness of Allah is because  ','it was the only way to call Mecca to Islam  ','it is the only article of faith  ','it is the only article of peace between Prophet Muhammad and the Mecca  ','the pre-Islamic Mecca were idolatrous ','','','d','','post-utme-aaua','2012',934,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(2,'Uthman B. Affan reigned between  ','644 and 656 ','657 and 688  ','655 and 657  ','644 and 655  ','','','a','','post-utme-aaua','2012',970,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(3,'The final and total prohibition of intoxicants is contained in Surah  ','al-Baqarah  ','an-Nisa  ','al-Maidah  ','al- I a  ','','','c','','post-utme-aaua','2012',944,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(4,'Hajjatul Wada of Prophet Muhammad was delivered in ','632','630','628','631','','','a','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(5,'Suratul-Kawthar was revealed following the _____ of the Mecca  ','uproar  ','insinuation  ','intolerance  ','resistance  ','','','b','','post-utme-aaua','2012',955,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(6,'Zakat is paid on the following except____  ','cash  ','cattle  ','slaves','all of the above ','','','c','','post-utme-aaua','2012',939,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(7,'The i itial suggestio  to o pile the Qu a   as aised   ','A u Bak  ','Umar B. Khattab  ','Zaid B. Thabit  ','Uthman B. Affan  ','','','b','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(8,'One importance of wearing the Ihram during Hajj is_____  ','it directs the mind of all Muslims towards Allah  ','it purifies the Muslims  ','it makes all Muslims equal  ','it distinguishes pilgrims by country of origin  ','','','c','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(9,'The reason for the declaration of Jihad against the Islamic state of Borno by Muhammad Bello wasbecause of the people','rebellion  ','extremism ','syncretism  ','fundamentalism ','','','c','','post-utme-aaua','2012',944,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(10,'The oa d gi e  to P ophet Muhad is the first  e elatio  of the Qu a  tells us about ____ ','education  ','prosperity  ','worship  ','Allah ','','','a','','post-utme-aaua','2012',943,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(11,'?eek k o ledge, e e  u to Chi a   ea s ____ ','go to China to seek knowledge  ','knowledge is found in China  ','go at any length to seek knowledge  ','knowledge must be sought in china   ','','','c','','post-utme-aaua','2012',960,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(12,'The spokesman of the Muslims before Emperor Negus was ','Jaafar  ','Al-As  ','Abu Musa  ','Masa Musa  ','','','a','','post-utme-aaua','2012',931,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(13,'The first place of Muslims ig atio   as ___','Abyssinia  ','Taif  ','Medina  ','Yathrib ','','','b','','post-utme-aaua','2012',938,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(14,'Al-Tawrat was revealed to  ','Isa  ','Musa  ','Prophet Muhammad  ','Idris ','','','b','','post-utme-aaua','2012',936,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(15,'Literally, Boko Haram means  ','book is forbidden  ','education is forbidden  ','Western education is forbidden  ','school is forbidden  ','','','c','','post-utme-aaua','2012',922,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(16,'Wudu means  ','ablution','dry ablution  ','water ablution  ','wet ablution ','','','b','','post-utme-aaua','2012',958,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(17,'If Alhaji Musa Ayuba invested N10, 000: 00 in a business and made a profit of N2, 000: 00 at the','N215.00','N100: 00  ','N50:00  ','N1000:00 ','','','c','','post-utme-aaua','2012',956,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(18,'Ibadah refers to  ','worship of ancestors  ','worship of the Prophet  ','worship of the caliphs ','worship of Allah  ','','','d','','post-utme-aaua','2012',971,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(19,'Shirk means ____  ','monotheism ','polytheism','henotheism  ','syncretism ','','','b','','post-utme-aaua','2012',928,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(20,'Which one of the following is not associated with shirk _____ ','idol worship  ','trinity  ','monotheism  ','henotheism ','','','c','','post-utme-aaua','2012',941,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(21,'If a Muslim prays five times daily on a regular basis, how many times will he have prayed a regular ','1825','1835','1835','1845','','','a','','post-utme-aaua','2012',909,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(22,'Lakum dinukum wa Liya dinin means  ','religion is good  ','to you is my religion and to me yours  ','to you is your religion and to me is my religion ','my religion is better than yours  ','','','c','','post-utme-aaua','2012',919,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(23,'According to Islamic traditions, inability to marriage may rise as a consequence of   ','defects in sex organs  ','permanent illness  ','impotence  ','all of the above  ','','','d','','post-utme-aaua','2012',921,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(24,'Walam yakun lahu Kufuwan Ahadun is_____  ','the second ayat of the 112th surah  ','sixth ayat of the 111th surah  ','fourth ayat of the 112th surah ','seventh ayat of the 114th surah  ','','','c','','post-utme-aaua','2012',978,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(25,'The main message of ayay Amanar-Rasul is  ','the significance of knowledge  ','the articles of faith  ','the pillars of Islam  ','payment of Zakat ','','','b','','post-utme-aaua','2012',929,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(26,'Talaq al-','irrevocable ','revocable  ','impermissible  ','detestable ','','','a','','post-utme-aaua','2012',926,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(27,'The word Hafizi in Q.  82: 10 means  ','angels  ','jinns  ','spirits ','man  ','','','a','','post-utme-aaua','2012',933,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(28,'When Prophet Muhammad got to Yathrib, he had to first and foremost settle the feud between  ','Aws and Khazraj  ','banu Nadir and Mecca  ','Mecca and Medina ','Aws and Nadir  ','','','a','','post-utme-aaua','2012',936,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(29,'The prophet admonishes that if an abomination is found, a true Muslim should at least  ','hate if from his heart  ','change it with his hands immediately  ','condemn it publicly  ','declare Jihad  ','','','a','','post-utme-aaua','2012',937,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(30,'The reason Q.  2: 219 forbids wine ad gambling is because  ','they lead one to greater sin than gain  ','they lead to poverty ultimately ','they lead to extravagance and intoxication  ','they make a Muslim to abandon religion  ','','','a','','post-utme-aaua','2012',948,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `mathematics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `mathematics` VALUES (1,'A regular polygon has each of it angles at 160. What is the number of sides of the polygon? ','36','9','18','20','','','c','','post-utme','2006',1256,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(2,'A girl walks 30m from a point P on  a bearing of 040 to a point Q. she   then walks 30m on a bearing of 140 to a point R. the bearing of R from P is ','90','50 ','45','40','','','a','','post-utme','2006',1226,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(3,'How many different three digit numbers can be formed using the integers 1 to 6 if no integer 1 to 6 if no integer occurs twice in a number? ','720','1260','2520','5040','','','b','','post-utme','2006',1213,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(4,'In how many different ways can the letters of the word GEOLOGY be arranged in order? ','720','1260','2520','5040','','','c','','post-utme','2006',1236,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(5,'A cyclist rode for 30minutes at xhkm/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14   ','x<20  ','x<29  ','x< 28','','','d','','post-utme','2006',1234,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(6,'A business invested a total of N200,000 in two companies which paid dividends of 5% and 7% respectively. If the received a total of N11, 600 as dividend, how much did he invest at 5% ','N160,000 ','N140,000 ','N120,000 ','N80,000','','','c','','post-utme','2006',1219,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(7,'In a class, 37 students take a least one of chemistry, Economics and Government, 8 students take Chemistry, 19 take Economics and 25 take Government, 12 students take Economics and Government but nobody takes Chemistry and Economics. How many students take both chemistry and Government? ','3','4','5','6','','','a','','post-utme','2006',1261,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(8,'Solve for p in the following  equation given in base two  11(p+ 110) = 1001p   ','10','11','110','111','','','b','','post-utme','2006',1246,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(9,'Factorize 16(3x+2y)2-25 (a+2b)2','(12x +8y+5a+10b)(12x+8y-5a-10b)    ','(12x+8y-5a-10b) (12x+8y-5a-10b),    ','20 (3x +2y-a-2b)(3x+2y+a+2b)  ','20(3x+2y+a+2b) (3x+2y+a+2b).','','','a','','post-utme','2006',1207,'Admin','0000-00-00 00:00:00','2020-08-15 08:38:28'),(10,'1.3logx+logy =3. Then, y is  ','(10/x)3 ','(x/10)3  ','(x/10)-3 ','(10/x)1-1/3 ','','','a','','post-utme','2006',1237,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(11,'Z is partly constant and partly varies inversely as the square of d. when d = 1, z = 11 and when d = 2, z = 5. Find the value of z when d = 4.  ','2','3.5','5','5.5','','','b','','post-utme','2006',1206,'Admin','0000-00-00 00:00:00','2020-08-15 08:37:24'),(12,'Expand the expression (x2-2x-3)(x2+x+1).  ','x4-4x2-5x-3  ','–x3-4x2+5x-3','x4-x3-4x2-5x-3  ','x4-4x2-5x -3','','','c','','post-utme','2006',1188,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(13,'The indefinite integral of the function f(x) = xcosx for any constant k, is ','–cos + sinx +k,  ','xsinx-cosx,   ','xsinx for any constant k,   ','x+sinx+cosx+k','','','c','','post-utme','2006',1176,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(14,'The trigonometric expression cos 2A +sin 2A can be written as    ','cosA (cosA-sinA),    ','Cos2A +sin2A-2sinAcosA,  ','Cos2A + sin2A = Cos2A –sin2A+2sinAcosA','cos2A+sin2A','','','c','','post-utme','2006',1237,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(15,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is with replacement: ','0.9','1','0.47','0.49','','','d','','post-utme','2006',1217,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(16,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is without replacement ','0.1','0.47','0.42','0.21','','','b','','post-utme','2006',1292,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(17,'The interior angles of a pentagon are: 180o, 118o, 78o, 84o and  x. The value of x is: ','80o ','108o  ','120o  ','134o','','','a','','post-utme','2007',1226,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(18,'All the vertices of an isosceles triangle lie on a circle and each of the base angles  of the triangle is 65o. The angle subtended at the centre of the circle by the base of the triangle is: ','130o  ','115o  ','50o  ','65o','','','c','','post-utme','2007',1230,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(19,'A square tile measures 20cm by 20cm. How many of such tiles will cover a floor measuring 5m by 4m? ','500','400','320','250','','','a','','post-utme','2007',1224,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(20,'The volume of a certain sphere is numerically equal to twice its surface area. The diameter of the sphere is: ','6','9','12','','','','c','','post-utme','2007',1225,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(21,'A bearing of 310o, expressed as a compass bearing is: ','N50oW  ','N40oW  ','S40oW  ','S50oW','','','a','','post-utme','2007',1183,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(22,'Which of the following specified sets of data is not necessarily sufficient for the construction of a triangle? ','three angles  ','two sides and a right angle  ','two sides and an included angle ','three sides','','','a','','post-utme','2007',1243,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(23,'The average age of the three children in a family is 9 years. If the average age of their parent is 39 years, the average age of the whole family is: ','20 years  ','21years  ','24years  ','27years','','','b','','post-utme','2007',1178,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(24,'Evaluate x in base 3 if 41x-22x=17x. ','11','8','12','22','','','d','','post-utme','2007',1366,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(25,'When the price of egg was raised by N2 an egg, the number of eggs which can be bought for N 120 is reduced by 5. The present price of an egg is ','N 6. ','N 7  ','N 8','N10','','','c','','post-utme','2007',1195,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(26,'How long will take a sum of money invested at 8% simple interest to double the original sum? ','8 years  ','10.5years  ','(1years ','12.5years','','','d','','post-utme','2007',1197,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(27,'The journey from Lagos to Ibadan usually takes a motorist 1 hour 30 minutes. By increasing his average speed by 20km/hr, the motorist saves 15 minutes. His usual speed, in Km/hr is ','100','90','85','80','','','a','','post-utme','2007',1192,'Admin','0000-00-00 00:00:00','2020-08-15 08:38:26'),(28,'The smallest section of a rod which can be cut 36cm in length is','90cm ','180cm ','360cm  ','540cm.','','','b','','post-utme','2007',1189,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(29,'If x= 0.0012 + 0.00074 + 0.003174, what is the difference between x to 2 decimal places and x to 1 significant figure? ','0.01','0.0051','0.1','0.005','','','d','','post-utme','2007',1217,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(30,'In a survey of 100 students in an institution, 80 students speak Yoruba, 22 speak Igbo, while 6 speak neither Igbo nor Yoruba. How many students speak Yoruba and Igbo? ','96','8','64','12','','','b','','post-utme','2007',1233,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(31,'The expression a 3 + b 3 is equal  to ','(a2 +b)(a-ab+b2 )','(a+b)(a2 –ab+b2 )  ','(a-b2)(a2-  ab+b)','(a­-b)(a2+ab+b2)','','','b','','post-utme','2008',1268,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(32,'Factorize 16(3x +2y)2 -25(a+2b)2  ','(12x + 8y -5a-10b)(12x+8y-5a-10b)','20(3x +2y-a-2b)(3x+2y+a+1-2b) ','(12x +8y+5a+10b)(12x +8y-5a-10b)','20(3x +2y+ a+2b)(3x + 2y+a+2b)','','','a','','post-utme','2008',1179,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(33,'A cone has base radius 4cm and  height 3cm. The area of its curved surface is','12pcm2     ','20pcm2','24pcm2 ','15cm2','','','b','','post-utme','2008',1210,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(34,'A. cylinder has height 4cm and base radius 5cm.its volume to 3 significant figure is  ','314.2cm2 ','31.42 cm2 ','251 4cm2 ','251cm2','','','b','','post-utme','2008',1243,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(35,'A cyclist rode for 30minutes at xkm/hr and due to a breakdown, he had to push the bike for 2hrs at (x – 5) km/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14','x<29','x<28','x<20','','','c','','post-utme','2008',1224,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(36,'The expression ax2 + bx takes the value 6 when x = 1 and 10 when x = 2. Find its value when  x = 5       ','10','12','6','.-10','','','a','','post-utme','2008',1256,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(37,'Dividing 2x3 – x2 – 5x + 1 by x  + 3 gives the remainder ','.-3','47','61','-47','','','d','','post-utme','2008',1249,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(38,'The difference of two numbers is 10, while their product is 39. Find these numbers','– 3 and 10 or 13 and 10,','3 and – 10 or 3 and 13,  ','3 and – 3 or 3 and 13,     ',' – 3 and – 13 or   13 and  3 ','','','d','','post-utme','2008',1245,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(39,'The average age of x pupils in a class is 14 years 2 months. A pupils of 15years 2 months joins the class and  the average age is increased  by one month. Find x.      ','12, ',' 6, ','11,','14,','','','c','','post-utme','2008',1278,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(40,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. 13. How many learn both languages? ','60','45','15','120','','','c','','post-utme','2008',1176,'Admin','0000-00-00 00:00:00','2020-08-15 14:16:21'),(41,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. How many learn Igbo only?   ','45','30','15','60','','','a','','post-utme','2008',1216,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(42,'If the distance covered by a body in time t seconds is s = t2 - 6t2  - 5t, what is its initial velocity?  ','0ms-1    ','-4 ms-1 ','(13t2  - 12t + 5) ms-1   ','5ms-1 ','','','d','','post-utme','2008',1258,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(43,'The trigonometric expression cos2A + sin 2A can be written as:  ','cosA(cosA + sinA)  ','B.cos2A + sin2A – 2sinAcosA,  ','2sinAcosA + cos2A + sin2A,  ','D.cos2A +sinA  – 2sinAcosA','','','c','','post-utme','2008',1150,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(44,'With replacement ','0.9,','1, ','0.4,','0.49','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','d','','post-utme','2008',1181,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(45,'Without replacement ','0.1, ','0.47, ','0.42,   ','0.21','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','b','','post-utme','2008',1274,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(46,'The fair coins are tossed simultaneously. What is the probability of obtaining at least 1 tail turns up? ','1/4','3/4','1/2','1','','','b','','post-utme','2008',1235,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(47,'A regular polygon has each of it angles as 1600. What is the number of sides of the polygon?  ','18,    ','36,       ','9,     ','20','','','a','','post-utme','2008',1220,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(48,'One angle of an octagon is 1000 while the other sides are equal. Find each of these exterior angles. ','800,','600,','1400,           ','400,   ','','','d','','post-utme','2008',1214,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(49,'A sector circle of radius 7.2cm which subtends an angle of 3000 at the centre is used to   form a cone. What is the radius of the base of the cone?. ','6cm ','7cm ','8cm    ','9cm      ','','','a','','post-utme','2009',1149,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(50,'If 32y – 6(3y) = 27, find y ','3','-1','2','-3','','','c','','post-utme','2009',1218,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(51,'An (n-2)2 sided figure has n diagonal, find the number n of diagonal for a 25 sided Figure   ','8','7','6','10','','','b','','post-utme','2009',1249,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(52,'A sum of money was invested at 8% per annum simple interest. If after 4 years, the   money became ','N180 ','N 165 ','N15   ','N 200','','','d','','post-utme','2009',1283,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(53,'Two fair dice are rolled. What is the probability that both show up the same number of point?','1/36 ','7/36 ','½ ','1/6','','','d','','post-utme','2009',1246,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(54,'Find the probability of selecting a figure which is parallelogram from a square, a rectangle, a rhombus, a kite and a trapezium  ','3/5 ','2/5 ','1/5 ','1/5 ','','','a','','post-utme','2009',1335,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(55,'A man kept 6 black, 5 brown and 7 purple shirts in a drawer. What is the probability of his picking a purple shirt with his eyes close ','1/7','7/18 ','11/18 ','7/11','','','b','','post-utme','2009',1238,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(56,'If P varies inversely as V and V varies directly as R2, find the relationship between P and R given that R = 7 when P = 2 ','P = 98R2 ','PR2 = 98 ','P2R = 89 ','P = 1/98R ','','','b','','post-utme','2009',1325,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(57,'If 7 and 189 are the first and fourth terms of a geometric progression respectively find the sum of the first three terms of the progression ','182','180','91','63','','','c','','post-utme','2009',1303,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(58,'Find the positive number n such that thrice its square is equal to twelve time the number ','1','4','2','5','','','b','','post-utme','2009',1285,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(59,'Given a regular hexagon, calculate each interior angle of the hexagon ','60','30','120','15','','','c','','post-utme','2009',1261,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(60,'Factorize 6x2 – 14x – 12 ','2(x + 3)(3x – 2) ','6(x – 2)(x + 1) ','2(x – 3)(3x + 2) ','6(x + 2)(x – 1) ','','','c','','post-utme','2009',1242,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(61,'The value of (0.303)3 – (0.02)3 is ','0.019','0.0019','0.0268','0.000019','','','c','','post-utme','2009',1262,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(62,'What is the product of 27/5 ¸(3)3 and (1/5) ','5','3','2','1','','','c','','post-utme','2009',1265,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(63,'Find the probability that a number selected at random 40 to 50 is a prime number   ','3/11','5/11','5/10','4/10','','','a','','post-utme','2009',1209,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(64,'If the length of the sides of a right angled triangle are (3x + 1)cm, (3x – 1)cm and xcm, what is x ? ','2','6','18','12','','','d','','post-utme','2009',1194,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55'),(65,'A number of pencils were shared out among peter, Paul and Audu in the ratio 2:3:5 respectively. If Peter got 5, how many were shared? ','15','25','30','50','','','b','','post-utme','2009',1162,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(66,'Solve 4x2 +20x -24 =0',' 1, 6',' -1, -6','6, -1','-6, 1','','','d','','post-utme','2013',1231,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(67,'What is the 15th term of the sequence -3, 2,7,…? ','65','66','68','67','','','d','','post-utme','2013',1191,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(68,'What is the remainder when x3 +5x2-6x+1 is divided by x-1? ','-1','2','-2','1','','','d','','post-utme','2013',1230,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(69,'If  are the roots of equation 6 +5x –x2 =0, find  x','11','-11','1','-1','','','b','','post-utme','2013',1257,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(70,'Solve the equation  = 25x+4 ','-4, 2 ',' -4,-2 ','4, -2','4, 2','','','a','','post-utme','2013',1195,'Admin','0000-00-00 00:00:00','2020-08-15 14:17:14'),(71,'What is the coordinate of centre of the circle X2+y2+2x-4y =10?  ','(-1,-2)','( 1, 2)',' (-1, 2) ',' (1, -2)','','','d','','post-utme','2013',1147,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(72,'Solve the equation 3x+1 = 271-x  ','1/2','-1/2','3/4','-3/4','','','a','','post-utme','2013',1239,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(73,'Given f(x) =3+x and g(x) =3-x, find g (f(x))','6','x','-x','0','','','b','','post-utme','2013',1169,'Admin','0000-00-00 00:00:00','2020-08-15 14:19:48'),(74,'Differentiate sin (2x-5) with respect to x. ','cos (2x-5)','–cos (2x-5)   ',' 2cos (2x-5)','-2cos (2x-5)','','','c','','post-utme','2013',1241,'Admin','0000-00-00 00:00:00','2020-08-16 16:17:55');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `naijafb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `naijafb` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'What is the full meaning of APC','All progress Congress','Alliance progress Congress','All progressive Congress','Alliance progressive Congress','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full meaning of PDP','Power for the People','People Democracy Party','People Democratic Party','Share the money sharp sharp','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'How old was President Buhari when he won 2015 presidential general election','70','72','73','74','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'About how many million votes did General Buhari use to deaf President Goodluck Jonathan?','10.1 Million','5.1 Million','2.1 million','1.1 million','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Who was the spoken man of APC during the presidential elections?','Liel Mohammed','Lia Mohammed','Bello Mohammed','Adams Mohammed','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who was the spoken man of PDP during the presidential elections?','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'President Buhari is from what state?','Kano','Kaduna','Katsina','Jigawa','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many presidential elections did General Buhari contested in before wining in2015?','3','5','4','2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'The only woman that contested in 2015 presidential election was from which party','ANPP','CPC','AA','KOWA','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'What is the name of first female Nigerian to run for office as a democratic president?','Funmilayo Ransome Kuti','Remi Sonaiya','Oby Ezekweslli','Bola Ara','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'2015 general election INEC chairman was','Attahiru Hammed Jega','Attahiru Mohammed Jega','Attahiru Muhammadu Jega','Atta Muhammadu Jega','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'The official release of 2015 presidential general election results was on','March 30th','March 31th','March 29th','April 4th','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'2015 general presidential election took place on','14-Mar','28-Mar','1-Apr','14-Feb','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' The spokesperson for President Goodluck Jonathan?s during 2015 election was','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which country won 2015 FIFA U-17 world cup','Mali','Nigeria','Brazi','Spain','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' Nigeria became a republic in','1960','1962','1963','1965','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What day is regarded as democracy day?','27-May','1-May','29-May','25-May','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What day is regarded as workers? day?','27-May','1-May','29-May','25-May','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' What day is regarded as children?s day?','27-May','1-May','29-May','25-May','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,' In year 2015, Nigeria as an independent state will be how old','50','53','54','55','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' What are the colors of Nigeria Flag?','Green white green','Green and white','Green , green white','Green brown green','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,' Nigeria commercial capital is','Abuja','Port Harcourt','Lagos','Kano','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' How many states are in Nigeria?','37','36','35','34','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' Which of the following is not a minister of President Buhari administration 2015','Babatunde fashola','Chris Ngige','Kayode Fayemi','Solomon David','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' How many ministers were appointed by President Buhari Administration?','30','37','32','36','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Which Nigeria army office allegedly looted 32 billion naira?','Gen. Sambo Dasuki','Col. Sambo Dasuki','Major. Sambo Dasuki','Officer Sambo Dasuki','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' The full meaning of EFCC is','Economic and Financial Crimes Conduct','Economic and Finances Crimes Commission','Economic and Financial Crimes Commotion','Economic and Financial Crimes Commission','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' What is the Capital of Jigawa State?','Bornu','Maiduguri','Dutse','Makurdi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' What is the Capital of Benue State?','Bornu','Maiduguri','Dutse','Makurdi','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' What is the Capital of Zamfara State?','Bornu','Maiduguri','Gusau','Makudi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `physics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `physics` VALUES (1,'A 70kg man ascends a flight of stairs of height 4m in 7s. The power expended by the man is;','40W ','100W ','280W ','400W','','','a','','post-utme','2006',3915,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(2,'A body accelerates uniformly from rest at 6ms-2 for 8 seconds and then decelerates uniformly to rest in the next 5 seconds. The magnitude of the deceleration is: ','9.6ms-2 ','48 ms-2 ',' 24 ms-2 ','39.2 ms-2','','','a','','post-utme','2006',3845,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(3,'A nail is pulled from a wall with a string tied to the nail. If the string is inclined at an angle of 30oC to the wall and the tension in the string is 50N, the effective force used in pulling the nail is: ','25N ','25√3 N ','50N ','50√3N','','','a','','post-utme','2006',3787,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:01'),(4,'If M and R are the mass and radius of the earth respectively and G is the universal gravitational constant, the earth’s gravitational potential at an altitude H above the ground level is: ','A.-GM/H ','–GM/(R+H) ','C. -GM/2H ','D. –GM/(R-H)','','','b','','post-utme','2006',3868,'Admin','0000-00-00 00:00:00','2020-08-13 18:51:29'),(5,'Which of the following statements is not true? ','as the slope of an incline plane increases, the velocity ratio decreases, ','the efficiency of an incline plane decreases as the slope increases ','the effort required to push a given load up an incline plane increases as the slope increases','The mechanical advantage of smooth incline plane depends on the ratio of the length to the height of the plane.','','','d','','post-utme','2006',3789,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:44'),(6,'The ice and steam point of a thermometer are 20mm and 100mm respectively: A temperature of 75oC correspond to Ymm on the thermometer. What is Y? ','100mm ','70mm ','80mm ','60mm','','','c','','post-utme','2006',3804,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(7,'  An electric kettle with negligible heat capacity is rated at 2000W, if 2.0kg of water is put in it, how long will it take temperature of water to rise from 20oC to 100oC? (specific heat capacity of water = 4200J/Kg-1K-1) ','336s ','240s ',' 168s ','84s','','','a','','post-utme','2006',3803,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:47'),(8,' A quantity of ice –10oc is heated until temperature of heating vessel is 90oc. Which of the following constant is NOT required to determine the quantity of heat supplied to the vessel? ','Specific latent heat of vaporization ','specific heat capacity of ice ','specific latent heat of fusion ','specific heat capacity of water','','','a','','post-utme','2006',3809,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:42'),(9,'The scent from a jar of perfume open move through the air molecules by ','evaporation ','osmosis ','diffusion ','Convection','','','c','','post-utme','2006',3959,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(10,'  A convex lens of focal length 10.0cm is used to form a real image which is half the size of the object. How far from the object is the image? ','45cm ','30cm ','15cm ','20cm','','','c','','post-utme','2006',3783,'Admin','0000-00-00 00:00:00','2020-08-13 18:51:29'),(11,'An object of height 3.00cm is placed 10cm from a biconvex lens of 15cm, the image of the object is ','real and 3.00cm tall ','virtual and 3.00cm tall ',' virtual and 9.00cm tall ','real and 9.00cm tall','','','c','','post-utme','2006',3849,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:42'),(12,'The most suitable type of mirror used for the construction of search light is the: ','concave mirror ','Convex mirror ','Spherical mirror ','Parabolic Mirror','','','d','','post-utme','2006',3892,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(13,'Light wave and ripples of water are similar because both','are longitudinal waves ','have the same velocity ','can be diffracted and refracted ','have the same frequency ','','','c','','post-utme','2006',3910,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(14,'Three 4Ω resistors were connected in series by Tola, while Ade connected the ','1:02','1:09','1:10','1:15','','','b','','post-utme','2006',3900,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(15,'A coil of copper wire of N turns is kept rotating between the poles of a magnet  such that the magnetic flux linking the coil changes continuously. Which of the  following statements is TRUE? ','An e.m.f is induced in the coil such that when  the change of flux is positive the e.m.f is positive, and when the change of flux is negative the e.m.f is negative. ','An e.m.f is induced in the coil whose magnitude  is inversely proportional to both the number of turns in the coil and the rate of  change of magnetic flux ','. An e.m.f is set up in the permanent magnet which  reduces the flux in the coil to zero ','A current flows in the coil and e.m.f is set  up proportional to both the rate of change of the flux and the number of turns','','','d','','post-utme','2006',3977,'Admin','0000-00-00 00:00:00','2020-08-13 18:51:29'),(16,'The principle of operation of an induction coil is based on ','Ohm’s law ','Ampere’s Law ','Faraday’s Law ','Coulomb’s Law','','','c','','post-utme','2006',3858,'Admin','0000-00-00 00:00:00','2020-08-13 18:51:29'),(17,'Which of the following radiations cannot be deflected by an electric field or ','(i) and (ii) only ','(ii) only ','(iii) and (iv) only ','(i) and (iii) only','','','c','','post-utme','2006',3845,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(18,'The half-life of a radioactive element is 9 days. What fraction of atoms has decayed in 36 days? ','16-Jan','¼ ',' ½ ','15/16','','','d','','post-utme','2006',3820,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:44'),(19,'What is the dimension of pressure? ','ML-1T-2 ','MLT-2 ','ML2T-3 ','ML-3','','','a','','post-utme','2007',3881,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:44'),(20,'Calculate the length of a displaced pendulum bob that passes its lowest point twice every second. [g=10ms-1] ','.100m ','0.253m ','0.450m ','0.58m','','','b','','post-utme','2007',3822,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(21,'When a ball rolls on a  smooth level ground, the motion of its centre is ','translational ','Random ','Oscillatory ','Rotational','','','a','','post-utme','2007',3919,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(22,'A vehicle of mass m is driven by an engine of power P from rest. Find the minimum time it will take to acquire a speed v. ','mv2/p ','mv2/2p ','mv/p ','mv/2p','','','b','','post-utme','2007',3802,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:01'),(23,'A box of mass 40kg is being dragged  along by the rope inclined at 60o to the horizontal. The frictional force between the box and the floor is 100N and the tension on the rope is 300N. How much work is done in dragging the box through a distance of 4m? ','680J ','200J ','100J ','400J','','','c','','post-utme','2007',3882,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(24,'A body is projected from the earth’s surface with the hope of letting it escape from the earth gravitational field. What is the minimum escape velocity?  [Earth’s radius = 6.4 x 103km, g = 10 ms-2]','11.3kms-1 ','13.3kms-1 ','12.3kms-1 ','14.3kms-1 ','','','a','','post-utme','2007',3822,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(25,'A uniform rod PQ of mass 2kg and length of 1m is pivoted at the end P, if a load of 14N is placed at the centre, find the force that should be applied vertically upwards at Q to maintain the rod in equilibrium ','7N ','28N ','68N ','17N','','','d','','post-utme','2007',3844,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(26,'The energy contained in wire when it is extended by 0.02m by a force 500N is ','104J ','103J ','10J ','5J','','','d','','post-utme','2007',3933,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:47'),(27,'What is the acceleration due to gravity ‘g’ on the moon, if ‘g’ is   10ms-2 on the earth?','0.74ms-2 ','0.1ms-2 ','10.0 ms-2 ','1.67 ms-2','','','c','','post-utme','2007',3858,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(28,'A 5kg block is released from rest on a smooth plane inclined at an angle of 30o to the horizontal. What is the acceleration down the plane?  [ g = 10ms-2]','5.0 ms-2 ',' 8.7 ms-2 ','25.0 ms-2 ','5.8 ms-2   ','','','a','','post-utme','2007',3986,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:42'),(29,'A rectangular metal block of volume 10-6m3 at 273K is heated to 573K, if the coefficient of linear expansion is 1.2 x 10-5K-1, the percentage change of its volume is ','1.50%','1.10%','0.10%','0.40%','','','b','','post-utme','2007',3801,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(30,'A temperature scale has a lower fixed point of 40mm and an upper fixed point of 200mm. What is the reading on this scale when the temperature reads 60oc? ','136.omm ','33.3mm ','96.0mm ','36.0mm','','','a','','post-utme','2007',3855,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(31,'A 500kg car was initially at rest travelled with an acceleration of 5ms-2, what is its kinetic energy after 4s ','2.5 x 103J ','105J ','5 x 103J ','5 x 105J','','','b','','post-utme','2007',3849,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(32,'The temperature at which the water vapour in the air saturates the air and begins to condense is','melting point ','triple point ','dew point ','melting point','','','c','','post-utme','2007',3822,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(33,'The period of a simple pendulum will increase by what factor of its extensible length increased by a factor of four ','2','4','2','¼','','','c','','post-utme','2007',3900,'Admin','0000-00-00 00:00:00','2020-08-13 12:48:27'),(34,'An air column 10cm in length is trapped into the sealed end of a capillary tube by a 15cm column of mercury with the tube held vertically. On inverting the tube, the air column becomes 15cm long, what is the atmospheric pressure during the experiment? ','76cm ','75cm ','60cm ','70cm','','','b','','post-utme','2007',3809,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(35,'An electric cell has an internal resistance of 2Ω. A current of 0.5A was measured when a resistor of resistance 5Ω was connected across it. Determine the electromotive force of the cell','3.5V ','2.5V ','4.5V ','2.35V','','','a','','post-utme','2007',3958,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(36,'The speed of light in air is 3 x 108ms-1. If the refractive index of light from air to water is 4/3, calculate the speed of light in water ','2.25 x 108ms-2 ','2.25ms-1 ','4.00ms-1 ','4.33ms-1','','','c','','post-utme','2007',3853,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:44'),(37,'It is known that an atomic nucleus comprises of positive charged protons. Which of the following also exist in the nucleus? ','a beta particle ','an Alpha particle ','A neutron ','An electron','','','c','','post-utme','2007',3887,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:04'),(38,'The silver wall of a vacuum flask prevents heat loss due to ','conduction ','Convection ','Radiation ','Diffraction','','','c','','post-utme','2007',3833,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(39,'The electromagnetic waves that are sensitive to temperature changes are','ultra-violet rays ','Gamma rays ','infrared-rays ','X-rays','','','c','','post-utme','2007',3783,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(40,'Under constant tension and constant mass per unit length, the note produced by a plucked string is 500Hz when the length of the string is 0.90m, at what length is the frequency 150Hz?','6m ','3m ','5m ','4m','','','b','','post-utme','2007',3904,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(41,'Two bodies P and Q are projected on the same horizontal plane, with the same initial speed but at different angles of 30o and 60o respectively to the horizontal. Neglecting air resistance, what is the ratio of range of P to that of Q? ','1:01','1:√3 ','√3:1 ','1:02','','','a','','post-utme','2007',3852,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(42,'A capacity of 2.0 x 10-11F and an inductor are joined in series. The value of the inductance that will give the circuit a resonant frequency of 200KHz is ','1/16H ','1/8H ','1/64H ','1/32H','','','d','','post-utme','2007',3895,'Admin','0000-00-00 00:00:00','2020-08-13 12:49:31'),(43,'Which of these is not a fundamental S.I unit ','Ampere ','Kelvin ','Seconds ','Radians','','','d','','post-utme','2009',3891,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:03'),(44,'If two masses 40g and 60g respectively, are attached firmly to end of a light metre rule, what is the centre of gravity of the system? ','at the mid point of the metre rule ','40cm from the lighter mass ','40cm from the heavier masses ','60cm from the heavier masses ','','','c','','post-utme','2009',3978,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:03'),(45,'To find the dept of the sea, a ship send out a second waves and an echo after one second. If the velocity of sound in water is 1500m/s, what is the depth of the sea ','0.75km ','1.50km ','2.20km ','3.00km ','','','a','','post-utme','2009',3721,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(46,'A machine has a velocity ratio of 5, if it requires a 50kg weight to overcome 200kg weight, the efficiency is? ','4%','5%','40%','80%','','','d','','post-utme','2009',3858,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(47,'If the force on a charge of 0.2 Coulomb in an electric field is 4N, then electric intensity of the field is ','0.8','0.8N/C  ','20.0 N/C ','4.2 N/C ','','','c','','post-utme','2009',3835,'Admin','0000-00-00 00:00:00','2020-08-11 15:49:44'),(48,'The resistance of a wire depends on ','the length of the wire ','the diameter of the wire ','the temperature of the wire ','All of the above','','','d','','post-utme','2009',3962,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:03'),(49,'Which of these is not contained in a dry cell? ','carbon rod ','paste of magnesium dioxide ','paste of ammonium chloride ','zinc case ','','','c','','post-utme','2009',3928,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(50,'When a yellow card is observed through a blue glass, the card would appear as ','black ','green ','red ','white ','','','a','','post-utme','2009',3927,'Admin','0000-00-00 00:00:00','2020-08-12 00:36:03'),(51,'A devise that converts sound energy into electrical energy is ','the horn of a motor car ','An AC generator ','A microphone ','Telephone earpiece ','','','c','','post-utme','2009',3844,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(52,'Radio waves have the velocity of 3 x 108ms-1. If a radio station sends out a broadcast on a frequency 800kHz, what is the wavelength of the broadcast? ','375.0m ','267.0m ','240.0m ','37.5m ','','','a','','post-utme','2009',3933,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(53,'The mode of heat transfer which does not require material medium is','conduction ','radiation ','convection ','propagation','','','b','','post-utme','2009',3855,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:44'),(54,'The height at which the atmosphere ceases to exist is about 80km, if the atmosphere pressure on the ground level is 760mmHg, the pressure at height of 20km above the ground is ','380mmHg ','570mmHg ','190mmHg ','480mmHg','','','c','','post-utme','2009',3830,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(55,'A simple pendulum 0.6 long has a period of 1.55, what is the period of a similar pendulum 0.4 long in the same direction ','1.4 √1/3s ','1.5 √1/3s ','2.25s ','None of the above','','','d','','post-utme','2009',3830,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:44'),(56,'Which of the following  is common to evaporation and boiling, they ','take place at any temperature ','are surface phenomena ','involve change of state ','take place at a definite pressure ','','','b','','post-utme','2009',3881,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(57,'A house hold refrigerator is rated 200 watts. If electricity cost 5k per Kwh, what is the cost of operating it for 20 days ','N4.80  ','N48.00 ','N480.00 ','N4800.00 ','','','a','','post-utme','2009',3929,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(58,'The resistance of a 5m uniform wire of cross sectional area of 0.2 x 106m2 is 0.45. What is the resistivity of the material of the wire ','1.10 x 105 ohms ','4.25 x106Ωm ','2.40 x 107Ωm ','1.70 x 108Ωm ','','','a','','post-utme','2009',3896,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:20'),(59,'Which of the following instruments has a pure tone? ','guitar ','Vibrating String ','Turning forks ','Screen ','','','c','','post-utme','2009',3896,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(60,'Four lenses are being considered for use as a microscope object. Which of the following focal length is most suitable ','-5mm ','+5mm ','5cm ','+5cm ','','','b','','post-utme','2009',3790,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(61,'The product PV where P is pressure and V is a volume has the same unit as ','force ','power ','energy ','acceleration ','','','c','','post-utme','2009',3943,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:19'),(62,'The force with which an object is attracted to the earth is called ','acceleration ','mass ','gravity ','weight','','','d','','post-utme','2009',3848,'Admin','0000-00-00 00:00:00','2020-08-13 18:51:29'),(63,'The refractive index of a liquid is 1.5, if the velocity of light in a vacuum is 3.0 x 108ms-1, the velocity of light in the liquid is ','1.5 x 108ms-2 ','2.0 x 108ms-1 ','3.1 x 108ms-1','4.5 x 108ms-1 ','','','d','','post-utme','2009',3812,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:47'),(64,'A train has an initial velocity of 44m/s and an acceleration of -4m/s2 what is its velocity after 10seconds? ','2m/s ','4m/s ','8m/s ','12m/s ','','','b','','post-utme','2009',3861,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:44'),(65,'A man of mass 50kg ascends a flight of stair 5m high in 5 seconds. If acceleration due to gravity is 10ms-2 the power expanded is ','100W ','300W ','250W ','500W','','','d','','post-utme','2009',3954,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(66,'Two strings of the same length and under the same tension give notes of frequency in the ratio 4:1, the masses of the string are in the ratio of ','2:01','1:02','1:04','1:16','','','d','','post-utme','2009',3821,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(67,'Which of the following phenomena cannot be explained by the molecular theory of matter? ','evaporation ','expansion ','conduction ','radiation','','','d','','post-utme','2010',3846,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(68,'The most likely measurement of length of an object using a venier caliper is: ','3.0cm ','3.3cm ','3.33cm ','3.333cm','','','b','','post-utme','2010',3986,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:20'),(69,'If 21g of alcohol of density 0.7gcm-3 is mixed with 10g of water, what would be the density of the resulting mixture? ','780gcm-3 ','0.78gcm-3 ','30gcm-3 ','10gcm-3','','','c','','post-utme','2010',3905,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(70,' For  a particle having an x co-ordinate that varies in time according to the express ion x = 4t -2t2 The instantaneous velocity for of the particle at t = 2.5s is:','12m/s ','6m/s ','0m/s ','10m/s','','','b','','post-utme','2010',3894,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(71,'  A long-jumper leaves the ground at an angle of 20o above the horizontal and at speed of 11m/s. How far does it jumps in the horizontal direction? ','0.384m ','7.94m ','8.45m ','5m','','','d','','post-utme','2010',3852,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(72,'A mass of 0.5kg is attached to one end of a helical spring and produces an extension of 2.5cm. The mass now set into vertically oscillation of amplitude 10mm. The period of oscillation is: (g = 10m/s2) ','0.33s ','100s ','200s ','280s','','','a','','post-utme','2010',3828,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:03'),(73,'A boat is passing under a bridge. The deck of the boat is 15m below the bridge. A small package is to be dropped from the bridge onto the deck of the boat is 25m from just below the drop point. What speed is necessary to have the package land in the boat? (g= 9.8ms-2)','17m/s ','14m/s ','1.7m/s ','4.9m/s','','','b','','post-utme','2010',3974,'Admin','0000-00-00 00:00:00','2020-08-13 16:17:44'),(74,'A 0.60kg rubber stopper is whirled in a horizontal circle of 0.80m radius at a rate of 3.0 revolutions per second. What is the tension in the string? ','14N ','80N ','170N ','24N','','','c','','post-utme','2010',3939,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(75,'An automobile is traveling at 60km/hr. calculate the angular velocity of the 0.35m radius wheels. ','16.67rad/s ','47.6 rad/s ','21 rad/s ','171.4 rad/s','','','b','','post-utme','2010',3846,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(76,'An air bubble at the bottom of a lake has a volume of 20cm3, pressure of 4.9Pa, and temperature 4oc the bubble rises to the surface where the temperature is 20oc and the pressure 1.0Pa. Find the volume as the bubble reaches the surface. (take 1 atm = 1.0 x 105 N/m2) ','124cm3 ','319cm3 ','60cm3 ','104 cm3','','','d','','post-utme','2010',3895,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:03'),(77,'  A gas at constant pressure of 4.0 x 105 Pa is cooled so that its volume decreases from 1.6m3 to 1.2m3. What work is performed by the gas? ','6.4 x 105 J ','3.2 x 105 J  ','1.6 x 105 J ','0.4 x 105 J  ','','','c','','post-utme','2010',3869,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(78,'Highly polished silvery  surfaces are: ','poor absorbers but good emitter of radiation ','good absorbers and good emitters of radiation ','poor emitters but good reflectors of radiation ','poor emitters and poor reflectors of radiation','','','c','','post-utme','2010',3870,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(79,'A 0.040kg string 0.80m long is stretched and vibrated in a fundamental mode with a frequency of 40Hz. What is the speed (of propagation) of the wave and tension in the string? ','64m/s ','340m/s ','32m/s ','128m/s','','','a','','post-utme','2010',3982,'Admin','0000-00-00 00:00:00','2020-08-13 16:17:44'),(80,'What is the total power output of a source with intensity 0.050 W/m2 at a distance of 3.0m from the source? ','112W ','5.6W ','15W ','30W','','','b','','post-utme','2010',3774,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(81,'The superposition of two or more waves to produce a maximum or zero effect at a point is known as: ','reflection ','refraction ','diffraction ','interference','','','d','','post-utme','2010',3906,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(82,'The acceleration due to gravity ','increases with increasing altitude ','decreases with increasing altitude ','increases with increase in the square of the altitude ','is not affected by the altitude','','','b','','post-utme','2010',3932,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(83,'Which of the following statements are correct of nuclear fission? During the process \\nI. energy is released \\nII. More neutrons are released than those that cause fission \\nIII. Small nuclei merge into large nuclei \\nIV. There is a loss on mass\\n','II and I only','III','I,II and IV','IV and III','','','c','','post-utme','2010',3952,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(84,'Which of the following statements is not true? ','electric field intensity is force per unit charge. ','electric potential is a vector ','the S.I unit of electric field strength is N/C ','electric field intensity is equal to the potential gradient','','','b','','post-utme','2010',3816,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:42'),(85,'Which of the following about electrolysis is false? ','liquid that conduct electricity and are split up chemically by the current are electrolyzed','the current into the electrolyte by the anode ','the current is taken away from the electrolyte by the cathode ','the container which holds the electrolyte and the electrode is the voltmeter','','','d','','post-utme','2010',3905,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(86,'Which of the following is not true about the properties of x-rays? ','they are not deflected by magnetic or electric field','they ionized a gas making it a conductor ','they are massive ','they have high penetrating power ','','','c','','post-utme','2010',3920,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(87,'A transformer is connected to a 240 V supply. The primary coil has 40 turns, and the secondary is found to be 960V. What is the ratio of the number of turns of the primary coil to the number of turns of the secondary coil? ','4:01','1:04','1:06','6:01','','','a','','post-utme','2010',3828,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:47'),(88,'Which of the following is not true about an object that is projected upwards at angle θ? ','the velocity is maximum at the maximum height ','the acceleration along the horizontal direction is zero ','the maximum range (Rmax) for an object moving with speed u is given by u2/g ','the time it takes to get the maximum height is equal to the time it takes to come back to the point of projection','','','a','','post-utme','2010',3875,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(89,'When three coplanar non-parallel forces are in equilibrium i. they can be represented in magnitude and direction by the three sides of a triangle taken in order ii. The lines of action meet at a point iii. The magnitude of any one force equals the magnitude of the other two forces iv. Any one force is the equivalent of the other two. Which of the following statements above are correct? ','i and iii only ','i and ii only','i, ii,iii and iv ','none of them','','','b','','post-utme','2010',3914,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(90,'Which of the following statements is not true about a body performing simple harmonic motion? ','the linear speed is the product of the angular speed and the radius or amplitude ','the linear acceleration is the product of the square of the angular speed and the displacement ','frequency is the number of complete revolution per second made by a vibrating body ','the S.I unit of amplitude is Hertz (Hz)','','','d','','post-utme','2010',3807,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:50'),(91,'In the force of gravity on an object of mass m, the gravitational field strength, g, is given by the following equation. ','g = √MF ','g = MF ','g = M√F ','g = F/M.','','','d','','post-utme','2010',3934,'Admin','0000-00-00 00:00:00','2020-08-13 18:51:29'),(92,' A body of mass m slides down an inclined plane with a constant velocity. If the angle of the incline is Ø, the coefficient of kinetic friction between the body and the plane is  ','cot Ø ','cos Ø  ','tan Ø  ','sine Ø','','','c','','post-utme','2011',3911,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(93,'the velocity of a 500 kg car moving long a straight  road, changes from 12 m/s to 20 m/s in 5 sec. calculate the average force moving the car. ','2000N  ','1600N  ','1200N  ','800N','','','d','','post-utme','2011',3811,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:44'),(94,'When a 2kg body is at a height 5m above the floor, its velocity  is 4m/s. What is its total energy  at this height? (acceleration due to gravity = 10m/s2)  ','80J  ','00J  ','  116J  ',' 180J','','','c','','post-utme','2011',3889,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:03'),(95,'The density of sea water is 1030kg/m3. What is the pressure at a depth of  80 m below sea surface? Atmospheric pressure is 1.013 x 105 pa and acceleration  due to gravity is 10 m/s2  ','9.25 x  105 pa  ','8.24 105 pa   ','7.23 x 105 pa  ','8.34 x 109 pa','','','a','','post-utme','2011',3861,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(96,'6000 J of heat is delivered to 10g of dry ice at O0C. What is the final temperature if the container has a heat capacity of 20J/K? (specific heat of water = 4200j/kg.k, latent heat of fusion of ice = 3.33 x 105J/kg)  ','142.90C  ','63.60C  ','43.00C  ','00C','','','c','','post-utme','2011',3762,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:03'),(97,'A sample of radioactive substance, whose half-life is 16 days, registers 32 decays per second. How long will it take for the rate of decay to reduce to 2 decays per second? ','80 days  ','64 days  ','48 days  ','32 days','','','b','','post-utme','2011',3948,'Admin','0000-00-00 00:00:00','2020-08-13 12:51:45'),(98,'When white light passes through a triangular prism, the emerging rays of light arranged in order of decreasing angle of deviation are ','red, orange, yellow, green  ','blue, green,  orange, yellow ','red, green, yellow, orange ','blue, green, yellow, orange','','','d','','post-utme','2011',3897,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(99,' The electric field between two parallel plates is E.  A particle of mass m and carrying charge q is released at a point half the distance between the plates. The velocity  of the particle t  seconds after its release is  ','qEt/m ','qEt2  ','mqt2/2E  ','MQT/2E','','','','','post-utme','2011',3844,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(100,'An airplane increases its speed 36 km/h to 360 km/h in 20.0 s. How far does it travel while accelerating.  ','4.4 km     ','1.1 km  ','2.3 km  ','1.0 km','','','b','','post-utme','2011',3780,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:42'),(101,'An object is said to be in simple harmonic motion (SHM) if  ','the acceleration is directly proportional to the displacement and is directed towards the equilibrium position of the object. ','the acceleration is inversely proportional to the displacement and directed toward the equilibrium position  of the object  ','the displacement is directly proportional  to the momentum  and directed toward the equilibrium position of  the object ','the momentum is directly proportional to the displacement and directed toward the equilibrium position of the object.','','','a','','post-utme','2011',3867,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(102,'A wheel and axle is used to raise a weight of 600n with an effort of 300n. if the radii of the wheel and axle are 50 cm and 10 cm respectively, what is the efficiency of the system      ','40%','50%','20%','10%','','','a','','post-utme','2011',3788,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:18'),(103,'The  term “Viscosity” is used to describe  ','surface tension in fluids ','friction in fluids  ','surface tension in solids  ','moment in solids','','','b','','post-utme','2011',3958,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:19'),(104,' A particle is in equilibrium under the action of three forces. One force is 40N towards the west and another is 30N towards the south. What is the third force acting on the body?   ','40N, N530E  ','50N, N370E   ','50N, N530E     ','40N, N370E','','','b','','post-utme','2011',3815,'Admin','0000-00-00 00:00:00','2020-08-13 18:51:29'),(105,'A hydraulic press works on the principle of transmission of   ','force  ','energy  ','volume  ','pressure','','','d','','post-utme','2011',3985,'Admin','0000-00-00 00:00:00','2020-08-13 12:51:27'),(106,'Which of the following is not a thermometer?  ','thermocouple  ','pyrometer  ','hydrometer  ','platinum resistance thermometer. ','','','c','','post-utme','2011',3726,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:04'),(107,'Dry air of column length 10 cm is trapped by a pellet of mercury of length 15 cm, with the open end uppermost. When the capillary is inverted the length of the air column increased to 25 cm while that of mercury remained constant. Calculate the atmospheric pressure (in cm of Hg.)  ','35 cm Hg  ','15 cm Hg  ','20 cm Hg  ','35 cm Hg','','','d','','post-utme','2011',3887,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:47'),(108,'Which of the following is not true about a chemical cell?   ','in primary cells the process through which current is generated is irreversible  ','secondary cells can be recharged after they run down by passing a current into the cell in the  reverse direction ','positive ions are attracted to the positive electrode where they become neutralized by acquiring electrons  ','primary cells  can be recharged','','','d','','post-utme','2011',3808,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:47'),(109,'A cigarette lighter in a car is a resistor that, when activated, is connected across the 12 – V battery. If the lighter dissipates 33 W of power, find the current it delivers  to the lighter.  ','9.90 Ω  ','6.60 Ω  ','4.36','17.50Ω','','','c','','post-utme','2011',3871,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(110,'A p-n junction can act as  ','an amplifier  ','a rectifier  ','an inductor ','a capacitor ','','','b','','post-utme','2011',3924,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:50'),(111,'  Calcium has a work function of 19 eV with a wavelength of 150 nm. Calculate the maximum energy of a photo electron emitted. (1 eV = 16.1 x 10-19J, h = 6.6 x 10-34Js)            ','6.35 Ev  ','8.25 cV  ','14.60eV  ','None of above','','','d','','post-utme','2011',4011,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(112,'Sound waves were sent out from a source and after being reflected from  an obstacle were received by a sensor placed beside the source. If the waves were received 10 seconds after they were sent out, calculate  the distance between the  source and the obstacle (speed of sound = 330 m/s) ','990m  ','660m ','1320 m ','None of above','','','d','','post-utme','2011',3871,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(113,'Two plane mirrors are inclined at angle 45 to another. A ray of light has incident angle of 20 at the surface of the first mirror. The reflected ray is then incident on the second mirror. Calculate the angle of reflection at the second mirror ','65','45','25','20','','','c','','post-utme','2012',3830,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(114,'When the length of the string of a simple pendulum is L its period is 0.5π second is 0.5π seconds. The period when the length is increased to 4L will be ','0.5π seconds','π seconds ','2π seconds ','4π seconds','','','b','','post-utme','2012',3900,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(115,'A uniform meter rule AB has a mass 15g. A 30g mass is suspended at the 10.0cm mark, and another 5g mass is suspended at the 65.0cm mark. Calculate the position of the fulcrum that will keep the meter rule balanced horizontally ','50.0cm ','32.0cm ','27.5cm ','17.9cm ','','','d','','post-utme','2012',3788,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(116,'rectangular block measures 40cm x 25cm and made of material of density 7800kg/m3. Calculate the pressure the block exerts on the floor when it stands on the smallest of its surfaces ','3.12 x 103N/m2 ','3.90 x 103N/m2 ','1.9 x 104N/m2 ','3.12 x 104N/m2','','','b','','post-utme','2012',3973,'Admin','0000-00-00 00:00:00','2020-08-13 12:49:31'),(117,'A ship sinks to the bottom of a 250m deep lake. The atmospheric pressure over the lake is 1.03 x 105 Pa. Taking the density of water in the lake to be 1000 kg/m3, calculate the pressure exerted on the boat. [acceleration due to gravity = 10 m/s2] ','2.60 x 106Pa  ','2.50 x 106Pa ','2.60 x 105Pa ','1.03 x 105Pa','','','a','','post-utme','2012',3789,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(118,'Three knives made of steel, plastic and flat wood respectively are placed on the table for an equal amount of time. The steel knife feels coldest to touched because','The steel knife has the lowest temperature ','The plastic and wooden knives have absorbed more heat from the environment than the steel knife. ','Both wooden and plastic knives have lower densities than the steel ','The steel knife conducts heat faster from the finger than the wooden and plastic knives ','','','d','','post-utme','2012',3836,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:49'),(119,'Which of the following quantities is a scalar quantity?','Electric field ','Coulomb force','Electric potential ','Acceleration due to gravity','','','c','','post-utme','2012',3812,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(120,'A car accelerates at 5.0m/s2 for 6s, the travels at the speed attained for 20s, and comes to rest after another 4.0s. Calculate the average velocity of the car during the motion.','25.0m/s','20.0m/s ','1.25m/s ','0.16m/s','','','a','','post-utme','2012',3887,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(121,'Which of the following quantities is equal to the area under a velocity-time graph?','Acceleration ','Distance travelled ','Average Velocity of motion ','Total time taken.','','','b','','post-utme','2012',3918,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(122,'A 25N force pulls a 2.0kg body up a 300 inclined plane. If force is parallel to the plane and the body moves up the plane at constant velocity. Calculate the magnitude of the frictional force between the body and the plane. [g =10m/s2]','25N','10N','5N','15N','','','d','','post-utme','2012',3917,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:42'),(123,'The process by which solid change directly to vapour is called ','Evaporation','Fusion ','Condensation ','Sublimation ','','','d','','post-utme','2012',3784,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:42'),(124,'A coin is at the bottom of a bucket filled with a liquid whose refractive index is 1.35. The coin appears to be 12.0cm below the surface of the liquid. Calculate the depth of the liquid.','16.2cm  ','13.4cm  ','8.9cm  ','5.4cm','','','a','','post-utme','2012',3900,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(125,'A 3.0cm object is placed 12.0cm in front of bi-convex lens of focal length 8.0cm. Calculate the height of the image of the object.  ','3.0cm ','6.0cm ','12.0cm ','24.0cm','','','d','','post-utme','2012',3816,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:43'),(126,'To use a milli-ammeter to measure current up to 10A, what connection needs to be made?','A small resistance must be connected in parallel with the milli-ammeter ','A small resistance must be connected in series with the milli-ammeter ','A high resistance must be connected in parallel with the milli-ammeter ','The milli-ammeter must be disconnected from the circuit.','','','b','','post-utme','2012',3888,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:42'),(127,'Two 2µF capacitors are connected in parallel. The combination is connected in series with a 6µF capacitor. What is the equivalent capacitor for the combination?','10.0µF  ','8.0µF  ','1.5µF  ','2.4µF','','','c','','post-utme','2012',3831,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(128,'Five 100-Watt bulbs are put on for 45days during which the home-owner is on vacation. If 1kW-hour of electricity cost N7.50, how much does it cost the home-owner? ','N168.75  ','N90.0  ','N4050.00  ','N810.00','','','d','','post-utme','2012',3884,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(129,'To convert an a.c generator to d.c generator, one needs to ','Remove the brush touching the slip rings ','Laminate the armature ','Replace the permanent magnets with  iron-core armature. ','replace the slip rings with split rings','','','d','','post-utme','2012',3761,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:47');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `proentertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `progeneral` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `category` varchar(30) COLLATE utf8_unicode_ci NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `progeneral` VALUES (1,'World environmental day happened last week in what day of the week','Tuesday','Wednesday','Thursday','Friday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'World environmental day is on every','5th of June','1st of June','4th of June','3rd of June','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'ECOWAS is now how many years old','30','40','20','35','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many people died by Boko Haram since the inception of new government','over 20','over 50','30','50','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Ghana petrol station explosion happened on ','Monday','Tuesday','Wednesday','Friday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Which Nigeria artiste was nominated for Black Canadian award','Yemi Alade','Tu-face','Psquare','Asa','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'The new Nigeria elected nation assembly is the ','7th ','8th ','5th ','6th ','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'President Buhari is to participate in G7 summit when','Friday','Saturday','Sunday','Monday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'President Buhari attended what \\\"G\\\" summit','G8','G7','G16','G10','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'APC house of representative  speaker election was won by','Tinub','Gbajabiamila','Saraki','Dark Mark','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which state reinstate 480 sacked workers','Lagos','Yobe','Sokoto','Ogun','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which Sokoto local government area reinstate 480 sacked workers',' North ','South ','East','West','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many petrol tanker truck accident happened last week in Nigeria','1','2','3','4','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Some part of Afghanistan district was captured by','Boko Haram','Taliban','Islamic State','Islamic brother hood','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which country was affect by middle east respiratory syndrome (MERS)','North Korea','South Korea','China','Japan','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria state governor rode Okada(Motor bike) to state house of assembly inauguration','Lagos governor','Ogun governor','Ekiti governor','Rivers governor','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'About how many people where on board in China ship disaster','about 300','about 200','over 400','over 500','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country in Africa asked Nigeria to help in training of army and police','Sudan','Egypt','South Sudan','Angola','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Which company sue PDP for 70 million campaign debt','Silon Concepts Limited','AIT','Media Technologies','Waat Concepts','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'The UEFA championship was played in','England','Moscow','Berlin','Paris','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Sexual intercourse with children under 11 bill was pass into laws when','5th of June','3rd June','4th of June','1st June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'did President Buhari travelled to Chad last week','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'What day of the week  did President Buhari travelled to Niger last week','Monday','Tuesday','Wednesday','Thursday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'How many special advisers did the president presented to Nation assembly','3','10','15','12','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What is the name of governor of Kano state','Abdulia Ganduje','El Rfia','Hammed Musa','Atiku Abubaka','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' How many CBN staff was sent to prison by EFCC ','10','8','7','6','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'When did world economic forum took place last week','4th of June','3rd of June','5th of June','1stof June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Elected FIFA president resignation news broke out when last week','Monday','Tuesday','Wednesday','Friday','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Health  workers strike enters week ?.. Last week','2','4','1','3','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'The new coach of Real Madrid was assigned on','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Serena Williams wins??.. Grand slam','14','15','18','20','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Who is the third tennis player to win 20 grand slam ','Rafi Nadal','Serena Williams','Venus Williams','Joko','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'How many passenger escape death as Aero aircraft developers fault mid air','100','120','about 100','over 120','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The world oldest cat dies at','12','20','22','27','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What was the score between Nigeria and Hungry in under 20 world cup match','4-0','2-0','1-0','2-2','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Nigeria team is to face which team in the round second round of under 20 world cup','Brazil','Germany','Italy','USA','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'In woman world cup, Germany defeated Ivory coast by','10-0','4-0','7-0','2-0','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'Which team won the UEFA championship title last week','Barcelona','Juventus','Real Madrid','Chelsea','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `propolitic` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `prosport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `protechy` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Anonymous',\n  `question_id` mediumint(9) NOT NULL,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `message` text COLLATE utf8mb4_unicode_ci,\n  `type` enum('1','2','3','4','5','6','7') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `status` enum('0','1') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question` VALUES (1,'Anonymous',4,'english',NULL,'1','0','2018-08-31 10:33:36','2018-08-31 10:33:36'),(2,'Anonymous',2,'english','You got busted','5','0','2018-08-31 11:05:51','2018-08-31 11:05:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question_type` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,\n  `description` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question_type` VALUES (1,'Question','There is an error in question',NULL,NULL),(2,'Option A','There is an error with option a',NULL,NULL),(3,'Option B','There is an error with option b',NULL,NULL),(4,'Option C','There is an error with option c',NULL,NULL),(5,'Option D','There is an error with option d',NULL,NULL),(6,'Answer','Something is wrong with the answer',NULL,NULL),(7,'Solution','Something is wrong with the solution',NULL,NULL);\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `socialfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `socialfb` VALUES (1,'What year was \\'Africa Queen\\' music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track \\'African Queen\\' came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D\\'Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D\\'Banj  first album released?','2002','2005','2001','2004','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What is the full meaning of NEA','National Entertainment Awards','Nigerian Entertainment Awards','Nigerian Entertainment Award','National Entertainment Award','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Nigerian Entertainment Award (NEA) 2015 was held in','Lagos Nigeria','Abuja Nigeria','New York USA','London Britain','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who won the best Female act award in Nigerian Entertainment Award (NEA)  2015','Cynthia Morgan','Yemi Alade','Seyi Shay','Tiwa savage','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Who won the best Film Director of the Year (Indigenous Films) in Nigerian Entertainment Award (NEA)  2015','Kunle Afolayan','Alex Konstantaras','Olanrewaju Abiodun','Chiwetel Ejiofor','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Best Male act was given to ??.. in Nigerian Entertainment Award (NEA) 2015','Olamide','Davido','Wizkid','Shizzi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Best Rap act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Best Pop act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Best Afrobeat Act was given to ?. In Nigerian Entertainment Award (NEA)  2015','2face Idibia','Femi Kuti','Baba Fryo','Alariwo','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Olamide life in concert \\'Beast Mode \\'hold this year on','March 10 2015','December 27 2015','December 31 2015','March 21 2015','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Which of the following guest artiste will not feature in Olamide life concert 2015','Davido','D?Banji','Wizkid','Olamide','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'what is the full meaning of KADAMFEST','Kaduna Music Festival','Kano  Music Festival','Kaduna  Music Festivals','Kano Music Festivals','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What edition is Miss World 2015','60th','61th','62nd','63rd','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Which country hosted Miss World 2015 edition','China','Japan','Singapore','India','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'What is the date of Miss World 2015 pageant?','10-Dec-15','16-Dec-15','19-Dec-15','21-Dec-15','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' Which country won Miss World 2015 pageant?','China','South Africa','Spain','Norway','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Tiwa Savage is how old in 2015','28','30','35','32','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Which of this song was release by Wizkid in 2015','On top matter','Love my babe','Expensive shit','Mummy mi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Who was the most nominated artiste for Tooxclusive award 2015','Davido','Olamide','Di?ja','Korede bello','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'Who is the fourth highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'Who is the Second highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Who is the third highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Who is the highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'30 days in Alanta was released on','31-Oct-15','31-Oct-14','1-May-15','1-May-14','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is Miss Nollywood Queen 2015','Miss Gwendolyn Okutele','Miss Adebayo Kemi','Miss Basira Malla','Miss Obichi Emeka','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' Miss Nollywood Queen 2015 is from what state','Enugu','Delta','Ondo','Lagos','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'What is the name of Olamide ablum released in 2015','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' What is the full meaning of SMD','Super Michael Data','Supreme Mavin Dynasty','Shoki Makossa Dance','Simple Motion Dance','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Who started SMD?','Olamide','Davido','P-Square','Don Jazzy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' What is the name of Olamide ablum released in 2012','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the name of Olamide ablum release in 2014','Rapsodi','YBNL','Street OT','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'\\'Yemi my lover\\' is in which Olamide album','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'What is the full name of Phyno','Godfrey Nelson','Azubuike Chibuzo Nelson','Phillip Onome','Paul Nwoko Godfrey','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,' Which of this artiste is not a Glo ambassador','D?Banj','Peter and Paul Okoye (PSquare)','Tu Face ','Wande Coal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,'Which of the following artiste is not a airtel ambassador','Phyno','Tu Face','Wande Coal','Patoranking','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sport` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','Sir Ali Ferguson.','Alex Ferguson.','Sir Alex Ferguson','Sir Alex Fergson','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'How many rings are in the Olympic colours?','6','5','4','3','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sportfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sportfb` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','?Sir Ali Ferguson.','?Alex Ferguson.','?Sir Alex Ferguson','?Sir Alex Fergson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'How many rings are in the Olympic colours?','6','5','4','3','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'When was Jose Mourinho sacked by Chelsea in 2015','15-Dec','5-Dec','27-Dec','17-Dec','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which coach is regarded as the Special One','Pep Guardiola','Raphael Benitez','Jose  Mourinho','?Sir Alex Ferguson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Which club in Nigeria premier league has the longest winning run in 2015','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' Which club in Nigeria premier league has the longest unbeating run in','Warri Wolves FC','Kano Pillars FC','Enyimba FC','Shooting Star FC','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' The 2015 Nigeria Professional Football League was won by','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The 2015 Nigeria Professional Football League second place winner was','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What is the name of Nigeria second football division','National Division league','Nigeria Second division league','Nigeria National league','Second National league','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'which of the following 2015 Nigeria Professional Football League was relegated','El-Kanemi Warriors','Enugu Rangers','Kwara United?','Abia Warriors','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'which of the following 2015 Nigeria Professional Football League was not relegated','Kwara United?','Bayelsa United','Sharks','El-Kanemi Warriors','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Kano Pillars\\' 12-year undefeated streak at home came to an end in a 2-1 loss to','Nasarawa United','Wikki Tourists','Kwara United?','Enyimba FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is the president of Nigeria football federation?','Amaju Pinnick','Alhaji Ibrahim Galadim','Alh. Aminu Maigari','Alhaji Ibrahim Pinnick','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' What is the full meaning of NFF','Nigeria Football Federation','Nation Football Federation','Nigerian Football Federation','National Football Federation','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'Which of the following is not a bet company in Nigeria','Bea Bet','Naira Bet','Surebet247 ','Bet9ja','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' Which of the following is the first sport betting website in Nigeria','Surebet247','360bet','Bet365NAIJA','Naira Bet','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Leicester City F.C. is also known as ','Lei City','The Eagle','The Foxes','Blue team','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' Leicester City F.C. is also known as the following expect','The Foxes','The Blues','The City ','Blue Army','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'Who is the current hit man for Leicester City','Jamie Vardy','Wes Morgan','Danny Simpson','Eden Hazard','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'Who is the current highest goal scorer as of December 2015 in English Premier League','Wilfried Bony','Robin van Persie','Diafra Sakho','Jamie Vardy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'Who won the Ballon D?or cup 2015','Lionel Messi ','Neymar ','Cristiano Ronaldo','Robin van Persie','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n"
  },
  {
    "path": "storage/backups/2020-08-20.sql",
    "content": "/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `accounting` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=515 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `accounting` VALUES (1,'The bad debt account is closed by transferring the balance to ','credit of capital account  ','debit of profit  and loss  ','debit of the debtors personal account ','credit of profit and loss account ','','','b','','post-utme','2010',104,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(2,'A credit note from a supplier would first be entered in the ','purchase book  ','sales book  ','returns inward book  ','returns outward','','','a','','post-utme','2010',107,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(3,'Where a proprietor withdraws cash from the business for his private use, the entries would be ','credit cash account, debit proprietor\\'s account ','credit proprietor\\'s account, debit cash account ','credit proprietor\\'s account, debit   drawings   account    ','credit   cash account,  debit drawings account','','','d','','post-utme','2010',112,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(4,'Which   of the   following   is   a  long  term liability ','bank overdraft ','bank deposit ','good will ','debentures','','','d','','post-utme','2010',107,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(5,'Which of the following is a function of the sales journal ','it records both cash and credit sales ','it shows the balance in the sales account ','it record credit sales only ','it shows the aggregate balances in the debtors lodger','','','a','','post-utme','2010',122,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(6,'Which of the following is the most liquid ','stock ','debtors ','machinery ','loose tools','','','b','','post-utme','2010',101,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(7,'A debit balance on a bank statement indicates that ','bank is a debtor to the customer ','customer is a debtor to the bank ','bank is not a creditor to the customer ','customer is not a debtor to the bank','','','b','','post-utme','2010',112,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(8,'At the end of a trading period, wages will be  ','debited to trading account and shown as a current liability ','credited to profit and loss Account and shown as a current liability ','credited to trading account and shown as a current asset ','debited to profit and loss account and shown as a current liability','','','a','','post-utme','2010',109,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(9,'Which of the following is not an asset ','Goodwill ','General reserves ','Debtors ','Prepayments','','','b','','post-utme','2010',120,'','0000-00-00 00:00:00','2020-08-20 12:43:11'),(10,'A company\\'s profit and loss account for a period  is  prepared by ','deducting total expenses from total revenues ','deducting total cash payments from total revenue ','deducting  all  outflows  of funds  from  all inwards of funds ','balancing its receipts and payments','','','a','','post-utme','2010',111,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(11,'The journal is a book ','of primary entry into which all transactions are entered before posting ','kept by journalist for reporting events ','of prime entry into which postings are made from the ledger  ','of analyzing major accounts','','','a','','post-utme','2010',102,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(12,'The receipts and payments of a club is the same  as ','  Profit and   loss  account  ','Trading Account ','Cash book ','control Account','','','c','','post-utme','2010',100,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(13,'In a balance sheet, bank overdraft is ','Current Asset ','Fixed asset ','long term liability ','Current Liability','','','d','','post-utme','2010',111,'','0000-00-00 00:00:00','2020-08-20 11:09:20'),(14,'Money set aside for the saving of business overheads    is    referred    to   ','Capital Expenditure  ','Revenue  Expenditure ','Revenue receipts','','','','c','','post-utme','2010',122,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(15,'Money spent on buying of plots of land by a firm is ','Capital Expenditure ','capital receipts ','Revenue Expenditure',' Revenue Receipts','','','a','','post-utme','2010',116,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(16,'Prepaid expenses  is an  item  in ','Fixed Asset  ','  Current    Asset   ','Liabilities ','Long term liabilities ','','','b','','post-utme','2010',115,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(17,'Final accounts of (i) Cash book (ii) trading account  (iii) Profit and  loss account  (iv)Balance sheet  ','i only ','i and ii only','iii and iv only ','ii and iii  only','','','c','','post-utme','2010',105,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(18,'Trading account is prepared to ascertain ','Gross profit ','Net profit ','Gross profit or Gross loss ',' Net profit or net loss','','','c','','post-utme','2010',110,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(19,'A statement that shows the financial position of a business is ','profit and loss account  ','Trading Account ','Statement of income  ',' Balance sheet','','','d','','post-utme','2010',104,'','0000-00-00 00:00:00','2020-08-14 13:10:21'),(20,'  Prepaid wages is an item in the (i)Balance Sheet (ii) Profit and loss account (iii)Trading  account (iv) Cash account ','i, ii, iii only ','ii, iii  ','i, ii ','iii, iv','','','a','','post-utme','2010',122,'','0000-00-00 00:00:00','2020-08-14 13:11:58'),(21,'Partnership    is    a    business    owned and controlled by ','Two members ','two to ten members ','Two to twenty person  ','Two to five persons','','','c','','post-utme','2010',105,'','0000-00-00 00:00:00','2020-08-13 13:22:21'),(22,'If a   machine   cost   2000   naira   and its estimated   life   span   is   10   years   and its residual is 500 naira. The yearly value of depreciation  in  naira is ','250','180','150','130','','','c','','post-utme','2010',98,'','0000-00-00 00:00:00','2020-08-20 12:43:11'),(23,'Bad debt is also known as ','Unpaid debt','irrecoverable debt  ','Payment debt  ','current    debt','','','b','','post-utme','2010',104,'','0000-00-00 00:00:00','2020-08-17 20:51:13'),(24,'Bad debt is an item in ','Trading, profit and loss account  ','consignment account  ','Balance sheet ','Receipt and expenditure AC','','','a','','post-utme','2010',117,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(25,'The diary or events in which all financial transactions    are    recorded    for    easy reference and to assist in the double entry system is ','Ledger','Journal   ','Purchases and sales day books ','Debit and credit documents','','','a','','post-utme','2011',107,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(26,'Which of the following is not a book of original entry? ','Cash book  ','Purchases journal  ','Sales journal ','Ledger','','','d','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(27,'The test of arithmetical accuracy of all postings in the ledger is provided in the: ','Journal  ','Day book  ','Cash book  ','Trial balance','','','d','','post-utme','2011',121,'','0000-00-00 00:00:00','2020-08-17 20:51:13'),(28,'Errors   revealed   by   the   trial   balance include error of:  ','Principle  ','Single entry ','Omission  ','commission ','','','b','','post-utme','2011',110,'','0000-00-00 00:00:00','2020-08-20 11:09:20'),(29,'Accounting equation is given by  ','Assets - Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owner\\'s Equity = Liabilities ','Assets = Liabilities + Owner\\'s Equity','','','d','','post-utme','2011',96,'','0000-00-00 00:00:00','2020-08-20 12:43:11'),(30,'Which of the following is not a current asset?  ','Stock  ','Debtors  ','Creditors ','Cash','','','c','','post-utme','2011',125,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(31,'Final accounts of a company refers to: ','Trading and profit and loss account  ','Profit and loss account and balance sheet  ','Trading account and balance sheet  ','Trading , profit and loss account and balance sheet','','','d','','post-utme','2011',92,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(32,'A cheque which has been sent but has yet gone through the bank account of the receiver of it is known as:','Dishonoured cheque','Unpresented cheque ','Uncredited cheque','Unhonoured cheque','','','b','','post-utme','2011',110,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(33,'Which of the following does not appear in a bank statement?   ','Uncredited cheque ','Bank charges ','Dishonoured cheque ',' Dividend   received   on    behalf   of customer','','','d','','post-utme','2011',106,'','0000-00-00 00:00:00','2020-08-18 12:34:15'),(34,'Where a correct amount is entered, but in the wrong person\\'s account, is an error of  ','Principle  ',' Omission','Commission','Compensation','','','c','','post-utme','2011',104,'','0000-00-00 00:00:00','2020-07-23 16:34:11'),(35,'A credit balance of N350,000 in a cash account shows that  ','N350.000 was the total cash received  ','N350,000 was the total cash paid out  ','Cash at hand equals N350,000 ','N350,000 was the cash overspent','','','d','','post-utme','2011',114,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(36,'Which   accounting  concept  states; that revenues and expenses are recognized as they are earned or incurred and not when  money is received?','Entity   ','Realization','Accrual  ','Periodicity','','','c','','post-utme','2011',113,'','0000-00-00 00:00:00','2020-08-12 18:46:26'),(37,'Which of the following is not a business asset?','Deposit account in bank','Interest due on loan','Five acres of land','Library books owned by a lawyer ','','','b','','post-utme','2011',106,'','0000-00-00 00:00:00','2020-08-20 11:09:20'),(38,'Prime cost is','Direct cost of production','Cost of raw materials consume:','Cost of raw materials purchase-:','Indirect cost of production','','','a','','post-utme','2011',106,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(39,'Subscription   received   in   respect of a future period is','Subscription deposit','Subscription in advance','Accrued subscription','Subscription in arrears','','','b','','post-utme','2011',124,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(40,'The petty cash book kept on imprest system should have','A credit balance only','A debit or nil balance','A debit balance only','Both debit and credit balance;','','','c','','post-utme','2011',103,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(41,'Wilson Company owns land which cost 14100, 000. If a \\\"quick sate\\\" of the land was necessary to generate cash, the company feels it would receive only N80, 000.    The company continues to report the asset on the balance sheet at N100, 000   This is justified under which of the following concepts?  ','The historical-cost principle.','The value is tied to objective and verifiable past transactions.','Neither of the above.',' Both \\\"a\\\" and \\\"b\\\"','','','a','','post-utme','2012',110,'','0000-00-00 00:00:00','2020-08-20 12:43:11'),(42,'Retained earnings will change over time because of several factors.  Which of the following factors would explain an increase in retained earning?','Net loss ','Net income,','Dividends ','investment by stakeholders.','','','b','','post-utme','2012',124,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(43,'Which of the following would not be included in a balance sheet?','Accounts receivable','Accounts payable  ','Sales','Cash','','','c','','post-utme','2012',103,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(44,'A company provided the following information about its balance sheet: Cash N100 Accounts receivable N500 Stockholders\\' equity 14700 Account payable N200 Bank loans Nl000 Based on the information provided, how much are Remington\\'s liabilities?','N200   ','N900   ','N 1,200   ','N 1,700','','','c','','post-utme','2012',108,'','0000-00-00 00:00:00','2020-08-12 19:17:07'),(45,'A complete set of financial statements for Hartman Company, at December 31, 1999, would include each of the following except:','Balance sheet as of December 31,1999 ','Income   statement   for   the   year   ended December 31, 1999.','Statement of projected cash flows for 2000  ','Notes containing additional information that is useful interpreting the financial statements.','','','c','','post-utme','2012',104,'','0000-00-00 00:00:00','2020-08-12 19:14:31'),(46,'If the equipment account has a balance of N22.500 and its accumulated account has a balance of N14,000 the book value of the equipment is:  ','N22.500   ','N8.500 ','N 14,000  ','N36.500','','','b','','post-utme','2012',115,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(47,'The balance unearned rent account for Jones Co. as at 31st Dec. is 1,200. If Jones Co tailed to record the adjusting entry for 600 of rent earned during December, the effect on the balance sheet and income statement','for December is:',' Liabilities   overstated—N60Q:   c:et income overstate d 44600',' Liabilities   understated   £4500:   net income  understated N600','Asset    understated—N600:     net    income  overstated N600',' Liabilities   overstated   N600:    net income understated N600','','d','','post-utme','2012',107,'','0000-00-00 00:00:00','2020-08-20 11:09:20'),(48,'If goods purchased on account is returned, the buyer may inform the seller of the details by issuing:','An invoice  ','A debt memorandum','A credit memorandum  ',' A bill','','','c','','post-utme','2012',107,'','0000-00-00 00:00:00','2020-08-12 10:18:19'),(49,'Which of the following entries classes the  owner\\'s drawing account at the end of the period?','Debit the drawing account, credit the owner\\'s capital account','Debit the income summary account credit the drawing account','Debit   the   drawing account credit income summary accounting','Debit the owner\\'s capital account, credit the drawing account','','','d','','post-utme','2012',102,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(50,'At the end the fiscal year, account receivable has a balance of 100,000 and allowance for doubtful account has a balance of 7,000. The expected that realized value of the  receivable is: account','N 107,000','N100,000','c. N93,000','N 147,000','','','c','','post-utme','2012',119,'','0000-00-00 00:00:00','2020-08-20 12:43:11'),(51,'Which of the following accounts would be classified as a current on the balance sheet?','Office Equipment','Accumulated Depreciation','Land','Accounts receivable','','','d','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-08-17 20:51:13'),(52,'A petty cash fund is:','Used to pay relatively small amount','reimbursed when the amount of money in the fund is reduced to a predetermined minimum amount','Established by estimating the amount of cash needed for disbursement of  relatively small amount during a specified period  ','All of the above','','','d','','post-utme','2012',97,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(53,'A debit may signify: ','an increase in the owner\\'s capital amount','an increase in a liability account','a decrease in an asset account','an increase in an asset account','','','d','','post-utme','2012',115,'','0000-00-00 00:00:00','2020-08-20 11:09:20'),(54,'The receipt of cash from customers in a payment of their account would recorded by a','Debit to account receivable; credit to cash ','b  Debit to cash credit to accounts receivable  ','Debit to cash, credit to accounts payable  ','Debit to account payable credit to cash','','','b','','post-utme','2012',114,'','0000-00-00 00:00:00','2020-08-18 12:34:15'),(55,'The essential amount of depreciation or equipment for a period is 2,000 the adjusting end to record depreciation would be','Debit depreciation expense, 2000, credit expense, 2,000','Debit equipment, 2,000; credit depreciation expense, 2,000','Debit accumulated depreciation, 2,000. credit depreciation expense 2,000    ','Debit depreciation expense, 2,000; credit accumulated depreciation 2,000.','','','d','','post-utme','2012',104,'','0000-00-00 00:00:00','2020-08-19 09:11:23'),(56,'Which of the following assets could be described as a current asset?','Stock of goods for resale','Machinery to manufacture goods for resale ',' Buildings to house the machinery','Land on which the buildings stand.','','','a','','post-utme','2012',112,'','0000-00-00 00:00:00','2020-08-14 13:03:11'),(57,'The purchase journal records:','invoices from creditors','Debtors\\' invoices','Cash payments to suppliers','Amounts owing to employees for wage;','','','a','','post-utme','2012',114,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(58,'If a business shows a debit balance in its own record of its bank balance, this indicates.','The business has a bank overdraft','The business is a debtor of the bank','The business has money in the bank','The ledger entry must be wrong.','','','a','','post-utme','2012',93,'','0000-00-00 00:00:00','2020-08-12 19:18:24'),(59,'If a business pays for only 11 months rent during a financial year, what accounting term is given to the outstanding term is given to the outstanding one month\\'s rent? Which of the following equations properly represents a derivation of the fundamental accounting equation?','Assets + liabilities = owner\\'s equity ','Assets = owner\\'s equity','Cash = assets.  ','Assets - liabilities = owner\\'s equity','','','d','','post-utme','2012',97,'','0000-00-00 00:00:00','2020-08-14 12:52:38'),(60,'A business shows total debtors\\' balances of N400,000 in its ledger at the end of its financial year. A customer owing N40,000 is bankrupt, and there is no possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor\\'s total will be included as a current asset in the balance sheet?','N400,000,   ','N352,800    ','N352,000.  ','N436,200 ','','','c','','post-utme','2012',91,'','0000-00-00 00:00:00','2020-08-18 12:34:15'),(61,'To arrive at the gross profit of a trading  business, which one of the following formulate is applied?','Sales - (Opening Stock-Purchases-Closing Stock)','Sales - (Opening stock + Purchases + Closing Stock)','Sales - (Opening stock + Purchases - Closing Stock)','Sales - (Opening stock - purchases + closing stock)','','','c','','post-utme','2012',109,'','0000-00-00 00:00:00','2020-08-20 11:09:20'),(62,' Which one of the following is not part of a company\\'s equity capital?','Ordinary shares','Preference shares','Voting Shares','Equity shares','','','c','','post-utme','2012',95,'','0000-00-00 00:00:00','2020-08-20 12:43:11'),(63,' An expenditure whose benefit is finished or enjoyed immediately is called: ','Expense   ','Liability ','Cost ','Income','','','a','','post-utme','2012',113,'','0000-00-00 00:00:00','2020-08-13 12:53:42'),(64,'Where no partnership agreements exist, a partner who puts a sum of money into a firm in excess of the capital he has agreed to subscribe is entitled to interest rate per annum on such money ','15%','10%','5%','2%','','','c','','post-utme','2013',107,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(65,'MORADE had total assets of N760,000, capital stock of N150,000 and retained earnings of N215,000. What was Morade\\'s debt-to-equity ratio? ','2.63','1.08','0.52','0.48','','','b','','post-utme','2013',100,'','0000-00-00 00:00:00','2020-08-14 13:03:11'),(66,'9.   Which   of   the   following   is   a   correct expression of the accounting equation? ','Assets = Liabilities + Owner\\'s Equity ','Assets = Liabilities - Owner\\'s Equity ','Assets + Owners\\' Equity = Liabilities ','Assets = Liabilities - Owner\\'s Equity','','','a','','post-utme','2013',104,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(67,'Which of these items would be accounted for as an expense? ','repayment of a bank loan ','dividends to stockholders ','the purchase of land ','payment of the current period\\'s rent','','','d','','post-utme','2013',112,'','0000-00-00 00:00:00','2020-08-19 09:11:24'),(68,'At the end the fiscal year, account receivable has a balance of Nl00,000 and allowance for  doubtful   account  has a balance   of N7,000. The expected net realized value of the account receivable is: ','Nl07,000 ','N100,000 ','N93,000 ','N7,000 ','','','c','','post-utme','2013',114,'','0000-00-00 00:00:00','2020-08-12 18:46:26'),(69,'A debit balance of Nl50,000 in a cash account   shows   that   ','  cash  has   been overspent   by   N150,000   ','  there   was N150,000 cash in hand ',' the total of cash received   was   less   than   N150,000   ','N150,000 was the total of cash paid out. ','','','b','','post-utme','2013',99,'','0000-00-00 00:00:00','2020-08-13 12:56:11'),(70,'Posting  the  transactions   in bookkeeping means ','making the first entry of a double entry transaction ','entering items in a cash book ','making the second  entry of a double entry transaction ','something other than the above.','','','a','','post-utme','2013',115,'','0000-00-00 00:00:00','2020-08-12 18:46:26'),(71,' On December 31, 2012, Infinite Grace had a note payable due on August 1, 2013. On January 20, 2013, Infinite Grace signed a financing agreement to borrow the balance of the note payable from a lending institution to refinance the note. The agreement does not expire within one year, and no violation of any provision in the financing agreement exists. On  February 1, 2013. Infinite Grace was informed by its financial advisor that the lender is not expected to be financially capable of honouring the agreement. Infinite Grace\\'s financial statements were issued on March 31, 2013. How should Infinite Grace classify the note on its balance sheet at December 31,2012? ','as a current liability because the financing agreement was signed after the balance sheet datecapable of honouring the agreement   ','as a current liability because the leader is not expected to be financially ',' as   a   long-term   liability because  the agreement  does   not  expire within one year ',' as a long-term liability because no violation of any provision in the financing agreement exists.','','','c','','post-utme','2013',107,'','0000-00-00 00:00:00','2020-08-13 20:41:29'),(72,'A business shows total debtors\\' balance of N400,000 in its ledger at the end of its financial customer owing N40,00 are bankrupt, and there is no  possibility of getting the debt paid. A further 2% of the debt is considered doubtful. What debtor’ total will be included as a current asset in the balance sheet? ','N400,000  ','N352,800  ','N352, 000  ','N36, 200','','','b','','post-utme','2013',104,'','0000-00-00 00:00:00','2020-08-20 11:09:20'),(73,'Companies and  Allied  Matters  Act. 1990 requires  every  company   to  keep  certain statutory books. Which of the following is not part of the statutory books to be kept by the company? ','register of directors and secretaries ','a register of charges (fixed and floating) ','minutes books of meetings of the company and meetings of its directors ','a register of companies in the same line of business','','','d','','post-utme','2013',97,'','0000-00-00 00:00:00','2020-08-12 18:46:26'),(74,'The    main    objective   of   the   financial statements is to ','provide a true and fair- view of the financial position of the business ','help managers take correct decisions ','show every transaction affects two items in the  balance sheet ','help owners of a business to plan for the future.','','','a','','post-utme','2013',91,'','0000-00-00 00:00:00','2020-07-30 16:49:44'),(75,' Impersonal accounts contain ','capital and cash account ','nominal account and real account ',' real and cash account ','capital and real act minis ','','','b','','post-utme','2013',90,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(76,'One of (he following errors will affect the agreement of the trial balance ','error of omission ','trial balance error ','principle error ','error of original entry','','','b','','post-utme','2013',148,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(77,'Which of the following is a fictitious asset? ','prepayments ','preliminary expenses ','investment ','plant and machinery ','','','b','','post-utme','2013',92,'','0000-00-00 00:00:00','2020-08-19 09:11:25'),(78,'  Which of the following is not part of the main uses of the journal ',' purchase and sale   of   fixed   assets   on  credit   ','the  correction of errors ','writing off bad debts ','none of the above','','','d','','post-utme','2013',94,'','0000-00-00 00:00:00','2020-08-20 11:09:20'),(79,'…………………checks the arithmetical accuracy of double entry accounts ','trading account ','profit and loss account ','balance sheet ','trial lance','','','d','','post-utme','2013',108,'','0000-00-00 00:00:00','2020-08-12 19:15:53'),(80,'The distinguishing feature between a two-column and three-columncash book is','discount column','cash column','bank column','ledger folio','','','a','','wassce','2013',106,'Admin','2016-11-15 20:31:29','2020-08-12 19:17:07'),(81,'The lodgment of business cash into the business bank account is an example of','contra entry','bank reconciliation','self balancing ledger','reversal entry','','','b','','wassce','2013',132,'Admin','2016-11-15 20:31:30','2020-08-14 13:03:11'),(82,'credit balance is','a liability or an expense.','a liability or an income.','an expenditure or an income.','an asset or an expense.','','','b','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-08-13 12:56:11'),(83,'Which of the following is not a characteristic of a Trial Balance?','It has columns for debit and credit balances','Total of debit balance equals total of credit balance','It is a statement','It is an account','','','d','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-08-07 11:02:55'),(84,'The capital of a sole trader changes as a result of','paying wages by cash.','equipment purchased by cheque.','drawings by cheque.','purchases on credit.','','','c','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-08-13 12:56:22'),(85,'The order of financial accounting process involves: (I) recording; (II) presenting; (III) collecting; (IV) analyzing.','I, II. Ill and IV','II, III, I and IV','Ill, I, II and IV','IV, III, II and I','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:21'),(86,'A dishonoured cheque is','debited in the cash book.','credited in the cash book.','double entry in the cash book.','credited in the bank book.','','','c','','wassce','2013',95,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:22'),(87,'A petty cashier received a float of GHc 120 and spent GHc 84. The imprest is','GHc 204.','GHc 120.','GHc 84.','GHc 36.','','','d','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-08-14 13:03:11'),(88,'Which of the following is not a book of original entry?','Cash Book','Purchases Ledger','Returns Outwards Journal','General Journal','','','b','','wassce','2013',85,'Admin','2016-11-15 20:31:30','2020-08-12 18:46:05'),(89,'The current ratio is','1.87 : 1.','1 : 1.87.','1 : 2.','2 : 1.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',109,'Admin','2016-11-15 20:31:30','2020-08-13 12:59:35'),(90,'The capital employed is','N=740,000.','N=580,000.','N=370,000.','N=280,000.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','c','','wassce','2013',105,'Admin','2016-11-15 20:31:30','2020-08-05 15:32:18'),(91,'The returns on capital employed is','17.2%','16.2%.','15.2%.','11.2%.','Use the following information to answer question. Net profit [ 60,000], Total Assets [ 520,000], Current liabilities [ 150,000], Current assets[ 280,000] ','','a','','wassce','2013',85,'Admin','2016-11-15 20:31:30','2020-08-12 19:17:31'),(92,'The double entry principle states that','every debit entry must have a corresponding credit entry','every credit entry must have a corresponding double entry','every debit entry must have a corresponding double entry','every asset must have a corresponding liability.','','','a','','wassce','2013',101,'Admin','2016-11-15 20:31:30','2020-07-14 13:23:31'),(93,'Which of the following is a nominal account?','Machinery Account','Drawings Account','Debtors Account','Wages Account','','','d','','wassce','2013',111,'Admin','2016-11-15 20:31:30','2020-08-13 12:56:22'),(94,'Reserves account is kept in the','private ledger.','creditors ledger.','nominal ledger.','debtors ledger.','','','c','','wassce','2013',99,'Admin','2016-11-15 20:31:30','2020-08-17 20:51:13'),(95,'An advantage of control account is','locating figures.','adding figures.','changing figures.','locating errors.','','','d','','wassce','2013',105,'Admin','2016-11-15 20:31:30','2020-08-20 11:09:20'),(96,'The accumulated fund of a not-for-profit making organization is','a fixed asset.','a current asset.','a liability.','capital.','','','d','','wassce','2013',98,'Admin','2016-11-15 20:31:30','2020-08-12 10:18:19'),(97,'A business is treated as being separate from the owners. This statement is emphasized by','consistency concept.','realization concept.','going concern concept.','business entity concept.','','','d','','wassce','2013',102,'Admin','2016-11-15 20:31:30','2020-08-20 11:09:20'),(98,'Which of the following is recorded on the debit side of the Trial Balance?','Bank overdraft','Returns outwards','Purchases','Capital','','','c','','wassce','2013',102,'Admin','2016-11-15 20:31:30','2020-08-20 11:09:20'),(99,'Which of the following is determined in the Trading Account?','Factory overheads','Cost of goods sold','Prime cost','Net profit','','','b','','wassce','2013',109,'Admin','2016-11-15 20:31:31','2020-08-20 11:09:20'),(100,'Cash receipts and payments involving discounts are entered in','three-column cash book.','two-column cash book.','analytical cash book.','petty cash book.','','','a','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-08-13 12:56:22'),(101,'The minimum number of persons required to form a partnership business is','2.','3.','5','10.','','','a','','wassce','2013',89,'Admin','2016-11-15 20:31:31','2020-08-12 19:15:27'),(102,'Which of the following accounts has a credit balance?','Returns Inwards Account','Machinery Account','Sales Account','Cash Account','','','c','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-08-12 18:45:25'),(103,'The accounting principle that states that, in the preparation of accounting statement, revenue are recognized as        soon as goods are passed on to the customer is the','materiality concept.','matching concept.','consistency concept.','realization concept.','','','d','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-08-12 18:46:05'),(104,'Agreement between partners is contained in the Partnership','Act.','Deed.','Accord','Deal.','','','b','','wassce','2013',113,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:43'),(105,'A low current ratio in a business indicates that the business is','faced with long term loan repayment problem.','efficient in the utilization of its resources.','unable to pay its bills on time.','growing its net asset effectively.','','','c','','wassce','2013',130,'Admin','2016-11-15 20:31:31','2020-08-14 13:24:24'),(106,'Which of the following is a recurrent expenditure in public sector accounting?','Purchase of vehicles','Purchase of drugs','Construction of boreholes','Construction of buildings','','','b','','wassce','2013',99,'Admin','2016-11-15 20:31:31','2020-08-20 12:43:11'),(107,'In departmental accounts, administrative expenses are recorded in the','Trading Account.','Balance Sheet.','Profit and Loss Account.','Profit and Loss Appropriation Account.','','','c','','wassce','2013',106,'Admin','2016-11-15 20:31:31','2020-08-20 12:43:11'),(108,'The Public Accounts Committee is an organ of','military regime.','parliament.','presidency.','councilors.','','','b','','wassce','2013',104,'Admin','2016-11-15 20:31:31','2020-08-20 12:43:11'),(109,'The balance at the end of the period is',' 270,000.','139,000.','131,000.','120,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','c','','wassce','2013',89,'Admin','2016-11-15 20:31:31','2020-07-14 13:23:59'),(110,'The total expenditure for the period is','319,000.','270,000','139,000.','109,000.','Aminn local Government prepared its receipts and payments account from the following: Fines [ 20,000 ] Market rates [120,000], Salaries [ 60,000] Maintenance of vehicles [49,000 ], Park collections [ 100,000]','','d','','wassce','2013',96,'Admin','2016-11-15 20:31:31','2020-08-13 12:48:17'),(111,'Which of the following is not an item on the credit side of the purchases ledger control account?','Cash received','Cash payment','Contra settlement','Cheque payment','','','a','','wassce','2013',97,'Admin','2016-11-15 20:31:31','2020-08-12 19:16:36'),(112,'When a business is purchased from a sole trader, the excess of the purchase price over the net assets is','reserve.','goodwill.','freehold.','valuation price.','','','b','','wassce','2013',100,'Admin','2016-11-15 20:31:31','2020-08-20 12:43:11'),(113,'A set of instructions or programs which controls the operation of a computer is','software.','hardware.','monitor.','keyboard.','','','a','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-08-05 15:32:18'),(114,'The process of detecting, tracing and eliminating errors in a computer program is','reproduction.','debugging.','sorting.','retrieving.','','','b','','wassce','2013',102,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:04'),(115,'In a not-for-profit making organization, the cash book is referred to as','income and expenditure account.','receipts and payments account.','two column cash book.','petty cash book.','','','b','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-07-14 13:24:05'),(116,'When the going concern concept is no longer applicable, the fixed assets are recorded at their','net book value.','realizable value.','gross value.','revalued amount.','','','b','','wassce','2013',110,'Admin','2016-11-15 20:31:31','2020-08-20 12:43:11'),(117,'The cost of raw materials consumed is','GHc 58,000.','GHc 52,500.','GHc 52,000.','GHc 50,000.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','b','','wassce','2013',107,'Admin','2016-11-15 20:31:31','2020-08-14 10:59:38'),(118,'The prime cost is','GHc 64,500.','GHc 64,000.','GHc 58,500.','GHc 52,500.','Use the following information to answer question:  Stock of raw materials 1/1/09  [ 5,000 ], Stock of raw materials 31/12/09   [ 5,500], Purchase of raw materials [ 50,000], Carriage inwards [3,000], Direct labour [ 12,000], Factory overhead [17,500]','','a','','wassce','2013',114,'Admin','2016-11-15 20:31:31','2020-08-14 13:11:58'),(119,'Which of the following relates to the essence of partnership? To','run a charity organization.','pursue a social objective.','form a business for profit.','run a religious objective.','','','c','','wassce','2013',94,'Admin','2016-11-15 20:31:31','2020-08-12 19:17:07'),(120,'The basic assumption which underlines the preparation of periodic financial statement is known as accounting','bases.','techniques.','concepts.','method.','','','a','','wassce','2013',116,'Admin','2016-11-15 20:31:31','2020-08-12 19:14:31'),(121,'Upon the dissolution of a partnership business, the party to be settled first out of the proceeds realized is','unsecured creditors.','partners’ loan and advances.','secured creditors.','partners’ capital.','','','c','','wassce','2013',82,'Admin','2016-11-15 20:31:31','2020-08-13 12:53:42'),(122,'Stock account is a type of','nominal account.','personal account.','real account.','fixed assets account.','','','c','','wassce','2013',101,'Admin','2016-11-15 20:31:31','2020-08-20 12:43:11'),(123,'At the end of a trading period, cost of goods sold is debited to the trading account while cost of services is        debited to the','balance sheet.','manufacturing account.','trading account.','profit and loss account.','','','d','','wassce','2013',107,'Admin','2016-11-15 20:31:31','2020-08-18 12:34:15'),(124,'Which of the following is not part of prime costof production?','Depreciation of factory equipment','Direct expenses','Direct wages','Carriage on raw materials','','','a','','wassce','2013',95,'Admin','2016-11-15 20:31:31','2020-08-12 19:17:31'),(125,'Excess of current assets over current liabilities is','deferred capital.','nominal capital.','working capital','authorized capital.','','','c','','wassce','2013',86,'Admin','2016-11-15 20:31:31','2020-08-13 12:56:22'),(126,'A statement showing a trader’s financial position as at a particular date is a/an','trading account.','profit and loss account.','balance sheet.','appropriation account.','','','c','','wassce','2013',116,'Admin','2016-11-15 20:31:31','2020-08-18 12:34:15'),(127,'A trading account is prepared to disclose the','net profit or loss for the year.','gross profit or loss for the year.','accumulated fund for the year.','gross profit on manufacturing.','','','b','','wassce','2013',104,'Admin','2016-11-15 20:31:31','2020-08-12 12:01:09'),(128,'Balance as per cash book 2, 970  Bank Charges 220 ;Unpresented cheques 3, 950; Uncredited cheques 4,178 ; Direct debit by bank 1, 000 . Determine  the balance as per bank Statement','N1,978','N1,962','N1,522','N2,522','','','d','','utme','2016',99,'Admin','2016-11-16 07:48:40','2020-08-14 13:03:11'),(129,'The records of Superstores shows a loan of  N14,000 from Bala, creditor N8, 000 and assets N190, 500. What is the firm’s capital?','184, 000','1 96, 500','212 000','168, 500','','','d','','utme','2016',102,'Admin','2016-11-16 07:48:41','2020-08-05 15:32:18'),(130,'The major advantage of the journal proper is that it','helps in the preparation of the balance sheet','prevents fraud and theft of item of the business','serves as a book of instruction to the bookkeeper','helps the banking industry to be efficient.','','','b','','utme','2016',92,'Admin','2016-11-16 07:48:41','2020-07-23 10:49:59'),(131,'One of the objectives of accounting is that it can be used for','business decision making','due process in business','motivating employees','determining the work force.','','','a','','utme','2016',93,'Admin','2016-11-16 07:48:41','2020-08-14 13:03:11'),(132,'The ratio that gives the indication of the efficiency of a firm’s sales with respect to cost of goods sold is a','return on capital employed','gross profit margin','net profit margin','return on equity.','','','b','','utme','2016',110,'Admin','2016-11-16 07:48:41','2020-08-13 12:56:22'),(133,'The instrument used in analysis and interpretation of financial statement is the','accounting ratios','income and expenditure extract','balance sheet extract','fund accounting.','','','a','','utme','2016',96,'Admin','2016-11-16 07:48:41','2020-07-30 16:49:44'),(134,'An item in the balance sheet of a limited liability company is','accrued expenses','lighting and heating','salaries and wages','general expenses.','','','a','','utme','2016',106,'Admin','2016-11-16 07:48:41','2020-08-14 13:03:11'),(135,'The documents that provide instant information to firms on their transactions with banks are','bank statement and debit note','cheque stub and deposit slip','cheque book and cashbook','payslip and credit invoice.','','','a','','utme','2016',95,'Admin','2016-11-16 07:48:41','2020-08-17 20:51:13'),(136,'Which of the following is the capital reserve of a company?','Accumulated depreciation.','Retained profit.','Share premium','Loss on forfeited shares','','','b','','utme','2016',102,'Admin','2016-11-16 07:48:41','2020-08-14 13:03:11'),(137,'The effect of overstating-revenue expenditure in the profit and loss account is that the','opening stock will be increased','net profit will be understated','net profit will be overstated','opening stock will be decreased','','','b','','utme','2016',95,'Admin','2016-11-16 07:48:41','2020-08-14 13:11:58'),(138,'Which of the following conditions would attract credit and debit notes to be used?','When goods are received from supplier.','When a trial balance is extracted','When a buyer is under or over charged.','When goods are sold to a buyer.','','','c','','utme','2016',117,'Admin','2016-11-16 07:48:41','2020-08-13 12:48:17'),(139,'Given:  Drawings [3,500]; Net loss [2, 500]; Capital 1.1.2007 [35, 000], Additional capital [10, 000]. The adjusted capital as at 31 : 12 : 2007 is','N45, 000','N39,000','N35, 000','N46, 000','','','d','','utme','2016',85,'Admin','2016-11-16 07:48:41','2020-07-14 13:24:27'),(140,'A receipt is an evidence of','payments','stocking','delivery','discounts.','','','a','','utme','2016',97,'Admin','2016-11-16 07:48:41','2020-08-14 10:57:16'),(141,'An organization which has records of only personal accounts is said to be operating on the basis of','single entry','real accounts','double entry','nominal accounts','','','a','','utme','2016',121,'Admin','2016-11-16 07:48:41','2020-08-12 18:45:25'),(142,'A proprietor started business with N13, 000.  Assets and liabilities at the end of the year; fixed assets N8, 800, stock N2, 600, debtors  N1 , 000, cash N3, 000 and creditors N1 , 000. Determine the profit for the year?','N2, 400','N3, 000','N9, 800','N 1 , 400','','','d','','utme','2016',94,'Admin','2016-11-16 07:48:41','2020-08-13 12:59:35'),(143,'Badge Plc issued 450, 000 ordinary shares, of 50K each at N1 .50 per share. Application and allotment 45k, 1st call 50k, 2nd call 55k. Determine the amount received on final call.','N225, 000','N236, 250','N 247, 500','N 202, 500','','','c','','utme','2016',113,'Admin','2016-11-16 07:48:41','2020-08-20 12:43:11'),(144,'When goods are sent to the branch at cost plus mark­up, it means that the branch should sell at','a price above or below the stipulated price','any price but not below the transfer price','cost price','a price that is equal to the mark-up.','','','a','','utme','2016',84,'Admin','2016-11-16 07:48:41','2020-07-22 21:43:51'),(145,'The income and expenditure account differs from receipts and payments account because it','accounts for notional charges','records transactions that relate to the period on cash basis','records transactions that relate to the period  on accrual basis','accounts for balance of cash at bank.','','','b','','utme','2016',107,'Admin','2016-11-16 07:48:41','2020-08-20 12:43:11'),(146,'The major sources of revenue for the state and local governments is','value added tax','statutory allocation','taxes and levies','recurrent revenue.','','','b','','utme','2016',103,'Admin','2016-11-16 07:48:41','2020-08-12 19:15:27'),(147,'Which of the following -is -correct about the imprest system?','II and IV','I, III and IV','I, II and III','III and IV','I.   The amount of the imprest is the same from one organization to another. II. At the end of a fixed period, the petty cashier received a fixed sum of money.  III.  At the end of a period, the petty-cashier is reimbursed, with the amount spent in that period. IV. The system is a method by which a measure  of control is kept on petty cash expenses','','c','','utme','2016',110,'Admin','2016-11-16 07:48:41','2020-08-12 19:16:36'),(148,'When the fixed capital method is used, the partners share of profits and remunerations are credited to the','current account.','profit and Loss account.','profit and loss appropriation account.','capital account.','','','d','','utme','2016',112,'Admin','2016-11-16 07:48:41','2020-08-12 19:18:09'),(149,'A discount that is allowed to encourage a debtor to pay off his debt within a period is the','trade discount','annual discount','periodic discount','cash discount.','','','d','','utme','2016',117,'Admin','2016-11-16 07:48:41','2020-08-12 19:17:31'),(150,'The costs of acquiring fixed assets and bringing them into the firm is a','general expenses','recurrent expenditure','revenue expenditure','capital expenditure.','','','d','','utme','2016',109,'Admin','2016-11-16 07:48:41','2020-08-14 12:52:38'),(151,'The impersonal account is subdivided into','realand nominal accounts','nominal and personal accounts','real and current accounts','personal and real accounts.','','','a','','utme','2016',103,'Admin','2016-11-16 07:48:41','2020-08-13 12:56:11'),(152,'Opening balance of Diksacompany was 12, 202, closing balance N15,300, total cash received during the period N40, 000. What was the amount of cash paid during the same period?','N36. 902','N27,502','N12,498','N43.098','','','c','','utme','2016',112,'Admin','2016-11-16 07:48:42','2020-08-12 18:46:26'),(153,'The total cash and cheques received from customers in a control account is derived from the','income and expenditure account','cashbook','purchases day book','sales journal','','','d','','utme','2016',99,'Admin','2016-11-16 07:48:42','2020-08-12 19:16:36'),(154,'Which of the followings is a credit item in creditors ledger control account?','Returns outwards.','Discount Received.','Bad debts.','Purchases.','','','d','','utme','2016',127,'Admin','2016-11-16 07:48:42','2020-08-12 19:17:31'),(155,'The trader’s capital in a single entry system is ascertained by preparing','gross profit','statement of affairs','suspense account','appropriation account','','','b','','utme','2016',104,'Admin','2016-11-16 07:48:42','2020-08-17 20:51:13'),(156,'From the information above, sources of income for a Not-for-profit making organization include','I, III, IV','I, II, III','I, II, IV','I and IV','I.   Members subscription II.  Fines  from members  III. Donation  IV.  Loan from bank','','b','','utme','2016',98,'Admin','2016-11-16 07:48:42','2020-08-13 12:56:11'),(157,'Clifford pays rent of  N200 per month for premises. He paid N 2,800 within the year, Compute the prepayment.','N300','N400','N660','N200','','','b','','utme','2016',113,'Admin','2016-11-16 07:48:42','2020-08-14 13:10:21'),(158,'Purchases can be ascertained through the preparation of a','stock account','sales account','total debtors’ control account','total creditors, control account','','','d','','utme','2016',92,'Admin','2016-11-16 07:48:42','2020-08-14 10:57:35'),(159,'When stock is withdrawn, for personal use, the accounting entries is to debit','stock account, credit drawings','drawing account credit stock account','personal account credit cash account','cash account, credit personal account.','','','b','','utme','2016',165,'Admin','2016-11-16 07:48:42','2020-08-08 18:22:13'),(160,'Sundry debtors in the balance sheet of Onoja Bakery and Sons totaled N800,000. A provision of 2% was made for discount and 5% provision for bad and doubtful debts.  Find the amount for sundry debtors after provision.','N744,800','N 760,000','N784, 000','N744, 000','','','d','','utme','2016',95,'Admin','2016-11-16 07:48:42','2020-08-12 10:18:19'),(161,'Which of the following is accounted for in receipts and payments account?','Accrued expenses on annual dances','Subscriptions due but not yet received','Interest on bank deposit','Depreciation of the club house.','','','c','','utme','2016',96,'Admin','2016-11-16 07:48:42','2020-08-20 11:09:20'),(162,'When the purchase Consideration is lower than the net asset, the buyer has gained the advantage of','capital reserve','revenue reserve','net-income','net loss','','','a','','utme','2016',87,'Admin','2016-11-16 07:48:42','2020-08-14 12:52:51'),(163,'An increase in government expenditure within a year is taken care of by means of','virement','financial regulations','supplementary estimate','warrant.','','','b','','utme','2016',102,'Admin','2016-11-16 07:48:42','2020-08-14 13:03:11'),(164,'A business organization prepares departmental account in order to','ascertain the contribution of each department to the organization','ascertain interdepartmental transfer','build other branches','know the number of departments in the organization.','','','a','','utme','2016',95,'Admin','2016-11-16 07:48:42','2020-08-05 15:32:18'),(165,'The objective of departmental account is to','ascertain the amount of profits or losses for the enterprise','ascertain the amount of profits or losses for each department','ascertain the cost of running the organization.','offset the loss of each department.','','','b','','utme','2016',110,'Admin','2016-11-16 07:48:42','2020-08-12 18:45:25'),(166,'Which of the following expenses relate to the profit and loss account of a manufacturing firm?','Administrative overhead.','Direct labour','Direct materials.','Work-in-progress.','','','a','','utme','2016',104,'Admin','2016-11-16 07:48:42','2020-08-07 11:02:55'),(167,'The difference between book keeping and accounting is that while','book keeping interprets data accounting records it','book keeping is regarded as  the language of the business, accounting ascertains its .strength and weakness','book keeping records data accounting interprets it','book keeping - summaries information, accounting communicates it.','','','c','','utme','2016',108,'Admin','2016-11-16 07:48:42','2020-08-14 13:11:58'),(168,'Alaka who owed Saka N15, 000, settled his deb  after- deducting cash discount of 10%. To record the discount in the book of Saka, debit','Saka’s account and credit discount received account','Alaka’s account and credit discount received account','discount received account andcredit Alaka’s account','discount allowed account and credit Alaka’s account.','','','a','','utme','2016',115,'Admin','2016-11-16 07:48:42','2020-08-14 13:24:24'),(169,'If the scrap value is now N15, 000, what will be the yearly depreciation using straight line method?','N11 000','N7, 000','N 4, 000','N24. 000','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','c','','utme','2016',105,'Admin','2016-11-16 07:48:42','2020-08-12 19:16:36'),(170,'The yearly depreciation using the straight line method would be','N5,200','N6,500','N8, 800','N4, 400','Use the information below to answer the question that follows. A machine bought for N 35,000 was estimated to have a life span of 5 years with a scrap value of N= 9, 000. ','','a','','utme','2016',103,'Admin','2016-11-16 07:48:42','2020-08-13 12:56:11'),(171,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N  5,000','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','c','','utme','2016',109,'Admin','2016-11-16 07:48:42','2020-08-18 12:34:15'),(172,'The market value of goods produced is','N30,500','N3, 600','N31,600','N31,620','Materials consumed  16,600;\tDirect cost 5,400; Factory rent 2,300; Factory  lighting 1,200 \tCost of production to be transferred at cost plus 20% mark-up. ','','b','','utme','2016',127,'Admin','2016-11-16 07:48:42','2020-07-22 21:30:17'),(173,'A suspense account is used to','agree the trial balance','record sales','record purchases','correct errors','','','a','','wassce','1997',62,'Admin','2016-11-18 07:24:28','2020-08-05 15:32:18'),(174,'To correct an error, the Purchases Account was debited while Suspense Account was credited. Which  of  the following was the cause of the error?','Under casting of purchases','Overcasting of purchases','Original entry.','Transportation of returns outwards','','','a','','wassce','1997',75,'Admin','2016-11-18 07:24:28','2020-08-18 12:34:15'),(175,'Subscription in advance is treated in the Balance Sheet of \tnon-profit making organizations as','current asset','fixed asset','Current liability','accumulated fund','','','c','','wassce','1997',98,'Admin','2016-11-18 07:24:28','2020-08-12 19:16:36'),(176,'A Sales Day Book is used to record','cash sales of stock','credit sales of stock','cash and credit sales of stock','cash sales of fixed assets','','','b','','wassce','1997',91,'Admin','2016-11-18 07:24:28','2020-07-14 13:25:19'),(177,'Which of the following is not a capital expenditure to a local government?','Beds','Theatre equipment','Incubators','Drugs','','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:28','2020-08-18 12:34:15'),(178,'A Receipt and Payments Account reveals','net profit','surplus','cash in hand','gross profit','','','c','','wassce','1997',100,'Admin','2016-11-18 07:24:28','2020-08-12 19:17:31'),(179,'An example of appropriation of profit in a company is','salaries','rent income','debenture interest','dividend.','','','d','','wassce','1997',74,'Admin','2016-11-18 07:24:28','2020-08-12 19:18:09'),(180,'In a partnership goodwill is recognized when','a new partner is admitted','a partner is dormant','the business is making huge profit','the business has good customer relations','','','a','','wassce','1997',89,'Admin','2016-11-18 07:24:28','2020-07-19 14:28:27'),(181,'Which of the following is a normal account?','Machinery','Debtors','Creditors','Salaries','','','d','','wassce','1997',96,'Admin','2016-11-18 07:24:28','2020-08-18 12:34:15'),(182,'The net book value at the time of sale was','N=  16,000','N=  14,000','N=  12,000','N= 6,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',95,'Admin','2016-11-18 07:24:28','2020-08-14 13:03:11'),(183,'Accumulated depreciation at the time of sale was','N= 16,000','N=  14,000','N=  12,000','N=  8,000','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','b','','wassce','1997',81,'Admin','2016-11-18 07:24:28','2020-08-18 12:34:15'),(184,'The prof it on sale was','N=  8,000','N=  7,000','N=  6,000','N=  1,000.','An asset was bought on 1st January, 1992 for N= 20,000. Depreciation was provided for annually at 20% on cost. It was sold for N= 7,000 on 1st July, 1995.','','d','','wassce','1997',85,'Admin','2016-11-18 07:24:28','2020-08-20 12:43:11'),(185,'In Manufacturing Account, prime cost plus factory overhead is known as','conversion cost','cost of raw materials consumed','total cost','production cost','','','d','','wassce','1997',84,'Admin','2016-11-18 07:24:28','2020-08-13 12:56:11'),(186,'Which of the following is an advantage of the imprest system?','Making high profits in the business','Rewarding the imprest holder','Easy preparation of the final accounts','Meeting small items of expenditure','','','d','','wassce','1997',80,'Admin','2016-11-18 07:24:28','2020-08-13 12:48:17'),(187,'Where a business is purchased, the full amount of the purchase consideration is credited to','Purchase of Business Account','Creditor’s Account','Vendor’s Account','Purchaser’s Account.','','','a','','wassce','1997',79,'Admin','2016-11-18 07:24:28','2020-08-12 19:17:31'),(188,'A financial plan of action expressed in monetary terms is known as','imprest','consolidated fund','warrant','budget','','','d','','wassce','1997',91,'Admin','2016-11-18 07:24:28','2020-08-18 12:34:15'),(189,'Which of the following is not a source document for recording sales?','Debit note','Credit note','Receipt','Sales journal','','','d','','wassce','1997',111,'Admin','2016-11-18 07:24:28','2020-08-14 13:03:11'),(190,'The mark-up is','N  15,000','N 9,000','N  4,000','N  3,000','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','d','','wassce','1997',88,'Admin','2016-11-18 07:24:28','2020-08-13 12:59:35'),(191,'The double entry required for the mark-up is debit Branch','Sales Account, credit Branch Adjustment Account','Adjustment Account, credit Branch Stock Account','Stock Account, credit Branch Adjustment Account','Profit and Loss Account, credit Branch Stock Account,','A company charges out goods to a branch at cost plus 25 percent.  It invoiced  N 12,000 worth of goods','','c','','wassce','1997',77,'Admin','2016-11-18 07:24:28','2020-08-18 12:34:15'),(192,'A ledger is a','book of accounts','summary of entries','book of original entry','double entry posting','','','d','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:44'),(193,'A real account is the account of','expenses or losses','gains or income','physical tangible items','fictitious items','','','c','','wassce','1997',88,'Admin','2016-11-18 07:24:29','2020-08-07 11:02:55'),(194,'An item is fictitious because it','does not exist','is too costly','is worthless','cannot be sold for cash','','','a','','wassce','1997',82,'Admin','2016-11-18 07:24:29','2020-08-14 13:11:58'),(195,'Which of the following is not a personal account?','Bolaji Account','Drawings Account','P.Z. Plc Account','Cash Account','','','c','','wassce','1997',92,'Admin','2016-11-18 07:24:29','2020-08-13 12:48:17'),(196,'A provision is','an expense of business to be paid for in cash','an amount of loss from trading activities','a loss in value of all business assets','an expense the amount of which is not certain','','','d','','wassce','1997',99,'Admin','2016-11-18 07:24:29','2020-08-13 12:56:22'),(197,'A cash discount is a','Trading Account item','Profit and Loss Account item','Appropriation Account item','Receipts and Payments Account item','','','b','','wassce','1997',87,'Admin','2016-11-18 07:24:29','2020-08-18 12:34:15'),(198,'The amount of capital expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','b','','wassce','1997',78,'Admin','2016-11-18 07:24:29','2020-07-19 14:28:27'),(199,'The amount of revenue expenditure for 1995 was','N  260,000','N  230,000','N  220,000','N  160,000','Kudi Local Government Council incurred the following expenditure in 1995: Payment of salaries [ 140,000], Purchase of drugs for dispensaries [ 80,000 ], Purchase of books for Library [ 30,000], \tSinking of wells [ 70,000 ], Extension of Council offices [ 160,000]','','c','','wassce','1997',101,'Admin','2016-11-18 07:24:29','2020-08-20 11:09:20'),(200,'An expense becomes an accrual because it','is due for payment','is a Profit and Loss Account item','is a Trading Account item','is to be paid within the next one year','','','a','','wassce','1997',97,'Admin','2016-11-18 07:24:29','2020-08-20 12:43:11'),(201,'The amount for which a business is sold is known as','goodwill','capital reserve','purchase consideration','premium','','','c','','wassce','1997',77,'Admin','2016-11-18 07:24:29','2020-08-20 11:09:20'),(202,'The person, who is responsible for the formation of a company is called the','promoter','sponsor','shareholder','director','','','a','','wassce','1997',78,'Admin','2016-11-18 07:24:29','2020-08-12 19:18:09'),(203,'The amount of a company’s profit given to a shareholder is known as','premium','dividend','interest','allotment','','','b','','wassce','1997',75,'Admin','2016-11-18 07:24:29','2020-07-14 13:25:54'),(204,'Which of the following best describes the path of a transaction?','Source documents to Journal to Ledger','Source documents to Ledger to Journal','Journal to Ledger to source documents','Journal to source documents to Ledger','','','a','','wassce','1997',99,'Admin','2016-11-18 07:24:29','2020-08-20 11:09:20'),(205,'Where there are no proper books of account, the capital at the commencement of a period is ascertained by preparing','Total Debtors and Creditors Accounts','Bank Reconciliation Statement','Statement of Affairs','Trading, Profit and Loss Accounts','','','c','','wassce','1997',98,'Admin','2016-11-18 07:24:29','2020-08-13 12:59:35'),(206,'Rent receivable is a','current asset','current liability','contingent liability','fictitious asset','','','b','','wassce','1997',96,'Admin','2016-11-18 07:24:29','2020-08-17 20:51:13'),(207,'Which of the following is a factory overhead?','carriage on raw materials','Purchase of raw materials','Production wages','Depreciation of factory equipment.','','','d','','wassce','1997',97,'Admin','2016-11-18 07:24:29','2020-08-12 18:46:05'),(208,'The purchase consideration was','N  24,000','N 23,000','N  20,000','N 15,000','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','a','','wassce','1997',68,'Admin','2016-11-18 07:24:29','2020-08-17 20:51:13'),(209,'The amount of goodwill was','N  4,000','N  3,000','N  2,000','N  1,000.','A business whose assets consisted of stock  N 15,000 and debtors   N  8,000 was bought by issuing 20,000 ordinary shares of   N  1 each at a premium of  20 percent.','','d','','wassce','1997',91,'Admin','2016-11-18 07:24:29','2020-08-05 10:03:40'),(210,'When a share is sold for less than its nominal value, the difference is called','discount','reserve','premium','loss','','','a','','wassce','1997',86,'Admin','2016-11-18 07:24:29','2020-08-20 12:43:11'),(211,'Which of the following serves the same purpose as a Trading Account?','Branch Adjustment Account','Goods sent to Branch Account','Branch Stock Account','Branch Debtors Account','','','c','','wassce','1997',92,'Admin','2016-11-18 07:24:29','2020-08-12 19:15:53'),(212,'Which of the following is not a revenue receipt?','Receipt from sales of goods','Rent from premises sublet','Interest on savings account','cash on sale of fixed asset','','','d','','wassce','1997',93,'Admin','2016-11-18 07:24:29','2020-08-12 19:17:07'),(213,'The art of collecting, recording, presenting and interpreting accounting data is','cost accounting','management accounting','financial accounting','data processing.','','','c','','wassce','2006',100,'Admin','2016-11-18 07:56:05','2020-08-14 13:11:58'),(214,'The depreciation method in which the number of years of the useful life of an asset is allocated in a reverse order is','straight line','reducing balance','sum of the years’ digits','revaluation.','','','c','','wassce','2006',107,'Admin','2016-11-18 07:56:06','2020-08-12 19:16:36'),(215,'A system where a separate cash book is maintained for small payments is','single entry','imprest','float','reimbursement.','','','b','','wassce','2006',111,'Admin','2016-11-18 07:56:06','2020-08-18 12:34:15'),(216,'Public sector accounting is practiced in','public limited companies','government organizations','profit making organizations','public trading companies.','','','b','','wassce','2006',123,'Admin','2016-11-18 07:56:06','2020-08-20 12:43:11'),(217,'A book that contains the accounts for the financial transactions of an organization is the','journal','ledger','folio','register','','','b','','wassce','2006',101,'Admin','2016-11-18 07:56:06','2020-08-13 12:59:35'),(218,'A sales ledger contains','creditors’ accounts','nominal accounts','real accounts','debtors’ accounts.','','','d','','wassce','2006',122,'Admin','2016-11-18 07:56:06','2020-08-17 20:51:13'),(219,'Books of account consists of','ledgers and subsidiary books','ledgers and principal books','folios and subsidiary books','ledgers and cash book.','','','a','','wassce','2006',98,'Admin','2016-11-18 07:56:06','2020-08-13 12:56:22'),(220,'The amount set aside out of profits earned by a company which are not meant for liability or contingency are','dividends','provisions','retained profits','reserves','','','d','','wassce','2006',106,'Admin','2016-11-18 07:56:06','2020-08-13 12:56:11'),(221,'The basis of accounting which eliminates debtors and creditors is','cash basis','accrual basis','fund basis','commitment basis.','','','a','','wassce','2006',107,'Admin','2016-11-18 07:56:06','2020-08-12 19:16:36'),(222,'Which of the following is not a revenue account?','Sales','Purchases','Discount received','Interest received','','','b','','wassce','2006',103,'Admin','2016-11-18 07:56:06','2020-08-14 13:24:24'),(223,'If  no profit is to be retained, proposed preference shares dividend is','N  28,000','N  16,000','N  12,000.','N  4,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',88,'Admin','2016-11-18 07:56:06','2020-08-12 18:46:05'),(224,'If  no profit is to be retained, proposed ordinary shares dividend is','N   48,000','N  44,000','N  40,000','N  28,000','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','c','','wassce','2006',96,'Admin','2016-11-18 07:56:06','2020-08-12 12:01:09'),(225,'The dividend per ordinary share for the year is','N  0.88 kobo','N  0.40 kobo','N  0.20 kobo','N  0.17 kobo','Ordinary shares of  N1each  [500,000], 8% preference shares of  N1each [200,000], Interim dividends paid:  - ordinary shares [40,000], - preference shares [12,000], Profit for the year [100,000]','','b','','wassce','2006',101,'Admin','2016-11-18 07:56:06','2020-08-18 12:34:15'),(226,'A customer who returns goods to the supplier because they are defective is issued a','debit note','credit note','delivery note','bank note.','','','b','','wassce','2006',102,'Admin','2016-11-18 07:56:06','2020-08-18 12:34:15'),(227,'Cross referencing among different books of accounts is achieved with the use of','columns','reference numbers','folio','margin.','','','c','','wassce','2006',102,'Admin','2016-11-18 07:56:07','2020-08-12 18:46:05'),(228,'In company accounts, profit after tax is shared in the','appropriation account','revaluation account','current account','realization account.','','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:07','2020-07-25 20:35:38'),(229,'Which of the following is not a source of revenue to a government?','Taxation','Sale of goods','Imposition of fines','Grants','','','b','','wassce','2006',103,'Admin','2016-11-18 07:56:07','2020-08-14 10:57:16'),(230,'Whatever is fed into the computer is exactly what would be processed and produced as output. This is the concept of','sorting out','last in, first out','first in, first out','garbage in, garbage out.','','','d','','wassce','2006',104,'Admin','2016-11-18 07:56:07','2020-08-18 12:34:15'),(231,'Bank reconciliation statement reconciles','bank and cash balances in the cash book','bank balance in the cash book and bank statement balance','cash balance in the cash book and bank statement balance','bank balance brought down and bank balance carried down in the cash bcok.','','','b','','wassce','2006',96,'Admin','2016-11-18 07:56:07','2020-08-07 11:02:55'),(232,'The unit which keeps government’s books of accounts is the','Central Bank','Internal Audit Department','Treasury Department','Accountant General’s Department.','','','c','','wassce','2006',90,'Admin','2016-11-18 07:56:07','2020-08-20 11:09:20'),(233,'Which of the following is not a debit item in a partnership \tappropriation account?','Interest on drawings','Partner’s salary','Interest on partner’s capital','Share of profit.','','','a','','wassce','2006',110,'Admin','2016-11-18 07:56:07','2020-08-13 12:59:35'),(234,'Revenue is recognized in the profit and loss account as soon as a','debtor pays what is due from him','sale of goods takes place and money is received','sale of goods takes place whether or not money is received','sale of a fixed asset takes place.','','','c','','wassce','2006',95,'Admin','2016-11-18 07:56:07','2020-08-12 10:18:19'),(235,'“A business unit is assumed to operate into foreseeable future and earn reasonable net income”. This statement is emphasized by the concept of','business entity','going concern','realization','accrual.','','','b','','wassce','2006',116,'Admin','2016-11-18 07:56:07','2020-08-13 12:56:11'),(236,'Which of the following is not used in solving problems of incomplete records?','Control Accounts','Statement of affairs','Cash book','Balance sheet','','','d','','wassce','2006',112,'Admin','2016-11-18 07:56:07','2020-08-12 19:17:07'),(237,'In a system of incomplete records, the opening capital is determined by preparing','statement of affairs','balance sheet','cash book','trial balance.','','','a','','wassce','2006',106,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:27'),(238,'Cost of raw materials consumed is','D113,000','D105,500','D98,000','D95,500.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','c','','wassce','2006',98,'Admin','2016-11-18 07:56:07','2020-08-14 10:57:35'),(239,'Prime cost is','D120,500','D117,700','D114,900','D114,300.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','b','','wassce','2006',90,'Admin','2016-11-18 07:56:07','2020-08-13 12:56:22'),(240,'Cost of goods manufactured is','D138,000','D131,800','D130,500','D123,000.','Given Opening stock:  raw materials [10,000 ], work-in-progress [16,000],  Purchases of raw materials [95,500] , Direct labour wages paid [13,500], Royalties paid [6,200], Accrued wages[2,800], Closing stock- raw materials [7,500], work-in-progress[ 8,500], \tManufacturing overhead [10,000]','','a','','wassce','2006',84,'Admin','2016-11-18 07:56:07','2020-08-20 11:09:20'),(241,'A set of instructions fed into a computer for accomplishing a given task is a/an','input','programme','output','data.','','','b','','wassce','2006',107,'Admin','2016-11-18 07:56:07','2020-07-14 13:26:31'),(242,'Control accounts are also known as','contra accounts','total accounts','ledger accounts','integral accounts.','','','b','','wassce','2006',107,'Admin','2016-11-18 07:56:07','2020-08-18 12:34:15'),(243,'Which of the following is charged to trading account?','Discounts allowed','Carriage outwards','Salaries','Carriage inwards.','','','d','','wassce','2006',107,'Admin','2016-11-18 07:56:07','2020-08-18 12:34:15'),(244,'Which of the following is not a debit item in a creditor’s control \taccount?','Cash paid','Returns outwards','Purchases','Discounts received','','','c','','wassce','2006',99,'Admin','2016-11-18 07:56:07','2020-08-12 19:16:36'),(245,'Using the straight line method, the depreciation charged for year 2002 was','N 160,000','N  130.000','N  100,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',97,'Admin','2016-11-18 07:56:07','2020-08-13 12:56:11'),(246,'Using the reducing balance method, the depreciation charged for year 2002 was','N 100,000','N  90,000','N  80,000','N  60,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','a','','wassce','2006',93,'Admin','2016-11-18 07:56:07','2020-08-12 19:17:07'),(247,'Using the reducing balance method, the depreciation charged for year 2003 was','N  160,000','N  150,000','N   130,000','N  120,000','Motor vehicles (at cost) 1/1/2002   [N1,000,000],  Addition to motor vehicles 1/7/2003  [N  600,000] \tDepreciation rate 10%','','b','','wassce','2006',91,'Admin','2016-11-18 07:56:07','2020-08-18 12:34:15'),(248,'Which of the following is not a revenue expenditure?','Payment: of salaries','Payment for advertisement','Purchases of motor vehicle','Purchases of goods.','','','c','','wassce','2006',89,'Admin','2016-11-18 07:56:07','2020-08-13 12:56:11'),(249,'The amount allowed off the cost price of an article to stimulate patronage is','cash discount','trade discount','discount on debt','discount on bills.','','','b','','wassce','2006',105,'Admin','2016-11-18 07:56:08','2020-08-20 11:09:20'),(250,'Which of the following is a Journal as well as an account?','Sales day book','Cash book','General journal','Purchases journal','','','c','','wassce','2006',94,'Admin','2016-11-18 07:56:08','2020-08-18 12:34:15'),(251,'Which of the following columns of a three column cash book \tare memoranda?  I. Discount received  II. Discount allowed III. Cash IV. Bank','I and II only','I and III only','II and III only','ll and IV only.','','','d','','wassce','2006',114,'Admin','2016-11-18 07:56:08','2020-08-05 10:03:40'),(252,'The adjusted cash book balance is','D11,200','D8,400','D6,200','D5,600','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','d','','wassce','2006',99,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:49'),(253,'The balance as per bank statement is','D10,900','D8,400','D5,600','D2,800','Balance as per cash book [8,400], Bank charges [300], Standing order paid [2,500 ], Unpresented cheques [2,800]','','b','','wassce','2006',99,'Admin','2016-11-18 07:56:08','2020-08-12 19:17:31'),(254,'Where the head office maintains all books of account, goods sent to branch is credited to','Goods Sent to Branch Account','Branch Stock Account','Branch Stock Adjustment Account','Head Office Current Account','','','a','','wassce','2006',94,'Admin','2016-11-18 07:56:08','2020-08-14 13:03:11'),(255,'Which of the following is not a purpose for preparing departmental accounts? To','compare the results of different departments','employ staff into different departments','reward departmental managers','obtain information for formulating policies.','','','b','','wassce','2006',89,'Admin','2016-11-18 07:56:08','2020-07-14 13:26:52'),(256,'Rent expenses for the year 2005 is','N 11,400','N  11,300','N  11,200','N  10,200.','Rent accrued 1st January, 2005 [600], Rent paid in 2005 [11,300], Rent prepaid 31st December, 2005 [500]','','c','','wassce','2006',122,'Admin','2016-11-18 07:56:08','2020-08-18 12:34:15'),(257,'Which of the following is not classified as an overhead?','Factory rates','Factory power','Factory building extension','Factory depreciation.','','','c','','wassce','2006',102,'Admin','2016-11-18 07:56:08','2020-08-14 13:03:11'),(258,'The objective of accounting information is to enable users to','prepare the financial statements.','value stock','make decisions','prepare budgets','','','c','','wassce','2012',108,'Admin','2016-12-13 21:23:13','2020-08-20 12:43:11'),(259,'Trade discounts are given for','bulk purchases','prompt payment','quick delivery','cash payment','','','a','','wassce','2012',99,'Admin','2016-12-13 21:23:13','2020-08-17 20:51:13'),(260,'When closing stock is overstated, it would reduce','cost of sales and increase gross profit.','gross profit and increase cost of sales.','purchases and increase sales.','sales and increase purchases.','','','a','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-07-14 13:26:58'),(261,'Which of the following is not a source document?','Journal proper','Sales invoice','Debit note','Credit note','','','a','','wassce','2012',101,'Admin','2016-12-13 21:23:13','2020-08-14 13:10:21'),(262,'A fixed asset fully written-down by a trader is now considered to be worth N5,000. The double entry required to effect       this is: debit','Asset Account; credit Purchases Account.','Asset Account; credit Capital Account.','Capital Account; credit Asset Account.','Capital Account; credit Profit and Loss Account.','','','b','','wassce','2012',94,'Admin','2016-12-13 21:23:13','2020-08-20 12:43:11'),(263,'Which of the following is a book of original entry?','Ledger','Balance sheet','Bank statement','Sales journal','','','d','','wassce','2012',106,'Admin','2016-12-13 21:23:13','2020-07-30 16:25:25'),(264,'A Balance Sheet shows only','fixed assets and current assets','assets and long term liabilities.','assets and liabilities','assets and capital','','','c','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-08-17 20:51:13'),(265,'The process of entering transaction from one book to another is','reading.','posting.','numbering','listing','','','b','','wassce','2012',93,'Admin','2016-12-13 21:23:13','2020-08-20 11:09:20'),(266,'which of the following is a Trading Account item?','Discounts allowed','Discounts received','Carriage outwards','Carriage inwards','','','d','','wassce','2012',93,'Admin','2016-12-13 21:23:13','2020-08-17 20:51:13'),(267,'The addition of prime cost and factory overheads is','total factory overheads.','market value of goods produced.','cost of goods produced','work-in-progress.','','','c','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-07-26 06:44:15'),(268,'Capital receipt is collected','on sales of motor vehicle.','on sales of stock in trade.','from trade debtor','from trading activities.','','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:13','2020-07-14 13:27:05'),(269,'Which of the following is an example of factory overheads?','Salary of marketing officer','Salary of production officer','Salary of accounting officer','Wages of machine operator','','','d','','wassce','2012',91,'Admin','2016-12-13 21:23:13','2020-08-13 19:42:03'),(270,'Osa started business with Le40,000 cash. The accounting entry is debit','Cash Account; credit Capital Account.','Capital Account; credit Cash Account.','Purchases Account; credit Cash Account.','Expenses Account; credit Capital Account.','','','a','','wassce','2012',102,'Admin','2016-12-13 21:23:13','2020-08-12 19:18:24'),(271,'Branch Stock Account is used to determine the','net value of goods sent to branch.','gross profit of the branch.','branch credit sales.','branch net profit or loss.','','','b','','wassce','2012',99,'Admin','2016-12-13 21:23:13','2020-08-12 19:15:53'),(272,'The name given to a budget in public service accounting is','vote.','subvention.','general order.','estimate.','','','d','','wassce','2012',97,'Admin','2016-12-13 21:23:13','2020-08-12 19:15:53'),(273,'Which of the following is not prepared by a partnership?','Trading Account','Profit and Loss Account','Income and Expenditure Account','Profit and Loss Appropriation Account','','','c','','wassce','2012',105,'Admin','2016-12-13 21:23:13','2020-08-12 19:16:36'),(274,'A partner who only makes capital contribution but does not take part in the management of the partnership business is a/an','ordinary partner','limited partner','dormant partner','nominal partner','','','d','','wassce','2012',103,'Admin','2016-12-13 21:23:13','2020-08-14 13:10:21'),(275,'Which of the following is component of prime cost?','Depreciation','Royalty','Factory rent','Factory electricity','','','d','','wassce','2012',109,'Admin','2016-12-13 21:23:13','2020-08-12 19:18:24'),(276,'The concept which establishes the rule for the periodic recognition of revenue as soon as it is capable of objective measurement is','going concern.','entity.','consistency.','realization.','','','d','','wassce','2012',92,'Admin','2016-12-13 21:23:13','2020-08-20 11:09:20'),(277,'Rent accrued in 2009 was D140. In 2010, D900 was paid while D160 was outstanding. Rent for 2010 was','D1,200.','D1.060.','D920.','D880.','','','c','','wassce','2012',87,'Admin','2016-12-13 21:23:13','2020-08-13 12:56:22'),(278,'Which of the following is not an input device?','Card reader','Paper top reader','Alpha-numeric keyboard','Line printer','','','d','','wassce','2012',80,'Admin','2016-12-13 21:23:14','2020-08-13 12:56:22'),(279,'The equivalent of Income and Expenditure Account in a trading concern is','Trading Account.','Profit and Loss Account.','Appropriation Account.','Balance Sheet.','','','b','','wassce','2012',109,'Admin','2016-12-13 21:23:14','2020-08-20 12:43:11'),(280,'The term used to denote the capital of a not-for-profit making \torganization is','annuity fund.','nominal capital.','circulating capital.','cumulated fund','','','d','','wassce','2012',101,'Admin','2016-12-13 21:23:14','2020-08-14 12:52:51'),(281,'The portion of authorized capital that has been allotted to subscribers is','called up capital','paid up capital.','issued capital','nominal capital.','','','c','','wassce','2012',93,'Admin','2016-12-13 21:23:14','2020-08-12 19:18:24'),(282,'Partners whose liabilities are restricted to their financial contribution to the partnership in the event of winding up are','ordinary partners','limited partners','dormant partners','sleeping partners','','','b','','wassce','2012',85,'Admin','2016-12-13 21:23:14','2020-08-12 10:18:19'),(283,'If creditors at 1/1/10 were Le 3,000; creditors at 31/12/10 Le 5,500 and payments to creditors Le 29,000. The purchases figure for 2010 is','Le 34,500','Le 32,000','Le 31,500','Le 26,500','','','c','','wassce','2012',104,'Admin','2016-12-13 21:23:14','2020-08-14 13:03:11'),(284,'Which of the following is not found in the personal ledger?','Debtors Account','Creditors Account','Capital Account','Nominal Account','','','c','','wassce','2012',110,'Admin','2016-12-13 21:23:14','2020-08-20 12:43:11'),(285,'The Sales Ledger Control Account is also referred to as','Bought Ledger Control Account.','Purchases Account.','Total Debtors Account.','Total Creditors Account.','','','c','','wassce','2012',98,'Admin','2016-12-13 21:23:14','2020-08-12 19:18:09'),(286,'Capital expenditure for the year was','Le 545,000','Le 490,000','Le 450,000','Le 300,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','b','','wassce','2012',102,'Admin','2016-12-13 21:23:14','2020-08-17 20:51:13'),(287,'The amount of recurrent expenditure was','Le 245,000.','Le 175,000','Le 135,00.','Le 80,000','The Health Department of Zango Local Government incurred the following expenditure in 2010. Construction of hospital wards [ Le 300,000 ]; Purchase of hospital beds [ Le  40,000 ]; Salaries and wages  [ Le 80,000]; Purchase of drugs  [ Le 55,000]; Purchase of X-ray machine [ Le 150,000]','','c','','wassce','2012',97,'Admin','2016-12-13 21:23:14','2020-08-14 12:58:27'),(288,'An increase in the provision for doubtful debts results in a/an','increase in the gross profit.','decrease in the gross profit.','decrease in the net profit.','increase in the net profit.','','','c','','wassce','2012',86,'Admin','2016-12-13 21:23:14','2020-08-14 12:58:27'),(289,'Which of the following errors affects the agreement of a Trial Balance?','Wrong addition in the sales account','Crediting a purchase to A. Tambi’s account instead of F. Tambi’s account','Failure to enter sales in the books','Posting the purchase of a van to the debit side of the purchases account','','','a','','wassce','2012',98,'Admin','2016-12-13 21:23:14','2020-08-20 12:43:11'),(290,'The excess of the value of assets over the purchase \tconsideration on acquisition of a business is credited to','share capital account.','goodwill account.','capital reserve account','general reserve account.','','','c','','wassce','2012',99,'Admin','2016-12-13 21:23:14','2020-08-17 20:51:13'),(291,'Shares of N3 nominal value were issued at a price of  N4. The difference of N1 is a','commission.','discount.','premium.','bonus.','','','c','','wassce','2012',104,'Admin','2016-12-13 21:23:14','2020-08-20 12:43:11'),(292,'Which of the following is not the purpose of control account?','Check on errors of addition','Locate errors','Locate missing figures','Monitor the cash book','','','d','','wassce','2012',106,'Admin','2016-12-13 21:23:14','2020-08-14 13:10:21'),(293,'Which of the following is not part of the Central Processing Unit of a computer?','Arithmetical and Logical unit','Memory unit','Input unit','Control unit','','','c','','wassce','2012',111,'Admin','2016-12-13 21:23:14','2020-07-25 17:52:56'),(294,'The double entry to record the proceeds on disposal of assets is debit','Bank Account; credit Asset Disposal Account.','Asset Disposal Account; credit Bank Account.','Provision for Depreciation Account; credit Asset Disposal Account','Asset Disposal Account; credit Provision for Depreciation Account.','','','a','','wassce','2012',89,'Admin','2016-12-13 21:23:14','2020-08-13 12:48:17'),(295,'An underwriter for a company’s share is paid','Interest.','commission.','dividend.','salary.','','','b','','wassce','2012',104,'Admin','2016-12-13 21:23:15','2020-08-20 12:43:11'),(296,'Which of the following is found in a Memorandum of \tAssociation?','Names of directors','Appointment of directors','Object of the business','Payment of dividend','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:15','2020-08-14 10:59:38'),(297,'Administrative, selling and distribution expenses in a \tmanufacturing firm are recorded in','Trading Account.','Manufacturing Account.','Profit and Loss Account.','Balance Sheet.','','','c','','wassce','2012',124,'Admin','2016-12-13 21:23:15','2020-08-15 05:32:17'),(298,'Which of the following is not a revenue to a local government?','Fines','Licenses','Personal income tax','Tenement rates','','','c','','wassce','2012',92,'Admin','2016-12-13 21:23:15','2020-07-25 17:52:56'),(299,'The capital is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:15','2020-08-17 20:51:13'),(300,'The liability is','D7,580','D6,580','D5,380','D1,000','Use the following information to answer questions:: Cash in hand\t[D 1,440]; Cash at Bank [D 2,440]; Stock [D 2,500]; Furniture and fittings [D 2,200]; Creditors [D 1,000]','','d','','wassce','2012',117,'Admin','2016-12-13 21:23:15','2020-08-12 19:18:24'),(301,'Which of the following is not an item in the profit and loss account?','Drawings','Interest','Balances','Bad debts','','','a','','wassce','2012',97,'Admin','2016-12-13 21:23:15','2020-08-13 12:53:42'),(302,'A loss made on the disposal of a fixed asset is debited to','Sales Account.','Purchases Account.','Profit and Loss Account.','Capital Account.','','','c','','wassce','2012',101,'Admin','2016-12-13 21:23:15','2020-08-02 21:18:26'),(303,'Which of the following describes a trial balance?','It is a special account','It is a list of balances in the books','It reveals the financial position of a business','It shows all the entries in the books of a business','','','b','','wassce','2015',76,'Admin','2016-12-14 06:09:04','2020-08-13 20:41:29'),(304,'Which of the following is not a feature of accounting information?','Affordability','Timeliness','Accuracy','Completeness','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:05','2020-08-14 12:58:02'),(305,'Which of the following is the equation for determining net profit or loss from the records of a firm?','Closing Capital - Drawings - Capital Introduced','Opening Capital + Drawings - Closing Capital','Closing Capital + Opening Capital - Drawings','Closing Capital + Drawings - Opening Capital','','','d','','wassce','2015',101,'Admin','2016-12-14 06:09:05','2020-08-17 20:51:13'),(306,'Purchase invoice is first entered in the','purchases account','cash book','sales journal','purchase journal','','','d','','wassce','2015',94,'Admin','2016-12-14 06:09:05','2020-08-12 19:14:31'),(307,'Assets acquired is recorded by debiting','Asset Account, crediting Cash Account','Cash Account, crediting Asset Account','Purchase of Business Account, crediting Sale of Business Account','Asset Account, crediting Purchase of business Account','','','a','','wassce','2015',84,'Admin','2016-12-14 06:09:05','2020-08-14 13:03:11'),(308,'Goods returned to a supplier is','debited to Returns outwards account','credited to Returns outwards account','debited to Returns inwards account','credited to Returns inwards account','','','b','','wassce','2015',86,'Admin','2016-12-14 06:09:05','2020-08-12 18:46:05'),(309,'Which of the following is a real account?','Plant account','Salaries account','Creditors account','Trading account','','','a','','wassce','2015',90,'Admin','2016-12-14 06:09:05','2020-08-07 11:02:55'),(310,'The accounting ledger for goods sold on credit are debit','Debtors Account, credit Sales Account','Creditors Account, credit Sales Account','Sales Account, credit Debtors Account','Sales Account, credit Creditors Account','','','a','','wassce','2015',85,'Admin','2016-12-14 06:09:05','2020-08-17 20:51:13'),(311,'Which of the following is not a book of original entry?','Sales journal','Purchases account','Cash account','Return inwards journal','','','c','','wassce','2015',94,'Admin','2016-12-14 06:09:05','2020-08-17 20:51:13'),(312,'What is the ledger entry for the sale of plant and machinery on credit to Wilson?','Credit Sales Account and debit Cash Account','Credit Plant and Machinery Account and debit Wilson’s Account','Credit Sales Account and debit Wilson’s Account','Credit Plant and Machinery Account and debit Cash Account','','','b','','wassce','2015',81,'Admin','2016-12-14 06:09:05','2020-08-12 10:18:19'),(313,'Discount Received Account is a','real account','personal account','nominal account','profit and loss account','','','c','','wassce','2015',81,'Admin','2016-12-14 06:09:05','2020-08-13 12:56:11'),(314,'Which of the following accounts has a credit balance?','Capital','Cash','Drawings','Premises','','','a','','wassce','2015',81,'Admin','2016-12-14 06:09:05','2020-08-12 19:17:31'),(315,'The accounting entry to correct sales day book overcast is','debit Sales Account and credit Debtors Account','debit Suspense Account and credit Sales Account','debit Debtors Account and credit Suspense Account','debit Sales Account and credit Suspense Account','','','d','','wassce','2015',101,'Admin','2016-12-14 06:09:05','2020-08-14 12:58:02'),(316,'Which of the following expresses the accounting equating?','Capital + Assets = Liabilities','Assets - Liabilities = Capital','Liabilities + Current Assets = Fixed Assets','Liabilities - Capital = Current Assets','','','b','','wassce','2015',91,'Admin','2016-12-14 06:09:05','2020-08-15 05:32:17'),(317,'When the invoice of a customer is overcast, the supplier will send to him a','cheque','payment voucher','debit note','credit note','','','d','','wassce','2015',75,'Admin','2016-12-14 06:09:05','2020-08-12 18:46:26'),(318,'Unpresented cheques are cheque','that have been recorded in the cash book, but not by the bank','that have been received by the bank, but recorded in the cash book','returned by the bank','written, but not handed over to customers','','','a','','wassce','2015',87,'Admin','2016-12-14 06:09:05','2020-08-13 12:56:22'),(319,'The cost of putting goods into a saleable condition is charged to','balance sheet','trial balance','profit and loss account','trading account','','','d','','wassce','2015',99,'Admin','2016-12-14 06:09:05','2020-08-13 12:59:35'),(320,'Which of the following is not a method of depreciating fixed assets?','Revaluation','Straight line','Diminishing balance','Obsolescence','','','d','','wassce','2015',69,'Admin','2016-12-14 06:09:05','2020-08-14 12:52:38'),(321,'In preparing a profit and loss account, a decrease in provision for doubtful debts accounts is treated as','Currentability','expenses','Income','Current asset','','','c','','wassce','2015',94,'Admin','2016-12-14 06:09:06','2020-08-05 15:32:18'),(322,'Which of the following items is found in the sales ledger control account?','Discount received','Total credit purchases','Discount allowed','Returns outwards','','','a','','wassce','2015',82,'Admin','2016-12-14 06:09:06','2020-08-17 20:51:13'),(323,'The process of using sales ledger balance to cancel off purchases ledger balance is','balancing','set off','reconciliation','cancelling','','','b','','wassce','2015',101,'Admin','2016-12-14 06:09:06','2020-08-13 12:53:42'),(324,'The total of the returns outwards journal is posted to the','credit side of the returns outwards book','debit side of the returns outwards account','debit side of the purchases returns book','credit side of the returns outwards account','','','d','','wassce','2015',106,'Admin','2016-12-14 06:09:06','2020-08-20 11:09:20'),(325,'Which of the following is not revealed by a firm’s accounting records?','Profit of a period','Quality of labour force','Credit worthiness','Value of assets','','','b','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-07-26 06:44:15'),(326,'In the balance sheet of a social club, subscription owing is treated as a','current liability','current asset','tangible asset','long-term liability','','','b','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-08-14 12:52:51'),(327,'The accounting concept that allows the cost of kitchen cutlery to be expensed, though it will be used for more than one year is','materiality','accrual','going concern','business entity','','','a','','wassce','2015',92,'Admin','2016-12-14 06:09:06','2020-08-12 19:18:09'),(328,'The accounting concept that assumes that a business will continue operating for an indefinite period is','business entity','going concern','consistency','duality','','','b','','wassce','2015',76,'Admin','2016-12-14 06:09:06','2020-08-12 19:15:27'),(329,'The accounting concept that states that a firm’s financial affairs must be separated from that of the owner’s private transactions is','business entity','going concern','consistency','duality','','','a','','wassce','2015',91,'Admin','2016-12-14 06:09:06','2020-08-12 18:46:05'),(330,'Goodwill is recognized in partnership accounts when','the business makes a huge profit','the business has good customer relationship','a partner is dormant','a new partner is admitted','','','d','','wassce','2015',86,'Admin','2016-12-14 06:09:06','2020-08-13 12:48:17'),(331,'In which of the following accounts is interest on partners capital found?','Profit and loss','Trading','Income surplus','Profit and loss appropriation.','','','d','','wassce','2015',96,'Admin','2016-12-14 06:09:06','2020-08-12 18:46:26'),(332,'Which of the following is not stated in the partnership agreement?','Profit sharing ratio','Interest on capital','Interest on fixed asset','Purpose of partnership','','','c','','wassce','2015',90,'Admin','2016-12-14 06:09:06','2020-08-13 12:56:11'),(333,'How much was paid for goodwill?','GHc/ 350,000','GHc/ 260,000','GHc/  90,000','GHc/ 60,000','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','d','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-08-18 12:34:15'),(334,'The double entry to record the goodwill in the books is debit','Cash Account and credit Goodwill Account','Goodwill Account and credit Purchase of Business Account','Goodwill Account and credit Cash Account','Purchase of Business Account and credit Cash Account','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','b','','wassce','2015',94,'Admin','2016-12-14 06:09:06','2020-08-20 11:09:20'),(335,'The document which sets out the internal arrangement for the proper management of a company is the','prospectus','article of association','memorandum of association','certificate of incorporation','Use the following information to answer questions: Mr. White acquired Mr. Black’s business for GHc/ 410,000. The total assets were GHc/ 670,000 and liabilities amounted to GHc/ 320,000','','c','','wassce','2015',87,'Admin','2016-12-14 06:09:06','2020-08-13 12:56:22'),(336,'A person who has applied to purchase shares in a company is referred to as','a promoter','a subscriber','an allottee','an underwriter','','','b','','wassce','2015',94,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:19'),(337,'Which of the following expenses is allocated according to the floor \tarea?','Wages and Salaries','Rent and rates','Canteen expenses','Discount allowed','','','b','','wassce','2015',92,'Admin','2016-12-14 06:09:06','2020-08-12 12:01:09'),(338,'Goods stolen at the branch is debited to','Defalcations Account','Branch Stock Account','Branch Adjustment Account','Branch Debtors Account','','','c','','wassce','2015',89,'Admin','2016-12-14 06:09:06','2020-08-14 12:58:02'),(339,'Which of the following is a source of revenue for a local government?','Personal income tax','Company registration fees','Royalties','Market tolls','','','d','','wassce','2015',73,'Admin','2016-12-14 06:09:06','2020-08-20 11:09:20'),(340,'The instrument used to release fund which the minister of finance had earlier withheld is','reserve expenditure warrant','supplementary general warrant','provisional general warrant','supplementary statutory warrant','','','b','','wassce','2015',95,'Admin','2016-12-14 06:09:06','2020-07-14 13:29:23'),(341,'Which of the following relates to cash basis of accounting?','Accruals and prepayments are considered','Debtors and creditors are recorded','Fixed assets are written off in the year of purchase','Profits are maximized','','','d','','wassce','2015',86,'Admin','2016-12-14 06:09:06','2020-08-20 11:09:20'),(342,'Which of the following is found on the credit side of a partnership’s appropriation of profit account?','Interest on capital','Interest on drawings','share of profit','Drawings','','','b','','wassce','2015',75,'Admin','2016-12-14 06:09:06','2020-08-14 13:11:58'),(343,'Which of the following is a spreadsheet application?','Excel','Word','Internet','Windows','','','a','','wassce','2015',85,'Admin','2016-12-14 06:09:06','2020-08-18 12:34:15'),(344,'The quality of output information depends on the','quality of input data','time of processing','speed of processing','quantity of output device','','','a','','wassce','2015',88,'Admin','2016-12-14 06:09:07','2020-07-14 13:29:27'),(345,'The source document used to make entries in the purchases day book is','debit note','credit note','invoice','receipt','','','a','','wassce','2014',87,'Admin','2016-12-14 06:44:38','2020-08-18 12:34:15'),(346,'book that contains individual accounts of suppliers is the','purchases ledger','general ledger','nominal ledger','sales ledger','','','a','','wassce','2014',87,'Admin','2016-12-14 06:44:39','2020-08-13 12:56:22'),(347,'In the operation of an imprest system of petty cash, the','petty cashier pays all expenses','petty cashier pays money to the accountant','petty cashier regularly begins each period with the same amount of money','main cashier accounts to the petty cashier for some expenses made by him','','','c','','wassce','2014',85,'Admin','2016-12-14 06:44:39','2020-08-12 19:15:27'),(348,'An example of a credit entry in a profit and loss account is','carriage inwards','carriage outwards','discounts allowed','discounts received','','','d','','wassce','2014',71,'Admin','2016-12-14 06:44:39','2020-08-12 12:01:09'),(349,'Which of the following subsidiary books involves cash movement?','Sales day book','Purchases day book','Returns inwards book','Petty cash book','','','d','','wassce','2014',85,'Admin','2016-12-14 06:44:39','2020-08-12 19:16:36'),(350,'The accounting treatment for a dishonoured cheque is; debit','Customer’s Account; Credit Bank Account','Bank Account; Credit Customer’s Account','Customer’s Account; Credit Sales Account','Sales Account; Credit Customer’s Account\\\\','','','a','','wassce','2014',93,'Admin','2016-12-14 06:44:39','2020-08-13 12:48:17'),(351,'Net turnover is referred to as','purchases','assets','sales','profits','','','c','','wassce','2014',91,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:33'),(352,'Which of the following transactions will result in disagreement between the cash book and the bank statement?','Selling of goods on credit to a customer','Withdrawal of goods by the proprietor for his personal use','Cheque paid directly into the bank account by a customer','Omission of purchases received from a supplier on credit','','','c','','wassce','2014',79,'Admin','2016-12-14 06:44:39','2020-08-14 10:57:35'),(353,'Purchases Account is overcast by N200, while Wages Account is under cast by N200. This is','an error of omission','a compensating error','an error of commission','an error of principle','','','b','','wassce','2014',93,'Admin','2016-12-14 06:44:39','2020-08-12 18:45:25'),(354,'Which of the following is used to record the disposal of a fixed asset?','Journal  Proper','Petty  Cash  Book','Sales Day Book','Purchases Day Book','','','a','','wassce','2014',78,'Admin','2016-12-14 06:44:39','2020-08-20 12:43:11'),(355,'The annual depreciation is','N9,000','N8,500','N8,000','N6,500','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',96,'Admin','2016-12-14 06:44:39','2020-08-17 20:51:13'),(356,'The accumulated depreciation as at 31/12/2013 is','N18,500','N17,000','N16,000','N8,000','Use the following information to answer question:\tCost of motor vehicle-1/1/12 [ 85,000 ];  Residual value [ 5,000 ]; Estimated useful lifespan 10 years . The business makes use of the straight line method for \tproviding depreciation.','','c','','wassce','2014',99,'Admin','2016-12-14 06:44:39','2020-08-12 10:18:19'),(357,'An error of principle is made, if','an entry has been made in the wrong class of account','a transaction has been completely omitted','an entry has been made on the wrong side of the two accounts concerned','a transaction is entered in both accounts for the wrong amount','','','a','','wassce','2014',98,'Admin','2016-12-14 06:44:39','2020-07-14 13:29:40'),(358,'Which of the following is entered in the general journal?','Purchase of goods','Sale of goods on credit','Returns inwards','Acquisition of fixed assets','','','d','','wassce','2014',89,'Admin','2016-12-14 06:44:39','2020-08-14 13:03:11'),(359,'The cost of carriage outward is classified as','a selling and distribution expense','an administrative expense','a trading expense','a finance expense','','','a','','wassce','2014',86,'Admin','2016-12-14 06:44:39','2020-08-14 13:03:11'),(360,'The purchase of ten ceiling fans by Akpan Electronic Enterprises will be recorded as','an acquisition of fixed asset','an expense in its general office expense account','part of capital in the capital account','an acquisition of stock','','','d','','wassce','2014',106,'Admin','2016-12-14 06:44:39','2020-08-13 12:56:11'),(361,'Which of the following accounts would appear in the nominal ledger?  (I)  Sanison’s account (a debtor)  ( II) Motor vehicle account (III) Sales account  (IV)  Rent and rates account','I, II and III only','I, III and IV only','II, III and IV only','Ill and IV only','','','b','','wassce','2014',89,'Admin','2016-12-14 06:44:39','2020-08-13 12:59:35'),(362,'The sum of direct cost in a manufacturing account is','production cost','prime cost','total cost','finance cost','','','b','','wassce','2014',82,'Admin','2016-12-14 06:44:39','2020-08-12 19:17:07'),(363,'Net profit in a business is','the amount of money taken out of the business by the owner','the cash in the business bank account','the difference between sales and cost of sales','sale revenue less cost of sales and expenses','','','d','','wassce','2014',102,'Admin','2016-12-14 06:44:39','2020-08-20 11:09:20'),(364,'An example of a self-balancing account is the','suspense account','creditor’s account','control account','debtor’s accoun','','','c','','wassce','2014',87,'Admin','2016-12-14 06:44:39','2020-08-13 12:59:35'),(365,'The gross profit is','GHc/  2,160,000','GHc/ 1440,000','GHc/ 1,080,000','GHc/ 720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',92,'Admin','2016-12-14 06:44:39','2020-08-12 18:46:26'),(366,'The cost of sales is','GHc/  2,160,000t','GHc/ 1440,000','GHc/ 1,080,000','GHc/  720,000','Use the following information to answer question: The total sales of a business was GHc/ 2,160,000. The average mark-up for the year was 50%.','','c','','wassce','2014',97,'Admin','2016-12-14 06:44:39','2020-08-12 19:17:07'),(367,'Which of the following is not an administrative expenses in a \tmanufacturing organization?','Discounts allowed','Office electricity','Stationery','Insurance','','','a','','wassce','2014',84,'Admin','2016-12-14 06:44:39','2020-08-13 12:48:17'),(368,'When an asset is sold, the entries for the accumulated depreciation are: debit','Asset Disposal Account; credit Provision for Depreciation Account.','Provision for Depreciation Account; Credit Asset Disposal Account','Fixed Asset Account; Credit Asset Disposal Account','Asset Disposal Account; Credit Fixed Asset Account','','','b','','wassce','2014',81,'Admin','2016-12-14 06:44:39','2020-08-14 12:58:27'),(369,'A petty cash account has an imprest of D28,000. The account has a debit balance of D5.000. How much cash is needed to restore the imprest?','D33,000','D28,000','D23,000','D5,000','','','c','','wassce','2014',86,'Admin','2016-12-14 06:44:39','2020-08-14 13:11:58'),(370,'In a not - for - profit making organization, when the total income \tis less than the total expenditure, the difference is a','surplus','shortfall','loss','deficit','','','d','','wassce','2014',96,'Admin','2016-12-14 06:44:39','2020-08-13 12:59:35'),(371,'The accounting concept underlying the treatment of personal expenses of the business owner as drawing is','periodicity','accrual','entity','materiality','','','c','','wassce','2014',93,'Admin','2016-12-14 06:44:39','2020-08-20 12:43:11'),(372,'Which of the following items is not contained in the Receipts and Payments Account?','Subscription paid in advance','tock paid for in advance','Outstanding wages and salaries','Donations','','','c','','wassce','2014',83,'Admin','2016-12-14 06:44:40','2020-08-13 12:53:42'),(373,'The concept that states that a business should not lay claim to any profits before it is earned with reasonable certainty is','consistency concept','prudence concept','accrual concept','going concern concept','','','b','','wassce','2014',86,'Admin','2016-12-14 06:44:40','2020-08-18 12:34:15'),(374,'When shares are issued above their nominal value, the \texcess above the nominal value is','credited to Profit and Loss Account','debited to Share Premium Account','credited to Share Capital Account','credited to share Premium Account','','','d','','wassce','2014',92,'Admin','2016-12-14 06:44:40','2020-08-12 10:18:19'),(375,'Shares issued below nominal value are referred to as shares at','premium','discount','face value','cumulative value','','','b','','wassce','2014',95,'Admin','2016-12-14 06:44:40','2020-08-12 18:46:26'),(376,'The accounting ratio used to measure the average number of days for which suppliers remain unpaid is','stock turnover','creditors’ payment period','debtors collection period','return on capital employed','','','b','','wassce','2014',95,'Admin','2016-12-14 06:44:40','2020-08-17 20:51:13'),(377,'When the purchase consideration exceeds the value of business, the difference is','profit','discount','goodwill','reserve','','','c','','wassce','2014',99,'Admin','2016-12-14 06:44:40','2020-08-12 18:46:26'),(378,'The primary classification of government expenditure is based on','Programs','funds','activity','project','','','b','','wassce','2014',95,'Admin','2016-12-14 06:44:40','2020-08-20 11:09:20'),(379,'An example of input device of a computer is','an optical character reader','a graph plotter','a visual display unit','printer','','','a','','wassce','2014',74,'Admin','2016-12-14 06:44:40','2020-08-07 11:02:55'),(380,'The accounting concept which states that expenditure involving insignificant amounts should be regarded as expenses and not assets is','business entity','materiality','dual aspect','realization','','','b','','wassce','2014',110,'Admin','2016-12-14 06:44:40','2020-08-14 13:03:11'),(381,'A company made a net profit of N2,000,000 for the year and its net profit percentage is 25%. What is the total sales   for the year?','N8,000,000','N6,000,000','N800,000','N500,000','','','a','','wassce','2014',99,'Admin','2016-12-14 06:44:40','2020-08-13 12:59:35'),(382,'Which of the following information is recorded in the returns outwards book?','Goods purchased on credit and subsequently returned to supplier','Fixed asset bought on credit and subsequently returned to supplier','Cash payment received from a customer and subsequently returned to supplier','Goods sold to a customer and subsequently returned to the business.','','','a','','wassce','2014',99,'Admin','2016-12-14 06:44:40','2020-08-12 12:01:09'),(383,'Calculate the stock figure to be included in the balance sheet at the year end.','D408,000','D346,000','D284,000','D62,000',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',82,'Admin','2016-12-14 06:44:40','2020-08-14 13:24:24'),(384,'The concept applied in answering question 42 above is','matching','consistency','prudence','entity',' Use the following information to answer question: Branch stock account (at selling price)  D346,000 - debit Branch mark-up account D62,000 - debit','','c','','wassce','2014',78,'Admin','2016-12-14 06:44:40','2020-08-14 10:59:38'),(385,'Subscriptions in advance is classified in the balance sheet as','an asset','a liability','a deficit','a surplus','','','b','','wassce','2014',85,'Admin','2016-12-14 06:44:40','2020-08-20 11:09:20'),(386,'Which of the following items is not treated in the Profit and Loss Account?','Office expenses','Salaries and allowances','Carriage inwards','Discounts allowed','','','c','','wassce','2014',100,'Admin','2016-12-14 06:44:40','2020-08-14 13:03:11'),(387,'The document prepared by a local/district government to present its annual estimates for a planning period is','a balance sheet','budget','an income and expenditure account','a cash book','','','b','','wassce','2014',83,'Admin','2016-12-14 06:44:40','2020-08-17 20:51:13'),(388,'A manufacturing account is drawn up by','firms providing personal services','firms engaged solely in buying and selling of goods','firms which make and sell articles','non - trading organization.','','','c','','wassce','2014',91,'Admin','2016-12-14 06:44:40','2020-08-18 12:34:15'),(389,'Which of the following is not a factory overhead cost?','Manufacturing wages','Factory rent','Depreciation of machinery','Salary of factory guard','','','a','','wassce','2014',94,'Admin','2016-12-14 06:44:40','2020-08-12 19:14:31'),(390,'A collection of fields relating to one logically definable unit of business information is known as','data','character','byte','record','','','d','','wassce','2014',99,'Admin','2016-12-14 06:44:40','2020-08-14 13:03:11'),(391,'The principle of double entry book - keeping states that','every debtor must have a creditor','every account debited must be immediately credited','for every debit entry, there must be a corresponding credit entry','for every double debit, there must be a double credit.','','','c','','wassce','2014',93,'Admin','2016-12-14 06:44:40','2020-08-14 12:52:38'),(392,'The accounting principle that is applied to check arbitrary actions on the part of accountants is','consistency','materiality','objectivity','realization','','','a','','utme','2004',120,'Admin','2016-12-15 06:52:04','2020-08-18 12:34:15'),(393,'The loss of equipment in a fire disaster results in','a decrease in current assets','an increase in liabilities and assets','a decrease in assets and capital','an increase in liabilities and a decrease in  assets.','','','c','','utme','2004',107,'Admin','2016-12-15 06:52:06','2020-07-23 10:49:57'),(394,'A source document is used for verifying the','amount due to creditors','actual cost of an asset','selling price of goods','amount due from debtors','','','c','','utme','2004',122,'Admin','2016-12-15 06:52:07','2020-08-13 12:48:17'),(395,'The rule of accounting equation requires that account payable should be placed under','liabilities','equities','assets','capital','','','a','','utme','2004',108,'Admin','2016-12-15 06:52:07','2020-08-13 12:56:22'),(396,'A debit in the suspense account will appear in the balance sheet as','a current asset','a current liability','capital','drawings','','','a','','utme','2004',120,'Admin','2016-12-15 06:52:07','2020-08-17 20:51:13'),(397,'The recipient whose name appears on a cheque is called a','payee','drawer','drawee','payee','','','d','','utme','2004',104,'Admin','2016-12-15 06:52:07','2020-08-20 11:09:20'),(398,'The imprest account is subsidiary to the','ledger account','bank account','cash book','petty cash','','','d','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-08-13 12:59:35'),(399,'The three-column cash book differs from the two-column cash book in','cash column','discount column','bank column','folio column','','','b','','utme','2004',120,'Admin','2016-12-15 06:52:07','2020-08-20 12:43:11'),(400,'Zakari started a business on January 2000. He bought a shop costing N 54,000 and stock worth N 7,600.  Profit for the year amounted to N 22,100. His closing capital was N 73,800. Zakari’s personal drawings amounted to','N 2,300','N9,900','N 17,100','N 19,500','','','b','','utme','2004',132,'Admin','2016-12-15 06:52:07','2020-08-12 19:15:27'),(401,'The balance on the provision for depreciation account is','added to fixed assets on the balance sheet','deducted from fixed assets on the balance sheet','deducted from the profit and loss account','added to the current liabilities of the account','','','b','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-07-23 10:49:59'),(402,'Given: Rates paid during the year amounted to N 2,250 at N125 per month and N 1,035 was paid for electricity in the same period at N 115 per month. Determine the amount of prepaid rates','N 345','N 750','N 1,380','N 1,500','','','b','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-08-12 18:46:26'),(403,'Where closing stock is undervalued, the effect is','an increase in gross profit','a decrease in gross profit','an increase in purchases','a decrease in purchases','','','b','','utme','2004',129,'Admin','2016-12-15 06:52:07','2020-08-12 19:15:53'),(404,'At the year end, the purchases ledger showed a debit balance of N 108. The total on the debit side of the purchases ledger control account will be','N 22,966','N 22,156','N 21,834','N 21,054','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','a','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-08-20 12:43:11'),(405,'The balancing figure in the purchases ledger control account is','N 15,828','N 15,720','N 14,940','N 14,694','Opening balance [N 10,640 ]; Purchases [N 26,912 ]; Returns inwards [N 492 ]; Returns outwards [N 810 ]; Cash discount received [N 1,348 ]; Cash discount allowed [N 1,560 ]; Cash paid to suppliers [N 20,808 ] ','','d','','utme','2004',128,'Admin','2016-12-15 06:52:07','2020-08-20 12:43:11'),(406,'In a sales ledger, contra entry is found on the','debit side of the debtors’ control account','debit side of the creditors’ control account','credit side of the debtors’ control account','credit side of the creditors’ control account','','','c','','utme','2004',107,'Admin','2016-12-15 06:52:07','2020-08-20 12:43:11'),(407,'The beginning and ending accounts receivable balances were N 20,000 and N 30,000 respectively.The collection from customers during the period was N 70.000. What was the total sale on account?','N 20,000','N 60,000','N 80,000','N 120,000','','','b','','utme','2004',120,'Admin','2016-12-15 06:52:07','2020-08-12 12:01:09'),(408,'Determine how much to be charged to profit and loss account.','N 606','N 786','N 791','N 856','Given: General expenses account Paid by cheque [ N671 ]; Paid by cash [N 70 ]; Accrued b/f [N 65 ] Accrued c/f [N 115 ]','','c','','utme','2004',124,'Admin','2016-12-15 06:52:07','2020-08-14 10:57:16'),(409,'In converting single entry to final account, the balancing figures on the income and expenses accounts are transferred to the','revenue and expenditure account','receipts and payments account','profit and loss appropriation account','profit and loss account','','','d','','utme','2004',131,'Admin','2016-12-15 06:52:07','2020-08-14 13:10:21'),(410,'Determine the amount for the beginning inventory','N 20,140','N10,240','N 8,140','N 7,240','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',115,'Admin','2016-12-15 06:52:07','2020-08-13 12:56:22'),(411,'What is the figure for purchases?','N 2,400','N 2,500','N 4,200','N 5,200','Beginning inventory [ ? ]; Purchases [? ]; Ending inventory [ N4,800 ]; Sales [ N12,800 ]; Wages [ N1,040 ]; Gross profit [N 5,900]. The beginning inventory was estimated at 80% of sales.','','b','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-08-12 19:15:27'),(412,'Cost classification in relation to charges is determined by the level of','raw materials','labour','activity','profitability','','','c','','utme','2004',125,'Admin','2016-12-15 06:52:07','2020-08-13 12:53:42'),(413,'The gross profit on manufacture is','N 6,120','N 6,100','N 5,100','N 5,000','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','c','','utme','2004',128,'Admin','2016-12-15 06:52:07','2020-08-12 12:01:09'),(414,'The market value of goods produced is','N 30,500','N 30,600','N 31,600','N 31,620','Materials consumed \t[N 16,600 ]; Direct cost  [N 5,400 ]; Factory rent  [N 2,300 ]; Factory lighting \t[N 1,200]. Cost of production to be transferred at cost plus 20% mark-up.','','b','','utme','2004',133,'Admin','2016-12-15 06:52:07','2020-08-14 13:03:11'),(415,'The accumulated fund is','N 9,400','N 9,300','N 9,200','N 9,100','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-08-13 12:56:22'),(416,'In the balance sheet, the subscription in arrears will be','N 200','N 300','N 1,200','N 1,300','On January 1, 2000, a club’s assets and liabilities were as follows: Club house [ N8,000 ]; Subscription in arrears [ N300]; Cash [N1,000]; Wages owed [N100]. The club has 50 members and annual subscription is N 100 per member. Subscription received is N 4,000 and this includes 1999 arrears of  N 200.','','c','','utme','2004',123,'Admin','2016-12-15 06:52:07','2020-08-18 12:34:15'),(417,'Where the debit side of the income and expenditure account is higher than the credit side, the difference is','deficit','surplus','gain','loss','','','a','','utme','2004',108,'Admin','2016-12-15 06:52:07','2020-08-13 12:53:42'),(418,'In the balance sheet of a not-for-profit-making organization, subscription paid in advance is regarded as a','current asset','current liability','capital','reserve','','','b','','utme','2004',125,'Admin','2016-12-15 06:52:07','2020-08-13 12:59:35'),(419,'A rapidly growing business organization with multiple units that is interested in comparing the performances and weaknesses of each unit should adopt.','manufacturing accounts','consolidated accounts','departmental accounts','joint venture accounts','','','c','','utme','2004',130,'Admin','2016-12-15 06:52:07','2020-07-23 10:37:19'),(420,'How are credit sales by a department treated?','the same way as normal debtors’ transactions','in a different way from normal debtors’ transactions','as an addition to the sales manager’s account','as an addition to the production manager’s account','','','a','','utme','2004',107,'Admin','2016-12-15 06:52:07','2020-08-20 12:43:11'),(421,'Discounts granted to branch customers are treated as a debit to branch','stock account and a credit to branch debtors’ account','discount account and a credit to branch bank account','stock account and a credit to branch bank account','discount account and a credit to branch debtors’ account','','','a','','utme','2004',128,'Admin','2016-12-15 06:52:07','2020-08-17 20:51:13'),(422,'Transfers from the head office to branches are best carried out at','cost price','selling price','cost plus mark-up','market price','','','c','','utme','2004',127,'Admin','2016-12-15 06:52:07','2020-07-25 17:52:56'),(423,'On dissolution, the final distribution of cash to partners is based on','partnership agreement','Articles of Association','goodwill','capital balances.','','','d','','utme','2004',121,'Admin','2016-12-15 06:52:08','2020-08-12 19:17:31'),(424,'The balance of profit and loss account will be','N 4,000','N 2,800','N 1,500','N 300','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','a','','utme','2004',129,'Admin','2016-12-15 06:52:08','2020-08-14 13:24:24'),(425,'What is Kunle’s share of the profit?','N 600','N 300','N180','N 120','Jumoke and Kunle have an original investment of N 25,000 and N15,000 respectively in a partnership.   The articles of partnership provide 3% interest on capital and salaries of N1,500 and N 1,000 respectively for the partners.   The profits and losses are to be shared in the ratio 3:2. Miscellaneous expenses of N 2,500 were incurred with gross profit of N 6,500 during the financial year.','','d','','utme','2004',118,'Admin','2016-12-15 06:52:08','2020-08-17 20:51:13'),(426,'When a new partner is admitted to a partnership, there is a need to revalue the','capital of the business','capital and liabilities of the business','assets and capital of the business','assets and liabilities of the business','','','d','','utme','2004',138,'Admin','2016-12-15 06:52:08','2020-08-17 20:51:13'),(427,'The accounting entry to record the premium on goodwill is to debit','cash and credit old partners’ capital','goodwill and credit revaluation','assets and credit capital','capital and credit assets','','','b','','utme','2004',134,'Admin','2016-12-15 06:52:08','2020-07-30 16:49:44'),(428,'The expenses incurred in promoting a company are','promoters’ expenses','floating expenses','preliminary expenses','the Board’s expenses','','','c','','utme','2004',137,'Admin','2016-12-15 06:52:08','2020-08-12 19:15:53'),(429,'Debentures can be redeemed out of','existing share capital reserve','existing general reserve','proceeds from new issue of shares','withholding tax.','','','a','','utme','2004',123,'Admin','2016-12-15 06:52:08','2020-08-14 12:52:51'),(430,'Share premium is an example of','revenue reserves','capital reserves','general reserves','loan capital','','','b','','utme','2004',133,'Admin','2016-12-15 06:52:08','2020-08-18 12:34:15'),(431,'According to the provisions of the 1999 Constitution, all revenues generated by the Federal Government must be paid into the?','Consolidated Revenue Fund','Federation Account','Revenue Mobilization Allocation and Fiscal Commission’s Account','Equalization Fund','','','a','','utme','2004',141,'Admin','2016-12-15 06:52:08','2020-08-20 11:09:20'),(432,'The budget statement presented to the legislature by the Chief Executive is called','an appropriation act','a budget bill','an appropriation bill','a budget proposal','','','c','','utme','2004',116,'Admin','2016-12-15 06:52:08','2020-08-05 10:03:39'),(433,'The statement of assets and liabilities in the public sector can be described as the','income and expenditure account of government','appropriation account of government','balance sheet of government','funds flow statement of government','','','d','','utme','2004',123,'Admin','2016-12-15 06:52:08','2020-08-12 19:17:31'),(434,'A company has departments X, Y and Z. Department X occupies a space twice that of Y while Z   occupies half the space of  Y. If the company pays N 70 000 on rent, what is the amount of rent that should be allocated to Y?','N 30,000','N 40,000','N 20,000','N 10, 000.','','','c','','utme','2007',117,'Admin','2016-12-16 07:02:01','2020-08-13 12:53:42'),(435,'Calculate the total figure for the receipts and payments account.','N 11,410','N  13,630','N  9, 310','N  11, 530.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','d','','utme','2007',125,'Admin','2016-12-16 07:02:01','2020-08-12 19:15:27'),(436,'Determine the opening cash balance of the club','N 3070','N 2220','N 5710','N 4320.','Entrance fees [N 1,200 ]; Subscription (including N 850 arrears) [N 4,310 ]; Donations received [N 1,500]; Proceeds from sales [N 2 ,300]; Total payments [N 8,200 ]; Depreciation [N 2,100]; Closing cash balance [N 1,110 ]. The club deposited 200% of the closing cash balance in the bank during the period.','','b','','utme','2007',119,'Admin','2016-12-16 07:02:01','2020-08-12 18:46:05'),(437,'Purchases of raw materials amount to N  81 000, direct labour is N  38 000 and factory overhead N  29 000. Calculate the prime cost.','N 176,000','N 170,000','N 167,000','N  156,000.','Stock at start: Raw materials [N57, 000]; Work-in-progress [42, 000]; Finished goods [71, 000 ]','','a','','utme','2007',134,'Admin','2016-12-16 07:02:01','2020-08-14 12:52:51'),(438,'I.Profits and losses will be shared unequally II.  Interest is not allowed on capital, III. Salaries are not allowed. IV. Interest is charged on drawings. Which of  the following would apply where there is no agreement during partnership formation?','I only','I, II and III','I, II and IV','II and III.','','','c','','utme','2007',128,'Admin','2016-12-16 07:02:01','2020-08-12 19:18:09'),(439,'The value of goods sent to branch is','N 4 000','N 6000','N 8000','N 2000','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','c','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-08-13 12:59:35'),(440,'Determine the closing stock.','N 5 500','N  6500','N 2500','N 4500','Use the information below to answer questions: Stock (1/1/02) at selling price [N2, 000 ]; Goods sent to branch (selling price)    [  ?  ]; Sales by branch (selling price)   [4, 500 ]; Stock (31/12/02)   [  \t?    ] Opening stock is 1/4 of goods sent to branch.','','a','','utme','2007',119,'Admin','2016-12-16 07:02:02','2020-08-13 12:56:22'),(441,'Expenses paid during the conversion of a partnership to a \tcompany are','debited to the partners’ capital account','debited to the realization account','debited to the cash account.','credited to the realization account','','','d','','utme','2007',130,'Admin','2016-12-16 07:02:02','2020-08-07 11:02:55'),(442,'In the trading and profit and loss account of a manufacturing organization, purchases is','always the same amount as the total factory overhead cost','given separately','equivalent to the total cost of goods manufactured','always the same as the prime cost.','','','b','','utme','2007',138,'Admin','2016-12-16 07:02:02','2020-08-12 19:18:09'),(443,'Goods worth N 50 000 were sent at different times from head office to the branch during the year. By the end of the period, only N  40 000 worth of goods had arrived at the branch. Which of the following is correct about the treatment of this transaction?','Branch should debit goods received from head office with N 50 000.','Head office should debit goods sent to branch account with N 10 000.','Head office should debit goods sent to branch account with N 50 000.','Branch should debit goods received from head office with N  10000.','','','b','','utme','2007',120,'Admin','2016-12-16 07:02:02','2020-08-14 10:57:35'),(444,'An accounting ratio that considers only quick assets to determine the short-term safety margin of a firm is the','fixed assets ratio','capital gearing ratio','current assets ratio','acid test ratio.','','','d','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(445,'What would be the total amount received on second call?','N 240, 000','N 280 ,000','N 40,000','N 56,000.','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','c','','utme','2007',121,'Admin','2016-12-16 07:02:02','2020-07-26 03:37:06'),(446,'The total amount of money received on application was','N  5600,00','N  220,000','N  800, 000','N  1 000 000','A company’s authorized share capital was one million ordinary shares at N 1 each. It issued 80% of its shares at N 1.10 per share. 70k was payable on application, 25k on allotment, 10k due on first call and the balance on second call. ','','a','','utme','2007',129,'Admin','2016-12-16 07:02:02','2020-08-13 12:48:17'),(447,'Determine the working capital.','N 7,38,0000','N 8,48,0000','N  5 480 000','N  6 480 000.','Shaku Company Ltd: Stock [N 3,600, 000]; Cash at hand [N800, 000]; Cash in bank [2,400, 000]; Debtors [ 580, 000]; Trade creditors [N 920, 000 ]; \tBank overdraft [ N200, 000 ]; Tax liabilities [N600, 000]; Salary owed to staff {N 180, 000]','','c','','utme','2007',120,'Admin','2016-12-16 07:02:02','2020-08-20 11:09:20'),(448,'The receipts and payments account of a not-for-profit-making organization plays a similar role in a profit-making organization as','a cash account','a balance sheet','an income account','an expenses account','','','b','','utme','2007',131,'Admin','2016-12-16 07:02:02','2020-08-13 12:56:22'),(449,'Osei and Yabo were in partnership sharing profits and losses in the ratio of 3:2. On admitting Takwa, the profit and loss sharing ratio was changed to 1:1:1  Suppose Takwa paid N  30 000 for goodwill this amount would be','credited to Takwa’s current account','debited to goodwill account','shared to all the partners’ capital account','credited to the old partners’ capital account.','','','b','','utme','2007',136,'Admin','2016-12-16 07:02:02','2020-08-14 10:59:38'),(450,'The amount of subscriptions accrued is reported in the balance sheet under','fixed asset','long-term liability','current asset','current liability.','','','d','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-08-12 18:46:05'),(451,'The lighting charge to be apportioned to Zema is','N 891','N 819','N 927','N 975','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','b','','utme','2007',126,'Admin','2016-12-16 07:02:02','2020-08-13 12:56:22'),(452,'Find the salary charged to Zera product.','N 1 854','N 1 845','N 1 062','N 1 134.','Lighting [N2, 925]; Rent [ N2, 640]; Salary [N4, 050] The expenses are for three different products: Zema, Zeta and Zera. They are apportioned on the basis of production. 4500 units of the products are produced, out of which 1260 and 2060 units are for Zema and Zeta respectively.','','c','','utme','2007',139,'Admin','2016-12-16 07:02:02','2020-08-20 11:09:20'),(453,'The gross profit disclosed in the branch stock adjustment account represents','head office profit','unrealized profit','estimated profit','branch profit','','','d','','utme','2007',135,'Admin','2016-12-16 07:02:02','2020-08-20 11:09:20'),(454,'Partners’ share of profit is credited to','a partner’s current account','a partner’s capital account','the profit and loss account','the profit and loss appropriation account','','','a','','utme','2007',128,'Admin','2016-12-16 07:02:02','2020-08-13 12:53:42'),(455,'A pension granted to any past president or vice-president shall be charged to the','consolidated revenue fund','special pension fund','contingency fund','development fund.','','','b','','utme','2007',132,'Admin','2016-12-16 07:02:02','2020-08-14 12:58:02'),(456,'The federal government approved  N 140 m to local governments W, X, Y and Z. The amount is to be shared on the basis of 40% equality. 35% population and 25% internal revenue generation. Calculate the share of local government W on equality.','N 35 m','N 14 m .','N 56 m','N 28 m.','','','c','','utme','2007',129,'Admin','2016-12-16 07:02:02','2020-08-12 19:15:53'),(457,'Stock valuation is useful because it informs the sales department on the','prices of the competing goods','prices that will affect profitability','number of goods to produce','number of goods to sell.','','','b','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-08-20 11:09:20'),(458,'Using the straight-line method, the depreciation of the asset in \tthe first year was','N  210 m','N 343m','N 105m','N 270m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','c','','utme','2007',114,'Admin','2016-12-16 07:02:02','2020-08-07 11:02:55'),(459,'What was the asset value at the beginning of the third year?','N 63 m','N 133 m','N 36m','N 28 m.','An asset was purchased for  N 343 m in 2003. The estimated life of the asset was 3 years with a residual value of  N28 m.','','d','','utme','2007',135,'Admin','2016-12-16 07:02:02','2020-08-12 19:18:09'),(460,'The drawings for the period stand at','N  2 750','N  3 750','N  2 500','N 2 570.','Given: Opening capital [N7, 000 ]; Additional capital [N3, 500 ]; Net profit [N2 500 ]; Closing capital [N10, 250]','','a','','utme','2007',121,'Admin','2016-12-16 07:02:02','2020-08-18 12:34:15'),(461,'I.    Facilitating the preparation of final accounts II.   Making the existence of error easy to detect III. Checking the accuracy of postings periodically. From the above, which of the following are among the uses of control accounts?','I, II and III','I and III','II and III','I and II.','','','c','','utme','2007',143,'Admin','2016-12-16 07:02:02','2020-08-13 12:59:35'),(462,'Determine the amount provided for discount allowed on debtors.','N 1 000','N 3000','N 900','N1500.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',133,'Admin','2016-12-16 07:02:02','2020-08-15 05:32:17'),(463,'The provision for bad debt is','N2 000','N 800','N3 000','N1 900.','Use the information below to answer question: Debtors [N20 000]; Provision for bad debts 10%; Provision for discount on debtors 5%.','','a','','utme','2007',134,'Admin','2016-12-16 07:02:02','2020-08-12 19:15:27'),(464,'The amount to be charged to the profit and loss account is','N 30,000','N25,000','N 5 ,000','N20,000.','Given: Prepaid b/f [N10, 000 ]; Cash paid during the year  [N20, 000]; Prepaid c/f [N5, 000] ','','b','','utme','2007',132,'Admin','2016-12-16 07:02:02','2020-08-17 20:51:13'),(465,'The purchases ledger control account showed a credit balance of N 525 000 on April 30, 2006. This amount shows','what the debtors of a business enterprise owed the business','the total amount which each debtor owed the business','what a business enterprise owed its creditors','the total amount which a business enterprise owed each creditor.','','','c','','utme','2007',127,'Admin','2016-12-16 07:02:03','2020-08-12 19:16:36'),(466,'Find the value of the total assets?','N 17 700','N 10,500','N 20,000','N 15,400.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','d','','utme','2007',136,'Admin','2016-12-16 07:02:03','2020-08-20 12:43:11'),(467,'What will be the equity of the business?','N 12,800','N 4,900','N 8,200','N 9,500.','Use the information below to answer question: Net loss [N2,300]; Capital [N10,500]; Liabilities [N7, 200]','','c','','utme','2007',120,'Admin','2016-12-16 07:02:03','2020-08-17 20:51:13'),(468,'Journal proper is used in recording','transactions that are not regular','returns from customers','credit sales','the receipt and payment of  money','','','a','','utme','2007',134,'Admin','2016-12-16 07:02:03','2020-08-14 13:10:21'),(469,'The process whereby a cheque received by one person is given to another for payment is known as','cheque crossing','payment in cheque','cheque transfer','cheque endorsement.','','','c','','utme','2007',133,'Admin','2016-12-16 07:02:03','2020-08-14 12:58:27'),(470,'Calculate the balance in the bank statement','N 10 740','N11 860','N 17 500','N16,380.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','c','','utme','2007',123,'Admin','2016-12-16 07:02:03','2020-08-14 10:57:35'),(471,'What is the adjusted cash book balance?','N 14,680','N 15,560','N 16,440','N17,000.','Use the Information below to answer questions: Balance as per cash book [N13, 560 ]; Unpresented cheques [N5, 120]; Uncredited lodgments [N2, 300] ; Dividend received not entered in the cash book  [N2, 000]; Bank charges [280 ]; Standing order payments [N600] Balance as per bank statement \t[?]','','a','','utme','2007',126,'Admin','2016-12-16 07:02:03','2020-08-14 13:10:21'),(472,'The fourth stage of the accounting information system is','recording','interpreting','summarizing','classifying.','','','c','','utme','2007',124,'Admin','2016-12-16 07:02:03','2020-08-12 19:15:27'),(473,'How much is sundry expenses?','N 2 700','N 2,250','N1,550','N2000.','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','a','','utme','2007',115,'Admin','2016-12-16 07:02:03','2020-08-14 13:24:24'),(474,'The total of the trial balance is','N 6 600','N 6 650','N 5 600','N 5 900','Given: Returns inwards [N1, 500]; Cash [N1, 550]; Discount received [N2, 850]; Capital [N3, 800 ]; Debtors [N900];\tSundry expenses [  ?  ]; \tThe value of sundry expenses is 150% of returns inwards plus 50% of debtors.','','b','','utme','2007',121,'Admin','2016-12-16 07:02:03','2020-07-30 16:49:44'),(475,'If Mr. Ajasin paid his creditors N 5 000 out of N 20 000 owed, what would be the effect of this transaction on the accounting equation?','A decrease .in the total liabilities and assets by N5 000.','An increase in total liabilities and owners’ equity by N15 000.','An increase in the total assets by N15 000','A decrease in owners’ equity by N 5 000.','','','a','','utme','2007',138,'Admin','2016-12-16 07:02:03','2020-08-14 12:58:02'),(476,'Which of the following branches of accounting was first developed?','Cost accounting','Financial accounting','Management accounting','Petroleum accounting','','','b','','utme','2009',117,'Admin','2016-12-16 21:08:06','2020-08-17 20:51:13'),(477,'The accounting convention which states that the performance of a business should be determined by matching all expenses against all revenues is','accruals','materiality','objectivity','periodicity','','','a','','utme','2009',125,'Admin','2016-12-16 21:08:07','2020-08-20 11:09:20'),(478,'The process of bookkeeping includes records produced from','ledgers','source documents','minutes of meeting','intuitive reasoning','','','b','','utme','2009',125,'Admin','2016-12-16 21:08:07','2020-07-28 08:07:41'),(479,'Musa, a prepaid customer of XYZ and KLM, bought  N1500 recharge card from XYZ and  N2000 recharge card from KLM for business calls. The entry to record these transaction is debit','telephone  N 3,500, credit XYZ and KLM  N 3,500','telephone N 3,500. credit cash  N 3,500','sundries N 3,500, credit KLM  N 3,500','sundries  N 3.500, credit telephone  N3,500','','','a','','utme','2009',130,'Admin','2016-12-16 21:08:07','2020-08-20 12:43:11'),(480,'What is the total debit for the trial balance?','N  4 690 000','N 2 620 000','N  2 520 000','N 1 565 000','Given: Capital [N 2, 375, 000 ]; Debtors [N 495, 000 ]; Motor vehicles [N 870, 000 ]; Creditors [N 245,000 ]; Prepayments [N 500, 000 ]; Bills receivable [N 505, 000 ]; Furniture [N 150, 000 ]','','c','','utme','2009',115,'Admin','2016-12-16 21:08:07','2020-08-12 18:45:25'),(481,'If Odukoya takes money out of the business bank account for his own private use, the effect of the transaction is','increase in assets and increase in capital','increase in assets and decrease in capital','decrease in capital and increase in assets','decrease in capital and decrease in assets.','','','d','','utme','2009',119,'Admin','2016-12-16 21:08:07','2020-08-05 15:32:18'),(482,'What are the current liabilities?','I and II','IV and V','Ill and V','II and IV','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','b','','utme','2009',113,'Admin','2016-12-16 21:08:07','2020-08-14 13:10:21'),(483,'Find the fixed assets','I, II and V','I, II and IV','I, II and III','Ill, IV and V','Use the information to answer questions: I.Operating machine II. Furniture  III .Fixtures and fittings IV.  Loan from friends V. Creditors','','c','','utme','2009',135,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:26'),(484,'Cash discount is often recorded on','the debit side of the cash book','the credit side of the cash book','the folio column of the cash book','both credit and debit side of the cash book','','','d','','utme','2009',104,'Admin','2016-12-16 21:08:08','2020-08-18 12:34:15'),(485,'The standing order is a payment instruction given by a','customer to the bank','bank to the customers','bank to an employee','customer to a fellow customer','','','a','','utme','2009',120,'Admin','2016-12-16 21:08:08','2020-08-17 20:51:13'),(486,'Which of the following should not be added or subtracted from the bank statement balance to determine the adjusted cash balance?','Error by the bank','Under casting of the cash book','Overcasting of the cash book','Bank service charges','','','a','','utme','2009',121,'Admin','2016-12-16 21:08:08','2020-07-28 08:07:41'),(487,'Calculate the balance as per bank statement at the end of the year','24,700','25,200','26,200','27,700','Given: Balance as per cash book [N20,000 ]; Unpresented cheques [N 5,200 ]; Direct credit to the bank [\t  N 1,000 ]; \tDirect debit from the bank [N 1,000 ]; Credit in the cash book [N 500 ]','','a','','utme','2009',130,'Admin','2016-12-16 21:08:08','2020-08-12 19:17:31'),(488,'Determine the capital of the business','N 9,400','N 6,000','N 3,400','N 3,000','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','d','','utme','2009',132,'Admin','2016-12-16 21:08:08','2020-08-12 19:14:31'),(489,'What is the net working capital?','N 2,600','N1,800','N 800','N 600','Use the information to answer question: Total current assets [N2,000 ]; Total fixed assets [N 4,000 ]; Current liabilities [N 1,200 ]; Drawings [N 200 ]; Long-term loan \t[N 2,000 ]','','c','','utme','2009',137,'Admin','2016-12-16 21:08:08','2020-08-13 12:59:35'),(490,'Which of the following items are current assets?','Stock, bills receivable, cash and debtors','Stock, bills payable, cash and debtors','Stock, bad debt, bills receivable and cash','Stock, work-in-progress, cash and bills payable.','','','a','','utme','2009',122,'Admin','2016-12-16 21:08:08','2020-08-20 12:43:11'),(491,'Using FIFO method, what is the value of the closing stock?','N 34,000','N 29,000','N 17,000','N 12,000','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','c','','utme','2009',115,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:05'),(492,'What is the value of closing stock using simple average?','N 11,500','N 17,000','N 17,500','N 28,500','Use the information to answer question: Jan. 1 Received 1,000 units at   N 10 each; Jan. 2 Received 2,000 units at   N  12 each; Jan. 3 Issued 1,500 units; Jan. 4 Received 1,000 units at   N  11 eac; Jan. 5 Issued 1000 units','','d','','utme','2009',118,'Admin','2016-12-16 21:08:08','2020-08-17 20:51:13'),(493,'Which of the following methods gives a conservative closing stock value during a period of rising prices?','LIFO','FIFO','Simple average','Periodic simple average','','','a','','utme','2009',113,'Admin','2016-12-16 21:08:08','2020-08-20 12:43:11'),(494,'Apart from the common control accounts, a control account can also be opened for','sales account','purchases account','cash account','wages account','','','c','','utme','2009',112,'Admin','2016-12-16 21:08:08','2020-08-20 11:09:20'),(495,'Which of the following is a debit item in the purchases ledger control account?','Balance b/d','Cheque dishonoured','Purchases','Balance c/d','','','d','','utme','2009',122,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:05'),(496,'Which of the following is an item in the debit side of the sales ledger control account?','Interest charged by suppliers','Bills receivable honoured','Transfer of credit balances from credit control account','Transfer of debit balances from creditors control account','','','a','','utme','2009',113,'Admin','2016-12-16 21:08:08','2020-08-20 12:43:11'),(497,'The costs incurred by departments that support the production department with such activities as maintenance, production control and storage are called','autonomous costs','service costs','supporting costs','subsidiary costs','','','b','','utme','2009',112,'Admin','2016-12-16 21:08:08','2020-08-13 12:59:35'),(498,'Determine the gross profit','N 49,000','N 48,000','N 31,000','N30,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',133,'Admin','2016-12-16 21:08:08','2020-08-13 12:56:11'),(499,'What is the net profit?','N  46,000','N 45,000','N  28,000','N  27,000','Use the information to answer questions: Work-in-progress 1/1[N 1,000 ];\tWork-in-progress 31/12 \t[N 2,000 ]; Production cost of goods manufactured \t[N 20,000 ] Sales [N 50,000]; Stock of finished goods 1/1 [N 4,000 ]; Stock of finished goods 31/12 [N 5,000 ]; Selling and distribution expenses[  N 2,000 ]; Administrative expenses [ 1,000 ]','','c','','utme','2009',121,'Admin','2016-12-16 21:08:08','2020-08-20 12:43:11'),(500,'Receipts and payments account is a summary of the','budget','trading account','cash book','profit and loss account','','','c','','utme','2009',126,'Admin','2016-12-16 21:08:08','2020-08-12 19:15:53'),(501,'What is the accumulated fund?','23,700','27,750','29,650','51,650','Given: Furniture and fittings [N 20,000]  Equipment [N15,000] Bank overdrafts [ N6,500] Bar creditors [ N4,800 ] Subscription in arrears [ N4,700 ] Subscription in advance [ N650]','','b','','utme','2009',123,'Admin','2016-12-16 21:08:08','2020-08-13 12:48:17'),(502,'I.  Space occupied by each department    II. Average value of stock held by each department III. \tDepartmental turnover  IV. Number of articles sold by each department. From the information given, the two most logical bases for apportioning expenses that are common to departments are','I and II','I and III','II and III','Ill and IV','','','b','','utme','2009',121,'Admin','2016-12-16 21:08:08','2020-08-20 11:09:20'),(503,'One of the purposes of maintaining the account of a branch at the head office is to','record charges in shareholdings','record charges in liabilities','check the excesses of customers','check the excesses of members of staff.','','','d','','utme','2009',130,'Admin','2016-12-16 21:08:08','2020-08-14 13:03:11'),(504,'Which of the following is a common cause of a discrepancy between head office and branch trial balance?','Debtors and cash in transit','Creditors and cash in transit','Stock and cash in transit','Stock and prepayments','','','a','','utme','2009',124,'Admin','2016-12-16 21:08:08','2020-08-20 12:43:11'),(505,'Sule and Ahmad are in partnership sharing profits and losses equally. If  Khadija is admitted as a new partner to take 1/5 th as her share, what is the new profit or loss sharing ratio?','Sule1/3 , Ahmad 1/3 and Khadija 1/3','Sule1/5, Ahmad 1/5 and Khadija 3/5','Sule2/5,  Ahmad2/5 and Khadija 1/5','Sule ,2/5, Ahmad and 1/5 Khadija 2/5','','','c','','utme','2009',139,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:26'),(506,'In partnership account, conversion of non-cash assets into cash \t\tis referred to as','realization','disposal','dissolution','revaluation','','','c','','utme','2009',117,'Admin','2016-12-16 21:08:08','2020-08-12 19:17:07'),(507,'The share premium account would be','credited with application and allotment  N 187,500','debited with application and allotment  N 375,000','credited with application and allotment  N 375,000','debited with application and allotment  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','c','','utme','2009',114,'Admin','2016-12-16 21:08:08','2020-08-14 12:52:51'),(508,'The second and final call account was debited with','ordinary share capital account  N 187,500','12% preference share capital  N  375,000','bank account  N 187,500','12% preference share capital account  N 187,500','Use the information below to answer questions 43 and 44\t A company advertised and issued 750,000,12% preference shares of  N 1 each to be issued at  N 1.50 per share. Applications for 1,370,000 were received at 30k per share. 70k per share (including premium) was due on allotment while 25k per share was due on each of the remaining two calls. All amounts due were received. Application money for 120,000 shares was refunded to unsuccessful applicants and the remaining applicants were allotted shares on pro-rata basis.','','d','','utme','2009',119,'Admin','2016-12-16 21:08:08','2020-08-12 18:46:26'),(509,'Provision for bad and doubtful debts in companies final accounts is treated in','trading account','profit and loss account','fund flow statement','cash flow statement','','','b','','utme','2009',116,'Admin','2016-12-16 21:08:08','2020-08-20 12:43:11'),(510,'The book value per share is obtained by dividing','shareholders equity by outstanding shares','total assets by outstanding shares','gross profit by outstanding shares','net profit by outstanding shares','','','a','','utme','2009',129,'Admin','2016-12-16 21:08:08','2020-08-13 20:41:29'),(511,'Expenditure incurred on consumables and goods for resale is','revenue expenditure','capital expenditure','sunk cost','miscellaneous expenses','','','a','','utme','2009',145,'Admin','2016-12-16 21:08:08','2020-08-13 19:42:03'),(512,'Replacement and renewal of fixed assets are','revenue receipt','capital receipt','capital expenditure','revenue expenditure','','','c','','utme','2009',118,'Admin','2016-12-16 21:08:08','2020-07-28 08:07:41'),(513,'Which of the following is credited to the consolidated revenue fund?','Recurrent expenditure','Capital expenditure','Transfers to revenue fund','Internal revenue','','','c','','utme','2009',118,'Admin','2016-12-16 21:08:09','2020-08-13 12:56:22'),(514,'One of the reasons for the existence of the public sector is to','take adequate care of the needy','supplement the commercial sector','provide cheap services to all citizens','correct perceived inequalities.','','','c','','utme','2009',122,'Admin','2016-12-16 21:08:09','2020-08-12 12:01:09');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `api_call_ip_address` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `ipAddress` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `requestCount` int(11) NOT NULL DEFAULT '1',\n  `countryName` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `countryCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `regionName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `cityName` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `zipCode` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `latitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `longitude` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=11432 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `api_call_ip_address` VALUES (1,'chemistry','41.204.237.6',55,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:16:31','2019-10-11 19:53:51'),(2,'english','41.204.237.6',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-22 17:05:06'),(3,'physics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(4,'government','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(5,'irk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(6,'civiledu','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-11-16 15:20:34'),(7,'currentaffairs','41.204.237.6',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:20:34','2018-12-17 12:57:07'),(8,'economics','197.255.171.219',494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 15:28:05','2018-11-16 16:14:04'),(9,'english','197.255.171.219',622,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 16:17:59','2018-11-16 17:04:20'),(10,'english','105.112.40.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-16 20:56:48','2018-11-16 20:56:48'),(11,'chemistry','66.249.66.146',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 02:15:11','2019-01-20 17:41:49'),(12,'chemistry','105.112.27.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 18:01:33','2018-11-17 18:01:33'),(13,'chemistry','105.112.34.182',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-17 19:42:35','2018-11-17 19:48:36'),(14,'english','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:11:14','2018-11-18 07:11:16'),(15,'mathematics','197.211.57.121',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 07:23:49','2018-11-18 07:23:58'),(16,'english','35.187.100.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:08:37','2018-11-18 15:08:37'),(17,'english','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(18,'biology','54.157.207.237',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:22:23'),(19,'physics','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(20,'chemistry','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(21,'englishlit','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(22,'currentaffairs','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(23,'history','54.157.207.237',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:21:39','2018-11-18 15:21:39'),(24,'mathematics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(25,'commerce','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(26,'biology','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:10'),(27,'physics','54.242.159.164',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(28,'englishlit','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:58:19'),(29,'government','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 16:00:23'),(30,'economics','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:58:19','2018-11-18 15:59:54'),(31,'chemistry','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(32,'crk','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(33,'irk','54.242.159.164',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:01:08'),(34,'insurance','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(35,'currentaffairs','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:23'),(36,'history','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 15:59:54','2018-11-18 16:00:10'),(37,'english','54.242.159.164',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:10','2018-11-18 16:00:23'),(38,'civiledu','54.242.159.164',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:00:23','2018-11-18 16:00:23'),(39,'chemistry','38.132.114.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-18 16:11:29','2018-11-18 16:11:29'),(40,'biology','154.118.73.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:26:38','2018-11-19 07:42:11'),(41,'mathematics','154.118.73.218',271,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 07:57:21','2018-11-19 08:27:22'),(42,'biology','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(43,'physics','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(44,'englishlit','54.226.211.137',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:04'),(45,'crk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(46,'geography','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2018-11-19 08:21:00'),(47,'civiledu','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:37:30'),(48,'currentaffairs','54.226.211.137',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 08:21:00','2019-02-26 18:38:12'),(49,'chemistry','105.112.34.116',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 11:42:43','2018-11-19 12:07:25'),(50,'biology','105.112.34.116',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 12:03:49','2018-11-19 12:04:31'),(51,'chemistry','105.112.32.113',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 15:15:17','2018-11-19 15:15:17'),(52,'chemistry','105.112.38.168',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:39:07','2018-11-19 16:39:53'),(53,'chemistry','105.112.33.204',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 16:41:17','2018-11-19 17:08:45'),(54,'chemistry','105.112.34.113',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 17:16:16','2018-11-19 17:50:41'),(55,'chemistry','105.112.39.125',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-19 18:09:49','2018-11-19 18:10:22'),(56,'commerce','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(57,'accounting','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(58,'biology','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(59,'physics','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(60,'geography','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(61,'civiledu','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(62,'currentaffairs','54.80.113.186',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 08:42:03','2018-11-20 08:42:03'),(63,'mathematics','154.120.115.82',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-20 09:18:07','2018-11-20 09:18:27'),(64,'accounting','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(65,'chemistry','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(66,'government','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(67,'crk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(68,'geography','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(69,'irk','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(70,'currentaffairs','54.162.165.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 07:10:19','2018-11-21 07:10:19'),(71,'chemistry','197.210.55.232',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:36:42','2018-11-21 16:04:23'),(72,'chemistry','197.210.55.152',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 15:51:48','2018-11-21 16:04:07'),(73,'mathematics','197.210.55.232',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:25','2018-11-21 16:04:26'),(74,'english','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(75,'mathematics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(76,'commerce','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(77,'geography','54.235.56.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(78,'economics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(79,'civiledu','54.235.56.218',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:08:35'),(80,'insurance','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:04:57','2018-11-21 16:04:57'),(81,'mathematics','197.210.55.49',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:06:37','2018-11-21 16:12:12'),(82,'accounting','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(83,'physics','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(84,'government','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(85,'crk','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(86,'history','54.235.56.218',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 16:08:35','2018-11-21 16:08:35'),(87,'mathematics','197.210.53.227',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:39:55','2018-11-21 18:46:03'),(88,'mathematics','197.210.53.213',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:41:49','2018-11-21 18:50:09'),(89,'mathematics','197.210.53.241',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 18:50:32','2018-11-21 18:50:33'),(90,'physics','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(91,'englishlit','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(92,'government','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(93,'geography','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(94,'irk','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(95,'civiledu','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:33'),(96,'history','54.81.50.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 19:05:33','2018-11-21 19:05:34'),(97,'mathematics','105.112.39.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:03:34','2018-11-21 20:03:35'),(98,'chemistry','105.112.39.146',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:35:42','2018-11-21 21:02:43'),(99,'biology','197.210.29.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-21 20:41:34','2018-11-21 20:41:35'),(100,'commerce','41.203.72.24',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 08:31:50','2018-11-22 08:31:54'),(101,'biology','154.118.57.75',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:21:36','2018-11-22 09:21:42'),(102,'english','154.118.57.75',430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:32:20','2018-11-22 09:48:24'),(103,'mathematics','154.118.57.75',138,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:34:54','2018-11-22 09:48:24'),(104,'commerce','154.118.57.75',67,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 09:36:29','2018-11-22 09:37:01'),(105,'mathematics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(106,'biology','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(107,'physics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(108,'chemistry','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(109,'geography','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(110,'economics','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(111,'irk','54.92.153.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 10:03:26','2018-11-22 10:03:26'),(112,'crk','105.112.32.158',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:17:53','2018-11-22 12:19:16'),(113,'crk','105.112.26.27',714,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:39:40','2018-11-22 12:50:37'),(114,'geography','105.112.26.27',333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:51:29','2018-11-22 12:56:58'),(115,'irk','105.112.26.27',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 12:56:49','2018-11-22 12:56:57'),(116,'mathematics','197.210.52.148',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:57','2018-11-22 20:15:32'),(117,'mathematics','197.210.53.170',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:41'),(118,'mathematics','197.210.53.74',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:13:58','2018-11-22 20:14:25'),(119,'commerce','197.210.53.170',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:42','2018-11-22 20:14:59'),(120,'commerce','197.210.52.148',44,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-22 20:14:57','2020-02-06 09:18:23'),(121,'commerce','197.210.53.74',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:14:58','2018-11-22 20:15:00'),(122,'accounting','197.210.53.170',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:17'),(123,'accounting','197.210.53.74',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:00','2018-11-22 20:15:31'),(124,'accounting','197.210.52.148',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-22 20:15:02','2018-11-22 20:15:34'),(125,'chemistry','45.222.98.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 08:18:28','2018-11-23 08:29:56'),(126,'crk','105.112.46.53',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 09:29:55','2018-11-23 10:34:53'),(127,'chemistry','105.112.46.53',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 13:13:27','2018-11-23 13:56:23'),(128,'chemistry','105.112.45.132',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:12:24','2018-11-23 16:12:25'),(129,'chemistry','105.112.42.3',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:18:35','2018-11-23 17:30:48'),(130,'accounting','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(131,'biology','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(132,'physics','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(133,'irk','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(134,'civiledu','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(135,'currentaffairs','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(136,'history','54.224.1.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 16:20:27','2018-11-23 16:20:27'),(137,'chemistry','122.172.127.49',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:22:39','2018-11-23 18:25:03'),(138,'physics','122.172.127.49',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 18:25:06','2018-11-23 18:25:21'),(139,'chemistry','105.112.41.195',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 19:35:37','2019-03-06 06:04:52'),(140,'chemistry','105.112.29.74',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-23 20:03:18','2018-11-23 22:58:38'),(141,'chemistry','105.112.40.253',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 09:25:34','2018-11-24 09:25:34'),(142,'english','41.203.72.10',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:16:56','2018-11-24 13:19:08'),(143,'accounting','41.203.72.10',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 13:21:12','2018-11-27 06:00:10'),(144,'english','105.112.44.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 14:40:08','2018-11-24 14:40:08'),(145,'chemistry','105.112.43.82',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 19:55:21','2018-11-24 20:10:56'),(146,'chemistry','105.112.46.85',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 20:28:29','2018-11-28 09:54:04'),(147,'chemistry','105.112.41.167',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:10:36','2018-11-24 21:25:21'),(148,'chemistry','105.112.40.197',880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-24 21:57:55','2018-11-24 22:40:30'),(149,'english','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(150,'physics','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(151,'englishlit','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(152,'crk','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(153,'geography','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(154,'civiledu','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(155,'insurance','54.226.91.116',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 03:52:01','2018-11-25 03:52:01'),(156,'chemistry','105.112.44.13',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 08:45:46','2018-11-25 09:31:13'),(157,'chemistry','105.112.41.148',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 09:44:43','2018-11-25 10:48:33'),(158,'chemistry','66.102.8.72',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:23:12','2018-11-25 10:23:13'),(159,'chemistry','108.177.7.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:28:48','2018-11-25 10:28:49'),(160,'chemistry','108.177.6.56',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:36','2018-11-25 10:29:54'),(161,'chemistry','108.177.6.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:41','2018-11-25 10:29:42'),(162,'chemistry','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:50','2018-11-25 10:29:51'),(163,'civiledu','108.177.6.53',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:53','2018-11-25 10:29:54'),(164,'commerce','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:56','2018-11-25 10:29:57'),(165,'crk','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:29:58','2018-11-25 10:29:58'),(166,'chemistry','108.177.6.58',200,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-25 10:30:05','2019-09-12 00:12:04'),(167,'insurance','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:10','2018-11-25 10:30:11'),(168,'history','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:12','2018-11-25 10:30:12'),(169,'geography','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:15','2018-11-25 10:30:15'),(170,'geography','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:18','2018-11-25 10:30:19'),(171,'commerce','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:19','2018-11-25 10:30:20'),(172,'englishlit','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:20'),(173,'crk','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:20','2018-11-25 10:30:21'),(174,'geography','108.177.6.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:21','2018-11-25 10:30:21'),(175,'civiledu','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:22','2018-11-25 10:30:23'),(176,'civiledu','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:24','2018-11-25 10:30:24'),(177,'insurance','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:25','2018-11-25 10:30:25'),(178,'englishlit','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:27','2018-11-25 10:30:27'),(179,'commerce','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:29','2018-11-25 10:30:29'),(180,'history','108.177.6.58',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:35','2018-11-25 10:30:35'),(181,'insurance','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:37','2018-11-25 10:30:37'),(182,'currentaffairs','108.177.6.56',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:42','2018-11-25 10:30:42'),(183,'chemistry','108.177.7.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:30:45','2018-11-25 10:31:04'),(184,'history','108.177.7.81',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:11','2018-11-25 10:31:39'),(185,'english','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:43','2018-11-25 10:31:43'),(186,'economics','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:47','2018-11-25 10:31:48'),(187,'mathematics','108.177.7.81',100,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:52','2020-08-15 08:37:10'),(188,'englishlit','108.177.7.81',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:32:37'),(189,'chemistry','66.249.88.76',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:31:58','2018-11-25 10:31:59'),(190,'crk','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:10','2018-11-25 10:32:10'),(191,'insurance','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:14','2018-11-25 10:32:14'),(192,'civiledu','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:17','2018-11-25 10:32:18'),(193,'geography','108.177.7.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:32:21','2018-11-25 10:32:22'),(194,'chemistry','104.133.10.99',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 10:47:20','2018-11-25 10:48:39'),(195,'chemistry','105.112.46.101',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:07:44','2018-11-25 12:07:44'),(196,'chemistry','105.112.33.216',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:33:34','2018-11-25 12:56:01'),(197,'currentaffairs','105.112.33.216',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 12:56:40','2018-11-25 13:10:15'),(198,'economics','105.112.33.216',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:10:36','2018-11-25 13:16:55'),(199,'chemistry','105.112.40.40',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:15:46','2018-11-25 13:19:21'),(200,'chemistry','105.112.42.88',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 13:21:39','2018-11-25 13:21:39'),(201,'chemistry','105.112.41.248',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:01:24','2018-11-25 17:01:24'),(202,'english','105.112.41.248',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:04:33','2018-11-25 17:13:28'),(203,'english','105.112.41.0',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 17:18:30','2018-11-25 17:55:36'),(204,'english','197.210.53.141',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 19:58:43','2018-11-25 20:00:07'),(205,'english','197.210.52.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:07','2018-11-25 20:00:41'),(206,'english','197.210.53.23',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:00:21','2018-11-25 20:00:55'),(207,'english','105.112.43.127',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-25 20:19:59','2018-11-25 20:20:01'),(208,'english','197.211.63.176',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:00:14','2018-11-26 05:00:51'),(209,'commerce','197.211.63.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:10','2018-11-26 05:01:10'),(210,'mathematics','197.211.63.176',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 05:01:21','2018-11-26 10:14:10'),(211,'biology','105.112.42.191',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:08','2018-11-26 09:33:08'),(212,'accounting','105.112.42.191',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 09:33:09','2018-11-26 09:33:12'),(213,'english','41.76.197.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:38','2018-11-26 10:12:41'),(214,'currentaffairs','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:50','2018-11-26 10:12:50'),(215,'government','41.76.197.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:54','2018-11-26 10:12:54'),(216,'civiledu','41.76.197.2',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:12:58','2018-11-26 10:13:05'),(217,'englishlit','41.76.197.2',640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:13:14','2018-11-27 16:00:52'),(218,'english','129.56.76.55',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:51:31','2018-11-26 10:52:34'),(219,'mathematics','129.56.76.55',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 10:52:19','2018-11-26 10:52:28'),(220,'english','197.210.227.200',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 11:27:18','2018-11-26 11:27:18'),(221,'english','105.112.28.18',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:05:44','2018-11-26 13:06:45'),(222,'physics','105.112.28.18',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 13:07:06','2018-11-26 13:34:17'),(223,'physics','105.112.21.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:05:04','2018-11-26 16:05:04'),(224,'english','197.210.63.52',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:11:53','2018-11-26 16:11:56'),(225,'english','197.211.61.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:28:59','2018-11-26 16:28:59'),(226,'currentaffairs','197.211.61.82',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 16:29:23','2018-11-28 11:57:35'),(227,'chemistry','77.88.47.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-26 22:02:53','2019-04-15 13:33:36'),(228,'mathematics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(229,'chemistry','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(230,'government','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(231,'economics','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(232,'civiledu','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(233,'currentaffairs','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(234,'history','54.160.243.103',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 00:34:33','2018-11-27 00:34:33'),(235,'commerce','41.203.72.10',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 05:53:52','2018-11-27 06:00:02'),(236,'physics','41.203.72.10',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:00:04','2018-11-27 06:01:08'),(237,'english','41.190.30.106',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:14:24','2018-11-27 06:21:01'),(238,'civiledu','41.190.30.106',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:21:10','2018-11-27 06:21:10'),(239,'civiledu','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:03','2018-11-27 06:38:04'),(240,'english','41.190.2.145',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:07','2018-11-27 06:39:15'),(241,'mathematics','41.190.2.145',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:09','2018-11-27 06:38:26'),(242,'insurance','41.190.2.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:14','2018-11-27 06:38:14'),(243,'chemistry','41.190.2.145',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:38:27','2018-11-27 06:38:37'),(244,'chemistry','105.112.27.114',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 06:39:39','2018-11-27 06:41:07'),(245,'englishlit','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(246,'government','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(247,'crk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(248,'geography','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(249,'irk','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(250,'insurance','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(251,'history','54.198.17.188',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 07:35:15','2018-11-27 07:35:15'),(252,'physics','105.112.28.250',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 08:14:13','2018-11-27 08:14:48'),(253,'english','197.211.61.80',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:09','2018-11-27 13:40:37'),(254,'mathematics','197.211.61.80',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:37:21','2018-11-27 13:38:36'),(255,'english','197.210.226.36',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 13:47:29','2018-11-27 13:47:32'),(256,'english','197.210.29.222',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:18:13','2018-11-27 14:20:00'),(257,'commerce','197.210.29.222',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:20:17','2018-11-27 14:20:22'),(258,'english','105.112.120.89',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:34:35','2018-11-27 14:37:02'),(259,'crk','105.112.120.89',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:38:57','2018-11-27 14:40:34'),(260,'mathematics','129.205.114.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:17','2018-11-27 14:40:17'),(261,'english','129.205.114.24',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:40:21','2018-11-27 14:41:29'),(262,'chemistry','129.205.114.24',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:42:02','2018-11-27 14:42:57'),(263,'physics','129.205.114.24',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 14:43:24','2018-11-27 14:44:50'),(264,'english','129.56.65.7',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:45:40','2018-11-27 16:45:49'),(265,'biology','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:46:22','2018-11-27 16:49:06'),(266,'accounting','129.56.65.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:26','2018-11-27 16:49:26'),(267,'geography','129.56.65.7',440,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 16:49:40','2018-11-27 16:59:23'),(268,'physics','105.112.26.254',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 17:27:44','2018-11-27 17:27:56'),(269,'english','129.56.60.65',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 18:02:16','2018-11-27 18:02:18'),(270,'english','105.112.34.100',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 19:45:56','2018-11-27 19:46:05'),(271,'chemistry','105.112.46.246',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:12:41','2018-11-27 20:12:45'),(272,'mathematics','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:30','2018-11-27 20:13:30'),(273,'currentaffairs','105.112.46.246',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-27 20:13:37','2018-11-27 20:13:38'),(274,'chemistry','5.102.173.71',20,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-11-28 03:23:29','2020-04-23 13:10:36'),(275,'english','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(276,'mathematics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(277,'accounting','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(278,'biology','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(279,'physics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(280,'economics','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(281,'insurance','54.167.144.101',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:17:07','2018-11-28 06:17:07'),(282,'english','197.210.29.201',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 06:58:56','2018-11-28 06:59:01'),(283,'currentaffairs','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:28','2018-11-28 07:00:28'),(284,'mathematics','197.210.29.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:00:50','2018-11-28 07:00:50'),(285,'currentaffairs','197.210.226.232',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:01:32','2018-11-28 07:02:24'),(286,'mathematics','105.112.68.162',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 07:39:34','2018-11-28 07:40:17'),(287,'english','129.56.51.37',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:53:25','2018-11-28 09:57:29'),(288,'englishlit','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:54:29','2018-11-28 17:19:35'),(289,'mathematics','129.56.51.37',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 09:57:49','2018-11-28 09:57:52'),(290,'chemistry','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:36:59','2018-11-28 13:36:59'),(291,'english','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:50:26','2018-11-28 13:50:26'),(292,'mathematics','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:51:25','2018-11-28 13:51:25'),(293,'geography','169.239.194.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 13:52:11','2018-11-28 13:52:11'),(294,'accounting','105.112.42.193',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 14:17:01','2018-11-28 14:17:30'),(295,'english','105.112.46.85',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:11','2018-11-28 17:19:16'),(296,'history','105.112.46.85',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:19:55','2018-11-28 17:20:33'),(297,'english','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:31','2018-11-28 17:48:31'),(298,'mathematics','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:48:35','2018-11-28 17:48:40'),(299,'chemistry','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:49:26','2018-11-28 17:50:45'),(300,'biology','105.112.38.111',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:50:12','2018-11-28 17:50:16'),(301,'accounting','105.112.38.111',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:52:59','2018-11-28 17:52:59'),(302,'history','105.112.38.111',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-28 17:53:04','2018-11-28 17:53:09'),(303,'physics','105.112.26.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 02:32:12','2018-11-29 02:33:14'),(304,'english','105.112.3.81',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:04:28','2018-11-29 05:07:31'),(305,'english','197.210.226.122',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:31:51','2018-11-29 05:33:21'),(306,'english','197.210.226.203',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:33:22','2018-11-29 05:37:32'),(307,'mathematics','197.210.226.122',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 05:38:12','2018-11-29 05:38:14'),(308,'english','102.163.30.124',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:45:54','2018-11-29 07:47:50'),(309,'accounting','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(310,'commerce','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(311,'biology','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(312,'physics','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(313,'chemistry','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(314,'englishlit','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(315,'geography','54.163.144.121',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(316,'crk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(317,'currentaffairs','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(318,'history','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(319,'irk','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(320,'insurance','54.163.144.121',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 07:59:39','2018-11-29 07:59:39'),(321,'chemistry','105.112.68.243',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 11:06:07','2018-11-29 11:06:07'),(322,'chemistry','197.149.95.62',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:08:23','2018-11-29 13:08:50'),(323,'english','197.211.60.94',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-29 13:18:57','2018-11-29 13:19:11'),(324,'english','129.56.159.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:43','2018-11-30 05:15:43'),(325,'mathematics','129.56.159.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 05:15:54','2018-11-30 05:15:55'),(326,'english','129.56.190.68',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 14:03:21','2018-11-30 14:03:21'),(327,'commerce','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(328,'physics','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(329,'chemistry','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(330,'englishlit','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(331,'government','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(332,'currentaffairs','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(333,'history','54.234.70.53',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(334,'mathematics','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(335,'crk','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(336,'geography','54.234.70.53',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 16:46:41','2018-11-30 16:46:41'),(337,'history','105.112.47.245',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 19:21:33','2018-11-30 19:21:33'),(338,'english','105.112.46.230',2160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 21:59:34','2018-12-01 00:55:45'),(339,'commerce','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(340,'biology','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(341,'englishlit','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(342,'government','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(343,'civiledu','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(344,'insurance','54.163.147.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:14:08'),(345,'history','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:06:30','2018-11-30 23:06:30'),(346,'english','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(347,'accounting','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(348,'physics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(349,'geography','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(350,'economics','54.163.147.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-11-30 23:14:08','2018-11-30 23:14:08'),(351,'english','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:57:37','2018-12-01 00:57:45'),(352,'physics','105.112.68.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:08','2018-12-01 00:58:11'),(353,'englishlit','105.112.68.163',840,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 00:58:33','2018-12-01 01:55:58'),(354,'english','101.206.169.22',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:48:58','2018-12-01 03:50:48'),(355,'geography','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:15','2018-12-01 03:49:15'),(356,'history','101.206.169.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:49:20','2018-12-01 03:49:20'),(357,'economics','101.206.169.22',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:50:52','2018-12-01 03:50:57'),(358,'physics','101.206.169.22',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 03:51:11','2018-12-01 03:51:31'),(359,'physics','105.112.21.158',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:34:50','2018-12-01 09:35:53'),(360,'biology','105.112.21.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 09:39:19','2018-12-01 09:39:19'),(361,'economics','105.112.32.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 14:44:33','2018-12-01 14:48:45'),(362,'english','192.241.239.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:43:19','2018-12-01 19:43:34'),(363,'economics','192.241.239.137',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-01 19:45:45','2018-12-01 19:45:48'),(364,'crk','41.90.4.17',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:39:33','2018-12-02 16:39:35'),(365,'english','105.112.68.194',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:46:19','2018-12-02 16:46:49'),(366,'englishlit','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:48:58','2018-12-02 16:48:58'),(367,'government','105.112.68.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 16:50:02','2018-12-02 16:50:02'),(368,'mathematics','105.112.35.216',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-02 20:03:41','2018-12-02 20:05:19'),(369,'mathematics','197.210.44.169',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 07:17:58','2018-12-03 07:17:58'),(370,'english','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:44:57','2019-01-01 08:57:25'),(371,'physics','66.249.66.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:47:01','2018-12-11 00:12:59'),(372,'commerce','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:52:28','2018-12-10 06:37:01'),(373,'mathematics','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-03 16:53:01','2019-01-01 09:08:53'),(374,'english','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(375,'mathematics','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(376,'accounting','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(377,'crk','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(378,'geography','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(379,'civiledu','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(380,'insurance','54.225.18.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 02:53:17','2018-12-04 02:53:17'),(381,'english','197.210.55.187',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:21:56','2018-12-04 05:22:40'),(382,'english','197.210.55.106',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:22:22','2018-12-04 05:23:48'),(383,'english','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:46','2018-12-04 05:23:46'),(384,'economics','197.210.55.77',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:23:50','2018-12-04 05:23:55'),(385,'government','197.210.55.77',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:19','2018-12-04 05:24:19'),(386,'currentaffairs','197.210.55.77',159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 05:24:20','2018-12-04 05:27:52'),(387,'biology','41.203.72.24',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 08:44:56','2018-12-04 08:45:38'),(388,'physics','129.18.144.249',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:37:18','2018-12-04 11:37:48'),(389,'mathematics','129.18.144.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:38:26','2018-12-04 11:38:26'),(390,'chemistry','129.18.144.249',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-04 11:39:19','2018-12-04 12:05:27'),(391,'chemistry','41.58.182.193',441,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:28:25','2019-02-18 09:48:30'),(392,'biology','41.58.182.193',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-05 13:59:24','2019-01-14 13:14:55'),(393,'accounting','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(394,'mathematics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(395,'crk','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(396,'commerce','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(397,'geography','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(398,'physics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(399,'englishlit','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(400,'economics','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(401,'irk','54.211.240.220',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(402,'insurance','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(403,'civiledu','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(404,'history','54.211.240.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 10:11:00','2018-12-06 10:11:00'),(405,'chemistry','5.255.250.167',134,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-06 10:34:57','2020-03-09 20:47:54'),(406,'english','198.54.114.114',2064829,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-06 23:13:35','2019-01-05 10:14:01'),(407,'mathematics','197.210.54.46',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:39:25','2018-12-07 14:39:27'),(408,'chemistry','107.167.108.170',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-07 14:41:02','2018-12-07 14:41:16'),(409,'english','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(410,'commerce','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(411,'physics','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(412,'crk','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(413,'civiledu','54.167.237.12',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:27'),(414,'insurance','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(415,'currentaffairs','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:26','2018-12-08 05:43:26'),(416,'chemistry','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(417,'geography','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(418,'irk','54.167.237.12',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 05:43:27','2018-12-08 05:43:27'),(419,'chemistry','93.158.161.84',3,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 12:23:24','2019-08-28 13:58:43'),(420,'mathematics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(421,'physics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(422,'englishlit','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(423,'government','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(424,'economics','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(425,'irk','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(426,'civiledu','54.161.192.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 16:20:07','2018-12-08 16:20:07'),(427,'chemistry','41.190.2.156',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-08 21:46:56','2018-12-08 21:53:59'),(428,'mathematics','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(429,'english','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(430,'commerce','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(431,'englishlit','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(432,'government','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(433,'economics','54.205.106.150',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(434,'crk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(435,'civiledu','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(436,'geography','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(437,'currentaffairs','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(438,'history','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(439,'irk','54.205.106.150',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-09 21:51:58','2018-12-09 21:51:58'),(440,'english','66.249.66.150',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:24:35','2019-01-21 04:56:34'),(441,'accounting','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:27:10','2018-12-10 05:27:10'),(442,'economics','66.249.66.146',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 05:28:56','2018-12-11 00:19:57'),(443,'currentaffairs','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:26:15','2018-12-10 06:26:15'),(444,'mathematics','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 06:32:16','2018-12-10 06:32:17'),(445,'government','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 09:31:31','2018-12-10 09:31:32'),(446,'crk','66.249.66.148',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:34:20','2018-12-10 11:34:20'),(447,'geography','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-10 11:40:41','2018-12-10 11:40:41'),(448,'english','66.249.66.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:01:44','2018-12-12 11:56:08'),(449,'crk','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:02:21','2018-12-11 00:02:21'),(450,'mathematics','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 00:13:24','2018-12-11 00:13:24'),(451,'english','105.112.45.33',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 12:02:56','2018-12-11 12:38:16'),(452,'chemistry','93.158.166.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 14:37:30','2018-12-11 14:37:30'),(453,'chemistry','180.76.15.21',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 16:53:35','2018-12-11 16:53:35'),(454,'chemistry','180.76.15.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 19:26:46','2018-12-11 19:26:46'),(455,'english','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(456,'mathematics','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(457,'accounting','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(458,'biology','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(459,'geography','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(460,'economics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:52'),(461,'history','54.235.60.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:52','2018-12-11 20:42:53'),(462,'physics','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(463,'government','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(464,'irk','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(465,'civiledu','54.235.60.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 20:42:53','2018-12-11 20:42:53'),(466,'chemistry','180.76.15.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-11 23:48:00','2018-12-11 23:48:00'),(467,'chemistry','180.76.15.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 00:21:20','2018-12-12 00:21:20'),(468,'chemistry','180.76.15.14',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 07:46:34','2018-12-12 07:46:34'),(469,'chemistry','154.113.73.98',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:36','2018-12-12 10:41:28'),(470,'mathematics','154.113.73.98',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 10:09:49','2018-12-12 10:36:58'),(471,'crk','66.249.66.150',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:20','2018-12-12 11:59:20'),(472,'physics','66.249.66.148',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 11:59:38','2019-01-21 04:57:41'),(473,'english','105.112.47.144',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:00:13','2018-12-12 22:58:12'),(474,'englishlit','105.112.47.144',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 12:02:31','2018-12-12 12:04:05'),(475,'accounting','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 21:01:10','2018-12-12 21:01:10'),(476,'chemistry','105.112.47.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-12 22:50:15','2018-12-12 22:50:15'),(477,'english','105.112.46.125',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:28:26','2018-12-13 08:44:01'),(478,'economics','105.112.46.125',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:29:01','2018-12-13 08:29:01'),(479,'english','105.112.41.38',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 08:57:18','2018-12-13 12:33:26'),(480,'english','129.56.134.30',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 09:16:11','2018-12-13 09:16:17'),(481,'chemistry','93.158.161.83',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-13 09:55:28','2019-08-18 19:16:42'),(482,'government','105.112.41.38',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:18','2018-12-13 10:21:18'),(483,'economics','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:21:51','2018-12-13 10:46:29'),(484,'biology','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:30:17','2018-12-13 10:32:39'),(485,'chemistry','105.112.41.38',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:47:04','2018-12-13 11:10:33'),(486,'accounting','105.112.41.38',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 10:57:43','2018-12-13 11:01:54'),(487,'mathematics','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:05:06','2018-12-13 11:15:23'),(488,'englishlit','105.112.41.38',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 11:10:58','2018-12-13 11:14:55'),(489,'chemistry','180.76.15.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 15:45:10','2018-12-13 15:45:10'),(490,'chemistry','180.76.15.16',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:18:30','2018-12-13 16:18:31'),(491,'irk','54.227.19.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:32:52','2018-12-13 16:32:52'),(492,'chemistry','180.76.15.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 16:51:50','2018-12-13 16:51:50'),(493,'english','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:37','2018-12-13 19:06:38'),(494,'mathematics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:40','2018-12-13 19:08:24'),(495,'crk','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:06:57','2018-12-13 19:06:58'),(496,'economics','154.160.7.116',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:01','2018-12-13 19:08:24'),(497,'government','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:14','2018-12-13 19:07:14'),(498,'civiledu','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(499,'biology','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:33','2018-12-13 19:07:33'),(500,'history','154.160.7.116',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 19:07:42','2018-12-13 19:07:42'),(501,'chemistry','178.154.171.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-13 21:33:50','2018-12-13 21:33:50'),(502,'chemistry','180.76.15.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 00:15:20','2018-12-14 00:15:20'),(503,'chemistry','180.76.15.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 07:43:39','2018-12-14 07:43:39'),(504,'chemistry','197.211.61.108',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 15:01:10','2018-12-14 15:01:10'),(505,'english','105.112.46.201',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-14 21:38:58','2018-12-14 21:38:59'),(506,'mathematics','105.112.32.198',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 15:16:16','2018-12-15 15:16:17'),(507,'english','105.112.38.110',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:20:52','2018-12-15 19:20:28'),(508,'biology','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 18:25:40','2018-12-15 18:25:40'),(509,'economics','105.112.38.110',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:21:25','2018-12-15 19:30:28'),(510,'accounting','105.112.38.110',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-15 19:30:34','2018-12-15 19:30:34'),(511,'physics','175.126.202.88',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 00:43:36','2018-12-16 00:44:38'),(512,'accounting','105.112.34.239',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 10:25:26','2018-12-16 10:25:26'),(513,'accounting','105.112.41.67',360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 15:44:34','2018-12-16 16:36:06'),(514,'accounting','105.112.29.182',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 16:52:50','2018-12-16 17:06:10'),(515,'accounting','105.112.34.195',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 17:18:42','2018-12-16 18:36:42'),(516,'chemistry','197.211.56.111',287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:10:04','2018-12-16 19:21:43'),(517,'accounting','105.112.46.33',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:32:00','2018-12-16 19:34:06'),(518,'english','105.112.46.33',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 19:36:15','2018-12-16 19:36:15'),(519,'mathematics','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(520,'englishlit','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(521,'government','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(522,'economics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(523,'civiledu','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:10'),(524,'insurance','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(525,'history','54.158.99.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:10','2018-12-16 23:15:11'),(526,'accounting','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(527,'physics','54.158.99.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-16 23:15:11','2018-12-16 23:15:11'),(528,'chemistry','197.211.61.98',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:12:52','2018-12-17 06:13:44'),(529,'mathematics','197.211.61.98',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:14:29','2018-12-17 06:14:29'),(530,'english','105.112.45.142',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 06:21:44','2018-12-17 06:21:44'),(531,'commerce','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(532,'mathematics','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(533,'englishlit','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(534,'accounting','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(535,'crk','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(536,'civiledu','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(537,'irk','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(538,'insurance','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(539,'currentaffairs','54.242.97.57',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(540,'history','54.242.97.57',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 08:57:45','2018-12-17 08:57:45'),(541,'crk','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(542,'geography','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(543,'economics','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(544,'history','41.204.237.6',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 12:57:07','2018-12-17 12:57:07'),(545,'chemistry','197.210.45.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 17:24:25','2018-12-17 17:39:16'),(546,'mathematics','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:41','2018-12-17 18:04:43'),(547,'english','105.112.28.242',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 18:04:52','2018-12-17 18:04:56'),(548,'chemistry','197.210.227.233',92,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-17 21:46:03','2020-04-28 16:08:26'),(549,'crk','41.90.4.25',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 05:23:20','2018-12-18 05:23:20'),(550,'mathematics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(551,'chemistry','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(552,'englishlit','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(553,'government','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(554,'economics','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(555,'currentaffairs','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(556,'history','54.159.171.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 08:49:26','2018-12-18 08:49:26'),(557,'english','197.149.92.146',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 15:42:59','2019-01-21 14:07:29'),(558,'english','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(559,'physics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(560,'government','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(561,'crk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(562,'economics','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(563,'irk','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(564,'history','54.198.123.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 19:28:59','2018-12-18 19:28:59'),(565,'mathematics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(566,'commerce','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(567,'biology','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(568,'physics','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(569,'crk','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(570,'civiledu','197.149.92.146',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:13:57','2018-12-18 20:13:57'),(571,'mathematics','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(572,'commerce','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(573,'accounting','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(574,'biology','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(575,'government','54.158.200.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:24'),(576,'geography','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(577,'insurance','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:23','2018-12-18 20:18:23'),(578,'english','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(579,'chemistry','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(580,'crk','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(581,'currentaffairs','54.158.200.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-18 20:18:24','2018-12-18 20:18:24'),(582,'english','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:07:37','2018-12-19 07:07:37'),(583,'currentaffairs','105.112.35.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 07:08:26','2018-12-19 07:08:26'),(584,'chemistry','141.8.142.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 10:43:20','2018-12-19 10:43:20'),(585,'chemistry','129.205.114.31',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 14:19:13','2018-12-19 14:46:54'),(586,'chemistry','197.210.45.94',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 18:51:50','2018-12-19 19:42:45'),(587,'chemistry','197.210.226.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:52:25','2018-12-19 19:52:25'),(588,'chemistry','197.210.226.37',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 19:53:27','2018-12-19 19:53:31'),(589,'chemistry','129.205.114.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-19 22:33:31','2018-12-19 22:33:31'),(590,'chemistry','197.210.131.150',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 06:24:47','2018-12-20 06:43:46'),(591,'english','41.58.233.100',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:12:36','2018-12-20 09:15:21'),(592,'commerce','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(593,'biology','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(594,'physics','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(595,'englishlit','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(596,'geography','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(597,'history','41.58.233.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 09:15:21','2018-12-20 09:15:21'),(598,'mathematics','105.112.37.70',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-20 19:08:41','2018-12-20 19:08:41'),(599,'english','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(600,'commerce','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(601,'geography','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(602,'economics','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(603,'civiledu','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(604,'insurance','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(605,'history','54.204.212.210',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 05:54:40','2018-12-21 05:54:40'),(606,'currentaffairs','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:19','2018-12-21 08:05:19'),(607,'biology','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:05:51','2018-12-21 08:05:51'),(608,'english','105.112.47.163',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:24:03','2018-12-21 10:19:51'),(609,'chemistry','105.112.47.163',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:39:11','2018-12-21 08:39:37'),(610,'physics','105.112.47.163',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 08:45:24','2018-12-21 08:45:25'),(611,'mathematics','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(612,'chemistry','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(613,'englishlit','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(614,'geography','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(615,'civiledu','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(616,'currentaffairs','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(617,'history','54.198.141.172',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-21 14:53:30','2018-12-21 14:53:30'),(618,'mathematics','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:33:23','2018-12-22 05:33:23'),(619,'english','197.211.63.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 05:35:01','2018-12-22 05:35:01'),(620,'chemistry','197.211.61.114',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:26:13','2018-12-22 11:17:52'),(621,'english','197.211.61.114',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 09:31:29','2018-12-22 10:01:02'),(622,'mathematics','197.211.61.114',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 10:51:19','2018-12-22 11:44:17'),(623,'biology','197.211.61.114',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:15:56','2018-12-22 11:38:07'),(624,'economics','197.211.61.114',601,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 11:45:00','2018-12-22 11:54:26'),(625,'english','105.112.46.179',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:02:33','2018-12-22 12:32:21'),(626,'biology','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:12:59','2018-12-22 12:12:59'),(627,'mathematics','105.112.46.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 12:14:25','2018-12-22 12:14:25'),(628,'biology','105.112.27.90',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-22 14:12:09','2018-12-22 14:12:19'),(629,'biology','105.112.28.72',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 08:30:27','2018-12-23 08:31:00'),(630,'mathematics','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:34','2018-12-23 10:24:34'),(631,'commerce','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(632,'biology','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(633,'government','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(634,'crk','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(635,'civiledu','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(636,'history','54.162.57.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 10:24:35','2018-12-23 10:24:35'),(637,'english','102.163.30.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-23 14:59:34','2018-12-23 14:59:34'),(638,'chemistry','94.130.64.96',101,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2018-12-24 16:32:40','2019-10-29 05:22:55'),(639,'chemistry','87.250.224.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 15:07:57','2018-12-25 15:07:57'),(640,'english','105.112.46.176',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 16:28:23','2018-12-25 16:28:24'),(641,'chemistry','197.242.105.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-25 21:07:41','2018-12-25 21:07:41'),(642,'mathematics','129.56.150.67',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 06:03:54','2018-12-26 06:03:54'),(643,'currentaffairs','105.112.43.199',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 07:57:50','2018-12-26 08:02:07'),(644,'economics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:16','2018-12-26 08:24:50'),(645,'english','105.112.43.199',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:02:19','2018-12-26 08:13:25'),(646,'biology','105.112.43.199',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:13:33','2018-12-26 08:15:51'),(647,'mathematics','105.112.43.199',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:19:50','2018-12-26 08:19:50'),(648,'chemistry','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:21:57','2018-12-26 08:22:00'),(649,'physics','105.112.43.199',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 08:23:21','2018-12-26 08:23:26'),(650,'biology','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(651,'physics','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(652,'government','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(653,'geography','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(654,'civiledu','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(655,'currentaffairs','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:33:51'),(656,'history','54.147.130.247',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:33:51','2018-12-26 20:41:39'),(657,'accounting','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(658,'chemistry','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(659,'irk','54.147.130.247',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-26 20:41:39','2018-12-26 20:41:39'),(660,'english','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(661,'commerce','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(662,'physics','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(663,'englishlit','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(664,'irk','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(665,'civiledu','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(666,'currentaffairs','54.166.36.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 08:01:43','2018-12-27 08:01:43'),(667,'commerce','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(668,'accounting','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(669,'biology','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(670,'chemistry','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(671,'economics','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(672,'irk','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(673,'currentaffairs','3.81.224.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-27 14:31:44','2018-12-27 14:31:44'),(674,'mathematics','197.211.63.177',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 09:02:54','2018-12-28 09:02:54'),(675,'english','66.249.75.30',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:23:21','2018-12-28 10:23:21'),(676,'government','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:24:59','2018-12-28 10:24:59'),(677,'geography','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:28:56','2018-12-28 10:28:56'),(678,'mathematics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:30:30','2018-12-28 10:30:30'),(679,'physics','66.249.75.29',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 10:43:38','2018-12-28 10:43:39'),(680,'physics','119.4.252.222',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-28 13:32:48','2018-12-28 13:32:48'),(681,'mathematics','105.112.40.153',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:15','2018-12-29 06:30:15'),(682,'english','105.112.40.153',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 06:30:27','2018-12-29 06:30:31'),(683,'mathematics','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(684,'english','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(685,'commerce','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(686,'physics','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(687,'biology','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(688,'englishlit','54.91.82.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(689,'government','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(690,'chemistry','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(691,'geography','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(692,'currentaffairs','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 11:39:05'),(693,'irk','54.91.82.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2019-02-05 12:00:15'),(694,'insurance','54.91.82.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-29 12:14:20','2018-12-29 12:14:20'),(695,'biology','197.211.61.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2018-12-30 18:14:56','2018-12-30 18:14:56'),(696,'englishlit','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 08:59:20','2019-01-01 08:59:20'),(697,'civiledu','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 09:06:49','2019-01-01 09:06:49'),(698,'mathematics','197.210.227.192',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-01 13:01:04','2019-01-01 13:01:05'),(699,'english','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:15','2019-01-02 13:19:15'),(700,'mathematics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:33','2019-01-02 13:19:33'),(701,'physics','196.27.128.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-02 13:19:52','2019-01-02 13:19:52'),(702,'chemistry','216.244.66.249',236,'','US',NULL,'Washington',NULL,NULL,NULL,NULL,'2019-01-03 00:12:52','2020-08-16 03:14:27'),(703,'chemistry','129.56.72.46',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:37:05','2019-01-03 15:53:03'),(704,'physics','129.56.72.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:42:55','2019-01-03 15:42:55'),(705,'english','129.56.72.46',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-03 15:43:08','2019-01-03 15:43:45'),(706,'chemistry','197.211.61.138',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-04 14:31:06','2019-01-04 14:31:06'),(707,'chemistry','54.36.222.37',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:24:51','2019-01-05 15:25:12'),(708,'chemistry','105.112.68.145',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 15:25:43','2019-01-05 15:25:43'),(709,'chemistry','41.58.55.77',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:20:09','2019-01-05 16:29:28'),(710,'government','41.58.55.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-05 16:30:37','2019-01-05 16:30:37'),(711,'english','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:28','2019-01-06 16:30:29'),(712,'physics','105.112.23.151',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 16:30:33','2019-01-06 16:30:33'),(713,'english','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(714,'mathematics','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(715,'physics','54.163.211.17',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(716,'englishlit','54.163.211.17',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(717,'crk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(718,'government','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(719,'irk','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(720,'economics','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(721,'history','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(722,'insurance','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(723,'currentaffairs','54.163.211.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-06 23:37:42','2019-01-06 23:37:42'),(724,'mathematics','105.112.16.240',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(725,'physics','105.112.16.240',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 06:46:19','2019-01-07 06:46:20'),(726,'english','35.171.138.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:39:33','2019-01-07 09:39:33'),(727,'chemistry','141.8.142.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 09:47:24','2019-01-07 09:47:24'),(728,'chemistry','129.56.36.237',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-07 14:52:19','2019-01-07 14:54:09'),(729,'chemistry','129.56.35.102',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:18:44','2019-01-08 07:43:45'),(730,'mathematics','129.56.35.102',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 07:20:24','2019-01-08 07:41:53'),(731,'mathematics','105.112.23.22',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:11:31','2019-01-08 09:11:31'),(732,'english','105.112.32.121',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 09:42:08','2019-01-08 09:42:22'),(733,'chemistry','197.211.61.143',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:10:03','2019-01-08 14:10:20'),(734,'chemistry','154.68.226.2',118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:34:37','2019-01-08 14:39:59'),(735,'english','154.68.226.2',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 14:39:32','2019-01-08 14:39:32'),(736,'chemistry','105.112.75.253',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:28:30','2019-01-08 18:28:52'),(737,'chemistry','105.112.33.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 18:43:41','2019-01-08 18:43:41'),(738,'chemistry','35.192.130.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-08 23:46:16','2019-01-08 23:46:25'),(739,'mathematics','105.112.18.0',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 07:37:37','2019-01-09 07:37:38'),(740,'chemistry','154.118.13.144',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:11:55','2019-01-09 08:13:04'),(741,'mathematics','154.118.13.144',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:12:11','2019-01-09 08:12:47'),(742,'mathematics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(743,'commerce','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(744,'accounting','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(745,'government','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(746,'economics','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(747,'civiledu','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(748,'currentaffairs','3.83.179.175',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:38:25','2019-01-09 08:38:25'),(749,'chemistry','41.77.168.134',56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:45:00','2019-01-09 08:58:31'),(750,'mathematics','41.77.168.134',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:48:48','2019-01-09 08:48:48'),(751,'english','41.77.168.134',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 08:58:57','2019-01-09 09:03:34'),(752,'commerce','54.196.34.230',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:52:38'),(753,'accounting','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(754,'chemistry','54.196.34.230',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:19:42'),(755,'englishlit','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(756,'economics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(757,'irk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(758,'insurance','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:17:02','2019-01-09 09:17:02'),(759,'physics','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(760,'government','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(761,'crk','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(762,'geography','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(763,'civiledu','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(764,'history','54.196.34.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 09:52:38','2019-01-09 09:52:38'),(765,'chemistry','80.248.6.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:06:19','2019-01-09 10:06:19'),(766,'chemistry','154.118.61.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:32:10','2019-01-09 10:32:45'),(767,'english','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(768,'mathematics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(769,'commerce','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(770,'accounting','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(771,'physics','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(772,'government','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(773,'insurance','184.73.62.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 10:45:10','2019-01-09 10:45:10'),(774,'chemistry','197.242.96.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:31:54','2019-01-09 12:36:27'),(775,'commerce','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(776,'accounting','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(777,'physics','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(778,'government','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(779,'crk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(780,'irk','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(781,'history','54.205.113.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 12:40:19','2019-01-09 12:40:19'),(782,'chemistry','197.211.61.140',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:31:17','2019-01-09 13:31:45'),(783,'chemistry','197.210.28.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 13:45:23','2019-01-09 13:45:42'),(784,'chemistry','105.112.26.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:11:31','2019-01-09 16:11:31'),(785,'chemistry','212.100.76.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 16:20:25','2019-01-09 16:20:25'),(786,'english','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(787,'commerce','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(788,'chemistry','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(789,'accounting','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(790,'crk','54.234.47.73',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(791,'englishlit','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(792,'geography','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(793,'economics','54.234.47.73',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:14:14'),(794,'irk','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(795,'history','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(796,'insurance','54.234.47.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 20:13:28','2019-01-09 20:13:28'),(797,'chemistry','51.75.71.123',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-09 23:42:44','2019-01-09 23:43:14'),(798,'chemistry','129.205.114.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 01:56:23','2019-01-10 01:56:30'),(799,'mathematics','197.210.47.164',31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:43:39','2019-01-10 09:02:20'),(800,'chemistry','197.210.47.164',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 08:49:36','2019-01-10 08:58:38'),(801,'mathematics','163.172.103.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 09:01:09','2019-01-10 09:01:09'),(802,'chemistry','41.223.145.174',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 14:44:39','2019-01-10 14:44:40'),(803,'english','54.82.110.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 20:51:21','2019-01-10 20:51:21'),(804,'english','105.112.46.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:06:16','2019-01-10 21:06:16'),(805,'english','54.80.138.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:20','2019-01-10 21:09:20'),(806,'accounting','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(807,'physics','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(808,'chemistry','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(809,'government','54.80.138.166',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:25'),(810,'geography','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:34:23'),(811,'insurance','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(812,'history','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:09:27','2019-01-10 21:45:05'),(813,'commerce','54.80.138.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:33','2019-01-10 21:45:05'),(814,'crk','54.80.138.166',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:45:05'),(815,'economics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:23'),(816,'civiledu','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:34','2019-01-10 21:34:25'),(817,'mathematics','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:45:05'),(818,'biology','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:21:37','2019-01-10 21:21:37'),(819,'irk','54.80.138.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:45:05'),(820,'currentaffairs','54.80.138.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:34:23','2019-01-10 21:34:23'),(821,'mathematics','105.112.46.80',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-10 21:40:26','2019-01-10 21:40:35'),(822,'chemistry','197.210.226.19',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 06:57:07','2019-01-11 07:15:56'),(823,'chemistry','197.210.53.216',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:13','2019-01-11 07:55:13'),(824,'chemistry','197.210.52.249',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:24','2019-02-01 07:57:34'),(825,'chemistry','197.210.53.38',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 07:55:33','2019-01-11 07:55:33'),(826,'chemistry','141.0.12.246',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 08:09:00','2019-01-11 08:09:00'),(827,'chemistry','93.158.161.104',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-11 11:59:42','2019-11-14 01:45:39'),(828,'mathematics','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(829,'physics','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(830,'chemistry','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(831,'government','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(832,'geography','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(833,'economics','54.205.11.114',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(834,'currentaffairs','54.205.11.114',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(835,'english','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(836,'commerce','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(837,'biology','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(838,'crk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(839,'irk','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(840,'insurance','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(841,'civiledu','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(842,'history','54.205.11.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 14:09:18','2019-01-11 14:09:18'),(843,'chemistry','197.210.227.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:05:33','2019-01-11 19:05:33'),(844,'english','197.210.227.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 19:09:52','2019-01-11 19:09:52'),(845,'englishlit','197.211.61.137',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 22:39:43','2019-01-11 22:39:43'),(846,'physics','197.242.97.253',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:01:48','2019-01-11 23:05:05'),(847,'mathematics','197.242.97.253',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:06:07','2019-01-11 23:31:02'),(848,'chemistry','197.211.61.137',101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:08:07','2019-01-11 23:30:04'),(849,'irk','197.211.61.137',2640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:30:32','2019-01-12 01:52:58'),(850,'civiledu','197.211.61.137',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-11 23:38:40','2019-01-12 00:01:30'),(851,'crk','197.211.61.137',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 01:59:32','2019-01-12 02:01:42'),(852,'chemistry','154.113.86.220',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 12:01:05','2019-01-12 12:05:52'),(853,'chemistry','197.210.55.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:02','2019-01-12 13:17:02'),(854,'chemistry','197.210.54.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:17:27','2019-01-12 13:17:35'),(855,'chemistry','197.210.54.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 13:18:25','2019-01-12 13:18:25'),(856,'english','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(857,'mathematics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(858,'commerce','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(859,'biology','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(860,'physics','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(861,'irk','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(862,'insurance','54.211.151.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 15:25:05','2019-01-12 15:25:05'),(863,'english','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(864,'biology','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(865,'physics','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(866,'government','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(867,'irk','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(868,'civiledu','54.173.26.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:53'),(869,'insurance','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:51','2019-01-12 17:38:51'),(870,'chemistry','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(871,'englishlit','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(872,'history','54.173.26.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 17:38:53','2019-01-12 17:38:53'),(873,'english','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(874,'mathematics','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(875,'biology','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(876,'geography','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(877,'irk','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(878,'insurance','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(879,'history','54.81.39.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 19:50:11','2019-01-12 19:50:11'),(880,'english','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:04:50','2019-01-12 20:04:50'),(881,'chemistry','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:05:26','2019-01-12 20:05:27'),(882,'irk','197.210.47.86',180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:21:42','2019-01-12 20:26:58'),(883,'insurance','197.210.47.86',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:27:49','2019-01-12 20:27:49'),(884,'mathematics','197.210.47.86',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-12 20:36:53','2019-01-12 20:39:06'),(885,'chemistry','154.120.102.146',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 00:32:56','2019-01-13 00:33:43'),(886,'english','197.210.54.214',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:56:19'),(887,'english','197.210.54.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:02:41','2019-01-13 08:02:41'),(888,'mathematics','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:09:53','2019-01-13 08:09:53'),(889,'mathematics','197.210.55.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:10:36','2019-01-13 08:10:36'),(890,'english','197.210.55.169',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:51:48','2019-01-13 08:51:48'),(891,'english','197.210.55.13',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 08:59:29','2019-01-13 08:59:29'),(892,'chemistry','197.210.44.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:00:31','2019-01-13 11:00:31'),(893,'english','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(894,'commerce','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(895,'biology','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(896,'chemistry','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(897,'englishlit','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(898,'government','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(899,'history','52.91.34.65',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 11:37:45','2019-01-13 11:37:45'),(900,'english','197.210.226.45',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 14:49:00','2019-01-13 14:49:00'),(901,'physics','197.210.227.184',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(902,'physics','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:57:14','2019-01-13 15:57:14'),(903,'english','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 15:59:10','2019-01-13 15:59:10'),(904,'english','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:02:36','2019-01-13 16:02:36'),(905,'biology','197.210.226.223',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:05:26','2019-01-13 16:05:26'),(906,'biology','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:10:47','2019-01-13 16:12:44'),(907,'physics','197.210.226.32',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 16:39:55','2019-01-13 16:39:55'),(908,'economics','197.210.227.184',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:33:11','2019-01-13 17:41:35'),(909,'mathematics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(910,'english','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(911,'accounting','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(912,'physics','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(913,'chemistry','54.87.49.142',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(914,'englishlit','54.87.49.142',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(915,'crk','54.87.49.142',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 19:20:10'),(916,'government','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(917,'geography','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(918,'economics','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 17:44:02','2019-01-13 17:44:02'),(919,'commerce','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(920,'civiledu','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(921,'currentaffairs','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(922,'history','54.87.49.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:20:10','2019-01-13 19:20:10'),(923,'english','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(924,'commerce','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(925,'physics','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(926,'englishlit','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(927,'geography','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(928,'insurance','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:24:30'),(929,'currentaffairs','52.203.244.194',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:24:30','2019-01-13 19:28:25'),(930,'mathematics','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(931,'accounting','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(932,'crk','52.203.244.194',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-13 19:28:25','2019-01-13 19:28:25'),(933,'mathematics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(934,'commerce','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(935,'government','54.81.43.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(936,'chemistry','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(937,'crk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(938,'englishlit','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(939,'economics','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(940,'irk','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(941,'geography','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(942,'insurance','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(943,'civiledu','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(944,'currentaffairs','54.81.43.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 01:05:11','2019-01-14 01:05:11'),(945,'chemistry','41.58.81.61',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 06:35:26','2019-01-14 11:20:24'),(946,'chemistry','67.222.154.247',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:40:10','2019-01-14 07:40:10'),(947,'mathematics','41.58.182.193',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 07:50:27','2019-01-14 15:09:22'),(948,'commerce','41.58.182.193',2080,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 09:57:28','2019-01-14 13:27:13'),(949,'chemistry','154.120.102.252',854,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:00:36','2019-01-14 10:20:54'),(950,'accounting','41.58.182.193',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:01:42','2019-01-14 13:14:55'),(951,'commerce','197.211.61.136',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 10:38:39','2019-01-14 10:38:59'),(952,'biology','41.58.81.61',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:18:50','2019-01-14 11:19:07'),(953,'chemistry','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:24:11','2019-01-14 11:24:11'),(954,'english','45.222.97.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:25:28','2019-01-14 11:25:28'),(955,'english','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(956,'commerce','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(957,'accounting','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(958,'government','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(959,'crk','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(960,'civiledu','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(961,'insurance','54.167.198.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:29:03','2019-01-14 11:29:03'),(962,'chemistry','73.142.154.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 11:37:12','2019-01-14 11:37:12'),(963,'chemistry','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:10:52','2019-01-14 14:26:38'),(964,'geography','154.118.29.188',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:50:28','2019-01-14 14:27:52'),(965,'history','154.118.29.188',69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:23:24'),(966,'economics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:27:38'),(967,'insurance','154.118.29.188',95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:23','2019-01-14 14:24:14'),(968,'english','154.118.29.188',71,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:24','2019-01-14 14:25:44'),(969,'crk','154.118.29.188',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:33','2019-01-14 14:23:40'),(970,'englishlit','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:53:39','2019-01-14 14:27:06'),(971,'biology','154.118.29.188',77,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:19','2019-01-14 14:25:59'),(972,'accounting','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:21','2019-01-14 14:26:39'),(973,'mathematics','154.118.29.188',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:22','2019-01-14 14:25:10'),(974,'physics','154.118.29.188',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:27','2019-01-14 14:27:00'),(975,'currentaffairs','154.118.29.188',109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:29','2019-01-14 14:24:12'),(976,'commerce','154.118.29.188',88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:24:22'),(977,'irk','154.118.29.188',76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:34','2019-01-14 14:27:24'),(978,'civiledu','154.118.29.188',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:39','2019-01-14 14:27:37'),(979,'government','154.118.29.188',112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 12:55:45','2019-01-14 14:27:52'),(980,'english','105.112.26.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:16:02','2019-01-14 13:16:02'),(981,'physics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:23:47','2019-01-14 13:23:47'),(982,'chemistry','102.176.244.209',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:27:15','2019-01-14 13:27:15'),(983,'englishlit','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:28:42','2019-01-14 13:28:42'),(984,'chemistry','3.82.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:46'),(985,'chemistry','54.221.199.147',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 13:36:46','2019-01-14 13:36:47'),(986,'english','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:18:34'),(987,'mathematics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(988,'government','54.83.84.72',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(989,'crk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(990,'economics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(991,'irk','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:15:32'),(992,'civiledu','54.83.84.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:15:32','2019-01-14 14:35:05'),(993,'insurance','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:41'),(994,'geography','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:49','2019-01-14 14:37:09'),(995,'economics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:29:58','2019-01-14 14:35:25'),(996,'civiledu','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:04','2019-01-14 14:37:40'),(997,'chemistry','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:12','2019-01-14 14:37:32'),(998,'irk','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:34','2019-01-14 14:37:32'),(999,'mathematics','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:38','2019-01-14 14:34:17'),(1000,'currentaffairs','41.217.124.252',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:52','2019-01-14 14:36:53'),(1001,'crk','41.217.124.252',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:30:59','2019-01-14 14:33:56'),(1002,'physics','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:04','2019-01-14 14:34:57'),(1003,'english','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:10','2019-01-14 14:36:11'),(1004,'accounting','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:16','2019-01-14 14:37:41'),(1005,'commerce','41.217.124.252',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:32:24','2019-01-14 14:36:54'),(1006,'government','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:33:56','2019-01-14 14:35:57'),(1007,'englishlit','41.217.124.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:34:57','2019-01-14 14:36:30'),(1008,'accounting','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1009,'physics','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1010,'chemistry','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1011,'currentaffairs','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1012,'history','54.83.84.72',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:05','2019-01-14 14:35:05'),(1013,'biology','41.217.124.252',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:35:25','2019-01-14 14:37:26'),(1014,'history','41.217.124.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:36:21','2019-01-14 14:37:39'),(1015,'mathematics','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:40:53','2019-01-14 15:01:48'),(1016,'insurance','154.120.104.84',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:10','2019-01-14 14:59:05'),(1017,'history','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:40','2019-01-14 14:58:06'),(1018,'government','154.120.104.84',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:00:27'),(1019,'currentaffairs','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:37'),(1020,'economics','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:44','2019-01-14 15:01:20'),(1021,'civiledu','154.120.104.84',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:51','2019-01-14 14:59:48'),(1022,'biology','154.120.104.84',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:41:58','2019-01-14 15:01:49'),(1023,'chemistry','154.120.104.84',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:04','2019-01-14 15:01:09'),(1024,'englishlit','154.120.104.84',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:05','2019-01-14 15:01:56'),(1025,'commerce','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:42:07','2019-01-14 15:01:04'),(1026,'crk','154.120.104.84',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1027,'geography','154.120.104.84',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 14:59:41'),(1028,'english','154.120.104.84',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:43:02','2019-01-14 15:01:16'),(1029,'irk','154.120.104.84',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:44:31','2019-01-14 15:01:38'),(1030,'physics','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:46:00','2019-01-14 15:00:40'),(1031,'accounting','154.120.104.84',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 14:48:21','2019-01-14 15:01:46'),(1032,'crk','54.224.217.18',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 15:45:45','2019-01-14 15:45:45'),(1033,'commerce','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:22:40','2019-01-14 16:22:40'),(1034,'history','105.112.45.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:24:24','2019-01-14 16:24:24'),(1035,'chemistry','168.253.115.37',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 16:46:30','2019-01-14 16:46:30'),(1036,'chemistry','197.242.101.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 17:00:07','2019-01-14 17:00:08'),(1037,'chemistry','105.112.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:34:19','2019-01-14 18:34:19'),(1038,'english','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:33','2019-01-14 18:52:34'),(1039,'chemistry','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:52:40','2019-01-14 18:52:40'),(1040,'mathematics','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:00','2019-01-14 18:53:01'),(1041,'biology','150.70.162.182',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-14 18:53:10','2019-01-14 18:53:11'),(1042,'english','218.94.63.46',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1043,'english','218.94.63.46',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:03'),(1044,'economics','218.94.63.46',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 00:53:03','2019-01-15 00:53:04'),(1045,'english','197.211.61.152',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 03:35:57','2019-01-15 03:36:17'),(1046,'chemistry','154.118.16.190',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:40:00'),(1047,'chemistry','154.118.16.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 09:39:18','2019-01-15 09:39:18'),(1048,'chemistry','105.112.37.149',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:48:36','2019-01-15 10:57:07'),(1049,'economics','105.112.37.149',243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:50:17','2019-01-15 15:03:40'),(1050,'commerce','41.222.43.114',164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 10:59:58','2019-01-15 14:58:39'),(1051,'currentaffairs','41.222.43.114',176,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:04','2019-01-15 14:59:14'),(1052,'accounting','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:13','2019-01-15 14:57:38'),(1053,'history','41.222.43.114',156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:17','2019-01-15 14:58:14'),(1054,'crk','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:27','2019-01-15 14:56:43'),(1055,'irk','41.222.43.114',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:33','2019-01-15 14:59:08'),(1056,'economics','41.222.43.114',171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:38','2019-01-15 14:57:48'),(1057,'mathematics','41.222.43.114',147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:48','2019-01-15 14:58:28'),(1058,'physics','41.222.43.114',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:00:58','2019-01-15 14:56:23'),(1059,'civiledu','41.222.43.114',158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:03','2019-01-15 14:58:33'),(1060,'english','41.222.43.114',161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:19','2019-01-15 14:58:49'),(1061,'insurance','41.222.43.114',178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:33','2019-01-15 14:59:03'),(1062,'government','41.222.43.114',170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:48','2019-01-15 14:58:58'),(1063,'chemistry','41.222.43.114',169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:01:58','2019-01-15 14:58:44'),(1064,'geography','41.222.43.114',183,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:04','2019-01-15 14:53:49'),(1065,'biology','41.222.43.114',149,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:02:13','2019-01-15 14:55:33'),(1066,'englishlit','41.222.43.114',166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:03:14','2019-01-15 14:58:08'),(1067,'chemistry','197.210.45.97',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:04:32','2019-01-15 11:04:46'),(1068,'economics','197.210.45.97',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:15:28','2019-01-15 11:40:03'),(1069,'biology','197.210.45.97',79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:17:50','2019-01-15 11:18:29'),(1070,'chemistry','169.159.108.237',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:25:31','2019-01-15 11:25:31'),(1071,'chemistry','129.18.141.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 11:50:09','2019-01-15 11:50:09'),(1072,'english','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:29','2019-01-15 12:33:29'),(1073,'mathematics','41.58.214.154',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:33:44','2019-01-15 12:33:45'),(1074,'chemistry','154.117.120.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 12:34:24','2019-01-15 12:34:24'),(1075,'englishlit','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:46','2019-01-15 13:57:08'),(1076,'crk','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:47','2019-01-15 13:56:49'),(1077,'accounting','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:48','2019-01-15 13:57:48'),(1078,'history','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:56:58','2019-01-15 13:56:58'),(1079,'mathematics','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:03','2019-01-15 13:57:03'),(1080,'economics','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:13','2019-01-15 13:57:28'),(1081,'geography','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:18','2019-01-15 13:57:18'),(1082,'chemistry','41.184.122.84',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-15 13:57:23','2019-11-12 12:30:51'),(1083,'biology','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:33','2019-01-15 13:57:53'),(1084,'insurance','41.184.122.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:38','2019-01-15 13:58:43'),(1085,'civiledu','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:43','2019-01-15 13:58:53'),(1086,'irk','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:57:58','2019-01-15 13:57:58'),(1087,'physics','41.184.122.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:03','2019-01-15 13:58:48'),(1088,'currentaffairs','41.184.122.84',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:13','2019-01-15 13:58:38'),(1089,'commerce','41.184.122.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 13:58:33','2019-01-15 13:58:33'),(1090,'english','41.217.112.165',595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:13:18','2019-01-15 18:35:09'),(1091,'mathematics','41.217.112.165',682,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 18:37:42','2019-01-15 20:35:48'),(1092,'mathematics','154.118.11.179',218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:09:53','2019-01-15 21:33:28'),(1093,'mathematics','105.112.19.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 20:11:19','2019-01-15 20:11:19'),(1094,'chemistry','154.118.11.179',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:00:39','2019-01-15 21:00:39'),(1095,'english','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1096,'commerce','54.211.194.179',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1097,'biology','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1098,'chemistry','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1099,'accounting','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1100,'physics','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1101,'englishlit','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1102,'geography','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1103,'government','54.211.194.179',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1104,'civiledu','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1105,'currentaffairs','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1106,'crk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1107,'history','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1108,'economics','54.211.194.179',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1109,'irk','54.211.194.179',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-15 21:30:06','2019-01-15 21:30:06'),(1110,'english','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1111,'mathematics','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1112,'commerce','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1113,'biology','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1114,'englishlit','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:18:44'),(1115,'government','54.90.226.10',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1116,'history','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:18:44','2019-01-16 04:38:06'),(1117,'accounting','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1118,'crk','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1119,'economics','54.90.226.10',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1120,'civiledu','54.90.226.10',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1121,'insurance','54.90.226.10',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 04:38:06','2019-01-16 04:38:06'),(1122,'chemistry','105.112.18.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:40:38','2019-01-16 06:40:39'),(1123,'chemistry','105.112.26.11',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 06:57:01','2019-01-16 06:57:01'),(1124,'english','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:11:18','2019-01-16 08:11:18'),(1125,'economics','105.112.43.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:12:44','2019-01-16 08:12:44'),(1126,'government','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 08:37:13','2019-01-16 08:37:13'),(1127,'commerce','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1128,'accounting','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1129,'physics','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1130,'geography','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1131,'civiledu','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1132,'insurance','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1133,'history','54.81.148.221',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 09:17:27','2019-01-16 09:17:27'),(1134,'english','54.235.31.132',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 10:26:39','2019-01-16 10:26:39'),(1135,'government','54.90.239.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:30:56','2019-01-16 12:30:56'),(1136,'economics','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 12:34:56','2019-01-16 12:34:57'),(1137,'insurance','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:48:13','2019-01-16 13:48:13'),(1138,'civiledu','54.226.85.62',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 13:55:55','2019-01-16 13:55:55'),(1139,'government','54.226.242.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 15:41:22','2019-01-16 15:41:22'),(1140,'economics','197.210.64.25',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:45:11','2019-01-16 16:54:28'),(1141,'chemistry','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:58:41','2019-01-16 16:58:53'),(1142,'mathematics','41.138.85.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 16:59:05','2019-01-16 17:07:06'),(1143,'mathematics','41.138.87.73',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 17:49:50','2019-01-16 17:53:24'),(1144,'chemistry','173.225.16.67',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 18:43:39','2019-01-19 04:12:25'),(1145,'commerce','34.207.210.242',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 19:50:10','2019-01-16 19:50:29'),(1146,'biology','197.211.61.152',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 20:40:19','2019-01-16 20:40:19'),(1147,'chemistry','41.138.81.104',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:39:14','2019-01-16 21:39:58'),(1148,'history','41.138.81.104',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 21:40:15','2019-01-16 21:41:27'),(1149,'accounting','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-16 22:44:31','2019-01-16 22:44:31'),(1150,'mathematics','3.83.38.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 04:39:27','2019-01-17 04:39:27'),(1151,'english','102.176.244.209',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 13:44:54','2019-01-21 11:05:17'),(1152,'chemistry','197.255.52.86',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:42:55','2019-01-17 14:43:15'),(1153,'accounting','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1154,'physics','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1155,'chemistry','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 14:52:46'),(1156,'englishlit','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1157,'government','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1158,'geography','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1159,'insurance','54.163.122.110',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 14:52:46','2019-01-17 15:01:49'),(1160,'biology','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1161,'crk','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1162,'civiledu','54.163.122.110',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-17 15:01:49','2019-01-17 15:01:49'),(1163,'chemistry','68.13.248.93',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 02:01:44','2019-01-18 02:02:05'),(1164,'chemistry','72.183.76.77',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 03:28:05','2019-01-18 03:29:19'),(1165,'chemistry','197.211.61.152',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 07:10:31','2019-01-18 07:12:13'),(1166,'biology','54.162.164.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 09:21:43','2019-01-18 09:21:43'),(1167,'chemistry','105.112.112.103',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:18:21','2019-01-18 10:19:31'),(1168,'chemistry','197.210.221.158',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:20:34','2019-01-18 10:21:00'),(1169,'chemistry','165.73.192.11',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:30:28','2019-01-18 10:30:38'),(1170,'chemistry','197.210.47.116',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 10:39:50','2020-04-21 15:26:10'),(1171,'history','66.249.93.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 11:29:27','2019-01-18 11:29:27'),(1172,'chemistry','154.118.20.163',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:12:36','2019-01-18 12:12:36'),(1173,'chemistry','129.56.80.136',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:13:30','2019-01-18 12:14:17'),(1174,'mathematics','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:14:30','2019-01-18 12:14:30'),(1175,'english','129.56.80.136',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 12:15:08','2019-01-18 12:15:09'),(1176,'history','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:34:02','2019-01-18 13:34:02'),(1177,'mathematics','41.203.72.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:35:18','2019-01-18 13:35:19'),(1178,'english','54.90.85.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:46:36','2019-01-18 13:46:36'),(1179,'chemistry','41.191.104.66',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 13:54:05','2019-01-18 13:54:05'),(1180,'chemistry','72.182.201.96',96,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 14:53:27','2019-01-18 14:54:54'),(1181,'chemistry','66.249.73.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:35:04','2019-01-18 16:35:04'),(1182,'commerce','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1183,'physics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1184,'chemistry','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1185,'englishlit','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1186,'geography','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:47'),(1187,'crk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1188,'irk','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:38'),(1189,'currentaffairs','54.211.126.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1190,'civiledu','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1191,'history','54.211.126.68',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:40:42'),(1192,'insurance','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:29','2019-01-18 16:38:29'),(1193,'biology','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:40:42'),(1194,'government','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:38'),(1195,'economics','54.211.126.68',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:38','2019-01-18 16:38:47'),(1196,'english','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1197,'accounting','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:38:47','2019-01-18 16:38:47'),(1198,'mathematics','54.211.126.68',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 16:40:42','2019-01-18 16:40:42'),(1199,'crk','54.161.130.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 17:33:33','2019-01-18 17:33:33'),(1200,'chemistry','102.134.114.214',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 20:59:05','2019-01-18 20:59:42'),(1201,'government','54.227.72.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-18 22:16:13','2019-01-18 22:16:13'),(1202,'government','54.91.120.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 01:06:53','2019-01-19 01:06:53'),(1203,'accounting','54.227.122.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 04:33:38','2019-01-19 04:33:38'),(1204,'commerce','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1205,'physics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1206,'government','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1207,'geography','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1208,'economics','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1209,'irk','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1210,'civiledu','54.221.144.239',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:29:49','2019-01-19 07:29:49'),(1211,'crk','54.221.144.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 07:40:28','2019-01-19 07:40:28'),(1212,'chemistry','129.56.27.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 09:08:03','2019-01-19 09:08:03'),(1213,'chemistry','142.120.136.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 10:20:14','2019-01-19 10:20:14'),(1214,'chemistry','178.5.57.197',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 11:52:36','2019-01-19 11:54:27'),(1215,'chemistry','163.172.103.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 12:08:33','2019-01-19 12:08:33'),(1216,'chemistry','41.190.2.147',87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:15:10','2019-01-19 13:19:19'),(1217,'chemistry','105.176.145.237',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:26:28','2019-01-19 13:31:47'),(1218,'biology','105.176.145.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 13:33:44','2019-01-19 13:33:44'),(1219,'english','197.211.61.157',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 17:04:45','2019-01-19 17:04:45'),(1220,'english','54.162.8.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:40:29','2019-01-19 20:40:29'),(1221,'mathematics','51.15.164.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-19 20:50:22','2019-01-19 20:50:22'),(1222,'history','66.249.88.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:16:25','2019-01-20 07:16:25'),(1223,'history','66.249.93.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 07:27:21','2019-01-20 07:27:21'),(1224,'chemistry','197.210.29.161',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 11:59:53','2019-01-20 12:02:04'),(1225,'english','54.87.9.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 15:47:38','2019-01-20 15:47:38'),(1226,'chemistry','66.249.66.148',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 17:41:21','2019-01-20 17:44:12'),(1227,'chemistry','46.229.168.129',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-20 18:19:28','2020-03-16 03:20:32'),(1228,'english','54.205.83.37',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1229,'mathematics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1230,'government','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1231,'accounting','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1232,'geography','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1233,'crk','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1234,'economics','54.205.83.37',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1235,'economics','54.205.83.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1236,'civiledu','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1237,'insurance','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1238,'currentaffairs','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1239,'history','54.205.83.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-20 22:08:36','2019-01-20 22:08:36'),(1240,'history','66.249.66.146',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:05:55','2019-01-21 05:05:55'),(1241,'mathematics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1242,'commerce','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1243,'physics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1244,'englishlit','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1245,'geography','54.80.54.30',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:32'),(1246,'economics','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1247,'currentaffairs','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:31','2019-01-21 05:07:31'),(1248,'english','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1249,'biology','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1250,'chemistry','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1251,'crk','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1252,'history','54.80.54.30',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 05:07:32','2019-01-21 05:07:32'),(1253,'chemistry','41.190.3.176',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 08:43:52','2019-01-21 08:49:54'),(1254,'chemistry','41.191.104.112',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 13:29:06','2019-02-11 14:20:17'),(1255,'chemistry','197.210.226.53',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:14:04','2019-01-21 17:18:25'),(1256,'chemistry','197.210.226.64',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:19:47','2019-01-21 17:49:54'),(1257,'chemistry','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:21:23','2019-01-21 17:21:23'),(1258,'mathematics','197.210.227.233',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:29:23','2019-01-21 17:29:23'),(1259,'mathematics','197.210.226.64',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 17:48:04','2019-05-25 14:23:44'),(1260,'chemistry','197.210.52.70',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 18:43:18','2019-01-26 10:26:21'),(1261,'mathematics','105.112.23.175',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-21 23:50:11','2019-01-21 23:50:11'),(1262,'chemistry','41.191.104.126',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 12:07:26','2019-01-22 12:13:11'),(1263,'chemistry','105.112.27.156',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:30:44','2019-01-22 13:33:01'),(1264,'english','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:36','2019-01-22 13:33:36'),(1265,'commerce','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:33:56','2019-01-22 13:33:56'),(1266,'mathematics','105.112.27.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 13:34:19','2019-01-22 13:34:19'),(1267,'english','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1268,'accounting','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1269,'government','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1270,'civiledu','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1271,'insurance','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1272,'currentaffairs','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1273,'history','34.228.7.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:33:54','2019-01-22 14:33:54'),(1274,'chemistry','41.191.107.133',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 14:40:08','2019-01-22 14:40:08'),(1275,'chemistry','41.191.107.216',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 15:11:15','2019-04-12 06:41:44'),(1276,'chemistry','41.191.107.208',154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 16:28:30','2019-01-22 16:33:44'),(1277,'biology','54.147.167.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:04:47','2019-01-22 18:04:47'),(1278,'insurance','54.81.167.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 18:45:46','2019-01-22 18:45:46'),(1279,'biology','197.211.61.167',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 19:57:02','2019-01-22 19:57:02'),(1280,'commerce','3.81.140.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 20:21:37','2019-01-22 20:21:37'),(1281,'chemistry','41.191.104.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:21:52','2019-01-22 21:21:52'),(1282,'chemistry','41.191.104.124',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:28:37','2019-01-27 21:27:34'),(1283,'englishlit','54.172.206.195',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-22 21:57:00','2019-01-22 21:57:00'),(1284,'chemistry','197.211.60.92',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 02:17:56','2019-01-23 02:20:31'),(1285,'chemistry','66.249.93.42',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 04:09:58','2019-02-14 14:08:04'),(1286,'chemistry','41.191.107.155',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 10:14:34','2019-01-23 10:14:45'),(1287,'chemistry','41.191.104.86',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 12:43:27','2019-01-23 12:43:27'),(1288,'chemistry','41.191.107.198',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:01:14','2019-01-23 13:08:26'),(1289,'chemistry','41.191.104.249',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-23 13:08:39','2019-01-23 13:15:36'),(1290,'mathematics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1291,'english','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1292,'biology','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1293,'commerce','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1294,'physics','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1295,'englishlit','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1296,'chemistry','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1297,'government','54.162.153.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1298,'irk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1299,'crk','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1300,'geography','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1301,'civiledu','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1302,'currentaffairs','54.162.153.214',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 04:29:59','2019-01-24 04:29:59'),(1303,'economics','212.100.95.210',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:14:58','2019-01-24 08:14:59'),(1304,'chemistry','66.249.93.44',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:24:17','2019-02-04 14:03:36'),(1305,'english','41.191.107.227',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 08:51:56','2019-01-24 09:52:02'),(1306,'chemistry','41.191.107.227',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 09:32:48','2019-01-24 09:34:19'),(1307,'english','41.191.107.206',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 10:03:24','2019-04-18 16:27:25'),(1308,'english','41.217.124.194',937,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 12:30:40','2019-01-24 13:11:10'),(1309,'mathematics','41.217.124.194',363,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 13:22:56','2019-01-24 13:37:40'),(1310,'commerce','54.91.221.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:05:23','2019-01-24 14:05:23'),(1311,'english','41.191.107.138',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:21:11','2019-04-14 17:04:58'),(1312,'chemistry','41.191.107.138',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:33:41','2019-01-27 21:20:19'),(1313,'commerce','41.217.124.194',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:39:06','2019-01-24 14:39:31'),(1314,'english','41.191.104.91',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 14:49:01','2019-04-15 21:32:14'),(1315,'mathematics','41.191.104.91',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-24 15:18:28','2019-04-15 21:20:52'),(1316,'history','3.82.242.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 00:01:01','2019-01-25 00:01:01'),(1317,'englishlit','54.82.44.161',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:01:01','2019-01-25 04:01:01'),(1318,'chemistry','105.112.96.148',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 04:45:44','2019-01-25 04:45:44'),(1319,'chemistry','41.190.2.209',15,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 05:44:24','2019-09-18 16:51:41'),(1320,'chemistry','197.210.8.9',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 06:10:55','2019-01-25 08:35:26'),(1321,'history','54.161.164.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 08:01:07','2019-01-25 08:01:07'),(1322,'chemistry','197.210.60.170',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:01:12','2019-01-25 11:01:12'),(1323,'english','197.210.60.170',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:04:07','2019-01-25 11:07:03'),(1324,'chemistry','41.190.30.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 11:53:49','2019-01-25 11:53:49'),(1325,'biology','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:35:12','2019-01-25 14:35:38'),(1326,'englishlit','41.190.31.164',116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:41:44','2019-01-25 14:56:06'),(1327,'chemistry','197.210.52.237',121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:07','2019-01-25 14:51:53'),(1328,'chemistry','197.210.52.239',162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:46:30','2019-01-25 14:52:22'),(1329,'chemistry','197.210.52.138',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:52:01','2019-01-25 14:52:32'),(1330,'government','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:53:59','2019-01-25 14:53:59'),(1331,'chemistry','197.210.44.60',2108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 14:58:41','2019-01-25 16:28:06'),(1332,'commerce','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:08:21','2019-01-25 15:08:21'),(1333,'accounting','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:09:36','2019-01-25 15:10:08'),(1334,'crk','41.190.31.164',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:11:50','2019-01-25 15:12:13'),(1335,'economics','41.190.31.164',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:16:03','2019-01-25 15:16:03'),(1336,'chemistry','185.118.165.15',126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 15:21:37','2019-01-25 15:27:32'),(1337,'chemistry','105.112.38.7',199,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:49:44','2019-01-25 20:14:22'),(1338,'mathematics','105.112.38.7',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 19:55:45','2019-01-25 20:02:25'),(1339,'english','105.112.38.7',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:12:22','2019-01-25 20:12:23'),(1340,'chemistry','105.112.98.242',1160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 20:23:43','2019-01-25 22:04:17'),(1341,'chemistry','197.210.62.66',281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-25 22:14:16','2019-04-19 16:33:37'),(1342,'chemistry','197.210.226.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:16:32','2019-01-26 10:16:32'),(1343,'chemistry','197.210.52.4',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:20:35','2019-01-26 10:38:06'),(1344,'chemistry','197.210.45.148',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:38:39','2019-01-26 10:40:16'),(1345,'chemistry','197.210.227.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 10:58:13','2019-01-26 10:58:13'),(1346,'mathematics','197.210.227.236',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:08:55','2019-01-26 11:32:01'),(1347,'mathematics','197.210.227.193',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:10:35','2019-01-26 11:45:54'),(1348,'mathematics','197.210.226.194',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:17:53','2019-01-26 11:44:49'),(1349,'mathematics','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:47:35','2019-01-26 11:51:16'),(1350,'mathematics','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:48:03','2019-01-26 11:48:03'),(1351,'mathematics','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:50:09','2019-01-26 11:50:10'),(1352,'mathematics','54.161.51.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 11:52:23','2019-01-26 11:52:23'),(1353,'english','197.210.226.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:34:52','2019-01-26 12:34:53'),(1354,'english','197.210.227.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:39:32','2019-01-26 12:39:33'),(1355,'english','197.210.227.93',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 12:41:59','2019-01-26 12:47:45'),(1356,'english','197.210.8.2',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:13:52','2019-01-26 13:40:15'),(1357,'english','197.210.28.146',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 13:55:37','2019-01-26 13:58:04'),(1358,'english','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:08:24','2019-01-26 14:08:24'),(1359,'english','197.210.52.84',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:09:01','2019-01-26 14:15:02'),(1360,'english','197.210.52.208',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:10:08','2019-01-26 14:11:18'),(1361,'chemistry','197.210.53.120',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:16:42','2019-01-26 14:16:43'),(1362,'chemistry','197.210.52.208',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:20:31','2019-01-26 14:50:18'),(1363,'chemistry','197.210.52.84',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:45:38','2019-01-26 14:45:39'),(1364,'chemistry','197.210.47.74',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 14:53:11','2019-01-26 15:07:24'),(1365,'chemistry','105.112.98.2',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:41:26','2019-01-26 16:41:29'),(1366,'biology','41.203.78.47',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-26 16:56:45','2019-01-26 16:56:45'),(1367,'chemistry','105.112.98.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 09:04:09','2019-01-27 09:04:09'),(1368,'chemistry','105.112.99.102',833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:41:18','2019-01-27 19:46:51'),(1369,'biology','105.112.99.102',778,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:37','2019-01-27 19:46:51'),(1370,'physics','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1371,'economics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:51'),(1372,'commerce','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:34'),(1373,'crk','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:47:37'),(1374,'mathematics','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:38','2019-01-27 19:46:44'),(1375,'english','105.112.99.102',600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:46:51'),(1376,'geography','105.112.99.102',720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:42','2019-01-27 19:47:37'),(1377,'government','105.112.99.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:43','2019-01-27 19:47:37'),(1378,'accounting','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:45','2019-01-27 19:47:40'),(1379,'history','105.112.99.102',760,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 18:53:46','2019-01-27 19:43:54'),(1380,'englishlit','105.112.99.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:47:38'),(1381,'currentaffairs','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:13:59','2019-01-27 19:48:50'),(1382,'civiledu','105.112.99.102',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 19:14:14','2019-01-27 19:47:37'),(1383,'mathematics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1384,'chemistry','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1385,'biology','105.112.98.183',500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1386,'physics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1387,'english','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1388,'economics','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:36','2019-01-27 21:21:53'),(1389,'commerce','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1390,'crk','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:39','2019-01-27 21:21:55'),(1391,'geography','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1392,'civiledu','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1393,'government','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1394,'englishlit','105.112.98.183',518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:40','2019-01-27 21:21:55'),(1395,'accounting','105.112.98.183',519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1396,'currentaffairs','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:42','2019-01-27 21:21:57'),(1397,'history','105.112.98.183',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:38:43','2019-01-27 21:21:57'),(1398,'chemistry','41.191.104.92',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:53:33','2019-01-27 20:54:45'),(1399,'biology','41.191.104.92',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 20:55:04','2019-01-27 20:55:04'),(1400,'chemistry','41.191.104.121',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:01:54','2019-02-06 15:11:52'),(1401,'mathematics','41.191.107.223',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:14:36','2019-04-16 11:16:36'),(1402,'mathematics','41.191.107.138',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:19:15','2019-04-13 21:33:36'),(1403,'physics','41.191.107.138',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:20:04','2019-01-27 21:23:56'),(1404,'mathematics','41.191.104.124',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:26:45','2019-01-27 21:34:02'),(1405,'physics','41.191.104.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 21:27:11','2019-01-27 21:27:24'),(1406,'biology','41.191.104.74',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:07:34','2019-01-27 22:12:08'),(1407,'biology','41.191.107.130',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:13:49','2019-01-27 22:13:59'),(1408,'biology','41.191.104.244',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:46:09','2019-01-27 22:46:50'),(1409,'biology','41.191.107.128',85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 22:56:46','2019-01-27 23:56:03'),(1410,'chemistry','41.191.107.128',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:55:10','2019-01-27 23:55:51'),(1411,'economics','41.191.107.128',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:56:39','2019-01-27 23:56:41'),(1412,'geography','41.191.107.128',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-27 23:57:14','2019-01-28 15:11:27'),(1413,'biology','41.191.104.89',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:59:44'),(1414,'biology','41.191.104.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:51:19','2019-01-28 00:51:19'),(1415,'biology','41.191.104.121',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:55:36','2019-01-28 00:56:31'),(1416,'chemistry','41.191.104.89',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 00:58:40','2019-01-28 09:07:28'),(1417,'biology','41.191.104.85',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:08:49','2019-01-28 01:15:07'),(1418,'biology','41.191.107.221',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:27:22','2019-01-28 01:29:30'),(1419,'biology','41.191.107.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:33:26','2019-01-28 01:33:26'),(1420,'biology','41.191.104.235',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 01:48:38','2019-01-28 01:48:38'),(1421,'mathematics','41.191.107.235',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:55:16','2019-01-28 09:02:13'),(1422,'chemistry','41.191.107.235',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 08:56:12','2019-01-28 08:59:29'),(1423,'mathematics','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:03:14','2019-01-28 09:03:14'),(1424,'physics','41.191.107.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:04:58','2019-01-28 09:04:58'),(1425,'mathematics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:50','2019-01-28 09:08:18'),(1426,'physics','41.191.104.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:06:54','2019-01-28 09:08:18'),(1427,'geography','41.191.104.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 09:07:07','2019-01-28 09:08:12'),(1428,'chemistry','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:36:06','2019-01-28 10:36:06'),(1429,'english','41.191.107.141',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 10:49:24','2019-01-28 10:51:33'),(1430,'chemistry','46.229.168.149',23,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-01-28 11:21:50','2019-12-12 15:32:00'),(1431,'english','3.87.136.203',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:28:02','2019-01-28 14:24:49'),(1432,'englishlit','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:41:29','2019-01-28 11:41:29'),(1433,'mathematics','41.191.107.194',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:14','2019-01-28 12:06:41'),(1434,'chemistry','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:20','2019-01-28 12:01:32'),(1435,'physics','41.191.107.194',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:50:50','2019-01-28 12:03:12'),(1436,'geography','41.191.107.194',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 11:52:52','2019-01-28 12:03:18'),(1437,'chemistry','41.191.104.251',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:08:23','2019-01-28 12:09:42'),(1438,'physics','41.191.107.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:22:50','2019-01-28 12:22:50'),(1439,'physics','41.191.104.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:14','2019-01-28 12:29:14'),(1440,'chemistry','41.191.104.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:29:28','2019-01-28 12:32:08'),(1441,'mathematics','41.191.104.83',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:30:25','2019-01-28 12:34:16'),(1442,'mathematics','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:35:42','2019-01-28 12:56:25'),(1443,'geography','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:40:50','2019-01-28 12:52:24'),(1444,'chemistry','41.191.104.239',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:02','2019-01-28 13:03:30'),(1445,'physics','41.191.104.239',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 12:41:08','2019-01-28 12:53:41'),(1446,'geography','41.191.104.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:04:49','2019-01-28 13:17:51'),(1447,'mathematics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:08:42','2019-04-13 07:20:19'),(1448,'physics','41.191.104.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:12:38','2019-01-28 13:14:17'),(1449,'chemistry','41.191.104.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:16:02','2019-01-28 13:16:02'),(1450,'geography','41.191.104.104',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:24','2019-01-28 13:30:58'),(1451,'chemistry','41.191.104.104',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:19:32','2019-01-28 13:28:22'),(1452,'physics','41.191.104.104',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:20:17','2019-01-28 13:22:40'),(1453,'chemistry','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:33:01','2019-01-28 13:35:54'),(1454,'physics','41.191.107.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:35:11','2019-01-28 13:40:07'),(1455,'mathematics','41.191.107.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:36:00','2019-01-28 13:41:19'),(1456,'mathematics','41.191.107.42',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:39','2019-01-28 13:53:09'),(1457,'chemistry','41.191.107.42',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:42:55','2019-02-06 14:53:26'),(1458,'geography','41.191.107.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:43:17','2019-01-28 13:43:17'),(1459,'physics','41.191.107.139',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:57:59','2019-01-28 14:02:46'),(1460,'chemistry','41.191.107.139',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:06','2019-01-28 14:04:13'),(1461,'mathematics','41.191.107.139',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 13:58:21','2019-01-28 14:04:17'),(1462,'geography','41.191.107.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:01:42','2019-01-28 14:01:42'),(1463,'mathematics','41.191.104.126',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:04:59','2019-04-13 16:07:19'),(1464,'physics','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:05:50','2019-01-28 14:06:23'),(1465,'biology','3.87.136.203',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:26:19','2019-01-28 14:28:08'),(1466,'mathematics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:18','2019-01-28 14:27:18'),(1467,'physics','41.191.104.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:27:22','2019-01-28 14:27:22'),(1468,'chemistry','41.191.107.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:30:58','2019-01-28 14:30:58'),(1469,'physics','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:45','2019-01-28 14:40:48'),(1470,'chemistry','41.191.107.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:40:52','2019-01-28 14:40:52'),(1471,'chemistry','41.191.107.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 14:53:59','2019-01-28 14:53:59'),(1472,'mathematics','41.191.104.122',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:04','2019-01-28 15:06:48'),(1473,'physics','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:27','2019-01-28 15:00:27'),(1474,'chemistry','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:33','2019-01-28 15:00:33'),(1475,'geography','41.191.104.122',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:00:38','2019-01-28 15:00:38'),(1476,'mathematics','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:03:29','2019-01-28 15:08:10'),(1477,'physics','105.176.90.140',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:02','2019-01-28 15:18:49'),(1478,'chemistry','105.176.90.140',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:37','2019-01-28 15:04:37'),(1479,'geography','105.176.90.140',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:04:52','2019-01-28 15:08:28'),(1480,'mathematics','41.191.107.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:05:29','2019-01-28 15:08:01'),(1481,'physics','41.191.107.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:08:08','2019-01-28 15:08:08'),(1482,'mathematics','41.191.107.128',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:10:31','2019-01-28 15:10:39'),(1483,'physics','41.191.104.241',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:14','2019-01-28 15:28:02'),(1484,'chemistry','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:21:51','2019-01-28 15:27:55'),(1485,'mathematics','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:51','2019-01-28 15:28:09'),(1486,'geography','41.191.104.241',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:27:57','2019-01-28 15:28:35'),(1487,'geography','41.191.104.84',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:30:25','2019-01-28 15:32:10'),(1488,'mathematics','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:31:56','2019-01-28 15:31:56'),(1489,'physics','41.191.104.84',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:00','2019-01-28 15:32:07'),(1490,'chemistry','41.191.104.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:32:04','2019-01-28 15:32:04'),(1491,'physics','41.191.104.121',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:49:37','2019-02-06 14:58:19'),(1492,'geography','41.191.104.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:43','2019-01-28 15:58:43'),(1493,'geography','41.191.104.68',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 15:58:53','2019-01-28 15:58:53'),(1494,'chemistry','197.210.47.34',262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 21:35:41','2019-01-28 21:40:22'),(1495,'chemistry','41.203.78.54',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-28 22:07:08','2019-07-20 14:00:13'),(1496,'chemistry','105.112.28.85',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 02:40:05','2019-01-29 02:40:42'),(1497,'chemistry','41.190.2.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 07:03:46','2019-01-29 07:03:46'),(1498,'chemistry','41.76.82.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 09:57:24','2019-01-29 09:57:24'),(1499,'english','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1500,'mathematics','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1501,'commerce','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1502,'englishlit','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1503,'crk','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1504,'geography','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1505,'insurance','54.196.95.120',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1506,'biology','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1507,'chemistry','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1508,'economics','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1509,'civiledu','54.196.95.120',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 12:04:00','2019-01-29 12:04:00'),(1510,'chemistry','41.203.78.51',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 13:55:15','2019-01-29 14:10:57'),(1511,'chemistry','154.120.108.55',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:17:52','2019-01-29 14:29:07'),(1512,'chemistry','154.118.21.2',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:37:44','2019-01-29 14:38:42'),(1513,'chemistry','197.210.28.128',997,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 14:55:16','2019-01-29 16:55:38'),(1514,'chemistry','197.210.53.210',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:47:02','2019-01-29 18:06:59'),(1515,'chemistry','197.210.52.103',295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:49:25','2019-01-29 18:50:59'),(1516,'chemistry','197.210.53.88',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 17:56:42','2019-01-29 17:56:42'),(1517,'chemistry','197.210.53.26',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:09:55','2019-01-29 18:22:46'),(1518,'chemistry','197.210.53.74',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:10:35','2019-01-29 18:10:35'),(1519,'chemistry','197.210.52.203',70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:16:48','2019-02-06 16:04:53'),(1520,'chemistry','197.210.52.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:35:19','2019-01-29 18:39:12'),(1521,'chemistry','197.210.52.202',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:43:20','2019-02-06 16:09:29'),(1522,'chemistry','197.210.53.106',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:44:33','2019-01-29 18:45:54'),(1523,'chemistry','197.210.53.114',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:19','2019-04-20 15:08:50'),(1524,'chemistry','197.210.52.185',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:50:40','2019-01-29 18:51:44'),(1525,'chemistry','197.210.52.26',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 18:51:14','2019-01-29 18:51:36'),(1526,'englishlit','197.211.63.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:31:42','2019-01-29 20:31:42'),(1527,'chemistry','197.210.227.126',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:25','2019-01-29 20:32:25'),(1528,'chemistry','197.210.227.15',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:32:43','2019-01-29 20:32:43'),(1529,'chemistry','197.210.226.233',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:01','2019-01-29 20:37:21'),(1530,'chemistry','197.210.227.179',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:36:27','2019-01-29 20:36:27'),(1531,'mathematics','41.203.78.49',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-29 20:41:06','2019-01-29 20:41:06'),(1532,'crk','41.80.186.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 09:20:34','2019-01-30 09:20:34'),(1533,'biology','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:38','2019-01-30 15:50:53'),(1534,'commerce','54.211.28.234',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1535,'accounting','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1536,'crk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1537,'geography','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:50:53'),(1538,'irk','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:41'),(1539,'insurance','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:53','2019-01-30 15:52:40'),(1540,'englishlit','54.211.28.234',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:50:56','2019-01-30 15:52:40'),(1541,'history','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:07','2019-01-30 15:51:07'),(1542,'government','54.211.28.234',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:51:09','2019-01-30 15:51:09'),(1543,'physics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1544,'economics','54.211.28.234',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:41'),(1545,'currentaffairs','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:40','2019-01-30 15:52:40'),(1546,'english','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1547,'mathematics','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1548,'chemistry','54.211.28.234',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 15:52:41','2019-01-30 15:52:41'),(1549,'englishlit','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:16','2019-01-30 16:51:35'),(1550,'commerce','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:27'),(1551,'biology','54.226.7.228',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:27','2019-01-30 16:51:34'),(1552,'geography','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1553,'civiledu','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:28'),(1554,'currentaffairs','54.226.7.228',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1555,'history','54.226.7.228',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:28','2019-01-30 16:51:35'),(1556,'government','54.226.7.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1557,'english','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1558,'mathematics','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1559,'chemistry','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1560,'crk','54.226.7.228',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-30 16:51:35','2019-01-30 16:51:35'),(1561,'chemistry','41.216.173.30',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 16:01:01','2019-01-31 16:03:23'),(1562,'chemistry','45.33.136.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-01-31 23:43:59','2019-01-31 23:44:26'),(1563,'chemistry','41.203.78.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:52:42','2019-02-01 07:52:42'),(1564,'chemistry','197.210.53.198',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:55:26','2019-02-01 07:56:02'),(1565,'chemistry','197.210.53.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 07:57:16','2019-02-01 07:57:16'),(1566,'chemistry','45.33.136.190',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:27:53','2019-02-01 08:31:16'),(1567,'chemistry','197.211.60.139',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:43:16','2019-02-01 08:45:06'),(1568,'mathematics','197.211.60.139',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 08:45:55','2019-02-01 08:45:55'),(1569,'chemistry','197.210.29.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-01 09:32:41','2019-02-01 09:32:41'),(1570,'chemistry','105.112.98.24',131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-02 22:45:13','2019-02-02 23:25:03'),(1571,'civiledu','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 20:57:22','2019-02-03 20:57:22'),(1572,'currentaffairs','34.233.121.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 21:10:15','2019-02-03 21:10:15'),(1573,'accounting','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1574,'chemistry','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1575,'crk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1576,'geography','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1577,'irk','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1578,'insurance','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1579,'currentaffairs','3.84.36.119',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:16:16','2019-02-03 22:16:16'),(1580,'chemistry','41.66.199.133',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:36:31','2019-02-03 23:09:20'),(1581,'biology','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 22:54:09','2019-02-03 22:54:09'),(1582,'commerce','54.167.80.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-03 23:10:29','2019-02-03 23:10:29'),(1583,'geography','3.81.102.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 00:57:31','2019-02-04 00:57:31'),(1584,'mathematics','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1585,'commerce','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1586,'chemistry','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1587,'irk','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1588,'civiledu','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1589,'currentaffairs','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1590,'history','54.198.22.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 19:29:55','2019-02-04 19:29:55'),(1591,'commerce','54.162.226.75',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-04 23:35:46','2019-02-04 23:35:46'),(1592,'crk','54.162.82.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:35:33','2019-02-05 05:43:58'),(1593,'accounting','54.162.82.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 05:50:40','2019-02-05 05:50:40'),(1594,'history','54.90.106.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 07:25:12','2019-02-05 07:25:12'),(1595,'accounting','54.91.82.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 11:33:57','2019-02-05 11:33:57'),(1596,'chemistry','77.88.47.65',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-05 11:57:00','2020-03-07 02:21:05'),(1597,'geography','54.204.118.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 12:42:45','2019-02-05 12:42:45'),(1598,'chemistry','95.216.6.46',57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 14:24:43','2019-02-05 14:25:02'),(1599,'geography','54.234.119.237',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 17:21:12','2019-02-05 17:21:12'),(1600,'irk','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 22:54:06','2019-02-05 22:54:06'),(1601,'chemistry','54.224.201.77',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-05 23:25:31','2019-02-05 23:25:31'),(1602,'accounting','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1603,'biology','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:23:05'),(1604,'physics','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1605,'chemistry','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1606,'geography','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1607,'economics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:20:31'),(1608,'civiledu','54.159.117.127',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:20:31','2019-02-06 01:22:33'),(1609,'english','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1610,'mathematics','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1611,'englishlit','54.159.117.127',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:51'),(1612,'government','54.159.117.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:33','2019-02-06 01:22:33'),(1613,'history','54.159.117.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 01:22:56','2019-02-06 01:22:56'),(1614,'physics','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:32:08'),(1615,'geography','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1616,'physics','41.191.104.236',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:30','2019-02-06 10:22:30'),(1617,'mathematics','41.191.104.236',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:22:50','2019-04-14 05:45:01'),(1618,'chemistry','41.191.104.236',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:33:26','2019-02-06 10:35:49'),(1619,'chemistry','41.191.107.136',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:04','2019-02-07 10:43:21'),(1620,'mathematics','41.191.107.136',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:11','2019-04-14 16:53:02'),(1621,'geography','41.191.107.136',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:36:15','2019-02-07 10:13:16'),(1622,'physics','41.191.107.136',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:40:28','2019-02-07 11:01:08'),(1623,'chemistry','41.191.107.212',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:49:30','2019-04-18 18:00:20'),(1624,'physics','41.191.107.212',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:34','2019-04-17 10:11:06'),(1625,'geography','41.191.107.212',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:44','2019-02-06 13:24:41'),(1626,'mathematics','41.191.107.212',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:53:49','2019-04-17 10:14:28'),(1627,'chemistry','41.191.107.52',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 10:54:59','2019-02-06 10:55:38'),(1628,'chemistry','41.191.104.115',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 11:10:51','2019-02-06 11:10:51'),(1629,'civiledu','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:13:06','2019-02-06 12:13:06'),(1630,'currentaffairs','54.167.145.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 12:35:08','2019-02-06 12:35:08'),(1631,'mathematics','41.191.107.220',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:39:15'),(1632,'mathematics','41.191.107.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:38:11','2019-02-06 13:38:11'),(1633,'chemistry','41.191.107.220',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:02','2019-02-06 13:44:46'),(1634,'physics','41.191.107.220',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:39:55','2019-02-06 13:42:33'),(1635,'chemistry','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:03','2019-02-06 13:58:11'),(1636,'geography','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:47:46','2019-02-06 13:47:46'),(1637,'physics','41.191.104.99',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:51:59','2019-02-06 13:57:37'),(1638,'mathematics','41.191.104.99',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 13:56:24','2019-04-13 23:06:19'),(1639,'physics','41.191.107.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 14:43:26','2019-02-06 16:44:44'),(1640,'chemistry','54.221.129.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:09:36','2019-02-06 15:40:30'),(1641,'mathematics','41.191.104.121',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:15:51','2019-02-06 15:15:51'),(1642,'mathematics','41.191.104.217',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:29:45','2019-02-06 15:52:46'),(1643,'mathematics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1644,'biology','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1645,'physics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1646,'government','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1647,'economics','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1648,'insurance','54.221.129.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:40:30','2019-02-06 15:40:30'),(1649,'chemistry','41.191.104.217',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:53:35','2019-02-06 15:55:08'),(1650,'chemistry','197.210.52.163',51,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 15:59:16','2020-04-12 16:16:23'),(1651,'chemistry','197.210.52.177',81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:02:47','2019-02-06 16:09:41'),(1652,'chemistry','197.210.52.125',42,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:03:44','2019-11-29 22:14:03'),(1653,'chemistry','197.210.52.1',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:12','2019-02-06 16:04:36'),(1654,'chemistry','41.191.104.76',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:04:57','2019-02-06 16:04:57'),(1655,'mathematics','41.191.104.76',34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:05:52','2019-04-17 07:41:52'),(1656,'chemistry','197.210.53.23',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-06 16:10:28','2020-02-04 09:59:59'),(1657,'chemistry','41.191.104.238',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:21','2019-02-06 16:23:37'),(1658,'mathematics','41.191.104.238',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:22:53','2019-02-06 17:51:13'),(1659,'geography','41.191.104.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:23:13','2019-02-06 16:23:13'),(1660,'physics','41.191.104.238',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:25:01','2019-02-06 17:52:29'),(1661,'mathematics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:23','2019-02-06 16:32:23'),(1662,'physics','41.191.104.233',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:32:36','2019-02-06 16:32:36'),(1663,'chemistry','41.191.107.146',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:57:39','2019-02-06 16:57:39'),(1664,'physics','41.191.107.146',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 16:58:54','2019-02-06 17:00:38'),(1665,'physics','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:48','2019-02-06 17:03:48'),(1666,'geography','41.191.107.215',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:03:55','2019-02-06 17:03:55'),(1667,'chemistry','41.191.107.215',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:06:36','2019-03-28 16:12:49'),(1668,'mathematics','41.191.104.67',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:15:33','2019-02-06 17:20:02'),(1669,'chemistry','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:24:42','2019-02-06 17:27:26'),(1670,'physics','41.191.104.211',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:25:40','2019-02-06 17:26:06'),(1671,'mathematics','41.191.104.211',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:32','2019-04-14 07:05:25'),(1672,'geography','41.191.104.211',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:27:34','2019-02-06 17:27:34'),(1673,'geography','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:29:31','2019-02-07 13:38:12'),(1674,'physics','41.191.107.38',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:30:12','2019-02-07 16:06:38'),(1675,'mathematics','41.191.107.38',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:35:19','2019-04-13 08:12:17'),(1676,'geography','41.191.107.38',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:36:56','2019-02-07 16:06:34'),(1677,'mathematics','41.191.104.244',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:40:30','2019-04-14 21:51:22'),(1678,'physics','41.191.104.244',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 17:43:54','2019-02-06 17:46:16'),(1679,'geography','54.145.62.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 18:07:58','2019-02-06 18:07:58'),(1680,'english','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1681,'english','3.81.49.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1682,'mathematics','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1683,'physics','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1684,'commerce','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1685,'chemistry','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1686,'biology','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1687,'government','3.81.49.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1688,'civiledu','3.81.49.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1689,'irk','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1690,'currentaffairs','3.81.49.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 22:52:26','2019-02-06 22:52:26'),(1691,'biology','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:52'),(1692,'physics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1693,'government','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:35'),(1694,'geography','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1695,'economics','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1696,'irk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:57:23'),(1697,'insurance','54.159.238.58',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:57:23','2019-02-06 23:58:17'),(1698,'mathematics','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1699,'commerce','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1700,'crk','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1701,'currentaffairs','54.159.238.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:17'),(1702,'history','54.159.238.58',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:17','2019-02-06 23:58:55'),(1703,'englishlit','54.159.238.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-06 23:58:48','2019-02-06 23:58:48'),(1704,'chemistry','129.205.112.31',328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 04:25:52','2019-02-09 18:02:32'),(1705,'mathematics','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:08:57','2019-02-07 08:31:49'),(1706,'physics','41.191.107.132',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:24:48','2019-02-07 07:53:26'),(1707,'geography','41.191.107.132',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 07:52:40','2019-02-07 08:17:40'),(1708,'chemistry','41.191.107.132',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 08:14:41','2019-02-07 08:18:31'),(1709,'physics','41.191.107.129',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 14:01:28'),(1710,'physics','41.191.107.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 13:59:51','2019-02-07 13:59:51'),(1711,'biology','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:01:37','2019-02-07 14:01:37'),(1712,'chemistry','41.191.107.129',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:03:41','2019-02-07 14:14:08'),(1713,'mathematics','41.191.107.129',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:15:41','2019-02-07 14:17:01'),(1714,'physics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:26:47','2019-02-07 14:47:40'),(1715,'chemistry','197.210.227.51',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:31:34','2019-02-07 14:40:43'),(1716,'physics','41.191.104.213',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:38:05','2019-02-07 14:59:23'),(1717,'chemistry','197.210.227.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:39:16','2019-02-07 14:39:16'),(1718,'chemistry','41.191.104.213',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:41:28','2019-02-07 15:01:58'),(1719,'chemistry','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:42:07','2019-02-07 14:42:07'),(1720,'economics','54.224.224.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:44:11','2019-02-07 14:44:11'),(1721,'geography','41.191.104.213',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:51:09','2019-02-07 14:51:09'),(1722,'mathematics','54.224.224.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 14:53:38','2019-02-07 14:55:12'),(1723,'chemistry','41.191.107.34',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:18:05','2019-02-07 15:48:37'),(1724,'physics','41.191.107.34',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:30:55','2019-02-07 15:45:52'),(1725,'chemistry','41.191.107.38',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 15:54:06','2019-02-07 16:07:17'),(1726,'physics','41.191.104.81',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:07:36','2019-02-07 16:09:23'),(1727,'chemistry','41.191.104.81',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:12:44','2019-02-07 16:12:44'),(1728,'mathematics','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:46','2019-02-07 16:22:18'),(1729,'chemistry','41.191.107.206',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:54','2019-02-07 16:24:30'),(1730,'physics','41.191.107.206',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:57','2019-02-07 16:38:27'),(1731,'geography','41.191.107.206',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:19:59','2019-02-07 16:30:19'),(1732,'english','197.210.227.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:31:53','2019-02-07 16:31:53'),(1733,'history','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:33:37','2019-02-07 16:33:37'),(1734,'biology','41.191.107.206',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:03','2019-04-18 16:28:46'),(1735,'economics','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:39','2019-02-07 16:34:39'),(1736,'accounting','41.191.107.206',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:34:56','2019-02-07 16:34:56'),(1737,'english','184.73.22.37',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:38:25','2019-02-07 16:50:24'),(1738,'physics','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:43:12','2019-02-07 16:43:12'),(1739,'english','154.66.57.61',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:44:58','2019-02-07 16:47:26'),(1740,'accounting','41.191.107.193',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:45:10','2019-02-07 16:47:47'),(1741,'biology','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:50','2019-02-07 16:46:50'),(1742,'chemistry','41.191.107.193',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:46:55','2019-02-07 16:46:55'),(1743,'mathematics','41.191.107.193',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:48:25','2019-04-13 07:49:25'),(1744,'commerce','154.66.57.61',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 16:49:07','2019-02-07 16:49:08'),(1745,'mathematics','184.73.22.37',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:05:51','2019-02-07 17:05:51'),(1746,'englishlit','197.210.227.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:06:39','2019-02-07 17:06:57'),(1747,'mathematics','197.210.227.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:08:37','2019-02-07 17:08:37'),(1748,'mathematics','197.210.227.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:12:32','2019-02-07 17:12:32'),(1749,'english','197.210.227.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:13:32','2019-02-07 17:15:24'),(1750,'english','197.210.227.160',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 17:17:16','2019-02-07 17:17:16'),(1751,'government','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:04','2019-02-07 19:40:04'),(1752,'chemistry','54.159.178.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 19:40:05','2019-02-07 19:40:05'),(1753,'chemistry','41.203.78.86',177,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 22:56:58','2019-02-08 01:04:26'),(1754,'english','41.203.78.86',10687,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-07 23:11:07','2019-02-08 01:12:58'),(1755,'chemistry','41.203.72.82',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:02:21','2019-02-08 01:03:10'),(1756,'mathematics','41.203.78.86',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:13:49','2019-02-08 01:20:31'),(1757,'commerce','41.203.78.86',1400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 01:21:06','2019-02-08 01:25:03'),(1758,'accounting','129.205.112.31',637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 03:59:44','2019-02-10 07:56:43'),(1759,'commerce','129.205.112.31',16415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:02:10','2019-02-10 07:24:35'),(1760,'english','129.205.112.31',3880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 04:54:53','2019-02-09 20:30:32'),(1761,'mathematics','129.205.112.31',1581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 05:04:07','2019-02-10 08:18:03'),(1762,'economics','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:37:15','2019-02-08 09:37:15'),(1763,'currentaffairs','3.89.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 09:42:06','2019-02-08 09:42:06'),(1764,'commerce','41.203.78.102',5836,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 13:46:12','2019-02-08 21:42:21'),(1765,'english','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1766,'accounting','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1767,'biology','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1768,'englishlit','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1769,'government','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1770,'economics','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1771,'history','54.147.54.190',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 15:18:47','2019-02-08 15:18:47'),(1772,'insurance','3.81.3.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 16:42:58','2019-02-08 16:42:58'),(1773,'biology','54.161.98.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 17:53:20','2019-02-08 17:53:20'),(1774,'mathematics','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 20:43:14','2019-02-08 20:43:14'),(1775,'insurance','3.82.5.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:12:10','2019-02-08 21:12:10'),(1776,'chemistry','41.203.78.102',2128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:33:15','2019-02-08 22:12:38'),(1777,'mathematics','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:42:45','2019-02-08 21:51:29'),(1778,'english','41.203.78.102',1360,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:43:28','2019-02-09 01:27:32'),(1779,'accounting','41.203.78.102',2720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:51:49','2019-02-08 21:56:42'),(1780,'biology','41.203.78.102',2400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 21:57:02','2019-02-08 22:05:16'),(1781,'physics','41.203.78.102',800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:06:14','2019-02-08 22:07:44'),(1782,'englishlit','41.203.78.102',1880,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:13:10','2019-02-08 22:20:30'),(1783,'government','41.203.78.102',2800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 22:21:29','2019-02-08 23:52:43'),(1784,'crk','41.203.78.102',3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:52:55','2019-02-09 00:00:48'),(1785,'chemistry','54.91.117.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-08 23:57:22','2019-02-08 23:57:22'),(1786,'geography','41.203.78.102',1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:01:57','2019-02-09 00:24:16'),(1787,'economics','41.203.78.102',3720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:26:24','2019-02-09 00:34:36'),(1788,'irk','41.203.78.102',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:35:41','2019-02-09 00:37:20'),(1789,'civiledu','41.203.78.102',2240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:38:00','2019-02-09 00:44:30'),(1790,'insurance','41.203.78.102',1680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:46:06','2019-02-09 00:57:03'),(1791,'civiledu','52.55.225.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:48:42','2019-02-09 00:48:42'),(1792,'currentaffairs','41.203.78.102',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 00:57:53','2019-02-09 01:00:05'),(1793,'history','41.203.78.102',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 01:01:27','2019-02-09 01:01:41'),(1794,'government','54.197.84.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 03:29:54','2019-02-09 03:29:54'),(1795,'accounting','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 05:17:44','2019-02-09 05:17:44'),(1796,'crk','54.210.158.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 06:41:14','2019-02-09 06:41:14'),(1797,'chemistry','40.77.167.168',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-09 07:15:13','2020-01-13 09:41:58'),(1798,'mathematics','197.210.8.53',432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:27','2019-02-09 08:02:28'),(1799,'chemistry','197.210.8.53',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 07:54:53','2019-02-09 07:54:53'),(1800,'commerce','197.210.8.53',2379,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:03:00','2019-02-09 09:22:09'),(1801,'mathematics','3.83.132.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:18:09','2019-02-09 08:18:09'),(1802,'biology','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 08:54:44','2019-02-09 08:54:44'),(1803,'chemistry','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:18:40','2019-02-09 09:18:40'),(1804,'englishlit','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:17','2019-02-09 09:19:17'),(1805,'mathematics','54.198.30.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 09:19:52','2019-02-09 09:19:52'),(1806,'economics','54.83.86.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 10:26:21','2019-02-09 10:26:21'),(1807,'chemistry','197.210.44.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:14:26','2019-02-09 11:15:08'),(1808,'physics','197.210.44.28',952,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 11:16:33','2019-02-09 12:01:21'),(1809,'commerce','197.210.227.64',78,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:22:57','2019-02-09 12:24:33'),(1810,'physics','54.167.138.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 12:50:33','2019-02-09 13:26:19'),(1811,'chemistry','157.55.39.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:39:52','2019-02-09 13:39:52'),(1812,'english','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:47:52','2019-02-09 13:47:52'),(1813,'government','54.226.144.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 13:53:44','2019-02-09 13:53:44'),(1814,'englishlit','54.160.227.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 14:42:34','2019-02-09 14:42:34'),(1815,'englishlit','34.207.56.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 17:36:00','2019-02-09 17:36:00'),(1816,'chemistry','46.229.168.134',104,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-02-09 18:20:56','2020-07-23 02:17:17'),(1817,'crk','54.205.112.119',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 18:24:29','2019-02-09 18:24:29'),(1818,'englishlit','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:31:53','2019-02-10 08:28:16'),(1819,'accounting','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:36:27','2019-02-09 20:36:27'),(1820,'history','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:41:04','2019-02-09 20:41:04'),(1821,'economics','54.198.35.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 20:52:59','2019-02-09 20:52:59'),(1822,'economics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-09 21:36:49','2019-02-09 21:36:49'),(1823,'chemistry','54.165.27.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 04:31:45','2019-02-10 04:31:45'),(1824,'geography','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:01:47','2019-02-10 08:01:47'),(1825,'physics','129.205.112.31',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:19:34','2019-02-10 08:25:15'),(1826,'history','129.205.112.31',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 08:37:28','2019-02-10 08:37:28'),(1827,'english','54.162.92.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 12:54:28','2019-02-10 12:54:28'),(1828,'mathematics','41.191.107.239',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:39:53','2019-02-10 14:01:17'),(1829,'physics','41.191.107.239',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:42','2019-02-10 13:48:33'),(1830,'history','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:40:47','2019-02-10 13:48:45'),(1831,'accounting','41.191.107.239',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 13:45:18','2019-02-10 13:52:35'),(1832,'mathematics','41.191.107.145',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:02:05','2019-02-11 14:40:35'),(1833,'economics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:04:14','2019-02-10 14:04:14'),(1834,'physics','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:05:04','2019-02-10 14:05:04'),(1835,'geography','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-10 14:06:01','2019-02-10 14:06:01'),(1836,'government','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1837,'accounting','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1838,'physics','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1839,'crk','34.228.6.78',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:13'),(1840,'civiledu','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1841,'insurance','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:11'),(1842,'currentaffairs','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:28'),(1843,'history','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:11','2019-02-11 02:52:30'),(1844,'english','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1845,'biology','34.228.6.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:25'),(1846,'chemistry','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1847,'irk','34.228.6.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:13','2019-02-11 02:52:13'),(1848,'englishlit','34.228.6.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 02:52:15','2019-02-11 02:52:15'),(1849,'chemistry','197.210.45.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 10:22:02','2019-02-11 10:22:02'),(1850,'chemistry','40.77.167.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:09:52','2019-02-11 13:09:52'),(1851,'biology','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:36:32','2019-02-11 13:36:32'),(1852,'history','54.197.82.100',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:37:35','2019-02-11 13:37:35'),(1853,'english','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1854,'accounting','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1855,'physics','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1856,'geography','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1857,'irk','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1858,'insurance','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1859,'currentaffairs','54.197.82.100',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 13:46:27','2019-02-11 13:46:27'),(1860,'mathematics','41.191.104.71',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:12:03','2019-02-11 14:12:03'),(1861,'mathematics','41.191.104.112',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:18:49','2019-02-11 14:18:49'),(1862,'chemistry','41.58.77.114',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:51','2019-02-11 14:28:05'),(1863,'physics','41.191.104.112',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:20:53','2019-02-11 14:26:11'),(1864,'history','41.191.104.112',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:23:33','2019-02-11 14:26:08'),(1865,'biology','41.58.77.114',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:24:08','2019-02-11 14:24:08'),(1866,'mathematics','41.58.77.114',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:25:00','2019-02-11 14:26:24'),(1867,'physics','41.191.104.234',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:35','2019-02-11 14:40:10'),(1868,'economics','41.191.104.234',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:30:52','2019-02-11 14:35:32'),(1869,'mathematics','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:41','2019-02-11 14:35:41'),(1870,'chemistry','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:35:47','2019-02-11 14:35:47'),(1871,'biology','41.191.104.234',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:37:04','2019-02-11 14:37:04'),(1872,'biology','41.191.107.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 14:45:01','2019-02-11 14:45:01'),(1873,'chemistry','105.112.99.29',197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:29:39','2019-02-11 16:54:32'),(1874,'physics','105.112.99.29',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:30:30','2019-02-11 16:50:11'),(1875,'biology','105.112.99.29',134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 16:38:24','2019-02-11 16:41:30'),(1876,'mathematics','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1877,'commerce','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1878,'chemistry','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1879,'englishlit','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1880,'government','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1881,'irk','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1882,'insurance','54.80.214.77',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-11 18:20:00','2019-02-11 18:20:00'),(1883,'chemistry','40.77.167.19',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 08:00:52','2019-02-12 08:00:52'),(1884,'english','54.146.30.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:52:31','2019-02-12 09:52:31'),(1885,'chemistry','77.246.49.12',38,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 09:59:54','2019-02-12 10:43:38'),(1886,'chemistry','66.249.83.214',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:17:35','2019-02-15 07:42:21'),(1887,'chemistry','66.249.83.212',51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 10:32:16','2019-02-17 16:13:54'),(1888,'geography','54.198.25.67',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 11:51:48','2019-02-12 11:51:48'),(1889,'english','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1890,'biology','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1891,'physics','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1892,'government','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1893,'irk','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 15:35:54'),(1894,'civiledu','54.204.203.114',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:54:50'),(1895,'history','54.204.203.114',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 14:54:50','2019-02-12 14:55:19'),(1896,'chemistry','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:13:08','2019-02-12 15:13:08'),(1897,'geography','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:27:03','2019-02-12 15:27:03'),(1898,'insurance','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:37:09','2019-02-12 15:37:09'),(1899,'currentaffairs','54.204.203.114',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 15:38:51','2019-02-12 15:38:51'),(1900,'accounting','54.224.187.178',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:15:56','2019-02-12 16:47:43'),(1901,'commerce','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:54:29','2019-02-12 16:54:29'),(1902,'chemistry','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:55:19','2019-02-12 16:55:19'),(1903,'english','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 16:56:44','2019-02-12 16:56:44'),(1904,'englishlit','54.224.187.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 17:05:53','2019-02-12 17:05:53'),(1905,'chemistry','77.246.53.3',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:29:38','2019-02-12 19:29:38'),(1906,'chemistry','46.229.168.132',61,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-12 19:33:18','2020-04-01 16:00:41'),(1907,'physics','54.83.105.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 19:37:08','2019-02-12 19:37:08'),(1908,'mathematics','3.83.244.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 21:14:53','2019-02-12 21:14:53'),(1909,'chemistry','54.90.184.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:12:11','2019-02-12 23:12:11'),(1910,'accounting','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-12 23:50:49','2019-02-12 23:50:49'),(1911,'chemistry','82.145.222.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 02:31:59','2019-02-13 02:32:09'),(1912,'chemistry','41.220.28.0',400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 03:41:16','2019-02-13 04:18:17'),(1913,'chemistry','40.77.167.10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 04:07:04','2019-02-13 04:07:04'),(1914,'irk','54.226.159.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 05:17:46','2019-02-13 05:17:46'),(1915,'chemistry','77.246.53.157',1075,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 06:15:44','2019-02-13 07:57:20'),(1916,'biology','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:18:12','2019-02-13 07:18:12'),(1917,'accounting','54.160.188.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 07:42:14','2019-02-13 07:42:14'),(1918,'chemistry','77.246.55.170',2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 09:57:35','2019-02-13 12:53:59'),(1919,'irk','54.234.114.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 10:48:37','2019-02-13 10:48:37'),(1920,'chemistry','77.246.49.61',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 13:40:12','2019-02-13 14:09:22'),(1921,'mathematics','77.246.49.61',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:09:22'),(1922,'mathematics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:09:22','2019-02-13 14:11:21'),(1923,'chemistry','41.220.30.108',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:10','2019-02-13 14:13:10'),(1924,'physics','41.220.30.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:13:17','2019-02-19 09:00:47'),(1925,'accounting','41.220.30.108',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:14:56','2019-02-13 14:17:32'),(1926,'insurance','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:41:06','2019-02-13 14:44:45'),(1927,'english','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1928,'mathematics','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1929,'accounting','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1930,'physics','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1931,'chemistry','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1932,'crk','54.211.35.89',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1933,'crk','54.211.35.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1934,'irk','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1935,'currentaffairs','54.211.35.89',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1936,'history','54.211.35.89',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 14:44:45','2019-02-13 14:44:45'),(1937,'mathematics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:12:14','2019-02-13 15:12:14'),(1938,'physics','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:14:36','2019-02-13 15:14:37'),(1939,'chemistry','77.246.53.14',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:15:45','2019-02-13 15:15:45'),(1940,'irk','54.144.251.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 15:47:59','2019-02-13 15:47:59'),(1941,'physics','77.246.53.12',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:20:07','2019-02-13 16:34:41'),(1942,'mathematics','77.246.53.12',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:14','2019-02-13 16:35:19'),(1943,'chemistry','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:32','2019-02-13 16:34:32'),(1944,'accounting','77.246.53.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:34:48','2019-02-13 16:34:48'),(1945,'mathematics','77.246.53.162',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:07','2019-02-13 17:07:40'),(1946,'physics','77.246.53.162',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:48:43','2019-02-13 17:05:44'),(1947,'chemistry','77.246.53.162',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:21','2019-02-13 17:05:39'),(1948,'accounting','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:53:26','2019-02-13 16:54:33'),(1949,'commerce','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:57:16','2019-02-13 16:57:32'),(1950,'biology','77.246.53.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 16:59:47','2019-02-13 17:02:48'),(1951,'physics','54.159.21.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-13 18:06:23','2019-02-13 18:06:23'),(1952,'chemistry','46.229.168.150',12,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 02:03:11','2020-01-21 05:27:03'),(1953,'biology','52.90.176.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 02:28:08','2019-02-14 02:28:08'),(1954,'chemistry','41.86.149.34',195,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 07:40:21','2020-03-16 11:43:51'),(1955,'physics','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:41:02','2019-02-14 08:41:02'),(1956,'chemistry','77.246.53.138',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 08:45:15','2019-02-14 08:45:16'),(1957,'physics','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:45:52','2019-02-14 09:45:52'),(1958,'chemistry','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:12','2019-02-14 09:46:12'),(1959,'mathematics','77.246.49.1',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:22','2019-02-14 10:21:31'),(1960,'biology','77.246.49.1',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 09:46:31','2019-02-14 09:46:31'),(1961,'chemistry','66.249.93.40',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:08:04','2019-02-14 14:08:04'),(1962,'insurance','52.206.40.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 14:35:57','2019-02-14 14:35:57'),(1963,'irk','50.19.135.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:05:01','2019-02-14 16:05:01'),(1964,'mathematics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:25:27','2019-02-14 16:25:27'),(1965,'physics','107.167.107.223',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:26:57','2019-02-14 16:26:58'),(1966,'chemistry','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:28:35','2019-02-14 16:28:35'),(1967,'physics','77.246.53.27',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 16:32:02','2019-02-14 16:32:02'),(1968,'physics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:02','2019-02-14 17:39:02'),(1969,'mathematics','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:03','2019-02-14 17:39:03'),(1970,'chemistry','66.249.64.168',125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 17:39:04','2019-02-15 07:38:28'),(1971,'mathematics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1972,'biology','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1973,'chemistry','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1974,'englishlit','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1975,'crk','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1976,'economics','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1977,'civiledu','3.82.226.2',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:02:26','2019-02-14 18:02:26'),(1978,'mathematics','41.220.30.127',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 18:40:08','2019-02-14 18:40:09'),(1979,'chemistry','197.210.53.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-14 23:05:50','2019-02-14 23:11:24'),(1980,'chemistry','197.210.53.75',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-14 23:06:02','2019-10-28 09:52:49'),(1981,'physics','77.246.53.165',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:37:58','2019-02-15 02:38:49'),(1982,'physics','66.102.8.108',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:17','2019-02-15 02:56:50'),(1983,'physics','66.249.64.170',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:52:28','2019-02-15 08:55:28'),(1984,'physics','66.249.64.168',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:56:52','2019-02-16 03:08:43'),(1985,'mathematics','77.246.53.165',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 02:58:41','2019-02-15 02:58:41'),(1986,'chemistry','66.102.6.12',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 04:13:56','2019-02-15 04:13:56'),(1987,'chemistry','77.246.53.155',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:12:45','2019-02-15 05:12:46'),(1988,'physics','66.249.83.210',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:21:09','2019-02-17 08:51:10'),(1989,'chemistry','66.249.83.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:54','2019-02-15 05:37:54'),(1990,'chemistry','66.249.64.170',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:37:55','2019-02-15 05:40:03'),(1991,'chemistry','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 05:40:02','2019-02-15 05:40:02'),(1992,'chemistry','66.249.64.172',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 07:38:29','2019-02-15 07:38:29'),(1993,'physics','66.102.8.106',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:21','2019-02-16 03:07:38'),(1994,'physics','66.102.8.104',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:54:45','2019-02-15 08:54:45'),(1995,'physics','66.249.83.212',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:10','2019-02-16 03:29:02'),(1996,'physics','41.220.30.120',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 08:59:22','2019-02-15 08:59:22'),(1997,'history','54.166.99.0',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:39:50','2019-02-15 09:39:50'),(1998,'physics','185.26.180.219',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 09:40:20','2019-02-15 10:02:05'),(1999,'physics','77.246.55.130',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:34:33','2019-02-15 13:38:14'),(2000,'english','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:38:16','2019-02-15 13:38:16'),(2001,'insurance','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:22','2019-02-15 13:39:22'),(2002,'commerce','197.210.227.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 13:39:24','2019-02-15 13:39:24'),(2003,'commerce','197.210.226.194',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 14:41:28','2019-02-15 14:41:28'),(2004,'physics','66.249.83.214',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:06','2019-02-19 18:52:31'),(2005,'physics','77.246.53.177',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:11:34','2019-02-15 15:11:34'),(2006,'chemistry','66.249.83.198',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 15:13:48','2019-02-15 15:13:49'),(2007,'chemistry','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:15:21','2019-02-15 17:15:21'),(2008,'biology','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:32:07','2019-02-15 17:32:07'),(2009,'englishlit','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:50:05','2019-02-15 17:50:05'),(2010,'civiledu','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 17:58:30','2019-02-15 17:58:30'),(2011,'economics','54.197.167.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 18:01:11','2019-02-15 18:01:11'),(2012,'mathematics','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:23'),(2013,'englishlit','54.162.96.90',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:12'),(2014,'geography','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2015,'irk','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:07'),(2016,'civiledu','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2017,'currentaffairs','54.162.96.90',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:25'),(2018,'history','54.162.96.90',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:07','2019-02-15 23:11:10'),(2019,'english','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2020,'economics','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2021,'insurance','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:10','2019-02-15 23:11:10'),(2022,'biology','54.162.96.90',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-15 23:11:18','2019-02-15 23:11:20'),(2023,'commerce','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:34:11','2019-02-16 11:34:11'),(2024,'economics','197.210.52.55',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:35:07','2019-02-16 11:35:07'),(2025,'economics','197.210.53.144',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 11:59:36','2019-02-16 11:59:36'),(2026,'economics','197.210.53.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:09:10','2019-02-16 12:09:10'),(2027,'physics','64.233.172.202',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 12:45:29','2019-02-16 12:45:29'),(2028,'chemistry','197.210.8.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 15:55:05','2019-02-16 15:56:43'),(2029,'chemistry','209.205.211.242',1740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:08:07','2019-02-20 09:17:37'),(2030,'biology','209.205.211.242',3303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 16:14:54','2019-02-19 18:49:01'),(2031,'mathematics','209.205.211.242',2635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 17:10:46','2019-02-17 21:51:53'),(2032,'english','209.205.211.242',3998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:01:15','2019-02-19 18:31:24'),(2033,'english','197.210.52.4',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:06:11','2019-02-16 18:06:11'),(2034,'physics','66.249.88.52',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:25:31','2019-02-16 18:25:32'),(2035,'physics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:27:41','2019-02-16 18:27:42'),(2036,'physics','209.205.211.242',2056,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:36:36','2019-02-19 18:57:19'),(2037,'economics','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:52:25','2019-02-16 18:52:25'),(2038,'insurance','197.210.55.221',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 18:53:03','2019-02-16 18:53:03'),(2039,'english','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2040,'accounting','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2041,'government','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2042,'crk','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2043,'geography','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2044,'economics','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2045,'insurance','54.221.3.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 20:22:41','2019-02-16 20:22:41'),(2046,'economics','209.205.211.242',3993,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:07:13','2019-02-20 10:21:53'),(2047,'commerce','209.205.211.242',2963,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 21:32:01','2019-02-20 10:47:11'),(2048,'accounting','209.205.211.242',3180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:02:28','2019-02-20 10:34:51'),(2049,'government','209.205.211.242',4769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:18:37','2019-02-20 11:25:34'),(2050,'englishlit','209.205.211.242',2428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:34:54','2019-02-20 11:06:13'),(2051,'civiledu','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 22:45:29','2019-02-18 13:07:15'),(2052,'crk','209.205.211.242',2529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:02:00','2019-03-28 01:41:15'),(2053,'history','209.205.211.242',1491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:13:13','2019-02-20 11:54:00'),(2054,'geography','209.205.211.242',1807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:24:15','2019-02-18 13:11:51'),(2055,'irk','209.205.211.242',533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-16 23:57:46','2019-02-18 13:14:15'),(2056,'insurance','209.205.211.242',1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 00:04:12','2019-02-18 13:21:54'),(2057,'chemistry','197.210.46.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 05:30:36','2019-02-17 05:30:36'),(2058,'mathematics','66.249.83.214',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-19 18:52:31'),(2059,'biology','66.249.83.212',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:09:38','2019-02-17 09:09:38'),(2060,'physics','77.246.55.162',75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 09:10:12','2019-02-17 09:10:33'),(2061,'mathematics','66.249.84.40',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:47','2019-02-17 10:32:48'),(2062,'mathematics','66.249.64.168',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:32:48','2019-02-17 10:32:48'),(2063,'mathematics','64.233.172.200',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:42','2019-02-17 10:33:42'),(2064,'mathematics','66.249.64.170',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 10:33:44','2019-02-17 10:33:44'),(2065,'mathematics','77.246.49.18',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-17 16:14:46','2019-02-17 16:14:46'),(2066,'english','34.238.255.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 12:56:12','2019-02-18 12:56:12'),(2067,'currentaffairs','209.205.211.242',585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 13:24:51','2019-02-18 13:37:43'),(2068,'physics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:10:32','2019-02-18 17:10:32'),(2069,'mathematics','41.220.30.114',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 17:11:34','2019-02-18 17:11:34'),(2070,'physics','77.246.53.136',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 19:24:42','2019-02-18 19:25:37'),(2071,'english','174.129.141.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-18 20:49:05','2019-02-18 20:49:05'),(2072,'chemistry','41.191.104.80',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 00:07:04','2019-04-18 08:45:16'),(2073,'insurance','3.82.5.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 01:58:28','2019-02-19 01:58:28'),(2074,'english','54.211.123.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 06:24:59','2019-02-19 06:24:59'),(2075,'chemistry','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:14:42','2019-02-19 10:14:42'),(2076,'englishlit','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:22:31','2019-02-19 10:22:31'),(2077,'economics','3.91.96.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 10:42:59','2019-02-19 10:42:59'),(2078,'chemistry','54.224.95.200',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 12:27:33','2019-02-19 12:27:33'),(2079,'insurance','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:12:57','2019-02-19 14:12:57'),(2080,'accounting','54.196.25.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 14:23:32','2019-02-19 14:23:32'),(2081,'civiledu','54.147.55.79',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:12:39','2019-02-19 18:12:39'),(2082,'physics','77.246.49.36',150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:52:53','2019-02-19 18:53:54'),(2083,'chemistry','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:07','2019-02-19 18:53:10'),(2084,'biology','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:18','2019-02-19 18:53:48'),(2085,'mathematics','77.246.49.36',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 18:53:21','2019-02-19 18:53:47'),(2086,'government','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:02:12','2019-02-19 19:02:12'),(2087,'accounting','54.162.142.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 19:06:42','2019-02-19 19:06:42'),(2088,'chemistry','197.211.57.22',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 20:15:50','2019-02-19 20:22:45'),(2089,'economics','54.161.218.154',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:34','2019-02-19 21:58:35'),(2090,'accounting','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2091,'physics','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2092,'chemistry','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2093,'englishlit','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2094,'geography','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2095,'history','54.161.218.154',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-19 21:58:35','2019-02-19 21:58:35'),(2096,'english','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 00:48:47','2019-02-20 00:48:48'),(2097,'physics','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:00:30','2019-02-20 01:00:30'),(2098,'geography','66.249.70.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:02:46','2019-02-20 01:02:47'),(2099,'history','66.249.70.20',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:04:05','2019-02-20 01:04:05'),(2100,'economics','54.81.179.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 01:18:54','2019-02-20 01:18:54'),(2101,'chemistry','66.249.83.222',26,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2019-11-22 10:45:51'),(2102,'biology','66.249.83.192',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-20 05:28:00','2020-03-04 20:11:48'),(2103,'physics','66.249.83.223',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:05','2019-02-22 08:52:17'),(2104,'physics','77.246.53.28',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:28:41','2019-02-20 05:28:41'),(2105,'chemistry','207.46.13.48',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 05:55:58','2019-02-20 05:55:58'),(2106,'insurance','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:05','2019-02-20 13:44:06'),(2107,'mathematics','154.66.56.202',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 13:44:23','2019-02-20 13:44:24'),(2108,'physics','54.204.105.177',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 15:14:53','2019-02-20 15:14:53'),(2109,'english','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:05:47','2019-02-20 18:05:47'),(2110,'biology','105.112.32.36',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:13:36','2019-02-20 18:13:37'),(2111,'physics','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2112,'chemistry','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2113,'crk','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2114,'geography','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2115,'economics','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2116,'insurance','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2117,'history','54.166.242.252',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:45'),(2118,'currentaffairs','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:34','2019-02-20 18:36:34'),(2119,'mathematics','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:37','2019-02-20 18:36:37'),(2120,'biology','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:43','2019-02-20 18:36:43'),(2121,'english','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2122,'accounting','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2123,'government','54.166.242.252',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:45','2019-02-20 18:36:45'),(2124,'englishlit','54.166.242.252',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 18:36:49','2019-02-20 18:36:49'),(2125,'englishlit','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:29:11','2019-02-20 19:29:11'),(2126,'chemistry','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 19:54:43','2019-02-20 19:54:43'),(2127,'biology','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:55','2019-02-20 20:16:55'),(2128,'geography','34.238.247.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:16:59','2019-02-20 20:16:59'),(2129,'chemistry','105.112.26.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 20:32:19','2019-02-20 20:32:19'),(2130,'chemistry','54.83.94.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-20 23:36:55','2019-02-20 23:36:55'),(2131,'mathematics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2132,'mathematics','54.167.183.249',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2133,'commerce','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2134,'accounting','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2135,'physics','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2136,'geography','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2137,'economics','54.167.183.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:46'),(2138,'insurance','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:45','2019-02-21 03:50:45'),(2139,'english','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2140,'chemistry','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2141,'irk','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2142,'history','54.167.183.249',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 03:50:46','2019-02-21 03:50:46'),(2143,'chemistry','46.229.168.130',18,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2020-03-24 16:18:58'),(2144,'chemistry','46.229.168.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-21 14:32:12','2019-02-21 14:32:12'),(2145,'geography','54.221.38.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 02:38:12','2019-02-22 02:38:12'),(2146,'mathematics','54.89.229.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 03:48:22','2019-02-22 03:48:22'),(2147,'chemistry','129.205.112.63',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:18:55','2019-02-22 06:19:17'),(2148,'mathematics','129.205.112.63',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 06:19:48','2019-02-22 06:19:48'),(2149,'mathematics','66.249.83.222',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 08:52:08','2019-02-27 03:45:37'),(2150,'economics','41.58.182.193',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 09:26:06','2019-02-22 09:26:07'),(2151,'mathematics','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2152,'mathematics','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2153,'physics','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2154,'biology','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2155,'englishlit','34.201.133.169',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2156,'chemistry','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2157,'government','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2158,'crk','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2159,'geography','34.201.133.169',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2160,'civiledu','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2161,'civiledu','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2162,'history','34.201.133.169',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2163,'history','34.201.133.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2164,'economics','34.201.133.169',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 13:00:56','2019-02-22 13:00:56'),(2165,'chemistry','129.56.89.91',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 14:58:18','2019-02-22 14:58:54'),(2166,'mathematics','129.56.89.91',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-22 15:07:31','2019-02-22 15:07:31'),(2167,'economics','54.161.215.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 00:00:12','2019-02-23 00:00:12'),(2168,'history','3.93.218.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 04:23:21','2019-02-23 04:23:21'),(2169,'accounting','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2170,'biology','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2171,'chemistry','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2172,'government','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2173,'irk','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2174,'insurance','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2175,'currentaffairs','54.90.122.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 21:17:36','2019-02-23 21:17:36'),(2176,'chemistry','192.173.38.121',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-23 23:14:30','2019-02-23 23:14:42'),(2177,'english','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2178,'accounting','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2179,'government','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2180,'crk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2181,'geography','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2182,'irk','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2183,'civiledu','35.173.135.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 21:30:59','2019-02-24 21:30:59'),(2184,'chemistry','160.120.230.179',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-24 23:58:16','2019-02-24 23:58:16'),(2185,'chemistry','197.210.45.125',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 10:22:09','2019-02-25 10:23:43'),(2186,'biology','197.210.28.208',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-25 12:45:32','2019-02-25 12:45:33'),(2187,'chemistry','207.46.13.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 09:41:52','2019-02-26 09:41:52'),(2188,'chemistry','129.205.113.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 15:05:12','2019-02-26 15:05:12'),(2189,'english','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2190,'english','3.87.158.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2191,'mathematics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2192,'commerce','3.87.158.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2193,'biology','3.87.158.225',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2194,'physics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2195,'geography','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2196,'government','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2197,'economics','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2198,'history','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2199,'crk','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2200,'currentaffairs','3.87.158.225',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 16:30:01','2019-02-26 16:30:01'),(2201,'english','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2202,'mathematics','54.226.211.137',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:44'),(2203,'commerce','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2204,'chemistry','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2205,'government','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:23:49'),(2206,'history','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:23:49','2019-02-26 18:37:36'),(2207,'accounting','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2208,'economics','54.226.211.137',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:30'),(2209,'irk','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2210,'insurance','54.226.211.137',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 18:37:30','2019-02-26 18:37:36'),(2211,'chemistry','41.191.107.201',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:30:53','2019-02-26 19:30:53'),(2212,'chemistry','41.191.107.145',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 19:32:08','2019-02-26 19:33:01'),(2213,'physics','54.243.5.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 22:16:47','2019-02-26 22:16:47'),(2214,'accounting','54.166.233.198',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-26 23:08:29','2019-02-26 23:08:29'),(2215,'physics','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:36','2020-02-09 06:54:16'),(2216,'biology','66.249.83.222',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:43','2020-02-15 20:12:30'),(2217,'chemistry','66.249.83.223',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-02-27 03:45:44','2020-02-05 04:26:16'),(2218,'physics','77.246.53.42',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 03:45:58','2019-02-27 03:45:58'),(2219,'chemistry','66.249.93.52',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 11:18:17','2019-06-22 21:48:18'),(2220,'chemistry','41.191.104.245',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-27 12:41:52','2019-02-27 12:41:52'),(2221,'chemistry','66.249.93.48',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 12:41:34','2019-08-02 12:51:50'),(2222,'insurance','54.209.60.212',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 13:15:55','2019-02-28 13:15:55'),(2223,'mathematics','52.73.168.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-02-28 15:40:02','2019-02-28 15:40:02'),(2224,'chemistry','41.190.2.218',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:47:11','2019-03-01 08:49:37'),(2225,'mathematics','41.190.2.218',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:50:33','2019-03-01 08:50:34'),(2226,'english','41.190.2.218',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 08:52:26','2019-03-01 09:52:41'),(2227,'chemistry','66.249.66.158',82,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:22:29','2019-05-21 08:24:45'),(2228,'english','41.190.3.242',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:52:56','2019-03-01 10:52:56'),(2229,'physics','41.190.3.242',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 10:59:56','2019-03-01 10:59:56'),(2230,'english','41.190.2.156',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:08:07','2019-03-01 11:10:46'),(2231,'englishlit','41.190.2.156',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:11:29','2019-03-01 11:15:39'),(2232,'englishlit','41.190.31.166',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 11:22:14','2019-03-01 11:22:15'),(2233,'mathematics','41.242.89.168',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 14:24:39','2019-03-01 14:24:39'),(2234,'chemistry','54.85.62.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:23','2019-03-01 18:59:23'),(2235,'commerce','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2236,'physics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2237,'englishlit','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2238,'government','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2239,'crk','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2240,'economics','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2241,'currentaffairs','54.85.62.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 18:59:28','2019-03-01 18:59:28'),(2242,'chemistry','88.6.244.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:08:40','2019-03-01 19:08:40'),(2243,'englishlit','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:21'),(2244,'english','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2245,'commerce','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:46'),(2246,'biology','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2247,'geography','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2248,'economics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:46:45'),(2249,'irk','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2250,'history','107.20.60.54',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:45','2019-03-01 19:57:41'),(2251,'chemistry','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:58:25'),(2252,'government','107.20.60.54',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2253,'currentaffairs','107.20.60.54',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:46:46','2019-03-01 19:57:41'),(2254,'mathematics','107.20.60.54',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:05','2019-03-01 19:57:41'),(2255,'accounting','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2256,'physics','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2257,'crk','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2258,'civiledu','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2259,'insurance','107.20.60.54',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-01 19:57:41','2019-03-01 19:57:41'),(2260,'chemistry','197.211.57.54',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 00:15:49','2019-03-02 00:15:49'),(2261,'mathematics','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:00:36','2019-03-02 04:00:36'),(2262,'geography','54.204.64.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 04:11:33','2019-03-02 04:11:33'),(2263,'insurance','3.89.38.207',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 06:24:49','2019-03-02 06:30:51'),(2264,'mathematics','54.80.44.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:08'),(2265,'biology','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:05'),(2266,'physics','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:39'),(2267,'chemistry','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:50:00'),(2268,'englishlit','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:52'),(2269,'economics','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2270,'civiledu','54.80.44.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:39','2019-03-02 13:49:40'),(2271,'commerce','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2272,'crk','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2273,'insurance','54.80.44.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:40'),(2274,'currentaffairs','54.80.44.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 13:49:40','2019-03-02 13:49:55'),(2275,'biology','105.112.44.175',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 15:21:52','2019-03-02 15:26:09'),(2276,'chemistry','105.112.21.63',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 16:03:37','2019-03-02 16:03:53'),(2277,'englishlit','169.159.66.161',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 17:05:42','2019-03-02 17:05:42'),(2278,'geography','34.229.78.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-02 22:36:51','2019-03-02 22:36:51'),(2279,'chemistry','105.112.23.37',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-03 21:25:44','2019-03-03 21:26:34'),(2280,'english','105.112.45.107',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 06:08:59','2019-03-04 06:09:55'),(2281,'chemistry','154.66.15.65',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 09:03:04','2019-03-04 09:03:04'),(2282,'chemistry','40.77.167.83',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 10:53:20','2019-05-08 11:01:31'),(2283,'chemistry','66.249.64.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 11:52:26','2019-03-04 11:52:26'),(2284,'chemistry','157.55.39.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 17:38:04','2019-03-04 17:38:04'),(2285,'english','129.56.36.43',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 20:56:28','2019-03-04 20:56:29'),(2286,'chemistry','66.249.93.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-04 22:00:50','2019-03-04 22:00:50'),(2287,'history','3.83.116.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 08:18:13','2019-03-05 08:18:13'),(2288,'english','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2289,'mathematics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2290,'biology','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2291,'irk','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2292,'insurance','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2293,'currentaffairs','3.82.62.108',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:16'),(2294,'history','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:15','2019-03-05 19:47:15'),(2295,'commerce','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2296,'accounting','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2297,'economics','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2298,'civiledu','3.82.62.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-05 19:47:16','2019-03-05 19:47:16'),(2299,'chemistry','129.205.112.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 05:43:39','2019-03-06 05:43:39'),(2300,'english','105.112.41.195',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-06 06:01:30','2019-03-06 06:01:30'),(2301,'chemistry','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:53:58','2019-03-07 07:53:58'),(2302,'english','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:03','2019-03-07 07:54:03'),(2303,'currentaffairs','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:05','2019-03-07 07:54:05'),(2304,'englishlit','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:11','2019-03-07 07:54:11'),(2305,'mathematics','3.83.147.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 07:54:13','2019-03-07 07:54:13'),(2306,'english','54.146.17.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 10:10:28','2019-03-07 10:10:28'),(2307,'chemistry','41.203.78.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-07 18:01:15','2019-03-07 18:01:40'),(2308,'mathematics','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:29:12','2019-03-08 00:29:12'),(2309,'accounting','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:43:38','2019-03-08 00:43:39'),(2310,'irk','129.205.112.111',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:47:07','2019-03-08 00:47:07'),(2311,'commerce','129.205.112.111',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 00:57:56','2019-03-08 00:57:56'),(2312,'mathematics','105.112.23.187',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 02:10:15','2019-03-08 02:10:16'),(2313,'chemistry','182.156.84.42',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 07:34:03','2019-03-08 07:34:38'),(2314,'english','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:32','2019-03-08 21:33:32'),(2315,'mathematics','129.205.112.124',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-08 21:33:51','2019-03-08 21:33:51'),(2316,'chemistry','66.249.66.128',66,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-03-08 22:28:29','2020-08-15 00:35:57'),(2317,'commerce','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2318,'accounting','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2319,'englishlit','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2320,'government','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2321,'crk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2322,'irk','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2323,'civiledu','54.234.249.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-09 14:00:54','2019-03-09 14:00:54'),(2324,'biology','105.112.41.40',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 11:20:50','2019-03-10 11:20:50'),(2325,'english','66.249.66.159',47,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-10 18:44:59','2019-12-20 19:13:10'),(2326,'currentaffairs','66.249.66.128',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:01:44','2019-03-10 19:01:44'),(2327,'mathematics','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:07:00','2019-03-10 19:07:00'),(2328,'biology','66.249.66.159',65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 19:11:15','2019-07-20 09:55:14'),(2329,'chemistry','197.242.96.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:22:23','2019-03-10 22:22:23'),(2330,'commerce','197.211.32.243',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 22:37:02','2019-03-10 22:37:05'),(2331,'english','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:35'),(2332,'commerce','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2333,'biology','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2334,'chemistry','3.83.246.7',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:45'),(2335,'geography','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:27'),(2336,'currentaffairs','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:32'),(2337,'history','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:27','2019-03-10 23:37:43'),(2338,'englishlit','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:37','2019-03-10 23:37:40'),(2339,'mathematics','3.83.246.7',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:47'),(2340,'physics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2341,'economics','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2342,'civiledu','3.83.246.7',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:37:45','2019-03-10 23:37:45'),(2343,'english','105.112.106.77',203,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-10 23:59:59','2019-03-11 00:33:51'),(2344,'mathematics','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:03','2019-03-11 00:13:40'),(2345,'civiledu','105.112.106.77',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 00:10:29','2019-03-11 00:10:45'),(2346,'chemistry','41.216.168.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 10:36:04','2019-03-11 10:36:31'),(2347,'biology','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:11:03','2019-03-11 12:11:04'),(2348,'currentaffairs','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:16:12','2019-03-11 12:16:13'),(2349,'mathematics','105.112.104.106',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:21:12','2019-03-11 12:21:13'),(2350,'chemistry','197.210.62.63',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-11 12:26:12','2019-03-11 12:26:12'),(2351,'chemistry','197.210.54.206',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:24','2019-03-12 04:11:25'),(2352,'chemistry','197.210.54.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 04:11:37','2019-03-12 04:11:38'),(2353,'chemistry','207.46.13.222',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-12 23:05:23','2019-03-12 23:05:23'),(2354,'chemistry','105.112.16.104',89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:30:57','2019-03-13 08:32:49'),(2355,'mathematics','105.112.16.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-13 08:33:15','2019-03-13 08:33:15'),(2356,'chemistry','157.55.39.236',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-14 04:31:32','2020-05-06 01:55:10'),(2357,'chemistry','129.18.151.222',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-14 17:26:09','2019-03-14 17:27:29'),(2358,'mathematics','18.207.245.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2359,'mathematics','18.207.245.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2360,'biology','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2361,'commerce','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2362,'physics','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2363,'chemistry','18.207.245.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2364,'economics','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2365,'irk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2366,'government','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2367,'history','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2368,'crk','18.207.245.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-15 04:19:51','2019-03-15 04:19:51'),(2369,'physics','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:25','2019-03-16 12:35:39'),(2370,'mathematics','129.205.113.120',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 10:13:34','2019-03-16 12:33:03'),(2371,'commerce','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2372,'accounting','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2373,'chemistry','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2374,'englishlit','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2375,'civiledu','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2376,'insurance','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2377,'history','54.196.10.230',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 11:45:17','2019-03-16 11:45:17'),(2378,'english','129.205.113.120',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 12:33:00','2019-03-16 12:33:31'),(2379,'mathematics','105.178.112.15',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 13:18:33','2019-03-16 14:33:21'),(2380,'englishlit','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:40','2019-03-16 15:14:43'),(2381,'commerce','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:45','2019-03-16 15:15:22'),(2382,'history','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:47','2019-03-16 15:14:59'),(2383,'chemistry','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:49','2019-03-16 15:14:54'),(2384,'accounting','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:52','2019-03-16 15:15:17'),(2385,'civiledu','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:14:57','2019-03-16 15:15:01'),(2386,'insurance','3.94.101.157',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 15:15:19','2019-03-16 15:15:25'),(2387,'chemistry','40.77.167.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-16 18:24:33','2019-03-16 18:24:33'),(2388,'commerce','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2389,'accounting','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2390,'biology','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2391,'chemistry','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2392,'englishlit','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2393,'irk','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2394,'history','3.91.9.99',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 06:54:20','2019-03-17 06:54:20'),(2395,'mathematics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:53'),(2396,'accounting','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 08:48:07'),(2397,'biology','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:03:03'),(2398,'physics','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:47'),(2399,'englishlit','100.24.30.47',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:02'),(2400,'currentaffairs','100.24.30.47',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:11:45'),(2401,'history','100.24.30.47',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:48:07','2019-03-17 09:12:06'),(2402,'english','100.24.30.47',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 08:57:07','2019-03-17 09:11:58'),(2403,'economics','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:00:11'),(2404,'irk','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2405,'civiledu','100.24.30.47',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:00:11','2019-03-17 09:11:47'),(2406,'commerce','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2407,'crk','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2408,'geography','100.24.30.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 09:11:47','2019-03-17 09:11:47'),(2409,'english','3.93.187.129',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:32:15','2019-03-17 11:32:15'),(2410,'chemistry','37.9.87.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-17 11:48:48','2019-03-17 11:48:48'),(2411,'chemistry','94.130.237.95',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-18 23:20:28','2020-03-04 10:30:43'),(2412,'chemistry','46.229.168.133',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-19 07:43:34','2020-04-15 11:01:00'),(2413,'english','105.112.104.202',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 15:27:18','2019-03-19 15:27:19'),(2414,'chemistry','40.77.167.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 17:56:39','2019-03-19 17:56:39'),(2415,'chemistry','66.102.6.20',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-19 20:29:21','2019-03-19 20:29:22'),(2416,'chemistry','84.224.213.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 14:12:39','2019-03-20 14:12:39'),(2417,'english','105.112.104.10',340,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:17:23','2019-03-20 20:12:29'),(2418,'irk','105.112.104.10',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-20 19:54:32','2019-03-20 19:54:32'),(2419,'accounting','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:07','2019-03-21 02:02:08'),(2420,'chemistry','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2421,'government','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2422,'geography','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2423,'irk','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2424,'currentaffairs','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2425,'history','3.81.235.231',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2426,'commerce','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2427,'biology','3.81.235.231',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 02:02:08','2019-03-21 02:02:08'),(2428,'chemistry','185.161.72.105',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 13:47:45','2019-03-21 13:47:45'),(2429,'english','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2430,'commerce','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2431,'physics','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2432,'government','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2433,'irk','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2434,'insurance','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2435,'currentaffairs','54.236.18.73',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-21 16:03:52','2019-03-21 16:03:52'),(2436,'physics','66.249.64.178',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-22 04:05:38','2019-09-25 11:24:23'),(2437,'chemistry','82.145.222.11',100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 08:45:03','2019-03-22 08:53:13'),(2438,'crk','52.91.165.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 09:38:12','2019-03-22 09:38:12'),(2439,'economics','54.158.54.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 11:28:41','2019-03-22 11:28:41'),(2440,'history','54.90.213.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 12:47:11','2019-03-22 12:47:11'),(2441,'english','66.249.64.176',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:40:29','2019-04-12 08:26:44'),(2442,'commerce','66.249.64.180',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:50:23','2019-03-22 13:50:23'),(2443,'civiledu','66.249.64.178',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 13:55:48','2019-03-22 13:55:48'),(2444,'mathematics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2445,'chemistry','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2446,'crk','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2447,'geography','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2448,'economics','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2449,'insurance','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2450,'history','3.93.153.220',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 15:28:34','2019-03-22 15:28:34'),(2451,'commerce','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2452,'physics','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2453,'englishlit','34.229.89.118',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:42'),(2454,'crk','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:00:30'),(2455,'economics','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:44'),(2456,'irk','34.229.89.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:40'),(2457,'history','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:00:30','2019-03-22 17:32:43'),(2458,'english','34.229.89.118',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2459,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2460,'english','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2461,'chemistry','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2462,'geography','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2463,'accounting','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:15:10'),(2464,'civiledu','34.229.89.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:44'),(2465,'insurance','34.229.89.118',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:42'),(2466,'currentaffairs','34.229.89.118',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:15:10','2019-03-22 17:32:56'),(2467,'biology','34.229.89.118',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:37','2019-03-22 17:32:37'),(2468,'government','34.229.89.118',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:40','2019-03-22 17:32:45'),(2469,'mathematics','34.229.89.118',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:32:44','2019-03-22 17:32:44'),(2470,'english','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:18','2019-03-22 17:33:18'),(2471,'mathematics','54.237.235.154',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-22 17:33:19','2019-03-22 17:33:19'),(2472,'chemistry','41.191.107.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:21:08','2019-03-23 13:21:08'),(2473,'chemistry','41.191.107.237',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 13:44:44','2019-03-23 13:44:44'),(2474,'chemistry','129.205.112.163',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:17:58','2019-03-23 22:17:58'),(2475,'economics','129.205.112.163',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-23 22:18:49','2019-03-23 22:19:03'),(2476,'mathematics','197.210.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:44:13','2019-03-24 10:44:13'),(2477,'chemistry','197.210.226.81',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-24 10:46:33','2019-03-24 10:46:34'),(2478,'chemistry','197.211.53.242',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 10:42:54','2019-03-25 10:44:52'),(2479,'chemistry','41.203.117.95',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:03','2019-03-25 13:54:15'),(2480,'physics','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:47:28','2019-03-25 13:47:28'),(2481,'crk','41.203.117.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:13','2019-03-25 13:48:13'),(2482,'mathematics','41.203.117.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:48:31','2019-03-25 13:48:38'),(2483,'chemistry','41.203.117.96',143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 13:49:27','2019-03-25 14:31:34'),(2484,'accounting','41.203.117.96',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:30:45','2019-03-25 14:30:45'),(2485,'english','41.203.117.96',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:31:48','2019-03-25 14:31:48'),(2486,'currentaffairs','41.203.117.96',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-25 14:34:10','2019-03-28 05:33:36'),(2487,'english','105.112.46.123',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-26 13:20:41','2019-03-26 13:20:41'),(2488,'chemistry','46.229.168.153',58,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-26 15:28:52','2020-04-02 19:27:21'),(2489,'chemistry','46.229.168.140',46,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-03-26 21:40:59','2020-07-19 20:47:32'),(2490,'englishlit','41.80.214.85',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 06:56:24','2019-03-27 06:56:24'),(2491,'chemistry','73.59.41.7',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-27 21:49:59','2019-03-27 21:49:59'),(2492,'chemistry','41.203.72.196',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 08:11:19','2019-03-28 12:35:17'),(2493,'chemistry','40.77.167.104',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-28 15:19:42','2019-03-28 15:19:42'),(2494,'mathematics','129.205.112.28',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:06:58','2019-03-29 19:07:07'),(2495,'physics','129.205.112.28',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:07:30','2019-03-29 19:07:30'),(2496,'economics','3.80.51.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 19:44:22','2019-03-29 19:44:22'),(2497,'government','18.234.162.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-29 21:01:37','2019-03-29 21:01:37'),(2498,'chemistry','46.229.168.161',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-03-29 21:28:49','2019-12-18 04:07:27'),(2499,'irk','3.87.11.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 00:18:36','2019-03-30 00:18:36'),(2500,'geography','54.197.32.148',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 03:33:46','2019-03-30 03:33:46'),(2501,'biology','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:08:31','2019-03-30 08:08:31'),(2502,'insurance','34.226.246.23',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-30 08:26:32','2019-03-30 08:26:32'),(2503,'chemistry','3.84.72.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 02:49:20','2019-03-31 02:49:20'),(2504,'chemistry','34.204.94.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 04:43:23','2019-03-31 04:43:23'),(2505,'english','3.81.184.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 10:44:44','2019-03-31 10:44:44'),(2506,'chemistry','105.112.23.125',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:00:42','2019-03-31 13:15:36'),(2507,'english','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:09:11','2019-03-31 13:09:11'),(2508,'mathematics','105.112.23.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-03-31 13:11:16','2019-03-31 13:11:16'),(2509,'chemistry','197.211.47.194',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:03:32','2019-04-01 09:06:11'),(2510,'chemistry','41.76.196.129',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-01 09:06:31','2019-04-01 09:06:31'),(2511,'commerce','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2512,'biology','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2513,'government','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2514,'crk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2515,'irk','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2516,'civiledu','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2517,'currentaffairs','54.242.234.112',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 01:11:47','2019-04-02 01:11:47'),(2518,'english','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:22','2019-04-02 02:07:22'),(2519,'biology','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:23','2019-04-02 02:07:27'),(2520,'commerce','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2521,'physics','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2522,'chemistry','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2523,'geography','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2524,'irk','18.212.16.232',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:44'),(2525,'history','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:27','2019-04-02 02:07:27'),(2526,'government','18.212.16.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:28','2019-04-02 02:07:28'),(2527,'mathematics','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:41','2019-04-02 02:07:46'),(2528,'accounting','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2529,'englishlit','18.212.16.232',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:44'),(2530,'currentaffairs','18.212.16.232',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 02:07:44','2019-04-02 02:07:49'),(2531,'biology','3.86.140.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 04:02:20','2019-04-02 04:02:20'),(2532,'englishlit','3.94.89.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 06:08:13','2019-04-02 06:08:13'),(2533,'chemistry','41.184.180.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 08:54:01','2019-04-02 08:54:10'),(2534,'accounting','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:03:12','2019-04-02 10:03:12'),(2535,'government','34.201.242.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-02 10:26:32','2019-04-02 10:26:32'),(2536,'chemistry','207.46.13.126',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-02 13:11:18','2019-08-14 07:10:32'),(2537,'biology','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:17','2019-04-03 08:40:36'),(2538,'chemistry','105.112.44.54',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:39:29','2019-04-03 08:40:19'),(2539,'mathematics','105.112.44.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 08:41:16','2019-04-03 08:41:16'),(2540,'chemistry','209.97.150.141',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 09:48:38','2019-04-03 09:50:08'),(2541,'english','105.112.32.51',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:33','2019-04-03 11:02:48'),(2542,'biology','105.112.32.51',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:02:37','2019-04-03 11:02:37'),(2543,'chemistry','41.190.2.238',1555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:28:32','2019-04-03 11:47:36'),(2544,'mathematics','41.190.2.238',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:30:49','2019-04-03 11:30:49'),(2545,'physics','41.190.2.238',526,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 11:47:52','2019-04-03 12:42:05'),(2546,'physics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:13:30','2019-04-03 15:13:31'),(2547,'chemistry','41.190.30.103',117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:35:55','2019-04-03 15:36:14'),(2548,'mathematics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:39:13','2019-04-03 15:39:14'),(2549,'accounting','41.190.30.103',136,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:45:47','2019-04-03 15:46:17'),(2550,'economics','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:49:22','2019-04-03 15:49:22'),(2551,'crk','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:51:56','2019-04-03 15:51:57'),(2552,'biology','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:54:17','2019-04-03 15:54:17'),(2553,'commerce','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:55:40','2019-04-03 15:55:40'),(2554,'government','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 15:58:11','2019-04-03 15:58:12'),(2555,'geography','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:00:47','2019-04-03 16:00:47'),(2556,'civiledu','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:02:39','2019-04-03 16:02:39'),(2557,'englishlit','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:05:21','2019-04-03 16:05:22'),(2558,'insurance','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:08:37','2019-04-03 16:08:38'),(2559,'currentaffairs','41.190.30.103',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:11:38','2019-04-03 16:11:38'),(2560,'history','41.190.30.103',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:14:03','2019-04-03 16:18:17'),(2561,'english','41.190.30.103',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-03 16:18:32','2019-04-03 16:20:28'),(2562,'government','41.190.2.134',160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:33:07','2019-04-04 09:35:25'),(2563,'geography','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:38:24','2019-04-04 09:38:25'),(2564,'civiledu','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:39:50','2019-04-04 09:39:51'),(2565,'commerce','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:41:37','2019-04-04 09:41:37'),(2566,'crk','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:54:15','2019-04-04 09:54:16'),(2567,'economics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 09:57:56','2019-04-04 09:57:56'),(2568,'accounting','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:01:07','2019-04-04 10:01:07'),(2569,'mathematics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:06:55','2019-04-04 10:06:55'),(2570,'physics','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:12:17','2019-04-04 10:12:17'),(2571,'history','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:21:45','2019-04-04 10:21:45'),(2572,'englishlit','41.190.2.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 10:24:08','2019-04-04 10:24:08'),(2573,'english','41.190.30.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:13:41','2019-04-04 13:13:42'),(2574,'mathematics','41.190.3.233',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:54:16','2019-04-04 13:54:16'),(2575,'chemistry','41.190.3.233',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 13:55:19','2019-04-04 13:55:19'),(2576,'chemistry','185.22.187.7',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-04 15:25:03','2019-04-04 15:25:20'),(2577,'chemistry','37.9.87.166',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-05 14:29:44','2019-10-25 17:45:28'),(2578,'irk','54.196.110.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 15:52:32','2019-04-05 15:52:32'),(2579,'mathematics','197.210.44.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:32','2019-04-05 16:49:32'),(2580,'chemistry','197.210.44.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:49:34','2019-04-05 16:49:34'),(2581,'chemistry','197.210.44.111',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:50:28','2019-04-05 16:51:41'),(2582,'chemistry','197.210.47.205',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 16:54:08','2019-04-05 16:54:09'),(2583,'chemistry','52.90.61.82',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:21:23','2019-04-05 18:36:20'),(2584,'currentaffairs','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:23:14','2019-04-05 18:23:14'),(2585,'crk','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:36:17','2019-04-05 18:36:17'),(2586,'civiledu','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:02','2019-04-05 18:37:02'),(2587,'english','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:37:32','2019-04-05 18:37:32'),(2588,'chemistry','157.55.39.124',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 18:59:25','2019-07-19 10:24:33'),(2589,'physics','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:17','2019-04-05 19:08:17'),(2590,'biology','52.90.61.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 19:08:21','2019-04-05 19:08:21'),(2591,'currentaffairs','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:29:36','2019-04-05 20:29:36'),(2592,'insurance','34.238.240.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 20:35:29','2019-04-05 20:35:29'),(2593,'physics','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:38:52','2019-04-05 21:38:52'),(2594,'irk','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:43:07','2019-04-05 21:43:07'),(2595,'chemistry','54.91.42.15',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:01','2019-04-05 21:54:36'),(2596,'commerce','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:45:13','2019-04-05 21:45:13'),(2597,'civiledu','54.91.42.15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-05 21:50:08','2019-04-05 21:50:08'),(2598,'history','35.172.115.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 01:23:16','2019-04-06 01:23:16'),(2599,'currentaffairs','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:01','2019-04-06 03:46:01'),(2600,'crk','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 03:46:30','2019-04-06 03:46:30'),(2601,'englishlit','54.227.9.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 04:05:47','2019-04-06 04:05:47'),(2602,'accounting','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:26:27','2019-04-06 07:26:27'),(2603,'physics','3.85.62.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:19','2019-04-06 07:42:57'),(2604,'civiledu','3.85.62.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 07:36:26','2019-04-06 07:36:26'),(2605,'mathematics','197.210.61.117',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 14:29:44','2019-04-06 14:29:45'),(2606,'chemistry','207.46.13.167',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-06 18:40:36','2019-10-27 04:49:17'),(2607,'commerce','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2608,'accounting','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2609,'biology','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2610,'economics','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2611,'irk','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2612,'insurance','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2613,'currentaffairs','3.81.209.176',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 20:27:52','2019-04-06 20:27:52'),(2614,'english','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:24:22'),(2615,'mathematics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:02'),(2616,'biology','3.90.165.250',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:28'),(2617,'chemistry','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:47'),(2618,'government','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:16'),(2619,'geography','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:37'),(2620,'economics','3.90.165.250',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-06 22:20:02','2019-04-06 22:21:15'),(2621,'chemistry','141.0.13.241',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:16:18','2019-04-07 11:17:09'),(2622,'chemistry','105.112.104.108',92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:17:50','2019-04-07 11:53:35'),(2623,'chemistry','82.145.222.191',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:22:54','2019-04-07 11:22:54'),(2624,'mathematics','105.112.104.108',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 11:46:52','2019-04-07 11:46:52'),(2625,'biology','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:15:42','2019-04-07 12:15:42'),(2626,'accounting','105.112.106.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 12:17:42','2019-04-07 12:17:42'),(2627,'chemistry','105.112.104.18',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:26:42','2019-04-07 13:27:24'),(2628,'biology','105.112.104.18',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:27:54','2019-04-07 13:28:33'),(2629,'mathematics','105.112.104.18',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 13:29:59','2019-04-07 13:29:59'),(2630,'chemistry','185.26.180.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:00:35','2019-04-07 16:00:35'),(2631,'chemistry','105.112.106.28',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 16:02:56','2019-04-07 16:02:56'),(2632,'chemistry','105.112.43.80',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-07 17:41:13','2019-04-07 17:41:38'),(2633,'chemistry','105.112.104.114',204,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:43:25','2019-04-08 04:55:15'),(2634,'mathematics','105.112.104.114',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 04:51:11','2019-04-08 04:51:12'),(2635,'chemistry','105.112.34.168',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 05:14:41','2019-04-08 05:14:55'),(2636,'chemistry','105.112.104.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-08 07:59:31','2019-04-08 07:59:31'),(2637,'chemistry','41.205.240.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:19:15','2019-04-09 00:19:15'),(2638,'economics','3.86.54.130',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 00:39:42','2019-04-09 00:39:42'),(2639,'commerce','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:29:18'),(2640,'accounting','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2641,'physics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2642,'crk','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:08','2019-04-09 01:23:08'),(2643,'economics','3.88.201.38',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:23:09'),(2644,'insurance','3.88.201.38',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:44'),(2645,'history','3.88.201.38',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 01:23:09','2019-04-09 01:27:56'),(2646,'mathematics','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:44:33','2019-04-09 09:44:33'),(2647,'accounting','35.171.163.44',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 09:54:57','2019-04-09 09:54:57'),(2648,'accounting','3.87.215.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 12:06:38','2019-04-09 12:06:38'),(2649,'physics','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:22','2019-04-09 17:06:22'),(2650,'economics','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:23','2019-04-09 17:05:23'),(2651,'accounting','35.172.116.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:47','2019-04-09 17:05:47'),(2652,'crk','35.172.116.74',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-09 17:05:57','2019-04-09 17:06:07'),(2653,'chemistry','207.46.13.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 02:00:09','2019-04-10 02:00:09'),(2654,'irk','54.173.242.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:23:34','2019-04-10 07:23:40'),(2655,'commerce','54.173.242.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 07:48:23','2019-04-10 07:48:23'),(2656,'government','54.147.61.26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 09:44:06','2019-04-10 09:44:06'),(2657,'geography','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2658,'government','54.145.218.250',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 11:42:00','2019-04-10 11:42:00'),(2659,'economics','3.93.241.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 12:17:07','2019-04-10 12:17:07'),(2660,'irk','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:56','2019-04-10 14:28:56'),(2661,'history','107.21.14.162',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 14:28:57','2019-04-10 14:28:57'),(2662,'irk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:31','2019-04-10 15:59:53'),(2663,'accounting','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:33','2019-04-10 16:03:21'),(2664,'economics','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:47','2019-04-10 16:02:08'),(2665,'currentaffairs','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 15:59:51','2019-04-10 16:01:26'),(2666,'insurance','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:10','2019-04-10 16:01:37'),(2667,'biology','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:18','2019-04-10 16:02:37'),(2668,'commerce','3.80.78.5',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:00:48','2019-04-10 16:02:17'),(2669,'civiledu','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:49','2019-04-10 16:02:48'),(2670,'crk','3.80.78.5',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:01:56','2019-04-10 16:02:27'),(2671,'government','3.80.78.5',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 16:02:58','2019-04-10 16:02:58'),(2672,'chemistry','207.46.13.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:32:08','2019-04-10 17:32:08'),(2673,'chemistry','66.249.69.48',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 17:41:29','2019-04-10 17:41:29'),(2674,'insurance','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:38:05','2019-04-10 18:38:05'),(2675,'civiledu','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:44:01','2019-04-10 18:44:01'),(2676,'irk','3.90.51.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 18:58:11','2019-04-10 18:58:11'),(2677,'government','3.87.45.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 20:21:49','2019-04-10 20:21:49'),(2678,'government','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:40','2019-04-10 22:50:40'),(2679,'geography','3.91.8.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-10 22:50:42','2019-04-10 22:50:42'),(2680,'english','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2681,'chemistry','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2682,'englishlit','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2683,'crk','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:10'),(2684,'economics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:10:46'),(2685,'irk','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2686,'insurance','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:10','2019-04-11 00:11:23'),(2687,'biology','54.86.96.20',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:15','2019-04-11 00:10:18'),(2688,'mathematics','54.86.96.20',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:20','2019-04-11 00:11:23'),(2689,'government','54.86.96.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:30','2019-04-11 00:10:30'),(2690,'physics','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:33','2019-04-11 00:11:18'),(2691,'accounting','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2692,'geography','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2693,'civiledu','54.86.96.20',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 00:10:46','2019-04-11 00:11:23'),(2694,'economics','3.93.17.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 02:50:27','2019-04-11 02:50:27'),(2695,'chemistry','197.253.24.190',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 10:49:51','2019-04-11 10:49:51'),(2696,'chemistry','157.55.39.202',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-11 12:13:39','2019-08-25 13:52:51'),(2697,'insurance','54.88.86.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 17:31:52','2019-04-11 17:31:52'),(2698,'chemistry','121.201.98.53',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-11 20:36:45','2019-04-11 20:36:50'),(2699,'english','41.191.107.216',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 06:44:42','2019-04-14 21:10:37'),(2700,'mathematics','41.191.104.78',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:09:38','2019-04-12 07:09:38'),(2701,'mathematics','41.191.107.41',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:45:52','2019-04-16 10:48:23'),(2702,'mathematics','41.191.107.131',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 07:54:27','2019-04-12 07:55:42'),(2703,'mathematics','41.191.104.115',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:01:58','2019-04-12 08:16:36'),(2704,'mathematics','41.191.107.49',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:17:28','2019-04-13 06:52:57'),(2705,'mathematics','41.191.104.102',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:25:53','2019-04-12 08:25:53'),(2706,'mathematics','66.249.64.180',125,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:28:03','2019-09-25 10:59:54'),(2707,'accounting','66.249.64.178',100,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 08:46:02','2019-09-30 03:38:01'),(2708,'chemistry','207.46.13.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 08:56:53','2019-04-12 08:56:53'),(2709,'mathematics','41.191.107.34',16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:03:02','2019-04-13 23:22:24'),(2710,'english','41.191.107.34',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 09:06:00','2019-04-13 23:48:54'),(2711,'english','105.112.104.107',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-12 14:42:37','2019-04-12 14:42:37'),(2712,'chemistry','46.229.168.163',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-12 16:31:11','2020-04-13 20:58:16'),(2713,'mathematics','41.191.107.225',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:36:57','2019-04-13 06:40:11'),(2714,'mathematics','41.191.107.151',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:42:48','2019-04-15 12:15:35'),(2715,'english','41.191.107.49',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 06:53:45','2019-04-13 06:53:45'),(2716,'mathematics','41.191.107.229',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:15:13','2019-04-13 07:17:41'),(2717,'english','41.191.104.98',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:23:28','2019-04-13 07:26:33'),(2718,'mathematics','41.191.104.123',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:28:03','2019-04-13 07:33:06'),(2719,'english','41.191.107.56',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:34:59','2019-04-13 07:41:26'),(2720,'mathematics','41.191.107.56',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 07:35:12','2019-04-13 07:36:14'),(2721,'english','41.191.107.38',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:01:35','2019-04-15 22:19:39'),(2722,'mathematics','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 08:14:24','2019-04-13 08:22:39'),(2723,'mathematics','41.191.107.200',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:13:40','2019-04-13 15:16:42'),(2724,'english','41.191.104.245',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:19:40','2019-04-13 15:21:22'),(2725,'mathematics','41.191.104.245',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:20:48','2019-04-13 15:36:18'),(2726,'english','41.191.104.126',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 15:41:45','2019-04-13 16:13:10'),(2727,'biology','41.191.104.126',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:10:57','2019-04-13 16:10:57'),(2728,'mathematics','41.191.107.202',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:15:56','2019-04-15 09:45:36'),(2729,'english','41.191.107.202',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:18:30','2019-04-18 12:32:41'),(2730,'mathematics','41.191.107.192',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:27:24','2019-04-13 16:30:57'),(2731,'english','41.191.107.192',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:32:20','2019-04-14 16:42:26'),(2732,'english','41.191.107.207',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:35:14','2019-04-13 16:35:15'),(2733,'english','41.191.107.57',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:38:16','2019-04-14 18:25:42'),(2734,'biology','41.191.107.57',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 16:42:04','2019-04-13 16:42:04'),(2735,'english','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:06:49','2019-04-13 17:06:49'),(2736,'history','41.191.104.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 17:14:30','2019-04-13 17:14:30'),(2737,'english','41.191.107.218',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:03:33','2019-04-13 20:03:33'),(2738,'mathematics','41.191.104.69',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:53:34','2019-04-13 20:53:34'),(2739,'chemistry','68.38.183.43',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 20:59:58','2019-04-13 20:59:58'),(2740,'english','41.191.104.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:20:44','2019-04-17 07:51:45'),(2741,'mathematics','41.191.104.66',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 21:24:15','2019-04-14 05:46:29'),(2742,'english','41.191.107.150',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:03:19','2019-04-14 22:45:16'),(2743,'english','41.191.107.152',22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:11:07','2019-04-13 22:21:17'),(2744,'mathematics','41.191.107.152',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:17:02','2019-04-13 22:17:02'),(2745,'english','41.191.107.200',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:23:24','2019-04-13 22:26:39'),(2746,'english','41.191.104.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:39:29','2019-04-13 22:41:41'),(2747,'english','41.191.107.225',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:51:32','2019-04-13 22:51:32'),(2748,'mathematics','41.191.107.222',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 22:54:57','2019-04-18 15:45:59'),(2749,'english','41.191.104.99',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:00:50','2019-04-13 23:00:50'),(2750,'english','41.191.107.137',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:32:04','2019-04-13 23:35:00'),(2751,'englishlit','18.232.74.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:13','2019-04-13 23:36:13'),(2752,'biology','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:36:44','2019-04-13 23:36:44'),(2753,'english','41.191.104.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:40:56','2019-04-13 23:40:56'),(2754,'mathematics','41.191.107.37',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-13 23:58:26','2019-04-14 00:21:39'),(2755,'biology','41.191.107.37',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:01:19','2019-04-14 00:01:19'),(2756,'english','41.191.107.37',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 00:09:50','2019-04-14 00:17:04'),(2757,'chemistry','157.55.39.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 04:27:16','2019-04-14 04:27:16'),(2758,'mathematics','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:15:55','2019-04-15 21:56:33'),(2759,'mathematics','41.191.104.105',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:19:56','2019-04-16 13:49:06'),(2760,'english','41.191.104.105',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:23:15','2019-04-16 14:41:34'),(2761,'english','41.191.104.247',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:34:00','2019-04-14 21:59:12'),(2762,'mathematics','41.191.107.39',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:52:06','2019-04-14 06:52:06'),(2763,'english','41.191.107.39',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:53:36','2019-04-16 11:08:43'),(2764,'mathematics','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 06:59:07','2019-04-14 06:59:07'),(2765,'english','41.191.107.58',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:01:04','2019-04-14 07:01:04'),(2766,'english','41.191.104.211',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:07:58','2019-04-17 08:04:27'),(2767,'english','41.191.104.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:15:46','2019-04-14 07:19:13'),(2768,'english','41.191.104.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 07:30:14','2019-04-14 07:32:46'),(2769,'chemistry','37.9.87.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 09:45:40','2019-04-14 09:45:40'),(2770,'irk','52.90.216.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 10:20:51','2019-04-14 10:20:51'),(2771,'biology','3.81.103.16',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 11:31:56','2019-04-19 04:55:11'),(2772,'accounting','34.204.107.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:03:29','2019-04-14 13:03:29'),(2773,'biology','41.191.107.44',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:11','2019-04-14 13:49:11'),(2774,'mathematics','41.191.107.44',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:49:49','2019-04-14 13:50:03'),(2775,'mathematics','41.191.104.250',84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:35','2019-04-18 08:49:17'),(2776,'biology','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:42','2019-04-14 13:53:42'),(2777,'chemistry','41.191.104.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 13:53:47','2019-04-14 13:53:47'),(2778,'englishlit','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:18:28','2019-04-14 16:18:28'),(2779,'geography','100.26.189.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:22:19','2019-04-14 16:22:19'),(2780,'english','41.191.104.212',28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:35:03','2019-04-17 05:50:48'),(2781,'english','41.191.107.136',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:55:31','2019-04-14 16:55:31'),(2782,'geography','54.152.49.211',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 16:59:08','2019-04-14 16:59:51'),(2783,'english','41.191.104.71',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:06:18','2019-04-14 17:13:26'),(2784,'english','41.191.104.116',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:16:25','2019-04-17 08:38:00'),(2785,'mathematics','41.191.104.116',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:25:32','2019-04-14 22:10:15'),(2786,'english','41.191.104.119',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:30:02','2019-04-14 17:44:00'),(2787,'english','41.191.107.55',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:47:44','2019-04-14 17:51:39'),(2788,'english','41.191.104.108',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 17:55:26','2019-04-14 18:02:51'),(2789,'english','41.191.107.205',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:07:34','2019-04-14 18:17:06'),(2790,'mathematics','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:30:52','2019-04-16 10:27:56'),(2791,'english','41.191.104.86',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:36:07','2019-04-16 10:29:42'),(2792,'english','41.191.104.240',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:37:18','2019-04-17 08:43:35'),(2793,'biology','41.191.107.219',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:48:01','2019-04-14 18:48:01'),(2794,'english','41.191.107.219',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:52:14','2019-04-14 18:52:15'),(2795,'english','41.191.107.129',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 18:56:38','2019-04-14 19:01:32'),(2796,'currentaffairs','3.90.232.134',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:06','2019-04-14 19:07:06'),(2797,'english','41.191.107.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:07:18','2019-04-14 19:09:59'),(2798,'english','41.191.104.227',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:14:06','2019-04-14 19:15:42'),(2799,'english','41.191.104.253',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:24:38','2019-04-14 19:24:38'),(2800,'english','41.191.104.112',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:46:42','2019-04-14 19:49:06'),(2801,'english','41.191.104.125',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 19:52:06','2019-04-14 19:52:07'),(2802,'english','41.191.104.252',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:13:43','2019-04-14 21:20:04'),(2803,'english','41.191.104.87',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:36:40','2019-04-14 21:43:10'),(2804,'english','41.191.107.237',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:45:45','2019-04-18 12:38:45'),(2805,'english','41.191.104.244',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:52:54','2019-04-14 21:58:31'),(2806,'chemistry','41.191.104.247',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:47','2019-04-14 21:59:47'),(2807,'biology','41.191.104.247',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 21:59:57','2019-04-14 22:02:53'),(2808,'biology','41.191.104.116',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:07:01','2019-04-14 22:10:51'),(2809,'currentaffairs','54.83.92.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:19:54','2019-04-14 22:19:54'),(2810,'english','41.191.107.43',19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:31:31','2019-04-14 22:37:38'),(2811,'biology','41.191.107.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:38:27','2019-04-14 22:38:27'),(2812,'english','41.191.104.236',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:47:43','2019-04-14 22:51:24'),(2813,'english','41.191.107.215',86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 22:57:31','2019-04-21 07:04:12'),(2814,'english','41.191.104.122',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-14 23:14:59','2019-04-14 23:16:16'),(2815,'currentaffairs','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 04:56:40','2019-04-15 04:56:40'),(2816,'biology','41.191.104.236',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:06:52','2019-04-15 05:06:52'),(2817,'biology','41.191.107.143',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:09:27','2019-04-15 05:09:27'),(2818,'english','41.191.107.143',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:10:01','2019-04-17 21:35:39'),(2819,'chemistry','54.166.224.56',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:25:39','2019-04-15 05:25:39'),(2820,'chemistry','197.210.45.192',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 05:57:49','2019-04-15 05:58:34'),(2821,'english','41.191.107.151',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:44:16','2019-04-15 12:15:57'),(2822,'mathematics','41.191.104.230',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 06:47:22','2019-04-15 06:47:22'),(2823,'chemistry','100.24.41.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:39:29','2019-04-15 08:39:29'),(2824,'economics','100.24.41.153',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 08:41:00','2019-04-15 08:46:51'),(2825,'mathematics','41.191.107.45',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:19:04','2019-04-15 09:19:04'),(2826,'english','41.191.107.45',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:21:49','2019-04-15 09:23:48'),(2827,'physics','41.191.107.202',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 09:44:31','2019-04-15 09:44:31'),(2828,'accounting','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:45','2019-04-15 10:30:45'),(2829,'insurance','3.80.250.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 10:30:59','2019-04-15 10:30:59'),(2830,'accounting','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:29','2019-04-15 12:13:29'),(2831,'biology','54.146.247.244',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:13:34','2019-04-15 12:16:32'),(2832,'biology','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:17:48','2019-04-15 12:17:48'),(2833,'government','54.146.247.244',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:19:13','2019-04-15 12:19:13'),(2834,'mathematics','41.191.104.246',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 12:58:00','2019-04-15 12:58:00'),(2835,'english','41.191.104.246',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 13:05:40','2019-04-15 13:27:26'),(2836,'english','41.191.107.235',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:15:42','2019-04-15 14:15:42'),(2837,'english','41.191.107.149',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:19:44','2019-04-15 14:20:56'),(2838,'english','41.191.104.248',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:29:00','2019-04-15 14:31:19'),(2839,'english','41.191.107.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:32:49','2019-04-19 06:55:21'),(2840,'english','41.191.104.235',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:42:02','2019-04-17 08:31:05'),(2841,'mathematics','41.191.104.235',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 14:44:03','2019-04-15 14:44:48'),(2842,'english','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:39:05','2019-04-15 21:39:05'),(2843,'mathematics','41.191.107.144',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:41:15','2019-04-15 21:41:15'),(2844,'english','41.191.104.83',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:47:14','2019-04-15 21:48:53'),(2845,'english','41.191.107.213',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:51:15','2019-04-15 21:53:42'),(2846,'mathematics','41.191.107.201',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 21:59:07','2019-04-15 21:59:07'),(2847,'english','41.191.107.201',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:01:58','2019-04-15 22:03:34'),(2848,'mathematics','41.191.104.80',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:08:37','2019-04-18 08:45:25'),(2849,'english','41.191.104.80',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:11:48','2019-04-15 22:11:48'),(2850,'mathematics','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:24:37','2019-04-15 22:24:37'),(2851,'english','41.191.104.208',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-15 22:26:42','2019-04-15 22:26:42'),(2852,'mathematics','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2853,'commerce','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2854,'biology','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2855,'physics','34.207.128.166',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2856,'economics','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:12'),(2857,'irk','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:52:35'),(2858,'civiledu','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:12','2019-04-16 00:37:13'),(2859,'accounting','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2860,'chemistry','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:37:13'),(2861,'currentaffairs','34.207.128.166',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:37:13','2019-04-16 00:52:35'),(2862,'english','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2863,'government','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2864,'crk','34.207.128.166',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 00:52:35','2019-04-16 00:52:35'),(2865,'biology','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2866,'mathematics','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2867,'english','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2868,'chemistry','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2869,'government','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2870,'crk','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2871,'economics','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2872,'englishlit','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2873,'geography','3.91.220.96',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:02'),(2874,'irk','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2875,'civiledu','3.91.220.96',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:02','2019-04-16 01:34:03'),(2876,'insurance','3.91.220.96',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2877,'insurance','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2878,'history','3.91.220.96',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2879,'history','3.91.220.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 01:34:03','2019-04-16 01:34:03'),(2880,'mathematics','54.224.201.145',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:37:58','2019-04-16 03:10:18'),(2881,'english','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2882,'accounting','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2883,'englishlit','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2884,'government','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 03:10:11'),(2885,'crk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:40:03'),(2886,'currentaffairs','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:40:03','2019-04-16 02:59:59'),(2887,'commerce','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2888,'geography','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2889,'economics','54.224.201.145',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2890,'irk','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2891,'civiledu','54.224.201.145',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 03:10:11'),(2892,'history','54.224.201.145',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 02:59:59','2019-04-16 02:59:59'),(2893,'biology','54.224.201.145',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 03:10:11','2019-04-16 03:10:17'),(2894,'mathematics','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:12:18','2019-04-16 09:12:18'),(2895,'biology','41.191.107.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:29:02','2019-04-16 09:29:02'),(2896,'english','41.191.104.232',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 09:42:38','2019-04-16 09:48:20'),(2897,'english','41.191.107.41',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:49:42','2019-04-16 10:49:42'),(2898,'english','41.191.104.94',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 10:52:36','2019-04-16 11:05:20'),(2899,'mathematics','41.191.104.94',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:01:04','2019-04-16 13:37:18'),(2900,'english','41.191.107.223',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 11:14:00','2019-04-16 11:14:00'),(2901,'english','41.191.104.243',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:01:15','2019-04-16 13:01:15'),(2902,'english','41.191.104.113',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 13:04:04','2019-04-22 16:45:32'),(2903,'chemistry','157.55.39.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:39:34','2019-04-16 14:39:34'),(2904,'irk','54.226.182.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 14:47:43','2019-04-16 14:47:43'),(2905,'english','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:32:59'),(2906,'mathematics','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:46'),(2907,'accounting','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:50'),(2908,'biology','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:08'),(2909,'chemistry','100.26.189.99',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:33'),(2910,'currentaffairs','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:33:17'),(2911,'history','100.26.189.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-16 18:30:43','2019-04-16 18:34:26'),(2912,'english','41.191.107.232',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-16 22:12:50','2020-01-17 15:50:46'),(2913,'mathematics','41.191.107.48',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:08:33','2019-04-17 05:08:33'),(2914,'english','41.191.107.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:11:56','2019-04-17 05:21:50'),(2915,'english','41.191.104.209',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:29:28','2019-04-17 05:35:08'),(2916,'english','41.191.104.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:38:16','2019-04-17 05:43:44'),(2917,'english','41.191.104.101',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 05:55:22','2019-04-17 05:57:06'),(2918,'english','41.191.104.215',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:08:35','2019-04-17 08:14:14'),(2919,'english','41.191.104.229',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:15:48','2019-04-17 08:15:48'),(2920,'english','41.191.107.157',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 08:54:44','2019-04-17 09:04:13'),(2921,'english','41.191.104.218',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:09:49','2019-04-17 09:14:17'),(2922,'english','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:34'),(2923,'mathematics','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:47'),(2924,'accounting','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2925,'englishlit','54.205.196.174',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:14:17'),(2926,'crk','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2927,'civiledu','54.205.196.174',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:12:15'),(2928,'history','54.205.196.174',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:12:15','2019-04-17 09:13:43'),(2929,'english','41.191.107.158',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:17:03','2019-04-17 09:21:36'),(2930,'english','41.191.104.79',29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:43:16','2019-04-17 09:52:06'),(2931,'economics','41.191.107.132',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:54:34','2019-04-17 09:54:34'),(2932,'english','41.191.107.212',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 09:58:06','2019-04-18 18:02:13'),(2933,'biology','41.191.107.212',14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:26','2019-04-17 10:10:02'),(2934,'chemistry','41.242.60.178',3655,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:00:43','2019-04-18 16:24:22'),(2935,'mathematics','41.242.60.178',4368,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:06:02','2019-04-18 16:14:42'),(2936,'history','41.191.107.156',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:11:59','2019-04-17 10:17:23'),(2937,'geography','41.242.60.178',4586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:46:59','2019-04-18 15:58:23'),(2938,'biology','41.242.60.178',3792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 10:47:33','2019-04-18 16:20:34'),(2939,'english','41.191.104.97',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 14:41:16','2019-04-17 14:41:16'),(2940,'chemistry','105.112.120.90',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:08','2019-04-17 19:01:28'),(2941,'crk','105.112.120.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-17 18:54:50','2019-04-17 18:54:50'),(2942,'chemistry','107.167.107.193',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:06:47','2019-04-18 08:06:48'),(2943,'english','41.242.60.178',10980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 08:10:26','2019-04-18 15:55:34'),(2944,'mathematics','105.112.22.82',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:05:20','2019-04-18 11:05:20'),(2945,'crk','41.242.60.178',5752,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:17:29','2019-04-18 15:57:03'),(2946,'chemistry','207.46.13.94',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-18 11:50:50','2019-12-16 22:19:20'),(2947,'chemistry','207.46.13.95',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:28','2019-04-18 11:52:29'),(2948,'chemistry','207.46.13.91',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:52:51','2019-04-18 11:52:52'),(2949,'chemistry','207.46.13.96',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 11:53:29','2019-04-18 11:53:29'),(2950,'english','104.133.10.104',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 12:22:48','2019-04-18 12:22:49'),(2951,'economics','41.242.60.178',4544,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:20','2019-04-18 15:59:44'),(2952,'irk','41.242.60.178',3510,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:32:42','2019-04-18 16:01:01'),(2953,'civiledu','41.242.60.178',4680,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:03','2019-04-18 16:02:40'),(2954,'currentaffairs','41.242.60.178',4120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:25','2019-04-18 16:29:06'),(2955,'history','41.242.60.178',4000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:33:46','2019-04-18 16:13:14'),(2956,'commerce','41.242.60.178',4160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:30','2019-04-18 16:16:35'),(2957,'accounting','41.242.60.178',3955,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:34:52','2019-04-18 16:18:32'),(2958,'physics','41.242.60.178',3529,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:35:37','2019-04-18 16:22:15'),(2959,'englishlit','41.242.60.178',3287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:20','2019-04-18 16:26:08'),(2960,'government','41.242.60.178',2998,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 13:36:42','2019-04-18 16:27:48'),(2961,'english','41.191.104.254',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:11:36','2019-04-18 18:05:09'),(2962,'english','41.191.104.66',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:14:50','2019-04-18 15:14:50'),(2963,'english','41.191.107.222',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:36:08','2019-04-18 15:37:19'),(2964,'english','41.191.107.203',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 15:47:57','2019-04-28 08:22:11'),(2965,'mathematics','41.191.107.203',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:08:54','2019-04-18 16:08:54'),(2966,'english','41.191.107.40',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 16:11:13','2019-04-18 16:11:13'),(2967,'english','18.205.17.84',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:14:02','2019-04-18 17:14:02'),(2968,'crk','105.112.120.55',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:31:40','2019-04-18 17:32:05'),(2969,'english','41.191.104.249',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 17:37:57','2019-04-18 17:39:42'),(2970,'history','3.87.15.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-18 20:46:27','2019-04-18 20:46:27'),(2971,'chemistry','54.36.150.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 00:33:38','2019-04-19 00:33:38'),(2972,'mathematics','41.191.104.212',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:14:26','2019-04-19 03:14:26'),(2973,'biology','41.191.104.123',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:26:07','2019-04-19 03:26:39'),(2974,'currentaffairs','50.17.23.49',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 03:47:16','2019-04-19 03:47:16'),(2975,'economics','54.211.19.182',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 08:17:33','2019-04-19 08:17:33'),(2976,'chemistry','105.112.53.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:25:47','2019-04-19 11:25:47'),(2977,'english','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:28','2019-04-19 11:43:28'),(2978,'mathematics','150.70.167.83',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:43:34','2019-04-19 11:43:35'),(2979,'chemistry','129.56.87.223',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:45:39','2019-04-19 11:45:39'),(2980,'english','150.70.168.140',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 11:52:20','2019-04-19 11:52:20'),(2981,'chemistry','45.56.148.110',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:08:00','2019-04-19 12:08:00'),(2982,'chemistry','197.210.29.247',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:11:16','2019-04-19 12:11:16'),(2983,'chemistry','41.203.78.98',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 12:30:23','2019-04-19 12:31:44'),(2984,'chemistry','54.36.150.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 15:16:27','2019-04-19 15:16:27'),(2985,'chemistry','197.210.226.150',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:13:39','2019-04-19 17:13:39'),(2986,'chemistry','197.210.227.220',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 17:14:17','2019-04-19 17:14:17'),(2987,'chemistry','141.0.12.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 19:46:58','2019-04-19 19:46:58'),(2988,'chemistry','105.112.37.27',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:20:05','2019-04-19 21:26:36'),(2989,'physics','105.112.37.27',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:27:16','2019-04-19 21:28:59'),(2990,'chemistry','141.0.13.232',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:52:32','2019-04-19 21:52:32'),(2991,'chemistry','129.205.112.87',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 21:54:09','2019-04-19 21:54:09'),(2992,'chemistry','54.36.148.72',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-19 22:05:06','2019-04-19 22:05:06'),(2993,'accounting','3.81.231.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 03:16:50','2019-04-20 03:16:50'),(2994,'chemistry','197.210.53.127',62,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 06:17:30','2020-05-25 11:23:46'),(2995,'chemistry','46.229.168.145',7,'','US',NULL,'Washington, D.C.',NULL,NULL,NULL,NULL,'2019-04-20 06:50:25','2020-07-19 19:33:37'),(2996,'physics','3.84.223.107',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 06:58:19','2019-04-20 06:58:19'),(2997,'chemistry','129.205.112.93',82,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 07:41:38','2019-08-22 14:35:12'),(2998,'chemistry','54.36.149.78',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 10:51:52','2019-04-20 10:51:52'),(2999,'chemistry','197.210.45.210',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 11:27:41','2019-04-20 11:27:41'),(3000,'chemistry','141.0.13.88',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-20 12:34:07','2019-09-06 19:28:17'),(3001,'chemistry','197.149.95.94',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 14:34:54','2019-04-20 14:35:18'),(3002,'chemistry','197.210.52.48',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:06:20','2019-04-20 15:06:53'),(3003,'chemistry','197.210.53.251',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 15:07:19','2019-04-20 15:08:04'),(3004,'chemistry','105.112.68.65',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 18:16:36','2019-04-20 18:17:01'),(3005,'chemistry','213.205.240.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-20 20:44:50','2019-04-20 20:44:50'),(3006,'biology','66.249.69.154',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 01:47:39','2019-04-21 01:47:40'),(3007,'mathematics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:24','2019-04-21 02:39:48'),(3008,'commerce','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3009,'accounting','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3010,'physics','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3011,'chemistry','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:48'),(3012,'government','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3013,'geography','54.162.77.113',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:49'),(3014,'irk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:34','2019-04-21 02:39:34'),(3015,'currentaffairs','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:39','2019-04-21 02:39:41'),(3016,'biology','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:48','2019-04-21 02:39:48'),(3017,'crk','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3018,'economics','54.162.77.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:49','2019-04-21 02:39:49'),(3019,'english','54.162.77.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 02:39:51','2019-04-21 02:39:51'),(3020,'chemistry','207.46.13.23',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 06:08:10','2019-04-21 06:08:10'),(3021,'chemistry','40.77.167.30',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 07:33:49','2019-04-21 07:33:49'),(3022,'chemistry','197.210.52.108',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:52:14','2019-04-21 20:54:39'),(3023,'mathematics','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:06','2019-04-21 20:54:06'),(3024,'chemistry','197.210.52.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 20:54:30','2019-04-21 20:54:30'),(3025,'chemistry','3.95.160.2',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:01:30','2019-04-21 21:01:30'),(3026,'mathematics','197.210.52.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 21:08:15','2019-04-21 21:08:15'),(3027,'geography','18.212.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-21 22:48:55','2019-04-21 22:48:55'),(3028,'english','3.90.10.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 00:18:21','2019-04-22 00:18:21'),(3029,'mathematics','41.191.104.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:45:03','2019-04-22 16:45:03'),(3030,'biology','41.191.104.113',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 16:47:55','2019-04-22 16:47:55'),(3031,'chemistry','54.36.149.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 18:08:13','2019-04-22 18:08:13'),(3032,'economics','3.91.230.6',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-22 21:54:59','2019-04-22 21:54:59'),(3033,'english','3.92.201.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 00:59:05','2019-04-23 00:59:05'),(3034,'biology','66.249.66.158',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 01:15:09','2019-07-28 01:21:20'),(3035,'mathematics','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:10','2019-04-23 03:28:10'),(3036,'civiledu','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:28:12','2019-04-23 03:28:12'),(3037,'physics','18.212.208.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:29:49','2019-04-23 04:14:14'),(3038,'commerce','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:49:07','2019-04-23 03:49:07'),(3039,'crk','18.212.208.181',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 03:57:30','2019-04-23 03:57:30'),(3040,'history','54.159.47.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-23 21:59:22','2019-04-23 21:59:22'),(3041,'irk','52.204.101.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 03:42:30','2019-04-24 03:42:30'),(3042,'chemistry','207.46.13.180',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:12','2019-04-24 08:03:12'),(3043,'chemistry','207.46.13.159',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:17','2019-04-24 08:03:17'),(3044,'chemistry','207.46.13.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:22','2019-04-24 08:03:22'),(3045,'chemistry','207.46.13.87',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-24 08:03:28','2019-08-04 15:43:48'),(3046,'english','66.249.66.158',87,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-25 18:26:25','2020-01-23 20:32:43'),(3047,'chemistry','1.127.110.152',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 00:54:05','2019-04-26 00:54:20'),(3048,'chemistry','40.77.167.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 03:53:28','2019-04-26 03:53:28'),(3049,'currentaffairs','3.90.189.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 05:24:35','2019-04-26 05:24:35'),(3050,'chemistry','197.210.44.24',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 10:16:42','2019-04-26 10:16:42'),(3051,'chemistry','1.127.106.232',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:04:42','2019-04-26 12:04:42'),(3052,'physics','1.127.106.232',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-26 12:40:22','2019-04-26 12:47:18'),(3053,'chemistry','46.229.168.138',7,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-26 13:52:16','2020-02-26 17:26:37'),(3054,'mathematics','1.127.109.88',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:09:51','2019-04-27 00:22:30'),(3055,'commerce','1.127.109.88',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:23:12','2019-04-27 00:24:06'),(3056,'biology','1.127.109.88',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:47:44','2019-04-27 00:47:44'),(3057,'chemistry','40.77.167.11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 00:58:09','2019-04-27 00:58:09'),(3058,'physics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:19'),(3059,'english','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:06'),(3060,'government','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3061,'accounting','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3062,'biology','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3063,'crk','3.89.242.31',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3064,'chemistry','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3065,'geography','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:11:14'),(3066,'englishlit','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3067,'economics','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3068,'irk','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3069,'currentaffairs','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3070,'history','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:10:59','2019-04-27 01:10:59'),(3071,'mathematics','3.89.242.31',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:22','2019-04-27 01:11:29'),(3072,'commerce','3.89.242.31',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 01:11:31','2019-04-27 01:12:19'),(3073,'biology','100.25.216.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 02:25:13','2019-04-27 02:25:13'),(3074,'crk','3.82.139.169',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 06:35:55','2019-04-27 06:35:55'),(3075,'chemistry','46.229.168.154',17,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-27 07:27:19','2020-03-26 03:24:26'),(3076,'commerce','52.91.249.166',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 08:35:06','2019-04-27 08:35:06'),(3077,'currentaffairs','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 09:50:55','2019-04-27 09:50:55'),(3078,'chemistry','154.118.65.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:30','2019-04-27 10:57:30'),(3079,'commerce','34.228.140.13',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 10:57:38','2019-04-27 10:57:38'),(3080,'biology','1.127.106.17',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:45:45','2019-04-27 12:46:43'),(3081,'mathematics','1.127.106.17',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 12:47:05','2019-04-27 12:48:52'),(3082,'englishlit','52.23.198.127',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 13:44:10','2019-04-27 13:44:10'),(3083,'chemistry','66.249.73.80',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-27 21:38:40','2019-04-27 21:38:40'),(3084,'mathematics','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3085,'english','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3086,'accounting','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3087,'physics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3088,'chemistry','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3089,'biology','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3090,'government','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3091,'economics','3.81.141.171',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3092,'civiledu','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:11'),(3093,'insurance','3.81.141.171',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 04:05:11','2019-04-28 04:05:12'),(3094,'chemistry','41.203.78.127',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 08:55:23','2019-04-28 08:55:37'),(3095,'chemistry','41.190.2.64',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:52:36','2019-04-28 11:56:48'),(3096,'chemistry','41.190.3.64',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 11:56:16','2019-04-28 11:56:16'),(3097,'chemistry','157.55.39.153',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-28 21:48:24','2019-04-28 21:48:24'),(3098,'chemistry','40.77.167.71',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-29 06:23:21','2019-11-07 16:42:12'),(3099,'chemistry','41.190.2.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:39:52','2019-04-29 10:39:52'),(3100,'biology','41.191.104.87',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 10:40:48','2019-04-29 10:40:48'),(3101,'insurance','52.204.170.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 21:28:49','2019-04-29 21:28:49'),(3102,'crk','3.85.56.1',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 22:14:35','2019-04-29 22:14:35'),(3103,'accounting','3.85.173.186',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-29 23:37:13','2019-04-29 23:37:13'),(3104,'chemistry','157.55.39.12',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 07:21:41','2019-06-12 00:41:53'),(3105,'commerce','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3106,'biology','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3107,'physics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3108,'government','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:04'),(3109,'irk','34.224.60.217',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:24:47'),(3110,'currentaffairs','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3111,'history','34.224.60.217',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:04','2019-04-30 09:04:05'),(3112,'english','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3113,'crk','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3114,'economics','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3115,'civiledu','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3116,'insurance','34.224.60.217',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:04:05','2019-04-30 09:04:05'),(3117,'geography','34.224.60.217',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 09:33:31','2019-04-30 09:33:31'),(3118,'chemistry','46.229.168.151',51,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-04-30 09:38:26','2019-12-01 18:07:27'),(3119,'chemistry','154.68.194.212',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-04-30 16:36:27','2019-04-30 16:37:47'),(3120,'chemistry','157.55.39.229',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 04:27:55','2019-05-01 04:27:55'),(3121,'chemistry','54.36.148.82',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 05:05:50','2019-05-01 05:05:50'),(3122,'biology','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3123,'physics','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:50'),(3124,'englishlit','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:58:08'),(3125,'government','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3126,'civiledu','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3127,'currentaffairs','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 07:01:56'),(3128,'history','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:13','2019-05-01 06:54:13'),(3129,'mathematics','54.226.59.135',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:23','2019-05-01 07:01:57'),(3130,'english','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:54'),(3131,'commerce','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:46'),(3132,'accounting','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3133,'irk','54.226.59.135',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:34','2019-05-01 07:01:56'),(3134,'geography','54.226.59.135',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:54:42','2019-05-01 07:01:56'),(3135,'insurance','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 06:58:08','2019-05-01 06:58:08'),(3136,'chemistry','54.226.59.135',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 07:01:56','2019-05-01 07:01:56'),(3137,'chemistry','197.210.45.72',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:45:40','2019-05-01 10:59:40'),(3138,'mathematics','197.210.45.72',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:53:54','2019-05-01 10:55:42'),(3139,'english','197.210.45.72',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 10:55:54','2019-05-01 10:57:36'),(3140,'biology','41.191.104.237',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-01 14:18:27','2019-05-01 14:18:27'),(3141,'chemistry','197.210.54.37',61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:20','2019-05-02 10:53:48'),(3142,'chemistry','197.210.54.223',53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 08:50:32','2019-05-02 10:47:10'),(3143,'chemistry','197.210.55.99',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 10:14:45','2019-05-02 10:50:02'),(3144,'chemistry','197.210.226.157',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:20:04','2019-05-02 11:20:04'),(3145,'chemistry','197.210.226.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:22:30','2019-05-02 11:22:30'),(3146,'chemistry','197.210.8.29',630,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 11:34:06','2019-05-02 12:14:01'),(3147,'chemistry','197.210.54.141',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-02 13:47:41','2019-05-02 13:48:21'),(3148,'chemistry','129.205.112.134',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 04:12:08','2019-05-03 04:12:09'),(3149,'chemistry','197.210.29.46',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 07:52:22','2019-05-03 08:00:45'),(3150,'chemistry','197.210.54.222',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:06:50','2019-05-03 09:26:09'),(3151,'chemistry','197.210.55.133',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:07:57','2019-05-03 09:13:11'),(3152,'chemistry','197.210.54.105',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:11:28','2019-05-03 09:28:30'),(3153,'chemistry','197.210.55.36',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 08:54:00','2019-05-03 08:55:53'),(3154,'mathematics','105.112.10.87',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 11:24:44','2019-05-03 11:24:44'),(3155,'chemistry','197.210.60.42',68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 12:22:25','2019-05-03 13:34:02'),(3156,'mathematics','197.210.60.42',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-03 13:36:32','2019-05-03 13:54:05'),(3157,'mathematics','197.210.55.133',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:55:08','2019-05-04 06:23:05'),(3158,'mathematics','197.210.54.38',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:57:02','2019-05-04 06:24:02'),(3159,'mathematics','197.210.54.132',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 05:59:05','2019-05-04 06:07:02'),(3160,'mathematics','197.210.54.193',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 06:25:03','2019-05-04 06:25:03'),(3161,'chemistry','41.190.3.43',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-04 12:28:58','2019-05-04 12:28:58'),(3162,'chemistry','197.210.44.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 15:39:23','2019-05-05 15:39:23'),(3163,'chemistry','40.77.167.181',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-05 21:50:59','2019-07-20 03:21:08'),(3164,'mathematics','18.204.19.147',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3165,'physics','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3166,'accounting','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:49'),(3167,'englishlit','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3168,'economics','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3169,'irk','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:35'),(3170,'insurance','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:35','2019-05-06 23:11:52'),(3171,'geography','18.204.19.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:44','2019-05-06 23:11:44'),(3172,'english','18.204.19.147',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:08'),(3173,'commerce','18.204.19.147',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:12:01'),(3174,'chemistry','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3175,'currentaffairs','18.204.19.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-06 23:11:52','2019-05-06 23:11:52'),(3176,'accounting','23.22.231.188',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 02:31:16','2019-05-08 02:31:16'),(3177,'insurance','66.249.66.159',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 13:09:16','2019-05-08 13:09:17'),(3178,'physics','66.249.66.158',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 14:31:06','2019-05-08 14:31:06'),(3179,'biology','54.227.2.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-08 22:48:34','2019-05-08 22:48:34'),(3180,'economics','105.112.38.158',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 13:52:26','2019-05-09 13:52:26'),(3181,'mathematics','3.80.87.86',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 18:51:06','2019-05-09 18:51:06'),(3182,'chemistry','187.85.6.94',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-09 20:51:54','2019-05-09 20:52:08'),(3183,'englishlit','54.196.16.254',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 00:29:52','2019-05-10 00:29:52'),(3184,'englishlit','105.112.106.10',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 06:29:03','2019-05-10 06:29:03'),(3185,'chemistry','129.56.111.134',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 07:46:16','2019-05-10 07:49:26'),(3186,'chemistry','129.205.112.138',591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 09:28:33','2019-05-10 11:48:10'),(3187,'chemistry','207.46.13.121',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 10:25:32','2019-05-10 10:25:32'),(3188,'english','129.205.112.138',148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 11:48:25','2019-05-10 11:52:58'),(3189,'english','129.205.112.140',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-10 18:19:45','2019-05-10 18:19:45'),(3190,'chemistry','172.90.37.138',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:27:48','2019-05-13 00:36:13'),(3191,'biology','172.90.37.138',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 14:31:17','2019-05-11 14:31:17'),(3192,'geography','3.93.186.225',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 17:05:27','2019-05-11 17:05:27'),(3193,'chemistry','54.197.219.123',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-11 21:40:32','2019-05-11 21:40:32'),(3194,'english','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3195,'mathematics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3196,'commerce','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3197,'biology','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3198,'physics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3199,'economics','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3200,'irk','18.209.167.58',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 00:19:40','2019-05-12 00:19:40'),(3201,'economics','54.164.105.120',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 01:32:51','2019-05-12 01:32:51'),(3202,'biology','66.249.64.176',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-12 05:47:32','2019-09-21 02:44:48'),(3203,'mathematics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3204,'commerce','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3205,'biology','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3206,'englishlit','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3207,'economics','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3208,'civiledu','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3209,'history','54.221.28.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 06:18:28','2019-05-12 06:18:28'),(3210,'chemistry','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3211,'government','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3212,'crk','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3213,'geography','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3214,'civiledu','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3215,'currentaffairs','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3216,'history','3.81.224.243',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:04:08','2019-05-12 07:04:08'),(3217,'mathematics','3.81.224.243',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 07:05:34','2019-05-12 07:05:34'),(3218,'english','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3219,'mathematics','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:59:25'),(3220,'commerce','34.229.209.208',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:48'),(3221,'physics','34.229.209.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:27'),(3222,'crk','34.229.209.208',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:58:54'),(3223,'irk','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3224,'currentaffairs','34.229.209.208',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:41:10','2019-05-12 09:49:05'),(3225,'chemistry','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:58:54'),(3226,'government','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:45:06'),(3227,'economics','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:45:06','2019-05-12 09:49:05'),(3228,'biology','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:49:05'),(3229,'insurance','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:49:05','2019-05-12 09:58:54'),(3230,'accounting','34.229.209.208',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:38','2019-05-12 09:58:38'),(3231,'geography','34.229.209.208',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:42','2019-05-12 09:58:54'),(3232,'civiledu','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3233,'history','34.229.209.208',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 09:58:54','2019-05-12 09:58:54'),(3234,'currentaffairs','54.80.195.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 10:51:10','2019-05-12 10:51:10'),(3235,'chemistry','46.229.168.131',42,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-12 23:53:27','2020-05-04 19:51:47'),(3236,'biology','54.146.12.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 01:52:08','2019-05-13 01:52:08'),(3237,'physics','3.82.108.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 03:15:59','2019-05-13 03:15:59'),(3238,'physics','54.152.180.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 06:31:46','2019-05-13 06:31:46'),(3239,'english','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 07:47:11','2019-05-13 07:47:11'),(3240,'mathematics','3.82.113.228',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 08:15:22','2019-05-13 08:15:22'),(3241,'commerce','3.84.15.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 09:46:15','2019-05-13 09:46:15'),(3242,'commerce','54.157.233.8',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 12:58:13','2019-05-13 12:58:13'),(3243,'irk','54.175.238.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 17:30:45','2019-05-13 17:30:45'),(3244,'economics','18.206.157.151',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-13 19:50:15','2019-05-13 19:50:15'),(3245,'accounting','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3246,'englishlit','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3247,'government','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3248,'crk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3249,'geography','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3250,'irk','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3251,'currentaffairs','18.234.203.113',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:16:31','2019-05-14 09:16:31'),(3252,'economics','18.234.203.113',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 09:23:50','2019-05-14 09:23:50'),(3253,'physics','66.249.64.180',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-14 11:36:21','2019-08-24 00:09:49'),(3254,'biology','54.221.14.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-14 17:29:34','2019-05-14 17:29:34'),(3255,'chemistry','46.229.168.162',43,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-15 05:36:54','2020-03-22 22:42:10'),(3256,'crk','3.94.115.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 08:37:16','2019-05-15 08:37:16'),(3257,'english','54.159.102.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 10:04:02','2019-05-15 10:04:02'),(3258,'currentaffairs','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:34:44','2019-05-15 14:34:44'),(3259,'geography','174.129.171.245',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 14:57:11','2019-05-15 14:57:11'),(3260,'government','54.224.250.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 18:04:50','2019-05-15 18:04:50'),(3261,'government','3.84.0.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:54:43','2019-05-15 19:54:43'),(3262,'chemistry','77.88.47.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 19:56:40','2019-05-15 19:56:40'),(3263,'englishlit','3.84.53.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-15 23:23:15','2019-05-15 23:23:15'),(3264,'crk','107.20.105.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:20:12','2019-05-16 00:20:12'),(3265,'chemistry','34.228.195.54',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 00:22:33','2019-05-16 03:09:28'),(3266,'chemistry','40.77.167.61',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:07:33','2019-05-16 11:07:33'),(3267,'englishlit','52.202.251.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 11:24:33','2019-05-16 11:24:33'),(3268,'chemistry','5.255.250.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-16 21:12:24','2019-08-21 01:57:50'),(3269,'accounting','54.92.151.164',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-16 21:37:19','2019-05-16 21:37:19'),(3270,'chemistry','46.229.168.146',10,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 02:19:29','2020-04-16 08:40:54'),(3271,'chemistry','46.229.168.139',4,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-17 17:44:01','2020-05-30 04:55:22'),(3272,'commerce','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3273,'government','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3274,'crk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3275,'irk','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3276,'insurance','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3277,'currentaffairs','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3278,'history','54.198.100.47',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 20:13:14','2019-05-17 20:13:14'),(3279,'mathematics','105.112.52.3',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-17 21:46:44','2019-05-17 21:46:44'),(3280,'chemistry','54.36.148.94',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-18 05:43:40','2020-05-29 00:37:58'),(3281,'chemistry','3.84.208.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 09:11:50','2019-05-18 09:11:50'),(3282,'chemistry','40.77.167.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 16:21:00','2019-05-18 16:21:00'),(3283,'accounting','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:09','2019-05-18 18:40:09'),(3284,'history','54.164.220.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 18:40:52','2019-05-18 18:40:52'),(3285,'mathematics','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:39'),(3286,'english','3.92.203.226',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:50'),(3287,'commerce','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:44'),(3288,'physics','3.92.203.226',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:42'),(3289,'biology','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3290,'crk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3291,'irk','3.92.203.226',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3292,'currentaffairs','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3293,'economics','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3294,'history','3.92.203.226',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:36','2019-05-18 19:44:36'),(3295,'accounting','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:37','2019-05-18 19:44:37'),(3296,'englishlit','3.92.203.226',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 19:44:47','2019-05-18 19:44:47'),(3297,'insurance','3.80.150.196',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-18 22:44:14','2019-05-18 22:44:14'),(3298,'chemistry','157.55.39.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 04:44:12','2019-05-19 04:44:12'),(3299,'history','3.94.79.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 06:05:58','2019-05-19 06:05:58'),(3300,'chemistry','40.77.167.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-19 16:57:00','2019-05-19 16:57:00'),(3301,'insurance','54.163.157.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 03:05:04','2019-05-20 03:05:04'),(3302,'chemistry','157.55.39.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 13:59:47','2019-05-20 13:59:47'),(3303,'english','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3304,'mathematics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3305,'biology','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3306,'physics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3307,'crk','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3308,'economics','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3309,'insurance','54.145.38.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-20 21:49:16','2019-05-20 21:49:16'),(3310,'english','54.91.198.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 17:32:47','2019-05-21 17:32:47'),(3311,'physics','54.145.4.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-21 18:22:25','2019-05-21 18:22:25'),(3312,'mathematics','54.234.10.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 02:40:52','2019-05-22 02:40:52'),(3313,'mathematics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3314,'physics','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3315,'crk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3316,'geography','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3317,'irk','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3318,'civiledu','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3319,'history','54.221.14.142',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-22 07:53:59','2019-05-22 07:53:59'),(3320,'chemistry','95.216.226.236',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 05:15:03','2019-05-25 05:21:26'),(3321,'government','52.55.44.47',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 07:55:42','2019-05-23 07:55:42'),(3322,'civiledu','54.208.169.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 10:29:28','2019-05-23 10:29:28'),(3323,'chemistry','139.78.253.195',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:06:11','2019-05-23 23:22:30'),(3324,'chemistry','3.85.143.239',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 20:44:40','2019-05-23 21:04:27'),(3325,'chemistry','40.77.167.134',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-23 23:49:56','2019-07-17 20:20:15'),(3326,'chemistry','54.36.149.30',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 01:52:33','2019-05-24 01:52:33'),(3327,'english','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3328,'biology','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3329,'chemistry','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3330,'englishlit','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3331,'geography','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3332,'economics','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3333,'irk','54.224.29.25',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 02:18:37','2019-05-24 02:18:37'),(3334,'chemistry','173.212.246.232',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 07:36:57','2019-05-24 07:37:03'),(3335,'chemistry','197.210.47.154',119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 16:46:41','2019-05-24 17:36:26'),(3336,'chemistry','185.20.6.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:01:25','2019-05-24 18:01:25'),(3337,'chemistry','197.210.54.59',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:29:11','2019-05-24 18:29:11'),(3338,'chemistry','197.210.55.73',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:36:24','2019-05-24 18:37:10'),(3339,'currentaffairs','197.210.55.73',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-24 18:38:00','2019-05-24 18:38:00'),(3340,'chemistry','197.210.227.35',26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:20:02','2019-05-25 14:21:17'),(3341,'chemistry','197.210.226.250',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:21:41','2019-05-25 14:22:30'),(3342,'mathematics','197.210.227.35',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:23:25','2019-05-25 14:25:38'),(3343,'mathematics','197.210.226.250',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-25 14:24:57','2019-05-25 14:24:57'),(3344,'chemistry','207.46.13.90',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-26 03:26:44','2019-08-07 06:55:06'),(3345,'chemistry','54.36.148.190',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 05:37:38','2019-05-28 05:37:38'),(3346,'chemistry','197.253.9.125',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-28 10:08:10','2019-05-28 10:08:10'),(3347,'chemistry','105.112.41.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 21:38:58','2019-05-29 21:38:58'),(3348,'chemistry','93.158.161.136',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-29 23:17:18','2019-05-29 23:17:18'),(3349,'chemistry','62.210.202.81',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 07:54:02','2019-05-30 07:54:08'),(3350,'chemistry','197.210.227.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:02','2019-05-30 10:34:02'),(3351,'chemistry','197.210.226.60',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 10:34:40','2019-05-30 10:34:40'),(3352,'chemistry','100.43.85.162',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-30 19:55:06','2019-05-30 19:55:06'),(3353,'chemistry','207.46.13.20',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-05-31 10:40:41','2019-09-14 00:58:44'),(3354,'chemistry','141.0.13.204',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-05-31 10:57:54','2019-05-31 10:57:54'),(3355,'biology','105.112.46.118',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-01 12:10:54','2019-06-01 12:19:36'),(3356,'chemistry','157.55.39.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-03 17:51:53','2019-06-03 17:51:53'),(3357,'accounting','209.205.209.34',522,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 19:18:46','2020-05-29 19:55:11'),(3358,'economics','209.205.209.34',1892,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 20:32:30','2020-05-30 17:12:57'),(3359,'chemistry','157.55.39.53',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-04 21:15:44','2019-10-07 21:10:09'),(3360,'history','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:18:40','2019-06-05 02:18:40'),(3361,'irk','18.232.86.194',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 02:42:34','2019-06-05 02:42:34'),(3362,'accounting','54.234.117.39',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 06:15:30','2019-06-05 06:15:30'),(3363,'accounting','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:14:25','2019-06-05 08:14:25'),(3364,'geography','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 08:53:33','2019-06-05 08:53:33'),(3365,'accounting','3.84.113.32',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:33','2019-06-05 09:00:49'),(3366,'chemistry','3.84.113.32',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 09:00:39','2019-06-05 09:00:39'),(3367,'insurance','54.146.5.76',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 11:54:23','2019-06-05 11:54:23'),(3368,'chemistry','105.112.53.76',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 13:10:39','2019-06-05 13:12:41'),(3369,'chemistry','100.43.85.122',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-05 13:15:48','2020-03-08 10:35:22'),(3370,'chemistry','76.1.76.134',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 14:34:50','2019-06-05 14:35:18'),(3371,'chemistry','197.210.55.175',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:11:03','2019-06-05 16:12:43'),(3372,'chemistry','197.210.54.208',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 16:12:00','2019-06-05 16:12:00'),(3373,'mathematics','197.211.32.242',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 20:45:55','2019-06-05 20:45:56'),(3374,'currentaffairs','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:19:16','2019-06-05 23:19:16'),(3375,'insurance','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:31:01','2019-06-05 23:31:01'),(3376,'englishlit','18.212.116.155',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-05 23:36:02','2019-06-05 23:36:02'),(3377,'chemistry','97.116.149.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-07 14:42:32','2019-06-07 14:42:32'),(3378,'chemistry','207.46.13.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 02:59:43','2019-06-08 02:59:43'),(3379,'mathematics','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3380,'accounting','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3381,'biology','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3382,'chemistry','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3383,'geography','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3384,'civiledu','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3385,'currentaffairs','34.207.133.147',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 09:34:38','2019-06-08 09:34:38'),(3386,'chemistry','54.226.148.240',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:42:27','2019-06-08 11:42:27'),(3387,'biology','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3388,'government','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3389,'crk','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3390,'economics','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3391,'civiledu','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3392,'insurance','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3393,'currentaffairs','54.226.148.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 11:43:11','2019-06-08 11:43:11'),(3394,'chemistry','41.217.123.66',142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:01','2019-06-08 15:05:05'),(3395,'english','41.217.123.66',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 13:21:48','2019-06-08 13:21:48'),(3396,'chemistry','197.242.107.128',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:49:30','2019-06-08 15:55:27'),(3397,'english','197.242.107.128',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 15:56:31','2019-06-08 15:56:36'),(3398,'english','197.242.108.36',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 16:54:19','2019-06-08 16:57:53'),(3399,'physics','197.242.116.150',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:11:54','2019-06-08 20:49:56'),(3400,'english','197.242.116.150',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:31:40','2019-06-08 21:06:14'),(3401,'chemistry','197.242.116.150',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-08 20:36:15','2019-06-08 21:06:22'),(3402,'physics','162.213.3.221',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-09 05:09:58','2019-06-09 05:09:58'),(3403,'chemistry','105.112.23.71',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 09:15:53','2019-06-10 13:05:55'),(3404,'chemistry','197.149.92.146',56,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-10 12:11:23','2020-02-25 16:32:20'),(3405,'chemistry','41.75.207.170',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 12:27:15','2019-06-14 07:43:40'),(3406,'chemistry','207.46.13.103',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-10 22:01:38','2019-06-10 22:01:38'),(3407,'chemistry','40.77.167.80',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 08:14:51','2019-06-11 08:14:51'),(3408,'chemistry','129.56.38.156',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-11 21:53:28','2019-06-11 21:54:00'),(3409,'irk','34.201.166.22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:03:53','2019-06-12 03:03:53'),(3410,'biology','3.94.159.33',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:45:38','2019-06-12 04:28:00'),(3411,'english','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:51:24','2019-06-12 03:51:24'),(3412,'accounting','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 03:52:12','2019-06-12 03:52:12'),(3413,'crk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:20:40','2019-06-12 04:20:40'),(3414,'geography','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:38:56','2019-06-12 04:38:56'),(3415,'government','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:41:50','2019-06-12 04:41:50'),(3416,'irk','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:42:17','2019-06-12 04:42:17'),(3417,'physics','3.94.159.33',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 04:51:23','2019-06-12 04:51:23'),(3418,'english','154.118.8.161',198,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:36:41','2019-06-12 14:02:53'),(3419,'chemistry','154.118.8.161',91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:39:30','2019-06-12 12:18:14'),(3420,'physics','154.118.8.161',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 11:40:15','2019-06-12 12:04:32'),(3421,'chemistry','54.83.120.25',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 21:54:54','2019-06-12 22:18:00'),(3422,'chemistry','3.90.108.129',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-12 22:47:16','2019-06-13 00:16:33'),(3423,'chemistry','46.229.168.142',84,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-13 04:36:54','2020-07-10 20:02:07'),(3424,'chemistry','41.78.172.115',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 15:09:45','2019-06-14 12:18:50'),(3425,'chemistry','105.112.106.235',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:18','2019-06-13 18:32:18'),(3426,'english','105.112.106.235',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-13 18:32:48','2019-06-13 18:32:50'),(3427,'english','41.75.207.170',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:42:12','2019-06-14 07:42:12'),(3428,'physics','41.75.207.170',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 07:43:30','2019-06-14 07:44:40'),(3429,'physics','66.249.83.16',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-14 08:47:03','2019-09-05 01:30:44'),(3430,'chemistry','105.112.33.158',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-14 20:32:24','2019-06-14 20:32:24'),(3431,'english','197.242.114.252',66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 05:49:46','2019-06-15 06:28:24'),(3432,'chemistry','105.112.45.8',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 08:23:34','2019-06-15 08:24:00'),(3433,'english','41.217.116.6',99,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:13:31','2019-06-15 14:39:43'),(3434,'biology','18.206.190.99',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 12:27:51','2019-06-15 12:27:51'),(3435,'chemistry','3.81.65.202',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 13:16:11','2019-06-15 13:16:11'),(3436,'accounting','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:47','2019-06-15 14:20:47'),(3437,'english','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:20:58','2019-06-15 14:20:58'),(3438,'chemistry','197.210.52.46',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-15 14:26:37','2020-02-06 08:45:34'),(3439,'chemistry','197.210.53.184',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:27:22','2019-06-15 14:27:22'),(3440,'currentaffairs','3.91.134.35',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 14:46:51','2019-06-15 14:46:51'),(3441,'mathematics','34.239.126.105',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 15:58:44','2019-06-15 15:58:44'),(3442,'chemistry','197.210.53.178',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:40:54','2019-06-15 21:42:38'),(3443,'chemistry','197.210.52.214',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 21:42:12','2019-06-15 21:42:32'),(3444,'chemistry','46.229.168.147',51,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-06-15 21:50:41','2020-06-11 21:19:10'),(3445,'chemistry','197.210.53.214',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:20:17','2019-06-15 22:20:17'),(3446,'biology','54.237.246.185',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 22:32:27','2019-06-15 22:32:27'),(3447,'biology','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:11:58','2019-06-15 23:11:58'),(3448,'irk','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-15 23:27:36','2019-06-15 23:27:36'),(3449,'physics','34.229.10.85',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 00:17:33','2019-06-16 00:17:33'),(3450,'irk','34.228.23.109',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 01:44:49'),(3451,'accounting','34.228.23.109',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 01:44:49','2019-06-16 02:01:41'),(3452,'chemistry','45.55.21.112',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:27:31','2019-06-16 02:28:29'),(3453,'chemistry','105.14.195.18',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 02:48:24','2019-06-17 01:41:38'),(3454,'physics','66.249.83.18',50,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-16 12:16:03','2019-09-15 16:06:04'),(3455,'englishlit','54.164.133.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 17:50:46','2019-06-16 17:50:46'),(3456,'mathematics','54.196.189.83',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:52'),(3457,'mathematics','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3458,'english','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:51','2019-06-16 19:48:51'),(3459,'englishlit','54.196.189.83',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-16 19:48:55','2019-06-16 19:48:55'),(3460,'chemistry','206.189.171.227',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 02:00:46','2019-06-17 02:02:05'),(3461,'chemistry','41.190.16.26',6367,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 07:08:02','2019-07-23 11:35:50'),(3462,'mathematics','3.91.71.81',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:35:54','2019-06-17 09:22:24'),(3463,'englishlit','3.91.71.81',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 08:37:04','2019-06-17 09:22:24'),(3464,'english','3.91.71.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 09:10:38','2019-06-17 09:10:38'),(3465,'mathematics','107.21.78.89',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 10:58:09','2019-06-17 10:58:09'),(3466,'currentaffairs','34.238.242.31',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 13:56:42','2019-06-17 13:56:42'),(3467,'commerce','34.227.190.206',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-17 21:33:57','2019-06-17 21:33:57'),(3468,'chemistry','66.249.83.16',27,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-18 02:33:50','2019-11-06 14:40:47'),(3469,'currentaffairs','3.91.183.69',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 06:29:09','2019-06-18 06:29:09'),(3470,'chemistry','66.249.69.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 07:22:19','2019-06-18 07:22:19'),(3471,'economics','41.190.16.26',4519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:08:32','2019-07-23 11:57:15'),(3472,'commerce','41.190.16.26',5932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:28','2019-07-23 11:33:05'),(3473,'english','41.190.16.26',6405,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-18 10:41:29','2019-07-23 11:25:21'),(3474,'chemistry','100.43.90.165',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 06:10:09','2019-06-19 06:10:09'),(3475,'mathematics','41.190.16.26',1164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 10:57:58','2019-07-23 11:30:59'),(3476,'chemistry','129.56.101.165',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-19 17:58:38','2019-06-19 18:00:41'),(3477,'chemistry','82.145.223.70',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:25','2019-06-20 01:08:25'),(3478,'chemistry','41.203.78.211',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 01:08:32','2019-06-20 01:08:32'),(3479,'accounting','41.190.16.26',2791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 12:19:54','2019-07-23 11:33:51'),(3480,'biology','41.190.16.26',3586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-20 13:01:43','2019-07-23 11:34:35'),(3481,'biology','66.249.66.208',65,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-21 06:35:47','2019-10-29 04:39:15'),(3482,'mathematics','34.229.108.180',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-21 23:58:00','2019-06-21 23:58:00'),(3483,'chemistry','157.55.39.173',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-22 05:09:56','2019-06-22 05:09:56'),(3484,'chemistry','100.43.85.201',11,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 16:57:01','2019-12-08 06:55:23'),(3485,'chemistry','5.255.250.164',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-22 22:01:02','2019-09-08 03:42:02'),(3486,'chemistry','46.229.168.152',13,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-23 06:10:52','2020-05-29 19:42:11'),(3487,'chemistry','77.88.47.17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 13:02:24','2019-06-23 13:02:24'),(3488,'chemistry','207.46.13.25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-23 20:52:25','2019-06-23 20:52:25'),(3489,'physics','41.190.16.26',1049,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 08:37:20','2019-07-23 11:35:12'),(3490,'chemistry','93.158.166.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 11:27:50','2019-06-24 11:27:50'),(3491,'english','3.90.20.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 17:28:04','2019-06-24 17:28:04'),(3492,'irk','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:07:15','2019-06-24 19:07:15'),(3493,'commerce','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:10:29','2019-06-24 19:10:29'),(3494,'geography','54.242.236.133',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 19:24:40','2019-06-24 19:24:40'),(3495,'chemistry','207.46.13.78',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 21:37:18','2019-06-24 21:37:18'),(3496,'biology','52.90.179.74',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-24 22:59:08','2019-06-24 22:59:08'),(3497,'economics','3.89.60.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 00:47:23','2019-06-25 00:47:23'),(3498,'mathematics','54.89.87.53',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 04:00:29','2019-06-25 04:00:29'),(3499,'englishlit','41.190.16.26',1730,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:34','2019-07-23 11:44:00'),(3500,'government','41.190.16.26',1944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:47','2019-07-23 11:47:36'),(3501,'crk','41.190.16.26',2466,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:34:59','2019-07-23 11:48:21'),(3502,'geography','41.190.16.26',1488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:13','2019-07-23 11:57:01'),(3503,'irk','41.190.16.26',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:46','2019-07-23 11:57:27'),(3504,'civiledu','41.190.16.26',960,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:35:58','2019-07-23 11:57:42'),(3505,'currentaffairs','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:26','2019-07-23 11:58:09'),(3506,'history','41.190.16.26',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 06:36:40','2019-07-23 11:58:22'),(3507,'chemistry','154.120.89.121',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 08:40:28','2019-06-25 08:55:46'),(3508,'chemistry','100.43.91.111',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 09:22:05','2019-06-25 09:22:05'),(3509,'chemistry','46.229.168.148',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-25 14:14:29','2019-08-05 06:27:37'),(3510,'chemistry','37.9.87.211',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 07:15:23','2019-06-26 07:15:23'),(3511,'chemistry','154.113.84.24',291,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-26 08:20:23','2019-11-05 14:51:24'),(3512,'biology','154.113.84.24',240,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:12:21','2019-06-26 14:55:23'),(3513,'english','154.113.84.24',80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:13:32','2019-06-26 14:55:25'),(3514,'english','105.112.53.54',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 13:32:43','2019-06-26 14:23:50'),(3515,'biology','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:47','2019-06-26 14:23:47'),(3516,'physics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:51','2019-06-26 14:23:52'),(3517,'chemistry','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:53','2019-06-26 14:23:53'),(3518,'mathematics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:54','2019-06-26 14:23:54'),(3519,'economics','105.112.53.54',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:23:56','2019-06-26 14:23:56'),(3520,'physics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:26','2019-06-26 14:55:26'),(3521,'mathematics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:28','2019-06-26 14:55:29'),(3522,'economics','154.113.84.24',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 14:55:30','2019-06-26 14:55:30'),(3523,'chemistry','41.217.123.115',102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:22','2019-06-26 18:34:34'),(3524,'history','41.217.123.115',201,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 16:04:45','2019-06-26 18:04:21'),(3525,'chemistry','207.46.13.147',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-26 18:31:26','2019-06-26 18:31:26'),(3526,'mathematics','197.210.243.239',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:11:39','2019-06-27 19:11:39'),(3527,'english','197.210.243.239',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:12:15','2019-06-27 19:14:45'),(3528,'economics','197.210.243.239',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:14:54','2019-06-27 19:16:28'),(3529,'chemistry','185.26.180.221',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-27 19:56:48','2019-06-27 19:56:48'),(3530,'chemistry','77.88.5.10',4,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 01:59:49','2019-09-18 15:11:44'),(3531,'chemistry','105.112.18.14',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:46','2019-06-28 03:11:47'),(3532,'biology','105.112.18.14',6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 03:11:52','2019-06-28 03:13:33'),(3533,'chemistry','40.77.167.115',3,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 03:52:03','2020-03-19 20:45:55'),(3534,'economics','197.210.58.211',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 04:41:14','2019-06-28 04:44:00'),(3535,'chemistry','54.36.150.45',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 16:41:57','2019-06-28 16:41:57'),(3536,'chemistry','54.36.150.166',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 19:07:14','2019-06-28 19:07:14'),(3537,'history','154.120.95.55',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-28 22:43:11','2019-06-28 22:43:11'),(3538,'chemistry','66.249.64.176',131,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-06-28 23:46:36','2019-09-30 03:33:36'),(3539,'chemistry','107.3.154.42',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 02:57:34','2019-06-30 05:13:41'),(3540,'chemistry','40.77.167.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 05:06:27','2019-06-29 05:06:27'),(3541,'civiledu','52.207.228.138',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 07:20:25','2019-06-29 07:20:25'),(3542,'englishlit','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:09:53','2019-06-29 08:09:53'),(3543,'crk','54.81.118.199',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 08:11:50','2019-06-29 08:11:50'),(3544,'government','34.235.169.213',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:16:14','2019-06-29 16:16:14'),(3545,'insurance','54.146.66.52',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 16:57:38','2019-06-29 16:57:38'),(3546,'physics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:19:06','2019-06-29 18:19:06'),(3547,'mathematics','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:23:50','2019-06-29 18:23:50'),(3548,'insurance','54.146.20.28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 18:30:42','2019-06-29 18:30:42'),(3549,'crk','54.227.42.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 19:50:41','2019-06-29 19:50:41'),(3550,'government','3.82.117.91',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-29 20:28:23','2019-06-29 20:28:23'),(3551,'english','52.91.23.170',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 03:47:35','2019-06-30 03:47:35'),(3552,'mathematics','107.3.154.42',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 05:14:08','2019-06-30 05:14:08'),(3553,'chemistry','37.9.87.145',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-06-30 17:29:41','2019-06-30 17:29:41'),(3554,'chemistry','154.118.47.78',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 07:13:55','2019-07-01 07:14:33'),(3555,'chemistry','46.229.168.135',87,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 09:26:34','2020-01-31 22:31:52'),(3556,'english','209.205.209.34',8089,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-01 19:21:38','2020-05-30 17:19:39'),(3557,'chemistry','197.211.53.240',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-01 21:31:20','2019-07-01 21:31:40'),(3558,'chemistry','157.55.39.182',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 05:23:02','2019-07-02 05:23:02'),(3559,'chemistry','93.158.161.29',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 15:43:59','2019-07-02 15:43:59'),(3560,'history','209.205.209.34',650,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:22:26','2020-05-30 18:38:30'),(3561,'physics','209.205.209.34',1763,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-02 18:36:44','2020-05-30 15:29:21'),(3562,'chemistry','129.56.51.144',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 18:42:17','2019-07-02 18:42:17'),(3563,'chemistry','197.210.28.98',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:11:10','2019-07-02 20:11:22'),(3564,'geography','197.210.28.98',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 20:17:11','2019-07-02 20:17:11'),(3565,'biology','54.147.7.227',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-02 22:46:21','2019-07-02 22:46:21'),(3566,'biology','209.205.209.34',5018,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-03 05:37:07','2020-05-30 18:25:53'),(3567,'chemistry','64.233.172.210',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:09:13','2019-07-03 19:09:14'),(3568,'history','3.95.227.41',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-03 19:48:54','2019-07-03 19:48:54'),(3569,'chemistry','37.9.87.135',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 08:05:14','2019-07-04 08:05:14'),(3570,'geography','3.95.241.242',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 16:23:04','2019-07-04 16:23:04'),(3571,'chemistry','105.112.48.115',13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 19:52:32','2019-07-04 20:12:07'),(3572,'mathematics','105.112.48.115',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:07:51','2019-07-04 20:13:22'),(3573,'physics','105.112.48.115',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-04 20:12:30','2019-07-04 20:12:30'),(3574,'chemistry','91.242.162.50',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:05:11','2019-07-06 06:05:11'),(3575,'history','18.232.141.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 06:40:14','2019-07-06 06:40:14'),(3576,'chemistry','154.118.37.114',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:14:49','2019-07-06 18:14:49'),(3577,'chemistry','91.242.162.3',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-06 18:41:15','2019-07-06 19:28:38'),(3578,'chemistry','91.242.162.36',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 09:39:14','2019-07-07 09:39:14'),(3579,'chemistry','197.210.65.91',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 17:22:08','2019-07-07 17:22:57'),(3580,'chemistry','141.8.143.131',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 19:45:26','2019-07-07 19:45:26'),(3581,'chemistry','91.242.162.25',15,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-07 19:49:57','2019-09-10 11:10:42'),(3582,'mathematics','129.205.113.212',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:16'),(3583,'chemistry','129.205.113.212',33,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:27'),(3584,'accounting','129.205.113.212',44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:04'),(3585,'economics','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:43'),(3586,'government','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:32:17'),(3587,'commerce','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3588,'geography','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:26:25'),(3589,'crk','129.205.113.212',59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:20:59','2019-07-07 22:33:11'),(3590,'currentaffairs','129.205.113.212',32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:01','2019-07-07 22:32:40'),(3591,'englishlit','129.205.113.212',36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:23','2019-07-07 22:27:11'),(3592,'physics','129.205.113.212',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:21:26','2019-07-07 22:32:46'),(3593,'history','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:32:41'),(3594,'irk','129.205.113.212',49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3595,'civiledu','129.205.113.212',42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:27','2019-07-07 22:25:19'),(3596,'biology','129.205.113.212',39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:22:56','2019-07-07 22:33:24'),(3597,'insurance','129.205.113.212',37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:23:58','2019-07-07 22:32:21'),(3598,'english','129.205.113.212',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:25:57','2019-07-07 22:33:06'),(3599,'chemistry','198.144.145.220',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-07 21:29:31','2019-07-07 21:29:54'),(3600,'chemistry','41.203.78.249',18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 09:28:28','2019-07-08 09:31:26'),(3601,'physics','66.249.88.36',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 10:04:41','2019-07-08 10:04:42'),(3602,'mathematics','197.210.8.58',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 11:09:57','2019-07-08 11:09:57'),(3603,'chemistry','169.239.188.48',9,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-08 11:26:53','2019-08-27 13:36:26'),(3604,'english','3.85.90.156',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 15:56:12','2019-07-08 15:56:12'),(3605,'chemistry','105.112.66.91',27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:33:56','2019-07-08 21:35:52'),(3606,'english','105.112.66.91',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-08 21:53:51','2019-07-08 21:53:51'),(3607,'commerce','209.205.209.34',1403,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:05:44'),(3608,'chemistry','209.205.209.34',3228,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 04:50:23','2020-05-30 18:38:59'),(3609,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3610,'biology','3.88.149.51',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:11:16','2019-07-09 07:11:16'),(3611,'english','41.78.172.115',90,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 07:23:35','2019-11-27 13:09:02'),(3612,'englishlit','41.78.172.115',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:24:07','2019-07-09 07:24:33'),(3613,'government','41.78.172.115',105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:25:34','2019-07-16 07:09:26'),(3614,'chemistry','129.56.37.122',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 07:43:13','2019-07-09 07:43:14'),(3615,'mathematics','209.205.209.34',2378,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-09 08:37:56','2020-05-30 17:58:26'),(3616,'chemistry','192.151.145.178',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 12:04:16','2019-07-09 12:04:31'),(3617,'physics','105.112.74.109',60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:45:55','2019-07-09 21:20:51'),(3618,'government','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:53:35','2019-07-09 20:53:35'),(3619,'englishlit','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:55:52','2019-07-09 20:55:52'),(3620,'english','105.112.74.109',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 20:56:28','2019-07-09 21:24:57'),(3621,'mathematics','105.112.74.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 21:10:35','2019-07-09 21:10:35'),(3622,'chemistry','91.242.162.49',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-09 22:37:01','2019-07-09 23:20:10'),(3623,'physics','66.249.64.29',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 02:22:25','2019-07-10 02:22:25'),(3624,'mathematics','41.78.172.115',50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 08:51:07','2019-07-15 16:59:28'),(3625,'chemistry','129.56.36.246',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 10:15:55','2019-07-10 10:16:28'),(3626,'chemistry','91.242.162.20',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 18:09:11','2019-07-10 18:09:11'),(3627,'chemistry','154.160.30.70',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 19:00:58','2019-07-10 19:01:06'),(3628,'chemistry','129.205.112.207',3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-10 23:16:02','2019-07-10 23:16:41'),(3629,'english','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3630,'mathematics','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3631,'commerce','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3632,'chemistry','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3633,'irk','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3634,'civiledu','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3635,'history','34.201.53.43',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:34:03','2019-07-11 10:34:03'),(3636,'chemistry','41.203.78.28',187,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 10:47:47','2019-07-11 11:21:52'),(3637,'english','41.203.78.28',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-11 11:35:10','2019-07-11 11:35:10'),(3638,'chemistry','157.55.39.101',14,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 17:52:52','2020-01-09 17:51:46'),(3639,'chemistry','66.249.88.68',75,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3640,'chemistry','66.249.88.65',76,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-11 21:11:05','2020-03-09 13:38:20'),(3641,'chemistry','82.145.223.142',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:34','2019-07-12 01:28:34'),(3642,'chemistry','129.205.112.203',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 01:28:40','2019-07-12 01:28:40'),(3643,'chemistry','54.162.122.174',11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 08:18:20','2019-07-12 10:00:37'),(3644,'chemistry','40.77.167.152',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 11:56:19','2019-07-12 11:56:19'),(3645,'physics','66.102.6.44',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-12 18:47:05','2019-07-12 18:47:05'),(3646,'chemistry','105.112.40.81',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 14:34:42','2019-07-13 14:34:42'),(3647,'english','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:22:10','2019-07-13 15:22:10'),(3648,'englishlit','105.112.16.103',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 15:28:12','2019-07-13 15:28:12'),(3649,'currentaffairs','105.112.23.162',20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 19:42:12','2019-07-13 19:42:12'),(3650,'chemistry','197.210.47.253',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-13 23:32:27','2019-07-13 23:32:37'),(3651,'chemistry','197.210.226.221',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-14 08:42:39','2019-07-14 08:42:39'),(3652,'chemistry','41.58.163.166',43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 03:36:09','2019-07-15 03:38:30'),(3653,'chemistry','197.210.45.131',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:01:08','2019-07-15 11:02:28'),(3654,'chemistry','207.46.13.150',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-15 11:30:08','2019-07-15 11:30:08'),(3655,'chemistry','105.112.121.65',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 01:47:52','2019-07-16 01:54:58'),(3656,'geography','209.205.209.34',1148,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-16 04:33:29','2020-05-30 17:26:43'),(3657,'chemistry','157.55.39.75',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-16 22:12:07','2019-07-16 22:12:07'),(3658,'chemistry','41.223.213.118',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 00:56:58','2019-07-17 01:11:43'),(3659,'english','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:53:17','2019-07-17 05:53:18'),(3660,'mathematics','197.210.47.185',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 05:55:34','2019-07-17 05:55:34'),(3661,'government','209.205.209.34',2686,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:52:58','2020-05-30 18:38:59'),(3662,'crk','209.205.209.34',3361,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 07:54:29','2020-05-30 12:48:20'),(3663,'chemistry','197.242.111.36',83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 08:00:14','2019-07-17 08:08:20'),(3664,'chemistry','41.203.78.33',425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 09:54:12','2019-07-17 11:26:32'),(3665,'chemistry','69.171.251.8',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:55','2019-07-17 10:23:56'),(3666,'chemistry','69.171.251.23',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3667,'chemistry','69.171.251.2',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 10:23:56','2019-07-17 10:23:56'),(3668,'englishlit','209.205.209.34',1090,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 12:39:36','2020-05-30 15:26:43'),(3669,'irk','209.205.209.34',1003,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-17 17:02:18','2020-05-30 18:50:40'),(3670,'chemistry','41.223.215.235',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:10:02','2019-07-17 17:11:19'),(3671,'chemistry','41.223.213.55',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-17 17:16:10','2019-07-17 17:16:10'),(3672,'chemistry','35.153.135.60',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 00:14:01','2019-07-18 00:14:01'),(3673,'chemistry','154.118.46.101',392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 03:48:26','2019-07-18 05:29:47'),(3674,'chemistry','5.255.250.162',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-18 06:37:25','2019-09-08 14:04:58'),(3675,'chemistry','154.118.61.127',1190,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 08:56:03','2019-07-18 09:20:17'),(3676,'irk','34.238.242.141',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:04:13','2019-07-18 09:04:13'),(3677,'english','154.118.61.127',320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:09','2019-07-18 09:18:21'),(3678,'commerce','154.118.61.127',520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:18:43','2019-07-18 09:19:05'),(3679,'accounting','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:11','2019-07-18 09:29:34'),(3680,'biology','154.118.61.127',378,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:19:25','2019-07-18 09:19:44'),(3681,'englishlit','154.118.61.127',291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:33','2019-07-18 09:30:44'),(3682,'government','154.118.61.127',318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:20:49','2019-07-18 09:31:01'),(3683,'crk','154.118.61.127',556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:17','2019-07-18 09:31:18'),(3684,'economics','154.118.61.127',584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:21:55','2019-07-18 09:31:56'),(3685,'civiledu','154.118.61.127',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:27:48','2019-07-18 09:27:51'),(3686,'mathematics','154.118.61.127',74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:28:55','2019-07-18 09:29:06'),(3687,'physics','154.118.61.127',129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:29:57','2019-07-18 09:30:06'),(3688,'geography','154.118.61.127',186,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 09:31:27','2019-07-18 09:31:38'),(3689,'chemistry','178.255.215.90',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 18:42:41','2019-07-18 18:42:41'),(3690,'chemistry','157.55.39.215',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-18 22:58:37','2019-07-19 04:22:47'),(3691,'chemistry','154.118.59.83',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 05:44:42','2019-07-19 06:04:52'),(3692,'chemistry','41.203.78.52',52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-19 16:01:50','2019-07-19 16:28:25'),(3693,'chemistry','197.242.102.82',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:28:00','2019-07-20 04:29:38'),(3694,'english','197.242.102.82',47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:31:50','2019-07-20 11:59:47'),(3695,'mathematics','197.242.102.82',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 04:48:08','2019-07-20 04:48:08'),(3696,'chemistry','40.77.167.95',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 06:20:29','2019-07-20 06:20:29'),(3697,'biology','197.242.102.82',15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:04:42','2019-07-20 11:58:12'),(3698,'physics','152.9.196.108',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 11:47:30','2019-07-20 11:47:30'),(3699,'mathematics','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:14','2019-07-20 14:11:14'),(3700,'chemistry','105.112.45.227',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 14:11:27','2019-07-20 14:11:27'),(3701,'chemistry','207.46.13.178',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-20 21:45:31','2019-07-20 21:45:31'),(3702,'english','41.217.118.129',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 05:37:39','2019-07-21 05:37:39'),(3703,'chemistry','41.203.78.68',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-21 15:30:53','2019-07-21 15:32:05'),(3704,'chemistry','157.55.39.239',8,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-22 03:02:39','2020-03-31 17:07:02'),(3705,'biology','54.91.22.251',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 06:50:06','2019-07-22 06:50:06'),(3706,'chemistry','93.80.129.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 07:59:39','2019-07-22 07:59:39'),(3707,'mathematics','3.84.79.213',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-22 08:19:57','2019-07-22 08:19:58'),(3708,'chemistry','207.46.13.27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 06:32:43','2019-07-23 06:32:43'),(3709,'chemistry','154.118.66.199',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 07:11:56','2019-07-23 07:11:56'),(3710,'chemistry','54.36.150.57',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 12:38:55','2019-07-23 12:38:56'),(3711,'english','154.118.66.199',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:20:16','2019-07-23 19:20:16'),(3712,'chemistry','197.210.57.109',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:36:14','2019-07-23 19:45:25'),(3713,'chemistry','197.210.57.16',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 19:38:03','2019-07-23 19:46:41'),(3714,'chemistry','197.211.57.133',4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-23 20:29:13','2019-07-23 20:30:01'),(3715,'chemistry','54.36.150.139',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 00:15:09','2019-07-24 00:15:09'),(3716,'chemistry','207.46.13.205',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 01:42:30','2019-07-24 01:42:30'),(3717,'english','154.120.114.238',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 03:35:04','2019-07-24 03:35:04'),(3718,'englishlit','41.80.181.76',200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 06:15:35','2019-07-25 05:43:43'),(3719,'chemistry','54.172.234.236',10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-24 08:19:54','2019-07-24 08:49:47'),(3720,'chemistry','40.77.167.176',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 16:39:03','2019-07-25 16:39:03'),(3721,'chemistry','40.77.167.94',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-25 23:17:21','2019-07-25 23:17:21'),(3722,'insurance','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:14','2019-07-26 05:17:07'),(3723,'accounting','41.203.78.111',21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:54:44','2019-07-26 05:17:08'),(3724,'englishlit','41.203.78.111',24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:14','2019-07-26 05:17:17'),(3725,'government','41.203.78.111',12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 04:55:58','2019-07-26 05:17:11'),(3726,'currentaffairs','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:26','2019-07-26 05:17:13'),(3727,'economics','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:27','2019-07-26 05:17:14'),(3728,'geography','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:29','2019-07-26 05:17:16'),(3729,'english','41.203.78.111',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 05:08:36','2019-07-26 05:17:19'),(3730,'chemistry','66.249.64.178',25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-26 15:13:58','2019-07-26 15:13:58'),(3731,'chemistry','207.46.13.115',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-27 00:45:02','2020-01-23 09:22:32'),(3732,'chemistry','157.55.39.89',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 07:32:50','2019-07-27 07:32:50'),(3733,'chemistry','46.229.168.137',45,'','US',NULL,'Virginia',NULL,NULL,NULL,NULL,'2019-07-27 09:18:32','2020-07-05 12:08:49'),(3734,'mathematics','3.85.206.139',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 10:07:21','2019-07-27 10:09:00'),(3735,'english','154.118.28.124',72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-27 12:49:22','2019-07-28 06:55:02'),(3736,'chemistry','40.77.167.73',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 15:09:18','2019-07-28 15:09:18'),(3737,'chemistry','201.186.162.173',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-28 17:45:36','2019-07-28 17:45:37'),(3738,'chemistry','80.248.10.224',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:34:33','2019-07-29 00:37:02'),(3739,'physics','80.248.10.224',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 00:35:39','2019-07-29 00:35:39'),(3740,'biology','154.118.28.124',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 09:57:14','2019-07-29 09:57:14'),(3741,'english','41.203.78.138',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-29 16:14:46','2019-07-29 16:14:46'),(3742,'chemistry','54.36.149.43',41,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-29 16:22:54','2020-05-29 00:45:16'),(3743,'insurance','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:39','2019-07-30 02:31:46'),(3744,'accounting','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:43','2019-07-30 02:31:31'),(3745,'englishlit','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:46','2019-07-30 02:31:23'),(3746,'government','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:49','2019-07-30 02:31:29'),(3747,'currentaffairs','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:51','2019-07-30 02:31:19'),(3748,'economics','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:53','2019-07-30 02:31:42'),(3749,'geography','41.203.78.139',46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:28:56','2019-07-30 02:31:40'),(3750,'english','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:01','2019-07-30 02:31:25'),(3751,'mathematics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:04','2019-07-30 02:31:26'),(3752,'commerce','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:06','2019-07-30 02:31:28'),(3753,'biology','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:19','2019-07-30 02:31:32'),(3754,'physics','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:22','2019-07-30 02:31:34'),(3755,'chemistry','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:24','2019-07-30 02:31:35'),(3756,'crk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:28','2019-07-30 02:31:37'),(3757,'history','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:30','2019-07-30 02:31:38'),(3758,'irk','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:49','2019-07-30 02:31:43'),(3759,'civiledu','41.203.78.139',23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:29:52','2019-07-30 02:31:44'),(3760,'insurance','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:01','2019-07-30 03:25:41'),(3761,'accounting','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3762,'englishlit','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:33'),(3763,'government','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:02','2019-07-30 03:25:35'),(3764,'currentaffairs','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:30'),(3765,'economics','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:03','2019-07-30 03:25:39'),(3766,'geography','198.23.156.170',560,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:04','2019-07-30 03:25:39'),(3767,'english','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:05','2019-07-30 03:25:33'),(3768,'mathematics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3769,'commerce','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:06','2019-07-30 03:25:34'),(3770,'biology','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3771,'physics','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:08','2019-07-30 03:25:36'),(3772,'chemistry','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:37'),(3773,'crk','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:09','2019-07-30 03:25:38'),(3774,'history','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:10','2019-07-30 03:25:38'),(3775,'irk','198.23.156.170',210,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:11','2019-07-30 03:25:40'),(3776,'civiledu','198.23.156.170',280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 02:58:12','2019-07-30 03:25:40'),(3777,'chemistry','54.36.148.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 12:20:11','2019-07-30 12:20:11'),(3778,'history','34.229.51.137',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-30 14:05:01','2019-07-30 14:05:01'),(3779,'english','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3780,'commerce','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:46','2019-07-31 00:51:46'),(3781,'chemistry','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3782,'englishlit','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3783,'government','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3784,'crk','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3785,'insurance','54.205.154.161',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 00:51:47','2019-07-31 00:51:47'),(3786,'chemistry','93.158.161.52',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 13:53:11','2019-07-31 13:53:11'),(3787,'chemistry','95.70.149.106',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 17:40:54','2019-07-31 17:40:58'),(3788,'chemistry','197.210.52.110',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-07-31 23:43:35','2020-05-25 11:22:19'),(3789,'physics','197.210.52.34',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-07-31 23:44:25','2019-07-31 23:44:25'),(3790,'chemistry','129.205.113.242',45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 11:01:44','2019-08-01 11:38:22'),(3791,'chemistry','46.229.168.136',5,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-01 13:52:01','2020-03-24 23:22:11'),(3792,'chemistry','207.46.13.109',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 15:09:54','2019-08-01 15:09:54'),(3793,'chemistry','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:06:12','2019-08-01 17:06:12'),(3794,'english','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:07:32','2019-08-01 17:07:32'),(3795,'crk','105.112.57.149',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-01 17:17:03','2019-08-01 17:17:04'),(3796,'mathematics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3797,'accounting','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3798,'physics','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3799,'chemistry','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3800,'englishlit','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3801,'crk','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3802,'currentaffairs','54.144.51.39',2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 02:39:39','2019-08-02 02:39:39'),(3803,'chemistry','85.104.168.3',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 06:18:15','2019-08-02 06:18:15'),(3804,'chemistry','102.67.6.4',86,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-02 11:56:48','2020-02-06 09:19:26'),(3805,'chemistry','41.203.78.141',9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 17:46:29','2019-08-02 17:50:14'),(3806,'physics','141.0.13.86',225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-02 19:55:06','2019-08-02 20:20:39'),(3807,'chemistry','54.89.107.106',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 12:30:12','2019-08-03 12:30:12'),(3808,'chemistry','40.77.167.16',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 14:46:31','2019-08-03 14:46:31'),(3809,'chemistry','197.210.62.39',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 15:09:21','2019-08-03 15:11:54'),(3810,'chemistry','41.190.3.29',8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:05:32','2019-08-03 20:06:34'),(3811,'chemistry','157.55.39.167',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-03 20:11:00','2019-08-03 20:11:00'),(3812,'chemistry','105.112.112.6',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 00:43:46','2019-08-04 00:43:46'),(3813,'chemistry','41.190.31.100',35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 14:53:51','2019-08-04 14:54:18'),(3814,'chemistry','129.18.141.135',41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:26:00','2019-08-04 21:27:04'),(3815,'chemistry','52.114.77.26',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:29:51','2019-08-04 21:29:51'),(3816,'chemistry','24.59.53.207',48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:30:40','2019-08-04 21:31:48'),(3817,'chemistry','73.251.19.128',120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-04 21:32:47','2019-08-05 19:48:27'),(3818,'chemistry','54.36.150.27',2,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 04:34:37','2020-04-20 23:49:30'),(3819,'englishlit','105.112.16.232',5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:00:40','2019-08-05 08:00:40'),(3820,'chemistry','41.215.245.118',17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 08:34:13','2019-08-05 21:13:05'),(3821,'mathematics','41.215.245.118',90,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:03:37','2019-08-05 21:14:43'),(3822,'chemistry','54.36.150.94',7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 09:51:17','2019-08-05 09:51:17'),(3823,'chemistry','108.5.104.122',121,'','NG',NULL,'Lagos',NULL,NULL,NULL,NULL,'2019-08-05 11:40:26','2019-08-10 00:14:27'),(3824,'chemistry','172.58.231.249',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 11:41:16','2019-08-05 11:41:16'),(3825,'chemistry','105.112.74.192',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 16:00:47','2019-08-05 16:00:47'),(3826,'mathematics','3.208.18.146',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-05 18:34:25','2019-08-05 18:34:25'),(3827,'chemistry','51.75.58.97',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2019-08-06 06:04:58','2019-08-06 06:04:58'),(3828,'english','105.112.46.183',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 17:24:18','2019-08-06 20:33:07'),(3829,'chemistry','157.55.39.189',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 20:45:44','2019-08-29 20:50:04'),(3830,'chemistry','154.120.111.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:02:33','2019-08-06 21:02:33'),(3831,'chemistry','41.184.168.168',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:47:59','2019-08-07 07:40:56'),(3832,'chemistry','76.169.69.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 21:59:50','2019-08-06 22:00:41'),(3833,'chemistry','197.210.28.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-06 22:09:16','2019-08-06 22:09:16'),(3834,'chemistry','197.242.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:24:27','2019-08-07 05:24:27'),(3835,'chemistry','54.162.105.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 05:45:21','2019-08-07 05:45:21'),(3836,'chemistry','105.112.99.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:37:02','2019-08-07 07:37:02'),(3837,'chemistry','197.255.3.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 07:53:01','2019-08-07 07:53:01'),(3838,'chemistry','105.112.66.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:07:50','2019-08-07 08:07:50'),(3839,'chemistry','197.210.10.11',99,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:28:59','2019-08-07 08:32:24'),(3840,'mathematics','197.210.10.11',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:32:47','2019-08-07 08:32:50'),(3841,'chemistry','102.67.3.4',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 08:36:49','2019-08-07 08:58:38'),(3842,'chemistry','41.164.52.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:03:24','2019-08-07 10:03:24'),(3843,'chemistry','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:05:52','2019-08-07 10:05:52'),(3844,'mathematics','129.56.113.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:06:42','2019-08-07 10:06:42'),(3845,'chemistry','197.149.90.214',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 10:24:50','2019-08-07 10:26:08'),(3846,'chemistry','41.203.73.88',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:39:15','2019-08-07 11:39:55'),(3847,'physics','209.136.56.4',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 11:54:06','2019-08-12 23:34:33'),(3848,'chemistry','197.242.98.242',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:04:40','2019-08-07 12:08:12'),(3849,'chemistry','66.249.83.192',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 12:30:34','2020-01-09 11:42:25'),(3850,'chemistry','41.58.96.12',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 14:11:55','2019-08-07 14:12:42'),(3851,'chemistry','197.210.65.148',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-07 18:36:06','2019-08-07 18:36:06'),(3852,'economics','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:15','2019-08-08 06:27:15'),(3853,'commerce','197.210.226.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:27:24','2019-08-08 06:27:24'),(3854,'commerce','197.210.227.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 06:29:02','2019-08-08 06:29:02'),(3855,'chemistry','196.6.204.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 08:52:03','2019-08-08 08:52:36'),(3856,'chemistry','105.112.112.43',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 13:28:20','2019-08-08 13:28:58'),(3857,'chemistry','197.210.45.222',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-08 23:36:48','2019-08-08 23:37:30'),(3858,'chemistry','207.46.13.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 05:43:38','2019-08-09 05:43:38'),(3859,'chemistry','197.210.44.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 08:23:41','2019-08-09 08:23:41'),(3860,'chemistry','107.167.108.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 13:55:03','2019-08-09 13:55:03'),(3861,'chemistry','141.0.12.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:36:14','2019-08-09 14:40:11'),(3862,'english','141.0.12.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 14:40:26','2019-08-09 14:40:26'),(3863,'chemistry','154.113.86.202',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 15:44:28','2019-08-09 15:45:32'),(3864,'english','54.196.180.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 19:46:19','2019-08-09 19:46:19'),(3865,'chemistry','41.190.31.199',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:16:32','2019-08-09 22:00:42'),(3866,'mathematics','41.190.31.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:19:49','2019-08-09 21:19:49'),(3867,'crk','41.190.31.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-09 21:38:51','2019-08-09 21:38:54'),(3868,'chemistry','129.205.113.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 05:01:10','2019-08-10 05:01:50'),(3869,'chemistry','41.217.117.119',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 06:33:30','2019-08-10 06:33:30'),(3870,'currentaffairs','54.85.115.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 10:57:06','2019-08-10 10:57:06'),(3871,'history','18.206.174.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 13:08:50','2019-08-10 13:08:50'),(3872,'chemistry','100.43.81.123',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-10 14:14:16','2019-08-10 14:14:17'),(3873,'english','184.72.210.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 04:30:40','2019-08-11 04:30:40'),(3874,'chemistry','66.249.88.116',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:14:03','2019-08-11 14:14:03'),(3875,'chemistry','157.55.39.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 14:28:36','2019-08-11 14:28:36'),(3876,'insurance','3.88.255.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 17:15:20','2019-08-11 17:15:20'),(3877,'english','197.242.117.204',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-11 21:39:05','2019-08-11 21:40:36'),(3878,'chemistry','207.46.13.52',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 04:20:20','2019-08-12 04:20:20'),(3879,'economics','34.227.176.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-12 20:07:33','2019-08-12 20:07:33'),(3880,'chemistry','105.112.16.68',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 08:45:00','2019-08-13 08:45:03'),(3881,'chemistry','46.229.168.141',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-13 22:26:44','2019-09-04 10:48:38'),(3882,'chemistry','34.204.200.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:43:45','2019-08-14 03:43:46'),(3883,'chemistry','18.205.192.78',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 03:52:28','2019-08-14 04:56:47'),(3884,'biology','54.162.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 12:09:34','2019-08-14 12:09:34'),(3885,'chemistry','154.120.99.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-14 15:57:20','2019-08-14 16:01:54'),(3886,'chemistry','105.112.98.5',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 00:49:21','2019-08-15 01:14:50'),(3887,'chemistry','197.210.61.7',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 15:41:08','2019-08-15 15:41:09'),(3888,'mathematics','41.203.78.198',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:01:08','2019-08-16 05:59:18'),(3889,'chemistry','207.46.13.149',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 18:44:55','2019-08-15 18:44:58'),(3890,'chemistry','207.46.13.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-15 19:29:33','2019-08-15 19:29:33'),(3891,'physics','41.203.78.198',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 06:16:07','2019-08-16 06:17:30'),(3892,'commerce','154.118.43.180',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 11:29:52','2019-08-16 11:29:52'),(3893,'accounting','54.198.77.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-16 15:23:17','2019-08-16 15:23:17'),(3894,'mathematics','197.242.99.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:04:35','2019-08-17 03:06:16'),(3895,'english','197.242.99.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 03:06:56','2019-08-17 03:06:56'),(3896,'chemistry','207.46.13.1',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 14:03:29','2019-08-17 14:03:30'),(3897,'crk','105.112.42.138',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 16:15:38','2019-08-17 16:15:41'),(3898,'chemistry','129.205.112.252',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:23:17','2019-08-17 22:29:43'),(3899,'english','129.205.112.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-17 22:27:47','2019-08-17 22:27:47'),(3900,'chemistry','197.242.101.185',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 13:44:15','2019-08-18 13:45:05'),(3901,'chemistry','18.232.124.77',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 14:54:17','2019-08-18 15:09:41'),(3902,'english','82.145.222.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:13:30','2019-08-18 20:13:30'),(3903,'physics','82.145.222.187',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:29','2019-08-18 20:14:41'),(3904,'biology','82.145.222.187',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:14:57','2019-08-18 20:18:29'),(3905,'chemistry','82.145.222.187',32,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-18 20:17:25','2019-08-18 20:20:03'),(3906,'chemistry','157.55.39.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 08:32:02','2019-08-19 08:32:02'),(3907,'chemistry','154.118.15.197',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 11:05:07','2019-08-19 11:07:21'),(3908,'chemistry','154.118.25.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 13:15:15','2019-08-19 13:15:15'),(3909,'chemistry','35.242.171.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 15:59:15','2019-08-19 15:59:20'),(3910,'chemistry','40.77.167.133',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-19 20:09:27','2019-08-19 20:09:27'),(3911,'chemistry','154.118.17.37',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 07:44:43','2019-08-20 07:44:57'),(3912,'chemistry','154.113.84.131',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 08:32:47','2019-08-20 08:33:28'),(3913,'mathematics','197.210.29.72',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 10:20:40','2019-08-20 10:21:02'),(3914,'chemistry','154.113.84.148',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 15:22:38','2019-08-20 15:24:56'),(3915,'chemistry','169.159.87.27',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-20 21:11:10','2019-08-20 21:11:12'),(3916,'physics','66.249.88.71',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-21 12:32:59','2019-08-21 12:33:01'),(3917,'englishlit','3.81.145.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 08:13:22','2019-08-22 08:13:22'),(3918,'chemistry','105.112.39.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 13:11:13','2019-08-22 13:14:10'),(3919,'biology','129.205.112.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:29:46','2019-08-22 14:29:46'),(3920,'mathematics','129.205.112.93',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:30:42','2019-08-22 14:32:55'),(3921,'english','129.205.112.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 14:36:50','2019-08-22 14:36:53'),(3922,'chemistry','41.184.168.107',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:19:24','2019-09-06 17:21:30'),(3923,'chemistry','41.58.210.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:22:34','2019-08-22 19:22:34'),(3924,'accounting','34.227.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 19:52:08','2019-08-22 19:52:08'),(3925,'chemistry','157.55.39.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-22 21:25:26','2019-08-22 21:25:26'),(3926,'chemistry','129.205.112.83',485,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 10:26:23','2019-08-23 10:47:40'),(3927,'english','197.242.102.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 14:25:28','2019-08-23 14:25:28'),(3928,'chemistry','207.46.13.154',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:07:03','2019-11-18 02:00:21'),(3929,'english','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:19','2019-08-23 20:31:22'),(3930,'geography','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:31:51','2019-08-23 20:31:54'),(3931,'physics','129.205.112.109',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:33:18','2019-08-23 20:33:21'),(3932,'government','129.205.112.109',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:34:13','2019-08-23 20:35:30'),(3933,'chemistry','129.205.112.109',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-23 20:37:45','2019-08-23 20:40:50'),(3934,'chemistry','40.77.167.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 09:58:33','2019-08-24 09:58:33'),(3935,'biology','197.210.62.41',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-24 10:11:54','2019-08-24 10:11:56'),(3936,'english','3.92.165.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 02:48:10','2019-08-26 02:48:10'),(3937,'chemistry','129.205.112.98',58,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 14:07:19','2019-08-27 09:07:12'),(3938,'englishlit','41.80.80.75',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:38:33','2019-08-26 16:38:36'),(3939,'mathematics','129.205.112.98',368,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-26 16:54:38','2019-08-27 18:32:30'),(3940,'physics','197.210.64.64',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 05:43:46','2019-08-27 05:43:48'),(3941,'chemistry','66.102.8.114',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 12:39:36','2019-08-27 12:39:38'),(3942,'chemistry','169.239.188.14',185,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-27 13:39:29','2019-08-27 13:43:17'),(3943,'mathematics','107.22.87.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:02:33','2019-08-28 05:02:33'),(3944,'chemistry','129.205.112.99',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 05:04:37','2019-08-28 12:15:39'),(3945,'chemistry','3.87.39.253',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 06:57:54','2019-08-28 06:57:55'),(3946,'physics','41.203.78.236',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 10:23:20','2019-08-29 07:46:26'),(3947,'english','129.205.112.99',15637,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 11:37:09','2019-09-01 08:17:00'),(3948,'mathematics','129.205.112.99',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:19:14','2019-09-01 05:59:18'),(3949,'commerce','129.205.112.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-28 12:22:31','2019-08-28 12:22:34'),(3950,'chemistry','207.46.13.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-29 11:21:14','2019-08-29 11:21:14'),(3951,'chemistry','40.77.167.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-30 05:57:46','2019-08-30 05:57:46'),(3952,'chemistry','66.249.83.64',25,'',NULL,'',NULL,NULL,NULL,'','','2019-08-30 11:25:31','2019-08-30 11:25:32'),(3953,'chemistry','157.55.39.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-08-31 02:12:18','2019-08-31 02:12:18'),(3954,'chemistry','197.210.8.81',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 08:57:11','2019-08-31 08:59:21'),(3955,'mathematics','18.212.178.244',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 09:18:17','2019-08-31 09:18:17'),(3956,'chemistry','197.255.172.32',1,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 11:43:45','2019-08-31 11:43:45'),(3957,'accounting','129.205.112.99',5,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 16:55:58','2019-08-31 16:55:59'),(3958,'biology','129.205.112.99',45,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 16:56:17','2019-08-31 17:39:24'),(3959,'chemistry','105.112.46.156',8,'',NULL,'',NULL,NULL,NULL,'','','2019-08-31 17:20:01','2019-08-31 17:20:21'),(3960,'chemistry','41.190.3.191',48,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-08-31 19:13:59','2019-08-31 19:17:54'),(3961,'chemistry','35.192.166.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-01 13:20:44','2019-09-01 13:20:44'),(3962,'chemistry','154.66.37.174',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 06:43:23','2019-09-02 06:43:56'),(3963,'chemistry','197.253.59.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 07:37:32','2019-09-02 07:37:32'),(3964,'english','105.112.66.6',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 11:05:53','2019-09-02 11:05:53'),(3965,'chemistry','105.112.75.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-02 15:41:26','2019-09-02 15:41:56'),(3966,'chemistry','54.36.150.178',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 02:18:15','2019-09-03 02:18:18'),(3967,'physics','197.210.28.217',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 05:11:07','2019-09-03 05:11:09'),(3968,'mathematics','3.88.69.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 11:24:03','2019-09-03 11:24:03'),(3969,'chemistry','197.210.226.232',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:32','2019-09-03 13:34:57'),(3970,'chemistry','197.210.227.69',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:23:56','2019-09-03 13:27:38'),(3971,'chemistry','197.210.226.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:25:32','2019-09-03 13:25:32'),(3972,'chemistry','197.210.227.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:33:08','2019-09-03 13:33:08'),(3973,'chemistry','197.210.226.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 13:36:44','2019-09-03 13:36:47'),(3974,'chemistry','54.36.150.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-03 23:05:24','2019-09-03 23:05:24'),(3975,'mathematics','54.221.189.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-04 18:49:49','2019-09-04 18:49:49'),(3976,'history','3.90.177.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:03:49','2019-09-05 06:03:49'),(3977,'mathematics','3.90.177.176',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 06:04:44','2019-09-05 06:04:44'),(3978,'accounting','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3979,'geography','52.23.248.28',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3980,'english','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:23'),(3981,'economics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:23','2019-09-05 10:06:24'),(3982,'mathematics','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3983,'civiledu','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3984,'insurance','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3985,'chemistry','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3986,'currentaffairs','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3987,'englishlit','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3988,'history','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3989,'government','52.23.248.28',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 10:06:24','2019-09-05 10:06:24'),(3990,'biology','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3991,'chemistry','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:55','2019-09-05 11:32:55'),(3992,'englishlit','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3993,'geography','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3994,'economics','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3995,'irk','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3996,'civiledu','54.165.36.189',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 11:32:56','2019-09-05 11:32:56'),(3997,'chemistry','41.217.84.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:16:54','2019-09-05 16:16:54'),(3998,'chemistry','3.84.149.56',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:15','2019-09-05 16:17:16'),(3999,'chemistry','47.206.102.2',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-05 16:17:40','2019-09-05 16:18:25'),(4000,'chemistry','91.242.162.70',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:21','2019-09-06 12:27:22'),(4001,'mathematics','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 10:38:51','2019-09-07 12:05:12'),(4002,'chemistry','91.242.162.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:23:18','2019-09-06 15:33:50'),(4003,'mathematics','41.184.168.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-06 15:42:47','2019-09-06 15:42:47'),(4004,'mathematics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4005,'biology','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4006,'physics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:16','2019-09-07 02:57:16'),(4007,'chemistry','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4008,'englishlit','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4009,'economics','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4010,'insurance','3.85.19.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 02:57:17','2019-09-07 02:57:17'),(4011,'english','129.205.112.115',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 05:35:36','2019-09-07 13:17:14'),(4012,'chemistry','129.205.112.115',71,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 08:22:52','2019-09-07 08:36:32'),(4013,'chemistry','154.118.11.75',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 19:29:07','2019-09-07 19:36:47'),(4014,'chemistry','41.190.3.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-07 21:38:56','2019-09-07 21:38:57'),(4015,'biology','154.118.37.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 05:09:59','2019-09-08 05:09:59'),(4016,'chemistry','77.88.5.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-08 09:42:20','2019-09-08 09:42:20'),(4017,'chemistry','207.46.13.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 14:03:52','2019-09-09 14:03:52'),(4018,'mathematics','54.209.217.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-09 18:28:02','2019-09-09 18:28:02'),(4019,'biology','54.226.212.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 01:20:10','2019-09-10 01:20:10'),(4020,'english','197.242.108.80',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 06:32:36','2019-09-10 06:32:36'),(4021,'economics','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:35:23','2019-09-10 16:35:24'),(4022,'english','105.112.11.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 16:36:16','2019-09-10 16:36:16'),(4023,'commerce','3.89.252.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 18:39:39','2019-09-10 18:39:39'),(4024,'chemistry','91.242.162.73',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:08:33','2019-10-24 12:14:06'),(4025,'physics','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4026,'chemistry','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4027,'englishlit','54.91.126.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:32:57'),(4028,'government','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4029,'crk','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4030,'civiledu','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:08'),(4031,'history','54.91.126.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:31:08','2019-09-10 19:31:09'),(4032,'chemistry','207.46.13.197',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 19:55:18','2019-09-10 19:55:18'),(4033,'chemistry','197.210.29.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 20:02:55','2019-09-10 20:02:55'),(4034,'accounting','18.234.153.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-10 22:03:30','2019-09-10 22:03:30'),(4035,'chemistry','110.44.120.215',208,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 01:19:49','2019-09-12 06:46:02'),(4036,'mathematics','110.44.120.215',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:04','2019-09-16 16:31:02'),(4037,'accounting','110.44.120.215',124,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 02:01:48','2019-09-13 05:09:09'),(4038,'physics','110.44.120.215',1180,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:45:48','2019-09-20 12:59:42'),(4039,'biology','110.44.120.215',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 08:53:41','2019-09-17 03:03:55'),(4040,'biology','110.44.120.206',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:08','2019-09-11 15:42:20'),(4041,'mathematics','110.44.120.206',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:16','2019-09-11 10:51:39'),(4042,'chemistry','110.44.120.206',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 10:51:48','2019-09-11 15:41:47'),(4043,'chemistry','129.56.92.16',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 13:46:20','2019-09-11 13:46:52'),(4044,'physics','66.249.64.176',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:39:39','2019-09-21 02:46:11'),(4045,'biology','66.249.64.178',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 16:49:48','2019-09-30 03:47:58'),(4046,'accounting','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:50:53','2019-09-11 16:50:55'),(4047,'mathematics','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:18','2019-09-11 16:51:19'),(4048,'chemistry','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:23','2019-09-11 16:51:24'),(4049,'biology','108.177.7.94',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:26','2019-09-11 16:54:23'),(4050,'biology','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:43','2019-09-11 16:51:45'),(4051,'chemistry','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:51:46','2019-09-11 16:51:47'),(4052,'physics','108.177.7.91',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:16','2019-09-11 16:53:33'),(4053,'accounting','108.177.7.91',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:52:49','2019-09-11 16:52:51'),(4054,'physics','108.177.7.94',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:54:16','2019-09-11 16:54:18'),(4055,'accounting','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:57:33','2019-09-11 16:57:34'),(4056,'chemistry','66.249.64.180',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 16:58:44','2019-09-17 21:57:53'),(4057,'accounting','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:07:30','2019-09-11 17:07:32'),(4058,'biology','104.132.0.101',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:23','2019-09-11 17:08:58'),(4059,'chemistry','104.132.0.101',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 17:08:50','2019-09-11 17:08:51'),(4060,'chemistry','34.236.170.225',11,'','NG','','Lagos',NULL,NULL,'','','2019-09-11 17:38:25','2019-09-11 19:05:17'),(4061,'mathematics','35.243.2.1',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:39:59','2019-09-11 19:40:00'),(4062,'physics','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:09','2019-09-11 19:40:10'),(4063,'chemistry','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:40:40','2019-09-11 19:40:42'),(4064,'biology','35.243.2.3',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:53','2019-09-11 19:41:54'),(4065,'mathematics','35.243.2.2',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:41:59','2019-09-11 19:42:01'),(4066,'accounting','35.243.2.0',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 19:42:51','2019-09-11 19:42:53'),(4067,'mathematics','35.234.176.172',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:37:08','2019-09-11 22:37:10'),(4068,'physics','35.234.176.173',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:37:39','2019-09-11 22:37:41'),(4069,'biology','35.234.176.171',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-11 22:38:37','2019-09-11 22:38:39'),(4070,'chemistry','35.234.176.171',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-11 22:41:31','2019-09-11 22:41:33'),(4071,'currentaffairs','35.174.166.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-11 23:13:34','2019-09-11 23:13:34'),(4072,'mathematics','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:42','2019-09-12 00:09:58'),(4073,'biology','108.177.6.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:08:50','2019-09-12 00:09:22'),(4074,'accounting','108.177.6.58',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:09:14','2019-09-12 00:09:16'),(4075,'physics','108.177.6.58',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 00:11:56','2019-09-12 00:12:18'),(4076,'biology','103.10.28.200',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 01:50:53','2019-09-12 01:51:21'),(4077,'chemistry','216.10.240.90',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 03:25:50','2019-09-12 03:25:51'),(4078,'physics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:44:02','2019-09-12 06:45:27'),(4079,'chemistry','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:01','2019-09-12 06:46:03'),(4080,'biology','103.124.96.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:36','2019-09-12 06:46:38'),(4081,'mathematics','103.124.96.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 06:46:48','2019-09-12 06:47:16'),(4082,'chemistry','41.184.239.224',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:00:01','2019-09-12 08:01:26'),(4083,'physics','121.220.192.243',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 08:50:39','2019-09-12 08:50:40'),(4084,'biology','1.144.106.173',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:20:55','2019-09-12 09:20:57'),(4085,'accounting','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:35:59','2019-09-12 09:36:01'),(4086,'mathematics','202.51.76.34',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:37:29','2019-09-13 05:07:49'),(4087,'mathematics','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:14','2019-09-12 09:55:15'),(4088,'biology','175.37.169.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:34','2019-09-12 09:55:36'),(4089,'mathematics','49.195.140.246',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 09:55:57','2019-09-12 09:55:59'),(4090,'biology','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:14:20','2019-09-12 10:14:21'),(4091,'mathematics','60.227.241.90',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 10:17:03','2019-09-12 10:17:04'),(4092,'physics','175.37.109.166',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:04:59','2019-09-12 11:09:15'),(4093,'mathematics','14.200.41.186',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:06:08','2019-09-12 11:06:10'),(4094,'mathematics','211.30.203.218',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 11:09:11','2019-09-12 11:09:13'),(4095,'physics','120.17.45.139',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 11:11:29','2019-09-12 11:11:31'),(4096,'chemistry','120.17.45.139',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:12:10','2019-09-12 11:12:11'),(4097,'biology','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:14:53','2019-09-12 11:14:55'),(4098,'mathematics','120.154.84.130',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:01','2019-09-12 11:17:03'),(4099,'chemistry','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:17:06','2019-09-12 11:17:09'),(4100,'mathematics','124.180.202.128',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:23:33','2019-09-12 11:23:35'),(4101,'mathematics','175.37.109.166',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:26:22','2019-09-12 11:26:24'),(4102,'biology','175.37.109.166',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:46:31','2019-09-12 11:47:01'),(4103,'biology','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:48:41','2019-09-12 11:48:43'),(4104,'mathematics','203.45.97.141',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 11:49:54','2019-09-12 11:49:56'),(4105,'biology','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:43:46','2019-09-12 14:43:47'),(4106,'physics','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:49:17','2019-09-12 14:49:19'),(4107,'biology','27.34.20.106',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:02','2019-09-12 14:54:04'),(4108,'chemistry','27.34.68.145',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:14','2019-09-12 14:54:16'),(4109,'physics','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:54:26','2019-09-12 14:54:28'),(4110,'physics','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:58:24','2019-09-12 14:58:26'),(4111,'biology','27.34.26.15',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 14:59:49','2019-09-12 14:59:51'),(4112,'chemistry','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:00:06','2019-09-12 15:00:08'),(4113,'biology','49.126.246.157',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:01:16','2019-09-12 15:01:18'),(4114,'physics','110.44.127.178',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:02','2019-09-12 15:29:03'),(4115,'physics','27.34.17.16',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:29:40','2019-09-12 15:30:08'),(4116,'physics','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:50:55','2019-09-12 15:50:57'),(4117,'biology','110.34.0.191',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 15:51:13','2019-09-12 15:51:15'),(4118,'chemistry','91.242.162.72',3,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-12 18:05:30','2019-09-12 18:20:23'),(4119,'chemistry','49.195.156.140',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:06:39','2019-09-12 19:06:41'),(4120,'biology','202.51.88.114',60,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 19:10:30','2019-09-12 19:16:01'),(4121,'biology','49.181.243.120',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-12 20:37:28','2019-09-12 20:37:58'),(4122,'chemistry','91.242.162.45',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:30:11','2019-09-12 23:30:11'),(4123,'physics','220.240.160.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:51:25','2019-09-12 23:51:26'),(4124,'chemistry','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:57:36','2019-09-12 23:57:37'),(4125,'biology','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-12 23:59:54','2019-09-12 23:59:56'),(4126,'mathematics','101.176.220.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 00:00:25','2019-09-13 00:00:27'),(4127,'biology','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:33:57','2019-09-13 01:33:58'),(4128,'mathematics','27.96.216.120',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 01:37:24','2019-09-13 01:37:26'),(4129,'physics','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:15:58','2019-09-13 02:15:59'),(4130,'accounting','49.195.155.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 02:16:14','2019-09-13 02:16:16'),(4131,'biology','27.34.17.16',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:07:26','2019-09-13 03:07:28'),(4132,'chemistry','141.8.132.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 03:10:44','2019-09-13 03:10:44'),(4133,'physics','1.144.105.17',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 04:06:29','2019-09-13 04:06:31'),(4134,'biology','125.254.44.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:00:53','2019-09-13 05:00:54'),(4135,'physics','202.51.76.34',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:08:24','2019-09-13 05:08:25'),(4136,'mathematics','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4137,'biology','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:15'),(4138,'government','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:15','2019-09-13 05:22:16'),(4139,'english','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4140,'economics','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4141,'insurance','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4142,'accounting','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4143,'currentaffairs','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4144,'chemistry','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4145,'history','3.92.133.34',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:17'),(4146,'englishlit','3.92.133.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 05:22:16','2019-09-13 05:22:16'),(4147,'physics','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:06','2019-09-13 06:03:07'),(4148,'physics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:16','2019-09-13 06:03:17'),(4149,'mathematics','218.215.11.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:03:42','2019-09-13 06:03:43'),(4150,'chemistry','27.34.48.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:06:07','2019-09-13 06:09:13'),(4151,'biology','27.34.48.208',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:09:23','2019-09-13 06:09:24'),(4152,'commerce','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:50','2019-09-13 06:20:51'),(4153,'physics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4154,'government','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4155,'economics','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4156,'irk','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4157,'currentaffairs','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4158,'history','18.234.78.217',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 06:20:51','2019-09-13 06:20:51'),(4159,'biology','175.35.106.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:16:45','2019-09-13 07:16:46'),(4160,'physics','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:29:45','2019-09-13 07:29:47'),(4161,'chemistry','27.34.70.161',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:31:28','2019-09-13 07:31:29'),(4162,'mathematics','27.34.70.161',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 07:32:08','2019-09-13 07:32:44'),(4163,'physics','1.41.245.225',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:14:08','2019-09-13 08:14:09'),(4164,'biology','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:40:42','2019-09-13 08:40:44'),(4165,'mathematics','1.129.111.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 08:45:42','2019-09-13 08:45:43'),(4166,'chemistry','110.150.214.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 09:32:23','2019-09-13 09:32:24'),(4167,'accounting','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:12','2019-09-13 11:01:14'),(4168,'mathematics','122.106.127.86',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 11:01:24','2019-09-13 11:01:25'),(4169,'physics','66.249.64.166',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:33:40','2019-09-13 14:33:41'),(4170,'accounting','66.249.64.180',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 14:39:00','2019-09-25 11:14:55'),(4171,'chemistry','220.244.110.40',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:15:30','2019-09-13 23:15:32'),(4172,'mathematics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:18','2019-09-13 23:46:20'),(4173,'physics','121.217.110.114',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-13 23:46:45','2019-09-13 23:46:47'),(4174,'mathematics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:03:10','2019-09-14 01:03:12'),(4175,'physics','196.52.60.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 01:04:12','2019-09-14 01:04:14'),(4176,'mathematics','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:11:39','2019-09-14 03:11:40'),(4177,'biology','49.180.133.59',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 03:12:05','2019-09-14 03:12:06'),(4178,'mathematics','3.92.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 06:23:58','2019-09-14 06:23:58'),(4179,'physics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:10:22','2019-09-14 08:10:23'),(4180,'mathematics','27.34.70.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:11:18','2019-09-14 08:11:20'),(4181,'mathematics','211.27.254.219',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:53:20','2019-09-14 08:53:22'),(4182,'chemistry','41.86.6.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 08:55:03','2019-09-14 08:55:59'),(4183,'mathematics','66.249.66.212',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:03:19','2019-10-01 13:36:10'),(4184,'accounting','66.249.66.212',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:11:53','2019-10-10 06:34:01'),(4185,'biology','66.249.66.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:13:24','2019-10-09 01:01:54'),(4186,'chemistry','66.249.66.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:14:57','2019-10-29 04:35:40'),(4187,'physics','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 09:15:49','2019-10-10 06:52:10'),(4188,'chemistry','207.46.13.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:21:21','2019-09-14 13:21:21'),(4189,'chemistry','129.56.90.193',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 13:23:39','2019-09-14 13:25:42'),(4190,'chemistry','185.20.6.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:12:04','2019-09-14 14:12:04'),(4191,'chemistry','54.91.254.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:13:12','2019-09-14 14:13:12'),(4192,'chemistry','3.95.179.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 14:15:08','2019-09-14 14:15:08'),(4193,'mathematics','54.167.105.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-14 23:41:30','2019-09-14 23:41:30'),(4194,'physics','110.44.120.199',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 02:50:34','2019-09-15 02:50:36'),(4195,'chemistry','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:14:22','2019-09-15 04:15:04'),(4196,'biology','113.199.203.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:15:02','2019-09-15 04:15:37'),(4197,'accounting','113.199.203.102',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 04:16:18','2019-09-15 04:16:20'),(4198,'chemistry','35.172.100.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 07:24:14','2019-09-15 07:24:28'),(4199,'mathematics','54.221.170.133',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 13:27:05','2019-09-15 13:59:54'),(4200,'crk','54.221.170.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 14:16:11','2019-09-15 14:16:11'),(4201,'chemistry','54.36.148.104',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 18:59:31','2019-09-15 18:59:31'),(4202,'mathematics','34.207.243.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-15 19:16:51','2019-09-15 19:16:51'),(4203,'mathematics','47.30.248.76',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 04:20:11','2019-09-16 04:20:13'),(4204,'mathematics','49.195.29.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 06:12:19','2019-09-16 06:12:21'),(4205,'chemistry','157.51.26.93',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:06:39','2019-09-16 11:06:40'),(4206,'mathematics','41.86.152.178',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 11:19:00','2019-09-16 11:19:01'),(4207,'english','105.112.45.87',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 12:37:29','2019-09-16 12:37:56'),(4208,'mathematics','154.120.94.26',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-16 13:28:56','2019-09-16 13:28:57'),(4209,'physics','157.51.31.138',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-16 14:16:36','2019-09-16 14:17:04'),(4210,'chemistry','157.51.31.138',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 14:17:05','2019-09-16 14:17:32'),(4211,'physics','49.126.207.89',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:02:39','2019-09-16 16:12:06'),(4212,'chemistry','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:12:11','2019-09-16 16:12:12'),(4213,'biology','49.126.207.89',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:16:05','2019-09-16 16:16:06'),(4214,'chemistry','197.210.44.251',16,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:25:35','2019-09-16 16:28:49'),(4215,'chemistry','197.210.62.38',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:26','2019-09-16 16:29:26'),(4216,'chemistry','197.210.45.121',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:29:50','2019-09-16 16:29:50'),(4217,'mathematics','3.95.23.58',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-16 16:40:13','2019-09-16 16:40:13'),(4218,'chemistry','27.34.70.118',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:54:28','2019-09-17 01:54:29'),(4219,'physics','27.34.70.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 01:55:46','2019-09-17 01:57:21'),(4220,'physics','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:44:39','2019-09-17 06:44:41'),(4221,'biology','110.44.127.213',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 06:48:22','2019-09-17 06:48:23'),(4222,'physics','113.199.202.174',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:16:31','2019-09-17 07:16:33'),(4223,'biology','43.245.95.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 07:55:04','2019-09-17 07:57:24'),(4224,'chemistry','197.210.141.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-17 08:18:07','2019-09-17 08:18:07'),(4225,'physics','27.34.48.127',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-17 13:39:15','2019-09-17 13:39:17'),(4226,'chemistry','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:39:29','2019-09-17 13:39:30'),(4227,'biology','27.34.48.127',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 13:42:20','2019-09-17 13:42:22'),(4228,'chemistry','41.190.2.129',92,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:53:44','2019-09-18 12:00:00'),(4229,'mathematics','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 15:56:08','2019-09-18 11:06:40'),(4230,'mathematics','34.230.32.127',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 19:04:41','2019-09-17 19:04:41'),(4231,'crk','105.112.52.75',40,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 20:33:57','2019-09-17 20:34:00'),(4232,'mathematics','66.249.64.176',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-17 21:53:45','2019-09-17 21:53:47'),(4233,'biology','66.249.64.180',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-17 22:13:17','2019-09-25 11:22:46'),(4234,'chemistry','91.242.162.56',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 00:16:39','2019-09-18 00:16:39'),(4235,'physics','49.181.255.251',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:11:15','2019-09-18 02:11:47'),(4236,'chemistry','49.181.255.251',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:12:23','2019-09-18 02:12:24'),(4237,'physics','110.44.127.203',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 02:21:31','2019-09-18 02:21:32'),(4238,'chemistry','40.77.167.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 03:04:48','2019-09-18 03:04:48'),(4239,'chemistry','49.180.134.8',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 04:19:37','2019-09-18 04:19:38'),(4240,'government','41.190.2.129',658,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-18 04:37:51','2019-09-18 11:14:19'),(4241,'english','35.233.231.115',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 05:38:18','2019-09-18 05:38:18'),(4242,'english','41.190.2.129',77,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:17:49','2019-09-18 09:59:30'),(4243,'biology','41.190.2.129',42,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 09:26:52','2019-09-18 11:11:13'),(4244,'chemistry','197.210.226.214',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 10:04:09','2019-09-18 10:04:09'),(4245,'english','188.29.164.19',28,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:23:26','2019-09-18 11:25:54'),(4246,'commerce','41.190.2.129',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:28:08','2019-09-18 11:56:09'),(4247,'chemistry','66.249.83.20',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-18 11:46:32','2019-11-06 14:40:23'),(4248,'english','105.112.41.25',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 11:49:33','2019-09-18 11:49:33'),(4249,'chemistry','105.112.38.22',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:07:36','2019-09-18 12:07:36'),(4250,'english','105.112.38.22',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:09:51','2019-09-18 12:11:42'),(4251,'chemistry','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:22','2019-09-18 12:49:23'),(4252,'chemistry','157.55.39.178',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:23','2019-09-18 12:49:23'),(4253,'biology','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:49:38','2019-09-18 12:49:38'),(4254,'english','105.112.26.134',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 12:50:03','2019-09-18 12:50:03'),(4255,'chemistry','197.210.65.154',21,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:11:00','2019-09-18 14:14:29'),(4256,'government','197.210.65.154',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:15:12','2019-09-18 14:17:53'),(4257,'government','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:22:02','2019-09-18 14:22:03'),(4258,'chemistry','41.190.2.121',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:24:39','2019-09-18 14:24:39'),(4259,'commerce','197.149.125.34',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:25:26','2019-09-18 14:25:26'),(4260,'english','197.149.125.34',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 14:29:51','2019-09-18 15:03:08'),(4261,'economics','105.112.29.230',10,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:08:25','2019-09-18 17:49:38'),(4262,'commerce','41.190.30.252',119,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 15:20:43','2019-09-19 15:57:17'),(4263,'commerce','105.112.29.213',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 15:29:15','2019-09-18 15:29:15'),(4264,'government','41.190.30.252',245,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:07:56','2019-09-20 12:55:06'),(4265,'english','105.112.41.242',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:10:59','2019-09-18 16:12:46'),(4266,'english','41.190.30.252',301,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 16:30:17','2019-09-20 12:50:25'),(4267,'mathematics','41.190.2.209',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-18 16:45:19','2019-09-18 16:45:20'),(4268,'chemistry','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:05','2019-09-19 15:57:38'),(4269,'mathematics','41.190.30.252',98,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:01:20','2019-09-19 15:57:59'),(4270,'biology','41.190.30.252',602,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 17:26:22','2019-09-20 12:54:08'),(4271,'chemistry','150.70.167.82',40,'','NG','','Lagos',NULL,NULL,'','','2019-09-18 18:31:12','2019-09-26 00:57:44'),(4272,'chemistry','40.77.167.63',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 01:09:50','2020-01-08 07:44:01'),(4273,'mathematics','41.217.116.241',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 03:47:25','2019-09-19 03:54:42'),(4274,'government','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:20:51','2019-09-19 07:20:52'),(4275,'biology','41.203.78.113',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 07:22:21','2019-09-19 07:22:22'),(4276,'mathematics','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4277,'chemistry','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4278,'englishlit','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4279,'crk','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4280,'geography','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4281,'currentaffairs','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:54'),(4282,'history','3.92.83.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:42:54','2019-09-19 08:42:55'),(4283,'english','45.222.100.155',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 08:45:54','2019-09-19 08:47:36'),(4284,'biology','27.34.25.22',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 10:47:54','2019-09-19 10:47:56'),(4285,'physics','27.34.70.49',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 12:46:48','2019-09-19 13:37:35'),(4286,'chemistry','41.138.163.117',264,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-19 16:24:08','2019-09-20 08:36:52'),(4287,'physics','27.34.70.50',260,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-19 17:28:13','2019-09-19 18:55:53'),(4288,'chemistry','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 17:50:14','2019-09-19 17:50:15'),(4289,'biology','27.34.70.50',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 18:55:47','2019-09-19 18:55:48'),(4290,'chemistry','54.36.148.175',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-19 20:34:08','2019-09-19 20:34:08'),(4291,'english','41.217.116.241',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 05:04:08','2019-09-20 05:04:56'),(4292,'biology','110.44.125.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:16:05','2019-09-20 13:16:59'),(4293,'physics','103.95.16.239',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:20','2019-09-20 13:33:21'),(4294,'physics','103.94.222.78',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:33:40','2019-09-20 13:33:42'),(4295,'physics','103.58.145.248',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:47:59','2019-09-20 14:02:35'),(4296,'chemistry','103.58.145.248',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:49:11','2019-09-20 13:49:13'),(4297,'physics','27.34.26.105',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:02','2019-09-20 13:51:04'),(4298,'biology','27.34.26.105',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:12','2019-09-20 13:53:00'),(4299,'biology','103.58.145.248',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 13:51:49','2019-09-20 13:58:53'),(4300,'physics','27.34.70.223',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 14:15:53','2019-09-20 14:15:54'),(4301,'biology','27.34.104.212',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:24','2019-09-20 15:10:26'),(4302,'biology','27.34.69.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:10:35','2019-09-20 15:10:36'),(4303,'physics','43.228.192.35',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:33:07','2019-09-27 00:26:30'),(4304,'mathematics','43.228.192.35',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 15:34:07','2019-09-20 15:36:30'),(4305,'accounting','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:08','2019-09-20 18:55:09'),(4306,'englishlit','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4307,'government','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4308,'geography','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4309,'irk','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4310,'civiledu','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4311,'history','52.207.209.232',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 18:55:09','2019-09-20 18:55:09'),(4312,'biology','103.95.16.185',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-20 19:02:51','2019-09-20 19:02:52'),(4313,'chemistry','93.158.166.147',2,'','NG','','Lagos',NULL,NULL,'','','2019-09-20 20:08:32','2019-10-24 17:47:31'),(4314,'physics','27.34.25.249',20,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-20 22:44:30','2019-09-20 22:44:31'),(4315,'biology','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:44:50','2019-09-20 22:44:51'),(4316,'chemistry','27.34.25.249',20,'',NULL,'',NULL,NULL,NULL,'','','2019-09-20 22:46:10','2019-09-20 22:46:12'),(4317,'chemistry','35.173.47.43',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 00:22:18','2019-09-21 00:22:22'),(4318,'mathematics','66.249.64.178',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 02:47:16','2019-09-21 02:47:18'),(4319,'chemistry','3.81.148.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:13:38','2019-09-21 05:13:46'),(4320,'chemistry','154.120.114.154',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 05:17:33','2019-09-21 06:18:06'),(4321,'chemistry','54.89.142.238',106,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 08:00:06','2019-09-21 08:09:05'),(4322,'chemistry','91.242.162.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 11:12:15','2019-09-21 11:12:15'),(4323,'commerce','41.190.31.67',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:09:29','2019-09-21 19:06:59'),(4324,'government','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:11:30','2019-09-21 15:11:31'),(4325,'mathematics','41.190.31.67',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 15:12:57','2019-09-21 15:12:58'),(4326,'chemistry','105.112.53.39',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 18:24:08','2019-09-21 18:28:24'),(4327,'english','197.210.44.0',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 20:50:21','2019-09-21 20:50:21'),(4328,'mathematics','18.234.75.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 21:50:19','2019-09-21 21:50:19'),(4329,'mathematics','34.207.140.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-21 22:36:26','2019-09-21 22:36:26'),(4330,'biology','27.34.68.44',36,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:18'),(4331,'biology','27.34.68.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 03:50:16','2019-09-22 03:50:16'),(4332,'chemistry','34.228.212.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 07:07:50','2019-09-22 07:07:50'),(4333,'chemistry','91.242.162.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 09:55:37','2019-09-22 09:55:37'),(4334,'commerce','41.190.3.118',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 10:30:11','2019-09-22 10:32:00'),(4335,'mathematics','35.175.238.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-22 22:29:35','2019-09-22 22:29:35'),(4336,'biology','103.232.154.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 01:46:19','2019-09-23 01:46:20'),(4337,'biology','27.34.104.155',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 02:47:02','2019-09-23 02:47:03'),(4338,'mathematics','105.112.27.56',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-23 15:37:49','2019-09-23 15:37:50'),(4339,'chemistry','154.113.86.210',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:52:59','2019-09-24 08:58:26'),(4340,'mathematics','154.113.86.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 08:58:49','2019-09-24 08:58:49'),(4341,'mathematics','154.113.86.202',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 09:42:16','2019-09-24 09:42:41'),(4342,'currentaffairs','54.173.205.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 12:53:57','2019-09-24 12:53:57'),(4343,'english','105.112.52.225',21,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:28:15','2019-09-24 16:49:26'),(4344,'biology','105.112.52.225',663,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:30:16','2019-09-24 14:54:54'),(4345,'chemistry','105.112.52.225',22,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 13:32:07','2019-09-24 15:00:30'),(4346,'currentaffairs','105.112.52.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-24 13:34:54','2019-09-24 13:34:54'),(4347,'commerce','105.112.52.225',598,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:30:24','2019-09-24 14:57:46'),(4348,'accounting','105.112.52.225',341,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-09-24 14:33:47','2019-09-24 14:59:43'),(4349,'physics','105.112.52.225',14,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:55:31','2019-09-24 15:02:06'),(4350,'mathematics','105.112.52.225',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 14:58:41','2019-09-24 14:58:42'),(4351,'english','41.190.31.234',7,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 15:47:34','2019-09-24 15:47:34'),(4352,'physics','54.198.206.199',1,'',NULL,'',NULL,NULL,NULL,'','','2019-09-24 21:19:56','2019-09-24 21:19:56'),(4353,'government','52.5.110.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 02:40:21','2019-09-25 02:40:21'),(4354,'biology','105.112.41.33',286,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 03:16:07','2019-09-25 12:05:04'),(4355,'english','154.118.20.99',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 04:50:44','2019-09-25 04:58:16'),(4356,'physics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 05:48:27','2019-09-25 05:48:29'),(4357,'mathematics','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 07:16:11','2019-09-25 07:16:13'),(4358,'accounting','105.112.41.33',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:01','2019-09-25 10:01:11'),(4359,'mathematics','105.112.41.33',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:22:41','2019-09-25 09:14:48'),(4360,'physics','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:25:33','2019-09-25 11:45:37'),(4361,'chemistry','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 08:53:46','2019-09-25 08:53:47'),(4362,'government','105.112.41.33',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:02:04','2019-09-25 09:02:04'),(4363,'commerce','105.112.41.33',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:12:58','2019-09-25 09:46:15'),(4364,'english','105.112.41.33',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 09:24:47','2019-09-25 09:45:39'),(4365,'history','54.92.191.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 16:07:48','2019-09-25 16:07:48'),(4366,'biology','154.118.42.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-25 21:32:52','2019-09-25 21:32:53'),(4367,'chemistry','91.242.162.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 03:32:45','2019-09-26 03:54:55'),(4368,'english','154.118.17.103',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 07:55:26','2019-09-26 07:58:00'),(4369,'chemistry','37.9.87.217',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 08:32:29','2019-09-28 02:46:55'),(4370,'civiledu','105.112.44.193',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:35:16','2019-09-26 09:59:45'),(4371,'insurance','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:22','2019-09-26 09:59:23'),(4372,'currentaffairs','105.112.44.193',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 09:59:32','2019-09-26 09:59:32'),(4373,'chemistry','105.112.44.193',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:04:54','2019-09-26 11:38:07'),(4374,'biology','105.112.44.193',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:20','2019-09-26 19:16:16'),(4375,'englishlit','105.112.44.193',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:06:28','2019-09-26 11:34:05'),(4376,'physics','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:10:00','2019-09-26 11:29:36'),(4377,'accounting','105.112.44.193',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:14:27','2019-09-26 10:17:13'),(4378,'irk','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 10:33:54','2019-09-26 10:33:54'),(4379,'government','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:01:08','2019-09-26 11:01:09'),(4380,'commerce','105.112.44.193',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 11:28:09','2019-09-26 11:28:10'),(4381,'chemistry','157.55.39.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 18:38:53','2019-11-24 22:31:16'),(4382,'chemistry','154.118.37.164',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:42:25','2019-09-26 21:43:27'),(4383,'mathematics','154.118.37.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-26 21:43:52','2019-09-26 21:43:52'),(4384,'government','52.73.45.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 00:37:59','2019-09-27 00:37:59'),(4385,'irk','54.175.103.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 05:05:42','2019-09-27 05:05:42'),(4386,'chemistry','36.99.136.130',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4387,'chemistry','111.7.100.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:40','2019-09-27 09:15:40'),(4388,'chemistry','111.7.100.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 09:15:44','2019-10-09 11:27:44'),(4389,'physics','49.244.242.12',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:00:55','2019-09-27 12:00:56'),(4390,'chemistry','157.55.39.74',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 12:45:44','2019-09-27 12:45:44'),(4391,'english','197.210.54.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-27 17:55:01','2019-09-27 17:55:01'),(4392,'economics','54.234.192.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 00:10:36','2019-09-28 00:10:36'),(4393,'englishlit','54.91.218.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 02:43:56','2019-09-28 02:43:56'),(4394,'english','154.120.93.57',595,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:40:25','2019-10-01 11:59:48'),(4395,'biology','154.120.93.57',225,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 09:57:15','2019-09-28 16:09:59'),(4396,'chemistry','105.112.23.210',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:27:45','2019-09-28 11:29:58'),(4397,'physics','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:20','2019-09-28 11:55:21'),(4398,'accounting','103.95.16.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 11:55:43','2019-09-28 11:55:45'),(4399,'englishlit','54.172.49.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 15:59:20','2019-09-28 15:59:20'),(4400,'chemistry','154.120.93.57',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 16:06:01','2019-09-28 16:08:44'),(4401,'biology','171.76.250.218',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 18:56:35','2019-09-28 18:58:46'),(4402,'mathematics','105.112.11.104',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 20:48:14','2019-09-28 20:48:14'),(4403,'mathematics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:28'),(4404,'biology','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:28','2019-09-28 21:33:29'),(4405,'physics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4406,'chemistry','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4407,'crk','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4408,'economics','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4409,'civiledu','3.84.30.255',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 21:33:29','2019-09-28 21:33:29'),(4410,'civiledu','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-28 23:37:51','2019-09-28 23:37:51'),(4411,'chemistry','54.175.70.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 00:03:54','2019-09-29 00:03:54'),(4412,'physics','54.224.133.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:24:13','2019-09-29 01:52:53'),(4413,'english','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4414,'mathematics','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4415,'accounting','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4416,'crk','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:53'),(4417,'civiledu','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:53','2019-09-29 01:52:54'),(4418,'insurance','54.224.133.193',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 01:52:54','2019-09-29 01:52:54'),(4419,'physics','3.95.189.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 02:51:59','2019-09-29 02:51:59'),(4420,'chemistry','110.44.125.148',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 06:16:54','2019-09-29 06:16:56'),(4421,'physics','93.71.107.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:18','2019-09-29 07:40:10'),(4422,'chemistry','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:39:31','2019-09-29 07:39:32'),(4423,'biology','93.71.107.88',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 07:40:23','2019-09-29 07:40:25'),(4424,'mathematics','154.120.93.57',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:15:50','2019-09-29 18:43:31'),(4425,'commerce','154.120.93.57',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 09:31:37','2019-09-29 18:37:10'),(4426,'chemistry','5.255.250.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 10:22:17','2019-10-15 18:07:00'),(4427,'chemistry','107.167.107.151',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:05','2019-09-29 13:44:39'),(4428,'chemistry','105.112.113.181',90,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:28:22','2019-09-29 13:42:00'),(4429,'mathematics','105.112.113.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:35:38','2019-09-29 13:35:38'),(4430,'chemistry','36.252.98.19',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 13:43:36','2019-09-29 13:43:38'),(4431,'chemistry','82.145.220.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-29 18:07:39','2019-09-29 18:07:47'),(4432,'chemistry','129.56.100.60',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:15:36','2019-09-30 09:16:57'),(4433,'english','129.56.100.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 09:16:16','2019-09-30 09:16:25'),(4434,'government','41.190.2.44',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:13:45','2019-09-30 14:15:39'),(4435,'biology','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:04','2019-09-30 13:57:15'),(4436,'mathematics','41.190.2.44',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:30:57','2019-09-30 14:29:55'),(4437,'chemistry','41.190.2.44',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:43:01','2019-09-30 17:46:58'),(4438,'english','41.190.2.44',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:45:04','2019-09-30 17:49:27'),(4439,'commerce','41.190.2.44',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 13:54:47','2019-09-30 18:56:36'),(4440,'history','54.147.150.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 15:44:23','2019-09-30 15:44:23'),(4441,'government','41.58.215.64',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:08:17','2019-09-30 18:08:17'),(4442,'mathematics','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:30:32','2019-09-30 18:30:33'),(4443,'government','129.205.113.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-09-30 18:31:38','2019-09-30 18:31:38'),(4444,'biology','27.33.202.67',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 00:15:27','2019-10-01 00:15:29'),(4445,'chemistry','197.210.63.23',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 06:59:39','2019-10-01 07:17:32'),(4446,'physics','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:29:40','2019-10-26 17:47:17'),(4447,'biology','66.249.66.212',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 13:39:21','2019-10-12 01:46:00'),(4448,'chemistry','197.210.246.222',930,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 14:56:07','2019-10-08 18:45:58'),(4449,'chemistry','196.220.144.2',702,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 15:04:34','2019-10-06 18:10:34'),(4450,'physics','171.76.168.198',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-01 20:07:42','2019-10-01 20:07:43'),(4451,'english','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4452,'commerce','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4453,'chemistry','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4454,'economics','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4455,'insurance','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4456,'currentaffairs','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:34'),(4457,'history','54.226.101.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 02:32:34','2019-10-02 02:32:35'),(4458,'english','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4459,'commerce','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4460,'englishlit','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4461,'government','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4462,'crk','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4463,'insurance','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:33'),(4464,'currentaffairs','54.86.69.127',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 06:43:33','2019-10-02 06:43:34'),(4465,'english','154.118.21.211',125,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 07:40:32','2019-10-02 08:32:13'),(4466,'chemistry','41.184.176.252',1053,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-02 10:36:18','2020-01-27 12:19:42'),(4467,'accounting','54.84.164.37',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 12:49:33','2019-10-02 12:49:33'),(4468,'chemistry','3.87.61.43',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-02 13:16:54','2019-10-02 13:16:57'),(4469,'english','197.210.246.222',520,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:48:04','2019-10-08 18:55:26'),(4470,'mathematics','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:50:53','2019-10-02 19:50:56'),(4471,'history','197.210.246.222',40,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 19:52:48','2019-10-02 19:52:51'),(4472,'english','196.220.144.2',291,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:15:37','2019-10-06 20:24:53'),(4473,'mathematics','196.220.144.2',1403,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:35:07','2019-10-06 18:58:12'),(4474,'physics','196.220.144.2',960,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:39:30','2019-10-06 19:09:01'),(4475,'economics','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:50:04','2019-10-08 18:48:36'),(4476,'biology','197.210.246.222',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:52:35','2019-10-08 18:56:29'),(4477,'commerce','197.210.246.222',320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:56:17','2019-10-02 20:58:19'),(4478,'accounting','197.210.246.222',760,'',NULL,'',NULL,NULL,NULL,'','','2019-10-02 20:58:36','2019-10-08 18:48:07'),(4479,'chemistry','100.43.90.108',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 03:16:03','2019-10-04 02:08:43'),(4480,'physics','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:07','2019-10-03 05:18:08'),(4481,'chemistry','43.245.11.46',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 05:18:34','2019-10-03 05:18:36'),(4482,'english','154.120.87.191',165,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 06:04:34','2019-10-03 16:10:48'),(4483,'english','35.210.215.17',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 07:46:05','2019-10-03 07:46:05'),(4484,'chemistry','5.255.250.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 09:44:47','2019-10-03 09:44:47'),(4485,'chemistry','105.112.41.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 10:51:00','2019-10-03 10:51:26'),(4486,'physics','54.242.236.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 13:11:23','2019-10-03 13:11:23'),(4487,'chemistry','207.46.13.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 16:53:40','2019-10-03 16:53:40'),(4488,'currentaffairs','3.82.243.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-03 21:55:12','2019-10-03 21:55:12'),(4489,'english','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 05:55:09','2019-10-04 06:29:52'),(4490,'englishlit','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:24:38','2019-10-04 06:29:57'),(4491,'insurance','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:29:57','2019-10-04 06:32:40'),(4492,'government','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:15','2019-10-04 06:33:46'),(4493,'currentaffairs','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:30:33','2019-10-04 06:32:04'),(4494,'crk','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:31:19','2019-10-04 06:33:25'),(4495,'commerce','54.164.68.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 06:32:20','2019-10-04 06:33:41'),(4496,'english','41.217.46.141',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 07:54:54','2019-10-04 09:02:54'),(4497,'government','3.85.89.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 09:20:47','2019-10-04 09:20:47'),(4498,'mathematics','3.87.186.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 11:42:15','2019-10-04 11:42:15'),(4499,'english','197.210.44.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:52:50','2019-10-04 14:55:58'),(4500,'mathematics','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 14:55:40','2019-10-04 14:55:40'),(4501,'chemistry','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:01:20','2019-10-04 15:01:20'),(4502,'biology','197.210.44.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 15:10:50','2019-10-04 15:10:51'),(4503,'englishlit','196.220.144.2',1080,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-04 21:36:39','2019-10-06 19:21:44'),(4504,'government','196.220.144.2',1001,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:40:51','2019-10-06 19:06:34'),(4505,'geography','196.220.144.2',1320,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:43:47','2019-10-06 19:15:16'),(4506,'civiledu','196.220.144.2',440,'',NULL,'',NULL,NULL,NULL,'','','2019-10-04 21:48:25','2019-10-04 21:51:04'),(4507,'history','52.206.150.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-04 23:32:16','2019-10-04 23:32:16'),(4508,'physics','119.160.67.57',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 03:40:07','2019-10-05 03:40:08'),(4509,'english','41.217.100.83',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 05:04:25','2019-10-05 06:01:53'),(4510,'chemistry','54.36.149.48',47,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-05 06:27:28','2020-05-06 15:23:56'),(4511,'irk','52.205.10.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 13:25:19','2019-10-05 13:25:19'),(4512,'english','154.118.67.81',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-05 18:02:59','2019-10-05 20:13:49'),(4513,'physics','110.44.115.215',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 02:22:30','2019-10-06 02:22:31'),(4514,'mathematics','105.112.17.47',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 05:36:53','2019-10-06 05:37:17'),(4515,'english','41.217.97.111',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:14:35','2019-10-06 11:53:33'),(4516,'government','54.224.0.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 06:26:54','2019-10-06 06:26:54'),(4517,'irk','54.243.12.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-06 11:38:30','2019-10-06 11:38:30'),(4518,'economics','196.220.144.2',521,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-06 18:16:49','2019-10-06 19:02:58'),(4519,'history','174.129.83.246',1,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 18:59:36','2019-10-06 18:59:36'),(4520,'accounting','196.220.144.2',280,'',NULL,'',NULL,NULL,NULL,'','','2019-10-06 19:24:55','2019-10-06 19:26:22'),(4521,'english','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:32','2019-10-07 02:07:33'),(4522,'mathematics','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4523,'physics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4524,'englishlit','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4525,'crk','34.239.110.138',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:34'),(4526,'economics','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4527,'civiledu','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:33','2019-10-07 02:07:33'),(4528,'commerce','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4529,'accounting','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4530,'geography','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4531,'irk','34.239.110.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 02:07:34','2019-10-07 02:07:34'),(4532,'economics','18.204.201.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 07:02:49','2019-10-07 07:02:49'),(4533,'english','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4534,'biology','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4535,'englishlit','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4536,'crk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4537,'geography','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:10'),(4538,'economics','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:10','2019-10-07 11:17:11'),(4539,'irk','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4540,'insurance','3.91.233.73',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4541,'currentaffairs','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4542,'history','3.91.233.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 11:17:11','2019-10-07 11:17:11'),(4543,'chemistry','40.77.167.166',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-07 14:48:22','2020-04-16 19:24:46'),(4544,'english','154.120.92.245',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:16:45','2019-10-08 08:28:43'),(4545,'chemistry','207.46.13.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 08:29:00','2019-10-08 08:29:00'),(4546,'chemistry','197.210.60.68',198,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 13:13:26','2019-10-08 13:25:10'),(4547,'chemistry','91.242.162.77',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-08 17:35:58','2019-10-08 18:04:36'),(4548,'englishlit','197.210.246.222',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-08 18:46:58','2019-10-08 18:47:31'),(4549,'biology','196.220.144.2',80,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:06:19','2019-10-08 19:06:44'),(4550,'commerce','196.220.144.2',240,'',NULL,'',NULL,NULL,NULL,'','','2019-10-08 19:07:20','2019-10-08 19:08:52'),(4551,'chemistry','66.249.66.208',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 00:58:25','2019-10-26 17:44:22'),(4552,'mathematics','66.249.66.208',85,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 01:11:04','2019-10-26 17:53:47'),(4553,'chemistry','34.229.149.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 04:15:06','2019-10-09 04:15:06'),(4554,'commerce','54.242.23.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 06:59:31','2019-10-09 06:59:31'),(4555,'chemistry','36.99.136.139',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:44'),(4556,'chemistry','36.99.136.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 11:27:43','2019-10-09 11:27:43'),(4557,'chemistry','54.36.150.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-09 12:06:00','2019-10-09 12:06:00'),(4558,'chemistry','35.175.120.211',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 02:34:06','2019-10-10 04:07:28'),(4559,'insurance','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:18','2019-11-12 01:51:04'),(4560,'accounting','198.187.29.38',1840,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:22','2019-11-12 01:51:08'),(4561,'englishlit','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:25','2019-11-12 01:51:13'),(4562,'government','198.187.29.38',1680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:30','2019-11-12 01:51:18'),(4563,'currentaffairs','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:34','2019-11-12 01:51:24'),(4564,'economics','198.187.29.38',1720,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:38','2019-11-12 01:51:29'),(4565,'geography','198.187.29.38',1760,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:43','2019-11-12 01:51:33'),(4566,'english','198.187.29.38',1120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:50','2019-11-12 01:51:37'),(4567,'mathematics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:54','2019-11-12 01:51:41'),(4568,'commerce','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:10:58','2019-11-12 01:51:45'),(4569,'biology','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:09','2019-11-12 01:51:48'),(4570,'physics','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:13','2019-11-12 01:51:52'),(4571,'chemistry','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:17','2019-11-12 01:51:56'),(4572,'crk','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:20','2019-11-12 01:52:00'),(4573,'history','198.187.29.38',1080,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:24','2019-11-12 01:52:04'),(4574,'irk','198.187.29.38',810,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:35','2019-11-12 01:52:07'),(4575,'civiledu','198.187.29.38',1040,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-10 13:11:38','2019-11-12 01:52:11'),(4576,'english','54.147.174.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-11 01:20:30','2019-10-11 01:20:30'),(4577,'chemistry','105.112.51.58',49,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 09:52:44','2019-10-11 09:54:21'),(4578,'chemistry','182.140.244.74',11,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 11:22:18','2019-10-11 11:22:28'),(4579,'mathematics','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4580,'accounting','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4581,'biology','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4582,'government','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4583,'crk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:19','2019-10-11 12:17:19'),(4584,'geography','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4585,'irk','52.200.128.230',2,'',NULL,'',NULL,NULL,NULL,'','','2019-10-11 12:17:20','2019-10-11 12:17:20'),(4586,'insurance','54.224.74.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 00:50:18','2019-10-12 00:50:18'),(4587,'mathematics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:33:21','2019-10-12 01:33:22'),(4588,'physics','66.249.66.210',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:39:23','2019-10-12 01:39:25'),(4589,'accounting','66.249.66.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 01:48:29','2019-10-26 17:37:06'),(4590,'currentaffairs','105.112.40.99',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-12 05:00:59','2019-10-12 05:00:59'),(4591,'biology','105.112.40.100',10,'',NULL,'',NULL,NULL,NULL,'','','2019-10-12 16:50:45','2019-10-12 16:51:53'),(4592,'currentaffairs','3.87.162.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 01:34:03','2019-10-13 01:34:03'),(4593,'commerce','54.83.149.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 06:55:56','2019-10-13 06:55:56'),(4594,'chemistry','41.217.58.69',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 07:04:52','2019-10-13 09:28:40'),(4595,'crk','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:00','2019-10-13 11:14:03'),(4596,'chemistry','105.112.58.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:14:11','2019-10-13 11:14:14'),(4597,'currentaffairs','18.212.242.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:31:55','2019-10-13 11:31:55'),(4598,'biology','171.76.195.83',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 11:53:18','2019-10-13 11:53:45'),(4599,'physics','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:13','2019-10-13 12:00:14'),(4600,'chemistry','171.76.195.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 12:00:35','2019-10-13 12:00:36'),(4601,'government','54.89.105.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 14:56:23','2019-10-13 14:56:23'),(4602,'chemistry','129.56.105.4',53,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:17:44','2019-10-13 15:21:07'),(4603,'mathematics','129.56.105.4',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-13 15:23:57','2019-10-13 15:24:00'),(4604,'chemistry','3.92.76.25',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 02:02:14','2019-10-14 02:02:17'),(4605,'history','3.94.214.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 04:11:49','2019-10-14 04:11:49'),(4606,'chemistry','197.210.64.86',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 07:32:24','2019-10-14 07:32:27'),(4607,'history','3.89.135.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 08:16:22','2019-10-14 08:16:22'),(4608,'chemistry','157.55.39.168',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 09:16:59','2019-10-14 09:17:00'),(4609,'mathematics','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:57:53','2019-10-14 16:35:36'),(4610,'commerce','41.190.30.180',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 11:59:39','2019-10-14 16:45:26'),(4611,'government','41.190.30.180',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:00:51','2019-10-14 16:25:28'),(4612,'biology','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:03:11','2019-10-14 16:35:03'),(4613,'chemistry','41.190.30.180',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:09:18','2019-10-14 16:33:53'),(4614,'english','41.190.30.180',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-14 12:13:01','2019-10-14 16:38:31'),(4615,'mathematics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4616,'mathematics','3.88.110.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:20'),(4617,'englishlit','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4618,'commerce','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:20','2019-10-15 02:08:21'),(4619,'crk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4620,'accounting','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4621,'biology','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4622,'economics','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4623,'irk','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4624,'geography','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4625,'insurance','3.88.110.130',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4626,'currentaffairs','3.88.110.130',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 02:08:21','2019-10-15 02:08:21'),(4627,'mathematics','18.215.162.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 07:32:53','2019-10-15 07:32:53'),(4628,'chemistry','105.112.26.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 11:12:59','2019-10-15 11:12:59'),(4629,'english','34.227.191.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 14:04:54','2019-10-15 14:04:54'),(4630,'irk','34.207.92.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-15 16:11:12','2019-10-15 16:11:12'),(4631,'english','105.112.120.131',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:31:08','2019-10-16 00:50:07'),(4632,'physics','105.112.120.131',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 00:33:25','2019-10-16 00:33:25'),(4633,'history','54.237.235.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 03:43:24','2019-10-16 03:43:24'),(4634,'government','41.190.31.103',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:29:16','2019-10-16 06:29:16'),(4635,'biology','41.190.31.103',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 06:30:16','2019-10-16 06:31:46'),(4636,'economics','35.173.136.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 11:30:36','2019-10-16 11:30:36'),(4637,'commerce','3.86.101.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 13:52:29','2019-10-16 13:52:29'),(4638,'english','105.112.46.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-16 16:05:22','2019-10-16 16:08:03'),(4639,'insurance','34.203.203.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 14:09:34','2019-10-17 14:09:34'),(4640,'chemistry','3.85.245.126',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 17:30:44','2019-10-17 17:55:33'),(4641,'english','41.217.98.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-17 22:28:02','2019-10-17 22:28:02'),(4642,'english','41.217.89.22',145,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 04:35:09','2019-10-18 06:06:03'),(4643,'chemistry','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:23:36','2019-10-18 06:23:36'),(4644,'accounting','54.237.193.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 06:59:21','2019-10-18 06:59:21'),(4645,'commerce','154.120.107.217',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 07:40:00','2019-10-18 07:41:16'),(4646,'commerce','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 08:40:41','2019-10-18 08:40:41'),(4647,'mathematics','107.23.168.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 09:07:15','2019-10-18 09:07:15'),(4648,'chemistry','41.191.105.90',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 15:48:28','2019-10-18 15:49:58'),(4649,'mathematics','54.234.162.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 18:25:03','2019-10-18 18:25:03'),(4650,'english','105.112.46.232',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 19:58:44','2019-10-20 16:01:53'),(4651,'mathematics','105.112.46.232',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-18 20:37:17','2019-10-18 20:37:38'),(4652,'english','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4653,'mathematics','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:11','2019-10-19 00:06:11'),(4654,'accounting','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4655,'englishlit','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4656,'biology','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4657,'government','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4658,'chemistry','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4659,'geography','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4660,'irk','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4661,'civiledu','34.202.237.162',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:12'),(4662,'currentaffairs','34.202.237.162',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 00:06:12','2019-10-19 00:06:13'),(4663,'government','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:41:48','2019-10-19 05:41:48'),(4664,'english','197.210.45.205',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 05:45:20','2019-10-19 05:45:20'),(4665,'mathematics','197.210.44.151',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:55','2019-10-19 08:59:56'),(4666,'biology','197.210.44.151',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 08:59:56','2019-10-19 09:27:54'),(4667,'english','105.112.73.172',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 09:37:46','2019-10-19 09:37:48'),(4668,'chemistry','207.46.13.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 15:25:34','2019-10-19 15:25:34'),(4669,'chemistry','3.209.80.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-19 16:51:54','2019-10-19 16:51:54'),(4670,'english','18.206.241.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 04:13:55','2019-10-20 04:13:55'),(4671,'mathematics','54.80.29.100',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:33:07','2019-10-20 12:33:46'),(4672,'chemistry','207.46.13.122',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 12:35:39','2019-10-20 12:35:39'),(4673,'mathematics','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4674,'accounting','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4675,'englishlit','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4676,'government','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4677,'crk','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4678,'insurance','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:16','2019-10-20 16:35:16'),(4679,'currentaffairs','100.25.214.82',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 16:35:17','2019-10-20 16:35:17'),(4680,'chemistry','105.112.41.90',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 17:54:25','2019-10-20 17:54:28'),(4681,'english','105.112.44.170',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 18:58:27','2019-10-20 18:58:27'),(4682,'chemistry','141.8.188.161',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-20 21:56:45','2019-10-20 21:56:46'),(4683,'irk','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:28:19','2019-10-21 01:28:19'),(4684,'mathematics','54.210.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 01:36:39','2019-10-21 01:36:39'),(4685,'chemistry','197.210.64.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 05:52:18','2019-10-21 05:52:19'),(4686,'insurance','52.90.91.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 08:46:16','2019-10-21 08:46:16'),(4687,'chemistry','197.210.8.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:11:30','2019-10-21 10:11:30'),(4688,'chemistry','197.210.47.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:26:02','2019-10-21 10:26:26'),(4689,'mathematics','197.210.47.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 10:27:16','2019-10-21 10:27:16'),(4690,'chemistry','34.228.38.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 15:27:28','2019-10-21 15:27:28'),(4691,'chemistry','141.8.143.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-21 20:01:50','2019-10-21 20:01:50'),(4692,'chemistry','54.36.149.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 03:32:50','2019-10-22 03:32:50'),(4693,'currentaffairs','3.95.63.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 10:54:12','2019-10-22 10:54:12'),(4694,'english','41.203.78.1',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:10:05','2019-10-22 13:10:05'),(4695,'biology','54.196.129.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 13:22:41','2019-10-22 13:22:41'),(4696,'chemistry','197.210.53.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:09:28','2020-04-07 17:00:28'),(4697,'chemistry','197.210.53.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 15:10:41','2019-10-22 15:10:41'),(4698,'commerce','3.87.222.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:12:55','2019-10-22 17:12:55'),(4699,'physics','66.249.64.239',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 17:37:27','2019-10-22 17:37:29'),(4700,'currentaffairs','18.212.225.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 21:17:58','2019-10-22 21:17:58'),(4701,'accounting','54.89.96.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-22 23:16:46','2019-10-22 23:16:46'),(4702,'government','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 01:59:48','2019-10-23 01:59:48'),(4703,'mathematics','34.203.228.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 02:02:09','2019-10-23 02:02:09'),(4704,'chemistry','66.249.88.71',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 08:13:03','2019-10-23 14:35:06'),(4705,'englishlit','3.85.139.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 11:12:36','2019-10-23 11:12:36'),(4706,'english','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4707,'mathematics','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:12'),(4708,'accounting','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:12','2019-10-23 13:40:13'),(4709,'government','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4710,'crk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4711,'irk','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4712,'civiledu','54.91.20.62',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 13:40:13','2019-10-23 13:40:13'),(4713,'chemistry','66.249.83.18',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:35:06','2019-11-06 14:40:34'),(4714,'chemistry','197.211.57.153',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:36:10','2019-10-23 14:40:46'),(4715,'mathematics','197.211.57.153',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:37:19','2019-10-23 14:38:17'),(4716,'chemistry','74.125.210.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 14:38:27','2019-10-23 14:38:27'),(4717,'history','3.84.20.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 17:22:28','2019-10-23 17:22:28'),(4718,'english','105.112.44.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 18:01:51','2019-10-23 18:01:51'),(4719,'english','105.112.53.50',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:15:14','2019-10-23 20:15:14'),(4720,'biology','3.89.55.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-23 20:28:18','2019-10-23 20:28:18'),(4721,'history','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 00:17:49','2019-10-24 00:17:49'),(4722,'english','41.190.3.189',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 03:02:51','2019-10-24 03:02:52'),(4723,'chemistry','197.253.35.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:18:00','2019-10-24 07:18:00'),(4724,'chemistry','91.242.162.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 07:42:43','2019-10-24 07:52:10'),(4725,'chemistry','41.203.73.203',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:45:04','2019-10-24 08:53:03'),(4726,'biology','41.203.73.203',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 08:53:59','2019-10-24 08:54:01'),(4727,'chemistry','129.205.112.139',108,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 11:19:07','2019-10-24 12:02:39'),(4728,'chemistry','154.120.87.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 17:55:11','2019-10-24 17:56:27'),(4729,'chemistry','54.36.148.163',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-24 19:43:38','2019-10-24 19:43:39'),(4730,'accounting','34.204.7.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 06:14:19','2019-10-25 06:14:19'),(4731,'history','23.22.145.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 07:34:04','2019-10-25 07:34:04'),(4732,'mathematics','129.205.112.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:18:03','2019-10-25 09:18:03'),(4733,'commerce','129.205.112.139',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 09:29:16','2019-10-25 09:31:21'),(4734,'english','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4735,'biology','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4736,'physics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4737,'government','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:02'),(4738,'crk','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:02','2019-10-25 16:12:03'),(4739,'economics','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4740,'civiledu','54.80.39.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:12:03','2019-10-25 16:12:03'),(4741,'chemistry','100.43.81.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 16:45:17','2019-10-25 16:45:17'),(4742,'crk','18.212.239.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 18:29:40','2019-10-25 18:29:40'),(4743,'commerce','35.173.231.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-25 23:55:41','2019-10-25 23:55:41'),(4744,'accounting','54.234.193.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 02:03:11','2019-10-26 02:03:11'),(4745,'english','197.242.102.245',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:44:02','2019-10-26 12:15:20'),(4746,'mathematics','197.242.102.245',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 05:46:55','2019-10-26 05:46:55'),(4747,'chemistry','41.203.73.208',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 09:43:31','2019-10-26 09:47:32'),(4748,'biology','54.81.220.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 15:10:39','2019-10-26 15:10:39'),(4749,'geography','18.204.197.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 16:03:30','2019-10-26 16:03:30'),(4750,'insurance','54.80.115.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-26 18:02:39','2019-10-26 18:02:39'),(4751,'commerce','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4752,'accounting','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4753,'biology','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4754,'chemistry','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4755,'physics','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4756,'government','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4757,'crk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:34'),(4758,'englishlit','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:34','2019-10-27 02:11:35'),(4759,'irk','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4760,'insurance','3.83.16.149',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4761,'history','3.83.16.149',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 02:11:35','2019-10-27 02:11:35'),(4762,'chemistry','120.18.21.195',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:10','2019-10-27 05:56:57'),(4763,'mathematics','120.18.21.195',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:25:46','2019-10-27 05:25:47'),(4764,'crk','18.205.116.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 05:31:51','2019-10-27 05:31:51'),(4765,'english','154.120.107.117',322,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 06:13:42','2019-10-27 10:26:33'),(4766,'commerce','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4767,'accounting','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4768,'biology','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:51'),(4769,'chemistry','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:51','2019-10-27 14:02:52'),(4770,'englishlit','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4771,'government','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4772,'irk','54.89.101.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:02:52','2019-10-27 14:02:52'),(4773,'chemistry','157.55.39.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:39:09','2019-10-27 14:39:09'),(4774,'englishlit','3.88.251.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 14:47:29','2019-10-27 14:47:29'),(4775,'commerce','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-27 18:59:58','2019-10-27 18:59:58'),(4776,'crk','3.88.198.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:12:54','2019-10-28 01:12:54'),(4777,'chemistry','40.77.167.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 01:42:41','2019-10-28 01:42:41'),(4778,'biology','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 04:16:20','2019-10-28 04:16:20'),(4779,'government','18.232.138.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 06:35:55','2019-10-28 06:35:55'),(4780,'physics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:30:28','2019-10-28 07:30:29'),(4781,'mathematics','112.79.228.33',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 07:31:02','2019-10-28 07:31:04'),(4782,'government','3.95.66.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 08:05:51','2019-10-28 08:05:51'),(4783,'english','105.112.72.133',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:29:38','2019-10-28 09:29:39'),(4784,'chemistry','197.210.52.23',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:51:40','2019-10-28 09:53:37'),(4785,'chemistry','197.210.53.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 09:53:00','2019-10-28 09:53:00'),(4786,'crk','3.90.3.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:10:58','2019-10-28 11:10:58'),(4787,'chemistry','197.210.8.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:13:17','2019-10-28 11:13:17'),(4788,'currentaffairs','197.210.8.173',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 11:14:37','2019-10-28 11:14:46'),(4789,'civiledu','34.207.224.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-28 17:19:22','2019-10-28 17:19:22'),(4790,'biology','3.89.72.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 03:11:01','2019-10-29 03:11:01'),(4791,'government','54.89.226.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 05:28:30','2019-10-29 05:28:30'),(4792,'economics','3.93.216.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 06:59:51','2019-10-29 06:59:51'),(4793,'english','105.112.40.87',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 09:57:48','2019-10-29 12:46:07'),(4794,'english','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 11:36:32','2019-10-29 11:36:32'),(4795,'accounting','34.227.103.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 12:02:06','2019-10-29 12:02:06'),(4796,'mathematics','105.112.73.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:23:32','2019-10-29 15:23:32'),(4797,'english','41.190.30.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:36:54','2019-10-29 15:36:54'),(4798,'mathematics','105.112.17.202',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:55:44','2019-10-29 15:55:44'),(4799,'english','196.27.128.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:57:02','2019-10-29 15:57:02'),(4800,'chemistry','196.27.128.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 15:59:40','2019-10-29 15:59:41'),(4801,'mathematics','154.68.226.2',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:06:09','2019-10-29 16:06:09'),(4802,'english','197.210.227.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:21:51','2019-10-29 16:21:51'),(4803,'english','107.167.106.232',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:41:14','2019-10-29 16:42:06'),(4804,'mathematics','18.206.56.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:46:50','2019-10-29 16:46:50'),(4805,'english','105.112.73.5',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 16:52:32','2019-10-29 16:52:33'),(4806,'englishlit','197.211.58.67',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:08:44','2019-10-29 17:08:44'),(4807,'government','197.211.58.70',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:11:12','2019-10-29 17:11:13'),(4808,'chemistry','129.56.94.58',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:18','2019-10-29 17:48:50'),(4809,'mathematics','197.210.85.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:48:26','2019-10-29 17:48:26'),(4810,'mathematics','129.56.94.58',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 17:49:32','2019-10-29 17:49:35'),(4811,'chemistry','197.210.53.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:31:50','2019-10-29 19:31:50'),(4812,'english','105.112.53.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:33:58','2019-10-29 19:33:58'),(4813,'chemistry','197.210.52.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:34:08','2019-10-29 19:34:08'),(4814,'mathematics','105.112.53.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 19:35:34','2019-10-29 19:35:34'),(4815,'chemistry','136.243.91.32',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 20:51:17','2020-01-07 22:24:25'),(4816,'english','54.198.170.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 22:10:58','2019-10-29 22:10:58'),(4817,'physics','3.81.122.72',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:05:58','2019-10-29 23:38:38'),(4818,'english','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4819,'mathematics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4820,'commerce','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4821,'englishlit','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:38'),(4822,'economics','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:38','2019-10-29 23:38:39'),(4823,'civiledu','3.81.122.72',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-29 23:38:39','2019-10-29 23:38:39'),(4824,'mathematics','52.205.254.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 03:27:41','2019-10-30 03:27:41'),(4825,'accounting','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4826,'englishlit','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4827,'geography','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4828,'economics','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:55'),(4829,'irk','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:55','2019-10-30 04:18:56'),(4830,'civiledu','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4831,'currentaffairs','18.212.59.94',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 04:18:56','2019-10-30 04:18:56'),(4832,'mathematics','197.210.226.198',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-10-30 04:44:48','2020-05-28 20:25:41'),(4833,'english','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:02:12','2019-10-30 06:02:12'),(4834,'physics','54.226.159.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 06:03:57','2019-10-30 06:03:57'),(4835,'mathematics','34.226.220.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 07:03:46','2019-10-30 07:03:46'),(4836,'chemistry','197.210.57.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 12:45:49','2019-10-30 12:45:49'),(4837,'economics','107.23.28.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 18:15:18','2019-10-30 18:15:18'),(4838,'civiledu','18.214.99.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 19:00:42','2019-10-30 19:00:42'),(4839,'chemistry','197.210.65.172',97,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:11:50'),(4840,'chemistry','197.210.65.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:02:02','2019-10-30 20:02:02'),(4841,'chemistry','197.210.57.224',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:55:52','2019-10-30 20:55:53'),(4842,'mathematics','197.210.57.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-30 20:56:37','2019-10-30 20:56:37'),(4843,'mathematics','197.210.57.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4844,'mathematics','197.210.57.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4845,'mathematics','197.210.57.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4846,'chemistry','197.210.57.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:08:59','2019-10-31 11:08:59'),(4847,'chemistry','197.211.58.123',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:15','2019-10-31 11:21:15'),(4848,'mathematics','197.211.58.123',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 11:21:24','2019-10-31 13:23:52'),(4849,'chemistry','91.242.162.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 17:52:10','2019-10-31 17:52:10'),(4850,'chemistry','197.210.84.213',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 18:55:16','2019-10-31 18:58:56'),(4851,'insurance','18.234.208.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-10-31 20:05:10','2019-10-31 20:05:10'),(4852,'history','18.206.189.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 04:45:22','2019-11-01 04:45:22'),(4853,'crk','54.86.61.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 06:49:49','2019-11-01 06:49:49'),(4854,'biology','54.198.198.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 07:35:21','2019-11-01 07:35:21'),(4855,'english','105.112.77.49',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:39:35','2019-11-01 09:39:36'),(4856,'government','54.174.215.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 09:52:23','2019-11-01 09:52:23'),(4857,'economics','107.22.138.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 11:25:59','2019-11-01 11:25:59'),(4858,'chemistry','34.207.95.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 14:53:34','2019-11-01 14:53:34'),(4859,'english','54.173.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 16:08:03','2019-11-01 16:08:03'),(4860,'englishlit','54.236.206.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 22:07:32','2019-11-01 22:07:32'),(4861,'biology','175.37.47.44',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-01 23:06:13','2019-11-01 23:06:14'),(4862,'accounting','54.90.121.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 06:44:10','2019-11-02 06:44:10'),(4863,'chemistry','40.77.167.175',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:15:55','2019-11-02 07:15:56'),(4864,'history','35.171.19.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 07:52:07','2019-11-02 07:52:07'),(4865,'english','105.112.73.230',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:32:09','2019-11-02 13:32:09'),(4866,'crk','3.84.129.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 13:39:50','2019-11-02 13:39:50'),(4867,'chemistry','197.211.58.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 14:34:58','2019-11-02 14:34:58'),(4868,'commerce','54.162.250.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 16:05:23','2019-11-02 16:05:23'),(4869,'accounting','35.172.138.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 18:09:32','2019-11-02 18:09:32'),(4870,'economics','100.27.31.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-02 20:25:53','2019-11-02 20:25:53'),(4871,'insurance','18.205.22.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 04:08:45','2019-11-03 04:08:45'),(4872,'englishlit','34.204.2.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 07:47:31','2019-11-03 07:47:31'),(4873,'mathematics','105.112.40.245',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 12:10:24','2019-11-03 12:12:07'),(4874,'chemistry','197.211.58.152',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 17:54:39','2019-11-03 17:55:20'),(4875,'commerce','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:18:15','2019-11-03 19:18:15'),(4876,'english','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 19:41:39','2019-11-03 19:41:39'),(4877,'physics','52.206.240.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 20:10:58','2019-11-03 20:10:58'),(4878,'crk','54.242.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 21:58:54','2019-11-03 21:58:54'),(4879,'chemistry','197.210.58.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:22:50','2019-11-03 23:22:50'),(4880,'chemistry','197.210.57.85',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-03 23:23:06','2019-11-03 23:23:09'),(4881,'chemistry','41.58.233.184',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 00:27:44','2019-11-04 00:30:17'),(4882,'crk','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 01:28:20','2019-11-04 01:28:20'),(4883,'english','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4884,'biology','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4885,'mathematics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4886,'physics','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4887,'englishlit','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:17'),(4888,'government','184.72.215.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4889,'civiledu','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:17','2019-11-04 11:06:18'),(4890,'crk','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4891,'insurance','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4892,'geography','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4893,'currentaffairs','184.72.215.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 11:06:18','2019-11-04 11:06:18'),(4894,'accounting','3.84.43.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-04 19:32:08','2019-11-04 19:32:08'),(4895,'english','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:48','2019-11-05 02:19:48'),(4896,'commerce','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4897,'accounting','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4898,'englishlit','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4899,'crk','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4900,'geography','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4901,'insurance','18.208.176.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:19:49','2019-11-05 02:19:49'),(4902,'chemistry','54.36.148.22',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 02:26:28','2019-11-05 02:26:30'),(4903,'mathematics','34.229.222.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 10:07:21','2019-11-05 10:07:21'),(4904,'chemistry','154.120.94.130',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 12:22:45','2019-11-05 12:23:42'),(4905,'commerce','197.211.58.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 19:23:50','2019-11-05 19:23:51'),(4906,'mathematics','18.209.50.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-05 20:22:48','2019-11-05 20:22:48'),(4907,'chemistry','89.234.68.70',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:17:05','2019-11-06 04:17:44'),(4908,'chemistry','83.71.247.36',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 04:21:42','2019-11-06 04:22:32'),(4909,'english','18.233.99.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 07:47:51','2019-11-06 07:47:51'),(4910,'currentaffairs','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 09:50:51','2019-11-06 09:50:51'),(4911,'accounting','3.94.191.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 10:24:20','2019-11-06 10:24:20'),(4912,'mathematics','54.145.206.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 12:14:51','2019-11-06 12:14:51'),(4913,'insurance','3.82.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 16:51:53','2019-11-06 16:51:53'),(4914,'history','54.84.14.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-06 23:14:10','2019-11-06 23:14:10'),(4915,'history','18.212.250.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 02:06:08','2019-11-07 02:06:08'),(4916,'mathematics','197.211.58.187',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 11:26:16','2019-11-07 11:28:37'),(4917,'englishlit','52.205.0.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 16:47:19','2019-11-07 16:47:19'),(4918,'chemistry','66.249.64.116',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 17:17:10','2020-01-25 10:15:50'),(4919,'irk','18.212.71.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 18:58:31','2019-11-07 18:58:31'),(4920,'accounting','54.225.61.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-07 21:07:53','2019-11-07 21:07:53'),(4921,'english','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:28:09','2019-11-08 00:28:09'),(4922,'history','54.224.92.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 00:36:53','2019-11-08 00:36:53'),(4923,'crk','35.172.133.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 05:00:20','2019-11-08 05:00:20'),(4924,'commerce','54.91.119.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 06:26:52','2019-11-08 06:26:52'),(4925,'accounting','34.207.107.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 09:53:52','2019-11-08 09:53:52'),(4926,'economics','54.157.32.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 11:20:44','2019-11-08 11:20:44'),(4927,'english','66.249.66.210',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 14:58:50','2019-11-08 14:58:51'),(4928,'chemistry','54.234.228.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 17:47:37','2019-11-08 17:47:37'),(4929,'insurance','3.88.176.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 19:01:26','2019-12-23 08:02:50'),(4930,'chemistry','157.55.39.209',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 21:25:34','2019-11-08 21:25:35'),(4931,'chemistry','91.242.162.26',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:13:24','2019-11-08 22:13:25'),(4932,'englishlit','18.212.146.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-08 22:21:32','2019-11-08 22:21:32'),(4933,'chemistry','197.210.70.127',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 00:49:45','2019-11-09 02:10:25'),(4934,'history','197.210.70.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:10:38','2019-11-09 01:10:38'),(4935,'english','197.210.70.127',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 01:12:33','2019-11-09 02:27:22'),(4936,'crk','34.227.56.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:23:16','2019-11-09 02:23:16'),(4937,'english','197.210.70.11',596,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:29:42','2019-11-09 02:43:37'),(4938,'mathematics','197.210.70.11',115,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-09 02:48:03','2019-11-09 03:02:34'),(4939,'commerce','197.210.70.11',887,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-09 03:04:20','2019-11-09 03:25:18'),(4940,'accounting','197.210.70.11',514,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:25:25','2019-11-09 03:37:34'),(4941,'biology','197.210.70.11',549,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 03:37:38','2019-11-09 07:08:42'),(4942,'physics','54.224.42.134',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 05:11:09','2019-11-09 05:11:09'),(4943,'physics','197.210.70.11',62,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:08:48','2019-11-09 07:17:18'),(4944,'chemistry','197.210.70.11',322,'','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:22:44','2020-01-16 09:56:50'),(4945,'englishlit','197.210.70.11',361,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 07:33:50','2019-11-09 07:42:56'),(4946,'government','197.210.70.11',438,'Nigeria','NG','','Lagos',NULL,NULL,'','','2019-11-09 07:43:01','2019-11-09 08:01:54'),(4947,'irk','197.210.70.11',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:06:48','2019-11-09 08:07:41'),(4948,'mathematics','197.210.70.169',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:46','2019-11-09 08:08:46'),(4949,'crk','197.210.70.169',391,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:08:53','2019-11-09 08:46:48'),(4950,'civiledu','197.210.70.169',393,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:09:11','2019-11-09 09:00:04'),(4951,'insurance','197.210.70.169',350,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:11:33','2019-11-09 09:05:35'),(4952,'history','197.210.70.169',50,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:13:57','2019-11-09 08:15:02'),(4953,'geography','197.210.70.169',236,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:16:57','2019-11-09 08:47:31'),(4954,'economics','197.210.70.169',461,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:22:02','2019-11-09 08:53:44'),(4955,'irk','197.210.70.169',33,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:13','2019-11-09 08:57:41'),(4956,'currentaffairs','197.210.70.169',44,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:26:59','2019-11-09 09:06:11'),(4957,'physics','197.210.70.169',68,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:30:48','2019-11-09 08:33:02'),(4958,'government','197.210.70.169',285,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:32:21','2019-11-09 08:38:37'),(4959,'physics','3.85.57.153',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:37:56','2019-11-09 08:37:56'),(4960,'chemistry','159.138.155.115',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 08:57:32','2019-11-09 08:57:32'),(4961,'commerce','54.87.49.120',3,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 10:09:51'),(4962,'accounting','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:31','2019-11-09 09:33:31'),(4963,'chemistry','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4964,'government','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4965,'irk','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4966,'civiledu','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4967,'history','54.87.49.120',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:33:32','2019-11-09 09:33:32'),(4968,'englishlit','54.87.49.120',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:36:47','2019-11-09 09:36:47'),(4969,'english','105.112.45.248',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 09:58:49','2019-11-09 09:58:49'),(4970,'english','54.158.200.213',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 12:26:02','2019-11-09 12:26:02'),(4971,'crk','3.95.160.82',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-09 14:20:40','2019-11-09 14:20:40'),(4972,'mathematics','18.206.174.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 06:53:11','2019-11-10 06:53:11'),(4973,'accounting','54.90.247.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 09:13:09','2019-11-10 09:13:09'),(4974,'chemistry','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:29:58','2019-11-10 11:29:58'),(4975,'english','3.87.213.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 11:56:18','2019-11-10 11:56:18'),(4976,'mathematics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4977,'commerce','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4978,'physics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:02'),(4979,'englishlit','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:02','2019-11-10 17:03:03'),(4980,'crk','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4981,'geography','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4982,'economics','34.239.117.204',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 17:03:03','2019-11-10 17:03:03'),(4983,'mathematics','54.175.81.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-10 21:05:09','2019-11-10 21:05:09'),(4984,'biology','3.90.109.201',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:25'),(4985,'biology','3.90.109.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 05:22:10','2019-11-11 05:22:10'),(4986,'chemistry','102.134.115.193',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 14:41:27','2019-11-11 14:46:16'),(4987,'chemistry','54.36.148.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 16:31:40','2019-11-11 16:31:40'),(4988,'economics','3.91.196.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 18:48:42','2019-11-11 18:48:42'),(4989,'mathematics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4990,'commerce','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:45'),(4991,'biology','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:45','2019-11-11 20:23:46'),(4992,'physics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4993,'economics','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4994,'currentaffairs','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4995,'history','54.90.246.133',2,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:23:46','2019-11-11 20:23:46'),(4996,'english','54.90.246.133',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-11 20:35:46','2019-11-11 20:35:46'),(4997,'mathematics','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:33:47','2019-11-11 23:33:47'),(4998,'insurance','3.88.249.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-11 23:47:30','2019-11-11 23:47:30'),(4999,'chemistry','14.210.2.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 02:24:20','2019-11-12 02:24:20'),(5000,'chemistry','3.233.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 05:05:46','2019-11-12 05:05:46'),(5001,'biology','54.92.179.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 08:42:22','2019-11-12 08:42:22'),(5002,'history','54.85.253.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 09:42:51','2019-11-12 09:42:51'),(5003,'chemistry','197.210.71.200',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 12:32:36','2019-11-12 12:32:37'),(5004,'chemistry','223.73.239.66',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 15:29:45','2019-11-12 15:29:46'),(5005,'chemistry','41.190.30.18',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 18:17:17','2019-11-12 18:17:43'),(5006,'englishlit','3.92.166.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-12 20:15:35','2019-11-12 20:15:35'),(5007,'accounting','103.10.31.31',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:23:01','2019-11-13 05:29:07'),(5008,'physics','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:54','2019-11-13 05:28:55'),(5009,'biology','103.10.31.31',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 05:28:59','2019-11-13 05:29:00'),(5010,'accounting','54.166.15.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 08:33:25','2019-11-13 08:33:25'),(5011,'biology','66.249.64.116',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 09:19:50','2019-11-13 09:19:52'),(5012,'history','54.159.26.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 11:22:16','2019-11-13 11:22:16'),(5013,'physics','66.249.64.112',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 12:14:10','2020-01-11 03:27:45'),(5014,'accounting','3.88.111.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 17:40:10','2019-11-13 17:40:10'),(5015,'chemistry','207.46.13.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 19:01:59','2019-11-13 19:01:59'),(5016,'economics','3.88.230.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:09','2019-11-13 20:05:09'),(5017,'english','105.112.77.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-13 20:05:42','2019-11-13 20:05:45'),(5018,'chemistry','105.112.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 00:12:42','2019-11-14 00:12:42'),(5019,'insurance','3.87.3.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 04:04:18','2019-11-14 04:04:18'),(5020,'english','104.133.10.100',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:36','2019-11-14 06:14:47'),(5021,'crk','104.133.10.100',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:11:48','2019-11-14 06:11:51'),(5022,'chemistry','91.242.162.9',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 06:50:51','2019-11-14 06:50:52'),(5023,'englishlit','34.239.138.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 08:49:26','2019-11-14 08:49:26'),(5024,'english','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5025,'mathematics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:09','2019-11-14 10:38:12'),(5026,'chemistry','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:12','2019-11-14 10:38:15'),(5027,'physics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:14','2019-11-14 10:38:17'),(5028,'commerce','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:19','2019-11-14 10:38:23'),(5029,'currentaffairs','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:21','2019-11-14 10:38:24'),(5030,'government','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:22','2019-11-14 10:38:25'),(5031,'accounting','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:24','2019-11-14 10:38:27'),(5032,'economics','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:25','2019-11-14 10:38:28'),(5033,'biology','104.132.127.96',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:27','2019-11-14 10:44:31'),(5034,'geography','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:29','2019-11-14 10:38:32'),(5035,'history','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:31','2019-11-14 10:38:34'),(5036,'insurance','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:33','2019-11-14 10:38:36'),(5037,'civiledu','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:35','2019-11-14 10:38:38'),(5038,'crk','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:37','2019-11-14 10:38:40'),(5039,'englishlit','104.132.127.96',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 10:38:38','2019-11-14 10:38:41'),(5040,'mathematics','197.156.253.124',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 11:11:37','2019-11-14 11:13:49'),(5041,'crk','34.229.192.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:42:00','2019-11-14 12:42:00'),(5042,'chemistry','105.112.113.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 12:43:31','2019-11-14 12:43:31'),(5043,'english','154.118.34.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 15:44:21','2019-11-14 15:44:24'),(5044,'chemistry','82.145.221.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 17:59:18','2019-11-14 17:59:18'),(5045,'physics','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:46:23','2019-11-14 18:46:23'),(5046,'english','3.87.121.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 18:53:00','2019-11-14 18:53:00'),(5047,'commerce','3.87.121.240',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-14 19:14:45','2019-11-14 19:14:45'),(5048,'crk','34.238.39.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-14 22:51:14','2019-11-14 22:51:14'),(5049,'economics','34.228.32.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 02:11:21','2019-11-15 02:11:21'),(5050,'chemistry','105.112.55.179',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:49:45','2019-11-15 08:02:02'),(5051,'physics','105.112.55.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 07:51:09','2019-11-15 07:51:09'),(5052,'chemistry','105.112.72.61',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 12:48:53','2019-11-15 12:50:34'),(5053,'accounting','34.203.12.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-15 19:40:58','2019-11-15 19:40:58'),(5054,'commerce','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5055,'accounting','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5056,'biology','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:31'),(5057,'chemistry','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:31','2019-11-16 03:09:32'),(5058,'geography','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5059,'economics','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5060,'insurance','34.224.38.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 03:09:32','2019-11-16 03:09:32'),(5061,'biology','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5062,'chemistry','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5063,'englishlit','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:17','2019-11-16 05:57:17'),(5064,'geography','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5065,'economics','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5066,'irk','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5067,'currentaffairs','3.86.236.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 05:57:18','2019-11-16 05:57:18'),(5068,'mathematics','18.212.5.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 08:58:36','2019-11-16 08:58:36'),(5069,'english','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:23:31','2019-11-16 11:23:31'),(5070,'mathematics','197.242.97.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:21','2019-11-16 11:30:21'),(5071,'mathematics','105.112.183.226',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:30:22','2019-11-16 11:30:23'),(5072,'english','105.112.183.226',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 11:32:08','2019-11-16 11:32:09'),(5073,'chemistry','3.88.21.220',320,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:53:05','2019-11-16 14:57:29'),(5074,'english','34.207.122.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 14:55:25','2019-11-16 14:55:25'),(5075,'chemistry','41.58.118.229',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:02:07','2019-11-16 15:05:13'),(5076,'physics','41.58.118.229',147,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:06:10','2019-11-16 15:11:36'),(5077,'mathematics','41.58.118.229',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:17:15','2019-11-16 15:17:18'),(5078,'chemistry','34.227.24.189',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-16 15:20:27','2019-11-16 15:20:41'),(5079,'english','41.58.118.229',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-11-16 15:21:00','2019-11-16 15:23:00'),(5080,'government','41.58.118.229',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:23:59','2019-11-16 15:24:02'),(5081,'chemistry','105.112.183.165',1,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:28:10','2019-11-16 15:28:10'),(5082,'chemistry','18.212.227.139',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:30:31','2019-11-16 15:30:34'),(5083,'chemistry','34.238.168.46',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:34:19','2019-11-16 15:42:25'),(5084,'chemistry','54.88.106.95',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:46:48','2019-11-16 15:46:51'),(5085,'chemistry','34.227.27.84',120,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 15:59:45','2019-11-16 16:02:50'),(5086,'english','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 16:19:39','2019-11-16 16:19:42'),(5087,'english','197.210.28.14',5,'',NULL,'',NULL,NULL,NULL,'','','2019-11-16 17:38:36','2019-11-16 17:38:36'),(5088,'geography','3.92.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 02:58:10','2019-11-17 02:58:10'),(5089,'mathematics','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:39:52','2019-11-17 05:56:58'),(5090,'english','54.209.29.22',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 05:40:15','2019-11-17 05:56:35'),(5091,'english','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:04:57','2019-11-17 07:04:57'),(5092,'commerce','3.89.136.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:11:06','2019-11-17 07:11:06'),(5093,'currentaffairs','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 07:58:01','2019-11-17 07:58:01'),(5094,'economics','54.234.244.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 08:25:21','2019-11-17 08:25:21'),(5095,'mathematics','100.26.97.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 10:58:29','2019-11-17 10:58:29'),(5096,'englishlit','100.27.23.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:42:13','2019-11-17 11:42:13'),(5097,'chemistry','3.226.254.115',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 11:59:22','2019-11-17 12:24:41'),(5098,'mathematics','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:07:43','2019-11-17 13:07:43'),(5099,'insurance','18.233.9.52',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 13:16:37','2019-11-17 13:16:37'),(5100,'commerce','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:52'),(5101,'accounting','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:49'),(5102,'physics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:26','2019-11-17 14:27:50'),(5103,'crk','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:46'),(5104,'geography','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:42'),(5105,'economics','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:44'),(5106,'history','3.91.196.41',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-17 14:27:27','2019-11-17 14:27:40'),(5107,'accounting','3.90.28.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 01:39:00','2019-11-18 01:39:00'),(5108,'englishlit','54.145.175.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:30:31','2019-11-18 11:30:31'),(5109,'chemistry','154.68.195.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 11:44:51','2019-11-18 11:44:51'),(5110,'chemistry','105.112.177.109',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 16:07:34','2019-11-18 16:09:34'),(5111,'history','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-18 22:55:46','2019-12-08 23:07:31'),(5112,'biology','52.90.143.9',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:27:47','2019-11-25 19:20:30'),(5113,'english','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5114,'commerce','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:18','2019-11-19 00:48:18'),(5115,'government','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5116,'crk','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5117,'insurance','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5118,'currentaffairs','52.90.143.9',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 00:48:19','2019-11-19 00:48:19'),(5119,'chemistry','157.55.39.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:14:36','2019-11-19 04:14:36'),(5120,'history','54.152.47.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 04:20:09','2019-11-19 04:20:09'),(5121,'crk','3.87.113.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 06:24:27','2019-11-19 06:24:27'),(5122,'commerce','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:06:20','2019-11-19 09:06:20'),(5123,'biology','54.198.98.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:12:53','2019-11-19 09:12:53'),(5124,'chemistry','129.56.29.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 09:13:53','2019-11-19 09:13:53'),(5125,'mathematics','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:13:31','2019-11-19 10:13:31'),(5126,'commerce','105.112.123.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:15:00','2019-11-19 10:15:00'),(5127,'english','105.112.61.168',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 10:46:39','2019-11-19 10:46:39'),(5128,'accounting','3.87.101.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 11:57:03','2019-11-19 11:57:03'),(5129,'accounting','54.90.128.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 13:36:06','2019-11-19 13:36:06'),(5130,'economics','54.198.9.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 14:11:01','2019-11-19 14:11:01'),(5131,'chemistry','82.145.221.84',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 17:06:44','2019-11-19 17:06:59'),(5132,'commerce','34.207.90.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 18:09:26','2019-11-19 18:09:26'),(5133,'insurance','35.175.235.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 21:47:15','2019-11-19 21:47:15'),(5134,'economics','54.243.7.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-19 23:21:26','2019-11-19 23:21:26'),(5135,'englishlit','3.93.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 00:51:45','2019-11-20 00:51:45'),(5136,'accounting','3.81.87.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 03:46:05','2019-11-20 03:46:05'),(5137,'crk','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 05:37:07','2019-11-20 05:37:07'),(5138,'geography','34.207.161.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 06:00:11','2019-11-20 06:00:11'),(5139,'englishlit','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:11:12','2019-11-20 13:11:12'),(5140,'physics','54.145.37.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 13:12:49','2019-11-20 13:12:49'),(5141,'commerce','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:10:33','2019-11-20 14:10:33'),(5142,'english','54.210.94.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:24:22','2019-11-20 14:24:22'),(5143,'englishlit','3.86.15.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 14:59:45','2019-11-20 14:59:45'),(5144,'crk','54.211.114.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 18:58:30','2019-11-20 18:58:30'),(5145,'englishlit','54.227.23.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-20 20:17:56','2019-11-20 20:17:56'),(5146,'economics','54.173.226.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 02:00:33','2019-11-21 02:00:33'),(5147,'currentaffairs','3.87.237.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 15:38:11','2019-11-21 15:38:11'),(5148,'englishlit','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:11:52','2019-11-21 19:11:52'),(5149,'civiledu','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:27:16','2019-11-21 19:27:16'),(5150,'english','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 19:41:38','2019-11-21 19:41:38'),(5151,'accounting','3.82.110.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-21 20:05:16','2019-11-21 20:05:16'),(5152,'chemistry','61.138.222.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 02:40:12','2019-11-22 02:40:12'),(5153,'commerce','34.229.113.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 05:56:54','2019-11-22 05:56:54'),(5154,'english','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5155,'mathematics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5156,'physics','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5157,'crk','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:33','2019-11-22 09:10:33'),(5158,'geography','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5159,'insurance','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5160,'history','54.166.247.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:10:34','2019-11-22 09:10:34'),(5161,'mathematics','41.191.105.89',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 09:47:00','2019-11-22 09:47:25'),(5162,'mathematics','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:28:36','2019-11-22 18:28:36'),(5163,'irk','3.91.225.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 18:38:47','2019-11-22 18:38:47'),(5164,'chemistry','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:24:34','2019-11-22 19:24:37'),(5165,'mathematics','197.210.85.103',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 19:26:12','2019-11-22 19:26:15'),(5166,'chemistry','154.160.27.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 20:46:34','2019-11-22 20:46:34'),(5167,'government','34.235.143.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-22 23:08:27','2019-11-22 23:08:27'),(5168,'commerce','3.93.212.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:05:01','2019-11-23 01:05:01'),(5169,'insurance','107.23.192.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 01:56:47','2019-11-23 01:56:47'),(5170,'english','54.87.140.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 03:56:10','2019-11-23 03:56:10'),(5171,'crk','3.80.89.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 04:32:38','2019-11-23 04:32:38'),(5172,'chemistry','40.77.167.170',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 06:00:38','2019-11-23 06:00:39'),(5173,'mathematics','3.87.21.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 13:23:50','2019-11-23 13:23:50'),(5174,'chemistry','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:04:39','2019-11-23 14:04:39'),(5175,'geography','52.91.110.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:13:49','2019-11-23 14:13:49'),(5176,'chemistry','3.82.225.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 14:59:38','2019-11-23 14:59:38'),(5177,'currentaffairs','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 18:52:45','2019-11-23 18:52:45'),(5178,'geography','52.91.213.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 19:17:25','2019-11-23 19:17:25'),(5179,'english','54.90.185.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 20:11:52','2019-11-23 20:11:52'),(5180,'geography','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-23 21:06:07','2019-11-23 21:06:07'),(5181,'chemistry','3.87.114.3',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 00:02:34','2019-11-24 00:03:13'),(5182,'geography','3.92.185.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 03:57:44','2019-11-24 03:57:44'),(5183,'englishlit','18.212.68.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 07:58:51','2019-11-24 07:58:51'),(5184,'chemistry','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 08:41:40','2019-11-24 08:41:40'),(5185,'currentaffairs','3.84.252.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 09:06:30','2019-11-24 09:06:30'),(5186,'biology','52.87.249.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 11:46:34','2019-11-24 11:46:34'),(5187,'commerce','3.94.119.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 13:14:32','2019-11-24 13:14:32'),(5188,'economics','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 14:33:11','2019-11-24 14:33:11'),(5189,'commerce','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:06:24','2019-11-24 15:06:24'),(5190,'english','54.224.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 15:27:19','2019-11-24 15:27:19'),(5191,'chemistry','159.138.159.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 18:34:43','2020-01-29 06:08:04'),(5192,'physics','35.173.191.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:09:52','2019-11-24 19:09:52'),(5193,'englishlit','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 19:56:50','2019-11-24 19:56:50'),(5194,'mathematics','54.145.223.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 20:10:28','2019-11-24 20:10:28'),(5195,'geography','3.95.237.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:00:07','2019-11-24 22:00:07'),(5196,'chemistry','129.205.112.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 22:36:55','2019-11-24 22:36:55'),(5197,'mathematics','34.239.115.115',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-25 00:20:37'),(5198,'accounting','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5199,'geography','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5200,'economics','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:08','2019-11-24 23:57:08'),(5201,'insurance','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5202,'currentaffairs','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5203,'history','34.239.115.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-24 23:57:09','2019-11-24 23:57:09'),(5204,'government','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:14:49','2019-11-25 00:14:49'),(5205,'biology','34.239.115.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:26:53','2019-11-25 00:26:53'),(5206,'chemistry','91.242.162.34',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 00:29:05','2019-11-25 00:29:05'),(5207,'mathematics','54.161.28.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 01:18:44','2019-11-25 01:18:44'),(5208,'insurance','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:18:39','2019-11-25 02:18:39'),(5209,'english','18.232.60.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 02:50:26','2019-11-25 02:50:26'),(5210,'biology','3.80.24.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 13:54:57','2019-11-25 13:54:57'),(5211,'accounting','54.174.106.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:15:50','2019-11-25 22:15:50'),(5212,'chemistry','54.36.150.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-25 22:39:17','2019-11-25 22:39:17'),(5213,'chemistry','59.62.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:05:11','2019-11-26 00:05:11'),(5214,'biology','52.207.70.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 00:23:52','2019-11-26 00:23:52'),(5215,'currentaffairs','3.92.68.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 04:10:20','2019-11-26 04:10:20'),(5216,'biology','3.80.157.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 09:41:29','2019-11-26 09:41:29'),(5217,'currentaffairs','34.201.221.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 13:34:13','2019-11-26 13:34:13'),(5218,'biology','54.226.198.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 19:19:54','2019-11-26 19:19:54'),(5219,'currentaffairs','3.90.165.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-26 23:25:19','2019-11-26 23:25:19'),(5220,'irk','3.87.128.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 02:59:37','2019-11-27 02:59:37'),(5221,'chemistry','197.210.85.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 04:36:41','2019-11-27 04:36:41'),(5222,'chemistry','52.91.32.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 06:56:10','2019-11-27 06:56:10'),(5223,'chemistry','3.84.51.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 08:55:13','2019-11-27 08:55:13'),(5224,'englishlit','54.205.247.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 09:48:58','2019-11-27 09:48:58'),(5225,'biology','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 12:58:49','2019-11-27 12:58:49'),(5226,'irk','52.70.188.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 13:14:40','2019-11-27 13:14:40'),(5227,'insurance','54.198.168.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 14:09:50','2019-11-27 14:09:50'),(5228,'economics','52.90.222.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 17:06:53','2019-11-27 17:06:53'),(5229,'history','3.92.231.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 18:56:25','2019-11-27 18:56:25'),(5230,'chemistry','18.234.89.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:41:07','2019-11-27 19:41:07'),(5231,'chemistry','49.87.102.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 19:46:18','2019-11-27 19:46:18'),(5232,'accounting','54.161.90.236',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 20:54:04','2019-11-27 20:54:04'),(5233,'chemistry','27.214.192.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-27 23:04:04','2019-11-27 23:04:04'),(5234,'chemistry','34.230.10.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 01:37:13','2019-11-28 01:37:13'),(5235,'irk','18.209.6.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 04:53:50','2019-11-28 04:53:50'),(5236,'biology','3.82.192.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:53:14','2019-11-28 07:53:15'),(5237,'history','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:55:43','2019-11-28 07:55:43'),(5238,'commerce','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5239,'englishlit','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 07:56:50','2019-11-28 07:56:50'),(5240,'currentaffairs','3.82.192.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 08:20:01','2019-11-28 08:20:01'),(5241,'mathematics','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:18:07','2019-11-28 10:18:07'),(5242,'chemistry','105.112.55.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:31:45','2019-11-28 10:31:45'),(5243,'commerce','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 10:42:22','2019-11-28 10:42:22'),(5244,'crk','54.234.47.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 11:14:13','2019-11-28 11:14:13'),(5245,'economics','18.234.45.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 12:07:05','2019-11-28 12:07:05'),(5246,'commerce','52.200.202.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 14:58:46','2019-11-28 14:58:46'),(5247,'biology','41.190.3.204',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 16:57:43','2019-11-28 16:57:44'),(5248,'chemistry','54.36.148.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 17:06:02','2019-11-28 17:06:03'),(5249,'crk','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:31:30','2019-11-28 19:31:30'),(5250,'accounting','18.208.167.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-28 19:33:45','2019-11-28 19:33:45'),(5251,'economics','3.85.242.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:37'),(5252,'commerce','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:37','2019-11-29 01:33:38'),(5253,'accounting','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5254,'biology','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5255,'physics','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5256,'crk','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5257,'geography','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5258,'currentaffairs','3.85.242.109',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 01:33:38','2019-11-29 01:33:38'),(5259,'geography','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 06:56:30','2019-11-29 06:56:30'),(5260,'economics','54.234.172.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 07:23:58','2019-11-29 07:23:58'),(5261,'commerce','3.90.78.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 09:46:03','2019-11-29 09:46:03'),(5262,'crk','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 14:54:27','2019-11-29 14:54:27'),(5263,'english','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:32:55','2019-11-29 16:32:55'),(5264,'insurance','54.165.28.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 16:33:40','2019-11-29 16:33:40'),(5265,'biology','54.165.28.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 17:08:15','2019-11-29 17:13:52'),(5266,'englishlit','3.91.91.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-29 20:29:30','2019-11-29 20:29:30'),(5267,'chemistry','197.210.53.209',2,'','NG','','FCT','Lagos',NULL,'6.4541','3.3947','2019-11-29 22:14:15','2020-08-20 07:55:01'),(5268,'geography','3.80.133.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 00:24:52','2019-11-30 00:24:52'),(5269,'crk','54.144.64.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 03:05:17','2019-11-30 03:05:17'),(5270,'chemistry','141.0.13.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 04:28:46','2019-11-30 04:28:50'),(5271,'crk','34.235.132.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 09:54:43','2019-11-30 09:54:43'),(5272,'economics','3.84.73.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 14:56:44','2019-11-30 14:56:44'),(5273,'chemistry','54.196.143.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 15:46:01','2019-11-30 15:46:01'),(5274,'physics','174.129.162.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 17:01:07','2019-11-30 17:01:07'),(5275,'commerce','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:18:36','2019-11-30 19:18:36'),(5276,'englishlit','3.84.92.186',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:29:52','2019-11-30 19:36:20'),(5277,'english','3.84.92.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-11-30 19:34:16','2019-11-30 19:34:16'),(5278,'crk','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 02:44:38','2019-12-01 02:44:38'),(5279,'englishlit','3.88.192.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 03:14:33','2019-12-01 03:14:33'),(5280,'economics','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:41:42','2019-12-01 06:41:42'),(5281,'chemistry','54.160.210.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 06:51:45','2019-12-01 06:51:45'),(5282,'chemistry','207.46.13.30',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 08:20:41','2019-12-01 08:20:42'),(5283,'government','3.94.79.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 09:03:08','2019-12-01 09:03:08'),(5284,'chemistry','197.211.58.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 10:28:55','2019-12-01 10:28:55'),(5285,'english','3.83.92.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-01 13:54:48','2019-12-01 13:54:48'),(5286,'chemistry','182.247.60.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:04:17','2019-12-02 05:04:17'),(5287,'physics','18.212.94.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 05:51:40','2019-12-02 05:51:40'),(5288,'english','196.13.161.254',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:09:22','2019-12-02 11:11:49'),(5289,'chemistry','196.13.161.254',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:14:59','2019-12-02 12:04:31'),(5290,'currentaffairs','3.86.66.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 11:36:59','2019-12-02 11:36:59'),(5291,'chemistry','80.248.3.98',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 12:03:05','2019-12-02 12:03:05'),(5292,'currentaffairs','18.212.29.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 13:05:10','2019-12-02 13:05:10'),(5293,'civiledu','34.227.18.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:34:27','2019-12-02 16:34:27'),(5294,'chemistry','124.112.95.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 16:43:26','2019-12-02 16:43:26'),(5295,'english','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:15:18','2019-12-02 20:15:18'),(5296,'englishlit','3.89.156.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 20:44:03','2019-12-02 20:44:03'),(5297,'accounting','54.89.129.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-02 21:26:25','2019-12-02 21:26:25'),(5298,'chemistry','70.49.10.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 04:21:31','2019-12-03 04:21:32'),(5299,'english','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:12','2019-12-03 05:44:12'),(5300,'commerce','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5301,'accounting','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5302,'economics','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5303,'irk','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5304,'insurance','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5305,'history','34.228.64.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 05:44:13','2019-12-03 05:44:13'),(5306,'commerce','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5307,'accounting','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5308,'chemistry','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:14','2019-12-03 13:02:14'),(5309,'government','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5310,'geography','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5311,'civiledu','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5312,'history','54.167.217.245',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 13:02:15','2019-12-03 13:02:15'),(5313,'english','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5314,'commerce','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5315,'englishlit','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5316,'crk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:20'),(5317,'irk','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:20','2019-12-03 17:00:21'),(5318,'insurance','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5319,'currentaffairs','3.84.148.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 17:00:21','2019-12-03 17:00:21'),(5320,'irk','3.82.106.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 20:45:47','2019-12-03 20:45:47'),(5321,'mathematics','52.90.36.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-03 22:27:46','2019-12-03 22:27:46'),(5322,'government','54.152.243.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 01:01:26','2019-12-04 01:01:26'),(5323,'chemistry','207.46.13.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 03:26:32','2019-12-04 03:26:32'),(5324,'insurance','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 04:39:43','2019-12-04 04:39:43'),(5325,'chemistry','14.134.201.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:29:57','2019-12-04 06:29:57'),(5326,'chemistry','218.73.129.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:30:25','2019-12-04 06:30:25'),(5327,'commerce','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 06:53:13','2019-12-04 06:53:13'),(5328,'crk','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:05:20','2019-12-04 07:05:20'),(5329,'english','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 07:15:26','2019-12-04 07:15:26'),(5330,'mathematics','41.190.3.143',119,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:24:47','2019-12-05 00:11:26'),(5331,'biology','41.190.3.143',168,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 14:28:53','2019-12-05 12:00:11'),(5332,'chemistry','197.211.58.2',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:19:02','2019-12-04 15:19:02'),(5333,'currentaffairs','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:20:27','2019-12-04 15:20:27'),(5334,'mathematics','54.161.87.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 15:26:56','2019-12-04 15:26:56'),(5335,'chemistry','105.112.181.189',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:14:48','2019-12-04 17:14:58'),(5336,'geography','18.208.212.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 17:29:42','2019-12-04 17:29:42'),(5337,'english','41.190.3.143',91,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:55:40','2019-12-05 06:58:47'),(5338,'government','41.190.3.143',84,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:56:50','2019-12-05 06:41:34'),(5339,'commerce','41.190.3.143',175,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 18:57:42','2019-12-05 06:53:25'),(5340,'chemistry','41.190.3.143',140,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 19:01:13','2019-12-05 07:14:29'),(5341,'mathematics','54.172.178.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 20:35:24','2019-12-04 20:35:24'),(5342,'geography','54.172.178.184',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 21:08:09','2019-12-04 21:36:53'),(5343,'english','54.163.0.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-04 23:30:16','2019-12-04 23:30:16'),(5344,'geography','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:01:50','2019-12-05 01:01:50'),(5345,'history','54.83.91.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 01:18:02','2019-12-05 01:18:02'),(5346,'geography','204.236.206.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:22:32','2019-12-05 07:22:32'),(5347,'physics','54.86.78.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 07:59:42','2019-12-05 07:59:42'),(5348,'englishlit','54.172.67.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 09:02:59','2019-12-05 09:02:59'),(5349,'currentaffairs','3.91.46.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 10:24:47','2019-12-05 10:24:47'),(5350,'biology','174.129.108.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 14:55:19','2019-12-05 14:55:19'),(5351,'chemistry','105.112.179.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 17:00:52','2019-12-05 17:00:52'),(5352,'commerce','3.84.85.203',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:00:24','2019-12-05 18:23:26'),(5353,'english','3.84.85.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 18:44:01','2019-12-05 18:44:01'),(5354,'economics','3.88.46.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 19:56:33','2019-12-05 19:56:33'),(5355,'history','54.81.95.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 20:35:42','2019-12-05 20:35:42'),(5356,'chemistry','113.138.129.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:25','2019-12-05 21:06:25'),(5357,'chemistry','40.77.167.50',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 21:06:35','2019-12-05 21:06:35'),(5358,'mathematics','18.233.165.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-05 22:52:02','2019-12-05 22:52:02'),(5359,'englishlit','54.175.59.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 00:21:22','2019-12-06 00:21:22'),(5360,'chemistry','52.90.137.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 01:50:04','2019-12-06 01:50:04'),(5361,'geography','3.87.199.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 02:52:45','2019-12-06 02:52:45'),(5362,'mathematics','3.88.194.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 04:08:29','2019-12-06 04:08:29'),(5363,'government','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:32:21','2019-12-06 05:32:21'),(5364,'mathematics','3.80.86.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 05:40:15','2019-12-06 05:40:15'),(5365,'insurance','34.227.157.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 06:43:30','2019-12-06 06:43:30'),(5366,'physics','54.172.2.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 10:09:01','2019-12-06 10:09:01'),(5367,'biology','66.249.88.17',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 14:07:38','2020-02-15 20:12:28'),(5368,'chemistry','197.210.84.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:36:43','2019-12-06 18:36:43'),(5369,'crk','197.210.84.159',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-06 18:40:55','2019-12-06 19:11:31'),(5370,'biology','34.205.127.71',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5371,'biology','34.205.127.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 04:38:43','2019-12-07 04:38:43'),(5372,'accounting','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:12:45','2019-12-07 10:12:45'),(5373,'history','35.175.245.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:34:21','2019-12-07 10:34:21'),(5374,'chemistry','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5375,'englishlit','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5376,'government','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5377,'crk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:49','2019-12-07 10:58:49'),(5378,'irk','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5379,'civiledu','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5380,'currentaffairs','35.175.245.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-07 10:58:50','2019-12-07 10:58:50'),(5381,'irk','54.242.7.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 01:13:25','2019-12-08 01:13:25'),(5382,'englishlit','54.242.126.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 06:59:59','2019-12-08 06:59:59'),(5383,'chemistry','40.77.167.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 15:51:20','2019-12-08 15:51:20'),(5384,'chemistry','197.210.47.7',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:00:48','2019-12-08 16:00:49'),(5385,'chemistry','197.210.47.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 16:17:03','2019-12-08 16:17:03'),(5386,'insurance','54.152.41.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 17:44:29','2019-12-08 17:44:29'),(5387,'chemistry','93.158.161.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 18:45:52','2019-12-08 18:45:52'),(5388,'economics','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 19:54:55','2019-12-08 19:54:55'),(5389,'biology','54.147.207.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 20:26:43','2019-12-08 20:26:43'),(5390,'commerce','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5391,'english','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5392,'accounting','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5393,'accounting','3.82.25.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5394,'physics','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:42'),(5395,'biology','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:41','2019-12-08 22:50:41'),(5396,'geography','3.82.25.253',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5397,'economics','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5398,'crk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5399,'civiledu','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5400,'irk','3.82.25.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-08 22:50:42','2019-12-08 22:50:42'),(5401,'chemistry','40.77.167.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 00:56:26','2019-12-09 00:56:26'),(5402,'accounting','54.226.206.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 03:42:51','2019-12-09 03:42:51'),(5403,'history','52.206.133.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 04:25:20','2019-12-09 04:25:20'),(5404,'biology','54.173.252.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 05:46:38','2019-12-09 05:46:39'),(5405,'irk','18.234.114.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 11:05:35','2019-12-09 11:05:35'),(5406,'chemistry','54.36.148.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:28:12','2019-12-09 16:28:16'),(5407,'biology','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:39'),(5408,'englishlit','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:38','2019-12-09 16:29:38'),(5409,'crk','54.89.129.103',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:48:45'),(5410,'commerce','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5411,'economics','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5412,'irk','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5413,'physics','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5414,'chemistry','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5415,'insurance','54.89.129.103',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:40'),(5416,'currentaffairs','54.89.129.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 16:29:39','2019-12-09 16:29:39'),(5417,'commerce','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:17:25','2019-12-09 19:17:25'),(5418,'economics','54.221.166.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 19:32:29','2019-12-09 19:32:29'),(5419,'civiledu','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 22:44:39','2019-12-09 22:44:39'),(5420,'english','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:24','2019-12-09 23:12:24'),(5421,'geography','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:12:35','2019-12-09 23:12:35'),(5422,'chemistry','54.197.6.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-09 23:27:16','2019-12-09 23:27:16'),(5423,'chemistry','40.77.167.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:01:39','2019-12-10 00:01:39'),(5424,'accounting','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:03:12','2019-12-10 00:03:12'),(5425,'insurance','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 00:37:10','2019-12-10 00:37:10'),(5426,'crk','54.197.145.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 01:09:15','2019-12-10 01:09:15'),(5427,'chemistry','100.27.31.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 02:44:54','2019-12-10 02:44:54'),(5428,'commerce','54.237.164.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 04:47:40','2019-12-10 04:47:40'),(5429,'english','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:13:52','2019-12-10 06:13:52'),(5430,'geography','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:33:46','2019-12-10 06:33:46'),(5431,'economics','34.229.141.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 06:51:24','2019-12-10 06:51:24'),(5432,'accounting','54.242.54.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 07:57:03','2019-12-10 07:57:03'),(5433,'insurance','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:23:16','2019-12-10 09:23:16'),(5434,'chemistry','18.209.104.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 09:37:33','2019-12-10 09:37:33'),(5435,'crk','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:18:58','2019-12-10 10:18:58'),(5436,'englishlit','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 10:59:01','2019-12-10 10:59:01'),(5437,'government','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:19:21','2019-12-10 11:19:21'),(5438,'english','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 11:50:52','2019-12-10 11:50:52'),(5439,'geography','3.91.239.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:05:06','2019-12-10 12:05:06'),(5440,'irk','54.226.150.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 12:45:46','2019-12-10 12:45:46'),(5441,'commerce','3.90.68.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 13:50:00','2019-12-10 13:50:00'),(5442,'government','3.82.210.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 14:37:36','2019-12-10 14:37:36'),(5443,'crk','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:21:52','2019-12-10 15:21:52'),(5444,'economics','34.226.193.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 15:35:48','2019-12-10 15:35:48'),(5445,'currentaffairs','35.168.14.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 16:27:37','2019-12-10 16:27:37'),(5446,'geography','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:35:21','2019-12-10 20:35:21'),(5447,'economics','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:39:50','2019-12-10 20:39:50'),(5448,'accounting','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:37','2019-12-10 20:59:37'),(5449,'english','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 20:59:50','2019-12-10 20:59:50'),(5450,'crk','35.173.237.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-10 21:34:22','2019-12-10 21:34:22'),(5451,'englishlit','54.165.112.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 00:04:55','2019-12-11 00:04:55'),(5452,'government','34.201.143.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 03:16:18','2019-12-11 03:16:18'),(5453,'englishlit','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:53:05','2019-12-11 04:53:05'),(5454,'insurance','3.95.160.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 04:55:54','2019-12-11 04:55:54'),(5455,'chemistry','105.112.179.103',425,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 06:39:31','2019-12-11 07:10:00'),(5456,'mathematics','105.112.179.103',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:10:34','2019-12-11 07:10:34'),(5457,'mathematics','105.112.16.69',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:18:04','2019-12-11 07:18:48'),(5458,'chemistry','3.229.122.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 07:58:12','2019-12-11 09:05:40'),(5459,'geography','174.129.57.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 09:22:20','2019-12-11 09:22:20'),(5460,'crk','54.90.130.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 12:16:19','2019-12-11 12:16:19'),(5461,'chemistry','188.180.82.238',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 13:07:40','2019-12-11 13:09:06'),(5462,'chemistry','41.203.73.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 15:02:50','2019-12-11 15:02:50'),(5463,'chemistry','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 22:51:11','2019-12-11 22:51:11'),(5464,'accounting','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:23:14','2019-12-11 23:23:14'),(5465,'englishlit','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-11 23:52:10','2019-12-11 23:52:10'),(5466,'physics','3.95.63.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 00:19:17','2019-12-12 00:19:17'),(5467,'commerce','54.197.2.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 01:28:00','2019-12-12 01:28:00'),(5468,'englishlit','3.93.184.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 03:07:29','2019-12-12 03:07:29'),(5469,'crk','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 09:35:33','2019-12-12 09:35:33'),(5470,'english','18.209.36.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 11:09:56','2019-12-12 11:09:56'),(5471,'chemistry','34.228.199.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 13:40:09','2019-12-12 13:40:09'),(5472,'englishlit','3.85.74.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 14:21:15','2019-12-12 14:21:15'),(5473,'chemistry','100.27.31.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 16:34:32','2019-12-12 16:34:32'),(5474,'government','54.236.209.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 19:00:46','2019-12-12 19:00:46'),(5475,'crk','18.205.239.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:05:15','2019-12-12 20:05:15'),(5476,'crk','197.210.84.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 20:31:16','2019-12-12 20:40:53'),(5477,'economics','34.239.182.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 21:01:23','2019-12-12 21:01:23'),(5478,'english','54.172.192.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-12 23:30:27','2019-12-12 23:30:27'),(5479,'chemistry','40.77.167.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 02:15:26','2019-12-13 02:15:26'),(5480,'chemistry','114.229.7.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 03:41:13','2019-12-13 03:41:13'),(5481,'chemistry','105.112.80.5',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 08:56:22','2019-12-13 08:56:45'),(5482,'mathematics','34.203.244.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 09:11:37','2019-12-13 09:11:37'),(5483,'physics','110.44.121.20',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 10:10:52','2019-12-13 10:10:53'),(5484,'chemistry','105.112.24.37',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:15:54','2019-12-13 11:15:55'),(5485,'mathematics','105.112.179.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:03','2019-12-13 11:29:48'),(5486,'physics','105.112.179.227',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 11:24:26','2019-12-13 11:30:06'),(5487,'physics','3.93.52.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 12:46:32','2019-12-13 12:46:32'),(5488,'history','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:34','2019-12-13 21:12:28'),(5489,'currentaffairs','129.205.112.254',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:39','2019-12-13 21:09:28'),(5490,'chemistry','129.205.112.254',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:44','2019-12-13 21:12:08'),(5491,'mathematics','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:54','2019-12-13 21:11:38'),(5492,'government','129.205.112.254',16,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:57:59','2019-12-13 21:11:53'),(5493,'physics','129.205.112.254',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:04','2019-12-13 21:12:23'),(5494,'englishlit','129.205.112.254',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:09','2019-12-13 21:12:13'),(5495,'economics','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:15','2019-12-13 21:12:38'),(5496,'commerce','129.205.112.254',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:40','2019-12-13 21:12:33'),(5497,'english','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:47','2019-12-13 21:11:28'),(5498,'accounting','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:58:50','2019-12-13 21:10:34'),(5499,'geography','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:30','2019-12-13 21:10:38'),(5500,'crk','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 14:59:35','2019-12-13 21:11:58'),(5501,'irk','129.205.112.254',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:15','2019-12-13 21:09:43'),(5502,'biology','129.205.112.254',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:00:30','2019-12-13 21:12:18'),(5503,'insurance','129.205.112.254',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:01:20','2019-12-13 21:13:30'),(5504,'civiledu','129.205.112.254',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 15:03:35','2019-12-13 21:11:03'),(5505,'currentaffairs','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 18:57:39','2019-12-13 18:57:39'),(5506,'currentaffairs','54.226.13.59',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 19:41:05','2019-12-13 19:41:05'),(5507,'mathematics','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 20:26:39','2019-12-13 20:26:39'),(5508,'civiledu','3.83.131.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-13 23:08:17','2019-12-13 23:08:17'),(5509,'englishlit','54.163.205.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 02:02:08','2019-12-14 02:02:08'),(5510,'english','3.84.191.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:05:13','2019-12-14 03:05:13'),(5511,'physics','105.112.178.117',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:10:23','2019-12-14 03:22:06'),(5512,'biology','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:35:59','2019-12-14 03:40:01'),(5513,'accounting','105.112.177.67',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:37:14','2019-12-14 03:40:02'),(5514,'mathematics','105.112.177.67',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:11','2019-12-14 03:40:22'),(5515,'physics','105.112.177.67',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 03:38:58','2019-12-14 03:44:29'),(5516,'accounting','54.161.196.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:12:59','2019-12-14 04:12:59'),(5517,'mathematics','105.112.177.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:16:55','2019-12-14 04:16:55'),(5518,'mathematics','105.112.179.177',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:17:37','2019-12-14 04:17:38'),(5519,'chemistry','58.19.12.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:18:56','2019-12-14 04:18:56'),(5520,'mathematics','105.112.176.112',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 04:39:57','2019-12-14 04:44:54'),(5521,'mathematics','105.112.23.162',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:29:29','2019-12-14 05:38:43'),(5522,'mathematics','105.112.178.10',110,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 05:40:14','2019-12-14 06:24:21'),(5523,'english','105.112.178.10',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:20:57','2019-12-14 06:20:58'),(5524,'physics','105.112.178.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:22:14','2019-12-14 06:23:31'),(5525,'mathematics','105.112.176.255',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 06:48:33','2019-12-14 06:54:19'),(5526,'mathematics','105.112.177.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:16:27','2019-12-14 07:52:21'),(5527,'physics','105.112.177.210',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 07:18:35','2019-12-14 07:19:49'),(5528,'mathematics','34.229.0.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 14:14:24','2019-12-14 14:14:24'),(5529,'chemistry','3.94.129.211',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:29:03','2019-12-14 18:49:30'),(5530,'crk','3.82.19.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 18:54:57','2019-12-14 18:54:57'),(5531,'mathematics','105.112.74.0',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:40:25','2019-12-14 19:50:59'),(5532,'mathematics','105.112.178.125',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 19:55:19','2019-12-14 19:57:26'),(5533,'english','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:42'),(5534,'accounting','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:42','2019-12-14 21:43:43'),(5535,'government','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5536,'crk','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5537,'economics','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5538,'insurance','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5539,'currentaffairs','54.167.240.157',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-14 21:43:43','2019-12-14 21:43:43'),(5540,'mathematics','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 02:56:53','2019-12-15 02:56:53'),(5541,'irk','3.90.113.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 03:08:39','2019-12-15 03:08:39'),(5542,'mathematics','105.112.24.144',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 05:33:44','2019-12-15 05:33:44'),(5543,'mathematics','105.112.24.123',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:27:08','2019-12-15 06:28:35'),(5544,'biology','105.112.24.123',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 06:28:39','2019-12-15 06:28:39'),(5545,'commerce','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:52:53','2019-12-15 07:52:53'),(5546,'government','34.228.196.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 07:53:27','2019-12-15 07:53:27'),(5547,'mathematics','105.112.75.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:03:20','2019-12-15 08:03:20'),(5548,'mathematics','105.112.178.111',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:24:49','2019-12-15 08:24:49'),(5549,'chemistry','89.163.242.18',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:57:38','2019-12-15 08:57:38'),(5550,'mathematics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 08:59:24','2019-12-15 09:11:12'),(5551,'commerce','105.112.16.234',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:01:55','2019-12-15 09:05:33'),(5552,'englishlit','105.112.16.234',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:05:43','2019-12-15 09:05:44'),(5553,'economics','105.112.16.234',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 09:07:37','2019-12-15 09:09:01'),(5554,'mathematics','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:32'),(5555,'commerce','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:32','2019-12-15 10:23:33'),(5556,'accounting','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5557,'englishlit','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5558,'crk','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5559,'geography','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5560,'currentaffairs','18.206.121.254',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:23:33','2019-12-15 10:23:33'),(5561,'insurance','18.206.121.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 10:44:42','2019-12-15 10:44:42'),(5562,'mathematics','197.210.44.70',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 11:39:41','2019-12-15 11:40:19'),(5563,'english','54.226.135.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 13:31:12','2019-12-15 13:31:12'),(5564,'crk','34.207.159.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 14:25:42','2019-12-15 14:25:42'),(5565,'chemistry','197.210.8.204',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:09:00','2019-12-15 15:09:49'),(5566,'mathematics','105.112.181.210',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 15:31:11','2019-12-15 15:31:12'),(5567,'chemistry','197.211.58.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 16:28:08','2019-12-15 16:28:08'),(5568,'civiledu','107.22.61.177',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 21:18:49','2019-12-15 21:18:49'),(5569,'mathematics','34.207.214.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-15 22:16:18','2019-12-15 22:16:18'),(5570,'geography','18.206.180.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 00:01:24','2019-12-16 00:01:24'),(5571,'accounting','3.95.7.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 01:08:36','2019-12-16 01:08:36'),(5572,'chemistry','105.112.99.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:48:06','2019-12-16 04:48:06'),(5573,'geography','34.207.88.147',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 04:49:45','2019-12-16 08:10:20'),(5574,'mathematics','105.112.24.13',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 05:19:46','2019-12-16 05:19:46'),(5575,'english','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:18:08','2019-12-16 06:18:08'),(5576,'geography','34.228.192.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 06:30:45','2019-12-16 06:30:45'),(5577,'chemistry','105.112.30.62',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 11:31:31','2019-12-16 11:34:57'),(5578,'chemistry','207.46.13.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 12:26:05','2019-12-16 12:26:05'),(5579,'physics','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 16:53:46','2019-12-16 16:53:46'),(5580,'englishlit','18.234.186.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 17:13:34','2019-12-16 17:13:34'),(5581,'geography','3.92.69.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 18:41:59','2019-12-16 18:41:59'),(5582,'biology','52.202.45.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 21:27:25','2019-12-16 21:27:25'),(5583,'currentaffairs','3.95.195.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 22:56:29','2019-12-16 22:56:29'),(5584,'economics','3.81.134.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-16 23:46:29','2019-12-16 23:46:29'),(5585,'commerce','54.164.27.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 00:54:33','2019-12-17 00:54:33'),(5586,'commerce','3.92.4.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 04:14:33','2019-12-17 04:14:33'),(5587,'chemistry','197.210.61.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 06:57:40','2019-12-17 06:57:40'),(5588,'chemistry','102.134.114.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:37','2019-12-17 07:45:37'),(5589,'mathematics','102.134.114.193',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 07:45:57','2019-12-17 07:47:44'),(5590,'mathematics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:30:56','2019-12-17 08:30:56'),(5591,'physics','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:32:55','2019-12-17 08:32:55'),(5592,'englishlit','3.84.245.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 08:58:40','2019-12-17 08:58:40'),(5593,'chemistry','151.80.39.216',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:17:12','2019-12-30 07:30:25'),(5594,'chemistry','151.80.39.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:23:31','2019-12-17 09:23:31'),(5595,'chemistry','5.196.87.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:30:13','2020-01-07 19:20:55'),(5596,'chemistry','151.80.39.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 09:39:21','2019-12-17 09:45:56'),(5597,'geography','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:13:13','2019-12-17 10:13:13'),(5598,'government','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:29:20','2019-12-17 10:29:20'),(5599,'mathematics','34.228.212.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 10:55:34','2019-12-17 10:55:34'),(5600,'mathematics','105.112.178.120',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:24:11','2019-12-17 13:24:11'),(5601,'english','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:31:22','2019-12-17 13:31:22'),(5602,'insurance','34.227.80.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 13:39:48','2019-12-17 13:39:48'),(5603,'mathematics','105.112.23.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:00:33','2019-12-17 14:00:33'),(5604,'history','54.91.62.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 14:51:56','2019-12-17 14:51:56'),(5605,'chemistry','106.56.38.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 21:15:06','2019-12-17 21:15:06'),(5606,'chemistry','182.110.22.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-17 22:30:20','2019-12-17 22:30:20'),(5607,'geography','54.204.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 00:38:06','2019-12-18 00:38:06'),(5608,'chemistry','154.120.93.60',252,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:40:21','2019-12-18 06:53:13'),(5609,'english','154.120.93.60',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:48:52','2019-12-18 06:48:55'),(5610,'mathematics','154.120.93.60',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 06:53:33','2019-12-18 06:53:56'),(5611,'chemistry','197.210.65.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:44','2019-12-18 07:42:44'),(5612,'chemistry','197.210.64.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 07:42:51','2019-12-18 07:42:51'),(5613,'accounting','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 09:13:48','2019-12-18 09:13:48'),(5614,'chemistry','197.210.227.76',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:32:30','2019-12-18 13:51:25'),(5615,'chemistry','197.210.226.124',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:33:10','2019-12-19 08:29:25'),(5616,'chemistry','197.210.227.42',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:50:23','2019-12-18 13:52:09'),(5617,'mathematics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5618,'commerce','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5619,'physics','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5620,'englishlit','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5621,'crk','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:03','2019-12-18 13:53:03'),(5622,'currentaffairs','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5623,'history','197.210.227.42',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:53:04','2019-12-18 13:53:04'),(5624,'english','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5625,'accounting','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:06'),(5626,'biology','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:06','2019-12-18 13:54:07'),(5627,'englishlit','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5628,'geography','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5629,'irk','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5630,'insurance','197.210.227.76',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 13:54:07','2019-12-18 13:54:07'),(5631,'chemistry','69.30.213.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-18 14:31:25','2019-12-18 14:31:25'),(5632,'physics','105.112.176.201',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 05:24:23','2019-12-19 05:24:23'),(5633,'chemistry','5.189.172.182',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:05:46','2019-12-19 07:06:30'),(5634,'government','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:12:43','2019-12-19 07:12:43'),(5635,'history','54.236.9.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 07:33:41','2019-12-19 07:33:41'),(5636,'irk','52.91.34.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 09:17:34','2019-12-19 09:17:34'),(5637,'englishlit','54.88.253.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 10:35:04','2019-12-19 10:35:04'),(5638,'economics','105.112.177.36',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:42:18','2019-12-19 16:42:19'),(5639,'chemistry','105.112.177.36',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 16:43:25','2019-12-19 16:45:28'),(5640,'chemistry','105.112.177.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:02:16','2019-12-19 17:02:16'),(5641,'commerce','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:40:56','2019-12-19 17:40:56'),(5642,'biology','41.190.2.5',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 17:43:13','2019-12-19 17:43:13'),(5643,'mathematics','197.210.53.166',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-19 18:09:35','2019-12-19 18:09:35'),(5644,'insurance','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:04:27','2019-12-20 01:04:27'),(5645,'biology','54.226.169.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 01:31:54','2019-12-20 01:31:54'),(5646,'economics','54.146.230.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 05:50:03','2019-12-20 05:50:03'),(5647,'history','3.85.190.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 07:45:09','2019-12-20 07:45:09'),(5648,'history','54.80.62.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 08:26:39','2019-12-20 08:26:39'),(5649,'accounting','54.198.39.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:15:34','2019-12-20 10:15:34'),(5650,'chemistry','197.210.61.37',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 10:58:34','2019-12-20 11:00:32'),(5651,'englishlit','34.202.161.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 15:24:52','2019-12-20 15:24:52'),(5652,'chemistry','3.85.93.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 16:07:34','2019-12-20 16:07:34'),(5653,'irk','3.87.205.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-20 21:37:02','2019-12-20 21:37:02'),(5654,'economics','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:05:01','2019-12-21 03:05:01'),(5655,'crk','54.236.159.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 03:09:00','2019-12-21 03:09:00'),(5656,'chemistry','41.190.31.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 06:38:03','2019-12-21 06:38:04'),(5657,'commerce','54.234.19.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 07:41:34','2019-12-21 07:41:34'),(5658,'chemistry','154.120.111.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:08:50','2019-12-21 08:08:50'),(5659,'chemistry','207.46.13.100',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 08:11:14','2019-12-21 08:11:14'),(5660,'accounting','3.82.104.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:03:47','2019-12-21 09:03:47'),(5661,'english','154.120.82.204',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 09:45:44','2019-12-21 09:45:44'),(5662,'crk','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 10:54:28','2019-12-21 10:54:28'),(5663,'history','3.80.217.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:24:32','2019-12-21 11:24:32'),(5664,'chemistry','197.210.71.189',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 11:53:25','2019-12-21 11:55:06'),(5665,'economics','54.234.34.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:08:12','2019-12-21 17:08:12'),(5666,'chemistry','196.220.136.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 17:23:29','2019-12-21 17:23:29'),(5667,'government','52.200.198.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 19:00:57','2019-12-21 19:00:57'),(5668,'chemistry','54.145.127.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 20:50:25','2019-12-21 20:50:25'),(5669,'geography','34.239.125.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 22:50:03','2019-12-21 22:50:03'),(5670,'economics','54.144.125.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-21 23:56:36','2019-12-21 23:56:36'),(5671,'commerce','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:51:11','2019-12-22 00:51:11'),(5672,'government','35.175.249.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 00:59:35','2019-12-22 00:59:35'),(5673,'insurance','54.82.100.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 06:04:36','2019-12-22 06:04:36'),(5674,'economics','3.91.31.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:14:42','2019-12-22 07:14:42'),(5675,'crk','100.24.16.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 07:56:40','2019-12-22 07:56:40'),(5676,'englishlit','54.174.249.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 12:39:37','2019-12-22 12:39:37'),(5677,'chemistry','106.57.151.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 14:24:18','2019-12-22 14:24:18'),(5678,'chemistry','58.62.85.244',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 15:07:13','2019-12-22 15:07:13'),(5679,'chemistry','113.121.210.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 16:19:36','2019-12-22 16:19:36'),(5680,'chemistry','197.211.58.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 18:58:28','2019-12-22 18:58:28'),(5681,'crk','18.208.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 19:35:12','2019-12-22 19:35:12'),(5682,'english','52.91.199.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 20:40:32','2019-12-22 20:40:32'),(5683,'crk','54.197.16.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-22 22:29:28','2019-12-22 22:29:28'),(5684,'chemistry','207.46.13.32',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 05:30:59','2019-12-23 19:53:30'),(5685,'chemistry','41.58.249.101',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 07:32:16','2019-12-23 07:41:55'),(5686,'accounting','3.88.176.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 08:35:37','2019-12-23 08:35:37'),(5687,'chemistry','52.207.237.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 10:59:07','2019-12-23 10:59:07'),(5688,'physics','54.90.171.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 12:33:14','2019-12-23 12:33:14'),(5689,'englishlit','3.94.55.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 14:39:35','2019-12-23 14:39:35'),(5690,'chemistry','105.112.24.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 16:46:27','2019-12-23 16:46:27'),(5691,'english','34.230.73.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 17:01:58','2019-12-23 17:01:58'),(5692,'englishlit','3.81.216.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 21:28:10','2019-12-23 21:28:10'),(5693,'currentaffairs','107.22.114.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-23 22:06:26','2019-12-23 22:06:26'),(5694,'englishlit','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:36:52','2019-12-24 00:36:52'),(5695,'crk','107.23.254.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 00:42:20','2019-12-24 00:42:20'),(5696,'chemistry','3.88.226.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 02:28:27','2019-12-24 02:28:27'),(5697,'economics','18.212.81.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 03:34:43','2019-12-24 03:34:43'),(5698,'government','3.84.146.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 04:34:22','2019-12-24 04:34:22'),(5699,'crk','54.89.84.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 07:50:50','2019-12-24 07:50:50'),(5700,'chemistry','41.203.73.248',604,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:03:43','2019-12-24 09:45:17'),(5701,'english','41.203.73.248',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:12:17','2019-12-24 09:12:20'),(5702,'mathematics','41.203.73.248',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 09:29:46','2019-12-24 09:32:59'),(5703,'chemistry','41.203.73.144',121,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-24 10:18:01','2019-12-24 11:28:03'),(5704,'physics','41.203.73.144',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 11:28:36','2019-12-24 11:28:39'),(5705,'english','54.234.136.92',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 11:35:59','2019-12-24 11:35:59'),(5706,'english','108.173.207.253',10,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2019-12-24 18:30:37','2019-12-24 18:32:01'),(5707,'english','54.86.42.151',1,'',NULL,'',NULL,NULL,NULL,'','','2019-12-24 19:06:22','2019-12-24 19:06:22'),(5708,'physics','54.162.161.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 02:38:17','2019-12-25 02:38:17'),(5709,'currentaffairs','54.158.129.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 09:00:12','2019-12-25 09:00:12'),(5710,'currentaffairs','34.201.150.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 10:02:21','2019-12-25 10:02:21'),(5711,'chemistry','197.211.58.122',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 12:27:20','2019-12-25 12:27:41'),(5712,'civiledu','184.72.131.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 14:01:27','2019-12-25 14:01:27'),(5713,'english','41.190.31.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:21:37','2019-12-25 17:21:37'),(5714,'english','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 17:51:12','2019-12-25 17:51:12'),(5715,'accounting','18.206.252.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 18:07:03','2019-12-25 18:07:03'),(5716,'englishlit','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-25 19:07:55','2019-12-25 19:07:55'),(5717,'commerce','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:07','2019-12-26 09:45:08'),(5718,'chemistry','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5719,'englishlit','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5720,'government','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5721,'geography','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5722,'irk','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5723,'insurance','54.161.140.73',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 09:45:08','2019-12-26 09:45:08'),(5724,'chemistry','197.210.53.171',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:00','2019-12-26 11:07:17'),(5725,'chemistry','197.210.52.12',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:37','2020-04-07 18:47:51'),(5726,'chemistry','197.210.53.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 10:58:49','2019-12-26 10:58:49'),(5727,'chemistry','159.138.149.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:12','2019-12-26 12:40:12'),(5728,'chemistry','159.138.158.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:19','2019-12-26 12:40:19'),(5729,'chemistry','159.138.155.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:40','2019-12-26 12:40:40'),(5730,'chemistry','159.138.157.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:40:42','2019-12-26 12:40:42'),(5731,'chemistry','159.138.153.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:37','2019-12-26 12:41:37'),(5732,'chemistry','159.138.148.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 12:41:39','2019-12-26 12:41:39'),(5733,'chemistry','40.77.167.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 16:52:21','2019-12-26 16:52:21'),(5734,'chemistry','151.80.39.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 18:13:53','2019-12-26 18:13:53'),(5735,'mathematics','54.92.139.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 19:28:36','2019-12-26 19:28:36'),(5736,'commerce','3.83.25.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 21:13:20','2019-12-26 21:13:20'),(5737,'government','3.86.200.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-26 22:19:35','2019-12-26 22:19:35'),(5738,'insurance','54.236.119.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 01:39:51','2019-12-27 01:39:51'),(5739,'english','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:11:47','2019-12-27 04:11:47'),(5740,'crk','3.85.225.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 04:17:19','2019-12-27 04:17:19'),(5741,'mathematics','105.112.18.136',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 08:38:34','2019-12-27 08:38:35'),(5742,'civiledu','52.4.139.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 11:24:11','2019-12-27 11:24:11'),(5743,'mathematics','52.70.132.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:02:50','2019-12-27 12:02:50'),(5744,'chemistry','54.36.149.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 12:04:00','2019-12-27 12:04:00'),(5745,'geography','34.229.11.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 15:04:56','2019-12-27 15:04:56'),(5746,'economics','54.82.208.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 17:32:43','2019-12-27 17:32:43'),(5747,'geography','3.95.176.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 18:44:54','2019-12-27 18:44:54'),(5748,'chemistry','41.203.73.152',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:28:07','2019-12-28 05:58:59'),(5749,'geography','18.232.139.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:38:53','2019-12-27 19:38:53'),(5750,'chemistry','207.46.13.72',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 19:58:11','2019-12-27 19:58:11'),(5751,'english','18.212.225.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 21:36:45','2019-12-27 21:36:45'),(5752,'geography','3.81.112.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-27 22:26:48','2019-12-27 22:26:48'),(5753,'englishlit','3.95.29.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 07:09:48','2019-12-28 07:09:48'),(5754,'geography','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 08:46:11','2019-12-28 08:46:11'),(5755,'chemistry','157.55.39.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:01:00','2019-12-28 13:56:07'),(5756,'physics','54.205.12.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:07:43','2019-12-28 09:07:43'),(5757,'currentaffairs','3.90.16.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 09:52:08','2019-12-28 09:52:08'),(5758,'chemistry','198.27.70.196',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 13:04:37','2019-12-28 13:05:18'),(5759,'economics','54.208.246.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 16:54:27','2019-12-28 16:54:27'),(5760,'physics','3.90.201.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 21:17:55','2019-12-28 21:17:55'),(5761,'englishlit','54.88.31.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-28 22:11:00','2019-12-28 22:11:00'),(5762,'chemistry','46.229.168.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 00:53:10','2019-12-29 00:53:10'),(5763,'mathematics','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 01:48:09','2019-12-29 01:48:09'),(5764,'geography','3.87.169.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:00:13','2019-12-29 02:00:13'),(5765,'government','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 02:45:45','2019-12-29 02:45:45'),(5766,'mathematics','107.22.18.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 03:11:26','2019-12-29 03:11:26'),(5767,'mathematics','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:29:09','2019-12-29 04:29:09'),(5768,'insurance','52.207.238.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 04:50:21','2019-12-29 04:50:21'),(5769,'accounting','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 06:48:58','2019-12-29 06:48:58'),(5770,'history','54.92.199.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 07:05:29','2019-12-29 07:05:29'),(5771,'geography','18.212.192.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 14:35:59','2019-12-29 14:35:59'),(5772,'chemistry','159.138.157.248',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 15:56:34','2019-12-29 15:56:34'),(5773,'chemistry','159.138.156.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:52','2019-12-29 16:06:52'),(5774,'chemistry','159.138.156.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:06:54','2019-12-29 16:06:54'),(5775,'chemistry','159.138.151.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:08','2019-12-29 16:17:08'),(5776,'chemistry','159.138.155.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 16:17:10','2019-12-29 16:17:10'),(5777,'chemistry','54.173.230.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 17:07:40','2019-12-29 17:07:40'),(5778,'chemistry','77.88.5.57',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 20:09:09','2020-02-17 06:41:03'),(5779,'chemistry','105.112.37.95',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-29 22:46:03','2019-12-29 22:48:25'),(5780,'accounting','54.162.107.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 00:28:34','2019-12-30 00:28:34'),(5781,'chemistry','5.196.87.181',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:24:52','2019-12-30 07:24:52'),(5782,'chemistry','5.196.87.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:28:37','2019-12-30 07:28:37'),(5783,'chemistry','151.80.39.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 07:31:37','2019-12-30 07:31:37'),(5784,'history','3.80.177.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 10:00:20','2019-12-30 10:00:20'),(5785,'chemistry','41.87.80.10',177,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:52:05','2020-01-03 12:40:11'),(5786,'english','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:05','2020-01-03 09:47:26'),(5787,'biology','41.87.80.10',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 11:54:35','2020-01-06 10:18:55'),(5788,'physics','41.87.80.10',238,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 12:26:15','2020-01-14 13:07:03'),(5789,'chemistry','197.210.71.107',112,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-30 18:08:04','2019-12-30 21:50:09'),(5790,'government','54.227.176.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 01:11:30','2019-12-31 01:11:30'),(5791,'englishlit','107.22.1.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 02:42:52','2019-12-31 02:42:52'),(5792,'geography','41.87.80.10',22,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:35','2020-01-03 09:11:05'),(5793,'mathematics','41.87.80.10',29,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 10:28:42','2020-01-03 12:40:26'),(5794,'commerce','41.87.80.10',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 11:27:07','2019-12-31 15:11:01'),(5795,'physics','197.210.85.161',24,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:01','2019-12-31 21:44:09'),(5796,'geography','197.210.85.161',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:36','2019-12-31 21:17:50'),(5797,'commerce','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:24:39','2019-12-31 17:35:25'),(5798,'biology','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:27:53','2019-12-31 17:50:46'),(5799,'mathematics','197.210.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:22','2019-12-31 17:35:22'),(5800,'english','197.210.85.161',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 17:35:50','2019-12-31 17:50:42'),(5801,'chemistry','197.210.85.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 19:06:57','2019-12-31 21:19:14'),(5802,'biology','54.89.212.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 20:08:07','2019-12-31 20:08:07'),(5803,'history','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:24:33','2019-12-31 21:24:33'),(5804,'insurance','54.175.216.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 21:51:19','2019-12-31 21:51:19'),(5805,'economics','3.83.156.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2019-12-31 23:11:47','2019-12-31 23:11:47'),(5806,'economics','54.159.177.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 00:29:53','2020-01-01 00:29:53'),(5807,'history','34.235.146.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 02:22:24','2020-01-01 02:22:24'),(5808,'physics','197.210.70.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:22:07','2020-01-01 06:22:07'),(5809,'accounting','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 06:52:22','2020-01-01 06:52:22'),(5810,'chemistry','3.93.188.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 07:22:30','2020-01-01 07:22:30'),(5811,'history','3.82.145.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 12:16:11','2020-01-01 12:16:11'),(5812,'physics','197.210.64.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:45','2020-01-01 13:42:45'),(5813,'geography','197.210.65.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 13:42:52','2020-01-01 13:42:52'),(5814,'physics','197.210.47.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:07:21','2020-01-01 14:07:21'),(5815,'irk','3.86.222.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 14:39:17','2020-01-01 14:39:17'),(5816,'crk','54.173.160.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 19:37:03','2020-01-01 19:37:03'),(5817,'economics','54.81.159.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 20:29:55','2020-01-01 20:29:55'),(5818,'commerce','34.207.138.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-01 23:01:12','2020-01-01 23:01:12'),(5819,'crk','3.84.24.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 04:49:38','2020-01-02 04:49:38'),(5820,'chemistry','197.210.227.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:20:08','2020-01-02 05:20:08'),(5821,'chemistry','197.210.226.177',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:22:40','2020-01-02 05:23:22'),(5822,'chemistry','197.210.227.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 05:23:39','2020-01-02 05:24:16'),(5823,'accounting','3.81.217.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 06:18:28','2020-01-02 06:18:28'),(5824,'economics','3.84.17.230',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 10:40:34','2020-01-02 10:40:34'),(5825,'chemistry','159.138.152.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:40','2020-01-02 11:34:40'),(5826,'chemistry','159.138.154.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 11:34:41','2020-01-02 11:34:41'),(5827,'chemistry','159.138.149.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:19','2020-01-02 13:42:19'),(5828,'chemistry','159.138.155.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:42:22','2020-01-02 13:42:22'),(5829,'english','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:16','2020-01-02 13:48:16'),(5830,'chemistry','197.210.53.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:29','2020-01-02 13:48:29'),(5831,'biology','197.210.53.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 13:48:54','2020-01-02 13:48:54'),(5832,'chemistry','40.77.167.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 14:52:08','2020-01-02 14:52:08'),(5833,'chemistry','173.252.87.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:12:40','2020-01-02 15:12:40'),(5834,'chemistry','105.112.96.67',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:14:54','2020-01-02 15:15:27'),(5835,'government','54.159.7.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 15:23:11','2020-01-02 15:23:11'),(5836,'chemistry','197.210.29.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:01:48','2020-01-02 16:01:48'),(5837,'chemistry','54.198.147.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 16:20:52','2020-01-02 16:20:52'),(5838,'geography','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:21:06','2020-01-02 18:21:06'),(5839,'government','184.72.196.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 18:53:06','2020-01-02 18:53:06'),(5840,'chemistry','141.0.12.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:46:34','2020-01-02 19:46:34'),(5841,'chemistry','54.36.148.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 19:54:13','2020-01-02 19:54:13'),(5842,'chemistry','107.167.116.51',81,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:22:38','2020-01-02 20:56:21'),(5843,'chemistry','69.171.251.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:25:00','2020-01-02 20:25:00'),(5844,'chemistry','173.252.95.39',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:27:00','2020-01-02 20:27:01'),(5845,'chemistry','105.112.107.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:44:23','2020-01-02 20:44:23'),(5846,'chemistry','197.210.85.199',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:48:24','2020-01-02 21:10:22'),(5847,'chemistry','173.252.127.12',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 20:56:49','2020-01-02 20:56:52'),(5848,'physics','107.167.107.19',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:06:13','2020-01-02 23:06:17'),(5849,'physics','105.112.121.61',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:07:14','2020-01-02 23:08:11'),(5850,'physics','107.167.107.16',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:19','2020-01-02 23:12:21'),(5851,'physics','105.112.112.87',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:12:44','2020-01-02 23:12:47'),(5852,'commerce','18.206.201.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-02 23:19:52','2020-01-02 23:19:52'),(5853,'economics','50.19.154.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:46:41','2020-01-03 01:31:33'),(5854,'accounting','50.19.154.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 00:56:30','2020-01-03 00:56:30'),(5855,'crk','3.82.121.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 03:17:13','2020-01-03 03:17:13'),(5856,'insurance','54.147.100.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 05:01:58','2020-01-03 05:01:58'),(5857,'mathematics','105.112.177.41',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 07:28:37','2020-01-03 07:28:38'),(5858,'accounting','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:14:39','2020-01-03 09:14:39'),(5859,'englishlit','34.239.184.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:40:09','2020-01-03 09:40:09'),(5860,'chemistry','173.252.127.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5861,'chemistry','173.252.127.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 09:55:53','2020-01-03 09:55:53'),(5862,'chemistry','69.171.251.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 10:12:20','2020-01-03 10:12:20'),(5863,'english','52.23.234.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 11:11:09','2020-01-03 11:11:09'),(5864,'chemistry','54.36.149.6',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 12:32:58','2020-01-03 12:32:58'),(5865,'chemistry','173.252.127.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5866,'chemistry','173.252.127.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 15:53:07','2020-01-03 15:53:07'),(5867,'accounting','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:47:56','2020-01-03 22:47:56'),(5868,'crk','3.94.192.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-03 22:59:55','2020-01-03 22:59:55'),(5869,'crk','18.234.186.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 00:39:01','2020-01-04 00:39:01'),(5870,'accounting','52.206.79.47',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 01:50:47','2020-01-04 01:50:47'),(5871,'mathematics','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5872,'commerce','3.83.117.183',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:17'),(5873,'accounting','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:14','2020-01-04 04:27:14'),(5874,'englishlit','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5875,'crk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5876,'irk','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5877,'civiledu','3.83.117.183',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 04:27:15','2020-01-04 04:27:15'),(5878,'chemistry','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:25:30','2020-01-04 07:25:30'),(5879,'physics','18.234.234.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 07:54:21','2020-01-04 07:54:21'),(5880,'accounting','54.211.18.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 08:33:09','2020-01-04 08:33:09'),(5881,'englishlit','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:26:47','2020-01-04 09:26:47'),(5882,'physics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:28:39','2020-01-04 09:28:39'),(5883,'insurance','3.88.49.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:47:41','2020-01-04 09:47:41'),(5884,'geography','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:14','2020-01-04 09:54:14'),(5885,'english','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:18','2020-01-04 09:54:18'),(5886,'mathematics','197.210.85.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 09:54:24','2020-01-04 09:54:24'),(5887,'chemistry','159.138.158.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:29:58','2020-01-04 10:29:58'),(5888,'chemistry','159.138.153.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 10:30:00','2020-01-04 10:30:00'),(5889,'currentaffairs','34.203.237.229',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 13:00:10','2020-01-04 13:00:10'),(5890,'chemistry','159.138.152.167',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 14:50:39','2020-01-04 14:50:39'),(5891,'english','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:36:52','2020-01-04 15:36:52'),(5892,'englishlit','204.236.246.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 15:40:27','2020-01-04 15:40:27'),(5893,'crk','35.174.5.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 19:26:20','2020-01-04 19:26:20'),(5894,'chemistry','197.210.226.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:08:58','2020-01-04 22:08:58'),(5895,'economics','18.232.58.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-04 22:09:24','2020-01-04 22:09:24'),(5896,'chemistry','18.206.248.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 00:08:29','2020-01-05 00:08:29'),(5897,'government','34.207.181.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 01:22:25','2020-01-05 01:22:25'),(5898,'englishlit','3.92.193.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 02:40:51','2020-01-05 02:40:51'),(5899,'crk','52.23.188.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 05:08:41','2020-01-05 05:08:41'),(5900,'english','52.207.216.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 07:59:31','2020-01-05 07:59:31'),(5901,'english','150.70.168.143',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 13:37:22','2020-01-05 13:37:25'),(5902,'english','35.173.133.169',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 16:54:20','2020-01-05 16:54:20'),(5903,'chemistry','159.138.154.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:07','2020-01-05 19:39:07'),(5904,'chemistry','159.138.157.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 19:39:10','2020-01-05 19:39:10'),(5905,'chemistry','197.211.58.156',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:13:15','2020-01-05 20:13:24'),(5906,'physics','66.102.8.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:39:20','2020-01-05 20:39:20'),(5907,'biology','66.102.8.243',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:40:26','2020-01-05 20:41:57'),(5908,'english','66.102.8.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:41:46','2020-01-05 20:41:46'),(5909,'physics','197.210.71.215',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:23','2020-01-05 21:15:06'),(5910,'geography','197.210.71.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:29','2020-01-05 20:46:29'),(5911,'mathematics','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:46:44','2020-01-05 20:51:35'),(5912,'chemistry','197.210.71.215',13,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:04','2020-04-05 08:30:45'),(5913,'biology','197.210.71.215',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:47:51','2020-01-05 20:52:21'),(5914,'commerce','197.210.71.215',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-05 20:48:01','2020-01-05 20:52:36'),(5915,'chemistry','40.77.167.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 04:41:04','2020-01-06 04:41:04'),(5916,'physics','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 06:59:39','2020-01-06 06:59:39'),(5917,'biology','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:25','2020-01-06 07:01:25'),(5918,'chemistry','197.210.71.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 07:01:36','2020-01-06 07:01:36'),(5919,'biology','54.196.116.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 08:39:32','2020-01-06 08:39:32'),(5920,'currentaffairs','52.90.145.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 09:20:05','2020-01-06 09:20:05'),(5921,'currentaffairs','54.81.36.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 10:59:33','2020-01-06 10:59:33'),(5922,'civiledu','54.165.53.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 14:25:40','2020-01-06 14:25:40'),(5923,'english','54.165.254.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 19:05:30','2020-01-06 19:05:30'),(5924,'englishlit','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 20:46:10','2020-01-06 20:46:10'),(5925,'accounting','3.89.69.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-06 23:28:47','2020-01-06 23:28:47'),(5926,'chemistry','40.77.167.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 00:55:53','2020-01-07 00:55:53'),(5927,'chemistry','197.210.85.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 10:49:45','2020-01-07 10:49:45'),(5928,'chemistry','114.119.144.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 16:29:50','2020-01-07 16:29:50'),(5929,'mathematics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:22','2020-01-07 19:50:22'),(5930,'biology','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5931,'physics','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5932,'chemistry','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5933,'englishlit','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5934,'government','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5935,'history','3.91.219.135',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-07 19:50:23','2020-01-07 19:50:23'),(5936,'history','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:03:53','2020-01-08 00:03:53'),(5937,'mathematics','18.209.48.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 00:14:17','2020-01-08 00:14:17'),(5938,'commerce','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 02:50:48','2020-01-08 02:50:48'),(5939,'government','52.90.55.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:21:02','2020-01-08 03:21:02'),(5940,'physics','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:30','2020-01-08 03:49:31'),(5941,'accounting','104.132.247.83',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 03:49:55','2020-01-08 03:49:56'),(5942,'mathematics','105.112.24.0',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 05:26:53','2020-01-08 05:26:53'),(5943,'insurance','18.234.250.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:04:04','2020-01-08 07:04:04'),(5944,'chemistry','157.55.39.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 07:32:02','2020-01-08 07:32:03'),(5945,'english','3.90.5.24',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 08:20:47','2020-01-08 08:20:48'),(5946,'chemistry','197.210.152.54',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 09:59:01','2020-01-08 10:01:03'),(5947,'biology','197.210.152.54',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:01:17','2020-01-08 10:01:54'),(5948,'crk','54.175.37.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 10:33:34','2020-01-08 10:33:34'),(5949,'english','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 11:25:14','2020-01-08 11:25:14'),(5950,'mathematics','3.89.141.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 18:26:35','2020-01-08 18:26:35'),(5951,'geography','3.90.5.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-08 21:36:06','2020-01-08 21:36:06'),(5952,'economics','54.224.174.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 01:24:15','2020-01-09 01:24:15'),(5953,'geography','3.92.200.47',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 02:38:09','2020-01-09 02:46:31'),(5954,'english','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:01:22','2020-01-09 05:01:22'),(5955,'geography','3.92.196.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 05:35:09','2020-01-09 05:35:09'),(5956,'chemistry','114.119.158.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 08:20:35','2020-01-09 08:20:35'),(5957,'chemistry','197.210.84.180',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:25','2020-01-09 11:42:25'),(5958,'chemistry','66.249.93.206',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 11:42:27','2020-01-09 11:42:29'),(5959,'geography','3.81.50.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 15:48:20','2020-01-09 15:48:20'),(5960,'englishlit','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:10:05','2020-01-09 17:10:05'),(5961,'physics','54.196.84.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 17:29:29','2020-01-09 17:29:29'),(5962,'currentaffairs','54.91.26.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 20:05:46','2020-01-09 20:05:46'),(5963,'biology','54.90.217.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-09 23:39:42','2020-01-09 23:39:42'),(5964,'economics','3.88.190.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 04:30:45','2020-01-10 04:30:45'),(5965,'chemistry','159.138.155.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:39','2020-01-10 05:45:39'),(5966,'chemistry','159.138.148.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 05:45:42','2020-01-10 05:45:42'),(5967,'physics','3.90.20.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 07:05:46','2020-01-10 07:05:46'),(5968,'mathematics','54.158.227.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 09:57:03','2020-01-10 09:57:03'),(5969,'geography','54.242.86.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 14:16:02','2020-01-10 14:16:02'),(5970,'mathematics','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:33:50','2020-01-10 15:33:50'),(5971,'government','54.167.58.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 15:52:04','2020-01-10 15:52:04'),(5972,'mathematics','105.112.177.83',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 16:08:56','2020-01-10 16:08:57'),(5973,'mathematics','54.92.183.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 17:00:01','2020-01-10 17:00:01'),(5974,'accounting','54.175.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 19:11:24','2020-01-10 19:11:24'),(5975,'history','54.196.1.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-10 20:19:00','2020-01-10 20:19:00'),(5976,'insurance','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:04:48','2020-01-11 00:04:48'),(5977,'englishlit','100.24.14.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 00:23:07','2020-01-11 00:23:07'),(5978,'chemistry','157.55.39.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 07:47:08','2020-01-11 07:47:08'),(5979,'geography','3.85.229.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 08:19:26','2020-01-11 08:19:26'),(5980,'currentaffairs','54.210.29.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 09:17:59','2020-01-11 09:17:59'),(5981,'chemistry','129.205.112.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:01:54','2020-01-11 10:01:54'),(5982,'chemistry','114.119.163.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:12:45','2020-01-11 10:12:45'),(5983,'biology','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:49:13','2020-01-11 10:49:13'),(5984,'english','41.190.3.78',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:50:45','2020-01-11 10:53:17'),(5985,'government','41.190.3.78',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:03','2020-01-11 10:57:03'),(5986,'currentaffairs','3.81.114.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 10:57:29','2020-01-11 10:57:29'),(5987,'accounting','34.224.97.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-11 20:14:24','2020-01-11 20:14:24'),(5988,'history','34.228.161.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 03:43:41','2020-01-12 03:43:41'),(5989,'chemistry','54.36.150.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 07:38:14','2020-01-12 07:38:17'),(5990,'chemistry','66.249.66.159',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:18:04','2020-01-12 20:11:39'),(5991,'chemistry','207.46.13.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-12 16:37:09','2020-01-12 16:37:09'),(5992,'chemistry','41.206.30.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 11:30:26','2020-01-13 11:30:26'),(5993,'chemistry','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:08','2020-01-13 17:08:08'),(5994,'biology','197.211.58.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:08:51','2020-01-13 17:08:51'),(5995,'biology','3.95.28.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:38:02','2020-01-13 17:38:02'),(5996,'chemistry','105.112.21.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 17:40:01','2020-01-13 17:42:28'),(5997,'history','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 19:43:41','2020-01-13 19:43:41'),(5998,'insurance','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:27','2020-01-13 20:05:27'),(5999,'economics','3.88.50.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 20:05:30','2020-01-13 20:05:30'),(6000,'mathematics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6001,'commerce','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6002,'biology','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6003,'government','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:53','2020-01-13 21:55:53'),(6004,'economics','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6005,'irk','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6006,'insurance','18.234.34.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 21:55:54','2020-01-13 21:55:54'),(6007,'english','18.209.172.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:02:39','2020-01-13 22:02:39'),(6008,'economics','3.83.111.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-13 22:58:30','2020-01-13 22:58:30'),(6009,'history','54.159.7.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 01:49:56','2020-01-14 01:49:56'),(6010,'accounting','18.215.161.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 03:52:50','2020-01-14 03:52:50'),(6011,'mathematics','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:35:01','2020-01-14 04:35:01'),(6012,'chemistry','34.229.15.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 04:56:46','2020-01-14 04:56:46'),(6013,'chemistry','105.112.106.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 06:53:23','2020-01-14 06:53:23'),(6014,'irk','34.237.245.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 10:17:26','2020-01-14 10:17:26'),(6015,'physics','197.210.64.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 12:36:48','2020-01-14 12:36:48'),(6016,'chemistry','162.238.118.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:13:49','2020-01-14 13:13:49'),(6017,'crk','54.145.57.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 13:25:40','2020-01-14 13:25:40'),(6018,'mathematics','52.91.218.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:29:53','2020-01-14 14:29:56'),(6019,'biology','52.91.218.226',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 14:31:04','2020-01-14 14:31:07'),(6020,'physics','197.210.226.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 16:50:50','2020-01-14 16:50:50'),(6021,'commerce','54.152.183.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 17:45:43','2020-01-14 17:45:43'),(6022,'chemistry','197.211.58.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 19:02:46','2020-01-14 19:02:46'),(6023,'accounting','18.206.115.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:06:49','2020-01-14 20:06:49'),(6024,'physics','197.210.227.105',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:18:08','2020-01-14 21:20:01'),(6025,'chemistry','105.112.112.191',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 20:27:30','2020-01-14 20:27:30'),(6026,'physics','197.210.227.176',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:14:48','2020-01-14 21:18:53'),(6027,'physics','197.210.226.126',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 21:19:38','2020-01-14 21:19:39'),(6028,'biology','66.249.66.128',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-14 22:53:39','2020-01-14 22:53:41'),(6029,'economics','34.229.47.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 01:05:22','2020-01-15 01:05:22'),(6030,'chemistry','18.212.26.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 02:18:02','2020-01-15 02:18:02'),(6031,'chemistry','54.208.21.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 05:24:27','2020-01-15 05:24:27'),(6032,'chemistry','159.138.152.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:16','2020-01-15 07:37:16'),(6033,'chemistry','159.138.157.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 07:37:19','2020-01-15 07:37:19'),(6034,'government','100.26.203.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:42:28','2020-01-15 08:42:28'),(6035,'chemistry','197.210.29.194',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 08:53:58','2020-01-15 08:54:11'),(6036,'physics','34.236.147.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 09:37:53','2020-01-15 09:37:56'),(6037,'economics','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 12:29:24','2020-01-15 12:29:24'),(6038,'insurance','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 14:56:31','2020-01-15 14:56:31'),(6039,'economics','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:09:36','2020-01-15 15:09:36'),(6040,'crk','52.70.10.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:19:41','2020-01-15 15:19:41'),(6041,'chemistry','197.210.45.172',92,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 15:26:03','2020-01-15 15:31:10'),(6042,'commerce','18.209.5.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 17:07:51','2020-01-15 17:07:51'),(6043,'chemistry','197.211.58.205',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 20:53:18','2020-01-15 20:53:44'),(6044,'chemistry','197.211.58.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:03','2020-01-15 21:02:03'),(6045,'englishlit','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:02:38','2020-01-15 21:02:38'),(6046,'accounting','3.85.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:11:49','2020-01-15 21:11:49'),(6047,'chemistry','76.227.27.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 21:26:06','2020-01-15 21:35:01'),(6048,'english','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:19:54','2020-01-15 22:19:54'),(6049,'crk','18.209.98.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-15 22:34:26','2020-01-15 22:34:26'),(6050,'chemistry','159.138.158.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:24','2020-01-16 03:41:24'),(6051,'chemistry','159.138.154.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 03:41:27','2020-01-16 03:41:27'),(6052,'chemistry','37.150.17.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 09:03:33','2020-01-16 09:03:33'),(6053,'english','54.226.244.165',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 10:17:00','2020-01-16 10:17:03'),(6054,'insurance','34.229.6.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 12:22:59','2020-01-16 12:22:59'),(6055,'englishlit','100.26.51.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 14:37:15','2020-01-16 14:37:15'),(6056,'accounting','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:45:59','2020-01-16 15:45:59'),(6057,'physics','54.145.99.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 15:48:23','2020-01-16 15:48:23'),(6058,'english','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:15:39','2020-01-16 18:15:39'),(6059,'currentaffairs','54.86.102.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 18:19:03','2020-01-16 18:19:03'),(6060,'chemistry','18.205.239.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 19:22:43','2020-01-16 19:22:43'),(6061,'crk','54.209.182.3',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 20:55:34','2020-01-16 20:55:34'),(6062,'crk','52.87.197.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 21:40:29','2020-01-16 21:40:29'),(6063,'englishlit','54.90.245.83',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-16 22:42:09','2020-01-16 22:42:09'),(6064,'englishlit','52.91.61.134',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 00:58:04','2020-01-17 00:58:04'),(6065,'chemistry','174.129.61.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 03:28:11','2020-01-17 03:28:11'),(6066,'government','3.85.188.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 04:20:24','2020-01-17 04:20:24'),(6067,'chemistry','159.138.155.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:19','2020-01-17 05:35:19'),(6068,'chemistry','159.138.154.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 05:35:20','2020-02-24 05:01:25'),(6069,'crk','18.234.143.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 07:39:30','2020-01-17 07:39:30'),(6070,'chemistry','159.138.150.55',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 10:29:28','2020-01-17 10:29:29'),(6071,'chemistry','159.138.153.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:18','2020-01-17 13:26:18'),(6072,'chemistry','159.138.156.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 13:26:21','2020-01-17 13:26:21'),(6073,'accounting','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:31:59','2020-01-17 18:31:59'),(6074,'english','3.87.45.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 18:32:57','2020-01-17 18:32:57'),(6075,'history','54.205.224.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-17 23:43:23','2020-01-17 23:43:23'),(6076,'chemistry','84.241.193.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 02:10:58','2020-01-18 02:10:58'),(6077,'economics','54.147.112.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:09:08','2020-01-18 04:09:08'),(6078,'chemistry','159.138.128.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:53','2020-01-18 04:22:53'),(6079,'chemistry','159.138.150.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 04:22:55','2020-01-18 04:22:55'),(6080,'accounting','52.207.178.128',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:28:30','2020-01-18 11:06:20'),(6081,'history','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:30:16','2020-01-18 10:30:16'),(6082,'englishlit','52.207.178.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 10:36:43','2020-01-18 10:36:43'),(6083,'chemistry','197.210.65.53',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-18 21:33:39','2020-04-21 11:21:31'),(6084,'chemistry','197.210.65.246',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:05','2020-01-18 21:51:06'),(6085,'chemistry','197.210.65.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:24','2020-01-18 21:51:24'),(6086,'chemistry','197.210.65.33',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:51:40','2020-01-18 21:51:44'),(6087,'chemistry','197.210.64.160',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:52:12','2020-01-18 21:52:15'),(6088,'physics','197.210.47.29',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-18 21:54:25','2020-01-18 21:54:28'),(6089,'mathematics','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:39:47','2020-01-19 11:39:47'),(6090,'government','52.91.58.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 11:50:10','2020-01-19 11:50:10'),(6091,'chemistry','5.186.127.79',196,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:25:22','2020-03-07 23:25:18'),(6092,'englishlit','5.186.127.79',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 13:58:08','2020-02-03 17:34:24'),(6093,'commerce','3.82.117.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 14:53:51','2020-01-19 14:53:51'),(6094,'english','54.225.22.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 18:38:53','2020-01-19 18:38:53'),(6095,'chemistry','41.190.31.147',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-19 22:23:33','2020-01-19 22:23:33'),(6096,'geography','18.232.68.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 05:23:53','2020-01-20 05:23:53'),(6097,'geography','54.159.45.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:03:51','2020-01-20 06:03:51'),(6098,'geography','100.27.24.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 06:45:32','2020-01-20 06:45:32'),(6099,'physics','54.227.113.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 13:15:49','2020-01-20 13:15:49'),(6100,'geography','34.203.192.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:05:57','2020-01-20 14:05:57'),(6101,'english','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:10:11','2020-01-20 14:10:14'),(6102,'accounting','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:13:50','2020-01-20 14:13:53'),(6103,'biology','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:17:51','2020-01-20 14:17:54'),(6104,'chemistry','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:21:26','2020-01-20 14:21:29'),(6105,'commerce','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:31:36','2020-01-20 14:31:39'),(6106,'geography','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:36:02','2020-01-20 14:36:05'),(6107,'history','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:38:08','2020-01-20 14:38:11'),(6108,'physics','34.228.232.208',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:44:17','2020-01-20 14:44:20'),(6109,'chemistry','34.203.190.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 14:47:27','2020-01-20 14:47:27'),(6110,'englishlit','18.208.215.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 15:44:11','2020-01-20 15:44:11'),(6111,'biology','54.163.24.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 20:05:22','2020-01-20 20:05:22'),(6112,'currentaffairs','54.224.78.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 21:53:39','2020-01-20 21:53:39'),(6113,'biology','54.224.78.213',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-20 22:15:45','2020-01-20 22:15:47'),(6114,'englishlit','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:06:37','2020-01-21 04:06:37'),(6115,'physics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:24:39','2020-01-21 04:24:39'),(6116,'economics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 04:38:24','2020-01-21 04:38:24'),(6117,'mathematics','18.215.231.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:05:21','2020-01-21 05:05:21'),(6118,'commerce','34.207.229.85',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 05:42:09','2020-01-21 05:42:09'),(6119,'mathematics','3.80.112.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 08:48:34','2020-01-21 08:48:34'),(6120,'chemistry','159.138.156.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:02','2020-01-21 09:08:02'),(6121,'chemistry','159.138.155.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:08:05','2020-01-21 09:08:05'),(6122,'insurance','34.201.67.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 09:58:44','2020-01-21 09:58:44'),(6123,'chemistry','34.201.67.206',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 10:24:35','2020-01-21 10:24:39'),(6124,'crk','3.84.124.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 11:25:57','2020-01-21 11:25:57'),(6125,'english','54.82.117.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 12:39:35','2020-01-21 12:39:38'),(6126,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6127,'biology','54.82.3.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 15:54:46','2020-01-21 15:54:46'),(6128,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6129,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6130,'chemistry','100.24.1.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:43:47','2020-01-21 16:43:47'),(6131,'chemistry','197.210.65.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 16:51:28','2020-01-21 16:51:28'),(6132,'geography','34.235.141.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 17:46:43','2020-01-21 17:46:43'),(6133,'mathematics','54.221.179.237',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-21 23:42:47','2020-01-21 23:42:47'),(6134,'accounting','54.88.104.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 05:24:34','2020-01-22 05:24:34'),(6135,'chemistry','52.91.210.222',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:50'),(6136,'chemistry','52.91.210.222',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 06:59:17','2020-01-22 06:59:17'),(6137,'english','197.210.45.42',52,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:07:55','2020-01-22 10:20:09'),(6138,'chemistry','197.210.45.42',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 10:16:58','2020-01-22 10:17:01'),(6139,'english','197.210.84.40',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 11:05:36','2020-01-22 11:07:18'),(6140,'accounting','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:06:53','2020-01-22 14:06:56'),(6141,'biology','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:16:26','2020-01-22 14:16:29'),(6142,'chemistry','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:17:57','2020-01-22 14:18:00'),(6143,'commerce','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:24:26','2020-01-22 14:24:28'),(6144,'english','3.85.50.174',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:28:45','2020-01-22 14:31:27'),(6145,'geography','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:44:20','2020-01-22 14:44:23'),(6146,'government','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:49:57','2020-01-22 14:50:00'),(6147,'history','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:52:09','2020-01-22 14:52:12'),(6148,'physics','3.85.50.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 14:57:23','2020-01-22 14:57:26'),(6149,'mathematics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:06:42','2020-01-22 19:06:42'),(6150,'physics','105.112.74.61',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-22 19:10:39','2020-01-22 19:10:40'),(6151,'physics','105.112.178.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 01:21:24','2020-01-23 01:21:24'),(6152,'history','54.242.9.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 07:11:29','2020-01-23 07:11:29'),(6153,'accounting','3.95.2.128',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:02:04','2020-01-23 12:49:19'),(6154,'biology','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:11:55','2020-01-23 12:54:42'),(6155,'chemistry','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:16:26','2020-01-23 12:57:07'),(6156,'commerce','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:25:56','2020-01-23 13:00:45'),(6157,'geography','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:34:50','2020-01-23 13:07:52'),(6158,'government','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:42:08','2020-01-23 13:08:44'),(6159,'english','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:43:06','2020-01-23 13:02:16'),(6160,'history','3.95.2.128',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:46:06','2020-01-23 13:11:05'),(6161,'physics','3.95.2.128',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 09:53:50','2020-01-23 13:18:26'),(6162,'chemistry','78.67.8.249',190,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 11:18:52','2020-05-28 07:54:26'),(6163,'biology','54.226.136.136',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 11:47:50','2020-01-23 11:47:50'),(6164,'insurance','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:24:44','2020-01-23 12:24:44'),(6165,'economics','3.82.210.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 12:33:40','2020-01-23 12:33:40'),(6166,'chemistry','3.83.32.171',9,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-23 14:11:16','2020-01-23 14:46:53'),(6167,'history','54.80.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 15:21:18','2020-01-23 15:21:18'),(6168,'accounting','54.227.208.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-23 19:10:55','2020-01-23 19:10:55'),(6169,'chemistry','114.119.129.17',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:30:35','2020-01-23 22:30:35'),(6170,'chemistry','54.145.181.222',1,'',NULL,'',NULL,NULL,NULL,'','','2020-01-23 22:34:50','2020-01-23 22:34:50'),(6171,'english','66.249.66.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:23:18','2020-01-24 01:23:18'),(6172,'chemistry','159.138.153.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:26','2020-01-24 01:38:26'),(6173,'chemistry','159.138.155.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 01:38:28','2020-01-24 01:38:28'),(6174,'irk','54.221.33.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 02:21:24','2020-01-24 02:21:24'),(6175,'crk','3.92.163.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 07:56:53','2020-01-24 07:56:53'),(6176,'chemistry','159.138.155.158',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:33:54','2020-01-24 09:33:54'),(6177,'chemistry','159.138.155.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:02','2020-01-24 09:34:02'),(6178,'chemistry','159.138.159.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 09:34:05','2020-01-24 09:34:05'),(6179,'chemistry','159.138.158.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:55','2020-01-24 11:45:55'),(6180,'chemistry','159.138.152.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 11:45:58','2020-01-24 11:45:58'),(6181,'commerce','54.234.15.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 12:20:42','2020-01-24 12:20:42'),(6182,'crk','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:21:36','2020-01-24 16:21:36'),(6183,'accounting','54.227.39.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 16:29:29','2020-01-24 16:29:29'),(6184,'english','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:48','2020-01-24 18:50:48'),(6185,'mathematics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6186,'commerce','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6187,'chemistry','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6188,'geography','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6189,'economics','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6190,'insurance','34.229.181.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 18:50:49','2020-01-24 18:50:49'),(6191,'chemistry','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:38:45','2020-01-24 19:38:47'),(6192,'chemistry','159.138.155.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:17','2020-01-24 19:48:17'),(6193,'chemistry','159.138.157.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 19:48:20','2020-01-24 19:48:20'),(6194,'economics','54.234.219.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-24 21:16:38','2020-01-24 21:16:38'),(6195,'chemistry','54.82.250.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 00:25:04','2020-01-25 00:25:04'),(6196,'geography','52.91.20.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 02:53:58','2020-01-25 02:53:58'),(6197,'government','52.205.208.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 05:54:14','2020-01-25 05:54:14'),(6198,'government','3.82.98.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 06:50:25','2020-01-25 06:50:25'),(6199,'economics','18.232.150.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 07:40:32','2020-01-25 07:40:32'),(6200,'chemistry','66.249.64.112',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:00:41','2020-01-25 10:06:05'),(6201,'chemistry','66.249.64.114',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 10:11:26','2020-01-25 10:25:38'),(6202,'insurance','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:06:32','2020-01-25 11:06:32'),(6203,'crk','3.87.56.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 11:16:24','2020-01-25 11:16:24'),(6204,'mathematics','105.112.177.119',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 12:21:44','2020-01-25 12:24:10'),(6205,'economics','184.72.97.209',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:05:36','2020-01-25 15:05:36'),(6206,'english','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6207,'economics','34.228.159.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 15:49:14','2020-01-25 15:49:14'),(6208,'englishlit','54.172.2.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 16:46:58','2020-01-25 16:46:58'),(6209,'english','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 18:56:16','2020-01-25 18:56:16'),(6210,'commerce','3.94.86.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 19:01:52','2020-01-25 19:01:52'),(6211,'crk','54.227.219.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:07:54','2020-01-25 23:07:54'),(6212,'crk','34.227.56.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-25 23:54:31','2020-01-25 23:54:31'),(6213,'geography','54.89.54.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 09:48:50','2020-01-26 09:48:50'),(6214,'physics','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:42','2020-01-26 13:25:42'),(6215,'insurance','54.163.34.182',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 13:25:44','2020-01-26 13:53:10'),(6216,'englishlit','54.163.34.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 14:26:21','2020-01-26 14:26:21'),(6217,'chemistry','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 15:31:14','2020-01-26 15:31:14'),(6218,'currentaffairs','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:40:36','2020-01-26 16:40:36'),(6219,'english','52.91.247.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 16:56:27','2020-01-26 16:56:27'),(6220,'mathematics','54.234.126.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 17:35:46','2020-01-26 17:35:46'),(6221,'englishlit','3.80.203.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 18:54:41','2020-01-26 18:54:41'),(6222,'mathematics','3.92.208.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 19:40:52','2020-01-26 19:40:52'),(6223,'englishlit','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:07:23','2020-01-26 22:07:23'),(6224,'commerce','18.234.54.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 22:27:30','2020-01-26 22:27:30'),(6225,'crk','3.81.231.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-26 23:10:54','2020-01-26 23:10:54'),(6226,'economics','54.237.215.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 00:37:31','2020-01-27 00:37:31'),(6227,'government','100.24.9.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 02:34:55','2020-01-27 02:34:55'),(6228,'mathematics','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6229,'biology','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6230,'chemistry','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6231,'englishlit','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6232,'government','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6233,'civiledu','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:26','2020-01-27 04:08:26'),(6234,'currentaffairs','3.83.156.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 04:08:27','2020-01-27 04:08:27'),(6235,'english','3.89.150.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 06:06:57','2020-01-27 06:06:57'),(6236,'chemistry','114.119.167.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 07:14:52','2020-01-27 07:14:52'),(6237,'english','54.167.78.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 08:12:16','2020-01-27 08:12:16'),(6238,'biology','3.94.145.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:10:32','2020-01-27 12:10:32'),(6239,'crk','41.184.176.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 12:18:46','2020-01-27 12:18:46'),(6240,'english','52.205.236.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 14:56:14','2020-01-27 14:56:14'),(6241,'chemistry','105.112.38.62',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 15:47:21','2020-01-27 15:51:48'),(6242,'insurance','34.239.130.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 16:38:00','2020-01-27 16:38:00'),(6243,'chemistry','114.119.133.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 19:10:16','2020-01-27 19:10:16'),(6244,'chemistry','3.92.236.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 20:56:15','2020-01-27 20:56:15'),(6245,'chemistry','35.173.249.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 22:22:57','2020-01-27 22:22:57'),(6246,'chemistry','114.119.163.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-27 23:25:06','2020-01-27 23:25:06'),(6247,'commerce','3.95.235.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 00:29:02','2020-01-28 00:29:02'),(6248,'chemistry','151.80.39.47',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 01:56:45','2020-04-02 23:36:26'),(6249,'chemistry','114.119.131.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 02:19:39','2020-01-28 02:19:39'),(6250,'chemistry','114.119.146.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 03:40:30','2020-01-28 03:40:30'),(6251,'chemistry','159.138.158.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:23','2020-01-28 06:57:23'),(6252,'chemistry','159.138.151.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 06:57:26','2020-01-28 06:57:26'),(6253,'mathematics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6254,'accounting','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6255,'physics','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6256,'government','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:03'),(6257,'crk','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:03','2020-01-28 09:25:04'),(6258,'insurance','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6259,'currentaffairs','18.215.233.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 09:25:04','2020-01-28 09:25:04'),(6260,'geography','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:08:11','2020-01-28 11:08:11'),(6261,'englishlit','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:17:47','2020-01-28 11:17:47'),(6262,'accounting','35.172.185.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:22:33','2020-01-28 11:22:33'),(6263,'chemistry','157.55.39.83',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 11:38:03','2020-01-28 11:38:03'),(6264,'economics','35.171.182.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:01:23','2020-01-28 14:01:23'),(6265,'economics','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:18','2020-01-28 14:44:18'),(6266,'english','54.91.75.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 14:44:19','2020-01-28 14:44:19'),(6267,'physics','3.94.103.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-28 18:25:15','2020-01-28 18:25:15'),(6268,'commerce','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:38','2020-01-29 02:20:38'),(6269,'accounting','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6270,'physics','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6271,'government','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6272,'crk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6273,'irk','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6274,'currentaffairs','52.72.122.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:20:39','2020-01-29 02:20:39'),(6275,'english','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:42','2020-01-29 02:55:43'),(6276,'mathematics','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6277,'accounting','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6278,'government','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6279,'insurance','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6280,'currentaffairs','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:43'),(6281,'history','54.172.238.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 02:55:43','2020-01-29 02:55:44'),(6282,'chemistry','159.138.159.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:08:05','2020-01-29 06:08:05'),(6283,'mathematics','3.83.117.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 06:37:49','2020-01-29 06:37:49'),(6284,'geography','18.232.162.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 08:36:32','2020-01-29 08:36:32'),(6285,'insurance','52.90.181.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 12:12:29','2020-01-29 12:12:29'),(6286,'chemistry','18.234.111.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 14:21:47','2020-01-29 14:21:47'),(6287,'commerce','54.87.20.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 15:21:30','2020-01-29 15:21:30'),(6288,'mathematics','52.90.10.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 16:29:01','2020-01-29 16:29:01'),(6289,'chemistry','207.46.13.92',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:25:12','2020-01-29 18:25:12'),(6290,'mathematics','3.81.141.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 18:38:00','2020-01-29 18:38:00'),(6291,'government','41.190.3.252',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:13:05','2020-01-29 19:13:06'),(6292,'chemistry','207.46.13.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 19:32:15','2020-01-29 19:32:15'),(6293,'commerce','3.88.140.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-29 21:29:47','2020-01-29 21:29:47'),(6294,'biology','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:49:14','2020-01-30 01:49:14'),(6295,'english','54.209.84.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 01:50:59','2020-01-30 01:50:59'),(6296,'mathematics','54.91.188.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 03:44:50','2020-01-30 03:44:50'),(6297,'english','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:22:30','2020-01-30 05:22:30'),(6298,'government','34.204.1.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 05:24:43','2020-01-30 05:24:43'),(6299,'englishlit','3.80.30.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 06:21:01','2020-01-30 06:21:01'),(6300,'economics','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:13:00','2020-01-30 08:13:00'),(6301,'crk','3.93.58.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 08:15:11','2020-01-30 08:15:11'),(6302,'geography','18.207.190.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 10:50:25','2020-01-30 10:50:25'),(6303,'english','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:28:50','2020-01-30 13:28:50'),(6304,'civiledu','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 13:59:42','2020-01-30 13:59:42'),(6305,'geography','3.93.53.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 14:27:14','2020-01-30 14:27:14'),(6306,'insurance','34.237.245.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:05:29','2020-01-30 16:05:29'),(6307,'chemistry','46.229.161.131',212,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-04-19 15:14:37'),(6308,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6309,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6310,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6311,'chemistry','46.229.161.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 16:24:42','2020-01-30 16:24:42'),(6312,'physics','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:01:23','2020-01-30 20:01:23'),(6313,'geography','54.86.207.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 20:23:45','2020-01-30 20:23:45'),(6314,'chemistry','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 21:51:40','2020-01-30 21:51:40'),(6315,'englishlit','52.207.224.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-30 22:08:33','2020-01-30 22:08:33'),(6316,'currentaffairs','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:21:19','2020-01-31 01:21:19'),(6317,'government','34.238.171.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 01:38:18','2020-01-31 01:38:18'),(6318,'economics','54.89.156.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:05:07','2020-01-31 03:05:07'),(6319,'chemistry','207.46.13.209',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 03:23:54','2020-01-31 12:04:42'),(6320,'english','105.112.182.82',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 06:30:35','2020-01-31 06:32:01'),(6321,'physics','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:12:51','2020-01-31 07:12:51'),(6322,'english','54.147.145.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:23:23','2020-01-31 07:23:23'),(6323,'economics','54.210.244.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 07:58:52','2020-01-31 07:58:52'),(6324,'englishlit','3.86.29.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 10:32:00','2020-01-31 10:32:00'),(6325,'chemistry','54.237.205.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 12:11:56','2020-01-31 12:11:56'),(6326,'mathematics','52.86.208.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 15:08:11','2020-01-31 15:08:11'),(6327,'accounting','3.86.202.33',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 17:15:43','2020-01-31 17:15:43'),(6328,'insurance','3.91.133.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 18:38:12','2020-01-31 18:38:12'),(6329,'mathematics','3.82.155.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 22:46:02','2020-01-31 22:46:02'),(6330,'insurance','18.234.65.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-01-31 23:57:02','2020-01-31 23:57:02'),(6331,'commerce','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:38:11','2020-02-01 00:38:11'),(6332,'english','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:08','2020-02-01 00:43:08'),(6333,'physics','34.207.127.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 00:43:27','2020-02-01 00:43:27'),(6334,'english','105.112.59.103',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:48:46','2020-02-01 04:48:46'),(6335,'englishlit','54.209.65.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 04:57:37','2020-02-01 04:57:37'),(6336,'geography','52.91.111.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 06:32:15','2020-02-01 06:32:15'),(6337,'english','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6338,'mathematics','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6339,'biology','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6340,'chemistry','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:01','2020-02-01 10:43:01'),(6341,'englishlit','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6342,'insurance','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6343,'history','54.197.168.116',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 10:43:02','2020-02-01 10:43:02'),(6344,'economics','54.87.59.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:18:15','2020-02-01 12:18:15'),(6345,'insurance','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 12:55:22','2020-02-01 12:55:22'),(6346,'civiledu','54.196.171.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 13:00:35','2020-02-01 13:00:35'),(6347,'accounting','34.203.212.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-01 14:38:27','2020-02-01 14:38:27'),(6348,'biology','34.228.168.214',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 01:57:16','2020-02-02 01:57:16'),(6349,'english','54.227.175.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 03:18:24','2020-02-02 03:18:24'),(6350,'government','52.23.185.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 05:33:56','2020-02-02 05:33:56'),(6351,'crk','52.23.225.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 08:26:03','2020-02-02 08:26:03'),(6352,'history','54.152.74.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 10:18:23','2020-02-02 10:18:23'),(6353,'civiledu','54.175.193.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 14:11:21','2020-02-02 14:11:21'),(6354,'chemistry','34.229.20.78',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:23'),(6355,'chemistry','34.229.20.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 15:48:22','2020-02-02 15:48:22'),(6356,'chemistry','105.112.178.165',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 19:12:14','2020-02-02 19:31:58'),(6357,'biology','18.212.175.176',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-02 23:50:11','2020-02-02 23:50:11'),(6358,'currentaffairs','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 00:42:03','2020-02-03 00:42:03'),(6359,'history','54.221.62.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:15','2020-02-03 01:17:15'),(6360,'government','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:17:42','2020-02-03 01:17:42'),(6361,'economics','184.72.76.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 01:35:23','2020-02-03 01:35:23'),(6362,'economics','52.204.49.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 02:42:06','2020-02-03 02:42:06'),(6363,'economics','3.90.112.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 04:45:10','2020-02-03 04:45:10'),(6364,'english','34.228.141.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 06:53:18','2020-02-03 06:53:18'),(6365,'accounting','54.175.163.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 07:43:49','2020-02-03 07:43:49'),(6366,'chemistry','105.112.75.189',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:18:05','2020-02-03 09:50:11'),(6367,'biology','66.249.88.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 09:41:16','2020-02-03 09:41:18'),(6368,'chemistry','105.112.55.63',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:08:19','2020-02-03 10:31:05'),(6369,'chemistry','197.210.71.2',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 10:30:49','2020-02-03 10:30:59'),(6370,'mathematics','5.186.127.79',100,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:01:59','2020-03-08 01:56:09'),(6371,'english','5.186.127.79',130,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:02:29','2020-02-03 19:50:47'),(6372,'history','3.80.132.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 19:40:14','2020-02-03 19:40:14'),(6373,'chemistry','54.227.12.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-03 21:50:10','2020-02-03 21:50:10'),(6374,'crk','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 01:59:00','2020-02-04 01:59:00'),(6375,'commerce','34.207.107.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 02:10:16','2020-02-04 02:10:16'),(6376,'chemistry','105.112.178.251',234,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 03:42:45','2020-02-04 05:35:31'),(6377,'crk','54.174.29.92',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 08:39:40','2020-02-04 08:39:40'),(6378,'chemistry','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:58:55','2020-02-04 09:58:55'),(6379,'irk','54.145.39.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 09:59:39','2020-02-04 09:59:39'),(6380,'mathematics','197.210.52.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:00:08','2020-02-04 10:00:08'),(6381,'economics','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:48:18','2020-02-04 10:48:18'),(6382,'accounting','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 10:54:29','2020-02-04 10:54:29'),(6383,'civiledu','18.215.167.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 11:29:41','2020-02-04 11:29:41'),(6384,'economics','54.162.191.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:01:04','2020-02-04 12:01:04'),(6385,'chemistry','159.138.155.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 12:43:25','2020-02-04 12:43:25'),(6386,'crk','3.83.164.35',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:13:32','2020-02-04 14:20:46'),(6387,'irk','3.83.164.35',150,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:18:49','2020-02-04 14:24:05'),(6388,'english','3.83.164.35',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 14:25:01','2020-02-04 14:28:15'),(6389,'mathematics','3.83.164.35',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 14:29:22','2020-02-04 14:33:35'),(6390,'civiledu','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:34:31','2020-02-04 14:39:09'),(6391,'insurance','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:40:01','2020-02-04 14:43:43'),(6392,'chemistry','129.56.111.10',6,'','NG','','Lagos',NULL,NULL,'','','2020-02-04 14:41:58','2020-02-05 06:14:39'),(6393,'economics','129.56.111.10',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:42:39','2020-02-04 14:42:39'),(6394,'currentaffairs','3.83.164.35',200,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 14:44:50','2020-02-04 14:48:55'),(6395,'government','18.207.229.112',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 15:33:33','2020-02-04 15:33:33'),(6396,'mathematics','190.120.217.202',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 16:44:57','2020-02-04 16:44:57'),(6397,'government','54.81.18.48',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 17:27:35','2020-02-04 17:46:16'),(6398,'crk','54.81.18.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 17:46:16','2020-02-04 17:46:16'),(6399,'chemistry','197.211.61.135',16,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-04 19:19:08','2020-02-04 19:24:05'),(6400,'chemistry','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:15:38','2020-02-04 20:15:38'),(6401,'geography','3.84.29.239',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 20:28:22','2020-02-04 20:28:22'),(6402,'government','34.233.134.3',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-04 21:13:57','2020-02-04 21:13:57'),(6403,'commerce','52.91.40.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-04 22:24:13','2020-02-04 22:24:13'),(6404,'economics','34.228.184.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 00:11:53','2020-02-05 00:11:53'),(6405,'economics','18.215.150.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 03:12:14','2020-02-05 03:12:14'),(6406,'insurance','54.237.226.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 04:33:22','2020-02-05 04:33:22'),(6407,'chemistry','207.46.13.202',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 05:48:51','2020-02-05 07:58:31'),(6408,'chemistry','206.189.180.4',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:11:56','2020-02-05 06:12:29'),(6409,'physics','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:13:27','2020-02-05 06:13:27'),(6410,'biology','129.56.111.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 06:14:43','2020-02-05 06:14:43'),(6411,'chemistry','159.138.152.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 09:26:20','2020-02-05 09:26:20'),(6412,'englishlit','34.228.66.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 10:25:53','2020-02-05 10:25:53'),(6413,'chemistry','207.46.13.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:16:47','2020-02-05 12:16:47'),(6414,'economics','52.87.240.0',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:48:30','2020-02-05 12:51:43'),(6415,'englishlit','52.87.240.0',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 12:52:17','2020-02-05 12:55:42'),(6416,'chemistry','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:42:37','2020-02-05 13:42:40'),(6417,'biology','52.87.240.0',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 13:43:23','2020-02-05 13:43:27'),(6418,'chemistry','159.138.156.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:18','2020-02-05 14:20:18'),(6419,'chemistry','159.138.156.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:20:20','2020-02-05 14:20:20'),(6420,'english','18.233.225.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 14:35:35','2020-02-05 14:35:35'),(6421,'chemistry','159.138.158.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:22','2020-02-05 16:03:22'),(6422,'chemistry','159.138.158.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:03:24','2020-02-05 16:03:24'),(6423,'chemistry','149.28.23.166',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 16:07:00','2020-02-05 16:07:01'),(6424,'chemistry','197.210.45.223',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:12:02','2020-02-05 19:12:03'),(6425,'crk','54.147.234.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-05 19:55:34','2020-02-05 19:55:34'),(6426,'crk','34.227.152.249',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 00:47:24','2020-02-06 00:47:24'),(6427,'insurance','54.198.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:07:31','2020-02-06 05:07:31'),(6428,'mathematics','54.198.78.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:13:14','2020-02-06 05:39:35'),(6429,'chemistry','105.112.178.38',113,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 05:24:23','2020-02-06 08:18:18'),(6430,'chemistry','197.210.52.78',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:45:06','2020-02-06 09:09:46'),(6431,'chemistry','197.210.53.153',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:52:38','2020-02-06 09:16:07'),(6432,'chemistry','197.210.52.148',167,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:56:55','2020-02-06 09:16:55'),(6433,'chemistry','197.210.53.241',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 08:57:58','2020-02-06 09:03:21'),(6434,'english','197.210.53.241',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:03','2020-02-06 09:17:03'),(6435,'english','197.210.53.153',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:17:17','2020-02-06 09:17:20'),(6436,'accounting','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:19:37','2020-02-06 09:19:40'),(6437,'biology','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:20','2020-02-06 09:20:23'),(6438,'physics','197.210.53.241',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:20:51','2020-02-06 09:20:54'),(6439,'english','102.67.6.4',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:35','2020-02-06 09:21:38'),(6440,'englishlit','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:36','2020-02-06 09:21:39'),(6441,'mathematics','102.67.6.4',90,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:48','2020-02-06 09:22:30'),(6442,'government','197.210.52.148',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:21:53','2020-02-06 09:21:56'),(6443,'crk','197.210.53.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:07','2020-02-06 09:22:11'),(6444,'geography','197.210.52.46',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 09:22:18','2020-02-06 09:22:21'),(6445,'economics','197.210.52.148',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:28','2020-02-06 09:22:31'),(6446,'irk','197.210.52.46',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:48','2020-02-06 09:22:50'),(6447,'civiledu','197.210.52.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:22:57','2020-02-06 09:23:00'),(6448,'insurance','197.210.53.228',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:13','2020-02-06 09:24:16'),(6449,'biology','102.67.6.4',45,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:24:44','2020-02-06 09:25:01'),(6450,'history','197.210.53.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 09:25:32','2020-02-06 09:25:35'),(6451,'chemistry','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:05:57','2020-02-06 11:05:57'),(6452,'physics','34.227.81.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 11:34:52','2020-02-06 11:34:52'),(6453,'chemistry','129.18.170.187',5,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 12:20:37','2020-02-06 12:20:49'),(6454,'english','41.184.164.93',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 14:04:50','2020-02-06 14:04:53'),(6455,'englishlit','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:10:15','2020-02-06 14:10:15'),(6456,'crk','3.80.58.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:31:21','2020-02-06 14:31:21'),(6457,'chemistry','197.211.61.128',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 14:45:01','2020-02-06 14:45:39'),(6458,'englishlit','54.242.25.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 15:06:36','2020-02-06 15:06:36'),(6459,'currentaffairs','3.84.248.139',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 16:33:00','2020-02-06 16:33:00'),(6460,'chemistry','159.138.153.33',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-06 19:22:39','2020-02-06 19:22:42'),(6461,'crk','3.88.183.247',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-06 21:12:07','2020-02-06 21:12:07'),(6462,'englishlit','18.232.114.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-06 22:46:55','2020-02-06 22:46:55'),(6463,'economics','54.227.10.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 01:41:04','2020-02-07 01:41:04'),(6464,'english','3.86.106.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 02:18:26','2020-02-07 02:18:26'),(6465,'biology','35.174.9.116',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:28:22','2020-02-07 04:28:23'),(6466,'government','35.174.9.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 04:47:35','2020-02-07 04:47:35'),(6467,'crk','54.157.234.56',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 09:15:39','2020-02-07 09:15:39'),(6468,'mathematics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:24','2020-02-07 10:02:27'),(6469,'chemistry','41.184.164.93',46,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-07 10:02:52','2020-02-13 12:05:06'),(6470,'physics','41.184.164.93',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 10:03:10','2020-02-07 10:03:13'),(6471,'chemistry','34.207.81.136',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 12:31:01','2020-02-07 12:31:01'),(6472,'chemistry','159.138.148.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:48','2020-02-07 13:54:48'),(6473,'chemistry','159.138.151.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 13:54:51','2020-02-07 13:54:51'),(6474,'chemistry','159.138.156.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:39','2020-02-07 14:47:39'),(6475,'chemistry','159.138.152.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 14:47:40','2020-02-07 14:47:40'),(6476,'english','52.201.218.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 18:39:18','2020-02-07 18:39:18'),(6477,'chemistry','105.112.117.84',293,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:30:28','2020-02-07 20:00:57'),(6478,'english','105.112.117.84',104,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 19:48:33','2020-02-07 20:02:22'),(6479,'biology','3.87.229.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-07 20:58:03','2020-02-07 20:58:03'),(6480,'englishlit','54.226.235.193',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 05:22:08','2020-02-08 05:22:08'),(6481,'currentaffairs','18.212.207.50',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 12:56:59','2020-02-08 13:19:35'),(6482,'english','105.112.121.51',3687,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:00:54','2020-02-08 16:40:24'),(6483,'chemistry','105.112.121.51',247,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-08 14:17:20','2020-02-08 16:40:24'),(6484,'mathematics','105.112.121.51',280,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 14:55:34','2020-02-08 16:40:25'),(6485,'currentaffairs','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6486,'biology','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6487,'civiledu','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6488,'accounting','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6489,'history','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6490,'government','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6491,'crk','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6492,'geography','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6493,'physics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:24'),(6494,'irk','105.112.121.51',180,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:50','2020-02-08 16:40:28'),(6495,'commerce','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:51','2020-02-08 16:40:24'),(6496,'englishlit','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:24'),(6497,'economics','105.112.121.51',240,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 16:01:52','2020-02-08 16:40:23'),(6498,'civiledu','34.230.4.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 17:05:03','2020-02-08 17:05:03'),(6499,'englishlit','54.167.22.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 20:45:17','2020-02-08 20:45:17'),(6500,'english','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:52:30','2020-02-08 20:52:30'),(6501,'accounting','54.167.22.107',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-08 20:59:40','2020-02-08 20:59:40'),(6502,'chemistry','105.112.23.32',172,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:31:48','2020-02-09 02:17:39'),(6503,'commerce','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6504,'physics','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6505,'chemistry','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6506,'englishlit','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6507,'crk','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:18'),(6508,'geography','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:18','2020-02-08 23:44:19'),(6509,'history','3.82.105.34',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-08 23:44:19','2020-02-08 23:44:19'),(6510,'physics','66.249.83.192',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 06:54:16','2020-02-09 06:54:18'),(6511,'mathematics','105.112.38.128',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:07:48','2020-02-09 11:09:27'),(6512,'biology','105.112.38.128',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:10:56','2020-02-09 11:10:57'),(6513,'biology','105.112.57.10',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 11:16:17','2020-02-09 11:16:56'),(6514,'chemistry','105.112.176.118',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 13:28:05','2020-02-09 14:36:23'),(6515,'chemistry','105.112.38.60',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 21:58:06','2020-02-09 21:58:42'),(6516,'englishlit','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6517,'civiledu','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6518,'mathematics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6519,'physics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6520,'currentaffairs','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6521,'commerce','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6522,'government','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6523,'accounting','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6524,'english','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6525,'chemistry','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6526,'crk','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6527,'history','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6528,'economics','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:45'),(6529,'irk','105.112.121.100',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:08'),(6530,'biology','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6531,'geography','105.112.121.100',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-09 22:32:36','2020-02-09 22:34:09'),(6532,'mathematics','3.88.254.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-09 23:58:44','2020-02-09 23:58:44'),(6533,'commerce','54.234.42.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 04:53:06','2020-02-10 04:53:06'),(6534,'insurance','52.205.252.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 12:48:35','2020-02-10 12:48:35'),(6535,'biology','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:31:06','2020-02-10 13:33:56'),(6536,'geography','54.86.139.235',240,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:34:52','2020-02-10 13:40:06'),(6537,'government','54.86.139.235',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 13:38:55','2020-02-10 13:41:36'),(6538,'chemistry','159.138.159.131',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 14:59:24','2020-02-10 14:59:25'),(6539,'chemistry','66.102.8.239',26,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 19:24:51','2020-03-10 07:49:39'),(6540,'mathematics','54.198.180.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-10 23:23:53','2020-02-10 23:23:53'),(6541,'geography','34.228.215.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 03:09:40','2020-02-11 03:09:40'),(6542,'economics','54.86.162.80',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 06:23:36','2020-02-11 06:23:36'),(6543,'chemistry','159.138.128.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:43','2020-02-11 08:08:43'),(6544,'chemistry','159.138.157.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:08:44','2020-02-11 08:08:44'),(6545,'crk','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:19:44','2020-02-11 08:19:44'),(6546,'geography','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 08:28:36','2020-02-11 08:28:36'),(6547,'geography','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:07:20','2020-02-11 11:07:20'),(6548,'english','34.204.68.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 11:29:21','2020-02-11 11:29:21'),(6549,'physics','52.90.177.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 20:57:31','2020-02-11 20:57:31'),(6550,'chemistry','54.36.148.199',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-11 21:31:54','2020-02-11 21:31:55'),(6551,'englishlit','52.23.243.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 00:28:14','2020-02-12 00:28:14'),(6552,'mathematics','105.112.59.79',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 01:05:16','2020-02-12 01:05:16'),(6553,'currentaffairs','54.172.153.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 04:22:50','2020-02-12 04:22:50'),(6554,'biology','54.81.207.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 06:05:04','2020-02-12 06:05:04'),(6555,'geography','3.83.240.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 07:57:33','2020-02-12 07:57:33'),(6556,'chemistry','114.119.164.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 09:32:25','2020-02-12 09:32:25'),(6557,'chemistry','159.138.157.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:57','2020-02-12 12:35:57'),(6558,'chemistry','159.138.155.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 12:35:59','2020-02-12 12:35:59'),(6559,'mathematics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:18:10','2020-02-12 16:18:10'),(6560,'physics','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:23:01','2020-02-12 16:23:01'),(6561,'chemistry','54.175.158.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 16:44:21','2020-02-12 16:44:21'),(6562,'biology','66.249.88.14',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 17:50:44','2020-02-15 20:12:28'),(6563,'geography','18.212.14.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 21:05:47','2020-02-12 21:05:47'),(6564,'government','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:08:36','2020-02-12 22:08:36'),(6565,'mathematics','3.93.146.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-12 22:15:14','2020-02-12 22:15:14'),(6566,'mathematics','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:42:26','2020-02-13 01:42:26'),(6567,'accounting','54.242.193.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 01:51:06','2020-02-13 01:51:06'),(6568,'history','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:03:04','2020-02-13 03:03:04'),(6569,'englishlit','54.91.5.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 03:13:21','2020-02-13 03:13:21'),(6570,'chemistry','54.36.150.179',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 06:05:15','2020-02-13 06:05:15'),(6571,'irk','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6572,'geography','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6573,'accounting','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6574,'currentaffairs','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6575,'english','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6576,'government','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6577,'mathematics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6578,'civiledu','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:42'),(6579,'physics','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6580,'crk','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6581,'biology','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6582,'commerce','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6583,'englishlit','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6584,'history','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6585,'chemistry','105.112.117.46',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:43:13','2020-02-13 09:50:43'),(6586,'economics','105.112.117.46',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 09:47:15','2020-02-13 09:50:43'),(6587,'chemistry','159.138.152.95',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-13 16:01:29','2020-02-13 16:01:33'),(6588,'geography','3.85.140.177',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-13 18:30:03','2020-02-13 18:30:03'),(6589,'chemistry','107.167.108.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-13 22:22:25','2020-02-13 22:22:25'),(6590,'accounting','18.206.218.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 03:40:45','2020-02-14 03:40:45'),(6591,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6592,'english','18.206.223.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 07:37:16','2020-02-14 07:37:16'),(6593,'chemistry','159.138.153.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:50','2020-02-14 08:34:50'),(6594,'chemistry','159.138.150.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:34:53','2020-02-14 08:34:53'),(6595,'chemistry','159.138.158.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:49','2020-02-14 08:40:49'),(6596,'chemistry','159.138.151.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 08:40:52','2020-02-14 08:40:52'),(6597,'chemistry','54.36.150.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 09:29:11','2020-02-14 09:29:11'),(6598,'commerce','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:16','2020-02-14 12:46:16'),(6599,'physics','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6600,'government','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6601,'geography','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6602,'irk','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6603,'currentaffairs','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6604,'history','54.234.90.0',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 12:46:17','2020-02-14 12:46:17'),(6605,'english','54.234.90.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 13:13:09','2020-02-14 13:13:09'),(6606,'government','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 15:59:30','2020-02-14 15:59:34'),(6607,'physics','54.90.180.185',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 16:21:32','2020-02-14 16:21:35'),(6608,'mathematics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6609,'physics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6610,'englishlit','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6611,'english','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6612,'biology','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6613,'irk','3.84.126.190',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:53'),(6614,'government','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6615,'currentaffairs','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6616,'economics','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6617,'commerce','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6618,'geography','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6619,'civiledu','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6620,'accounting','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6621,'history','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6622,'chemistry','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6623,'crk','3.84.126.190',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-14 17:33:51','2020-02-14 17:33:54'),(6624,'crk','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6625,'currentaffairs','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6626,'geography','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6627,'economics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6628,'civiledu','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6629,'irk','52.205.39.67',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:40'),(6630,'englishlit','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6631,'government','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6632,'chemistry','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6633,'history','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6634,'physics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6635,'biology','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6636,'accounting','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6637,'mathematics','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6638,'english','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:37','2020-02-14 17:43:41'),(6639,'commerce','52.205.39.67',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-14 17:43:38','2020-02-14 17:43:41'),(6640,'history','54.161.219.62',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-14 18:19:40','2020-02-14 18:19:40'),(6641,'chemistry','207.46.13.106',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 13:28:42','2020-02-26 14:54:53'),(6642,'mathematics','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6643,'commerce','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6644,'chemistry','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6645,'englishlit','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6646,'government','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6647,'insurance','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6648,'history','54.163.181.115',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 15:55:14','2020-02-15 15:55:14'),(6649,'chemistry','157.55.39.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 18:35:48','2020-02-15 18:35:48'),(6650,'biology','66.249.88.20',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-15 20:12:28','2020-02-15 20:12:30'),(6651,'insurance','107.22.1.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 00:40:58','2020-02-16 00:40:58'),(6652,'economics','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:40:03','2020-02-16 01:40:03'),(6653,'history','34.235.111.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 01:59:35','2020-02-16 01:59:35'),(6654,'economics','100.26.204.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 04:49:19','2020-02-16 04:49:19'),(6655,'history','54.173.184.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 07:23:00','2020-02-16 07:23:00'),(6656,'chemistry','54.158.124.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 08:06:19','2020-02-16 08:06:19'),(6657,'accounting','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 09:59:42','2020-02-16 09:59:42'),(6658,'history','3.89.241.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 10:06:30','2020-02-16 10:06:30'),(6659,'biology','54.81.159.210',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:49:34','2020-02-16 16:58:41'),(6660,'english','54.81.159.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:52:09','2020-02-16 16:56:21'),(6661,'chemistry','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:21','2020-02-16 16:54:24'),(6662,'commerce','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:54:43','2020-02-16 16:54:46'),(6663,'accounting','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:06','2020-02-16 16:55:09'),(6664,'mathematics','54.81.159.210',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 16:55:58','2020-02-16 16:56:01'),(6665,'irk','52.91.167.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-16 22:51:34','2020-02-16 22:51:34'),(6666,'crk','34.233.126.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 01:08:54','2020-02-17 01:08:54'),(6667,'economics','54.234.27.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 05:03:19','2020-02-17 05:03:19'),(6668,'commerce','54.221.92.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 06:44:50','2020-02-17 06:44:50'),(6669,'chemistry','159.138.128.150',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:05:44','2020-02-17 07:05:44'),(6670,'english','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6671,'mathematics','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6672,'accounting','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6673,'englishlit','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:09'),(6674,'government','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:09','2020-02-17 07:26:10'),(6675,'civiledu','34.229.240.235',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-17 07:26:10'),(6676,'insurance','34.229.240.235',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:26:10','2020-02-19 13:08:34'),(6677,'biology','34.229.240.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 07:53:21','2020-02-17 07:53:21'),(6678,'chemistry','41.190.3.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 09:00:45','2020-02-17 09:00:46'),(6679,'accounting','34.224.39.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 10:20:33','2020-02-17 10:20:33'),(6680,'english','197.156.253.124',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 11:19:47','2020-02-17 11:19:47'),(6681,'crk','184.72.213.81',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 13:48:40','2020-02-17 13:48:40'),(6682,'accounting','54.165.1.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 17:44:51','2020-02-17 17:44:51'),(6683,'economics','54.83.109.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 20:16:53','2020-02-17 20:16:53'),(6684,'chemistry','5.255.250.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 21:22:58','2020-02-17 21:22:58'),(6685,'government','54.221.59.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-17 23:17:36','2020-02-17 23:17:36'),(6686,'chemistry','34.201.122.208',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 00:07:06','2020-02-18 00:07:06'),(6687,'government','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:37:21','2020-02-18 02:37:21'),(6688,'geography','54.208.18.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 02:43:15','2020-02-18 02:43:15'),(6689,'mathematics','52.87.200.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 03:25:39','2020-02-18 03:25:39'),(6690,'commerce','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:40:17','2020-02-18 05:40:17'),(6691,'economics','54.209.191.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 05:53:54','2020-02-18 05:53:54'),(6692,'chemistry','54.224.96.19',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:08:00','2020-02-18 11:08:00'),(6693,'insurance','54.224.96.19',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 11:30:46','2020-02-18 11:30:46'),(6694,'crk','18.212.173.7',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 13:09:34','2020-03-20 07:37:00'),(6695,'chemistry','114.119.134.79',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 15:47:10','2020-02-18 15:47:10'),(6696,'englishlit','100.24.12.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 18:48:21','2020-02-18 18:48:21'),(6697,'crk','3.85.34.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-18 22:20:53','2020-02-18 22:20:53'),(6698,'chemistry','196.220.136.213',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 00:45:34','2020-02-19 00:45:35'),(6699,'english','54.147.36.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 03:54:04','2020-02-19 03:54:04'),(6700,'crk','34.229.241.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 05:30:54','2020-02-19 05:30:54'),(6701,'chemistry','41.184.42.114',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 13:13:14','2020-02-19 13:13:37'),(6702,'english','54.227.161.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 15:50:25','2020-02-19 15:50:25'),(6703,'chemistry','82.145.222.210',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:03:16','2020-02-19 18:03:27'),(6704,'chemistry','54.36.150.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 18:07:42','2020-02-19 18:07:46'),(6705,'englishlit','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:26:35','2020-02-19 19:26:35'),(6706,'chemistry','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:27:02','2020-02-19 19:27:02'),(6707,'physics','54.234.17.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 19:53:17','2020-02-19 19:53:17'),(6708,'english','204.236.246.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-19 22:37:37','2020-02-19 22:37:37'),(6709,'englishlit','34.230.79.152',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 00:17:30','2020-02-20 00:17:30'),(6710,'currentaffairs','54.242.206.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 01:18:47','2020-02-20 01:18:47'),(6711,'crk','3.85.213.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 04:49:03','2020-02-20 04:49:03'),(6712,'englishlit','3.81.90.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 08:44:59','2020-02-20 08:44:59'),(6713,'government','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:23','2020-02-20 10:57:04'),(6714,'physics','3.81.90.103',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 09:14:35','2020-02-20 09:14:41'),(6715,'irk','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:28:55','2020-02-20 10:57:05'),(6716,'currentaffairs','3.81.90.103',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:33:57','2020-02-20 10:57:05'),(6717,'history','3.81.90.103',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 09:37:42','2020-02-20 10:45:58'),(6718,'history','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6719,'chemistry','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6720,'accounting','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6721,'commerce','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6722,'physics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6723,'civiledu','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6724,'crk','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6725,'economics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6726,'currentaffairs','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6727,'biology','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6728,'government','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6729,'english','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6730,'irk','35.168.19.41',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:56'),(6731,'englishlit','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6732,'geography','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6733,'mathematics','35.168.19.41',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-02-20 10:14:20','2020-02-20 10:17:57'),(6734,'geography','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:07','2020-02-20 11:04:56'),(6735,'commerce','3.81.90.103',4,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:22:45','2020-02-20 10:57:04'),(6736,'chemistry','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6737,'geography','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6738,'englishlit','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6739,'history','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6740,'accounting','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6741,'english','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6742,'commerce','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6743,'crk','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6744,'civiledu','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6745,'physics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6746,'mathematics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6747,'government','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6748,'irk','54.162.219.78',30,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:13'),(6749,'biology','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:10','2020-02-20 10:47:14'),(6750,'economics','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:11','2020-02-20 10:47:14'),(6751,'currentaffairs','54.162.219.78',40,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:47:12','2020-02-20 10:47:15'),(6752,'economics','3.81.90.103',3,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 11:01:05'),(6753,'civiledu','3.81.90.103',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 10:57:05','2020-02-20 10:57:05'),(6754,'government','18.207.192.142',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 13:42:22','2020-02-20 13:42:22'),(6755,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6756,'chemistry','54.167.198.75',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6757,'chemistry','54.167.198.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 16:51:07','2020-02-20 16:51:07'),(6758,'english','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:31','2020-02-20 17:26:32'),(6759,'accounting','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6760,'biology','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6761,'government','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6762,'crk','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6763,'currentaffairs','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6764,'history','54.167.198.75',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 17:26:32','2020-02-20 17:26:32'),(6765,'crk','3.80.65.155',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:00:34','2020-02-20 18:00:34'),(6766,'biology','3.80.65.155',2,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 18:13:55','2020-02-20 18:13:55'),(6767,'english','204.236.203.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-20 21:11:32','2020-02-20 21:11:32'),(6768,'mathematics','3.89.145.218',1,'',NULL,'',NULL,NULL,NULL,'','','2020-02-20 22:35:41','2020-02-20 22:35:41'),(6769,'chemistry','46.229.168.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:29:39','2020-02-21 02:29:39'),(6770,'chemistry','157.55.39.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 02:49:20','2020-02-21 02:49:20'),(6771,'english','54.147.53.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 03:48:00','2020-02-21 03:48:00'),(6772,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6773,'biology','54.221.93.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 12:40:00','2020-02-21 12:40:00'),(6774,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6775,'biology','3.87.107.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 15:19:33','2020-02-21 15:19:33'),(6776,'currentaffairs','3.90.168.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 19:24:12','2020-02-21 19:24:12'),(6777,'chemistry','34.226.190.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 20:12:12','2020-02-21 20:12:12'),(6778,'currentaffairs','18.234.246.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 21:02:21','2020-02-21 21:02:21'),(6779,'civiledu','54.162.109.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-21 23:30:06','2020-02-21 23:30:06'),(6780,'english','3.92.223.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:55:12','2020-02-22 03:55:12'),(6781,'chemistry','159.138.153.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:52','2020-02-22 03:58:52'),(6782,'chemistry','159.138.155.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 03:58:53','2020-02-22 03:58:53'),(6783,'englishlit','54.234.225.91',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 04:45:49','2020-02-22 04:45:49'),(6784,'accounting','3.81.14.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 06:32:53','2020-02-22 06:32:53'),(6785,'biology','3.85.195.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 08:05:36','2020-02-22 08:05:36'),(6786,'english','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:02','2020-02-22 12:38:03'),(6787,'commerce','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6788,'physics','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6789,'englishlit','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6790,'crk','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6791,'currentaffairs','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:03'),(6792,'history','54.198.68.173',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 12:38:03','2020-02-22 12:38:04'),(6793,'biology','3.88.4.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-22 21:11:38','2020-02-22 21:11:39'),(6794,'chemistry','35.173.57.84',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 00:53:28','2020-02-23 01:21:39'),(6795,'government','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:01:42','2020-02-23 13:01:42'),(6796,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6797,'chemistry','54.209.249.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 13:22:52','2020-02-23 13:22:52'),(6798,'commerce','54.196.170.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 14:07:46','2020-02-23 14:07:46'),(6799,'chemistry','54.36.150.158',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 15:20:46','2020-02-23 15:20:49'),(6800,'insurance','35.173.187.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 17:32:21','2020-02-23 17:32:21'),(6801,'crk','3.86.33.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 20:19:46','2020-02-23 20:19:46'),(6802,'english','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6803,'mathematics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6804,'commerce','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6805,'physics','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6806,'government','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6807,'geography','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:04'),(6808,'currentaffairs','54.156.75.138',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-23 23:49:04','2020-02-23 23:49:05'),(6809,'chemistry','159.138.156.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 05:01:23','2020-02-24 05:01:23'),(6810,'mathematics','54.205.146.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 06:01:05','2020-02-24 06:01:05'),(6811,'geography','54.159.1.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 08:03:19','2020-02-24 08:03:19'),(6812,'economics','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 12:58:49','2020-02-24 12:58:49'),(6813,'geography','3.92.231.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 13:18:08','2020-02-24 13:18:08'),(6814,'english','3.81.236.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 15:33:14','2020-02-24 15:33:14'),(6815,'geography','54.210.217.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 17:00:33','2020-02-24 17:00:33'),(6816,'chemistry','105.112.55.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 19:06:53','2020-02-24 23:57:08'),(6817,'chemistry','34.227.17.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:20:04','2020-03-05 17:43:13'),(6818,'physics','34.227.17.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-24 23:52:30','2020-02-24 23:52:30'),(6819,'englishlit','54.92.166.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 02:36:43','2020-02-25 02:36:43'),(6820,'geography','35.175.234.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 03:33:37','2020-02-25 03:33:37'),(6821,'currentaffairs','52.87.168.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 06:07:47','2020-02-25 06:07:47'),(6822,'biology','18.233.100.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 09:34:43','2020-02-25 09:34:43'),(6823,'chemistry','157.55.39.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 11:42:40','2020-02-25 11:42:40'),(6824,'physics','66.249.80.52',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 15:14:29','2020-02-25 15:14:31'),(6825,'physics','107.23.131.74',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 18:59:40','2020-02-25 19:13:57'),(6826,'english','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6827,'mathematics','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:56'),(6828,'commerce','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:56','2020-02-25 19:13:57'),(6829,'biology','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6830,'currentaffairs','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6831,'history','107.23.131.74',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:13:57','2020-02-25 19:13:57'),(6832,'englishlit','35.170.185.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 19:56:19','2020-02-25 19:56:19'),(6833,'mathematics','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:37:16','2020-02-25 20:37:16'),(6834,'biology','54.227.14.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 20:57:18','2020-02-25 20:57:18'),(6835,'chemistry','185.26.180.143',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:07:17','2020-02-25 21:07:19'),(6836,'chemistry','192.95.16.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 21:56:59','2020-02-25 21:56:59'),(6837,'geography','3.92.190.69',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-25 23:13:07','2020-02-25 23:13:07'),(6838,'government','54.146.199.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 01:42:52','2020-02-26 01:42:52'),(6839,'mathematics','3.89.35.96',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 04:40:50','2020-02-26 04:40:50'),(6840,'history','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:21:37','2020-02-26 05:21:37'),(6841,'accounting','54.163.9.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 05:41:03','2020-02-26 05:41:03'),(6842,'biology','54.91.45.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 07:38:13','2020-02-26 07:38:13'),(6843,'chemistry','54.221.93.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:04:36','2020-02-26 09:15:23'),(6844,'chemistry','66.102.8.241',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6845,'chemistry','66.249.80.50',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-02-26 09:43:29'),(6846,'chemistry','66.102.8.243',51,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 09:43:27','2020-03-09 23:52:26'),(6847,'physics','66.249.88.65',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:22:54','2020-02-26 12:22:56'),(6848,'biology','54.235.235.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 12:50:49','2020-02-26 12:50:49'),(6849,'geography','54.161.25.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-26 17:04:18','2020-02-26 17:04:18'),(6850,'english','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6851,'mathematics','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6852,'biology','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6853,'chemistry','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6854,'government','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:00'),(6855,'geography','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:00','2020-02-27 04:05:01'),(6856,'irk','18.234.70.60',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 04:05:01','2020-02-27 04:05:01'),(6857,'accounting','54.197.40.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 05:01:31','2020-02-27 05:01:31'),(6858,'history','107.20.37.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 13:39:41','2020-02-27 13:39:41'),(6859,'chemistry','3.80.114.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-27 23:45:34','2020-02-27 23:45:34'),(6860,'english','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:45:04','2020-02-28 13:47:42'),(6861,'government','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:50:32','2020-02-28 13:52:07'),(6862,'commerce','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:54:04','2020-02-28 13:55:34'),(6863,'biology','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:57:38','2020-02-28 13:59:56'),(6864,'mathematics','105.112.87.206',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 13:59:07','2020-02-28 13:59:48'),(6865,'biology','52.204.53.204',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:24'),(6866,'biology','52.204.53.204',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-28 22:54:22','2020-02-28 22:54:22'),(6867,'insurance','3.89.28.8',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 02:19:14','2020-02-29 02:19:14'),(6868,'economics','54.86.68.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 03:27:08','2020-02-29 03:27:08'),(6869,'accounting','18.207.149.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 06:17:21','2020-02-29 06:17:21'),(6870,'crk','54.224.249.62',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 07:18:55','2020-02-29 07:18:55'),(6871,'chemistry','49.70.183.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:00:47','2020-02-29 10:00:47'),(6872,'chemistry','34.226.148.167',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6873,'chemistry','34.226.148.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:01:24','2020-02-29 10:01:24'),(6874,'biology','54.234.130.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 10:39:43','2020-02-29 10:39:43'),(6875,'history','54.172.167.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 14:10:22','2020-02-29 14:10:22'),(6876,'chemistry','66.249.88.40',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:08','2020-02-29 15:50:09'),(6877,'chemistry','66.102.6.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:50:09','2020-02-29 15:50:09'),(6878,'irk','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:58:08','2020-02-29 15:58:08'),(6879,'chemistry','54.224.41.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 15:59:27','2020-02-29 15:59:27'),(6880,'history','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 19:55:14','2020-02-29 19:55:14'),(6881,'crk','3.83.235.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 20:06:10','2020-02-29 20:06:10'),(6882,'commerce','52.202.140.139',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 22:45:59','2020-02-29 22:45:59'),(6883,'chemistry','223.245.212.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-02-29 23:22:31','2020-02-29 23:22:31'),(6884,'biology','18.212.32.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 00:01:45','2020-03-01 00:01:45'),(6885,'accounting','52.23.172.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 01:53:29','2020-03-01 01:53:29'),(6886,'chemistry','1.203.150.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 02:14:54','2020-03-01 02:14:54'),(6887,'economics','54.156.62.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 06:18:07','2020-03-01 06:18:07'),(6888,'government','35.173.129.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 08:48:14','2020-03-01 08:48:14'),(6889,'chemistry','3.84.9.7',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 10:00:47','2020-03-01 10:00:47'),(6890,'geography','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 11:39:24','2020-03-01 11:39:24'),(6891,'government','54.234.175.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 12:03:05','2020-03-01 12:03:05'),(6892,'economics','18.209.9.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 16:36:07','2020-03-01 16:36:07'),(6893,'insurance','54.87.188.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 18:39:16','2020-03-01 18:39:16'),(6894,'englishlit','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:12:13','2020-03-01 23:12:13'),(6895,'english','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-01 23:29:26','2020-03-01 23:29:26'),(6896,'commerce','54.163.13.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 03:36:21','2020-03-02 03:36:21'),(6897,'crk','54.198.115.67',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 08:50:58','2020-03-02 08:50:58'),(6898,'crk','34.229.134.140',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 09:24:47','2020-03-02 09:24:47'),(6899,'chemistry','197.210.64.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 16:39:01','2020-03-02 16:39:01'),(6900,'english','105.112.55.216',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:24:46','2020-03-02 17:24:54'),(6901,'englishlit','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:46:18','2020-03-02 17:46:18'),(6902,'physics','3.84.165.16',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 17:59:07','2020-03-02 17:59:07'),(6903,'english','3.91.231.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 19:29:38','2020-03-02 19:29:38'),(6904,'currentaffairs','54.167.241.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 20:17:40','2020-03-02 20:17:40'),(6905,'chemistry','36.249.227.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:16:09','2020-03-02 21:16:09'),(6906,'chemistry','114.227.162.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 21:19:42','2020-03-02 21:19:42'),(6907,'englishlit','54.91.143.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-02 23:10:58','2020-03-02 23:10:58'),(6908,'englishlit','54.88.133.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 01:40:43','2020-03-03 01:40:43'),(6909,'government','34.228.244.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 05:09:18','2020-03-03 05:09:18'),(6910,'chemistry','141.8.188.144',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 08:07:45','2020-03-03 08:07:45'),(6911,'chemistry','82.145.220.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 09:48:31','2020-03-03 09:48:49'),(6912,'economics','3.80.28.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:11:56','2020-03-03 10:11:56'),(6913,'chemistry','82.145.209.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:36:44','2020-03-03 10:36:44'),(6914,'english','18.212.178.115',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 10:54:12','2020-03-03 10:54:12'),(6915,'chemistry','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:08:29','2020-03-03 12:08:29'),(6916,'biology','54.84.179.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 12:20:31','2020-03-03 12:20:31'),(6917,'chemistry','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:27','2020-03-03 13:36:27'),(6918,'mathematics','129.205.113.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 13:36:47','2020-03-03 13:36:47'),(6919,'english','52.87.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 17:00:16','2020-03-03 17:00:16'),(6920,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6921,'chemistry','54.242.112.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:14:22','2020-03-03 19:14:22'),(6922,'chemistry','40.77.167.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 19:37:26','2020-03-03 19:37:26'),(6923,'biology','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6924,'physics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6925,'geography','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6926,'economics','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6927,'irk','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:57'),(6928,'civiledu','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:57','2020-03-03 20:05:58'),(6929,'currentaffairs','3.88.214.168',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:05:58','2020-03-03 20:05:58'),(6930,'biology','197.210.53.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-03 20:43:36','2020-03-03 20:43:38'),(6931,'physics','103.221.233.72',60,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 04:04:33','2020-03-04 04:25:46'),(6932,'english','105.112.182.249',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 10:31:20','2020-03-04 10:31:20'),(6933,'english','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:04:45','2020-03-04 11:04:45'),(6934,'accounting','18.209.13.86',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 11:05:53','2020-03-04 11:05:53'),(6935,'chemistry','197.210.53.87',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:39:34','2020-03-04 12:39:35'),(6936,'chemistry','197.210.52.235',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:04','2020-03-04 12:40:06'),(6937,'mathematics','197.210.53.94',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 12:40:07','2020-03-04 12:46:33'),(6938,'english','18.207.127.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 21:42:11','2020-03-04 21:42:11'),(6939,'chemistry','5.196.87.151',23,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-04 22:56:07','2020-04-02 22:19:08'),(6940,'englishlit','35.175.218.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 00:22:30','2020-03-05 00:22:30'),(6941,'commerce','3.80.229.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 02:31:37','2020-03-05 02:31:37'),(6942,'chemistry','54.89.222.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 04:03:59','2020-03-05 04:03:59'),(6943,'commerce','3.85.195.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 12:01:13','2020-03-05 12:01:13'),(6944,'crk','54.81.40.5',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 19:11:38','2020-03-05 19:11:38'),(6945,'mathematics','107.22.108.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 20:30:46','2020-03-05 20:30:46'),(6946,'english','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:08:59','2020-03-05 22:08:59'),(6947,'accounting','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6948,'biology','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6949,'chemistry','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6950,'irk','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6951,'insurance','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6952,'history','3.89.154.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-05 22:09:00','2020-03-05 22:09:00'),(6953,'geography','54.242.26.49',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 02:38:31','2020-03-06 02:55:09'),(6954,'biology','35.153.139.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 07:52:20','2020-03-06 07:52:20'),(6955,'geography','107.23.228.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 12:34:01','2020-03-06 12:34:01'),(6956,'currentaffairs','35.173.223.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 13:38:42','2020-03-06 13:38:42'),(6957,'chemistry','35.153.102.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 14:20:41','2020-03-06 14:20:41'),(6958,'biology','3.86.217.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 15:34:02','2020-03-06 15:34:02'),(6959,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6960,'biology','54.162.89.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 19:34:58','2020-03-06 19:34:58'),(6961,'chemistry','183.166.134.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:16:38','2020-03-06 21:16:38'),(6962,'chemistry','54.81.120.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 21:29:55','2020-03-06 21:29:55'),(6963,'mathematics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-06 23:47:39','2020-03-06 23:47:39'),(6964,'physics','3.84.115.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 00:22:50','2020-03-07 00:22:50'),(6965,'mathematics','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 02:56:44','2020-03-07 02:56:44'),(6966,'physics','18.234.121.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 06:30:53','2020-03-07 06:30:53'),(6967,'chemistry','197.210.65.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:18:55','2020-03-07 08:18:55'),(6968,'chemistry','197.210.64.27',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:19:20','2020-03-07 08:19:20'),(6969,'chemistry','197.210.64.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 08:20:36','2020-03-07 08:20:36'),(6970,'english','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:01'),(6971,'accounting','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:01','2020-03-07 12:14:02'),(6972,'geography','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6973,'irk','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6974,'civiledu','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6975,'insurance','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6976,'history','3.82.103.233',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 12:14:02','2020-03-07 12:14:02'),(6977,'english','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:35','2020-03-07 14:55:35'),(6978,'biology','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:36','2020-03-07 14:55:37'),(6979,'chemistry','197.210.52.92',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 14:55:37','2020-03-07 14:55:38'),(6980,'geography','52.90.45.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 15:21:48','2020-03-07 15:21:48'),(6981,'accounting','35.173.220.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-07 19:36:21','2020-03-07 19:36:21'),(6982,'commerce','5.186.127.79',70,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:16:03','2020-03-08 01:58:17'),(6983,'accounting','5.186.127.79',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 01:24:36','2020-03-08 01:52:42'),(6984,'biology','5.186.127.79',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 02:01:14','2020-03-08 02:01:15'),(6985,'englishlit','54.242.45.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 10:11:30','2020-03-08 10:11:30'),(6986,'chemistry','112.114.88.128',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:37:05','2020-03-08 13:37:05'),(6987,'history','54.174.12.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 13:54:38','2020-03-08 13:54:38'),(6988,'chemistry','54.173.164.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 16:27:27','2020-03-08 16:27:27'),(6989,'biology','52.90.68.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 17:35:15','2020-03-08 17:35:15'),(6990,'chemistry','114.119.164.166',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 18:08:08','2020-03-25 11:05:38'),(6991,'chemistry','60.185.69.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 20:52:07','2020-03-08 20:52:07'),(6992,'chemistry','197.210.227.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:17:20','2020-03-08 21:17:20'),(6993,'chemistry','197.210.226.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:18:58','2020-03-08 21:18:58'),(6994,'chemistry','197.210.226.187',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 21:19:11','2020-03-08 21:19:11'),(6995,'chemistry','114.119.160.43',3,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:20','2020-06-23 16:54:17'),(6996,'chemistry','161.151.254.43',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:39:41','2020-03-08 22:39:44'),(6997,'chemistry','161.151.254.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-08 22:41:32','2020-03-08 22:41:35'),(6998,'insurance','18.234.85.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 04:42:23','2020-03-09 04:42:23'),(6999,'chemistry','114.119.161.43',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 05:05:47','2020-04-06 00:24:10'),(7000,'economics','3.208.8.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 06:44:35','2020-03-09 06:44:35'),(7001,'chemistry','114.119.166.156',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 08:22:53','2020-03-10 01:02:52'),(7002,'history','54.175.112.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 09:37:37','2020-03-09 09:37:37'),(7003,'history','197.210.53.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:45:49','2020-03-09 12:45:50'),(7004,'chemistry','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:00','2020-03-09 12:56:20'),(7005,'history','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:03','2020-03-09 12:56:24'),(7006,'mathematics','197.210.53.133',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:52:04','2020-03-09 12:56:26'),(7007,'chemistry','197.210.53.37',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 12:59:22','2020-03-09 12:59:22'),(7008,'english','197.210.53.133',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:06:27','2020-03-09 13:06:27'),(7009,'accounting','34.238.172.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 13:29:10','2020-03-09 13:29:10'),(7010,'history','3.93.0.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 14:25:16','2020-03-09 14:25:16'),(7011,'crk','3.84.223.21',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-09 22:45:44','2020-03-09 22:45:44'),(7012,'chemistry','67.86.217.149',47,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:10:20','2020-04-07 19:16:09'),(7013,'chemistry','108.41.239.178',421,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 00:11:34','2020-04-13 13:17:04'),(7014,'commerce','3.84.214.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 01:51:20','2020-03-10 01:51:20'),(7015,'chemistry','197.210.70.26',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 04:06:56','2020-03-10 04:07:00'),(7016,'chemistry','197.210.70.68',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:17','2020-03-10 05:19:17'),(7017,'mathematics','197.210.70.216',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:19:26','2020-03-10 05:19:26'),(7018,'mathematics','197.210.71.234',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:08','2020-03-10 05:20:08'),(7019,'mathematics','197.210.70.250',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:21','2020-03-10 05:20:21'),(7020,'chemistry','197.210.70.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:35','2020-03-10 05:20:35'),(7021,'mathematics','197.210.71.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:20:53','2020-03-10 05:20:53'),(7022,'mathematics','197.210.70.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:52:55','2020-03-10 05:52:55'),(7023,'chemistry','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:05','2020-03-10 05:55:05'),(7024,'mathematics','197.210.70.182',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:15','2020-03-10 05:55:16'),(7025,'mathematics','197.210.174.232',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:55:58','2020-03-10 05:55:59'),(7026,'mathematics','108.41.239.178',367,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:06','2020-04-12 16:31:22'),(7027,'biology','197.210.70.40',46,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:35','2020-03-10 05:57:24'),(7028,'biology','197.210.70.238',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:56:55','2020-03-10 05:56:56'),(7029,'biology','197.210.70.170',39,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 05:58:15','2020-03-10 05:58:18'),(7030,'accounting','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:15:57','2020-03-10 06:15:57'),(7031,'crk','54.164.44.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 06:24:17','2020-03-10 06:24:17'),(7032,'chemistry','197.211.61.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 07:49:41','2020-03-10 07:49:41'),(7033,'chemistry','114.119.167.13',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 08:49:55','2020-03-31 11:06:57'),(7034,'economics','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:06:10','2020-03-10 09:06:10'),(7035,'irk','54.89.229.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 09:16:37','2020-03-10 09:16:37'),(7036,'chemistry','34.205.63.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 10:16:06','2020-03-10 10:16:06'),(7037,'government','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:04:13','2020-03-10 12:04:13'),(7038,'chemistry','54.159.152.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 12:21:49','2020-03-10 12:21:49'),(7039,'biology','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:06:43','2020-03-10 14:06:43'),(7040,'geography','54.165.26.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 14:12:24','2020-03-10 14:12:24'),(7041,'history','3.95.217.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 15:16:08','2020-03-10 15:16:08'),(7042,'commerce','18.212.139.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 16:38:48','2020-03-10 16:38:48'),(7043,'english','197.210.45.11',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:10:47','2020-03-10 17:41:19'),(7044,'geography','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:50','2020-03-10 17:41:20'),(7045,'mathematics','197.210.45.11',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:39:51','2020-03-10 17:41:21'),(7046,'economics','174.129.129.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 17:44:51','2020-03-10 17:44:51'),(7047,'government','54.234.46.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 19:25:59','2020-03-10 19:25:59'),(7048,'chemistry','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:21:32','2020-03-10 20:21:32'),(7049,'insurance','34.230.34.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-10 20:37:32','2020-03-10 20:37:32'),(7050,'chemistry','66.249.83.200',73,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-03-19 07:35:53'),(7051,'chemistry','66.249.83.204',50,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 01:37:00','2020-04-26 10:46:35'),(7052,'englishlit','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:31:52','2020-03-11 02:31:52'),(7053,'english','3.84.210.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 02:42:48','2020-03-11 02:42:48'),(7054,'chemistry','116.31.102.8',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:21:00','2020-03-11 05:21:30'),(7055,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7056,'biology','54.157.231.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 05:58:31','2020-03-11 05:58:31'),(7057,'crk','35.174.12.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 10:23:39','2020-03-11 10:43:26'),(7058,'chemistry','52.90.116.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 11:19:41','2020-03-11 11:19:41'),(7059,'english','197.210.65.20',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:49','2020-03-11 13:34:49'),(7060,'biology','197.210.47.25',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:52','2020-03-11 13:34:52'),(7061,'chemistry','197.210.64.50',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:53','2020-03-11 13:34:54'),(7062,'mathematics','197.210.64.137',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 13:34:55','2020-03-11 13:34:56'),(7063,'chemistry','157.55.39.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:47:42','2020-03-11 14:47:42'),(7064,'chemistry','41.190.30.94',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 14:53:34','2020-03-11 14:53:35'),(7065,'english','54.221.96.198',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 15:42:57','2020-03-11 15:43:28'),(7066,'chemistry','197.211.61.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 16:33:36','2020-03-11 16:33:36'),(7067,'english','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:58:34','2020-03-11 18:58:34'),(7068,'englishlit','54.226.83.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 18:59:49','2020-03-11 18:59:49'),(7069,'physics','54.196.100.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:38:57','2020-03-11 19:38:57'),(7070,'chemistry','54.196.100.247',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 19:59:42','2020-03-11 19:59:42'),(7071,'english','3.82.116.28',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 20:42:05','2020-03-11 20:42:05'),(7072,'currentaffairs','54.211.73.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-11 21:57:05','2020-03-11 21:57:05'),(7073,'englishlit','54.234.241.105',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 01:46:19','2020-03-12 02:20:47'),(7074,'chemistry','54.167.99.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 05:23:04','2020-03-12 05:23:04'),(7075,'government','54.226.177.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:03:06','2020-03-12 06:03:06'),(7076,'economics','3.88.159.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 06:56:58','2020-03-12 06:56:58'),(7077,'mathematics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7078,'commerce','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7079,'english','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:37'),(7080,'physics','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:37','2020-03-12 07:43:38'),(7081,'biology','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7082,'crk','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7083,'englishlit','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7084,'geography','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7085,'government','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7086,'insurance','54.90.183.170',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7087,'history','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:38','2020-03-12 07:43:38'),(7088,'currentaffairs','54.90.183.170',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 07:43:39','2020-03-12 07:43:39'),(7089,'chemistry','54.90.183.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 08:12:53','2020-03-12 08:12:53'),(7090,'english','3.83.156.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 10:27:53','2020-03-12 10:27:53'),(7091,'crk','3.89.215.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:13:49','2020-03-12 11:13:49'),(7092,'chemistry','3.90.255.250',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 11:50:26','2020-03-12 11:50:27'),(7093,'english','197.210.44.229',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 13:37:55','2020-03-12 13:37:55'),(7094,'mathematics','197.210.29.214',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:31:12','2020-03-12 15:31:12'),(7095,'chemistry','197.210.29.214',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:35:28','2020-03-12 15:36:34'),(7096,'chemistry','197.210.61.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:09','2020-03-12 15:38:09'),(7097,'chemistry','172.58.236.187',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 15:38:33','2020-03-12 15:41:06'),(7098,'biology','197.210.70.44',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 16:21:26','2020-03-12 16:21:28'),(7099,'biology','197.210.226.117',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:14:12','2020-03-12 17:14:14'),(7100,'biology','3.92.167.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 17:33:54','2020-03-12 17:33:54'),(7101,'chemistry','54.174.77.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 18:08:05','2020-03-12 18:08:05'),(7102,'english','129.205.113.101',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-12 20:47:35','2020-03-12 20:47:35'),(7103,'crk','52.90.72.30',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 00:32:24','2020-03-13 00:32:24'),(7104,'currentaffairs','52.91.74.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 03:07:06','2020-03-13 03:07:06'),(7105,'chemistry','66.249.88.54',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 04:13:43','2020-03-13 22:03:51'),(7106,'biology','54.226.184.43',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:52:03','2020-03-13 09:52:04'),(7107,'english','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:56:39','2020-03-13 09:56:39'),(7108,'accounting','54.226.184.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 09:58:08','2020-03-13 09:58:08'),(7109,'chemistry','3.92.56.188',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7110,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7111,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7112,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7113,'chemistry','3.92.56.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 15:46:14','2020-03-13 15:46:14'),(7114,'chemistry','54.242.59.9',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 16:39:40','2020-03-13 16:39:41'),(7115,'chemistry','207.46.13.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 20:02:53','2020-03-13 20:02:53'),(7116,'chemistry','54.146.129.212',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7117,'chemistry','54.146.129.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 21:43:04','2020-03-13 21:43:04'),(7118,'chemistry','66.249.83.202',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-13 22:03:49','2020-03-13 22:03:51'),(7119,'biology','54.152.253.226',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 02:58:06','2020-03-14 02:58:06'),(7120,'mathematics','66.249.83.200',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 08:36:31','2020-03-14 08:36:33'),(7121,'english','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7122,'mathematics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:34'),(7123,'chemistry','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:34','2020-03-14 10:43:35'),(7124,'economics','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:35','2020-03-14 10:43:36'),(7125,'civiledu','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:36','2020-03-14 10:43:36'),(7126,'insurance','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7127,'currentaffairs','34.239.245.38',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:43:37','2020-03-14 10:43:37'),(7128,'commerce','34.239.245.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 10:45:23','2020-03-14 10:45:23'),(7129,'chemistry','3.90.43.218',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 13:49:52','2020-03-14 13:49:52'),(7130,'crk','54.161.109.212',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 14:49:17','2020-03-14 14:49:17'),(7131,'english','52.91.100.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:07:53','2020-03-14 18:07:53'),(7132,'chemistry','86.121.62.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:41:03','2020-03-14 18:41:03'),(7133,'chemistry','3.87.81.186',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 18:54:06','2020-03-14 18:54:06'),(7134,'chemistry','5.255.250.50',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:21:06','2020-03-14 19:21:06'),(7135,'chemistry','105.112.38.232',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:05','2020-03-15 06:16:13'),(7136,'mathematics','105.112.38.232',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:52:50','2020-03-14 19:55:10'),(7137,'chemistry','54.146.242.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 19:53:47','2020-03-14 19:53:51'),(7138,'mathematics','54.145.20.196',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 20:35:13','2020-03-14 20:35:13'),(7139,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7140,'biology','3.82.130.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 21:44:12','2020-03-14 21:44:12'),(7141,'chemistry','18.209.61.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:43:11','2020-03-14 22:43:11'),(7142,'biology','14.199.220.107',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-14 22:46:33','2020-03-14 22:46:34'),(7143,'economics','3.82.205.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:07:15','2020-03-15 01:07:15'),(7144,'chemistry','66.249.64.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 01:41:19','2020-03-15 01:41:22'),(7145,'geography','18.209.11.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 02:28:10','2020-03-15 02:28:10'),(7146,'geography','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:36:57','2020-03-15 03:36:57'),(7147,'biology','18.212.109.166',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 03:42:39','2020-03-15 03:42:39'),(7148,'mathematics','105.112.38.221',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 07:08:04','2020-03-15 07:08:05'),(7149,'physics','54.209.184.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 10:35:32','2020-03-15 10:35:32'),(7150,'chemistry','61.177.20.67',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:07:25','2020-03-15 11:08:03'),(7151,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7152,'english','3.80.33.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 11:39:52','2020-03-15 11:39:52'),(7153,'englishlit','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:00:27','2020-03-15 13:00:27'),(7154,'geography','3.86.67.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:12:58','2020-03-15 13:12:58'),(7155,'chemistry','66.249.80.40',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 13:13:16','2020-03-15 13:13:18'),(7156,'currentaffairs','54.157.45.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:17:59','2020-03-15 14:17:59'),(7157,'chemistry','114.119.165.83',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 14:58:19','2020-04-09 07:14:34'),(7158,'mathematics','197.210.70.99',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 15:43:48','2020-03-15 15:43:56'),(7159,'biology','3.80.249.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 16:18:19','2020-03-15 16:18:19'),(7160,'chemistry','40.77.167.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 17:54:45','2020-03-15 17:54:45'),(7161,'chemistry','54.234.65.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:02:01','2020-03-15 19:02:01'),(7162,'chemistry','192.3.183.226',69,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 19:05:22','2020-03-16 02:10:39'),(7163,'physics','54.175.61.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:07:09','2020-03-15 23:07:09'),(7164,'mathematics','54.152.128.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-15 23:41:27','2020-03-15 23:41:27'),(7165,'chemistry','5.255.250.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 01:11:48','2020-03-16 01:11:48'),(7166,'geography','100.27.28.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 02:48:46','2020-03-16 02:48:46'),(7167,'government','18.204.205.207',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 03:52:44','2020-03-16 03:52:44'),(7168,'mathematics','52.87.174.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 04:36:55','2020-03-16 04:36:55'),(7169,'history','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:37:41','2020-03-16 06:37:41'),(7170,'biology','34.230.5.124',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:40'),(7171,'biology','34.230.5.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 06:39:39','2020-03-16 06:39:39'),(7172,'crk','35.173.183.123',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:03:46','2020-03-16 09:03:46'),(7173,'chemistry','66.249.88.55',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 09:48:48','2020-03-16 09:48:49'),(7174,'geography','54.226.6.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 14:13:41','2020-03-16 14:13:41'),(7175,'mathematics','105.112.153.142',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:02:32','2020-03-16 17:02:47'),(7176,'physics','105.112.153.142',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:03:09','2020-03-16 17:03:10'),(7177,'english','105.112.153.142',480,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 17:04:23','2020-03-16 20:08:50'),(7178,'accounting','54.144.114.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-16 21:09:52','2020-03-16 21:09:52'),(7179,'history','54.152.71.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 07:17:16','2020-03-17 07:17:16'),(7180,'english','41.86.149.34',280,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 09:42:41','2020-03-17 12:11:29'),(7181,'english','105.112.22.72',440,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-17 15:51:33','2020-03-17 16:19:25'),(7182,'chemistry','105.112.22.72',323,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 16:24:18','2020-03-17 17:11:03'),(7183,'physics','105.112.22.72',164,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-17 17:05:04','2020-03-17 17:28:30'),(7184,'mathematics','105.112.22.72',149,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:14:51','2020-03-17 17:38:27'),(7185,'government','105.112.22.72',276,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:40:56','2020-03-17 17:50:13'),(7186,'englishlit','105.112.47.130',334,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:54:27','2020-03-17 18:14:37'),(7187,'government','105.112.47.130',22,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 17:56:02','2020-03-17 17:56:03'),(7188,'crk','105.112.47.130',543,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:16:10','2020-03-17 18:30:39'),(7189,'english','105.112.47.130',40,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:18:33','2020-03-17 18:18:35'),(7190,'accounting','105.112.47.130',158,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:35:02','2020-03-17 18:37:47'),(7191,'chemistry','34.227.17.84',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-17 18:52:23','2020-03-17 18:52:23'),(7192,'chemistry','144.76.67.169',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 00:01:13','2020-03-18 00:01:58'),(7193,'chemistry','54.36.149.77',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:03:44','2020-03-18 05:03:44'),(7194,'economics','52.201.123.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 05:33:29','2020-03-18 05:33:29'),(7195,'history','3.93.187.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 11:38:00','2020-03-18 11:38:00'),(7196,'english','129.205.113.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:00:34','2020-03-18 20:00:34'),(7197,'chemistry','66.249.88.56',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:39:56','2020-03-18 20:39:58'),(7198,'irk','54.90.235.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 20:56:56','2020-03-18 20:56:56'),(7199,'chemistry','54.36.150.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 21:24:26','2020-03-18 21:24:26'),(7200,'crk','18.232.99.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-18 23:57:52','2020-03-18 23:57:52'),(7201,'commerce','3.88.101.48',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 01:46:16','2020-03-19 01:46:16'),(7202,'accounting','3.81.2.71',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 05:42:19','2020-03-19 05:42:19'),(7203,'chemistry','66.102.8.229',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 07:35:52','2020-03-19 07:35:54'),(7204,'economics','18.209.171.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 08:15:35','2020-03-19 08:15:35'),(7205,'chemistry','3.87.142.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 11:32:20','2020-03-19 11:32:20'),(7206,'government','54.172.25.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 12:12:58','2020-03-19 12:12:58'),(7207,'economics','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:31:06','2020-03-19 14:31:06'),(7208,'commerce','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:35:27','2020-03-19 14:35:27'),(7209,'geography','3.80.49.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 14:55:22','2020-03-19 14:55:22'),(7210,'government','54.242.179.61',1,'Nigeria','NG','LA','Lagos','Lagos','','6.4531','3.3958','2020-03-19 20:38:35','2020-03-19 20:38:35'),(7211,'chemistry','18.207.197.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-19 21:48:48','2020-03-19 21:48:48'),(7212,'english','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:32:19','2020-03-20 00:32:19'),(7213,'englishlit','54.147.174.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 00:50:34','2020-03-20 00:50:34'),(7214,'chemistry','114.119.165.169',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 01:18:55','2020-04-05 03:27:02'),(7215,'accounting','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7216,'biology','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7217,'chemistry','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7218,'crk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:25'),(7219,'geography','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:25','2020-03-20 06:02:26'),(7220,'irk','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7221,'civiledu','3.92.192.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 06:02:26','2020-03-20 06:02:26'),(7222,'crk','3.93.49.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 08:22:17','2020-03-20 08:22:17'),(7223,'chemistry','197.210.71.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 09:39:01','2020-03-20 09:39:01'),(7224,'chemistry','117.63.134.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:39:07','2020-03-20 14:39:07'),(7225,'chemistry','41.190.2.160',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 14:55:17','2020-03-20 14:55:40'),(7226,'physics','18.234.143.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 16:22:33','2020-03-20 16:22:33'),(7227,'currentaffairs','3.88.171.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 18:44:05','2020-03-20 18:44:05'),(7228,'englishlit','3.80.210.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 19:58:26','2020-03-20 19:58:26'),(7229,'crk','54.234.191.51',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-20 22:13:05','2020-03-20 22:13:05'),(7230,'englishlit','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:13:40','2020-03-21 00:13:40'),(7231,'economics','54.146.163.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 00:45:11','2020-03-21 00:45:11'),(7232,'government','54.81.79.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:06:58','2020-03-21 02:06:58'),(7233,'chemistry','36.49.27.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 02:48:44','2020-03-21 02:48:44'),(7234,'irk','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:15:05','2020-03-21 04:15:05'),(7235,'english','107.22.30.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 04:39:38','2020-03-21 04:39:38'),(7236,'englishlit','41.80.20.210',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 05:52:43','2020-03-21 05:53:35'),(7237,'chemistry','154.113.86.108',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 08:44:48','2020-03-21 08:44:48'),(7238,'chemistry','54.36.150.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 10:28:05','2020-03-21 10:28:05'),(7239,'chemistry','42.49.170.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 12:22:18','2020-03-21 12:22:18'),(7240,'english','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:55','2020-03-21 13:16:56'),(7241,'commerce','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:56','2020-03-21 13:16:58'),(7242,'physics','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:16:59','2020-03-21 13:18:04'),(7243,'englishlit','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:00','2020-03-21 13:17:01'),(7244,'insurance','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:01','2020-03-21 13:18:05'),(7245,'currentaffairs','18.234.135.27',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:18:05'),(7246,'history','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:17:02','2020-03-21 13:17:03'),(7247,'accounting','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:03','2020-03-21 13:18:04'),(7248,'government','18.234.135.27',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:16'),(7249,'economics','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7250,'civiledu','18.234.135.27',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 13:18:04','2020-03-21 13:18:04'),(7251,'chemistry','102.89.3.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-21 14:16:11','2020-03-21 14:16:11'),(7252,'accounting','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:30:53','2020-03-22 03:30:53'),(7253,'englishlit','18.207.189.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 03:32:36','2020-03-22 03:32:36'),(7254,'chemistry','116.248.186.127',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 12:56:38','2020-03-22 12:56:38'),(7255,'accounting','105.112.52.147',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 15:00:00','2020-03-22 15:00:02'),(7256,'commerce','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7257,'physics','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:11','2020-03-22 16:02:11'),(7258,'englishlit','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7259,'government','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7260,'crk','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7261,'insurance','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7262,'history','18.208.154.242',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 16:02:12','2020-03-22 16:02:12'),(7263,'chemistry','59.63.75.225',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 17:32:33','2020-03-22 17:32:34'),(7264,'mathematics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7265,'biology','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7266,'physics','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7267,'chemistry','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7268,'geography','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7269,'irk','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:32'),(7270,'currentaffairs','54.234.191.51',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 19:42:32','2020-03-22 19:42:33'),(7271,'commerce','3.89.66.38',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-22 23:32:36','2020-03-22 23:32:36'),(7272,'chemistry','77.88.5.109',27,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 01:02:57','2020-05-28 06:27:27'),(7273,'crk','52.90.48.182',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 04:30:54','2020-03-23 04:30:54'),(7274,'biology','3.92.24.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 08:53:22','2020-03-23 08:53:22'),(7275,'mathematics','54.165.10.238',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 10:35:39','2020-03-23 10:35:39'),(7276,'economics','54.164.64.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 13:08:24','2020-03-23 13:08:24'),(7277,'geography','18.209.158.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 14:04:53','2020-03-23 14:04:53'),(7278,'geography','3.89.20.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 15:04:00','2020-03-23 15:04:00'),(7279,'englishlit','54.210.71.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:16:17','2020-03-23 23:16:17'),(7280,'geography','54.91.123.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-23 23:54:39','2020-03-23 23:54:39'),(7281,'currentaffairs','18.234.156.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 01:21:49','2020-03-24 01:21:49'),(7282,'physics','18.215.170.148',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 02:05:13','2020-03-24 02:05:13'),(7283,'english','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7284,'mathematics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7285,'physics','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7286,'irk','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7287,'civiledu','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7288,'insurance','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7289,'currentaffairs','3.90.199.240',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 06:59:36','2020-03-24 06:59:36'),(7290,'physics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 07:37:59','2020-03-24 07:37:59'),(7291,'mathematics','54.145.146.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 08:09:12','2020-03-24 08:09:12'),(7292,'mathematics','100.24.26.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-24 14:18:48','2020-03-24 14:18:48'),(7293,'accounting','52.87.217.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 04:37:55','2020-03-25 04:37:55'),(7294,'chemistry','114.119.160.245',41,'','SG','','Singapore','Lagos',NULL,'6.4541','3.3947','2020-03-25 10:25:16','2020-06-23 19:50:56'),(7295,'history','52.23.203.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 12:19:56','2020-03-25 12:19:56'),(7296,'chemistry','154.118.9.188',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 14:09:50','2020-03-25 14:09:50'),(7297,'commerce','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7298,'chemistry','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7299,'englishlit','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:52'),(7300,'crk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:52','2020-03-25 17:28:53'),(7301,'geography','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7302,'irk','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7303,'insurance','3.86.48.26',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 17:28:53','2020-03-25 17:28:53'),(7304,'biology','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7305,'physics','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7306,'chemistry','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:19'),(7307,'crk','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:19','2020-03-25 20:35:20'),(7308,'geography','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7309,'civiledu','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7310,'currentaffairs','54.205.110.125',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-25 20:35:20','2020-03-25 20:35:20'),(7311,'english','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7312,'commerce','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7313,'biology','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7314,'government','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7315,'geography','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:43','2020-03-26 07:16:43'),(7316,'civiledu','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7317,'currentaffairs','3.92.53.24',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 07:16:44','2020-03-26 07:16:44'),(7318,'history','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 08:23:17','2020-03-26 08:23:17'),(7319,'economics','3.84.167.141',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:17:04','2020-03-26 09:17:04'),(7320,'english','197.211.61.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 09:24:43','2020-03-26 09:24:43'),(7321,'biology','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:33:58','2020-03-26 11:33:59'),(7322,'chemistry','102.89.3.190',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:00','2020-03-26 11:34:00'),(7323,'commerce','102.89.3.126',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 11:34:01','2020-03-26 11:34:01'),(7324,'crk','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:22','2020-03-26 12:14:19'),(7325,'commerce','102.89.3.190',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:06:23','2020-03-26 12:11:33'),(7326,'crk','102.89.3.190',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:08','2020-03-26 12:08:09'),(7327,'commerce','102.89.2.90',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:08:09','2020-03-26 12:14:21'),(7328,'crk','102.89.3.126',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:11:32','2020-03-26 12:11:32'),(7329,'crk','102.89.2.115',12,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:21:27','2020-03-26 12:22:22'),(7330,'crk','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:44','2020-03-26 12:22:45'),(7331,'commerce','197.210.84.191',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:22:46','2020-03-26 12:22:46'),(7332,'crk','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:40','2020-03-26 12:23:40'),(7333,'commerce','197.210.84.177',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:23:41','2020-03-26 12:23:42'),(7334,'crk','197.210.84.45',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:11','2020-03-26 12:24:12'),(7335,'commerce','197.210.84.39',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:24:12','2020-03-26 12:24:13'),(7336,'crk','197.210.84.227',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:09','2020-03-26 12:29:09'),(7337,'commerce','197.210.84.119',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:29:10','2020-03-26 12:29:10'),(7338,'crk','197.210.84.207',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:03','2020-03-26 12:32:04'),(7339,'commerce','197.210.84.125',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:32:05','2020-03-26 12:32:06'),(7340,'crk','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:21','2020-03-26 12:36:21'),(7341,'commerce','197.210.84.139',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:22','2020-03-26 12:36:22'),(7342,'crk','197.210.84.31',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:30','2020-03-26 12:36:30'),(7343,'commerce','197.210.84.245',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:36:31','2020-03-26 12:36:32'),(7344,'crk','197.210.84.165',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:47','2020-03-26 12:37:47'),(7345,'commerce','197.210.84.17',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:48','2020-03-26 12:37:48'),(7346,'crk','197.210.85.81',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:57','2020-03-26 12:37:57'),(7347,'commerce','197.210.85.1',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:37:58','2020-03-26 12:37:58'),(7348,'crk','197.210.84.67',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:00','2020-03-26 12:44:00'),(7349,'commerce','197.210.84.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:44:01','2020-03-26 12:44:01'),(7350,'english','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:13','2020-03-26 13:09:04'),(7351,'mathematics','197.210.45.39',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 12:57:14','2020-03-26 13:09:05'),(7352,'english','197.210.85.140',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:15','2020-03-26 14:03:15'),(7353,'mathematics','197.210.85.254',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:03:16','2020-03-26 14:03:17'),(7354,'english','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:01','2020-03-26 14:10:37'),(7355,'mathematics','197.210.44.19',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 14:10:03','2020-03-26 14:10:38'),(7356,'irk','3.94.121.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:26:17','2020-03-26 19:26:17'),(7357,'chemistry','114.119.161.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 19:45:34','2020-03-26 19:45:34'),(7358,'crk','174.129.131.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-26 22:50:44','2020-03-26 22:50:44'),(7359,'commerce','3.91.233.158',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 01:48:15','2020-03-27 01:48:15'),(7360,'accounting','54.208.155.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 05:24:26','2020-03-27 05:24:26'),(7361,'economics','52.91.100.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:22:14','2020-03-27 09:22:14'),(7362,'chemistry','66.102.8.227',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 09:51:49','2020-03-27 09:51:51'),(7363,'government','54.165.127.159',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 10:43:15','2020-03-27 10:43:15'),(7364,'chemistry','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:21:50','2020-03-27 11:21:50'),(7365,'english','102.89.0.135',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:47','2020-03-27 11:36:38'),(7366,'mathematics','102.89.1.184',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:26:48','2020-04-27 18:37:31'),(7367,'mathematics','102.89.1.114',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:33:55','2020-03-27 11:33:55'),(7368,'mathematics','102.89.0.135',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 11:36:39','2020-03-27 11:36:39'),(7369,'geography','54.209.201.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 13:36:58','2020-03-27 13:36:58'),(7370,'commerce','54.162.99.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 14:52:49','2020-03-27 14:52:49'),(7371,'economics','34.227.72.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 17:36:43','2020-03-27 17:36:43'),(7372,'crk','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 19:48:01','2020-03-27 19:48:01'),(7373,'insurance','18.208.231.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 20:10:12','2020-03-27 20:10:12'),(7374,'mathematics','18.212.220.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 22:19:25','2020-03-27 22:19:25'),(7375,'englishlit','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:27:23','2020-03-27 23:27:23'),(7376,'english','3.85.15.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-27 23:38:18','2020-03-27 23:38:18'),(7377,'crk','54.91.106.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 02:52:57','2020-03-28 02:52:57'),(7378,'english','54.204.180.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 04:14:13','2020-03-28 04:14:13'),(7379,'accounting','105.112.31.78',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:01:29','2020-03-28 06:01:32'),(7380,'chemistry','105.112.31.78',218,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 06:16:34','2020-03-28 10:26:50'),(7381,'mathematics','105.112.31.78',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:21:28','2020-03-28 06:21:37'),(7382,'crk','105.112.31.78',75,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:24:50','2020-03-28 06:24:54'),(7383,'crk','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:58:54','2020-03-28 06:58:57'),(7384,'mathematics','3.81.58.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 06:59:17','2020-03-28 06:59:19'),(7385,'biology','3.81.58.70',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:00:16','2020-03-28 07:28:03'),(7386,'biology','18.212.96.129',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:28:19','2020-03-28 07:29:29'),(7387,'chemistry','18.212.96.129',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-03-28 07:29:37','2020-03-28 07:46:04'),(7388,'mathematics','18.212.96.129',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 07:30:36','2020-03-28 07:30:39'),(7389,'chemistry','54.196.165.71',160,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:19:31','2020-03-28 08:21:56'),(7390,'crk','3.82.235.188',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 08:53:24','2020-03-28 08:53:24'),(7391,'chemistry','157.55.39.86',7,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 09:13:40','2020-03-28 09:13:40'),(7392,'physics','54.145.168.48',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 14:48:56','2020-03-28 14:48:56'),(7393,'english','35.172.185.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 17:23:34','2020-03-28 17:23:34'),(7394,'currentaffairs','54.84.20.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 18:18:16','2020-03-28 18:18:16'),(7395,'englishlit','54.84.20.113',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 18:46:01','2020-03-28 18:46:01'),(7396,'crk','34.207.92.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 20:17:19','2020-03-28 20:17:19'),(7397,'englishlit','54.227.76.74',1,'',NULL,'',NULL,NULL,NULL,'','','2020-03-28 22:38:07','2020-03-28 22:38:07'),(7398,'chemistry','100.26.102.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-28 23:45:57','2020-03-28 23:45:57'),(7399,'english','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:26:48','2020-03-29 01:26:48'),(7400,'government','54.162.158.34',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 01:48:28','2020-03-29 01:48:28'),(7401,'currentaffairs','54.166.138.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 02:46:57','2020-03-29 02:46:57'),(7402,'economics','54.224.84.163',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 03:48:49','2020-03-29 03:48:49'),(7403,'chemistry','3.235.65.91',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 05:20:26','2020-03-29 05:44:48'),(7404,'english','54.174.190.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 10:18:53','2020-03-29 10:18:53'),(7405,'civiledu','54.172.166.243',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:13:13','2020-03-29 11:13:13'),(7406,'chemistry','54.174.40.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 11:55:39','2020-03-29 11:55:39'),(7407,'chemistry','180.103.58.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:00:01','2020-03-29 12:00:01'),(7408,'chemistry','82.145.220.58',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:01:04','2020-03-29 12:01:05'),(7409,'mathematics','54.92.219.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 12:42:18','2020-03-29 12:42:18'),(7410,'mathematics','18.206.91.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 13:35:15','2020-03-29 13:35:15'),(7411,'chemistry','58.255.198.2',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 14:37:51','2020-03-29 14:37:51'),(7412,'chemistry','111.160.25.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 17:47:36','2020-03-29 17:47:36'),(7413,'chemistry','18.206.237.17',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 18:38:42','2020-03-29 18:38:45'),(7414,'currentaffairs','54.163.120.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 19:48:21','2020-03-29 19:48:21'),(7415,'chemistry','54.145.49.107',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-29 21:49:35','2020-03-29 21:49:35'),(7416,'englishlit','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:05:16','2020-03-30 01:05:16'),(7417,'accounting','3.91.199.18',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 01:33:36','2020-03-30 01:33:36'),(7418,'commerce','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7419,'accounting','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7420,'physics','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7421,'geography','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7422,'civiledu','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7423,'currentaffairs','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7424,'history','54.167.27.79',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-30 16:44:31','2020-03-30 16:44:31'),(7425,'mathematics','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:50:17','2020-03-31 05:50:17'),(7426,'commerce','54.196.48.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 05:51:26','2020-03-31 05:51:26'),(7427,'geography','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 07:58:39','2020-03-31 10:19:30'),(7428,'biology','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:01:26','2020-03-31 09:22:41'),(7429,'currentaffairs','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:27:55','2020-03-31 09:50:10'),(7430,'government','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 08:46:16','2020-03-31 10:11:00'),(7431,'civiledu','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:00:56','2020-03-31 09:10:50'),(7432,'english','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:08:10','2020-03-31 10:09:09'),(7433,'mathematics','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7434,'commerce','3.84.243.194',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 10:07:16'),(7435,'chemistry','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7436,'crk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7437,'irk','3.84.243.194',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 09:50:10','2020-03-31 09:50:10'),(7438,'englishlit','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 16:48:59','2020-03-31 16:48:59'),(7439,'physics','3.84.150.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 17:25:08','2020-03-31 17:25:08'),(7440,'geography','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 18:36:35','2020-03-31 18:36:35'),(7441,'currentaffairs','54.166.163.9',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 19:04:20','2020-03-31 19:04:20'),(7442,'currentaffairs','54.224.172.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 21:22:54','2020-03-31 21:22:54'),(7443,'chemistry','197.210.84.205',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:38','2020-03-31 22:04:43'),(7444,'chemistry','197.210.84.199',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:04:50','2020-03-31 22:04:55'),(7445,'chemistry','197.210.84.29',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-03-31 22:05:03','2020-03-31 22:05:05'),(7446,'physics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:04:01','2020-04-01 02:04:01'),(7447,'mathematics','54.172.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 02:10:56','2020-04-01 02:10:56'),(7448,'mathematics','3.80.85.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 04:50:44','2020-04-01 04:50:44'),(7449,'mathematics','18.212.146.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 06:03:05','2020-04-01 06:03:05'),(7450,'chemistry','114.119.163.81',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 09:42:15','2020-04-01 09:42:15'),(7451,'chemistry','197.211.57.245',43,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 12:50:39','2020-04-01 12:52:16'),(7452,'english','34.230.39.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 16:42:36','2020-04-01 16:42:36'),(7453,'mathematics','18.234.121.22',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 19:01:10','2020-04-01 19:01:10'),(7454,'accounting','54.147.176.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 20:49:28','2020-04-01 20:49:28'),(7455,'biology','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:56','2020-04-01 21:17:56'),(7456,'physics','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7457,'government','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7458,'geography','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7459,'economics','54.147.176.88',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-22 05:41:24'),(7460,'civiledu','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7461,'insurance','54.147.176.88',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-01 21:17:57','2020-04-01 21:17:57'),(7462,'chemistry','54.36.148.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 00:49:26','2020-04-02 00:49:29'),(7463,'history','54.236.10.248',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 03:47:55','2020-04-02 03:47:55'),(7464,'chemistry','197.210.70.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-02 20:57:50','2020-04-02 20:57:52'),(7465,'economics','34.229.174.78',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 01:39:45','2020-04-03 01:39:45'),(7466,'history','3.81.12.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 02:51:48','2020-04-03 02:51:48'),(7467,'government','102.89.1.199',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 11:46:35','2020-04-03 11:46:36'),(7468,'commerce','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7469,'accounting','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:07','2020-04-03 14:39:07'),(7470,'crk','54.224.177.216',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:53:40'),(7471,'economics','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7472,'civiledu','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7473,'currentaffairs','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7474,'history','54.224.177.216',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 14:39:08','2020-04-03 14:39:08'),(7475,'physics','54.227.76.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 18:36:02','2020-04-03 18:36:02'),(7476,'english','3.85.190.162',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 21:48:32','2020-04-03 21:48:32'),(7477,'commerce','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-03 23:42:41','2020-04-03 23:42:41'),(7478,'economics','3.84.42.74',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 00:01:21','2020-04-04 00:01:21'),(7479,'chemistry','207.46.13.220',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 01:45:34','2020-04-04 10:12:07'),(7480,'government','54.209.223.160',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 02:40:53','2020-04-04 02:40:53'),(7481,'geography','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:46:07','2020-04-04 03:46:07'),(7482,'chemistry','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 03:56:04','2020-04-04 03:56:04'),(7483,'government','3.82.206.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 04:24:02','2020-04-04 04:24:02'),(7484,'economics','54.87.134.167',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:29:31','2020-04-04 08:29:31'),(7485,'mathematics','105.112.56.96',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 08:37:54','2020-04-04 08:42:05'),(7486,'english','197.210.71.244',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:22:13','2020-04-04 10:22:13'),(7487,'chemistry','197.211.61.123',34,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:43:13','2020-04-04 10:46:06'),(7488,'physics','197.211.61.123',15,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:46:42','2020-04-04 10:46:42'),(7489,'english','197.211.61.123',726,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:11','2020-04-04 12:22:56'),(7490,'commerce','3.80.214.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 10:47:21','2020-04-04 10:47:21'),(7491,'english','197.211.61.125',406,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-04 12:41:24','2020-04-04 13:00:00'),(7492,'chemistry','197.211.61.125',10,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:00:38','2020-04-04 13:13:18'),(7493,'insurance','3.86.32.0',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 13:22:34','2020-04-04 13:22:34'),(7494,'englishlit','52.23.172.123',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:17:24','2020-04-04 14:17:24'),(7495,'chemistry','157.55.39.42',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 14:48:38','2020-04-04 14:48:38'),(7496,'chemistry','66.249.64.104',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:18:30','2020-04-04 17:18:31'),(7497,'english','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:20:12','2020-04-04 17:20:12'),(7498,'crk','18.212.169.137',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-04 17:30:11','2020-04-04 17:30:11'),(7499,'crk','54.163.215.133',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-04 22:41:54','2020-04-04 22:41:54'),(7500,'physics','52.91.100.197',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 04:23:04','2020-04-05 04:23:04'),(7501,'biology','3.81.133.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 05:11:31','2020-04-05 05:11:31'),(7502,'englishlit','54.89.124.215',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 06:31:33','2020-04-05 06:31:33'),(7503,'chemistry','197.210.71.161',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:23:44','2020-04-05 08:23:44'),(7504,'chemistry','197.210.71.5',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:35','2020-04-05 08:28:01'),(7505,'chemistry','197.210.71.175',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:25:53','2020-04-05 08:29:40'),(7506,'chemistry','197.210.71.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:28:36','2020-04-05 08:28:36'),(7507,'english','197.210.71.141',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:32:51','2020-04-05 08:32:53'),(7508,'english','197.210.174.172',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 08:34:34','2020-04-05 08:34:37'),(7509,'currentaffairs','3.87.91.99',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 09:08:45','2020-04-05 09:08:45'),(7510,'crk','18.206.247.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:11:56','2020-04-05 10:11:56'),(7511,'englishlit','3.208.20.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 10:55:11','2020-04-05 10:55:11'),(7512,'chemistry','66.249.88.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 11:30:48','2020-04-05 11:30:50'),(7513,'economics','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:16:19','2020-04-05 12:16:19'),(7514,'government','54.82.41.224',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 12:53:23','2020-04-05 12:53:23'),(7515,'english','34.233.133.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-05 13:47:53','2020-04-05 13:47:53'),(7516,'mathematics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7517,'commerce','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7518,'biology','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7519,'physics','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7520,'chemistry','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:25'),(7521,'englishlit','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:25','2020-04-06 12:14:26'),(7522,'history','54.152.156.252',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:14:26','2020-04-06 12:14:26'),(7523,'accounting','54.152.156.252',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 12:19:13','2020-04-06 12:19:13'),(7524,'accounting','3.80.94.111',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 15:07:41','2020-04-06 15:07:41'),(7525,'chemistry','105.112.115.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-06 22:20:42','2020-04-06 22:20:42'),(7526,'commerce','34.227.162.84',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 06:35:37','2020-04-07 06:35:37'),(7527,'crk','107.23.255.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 08:35:49','2020-04-07 08:35:49'),(7528,'physics','18.212.66.10',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 09:45:19','2020-04-07 09:45:19'),(7529,'mathematics','34.236.143.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 13:42:20','2020-04-07 13:42:20'),(7530,'chemistry','64.233.172.196',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 14:19:21','2020-04-07 14:19:22'),(7531,'chemistry','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:06','2020-04-07 16:55:06'),(7532,'chemistry','197.210.53.20',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:14','2020-04-07 16:55:14'),(7533,'chemistry','197.210.52.112',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 16:55:33','2020-04-07 16:55:33'),(7534,'geography','3.95.225.189',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 17:53:36','2020-04-07 17:53:36'),(7535,'chemistry','197.210.52.88',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:07:14','2020-04-07 19:19:19'),(7536,'chemistry','197.210.53.6',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:32:43','2020-04-07 18:39:36'),(7537,'chemistry','197.210.52.36',35,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:34:00','2020-04-07 18:43:49'),(7538,'chemistry','197.210.53.99',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:05','2020-04-07 19:17:34'),(7539,'chemistry','197.210.52.22',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 18:37:27','2020-04-07 18:48:54'),(7540,'english','197.210.53.99',695,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:56'),(7541,'english','197.210.53.6',765,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:31'),(7542,'english','197.210.53.65',848,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:28:00'),(7543,'english','197.210.52.12',917,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:27:55'),(7544,'english','197.210.52.88',795,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:55'),(7545,'english','197.210.52.36',477,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 19:24:49','2020-04-07 19:26:58'),(7546,'geography','18.205.107.57',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 20:02:08','2020-04-07 20:02:08'),(7547,'english','108.41.239.178',1802,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-12 16:31:21'),(7548,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7549,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7550,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7551,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7552,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7553,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7554,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7555,'english','108.41.239.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-07 23:03:59','2020-04-07 23:03:59'),(7556,'irk','108.41.239.178',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:01','2020-04-12 16:31:20'),(7557,'civiledu','108.41.239.178',626,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7558,'insurance','108.41.239.178',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:23'),(7559,'currentaffairs','108.41.239.178',429,'',NULL,'',NULL,NULL,NULL,'','','2020-04-07 23:05:02','2020-04-12 16:31:21'),(7560,'physics','54.156.62.219',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 00:38:52','2020-04-08 00:38:52'),(7561,'englishlit','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:17:24','2020-04-08 01:17:24'),(7562,'geography','3.93.70.134',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 01:43:32','2020-04-08 01:43:32'),(7563,'currentaffairs','3.94.134.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 03:38:40','2020-04-08 03:38:40'),(7564,'chemistry','77.88.5.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-08 04:45:23','2020-04-08 04:45:23'),(7565,'english','18.206.175.184',3,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:05'),(7566,'chemistry','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7567,'government','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:02','2020-04-08 08:29:02'),(7568,'geography','18.206.175.184',2,'','NG','','Lagos',NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7569,'irk','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7570,'civiledu','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7571,'currentaffairs','18.206.175.184',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 08:29:03','2020-04-08 08:29:03'),(7572,'mathematics','3.95.38.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 10:05:10','2020-04-08 10:05:10'),(7573,'geography','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 11:58:50','2020-04-08 11:58:50'),(7574,'physics','34.238.131.197',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 12:09:29','2020-04-08 12:09:29'),(7575,'mathematics','34.230.69.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-08 13:57:51','2020-04-08 13:57:51'),(7576,'accounting','54.152.166.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 03:29:44','2020-04-09 03:29:44'),(7577,'chemistry','34.203.216.217',233,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-09 06:33:24','2020-04-09 06:37:01'),(7578,'chemistry','197.210.70.115',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 11:54:08','2020-04-09 16:40:18'),(7579,'chemistry','197.210.71.11',401,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:31','2020-04-09 17:27:14'),(7580,'chemistry','197.210.70.183',287,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:08:58','2020-04-09 17:20:35'),(7581,'english','197.210.70.109',813,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:40:07'),(7582,'english','197.210.70.69',465,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 16:38:21'),(7583,'english','197.210.70.149',469,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:25:34'),(7584,'english','197.210.70.211',792,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:31'),(7585,'english','197.210.70.81',624,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7586,'english','197.210.70.183',315,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:35'),(7587,'english','197.210.70.205',600,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:26:30'),(7588,'english','197.210.71.235',595,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:17'),(7589,'english','197.210.70.27',674,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:43','2020-04-09 17:24:52'),(7590,'english','197.210.70.15',552,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:44'),(7591,'english','197.210.71.79',478,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:24:33'),(7592,'english','197.210.70.251',820,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:20:15'),(7593,'english','197.210.70.95',701,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:44','2020-04-09 17:25:00'),(7594,'english','197.210.70.115',676,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 12:28:47','2020-04-09 17:26:31'),(7595,'english','197.210.70.225',620,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:48','2020-04-09 17:26:34'),(7596,'english','197.210.70.53',679,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:33'),(7597,'english','197.210.70.239',623,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:24:53'),(7598,'english','197.210.70.217',663,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:49','2020-04-09 17:26:30'),(7599,'english','197.210.70.1',515,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:51','2020-04-09 17:24:27'),(7600,'english','197.210.70.137',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:52','2020-04-09 17:25:32'),(7601,'english','197.210.71.11',588,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:58','2020-04-09 17:19:49'),(7602,'english','197.210.70.41',639,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:28:59','2020-04-09 17:25:34'),(7603,'english','197.210.70.121',555,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:00','2020-04-09 17:25:35'),(7604,'english','197.210.70.189',462,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:01','2020-04-09 17:25:35'),(7605,'english','197.210.70.171',473,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:04','2020-04-09 17:26:34'),(7606,'english','197.210.71.167',510,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:14','2020-04-09 17:24:21'),(7607,'chemistry','197.210.70.109',327,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:29:42','2020-04-09 17:24:47'),(7608,'mathematics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:35'),(7609,'mathematics','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:25:28'),(7610,'mathematics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:17','2020-04-09 17:18:51'),(7611,'mathematics','197.210.70.171',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:24:24'),(7612,'mathematics','197.210.71.167',520,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 12:30:23','2020-04-09 17:25:25'),(7613,'mathematics','197.210.70.69',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:19:18'),(7614,'mathematics','197.210.70.115',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:18:11'),(7615,'mathematics','197.210.70.149',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:51'),(7616,'mathematics','197.210.70.137',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:38'),(7617,'mathematics','197.210.70.95',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:35'),(7618,'mathematics','197.210.70.121',360,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-09 15:19:32','2020-04-09 17:26:39'),(7619,'mathematics','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:07'),(7620,'accounting','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:37'),(7621,'accounting','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:18:19'),(7622,'commerce','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:19:14'),(7623,'commerce','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:51'),(7624,'commerce','197.210.70.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 15:19:39'),(7625,'commerce','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:33'),(7626,'accounting','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 16:40:18'),(7627,'accounting','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:25:43'),(7628,'commerce','197.210.71.11',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:32','2020-04-09 17:26:44'),(7629,'accounting','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:27:00'),(7630,'commerce','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:26:47'),(7631,'commerce','197.210.71.79',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:38','2020-04-09 17:24:23'),(7632,'biology','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:20:25'),(7633,'commerce','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:17'),(7634,'mathematics','197.210.70.15',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:39','2020-04-09 17:24:30'),(7635,'biology','197.210.71.11',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:40','2020-04-09 17:26:43'),(7636,'biology','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:20:31'),(7637,'biology','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:41','2020-04-09 17:26:10'),(7638,'commerce','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:56'),(7639,'accounting','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:27:03'),(7640,'biology','197.210.70.41',435,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:42','2020-04-09 17:25:55'),(7641,'biology','197.210.70.251',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:26:55'),(7642,'accounting','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:43','2020-04-09 17:25:57'),(7643,'biology','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:26:42'),(7644,'physics','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:44','2020-04-09 17:19:26'),(7645,'biology','197.210.71.167',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:25:49'),(7646,'physics','197.210.70.95',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:45','2020-04-09 17:26:56'),(7647,'physics','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:59'),(7648,'englishlit','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:47','2020-04-09 17:26:11'),(7649,'physics','197.210.70.81',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:26:59'),(7650,'physics','197.210.70.239',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:49','2020-04-09 17:19:05'),(7651,'physics','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:50'),(7652,'biology','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:20:21'),(7653,'englishlit','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:26:12'),(7654,'physics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:50','2020-04-09 17:18:58'),(7655,'chemistry','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:51','2020-04-09 16:40:16'),(7656,'chemistry','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:18:32'),(7657,'physics','197.210.70.211',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:52','2020-04-09 17:26:02'),(7658,'chemistry','197.210.71.167',480,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:53','2020-04-09 17:27:14'),(7659,'englishlit','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:54','2020-04-09 17:18:22'),(7660,'englishlit','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:55','2020-04-09 17:26:25'),(7661,'englishlit','197.210.70.121',357,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:56','2020-04-09 17:26:21'),(7662,'government','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:17'),(7663,'chemistry','197.210.70.217',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:09'),(7664,'government','197.210.70.27',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:26:27'),(7665,'englishlit','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:18:20'),(7666,'chemistry','197.210.70.225',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:57','2020-04-09 17:27:07'),(7667,'government','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:20:42'),(7668,'chemistry','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:19:30'),(7669,'chemistry','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:58','2020-04-09 17:24:47'),(7670,'crk','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:19:59','2020-04-09 17:24:54'),(7671,'government','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:26:18'),(7672,'crk','197.210.71.235',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 17:25:01'),(7673,'government','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:00','2020-04-09 15:51:08'),(7674,'englishlit','197.210.70.81',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:01','2020-04-09 17:26:17'),(7675,'crk','197.210.70.95',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:03','2020-04-09 17:27:20'),(7676,'geography','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:04','2020-04-09 17:27:21'),(7677,'geography','197.210.70.27',278,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:19:43'),(7678,'crk','197.210.70.81',237,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:07','2020-04-09 17:20:43'),(7679,'government','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:08','2020-04-09 17:27:30'),(7680,'geography','197.210.70.15',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:25'),(7681,'government','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:27:17'),(7682,'crk','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:09','2020-04-09 17:26:37'),(7683,'government','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:27:27'),(7684,'crk','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:10','2020-04-09 17:25:07'),(7685,'geography','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:19:46'),(7686,'economics','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:20:58'),(7687,'economics','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:11','2020-04-09 17:26:24'),(7688,'geography','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:25:03'),(7689,'government','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:12','2020-04-09 17:20:43'),(7690,'crk','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 16:39:57'),(7691,'crk','197.210.71.79',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:13','2020-04-09 17:20:43'),(7692,'geography','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:26:23'),(7693,'economics','197.210.71.79',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:20:49'),(7694,'crk','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:14','2020-04-09 17:27:27'),(7695,'geography','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:15','2020-04-09 17:27:29'),(7696,'economics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:17','2020-04-09 17:27:42'),(7697,'economics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:18','2020-04-09 17:25:03'),(7698,'irk','197.210.70.15',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:19:50'),(7699,'economics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:26:12'),(7700,'economics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:19','2020-04-09 17:27:42'),(7701,'irk','197.210.71.167',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:20','2020-04-09 17:20:47'),(7702,'civiledu','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:43'),(7703,'irk','197.210.70.53',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:25:11'),(7704,'economics','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:27:32'),(7705,'irk','197.210.70.41',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:21','2020-04-09 17:18:38'),(7706,'currentaffairs','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:23','2020-04-09 17:25:07'),(7707,'irk','197.210.70.81',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:25:14'),(7708,'civiledu','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:24','2020-04-09 17:19:55'),(7709,'insurance','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:20:58'),(7710,'currentaffairs','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:25','2020-04-09 17:21:02'),(7711,'insurance','197.210.70.69',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:27:50'),(7712,'currentaffairs','197.210.70.1',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 17:21:07'),(7713,'civiledu','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:26','2020-04-09 16:40:24'),(7714,'currentaffairs','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:28','2020-04-09 16:40:39'),(7715,'civiledu','197.210.70.27',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:27:51'),(7716,'history','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:29','2020-04-09 17:21:10'),(7717,'currentaffairs','197.210.71.11',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:20:06'),(7718,'civiledu','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:31','2020-04-09 17:27:39'),(7719,'currentaffairs','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 17:20:11'),(7720,'insurance','197.210.70.205',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 15:22:09'),(7721,'insurance','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:32','2020-04-09 16:34:20'),(7722,'insurance','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:33','2020-04-09 17:27:51'),(7723,'civiledu','197.210.70.95',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:27:39'),(7724,'irk','197.210.71.11',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 17:25:10'),(7725,'civiledu','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:34','2020-04-09 16:29:46'),(7726,'insurance','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:27:52'),(7727,'civiledu','197.210.70.211',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:35','2020-04-09 17:20:55'),(7728,'irk','197.210.70.69',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:18:39'),(7729,'currentaffairs','197.210.70.53',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:20:06'),(7730,'civiledu','197.210.70.109',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:47'),(7731,'currentaffairs','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:36','2020-04-09 17:27:48'),(7732,'currentaffairs','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:48'),(7733,'history','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:28:00'),(7734,'history','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:55'),(7735,'economics','197.210.70.251',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:27:42'),(7736,'irk','197.210.70.217',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:39','2020-04-09 17:20:51'),(7737,'insurance','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:40','2020-04-09 17:19:57'),(7738,'insurance','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:18:43'),(7739,'insurance','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 16:40:38'),(7740,'history','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:21:10'),(7741,'history','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:41','2020-04-09 17:20:11'),(7742,'history','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 16:40:37'),(7743,'history','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:43','2020-04-09 17:21:05'),(7744,'history','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:28:01'),(7745,'history','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:44','2020-04-09 17:27:54'),(7746,'mathematics','197.210.70.183',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:22'),(7747,'commerce','197.210.70.41',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:56','2020-04-09 17:24:24'),(7748,'commerce','197.210.70.149',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:38'),(7749,'biology','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:27:10'),(7750,'mathematics','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:26:47'),(7751,'commerce','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:57','2020-04-09 17:24:39'),(7752,'commerce','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:20:59','2020-04-09 17:26:44'),(7753,'mathematics','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:25:39'),(7754,'accounting','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:01','2020-04-09 17:24:41'),(7755,'commerce','197.210.70.53',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:04','2020-04-09 17:24:17'),(7756,'mathematics','197.210.70.239',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:05','2020-04-09 17:25:37'),(7757,'accounting','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:06','2020-04-09 17:19:01'),(7758,'biology','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:26:47'),(7759,'biology','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:07','2020-04-09 17:18:58'),(7760,'commerce','197.210.70.109',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:19:01'),(7761,'commerce','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:08','2020-04-09 17:20:12'),(7762,'accounting','197.210.70.171',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:11','2020-04-09 17:26:47'),(7763,'accounting','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:12','2020-04-09 17:26:40'),(7764,'mathematics','197.210.70.189',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:26:31'),(7765,'englishlit','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:13','2020-04-09 17:27:13'),(7766,'accounting','197.210.70.15',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:25:40'),(7767,'accounting','197.210.70.53',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:15','2020-04-09 17:20:21'),(7768,'biology','197.210.70.121',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:56'),(7769,'commerce','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:16','2020-04-09 17:26:39'),(7770,'accounting','197.210.71.235',319,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:19:25'),(7771,'physics','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:17','2020-04-09 17:25:59'),(7772,'chemistry','197.210.71.235',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:19','2020-04-09 17:26:05'),(7773,'accounting','197.210.70.1',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:26:47'),(7774,'physics','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:20','2020-04-09 17:19:23'),(7775,'government','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:22','2020-04-09 17:24:50'),(7776,'englishlit','197.210.70.69',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:24','2020-04-09 17:26:21'),(7777,'physics','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:25','2020-04-09 16:31:21'),(7778,'englishlit','197.210.70.211',398,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 17:27:22'),(7779,'biology','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:26','2020-04-09 16:39:44'),(7780,'government','197.210.70.95',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 16:40:23'),(7781,'chemistry','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:27','2020-04-09 17:26:09'),(7782,'irk','197.210.71.235',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:29','2020-04-09 17:25:52'),(7783,'englishlit','197.210.70.205',438,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:30','2020-04-09 17:27:13'),(7784,'irk','197.210.70.27',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:19:47'),(7785,'civiledu','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:31','2020-04-09 17:26:16'),(7786,'civiledu','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 16:34:11'),(7787,'government','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:32','2020-04-09 17:26:23'),(7788,'crk','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:17'),(7789,'civiledu','197.210.70.115',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:27:38'),(7790,'geography','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:33','2020-04-09 17:25:05'),(7791,'government','197.210.70.189',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:27:08'),(7792,'government','197.210.71.79',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:35','2020-04-09 17:24:48'),(7793,'history','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:36','2020-04-09 16:40:38'),(7794,'currentaffairs','197.210.70.69',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:38','2020-04-09 16:32:06'),(7795,'civiledu','197.210.70.189',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:39','2020-04-09 17:21:04'),(7796,'geography','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:41','2020-04-09 17:27:25'),(7797,'chemistry','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:26:14'),(7798,'irk','197.210.70.239',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:19:59'),(7799,'government','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:42','2020-04-09 17:24:54'),(7800,'civiledu','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:43','2020-04-09 17:26:17'),(7801,'crk','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:24:50'),(7802,'geography','197.210.70.41',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:27:23'),(7803,'economics','197.210.70.1',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:44','2020-04-09 17:18:37'),(7804,'currentaffairs','197.210.70.225',437,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:21:06'),(7805,'physics','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:59'),(7806,'physics','197.210.70.137',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:45','2020-04-09 17:26:55'),(7807,'economics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:47','2020-04-09 17:25:08'),(7808,'crk','197.210.70.53',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:20:52'),(7809,'geography','197.210.71.235',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:48','2020-04-09 17:27:37'),(7810,'irk','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:49','2020-04-09 17:20:45'),(7811,'currentaffairs','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:21:03'),(7812,'government','197.210.70.225',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:27:14'),(7813,'biology','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:52','2020-04-09 17:24:31'),(7814,'currentaffairs','197.210.70.121',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:53','2020-04-09 17:27:52'),(7815,'irk','197.210.70.251',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:34'),(7816,'crk','197.210.71.11',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:54','2020-04-09 16:40:29'),(7817,'economics','197.210.70.95',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 17:20:58'),(7818,'history','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:56','2020-04-09 16:32:01'),(7819,'crk','197.210.70.171',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:21:59','2020-04-09 17:25:00'),(7820,'englishlit','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:24:53'),(7821,'irk','197.210.70.171',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:00','2020-04-09 17:27:35'),(7822,'crk','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:38:38'),(7823,'history','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:42'),(7824,'insurance','197.210.70.95',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:19:56'),(7825,'geography','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 17:25:09'),(7826,'crk','197.210.70.239',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:05','2020-04-09 16:33:56'),(7827,'irk','197.210.70.189',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:27:33'),(7828,'insurance','197.210.70.251',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:06','2020-04-09 17:25:11'),(7829,'civiledu','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:07','2020-04-09 17:20:56'),(7830,'insurance','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 16:34:15'),(7831,'irk','197.210.70.149',176,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:09','2020-04-09 17:27:41'),(7832,'currentaffairs','197.210.70.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 16:40:42'),(7833,'economics','197.210.70.121',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:22:10','2020-04-09 17:25:07'),(7834,'commerce','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:50'),(7835,'commerce','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:40','2020-04-09 17:25:41'),(7836,'crk','197.210.71.167',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:20:44'),(7837,'chemistry','197.210.70.251',270,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:05'),(7838,'mathematics','197.210.70.53',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:19:13'),(7839,'englishlit','197.210.71.235',359,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:27:07'),(7840,'commerce','197.210.70.137',236,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:43','2020-04-09 17:26:31'),(7841,'commerce','197.210.71.167',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:24:23'),(7842,'biology','197.210.70.137',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:44','2020-04-09 17:26:06'),(7843,'mathematics','197.210.70.27',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:20:20'),(7844,'accounting','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:45','2020-04-09 17:25:53'),(7845,'biology','197.210.71.235',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:46','2020-04-09 17:26:11'),(7846,'accounting','197.210.70.239',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:26:54'),(7847,'government','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:47','2020-04-09 17:27:08'),(7848,'physics','197.210.70.205',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:48','2020-04-09 17:26:05'),(7849,'physics','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:24:29'),(7850,'physics','197.210.71.167',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:19:22'),(7851,'englishlit','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:49','2020-04-09 17:26:09'),(7852,'physics','197.210.70.149',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:50','2020-04-09 17:26:08'),(7853,'chemistry','197.210.71.79',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:27:13'),(7854,'geography','197.210.70.137',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:51','2020-04-09 17:25:02'),(7855,'geography','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:20:50'),(7856,'geography','197.210.70.115',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:52','2020-04-09 17:25:06'),(7857,'accounting','197.210.71.11',119,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:20:26'),(7858,'physics','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:19:05'),(7859,'chemistry','197.210.70.171',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 17:18:26'),(7860,'crk','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:53','2020-04-09 16:39:56'),(7861,'geography','197.210.70.171',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:25:18'),(7862,'government','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:24:59'),(7863,'economics','197.210.70.217',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:55','2020-04-09 17:27:25'),(7864,'government','197.210.70.239',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:27:11'),(7865,'economics','197.210.70.15',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:56','2020-04-09 17:26:31'),(7866,'irk','197.210.70.1',180,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:19:46'),(7867,'insurance','197.210.70.225',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 16:40:29'),(7868,'irk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:20:55'),(7869,'economics','197.210.70.183',279,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:57','2020-04-09 17:27:43'),(7870,'civiledu','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:44:58','2020-04-09 17:27:43'),(7871,'currentaffairs','197.210.70.149',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 17:21:04'),(7872,'civiledu','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:00','2020-04-09 16:31:55'),(7873,'history','197.210.70.81',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 16:30:00'),(7874,'civiledu','197.210.70.41',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:27:44'),(7875,'currentaffairs','197.210.70.41',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:01','2020-04-09 17:28:03'),(7876,'insurance','197.210.71.79',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:20:03'),(7877,'economics','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:02','2020-04-09 17:19:53'),(7878,'irk','197.210.70.95',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:19:52'),(7879,'currentaffairs','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:03'),(7880,'currentaffairs','197.210.70.171',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 17:21:10'),(7881,'history','197.210.70.121',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:03','2020-04-09 16:29:54'),(7882,'insurance','197.210.70.239',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 16:40:27'),(7883,'irk','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:45:04','2020-04-09 17:27:47'),(7884,'biology','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:19:01'),(7885,'commerce','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:53','2020-04-09 17:25:59'),(7886,'englishlit','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:56','2020-04-09 16:33:35'),(7887,'physics','197.210.70.115',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:57','2020-04-09 17:26:57'),(7888,'englishlit','197.210.70.53',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:26:09'),(7889,'crk','197.210.70.211',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:14'),(7890,'geography','197.210.70.69',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:50:59','2020-04-09 17:27:27'),(7891,'crk','197.210.70.27',317,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:27:27'),(7892,'physics','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:00','2020-04-09 17:20:31'),(7893,'chemistry','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:18:23'),(7894,'biology','197.210.70.27',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:20:24'),(7895,'economics','197.210.70.189',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 15:51:41'),(7896,'englishlit','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:01','2020-04-09 17:27:12'),(7897,'accounting','197.210.70.69',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:20:23'),(7898,'commerce','197.210.70.251',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:26:40'),(7899,'chemistry','197.210.70.53',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:02','2020-04-09 17:19:34'),(7900,'irk','197.210.70.115',210,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:27:38'),(7901,'physics','197.210.70.183',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:25:59'),(7902,'accounting','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:00'),(7903,'economics','197.210.70.137',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:03','2020-04-09 17:19:45'),(7904,'government','197.210.70.205',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:04','2020-04-09 17:26:07'),(7905,'crk','197.210.70.225',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 17:27:17'),(7906,'geography','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:40:36'),(7907,'geography','197.210.70.251',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:05','2020-04-09 16:38:42'),(7908,'insurance','197.210.70.121',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:27:49'),(7909,'englishlit','197.210.70.137',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:26:15'),(7910,'chemistry','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 17:20:41'),(7911,'economics','197.210.70.109',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:06','2020-04-09 16:40:33'),(7912,'mathematics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 17:26:43'),(7913,'insurance','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:07','2020-04-09 16:40:42'),(7914,'economics','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:27:31'),(7915,'englishlit','197.210.70.183',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:24:55'),(7916,'irk','197.210.70.109',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:08','2020-04-09 17:18:37'),(7917,'mathematics','197.210.70.217',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:25:46'),(7918,'mathematics','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:43'),(7919,'commerce','197.210.70.95',222,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:19','2020-04-09 17:26:45'),(7920,'accounting','197.210.70.115',277,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:21','2020-04-09 17:19:09'),(7921,'biology','197.210.70.183',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:27:04'),(7922,'commerce','197.210.70.81',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:22','2020-04-09 17:26:35'),(7923,'physics','197.210.70.109',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:23','2020-04-09 17:26:48'),(7924,'physics','197.210.70.225',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:24','2020-04-09 17:26:55'),(7925,'irk','197.210.70.137',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:25','2020-04-09 17:27:41'),(7926,'chemistry','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:26','2020-04-09 17:19:10'),(7927,'englishlit','197.210.70.41',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:24:44'),(7928,'irk','197.210.70.225',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 16:19:11'),(7929,'government','197.210.70.15',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:27','2020-04-09 17:26:12'),(7930,'crk','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:28','2020-04-09 17:24:46'),(7931,'englishlit','197.210.70.217',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:24:57'),(7932,'civiledu','197.210.70.205',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:29','2020-04-09 17:19:55'),(7933,'government','197.210.71.167',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:42'),(7934,'englishlit','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:30','2020-04-09 17:24:54'),(7935,'civiledu','197.210.71.79',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:31','2020-04-09 17:18:40'),(7936,'englishlit','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:27:09'),(7937,'geography','197.210.70.183',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 16:31:42'),(7938,'government','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:32','2020-04-09 17:25:00'),(7939,'currentaffairs','197.210.70.189',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:33','2020-04-09 17:28:02'),(7940,'insurance','197.210.71.167',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:34','2020-04-09 17:25:10'),(7941,'insurance','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:27:49'),(7942,'civiledu','197.210.70.225',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:25'),(7943,'crk','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:35','2020-04-09 17:26:23'),(7944,'currentaffairs','197.210.70.27',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:13'),(7945,'geography','197.210.70.149',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 15:51:36','2020-04-09 17:25:04'),(7946,'mathematics','197.210.70.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:16','2020-04-09 17:19:16'),(7947,'crk','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:23','2020-04-09 17:27:26'),(7948,'biology','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:25','2020-04-09 17:24:31'),(7949,'chemistry','197.210.70.41',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:26','2020-04-09 17:19:28'),(7950,'physics','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:29','2020-04-09 17:24:35'),(7951,'accounting','197.210.70.211',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:30','2020-04-09 17:26:46'),(7952,'englishlit','197.210.70.1',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:33','2020-04-09 17:27:10'),(7953,'englishlit','197.210.70.27',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:34','2020-04-09 17:24:45'),(7954,'geography','197.210.70.189',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:37','2020-04-09 17:25:02'),(7955,'crk','197.210.70.217',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:41','2020-04-09 17:27:28'),(7956,'economics','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:42','2020-04-09 17:20:52'),(7957,'geography','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:46','2020-04-09 17:27:26'),(7958,'civiledu','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:47','2020-04-09 17:26:19'),(7959,'insurance','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:27:47'),(7960,'insurance','197.210.71.235',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:48','2020-04-09 17:19:59'),(7961,'currentaffairs','197.210.71.235',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:50','2020-04-09 17:25:28'),(7962,'history','197.210.70.239',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:05'),(7963,'history','197.210.70.189',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:51','2020-04-09 17:20:03'),(7964,'civiledu','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:55','2020-04-09 17:27:40'),(7965,'insurance','197.210.70.15',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:56','2020-04-09 17:27:32'),(7966,'currentaffairs','197.210.70.211',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:57','2020-04-09 17:25:24'),(7967,'currentaffairs','197.210.70.205',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:08:58','2020-04-09 17:20:07'),(7968,'mathematics','197.210.71.235',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:20:18'),(7969,'biology','197.210.70.95',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:17','2020-04-09 17:19:04'),(7970,'physics','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:18','2020-04-09 17:20:28'),(7971,'biology','197.210.70.189',320,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:32','2020-04-09 17:26:52'),(7972,'chemistry','197.210.70.239',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:52','2020-04-09 17:26:57'),(7973,'chemistry','197.210.70.211',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:18:54','2020-04-09 17:20:38'),(7974,'irk','197.210.71.79',150,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:04','2020-04-09 17:20:50'),(7975,'civiledu','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:18','2020-04-09 17:21:29'),(7976,'insurance','197.210.71.11',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:20','2020-04-09 17:18:43'),(7977,'insurance','197.210.70.53',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:23','2020-04-09 17:27:58'),(7978,'currentaffairs','197.210.70.81',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:28','2020-04-09 17:27:55'),(7979,'currentaffairs','197.210.70.109',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:31','2020-04-09 17:27:56'),(7980,'government','197.210.71.11',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:34','2020-04-09 17:24:55'),(7981,'government','197.210.70.81',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 17:27:26'),(7982,'history','197.210.70.109',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:35','2020-04-09 16:40:41'),(7983,'accounting','197.210.70.41',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:38','2020-04-09 17:20:26'),(7984,'history','197.210.71.11',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:39','2020-04-09 17:20:15'),(7985,'accounting','197.210.70.27',233,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:40','2020-04-09 17:19:23'),(7986,'history','197.210.70.95',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:19:41','2020-04-09 16:19:47'),(7987,'economics','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:27:56','2020-04-09 17:27:35'),(7988,'chemistry','197.210.70.189',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:01','2020-04-09 17:27:09'),(7989,'mathematics','197.210.70.225',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:14','2020-04-09 17:25:47'),(7990,'accounting','197.210.70.137',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:34','2020-04-09 17:20:17'),(7991,'biology','197.210.70.211',280,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:35','2020-04-09 17:26:04'),(7992,'biology','197.210.70.115',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:36','2020-04-09 17:24:26'),(7993,'englishlit','197.210.70.251',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:45','2020-04-09 17:20:33'),(7994,'chemistry','197.210.70.121',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:28:54','2020-04-09 17:19:28'),(7995,'economics','197.210.70.211',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:12','2020-04-09 17:26:24'),(7996,'geography','197.210.70.225',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:15','2020-04-09 17:27:26'),(7997,'geography','197.210.70.239',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:20','2020-04-09 17:27:32'),(7998,'civiledu','197.210.70.217',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:29:28','2020-04-09 17:20:03'),(7999,'government','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:22','2020-04-09 17:27:20'),(8000,'irk','197.210.70.211',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:38','2020-04-09 17:26:26'),(8001,'insurance','197.210.70.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:20:02'),(8002,'history','197.210.70.183',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:08'),(8003,'history','197.210.70.217',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:45','2020-04-09 17:21:07'),(8004,'history','197.210.70.171',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:47','2020-04-09 17:20:12'),(8005,'history','197.210.70.211',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:52','2020-04-09 17:21:12'),(8006,'history','197.210.70.205',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:31:55','2020-04-09 17:21:06'),(8007,'commerce','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:09','2020-04-09 17:20:20'),(8008,'physics','197.210.70.15',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:11','2020-04-09 17:20:37'),(8009,'civiledu','197.210.70.149',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:49','2020-04-09 17:21:00'),(8010,'economics','197.210.70.81',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:33:52','2020-04-09 17:20:57'),(8011,'currentaffairs','197.210.70.183',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:09','2020-04-09 17:27:59'),(8012,'history','197.210.70.137',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:34:13','2020-04-09 16:34:24'),(8013,'crk','197.210.70.137',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:38:31','2020-04-09 17:19:42'),(8014,'accounting','197.210.70.149',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:39:37','2020-04-09 17:26:43'),(8015,'biology','197.210.70.69',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:12','2020-04-09 17:27:01'),(8016,'geography','197.210.70.121',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:28','2020-04-09 17:20:54'),(8017,'insurance','197.210.70.115',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 16:40:33','2020-04-09 17:21:00'),(8018,'economics','197.210.70.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-09 17:20:44','2020-04-09 17:20:50'),(8019,'civiledu','18.232.76.125',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:01:19','2020-04-10 02:01:19'),(8020,'economics','3.88.169.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 02:51:46','2020-04-10 02:51:46'),(8021,'history','3.82.157.35',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 05:11:10','2020-04-10 05:11:10'),(8022,'mathematics','54.196.241.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 06:19:44','2020-04-10 06:19:44'),(8023,'history','3.88.70.16',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:01:55','2020-04-10 15:25:17'),(8024,'commerce','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8025,'physics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:31','2020-04-10 15:23:31'),(8026,'chemistry','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8027,'englishlit','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:14'),(8028,'crk','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:23:32'),(8029,'irk','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:16'),(8030,'currentaffairs','3.88.70.16',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:23:32','2020-04-10 15:25:17'),(8031,'english','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:14','2020-04-10 15:25:14'),(8032,'geography','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:15','2020-04-10 15:25:15'),(8033,'economics','3.88.70.16',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 15:25:16','2020-04-10 15:25:16'),(8034,'commerce','54.89.208.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 17:29:46','2020-04-10 17:29:46'),(8035,'chemistry','197.210.8.119',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 18:23:00','2020-04-10 18:23:00'),(8036,'crk','35.173.248.126',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 19:52:55','2020-04-10 19:52:55'),(8037,'chemistry','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:34','2020-04-10 22:44:37'),(8038,'englishlit','35.175.253.161',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8039,'government','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8040,'geography','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8041,'economics','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8042,'civiledu','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:37','2020-04-10 22:44:37'),(8043,'insurance','35.175.253.161',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-10 22:44:38','2020-04-10 22:44:38'),(8044,'economics','52.55.93.49',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-10 23:42:01','2020-04-10 23:42:01'),(8045,'government','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:41:11','2020-04-11 01:41:11'),(8046,'chemistry','3.83.223.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 01:45:12','2020-04-11 01:45:12'),(8047,'geography','35.175.184.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 02:56:41','2020-04-11 02:56:41'),(8048,'government','34.224.58.185',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 04:37:27','2020-04-11 04:37:27'),(8049,'chemistry','116.88.133.110',51,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-11 05:33:06','2020-04-19 15:27:03'),(8050,'economics','3.90.47.4',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 05:55:15','2020-04-11 05:55:15'),(8051,'english','3.82.203.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 07:21:01','2020-04-11 07:21:01'),(8052,'biology','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8053,'government','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:08'),(8054,'irk','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:08','2020-04-11 08:18:09'),(8055,'civiledu','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:09'),(8056,'insurance','3.80.112.97',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:22:11'),(8057,'currentaffairs','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:09','2020-04-11 08:18:10'),(8058,'history','3.80.112.97',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 08:18:10','2020-04-11 08:18:10'),(8059,'crk','54.83.85.175',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:06:53','2020-04-11 12:07:40'),(8060,'englishlit','34.229.42.60',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 12:50:10','2020-04-11 12:50:10'),(8061,'english','3.85.102.112',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 14:35:24','2020-04-11 14:35:24'),(8062,'crk','52.203.28.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 15:29:45','2020-04-11 15:29:45'),(8063,'crk','3.81.73.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-11 18:10:31','2020-04-11 18:10:31'),(8064,'commerce','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8065,'accounting','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:19'),(8066,'physics','54.175.255.15',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 02:11:02'),(8067,'englishlit','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:19','2020-04-12 01:56:20'),(8068,'government','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8069,'irk','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8070,'currentaffairs','54.175.255.15',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 01:56:20','2020-04-12 01:56:20'),(8071,'english','54.175.255.15',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 02:31:32','2020-04-12 02:31:32'),(8072,'currentaffairs','18.206.125.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 08:03:24','2020-04-12 08:03:24'),(8073,'mathematics','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8074,'mathematics','197.210.53.31',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:17'),(8075,'english','197.210.53.138',219,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 17:58:35'),(8076,'commerce','197.210.53.223',76,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:19'),(8077,'mathematics','197.210.53.138',290,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:36'),(8078,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8079,'english','197.210.53.31',62,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:18'),(8080,'english','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8081,'mathematics','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:31:54'),(8082,'mathematics','197.210.53.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8083,'english','197.210.53.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8084,'commerce','197.210.53.138',259,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-30 18:08:40'),(8085,'english','197.210.53.232',75,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:52'),(8086,'english','197.210.53.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:14'),(8087,'commerce','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8088,'accounting','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:22'),(8089,'currentaffairs','197.210.53.232',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:14','2020-04-12 13:19:40'),(8090,'history','197.210.53.232',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8091,'civiledu','197.210.53.223',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8092,'history','197.210.53.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:39'),(8093,'history','197.210.53.223',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:20'),(8094,'currentaffairs','197.210.52.179',142,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8095,'civiledu','197.210.52.179',163,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8096,'history','197.210.52.170',110,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:17','2020-04-12 13:19:42'),(8097,'history','197.210.52.179',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:43'),(8098,'accounting','197.210.53.138',234,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-30 18:08:11'),(8099,'insurance','197.210.52.170',143,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:19:42'),(8100,'accounting','197.210.53.232',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 13:19:18','2020-04-12 13:31:01'),(8101,'commerce','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:18','2020-04-12 13:30:55'),(8102,'biology','197.210.53.138',185,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:21','2020-04-30 17:57:35'),(8103,'physics','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:23'),(8104,'physics','197.210.53.138',234,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:49'),(8105,'mathematics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:31:52'),(8106,'accounting','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:52'),(8107,'biology','197.210.53.223',156,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:49'),(8108,'biology','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:19:24'),(8109,'physics','197.210.53.223',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:21','2020-04-12 13:30:53'),(8110,'physics','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8111,'government','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8112,'englishlit','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:30'),(8113,'englishlit','197.210.53.138',160,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:15'),(8114,'physics','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:26'),(8115,'englishlit','197.210.53.232',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:32'),(8116,'chemistry','197.210.53.138',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:58:53'),(8117,'government','197.210.53.138',182,'','NG','','Lagos',NULL,NULL,'','','2020-04-12 13:19:24','2020-04-30 17:57:07'),(8118,'chemistry','197.210.52.170',115,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:33'),(8119,'biology','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:24','2020-04-12 13:19:27'),(8120,'chemistry','197.210.53.232',111,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:25','2020-04-12 13:19:31'),(8121,'englishlit','197.210.52.170',122,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:30'),(8122,'chemistry','197.210.53.223',75,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:26','2020-04-12 13:19:31'),(8123,'government','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:30'),(8124,'government','197.210.53.223',77,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:27','2020-04-12 13:19:32'),(8125,'crk','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:30'),(8126,'government','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:30:56'),(8127,'crk','197.210.53.223',109,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:28','2020-04-12 13:19:34'),(8128,'crk','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:35'),(8129,'geography','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:29','2020-04-12 13:19:33'),(8130,'economics','197.210.53.138',116,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 17:58:26'),(8131,'geography','197.210.53.138',179,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:30','2020-04-30 18:08:29'),(8132,'economics','197.210.53.223',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-12 13:19:39'),(8133,'crk','197.210.53.138',296,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:31','2020-04-30 18:13:36'),(8134,'geography','197.210.53.31',71,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:32','2020-04-12 13:19:36'),(8135,'irk','197.210.53.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:36'),(8136,'irk','197.210.52.179',98,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:38'),(8137,'irk','197.210.52.170',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:30:47'),(8138,'economics','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:33','2020-04-12 13:19:41'),(8139,'geography','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8140,'economics','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:37'),(8141,'irk','197.210.53.31',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:34','2020-04-12 13:19:36'),(8142,'economics','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:41'),(8143,'civiledu','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:39'),(8144,'irk','197.210.53.223',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:37'),(8145,'civiledu','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:31:53'),(8146,'insurance','197.210.53.31',130,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:35','2020-04-12 13:19:40'),(8147,'currentaffairs','197.210.53.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:31:54'),(8148,'currentaffairs','197.210.53.223',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:36','2020-04-12 13:19:39'),(8149,'insurance','197.210.53.232',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:37','2020-04-12 13:19:40'),(8150,'currentaffairs','197.210.52.170',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:19:39','2020-04-12 13:19:42'),(8151,'crk','197.210.52.179',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:47','2020-04-12 13:30:50'),(8152,'commerce','197.210.52.170',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:53','2020-04-12 13:31:38'),(8153,'englishlit','197.210.53.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 13:30:58','2020-04-12 13:31:01'),(8154,'chemistry','197.210.52.106',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-12 16:15:11','2020-04-12 16:15:17'),(8155,'chemistry','105.112.50.114',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:16:45','2020-04-12 16:22:27'),(8156,'accounting','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8157,'crk','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8158,'history','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8159,'government','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8160,'commerce','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8161,'geography','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8162,'physics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8163,'biology','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8164,'englishlit','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:22'),(8165,'economics','108.41.239.178',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-12 16:19:43','2020-04-12 16:31:21'),(8166,'biology','34.224.87.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 03:38:22','2020-04-13 03:38:22'),(8167,'accounting','54.162.182.174',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 07:00:45','2020-04-13 07:00:45'),(8168,'chemistry','154.118.48.246',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 08:54:43','2020-04-13 08:54:59'),(8169,'chemistry','41.217.88.216',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 09:03:00','2020-04-13 09:03:00'),(8170,'chemistry','54.36.149.72',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:40:53','2020-04-13 23:40:53'),(8171,'chemistry','54.36.148.63',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:51:04','2020-04-13 23:51:04'),(8172,'chemistry','54.36.148.136',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-13 23:59:53','2020-04-13 23:59:53'),(8173,'chemistry','54.36.148.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:02:02','2020-04-14 00:02:02'),(8174,'chemistry','54.36.148.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 00:04:51','2020-04-14 00:04:52'),(8175,'insurance','54.166.10.181',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-14 00:24:25','2020-04-20 18:30:46'),(8176,'mathematics','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:41:23','2020-04-14 05:41:23'),(8177,'chemistry','3.93.234.235',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 05:48:13','2020-04-14 05:48:13'),(8178,'accounting','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:48','2020-04-14 09:01:50'),(8179,'physics','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:50','2020-04-14 09:01:50'),(8180,'chemistry','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8181,'englishlit','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8182,'civiledu','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8183,'currentaffairs','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8184,'history','54.174.231.191',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 09:01:51','2020-04-14 09:01:51'),(8185,'geography','18.206.240.142',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 10:07:05','2020-04-14 10:11:06'),(8186,'physics','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:00:35','2020-04-14 16:00:35'),(8187,'englishlit','54.175.75.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 16:37:56','2020-04-14 16:37:56'),(8188,'geography','18.206.195.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 17:01:28','2020-04-14 17:01:28'),(8189,'chemistry','217.146.176.204',20,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 18:42:57','2020-04-14 18:42:58'),(8190,'currentaffairs','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-14 20:54:30','2020-04-14 20:54:30'),(8191,'mathematics','54.163.208.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 00:52:55','2020-04-15 00:52:55'),(8192,'geography','100.26.52.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 01:58:43','2020-04-15 01:58:43'),(8193,'physics','34.235.149.247',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 02:45:09','2020-04-15 02:45:09'),(8194,'mathematics','3.87.134.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 03:39:42','2020-04-15 03:39:42'),(8195,'mathematics','34.201.57.29',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 04:44:44','2020-04-15 04:44:44'),(8196,'accounting','3.84.69.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 06:20:10','2020-04-15 06:20:10'),(8197,'chemistry','197.210.53.176',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:40:42','2020-04-15 10:40:43'),(8198,'chemistry','197.210.52.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 10:42:02','2020-04-15 10:42:02'),(8199,'insurance','52.91.233.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 15:29:09','2020-04-15 15:29:09'),(8200,'civiledu','54.242.136.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 17:12:47','2020-04-15 17:12:47'),(8201,'accounting','3.94.112.253',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 18:27:15','2020-04-15 18:55:50'),(8202,'history','3.94.112.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 19:09:02','2020-04-15 19:09:02'),(8203,'english','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8204,'commerce','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8205,'accounting','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8206,'government','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8207,'geography','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8208,'economics','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8209,'insurance','34.224.87.64',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-15 20:40:52','2020-04-15 20:40:52'),(8210,'mathematics','3.85.212.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 02:18:36','2020-04-16 02:18:36'),(8211,'economics','18.234.50.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 12:59:34','2020-04-16 12:59:34'),(8212,'history','18.215.157.122',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 13:52:47','2020-04-16 13:52:47'),(8213,'chemistry','197.210.44.219',8,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:42','2020-04-16 18:43:09'),(8214,'chemistry','197.210.64.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:42:58','2020-04-16 18:42:58'),(8215,'chemistry','197.210.65.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:43:29','2020-04-16 18:43:29'),(8216,'chemistry','197.210.47.223',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:44:34','2020-04-16 18:44:34'),(8217,'chemistry','197.210.64.155',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 18:45:46','2020-04-16 18:45:48'),(8218,'crk','3.87.156.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-16 22:43:05','2020-04-16 22:43:05'),(8219,'commerce','18.207.198.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:03:48','2020-04-17 02:03:48'),(8220,'commerce','54.237.135.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 02:41:43','2020-04-17 02:41:43'),(8221,'physics','66.249.88.30',50,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-20 17:05:28'),(8222,'physics','66.249.81.102',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:42','2020-04-17 08:08:43'),(8223,'physics','41.144.89.28',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:08:44','2020-04-17 08:08:46'),(8224,'economics','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 08:53:39','2020-04-17 08:53:39'),(8225,'geography','54.174.231.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:14:00','2020-04-17 09:14:00'),(8226,'government','18.206.205.46',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 09:56:27','2020-04-17 10:02:57'),(8227,'chemistry','18.206.205.46',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 10:01:34','2020-04-17 10:01:34'),(8228,'commerce','3.83.68.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 11:09:10','2020-04-17 11:09:10'),(8229,'chemistry','197.210.60.237',244,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 12:26:25','2020-04-17 12:32:16'),(8230,'economics','18.212.205.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 13:09:33','2020-04-17 13:09:33'),(8231,'chemistry','207.46.13.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 15:19:30','2020-04-17 15:19:30'),(8232,'english','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 16:39:41','2020-04-17 16:39:41'),(8233,'englishlit','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:10:38','2020-04-17 17:10:38'),(8234,'insurance','34.207.140.201',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 17:26:22','2020-04-17 17:26:22'),(8235,'crk','18.234.121.106',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 18:20:42','2020-04-17 18:20:42'),(8236,'chemistry','197.210.84.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 20:34:57','2020-04-17 20:34:57'),(8237,'crk','3.92.82.20',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-17 22:15:16','2020-04-17 22:15:16'),(8238,'physics','18.234.86.153',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 03:54:15','2020-04-18 03:54:15'),(8239,'currentaffairs','100.27.24.253',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 06:16:30','2020-04-18 06:16:30'),(8240,'crk','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:33:36','2020-04-18 07:33:36'),(8241,'englishlit','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:34:50','2020-04-18 07:34:50'),(8242,'english','34.203.214.221',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 07:35:39','2020-04-18 07:35:39'),(8243,'englishlit','107.23.21.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 08:31:03','2020-04-18 08:31:03'),(8244,'biology','3.93.151.191',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 11:56:02','2020-04-18 11:56:02'),(8245,'english','197.210.45.162',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 14:25:05','2020-04-18 14:25:07'),(8246,'currentaffairs','52.201.218.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 15:20:26','2020-04-18 15:20:26'),(8247,'economics','54.208.89.165',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:02:52','2020-04-18 18:02:52'),(8248,'chemistry','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:03'),(8249,'english','197.210.47.215',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:01','2020-04-18 18:28:04'),(8250,'chemistry','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8251,'english','197.210.64.110',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:28:33','2020-04-18 18:28:35'),(8252,'english','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8253,'chemistry','197.210.64.233',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:29:27','2020-04-18 18:29:29'),(8254,'english','197.210.47.125',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:30:57','2020-04-18 18:31:00'),(8255,'chemistry','197.210.47.50',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8256,'english','197.210.47.174',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8257,'mathematics','197.210.47.209',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8258,'physics','197.210.47.182',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:32:13','2020-04-18 18:32:15'),(8259,'biology','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8260,'accounting','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8261,'english','197.210.65.39',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:34:12'),(8262,'commerce','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:55','2020-04-18 18:33:58'),(8263,'english','197.210.64.113',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8264,'accounting','197.210.64.154',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8265,'commerce','197.210.65.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8266,'biology','197.210.64.123',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:33:58','2020-04-18 18:34:01'),(8267,'biology','197.210.64.243',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:12'),(8268,'accounting','197.210.64.228',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8269,'commerce','197.210.47.118',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:10','2020-04-18 18:34:13'),(8270,'irk','197.210.47.117',30,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:50'),(8271,'english','197.210.47.142',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8272,'economics','197.210.47.112',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-18 18:34:49','2020-04-18 18:34:51'),(8273,'geography','197.210.47.125',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:34:50','2020-04-18 18:34:52'),(8274,'civiledu','197.210.47.139',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8275,'english','197.210.64.74',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8276,'insurance','197.210.64.103',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:55','2020-04-18 18:56:57'),(8277,'currentaffairs','197.210.47.153',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 18:56:59','2020-04-18 18:57:01'),(8278,'economics','197.210.64.116',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8279,'english','197.210.47.248',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:14','2020-04-18 19:01:16'),(8280,'irk','197.210.47.33',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:15','2020-04-18 19:01:17'),(8281,'civiledu','197.210.47.240',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:01:18','2020-04-18 19:01:20'),(8282,'mathematics','197.210.65.174',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8283,'english','197.210.65.168',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8284,'biology','197.210.65.164',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8285,'commerce','197.210.65.181',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:02:36','2020-04-18 19:02:39'),(8286,'english','197.210.47.9',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:07','2020-04-18 19:03:09'),(8287,'mathematics','197.210.47.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8288,'biology','197.210.47.19',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8289,'accounting','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:08','2020-04-18 19:03:10'),(8290,'english','197.210.65.0',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8291,'irk','197.210.64.232',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:25'),(8292,'civiledu','197.210.65.126',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8293,'economics','197.210.65.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:03:24','2020-04-18 19:03:26'),(8294,'biology','197.210.65.15',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8295,'accounting','197.210.65.16',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8296,'english','197.210.65.11',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8297,'commerce','197.210.65.26',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:04:42','2020-04-18 19:04:44'),(8298,'accounting','197.210.64.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8299,'mathematics','197.210.64.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8300,'english','197.210.47.101',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8301,'commerce','197.210.47.108',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:08:25','2020-04-18 19:08:27'),(8302,'biology','197.210.65.132',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:37'),(8303,'english','197.210.47.62',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:12:53'),(8304,'accounting','197.210.47.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:35','2020-04-18 19:09:38'),(8305,'physics','197.210.47.32',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:09:36','2020-04-18 19:09:38'),(8306,'civiledu','197.210.64.42',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8307,'english','197.210.65.69',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8308,'insurance','197.210.65.75',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:29','2020-04-18 19:11:31'),(8309,'irk','197.210.65.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:11:30','2020-04-18 19:11:31'),(8310,'physics','197.210.47.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8311,'biology','197.210.47.56',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:51','2020-04-18 19:12:53'),(8312,'chemistry','197.210.47.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:12:52','2020-04-18 19:12:55'),(8313,'english','197.210.64.106',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8314,'government','197.210.65.97',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:25','2020-04-18 19:53:28'),(8315,'chemistry','197.210.65.99',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8316,'englishlit','197.210.64.37',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:53:26','2020-04-18 19:53:28'),(8317,'english','197.210.65.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8318,'biology','197.210.65.196',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8319,'accounting','197.210.65.206',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8320,'commerce','197.210.65.198',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:55:31','2020-04-18 19:55:33'),(8321,'physics','197.210.64.111',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:07'),(8322,'english','197.210.64.140',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8323,'englishlit','197.210.64.82',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:05','2020-04-18 19:56:08'),(8324,'chemistry','197.210.64.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:07','2020-04-18 19:56:10'),(8325,'english','197.210.65.23',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:35','2020-04-18 19:56:38'),(8326,'englishlit','197.210.64.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:37','2020-04-18 19:56:39'),(8327,'government','197.210.47.177',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:38','2020-04-18 19:56:40'),(8328,'chemistry','197.210.65.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:56:39','2020-04-18 19:56:41'),(8329,'mathematics','197.210.47.25',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8330,'accounting','197.210.47.47',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8331,'biology','197.210.65.134',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8332,'english','197.210.64.213',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:58:38','2020-04-18 19:58:41'),(8333,'english','197.210.65.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8334,'commerce','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8335,'mathematics','197.210.64.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:16','2020-04-18 19:59:18'),(8336,'irk','197.210.65.92',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-18 19:59:17','2020-04-18 19:59:19'),(8337,'accounting','3.208.18.175',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 06:23:07','2020-04-19 06:23:07'),(8338,'chemistry','40.77.167.36',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 07:38:38','2020-04-19 16:13:18'),(8339,'mathematics','105.112.179.226',400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:23'),(8340,'accounting','105.112.179.226',240,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:52:55'),(8341,'government','105.112.179.226',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 11:58:19'),(8342,'english','105.112.179.226',480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 11:58:16','2020-04-19 12:57:24'),(8343,'physics','105.112.179.226',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:55:09'),(8344,'biology','105.112.179.226',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:00:29','2020-04-19 12:57:24'),(8345,'commerce','105.112.179.226',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:05:08','2020-04-19 12:57:24'),(8346,'chemistry','105.112.179.226',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 12:48:05','2020-04-19 12:55:09'),(8347,'chemistry','105.112.22.76',49,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:16:51','2020-04-19 13:26:58'),(8348,'biology','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:23:32','2020-04-19 13:23:33'),(8349,'mathematics','105.112.22.76',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 13:28:01','2020-04-19 13:28:01');\nINSERT INTO `api_call_ip_address` VALUES (8350,'mathematics','197.210.45.45',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:23:32'),(8351,'english','197.210.45.45',360,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8352,'commerce','197.210.45.45',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8353,'accounting','197.210.45.45',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:12:09','2020-04-19 19:24:58'),(8354,'english','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8355,'mathematics','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8356,'accounting','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8357,'commerce','197.210.63.171',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:29:12','2020-04-19 16:29:14'),(8358,'commerce','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8359,'accounting','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8360,'english','197.210.63.48',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:43:25'),(8361,'mathematics','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:30:08','2020-04-19 16:30:10'),(8362,'history','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8363,'currentaffairs','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8364,'insurance','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:42:31','2020-04-19 16:42:33'),(8365,'government','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8366,'crk','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8367,'geography','197.210.63.48',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:43:23','2020-04-19 16:43:25'),(8368,'history','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8369,'currentaffairs','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8370,'insurance','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8371,'english','197.210.63.212',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 16:49:28','2020-04-19 16:49:30'),(8372,'currentaffairs','197.210.45.45',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:11:15'),(8373,'insurance','197.210.45.45',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8374,'history','197.210.45.45',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:03:34','2020-04-19 19:03:36'),(8375,'chemistry','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8376,'physics','197.210.45.45',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:07:58','2020-04-19 19:18:41'),(8377,'biology','197.210.45.45',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 19:13:01','2020-04-19 19:24:58'),(8378,'mathematics','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8379,'chemistry','197.210.60.4',400,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:31:55'),(8380,'physics','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8381,'english','197.210.60.4',440,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 20:54:11','2020-04-19 21:34:29'),(8382,'biology','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:17:47','2020-04-19 21:17:49'),(8383,'english','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8384,'accounting','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8385,'englishlit','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8386,'economics','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8387,'civiledu','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8388,'insurance','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8389,'history','18.215.232.223',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:22:26','2020-04-19 21:22:26'),(8390,'currentaffairs','197.210.60.4',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 21:34:27','2020-04-19 21:34:29'),(8391,'chemistry','54.36.150.129',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:45:45','2020-04-19 22:45:45'),(8392,'chemistry','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:47:37'),(8393,'physics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8394,'mathematics','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8395,'english','105.112.70.51',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:47:35','2020-04-19 22:54:27'),(8396,'biology','105.112.70.51',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:54:25','2020-04-19 22:54:27'),(8397,'chemistry','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8398,'physics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8399,'mathematics','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8400,'english','197.210.61.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-19 22:57:28','2020-04-19 22:57:30'),(8401,'physics','3.93.200.226',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 00:55:26','2020-04-20 01:33:19'),(8402,'history','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:07:59','2020-04-20 01:07:59'),(8403,'currentaffairs','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:20:29','2020-04-20 01:20:29'),(8404,'englishlit','3.93.200.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 01:46:52','2020-04-20 01:46:52'),(8405,'chemistry','54.85.179.131',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:14:11','2020-04-20 03:14:11'),(8406,'english','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8407,'history','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8408,'insurance','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8409,'currentaffairs','102.89.2.14',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:46:26','2020-04-20 03:46:28'),(8410,'english','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8411,'biology','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:53:43'),(8412,'commerce','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8413,'accounting','102.89.2.214',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:52:51','2020-04-20 03:56:28'),(8414,'mathematics','102.89.2.214',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 03:56:26','2020-08-02 12:18:16'),(8415,'mathematics','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 04:11:00','2020-04-20 04:11:00'),(8416,'geography','3.92.207.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 06:39:01','2020-04-20 06:39:01'),(8417,'geography','3.80.247.53',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 07:47:21','2020-04-20 07:47:21'),(8418,'biology','218.26.54.96',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 09:58:41','2020-04-20 09:58:42'),(8419,'physics','3.90.203.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 11:17:13','2020-04-20 11:17:13'),(8420,'geography','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:08:33','2020-04-20 12:08:33'),(8421,'englishlit','54.152.143.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 12:30:06','2020-04-20 12:30:06'),(8422,'civiledu','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8423,'english','197.210.8.224',720,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 14:29:47'),(8424,'insurance','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8425,'currentaffairs','197.210.8.224',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 13:10:47','2020-04-20 13:10:49'),(8426,'chemistry','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8427,'mathematics','197.210.8.224',520,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8428,'physics','197.210.8.224',680,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-20 13:11:04','2020-04-20 14:29:47'),(8429,'commerce','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8430,'biology','197.210.8.224',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 13:46:11','2020-04-20 13:46:21'),(8431,'currentaffairs','54.145.65.159',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:05:19','2020-04-20 14:05:19'),(8432,'chemistry','54.36.148.196',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:35:15','2020-04-20 14:35:15'),(8433,'biology','66.249.83.204',25,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:44:36','2020-04-20 14:44:37'),(8434,'chemistry','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:50:33'),(8435,'english','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8436,'mathematics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8437,'physics','197.210.28.199',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:50:30','2020-04-20 14:52:14'),(8438,'commerce','197.210.28.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 14:52:12','2020-04-20 14:52:14'),(8439,'chemistry','102.89.0.187',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 18:20:36','2020-04-20 18:20:36'),(8440,'chemistry','102.89.0.10',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:21:01','2020-04-20 18:24:58'),(8441,'physics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8442,'mathematics','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:57'),(8443,'english','102.89.0.10',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:24:55','2020-04-20 18:24:58'),(8444,'physics','54.166.10.181',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 18:55:28','2020-04-20 18:55:28'),(8445,'mathematics','35.153.167.2',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-20 20:10:20','2020-04-20 20:10:20'),(8446,'mathematics','52.91.67.250',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-20 23:39:22','2020-04-20 23:39:22'),(8447,'physics','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8448,'chemistry','197.210.63.213',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8449,'english','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8450,'mathematics','197.210.63.213',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 08:11:46','2020-04-22 15:14:32'),(8451,'accounting','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8452,'biology','197.210.63.213',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 08:15:48','2020-04-21 08:15:51'),(8453,'chemistry','105.112.182.146',64,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:25:58','2020-04-21 19:28:52'),(8454,'biology','105.112.182.146',147,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 09:31:52','2020-04-21 20:02:15'),(8455,'physics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:00:51','2020-04-21 18:36:52'),(8456,'chemistry','197.210.64.120',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:02:51','2020-04-21 10:02:53'),(8457,'history','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8458,'currentaffairs','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8459,'english','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8460,'insurance','197.210.65.239',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:06:39','2020-04-21 10:06:41'),(8461,'commerce','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:24','2020-04-21 19:24:43'),(8462,'mathematics','105.112.182.146',35,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:23:33','2020-04-21 18:43:38'),(8463,'chemistry','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8464,'english','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8465,'mathematics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:46'),(8466,'physics','197.210.65.74',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:34:44','2020-04-21 10:34:47'),(8467,'mathematics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8468,'english','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8469,'physics','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8470,'chemistry','197.210.64.222',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 10:35:55','2020-04-21 10:35:57'),(8471,'chemistry','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8472,'mathematics','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8473,'english','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8474,'commerce','197.210.47.171',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 10:37:28','2020-04-21 10:37:30'),(8475,'english','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8476,'mathematics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8477,'physics','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8478,'chemistry','197.210.64.243',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:26','2020-04-21 10:40:28'),(8479,'english','105.112.182.146',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:40:29','2020-04-21 11:08:28'),(8480,'chemistry','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8481,'english','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8482,'physics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8483,'mathematics','197.210.65.112',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:41:35','2020-04-21 10:41:37'),(8484,'english','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8485,'mathematics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8486,'biology','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8487,'physics','197.210.47.136',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:43:35','2020-04-21 10:43:37'),(8488,'chemistry','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8489,'mathematics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8490,'physics','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8491,'english','197.210.65.255',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:47:36','2020-04-21 10:47:38'),(8492,'english','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8493,'englishlit','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8494,'physics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8495,'mathematics','197.210.47.211',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:48:26','2020-04-21 10:48:28'),(8496,'mathematics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8497,'physics','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8498,'english','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8499,'chemistry','197.210.47.187',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:49:57','2020-04-21 10:49:59'),(8500,'physics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8501,'mathematics','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8502,'english','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8503,'chemistry','197.210.47.155',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 10:51:12','2020-04-21 10:51:14'),(8504,'physics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8505,'english','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8506,'chemistry','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8507,'mathematics','197.210.65.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:19:58','2020-04-21 11:20:00'),(8508,'physics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8509,'english','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8510,'mathematics','197.210.65.53',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:21:29','2020-04-21 11:21:31'),(8511,'mathematics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8512,'physics','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8513,'english','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8514,'chemistry','197.210.64.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:22:14','2020-04-21 11:22:16'),(8515,'mathematics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8516,'english','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8517,'chemistry','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:44'),(8518,'physics','197.210.64.144',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:25:38','2020-04-21 11:25:43'),(8519,'mathematics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8520,'physics','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8521,'chemistry','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:58'),(8522,'english','197.210.64.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:28:55','2020-04-21 11:28:57'),(8523,'english','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8524,'physics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8525,'chemistry','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8526,'mathematics','197.210.65.186',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:09','2020-04-21 11:31:12'),(8527,'physics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8528,'mathematics','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8529,'chemistry','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8530,'english','197.210.64.30',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:31:32','2020-04-21 11:31:34'),(8531,'englishlit','41.80.21.184',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 11:46:19','2020-04-21 11:46:21'),(8532,'chemistry','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8533,'mathematics','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8534,'biology','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8535,'english','197.210.64.128',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:08:29','2020-04-21 12:08:31'),(8536,'mathematics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8537,'chemistry','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8538,'physics','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8539,'english','197.210.61.163',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:10:52','2020-04-21 12:10:55'),(8540,'accounting','105.112.182.146',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:21:36','2020-04-21 19:33:14'),(8541,'mathematics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8542,'english','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8543,'chemistry','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8544,'physics','197.210.61.89',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:30:12','2020-04-21 12:30:14'),(8545,'english','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8546,'mathematics','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8547,'biology','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8548,'commerce','197.210.65.246',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:33:53','2020-04-21 12:33:55'),(8549,'physics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8550,'chemistry','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8551,'english','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8552,'mathematics','197.210.65.70',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:38:40','2020-04-21 12:38:42'),(8553,'chemistry','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8554,'mathematics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8555,'english','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8556,'physics','197.210.61.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 12:42:16','2020-04-21 12:42:18'),(8557,'history','54.242.239.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 14:06:07','2020-04-21 14:06:07'),(8558,'government','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 15:55:50','2020-04-21 15:55:51'),(8559,'history','105.112.182.146',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 16:23:43','2020-04-21 16:23:43'),(8560,'chemistry','197.210.28.55',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 18:02:59','2020-04-21 18:03:01'),(8561,'mathematics','3.81.94.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 19:58:20','2020-04-21 19:58:20'),(8562,'biology','105.112.18.128',77,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:18:41','2020-04-21 23:24:00'),(8563,'physics','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:18:53','2020-04-21 23:00:17'),(8564,'accounting','105.112.18.128',42,'','NG','','Lagos',NULL,NULL,'','','2020-04-21 20:35:26','2020-04-21 23:10:50'),(8565,'chemistry','105.112.18.128',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 20:37:37','2020-04-21 20:58:32'),(8566,'mathematics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8567,'chemistry','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8568,'english','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:14'),(8569,'physics','197.210.61.24',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:08:12','2020-04-21 21:08:15'),(8570,'english','102.89.1.175',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:09:09','2020-04-21 21:42:43'),(8571,'english','102.89.1.91',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:10:02','2020-04-21 21:25:29'),(8572,'english','102.89.0.89',20,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:11:30','2020-04-21 21:11:32'),(8573,'chemistry','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8574,'mathematics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8575,'physics','102.89.1.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:24:06','2020-04-21 21:25:29'),(8576,'chemistry','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8577,'english','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8578,'mathematics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8579,'physics','102.89.0.102',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:26:30','2020-04-21 21:48:17'),(8580,'chemistry','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:07','2020-04-21 21:42:43'),(8581,'physics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8582,'mathematics','102.89.1.175',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 21:28:08','2020-04-21 21:42:43'),(8583,'commerce','105.112.18.128',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-21 22:04:53','2020-04-21 22:49:43'),(8584,'mathematics','105.112.18.128',7,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-21 22:27:23','2020-04-21 22:27:24'),(8585,'english','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8586,'irk','102.89.1.102',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:01'),(8587,'insurance','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8588,'civiledu','102.89.1.102',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:23:59','2020-04-21 23:24:02'),(8589,'geography','105.112.18.128',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:32:29','2020-04-21 23:32:29'),(8590,'mathematics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8591,'physics','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8592,'english','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8593,'chemistry','197.210.61.61',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:43:40','2020-04-21 23:43:42'),(8594,'physics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8595,'mathematics','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8596,'english','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8597,'biology','197.210.46.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:45:51','2020-04-21 23:45:53'),(8598,'insurance','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:44','2020-04-21 23:46:47'),(8599,'english','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8600,'chemistry','197.210.46.117',44,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-05-25 11:18:27'),(8601,'geography','197.210.46.117',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-21 23:46:45','2020-04-21 23:46:47'),(8602,'history','52.207.122.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:21:54','2020-04-22 06:21:54'),(8603,'chemistry','102.89.2.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 06:27:13','2020-04-22 06:27:13'),(8604,'mathematics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8605,'english','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8606,'physics','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8607,'chemistry','197.211.61.92',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 07:51:29','2020-04-22 07:51:31'),(8608,'biology','105.112.28.69',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 08:37:38','2020-04-22 09:14:05'),(8609,'physics','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:37:13','2020-04-22 11:01:24'),(8610,'biology','105.112.31.149',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 09:45:01','2020-04-22 10:48:10'),(8611,'accounting','105.112.31.149',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:07:02','2020-04-22 10:07:52'),(8612,'economics','105.112.31.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 10:16:04','2020-04-22 10:16:05'),(8613,'biology','105.112.30.170',28,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 11:06:24','2020-04-22 12:40:53'),(8614,'accounting','105.112.30.170',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 11:33:34','2020-04-22 11:59:20'),(8615,'chemistry','41.190.12.66',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:15:54','2020-04-22 12:17:36'),(8616,'biology','41.190.12.66',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 12:16:26','2020-04-22 12:18:01'),(8617,'chemistry','105.112.176.19',468,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-22 12:22:58','2020-04-22 12:30:38'),(8618,'chemistry','41.190.12.130',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:35:57','2020-04-22 12:39:25'),(8619,'biology','41.190.12.130',9,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:37:06','2020-04-22 12:41:42'),(8620,'english','41.190.12.130',241,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 12:39:46','2020-04-22 12:43:48'),(8621,'insurance','197.210.84.226',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:37:40','2020-04-22 13:37:42'),(8622,'insurance','197.210.84.190',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 13:40:05','2020-04-22 13:40:07'),(8623,'chemistry','54.82.80.108',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 14:30:16','2020-04-22 14:30:16'),(8624,'crk','34.229.173.152',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:15:56','2020-04-22 16:15:56'),(8625,'physics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8626,'english','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8627,'chemistry','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8628,'mathematics','197.211.61.124',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 16:46:44','2020-04-22 16:46:47'),(8629,'biology','105.112.183.159',84,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:46:06','2020-04-22 22:39:25'),(8630,'accounting','105.112.183.159',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 17:48:17','2020-04-22 22:31:08'),(8631,'english','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:13:11','2020-04-22 18:13:11'),(8632,'commerce','100.24.54.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 18:34:19','2020-04-22 18:34:19'),(8633,'currentaffairs','3.94.91.190',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:10:02','2020-04-22 19:10:02'),(8634,'chemistry','105.112.183.159',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:38:14','2020-04-22 19:41:59'),(8635,'chemistry','157.55.39.45',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 19:52:26','2020-04-22 19:52:27'),(8636,'physics','105.112.183.159',35,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 21:25:48','2020-04-22 22:40:27'),(8637,'economics','54.166.255.13',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-22 22:23:41','2020-04-22 22:23:41'),(8638,'commerce','105.112.183.159',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-22 23:09:25','2020-04-22 23:09:26'),(8639,'chemistry','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:00:28','2020-04-23 00:00:28'),(8640,'government','107.23.233.73',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 00:24:21','2020-04-23 00:24:21'),(8641,'mathematics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:39:20','2020-04-23 01:39:20'),(8642,'government','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:47:47','2020-04-23 01:47:47'),(8643,'economics','3.89.109.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 01:48:36','2020-04-23 01:48:36'),(8644,'geography','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:36:53','2020-04-23 02:36:53'),(8645,'commerce','3.88.192.118',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:53:38','2020-04-23 02:53:38'),(8646,'chemistry','105.112.61.30',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 02:54:52','2020-04-23 02:54:52'),(8647,'insurance','54.86.197.75',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 06:26:13','2020-04-23 06:26:13'),(8648,'crk','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:16:42','2020-04-23 10:16:42'),(8649,'englishlit','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 10:34:38','2020-04-23 10:34:38'),(8650,'english','54.144.91.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 11:05:41','2020-04-23 11:05:41'),(8651,'biology','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8652,'mathematics','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8653,'crk','197.210.174.39',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:35:53'),(8654,'english','197.210.174.39',200,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:35:50','2020-04-23 12:39:34'),(8655,'civiledu','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8656,'economics','197.210.174.39',160,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 12:39:19','2020-04-23 12:39:34'),(8657,'crk','52.90.145.219',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 14:30:55','2020-04-23 14:30:55'),(8658,'biology','54.224.0.234',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 17:35:04','2020-04-23 17:35:04'),(8659,'chemistry','40.77.167.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 19:39:50','2020-04-23 19:39:50'),(8660,'physics','54.174.153.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:04:30','2020-04-23 22:04:30'),(8661,'englishlit','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 22:50:05','2020-04-23 22:50:05'),(8662,'currentaffairs','34.233.133.95',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-23 23:11:05','2020-04-23 23:11:05'),(8663,'crk','18.234.95.240',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 00:49:03','2020-04-24 00:49:03'),(8664,'chemistry','102.134.114.129',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 01:33:54','2020-04-24 01:38:52'),(8665,'englishlit','54.209.127.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 02:15:39','2020-04-24 02:15:39'),(8666,'english','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:17:39','2020-04-24 03:17:39'),(8667,'government','34.201.215.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 03:43:50','2020-04-24 03:43:50'),(8668,'chemistry','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 04:48:11','2020-04-24 04:48:11'),(8669,'economics','52.90.68.149',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 05:19:42','2020-04-24 05:19:42'),(8670,'mathematics','54.196.250.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 08:15:48','2020-04-24 08:15:48'),(8671,'insurance','3.82.47.220',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 09:43:06','2020-04-24 09:43:06'),(8672,'civiledu','100.24.31.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:26:45','2020-04-24 10:26:45'),(8673,'mathematics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8674,'commerce','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8675,'biology','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:07'),(8676,'chemistry','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:07','2020-04-24 10:38:08'),(8677,'government','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8678,'geography','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8679,'economics','100.24.31.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:38:08','2020-04-24 10:38:08'),(8680,'physics','188.164.100.205',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 10:39:15','2020-04-24 10:39:17'),(8681,'chemistry','35.171.2.150',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 14:25:12','2020-04-24 14:25:12'),(8682,'mathematics','54.145.214.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 17:31:43','2020-04-24 17:31:43'),(8683,'chemistry','54.36.148.65',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 18:06:18','2020-04-24 18:06:18'),(8684,'accounting','34.239.139.232',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-24 23:10:31','2020-04-24 23:10:31'),(8685,'chemistry','54.227.8.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 01:51:07','2020-04-25 01:51:07'),(8686,'chemistry','105.112.47.210',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 04:58:07','2020-04-25 04:58:07'),(8687,'mathematics','34.204.43.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 05:02:06','2020-04-25 05:02:06'),(8688,'currentaffairs','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:33:21','2020-04-25 06:33:21'),(8689,'biology','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 06:58:18','2020-04-25 06:58:18'),(8690,'english','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:13','2020-04-25 07:02:13'),(8691,'commerce','3.86.159.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 07:02:32','2020-04-25 07:02:32'),(8692,'geography','54.162.26.155',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 08:14:44','2020-04-25 08:14:44'),(8693,'biology','41.190.31.157',123,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 14:18:38','2020-04-25 15:45:29'),(8694,'english','41.190.31.157',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:19:08','2020-04-25 15:19:08'),(8695,'chemistry','41.190.31.157',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 15:34:32','2020-04-25 15:49:01'),(8696,'mathematics','18.207.244.138',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:00:51','2020-04-25 19:00:51'),(8697,'geography','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 19:43:51','2020-04-25 19:43:51'),(8698,'chemistry','18.234.56.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 20:00:20','2020-04-25 20:00:20'),(8699,'geography','54.196.233.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 22:34:56','2020-04-25 22:34:56'),(8700,'geography','54.226.23.242',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-25 23:54:11','2020-04-25 23:54:11'),(8701,'physics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:34:21','2020-04-26 03:34:21'),(8702,'englishlit','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 03:46:24','2020-04-26 03:46:24'),(8703,'english','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:15:25','2020-04-26 04:15:25'),(8704,'geography','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:21:18','2020-04-26 04:21:18'),(8705,'economics','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 04:38:52','2020-04-26 04:38:52'),(8706,'currentaffairs','54.226.245.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 05:01:46','2020-04-26 05:01:46'),(8707,'crk','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:37:57','2020-04-26 07:37:57'),(8708,'geography','54.224.64.181',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 07:39:49','2020-04-26 07:39:49'),(8709,'englishlit','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:24:17','2020-04-26 08:24:17'),(8710,'commerce','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:32:11','2020-04-26 08:32:11'),(8711,'biology','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 08:36:32','2020-04-26 08:36:32'),(8712,'mathematics','3.90.230.98',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:08:49','2020-04-26 09:08:49'),(8713,'english','34.207.68.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 09:44:24','2020-04-26 09:44:24'),(8714,'mathematics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:12:46','2020-04-26 11:12:46'),(8715,'physics','52.87.78.172',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 11:15:20','2020-04-26 11:15:20'),(8716,'crk','54.152.233.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 12:24:21','2020-04-26 12:24:21'),(8717,'mathematics','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:36:48','2020-04-26 14:36:48'),(8718,'biology','54.234.28.97',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 14:55:09','2020-04-26 14:55:09'),(8719,'economics','18.215.246.225',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-26 21:05:56','2020-04-26 21:05:56'),(8720,'mathematics','3.81.151.24',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 01:31:08','2020-04-27 01:31:08'),(8721,'biology','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:05','2020-04-27 02:58:05'),(8722,'chemistry','3.83.124.135',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 02:58:38','2020-04-27 02:58:38'),(8723,'accounting','34.235.166.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 03:48:21','2020-04-27 03:48:21'),(8724,'history','54.224.76.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 05:14:17','2020-04-27 05:14:17'),(8725,'chemistry','52.201.249.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 08:03:17','2020-04-27 08:03:17'),(8726,'biology','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8727,'physics','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:16','2020-04-27 09:32:16'),(8728,'crk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8729,'geography','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8730,'irk','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8731,'insurance','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8732,'history','3.92.69.177',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 09:32:17','2020-04-27 09:32:17'),(8733,'chemistry','54.234.116.36',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:51'),(8734,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8735,'chemistry','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:07:50','2020-04-27 10:07:50'),(8736,'government','54.234.116.36',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 10:13:02','2020-04-27 10:13:02'),(8737,'physics','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:23:37','2020-04-27 11:23:37'),(8738,'commerce','54.198.56.195',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 11:41:20','2020-04-27 11:41:20'),(8739,'chemistry','99.7.238.16',17,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:37:52','2020-04-27 13:42:57'),(8740,'physics','99.7.238.16',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:43:03','2020-04-27 13:43:03'),(8741,'chemistry','77.88.5.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 13:54:22','2020-04-27 13:54:22'),(8742,'biology','3.88.17.102',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:37:10','2020-04-27 14:37:10'),(8743,'mathematics','197.210.8.233',680,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 14:44:44','2020-04-27 15:08:49'),(8744,'chemistry','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8745,'english','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8746,'physics','102.89.1.184',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 18:37:29','2020-04-27 18:37:31'),(8747,'economics','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:20:06','2020-04-27 20:20:06'),(8748,'commerce','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:39:52','2020-04-27 20:39:52'),(8749,'history','18.232.64.168',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-27 20:49:28','2020-04-27 20:49:28'),(8750,'government','107.21.137.251',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 02:38:07','2020-04-28 02:38:07'),(8751,'commerce','3.95.203.13',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 05:37:46','2020-04-28 05:37:46'),(8752,'crk','3.91.54.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:01:44','2020-04-28 07:01:44'),(8753,'geography','18.212.75.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 07:55:58','2020-04-28 07:55:58'),(8754,'physics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8755,'english','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8756,'mathematics','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8757,'chemistry','105.112.57.73',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 08:52:58','2020-04-28 08:53:01'),(8758,'chemistry','196.222.104.61',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:11:38','2020-04-28 10:21:09'),(8759,'physics','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8760,'chemistry','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:04','2020-04-28 10:59:04'),(8761,'crk','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8762,'geography','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8763,'economics','18.209.104.117',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 11:04:14'),(8764,'currentaffairs','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8765,'history','18.209.104.117',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 10:59:05','2020-04-28 10:59:05'),(8766,'economics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:46:56','2020-04-28 11:46:56'),(8767,'english','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 11:47:28','2020-04-28 11:47:28'),(8768,'commerce','105.112.70.76',56,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:08:02','2020-04-28 13:10:12'),(8769,'accounting','105.112.70.76',49,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:11:44','2020-04-28 13:22:13'),(8770,'biology','105.112.70.76',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 12:29:15','2020-04-28 12:29:15'),(8771,'government','3.84.75.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 13:46:11','2020-04-28 13:46:11'),(8772,'economics','3.80.87.205',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 14:32:49','2020-04-28 14:32:49'),(8773,'physics','54.210.29.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:28:17','2020-04-28 15:28:17'),(8774,'insurance','197.210.227.65',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:30:30','2020-04-28 16:09:26'),(8775,'insurance','197.210.227.77',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 15:32:37','2020-04-28 15:41:11'),(8776,'accounting','197.210.227.77',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:38:20','2020-04-28 16:20:02'),(8777,'insurance','197.210.227.25',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 15:43:40','2020-04-28 17:43:09'),(8778,'insurance','197.210.226.63',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:02:54','2020-04-28 17:36:29'),(8779,'insurance','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:05:09','2020-04-28 16:05:11'),(8780,'englishlit','197.210.226.217',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:47','2020-04-28 16:07:49'),(8781,'government','197.210.227.77',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:51','2020-04-28 16:07:53'),(8782,'currentaffairs','197.210.226.63',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:54','2020-04-28 17:56:54'),(8783,'economics','197.210.227.25',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:07:58','2020-04-28 17:33:39'),(8784,'geography','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:02','2020-04-28 16:20:19'),(8785,'english','197.210.227.25',280,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:06','2020-04-28 17:57:58'),(8786,'mathematics','197.210.227.77',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:09','2020-04-28 16:09:56'),(8787,'commerce','197.210.227.25',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:13','2020-04-28 17:33:53'),(8788,'biology','197.210.227.25',200,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-28 16:08:17','2020-04-28 17:44:06'),(8789,'physics','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:20','2020-04-28 16:10:08'),(8790,'crk','197.210.227.77',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:28','2020-04-28 16:10:15'),(8791,'history','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:32','2020-04-28 16:08:35'),(8792,'irk','197.210.227.233',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:36','2020-04-28 16:08:38'),(8793,'civiledu','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:08:39','2020-04-28 17:47:22'),(8794,'accounting','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:28','2020-04-28 16:09:30'),(8795,'englishlit','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:32','2020-04-28 16:09:34'),(8796,'government','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:35','2020-04-28 16:09:38'),(8797,'currentaffairs','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:39','2020-04-28 16:09:41'),(8798,'economics','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:42','2020-04-28 16:09:45'),(8799,'geography','197.210.226.217',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:46','2020-04-28 16:09:48'),(8800,'english','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:50','2020-04-28 16:09:52'),(8801,'commerce','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:09:58','2020-04-28 16:10:00'),(8802,'biology','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:02','2020-04-28 16:10:04'),(8803,'chemistry','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:09','2020-04-28 16:10:12'),(8804,'history','197.210.227.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:17','2020-04-28 16:10:19'),(8805,'irk','197.210.226.63',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:20','2020-04-28 16:10:22'),(8806,'civiledu','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:10:23','2020-04-28 16:10:25'),(8807,'government','3.80.238.158',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:15:49','2020-04-28 16:15:49'),(8808,'englishlit','197.210.226.63',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:03','2020-04-28 17:41:09'),(8809,'government','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:06','2020-04-28 17:56:50'),(8810,'currentaffairs','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:10','2020-04-28 17:46:35'),(8811,'economics','197.210.226.63',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:14','2020-04-28 17:45:40'),(8812,'mathematics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:24','2020-04-28 17:46:51'),(8813,'physics','197.210.227.25',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:35','2020-04-28 17:47:04'),(8814,'chemistry','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:40','2020-04-28 17:47:08'),(8815,'crk','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:45','2020-04-28 17:47:11'),(8816,'history','197.210.227.77',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:20:49','2020-04-28 16:20:51'),(8817,'irk','197.210.227.77',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:04','2020-04-28 16:21:05'),(8818,'civiledu','197.210.227.233',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:21:07','2020-04-28 16:21:10'),(8819,'geography','3.93.153.210',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 16:54:50','2020-04-28 17:00:53'),(8820,'accounting','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:23','2020-04-28 17:47:35'),(8821,'englishlit','197.210.227.25',240,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:26','2020-04-28 17:47:39'),(8822,'government','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:30','2020-04-28 17:46:31'),(8823,'currentaffairs','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:33','2020-04-28 17:36:51'),(8824,'geography','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:41','2020-04-28 17:33:43'),(8825,'mathematics','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:33:48','2020-04-28 17:33:50'),(8826,'chemistry','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:02','2020-04-28 17:39:24'),(8827,'history','197.210.227.25',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:09','2020-04-28 17:47:15'),(8828,'irk','197.210.227.25',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:13','2020-04-28 17:44:24'),(8829,'civiledu','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:15','2020-04-28 17:56:36'),(8830,'insurance','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:24','2020-04-28 17:55:24'),(8831,'accounting','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:28','2020-04-28 17:44:57'),(8832,'government','197.210.227.122',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:36','2020-04-28 17:45:31'),(8833,'currentaffairs','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:39','2020-04-28 17:55:39'),(8834,'economics','197.210.226.66',200,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:43','2020-04-28 17:49:01'),(8835,'geography','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:47','2020-04-28 17:47:55'),(8836,'english','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:50','2020-04-28 17:47:59'),(8837,'insurance','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:54','2020-04-28 17:56:39'),(8838,'accounting','197.210.226.66',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:34:58','2020-04-28 17:55:28'),(8839,'englishlit','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:02','2020-04-28 17:56:46'),(8840,'geography','197.210.227.25',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:35:17','2020-04-28 17:46:43'),(8841,'accounting','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:30','2020-04-28 17:43:13'),(8842,'economics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:52','2020-04-28 17:36:54'),(8843,'geography','197.210.227.1',160,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:36:56','2020-04-28 17:57:18'),(8844,'commerce','197.210.227.96',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:24','2020-04-28 17:46:56'),(8845,'crk','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:39','2020-04-28 17:37:41'),(8846,'irk','197.210.227.1',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:37:46','2020-04-28 17:47:19'),(8847,'geography','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:55','2020-04-28 17:49:05'),(8848,'english','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:38:58','2020-04-28 17:55:52'),(8849,'mathematics','197.210.227.122',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:07','2020-04-28 17:55:55'),(8850,'commerce','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:11','2020-04-28 17:39:13'),(8851,'biology','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:14','2020-04-28 17:39:17'),(8852,'physics','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:18','2020-04-28 17:56:07'),(8853,'crk','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:25','2020-04-28 17:39:27'),(8854,'history','197.210.226.66',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:28','2020-04-28 17:56:28'),(8855,'irk','197.210.226.66',90,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:39:32','2020-04-28 17:56:32'),(8856,'insurance','197.210.226.66',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:40:58','2020-04-28 17:46:20'),(8857,'government','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:41:11','2020-04-28 17:48:52'),(8858,'currentaffairs','197.210.227.96',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:35','2020-04-28 17:47:47'),(8859,'economics','197.210.227.1',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:38','2020-04-28 17:57:01'),(8860,'geography','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:43:42','2020-04-28 17:43:44'),(8861,'physics','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:07','2020-04-28 17:44:09'),(8862,'crk','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:14','2020-04-28 17:48:22'),(8863,'history','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:18','2020-04-28 17:44:21'),(8864,'civiledu','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:44:25','2020-04-28 17:44:44'),(8865,'englishlit','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:45:04','2020-04-28 17:45:06'),(8866,'english','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:44','2020-04-28 17:46:47'),(8867,'biology','197.210.227.1',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:46:57','2020-04-28 17:56:03'),(8868,'insurance','197.210.227.96',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:47:29','2020-04-28 17:47:32'),(8869,'mathematics','197.210.226.63',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:00','2020-04-28 17:48:03'),(8870,'commerce','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:05','2020-04-28 17:48:07'),(8871,'biology','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:08','2020-04-28 17:48:11'),(8872,'chemistry','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:16','2020-04-28 17:48:19'),(8873,'history','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:48:24','2020-04-28 17:48:27'),(8874,'englishlit','197.210.227.1',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:29','2020-04-28 17:55:32'),(8875,'government','197.210.226.66',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:33','2020-04-28 17:55:35'),(8876,'economics','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:41','2020-04-28 17:55:44'),(8877,'commerce','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:55:56','2020-04-28 17:55:59'),(8878,'chemistry','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:08','2020-04-28 17:56:10'),(8879,'crk','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:22','2020-04-28 17:56:24'),(8880,'accounting','197.210.227.122',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 17:56:41','2020-04-28 17:56:43'),(8881,'government','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:16','2020-04-28 18:02:16'),(8882,'commerce','105.112.16.71',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:02:49','2020-04-28 18:02:49'),(8883,'biology','105.112.16.71',42,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:06:21','2020-04-28 18:11:14'),(8884,'english','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:20:03','2020-04-28 18:20:03'),(8885,'commerce','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:32:41','2020-04-28 18:32:41'),(8886,'accounting','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:33:53','2020-04-28 18:33:53'),(8887,'biology','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:55:42','2020-04-28 18:55:42'),(8888,'history','105.112.16.134',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 18:58:00','2020-04-28 18:58:00'),(8889,'chemistry','54.225.23.163',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:04:13','2020-04-28 19:04:13'),(8890,'chemistry','41.217.104.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 19:28:12','2020-04-28 19:28:26'),(8891,'economics','35.175.150.1',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 20:02:33','2020-04-28 20:02:33'),(8892,'commerce','52.23.234.72',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:03:58','2020-04-28 21:03:58'),(8893,'commerce','105.112.176.198',14,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 21:35:39','2020-04-28 22:06:40'),(8894,'biology','105.112.176.198',21,'','NG','','Lagos',NULL,NULL,'','','2020-04-28 21:49:14','2020-04-28 23:16:53'),(8895,'accounting','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:07:36','2020-04-28 22:07:37'),(8896,'mathematics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:15:12','2020-04-28 22:15:12'),(8897,'physics','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:19:21','2020-04-28 22:19:21'),(8898,'government','105.112.176.198',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-28 22:21:48','2020-04-28 22:21:48'),(8899,'insurance','34.229.212.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-28 23:55:04','2020-04-28 23:55:04'),(8900,'english','35.170.244.82',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 01:09:28','2020-04-29 01:09:28'),(8901,'crk','54.204.83.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 02:49:37','2020-04-29 02:49:37'),(8902,'crk','34.229.217.40',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 08:41:40','2020-04-29 08:41:40'),(8903,'chemistry','52.54.222.203',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 09:31:21','2020-04-29 09:31:21'),(8904,'physics','3.86.213.145',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 11:56:45','2020-04-29 11:56:45'),(8905,'english','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:13:54','2020-04-29 14:13:54'),(8906,'currentaffairs','54.235.230.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 14:28:47','2020-04-29 14:28:47'),(8907,'crk','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 16:51:12','2020-04-29 16:51:12'),(8908,'mathematics','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:19:40','2020-04-29 17:19:40'),(8909,'biology','105.112.176.237',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:26:33','2020-04-29 18:09:50'),(8910,'commerce','105.112.176.237',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:29:23','2020-04-29 18:01:40'),(8911,'englishlit','54.198.130.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 17:42:30','2020-04-29 17:42:30'),(8912,'accounting','105.112.176.237',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:02:58','2020-04-29 18:02:58'),(8913,'biology','105.112.179.192',42,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:33:15','2020-04-29 19:16:31'),(8914,'currentaffairs','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:36:50','2020-04-29 18:36:50'),(8915,'economics','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 18:47:33','2020-04-29 18:47:33'),(8916,'physics','105.112.179.192',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:05:41','2020-04-29 19:30:14'),(8917,'englishlit','3.83.165.89',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:09:49','2020-04-29 19:09:49'),(8918,'mathematics','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:10:38','2020-04-29 19:10:38'),(8919,'commerce','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:41:21','2020-04-29 19:41:21'),(8920,'chemistry','105.112.179.192',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 19:58:11','2020-04-29 19:58:11'),(8921,'government','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:21:57','2020-04-29 20:21:57'),(8922,'commerce','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:18','2020-04-29 20:27:18'),(8923,'commerce','18.234.93.0',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:27:44','2020-04-29 20:27:44'),(8924,'english','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:28:17','2020-04-29 21:37:09'),(8925,'biology','105.112.24.82',28,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 20:47:45','2020-04-29 22:13:57'),(8926,'government','3.87.44.43',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:09:09','2020-04-29 21:09:09'),(8927,'accounting','105.112.24.82',21,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:11:05','2020-04-29 22:06:33'),(8928,'mathematics','105.112.24.82',14,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:43','2020-04-29 21:59:17'),(8929,'physics','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 21:36:54','2020-04-29 21:36:55'),(8930,'chemistry','105.112.24.82',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 22:39:32','2020-04-29 22:39:32'),(8931,'chemistry','54.36.148.219',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-29 23:51:25','2020-04-29 23:51:25'),(8932,'chemistry','54.36.148.233',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:02:17','2020-04-30 00:02:17'),(8933,'chemistry','54.36.148.6',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:13:27','2020-04-30 00:13:27'),(8934,'physics','3.95.148.26',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:16:11','2020-04-30 00:16:11'),(8935,'chemistry','54.36.148.57',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:24:14','2020-04-30 00:24:14'),(8936,'chemistry','54.36.148.226',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 00:57:32','2020-04-30 00:57:32'),(8937,'chemistry','54.36.148.130',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 01:26:38','2020-04-30 01:26:38'),(8938,'english','3.83.49.79',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 04:59:57','2020-04-30 04:59:57'),(8939,'physics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 11:48:10','2020-04-30 11:48:12'),(8940,'mathematics','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:14:32','2020-04-30 12:14:35'),(8941,'accounting','3.90.113.110',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:48:25','2020-04-30 12:48:25'),(8942,'geography','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:50:57','2020-04-30 12:50:59'),(8943,'commerce','107.23.45.46',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 12:51:24','2020-04-30 12:51:26'),(8944,'physics','54.167.205.76',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 13:29:15','2020-04-30 13:29:15'),(8945,'insurance','54.160.135.231',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 16:43:16','2020-04-30 16:43:16'),(8946,'chemistry','157.55.39.213',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:40:23','2020-04-30 17:40:23'),(8947,'insurance','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:56:54','2020-04-30 17:59:10'),(8948,'currentaffairs','197.210.53.138',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:10','2020-04-30 18:08:22'),(8949,'economics','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:15','2020-04-30 17:59:31'),(8950,'geography','197.210.52.31',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:18','2020-04-30 18:00:52'),(8951,'english','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:22','2020-04-30 17:59:44'),(8952,'commerce','197.210.53.91',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:29','2020-04-30 17:57:31'),(8953,'physics','197.210.52.197',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:39','2020-04-30 18:01:14'),(8954,'history','197.210.53.151',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:53','2020-04-30 18:13:42'),(8955,'irk','197.210.53.138',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:57:58','2020-04-30 18:13:47'),(8956,'civiledu','197.210.53.151',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:01','2020-04-30 17:59:07'),(8957,'insurance','197.210.52.197',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:05','2020-04-30 17:58:07'),(8958,'government','197.210.53.151',40,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-04-30 17:58:16','2020-04-30 17:58:18'),(8959,'currentaffairs','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:20','2020-04-30 17:58:22'),(8960,'geography','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:28','2020-04-30 17:58:31'),(8961,'biology','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:43','2020-04-30 17:58:46'),(8962,'physics','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:58:47','2020-04-30 18:08:48'),(8963,'irk','197.210.52.31',60,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:01','2020-04-30 18:01:32'),(8964,'accounting','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:12','2020-04-30 17:59:14'),(8965,'englishlit','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:15','2020-04-30 18:12:52'),(8966,'government','197.210.52.67',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:19','2020-04-30 18:12:56'),(8967,'currentaffairs','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:23','2020-04-30 18:10:46'),(8968,'geography','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:37','2020-04-30 17:59:39'),(8969,'mathematics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:46','2020-04-30 18:01:00'),(8970,'commerce','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:51','2020-04-30 17:59:53'),(8971,'biology','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 17:59:56','2020-04-30 18:08:45'),(8972,'chemistry','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:07','2020-04-30 18:00:09'),(8973,'crk','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:11','2020-04-30 18:00:13'),(8974,'history','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:16','2020-04-30 18:11:26'),(8975,'irk','197.210.52.67',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:20','2020-04-30 18:00:21'),(8976,'civiledu','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:22','2020-04-30 18:00:25'),(8977,'insurance','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:26','2020-04-30 18:10:30'),(8978,'accounting','197.210.52.197',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:30','2020-04-30 18:10:34'),(8979,'englishlit','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:34','2020-04-30 18:10:38'),(8980,'government','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:38','2020-04-30 18:00:40'),(8981,'currentaffairs','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:42','2020-04-30 18:12:59'),(8982,'economics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:46','2020-04-30 18:13:04'),(8983,'english','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:00:54','2020-04-30 18:00:56'),(8984,'commerce','197.210.53.151',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:03','2020-04-30 18:13:19'),(8985,'biology','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:07','2020-04-30 18:11:09'),(8986,'chemistry','197.210.52.197',120,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:16','2020-04-30 18:13:31'),(8987,'crk','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:21','2020-04-30 18:01:23'),(8988,'civiledu','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:01:34','2020-04-30 18:01:36'),(8989,'insurance','197.210.52.31',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:05','2020-04-30 18:12:44'),(8990,'englishlit','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:12','2020-04-30 18:08:15'),(8991,'government','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:16','2020-04-30 18:08:18'),(8992,'economics','197.210.53.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:24','2020-04-30 18:10:50'),(8993,'english','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:31','2020-04-30 18:08:33'),(8994,'chemistry','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:50','2020-04-30 18:08:52'),(8995,'history','197.210.52.197',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:08:56','2020-04-30 18:08:59'),(8996,'irk','197.210.52.197',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:00','2020-04-30 18:09:02'),(8997,'civiledu','197.210.53.138',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:09:03','2020-04-30 18:13:51'),(8998,'geography','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:52','2020-04-30 18:10:54'),(8999,'english','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:56','2020-04-30 18:10:58'),(9000,'mathematics','197.210.52.67',80,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:10:59','2020-04-30 18:13:16'),(9001,'commerce','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:03','2020-04-30 18:11:05'),(9002,'physics','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:11','2020-04-30 18:11:14'),(9003,'crk','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:20','2020-04-30 18:11:22'),(9004,'irk','197.210.53.91',30,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:28','2020-04-30 18:11:29'),(9005,'civiledu','197.210.52.67',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:11:31','2020-04-30 18:11:33'),(9006,'accounting','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:12:46','2020-04-30 18:12:48'),(9007,'geography','197.210.53.151',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:05','2020-04-30 18:13:08'),(9008,'english','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:09','2020-04-30 18:13:12'),(9009,'biology','197.210.53.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:21','2020-04-30 18:13:23'),(9010,'physics','197.210.52.31',40,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:13:25','2020-04-30 18:13:28'),(9011,'chemistry','129.205.113.173',4,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 18:44:54','2020-04-30 18:51:44'),(9012,'chemistry','40.77.167.109',7,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 19:59:37','2020-04-30 19:59:37'),(9013,'chemistry','18.212.194.164',1,'',NULL,'',NULL,NULL,NULL,'','','2020-04-30 22:59:35','2020-04-30 22:59:35'),(9014,'mathematics','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:52:42','2020-04-30 23:52:43'),(9015,'chemistry','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:32','2020-04-30 23:58:33'),(9016,'biology','41.60.237.135',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-04-30 23:58:49','2020-04-30 23:58:50'),(9017,'physics','197.210.63.5',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9018,'mathematics','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9019,'chemistry','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9020,'english','197.210.63.88',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 02:02:59','2020-05-01 02:03:01'),(9021,'english','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9022,'accounting','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9023,'chemistry','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9024,'government','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:08'),(9025,'economics','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:08','2020-05-01 05:19:09'),(9026,'irk','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9027,'civiledu','3.95.229.90',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 05:19:09','2020-05-01 05:19:09'),(9028,'chemistry','54.152.163.206',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 06:38:44','2020-05-01 06:38:44'),(9029,'civiledu','54.85.192.255',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 07:42:44','2020-05-01 07:42:44'),(9030,'chemistry','50.66.43.217',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 08:44:35','2020-05-01 08:44:35'),(9031,'accounting','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:23:43','2020-05-01 09:23:45'),(9032,'biology','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:26:39','2020-05-01 09:26:41'),(9033,'chemistry','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:28:41','2020-05-01 09:28:43'),(9034,'commerce','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:31:07','2020-05-01 09:31:09'),(9035,'geography','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:32:07','2020-05-01 09:32:09'),(9036,'government','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:33:07','2020-05-01 09:33:09'),(9037,'englishlit','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:34:23','2020-05-01 09:34:25'),(9038,'english','3.92.79.199',45,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:35:10','2020-05-01 09:36:06'),(9039,'physics','54.197.3.23',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:32','2020-05-01 09:36:32'),(9040,'history','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:36:45','2020-05-01 09:36:47'),(9041,'physics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:37:23','2020-05-01 09:37:25'),(9042,'crk','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:02','2020-05-01 09:38:04'),(9043,'irk','3.92.79.199',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:38:36','2020-05-01 09:38:37'),(9044,'mathematics','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:40:07','2020-05-01 09:40:09'),(9045,'civiledu','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:44:20','2020-05-01 09:44:22'),(9046,'insurance','3.92.79.199',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 09:45:12','2020-05-01 09:45:14'),(9047,'mathematics','18.212.127.132',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 10:27:34','2020-05-01 10:27:34'),(9048,'chemistry','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 11:53:35','2020-05-01 11:53:35'),(9049,'civiledu','54.242.189.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:07:15','2020-05-01 12:07:15'),(9050,'geography','35.171.18.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 12:48:39','2020-05-01 12:48:39'),(9051,'accounting','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 13:58:07','2020-05-01 15:50:39'),(9052,'english','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:12:28','2020-05-01 15:32:24'),(9053,'government','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:27:18','2020-05-01 15:42:41'),(9054,'geography','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:34:50','2020-05-01 14:34:50'),(9055,'irk','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:40:41','2020-05-01 15:22:36'),(9056,'economics','54.152.104.25',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 14:52:00','2020-05-01 15:03:28'),(9057,'chemistry','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:13:35','2020-05-01 15:13:35'),(9058,'civiledu','54.152.104.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 15:59:12','2020-05-01 15:59:12'),(9059,'physics','54.147.40.103',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 17:31:20','2020-05-01 17:31:20'),(9060,'englishlit','3.80.145.239',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:30:32','2020-05-01 18:30:32'),(9061,'geography','3.81.84.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 18:59:33','2020-05-01 18:59:33'),(9062,'mathematics','54.152.182.44',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 19:39:12','2020-05-01 19:39:12'),(9063,'currentaffairs','54.147.140.99',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-01 20:19:55','2020-05-01 20:46:03'),(9064,'mathematics','18.232.86.228',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 01:07:21','2020-05-02 01:07:21'),(9065,'physics','54.89.161.246',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 02:21:54','2020-05-02 02:21:54'),(9066,'mathematics','54.159.74.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 05:28:06','2020-05-02 05:28:06'),(9067,'mathematics','3.95.199.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 11:49:15','2020-05-02 11:49:54'),(9068,'geography','54.160.152.31',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 12:51:05','2020-05-02 12:51:05'),(9069,'accounting','54.242.134.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 13:44:35','2020-05-02 13:44:35'),(9070,'civiledu','54.80.130.45',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 14:38:04','2020-05-02 14:38:04'),(9071,'insurance','34.227.221.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 16:37:38','2020-05-02 16:37:38'),(9072,'chemistry','34.226.155.144',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 17:58:23','2020-05-02 18:51:09'),(9073,'history','34.226.155.144',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 18:31:23','2020-05-02 18:31:23'),(9074,'mathematics','54.166.138.44',41,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-02 21:12:05','2020-05-03 16:51:28'),(9075,'english','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:19','2020-05-02 21:57:19'),(9076,'commerce','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9077,'physics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9078,'geography','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9079,'economics','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9080,'civiledu','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9081,'insurance','3.95.60.146',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 21:57:20','2020-05-02 21:57:20'),(9082,'chemistry','3.83.147.68',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-02 22:48:32','2020-05-02 22:48:32'),(9083,'currentaffairs','107.21.76.29',120,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:19:42','2020-05-03 05:43:14'),(9084,'mathematics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:23:15','2020-05-03 05:35:39'),(9085,'commerce','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:24:10','2020-05-03 05:36:03'),(9086,'accounting','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:18','2020-05-03 05:36:47'),(9087,'biology','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:25:59','2020-05-03 05:37:26'),(9088,'physics','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:26:47','2020-05-03 05:38:06'),(9089,'chemistry','107.21.76.29',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 05:27:25','2020-05-03 05:38:29'),(9090,'englishlit','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:16','2020-05-03 05:38:53'),(9091,'government','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:28:51','2020-05-03 05:39:37'),(9092,'crk','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:29:36','2020-05-03 05:40:00'),(9093,'geography','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:30:23','2020-05-03 05:40:40'),(9094,'economics','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:07','2020-05-03 05:41:19'),(9095,'irk','107.21.76.29',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:31:39','2020-05-03 05:41:43'),(9096,'civiledu','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:32:21','2020-05-03 05:42:07'),(9097,'insurance','107.21.76.29',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:33:00','2020-05-03 05:42:48'),(9098,'history','107.21.76.29',160,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 05:34:12','2020-05-03 05:44:29'),(9099,'english','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:17'),(9100,'mathematics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:16','2020-05-03 07:17:16'),(9101,'commerce','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9102,'biology','3.83.109.40',4,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9103,'englishlit','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9104,'accounting','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9105,'crk','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9106,'currentaffairs','3.83.109.40',4,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9107,'physics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9108,'economics','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9109,'history','3.83.109.40',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 07:17:17','2020-05-03 07:17:17'),(9110,'government','3.83.55.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:34:46','2020-05-03 09:34:46'),(9111,'economics','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9112,'english','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:36'),(9113,'commerce','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9114,'accounting','102.89.2.21',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 09:44:32','2020-05-03 09:44:35'),(9115,'geography','54.235.52.25',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 11:00:21','2020-05-03 11:00:21'),(9116,'commerce','54.146.7.145',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 12:56:31','2020-05-03 12:56:31'),(9117,'economics','54.91.125.121',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 15:12:25','2020-05-03 15:12:25'),(9118,'mathematics','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:18:04','2020-05-03 16:18:04'),(9119,'englishlit','159.89.55.133',10,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:19:28','2020-05-03 16:19:28'),(9120,'commerce','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:02','2020-05-03 16:52:05'),(9121,'accounting','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:26','2020-05-03 16:52:28'),(9122,'biology','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:52:51','2020-05-03 16:52:53'),(9123,'physics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:53:34','2020-05-03 16:53:36'),(9124,'chemistry','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:00','2020-05-03 16:54:02'),(9125,'englishlit','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:54:48','2020-05-03 16:54:51'),(9126,'government','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:55:31','2020-05-03 16:55:34'),(9127,'crk','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:56:11','2020-05-03 16:56:13'),(9128,'geography','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:04','2020-05-03 16:57:06'),(9129,'economics','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:24','2020-05-03 16:57:26'),(9130,'irk','54.166.138.44',30,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:57:51','2020-05-03 16:57:53'),(9131,'civiledu','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:17','2020-05-03 16:58:19'),(9132,'insurance','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:58:58','2020-05-03 16:59:00'),(9133,'currentaffairs','54.166.138.44',40,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 16:59:20','2020-05-03 16:59:22'),(9134,'history','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:00:11','2020-05-03 17:50:17'),(9135,'mathematics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:10','2020-05-03 17:43:43'),(9136,'commerce','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:01:38','2020-05-03 17:44:06'),(9137,'accounting','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:04','2020-05-03 17:44:35'),(9138,'biology','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:28','2020-05-03 17:44:59'),(9139,'physics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:02:59','2020-05-03 17:45:22'),(9140,'chemistry','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:03:27','2020-05-03 17:45:51'),(9141,'englishlit','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:02','2020-05-03 17:46:17'),(9142,'crk','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:28','2020-05-03 17:47:18'),(9143,'government','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:04:57','2020-05-03 17:46:53'),(9144,'geography','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:27','2020-05-03 17:47:43'),(9145,'economics','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:05:55','2020-05-03 17:48:08'),(9146,'irk','3.95.205.237',180,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:29','2020-05-03 17:48:30'),(9147,'civiledu','3.95.205.237',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:06:57','2020-05-03 17:48:54'),(9148,'insurance','3.95.205.237',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:23','2020-05-03 17:49:18'),(9149,'currentaffairs','3.95.205.237',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:07:55','2020-05-03 17:49:38'),(9150,'insurance','18.234.85.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 17:51:52','2020-05-03 17:51:52'),(9151,'chemistry','54.81.105.87',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 19:38:19','2020-05-03 19:38:19'),(9152,'civiledu','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:43:29','2020-05-03 19:43:29'),(9153,'englishlit','54.81.105.87',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 19:54:13','2020-05-03 19:54:13'),(9154,'chemistry','105.112.115.225',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 20:27:24','2020-05-03 20:27:24'),(9155,'crk','34.233.133.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-03 21:37:40','2020-05-03 21:37:40'),(9156,'english','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-03 23:39:58','2020-05-03 23:39:58'),(9157,'crk','18.232.118.184',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 00:00:14','2020-05-04 00:00:14'),(9158,'english','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9159,'english','34.201.133.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9160,'physics','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9161,'accounting','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9162,'englishlit','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9163,'geography','34.201.133.1',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9164,'government','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9165,'economics','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9166,'civiledu','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:30','2020-05-04 03:04:30'),(9167,'irk','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9168,'insurance','34.201.133.1',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 03:04:31','2020-05-04 03:04:31'),(9169,'crk','54.146.129.173',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 04:53:02','2020-05-04 04:53:02'),(9170,'biology','54.82.169.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 05:39:54','2020-05-04 05:39:54'),(9171,'government','18.212.134.142',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 07:54:46','2020-05-04 07:54:46'),(9172,'chemistry','41.190.3.193',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 08:37:26','2020-05-04 08:37:29'),(9173,'chemistry','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:07:07','2020-05-04 09:07:07'),(9174,'economics','54.84.176.41',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 09:24:40','2020-05-04 09:24:40'),(9175,'mathematics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:05:23','2020-05-04 10:16:55'),(9176,'commerce','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:06:28','2020-05-04 10:17:26'),(9177,'accounting','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:07:00','2020-05-04 10:18:01'),(9178,'biology','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:17','2020-05-04 10:18:33'),(9179,'physics','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:08:52','2020-05-04 10:18:59'),(9180,'chemistry','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:09:47','2020-05-04 10:19:29'),(9181,'chemistry','197.211.53.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:17','2020-05-04 10:10:17'),(9182,'englishlit','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:10:27','2020-05-04 10:20:35'),(9183,'government','54.226.73.173',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:11','2020-05-04 10:21:10'),(9184,'crk','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:11:46','2020-05-04 10:21:49'),(9185,'economics','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:14','2020-05-04 10:22:21'),(9186,'geography','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:12:42','2020-05-04 10:22:44'),(9187,'irk','54.226.73.173',60,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:13:40','2020-05-04 10:23:05'),(9188,'civiledu','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:14:36','2020-05-04 10:24:07'),(9189,'insurance','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:05','2020-05-04 10:24:41'),(9190,'currentaffairs','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:15:37','2020-05-04 10:25:21'),(9191,'history','54.226.73.173',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 10:16:05','2020-05-04 10:25:43'),(9192,'physics','34.230.85.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 11:44:10','2020-05-04 11:44:10'),(9193,'englishlit','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 12:53:41','2020-05-04 12:53:41'),(9194,'currentaffairs','54.90.237.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 13:03:08','2020-05-04 13:03:08'),(9195,'english','54.91.147.136',2,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 13:59:39','2020-05-04 14:10:23'),(9196,'crk','54.167.221.14',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 16:21:35','2020-05-04 16:21:35'),(9197,'mathematics','34.227.100.151',320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-04 18:01:31','2020-05-04 18:53:32'),(9198,'commerce','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:06','2020-05-04 18:53:59'),(9199,'accounting','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:03:40','2020-05-04 18:54:21'),(9200,'biology','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:08','2020-05-04 18:54:50'),(9201,'physics','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:04:52','2020-05-04 18:48:01'),(9202,'chemistry','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:22','2020-05-04 18:55:24'),(9203,'englishlit','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:05:55','2020-05-04 18:55:50'),(9204,'government','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:06:25','2020-05-04 18:56:46'),(9205,'irk','34.227.100.151',240,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:05','2020-05-04 18:58:12'),(9206,'geography','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:32','2020-05-04 18:57:53'),(9207,'economics','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:07:56','2020-05-04 18:57:27'),(9208,'crk','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:08:29','2020-05-04 18:57:05'),(9209,'civiledu','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:22','2020-05-04 18:58:33'),(9210,'insurance','34.227.100.151',320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:09:52','2020-05-04 18:59:01'),(9211,'currentaffairs','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:10:36','2020-05-04 18:59:20'),(9212,'history','34.227.100.151',280,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:11:01','2020-05-04 18:59:44'),(9213,'englishlit','54.91.12.60',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:19:14','2020-05-04 18:19:14'),(9214,'english','34.227.100.151',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:41:22','2020-05-04 18:56:16'),(9215,'chemistry','77.88.5.170',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 18:43:38','2020-05-04 18:43:38'),(9216,'chemistry','54.90.243.173',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 19:36:36','2020-05-04 19:36:36'),(9217,'economics','18.208.245.55',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 20:24:40','2020-05-04 20:24:40'),(9218,'government','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:34:09','2020-05-04 22:34:09'),(9219,'crk','54.234.174.18',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-04 22:56:00','2020-05-04 22:56:00'),(9220,'english','34.230.41.70',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 01:39:36','2020-05-05 01:39:36'),(9221,'english','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9222,'biology','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9223,'chemistry','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9224,'government','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:52'),(9225,'irk','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:52','2020-05-05 11:03:53'),(9226,'civiledu','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9227,'insurance','107.21.90.86',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 11:03:53','2020-05-05 11:03:53'),(9228,'currentaffairs','54.82.122.188',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 15:55:27','2020-05-05 15:55:27'),(9229,'currentaffairs','35.171.182.143',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 17:52:25','2020-05-05 17:52:25'),(9230,'civiledu','54.162.194.117',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:44:31','2020-05-05 18:44:31'),(9231,'chemistry','105.112.22.22',10,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 18:54:47','2020-05-05 18:55:46'),(9232,'economics','3.81.61.113',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 20:23:57','2020-05-05 20:23:57'),(9233,'civiledu','34.229.1.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:13:48','2020-05-05 21:13:48'),(9234,'english','35.175.224.121',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 21:50:44','2020-05-05 21:50:44'),(9235,'english','66.249.64.72',7,'',NULL,'',NULL,NULL,NULL,'','','2020-05-05 22:53:19','2020-05-05 22:53:19'),(9236,'accounting','3.89.113.88',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-05 23:06:38','2020-05-05 23:06:38'),(9237,'biology','66.249.64.68',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 04:40:45','2020-05-06 04:40:46'),(9238,'biology','3.82.138.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 11:39:57','2020-05-06 11:39:57'),(9239,'government','54.159.33.148',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 15:34:04','2020-05-06 15:34:04'),(9240,'chemistry','54.36.149.58',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:24:22','2020-05-06 16:24:22'),(9241,'chemistry','54.36.148.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:28:45','2020-05-06 16:28:45'),(9242,'chemistry','54.36.149.15',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 16:32:20','2020-05-06 16:32:20'),(9243,'chemistry','105.112.52.46',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 17:44:03','2020-05-06 17:44:03'),(9244,'government','35.153.179.141',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:00:30','2020-05-06 18:00:30'),(9245,'crk','107.22.153.19',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 18:46:09','2020-05-06 18:46:09'),(9246,'insurance','52.207.168.128',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 20:37:45','2020-05-06 20:37:45'),(9247,'crk','54.152.178.63',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-06 22:54:07','2020-05-06 22:54:07'),(9248,'chemistry','102.89.2.104',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-06 23:18:18','2020-05-06 23:18:18'),(9249,'english','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9250,'commerce','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9251,'chemistry','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9252,'government','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9253,'irk','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9254,'civiledu','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:10'),(9255,'insurance','54.89.144.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-07 00:03:10','2020-05-07 00:03:11'),(9256,'chemistry','197.210.46.39',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:09:52','2020-05-25 11:09:52'),(9257,'chemistry','197.210.198.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:16:21','2020-05-25 11:16:21'),(9258,'chemistry','197.210.53.44',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:23:10','2020-05-25 11:23:15'),(9259,'chemistry','157.55.39.149',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 11:55:56','2020-05-25 11:55:56'),(9260,'commerce','3.94.205.199',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:06:49','2020-05-25 12:06:49'),(9261,'economics','54.226.128.12',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 12:53:03','2020-05-25 12:53:03'),(9262,'crk','54.91.154.11',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 14:42:35','2020-05-25 14:42:35'),(9263,'mathematics','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:28:22','2020-05-25 15:28:22'),(9264,'chemistry','129.205.112.240',5,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 15:33:33','2020-05-25 15:33:33'),(9265,'economics','54.91.243.198',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 17:58:39','2020-05-25 17:58:39'),(9266,'mathematics','66.249.66.136',25,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:15:02','2020-05-25 19:15:05'),(9267,'chemistry','15.236.101.59',18,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 19:49:10','2020-05-25 19:51:59'),(9268,'government','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:08:24','2020-05-25 21:08:24'),(9269,'chemistry','184.73.40.14',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 21:16:46','2020-05-25 21:16:46'),(9270,'chemistry','197.210.70.37',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:21:23','2020-05-25 22:21:23'),(9271,'geography','18.212.164.77',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 22:31:38','2020-05-25 22:31:38'),(9272,'government','54.81.15.61',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-25 23:48:45','2020-05-25 23:48:45'),(9273,'commerce','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 00:35:21','2020-05-26 00:35:21'),(9274,'economics','34.203.224.171',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 01:14:02','2020-05-26 01:14:02'),(9275,'crk','18.232.78.105',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 02:43:23','2020-05-26 02:43:23'),(9276,'insurance','18.212.41.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 04:09:34','2020-05-26 04:09:34'),(9277,'englishlit','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 06:53:11','2020-05-26 06:53:11'),(9278,'chemistry','41.190.31.41',122,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:00:17','2020-05-26 07:07:55'),(9279,'irk','41.190.31.41',30,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:09:11','2020-05-26 07:09:13'),(9280,'english','54.81.53.194',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:27','2020-05-26 07:19:27'),(9281,'english','41.190.31.41',839,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-26 07:19:30','2020-05-26 10:55:38'),(9282,'civiledu','54.159.94.32',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:11:23','2020-05-26 08:11:23'),(9283,'chemistry','105.112.24.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 08:25:30','2020-05-26 08:25:30'),(9284,'crk','3.87.153.137',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 09:29:02','2020-05-26 09:29:02'),(9285,'crk','52.90.24.192',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 11:46:19','2020-05-26 11:46:19'),(9286,'physics','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 21:42:14','2020-05-26 21:42:14'),(9287,'english','3.81.111.253',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:01:46','2020-05-26 22:01:46'),(9288,'chemistry','197.210.84.9',2,'',NULL,'',NULL,NULL,NULL,'','','2020-05-26 22:06:54','2020-05-26 22:09:09'),(9289,'currentaffairs','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:28:46','2020-05-26 23:28:46'),(9290,'englishlit','54.210.243.64',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-26 23:33:46','2020-05-26 23:33:46'),(9291,'englishlit','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 02:53:40','2020-05-27 02:53:40'),(9292,'economics','3.85.101.42',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 03:19:57','2020-05-27 03:19:57'),(9293,'chemistry','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:08:27','2020-05-27 04:08:27'),(9294,'crk','35.153.199.93',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 04:26:11','2020-05-27 04:26:11'),(9295,'insurance','18.209.13.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 05:07:33','2020-05-27 05:07:33'),(9296,'government','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:46:52','2020-05-27 06:46:52'),(9297,'crk','54.172.114.178',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 06:59:51','2020-05-27 06:59:51'),(9298,'geography','34.201.141.211',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 08:25:36','2020-05-27 08:25:36'),(9299,'english','3.84.219.66',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 10:53:47','2020-05-27 10:53:47'),(9300,'chemistry','169.255.236.30',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:14:45','2020-05-27 11:16:08'),(9301,'chemistry','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:29:07','2020-05-27 12:32:12'),(9302,'physics','41.190.30.150',64,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:34:30','2020-05-27 12:20:54'),(9303,'economics','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:37:24','2020-05-27 12:37:24'),(9304,'government','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:40:47','2020-05-27 12:23:05'),(9305,'biology','41.190.30.150',79,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:43:55','2020-05-27 12:19:37'),(9306,'biology','34.228.70.37',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:47:18','2020-05-27 11:47:18'),(9307,'mathematics','41.190.30.150',57,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:48:42','2020-05-27 12:17:48'),(9308,'english','41.190.30.150',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:50:16','2020-05-27 12:13:47'),(9309,'geography','41.190.30.150',65,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:53:34','2020-05-27 12:15:29'),(9310,'history','41.190.30.150',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 11:57:18','2020-05-27 11:57:22'),(9311,'englishlit','41.190.30.150',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 12:01:50','2020-05-27 12:07:14'),(9312,'chemistry','34.204.193.85',9,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 15:13:53','2020-05-27 15:45:24'),(9313,'currentaffairs','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:35:28','2020-05-27 17:35:28'),(9314,'civiledu','54.162.112.254',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:48:39','2020-05-27 17:48:39'),(9315,'chemistry','41.190.14.68',48,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:10','2020-05-27 17:54:19'),(9316,'english','41.190.14.68',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 17:51:32','2020-05-27 17:51:35'),(9317,'english','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:17:07','2020-05-27 20:17:07'),(9318,'chemistry','94.130.16.50',11,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:08','2020-05-27 20:36:12'),(9319,'biology','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:33:43','2020-05-27 20:33:43'),(9320,'accounting','3.87.162.183',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 20:51:21','2020-05-27 20:51:21'),(9321,'chemistry','154.66.36.151',63,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:46:00','2020-05-27 22:52:44'),(9322,'english','154.66.36.151',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 22:48:02','2020-05-27 22:48:02'),(9323,'chemistry','105.112.70.94',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-27 23:32:12','2020-05-27 23:32:12'),(9324,'chemistry','157.55.39.200',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 03:31:42','2020-05-28 03:31:42'),(9325,'english','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:40','2020-05-28 04:32:41'),(9326,'mathematics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9327,'biology','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9328,'economics','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9329,'irk','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:41','2020-05-28 04:32:41'),(9330,'insurance','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9331,'history','54.92.222.104',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 04:32:42','2020-05-28 04:32:42'),(9332,'chemistry','196.32.235.129',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:01:12','2020-05-28 05:01:12'),(9333,'chemistry','129.205.112.224',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:51:40','2020-05-28 05:53:11'),(9334,'mathematics','129.205.112.224',6,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:55:48','2020-05-28 05:59:02'),(9335,'chemistry','82.145.210.58',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 05:57:23','2020-05-28 05:57:23'),(9336,'chemistry','185.26.180.180',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 07:18:49','2020-05-28 07:18:49'),(9337,'geography','54.196.45.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:04:20','2020-05-28 09:04:20'),(9338,'chemistry','197.210.226.225',105,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:25:44','2020-05-28 10:24:13'),(9339,'chemistry','197.210.226.44',55,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:27:16','2020-05-28 10:22:52'),(9340,'chemistry','197.210.227.211',143,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:30:21','2020-05-28 10:21:54'),(9341,'english','197.210.227.211',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:54:07','2020-05-28 09:54:10'),(9342,'english','197.210.226.44',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 09:55:01','2020-05-28 09:55:04'),(9343,'english','197.210.226.225',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 10:03:53','2020-05-28 10:09:18'),(9344,'physics','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:10:25','2020-05-28 13:10:25'),(9345,'chemistry','197.210.44.100',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:26:05','2020-05-28 13:26:05'),(9346,'government','54.236.89.109',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:29:47','2020-05-28 13:29:47'),(9347,'chemistry','197.210.52.18',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:54:51','2020-05-28 14:08:36'),(9348,'chemistry','197.210.52.59',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:57:55','2020-05-28 13:57:55'),(9349,'chemistry','197.210.52.25',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 13:58:05','2020-05-28 13:58:13'),(9350,'chemistry','197.210.52.232',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:06:52','2020-05-28 14:06:55'),(9351,'chemistry','197.210.53.172',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:08:55','2020-05-28 14:53:41'),(9352,'chemistry','197.210.52.82',41,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:19:48','2020-05-28 14:54:31'),(9353,'chemistry','197.210.53.190',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:14','2020-05-28 14:53:55'),(9354,'insurance','197.210.53.190',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:49:51','2020-05-28 14:49:51'),(9355,'physics','197.210.53.17',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:50:15','2020-05-28 14:50:15'),(9356,'mathematics','197.210.53.190',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:51:48','2020-05-28 14:52:01'),(9357,'mathematics','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:34','2020-05-28 14:52:34'),(9358,'english','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:52:52','2020-05-28 14:52:52'),(9359,'english','197.210.52.82',4,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:07','2020-05-28 14:53:16'),(9360,'chemistry','197.210.53.156',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 14:53:33','2020-05-28 14:53:33'),(9361,'insurance','18.208.178.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:20:04','2020-05-28 15:20:04'),(9362,'chemistry','129.205.112.208',19,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 15:37:00','2020-05-28 15:38:41'),(9363,'crk','18.208.110.54',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:19:54','2020-05-28 17:19:54'),(9364,'chemistry','129.56.80.227',82,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 17:42:36','2020-05-28 17:57:17'),(9365,'chemistry','197.210.226.198',120,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 18:07:17','2020-05-28 19:14:47'),(9366,'chemistry','197.210.226.91',1562,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:09:38','2020-05-28 20:03:58'),(9367,'chemistry','197.210.226.220',2081,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-05-28 18:11:37','2020-05-28 20:03:48'),(9368,'english','197.210.226.220',120,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:05:42','2020-05-28 20:15:39'),(9369,'english','197.210.226.91',1080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:06:07','2020-05-28 20:15:26'),(9370,'english','197.210.226.198',2840,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:07:48','2020-05-28 20:15:35'),(9371,'mathematics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:07','2020-05-28 20:23:22'),(9372,'mathematics','197.210.226.91',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:22:15','2020-05-28 20:25:33'),(9373,'biology','197.210.226.198',1480,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:01','2020-05-28 20:41:32'),(9374,'biology','197.210.226.91',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:38:14','2020-05-28 20:41:25'),(9375,'civiledu','197.210.226.198',1960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:42:54','2020-05-28 21:07:50'),(9376,'civiledu','197.210.226.91',1560,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:43:16','2020-05-28 21:09:58'),(9377,'civiledu','197.210.226.220',1320,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:45:38','2020-05-28 21:10:08'),(9378,'physics','197.210.226.220',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:19','2020-05-28 20:49:51'),(9379,'physics','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:48:27','2020-05-28 20:49:39'),(9380,'government','197.210.226.91',1400,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:05','2020-05-28 20:57:45'),(9381,'government','197.210.226.220',960,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:51:12','2020-05-28 20:57:41'),(9382,'government','197.210.226.198',1680,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:52:42','2020-05-28 20:56:48'),(9383,'insurance','197.210.226.91',720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:58:57','2020-05-28 21:03:46'),(9384,'insurance','197.210.226.220',1360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 20:59:01','2020-05-28 21:03:58'),(9385,'history','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:48','2020-05-28 21:02:54'),(9386,'history','197.210.226.91',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:01:53','2020-05-28 21:02:49'),(9387,'geography','197.210.226.91',760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:05:51','2020-05-28 21:08:55'),(9388,'geography','197.210.226.198',640,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:06:05','2020-05-28 21:07:54'),(9389,'geography','197.210.226.220',360,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:07:55','2020-05-28 21:08:51'),(9390,'economics','197.210.226.220',600,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:09:59','2020-05-28 21:15:23'),(9391,'economics','197.210.226.91',1160,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:15','2020-05-28 21:15:30'),(9392,'economics','197.210.226.198',1720,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:10:42','2020-05-28 21:15:34'),(9393,'commerce','197.210.226.91',1760,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:15','2020-05-28 21:17:42'),(9394,'commerce','197.210.226.198',2080,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:11:19','2020-05-28 21:17:46'),(9395,'commerce','197.210.226.220',200,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 21:14:56','2020-05-28 21:15:26'),(9396,'geography','3.82.229.138',1,'',NULL,'',NULL,NULL,NULL,'','','2020-05-28 22:59:25','2020-05-28 22:59:25'),(9397,'chemistry','54.36.148.3',7,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-28 23:37:10','2020-05-28 23:37:10'),(9398,'chemistry','54.36.148.202',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:24:10','2020-05-29 00:24:10'),(9399,'chemistry','54.36.148.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 00:31:09','2020-05-29 00:31:09'),(9400,'geography','54.164.65.241',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:26:22','2020-05-29 01:59:55'),(9401,'economics','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 01:34:57','2020-05-29 01:34:57'),(9402,'english','54.164.65.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 02:28:56','2020-05-29 02:28:56'),(9403,'mathematics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9404,'biology','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9405,'government','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9406,'geography','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:48','2020-05-29 07:56:48'),(9407,'economics','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9408,'currentaffairs','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9409,'history','3.93.52.10',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 07:56:49','2020-05-29 07:56:49'),(9410,'geography','54.164.210.116',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:31:40','2020-05-29 08:31:40'),(9411,'chemistry','197.210.64.45',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 08:43:12','2020-05-29 21:25:53'),(9412,'physics','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:30:46','2020-05-29 09:30:46'),(9413,'englishlit','3.80.176.164',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 09:48:29','2020-05-29 09:48:29'),(9414,'biology','3.85.236.157',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:29:11','2020-05-29 11:29:11'),(9415,'chemistry','34.239.119.147',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:51:20','2020-05-29 11:51:20'),(9416,'chemistry','185.20.6.154',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 11:58:05','2020-05-29 11:58:05'),(9417,'currentaffairs','54.85.98.170',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 12:25:10','2020-05-29 12:25:10'),(9418,'physics','3.81.136.245',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 15:59:43','2020-05-29 15:59:43'),(9419,'mathematics','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 16:57:16','2020-05-29 16:57:16'),(9420,'geography','34.239.187.192',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 17:11:25','2020-05-29 17:11:25'),(9421,'geography','3.86.16.111',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:01:00','2020-05-29 19:01:00'),(9422,'mathematics','34.229.23.90',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 19:42:00','2020-05-29 19:42:00'),(9423,'government','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:04:38','2020-05-29 21:04:38'),(9424,'history','18.212.184.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 21:37:50','2020-05-29 21:37:50'),(9425,'mathematics','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:09:44','2020-05-29 23:09:44'),(9426,'accounting','52.86.120.55',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-29 23:39:35','2020-05-29 23:39:35'),(9427,'mathematics','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:47'),(9428,'commerce','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:47','2020-05-30 07:06:48'),(9429,'accounting','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9430,'biology','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9431,'geography','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9432,'irk','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9433,'currentaffairs','54.144.74.208',2,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 07:06:48','2020-05-30 07:06:48'),(9434,'accounting','3.89.232.241',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 08:21:13','2020-05-30 08:21:13'),(9435,'biology','54.208.77.1',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 11:46:23','2020-05-30 11:46:23'),(9436,'chemistry','144.76.56.124',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 17:12:22','2020-05-30 17:12:22'),(9437,'accounting','3.94.91.146',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-05-30 18:38:25','2020-05-30 18:38:25'),(9438,'insurance','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 11:49:35','2020-06-01 11:49:35'),(9439,'economics','18.206.179.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 12:10:32','2020-06-01 12:10:32'),(9440,'english','54.159.64.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:04:44','2020-06-01 13:04:44'),(9441,'mathematics','52.2.222.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 13:49:07','2020-06-01 13:49:07'),(9442,'englishlit','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9443,'crk','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:26:47','2020-06-01 14:26:47'),(9444,'economics','52.91.197.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 14:42:44','2020-06-01 14:42:44'),(9445,'crk','54.174.23.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:33:34','2020-06-01 16:33:34'),(9446,'geography','54.174.23.76',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:19','2020-06-01 17:19:55'),(9447,'mathematics','54.174.23.76',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 16:58:29','2020-06-01 17:43:19'),(9448,'biology','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9449,'chemistry','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9450,'englishlit','54.174.23.76',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:43:19'),(9451,'government','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:54','2020-06-01 17:19:54'),(9452,'economics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:19:55','2020-06-01 17:19:55'),(9453,'english','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:18','2020-06-01 17:43:18'),(9454,'accounting','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9455,'physics','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:19','2020-06-01 17:43:19'),(9456,'insurance','54.174.23.76',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 17:43:20','2020-06-01 17:43:20'),(9457,'history','3.85.59.140',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 20:12:18','2020-06-01 20:33:55'),(9458,'physics','35.172.115.238',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-01 23:04:28','2020-06-01 23:04:28'),(9459,'english','54.209.246.16',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 01:03:57','2020-06-02 01:03:57'),(9460,'currentaffairs','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:01:14','2020-06-02 02:01:14'),(9461,'englishlit','3.90.213.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 02:06:10','2020-06-02 02:06:10'),(9462,'insurance','54.211.248.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 04:46:23','2020-06-02 04:46:23'),(9463,'crk','54.205.222.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 05:30:27','2020-06-02 05:30:27'),(9464,'economics','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:20:56','2020-06-02 06:20:56'),(9465,'chemistry','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 06:38:36','2020-06-02 06:38:36'),(9466,'englishlit','54.89.68.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 07:02:43','2020-06-02 07:02:43'),(9467,'government','54.196.8.56',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 08:34:31','2020-06-02 08:34:31'),(9468,'geography','54.86.69.81',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 10:40:11','2020-06-02 10:40:11'),(9469,'chemistry','41.190.12.59',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-02 10:55:51','2020-06-02 10:55:54'),(9470,'english','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 12:19:33','2020-06-02 12:19:33'),(9471,'economics','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-02 23:59:57','2020-06-02 23:59:57'),(9472,'currentaffairs','54.204.193.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 00:22:59','2020-06-03 00:22:59'),(9473,'civiledu','35.173.231.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 02:25:11','2020-06-03 02:25:11'),(9474,'english','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 04:48:53','2020-06-03 05:17:39'),(9475,'accounting','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9476,'government','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9477,'civiledu','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9478,'insurance','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9479,'currentaffairs','3.208.9.26',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:42'),(9480,'history','3.208.9.26',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:17:39','2020-06-03 05:17:39'),(9481,'biology','3.208.9.26',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 05:51:48','2020-06-03 05:51:48'),(9482,'accounting','3.81.96.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 06:39:27','2020-06-03 06:39:27'),(9483,'economics','34.228.56.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:19:49','2020-06-03 12:19:49'),(9484,'englishlit','34.228.56.210',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 12:47:48','2020-06-03 12:51:59'),(9485,'mathematics','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9486,'commerce','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9487,'accounting','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9488,'biology','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9489,'englishlit','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:53','2020-06-03 15:04:53'),(9490,'government','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9491,'crk','54.236.18.56',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 15:04:54','2020-06-03 15:04:54'),(9492,'geography','52.91.141.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 18:34:51','2020-06-03 18:34:51'),(9493,'mathematics','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:32','2020-06-03 19:33:45'),(9494,'commerce','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:33:54','2020-06-03 19:36:09'),(9495,'currentaffairs','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:05','2020-06-03 19:34:05'),(9496,'crk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:11','2020-06-03 19:35:12'),(9497,'chemistry','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:34:57','2020-06-03 19:36:15'),(9498,'irk','3.92.240.129',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:26','2020-06-03 19:36:00'),(9499,'english','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:35:36','2020-06-03 19:35:36'),(9500,'englishlit','3.92.240.129',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 19:54:43','2020-06-03 19:54:43'),(9501,'government','54.85.212.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 21:33:59','2020-06-03 21:33:59'),(9502,'insurance','3.86.225.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-03 23:35:47','2020-06-03 23:35:47'),(9503,'crk','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 00:57:31','2020-06-04 00:57:31'),(9504,'physics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:23:50','2020-06-04 06:23:50'),(9505,'mathematics','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 06:34:26','2020-06-04 06:34:26'),(9506,'geography','34.205.74.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 07:10:34','2020-06-04 07:10:34'),(9507,'economics','54.242.18.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 08:36:04','2020-06-04 08:36:04'),(9508,'geography','3.83.161.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:26:27','2020-06-04 10:53:11'),(9509,'english','3.83.161.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 10:49:32','2020-06-04 10:49:32'),(9510,'mathematics','54.91.240.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 12:15:58','2020-06-04 12:15:58'),(9511,'biology','3.87.239.123',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 15:09:53','2020-06-04 15:09:53'),(9512,'chemistry','41.190.12.5',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-06-04 15:57:02','2020-06-04 15:57:05'),(9513,'geography','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:22:59','2020-06-04 16:22:59'),(9514,'physics','100.24.24.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:23:13','2020-06-04 16:23:13'),(9515,'englishlit','3.94.109.136',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 16:58:33','2020-06-04 16:58:33'),(9516,'currentaffairs','54.159.111.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:11:39','2020-06-04 19:11:39'),(9517,'english','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:37:05','2020-06-04 19:37:08'),(9518,'mathematics','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-04 19:44:40','2020-06-04 19:51:52'),(9519,'biology','18.207.247.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-04 19:57:06','2020-06-04 19:57:06'),(9520,'physics','54.196.42.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 00:29:32','2020-06-05 00:29:32'),(9521,'geography','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 02:42:52','2020-06-05 02:42:52'),(9522,'government','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:47','2020-06-05 03:06:47'),(9523,'mathematics','52.54.214.42',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 03:06:51','2020-06-05 03:06:51'),(9524,'history','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 07:51:51','2020-06-05 07:51:51'),(9525,'accounting','3.82.190.10',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 08:06:02','2020-06-05 08:06:02'),(9526,'accounting','105.112.179.136',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:31','2020-06-05 15:31:38'),(9527,'crk','105.112.179.136',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-05 15:31:41','2020-06-05 15:31:44'),(9528,'accounting','54.160.137.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 17:41:28','2020-06-05 17:41:28'),(9529,'biology','18.205.22.3',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:49:31','2020-06-05 18:55:02'),(9530,'commerce','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:01','2020-06-05 18:55:02'),(9531,'accounting','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9532,'government','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9533,'economics','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9534,'insurance','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9535,'history','18.205.22.3',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 18:55:02','2020-06-05 18:55:02'),(9536,'history','52.91.27.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-05 23:09:41','2020-06-05 23:09:41'),(9537,'history','3.85.77.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 01:06:10','2020-06-06 01:06:10'),(9538,'accounting','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:12:01','2020-06-06 03:12:01'),(9539,'chemistry','34.203.237.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 03:28:00','2020-06-06 03:28:00'),(9540,'irk','3.91.16.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 05:27:37','2020-06-06 05:27:37'),(9541,'english','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9542,'physics','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9543,'englishlit','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:39'),(9544,'government','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:39','2020-06-06 11:45:40'),(9545,'economics','3.90.106.57',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 17:12:22'),(9546,'irk','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9547,'history','3.90.106.57',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 11:45:40','2020-06-06 11:45:40'),(9548,'commerce','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9549,'physics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:18','2020-06-06 12:58:18'),(9550,'chemistry','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9551,'crk','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9552,'economics','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9553,'civiledu','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9554,'insurance','52.70.36.69',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 12:58:19','2020-06-06 12:58:19'),(9555,'insurance','52.207.159.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 15:54:55','2020-06-06 15:54:55'),(9556,'economics','52.70.110.33',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 18:01:25','2020-06-06 18:01:25'),(9557,'history','52.90.40.161',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 19:35:54','2020-06-06 20:01:45'),(9558,'accounting','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:44','2020-06-06 20:01:45'),(9559,'biology','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9560,'chemistry','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9561,'crk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9562,'irk','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9563,'civiledu','52.90.40.161',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 20:01:45','2020-06-06 20:01:45'),(9564,'history','54.210.221.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-06 21:37:33','2020-06-06 21:37:33'),(9565,'economics','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:20:46','2020-06-07 00:20:46'),(9566,'englishlit','54.234.48.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:46:15','2020-06-07 00:46:15'),(9567,'english','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9568,'mathematics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9569,'physics','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:15'),(9570,'chemistry','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:15','2020-06-07 00:49:16'),(9571,'government','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9572,'crk','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9573,'insurance','54.234.48.15',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 00:49:16','2020-06-07 00:49:16'),(9574,'irk','54.224.8.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 05:20:52','2020-06-07 05:20:52'),(9575,'commerce','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:08:43','2020-06-07 08:08:43'),(9576,'english','54.205.124.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 08:42:36','2020-06-07 08:42:36'),(9577,'crk','54.221.109.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 10:13:14','2020-06-07 10:13:14'),(9578,'economics','54.225.32.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:34:16','2020-06-07 12:34:16'),(9579,'english','52.72.124.107',400,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 12:53:32','2020-06-07 13:40:54'),(9580,'government','3.93.176.236',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 15:19:14','2020-06-07 15:19:14'),(9581,'chemistry','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:21:24','2020-06-07 17:21:24'),(9582,'economics','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:49:48','2020-06-07 17:49:48'),(9583,'government','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:52:13','2020-06-07 17:52:13'),(9584,'geography','50.17.59.189',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 17:53:52','2020-06-07 17:53:52'),(9585,'crk','105.112.176.254',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-07 19:15:46','2020-06-07 19:15:48'),(9586,'commerce','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:29:05','2020-06-07 21:29:05'),(9587,'english','54.90.107.82',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:36:38','2020-06-07 22:14:18'),(9588,'insurance','52.7.223.53',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 21:52:14','2020-06-07 21:52:14'),(9589,'english','54.83.121.94',680,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-07 23:24:33','2020-06-08 00:10:20'),(9590,'crk','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 00:57:41','2020-06-08 00:57:41'),(9591,'english','3.80.114.187',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:05:57','2020-06-08 01:07:20'),(9592,'civiledu','3.82.58.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 01:19:10','2020-06-08 01:19:10'),(9593,'englishlit','54.87.33.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 02:09:25','2020-06-08 02:09:25'),(9594,'english','54.196.250.109',360,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:14:09','2020-06-08 06:58:08'),(9595,'crk','3.80.171.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:47:50','2020-06-08 07:07:58'),(9596,'english','3.80.171.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 06:55:00','2020-06-08 06:55:00'),(9597,'english','54.167.101.91',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 13:03:52','2020-06-08 13:05:05'),(9598,'physics','3.95.171.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 15:20:45','2020-06-08 15:20:45'),(9599,'english','52.203.0.65',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 16:36:54','2020-06-08 16:36:54'),(9600,'english','34.201.76.45',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:10:20','2020-06-08 17:17:39'),(9601,'history','34.201.76.45',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:19:47','2020-06-08 17:19:50'),(9602,'englishlit','3.82.66.232',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 17:33:25','2020-06-08 17:33:25'),(9603,'currentaffairs','54.204.150.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:27:19','2020-06-08 18:27:19'),(9604,'history','3.87.156.54',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-08 18:58:06','2020-06-08 19:42:37'),(9605,'insurance','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:18:35','2020-06-08 20:18:35'),(9606,'crk','52.91.58.131',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:21:48','2020-06-08 20:21:48'),(9607,'englishlit','18.207.128.248',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 20:58:53','2020-06-08 20:58:53'),(9608,'chemistry','3.93.176.236',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 21:53:07','2020-06-08 21:53:07'),(9609,'economics','54.82.36.157',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-08 23:04:51','2020-06-08 23:04:51'),(9610,'government','54.86.240.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:01:33','2020-06-09 00:01:33'),(9611,'crk','3.85.86.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 00:37:54','2020-06-09 00:37:54'),(9612,'geography','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 02:38:55','2020-06-09 02:38:55'),(9613,'english','34.230.85.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:10:07','2020-06-09 03:10:07'),(9614,'history','3.83.163.75',680,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 03:12:41','2020-06-09 05:07:42'),(9615,'mathematics','3.83.163.75',320,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:02:16','2020-06-09 04:41:32'),(9616,'english','3.83.163.75',320,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-09 04:41:57','2020-06-09 05:07:46'),(9617,'history','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:33','2020-06-09 10:53:29'),(9618,'english','52.23.182.126',720,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 09:32:36','2020-06-09 10:53:32'),(9619,'mathematics','52.23.182.126',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 10:54:17','2020-06-09 11:12:18'),(9620,'mathematics','35.175.193.162',1596,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 14:27:00','2020-06-09 16:15:07'),(9621,'economics','54.204.126.52',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 15:24:33','2020-06-09 15:24:33'),(9622,'currentaffairs','54.91.74.154',3,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:21:57','2020-06-09 17:25:11'),(9623,'civiledu','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:24:52','2020-06-09 17:24:52'),(9624,'mathematics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9625,'government','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9626,'crk','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9627,'geography','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:10'),(9628,'economics','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:10','2020-06-09 17:25:11'),(9629,'insurance','54.91.74.154',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:25:11','2020-06-09 17:25:11'),(9630,'history','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:06','2020-06-09 17:36:08'),(9631,'english','3.85.236.157',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:36:09','2020-06-09 17:36:12'),(9632,'history','54.91.74.154',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 17:51:30','2020-06-09 17:51:30'),(9633,'english','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 19:54:48','2020-06-09 19:54:48'),(9634,'economics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:09:36','2020-06-09 20:09:36'),(9635,'mathematics','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:17:47','2020-06-09 20:17:47'),(9636,'biology','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:20:39','2020-06-09 20:20:39'),(9637,'accounting','34.201.154.21',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 20:32:25','2020-06-09 20:32:25'),(9638,'geography','54.175.242.92',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-09 22:47:17','2020-06-09 22:47:17'),(9639,'mathematics','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9640,'biology','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9641,'chemistry','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9642,'crk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:57'),(9643,'geography','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:57','2020-06-10 05:39:58'),(9644,'irk','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9645,'insurance','52.90.159.148',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 05:39:58','2020-06-10 05:39:58'),(9646,'economics','3.94.91.40',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 06:49:53','2020-06-10 06:49:53'),(9647,'english','54.164.250.86',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 07:55:11','2020-06-10 07:55:14'),(9648,'biology','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:01','2020-06-10 10:14:17'),(9649,'english','52.90.182.52',160,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:35:04','2020-06-10 10:14:20'),(9650,'geography','3.89.7.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 09:43:01','2020-06-10 09:43:01'),(9651,'currentaffairs','34.228.169.210',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 10:40:47','2020-06-10 10:40:47'),(9652,'physics','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:41','2020-06-10 12:30:40'),(9653,'english','54.91.74.154',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:06:51','2020-06-10 12:30:44'),(9654,'physics','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:32:35','2020-06-10 12:32:35'),(9655,'government','54.167.101.91',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 12:52:28','2020-06-10 12:52:28'),(9656,'insurance','34.229.159.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 14:58:20','2020-06-10 14:58:20'),(9657,'mathematics','35.173.239.121',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 15:35:55','2020-06-10 15:35:55'),(9658,'crk','3.86.97.187',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-10 16:58:01','2020-06-10 16:58:01'),(9659,'history','34.229.88.249',470,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:16','2020-06-10 17:23:26'),(9660,'english','34.229.88.249',482,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-10 17:06:19','2020-06-10 17:23:29'),(9661,'history','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:02','2020-06-10 18:16:04'),(9662,'english','3.84.245.65',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 18:16:05','2020-06-10 18:16:08'),(9663,'mathematics','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:05:59','2020-06-10 22:05:59'),(9664,'geography','34.207.226.79',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-10 22:27:25','2020-06-10 22:27:25'),(9665,'geography','52.72.218.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:19:39','2020-06-11 01:19:39'),(9666,'english','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 01:59:15','2020-06-11 01:59:15'),(9667,'geography','3.85.188.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 02:27:07','2020-06-11 02:27:07'),(9668,'mathematics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:11:45','2020-06-11 03:11:45'),(9669,'englishlit','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:26:44','2020-06-11 03:26:44'),(9670,'economics','3.89.89.184',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 03:33:39','2020-06-11 03:33:39'),(9671,'physics','54.237.231.196',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:12:05','2020-06-11 06:34:08'),(9672,'english','54.237.231.196',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 06:28:30','2020-06-11 06:34:10'),(9673,'geography','54.82.9.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 07:31:00','2020-06-11 07:31:00'),(9674,'physics','34.201.154.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 08:15:39','2020-06-11 08:15:39'),(9675,'englishlit','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:18:15','2020-06-11 09:18:15'),(9676,'currentaffairs','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 09:53:23','2020-06-11 09:53:23'),(9677,'geography','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 17:57:01','2020-06-11 17:57:01'),(9678,'chemistry','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:07:43','2020-06-11 18:07:43'),(9679,'government','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:18:55','2020-06-11 18:18:55'),(9680,'mathematics','52.91.192.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 18:29:47','2020-06-11 18:29:47'),(9681,'mathematics','34.204.107.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 20:09:41','2020-06-11 20:09:41'),(9682,'history','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:07:01','2020-06-11 21:07:01'),(9683,'accounting','3.85.88.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-11 21:15:15','2020-06-11 21:15:15'),(9684,'mathematics','54.81.240.233',280,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 06:45:16','2020-06-12 07:03:55'),(9685,'mathematics','54.162.119.234',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 07:52:29','2020-06-12 07:54:13'),(9686,'accounting','54.224.233.71',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-12 08:25:02','2020-06-12 08:25:02'),(9687,'mathematics','34.203.222.37',720,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-12 09:06:04','2020-06-12 09:50:04'),(9688,'mathematics','52.90.186.75',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:37:46','2020-06-12 10:44:14'),(9689,'biology','3.89.193.33',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 10:55:51','2020-06-12 10:55:51'),(9690,'englishlit','41.90.5.225',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:05:39','2020-06-12 13:05:41'),(9691,'history','54.236.252.119',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 13:33:09','2020-06-12 13:33:09'),(9692,'mathematics','3.81.215.137',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:39:44','2020-06-12 16:01:07'),(9693,'history','54.165.172.105',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 15:55:54','2020-06-12 15:55:54'),(9694,'accounting','3.86.93.233',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 17:29:11','2020-06-12 17:29:11'),(9695,'irk','3.208.21.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 20:36:13','2020-06-12 20:36:13'),(9696,'biology','54.152.97.16',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-12 22:32:45','2020-06-12 22:32:45'),(9697,'mathematics','54.226.209.23',800,'','US','','Virginia',NULL,NULL,'','','2020-06-12 23:38:09','2020-06-13 00:51:21'),(9698,'mathematics','52.91.175.68',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 01:40:43','2020-06-13 01:40:45'),(9699,'mathematics','54.152.163.102',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 02:16:58','2020-06-13 02:23:32'),(9700,'mathematics','54.163.49.62',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-13 06:48:30','2020-06-13 07:42:02'),(9701,'economics','3.80.186.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 07:05:55','2020-06-13 07:05:55'),(9702,'english','34.226.218.50',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:26:06','2020-06-13 08:33:08'),(9703,'insurance','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:28:58','2020-06-13 08:28:58'),(9704,'economics','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 08:55:48','2020-06-13 08:55:48'),(9705,'history','204.236.192.50',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 09:26:26','2020-06-13 09:26:26'),(9706,'history','34.235.159.175',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 11:48:21','2020-06-13 11:48:21'),(9707,'english','3.92.177.96',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 12:37:38','2020-06-13 12:37:38'),(9708,'englishlit','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:26:25','2020-06-13 14:26:25'),(9709,'economics','54.175.212.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 14:48:24','2020-06-13 14:48:24'),(9710,'irk','3.82.202.68',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-13 17:12:27','2020-06-13 17:12:27'),(9711,'mathematics','3.88.29.43',40,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 22:46:42','2020-06-13 22:46:45'),(9712,'english','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:02:32','2020-06-13 23:02:32'),(9713,'biology','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:10:31','2020-06-13 23:10:31'),(9714,'commerce','54.82.196.130',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-13 23:11:36','2020-06-13 23:11:36'),(9715,'crk','18.212.212.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 00:37:04','2020-06-14 00:37:04'),(9716,'economics','54.144.12.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 03:33:29','2020-06-14 03:33:29'),(9717,'government','18.215.251.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 05:40:04','2020-06-14 05:40:04'),(9718,'chemistry','54.81.247.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 06:42:21','2020-06-14 06:42:21'),(9719,'economics','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:03:38','2020-06-14 08:03:38'),(9720,'geography','3.84.209.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:07:21','2020-06-14 08:07:21'),(9721,'commerce','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:44:47','2020-06-14 08:44:47'),(9722,'biology','54.173.44.221',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 08:49:18','2020-06-14 08:49:18'),(9723,'insurance','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 11:39:05','2020-06-14 11:39:05'),(9724,'crk','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 12:49:53','2020-06-14 12:49:53'),(9725,'government','3.95.179.185',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 13:52:33','2020-06-14 13:52:33'),(9726,'civiledu','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:41:47','2020-06-14 15:41:47'),(9727,'english','3.93.81.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 15:45:01','2020-06-14 15:45:01'),(9728,'englishlit','34.207.148.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 16:28:31','2020-06-14 16:28:31'),(9729,'chemistry','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:15:57','2020-06-14 22:15:57'),(9730,'crk','34.207.226.99',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-14 22:29:17','2020-06-14 22:29:17'),(9731,'history','54.83.174.162',560,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:21','2020-06-15 02:23:52'),(9732,'english','54.83.174.162',480,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-15 02:07:28','2020-06-15 02:23:55'),(9733,'english','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:12:28','2020-06-15 06:12:28'),(9734,'englishlit','54.81.208.61',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 06:21:57','2020-06-15 06:21:57'),(9735,'currentaffairs','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:11:29','2020-06-15 08:11:29'),(9736,'physics','54.174.10.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 08:22:03','2020-06-15 08:22:03'),(9737,'crk','18.212.75.232',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 09:01:28','2020-06-15 09:01:28'),(9738,'englishlit','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:24:36','2020-06-15 10:24:36'),(9739,'insurance','18.209.61.149',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 10:29:58','2020-06-15 10:29:58'),(9740,'chemistry','54.172.215.76',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:11:58','2020-06-15 12:11:58'),(9741,'history','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:21:57','2020-06-15 12:23:22'),(9742,'english','54.82.232.65',120,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 12:22:00','2020-06-15 12:23:25'),(9743,'economics','184.73.145.115',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 13:15:25','2020-06-15 13:15:25'),(9744,'government','54.84.68.97',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 14:07:49','2020-06-15 14:07:49'),(9745,'crk','34.239.49.32',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 15:22:17','2020-06-15 15:22:17'),(9746,'english','54.242.223.207',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-15 16:33:06','2020-06-15 16:33:06'),(9747,'geography','54.242.223.207',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-15 16:43:55','2020-06-15 16:43:55'),(9748,'englishlit','41.80.97.78',40,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-06-16 02:45:58','2020-06-16 02:46:01'),(9749,'history','54.172.25.21',1840,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:41','2020-06-16 07:01:25'),(9750,'english','54.172.25.21',2080,'',NULL,'',NULL,'Virginia Beach','23460','36.8080','-76.0284','2020-06-16 02:47:44','2020-06-16 07:11:56'),(9751,'economics','3.82.194.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 04:52:57','2020-06-16 04:52:57'),(9752,'currentaffairs','52.54.215.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-16 05:58:53','2020-06-16 05:58:53'),(9753,'civiledu','34.205.23.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 07:14:44','2020-06-16 07:14:44'),(9754,'english','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 09:59:20','2020-06-16 09:59:20'),(9755,'history','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:29','2020-06-16 10:27:07'),(9756,'english','34.239.131.100',200,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:09:32','2020-06-16 10:27:10'),(9757,'accounting','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:15:35','2020-06-16 10:15:35'),(9758,'biology','52.87.223.23',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 10:36:24','2020-06-16 10:36:24'),(9759,'physics','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:16:12','2020-06-16 13:22:05'),(9760,'english','18.212.29.181',80,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 13:17:24','2020-06-16 13:22:09'),(9761,'history','34.224.165.104',480,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:48','2020-06-16 15:44:51'),(9762,'english','34.224.165.104',440,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 14:51:51','2020-06-16 15:44:55'),(9763,'history','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:39','2020-06-16 18:19:42'),(9764,'english','54.145.237.103',160,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 17:38:44','2020-06-16 18:19:45'),(9765,'english','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:30'),(9766,'accounting','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:30','2020-06-16 18:09:31'),(9767,'biology','18.205.237.24',2,'','US','','Virginia',NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9768,'physics','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9769,'government','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9770,'currentaffairs','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9771,'history','18.205.237.24',2,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 18:09:31','2020-06-16 18:09:31'),(9772,'geography','54.92.200.132',1,'',NULL,'',NULL,NULL,NULL,'','','2020-06-16 22:39:24','2020-06-16 22:39:24'),(9773,'physics','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 01:48:53','2020-06-17 01:48:53'),(9774,'government','52.87.246.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 02:03:54','2020-06-17 02:03:54'),(9775,'englishlit','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:26:11','2020-06-17 03:26:11'),(9776,'insurance','3.84.57.0',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 03:55:22','2020-06-17 03:55:22'),(9777,'biology','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:51','2020-06-17 05:30:54'),(9778,'english','3.82.244.87',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 05:30:54','2020-06-17 05:30:56'),(9779,'english','3.90.249.44',80,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 09:46:18','2020-06-17 09:46:55'),(9780,'chemistry','105.112.87.70',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-17 09:58:18','2020-06-17 09:58:20'),(9781,'chemistry','66.249.88.14',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-06-17 09:59:01','2020-06-17 09:59:04'),(9782,'mathematics','3.88.138.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 10:39:06','2020-06-17 10:39:06'),(9783,'geography','34.229.135.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:18:07','2020-06-17 11:18:07'),(9784,'economics','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:30','2020-06-17 11:34:32'),(9785,'english','35.174.4.0',120,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 11:34:32','2020-06-17 12:40:24'),(9786,'commerce','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:38:34','2020-06-17 12:38:36'),(9787,'history','35.174.4.0',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 12:40:18','2020-06-17 12:40:21'),(9788,'economics','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:13:12','2020-06-17 14:13:12'),(9789,'geography','18.205.18.35',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 14:36:52','2020-06-17 14:55:05'),(9790,'english','18.205.18.35',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 15:17:53','2020-06-17 15:17:53'),(9791,'english','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:50','2020-06-17 20:31:50'),(9792,'mathematics','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9793,'biology','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9794,'physics','54.161.200.177',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 21:32:59'),(9795,'chemistry','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9796,'irk','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9797,'civiledu','54.161.200.177',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:31:51','2020-06-17 20:31:51'),(9798,'geography','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 20:59:12','2020-06-17 20:59:12'),(9799,'englishlit','54.161.200.177',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 22:04:38','2020-06-17 22:04:38'),(9800,'biology','3.80.178.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-17 23:41:46','2020-06-17 23:41:46'),(9801,'currentaffairs','18.234.191.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 00:56:37','2020-06-18 00:56:37'),(9802,'physics','34.228.64.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 03:47:00','2020-06-18 03:47:00'),(9803,'mathematics','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:16:20','2020-06-18 06:16:20'),(9804,'geography','34.228.71.109',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 06:41:02','2020-06-18 06:41:02'),(9805,'mathematics','34.230.69.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 07:24:35','2020-06-18 07:24:35'),(9806,'government','23.20.220.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:17:08','2020-06-18 08:17:08'),(9807,'commerce','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:15','2020-06-18 08:57:15'),(9808,'accounting','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9809,'englishlit','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9810,'geography','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9811,'economics','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9812,'insurance','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9813,'history','54.205.211.105',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 08:57:16','2020-06-18 08:57:16'),(9814,'history','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 09:42:52','2020-06-18 09:42:52'),(9815,'mathematics','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:15:46','2020-06-18 10:15:46'),(9816,'accounting','52.87.242.220',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 10:16:19','2020-06-18 10:16:19'),(9817,'accounting','54.210.194.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 22:40:17','2020-06-18 22:40:17'),(9818,'biology','3.80.246.93',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-18 23:21:08','2020-06-18 23:21:08'),(9819,'history','54.83.113.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 02:45:33','2020-06-19 02:45:33'),(9820,'accounting','52.90.48.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 06:38:29','2020-06-19 06:38:29'),(9821,'irk','52.201.246.231',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 08:58:17','2020-06-19 08:58:17'),(9822,'economics','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:17:42','2020-06-19 21:17:42'),(9823,'insurance','54.91.208.8',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 21:35:24','2020-06-19 21:35:24'),(9824,'economics','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:10:39','2020-06-19 23:10:39'),(9825,'history','54.204.67.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-19 23:30:20','2020-06-19 23:30:20'),(9826,'economics','54.196.106.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 02:31:48','2020-06-20 02:31:48'),(9827,'englishlit','18.233.155.89',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 04:55:13','2020-06-20 04:55:13'),(9828,'history','52.91.173.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 06:51:56','2020-06-20 06:51:56'),(9829,'irk','52.203.62.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 09:34:33','2020-06-20 09:34:33'),(9830,'english','54.87.80.5',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:00:50','2020-06-20 12:00:50'),(9831,'commerce','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 12:48:20','2020-06-20 13:11:36'),(9832,'mathematics','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:36'),(9833,'biology','54.165.162.104',37,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:12:18'),(9834,'englishlit','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:28'),(9835,'crk','54.165.162.104',27,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:33:04'),(9836,'economics','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:17'),(9837,'irk','54.165.162.104',21,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:10:58'),(9838,'civiledu','54.165.162.104',23,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:18','2020-06-20 13:11:25'),(9839,'english','54.165.162.104',22,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:11:35'),(9840,'accounting','54.165.162.104',25,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9841,'government','54.165.162.104',20,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:28','2020-06-20 13:10:43'),(9842,'insurance','54.165.162.104',14,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:10:29'),(9843,'currentaffairs','54.165.162.104',26,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:29','2020-06-20 13:12:18'),(9844,'geography','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:42','2020-06-20 13:11:16'),(9845,'physics','54.165.162.104',32,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:46','2020-06-20 13:12:18'),(9846,'history','54.165.162.104',18,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:06:57','2020-06-20 13:12:19'),(9847,'chemistry','54.165.162.104',16,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 13:07:22','2020-06-20 13:10:58'),(9848,'economics','54.145.114.213',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 16:22:38','2020-06-20 16:22:38'),(9849,'government','18.207.167.106',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 17:33:28','2020-06-20 17:33:28'),(9850,'chemistry','34.229.200.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 18:50:32','2020-06-20 18:50:32'),(9851,'geography','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 20:55:26','2020-06-20 20:55:26'),(9852,'commerce','54.234.45.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:27:07','2020-06-20 21:27:07'),(9853,'biology','54.234.45.227',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-20 21:34:23','2020-06-20 22:01:46'),(9854,'english','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:03:31','2020-06-21 00:03:31'),(9855,'insurance','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:07:20','2020-06-21 00:07:20'),(9856,'crk','18.234.224.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 00:30:51','2020-06-21 00:30:51'),(9857,'english','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:08:21','2020-06-21 03:08:21'),(9858,'englishlit','54.224.175.95',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 03:28:58','2020-06-21 03:28:58'),(9859,'civiledu','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:13:32','2020-06-21 04:13:32'),(9860,'crk','34.239.48.173',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 04:36:06','2020-06-21 04:36:06'),(9861,'government','54.227.23.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 10:01:04','2020-06-21 10:01:04'),(9862,'history','18.206.211.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 12:36:25','2020-06-21 12:36:25'),(9863,'physics','3.80.240.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 15:52:13','2020-06-21 15:52:13'),(9864,'englishlit','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:00:57','2020-06-21 17:00:57'),(9865,'english','54.196.23.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 17:13:38','2020-06-21 17:13:38'),(9866,'currentaffairs','34.238.151.127',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 18:19:01','2020-06-21 18:19:01'),(9867,'crk','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:44:26','2020-06-21 21:44:26'),(9868,'englishlit','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 21:54:44','2020-06-21 21:54:44'),(9869,'economics','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:08:26','2020-06-21 22:08:26'),(9870,'chemistry','52.90.31.247',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 22:33:17','2020-06-21 22:33:17'),(9871,'insurance','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:20:32','2020-06-21 23:20:32'),(9872,'government','174.129.86.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-21 23:37:50','2020-06-21 23:37:50'),(9873,'crk','3.84.250.255',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 00:51:48','2020-06-22 00:51:48'),(9874,'geography','54.221.187.130',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 01:53:56','2020-06-22 01:53:56'),(9875,'english','18.209.110.157',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 03:40:04','2020-06-22 03:40:04'),(9876,'economics','34.230.36.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 13:54:50','2020-06-22 13:54:50'),(9877,'currentaffairs','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 15:38:47','2020-06-22 15:38:47'),(9878,'civiledu','3.95.203.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 16:11:57','2020-06-22 16:11:57'),(9879,'biology','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:24:35','2020-06-22 18:24:35'),(9880,'english','3.85.50.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 18:41:12','2020-06-22 18:41:12'),(9881,'accounting','54.90.154.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-22 20:56:27','2020-06-22 20:56:27'),(9882,'mathematics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9883,'accounting','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9884,'biology','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:41','2020-06-23 02:55:41'),(9885,'economics','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9886,'insurance','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9887,'currentaffairs','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9888,'history','3.87.218.94',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 02:55:42','2020-06-23 02:55:42'),(9889,'geography','54.196.101.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 05:30:08','2020-06-23 05:30:08'),(9890,'physics','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:13:29','2020-06-23 09:13:29'),(9891,'government','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 09:42:29','2020-06-23 09:42:29'),(9892,'englishlit','3.92.56.73',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 10:04:23','2020-06-23 10:04:23'),(9893,'insurance','35.153.133.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 11:44:24','2020-06-23 11:44:24'),(9894,'crk','34.205.18.101',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:01:55','2020-06-23 13:07:27'),(9895,'government','34.205.18.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 13:39:31','2020-06-23 13:39:31'),(9896,'chemistry','41.190.30.186',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-06-23 14:36:31','2020-06-23 14:36:38'),(9897,'accounting','54.227.55.70',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 18:14:12','2020-06-23 18:14:12'),(9898,'mathematics','18.209.61.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 19:02:39','2020-06-23 19:02:39'),(9899,'geography','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:24:58','2020-06-23 20:24:58'),(9900,'economics','54.227.126.37',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 20:45:09','2020-06-23 20:45:09'),(9901,'geography','3.89.130.67',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 21:21:11','2020-06-23 21:21:11'),(9902,'geography','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:28:57','2020-06-23 22:28:57'),(9903,'english','3.87.254.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-23 22:39:49','2020-06-23 22:39:49'),(9904,'physics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 02:49:35','2020-06-24 02:49:35'),(9905,'mathematics','3.88.139.179',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 03:07:03','2020-06-24 03:07:03'),(9906,'englishlit','54.158.85.105',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 04:02:10','2020-06-24 04:02:10'),(9907,'currentaffairs','18.204.209.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 05:53:24','2020-06-24 05:53:24'),(9908,'geography','54.158.151.153',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:14:42','2020-06-24 07:14:42'),(9909,'biology','54.81.22.48',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 07:52:37','2020-06-24 07:52:37'),(9910,'physics','34.207.160.124',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 12:25:46','2020-06-24 12:25:46'),(9911,'geography','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:49:47','2020-06-24 14:49:47'),(9912,'mathematics','107.21.199.228',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 14:55:40','2020-06-24 15:41:17'),(9913,'government','107.21.199.228',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 15:12:17','2020-06-24 15:12:17'),(9914,'mathematics','54.162.201.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-24 16:28:06','2020-06-24 16:28:06'),(9915,'accounting','18.206.251.149',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 04:06:31','2020-06-25 04:06:31'),(9916,'biology','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 05:08:21','2020-06-25 05:08:21'),(9917,'history','3.84.8.164',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 08:20:25','2020-06-25 08:20:25'),(9918,'history','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:40:28','2020-06-25 09:40:28'),(9919,'english','54.160.134.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 09:50:38','2020-06-25 09:50:38'),(9920,'accounting','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 12:06:48','2020-06-25 12:06:48'),(9921,'irk','54.234.51.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-25 14:44:49','2020-06-25 14:44:49'),(9922,'economics','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 02:40:10','2020-06-26 02:40:10'),(9923,'insurance','52.91.61.111',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 03:05:31','2020-06-26 03:05:31'),(9924,'history','52.90.69.239',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 05:53:52','2020-06-26 05:53:52'),(9925,'history','34.207.74.169',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 06:38:00','2020-06-26 06:38:00'),(9926,'englishlit','54.91.84.94',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 08:40:21','2020-06-26 08:40:21'),(9927,'irk','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:42:58','2020-06-26 09:42:58'),(9928,'economics','3.80.243.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 09:46:26','2020-06-26 09:46:26'),(9929,'commerce','54.175.1.15',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 12:27:10','2020-06-26 12:27:10'),(9930,'english','3.94.119.43',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 15:45:31','2020-06-26 15:45:31'),(9931,'crk','18.207.229.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 17:10:47','2020-06-26 17:10:47'),(9932,'accounting','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9933,'biology','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9934,'crk','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9935,'physics','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9936,'economics','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:27'),(9937,'chemistry','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9938,'irk','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:26','2020-06-26 18:55:26'),(9939,'insurance','54.236.208.118',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9940,'currentaffairs','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9941,'history','54.236.208.118',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9942,'history','54.236.208.118',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 18:55:27','2020-06-26 18:55:27'),(9943,'economics','34.205.32.248',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 20:26:36','2020-06-26 20:26:36'),(9944,'chemistry','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:19:29','2020-06-26 22:19:29'),(9945,'government','18.208.184.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-26 22:28:09','2020-06-26 22:28:09'),(9946,'geography','3.87.90.156',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 00:28:07','2020-06-27 00:28:07'),(9947,'crk','35.175.174.168',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 13:22:54','2020-06-27 13:22:54'),(9948,'government','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 18:54:24','2020-06-27 18:54:24'),(9949,'history','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 19:36:24','2020-06-27 19:36:24'),(9950,'mathematics','52.23.232.13',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:03:20','2020-06-27 20:03:20'),(9951,'physics','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:47:39','2020-06-27 20:47:39'),(9952,'biology','54.227.3.2',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 20:49:44','2020-06-27 20:49:44'),(9953,'currentaffairs','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:41:30','2020-06-27 22:47:05'),(9954,'english','54.92.136.9',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 23:00:09'),(9955,'biology','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:04','2020-06-27 22:47:05'),(9956,'government','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9957,'geography','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9958,'insurance','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9959,'history','54.92.136.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 22:47:05','2020-06-27 22:47:05'),(9960,'mathematics','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:08:42','2020-06-27 23:08:42'),(9961,'englishlit','54.92.136.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-27 23:16:39','2020-06-27 23:16:39'),(9962,'english','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:05:48','2020-06-28 00:26:33'),(9963,'crk','52.90.201.9',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 00:22:50','2020-06-28 00:32:46'),(9964,'insurance','3.90.110.19',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:16:59','2020-06-28 02:16:59'),(9965,'englishlit','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 02:55:43','2020-06-28 02:55:43'),(9966,'crk','3.94.190.125',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:06:30','2020-06-28 03:06:30'),(9967,'chemistry','34.227.105.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 03:45:11','2020-06-28 03:45:11'),(9968,'economics','54.152.205.87',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 05:31:01','2020-06-28 05:31:01'),(9969,'geography','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:34:01','2020-06-28 06:34:01'),(9970,'economics','35.171.27.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 06:52:00','2020-06-28 06:52:00'),(9971,'economics','54.236.22.116',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 12:40:35','2020-06-28 12:40:35'),(9972,'currentaffairs','100.26.43.66',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 13:51:22','2020-06-28 13:51:22'),(9973,'mathematics','34.201.45.145',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:38:42','2020-06-28 16:38:42'),(9974,'commerce','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9975,'accounting','34.201.45.145',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:53:13'),(9976,'biology','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9977,'chemistry','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9978,'geography','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9979,'irk','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:22','2020-06-28 16:39:22'),(9980,'insurance','34.201.45.145',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 16:39:23','2020-06-28 16:39:23'),(9981,'english','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9982,'biology','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9983,'physics','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9984,'chemistry','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9985,'englishlit','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:27'),(9986,'civiledu','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:27','2020-06-28 23:19:28'),(9987,'currentaffairs','3.84.246.186',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-28 23:19:28','2020-06-28 23:19:28'),(9988,'geography','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:24:53','2020-06-29 01:24:53'),(9989,'history','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 01:51:44','2020-06-29 01:51:44'),(9990,'englishlit','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:10:38','2020-06-29 02:10:38'),(9991,'english','54.80.35.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 02:15:48','2020-06-29 02:15:48'),(9992,'physics','18.232.165.163',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 05:11:32','2020-06-29 05:11:32'),(9993,'chemistry','35.172.134.44',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 06:37:11','2020-06-29 06:37:11'),(9994,'chemistry','54.85.126.38',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:18:44','2020-06-29 10:18:44'),(9995,'biology','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 10:59:34','2020-06-29 10:59:34'),(9996,'accounting','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:24:56','2020-06-29 11:24:56'),(9997,'geography','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:33:40','2020-06-29 11:33:40'),(9998,'mathematics','18.234.250.222',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 11:38:46','2020-06-29 11:38:46'),(9999,'mathematics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 13:50:54','2020-06-29 13:50:54'),(10000,'geography','3.84.39.14',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:15:45','2020-06-29 14:49:49'),(10001,'economics','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 14:32:34','2020-06-29 14:32:34'),(10002,'english','3.84.39.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 15:13:58','2020-06-29 15:13:58'),(10003,'mathematics','54.172.215.76',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 16:01:15','2020-06-29 16:01:15'),(10004,'physics','54.167.221.14',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 20:53:21','2020-06-29 20:53:21'),(10005,'currentaffairs','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 21:44:22','2020-06-29 21:44:22'),(10006,'englishlit','3.87.114.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-29 23:55:57','2020-06-29 23:55:57'),(10007,'biology','54.165.2.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 00:45:46','2020-06-30 00:45:46'),(10008,'chemistry','54.166.139.196',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 02:22:51','2020-06-30 02:22:51'),(10009,'physics','3.92.221.246',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 03:02:17','2020-06-30 03:02:17'),(10010,'mathematics','184.72.82.88',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 04:50:03','2020-06-30 04:50:03'),(10011,'government','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 06:53:24','2020-06-30 06:53:24'),(10012,'mathematics','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:00:07','2020-06-30 07:00:07'),(10013,'geography','54.161.138.126',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 07:09:39','2020-06-30 07:09:39'),(10014,'mathematics','52.202.65.159',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 08:52:07','2020-06-30 08:52:07'),(10015,'history','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:08:39','2020-06-30 09:37:56'),(10016,'accounting','52.202.65.159',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 10:04:26'),(10017,'physics','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:55','2020-06-30 09:37:55'),(10018,'chemistry','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10019,'englishlit','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10020,'irk','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10021,'civiledu','52.202.65.159',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 09:37:56','2020-06-30 09:37:56'),(10022,'english','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:00','2020-06-30 15:33:00'),(10023,'commerce','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10024,'accounting','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10025,'chemistry','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10026,'government','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10027,'geography','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10028,'civiledu','3.93.248.181',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 15:33:01','2020-06-30 15:33:01'),(10029,'accounting','52.55.83.32',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 17:10:09','2020-06-30 17:10:09'),(10030,'biology','54.89.237.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:04:39','2020-06-30 19:04:39'),(10031,'commerce','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10032,'accounting','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10033,'chemistry','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10034,'irk','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:46','2020-06-30 19:38:46'),(10035,'civiledu','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10036,'insurance','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10037,'currentaffairs','18.205.236.98',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 19:38:47','2020-06-30 19:38:47'),(10038,'biology','54.234.3.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 20:15:32','2020-06-30 20:15:32'),(10039,'history','34.227.88.114',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 21:38:23','2020-06-30 21:38:23'),(10040,'history','54.86.39.12',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-06-30 22:33:09','2020-06-30 22:33:09'),(10041,'accounting','54.172.57.23',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 01:19:58','2020-07-01 01:19:58'),(10042,'irk','3.86.160.142',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 04:51:36','2020-07-01 04:51:36'),(10043,'chemistry','54.91.179.155',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 08:07:07','2020-07-01 08:07:07'),(10044,'physics','35.153.168.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 10:50:24','2020-07-01 10:50:24'),(10045,'economics','23.20.242.195',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 11:31:17','2020-07-01 11:31:17'),(10046,'insurance','54.87.197.28',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 12:53:01','2020-07-01 12:53:01'),(10047,'economics','3.91.214.21',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 14:03:22','2020-07-01 14:03:22'),(10048,'history','54.84.225.227',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 15:25:35','2020-07-01 15:25:35'),(10049,'history','3.94.169.218',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 16:02:27','2020-07-01 16:02:27'),(10050,'economics','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 17:46:59','2020-07-01 17:46:59'),(10051,'irk','34.229.225.103',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:20:57','2020-07-01 18:20:57'),(10052,'englishlit','54.84.229.165',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-01 18:58:33','2020-07-01 18:58:33'),(10053,'commerce','34.228.230.135',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 00:24:39','2020-07-02 00:24:39'),(10054,'english','52.91.78.211',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 01:41:45','2020-07-02 01:41:45'),(10055,'crk','184.72.205.154',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 02:39:16','2020-07-02 02:39:16'),(10056,'economics','52.91.54.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 04:40:45','2020-07-02 04:40:45'),(10057,'chemistry','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:11:03','2020-07-02 06:11:03'),(10058,'government','3.94.173.205',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 06:42:32','2020-07-02 06:42:32'),(10059,'government','34.239.131.100',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:04:51','2020-07-02 08:04:51'),(10060,'economics','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:41:05','2020-07-02 08:41:05'),(10061,'commerce','3.95.25.171',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 08:56:42','2020-07-02 08:56:42'),(10062,'geography','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:38:08','2020-07-02 09:38:08'),(10063,'biology','3.90.55.58',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 09:54:27','2020-07-02 09:54:27'),(10064,'crk','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:13:25','2020-07-02 11:13:25'),(10065,'insurance','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:14:35','2020-07-02 11:14:35'),(10066,'english','184.73.23.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 11:36:17','2020-07-02 11:36:17'),(10067,'english','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:32:13','2020-07-02 14:32:13'),(10068,'englishlit','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 14:43:14','2020-07-02 14:43:14'),(10069,'crk','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:08:57','2020-07-02 15:08:57'),(10070,'civiledu','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:35:16','2020-07-02 15:35:16'),(10071,'physics','54.92.128.86',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 15:42:25','2020-07-02 15:42:25'),(10072,'economics','54.234.26.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 16:32:16','2020-07-02 16:32:16'),(10073,'crk','34.201.40.131',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 17:47:14','2020-07-02 17:47:14'),(10074,'history','54.164.23.9',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 21:46:06','2020-07-02 21:46:06'),(10075,'government','3.84.186.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-02 22:58:39','2020-07-02 22:58:39'),(10076,'physics','18.208.193.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:11:53','2020-07-03 00:11:53'),(10077,'biology','54.160.208.244',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 00:48:21','2020-07-03 00:48:21'),(10078,'englishlit','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:15:26','2020-07-03 02:15:26'),(10079,'english','35.168.20.20',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 02:23:09','2020-07-03 02:23:09'),(10080,'currentaffairs','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:26:38','2020-07-03 04:26:38'),(10081,'insurance','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 04:57:52','2020-07-03 04:57:52'),(10082,'englishlit','54.162.3.172',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:03:51','2020-07-03 05:03:51'),(10083,'economics','54.172.4.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 05:40:21','2020-07-03 05:40:21'),(10084,'crk','204.236.197.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:18:22','2020-07-03 06:18:22'),(10085,'chemistry','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 06:58:20','2020-07-03 06:58:20'),(10086,'economics','34.229.181.24',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 07:05:43','2020-07-03 07:05:43'),(10087,'government','34.235.117.214',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:09:45','2020-07-03 08:09:45'),(10088,'crk','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 08:52:38','2020-07-03 08:52:38'),(10089,'geography','54.86.149.132',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 09:01:32','2020-07-03 09:01:32'),(10090,'english','54.144.92.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 11:49:20','2020-07-03 11:49:20'),(10091,'currentaffairs','54.89.189.46',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 21:42:09','2020-07-03 21:42:09'),(10092,'civiledu','54.91.226.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-03 22:22:22','2020-07-03 22:22:22'),(10093,'english','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:22:03','2020-07-04 00:22:03'),(10094,'biology','52.205.195.31',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 00:38:50','2020-07-04 00:38:50'),(10095,'history','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:48:34','2020-07-04 01:48:34'),(10096,'accounting','3.84.34.183',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 01:56:25','2020-07-04 01:56:25'),(10097,'history','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:54','2020-07-04 06:18:57'),(10098,'english','3.93.7.222',40,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 06:18:57','2020-07-04 06:19:00'),(10099,'mathematics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10100,'accounting','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10101,'physics','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:05','2020-07-04 08:17:05'),(10102,'englishlit','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10103,'crk','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10104,'geography','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10105,'civiledu','54.175.199.96',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 08:17:06','2020-07-04 08:17:06'),(10106,'history','54.162.152.191',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 09:43:19','2020-07-04 09:43:19'),(10107,'geography','3.93.171.198',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 10:35:06','2020-07-04 10:35:06'),(10108,'english','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:36:34','2020-07-04 11:36:34'),(10109,'englishlit','3.91.201.101',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 11:38:05','2020-07-04 11:38:05'),(10110,'crk','3.81.50.112',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 15:36:29','2020-07-04 15:36:29'),(10111,'physics','34.224.81.74',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 16:13:25','2020-07-04 16:13:25'),(10112,'mathematics','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:24:26','2020-07-04 19:24:26'),(10113,'biology','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 19:58:10','2020-07-04 19:58:10'),(10114,'geography','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:24:53','2020-07-04 20:24:53'),(10115,'accounting','54.173.241.47',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 20:51:26','2020-07-04 20:51:26'),(10116,'geography','54.152.35.97',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:04:02','2020-07-04 22:04:02'),(10117,'mathematics','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 22:51:02','2020-07-04 22:51:02'),(10118,'geography','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:11:06','2020-07-04 23:11:06'),(10119,'english','3.83.106.249',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-04 23:13:22','2020-07-04 23:13:22'),(10120,'mathematics','184.72.78.80',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 00:30:41','2020-07-05 00:30:41'),(10121,'physics','18.234.140.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 03:22:51','2020-07-05 03:22:51'),(10122,'englishlit','54.81.208.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 04:42:18','2020-07-05 04:42:18'),(10123,'currentaffairs','3.92.239.52',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 05:50:06','2020-07-05 05:50:06'),(10124,'biology','3.94.250.147',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 07:05:26','2020-07-05 07:05:26'),(10125,'mathematics','18.234.172.57',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 10:56:25','2020-07-05 10:56:25'),(10126,'history','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:16:14','2020-07-05 14:16:14'),(10127,'accounting','54.173.0.240',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 14:18:21','2020-07-05 14:18:21'),(10128,'government','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:30','2020-07-05 18:09:38'),(10129,'insurance','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:32','2020-07-05 18:09:42'),(10130,'mathematics','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:34','2020-07-05 18:09:46'),(10131,'chemistry','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:36','2020-07-05 18:09:40'),(10132,'englishlit','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:44','2020-07-05 18:09:48'),(10133,'accounting','3.90.6.234',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 18:09:50','2020-07-05 18:09:52'),(10134,'accounting','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:25:43','2020-07-05 23:25:43'),(10135,'mathematics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10136,'commerce','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10137,'physics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10138,'chemistry','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10139,'economics','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10140,'civiledu','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:08','2020-07-05 23:26:08'),(10141,'currentaffairs','3.84.121.45',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:26:09','2020-07-05 23:26:09'),(10142,'biology','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-05 23:48:59','2020-07-05 23:48:59'),(10143,'biology','100.24.36.11',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 01:28:52','2020-07-06 01:28:52'),(10144,'history','18.206.244.117',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 03:18:07','2020-07-06 03:18:07'),(10145,'history','54.89.235.4',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 04:39:50','2020-08-02 00:44:33'),(10146,'accounting','3.86.51.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 05:43:10','2020-07-06 05:43:10'),(10147,'physics','3.82.188.69',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 10:53:25','2020-07-06 10:53:25'),(10148,'physics','54.157.235.83',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 15:25:50','2020-07-06 15:25:50'),(10149,'economics','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:18:01','2020-07-06 16:18:01'),(10150,'insurance','3.85.101.104',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 16:25:30','2020-07-06 16:25:30'),(10151,'commerce','3.81.6.59',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 17:19:24','2020-07-06 17:19:24'),(10152,'economics','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:18:54','2020-07-06 18:18:54'),(10153,'history','18.212.210.242',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 18:49:09','2020-07-06 18:49:09'),(10154,'history','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 20:27:09','2020-07-06 20:27:09'),(10155,'economics','3.93.171.183',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 22:14:21','2020-07-30 10:46:46'),(10156,'irk','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:20:52','2020-07-06 23:20:52'),(10157,'englishlit','54.147.97.204',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-06 23:45:32','2020-07-06 23:45:32'),(10158,'commerce','18.207.123.161',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 03:59:46','2020-07-07 03:59:46'),(10159,'english','3.88.230.146',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 05:07:19','2020-07-07 05:07:19'),(10160,'economics','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:15:10','2020-07-07 09:15:10'),(10161,'government','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 09:48:39','2020-07-07 09:48:39'),(10162,'chemistry','54.221.40.152',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 10:12:14','2020-07-07 10:12:14'),(10163,'government','54.221.150.250',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 11:33:19','2020-07-07 11:33:19'),(10164,'commerce','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:34','2020-07-07 12:23:34'),(10165,'economics','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:23:36','2020-07-07 12:23:36'),(10166,'biology','52.23.160.61',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 12:46:17','2020-07-07 13:24:15'),(10167,'geography','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:14:39','2020-07-07 13:14:39'),(10168,'currentaffairs','52.23.160.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 13:17:34','2020-07-07 13:17:34'),(10169,'insurance','54.152.5.128',5,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:14:12','2020-07-07 16:33:40'),(10170,'accounting','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:28:51','2020-07-07 14:36:55'),(10171,'commerce','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:31:07','2020-07-07 16:33:39'),(10172,'civiledu','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:34:07','2020-07-07 16:33:40'),(10173,'irk','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 14:47:28','2020-07-07 16:04:09'),(10174,'english','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:08:10','2020-07-07 15:08:10'),(10175,'crk','54.152.5.128',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:12:21','2020-07-07 15:12:21'),(10176,'currentaffairs','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 15:48:43','2020-07-07 16:00:50'),(10177,'chemistry','54.152.5.128',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:26:23','2020-07-07 16:45:13'),(10178,'englishlit','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:39','2020-07-07 16:33:39'),(10179,'economics','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10180,'history','54.152.5.128',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 16:33:40','2020-07-07 16:33:40'),(10181,'englishlit','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:11:13','2020-07-07 18:11:13'),(10182,'physics','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 18:38:18','2020-07-07 18:38:18'),(10183,'english','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:09:59','2020-07-07 19:09:59'),(10184,'civiledu','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:24:15','2020-07-07 19:24:15'),(10185,'crk','54.159.75.209',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 19:42:39','2020-07-07 19:42:39'),(10186,'crk','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 20:43:43','2020-07-07 20:43:43'),(10187,'economics','3.84.180.199',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 21:02:06','2020-07-07 21:02:06'),(10188,'crk','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:06:52','2020-07-07 23:06:52'),(10189,'mathematics','3.82.176.219',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-07 23:08:47','2020-07-07 23:08:47'),(10190,'history','54.235.227.254',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 00:51:52','2020-07-08 00:51:52'),(10191,'commerce','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:13'),(10192,'chemistry','54.224.19.167',3,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:17:55'),(10193,'englishlit','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:09'),(10194,'crk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:10'),(10195,'irk','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:50','2020-07-08 02:18:00'),(10196,'civiledu','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:06'),(10197,'currentaffairs','54.224.19.167',4,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 02:17:51','2020-07-08 02:18:02'),(10198,'biology','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:26:00','2020-07-08 04:26:00'),(10199,'government','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 04:49:34','2020-07-08 04:49:34'),(10200,'physics','3.81.45.39',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 05:13:41','2020-07-08 05:13:41'),(10201,'englishlit','54.86.107.41',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:13:13','2020-07-08 06:13:13'),(10202,'currentaffairs','54.162.112.134',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 06:54:34','2020-07-08 06:54:34'),(10203,'englishlit','41.80.97.238',80,'','KE','','Nairobi Area','Nairobi',NULL,'-1.2833','36.8167','2020-07-08 07:25:57','2020-07-08 07:28:00'),(10204,'crk','54.82.43.186',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 07:45:34','2020-07-08 07:45:34'),(10205,'englishlit','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:21:52','2020-07-08 09:21:52'),(10206,'insurance','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:44:49','2020-07-08 09:44:49'),(10207,'chemistry','3.85.94.216',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 09:54:11','2020-07-08 09:54:11'),(10208,'economics','52.91.173.61',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 10:49:13','2020-07-08 10:49:13'),(10209,'government','54.80.100.180',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 11:30:37','2020-07-08 11:30:37'),(10210,'crk','54.158.254.113',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:24:11','2020-07-08 12:24:11'),(10211,'english','18.207.151.137',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 12:58:44','2020-07-08 12:58:44'),(10212,'geography','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:02:59','2020-07-08 14:02:59'),(10213,'economics','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:07','2020-07-08 14:33:07'),(10214,'english','34.239.119.192',1,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 14:33:48','2020-07-08 14:33:48'),(10215,'commerce','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10216,'chemistry','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10217,'englishlit','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10218,'government','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10219,'economics','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10220,'insurance','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10221,'currentaffairs','54.242.194.166',2,'','US','','Virginia','Virginia Beach','23460','36.8080','-76.0284','2020-07-08 15:58:12','2020-07-08 15:58:12'),(10222,'chemistry','212.7.216.22',41,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:34','2020-07-08 18:09:03'),(10223,'biology','212.7.216.22',42,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:04:53','2020-07-08 18:09:33'),(10224,'crk','212.7.216.22',40,'','PL','','Mazovia','Warsaw','00-010','52.2298','21.0118','2020-07-08 18:11:50','2020-07-08 18:11:53'),(10225,'accounting','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 00:35:57','2020-07-09 00:35:57'),(10226,'currentaffairs','34.228.190.168',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:01:51','2020-07-09 01:01:51'),(10227,'civiledu','3.92.165.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 01:53:39','2020-07-09 01:53:39'),(10228,'biology','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:43:43','2020-07-09 03:43:43'),(10229,'english','3.80.77.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 03:48:40','2020-07-09 03:48:40'),(10230,'accounting','54.166.150.192',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 04:46:10','2020-07-09 04:46:10'),(10231,'insurance','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:51:46','2020-07-09 07:51:46'),(10232,'accounting','18.212.91.129',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:26','2020-07-09 07:52:33'),(10233,'englishlit','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:27','2020-07-09 07:52:27'),(10234,'english','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:28','2020-07-09 07:52:28'),(10235,'history','18.212.91.129',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 07:52:38','2020-07-09 07:52:38'),(10236,'geography','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:17:51','2020-07-09 15:17:51'),(10237,'history','54.159.165.54',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 15:21:14','2020-07-09 15:21:14'),(10238,'englishlit','3.85.20.113',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 16:51:17','2020-07-09 16:51:17'),(10239,'government','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:25:48','2020-07-09 17:25:48'),(10240,'english','3.80.158.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 17:47:06','2020-07-09 17:47:06'),(10241,'insurance','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 18:54:52','2020-07-09 18:54:52'),(10242,'physics','3.91.85.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 19:28:45','2020-07-09 19:28:45'),(10243,'crk','3.92.73.237',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-09 20:40:38','2020-07-09 20:40:38'),(10244,'biology','3.89.195.91',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:11:30','2020-07-10 00:11:30'),(10245,'mathematics','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 00:54:45','2020-07-10 00:54:45'),(10246,'geography','54.173.152.80',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 01:07:34','2020-07-10 01:07:34'),(10247,'accounting','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:08:59','2020-07-10 03:08:59'),(10248,'geography','3.82.115.176',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:12:39','2020-07-10 03:12:39'),(10249,'mathematics','34.229.218.101',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:56:28','2020-07-10 04:19:24'),(10250,'english','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 03:57:59','2020-07-10 03:57:59'),(10251,'geography','34.229.218.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 04:00:44','2020-07-10 04:00:44'),(10252,'physics','52.207.226.86',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 07:22:18','2020-07-10 07:22:18'),(10253,'englishlit','100.26.198.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 08:32:27','2020-07-10 08:32:27'),(10254,'currentaffairs','34.207.220.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 09:37:56','2020-07-10 09:37:56'),(10255,'biology','34.201.217.57',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 13:17:48','2020-07-10 13:17:48'),(10256,'mathematics','34.201.82.215',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:30:23','2020-07-10 17:26:20'),(10257,'government','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:49:19','2020-07-10 16:49:19'),(10258,'geography','34.201.82.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 16:57:20','2020-07-10 16:57:20'),(10259,'mathematics','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:29:32','2020-07-10 18:29:32'),(10260,'history','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:38:27','2020-07-10 18:38:27'),(10261,'accounting','52.91.44.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-10 18:51:34','2020-07-10 18:51:34'),(10262,'accounting','54.88.28.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 03:49:42','2020-07-11 03:49:42'),(10263,'biology','18.212.149.169',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 05:05:51','2020-07-11 05:05:51'),(10264,'history','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:21:44','2020-07-11 07:21:44'),(10265,'biology','52.91.73.207',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 07:43:14','2020-07-11 07:43:14'),(10266,'history','52.207.241.232',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 09:22:36','2020-07-11 09:22:36'),(10267,'english','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:03:15','2020-07-11 11:03:15'),(10268,'accounting','3.88.52.2',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 11:05:18','2020-07-11 11:05:18'),(10269,'chemistry','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 12:39:00','2020-07-11 12:39:02'),(10270,'mathematics','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:50:40','2020-07-11 13:50:43'),(10271,'english','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:52:41','2020-07-11 13:52:43'),(10272,'physics','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:54:53','2020-07-11 13:54:56'),(10273,'irk','3.87.253.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 13:57:22','2020-07-11 13:57:22'),(10274,'biology','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 13:58:09','2020-07-11 13:58:11'),(10275,'commerce','197.210.52.112',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:00:45','2020-07-11 14:00:47'),(10276,'accounting','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:02:26','2020-07-11 14:02:30'),(10277,'commerce','197.210.53.65',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:07:24','2020-07-11 14:07:27'),(10278,'biology','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:09:29','2020-07-11 14:09:31'),(10279,'englishlit','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:11:03','2020-07-11 14:11:06'),(10280,'government','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:12:42','2020-07-11 14:12:44'),(10281,'crk','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:14:42','2020-07-11 14:14:45'),(10282,'geography','197.210.52.11',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:16:22','2020-07-11 14:16:25'),(10283,'economics','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:18:03','2020-07-11 14:18:06'),(10284,'irk','197.210.53.29',30,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:19:52','2020-07-11 14:19:54'),(10285,'civiledu','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:21:54','2020-07-11 14:21:56'),(10286,'insurance','197.210.53.137',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:24:40','2020-07-11 14:24:42'),(10287,'currentaffairs','197.210.53.29',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:30:13','2020-07-11 14:30:16'),(10288,'history','197.210.52.75',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-11 14:31:59','2020-07-11 14:32:02'),(10289,'chemistry','129.205.113.79',4400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-11 14:33:08','2020-07-13 03:19:10'),(10290,'english','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:49'),(10291,'commerce','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:47:21'),(10292,'accounting','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:48:31'),(10293,'civiledu','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:19','2020-07-11 16:49:01'),(10294,'insurance','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:09'),(10295,'currentaffairs','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:19'),(10296,'history','54.144.56.181',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 16:46:20','2020-07-11 16:49:26'),(10297,'mathematics','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:15:58','2020-07-11 23:15:58'),(10298,'chemistry','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:21:17','2020-07-11 23:21:17'),(10299,'insurance','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-11 23:48:13','2020-07-11 23:48:13'),(10300,'english','3.82.54.117',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:09:33','2020-07-12 00:09:33'),(10301,'economics','3.82.54.117',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 00:10:41','2020-07-12 00:29:04'),(10302,'history','3.88.228.30',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 01:17:11','2020-07-12 01:17:11'),(10303,'history','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:50:23','2020-07-12 02:50:23'),(10304,'chemistry','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 02:58:58','2020-07-12 02:58:58'),(10305,'mathematics','18.204.196.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 03:10:59','2020-07-12 03:10:59'),(10306,'economics','3.87.92.43',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 04:42:49','2020-07-12 04:42:49'),(10307,'englishlit','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 05:52:03','2020-07-12 05:52:03'),(10308,'irk','54.84.202.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 06:21:53','2020-07-12 06:21:53'),(10309,'commerce','54.163.60.37',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 10:46:43','2020-07-12 10:46:43'),(10310,'english','3.94.101.200',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 12:43:58','2020-07-12 12:43:58'),(10311,'mathematics','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 14:59:40','2020-07-12 14:59:40'),(10312,'english','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:00:14','2020-07-12 15:00:14'),(10313,'chemistry','3.91.56.198',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 15:07:58','2020-07-12 15:07:58'),(10314,'economics','34.227.46.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 16:40:51','2020-07-12 16:40:51'),(10315,'chemistry','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:39:39','2020-07-12 17:39:39'),(10316,'english','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 17:54:55','2020-07-12 17:54:55'),(10317,'mathematics','34.207.159.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 18:17:06','2020-07-12 18:17:06'),(10318,'government','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:17:30','2020-07-12 19:17:30'),(10319,'geography','3.90.221.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 19:43:56','2020-07-12 19:43:56'),(10320,'biology','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:30:00','2020-07-12 20:30:00'),(10321,'commerce','34.224.222.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 20:32:43','2020-07-12 20:32:43'),(10322,'economics','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:03','2020-07-12 22:04:03'),(10323,'insurance','54.234.242.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:04:33','2020-07-12 22:04:33'),(10324,'crk','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 22:43:42','2020-07-12 22:43:42'),(10325,'english','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:02:31','2020-07-12 23:02:31'),(10326,'mathematics','52.23.169.90',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-12 23:14:52','2020-07-12 23:14:52'),(10327,'english','129.205.113.79',5320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-13 00:22:00','2020-07-13 03:18:50'),(10328,'mathematics','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:25','2020-07-13 03:18:54'),(10329,'commerce','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:30','2020-07-13 03:18:57'),(10330,'accounting','129.205.113.79',4320,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:34','2020-07-13 03:19:00'),(10331,'biology','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:37','2020-07-13 03:19:03'),(10332,'physics','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:40','2020-07-13 03:19:07'),(10333,'englishlit','129.205.113.79',4280,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:17:47','2020-07-13 03:19:13'),(10334,'government','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:09','2020-07-13 03:19:16'),(10335,'crk','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:12','2020-07-13 03:19:20'),(10336,'geography','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:16','2020-07-13 03:19:23'),(10337,'economics','129.205.113.79',4240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:19','2020-07-13 03:19:26'),(10338,'irk','129.205.113.79',3180,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:22','2020-07-13 03:19:29'),(10339,'civiledu','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:24','2020-07-13 03:18:24'),(10340,'insurance','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:18:28','2020-07-13 03:18:27'),(10341,'currentaffairs','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:24','2020-07-13 03:18:30'),(10342,'history','129.205.113.79',4200,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 01:19:28','2020-07-13 03:18:40'),(10343,'civiledu','54.234.157.166',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:28:47','2020-07-13 02:28:47'),(10344,'physics','54.234.157.166',3,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:48:14','2020-07-13 02:57:04'),(10345,'biology','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10346,'chemistry','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10347,'englishlit','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:04','2020-07-13 02:57:04'),(10348,'government','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10349,'currentaffairs','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10350,'history','54.234.157.166',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 02:57:05','2020-07-13 02:57:05'),(10351,'englishlit','54.208.167.162',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 03:42:04','2020-07-13 03:42:04'),(10352,'economics','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:26:48','2020-07-13 04:26:48'),(10353,'crk','18.212.127.228',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 04:32:06','2020-07-13 04:32:06'),(10354,'mathematics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10355,'commerce','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:13','2020-07-13 07:20:13'),(10356,'biology','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10357,'government','3.83.177.66',3,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 07:20:14','2020-07-13 07:20:15'),(10358,'crk','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10359,'economics','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10360,'insurance','3.83.177.66',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:20:14','2020-07-13 07:20:14'),(10361,'mathematics','52.70.110.88',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 07:58:11','2020-07-13 07:58:11'),(10362,'history','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 08:43:27','2020-07-13 08:43:27'),(10363,'crk','54.87.221.237',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 09:16:49','2020-07-13 09:16:49'),(10364,'government','35.173.241.103',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 12:01:52','2020-07-13 12:01:52'),(10365,'biology','35.173.241.103',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 12:19:03','2020-07-13 12:19:03'),(10366,'physics','3.80.67.43',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 13:51:28','2020-07-13 13:51:28'),(10367,'english','3.80.67.43',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 14:26:17','2020-07-13 14:33:36'),(10368,'currentaffairs','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:37:38','2020-07-13 15:37:38'),(10369,'englishlit','3.91.224.53',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 15:58:51','2020-07-13 15:58:51'),(10370,'crk','3.88.24.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 17:12:19','2020-07-13 17:12:19'),(10371,'insurance','3.88.24.28',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 17:29:37','2020-07-13 17:29:37'),(10372,'chemistry','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:17:46','2020-07-13 18:17:46'),(10373,'englishlit','54.87.80.5',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 18:33:29','2020-07-13 18:33:29'),(10374,'government','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:07:04','2020-07-13 20:07:04'),(10375,'crk','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:37:11','2020-07-13 20:37:11'),(10376,'economics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 20:39:05','2020-07-13 20:39:05'),(10377,'geography','18.207.196.180',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-13 21:02:47','2020-07-13 21:02:47'),(10378,'mathematics','18.207.196.180',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 21:10:43','2020-07-13 21:10:43'),(10379,'english','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10380,'commerce','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10381,'accounting','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10382,'physics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10383,'economics','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10384,'civiledu','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10385,'insurance','34.203.208.32',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-13 22:02:39','2020-07-13 22:02:39'),(10386,'english','3.90.9.102',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-13 22:41:54','2020-07-13 22:56:29'),(10387,'english','129.205.124.79',3480,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:25:59','2020-07-14 02:30:06'),(10388,'mathematics','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:02','2020-07-14 02:30:10'),(10389,'commerce','129.205.124.79',3440,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:06','2020-07-14 02:30:15'),(10390,'accounting','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:09','2020-07-14 02:30:18'),(10391,'biology','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:12','2020-07-14 02:30:22'),(10392,'physics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:16','2020-07-14 02:30:26'),(10393,'chemistry','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:19','2020-07-14 02:30:30'),(10394,'englishlit','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:22','2020-07-14 02:30:34'),(10395,'government','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:26','2020-07-14 02:30:39'),(10396,'crk','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:29','2020-07-14 02:30:43'),(10397,'geography','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:33','2020-07-14 02:30:47'),(10398,'economics','129.205.124.79',3400,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:36','2020-07-14 02:30:51'),(10399,'irk','129.205.124.79',2490,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:41','2020-07-14 02:29:45'),(10400,'civiledu','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:44','2020-07-14 02:29:50'),(10401,'insurance','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:47','2020-07-14 02:29:54'),(10402,'currentaffairs','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:50','2020-07-14 02:29:58'),(10403,'history','129.205.124.79',3320,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-07-14 00:26:54','2020-07-14 02:30:02'),(10404,'mathematics','3.86.112.201',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 06:09:14','2020-07-14 06:09:14'),(10405,'economics','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 07:28:22','2020-07-14 07:28:22'),(10406,'english','54.221.108.235',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 08:04:24','2020-07-14 08:04:24'),(10407,'chemistry','129.205.113.93',443,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-14 09:05:47','2020-07-14 13:21:22'),(10408,'physics','129.205.113.93',212,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 09:08:38','2020-07-14 15:34:58'),(10409,'english','129.205.113.93',939,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:08:42','2020-07-14 14:50:30'),(10410,'currentaffairs','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:07','2020-07-14 10:09:07'),(10411,'mathematics','129.205.113.93',121,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:09:52','2020-07-14 15:32:06'),(10412,'commerce','129.205.113.93',1891,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:15:00','2020-07-14 15:55:42'),(10413,'biology','129.205.113.93',534,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:20:01','2020-07-14 13:14:00'),(10414,'englishlit','129.205.113.93',508,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:22:39','2020-07-14 15:00:25'),(10415,'government','129.205.113.93',1091,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:23:37','2020-07-14 15:55:56'),(10416,'civiledu','129.205.113.93',577,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:38:09','2020-07-14 13:42:59'),(10417,'crk','129.205.113.93',1240,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:40:26','2020-07-14 14:22:30'),(10418,'economics','129.205.113.93',899,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:41:55','2020-07-14 14:38:54'),(10419,'civiledu','52.90.189.37',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:43:55','2020-07-14 10:43:55'),(10420,'geography','129.205.113.93',316,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:51:07','2020-07-14 15:05:11'),(10421,'insurance','129.205.113.93',471,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:54:35','2020-07-14 15:30:53'),(10422,'irk','129.205.113.93',50,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:58:36','2020-07-14 15:36:02'),(10423,'currentaffairs','129.205.113.93',63,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 10:59:48','2020-07-14 15:37:11'),(10424,'accounting','129.205.113.93',682,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:30:09','2020-07-14 13:33:35'),(10425,'history','129.205.113.93',67,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 11:33:06','2020-07-14 15:23:11'),(10426,'accounting','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:37:00','2020-07-14 12:37:00'),(10427,'english','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 12:39:37','2020-07-14 12:39:37'),(10428,'history','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:06:47','2020-07-14 13:06:47'),(10429,'biology','3.81.53.171',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 13:31:56','2020-07-14 13:31:56'),(10430,'mathematics','18.234.46.151',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 15:02:11','2020-07-14 15:02:11'),(10431,'english','54.90.207.165',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 18:07:02','2020-07-14 18:07:02'),(10432,'commerce','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10433,'physics','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10434,'chemistry','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10435,'englishlit','34.229.179.114',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10436,'government','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10437,'insurance','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:52','2020-07-14 19:16:52'),(10438,'currentaffairs','34.229.179.114',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 19:16:53','2020-07-14 19:16:53'),(10439,'geography','18.208.128.143',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 22:14:45','2020-07-14 22:14:45'),(10440,'english','3.95.191.40',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-14 23:24:07','2020-07-14 23:24:07'),(10441,'history','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-14 23:41:01','2020-07-14 23:41:01'),(10442,'mathematics','3.95.191.40',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:06:33','2020-07-15 00:06:33'),(10443,'englishlit','3.87.215.138',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 00:46:37','2020-07-15 00:46:37'),(10444,'insurance','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 03:51:06','2020-07-15 03:51:06'),(10445,'english','54.175.126.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 04:09:32','2020-07-15 04:09:32'),(10446,'crk','3.81.221.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 05:08:09','2020-07-15 05:08:09'),(10447,'chemistry','3.88.132.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:07:35','2020-07-15 08:07:35'),(10448,'mathematics','54.147.235.60',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 08:53:27','2020-07-15 09:41:51'),(10449,'crk','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:02:40','2020-07-15 09:02:40'),(10450,'biology','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:28:35','2020-07-15 09:28:35'),(10451,'physics','54.147.235.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 09:31:51','2020-07-15 09:31:51'),(10452,'geography','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:32:08','2020-07-15 10:32:08'),(10453,'accounting','18.215.151.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 10:38:37','2020-07-15 10:38:37'),(10454,'geography','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 11:56:02','2020-07-15 12:59:45'),(10455,'mathematics','3.83.193.244',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:33:30'),(10456,'commerce','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10457,'accounting','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:43','2020-07-15 12:12:43'),(10458,'englishlit','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10459,'crk','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10460,'civiledu','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10461,'insurance','3.83.193.244',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 12:12:44','2020-07-15 12:12:44'),(10462,'english','3.81.39.121',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 14:04:24','2020-07-15 14:04:24'),(10463,'englishlit','54.224.172.84',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 16:54:49','2020-07-15 16:54:49'),(10464,'chemistry','102.89.3.114',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-07-15 17:48:20','2020-07-15 17:48:20'),(10465,'currentaffairs','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 17:48:58','2020-07-15 17:48:58'),(10466,'chemistry','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 18:12:17','2020-07-15 18:12:17'),(10467,'english','3.87.4.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 18:17:37','2020-07-15 18:17:37'),(10468,'biology','54.210.122.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 20:30:49','2020-07-15 20:30:49'),(10469,'physics','54.210.122.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 21:05:21','2020-07-15 21:05:21'),(10470,'mathematics','54.90.176.188',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 22:58:09','2020-07-15 22:58:09'),(10471,'crk','54.90.176.188',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-15 23:00:49','2020-07-15 23:00:49'),(10472,'mathematics','34.229.226.194',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 01:11:04','2020-07-16 01:11:04'),(10473,'geography','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 02:43:29','2020-07-16 02:43:29'),(10474,'government','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 02:54:36','2020-07-16 02:54:36'),(10475,'mathematics','3.86.113.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 03:13:19','2020-07-16 03:13:19'),(10476,'history','3.85.23.254',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 04:15:53','2020-07-16 04:15:53'),(10477,'mathematics','18.212.87.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 05:27:05','2020-07-16 05:27:05'),(10478,'accounting','18.212.87.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 05:57:55','2020-07-16 05:57:55'),(10479,'chemistry','81.7.11.155',41,'','DE','','Thuringia','Jena','07745','50.8933','11.5847','2020-07-16 06:13:09','2020-07-16 06:13:18'),(10480,'mathematics','18.234.132.81',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 07:36:28','2020-07-16 07:36:28'),(10481,'biology','18.205.237.244',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 13:41:47','2020-07-16 13:41:47'),(10482,'chemistry','54.167.108.112',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 16:28:05','2020-07-16 16:28:06'),(10483,'mathematics','34.202.166.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 17:24:28','2020-07-16 17:24:28'),(10484,'accounting','52.20.255.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-16 19:21:42','2020-07-16 19:21:42'),(10485,'economics','3.81.224.51',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 03:22:55','2020-07-17 03:50:42'),(10486,'insurance','3.81.224.51',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 04:01:21','2020-07-17 04:01:21'),(10487,'mathematics','3.95.1.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 05:12:24','2020-07-17 05:12:24'),(10488,'irk','54.204.68.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 08:14:36','2020-07-17 08:14:36'),(10489,'englishlit','54.204.68.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 08:19:55','2020-07-17 08:19:55'),(10490,'english','3.88.16.205',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 13:06:26','2020-07-17 13:06:26'),(10491,'commerce','18.206.210.183',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 14:19:11','2020-07-17 14:19:11'),(10492,'economics','54.89.243.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 15:31:32','2020-07-17 15:31:32'),(10493,'mathematics','100.24.42.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 16:28:27','2020-07-17 16:28:27'),(10494,'economics','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 17:50:15','2020-07-17 17:50:15'),(10495,'geography','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:15:04','2020-07-17 18:15:04'),(10496,'government','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:27:05','2020-07-17 18:27:05'),(10497,'commerce','18.207.190.240',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 18:28:15','2020-07-17 18:28:15'),(10498,'insurance','54.172.215.111',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 19:31:06','2020-07-17 19:31:06'),(10499,'english','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 20:42:09','2020-07-17 20:42:09'),(10500,'biology','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 20:45:14','2020-07-17 20:45:14'),(10501,'chemistry','3.89.98.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 21:17:31','2020-07-17 21:17:31'),(10502,'crk','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 22:55:45','2020-07-17 22:55:45'),(10503,'physics','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 23:12:51','2020-07-17 23:12:51'),(10504,'economics','35.173.244.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-17 23:13:05','2020-07-17 23:13:05'),(10505,'crk','54.152.47.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 00:11:06','2020-07-18 00:11:06'),(10506,'mathematics','54.227.114.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 02:04:13','2020-07-18 02:04:13'),(10507,'history','54.227.114.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 02:26:59','2020-07-18 02:26:59'),(10508,'chemistry','3.83.174.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 03:38:08','2020-07-18 03:38:08'),(10509,'government','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 04:39:59','2020-07-18 04:39:59'),(10510,'biology','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:05:29','2020-07-18 05:05:29'),(10511,'history','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:38:54','2020-07-18 05:38:54'),(10512,'englishlit','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 05:55:47','2020-07-18 05:55:47'),(10513,'english','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 06:01:27','2020-07-18 06:01:27'),(10514,'currentaffairs','54.86.62.182',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 06:31:11','2020-07-18 06:31:11'),(10515,'chemistry','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 08:36:38','2020-07-18 08:36:38'),(10516,'economics','54.164.73.164',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 09:03:24','2020-07-18 09:51:57'),(10517,'government','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 09:21:47','2020-07-18 09:21:47'),(10518,'crk','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 10:08:07','2020-07-18 10:08:07'),(10519,'geography','54.164.73.164',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 10:16:51','2020-07-18 10:16:51'),(10520,'english','3.94.122.190',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 11:27:02','2020-07-18 11:27:02'),(10521,'mathematics','3.94.122.190',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 11:56:11','2020-07-18 11:56:11'),(10522,'currentaffairs','54.234.122.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 18:21:25','2020-07-18 18:21:25'),(10523,'civiledu','18.215.146.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 19:07:46','2020-07-18 19:07:46'),(10524,'history','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:06:58','2020-07-18 20:06:58'),(10525,'economics','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:07:06','2020-07-18 20:07:06'),(10526,'accounting','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:09:41','2020-07-18 20:09:41'),(10527,'english','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:15:29','2020-07-18 20:15:29'),(10528,'biology','34.229.188.1',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 20:45:48','2020-07-18 20:45:48'),(10529,'mathematics','54.208.42.17',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 21:46:57','2020-07-18 21:46:57'),(10530,'mathematics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10531,'accounting','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10532,'physics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10533,'chemistry','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:35'),(10534,'englishlit','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:35','2020-07-18 23:37:36'),(10535,'economics','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:36','2020-07-18 23:37:36'),(10536,'insurance','54.91.227.28',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-18 23:37:36','2020-07-18 23:37:36'),(10537,'geography','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:05:10','2020-07-19 02:05:10'),(10538,'english','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:24:02','2020-07-19 02:24:02'),(10539,'englishlit','3.84.156.226',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 02:52:35','2020-07-19 02:55:26'),(10540,'history','3.84.156.226',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 03:13:35','2020-07-19 03:13:35'),(10541,'physics','54.172.87.14',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 04:04:24','2020-07-19 04:04:24'),(10542,'english','3.87.78.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 04:39:20','2020-07-19 04:39:20'),(10543,'insurance','3.87.78.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 05:05:03','2020-07-19 05:05:03'),(10544,'accounting','52.87.187.114',7,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:22:59','2020-07-19 09:45:54'),(10545,'biology','52.87.187.114',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:28:42','2020-07-19 09:41:35'),(10546,'geography','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 08:57:42','2020-07-19 09:41:36'),(10547,'mathematics','52.87.187.114',7,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:05:50','2020-07-19 09:45:54'),(10548,'currentaffairs','52.87.187.114',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:06:40','2020-07-19 09:45:55'),(10549,'english','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:41:35'),(10550,'commerce','52.87.187.114',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:40:42'),(10551,'chemistry','52.87.187.114',9,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:45:55'),(10552,'englishlit','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:48','2020-07-19 09:38:48'),(10553,'economics','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:38:49','2020-07-19 09:41:36'),(10554,'government','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:40:43'),(10555,'crk','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10556,'irk','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10557,'civiledu','52.87.187.114',6,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:40:43','2020-07-19 09:45:55'),(10558,'history','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:41:35','2020-07-19 09:41:35'),(10559,'physics','52.87.187.114',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 09:41:35','2020-07-19 09:41:35'),(10560,'mathematics','54.83.167.125',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 10:33:40','2020-07-19 10:34:30'),(10561,'english','100.24.46.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 11:28:49','2020-07-19 11:28:49'),(10562,'mathematics','3.89.137.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 12:48:58','2020-07-19 12:48:58'),(10563,'physics','3.89.137.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 13:12:25','2020-07-19 13:12:25'),(10564,'biology','35.153.203.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 15:30:03','2020-07-19 15:30:03'),(10565,'mathematics','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:13:34','2020-07-19 18:13:34'),(10566,'chemistry','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:38:42','2020-07-19 18:38:42'),(10567,'geography','54.161.199.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 18:43:42','2020-07-19 18:43:42'),(10568,'mathematics','54.90.132.175',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:37:55','2020-07-19 20:06:51'),(10569,'history','54.90.132.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:52:46','2020-07-19 19:52:46'),(10570,'government','54.90.132.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 19:53:17','2020-07-19 19:53:17'),(10571,'accounting','35.175.232.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-19 20:45:01','2020-07-19 20:45:01'),(10572,'currentaffairs','18.207.214.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 00:10:52','2020-07-20 00:10:52'),(10573,'mathematics','18.208.110.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 01:01:06','2020-07-20 01:01:06'),(10574,'accounting','18.208.110.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 01:07:29','2020-07-20 01:07:29'),(10575,'biology','34.229.38.131',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 03:32:40','2020-07-20 03:32:40'),(10576,'chemistry','34.229.38.131',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 03:34:20','2020-07-20 03:34:20'),(10577,'history','54.157.223.34',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 04:50:50','2020-07-20 05:03:04'),(10578,'irk','54.227.12.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 08:27:27','2020-07-20 08:27:27'),(10579,'englishlit','52.90.162.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 16:42:27','2020-07-20 16:42:27'),(10580,'irk','52.90.162.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 17:12:36','2020-07-20 17:12:36'),(10581,'accounting','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:24','2020-07-20 19:13:25'),(10582,'chemistry','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10583,'englishlit','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10584,'economics','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10585,'insurance','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10586,'currentaffairs','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10587,'history','54.166.211.116',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:13:25','2020-07-20 19:13:25'),(10588,'commerce','54.166.211.116',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 19:40:35','2020-07-20 19:40:35'),(10589,'insurance','3.88.7.36',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 20:42:06','2020-07-20 20:42:06'),(10590,'english','3.88.7.36',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 21:17:21','2020-07-20 21:17:21'),(10591,'government','3.93.216.121',3,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-20 22:44:09','2020-07-23 22:53:55'),(10592,'economics','54.173.94.139',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-20 23:22:10','2020-07-20 23:22:10'),(10593,'chemistry','184.72.65.217',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 00:44:38','2020-07-21 00:44:38'),(10594,'government','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 01:23:18','2020-07-21 01:23:18'),(10595,'commerce','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 01:45:25','2020-07-21 01:45:25'),(10596,'economics','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:09:47','2020-07-21 02:09:47'),(10597,'geography','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:13:54','2020-07-21 02:13:54'),(10598,'biology','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:39:04','2020-07-21 02:39:04'),(10599,'insurance','34.229.91.93',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 02:51:51','2020-07-21 02:51:51'),(10600,'english','35.173.186.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 03:37:34','2020-07-21 03:37:34'),(10601,'englishlit','54.164.4.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 05:49:14','2020-07-21 05:49:14'),(10602,'physics','54.164.4.234',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 06:13:20','2020-07-21 06:13:20'),(10603,'economics','54.81.181.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 06:51:42','2020-07-21 06:51:42'),(10604,'crk','54.81.181.66',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 07:25:25','2020-07-21 07:25:25'),(10605,'commerce','18.232.108.127',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 09:00:24','2020-07-21 09:00:24'),(10606,'history','18.206.221.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 09:55:32','2020-07-21 09:55:32'),(10607,'physics','18.206.221.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 10:29:06','2020-07-21 10:29:06'),(10608,'biology','3.85.231.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 11:23:48','2020-07-21 11:23:48'),(10609,'government','3.85.231.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 11:29:12','2020-07-21 11:29:12'),(10610,'physics','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 12:12:57','2020-07-21 12:12:57'),(10611,'englishlit','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 12:28:24','2020-07-21 12:28:24'),(10612,'currentaffairs','34.229.73.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 13:01:37','2020-07-21 13:01:37'),(10613,'english','52.70.85.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 13:22:43','2020-07-21 13:22:43'),(10614,'crk','54.208.43.184',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 14:15:12','2020-07-21 14:15:12'),(10615,'englishlit','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:26:49','2020-07-21 15:26:49'),(10616,'chemistry','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:31:23','2020-07-21 15:31:23'),(10617,'government','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:48:50','2020-07-21 15:48:50'),(10618,'insurance','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:49:29','2020-07-21 15:49:29'),(10619,'economics','54.144.50.235',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 15:58:01','2020-07-21 15:58:01'),(10620,'crk','52.90.180.213',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 16:47:13','2020-07-21 16:47:13'),(10621,'geography','54.166.134.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 17:57:24','2020-07-21 17:57:24'),(10622,'english','54.166.134.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 18:26:42','2020-07-21 18:26:42'),(10623,'currentaffairs','54.196.19.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-21 20:15:13','2020-07-21 20:15:13'),(10624,'civiledu','35.173.200.62',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 01:25:29','2020-07-22 01:25:29'),(10625,'currentaffairs','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:15:29','2020-07-22 03:15:29'),(10626,'biology','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:17:25','2020-07-22 03:17:25'),(10627,'accounting','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:42:17','2020-07-22 03:42:17'),(10628,'history','52.23.193.29',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 03:53:51','2020-07-22 03:53:51'),(10629,'biology','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10630,'chemistry','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10631,'government','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10632,'economics','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10633,'irk','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:36'),(10634,'insurance','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:36','2020-07-22 08:21:37'),(10635,'currentaffairs','54.204.220.63',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:21:37','2020-07-22 08:21:37'),(10636,'geography','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:30:53','2020-07-22 08:30:53'),(10637,'english','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 08:46:13','2020-07-22 08:46:13'),(10638,'history','54.204.220.63',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 09:16:26','2020-07-22 09:16:26'),(10639,'insurance','18.208.145.205',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 11:46:58','2020-07-22 11:46:58'),(10640,'crk','18.213.2.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 13:18:13','2020-07-22 13:18:13'),(10641,'mathematics','54.237.29.101',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:22:08','2020-07-22 16:37:58'),(10642,'biology','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:23:10','2020-07-22 15:23:10'),(10643,'geography','54.237.29.101',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:24:37','2020-07-22 17:13:37'),(10644,'currentaffairs','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:40:39','2020-07-22 15:40:39'),(10645,'accounting','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 15:59:56','2020-07-22 15:59:56'),(10646,'physics','54.237.29.101',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 16:56:32','2020-07-22 16:56:32'),(10647,'mathematics','35.172.179.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 17:56:39','2020-07-22 17:56:39'),(10648,'english','3.91.150.134',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 18:44:30','2020-07-22 18:44:30'),(10649,'physics','3.91.150.134',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 19:29:50','2020-07-22 19:29:50'),(10650,'chemistry','129.205.113.94',720,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-22 20:27:18','2020-07-23 15:52:22'),(10651,'englishlit','54.90.128.253',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 20:39:37','2020-07-22 20:39:37'),(10652,'english','129.205.113.94',1440,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:01:01','2020-07-23 16:38:38'),(10653,'currentaffairs','54.90.128.253',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 21:07:21','2020-07-22 21:07:21'),(10654,'commerce','129.205.113.94',240,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:21:35','2020-07-23 16:34:19'),(10655,'accounting','129.205.113.94',200,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:30:17','2020-07-23 16:34:11'),(10656,'government','129.205.113.94',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-22 21:44:00','2020-07-23 11:40:48'),(10657,'economics','129.205.113.94',240,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-07-22 21:45:29','2020-07-23 16:01:35'),(10658,'englishlit','18.212.49.25',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-22 21:58:08','2020-07-22 21:58:08'),(10659,'biology','18.212.49.25',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:10:49','2020-07-22 22:10:49'),(10660,'englishlit','129.205.113.94',80,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:12:38','2020-07-22 22:14:23'),(10661,'mathematics','129.205.113.94',120,'',NULL,'',NULL,NULL,NULL,'','','2020-07-22 22:20:22','2020-07-23 16:32:53'),(10662,'mathematics','100.26.51.248',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10663,'english','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10664,'commerce','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10665,'chemistry','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10666,'englishlit','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10667,'crk','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:12','2020-07-23 00:21:12'),(10668,'irk','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:13','2020-07-23 00:21:13'),(10669,'civiledu','100.26.51.248',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 00:21:13','2020-07-23 00:21:13'),(10670,'geography','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 01:38:33','2020-07-23 01:38:33'),(10671,'government','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:07:36','2020-07-23 02:07:36'),(10672,'mathematics','100.24.34.150',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:15:27','2020-07-23 02:41:47'),(10673,'history','100.24.34.150',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 02:39:13','2020-07-23 02:39:13'),(10674,'accounting','100.24.34.185',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 03:24:06','2020-07-23 03:24:06'),(10675,'government','54.86.165.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 05:03:44','2020-07-23 05:03:44'),(10676,'physics','3.81.158.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 06:50:10','2020-07-23 06:50:10'),(10677,'accounting','3.81.158.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 07:47:32','2020-07-23 07:47:32'),(10678,'biology','3.93.234.122',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 09:54:06','2020-07-23 09:55:43'),(10679,'crk','129.205.113.94',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-23 10:07:46','2020-07-23 10:07:49'),(10680,'history','3.82.28.234',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 11:06:41','2020-07-23 11:38:26'),(10681,'accounting','3.87.197.208',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-23 12:37:21','2020-07-23 12:37:21'),(10682,'biology','129.205.113.94',40,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 15:58:50','2020-07-23 15:58:53'),(10683,'commerce','52.91.50.150',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 16:35:17','2020-07-23 16:35:17'),(10684,'economics','54.158.23.7',2,'',NULL,'',NULL,'Virginia Beach','23458','36.8529','-75.9780','2020-07-23 20:04:53','2020-07-23 20:06:13'),(10685,'insurance','54.158.23.7',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 20:38:48','2020-07-23 20:38:48'),(10686,'english','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10687,'physics','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10688,'englishlit','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:55'),(10689,'crk','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:55','2020-07-23 22:53:56'),(10690,'geography','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:56','2020-07-23 22:53:56'),(10691,'insurance','3.93.216.121',2,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 22:53:56','2020-07-23 22:53:56'),(10692,'irk','3.93.234.122',1,'',NULL,'',NULL,NULL,NULL,'','','2020-07-23 23:46:27','2020-07-23 23:46:27'),(10693,'englishlit','3.93.234.122',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 00:00:05','2020-07-24 00:00:05'),(10694,'commerce','52.91.97.199',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 02:39:14','2020-07-24 02:39:14'),(10695,'english','54.144.20.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 04:14:21','2020-07-24 04:14:21'),(10696,'chemistry','54.175.57.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:01:12','2020-07-24 07:01:12'),(10697,'economics','54.175.57.225',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:09:33','2020-07-24 07:09:33'),(10698,'geography','54.91.125.95',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 07:50:17','2020-07-24 07:50:17'),(10699,'government','54.91.125.95',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 08:00:46','2020-07-24 08:00:46'),(10700,'economics','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 08:55:10','2020-07-24 08:55:10'),(10701,'commerce','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:05:30','2020-07-24 09:05:30'),(10702,'biology','3.95.161.195',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:22:11','2020-07-24 09:22:11'),(10703,'insurance','52.90.221.56',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 09:56:17','2020-07-24 09:56:17'),(10704,'english','52.90.221.56',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 10:26:11','2020-07-24 10:26:11'),(10705,'economics','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 12:40:41','2020-07-24 12:40:41'),(10706,'crk','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 12:43:43','2020-07-24 12:43:43'),(10707,'physics','3.86.33.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 13:09:15','2020-07-24 13:09:15'),(10708,'crk','3.86.247.69',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 13:49:46','2020-07-24 13:49:46'),(10709,'commerce','3.82.129.194',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 14:50:01','2020-07-24 14:50:02'),(10710,'history','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 16:39:08','2020-07-24 16:39:08'),(10711,'physics','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 17:09:54','2020-07-24 17:09:54'),(10712,'government','18.208.214.170',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 17:26:57','2020-07-24 17:26:57'),(10713,'physics','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 19:35:38','2020-07-24 19:35:38'),(10714,'currentaffairs','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 19:42:14','2020-07-24 19:42:14'),(10715,'english','18.205.236.142',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 20:04:34','2020-07-24 20:04:34'),(10716,'crk','34.238.174.197',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 20:46:58','2020-07-24 20:46:58'),(10717,'insurance','3.89.107.73',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 21:23:57','2020-07-24 21:23:57'),(10718,'government','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:22:31','2020-07-24 22:22:31'),(10719,'englishlit','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:29:40','2020-07-24 22:29:40'),(10720,'chemistry','34.229.196.251',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 22:40:36','2020-07-24 22:40:36'),(10721,'economics','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 23:28:50','2020-07-24 23:28:50'),(10722,'geography','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-24 23:58:05','2020-07-24 23:58:05'),(10723,'crk','34.228.196.85',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 00:18:23','2020-07-25 00:18:23'),(10724,'english','54.156.47.47',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 01:27:57','2020-07-25 01:27:57'),(10725,'biology','3.80.22.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 02:21:10','2020-07-25 02:21:10'),(10726,'currentaffairs','3.80.22.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 02:34:02','2020-07-25 02:34:02'),(10727,'economics','18.234.149.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 06:53:27','2020-07-25 06:53:27'),(10728,'currentaffairs','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:19:21','2020-07-25 08:19:21'),(10729,'civiledu','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:23:31','2020-07-25 08:23:31'),(10730,'geography','54.224.249.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 08:50:09','2020-07-25 08:50:09'),(10731,'english','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:03:03','2020-07-25 10:03:03'),(10732,'history','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:09:13','2020-07-25 10:09:13'),(10733,'biology','54.225.54.107',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 10:30:13','2020-07-25 10:30:13'),(10734,'accounting','18.215.241.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 11:59:50','2020-07-25 11:59:50'),(10735,'geography','54.92.143.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 15:47:23','2020-07-25 15:47:23'),(10736,'history','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 16:50:33','2020-07-25 16:50:33'),(10737,'englishlit','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 16:55:08','2020-07-25 16:55:08'),(10738,'english','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 17:06:43','2020-07-25 17:06:43'),(10739,'physics','3.92.173.72',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 17:21:17','2020-07-25 17:21:17'),(10740,'insurance','3.92.54.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 19:57:17','2020-07-25 19:57:17'),(10741,'accounting','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:17:40','2020-07-25 22:17:40'),(10742,'biology','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:33:58','2020-07-25 22:33:58'),(10743,'currentaffairs','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 22:57:50','2020-07-25 22:57:50'),(10744,'geography','35.172.225.115',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-25 23:04:44','2020-07-25 23:04:44'),(10745,'physics','54.196.77.219',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:09:59','2020-07-26 00:09:59'),(10746,'geography','54.196.77.219',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:15:49','2020-07-26 00:37:55'),(10747,'mathematics','54.196.77.219',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 00:17:08','2020-07-26 00:37:04'),(10748,'english','54.196.77.219',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 01:09:23','2020-07-26 01:09:23'),(10749,'englishlit','52.87.51.130',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 02:59:27','2020-07-26 02:59:27'),(10750,'physics','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 03:33:40','2020-07-26 03:33:40'),(10751,'currentaffairs','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:06:40','2020-07-26 04:06:40'),(10752,'chemistry','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:24:08','2020-07-26 04:24:08'),(10753,'englishlit','54.152.169.171',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 04:38:32','2020-07-26 04:38:32'),(10754,'chemistry','35.173.205.203',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 05:43:58','2020-07-26 05:43:58'),(10755,'biology','35.173.205.203',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 05:53:03','2020-07-26 05:53:03'),(10756,'geography','54.144.125.3',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 08:42:11','2020-07-26 08:42:12'),(10757,'mathematics','54.144.125.3',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:15:30','2020-07-26 10:17:04'),(10758,'history','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:23:40','2020-07-26 09:23:40'),(10759,'government','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:26:37','2020-07-26 09:26:37'),(10760,'chemistry','54.144.125.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 09:46:38','2020-07-26 09:46:38'),(10761,'accounting','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 11:08:38','2020-07-26 11:08:38'),(10762,'government','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 11:30:21','2020-07-26 11:30:21'),(10763,'physics','34.239.185.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 12:05:55','2020-07-26 12:05:55'),(10764,'accounting','3.95.236.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 15:04:50','2020-07-26 15:04:50'),(10765,'chemistry','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 16:33:46','2020-07-26 16:33:46'),(10766,'english','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 16:38:14','2020-07-26 16:38:14'),(10767,'biology','34.201.160.5',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 17:06:07','2020-07-26 17:06:07'),(10768,'history','52.201.234.18',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 18:43:32','2020-07-26 18:52:19'),(10769,'irk','174.129.160.146',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-26 22:34:57','2020-07-26 22:34:57'),(10770,'economics','52.71.169.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 02:06:28','2020-07-27 02:06:28'),(10771,'economics','54.81.49.33',5,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:28:05','2020-07-27 04:58:54'),(10772,'englishlit','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10773,'crk','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10774,'civiledu','54.81.49.33',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:58:54'),(10775,'insurance','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:44:57'),(10776,'currentaffairs','54.81.49.33',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:57','2020-07-27 04:58:54'),(10777,'history','54.81.49.33',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:44:58','2020-07-27 05:15:10'),(10778,'english','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10779,'mathematics','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10780,'accounting','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10781,'biology','54.81.49.33',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 04:58:54','2020-07-27 04:58:54'),(10782,'chemistry','3.94.145.28',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:00:25','2020-07-27 06:00:25'),(10783,'history','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:47:31','2020-07-27 06:47:31'),(10784,'englishlit','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 06:54:13','2020-07-27 06:54:13'),(10785,'irk','54.175.85.224',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 07:07:31','2020-07-27 07:07:31'),(10786,'commerce','107.20.42.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 09:52:42','2020-07-27 09:52:42'),(10787,'insurance','3.86.238.35',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 10:46:53','2020-07-27 10:46:53'),(10788,'english','3.85.236.123',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 11:27:30','2020-07-27 11:27:30'),(10789,'mathematics','54.91.169.111',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 13:25:56','2020-07-27 13:31:18'),(10790,'economics','35.171.165.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 14:37:15','2020-07-27 14:37:15'),(10791,'chemistry','34.207.248.6',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 15:18:15','2020-07-27 15:18:15'),(10792,'government','52.205.44.192',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 18:13:49','2020-07-27 18:13:49'),(10793,'crk','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 19:27:04','2020-07-27 19:27:04'),(10794,'physics','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 19:50:11','2020-07-27 19:50:11'),(10795,'economics','34.201.104.230',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 20:00:19','2020-07-27 20:00:19'),(10796,'commerce','52.90.125.87',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 22:19:32','2020-07-27 22:19:32'),(10797,'history','54.86.33.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 23:34:07','2020-07-27 23:34:07'),(10798,'geography','54.86.33.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-27 23:37:11','2020-07-27 23:37:11'),(10799,'government','54.92.185.193',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:02:34','2020-07-28 01:02:34'),(10800,'biology','54.92.185.193',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:03:08','2020-08-01 04:29:11'),(10801,'geography','54.92.185.193',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:22:18','2020-08-01 04:29:12'),(10802,'physics','54.92.185.193',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 01:26:52','2020-07-28 01:26:52'),(10803,'physics','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:18:07','2020-07-28 02:18:07'),(10804,'englishlit','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:21:30','2020-07-28 02:21:30'),(10805,'economics','54.90.185.60',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:23:43','2020-07-28 03:03:33'),(10806,'currentaffairs','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 02:46:19','2020-07-28 02:46:19'),(10807,'english','54.90.185.60',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 03:03:38','2020-07-28 03:03:38'),(10808,'english','52.91.215.173',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 04:06:52','2020-07-28 04:06:52'),(10809,'crk','52.91.215.173',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 04:25:34','2020-07-28 04:25:34'),(10810,'englishlit','18.215.242.104',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 05:03:57','2020-07-28 05:03:57'),(10811,'insurance','18.215.242.104',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 05:23:14','2020-07-28 05:23:14'),(10812,'government','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 06:09:59','2020-07-28 06:09:59'),(10813,'chemistry','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 06:25:08','2020-07-28 06:25:08'),(10814,'physics','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 06:30:39','2020-07-28 06:30:39'),(10815,'crk','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 06:59:14','2020-07-28 06:59:14'),(10816,'economics','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 07:01:23','2020-07-28 07:01:23'),(10817,'geography','54.82.82.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 07:11:41','2020-07-28 07:11:41'),(10818,'chemistry','52.201.243.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 08:23:06','2020-07-28 08:23:06'),(10819,'biology','52.201.243.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 08:50:38','2020-07-28 08:50:38'),(10820,'english','52.201.243.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 09:21:31','2020-07-28 09:21:31'),(10821,'currentaffairs','3.84.39.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 10:07:36','2020-07-28 10:07:36'),(10822,'chemistry','3.84.39.247',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 10:34:02','2020-07-28 10:34:02'),(10823,'currentaffairs','54.156.73.100',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 15:43:55','2020-07-28 15:43:55'),(10824,'civiledu','54.156.73.100',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 16:03:41','2020-07-28 16:03:41'),(10825,'biology','54.80.3.159',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 17:09:21','2020-08-03 22:49:01'),(10826,'history','54.80.3.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 17:09:52','2020-07-28 17:09:52'),(10827,'accounting','54.80.3.159',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 17:33:19','2020-07-28 17:33:19'),(10828,'chemistry','3.89.8.238',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 19:41:50','2020-07-28 19:41:50'),(10829,'english','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:55','2020-07-28 21:30:55'),(10830,'mathematics','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:55','2020-07-28 21:30:55'),(10831,'commerce','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:55','2020-07-28 21:30:55'),(10832,'accounting','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:56','2020-07-28 21:30:56'),(10833,'physics','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:56','2020-07-28 21:30:56'),(10834,'government','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:56','2020-07-28 21:30:56'),(10835,'crk','3.84.140.183',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 21:30:56','2020-07-28 21:30:56'),(10836,'physics','52.91.114.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 22:37:42','2020-07-28 22:37:42'),(10837,'economics','52.91.114.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 22:41:39','2020-07-28 22:41:39'),(10838,'english','35.175.137.147',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-28 23:18:37','2020-08-03 01:32:59'),(10839,'history','34.207.184.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 00:03:00','2020-07-29 00:03:00'),(10840,'geography','34.207.184.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 00:05:31','2020-07-29 00:05:31'),(10841,'englishlit','34.207.184.49',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 00:16:42','2020-07-29 00:16:42'),(10842,'englishlit','3.84.121.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 00:54:44','2020-07-29 00:54:44'),(10843,'geography','18.212.37.181',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 01:45:40','2020-07-29 01:45:40'),(10844,'physics','18.212.37.181',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 02:08:02','2020-07-29 02:08:02'),(10845,'insurance','18.212.37.181',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 02:21:25','2020-07-29 02:21:25'),(10846,'crk','52.206.154.18',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 03:07:34','2020-07-29 03:07:34'),(10847,'mathematics','52.206.154.18',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 03:16:48','2020-07-29 03:16:48'),(10848,'chemistry','40.77.167.212',1,'','US','','Virginia','Boydton','23917','36.6676','-78.3875','2020-07-29 03:56:15','2020-07-29 03:56:15'),(10849,'chemistry','52.3.90.15',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 05:02:12','2020-07-29 06:37:22'),(10850,'biology','52.3.90.15',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 05:21:22','2020-07-29 05:35:17'),(10851,'accounting','52.3.90.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 05:41:19','2020-07-29 05:41:19'),(10852,'currentaffairs','52.3.90.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 06:07:46','2020-07-29 06:07:46'),(10853,'geography','52.3.90.15',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 06:38:55','2020-07-29 06:42:08'),(10854,'physics','52.3.90.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 06:55:51','2020-07-29 06:55:51'),(10855,'mathematics','52.3.90.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 07:04:08','2020-07-29 07:04:08'),(10856,'mathematics','3.90.160.71',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 08:11:15','2020-07-29 08:32:08'),(10857,'english','3.90.160.71',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 08:38:21','2020-07-29 08:38:21'),(10858,'geography','3.90.160.71',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 09:04:45','2020-07-29 09:04:45'),(10859,'physics','54.198.183.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 10:15:14','2020-07-29 10:15:14'),(10860,'englishlit','54.159.213.55',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 11:09:35','2020-07-29 11:09:35'),(10861,'currentaffairs','18.212.188.75',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 11:47:10','2020-07-29 11:47:10'),(10862,'englishlit','18.212.188.75',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 11:59:11','2020-07-29 11:59:11'),(10863,'chemistry','18.212.188.75',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 12:25:35','2020-07-29 12:25:35'),(10864,'biology','18.208.147.241',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 13:25:12','2020-07-29 13:25:12'),(10865,'mathematics','52.201.137.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 14:54:23','2020-07-29 14:54:23'),(10866,'economics','52.201.137.174',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 15:23:30','2020-07-29 15:23:30'),(10867,'chemistry','3.80.45.191',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 16:02:21','2020-07-29 16:02:21'),(10868,'mathematics','54.196.93.42',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 16:45:07','2020-07-29 17:25:16'),(10869,'history','54.196.93.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 16:54:08','2020-07-29 16:54:08'),(10870,'accounting','54.196.93.42',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 17:54:21','2020-07-29 17:54:21'),(10871,'english','197.210.52.96',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:01:09','2020-07-29 18:01:22'),(10872,'english','197.210.53.110',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:10:41','2020-07-29 19:01:49'),(10873,'chemistry','197.210.53.105',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:24:12','2020-07-29 18:24:14'),(10874,'english','197.210.52.27',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:36:56','2020-07-29 18:51:30'),(10875,'english','197.210.53.185',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:38:00','2020-07-29 18:38:03'),(10876,'government','54.173.152.80',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 18:46:55','2020-07-29 19:03:06'),(10877,'commerce','197.210.52.27',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-29 18:51:36','2020-07-29 18:51:38'),(10878,'physics','54.87.252.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 19:42:32','2020-07-29 19:42:32'),(10879,'mathematics','54.87.252.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 20:00:21','2020-07-29 20:00:21'),(10880,'biology','50.17.32.216',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 21:28:44','2020-07-29 21:28:44'),(10881,'chemistry','50.17.32.216',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 21:29:16','2020-07-29 21:29:16'),(10882,'accounting','3.85.3.15',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 22:34:15','2020-07-29 22:34:15'),(10883,'biology','54.83.185.147',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-29 23:55:45','2020-07-29 23:55:45'),(10884,'government','35.171.165.31',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 00:45:01','2020-07-30 00:45:01'),(10885,'history','3.84.11.161',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 01:54:51','2020-07-30 02:21:02'),(10886,'chemistry','54.160.201.75',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 02:56:09','2020-07-30 02:56:09'),(10887,'crk','3.80.35.18',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 04:05:19','2020-07-30 04:05:19'),(10888,'accounting','3.91.68.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 05:08:46','2020-07-30 05:08:46'),(10889,'government','3.91.68.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 05:17:12','2020-07-30 05:17:12'),(10890,'irk','3.91.68.27',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 05:23:39','2020-07-30 05:23:39'),(10891,'commerce','3.80.87.112',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 06:47:01','2020-07-30 06:47:01'),(10892,'english','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:31:35'),(10893,'commerce','3.92.231.58',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:58:06'),(10894,'chemistry','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:31:35'),(10895,'englishlit','3.92.231.58',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:58:06'),(10896,'government','3.92.231.58',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:35','2020-07-30 08:58:06'),(10897,'currentaffairs','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:36','2020-07-30 08:31:36'),(10898,'history','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:31:36','2020-07-30 08:31:36'),(10899,'crk','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:58:06','2020-07-30 08:58:06'),(10900,'economics','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:58:07','2020-07-30 08:58:07'),(10901,'civiledu','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:58:07','2020-07-30 08:58:07'),(10902,'insurance','3.92.231.58',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 08:58:07','2020-07-30 08:58:07'),(10903,'biology','3.93.171.183',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 10:16:33','2020-07-30 10:16:33'),(10904,'insurance','3.93.171.183',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 11:07:57','2020-07-30 11:07:57'),(10905,'history','100.24.49.157',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 12:21:42','2020-07-30 12:30:53'),(10906,'english','197.210.52.196',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-30 13:35:55','2020-07-30 13:35:58'),(10907,'english','197.210.53.28',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-30 13:36:54','2020-07-30 13:36:56'),(10908,'english','197.210.52.34',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-30 13:43:27','2020-07-30 13:43:29'),(10909,'english','197.210.52.100',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-07-30 13:44:10','2020-07-30 13:44:12'),(10910,'chemistry','54.160.205.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 13:53:04','2020-07-30 13:53:04'),(10911,'englishlit','54.160.205.38',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 14:06:37','2020-07-30 14:06:37'),(10912,'mathematics','54.82.10.146',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 14:53:45','2020-07-30 14:54:05'),(10913,'commerce','34.207.224.109',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 16:01:43','2020-07-30 16:01:43'),(10914,'english','107.22.153.35',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 18:57:08','2020-07-30 18:57:08'),(10915,'history','3.90.21.245',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 20:57:31','2020-07-30 20:57:31'),(10916,'government','54.197.205.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 23:08:48','2020-07-30 23:08:48'),(10917,'chemistry','54.197.205.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 23:09:28','2020-07-30 23:09:28'),(10918,'geography','34.227.109.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-30 23:53:11','2020-07-30 23:53:11'),(10919,'insurance','34.227.109.46',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 00:10:14','2020-07-31 00:10:14'),(10920,'english','54.167.229.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 00:44:33','2020-07-31 00:44:33'),(10921,'biology','54.167.229.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 01:00:25','2020-07-31 01:00:25'),(10922,'commerce','3.85.76.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 01:35:47','2020-07-31 01:35:47'),(10923,'economics','3.87.186.231',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 03:31:10','2020-07-31 03:55:17'),(10924,'crk','3.87.186.231',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 03:58:27','2020-07-31 03:58:27'),(10925,'physics','3.87.186.231',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 04:28:41','2020-07-31 04:28:41'),(10926,'insurance','107.21.68.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 05:20:36','2020-07-31 05:20:36'),(10927,'commerce','54.198.183.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 05:59:37','2020-07-31 05:59:37'),(10928,'insurance','54.198.183.12',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 06:03:41','2020-07-31 06:03:41'),(10929,'physics','3.86.88.4',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:01:12','2020-07-31 08:01:12'),(10930,'mathematics','3.83.68.206',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 08:49:35'),(10931,'biology','3.83.68.206',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 08:53:54'),(10932,'physics','3.83.68.206',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 09:41:28'),(10933,'chemistry','3.83.68.206',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 08:49:35'),(10934,'economics','3.83.68.206',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:35','2020-07-31 08:49:35'),(10935,'irk','3.83.68.206',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:36','2020-07-31 08:49:36'),(10936,'currentaffairs','3.83.68.206',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 08:49:36','2020-07-31 10:33:56'),(10937,'government','3.83.68.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 09:08:38','2020-07-31 09:08:38'),(10938,'englishlit','3.83.68.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 10:13:30','2020-07-31 10:13:30'),(10939,'english','3.83.68.206',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 10:24:28','2020-07-31 10:24:28'),(10940,'crk','18.234.66.250',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 11:58:01','2020-07-31 11:58:01'),(10941,'insurance','18.234.66.250',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 11:59:29','2020-07-31 11:59:29'),(10942,'chemistry','54.196.132.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 12:44:28','2020-07-31 12:44:28'),(10943,'englishlit','54.196.132.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 12:53:34','2020-07-31 12:53:34'),(10944,'economics','54.196.132.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 13:15:01','2020-07-31 13:15:01'),(10945,'government','54.196.132.97',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 13:24:52','2020-07-31 13:24:52'),(10946,'biology','3.84.231.20',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 15:42:26','2020-07-31 15:42:26'),(10947,'english','52.90.43.238',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 16:24:46','2020-07-31 16:24:46'),(10948,'chemistry','105.112.180.120',1,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-07-31 17:23:42','2020-07-31 17:23:42'),(10949,'crk','3.81.218.201',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 18:34:35','2020-07-31 18:34:35'),(10950,'currentaffairs','54.89.115.133',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 20:53:49','2020-07-31 20:53:49'),(10951,'economics','54.89.115.133',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 20:54:21','2020-07-31 20:54:21'),(10952,'commerce','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10953,'biology','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10954,'physics','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10955,'chemistry','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10956,'englishlit','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:41','2020-07-31 22:32:41'),(10957,'irk','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:42','2020-07-31 22:32:42'),(10958,'insurance','52.3.103.105',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:32:42','2020-07-31 22:32:42'),(10959,'currentaffairs','52.3.103.105',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 22:35:12','2020-07-31 22:35:12'),(10960,'civiledu','54.166.224.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-07-31 23:29:00','2020-07-31 23:29:00'),(10961,'accounting','54.173.129.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 01:13:24','2020-08-01 01:13:24'),(10962,'biology','54.173.129.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 01:25:40','2020-08-01 01:25:40'),(10963,'chemistry','54.175.234.77',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 02:11:12','2020-08-01 02:11:12'),(10964,'civiledu','34.207.77.33',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 03:09:13','2020-08-01 03:09:13'),(10965,'accounting','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:11','2020-08-01 04:29:11'),(10966,'englishlit','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:11','2020-08-01 04:29:12'),(10967,'crk','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:12','2020-08-01 04:29:12'),(10968,'insurance','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:12','2020-08-01 04:29:12'),(10969,'history','54.92.185.193',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 04:29:12','2020-08-01 04:29:12'),(10970,'physics','54.226.180.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 06:32:01','2020-08-01 06:32:01'),(10971,'geography','54.226.180.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 06:32:05','2020-08-01 06:32:05'),(10972,'english','54.226.180.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 06:59:07','2020-08-01 06:59:07'),(10973,'englishlit','54.226.180.52',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 07:05:02','2020-08-01 07:05:02'),(10974,'crk','18.212.61.37',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 08:36:16','2020-08-01 08:36:16'),(10975,'crk','54.234.142.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 10:41:56','2020-08-01 10:41:56'),(10976,'history','54.234.142.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 10:57:12','2020-08-01 10:57:12'),(10977,'englishlit','54.234.142.45',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 10:57:20','2020-08-01 10:57:20'),(10978,'english','197.210.71.157',160,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-01 10:58:36','2020-08-01 11:47:53'),(10979,'mathematics','18.207.178.82',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 12:30:35','2020-08-01 13:14:51'),(10980,'accounting','18.207.178.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 12:47:19','2020-08-01 12:47:19'),(10981,'currentaffairs','18.207.178.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 12:56:48','2020-08-01 12:56:48'),(10982,'geography','18.207.178.82',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 12:57:02','2020-08-01 12:57:02'),(10983,'physics','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 13:55:31','2020-08-01 13:55:31'),(10984,'mathematics','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 14:12:02','2020-08-01 14:12:02'),(10985,'geography','54.85.124.162',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 14:16:45','2020-08-01 14:16:45'),(10986,'mathematics','18.212.230.154',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:02:00','2020-08-01 15:34:11'),(10987,'english','18.212.230.154',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:21:13','2020-08-01 15:21:13'),(10988,'geography','18.212.230.154',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:28:17','2020-08-01 15:34:12'),(10989,'commerce','18.212.230.154',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:32:10','2020-08-01 15:32:10'),(10990,'accounting','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10991,'chemistry','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10992,'irk','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10993,'insurance','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10994,'history','18.212.230.154',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 15:34:12','2020-08-01 15:34:12'),(10995,'physics','54.85.213.9',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 17:03:34','2020-08-01 17:03:34'),(10996,'englishlit','54.85.213.9',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 17:18:57','2020-08-01 17:18:57'),(10997,'currentaffairs','184.73.119.167',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 19:03:07','2020-08-01 19:03:07'),(10998,'englishlit','184.73.119.167',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 19:23:50','2020-08-01 19:23:50'),(10999,'biology','184.73.119.167',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 19:34:50','2020-08-01 19:34:50'),(11000,'chemistry','184.73.119.167',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 20:11:31','2020-08-01 20:11:31'),(11001,'mathematics','54.196.27.13',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 21:44:46','2020-08-01 21:44:46'),(11002,'commerce','3.94.7.62',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 23:23:09','2020-08-01 23:23:09'),(11003,'english','3.94.7.62',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 23:54:51','2020-08-01 23:54:51'),(11004,'mathematics','3.94.7.62',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-01 23:55:07','2020-08-02 00:02:38'),(11005,'currentaffairs','54.80.76.215',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 01:24:02','2020-08-02 01:24:02'),(11006,'government','34.229.58.184',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 02:46:31','2020-08-02 03:06:00'),(11007,'government','18.206.98.71',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 04:01:49','2020-08-02 04:01:49'),(11008,'accounting','18.233.6.175',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 04:51:28','2020-08-02 04:51:28'),(11009,'government','54.145.131.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 07:28:53','2020-08-02 07:28:53'),(11010,'biology','54.145.131.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 07:38:39','2020-08-02 07:38:39'),(11011,'history','54.145.131.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 07:45:26','2020-08-02 07:45:26'),(11012,'history','54.89.218.19',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 08:30:34','2020-08-02 08:30:34'),(11013,'government','52.71.254.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 09:17:41','2020-08-02 09:17:41'),(11014,'englishlit','107.20.36.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 10:53:52','2020-08-02 10:53:52'),(11015,'commerce','107.20.36.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 10:55:52','2020-08-02 10:55:52'),(11016,'government','107.20.36.102',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 11:11:49','2020-08-02 11:11:49'),(11017,'insurance','54.80.64.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 11:51:23','2020-08-02 11:51:23'),(11018,'irk','54.80.64.70',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 12:00:52','2020-08-02 12:00:52'),(11019,'physics','102.89.3.48',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-02 12:18:12','2020-08-02 12:18:16'),(11020,'chemistry','102.89.3.48',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-02 12:18:12','2020-08-02 12:18:16'),(11021,'english','102.89.2.37',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-02 12:18:12','2020-08-02 12:18:16'),(11022,'physics','54.165.123.34',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 12:42:04','2020-08-02 12:42:04'),(11023,'economics','54.88.178.170',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 16:27:17','2020-08-02 16:47:55'),(11024,'economics','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 18:05:21','2020-08-02 18:05:21'),(11025,'insurance','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 18:06:26','2020-08-02 18:06:26'),(11026,'chemistry','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 18:10:03','2020-08-02 18:10:03'),(11027,'history','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 18:38:04','2020-08-02 18:38:04'),(11028,'crk','3.95.220.74',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 19:00:19','2020-08-02 19:00:19'),(11029,'biology','54.236.112.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 19:47:26','2020-08-02 19:47:26'),(11030,'history','54.236.112.204',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 19:53:02','2020-08-02 19:53:02'),(11031,'chemistry','18.206.248.186',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 20:40:45','2020-08-02 20:40:45'),(11032,'irk','18.206.248.186',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 20:47:36','2020-08-02 20:47:36'),(11033,'englishlit','18.206.248.186',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 21:15:39','2020-08-02 21:15:39'),(11034,'government','52.91.234.242',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 22:06:32','2020-08-02 22:06:32'),(11035,'economics','54.167.102.163',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-02 23:45:51','2020-08-02 23:45:51'),(11036,'government','54.161.137.172',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 04:22:51','2020-08-03 04:22:51'),(11037,'english','54.161.137.172',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 04:31:17','2020-08-03 04:31:17'),(11038,'crk','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:11:33','2020-08-03 05:11:33'),(11039,'economics','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:17:27','2020-08-03 05:17:27'),(11040,'chemistry','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:21:20','2020-08-03 05:21:20'),(11041,'government','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:41:24','2020-08-03 05:41:24'),(11042,'geography','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 05:46:40','2020-08-03 05:46:40'),(11043,'commerce','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 06:13:26','2020-08-03 06:13:26'),(11044,'biology','3.84.207.211',1,'United States','US','VA','Virginia','Ashburn','','39.0481','-77.4728','2020-08-03 06:25:08','2020-08-03 06:25:08'),(11045,'insurance','3.84.207.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 06:53:08','2020-08-03 06:53:08'),(11046,'english','3.83.204.161',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 07:48:29','2020-08-03 07:48:29'),(11047,'physics','184.72.189.245',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 10:22:04','2020-08-03 10:22:04'),(11048,'economics','184.72.189.245',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 10:32:24','2020-08-03 10:32:24'),(11049,'crk','184.72.189.245',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 10:41:28','2020-08-03 10:41:28'),(11050,'commerce','18.234.210.121',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 12:28:41','2020-08-03 12:28:41'),(11051,'physics','34.229.129.196',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 14:16:13','2020-08-03 14:17:43'),(11052,'government','34.229.129.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 14:38:57','2020-08-03 14:38:57'),(11053,'mathematics','34.229.129.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 14:48:06','2020-08-03 14:48:06'),(11054,'biology','34.229.129.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 15:11:44','2020-08-03 15:11:44'),(11055,'englishlit','34.229.129.196',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 15:16:42','2020-08-03 15:16:42'),(11056,'physics','100.24.25.50',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 15:55:08','2020-08-03 15:55:08'),(11057,'english','100.24.25.50',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 16:01:24','2020-08-03 16:01:24'),(11058,'englishlit','100.24.25.50',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 16:30:38','2020-08-03 16:30:38'),(11059,'currentaffairs','100.24.25.50',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 16:56:41','2020-08-03 16:56:41'),(11060,'crk','18.208.194.126',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 18:01:52','2020-08-03 18:01:52'),(11061,'insurance','54.164.15.197',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 18:48:09','2020-08-03 18:48:09'),(11062,'economics','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:11:53','2020-08-03 20:11:53'),(11063,'chemistry','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:19:06','2020-08-03 20:19:06'),(11064,'englishlit','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:20:34','2020-08-03 20:20:34'),(11065,'government','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:24:31','2020-08-03 20:24:31'),(11066,'geography','100.26.59.120',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 20:53:58','2020-08-03 20:53:58'),(11067,'english','54.80.3.159',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:21:48','2020-08-03 22:49:01'),(11068,'physics','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:01','2020-08-03 22:49:01'),(11069,'government','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:01','2020-08-03 22:49:01'),(11070,'crk','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:01','2020-08-03 22:49:02'),(11071,'economics','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:02','2020-08-03 22:49:02'),(11072,'civiledu','54.80.3.159',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 22:49:02','2020-08-03 22:49:02'),(11073,'chemistry','54.144.209.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 23:27:51','2020-08-03 23:27:51'),(11074,'currentaffairs','54.144.209.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 23:36:14','2020-08-03 23:36:14'),(11075,'biology','54.144.209.211',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-03 23:42:48','2020-08-03 23:42:48'),(11076,'mathematics','34.227.25.213',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 03:09:04','2020-08-13 12:56:47'),(11077,'commerce','3.91.236.94',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 04:38:34','2020-08-04 04:38:34'),(11078,'currentaffairs','3.91.236.94',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 04:50:48','2020-08-04 04:50:48'),(11079,'civiledu','3.80.101.3',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 05:25:55','2020-08-04 05:25:55'),(11080,'history','18.204.198.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 07:12:49','2020-08-04 07:12:49'),(11081,'biology','18.204.198.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 07:15:16','2020-08-04 07:15:16'),(11082,'geography','18.204.198.149',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 07:18:51','2020-08-04 07:18:51'),(11083,'chemistry','184.72.158.83',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 09:21:17','2020-08-04 09:21:17'),(11084,'english','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:10','2020-08-04 10:33:10'),(11085,'biology','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:33:11'),(11086,'chemistry','54.227.124.205',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:55:06'),(11087,'government','54.227.124.205',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:55:06'),(11088,'geography','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:33:11'),(11089,'economics','54.227.124.205',4,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:55:06'),(11090,'irk','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:33:11','2020-08-04 10:33:11'),(11091,'mathematics','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:55:05','2020-08-04 10:55:05'),(11092,'commerce','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:55:05','2020-08-04 10:55:05'),(11093,'accounting','54.227.124.205',2,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:55:05','2020-08-04 10:55:05'),(11094,'insurance','54.227.124.205',3,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 10:55:06','2020-08-04 11:06:30'),(11095,'geography','34.227.205.152',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 12:17:57','2020-08-04 12:17:57'),(11096,'history','34.227.205.152',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 12:29:21','2020-08-04 12:29:21'),(11097,'physics','34.227.205.152',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 12:31:07','2020-08-04 12:31:07'),(11098,'english','184.73.64.229',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 13:18:10','2020-08-04 13:18:10'),(11099,'chemistry','184.73.64.229',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 13:26:35','2020-08-04 13:26:35'),(11100,'physics','34.226.248.152',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 14:20:06','2020-08-04 14:20:06'),(11101,'mathematics','54.161.120.114',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 15:41:13','2020-08-04 15:41:13'),(11102,'insurance','54.161.120.114',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 16:10:09','2020-08-04 16:10:09'),(11103,'crk','54.161.120.114',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 16:41:33','2020-08-04 16:41:33'),(11104,'englishlit','54.161.120.114',1,'','US','','Virginia','Virginia Beach','23458','36.8529','-75.9780','2020-08-04 17:09:00','2020-08-04 17:09:00'),(11105,'biology','54.210.144.234',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 18:39:39','2020-08-04 18:39:39'),(11106,'geography','54.210.144.234',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 18:42:38','2020-08-04 18:42:38'),(11107,'mathematics','54.210.144.234',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 18:52:59','2020-08-04 18:52:59'),(11108,'currentaffairs','54.156.81.192',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 19:39:49','2020-08-04 19:39:49'),(11109,'accounting','54.156.81.192',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 19:44:09','2020-08-04 19:44:09'),(11110,'physics','54.156.81.192',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 19:46:08','2020-08-04 19:46:08'),(11111,'mathematics','54.90.140.125',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 21:20:53','2020-08-04 21:33:13'),(11112,'english','54.90.140.125',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 21:40:11','2020-08-04 21:40:11'),(11113,'geography','54.90.140.125',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 21:40:44','2020-08-04 21:40:44'),(11114,'physics','54.166.224.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 23:28:14','2020-08-04 23:28:14'),(11115,'englishlit','54.166.224.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-04 23:52:44','2020-08-04 23:52:44'),(11116,'currentaffairs','54.166.224.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 00:25:48','2020-08-05 00:25:48'),(11117,'biology','54.224.51.57',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 01:03:27','2020-08-05 01:44:13'),(11118,'insurance','54.224.51.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 01:25:01','2020-08-05 01:25:01'),(11119,'english','54.224.51.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 01:53:06','2020-08-05 01:53:06'),(11120,'englishlit','54.224.51.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 02:26:17','2020-08-05 02:26:17'),(11121,'chemistry','54.224.51.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 02:32:41','2020-08-05 02:32:41'),(11122,'english','54.89.110.93',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 05:23:35','2020-08-05 05:23:35'),(11123,'commerce','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 06:33:31','2020-08-05 06:33:31'),(11124,'mathematics','184.72.205.157',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 06:34:42','2020-08-05 07:02:06'),(11125,'currentaffairs','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 06:53:50','2020-08-05 06:53:50'),(11126,'history','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 07:15:50','2020-08-05 07:15:50'),(11127,'government','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 07:17:02','2020-08-05 07:17:02'),(11128,'civiledu','184.72.205.157',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 07:40:48','2020-08-05 07:40:48'),(11129,'government','3.95.170.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 08:19:24','2020-08-05 08:43:23'),(11130,'crk','3.95.170.247',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 08:27:36','2020-08-05 08:27:36'),(11131,'physics','3.95.170.247',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 08:40:22','2020-08-05 08:40:22'),(11132,'government','54.175.234.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 11:04:25','2020-08-05 11:04:25'),(11133,'accounting','3.88.242.175',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 12:24:19','2020-08-05 12:24:19'),(11134,'biology','3.87.173.252',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 14:11:37','2020-08-05 14:11:37'),(11135,'government','3.87.173.252',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 14:40:06','2020-08-05 14:40:06'),(11136,'economics','3.87.173.252',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 14:42:22','2020-08-05 14:42:22'),(11137,'civiledu','3.87.173.252',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 14:45:49','2020-08-05 14:45:49'),(11138,'history','3.87.173.252',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 15:02:26','2020-08-05 15:20:09'),(11139,'englishlit','54.161.233.35',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 16:18:32','2020-08-05 16:18:32'),(11140,'insurance','54.226.47.140',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 17:13:03','2020-08-05 17:13:03'),(11141,'irk','18.207.92.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 18:36:35','2020-08-05 18:36:35'),(11142,'commerce','18.207.92.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 18:48:13','2020-08-05 18:48:13'),(11143,'physics','54.152.230.200',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 20:00:45','2020-08-05 20:00:45'),(11144,'crk','54.152.230.200',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 20:11:11','2020-08-05 20:11:11'),(11145,'crk','34.229.15.151',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 21:00:09','2020-08-05 21:00:09'),(11146,'economics','34.229.15.151',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 21:03:31','2020-08-05 21:03:31'),(11147,'economics','54.85.52.148',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 22:54:12','2020-08-05 22:54:12'),(11148,'english','54.85.52.148',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-05 23:17:52','2020-08-05 23:17:52'),(11149,'insurance','52.23.220.25',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 00:36:34','2020-08-06 00:36:34'),(11150,'economics','3.85.73.59',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 01:28:49','2020-08-06 01:28:49'),(11151,'crk','3.85.73.59',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 01:37:40','2020-08-06 01:37:40'),(11152,'history','3.85.73.59',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 02:08:22','2020-08-06 02:08:50'),(11153,'government','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:12:32','2020-08-06 04:15:37'),(11154,'physics','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:14:05','2020-08-06 03:16:21'),(11155,'irk','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:30:58','2020-08-06 03:58:43'),(11156,'history','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:37:14','2020-08-06 04:24:32'),(11157,'chemistry','54.234.122.99',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 03:51:30','2020-08-06 03:51:30'),(11158,'englishlit','54.234.122.99',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 04:05:17','2020-08-06 04:05:17'),(11159,'currentaffairs','54.234.122.99',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 04:07:38','2020-08-06 04:07:38'),(11160,'geography','54.234.122.99',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 04:08:52','2020-08-06 04:08:52'),(11161,'commerce','54.234.122.99',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 04:09:23','2020-08-06 04:20:09'),(11162,'government','100.27.28.222',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:08:19','2020-08-06 06:06:41'),(11163,'physics','100.27.28.222',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:10:32','2020-08-06 05:12:37'),(11164,'irk','100.27.28.222',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:24:16','2020-08-06 05:50:07'),(11165,'history','100.27.28.222',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:30:09','2020-08-06 05:30:09'),(11166,'currentaffairs','100.27.28.222',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 05:58:47','2020-08-06 05:58:47'),(11167,'geography','100.27.28.222',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 06:00:29','2020-08-06 06:00:29'),(11168,'commerce','100.27.28.222',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 06:00:59','2020-08-06 06:00:59'),(11169,'english','54.175.152.162',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 08:46:23','2020-08-06 08:46:23'),(11170,'geography','3.87.172.207',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 12:20:45','2020-08-06 12:20:45'),(11171,'government','23.20.178.5',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 12:59:06','2020-08-06 12:59:06'),(11172,'commerce','23.20.178.5',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 13:31:48','2020-08-06 13:31:48'),(11173,'insurance','3.84.191.101',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 14:40:51','2020-08-06 14:40:51'),(11174,'chemistry','3.84.191.101',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 14:41:39','2020-08-06 14:41:39'),(11175,'english','3.84.191.101',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 15:09:42','2020-08-06 15:09:42'),(11176,'economics','35.153.209.1',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 16:39:01','2020-08-06 16:39:01'),(11177,'physics','35.153.209.1',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 17:07:29','2020-08-06 17:07:29'),(11178,'commerce','18.206.220.44',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 19:45:46','2020-08-06 19:45:46'),(11179,'physics','54.224.79.154',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 21:04:33','2020-08-06 21:04:33'),(11180,'mathematics','54.224.79.154',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 21:14:56','2020-08-06 21:14:56'),(11181,'physics','54.159.17.82',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 21:52:44','2020-08-06 21:52:44'),(11182,'government','54.159.17.82',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 21:59:55','2020-08-06 21:59:55'),(11183,'physics','3.87.36.152',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 23:04:02','2020-08-06 23:04:02'),(11184,'currentaffairs','3.83.114.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-06 23:50:09','2020-08-06 23:50:09'),(11185,'english','54.152.136.131',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 00:59:16','2020-08-07 00:59:16'),(11186,'crk','54.152.136.131',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 01:15:40','2020-08-07 01:15:40'),(11187,'chemistry','3.85.9.206',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 02:24:42','2020-08-07 02:24:42'),(11188,'insurance','3.85.9.206',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 02:25:13','2020-08-07 02:25:13'),(11189,'government','3.85.9.206',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 02:29:12','2020-08-07 02:29:12'),(11190,'englishlit','3.85.9.206',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 02:39:33','2020-08-07 02:39:33'),(11191,'chemistry','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 03:23:34','2020-08-07 03:23:34'),(11192,'economics','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 03:44:44','2020-08-07 03:44:44'),(11193,'geography','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 03:54:37','2020-08-07 03:54:37'),(11194,'crk','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 04:28:29','2020-08-07 04:28:29'),(11195,'biology','18.234.153.145',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 04:46:44','2020-08-07 04:46:44'),(11196,'english','3.90.17.44',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 05:36:50','2020-08-07 05:36:50'),(11197,'chemistry','197.253.9.53',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-07 08:11:02','2020-08-10 09:36:19'),(11198,'commerce','107.21.169.213',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 11:26:37','2020-08-07 11:26:37'),(11199,'currentaffairs','107.21.169.213',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 11:34:39','2020-08-07 11:34:39'),(11200,'mathematics','54.174.200.1',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 12:44:50','2020-08-07 12:44:50'),(11201,'history','54.221.171.232',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 13:49:45','2020-08-07 13:49:45'),(11202,'biology','54.221.171.232',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 13:51:15','2020-08-07 13:51:15'),(11203,'accounting','54.221.171.232',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 13:51:45','2020-08-07 13:51:45'),(11204,'commerce','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:09','2020-08-07 17:42:10'),(11205,'accounting','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11206,'physics','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11207,'chemistry','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11208,'geography','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11209,'economics','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11210,'civiledu','18.207.208.44',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 17:42:10','2020-08-07 17:42:10'),(11211,'englishlit','54.152.199.92',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 20:47:07','2020-08-07 20:47:07'),(11212,'physics','54.152.199.92',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-07 21:18:14','2020-08-07 21:18:14'),(11213,'mathematics','3.84.11.161',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 01:45:31','2020-08-08 01:45:31'),(11214,'geography','54.81.96.169',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 02:43:27','2020-08-08 02:43:27'),(11215,'geography','54.152.241.237',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 03:24:11','2020-08-08 03:24:11'),(11216,'english','54.152.241.237',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 03:42:12','2020-08-08 03:42:12'),(11217,'mathematics','54.152.241.237',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 03:46:30','2020-08-08 03:46:30'),(11218,'geography','3.86.188.202',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 04:23:34','2020-08-08 04:23:34'),(11219,'english','3.86.188.202',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 04:34:51','2020-08-08 04:34:51'),(11220,'physics','54.80.237.218',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 06:31:58','2020-08-08 06:31:58'),(11221,'currentaffairs','52.202.44.153',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 07:28:53','2020-08-08 07:28:53'),(11222,'englishlit','52.202.44.153',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 07:51:03','2020-08-08 07:51:03'),(11223,'english','3.92.214.183',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 08:36:50','2020-08-08 08:36:50'),(11224,'chemistry','3.92.214.183',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 08:56:46','2020-08-08 08:56:46'),(11225,'mathematics','184.72.205.168',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 12:18:32','2020-08-08 12:53:49'),(11226,'history','184.72.205.168',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 12:53:25','2020-08-08 12:53:25'),(11227,'government','184.72.205.168',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 13:15:33','2020-08-08 13:15:33'),(11228,'accounting','184.72.205.168',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 13:45:08','2020-08-08 13:45:08'),(11229,'physics','100.26.51.248',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 14:35:33','2020-08-08 14:35:33'),(11230,'government','100.26.51.248',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 14:45:34','2020-08-08 14:45:34'),(11231,'economics','3.81.102.105',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 16:31:49','2020-08-08 16:31:49'),(11232,'civiledu','3.81.102.105',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 16:39:45','2020-08-08 16:39:45'),(11233,'accounting','107.21.87.77',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 18:22:14','2020-08-08 18:22:14'),(11234,'biology','54.152.253.2',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 19:33:12','2020-08-08 19:33:12'),(11235,'government','54.84.74.107',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-08 20:58:36','2020-08-08 20:58:36'),(11236,'irk','34.205.127.83',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 00:41:28','2020-08-09 00:41:28'),(11237,'physics','3.83.111.174',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 01:35:12','2020-08-09 01:35:12'),(11238,'crk','35.175.231.170',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 07:48:52','2020-08-09 07:48:52'),(11239,'history','35.175.231.170',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 07:58:03','2020-08-09 07:58:03'),(11240,'history','54.85.57.57',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 08:36:40','2020-08-09 08:36:40'),(11241,'englishlit','3.90.66.124',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 10:41:12','2020-08-09 10:41:12'),(11242,'english','54.209.222.135',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 14:27:26','2020-08-09 14:27:26'),(11243,'chemistry','34.228.228.69',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 16:49:01','2020-08-09 16:49:01'),(11244,'commerce','54.159.197.205',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 19:22:10','2020-08-09 19:22:10'),(11245,'geography','54.159.197.205',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 19:28:41','2020-08-09 19:28:41'),(11246,'biology','54.159.197.205',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 19:34:11','2020-08-09 19:34:11'),(11247,'english','54.160.132.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 20:26:52','2020-08-09 20:26:52'),(11248,'insurance','54.160.132.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 20:48:31','2020-08-09 20:48:31'),(11249,'economics','3.82.43.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 22:51:23','2020-08-09 22:51:23'),(11250,'physics','3.82.43.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 23:20:12','2020-08-09 23:20:12'),(11251,'crk','3.82.43.133',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-09 23:48:17','2020-08-09 23:48:17'),(11252,'commerce','35.175.247.116',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 01:29:23','2020-08-10 01:29:23'),(11253,'english','35.175.247.116',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 01:39:07','2020-08-10 01:39:07'),(11254,'physics','35.175.247.116',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 01:39:38','2020-08-10 01:39:38'),(11255,'physics','50.17.32.216',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 02:57:35','2020-08-10 03:18:03'),(11256,'government','50.17.32.216',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 03:33:14','2020-08-10 03:33:14'),(11257,'physics','100.24.33.18',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 05:23:01','2020-08-10 05:23:01'),(11258,'currentaffairs','100.24.33.18',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 05:33:02','2020-08-10 05:33:02'),(11259,'english','100.24.33.18',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 05:39:00','2020-08-10 05:39:00'),(11260,'crk','54.88.30.126',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 06:45:49','2020-08-10 06:45:49'),(11261,'government','54.88.30.126',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 06:49:04','2020-08-10 06:49:04'),(11262,'biology','3.91.235.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 07:26:44','2020-08-10 07:26:44'),(11263,'insurance','3.91.235.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 07:46:58','2020-08-10 07:46:58'),(11264,'chemistry','3.91.235.49',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 07:57:06','2020-08-10 07:57:06'),(11265,'commerce','34.229.185.11',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 12:20:30','2020-08-10 12:20:30'),(11266,'government','100.26.46.228',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 14:54:49','2020-08-10 16:20:21'),(11267,'physics','100.26.46.228',4,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 14:55:21','2020-08-10 16:20:20'),(11268,'irk','100.26.46.228',4,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:15:22','2020-08-10 16:20:21'),(11269,'history','100.26.46.228',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:22:28','2020-08-10 16:20:21'),(11270,'currentaffairs','100.26.46.228',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:55:35','2020-08-10 16:20:21'),(11271,'geography','100.26.46.228',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:56:56','2020-08-10 16:25:08'),(11272,'commerce','100.26.46.228',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 15:57:33','2020-08-10 15:57:33'),(11273,'biology','100.26.46.228',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 16:20:20','2020-08-10 16:20:20'),(11274,'economics','100.26.46.228',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 16:20:21','2020-08-10 16:20:21'),(11275,'mathematics','54.226.147.90',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 17:17:31','2020-08-10 17:17:31'),(11276,'commerce','54.226.147.90',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 17:36:49','2020-08-10 17:36:49'),(11277,'history','18.234.209.92',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 19:37:09','2020-08-10 19:37:09'),(11278,'chemistry','18.209.163.124',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-10 20:44:19','2020-08-10 20:44:19'),(11279,'chemistry','197.210.85.126',3,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-10 20:45:36','2020-08-10 20:46:04'),(11280,'english','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:51','2020-08-11 00:16:51'),(11281,'mathematics','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:51','2020-08-11 00:16:51'),(11282,'biology','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11283,'crk','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11284,'geography','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11285,'irk','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11286,'civiledu','52.91.111.37',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 00:16:52','2020-08-11 00:16:52'),(11287,'english','54.234.125.46',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 02:22:18','2020-08-11 02:22:18'),(11288,'biology','54.234.125.46',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 02:26:31','2020-08-11 02:26:31'),(11289,'government','54.80.143.147',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 05:54:08','2020-08-11 05:54:08'),(11290,'mathematics','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 07:50:06','2020-08-11 07:50:06'),(11291,'biology','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 07:51:08','2020-08-11 07:51:08'),(11292,'currentaffairs','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 08:21:18','2020-08-11 08:21:18'),(11293,'geography','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 08:32:37','2020-08-11 08:32:37'),(11294,'crk','54.81.34.130',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 08:43:59','2020-08-11 08:43:59'),(11295,'mathematics','54.198.59.199',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 10:19:40','2020-08-11 10:19:40'),(11296,'english','197.210.71.188',1000,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-08-11 10:39:24','2020-08-11 12:25:37'),(11297,'english','54.198.59.199',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 10:40:53','2020-08-11 10:40:53'),(11298,'chemistry','197.210.71.188',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-11 10:45:17','2020-08-11 10:45:19'),(11299,'mathematics','66.102.6.73',40,'',NULL,'',NULL,'Ashburn','20149','39.0437','-77.4875','2020-08-11 11:39:12','2020-08-11 11:39:15'),(11300,'mathematics','66.102.6.71',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:39:21','2020-08-11 11:39:23'),(11301,'biology','197.210.71.188',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:39:42','2020-08-11 11:58:39'),(11302,'biology','66.102.6.71',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:40:40','2020-08-11 11:40:43'),(11303,'physics','66.102.6.73',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:42:14','2020-08-11 11:42:16'),(11304,'english','197.210.53.38',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:50:21','2020-08-11 11:50:23'),(11305,'english','197.210.52.144',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:50:57','2020-08-11 11:51:00'),(11306,'physics','129.205.112.237',120,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:58:40','2020-08-11 12:04:51'),(11307,'physics','197.210.71.188',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:58:45','2020-08-11 11:58:48'),(11308,'government','129.205.112.237',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:58:54','2020-08-11 11:58:56'),(11309,'government','197.210.71.188',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:59:23','2020-08-11 17:19:23'),(11310,'mathematics','129.205.112.237',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 11:59:30','2020-08-11 11:59:32'),(11311,'mathematics','41.190.14.218',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 12:15:25','2020-08-11 12:15:27'),(11312,'biology','197.210.70.169',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 13:30:27','2020-08-11 13:30:30'),(11313,'english','105.112.117.120',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 13:52:23','2020-08-11 13:52:25'),(11314,'mathematics','105.112.117.120',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-11 13:53:50','2020-08-11 13:53:53'),(11315,'english','18.208.144.141',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-11 21:38:53','2020-08-11 21:38:53'),(11316,'mathematics','54.81.177.247',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:56:08','2020-08-12 17:58:41'),(11317,'accounting','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:57:59'),(11318,'biology','54.81.177.247',5,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:59:12'),(11319,'crk','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:57:59'),(11320,'irk','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:57:59'),(11321,'civiledu','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:57:59'),(11322,'insurance','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:57:59','2020-08-12 17:58:00'),(11323,'history','54.81.177.247',4,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:00','2020-08-12 17:58:42'),(11324,'chemistry','54.81.177.247',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:41','2020-08-12 17:59:51'),(11325,'government','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:41','2020-08-12 17:58:41'),(11326,'economics','54.81.177.247',2,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:41','2020-08-12 17:58:41'),(11327,'currentaffairs','54.81.177.247',3,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-12 17:58:42','2020-08-12 17:59:59'),(11328,'english','197.210.70.155',80,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-13 17:53:05','2020-08-13 17:54:12'),(11329,'mathematics','197.210.70.155',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-13 18:17:59','2020-08-13 18:18:01'),(11330,'english','54.224.255.255',1,'','US','','Virginia','Virginia Beach','23461','36.7754','-75.9633','2020-08-13 21:44:01','2020-08-13 21:44:01'),(11331,'mathematics','197.210.70.184',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-14 23:45:07','2020-08-14 23:45:10'),(11332,'biology','66.102.8.213',160,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:44:13','2020-08-18 09:52:01'),(11333,'biology','66.102.8.215',80,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:44:18','2020-08-18 09:51:25'),(11334,'biology','66.102.6.90',240,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:00','2020-08-18 09:52:30'),(11335,'chemistry','66.102.6.92',160,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:01','2020-08-15 00:48:23'),(11336,'mathematics','66.102.8.213',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:45:04','2020-08-15 00:45:06'),(11337,'biology','66.102.6.91',440,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:06','2020-08-18 09:52:36'),(11338,'government','66.102.8.215',120,'',NULL,'',NULL,'Ashburn','20149','39.0437','-77.4875','2020-08-15 00:45:36','2020-08-18 09:52:56'),(11339,'biology','66.102.6.92',200,'','US','','New Jersey','North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:42','2020-08-18 09:52:05'),(11340,'biology','66.249.88.117',80,'',NULL,'',NULL,'Ashburn','20149','39.0437','-77.4875','2020-08-15 00:45:53','2020-08-15 00:47:02'),(11341,'government','66.102.6.91',480,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:45:55','2020-08-18 09:53:14'),(11342,'chemistry','66.102.6.91',80,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:46:11','2020-08-18 09:54:31'),(11343,'chemistry','66.249.88.121',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-15 00:46:11','2020-08-15 00:46:14'),(11344,'physics','66.249.88.117',80,'',NULL,'',NULL,'Ashburn','20149','39.0437','-77.4875','2020-08-15 00:46:18','2020-08-15 00:46:50'),(11345,'government','66.102.6.92',280,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:46:33','2020-08-18 09:54:48'),(11346,'government','66.102.6.90',440,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-15 00:46:36','2020-08-18 09:52:13'),(11347,'chemistry','66.249.88.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:46:47','2020-08-15 00:46:49'),(11348,'physics','66.102.6.90',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:01','2020-08-15 00:47:04'),(11349,'government','66.249.88.121',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:08','2020-08-18 09:53:20'),(11350,'commerce','66.102.6.92',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:11','2020-08-15 00:47:44'),(11351,'government','66.102.8.217',120,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:33','2020-08-18 09:53:09'),(11352,'mathematics','66.102.6.91',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:47:36','2020-08-18 09:53:22'),(11353,'mathematics','66.102.6.90',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:48:02','2020-08-15 00:48:05'),(11354,'mathematics','66.249.88.121',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:48:04','2020-08-15 00:48:06'),(11355,'commerce','66.102.6.91',240,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:48:54','2020-08-18 09:54:34'),(11356,'commerce','66.102.6.90',119,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:50:16','2020-08-18 09:54:50'),(11357,'english','108.177.6.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:57:24','2020-08-15 00:57:26'),(11358,'mathematics','108.177.6.59',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:57:50','2020-08-15 00:58:00'),(11359,'biology','108.177.6.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:58:14','2020-08-15 00:58:17'),(11360,'commerce','108.177.6.59',276,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:58:36','2020-08-15 00:59:23'),(11361,'physics','108.177.6.59',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:59:42','2020-08-15 00:59:49'),(11362,'economics','108.177.6.59',184,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 00:59:49','2020-08-15 01:00:31'),(11363,'geography','108.177.6.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:00:59','2020-08-15 01:01:01'),(11364,'englishlit','108.177.6.59',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:01:26','2020-08-15 01:01:28'),(11365,'government','108.177.6.52',357,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:22:05','2020-08-15 01:26:04'),(11366,'english','108.177.6.52',240,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:24:17','2020-08-15 01:25:01'),(11367,'chemistry','108.177.6.52',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 01:25:41','2020-08-15 01:25:44'),(11368,'biology','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:28','2020-08-15 03:55:28'),(11369,'physics','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:28','2020-08-15 03:55:28'),(11370,'chemistry','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:28','2020-08-15 03:55:28'),(11371,'englishlit','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:28','2020-08-15 03:55:29'),(11372,'geography','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:29','2020-08-15 03:55:29'),(11373,'insurance','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:29','2020-08-15 03:55:29'),(11374,'history','54.174.162.148',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 03:55:29','2020-08-15 03:55:29'),(11375,'mathematics','108.177.7.82',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 08:37:22','2020-08-15 08:38:27'),(11376,'mathematics','108.177.7.83',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 08:38:27','2020-08-15 08:38:30'),(11377,'english','108.177.7.83',160,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 08:40:28','2020-08-15 08:41:19'),(11378,'government','108.177.7.83',280,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 08:42:26','2020-08-15 08:45:15'),(11379,'english','54.145.17.5',2,'',NULL,'',NULL,'Virginia Beach','23461','36.7754','-75.9633','2020-08-15 18:09:17','2020-08-15 18:09:17'),(11380,'accounting','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:17'),(11381,'physics','54.145.17.5',4,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:18'),(11382,'englishlit','54.145.17.5',4,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:18'),(11383,'crk','54.145.17.5',4,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:18'),(11384,'insurance','54.145.17.5',4,'',NULL,'',NULL,'Virginia Beach','23461','36.7754','-75.9633','2020-08-15 18:09:17','2020-08-15 18:09:18'),(11385,'currentaffairs','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:17','2020-08-15 18:09:17'),(11386,'mathematics','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:18','2020-08-15 18:09:18'),(11387,'economics','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:18','2020-08-15 18:09:18'),(11388,'irk','54.145.17.5',2,'',NULL,'',NULL,NULL,NULL,'','','2020-08-15 18:09:18','2020-08-15 18:09:18'),(11389,'chemistry','5.189.130.197',41,'','DE','','Bavaria','Nürnberg','90402','49.4542','11.0775','2020-08-16 00:00:52','2020-08-16 00:01:34'),(11390,'english','197.210.71.50',80,'',NULL,'',NULL,'Abuja',NULL,'9.0579','7.4951','2020-08-17 16:18:07','2020-08-18 21:12:04'),(11391,'mathematics','197.210.71.50',560,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-17 16:39:16','2020-08-19 01:45:44'),(11392,'english','112.200.109.64',40,'','PH','','Metro Manila','Quezon City','0860','14.6488','121.0509','2020-08-18 08:29:55','2020-08-18 08:29:58'),(11393,'biology','112.200.109.64',40,'','PH','','Metro Manila','Quezon City','0860','14.6488','121.0509','2020-08-18 08:31:00','2020-08-18 08:31:02'),(11394,'biology','66.102.8.217',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-18 09:50:02','2020-08-18 09:50:04'),(11395,'chemistry','66.102.8.217',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-18 09:50:13','2020-08-18 09:50:15'),(11396,'english','66.102.6.92',120,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-18 09:50:32','2020-08-18 09:52:11'),(11397,'english','66.102.6.90',160,'',NULL,'',NULL,'North Bergen','07047','40.8043','-74.0121','2020-08-18 09:50:37','2020-08-18 09:52:46'),(11398,'biology','66.249.88.119',40,'','US','','Virginia','Ashburn','20149','39.0437','-77.4875','2020-08-18 09:51:14','2020-08-18 09:51:16'),(11399,'physics','66.249.88.119',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 09:52:07','2020-08-18 09:52:10'),(11400,'government','66.102.8.213',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 09:52:19','2020-08-18 09:53:24'),(11401,'government','66.249.88.119',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 09:53:19','2020-08-18 09:53:40'),(11402,'government','66.249.88.117',80,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 09:53:38','2020-08-18 09:54:10'),(11403,'english','112.201.11.91',40,'',NULL,'',NULL,'Antipolo','1811','14.6258','121.1225','2020-08-18 19:56:37','2020-08-18 19:56:39'),(11404,'mathematics','112.201.11.91',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 19:57:25','2020-08-18 19:57:27'),(11405,'government','67.215.234.250',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 19:59:24','2020-08-18 19:59:27'),(11406,'biology','120.29.112.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 20:11:28','2020-08-18 20:11:30'),(11407,'chemistry','120.29.112.205',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 20:28:21','2020-08-18 20:28:23'),(11408,'mathematics','129.205.124.241',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 20:36:36','2020-08-18 20:36:39'),(11409,'crk','129.205.124.241',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-18 20:42:53','2020-08-18 20:42:55'),(11410,'english','197.210.70.47',240,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 01:46:37','2020-08-19 01:57:23'),(11411,'civiledu','197.210.70.47',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 01:53:05','2020-08-19 01:53:07'),(11412,'physics','197.210.70.47',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 01:58:51','2020-08-19 01:58:53'),(11413,'chemistry','197.210.52.171',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 05:34:32','2020-08-19 05:34:35'),(11414,'english','105.112.114.27',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-19 07:03:12','2020-08-19 07:03:15'),(11415,'english','109.123.118.52',40,'','GB','','England','London','EC1A','51.5085','-0.1257','2020-08-19 09:10:16','2020-08-19 09:10:18'),(11416,'accounting','109.123.118.52',40,'','GB','','England','London','EC1A','51.5085','-0.1257','2020-08-19 09:11:23','2020-08-19 09:11:25'),(11417,'government','109.123.118.52',86,'','GB','','England','London','EC1A','51.5085','-0.1257','2020-08-19 09:12:20','2020-08-19 09:12:26'),(11418,'english','175.158.218.23',40,'','PH','','Bicol','Naga','6037','13.6192','123.1814','2020-08-19 10:52:46','2020-08-19 10:52:49'),(11419,'government','175.158.218.16',40,'','PH','','Bicol','Naga','6037','13.6192','123.1814','2020-08-19 10:56:08','2020-08-19 10:56:11'),(11420,'physics','197.210.71.217',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 17:37:33','2020-08-19 17:37:36'),(11421,'chemistry','197.210.70.88',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 18:52:00','2020-08-19 18:52:02'),(11422,'english','197.210.53.172',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 21:06:22','2020-08-19 21:06:24'),(11423,'english','197.210.52.129',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 21:06:35','2020-08-19 21:06:37'),(11424,'government','197.210.52.224',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-19 21:06:58','2020-08-19 21:07:01'),(11425,'physics','197.210.47.199',80,'',NULL,'',NULL,'Lagos',NULL,'6.4541','3.3947','2020-08-19 21:14:17','2020-08-19 21:14:29'),(11426,'mathematics','197.210.47.199',40,'',NULL,'',NULL,NULL,NULL,'','','2020-08-19 21:14:54','2020-08-19 21:14:56'),(11427,'chemistry','197.210.53.101',1,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-20 07:54:49','2020-08-20 07:54:49'),(11428,'government','129.205.124.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-20 08:04:13','2020-08-20 08:04:15'),(11429,'civiledu','129.205.124.245',40,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-20 08:04:44','2020-08-20 08:04:46'),(11430,'chemistry','129.205.124.245',80,'','NG','','Lagos','Lagos',NULL,'6.4541','3.3947','2020-08-20 08:11:34','2020-08-20 08:11:50'),(11431,'english','197.210.71.233',40,'','NG','','FCT','Abuja',NULL,'9.0579','7.4951','2020-08-20 08:11:53','2020-08-20 08:11:55');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `biology` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=385 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `biology` VALUES (1,'In the egg of bird, the embryo is located in the','Chalaza','Yolk  ','albumen  ','embryo','','','d','','utme','2003',211,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:34'),(2,'One distinctive feature in the life history  of liverworts is that they exhibit','alternation of generation  ','vegetative reproduction  ','sexual reproduction','sexual reproduction','','','a','','utme','2003',203,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:30'),(3,'The umbrella-shaped fruiting body of a fully developed mushroom is the','pileus  ','Mycelium','basidium  ','Stipe','','','a','','utme','2003',195,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(4,'The similarly  among organisms belonging to the same group will be least within each','family  ','order  ','kingdom   ','species','','','c','','utme','2003',186,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:30'),(5,'Hermaphroditic reproduction can be found among the','arthropods and nematodes  ','Pisces and amphibians   ','annelids and molluscs','coelenterates and  platyghelminthes','','','d','','utme','2003',197,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(6,'An insect whose economic importance is both harmful and beneficial is the','tests fly  ','black','mosquito   ','butterfly','','','d','','utme','2003',198,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:29'),(7,'The cell component that is present in a prokaryotic cell is the','chloroplast   ','ribosome','mitochondrion   ','nuclear envelope','','','b','','utme','2003',197,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:36'),(8,'The stunted group of a leguminous plant suffering from nitrogen deficiency may be corrected by inoculating the soil with','denitrifying bacteria  ','saprophytic bacteria','Rhizobium   ','nitrosomonas','','','c','','utme','2003',209,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(9,'If water that has been coloured red is poured at the base of a wilting plant, it will appear as a red stain in the cells of','Xylem  ',' epidermis  ','phloem  ','parench','','','a','','utme','2003',206,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(10,'The dark reaction of photosynthesis involves the  ','reduction of carbon (IV) oxides to organic compounds  ','release of oxygen and the splitting of water','photolysis of water and the production of starch  ','splitting of water into hydrogen ions.','','','a','','utme','2003',195,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(11,'Organisms I, II, III and IV have surface volume ratios  of 1:2, 1:3, 1:4, 1:5, respectively. The organism that is likely to have the most complex transport system is','IV','III  ','I  ','II','','','a','','utme','2003',171,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(12,'The part of the mammalian digestive  system where absorption of nutrients takes place is the','ileum  ','colon  ','esophagus  ','duodenum','','','a','','utme','2003',185,'Admin','0000-00-00 00:00:00','2020-08-18 09:48:49'),(13,'The best method of propagating sugarcane by','seed sowing  ','layering','grafting  ','stem cuttings','','','d','','utme','2003',193,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(14,'In mammalian males, the excretory and reproductive  systems share the','ureter     ','vas deferens  ','urethra  ','Testes.','','','c','','utme','2003',200,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:34'),(15,'Metabolic production of urea is carried out in the','Urinary bladder and kidney','liver   ','pancreas  ','kidney and malphigian tubule','','','b','','utme','2003',196,'Admin','0000-00-00 00:00:00','2020-08-17 14:11:54'),(16,'The structure can be found in the','sympathetic and parasympathetic nervous systems  ','peripheral and central nervous systems','peripheral nervous system only  ','central nervous system only','','','b','','utme','2003',188,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:02'),(17,'The point marked I is referred to as  ','myelin sheath','dendrites  ','axon  ','node of Ranvier','','','d','','utme','2003',199,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(18,'Homologous pairs of chromosomes separate during','cytolysis   ','cleavage','mitosis  ','Meiosis','','','d','','utme','2003',192,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(19,'An example of a caryopsis is','guava   ','maize grain','coconut','tomato','','','b','','utme','2003',202,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(20,'The response of plants to external stimuli in a non-directional manner is known as ','tactic movement','phototropism  ','geotropism','nastic  movement','','','d','','utme','2003',202,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(21,'The most important hormone that induces the ripening of fruit is','ethylene  ','indole acetic acid','gibberellin  ','cytokinin','','','a','','utme','2003',189,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:43'),(22,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','a','','utme','2003',193,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:35'),(23,'A density dependent factor that regulates the population size of organism is','disease','sudden flood  ','drought','fire outbreak','','','c','','utme','2003',212,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:14'),(24,'One example of fossil fuel is','limestone  ','coral  ','coal  ','firewood','','','b','','utme','2003',201,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:15'),(25,'The most effective method of dealing with non-gradable pollutants by  \\\\','dumping  ','recycling  ','incineration  ','Burying','','','d','','utme','2003',187,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:16'),(26,'The correct sequence of biomes from northern to southern Nigeria is','gulnea savanna _ sudan savanna_ tropical rain forest_ sahel savanna_eetuarine  ','estuarine_tripical rainforest_guinea savanna _ sahel_ savanna  ','sahel savanna_ tropical_rain forest_ estuarine _guinea savanna','sahel savanna_sudan savanna_guinea savanna _tropical rain forest_estuarine','','','b','','utme','2003',189,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:04'),(27,'Mycorrhiza is an association  between fungi and','protozoans','roots of higher plants','bacteria','filamentous algae','','','d','','utme','2003',198,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:24'),(28,'A limiting factor in a plant population near a chemical factory is likely to be','light  ','humidity  ','wind  ','PH.','','','d','','utme','2003',220,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:24'),(29,'Soil fertility can best be conserved and renewed by the activities of','earthworms  ','man  ','rodents  ','microbes','','','b','','utme','2003',192,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:27'),(30,'The pioneer organism in ecological  succession are usually the','mosses  ','lichens  ','ferns','Algae','','','d','','utme','2003',214,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:16'),(31,'If a DNA strand has a base sequence TCA, its complementary strand must be','ATG  ','TAG','GAT  ','AGT','','','d','','utme','2003',197,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:42'),(32,'A man and his wife are both heterozygous for the sickle cell trait. The likely percentage of their offspring that will be either carriers of sicklers is','75%','50%','25%','100%','','','d','','utme','2003',237,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:24'),(33,'If the pair of alleles for baidness is given as Bb, a female carrier will be denoted by','XbY   ','XBXB  ','XBY','XBXb','','','a','','utme','2003',194,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:08'),(34,'An organ  that has been extensively used to test the chromosome theory of heredity is','Drosophila   melanogaster','Muscat domestic  ','Zea mays  ','homo sapiens','','','c','','utme','2003',200,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:34'),(35,'A feature association with the Y- chromosome in humans is  ','Drosophila melanogaster','prominent fingernails  ','facial hairs  ','enlarged breast','','','b','','utme','2003',185,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(36,'The type of reproduction that leads to variation in animal and plant population is','  budding',' sexual','vegatative','asexual','','','a','','utme','2003',202,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(37,'An insect with a mandibulate  mouth part will obtain its food by','biting and chewing   ','chewing and sucking  ','chewing  ','Sucking','','','c','','utme','2003',188,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(38,'An argument against Lamarck’s theory of evolution is that  ','disuse of  body part cannot weaken the part  ','disused part is dropped off in the offspring  ','acquired traits cannot be passed onto the offspring  ','traits cannot be acquired through constant use of body parts','','','b','','utme','2003',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:47'),(39,'Spines and shells on animals are adaptations for','camouflage  ','chemical defence','physical defence  ','mimicry','','','c','','utme','2003',197,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(40,'An example of cryptic colouration is the','mottled colours on moths that rest o lichens  ','bright colour of an insect pollinated flower','green colour of a plant  ','bright marks on a poisonous tropical frog on variegated  leaves','','','d','','utme','2003',183,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:34'),(41,'Which of the following requires the use of carbon dating to prove that evolution has occurred?  ','comparative anatomy  ','biochemical similarities   ','molecular records','fossil records','','','d','','utme','2003',200,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:28'),(42,'The inactive state exhibited by an animal during hot dry seasons is termed  ','aestivation','dormancy  ','resting','Hibernation','','','a','','utme','2003',194,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:42'),(43,'The rods in the retina of the eye are examples of','cells   ','Tissues  ','organs  ','systems','','','a','','utme','2004',199,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(44,'The absence of special food and water-conducting systems  restricts the body size in','algae, liverworts and mosses  ','liverworts, mosses and ferns  ','the bryophytes and the pteriodophytes  ','the thallophytes and the pteriodphytes','','','a','','utme','2004',176,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(45,'A plant like feature I Euglena is the','Pellicle  ','pigment sport','large vacuole   ','gullet','','','b','','utme','2004',202,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(46,'The most common characteristic of the fungal hyphae is the possession of  ','cell like compartments with one nucleus each  ','cell walls that are true are both rigid and chitinous  ','a multicellular mycelium in strate  ','cell like partitions formed  by cross walls','','','b','','utme','2004',199,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(47,'Insects are considered the most successful among the invertebrates because they','possess exoskeletons',' survive in various environmental conditions  ','have wings for flight  ',' possess the ability to change their forms','','','a','','utme','2004',193,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(48,'The larval stage of a mosquito is called','wriggler  ','Grub  ','maggot  ','Caterpillar','','','a','','utme','2004',222,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(49,'The function of the long-winged reproductive in a  termite colony is to','disperse the population  ',' feed the young   ','participate in swarming','protect the young','','','c','','utme','2004',174,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(50,'A peculiar characteristic of mammals is that they  ','have teeth  ','are warm blooded  ','haelungs','have sebaceous glands','','','d','','utme','2004',178,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(51,'In the internal structure of plants, a wide pith in the centre is common to','dicot stems and moocot stems','dicot stems and monocot roots','dicot roots and monocot roots','dicotroots and monocot stems','','','b','','utme','2004',204,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(52,'The gall bladder of mammal has a duct connected to','liver  ',' duodenum  ','small intestine','pancreas','','','b','','utme','2004',184,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(53,'Al living cells require water because it','is a medium for all metabolic reactions  ','is a medium that neutralizes acids in cells','is the main source of energy for the cells','prevents the development of disease in cells.','','','a','','utme','2004',188,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(54,'The Breakdown of fats and oils into simpler absorbable compounds is catalyzed by the group of enzymes called','lipases   ','hydrolases  ','amylases','peptidases','','','a','','utme','2004',185,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(55,'The surface of an alveolus in a mammal is well supplied with tiny blood vessels known as','arterioles  ','Venules','arteries  ','capillaries','','','d','','utme','2004',173,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(56,'The anaerobic fermentation of a glucose molecule yields.','38ATP molecules  ','2ATP molecules and alcohol','Pyruvic acid and alcohol  ','water and carbon (IV) oxide','','','b','','utme','2004',181,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(57,'The opening of the stoma is controlled by the  ','presence of a pore  ','increase in solute concentration  in the guard cells  ','presence of guard cells','decrease in solute concentration in the guard cells','','','b','','utme','2004',199,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(58,'The type of reproduction that is common to both Hydra and yeast is','conjugation','binary fission','grafting  ','Budding','','','d','','utme','2004',194,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(59,'The eggs of birds contain relatively larger quantities of yolk than those of amphibians and reptiles because','birds are generally bigger in size','embroyonic development is longer in birds  ','those of birds are fertilized internally  ','birds lay shelled eggs','','','b','','utme','2004',213,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(60,'Epigeal germination of a seed is characterized by','more rapid  elongation of the hypocotyl than the epicotyl','more rapid elongation of the epicotyl than the hypocotyl  ','equal growth rate of both the hypocotyl and epicotyl  ','lack of growth of the hypocotyl','','','a','','utme','2004',192,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(61,'Nervous control differs from hormonal control in that the former  ','involves only chemical  transmission','is a slower process','produces short term changes  ','has no specific pathway','','','c','','utme','2004',190,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(62,'If a nursing mother is not  producing enough milk, her hormonal system is probably deficient in','prollactine  ','estosterone','thyroxin','insulin','','','a','','utme','2004',179,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(63,'The two key cations involved in the action potential of nervous transmissions are ','Na+ and Fe2+',' Mg2+ and K+','Na+ and K+  ','Fe2+ and Mg 2+','','','c','','utme','2004',199,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(64,'A caterpillar and an aphid living in different parts of the same plant can be said to',' occupy the same ecological riches   ',' Be in different habitats  ','occupy different ecological riches  ','be in  similar micro habitats','','','c','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(65,'Use the table below to answer questions 33 and 34\\nZone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nHigh relative humidity will be expected in zones \\n','I and II','I and IV  ','II and III  ','II and IV','','','c','','utme','2004',186,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(66,'Zone  © (mm)\\nI 45 300\\nII 32 2000\\nIII 30 2200\\nIV 15 800\\n\\nWhich of the zones is likely to be a desert\\n','I  ','II  ','III  ','IV','','','a','','utme','2004',188,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(67,'The association between termites and the cellulose digesting protozoans in heir guts is an example of  ','saprophytism  ','mutualism','parasitism  ','commensalism','','','b','','utme','2004',169,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(68,'The progressive loss of energy at each level in a food chain  leads to','an increase in biomass at each successive level  ','a decrease in biomass at each successive level  ','an increase in the number of organisms at each successive level','an increase in the total weight of living matter at each successive level.','','','b','','utme','2004',192,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(69,'One adaptation of reptiles of water loss is the presence of','Keratinous scales  ','claws on Limbs  ','Long tails   ','long stickly tongues','','','a','','utme','2004',193,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(70,'A state in Nigeria that is most susceptible to desert encroachment is','Kwara  ','Taraba  ','Kaduna','Katsina','','','d','','utme','2004',198,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(71,'The Scarcity of food causes a sudden decrease in population size by','decrease the reproductive rate','bringing about immigration','raising the mortality rate','minimizing the rate of competition','','','a','','utme','2004',181,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(72,'The soil type that will be most difficult to plough in a wet season is one that is  ','loamy   ','clayey  ','sandy  ','silty','','','b','','utme','2004',185,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(73,'A farm practice that results in he loss of soil fertility is','mixed farming','bush fallowing','shifting cultivation  ','continuous cropping','','','d','','utme','2004',197,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(74,'Paternity disputes can most accurately be resolved though the use of','Gringer printing   ','blood group typing   ','DNA analysis   ','tongue rolling','','','c','','utme','2004',182,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(75,'In a mendelian cross of red and white varieties of the four o’clock pant, the F1 generation expresses incomplete dominance by having flowers which are','white  ','red  ','pink  ','multi-coloured','','','c','','utme','2004',203,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(76,'Identical twins inherit their genes from','Different eggs and sperms','The same egg and sperm  ','two egg and a sperm  ','one egg and two sperms','','','b','','utme','2004',197,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(77,'Sex –linked genes are located on','Y-chromostome  ','X and Y chromosomes  ','Homologens chromosomes  ','X-Chromosome','','','d','','utme','2004',199,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(78,'Which of the following is an example of intraspecific competition?','a lizard and an ant eater chasing an insect  ','a worker termite and a solider in a limited space  ','a hawk and an eagle targeting the same chicken','yam and potato shoots growing out through the same window','','','b','','utme','2004',202,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(79,'Plants survive hot dry condition by  ','storing water in large parenchyma cells','producing numerous leaves  ','having numerous stomata  ','having every green leaves','','','a','','utme','2004',177,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(80,'Rodents gnaw on food with their','molar teeth  ','strong jaws   ','flat-ridged teeth  ','chisel like front teeth','','','d','','utme','2004',187,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(81,'The sports and stripes of the leopard and tiger and example of','cryptic colouration  ','warning colouration  ','Disruptive colouration  ','counter shading','','','c','','utme','2004',173,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(82,'An evidence of the relationship between living organisms and their extinct relatives can best be obtained from','Embryology  ','Comparative anatomy  ','comparative physiology','all of the above','','','d','','utme','2004',223,'Admin','0000-00-00 00:00:00','2020-08-19 08:46:07'),(83,'The organelle common to both plant and animal cells is the','centriole','plasmalemma  ','cell wall','chloroplast','','','c','','utme','2005',188,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(84,'Which of the following is likely to have a higher concentration of mitochondria? ',' Sperm cell',' white blood cell  ',' Egg cell','red blood cell','','','a','','utme','2005',193,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:04'),(85,'The hyphal wall of fungi is rigid  owing to the presence of','cell wall','lignin  ','cellulose  ','chitia','','','d','','utme','2005',195,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:15'),(86,'Angiosperms and gymnosperms belong to the class','schizophyta  ','spermatophyte  ','pteridophyta  ','bryophta','','','b','','utme','2005',181,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:03'),(87,'An example of a adially symmetrical organism is','planaria  ','Hydra   ','tapeworm  ','roundworm','','','b','','utme','2005',209,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:30'),(88,'the leech and the earthworm belong to the','molluscs  ','crustaceans','arachnids  ','annelids','','','d','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:01'),(89,'I. Rettus rattus   II. Agama agama  II Bufo regularis  IV. Tilapia Zill. The order of evolutionary advancement  of the above','I, II and III , IV  ','I, IV, III, II  ','II, III, IV, I','IV, III, II, I','','','d','','utme','2005',212,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(90,'The stage in the life history  of a moth responsible for the destruction of agricultural crops is the','nymph','imago','pupa   ','caterpillar','','','d','','utme','2005',203,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:21'),(91,'The blackly is a vector of','material','trypanosomiasis','onchocerciasis','yellow fever','','','c','','utme','2005',222,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(92,'The transition from amphibians to mammals involves the limbs becoming arranged to support the weight  more effectively requiring modifications in the','collar bones and coccyx','pectoral and pelvic girdles','scapulae and clavicles   ','vertebrae and sternum','','','b','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:34'),(93,'The main function of the caudal fin in tilapia  is to  ','propel it forward in water  ','seer it while changing directions  ','balance it in eater','enable it to float in water','','','a','','utme','2005',208,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:08'),(94,'In the root vascular system, the stele is directly surrounding by the','pericycle  ','cortex','endodermis  ','Parenchyma','','','c','','utme','2005',188,'Admin','0000-00-00 00:00:00','2020-08-18 09:48:56'),(95,'The only vein that caries pure oxygenated blood is the  ','renal vein  ','Pulmonary vein  ','hepatic vein','sciatic vein','','','b','','utme','2005',194,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:30'),(96,'The function of the fluid filled pericardium is to','reduce the friction caused by the pumping movements of the heart   ','supply the heart with oxygen and nutrients  ','prevent disease organisms from attacking the heart  ','reduce the  intensity of the pumping action of the heart','','','a','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:24'),(97,'The mammalian lung is made air light by the','pleural cavity  ','mucous membrane','pleural membrane  ','diaphragm','','','a','','utme','2005',191,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:36'),(98,'A test tube containing yeast in glucose solution was suspended in a converted conical flask containing alkaline pyrogallol. The  bubbles of carbon (IV) oxide produced indicate that the yeast cells are','respiring in the absence of oxygen  ','librating oxygen  on their own','living and consuming oxygen  ','being killed by the alcohol produced','','','a','','utme','2005',214,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(99,'The urinary tubules of the kidney function through  ','osmosis and diffusion  ','active transport and osmosis  ','ultra filtration and selective re-absorption','active transport and cytoplasmic streaming  ','','','c','','utme','2005',203,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:04'),(100,'Excess water  in plants is excreted as water vapour and droplets respectively through  ','respiration and guttation  ','transpiration and guttation','photosynthesis and guttation','guttation and condensation','','','b','','utme','2005',164,'Admin','0000-00-00 00:00:00','2020-08-11 15:50:01'),(101,'When bacteria swim from cold to warm regions, this is known as','negative chemotaxis  ','positive thermotaxis  ','positive phototaxis','negative phototaxis','','','b','','utme','2005',210,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:24'),(102,'Hydrostatic skeleton is the type of supporting system found in','Mammals  ','reptiles  ','oligochaetes   ','arthropods','','','c','','utme','2005',213,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:10'),(103,'Which of the following is a homeostatic response in humans?','withdrawing the hand from a hot object','the mouth getting watery when food is lighted  ','yawning owing to tiredness  ','shivering in a cold environment','','','d','','utme','2005',196,'Admin','0000-00-00 00:00:00','2020-08-18 17:45:36'),(104,'The optimal temperature  for breeding cockroaches is','15oC','19oC  ','24oC  ','33oC','','','c','','utme','2005',203,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(105,'At which temperature will cockroaches not survive after 10 days?   ','15oC','19oC  ','24oC  ','33oC','','','a','','utme','2005',198,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:59'),(106,'The mambilla plateau is a unique Nigeria biome located in','Plateau State  ','Borno state  ','Taraba state  ','Benue state','','','a','','utme','2005',183,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(107,'In Nigeria, the Guinea Savanna belt borders the','mangrove swamps and the Sahel  savanna  ','rainforests and the Sudan savanna  ','deserts and the Sudan savanna  ','rainforests and the desert.','','','b','','utme','2005',196,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(108,'The population density of Tridax in an abandoned square farmland of side 200m was found to be 5 plants per m2. The population size of the plant on the farm is','40','4000','40000','200000','','','d','','utme','2005',200,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(109,'Secondary succession is much faster then primary succession because','pioneer colonizers are more in number  ','soil is already present  ','Secondary series require less nutrients  ','species competition is increased','','','b','','utme','2005',187,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(110,'Which of the following is used to test for the presence of lime in a soil sample? ','H2SO4(aq)  ','NaOH(aq)','Hcl(aq)  ','HNO3(aq)','','','c','','utme','2005',186,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(111,'The importance of practicing crop rotation  in agriculture is to','maintain soil fertility','improve the nutritional value of crops   ','control soil erosion   ','ensure the growth of crops.','','','a','','utme','2005',197,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:02'),(112,'The recycling method of solid waste disposal is unsuitable for','organic matter  ','glass  ','plastics','metal scraps','','','a','','utme','2005',192,'Admin','0000-00-00 00:00:00','2020-08-18 09:48:56'),(113,'A non-renewable alternative source of energy is','wind generators  ','solar panels  ','nuclear energy','hydroelectric power','','','c','','utme','2005',188,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:14'),(114,'Which of the following gis the best explanation for a child who is phenol-typically short and born of two tall parents?','The father possesses a gene for shortness  ','The mother possesses a gene for shortness  ','Nature makes the child short  ','Both parents posses genes for shortness.','','','d','','utme','2005',195,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(115,'A yellow maize is crossed with the a white maize and the first filial generation produce yellow maize only. The white trait is said to exhibit  ','dominance',' recessiveness','codominance  ','Incomplete  dominance','','','b','','utme','2005',174,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:24'),(116,'The association in which one member benefits and the other is relatively unaffected by the interaction is termed  ','symbiosis','parasitism','commensalism  ','Mutualism','','','c','','utme','2005',191,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(117,'When a peacock displays its colourful  feathers, it is  ','ready for a fight  ','protecting itself from predators  ','protecting its mate from predator','courting a female','','','d','','utme','2005',192,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(118,'When an animal has a dark coloured dorsal surface and light coloured ventral surface, this is an adaptation called  ','concealment coloration  ','countershading','colour blending  ','disruptive coloration','','','b','','utme','2005',205,'Admin','0000-00-00 00:00:00','2020-08-18 08:31:01'),(119,'The only caste in the termite colony whose members can feed themselves are the  ','reproductive',' workers  ','nymhs  ','soldiers','','','b','','utme','2005',178,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:35'),(120,'An evidence of a common ancestry for fishes, amphibians, reptiles, birds and mammals is the','possession of wings by bird and bats','cold-bloodedness of fishes, amphibians and reptiles  ','presence of gill clefts in vertebrate embryos','','','','c','','utme','2005',210,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(121,'Mendel, s second law of inheritance states that','alleles separate predictably  ','alleles segregate  independently','chromosomes segregate independently  ','alleles combine randomly','','','b','','utme','2006',185,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:23'),(122,'One advantage of variation in a species population  is that individuals','easily reach their reproduction age','with favoured trait become dominant','are better adapted  to changes','are easily  recognized by mates','','','c','','utme','2006',192,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(123,'The two normal types of sex chromosomes are','xxy and xyy','xx and xyy  ','xx and xy  ','xy and xxy','','','c','','utme','2006',183,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(124,'Hassan and Hussain are identical twins but Hasan grows taller and fatter than Hussain. This is probably  because  ','Hussain in endowed with genes for shortness and thinness  ','They are raised in different environments','they have dissimilar genotypes  ','Hassan inherits genes for tallness and fatness from the father.','','','b','','utme','2006',181,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(125,'Population that doubles in size to constant intervals is an indication of','sigmoid   ','population explosion  ','rapid growth','  exponential growth','','','d','','utme','2006',183,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:03'),(126,'The causative reagent of typhoid fever is  ','Entamoeba','Salmonella','Shigella  ','Escherichia','','','b','','utme','2006',200,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(127,'The  soil type that contains nutrients which are not readily available for plants is ',' sandy  ','Alluvial  ','loamy  ','clayey  ','','','d','','utme','2006',189,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:09'),(128,'Grasses recover quickly from bush fires in the savanna  because of their  ','succulent stems   ','rapid growth  ','fibrous roots  ','perennating organs','','','d','','utme','2006',201,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:43'),(129,'The main purpose of establishing shelter belts in the sahel region to  ','break the harmattan wind  ','beautify the region  ',' check desert encroachment  ','provide wood fuel','','','a','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:16'),(130,'Climax communities in a biotic succession are usually characterized by','a constant change in the appearance of the commodities  ','a stable composition of plant and animal species  ','rapid changes in the plant and animal species  ','different species that are constantly changing','','','b','','utme','2006',164,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:42'),(131,'The product of excretion common to the mammalian kidney lung and skin is','Urea  ','carbon (IV)oxides  ','mineral salt','water','','','d','','utme','2006',180,'Admin','0000-00-00 00:00:00','2020-08-18 09:48:55'),(132,'In rabbits, the chamber of the heart that receives oxygenated blood from the lungs is the  ','left auricle','right auricle','left ventricle','right ventricle','','','a','','utme','2006',180,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:23'),(133,'One basic similarly between nervous and endocrine system is that both  ','produce precise and short –lived  effects  ','Involve the use of chemical substances  ','transmit very fast impulses  ','produce widespread effects.','','','b','','utme','2006',188,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(134,'Night blindness result from a deficiency of  ','Vitamin E  ','Vitamin K  ','Vitamin C  ','Vitamin A','','','d','','utme','2006',178,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:23'),(135,'Water is necessary for a germinating seed because  it','wets the soil for proper germination  ','protects the seed from desiccation  ','activates the enzymes','promotes aerobic respiration  ','','','c','','utme','2006',184,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:35'),(136,'An increase  in air pressure in the lings is due to the','increase in the volume of the thoracic cavity  ','relaxation of the diaphragm','upward movement of the ribs','contraction intercostal muscles','','','b','','utme','2006',206,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:02'),(137,'In the transverse section of a dicot stem, the region lying between the endodermis and the vascular bundle is the','parenchyma  ','Pholem','phypodermis  ','pericyle','','','d','','utme','2006',176,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:09'),(138,'A unique characteristic of the cervical vertebrae  is the present  of','long transverse processes  ','zygaphphysis   ','vertebraterial canal  ','large centrum','','','c','','utme','2006',188,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(139,'Which of following produces both hormones and enzymes?','Gall blader  ','Lieum  ','Pancreas  ','kidney','','','c','','utme','2006',191,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(140,'The formation of water in tissue  respiration  results from the  ','combination of water  molecules','breakdown of water molecules  ','reduction of carbon (IV) oxide','reduction of oxygen by hydrogen','','','d','','utme','2006',174,'Admin','0000-00-00 00:00:00','2020-08-18 08:31:01'),(141,'The organ situated in the pericardial cavity of a mammal is the','stomach  ','Liver  ','Liver','spleen','','','c','','utme','2006',160,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:23'),(142,'Mammals are  capable  of producing hypertonic urine mainly because of re-absorption in the  ','urethra  ','loop of henle  ','ureater  ','Bowman’s capsule','','','b','','utme','2006',204,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(143,'The mammalian vain which starts with and ends in a capillary network is the','hepatic portal vein','pulmonary vein  ','renal vein','measenteric vein','','','a','','utme','2006',184,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:23'),(144,'The part of the mammalian skin involved in temperature regulation is the','sebaceous gland  ','sweat gland','hair follicle  ','hair pailla','','','b','','utme','2006',204,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:14'),(145,'The variation illustrated is','physiological   ','discontinuous  ','morphological   ',' biochemical','','','c','','utme','2006',178,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:30'),(146,'The change in the length of the necks of the giraffes shown was brought about by  ','predation','symbiosis','natural selection','geographical isolation','','','c','','utme','2006',185,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(147,'Which of the following vertebrates has the most simple structured heart?','fish  ','Mammal','Amphibian  ','Reptile','','','a','','utme','2006',175,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(148,'The role of the Golgi com plex in a eukaryotic cell is to  ','transport genetic material out of the cell','transport organic materials in and out of the cell','provide attachment for ribosomal granules','conduct ions and out of the cell','','','b','','utme','2006',191,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(149,'The dominant phase in the life cycle of a bryophyte is the','prothallus  ','Gametangium  ','saprophyte   ','gametophyte','','','d','','utme','2006',181,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(150,'The evidence that supports the advancement of  fern over mosses is derived from ','biochemical similarities  ','','physiological records  ','molecular records','','','b','','utme','2006',198,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:44'),(151,'A characteristic that best exemplifies the evolutionary advancement of mammals over other  vertebrates in the  ','terrestrial mode of life  ','possession  of paired limbs  ','a false foot  ','radial symmetry','','','c','','utme','2006',177,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:03'),(152,'An organism which exhibits extracelluar digestion is  ','Paramecium','Rhizopus  ','Spirogyra  ','Amoeba  ','','','b','','utme','2006',188,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(153,'The chromosomes of members of the kingdom  monera are within the','nucleus  ',' nucleolus  ',' cytoplasm   ',' Nucleoplasm','','','c','','utme','2007',196,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:14'),(154,'A water medium is necessary for fertilization in','angisperms','ferns  ','fungi  ','conifers','','','b','','utme','2007',220,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(155,'The process of shedding the exoskeleton of an arthropod is known as','instar formation','metamorphosis  ','tagmosis  ','Ecdysis','','','d','','utme','2007',212,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:36'),(156,'The part labeled IV is responsible for','ingestion   ','locomotion  ',' osmoregualtion  ','respiration','','','c','','utme','2007',188,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:29'),(157,'Which of the following is common to the mosquito, housefly and blackfly?  ','Their  immature stages are aquatic   ','They undergo complete metamorphosis  ','Their adults have two pairs of wings   ','They are parasites of man','','','b','','utme','2007',192,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:04'),(158,'Which of the following has the most primitive respiratory system?','Fish','Snail  ','Mouse','insect','','','b','','utme','2007',178,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:01'),(159,'Moncot stems differ from dioct  stems in that monocots have','fewer vascular bundies',' no cambium  ','phloem with parenchyma   ',' no pith','','','b','','utme','2007',187,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(160,'In mammals , the  organ directly on top of the kidney is the','prostate gland  ',' pancrease   ','thyroid gland  ',' adrenal gland','','','d','','utme','2007',173,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:24'),(161,'The photosynthetic pigment is include  ','melanin and haemoglobin  ',' chlorophyll and carotenoids  ',' carotenoids and haemoglobin  ',' chloroplasts and cytochromes','','','b','','utme','2007',182,'Admin','0000-00-00 00:00:00','2020-08-18 08:31:00'),(162,'The pancreas secretes enzymes for the digestion of  ','fats, vitamins and cellulose',' fats, carbohydrates and vitamins  ','proteins, celluclose and minerals  ','fats, proteins and carbohydrates','','','d','','utme','2007',180,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(163,'Which of the following uses diffusion as the principal method of gaseous exchange?','Rate  ','lizard','Earthworm  ','Grasshopper','','','c','','utme','2007',197,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(164,'The opening  and closing of the stoma are regulated by','osmosis   ','diffusion  ','transpiration  ','respiration','','','a','','utme','2007',185,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(165,'The waste product of plants used in the conversion of hide to leather is','resin  ','tannin  ','gum  ','Alkaloid','','','b','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-08-17 23:02:49'),(166,'The correct sequence of the movement of urea during urine formation is','Convoluted tubule_ glomerulus_Henle’s loop_ Bowman’s capsule_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tuble_ Henle’s loop_collecting tubule','convoluted tubule_ Bowman’s capsule_Henle’s loop _ glomerulus_collecting tubule','Glomerulus_Bowman’s capsule_convoluted tubule_ Henle’s loop_convoluted tubule_collecting tubule','','','d','','utme','2007',178,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(167,'Pineapple is an example of','a composite fruit  ','a simple fruit','an aggregate fruit','a dehiscent fruit','','','a','','utme','2007',172,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:28'),(168,'Stunted growth and poor root development are a result of as deficiency in  ','calcium  ','sulphur  ','iron  ','phosphorous','','','a','','utme','2007',187,'Admin','0000-00-00 00:00:00','2020-08-17 23:02:49'),(169,'The highest level of ecological organization is the','niche','biosphere  ','population  ','Ecosystem','','','d','','utme','2007',190,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:14'),(170,'A biotic factor which affects the distribution and abundance of organisms in a terrestrial  habitat is','competition  ','temperature  ','light  ','pH','','','a','','utme','2007',177,'Admin','0000-00-00 00:00:00','2020-08-18 09:48:56'),(171,'Which of the following is an example of parasitism?  ','Mistletoe growing on an orange tree','Fungi growing on a dead  tree branch  ','cattle egrets taking ticks from the body of cattle','a squirrel living in an abandoned nest of a bird','','','a','','utme','2007',173,'Admin','0000-00-00 00:00:00','2020-08-17 23:02:49'),(172,'The organs that will be most useful  to giant  African rats in finding their way in underground habitats are the  ','Eyes   ','vibrissae','tails  ','Nostrils','','','b','','utme','2007',176,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(173,'One adaptation  shown by hydrophytes in fresh water habitats is the','poor  development of roots and xylem tissues  ','well developed roots and supporting system  ','leaves reduced to spines  ','waxy  cuticle on shoot surface','','','a','','utme','2007',175,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(174,'The mangrove swamp in Nigeria is restricted to the','Guinea savanna','Tropical rainforest','Sudan savanna   ','Sahel savanna','','','b','','utme','2007',181,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(175,'In which of the following Nigerian states can montane vegetation be found?','Plateau','Taraba  ','Enugu  ','Bauchi','','','a','','utme','2007',171,'Admin','0000-00-00 00:00:00','2020-08-17 23:02:48'),(176,'The increasing order of the particle size in the following soil types  is','clay_silt_sand_gravel  ','Silt_clay-sand_gravel  ','clay_sand_slit_gravel','silt_sand_clay gravel','','','a','','utme','2007',206,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(177,'A crucible  of 5gm weighted 10gm after filling with fresh soil. It is hen healed in an oven at 100oC for 1 hour. After cooling in a desiccators, the  weight was 8gm. The percentage of water in the soil is  ','20%','40%','6%','80%','','','b','','utme','2007',202,'Admin','0000-00-00 00:00:00','2020-08-17 23:02:48'),(178,'The causative agent of bird flu is a','virus  ','bacterium  ','fungus  ','protozoan   ','','','a','','utme','2007',176,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(179,'An accurate identification  of a rapist can be carried out by conducting a','blood group test  ','behavioural traits test  ','DNA analysis   ','RNA analysis','','','c','','utme','2007',204,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(180,'Which of  the following is true of cloning?','it involves the asexual multiplication of the tissues of the original organisms  ',' the clone is similar to but not exactly like the original organism   ','Only one cell of the original organism is needed to initiate the process','it is welcomed as an ethically  and morally sound science','','','c','','utme','2007',192,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:30'),(181,'An example of a sex-linked  trait is the','ability to roll the tongue','possession of facial hair in adult humans  ','ability to grow long hair in females  ','colour of the skin in human','','','c','','utme','2007',189,'Admin','0000-00-00 00:00:00','2020-08-17 23:02:48'),(182,'Which of the following factors can bring about competition in a population? ',' Drought   ','Mortality','Dispersion   ','Emigration','','','d','','utme','2007',174,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(183,'In lizards, the lowering  of the gular fold is used to','attract mates  ','frighten enemies','catch insects   ','defend their territory','','','b','','utme','2007',196,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:03'),(184,'The type of protective adaptation exhibited by the animals is  ','flash colouration   ','disruptive  colouration','warming colouration','countershading  colouration','','','d','','utme','2007',182,'Admin','0000-00-00 00:00:00','2020-08-17 23:02:48'),(185,'An example of a fish that aestivates is','lung fish   ','shark','cat fish','croaker','','','a','','utme','2007',190,'Admin','0000-00-00 00:00:00','2020-08-17 23:02:49'),(186,'The theory  which supports the view that the large muscles developed by an athlete will be passed on to the offspring was proposed by','Darwin  ','Lamarck   ','Pasteur   ','Mendel.','','','b','','utme','2007',163,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:08'),(187,'In terms of the number of individuals, which of the following  taxa is most inclusive?','order','family','class  ','species','','','c','','utme','2008',184,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:29'),(188,'A characteristic that can possibly be shared by both living  and non-living organisms is  ','locomotion  ','irritability','increase in biomass','increase in size','','','d','','utme','2008',192,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(189,'The cell of an onion bulb can be differentiated from a cheek cell by the presence of  ','plasmalemma  ',' chloroplast','cell wall  ',' nucleus','','','c','','utme','2008',184,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(190,'In plants, the structure that performs  a similar  function with the testis is in mammals  is the   ','stigma','filament  ','anther','replace','','','c','','utme','2008',196,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:10'),(191,'The bacteria type that are arranged in chains are the','Staphylococci  ','clostridia','streptococci','Bacilli','','','c','','utme','2008',186,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:30'),(192,'The most abundant group of organism in the animal kingdom is','Mammalian','Aves  ','Annelida  ','Insecta','','','d','','utme','2008',164,'Admin','0000-00-00 00:00:00','2020-08-18 08:31:02'),(193,'Radial symmetry is a feature common to the  ','platyhelminthes','nematodes  ','coelentrates','arthropods','','','c','','utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(194,'Which of the following  is used mainly for balancing in fish?','The causal fin  ','the pectoral fin','the anal fin  ','The dorsal fin','','','d','','utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:34'),(195,'The beak of a duck is structurally adapted  for','scooping and sieving food  ','catching and gasping food  ','picking and cracking food  ','boring and sucking food  ','','','a','','utme','2008',177,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(196,'The most important characteristic that makes reptiles to conquer terrestrial habitats is the possession of','long tail','scaly skin','sharp claw','amniotic egg','','','b','','utme','2008',188,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:04'),(197,'Inn a dictyledonous stem, the zone between the epidermis and the pericycle is the','cortex  ','stele','xylem','phloem','','','a','','utme','2008',190,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:03'),(198,'The order of passage of food in the digestive system is','ileum caecum large intestine rectum','ileum colon caecum rectum','large intestine ileum caecum rectum','colon caeum ileum rectum  ','','','b','','utme','2008',179,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(199,'Insectivorous plants traps and kill their prey to derive  ','phosphorous  ','calcium  ','nitrogen','Zinc','','','c','','utme','2008',176,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:24'),(200,'In the alimentary system of a bird, the function  of teeth is carried out by the','crop  ','Beak  ','Gizzard','tongue','','','c','','utme','2008',165,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(201,'What will happen when two equal  sized pieces of unripe pawpaw labeled X and Y are dropped into equal volumes of concentrated salt solution and distilled water respectively?  ','Pawpaw X will become  turgid  ','Both  will increase in size','pawpaw Y will become turgid','Both will decrease in size','','','c','','utme','2008',178,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:04'),(202,'Exhaled air differs from inhaled air in that it  ','contains less amount of carbon (IV) oxide  ','is usually lower in temperature','often has more oxygen  ','usually has more water vapour','','','d','','utme','2008',167,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(203,'In the mammalian kidney,  the Bowman’s  capsule is located in the','ureter','Pelvis  ','cortex','medulla  ','','','d','','utme','2008',201,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:31'),(204,'A plant  parenchyma cell also acts as a supporting tissue when it','becomes faccid  ','contains cystals  ','becomes turgid','is pigmented','','','c','','utme','2008',182,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(205,'During ovulation, an egg is released from the','corpus luteum  ','ovarian funnel  ','Graafian follicle','fallopian tube','','','c','','utme','2008',183,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:29'),(206,'The transmission of impulses along a nerve fibre is characterized by','hormonal and temperature changes   ','electrical and ionic changes  ','hormonal changes  ','electrostatic changes','','','b','','utme','2008',169,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(207,'The major consequences of bush burning in an ecosystem is  ','the loss of water absorbing ability of the soil','the loss of biological diversity','a decrease in animal population','an increase in soil fertility','','','b','','utme','2008',184,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(208,'Which of the following associations is an example of mutalism?','hydra viridis and zoochlorellae','human and lice   ','Shark and Remora fish  ','Bread and Rhizopus stolonifer  ','','','a','','utme','2008',191,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(209,'In a typical freshwater habitat, the edge of the stream or pond constitutes the','tidal zone  ','interidal zone  ','littoral zone  ','euphotic zone','','','c','','utme','2008',226,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:23'),(210,'The main ecological  problem facing interidal organisms is','dessciation','floatation','salinity','humidity','','','a','','utme','2008',192,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:30'),(211,'Stomata  of some plants are sunken and protected by hairs. These are features of ','mesophytes','epiphtes  ','hydrophytes  ','Xerophytes','','','d','','utme','2008',202,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:28'),(212,'An ecological factor that will have the most  limiting effect on the abundance of phytoplankton in a turbid pond is   ','pH  ','oxygen','light  ','temperature','','','c','','utme','2008',203,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(213,'In an experiment to determine the percentage of air in a soil  sample, the  Following readings were recorded:\\nVolume of water inn a measuring cylinder = 500cm3  \\nVolume of soil added to water= 350cm2\\nVolume of water andn soil after stirring= 800cm2\\nThe percentage of air in the soil sample is \\n','6.25%','10. 36%    ','14.28%','43.28%','','','c','','utme','2008',183,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(214,'A boy who is fond of swimming in a pond finds himself passing urine with traces of blood. He is likely to have contracted  ','Schistosomiasis','onchoerciasis','poliomyelitis  ','salmonellosis','','','a','','utme','2008',189,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(215,'The easiest way to establish  the level of pollution in a local stream is to measure the level of','oxygen','carbon(IV) oxide','ammonia','alkalinity','','','a','','utme','2008',203,'Admin','0000-00-00 00:00:00','2020-08-18 09:48:50'),(216,'Which of the following is a major case of variation among  organisms?  ','inbreeding  ','backcrossing   ','sexual reproduction','Gene dominance','','','c','','utme','2008',174,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:29'),(217,'The Rhesus factor of blood was first identified in a category of  ','monkeys   ','human females','human males  ','chimpanzees','','','a','','utme','2008',200,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(218,'Genetically modified food products have not become  universally accepted because','They are not tasty as others produced  by conventional means','they are usually costlier than others produced by conventional means','their  efforts on human consumers is not yet fully understood   ','the technology can be applied only  in developed  countries','','','c','','utme','2008',186,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(219,'A major  adaptive feature of endo-parasites is the   ','loss of the organ of movement  ','presence of claws  ','loss of the central nervous system  ','presence of piercing mouthparts','','','a','','utme','2008',196,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(220,'The ability of a chameleon to change its colour is an adaptive feature for  ','attraction','defence  ','display','attack     ','','','b','','utme','2008',182,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(221,'Which of the following is the most advanced evolutionary development in plants?  (a) possession of unicellular structures  ','possession of unicellular structures  ','Development of flowers','dispersal of spores  ','Development of secondary thickening','','','b','','utme','2008',184,'Admin','0000-00-00 00:00:00','2020-08-16 12:52:16'),(222,'The natural process that produces adaptive evolutionary  changes is  ','mutation  ','gene flow  ','genetic drift','natural selection','','','d','','utme','2008',192,'Admin','0000-00-00 00:00:00','2020-08-18 08:31:01'),(223,'What is the level of organization  of an onion bulb?','tissue  ','organ','systemic','organism','','','b','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(224,'A characteristic exhibited by all living organism is  ','sexual reproduction   ','aerobic respiration  ','the ability to move from one place to another  ','the ability to remove unwanted substances.','','','d','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:03'),(225,'In a cell, the genes are carried by  ','nuclear membranes','chromatin threads  ','lysosomes','mitochondria','','','b','','utme','2009',196,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:31'),(226,'Alternation of a sexual and sexual modes of reproduction is found in','blue-green algae  ',' Euglena','fern',' maize','','','c','','utme','2009',193,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(227,'The first terrestrial vertebratese volved from','pisces  ','Reptilia  ','Amphibia  ','Mammalia','','','c','','utme','2009',196,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(228,'In plants, the structures that play roles similar to the arteries and veins of animals are the  ','xylem and phloem','root hairs and xylem  ','lenticels and phloem  ','roots and stems','','','a','','utme','2009',193,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:36'),(229,'A blue-green alga is not a protophytes because','it is aquatic  ','its cells are prokaryotic','it cannot move','it is not a green plant','','','b','','utme','2009',247,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(230,'The feature that makes locomotion in water easy for fish is the','scaly body','slimy body  ','steam lined body','lateral line','','','c','','utme','2009',189,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(231,'Bird toes suitable for digging have claws that are  ','blunt','curved  ','hooked','sharp','','','a','','utme','2009',204,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(232,'Chewing the cud is an adaptation peculiar to','herbivores','omnivores  ','rodents   ','ruminants','','','d','','utme','2009',212,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(233,'Which of the following is an example of a carnivorous plant?','Hydra','Bladderwort','Yeast','Spirogyra','','','b','','utme','2009',207,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:35'),(234,'The part of the alimentary system of a bird where food is  ground into small particles is the','cloaca  ','stomach  ','crop  ','gizzard','','','d','','utme','2009',171,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(235,'Which of the following describes the sequence of blood flow fro the heart to a tissue?','Heart_artery_arteriole _ tissue','Heart_vein_venule _tissue','Heart _ venule _vein_tissue','Heart _arteriole _artery_tissue','','','a','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:02'),(236,'The enzymes of the glycolytic pathway are located in  the','mitochondria  ','gastric juice','plasma','cytoplasm','','','d','','utme','2009',171,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:34'),(237,'In insects, the structure that performs  the same function as the kidney in man is the','nephridium','flame cell  ','malphigiann tubule','trachea','','','c','','utme','2009',212,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:30'),(238,'The axial  skeleton is found in the','skull , ribs, vertebral column and breast bone   ','skull humerus, vertebral column and ribs  ',' breastbone, clavicle, rids and vertebral column',' femur, sternum, ulnae and skull','','','a','','utme','2009',194,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:08'),(239,'The reproductive  system of a male mammal is made up of  ','claspers, prostrate, gland, sperm duct and vas deferns','testis, prostrate gland, sperm duct and vas deferns  ','oviduct , urethra, testis and sperm  duct','testis, uterus, prostrate gland and sperm duct.','','','b','','utme','2009',188,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:03'),(240,'In a bean seed, absorption of water at the beginning  of germination is through the  ','hilum','micropyle  ','testa  ','plumule','','','b','','utme','2009',184,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(241,'The most important ecological factor in a terrestrial environment is','rainfall',' humidity','wind',' soil','','','a','','utme','2009',203,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(242,'The association between bacteria residing I the caecum and the ruminant is  ','parasitism  ','predation  ','saprophytism  ','mutalism','','','d','','utme','2009',198,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(243,'A marine protozoan is likely to have no contractile acuole  mainly because the cytoplasm is  ','isotonic to sea water','hypotonic to sea water','hypertonic to sea water','impervious to seas water','','','a','','utme','2009',199,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(244,'In freshwater  marshes and swamps, the most important abiotic factor that organisms have to','nature  of substratum  ','high salinity  ','high temperature  ','low pH','','','a','','utme','2009',199,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(245,'Which of the following biomass could be characterized by very low rainfall, cold nights, hardays and fast blooming plants?  ','Northern Guinea savanna','southern Guinea savanna  ','Tropical desert',' montane forest','','','b','','utme','2009',180,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:29'),(246,'The optimum temperature  for the growth of the organism is','25oC','50oC','75oC   ','100oC','','','b','','utme','2009',199,'Admin','0000-00-00 00:00:00','2020-08-17 14:11:54'),(247,'Mass of a crucible = 10g\\n Mass of a crucible and soil before heating = -29g.\\nMass of a crucible and sol after heating = 18g. From the information above, determine the percentage of wter in the given soil sample?  \\n','20%','25%','40%','50%','','','d','','utme','2009',173,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(248,'I Onchocerciasis  II Schistosomiasis  \\nIII Salmonellosis  IV Meningitis \\nWhich of the diseases listed above are associated with water? \\n','I and II only  ','II, III and IV  ','I, II and III  ','II and IV','','','c','','utme','2009',210,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(249,'The major cause of global warming is the','Burning of fossil fuel','construction of dams','use of electricity  ','exploration of space','','','a','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:23'),(250,'The uniqueness of an individual organism in a population is accounted for by','evolution','variation  ','adaptation','mutation','','','b','','utme','2009',202,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:35'),(251,'A phenotypic character with intermediate forms that can be graded from one extreme to the other is referred to as','discontinous variation   ','continuous variation','a mutant','a genome','','','b','','utme','2009',191,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:04'),(252,'A farmer’s assumption that the seed from a good harvest will produce a good yield is explained by the theory  of','evolution','adaptation','variation','heredity','','','d','','utme','2009',190,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:34'),(253,'In Mendelian inheritance, discontinuous characters are controlled by the','centromeres','alleles','chromosomes','chromatids','','','b','','utme','2009',212,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(254,'A woman with the ability to roll her tongue (Tt) marries a man who cannot roll his tongue  (tt). What is the probability of each of their children being a tongue roller?','100%','75%','50%','25%','','','c','','utme','2009',195,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(255,'A health condition that isi known to have resulted from gene mutation is  ','heamophilia ','colour blindeness  ',' sickle cell anaemia  ',' anaemia  ','','','c','','utme','2009',200,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(256,'Plants that grow in an area that is neither too wet nor too dry are','xerophytes  ','mesophytes  ','epiphytes','hydrophytes','','','b','','utme','2009',209,'Admin','0000-00-00 00:00:00','2020-08-15 20:57:21'),(257,'The part of a domestic fowl responsible  for preventing heat loss is the  ','filoplume ','contour feather  ',' down feather',' quill','','','c','','utme','2009',184,'Admin','0000-00-00 00:00:00','2020-08-15 20:57:21'),(258,'Which of the following animals is most adapted for water conservation?','Earthworms  ','mammals   ','Flatworms  ','Insects','','','d','','utme','2009',172,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(259,'The specialized pigment cells that are involved in colouration and colour change in animals are the','xanthophyl','chromatophores','chlorophyll','mechanic','','','d','','utme','2009',185,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(260,'During the dry season in the tropics, the body metabolism of some animals slows to a minimal level in a process referred to as','hibernation','aestivation','dormancy','sense scense  ','','','b','','utme','2009',174,'Admin','0000-00-00 00:00:00','2020-08-15 09:22:10'),(261,'According to Darwin, the driving force behind evolutionary change is','atural selection','genetic drift  ','mutation','gene flow','','','a','','utme','2009',197,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:43'),(262,'Which of the following characterizes a mature plant cell?','The cytoplasm fills up the entire cell space',' The nucleus is pushed to the centre of the cell',' the cell wall is made up of cellulose','The nucleus is small and irregular in shape','','','d','','utme','2010',294,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(263,'Which of the following is NOT a function of the nucleus of a cell?  ','it controls the life processes of the cell','It translates genetic formation for   the manufacture of proteins','it stores and carries hereditary information  ','it sis a reservoir of energy for the cell','','','d','','utme','2010',272,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(264,'The dominant phase in the life cycle of a fern is the','gametophyte  ',' prothallus','sporophyte  ',' antheridium','','','c','','utme','2010',269,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(265,'Parental care is exhibited by','toads','snails',' earthworms',' birds','','','d','','utme','2010',276,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(266,'Which of the following groups of cells is devoid of true nuclei?','viruses','algae  ','Monera','Fungi','','','c','','utme','2010',277,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(267,'Which of the following is true of the transverse section of a dicot stem?','The epidermis is completely encircled by the cortex','The xylem is more interiorly located than the phloem',' The cambium lies between the cortex and the vascular bundles','The vascular bundles are randomly scattered within the  cortex','','','b','','utme','2010',264,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(268,'Which of the following is lacking in the diet of a person with kwashiorkor?','Vitamins  ','Proteins','Carbohydrates  ','Minerals','','','b','','utme','2010',280,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(269,'The mode of nutrition of sundew and bladderwort can be described as','autotrophic  ','saprophytic  ','holozoic   ','chemosynthetic','','','c','','utme','2010',243,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(270,'When a mixture of a food substance fand Benedict’s solution was warmed, the solution changed from blue to brick red . This indicates the presence of','reducing  sugar','fatty acid','sucrose  ','amino acid','','','a','','utme','2010',266,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(271,'The primary structure responsible for pumping blood for circulation through the mammalian circulatory systems is the','veins  ','right auricle  ','arteries','left ventricle','','','d','','utme','2010',287,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(272,'Circulation of blood to all parts of the body except the lungs is through  ','the pulmonary artery  ','systemic circulation','the lymphatic system','pulmonary circulation','','','b','','utme','2010',271,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(273,'Yeast respires anaerobically  to covert simple sugar to carbon (IV) oxide and','alcohol  ','acid','oxygen','water','','','a','','utme','2010',288,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(274,'The sheet of muscle that separates the thoracic and the abdominal cavities is the ','diaphragm  ','intercostal muscles',' pleural membrane   ',' pericardium','','','c','','utme','2010',273,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(275,'The oily substance that lubricates the mammalian hair to keep it flexible ad water repellent is secreted by the','sweat glands','sebaceous glands','fatty  cells','granular layer','','','b','','utme','2010',262,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(276,'The outer layer of the kidney where the Bowman’s capsules are found is the','cortex','pelvis  ','medulla','pyramid','','','a','','utme','2010',285,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(277,'Which of the following stimuli is likely to elicit a nastic response in an organism? ','Touch  ','Light intensity  ','Chemical substances  ','gravity','','','a','','utme','2010',254,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(278,'In the male reproductive system of a mammal, sperm is stored in the','van deferens  ','urethra','epididymis  ','seminiferous tubules   ','','','c','','utme','2010',277,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(279,'Chemosynthetic organism are capable  of manufacturing their food  from simple inorganic substances through the process of','oxidation','denitrification','reduction','phosphorylation','','','a','','utme','2010',282,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(280,'The part of the human gut  that has an acidic  content is the','stomach  ','duodenum  ','ileum','colon','','','a','','utme','2010',280,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(281,'I. Stomata _ spirogyra   II alveoli _ earthworm  III malpighian tubule_mammal Iv.Contractile vacuole _protozoa \\nWhich of the above structures is correctly matched with the organisms in which it is found? \\n','III  ','II   ','I','IV','','','d','','utme','2010',283,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(282,'A food chain always begins with a  ','consumer  ','decomposer  ','producer','primary  consumer','','','c','','utme','2010',271,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(283,'Mycorrhizae promote plant growth by','absorbing inorganic ions from the soil  ','protecting it from infection','helping it to utilize atmospheric nitrogen','serving as a growth regulator','','','a','','utme','2010',307,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(284,'The barrier between maternal and foetal blood is the','placenta  ','liver','umbilical chord  ','uterine wall','','','a','','utme','2010',260,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(285,'The blood component  that has the greatest affinity for oxygen is the ','lymphocytes',' leucocytes','erythorocytes  ','thromboytes','','','c','','utme','2010',288,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(286,'Which of the following organisms is mainly  found in the marine habitat?','Achatina  ','Tilapia  ','Dog fish  ','Tortoise','','','c','','utme','2010',265,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(287,'The two halves of the pelvic girdle are jointed together at the  ','public  symphysis  ','ilium  ','pubis  ','obturator foramen','','','a','','utme','2010',288,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(288,'I. Adoption of appropriate nocturnal habits   II. Burrowing   III. adjusting their  internal body temperature   IV. Possession of many sweat pores.\\nWhich of the above are ways in which desert animals adapt to extreme heat of environment?  \\n','I and IV only  ','II and III only  ','I and II only  ','I, II and III only','','','d','','utme','2010',280,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(289,'Low annual rainfall, sparse vegetation, high dermal temperatures and cold nights are characteristics features of the','tropical  rainforest  ','desert   ','mundane forest','guinea savanna','','','b','','utme','2010',277,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(290,'The average number of individuals of a species  per unit area of the habitat is the ',' population density','population frequency  ','population size','population distribution','','','a','','utme','2010',299,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(291,'The loss of soil through erosion can be reduced by','watering','crop rotation  ','maturing  ','irrigation','','','b','','utme','2010',297,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(292,'The vector for yellow fever is  ','edges mosquito  ','anopheles mosquito  ','tsetse fly  ','blackly','','','a','','utme','2010',286,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(293,'The protozoan plasmodium falciparum is transmitted by','female anopheles mosquitoes  ','female Aedes mosquitoes  ','female Culex mosquitoes   ','Female  blackfly','','','a','','utme','2010',260,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(294,'A dilute solution of phenylthiocarbamide tastes bitter to some people  and is tasteless to others. This is an example of  ','taste bud variation','discontinuous variation   ','morphological variation',' continuous variation','','','b','','utme','2010',274,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(295,'Throxne and adrenalin are examples of hormones which control','blood grouping','tongue rolling  ','behavioural patterns','colour variation ','','','c','','utme','2010',281,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(296,'A pair of genes that control a trait is referred to as','anallele','recessive','dominant  ','ahybrid','','','a','','utme','2010',294,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(297,'The chromosome number of a cell before and after the process of meiosis is conventionally represented as','2n_2n   ','n_n  ','n-2n  ','2n-n','','','d','','utme','2010',287,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(298,'If both parents are heterozygous for trait, he probability that an offspring will be recessive for that trait is','¾   ','½    ','¼','1','','','c','','utme','2010',266,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(299,'At what stage in the life history of a mammal is the sex of an individual set?','At adolescence','At puberty  ','At birth  ','At conception','','','d','','utme','2010',280,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(300,'The main distinguishing features between the soldier termite and other members of the caste are the','presence of wings, possession of a small head and large thorax','presence of wings, possession of a large thorax  and a small head','absence of wings, possession off strong mandibles and a large head','absence of wings, possession of big head and the absence of mandible.','','','c','','utme','2010',265,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(301,'The flippers of a whale  and the fins of a fish are examples of','divergent evolution  ','co evolution','continuous variation','convergent evolution','','','a','','utme','2010',282,'Admin','0000-00-00 00:00:00','2020-08-19 09:01:12'),(302,'The function of the red head in male Agama lizards is to','scare other males from the territory  ','attract female lizards for mating purposes  ','warn predators of the distastefulness of the animal  ','Conceal and camouflage the animal from predators','','','b','','utme','2011',159,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(303,'In which of the following species is the biomass of an individual the smallest?','Agama sp  ','Bufo sp','spirogyra sp   ','Tilapia sp','','','c','','utme','2011',201,'Admin','0000-00-00 00:00:00','2020-08-18 09:48:50'),(304,'Seed plants are divided into','angiosperms and gymnosperms','monocotyledons and dicotyledons','thallophyes and pbryophytes  ','Tracheophytes and ferns','','','a','','utme','2011',168,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:04'),(305,'In which of the following groups of vertebrates is parental  care mostly exhibited? ','  Amphibia','Aves  ','Mammalia  ','Reptilia','','','c','','utme','2011',190,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:41'),(306,'The adult form of III is a vector of  ','river blindness','cholera','elephantiasis','sleeping sickness','','','c','','utme','2011',196,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:35'),(307,'The adaptive importance of nuptial flight from termite colonies is to','provide abundant food for birds and other animals during the early rains','ensure cross breeding between members of one colony  and another','expel  the reproductive so as to provide  enough food for other members','disperse the reproductive in order to establish  new colonies','','','d','','utme','2011',181,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:30'),(308,'Which of the following can cause shrinkage  of living cells?  ','Isotonic solution   ','Delonized water  ','Hypertonic solution','hypotonic solution','','','c','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(309,'Which of the following is true of leucocytes?  ','They are most numerous and ramify all cells  ','They are large and nucleated  ','They are involved in blood clotting','They are respiratory pigments','','','b','','utme','2011',186,'Admin','0000-00-00 00:00:00','2020-08-18 09:48:57'),(310,'The conversion of a nutrient into a molecule in the body of a consumer is referred to a s  ','assimilation','absorption  ','inhibition','digestion','','','d','','utme','2011',238,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:02'),(311,'The ability  of a living organism to detect and respond to changes in the environment is referred to as','irritability','growth    ','taxis','locomotion','','','a','','utme','2011',177,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(312,'In mammals, the exchange of nutrients and metabolic products occurs in the','oesophagus','trachea','lymph   ','lungs','','','c','','utme','2011',184,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:00'),(313,'An example of an endospermous seed is   ','cashew  nut  ','cottons seed','bean seed  ','maize grain','','','d','','utme','2011',178,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(314,'I. Parasitism _ Sundew    II Autrrophism_Amoeba    III Saprophytism_ Alga  IV. Heterotrophism- Agama. Which of the above modes of nutrition is correctly matched with the organism that  exhibits it?','III','IV  ','I','II','','','b','','utme','2011',183,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:34'),(315,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nIn which of the test tubes will glucose be detected after complete hydrolysis?\\n','II and III only','I only','I, II and III   ','I and II only','','','a','','utme','2011',189,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:49'),(316,'I. Test tube containing cane sugar and water  II. Test tube containing cane sugar and dilute acid  III Test tube containing cane sugar and its degrading enzyme \\nThe enzyme involved in the hydrolysis is\\n','erepsin  ','perilymph   ','maltase  ','rennin','','','c','','utme','2011',194,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:41'),(317,'The part of the mammalian ear responsible for the maintenance of balance is the ','pinna   ',' perilymph  ',' Ossicles   ',' cochlea','','','d','','utme','2011',198,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:00'),(318,'The path followed by air as it passes through the lungs in mammals is  ','bronchi_ trachea_ alveoli_ bronchioles  ','Trachea _ Bronchiole _ bronchi_ alveoli   ','bornchioles _ alveoli _ bronchi_ trachea   ','trachea_ bronchi _ bronchioles_ alveoli','','','d','','utme','2011',192,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:24'),(319,'The movement response of a cockroach away  from a light source can be described as  ','negative phototaxism  ','negative photropism','positive  photropism  ','positive phototaxism','','','a','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:48'),(320,'The vascular tissues in higher plants are responsible for  ','suction pressure  ','transpiration pull','the transport of gases and water   ','the movement of food and water','','','d','','utme','2011',199,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(321,'Which of the following organs regulates the levels of water, salts, hydrogen ions and urea in the mammalian blood?','kidney','bladder  ','colon  ','liver','','','a','','utme','2011',171,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(322,'The sequence of the one way gaseous exchange mechanism in a fish is','gills _ operculum _ mouth','mouth_operculum_ gills  ','mouth _gills _operculum','operculum _ gills_ mouth','','','c','','utme','2011',184,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(323,'The  type of asexual reproduction that is common to both paramecium and protists is','speculation  ','fragmentation','fission','budding','','','c','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(324,'In nature, plants and animals are perpetually engaged in mutulism because  ','all animals rely on food produced  by plants','they  utilize respiratory wastes of each other  ','they are neighbours  ','they are rivals','','','b','','utme','2011',153,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:29'),(325,'In an experiment to determine the percentage of humus and water in a soil sample, the following results were obtained. \\nWeight of the evaporating basin alone = 80.5g   Weight of basin and soil = 101.5g    Weight after drying the soil in the oven = 99.0g    Weight of basin and roasted soil = 95.5h\\nThe percentage of humus in the soil sample is  \\n','17.60%','26.70%','16.20%','16.70%','','','d','','utme','2011',170,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(326,'An example of a filter-feeding animals is','butterly  ','whale','mosquito  ','shark','','','b','','utme','2011',176,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:42'),(327,'Which of the  following is a feature of the population Pyramid of a developing country?  ','Low birth rate','low death rate  ','short lifespan','long lifespan','','','c','','utme','2011',178,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:24'),(328,'the interaction of a community of organisms with its abiotic environment constitutes','a food chain','an ecosystem  ','a microhabitat','a niche','','','b','','utme','2011',194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:20'),(329,'The vector of the malaria parasite is a','female anopheles mosquito  ','male culex mosquitoes','female culex mosquito  ','female Aids mosquito','','','a','','utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:59'),(330,'Which of the following  instruments is used  to measure relative humidity?','Thermometer  ','Hygrometer  ','Anemometer','Hydrometer','','','b','','utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:09'),(331,'Exo-erythrocytic phase  of the life cycle  of malaria parasite occurs in the','reticuloendothelial cells of humans','maphigian tubules of mosquito','brain of humans  ','liver  of humans','','','d','','utme','2011',177,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:28'),(332,'Habitats are generally classified into  ','aquatic and terrestrial','arboreal  and marine biomes','microhabitats and macro habitats','biotic and abiotic','','','a','','utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:29'),(333,'Drancunculiasis can be contacted  through  ','drinking contaminated water','bathing in contaminated water  ','bites of blackfly   ','eating contaminated food','','','b','','utme','2011',204,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(334,'Which of the following groups of environmental factors are density dependent?  ','Temperature, salinity, predation and disease   ',' Food, predation, disease and accumulation of metabolites  ','Temperature, food disease and light  ','food, salinity, accumulation  of metabolites and light','','','b','','utme','2011',212,'Admin','0000-00-00 00:00:00','2020-08-16 17:52:34'),(335,'Millet, sorghum, maize and onions are common crops grown in Nigerian in the  (a) Sudan savanna','montane forests   ','Sahel savanna','Tropical rainforests','','','','a','','utme','2011',170,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:36'),(336,'In which of the following biomes is the south western part of Nigeria located?  ','Tropical rainforest  ','Tropical woodland  ','desert','Temperature forest','','','a','','utme','2011',187,'Admin','0000-00-00 00:00:00','2020-08-19 00:16:22'),(337,'Lack of space in a population  could lead to an increase in','birth rate','disease rate','drought   ','water  scarcity','','','b','','utme','2011',200,'Admin','0000-00-00 00:00:00','2020-08-18 20:11:30'),(338,'The inheritable characters that are determined by a gene located only on the X-chromosome is  ','sex linked','homozygous  ','dominant  ','recessive','','','a','','utme','2011',174,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:35'),(339,'If the cross of a red  flowered plant with a white flowered plant produces a pink flowered plant, it is an example of','incomplete dominance  ',' mutation  ',' linkage','co dominance','','','d','','utme','2011',214,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(340,'Which of the following theories was NOT considered by Darwin in his evolutionary theory?','survival of the fittest  ','use and disuse  ','competition ',' variation','','','b','','utme','2011',171,'Admin','0000-00-00 00:00:00','2020-08-15 05:34:29'),(341,'The crossing of individuals of the same species with different genetic characters is',' polygenic inheritance  ',' non disjunction  ','inbreeding','cross breeding','','','c','','utme','2011',187,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(342,'The number of alleles controlling  blood groups in humans is','4','5','2','3','','','d','','utme','2011',197,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:41'),(343,'During blood transfusion, agglutination may occur as a result of the reaction between','two different antigens  ','two different antibodies  ','similar antigens and antibodies  ','contrasting antigens and antibodies','','','d','','utme','2011',202,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:30'),(344,'The fallacy in Lamarck’s evolutionary theory was the  assumption that','acquired traits  are heritable','acquired traits are seldom formed','traits  are acquired  through the use of body parts  ','traits are acquired through disuse  of body parts.','','','c','','utme','2011',206,'Admin','0000-00-00 00:00:00','2020-08-18 17:24:55'),(345,'The brightly coloured eye spots on the hind wings of a moth are an example of ',' disruptive colouration',' continuous variation    ','divergent  Evolution','convergent  evolution','','','d','','utme','2011',188,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:35'),(346,'Which of the following is most advanced in the evolutionary trend of animals?  ',' Liver fluke  ','Earthworm','Snail  ','cockroach','','','d','','utme','2012',195,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(347,'Which of the following is the lowest category of  classification?  ','Class   ','species  ','Family','Genus','','','b','','utme','2012',200,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(348,'Plants  that show secondary growth are usually found among the','thallophytes','pteridophytes','monocotyledons  ','dicotyledons','','','d','','utme','2012',193,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(349,'The fungi are a distinct group of eukaryotes mainly  because they have  ','spores  ','no chlorophyll  ','many fruiting bodies','sexual and asexual reproduction','','','d','','utme','2012',199,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(350,'An arthropod that is destructive at the early stage of its life cycle is','butterfly  ','mosquito  ','bee','millipede','','','a','','utme','2012',179,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(351,'An animal body that can be cut along its axis in any plane to give two identical parts is said to be  ','radically  symmetrical','bilaterally symmetrical','asymmetrical','symmetrical','','','a','','utme','2012',178,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(352,'Which  of the following possesses mammary gland?','Dogfish','Whale  ','Shark  ','Catfish','','','b','','utme','2012',222,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(353,'The feature  that links birds to reptiles in evolution is the possession of  ','feathers  ','beak  ','skeleton','scales','','','d','','utme','2012',189,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(354,'Counter shading is an adaptive  feature that enables animals to  ','flight enemies  ','remain undetected','warn enemies  ','attract mates','','','b','','utme','2012',188,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(355,'Which of the following plant structures lacks a waterproof of cuticle?  ','leaf  ','stem  ','root','shoot','','','c','','utme','2012',196,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(356,'In the mammalian male reproductive system, the part that serves as a passage for both urine and semen is the ','urethra  ','ureter  ','bladder','seminal vesicle','','','a','','utme','2012',183,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(357,'In plants, which of the  following is required in minute quantities  for growth?','copper  ','potassium','phosphorous','sodium  ','','','a','','utme','2012',184,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(358,'Which of the following organisms is both parasitic and  autotrophic?  ','Sundew  ','Loranthus','Rhizopus  ','tapeworm','','','a','','utme','2012',191,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(359,'A function of the hydrochloric acid produced in the human stomach during digestion is to  ','neutralize the effect of bile   ','coagulate milk protein and emulsify fats  ','stop the action of ptyalin  ','break up food into smaller particles','','','c','','utme','2012',204,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(360,'Which of the following is a polysaccharide?','Glucose  ','sucrose','Maltose   ','Cellulose','','','d','','utme','2012',203,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(361,'In the kidney of mammals, the site of ultra filtration is the','urinferous tuble','Bowman capsule  ','loop of Henle  ','renal tuble','','','b','','utme','2012',178,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(362,'Which of the following  is involved1 in secondary  thickening in plants?','collenchyma  and  xylem cells  ','Vascular cambium and collenchyma’s cells  ','vascular cambium and cork cambium','Cork cambium and sclerenchyma','','','c','','utme','2012',200,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(363,'An example of a fruit  that develops from a single carpel is','(a)okro  ','tomato','bean  ','orange','','','c','','utme','2012',169,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(364,'Plant  growth can be artificially stimulated by the addition of  ','gibberellin  ','kinin','abscisic acid  ','ethylene','','','a','','utme','2012',197,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(365,'The autonomic nervous system consists of neurons that control the','voluntary  muscle','heart beat','tongue  ','hands','','','b','','utme','2012',192,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(366,'Plants of temperate origin can be grown in tropical areas in the vegetation zones of the','rain forest   ','Guinea savanna   ','Sudan savanna','montane forest','','','d','','utme','2012',207,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(367,'The water cycle is maintained mainly by   ','evaporation  of water in the environment  ','evaporation and condensation of water  in the environment  ','condensation of water in the environment  ','transpiration and respiration in plants','','','b','','utme','2012',178,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(368,'Organisms living in an estuarine habitat are adapted to  ','withstand   wide fluctuations in temperature   ','survive only in water with low salinity   ','withstand wide fluctuations in salinity   ','feed only on phytoplankton and dead organic matter.','','','c','','utme','2012',183,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(369,'The presence of stilt roots, pneumatophores, sunken stomata and salt glands are adaptive features of plants found in the','tropical rainforest','mangrove swamps  ','grassland  ','montane forest','','','b','','utme','2012',172,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(370,'Which of the following animals an exist solely on the water they get from food and metabolic reactions?  ','Forest arboreal dwellers  ','Desert dwellers','forest ground dwellers','rainforest dwellers','','','b','','utme','2012',205,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(371,'The most likely first colonizers of a bare rock are  ','mosses  ','ferns','lichen  ','fungi','','','c','','utme','2012',194,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(372,'The carrying capacity of a habitat is reached when the population growth begins to','increase slowly','increase exponentially','slow down','remain steady','','','d','','utme','2012',216,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(373,'The abiotic factors that  control human population include  ','disease and famine  ','space and rainfall  ','flooding and earthquake   ','temperature','','','a','','utme','2012',186,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(374,'An indigenous method of renewing and maintaining  soil fertility is by','clearing farms a by burning','planting one crop type  ','adding inorganic fertilizers yearly   ','crop rotation and shifting cultivation','','','d','','utme','2012',191,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(375,'The disease caused by water-brone pathogen include','gonrrhoea and poliomyelitis   ','typhoid and syphilis   ','tuberculosis and cholera','typhoid and cholera','','','d','','utme','2012',194,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(376,'Which of the following is true in blood transfusion?','a person of blood group AB can donate blood only to another person of blood group AB','Persons of blood groups A and B can donate or receive blood from each other','A person of blood group AB can receive blood only from persons of blood group A or B  ','A person of blood group O can donate only to a person of blood group O.','','','a','','utme','2012',194,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(377,'A yellow maize is planted and all the fruits obtained are of yellow seeds. When they are cross bred, yellow seeds and white seeds are obtained in a ratio 3:1. The yellow seed is said to be  ','non heritable','sex linked','a recessive trait  ','a dominant trait','','','d','','utme','2012',207,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(378,'When a colour blind man marries a carrier woman. What is the probability of their offspring being colorblind?','25%','50%','75%','100%','','','c','','utme','2012',194,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(379,'The correct base pairing for DNA is','adenine _ thymine and guanine_ cytosine  ','adenine_ guanine and thymine_ cytosine  ','adenine_ cytosine and guanine_ thymine  ','adenine_ adenine  and cytosine_cytosine','','','a','','utme','2012',180,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(380,'The short thick beak in birds is an adaptation for','crushing seeds','sucking nectar  ','tearing flesh','straining mud','','','a','','utme','2012',220,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(381,'The basking of Agama lizards in the sun is to','chance the colour of their body  ','raise their body temperature to become active','fight to defend their territories','attract the female for courtship','','','b','','utme','2012',173,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(382,'The significance of a very large number  of termites involved in nuptial swarming is to','provide birds with plenty of food','ensure their perpetuation despite predatory pressure  ','search for a favourable place to breed  ','ensure that every individual gets a mate.','','','c','','utme','2012',204,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21'),(383,'The use and disuse of body parts and the inheritance of acquired traits were used to explain  ','Darwin’s theory','Lamarck’s theory','genetic drift  ','gene flow','','','b','','utme','2012',180,'Admin','0000-00-00 00:00:00','2020-08-19 23:27:17'),(384,'From his study of Galapagos finches, Darwin derived his theory of evolution from ',' comparative anatomy','comparative physiology',' fossil remains  ','comparative embryology.','','','a','','utme','2012',160,'Admin','0000-00-00 00:00:00','2020-08-19 10:50:21');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `chemistry` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `chemistry` VALUES (1,'25cm3 of a gas X contains Zmolecules at 150C and 75mmHg. How many molecules will 25cmm3 of another gas Y contain at the same temperature and pressure','2Y','2Z','Z','Y','','','c','','utme','2001',1249,'Admin','0000-00-00 00:00:00','2020-08-20 07:54:49'),(2,'What mass of water is produced when 8.0g of hydriogen reacts with excess oxygen [H = 1, O = 16]','36.0g','8.0g','72.0g','16.0g','','','c','','utme','2001',1196,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(3,'A particle that contains 9 protons, 10 neutrons and 10electrons is a','Neghative ion','Positive ion','Neutral atom of a non metal','Neutral atom of a metal','','','a','','utme','2001',1166,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(4,'Cancerous growths are cured by exposure to','ɣ-rays',' β – rays',' ἀ – rays','X -rays','','','a','','utme','2001',1189,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(5,'An oxide X02 has a vapour density of 32. What is the atomic mass of X [O = 16]','32','20','14','12','','','a','','utme','2001',1180,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(6,'Milikan’s contribution to the development of atomic theory is the determination of','Charge on electron','Positive rays','Charge to amss ratio','Cathode rays','','','c','','utme','2001',1134,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(7,'Four elements W, X, Y, and Z have atomic numbers 2, 6, 16 and 20 respectively. Which of these elements is a metal','X','W','Z','Y','','','c','','utme','2001',1243,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:15'),(8,'An element X with relative atomic mass 16.2 contains two isotopes      X  with relative abundance of 90% and      X with relative abundance of 10%. The value of m is','16','18','12','14','','','b','','utme','2001',1222,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(9,'Which of the following statements is correct about the average kinetic energy of the molecules of a gas','It inctreasaes with increase in pressure','It increases at constant pressure','It increases with increase in temperature','It increases in volume','','','c','','utme','2001',1220,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(10,'The pollution from petroleum spillage in rivers and lakes can best be dispersed by','Pouring detergents','Passing of ships through the area','Pouring organic solvents','Evaporation','','','a','','utme','2001',1237,'Admin','0000-00-00 00:00:00','2020-08-20 07:49:46'),(11,'Deliquenscent substances are used for','Cooling','Wetting','Melting','Drying','','','d','','utme','2001',1219,'Admin','0000-00-00 00:00:00','2020-08-20 13:43:23'),(12,'Pure solvents are obtained by','Distillation','Condensation','Extraction','EvapopraTION','','','a','','utme','2001',1145,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:50'),(13,'What is the decrease in volume of air when pyrogallol is shaken with 30.00cm3 of air','15.00cm3','6.00cm3','0.63cm3','0.06cm3','','','b','','utme','2001',1177,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(14,'Environmental pollution is worsened by the release from automobile exhausts of','Water vapour','Steam','Smoke','Heavy metals','','','c','','utme','2001',1187,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(15,'The chemiocal used for coagulation in water purification is','Aluminum tetraoxosulphate(VI)','Copper tetratoxosulphate (VI)','Sodium tetraoxosulphate(VI)','Calcium tetraoxosulphate (VI)','','','a','','utme','2001',1184,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:00'),(16,'Phosphorous is stored under water to precvent it from','Dehydrating','Becoming inert','Smelling','Catching fire','','','d','','utme','2001',1107,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:34'),(17,'In which of the following reactuions does reduction take place','Fe2+ - e-   Fe3+','2O2-  → O2 + 4e-','Cr - 2e-  → Cr2+','2H+  +  2e-   →H2','','','d','','utme','2001',1196,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(18,'P(g) + O(g)    ⇌ 3R(s)  +  S(g)   ΔH is negative which of the following will increase the yield of R','Using a larger closed vessel','Increasing the temperature','Removing some S','Adding a positive catalyst','','','c','','utme','2001',1194,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:08'),(19,'A metal M displaces zinc from zinc chloride solution. This shows that','M is more electronegative than zinc','Zinc is above hydrogen in the series','M is more electropositive than zinc','Electrons flow from zinc to M','','','c','','utme','2001',1242,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(20,'Which of the following best explains the increase in the rate of a chemical reaction as the temperature rises','The bonds in the reacting molecules are more readily broken','The molecules collisions become more violent','A lower proportion of the molecules has the necessary minimum energy to react','The collision frequency of the molecules increases','','','d','','utme','2001',1170,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(21,'What current in amperes will deposit 2.7g of aluminium in 2 hours [Al = 27, f = 96500 C mol-1]','32','8','4','16','','','c','','utme','2001',1169,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:11'),(22,'Ethanoic acid is','Tribasic','Unionizeable','Monobasic','Dibasic','','','c','','utme','2001',1192,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(23,'C(s) + 2S (g)  → CS2 (g)      Δ H = +89kJ mol-1. The chemical equation above implies that','Each of carbon and sulphur has 89kJ of energy','Both carbon and sulphur contribute 89kJ of energy','89kJ of energy is released','89kJ is absorbed','','','d','','utme','2001',1150,'Admin','0000-00-00 00:00:00','2020-08-20 07:49:46'),(24,' 2SO2(g) + O2(g) ⇌  2SO3(g)  The equilibrium constant for the reaction above is increased by  [ΔH = -189kJ mol -1]','Increasing the temperature of the system','Increasing the pressure of the system','The addition of a catalyst to the system','Increasing the surface area of the vessel','','','b','','utme','2001',1173,'Admin','0000-00-00 00:00:00','2020-08-12 16:05:39'),(25,'3CU(s)  +  8HNO3(aq) →  3Cu(NO3)2(aq)  +  4H2O(I)  +  2NO(g)  In the equation above, copper is','An electron acceptor','A base','An oxidizing agent','A reducing agent','','','d','','utme','2001',1180,'Admin','0000-00-00 00:00:00','2020-08-18 15:20:34'),(26,'When ΔH is negative, a reaction is said to be','Ionic','Reversible','Exothermic','Endothermic','','','c','','utme','2001',1204,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(27,'As the concentration of an electrolyte reduces, the conductivity','Reduces to zero','Decreases','Increases','Is unaffected','','','b','','utme','2001',1182,'Admin','0000-00-00 00:00:00','2020-08-20 13:43:23'),(28,'In which of the following reactions has the oxidation number of nitrogen increased','2NO(g)  +  Br2(l)  → 2NOBr(l)','2NO2(g)  +  O2(g)   → 2NO2(g)','FeSO4(aq)  +  NO(g) → Fe(NO)SO4(s)','2NO(g)  +  CI2(g) →  2NOCI(l)','','','b','','utme','2001',1098,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(29,'NH3(g)  +  HCI(g)  → NH4CI(s) The entropy change in the system is','Negative','Indeterminate','Positive','Zero','','','b','','utme','2001',1153,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:29'),(30,'Fermentation is the','Breaking down of carbohydrate to glucose','Conversion of sugar to alcohol in the presence of yeast','Breaking down of sugar to carbohydrate','Conversion of alcohol to sugar in the presence of yeast','','','b','','utme','2001',1172,'Admin','0000-00-00 00:00:00','2020-08-15 00:45:32'),(31,'The general formula for the alkanals is','ROH','R2CO','RCOOR1','RCHO','','','d','','utme','2001',1194,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(32,'The main impurity in iron ore during the extraction of iron is','Silicon (IV) oxide','Carbon(IV) oxide','Calciumtrioxosilicate','Sulphur(II) oxide','','','a','','utme','2001',1181,'Admin','0000-00-00 00:00:00','2020-08-18 03:59:46'),(33,'During the vulcanization of rubber, sulphur is added to','Break down rubber polymer','Lengthen the chain of rubber','Bind rubber molecules together','Act as a catalyst','','','c','','utme','2001',1169,'Admin','0000-00-00 00:00:00','2020-08-18 03:59:46'),(34,'Catalytic hydrogenation of benzene produces','Oil','Cyclohexane','Cycloexane','Margarine','','','c','','utme','2001',1236,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(35,'A trihydric alkanol is','glycerol','phenol','glycol','ethanol','','','a','','utme','2001',1134,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:11'),(36,'When chlorine is passed into water and the resulting solution exposed to sunlight, the product formed are','Chlorine gas and hydrogen','Oxygen and oxochlorate(l) acid','Hydrochloric acid and oxygen','','','','b','','utme','2001',1216,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(37,'Proteins in acid solution undergo','Polymerization','Substitution','Fermentation','Hydrolysis','','','d','','utme','2001',1186,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(38,'A characteristic reaction of the compounds with the general formula CnH2n is','Esterification','Polymerization','Decarboxylation','Substitution','','','b','','utme','2001',1202,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:12'),(39,'The pair of organic compounds that are isomers is','Benzene and methylbenzene','Trichloromethane and Tetrachloromethane','Ethanol and propanone','But-1-ene and but-2-ene','','','d','','utme','2001',1145,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(40,'A burning candle produces water and','Carbon(II)oxide','Carbon(IV) oxide','Oxygen','Hydrogen','','','d','','utme','2001',1197,'Admin','0000-00-00 00:00:00','2020-08-20 13:43:23'),(41,'The gas that can best be collected by downward displacement of air is','Chlorine','Sulphur(IV)oxide','Ammonia','Carbon(IV)oxide','','','c','','utme','2001',1217,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(42,'Which of the following metals burns brick with a brick-red','Pb','Ca','Na','Ma','','','b','','utme','2001',1177,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(43,'Which of the followinig respresents hybridization in ethyne?','Sp2','Sp2d','Sp3','sp','','','d','','utme','2001',1192,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(44,'When sodium reacts with water, the resulting solution is','weakly acdic','neutral','acidic','alkaline','','','d','','utme','2001',1199,'Admin','0000-00-00 00:00:00','2020-08-20 07:49:46'),(45,'Which of the following gases contains the least number of atoms at s.t.p','4 moles of chlorine','3 moles of ozone','1 mole of butane','7 moles of argon','','','c','','utme','2002',1162,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(46,'A compound contains 31.91% potassium, 28.93% chlorine and the rest oxygen. What is the chemical formular of the compound','KCLO3','KCLO4','KCLO','KCLO2','','','a','','utme','2002',1122,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(47,'The formula CH2O for ethanoic acid is regarded as its','General formula','Structural formula','Molecular formula','Empirical formula','','','d','','utme','2002',1139,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(48,'A little quantity of Trichloromethane (b.pt.600C) was added to a large quantity of ethanol (b.pt.780C). the most probable boiling point of the resultant mixture is from','699C – 700C','820C – 840C','600C – 780C','700C – 744C','','','d','','utme','2002',1142,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(49,'The chromatographic separation of ink is based on the ability of the components to','React with each other','React with the solvent','Dissolve in each other in the column','Move at different speeds in the column','','','d','','utme','2002',1159,'Admin','0000-00-00 00:00:00','2020-08-20 07:49:46'),(50,'Steam changes the colour of anhydrous cobalt(II) chloride from','White to red','Blue to white','White to green','Blue to pink','','','d','','utme','2002',1127,'Admin','0000-00-00 00:00:00','2020-08-12 15:37:42'),(51,'Which of the following solutions containing only hydroxyl ions will liberate hydrogen gas when reacted with magnesium metal','1.0 x 10-2 mol dm-3','1.0 x 10-4 mol dm -3','1.0 x 10-5 mol dm-3','1.0 x 10-12 mol dm-3','','','d','','utme','2002',1124,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:13'),(52,'The substance least considered as a source of environmental pollution is','Silicate minerals','Uranium','Lead compounds','Organophosphorous compounds','','','a','','utme','2002',1181,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(53,'The property which makes alcohol soluble in water is the','Hydrogen bonding','Covalent nature','Ionic character','Boiling point','','','c','','utme','2002',1182,'Admin','0000-00-00 00:00:00','2020-08-20 13:40:51'),(54,'The furring of kettles is caused by the presence in water of','Calcium trioxocarbonate(IV)','Calcium tetraoxosulphate(VI)','CALCIUM HYDROXIDE','Calcium hydrofentrioxocarbonate(IV)','','','d','','utme','2002',1236,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(55,'Tetraoxosulphate(VI) acid burns the skin by','Heating','Hydration','Dehydration','Hydrolysis','','','c','','utme','2002',1183,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:11'),(56,'When a salt loses its water of crystallization to the atmosphere on exposure, the process is said to be','Deliquescence','Effervescence','Efflorescence','Fluorescence','','','c','','utme','2002',1197,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(57,'Three drops of a 1.0 mol dm-3 solution of Na OH are added to 20cm3 of a solution of pH8.4. the pH of the resulting solution will be','Greater than 8.4','Unaltered','Close to that of pure water','Less than 8.4','','','a','','utme','2002',1149,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(58,'The solubility of a salt of molar mass 101g at 200C is 0.34mol dm-3. If 3.40g of the salt is dissolved completely in 250cm3 of water in a beaker, the resulting solution is','Unsaturated','A suspension','Saturated','Supersaturated','','','a','','utme','2002',1138,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(59,'25cm3 of a 0.2mol dm-3 solution of Na2CO3 requires 20cm3 of  solution of HCl for neutralization. The concentration of the solution is','0.6 mol dm-3','0.5 mol dm-3','0.4 mol dm-3','0.2 mol dm-3','','','b','','utme','2002',1158,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(60,'which of the following chlorides would exhibit the least ionic character','AlCl3','CaCl2','MgCi2','LiCl','','','a','','utme','2002',1171,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(61,'If 0.75 mole of cyclopropane and 0.66 mole of oxygen are mixed in a vessel with a total pressure of 0.7 atmosphere. What is the partial pressure of oxygen in the mixture','0.55 atmosphere','0.44 atmosphere','0.33 atmosphere','0.22 atmosphere','','','c','','utme','2002',1156,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(62,'The processes which return carbon(IV) oxide to the atmosphere include','Photosynthesis, decay and respiration','Photosynthesis, respiration and transpiration','Respiration, decay and combustion','Ozone, depletion, combustion and decay','','','c','','utme','2002',1175,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(63,'Which of the following statements is true of a proton.','The total mass of the protons in a particular nucleus always half the nuclear mass','The mass of a proton is 1840 times the mass of an electron','The mass proton is 1.0008g','The mass of a proton is one-twelfth the molar mass of carbon','','','b','','utme','2002',1129,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(64,'A gas X diffuses twice as fast as gas Y under the same conditions. If the relative molecular mass of X is 28. Calculate the relative molecular mass of Y','120','14','56','112','','','d','','utme','2002',1151,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(65,'A fixed mass of gas has a  volume of 92cm3 at 30C. What will be be its volume at 180C if the pressure remains constant','15.3cm3','87.3cm3','97.0cm3','552.0cm3','','','c','','utme','2002',1131,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(66,'The postulate of Dalton’s atomic theory which still holds is that','Particles of different elements combine in a simple whole number ratio','Atoms can neither be created nor destroyed','The particles of the same element are exactly alike','All elements are made of small indivisible particles','','','a','','utme','2002',1143,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(67,'Ordinary glass is manufactured from silica, Ca CO3 and','K2CO3','NaHCO3','Na2CO3','K2SO4','','','c','','utme','2002',1161,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:21'),(68,'A rock sample was added to cold dilute HNMO3. The gas evolved was passed into a solution of acidified K2Cr2O7 and the solution turned green. The rock sample contains','NO3-','Cl-','SO42-','SO32-','','','d','','utme','2002',1119,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:33'),(69,'Hydrogen is readily released when dilute hydrochloric acid reacts with','Au','Cu','Na','Ag','','','c','','utme','2002',1118,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(70,'The most important use of hydrogen is in the','Hydrogenation of oils','Manufacture of methyl alcohol','Manufacture of ammonia','Manufacture of ethyl alcohol','','','c','','utme','2002',1177,'Admin','0000-00-00 00:00:00','2020-08-19 11:43:06'),(71,'Which of the following gives a precipitate when treated with NaOH solution','Na2CO3','CH3COONa','NH4Cl','AlCl3','','','d','','utme','2002',1223,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(72,'The intermediate product formed when ethanol is progressively oxidized to ethanoic acid with potassium heptaoxodichromate(VI) is','Ethanol','Methanol','Butanal','Propanal','','','a','','utme','2002',1149,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:30'),(73,'The gas that gives brown colouration in brown ring test','Co2','NO2','NO','CO','','','b','','utme','2002',1083,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(74,'The boiling of fat and aqueous caustic soda is referred as','Saponification','Esterification','Acidification','Hydrolysis','','','a','','utme','2002',1184,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(75,'What volume of oxygen is produced from the decomposition of 2 moles of KClO3 at s.t.p   [Molar volume of a gas at s.t.p = 22.4 dm3]','22.4 dm3','33.6 dm3','44.8 dm3','67.2 dm3','','','d','','utme','2003',1100,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:00'),(76,'Which of the following is a physical change','Burning kerosene','Freezing ice-cream','Exposing white phosphorus to air','Dissolving calcium in water','','','b','','utme','2003',1172,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(77,'What is the percentage by mass of oxygen in Al2(SO4)3.2H2O','14.29%','25.39%','50.79%','59.25%','','','d','','utme','2003',1144,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(78,'The filter in a cigarette reduces the nicotine content by','Burning','Adsorption','Evaporation','Absorption','','','b','','utme','2003',1156,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(79,'3Cu  +  pHNO3  → 3Cu(NO3)2  +  4H2O  + xNO   In the equation above, the values of p and x respectively are','1 and 3','2 and 3','6 and 2','8 and 2','','','d','','utme','2003',1161,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:50'),(80,'Neutral atoms of neon with atomic number 10 have the same number of electrons as','O2+','Ca2+','K+','Mg2+','','','d','','utme','2003',1130,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(81,'The noble gases owe their inactivity to','Octet configuration','Cyclic shape','Hexagonal shape','Obtuse configuration','','','a','','utme','2003',1172,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(82,'According to the kinetic theory, an increase in temperature causes the kinetic energy of particles to','Decrease','Increase','Remain constant','Be zero','','','b','','utme','2003',1145,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(83,' I.  H = 1s1\\nII. O = 1s22s22p4\\nIII. N = 1s22s22p3\\nIV. Zn = 1s22s22p63s23p64s23d10\\nFrom the above, which of the following pairs is likely to be paramagnetic?\\n','I and II','I and  III','I    and IV','III  and IV','','','a','','utme','2003',1152,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(84,'A gas exerts pressure on its container because','Some of its molecules are moving faster than others','Of the collision of the molecules with each other','Of the mass of the molecules of gas','The molecules of a gas collide with the walls of the container','','','d','','utme','2003',1148,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(85,'When cathode rays are detected onto the electrode of an electrometer, the instrument becomes','Negatively charged','Positively charged','Neutral','Bipolar','','','a','','utme','2003',1175,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:07'),(86,'The weakest attractive force that can be observed between two molecules is','Ionic','Covalent','Coordinate covalent','Van der Waals','','','d','','utme','2003',1172,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(87,'A consequence of global warming is','Air pollution','Water pollution','Increased humidity','Flooding','','','d','','utme','2003',1169,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(88,'Which of the following ions is acidic','K+','NO-3','S2-','H3O+','','','d','','utme','2003',1196,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(89,'The structural component that makes detergent dissolve more quickly in water than soap is','–SO3 –Na+','–COO-Na+','–SO4- Na+','–COO-K+','','','a','','utme','2003',1171,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:23'),(90,'A liquid that will dissolve fast is','Hydrochloric acid','Calcium hydroxide','Kerosene','Water','','','c','','utme','2003',1141,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(91,'What mass of K2CrO4 is required to prepare 250cm3 of 0.020 mol dm-3 solution   [K2CrO4 = 194.2g mol-1]','0.97g','9.70g','19.42g','97.10g','','','a','','utme','2003',1201,'Admin','0000-00-00 00:00:00','2020-08-18 15:20:34'),(92,'Farmlands affected by crude –oil spillage can be decontaminated by','Adding acidic solutions','Using aerobic bacteria','Pouring water on the affected area','Burning off the oil from the area','','','b','','utme','2003',1192,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(93,'When 10g of sodium hydroxide is dissolved in 1000cm3 of water, the solution formed is approximately   [Na = 23, H = 1, O = 16]','0.01 mol dm-3','0.10 mol dm-3','0.25 mol dm-3','0.50 mol dm-3','','','c','','utme','2003',1179,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(94,'A charge in the temperature of a saturated solution disturbs the equilibrium between the','Dissolved solute and the solvent','Solvent and the undissolved solute','Dissolved solute and the undissolved solute','Dissolved solute and the solution','','','c','','utme','2003',1174,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:00'),(95,'If an equilibrium reaction has   H>0, the reaction will proceed favourably in the forward direction at','High temperature','Any temperature','Low temperature','Minimum temperature','','','a','','utme','2003',1125,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(96,'The commonest feature of the reactions at the anode is that','Electrons are consumed','Oxidation is involved','Ions are reduced','Electrode dissolves','','','b','','utme','2003',1135,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(97,'Which of the following will change when a catalyst is added to a chemical reaction','The activation energy','The potential energy of the reactants','The heat of reaction','The potential energy of the products','','','a','','utme','2003',1111,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:33'),(98,'If Y is an oxidizing agent that reacts with a reducing agent, Z, which of the following is correct','Y increases in oxidation number','Y becomes reduced','Z loses protons','Z gains protons','','','b','','utme','2003',1192,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:07'),(99,'When at equilibrium, which of the reactions below will shift to the right if the pressure is increased and the temperature is kept constant',' 2SO3(g)  ⇌  2SO2(g)  +  O2(g)',' 2CO2(g)  ⇌ 2CO(g)  +  O2(g)',' 2H2(g)  +  O2(g) ⇌  2H2O(g)',' 2NO(g)   ⇌ N2(g)  +  O2(g)','','','c','','utme','2003',1136,'Admin','0000-00-00 00:00:00','2020-08-20 07:49:46'),(100,'In the electrolysis of a concentrated solution of sodium chloride using inert electrodes, which of the following ions are discharged at the cathode and anode respectively','Na+ and Cl-','Na+ and OH-','H+ and OH-','H+ and Cl-','','','d','','utme','2003',1172,'Admin','0000-00-00 00:00:00','2020-08-20 13:42:11'),(101,' CO(g) + H2O(g) ⇌  CO2(g)  +  H2(g)\\nFrom the reaction above, calculate the standard heat change if the standard enthalpies of formation of CO2 (g), H2O (g) and CO (g) in kJ mol-1 are -394, -242 and -110 respectively.\\n','-262 kJ  mol-1','-42kJ mol-1','+42 kJ mol-1','+262 kJ mol-1','','','b','','utme','2003',1134,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:08'),(102,'When sugar is dissolved in tea, the reaction is always accompanied by','Positive entropy change','Negative entropy change','No entropy change','A minimum entropy change','','','a','','utme','2003',1114,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(103,'Which of the following is an electrolyte','Alcohol','Sodium acetate solution','Solid potassium hydroxide','Mercury','','','b','','utme','2003',1206,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(104,'Chlorine gas is prepared in the laboratory by','Adding concentrated hydrochloric acid to solid manganese (IV) oxide','Adding concentrated tetraoxosulphate (VI) acid to solid sodium chloride','Dropping concentrated hydrochloric acid onto potassium tetraoxomanganate (VII) crystals','Oxidizing concentrated hydrochloric acid using potassium heptaoxodichromate (VI) crystals','','','a','','utme','2003',1171,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:02'),(105,'Metals of the first transition series have special proper ties which are different from those of groups I and II elements because they have partially filled','s  orbitals','p orbitals','d orbitals','f orbitals','','','c','','utme','2003',1183,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(106,'Hydrogen can be displaced form a hot alkaline solution by','Fe','Cu','Ca','Sn','','','d','','utme','2003',1126,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:41'),(107,'Which of the following statements is true of sulphur (IV) oxide','It forms Tetraoxosulphate (VI) acid with water','It is an odourless gas','It is an acid anhydride','It forms white precipitate with acidified barium chloride','','','c','','utme','2003',1207,'Admin','0000-00-00 00:00:00','2020-08-18 15:20:34'),(108,'The salt that will form a precipitate soluble in excess ammonia solution is','Ca(NO3)2','Cu(NO3)2','Mg(NO3)2','Al(NO3)3','','','b','','utme','2003',1104,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(109,'The metal that liberates hydrogen from cold water in bubbles only is','Na','K','Ca','Al','','','c','','utme','2003',1131,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:01'),(110,'Chlorine gas turns a damp starch-iodide paper','Pink','Colourless','Red','Dark blue','','','d','','utme','2003',1160,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(111,'The modern process of manufacturing steel from iron is by','Treatment with acids','Oxidation','Blast reduction','Treatment with alkalis','','','c','','utme','2003',1105,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:29'),(112,'Ethene reacts with hydrogen bromide to give','CH2Br2','CH3CH2Br','C2H2Br2','CHBr3','','','b','','utme','2003',1099,'Admin','0000-00-00 00:00:00','2020-08-18 03:59:46'),(113,'Carbohydrates are compounds containing carbon, hydrogen and oxygen in the ratio','3:01:01','2:01:01','1:02:01','1:01:01','','','c','','utme','2003',1123,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(114,'How many isomers does pentane have','6','5','4','3','','','d','','utme','2003',1180,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(115,'The leachate of a certain plant ash is used in local soap making because it contains','Sodium chloride and potassium hydroxide','Sodium hydroxide','Potassium hydroxide','Soluble carbonates and hydrogen carbonates','','','c','','utme','2003',1186,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(116,'The formula for ethyl butanoate is','C3H7COOC2H5','C2H5COOC3H7','C4H9COOC2H5','C2H5COOC4H9','','','a','','utme','2003',1154,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:21'),(117,'The type of reaction that is peculiar to benzene is','Addition','Hydrolysis','Polymerization','Substitution','','','d','','utme','2003',1131,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(118,'Ethanol reacts with excess acidified K2Cr2O7 to produce','Ethanoic acid','Ethanol','Ethyl ethanoate','Ethanoic acid','','','d','','utme','2003',1127,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:49'),(119,'A compound contains 40.0% carbon, 6.7% hydrogen and 53.3% oxygen. If the molar mass of the compound is 180, find the molecular formula  [H = 1, C = 12, O = 16]','CH2O','C3H6O3','C6H12O6','C6H6O3','','','c','','utme','2003',1154,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:47'),(120,'The process by which atoms are rearranged into different molecular structures in the petroleum refining process is referred to as','Catalytic cracking','Hydrocracking','Polymerization','Reforming','','','d','','utme','2003',1169,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(121,'Which of the following is found in cotton','Starch','Cellulose','fat','oil','','','b','','utme','2003',1137,'Admin','0000-00-00 00:00:00','2020-08-19 13:26:56'),(122,'the principal constituent of natural gas is methane','ethane','propane','butane','butane','','','a','','utme','2003',1108,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:31'),(123,'When a solid substance disappears completely as a gas on heating, the substance is said to have under gone','Evaporation','Distillation','Crystallization','Sublimation','','','d','','utme','2004',1240,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(124,'A chemical reaction is always associated with','An increase in the composition of one of the substances','A change in the volume of the reactants','A change in the nature of the reactants','The formation of new substances','','','d','','utme','2004',1133,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(125,'If a solution contains 4.8g of Tetraoxosulphate (VI) acid. Calculate the amount of copper(II) oxide that will react with it  [CU = 64, O = 16, S = 32, H = 1]','0.8g','4.0g','40.0g','80.0g','','','b','','utme','2004',1141,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(126,'What volume of gas is evolved at s.t.p. if 2g of calcium trioxocarbonate(IV) is added to a solution of hydrochloric acid    [Ca = 40, C = 12, O = 16, CI = 35.5, H = 1, Molar volume of a gas at s.t.p = 22.4dm3]','112cm3','224cm3','448cm3','224cm3','','','c','','utme','2004',1151,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(127,'According to Charles  law, the volume of a gas becomes zero at','00C','-1000C','-2730C','-3730C','','','c','','utme','2004',1116,'Admin','0000-00-00 00:00:00','2020-08-20 13:43:23'),(128,'It is difficult to achieve an orderly arrangement of the molecules of a gas because they','Have no definite shape','Have little force attraction between them','Can collide with one another in the container','Are too small in size','','','b','','utme','2004',1168,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(129,'A given volume of methane diffuses in 20s. how long will it take the same volume of sulphur(IV) oxide to diffuse under the same conditions    [C = 12, H = 1, S = 32, O = 16]','5s','20s','40s','60s','','','c','','utme','2004',1157,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(130,'An electron can be added to a halogen atom to form a halide ion with','2 valence electrons','3 valence electrons','7 valence electrons','Valence electrons','','','d','','utme','2004',1137,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(131,'The shape of the s-orbital is','Spherical','Elliptical','Spiral','Circular','','','a','','utme','2004',1209,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:29'),(132,'The property of chlorine which causes hydrogen chloride to be more ionic than the chlorine molecule is its','Electrovalency','Electron affinity','Electropositivity','Electronegativity','','','d','','utme','2004',1119,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:14'),(133,'Chlorine consisting of two isotopes of mass numbers 35 and 37 in the ratio 3:1 has an atomic mass of 35.5. Calculate the relative abundance of the isotope of mass number 37.','20','25','60','75','','','b','','utme','2004',1131,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:12'),(134,'Which of the following mixtures of gases is likely to burn in flame','Neon and hydrogen','Nitrogen and helium','Helium and neon','Neon and nitrogen','','','a','','utme','2004',1130,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:14'),(135,'Hardness of water is caused by the presence of the ions of','Magnesium and silver','Calcium and magnesium','Sodium and potassium','Calcium and sodium','','','b','','utme','2004',1201,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:41'),(136,'Pollution of underground water by metal ions is very likely in a soil that has high','Acidity','Alkalinity','Chloride content','Nitrate content','','','a','','utme','2004',1151,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(137,'A carcinogenic substance is','Asbestos dust','Sawdust','Nitrogen(II) oxide','Carbon (II) oxide','','','a','','utme','2004',1080,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:32'),(138,'The solubility in mol dm-3 of 20g of CuSO4 dissolved in 100g of water at 1800C is  [Cu = 64, S = 32, O = 16]','0.13','0.25','1.25','2','','','c','','utme','2004',1130,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:31'),(139,'Calcium Tetraoxosulphate(VI) dissolves in water only sparingly to form a','Solution','Suspension','Precipitate','Colloid','','','d','','utme','2004',1130,'Admin','0000-00-00 00:00:00','2020-08-19 13:26:56'),(140,'Which of these compounds is a normal salt','NaHS','NaSO4','NaHCO3','Na2CO3','','','d','','utme','2004',1098,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:50'),(141,'What volume of 0.5mol dm-3 H2SO4 will exactly neutralize 20cm3 of 0.1 mol dm-3 NaOH solution','2.0cm3','5.0cm3','6.8cm3','8.3cm3','','','a','','utme','2004',1198,'Admin','0000-00-00 00:00:00','2020-08-17 16:08:50'),(142,'The oxidation state of chlorine in HClO4 is','-5','-1','1','7','','','d','','utme','2004',1177,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:00'),(143,'ZnO(s) + CO (g) → Zn(s) + CO2 (g). ','Decomposed','Displaced','Oxidized','Reduced','','','d','','utme','2004',1142,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:13'),(144,'Which of the following acts as both a reducing and an oxidizing agent','H2','SO2','H2S','CO2','','','b','','utme','2004',1169,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:01'),(145,'In the electrolysis of brine, the anode is','Platinum','Copper','Zinc','Carbon','','','d','','utme','2004',1078,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(146,'The mass of silver deposited when a current of 10A is passed through a solution of silver salt for 4830s is    [Ag = 108, F = 96500 Cmol-1]','108.0g','54.0g','27.0g','13.5g','','','b','','utme','2004',1170,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(147,' 2CO(g)  +  O2(g) →  2CO2(g)\\nGiven that   Δ H [CO] is 110.4kJ mol-1 and Δ H [CO2] is -393.0kJ mol-1, the energy change for the reaction above is\\n','-503.7kJ','-282.6kJ','+282.6kJ','+503.7kJ','','','N','','utme','2004',1107,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:48'),(148,'Which of the following hydrogen halides has the highest entropy value','HF','HCl','HBr','Hl','','','a','','utme','2004',1071,'Admin','0000-00-00 00:00:00','2020-08-20 00:26:55'),(149,' N2O4(g)    ⇌  2NO2(g)','A constant volume','An increase in pressure','A decrease in pressure',' A decrease in volume','','','c','','utme','2004',1127,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:23'),(150,'Which of the following shows little or no net reaction when the volume of the system is decreased',' H2(g)  +  l2(g)  ⇌  2Hl(g)','2NO2(g)  ⇌  N2O4(g)',' PCl5(g)   ⇌ PCl3(g)  + Cl2(g)',' 203(g)   ⇌  3O2(g)','','','a','','utme','2004',1163,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(151,'The allotrope of carbon used in the decolourization of sugar is','Graphite','Soot','Charcoal','Lampblack','','','c','','utme','2004',1129,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(152,'Which of the following gases can be collected by the method of downward delivery','Chlorine','Oxygen','Ammonia','Hydrogen','','','a','','utme','2004',1162,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(153,'Which steam is passed over red-hot carbon, the substances produced are','Hydrogen and trioxocarbonate(IV) acid','Hydrogen, oxygen and carbon(IV) oxide','Hydrogen and carbon (II) oxide','Hydrogen and carbon (IV) oxide','','','c','','utme','2004',1184,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(154,' sulphur (IV) oxide bleaches by','Reduction','Oxidation','Hydration','Absorption','','','a','','utme','2004',1171,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:22'),(155,'Carbon is tetravalent because','The electrons in both the 2s and 2p orbitals are equivalent','The electrons in all the orbitals of carbon are equivalent','The 2s and 2p atomic orbitals hybridize','All the atomic orbitals of carbon hybridize','','','c','','utme','2004',1141,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(156,'Aluminium hydroxide is used in the dyeing industry as a','Salt','Dye','Mordant','Dispersant','','','c','','utme','2004',1091,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(157,'Alloys are best prepared by','Electroplating','Arc-welding','Reducing a mixture of their metallic oxides','Cooling a molten mixture of the metals','','','d','','utme','2004',1181,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(158,'Transition metals posses variable oxidation states because they have','Electrons in the d orbitals','Electrons in the s orbitals','A variable number of electrons in the p orbitals','Partially filled p orbitals','','','d','','utme','2004',1177,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(159,'Sodium metal is always kept under oil because it','Readily reacts with water','Is reduced by atmospheric nitrogen','Reacts vigorously on exposure to air','Reacts with oxygen and carbon(IV) oxide','','','c','','utme','2004',1153,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(160,'Oxyacetylene flame is used for iron-welding because it',' makes the iron metal solidity very quickly','Combines with oxygen to give a pop sound','Evolves a lot of heat when burnt','Dissociates to produce carbon (IV) oxide and oxygen','','','c','','utme','2004',1112,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(161,'The alkyl group can be represented by the general formula','CnH2n+1','CnH2n','CnH2n+2','CnH2n-2','','','a','','utme','2004',1088,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(162,'An isomer of C5H12 is','Butane','2-methylbutane','2-methylprpane','2-ethylbutane','','','b','','utme','2004',1192,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(163,'A characteristic of the alkane family is','Addition reaction','Elimination reaction','Substitution reaction','Neutralization reaction','','','c','','utme','2004',1096,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(164,'Which of these reagents can confirm the presence of a triple bond','Bromine water','Acidified KMnO4 ','Copper (I) chloride','Bromine gas','','','c','','utme','2004',1126,'Admin','0000-00-00 00:00:00','2020-08-20 13:41:03'),(165,'Vulcanization involves the removal of','A monomer','The single bond','The double bond','A polymer','','','c','','utme','2004',1115,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:20'),(166,'The reaction above is','Carboxylation','Decarboxylation','Acidification','Esterification','','','b','','utme','2004',1133,'Admin','0000-00-00 00:00:00','2020-08-15 15:41:22'),(167,' Alkanol + Alkanoic acid ⇌  Ester + water.\\nThe reverse reaction of the equation above is known as\\n','Hydrolysis','Saponification','Hydration','Fermentation','','','a','','utme','2004',1090,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:02'),(168,'In the production of soap, concentrated sodium chloride solution is added to','Increase the solubility of the soap','Decrease the solubility of the soap','Saponify the soap','Emulsify the soap','','','b','','utme','2004',1085,'Admin','0000-00-00 00:00:00','2020-08-15 00:47:06'),(169,'The gas that can be dried using concentrated Tetraoxosulphate (VI) acid is','Ammonia','Hydrogen bromide','Sulphur (IV) oxide','Hydrogen sulphide','','','c','','utme','2005',1303,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:06'),(170,'The property used in the industrial preparation of nitrogen and oxygen from air is','Rate of diffusion','Solubility','Density','Boiling point','','','d','','utme','2005',1212,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:50'),(171,'A dense white fume is formed when ammonia gas reacts with','H2(g)','O2(g)','HCI(g)','Cl2(g)','','','c','','utme','2005',1175,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(172,'In a flame test for calcium, the flame appears','Blue when viewed through a blue glass','Green when viewed through a blue glass','Orange-red when viewed through a blue glass','Brick-red when viewed through a blue glass','','','c','','utme','2005',1246,'Admin','0000-00-00 00:00:00','2020-08-20 13:43:23'),(173,'Which of the following alloys contain iron','Steel and permalloy','Duralumlin and steel','nd Soft Solder a Duralumlin ','Brass and bronze','','','a','','utme','2005',1171,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(174,'To obtain pure carbon(II) oxide from its mixture with carbon (IV)oxide, the mixture should be','Bubbled through concentrated Tetraoxosulphate(VI) acid','Bubbled through sodium hydroxide','Passed over heated copper(II) oxide','Bubbled through water','','','b','','utme','2005',1302,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(175,'N2(g)  +  3H2(g)  ⇌   2NH2(g)   Δ H = - 90kJ  In the equation above, the yield of ammonia can be decreased by','Adding a catalyst','Removing ammonia','Increasing the pressure','Increasing the temperature','','','d','','utme','2005',1175,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(176,'Metalloids are also referred to as','Metals','Semi-metals','Colloids','Non-metals','','','b','','utme','2005',1150,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(177,'The ores that can be concentrated by flotation are','Nitride ores','Chloride ores','Oxide ores','Sulphide ores','','','d','','utme','2005',1163,'Admin','0000-00-00 00:00:00','2020-08-18 05:48:30'),(178,'The most suitable metal that can be used as a lightening  conductor is','Aluminium','Iron','Copper','Silver','','','d','','utme','2005',1243,'Admin','0000-00-00 00:00:00','2020-08-14 12:48:06'),(179,'NH4CI(g) ⇌   NH3(g)  +  HCI(g)   The reaction above can only attain equilibrium if','It is in a closed system','It is in an open system','One of the products is removed','A gaseous reactant is added','','','a','','utme','2005',1147,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(180,'When pure aluminum metal is heated to red hot in the presence of nitrogen gas, the compound formed is','AI2N','AIN','AI2N2','AI2N3','','','b','','utme','2005',1247,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(181,'The most abundant element on the earth’s crust is','Oxygen','Fluorine','hydrogen','nitrogen','','','a','','utme','2005',1239,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:01'),(182,'The pressure of 100cm3 of oxygen at 350C is 750mmHg. What will be the volume of the gas if the pressure is reduced to 100mmHg  without changing the temperature','850cm3','750cm3','650cm3','580cm3','','','b','','utme','2005',1232,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:01'),(183,'What is the valence shell electron configuration of the element with atomic number 17','1s22s22p63s23p5','1s22s22p63s23p4','3s23p5','2s22p6','','','a','','utme','2005',1191,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:00'),(184,'A heterogeneous mixture can be defined as any mixture','Whose composition is uniform','Whose composition is not uniform','Formed by solids and liquids','Of a solute and a solvent','','','b','','utme','2005',1150,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:34'),(185,'The density of a certain gas is 1.98g dm-3 at s.t.p. What is the molecular mass of the gas   [Molar volume of a gas at s.t.p = 22.4dm-3]','26.0g','31.0g','54.0g','44.0g','','','d','','utme','2005',1179,'Admin','0000-00-00 00:00:00','2020-08-20 07:53:45'),(186,'Treatment of cancer   II. Detection of leakages in water mains   III. Detection of the ages of ancient tools    Which combination of the above refers to the uses of radioactive isotopes?','I, II and III','I, II, III and IV','II and III','I and II','','','a','','utme','2005',1248,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(187,'An element will readily form an electrovalent compound if its electron configuration is','2,8,8','2,,8,4','2,8,5','2,8,1','','','d','','utme','2005',1212,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:35'),(188,'How many moles of limestone will be required to produce 5.6g of CaO','0.20 mol','1, 12mol','0.10 mol','0.56 mol','','','c','','utme','2005',1239,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:50'),(189,'The shape of the hydrocarbon compound CH4 is','Square planar','Tetrahedral','Planar','Linear','','','b','','utme','2005',1187,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:56'),(190,'Which of these properties gives a solid its definite shape','Weak intermolecular attraction','High boiling point','High melting point','Strong intermolecular attraction','','','d','','utme','2005',1211,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(191,'The component of an atom that contributes least to its mass is the','Nucleus','Neutron','Electron','Proton','','','c','','utme','2005',1214,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(192,'Sugar is separated from its impurities by','Distillation','Evaporation','Precipitation','Crystallization','','','d','','utme','2005',1229,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(193,'Equal moles of ethyne and hydrogen iodide react to give','CH2 = CH2','CH2 = CHI','CH2 – CHI','CH2 – CI3','','','b','','utme','2005',1266,'Admin','0000-00-00 00:00:00','2020-08-20 13:43:23'),(194,'How many hydrogen atoms does a single ring cycloalkane have less than the corresponding open- chain alkane','Three','One','Four','Two','','','d','','utme','2005',1251,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(195,'The decolourization of the purple colour of a tetraoxomanganate (VII) ion is a test for','Alkanals','Alkanes','Alkenes','Alkanols','','','c','','utme','2005',1204,'Admin','0000-00-00 00:00:00','2020-08-15 15:31:32'),(196,'In the purification of impure samples of ethyl ethanoate synthesized by esterification, concentrated sodium trioxocarbonate(IV) solution is used to remove','Water','Acidic impurities','Basic impurities','Ethoxyethane','','','b','','utme','2005',1246,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:22'),(197,'A substance that is used as a ripening agent for fruits is','Propene','Methane','Ethene','Butane','','','c','','utme','2005',1145,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(198,'Which of the following are structural isomers','Propanoic acid and propan-1, 2-diol','Ethanoic acid and propanoic acid','Ethan-1, 2 –diol and ethanoic acid','Propanal and propanone','','','d','','utme','2005',1203,'Admin','0000-00-00 00:00:00','2020-08-18 15:20:34'),(199,'The enzyme responsible for converting sucrose into two simple isomeric sugars is','Invertase','Amylase','Lactose','Maltase','','','a','','utme','2005',1233,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(200,'Natural water collected from rivers and ponds contains oxygen, carbon(IV) oxide and','Chlorine','Hydrogen','Sulphur(IV) oxide','Nitrogen','','','c','','utme','2005',1175,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:01'),(201,'Kerosene is commonly used to remove the red colour stain of palm oil from clothes because it','Helps to spread the oil over a larger surface area','Makes the oil evaporate easily by dissolving it','Helps to dilute the oil and reduce its colour','Reacts with the oil to form an odourless compound','','','b','','utme','2005',1209,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(202,'25cm3 of a mixture of noble gases was obtained from air after the removal of other constituents. What was the original volume of air','125cm3','1250cm3','2500cm3','80cm3','','','c','','utme','2005',1190,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:42'),(203,'The solubility curve shows the variation of solute concentration with','Volume','Vapour density','Pressure','Temperature','','','d','','utme','2005',1189,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:14'),(204,'The air around smelting industries is likely to contain','CO2, SO3 and H2','SO2N2 and CO2','H2, SO2 and CO2','H2S, CO and N2','','','b','','utme','2005',1264,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(205,'When water boilers are used for a long period of time, the solid substances left behind as scale are','Magnesium trioxosilicate (IV) and calcium Tetraoxosulphate(VI)','Magnesium trioxosilicate(IV) and rust','Clay and magnesium trioxosilicate (IV)','clay and rust','','','','','utme','2005',1190,'Admin','0000-00-00 00:00:00','2020-08-16 14:08:28'),(206,'The gas that is the most dangerous pollutant to humans is','Carbon(IV) oxide','Nitrogen (II)oxide','Hydrogen sulphide','Sulphur(IV) oxide','','','c','','utme','2005',1285,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(207,'In which of the following reactions can the oxidation number of nitrogen be said to have increased','FeSO4(aq)  +  NO(g) →   Fe(NO)SO4(S)','2NO(g)  +  O2(g) → 2NO2(g)','NO(g)  +  CI2(g)  → NOCI2(l)','NO(g)  +  Br2(l)   → NOBr2(l)','','','b','','utme','2005',1230,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:00'),(208,'A concentrated solution containing H+, Cu2+, OH- and Cl- was electrolyzed using platinum electrodes. The ion that will be discharged at the cathode is','OH-','Cl-','Cu2+','H+','','','c','','utme','2005',1160,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:13'),(209,'Phenolphthalein in acidic solution is','Colourless','Yellow','Red','Orange','','','a','','utme','2005',1166,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(210,'When sulphur (IV) oxide is passed into a solution of sodium hydroxide for a long time. It eventually produces a solution of','Na2SO4','NaHSO4','Na2SO3','NaHSO3','','','d','','utme','2005',1173,'Admin','0000-00-00 00:00:00','2020-08-15 00:48:23'),(211,'What is the correct IUPAC name for NO2','Dioxonitrate(III) ion','Dioxonitrate(IV) ION','trioxonitrate(iii) ion','trioxonitrate(iv) ion','','','a','','utme','2005',1204,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(212,'What will happen if an aluminum spoon is used to stir a solution of iron (II) trioxonitrate(V)','The spoon will be reduced while the iron(II) ions will be oxidized','The spoon will be oxidized while the iron (II) ions will be reduced to the metal','The spoon will be reduced','The spoon will increase in size','','','b','','utme','2005',1293,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:54'),(213,'Which of the following equimolar solutions will have the highest pH','NH4OH','CH3COONa','HCI','NaOH','','','c','','utme','2005',1176,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(214,'2H2 + O2  → 2H2O  ΔH = -571Kj  In equation above, how much heat will be liberated if 12.0g of hydrogen is burnt in excess oxygen?','-1713kJ','+1142kJ','-571kJ','-1142kJ','','','a','','utme','2005',1227,'Admin','0000-00-00 00:00:00','2020-08-18 03:59:46'),(215,'Which of the following ions requires the largest quantity of electricity for discharge at an electrode','2.5 moles of Cu2+','4.0 moles of CI-','2.0 moles of Al3+','3.0 moles of Na+','','','c','','utme','2005',1223,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(216,'H2(g)  +  Br2(g) →  2BHr(g)  The reaction above is carried out at 250C. If Δ H is kJ mol-1 and   Δ S is -106J mol-1K-1 the reaction will','Proceed spontaneously at lower temperatures','Not proceed spontaneously at the given temperature','Proceed spontaneously at the given temperature','[proceed in the reverse direction at the given temperature','','','d','','utme','2006',1150,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(217,'Na2CO3(aq)  +  2HCI(aq)  → 2NaCI(aq)  +  H2O(l)  +  CO2(g)    How many moles of sodium trioxocarbonate (IV) are there in a 25cm3 solution which required 10cm3 of 0.05 mol dm-3 hydrochloric acid solution to neutralize it?','0.100mloe','0.001mole','1.000mole','0.010mole','','','d','','utme','2006',1126,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:30'),(218,'The ion that can be used as an oxidizing agent is','Fe3+','F-','Ca2+','Au3+','','','c','','utme','2006',1129,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:13'),(219,'Zinc and carbon rods are used as anode and cathode respectively in a','Voltaic cell','Lead accumulator','Leclanche cell','Daniel cell','','','c','','utme','2006',1145,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(220,'Trioxonitrate(V) acid is not used for preparing hydrogen gas from metals because it','Renders the metal passive','Is strongly oxidizing','Is volatile','','','','a','','utme','2006',1174,'Admin','0000-00-00 00:00:00','2020-08-20 13:43:23'),(221,'Forms a layer of oxide on the metal   If the heat of combustion of hydrogen is -285.8kJ. what is the heat of formation of water','-285.8Kj','-571.6kJ','+571kJ','+285.8kJ','','','a','','utme','2006',1186,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:22'),(222,'In the electrolysis of CuSO4(aq) using platinum electrodes, the reaction at the anode is','4H+  +  4e-  → 2H2','2OH  +  2OH-  →  2H2O + O2','2OH-  - 2e-    → 2OH','4OH-  -  4e- →  2H2O + O2','','','d','','utme','2006',1165,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(223,'IN which of the following is the oxidation number of sulphur equal to -2','H2S','SO3','S8','SO2','','','a','','utme','2006',1162,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:00'),(224,'5SO2(g)  +  2KMnO4(aq)  +  2H2O(l)  ⇌   K2SO4(aq)  +  2MnSO4(aq)  +   2H2HSO4(aq)   In the reaction above, the products give a','Colourless solution','Purple precipitate','Purple solution','Colourless precipitate','','','a','','utme','2006',1173,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(225,'The solution that will conduct the highest amount of electricity is','2.0 moldm-3 of ethanoic acid','0.5 mol dm-3 of ethanoic acid','2.0 mol dm-3 of hydrochloric acid','0.5 moldm-3 of hydrochloric acid','','','c','','utme','2006',1140,'Admin','0000-00-00 00:00:00','2020-08-20 13:40:58'),(226,'What is the mola. Mass of a substance, if 0.4 mole of the substance has a mass of 25.0g','6.3g','40.0g','62.5g','2.5g','','','c','','utme','2006',1226,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(227,'The order in which a mixture of sand ammonium chloride and sodium chloride can be separated is','Sublimation   dissolution  filtration  evaporation','Dissolution  dryness  filtration  evaporation','Filtration  sublimation  evaporation  dryness','Dissolution  filtration  sublimation  evaporation','','','a','','utme','2006',1118,'Admin','0000-00-00 00:00:00','2020-08-19 18:52:00'),(228,'The volume of 2.5 moles of oxygen at s.t.p is','56.0dm3','84.0dm3','50.0dm3','20.0dm3','','','a','','utme','2006',1138,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:29'),(229,'[Molar volume of a gas at s.t.p + 22.4dm3} Nuclear fission involves the splitting of a heavy element into two nuclei of','Equal masses with a release of energy','Nearly equal masses with a release of energy and radiation','Equal masses with a release of energy and radiation','Unequal masses without any release of energy','','','b','','utme','2006',1182,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:33'),(230,'2C2H2(g)  +  5O2(g)     4CO2(g)  +  2H2O(g) In the reaction, the mass of carbon (IV) oxide produced on burning 78g of ethyne is [C = 12, O = 16, H = 1]','39','352g','264g','156g','','','c','','utme','2006',1102,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(231,'A particle that contain s 11protons, 12 neutrons and 10 electrons is probably a','Metallic ion','Non-metallic ion','Neutral metal','Neutral non-metal','','','a','','utme','2006',1198,'Admin','0000-00-00 00:00:00','2020-08-19 19:25:45'),(232,'The element with the electron configuration 1s22s22p3 is','Oxygen','Chlorine','Nitrogen','Calcium','','','c','','utme','2006',1207,'Admin','0000-00-00 00:00:00','2020-08-20 07:49:46'),(233,'A difference between chemical and physical change is that in a chemical change','Heat is supplied',' A new substance is formed','Oxygen is consumed','A reversible process occurs','','','b','','utme','2006',1223,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:29'),(234,'A degree in atomic size and an increase in knuckler charge across a period lead to','A decrease in covalency in bond formation','An increase in chemical reactivity','An increase in the tendency to loss electrons','A decrease in electro positivity','','','d','','utme','2006',1130,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(235,'The idea of planetary electrons was that of','Bohr','Thompson','Rutherford','Dalton','','','a','','utme','2006',1173,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(236,'If 30cm3 of a gas at 500C is warmed to 800C at a fixed pressure. The fractional increase in volume is','0.91','0.009','1.09','0.093','','','d','','utme','2006',1202,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(237,'Which of the following has an isomer','C4H10','C6H6','C2H4','C2H6','','','a','','utme','2006',1194,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:34'),(238,'An example of aliphatic unsaturated hydrocarbon is','Butanol','Propene','Pentane','Benzene','','','b','','utme','2006',1148,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(239,'One mole of a hydrocarbon contains 36g of carbon and its vapour density is 20. The structure of the hydrocarbon is','CH3CH2CH3','CH3CH = CH2','CH3CH2C = CH','CH3C = CH','','','d','','utme','2006',1160,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:22'),(240,'CH3-CH2-C = CH  The hybridization in the compound above is','Sp3 and sp','Sp3 and sp2','Sp','Sp2','','','a','','utme','2006',1188,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:43'),(241,'Nigerian crude oil is described as light crude because of its','Low aliphatic hydrocarbon content','Low sulphur content','High natural gas content','High octane number','','','c','','utme','2006',1192,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:50'),(242,'The gas obtained as a product of anaerobic action ob organic matter buried in the earth is','Nitrogen(IV) oxide','Carbon(IV) oxide','Methane','Ethene','','','c','','utme','2006',1170,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:56'),(243,'When a crystal was added to the clear solution of its salt, the crystal did not dissolve and the solution remained unchanged. This showed that the solution was','Supersaturated','Unsaturated','Saturated','Concentrated','','','c','','utme','2006',1180,'Admin','0000-00-00 00:00:00','2020-08-15 00:35:57'),(244,'The produce of the combustion of candle wax are','Carbon(IV) oxide and water','Oxygen and water','Hydrogen and water','Carbon(II)oxide an d water','','','a','','utme','2006',1158,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(245,'When 5.0cm3 of a saturated solution of sugar of molar mass 342g at 400C was evaporated to dryness, 34.2g of dry solid was obtained. The solubility of sugar at 400C is','7.0 mol dm-3','3.5 mol dm-3','2.0 mol dm-3','10.0mol dm-3','','','c','','utme','2006',1197,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(246,'Which of the following results in the fall of acid rain','Gaseous hydrocarbons','Oxide of lead','Particulate matter','Oxides of sulphur','','','d','','utme','2006',1131,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(247,'Water has the ability to dissolve almost all substances because its molecule has a structure with','One positive end and one neutral end','Two positive ends','One positive end and one negative end','Two negative ends','','','c','','utme','2006',1174,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:22'),(248,'An emulsion may be produced by shaking a detergent solution with','Palm wine','Palm oil','Ethanoic acid','Water','','','d','','utme','2006',1126,'Admin','0000-00-00 00:00:00','2020-08-16 12:53:19'),(249,'One heating may be produced by shaking a detergent solution with','Cu(NO3)2','AgNO3','Ca(NO3)2','NaNO3','','','b','','utme','2006',1127,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(250,'Dynamic equilibrium describes a situation where','A reaction gives back the reactants','Reactants are converted to products','The concentration of reactants and products is equal','Both forward and reverse reaction proceed at the same rate','','','d','','utme','2006',1202,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:14'),(251,'The raw material used for the smelting of iron ore in a furnace is','Zn(NO3)2','CaSO4','CuSO4','CaCO3','','','d','','utme','2006',1169,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(252,'Carbon exists naturally in the combined state as','Diamond','Coal','Wood','Graphite','','','c','','utme','2006',1138,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:50'),(253,'The sulphide which is insoluble in dilute hydrochloric acid is','CuS','Na2S','FeS','ZnS','','','a','','utme','2006',1148,'Admin','0000-00-00 00:00:00','2020-08-18 20:28:22'),(254,'The efficiency of a solid catalyst to increase reaction rates depends on its','Concentration','Solubility','Quantity','Surface area','','','d','','utme','2006',1194,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(255,'In the industrial production of H2 from natural gas, the CO2 produced along with the H2 is removed by','Passing the mixture into lime water','Washing under pressure','Drying over phosphorous(V)oxide','Using ammoniac copper(l) chloride','','','b','','utme','2006',1141,'Admin','0000-00-00 00:00:00','2020-08-19 13:26:56'),(256,'Which of the following typically represents a photochemical reaction','Conversion of dinitrogen (IV) oxide to nitrogen(IV) oxide','Conversion of silver halides to grey metallic silver','Decomposition of calcium hydroxide to its oxide','Formation of water from hydrogen and oxygen molecules','','','b','','utme','2006',1189,'Admin','0000-00-00 00:00:00','2020-08-16 00:00:53'),(257,'Group IA metals are not found free in nature because they','Have high melting and boiling points','Conduct heat and electricity','Are very reactive and unstable','Are malleable and ductile','','','c','','utme','2006',1149,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:33'),(258,'The characteristic colour of the flame shown when a copper salt moistened with concentrated hydrochloric acid on platinum is put on a bunzen burner is','Green','Lilac','Yellow','Brick-red','','','a','','utme','2006',1135,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(259,'The ion that will give a white precipitate with aqueous NaOH and soluble in excess of the base is','Zn2+','Mg2+','Ca2+','Cu2+','','','a','','utme','2006',1156,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(260,'Which of he following pairs of substances will react further with oxygen to form a higher oxide','SO2 and NO','CO2 and H2O','CO and CO2','NO and H2O','','','a','','utme','2006',1108,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(261,'Which of the following is an example of a mixture','Blood','Sand','Washing soda','Common salt','','','a','','utme','2010',1342,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(262,'Calculate the percentage by mass of nitrogen in calcium trioxonitrate (V)   {Ca = 40, N = 14, O = 16}','13.10%','17.10%','27.60%','8.5','','','d','','utme','2010',1262,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(263,'The droplets of water observed around a bottle of milk taken out of though refrigerator is due to the fact that the','Temperature of the milk drops as it loses heat into the surroundings','Saturated vapour pressure of the milk is equal to the atmospheric pressure','Water vapour in the air around loses some of its energy to the bottle','Water vapour in the air around the bottle gains some energy from the bottle','','','c','','utme','2010',1289,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(264,'The volume of a gas is Vcm3 at P mm Hg. What is the new volume of the gas if the pressure is reduced to half at constant temperature','2 V cm3','V  2cm3','V cm3','4 V cm3','','','a','','utme','2010',1285,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(265,'Moving from left to right across a period, the general rise in the first ionization energy can be attributed to the','Increase in nuclear charge','Decrease in screening effect','Increase in screening effect','Decrease in nuclear charge','','','a','','utme','2010',1305,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(266,'How many unpaired electron(s) are there in the nitrogen  sub - levels','2','1','0','3','','','d','','utme','2010',1244,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(267,'The stability of the noble gases is due to the fact that they','Have duplet or octet electron configurations','Belong to group zero of the periodic table','Are volatile in nature','Have no electron in their outermost shells','','','a','','utme','2010',1310,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(268,'The maximum number of electrons in the L shell of an atom is','8','18','32','2','','','a','','utme','2010',1286,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(269,'Elements in the same periodic table have the same','Atomic number','Chemical properties','Physical properties','Number of shells','','','d','','utme','2010',1340,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(270,'A noble gas with a high power of fog penetration used in aerodrome beacons is','Argon','Helium','Neon','Krypton','','','c','','utme','2010',1275,'Admin','0000-00-00 00:00:00','2020-08-19 18:51:59'),(271,'Permanent hardness of water can be removed by','Adding slaked lime','Adding caustic soda','Boiling','Filtration','','','b','','utme','2010',1313,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(272,'Substances employed as drying agents are usually','Hygroscopic','Efflorescent','Acidic','Amphoteric','','','a','','utme','2010',1260,'Admin','0000-00-00 00:00:00','2020-08-19 11:43:04'),(273,'Calculate the solubility in mol dm -3 of 40g of Cu So4 dissolved in 100g of water at 1200C  {Cu = 64, S = 32, 0 = 16}','2.5','0.4','0.25','4','','','a','','utme','2010',1271,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:32'),(274,'Coffee stains can best be removed by','Turpentine','A solution of borax in water','Ammonia solution','Kerosene','','','b','','utme','2010',1240,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:49'),(275,'Carbon (II) oxide is considered dangerous if inhaled mainly because it','Competes with oxygen in the blood','Competes with carbon (IV) oxide in the blood','Can cause lung cancer','Can cause injury to the nervous system','','','a','','utme','2010',1301,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(276,'The acid that is used to remove rust is','Hydrochloric','Trioxonitrate (V)','Tetraoxosulphate (VI)','Boric','','','b','','utme','2010',1309,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(277,'Calculate the volume of 0.5 mol dm-3 H2SO4 that is neutralized by 25cm3 of 0.1 mol dm-3 NaOH','2.5cm3','0.4cm3','0.1cm3','5.0cm3','','','a','','utme','2010',1280,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(278,'The colour of methyl orange in alkaline medium is','Pink','Orange','Red','Yellow','','','d','','utme','2010',1252,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(279,'Which of the following salts is slightly soluble in water','CaSO4','Na2CO3','PbCl2','AgCl','','','a','','utme','2010',1336,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(280,'6AgNO3(aq)  +  PH3(g) +    3H2O(l)      →    6Ag(s)+   H3PO3(aq)   +    6HNO3(aq)  In the reaction above, the reducing agent is','H2O(l)','PH3(g)','AgNO3(aq)','HNO3(AQ)','','','b','','utme','2010',1291,'Admin','0000-00-00 00:00:00','2020-08-19 13:26:56'),(281,'The IUPAC nomencalatyre of the compound LiAIH4 is','Aluminium tetrahydrido lithium','Tetrahydrido lithium aluminate (III)','Lithium aluminium hydride','Lithium tetrahydridoaluminate (III)','','','d','','utme','2010',1304,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:36'),(282,'Iron can be protected from corrosion by coating the surface with','Silver','Copper','Zinc','Gold','','','c','','utme','2010',1252,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(283,'What quantity of aluminum is deposited when a current of 10A is passed through a solution of an aluminum salt for 1930s  {AI = 27, F = 96500 C mol-}','1.8g','5.4g','14.2g','0.2g','','','a','','utme','2010',1360,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(284,'In which of the following is the entropy change positive','Reaction between an acid and a base','Addition of concentrated acid to water','Dissolution of sodium metal in water','Thermal dissociation of ammonium chloride','','','c','','utme','2010',1315,'Admin','0000-00-00 00:00:00','2020-08-19 05:34:34'),(285,'If a reaction is exothermic and thee is a great disorder, it means that','The reaction is in a state of equilibrium','There will be a large increase in free energy','There will be a large decrease in free energy','The reaction is static','','','b','','utme','2010',1223,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(286,'In the preparation of oxygen by heating KCIO3 in the presence of MnC2, only moderate hear is needed because the catalyst acts by','Increasing the surface area of the reactant','Increasing the rate of the reaction','Lowering the energy barrier of the reaction','Lowering the pressure of the reaction','','','c','','utme','2010',1306,'Admin','0000-00-00 00:00:00','2020-08-20 07:50:12'),(287,'2H2(g) +    O2(g)  ⇌ 2H2O(g)    ΔH   =  - ve  What happens to the equilibrium constant of the reaction above if the temperature is increased?','It becomes zero','It decreases','It increases','It is unaffected','','','b','','utme','2010',1360,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(288,'To a solution of an unknown compound, a little dilute Tetraoxosulphate (IV) acid was added with some freshly prepared (II) Tetraoxosulphate (VI) Solution. The brown ring observed after the addition of a stream of concentrated  Tetraoxosulphate (VI) acid confirmed the presence of','CI','SO','NO','CO','','','c','','utme','2010',1275,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(289,'Which of the following is used as a rocket fuel','CH3COOH','H2SO4','HCL','HNO3','','','d','','utme','2010',1291,'Admin','0000-00-00 00:00:00','2020-08-20 07:48:28'),(290,'A constituent common to moist air, it gradually rusts. This is due to the formation of','Silver','Copper','Tin','Lead','','','c','','utme','2010',1299,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(291,'When iron is exposed to moist air, it gradually rusts. This is due to the formation of','Anahydrous  iron (III) oxide','Anhydrous iron (II) oxide','Hydrated iron (II) oxide','Hydrated iron  (III) oxide','','','d','','utme','2010',1300,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(292,'A compound gives an orange red colour to a non luminous flame. This compound is likely to contain','Ca2+','Fe3+','Fe2+','Na+','','','a','','utme','2010',1273,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(293,'Stainless steel is used for making','Tools','Coins and medals','Moving parts of clocks','Magnets','','','a','','utme','2010',1275,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(294,'The residual solids from the fractional distillation of petroleum are used as','Raw materials for the cracking process','Fuel for driving tractors','Fuel for jet engines','Coatings for pipes','','','d','','utme','2010',1299,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(295,'Which of the following is used as fuel in miners’ lamp','Ethyne','Ethane','Ethane','Ethanol','','','a','','utme','2010',1270,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(296,'Which of the following organic compounds is very soluble in water','C2H2','C2H4','CH3COOC2H5','CH3COOH','','','d','','utme','2010',1332,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35'),(297,'Benzene reacts with hydrogen in the presence of nickel catalyst at 1800C to give','Toluene','Cyclopentane','Cyclohexane','Xylene','','','c','','utme','2010',1312,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:50'),(298,'Which of the following is used to hasten the ripening of fruit','Ethanol','Ethyne','Ethane','Ethane','','','d','','utme','2010',1321,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:41'),(299,'The final products of the reaction between methane and chloride in the presence of ultraviolet light are hydrogen chloride and','Dichloromethane','Tetrachloromethane','Chloromethane','Trichloromethane','','','b','','utme','2010',1300,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(300,'The correct order of increasing boiling points of the following  compounds C3H7OH, C7H16 and C4H10 is','C4H10  →  C7H16 → C3H7OH','C7H16 → C3H7OH → C4H16','C4H10  → C3H7OH  → C4H10','C3H7OH →  C4H10  → C7H16','','','a','','utme','2010',1344,'Admin','0000-00-00 00:00:00','2020-08-19 10:09:21'),(301,'One of the major uses of Alkanes is','In the hydrogenation of oils','In the textile industries','In the production of plastics','As domestic and industrial fuels','','','d','','utme','2010',1246,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:34'),(302,'The haloalkanes used in the dry cleaning industries are','Chloroethane and dichloroethene','trichloroethene and tetrachloroethene','chloromethane and dichloroethene','Trichloromethane and tetrachloromethane','','','d','','utme','2010',1320,'Admin','0000-00-00 00:00:00','2020-08-20 07:51:07'),(303,' Two hydrocarbons X and Y were treated with bromine water. Decolorized the solution and Y did not. Which class of compound does Y belong','Alkynes','Alkenes','Alkanes','Benzene','','','c','','utme','2010',1245,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:48'),(304,'The compound that is used as an anaesthetic is','CHCI3','CH2C2','CH3CI','CCI4','','','a','','utme','2010',1256,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:35');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `civiledu` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=437 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `civiledu` VALUES (1,'Who among the following could be described as the founding father of Nigerian nationalism?','Nnamdi Azikiwe','Herbert Macauley','Ahmadu Bello','Obafemi Awolowo','','','b','','wassce','2014',94,'Admin','2016-11-26 14:40:53','2020-08-20 11:09:37'),(2,'Rule of Law means','supremacy of the law','absence of legal immunity','peace, order and stability','obedience to any authority','','','a','','wassce','2014',93,'Admin','2016-11-26 14:40:53','2020-08-20 11:09:37'),(3,'A major characteristic of civil society is','the desire to win election','corporate responsibility','social responsibility','political gerrymandering.','','','b','','wassce','2014',91,'Admin','2016-11-26 14:40:53','2020-08-19 01:53:07'),(4,'Citizenship status is acquired through','birth, indigenization, colonization and referendum','association, convention, naturalization and incorporation','birth, naturalization, honorary and registration','registration, inter-relationship, integration and declaration.','','','c','','wassce','2014',93,'Admin','2016-11-26 14:40:53','2020-08-18 21:52:33'),(5,'Human Rights are basic natural rights which people enjoy primarily because they are','members of a political party','international citizens','members of a community','human beings.','','','d','','wassce','2014',79,'Admin','2016-11-26 14:40:53','2020-08-12 16:40:22'),(6,'Interpersonal relationship exists when','citizens pay their taxes regularly to inland revenue service','citizens are politically conscious and participate in voting','there is interaction between persons in a social setting.','groups share social interest and communal aspiration','','','d','','wassce','2014',84,'Admin','2016-11-26 14:40:53','2020-08-20 11:18:08'),(7,'Cultism can be described to be','amiable','attractive','dangerous','harmless.','','','c','','wassce','2014',83,'Admin','2016-11-26 14:40:53','2020-07-27 15:24:24'),(8,'Based on the statements above, the decision of the student on having a bullet proof vest shows that cultism','spreads fear and terror.','is a training ground for armed forces.','breeds courageous graduates.','propagates self - defence.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','a','','wassce','2014',92,'Admin','2016-11-26 14:40:53','2020-08-13 12:50:49'),(9,'It could be inferred from the statements above that cultism in schools could lead to','sudden prosperity.','uninterrupted academic calender.','popularity on campus.','untimely death.','NEWS: ‘Rival Cult Group Killed Ten on Campus’<br> \tSTUDENT: I will definitely need a bullet proof vest before I can go back to the Campus.<br>','','d','','wassce','2014',94,'Admin','2016-11-26 14:40:53','2020-08-20 11:18:08'),(10,'Victims of human trafficking are usually compelled to engage in','lucrative employment','visiting tourist sites','part - time studies','forced labour.','','','d','','wassce','2014',88,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:45'),(11,'One habit which People Living With HIV/AIDS (PLWHAs) must avoid to remain healthy and productive is','regular contact with healthy people.','self - pity and self - medication','participation in profitable ventures','pursuit of academic studies.','','','b','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-08-18 21:52:33'),(12,'Youth empowerment is best described as the','training given to individuals for acquiring means livelihood','practice of engaging in prospective career','provision of subsidized meals to the citizens by government,','mobilization of citizens for political rally.','','','a','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:47'),(13,'The National Assembly, Presidency and Court which are inter - related and interdependent in our democracy constitute the','tiers of government','types of democracy','forms of government.','arms of government','','','d','','wassce','2014',75,'Admin','2016-11-26 14:40:54','2020-08-12 16:40:23'),(14,'A system of government that listens to public opinion and tolerates opposition is','dictatorial regime','capitalist regime','democratic regime','socialist regime','','','c','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-07-25 18:35:32'),(15,'A situation where most citizens fail to vote in elections could be described as political','socialization','culture.','apathy','legitimacy','','','c','','wassce','2014',80,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:50'),(16,'The division of Nigeria into various constituencies with each electing a person to represent it in the National Assembly is a demonstration of','checks and balances','popular participation','political rivalry among the constituents','drive towards secession in the country.','','','b','','wassce','2014',91,'Admin','2016-11-26 14:40:54','2020-08-13 13:00:57'),(17,'In Nigeria, public servants are expected to be','non - partisan','political','ambitious','apolitical','','','a','','wassce','2014',81,'Admin','2016-11-26 14:40:54','2020-08-19 01:53:07'),(18,'The principle that public servants cannot be held responsible for their official actions denotes','impartiality','accountability','anonymity','neutrality.','','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:54','2020-08-11 09:19:38'),(19,'Universal Declaration of Human Rights (UDHR) is based on the resolution of the','Human Rights Watch','United Nations Organization','Amnesty International','League of Nations.','','','b','','wassce','2014',81,'Admin','2016-11-26 14:40:54','2020-08-20 08:04:46'),(20,'According to the story, Imoh’s parents were','wealthy couple','prominent politicians','honest and responsible','religious fanatics','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','c','','wassce','2014',95,'Admin','2016-11-26 14:40:54','2020-08-13 13:00:57'),(21,'What value did Imoh demonstrate.','Tolerance','Confidence','Fair play','Honesty','Imoh lived with her parents in Kakuri. They were good citizens who detested all forms of immoral acts. Both at home and in school, Imoh had been taught the virtues and values of a good citizen. However, while in a bus on her way home from school, the conductor forgot to ask for her fare. She knew that the right thing to do was to pay even when the conductor had forgotten to collect the fare. She also knew that there were other things she could do with the money if it was not paid, but she did what was expected by informing the conductor and paying the fare.','','d','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-07-14 13:33:56'),(22,'Conflicts are better resolved in the society through','tribunal','litigation.','dialogue','the court','','','c','','wassce','2014',94,'Admin','2016-11-26 14:40:54','2020-08-20 11:09:37'),(23,'To prevent the spread of HIV/AIDS, people should be encouraged to','avoid casual sexual activities','marry very early in life','engage in gainful employment','pursue higher education','','','a','','wassce','2014',103,'Admin','2016-11-26 14:40:54','2020-08-20 11:18:08'),(24,'The nearest government to the people and an important means of promoting grassroots development is the','state government','unitary government','local government','federal government','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-08-19 01:53:05'),(25,'Democratic governance is usually characterized by','free, fair and credible elections','buoyant and competitive economy','accessible employment opportunities','youth participation in governance','','','a','','wassce','2014',102,'Admin','2016-11-26 14:40:54','2020-08-20 08:04:45'),(26,'Political apathy often leads to','low level of participation','good governance','political stability','low literacy level','','','a','','wassce','2014',91,'Admin','2016-11-26 14:40:54','2020-08-20 11:18:08'),(27,'Which of the following is not necessary for public servants to perform effectively?','In - service training','Appointment based on nepotism','Value re - orientation for public servants','Incentives for meeting set goals','','','b','','wassce','2014',84,'Admin','2016-11-26 14:40:54','2020-08-13 12:50:49'),(28,'One of the conditions which can limit the enjoyment of Human Rights in Nigeria is the','acceptance of foreign aid by the government','improvement in literacy level of the citizens','declaration of state of emergency by government','periodic review of the constitution by government','','','c','','wassce','2014',93,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:02'),(29,'The implication of positive communal relationships is that it','promotes solidarity and love','ensures obedience to constituted authority','encourages ethnic diversity','promotes rural-urban drift.','','','a','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-08-20 08:04:46'),(30,'One major factor that attracts some Nigerians into human trafficking is','over - population related issues','influx of foreigners into the country','insatiable quest for quick wealth','influence of Western and social media','','','c','','wassce','2014',89,'Admin','2016-11-26 14:40:54','2020-08-19 01:53:06'),(31,'One of the reasons most HIV/AIDS patients are \treluctant to disclose their status is because of','the incurable nature of the ailment','fear of social stigmatization.','lack of sufficient public awareness','shortage of health counsellors','','','b','','wassce','2014',78,'Admin','2016-11-26 14:40:54','2020-08-19 01:53:05'),(32,'The position of the court on this matter justifies the essence of the','rule of law','legislature','police command','separation of powers','The Bawali High Court has ordered the police in Area Z Command to produce Mr. Zeb, who is in police custody for an alleged offence. The court insists that Mr. Zeb cannot be punished until he is found guilty of breach of any law of the land by a court of competent jurisdiction.','','a','','wassce','2014',90,'Admin','2016-11-26 14:40:54','2020-08-20 08:04:45'),(33,'Leaders can best protect the interests of their followers by','embarking on periodic constitutional review','creating socio - economic opportunities for foreigners','creating conducive atmosphere for participation','rewarding supporters with contracts','','','c','','wassce','2014',92,'Admin','2016-11-26 14:40:54','2020-07-14 13:34:07'),(34,'The most popular means through which citizens of a country can participate in politics is by','being members of political parties','engaging in constructive criticism','engaging in political debates','voting in elections','','','d','','wassce','2014',97,'Admin','2016-11-26 14:40:54','2020-08-13 13:01:09'),(35,'Civil societies are vital for the promotion of popular participation because they are','profit - oriented organizations','engaged in developmental programmes','involved in political education','formidable oppositions to government','','','c','','wassce','2014',97,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:09'),(36,'From this dialogue, it is very likely that Wanja will be exhibiting the following characters except','disobedience to constituted authority','truancy and perpetual lateness to school','hospitable attitude towards people','arrogance and unruly behaviour.','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',95,'Admin','2016-11-26 14:40:55','2020-08-20 11:18:08'),(37,'Which of the following may result from Wanja’s habit?','Humility for elders','Criminality in the society','Advocacy for hard drugs by NGOs','Excellent performance in school','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',81,'Admin','2016-11-26 14:40:55','2020-08-18 21:52:33'),(38,'From Ada’s admonition, it could be deduced that taking hard drugs could','make people respect the addicts.','lead to insanity of the addicts','make people to adore the drug addicts','ensure courteous behaviour by the addicts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','b','','wassce','2014',87,'Admin','2016-11-26 14:40:55','2020-08-13 13:00:57'),(39,'From the above dialogue, Wanja’s behaviour could be curtailed by','sending him abroad for further studies','financial inducement','re - orientation and rehabilitation','indulging him with expensive gifts','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','c','','wassce','2014',79,'Admin','2016-11-26 14:40:55','2020-08-20 11:18:08'),(40,'Which of the following governmental agencies is the most capable of controlling the activities of Wanja and his group?','National Agency for Food and Drug Administration and Control (NAFDAC)','National Orientation Agency (NO A)','National Emergency Management Agency (NEMA)','National Drug Law Enforcement Agency (NDLEA)','Ada:      Wanja, where are you going to in this ungodly hour of the night? <br> \tWanja:   I am heading towards my usual joint to enjoy myself <br>\t \tAda:       Which joint?<br> \tWanja:   XYZ. Night Club, where I take marijuana and alcoholic beverages. I really want to be high \t\t\t      tonight so that when people see me tomorrow, they will fear and respect me.<br> \tAda:     Remember, people who work under the influence of hard drugs and alcoholic beverages are prone to either psychiatric problems or premature death. Softly young man, imbibe good - natured character, you have the world at your feet and a destiny to fulfil. Pray you will not be the architect of your own misfortune.','','d','','wassce','2014',71,'Admin','2016-11-26 14:40:55','2020-08-07 21:33:40'),(41,'One of the major barriers to national development is the','low poverty level','existence of multi - party system','prevalence of corrupt practices','persistent rural - urban migration','','','c','','wassce','2014',75,'Admin','2016-11-26 14:40:55','2020-07-25 18:35:32'),(42,'The quotation above shows that the speaker is concerned about','nationalism','revolution','tourism','welfarism','“Here is your country. Cherish these natural wonders, cherish the natural resources, cherish the history and romance as sacred heritage, for your children and your children’s children. Do not let selfish men or greedy interests skin your country of its beauty, its riches...”','','a','','wassce','2014',89,'Admin','2016-11-26 14:40:55','2020-08-07 21:33:40'),(43,'A major benefit of youth empowerment is','dependence on foreign aid.','discouragement of patriotism','reduction in crime rate','negation to national prosperity','','','c','','wassce','2014',69,'Admin','2016-11-26 14:40:55','2020-08-20 08:04:44'),(44,'When leaders like Chief Bilisi place self interest above public good, the result is that','rebellion becomes inevitable','cooperation of citizens is guaranteed','International support for the regime is ensured','society becomes more peaceful and orderly.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','a','','wassce','2014',71,'Admin','2016-11-26 14:40:55','2020-08-18 21:52:33'),(45,'The condition of disorderly behaviour exhibited by the mob in the story best describes the','ineffectiveness of the police','breakdown of law and order','importance of ministerial position','need for stiffer security measures','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','b','','wassce','2014',78,'Admin','2016-11-26 14:40:55','2020-07-14 13:34:18'),(46,'A major lesson Nigerians could learn from the story is that','leaders can empower voters by giving them money','security officials should use brutal force on citizens','the underprivileged should not vie for elective positions','greed and related vices can cause serious breach of  the law.','Chief Bilisi was a prominent politician and honourable minister in Kantoga Republic. He had sponsored several candidates to power and made them to swear oath of allegiance to him. In return, they awarded contracts and offered financial and material assistance to him at the expense of the public. This had resulted in the non - provision of social amenities. These were some of the grievances the community had against him for which a mob gathered in front of his house shouting and hauling abusive words at him. They did not stop at that as they vandalized property and obstructed vehicular movement','','d','','wassce','2014',84,'Admin','2016-11-26 14:40:55','2020-08-20 11:09:37'),(47,'Which of the following is not a function of the Independent National Electoral Commission (INEC)?','Administering oath of office to elected officers','Conducting periodic elections','Recruitment of electoral officers.','Registration of political parties','','','a','','neco','2014',81,'Admin','2016-11-26 17:20:10','2020-07-25 18:35:32'),(48,'The upper legislative chamber of the National Assembly of Nigeria is also known as the','honourables','house of commons.','house of lords','senate','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:14','2020-08-07 21:33:40'),(49,'Cooperation between one country and another can be described as','bilateral','international','multilateral','multinational.','','','a','','neco','2014',94,'Admin','2016-11-26 17:20:14','2020-08-20 11:09:37'),(50,'The “right to vote and be voted for” can only be enjoyed by Nigerian citizens who attain the age of','13.','15.','16.','18.','','','d','','neco','2014',85,'Admin','2016-11-26 17:20:14','2020-08-11 09:19:38'),(51,'A representative of a commonwealth country in another member state is known as a / an.','ambassador','attaché.','consul-general.','high commissioner.','','','d','','neco','2014',109,'Admin','2016-11-26 17:20:14','2020-08-12 16:40:22'),(52,'The following are values that promote interpersonal relationship, except','caring.','honesty.','patience','properties.','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:25'),(53,'The responsibilities of government to   its citizens include the following, except','creating employment opportunity','maintenance of law and order','payment of property tax to its citizens','protection of lives and property','','','c','','neco','2014',74,'Admin','2016-11-26 17:20:14','2020-08-13 12:50:49'),(54,'Most African countries owed their creation to','African Union (AU).','Commonwealth of Nations.','Ethnic and tribal leaders.','European Colonialists','','','a','','neco','2014',86,'Admin','2016-11-26 17:20:14','2020-08-20 11:18:08'),(55,'The structure of the Nigerian legislature is - in nature','bicameral','confederal','federal','unicameral','','','a','','neco','2014',82,'Admin','2016-11-26 17:20:14','2020-08-20 11:18:08'),(56,'The most effective approach towards the elimination of sexually transmitted diseases is by','abstinence.','Casual sex.','use of condom.','use of drugs','','','a','','neco','2014',84,'Admin','2016-11-26 17:20:14','2020-07-14 13:34:28'),(57,'The first executive president of Nigeria is/was','Abubakar Tafawa Balewa','Goodluck Jonathan','NnamdiAzikiwe.','Shehu Shagari.','','','d','','neco','2014',83,'Admin','2016-11-26 17:20:15','2020-08-12 16:40:23'),(58,'One of the aims of citizenship education is to produce students with','creative skill.','high sense of entrepreneurial skill.','high sense of patriotism.','manipulative skills.','','','c','','neco','2014',79,'Admin','2016-11-26 17:20:15','2020-08-18 21:52:33'),(59,'The symbol for the campaign against AIDs is Ribbon','black','blue','green','red','','','d','','neco','2014',115,'Admin','2016-11-26 17:20:15','2020-08-20 11:09:37'),(60,'ln 2013, Nigeria celebrated her ______ independence anniversary','50th','51st','52nd','54th','','','d','','neco','2014',94,'Admin','2016-11-26 17:20:15','2020-08-13 13:00:57'),(61,'In democracy, lack of press freedom leads to the denial of freedom of','association','expression','movement','voting','','','b','','neco','2014',66,'Admin','2016-11-26 17:20:15','2020-08-18 21:52:33'),(62,'Franchise means right to','contest for political post','join association','live in Nigeria','vote and be voted for','','','d','','neco','2014',84,'Admin','2016-11-26 17:20:15','2020-08-13 13:00:57'),(63,'How many members constitute the lower legislative chamber in Nigeria?','300','302','312','360','','','d','','neco','2014',84,'Admin','2016-11-26 17:20:15','2020-08-20 11:18:08'),(64,'How many senators are elected from each state in Nigeria?','2','3','4','5','','','b','','neco','2014',70,'Admin','2016-11-26 17:20:15','2020-07-14 13:34:36'),(65,'When was the first HIV/AIDs case reported in Nigeria?','1980','1983','1985','1987','','','c','','neco','2014',84,'Admin','2016-11-26 17:20:15','2020-08-13 13:01:09'),(66,'Which of the following system of government advocates equitable distribution of wealth?','Aristocracy','Capitalism','Plutocracy','Socialism','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:38'),(67,'The right of an individual to seek redress in a law court is categorized under','economic.','political','procedural,','social','','','c','','neco','2014',85,'Admin','2016-11-26 17:20:16','2020-08-20 11:18:08'),(68,'The National Youths Service Corps Scheme was established in Nigeria in','1970','1971','1973','1975.','','','c','','neco','2014',87,'Admin','2016-11-26 17:20:16','2020-08-20 11:09:37'),(69,'Which of the following is a legal obligation of a citizen?','Giving financial assistance to the poor','Helping in community development','Payment of taxes','Respecting the national symbols','','','c','','neco','2014',91,'Admin','2016-11-26 17:20:16','2020-08-20 11:09:37'),(70,'Which of these is not a system of government?','Anarchy','Monarchy','Oligarchy','Socialism','','','d','','neco','2014',93,'Admin','2016-11-26 17:20:16','2020-08-20 11:18:08'),(71,'The laws made by the third tier of government in Nigeria are refer to as','bye-laws.','constitutional laws.','decrees.','edicts','','','a','','neco','2014',98,'Admin','2016-11-26 17:20:16','2020-07-14 13:34:49'),(72,'What does “35% affirmative action” of the present administration stand for? More','PDP  stalwarts   should   be engaged in government','political positions for women in government','women to be considered for campaign','women to be elected as governors','','','b','','neco','2014',93,'Admin','2016-11-26 17:20:16','2020-07-25 18:35:32'),(73,'A political party’s programme is known as its','constitution.','document.','functions.','manifesto.','','','d','','neco','2014',81,'Admin','2016-11-26 17:20:16','2020-08-13 13:01:09'),(74,'How many Senator(s) represent the Federal Capital Territory in the senate?','1','2','3','4','','','a','','neco','2014',96,'Admin','2016-11-26 17:20:16','2020-08-13 13:00:53'),(75,'The International Court of Justice is located in','Britain.','Netherlands.','Nigeria.','Norway.','','','b','','neco','2014',81,'Admin','2016-11-26 17:20:17','2020-07-25 18:35:32'),(76,'The headquarters of United Nations is located in','Abuja.','England','Hague.','New York.','','','d','','neco','2014',96,'Admin','2016-11-26 17:20:17','2020-07-27 15:24:24'),(77,'One advantage of Bi-cameral legislature is that it','guards against intra-party clashes.','is the only system available.','prevents arbitrary law making','projects party manifestoes.','','','c','','neco','2014',73,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:01'),(78,'Public Complaints Commission in Nigeria is also known as','elder’s forum.','judiciary.','ombudsman.','people’s court.','','','c','','neco','2014',87,'Admin','2016-11-26 17:20:17','2020-08-07 21:33:40'),(79,'The public service structure of Nigeria is an offshoot of','America.','British.','Canada.','India.','','','b','','neco','2014',83,'Admin','2016-11-26 17:20:17','2020-08-18 21:52:33'),(80,'A de-facto authority is mostly associated with','anarchy.','customs and tradition.','force.','law.','','','b','','neco','2014',81,'Admin','2016-11-26 17:20:17','2020-07-25 14:57:28'),(81,'The United Nations universal declaration on human rights was proposed in the year','1925','1930','1946','1948','','','d','','neco','2014',76,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:05'),(82,'Political apathy can be discouraged through the following, except','educating the electorate.','good governance.','independent judiciary.','press censorship.','','','d','','neco','2014',87,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:06'),(83,'One of the civic responsibilities of a citizen is to obey','bye-laws.','constituted authority.','court judgments.','edicts.','','','b','','neco','2014',79,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:07'),(84,'Which of the following is not a function of political parties?','Aggregation of opinion','Educating the government','Interest articulation','Unifying factor.','','','d','','neco','2014',69,'Admin','2016-11-26 17:20:17','2020-08-20 11:18:08'),(85,'Nigeria is now hundred years since amalgamation which means she has celebrated — anniversary.','amalgamation.','centenary.','golden jubilee.','independence.','','','b','','neco','2014',69,'Admin','2016-11-26 17:20:17','2020-07-25 18:35:32'),(86,'Which of the following bodies is responsible for defending the country against external aggression? The','Army','Civil defense.','Customs.','Police.','','','a','','neco','2014',95,'Admin','2016-11-26 17:20:17','2020-08-03 19:26:55'),(87,'One of the following is a country as well as a continent.','Africa','Antarctica','Asia','Australia','','','d','','neco','2014',90,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:10'),(88,'In a parliamentary system of government, the powers of the executive is vested in the office of the','minister.','premier','president.','prime minister.','','','d','','neco','2014',77,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:11'),(89,'One of the major problems facing local government administration in Nigeria is','insufficient councilors','lack of control by the central government','lack of funds','leadership','','','c','','neco','2014',75,'Admin','2016-11-26 17:20:17','2020-08-20 11:18:08'),(90,'The land contention between Nigeria and Cameroon is called','Bakassi Penisula','Bonny Island','Calabar River','Lekki Penisula','','','a','','neco','2014',81,'Admin','2016-11-26 17:20:17','2020-08-07 21:33:40'),(91,'The headquarters of ECOWAS is located in','Abuja','Accra','Adis-Ababa','Lome','','','d','','neco','2014',97,'Admin','2016-11-26 17:20:17','2020-07-14 13:35:15'),(92,'Human rights abuse can be prevented through the following, except','constitutional means','court of law','mass literacy','protest','','','d','','neco','2014',74,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:16'),(93,'The public Service is a branch of the ____ arm of government','civilian','executive','judiciary','legislative','','','b','','neco','2014',86,'Admin','2016-11-26 17:20:18','2020-08-13 13:01:09'),(94,'When the national flag is flown half mask, it is a sign of national','centenary celebration','children’s day','independence','mourning','','','d','','neco','2014',79,'Admin','2016-11-26 17:20:18','2020-08-11 09:19:38'),(95,'One of the ways to ensure a free and fair election is to','allow parties to campaign on election day','appoint a politician as the chairman of the electoral commission','ensure INEC chairman is appointed from a pressure group','guarantee the security of electoral officers and materials','','','d','','neco','2014',80,'Admin','2016-11-26 17:20:18','2020-08-13 13:00:57'),(96,'How many colours are in the traffic light?','2','3','4','5','','','b','','neco','2014',78,'Admin','2016-11-26 17:20:18','2020-07-14 13:35:19'),(97,'The channel through which political parties make their program known to the people is ..............','canvassing','campaigning','convincing','coronation','','','b','','wassce','2012',79,'Admin','2016-11-26 17:47:57','2020-07-14 13:35:20'),(98,'What arm of the criminal justice system is prison?','first','second','third','none','','','c','','wassce','2012',93,'Admin','2016-11-26 17:47:58','2020-08-20 11:18:08'),(99,'................ is the apex body saddled by law to fight corruption and other related offences','IRS','ICPC','EFCC','NPF','','','c','','wassce','2012',97,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:30'),(100,'The responsibility of protecting past and present high ranking government officials falls on ...............','police','army','civil defense corps','SSS','','','a','','wassce','2012',83,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:31'),(101,'............ is obtained from the Nigerian immigration services as a requirement to travel out of the country','ticket','yellow card','passport','national ID card','','','c','','wassce','2012',72,'Admin','2016-11-26 17:47:58','2020-07-25 18:35:32'),(102,'There are ............. local government in Nigeria','700','714','744','774','','','d','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-08-20 11:18:08'),(103,'Local government is the ............... tier of government','1st','2nd','3rd','4th','','','c','','wassce','2012',91,'Admin','2016-11-26 17:47:58','2020-08-11 09:19:38'),(104,'Television and radio are example  of ......... media','print','electronic','advertising','mass','','','b','','wassce','2012',117,'Admin','2016-11-26 17:47:58','2020-08-20 11:09:37'),(105,'Newspapers and magazine and example of ..... media','print','electronic','advertising','mass','','','a','','wassce','2012',94,'Admin','2016-11-26 17:47:58','2020-07-14 13:35:36'),(106,'One of the listed criteria qualifies one for election .......','certificate','beauty','height','citizenship','','','d','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-07-27 15:24:24'),(107,'The following are duties to be performed by the citizens of a country EXCEPT','Destroying government properties','obey law and order','payment of tax','show loyalty','','','a','','wassce','2012',104,'Admin','2016-11-26 17:47:58','2020-08-18 21:52:33'),(108,'The form of government in which the electorate exercise their governing power directly through their elected \trepresentation is called ........','supremacy','democracy','autocracy','charismatic','','','b','','wassce','2012',106,'Admin','2016-11-26 17:47:58','2020-08-20 11:09:37'),(109,'Punishment for law breaking include the following except ..........','freedom of movement','detention','sanctions','political instability','','','d','','wassce','2012',99,'Admin','2016-11-26 17:47:58','2020-08-03 19:26:55'),(110,'The act of counting the numbers of people living in a country in order to determine the total numbers of \tpeople in a state is known as .......','election','national population census','voting','rights','','','b','','wassce','2012',112,'Admin','2016-11-26 17:47:58','2020-08-20 11:09:37'),(111,'The last population census in Nigeria was conducted in ...........','2003','2006','2007','2005','','','b','','wassce','2012',106,'Admin','2016-11-26 17:47:58','2020-07-27 15:24:24'),(112,'The 219 chibok girls were ................ while ..............','abducted, praying in the mosque','kidnaped, praying in the church','abducted, wondering along the street of chibok town','kidnaped, preparing to write their WAEC examination','','','d','','wassce','2012',94,'Admin','2016-11-26 17:47:58','2020-08-20 11:09:37'),(113,'The following are types of drugs except','cannabis','depressants','benzodiazepine pines','steroids','','','c','','wassce','2012',120,'Admin','2016-11-26 17:47:59','2020-08-20 08:04:45'),(114,'Cocaine, morphine and heroin are example of','tobacco','steroids','narcotics','inhalants','','','c','','wassce','2012',99,'Admin','2016-11-26 17:47:59','2020-08-12 16:40:23'),(115,'......... refer to a group of drugs that are inhaled in the form of a gas or solvent','hallucinogens','stimulants','inhalants','gasoline','','','c','','wassce','2012',112,'Admin','2016-11-26 17:47:59','2020-08-20 08:04:44'),(116,'Cannabis is also called .........','barbiturates','cassava','marijuana','caffeine','','','b','','wassce','2012',108,'Admin','2016-11-26 17:47:59','2020-08-13 12:50:49'),(117,'Which of the following is the most common forms of drug abuse','drug trafficking','self medication','drug combination','frequent use','','','b','','wassce','2012',91,'Admin','2016-11-26 17:47:59','2020-07-25 18:35:32'),(118,'The following factors are responsible for drug abuse except','family upbringing','high stress level','poverty','foster parenthood','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-08-20 11:18:08'),(119,'........ is the type of parenthood where a different couple raise a particular child that is not their own','helicopter parent','foster parenthood','slow parenting','different parenthood','','','b','','wassce','2012',94,'Admin','2016-11-26 17:47:59','2020-08-13 13:00:53'),(120,'One of the following is a cause of single parents in Nigeria','slow parenting','social group','nature of work','divorce','','','d','','wassce','2012',96,'Admin','2016-11-26 17:47:59','2020-08-13 13:01:09'),(121,'.......... strengthens the sensitive mental and emotional bond between the parent and children','narcissistic parenting','attachment parenting','positive parenting','teenage parenting','','','b','','wassce','2012',88,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:51'),(122,'........... is the verdict that results when a law court declares a defendant guilty of a crime','immunity clause','conviction','customary clause','traditions','','','b','','wassce','2012',119,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:52'),(123,'The clause which exempts the president from being prosecuted while still in office is called','military clause','special clause','conviction clause','immunity clause','','','d','','wassce','2012',86,'Admin','2016-11-26 17:47:59','2020-08-07 21:33:40'),(124,'All the following can limit the right of a citizen except','war','state of emergency','universality','military rule','','','c','','wassce','2012',89,'Admin','2016-11-26 17:47:59','2020-08-20 11:18:08'),(125,'The following are causes of emergency rule except','crisis','blood lettings','stage peaceful protest','sabotage / terrorism','','','c','','wassce','2012',77,'Admin','2016-11-26 17:47:59','2020-08-18 21:52:33'),(126,'The World AIDs Day is usually ..........................','June 12th every year','May second every year','October 1st every year','December 1st every year','','','d','','wassce','2012',93,'Admin','2016-11-26 17:47:59','2020-08-13 12:50:49'),(127,'One of the following is not human right group','Constitutional Right Project (CRP)','National Association of Democratic Lawyers (NADL)','Nigeria Bar Association (NBA)','Civil Liberties Organization (CLO)','','','c','','wassce','2012',96,'Admin','2016-11-26 17:47:59','2020-08-19 01:53:05'),(128,'One of the following is not a pressure group','National Association of Nigeria Student (NANS)','Nigeria Labour Congress (NLC)','Academic Staff Union of Universities (ASUU)','Committee for Defense of Human Right (CDHR)','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:35:58'),(129,'One of the following is not a political party','PDP','APGA','ANPC','CPC','','','c','','wassce','2012',96,'Admin','2016-11-26 17:47:59','2020-08-20 08:04:46'),(130,'One of the following is a social group','dangote group of companies','rotary club','Millan group','human right Africa','','','c','','wassce','2012',91,'Admin','2016-11-26 17:47:59','2020-08-07 21:33:40'),(131,'The organization with the motives and goals of helping people is called','social group','charity group','pressure group','human right group','','','b','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-07-14 13:36:01'),(132,'The following are the reasons why people do not participate in polities except','illiteracy','lack of justice','multi-party system','religion','','','c','','wassce','2012',92,'Admin','2016-11-26 17:47:59','2020-08-19 01:53:05'),(133,'............... is the prejudicial treatment of fellow human being','god fatherism','independence','justice','discrimination','','','d','','wassce','2012',98,'Admin','2016-11-26 17:47:59','2020-08-13 13:00:53'),(134,'Laws are interpreted by the','Judiciary','President','Legislature','Executive','','','a','','wassce','2012',115,'Admin','2016-11-26 17:47:59','2020-08-13 13:00:53'),(135,'The president belongs to ............... arm of the government','Executive','Judiciary','Military','Legislature','','','a','','wassce','2012',92,'Admin','2016-11-26 17:47:59','2020-08-20 11:18:08'),(136,'The process whereby an individual choose to favour a person who come from his family or tribe over other people or tribes is known as','stereotype','ethnicity','nepotism','favouritism','','','c','','wassce','2012',90,'Admin','2016-11-26 17:47:59','2020-08-13 13:00:53'),(137,'When a group of people believe in and keep to certain norms, values and ways of life of their community since its creation, we call this .................','religion','stereotypes','traditions','custom','','','c','','wassce','2012',80,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:06'),(138,'Traffic lights are also known and referred to as','three directives light','spotlight','flow traffic directive','informative sign','','','b','','wassce','2012',87,'Admin','2016-11-26 17:48:00','2020-08-13 13:00:53'),(139,'One of the following is not a federal road agencies','DTO','FRSC','TRACE','VIO','','','c','','wassce','2012',87,'Admin','2016-11-26 17:48:00','2020-08-20 08:04:45'),(140,'One of the following is a regulatory prohibitory sign','stop police','speed limit','t junction','ferry','','','a','','wassce','2012',99,'Admin','2016-11-26 17:48:00','2020-08-13 13:01:09'),(141,'The traffic light has how many colours','3','4','5','2','','','a','','wassce','2012',82,'Admin','2016-11-26 17:48:00','2020-08-13 13:00:57'),(142,'From the basic road traffic regulation pedestrians should not attempt to cross the road when the light are ............. and ...............','green and yellow','green and red','yellow and red','red and yellow','','','a','','wassce','2012',81,'Admin','2016-11-26 17:48:00','2020-08-20 11:09:37'),(143,'Motorcyclists must always protect their heads with safety ............. which must be properly fastened','seat belt','head guild','helmets','cap cycles','','','c','','wassce','2012',103,'Admin','2016-11-26 17:48:00','2020-07-14 13:36:12'),(144,'Pedestrians should always cross road using','stop hold','parked vehicles','zebra crossing','bridge','','','c','','wassce','2012',92,'Admin','2016-11-26 17:48:00','2020-08-13 13:00:57'),(145,'The former NAFDAC DG Prof Dora Akunyili died on','June 9. 2014','June 17, 2014','June 7, 2014','May 27, 2014','','','c','','wassce','2012',108,'Admin','2016-11-26 17:48:00','2020-08-20 11:09:37'),(146,'Political values are acquired in any given society through','Political re-orientation','Political campaign','Political socialization','Political indoctrination','','','c','','neco','2012',79,'Admin','2016-11-26 18:05:51','2020-07-27 15:24:24'),(147,'To ensure the rights and freedom of citizens; the power of the arms of government must be','fused','incorporated','separated','rotated','','','c','','neco','2012',86,'Admin','2016-11-26 18:05:52','2020-07-27 15:24:24'),(148,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social right','','','b','','neco','2012',82,'Admin','2016-11-26 18:05:52','2020-08-20 11:09:37'),(149,'The commission charged with the conduct of federal \telections in Nigeria between 2014 and 2015 is..........','Nec','fedeco','Inec','Necon','','','c','','neco','2012',88,'Admin','2016-11-26 18:05:52','2020-08-03 19:26:55'),(150,'The colour of the Nigeria flag is ..............., anytime it \tis half masked it means that the nation is ...............','green white green - rejoicing','white green white - mourning','green white green - mourning','green white blue - voting','','','c','','neco','2012',83,'Admin','2016-11-26 18:05:52','2020-08-13 13:00:57'),(151,'Which of the following is used in gauging public opinion','Constitution','Educational Institution','Mass media','Electoral college','','','c','','neco','2012',77,'Admin','2016-11-26 18:05:52','2020-07-14 13:36:19'),(152,'In Nigeria, The agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil  defense corps','Police','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:52','2020-08-12 16:40:23'),(153,'The National Assembly in Nigeria is primarily responsible for','executing laws','Interpreting laws','ratifying appointment','making laws','','','d','','neco','2012',86,'Admin','2016-11-26 18:05:52','2020-08-12 16:40:23'),(154,'The major factor militating against efficient operation \tof electoral commission in Nigeria is .......................','Inadequate public support','Population size','Inadequate skilled manpower','excessive political interference','','','d','','neco','2012',72,'Admin','2016-11-26 18:05:53','2020-08-13 12:50:49'),(155,'When Ebola disease is very rampant ............. count \ttheir loses while ......... smile to the bank','fish sellers, bush meat sellers','bush meat sellers, fish sellers','bread sellers, fish sellers','students, teachers','','','b','','neco','2012',101,'Admin','2016-11-26 18:05:53','2020-08-11 09:19:38'),(156,'Workers in the Public Corporations are known as','Civil servants','Private employees','Public servants','Professional employees','','','c','','neco','2012',87,'Admin','2016-11-26 18:05:53','2020-08-20 11:18:08'),(157,'Membership of a society is','conventional','Mandatory','Voluntary','Constitutional','','','c','','neco','2012',80,'Admin','2016-11-26 18:05:53','2020-07-27 15:24:24'),(158,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','Police, Army, sovereignty and custom','','','c','','neco','2012',102,'Admin','2016-11-26 18:05:53','2020-07-25 14:57:28'),(159,'Citizenship is acquired by an alien through','registration','birth','Conferment','Naturalization','','','d','','neco','2012',89,'Admin','2016-11-26 18:05:53','2020-08-18 21:52:33'),(160,'The office responsible for announcing the result of an election is known as','ballot officer','presiding officer','Returning officer','Electoral officer','','','c','','neco','2012',94,'Admin','2016-11-26 18:05:53','2020-08-03 19:26:55'),(161,'Law made by military governments are called','decrees','Bye-laws','Edicts','acts','','','a','','neco','2012',78,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:29'),(162,'The ultimate aim of political parties is to','implement people oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','neco','2012',81,'Admin','2016-11-26 18:05:53','2020-08-13 13:01:09'),(163,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their member','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','neco','2012',86,'Admin','2016-11-26 18:05:53','2020-08-13 13:00:57'),(164,'Public servants in Nigeria belong to the ............. arm of government','military','executive','legislature','judiciary','','','b','','neco','2012',88,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:32'),(165,'One of the main duties of the local government service commission is to','supervise and manage the personnel of local government','conduct election into local council','create an enabling working environment for council workers','handle request for the creation of more local government','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:53','2020-07-25 18:35:32'),(166,'The option A4 model was used in the conduct of the','2007 election','1983 election','1993 election','1999 election','','','c','','neco','2012',103,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:34'),(167,'The following is the function of a responsible parenthood','care and love','gambling','Drug addition','fighting','','','a','','neco','2012',81,'Admin','2016-11-26 18:05:53','2020-08-18 21:52:33'),(168,'Custom refers to .............','tradition or social value or patterns','image of a country','sharing similar or common ethnic background','A state of feeling of oneness among the people','','','a','','neco','2012',94,'Admin','2016-11-26 18:05:53','2020-08-13 13:01:09'),(169,'The term V. I. O. mean','Vehicle inspection officer','vehicle implementation officer','vehicle induce operation','vehicle induction officer','','','a','','neco','2012',82,'Admin','2016-11-26 18:05:53','2020-08-13 13:00:57'),(170,'Which of these countries operate a unitary system of \tgovernment','Nigeria','U. S. A','Ghana','Britain','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:53','2020-07-14 13:36:37'),(171,'Which of the following are not fundamental human right','right to life','right to gainful employment','right to vote and be voted for','right to overthrow a government','','','d','','neco','2012',85,'Admin','2016-11-26 18:05:53','2020-08-11 09:19:38'),(172,'A constitution that is very easy to amend is called a ...... constitution','rigid','flexible','an easy','simple','','','b','','neco','2012',93,'Admin','2016-11-26 18:05:53','2020-08-13 13:00:53'),(173,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate','','','d','','neco','2012',92,'Admin','2016-11-26 18:05:53','2020-08-20 11:18:08'),(174,'One judicial function performed by the executive is','granting of amnesty','implementing judicial order','ensuring obedience to the law','appointing judges','','','a','','neco','2012',89,'Admin','2016-11-26 18:05:53','2020-08-20 11:09:37'),(175,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary','','','a','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-08-13 13:00:53'),(176,'The private ownership of the means of production is a feature of','capitalism','Socialism','Communalism','Communism','','','a','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-08-13 13:00:53'),(177,'A government is said to be legitimate if it','has the people’s mandate to rule','is not oppressive','provide social services for the people','accepts people’s criticism','','','a','','neco','2012',83,'Admin','2016-11-26 18:05:54','2020-08-20 11:18:08'),(178,'All type of government perform all the following functions except','providing welfare and developmental facilities','maintaining law and order','encouraging the struggle for power','encouraging trade with other state','','','c','','neco','2012',100,'Admin','2016-11-26 18:05:54','2020-08-07 21:33:40'),(179,'A coup d’etat is regarded as','A source of political legitimacy','A manipulation of the constitution','A constitutional way of changing the government','an unconstitutional way of changing the government','','','d','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:46'),(180,'Which of the following is an advantage of local government','Agents for money based politics','electoral commissions','training grounds for political leaders','agents of pressure group','','','c','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:47'),(181,'Public Corporations are financed','by tax payers','with private funds','with entrepreneurial funds','by political parties','','','a','','neco','2012',111,'Admin','2016-11-26 18:05:54','2020-08-12 16:40:23'),(182,'A manifesto refers to','the register of party members','rejected ballot papers','valid ballot papers','Document containing the aims and programmes of   a political party','','','d','','neco','2012',90,'Admin','2016-11-26 18:05:54','2020-08-03 19:26:55'),(183,'Which of the following is not a duty of a citizen','obedience to the law','payment of taxes','service to the Nation','giving alms to the poor','','','d','','neco','2012',89,'Admin','2016-11-26 18:05:54','2020-08-20 11:09:37'),(184,'The police perform all the following function except','public execution of law breaker','controlling and directing traffic','protection of life and property','enforcement of law and orders','','','a','','neco','2012',85,'Admin','2016-11-26 18:05:54','2020-08-20 11:09:37'),(185,'An agreed set of rules prescribing the governance of a country can be called the','constitution','charter','manifesto','programme','','','a','','neco','2012',90,'Admin','2016-11-26 18:05:54','2020-08-20 11:09:37'),(186,'The lack of interest in politics by many citizens in a country is called','civic agitation','mass apathy','mass protest','political unrest','','','b','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-08-18 21:52:33'),(187,'The following are ways to prevent drug addiction except','civic education','law enforcement and regulation','mass media effort','voting at election','','','d','','neco','2012',96,'Admin','2016-11-26 18:05:54','2020-08-13 13:00:53'),(188,'The following are examples of pressure group except','N. U. R. T','NBA','NLC','PDP','','','d','','neco','2012',79,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:54'),(189,'The following are Road Traffic signs except','Regulatory sign','Informative sign','Warning sign','Philosophy sign','','','d','','neco','2012',85,'Admin','2016-11-26 18:05:54','2020-07-14 13:36:55'),(190,'The function of Federal Road Safety Corp (FRSC) is','Enforcing the traffic regulation on road','making law','executing law','Interpreting law','','','a','','neco','2012',91,'Admin','2016-11-26 18:05:54','2020-08-07 21:33:40'),(191,'The function of vehicle inspection officer (VIO) is','ensuring the road wordiness of vehicle on the road','protection of life and property','collection of tax','counting of votes cast at election','','','a','','neco','2012',112,'Admin','2016-11-26 18:05:54','2020-08-20 11:09:37'),(192,'Colonization of Africa was mainly motivated by','security consideration','economic reasons','religious reasons','cultural factor','','','b','','neco','2012',97,'Admin','2016-11-26 18:05:54','2020-07-27 15:24:24'),(193,'Which of these is a type of parenthood','single parenthood','ethnic parenthood','village parenthood','clan parenthood','','','a','','neco','2012',78,'Admin','2016-11-26 18:05:54','2020-08-18 21:52:33'),(194,'Decrees are laws made by ............','Democratic government','The prime minister','The military','Parliaments','','','c','','neco','2012',82,'Admin','2016-11-26 18:05:54','2020-07-14 11:39:43'),(195,'Austerity measure was first introduced in Nigeria by ..........','President Babangida','Olusegun Obasanjo','President Sehu Shagari','President Goodluck Jonathan','','','c','','neco','2012',108,'Admin','2016-11-26 18:05:54','2020-08-18 21:52:33'),(196,'Before crossing the road you are expected to ...........','Look left and then right','Look left, right and left again','Look back and left','Look forward for oncoming okada','','','b','','wassce','2013',112,'Admin','2016-11-27 17:07:11','2020-08-19 01:53:07'),(197,'.............. was the capital of Nigeria before .................','Abuja - Lagos','Lagos - Abuja','Ikeja - Abuja','Benin - Abuja','','','b','','wassce','2013',98,'Admin','2016-11-27 17:07:15','2020-08-20 11:09:37'),(198,'The primary duty of the police force is to','Make law','Interpret the law','Deal with danfo and okada drivers','Non of the above','','','d','','wassce','2013',91,'Admin','2016-11-27 17:07:19','2020-07-14 13:37:03'),(199,'The law is enforced by','Military','Legislators','Police force','Area boys','','','c','','wassce','2013',102,'Admin','2016-11-27 17:07:27','2020-08-20 08:04:44'),(200,'Which of the following is NOT an offence','Tax avoidance','Tax evidence','Stealing by trick','Money laundering','','','a','','wassce','2013',90,'Admin','2016-11-27 17:07:31','2020-08-20 08:04:44'),(201,'Some core Rights or Freedoms in the Universal Declaration of Human Rights of 1948 are','The right to life and right to freedom of opinion and expression','The right to fight and smoke in the public place','The right to attack your enemies and the right to make slanderous speeches','None of the above','','','a','','wassce','2013',96,'Admin','2016-11-27 17:07:35','2020-08-20 08:04:44'),(202,'Cultism can lead to','Immoral activities and indiscipline','Maintenance of law and order in the society','Corrupt free society','Sound cultural development','','','a','','wassce','2013',80,'Admin','2016-11-27 17:07:39','2020-07-14 13:37:40'),(203,'Popular participation can','promote political awareness and education','Lead to political apathy','lead to the election of wrong leaders','to political instability','','','a','','wassce','2013',107,'Admin','2016-11-27 17:07:47','2020-07-27 15:24:24'),(204,'One of the ways to prevent the spread of HIV/AIDs is','Not to eat in fast food joints','Not to shake hands with anybody','To avoid any object contaminated with blood','Sleep under a mosquito net','','','c','','wassce','2013',79,'Admin','2016-11-27 17:07:51','2020-08-20 11:09:37'),(205,'Nigeria became independent in ........... and a Republic in ................ Respectively','1963 and 1960','1960 and 1963','1954 and 1960','None of the above','','','b','','wassce','2013',108,'Admin','2016-11-27 17:07:55','2020-07-25 14:57:28'),(206,'The process of enlightening or training citizens on their rights and responsibilities is known as','Workshop training','Citizenship Education','Political Education','Citizenship Rights','','','b','','wassce','2013',95,'Admin','2016-11-27 17:07:55','2020-08-13 13:01:09'),(207,'The ideas, things or principles cherished by the people in a community are referred to as','rights','culture','values','due process','','','c','','wassce','2013',101,'Admin','2016-11-27 17:08:03','2020-08-13 12:50:49'),(208,'The illicit or illegal business in the sales and \ttransportation of human beings for economic and other selfish purposes is known as','Human capital development','Human traffic rule disobedience','Human trafficking','Mans inhumanity to man','','','c','','wassce','2013',79,'Admin','2016-11-27 17:08:03','2020-08-20 11:09:37'),(209,'An indifference attitude towards political activities by the citizens of a state is termed','political apathy','political unrest','political ideology','political disunity','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:07','2020-07-14 13:37:47'),(210,'For which of these can someone be arrested while driving on a high way','driving and laughing','driving and singing','driving and eating or receiving phone call','driving and crying','','','c','','wassce','2013',88,'Admin','2016-11-27 17:08:11','2020-08-18 21:52:33'),(211,'The process in which every qualified citizen of a state has the right to vote is called ............ suffrage','universal adult','democratic','tax payer','communal','','','a','','wassce','2013',91,'Admin','2016-11-27 17:08:11','2020-08-18 21:52:33'),(212,'The armed forces and the police are part of the ........ organ of government','executive','judicial','legislative','informative','','','a','','wassce','2013',86,'Admin','2016-11-27 17:08:14','2020-08-13 12:50:49'),(213,'The exercise of arbitrary power, whims and caprices constitutes a negation of .........','rule of law','fundamental human right','checks and balance','indirect rule','','','a','','wassce','2013',94,'Admin','2016-11-27 17:08:15','2020-08-13 13:01:09'),(214,'Which of the following concepts confirms the general acceptance and recognition of a government?','Democratic powers','Legitimacy','sovereignty','popular democracy','','','b','','wassce','2013',104,'Admin','2016-11-27 17:08:15','2020-08-20 11:09:37'),(215,'Which of the following can cause Human Trafficking in a country','poverty, youth unemployment and greed','Sound education and proper counselling','Social and economic contentment','B and C above','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:15','2020-08-12 16:40:23'),(216,'The use of drugs through self - medication or without due medical prescription is referred to as','Personal drug administration','Drug abuse','Human right abuse','Drug trafficking','','','b','','wassce','2013',94,'Admin','2016-11-27 17:08:15','2020-08-19 01:53:06'),(217,'An important characteristics of Democracy is','The absence of free press and mass media','Unequal political rights','Respect for principle of rule of law','The absence of separation of powers between the   arms and levels of government','','','c','','wassce','2013',88,'Admin','2016-11-27 17:08:15','2020-08-03 19:26:55'),(218,'Which one of the following is the founding father of Nigeria nationalism?','Goodluck Jonathan','Oba Kosoko','Herbert Macaulay','Olusegun Obasanjo','','','c','','wassce','2013',109,'Admin','2016-11-27 17:08:19','2020-08-13 13:00:57'),(219,'The use of illicit or hard drugs such as marijuana (Indian hemp) heroine, morphine etc. is known as','Human right abuse','Drug trafficking','Drug enhancement','Drug abuse','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:23','2020-07-25 14:57:28'),(220,'The farthest government to the people is the ............ government','Local','State','Federal','A and B above','','','c','','wassce','2013',114,'Admin','2016-11-27 17:08:23','2020-07-14 13:38:05'),(221,'An instrument for exercise of power for controlling, administering and managing the affairs of people based on laws is the','Civil service','Executive','Government','State','','','c','','wassce','2013',102,'Admin','2016-11-27 17:08:23','2020-08-20 08:04:46'),(222,'The ideology which emphasizes a classless society is','Communism','Capitalism','Totalitarianism','Feudalism','','','a','','wassce','2013',91,'Admin','2016-11-27 17:08:27','2020-08-20 11:09:37'),(223,'Which of the following constitutes drug abuse','taking less than the dose recommended by the doctor','taking more than the dose recommended by the doctor','taking the exact dose recommended by the doctor','A and B above','','','d','','wassce','2013',96,'Admin','2016-11-27 17:08:31','2020-08-20 08:04:44'),(224,'The power to legislate is usually exercised by','parliament','executive','judiciary','the president','','','a','','wassce','2013',83,'Admin','2016-11-27 17:08:39','2020-08-07 21:33:40'),(225,'Membership of a state is known as','citizenship','statism','patriotism','indigenousness','','','a','','wassce','2013',95,'Admin','2016-11-27 17:08:39','2020-07-25 18:35:32'),(226,'The process of learning the political attitudes, values and beliefs that are relevant to the political system is known as','political culture','political socialization','political participation','political science','','','b','','wassce','2013',116,'Admin','2016-11-27 17:08:39','2020-08-19 01:53:05'),(227,'The system of government in which all aspects of life are controlled by the government is','democracy','totalitarianism','capitalism','socialism','','','b','','wassce','2013',97,'Admin','2016-11-27 17:08:43','2020-08-19 01:53:06'),(228,'It is an offense to drive along the high way','without putting on the seat belt','and talk or smile at the same time','and make phone calls at the same time','A and C above','','','d','','wassce','2013',88,'Admin','2016-11-27 17:08:43','2020-07-25 18:35:32'),(229,'The individual rights would be better protected if enshrined in the ..................','Courts','Constitutions','Bible and Quran','National Newspapers','','','b','','wassce','2013',82,'Admin','2016-11-27 17:08:43','2020-08-20 08:04:46'),(230,'What is the minimum age for voters in Nigeria','15','20','18','50','','','c','','wassce','2013',99,'Admin','2016-11-27 17:08:43','2020-08-13 13:01:09'),(231,'Which of these characteristics of the civil service ensure continuity of government?','Neutrality','Permanence','Bureaucracy','Loyalty','','','a','','wassce','2013',107,'Admin','2016-11-27 17:08:43','2020-08-13 13:01:09'),(232,'Public corporation are owned by the','government','banks','private individuals','foreigners','','','a','','wassce','2013',102,'Admin','2016-11-27 17:08:43','2020-08-20 08:04:46'),(233,'The principle of equality before the law is the same as','social equality','social injustices','checks and balances','democratic justices','','','a','','wassce','2013',87,'Admin','2016-11-27 17:08:43','2020-08-13 13:01:09'),(234,'The organ of government which are normally fused in a military regime are the','judiciary and legislative','civil service and executive','legislative and executive','legislative and judiciary','','','c','','wassce','2013',92,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:24'),(235,'The illegal sales and transportation of human beings for economic and some other selfish purpose is termed','Slave Trade','Survival of the Fittest','Gross Human Right Abuse','Human Trafficking','','','d','','wassce','2013',109,'Admin','2016-11-27 17:08:43','2020-08-20 11:18:08'),(236,'The lack of interest in politics and political activities by the citizens of a country is known as','political disinterestedness','political culture','political disintegration','political apathy','','','d','','wassce','2013',94,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:26'),(237,'Popular participation refers to','Political Apathy','The active involvement of citizens in the social political activities of a country','The rule of the party with the largest number of supporters','The rule of a prominent and popular politician','','','b','','wassce','2013',85,'Admin','2016-11-27 17:08:43','2020-08-18 21:52:33'),(238,'The rule of law simply means','The ruling of a lawful leader','The absence of political instability','Supremacy of the law','The ruling of legislators','','','c','','wassce','2013',89,'Admin','2016-11-27 17:08:43','2020-08-19 01:53:05'),(239,'Cultism is ........, and so it should be ........','useful - allowed','cultural - encouraged','dangerous - discouraged','amiable - supported','','','c','','wassce','2013',97,'Admin','2016-11-27 17:08:43','2020-07-14 13:38:29'),(240,'Drug abuse can be curbed by','encouraging the use of enhancement drugs in sports','teaching youths moral and religious principles','encouraging rural urban migration','None of the above','','','b','','wassce','2013',91,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:30'),(241,'A problem commonly faced by most people living with HIV/AIDs is of','Stigmatization','Non availability of drugs','Government insincerity','Lost of appetite','','','a','','wassce','2013',111,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:31'),(242,'Which of the following type of government is hereditary?','Democracy','Oligarchy','Monarchy','Fascism','','','c','','wassce','2013',85,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:32'),(243,'An organization whose ultimate aim is to gain the control of government and implement its programmes is known as a','Trade Union','Local Government','Political Party','Pressure Group','','','c','','wassce','2013',82,'Admin','2016-11-27 17:08:44','2020-08-19 01:53:07'),(244,'The president belongs to .......... arm of the government','Legislative','Judiciary','Executive','Anti-crime','','','c','','wassce','2013',97,'Admin','2016-11-27 17:08:44','2020-08-20 08:04:44'),(245,'In Nigeria the outbreak of Ebola disease was first observed in the year','2012','2013','1960','2014','','','d','','wassce','2013',87,'Admin','2016-11-27 17:08:44','2020-07-14 13:38:35'),(246,'Juvenile delinquency and cultism are ......... and should be .........','undesirable - encouraged','desirable - discouraged','undesirable - discouraged','desirable - discouraged','','','c','','neco','2013',95,'Admin','2016-11-27 17:44:15','2020-08-13 12:50:49'),(247,'Those who consume fish and vegetable frequently stand the chance of contacting the','HIV/AIDs disease','Ebola disease','Typhoid and yellow fever disease','None of the above','','','d','','neco','2013',88,'Admin','2016-11-27 17:44:16','2020-07-27 15:24:24'),(248,'The primary function of the legislature is the','monitoring the executive','making of laws','voting of bills','appointment of ministers','','','b','','neco','2013',79,'Admin','2016-11-27 17:44:16','2020-08-03 19:26:55'),(249,'Ejiro, the senior brother of Omonigho had fever last week. The doctor prescribed a certain drug for him, He was asked to take one tablet, three times a day for four days. He took the drug as recommend for the first and second day and stopped. Five days later he took one tablet in the morning and one again at night. Omonigho’s action can be said to be a kind of','bad drug administration','drug Abuse','drug trafficking','Human trafficking','','','b','','neco','2013',89,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:39'),(250,'When a constitution is difficult to amend it is said to be','rigid','flexible','written','federal','','','a','','neco','2013',81,'Admin','2016-11-27 17:44:16','2020-07-25 18:35:32'),(251,'If Omonigho had taken the tablet one three times a day for six days his action constitutes a kind of','good drug administration','drug abuse','drug trafficking','none of the abuse','','','b','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-07-25 18:35:32'),(252,'Ejiro, who is not sick decide to take the same drug for the same duration as recommended for Omonigho by the doctor.Ejiro’s action can be described as a form of','preventive measure','drug abuse','drug trafficking','Self help activity','','','b','','neco','2013',88,'Admin','2016-11-27 17:44:16','2020-08-20 11:18:08'),(253,'As Mr Umukoro got to Oghara junction, near Sapele, he packed the bus and bought some roasted monkey bush meat. Some of the passengers in the bus followed suit, that day was a good Friday. On motion Mr Umukoro, the driver and some of the passengers were doing justice to the monkey bush meat. No sooner had they started than they were stopped and Mr Umukoro was fined by men of the FRSC. If the fine was proper which of the reasons bellow could be responsible for it','some of the passengers ate the bush meat while the bus was on motion','Mr Umukoro, the driver was driving and eating at the same time','They were not supposed to eat monkey bush meat because they can contact the Ebola virus from it.','They were not expected to eat and any kind of meat on a good Friday','','','b','','neco','2013',93,'Admin','2016-11-27 17:44:16','2020-08-18 21:52:33'),(254,'The Ebola virus sneaked into Nigeria through','The Liberian born American, Mr Patrick Sawyer','The Ghanaian born American, Mr Patrick Sayer','Members of the Boko Haram','Monkeys and bats','','','a','','neco','2013',91,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:43'),(255,'As a citizen you can be deprived of your Fundamental Human Rights during','Emergency Rule','Election period','National day celebration','National public holidays','','','a','','neco','2013',87,'Admin','2016-11-27 17:44:16','2020-08-11 09:19:38'),(256,'Malaria fever can be transmitted through','hand shaking','eating of unbalanced diet','mosquito bite','eating of bush meat such as bat and monkey','','','c','','neco','2013',90,'Admin','2016-11-27 17:44:16','2020-08-13 13:00:53'),(257,'Plenty of money in the society, not backed by commensurate productive activities can lead to','deflation','inflation','National developmental','cashless society','','','b','','neco','2013',97,'Admin','2016-11-27 17:44:16','2020-08-13 13:00:57'),(258,'In the year 2014, the Nigerian President Good luck Ebelle Jonathan  urged Nigerians to .......... the rumors  that drinking and bathing with salt water prevents or cures Ebola virus','ignore','accept','welcome','embrace','','','a','','neco','2013',99,'Admin','2016-11-27 17:44:16','2020-08-13 13:00:57'),(259,'The primary duty of the army is to','execute the law','interpret the law','overthrow the government when there is anarchy','defend the country against external aggression','','','d','','neco','2013',102,'Admin','2016-11-27 17:44:16','2020-08-20 11:09:37'),(260,'The first known outbreak of Ebola was in ................','2014, in Sierra Leone','1976, in a remote village near the Ebola River in Congo','2014, in port Harcourt, Nigeria','Enugu, during the Nigeria - Biafra war','','','b','','neco','2013',92,'Admin','2016-11-27 17:44:16','2020-08-20 11:18:08'),(261,'On a particular day in 2014, the National flag was flown half mask. This act symbolizes','National tailors day','National mourning','Children’s day','Golden jubilee celebration','','','b','','neco','2013',105,'Admin','2016-11-27 17:44:16','2020-08-03 19:26:55'),(262,'Vehicles are expected to continue with their journey when the traffic light shows ...............','Red','Blue','Yellow','Green','','','d','','neco','2013',99,'Admin','2016-11-27 17:44:16','2020-08-11 09:19:38'),(263,'In which of the following system is survival of the fittest mostly practiced','Communist system','Capitalist system','Feudalist','Totalistic system','','','b','','neco','2013',101,'Admin','2016-11-27 17:44:16','2020-07-14 13:38:52'),(264,'For now the Ebola disease has','no known cure','several known cures','cannot kill its action','no physically observable symptoms','','','a','','neco','2013',87,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:57'),(265,'Some years ago a popular Governor in one of the states in Nigeria was asked to mention some mineral \tresources from his state. He made mention of “Fanta, Pepsi, Coca cola. The governor is','right','wrong','illiterate','unpatriotic','','','b','','neco','2013',85,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:57'),(266,'If you were to be in the Governor’s shoes which of the following would you have chosen?','Miranda and seven up','coca cola and Fanta','petroleum','stock, bonds and cash','','','c','','neco','2013',94,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:53'),(267,'The right practice of democracy can','ensure equity, justice and far play','discourage political education and awareness’','political unrest','lawlessness','','','a','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:02'),(268,'Political Apathy can lead to','very fast pace of development','the emergence of sound democratic government','wrong set of people coming into power','development of sound political culture','','','c','','neco','2013',84,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:03'),(269,'Human traffickers usually engage their victims .........','in educative programs','in forced labour','in skill acquisition activities','in recreational activities','','','b','','neco','2013',72,'Admin','2016-11-27 17:44:17','2020-08-18 21:52:33'),(270,'During a particular voting exercise if majority of the \tpeople refuse to vote, this can be described as','political stubbornness','political apathy','political awareness','political socialization','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:17','2020-08-13 13:01:09'),(271,'Mr Dickson’s little son, clement was sent away from school because he has not paid his school fees of \tN=11,000. That same day as Mr Dickson boarded a Danfo bus he noticed that the purse of a fellow passenger dropped on the floor of the bus. Mr Dickson tactically picked up the purse, opened it and saw a handsome sum of N=100,000. No body in the bus noticed him, neither did the fellow passenger. As a patriotic and good citizen of Nigeria, what is Mr Dickson expected to do','Pay his tithe (1/10 of the money) to the church take the rest and pray for forgiveness','Draw the attention of the fellow passenger and give the money back to him /her','Use part of the money to pay his son’s fess and keep the rest because opportunity comes but once','Leave the purse on the floor, and mind his business','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:57'),(272,'Public corporations are','meant to make profit','not meant to make profit','not expected to produce','established to gather public opinion','','','b','','neco','2013',98,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:07'),(273,'The attitude of the crowd towards, the sick man was that of ............','indifference','friendliness','hospitality','political apathy','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',104,'Admin','2016-11-27 17:44:17','2020-08-13 13:00:53'),(274,'Which of the following could be a possible reason for the crowds attitude towards the sick man','They were afraid that he might be an unknown soldier','They kept their distance so as not to contact the Ebola virus, in case he has it','They were not used to helping visitors','They kept their distance so as not to contact the HIV/AIDs virus, in case he has it','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','b','','neco','2013',101,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:09'),(275,'If the crowd insisted on keeping their distance what appropriate action could they have taken','call the appropriate health department to intervene','left him to his fate','stone him to death','desert him','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',82,'Admin','2016-11-27 17:44:17','2020-08-20 11:18:08'),(276,'If the crowd suspected that he had the Ebola virus and wish to call the Ebola emergency line, which one of the following could they have called?','08023169485','0803361424','08023361936','08027063614','A certain man came to visit his friend at Shomolu one early morning. Unexpectedly the man fainted and slumped. He lay on the floor for several hours and looking lifeless. The crowd and even the friend he came to visit kept a reasonable distance from him. No one came to his rescue or even attempted to touch him. As luck would have it he regained his strength after about five hours and managed to go back to his house','','a','','neco','2013',90,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:10'),(277,'Any forms of restricted franchise is a violation of the principle of','political equality','sovereignty','legality','constitutionalism','','','a','','neco','2013',92,'Admin','2016-11-27 17:44:17','2020-08-07 21:33:40'),(278,'Which of the following is not the civic obligation of a citizen','payment of taxes','freedom of conscience and speech','voting during elections','obedience to law','','','b','','neco','2013',97,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:12'),(279,'A sovereign state is one','whose citizens are free to evade responsibility','whose governments decisions are made independent of foreign interference','which has a president and a prime minister','where its citizens can speak without fear or favour','','','b','','neco','2013',99,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:13'),(280,'Jamiu and Onome were among those standing inside a BRT bus in Lagos. Onome mistakenly stepped on Jamiu and Jamiu gave Onome a very dirty slap. As a law a biding citizen of the country which of the following reactions is expected of Onome','Turn the other chick for another slap','Slap Jamiu back and prepare for any fight that might ensure','Let Jamiu know that he, Onome stepped on him inadvertently, but pardon him to avoid escalating the matter','Push Jamiu down from the moving bus','','','c','','neco','2013',87,'Admin','2016-11-27 17:44:17','2020-08-20 11:18:08'),(281,'Juvenile delinquency refers to','active youths participation in sports','wrong doings by the youths','Refusal to worship God by the youths','Urban Rural migration by the youth','','','b','','neco','2013',88,'Admin','2016-11-27 17:44:17','2020-08-03 19:26:55'),(282,'Psychopathy is a form of ................ behaviour','Normal','abnormal','desired','valued','','','b','','neco','2013',86,'Admin','2016-11-27 17:44:17','2020-08-18 21:52:33'),(283,'Consumers of ......... especially ........... and ..............stand the a great risk of contacting the Ebola disease','fish, tilapia, titus','bush meat, monkey, bat','meat, cow, dog','vegetable, water leaf, bitter leaf','','','b','','neco','2013',77,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:17'),(284,'Government is the machinery established to manage the affairs of','the state','the civil service','peasants and students','strangers','','','a','','neco','2013',103,'Admin','2016-11-27 17:44:17','2020-08-20 11:18:08'),(285,'The judicial organs of government is the body which','makes the law','implements the law','interpreters the law','rewards lawmakers','','','c','','neco','2013',82,'Admin','2016-11-27 17:44:17','2020-08-03 19:26:55'),(286,'The Ebola disease is usually acquired when a person comes in contact with','the blood or bodily fluids of an infested organism','anybody whose name is Bola','any animal','snake fish','','','a','','neco','2013',69,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:20'),(287,'The prime minister is vested with the powers of the executive in ........... system of government','a parliamentary','a presidential','a monarchical','unitary','','','a','','neco','2013',81,'Admin','2016-11-27 17:44:17','2020-07-14 13:39:27'),(288,'Through which of these can citizenship status be acquired','birth, naturalization, honorary and registration','birth, colonization and integration','referendum, incorporation and acceptance','convention registration and colonization','','','a','','neco','2013',100,'Admin','2016-11-27 17:44:17','2020-08-11 09:19:38'),(289,'That which people enjoy primarily because they are human beings are called ...............','Human Obligation','Constitutional Right','Human Right','Democratic Right','','','c','','neco','2013',94,'Admin','2016-11-27 17:44:18','2020-08-11 09:19:38'),(290,'Which of these categories of people stand the greatest risk of contacting the Ebola virus .........','Lecturers and students in the school','Health workers and their family members','Hunters and their family members','b and c above','','','d','','neco','2013',79,'Admin','2016-11-27 17:44:18','2020-08-13 13:00:57'),(291,'It is often said that public servants cannot be held responsible for their actions. This principle denotes .................','anonymity','civic irresponsibility','accountability','neutrality','','','a','','neco','2013',85,'Admin','2016-11-27 17:44:18','2020-08-13 12:50:49'),(292,'Free, fair and credible elections are attributes of .......','undemocratic government','democratic government','military regime','monarchical governance','','','b','','neco','2013',87,'Admin','2016-11-27 17:44:18','2020-07-14 13:39:52'),(293,'The followings are symptoms of Ebola excepts','sudden fever and vomiting','headaches and diarrhea','muscle pains','frequent hunger and increase thirst for water','','','d','','neco','2013',106,'Admin','2016-11-27 17:44:18','2020-07-25 18:35:32'),(294,'Public service belongs to ................','the legislative arm of government','the judiciary arm of government','senate arm of government','the executive arm of government','','','d','','neco','2013',99,'Admin','2016-11-27 17:44:18','2020-08-13 13:01:09'),(295,'Human traffickers usually force their victims to engage in','rewarding exercise','religious activities','forced labour','useful trade','','','c','','wassce','2011',107,'Admin','2016-12-12 19:40:24','2020-08-13 13:00:53'),(296,'Public servants in Nigeria are expected to be .............','involved in politics','non-partisan','ambitious politically','partial','','','b','','wassce','2011',98,'Admin','2016-12-12 19:40:24','2020-08-19 01:53:05'),(297,'HIV and Ebola can be contacted through contact with','Non infected person','contaminated medical equipment such as needles and syringes','Very sick person','Healthy reptiles','','','b','','wassce','2011',117,'Admin','2016-12-12 19:40:24','2020-08-12 16:40:23'),(298,'Which of the following is not a preventive measure against the acquisition of the Ebola disease...........','Do not touch an infected person or their body fluids including blood, vomit, urine, saliva','Wash your hands regularly with soap and water and apply sanitizers frequently','Beware of hand shake and go for medical checkup as soon as possible when sick','Do not bath with medicated soap','','','d','','wassce','2011',91,'Admin','2016-12-12 19:40:24','2020-07-14 13:40:09'),(299,'Nigeria celebrated her centenary anniversary in the ......','1954','1960','1963','2014','','','d','','wassce','2011',102,'Admin','2016-12-12 19:40:24','2020-08-18 21:52:33'),(300,'Which of the following are Ebola Emergency lines','08023169484 or 08033086660','08023361936 or 08034623521','08023164216 or 08033065936','08055281400 or 08023361936','','','a','','wassce','2011',107,'Admin','2016-12-12 19:40:24','2020-07-27 15:24:24'),(301,'An individual with feverish condition who has taken Panadol is advised to see the ............ if the feverish condition persists after .......... days','father, four','pastor, three','doctor, three','doctor, ten','','','c','','wassce','2011',105,'Admin','2016-12-12 19:40:24','2020-08-12 16:40:22'),(302,'Which of these is NOT undesirable in the society','cultism','terrorism','patriotism','vandalism','','','c','','wassce','2011',104,'Admin','2016-12-12 19:40:25','2020-07-25 14:57:28'),(303,'As at 2014 Nigeria has .......... states','47','37','60','57','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:25','2020-07-14 13:40:14'),(304,'The Boko Haram insurgency started around','2009','2014','1960','1963','','','a','','wassce','2011',99,'Admin','2016-12-12 19:40:25','2020-08-19 01:53:06'),(305,'A sense of right and wrong guiding a person’s action is known as','attitude','conscience','action','manner','','','b','','wassce','2011',89,'Admin','2016-12-12 19:40:25','2020-08-12 16:40:22'),(306,'Which of the following is a bad habit capable of leading to future psychological and physiological ill health','self Actualization','Self Meditation','Self Medication','Self Appraisal','','','c','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-08-20 08:04:45'),(307,'Civic Education is also known as ....................','Organizational Structure','Citizenship Education','Customers Opinion','Government Policy','','','b','','wassce','2011',107,'Admin','2016-12-12 19:40:25','2020-08-13 13:00:53'),(308,'The number of Girls abducted by members of Boko Haram at Chibok in 2014 is roughly','200','219','419','180','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:25','2020-08-13 13:01:09'),(309,'The Ebola virus can be prevented by','washing our hands regularly and applying sanitizer','washing our head always','taking drugs regularly','eating balanced diet','','','a','','wassce','2011',96,'Admin','2016-12-12 19:40:25','2020-08-13 13:01:09'),(310,'If six political parties contest for an election (A, B, C, D, E, F), what is the probability that party C will wine the election','1/3','1/4','1/6','1/2','','','c','','wassce','2011',94,'Admin','2016-12-12 19:40:25','2020-08-12 16:40:23'),(311,'Another word for abduction is ...........................','to steal','to adopt','to kidnap','to kill','','','c','','wassce','2011',100,'Admin','2016-12-12 19:40:25','2020-07-27 15:24:24'),(312,'In Lagos state and some other states in Nigeria, motorcycle (okada) riders are expected to wear ............ while on motion','Boot','Hand glove','Crash helmet','Black coloured shirt','','','c','','wassce','2011',76,'Admin','2016-12-12 19:40:25','2020-08-13 13:00:57'),(313,'In Lagos state, the BRT lane is reserved for ....... only','The governor','Soldiers','Commercial buses','BRT buses','','','d','','wassce','2011',99,'Admin','2016-12-12 19:40:25','2020-08-19 01:53:06'),(314,'Mondays and Thursday are days meant for in between environmental sanitation exercise in ........... and .......... states respectively','Lagos and Edo','Edo and Lagos','Abuja and Lagos','Delta and Lagos','','','b','','wassce','2011',103,'Admin','2016-12-12 19:40:25','2020-08-13 12:50:49'),(315,'One way for Nigerians to maintain steady good health is by','taking malaria medicine everyday','bathing with salt water and eating bitter kola always','taking balance diet and engaging in regular physical exercise','taking alcohol and cigarettes regularly','','','c','','wassce','2011',87,'Admin','2016-12-12 19:40:25','2020-08-20 11:18:08'),(316,'Which of the following is the cleanest source of water in Nigeria','pond water','river water','rain water','lagoon water','','','c','','wassce','2011',100,'Admin','2016-12-12 19:40:25','2020-08-20 11:09:37'),(317,'Which of these tax below is paid by nearly everybody in Nigeria','Direct tax','Excise tax','Proportional tax','Regressive','','','b','','wassce','2011',103,'Admin','2016-12-12 19:40:25','2020-08-13 13:00:57'),(318,'Which of the following was a former military head of state in Nigeria','MKO Abiola','Goodluck Jonathan','General Idiagbon','General Babagida','','','d','','wassce','2011',97,'Admin','2016-12-12 19:40:25','2020-08-13 13:00:53'),(319,'The three larges and most influential ethnic groups in Nigeria are','Yoruba, Edo and Hausa','Igbo, Iteskiri and Hausa','Hausa, Igbo and Yoruba','Fulani, Yoruba and Efik','','','c','','wassce','2011',107,'Admin','2016-12-12 19:40:25','2020-08-11 09:19:38'),(320,'The former National anthem begins with.......................','Nigeria We Hail Thee','Arise O Compatriots','I pledge to Nigeria my Country','So help me God','','','a','','wassce','2011',106,'Admin','2016-12-12 19:40:25','2020-08-20 11:18:08'),(321,'NUC and NBA stands for ......... and ......... respectively','National University Commission and Nigeria Bar Association','Nigeria Bar Association and National University Commission','National Union Congress and Nigeria Basketball Authority','National Utilities Commission and Nigeria Bar Association','','','a','','wassce','2011',88,'Admin','2016-12-12 19:40:26','2020-08-07 21:33:40'),(322,'General Murtala Mohammed was assassinated on his way to work in ..............','February 13, 1976','June 12, 1993','October 1, 1960','June 8, 1998','','','a','','wassce','2011',104,'Admin','2016-12-12 19:40:26','2020-08-13 12:50:49'),(323,'Naira and Kobo was introduced in Nigeria in ..............','2nd July,1963','1st January 1972','June 12, 1993','March13, 1995','','','b','','wassce','2011',97,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:37'),(324,'In the General election of June 12 1993, the two main candidates that contested for the post of presidency were ......','MKO Abiola and Olusegun Obasanjo','MKO Abiola and Tofa','Atiku and Olusegun Obasanjo','Yaradua and Goodluck Jonathan','','','b','','wassce','2011',92,'Admin','2016-12-12 19:40:26','2020-08-13 13:00:53'),(325,'A committee of PDP members is made up of 9 Hausas, 8 Igbo and 7 Yorubas. If the president wishes to choose just one person to be his special adviser, find the probability that the person chosen is neither Hausa nor Yoruba','7/24','2/3','3/8','1/3','','','d','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-08-13 13:01:09'),(326,'Driving, especially along the highway requires serious  ...........','concentration','meditation','concentration','perambulation','','','c','','wassce','2011',97,'Admin','2016-12-12 19:40:26','2020-08-20 11:09:37'),(327,'A Taxi diver who mistakenly Jams and kills someone is guilty of ............... and he will receive ................ punishment than if it were a case of ........','murder, less, manslaughter','man slaughter, less, murder','manslaughter, more, murder','civil offence, less, murder','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-08-20 11:09:37'),(328,'The full meaning of NYSC is ..............','Now Your Suffering Continues','Nigeria Youths Serving Christ','National Youth Service Corps','Nigerian Youth Service Corps','','','c','','wassce','2011',94,'Admin','2016-12-12 19:40:26','2020-08-11 09:19:38'),(329,'The NYSC was established in the year .................','May 22, 1973','June 15, 1960','May 22, 1963','August 20,1993','','','a','','wassce','2011',98,'Admin','2016-12-12 19:40:26','2020-08-19 01:53:05'),(330,'One of the main objectives of establishing the NYSC is to .................','Enable the youths to have some practical experience \t\t     after schooling','Forster National unity','Engage the young graduates because “Idle mind is the devil’s workshop”','Create employment for the young graduates','','','b','','wassce','2011',86,'Admin','2016-12-12 19:40:26','2020-08-07 21:33:40'),(331,'Those eligible to partake in the scheme are those','Those seeking for admission into the higher institutions','Who have successfully completed their studies from higher institution .eg. college of education, \t\t     polytechnic & university','Who are looking for something to keep them busy','Who are from poor family background','','','b','','wassce','2011',95,'Admin','2016-12-12 19:40:26','2020-07-27 15:24:24'),(332,'The age limit for the service is ..............','25','35','30','18','','','c','','wassce','2011',92,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:45'),(333,'At the end of the service year each corper will be given ......... as an evidence that he or she has successfully completed the service','NYSC passport','National ID Card','NYSC discharge certificate','Letter of appreciation','','','c','','wassce','2011',106,'Admin','2016-12-12 19:40:26','2020-08-12 16:40:22'),(334,'Which of the following is true','The CD (Community Development) exercise   embarked by corpers is not paid for by the community','Corpers collect extra money for embarking on the C.D','Corpers are not usually given monthly allowances','The aim of the NYSC scheme is to foster disunity   in the country','','','a','','wassce','2011',97,'Admin','2016-12-12 19:40:26','2020-08-20 11:18:08'),(335,'The killing of NYSC members in certain parts of the country  ................','Contradicts the goal of establishing the scheme','Is in line with the aims of establishing the scheme','Is not a serious matter','Enhances national unity','','','a','','wassce','2011',86,'Admin','2016-12-12 19:40:26','2020-07-14 13:40:48'),(336,'Nigeria is a ............. state','Communist','Capitalist','socialist','Feudalist','','','b','','wassce','2011',97,'Admin','2016-12-12 19:40:27','2020-08-20 11:18:08'),(337,'Some years to come, when you become the President of Nigeria, which of the options below will you choose \tto eradicate porzverty in the country','carry all the poor people away from Nigeria to another country so when there are no poor people poverty will be gone forever','print plenty Naira Notes and give millions to every Nigeria','Import plenty Agricultural and Manufactured goods','None of the above','','','d','','wassce','2011',95,'Admin','2016-12-12 19:40:27','2020-08-13 13:00:53'),(338,'On the 18th of November 2014 in Yobe, some crowds lynched a suspected suicide bomber. The action of the crowd is .....','right because ‘he who kills by the sword must die by the sword’','wrong because they have unlawfully taken the law into their hands, they should have handed the suicide  bomber over to the police','right because we all have to fights against all forms of terrorism','right so that others will learn lesson from this action','','','b','','wassce','2011',88,'Admin','2016-12-12 19:40:27','2020-08-07 21:33:40'),(339,'In the year 2014 the catholic church in Nigeria suspended the usual hand shaking (as a sign of peace) among its members just after the “Lord’s prayer” The most likely reason for this action is to prevent the \t\tspread of ............, in case a member has it','HIV/AIDs virus','The Ebola virus','Evil and demonic spirit','malaria fever','','','b','','wassce','2011',97,'Admin','2016-12-12 19:40:27','2020-08-20 08:04:45'),(340,'Decrees are laws made by .............','the parliament','the judiciary','the military','senators','','','c','','wassce','2011',91,'Admin','2016-12-12 19:40:27','2020-08-12 16:40:23'),(341,'The document containing the aims and programs of a political party is called ...........','register','manifesto','memorandum of party','party library','','','b','','wassce','2011',101,'Admin','2016-12-12 19:40:27','2020-08-20 11:09:37'),(342,'The former PHCN is a good example of .................. in Nigeria','civil service','perfect competition','public corporation','private monopoly','','','c','','wassce','2011',108,'Admin','2016-12-12 19:40:27','2020-08-19 01:53:05'),(343,'Orderliness can be defined as','being punctual to work','studying diligently in school','doing things in a proper way','learning the Western way of life','','','c','','wassce','2016',91,'Admin','2016-12-12 19:57:13','2020-08-13 13:00:57'),(344,'The Traffic in Persons Prohibition and Administration Act was passed in Nigeria in','December 2001.','October 2002','August 2003','April 2004.','','','c','','wassce','2016',90,'Admin','2016-12-12 19:57:13','2020-08-13 13:01:09'),(345,'The process of enabling someone to perform an action which adds value to his/her life is known as','employment','recruitment','socialization','empowerment','','','d','','wassce','2016',89,'Admin','2016-12-12 19:57:13','2020-08-03 19:26:55'),(346,'Rates are collected in Nigeria by','Federal Inland Revenue Service','State Ministry of Finance','Local Government Councils','Council of Traditional Rulers','','','c','','wassce','2016',95,'Admin','2016-12-12 19:57:13','2020-08-20 08:04:45'),(347,'The Fourth Schedule of the 1999 Constitution of Nigeria outlines the functions of','federal government','local government','national government','state government','','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:13','2020-07-14 13:41:00'),(348,'Lack of interest in politics by citizens in the country is referred to as political','ignorance','apathy','participation','socialization','','','b','','wassce','2016',93,'Admin','2016-12-12 19:57:13','2020-08-20 11:18:08'),(349,'Which of the following instruments is not used by a civil society group?','Propaganda','Boycott','Protest','Violence','','','d','','wassce','2016',95,'Admin','2016-12-12 19:57:13','2020-08-11 09:19:38'),(350,'The administrative class in the public service is to','implement policies','formulate policies','veto policies','oversee policies','','','a','','wassce','2016',77,'Admin','2016-12-12 19:57:13','2020-08-20 11:09:37'),(351,'“We the people of the Federal Republic of Nigeria” is usually the opening phrase of the preamble to','coup announcement','government gazettes','constitution','mansard','','','c','','wassce','2016',82,'Admin','2016-12-12 19:57:13','2020-08-19 01:53:07'),(352,'One of the responsibilities of a good citizen is to','possess an international passport','enjoy all amenities provided by government','serve the country when required','develop his potentialities to the fullest','','','c','','wassce','2016',88,'Admin','2016-12-12 19:57:13','2020-08-03 19:26:55'),(353,'Naturalized citizens cannot be denied their legal status as members of a country unless if they','are jailed for one year within seven years of acquiring citizenship','are found guilty to be spies or secret agents for another country','refuse to represent the country in an international sporting event','give adequate information to the host country','','','a','','wassce','2016',84,'Admin','2016-12-12 19:57:13','2020-08-20 11:18:08'),(354,'Citizenship education influences an individual to be','patriotic','educated','complacent','competent','','','a','','wassce','2016',100,'Admin','2016-12-12 19:57:13','2020-08-07 21:33:40'),(355,'Which of the following is not an example of orderliness?','Listening skill','Driving skill','Decorum','Deviance','','','d','','wassce','2016',73,'Admin','2016-12-12 19:57:14','2020-08-13 13:01:09'),(356,'Which of the following statements is not correct?','Valid driver’s license must be obtained before attempting to drive','Flowing garment can be worn on a motorcycle or bicycle','Headlights should be used during unfavourable weather','Drivers must not engage in distractive activities while driving','','','d','','wassce','2016',82,'Admin','2016-12-12 19:57:14','2020-08-13 13:00:57'),(357,'Cultism can best be discouraged through','mentoring of cultists by the rich','provision of jobs for cultists','sensitization on the dangers of cultism','establishment of cultists support groups','','','c','','wassce','2016',91,'Admin','2016-12-12 19:57:14','2020-08-20 11:18:08'),(358,'Which of the following is a consequence of drug abuse?','Depression','Victimization','Inefficiency','Cowardice','','','a','','wassce','2016',91,'Admin','2016-12-12 19:57:14','2020-08-20 11:18:08'),(359,'The effect of human trafficking on the victims is','illiteracy','affluence','exposure','exploitation','','','d','','wassce','2016',72,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:11'),(360,'The general attitude of government and society towards cultism is that of','affection','sympathy','abhorrence','support','','','c','','wassce','2016',96,'Admin','2016-12-12 19:57:14','2020-08-20 11:09:37'),(361,'Drug abuse can be prevented by','fighting drug addicts','poverty reduction','reducing drugs in circulation','legal sanction','','','b','','wassce','2016',95,'Admin','2016-12-12 19:57:14','2020-08-18 21:52:33'),(362,'A major factor responsible for human trafficking is','hunger','illiteracy','greed','joblessness','','','c','','wassce','2016',94,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:14'),(363,'People Living With HIV/AIDS (PLWHA) can be supported by','billing them for antiretroviral therapy','providing drugs for them at subsidized rates','providing special attires for them','providing accommodation for them in designated locations','','','b','','wassce','2016',91,'Admin','2016-12-12 19:57:14','2020-08-13 13:00:53'),(364,'Cult members are particularly hostile to','lecturers','perceived enemies','their group members','all students','','','b','','wassce','2016',82,'Admin','2016-12-12 19:57:14','2020-08-19 01:53:05'),(365,'Drug law enforcement agencies in Nigeria are not empowered to','execute drug suspects','arrest drug barons','prosecute drug traffickers','rehabilitate drug addicts','','','a','','wassce','2016',84,'Admin','2016-12-12 19:57:14','2020-08-20 11:09:37'),(366,'Which of the following is not a means of reducing the incidence of HIV/AIDS in our society?','Education and enlightenment programs','The use of specially designed cutlery by victims','Avoiding pre-marital and extra-marital sex','Upholding the value of chastity','','','b','','wassce','2016',95,'Admin','2016-12-12 19:57:14','2020-07-14 13:41:25'),(367,'Youth empowerment promotes','self-reliance','youthful exuberance','pursuit of higher education','foreign scholarship','','','a','','wassce','2016',92,'Admin','2016-12-12 19:57:14','2020-08-20 08:04:46'),(368,'The Supreme Court of Nigeria helps in law','drafting','application','interpretation','enforcement','','','c','','wassce','2016',82,'Admin','2016-12-12 19:57:15','2020-08-13 12:50:49'),(369,'Democracy thrives most where there is','nonpartisan judiciary','freedom of speech and association','absence of universal suffrage','one-party system','','','b','','wassce','2016',82,'Admin','2016-12-12 19:57:15','2020-08-11 09:19:38'),(370,'Rule of law is limited by the following except','state of emergency','habeas corpus','illiteracy','immunity','','','c','','wassce','2016',89,'Admin','2016-12-12 19:57:15','2020-08-19 01:53:05'),(371,'Preventive measures of HIV/AIDS do not include','abstinence','screening of blood before transfusion','use of barrier method','stigmatization of victims','','','d','','wassce','2016',80,'Admin','2016-12-12 19:57:15','2020-08-13 13:01:09'),(372,'One of reasons leaders fail to protect the interest of their followers is','selfishness','inadequate finance','ignorance','rigid policies','','','a','','wassce','2016',87,'Admin','2016-12-12 19:57:15','2020-07-25 18:35:32'),(373,'Which of the following is not a form of political participation?','Taking part in voters’ registration exercise','Voting during elections','Joining political party','Ballot box stuffing during elections','','','d','','wassce','2016',97,'Admin','2016-12-12 19:57:15','2020-08-13 12:50:49'),(374,'Civil Society groups perform the following roles during general elections except','educating the voters','serving as watchdog','counting votes','stimulating participation','','','c','','wassce','2016',76,'Admin','2016-12-12 19:57:15','2020-08-20 08:04:44'),(375,'Which of the following is not an example of civil society group?','United Action for Democracy','United Nations Organization','Transition Monitoring Group','Amnesty International','','','b','','wassce','2016',89,'Admin','2016-12-12 19:57:15','2020-08-20 08:04:44'),(376,'One of the major complaints against public service is','inefficiency','understaffing','victimization','discrimination','','','a','','wassce','2016',82,'Admin','2016-12-12 19:57:15','2020-08-20 08:04:45'),(377,'Which of the following is not a way of improving public service?','Politicization','Refresher courses','The use of Code Conduct Bureau','Reformation','','','a','','wassce','2016',97,'Admin','2016-12-12 19:57:15','2020-08-20 11:18:08'),(378,'Children that are not cared for are mostly prone to','criminal attitudes','terminal diseases','examination failure','forced migration','','','a','','wassce','2016',92,'Admin','2016-12-12 19:57:15','2020-08-20 11:18:08'),(379,'The motherland in the monologue could best be described as','a nation in transition','a morally upgrading country','a socially viable nation','an ethically bankrupt country','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','b','','wassce','2016',81,'Admin','2016-12-12 19:57:15','2020-07-25 14:57:28'),(380,'In spite of the state of affairs reflected in the above monologue, the citizens can make the country better by being committed to','promoting inter-communal relations','strengthening capacity building','championing moral values','encouraging interpersonal relations','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','c','','wassce','2016',85,'Admin','2016-12-12 19:57:15','2020-08-11 09:19:38'),(381,'Based on the monologue above, the best approach to curb moral decadence in the motherland is by','value re-orientation','introducing war against corruption','legalizing capital punishment','sending corrupt officials on exile','Oh Motherland, you were a precious country, a beacon of hope and aspiration as well as toga of pride of your citizens at independence. However, today you are bedeviled with evil, engulfed in darkness and to say the obvious, at the edge of total moral collapse. Corruption, fraud, deception and dishonesty are prevalent; drug peddlers are having a field day. In schools and colleges, radicalism, prostitution, cultism, examination malpractice among other social vices are order of the day.','','a','','wassce','2016',84,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:41'),(382,'The most important contribution of responsible parenthood to national development is that it','increases youthful population','fosters national integration','augments the nation workforce','breeds dependable citizenry','','','c','','wassce','2016',92,'Admin','2016-12-12 19:57:16','2020-08-18 21:52:33'),(383,'Which of the following can not be easily abused?','Cosmetics','Stimulant','Tobacco','Narcotics','','','a','','wassce','2016',80,'Admin','2016-12-12 19:57:16','2020-07-27 15:24:24'),(384,'Dr. Fajir cannot exercise some basic rights because he','was a suspect in a criminal case','was found guilty of a criminal offence','failed to comply with court order','embezzled public fund','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','b','','wassce','2016',131,'Admin','2016-12-12 19:57:16','2020-08-20 08:04:44'),(385,'According to the above story, the open trial of Dr. Fajir and his representation by lawyers of his choice in a court of competent jurisdiction is an indication of','respect for habeas corpus','freedom of expression','respect for human rights','freedom of legal representation','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','c','','wassce','2016',83,'Admin','2016-12-12 19:57:16','2020-08-19 01:53:07'),(386,'Based on the above story, which of the following would Dr.Fajir not be allowed to do while in prison?','Voting during elections','Engaging in hard labour','Participating in prison fellowship','Writing examination','Dr. Fajir was the Minister of Works and Urban Development in the Gambia Republic. As such, he was entrusted with the public fund so that his ministry could construct new roads and rehabilitate the existing ones. Unfortunately. Dr Fajir embezzled the money entrusted in his care and siphoned same to his foreign accounts. This led to the deplorable conditions of roads in the Republic. The Crime Commission arrested and prosecuted him accordingly. Subsequently, he was given the opportunity to be defended by lawyers of his choice in a Court of Law. However, he was found guilty and sentenced to 15 years imprisonment with hard labour without the option of a fine. In addition, he forfeited all his ill-gotten wealth to the Republic.','','a','','wassce','2016',80,'Admin','2016-12-12 19:57:16','2020-08-20 11:09:37'),(387,'The most important place for building good values is the','social welfare centre','workplace','family','media houses','','','c','','wassce','2016',76,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:47'),(388,'Citizen’s compliance with tenets of the Nigerian National Pledge will enable the country to','receive reciprocal assistance','witness value clarification','get international aid','experience development','','','b','','wassce','2016',82,'Admin','2016-12-12 19:57:16','2020-07-14 13:41:48'),(389,'Which of the following statements may be true about the behaviour of the candidates in the diagram?','The candidates are doing what is ethical','Candidates involved in malpractice should be banned for life','Their action can also affect innocent candidates','Their misconduct will guarantee a reliable certificate','','','b','','wassce','2015',79,'Admin','2016-12-12 20:15:41','2020-08-18 21:52:33'),(390,'Based on the above diagram, the candidates would not have cheated if','they were well-spaced','there was an invigilator','they were hardworking','there was nobody to copy from','','','c','','wassce','2015',90,'Admin','2016-12-12 20:15:41','2020-08-13 13:00:53'),(391,'In which year did the United Nations General Assembly adopt the Universal Declaration of Human Rights?','1945','1946','1947','1948','','','a','','wassce','2015',82,'Admin','2016-12-12 20:15:41','2020-08-20 08:04:44'),(392,'Two forms of road signs are regulatory and','punitive','informative','persuasive','inhibitive','','','b','','wassce','2015',86,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:52'),(393,'Which of the following factors does not affect interpersonal relationship?','Communication','Withdrawal','Compatibility','Forgiveness','','','b','','wassce','2015',88,'Admin','2016-12-12 20:15:41','2020-08-20 11:09:37'),(394,'The following cadre of students are the main target for campus cult membership except','students from wealthy homes','students from influential parents','bold and morally sound students','wayward and fun-loving students','','','c','','wassce','2015',88,'Admin','2016-12-12 20:15:41','2020-07-14 13:41:54'),(395,'The National Agency for Food and Drug Administration and Control (NAFDAC) was established in','1993','1996','1999','2001','','','a','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:55'),(396,'National Agency for the Prohibition of Traffic in Persons (NAPTIP) is an initiative of','Federal Government of Nigeria','United States Agency for International Development','Woman Trafficking and Child Labour Eradication \tFoundation','United Nations Office on Drugs and Crime','','','a','','wassce','2015',78,'Admin','2016-12-12 20:15:42','2020-08-13 13:01:09'),(397,'World AIDS day is observed on','20th May','30th July','27th August','1th December','','','d','','wassce','2015',75,'Admin','2016-12-12 20:15:42','2020-08-20 11:18:08'),(398,'An enabling environment created to help an individual have effective control of his/her situation is known as','reinforcement','empowerment','endowment','enhancement','','','b','','wassce','2015',91,'Admin','2016-12-12 20:15:42','2020-08-11 09:19:38'),(399,'In order to avoid undue interference in the process of governance, there should be','clear cut separation of governmental powers','proper fusion of governmental powers and functions','more roles for traditional rulers in the governmental process','additional responsibility for local government council','','','a','','wassce','2015',102,'Admin','2016-12-12 20:15:42','2020-07-14 13:41:59'),(400,'Red-tapism is one the shortcomings of','private enterprise','public service','non-governmental organization','pressure groups','','','b','','wassce','2015',91,'Admin','2016-12-12 20:15:42','2020-07-25 14:57:28'),(401,'An ideology that aims at promoting national consciousness and identity is','nationalism','socialization','civic culture','progressivism','','','a','','wassce','2015',89,'Admin','2016-12-12 20:15:42','2020-08-11 09:19:38'),(402,'Human rights are described as inviolable mainly because they are','authoritative declaration','enforceable everywhere','not to be unnecessarily taken away','legal declaration instruments','','','d','','wassce','2015',65,'Admin','2016-12-12 20:15:42','2020-08-20 08:04:44'),(403,'Law and order can best be maintained in Nigeria through the','prohibition of public protest','enforcement of rules and regulations','use of divide and rule policy','promotion of indigenization policy','','','b','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-08-13 13:00:57'),(404,'A responsible parent is someone who','cares and provides for the children','indulges the children because of love','works in order to receive salary','employs house-helps to take care of the children','','','a','','wassce','2015',80,'Admin','2016-12-12 20:15:42','2020-08-11 09:19:38'),(405,'A major way of promoting responsible parenthood is through','sex education','sound education','population control measures','tax reduction measures','','','a','','wassce','2015',95,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:05'),(406,'Which of the following is not included in the stages of interpersonal relationship?','Rejuvenation','Deterioration','Termination','Continuation','','','c','','wassce','2015',82,'Admin','2016-12-12 20:15:42','2020-07-14 13:42:06'),(407,'Cultism in tertiary institutions in Nigeria was originally introduced to','perpetuate the use of local gin and alcohol','harass opponents of university administrators','fight colonialism and oppressive rules','promote inter-communal marriages.','','','c','','wassce','2015',104,'Admin','2016-12-12 20:15:42','2020-08-13 13:00:53'),(408,'Which of the following is not a function of the National Drug Law Enforcement Agency (NDLEA)?','Applying and implementing all drug laws','Arresting, investigating and prosecuting drug traffickers','Undertaking the registration of companies dealing \tin drugs','Carrying out enlightenment campaigns on drug trafficking','','','c','','wassce','2015',73,'Admin','2016-12-12 20:15:42','2020-07-25 18:35:32'),(409,'An individual who finds it difficult to control in-take of drug is known as drug','baron','traffickers','mogul','addict','','','d','','wassce','2015',77,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:09'),(410,'The NDLEA personnel are not usually found in','international airports','seaports','border crossings','foreign embassies','','','d','','wassce','2015',94,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:10'),(411,'Which of the following statements best describes Human Trafficking?','Recruitment of youths as casual workers','Desperate desire by youths to travel abroad','Buying and selling of humans for selfish purposes','Transportation of gods and service through human portage','','','c','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-08-13 13:01:09'),(412,'From the above write-up what category of Kantoguan youth deserves to be effectively empowered?','Children of the ruling political class','Unemployed youths and school drop-outs','University undergraduates','Youth wing of religious organizations','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','b','','wassce','2015',84,'Admin','2016-12-12 20:15:43','2020-08-20 08:04:44'),(413,'The responsibility of empowering the youth rests mostly with','the political class','religious organizations','university administrators','national government','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','d','','wassce','2015',81,'Admin','2016-12-12 20:15:43','2020-08-20 08:04:46'),(414,'Based on the write-up, what immediate measures can those in authority take to empower the youths?','Build more youth orientation camps in the country','Enhance religious and moral education in schools and colleges','Provide entrepreneurial training with adequate fund','Provide free meal for the teeming unemployed youths','One major trend in Kantoga Republic today, especially during elections, is the engagement of youths by some politicians for political thuggery, rigging, stuffing of ballot boxes and other related electoral offences. Most of the youths who are engaged in these crimes have no means of livelihood or are school drop-outs. These youths are Kantoguans who ought to benefit from the enormous wealth and resources of the nation.<br><br>  Unfortunately, this is not the case at the moment. Indeed, it is the duty of government , especially at the centre, to provide entrepreneurial skill acquisition program and start-up funds for small scale businesses to empower the youths. This will reduce the chances of engagement of youths for wrong purposes.','','c','','wassce','2015',85,'Admin','2016-12-12 20:15:43','2020-07-27 15:24:24'),(415,'A very important segment of the society which is distinct from government, business and home is the','civil society','public service','mass media','traditional institution','','','a','','wassce','2015',97,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:36'),(416,'HIV/AIDS is generally described as terminal in nature because it is','preventable','transmittable','avertable','incurable','','','d','','wassce','2015',83,'Admin','2016-12-12 20:15:43','2020-08-20 11:18:08'),(417,'Inter-communal relationship is best described as','the interaction between individuals, groups or organizations with common aspirations','the interaction among individuals and professionals in a social setting','loyalty to community leaders so as to achieve rapid communal development','respect for collective national symbols in order to foster nationalistic feeling','','','a','','wassce','2015',87,'Admin','2016-12-12 20:15:43','2020-08-13 13:01:09'),(418,'A situation whereby someone is obliged to inform a superior about his actions and decisions for the purpose of control is','probity','self-discipline','accountability','fair play','','','c','','wassce','2015',94,'Admin','2016-12-12 20:15:43','2020-08-19 01:53:06'),(419,'The above quotation summarizes the','Universal Declaration of Human Rights.','African Charter on Human Rights.','Geneva Conventions and Protocols.','United Nations Organization Charter.','“All human beings are born free and equal in dignity and rights. They are endowed with reason and \t\tconscience and should act towards one another in a spirit of brotherhood”.','','a','','wassce','2015',79,'Admin','2016-12-12 20:15:43','2020-08-18 21:52:33'),(420,'Effective and responsible parenthood is primarily','a national duty','a military duty','a political duty','an economic duty','','','a','','wassce','2015',74,'Admin','2016-12-12 20:15:43','2020-08-07 21:33:40'),(421,'Association and affiliation between two or more people is called','multilateral relations','bilateral relations','inter-communal relations','interpersonal relations','','','d','','wassce','2015',86,'Admin','2016-12-12 20:15:43','2020-07-14 13:42:43'),(422,'A bill passed by the National Assembly requires the assent of the president before it becomes law. The law can be declared null and void by the court of law. The process above emphasizes the','supremacy of judiciary over other arms of government','relationship among the arms of government','importance of law makers in a democracy','fundamentals of the rule of law.','','','d','','wassce','2015',77,'Admin','2016-12-12 20:15:43','2020-08-20 08:04:45'),(423,'The idea that “Law should be impartial with the people who break it” implies','principle of fair hearing','right to legal representation','equality before the law','prerogative writ of habeas corpus','','','c','','wassce','2015',106,'Admin','2016-12-12 20:15:43','2020-08-18 21:52:33'),(424,'The foreign policy objective of Nigeria as enshrined in the 1999 Constitution exclude the promotion of','national interest','African integration','support for donor agencies','just world economic order','','','c','','wassce','2015',101,'Admin','2016-12-12 20:15:43','2020-08-13 13:01:09'),(425,'Democracy can promote national development if there is','good governance','promotion of culture','immunity for leaders','registration of parties','','','a','','wassce','2015',81,'Admin','2016-12-12 20:15:44','2020-08-13 13:01:09'),(426,'A major civil society group which campaigned against military rule prior to the advent of the Fourth Republic in Nigeria is the','Campaign for Democracy','Save Nigeria Group','Civil Liberties Organization','National Democratic Coalition','','','a','','wassce','2015',75,'Admin','2016-12-12 20:15:44','2020-08-03 19:26:55'),(427,'Which of the following function is not performed by the Public Service Commission?','Evaluating the performance of ministries and departments','Advising government on technical matters','Preparing the annual budget and assenting to it','Organizing enlightenment program and training','','','d','','wassce','2015',109,'Admin','2016-12-12 20:15:44','2020-08-20 11:18:08'),(428,'Which of the following is a major challenge to civil society in Nigeria?','Value disorientation','Diverse political interests','Inadequate funding','Unstable political system','','','a','','wassce','2015',86,'Admin','2016-12-12 20:15:44','2020-08-20 08:04:45'),(429,'Democracy is yet to take firm root in Africa because','it retards African development','African leaders are not experienced enough','most African leaders detest the will of the people','it is an expensive system of government','','','c','','wassce','2015',83,'Admin','2016-12-12 20:15:44','2020-08-13 13:01:09'),(430,'Nationalism ensures the following except','national consciousness','secession in a country','national integration','unity in a country','','','b','','wassce','2015',93,'Admin','2016-12-12 20:15:44','2020-08-20 11:09:37'),(431,'Justice demands that people should always do what is','persistently convenient','consistently right','individually acceptable','courageously necessary','','','b','','wassce','2015',79,'Admin','2016-12-12 20:15:44','2020-08-20 11:09:37'),(432,'Orderliness in the society is good mainly because it','discourages poverty','promotes peace and stability','guarantees employment for youths','ensures maximum rewards from leaders','','','b','','wassce','2015',85,'Admin','2016-12-12 20:15:44','2020-08-19 01:53:06'),(433,'Which of the following is necessary for the effective application of the rule of law?','Political will to ensure that laws are obeyed','Employment opportunities for all citizens','The fusion of the three arms of government','Extension of the retirement age of judges','','','a','','wassce','2015',83,'Admin','2016-12-12 20:15:44','2020-07-14 13:42:56'),(434,'Ade’s action as shown in the dialogue is a demonstration of political','wisdom','apathy','lawlessness','participation','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','b','','wassce','2015',88,'Admin','2016-12-12 20:15:44','2020-08-20 11:09:37'),(435,'It could be inferred from the dialogue that failure to vote in an election would','guarantee citizens’ rights','encourage the emergence of responsive government','promote accountability in governance','perpetuate irresponsible leadership','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','d','','wassce','2015',93,'Admin','2016-12-12 20:15:44','2020-07-27 15:24:24'),(436,'From the above dialogue, political leaders can encourage citizens to perform their civic duties by','fulfilling their electoral promises','travelling overseas to seek for foreign investors','engaging in religious activities','visiting all the local governments in the country','<strong>Zubar: </strong> Today is the day for gubernatorial elections, Ade what are you waiting for? Let us go and cast our votes for candidates of our choice<br><br> \t<strong>Ade: </strong> I have no interest in an election which not yield any dividend of democracy. Our political elite are only concerned about their interest when they get to the position \tof authority. For crying out loud, I have made up my mind that l will not vote again. <br><br> \t<strong>Zubar: </strong> Haba! Ade, don’t you remember Abraham Lincoln’s words that ‘all men are not just, all men are not true. But ...... for every scoundrel there is a hero, that for every selfish politician, there is a dedicated leader!’ Come on, go and cast your vote so that we can choose the right person for the position and change the political, economic and social directions of our great state.','','a','','wassce','2015',91,'Admin','2016-12-12 20:15:44','2020-08-20 11:09:37');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `commerce` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=888 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `commerce` VALUES (1,'Ships that sail across the ocean and operate on scheduled time are ','ferries ','ocean liners ','tramp steamers  ','coastal liner','','','b','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(2,'Non-insurable risks include ','gambling ','damage to property','death','marine ','','','a','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-08-02 10:55:52'),(3,'The program that makes up the operating system in a computer is         ','micro program','system flowchart','system software','syntax','','','c','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(4,'When an organization studies a market that is underserved by others and creates a product or service for the segment, it is engaged in','market integration  ','market positioning','market orchestration','product differentiation','','','c','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(5,'Coverage against unexpected events is called',' insurance ','assurance   ','warranty','reinsurance','','','a','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(6,'An insured risk which occurs accidentally as a result of defects in a ship is','a voyage policy    ','a total loss','an emergency     ','a particular average','','','d','','utme','2004',317,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(7,'Communication enhances business activities by','facilitating interaction between producers and consumers ','facilitating interaction among media houses','ensuring the movement of goods from the producer to the consumer','keeping the goods safe until they are needed','','','a','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(8,'In business, the computer is very important  especially in  ','financial management','marketing management   ','educational  management    ','information management','','','d','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(9,'What is the most important use of promotion in marketing?     ','Persuasion   ','Conviction','Information ','Education','','','c','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(10,'The current highest decision-making body on  privatization and commercialization of public enterprises in Nigeria is the','National Council on Privatization','Securities and Exchange Commission','Nigeria Investment Promotion Commission','Bureau of Public Enterprises','','','d','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(11,'The members of the Niger Basin Commission  include  ','Guinea, Ghana and Niger Republic','Burkina Faso, Guinea and Nigeria ','The Gambia, Benin Republic and Chad Republic',' Nigeria, The Gambia and Cameroon','','','d','','utme','2004',328,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(12,'Business environment refers to all elements that are  ','outside an organization but relevant to its operations ','inside an organization but irrelevant to its operations   ','internal to an organization and relevant to its operations','external to an organization but indirectly related to its  operations','','','d','','utme','2004',325,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(13,'Consumer rights include the right to   ','credit','free samples of a product  ','redress','a share of profits','','','c','','utme','2004',335,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(14,'One important requirement for the membership of the ECOWAS is ','integrity ','independence ','landmass   ','population','','','b','','utme','2004',318,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(15,'In Nigeria, the body that ensures that its members operate according to their professional ethics is the   ','SON  ','NPF   ','MAN ','NAFDAC','','','a','','utme','2004',316,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(16,'A transporter who had to sell some perishable goods without the prior authority of the owner  becomes an agent by   ','conduct ','necessity','ratification  ','estoppel','','','b','','utme','2004',321,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(17,'Poor sewage disposal, oil spill and indiscriminate refuse dumping all ','lead to  land pollution','water pollution   ','land and water pollution','air and water pollution','','','d','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(18,'One of the advantages of commercialization is that it','encourages entrepreneurship','increases the salaries of workers','motivates government to establish more  businesses   ','gives workers on-the-job training','','','a','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(19,'A common element in all contracts is    ','offer','  consideration   ','acceptance ','agreement','','','d','','utme','2004',326,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(20,'Sources of finance to a business include personal  savings, shares, debentures and ','loans from IMF   ','bank overdrafts ','central bank loans','money from political parties','','','b','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(21,'Charges for loans paid by commercial banks to the Central Bank of Nigeria are called   ','bank rates   ','credit charges   ','interest rates',' bank charges','','','a','','utme','2004',315,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(22,'In the primary market, new shares are issued  through  ','personal selling, publicity and advertising  ','a prospectus, an offer for sale and a bill of exchange   ','advertising, a prospectus and a bill of exchange','a prospectus, an offer for sale and placing','','','b','','utme','2004',346,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(23,'The instruments of credit include ','billboards and postal stamps','payment vouchers and statement of account','bills of exchange and promissory notes','bills of exchange and salary vouchers','','','c','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(24,'The shares of a company listed on the stock exchange for sale are referred to as','registered shares  ','deferred shares ','issued shares       ','quoted shares','','','d','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(25,'What is the role of the capital market in the privatization exercise in Nigeria?    ','Selling the shares and stocks of the companies to be  privatized ','Encouraging private companies to  participate in the exercise ','Negotiating with individuals who want to buy public companies','Advertising for government','','','a','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(26,'In international trade, documentary credit is also known as   ','credit note   ','letters of credit','bankers\\' draft       ','letter of hypothecation','','','b','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(27,'A specialized institution in Nigeria that deals in  capital investments in the form of stocks, shares, bonds and debentures is the ','Securities and Exchange Commission ','commodity market','Nigerian Stock Exchange ','Central Bank of Nigeria','','','a','','utme','2004',325,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(28,'A group of assets which a business acquires with the intention of reselling them are referred to as','  current assets    ','investment assets','fixed assets    ','intangible assets','','','b','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(29,'Authorized share capital is also known as','called-up share capital    ','paid-up share capital ','registered share capital  ','issued share capital','','','c','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(30,'An action taken by a company outside its object clause is regarded as ','ultra vires    ','a trespass   ','uberrima fides    ','caveat emptor','','','a','','utme','2004',323,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(31,'The strategy adopted by a firm that ceases to operate at one or more locations because of inactivity is  ','rejuvenation ','focus','diversification     ','consolidation','','','c','','utme','2004',338,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(32,'A written partnership contract is known as','an invoice ',' a deed      ','a prospectus','a proposal','','','b','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(33,'The merger of a textile mill, a cement company and a tannery is referred to as ','  conglomerate merger ',' horizontal merger ','lateral merger',' vertical merger','','','d','','utme','2004',314,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(34,'As the branches indicate, iv is','commerce','exchange ','finance      ','construction','','','d','','utme','2004',329,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(35,'What does v represent?','Aids to trade','Advertising  ','Manufacturing  ','Industry','','','a','','utme','2004',337,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(36,'The most important function of commerce is','helping people to improve their profits','facilitating exchanges among individuals and firms ','assisting trade through banking and insurance   ','enhancing business relationships','','','b','','utme','2004',330,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(37,'The acronym PLC is used to identify a ','company limited by shares ','private company limited by shares','public company limited by shares','company limited by guarantee','','','c','','utme','2004',311,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(38,'Commerce includes all the occupations concerned with ','sales  ','production','marketing    ','distribution ','','','d','','utme','2004',321,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(39,'Factors of production can be described as the','resources required for the provision of goods and services   ','skills involved in deciding and directing the flow of goods  ','monetary tools employed by government to ensure stable production      ','elements involved in the process of formulating policies\\' on production ','','','a','','utme','2004',336,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(40,'Fluctuations in the supply of goods may be eliminated if the distribution system maintains','modern technology ','a team of retailers','warehouse services  ','sufficient middlemen','','','a','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(41,'Loan schemes by thrift societies are ','mortgage schemes   ','conventional schemes   ','mutual schemes     ','unconventional schemes ','','','c','','utme','2004',339,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(42,'An internal demand for goods to be purchased or drawn from stock is','a quotation','a requisition   ','a tender  ','an order','','','b','','utme','2004',334,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(43,'The term 4 net 7 on an invoice means that','4% surcharge will be made unless payment is made within seven days   ','4% discount will be allowed on the price charged only if the goods are bought within seven days  ','4% discount will be allowed on the price charged if payment is made after seven days ','4% discount will be allowed on the price charged if payment is made within even days.','','','d','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(44,'An order sent by an importer to an overseas supplier stating the details of goods required is known as   ','A export invoice    ','ship\\'s manifest','an indent    ','bill of lading','','','c','','utme','2004',331,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(45,'Organizing trade fairs in Nigeria is the responsibility of   ','National Directorate of Employment  ','Federal Ministry of Commerce','trade associations   ','chambers of commerce ','','','d','','utme','2004',335,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(46,'International fade takes place as a result of','uniformity in costs of production','inequitable distribution of natural resources','parity in the level of industrialization','similarities in climatic conditions.','','','b','','utme','2004',320,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(47,'The use of vending machines in retailing is hindered in a developing economy owing to','poor distribution network   ','low level of education    ','ineffective communication system','lack of steady power supply.','','','d','','utme','2004',322,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(48,'Manufactures’ Association  of Nigeria contributes to development by advising the government on','industrial policy and harmony   ','budget and control ','budget and industrial policy','environmental protection policy ','','','a','','utme','2004',312,'Admin','0000-00-00 00:00:00','2020-07-30 16:52:49'),(49,'Discounts offered by firms to middlemen for bulk purchases are ','A   trade discounts','sales  bonanza    ','cash discounts ','seasonal','','','a','','utme','2004',333,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(50,'Goods are  of merchantable  quality if they','conform to description  ','are of equal weight','are of the same quality ','conform to buyers\\' purpose','','','a','','utme','2004',332,'Admin','0000-00-00 00:00:00','2020-07-31 12:03:47'),(51,'A floating policy is an example of','marine insurance    ','actuaries insurance ','motor insurance    ','fire insurance.','','','b','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:42'),(52,'The most important benefit of insurance is that it Provides ','control over activities','the insured with a right to premium','the insured with a right to full compensation','protection against risks.','','','d','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(53,'Which part of the computer system does the keyboard device belong to? ','Output unit ',' Logic unit ','Input unit ','Control unit.','','','c','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(54,'The Lake Chad Basin Commission was formed in ','1974','1984','1954','1964','','','d','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(55,'A major disadvantage of the privatisation policy is that ','the economy would be private-sector-led ','citizens would benefit less from government','more money would be brought into circulation','government would loss control of the economy.','','','d','','utme','2005',143,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:46'),(56,'The most important right of the employee in discharging his duties to the employer is the right to ','regular emoluments  ','job security ','working facilities  ','annual leave. ','','','b','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(57,'The most dangerous pollution is','water ','noise pollution','soil pollution   ','air pollution.','','','d','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-08-13 06:15:21'),(58,'The primary objective of consumer protection laws is to ensure that consumers derive maximum satisfaction from goods and services','consumers buy goods and services at cheap rates   ','manufacturers of goods and service providers overcome ','Internal competition','manufacturers of goods and service providers get optimum profit','','','a','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(59,'The compensation the insured gets depends heavily on the ','economic situation','premium paid ','risk suffered','insurer\\'s buoyancy','','','b','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(60,'The computer that functions by taking discrete numbers and  performing mathematical calculations is called ','mainframe ','digital ','hybride','analogue.','','','c','','utme','2005',150,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(61,'Commercialization of government corporations brings about an increase in the level of','money supply in the economy','distrust among business operators','competition among business operators','social responsibility','','','c','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(62,'The difference between personal selling and sales promotion is that while sales promotion includes free gifts and samples, personal selling involves','distributing instructional posters','face-to-face communication with customers','premium programming for customers','publishing promotional booklets.','','','b','','utme','2005',131,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:53'),(63,'The type of communication from a superior to a subordinate in an organization is referred to as','horizontal communication','lateral communication','downward communication','upward communication.','','','c','','utme','2005',137,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(64,'A step-by-step method of carrying out functions in  an office is known as','procedure','organizing',' policy ','programme.','','','a','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:55'),(65,'The best means of sending unwritten messages simultaneously   to   many   branches   of  an organization within a country is the','television',' telephone   ','telegraph   ','radio.','','','c','','utme','2005',175,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(66,'The   media    used   for   inter-departmental communication include.','circulars, advertisement and notice boards','memoranda, circulars and the telephone','memoranda, advertising and face-to-face','memoranda, advertising and the grapevine','','','b','','utme','2005',121,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(67,'An instrument that is traded in the second-tier foreign exchange market is','money order','stock ','travellers\\' cheque  ','debenture.','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-08-02 21:18:26'),(68,'The development of a container and a graphic design for a product is called ','packaging ','promotion','processing  ','production.','','','a','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:47:59'),(69,'A business firm that is involved in conveying goods or people is known as a ','consignor','commercial firm ','carrier','transporter','','','c','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(70,'The factors essential for tourism are','accessibility, capital, amenities and schools','goods weather, amenities, accessibility and scenery.','amenities, capital, accessibility and markets','good weather, capital, schools and scenery.','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(71,'In GIF contracts, risk passes at the time of shipment but the property does not pass until','there is physical transfer of goods','the shipping manifests are signed','the shipping documents are transferred','the goods on board are delivered.','','','b','','utme','2005',147,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(72,'A partnership is dissolved when','the business suffers a loss','there is bankruptcy','there is consistent theft','there is a misunderstanding between partners','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(73,'One of the disadvantages of sole proprietorship is','secrecy of annual reports','pride of ownership ','limited liability','unlimited liability.','','','d','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(74,'The most important concept in production is','utility ','wealth creation','transformation  ','distribution.','','','a','','utme','2005',136,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(75,'An acquired firm in a merger will always receive a',' premium  ',' grant ','share ','discount','','','b','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:06'),(76,'Occupations are classified into','production, labour and economics','extraction, construction and manufacturing','industry, commerce and serves','trade, aids to trade and services.','','','c','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(77,'The Nigerian Telecommunications Limited is a','Jointly owned company ','public corporation ','privately owned company ','public company. ','','','b','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(78,'An engineer in government employ is to be rendering   ','primary service   ','tertiary service ','indirect service   ','direct service. ','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:09'),(79,'The availability of goods and services is brought to the notice of consumers through','personal selling  ','public relations','the telephone  ','advertising.','','','d','','utme','2005',144,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:21'),(80,'The necessary documents used in foreign trade are ','bill of lading, invoice and letter of inquiry','indent, bill of exchange, bill of lading and invoice','invoice, shipping note, bill of lading and freight note   ','shipping note, certificate of origin and visible exports.','','','c','','utme','2005',126,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:11'),(81,'A cheque drawn by a bank official on the bank\\'s deposits in another bank on a customer\\'s instructions is known as ','promissary note',' bankdraft   ','bankers\\' order  ',' travellers cheque.','','','c','','utme','2005',135,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(82,'A type of credit offered by both commercial and merchant banks in Nigeria is ','trade credit','line of credit ','discounting facility ','overdraft.','','','d','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:13'),(83,'A major function of a chamber of commerce is',' increasing productivity','promoting both home and foreign trade','promoting trade in a particular line',' maximizing profit.','','','b','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:14'),(84,'Which of the middlemen in the channel of distribution has title to the goods he distributes?','The merchant wholesaler ','The agent','the limited wholesaler ','The retailer','','','a','','utme','2005',134,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:15'),(85,'Which of the following confirms the accuracy of the duty charged on imported goods?',' An indent ','Consular invoice',' Consignment note  ','Shipping note.','','','b','','utme','2005',138,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(86,'The association that comprises all types of businesses is referred to as',' chamber of commerce   ',' trust','trade association   ',' cartel.','','','a','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:30'),(87,'Wholesalers can be divided into',' sales agents and brokers   ',' full service wholesalers and merchant wholesalers',' cooperative wholesale society and limited service wholesalers ',' merchant wholesalers and agent middlemen.','','','b','','utme','2005',137,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(88,'In Nigeria the ministry in charge of registering trade associations is that of ',' industries',' commerce ','culture and tourism ',' finance.','','','b','','utme','2005',142,'Admin','0000-00-00 00:00:00','2020-08-02 21:18:26'),(89,'Invisible imports consists of',' cement, shipping and consultancy services',' banking   drinks, insurance and technical services.   ','','tourism, banking, canned foods and cement.','','','c','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:33'),(90,'The bank that discounts bills of exchange is the ','central bank  ',' mortgage bank','development bank  ','commercial bank.','','','d','','utme','2005',132,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:34'),(91,'The market where only indigenous firms are considered is the ','money market ',' second-tier securities market ',' local market ',' stock exchange.','','','b','','utme','2005',125,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:35'),(92,'From which of the following sources can partnerships increase their capital?',' Admission of a new partner',' Sale of shares   ','Discharge of a mortgage','Grants from relations.','','','a','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(93,'The excess of the assets over the liabilities of a business is called ','working capital','net worth ','capital employed ',' initial capital','','','a','','utme','2005',140,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(94,'Initial public offering is undertaken through the','secondary securities market','first-tier securities market','primary securities market','second-tier securities market','','','b','','utme','2005',141,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:52'),(95,'The major participants in the stock market when stock prices are rising generally are the','bulls ','registrars ','bears ','companies','','','a','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:53'),(96,'The fixed and current assets of a business are called ',' called-up capital    ','capital employed',' paid-up capital  ','authorized capital.','','','b','','utme','2005',145,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:54'),(97,'To increase the supply of money in a country, the central bank has to ','reduce cash ratio',' sell securities in the open market',' call on special deposits ',' raise cash ratio.','','','a','','utme','2005',127,'Admin','0000-00-00 00:00:00','2020-08-13 06:15:21'),(98,'A good financial instrument which serves as a  hedge against inflation is ','a bond  ','a share',' an option ',' a warrant.','','','a','','utme','2005',129,'Admin','0000-00-00 00:00:00','2020-07-14 12:48:56'),(99,'One advantage of a crossed cheque is that it can','only be paid into a savings account','be cashed over the bank\\'s counter','only be paid into the owner\\'s account',' be cashed by anyone','','','c','','utme','2005',130,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(100,'Given\\n    N\\n Sales    15 000\\n Opening stock  5 600\\n Purchases   9 700\\n Closing stock  4 400\\n Gross profit  4 500\\n Net profit   2 000\\nFrom the data above, calculate the rate of turnover \\n',' 3.50 times ','3.00 times ',' 2.00 times ',' 2.18 times.','','','d','','utme','2005',149,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(101,'question','optiona','optionb','optionc','optiond','','image','answer','solution','utme','examye',61,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(102,'Tourism can be classified as ',' tangible import',' intangible import',' visible export ','invisible export','','','d','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:05'),(103,'The input, output and central processing units are the basic components of a computer\\'s','memory ',' printer ',' hardware ',' software','','','c','','utme','2006',110,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(104,'An employer insures against his employees\\' dishonesty by taking up  ','fidelity guarantee insurance   ',' accident insurance   ','group life assurance  ','endowment policy.','','','a','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(105,'Payment made to the insured by the insurer outside its legal obligation is ','premium paid',' exgratia payment ','surrender value',' sum assured.','','','b','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:14'),(106,'An important social reason for development tourism in Nigeria is the  ','promotion of culture interaction   ',' provision of job opportunities','improvement of her balance of payments','encouragement of international relations.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:15'),(107,'The mode of transportation that conveys a limited variety of products through fixed laid routes is','waterways  ','Broad ','rail  ','pipeline.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-08-10 01:29:23'),(108,'A computer that can be used in weather forecast is ','  a hybrid computer ',' an analog computer','a mainframe computer ',' a digital computer.','','','d','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(109,'The setting of objectives for an organization and determining how to accomplish them is ','social responsibility  ','planning  ','organizing',' decision-making.','','','b','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:18'),(110,'An aspect of marketing that stimulates buying by providing free gifts is ',' advertising  ',' personal selling ','publicity ',' sales promotion,','','','d','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:19'),(111,'The limit of functions, activities and personnel that a supervisor can effectively manage  in a business organization  is  ','spun of control ',' delegation of authority ','chain of command ',' authority and responsibility','','','a','','utme','2006',128,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(112,'A seller attracts and retains patronage by',' enhancing public relations ',' enhancing sales promotion  ','  rendering pre-sales service',' rendering customer service.','','','d','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:21'),(113,'A bond which attracts only interest but leaves the capital unpaid is referred to as','a long-term loan','a development bond ',' a redeemable bond','  an irredeemable bond.','','','d','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(114,'A public company has 2 000 000 ordinary shares of 50k each and offers 50% for subscription at N2 per share. If the shares were fully subscribed, calculate the issued capital.','  N4 000 000     ',' N2 000 000','N1 000 000     ','  N500 000.','','','b','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:23'),(115,'The main requirement for admission to the second-tier securities market is the ','provision of a three-year trading record   ','disclosure of all trading activities   ',' creation of a good atmosphere for growth and development   ','guaranteeing of dividends to shareholders.','','','b','','utme','2006',114,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:36'),(116,'What is the capital employed?','N200 000','N340 000','N170 000','N300 000','','','d','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:25'),(117,'Which of the following is a development bank in Nigeria?','Union Bank Plc   ','First Bank Plc','First City Monument Bank ','Federal Mortgage Bank.','','','d','','utme','2006',110,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(118,'Trading on the stock exchange in anticipation of  price change in the market value of shares is','speculation  ','forecasting ','expectation','projection.','','','a','','utme','2006',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:26'),(119,'A financial institution which uses its capital strength to acquire controlling interests in other firms can be regarded as a','subsidiary company','holding company ','trust   ','cartel.','','','b','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:27'),(120,'A current account is beneficial to its holder as','cheques can be issued to anybody','customers cannot withdraw frequently','it is only the holder that can make withdrawals','it allows customers the use of passbooks.','','','a','','utme','2006',108,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:28'),(121,'The conversion of raw materials into finished products creates ','form utility ','marginal utility','place utility ','time utility.','','','a','','utme','2006',104,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(122,'The factor which critically determines the choice of occupation is ','training  ','skill ','interest','aptitude.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(123,'Capital to a business is technically  ','an expense','a liability ','  an asset ','a profit.','','','c','','utme','2006',112,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:31'),(124,'I. Wholesaling  II. Fishing  III. Canning IV. Retailing  The sequence in which the occupational activities above are performed is','Ill, II, I and IV     ','Ill, I, IV and II','I, II, III and IV      ','II, III, I and IV.','','','d','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:32'),(125,'The development of commerce resulted from','trading ','competition ','importation','specialization.','','','a','','utme','2006',97,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:33'),(126,'The difference between a private and public limited liability company is that the former','is unable to offer shares to the public','is unable to declare and pay dividend','has a higher number of shareholders','pays higher salaries to its managers.','','','a','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:34'),(127,'Materials used for further production of goods and  services are known as ','export goods','intermediate goods ','capital goods','  consumer goods.','','','c','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(128,'A liquidator\\'s fee is to be charged to the','realization account  ','trading account','revaluation account ','reconstruction account.','','','a','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:36'),(129,'The safety and quality of products are the social responsibility of ','the Standards Organization of Nigeria  ','the Manufacturers Association of Nigeria','the Corporate Affairs Commission','business organizations.','','','a','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:37'),(130,'A   feature   common   to   privatization   and commercialization is  ','profit-making    ','credit sales ','market expansion ','price increases.','','','a','','utme','2006',111,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:38'),(131,'A protection right which can be reviewed or renewed after seven years is known as ','patent','design ','registration name ','trade mark','','','a','','utme','2006',102,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(132,'The headquarters of the Lake Chad Basin Commission is in ','Niamey ','N\\'Djamena','Abuja ','Lagos.','','','b','','utme','2006',96,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(133,'In Nigeria, the main source of pollution is','domestic waste   ','organic waste','gas flaring   ','industrial waste.','','','d','','utme','2006',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:40'),(134,'‘Safeguarding the health of the nation\\' is the slogan used by ','NDLEA ','NHIS ','NAFDAC ','EPI.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:53'),(135,'When one person approves an act previously done by another in the former\\'s name without authority, this is known as   ','ratification ','estoppels','illegality ','misrepresentation.','','','b','','utme','2006',105,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(136,'The members of ECOWAS include',' Nigeria, Chad, Gabon and Cape Verde','  Burkina Faso, Nigeria, Niger and Mauritania','Guinea, Mali, Cameroon and Nigeria','Togo, Niger, Nigeria and Ghana.','','','d','','utme','2006',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:55'),(137,'The most important advantage of privatization is the enhancement of ','liquidity ','accountability','profitability  ','efficiency.','','','d','','utme','2006',112,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(138,'A trade association consists of members engaged in the same trade while a chamber of commerce is','highly regulated by a government agency','not restricted on a particular industry','made up of members that are registered',' made up of firms in the banking industry.','','','b','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(139,'Hire purchase is beneficial to the seller because',' it enhances his living standard ','it increases his turnover ','people pay instalmentally',' of the patronage he enjoys.','','','b','','utme','2006',116,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:31'),(140,'Consumerism aims at protecting the consumer from','harmful products  ','drug addiction','smoking cigarettes ','alcohol consumption. ','','','a','','utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:49:59'),(141,'The major types of warehouses are ','manufacturer, bonded, departmental and private  ','bonded, public, cold room and private','manufacturer, bonded, public and departmental','wholesaler, manufacturer, public and bonded.','','','d','','utme','2006',105,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(142,'The Customs and Excise Department is responsible for the collection of','royalties ','tariffs','taxes ','charges.','','','b','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:01'),(143,'A shop which consists of many stores trading under a single roof and which stocks varieties of gods with each unit having its own head is a ','multiple shop  ','supermarket ','superstore','departmental store.','','','d','','utme','2006',115,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:03'),(144,'An objective of the farmers\\' association is to','ensure that the prices of goods are fair and reasonable  ','correct the imbalance between consumers and producers ','improve the methods of selling and advertising   ','provide a stable market outlet for farm inputs,','','','a','','utme','2006',109,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(145,'The documents used in the purchase and sale of goods which contain other terms of trade are','debit note and credit note ','delivery note and advice not   ','invoice and order      ','quotation and invoice.','','','c','','utme','2006',101,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(146,'In international trade, exchanging goods for other goods and services purchased instead of paying in foreign currency is known as ','countertrade','balance of trade ','balance of payments','terms of trade.','','','a','','utme','2006',92,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(147,'The role of a wholesaler in the channel of distribution is to    ','produce goods in large quantities and sell in small quantities ','buy goods directly from the manufacturers','buy good in large quantities and sell in small quantities','sell goods directly to the consumers ','','','c','','utme','2006',106,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:20'),(148,'Foreign trade also involves ','providing services for other countries    ','specialisation and the exchange of goods in a country   ','buying and selling within a country ','the exchange of goods and services between firms. ','','','a','','utme','2006',107,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(149,'Consumers require protection against exploitation to ensure ','adequate consumer awareness','availability of product variety','the sale of quality products','increased aggregate demand.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(150,'The business environment that takes into cognizance the age distribution, ethnic mix and educational level of the consumer is','demographic environment','economic environment','cultural environment','natural environment.','','','a','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(151,'An agent who takes title to goods and has authority  to buy and sell on behalf of another is','a jobber   ','a broker  ','a factor','an auctioneer.','','','c','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(152,'Citizens are against privatisation mainly because of ','the rationalization of organizations','increased prices of goods and services','the likelihood of monopoly','ineffective management.','','','b','','utme','2007',68,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(153,'The major achievement of ECOWAS is','the expansion of regional trade','the emergence of a monetary union','infrastructure! development in member countries','mobility of labour among member countries.','','','a','','utme','2007',85,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(154,'An announcement of a person\\'s willingness to enter into a contract is referred to as ','a proxy','an offer ','a consideration ','an acceptance.','','','b','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(155,'The macro-environmental forces and trends which are a constraint on business operations are  referred to as  ','technological factors','economic factors   ','external factors ','internal factors.','','','c','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(156,'Which of the following best describes inputs for any production activity?   ','Natural resources.',' Business resources.','Human resources.','Material resources.','','','a','','utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(157,'Personal selling is most effective in marketing industrial goods because it involves','recognition and attachment to customers','personal interaction and information gathering','demonstrations and product acceptability','after-sales services and product demonstrations.','','','b','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(158,'The controllable variables that a firm uses to achieve its marketing objectives are called','marketing principles ','marketing mix','marketing concepts','marketing functions.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(159,'Public relations and advertising are similar in terms of','communicating product information','customer education ','the mode of operation','creating a favourable attitude.','','','a','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(160,'A major function of an entrepreneur is','decision-making ','encouraging competition','human-resource training','motivating employees.','','','a','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(161,'A Memorandum of Association is applicable to a',' sole trader ','joint-stock company',' partnership   ',' public corporation.','','','b','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(162,'The sustainable growth of commerce is largely due to ','marketing   ','advertising','exchange ','branding.','','','c','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(163,'A major advantage of a cooperative society is that it ','gives members the opportunity to unite','draws members closer to government','promotes awareness among members','encourages thrift among members.','','','d','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(164,'The making of doors from timber planks is a type of ','manufacturing ','tertiary production','secondary production   ','primary production.','','','c','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(165,'Law-making is an example of ','indirect service','commercial occupation ','direct service','industrial occupation.','','','c','','utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-15 05:13:13'),(166,'A document which advertises the shares of a company is known as a  ','memorandum of satisfaction   ','dividend warrant     ','deed','prospectus.','','','d','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-10 12:20:30'),(167,'The scope of economic activities can be enlarged by    ','transportation and trading   ','business and its promotion  ','trading and aids to trade','insurance and banking.','','','c','','utme','2007',78,'Admin','0000-00-00 00:00:00','2020-08-15 05:13:13'),(168,'The creation of utilities to satisfy human wants is referred to as   ','production  ','consumption','industrialization    ','occupation.','','','a','','utme','2007',65,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(169,'A major criticism of a cooperative society is','limited capital ','granting excessive loans to members   ','selling goods on credit to non- members    ','management incompetence.','','','d','','utme','2007',71,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(170,'An economic activity which deals with natural resources is a form of  ','extraction','refining   ','construction ','manufacturing.','','','a','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(171,'The first stage in tourism planning is','assessing feedback from tourists','preparing a list of tourist attractions','creating recreational opportunities','building community support.','','','b','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:36'),(172,'An agreement by the insurer to compensate the insured for losses suffered is   ','policy','surrender value   ','caveat emptor ','indemnity.','','','d','','utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(173,'One of the functions of the Nigeria Ports Authority is the provision of  ','facilities to enhance the speedy loading and offloading of ','facilities to ensure that goods get to their destinations  ','shelter for operators of cargoes',' courier services to ensure speedy delivery.','','','a','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(174,'The   World   Tourism   Organization   has   its headquarters in ','New York    ','Paris','Madrid     ','London.','','','a','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(175,'Digital computer is divided into ','analogue, hybrid and mini ','super, mainframe, mini and micro    ','mainframe, hybrid and micro','super, mainframe, micro and analogue.','','','a','','utme','2007',87,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(176,'A distinctive advantage of GSM is its ','mobility',' cost   ','stability   ','coverage.','','','a','','utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(177,'In the permanent storage device, DASD means','Data Access Storage Device','Data Access Systems Device','Direct Access Systems Device','Direct Access Storage Device.','','','d','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(178,'The major determinant of fire insurance premium is the ','type and structure of the property to be insured ','usefulness of the property to the owner','owner of the property to be insured','extent of fire damage anticipated.','','','a','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(179,'The Internet is a system of telecommunications used for   ','communicating long-distance messages ','sending and receiving text messages','sending electronic messages .','communicating messages through telegrams.','','','c','','utme','2007',76,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(180,'A written  agreement for  hiring  a  ship for transporting goods is a ','consular invoice','bill of lading ','charter party ','certificate of origin.','','','c','','utme','2007',87,'Admin','0000-00-00 00:00:00','2020-08-15 05:13:13'),(181,'The major function of a trade association is that it','liaises with foreign trade associations','helps to promote foreign trade','facilitates members\\' access to credit facilities','helps to promote research on behalf of members.','','','d','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(182,'A major setback of international trade is','inadequate exports','economic sanctions','devaluation of currency','exchange rate appreciation.','','','b','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(183,'Which of the following requires payment into the payee\\'s account?   ','Crossed cheque.','Traveller’s cheque.    ',' Open cheque.','Certified cheque.','','','a','','utme','2007',87,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:31'),(184,'The traditional way of paying cooperative dividend is to distribute profit in proportion to members\\'','subscriptions  ','total savings','volume of purchases   ','contributions.','','','c','','utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(185,'The abbreviation C & F indicates that the','production cost excludes the cost of carriage','selling price includes the cost of carriage','cost of production includes delivery charges','cost price includes the cost of carriage.','','','b','','utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(186,'The sale of foreign investment and gold reserves can be used to ','correct adverse balance of trade','increase invisible imports','correct adverse balance of payments','correct a budget deficit.','','','a','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(187,'A share premium is an example of','issued capital ','capital stock ','equity capital','capital reserve.','','','d','','utme','2007',75,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(188,'A major benefit a debtor can derive from using a credit facility is ','better service  ','goodwill','convenience    ','control.','','','c','','utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(189,'The function  of money that facilitates the comparison of the quality of goods as a basis of exchange is the   ','unit of account','measure of value ','store of value','medium of exchange','','','b','','utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:48'),(190,'The difference between the buying and selling price of shares is known as   ','brokerage','margin   ','jobber\\'s turn   ','gross profit.','','','c','','utme','2007',77,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(191,'Which of the following is a risk-free security?','Preference share.   ','Ordinary share.','Treasury bill.    ','Debenture.','','','c','','utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(192,'The central bank controls the quantity of money in circulation through  ','open-market operations','decreasing the tax rate ','issuing new currencies    ','increasing the tax rate.','','','d','','utme','2007',73,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(193,'The selling of new shares to existing shareholders is referred to as ','public issue ','offer for sale','rights issue  ','bonus issue.','','','c','','utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(194,'A new company requiring a large amount of equity finance may source funds from the','capital market   ','central bank','money market    ','commercial banks.','','','d','','utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-29 00:13:34'),(195,'A credit instrument which also serves as a legal tender is   ','cheque    ','paper money','voucher   ','money order.','','','b','','utme','2007',69,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(196,'The body regulating the sale and purchase of shares in Nigeria is the ',' Corporate   Affairs Commission   ','Securities   and   Exchange Commission    ','Securities   and   Exchange Tribunal     ','Nigerian Stock Exchange.','','','b','','utme','2007',84,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(197,'An aspect of commerce that facilitates the distribution of products is ','transportation ','advertising  ','branding ','trading ','','','a','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:55'),(198,'An activity that involves derivation of raw materials from land and sea is ','construction ','farming ','agriculture ','extraction ','','','d','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(199,'The art of soap-making is an example of ','Primary occupation ','Secondary occupation ','Tertiary occupation ','Construction occupation ','','','b','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:23'),(200,'Given: I. shoe marker    II. Policeman     III. Fisherman    IV. Gardener    V. Broker .    The persons engaged in primary occupation are \\n','I, III and IV ','III and IV','III and V','I , II and V','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:50:58'),(201,'The process of changing the form of a raw material is known as  ','fabrication ','extraction ','conversion ','production ','','','d','','utme','2008',91,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(202,'In the long run, all factors of production are ','fixed ','variable ','marginal ','constant ','','','b','','utme','2008',87,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(203,'The quality and quantity of production mostly depend  on the ','effectiveness of factors ','availability of factors','level of education of entrepreneurs ','level of cooperation among workers','','','a','','utme','2008',87,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:48'),(204,'The promotion of savings culture is a feature of a ','trade association ','consumers  cooperative society ','thrift cooperative society ','business association ','','','c','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(205,'A document which gives a legal status to a company is the certificate of ','incorporation ','trading ','commencement of business','business registration','','','a','','utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(206,'A proposed company may not be registered if ','the name conflicts with that of another ','it does not put ‘limited’ after its proposed name ','it has no paid-up capital ','it has no asset of its own.','','','a','','utme','2008',94,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:05'),(207,'An example of a cartel is ','OPEC','ECOWAS ','AU ','EU','','','a','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-23 16:35:16'),(208,'The cheapest source of funds available to a company is through ','the sale of shares','retained profits ','the sale of bonds','lease financing','','','b','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(209,'The components of capital employed in a business are ','owners’ equity and long-term debts ','total assets and current liabilities ','share capital and long-term debts','share capital and current liabilities.','','','b','','utme','2008',83,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:07'),(210,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. What is the company’s authorized share capital?','N2500 000','N4000 0000','N5000 000','N7500 000','','','a','','utme','2008',67,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(211,'Maimani Plc, whose nominal capital is made up of 500 000 ordinary shares of 50k each, decided to offer 80% of it to the public and realized only 50% of the amount due. Determine the company’s reserve share capital ','N2500 000','N1000 000','N1500 000','N2000 000','','','b','','utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(212,'In order to prevent liquidity problems in commercial banks, the central bank uses.','moral suasion  ','fiscal policy','reserve ratio','taxation ','','','c','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:10'),(213,'An account maintained with a commercial bank for the purpose of foreign exchange transaction is the ','foreign account ','International account ','domiciliary account ','foreign reserves account ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:11'),(214,'A trader who gives credit stands to enjoy ','higher profit ','cash discount ','increased sales ','trade discount','','','c','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(215,'A person who buys new issues with a view of reselling at a higher price in the near future is referred to as a ','bull ','bear ','dealer ','stage','','','a','','utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(216,'A source of capital that has both elements of debt and equity is a ','debenture ','warrant ','loan ','share','','','d','','utme','2008',98,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(217,'A type of retail trade where a group of similar states which is owned by a firm operates in different locations is a ','conglomerate ','chain store','departmental store ','supermarket ','','','b','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(218,'A warehouse which is used to store goods whose customs duty is not yet paid is a ','wholesale warehouse','bonded warehouse','public warehouse','branded warehouse','','','b','','utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:16'),(219,'Balance of payments is made up of ','visible  and current  items ','invisible and capital items ','current and capital items','visible and invisible items','','','d','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(220,'Most of the barriers to international trade have been eliminated through ','diversification ','globalization ','commercialization ','privatization ','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:18'),(221,'A document sent by a seller to inform a buyer about the prices of goods is the ','catalogue ','price list','credit note','proforma invoice ','','','b','','utme','2008',75,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(222,'Which ‘FOB’ is written on a document, it implies that the buyer bears the ','cost of goods and advert ','loading cost and insurance ','insurance and transport costs','transport and communication costs','','','c','','utme','2008',79,'Admin','0000-00-00 00:00:00','2020-07-29 14:16:36'),(223,'A crossed cheque with the inscription ‘not negotiable’ must be paid into the ','current account of the drawer ','current account of the payee of the drawer ','savings account of the payee','fixed account of the payee','','','b','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:21'),(224,'The pooling of business information for the benefit of members is a major function of a ','pressure group ','trade association ','cultural group ','trade union ','','','b','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:22'),(225,'An association to which all chambers of commerce in Nigeria are affiliated is the ','Nigeria Labour Congress ','National Association of Chambers of Commerce, Industry, Mines and Agriculture','Nigeria Association of Chambers of Commerce, Industry, Mines and Agriculture ','Nigeria Stock Exchange ','','','c','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:31'),(226,'The resources which are necessary for business development include ','manufacturing, materials, mentors and money ','merchant, materials, mentors and money','man, money, materials and machines','machines, manufacturing, money and materials','','','c','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:06'),(227,'The four Ps of marketing are','product, place, process and promotion ','price, product, property and place','price, product, place and promotion ','price, production, place and property ','','','c','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(228,'Personal selling is used for the purpose of ','establishing the company ','providing information ','creating product awareness','launchers ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:26'),(229,'Ships used for international transport are ','trawlers ','yachts','ocean liners ','launchers ','','','c','','utme','2008',71,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:27'),(230,'A function generally performed by authorities of both the air and seaports is the ','maintenance of warehouses where goods can be stored','provision of facilities for loading and unloading  of cargoes ','maintenance of security and order at the ports.','provision of facilities for landing and refueling at the ports.','','','d','','utme','2008',76,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(231,'A major factor hindering effective communication process is ','climatic condition ','social unrest ','distance ','noise ','','','d','','utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:29'),(232,'The fear of many communities concerning tourism development is the ','influence of foreign culture ','fear of disease transmission ','fear of pollution ','religious intolerance ','','','a','','utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:30'),(233,'The development of tourism in Nigeria  will enhance ','agriculture ','revenue generation ','export ','labour mobility ','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(234,'A historical building is a feature of ','cultural tourism ','industrial tourism ','agricultural  tourism','D. ecological   tourism','','','a','','utme','2008',84,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(235,'The sum of money paid by a policy-holder to an insurer is referred to as ','interest ','premium ','gross profit ','sales revenue','','','b','','utme','2008',67,'Admin','0000-00-00 00:00:00','2020-08-02 21:18:26'),(236,'An example of a non-insurable risk is ','burglary ','speculation ','fire ','accident ','','','b','','utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:33'),(237,'The coordinating section of the central processing unit that manages the flow of data is the ','arithmetic logic unit','control unit','magnetic unit','register','','','b','','utme','2008',92,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:34'),(238,'An agreement between two parties which is enforceable by law is a ','promise ','warranty ','contract ','condition ','','','c','','utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:35'),(239,'The implied provisions in every sale of goods as contained in the ales of Goods Act of 1893 are conditions and ','consideration ','sureties ','warranties ','guaranties ','','','c','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(240,'When an employee incurs expenses while executing his normal duty, the employer is responsible for his ','safety ','family’s security ','family’s welfare ','indemnification ','','','d','','utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:37'),(241,'The body charged with divesting government interests in public enterprises is ','SON','NPC','BPE ','NDE','','','c','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:38'),(242,'The practice whereby government relinquishes its ownership interest in a public enterprises is ','commercialization ','indigenization ','privatization ','nationalization ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(243,'A factor is a business environment which increases the rate of product obsolescence is ','technology ','political','legal ','economic','','','a','','utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(244,'Which of the following is a form of social responsibility of a business? ','selling goods  at cheaper prices ','using the best technology available ','maintaining  tidy and safe environment ','Meeting contractor’s obligation ','','','c','','utme','2008',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:41'),(245,'A computer component that decodes and interprets instructions and also directs program implementation  is ','memory unit','Central processing unit ','control unit ','system unit','','','b','','utme','2008',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:42'),(246,'Which software program can be used to generate ','MS Word ','Database ','MS Excel','Adobe','','','c','','utme','2008',70,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(247,'The central focus of commercial activities is ','pricing   ','advertising ','trading ','marketing ','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:51:44'),(248,'An aid to trade associated with communications is ','banking ','transportation','warehousing ','insurance ','','','b','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(249,'The services of a textile worker are an example of ','extractive activity ','commercial activity ','manufacturing ','construction ','','','c','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(250,'Resources harnessed in certain proportion to create goods and services are ','factors of production ','technology and labour ','land and entrepreneur ','raw materials ','','','a','','utme','2009',70,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(251,'Primary production is associated with ','banking ','manufacturing ','agriculture ','construction ','','','c','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:29'),(252,'The major components of modern retailing include ','branding, doorstep  selling and customer stimulation ','branding, sales promotion and mail order ','chain stores, customer stimulation and doorstep selling ','branding, supermarkets and after-sales service','','','d','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(253,'A chain store usually combines the features of ','multiple shops and departmental stores ','hypermarkets and stalls ','multiple shops and hypermarkets','mail order business and multiple shops','','','a','','utme','2009',89,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(254,'One of the functions of the wholesalers is to ','forecast prices','reduce prices of goods','political unrest ','analyse sales periodically ','','','c','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(255,'An artificial barrier to international trade is ','political unrest  ','culture of the people','unit of measurement ','custom duties','','','d','','utme','2009',68,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(256,'The most commonly used commercial documents are ','order notes, debit notes, invoices and quotations ','letters of enquiry, consignment notes, receipts and invoices ','credit notes, statement of accounts, dispatch order and bills ','balance sheet, receipts, invoices and manifests.','','','b','','utme','2009',92,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(257,'The term free on board means that the price includes ','costs and insurance only ','costs and freight only','freight and insurance only','costs, insurance and freight ','','','d','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-07-29 13:58:20'),(258,'If a buyer is given 12.5% discount on N50000 worth of goods, how much will he pay?','N56 250','N43 750','N43 250','N6250','','','b','','utme','2009',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:02'),(259,'A cheque which a bank draws on its own funds is a','bankdraft ','cashier’s cheque ','bank cheque ','crossed cheque','','','a','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(260,'Billboards and posters are forms of ','electronic media ','print media','outdoor media ','window display media','','','c','','utme','2009',71,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:37'),(261,'A collective term for advertising, personal selling and publicity is ','exhibition ','promotion ','trade fair ','mechanizing','','','a','','utme','2009',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:05'),(262,'The central bank differs from commercial banks  because it ','renders service to customers','carriers but foreign exchange transactions ','issues currencies ','discounts bills','','','c','','utme','2009',92,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(263,'One of he facilities enjoyed by a current account holder is ','a dividend  ','a bonus','an overdraft ','interest on deposits','','','c','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:07'),(264,'In which of the following will be number of words used determine the cost of the message sent?','telephone','telegram ','e-mail','telex','','','b','','utme','2009',60,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(265,'The transmission of telephone services from one country to another is facilitated by ','communication satellite ','international facility ','interconnectivity ','internet services','','','a','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:09'),(266,'The principle of insurance which entitles an insurance company to take any advantage due to the insured after full indemnity is ','contribution  ','subrogation ','proximate cause ','utmost good faith ','','','b','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(267,'A risk that can be estimated and calculated to be compensated is ','a delivery risk ','an insurable risk','a credit risk ','a systematic risk ','','','b','','utme','2009',78,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(268,'The most important reason for the existence of insurance business is to ','prevent the occurrence of any loss','spread losses to all covered participants','provide for the replacement of facilities','encourage individuals to save','','','b','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:11'),(269,'One major advantage of transportation to a business is to','extend the firm’s market coverage','ensure that goods are produced faster','procure raw materials cheaply ','ensure the quality of products','','','a','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(270,'Warehousing is important to manufacturers because it helps to ','improve the quality of goods ','produce goods in advance','meet the demand of customers ','determine input requirements','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(271,'One of the major problems of a sole proprietor is sourcing for ','raw materials ','labour ','machineries ','funds','','','d','','utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(272,'In a public limited liability company, planning is carried out by ','the chairman of the board ','the board of directors ','shareholders','employees','','','b','','utme','2009',91,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(273,'Partnerships are most effective where ','the partners are family friends ','professionals are involved','members can easily raise enough capital ','government regulations are favourable ','','','b','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(274,'The type of partnership in which all partners are jointly liable in bearing risk is ','limited partnership ','partnership-at will','ordinary partnership ','industrial partnership ','','','c','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(275,'The financial instrument that entitles the holder to receive dividend and capital gains is a ','share  ','bond ','bill of exchange ','treasury bill ','','','a','','utme','2009',74,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:18'),(276,'The circulating capital of a business enterprise is classified into ','cash, work-in progress and debtors ','cash, vehicles, land and buildings ','debtors, stock of raw materials and fittings ','pre-payments, debtors and equipment.','','','a','','utme','2009',87,'Admin','0000-00-00 00:00:00','2020-07-28 12:17:02'),(277,'If a firm has a turnover of N50 000 and the cost of goods sold is N40 000, what is the percentage of gross profit on sale? ','30.50%','20.50%','20.00%','D.10.0%','','','c','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:36'),(278,'A body established to protect the interest of members against the exploitation of retail traders and manufacturers is the ','wholesalers association ','consumer’s  association ','government agency ','workers’ union ','','','b','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(279,'The manufactures’ Association of Nigeria is an example of a ','labour union ','pressure group ','conglomerate ','cartel','','','b','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:22'),(280,'The characteristic which ensures that money is free from forgery is its ','legality ','durability ','recognition ','credibility ','','','b','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-08-13 12:59:05'),(281,'The major dealers on the stock market are the ','agents ','jobbers ','investors ','brokers','','','d','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(282,'The daily official publications of the Nigerian Stock Exchange give detailed information on the ','changes in the official rules set by the market ','method of transactions agreed upon by members ','participation of members in a day ','changes in the price of securities','','','c','','utme','2009',81,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(283,'The function which ensures that set objectives are attained by an organization is ','planning ','directing ','staffing ','controlling ','','','d','','utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:26'),(284,'An organizational structure that is military in nature is the ','line structure ','staff structure ','line and staff structure ','functional structure ','','','d','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(285,'The efficiency of an organization is enhanced by ','government assistance ','the host community ','customer support ','skilled manpower ','','','d','','utme','2009',64,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(286,'The concept which focuses on consumers in decision-making is ','selling concept ','marketing concept ','product concept ','production concept ','','','b','','utme','2009',86,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(287,'Market skimming is an example of ','market penetration ','Sales promotion ','pricing policy','advertising ','','','a','','utme','2009',76,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(288,'The most important attributes in a sale of goods contract are ','offer and consideration','price and goods ','offer and acceptance ','demand and supply','','','c','','utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(289,'Unresolved disputes between the employer and employees are usually referred to the ','code of conduct bureau','personnel unit ','disciplinary committee','industrial arbitration tribunal ','','','d','','utme','2009',96,'Admin','0000-00-00 00:00:00','2020-08-02 21:18:26'),(290,'The process of eliminating a virus from a computer program is ','programming ','debugging ','formatting ','looping','','','c','','utme','2009',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(291,'The primary memory component of a computer is the ','cache ','console ','assemblers','compilers ','','','b','','utme','2009',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:48'),(292,'A customer with XYZ Plc sent money through his account to his sister’s  account in another branch. This is an example of ','e-business','e –commerce ','e-finance ','D e-banking ','','','d','','utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(293,'The economic environment of a business is concerned with ','climatic conditions','changing values ','the growth rate','the interest rate','','','c','','utme','2009',84,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:38'),(294,'A firm that disposes its wastes properly is discharging its ','community responsibility ','environmental responsibility ','civic responsibility ','social responsibility ','','','b','','utme','2009',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:52:46'),(295,'The wealth of a nation depend on the volume of its','bilateral trade activities','commercial activities','multilateral trade activities','stock market','','','b','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(296,'Which of the following can be used to differentiate skilled and unskilled lab our? ','education and training','available resources ','level of commitment','salaries and wages','','','a','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(297,'A doctor who attends to patients at home after his official duty is','A community development worker','a direct service worker','an indirect service worker ','a direct and an indirect worker','','','b','','utme','2010',108,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(298,'Manufacturing and construction activities are class8ified under','Primary production','Tertiary production','secondary production','direct production','','','c','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(299,'The reward of rent, wages, interest and profits accrue from','capitals, labour, land, and entrepreneur respectively','land entrepreneur, labour and capital respectively','land, labour, capital, and entrepreneur respectively','labour, entrepreneur, land and capital respectively.','','','c','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(300,'The factor of production that is subject to depreciation is','capital ','land','labour','entrepreneur','','','a','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:38'),(301,'Division of labour ultimately leads to ','conservation','integration','specialization','repetition','','','c','','utme','2010',100,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(302,'A worker who process rice is engaged in','constructive activity','commercial activity','extractive activity','Manufacturing activity','','','d','','utme','2010',89,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(303,'After- sales service is a function usually rendered by','a retailer','a wholesaler ','an agent ','an entrepreneur ','','','a','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(304,'A trend is retailing which enables consumers to have free access to different products is ','after sales service ','branding ','self-service','vending machine','','','c','','utme','2010',84,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(305,'The activity which entails buying of goods in bulk and selling in small quantities to retailers is ','assembling ','wholesaling ','retailing ','merchandising ','','','b','','utme','2010',102,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:21'),(306,'The comparison of a country’s visible and invisible exports and imports expressed in monetary term is ','balance of payment ','terms of trade','balance of trade','terms of payment ','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(307,'The document that gives an importer a freehand to obtain goods from any manufacturer is ','a consular invoice ','a closed indent ','an open indent ','a freight note','','','c','','utme','2010',108,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(308,'Entrepot trade usually occurs in ','exchanging goods within a nation ','exchanging goods among countries ','importing goods among countries ','exporting goods to be re-exported ','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(309,'The document issued to a port authority when goods are deposited is a ','dock landing account ','bill of sight ','bill of lading ','dock warrant ','','','d','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(310,'The details of the goods required by the purchaser is outlined in ','a consular invoice ','an indent ','an invoice ','a certificate of origin ','','','c','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(311,'Selling goods in foreign countries at prices below their marginal cost is ','dumping ','depreciation ','devaluation ','discounting ','','','a','','utme','2010',92,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(312,'A process of creating more market for a product is through ','consumerism ','marketing ','advertising ','repositioning.','','','c','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(313,'One of the merits of television as a medium of advertising is that it ','is prone to censorship ','is relatively cheap ','has more sensory stimulation ','has more network coverage','','','c','','utme','2010',91,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(314,'The best mode of ensuring that items posted get to the named addressed is through','recorded delivery ','registered mail','certificate of posting ','express mail','','','b','','utme','2010',104,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(315,'A businessman who undertakes the hull insurance policy is aiming at ','covering losses on damages to the cargo ','protecting injured crew in the ship ','averting payment of the freight ','covering damages to the body of the ship ','','','a','','utme','2010',110,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(316,'An agent who brings a customer into business contact with his principal is known as ','a del credere agent ','an auctioneer','a factor','a broker','','','d','','utme','2010',112,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(317,'A major hindrance to tourism growth in Nigeria is ','absence of genuine tour operators ','lack of tourism master plan ','inadequate tourist centres','non-compliance to immigration laws.','','','b','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(318,'The warehouse that is owned and controlled by the government is a ','wholesalers’ warehouse ','public warehouse ','state warehouse','manufacturers’ warehouse','','','b','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(319,'One of the main features of a partnership is ','limited liability ','lack of corporate existence ','unlimited membership ','lack of mutual confidence','','','b','','utme','2010',94,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(320,'An arrangement by independent firms to share the market of their products on quota basis is referred to as  ','trust ','integration ','syndicate ','cartel','','','d','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(321,'An illegal arrangement by manufacturers to control the price or condition of sale of a product is ','ring ','factoring ','consortium ','merger','','','c','','utme','2010',121,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(322,'A public company with an authorized capital of N60,000, issued 36,000 shraes at 150k each. What is its capital?','N60,000','N36,000','N54,000','N90,000','','','c','','utme','2010',84,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(323,'One of the functions of NACCIMA is ','negotiating with labour unions in matters of wages and conditions of service','pooling of members’ resources for long-term investment ','disseminating information to members on matters relating to tariffs ','ensuring uniformity in labour matters and industrial relations.','','','d','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(324,'A characteristic of money which ensures that its value is not lost is ','homogeneity ','easy portability ','divisibility ','relative scarcity ','','','d','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(325,'The instrument used in the capital market is ','treasury bill ','bill of exchange ','stock ','debenture ','','','c','','utme','2010',93,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(326,'A pre-requisite for admission into the second-tier securities Market is for a company to ','make 20% of its equity share available to he public for subscription ','have a minimum of 100 shareholders ','have a maximum of 100 shareholders ','make 10% of its equity share available to the public for subscription','','','d','','utme','2010',114,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(327,'The tree components of staffing are ','recruitment, interview and appointment ','recruitment, test and placement ','recruitment, selection and appointment ','recruitment, selection and placement ','','','d','','utme','2010',98,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(328,'Which of the following is a matter of personal preference on the part of a superior officer?','Unity of command ','span of control ','delegation of authority ','unity of direction','','','c','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(329,'The conversion of raw materials into finished goods leads to the creation of ','form utility ','product utility ','possession utility ','place utility ','','','a','','utme','2010',97,'Admin','0000-00-00 00:00:00','2020-08-09 10:04:39'),(330,'The main concern of marketing concept is to ','reduce the number of retail outlets ','identify consumer needs and satisfy them ','increase sales to meet consumer needs ','encourage division of labour.','','','b','','utme','2010',93,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(331,'The best pricing strategy for a company that produces warm clothing is ','target return pricing ','bid pricing ','variable pricing ','product line pricing ','','','d','','utme','2010',107,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:48'),(332,'The deliberate and sustained efforts of an organization towards the creation of goodwill for its products and services is through ','Public relations ','advertising ','sales promotion ','rebranding ','','','a','','utme','2010',112,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(333,'The label on a product such as ‘pampers’ is a type of ','trademark  ','branding ','packaging ','patent right','','','a','','utme','2010',99,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(334,'An opportunity to reject a binding contract at will by a third party is said to be a ','valid contract ','quasi contract ','voidable contract','conditional  contract','','','c','','utme','2010',124,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(335,'An agency contract must involve ','a principal and a consumer','a principal  and a producer ','a principal and a third party ','a principal and a third party ','','','d','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(336,'The difference between trademark and patent right is that the latter ','gives exclusive right to import a particular good ','is conferred by the government ','confers monopoly  on a product ','confers exclusive right to publish literary works.','','','c','','utme','2010',104,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(337,'Which of the following is a function of consumerism? ','Protecting consumers’ rights ','providing consumers’ choice','providing consumers’ needs','Making profiteering impossible','','','a','','utme','2010',101,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(338,'A printed copy of processed information from the computer is the ','soft copy ','file copy ','scanned copy ','hard copy ','','','d','','utme','2010',103,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(339,'The central working system of a computer used for data processing is the ','memory unit ','monitor ','floppy disk drive ','hard drive','','','b','','utme','2010',109,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(340,'The major problem confronting Cyber Café operators is ','Advanced fee fraud by clientele ','poor network coverage ','high operating costs ','copyright violations by clients','','','c','','utme','2010',96,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(341,'A device that enables the downloading of information from the internet is the ','floppy drive ','compact disk ','modem ','blue tooth ','','','c','','utme','2010',118,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(342,'In e-baking, ATM means ','authentic Teller Machine','Automatic Teller Machine ','All-purpose Teller Machine','Automated Teller Machine','','','d','','utme','2010',111,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(343,'One way by which a business can discharge its social responsibility to its community is to ','hold monthly meetings of its customers','build houses for its executives ','award scholarship to staff children ','build public health centres.','','','d','','utme','2010',106,'Admin','0000-00-00 00:00:00','2020-08-20 01:12:57'),(344,'The most important function of commerce is in ','enhancing business relationships ','helping people to improve their profits ','facilitating exchange among individuals and firms','assisting trade through banking and insurance','','','c','','utme','2011',97,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(345,'The three main classifications of occupation are ','construction, trade and services ','manufacturing, industry and services ','farming, banking and trading  ','industry, commerce and services','','','d','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:12'),(346,'An oil exploration company is engaged in ','tertiary production ','constructive occupation ','extractive occupation ','secondary production','','','c','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:31'),(347,'Services rendered to the public is provided by ','Government ','civil servants ','professionals ','domestic servants ','','','b','','utme','2011',111,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(348,'The creation of goods and services to satisfy human wants is referred to as ','manufacturing ','commercialization ','Production ','entrepreneurship ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:21'),(349,'Which of the following is a limitation  of division of labour? ','decline in craftsmanship ','monotony of work ','reduction in output','reduction in labour force','','','d','','utme','2011',106,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(350,'Resources obtained from the extractive sector that are transformed into finished products are examples of ','primary production ','tertiary production ','direct production ','secondary production.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-16 15:36:49'),(351,'An individual that links the producer with the retailer is ','an agent ','a wholesaler ','an entrepreneur ','a principal ','','','b','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:24'),(352,'One of the functions of a retailer is the ','financing of production activities ','provision of credit facilities to relations ','provision of jobs for customers ','breaking of bulk','','','b','','utme','2011',92,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(353,'The main aim of selling directly to the consumers by manufacturers is to ','reduce transportation cost','make contact with individual consumers ','discourage the activities of middlemen ','maximize profit margin','','','c','','utme','2011',118,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:15'),(354,'Balance of payment problems arise if a country’s ','exports is more than imports','imports is more than exports','currently is devaluated','Invisible exports is more than visible exports ','','','b','','utme','2011',98,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:27'),(355,'The three components of a country’s balance of payment are ','Current account, capital account and monetary movement account ','capital account, trade account and business record ','sales account, profit and loss account and capital account ','monetary movement account, trade account and ales ledger.','','','a','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:28'),(356,'A document that indicates obligation that is transferable by delivery and endorsement is a ','bill of lading ','bill of exchange ','documentary evidence ','negotiable instrument ','','','a','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(357,'The document which can be exchanged for a bill of lading is ','freight note ','mate receipt ','export invoice ','ship report','','','a','','utme','2011',89,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:30'),(358,'The price quoted which includes the cost of insurance, freight and all delivery charges to the importer’s warehouse is ','Free Alongside Ship','Franco ','Free on Board ','Free on Rail','','','c','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:31'),(359,'The purchase of goods under the CWO system of payment implies that ','money must be enclosed when ordering ','payment must be made on delivery ','payment must be made on the spot.','cash must be paid on the spot ','','','b','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(360,'The most effective but limited medium of advertising in Nigeria is ','billboard ','television ','newspaper ','radio ','','','a','','utme','2011',116,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(361,'A cheque that has been drawn but not presented for payment can still be honoured ','within 6 months ','after 9 months ','within 9 months ','after 6 months','','','a','','utme','2011',117,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:34'),(362,'The major source of income to commercial banks is ','loans ','deposits ','interests ','overdrafts ','','','b','','utme','2011',115,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:18'),(363,'An ancillary to trade that easily links suppliers with consumers is ','tourism  ','banking ','communication ','transportation','','','c','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:36'),(364,'Mr. Lawal insured his warehouse against burglary but it was later gutted buy fire. This implies that ','the loss should be borne by the insurer ','Mr. Lawal is liable  only for half of the estimated loss ','the insurer should make a consolation payment for the loss','the loss should be borne by Mr. Lawal','','','d','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:37'),(365,'The agreement of insurers to spread risks  among themselves is a major feature of ','reinsurance','life assurance ','underwriter','marine insurance ','','','a','','utme','2011',95,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(366,'Inbound tourism occurs when ','non-residents of a country travel to other countries ','residents of a country travel to other countries ','non-residents of a country travel countries ','residents of a country travel within it','','','d','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:39'),(367,'One of the major disadvantages of pipeline transportation is its ','high cost of construction ','limitation in scope ','vulnerability to climatic changes ','high maintenance cost ','','','a','','utme','2011',105,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:40'),(368,'The business organization that can effectively combine management with control is ','private limited liability company ','sole proprietorship ','public limited liability company ','co-operative society ','','','b','','utme','2011',103,'Admin','0000-00-00 00:00:00','2020-08-10 17:23:43'),(369,'When two or more companies agree to execute a project too large for one to handle, this is referred to as ','an amalgamation ','a cartel ','a merger ','a consortium ','','','d','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(370,'In the event of voluntary liquidation, the appointment of a liquidator is the responsibility of the ','directors ','creditors ','promoters ','court ','','','a','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:43'),(371,'A source of business financing which involves pledging of a specific asset is ','bond ','mortgage ','debentures ','loan','','','b','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:44'),(372,'An example of a trade association is ','ALGON','NLC','NURTW','NULGE','','','a','','utme','2011',100,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:17'),(373,'A broker is an agent who links a potential investor with ','a shareholder who wants to register a company ','Other members of the exchange who want to trade ','government official on the exchange ','a quoted company ','','','d','','utme','2011',85,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(374,'Second-tier securities Market differs from the first-tier securities Market in that the former is ','Highly restricted ','regulated by the SEC','regulated by the NIPC','Less restricted ','','','a','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:56'),(375,'A communication process providing information for decision-making in an organization is the ','Management Information System','Transmission Control Protocol ','Information Retrieval System ','File Transfer Protocol.','','','c','','utme','2011',90,'Admin','0000-00-00 00:00:00','2020-07-14 12:54:57'),(376,'The managerial ability of a supervisor in an organization may be underutilized if the ','morale of the supervised is high ','span of control is wide','span of control is narrow','morale of the supervised is low','','','c','','utme','2011',110,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(377,'The arrangement and interrelationship of the various components and positions of a business is referred to as ','organizational structure ','clarity of objective ','unity of direction ','line structure','','','a','','utme','2011',96,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:37'),(378,'The variety of goods and services which a company offers for sale is its ','place mix ','promotion mix ','price mix','product mix','','','d','','utme','2011',104,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:07'),(379,'Activities undertaken to create awareness for goods by conducting contests is ','marketing concept ','consumerism ','sales promotion ','marketing mix','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:08'),(380,'The slogan, a wonderful world,  used by a communication network is a form of ','product differentiation ','persuasive advertising ','publicity ','packaging ','','','b','','utme','2011',101,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:09'),(381,'To make a simple contract valid, the intention must be ','legal and written ','legal and binding ','legal and attractive ','legal and harmonious ','','','b','','utme','2011',107,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(382,'The major parties to an agency relationship are the ','principal and the creditor ','bailee and the bailor','principal and the agent','shareholder and the creditor ','','','c','','utme','2011',99,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:11'),(383,'One of the obligations of an employer to an employee is to ','Indemnify  him against liabilities incurred on duty ','award scholarship to his children ','terminate his appointment  without prior notice','indemnify him against injuries caused through negligence ','','','a','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(384,'The body charged with the responsibility of regulating foods and drugs in Nigeria is the ','SON','NDLEA','NAFDAC','CAC','','','c','','utme','2011',102,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:13'),(385,'The physical components of a computer system refers to the ','system unit ','hardware ','software ','compact disk ','','','b','','utme','2011',107,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(386,'An example of a computer operating system is ','the pagemaker ','the Word Perfect ','Microsoft Word 2000','Windows 2000','','','d','','utme','2011',94,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:07'),(387,'Intranet differs from extranet in that the former ','requires a modem before it could be used ','can generally be accessed by the public ','is restricted to employees of an organization ','requires internet protocols','','','c','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(388,'A software application which enables a user to display and interact with texts, images and videos is the ','web server','internet Protocol','coreldraw ','web browser ','','','c','','utme','2011',87,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(389,'A predominant mark-up language for web pages is ','IP','HTTP','HTML','TCP','','','c','','utme','2011',109,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(390,'The symbol @ in an internet mail address is used  to  ','separate the user name from the machine name ','link the user with other internet users ','locate the addresses of internet  uses ','link the user with the machine.','','','c','','utme','2011',119,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(391,'A business organization is said to be socially responsible when it ','gets involve in issues relating to the society ','rewards its staff for long-term service','offers discounts to customers','invites the public to its annual general  meetings.','','','a','','utme','2011',119,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:21'),(392,'One of the major benefits of commerce to government is to ','improve the standard of living ','generate revenue for growth and development ','encourage cooperation among public organizations ','encourage the development of socio-cultural values','','','b','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:22'),(393,'An example of an activity in the construction industry is ','blacksmithing  ','bricklaying ','car assembling ','shoemaking ','','','c','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:23'),(394,'One of the inputs in production that can be motivated by remuneration is ','capital ','entrepreneur ','labour ','land ','','','c','','utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:24'),(395,'The allocation of tasks to different skills in a production process is referred to as ','production technique ','production function ','division of labour','delegation of responsibility ','','','c','','utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:36'),(396,'The sales of goods through a medium that accepts money and deliver the items to the customer is ','an automated teller machine ','a vending machine','a counting machine','a branding machine','','','b','','utme','2012',87,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:26'),(397,'The main purpose of branding is to ','create identity for a product ','make a product look attractive ','create product awareness ','increase sales volume ','','','a','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(398,'The basis for international trade is embedded in the principle of ','absolute advantage ','globalization ','deregulation','comparative advantage ','','','d','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(399,'The major problem encountered in international trade is that of  ','distance ','differences in culture ','politics ','differences in currency ','','','d','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(400,'The document a seller uses in dispatching goods to a customer by a carrier is ','a bill of lading ','an invoice ','an advice note','a delivery note','','','d','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(401,'A document which serves as an order with details of goods required by an intending purchaser is   ','a freight note ','an indent ','a bill of lading ','a waybill','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:31'),(402,'If a customer pays within nine days of receiving goods and takes advantage of 3% off the invoice price, this is stated as ','3/9; net 3. ','9/27; net 30','30; net 9/3','9/30; net 3.','','','d','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:32'),(403,'Which of the following is a characteristic of a bearer cheque? ','it is made with transverse lines ','it is made payable to whoever presents it','It is made without teraservers lines','it is only payable into the payee’s account ','','','b','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(404,'A bill of exchange paid before its due date at an amount less than its face value is said to have been ','accepted ','rejected','discounted ','dishonoured ','','','c','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(405,'The most effective type of advertising for branding products is ','mass advertising ','persuasive advertising ','informative advertising ','competitive advertising ','','','c','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:17'),(406,'A current account holder pays fees for services in form of ','bank charges ','inertest rates','commission on turnover','minimum lending rate','','','a','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:08'),(407,'Printed messages sent by cable are recorded as ','telegram ','SMS','telex','MMS','','','a','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:36'),(408,'Communication is relevant to business activities because it ','creates wealth for people ','reduces the cost and risk of traveling ','connects people','enhances delivery of goods and services','','','b','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:37'),(409,'The right of an insurance company to stand in place of an insured against a third party, who is liable for the occurrence of a loss, is the principle of ','proximate cause','insurable interest ','insurance priority ','subrogation ','','','c','','utme','2012',71,'Admin','0000-00-00 00:00:00','2020-07-16 09:51:24'),(410,'Assurance is different from insurance in that the former is based on ','probability ','possibility ','risk ','uncertainty ','','','b','','utme','2012',59,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:21'),(411,'A person who undertakes a life insurance is said to be an ','Insurer ','assurer ','assured ','insured ','','','d','','utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:41'),(412,'Tourism serves the purpose of ','cross-cultural understanding and peaceful interaction ','opening avenues for leaving the country','economic development and naturalization ','exploiting the country’s natural endowment','','','d','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(413,'The type of letters that are delivered through the normal mail or by airmail express service is referred to as ','Inland letters ','registered letters','airmail letters','express letters','','','c','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:42'),(414,'A business organization that exploits the capabilities of a member to remedy the weaknesses of another is a ','joint venture ','partnership ','nominal partnership ','cooperative ','','','d','','utme','2012',69,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:44'),(415,'The most important business objective is to ','improve investments ','provide quality  products','target consumers for satisfaction ','carve a niche for the business ','','','c','','utme','2012',88,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:45'),(416,'In case of liquidation of a public limited liability company, those that are first paid are ','ordinary shareholders ','preference shareholders ','cumulative preference shareholders ','debenture holders','','','d','','utme','2012',66,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:46'),(417,'A feature common to public and private limited liability companies is that ','both can sue and  be sued ','the minimum number of their shareholders is five','the transfer of their shares  is not restricted ','their annual accounts are published for public use','','','a','','utme','2012',70,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:59'),(418,'A business organization can obtain long-term financing through ','bank overdraft ','the sale of shares ','credit purchases ','bureau de change ','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:31'),(419,'The portion of the authorized share capital given out to the public for subscription is ','called-up capital ','issued capital ','paid up capital ','reserved capital ','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:05'),(420,'A company has an authorized capital of 40 million shares at N1 each, out of which 32 million are issued and fully paid-up. What happens to the remaining 8million shares?','it has been issued but not paid-up ','it has been applied for but not issued ','it is not paid up','it is not yet been issued ','','','d','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:55:50'),(421,'If the rate of turnover of a company in 1999 was 4 times while the average stock was N49, 600, determine the turnover.','N199, 400','N198, 400','N100, 200','N99, 200','','','b','','utme','2012',63,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:08'),(422,'Given:  N\\n Opening stock  1,800\\n Purchases   2, 800\\n Sales    8,000\\n Closing stock    350\\n Carriage on sales    500\\n Calculate the value of the unused stock.\\n','N 800','N500','N350','N320','','','c','','utme','2012',78,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(423,'The main objective of a trade association is to ','protect is members against litigation ','boost the trade of its members ','secure credit for its members ','protect its members against victimization ','','','d','','utme','2012',64,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(424,'The promotion and protection of trade, industry and agriculture thorugh trade fairs is a function of ','NACRDB','NACCIMA','the Consumer Protection Council ','the Chamber of Commerce ','','','d','','utme','2012',89,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:32'),(425,'Dealing in quoted securities on the Nigeria Stock Exchange is restricted to authorized ','companies ','brokers ','investors ','principals','','','b','','utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:03'),(426,'Securities that entitle the investor to coupon rates are ','bonds ','equities ','warrants ','treasury bills','','','b','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(427,'Under what management function will the motivation of employees fall?','staffing ','controlling ','organizing ','directing ','','','b','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:05'),(428,'The promotion of team spirit in an organization is referred to as ','Unit of direction ','spirit de corps ','unity of purpose','discipline ','','','a','','utme','2012',90,'Admin','0000-00-00 00:00:00','2020-07-23 16:34:06'),(429,'One of the characteristics of a good organizational chart is that it should ','be rigid ','show government policy','facilitate communication ','be acceptable ','','','c','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:07'),(430,'An organization which focuses on consumer satisfaction is practicing ','consumerism ','market segmentation ','selling concept ','marketing concept ','','','d','','utme','2012',81,'Admin','0000-00-00 00:00:00','2020-07-29 13:52:51'),(431,'Goods and Services are made available to consumers through','the channel of distribution ','sales promotion ','the advertising agency','the middlemen ','','','a','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:09'),(432,'A person who in consideration for an extra commission, takes responsibility for goods sold on credit and in case of default is a ','commission agent','del credere agent ','broker ','factor ','','','b','','utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-22 21:21:36'),(433,'Yahaya bought a piece of furniture on a credit sale agreement from Ahmed and resold it to Ali before all installments were made. The court upheld that Ahmed could not recover possession of the items from Ali. The reason for the judement was because ','ownership was transferred on completion of installment ','ownership was transferred on delivery ','Yahaya could not pass title to a third party ','Ali was still indebted to Yahaya','','','b','','utme','2012',88,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:48'),(434,'The body which ensures that consumers are protected against harmful product in Nigeria is ','NAFDAC ','NDLEA','SON','CPC','','','a','','utme','2012',80,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:36'),(435,'The process of decoding data in a computer is known as ','dilution ','default drive ','decryption ','data security ','','','c','','utme','2012',67,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:13'),(436,'Which of the following is a type of system software? ','Utility programs ','Registers ','Hard drives ','Packages','','','a','','utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:14'),(437,'Computers that process all data as binary zeros and ones are ','analog computers ','digital computers ','hybrid computers','desktop computers','','','b','','utme','2012',85,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:22'),(438,'Modern mans of payment is greatly facilitated by ','e-commerce ','paper money ','e-banking ','D credit transfer ','','','c','','utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:28'),(439,'The provision of quality and safe products which guarantee the health of consumers is an example of ','quality control ','price control ','civic responsibility ','social responsibility ','','','a','','utme','2012',76,'Admin','0000-00-00 00:00:00','2020-07-14 12:56:17'),(440,'A business organization must always consider the overall effect of its actions on the ','competitor ','product ','profit ','society ','','','c','','utme','2012',86,'Admin','0000-00-00 00:00:00','2020-07-23 11:40:30'),(441,'The type of labour that makes use of physical effort in production processes is the ','unskilled labour','skilled labour','blue-collar job','white-collar job','','','a','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(442,'The assembling of products into usable forms is known as ','creation ','manufacturing ','construction ','formation ','','','c','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(443,'The final link in the chain of distribution is ','Middlemen ','wholesaling ','consumer ','retailing ','','','c','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:49'),(444,'A country is said to be experiencing an unfavourable balance of trade if her','exports exceed imports ','visible exports  exceed  visible imports ','imports and export are equal ','visible imports exceed visible exports ','','','d','','utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(445,'Trading position of Nigeria is the same as her ','desire  to trade with many countries','willingness to grant credit to foreigners ','balance of trade ','terms of trade','','','a','','utme','2013',83,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(446,'The role of customs and excise authority includes the ','provision of a good transport system to facilitate imports and exports ','provision of security at the port ','control of the flow of goods in and out of the country ','provision of dockyards for ship repairs ','','','c','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(447,'The document lodged with the customs authorities before a ship can leave the port is a ','shipping note ','ship report ','ship manifest','dock warrant ','','','c','','utme','2013',83,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(448,'The document which must be endorsed by the ambassador of a country of destination before shipment of goods is a ','consular invoice ','certificate of origin ','bill of lading ','closed indent ','','','b','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-08-13 06:15:21'),(449,'A country’s terms of trade are said to improve when the ratio of her export ','decreases ','remains constant ','increases ','equals import','','','c','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(450,'Which of the following advertising medium appeals to only the literate it the society?','Radio advertising ','Print Media advertising ','Television advertising ','Cinema advertising ','','','b','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(451,'The two main forms of communication are ','oral and written ','verbal and non-verbal ','e-mail and fax','traditional and modern media ','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(452,'The most reliable and efficient means of conveying urgent documents is through','postal order ','ordinary letters ','registered letters ','courier services','','','d','','utme','2013',85,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(453,'An undertaking given by a person to another assuring his integrity is ','proximate clause ','fidelity guarantee ','subrogation ','insurable interest ','','','b','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(454,'If Mr. N takes a fire insurance policy with average clause, his compensation will be ','N5, 000','N7, 500','N70, 000','N75,000','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(455,'The difference between indemnity insurance and non-indemnity insurance is that the latter provides ','cover for exporters against risks ','cover for importers against risks ','full payment to the insured ','consolation payment to the insured ','','','d','','utme','2013',83,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(456,'An importance of warehousing is in the ','production of goods ','transportation of goods ','Importation of goods ','repackaging of goods','','','a','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(457,'In order to increase the capital owned, a sole trader may ','seek for bank loan ','issue debentures ','acquire extra shop fittings on credit ','draw less of his profit for personal use','','','d','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(458,'A business partner who provides capital but abstains from participation in administration of a firm is a ','general partner ','nominal partner ','secret partner ','dormant partner ','','','d','','utme','2013',71,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(459,'Which of the following will NOT be stated in a Memorandum of Association? ','Name clause ','Rights of shareholders ','object clause ','Registered office','','','d','','utme','2013',91,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(460,'The amount of authorized capital that shareholders have subscribed to is ','issued share capital ','authorized share capital ','owner’s equity ','working capital ','','','c','','utme','2013',68,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(461,'The rate of turnover of a firm in a given year is 5 times while the average stock is \\n N12.500. what is the turnover of the firm? \\n','N24,000','N46,500','N62, 500','N65,000','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(462,'A lawyer that defrauds his client may be derobed by the Nigerian Bar Association in order to ','protect other lawyers ','protect the integrity of the association','compensate the affected client ','prevent the client from sueing the association ','','','c','','utme','2013',85,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(463,'In the Nigeria GSM industry, a parliament is organized by the Nigerian Communication Commission in order to ','increase profit of service providers ','protect the interest of government ','encourage more people into the business ','protect the interest of consumers ','','','b','','utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(464,'Trade Fairs in Nigeria are organized by ','the Federal Government ','Manufactures’ Association of Nigeria','Ministry of Commerce and industry ','Chambers of commerce','','','d','','utme','2013',86,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(465,'Money is generally acceptable for transactions due to','the legal backing ','the rule of law ','it’s acceptability in the global market ','the Central Bank Governor’s signature ','','','d','','utme','2013',91,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(466,'Which of the following is a quality of money?  ','Availability','Scarcity  ','Indivisibility ','Convertibility ','','','a','','utme','2013',87,'Admin','0000-00-00 00:00:00','2020-08-12 09:06:08'),(467,'Money can simply be referred to as a ','measure of value','standard of value','means of settlement ','durable asset for doing business','','','a','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(468,'Gilt-edged securities are issued mainly by ','individuals ','non-governmental organizations','government ','multi-national companies ','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(469,'The initial function of a manager is ','setting up an organization ','coordinating ','planning ','provision of welfare package ','','','b','','utme','2013',74,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:33'),(470,'The most suitable organizational structure for small or medium-sized enterprises is ','line structure ','staff structure ','committee structure ','functional structure ','','','a','','utme','2013',60,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(471,'In a staff-authority relationship, the opinion of a specialist is one department to another is ','a directive ','an advice ','a command','a delegation ','','','b','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(472,'Management of a business involves he development of ideas for the ','distribution of goods and services that human wants','transportation of goods and services that goods and services that human wants ','transfer of little of ownership of goods and services to individuals.','production of goods and services that satisfy human needs.','','','d','','utme','2013',62,'Admin','0000-00-00 00:00:00','2020-07-29 18:51:37'),(473,'Which of the following is used as a pricing policy? ','packaging ','market selection ','labeling ','market skimming ','','','d','','utme','2013',76,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:06'),(474,'The essential utility derived from the use of a product is known as ','augmented benefit','branded benefit ','core benefit ','formal benefit','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:46'),(475,'The breaking down of a market into separate and identifiable elements is known as ','differentiation ','segmentation ','skimming ','penetration ','','','b','','utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-21 10:17:05'),(476,'A contract that is acknowledged before the law court is referred to as ','informal contract','formal contract ','contract of records ','specialty contract ','','','b','','utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(477,'An agent employed to sell goods delivered to him by the principal is referred to as a ','Special agent ','del credere agent ','factor ','universal agent','','','b','','utme','2013',78,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:45'),(478,'A motor dealer who agreed to sell a car to Mr. X but sold and delivered it to Mr. Y on the delivery date agreed with Mr. X. He has discharged the contract by ','performance ','frustration ','an agreement ','breach ','','','d','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:19'),(479,'A contract can be terminated through ','physical combat ','family intervention ','frustration ','consultation ','','','d','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-15 00:50:20'),(480,'The right of retain possession of goods until the contract price is paid is referred to as ','a promise ','ultra vires ','a branch ','a lien ','','','a','','utme','2013',66,'Admin','0000-00-00 00:00:00','2020-08-05 18:48:13'),(481,'The sole legal right held by the author to publish his book is a ','trademark ','copyright ','patent right ','book mark','','','b','','utme','2013',82,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(482,'The process of transferring data from one computer to another is referred to as ','down loading ','faxing ','browsing ','decoding ','','','a','','utme','2013',79,'Admin','0000-00-00 00:00:00','2020-08-12 08:48:16'),(483,'The physical component of a computer system is ','software ','hardware ','hard disk','floppy disk ','','','b','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-07-22 21:30:16'),(484,'A computer accessory through which information can be retrieved is the ','hard disk ','input  device ','control unit ','floppy disk ','','','d','','utme','2013',77,'Admin','0000-00-00 00:00:00','2020-08-15 00:58:44'),(485,'The type of computer application software used mainly for management information is ','Corel draw ','AutoCAD','data base','word perfect','','','c','','utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(486,'To meet security requirement before gaining access to data, a computer operator supplies ','an e-mail address ','a yahoo address ','a password ','a modem','','','c','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-18 09:54:50'),(487,'A major factor that affects business operations is ','technology ','supply ','product ','rivalry ','','','a','','utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(488,'The environmental hazard that is most difficult to control is ','land pollution','water pollution ','air pollution','political unrest ','','','c','','utme','2013',65,'Admin','0000-00-00 00:00:00','2020-08-01 09:18:42'),(489,'Which of the following can be defined as trade and aids to trade?','Advertising','Commerce','Wholesaling','Retailing','','','b','','wassce','2000',71,'Admin','2016-11-14 07:16:10','2020-08-18 09:54:12'),(490,'Which of the following is not a source of finance to a sole proprietor?','Trade Credit','Overdrafts','Debentures','Leasing of equipment','','','d','','wassce','2000',62,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:09'),(491,'Partners who allow their names to be used in a partnership but do not take part in the management of the business are','active partners','limited partners','general partners','nominal partners','','','d','','wassce','2000',60,'Admin','2016-11-14 07:16:10','2020-08-15 00:50:18'),(492,'A private company is one which','must publish its audited account','floats its shares on the stock exchange market','restricts the rights to transfer its shares','is owned by a maximum of twenty members merger','','','c','','wassce','2000',66,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:09'),(493,'The coming together of two or more firms at different stages of production is','horizontal merger','vertical merger','amalgamation','cartel','','','b','','wassce','2000',69,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:09'),(494,'The total value of fixed and current assets is?','working capital','capital employed','Fixed capital','capital owned','','','b','','wassce','2000',54,'Admin','2016-11-14 07:16:10','2020-08-15 00:47:41'),(495,'What is P in the above equation?','Purchases returns','Net Profit','Sales','Carriage outwards','Use the following equation to answer question   Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',69,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:04'),(496,'What is G in the above equation?','Sales returns','Carriage inwards','Purchases','Sales','Use the following equation to answer question  Gross Profit=(Closing stock + P) less (Opening stock + G)','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:10','2020-08-18 09:54:11'),(497,'Which of the following is true about cumulative preference shares?','Unpaid dividends are carried forward','Shareholders can secure capital refund on demand','Shareholders are entitled to further share of profit','Dividends are paid into a special account','','','a','','wassce','2000',61,'Admin','2016-11-14 07:16:10','2020-08-18 09:54:11'),(498,'A debenture is mortgaged when it is','not secured on the assets of a company','secured on the assets of a company','irredeemable','redeemable','','','b','','wassce','2000',65,'Admin','2016-11-14 07:16:10','2020-08-18 09:53:07'),(499,'A retail outlet which sells a fairly narrow range of goods with a number of branches in different towns is a','supermarket','mail-order shop','mobile shop','multiple shop','','','a','','wassce','2000',64,'Admin','2016-11-14 07:16:10','2020-08-18 09:53:06'),(500,'A consignment note is used when','goods are wrapped and labeled for easy identification','goods are dispatched to agents through transporters','damaged goods are being returned','there is over-invoicing','','','b','','wassce','2000',63,'Admin','2016-11-14 07:16:10','2020-08-18 09:54:11'),(501,'Which of the following is not contained in an advice note?','Type of goods','Price of goods','Date of dispatch','Means of dispatch','','','d','','wassce','2000',59,'Admin','2016-11-14 07:16:10','2020-08-15 00:59:06'),(502,'A refund of the duty collected on goods imported and processed for re- export is','excise duty','excise draw back','preferential duty','value added tax','','','b','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:06'),(503,'When a country’s total visible and invisible exports are more than its visible and invisible imports, it has','favourable balance of payments','favourable balance of trade','unfavourable balance of trade','unfavourable balance of payments','','','a','','wassce','2000',54,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:12'),(504,'Which of the following is not a function of a retailer?','Supplying goods to final consumers','Bulk breaking','Giving information to the wholesaler','Branding and packaging of goods','','','d','','wassce','2000',50,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:06'),(505,'A merchant who wishes to order goods from a foreign country sends','an invoice','an indent','an advice note','a credit note','','','b','','wassce','2000',56,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:06'),(506,'The production of goods in anticipation of demand is \tpossible because of the existence of','Packaging','advertising','warehousing','branding','','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:06'),(507,'Which of the following is sent in reply to a letter of enquiry?','Quotation','Order','Consumer invoice','Advice note','','','b','','wassce','2000',65,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:12'),(508,'The abbreviated phrase E & OE is usually printed on','an invoice','a cheque','a delivery note','a debit note','','','a','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:13'),(509,'Which of the following refers to a price reduction based on the size of order?','Cash discount','Trade discount','Seasonal discount','Cash on delivery','','','b','','wassce','2000',70,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:07'),(510,'Which of the following is not a means of payment in foreign trade?','Telegraphic money order','Specially crossed cheque','Letters of credit','Debit transfer','','','b','','wassce','2000',59,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:05'),(511,'A bill of exchange on maturity is allowed','seven days of grace','five days of grace','four days of grace','three days of grace','','','a','','wassce','2000',66,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:06'),(512,'Which of the following is not a financial institution?','Commodity Board','Insurance company','Clearing house','Stock exchange','','','a','','wassce','2000',62,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:11'),(513,'When a customer writes a cheque in his own name and withdraws cash with it from his account he is both the','drawee and the payee','drawer and the payer','drawee and the drawer','drawer and the payee','','','c','','wassce','2000',57,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:12'),(514,'Which of the following is a means of payment through the post office?','Standing Order','Promissory note','Money order','Telegraphic transfer','','','c','','wassce','2000',61,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:05'),(515,'Which of the following encourages people to save towards owning a house?','Merchant bank','Development bank','Mortgage bank','Commercial bank','','','c','','wassce','2000',49,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:06'),(516,'Which of the following services is not rendered by commercial banks?','Business advice','Currency notes issue','Accepting deposits','Credit transfer','','','b','','wassce','2000',57,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:12'),(517,'A retirement insurance policy which enables the assured to receive income for a specific period is','annuity','endowment','whole life','fidelity guarantee','','','a','','wassce','2000',64,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:10'),(518,'A house worth  N50.000 was insured against fire for  N30,000. Fire destroyed and caused damages worth N20.000 on the house. Under which insurance principle will the owner be entitled to a compensation of  N20,000?','Contribution','Subrogation','Indemnity','Uberrimaefidei','','','c','','wassce','2000',72,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:12'),(519,'When an insurance company indemnifies the insured and takes over his rights, this is known as','abandonment','subrogation','proximate cause','contribution','','','b','','wassce','2000',60,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(520,'In Public Limited Liability Companies, equities are referred to as','preference shares','authorized capital','ordinary shares','called-up capital','','','c','','wassce','2000',67,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(521,'The method of sending messages by the teleprinter is','telephone','cablegram','telex','railex','','','c','','wassce','2000',68,'Admin','2016-11-14 07:16:11','2020-08-18 09:53:04'),(522,'The information on terms of carriage of mails is found in','business journal','post office guide','trade directory','service manual','','','b','','wassce','2000',52,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:11'),(523,'Rail transport is less flexible than road transport because','rail lines run between specific terminals','train is slow over long distances','only bulky goods are carried by rail','road transport is suitable for short distances','','','a','','wassce','2000',57,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:09'),(524,'Which of the following is used for moving only goods from one seaport to another?','Ocean liner','Cargo liner','Ferry','Coaster','','','b','','wassce','2000',66,'Admin','2016-11-14 07:16:11','2020-08-18 09:54:13'),(525,'The marketing activity that stimulates immediate demand for a product is','sales promotion','publicity','consumer relations','personal selling','','','a','','wassce','2000',66,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:10'),(526,'Which of these is not a basic marketing function?','Exchange','Production','Facilitation','Information','','','b','','wassce','2000',69,'Admin','2016-11-14 07:16:11','2020-08-15 00:59:07'),(527,'Branding is a tool for','competitive advertising','consumerism','marketing research','pricing policy','','','a','','wassce','2000',52,'Admin','2016-11-14 07:16:12','2020-08-18 09:54:11'),(528,'Firms wishing to defend established products as well as launch new ones will make use of','franchising','product differentiation','branding','advertising','','','d','','wassce','2000',51,'Admin','2016-11-14 07:16:12','2020-08-18 09:53:04'),(529,'Which of the following is a method of sales promotion?','Radio giggles','Poster display','Trade fair','Television broadcast','','','c','','wassce','2000',65,'Admin','2016-11-14 07:16:12','2020-08-18 09:54:11'),(530,'The deliberate and sustained efforts to maintain a good image of a company is known as','personal relations','public relations','professional relations','industrial relations','','','b','','wassce','2000',55,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:03'),(531,'A contract of sale where ownership passes to the buyer on the payment of the first instalment is known as','hire purchase','lease','cash on delivery','credit sale','','','d','','wassce','2000',57,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:08'),(532,'Which of the following agents guarantees payment transactions entered into on behalf of the principal?','Auctioneer','Factor','Broker','Del credere','','','d','','wassce','2000',76,'Admin','2016-11-14 07:16:12','2020-08-18 09:54:12'),(533,'Which of the following is not a means of consumer protection?','Price control','Sale of Goods Act','Trade Description Act','Tax laws','','','d','','wassce','2000',66,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:09'),(534,'Which of the following is a basic requirement for a valid contract?','Representation','Consideration','Interest','Performance','','','b','','wassce','2000',69,'Admin','2016-11-14 07:16:12','2020-08-18 09:54:12'),(535,'A counter-offer in a contract is regarded as','an acceptance','an invitation to treat','a rejection','a consideration','','','c','','wassce','2000',57,'Admin','2016-11-14 07:16:12','2020-08-15 00:59:10'),(536,'Which of the following is not a right of the consumer?','Safety','Choice','Discount','Value','','','c','','wassce','2000',69,'Admin','2016-11-14 07:16:12','2020-08-18 09:53:06'),(537,'Which of the following is an agreement to transport goods but not a document of title?','Air-waybill','Bill of lading','Charter party','Freight note','','','c','','wassce','2000',70,'Admin','2016-11-14 07:16:12','2020-08-18 09:54:11'),(538,'In which of the following classes of occupation would you place a doctor?','Extractive','Commercial','Direct services','Indirect services','','','c','','wassce','2000',68,'Admin','2016-11-14 07:16:12','2020-08-18 09:54:13'),(539,'Commercialization is good for the Nigerian economy because it','creates room for competition','increases the cost of living','leads to the reduction of workforce','leads to uneven distribution of wealth','','','a','','neco','2013',80,'Admin','2016-11-14 08:18:40','2020-07-14 12:58:07'),(540,'Obtaining feedback on the quality and performance of competing products of different manufacturers, explains the retailer’s function of','after sales service','granting to credits to consumers','market research','stocking variety of goods','','','d','','neco','2013',63,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:08'),(541,'The direct contact of a seller with potential buyers with a view to making sales is called','advertising','personal selling','public relations','publicity','','','b','','neco','2013',70,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:09'),(542,'The process of dividing a total market into groups made up of people with similar need refers to marketing','function','mix','research','segmentation','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:11'),(543,'The final link in the chain of distribution is the','agent','consumer','manufacturer','retailer','','','b','','neco','2013',65,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:12'),(544,'Platinum Habib Bank Plc. is an example of __ bank.','central','commercial','development','merchant','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:13'),(545,'Which of the following is NOT a means of payment through the post office?','Giro system','Money order','Postage stamp','Standing order','','','d','','neco','2013',78,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:14'),(546,'Branch managers who virtually have no control on goods they sell is a disadvantage of __  store.','chain','departmental','mail order','super','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:15'),(547,'Instrument used in place of legal tender but not freely acceptable are called ___ money.','bank','commodity','gold - backed','representative','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:34'),(548,'The assurance policy in which the assured pays lump sum of money which matures at his retirement is ___assurance.','annuity','endowment','life','term','','','a','','neco','2013',81,'Admin','2016-11-14 08:18:41','2020-08-12 08:48:16'),(549,'By making it possible for wholesalers to keep surplus stock until demand improves, the warehouse performs the function of','employment creation','price stabilization','production planning','storage','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:36'),(550,'Calculate the net profit.','30,000','33,000','38,000','40,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','b','','neco','2013',72,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:37'),(551,'Calculate the total liabilities.','40,000','50,000','55,000','57,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','c','','neco','2013',67,'Admin','2016-11-14 08:18:41','2020-07-14 12:58:38'),(552,'Calculate the current assets.','15,000','20,000','30,000','45,000','The following information was extracted from the books of Rubies Enterprises Limited as at31st December 2010. Sales [115,000], Creditors [15,000], Bank overdraft [5,000], Stock [10,000], Cost of goods sold [75,000], Debenture [35,000]; Prepayments [5,000], Rent [ 2,000 ]','','a','','neco','2013',65,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:39'),(553,'Ensuring free movement of factors of production among member states through the removal of obstacles is one of \t\tthe objectives of','ECOWAS','LCBC','NBC','OAU','','','a','','neco','2013',76,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:40'),(554,'Which of the following documents contains the name of the company, registration number and signature of the registrar?','Articles of association','Certificate of incorporation','Certificate of trading','Memorandum of association','','','d','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-08-13 12:59:05'),(555,'The method of shopping on the internet by using the computer to browse the website of the manufacturer is known as','e-banking','e-commerce','e-exchange','e-trade','','','d','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-08-12 09:06:08'),(556,'The development of a container and a graphic design for a product is known as','advertising','branding','packaging','trade mark','','','c','','neco','2013',68,'Admin','2016-11-14 08:18:42','2020-07-29 13:52:51'),(557,'When an agent is appointed verbally or in writing by the principal to act on his behalf, the appointment is said to be by','estoppels','express','implication','ratification','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:44'),(558,'The features of an entrepreneur consist of the following, EXCEPT','coordinating factors of production','earning wages as income','efficiency in management','maintaining good communication','','','b','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:46'),(559,'Another name for trade discount is _________ discount,','cash','functional','quality','quantity','','','d','','neco','2013',59,'Admin','2016-11-14 08:18:42','2020-08-13 13:06:59'),(560,'Those engaged in extraction, manufacturing, and construction occupations are called ___ workers.','commercial','direct','indirect','industrial','','','d','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-08-13 13:06:59'),(561,'Which of these is NOT a source of capital to First Bank of Nigeria Plc?','Equipment leasing','Lean from friends','Profit plough back','Sales of shares','','','b','','neco','2013',73,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:49'),(562,'In trading, profit and loss account, carriage outward is','added to purchases','deducted from purchases','deducted from sales','treated as expenses','','','d','','neco','2013',68,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:50'),(563,'The pricing policy adopted by firms selling to wealthy people is','market penetration','market skimming','pricing above the market','pricing with the market','','','b','','neco','2013',62,'Admin','2016-11-14 08:18:42','2020-08-12 09:06:08'),(564,'Which of the following is NOT a function of courier companies?','Ensuring international transmission of message','Providing door to door delivery services','Providing efficient means of mail delivery','Undertaking the shipment of export and import','','','d','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:52'),(565,'“MTN, Your Best Connection” is an example of ___ advertisement.','competitive','direct','informative','mass','','','a','','neco','2013',69,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:53'),(566,'The assertion ‘consumers are always right’ refers to marketing','board.','concept','function','mix','','','b','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:54'),(567,'Which of the following is charged by the NIPOST on postal order?','Dividend','Interest','Poundage','Premium','','','c','','neco','2013',66,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:56'),(568,'The following are characteristics of debenture holders, EXCEPT','being one of the sources of long term loan to public companies.','being paid interest','they are creditors of the company','they are entitled to profits','','','d','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-08-12 08:48:16'),(569,'The money paid to savings account holders by banks after a period of transaction is called','dividend','gain','interest','premium','','','c','','neco','2013',54,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:58'),(570,'Double coincidence of wants is a disadvantage of','business','buying and selling','credit sales','trade by barter','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:58:59'),(571,'Price quotation which excludes all delivery charges is called','cost and freight','ex - ship','ex - warehouse','free - on - board','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:00'),(572,'Which of the following does NOT appear on a cheque on presentation for payment?','Amount in words and figures','Date of withdrawal','Name of the cashier','Name of the payee','','','c','','neco','2013',57,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:01'),(573,'The aspect of production which provides goods and services for immediate consumption is called ___ production.','direct','indirect','primary','secondary','','','a','','neco','2013',64,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:02'),(574,'The actual gain made by a business after all expenses has been deducted is called','gross profit','margin','mark-up','net profit','','','d','','neco','2013',72,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:03'),(575,'The following documents are used between buyers and sellers, EXCEPT','catalogue','dispatch rate','invoice','license','','','d','','neco','2013',81,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:04'),(576,'The total assets of a business less current liabilities refers to _____ capital.','authorized','called up','employed','owned','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:42','2020-08-12 08:48:16'),(577,'The following are merits of industrial integration, EXCEPT','controlling output and price','eliminating waste','leading to monopoly','preventing over production','','','c','','neco','2013',80,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:06'),(578,'The use of middlemen by manufacturers become necessary where the goods','are of low rate of turnover','are susceptible to faking or adulteration','involved are branded','produced are in large quantities','','','d','','neco','2013',74,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:07'),(579,'The oldest form of business enterprise in Nigeria is','partnership','private liability company','public enterprise','sole proprietorship','','','d','','neco','2013',79,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:08'),(580,'Social responsibilities of a business to the consumers \tinclude the following, EXCEPT','educating the customers','ensuring truth in advertisement','granting credit facilities','providing of quality product','','','c','','neco','2013',59,'Admin','2016-11-14 08:18:42','2020-08-12 09:06:08'),(581,'Products that have stayed long on themselves in a shop can be sold easily through','branding','discounting','doorstep selling','franchising','','','b','','neco','2013',63,'Admin','2016-11-14 08:18:42','2020-07-14 12:59:10'),(582,'The durable capital of an enterprise which is used continuously for further production is called ___ capital.','called up','circulating','fixed','liquid','','','c','','neco','2013',59,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:11'),(583,'A manufacturer is said to have performed all the necessary marketing functions in the distribution channel when the goods move from','manufacturer ? consumer','manufacturer ? retailer ? consumer','manufacturer ? wholesaler ? retailer ? consumer','manufacturer ? wholesaler ?jobber ? retailer ?consumer','','','c','','neco','2013',73,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:12'),(584,'Which of the following is NOT a reason for government’s ownership of Nigerian Ports Authority (NPA)?','Avoiding wasteful competition and duplication','Generating revenue','High capital requirement','Making profit','','','d','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-16 09:51:24'),(585,'The first step for a businessman who wishes to engage in international trade is to','ask the exporter to move the goods to the shipping company for delivery','engage the services of clearing agent to clear the goods on his behalf','establish contact with the foreign trading partner','fill an application for import form with a bank','','','c','','neco','2013',79,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:28'),(586,'A law made by a country to prohibit importation of certain goods into the country is called _____ laws.','export','import','protectionist','tariff','','','c','','neco','2013',74,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:29'),(587,'Which of the following towns was NOT an initial commercial centre in Nigeria?','Kano','Lagos','Maiduguri','Yola','','','d','','neco','2013',65,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:31'),(588,'Management function which arranges people, time, money and equipment, to achieve the objectives of an organization is referred to as','directing','motivating','organizing','planning','','','c','','neco','2013',76,'Admin','2016-11-14 08:18:43','2020-08-12 08:48:16'),(589,'Bridging the gap between producers and consumers is the sole purpose of','distribution','hawking','retailing','warehousing','','','c','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-08-13 12:59:05'),(590,'Which of the following is NOT a characteristic of labour? It is','fixed in supply','geographically mobile','man made','perishable in nature','','','a','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-08-13 13:06:59'),(591,'One of the problems associated with home trade is the','absence of currency exchange','better knowledge of the markets','inadequacy of storage facilities','proximity of buyers and sellers','','','c','','neco','2013',67,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:35'),(592,'An instruction from a current account holder requesting to pay a named person or organization a. specified amount is \t\tcalled','bankers order','certified cheque','internal transfer','money order','','','b','','neco','2013',68,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:36'),(593,'Which of the following is NOT a commercial occupation?','Advertising','Agriculture','Communication','Insurance','','','b','','neco','2013',78,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:37'),(594,'In the marketing mix, place refers to','channel of distribution','location of the factory','the market place','where the product is located','','','d','','neco','2013',85,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:38'),(595,'Which of the following is NOT an attribute of an effective business manager?','Altruism','Empathy','Objectivity','Subjectivity','','','d','','neco','2013',70,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:39'),(596,'The ability of money to be divided into smaller units for easy exchange of goods and services explains','divisibility','durability','recognisability','stability','','','a','','neco','2013',82,'Admin','2016-11-14 08:18:43','2020-08-13 13:06:59'),(597,'Which of the following is NOT a role of trade association?','Eliminating competition among members','Ensuring uniformity in mode of operation','Establishing link between government and associations','Promoting members interest','','','a','','neco','2013',77,'Admin','2016-11-14 08:18:43','2020-08-13 13:06:59'),(598,'The transfer of enterprises from private to state ownership for economic or social reasons is referred to as','commercialization','indigenization','industrialization','naturalization','','','d','','neco','2013',71,'Admin','2016-11-14 08:18:43','2020-07-14 12:59:42'),(599,'The major divisions of Commerce are','import, export and transport','trade, communication and warehousing','trade and auxiliaries to trade','exchange, consumption and production','','','c','','wassce','1990',69,'Admin','2016-11-14 20:22:14','2020-08-15 00:59:07'),(600,'Which of the following statements is not true?','Commercial services are the life blood of a country economic system','There cannot occur commercial services until goods have been produced.','Without commercial services most goods and services will not be produced','There is no stage of production that does not employ commercial services.','','','b','','wassce','1990',59,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:09'),(601,'The three main divisions of production include industrial','commercial and banking services','commercial and services','transportation and services','manufacturing and services','','','b','','wassce','1990',54,'Admin','2016-11-14 20:22:15','2020-08-18 09:54:11'),(602,'Which of the following is one of the functions of commerce?','Manufacturing','Growing of tomatoes','Storage of goods','Construction of Roads','','','c','','wassce','1990',64,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:09'),(603,'Which of the following does not belong to the extractive industry?','Farming','Insuring','Mining','Drilling','','','b','','wassce','1990',65,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:10'),(604,'The average stock is','N=2000','N=3000','N=5000','N=6000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','c','','wassce','1990',67,'Admin','2016-11-14 20:22:15','2020-08-15 00:59:10'),(605,'The cost of goods sold is','N=6000','N=10000','N=42000','N=16000','Use the information given  to answer question: Opening stock  [ N=1,000], Closing stock  [ N=9,000 ], Purchases  [N=14,000]','','a','','wassce','1990',66,'Admin','2016-11-14 20:22:15','2020-08-18 09:53:05'),(606,'The oldest and commonest form of business in Nigeria is','partnership','the co-operative society','sole proprietorship','joint stock venture','','','c','','wassce','1990',59,'Admin','2016-11-14 20:22:15','2020-08-18 09:54:12'),(607,'If a retailer Mr. Aigbojie buys goods manufactured by Adefila Limited from wholesaler Mrs. Jumai, who will prepare the delivery note?','Mr. Aigbojie','Adefila Limited','Mr. Jumai','Mr. Aigbojie and Adefila Limited','','','c','','wassce','1990',54,'Admin','2016-11-14 20:22:15','2020-08-18 09:54:12'),(608,'Which of the following is not a factor of production?','Capital','land','Labour','Staffing','','','d','','wassce','1990',73,'Admin','2016-11-14 20:22:15','2020-08-18 09:54:13'),(609,'In which class of occupation would you place a taxi-driver?','Extractive','Indirect services','Personal services','Commercial services','','','d','','wassce','1990',57,'Admin','2016-11-14 20:22:15','2020-08-18 09:54:11'),(610,'The purpose of issuing a credit note is to','correct errors of overcharging','correct errors of undercharging','write off  bad debts','encourage immediate payment','','','a','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:12'),(611,'The exchange of goods for other goods in home trade is known as','entrepot trade','home trade','barter trade','foreign trade','','','c','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:12'),(612,'Which of the following advertising media combines the advantages of sound and motion?','Radio','Neon signs','Press','Television','','','d','','wassce','1990',66,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:12'),(613,'Which of the following is a form of sales promotion?','Promotion through radio','Advertising by television','Distributing printed sales literature','Offering free samples to customers','','','d','','wassce','1990',74,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:04'),(614,'Efforts geared towards establishing and maintaining good image for a company is termed','human relations','professional relations','public relations','trade relations','','','c','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:13'),(615,'Which of the following is sent as a reply to an inquiry?','Tender','Estimate','Statement','Quotation','','','d','','wassce','1990',63,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:12'),(616,'Which of the following statements best describes net profit? The excess of','total revenue over total expenditure','total capital income over expenditure','sales over purchases','total capital formation over capital consumption','','','a','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:12'),(617,'A business is in existence primarily to','make profit','provide goods and services','provide employment','compete with others in business','','','a','','wassce','1990',72,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:05'),(618,'A number of shops under one roof is the feature of a','supermarket','chain store','department store','mail order business','','','c','','wassce','1990',62,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:10'),(619,'An agreement between two parties which will give rise to enforceable rights and obligation is known as','a warrant','a contract','a consideration','an offer','','','b','','wassce','1990',65,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:11'),(620,'Auctions and Tenders become binding when they are','accepted','offered','received','advertised','','','a','','wassce','1990',67,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:06'),(621,'The organized efforts of consumers to protect themselves against the unfair practices of businessmen is called','strike','consumerism','amalgamation','propaganda','','','d','','wassce','1990',63,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:07'),(622,'Which of the following is the most suitable means of \ttransporting bulky goods from Lagos to Kaduna? By','Train','Airplane','Ship','Lorry','','','a','','wassce','1990',60,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:07'),(623,'Which of the following is the quickest and accurate means of communication?','Telegram','Express mail','Courier services','Telex','','','d','','wassce','1990',62,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:11'),(624,'Which of the following is the safest means of sending a postal order from Lagos to a friend in Jos?','Special delivery','Recorded delivery','Registered letter','First class mail','','','b','','wassce','1990',51,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:11'),(625,'One of the objectives of the indigenization programme of the Federal Government of Nigeria is to','encourage the use of local raw materials','expel all foreigners from Nigeria','make Nigerian businessmen very rich','maximize local retention of profits','','','d','','wassce','1990',61,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:06'),(626,'The law which stipulates that labels should give an accurate account of a product is the','price control act','consumer credit act','trade description act','hire purchase act','','','c','','wassce','1990',52,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(627,'Which of the following is not an essential of a contract?','Offer and acceptance','Intention to create legal relations','All contracts written out','Legality of object','','','c','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:13'),(628,'One advantage of personal selling is','low cost','immediate feedback','the appeal to many people at a time','self service','','','b','','wassce','1990',67,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:05'),(629,'Charges paid by a ship for staying at a port beyond agreed sailing time is called','profit','interest','holding','demurrage','','','d','','wassce','1990',65,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:12'),(630,'Entrepot Trade refers to','importing for domestic consumption','importing for industrial use','importing for government concerns','importing for re-export','','','d','','wassce','1990',66,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:04'),(631,'Which of the following could account for a favourable balance of payment?','High capital repayments','high debt service repayment','higher imports than exports','Higher exports than imports','','','d','','wassce','1990',57,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:06'),(632,'Which of the following is not part of the facilities provided by the Nigerian Ports Authority?','Dredging','Warehousing','Collection of customs duties','Loading and off-loading of cargoes','','','c','','wassce','1990',75,'Admin','2016-11-14 20:22:16','2020-08-15 00:58:51'),(633,'The main purpose of branding is to','increase the quantity of goods demanded','differentiate goods from other similar goods made by other producers','increase the selling price of goods','enhance turnover of goods','','','b','','wassce','1990',65,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:05'),(634,'An individual who makes the final use of goods and services provided by a firm is the','manufacturer','wholesaler','consumer','retailer','','','c','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-08-15 00:49:40'),(635,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','cartel','trust','holding company','consortium','','','a','','wassce','1990',58,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:08'),(636,'When a business is insolvent it may result in','incorporation','recuperation','liquidation','restoration','','','c','','wassce','1990',49,'Admin','2016-11-14 20:22:16','2020-08-18 09:54:11'),(637,'In insurance the term Uberrimaefidei stands for','utmost good faith','subrogation','insurable interest','indemnity against loss','','','a','','wassce','1990',62,'Admin','2016-11-14 20:22:16','2020-08-18 09:53:05'),(638,'Fidelity guarantee is an insurance cover against loss arising from','trade debts','personal accidents','dishonest staff','fire disaster','','','c','','wassce','1990',59,'Admin','2016-11-14 20:22:16','2020-08-15 00:59:07'),(639,'Which of the following is a type of marine insurance?','Endowment','Freight','Accident','Fidelity','','','b','','wassce','1990',59,'Admin','2016-11-14 20:22:17','2020-08-18 09:54:11'),(640,'The word Ltd written after the name of a company means that','the individual member’s capital is limited','the total sum of the company’s capital is limited','members are liable to the extent of their holding','company’s location is limited','','','c','','wassce','1990',64,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:09'),(641,'Which of the following is a public corporation? The','Nigeria Breweries Limited','Nigerian Ports Authority','Lagos Chamber of Commerce','Nigerian Bottling Company','','','b','','wassce','1990',69,'Admin','2016-11-14 20:22:17','2020-08-15 00:59:10'),(642,'Which of the following is not required in a Memorandum of Association? The','name of the company','location of the company','names of the Board of Directors','limitation of member’s liability','','','c','','wassce','1990',61,'Admin','2016-11-14 20:22:17','2020-08-18 09:54:11'),(643,'The amount paid by the insurance company to the insured upon giving up his policy is called','Surrender value','cash bonus','assured sum','dividend','','','a','','wassce','1990',51,'Admin','2016-11-14 20:22:17','2020-08-18 09:54:13'),(644,'The amount paid by the assured to the insurer is called','interest','premium','dividend','indemnity','','','b','','wassce','1990',69,'Admin','2016-11-14 20:22:17','2020-08-18 09:54:12'),(645,'With the exception of life assurance and personal accident insurance, contracts of insurance are contracts of','premium','indemnity','proximate cause','utmost good faith','','','b','','wassce','1990',64,'Admin','2016-11-14 20:22:17','2020-08-18 09:54:11'),(646,'An author’s exclusive right to published and unpublished works is known as','patent right','fundamental human right','copyright','authorship','','','c','','wassce','1990',58,'Admin','2016-11-14 20:22:17','2020-08-15 00:58:51'),(647,'The cost which is incurred as a result of failure to load or unload a ship at the ports within a specified period is referred to as','demurrage charges','premium charges','trade charges','excess charges','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:47','2020-07-22 21:30:16'),(648,'The process whereby a firm directs its marketing efforts towards a single market by the use of a particular marketing mix is referred to as','concentration segmentation','marketing concept','consumer orientation','market penetration','','','d','','utme','2016',69,'Admin','2016-11-14 20:59:49','2020-07-29 18:51:38'),(649,'The function of money that is mostly affected by inflation is','store of value','medium of exchange','measure of value','unit of account','','','a','','utme','2016',73,'Admin','2016-11-14 20:59:49','2020-08-15 00:58:38'),(650,'Ordinary warehouse is usually owned and used by','government','agents','retailers','wholesalers','','','d','','utme','2016',69,'Admin','2016-11-14 20:59:49','2020-07-23 11:40:28'),(651,'The winding up of a firm by a resolution of its shareholders is an example of','voluntary liquidation','bankruptcy','recession','involuntary liquidation.','','','a','','utme','2016',54,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:39'),(652,'Which of the following is used for temporary storage of data on a computer?','RAM.','ROM.','floppy disk.','flash disk.','','','a','','utme','2016',70,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:56'),(653,'An advantage of the Second-Tier Securities Market to an economy is in','creating avenues for investment','regulating competition amongst companies','granting financial assistance to consumers','increasing companies profit margins-.','','','a','','utme','2016',72,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:57'),(654,'The  lumbering of trees by a furniture company is an example of','primary production','secondary production','tertiary production','Indirect production','','','a','','utme','2016',63,'Admin','2016-11-14 20:59:49','2020-07-14 13:00:58'),(655,'Which of the following types of occupation involves services that can be referred to as auxiliaries’ trade?','Constructive occupation','Manufacturing occupation.','Industrial occupation.','Commercial occupation','','','d','','utme','2016',75,'Admin','2016-11-14 20:59:49','2020-07-29 18:51:37'),(656,'The transformation of cotton into clothing is an example of','secondary production','tertiary production','primary production','direct production','','','a','','utme','2016',59,'Admin','2016-11-14 20:59:50','2020-08-13 12:59:05'),(657,'A basic concept of advertising that reveals the essential message an advertiser wishes to communicate is referred to as the','medium','theme','target','reach','','','a','','utme','2016',69,'Admin','2016-11-14 20:59:50','2020-08-15 00:59:20'),(658,'The type of wholesaler that combines selling, delivery and collection in one operation is','specialist   wholesaler','rack jobber','drop shipment','truck. wholesaler','','','a','','utme','2016',64,'Admin','2016-11-14 20:59:50','2020-08-18 09:54:49'),(659,'Given: - [Index of export price] / [Index of import price]  x 100  The formula can be used to determine the','terms of payment','balance of payments','terms of trade','import tariffs.','','','c','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:03'),(660,'Commission on turnover is usually a benefit accruable to the','drawer','drawee','payer','payee','','','d','','utme','2016',61,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:45'),(661,'Avast is an example of','a web browser','a search engine','an antivirus','a spread sheet','','','c','','utme','2016',59,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:05'),(662,'The component of balance of payments which shows how the balance of both current and capital accounts are settled is \t\t\tknown as','current account','monetary movement account','capital account.','social welfare account','','','b','','utme','2016',62,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:06'),(663,'The act of interpreting ideas within an organization is','motivating','organizing','planning .','communicating','','','d','','utme','2016',57,'Admin','2016-11-14 20:59:50','2020-08-15 00:59:22'),(664,'One of the duties of the employer to his employee is to','delegate his duties to other staff','charge the employee on the use of equipment','serve faithfully and honestly','provide job security.','','','d','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-08-15 00:50:19'),(665,'The buying and selling of goods and services is referred, to as','trading','marketing','insurance','advertising','','','a','','utme','2016',66,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:09'),(666,'A document that serves as an instrument for preferential tariff is referred to as','an indent','a certificate of origin','a consular invoice','an advice note.','','','b','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-29 18:51:38'),(667,'Funds used for paying wages, salaries and payments for raw materials are categorized under','liquid capital','circulating capital','fixed capital','nominal capital.','','','b','','utme','2016',57,'Admin','2016-11-14 20:59:50','2020-07-22 21:21:36'),(668,'A formal letter to a dealer to enquire details about certain items for sale is referred to as','an inquiry','an invoice','an order','a quotation','','','a','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:12'),(669,'The pricing policy that seeks ,to set .prices relatively high in order to attract the wealthy segment of the market is','target return pricing','market skimming','variable pricing.','market penetration','','','b','','utme','2016',76,'Admin','2016-11-14 20:59:50','2020-08-13 13:06:59'),(670,'In the transportation industry, dead freight is used to describe the','cost paid for an empty space left in the ship','charge for each day a performance was delayed','persons that hire a ship for a specific purpose.','cost of shipping a particular cargo for a specific voyage','','','a','','utme','2016',67,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:37'),(671,'When expenses on trading are deducted, the result is the','rate of turn over','net profit','gross profit','cost of goods sold.','','','b','','utme','2016',89,'Admin','2016-11-14 20:59:50','2020-08-13 13:06:59'),(672,'A supplier of flour who intends to sign a contract with a baker \tthrough post can establish a binding agreement only','after the offeror has made an offer.','when the offeror’s letter has reached the offeree.','when the. Offeree’s letter has been posted.','after the offeree’s letter has been received by the offeror.','','','d','','utme','2016',49,'Admin','2016-11-14 20:59:50','2020-07-22 21:30:15'),(673,'Which of the following is a modern trend in retailing?','Kiosk','Mobile shop','Vending machine.','Tied shop','','','c','','utme','2016',60,'Admin','2016-11-14 20:59:50','2020-08-15 00:59:21'),(674,'Which of the following is a traditional medium of communication used to mark festivals?','Palm frond.','Metal gong.','Talking drum.','Gun blast.','','','c','','utme','2016',66,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:44'),(675,'One of the functions of the retailer is','granting credit facilities to close relatives','provision of after-sales services','branding and packaging of goods.','warehousing of goods.','','','b','','utme','2016',65,'Admin','2016-11-14 20:59:50','2020-08-18 09:54:32'),(676,'One of the factors of determining the volume of production is','availability of forex','availability of storage facilities.','the location of the business.','the number of skilled manpower.','','','b','','utme','2016',56,'Admin','2016-11-14 20:59:50','2020-07-14 13:01:20'),(677,'Which of the following is the best method for computing working capital?','Total assets less current liabilities.','Current liabilities less current assets.','Fixed liabilities less current assets.','Current assets less current liabilities.','','','a','','utme','2016',69,'Admin','2016-11-14 20:59:50','2020-08-15 00:58:46'),(678,'The minimum lending rate of a bank is a component of its','current assets','debit balance.','credit balance.','fixed assets.','','','a','','utme','2016',58,'Admin','2016-11-14 20:59:51','2020-08-15 00:50:19'),(679,'One of the functions of the Nigerian Ports Authority is that it','gives preferential treatment to Nigerian investors','provides credit facilities to importers.','encourages the growth of infant industries.','provides warehousing facilities at the docks.','','','d','','utme','2016',64,'Admin','2016-11-14 20:59:51','2020-08-18 09:54:33'),(680,'An ancillary to trade which promotes socio-cultural development all over the world is','transportation','communication','tourism.','insurance.','','','c','','utme','2016',75,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:30'),(681,'An association that acts as a watchdog between  entrepreneurs and government to protect trade from any unfavourable laws is said','cartel','syndicate','Chamber of Commerce','Nigeria Bar Association.','','','c','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:06'),(682,'Labour as an input in production can be motivated by','training','profit.','remuneration.','promotion','','','c','','utme','2016',64,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:32'),(683,'Discharging certain duties by an organization to the public to gain high patronage is a concern of financial responsibility','economic responsibility.','legal responsibility.','financial responsibility.','social responsibility.','','','d','','utme','2016',66,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:33'),(684,'Complying with the rules relating to the conduct of business activities in a country is an aspect of','cultural environment.','demographic environment.','legal environment','politician environment','','','c','','utme','2016',62,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:08'),(685,'Which of the following is NOT backed by gold but by government securities?','Fiduciary note.','Fiat money.','Token money.','Commodity money.','','','a','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:36'),(686,'Which of the following is a legal tender?','Cheque.','Traveller’scheque.','Bank note','Goldsmith receipt.','','','c','','utme','2016',57,'Admin','2016-11-14 20:59:51','2020-07-22 21:21:36'),(687,'Where a manufacturer collects money from wholesalers in exchange for goods produced is referred to as','charge account.','trading checks.','trade credit.','I owe you.','','','c','','utme','2016',60,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:06'),(688,'Quantity discount is offered mainly to persuade the buyer to','defer payment.','make prompt purchases.','make advance payment.','purchase more','','','b','','utme','2016',81,'Admin','2016-11-14 20:59:51','2020-07-23 16:34:08'),(689,'The placement of workers based on their qualifications can be categorized under','public sector','skilled labour','private sector.','unskilled labour','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:40'),(690,'A group of computers that exchange data is referred to as','an information bank.','a network.','a database.','an intranet site.','','','b','','utme','2016',50,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:41'),(691,'The form of credit sales common to low income groups is','hire purchase','club trading','book-me-down.','credit trading.','','','a','','utme','2016',68,'Admin','2016-11-14 20:59:51','2020-07-22 21:21:35'),(692,'Petrol voucher is an example of a','bank draft.','legal tender.','token money','partial money.','','','d','','utme','2016',57,'Admin','2016-11-14 20:59:51','2020-08-12 09:06:08'),(693,'One of the major reasons for merger is to','reduce the number of unskilled manpower','increase the number of skilled manpower.','prevent liquidation.','liberalize the market.','','','c','','utme','2016',63,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:44'),(694,'A major function of commerce is to','facilitate human satisfaction through exchange','eliminate trade barriers','provide raw materials for manufacturers','influence government policies','','','a','','utme','2016',62,'Admin','2016-11-14 20:59:51','2020-07-14 13:01:46'),(695,'The major factors that facilitate merchandising are','communication, advertising and banking','trading, warehousing and production','management, insurance and advertising','banking, insurance and transportation.','','','d','','utme','2000',50,'Admin','2016-11-14 21:29:41','2020-08-12 09:06:08'),(696,'Production involves','making goods available where and when needed','changing the form of goods, moving and making them available as needed','the manufacturing of goods and provision of services','the assembling of all necessary parts to produce a finished product.','','','b','','utme','2000',54,'Admin','2016-11-14 21:29:44','2020-08-18 09:54:32'),(697,'The application of division of labour should generally bring about','increase in the quantity of goods and services','increase in the variety of goods and services','cheapness of goods and services','cost efficiency in the production of goods and services.','','','a','','utme','2000',56,'Admin','2016-11-14 21:29:44','2020-08-13 12:59:05'),(698,'The term Plc implies that the shares are available','to the public at the company','privately on the stock exchange','publicly on the stock exchange','publicly in commercial banks.','','','c','','utme','2000',69,'Admin','2016-11-14 21:29:45','2020-08-18 09:54:32'),(699,'Which of these is both merit and demerit in partnership?','The number of partners','Its unlimited nature','The bearing of risk','The withdrawal of a major partner.','','','a','','utme','2000',71,'Admin','2016-11-14 21:29:45','2020-08-13 13:06:59'),(700,'The measure of independence available to the individual business units that come together is the main difference between','vertical and horizontal, integration','mergers and acquisitions','consortium and amalgamation','trust and cartel.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:45','2020-08-12 08:48:16'),(701,'Government policies relating to the establishment and operations of businesses are targeted at','increasing the profits of business owners','the general improvement of the economy','even spread of facilities and employment','diversification and expansion of businesses.','','','b','','utme','2000',56,'Admin','2016-11-14 21:29:45','2020-07-22 21:21:37'),(702,'On liquidation of a public limited liability company, the residual owners are the','creditors','ordinary   shareholders','preference shareholders','debenture holders.','','','b','','utme','2000',54,'Admin','2016-11-14 21:29:45','2020-08-18 09:54:50'),(703,'Bank overdraft as a short term source of fund is','an overdrawn account','granted to a newly opened account','repayable after more than a year','a current liability.','','','d','','utme','2000',74,'Admin','2016-11-14 21:29:45','2020-08-18 09:54:49'),(704,'The share capital value that forms part of the balance sheet total is the','paid-up share capital','called-up share capital','authorized share capital','issued share capital.','','','a','','utme','2000',55,'Admin','2016-11-14 21:29:45','2020-08-15 00:58:36'),(705,'The main factors militating against the rapid growth of trade in Nigeria are','inadequate transportation network and huge capital outlay','lack of motivation and government attitude towards trade','lack of good transportation network and insecurity of investments','huge capital outlay and government attitude to trade.','','','a','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-29 14:16:36'),(706,'The current trends in retailing competition in Nigeria are','advertising and sales promotion strategies','branding, enterprising and differentiation of goods and services','self-service, after-sales services and branding strategies','after-sales services and sales promotion strategies.','','','a','','utme','2000',66,'Admin','2016-11-14 21:29:45','2020-08-12 08:48:16'),(707,'The function of a merchant wholesaler is to','buy in bulk, store and sell to retailers as desired','possess title to the goods, store and sell to retailers','bring buyers and sellers together','find markets for producers’ finished goods.','','','a','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:01:58'),(708,'An invoice can be described as a','contractual agreement for the sale of goods','document specifying quantity, description, prices and total value of purchases','receipt containing necessary information about the goods','letter specifying the contractual sales of goods between two parties.','','','b','','utme','2000',70,'Admin','2016-11-14 21:29:45','2020-08-13 13:06:59'),(709,'Ocean liners are subdivided into','passenger liners and cargo liners','coastal liners and cargo liners','cargo liners and tramp liners','passenger liners and tramp liners.','','','a','','utme','2000',63,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:00'),(710,'Tourists with no fixed address in a town may receive their letters from the post office through a','recorded delivery','poste restante','parcel post','postmaster.','','','b','','utme','2000',71,'Admin','2016-11-14 21:29:45','2020-07-23 16:34:08'),(711,'The insurance principle that requires full disclosure of information on the insured is known as','indemnity','uberrimaefidei','subrogation','caveat emptor.','','','b','','utme','2000',74,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:02'),(712,'Mr. Olatunde took up a fire insurance on a property valued at N 1000 and the amount insured is  N800. The property caught fire causing a loss of  N400. If the insurance was taken with the \tclause ‘with average’, what is the amount to be paid by the insurance company?','N320','N420','N460','N560.','','','a','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-08-13 12:59:05'),(713,'The Central Bank differs from commercial banks because it','renders service to customers','carries out foreign exchange transactions','issues currencies','discounts bills.','','','c','','utme','2000',72,'Admin','2016-11-14 21:29:45','2020-08-12 09:06:08'),(714,'A bank form used to transfer money from personal to creditor’s account is called','debit transfer form','credit transfer form','customer transfer form','bank transfer form.','','','a','','utme','2000',61,'Admin','2016-11-14 21:29:45','2020-08-15 00:50:19'),(715,'The computer using linear integrated circuit technology coupled with quantification of data in terms of length and distance is known as','digital computer','analogue computer','mainframe computer','hybrid computer.','','','a','','utme','2000',75,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:07'),(716,'A printer that burns the print image onto the photosensitive drum is called','dot matrix printer','daisy wheel printer','laser printer','thermal printer.','','','c','','utme','2000',61,'Admin','2016-11-14 21:29:45','2020-08-15 00:50:20'),(717,'A console is a device used in','moving an indicator on the screen','communicating between operator and programme','holding magnetic tape reel','forming characters by heating sensitive ribbon.','','','a','','utme','2000',68,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:09'),(718,'A form of money that has gone out of use is','paper money','bank money','commodity money','foreign money.','','','c','','utme','2000',59,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:17'),(719,'The major condition for obtaining loan in thrift, credit and loans cooperative societies is','provision of collateral security','a high level of education','possession of a large business','an approved project plan.','','','a','','utme','2000',65,'Admin','2016-11-14 21:29:45','2020-08-13 13:06:59'),(720,'The Stock Exchange helps to provide capital for industrial projects because it','determines value of shares, stocks and other securities','assists government in implementing its monetary policies','assists companies to change their securities into cash','renders agency services to organizations and governments.','','','c','','utme','2000',58,'Admin','2016-11-14 21:29:45','2020-07-14 13:02:19'),(721,'A shortcoming of the Second-tier Foreign Exchange Market in Nigeria is that it','serves as a mechanism for evaluating an unrealistic exchange rate for the naira','creates unhealthy competition amongst users of foreign exchange','contributes to destabilizing national resource allocation','contributes to flooding the market with foreign essential commodities.','','','b','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-07-29 14:16:36'),(722,'The chart above represents the','product mix relationship','marketing mix relationship','promotion mix relationship','advertising mix relationship.','','','b','','utme','2000',63,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:21'),(723,'A group of specialized functions of marketing is','buying, selling, storing and information','buying, selling, advertising and packaging','buying, selling, labelling and promotion','buying, selling, skimming and pricing.','','','c','','utme','2000',79,'Admin','2016-11-14 21:29:46','2020-08-15 00:59:22'),(724,'The type of advertising that seeks to persuade consumers to buy a particular product is','informative advertising','competitive advertising','persuasive advertising','mass and specific advertising.','','','c','','utme','2000',66,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:23'),(725,'The practice whereby soft drink manufacturers give away caps, bags and other items when consumers buy their product is a \t\tform of','marketing strategy','publicity','advertising','sales promotion.','','','d','','utme','2000',78,'Admin','2016-11-14 21:29:46','2020-07-29 18:51:37'),(726,'The most important advantage of personal selling is that it','allows sellers to perceive buyers’ needs','allows sellers to sell their goods quickly','takes place easily on the highways','takes place without the permission of government.','','','a','','utme','2000',67,'Admin','2016-11-14 21:29:46','2020-08-15 00:59:21'),(727,'The role of public relations is principally to','sustain good relationship','create good image','carry out publicity','advertise a firm’s products.','','','b','','utme','2000',61,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:34'),(728,'The basic elements of a valid contract are','offer, acceptance, consideration and witness','offer, intention, acceptance and legality','offer, acceptance, intention, capacity and legality','offer, acceptance, capacity, legality and consideration.','','','d','','utme','2000',60,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:04'),(729,'A bus driver operating between Lagos and Jos pledged the owner’s credit in Benin in order to have the engine repaired and the bill sent to the owner. This is a case of','del credere agency','agency by necessity','agency by ratification','agency by estoppel.','','','b','','utme','2000',68,'Admin','2016-11-14 21:29:46','2020-08-15 00:59:20'),(730,'After registration, a certificate of trading is usually issued to a','partnership','public company','private company','sole proprietorship.','','','b','','utme','2000',53,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:16'),(731,'An aspect of the law which allows an exclusive right for a limited number of years is a','copyright','trade mark','ratification','patent','','','d','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:38'),(732,'The first known legislation to protect consumer rights in Nigeria is the','Usury Laws','Hire Purchase Act','Sale of Goods Act','Food and Drugs Act.','','','c','','utme','2000',71,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:39'),(733,'The main difference between nationalization and indigenization is in terms of','shareholding','profit','technology','efficiency.','','','b','','utme','2000',71,'Admin','2016-11-14 21:29:46','2020-08-12 08:48:16'),(734,'The primary objectives of a trade association is to','undertake research work on behalf of members','establish easy link with government','exchange information and negotiate as a pressure group','operate as a group against other groups.','','','c','','utme','2000',77,'Admin','2016-11-14 21:29:46','2020-07-22 21:30:15'),(735,'A chamber of commerce is an association made up of','entrepreneurs','manufacturers','merchants','importers.','','','b','','utme','2000',73,'Admin','2016-11-14 21:29:46','2020-07-29 14:16:36'),(736,'The composite functions of management are','planning, supervising, communicating','planning, controlling, organizing and directing','coordinating,  supervising,  staffing  and communicating','directing,  supervising, motivating and controlling.','','','b','','utme','2000',60,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:43'),(737,'The three components of staffing are','recruitment, selection and placement','recruitment, interview and appointment','recruitment, test and placement','recruitment, procurement and appointment','','','a','','utme','2000',69,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:44'),(738,'The legal aspect of business is designed to','protect business organizations and consumers','safeguard consumers from undue business practices','protect infant industries from collapse','encourage free exchanges among businesses.','','','a','','utme','2000',64,'Admin','2016-11-14 21:29:46','2020-07-14 13:02:45'),(739,'In an organization, civic consideration arises from','the profit derived from the environment','its operations within the environment','its social negative impacts on the community','the fact that it is registered in that locality','','','b','','utme','2000',63,'Admin','2016-11-14 21:29:46','2020-08-13 12:59:05'),(740,'The instrument establishing the Economic Community of West African States in 1975 is','a decree','an act','a treaty','constitution','','','c','','utme','2000',73,'Admin','2016-11-14 21:29:46','2020-08-15 00:59:21'),(741,'One of the functions of the Niger Basin Commission is to','ensure equal treatment of African nations','foster closer co-operation among West African nations','map out regulations that will guide all forms of navigation','guarantee freedom of navigation for all West African nations.','','','c','','utme','2000',69,'Admin','2016-11-14 21:29:46','2020-08-15 00:58:37'),(742,'The pivot on which the wheel of commerce rotates is','tariff','trade','taxation','price.','','','d','','utme','2001',85,'Admin','2016-11-15 07:01:48','2020-08-15 00:58:44'),(743,'A distinguishing characteristic of labour is that it is','constant','expensive','mobile','cheap','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:48','2020-08-12 08:48:16'),(744,'Land as a factor of production does not vary in','quantity','nature','quality \t\t\t\t.','cost.','','','b','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-22 21:21:38'),(745,'Which of the following services does a lawyer render?','industrial services','indirect services','direct services','commercial services.','','','c','','utme','2001',92,'Admin','2016-11-15 07:01:48','2020-07-22 21:30:04'),(746,'The partner that only contributes part of the capital used in the formation and running of a business is known as','a passive partner','an active partner','a dormant partner','a nominal partner.','','','c','','utme','2001',88,'Admin','2016-11-15 07:01:48','2020-07-14 13:02:52'),(747,'One major advantage of a credit and thrift cooperative is that','it can approach government for a loan','it encourages saving habits','there are no legal restrictions','each member has a vote during meetings.','','','b','','utme','2001',98,'Admin','2016-11-15 07:01:48','2020-07-29 18:51:37'),(748,'A form of ownership which exploits the strength of one partner to remedy the weaknesses of the other is a','joint partnership','cooperative','corporation','joint venture.','','','a','','utme','2001',98,'Admin','2016-11-15 07:01:48','2020-08-18 09:54:49'),(749,'At the collapse of a business enterprise, the person appointed to dispose of the assets is called','a broker','an auctioneer','a liquidator','an auditor.','','','c','','utme','2001',98,'Admin','2016-11-15 07:01:48','2020-08-15 00:58:46'),(750,'Entrusting the management of a company to the courts to enable the settlement of the company’s obligations is an indication of','distress','closure','bankruptcy','liquidation.','','','c','','utme','2001',91,'Admin','2016-11-15 07:01:48','2020-07-28 12:17:02'),(751,'The financial instrument for borrowing in which the collateral is usually more than the amount borrowed is','trust certificate','detachable warrant','mortgage bond','convertible securities.','','','c','','utme','2001',95,'Admin','2016-11-15 07:01:48','2020-08-12 09:06:08'),(752,'I.   Personal Savings, II.   Retained Earnings, III. Accrued Taxes. Which of the items above constitute internal sources of financing for companies?','I and II','I and III','II and III','I, II and III.','','','c','','utme','2001',107,'Admin','2016-11-15 07:01:48','2020-07-23 16:34:08'),(753,'The difference between total current assets and total current liabilities of a business is known as','quick ratio','liquidity ratio','working capital','circulating capital.','','','c','','utme','2001',101,'Admin','2016-11-15 07:01:48','2020-08-15 00:58:45'),(754,'One of the reasons why wholesaling must continue is that','the tax paid by wholesalers on their profit enhances national revenue','by creating artificial scarcity, the wholesaler is enhancing competition in the economy','the wholesaler provides technical advice to the retailer','the gap between manufacturers and retailers is reduced by wholesalers.','','','d','','utme','2001',110,'Admin','2016-11-15 07:01:48','2020-08-15 00:59:21'),(755,'A merchant wholesaler is referred to as','del-credere agent','a broker','rack jobber','a factor.','','','a','','utme','2001',91,'Admin','2016-11-15 07:01:48','2020-08-18 09:54:49'),(756,'A pro-forma invoice is sent to inform a buyer about the','quantity of goods','prices of goods','designation of goods','quality of goods.','','','c','','utme','2001',94,'Admin','2016-11-15 07:01:48','2020-07-14 13:03:02'),(757,'The balance of payments of countries is','a record of imports and exports','a systematic record of transactions among countries at a given time','the current and the capital accounts and their payments','the trade relationships and payments among nations.','','','a','','utme','2001',75,'Admin','2016-11-15 07:01:48','2020-08-15 00:58:36'),(758,'The major procedures in the purchase and sale of goods are enquiry','quotation, order and invoice','placement, order and invoice','bargain, order and invoice','order, sale and invoice.','','','a','','utme','2001',89,'Admin','2016-11-15 07:01:48','2020-08-13 13:06:59'),(759,'The trade discount receivable by Mr. Bacus is','N= 4,500','N= 7,500','N= 10,500','N= 12,000.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',89,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(760,'If  Mr. Bacus fulfils his promise, he will be entitled to a cash discount of','N= 2,760','N= 3,000','N= 6,500','N= 9,500.','Mr. Awala is a retailer of a single product. He sells at the standard price. He gives a trade discount of 5%,quantity discount of 3% for a volume above 1000 units and a cash discount of 2/10 net 30  the existing selling price of the product is N= 100 per unit. Mr. Bacus purchased 1500 units of the product on credit and promised to pay Mr. Awala in cash in the first 10 days after purchase.','','b','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:05'),(761,'Bank Giro is a method of settling debt from a','customer to a bank','bank to a customer','customer to another','bank to another.','','','a','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:06'),(762,'Warehousing is a productive function because it increases the','quantity of goods','utility of goods','quality of goods','price of goods.','','','a','','utme','2001',89,'Admin','2016-11-15 07:01:49','2020-08-15 00:50:20'),(763,'A factor necessary for siting a warehouse is nearness to','raw materials','labour','capital','consumers.','','','d','','utme','2001',101,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:08'),(764,'Pooling of risk in insurance means that','compensations are paid out of a common fund','two people can pool their risks to be insured','two insurance companies can buy two policies','insurance companies should encourage taking risks','','','a','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-08-12 09:06:08'),(765,'The indemnification of Ama by his insurance company after a fire disaster means that he','has been guaranteed by the insurance company','will be cleared of any fault by the insurance company','has been covered by the insurance company','will be covered to the limit of the amount in the policy.','','','b','','utme','2001',109,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:10'),(766,'The major difference between insurance and assurance is that while insurance','takes care of uncertainty, assurance takes care of risks','takes care of risks, assurance takes care  uncertainty','hinges on probabilities, assurance is based on possibilities','is about indemnity assurance is about life in the future.','','','c','','utme','2001',97,'Admin','2016-11-15 07:01:49','2020-08-15 00:58:36'),(767,'A documentary bill will normally be accompanied by','sales invoice, bill of lading and insurance certificate','clean bill, bill of lading and insurance certificate','bill of lading, consular invoice and insurance certificate','consular invoice, FOB certificate and bill of  lading.','','','d','','utme','2001',93,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:12'),(768,'Which of the following best describes the classification of computers?','Mini-computer, speed and size','Micro-computer, cost and abilities','Mini-computer, micro-computer and work station','Mini-computer, hybrid and digit','','','c','','utme','2001',104,'Admin','2016-11-15 07:01:49','2020-08-18 09:54:33'),(769,'The temporary working area of the central processing unit is called the','C-D ROM','C-D RAM','ROM','RAM.','','','b','','utme','2001',92,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:14'),(770,'The significance of money to modern economic systems is that it','is used as a means payment','promotes specialization and exchange','measures value and promotes exchange','causes inflation and deflation in the economy','','','c','','utme','2001',77,'Admin','2016-11-15 07:01:49','2020-08-15 00:58:46'),(771,'One major characteristic of credit unions and thrift societies is that','the legal processes involved in their formation are rigid','membership compulsory to people in the same line of  business','the contribution of every member depends the member’s ability','a minimum of ten people in the same line of business can form the union','','','c','','utme','2001',105,'Admin','2016-11-15 07:01:49','2020-08-06 04:20:09'),(772,'The Nigerian Stock Exchange publishes a daily official list that gives full information on the','method of transactions agreed to by members','number of participating members in a day','changes in the prices and earnings of security','changes in the official rules set by the man','','','c','','utme','2001',90,'Admin','2016-11-15 07:01:49','2020-08-13 13:06:59'),(773,'The main factors that determine the value stock on the Stock Exchange are dividend an','the psychology of the market','capital gain','capital appreciation','warrant payment','','','c','','utme','2001',104,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:18'),(774,'One of the main objectives of the Second- tier Securities Market in Nigeria is to','achieve a realistic exchange rate for the naira','eliminate currency  dealings in the black market','assist companies to raise capital','attract investment flow.','','','d','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:19'),(775,'The activities aimed at finding out customers’ needs and satisfaction can be described as','socio-marketing','macro-marketing','micro-marketing','conceptual marketing.','','','d','','utme','2001',84,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:20'),(776,'The most effective type of advertising for branded products is','direct advertising','indirect advertising','informative advertising','competitive advertising.','','','d','','utme','2001',85,'Admin','2016-11-15 07:01:49','2020-08-13 13:06:59'),(777,'Which of these companies are more engaged in public relations activities?','I and II','I and III','II and IV','Ill and IV.','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','b','','utme','2001',100,'Admin','2016-11-15 07:01:49','2020-08-15 00:59:22'),(778,'Which of these companies offers after-sales services?','IV','Ill','II','I','Companies I, II, III and IV produce and sell electronic videos. Company I sells its videos for N= 14 000 each and offers advice on how to fix and operate them. Company II sells at N14 000 and its representatives go to install at no additional cost. Company III sells at N15 500 and offers credit sales at N15 500 per video while company IV sells at N= 15 000 each.','','c','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-08-15 00:50:20'),(779,'Who are the parties to the contract of renting the room?','Musa and Jacob','Musa and Audu','Adamu and Musa','Audu and Jocob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',99,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:24'),(780,'Who is the offeree in this contract?','Musa','Audu','Adamu','Jacob.','Musa rented a room to Adamu for N= 1, 500 and N= 1,000 part-payment was made. Adamu brought Audu and Jacob his friends to stay in the room. The two friends later paid the balance of N= 500 to Musa.','','c','','utme','2001',95,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:36'),(781,'The maximum number of shareholders in a public liability company is','twenty','fifty','one hundred','unlimited.','','','d','','utme','2001',88,'Admin','2016-11-15 07:01:49','2020-08-18 09:54:49'),(782,'One way by which government reduces the repatriation of capital   is through','nationalization','divestiture','indigenization','naturalization.','','','c','','utme','2001',85,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:46'),(783,'One of the major functions of a chamber of commerce is to','promote and protect trade, industry and agriculture','advise members on regulations of other countries','settle disputes that arise out of trade','publish books and periodicals desired by members.','','','a','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-08-18 09:54:32'),(784,'Departmentalization is an aspect of','planning','organizing','directing','controlling.','','','b','','utme','2001',91,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:53'),(785,'A functional organizational structure is where','staff performing the same functions are grouped together','departments performing similar functions are grouped together','activities of similar nature are-grouped together','staff performing similar functions are grouped together.','','','c','','utme','2001',83,'Admin','2016-11-15 07:01:49','2020-08-15 00:58:37'),(786,'In the line type of organizational structure','the lines of authority are vertical','there is the application of division of labour','specialization is carried to a maximum degree','the lines of authority are horizontal.','','','c','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-23 11:40:30'),(787,'Proper disposal of waste by business firms is one way of discharging their','responsibility to government','environmental responsibility','community responsibility','responsibility to customers.','','','b','','utme','2001',79,'Admin','2016-11-15 07:01:49','2020-07-14 13:03:57'),(788,'One of the obstacles  to achieving the objectives of ECOWAS is','lack of a common currency','colonial linkages','sovereignty of states','language differences.','','','d','','utme','2001',101,'Admin','2016-11-15 07:01:49','2020-08-15 00:58:37'),(789,'One of the main objectives of establishing the Niger River Basin Commission was to','embark on a comprehensive survey of the available water resources','carry out research for the development of fresh water fisheries','develop infrastructure to facilitate economic activities','promote trade among member-states to improve standards of living.','','','c','','utme','2001',86,'Admin','2016-11-15 07:01:50','2020-08-12 08:48:16'),(790,'The most important factor that delayed the development of commerce in Nigeria was','the inefficient means of communication','that there were few entrepreneurs','the unavailability of infrastructure facilities','that there were few developed markets.','','','c','','utme','2002',125,'Admin','2016-11-15 07:26:05','2020-07-14 13:04:00'),(791,'Secondary production has to do with changing the','shape of raw materials through construction operations','physical form of raw materials into finished goods','utility of raw materials by an engineering process','nature of raw materials through manufacturing processes.','','','b','','utme','2002',134,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:01'),(792,'The major responsibility of an entrepreneur is','employing all factors of production in the business','coordinating and determining the proportion of what to produce','planning and organizing all activities in the business','directing and controlling all the affairs of the business.','','','a','','utme','2002',125,'Admin','2016-11-15 07:26:08','2020-08-10 17:23:43'),(793,'Which of the following best describes the scope of commerce?','All forms of commercial exchanges and the manufacturing industry','Buying and selling and the construction industry','All occupational exchanges relating to industries and commercial activities','Buying and selling as well as the extraction of natural resources.','','','c','','utme','2002',142,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:03'),(794,'Capital as a factor of production can be used as','money that is regarded as asset','goods that are useful in business','input for further production','services that provide satisfaction','','','c','','utme','2002',136,'Admin','2016-11-15 07:26:08','2020-07-29 14:16:36'),(795,'The agency that currently oversees the privatization and commercialization processes in Nigeria is the','Securities and Exchange Commission','Technical Committee on Privatization and Commercialization','Nigerian Stock Exchange','Bureau of Public Enterprises.','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-08-18 09:54:49'),(796,'Okeze contracted to sell TV sets to Ojo. Unknown to them, the sets were stolen in transit.   This contract may be terminated on the grounds of','bankruptcy','frustration','fraudulence','breach of contract.','','','b','','utme','2002',122,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:37'),(797,'Which of the following countries are members the Lake Chad Basin Commission?','Niger and Cameroun','Benin and Niger','Chad and Benin','Nigeria and Mali.','','','a','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-08-15 00:58:37'),(798,'A core investor in the current phase of privatization in Nigeria is one who','can afford to buy most the shares of the enterprises','will be at the core of the enterprises','can mobilize foreign currency equivalent to the value of the enterprises','has the technical know-how of the enterprises','','','a','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-08-15 00:50:19'),(799,'The agency in Nigeria which ensures that products conform to government quality specifications is the','Standards Organization of Nigeria','Nigerian Consumers’ Association','Manufacturers’ Association of Nigeria','Nigerian Chamber of Commerce.','','','a','','utme','2002',125,'Admin','2016-11-15 07:26:08','2020-07-22 21:21:37'),(800,'Awarding scholarships and sponsoring sports by a business organization are examples of','advertising strategy','economic responsibility','marketing strategy','social responsibility','','','c','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:09'),(801,'The commercialization of public enterprises aimed at','increasing efficiency and making the enterprises self-sufficient','advertising a promoting the goods and services of the enterprises','increased assistance and patronage of the enterprises by the public','selling the goods and services of the enterprises.','','','a','','utme','2002',134,'Admin','2016-11-15 07:26:08','2020-08-15 00:58:36'),(802,'An author’s exclusive right to his published an unpublished works is known as','authors right','constitutional right','patent right','copyright','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:08','2020-07-23 11:40:29'),(803,'Under the endowment policy, the money handed over to the insured at the expiration of the stipulated time or at death is the','indemnity','surrender value','lump sum benefit','insurance premium','','','c','','utme','2002',140,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:12'),(804,'The machine used for sending telex messages is known as a','radar','fax machine','Dictaphone','teleprinter.','','','b','','utme','2002',145,'Admin','2016-11-15 07:26:08','2020-08-18 09:54:49'),(805,'Which of these insurance principles requires a close connection between the actual loss suffered and the risk insured','Indemnity','Proximate cause','Contribution','Subrogation.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:14'),(806,'The unit through which results of a processed data are displayed is the','logic unit','display unit','control unit','output unit.','','','d','','utme','2002',136,'Admin','2016-11-15 07:26:08','2020-08-15 00:58:35'),(807,'Which of the following is used to inform the addressee that a registered parcel is ready for collection?','Express label','Counterfoil','Telegram','Slip.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:16'),(808,'The type of computer commonly found in offices is','laptop','desktop','the hybrid computer','the mainframe computer.','','','c','','utme','2002',128,'Admin','2016-11-15 07:26:08','2020-08-18 09:54:48'),(809,'The mode of transporting crude oil to the ports for export purposes is by','tanker','rail','road','pipeline.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:08','2020-08-15 00:58:36'),(810,'The temporary insurance certificate issued to the insured before drawing up a policy is a','cover  note','testimonial','time policy','proposal  form.','','','a','','utme','2002',141,'Admin','2016-11-15 07:26:08','2020-08-18 09:54:32'),(811,'The bulls and bears in the Stock Exchange market help to minimize','the number of shares and bonds sold','price increases of securities','fluctuations in the prices of securities','the elasticity of the prices of securities.','','','a','','utme','2002',144,'Admin','2016-11-15 07:26:08','2020-08-15 00:59:22'),(812,'Debentures differ from shares in that','they are secured on the company’s assets','ownership is open to the public','they form part of the capital of the business','rewards are usually paid out of profits.','','','c','','utme','2002',126,'Admin','2016-11-15 07:26:08','2020-07-22 21:30:16'),(813,'The Stock Exchange is a market where','long-term securities are sold','all types of securities are sold','short-term securities are sold','medium-term securities are sold.','','','b','','utme','2002',131,'Admin','2016-11-15 07:26:08','2020-07-14 13:04:27'),(814,'A retail cooperative society aims at','hoarding manufactured goods','cutting off the profit of middlemen','lending money to members at low interest rates','encouraging members to save money.','','','b','','utme','2002',128,'Admin','2016-11-15 07:26:08','2020-08-18 09:54:48'),(815,'A bill of exchange already accepted can be discounted by the holder in','the central bank','at least two banks','his bank','any bank.','','','d','','utme','2002',128,'Admin','2016-11-15 07:26:08','2020-08-18 09:54:32'),(816,'The document issued by the seller which gives details of the goods he sells is known as','catalogue','tender','price list','invoice','','','d','','utme','2002',120,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:30'),(817,'Given:  I.Retail; II.Export; III.Transport; IV.Import; V.Insurance; VI.Banking and finance; VII. Wholesale; VIII. Communication. Which of the above are aids to trade?','I, II,  III and VIII','III, V, VI and VIII','I, II, III and VI','II, V, VI and VII','','','b','','utme','2002',138,'Admin','2016-11-15 07:26:09','2020-08-15 00:58:46'),(818,'The organizational structure that relates the positions of specialists to the line managers is called','line structure','staff structure','line and staff structure','functional structure.','','','d','','utme','2002',136,'Admin','2016-11-15 07:26:09','2020-08-12 09:06:08'),(819,'A wholesaler who possesses the tittle to the goods he sells is known as','a merchant wholesaler','a multiple wholesaler','a general wholesaler','an agent wholesaler.','','','d','','utme','2002',139,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:34'),(820,'An important principle of a good organizational structure is','ideal standard','span of control','clarity of mission','adequacy of resources.','','','b','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-08-18 09:54:31'),(821,'A company that is registered with the Corporate Affairs Commission only without being enlisted on the Stock Exchange is a','public liability company','joint venture company','limited company','registered company.','','','d','','utme','2002',133,'Admin','2016-11-15 07:26:09','2020-08-13 06:15:21'),(822,'A contract for the sale of goods involves the','producer, seller and the buyer of goods','offering of goods to customers','transfer of the title to goods for money','exchange of goods.','','','c','','utme','2002',129,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:37'),(823,'The total of the share capital which a company would be allowed to issue is known as','called-up capital','paid-up capital','nominal capital','issued  capital.','','','d','','utme','2002',119,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:38'),(824,'The process of mobilizing, engaging  and maintaining workers to work for an organization is referred to as','staffing','selection','recruitment','employment.','','','d','','utme','2002',130,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:39'),(825,'Recognized members of the Stock Exchange who buy and sell securities on their own behalf are known as','bolls','jobbers','brokers','stags.','','','c','','utme','2002',126,'Admin','2016-11-15 07:26:09','2020-08-15 00:50:20'),(826,'Which of the following involves foreign trade?','Supermarkets','Chain stores','Departmental stores','Commodity markets.','','','d','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:40'),(827,'Which of the following is a function of employers’ association?','Undertaking research on behalf of employees','Promotion of thrift in workers','Promotion of workers’ welfare','Dissemination of information through sponsored journals.','','','c','','utme','2002',148,'Admin','2016-11-15 07:26:09','2020-08-15 00:58:37'),(828,'Which of the following industries is normally located near the \tsource of its raw materials?','Footwear industry','Cement industry','Textile  industry','Automobile assembly.','','','b','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-29 13:52:51'),(829,'One of the most important function of marketing is','encouraging research activities to meet needs','creating classes of merchants among businessmen','the extension of markets for businesses','providing finances to businesses','','','a','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:43'),(830,'Securities on which the buyers are not issued with certificates are called','authorized securities','inscribed securities','bearer securities','registered securities.','','','b','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-07-23 11:40:31'),(831,'In product pricing, which of these elements needs more consideration than others?','the demand for the product','the demography of the buyers of the product','the economic conditions in the market','the cost of producing the product.','','','d','','utme','2002',141,'Admin','2016-11-15 07:26:09','2020-08-18 09:54:33'),(832,'The principal objectives of the Central Bank of Nigeria can be classified broadly into','bankers’ bank, lender of last resort and issuance of currency','service, currency management and financial intermediation','banking services, foreign exchange operations and open','markets operations service, monetary policy and developmental functions.','','','a','','utme','2002',146,'Admin','2016-11-15 07:26:09','2020-08-13 12:59:05'),(833,'The letters E and OE stand for','errors of exception','errors  and omissions expected','estimated and order error','end of error.','','','b','','utme','2002',133,'Admin','2016-11-15 07:26:09','2020-08-13 06:15:21'),(834,'An important issue for consideration in the product element of the marketing mix is the','adequate promotion of the product','channel of distribution of the product','price of the product','planning and development of the product.','','','d','','utme','2002',135,'Admin','2016-11-15 07:26:09','2020-07-16 15:29:37'),(835,'group of companies is a collection of','subsidiaries and their holding company','firms','associates and their holding company','industries.','','','a','','utme','2002',141,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:49'),(836,'Which of the following is an example of trade associations?','European Union','National Marketing Board','Organization of African Unity','National Farmers’ Council.','','','b','','utme','2002',138,'Admin','2016-11-15 07:26:09','2020-08-18 09:54:33'),(837,'Which of the following determines the quality of goods that a retailer sells','The mode of contract of sales','The type of manufacturer','The regulations regarding sales in the area','The location of his shop.','','','b','','utme','2002',137,'Admin','2016-11-15 07:26:09','2020-08-15 00:50:19'),(838,'An advantage of hire purchase to the consumer is the','economies of scale in production','possession of goods before payment','increase in turnover and profits','low interest rate chargeable.','','','b','','utme','2002',121,'Admin','2016-11-15 07:26:09','2020-07-14 13:04:52'),(839,'The founders’ shares are usually referred to as deferred shares because the holders','are entitled to cumulative dividends','receive their dividends after other shareholders','receive   their   dividends   before   other shareholders','are not entitled to any dividends.','','','a','','utme','2002',132,'Admin','2016-11-15 07:26:09','2020-08-15 00:59:22'),(840,'An example of a service -rendering trade association is','Nigerian Bar Association','Association of Nigerian Miners','Cocoa Farmers ’Association','Manufacturers ’Association of Nigeria.','','','a','','utme','2003',101,'Admin','2016-11-15 10:56:19','2020-07-23 11:40:28'),(841,'An obstacle to international trade is','trade imbalance between   countries','availability of  local market','quantity and quality of labour','cost of finance','','','a','','utme','2003',77,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:55'),(842,'The right  of ownership with respect to goods or property is','right of occupancy','proxy','title','certificate of occupancy','','','c','','utme','2003',107,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:56'),(843,'The main motive of chambers of commerce and trade associations is to','assist government in achieving its objectives','protect the interest of consumers','maximize profit','protect and promote the interests of members','','','a','','utme','2003',95,'Admin','2016-11-15 10:56:19','2020-07-23 16:34:07'),(844,'A pattern that shows the kinds of participants involved in the production, distribution and ultimate use of a product is referred to as','selection','strategy','structure','synergy','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:19','2020-07-14 13:04:58'),(845,'Goods that are manufactured or acquired by the seller after the contract of sale are','specialty goods','future goods','specific goods','general goods','','','c','','utme','2003',90,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:00'),(846,'What was the amount paid by Ojo?','N382,500','N425,000','N363,375','N61,625','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','c','','utme','2003',91,'Admin','2016-11-15 10:56:19','2020-07-14 13:05:01'),(847,'How much was the trade discount?','N42,500','N27,500','N22,500','N20,000','Ojo purchased the following items from Sani at the specified prices on credit: 200 cartons of milk at N1,000 per carton; 150 bags of sugar at N500 per bag; 50 bags of rice at  N3 000 per bag. Sani allowed 10% trade discount and 5% cash discount, if payment is made within the agreed period. Ojo paid within the agreed period.','','a','','utme','2003',98,'Admin','2016-11-15 10:56:20','2020-07-29 18:51:38'),(848,'The basic function of the Nigerian Ports Authority is to','ensure that the right caliber of personnel is  employed at the ports','coordinate and regulate the activities of  shipping lines','facilitate and control the movement of goods and services into and out of the country','coordinate the activities of all the seaports in the country','','','d','','utme','2003',91,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:03'),(849,'The concept that refers to the sale, transfer or exchange of goods and services is','industry','trade','tariff','marketing','','','b','','utme','2003',98,'Admin','2016-11-15 10:56:20','2020-07-14 13:05:04'),(850,'A guarantee given by one person or party to another in which \tthe integrity of the person is assured is','fidelity','term assurance','subrogation','indemnity','','','a','','utme','2003',87,'Admin','2016-11-15 10:56:20','2020-08-15 00:50:21'),(851,'A firm that adapts itself to delivering the desired satisfaction more effectively and efficiently than its competitors is said to be practicing','price concept','distribution concept','product concept','marketing concept','','','d','','utme','2003',109,'Admin','2016-11-15 10:56:20','2020-08-15 00:50:19'),(852,'The payment made periodically in respect of an insurance policy entered into is known as','bond','commission','premium','surrender value','','','c','','utme','2003',93,'Admin','2016-11-15 10:56:20','2020-08-12 08:48:16'),(853,'An example of service rendered by NIPOST is','electronic mail','courier','telephone','mail delivery','','','d','','utme','2003',99,'Admin','2016-11-15 10:56:24','2020-08-18 09:54:50'),(854,'The focal point of marketing is','the competitor','the buyer','profit-making','sales','','','d','','utme','2003',99,'Admin','2016-11-15 10:56:24','2020-08-13 13:06:59'),(855,'The type of marine insurance which covers either damage or loss to the vessel and such as caused by it to other vessels is','hull insurance','time insurance','freight insurance','cargo insurance','','','a','','utme','2003',99,'Admin','2016-11-15 10:56:24','2020-07-14 13:05:10'),(856,'The management function that makes the difference in intensity of behaviour is','coordinating','controlling','motivation','planning','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:24','2020-07-23 11:40:31'),(857,'One of the functions of seaports is the provision of','berthing and landing facilities','loading and off-loading facilities','control room for relaying radio messages','warehouses for storage of cargo.','','','b','','utme','2003',95,'Admin','2016-11-15 10:56:24','2020-08-12 08:48:16'),(858,'The process of dividing tasks into jobs and departments and of delegating authority is known as','staffing','leading','directing','organizing','','','d','','utme','2003',99,'Admin','2016-11-15 10:56:25','2020-08-13 06:15:21'),(859,'Communication process involves the transmission of a message over a selected channel to the','receiver','audience','sender','encoder','','','b','','utme','2003',95,'Admin','2016-11-15 10:56:28','2020-08-15 00:58:46'),(860,'Stimulation of demand is a kind of communication in marketing which connotes','personal selling','sales promotion','advertising','merchandising','','','c','','utme','2003',89,'Admin','2016-11-15 10:56:29','2020-08-18 09:54:32'),(861,'A functional structure is an organizational structure in which','abstract rules are applied','equity prevails','a specialist enforces his directives','there is no hierarchy.','','','c','','utme','2003',78,'Admin','2016-11-15 10:56:29','2020-07-29 18:51:38'),(862,'Entrepreneurship mainly involves','risk-taking','initiating','skilled manpower','knowledge','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:26'),(863,'In the event of the liquidation of a company the first to be settled are','debenture holders','members  of the  board','preference shareholders','ordinary shareholders.','','','a','','utme','2003',104,'Admin','2016-11-15 10:56:29','2020-08-12 09:06:08'),(864,'The business organization established mainly for the purpose of carrying out specific assignments for a specific duration is a','joint venture','cooperative society','partnership','company.','','','a','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:28'),(865,'Which of these factors of production is relatively fixed in supply?','Capital','Entrepreneur','Human resources','Natural resources','','','d','','utme','2003',90,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:29'),(866,'The location of a business is mostly influenced by','market outlet','management decision','capital','environment','','','d','','utme','2003',139,'Admin','2016-11-15 10:56:29','2020-08-01 15:32:10'),(867,'The evolution of commerce in Nigeria is traceable to the','period of barter economy as human needs became limitless','desire by human beings to satisfy their needs through the services of other people in the society','development of human civilizations and the desire to meet their needs','primitive stage of existence of  human beings.','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:31'),(868,'One of the requirements necessary for setting up a business is','registration','advertisement','knowledge of the business','documentation','','','c','','utme','2003',96,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:32'),(869,'The assembling of products into usable forms is known as','construction','manufacturing','formation','creation','','','b','','utme','2003',101,'Admin','2016-11-15 10:56:29','2020-07-22 21:21:37'),(870,'The government’s policy thrust on the business environment is to','promote experts','attract investors','be self-sufficient','increase production','','','b','','utme','2003',87,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:33'),(871,'Social responsibility is the ability of an organization to','tackle the socio-economic problem of its community','meet the needs of its community','contribute to sustaining   and developing its community','operate without disrupting the very essence of the environment.','','','c','','utme','2003',95,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:34'),(872,'The act of a person employing another to enter into a contract on his behalf is known as','business','sale of goods','bilateral agreement','agency','','','d','','utme','2003',95,'Admin','2016-11-15 10:56:29','2020-08-18 09:54:49'),(873,'The ECOBANK is the initiative of','some well-meaning Nigerian shareholders','the Federal Government of  Nigeria','West African states to foster trade','the Lagos State Government to enhance capital mobilization.','','','c','','utme','2003',93,'Admin','2016-11-15 10:56:29','2020-07-23 16:34:08'),(874,'Privatization is concerned with','equal ownership between  the public and the government','the dilution of ownership among the public','the individual ownership of companies','government ownership of companies.','','','c','','utme','2003',91,'Admin','2016-11-15 10:56:29','2020-08-15 00:58:37'),(875,'Electronic computers differ from human beings in that they process data and minimize errors in a','faster and more accurate manner','more organized manner','faster but less accurate manner','slower but more accurate manner','','','a','','utme','2003',98,'Admin','2016-11-15 10:56:29','2020-08-15 00:58:46'),(876,'A major benefit derivable from the privatization and commercialization of public enterprises in Nigeria is','increase in wages','employment generation','information technology','revenue generation','','','d','','utme','2003',97,'Admin','2016-11-15 10:56:29','2020-07-14 13:05:46'),(877,'The device which interprets and carries out the instructions presented to it by the computer program is known as','software','microprocessor','mouse','hard-disk','','','b','','utme','2003',97,'Admin','2016-11-15 10:56:33','2020-08-15 00:50:19'),(878,'The market structure, business conditions and financial systems in Nigeria constitute the','economic environment','political environment','cultural environment','technological environment','','','a','','utme','2003',82,'Admin','2016-11-15 10:56:34','2020-08-12 09:06:08'),(879,'The protection of consumers against exploitation by manufacturers is to ensure','that there are varieties of products','that the right quality of goods and services is sold','increase in production capacity','increase in the level of consumer awareness.','','','b','','utme','2003',98,'Admin','2016-11-15 10:56:34','2020-08-15 00:58:44'),(880,'The most widely used computer language that focuses on solving science-oriented problems is','FORTRAN','BASIC','ADA','COBOL','','','a','','utme','2003',111,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:55'),(881,'Banks are engaged in the business of buying and selling of','bills of exchange','instruments of credit','intangible products','land','','','a','','utme','2003',97,'Admin','2016-11-15 10:56:34','2020-07-14 13:05:56'),(882,'A source of short-term finance to companies is','share capital','debentures','retained earnings','corporate tax','','','c','','utme','2003',96,'Admin','2016-11-15 10:56:34','2020-07-22 21:21:37'),(883,'The body charged with the responsibility to register shares for subscription on the stock market in Nigeria is the','Securities and Exchange Commission','Nigerian Stock Exchange','Nigerian Deposit Insurance Company','Central Bank of Nigeria,','','','a','','utme','2003',94,'Admin','2016-11-15 10:56:34','2020-08-15 00:50:19'),(884,'An essential factor for evaluating the different sources of funds for a business is the','decree establishing the business','ownership structure of the business concern','size and the type of the business','burden of cost and repayment','','','b','','utme','2003',85,'Admin','2016-11-15 10:56:34','2020-07-22 21:30:15'),(885,'Money can simply be referred to as a','medium of exchange','means for the settlement of debts','durable asset for doing business','stands of value','','','a','','utme','2003',105,'Admin','2016-11-15 10:56:34','2020-08-15 00:50:19'),(886,'A type of  long-term loan granted to companies with fixed interest as well as with redeemable and irredeemable features is referred to as','a debenture','a bond','a term loan','an overdraft','','','a','','utme','2003',102,'Admin','2016-11-15 10:56:34','2020-07-14 13:06:01'),(887,'Public debt management is one of the functions of a','merchant bank','central bank','commercial bank','development bank.','','','b','','utme','2003',203,'Admin','2016-11-15 10:56:38','2020-08-15 00:58:36');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `crk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=696 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `crk` VALUES (1,'In Jesus’ teaching on the mount, the only justifiable reason for divorce is ','indolence ','insubordination ',' infidelity ','infertility','','','c','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(2,'According to John’s Gospel, Lazarus was from: ','Jerusalem  ','Teberias ','Bethany ','Galilee','','','c','','post-utme','2006',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:55'),(3,'Jesus’ new commandment according to the Gospel of Jesus of John is ','salvation ','love ','peace ','spirit','','','b','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(4,'The thief as described by Jesus comes to ','destroy, kill and steal ','destroy, steal and kill ','kill, destroy and kill ','steal, kill and destroy ','','','d','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(5,'The agony of Jesus in the Garden of Gethsemane is a ','sign of abandonment ','manifestation of human weakness ','punishment ','preparation for his death','','','d','','post-utme','2006',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:08:58'),(6,'Eutychus fell from the third storey to the ground when Paul  prolonged his sermon at ','Troas ','Ephesus ','Miletus ','Corinth.','','','a','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(7,'Charismatic leaders in the Book of Judges arose in Israel to ','revive faith in Yahweh ','rally the tribe together ','lead the Israel to battles ','settle dispute','','','c','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:01'),(8,'What did God create on the fifth day? ','the firmament  ','the two great light ','water under the heaven ','living Creature','','','d','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-07-15 09:16:12'),(9,'Joshua and Caleb were from the tribe of ','Judah and Rueben ','Reuben and Dan ','Ephraim and Reuben ','Judah and Ephraim','','','d','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(10,'Manahem, the son of Gadi reigned over Israel for ','eight years ','twenty years ','six month ','ten years.','','','d','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:04'),(11,'The death of Adonibezek in Bezek was a typical proof of ','cowardice ','nemesis ','insanity ','absurdity','','','b','','post-utme','2006',70,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(12,'In order that Benjamin might be brought to Egypt, Joseph  ','Reuben ','Judah ','Simon ','Zebulon','','','c','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(13,'When Paul came to Rome, the first set of people to whom he preached were the ','Romans ','Jews ','Greeks ','Samaritans.','','','b','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(14,'The three sons of Noah Sdhem, Ham and ','Lot ','Hirah ','Cain ','Japeth.','','','d','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(15,'The renowned interpreters of the Mosaic Law in the time of Jesus were the ','Sadducees ','Scribes ','Herodians ','Pharisees','','','d','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(16,'The mother of Esau is ','Ruth ','Ester ','Rebecca ','Jezebel  ','','','c','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:09'),(17,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) Who was the speaker? ','Joseph ','Jacob ','Job ','James','','','b','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:10'),(18,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29)  When did he say this? ','When he was about to die ','When he was seriously sick ','When he offended God ','When his brother cheated him','','','a','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:11'),(19,'“I am to be gathered to my fathers; bury me with my fathers” (Gen 49:29) What was his wish? ','he wanted to buried at Canaan in the cave at Ephron ','he wanted to be buried at Jericho ','he wanted to commune with his ancestors ','he wanted to be closed to his fathers.','','','a','','post-utme','2006',67,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(20,'Who was authorized by God to go and liberate the Israelites the Egyptian bondage? ','Joshua ','Daniel ','Solomon ','Moses.','','','d','','post-utme','2006',75,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(21,'The names of the two kings of Jericho destroyed by the Israelites during the conquest were ','Adonija and Haggith ','Shion and Og ','Zadok and Benaiah ','Hiram and Jeroboam.','','','b','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:44'),(22,'Who is an atheist? ','someone who does believe in God ','someone who rejects completely the idea of a divine being ','someone who believes that it is impossible to know if there is God or not ','someone who abuses religious people.','','','b','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(23,'What is meant by the Christian doctrine that God is Trinity? ','the idea started in Trinidad and Tobago ','God is three persons in one ','God is omnipotent ','God is the Holy Spirit','','','b','','post-utme','2006',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:16'),(24,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus                              ','','','d','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(25,'The person who the Bible calls the son of consolation is ','Barsabas ','Barabbas ','Barnabas ','Bathsheba','','','c','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:18'),(26,'Who do people say the son of man is? Jesus asks this question to know people’s ','desires ','demand  ','mind ','opinion','','','c','','post-utme','2007',65,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(27,'In Peter’s teaching,” God…………..the proud and gives grace to the humble','receives ','relegates ','resists ','restores.','','','c','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(28,'The lesson which Jesus teaches in the parable of the Good Samaritan is that your neighbor is','only your friend  ','your next of kin  ','a distant friend ','anyone who needs your  help','','','d','','post-utme','2007',60,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(29,'Amram and Jochebad gave birth to : ','Mirian ','Jedida ','Jethro ','Hur','','','a','','post-utme','2007',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(30,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Zipporah and Pauh ','Pauh and Miriam ','Shiphrah and Zipporah ','Shiprah and Puah','','','d','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-27 02:54:01'),(31,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2007',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:23'),(32,'Daniel was delivered from the den of lions for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power','','','b','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(33,'Which of the following carried Judah into captivity ','Pharaoh Neco of Egypt ','Goliath of Philistia ','Assyrian ','Nebuchadnezzar of Babylon','','','d','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:25'),(34,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','slaughter of all his sons ','city of Jerusalem ','feasting of the children of Israel ','','','b','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(35,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-08-05 20:11:11'),(36,'The king of Persia who made it possible for the return of the exiles from Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(37,'The meaning of Emmanuel is ','laughter ','“for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:29'),(38,'“Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:35'),(39,'One of the following said: “the lion has roared who will not fear? The Lord has spoken, who can  but prophesy?” ','Nathan ','Jeremiah ','Amos ','Hosea','','','c','','post-utme','2007',68,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(40,'Where did Paul cure a slave girl who had a spirit of divination ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:32'),(41,'Joshua’s first victory was over the people of ','Ai ','Gibeon ','Gilgal ','Jericho','','','d','','post-utme','2007',57,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:44'),(42,'Josiah’s reign was popular because of his ','allies ','victory ','violence ','reforms','','','d','','post-utme','2007',67,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(43,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2007',92,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:35'),(44,'Who baptized the Ethiopian Eunuch? ','Paul ','peter ','Philip ','Rufus','','','c','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(45,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:36'),(46,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah.','','','c','','post-utme','2007',78,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:23'),(47,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(48,'The person who the Bible calls the consolation is:  ','Barsabbas ','Barabbas ','Barnabs ','Bathsheba','','','c','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(49,'The last things which Zedekiah saw before his eyes were removed was the ','Egyptian army ','Slaughter of his son ','city of Jerusalem ','feasting of hiss children of Israel','','','b','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:40'),(50,'Daniel was delivered from the den of lion for all the following reason except ','his holiness and faith ','his kindness ','God’s love for him ','God’s mighty power.','','','b','','post-utme','2008',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:41'),(51,'Name three places Christian religious people look up to find the truth about the nature of God','In the sacred scripture ','In the religious leader ','In the church ','In their conscience.','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:42'),(52,'Explain why Jesus was identified as the lamb by John (Jn:1:29 ) ','lamb of God is a figurative language which describes Christ sacrificial mission in the word ','he is being compared to the Passover Lamb that would atone for the sins of all world ','Because the lamb is attentive to his owner ','it shows patience, meekness, gentleness and innocence','','','b','','post-utme','2008',60,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(53,'Who do people say the son of man is? Jesus asks this question to know people’s ','desire ','demand ','mind ','pinion','','','c','','post-utme','2008',68,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(54,'In Peter’s teaching,” God…………the proud and gives grace to the humble ','receives ','relegates ','resists ','restores','','','c','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(55,'The lesson, who Jesus teaches in the parable of the Good Samaritan is that your neighbor is ','only your friend ','your next of king ','a distant friend ','anyone who needs your help','','','d','','post-utme','2008',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:46'),(56,'He shall save his people from their sins. Who is being referred to here? ','John the Baptist ','Elijah ','Elisha ','Jesus','','','d','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-07-15 14:05:27'),(57,'Which of the following carried Judah into captivity ','pharaoh  Neco of Egypt ','Goliath of philistia ','Assyrians ','Nebuchadnezzar of Babylon','','','d','','post-utme','2008',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:09:48'),(58,'The prophet who was with the exiles of 597 BC in Babylon was ','Moses ','Hosea ','Micah ','Ezekiel.','','','d','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(59,'Amram and Jochebad gave birth to : ','Miriam ','jedida ','Jethro ','Hur','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(60,'The two Hebrew midwives instructed by pharaoh to kill the Hebrew male babies at birth were:','Ziporah and Puah ','Puah and Miriam ','Shiphrah and Zipporah ','Shiphrah and Puah','','','d','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(61,'The king of Persia who made it possible for the return of the exiles form Babylon was ','Dairus ','Cyrus ','Zechariah ','Zerubabel','','','b','','post-utme','2008',69,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:35'),(62,'Who was the priest that confronted Uzziah in the temple ','Zadokaul ','Phineas ','Azariah ','Aaron','','','c','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(63,'Which of the following prophets was described as weeping prophet? ','Amos ','Ezekiel ','Jeremiah ','Zephaniah','','','c','','post-utme','2008',59,'Admin','0000-00-00 00:00:00','2020-08-07 08:29:17'),(64,'Israel went into Assyrain captivity in ','71AD ','720BC ','722BC ','68AD','','','c','','post-utme','2008',58,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(65,'The meaning of Emmanuel is ','laughter ','for I draw him from water ','God with us ','the fear of God','','','c','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(66,'Bring your necks under the yoke of the king of Babylon and serve him and his people and live” who gave this advice? ','Jeremiah ','Isaiah ','Ezekiel ','Amos','','','a','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:55'),(67,'Moses fled from pharaoh at the age of ','45','40','85','120','','','b','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-04 17:24:29'),(68,'The meaning of Ephphatha is ','be opened ','be still ','be silent ','little girl, arise','','','a','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:56'),(69,'One of the following said: “the lion has roared who will not fear? ','Nathan ','Jeremiah ','Amos ','Hosea','','','a','','post-utme','2008',71,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(70,'Josiah’s reign was popular because of his ','Allies ','victory ','violence ','reforms','','','d','','post-utme','2008',80,'Admin','0000-00-00 00:00:00','2020-08-04 17:24:29'),(71,'Where did Paul cure a slave girl who had a spirit of divination? ','Philippi ','Ephesus ','Athens ','Antioch','','','a','','post-utme','2008',73,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(72,'Who baptized the Ethiopian Eunuch? ','Paul ','Peter ','Philip ','Rufus','','','c','','post-utme','2008',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:02'),(73,'Joshua’s first victory was over the people of ','Ai ','Gideon ','Gilgal ','Jericho ','','','d','','post-utme','2008',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:03'),(74,'“There shall be neither dew nor rain this year except by my word” Who said this?','Moses ','Pharaoh ','Elijah ','Esther ','','','c','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-07 08:29:17'),(75,'In the case before Solomon over the deal and the living, child the mother of the dead child supported. ','Giving the living child to her opponent ','Killing the living child ','joint ownership of the living child ','king Solomon having the living child','','','b','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(76,'Before Moses died. God appointed ………. to succeed him ','Aaron ','Balaam','Joshua ','Manasseh ','','','c','','post-utme','2009',74,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(77,'Those bitten by the serpent were treated by ','Drinking from the Red sea ','fasting for seven day ','looking at the bronze serpent ','call upon the lord ','','','c','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:35'),(78,'In order that Benjamin might be brought to Egypt, Joseph detained ','Ruben ','Levi ','Jacob ','Simoen ','','','d','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(79,'Those inspired by God to lead the tribes of Israel in battle were the ','Judges  ','Captains of Guard  ','priest  ','prophet  ','','','a','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:23'),(80,'God told Samuel that he, would punish Eli because he  ','did not correct his son’s sinful behavior ','did not offer sacrifice as the: Law ','did not warn the people of Israel to stop surfing ','Warned his sons against rape and drunkenness','','','a','','post-utme','2009',62,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(81,'The sun stood still when ','Moses led Israel across the Red sea ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorite at Gideon ','','','d','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(82,'Who is reputed for pulling down the altar of Baal at the risk of annoying his father? ','Joseph ','Jesse ','Gideon   ','Samuel ','','','c','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:11'),(83,'In the trade treated between King Solomon and Lebanon, Solomon was to supply wheat and oil while Hiram was to supply','Grains only ','precious stories ','wheat advice ','Timber ','','','d','','post-utme','2009',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:12'),(84,'Which prophet cried thus “woe is me” for lost, I am a man of unclean lips ','Hosea ','Jeremiah ','Isaiah ','Micah ','','','c','','post-utme','2009',65,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(85,'Hosanna means  ','Ride on in majesty ','Ride on Glory ','Ride on to die ','Save me','','','d','','post-utme','2009',67,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(86,'The conversion of Paul was made possible by','Simeon ','Zacchaccus ','the risen Lord ','Mathew ','','','c','','post-utme','2009',60,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:15'),(87,'Let his habitation be made desolate, and let there be no one to live in it’ who is being referred to here?  ','King soul ','Judas Iscariot ','Stephen ','Barnabas ','','','b','','post-utme','2009',78,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(88,'The proconsul when Paul arrived in commit was called','Festus ','portions ','Pilate ','Gallio ','','','d','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:44'),(89,'‘Now I known that Lord has sent his angel to deliver me ……”who said this? ','Joseph ','Moses ','Paul ','Peter ','','','d','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(90,'The seven deacons were appointed by ','conduct a mission to the Gentiles','Replace the twelve ','Lead the church in Jerusalem ','Help in the distribution of food ','','','d','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(91,'What did God create on the 6th day ','The firmament ','light ','Dry land and sea ','man and living creatures ','','','d','','post-utme','2009',64,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:44'),(92,'Joshua’s first victory was in ','Ai ','Gibeon ','Jordan ','Giligal ','','','c','','post-utme','2009',56,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:20'),(93,'In the parable of the sower, the seeds on the good ground represent those who ','Accept and live by the world of God ','feed the poor ','Have and love riches ','Give alms in market places ','','','a','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:44'),(94,'Which prophet encouraged Jeroboam I to  revolt at the initial stage? ','Micaiah ','Jeremiah ','Nathan ','Joel ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:22'),(95,'‘This had is gone: and where shall I go’ who is being referred to here ','Isaac ','Joseph ','Peter ','Silas ','','','b','','post-utme','2009',61,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(96,'According to Psalm 51, the sacrifice acceptable to God is','A clean hear ','Obedience ','A blemish less lamb ','A broken spirit ','','','c','','post-utme','2009',76,'Admin','0000-00-00 00:00:00','2020-07-26 19:30:54'),(97,'A would –be apostle who puts his hand to the plaughjsa and looks back lacks ','faith ','Kindness ','Repentance ','Total commitment ','','','d','','post-utme','2009',72,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(98,'For which of these prophets of God did the Bible record explicitly to have abandoned an agribusiness for a call to serve God? ','Elisha ','Ezekiel ','Elijah ','Obadiah.','','','a','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:26'),(99,'Why did David spare the life of Saul at Ziph? ','he recognized Gods anointing on Saul ','Saul was also an Israelite ','He did not want blood shed ','He was Saul’s in- law','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(100,'Deborah was a judge when Israel was under the yoke of ','Moab ','Midian ','Canaan ','Philistine','','','c','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-08-18 05:20:04'),(101,'The treatment of those  bitten by fiery serpent was to ','drink from the Red sea ','look at the bronze serpent ','fast for seven days ','call upon the lord','','','b','','post-utme','2010',78,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:55'),(102,'Which of these was detained by Joseph in order that Benjamin might be brought to Egypt ','Reuben ','Levi ','Judah ','Simon','','','d','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(103,'In the biblical account of creation, man was permitted to ','plant fruit trees for food ','water the garden ','make garment of hides and skin ','name all the creatures','','','d','','post-utme','2010',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:31'),(104,'Each of these spies sent out by Moses on God’s command to report on the nature of the promised land was a ','great warrior ','wise judge ','priest ','leaders in his own tribe','','','d','','post-utme','2010',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:32'),(105,'God reveal to Samuel that he was going to punish Eli because he ','did not correct his sons sinful behavior ','did not offer sacrifice as the law required ','did not warn the people of Israel to stop sinning ','warned his sons but did not punish them','','','d','','post-utme','2010',80,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(106,'The sun stood still when ','Moses led the Israelites out of Egypt ','Jericho fell to the army of Joshua ','Noah came out of the ark ','Joshua defeated the Amorites at Gideon','','','d','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(107,'When was this statement made? ‘I repent that I Made Saul king \\'','at the anointing of Saul ','When Saul failed to ray ','When Saul disobeyed God over Amalek ','When Saul finished the morning offering','','','c','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(108,'The commander of David’s army was ','Abner ','Joab ','Abiathar ','Adonijah','','','b','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(109,'That was the sin of David that involved Bathseba? ','Murder ','adultery ','dishonesty ','arrogance','','','a','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(110,'What is the meaning of Emmanuel? ','Son of Emmaus ','God is our Redeemer ','God with us ','Saviour','','','c','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:56'),(111,'What specific reply did John the Baptist give to the soldiers during his preaching ','collect no more than is appointed you ','do not begin to say to yourselves: we have Abraham as our father ','bear fruits that befit repentance ','be content with your wages','','','d','','post-utme','2010',65,'Admin','0000-00-00 00:00:00','2020-07-15 03:50:53'),(112,'Jesus taught that one should make friends quickly with one’s ','enemy ','neighbor ','master ','accuser','','','d','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-08-07 08:29:17'),(113,'The Pharisees and the Scribes accused the disciples of Jesus transgressing the tradition of the elders because they ','did not regard synagogue rules ','did not pray before meals ','ate with unwashed hands ','disobeyed the elders','','','c','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-08-04 17:26:45'),(114,'If anyone would be first, he must be last of all and servant of all. What does this saying of Jesus teach? ','endurance ','lack of ambition ','humility ','relaxation','','','c','','post-utme','2010',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:53'),(115,'Which religious groups asked Jesus about payment of taxes to Ceaser? ','Pharisees and Sadducces ','Pharisees and Herodians ','Sadducces and herodians ','Herodians and Zealots','','','b','','post-utme','2010',53,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:54'),(116,'To whom was the body of Jesus Christ given for burial after His death? ','Nicodemus the Pharisee ','Simon of Cyrene ','Simon the disciple ','Joseph of Arimathea.','','','b','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:04'),(117,'Paul was accused of apparently being a preacher of foreign divinities in Athens because he preached Jesus and the ','Cross ','Law ','resurrection ','second coming','','','c','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:56'),(118,'What specifically makes Samson a unique prophet of God? ','He was a Nazarene ','He loved honey ','He killed many at his death ','He spoke with power in riddles','','','a','','post-utme','2010',74,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(119,'“It is not the sound of shouting for victory, or the sound of the cry of defeat, but the sound of singing that I hear” When was this statement made? ','at the consecration of the Israelites ','at the crossing of the Red Sea ','during the fall of Jericho ','in a strange worship of a god','','','d','','post-utme','2010',85,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(120,'“Blessed be the Lord God of Israel is a hymn of praise by ','the virgin Mary at the Annunciation ','Zachariah at the birth of John the Baptist ','Simeon at the presentation of Jesus in the temple ','Elizabeth at the visit of Mary','','','b','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:10:59'),(121,'The shema emphasizes the ','unity of God ','richness of the spirit of God ','omnipotence of God ','crucial role o’ Israel in the world.','','','c','','post-utme','2010',66,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(122,'The expression ‘dry bones’ in Ezekiel refers to ','an Israelites proverb ','the whole house of Israel ','the slain in the valley ','sinful Israelites and Judean','','','b','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(123,'What Josiah, the king of Judah, is best remembered for in Jewish history is ','His ability to destroy all the shine of Baals','His order that the bones and tombs of the prophets of God must be preserved ','His strong opposition to Pharaoh-Neco of Egypt ','His reparation of the temples of God','','','d','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-08-18 05:20:04'),(124,'After receiving an order from God, Jonah went down to…………….  ','Joppa ','Tarshish  ','Nineveh','Jerusalem ','','','b','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:03'),(125,'True religion, according to Amos’ submission, is the one in which  ','God is always appeased with sacrifices and tithes ','Foods and drinks are served as a mark of love ','Justice and righteousness flows like an endless stream  ','Feast and solemn assemblies play important roles ','','','c','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:04'),(126,'The last born of Gomer for Hoshea was ………….  ','Jezreel','Loammi ','Diblaim  ','Loruhamah ','','','b','','post-utme','2011',62,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(127,'According to Paul in Romans, the law and the prophets bore witness to the righteousness of God but man could not be justified until he  ','Had faith in Jesus ','Saw the glory of God ','Made a serious personal effort ','submitted wholly to the law ','','','a','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:06'),(128,'One of the following was not among the religious sects in the New Testament ','The Pharisees','The Nazarenes ','The Essences   ','The Sadducees','','','c','','post-utme','2011',67,'Admin','0000-00-00 00:00:00','2020-08-07 08:29:17'),(129,'One of the following  is not correct about the order of creation in the Creation Stories ','the evening came before the morning ','darkness came before light','animals were created before man ','the morning came before the evening','','','d','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:07'),(130,'What was Cain’s immediate reaction to the acceptance of Abel’s offering?','He offered another sacrifice ','He was angry and his countenance fell ','He was angry with God','He was angry with Abel ','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-07-15 13:37:42'),(131,'Pick the odd out of the following characters:  ','Saul   ','David','Jonathan','Solomon','','','c','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(132,'“Talitha cumi”  means  ','Dorcas, Arise','Little girl, I say to you, arise ','Thy will be done','Jesus is coming','','','b','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(133,'Who according to James blaspheme the honourable name by which Christians are called','Non believers','Pagan rulers','Antichrists','Rich people','','','d','','post-utme','2011',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:11'),(134,'Who was the last person Jesus appeared to after his resurrection according to Paul?','Mary Magdalene','Joseph of Arimathea  ','Paul','Thomas','','','c','','post-utme','2011',65,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:12'),(135,'How many disciples of Jesus Christ were fishermen? ','two  ','three  ','four','five','','','c','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(136,'Who among the seven deacons was an evangelist who had four daughters who prophesied?  ','Stephen','Philip ','Barnabas   ','Nicholas','','','b','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:54'),(137,'“God has given your enemy into your hand this day, now, therefore, let me pin him to the earth with one stroke of the spear, and I will not strike him twice”. This statement was made to David by','Abishai ','Abner    ','Ahimelech ','David’s armour bearer','','','a','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(138,'The phrase ‘you cows of Bashan’ referred to ','Cows in the land of Bashan  ','The fat and greedy men of Israel who oppress the priest ','The fat and greedy women of Israel who oppress the poor  ','The fat rich women of Samaria who oppress the poor.','','','d','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(139,'The book of _______ mostly emphasized social justice ','Amos ','Ezekiel  ','Hoshea  ','Isaiah.','','','a','','post-utme','2011',59,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:17'),(140,'Among the spiritual gifts, love is supreme because it ','facilitates development ','gives room for friendship ','has eternal value ','promotes understanding','','','c','','post-utme','2011',82,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(141,'John the Baptist describes Jesus to his two disciples as the ','beloved Son of God ','great one of Israel ','holy one of God','lamb of God.','','','d','','post-utme','2011',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:18'),(142,'Joseph’s brothers hated him the more because ','he dreamed about his future dominion over his family members ','he used to give his father evil reports about them ','his father had him at his old age ','his father made a special robe for him','','','a','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:19'),(143,'After eating the forbidden fruit Adam’s and Eve’s eyes opened and they realized that they ','had sinned against God','had disobeyed God   ','were naked  ','had been deceived by the serpent.','','','c','','post-utme','2011',66,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(144,'What did Ahab do to Prophet Micaiah for speaking the truth about the war between Israel and Syria? ','he promoted him ','he gave him a gift ','he denied him any fox ','he imprisoned him.','','','d','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:21'),(145,'The Amalekites who opposed the Israelites in the wilderness were from the lineage of  ','Benjamin ','Jacob ','Esau ','Reuben','','','c','','post-utme','2011',69,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:22'),(146,'During the period of three and a half years of drought in Israel, the man who hid one hundred prophets of God in a cave was  ','Isaiah  ','Lisha ','Elijah ','Obadiah','','','d','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:23'),(147,'During his first missionary journey, Paul first recorded sermon was delivered at  ','Perga   ','Iconium ','Antioch','Lystra ','','','c','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:44'),(148,'In his second letter to the Christians in Thessalonians, Paul admonished them to have nothing to do with anyone who refused to obey what he wrote in the letter. What did Paul think would happen to the person?  ','The person would be encouraged  ','The person would be ashamed  ','The person would be disturbed  ','The person would repent','','','b','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(149,'In the Sermon on the Mount, the meek are blessed because  ','They shall see God  ','They shall be exalted  ','They shall inherit the earth  ','They shall be called sons of God ','','','b','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:26'),(150,'Which of the following is not a natural miracle:  ','Stilling of the storm  ','Walking on the sea  ','Raising of Lazarus from the dead  ','Feeding the five thousand','','','d','','post-utme','2012',58,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:27'),(151,'The prophet whose message was primarily on social justice and true religion is  ','Isaiah  ','Agabus  ','Amos  ','Jeremiah','','','d','','post-utme','2012',89,'Admin','0000-00-00 00:00:00','2020-08-15 23:15:08'),(152,'The prophet who prophesied that Paul would be arrested in Jerusalem is  ','Isaiah  ','Agabus  ','Philip  ','Stephen  ','','','b','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:28'),(153,'One of the lessons one can derive from the story of Deborah the Prophetess is that  ','Women are not good warriors  ','Women should not be allowed to take leadership roles  ','Women’s rights should be fought for by all ','God can use anyone regardless of their gender and tribes.','','','b','','post-utme','2012',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:29'),(154,'One of the following is not among the reasons why Jesus taught in Parables  ','to fulfill the prophecy in Psalm 78:2  ','to create understanding  ','to make people learn the unknown through the known  ','to show the omniscient power of Jesus','','','b','','post-utme','2012',59,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:44'),(155,'The disciple in Damascus who prayed for Saul (Paul) to receive his sight after his conversions was  ','Ananias ','Sapphira  ','Barnabas  ','Thomas ','','','a','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-08-14 18:59:15'),(156,'According to James, one of the causes of wars among Christians is ','their passions  ','their wickedness  ','their faith without work  ','their pride','','','a','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(157,'One of the following was not among the decisions reached at the Council of Jerusalem concerning the Gentiles who became Christians:  ','That Gentiles should obtain from what has been sacrificed to idols  ','The Gentiles should abstain from blood  ','That Gentiles should abstain from what is strangled ','That Gentiles should abstain from love of the world ','','','d','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:33'),(158,'“Thy glory, O Israel upon thy high places! How are the mighty fallen! Tell it not in the streets of Ashkelon… How  are the mighty fallen in the midst of the battle!” The above dirge was written by David when  ','He killed Goliath  ','Uriah the Hittite died  ','Saul and Jonathan died  ','Abner was killed by Joab','','','c','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(159,'Who was one of the Seven Deacons who had four daughters who were prophetesses?  ','Nicolaus  ','Stephen  ','Prochorus  ','Philip ','','','d','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(160,'According to the Letter to the Hebrews, why should Christians lay aside every weight and sin which clings so closely?  ','Sin is contagious  ','Christian can easily be influenced by sinners  ','Christians are surrounded by so great a cloud of witness  ','No sinner will inherit the kingdom of God ','','','c','','post-utme','2012',71,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(161,'“To obey is better than sacrifice” came from  ','Prophet Daniel  ','Prophet Ezekiel  ','Prophet Elijah  ','Prophet Samuel ','','','d','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:52'),(162,'The three sons of Saul who lost their live on Mount Gilboa were  ','Jonathan, Ishbosheth and Abinadab  ','Abinadab, Jonathan and Ishbosheth  ','Jonathan, Abinadab and Malchisua  ','Ishbosheth, Malchishau and Abinadab','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:38'),(163,'The original name of Shadrach was  ','Daniel  ','Mishael  ','Hananiah  ','Azariah','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-08-08 00:12:55'),(164,'The person who was invited to nurse Moses was ','Jochebed  ','Puah  ','Shiphrah  ','Miriam ','','','a','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-29 13:58:20'),(165,'“… But let judgment run down as waters, and righteousness as a mighty stream… “Fairness, judgment and righteousness were set aside during the time of  ________ for burnt and meat offerings.','Amos  ','Hosea  ','Ezekiel  ','Hezekiah ','','','a','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-08-13 12:57:28'),(166,'Eli’s inability to discipline his sons led to all the following except  ','God’s curse on his family  ','the extension of his life span  ','the cancellation of priesthood from his lineage','the death of his sons','','','b','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(167,'Who was the King of Judah who witnessed the second deportation?  ','Gedaliah  ','Jehoiachin  ','Zedekiah ','Jehoiakim','','','c','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:42'),(168,'Paul, the apostle to the gentile, was a native of  ','Perga in Pamphylis  ','Rome  ','Jerusalem  ','Tarsus ','','','b','','post-utme','2012',93,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:43'),(169,'In the Sermon on the Mount, Jesus taught his disciples that whenever they faced persecution, they should  ','be more serious with their drive for souls ','be rejoiced and be exceedingly glad  ','withdraw and  be less active  ','resist persecution and fight for their rights  ','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:44'),(170,'According to Peter, Judgment of God must first begin in  ','the house of God  ','the public places  ','the midst of criminals ','the government auditoria ','','','a','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:11:45'),(171,'Paul told the believers in Corinth that no one can say Jesus is Lord except by  ','knowledge  ','revelation  ','grace  ','the Holy Spirit ','','','a','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(172,'Render to Caesar the things that they are Caesar’s and to God the things are God’s, the above quotation emphasizes  ','Obedience to divine authority  ','Striking a balance between civil and divine authorities ','Disobedience to civil authority  ','Total rejection of both divine and civil authorities','','','b','','post-utme','2012',68,'Admin','0000-00-00 00:00:00','2020-08-13 13:05:02'),(173,'The women sang and said David slain his ten thousands and Saul his  ','five thousands   ','thousand  ','thousands   ','six thousand','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:09'),(174,'Israel went into Assyria captivity in','720BC  ','730 AD   ','750BC','722 BC','','','d','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(175,'A prophet mostly emphasized the holiness of God. This prophet was  ','Hosea  ','Jeremiah  ','Ezekiel   ','Isaiah','','','d','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-08-15 23:15:08'),(176,'One of the following was not among the religious sects in the New Testament  ','The Pharisees   ','The Nazarenes','The Essenes','The Sadducees','','','c','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(177,'“Talitha cumi” means','Dorcas, Arise   ','Little girl, I say to you, arise  ','Thy will be done','Jesus is coming','','','b','','post-utme','2013',57,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:12'),(178,'Who was the secretary employed by Jeremiah to write his prophecy?','Amanuensis  ','Amos  ','Baruch  ','Joshua','','','c','','post-utme','2013',60,'Admin','0000-00-00 00:00:00','2020-08-13 09:15:24'),(179,'Who among the seven deacons was an evangelist  who had four daughters who prophesied?  ','Stephen  ','Philip   ','Barnabas   ','Nicholas','','','b','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-08-04 10:34:24'),(180,'The son of Solomon who made unwise decisions was ….','Jeroboam      ','Rechoboam','Rehoboam    ','Asa','','','c','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(181,'The book of ____ mostly emphasized social justice','Amos   ','Ezekiel   ','Hoshea','Isaiah','','','a','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:16'),(182,'In one of the missionary journeys, Paul was stoned   to a state of coma in  ','Antioch in Pisidia   ','Iconium  ','Lystra   ','Antioch of Syria','','','c','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-13 09:16:44'),(183,'Moses spoke  to the Israelites to fear not, but be calm, confident and see the salvation of God at  ','Pi-Hahirotti   ','Meribah   ','Wilderness of Sinai ','d.Elim','','','a','','post-utme','2013',74,'Admin','0000-00-00 00:00:00','2020-08-13 09:14:33'),(184,'One of the following is not in the Pentateuch  ','Exodus    ','Judges     ','Leviticus   ','Numbers','','','b','','post-utme','2013',66,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:19'),(185,'The sons of Samuel who did not walk in his ways were:','Phinehas and Hophni    ','Hophni and Amos  ','Joel and Phinehas        ','Abijah and Joel','','','d','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(186,'What was the second temptation of Jesus according to the Gospel according to Luke?','The Devil wanted Jesus to worship him  ','The Devil wanted Jesus to deny God','The Devil wanted Jesus to jump from the pinnacle of the Temple    ','The devil wanted Jesus to turn stones to bread','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(187,'Jonah refused to go to Nineveh because  ','Ninevites were in human and wicked','God was merciful, gracious and could forgive them  ','he was timid to deliver the message  ','he did not want to endanger his life','','','b','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:22'),(188,'‘Those who honour me I will honour , and those who despise  me shall be lightly esteemed.’ Who was being addressed?  ','Eli   ','Samuel','Hophni   ','Joshua','','','a','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:23'),(189,'Amos reference to ‘cows of Bashan’ was a metaphoric allusion to  ','women of Samaria  ','rich people of Samaria   ','poor people of Samaria  ','illustrious sons of Samaria','','','a','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-13 09:33:23'),(190,'Amos explained true religion as  ','singing of praises to God  ','self-righteousness','fasting and praying  ','being just and righteous','','','d','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(191,'Who was the prophet who said “I will put my law within them, and will write it upon their heart….”?  ','Isaiah  ','Jeremiah','Hosea   ','Amos','','','b','','post-utme','2013',71,'Admin','0000-00-00 00:00:00','2020-08-07 09:21:53'),(192,'The relationship between God and Israel was described by Hosea as that of a','faithless wife and a loving husband','a loving wife and a faithless husband  ','a penitent wife and aggressive husband  ','a faithless husband and a faithless and nonchalant wife.','','','d','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:27'),(193,'One of the following is not among the “I am” Sayings of Jesus  ','I am the bread of life','I am the gate of life','I am the good shepherd','I am the way','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:14'),(194,'In what way was Moses a prototype of Jesus Christ?','Moses was a great prophet who led Israel out of Egypt','Moses did not die naturally','Moses appeared to Jesus on Mount of Transfiguration','Moses was persecuted by his people','','','a','','post-utme','2013',73,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:00'),(195,'“O dry bones, hear the word of the Lord… “The dry bones mentioned by Prophet Ezekiel  in the statement above refer to the','Amalakite king and soldiers  ','Whole house of Israel  ','Hittites and the Assyrians  ','Babylonians troubling Israel','','','b','','post-utme','2013',61,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:29'),(196,'The eunuch who went to Jerusalem to worship in Acts 8:27 was a  ','minister of God  ','minister of Candace the queen Gaza  ','minister of Candace the king of the Ethiopians','minister of Candace the queen of the Ethiopians','','','d','','post-utme','2013',68,'Admin','0000-00-00 00:00:00','2020-07-14 14:12:30'),(197,'At the time of creation, the river that flowed out of Eden to water the garden divided into','Pishon, Hauijah, Gihon and Tigris','Tigris, Cush, Assune and Hauijah','Pishon, Tigris, Gihon and Euphrates','Euphrates, Gihon, Assyna and Tigris','','','c','','wassce','2005',80,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:31'),(198,'During the creative activity of God, He made the beasts','in His own image','to multiply on the earth','according to their kinds','to serve the needs of man','','','c','','wassce','2005',82,'Admin','2016-11-12 11:56:06','2020-08-20 11:18:44'),(199,'“Two nations are in your womb, and two peoples born of you shall be divided”. The two people are','Moses and Jacob','Jacob and Benjamin','Esau and Ishmael','Esau and Jacob','','','d','','wassce','2005',61,'Admin','2016-11-12 11:56:06','2020-08-13 09:14:33'),(200,'Moses was nursed by','Pharaoh’s daughter','Rachael','his mother','Rebecca','','','c','','wassce','2005',75,'Admin','2016-11-12 11:56:06','2020-08-13 09:33:04'),(201,'The name Ichabod means','Yahweh is God','beloved of  Yahweh','I have asked him from the Lord','the glory has departed from Israel.','','','d','','wassce','2005',72,'Admin','2016-11-12 11:56:06','2020-08-18 20:42:53'),(202,'When Saul and his troops came after David in the wilderness of Ziph, David and Abishai went to Saul’s camp \t\tto','slay him','surprise him','capture him alive','dialogue with him','','','b','','wassce','2005',75,'Admin','2016-11-12 11:56:06','2020-08-13 12:58:14'),(203,'Saul’s death on Mount Gilboa was in consequence of his','sin of disobedience','resorting to the witch of Endor','loss of confidence in David','armour bearer’s obedience','','','a','','wassce','2005',90,'Admin','2016-11-12 11:56:06','2020-08-13 13:06:00'),(204,'Naboth would not give the vineyard to Ahab because it was','under cultivation','inherited from his father','better than Ahab’s offer','undervalued by the king','','','b','','wassce','2005',66,'Admin','2016-11-12 11:56:06','2020-08-13 12:58:14'),(205,'A good example of parental responsibility was demonstrated by','Samuel','Eli','David','Asa','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:39'),(206,'When God said to Solomon, “Ask what I shall give you”, he requested for','long life and prosperity','power and assistance against his enemies','peace and understanding to serve God','wisdom and understanding to serve the people','','','d','','wassce','2005',70,'Admin','2016-11-12 11:56:06','2020-08-13 09:33:23'),(207,'The remote cause of the fall of Jerusalem was','Josiah’s death at the battle of Megiddo','the military might of Israel’s enemies','the sins of Manasseh, the king','Judah’s with holding of tribute to Nebuchadnezzar','','','c','','wassce','2005',68,'Admin','2016-11-12 11:56:06','2020-08-13 13:06:00'),(208,'Nebuchadnezzar punished those who refused to worship the golden image by throwing them into','the River Nile','the rivers of  Babylon','a furnace','a lion’s den','','','c','','wassce','2005',65,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:42'),(209,'The wife of Hosea was called','Gomer','B . Rahab','Jael','Hagar','','','a','','wassce','2005',64,'Admin','2016-11-12 11:56:06','2020-07-14 14:12:43'),(210,'As a reward for their faith, Shadrach, Meshack and Abednego were','asked to return to Jerusalem','granted respectable positions','offered money by the king','made to praise Yahweh','','','b','','wassce','2005',63,'Admin','2016-11-12 11:56:06','2020-08-13 12:57:28'),(211,'Who among the prophets was referred to as a prophet of doom?','Isaiah','Ezekiel','Amos','Jeremiah','','','d','','wassce','2005',79,'Admin','2016-11-12 11:56:06','2020-08-18 20:42:53'),(212,'Jonah typified Jesus Christ when he','surrendered himself to be swallowed by the fish','offered to lose his life that others might be saved','rejected the message of God','announced destruction for the Ninevites','','','b','','wassce','2005',87,'Admin','2016-11-12 11:56:06','2020-08-18 20:42:53'),(213,'The message of Amos was mainly about','the love of God','man’s response to God’s love.','the holiness of God','social justice','','','d','','wassce','2005',88,'Admin','2016-11-12 11:56:06','2020-08-18 20:42:54'),(214,'Before Joseph and Mary came together, she was found to be with a child','to be called Jesus','of the Holy Spirit','who shall be called Emmanuel','spoken of by the prophets','','','b','','wassce','2005',70,'Admin','2016-11-12 11:56:06','2020-08-20 11:18:44'),(215,'“How is it that you, a Jew, ask a drink of me, a woman of \tSamaria?” The speaker was surprised because','Jesus was God and not human','the Jews could only buy water from Samaria','the Jews had no dealings with Samaria','it was unlawful for a man to receive water from a woman','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:06','2020-08-18 20:42:54'),(216,'Jesus said “Not everyone who says to me ‘Lord, Lord,’ shall enter into the kingdom of heaven, but he who','hears the word of God”.','prays and fasts’','prophesies in my name”','does the will of my father”','','','d','','wassce','2005',77,'Admin','2016-11-12 11:56:06','2020-08-18 20:42:55'),(217,'According to Jesus, a disciple must not','hate his parents and family','bear his own cross','be a poor man','count the cost','','','d','','wassce','2005',74,'Admin','2016-11-12 11:56:06','2020-07-14 14:13:03'),(218,'Instead of being unnecessarily anxious about life and the affairs of this world, Jesus taught us to','relax our minds and wait for the manna from above','seek first the kingdom of God and its righteousness','seek water baptism and qualify for divine healing','repent of our sins and preach the gospel.','','','b','','wassce','2005',69,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:04'),(219,'According to Jesus, the seventy disciples who returned from a successful missionary work should rejoice because','the demons were subject to them','the sick were healed through their ministry','the lame walked just at their command','their names were written in heaven','','','d','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:05'),(220,'The seeds that fell among thorns represent those who hear the word of God but lose it because','they refuse to be baptized in water','their parental background does not allow them to believe','the cares of the world and delight in riches choke the word','the unbelievers do not permit new converts to receive the word','','','c','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:06'),(221,'The rich man who ignored the needs of Lazarus lacked','a sense of proportion','parental care','human sympathy','spiritual contentment','','','a','','wassce','2005',66,'Admin','2016-11-12 11:56:07','2020-08-13 09:14:33'),(222,'Abiding in Christ’s love demands that we','have hope for the future','keep His commandments','imitate one another','manifest the peace of God','','','b','','wassce','2005',82,'Admin','2016-11-12 11:56:07','2020-08-02 12:40:12'),(223,'According to Jesus, a good shepherd lays down his life for the sheep but a hireling','sells them off for personal profit','abandons the sheep in the face of danger','protects some of the sheep leaving others to danger','asks for better pay before doing his work.','','','b','','wassce','2005',68,'Admin','2016-11-12 11:56:07','2020-08-13 09:16:44'),(224,'The arrest of Jesus by his enemies was','an accident of faith','a result of his tough teaching','a fulfilment of the scriptures','a ploy to see his miraculous powers','','','b','','wassce','2005',66,'Admin','2016-11-12 11:56:07','2020-08-07 09:21:53'),(225,'The final trial of Jesus was presided over by','Herod','Caiaphas','the High Priest','Pilate','','','d','','wassce','2005',83,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:11'),(226,'Before his ascension, Jesus commissioned his disciples to go to all nations and','cast out demons','heal the sick','raise the dead','make disciples of them','','','d','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-08-13 09:15:52'),(227,'The experience which totally changed Paul’s focus in life was his','witnessing the martyrdom of Stephen','determination to wipe out the church','participation in the council of Jerusalem','encounter with Jesus on the road to Damascus','','','d','','wassce','2005',71,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:13'),(228,'Herod persecuted the early church because he was','opposed to the Apostles’ teaching','impressed by his growing popularity after killing James','unhappy that the Jewish leaders were not doing enough havoc to the apostles','asserting the extended powers granted him Rome.','','','b','','wassce','2005',77,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:14'),(229,'One of the early Christians who sold his property and gave the money to the apostles was','Barnabas','Stephen','Barabbas','Matthias','','','a','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-08-18 20:42:55'),(230,'Which of the following was not characteristic of the Early Church?','Constant change in leadership','Devotion to the teachings of the apostles','Breaking bread in members’ homes','Communal fellowship','','','a','','wassce','2005',82,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:15'),(231,'“Father forgive them for they know not what they do” was the prayer said by','Philip','Peter','Paul','Stephen','','','d','','wassce','2005',75,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:16'),(232,'Paul argued that Jesus died for us while we were yet sinners in order to','prove that he was not an ordinary man','show Gods’ love for sinful man','warn us to desist from sin','give us power to possess the earth','','','b','','wassce','2005',73,'Admin','2016-11-12 11:56:07','2020-08-13 09:14:33'),(233,'Paul, in Romans, taught that Christians are Abraham’s descendants by','grace','faith','circumcision','law','','','b','','wassce','2005',68,'Admin','2016-11-12 11:56:07','2020-08-08 00:12:56'),(234,'According to Romans, when civil authorities punish evil doers, they do so as the','agents of God’s wrath','supervisory authority','agents of the darkness of this world','representatives of angelic powers','','','a','','wassce','2005',78,'Admin','2016-11-12 11:56:07','2020-08-13 09:33:04'),(235,'Paul said he was not fit to be called an apostle because he','was not called like the others','was not a Jew','persecuted the Early Church','was only a distributor of letters','','','c','','wassce','2005',70,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:20'),(236,'In Romans, Paul admonished Christians, in their dealings with secular powers, to','reject all secular laws','pray for the leaders','refuse to pay tax to them','respect the authorities','','','d','','wassce','2005',87,'Admin','2016-11-12 11:56:07','2020-08-18 20:42:54'),(237,'Paul taught that by our common faith in Jesus and baptism, the difference between Jews and Gentiles has become','permanent','temporal','irrelevant','real','','','c','','wassce','2005',74,'Admin','2016-11-12 11:56:07','2020-08-13 09:14:33'),(238,'The Philippians’ gifts to Paul were for','the growth of the church','his sustenance','distribution to the saints','other Christian prisoners','','','b','','wassce','2005',80,'Admin','2016-11-12 11:56:07','2020-07-26 19:30:54'),(239,'Which of the following does not relate to the new life in Christ?','Baptism','Circumcision','Grace of God','Faith','','','b','','wassce','2005',72,'Admin','2016-11-12 11:56:07','2020-08-04 10:36:44'),(240,'Paul taught the Colossians that the relationship between wives and their husbands should be as','is fitting in the Lord','the culture demands','is written in the law','the husband commands','','','a','','wassce','2005',90,'Admin','2016-11-12 11:56:07','2020-08-13 09:15:24'),(241,'At the coming of the Lord, unbelievers will','be condemned','have a desolate land','be hit by famine','die in divine war','','','a','','wassce','2005',76,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:26'),(242,'Paul compares the manifestations of spiritual gifts in individual members of the Church to the','unity of the human body','rights of the individual members of the Church','rights of the different parts of the body','unity of the Church','','','a','','wassce','2005',83,'Admin','2016-11-12 11:56:07','2020-08-18 20:42:54'),(243,'Paul wrote to the Thessalonians about idleness because he \tlearnt that they were','among the idlest people in Asia','forcing Christians to work in the Church','unwilling to give offerings','expecting the second coming of Christ','','','d','','wassce','2005',67,'Admin','2016-11-12 11:56:07','2020-08-13 12:57:28'),(244,'Paul appealed to Philemon to forgive Onesimus on the basis of','equality','righteousness','love','faith','','','a','','wassce','2005',80,'Admin','2016-11-12 11:56:07','2020-07-14 14:13:29'),(245,'James recommends the anointing oil of the elders because such anointing','prepares the sick for his last journey','makes the sick holy and righteous','promotes physical recovery','ensures forgiveness to the sick','','','d','','wassce','2005',89,'Admin','2016-11-12 11:56:08','2020-08-18 20:42:54'),(246,'Peter advised his fellow elders to tend the flock of God that was in their charge','with care','willingly','by example','domineeringly','','','a','','wassce','2005',78,'Admin','2016-11-12 11:56:08','2020-07-14 14:13:31'),(247,'In Timothy, Paul urges Christians to pray for kings and those in authority for the achievement of','a successful Christian life','godly and acceptable life','peace and exaltation in life','quiet and peaceable life.','','','d','','utme','2009',79,'Admin','2016-11-12 12:16:55','2020-08-13 09:15:52'),(248,'According to Galatians, one of the benefits of being a joint heir with Christ is having His Spirit in','worship','the heart','the body','prayers','','','b','','utme','2009',67,'Admin','2016-11-12 12:16:57','2020-08-12 08:03:36'),(249,'According to Ephesians, children who obey their parents in the Lord will','be happy','go to heaven','have long life','be great.','','','c','','utme','2009',70,'Admin','2016-11-12 12:16:57','2020-08-01 10:54:37'),(250,'According to Thessalonians, the day of the Lord will not come unless the','living die first','scoffers come first','dead rise first','rebellion comes first.','','','d','','utme','2009',83,'Admin','2016-11-12 12:16:58','2020-08-13 09:15:52'),(251,'In Romans, Paul condemned sin taking over mortal bodies in the new life as instruments of','greediness','wickedness','sadness','foolishness.','','','b','','utme','2009',99,'Admin','2016-11-12 12:16:58','2020-08-13 12:57:28'),(252,'In his teaching on partiality, James declares that mercy triumphs over','judgment','righteousness','grace','faith.','','','a','','utme','2009',101,'Admin','2016-11-12 12:16:58','2020-08-13 13:06:00'),(253,'In Paul’s arrangement of the spiritual gifts in Corinthians, the last is','the utterance of wisdom','interpretation of tongues','gifts of healing','various kinds of tongues.','','','b','','utme','2009',83,'Admin','2016-11-12 12:16:58','2020-08-13 09:14:33'),(254,'In His sermon on the Mount, Jesus said that the poor in spirit are blessed for they would','be satisfied','be comforted on the last day','inherit the kingdom of heaven','inherit the earth.','','','a','','utme','2009',88,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(255,'According to Matthew, the stone on the tomb of Jesus was removed by','an angel','a Roman soldier','Mary Magdalene','Peter and John.','','','a','','utme','2009',84,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(256,'Angel Gabriel told Zachariah that he would become dumb until John was born because he','looked down on the Angel','was advanced in age','disagreed with Elizabeth, his wife','did not believe God’s words.','','','d','','utme','2009',73,'Admin','2016-11-12 12:16:58','2020-08-13 09:15:24'),(257,'“...but should write to them to abstain from the pollutions of idols and from unchastity and from what is strangled and from blood...” The statement above was made at the Council of Jerusalem by','Philip','Simon','James','Peter','','','d','','utme','2009',75,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(258,'In the country of the Gerasenes, Jesus healed the','man possessed of demons','paralytic at the pool','leper','blind man.','','','a','','utme','2009',67,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(259,'Following the death of Stephen, the only group of believers not scattered by the great persecution was the','deacons','apostles','prophets','disciples.','','','d','','utme','2009',92,'Admin','2016-11-12 12:16:58','2020-08-13 13:06:00'),(260,'According to Luke, when Moses and Elijah appeared during the Transfiguration, they spoke of Jesus’','departure','second coming','resurrection','trials.','','','a','','utme','2009',64,'Admin','2016-11-12 12:16:58','2020-08-13 12:58:14'),(261,'The baptism of Jesus by John in River Jordan was to','convince others that John was His forerunner','ensure that proper baptism must be in a river','service as an example','fulfil all righteousness.','','','d','','utme','2009',81,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(262,'Herod was delighted to see Jesus because he had heard of Him for so long and wanted to','send Him to Rome','sentence Him to death','see Him perform miracles','make Him his friend.','','','c','','utme','2009',87,'Admin','2016-11-12 12:16:58','2020-08-20 11:18:44'),(263,'“Do you understand what you are reading?” Philip asked the Ethiopian eunuch the question above when he found him reading the book of','Hosea','Ezekiel','Jeremiah','Isaiah.','','','d','','utme','2009',86,'Admin','2016-11-12 12:16:58','2020-08-13 12:57:28'),(264,'“Unbind him, and let him go.” The statement was made by Jesus when','He raised to life the dead Lazarus','He healed the son of the widow at Nain','He healed the centurion’s servant','a boy bound by Satan was brought to Him.','','','a','','utme','2009',90,'Admin','2016-11-12 12:16:58','2020-07-14 14:13:48'),(265,'In Luke, at the Last Supper, Jesus revealed His','resurrection','imminent sufferings','love for His disciples','ascension.','','','b','','utme','2009',74,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(266,'The good shepherd according to Jesus is one who','lays down his life for his sheep','goes about with his sheep','keeps many healthy sheep','feeds his sheep in green pastures.','','','a','','utme','2009',87,'Admin','2016-11-12 12:16:58','2020-08-13 09:33:23'),(267,'Jesus: stilling of the storm was to','escape from danger','impress His disciples','demonstrate His power','help the fishermen.','','','c','','utme','2009',66,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(268,'“Can any one forbid water for baptizing these people who have received the Holy Spirit just as we have?” The statement above was made by Peter at the conversion of','Herod','Lydia','Saul','Cornelius.','','','d','','utme','2009',78,'Admin','2016-11-12 12:16:58','2020-08-13 09:33:23'),(269,'The disciple who replaced Judas Iscariot was','Justus','Stephen','Mathias','Luke.','','','c','','utme','2009',68,'Admin','2016-11-12 12:16:58','2020-08-13 09:33:04'),(270,'The message in the parable of the weeds is to','make Christians to be aware of the evil one','remind Christians to pray always','teach Christians to be aware of false teaching','warn Christians on what will happen at the close of age','','','c','','utme','2009',79,'Admin','2016-11-12 12:16:58','2020-08-13 13:06:00'),(271,'The sin of the sons of Eli was that they treated the offering of the LORD with','suspicion','contempt','disgust','jealousy.','','','b','','utme','2009',98,'Admin','2016-11-12 12:16:58','2020-08-13 13:05:02'),(272,'In order for the people of Israel to be ready to meet the LORD by the third day at Mount Sinai, they were','not to drink alcohol','to wear white garments','to wash their garments everyday','not to go near a woman.','','','c','','utme','2009',88,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(273,'For worshipping the molten calf, God described the Israelites as','a stubborn nation','an unholy nation','a stiff-necked people','an unrighteous people','','','c','','utme','2009',76,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(274,'“1 will not eat until I have told my errand” In the statement above, the errand of Abraham’s servant was to','find a wife for Isaac','deliver the camels to Laban','assess Isaac’s future wife','deliver Isaac’s message to Laban','','','a','','utme','2009',95,'Admin','2016-11-12 12:16:58','2020-08-12 08:03:36'),(275,'Saul leant from Samuel’s spirit that the LORD would','give the Philistines into his hands','afflict him with sickness','because Isaac’s future wife','pardon his iniquity','','','c','','utme','2009',91,'Admin','2016-11-12 12:16:58','2020-08-13 09:14:54'),(276,'“My spirit shall not abide in man forever, for he is flesh...” When God made the statement above, He concluded that man’s days shall be','one hundred years','one hundred and fifty years','eighty years','one hundred and twenty years.','','','a','','utme','2009',63,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(277,'According to proverbs, a son that is attentive to a father’s instruction will','be rich','have eternal life','gain insight','be forgiven his sins','','','b','','utme','2009',78,'Admin','2016-11-12 12:16:59','2020-08-13 09:33:04'),(278,'When God called Moses to deliver the Israelites, he resisted because he could not speak and he was told to','perform some signs with his rod','wait for a sign from God','go with Joshua who would speak for him','go with Aaron who would speak for him','','','d','','utme','2009',85,'Admin','2016-11-12 12:16:59','2020-08-13 09:16:44'),(279,'David was anointed king over Judah at','Zuph','Bethlehem','Hebron','Gibeon.','','','c','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-08-13 13:06:00'),(280,'“Behold, if people of Israel are to come, let us deal shrewdly with them, lest they multiply.....” ln the statement, the first step by the king of Egypt was to','cast all Hebrew male children into the Nile','impose heavy tax on them','kill Hebrew male children','set taskmasters over them to afflict them with burdens','','','d','','utme','2009',82,'Admin','2016-11-12 12:16:59','2020-08-13 09:33:23'),(281,'“Let the waters under the heavens be gathered together into one place, and let the dry land appear.” In the statement above  the dry land and the water refer to','earth and oceans','firmament and seas','firmament and oceans','earth and seas','','','d','','utme','2009',84,'Admin','2016-11-12 12:16:59','2020-08-01 10:54:37'),(282,'What did Gideon call the altar which he built to the LORD?','The LORD is merciful','The LORD is peace','Jehovah Jireh','The LORD is great','','','a','','utme','2009',88,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(283,'When King Nebuchadnezzar besieged Judah, he took away all classes of people but spared the','poorest people of the land','palace guards','children and the aged','priests and prophets','','','a','','utme','2009',87,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(284,'After Prophet Ezekiel had eaten what he was offered, he was sent to speak to','a people of hard language','the house of Israel','the house of Judah','a people of foreign language','','','b','','utme','2009',80,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(285,'Josiah believed that the wrath of the LORD was kindled against him and all Judah because','they did not observe the Passover','there was an unholy thing in their midst','the people have forgotten God','their fathers were disobedient to God.','','','b','','utme','2009',83,'Admin','2016-11-12 12:16:59','2020-08-14 18:59:14'),(286,'“Son of man, stand upon your feet, and I will speak with you.” What happened to the Son of man after the instruction above?','The Spirit entered him.','He became terrified.','The angels gave him support.','He began to prophesy.','','','a','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(287,'God had pity on the people of Nineveh because','they listened to Jonah’s message','the king punished all the violent people in the land','they turned from their evil way.','they made sacrifices of sin offering to God.','','','c','','utme','2009',72,'Admin','2016-11-12 12:16:59','2020-08-14 18:59:15'),(288,'The Kingdom of Israel was divided because the','kingdom was too large to be administered','leadership wanted to create more nations','followership wanted more nations','last two kings made unwise policies.','','','d','','utme','2009',83,'Admin','2016-11-12 12:16:59','2020-08-01 10:54:37'),(289,'“Behold, I am the LORD, the God of all flesh; is anything too hard for me...” The statement above suggests that God is','merciful','awesome','most powerful','not changeable.','','','b','','utme','2009',82,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(290,'Immediately after the contest on Mount Carmel, Elijah prayed and God answered him with','thunder','rainfall','a whirlwind','a heavy storm.','','','a','','utme','2009',98,'Admin','2016-11-12 12:16:59','2020-08-13 09:15:52'),(291,'Prophet Amos told Israel to hate evil, love good and establish justice in the gate so that God would','heal their diseases','give them good leaders','be gracious to them','multiply their descendants.','','','c','','utme','2009',89,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(292,'In addition to the declaration of freedom to the exiles in Babylon, King Cyrus ordered for','free will offering for the house of God in Jerusalem','the release of Jewish, slaves in the empire','security check on the Jews before departure','support from craftsmen in Babylon.','','','a','','utme','2009',89,'Admin','2016-11-12 12:16:59','2020-08-13 09:33:04'),(293,'“Am I God, to kill and to make alive, that this man sends words to me to cure a man of his leprosy...” Prophet Elisha responded to the king’s reaction in the statement above by','directing the nation of Israel to pray and fast','requesting the leper to come to his house','directing the leper to go to River Jordan','asking the leper to offer a sacrifice.','','','b','','utme','2009',74,'Admin','2016-11-12 12:16:59','2020-08-13 12:57:28'),(294,'According to Prophet Jeremiah, one of the promises of God was that He would give the Israelites','new priests','new commandments','kings after His own heart','shepherds after His own heart.','','','c','','utme','2009',77,'Admin','2016-11-12 12:16:59','2020-08-13 12:57:28'),(295,'Prophet Hosea named his second child Not Pitied because God would no more pity the','kings of Judah','kings of Israel','house of Judah','house of Israel.','','','c','','utme','2009',81,'Admin','2016-11-12 12:16:59','2020-08-13 09:15:52'),(296,'“Test your servants for ten days; let us be given vegetables to eat and water to drink...” In the statement above, Daniel was talking to','King Darius','the chief of the eunuchs','the steward of the chief eunuch.','King Artaxerxes.','','','b','','utme','2009',75,'Admin','2016-11-12 12:16:59','2020-08-12 08:03:36'),(297,'God blessed and hallowed the seventh day because','it was the day He rested from creation','it was the day He created man','He wanted it to be a day of worship','He saw that all He had created was good.','','','a','','utme','2011',78,'Admin','2016-11-12 12:27:45','2020-08-19 21:11:37'),(298,'Noah’s ark was sustained during the flood by its','resting on the highest mountains','being rowed on the waters','floating on the water','being anchored safely','','','c','','utme','2011',67,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(299,'God visited the children of Israel on Mount Sinai during the giving of  the commandments through','a storm','mist and dew','smoke and fire','a still small voice','','','c','','utme','2011',79,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(300,'When asked to interpret Pharaoh’s dream, Joseph’s first response was','...God has revealed to Pharaoh what he is about to do.','...It is not in me; God will give Pharaoh a favourable answer.','...God will shortly bring it to pass.','…let Pharaoh select a man discrete and wise','','','b','','utme','2011',84,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(301,'When Joshua fell upon his face during Israel’s defeat at Ai, God told him to rise and','send more courageous soldiers to Ai','encourage the people','pray fervently against their enemies','sanctify the people','','','d','','utme','2011',64,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(302,'God guided Abraham’s steward in choosing a wife for Isaac by','teaching him how to select a good woman','leading a lady to fulfil his prayer request','taking him to Abraham’s fatherland','giving him an exemplary woman.','','','c','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(303,'Why was God angry with Eli?','Eli’s sons disregarded the people’s warning','Eli’s sons were wicked people.','Eli’s sons dishonoured God and he treated them with levity.','Eli’s sons were appointed as priests against God’s will.','','','c','','utme','2011',81,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(304,'Laxity in disciplining children is dangerous to both the family and society as exemplified by','Jonathan','Tamar','Absalom','Ahikam.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-07-15 13:37:42'),(305,'God promised Abraham that nations of the earth shall be blessed through him because','he had obeyed Him','his descendants had obeyed Him','of his kindness to Hagar','of  his exemplary leadership.','','','a','','utme','2011',77,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(306,'The punishment for Adam and Eve’s sin was that they','were driven out of the garden','would be naked forever','would never fellowship with God','would be enemies of crawling animals.','','','a','','utme','2011',67,'Admin','2016-11-12 12:27:46','2020-08-13 13:06:00'),(307,'‘Do not destroy him; for who can stretch out his hand on the LORD’S anointed, and be guiltless?’ In the statement above, David was acknowledging God’s role in','Abishai’s command','Saul’s leadership','Samuel’s priesthood','Elijah’s prophet hood.','','','b','','utme','2011',73,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(308,'Saul’s decision to consult a medium displayed his lack of','faith in his army','faith in God','leadership qualities','respect for the dead.','','','b','','utme','2011',89,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(309,'Solomon made the most unwise decision by engaging in','marriages to foreign women','alliances with his brothers','so many wars of conquest','developmental works.','','','a','','utme','2011',103,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(310,'The man of God whose word was ignored by Kings Ahab and Jehoshaphat was','Elijah','Zedekiah','Malakiah','Micaiah','','','d','','utme','2011',89,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(311,'Baal did not answer his worshippers at the contest on Mount Carmel because he','was annoyed with their sacrifice','did not hear','wanted to disgrace his worshippers','was asleep.','','','b','','utme','2011',88,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(312,'The workmen who repaired the house of the LORD during Josiah’s religious reforms were not made to account for the money given them because they','did not receive the money directly','lacked accounting capabilities','bribed the Temple officials','were honest workmen.','','','a','','utme','2011',109,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(313,'During Jehoiakim’s reign, Judah was destroyed as punishment for Manasseh’s sin of','keeping Temple prostitutes in the land','defiling the vessels in the Temple','offering unacceptable sacrifice','shedding innocent blood.','','','a','','utme','2011',71,'Admin','2016-11-12 12:27:46','2020-08-13 09:15:24'),(314,'Nehemiah responded to the opposition of the enemies of Israel by','telling the people not to say a word','reporting the issue to King Artaxerxes','inviting them to dialogue in the King’s court','asking God to return their taunt back to them.','','','d','','utme','2011',89,'Admin','2016-11-12 12:27:46','2020-08-20 11:18:44'),(315,'Nebuchadnezzar ordered his subjects to worship the image he set up whenever they','heard his voice','saw him stand before the image','heard the sound of the horn','were told to do so.','','','c','','utme','2011',77,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(316,'‘What is this that you have done!”  The people in the ship asked Jonah the question above because','he was fast asleep in the ship','they knew he was fleeing from the LORD','he lied to them about his presence in the ship','they realized that he had made attempts to commit suicide.','','','b','','utme','2011',76,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(317,'What shall I do with you, O Ephraim? What shall I do with you, O Judah? Your love is like a morning cloud...” In the statement above, the love of Israel is compared to a morning cloud because it','disappears fast','withers','is cloudy','darkens the day','','','a','','utme','2011',80,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(318,'According to Amos, God desires knowledge of Him rather than','fervent prayers','dependency on the Law','the multitude of prophecies','burnt offerings','','','d','','utme','2011',78,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(319,'In his vision, Isaiah’s guilt was taken away and his sin forgiven after','the angel of the LORD appeared to him','his mouth was touched with a burning coal','the seraphim had spoken to him','he had agreed to serve God.','','','b','','utme','2011',75,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(320,'The prophet who was ordained from the womb for God’s service was','Jeremiah','Isaiah','Ezekiel','Hosea.','','','a','','utme','2011',77,'Admin','2016-11-12 12:27:46','2020-08-19 21:11:37'),(321,'According to Jeremiah, the anger of God towards Israel would only be reduced by','His mercy','the prophet’s repentance','the prophet’s prayers','His glory.','','','a','','utme','2011',83,'Admin','2016-11-12 12:27:47','2020-08-13 09:14:54'),(322,'When Zechariah saw the angel of the Lord standing on the right side of the altar of incense, he','cried out to him','was troubled and afraid','rejoiced in the Lord','left the Temple immediately.','','','b','','utme','2011',65,'Admin','2016-11-12 12:27:47','2020-08-07 09:21:53'),(323,'‘Follow me and leave the dead to bury their own dead’ By this statement, Jesus means that','disciples shall not attend burials','there is no life after death','following Him comes before anything else','shall leave their families in God’s care','','','c','','utme','2011',75,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(324,'The disciples became terrified when they saw Jesus walking on the sea because','they thought He would drown','they thought He was a ghost','they lacked faith in Him','there was a great storm.','','','c','','utme','2011',72,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(325,'The Jews sought to kill Jesus after He healed the man at the pool of Bethzatha because they thought that He','claimed to have authority to forgive sins','made Himself equal with God','did not agree with the law of Moses','said that He was born before Abraham.','','','c','','utme','2011',73,'Admin','2016-11-12 12:27:47','2020-08-13 13:05:02'),(326,'In the parable of the sower, the seed that fell among the thorns symbolized the one who hears the word but','does not understand it','loses it to the enemy','does not immediately receive it','the cares of the world choke it.','','','d','','utme','2011',82,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(327,'Jesus encouraged His followers to rejoice when they were \tpersecuted because','great would be their reward in heaven','angels would come to their aid','they would not lack anything good','all their sins would be forgiven.','','','a','','utme','2011',74,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(328,'‘Blessed are you, Simon Bar-Jona ! For flesh and blood has not revealed this to you...’ As exemplified by the statement above, for believers to be able to identify with Jesus, they must','offer their lives','be led by the Spirit','keep all the commandments','vow not to deny Him.','','','b','','utme','2011',72,'Admin','2016-11-12 12:27:47','2020-08-13 09:16:44'),(329,'Jesus drove the money changers and sellers of doves out of the Temple because','the people defiled it with dubious business','there was no need for animal sacrifice anymore','the people were disobedient to the Law','animals and birds were not allowed in it.','','','a','','utme','2011',102,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(330,'The tearing of the curtain of the Temple into two at the death of Jesus signifies','the passing away of the prophets','direct access to God through Christ','that Jesus was a powerful person','that God was truly with Jesus.','','','b','','utme','2011',82,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(331,'“Tell people, His disciples came by night and stole him away while we were asleep...” The intention of the speaker in the statement above was to','implicate the disciples','absolve the soldiers from all blame','deny the resurrection story','convince the authority','','','c','','utme','2011',100,'Admin','2016-11-12 12:27:47','2020-08-20 11:18:44'),(332,'Jesus charged His followers to walk in the light while they had the light so that they may','have eternal life','become custodians of it','have the light of life','become sons of it.','','','c','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-08-20 11:18:44'),(333,'In the early Church, believer devoted themselves to the','daily distribution of food','apostles’ teaching and fellowship','breaking of bread in the Temple','performance of miracles','','','c','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(334,'The disciple that went to preach in Samaria after the great persecution in Jerusalem was','Philip','Andrew','Peter','James.','','','a','','utme','2011',80,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(335,'Saul was convened so that he might','cause confusion among the Jews','help Peter in his work','not be killed for his sins','spread the word to the Gentiles.','','','d','','utme','2011',84,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:06'),(336,'What effect did the decision of the Council of Jerusalem have on the early Church?','Members became more untied','the Church experienced freedom from persecution','The Jews became leaders of the community.','Gentiles were free to be members of the Church','','','d','','utme','2011',76,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(337,'Paul in Romans stated that the righteousness of God has been manifested through','the Law','the priests','faith in Jesus','Temple sacrifices.','','','c','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-08-13 09:14:54'),(338,'According to Romans, all who were baptized into Christ were also baptized into His','crucifixion','persecution','suffering','death','','','d','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(339,'According to Paul in Philippians, humility means giving consideration to other people’s','wealth','weakness','interests','needs.','','','c','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(340,'In Corinthians, believers are taught to forgive one another in order to','keep Satan from gaining advantage','prevent the wrongdoer from losing his salvation','remove the curse from the offender','discourage the offender from committing more sin.','','','a','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-07-14 14:15:22'),(341,'In Corinthians, Paul stated that by one Spirit we were','free from bondage of sin','united into one church','committee to Christian service','baptized into one body','','','d','','utme','2011',79,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(342,'Paul commended the churches in Macedonia for giving out of their freewill to the','saints','poor','priests','sick.','','','b','','utme','2011',83,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(343,'‘Pay all of  them their dues, taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honour to whom honour is due’. Paul made the statement above to the Church at','Thessalonica','Rome','Corinth','Ephesus.','','','b','','utme','2011',78,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(344,'At the second coming of Christ, those who are alive shall be','bound for life','caught up together with the Lord','separated from the dead','taken to the new Jerusalem','','','b','','utme','2011',81,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(345,'According to James, treatment of brethren at fellowship should not be based on','appearance','sentiments','gender','age.','','','a','','utme','2011',70,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(346,'Peter in his epistle, charged his fellow elders to','take care of their families','be strong in their faith','have compassion on the weak','tend the flock of God.','','','d','','utme','2011',82,'Admin','2016-11-12 12:27:47','2020-08-19 21:11:37'),(347,'The land, the sea and vegetation were created on the','first day','second day','third day','fifth day.','','','c','','wassce','2008',70,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:29'),(348,'God blessed the seventh day and hallowed it because it marked the day that He','completed His work of creation','handed over the earth to Adam','saw all His created work as perfect','rested from His work of creation.','','','d','','wassce','2008',72,'Admin','2016-11-12 12:38:50','2020-07-15 03:50:53'),(349,'Which of the following was not part of the honour done to Joseph when Pharaoh made him a ruler in Egypt?','Joseph was made to address the people','The land of Goshen was given to Joseph','Joseph was dressed in garments of fine linen','A gold chain was put around Joseph’s neck.','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:31'),(350,'What was Moses’ reaction when God called him to liberate his people from Egypt?','He was afraid of being punished for his previous offence','His people would think he was too young to lead them','His people would not listen to him','His father in-law would not allow him to go.','','','c','','wassce','2008',80,'Admin','2016-11-12 12:38:50','2020-08-07 08:29:17'),(351,'God led the Israelites in the wilderness during the day in form of','fire','light','cloud','rainbow.','','','c','','wassce','2008',65,'Admin','2016-11-12 12:38:50','2020-08-08 00:12:55'),(352,'When Moses stayed away for too long on the mountain, the people of Israel','prayed and fasted','embarked on farming','returned to Egypt','made and worshipped idol.','','','d','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-08-13 09:33:04'),(353,'God provided water for the Israelites by asking Moses to strike the rock at trice wilderness of','Rephidium','sin','Massah','Paran.','','','b','','wassce','2008',62,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:35'),(354,'When the Spirit of the Lord departed from Saul','a new spirit entered into him','an evil spirit from God tormented him','he consulted an oracle','he went into hiding.','','','b','','wassce','2008',67,'Admin','2016-11-12 12:38:50','2020-08-07 09:21:53'),(355,'When David spared the life of Saul the second time he took away his','bow and arrow','spear and jar of water','royal crown and armour','spear and iron shield.','','','b','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:36'),(356,'Solomon first applied wisdom granted to him by God at Gibeon by the','establishment of high places in Judah','utterances of proverbs and parables','marriage alliances with foreign nations','judgment between the two harlots.','','','d','','wassce','2008',77,'Admin','2016-11-12 12:38:50','2020-08-13 09:15:24'),(357,'In his reform, King Josiah first attacked the','prostitutes that came around the temple at night','priests that made burnt offerings in the temple','Canaanite divinities - the Baal and Ashera','traders who profaned the temple.','','','c','','wassce','2008',74,'Admin','2016-11-12 12:38:50','2020-08-13 12:57:28'),(358,'A good example of parental responsibility was demonstrated by','Asa','Jeroboam','Joel','Rehoboam.','','','a','','wassce','2008',71,'Admin','2016-11-12 12:38:50','2020-07-14 14:15:39'),(359,'Gomer’s attitude towards her loving husband symbolizes','Hosea’s unfaithfulness to God','Israel’s faithfulness to God','God’s love for Israel','God’s hatred for Israel’s iniquities.','','','b','','wassce','2008',68,'Admin','2016-11-12 12:38:51','2020-08-13 12:58:14'),(360,'The universal nature of God was demonstrated in the salvation of the people of','Joppa','Tarshish','Tekoa','Nineveh.','','','d','','wassce','2008',77,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:42'),(361,'Ahab was condemned for allowing Jericho to be rebuilt although that city had been','under Joshua’s curse','devastated by an earthquake','the scene of unexplained fatal accidents','the site for Canaanite human sacrifice.','','','a','','wassce','2008',82,'Admin','2016-11-12 12:38:51','2020-07-15 14:05:27'),(362,'Amos declared that God hated solemn feasts, songs and sacrifices because the people of Israel were','unjust and unrighteous','unforgiving and unrepentant','despicable and untruthful','luxurious and arrogant.','','','a','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:15:44'),(363,'At Ezekiel’s call he beheld','the love of God','God’s glory','power of God','God’s mercy.','','','b','','wassce','2008',58,'Admin','2016-11-12 12:38:51','2020-08-20 11:18:44'),(364,'In spite of Israel’s faithlessness, Jeremiah saw a ray of hope for them if only they should','forgive one another','repent and return to God','always swear by God','show favour to strangers.','','','b','','wassce','2008',64,'Admin','2016-11-12 12:38:51','2020-08-18 20:42:54'),(365,'Jesus came to John at River Jordan to','proclaim himself as Messiah','disclose himself to John','call some of John’s disciples','receive baptism like others.','','','d','','wassce','2008',69,'Admin','2016-11-12 12:38:51','2020-08-13 13:06:00'),(366,'“Blessed are the peace makers for','theirs is the kingdom of God”','they shall be called sons of God”','they shall inherit the earth”','they shall be comforted”.','','','b','','wassce','2008',60,'Admin','2016-11-12 12:38:51','2020-08-20 11:18:44'),(367,'According to the Mosaic law, the only authority to declare a leper healed was','Jesus Christ','the Emperor','the priest','the elders.','','','c','','wassce','2008',79,'Admin','2016-11-12 12:38:51','2020-08-07 09:21:53'),(368,'Which of the following did not happen immediately after Jesus had yielded up his spirit on the cross?','The curtain of the temple was torn into two','Joseph of Arimathea removed his body for burial','The earth shook, the rocks were split','The tombs of the saints were opened.','','','b','','wassce','2008',57,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:00'),(369,'According to Matthew, the disciples were sent out with the charge to go nowhere among the Gentiles nor enter any town of the','Jews','Samaritans','Israelites','Unbelievers.','','','b','','wassce','2008',65,'Admin','2016-11-12 12:38:51','2020-08-13 09:14:54'),(370,'Which of the following miracles shows Jesus’ power over nature?','Walking on the sea','Healing of the leper','Healing of the woman with issue of blood','Raising of Lazarus from the dead','','','a','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:02'),(371,'The fate that would befall those who do not receive the gospel of Jesus would be','rejection by men','lack of peace in the family','condemnation by the church','condemnation by God.','','','d','','wassce','2008',72,'Admin','2016-11-12 12:38:51','2020-08-13 09:16:44'),(372,'Which, according to Luke, were the last words of Jesus?','“Eli. Eli, lamasabach-thani”','“Father forgive them for they know not what they do”','“Truly, I say to you, today you will be with me in paradise”','“Father unto thy hands I commit my spirit”','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:04'),(373,'The first five disciples that Jesus called as recorded in the Synoptic gospels were','Peter, Andrew, James, John and Levi','Peter, Andrew, James, John and Thomas','Peter, Andrew, James. John and Zebedee','Peter, Andrew, James, John and Judas Iscariot.','','','b','','wassce','2008',79,'Admin','2016-11-12 12:38:51','2020-08-13 13:06:00'),(374,'Peter’s general outlook towards Gentile converts was significantly changed by the conversion of','people of Lydda','the people of Samaria','Simon the magician','Cornelius the centurion.','','','d','','wassce','2008',75,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:06'),(375,'Which Jewish party was bitterly opposed to the disciples for preaching the resurrection of Jesus?','The Pharisees','The Sadducees .','The Zealots','The Sanhedrin.','','','b','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-08-13 13:06:00'),(376,'When Peter was in prison the Church','appealed to the authorities','lived in fear','prayed ceaselessly','fought for his release.','','','c','','wassce','2008',61,'Admin','2016-11-12 12:38:51','2020-08-13 09:14:54'),(377,'The miracles of Jesus in St. John’s Gospel are referred to as signs’ of the','manifestations of Jesus as the Messiah','consuming power of God’s glory','judgment that will come upon unbelievers','second coming of Jesus.','','','a','','wassce','2008',60,'Admin','2016-11-12 12:38:51','2020-08-20 11:18:44'),(378,'Believers according to Jesus in John’s gospel, become his friends, if they imbibe his teaching on','forgiveness','obedience','love','faith.','','','c','','wassce','2008',66,'Admin','2016-11-12 12:38:51','2020-08-18 20:42:53'),(379,'The miracles of Jesus recorded in John’s gospel are called','works','signs','powers','wonders.','','','b','','wassce','2008',79,'Admin','2016-11-12 12:38:51','2020-08-08 00:12:56'),(380,'The result of justification by faith is','divine protection','peace with God','forgiveness of sins','answered prayers.','','','c','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:20'),(381,'Which of the following is the result of Christian baptism?','Fulfilment of all righteousness','Walking in the newness of life','Ability to fast always','Yielding of one’s life to prayer.','','','b','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-08-14 18:59:14'),(382,'Sin that reigns in our mortal bodies makes us obey','one another','rules and regulations','our passions','our rulers.','','','c','','wassce','2008',69,'Admin','2016-11-12 12:38:51','2020-08-13 12:57:28'),(383,'Paul considered himself unfit to be called an apostle because he','did not see Jesus','persecuted the church','worked hard to attain his position','was the least among the believers.','','','d','','wassce','2008',54,'Admin','2016-11-12 12:38:51','2020-08-13 09:14:33'),(384,'Paul says that only the heathen who are led astray by dumb idols could say','“Jesus is Lord!”','“Praise ye the Lord!”','“Hail the messiah!”','“Jesus be cursed!”','','','d','','wassce','2008',71,'Admin','2016-11-12 12:38:51','2020-08-13 09:33:23'),(385,'In the Epistle to Galatians, Christians are children of God through','faith in Christ','keeping of the law','helping the needy','baptism and confirmation','','','a','','wassce','2008',60,'Admin','2016-11-12 12:38:51','2020-08-18 20:42:54'),(386,'Christ demonstrated humility by','riding on an ass to Jerusalem','allowing John to baptize him','taking the form of a servant','eating with sinners','','','c','','wassce','2008',81,'Admin','2016-11-12 12:38:51','2020-08-13 13:05:02'),(387,'Peter admonished Christians to be sober and watchful in order to a void','temptation','God’s wrath','the devourer','damnation','','','a','','wassce','2008',74,'Admin','2016-11-12 12:38:51','2020-07-14 14:16:27'),(388,'New life in Christ means','paying your tithe regularly','helping the poor and the needy','being dead to sin','getting baptized.','','','c','','wassce','2008',56,'Admin','2016-11-12 12:38:52','2020-08-07 09:21:53'),(389,'In Romans, Paul taught that where there is no law, there is no','transgression','peace','reward','punishment','','','a','','wassce','2008',75,'Admin','2016-11-12 12:38:52','2020-08-13 12:58:14'),(390,'The purpose of grace is to','justify the law','cancel the law','fight the law','establish the law','','','b','','wassce','2008',77,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:30'),(391,'In Romans. Paul stressed that the righteousness of God is','faith in the law for all who believe','works of the law for all who believe','fervent prayers by all believers','faith in Jesus Christ for all who believe','','','d','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:31'),(392,'The concept of  forgiveness does not include','reconciliation','restoration','peace','wealth','','','d','','wassce','2008',50,'Admin','2016-11-12 12:38:52','2020-08-07 09:21:53'),(393,'Paul said in Galatians that, before faith came, we were confined under','grace','the law','righteousness','love','','','b','','wassce','2008',73,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:33'),(394,'In his letter to Philemon Paul did not ask him to','grant freedom to his slave Onesimus','allow Onesimus become a servant of God','forgive Onesimus for his earlier misbehaviour','prepare a feast for him.','','','a','','wassce','2008',66,'Admin','2016-11-12 12:38:52','2020-08-02 19:00:19'),(395,'Peter enjoined humility because the humble shall','not be tempted','be blessed','receive God’s grace','have long life.','','','b','','wassce','2008',69,'Admin','2016-11-12 12:38:52','2020-07-14 14:16:35'),(396,'Paul, unhappy with high incidence of idleness among the Thessalonians, commanded them to','assist those brothers who live in Idleness','exhort the busy-bodies to leave the church','ensure that any one who does not work must not eat','regard the lazy ones as enemies','','','c','','wassce','2008',67,'Admin','2016-11-12 12:38:52','2020-08-15 23:15:08'),(397,'The new covenant between God and the Israelites is centered on','religious doctrines','intensive teaching','collective responsibility','individual responsibility.','','','a','','utme','2013',85,'Admin','2016-11-12 12:51:29','2020-08-18 05:20:04'),(398,'The ark that God commanded Noah to build was made of','acacia wood','gopher wood','cedar wood','cypress wood','','','c','','utme','2013',75,'Admin','2016-11-12 12:51:29','2020-08-13 13:06:00'),(399,'During Moses leadership in Israel, he exhibited most importantly, the talent of a','mediator','warrior','seer','preacher.','','','b','','utme','2013',68,'Admin','2016-11-12 12:51:29','2020-08-11 15:38:05'),(400,'Moses ran away from Egypt after killing an Egyptian because he felt that he might be','endangering other Israelites by his actions','killed by the Egyptian mob','imprisoned by the Egyptian security officers','killed by Pharaoh of Egypt.','','','d','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(401,'How did God guide Eleazar in choosing a wife for lsaac?','He caused Rebekah to give him free accommodation','He made Rebekah’s parents willing to release her','He caused His angel to go ahead of him','He revealed to Rebekah before Eleazar’s arrival','','','d','','utme','2013',77,'Admin','2016-11-12 12:51:30','2020-08-13 12:58:14'),(402,'David’s immediate reaction to the news that the hearts of the Israelites have gone after Absalom was to','Weep for Judah','flee to the wilderness','mobilize his army','plead with Absalom','','','c','','utme','2013',82,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(403,'David’s inaction at Ammon’s incest with Tamar showed his','lack of control over his children','excessive love for Ammon','ability to forgive as a leader','wisdom and strength of character','','','a','','utme','2013',85,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(404,'The young man of Egypt took David to the band of the Amalekites because','he was afraid for his life','he sought revenge against his former master','David was kind to him','the spirit of God was working through him.','','','d','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-08-13 06:17:35'),(405,'Because David sought God’s will to pursue the Amalekites \twho had invaded Ziklag, he was rewarded with victory and','many new territories','spoils','many prisoners of war','favour','','','b','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(406,'‘...why then have you not kept watch over your lord the king?...” The question above by David was addressed to','Amasa','Joab','Abishai','Abner.','','','c','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(407,'Solomon’s wisdom surpassed the wisdom of all the people of the East and all wisdom of Egypt because he','prayed and fasted daily','employed the service of seers','judged difficult cases','got his wisdom from God.','','','d','','utme','2013',84,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:06'),(408,'Saul relied on a medium because God did not answer him through','dreams, visions and prophets','inspiration, tambourines and prophets','dreams, urim and prophets','lyre, urim and prophets.','','','c','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(409,'When Naboth refused to exchange his vineyard with King Ahab, Ahab reacted by','taking to prayers and fasting','going to his house vexed and sullen','ordering the killing of Naboth','forcefully taking it from him.','','','d','','utme','2013',78,'Admin','2016-11-12 12:51:30','2020-08-13 09:33:23'),(410,'The sins of Israel during the reign of Ahab consisted of','worship of the king','trampling upon the poor','worship of idols','desecrating the Temple','','','d','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-08-13 12:57:28'),(411,'The book of the law was found in the house of the LORD during the reign of king','Josiah','Ahab','Omri','Hezekiah.','','','c','','utme','2013',90,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(412,'King Josiah was killed by Pharaoh Neco in a battle at','Syria','Meggiddo','Megiddo','Egypt.','','','c','','utme','2013',79,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(413,'The major reason God allowed the Babylonian attack on the city of Jerusalem was to','demonstrate the ability of God to deliver His people from captivity','set a trap for the Babylonians and destroy them','restore the people of Judah and their leaders to the true worship of God','punish the people of Judah and their leaders for their sins.','','','c','','utme','2013',89,'Admin','2016-11-12 12:51:30','2020-08-13 09:33:04'),(414,'When the three Hebrew men refused to worship the King’s image, he commanded that they be','thrown into a furnace','stoned','beheaded','thrown into the lion’s den.','','','c','','utme','2013',84,'Admin','2016-11-12 12:51:30','2020-08-13 09:14:33'),(415,'Jonah’s explanation to the LORD for resisting His first call teaches us that God is','repentant of evil','not ready to act fast','quick to anger','not sincere in His call.','','','c','','utme','2013',76,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(416,'Before his call, Amos was a','herdsman','seer','farmer','prophet.','','','a','','utme','2013',72,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(417,'Amos’ prophecies which were considered as a conspiracy against the northern kingdom were reported to the king by','Micaiah','Amaziah','Hilkiah','Micah.','','','a','','utme','2013',85,'Admin','2016-11-12 12:51:30','2020-08-13 13:05:02'),(418,'How did God help Jeremiah overcome his inability to speak as prophet?','He put out His hands and touched his mouth.','He sent the Seraphim to speak to him.','He gave him a cake of honey to eat.','He touched his mouth with a burning coal.','','','d','','utme','2013',75,'Admin','2016-11-12 12:51:30','2020-08-13 09:33:04'),(419,'Prophet Ezekiel was set upon his feet to hear the LORD speak when','an angel of the LORD lifted him','a voice from heaven commanded him to do so','the Spirit entered into him','He was made to touch the ephod','','','d','','utme','2013',94,'Admin','2016-11-12 12:51:30','2020-08-13 12:57:28'),(420,'According to Jeremiah, the people of Israel were in exile because of their','impatience and immorality','rebellion against Nebuchadnezzar','maltreatment of the poor','unfaithfulness and faithlessness.','','','b','','utme','2013',81,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(421,'‘‘... and many will rejoice at his birth; for he will be great before the Lord...” In the statement above, the angel made this pronouncement because of','Elizabeth’s disbelief because of her bareness','Mary’s holy nature','Zachariah’s fervent prayers','Joseph’s hesitation to marry Mary.','','','a','','utme','2013',80,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(422,'One quality of a good disciple that was exhibited by the first followers of Jesus was','faith','piousness','diligence','resourcefulness.','','','c','','utme','2013',87,'Admin','2016-11-12 12:51:30','2020-08-13 13:06:00'),(423,'“Lord, if you will, you can make me clean.” The statement above was made by the','leper','paralytic','centurion servant','epileptic boy.','','','d','','utme','2013',80,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:06'),(424,'The disciples of Jesus could not heal the boy with epilepsy because they','did not fast','had little faith','were powerless','did not pray.','','','a','','utme','2013',83,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(425,'The seeds that fell among the thorns in the parable of the sower refer to people that heard the word of God but','the evil one snatched it','had no faith to nurture it','the criticism of others quenched it','the cares of the words choked it.','','','d','','utme','2013',87,'Admin','2016-11-12 12:51:30','2020-08-10 23:32:30'),(426,'The promise to those who are persecuted for righteousness sake is that they will','inherit the earth','inherit the kingdom of heaven','see God','be called sons of God.','','','b','','utme','2013',81,'Admin','2016-11-12 12:51:30','2020-08-13 12:57:28'),(427,'According to Peter during the great confession, people believed that Jesus was','the Messiah','a priest','the Son of God','one of the prophets.','','','c','','utme','2013',82,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(428,'‘‘... Behold, your king is coming to you, humble, and mounted on an ass...,” The prophecy in the statement above was fulfilled during Jesus','birth in a manger','transfiguration','triumphal entry','baptism by John','','','d','','utme','2013',85,'Admin','2016-11-12 12:51:30','2020-08-11 15:38:05'),(429,'After His arrest, Jesus was taken to','Pontiphas','Agrippa','Caiaphas','Pilate','','','a','','utme','2013',72,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(430,'According to Mark, the young man that the women saw in Jesus’ tomb told them to go with the disciples and wait for Him in','Bethlehem','Jerusalem','Bethany','Galilee','','','a','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(431,'“He was not the light but was sent to bear witness to the light.” The statement above refers to','Simeon','Jesus','John the Baptist','Peter Barjona','','','b','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-08-18 05:20:04'),(432,'The appointment of deacons became necessary because of the complaint by the','Gentile converts','Hellenists','Pharisees','Sadducees','','','d','','utme','2013',74,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:06'),(433,'According to Paul, before his conversion, he persecuted the church violently to','make it desirable to the Gentiles','purge it','destroy it','have it conform to the Law.','','','d','','utme','2013',82,'Admin','2016-11-12 12:51:31','2020-08-13 12:58:14'),(434,'“Lord, I have heard from many about this man, how much evil he has done to thy saints at Jerusalem...” Ananias’ response above to God’s request for him to meet Saul shows that he','felt that Saul should not be forgiven','felt that Saul should be punished','was not interested in meeting Saul','was afraid to meet Saul.','','','a','','utme','2013',78,'Admin','2016-11-12 12:51:31','2020-08-13 09:33:23'),(435,'“It is necessary to circumcise them, and to charge them to keep the law of Moses.” In response to the Pharisees’ statement above, Peter rebuked them, by saying that God has','made circumcision for only those in leadership','chosen the Israelites among other people','cleansed the Gentiles’ heart by faith','put the yoke upon the Gentiles’ necks.','','','a','','utme','2013',86,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(436,'According to Galatians, judgment is without mercy to one who has shown no mercy, yet mercy triumphs over','tribulation','the law','judgment','punishment.','','','a','','utme','2013',80,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(437,'According to Colossians, the Lord does not wish that any should perish, but that all should','rejoice','be saved','be humble','repent','','','b','','utme','2013',89,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(438,'According to Peter, when Christians humble themselves, God will','protect them','direct their ways','grant them eternal life','exalt them.','','','d','','utme','2013',76,'Admin','2016-11-12 12:51:31','2020-08-10 23:32:30'),(439,'According to Paul in his letter to Philemon, forgiveness should not be by compulsion but by','justification','faith','free will','His grace.','','','b','','utme','2013',84,'Admin','2016-11-12 12:51:31','2020-08-13 13:05:02'),(440,'In Corinthians, Paul said that one can only say Jesus is Lord by','denouncing the law','faith','grace','the Holy Spirit.','','','b','','utme','2013',85,'Admin','2016-11-12 12:51:31','2020-08-13 09:14:54'),(441,'When Christians give freely, God will supply','only for those that give','their needs according to His riches in glory','their needs according to the measure they give','their needs day by day.','','','d','','utme','2013',83,'Admin','2016-11-12 12:51:31','2020-08-20 11:18:44'),(442,'Paul in Timothy urged believers to make supplications, prayers, intercession and thanksgivings for all those who','are in authority','have accepted Christ','have wronged them','are the need','','','c','','utme','2013',85,'Admin','2016-11-12 12:51:31','2020-08-13 13:05:02'),(443,'According to Thessalonians, the second coming of the Lord will be','with the blowing of a trumpet','after scoffers have come','when the elements are dissolved','like a thief in the night.','','','b','','utme','2013',66,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(444,'According to James, when we meet various trails in life, we should','bless God’s name','call upon the name of the Lord','count it all joy','rejoice because the Lord is good.','','','d','','utme','2013',81,'Admin','2016-11-12 12:51:31','2020-08-11 15:38:05'),(445,'“As each has received a gift, employ it for one another, as good stewards of God’s varied grace...” In the statement above, Peter teaches believers in virtue of','hospitality','giving','communion','fellowship.','','','a','','utme','2013',71,'Admin','2016-11-12 12:51:31','2020-08-13 06:17:41'),(446,'What in the creation account, gave man an edge over every other creature?','Other creatures were made for man','Man alone was created in the Image of God','Man had the rare privilege to dwell in Eden','Satan acknowledged his privileged position','','','b','','wassce','2009',79,'Admin','2016-11-12 13:02:28','2020-08-13 09:16:44'),(447,'At Shechem, God appeared to Abram and told him that','he should continue on his journey southward.','he should leave his country and Kindred.','the land would be given to his descendants.','in the land he should build an altar.','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:29','2020-07-14 14:17:31'),(448,'In their dealings with God, Abraham and Sarah learnt the \tfollowing lessons except that God is','able to bless the righteous.','faithful to His promise','all powerful-nothing is too hard for Him.','not in a hurry to carry out His promises.','','','c','','wassce','2009',76,'Admin','2016-11-12 13:02:29','2020-08-20 11:18:44'),(449,'Pharaoh’s horsemen and his army overtook the fleeing Hebrews encamped by the sea at','Migdol.','Etham.','Phiahiroth.','Meriba.','','','c','','wassce','2009',70,'Admin','2016-11-12 13:02:30','2020-08-07 08:29:17'),(450,'The episode of David and Bathsheba, Uriah’s wife was in \tviolation of God’s','sixth commandment.','seventh commandment,','eight commandment.','ninth commandment.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-07-15 13:50:19'),(451,'When the people of Israel received the encouraging report \tgiven by two of the twelve spies, they decided to','stone Moses for taking them out of Egypt.','choose Caleb as their leader and go back to Egypt.','stone the two spies who gave the report.','raise an army to fight the Canaanites.','','','d','','wassce','2009',72,'Admin','2016-11-12 13:02:30','2020-08-18 20:42:54'),(452,'Which of the following tribes accompanied Deborah and Barak to the war against Jabin and Sisera?','Naphtali and Zebulum','Issachar and Reuben','Ephraim and Dan','Judah and Benjamin','','','a','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-08-13 13:05:02'),(453,'On matters of parental responsibility, Samuel could not be commended because he','made his children judges instead of priests.','wanted his children to succeed him.','did nothing to stop his children’s immoral behaviours.','did not care what happened to Israel after his death.','','','c','','wassce','2009',82,'Admin','2016-11-12 13:02:30','2020-08-07 08:29:17'),(454,'Eli, the priest in Shiloh, was condemned because he','allowed his children to deprive God of His share of sacrifice.','allowed the Ark of God to be taken to the battle field','did not take God’s message through Samuel seriously.','officiated at the temple without the assistance of the prophet.','','','c','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-08-13 09:14:33'),(455,'David’s first Contact with Saul was because he was','skillful in playing.','victorious over Goliath.','a man of valour.','a shepherd boy.','','','a','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-08-18 20:42:53'),(456,'David showed Nathan the prophet that he had repented of his sin by','refusing to marry Uriah’s wife.','confessing that he had sinned.','offering to compensate Uriah’s family','making sacrifice to please God.','','','b','','wassce','2009',64,'Admin','2016-11-12 13:02:30','2020-08-18 20:42:53'),(457,'Elijah was a prophet during the reign of','Gideon.','David.','Ahab.','Rehoboam.','','','c','','wassce','2009',67,'Admin','2016-11-12 13:02:30','2020-08-18 20:42:53'),(458,'When God ordered famine on Israel, Elijah was fed by the ravens at','Brook Cherith.','River Jordan.','River Kishon','Mount Carmel.','','','a','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-08-18 20:42:55'),(459,'“The Lord forbid that I should give you the inheritance of my fathers”. The inheritance referred to here is','birth right.','the world.','the kingship.','a vineyard.','','','d','','wassce','2009',61,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:42'),(460,'The king of Judah who suffered in the hands of Nebuchadnezzar was','Jehoachin.','Manasseh.','Josiah.','Zedekiah.','','','d','','wassce','2009',80,'Admin','2016-11-12 13:02:30','2020-08-13 13:06:00'),(461,'The punishment of Israel according to the vision of Jeremiah includes all the following except','occupation of the land by foreigners.','restoration of their kings and priests.','destruction of their flocks and herds.','consumption of their harvest by their enemies.','','','a','','wassce','2009',93,'Admin','2016-11-12 13:02:30','2020-08-13 12:57:28'),(462,'Complete this statement “Holy, Holy, Holy is the Lord of Hosts,','the Seraphim’s bow to His glory”.','the whole earth will sing His glory”.','the whole earth is full of His glory”.','His creatures will rise to praise His Holy name”.','','','c','','wassce','2009',58,'Admin','2016-11-12 13:02:30','2020-08-20 11:18:44'),(463,'When Isaiah saw the Lord in His holiness and glory, he exclaimed','“Blessed is me for 1 am truly holy”.','“Woe is me! For I am lost”','“Blessed be the name of the Lord”.','“I am finished, for I have seen a holy God”.','','','b','','wassce','2009',72,'Admin','2016-11-12 13:02:30','2020-08-08 00:12:56'),(464,'Jeremiah said the people of Judah were in a state of mourning because,','they sinned against God.','their vessels were empty','their farms were destroyed.','there was drought in the land.','','','a','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-08-18 20:42:54'),(465,'The king planned to set Daniel over the whole kingdom because,','he was the most educated of all.','an excellent spirit was in him.','he wanted to favour a foreigner.','Daniel brought information to the king.','','','b','','wassce','2009',67,'Admin','2016-11-12 13:02:30','2020-08-20 11:18:44'),(466,'God spoke through Amos that He would punish Israel for the following sins except that they','sold the righteous for silver.','sold the needy for a pair of shoes.','trampled the head of the poor into the dust.','pursued their brothers with the swords.','','','d','','wassce','2009',68,'Admin','2016-11-12 13:02:30','2020-08-18 20:42:53'),(467,'The first batch of Jewish exiles to rebuild the temple was under the leadership of','Joshua.','Hanani.','Sheshbazzar.','Zerubabel.','','','d','','wassce','2009',66,'Admin','2016-11-12 13:02:30','2020-08-13 09:15:52'),(468,'Which two tribes in Israel led in the rebuilding of the temple after the exile?','Judah and Benjamin','Naphtali and Joseph','Manasseh and Reuben','Judah and Ephraim','','','c','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-08-20 11:18:44'),(469,'After his baptism Jesus began to','proclaim the kingdom of God.','baptize others.','confront religious leaders.','teach in parables.','','','a','','wassce','2009',79,'Admin','2016-11-12 13:02:30','2020-08-20 11:18:44'),(470,'The devout man in Jerusalem whom the Lord promised would see Christ before his death was named','Zechariah.','Joseph.','Stephen','Simeon.','','','d','','wassce','2009',63,'Admin','2016-11-12 13:02:30','2020-07-14 14:17:53'),(471,'Jesus ordered the seventy disciples not to salute any one because','their mission required urgency.','it is not part of their mission to salute people.','they may forget their mission.','salutations to strangers defile the Jews.','','','a','','wassce','2009',64,'Admin','2016-11-12 13:02:30','2020-07-29 13:58:20'),(472,'Jesus teaches, “Let your light so shine before men...” By light Jesus refers to,','the Christian character and virtues in us.','the bright lights at the altar in the church.','the light that shows the right way.','our knowledge of the scripture.','','','a','','wassce','2009',74,'Admin','2016-11-12 13:02:30','2020-08-18 20:42:54'),(473,'“And if anyone will not receive you or listen to your words, shake off the dust from your feet as you leave that house.” This is a sign of','forgiveness','rebuke','acceptance','condemnation.','','','d','','wassce','2009',64,'Admin','2016-11-12 13:02:30','2020-08-13 13:06:00'),(474,'“Foxes have holes and birds of the air have nets; but the son of man has nowhere to lay His head”. By this statement, Jesus meant that His disciples','would not grow rich.','would not enjoy good houses.','had a lot of task ahead.','had a lot of enemies.','','','c','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-07-28 12:17:02'),(475,'The treasures which Jesus wants us to lay in heaven include','generosity and kindness.','love and mercy.','works of righteousness','gold and silver.','','','c','','wassce','2009',71,'Admin','2016-11-12 13:02:30','2020-08-13 12:57:28'),(476,'“No one can serve two masters...” This means that one should not','be idolatrous.','belong to two religions.','worship money.','bean unbeliever.','','','a','','wassce','2009',62,'Admin','2016-11-12 13:02:30','2020-08-20 11:18:44'),(477,'Whoever drinks the water Jesus gives will never thirst? What is this water?','The spirit of God.','Holy and anointed water.','The word of God.','Law of God.','','','a','','wassce','2009',59,'Admin','2016-11-12 13:02:31','2020-08-18 20:42:53'),(478,'Jesus said “I am the bread of life; he who comes to me shall not hunger...” ‘Bread of life’ in this context means the','body of Jesus Christ.','manna given to the Israelites.','holy bread of life.','spiritual food through Jesus.','','','d','','wassce','2009',67,'Admin','2016-11-12 13:02:31','2020-08-15 23:15:08'),(479,'John’s summary of God’s love for the world is that He','sent his son to judge the world righteously.','created man in his own image with authority.','made light that the world might walk in it.','gave his only son to save all believers.','','','d','','wassce','2009',53,'Admin','2016-11-12 13:02:31','2020-08-13 12:57:28'),(480,'According to John’s Gospel, Lazarus was from','Bethany','Galilee.','Jerusalem.','Bethsaida.','','','a','','wassce','2009',70,'Admin','2016-11-12 13:02:31','2020-08-20 11:18:44'),(481,'Jesus said to Martha, “...and whoever live and believes in me shall never die...” Jesus talks about','physical death.','spiritual death.','emotional death.','natural death.','','','b','','wassce','2009',64,'Admin','2016-11-12 13:02:31','2020-08-18 20:42:54'),(482,'The meeting of the Christian Council of Jerusalem was chaired by','Peter.','Paul.','James.','John.','','','a','','wassce','2009',78,'Admin','2016-11-12 13:02:31','2020-08-13 13:06:00'),(483,'Paul wished to retain Onesimus with him but did not do so because','Onesimus was unwilling to stay with him.','he was afraid of Philemon’s reaction.','he did not like such a favour to be imposed on Philemon.','Onesimus would soon be released from jail.','','','c','','wassce','2009',64,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:05'),(484,'Paul and his associates gave the Thessalonian believers an \timportant example to imitate. This example was to','be ready to help the poor always','toil, labour and work to earn a living','depend on foreign aids for sustenance.','suffer imprisonment without complaint.','','','b','','wassce','2009',55,'Admin','2016-11-12 13:02:31','2020-08-18 20:42:53'),(485,'Peter urged all Christians to endure sufferings in faith conscious of the fact that','Jesus, himself also resisted suffering','the devil could lure them from faith with suffering.','only the physical body is affected.','suffering is temporary and leads to eternal glory.','','','d','','wassce','2009',69,'Admin','2016-11-12 13:02:31','2020-08-18 20:42:55'),(486,'Paul’s teaching in Colossians on love, respect and obedience concerns','Christian giving.','family relationship.','master servant relationship.','Christian relations with their enemies.','','','b','','wassce','2009',77,'Admin','2016-11-12 13:02:31','2020-08-13 09:33:04'),(487,'According to Peter, God set up the state for the purpose of','silencing the ignorance of foolish men.','collecting appropriate taxes from its citizens','carrying out appropriate sanctions for the guilty','ensuring the protection of its citizens','','','d','','wassce','2009',56,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:09'),(488,'In Paul’s epistle to the Thessalonians, any Christian living \tin idleness should be','thrown out of the Church.','looked at as an enemy.','sympathized with','avoided by the others.','','','d','','wassce','2009',67,'Admin','2016-11-12 13:02:31','2020-08-18 20:42:54'),(489,'The two major obstacles against Abraham’s hope for a son were','impotency and old age','faithlessness and unbelief.','old age and barrenness.','sin and doubt.','','','b','','wassce','2009',65,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:11'),(490,'The theme justification by faith can only be achieved through','sacrifices to Jesus.','resurrection of Jesus.','redemptive power of Jesus.','response of angels to Jesus.','','','c','','wassce','2009',74,'Admin','2016-11-12 13:02:31','2020-08-14 18:59:14'),(491,'According to Paul in Romans, if it is the adherents of the law who are to be the heirs of Abraham then faith in Jesus is','null and void.','not attainable','.     \t\t\t\\nbeyond the reach of Gentiles','transgression of the law.','','','a','','wassce','2009',68,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:13'),(492,'“Your blood be upon your heads! I am innocent. From now on I will go to the Gentiles.” This was Paul’s utterance at','Antioch.','Corinth.','Lystra.','Ephesus.','','','d','','wassce','2009',73,'Admin','2016-11-12 13:02:31','2020-08-13 13:06:00'),(493,'The preaching of the resurrection of Jesus by his disciples \twas opposed by the','Jews.','Elders.','Sadducees.','Pharisees.','','','c','','wassce','2009',72,'Admin','2016-11-12 13:02:31','2020-08-13 13:06:00'),(494,'The first missionary journey was started by Paul and','Judas','.      \\nBarabbas.','Timothy.','Barnabas.','','','d','','wassce','2009',62,'Admin','2016-11-12 13:02:31','2020-07-14 14:18:16'),(495,'During the election to replace Judas among the twelve, Peter quoted from the book of','Joel.','Psalms.','Isaiah.','Ezekiel.','','','b','','wassce','2009',77,'Admin','2016-11-12 13:02:31','2020-08-18 20:42:54'),(496,'What was Herod’s reaction when he heard the news about Jesus’ birth?','He sent gifts','He was excited','He was troubled','He became calm','','','c','','utme','2015',73,'Admin','2016-11-12 13:28:12','2020-07-14 14:18:18'),(497,'“....... Behold, I will bring evil upon you; I will utterly sweep you away .....” Elijah pronounced destruction on Ahab with the statement above for his sin of','the killing of God’s prophets','worship of other gods','going to war against Ramoth-gilead','greed, covetousness and murder','','','a','','utme','2015',68,'Admin','2016-11-12 13:28:14','2020-08-20 11:18:44'),(498,'The ruler of the synagogue whose child Jesus raised to life was','Zebedee','a widow','Jairus','a centurion','','','c','','utme','2015',69,'Admin','2016-11-12 13:28:14','2020-08-13 13:06:00'),(499,'According to Amos, true religion entails','engaging in sacrifices and burnt offerings','being just and righteous','fasting and praying always','engaging in holy feasts and assemblies','','','b','','utme','2015',75,'Admin','2016-11-12 13:28:14','2020-08-18 05:20:04'),(500,'Paul in Romans said that the righteousness of God has been manifested through faith in Jesus Christ for','the exaltation of the authority','the cleansing of the sinners','the dead in Christ','all those who believe','','','d','','utme','2015',68,'Admin','2016-11-12 13:28:14','2020-08-13 09:16:44'),(501,'“I tell you, if these were silent, the very stones would cry out.” Jesus’ statement above was made when','He was rebuked by the Pharisees for eating with sinners','the scribes and the chief priest came to arrest Him','He consoled a woman on His way to the cross','the Pharisees asked Him to rebuke His disciples','','','d','','utme','2015',76,'Admin','2016-11-12 13:28:15','2020-08-18 05:20:04'),(502,'Before Moses brought the Israelites to meet God on Mount Sinai, he charged them to','touch the mountain at the sight of smoke','ensure they eat very well','wash the garments and be consecrated','mate with their wives for three days','','','c','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:30'),(503,'In His teaching about Himself, Jesus said the hireling is not a good shepherd because he','leaves the sheep and flees at the sight of danger','owns the sheep but does not care for them','cares for the sheep but does not discipline them','is the gate-keeper who shuts the sheep out','','','a','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-08-20 11:18:44'),(504,'God displayed His supremacy when Ahab was king during \tthe','incidence of Naboth’s vineyard','war with Ramoth-gilead','inciting of Jehoshaphat against him','contest of Mount Carmel','','','d','','utme','2015',67,'Admin','2016-11-12 13:28:15','2020-08-13 12:58:14'),(505,'In his teaching on effective prayer, James said that the prayer of faith would','influence the authority','heal and cleanse sins','ensure salvation for the sick','enhance commitment to church','','','b','','utme','2015',58,'Admin','2016-11-12 13:28:15','2020-07-23 10:07:46'),(506,'Paul in Thessalonians declared that at the second coming \tof the Lord, those who are alive will not precede those that are','ignorant','condemned','asleep','faithful','','','c','','utme','2015',54,'Admin','2016-11-12 13:28:15','2020-08-13 09:33:04'),(507,'When Ezekiel ate the scroll that was given to him his call. it signified that','God would always go before him','his sins were forgiven','he would never be hungry','he was filled with God’s word','','','d','','utme','2015',54,'Admin','2016-11-12 13:28:15','2020-08-08 00:12:56'),(508,'“ ..... I will surely tear the kingdom from you and will give it to your servant .....” An unwise decision of Solomon that resulted in God making the pronouncement above was his','dependence on other nations for supplies','policy of forced labour','neglect of God for other gods','heavy taxation on the people','','','c','','utme','2015',61,'Admin','2016-11-12 13:28:15','2020-08-13 12:58:14'),(509,'God fed the Israelites with Manna at the wilderness of','Zin','Elim','Sinai','Sin','','','d','','utme','2015',65,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:36'),(510,'“The very stone which the builders rejected has become the head of the corner” The statement above in Peter was directed to those who','did not believe in Jesus’ preciousness','built the Temple of Jerusalem','don’t offer spiritual sacrifice','are hard hearted against Jesus Christ','','','d','','utme','2015',68,'Admin','2016-11-12 13:28:15','2020-08-13 09:15:52'),(511,'A good example of parental responsibility was demonstrated by','Samuel','Eli','Asa','David','','','c','','utme','2015',61,'Admin','2016-11-12 13:28:15','2020-08-13 12:57:28'),(512,'Why did Pilate send Jesus to Herod during the trial?','Jesus, as a Galilean was under Herod’s jurisdiction','Pilate had no power to pass the death sentence','Herod’s court was the last point before crucifixion','Herod had longed to see Jesus perform miracles','','','a','','utme','2015',80,'Admin','2016-11-12 13:28:15','2020-07-14 14:18:39'),(513,'Who was the king that granted Nehemiah permission to go and rebuild Jerusalem?','Darius','Nebuchadnezzar','Artaxerxes','Cyrus','','','c','','utme','2015',67,'Admin','2016-11-12 13:28:15','2020-08-07 08:29:17'),(514,'“Shall l pursue after this band? Shall l overtake them?” David’s dependence on God for direction is depicted in the statement above when','Absalom had revolted against him','Saul was within his grasp','the Amalekites had raided Ziklag','he was to go against Goliath','','','c','','utme','2015',64,'Admin','2016-11-12 13:28:15','2020-08-13 09:15:52'),(515,'A parable that teaches a lesson on the demands of the kingdom is that of the','lost coin','Weeds','Samaritan','prodigal son','','','c','','utme','2015',62,'Admin','2016-11-12 13:28:15','2020-08-13 09:16:44'),(516,'Paul admonished the Romans to live a new life in Christ by yielding themselves to God as men who','have been brought from death to life','will meet Christ in God’s Kingdom','will receive judgment on the last day','have suffered for the sake of the gospel','','','a','','utme','2015',58,'Admin','2016-11-12 13:28:15','2020-08-13 13:05:02'),(517,'An action that demonstrated Solomon’s wisdom was his','judgment of the prostitute’s child','reliance on a medium','alliance with other nations','taxation policy for his building works','','','a','','utme','2015',76,'Admin','2016-11-12 13:28:15','2020-08-13 13:06:00'),(518,'According to Corinthians, Paul while defending himself advised believers to boast only of the things that','exhibit their authority','show their weakness','display their exaltation','depict their righteousness','','','d','','utme','2015',74,'Admin','2016-11-12 13:28:15','2020-07-15 14:05:27'),(519,'The most important aspect of the religious reforms of King Josiah was the','renewal of the covenant','cleaning of the Temple','discovery of the tomb of the man of God','discovery of the book of the law','','','d','','utme','2015',66,'Admin','2016-11-12 13:28:15','2020-08-13 12:58:14'),(520,'Cornelius who was converted and baptized by Peter was a','member of the Sanhedrin','centurion','Gentile who persecuted the church','scribe','','','b','','utme','2015',78,'Admin','2016-11-12 13:28:15','2020-07-29 13:58:20'),(521,'David was successful as a leader in Israel because','he submitted to God’s guidance','of his training as a solider','of the love of his people','of his life as a shepherd','','','a','','utme','2015',62,'Admin','2016-11-12 13:28:15','2020-08-13 09:33:04'),(522,'The action that portrayed Moses as a leader of the Israelites was his','request to Pharaoh to spare Israelite’s sons','disobedience to Pharaoh and escape','killing of an Egyptian who fought with a Hebrew','protection of the daughter of Jethro','','','c','','utme','2015',63,'Admin','2016-11-12 13:28:16','2020-08-13 13:05:02'),(523,'“How is it that you have agreed together to tempt the spirit of the Lord ....” The statement above was made in reference to the greed of','Gehazi and Naaman','Ahab and Jezebel','Judas and scribes','Ananias and Sapphira','','','d','','utme','2015',59,'Admin','2016-11-12 13:28:16','2020-07-23 10:07:47'),(524,'The king who captured and drove the Israelites into exile during the reign of Jehoiachin was','Nebuchadnezzar','Darius','Cyrus','Artaxerxes','','','a','','utme','2015',66,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:58'),(525,'Nebuchadnezzar decreed that all his subjects should worship the image he had set up whenever they','desired something from him','saw him stand before it','looked upon it','heard the sound of music','','','d','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-08-13 09:33:23'),(526,'“The Son of man must suffer many things, and be rejected by the elders .....” Jesus made the statement above after He','cleansed the Temple','demanded to know who people thought He was','taught on the Mount','was asked by Pilate if He was the King of the Jews','','','b','','utme','2015',65,'Admin','2016-11-12 13:28:16','2020-07-14 14:18:59'),(527,'How old was Abram when God appeared to him the second time?','105 years','75 years','99 years','85 years','','','c','','utme','2015',70,'Admin','2016-11-12 13:28:16','2020-08-04 17:25:42'),(528,'“Leaves the dead to bury their own dead ....” Jesus’ statement above to the man He asked to follow Him was indicative of','His power over death','His desire to save the man','the futility of life','the cost of discipleship','','','d','','utme','2015',73,'Admin','2016-11-12 13:28:16','2020-08-03 05:11:33'),(529,'Paul in Romans advised believers to respect those in authority to avoid God’s wrath and also for the sake of','conscience','Christ','faith','others','','','a','','utme','2015',60,'Admin','2016-11-12 13:28:16','2020-08-04 10:36:44'),(530,'“What is this conversation which you are holding with each other ...” Jesus made the statement above to','Cleopas and the other disciple when','they were on their way to Emmaus','He was about to be arrested','they were gathered in a room after His resurrection','','','a','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-08-13 09:33:23'),(531,'A key requirement for healing as exemplified by the disciple’s inability to heal the epileptic boy is','righteousness','power','humility','Faith','','','b','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:04'),(532,'According to Paul in Philippians, Jesus demonstrated humility when He','had pity on the possessed man','likened Himself to God','forgave those who crucified Him','took the form of man','','','d','','utme','2015',78,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:05'),(533,'“Holy, holy, holy is the Lord of host ....” The statement above was made in reference to the call of','Ezekiel','Jeremiah','Amos','Isaiah','','','d','','utme','2015',62,'Admin','2016-11-12 13:28:16','2020-07-23 10:07:46'),(534,'For obeying His word, God rewarded Shiphrah and Puah with','families','positions','servants','wealth','','','a','','utme','2015',67,'Admin','2016-11-12 13:28:16','2020-08-13 13:05:02'),(535,'In his teaching on Spiritual gifts in Corinthians, Paul said that all gifts are inspired by','the same Spirit','prayer','the individual’s ability','grace','','','a','','utme','2015',73,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:08'),(536,'When David’s son Absalom rebelled against him, David was forced to','flee from Jerusalem','abdicate the throne','divide his kingdom','surrender to him','','','a','','utme','2015',72,'Admin','2016-11-12 13:28:16','2020-08-13 09:15:52'),(537,'“Go and stand in the temple and speak to the people all the words of this life.” The angel’s statement above to Peter was after','the murmurings of the Hellenists','his release from prison','his vision of eating unclean meat','he received the Holy Spirit','','','b','','utme','2015',53,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:10'),(538,'In His sermon on the Mount, Jesus discouraged His listeners from laying up treasures on earth because','it would create enmity','they would not be respected','thieves would steal them','the earth would pass away','','','d','','utme','2015',71,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:11'),(539,'Paul returned Philemon’s slave back to him, to ensure that','Philemon forgave and accepted the slave','the slave can complete his service time','he would be welcome when he left prison','he could boast of Philemon’s obedience','','','b','','utme','2015',56,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:12'),(540,'One of the prophets that prophesied hope for Israel in spite of God’s promise of punishment was','Amos','Jeremiah','Obadiah','Hosea','','','b','','utme','2015',72,'Admin','2016-11-12 13:28:16','2020-08-13 13:05:02'),(541,'The church that was commended for giving even when in extreme poverty was in','Galatia','Corinth','Macedonia','Thessalonica','','','d','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-08-13 12:57:28'),(542,'“........ I am the Lord, and there is no other, besides me \tthere is no God....” God’s statement above through Isaiah depicts','assurance to Isaiah of His existence','Israel’s acceptance of His Supremacy','His divine nature','His sovereignty','','','c','','utme','2015',74,'Admin','2016-11-12 13:28:16','2020-08-13 09:14:33'),(543,'Believers today are partakers of the New Covenant through','partaking in baptism by immersion','the gift of the spirit','adherence to all the sacraments','obedience to church leadership','','','b','','utme','2015',55,'Admin','2016-11-12 13:28:16','2020-07-14 14:19:22'),(544,'God’s message through Jonah’s was to the people of','Joppa','Tarshish','Samaira','Nineveh','','','d','','utme','2015',68,'Admin','2016-11-12 13:28:16','2020-08-13 09:33:23'),(545,'Amos is often referred to as a prophet of','doom','love','hope','justice','','','a','','utme','2015',69,'Admin','2016-11-12 13:28:16','2020-08-20 11:18:44'),(546,'On the fourth day, God created the sun, moon and stars for the following purposes except','to separate the day from the night.','for signs of seasons, days and years.','to give light upon the earth.','to dry up flood from the face of the earth.','','','a','','wassce','2010',78,'Admin','2016-11-12 13:36:18','2020-08-18 20:42:55'),(547,'Which of the following rivers flowed out of Eden to water \tits garden? River','Abana','Pharpar','Pishon','Nile','','','c','','wassce','2010',70,'Admin','2016-11-12 13:36:21','2020-08-13 06:17:41'),(548,'The wife of Moses was called','Rebecca.','Rachel.','Zipporah.','Deborah','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:21','2020-08-07 08:29:17'),(549,'When Joseph was sent to his brothers, he met them pasturing at','Hebron.','Bethel.','Beersheba','Dothan','','','d','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:28'),(550,'How old was Joshua before he died?','95 years','98 years','110 years','111 years','','','c','','wassce','2010',62,'Admin','2016-11-12 13:36:21','2020-08-13 09:16:44'),(551,'Why was Saul asked to destroy the Amalekites?','They were worshipping false gods','They opposed the Israelites when they left Egypt','They did not assist the Israelites','God did not like the Amalekites','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:31'),(552,'The first king of Israel lost his throne because he','was a weak king.','knew little about governance.','lost the support of Yahweh.','was irresponsible.','','','d','','wassce','2010',75,'Admin','2016-11-12 13:36:21','2020-08-18 20:42:55'),(553,'During the Ammonite war Uriah disobeyed King David by refusing to go to his house to sleep because','it was wrong to go home drunk.','his wife would regard him as a coward.','it would be unpatriotic to break military vow.','he suspected that the king had lost interest in the battle.','','','c','','wassce','2010',74,'Admin','2016-11-12 13:36:21','2020-08-18 20:42:54'),(554,'When Abner wanted to transfer his allegiance to David, the latter gave him the condition to','openly submit to Joab.','convince all Israel to come over to David.','restore his wife Michal to him.','slay Ishbosheth. Saul’s successor.','','','c','','wassce','2010',58,'Admin','2016-11-12 13:36:21','2020-08-20 11:18:44'),(555,'God said to Solomon in a dream, <em>“Ask what I shall give you”</em>. What did Solomon ask for?','Power and authority','Great wealth and riches','Stable and long term in office','An understanding mind','','','d','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:36'),(556,'Solomon showed lack of wisdom when he','put up temples for the gods of his wives','married many wives with children','invited the Queen of Sheba','gave out judgment to two harlots.','','','a','','wassce','2010',65,'Admin','2016-11-12 13:36:21','2020-08-13 12:58:14'),(557,'Solomon told Hiram, King of Tyre that he had decided to build a temple for the Lord because','the Lord had given him peace and all good things.','his father, David, never intended to build one.','he wanted to force Hiram to come to his aid.','Hiram had entered into a marriage alliance with his father.','','','a','','wassce','2010',66,'Admin','2016-11-12 13:36:21','2020-08-13 13:06:00'),(558,'Elijah destroyed the prophets of Baal','to oppose Baal worship.','as an act of revenge.','as an act of sacrifice.','to shame Jezebel.','','','a','','wassce','2010',61,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:39'),(559,'Who was the king who reintroduced the Passover feast in Israel?','Jeroboam','Asa','Josiah','Rehoboam','','','c','','wassce','2010',77,'Admin','2016-11-12 13:36:21','2020-08-13 12:58:14'),(560,'Who was the prophet responsible for the re-building of the Temple during the exile?','Ezra','Isaiah','Jeremiah','Ezekiel','','','a','','wassce','2010',70,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:41'),(561,'Which of the following prophets taught that Yahweh was merciful?','Isaiah','Hosea','Amos','Ezekiel','','','b','','wassce','2010',72,'Admin','2016-11-12 13:36:21','2020-08-13 09:33:23'),(562,'Daniel was delivered from the lion’s den because','of his faith in God’s power.','of the king’s prayers.','he was able to charm the lions.','the lions were kind to him.','','','a','','wassce','2010',76,'Admin','2016-11-12 13:36:21','2020-08-13 12:57:28'),(563,'The person who discovered the book of law in the sanctuary during the reign of Josiah was','Zedekiah','Huldah.','Hilkiah','Jeremiah.','','','c','','wassce','2010',67,'Admin','2016-11-12 13:36:21','2020-07-14 14:19:44'),(564,'According to Amos’ prophecy, the “Day of the Lord” to the Israelites would be a day of','victory over enemies','happiness.','doom.','national triumph.','','','c','','wassce','2010',78,'Admin','2016-11-12 13:36:22','2020-07-14 14:19:45'),(565,'Isaiah said that when Israel spread forth their hands, God would hide his face because they were','making many prayers','offering vain sacrifices.','worshipping God with their hearts.','observing elaborate feasts.','','','b','','wassce','2010',58,'Admin','2016-11-12 13:36:22','2020-08-13 09:33:04'),(566,'From Luke’s account of the baptism of Jesus, which of the following happened before the voice was heard?','John was reluctant to baptize Him.','John called Jesus the Lamb of God.','Jesus arrived with Peter, James and John','The Holy Spirit descended upon Jesus.','','','d','','wassce','2010',88,'Admin','2016-11-12 13:36:22','2020-08-18 20:42:55'),(567,'Before their first encounter with Jesus, Peter and Andrew were','preachers.','tax collectors.','fishermen.','tent makers.','','','c','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-08-18 20:42:55'),(568,'By the action of the Good Samaritan, Christians are encouraged to','go out to the streets and look for someone to help.','always travel with enough money in case the need arises to help.','show compassion and render help to the needy.','avoid travelling on lonely roads where armed robbers could attack.','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:22','2020-08-13 09:33:23'),(569,'The <em>lost sheep</em> and the <em>lost coin</em> share the following except that','both of them are lost and need to be found','it is their owners’ responsibility to look for them.','the coin, may not know that it is lost.','their owners rejoice when they are found.','','','a','','wassce','2010',75,'Admin','2016-11-12 13:36:22','2020-08-20 11:18:44'),(570,'The parable of the rich man and Lazarus indicates that','poverty is a mark of righteousness.','death is a leveler for rich and poor','only poor people will die physically.','all rich men are going to hell fire.','','','b','','wassce','2010',60,'Admin','2016-11-12 13:36:22','2020-08-20 11:18:44'),(571,'In one of the resurrection appearances Jesus asked his disciples, whether they had anything to eat as he','was hungry after three days in the grave without food.','suspected that the disciples stock may have finished','wanted to prove to them that he was not a ghost.','wanted to replenish the food stuff.','','','b','','wassce','2010',61,'Admin','2016-11-12 13:36:22','2020-08-20 11:18:44'),(572,'By introducing Jesus as the Lamb, John was pointing to','Jesus’ sacrificial death.','Jesus’ miraculous healing.','the Jewish yearly sacrifices.','the priestly function of Jesus','','','a','','wassce','2010',86,'Admin','2016-11-12 13:36:22','2020-08-14 18:59:14'),(573,'St. John refers to Jesus’ miracles as ‘signs’ because they convey the following ideas except','acceptance of Jesus as son of God.','proofs of the kingdom of God.','faith in Jesus as the means to eternal life.','demand for more wonders.','','','d','','wassce','2010',61,'Admin','2016-11-12 13:36:22','2020-08-13 13:05:02'),(574,'Apart from the miracles at the wedding feast, another miracle of Jesus at Cana in Galilee was','feeding the four thousand.','healing the noble man’s son.','healing of a man born blind','healing a paralytic man.','','','d','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-08-15 23:15:08'),(575,'At whose well did Jesus meet the Samaritan woman?','Abraham','Isaac','Jacob','Joseph','','','c','','wassce','2010',66,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:05'),(576,'The lame man who was healed at the pool of Bethizatha was charged by the Jews for breaking the law of the Sabbath \tbecause he','consulted Jesus on the Sabbath day.','was carrying his pallet on a Sabbath day.','was on a journey on a Sabbath day.','was seen with Jesus on a Sabbath day.','','','b','','wassce','2010',74,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:06'),(577,'The descent of the Holy Spirit on the day of  Pentecost was prophesied by','Amos.','Joel.','David.','Ezekiel.','','','b','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-08-18 05:20:04'),(578,'When the apostles in Jerusalem heard that Samaria had received the gospel, they sent to them','Mark and Barnabas.','Peter and John.','Paul and John.','Peter and Paul.','','','b','','wassce','2010',85,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:07'),(579,'The conversion of the Ethiopian eunuch confirms the','universality of the gospel.','work of the Apostles.','work of Philip in Samaria','the love of God for the eunuch.','','','a','','wassce','2010',62,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:08'),(580,'After his conversion, Paul was introduced to the disciples in Jerusalem by','Peter','Ananias.','Barnabas.','Philip','','','c','','wassce','2010',67,'Admin','2016-11-12 13:36:22','2020-08-18 20:42:55'),(581,'Before Barnabas and Saul were sent on missionary journey, the elders, laid hands on them. The laying on of  hands signifies','confirmation.','selection.','commissioning.','protection','','','c','','wassce','2010',75,'Admin','2016-11-12 13:36:22','2020-08-13 09:14:54'),(582,'The man who delivered judgment of the Jerusalem Council on the admission of Gentiles into the Church was','Peter.','Paul.','Barnabas.','James.','','','d','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:11'),(583,'Why according to Paul must Christians be subject to civil authority?','To receive God’s approval','To avoid God’s wrath','God has commanded it','It is an Old Testament law','','','b','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-08-13 12:58:14'),(584,'In the Epistle to the Romans, justification is received through','faith in Jesus.','moral uprightness','observance of the law.','giving of alms','','','a','','wassce','2010',73,'Admin','2016-11-12 13:36:22','2020-08-13 13:06:00'),(585,'By saying that no human being will be justified in the sight of God by works: Paul meant that','the mosaic law was useless in ensuring justification for man.','the law had been weakened in human flesh.','knowledge of sin came through the law.','Moses who gave the law was not justified by the law.','','','b','','wassce','2010',80,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:15'),(586,'Paul’s greatest writing about spiritual gift is found in his letter to the','Galatians.','Ephesians.','Romans.','Corinthians','','','d','','wassce','2010',83,'Admin','2016-11-12 13:36:22','2020-08-13 13:06:00'),(587,'In Corinthians, Paul cited all the following resurrection appearances of Jesus except','Cephas.','The Twelve.','Mary Magdalene','James.','','','d','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-08-20 11:18:44'),(588,'According to Peter, a Christian should exercise his freedom by','doing what is right.','claiming his freedom at all cost.','enduring pain while suffering.','using it as a pretext for evil.','','','a','','wassce','2010',77,'Admin','2016-11-12 13:36:22','2020-08-20 11:18:44'),(589,'In which of the following ways did the Philippians share in Paul’s suffering while in prison?','Appealing for the release of Paul','Sending him relief materials','Continuing in prayer for him','Remaining in partnership with him in receiving.','','','b','','wassce','2010',64,'Admin','2016-11-12 13:36:22','2020-08-20 11:18:44'),(590,'What advice did Peter give to the elders of the church in their relationship with the younger members?','Work as if being under external constraint','Work without a domineering spirit','Work with a desire for material gains','Control their flocks with firm hands','','','b','','wassce','2010',76,'Admin','2016-11-12 13:36:22','2020-08-13 09:14:54'),(591,'In Philippians, Paul taught that Jesus ‘humility and death on the cross earned Him','salvation for Israel.','adoption as son of God.','exaltation as Lord.','eternal life in the kingdom.','','','c','','wassce','2010',72,'Admin','2016-11-12 13:36:22','2020-07-14 14:20:21'),(592,'Why did Paul wish to retain Onesimus?','To protect him from persecution','Christianity was opposed to slavery','Philemon had earnestly requested that from Paul','To serve him during his imprisonment','','','b','','wassce','2010',71,'Admin','2016-11-12 13:36:22','2020-08-13 09:15:52'),(593,'James teaches that the man who shall be blessed is he who','hears the word of God.','knows the law perfectly.','does the word he hears.','teaches the word of God well.','','','c','','wassce','2010',73,'Admin','2016-11-12 13:36:23','2020-08-13 09:15:24'),(594,'Through God the Christian is no longer a slave but a son, and if a son then','a master.','a redeemed.','an heir.','a beneficiary.','','','c','','wassce','2010',69,'Admin','2016-11-12 13:36:23','2020-08-13 09:16:44'),(595,'Peter recommends submission to the civil authority so as to','silence the ungodly.','encourage the believers.','promote faith in God.','live as free men.','','','a','','wassce','2010',80,'Admin','2016-11-12 13:36:23','2020-08-13 12:58:14'),(596,'What was God’s purpose in creating man?','To be master of all creation','To help Him look after the garden','To name the things He created','To multiply and fill the earth','','','d','','utme','2010',89,'Admin','2016-11-12 13:46:53','2020-08-19 06:10:53'),(597,'Isaac’s prayer to God for his barren wife showed that he','truly loved her','sincerely loved his God','had faith in God','was tired of being childless','','','c','','utme','2010',80,'Admin','2016-11-12 13:46:54','2020-08-19 06:10:53'),(598,'In God’s covenant with Israel, the central theme was','restoration','circumcision','obedience','salvation','','','c','','utme','2010',91,'Admin','2016-11-12 13:46:54','2020-08-19 06:10:53'),(599,'‘Who am I that I should go to Pharoah......’ When Moses resisted God’s call with the state¬ment above, it portrayed his','stubbornness','incompetence','lack of strength','lack of eloquence','','','d','','utme','2010',82,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(600,'What was Samson’s major achievement as Israel’s leader?','He suppressed the Philistines','He captured the city of Jericho','He saved the Israelites from the Amorites','He secured permanent independence for Israel','','','a','','utme','2010',75,'Admin','2016-11-12 13:46:55','2020-08-18 05:50:36'),(601,'God guided the Israelites on their way from Egypt to the Promised Land by','the work of two angels','dividing the Red Sea','a pillar of cloud and a pillar of fire','miracles that gave them direction on the way','','','d','','utme','2010',80,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(602,'‘Deal gently for my sake with the young man Absalom.’ David’s statement above exhibited his','indulgent love for his son','willingness to forgive his competitors','desire to punish Absalom himself','high level of parental control','','','a','','utme','2010',80,'Admin','2016-11-12 13:46:55','2020-08-18 05:50:36'),(603,'How did king Asa prove to be a godly king?','He killed all the prophets of Baal at Mount Carmel.','He saved Judah from the Philistine menace','He instituted spiritual reforms that removed all idols and prostitution in the land.','He made the worship of Yahweh mandatory for every Jew and sojourner.','','','c','','utme','2010',83,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(604,'The Hebrew midwives who obeyed God rather than Pharaoh were blessed with','favour from all the Israelites','long life in Canaan','resources','families','','','d','','utme','2010',89,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(605,'When Saul disobeyed God’s command, Samuel rebuked him by saying that','the sword would never depart from his house','to obey was better than sacrifice','he should fear the LORD and obey the people’s voice.','though he was little, yet he was the head.','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(606,'David’s behaviour after Prophet Nathan accused him of murder and adultery showed his','justification','repentance','greed','righteousness','','','b','','utme','2010',93,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(607,'How did King Solomon demonstrate his wisdom in settling the dispute over the ownership of a baby by the two \\nProstitutes?','He interrogated them for seven days until the truth was discovered.','He interrogated them for only three days and the truth was revealed','He asked them to divide the child into two and the mother was known.','He threatened to give the child to a neutral woman and the mother was known.','','','c','','utme','2010',92,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(608,'The prophet who made known the imminent divi¬sion of the kingdom of Israel during Solomon’s reign was','Jehu','Ahijah','Elisha','Elijah','','','b','','utme','2010',91,'Admin','2016-11-12 13:46:55','2020-08-18 05:50:36'),(609,'Naaman’s leprosy was transferred to Gehazi be¬cause Gehazi was','ambitious','anxious','covetous','contemptuous','','','c','','utme','2010',68,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(610,'Obadiah who was m charge of Ahab’s house hold demonstrated reverence for the LORD by','giving Elijah the bull for the sacrifice on Mount Carmel.','rebuking Ahab and Jezebel for their evil deeds','hiding a hundred prophets of God from Jezebel’s wrath.','helping Elijah to kill the prophets of Baal on Mount Carmel.','','','c','','utme','2010',77,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(611,'Although Josiah removed the vessels of Baal and Asherah from the Temple, God did not turn from the fierceness of His \twrath because”','the people did not remove them completely','Jehoahaz, Josiah’s son, had provoked Him','Manasseh had provoked Him','the people had opposed Josiah.','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:55','2020-08-18 05:50:36'),(612,'What was Nehemiah’s initial reaction to the news about the ruins of Jerusalem?','He tasked the people on what to contribute','He called for volunteers to assist him','He fasted and prayed for forgiveness of sins','He asked for permission to travel home.','','','c','','utme','2010',125,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(613,'After the dedication of the Temple, Ezra studied the law of the LORD in order to','defend the Jews against the Babylonians','become the first judge in Jerusalem','enhance his prophetic status','teach His statutes and ordinances in Israel.','','','d','','utme','2010',88,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(614,'Daniel became distinguished above all other pre¬sidents and satraps because','an excellent spirit was in him','the spirit of Darius was in him','he was a good administrator','he was highly educated.','','','a','','utme','2010',79,'Admin','2016-11-12 13:46:55','2020-08-18 05:50:36'),(615,'How did the Ninevites react to Jonah’s message?','They did not believe it','They believed it for a while','They repented of their sins','They ordered him out of their city','','','c','','utme','2010',70,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(616,'In Prophet Hosea’s analysis, harlotry is equivalent to Israel’s','prostitution','idolatrous practices','religious practices','adultery.','','','b','','utme','2010',74,'Admin','2016-11-12 13:46:55','2020-08-18 05:50:36'),(617,'‘... But let justice roll down like waters, and righteousness like an overflowing stream.’ Amos’ statement above suggests that the society was terribly','vindictive','abusive','oppressive','destructive','','','c','','utme','2010',88,'Admin','2016-11-12 13:46:55','2020-08-18 05:50:36'),(618,'Isaiah emphasized holiness above all things be¬cause God','knew their hearts were right with him','was not interested in their sacrifices','who called them is holy','was searching their sinful   hearts.','','','c','','utme','2010',81,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(619,'God told Ezekiel that the house of Israel would not listen to him because they','were a people of foreign speech','had forsaken His laws','were of a stubborn heart','had not truly repented','','','c','','utme','2010',90,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(620,'According to Isaiah, God sent him to','proclaim liberty to the captives','proclaim victory over Israel’s enemies','be a watchman over Israel','destroy and overthrow nations.','','','a','','utme','2010',87,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(621,'Jesus was tempted by the devil so as to','fulfil all righteousness','show His power over forces of nature','show that no one is above temptation','test the devil’s power','','','c','','utme','2010',97,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(622,'‘Depart from me, for l am a sinful man, oh Lord.’ This statement was uttered by Peter at the','last supper','garden of Gethsemane','call of the disciples','transfiguration','','','c','','utme','2010',105,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(623,'The impact of Jesus’ miracle of turning water into wine was that the','servants were astonished','master of ceremony believed','disciples believed more in Him','people glorified God.','','','c','','utme','2010',79,'Admin','2016-11-12 13:46:55','2020-08-19 06:10:53'),(624,'After the healing of the demoniac in the country of the Gerasenes, the people begged Jesus to (Mark 5:15-19)','stay with them','visit them always','go away from them','heal their sick.','','','c','','utme','2010',89,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(625,'Jesus told the parable of the lost sheep in order to illustrate that','every believer ought to rejoice with those who rejoice.','no person can hide from God','God’s love is unlimited','there is joy in heaven over a sinner who repents','','','d','','utme','2010',80,'Admin','2016-11-12 13:46:56','2020-08-11 08:29:17'),(626,'According to Jesus, the seventy disciples should rejoice because','their names were written in heaven','their faith and zeal were increased','of the submission of evil Spirits to them','of the fall of Satan from heaven like lightening.','','','a','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(627,'According to Mark, after the transfiguration, Jesus charged His disciples to','be prepared for persecution','tell no one what they had seen','have no hands in His betrayal','go to the Gentiles immediately','','','b','','utme','2010',91,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(628,'According to Luke, the multitude that followed Jesus during the triumphal entry rejoiced and praised God with a loud voice because (Luke 19:37-39)','they realized that Jesus was a prophet','of the mighty works He had done','He was riding on a colt in humility','they believed He was their Messiah','','','b','','utme','2010',89,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(629,'‘Truly, I say to you, today you will be with me in paradise.....’ Jesus made the statement above to one of the \t\tcriminals because he (Luke 23:42-43)','respected Him','praised Him','rebuked his partner','was repentant','','','d','','utme','2010',79,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(630,'The message of the risen Christ to the women who came early to the tomb was to be relayed to the disciples and (Mark 16:7)','the Jews','the Sadducees','Thomas','Peter','','','d','','utme','2010',94,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(631,'According to the Gospel of John, Jesus is the true vine while the vinedresser is (John 15:1)','the Holy Spirit','His father','the gardener','His mother','','','b','','utme','2010',87,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(632,'‘...Why has Satan filled your heart to lie to the Holy Spirit..’ Peter rebuked Ananias in the statement above for his sin of (Acts 5:3-4)','greed','insincerity','covetousness','partiality.','','','b','','utme','2010',88,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(633,'Paul informed the Galatians that the gospel he preached came through (Gal. 3:23-29)','a revelation of Jesus Christ','his desire to lead them','inspiration from the angels','the faith of men.','','','a','','utme','2010',84,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(634,'‘You son of the devil, you enemy of all righteous¬ness, full of all deceit and villainy .....’ This statement of Paul was addressed to (Acts 13:6-11)','Elymas, the magician','Paulus, the proconsul','Simon, the Magician','Demetrius, the silversmith','','','a','','utme','2010',92,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(635,'‘Unless you are circumcised according to the custom of Moses, you cannot be saved.’ The statement above by the men from Judea led to the','murmurs of the Hellenists','convening of the Jerusalem Council','persecution that scattered the disciples','circumcision of the Gentiles.','','','b','','utme','2010',96,'Admin','2016-11-12 13:46:56','2020-08-18 05:50:36'),(636,'According to Galatians, the Law was added be¬cause of','righteousness','transgressions','grace','persecution.','','','b','','utme','2010',95,'Admin','2016-11-12 13:46:56','2020-08-20 11:18:44'),(637,'According to Galatians, the death of Christ has eliminate all forms of','suffering','differences','condemnation','poverty.','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(638,'Peter in his teaching no humility, admonishes Christians to','safeguard their faith','seek things that are above','be gentle in spirit','avoid life’s anxiety','','','b','','utme','2010',73,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(639,'Paul in Corinthians advised that Christians should re-affirm their love for those who','are kind to them','wrong them','humble themselves','are in authority.','','','b','','utme','2010',90,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(640,'According to Corinthians, variety of gifts are inspired by','fervent prayers','angels of God','constant fasting','the same Spirit','','','d','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(641,'According to Paul in Corinthians, generosity produce','righteousness','salvation','the grace of God','thanksgiving to God','','','d','','utme','2010',97,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(642,'Busy bodies and those living in idleness in the church at Thessalonica were admonished to','pray for those in authority for peace','do their work in quietness and earn a living','appeal to those in authority to create jobs','endure persecution from their masters.','','','b','','utme','2010',76,'Admin','2016-11-12 13:46:56','2020-08-18 05:50:36'),(643,'Paul in Thessalonians told believers that the coming of the Lord would be accompanied by','songs of praise','the sound of the trumpet','signs and wonders','wailing and mourning','','','b','','utme','2010',82,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(644,'James stated in his epistle that when believers meet various trials, their faith produces','weakness','strength','steadfastness','righteousness','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(645,'Peter in his epistle enjoined servants to be sub¬missive to their masters with all','gentleness','seriousness','respect','humility.','','','c','','utme','2010',87,'Admin','2016-11-12 13:46:56','2020-08-19 06:10:53'),(646,'According to Joseph’s interpretation to Pharaoh’s dreams; the seven empty ears blighted by the east wind represented seven years of','famine.','abundance.','farming.','Harvest','','','a','','wassce','2011',75,'Admin','2016-11-12 14:29:10','2020-07-14 14:21:14'),(647,'Moses was born at a period when the Hebrew were','suffering.','increasing.','backsliding.','rejoicing.','','','a','','wassce','2011',69,'Admin','2016-11-12 14:29:12','2020-08-08 00:12:56'),(648,'“…who is the Lord that I should heed his voice and let Israel go”? After this statement, Pharaoh','engaged Israel into forced labour with task masters.','ordered midwives to kill all males born to Israelites.','asked Israelites to fetch their own straws to produce bricks.','decreed that Israelites’ male babies be drowned in the Nile.','','','c','','wassce','2011',71,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:15'),(649,'The name Moses means','baptized in water','abandoned in water.','drawn out of water.','thrown into water.','','','c','','wassce','2011',80,'Admin','2016-11-12 14:29:12','2020-08-04 17:26:45'),(650,'After the departure of the Israelites God made Pharaoh pursue them in order to','force Israel to return to Egypt.','hasten Israel’s journey through the wilderness.','make Israel obey Moses.','get glory over Pharaoh and his host.','','','d','','wassce','2011',80,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:17'),(651,'Who among the following kings was raised by God against the Israelites for going after the Canaanite gods?','Agap','Jabin','Zebah','Zalmunnal','','','c','','wassce','2011',67,'Admin','2016-11-12 14:29:12','2020-07-14 14:21:18'),(652,'Deborah, a prophetess who was a judge in Israel was the wife of','Joshua.','Abijah.','Lappidoth.','Sisera.','','','c','','wassce','2011',73,'Admin','2016-11-12 14:29:12','2020-08-13 13:06:00'),(653,'The sons of Eli were regarded as worthless men for all the following reasons except','sleeping with the women at the tent of meeting','failing to attend the places of worship regularly.','taking the meat for sacrifice before boiling.','showing no respect for God.','','','b','','wassce','2011',75,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:20'),(654,'Who was the first king of Israel?','Kish','David','Solomon','Saul','','','d','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-08-13 09:15:52'),(655,'Joel and Abijah were the sons of','Eli.','Saul','Samuel','David.','','','c','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-08-20 11:18:44'),(656,'“...Behold, to obey is better than sacrifice and to hearken than the fat of rams”. This statement was Samuel’s reaction to','David’s defense of his sin.','Saul’s defense of disobedience.','King Agag’s defense of his victory.','Eli’s defense of the sins of his sons.','','','b','','wassce','2011',76,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:29'),(657,'On Mount Gilboa, king Saul decided to commit suicide in order to avoid','ridicule from the Philistines.','witnessing the death of his sons','being killed by his armour-bearer.','the agony of the injuries received.','','','a','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-08-13 09:33:04'),(658,'David bitterly mourned when Abner was slain by','Ishbosheth.','Absalom.','Asahel.','Joab.','','','d','','wassce','2011',55,'Admin','2016-11-12 14:29:13','2020-08-20 11:18:44'),(659,'One of the main features of Solomon’s prayer at the dedication of the Temple was the','celebration of God who is faithful to his covenant','recognition that God loves sacrifices.','assertion that God dwells in man-made houses.','proclamation that no prayers be henceforth made outside the temple.','','','d','','wassce','2011',68,'Admin','2016-11-12 14:29:13','2020-08-20 11:18:44'),(660,'In spite of Solomon’s apostasy, his empire remained intact until his death because','God deferred, for David’s sake, the punishment due to him','he won decisive victories over his enemies.','he always took wise decisions','. \\nhe made surrounding nations fight among themselves.','','','a','','wassce','2011',89,'Admin','2016-11-12 14:29:13','2020-08-07 09:21:53'),(661,'“Your father made our yoke heavy. Now therefore, lighten the hard service of your father.” These were the words of','Jeroboam','Solomon','.         \\nDavid','Ahijah.','','','a','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:34'),(662,'Obadiah, Ahabs servant, made history for himself by','arresting the prophets of Yahweh','. \\nexecuting all the prophets.','hiding and feeding some of the prophets in a cave.','D inciting the prophets to rebel against king Ahab.','','','c','','wassce','2011',63,'Admin','2016-11-12 14:29:13','2020-08-20 11:18:44'),(663,'The contest between Elijah and the prophets of Baal took place at mount','Olive.','Tabor.','Sinai','Camel.','','','d','','wassce','2011',57,'Admin','2016-11-12 14:29:13','2020-08-13 09:15:24'),(664,'King Jehoshaphat was commended for adopting his father’s policies which included','removing Maacah, his grandmother from being queen.','waging wars with the king of Israel.','allowing the cult prostitutes to operate.','burning of incense at the high places.','','','a','','wassce','2011',61,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:42'),(665,'God’s constant love for unfaithful Israel is demonstrated in the book of','Amos','Isaiah','Hosea','Ezekiel','','','c','','wassce','2011',60,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:43'),(666,'During the rebuilding of the temple, Zerubbabel rejected the offer of help from the','inhabitants of Ammon.','people of Samaria.','friends of Sanballat and Tobiah','governors of the provinces beyond the rivers.','','','c','','wassce','2011',81,'Admin','2016-11-12 14:29:13','2020-07-15 09:16:12'),(667,'“And I asked them concerning the Jews that survived, who has escaped exile, and concerning Jerusalem...” These were the words of','Jeremiah.','Nehemiah','Ezra.','Hanani.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:51'),(668,'The presentation of Myrrh to Jesus signifies Jesus’','humility and servant hood.','suffering and impending death.','lordship on earth.','kingship and messiah ship.','','','b','','wassce','2011',87,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:52'),(669,'“My son your sins are forgiven”. These were the words of Jesus to the','demoniac.','paralytic.','man born blind','centurion’s servant.','','','b','','wassce','2011',66,'Admin','2016-11-12 14:29:13','2020-08-18 20:42:55'),(670,'Peter called for the construction of three booths for Jesus, Moses and Elijah, respectively during','the transfiguration.','the Ascension.','Jesus’ arrest.','the Passover feast.','','','a','','wassce','2011',85,'Admin','2016-11-12 14:29:13','2020-08-13 12:58:14'),(671,'The incidents that took place following Jesus’ death on the cross did not include the','tearing into two of the temple’s veil.','quaking of the earth that broke the rocks.','the opening of the tombs.','trembling of the chief priest and his conversion.','','','b','','wassce','2011',71,'Admin','2016-11-12 14:29:13','2020-08-13 09:33:23'),(672,'“How is it that you a Jew ask a drink of me...” This statement was made by the','Gentile woman.','woman of Samaria.','possessed woman.','woman of Galilee','','','b','','wassce','2011',69,'Admin','2016-11-12 14:29:13','2020-07-14 14:21:55'),(673,'The Jews showed their hatred for Paul and Barnabas in Pisidia by','dragging out the apostles for stoning.','insisting and driving them out of the Synagogue.','influencing leading men in the city to drive them out.','beating and stoning them in the Synagogue','','','c','','wassce','2011',70,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(674,'When Jesus said “apart from me you can do nothing”, he \tmeant that Christians','pray without ceasing','. \\nmust faithfully trust in Him always.','cannot pass examinations if they did not pray.','should expect God to do everything for them.','','','b','','wassce','2011',64,'Admin','2016-11-12 14:29:13','2020-08-13 09:33:23'),(675,'On the day of Ascension, Jesus promised his disciples','peace in the kingdom of God.','amazing grace.','power of  the Holy Ghost.','His abiding physical presence.','','','c','','wassce','2011',50,'Admin','2016-11-12 14:29:13','2020-07-15 14:05:27'),(676,'On Ascension Day two men in white robes inform the disciples that Jesus would','send for them.','be seen in heaven.','prepare a place for them.','come again.','','','d','','wassce','2011',84,'Admin','2016-11-12 14:29:13','2020-08-13 09:14:54'),(677,'“Go up and join this chariot”.  This statement was made to','John.','Paul.','James.','Philip.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:13','2020-08-13 09:15:24'),(678,'Saul was converted on his journey to','Samaria','Jerusalem.','Salamis.','Damascus.','','','d','','wassce','2011',67,'Admin','2016-11-12 14:29:13','2020-07-27 02:54:01'),(679,'Which of the following places was not visited by Paul during his first missionary journey?','Salamis','Athens','Antioch of Syria','Antioch of Pisidia','','','a','','wassce','2011',74,'Admin','2016-11-12 14:29:13','2020-07-14 14:22:02'),(680,'Paul was stoned and dragged out of the city by','the Lyconians and the Ephesians.','enemies of the healed lame man','. \\nJews from Antioch and Iconium.','Jews in the Synagogue.','','','a','','wassce','2011',73,'Admin','2016-11-12 14:29:13','2020-08-18 20:42:54'),(681,'The resurrection of Jesus is significant to Christians for it \tmarked the','end of the Jewish faith.','assurance of eternal life for Christians.','beginning of Christianity','end of Jesus’ earthly ministry.','','','b','','wassce','2011',74,'Admin','2016-11-12 14:29:13','2020-08-13 13:05:02'),(682,'According to Paul, ‘As sin reigned in death, grace also might reign through righteousness to','faith in God’.','the knowledge of God’.','eternal life','the glory of the father’.','','','c','','wassce','2011',62,'Admin','2016-11-12 14:29:13','2020-08-15 23:15:08'),(683,'Paul in Romans declared “for as by one man’s disobedience many were made sinners, so by one man’s obedience many will be made...”','innocent.','righteous.','faithful.','Christians.','','','b','','wassce','2011',61,'Admin','2016-11-12 14:29:14','2020-08-13 09:33:23'),(684,'Which of the following is not true about spiritual gifts as taught by Paul?','Gifts should be used with all modesty','No gift can be independent of others','Gifts have nothing to do with the level of one’s faith','Specific gifts perform specific functions','','','b','','wassce','2011',79,'Admin','2016-11-12 14:29:14','2020-08-13 13:05:02'),(685,'In his comparison of the human body with the body of Christ, Paul did not mention the','hand.','foot.','eye.','nose.','','','d','','wassce','2011',65,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:08'),(686,'The New Life in Christ operates through','humility.','the name of Jesus.','one body.','wisdom.','','','b','','wassce','2011',80,'Admin','2016-11-12 14:29:14','2020-08-13 09:14:54'),(687,'‘Death is swallowed up in victory, “oh death, where is your victory”? This statement is found in the book of','Corinthians.','Romans.','Galatians.','Philemon','','','a','','wassce','2011',75,'Admin','2016-11-12 14:29:14','2020-08-18 20:42:53'),(688,'According to Paul in Corinthians the gospel message could only be lifeless when Christians','deny the resurrection message.','persecute one another.','gossip among themselves.','entertain idolatrous practices.','','','a','','wassce','2011',84,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:11'),(689,'Paul asked the Thessalonians to imitate his action of','demanding support from his converts.','performing miracles','healing the sick.','working for his personal upkeep.','','','d','','wassce','2011',78,'Admin','2016-11-12 14:29:14','2020-08-18 20:42:54'),(690,'With respect to the date of the Parosia, Paul advised Thessalonians to','be sober in maintaining their hope of salvation.','disregard all speculations about it.','know that the day would be announced later.','enjoy peace and security in the face of danger.','','','a','','wassce','2011',84,'Admin','2016-11-12 14:29:14','2020-08-13 09:33:04'),(691,'Paul, pleaded with Philemon to forgive','Barnabas.','Timothy.','Onesimus.','Silas','','','c','','wassce','2011',110,'Admin','2016-11-12 14:29:14','2020-08-18 20:42:53'),(692,'James strongly condemned partiality in the Church for all the following reasons except that it','is contrary to Christ’s example of humility','accords due respect to the rich who merit it.','is a transgression of the commandment of God.','does not harmonize with the Christian virtue of love.','','','d','','wassce','2011',74,'Admin','2016-11-12 14:29:14','2020-08-14 18:59:14'),(693,'The Galatians, were reminded by Paul that they were Abraham’s offspring and heirs according to','promise.','good works.','law.','grace.','','','a','','wassce','2011',66,'Admin','2016-11-12 14:29:14','2020-07-14 14:22:16'),(694,'According to Paul in Galatians, law ceased to be our custodian as soon as','it was made available to us.','Christ adopted us as his children.','we adopted the faith of Abraham.','we stopped worshipping the elemental spirits.','','','b','','wassce','2011',63,'Admin','2016-11-12 14:29:14','2020-08-13 09:16:44'),(695,'James advised Christians to portray their faith in Jesus by','listening to the word of God always.','converting others to Christ.','practicalizing their Christian belief','constant prayer and fasting.','','','c','','wassce','2011',77,'Admin','2016-11-12 14:29:14','2020-08-18 20:42:55');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `currentaffairs` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `currentaffairs` VALUES (1,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013',560,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(2,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(3,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013',559,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(4,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013',572,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(5,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013',576,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(6,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(7,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(8,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(9,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013',554,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(10,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013',592,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(11,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013',593,'Admin','0000-00-00 00:00:00','2020-08-13 12:51:11'),(12,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013',557,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(13,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013',579,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(14,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013',581,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(15,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(16,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013',560,'Admin','0000-00-00 00:00:00','2020-08-13 13:01:32'),(17,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013',592,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(18,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(19,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013',575,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(20,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013',604,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(21,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013',569,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(22,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013',553,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(23,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013',543,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(24,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013',576,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(25,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(26,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013',567,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(27,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(28,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013',574,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(29,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013',585,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(30,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013',573,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(31,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013',578,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(32,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(33,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013',594,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(34,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013',563,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(35,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013',574,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(36,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013',574,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(37,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013',586,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(38,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013',568,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(39,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013',582,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(40,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(41,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013',592,'Admin','0000-00-00 00:00:00','2020-08-15 20:39:03'),(42,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013',590,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(43,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013',613,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16'),(44,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013',631,'Admin','0000-00-00 00:00:00','2020-08-20 11:10:16');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `economics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=658 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `economics` VALUES (1,'Which of the following is the best general definition of the study of economics? ','the best way invest in the stock market','business decision making under foreign competition ','individual and social choice','inflation unemployment in a growing economy','','','c','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(2,'What implication does resources scarcity have for the satisfaction of wants?','not all wants can be satisfied ','we will never be faced with the need to make choice ','we must develop ways to decreases our individual wants ','the discovery of new resource.','','','a','','post-utme','2006',96,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(3,'In economics , rational decision-making requires that: ','one’s choices be arrived at logically and without error   ','one’s choice be consistent with one’s goals ','one’s choice never very ','one makes choice that do not involve trade-offs','','','b','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(4,'What happens to a supply curve when the variables that are normally held constant are allowed to changer? ','the curve flattens out','there is a movement along the curve','the curve shifts ','the curve becomes steeper.','','','c','','post-utme','2006',96,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(5,'If the price of Pepsi decrease relative to the price of coke and 7-up the demand for ','coke will decrease ','7-up will decrease ','coke and 7-up will increase','coke and 7-up will decrease.','','','d','','post-utme','2006',100,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:35'),(6,'Suppose wages paid by a firm increase what would reasonably be expected to happen to the equilibrium price and equilibrium quantity for the firm’s output? ','price increase,  quantity decreases ','price decrease, quantity decrease','price decreases, quantity increase','price increases, quantity increase.','','','a','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(7,'When a nation’s exports are greater than its imports ','the net foreign trade is zero ','an unfavourable balance of payments exists ','a favourable balance of trade exists ','a favourable balance of payment exists.','','','d','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(8,'Inflation is likely to benefit ','persons with bank savings','persons who live on fixed pension funds ','creditors ','debtors.','','','d','','post-utme','2006',69,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(9,'For which market model is there a very large number of firms? ','monopolistic competition','oligopoly ','pure monopoly ','pure- competition','','','d','','post-utme','2006',72,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(10,'Which of the following is an economic cost ','uninsurable risk ','normal profit ','economic profit ','monopoly profit.','','','b','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-07-22 10:38:01'),(11,'Which tends to be a progressive tax in Nigeria? ','income tax ','property tax ','sales tax ','import- duties.','','','a','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(12,'A deficit budget is usually drawn up during ','economic buoyancy ','inflationary period ','war time ','economic recession.','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(13,'A drawer of a cheque is the ','person who is to be paid ','bank on which the cheque is drawn ','person who writes out the cheque ','bank official who certifies the payment. ','','','c','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-29 15:50:46'),(14,'The liability of a sole trade is','indeterminate ','unlimited ','limited ','transferable','','','b','','post-utme','2006',93,'Admin','0000-00-00 00:00:00','2020-07-21 11:09:34'),(15,'Which of the following is regarded as fixed cost? ','cost of raw materials ','labour wages ','rent land ','cost of light.                                                                                                                                                                                                                   ','','','c','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(16,'Which of the following is not a member of OPEC?','Indonesia',' Iran ','Venezuela','Egypt','','','d','','post-utme','2006',84,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(17,'The creation of utility can be referred to as ','value added ','profit marginalization ','production','entrepreneurship.','','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(18,'The production within the domestic territory of a country is called the ','net national product ','gross domestic product ','disposable income','gross national product.','','','b','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-05 21:03:31'),(19,'Suppose a consumer’s income increases from N30,000 to N36, 000. As a result the consumer increases her purchase of compact discs (CDS) from 25 CDS to 30CDS.What is consumer’s income elasticity of demand for CDS?','0.5','1,0 ','1','1.5','','','b','','post-utme','2006',101,'Admin','0000-00-00 00:00:00','2020-08-06 01:28:49'),(20,'The Multiplier is always the reciprocal of ','MPC ','MPS ','APC','APS','','','b','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:49'),(21,'If the marginal propensity to save is 0.4 and consumption expenditure changes by N10 million , the equilibrium  level of income will change by ','N15.0million ','N4,0million','N2.5million ','N25million.','','','d','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(22,'Economic freedom is brought about by the existence of ','Government ','Money ','Availability of Credit ','choice','','','d','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(23,'The only essential attribute of the good currency is ','scarcity ','homogeneity','acceptability ','cognoscibility.','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-08-15 08:59:21'),(24,'Economic is founded on the principle that: ','Human wants are more than human needs ','Material things are more than human wants ','Human wants are limitless while the means to satisfy them are limited  ','Human while are easy to define','','','c','','post-utme','2007',72,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(25,'The capitalist system is characterized by all the following except: ','private ownership of the means of production ','Equitable distribution of income and wealth  ','capital accumulation  ','markets and  prices coordinate economic activities','','','b','','post-utme','2007',103,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(26,'If the equation relating consumption (C) to income (Y) is C=  N7,500+0.2Y,then ','consumption is inversely related to income','consumptions is the independent variable and income is the dependent variable ','if income is N15,000, the consumption is N10,500 ','if consumption is N30,000 then income is N10,000','','','c','','post-utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-19 06:45:25'),(27,'The reason for the law of demand can best be explained in terms of ','supply ','complementary ','the rationing function of prices ','diminishing marginal utility','','','d','','post-utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(28,'The demand curve for the pure monopolists is ','perfectly  price elastic ','perfectly price inelastic ','down sloping ','up sloping ','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:22:56'),(29,'Which of the following statements is correct? The Central  Bank ','prints the country’s currency ','handles the collection of depts. Owed to the government','lends money to businessmen ','issues the country’s currency','','','d','','post-utme','2007',77,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(30,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','Consumers are rational','Consumers are willing to make choices ','Consumers make consistent choices','','','d','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-19 06:45:25'),(31,'The slope of the budget constraint ','changes as the marginal rate of satisfaction changes ','is the ration of the prices of the two goods? ','is the ratio of the budget of total utility? ','Equals one, since the consumer can buy combination along the budget constraint.','','','b','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(32,'Disposable income equals ','Personal income less business profits ','personal income less taxes and subsidies ','personal income less taxes plus subsidies ','National income plus transfer payments','','','c','','post-utme','2007',74,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(33,'The ‘term’ of trade’ means ','The trade agreement between two countries ','The difference in the volumes of exports of two countries ','The value of a unit of export in relation to the value of a unit of import ','None of the above.','','','c','','post-utme','2007',89,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(34,'The burden of tax on a commodity whose demand is infinitely inelastic ','is Zero ','will be borne by sellers alone ','will be borne by buyers alone ','it impossible to tell','','','c','','post-utme','2007',79,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(35,'Inflation can be curbed by ','Increasing aggregate demand ','paying higher wages ','reducing aggregate demand ','A deficit budget','','','c','','post-utme','2007',93,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(36,'The supply and demand for goods and service are influenced by the ','Super markets ','Entrepreneurs ','Mechanism of the law ','price mechanism.','','','d','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(37,'In a sole proprietorship, the decisions are made by the ','Government ','Board of directors ','Shareholder’s Conference ','Owner','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:06'),(38,'Which of the following are direct taxes? ','Income and company taxes ','Sale taxes ','commodity taxes ','Excise Duties','','','a','','post-utme','2007',70,'Admin','0000-00-00 00:00:00','2020-07-21 12:06:16'),(39,'The production within the domestic territory of a country is called the ','Net national product ','Gross domestic ','Disposable income ','Gross national product','','','b','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(40,'A producer sustains a loss in the short run if? ','marginal revenue is less than price ','price is less than average cost','marginal cost is less than marginal  revenue ','average variable cost is less than average cost','','','b','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(41,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with terms funds ','deals with money only while capital market deals with capital as well ','is limited in scope while capital market is not ','uses interest rate while capital market does not','','','a','','post-utme','2007',83,'Admin','0000-00-00 00:00:00','2020-07-25 13:24:37'),(42,'A production possibility curve shows ','how much of  the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combinations of two commodities that can be produced.','','','d','','post-utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(43,'The situation in which the total amount of government spending exceeds total called ','balance budget ','budget surplus ','budget deficit ','fiscal surplus ','','','c','','post-utme','2007',84,'Admin','0000-00-00 00:00:00','2020-07-22 10:38:00'),(44,'The maximization of profit tends to be driving force in the economic decision making of  ','entrepreneurs  ','workers ','consumers ','legislators','','','a','','post-utme','2007',84,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(45,'Which of the following equations is the correct one about Net National Product (NNP)? ','NNP= Gross National Product (GNP) - Depreciation ','NNP=  Gross National product (GNP Net incomes from abroad ','NNP= Gross Domestic product (GDP) – Deprecation ','NNP = Gross Domestic product (GDP) – Net incomes from aboard','','','a','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(46,'Middlemen in a economy perform the function of ','protection ','hoarding ','distribution ','exchange','','','c','','post-utme','2007',94,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(47,'Which of the following statement is false? ','Ends in Economic are the resources with which it can attain our goals','Tables and graphs are focus of arithmetic technique used in economics to present ideas pictorially ','Three basic question every economy must answer are hat to produce, how to produce and for whom to produce ','A and B are substitutes if the supply of an increase, the price B will tend to increase.','','','a','','post-utme','2008',70,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:15'),(48,' If the equation relating consumption (C) to income (Y) is C= N7,500 + 0.2Y, then ','consumption is inversely related to income ','consumption is the independent inversely related to income is the dependent variable ','if income is N15,000, the  consumption is 10,500 ','if consumption is N300,000, then income is N10,000','','','c','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(49,'Which of the following best describes a perfectly inelastic demand function? ','The quantity demand is insensitive to changes in price ','Price is insensitive changes in quantity ','price and quantity demanded changes by some percentage ','The demand function is horizontal.','','','a','','post-utme','2008',96,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(50,' Which of the following statement is false? ','An economy where economic decision making is shared by individuals and government is known as mixed economy ','Given that apples and pears are substitutes, If the price of pear fall ','An elasticity of demand measured between two point on a demanded curve is called a point elasticity ','A and B are complements. If the supply of A decreases, the price B are tend to fall','','','c','','post-utme','2008',102,'Admin','0000-00-00 00:00:00','2020-08-19 06:45:25'),(51,'Which of the following statement is true? ','if cross price elasticity that of demand between two goals, A and B, is negative we can conclude that A and B are substitutes ','the co-efficient of elasticity of demand is measured as a ration of change in quantity demand to change in price ','A market will be in disequilibrium when demand is not equal to supply ','All the above.','','','c','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:19'),(52,'The reason for the law of demand can best be explained in terms of: ','supply ','complementary goods ','the rationing function of price ','diminishing marginal utility.','','','d','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(53,'The demand curve for the pure monopolists is ','perfectly price elastic ','perfectly price inelastic ','down sloping ','up sloping','','','c','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(54,'Which of the following statement is correct? The Central bank ','prints the country’s currency ','handles the collection of debts of owed to the government ','leads money to businessmen ','issue the country’s currency.','','','d','','post-utme','2008',87,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(55,'Which of the following is not a basic assumption underlying the theory of consumer behavior','Consumers prefer more to less ','consumers are rational ','consumers make consistent ','choices.','','','d','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(56,'Which of the following equation is the correct one about Net National Product (NNP)? ','NNP= Gross National product (GNP) – Depreciation ','NNP = Gross National product (GNP) + Net incomes from abroad. ','NNP = Gross Domestic product (GDP) – Depreciation ','NNP = Gross Domestic product (GDP) – Net incomes from abroad.','','','a','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(57,'Money market differs from capital market in that it. ','deals with short-term loans while capital market deals with long term funds. ','deals with money only while capital as well ','is limited in scope while capital market does not. ','Uses interest rates while capital market does nor.','','','a','','post-utme','2008',93,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(58,'A production possibility curve shows ','how much of the resources of society are used to produce a particular commodity ','the rate of inflation ','the rate of unemployment in the economy ','the various combination of two commodities that can be produced.','','','d','','post-utme','2008',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:26'),(59,'The situation in which the total amount of government spending excesses total revenues is called a:  ','balance budget ','budget surplus. ','budget difficult ','fiscal surplus','','','c','','post-utme','2008',100,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(60,'The maximization of profit tends to be the driving force in the economics decision making of:','entrepreneurs. ','Workers ','consumers ','legislators.','','','a','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-07-14 02:16:53'),(61,'Which of these factors does not cause a change in demand? ','Income ','Population ','price of the commodity itself.','Quantity of commodity','','','d','','post-utme','2008',105,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(62,'When the demand for a commodity is inelastic, total revenue will fall if ','price is increase ','price remains constant ','price is reduced ','The commodity is a luxury.','','','c','','post-utme','2008',94,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(63,'An economic system in which most capital goods are owned by individual and private firms is known as ','planned economy ','Capitalist economy. ','Mixed economy ','Socialist economy.','','','b','','post-utme','2008',88,'Admin','0000-00-00 00:00:00','2020-07-15 09:09:54'),(64,'Which of the following is the most liquid asset to a commercial bank? ','cash ','money at call ','stock and shares ','Treasury Bills.','','','a','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(65,'A recovery point on an indifference curve, the ','Total utility is decreasing ','Level of utility is constant ','Consumer is satisfied ','','','','b','','post-utme','2008',83,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(66,'Which of the following does not hinder the efficient distribution of goods in West Africa? ','Government participation in the distribution trade ','Inadequate storage facilities for agricultural goods ','Inadequate credit facilities for potential distribution ','the tendency to hoard and smuggle.','','','a','','post-utme','2008',92,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(67,'Which of the following is the most important reason why wages differ among occupation? ','Length and cost of training ','Supply of Labour ','Attractiveness ','Influence of trade Unions','','','c','','post-utme','2008',95,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(68,'Tax incidence is the analysis of  ','How progressive a tax is ','How distorting a tax is ','Who ultimately pays the tax ','How a tax is collected.','','','c','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(69,' A monopolist will practice price discrimination in two market if ','there is a patent of the commodity ','There is free flow of information in the market ','The markets have different elasticity of demand ','The cost of separating the markets is low.','','','c','','post-utme','2008',90,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:39'),(70,'Which of the following is regarded as fixed cost? ','Cost of raw materials ','rent on land ','Labour wages ','cost of light.','','','b','','post-utme','2008',97,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(71,'Given that fixed cost is N500.00, Variable cost is N1,500.00 and output is 40 units, what will be the average cost of producing one units? ','N12.50.00 ','N50.00 ','N37.50 ','N500.00','','','b','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:41'),(72,'For two substitute goods, the gross elasticity of demand is ','Greater than one but lee than zero ','zero ','Negative ','Positive ','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:42'),(73,'If a person receives a higher wage than would be necessary to induce him to work, he is be receiving','rent ','profit ',' interest ',' gain ','','','a','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:43'),(74,'Which if this is likely to be inflationary ','Tax increase ','Budget surplus ','increase in unemployment ','wage increase ','','','d','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(75,'A characteristic of a debenture is that ','Its yield is based on profit ','Its yield is a fixed rate of interest ','It has no redemption date ','There is a voting when interest is paid ','','','b','','post-utme','2009',95,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(76,'Which of these is not included in measuring national income by the income approach? ','Wages and salaries of public servants ','students branches and scholarships ','profit of international ','income of self-employment persons ','','','b','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(77,'The revenue accruing to the seller of commodity X as a result of a fall in price will ','increase','fall ','first fall but increase later  ','Remain unchanged ','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(78,'Deflation is persistence fall in price in the general price level and is usually caused by ','A reduction in total demand ',' An increase in government spending ',' an increase in money supply to banks ','An increase in aggregate demand ','','','a','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:23:48'),(79,'Under partnership, investors who have no desire to be actively involved in the day-to-day management of such organization are called ','Stock brokers ','Sleeping partners ','part-time investor ','Ordinary partners ','','','b','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(80,'In a sole proprietorship decision are made by the ','Government ','Board of directors ','Management ','Owners.','','','d','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(81,'A greater burden of taxes on essential goods in borne by the ','middle income group ','Higher income group ','Lower earning people ','People falling between the middle and higher income group ','','','c','','post-utme','2009',87,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(82,'Demand as a factor of production is ','a composite demand ','joint demand ','A derived demand','An elasticity of demand ','','','c','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(83,'One disadvantage of sole proprietorship is its ','Limited liability ',' High profit ','High sense of ownership ','Low credit rating ','','','d','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(84,'The monetary system that requires double coincidence of wants is known as ','The gold standard ','The gold standard ','The commodity system ','The gold standard ','','','b','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(85,'The marginal theory of distribution makes an assertion that the price of any factor depends upon its marginal ','Unity ','Productivity ','rate of substitution ','revenue ','','','b','','post-utme','2009',87,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(86,'By using exchanges controls, a country tries to eliminate a balance of payment deficit by ','limited her imports to its currency value of exports ','Reducing the nation’s domestic piece level ','limiting her exports to its currency value of exports ','Undervaluing, the country’s currency.','','','d','','post-utme','2009',83,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(87,'Economics of scale operates only when ','Marginal cost is falling with output fixed cost is variable ','fixed cost is variable ','variable cost is less than fixed cost ','variable cost is equal to cost of output.','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-07-22 10:56:46'),(88,'If an increase in income induces a reduction in the demand for beans, beans can be referred to as: ','A normal good ','An inferior good ','A substitute ','A dash ','','','b','','post-utme','2009',93,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(89,'Optimum population is desirable because it enable an economy to attain maximum ','per capital income ','per capital output ','per capital real income ','per capital revenue ','','','b','','post-utme','2009',83,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(90,'Marginal cost curve intersects average cost curve ','from above at its lowest point ','from below the lowest point ','from below at its lowest point ','from below after the lowest point ','','','c','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(91,'The concept of economic efficiency refers to: ','obtaining the maximum output from available resources at the lowest possible cost ','Conservation of natural gas and oil deposits ','equity in the distribution of national resource ','Producing without waste ','','','a','','post-utme','2009',87,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(92,'A major factor affecting the value of money is the: ','price level ','banking habit ','Transaction motive ','Divisible nature of money ','','','a','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(93,'Which of the following is an example of invisible item on balance of payments account?','Shipping and aviation ',' Import and Export ','Merchandise ','Bullion ','','','a','','post-utme','2009',75,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(94,'The best index for indentation comparison of standard of living is the ','Gross national product ','Net national income ','per capital income ','Gross national income.','','','c','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(95,'A major obstacle to economic development in many African countries ','A rise in industrial output ','Low farm productivity ','Free interaction ','Controlled international relations.','','','b','','post-utme','2009',86,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(96,'The most popularly adopted industrialization strategy in West African ','import substitution ','Export promotion ','parts development ','infant industries potation.','','','b','','post-utme','2009',83,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(97,'The basic concepts of Economics are ','choice, scarcity, resources and efficiency   ','wants, scarcity, choice, scale of preference and opportunity cost','wants, scarcity and choice  ','wants, choice, scale of preference and opportunity cost ','','','b','','post-utme','2011',103,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(98,'In Economics human wants are usually described as  ','many','insatiable ','limited','numerous','','','b','','post-utme','2011',101,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(99,'Basic economic problems of society include the following except:  ','what to produce','how to produce ','where to produce  ','for whom to produce ','','','c','','post-utme','2011',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:09'),(100,'An economic system can be defined as an ',' arrangement specifying how production and consumption are controlled in a   society ','arrangement whereby goods are distributed in a society  ','arrangement whereby human wants are satisfied in a society  ','arrangement specifying how productive resources are distributed in a society ','','','a','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(101,'The following are features of a free market economy except ','private ownership of properties  ','existence of competition ','high level of profit maximization by private investors  ','joint decision-making by the citizens in a society.','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:11'),(102,'In a capitalist society, production and consumption are regulated by the: ','demand for the commodity ','the government  ','price system  ','private individuals ','','','c','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:12'),(103,'The following are advantages of socialism except ','equitable distribution of resources','absence of exploitation  ','equitable distribution of income ','promotion of high standard of living ','','','d','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(104,'Marginal Produce (MP) is best defined as ',' Total produce/no of labour','Change in total product/ change in variable factor','Total product/ fixed factor','Average product/ no of Labour','','','b','','post-utme','2011',95,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:15'),(105,'Which of the following is NOT a limitation to division of labour and specialization ','the size of the market','availability of capital ','interdependence among the workers ','the nature of the product ','','','b','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(106,'The following are the advantages of internal economics of large scale production except ','financial economics ','administrative economics ','technical economics ','market economics','','','b','','post-utme','2011',90,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(107,'Which of the following is TRUE of marginal cost? ','it is a cost incurred by the firm on variable inputs ','it is the cost of producing one extra unit of a commodity at any output level ','it is the sum of the fixed cost and variable cost','it is referred to as overhead cost','','','b','','post-utme','2011',88,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(108,'Which of the following items is NOT a variable cost? ','cost of machine ','cost of electricity ','salaries and wages','cost of raw materials.','','','a','','post-utme','2011',102,'Admin','0000-00-00 00:00:00','2020-08-07 10:17:17'),(109,'Which of the following is NOT True of a market demand schedule? ','it is a schedule of all consumers of a commodity in a market ','it is the aggregate demand schedule of all consumers of a commodity in a market ','it is a table showing the different quantities of a community which a consumer would purchase at various prices ','it is a table showing the composite demand schedule of all consumers of a commodity in a market.','','','c','','post-utme','2011',90,'Admin','0000-00-00 00:00:00','2020-08-19 06:45:25'),(110,'Supply is said to be inelastic when the coefficient of elasticity of supply is ','2.5','0.5','zero ','infinity ','','','b','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(111,'Price legislation can be defined as ','how price fluctuates in the market','how prices are controlled in the market  ','how to avoid inflation  ','how the government fixes the prices of essential commodities.','','','d','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(112,'Price discrimination exists when  ','The same product of the same quality is sold for different prices of the same buyer  ','The same product of the same quality is sold for different prices to different buyers  ','Different products are sold for the same price to the same buyers  ','Different products are sold for the same price to different buyers.','','','b','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(113,'A commodity is said to be price inelastic if  ','Changes in the quantity purchased of a good is less than proportionate changes in its price  ','Changes in the quantity purchased of a good is proportional to changes in its price  ','Changes in the quantity purchased of a good is more than proportionate changes in its price  ','The quantity purchased of a good never responds to change in its price.','','','a','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(114,'The parameter ‘b’ in a consumption function of the form; C = a + bY; where Y is the National income is  ','Marginal benefit of consumption  ','Marginal propensity to purchase  ','Marginal propensity to consume  ','Marginal propensity to save ','','','c','','post-utme','2012',75,'Admin','0000-00-00 00:00:00','2020-07-29 15:50:46'),(115,'Indifference curve and isoquant are respectively relevant is  ','Theories of consumer behaviours and production  ','Theories of human indifference and production  ','Theories of trade and production  ','Theories of production and trade','','','a','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(116,'Perfect price elastic supply means  ','No change in supply as price changes  ','Any change in price completely stops supply  ','Changes in price double supply  ','A change in price leads to proportionate change in supply','','','b','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(117,'Change in demand and change in quantity demanded are not the same because  ','All factors affecting change in demand also affect change in quantity demanded except income  ','All factors affecting change in demand are not affecting change in quantity demanded except income  ','Many factors leads to change in demand but only change in price affect change in quantity demanded   ','Many factors leads to change in demand but only change in income affect change in quantity demanded','','','c','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:30'),(118,'The following is the main difference between firm and industry  ','Industry is the group of firms producing related products  ','Industry is the group of firms in the manufacturing sector  ','Industry is the group of firms in different sectors of the economy  ','Industry is the group of firms with a single pressure group','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:31'),(119,'Roles of central bank include the following except  ','Lender of last resort to commercial bank  ','Banker to commercial bank  ','Regulator to both the money and capital markets ','Receipt  of government deposits','','','b','','post-utme','2012',91,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(120,'Ordinary shareholders and preferential shareholders are different because ','Preferential shareholders participate and can vote and be voted for during the  AGM  ','ordinary shareholders are given priority in case the company is liquidated  ','Preferential shareholders are prominent shareholders than ordinary shareholders  ','Ordinary shareholders are the core shareholders in the company','','','d','','post-utme','2012',108,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(121,' Yam and palm oil are together; therefore  ','Yam is a substitute good while palm oil is a complementary good  ','Yam is complimentary good while palm oil is a substitute good  ','Yam and oil are complimentary goods ','Yam and beans are substitute goods','','','c','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(122,'Private and public limited liability companies are not the same because  ','Former is limited to fifty shareholders but not the later  ','both are not legal entities  ','Former is established secretly but latter is located in central places  ','Former is managed by board of directors but latter is managed by board of management.','','','a','','post-utme','2012',100,'Admin','0000-00-00 00:00:00','2020-07-22 10:44:43'),(123,'If salary of worker increases from 50,000 to 80,000 Naira and average price of certain commodities consumed by the worker increase from 120 Naira to 160 Naira then  ','The nominal income increases but leave the real income constant  ','The real income increases, but nominal income has reduced  ','The nominal income increases, but real income decreases  ','Both the nominal and real income increase','','','d','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(124,'Discount rate means  ','Rate at which money are borrowed from commercial bank  ','Rate at which bank receive deposit from the public  ','Central bank rate on the money borrowed by commercial banks  ','Commercial bank rate on the money borrowed from other commercial bank','','','c','','post-utme','2012',87,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(125,'When the government expenditure and income are the same in fiscal year, this is referred as;','Net balance  ','Zero balanced budget  ','Balanced budget  ','Net income ','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:48'),(126,'Inflation as a result of increase in the payment for factors of production is called  ','Cost-pull inflation  ','Demand-push inflation  ','Cost-push inflation  ','Demand pull inflation ','','','c','','post-utme','2012',82,'Admin','0000-00-00 00:00:00','2020-08-12 16:33:05'),(127,'When Lump-sun tax is paid by a producer, it means that;  ','The tax is paid proportional to the quantity of output produced  ','The tax is paid regardless of volume of output  ','The tax is paid in arrears  ','The tax is returned to the producer after the payment','','','b','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(128,'The following is not correct  ','Average variable cost equals average total cost minus average fixed cost   ','Average fixed cost equals average variable cost minus average total cost  ','Average total cost equals average variable cost plus average fixed cost  ','Average total cost minus average variable cost equals average fixed cost ','','','b','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-16 12:39:39'),(129,'Normal profit means;  ','All the accountant cost are covered but not all the economist cost  ','All the economist cost are covered but not all the accountant cost  ','More than economist cost are covered  ','None of the economist and Accountant costs is covered ','','','a','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-08-13 12:58:38'),(130,'If the price of commodity X increases because of the increase in the price vis-à-vis the increase in demand  for other commodities are likely to be  ','Complimentary  ','Substitute  ','Compose  ','Intermediate','','','a','','post-utme','2012',92,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(131,'The following may not inflate the National Income figure ','Student’s bursary  ','Owners occupied houses  ','Office Inducement  ','Intermediate goods','','','b','','post-utme','2012',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:24:57'),(132,'Legal Entity means  ','A company is owned by large number of people  ','A company is owned by small number of people  ','A company is insulated against litigation  ','A company is not insulated against litigation ','','','d','','post-utme','2012',79,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(133,'In the ownership structure of joint stock company the following is correct;  ','Ordinary shareholders are stronger than preferential shareholders  ','Preferential shareholder are stronger than ordinary shareholders  ','Ordinary shareholders are settled first in case of company’s liquidation  ','Ordinary and preferential shareholders are perpetual rivals ','','','a','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(134,'The difference between the output proceedings of Nigerians abroad and foreigners in Nigeria is known as;  ','Net export to abroad  ','Net import from abroad  ','Net income from abroad  ','Net income to abroad','','','a','','post-utme','2012',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:01'),(135,'A stock variable is measured;  ','Over a period  ','At a point  ','Consistently  ','Intermittently ','','','b','','post-utme','2012',94,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(136,'The following is not true of price mechanism ','Equilibrium price is determined by forces of demand and supply  ','Individual households and firms pursue personal interest  ','Producers and consumers are rational in decision making ','Price control in prominent in the commodity and input markets.','','','d','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-07-28 03:35:44'),(137,'In the short run, all of the following are applicable except  ','Output may be increased by changing all factors by the same proportion  ','Diminishing returns   ','There are sunk costs ','The total cost curve is the same as the total variable cost curve ','','','a','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(138,'The sum of MPS and MPC is  ','greater than 1 but less than infinity  ','greater than 0 but less than 1 ','equal to 1 ','none of the above','','','c','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:06'),(139,'For a perfectly competitive market, the shape of the --------- is horizontal while the ----------- is downward slopping  ','industry’s demand curve/industry’s supply curve  ','firm’s supply curve/industry’s demand curve  ','firm’s demand curve/industry’s demand curve  ','industry’s demand curve/firm’s demand curve','','','c','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-22 10:08:33'),(140,'Demand for money is: ','Composite demand  ','Derive demand  ','Joint demand  ','C and B ','','','b','','post-utme','2013',80,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:08'),(141,'If the cross elasticity of demand between X and Y is zero, then   ','X and Y are substitutes ','X and Y are complements ','X and Y are dependent on each other  ','X and Y are independent of each other ','','','d','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:10'),(142,'Which of the following correctly defines inflation? ','A one-time increase in commodity prices ','A period when prices increase rapidly','A sustained increase in the overall price level ','An increase in the overall level of business activity','','','c','','post-utme','2013',95,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(143,'If a market for good X is in disequilibrium, which of the following statements is true about the quantity of X that is actually exchanged?  ','It is determined by the forces of demand  ','it is determined by the forces of supply  ','it is determined by both demand and supply forces  ','it is determined by the forces of demand or supply whichever is shorter ','','','c','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(144,'How can we eliminate a surplus in a commodity market? ','Increase quantity supplied ','Decrease quantity demanded  ','Allowing price to fall towards equilibrium  ','Allowing price to rise towards equilibrium ','','','c','','post-utme','2013',85,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(145,'Identify one among the following which is NOT part of the objectives or functions of the African Development Bank (ADB). ','Provision of technical assistance for development projects   ','Provision of funds for the supply and demand of infrastructural facilities  ','Adoption of a common tariff policy for trade and development  ','Provision of fund for agricultural development','','','c','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(146,'When the product of any one firm in an industry is not  perceived by consumers as a perfect substitute for the product of any other firm in the same industry, we have ','Perfect competition','Monopoly  ','Oligopolist ','Monopolistic competition   ','','','b','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(147,'In which of the following situations do we have a free good?  ','At zero price, more is demanded than supplied  ','At zero price, quantity supplied exceeds quantity demanded  ','At equilibrium price, quantity supply is equal to quantity demanded. ','Any quantity can be obtained when the price is low ','','','b','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-08-19 06:45:25'),(148,'In economics, a commodity is said to have an opportunity cost because  ','The price of the commodity is high  ','The commodity is scarce  ','Another good may have been purchased instead of it  ','The commodity provides many benefits','','','c','','post-utme','2013',90,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(149,'One among the following options is not correct ','Any point inside the production possibility curve indicates unemployment or underemployment  ','Increase in the price of a commodity leads to a fall in the demand for its substitute ','The fixing of price above the equilibrium price level leads to surplus of the commodity ','An increase in both market supply and market demand may not result in a change in equilibrium price and quantity. ','','','d','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(150,'A country’s aggregate consumption was N20 million when its GDP was N100million. Following an increase in GDP to N120 million, consumption increased to N25 million. The marginal propensity to consume is given as','0.25','0.5','0.75','0.8','','','a','','post-utme','2013',90,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(151,'Which of the following is not a measure for controlling inflation by the central bank?  ','Open market operation  ',' Reserve requirements  ','Sale of treasury bills ',' change of central Bank Governor','','','d','','post-utme','2013',100,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(152,'A 50% increase in the quantity demanded of a commodity, following a 100% decrease in its price, shows that the commodity has ','Fairly elastic demand  ','Unitary elastic demand','Inelastic demand','Perfectly elastic demand ','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:40'),(153,'A total utility is increasing, marginal utility is  ','Negative and decreasing  ','Positive and increasing  ','positive and decreasing   ','Zero','','','c','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:41'),(154,'Which of the following statements is true? ','Disposable income is the only variable that determines consumption   ','Investment spending is positively related to the rate of interest   ','imports lead to a decrease in the level of exports  ','Imports lead to a decrease in spending on locally produced goods and services.','','','d','','post-utme','2013',99,'Admin','0000-00-00 00:00:00','2020-08-09 21:12:42'),(155,'Which of the following will benefit a producer who wants to maximize profit?  ','reduce price when demand is inelastic ','increase price when demand is elastic   ','reduce price when demand is elastic  ','fixed the price of his commodity based on the price of other producers.','','','c','','post-utme','2013',88,'Admin','0000-00-00 00:00:00','2020-08-20 12:43:31'),(156,'Based on the fact that demand curve shows the maximum price at which consumers will buy, it then shows ','average benefit   ','marginal benefit  ','total benefit  ','optimal satisfaction ','','','b','','post-utme','2013',86,'Admin','0000-00-00 00:00:00','2020-07-16 17:21:34'),(157,'Money that a government has required to be accepted in settlement of debts is ','commodity money  ','currency value  ','barter   ','legal tender ','','','d','','post-utme','2013',96,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:47'),(158,'Which of the following is one of the responsibilities of the Central Bank of Nigeria? ','issuing new bond to finance public sector borrowing requirements  ','auditing the various agencies and departments of government  ','loaning money to other countries that transact business with Nigeria  ','assisting banks that are in financial position ','','','a','','post-utme','2013',79,'Admin','0000-00-00 00:00:00','2020-07-14 14:25:54'),(159,'The law of comparative cost and absolute cost advantage are not the same is that; ','Former require that one of the countries has absolute advantage in the two goods but latter does not   ','Former requires one country to have at least absolute advantage in one of the trading goods over the other country but latter does not.','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in all the goods.  ','Former does not require any of the country to have absolute advantage in any of the two goods but latter require that one of the countries should have absolute advantage in at least one of the goods.','','','d','','post-utme','2013',101,'Admin','0000-00-00 00:00:00','2020-08-12 18:45:05'),(160,'When demand for a product is price inelastic, the following can happen  ','Consumers suffer the entire increase in tax on the product   ','producer suffers the entire increase in tax on the product  ','producer suffers larger proportion of the increase in tax on the product  ','consumers suffer larger proportion of the increase in tax on the product ','','','d','','post-utme','2013',89,'Admin','0000-00-00 00:00:00','2020-08-19 06:45:25'),(161,'Disposable income means:','Income that is lost after tax has been removed   ','Income that could be spent when tax has been removed   ','Income that tax authority mandated to be given to charity when tax has been removed  ','Income to be disposed secretly for future spending after tax has been removed ','','','b','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-07-29 15:22:25'),(162,'In economics, the pleasure, happiness, or satisfaction received from a product is called: ','Marginal cost ','Rational outcome ','Status fulfillment ','Utility.','','','d','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-08-12 16:39:54'),(163,'A person should consume more of something when its marginal: ','benefit exceeds its marginal cost ','cost benefit ','cost equal its marginal benefit ','benefit is still positive.','','','a','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-07-14 14:26:18'),(164,'Macroeconomics can best be described as the: ','analysis of how a consumer tries to spend income ','study of the large  aggregates of the economy or the economy as whole ','analysis of  how firms attempt to maximum their profits ','study of how supply and demand determine price in individual markets.','','','b','','post-utme','2010',64,'Admin','0000-00-00 00:00:00','2020-08-09 11:14:18'),(165,'When economics say that people act rationally in their self-interest, they mean that individual: ','look and pursue opportunities to increase their utility ','generally disregard the interest of others ','are mainly creatures of habit ','are unpredictable','','','a','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:01'),(166,'As it relates to international trade, dumping: ','is a form of price discrimination illegal under U.S antitrust laws ','is the practice of selling goods in a foreign market at less than the cost ','Constitutes a general case for permanent tariffs ','is defined as selling more goods than allowed by an import quota.','','','b','','post-utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-31 07:56:41'),(167,'A nation’s production possibility curve is bowed out from the origin because:','wants are virtually unlimited ','the originator of the idea drew it this way and modem economists follow this convention ','resources are scare ','resources are not equally efficiency in producing every good.','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:11'),(168,'If the production possibilities, curve were a straight down sloping line, this would suggest that: ','it is possible to produce  more of both products ','resources are perfectly shift able between the production  of these two goods ','both products are equally capable of satisfying consumer wants ','the two products have identical price.','','','b','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:16'),(169,'Productive efficiency refers to: ','the use of the least-cost method of production ','the production of the product-mix most wanted by society ','the full employment of all available resources ','production at some point inside of the production possibilities curve.','','','a','','post-utme','2010',102,'Admin','0000-00-00 00:00:00','2020-07-28 03:45:03'),(170,'Which of the following statement is correct? ','if demand increase and supply decrease equilibrium price will fall ','if supply increase and demand decrease, equilibrium price will fall ','It demand decrease and supply increase increases, equilibrium price will rise ','If supply declines and demand remain constant, equilibrium price will fall.','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(171,'If depreciation exceeds gross investment: ','the economy’s stock of capital may be either growing or shrinking  ','the economy’s stock of capital is growing ','net investment is zero ','the economy’s stock of capital is shrinking.','','','d','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-08-13 13:06:20'),(172,'Assuming the total population is 100 million, the civilian labour force is 50 million and 47 million workers are employed, the unemployment rate is ','3%','6%','7%','5.30%','','','b','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(173,'Unemployment involving a mismatch of the skills of unemployment workers and the skill required for available jobs is called: ','frictional unemployment ','structural unemployment ','cynical unemployment ','','','','b','','post-utme','2010',98,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:40'),(174,'The greater is the marginal propensity to consume, the: ','smaller is the marginal propensity to save ','higher is the interest rate ','lower is the average propensity to consume ','lower is the rice level.','','','a','','post-utme','2010',81,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(175,'Investment and saving are, respectively: ','income and wealth ','stock & flows ','injection: and leakages ','leakages and injections:','','','c','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(176,'The amount by which government expenditures exceed revenues during a particular year is the: ','public debt ','budget deficit ','full- employment ','GDP gap.','','','a','','post-utme','2010',88,'Admin','0000-00-00 00:00:00','2020-07-26 11:05:19'),(177,'The value of money varies ','inversely with the price of level ','directly with the volume of employment ','directly with the price level ','directly with the interest rate.','','','a','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-08-03 03:35:03'),(178,'If actual reserves in the banking system are #40,000, excess reserves are #10,000, and checkable deposits are #240,000, then the legal reserve requirement is: ','10%','12.50%','20%','5%','','','b','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-08-19 06:45:25'),(179,'The discount rate is the interest: ','rate at which the Central Bank of Nigeria lends in the Nigeria Government ','yield on long-term government bonds ','rate at which commercial banks lend to the public ','rate at which the Central Banks of Nigeria lend to commercial banks.','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(180,'Assume a household would consume N100 worth of goods and services per week if its weekly income were zero and would spend an additional N80 per week for each 100 of additional income, if C represents consumption and Y income the equation that summarizes this relationship is','C =8+100Y ','C=100+8Y ','C = 100+80Y ','C=80+1Y','','','b','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(181,'For a bicycle company, an economist predicted that, other things being equal, a rise in consumer incomes will increase the demand for bicycles. This prediction is based on the assumption that: ','there are many goods that are substitutes for bicycles ',' there are many goods that are many goods that are substitutes for bicycles','there are many goods that are substitutes for bicycles ','bicycles are normal goods','','','d','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-08-18 12:14:00'),(182,'A demand curve which is parallel to the horizontal axis is','perfectly inelastic ','perfectly elastic ','relatively inelastic ','relatively elastic.','','','b','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-08-20 13:17:17'),(183,'Allocative efficiency occurs only at that output where: ','marginal benefit exceeds marginal cost the by greatest ','consumer surplus exceeds producer surplus by the greatest amount ','the areas of consumer and producer surplus are equal ','the combined amounts of consumer surplus and producer surplus are maximizes.','','','d','','post-utme','2010',73,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:51'),(184,'The primary problem of economics is: ','to obtain more equitable distribution of money income ','production of a given output with the lowest cost combination of factors of production ','Adoption of capital- intensive technology ','Increasing the quantity of the fixed factor of production.  ','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-07-14 14:27:52'),(185,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',88,'Admin','2016-11-12 19:57:40','2020-08-03 03:35:03'),(186,'Economic problems arise because','resources are scarce relative to wants','man is insatiable','money is scarce','man engages in too many economic activities','','','a','','wassce','2001',96,'Admin','2016-11-12 20:04:09','2020-08-18 12:14:00'),(187,'The economic system in which resources are privately owned is known as','capitalism','socialism','Communism','unitarism','','','a','','wassce','2001',90,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:30'),(188,'Quasi-rent refers to','Payment made on acquisition of firm’s premises','Payment  made  for  the  procurement  of  tools  and equipment','Returns on investment','Payment made on  any  factor  of  production  that  is temporarily fixed in supply','','','d','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:30'),(189,'The reward for entrepreneurship is','rent','wages','Interest','profit','','','d','','wassce','2001',78,'Admin','2016-11-12 20:04:11','2020-07-14 14:27:56'),(190,'Which of the following is function of an entrepreneur?','Avoidance of risks','Decision making','Employment control','Organizing unions','','','b','','wassce','2001',82,'Admin','2016-11-12 20:04:11','2020-08-13 13:06:20'),(191,'The difference between the highest and lowest in a set of data is the','Range','median','variance','mode','','','a','','wassce','2001',99,'Admin','2016-11-12 20:04:11','2020-08-12 16:33:05'),(192,'In which of the following economic systems is the consumer referred to as King?','Capitalist economy','Socialist economy','Communist economy','Mixed Economy','','','a','','wassce','2001',97,'Admin','2016-11-12 20:04:11','2020-07-26 11:05:19'),(193,'The dispersal of people in a country is called','mobility of people','geographical distribution','occupational distribution','state distribution','','','a','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:00'),(194,'In a country with ageing population, the total population','comprises young school leavers only','comprises mainly women','is increasing at a low rate','has reached the optimum level','','','c','','wassce','2001',103,'Admin','2016-11-12 20:04:11','2020-08-13 13:06:20'),(195,'Population growth can be controlled by all the following except','legalizing abortion','incentives on immigration','family planning','limiting number of children per family','','','b','','wassce','2001',81,'Admin','2016-11-12 20:04:11','2020-08-12 18:45:05'),(196,'Performance of one task in a production process is known as','Specialization','standardization','division of labour','segmentation','','','a','','wassce','2001',101,'Admin','2016-11-12 20:04:11','2020-08-13 12:58:38'),(197,'The marginal product at the fourth variable factor is','12','9','8','6','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',98,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:04'),(198,'The difference between the highest and the least marginal','product of the variable factor is    \\n\t3','8','10','12','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','a','','wassce','2001',79,'Admin','2016-11-12 20:04:11','2020-08-12 18:45:05'),(199,'The average product of the variable factor when four units are employed is','6','8','12','48','Use the value to answer question: Units  of Variable factor [1,2,3,4,5,]  Total Product [25,31,40,48,55]','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-21 11:33:29'),(200,'The cost incurred by using both fixed and variable factors in production is called','marginal cost','fixed cost','total cost','average cost','','','c','','wassce','2001',97,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:06'),(201,'Consumers buy more of a commodity at a lower price than at a higher price because','producers like to produce more','in any given situation, people like to buy more','consumers like to show off','with the same amount of money, they will be able to buy more','','','d','','wassce','2001',87,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:29'),(202,'The demand for a commodity not directly for immediate consumption but for the production of another commodity is','competitive demand','derived demand','composite demand','joint demand','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:14'),(203,'Which of the following is a luxury item?','Petrol','Textbook','Pencil','Gold','','','d','','wassce','2001',94,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:28'),(204,'If the quantity demanded of a particular commodity is represented by the function Qd = 30 - 2p. What is the quantity demanded at a price of twelve Naira?','6 units','8 units','10 units','12 units','','','a','','wassce','2001',92,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:16'),(205,'The responsiveness of demand to a change in income is the measurement of','foreign exchange rate','cross elasticity of demand','income elasticity of demand','price index elasticity','','','c','','wassce','2001',86,'Admin','2016-11-12 20:04:11','2020-07-14 14:28:17'),(206,'The upward sloping of the supply curve indicates that','more will be supplied as price rises','less will be supplied as price rises','supply is not a function of price','supply is static and demand is dynamic','','','a','','wassce','2001',105,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:28'),(207,'Monoculture agriculture means','the cultivation of seasonal crops','the cultivation of one major crop','plantation agriculture','shifting cultivation!','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:11','2020-07-31 07:56:41'),(208,'Industries are not sited in most rural areas of Nigeria because','of inadequate basic infrastructure','they lack raw materials','there is no appropriate government policy','the climate is not conducive','','','a','','wassce','2001',93,'Admin','2016-11-12 20:04:11','2020-08-15 01:00:26'),(209,'Which of the following business units can issue shares?','Sole trader','Private limited company','Central Bank','Supermarket','','','b','','wassce','2001',94,'Admin','2016-11-12 20:04:11','2020-08-13 13:06:20'),(210,'When the government initiates measures to make an organization in which it has substantial interest more profit \toriented, such a business is described as being','indigenized','restructured','Privatized','commercialized','','','d','','wassce','2001',71,'Admin','2016-11-12 20:04:11','2020-08-18 12:14:00'),(211,'Which of the following is not a trade union in Nigeria?','Nigerian Labour Congress','Academic Staff Union of Universities','Nigerian Economic Society','Nigerian Union of Journalists','','','c','','wassce','2001',98,'Admin','2016-11-12 20:04:12','2020-08-20 12:43:31'),(212,'The monopolist power can be controlled by the government through','Labour union','Price legislation','import restrictions','export promotion','','','b','','wassce','2001',94,'Admin','2016-11-12 20:04:12','2020-07-31 07:56:41'),(213,'Which of the following is not a condition for a perfect market?','Homogenous commodity','Ignorance of consumers','Perfect information','Free entry and exit','','','b','','wassce','2001',92,'Admin','2016-11-12 20:04:12','2020-08-09 11:14:18'),(214,'The reward for shareholdership of a company is','Wages','interest','dividends','profit','','','c','','wassce','2001',98,'Admin','2016-11-12 20:04:12','2020-08-20 12:43:31'),(215,'In a public corporation, the risks of business are borne by the','workers','tax payers','board members','treasury','','','b','','wassce','2001',95,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:29'),(216,'One of the functions of money is','double coincidence of wants','unit of account','indivisibility','making payments through banks only','','','b','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-07-29 15:50:46'),(217,'Money is demanded for which of the following reasons?','To meet unforeseen contingencies','To solve the problem of inflation','It is easily divisible','It is portable','','','a','','wassce','2001',106,'Admin','2016-11-12 20:04:12','2020-08-19 06:45:25'),(218,'The Quantity Theory of money states that a reduction in the quantity of money in circulation would bring about','a geometrical fall in prices','a proprotionate fall in price','a rise in prices','an unequal fall in prices','','','b','','wassce','2001',85,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:29'),(219,'Which of the following is the most liquid asset?','Bank notes','Silver','Bank deposit','Cheques','','','b','','wassce','2001',106,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:30'),(220,'The situation in which there is a persistent fall in the general price level is referred to as','devaluation','depreciation','deflation','inflation','','','c','','wassce','2001',77,'Admin','2016-11-12 20:04:12','2020-07-14 14:28:31'),(221,'Commercial banks settle their daily interbank indebtedness through the','Money Market','Finance House','Acceptance House','Clearing House','','','d','','wassce','2001',86,'Admin','2016-11-12 20:04:12','2020-08-15 00:59:49'),(222,'One disadvantage of inflation is that','fixed income earners gain','fixed income earners lose','businessmen lose','standard of living rises','','','b','','wassce','2001',93,'Admin','2016-11-12 20:04:12','2020-08-18 12:14:00'),(223,'Short-term loans can be sourced from','the central bank','development banks','mortgage banks','commercial banks','','','d','','wassce','2001',83,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:27'),(224,'If there is an increase in wages and salaries without a corresponding increase in the supply of goods and services, the situation will lead to','a reduction in aggregate demand','inflation','depression','budget surplus','','','b','','wassce','2001',96,'Admin','2016-11-12 20:04:12','2020-08-15 00:59:51'),(225,'Public expenditure can be financed from all the following sources except','borrowing','grant-in-aid','royalties and rents','Mobilization fees','','','a','','wassce','2001',91,'Admin','2016-11-12 20:04:12','2020-08-18 12:14:00'),(226,'Which of the following is a direct tax?','Import duty','Export duty','Capital gain tax','Sales tax','','','c','','wassce','2001',94,'Admin','2016-11-12 20:04:12','2020-08-15 01:00:29'),(227,'Tax evasions means','postponing payment of tax','tax payment according to ability to pay','making false declaration of taxable income','paying little amount of money as tax','','','c','','wassce','2001',98,'Admin','2016-11-12 20:04:12','2020-08-20 12:43:31'),(228,'A greater burden of tax on a product with high price elasticity of demand rests mainly on the','producer','teacher','civil servant','middlemen','','','a','','wassce','2001',88,'Admin','2016-11-12 20:04:12','2020-08-19 06:45:25'),(229,'An ad valorem tax refers to a tax','imposed on exports','on goods manufactured in the country','based on the value of the commodity','levied on income','','','c','','wassce','2001',103,'Admin','2016-11-12 20:04:12','2020-08-13 12:58:38'),(230,'Which of the following is associated with the development of the petroleum industry in Nigeria?','Neglect of agriculture','Increase in population growth','Increase in the rate of Unemployment','Decrease in the rate of inflation','','','a','','wassce','2001',99,'Admin','2016-11-12 20:04:12','2020-08-15 00:59:56'),(231,'The following are examples of economic goods except','bottled water','air','household utensils','shelter','','','b','','wassce','2010',81,'Admin','2016-11-12 20:44:26','2020-07-29 15:22:25'),(232,'A tent-making factory offers','personal services','indirect services','social services','reflex services','','','b','','wassce','2010',82,'Admin','2016-11-12 20:44:28','2020-08-15 01:00:29'),(233,'In which of the following economic systems do we have mostly private ownership of resources and individual','decision making?','Capitalist system','Socialist system','Mixed system','','','a','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-08-12 16:39:54'),(234,'The sum of items divided by the number of items is the','Frequency','mean','median','mode','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:45'),(235,'Find the median of the following set of scores: 8, 9, 6, 5, 10','9','8','6','5','','','b','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:46'),(236,'Which of the following causes the demand curve to shift to the right?','A reduction in the size of population','An increase in the income of the buyer','The availability of substitutes','A decrease in price of the good','','','d','','wassce','2010',94,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:47'),(237,'Goods for which demand rises as income rises are','complementary goods','inferior goods','normal goods','substitutes','','','c','','wassce','2010',89,'Admin','2016-11-12 20:44:29','2020-08-15 00:59:54'),(238,'The slope of a supply curve is','Horizontal','uniform','positive','vertical','','','c','','wassce','2010',77,'Admin','2016-11-12 20:44:29','2020-08-15 00:59:56'),(239,'Equilibrium price is the price at which quantity','demanded is greater than quantity supplied','supplied is greater than quantity demanded','demanded is equal to quantity supplied','supplied equals quantity produced','','','c','','wassce','2010',95,'Admin','2016-11-12 20:44:29','2020-08-15 01:00:28'),(240,'A decrease in supply with demand remaining unchanged will cause the equilibrium price for a good to','be unchanged','remain elastic','remain inelastic','rise','','','d','','wassce','2010',77,'Admin','2016-11-12 20:44:29','2020-08-15 01:00:27'),(241,'At the highest level of total utility, marginal utility is','Negative','positive and falling','positive and rising','zero','','','d','','wassce','2010',66,'Admin','2016-11-12 20:44:29','2020-08-15 00:59:55'),(242,'The law of diminishing marginal utility states that, the more a commodity is consumed the','higher the satisfaction derived from an additional unit','higher the price to be paid','lower the quantity supplied','lower the rate of increase in the total utility derived','','','d','','wassce','2010',88,'Admin','2016-11-12 20:44:29','2020-08-03 03:35:03'),(243,'Greater inter-dependence among workers in production is associated with','utility','manufacturing','division of labour','factory workers','','','c','','wassce','2010',86,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:54'),(244,'If TC, FC and VC represent total cost, fixed cost and variable cost respectively, which of the following is\\n\tcorrect?','TC = FC-VC','FC = TC + VC','TC > FC + VC','TC = FC + VC','','','d','','wassce','2010',96,'Admin','2016-11-12 20:44:29','2020-08-18 12:14:00'),(245,'The reward to land as a factor of production is','Profit','rent','interest','wage','','','b','','wassce','2010',85,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:57'),(246,'A firm is said to be a public joint stock company when it','is owned by the government','sells its shares to members of the public','operates as a government corporation','is not legally recognized as a firm','','','b','','wassce','2010',102,'Admin','2016-11-12 20:44:29','2020-08-15 00:59:56'),(247,'All the following are sources of finance to a joint stock company except','debentures','cooperative loans','shares','bank loans','','','b','','wassce','2010',73,'Admin','2016-11-12 20:44:29','2020-07-14 14:28:59'),(248,'The public sector of an economy includes','cooperative societies','nationalized industries','joint stock companies','pressure groups','','','b','','wassce','2010',92,'Admin','2016-11-12 20:44:29','2020-08-20 13:17:17'),(249,'One advantage of the Sole Proprietorship over other forms of business organizations is that it can','make very high profits','employ many workers','keep its affairs private','produce on a very large scale','','','c','','wassce','2010',70,'Admin','2016-11-12 20:44:33','2020-07-29 15:22:25'),(250,'Which of the following is obtainable in a perfect market?','P = MR >AR','MR = MC>P','MR < P','P = MR = MC','','','d','','wassce','2010',73,'Admin','2016-11-12 20:44:33','2020-07-14 14:29:03'),(251,'The wholesaler performs the following functions except','breaking the bulk','offering credit facilities to consumers','financing manufacturers','buying in bulk from manufacturers','','','b','','wassce','2010',86,'Admin','2016-11-12 20:44:33','2020-08-18 12:14:00'),(252,'Age Group\t[0 -15\t\t30%], [16 - 40\t\t27%], [41 - 60\t\t25%], [61 and above\t18%] The data shows the age distribution of a country \\n\tin 1983. Using the data, calculate the percentage of working population in 1983.','48%','52%','57%','70%','','','b','','wassce','2010',85,'Admin','2016-11-12 20:44:33','2020-08-15 01:00:30'),(253,'A country whose population size is too small relative to its resources is','over populated','optimally populated','under populated','producing the optimum output','','','c','','wassce','2010',85,'Admin','2016-11-12 20:44:33','2020-08-15 00:59:56'),(254,'An efficient weapon used in resolving disputes between employers and employees is','co – operation','collective bargaining','display of placards','legal action','','','b','','wassce','2010',68,'Admin','2016-11-12 20:44:33','2020-08-09 11:14:18'),(255,'Which of the following does not explain why a school principal earns more salary than a school messenger?','Length of training','Demand and Supply','Cost of training','The messenger is a non-teaching staff','','','b','','wassce','2010',79,'Admin','2016-11-12 20:44:33','2020-07-29 15:22:25'),(256,'The role of government in promoting agricultural development includes the following except','paying the wages of all farmers','establishing and funding research','formulation of policies','provision of rural infrastructure','','','a','','wassce','2010',94,'Admin','2016-11-12 20:44:33','2020-07-28 03:35:44'),(257,'The following are advantages of large scale agriculture except','use of simple implements','use of sophisticated implements','increase in employment','integration of crop and animal farming','','','a','','wassce','2010',86,'Admin','2016-11-12 20:44:33','2020-08-15 01:00:29'),(258,'The following are all factors determining the location of industry except','minimum wage rate','availability of labour','nearness to raw materials','proximity to market','','','a','','wassce','2010',87,'Admin','2016-11-12 20:44:33','2020-08-15 01:00:29'),(259,'Which of the following is not a concept in National income accounting?','Domestic National Product (DNP)','Gross National Product (GNP)','Gross Domestic Product (GDP)','Net Domestic Product (NDP)','','','a','','wassce','2010',102,'Admin','2016-11-12 20:44:34','2020-08-19 06:45:25'),(260,'Which of the following equations is appropriate for determining the Net Domestic Product (NDP)?','NDP = GNP – depreciation','NDP = GDP + Net Income from abroad','NDP = GDP – depreciation','NDP = GDP x Net Income from abroad','','','c','','wassce','2010',92,'Admin','2016-11-12 20:44:34','2020-08-12 16:33:05'),(261,'Which of the following over estimates the value of national income?','Incomplete statistical data','Wrong timing of computation','Changes in prices of goods within the year','Double counting','','','d','','wassce','2010',85,'Admin','2016-11-12 20:44:34','2020-08-20 13:17:17'),(262,'The total stock of money available for use in an economy is','a function of money','a characteristic of money','the demand for money','the supply of money','','','d','','wassce','2010',86,'Admin','2016-11-12 20:44:34','2020-08-15 01:00:27'),(263,'Which of the following is not a reason for holding money?','Ostentation','Speculation','Transactions','Precautionary','','','a','','wassce','2010',76,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:22'),(264,'The best way of combating demand-pull inflation is to','increase income taxes','reduce income taxes','increase import duties','increase salaries and wages','','','a','','wassce','2010',83,'Admin','2016-11-12 20:44:34','2020-08-15 00:59:49'),(265,'In which of the following ways has','Increase in money supply','A fall in real income','Appreciation in the value of money','Increased employment','','','b','','wassce','2010',81,'Admin','2016-11-12 20:44:34','2020-08-07 10:17:17'),(266,'Which of the following is a legal tender?','Bank notes','Bank overdrafts','Bills of exchange','Money order','','','a','','wassce','2010',73,'Admin','2016-11-12 20:44:34','2020-07-14 14:29:25'),(267,'The Central Bank controls money supply through all the following except','lending to the public','bank rate','legal reserve requirements','open market operation','','','a','','wassce','2010',84,'Admin','2016-11-12 20:44:34','2020-07-29 15:50:46'),(268,'One of the functions of the Central Bank is','production of goods','issuing of currency','presenting budgets','printing of cheque book','','','b','','wassce','2010',82,'Admin','2016-11-12 20:44:34','2020-08-12 16:39:54'),(269,'The function of the Central Bank as a lender of last resort means that when all other sources fail','the consumer can always borrow money from the Central Bank','the government can ask the Central Bank to print more money','commercial banks can raise loans from the Central Bank','commercial banks can deposit money with the Central Bank','','','c','','wassce','2010',104,'Admin','2016-11-12 20:44:34','2020-08-18 12:14:00'),(270,'One disadvantage of direct taxes is that they','allocate scarce resources','are not rigid','can be progressive.','can be evaded','','','d','','wassce','2010',89,'Admin','2016-11-12 20:44:34','2020-07-29 15:22:25'),(271,'Human wants are','Limited','scarce','unlimited','in grades','','','c','','wassce','2012',86,'Admin','2016-11-12 21:02:57','2020-08-19 06:45:25'),(272,'The difference between the money cost and the real cost of any item is that','real cost is the alternative forgone while the money cost is the actual amount paid for buying the item','the real cost is the opportunity cost, while the money cost is the marginal cost','money cost is the opportunity cost, while the real cost is the actual cost in monetary terms','money cost is always greater than real cost','','','a','','wassce','2012',79,'Admin','2016-11-12 21:03:03','2020-08-18 12:14:00'),(273,'The Production Possibility Curve (PPC) indicates that as \tmore of one good is produced','less of the other good is produced','the same quantity of the other good is produced','more of the other good is produced','none of the other good is produced','','','a','','wassce','2012',77,'Admin','2016-11-12 21:03:03','2020-08-15 00:59:50'),(274,'An arrangement of data in rows and columns is referred to as a','Graph','bar chart','pie chart','Table','','','d','','wassce','2012',93,'Admin','2016-11-12 21:03:03','2020-08-09 21:12:42'),(275,'A normal demand curve slopes','downwards from left to right','upwards from right to left','downwards from right to left','upwards from left to right','','','a','','wassce','2012',74,'Admin','2016-11-12 21:03:03','2020-08-15 01:00:29'),(276,'The co-efficient of income elasticity of demand for inferior goods is','Positive','equal to one','less than one','negative','','','d','','wassce','2012',76,'Admin','2016-11-12 21:03:03','2020-08-15 00:59:56'),(277,'If a 20% rise in the price of  Whisky leads to a 30% increase in quantity demanded of Schnapps, the cross elasticity of demand is','3.0','2.5','2.3','1.5','','','d','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-08-20 12:43:31'),(278,'Palm oil and palm kernel have','competitive supply','excess supply','joint supply','composite supply','','','c','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-07-29 15:22:25'),(279,'A supply curve which is vertical has an elasticity co-efficient of','0','0.5','1.5','2','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:04','2020-07-15 09:09:54'),(280,'If the current price of an apple is twice that of last year, it implies that the value of money is','Stable','falling','rising','getting stronger','','','b','','wassce','2012',75,'Admin','2016-11-12 21:03:04','2020-08-15 01:00:30'),(281,'Price fixed above the equilibrium is to','protect agricultural producers','discourage agricultural producers','lower the prices of agricultural produce','favour consumers','','','a','','wassce','2012',91,'Admin','2016-11-12 21:03:04','2020-08-03 03:35:03'),(282,'A consumer purchasing a commodity X will maximize his satisfaction if','Px = Mux','Px  >_  MUx','Px > Mux','Px < Mux','','','a','','wassce','2012',81,'Admin','2016-11-12 21:03:04','2020-08-15 00:59:51'),(283,'When total utility is constant, it means marginal utility is','Increasing','zero','decreasing','one','','','b','','wassce','2012',76,'Admin','2016-11-12 21:03:04','2020-08-15 00:59:50'),(284,'A rational consumer is one who','spends his income to maximize satisfaction','is not influenced by advertisement','behaves in a particular way all the time','knows the prices of all goods and buys the cheapest','','','a','','wassce','2012',83,'Admin','2016-11-12 21:03:04','2020-08-15 01:00:29'),(285,'Which of the following is not true about land?','The supply is fixed','Land is mobile','It is subject to diminishing returns','Land is heterogeneous','','','b','','wassce','2012',61,'Admin','2016-11-12 21:03:04','2020-08-15 00:59:55'),(286,'The type of production that involves the tapping and \tharnessing of natural resources is','primary production','secondary production','tertiary production','industrial production','','','a','','wassce','2012',80,'Admin','2016-11-12 21:03:04','2020-08-19 06:45:25'),(287,'Which of the following does not change in the short run?','Variable cost','Marginal cost','Total cost','Fixed cost','','','d','','wassce','2012',85,'Admin','2016-11-12 21:03:04','2020-08-18 12:14:00'),(288,'The resources used in production are called','variable inputs','factors of production','capital for production','fixed inputs','','','b','','wassce','2012',101,'Admin','2016-11-12 21:03:04','2020-08-13 12:58:38'),(289,'A firm will shut down in the long run if its earning is','less than normal profit','greater than normal profit','equal to super normal profit','less than super normal profit','','','a','','wassce','2012',66,'Admin','2016-11-12 21:03:04','2020-07-29 15:50:46'),(290,'A market structure where profit is maximized when marginal \trevenue, marginal cost and price are equal is known as','perfect competition','monopoly','oligopoly','imperfect competition','','','a','','wassce','2012',88,'Admin','2016-11-12 21:03:04','2020-08-20 13:17:17'),(291,'In which of the following markets does a firm have power to \tmake super normal profits both in the short run and long run?','Monopol','Duopoly','Oligopoly','Monopsony','','','a','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-08-09 11:14:18'),(292,'If there arc no barriers to entering a market, it means that','anyone can become a buyer or seller','unwanted goods can always enter the market','the market becomes a dumping ground','the goods are not inspected','','','a','','wassce','2012',80,'Admin','2016-11-12 21:03:04','2020-08-15 01:00:30'),(293,'A firm’s main aim is to','survive in business','maximize profits','increase its market share','satisfy the ambitions of its managers','','','b','','wassce','2012',78,'Admin','2016-11-12 21:03:04','2020-08-15 08:59:21'),(294,'One good reason for the elimination of middlemen is that they','cause increase in price','help in price stability','grade and blend goods','are too many','','','a','','wassce','2012',87,'Admin','2016-11-12 21:03:08','2020-08-13 12:58:38'),(295,'The increase in population growth in big cities is referred to as','settlement','migration','industrialization','Urbanization','','','d','','wassce','2012',78,'Admin','2016-11-12 21:03:08','2020-08-20 12:43:31'),(296,'Frictional unemployment can be reduced by','encouraging the use of retraining schemes','removing barriers to labour mobility','restricting the introduction of new technology','lowering the level of wages paid to young people','','','a','','wassce','2012',88,'Admin','2016-11-12 21:03:08','2020-07-21 11:27:15'),(297,'If the labour force of a country is 2.5 million and 2 million are employed, what is the unemployment rate?','0.2%','20%','200%','250%','','','b','','wassce','2012',81,'Admin','2016-11-12 21:03:08','2020-08-18 12:14:00'),(298,'The grouping of population according to the economic activities people engage in is','age distribution','sex distribution','geographical distribution','occupational distribution','','','d','','wassce','2012',94,'Admin','2016-11-12 21:03:08','2020-08-13 12:58:38'),(299,'Natural growth rate of population can be defined as the','difference between birth rate and death rate','number of births in a year','increase in the population growth in a year','difference between the total population and the death rate','','','a','','wassce','2012',98,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:11'),(300,'Which of the following is not a consequence of increased unemployment?','A fall in tax revenue for the government','A reduction in trade union’s influence','A fall in the death rate','An increase in the labour force','','','c','','wassce','2012',80,'Admin','2016-11-12 21:03:08','2020-07-14 14:30:12'),(301,'The following are features of subsistence agriculture except','little capital','processing of raw materials','small allotments of land','use of crude implements','','','b','','wassce','2012',87,'Admin','2016-11-12 21:03:08','2020-08-19 06:45:25'),(302,'Which of the following is not true of small companies?','The cannot benefit from economics of scale','are a good source of new jobs','can satisfy demand in specialist markets','have a good record of technical innovations','','','d','','wassce','2012',96,'Admin','2016-11-12 21:03:08','2020-08-15 00:59:54'),(303,'The effect of privatization on the industrial sector of a country is that it','ensures efficiency','discourages efficiency','leads to decrease in output','leads to liquidation','','','a','','wassce','2012',89,'Admin','2016-11-12 21:03:08','2020-08-20 13:17:17'),(304,'The production strategy used in an over populated country is','import substitution','capital intensive','labour intensive','first come first employed','','','c','','wassce','2012',79,'Admin','2016-11-12 21:03:08','2020-08-15 01:00:27'),(305,'National income is used to measure','a country’s population size','a country’s economic growth','the human level of development','the flow of imports to a country','','','b','','wassce','2012',77,'Admin','2016-11-12 21:03:09','2020-08-20 13:17:17'),(306,'A tax is regressive if the','rate of tax is constant at all income levels','rate of tax decreases as income increases','rate of tax increases as income increases','tax is direct rather than indirect','','','b','','wassce','2012',86,'Admin','2016-11-12 21:03:09','2020-08-19 06:45:25'),(307,'When a country’s net income from abroad is added to its total \toutput, the result is','gross domestic product','net national product','gross national product','net domestic product','','','c','','wassce','2012',84,'Admin','2016-11-12 21:03:09','2020-08-15 01:00:30'),(308,'A fall in national output will necessitate','a rise in expenditure on imports','a rise in the level of savings','an increase in consumption expenditure','a rise in the standard of living','','','a','','wassce','2012',104,'Admin','2016-11-12 21:03:09','2020-08-19 06:45:25'),(309,'The demand for money to take advantage of changes in bond \tprices is the','unforeseen motive','transaction motive','speculative motive','precautionary motive','','','d','','wassce','2012',72,'Admin','2016-11-12 21:03:09','2020-08-20 13:17:17'),(310,'Cost push inflation is caused by a','rise in the cost of production','decrease in the transportation cost','rise in demand for goods','decrease in the cost of production','','','c','','wassce','2012',90,'Admin','2016-11-12 21:03:09','2020-08-12 16:33:05'),(311,'Deposits held in a commercial bank are part of','money supply','transfer payments','ordinary shares','treasury bills','','','a','','wassce','2012',91,'Admin','2016-11-12 21:03:12','2020-08-03 14:03:53'),(312,'One profitable form of business undertaken by the commercial banks is','the issuing of cheques','the payment of standing order','lending money to borrowers','accepting cheques from customers','','','c','','wassce','2012',85,'Admin','2016-11-12 21:03:13','2020-08-15 01:00:28'),(313,'When governments want to discourage consumption, they \ttax goods whose demand','price inelastic','abnormal in nature','price elastic','normal in nature','','','c','','wassce','2012',92,'Admin','2016-11-12 21:03:13','2020-08-09 11:14:18'),(314,'A rise in government expenditure can lead to','higher inflation','higher unemployment','lower profits for industries','lower importation of raw materials by industries','','','a','','wassce','2012',112,'Admin','2016-11-12 21:03:13','2020-08-15 01:00:29'),(315,'Tariff is used to protect domestic industries by making foreign goods relatively','cheaper in the domestic market','more expensive in the domestic market','more expensive in the international market','cheaper in the international market','','','b','','wassce','2012',89,'Admin','2016-11-12 21:03:13','2020-08-18 12:14:00'),(316,'Musa has a choice of buying a shirt, a book and a bag. What is the opportunity cost of buying a book?','A bag only','A book and a bag','A shirt and a bag','A shirt only','','','c','','utme','2009',105,'Admin','2016-11-12 21:38:46','2020-07-22 22:03:54'),(317,'A typical feature of a market economy is that','all producers make profit','full employment exists','consumer sovereignty exists','there is equality of economic agents','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:47','2020-08-12 16:33:05'),(318,'The privatization exercise in Nigeria is a move towards a','mixed economy','subsistence economy','market economy','command economy','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:47','2020-07-31 07:56:41'),(319,'A high rent on land will affect the cost of producing maize','positively','negatively','at the early stage of production','at the later stage of production','','','b','','utme','2009',113,'Admin','2016-11-12 21:38:47','2020-08-19 06:45:25'),(320,'If the  active  population  is 50  million and unemployed is 5 million, what is the unemployment rate?','10%','45%','55%','90%','','','a','','utme','2009',105,'Admin','2016-11-12 21:38:47','2020-08-13 12:58:38'),(321,'A cumulative frequency graph is','a histogram','an ogive','a bar chart','a pie chart','','','b','','utme','2009',116,'Admin','2016-11-12 21:38:47','2020-07-22 22:02:42'),(322,'A movement along the same demand curve is caused by the','price of the product','price of other products','income of the consumer','taste of the consumer','','','a','','utme','2009',101,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:35'),(323,'The demand curve for a luxury good is','negatively sloped','parallel to the price axis','parallel to the quantity axis','positive sloped','','','d','','utme','2009',100,'Admin','2016-11-12 21:38:47','2020-08-18 12:14:00'),(324,'Price elasticity of demand is expressed as','percentage change in price percentage change in quantity demanded','percentage change in quantity demanded percentage change in Income','percentage change in Income percentage change in quantity demanded','percentage change in quantity demande percentage change in price','','','d','','utme','2009',99,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:01'),(325,'A major assumption in cardinal utility theory is that','utility is measurable','utility is not measurable','total utility equals marginal utility','total utility is constant','','','a','','utme','2009',110,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:02'),(326,'A supply curve is positively sloped because','supply always exceeds demand','demand always exceeds supply','price is an incentive to consumers','price is an incentive to producers','','','d','','utme','2009',111,'Admin','2016-11-12 21:38:47','2020-08-20 12:43:31'),(327,'The short-run supply curve for medical doctors is more  likely to be','perfectly elastic','perfectly inelastic','fairly inelastic','fairly elastic','','','b','','utme','2009',100,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:03'),(328,'If the price of an item changes by 8% and quantity supplied changes from 600 units to 660 units, the price elasticity of supply is','0.80','1.25','2.00','10.00','','','b','','utme','2009',109,'Admin','2016-11-12 21:38:47','2020-07-23 16:01:34'),(329,'In a regulated market, price is determined by','Consumers','producers','auction','government','','','d','','utme','2009',107,'Admin','2016-11-12 21:38:47','2020-08-15 01:00:03'),(330,'A decrease in supply without a corresponding change in demand will lead to','an increase in equilibrium price and a decrease equilibrium quantity','a decrease in equilibrium price and an increase in equilibrium quantity','a decrease in equilibrium price and equilibrium quantity','an increase in equilibrium price and quantity','','','a','','utme','2009',98,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:55'),(331,'Production takes place when','output is transformed into input','machines replace human effort','input is transformed into output','there is specialization and division of labour','','','c','','utme','2009',114,'Admin','2016-11-12 21:38:47','2020-08-18 12:14:00'),(332,'The marginal product of the 5th unit of capital is','42','85','114','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','d','','utme','2009',94,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:55'),(333,'Determine the average product of the 4th unit of capital','53','86','212','213','Use the table below to answer questions. Unit of capital [1,2,3,4,5,6]\t  Total output (kg) [16, 64, 126, 212, 425, 684]','','a','','utme','2009',105,'Admin','2016-11-12 21:38:47','2020-07-22 22:03:44'),(334,'Which of the following can be deduced from law of variable proportions when total output is rising?','MP is greater than AP','MP is less than AP','MP is equal to AP','MP is equal to zero','','','d','','utme','2009',112,'Admin','2016-11-12 21:38:47','2020-08-18 12:14:00'),(335,'As the level of output increases, the average fixed cost of a firm will','continue to increase','remain uncharged','continue to decrease','be equal to the total cost','','','c','','utme','2009',124,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:01'),(336,'The shape of the long-run average cost curve is best explained by the','law of diminishing returns','law of returns to scale','cost of fixed inputs','cost of variable inputs','','','a','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-08-09 11:14:18'),(337,'The supply curve of a perfectly competitive firm is identical to its','total cost','marginal cost','fixed cost','variable cost','','','b','','utme','2009',105,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:03'),(338,'If a monopolist is incurring short–run losses, this means that his','selling price is above the short–run marginal cost','selling price is below the short–run marginal cost','average revenue is greater than marginal revenue','average revenue is less than marginal revenue','','','b','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-07-14 14:31:16'),(339,'In the long run, one of the characteristics of monopolistic competitive firms is that the','make  abnormal profits','suffer losses','make normal profits','collude with each other','','','a','','utme','2009',132,'Admin','2016-11-12 21:38:48','2020-08-13 13:06:20'),(340,'In developing countries, it is easier to obtain accurate national income estimates through the','GNP','GDP','NDP','NNP','','','b','','utme','2009',121,'Admin','2016-11-12 21:38:48','2020-08-13 12:58:38'),(341,'Double counting is a problem in computing national income when using the','expenditure method','income method','output method','value–added method','','','c','','utme','2009',98,'Admin','2016-11-12 21:38:48','2020-08-20 13:17:17'),(342,'In the circular flow of income, an increase in saving causes','an increase in imports','a decrease in the income stream','an increase in household consumption','a decrease in exports','','','b','','utme','2009',103,'Admin','2016-11-12 21:38:48','2020-08-12 16:33:05'),(343,'The ability of commercial banks to create money depends on the','Ratio','liquidity ratio','interest rate','capital base','','','b','','utme','2009',129,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:01'),(344,'The reform in the banking sector in Nigeria is principally \tmotivated by the need to','increase the capital base of banks','provide more money to run the economy','minimize the rate of bank failures','enhance efficiency in bank operations','','','a','','utme','2009',117,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:54'),(345,'A manufacturer who wants to build a new plant will source funds from the','commercial banks','money market','capital market','government','','','c','','utme','2009',106,'Admin','2016-11-12 21:38:48','2020-07-23 16:01:34'),(346,'Cost–push inflation occurs when','production cost is high','factor prices decrease','there is too much money in circulation','government embarks on deficit financing','','','a','','utme','2009',127,'Admin','2016-11-12 21:38:48','2020-08-19 06:45:25'),(347,'If government expenditure exceeds revenue, this results in','balanced budget','national debt','budget deficit','budget surplus','','','c','','utme','2009',122,'Admin','2016-11-12 21:38:48','2020-08-13 12:58:38'),(348,'The Basic Needs Approach to development is directed a','poverty alleviation','provision of educational infrastructure','provision of health services','improvement in worker’s income','','','a','','utme','2009',127,'Admin','2016-11-12 21:38:48','2020-08-18 12:14:00'),(349,'The major reason why countries strive to achieve optimum growth is to','be self–sufficient','raise general living standards','raise the level of production','reduce aggregate expenditure','','','b','','utme','2009',111,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:01'),(350,'According to the theory of comparative advantage, specialization will result in','labour–intensive method of production','capital–intensive method of production','efficient allocation of resources','efficient distribution of output','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-08-13 13:06:20'),(351,'Dumping in international trade means selling a good at a','higher price at home than abroad','lower price at home than abroad','price that equates marginal cost with marginal revenue','price above marginal cost abroad','','','a','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-08-12 16:33:05'),(352,'Guided deregulation as currently practiced in Nigeria implies that','market forces determine interest and exchange rates','government alone determines interest and exchange rates','market forces and government determine interest and exchange rates','exchange rate is regulated while interest rate is fixed','','','c','','utme','2009',95,'Admin','2016-11-12 21:38:48','2020-08-09 21:12:42'),(353,'An important function of the world bank is to','provide short–term loans to members','encourage trade between members','promote capital–intensive productions','provide long–term loans to members','','','d','','utme','2009',108,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:03'),(354,'The major problem confronting a sole proprietor is','high level of risk','limited expertise','limited source of capital','high taxation','','','c','','utme','2009',110,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:45'),(355,'A public liability company is run on a daily basis by','the chief executive','the shareholders','the board of directors','financial consultants','','','c','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-08-19 06:45:25'),(356,'The marketing of agricultural products in Nigeria can be improved by','a massive production of farm produce','re–establishing the marketing boards','establishing more agricultural banks','processing of farm produce','','','b','','utme','2009',109,'Admin','2016-11-12 21:38:48','2020-08-18 12:14:00'),(357,'To enhance the competitiveness of domestic agricultural products, there is need to','ban the importation of agricultural products','increase the exportation of agricultural products','improve the quality of domestic agricultural products','increase the output of domestic agricultural products','','','c','','utme','2009',102,'Admin','2016-11-12 21:38:48','2020-08-12 16:39:54'),(358,'In Nigeria, the location of a steel industry at Ajaokuta is due to','the availability of transport network','the proximity to source of power','the proximity to large deposits of iron ore','political consideration.','','','c','','utme','2009',122,'Admin','2016-11-12 21:38:48','2020-08-12 16:33:05'),(359,'Industries for consumer goods are concentrated in urban centres as result of','large market','power supply','government policy','weather conditions','','','a','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:00'),(360,'The current industrial development strategy in Nigeria is aimed at encouraging','small–scale industries','medium–scale Industries','small – and medium–scale Industries','medium–and large–scale Industries','','','c','','utme','2009',131,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:03'),(361,'Activities in the oil and gas industry are classified into','oil exportation and distribution','refining and marketing of finished products','upstream and downstream','exploration and drilling','','','c','','utme','2009',107,'Admin','2016-11-12 21:38:48','2020-08-15 01:00:01'),(362,'High dependency ratio is influenced by','high infant mortality rate','the level of income','high birth rate','inadequate medical care for children','','','c','','utme','2009',118,'Admin','2016-11-12 21:38:48','2020-07-22 22:03:45'),(363,'Occupational distribution of population determines the','size of a population available and willing to work','population density of a place','dependency ratio of a country','size and categories of the labour force','','','a','','utme','2009',115,'Admin','2016-11-12 21:38:48','2020-07-31 07:56:41'),(364,'The mobility of labour is mainly determined by','the age of workers','government policy','trade unions','wage rate differentials','','','d','','utme','2009',117,'Admin','2016-11-12 21:38:49','2020-08-15 01:00:00'),(365,'When workers have a union, the supply of labour is said to be','Monopolistic','oligopolistic','Monoposonistic','competitive','','','b','','utme','2009',110,'Admin','2016-11-12 21:38:49','2020-08-20 12:43:31'),(366,'Economics is the study of human behaviour as it relates to the','efficient allocation of resources','operation of companies','production of goods','generation of income','','','a','','utme','2010',131,'Admin','2016-11-12 22:11:49','2020-08-13 09:01:03'),(367,'A classroom teacher is promoted to the rank of a principal. This is an example of','vertical mobility','lateral mobility','social mobility','horizontal mobility','','','d','','utme','2010',121,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(368,'The downturn in the prices of shares on stock markets is a \thighlight of','efficient allocation of resources','the regulatory nature of the market','the invisible hand','consumer rationality','','','b','','utme','2010',125,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(369,'If  X = 6 and N = 6, determine the value of   Efx.','36','12','1','72','','','a','','utme','2010',133,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(370,'The standard deviation of a set of data is','always measured from the mode','always measured from the median','the most representative of averages','a measure of dispersion','','','d','','utme','2010',120,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(371,'The mean is the best measure of central tendency because it','is not affected by extreme values in a data','is a balancing point in an observation','is a midpoint value in an array of data','can be calculated from incomplete data','','','b','','utme','2010',117,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(372,'The most popular sizes of dresses and shoes are determined by the','Range','mode','mean','median','','','d','','utme','2010',132,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(373,'If  the demand for a good is more elastic than its supply, the tax burden is borne','equally by consumers and producers','more by consumers','more by producers','more by retailers and producers','','','c','','utme','2010',124,'Admin','2016-11-12 22:11:50','2020-08-20 13:17:17'),(374,'If  the price of a commodity with elastic demand increases, the revenue accruing to the producer will','Double','be constant','increase','decrease','','','d','','utme','2010',124,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(375,'An excess demand for beans will result from','an increase in the price of  beans','a decrease in the price of  beans','an increase in the supply of  beans','a decrease in the supply of  beans','','','b','','utme','2010',127,'Admin','2016-11-12 22:11:50','2020-08-20 12:43:31'),(376,'Consumer surplus tends to be higher when demand is','perfectly elastic','inelastic','elastic','unitary elastic','','','c','','utme','2010',100,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(377,'One of  the assumptions of ordinal utility theory is that','choice is not consistent','total utility is a function of price','utility can be ranked','satisfaction is measurable','','','c','','utme','2010',127,'Admin','2016-11-12 22:11:50','2020-08-19 06:45:25'),(378,'The law of diminishing marginal utility explains why','the slope of a normal demand curve is negative','the slope of a normal demand curve is positive','an abnormal demand curve slopes upward','the consumption of inferior goods increases with income','','','a','','utme','2010',131,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(379,'If a consumer plans to spend 120k on four oranges but spent 80k, his consumer surplus is','N = 1.50','N = 1.00','N = 0.40','N = 2.0','','','c','','utme','2010',122,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(380,'A set of  factors that can shift the supply curve are changes in','weather, price and technology','technology, price and taste','technology, weather and population','population, price and taste','','','c','','utme','2010',139,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(381,'If  the coefficient of price elasticity of supply is greater than one, the supply is said to be','perfectly elastic','infinitely inelastic','fairly inelastic','fairly elastic','','','d','','utme','2010',119,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(382,'If commodity X is a by-product of commodity Y, this implies that both commodities are','in competitive supply','jointly supplied','in composite supply','in excess supply','','','c','','utme','2010',126,'Admin','2016-11-12 22:11:50','2020-08-18 12:14:00'),(383,'In perfect competition, price is determined by the','Government','buyers','sellers','market','','','d','','utme','2010',107,'Admin','2016-11-12 22:11:50','2020-08-13 09:01:03'),(384,'In order to reduce hardship faced by consumers due to high prices, government can introduce','maximum prices','minimum prices','commodity boards','price control boards','','','d','','utme','2010',131,'Admin','2016-11-12 22:11:50','2020-08-20 02:06:26'),(385,'Average product is less than marginal product when','there is constant returns to scale','there is decreasing returns to scale','there is increasing returns to scale','diminishing returns set in','','','c','','utme','2010',125,'Admin','2016-11-12 22:11:51','2020-08-20 13:17:17'),(386,'A firm enjoying economics of scale is said to be','reducing average cost as production increases','maximizing profits as production increases','benefiting from the activities of other firms','having an upward - sloping average cost curve','','','a','','utme','2010',113,'Admin','2016-11-12 22:11:51','2020-08-13 09:01:03'),(387,'The rising portion of the long - run average cost curve of a','firm is an indication that it is experiencing \\n\tincreasing efficiency','diseconomies of scale','economics of scale','increasing marginal returns','','','b','','utme','2010',114,'Admin','2016-11-12 22:11:51','2020-08-20 13:17:17'),(388,'An industry’s supply curve is more likely to be elastic when firms are','enjoying free entry and exit','operating below capacity','operating at full capacity','maximizing profits','','','b','','utme','2010',111,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(389,'One of  the characteristics of  monopolistic competition is that','there is mobility of factors of production','consumers have perfect knowledge of price','no single seller dominates the market','the firms are price – takers','','','a','','utme','2010',128,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(390,'The demand curve for factors of production','is perfectly elastic','slopes downwards','slopes upwards','is perfectly inelastic','','','b','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(391,'An agreement among firms on price and segmentation is termed','Cartel','haggling','collusion','specialization','','','b','','utme','2010',110,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(392,'In national income accounting, tax is determined by the','level of  income','level of investment','level of consumption','rate of savings','','','a','','utme','2010',113,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(393,'A decrease in aggregate spending in an economy will ultimately lead to','Boom','deflation','inflation','recession','','','b','','utme','2010',118,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(394,'If  MPC is 0.7 while government expenditure increased by N= 150m, the equilibrium national income is','N= 214 million','N= 105 million','N= 45 million','N= 500 million','','','b','','utme','2010',136,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(395,'The function of money which makes division of  labour \tpossible is its','unit of account','medium of exchange','store of value','standard of deferred payment','','','b','','utme','2010',134,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(396,'By buying treasury bills, the Central Bank of  Nigeria intends \tto','increase money supply in the economy','reduce money supply in the economy','reduce the cash reserve ratio for banks','increase the capital base of commercial banks','','','b','','utme','2010',129,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(397,'The velocity of money is represented as','money supply /real GDP','real GDPmoney supply','nominal GDP/real GDP','money supply/nominal GDP','','','a','','utme','2010',121,'Admin','2016-11-12 22:11:51','2020-08-20 12:43:31'),(398,'One of the functions of commercial banks is','maintaining stable price in the economy','granting loans to customers','regulating monetary policies','issuing bank notes and coins','','','b','','utme','2010',126,'Admin','2016-11-12 22:11:51','2020-08-18 12:14:00'),(399,'A strategy for curbing unemployment is to','implement government stabilization policy','increase government expenditure and decrease taxes','increase taxes and decrease government expenditure','ensure even distribution of job opportunities','','','b','','utme','2010',128,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(400,'In Nigeria, the huge public debt is as a result of','balanced budgeting','surplus budgeting','deficit budgeting','zero budgeting','','','c','','utme','2010',122,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(401,'National development plans in Nigeria fail mainly because of','over dependence on foreign aids','poor implementation strategies','inadequate funding of projects','shortage of skilled manpower','','','b','','utme','2010',116,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(402,'The ultimate aim of agricultural policies in Nigeria is to achieve','food sufficiency','full employment','industrialization','industrial capacity utilization','','','c','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(403,'Government can boost agricultural output in Nigeria primarily by','embarking on buffer stock programs','granting subsidies on farm Inputs','placing embargo on food importation','placing farmers on monthly income','','','c','','utme','2010',119,'Admin','2016-11-12 22:11:51','2020-08-20 12:43:31'),(404,'Localization of industries refers to the','spread of firms producing different products','concentration of firms of an industry','siting of industries near the market','siting of firms producing different products','','','b','','utme','2010',124,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(405,'in developing countries, governments influence the location of  industries in order to','spread development','encourage entrepreneurs','redistribute wealth','encourage industries to earn high profits','','','a','','utme','2010',122,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(406,'A disadvantage of Nigeria’s dependence on imported petroleum products is the','instability in the demand to the  products','instability in the supply for the products','dominance of multinational firms','poor maintenance of the refineries','','','b','','utme','2010',128,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(407,'The maximum number of shareholders  for a limited liability company is','Twenty','seven','five','infinite','','','d','','utme','2010',111,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(408,'The primary motive for an individual engaging in production is to','make profit','redistribute wealth','satisfy basic human wants','put inputs into use','','','a','','utme','2010',130,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(409,'One of  the characteristics of  free trade zone is','common tariff against non-member countries','free factor mobility within the zone','different trade policies of non-member countries','harmonized trade among member countries','','','b','','utme','2010',128,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(410,'If  Nigeria imports vehicles from Japan, the transaction will appear as a','debit on Japan’s balance of payments','credit on Nigeria’s balance of trade','credit on Japan’s balance of payments','credit on Nigeria’s balance of payments','','','a','','utme','2010',129,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(411,'One of  the objectives of ADB is to','provide subsidies on imported goods to members countries','promote economic and social development of member countries','mobilize short-term loans for member countries','provide technical assistance to only poor member countries','','','c','','utme','2010',114,'Admin','2016-11-12 22:11:51','2020-08-20 12:43:31'),(412,'The choice of the method of production in an economy is determined by the','level of income','rate of population growth','level of technical know-how','availability of natural resources','','','c','','utme','2010',132,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(413,'The amount of labour hired depends on the','number of skilled labour available','marginal productivity of labour','skill of labour','price of other inputs','','','b','','utme','2010',107,'Admin','2016-11-12 22:11:51','2020-08-20 02:06:26'),(414,'Economic as a field of study is a','pure science','political science','social science','physical science','','','c','','wassce','2003',79,'Admin','2016-11-12 22:37:36','2020-08-15 01:00:29'),(415,'The three major agents of an economic system are the','consumers, workers and producers','markets, telecommunication and banks','schools, hospitals and universities','individuals, firms and government','','','d','','wassce','2003',78,'Admin','2016-11-12 22:37:37','2020-08-18 12:14:00'),(416,'Which of the following  is  not  an  advantage  of  tabular presentation of data?','enables easy location of required figures','makes for easy comparison of figures','occupies more space than mathematical equation','shows whether the figures are increasing or decreasing','','','c','','wassce','2003',103,'Admin','2016-11-12 22:37:37','2020-08-13 12:58:38'),(417,'The problem of scarcity is reduced by','controlling consumption of goods and services','producing everything needed by consumers','ensuring efficient allocation of resources','restricting consumer choices and tastes','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:37','2020-07-14 14:33:36'),(418,'The reward for labour is','wages','profit','rend','dividends','','','a','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:38'),(419,'Which of the following factors of production consists of man made goods?','Land','Labour','Capital','Entrepreneur','','','c','','wassce','2003',83,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:39'),(420,'One major function of the entrepreneur is','bearing of risk','maximizing profits','taking charge of day to day management','determining the selling price of his products','','','c','','wassce','2003',89,'Admin','2016-11-12 22:37:38','2020-08-12 16:33:05'),(421,'A major limiting factor of mass production is','efficient management','adequate labour supply','small size of the market','adequate  supply of raw materials','','','c','','wassce','2003',102,'Admin','2016-11-12 22:37:38','2020-08-15 01:00:28'),(422,'Division of labour leads to','improved craftsmanship','the production of standardized goods','increase in the cost of goods','trade by barter','','','b','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-16 12:39:39'),(423,'Which of the following is  an  advantage of localization of \\n\tindustry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2003',88,'Admin','2016-11-12 22:37:38','2020-08-12 16:33:05'),(424,'The additional satisfaction derived from the consumption of one more unit of a good is called','marginal product','marginal utility','marginal revenue','marginal cost','','','b','','wassce','2003',100,'Admin','2016-11-12 22:37:38','2020-08-15 00:59:55'),(425,'West  African   countries  have  low  levels  of  economic \tdevelopment due to','underpopulation','inadequate labour','failure to plan','ineffective plan implementation','','','b','','wassce','2003',86,'Admin','2016-11-12 22:37:38','2020-08-07 10:17:17'),(426,'When the total product is at its maximum, marginal \\n\tproduct is','increasing','positive','negative','zero','','','d','','wassce','2003',111,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:49'),(427,'Marginal cost can be derived from the','total product','total revenue','total cost','average fixed cost','','','d','','wassce','2003',92,'Admin','2016-11-12 22:37:38','2020-07-29 15:22:25'),(428,'The market supply curve slopes upwards from left to right indicating that','at a lower price, more is supplied','two commodities can be supplied at the same time','at a lower price, less is supplied','producers pay high taxes','','','c','','wassce','2003',76,'Admin','2016-11-12 22:37:38','2020-08-19 06:45:25'),(429,'The marginal revenue when output is 4 units is','5 naira','8 naira','56 naira','61 naira','Use the data below to answer question:  Output [1, 2, 3, 4, 5]  Total Revenue(N=) [40, 49, 56, 61, 65]','','a','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-08-20 13:17:17'),(430,'The term under population refers to a situation where the population is','dispersed over the country','small in relation to available resources','greater than the available resources','concentrated in a few areas','','','b','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:53'),(431,'West African countries experience rapid population growth due to','existence of birth control clinics','early marriages','adequate sex education in schools','late marriages','','','b','','wassce','2003',99,'Admin','2016-11-12 22:37:38','2020-07-14 14:33:54'),(432,'Which of the following could be  used  to  measure  the efficiency of labour?','Education and training','Rate of inflation','Level of unemployment','Input-Output ratio','','','d','','wassce','2003',84,'Admin','2016-11-12 22:37:38','2020-08-15 01:00:30'),(433,'Which of the following is necessary for the survival of small firms in West Africa?','Access to land for development','Inadequate collaterals for bank loans','Government assistance in the form of loans and tax holidays','High transportation costs.','','','c','','wassce','2003',100,'Admin','2016-11-12 22:37:38','2020-08-18 12:14:00'),(434,'A normal demand curve slopes','downwards from left to right','upwards from left to right','downwards from right to left','upwards from the origin','','','a','','wassce','2003',104,'Admin','2016-11-12 22:37:38','2020-08-07 10:17:17'),(435,'If the quantity demanded of a commodity increases from 20 to 30 units when there is an increase in price from 4 naira to 5 naira, the elasticity of demand is','0','1','2','5','','','c','','wassce','2003',92,'Admin','2016-11-12 22:37:38','2020-08-19 06:45:25'),(436,'Price elasticity of supply measures the responsiveness of','quantity supplied to   changes in suppliers’ income','changes in prices of other commodities','a change in the prices of the commodity','a change in the demand for the product','','','c','','wassce','2003',78,'Admin','2016-11-12 22:37:38','2020-08-20 12:43:31'),(437,'The most common type of business in West African countries is','joint stock companies','sole proprietorships','partnerships','public enterprises','','','b','','wassce','2003',93,'Admin','2016-11-12 22:37:38','2020-08-15 01:00:27'),(438,'Which of the following is a type of business organization?','Stock exchange','Insurance company','Chain stores','Co-operative','','','b','','wassce','2003',75,'Admin','2016-11-12 22:37:38','2020-08-20 12:43:31'),(439,'One advantage of the sole proprietorship is that','control and supervision is under one man','accounts must be publicized','it is always successful','funds are easy to obtain','','','a','','wassce','2003',82,'Admin','2016-11-12 22:37:38','2020-08-12 18:45:05'),(440,'The shares which do not carry any fixed rate of dividend are known as','debentures','cumulative preference shares','ordinary shares','participating preference shares','','','c','','wassce','2003',84,'Admin','2016-11-12 22:37:38','2020-07-26 11:05:19'),(441,'The economic goal of public corporations is to','maximize profit','expand assets','minimize costs','provide essential services.','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:38','2020-07-14 14:34:03'),(442,'One of the factors responsible for low agricultural \\n\tproduction in West Africa is','inadequate labour','shortage of land','inadequate implements','inadequate research','','','c','','wassce','2003',92,'Admin','2016-11-12 22:37:38','2020-08-19 06:45:25'),(443,'Efficient distribution of goods in West Africa will be \\n\tfacilitated by','poor storage facilities','adequate transportation system','high standard of living','high cost of living','','','b','','wassce','2003',89,'Admin','2016-11-12 22:37:38','2020-08-20 12:43:31'),(444,'The demand for money is','derived demand','composite demand','joint demand','complimentary demand','','','a','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:06'),(445,'Money becomes a very poor store of value in a period of','deflation','depression','recession','inflation','','','d','','wassce','2003',89,'Admin','2016-11-12 22:37:39','2020-08-15 01:00:28'),(446,'A continuous fall in the general price level is called','recession','depression','deflation','stagflation','','','c','','wassce','2003',102,'Admin','2016-11-12 22:37:39','2020-08-12 18:45:05'),(447,'Which of the following is a function of the central bank?','Accepting deposits from the public','Lending to the commercial bank','Discounting bills of exchange','Agent of payment for individuals','','','b','','wassce','2003',73,'Admin','2016-11-12 22:37:39','2020-08-20 13:17:17'),(448,'Cost-push inflation is likely to arise when','there is an increase in government spending','there is an increase in direct taxes','demand for higher wages is granted','there is a decrease in bank lending','','','c','','wassce','2003',94,'Admin','2016-11-12 22:37:39','2020-08-15 00:59:54'),(449,'The most important function of merchant banks is the','issuing of currency','provision of short term loans','provision of medium and long term loans','provision of short and long term loans','','','c','','wassce','2003',92,'Admin','2016-11-12 22:37:39','2020-07-16 12:39:39'),(450,'Precautionary motive relates to','demand for money','demand for goods','supply of money','supply of goods','','','a','','wassce','2003',109,'Admin','2016-11-12 22:37:39','2020-07-19 12:29:50'),(451,'Invisible trade refers to trade in','services','goods and services','tangible goods','crude oil','','','a','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-08-15 01:00:27'),(452,'When the demand for foreign exchange exceeds its supply, the value of the domestic currency','appreciates','depreciates','inflates','expands','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:14'),(453,'Which of the following is part of the capital account of the balance of payments?','Net investment from abroad','Import of machinery','Insurance','Transportation costs','','','a','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:15'),(454,'The most common index for measuring development is','the level of illiteracy','the per capital income','nutritional levels','population growth rate','','','b','','wassce','2003',72,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:16'),(455,'Governments of West African countries levy taxes to','prevent prices from falling','make people richer','limit the number of banks','finance government projects','','','d','','wassce','2003',85,'Admin','2016-11-12 22:37:39','2020-08-03 14:03:53'),(456,'Which of the following is a direct tax?','Import duties','Purchase tax','Export duties','Personal income tax','','','d','','wassce','2003',93,'Admin','2016-11-12 22:37:39','2020-08-15 00:59:50'),(457,'The tax whose rate increases as the level of income increases is known as','regressive tax','proportional tax','progressive tax','company tax','','','c','','wassce','2003',138,'Admin','2016-11-12 22:37:39','2020-08-20 13:17:17'),(458,'Public expenditure on education and health is known as expenditure on','general services','social services','commercial services','economic services','','','b','','wassce','2003',84,'Admin','2016-11-12 22:37:39','2020-08-15 00:59:50'),(459,'Budget deficit can be financed by','reducing the level of taxation','printing more money','lending to financial institutions','employing more workers','','','b','','wassce','2003',80,'Admin','2016-11-12 22:37:39','2020-08-12 16:39:54'),(460,'A major problem facing the Economic Community of West African States (ECOWAS) as an economic integration, is the','increasing population','willingness of member to co-operate','geographical contiguity','weak trade relations','','','d','','wassce','2003',98,'Admin','2016-11-12 22:37:39','2020-08-15 01:00:27'),(461,'In a socialist economy, the means of production is owned and controlled by the','state','rich','Entrepreneur','traders','','','a','','wassce','2003',87,'Admin','2016-11-12 22:37:39','2020-08-15 00:59:50'),(462,'It is necessary to estimate the national income of a country because it','indicates the overall performance of the economy','ensures equitable distribution of wealth','assists investors in identifying profitable ventures','enables governments to conserve national resources','','','a','','wassce','2003',80,'Admin','2016-11-12 22:37:39','2020-08-13 12:58:38'),(463,'The Organization of Petroleum Exporting Countries (OPEC) is an example of a','perfect competition','monopsony','duopoly','cartel','','','d','','wassce','2003',88,'Admin','2016-11-12 22:37:39','2020-07-14 14:34:33'),(464,'Which of the following is an economic activity?','Attending a town’s meeting','A visit to the stadium','Payment of school fee','Arresting a petty thief','','','c','','wassce','2004',91,'Admin','2016-11-12 23:04:46','2020-08-18 12:14:00'),(465,'The reward for land as a factor of production is','interest','rent','dividend','wages','','','b','','wassce','2004',85,'Admin','2016-11-12 23:04:46','2020-07-16 17:21:34'),(466,'The three broad categories of production are','direct, secondary and extractive','primary, tertiary and direct','primary, secondary and tertiary','secondary, primary and indirect','','','c','','wassce','2004',96,'Admin','2016-11-12 23:04:46','2020-08-20 12:43:31'),(467,'A carpenter’s consumer good include:  I.  a kilogram of rice II.  3 pairs of shoes    III.  4 pairs of socks   IV. 3 screw-drivers','I and IV only','I, II, III and IV','I, II and IV only','I, II and III only','','','a','','wassce','2004',84,'Admin','2016-11-12 23:04:46','2020-08-20 12:43:31'),(468,'In a capitalist system, the means of production is owned and controlled by','the government','politicians','private individuals','the workers','','','c','','wassce','2004',81,'Admin','2016-11-12 23:04:46','2020-08-15 00:59:55'),(469,'Mixed economy refers to a system in which the means of production are controlled by','private enterprise and the government','private individuals','the government only','the workers and businessmen','','','a','','wassce','2004',95,'Admin','2016-11-12 23:04:46','2020-08-03 03:35:03'),(470,'An economic good is described as a good which','yield utility and commands a price','is useful and occupies a space','is in high demand and transferable','has unlimited supply','','','a','','wassce','2004',82,'Admin','2016-11-12 23:04:46','2020-08-07 10:17:17'),(471,'The concept of opportunity cost is important to the firm because it','determines the prices of the firm’s products','increases the level of output of the firm','leads to maximum satisfaction of the consumers','Guides firms in allocating scarce resources','','','d','','wassce','2004',94,'Admin','2016-11-12 23:04:46','2020-07-14 14:34:40'),(472,'As a firm expands, it enjoys some advantages called','variable proportions','diminishing marginal returns','internal economics of scale','decreasing returns to scale','','','c','','wassce','2004',91,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:29'),(473,'Division of labour is limited by','the size of the market','the productivity of capital','cost of production','factors of production','','','a','','wassce','2004',75,'Admin','2016-11-12 23:04:46','2020-08-19 06:45:25'),(474,'An entrepreneur is likely to make more profits when','expenditure is more than revenue','competitors charge lower prices','cost per unit output falls','quantity of output reduces','','','c','','wassce','2004',87,'Admin','2016-11-12 23:04:46','2020-08-18 12:14:00'),(475,'Natural growth rate is','birth rate less death rate','death rate less migration','death rate plus birth rate','birth rate plus migration','','','a','','wassce','2004',82,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:30'),(476,'A major effect of aging populations is','reduced labour force','rise in prices of commodities','reduced infrastructure','neglect of agriculture','','','a','','wassce','2004',99,'Admin','2016-11-12 23:04:46','2020-08-20 13:17:17'),(477,'One of the problems associated with the middleman in the distribution of goods is that he','buys in large quantities','hoards goods','grants credit to the retailer','sells varieties of goods','','','b','','wassce','2004',86,'Admin','2016-11-12 23:04:46','2020-08-19 06:45:25'),(478,'The distribution of goods is said to be completed when it reaches the','wholesalers','consumers','retailers','manufacturers','','','b','','wassce','2004',92,'Admin','2016-11-12 23:04:46','2020-08-15 00:59:56'),(479,'The gap between demand and  supply  curves  below the equilibrium price indicates','excess demand','excess supply','equilibrium quantity','equilibrium price','','','a','','wassce','2004',101,'Admin','2016-11-12 23:04:46','2020-08-15 00:59:55'),(480,'Demand for inferior good is an example of','expansion of demand','contraction of demand','individual demand','abnormal demand','','','d','','wassce','2004',91,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:31'),(481,'When a change in price does not affect the quantity demanded of a commodity, the price elasticity of demand is','fairly inelastic','infinitely elastic','perfectly inelastic','unitary elastic','','','c','','wassce','2004',99,'Admin','2016-11-12 23:04:46','2020-08-15 01:00:27'),(482,'For both the monopolist and the perfectly competitive firm, profit maximizing output occurs at the point where the','marginal cost curve cuts the marginal revenue curve from below','marginal revenue curve cuts the marginal output from above','marginal cost curve intersects the X-axis','marginal revenue curve intersects the Y-axis','','','a','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-08-12 16:39:54'),(483,'The market structure in which the operators are many and none of them can influence the price is','imperfect market','perfect market','oligopolistic market','stock market','','','b','','wassce','2004',89,'Admin','2016-11-12 23:04:47','2020-08-15 00:59:55'),(484,'One main benefit of partnerships is','the possibility of raising funds on the stock exchange','the possibility of attracting twenty one or more members','that members can specialize in various functions','that it enjoys its own separate legal entity.','','','c','','wassce','2004',86,'Admin','2016-11-12 23:04:47','2020-07-29 15:50:46'),(485,'Joint ventures are partnerships involving','the poor and the rich','employers and workers','government and private investor','multi-nationals and individual','','','c','','wassce','2004',104,'Admin','2016-11-12 23:04:47','2020-08-19 06:45:25'),(486,'The value of money is best determined by','input-output ratio','the purchasing power','the importance people attach to it','economics of scale','','','b','','wassce','2004',84,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:11'),(487,'Which of the following will be an effect of inflation?','Wages earners will gain','Borrowing of money will be restricted','Money lenders will gain','Borrowers of money will gain','','','d','','wassce','2004',94,'Admin','2016-11-12 23:04:47','2020-08-19 06:45:25'),(488,'Government can control inflation by','printing more money','reducing the rate of taxes','reducing the level of expenditure','establishing more banks','','','c','','wassce','2004',99,'Admin','2016-11-12 23:04:47','2020-08-15 01:00:27'),(489,'The market consisting  of  a  network  of  dealers  where \tcurrencies can be bought and sold is known as','capital market','foreign exchange market','commodity market','the stock market','','','b','','wassce','2004',83,'Admin','2016-11-12 23:04:47','2020-08-09 21:12:42'),(490,'Open Market Operation (OMO) means the','provision of credit facilities by commercial banks','provision of credit facilities by the mortgage banks','buying and selling of government securities by the central bank','procedure for the establishment of commercial banks','','','c','','wassce','2004',82,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:15'),(491,'Which of the following is an advantage of  localization of industry?','Development of subsidiary firms','Creation of parallel markets','Development of slums','Attraction of foreign capital','','','a','','wassce','2004',79,'Admin','2016-11-12 23:04:47','2020-08-15 00:59:56'),(492,'Which of the following will ensure efficiency in the industrial sector of your country?','Indigenization','Privatization','Nationalization','Liquidation','','','b','','wassce','2004',87,'Admin','2016-11-12 23:04:47','2020-08-20 13:17:17'),(493,'The number of people who are qualified to work and who offer themselves for employment are called','migrant labour','working population','labour turnover','mobility of labour','','','b','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-31 07:56:41'),(494,'When the general price level persistently falls, the rate of  unemployment','rises','stagnates','rapidly reduces','equals natural growth rate','','','a','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:19'),(495,'Which of the following is not a direct effort to increase agricultural production?','Operation feed the nation','Use of improved seedlings','Increased loans to farmer and co-operative societies','National Youth Service Corps','','','d','','wassce','2004',90,'Admin','2016-11-12 23:04:47','2020-08-19 06:45:25'),(496,'To ensure high employment rates, developing countries should','build more universities','protect infant industries','organize trade fairs','prevent rural-urban drift','','','b','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-07-16 12:39:39'),(497,'The act of selling goods in foreign markets at prices below those charged at home markets is called','exchange','specialization','dumping','exporting','','','c','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-08-12 18:45:05'),(498,'Taxes levied on commodities are','direct taxes','indirect taxes','poll taxes','investment taxes','','','b','','wassce','2004',92,'Admin','2016-11-12 23:04:47','2020-08-12 16:33:05'),(499,'One disadvantage of direct taxes is that','government’s revenue is reduced','price of essential commodities fall','people are discouraged from additional work','firms make more profits','','','c','','wassce','2004',88,'Admin','2016-11-12 23:04:47','2020-08-12 16:39:54'),(500,'International trade is an application of the principle of','industrial production','mass production','regional co-operation','comparative costs advantage','','','d','','wassce','2004',96,'Admin','2016-11-12 23:04:47','2020-08-18 12:14:00'),(501,'Trade among West African countries is poor because the','countries are self-sufficient','communication links are weak','number of banks is insufficient','people are not enterprising','','','b','','wassce','2004',94,'Admin','2016-11-12 23:04:47','2020-07-29 15:50:46'),(502,'A policy by which governments restrict the amount of \\n\tforeign currencies bought and sold is known as','devaluation','credit creation','exchange control','export promotion','','','c','','wassce','2004',93,'Admin','2016-11-12 23:04:47','2020-08-13 13:06:20'),(503,'Which of the following items is under the capital account of a balance of payments','Repayments of foreign loans','Visible imports','Invisible exports','Cocoa export','','','a','','wassce','2004',97,'Admin','2016-11-12 23:04:47','2020-07-14 14:35:42'),(504,'A surplus in the balance of payments should be used to','subsidize multi-national companies','build infrastructure for friendly nations','make donation to developed countries','buy investments overseas','','','d','','wassce','2004',103,'Admin','2016-11-12 23:04:47','2020-08-19 06:45:25'),(505,'Development planning which takes an overall view of the economy is described as','Aggregate economic planning','Disaggregated economic planning','Sectorial economic planning','System economic planning','','','a','','wassce','2004',94,'Admin','2016-11-12 23:04:47','2020-08-15 01:00:28'),(506,'The national income of a country can be estimated by the','cost-benefit method','distribution method','expenditure method','consumption method','','','c','','wassce','2004',88,'Admin','2016-11-12 23:04:51','2020-07-28 00:06:45'),(507,'Which of the following is excluded when estimating national income?','Dividends','Wages and salaries','Transfer payment','Profits','','','c','','wassce','2004',72,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:47'),(508,'The economic Community of West African States (ECOWAS) has been slow in achieving its objectives because of','political instability in member state','the activities of multi-national','inadequate personnel at the secretariat','inadequate international support','','','a','','wassce','2004',77,'Admin','2016-11-12 23:04:51','2020-08-20 12:43:31'),(509,'A major achievement of  the  Organization  of  Petroleum Exporting Countries (OPEC) is that','crude oil price has increased tremendously','petroleum products prices have remained low','producing countries are highly industrialized','price of crude oil has remained relatively stable.','','','d','','wassce','2004',99,'Admin','2016-11-12 23:04:51','2020-07-14 14:35:50'),(510,'Economic activities are undertaken to solve the problem of','consumption','opportunity cost','production','scarcity','','','b','','wassce','2005',91,'Admin','2016-11-12 23:29:58','2020-08-20 13:17:17'),(511,'Farming, mining and fishing are','primary production','secondary production','tertiary production','intermediate production','','','a','','wassce','2005',99,'Admin','2016-11-12 23:29:58','2020-08-15 00:59:54'),(512,'A list of consumers’ wants arranged in order of priority is known as','a budget','an opportunity cost','a scale of preference','choice','','','c','','wassce','2005',100,'Admin','2016-11-12 23:29:58','2020-08-13 13:06:20'),(513,'The 150.00 Naira which Olu would have used to purchase a textbook was used to buy a T-shirt. This implies that','Olu’s real cost is 150.00 Naira','Olu’s opportunity cost is the T-shirt','Olu’s opportunity cost is the textbook','Olu’s money cost is also the real cost.','','','c','','wassce','2005',84,'Admin','2016-11-12 23:29:58','2020-08-15 01:00:27'),(514,'The remuneration of the entrepreneur as a factor of production is called','wages','salary','interest','profit','','','d','','wassce','2005',90,'Admin','2016-11-12 23:29:58','2020-07-26 11:05:19'),(515,'The production factor, whose entire world supply is fixed is','land','skilled labour','capital goods','entrepreneurship','','','a','','wassce','2005',75,'Admin','2016-11-12 23:29:58','2020-08-18 12:14:00'),(516,'When all factor inputs are reduced by half, the production possibility curve will shift','outwards','inwards','downwards','upwards','','','b','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-08-13 12:58:38'),(517,'When a worker changes from one type of job to another, it is called','geographical mobility of labour','occupational mobility of labour','immobility of labour','rural-urban migration.','','','b','','wassce','2005',92,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:56'),(518,'Which of the following determines the sizes of a country’s population?    (l) Birth rate    (ll) Death rate     \\n\t(lll) Migration rate     (lV) lmportation rate    (V) Unemployment','l), (ll) and (V)','(ll) and (lV)','(I), (II) and (lll)','(I) and (V)','','','c','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:30'),(519,'Age distribution is important because it helps the \tgovernment to','check rural-urban drift','determine the number of foreigners','determine the number of factories','undertake effective planning','','','d','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-08-18 12:14:00'),(520,'A group of firms producing similar commodities for the same market constitute','a cartel','an industry','a co-operative','wholesalers','','','b','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-08-20 13:17:17'),(521,'A factor that has slowed down the rate of industrial development in West Africa is','inadequate technology','increasing rate of manpower production','increased demand for local goods','intervention of the government in business activities.','','','a','','wassce','2005',73,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:56'),(522,'To achieve an equilibrium position, the consumer must buy so much of each commodity whose price is equal its','marginal utility','total utility','average utility','variable utility','','','a','','wassce','2005',97,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:51'),(523,'Price control refers to','the ways of making more goods available in the market','a policy of ensuring stable price in the market','a general reduction in the price level','effective working of the forces of demand and supply','','','b','','wassce','2005',76,'Admin','2016-11-12 23:29:59','2020-08-20 12:43:31'),(524,'The desire for goods without the ability to pay is called','choice','effective demand','joint demand','wants','','','d','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-08-18 12:14:00'),(525,'Amount of goods offered to the market at respective prices and presented in a table is called','price schedule','supply schedule','scale of preference','demand schedule','','','b','','wassce','2005',90,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:55'),(526,'At the equilibrium price, quantity demanded is','greater than quantity supplied','equal to quantity supplied','less than quantity supplied','equal to excess supply','','','b','','wassce','2005',85,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:29'),(527,'lf the government fixed a price of a commodity above the equilibrium price, the quantity supplied will be','less than quantity demanded','equal to the quantity demanded','greater than quantity demanded','equal to zero','','','c','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-07-29 15:50:46'),(528,'One of the factors determining price elasticity of demand for a commodity is the','availability of close substitutes','number of producers','government policy','price of other commodities.','','','a','','wassce','2005',96,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:50'),(529,'lf elasticity of demand for a commodity is less than one, demand is','unitary elastic','inelastic','infinitely elastic','zero elastic','','','b','','wassce','2005',93,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:10'),(530,'The transfer of ownership of a public enterprise to  individuals and firms is called','commercialization','nationalization','privatization','restructuring','','','c','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:11'),(531,'One-man businesses are popular in West Africa because of all the following except the','ease of entry','small capital required','limited entrepreneurial skill needed','tendency to become joint-stock companies.','','','d','','wassce','2005',101,'Admin','2016-11-12 23:29:59','2020-08-20 12:43:31'),(532,'Wholesalers are often criticized because they','help to break the bulk','finance producers','increase prices','provide after-scale services','','','c','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-07-14 14:36:13'),(533,'ln which of the following business units are the owners mostly the customers?','Co-operatives','Limited liability companies','Partnerships','Public corporations','','','a','','wassce','2005',95,'Admin','2016-11-12 23:29:59','2020-08-09 11:14:18'),(534,'information about new goods is passed on to buyers through','advertising','retail trade','the manufacturer','wholesale trade','','','a','','wassce','2005',92,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:49'),(535,'The profit of the producer can be calculated as','total cost less total revenue','average revenue less average cost','total revenue less total cost','marginal revenue less marginal cost','','','c','','wassce','2005',88,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:49'),(536,'The direct exchange of one good for another without the use of money is known as','foreign exchange','exchange rate','expenditure','barter','','','d','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:50'),(537,'Acceptability, durability, homogeneity and portability are all \tattributes of good','markets','money','banks','government','','','b','','wassce','2005',87,'Admin','2016-11-12 23:29:59','2020-08-09 11:14:18'),(538,'The term demand for money means','desire to borrow money from people','desire of an individual to invest all his money in  projects','willingness of people to hold money','willingness of people to keep all their resources in  assets.','','','c','','wassce','2005',83,'Admin','2016-11-12 23:29:59','2020-08-12 18:45:05'),(539,'A persistent and appreciable rise in the general level of prices is known as','depreciation','inflation','deflation','production','','','b','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:30'),(540,'To a commercial bank, deposits are','liabilities','assets','capital','cash at hand','','','d','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:50'),(541,'The lender of last resort in the banking system is the','industrial bank','mortgage bank','commercial bank','central bank','','','d','','wassce','2005',86,'Admin','2016-11-12 23:29:59','2020-08-15 01:00:31'),(542,'Discounting a bill of exchange means the bill is','cashed over the counter','sold on the stock exchange','bought for less than its face value','sold to the highest bidder','','','c','','wassce','2005',89,'Admin','2016-11-12 23:29:59','2020-08-15 08:59:21'),(543,'The central bank controls credit in the economy through the use of','legal tender','travelers cheque','foreign exchange instruments','open market operations','','','d','','wassce','2005',92,'Admin','2016-11-12 23:29:59','2020-08-18 12:14:00'),(544,'Among the principles of taxation propounded by Adam Smith was that','a tax should be impossible to evade','a tax should be convenient to pay','no tax should be levied on food','there should be no taxation without representation','','','b','','wassce','2005',91,'Admin','2016-11-12 23:29:59','2020-08-19 06:45:25'),(545,'Mr. Bala’s income is $800.00 per month while that of Mr. Jatau is $1,200.00. lf Messrs Bala and Jatau pay $80.00 and $120.00 respectively as taxes, the tax system is','progressive','regressive','proportional','ad-valorem','','','c','','wassce','2005',95,'Admin','2016-11-12 23:29:59','2020-08-15 00:59:55'),(546,'Government revenue from the groundnut industry is from','licenses','rents','royalties','taxes','','','d','','wassce','2005',108,'Admin','2016-11-12 23:29:59','2020-08-19 06:45:25'),(547,'The theory of comparative cost advantage is associated with','Alfred Marshal','Adam Smith','David Ricardo','J.B. Say','','','c','','wassce','2005',84,'Admin','2016-11-12 23:29:59','2020-08-20 13:17:17'),(548,'When the value of a nation’s exports is greater than its imports','a favourable balance of trade exists','an unfavourable balance of payment exists','the net foreign trade is zero','inflation occurs','','','a','','wassce','2005',95,'Admin','2016-11-12 23:29:59','2020-08-20 12:43:31'),(549,'To improve the balance of payments position of West African countries, there must be','removal of barriers to importation of goods and services','increased rate of exportation of goods and services','increased domestic consumption of foreign produced goods','the development of the local market.','','','b','','wassce','2005',94,'Admin','2016-11-12 23:29:59','2020-08-19 06:45:25'),(550,'The Economic Community of West African State (ECOWAS) is an example of','bilateral trade','economic integration','regional marketing board','international competition','','','b','','wassce','2005',96,'Admin','2016-11-12 23:30:00','2020-08-13 12:58:38'),(551,'One reason for the low agricultural production in West African countries is that','agriculture employs the highest percentage of the labour force','too much money is invested in agriculture','farmers lack the finance and technology required','the farms are too large','','','c','','wassce','2005',98,'Admin','2016-11-12 23:30:00','2020-08-12 16:39:54'),(552,'Mono-product economies are those that','produce one main commodity','produce only raw materials','depend on the export of their raw materials','specialize in agricultural industries','','','a','','wassce','2005',91,'Admin','2016-11-12 23:30:00','2020-08-15 00:59:49'),(553,'.\\n\\n\tAn essential characteristics of a market economy is','government control','producer surplus','consumer surplus','consumer sovereignty','','','d','','wassce','2005',99,'Admin','2016-11-12 23:30:00','2020-08-15 00:59:55'),(554,'ln a capitalist system, goods are produced for those who','want them most but cannot pay for them','can pay for them but do not want them','want them and can also pay for them','are dependent on the labour force','','','c','','wassce','2005',75,'Admin','2016-11-12 23:30:00','2020-08-20 12:43:31'),(555,'An economy which exhibits features of both private and State enterprises is known as a','capitalist economy','mixed economy','communist economy','socialist economy','','','b','','wassce','2005',79,'Admin','2016-11-12 23:30:00','2020-08-15 01:00:29'),(556,'ln calculating the national income of a country x, the cost of both raw materials and the finished products \t\twere included. This is a case of','double counting','price fluctuations','price differentiation','price discrimination','','','a','','wassce','2005',95,'Admin','2016-11-12 23:30:00','2020-08-15 08:59:21'),(557,'Economic development is defined as','outward shift of the production possibility curve','availability of more goods and services','growth accompanied by qualitative change in living standards.','growth in the national income','','','c','','wassce','2005',86,'Admin','2016-11-12 23:30:00','2020-08-13 13:06:20'),(558,'Which of the following is not an objective of the \\n\tOrganization of Petroleum Exporting Countries (OPEC)?','Stabilization of oil prices','Co-ordinating oil prices','Harmonizing oil prices','Stagnation of developed economies.','','','d','','wassce','2005',129,'Admin','2016-11-12 23:30:00','2020-08-15 00:59:51'),(559,'The study of Economics enables individuals to','change jobs.','evade taxes.','accumulate huge wealth','make national decision','','','d','','wassce','2006',81,'Admin','2016-11-12 23:59:28','2020-07-14 14:36:59'),(560,'Most of the problems of economies arise as a result of','demands for scarce resource','increase in  the demand for more goods and services.','the desire of producers to supply more goods and services.','the need to reduce the level of poverty.','','','a','','wassce','2006',88,'Admin','2016-11-12 23:59:29','2020-08-15 00:59:49'),(561,'Which of the following tools of economic analysis is used when data contains more than one category?','Bars charts','Component bar charts','Graphs','Symbolical statement','','','b','','wassce','2006',86,'Admin','2016-11-12 23:59:29','2020-08-18 12:14:00'),(562,'The reward of capital as a factor of production is','rent','wage','interest','commission.','','','c','','wassce','2006',98,'Admin','2016-11-12 23:59:29','2020-08-12 16:39:54'),(563,'Mining is an example of','tertiary production','primary production','secondary production','advanced production','','','b','','wassce','2006',83,'Admin','2016-11-12 23:59:29','2020-07-15 09:09:54'),(564,'An owner-manager of a firm can also be called','shareholder','an entrepreneur','an employer','a chairman','','','b','','wassce','2006',98,'Admin','2016-11-12 23:59:29','2020-08-18 12:14:00'),(565,'If the fixed cost of a firm is 800 Naira and its variable cost is \t2,700 Naira while its total output is 100 units, what is the average cost of the firm?','25 Naira','35 Naira','45 Naira','50 Naira','','','b','','wassce','2006',79,'Admin','2016-11-12 23:59:29','2020-08-20 13:17:17'),(566,'Distribution of good and services is hindered by','good road network','efficient storage facilities','too many middlemen.','Adequate market information.','','','c','','wassce','2006',71,'Admin','2016-11-12 23:59:29','2020-08-19 06:45:25'),(567,'A movement along the same demand curve either upwards \tor downwards as a result of changes in price implies','a change in demand','a change in quantity demanded.','an increase in demand','a shift in the demand curve to the right.','','','b','','wassce','2006',86,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:12'),(568,'Middlemen in an economy perform the function of','distribution','exchange','hoarding.','protection.','','','a','','wassce','2006',82,'Admin','2016-11-12 23:59:29','2020-07-14 14:37:13'),(569,'One of the factors affecting geographical distribution of population is','high birth rate','high death rate','encouragement of early marriage in the rural areas','climatic conditions of  the different parts of the country','','','d','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-08-20 13:17:17'),(570,'Standardization of products or services is a feature of','large firms','retailers','small firms','wholesalers.','','','a','','wassce','2006',74,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:28'),(571,'The amount of satisfaction obtained from the consumption of a commodity at a particular time is called','marginal utility','diminishing utility','total utility','average utility','','','c','','wassce','2006',78,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:16'),(572,'What are inferior goods? These are goods','that are generally in short supply.','that are no longer in demand','whose demand falls as income increases','whose price falls as demand increases','','','c','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:54'),(573,'In the analysis of utility theory, the basis of demand is','marginal utility','average utility','fixed utility','diminishing utility','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-08-18 12:14:00'),(574,'In the normal market situation, when the price of a commodity rises, the','demand for the commodity will rise','demand for the commodity will fall','supply of the commodity will be constant','Supply of the commodity will fall.','','','b','','wassce','2006',90,'Admin','2016-11-12 23:59:30','2020-07-29 15:22:25'),(575,'When the quantity of a commodity supplied increases and the quantity demanded decreases there will be','a rise in price','no change in price','price fluctuation','a fall in price.','','','d','','wassce','2006',94,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:56'),(576,'The market price of a commodity is normally determined by the','law of demand','interaction of the forces of demand and supply.','total number of people in the market','total quantity of the commodity in the market.','','','b','','wassce','2006',75,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:27'),(577,'The mechanism which allows the price of a commodity to be fixed either above or below the equilibrium is known as','monopolistic competition','price discrimination','perfect competitive market','price control','','','d','','wassce','2006',79,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:22'),(578,'A debenture holder is entitled to payments in the form of','allowance','interest','salary','donation','','','b','','wassce','2006',84,'Admin','2016-11-12 23:59:30','2020-08-18 12:14:00'),(579,'The main difference between a private and a public \\n\tenterprise is the','amount of profit realized','mode of operation','objective of the business','ownership structure','','','d','','wassce','2006',95,'Admin','2016-11-12 23:59:30','2020-08-18 12:14:00'),(580,'The total amount of money raised by a company through insurance of shares to the public is','debentures','nominal capital','ordinary shares','paid-up capital','','','b','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-08-19 06:45:25'),(581,'Buying and selling of shares is a function performed mostly \tby the','insurance companies','stock exchange','merchant banks','discount houses','','','b','','wassce','2006',95,'Admin','2016-11-12 23:59:30','2020-08-09 21:12:42'),(582,'Which of the following is not reason for establishing public \tenterprises?','Discouraging investors','Opening up neglected parts of the country','Effective control of a natural monopoly','Rapid economic development','','','a','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-08-13 12:58:38'),(583,'For a monopolist, the average revenue (AR) curve is  above','the total cost curve','the same as the marginal cost curve','above the marginal revenue curve','the same at that of the perfect competitor.','','','c','','wassce','2006',83,'Admin','2016-11-12 23:59:30','2020-07-21 11:05:36'),(584,'Advertising expenses would not be necessary under perfect competition because','consumers would have complete knowledge of goods','cost of production would be at the maximum level','.  \\n\tevery firm  would enjoy the benefits of large scale production','incomes of the consumers in the community would be high.','','','a','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-08-20 13:17:17'),(585,'The equilibrium level of output of a monopolist is determined at a point where','marginal cost equal average  revenue','marginal cost equals average cost','marginal cost equals marginal  revenue','marginal  revenue equals average cost','','','c','','wassce','2006',91,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:55'),(586,'.\\n\\nWhich of the following is a legal tender in West Africa?','Treasury bill','Share','Credit card','Currency','','','d','','wassce','2006',78,'Admin','2016-11-12 23:59:30','2020-08-18 12:14:00'),(587,'The policy of government to increase the supply of money to meet its own expenditure plans is likely to be','speculative','deflationary','inflationary','contractionary','','','c','','wassce','2006',105,'Admin','2016-11-12 23:59:30','2020-08-03 03:35:03'),(588,'The tendency for prices to rise while the value of money falls is known as','bills of exchange','inflation','depreciation','deflation.','','','b','','wassce','2006',102,'Admin','2016-11-12 23:59:30','2020-08-07 10:17:17'),(589,'One way to solve the economic problem of inflation in a country is by increasing the','supply of commodities','supply of currency','salaries of workers','demand for commodities.','','','a','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-07-14 14:37:33'),(590,'The motive for holding money for investing in securities is \treferred to as','transactionary','speculative','accumulation','deflationary','','','b','','wassce','2006',82,'Admin','2016-11-12 23:59:30','2020-08-20 12:43:31'),(591,'A cheque book is issued to customers of a bank operating a','savings account','time deposit account','current account','fixed deposit account','','','c','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-08-18 12:14:00'),(592,'Amount proposed for payments of wages and salaries in a budget is regarded as part of','recurrent expenditure','direct investment','recurrent revenue','capital receipt','','','a','','wassce','2006',77,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:54'),(593,'The difference between the Gross National Product (GNP) and the Gross Domestic Product(GDP) is','total interest payment','net income generated internally','total national savings','net income from abroad.','','','d','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-07-31 07:56:41'),(594,'Which of the following agricultural systems is mainly for the','cultivation of food crops for family consumption?','Co-operative farming','Commercial farming','Subsistence farming','','','c','','wassce','2006',86,'Admin','2016-11-12 23:59:30','2020-08-15 00:59:51'),(595,'Agriculture is important to the economy of West African countries because it is the source of','power','equipment supply','industrial  input','technological progress','','','c','','wassce','2006',87,'Admin','2016-11-12 23:59:30','2020-08-20 13:17:17'),(596,'The economic system in which the state takes the','economic decisions through details planning is','capitalism','socialism','traditional economic system','','','b','','wassce','2006',85,'Admin','2016-11-12 23:59:30','2020-08-15 01:00:28'),(597,'A mixed economy combines the characteristics of both','planned  and capitalist economics','exchange subsistence economies','subsistence and planned economies','capitalist and exchange economics','','','a','','wassce','2006',88,'Admin','2016-11-12 23:59:30','2020-08-18 12:14:00'),(598,'In a rapidly growing economy, a change in technology which is labour saving is likely to cause','residual unemployment','structure unemployment','disguised unemployment','frictional unemployment','','','d','','wassce','2006',89,'Admin','2016-11-12 23:59:30','2020-08-20 13:17:17'),(599,'Which of the following is a form of tax evasion?','Wrong declaration of earnings','Payments of flat rate tax','constant employment','Low capacity utilization','','','a','','wassce','2006',71,'Admin','2016-11-12 23:59:31','2020-08-15 01:00:27'),(600,'Where the burden of a tax finally rest is called','tax object','tax rate','incidence of taxation','system of taxation.','','','c','','wassce','2006',78,'Admin','2016-11-12 23:59:31','2020-08-09 11:14:18'),(601,'An increase in the quantity of goods and services produced \tin a country which raises her national income is known as','economic development','economic growth','domestic investment','productivity.','','','b','','wassce','2006',80,'Admin','2016-11-12 23:59:31','2020-07-16 12:39:39'),(602,'The formula “index of export prices” / “Index of import prices”   x 100   is used to measure the','volume of trade between countries','direction of international trade','commodity terms of trade','volume of imports','','','a','','wassce','2006',103,'Admin','2016-11-12 23:59:31','2020-08-15 08:59:21'),(603,'Which of the following is an invisible item?','Banking services','Petroleum products','Processed rice','Processed milk','','','a','','wassce','2006',92,'Admin','2016-11-12 23:59:31','2020-08-15 01:00:28'),(604,'In an attempt to correct a deficit balance of payments, a country may decide to increase','domestic production','imports','domestic expenditure','tax on infant industries.','','','a','','wassce','2006',84,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:47'),(605,'Which of the following is an objective of economic integration?','Harmonization of cultural practices','Free movement of persons, goods and services','Payment of high tariffs','Dumping of goods in less developed countries','','','b','','wassce','2006',96,'Admin','2016-11-12 23:59:31','2020-07-14 14:37:48'),(606,'One of the functions of the International Monetary Fund (IMF) is to','devalue the currency of member states','reduce drastically the size of deficit financing of member states','give financial assistance to member states that have temporary balance of payment difficulties','the rapid industrialization process in the less developed nations of the world','','','c','','wassce','2006',80,'Admin','2016-11-12 23:59:31','2020-08-18 12:14:00'),(607,'The full meaning of OPEC is','Oil and Petroleum Exporting Countries','Original Petroleum Exporting Companies','Organization of Petrol Exporting Countries','Organization of Petroleum Exporting Countries','','','d','','wassce','2006',74,'Admin','2016-11-12 23:59:31','2020-08-03 03:35:03'),(608,'The three principal economic units in any system are','trade, industry and banking','workers, consumers and shareholder','households, firms and government','companies, industry and plants','','','c','','wassce','2007',109,'Admin','2016-11-13 15:46:54','2020-08-20 13:17:17'),(609,'The satisfaction derived from the use of a commodity is its','demand','elasticity','wealth','utility','','','d','','wassce','2007',85,'Admin','2016-11-13 15:46:55','2020-07-26 11:05:19'),(610,'The reward which accrues to labour for participating in production is','interest','wage','bonus','profit','','','b','','wassce','2007',87,'Admin','2016-11-13 15:46:55','2020-08-09 21:12:42'),(611,'The Malthusian theory of population does not concern itself with','growth of food production in arithmetical progression','growth of population in geometric progression','positive checks to population growth','development and growth of manpower','','','d','','wassce','2007',87,'Admin','2016-11-13 15:46:55','2020-08-20 12:43:31'),(612,'One characteristic of labour is that it is','fixed in demand','fixed in supply','mobile','untrainable','','','c','','wassce','2007',81,'Admin','2016-11-13 15:46:56','2020-08-13 12:58:38'),(613,'A country where labour is not sufficient to make proper use of the natural resources is said to have an','active population','optimum population','over-population','under-population','','','d','','wassce','2007',75,'Admin','2016-11-13 15:46:56','2020-07-14 14:37:56'),(614,'When population is classified according to professions, it is called','geographical distribution of population','age distribution of population','sex distribution of population','occupational distribution of population','','','d','','wassce','2007',92,'Admin','2016-11-13 15:46:56','2020-08-20 13:17:17'),(615,'What must be added to variable cost to give total cost?','Average total cost','Average variable cost','Fixed cost','Marginal cost','','','c','','wassce','2007',81,'Admin','2016-11-13 15:46:56','2020-08-15 00:59:55'),(616,'Revenue is the','total profit made after sales','amount spent on purchases','amount of goods produced','total money realized from sales.','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:56','2020-08-18 12:14:00'),(617,'Given that TR is total revenue, then TRn - TR(n-1) can be used to find the','marginal revenue','marginal cost','average cost','average revenue','','','a','','wassce','2007',88,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:29'),(618,'The lower the price of a commodity, the greater the quantity demanded. This is based on the assumption that consumers’','income is diminished','income remains the same','utility is diminished','population is high','','','b','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:11'),(619,'The demand for beans in bags is given by the function Q - 36 + 0.4P = 0. Where P is price in Naira and Q is quantity, find Q when P = 20 Naira.','12 bags','24 bags','28 bags','30 bags','','','c','','wassce','2007',91,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:28'),(620,'If the price of good X rises and the quantity demanded of good Y increases then the two goods X and Y must be','inferior good','substitutes','complements','free goods','','','b','','wassce','2007',78,'Admin','2016-11-13 15:46:56','2020-08-15 01:00:30'),(621,'Use the following  demand schedule to answer question Price (N=) [15, 13]\tQuantity Demanded[60, 70] The percentage change in quantity demanded is','12.7%','15.7%','16.7%','19.7%','','','c','','wassce','2007',79,'Admin','2016-11-13 15:46:56','2020-08-15 00:59:55'),(622,'In a situation where demand is perfectly elastic, imposition of a tax on a commodity to raise its price will result in','consumers increasing their demand for the product','consumers demand for the product remaining unchanged','consumers shifting completely to substitute products','suppliers increases the supply of the product','','','c','','wassce','2007',95,'Admin','2016-11-13 15:46:56','2020-08-15 00:59:55'),(623,'Patents are examples of','natural barriers to entry','legal barriers to entry','illegal barriers to entry','unnatural barriers to entry','','','b','','wassce','2007',72,'Admin','2016-11-13 15:46:56','2020-08-20 12:43:31'),(624,'Which of the following is a characteristic of monopoly?','Many sellers','Homogeneous commodity.','A single seller','Perfect knowledge','','','c','','wassce','2007',93,'Admin','2016-11-13 15:46:56','2020-08-12 16:39:54'),(625,'When a firm is nationalized','former owners are removed without compensation','it has the right to draw on state funds for capital investment','it must break even within a specified period','workers take control of the firm','','','b','','wassce','2007',68,'Admin','2016-11-13 15:46:56','2020-08-19 06:45:25'),(626,'The practice whereby a business is owned by two or more independent firms is termed','indigenization','joint venture','commercialization','foreign investment','','','b','','wassce','2007',85,'Admin','2016-11-13 15:46:56','2020-08-15 00:59:49'),(627,'The main objective of privatizing a government business is to','create additional employment','increase expenditure','source for new funds','increase the level of efficiency','','','d','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:20'),(628,'The return on investment that is just sufficient to satisfy the owner of a business is called','economic profit','business profit','normal profit','excess profit','','','c','','wassce','2007',81,'Admin','2016-11-13 15:46:56','2020-08-13 12:58:38'),(629,'Which of the following is a middlemen in the chain of distribution?','An entrepreneur','A producer','A banker','A retailer','','','d','','wassce','2007',80,'Admin','2016-11-13 15:46:56','2020-08-13 12:58:38'),(630,'A negative effect of the presence of a large number of middlemen in the distributive network is','greater variety of goods','greater quality of goods','lower price of goods','higher price of goods','','','d','','wassce','2007',95,'Admin','2016-11-13 15:46:56','2020-08-18 12:14:00'),(631,'An example of a producer good is a','tin of milk','hammer','loaf of bread','shirt','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:56','2020-07-14 14:38:23'),(632,'To promote the development of the agricultural sector, governments of West African countries should','encourage rural-urban drift','discourage foreign investment in agriculture','support the marketing of farm produce','reduces tariff on food import','','','c','','wassce','2007',88,'Admin','2016-11-13 15:46:56','2020-07-29 15:50:46'),(633,'The most important quality of money is that it must be','relatively scarce','generally acceptable','portable','durable','','','b','','wassce','2007',83,'Admin','2016-11-13 15:46:56','2020-08-18 12:14:00'),(634,'A certain amount of money is needed for everyday expenditure like buying of goods, transportation and others. This is','transaction demand for money','precautionary demand for money','derived demand for money','speculative demand for money','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:27'),(635,'Long-term loans can be secured from','commercial banks','discount houses','development banks','acceptance houses','','','c','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:29'),(636,'The value of money is generally measured in relation to the','interest rate charged on bank loan','general price level','size of a country’s gold stock','volume of imports','','','b','','wassce','2007',75,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:30'),(637,'Which of the following is true under rapid inflation? People','demand less foreign exchange','set up businesses','to pay their taxes','hardly want to lend money','','','d','','wassce','2007',81,'Admin','2016-11-13 15:46:57','2020-08-15 01:00:28'),(638,'Which of the following financial institutions was originally known as a Building Society?','Development bank','Insurance company','Mortgage bank','Merchant bank','','','c','','wassce','2007',89,'Admin','2016-11-13 15:46:57','2020-08-15 01:00:28'),(639,'A non-bank financial intermediary which is regarded as a pool of risks is the','cooperative society','stock exchange','insurance company','post office','','','c','','wassce','2007',81,'Admin','2016-11-13 15:46:57','2020-08-15 01:00:27'),(640,'A foreign exchange market deals in','treasury bills','currencies','government bonds','commodities','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:57','2020-08-15 01:00:28'),(641,'Which of the following institutions assists the government in managing the national debt?','Commercial Banks','The Central Bank','The Capital Market','The World Bank','','','b','','wassce','2007',91,'Admin','2016-11-13 15:46:57','2020-08-03 03:35:03'),(642,'If tax takes a larger proportion of the income of people with \tlower income, the tax is','progressive','proportional','regressive','ad-valorem','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:36'),(643,'Which of Ike following is an example of direct tax?','Import duties','Income tax','Export duties','Purchase tax','','','b','','wassce','2007',64,'Admin','2016-11-13 15:46:57','2020-08-13 12:58:38'),(644,'Monetary control measures are coordinated by','development banks','merchant banks','commercial banks','the Central banks','','','d','','wassce','2007',117,'Admin','2016-11-13 15:46:57','2020-08-07 10:17:17'),(645,'A country whose economy is buoyant is likely to have','a weak currency','devaluation from time to time','a strong currency','balance of payment problem','','','c','','wassce','2007',65,'Admin','2016-11-13 15:46:57','2020-08-20 12:43:31'),(646,'The Net National Product (NNP) is Gross National Product (GNP) less','domestic product','foreign product','depreciation','investment','','','c','','wassce','2007',76,'Admin','2016-11-13 15:46:57','2020-08-20 13:17:17'),(647,'If the population of a country is low and the Gross National Product is high, the per capita income will be','high','low','average','unitary','','','a','','wassce','2007',96,'Admin','2016-11-13 15:46:57','2020-07-14 14:38:44'),(648,'The population of a country in a certain year was fifty million and the per capita income was $2050. What was the national income?','$ 750,000 million','$100,250 million','$ 102,500 million','125,050 million','','','c','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-07-28 03:45:03'),(649,'One of the advantages of capitalism is that','consumers are exploited','private initiative is discouraged','efficient allocation of resources is assured','job security is assured','','','c','','wassce','2007',76,'Admin','2016-11-13 15:46:57','2020-08-20 13:17:17'),(650,'Which of the following contributes the highest amount of foreign exchange to the economy of West African nations?','Construction, manufacturing and banking','Shipping, trading and fishing','Power, telecommunications and sports','Extraction, farming and tourism','','','d','','wassce','2007',94,'Admin','2016-11-13 15:46:57','2020-07-29 15:50:46'),(651,'International trade depends on the concept of','marginal cost advantage','comparative cost disadvantage','Comparative cost advantage','absolute cost','','','c','','wassce','2007',86,'Admin','2016-11-13 15:46:57','2020-07-14 02:26:11'),(652,'One advantage of international trade is that','countries depend on each other','it introduces variation in prices','it increases demand for foreign goods','it makes variety of goods available','','','d','','wassce','2007',85,'Admin','2016-11-13 15:46:57','2020-08-15 00:59:54'),(653,'The practice of selling goods overseas and often below the cost of production is known as','retailing','dumping','internal trade','advertising','','','b','','wassce','2007',82,'Admin','2016-11-13 15:46:57','2020-07-14 02:23:51'),(654,'A summary of all the receipts and payments of a country in \tinternational transactions is called','terms of trade','balance of payment','balance of payment adjustment','capital account','','','b','','wassce','2007',79,'Admin','2016-11-13 15:46:57','2020-07-29 15:50:46'),(655,'4Which of the following countries export cocoa?','Liberia and The Gambia','Ghana and Sierra Leone','Nigeria and Ghana','Sierra Leone and Nigeria','','','c','','wassce','2007',79,'Admin','2016-11-13 15:46:57','2020-07-31 07:56:41'),(656,'Which of the following are examples of transfer payments?','Gifts and donations','Rents and rates','Profits and dividends','Internal and external debts','','','a','','wassce','2007',84,'Admin','2016-11-13 15:46:57','2020-07-14 02:25:01'),(657,'ECA means','Economic Commission for Africa','Economic Community of Africa','Exporting Countries of Africa','Economic Conference on Africa','','','a','','wassce','2007',90,'Admin','2016-11-13 15:46:57','2020-08-13 12:58:38');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `english` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=597 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `english` VALUES (1,' He put…………..  eggs in a basket.','white dozen eggs ','a dozen white eggs  ',' a white dozen eggs ','dozen white','most appropriate option','','b','','utme','2003',3818,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(2,'The reason why he was not offered admission was …………… his results could not be found.','that   ','when  ','owing to ','because ','most appropriate option','','a','','utme','2003',3650,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(3,'Course………….  writers are to reflect local colour',' material\\'s ','materials\\'','materials ','material ','most appropriate option','','b','','utme','2003',3845,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(4,'If you saw the photograph of the man……………………you be able to identify him?','could','would   ','can ','will ','most appropriate option','','b','','utme','2003',3875,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:43'),(5,'As Obande does not know anyone in this city, he hopes that some kind …………  will put him up for the night','man','men ','inhabitants ','individuals','most appropriate option','','a','','utme','2003',3780,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(6,' The doctor asked the patient what………….','The problem is   ',' Is your problem ','The problem was. ',' Is the problem','most appropriate option','','c','','utme','2003',3700,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(7,'The woman is one? of the …………. of the society.','elitist  ',' elites ','ellte','elitists ','most appropriate option','','c','','utme','2003',3779,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:03'),(8,'Three quarters of the people in the village  killed but only half of then \\n          huts……. affected  \\n','were/ were ','was/was','were/ was','was/were ','most appropriate option','','c','','utme','2003',3748,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:39'),(9,'The armed robbers went into the house and robbed the three','woman occupants','women\\'s occupants ','woman\\'s occupants','   women occupants.','most appropriate option','','a','','utme','2003',3899,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(10,' It was a free-for-all and the students were blamed for taking the law','in their own hands ','into their own hands ','into their hands ','in their hands.','most appropriate option','','b','','utme','2003',3764,'Admin','0000-00-00 00:00:00','2020-08-14 14:44:42'),(11,'The candidate\\'s charisma should be a..………factor in winning the election. ','determinant ','determinate','determining ','determinable ','most appropriate option','','c','','utme','2003',3797,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(12,'I can\\'t stand people prying into my private life. \\'Ladi said \\'………… agree Agbenu','Me too ','Likewise myself ','Me neither ','I also ','most appropriate option','','b','','utme','2003',3750,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:40'),(13,' Four weeks ..................  enough for the police to  conclude   their','were',' is ',' are ',' has been','most appropriate option','','b','','utme','2003',3715,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:44'),(14,'  It is bad to take………… property without permission. ','someone else\\'s ','someone’s else',' someone\\'s ','someone\\'s else\\'s\\' ','most appropriate option','','b','','utme','2003',3666,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(15,'Classmate……………………….  I haven\\'t seen for years, wrote to me last week.','whose ','which ','that',' whom','most appropriate option','','d','','utme','2003',3757,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:17'),(16,'If you would do me this favour,  I …………..  be very grateful','should',' would ',' shall ','will','most appropriate option','','b','','utme','2003',3727,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(17,'Ali plays ……….violin with remarkable skill','a    ','the','their ','some ','most appropriate option','','b','','utme','2003',3763,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(18,'1 have the ……… of meeting the President.','privilege  ','privelege ','previlege ','privilege ','most appropriate option','','d','','utme','2003',3721,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:32'),(19,'The sergeant spoke to me in a ……………  manner','Coarse','causal     ','coerce    ','course ','most appropriate option','','a','','utme','2003',3764,'Admin','0000-00-00 00:00:00','2020-08-18 11:54:31'),(20,'Idakwo ran……………. miss the train','lest he may',' lest ha should','lest he almost   ','lest he will ','most appropriate option','','b','','utme','2003',3851,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:12'),(21,'How is the new editor ……………on with hit work','moving','getting','pushing ','going','most appropriate option','','b','','utme','2003',3695,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:36'),(22,'  Be careful not to…………….  this money ','loose  ',' loss ',' lost',' loss','most appropriate option','','b','','utme','2003',3758,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:13'),(23,'Nowadays, many graduates are not Will disposed to teaching……………..','are they','aren\\'t they?','do they?    ',' they are?','most appropriate option','','a','','utme','2003',3615,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(24,'Adike ………….. a message from the club regularly.','Receive ',' had received ',' receive',' has received ','most appropriate option','','a','','utme','2003',3729,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(25,'It is often……. that inflation ……….  from too much money chasing very few goods.    ','said/results','say/result      ','said/result   ','say/ resulted','most appropriate option','','a','','utme','2003',3715,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:37'),(26,'','spot    ','Law   ','North ','naught ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3715,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(27,'','cost    ','won’t    ','hope    ','coast ','choose the option that has a different vowel sound from the others.','','a','','utme','2003',3839,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(28,'','there   ','dear    ','fair         ','bear','choose the option that has a different vowel sound from the others.','','c','','utme','2003',3831,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:09'),(29,'','wife','of','off','laugh','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3817,'Admin','0000-00-00 00:00:00','2020-08-18 08:27:33'),(30,'','chef','chief','shoe','ocean','choose the option that has a different consonant sound from the others.','','b','','utme','2003',3842,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(31,'If he went to London, he would see the Queen','He did not go to London and did not see the Queen',' He would like to see the Queen when he goes to London','When he goes to London, he will see the Queen ','He did not see the queen when he went to London.','that best explains the information conveyed ','','c','','utme','2003',3683,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:14'),(32,'Ngozi has always considered her father to be an impassioned man ','Her father is a very strict man  ','Her father is a very lively man ','Her father is an emotional man ','Her father is a disciplined man ','that best explains the information conveyed ','','c','','utme','2003',3776,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:53'),(33,'The manager paid us in hard currency  ','We were paid in a strong and stable currency ','We were paid in new notes ','We were paid in new notes','We were paid in foreign currency.','that best explains the information conveyed ','','a','','utme','2003',3781,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(34,'The elders rebuked ','Olu for talking issue with his principal. ','Olu was scolded for acting in collusion with his principal ','Olu was reprimanded for arguing with his principal','Olu was blamed for issuing a statement denying his principal.','that best explains the information conveyed ','','b','','utme','2003',3932,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:32'),(35,'In spite of his humble beginning, Audu now throws his weight around ','His noble birth notwithstanding, Audu is a corrupt man ','From his poor background, Audu is now a rich man ','Despite his obvious poverty, Audu is a proud man ','Audu is arrogant despite his simple upbringing .','that best explains the information conveyed ','','d','','utme','2003',3731,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(36,' <u>Ch</u>alet','chairman','College','champagne','Chemical','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.  ','','c','','utme','2003',3758,'Admin','0000-00-00 00:00:00','2020-08-13 13:19:08'),(37,'Tee<u>th</u>','taught','tank','though','thought',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2003',3794,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(38,'Co<u>n</u>crete ','anxious ','concern ',' consider ','attend ',' choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3767,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(39,'He is well known for his <i>inordinate</i> ambition ','passionate ','sound ','excessive','moderate ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3754,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(40,'A <i>conservative</i> estimate put the number of missing persons at forty.','an accurate ','An incorrect ','A rough ','Primitive ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3829,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(41,'Agbenu was <i>ecstatic</i> about her result ','sad','dispassionate ','mad ','pessimistic ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3785,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(42,'Students could be <i>timid</i>','Pugnacious ','friendly ','bold ','covetous','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3858,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(43,'The labour leader’s <i>recalcitrant</i> stance was applauded ','flexible ','uncompromising ','well-informed ','stubborn ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3828,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(44,'The company has continued to <i>monopolize</i> the distribution of the products.','regularize ','liberalize ','centralize ','specialize ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3754,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:39'),(45,'The doctor examined the patient <i>painstakingly</i> ','Carefully ','Perfunctorily ','Professionally ','Painfully ','opposite in meaning to the word(s) or phrase in italics ','','c','','utme','2003',3710,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(46,'Toyin is married to an <i>impatient, self-centred man ','a tolerant ','a tolerable','a fretful ','an edgy','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3785,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(47,'The agency has sworn to deal  with all the <i>apostles</i>  of confederation ','opponents ','apostates ','Proponents ','Protagonists ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3731,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(48,'The members of the congregation were <i>inspired</i> by the sermon ','enthralled ','disenchanted ','disoriented ','bewitched ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3803,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(49,'<i>Gregarious</i> animals can be found in the zoo.','lonely ','tame ','wild ','various ','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3889,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(50,'I am <i>loath</i> to do the assignment ','unwilling ','waiting ','dying ','willing ','opposite in meaning to the word(s) or phrase in italics ','','d','','utme','2003',3783,'Admin','0000-00-00 00:00:00','2020-08-19 01:57:21'),(51,'Only those who are <i>gullible</i> fall victim to his trickery ','astute ','Courteous ','saucy ','devastated','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3828,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(52,'A cool bath in a hot weather can be truly <i>invigorating</i> ','debilitating ','devastating ','disgusting ','unpalatable','opposite in meaning to the word(s) or phrase in italics ','','a','','utme','2003',3709,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(53,'The witness decided to <i>conceal</i> the evidence ','waive ','divulge ','hide','destroy ','opposite in meaning to the word(s) or phrase in italics ','','b','','utme','2003',3732,'Admin','0000-00-00 00:00:00','2020-08-18 11:04:50'),(54,'The President SPOKE to the press ','Did the Present write to the press?','Did the president speak to the press?','Who spoke to the press?','Are these the pressmen that the President spoke to?','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','a','','utme','2003',3674,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(55,'My MOTHER served rice and fresh fish stew for dinner.','Did your mother serve rice and fresh fish stew for lunch?','Who served rice and fresh fish stew for dinner?','What kind of meal did your mother serve for dinner?','what kind of meal did your mother serve for dinner? ','word in capital letters has the emphatic stress. Choose the option to which the sentence relates.','','b','','utme','2003',3817,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:39'),(56,'Mark<u>e</u>t  ','mortgage ',' bachelor ',' get ',' enter ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2003',3702,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(57,'c<u>olo</u>nel ',' golden',' girl',' colony ',' goal ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3814,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(58,'t<u>e</u>nd ','caned ',' jeopardy ','turned ',' earned ','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2003',3794,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(59,'The boys knew that a storm was <i>imminent</i>','Impending ','encroaching ','possible ','threatening ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3739,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:07'),(60,'The leader has the <i>unstinting</i> support of his party ','cautious ','uninspiring ','unsparing ','laudable ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3706,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(61,'The <i>essence</i> of governance is to seek the good and well-being of the majority of the people ','characteristics ','importance ','Secret ','Goal','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3666,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(62,'The carpenter built a <i>commodious</i> wardrobe ','wide ','gigantic ','small ','spacious','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3709,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:20'),(63,'The company is to <i>shed</i> three thousand staff this year ','Throw up ','placate ','lay off','demote ','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3826,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(64,'A few years ago, nobody would have believed that the economy would <i>turn around </i>','change ','deteriorate ','improve ','stagnate ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3786,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(65,'The man’s story sounded <i>plausible</i> to his audience ','credible ','entertaining ','fantastic ','credulous ','choose the option nearest in meaning to the word(s) or phrase in italics.','','d','','utme','2003',3890,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:46'),(66,'Before announcing his retirement, Ochima resolved to <i>settle an account with</i> the bank.','get  back at ','pay back all he owes ','close his account with ','retire his loans from ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3766,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(67,'He shared his room with a person whose behaviour was quite <i>nauseating</i> ','disgusting ','disrespectful ','disagraceful ','discouraging ','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3818,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:39'),(68,'From what she said, one may <i>infer</i> that she does not like the course','agree ','deduce ','suppose ','realize ','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3790,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(69,'The party supporters <i>vilified</i> the Chairman for the role he played in the crisis that rocked the party ','impeached ','condemned ','challenged ','elected','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3687,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:22'),(70,'Publishing as a business venture has become a <i>hot potato</i> in Nigeria. ','unacceptable  ','unpleasant ','expensive                                                              ','profitable','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3699,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:44'),(71,'The <i>cynics</i>  feared that the nation’s nascent democracy would fail','illusionists','pessimists','delinquents','critics','choose the option nearest in meaning to the word(s) or phrase in italics.','','b','','utme','2003',3698,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(72,'The nurse was in favour of <i>voluntary eutheanasia</i>','a sleeping pill','a major operation','a painless death','a simple operation','choose the option nearest in meaning to the word(s) or phrase in italics.','','c','','utme','2003',3779,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(73,'There was a <i>glut</i> of oil on the market','an abundance of','an increase in','a variety of','an accumulation of','choose the option nearest in meaning to the word(s) or phrase in italics.','','a','','utme','2003',3749,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(74,'Typist','refuse  (noun)','superb','propose','rebel (verb)','choose the option that has the same stress pattern as the given word.','','a','','utme','2003',3729,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(75,'Cement','perfect (adjective)','include','interest','employ(noun)','choose the option that has the same stress pattern as the given word.','','b','','utme','2003',3676,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:58'),(76,'I shall find time for my ……… when I get …… with this difficult assignment.','Pat time /over','pass-time/over','pastime/through','pastime/through','choose the option that best completes the gap(s).','','d','','utme','2004',3722,'Admin','0000-00-00 00:00:00','2020-08-19 01:57:23'),(77,'Agbo says he is not afraid of ………','anybody','nothing','nobody','no one','choose the option that best completes the gap(s).','','a','','utme','2004',3641,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:13'),(78,'It is …….. responsibility to look after their parents in old age.','theirs’','their','theirs','their’s','choose the option that best completes the gap(s).','','b','','utme','2004',3877,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:02'),(79,'One needs to exemplify or ………. the aspect of the subject being discussed','supply','declare','satisfy','demonstrate','choose the option that best completes the gap(s).','','d','','utme','2004',3903,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:39'),(80,'……………his illness, Muhammad could not come to school.','with reference to','referring to','owing to','due to .','choose the option that best completes the gap(s).','','d','','utme','2004',3862,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(81,'After so many trials, the experiment………….','paid up','paid for','paid out','paid off','choose the option that best completes the gap(s).','','d','','utme','2004',3841,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(82,'People dislike Mariam because she is ……………','trickful',' trickish','trickly','tricker','choose the option that best completes the gap(s).','','c','','utme','2004',3809,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(83,'The reporter said that the Honourable speaker………….. impeached ','is to be','might have been','may have being','will have been','choose the option that best completes the gap(s).','','b','','utme','2004',3774,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:44'),(84,'Actually, he forgot the one to …………… the job was given.','whom','who','whomever','whoever','choose the option that best completes the gap(s).','','a','','utme','2004',3691,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(85,'You may not have heard the last word on the matter……..','may you have','haven’t you','have you','mayn’t have you?','choose the option that best completes the gap(s).','','c','','utme','2004',3711,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(86,'All God’s prophets were given the great……….to preach salvation to people.','commission','commition','commission','commission','choose the option that best completes the gap(s).','','d','','utme','2004',3870,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(87,'Ali goes to the stadium regularly, but he …………… to the church for months.','hasn’t been','haven’t been','didn’t go','hadn’t been','choose the option that best completes the gap(s).','','a','','utme','2004',3835,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:57'),(88,'Each of the houses…………',' have got',' Have','has','were given a new look.','choose the option that best completes the gap(s).','','c','','utme','2004',3820,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:30'),(89,'The minister addressed the workers to boost their…………',' Morale','morality',' mural',' moral','choose the option that best completes the gap(s).','','a','','utme','2004',3634,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:02'),(90,'I don’t coming home, is he?......... he is isn’t.','Yes','No','won','now','choose the option that best completes the gap(s).','','b','','utme','2004',3792,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(91,'………..as a federal capital only……….. the last twenty years.','has existed/for','existed/over','was existing/from','is existing/in','choose the option that best completes the gap(s).','','a','','utme','2004',3722,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(92,'No teacher of honour would subject his student to any form of ……..','harassment','Harassment','harassment','harassment','choose the option that best completes the gap(s).','','b','','utme','2004',3723,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:59'),(93,'Each producer  is able to place a price on his product by considering its…………','worth','choice','judgement','assessment','choose the option that best completes the gap(s).','','a','','utme','2004',3767,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(94,'The police claim that a number of stolen cars…………. recovered.','has being','is being','has been','have been','choose the option that best completes the gap(s).','','c','','utme','2004',3766,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(95,'The storm………….. Havoc on several buildings in the village.','wreaked','wrecked','made','did','choose the option that best completes the gap(s).','','a','','utme','2004',3723,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(96,'The chairman refused to shake…………. with the secretary','hand','his hand','hands','his hands','choose the option that best completes the gap(s).','','c','','utme','2004',3769,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(97,'The poor widow who could not buy the clothes was seen…….her wool into……….yesterday','to spin/yards','spinning/yarn','making/tailoring','to spill/clothes','choose the option that best completes the gap(s).','','b','','utme','2004',3720,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:18'),(98,'He not only looked after the children when their parents died, ………..sponsored their education to university.','but also','also he','but he','also','choose the option that best completes the gap(s).','','a','','utme','2004',3803,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:04'),(99,'His supporters railed round him in moments of …………..','criticism','Crisis','acrimony','disillusionment.','choose the option that best completes the gap(s).','','b','','utme','2004',3831,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(100,'The interpreter was wrong because he gave the congregation a ………… translation of the pastor’s statement.','literal','unilateral','literary','lateral','choose the option that best completes the gap(s).','','a','','utme','2004',3728,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:02'),(101,'Ju<u>dge</u>','gear','spinach','pleasure','camouflage','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','d','','utme','2004',3793,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(102,'caus<u>ed</u>','chanced','frost','released','realized','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','b','','utme','2004',3742,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(103,'mis<u>chi</u>ef ','Christmas','ritual','Brochure','Champagne','choose the option that has the same consonant sound as the one represented by the letter(s) underline.','','a','','utme','2004',3615,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:39'),(104,'Everyone was ready to play the evil’s advocate in the impeachment controversy.','everyone was willing to speak against the impeachment to encourage discussion on it.','everyone was willing to defend an unpopular point of view concerning the impeachment.','everyone was willing to fight for the defenceless citizens no matter the consequences.','everyone was willing to be an evil genius in the controversy','that best explains the information conveyed in the sentence.','','a','','utme','2004',3647,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(105,'Adamu’s father is a key figure in that ministry','The ministry trusts Adamu’s father as a central figure','Adamu’s father is a figurehead in the ministry','Adamu’s father’s position is essential in the ministry.','Adamu’s father keeps the key to the ministry.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3832,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:53'),(106,'The government warns that drink-driving is punishable under the law.','a drunkard driving can be punished','driving while drunk is an offence','driving while drinking is an offence','drinking and driving is an offence.','that best explains the information conveyed in the sentence.','','a','','utme','2004',3694,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(107,'In many countries, democracy is ostensibly being practiced.','democracy is indeed being practiced  in many countries','many countries have effective democracy.','many countries have democracy in practice','democracy is apparently practice in many countries.','that best explains the information conveyed in the sentence.','','d','','utme','2004',3865,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(108,'The investigators stated clearly that they had reached a dead end in their scrutiny of suspects in the murder case.','the investigators did not know what to do with the suspect’s murder','The investigators had evidence to sentence the suspects to death in the end.','there was no further progress in the investigation of the murder suspects.','the end had come for the suspects in the murder case.','that best explains the information conveyed in the sentence.','','c','','utme','2004',3722,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:58'),(109,'',' Secondment','Orthopaedic',' oriental','photographic','choose the option that has a different stress pattern from the others.','','a','','utme','2004',3737,'Admin','0000-00-00 00:00:00','2020-08-19 01:57:22'),(110,'','ratify',' famous',' result',' taxi','choose the option that has a different stress pattern from the others.','','c','','utme','2004',3758,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(111,'Sailors are unusually <i>dauntless</i> in their exploits','selfless','ruthless','excited','frightened','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3715,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(112,'The <i>potency</i> of the drug has been acknowledged.','action','loss','inefficacy','power','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3611,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(113,'The dictator wanted <i>tractable</i> men in his cabinet.','reliable','intelligent ','tough','unruly','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3745,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(114,'After the war, the victors became increasingly <i>vindictive</i>','friendly','vociferous','arrogant','treacherous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3899,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:02'),(115,'The ship was <i>imperiled</i> by high winds','piloted','destroyed','deceived','saved','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3788,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(116,'Beauty queens sometime wear <i>outlandish</i>  dresses.','beautiful','flashy','familiar','attractive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3718,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(117,'The journalist said he was working <i>freelance</i>','tirelessly','satisfactorily','without a pay','dependently','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3755,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(118,'My father’s presentation was rather <i>causal</i>','formal','vital','informal ','divisive','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3732,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(119,'The flying Eagles put up a <i>plucky</i> defence against their opponents.','strong','weak','careless','tactful','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3765,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(120,'The man who scare the girl was a bit <i>deranged</i>','sane ','amorous','crazy','dangerous','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3696,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:02'),(121,'The injured man is determined to <i>get back</i> at his assailant.','attack','identify','visit','forgive','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2004',3834,'Admin','0000-00-00 00:00:00','2020-08-19 07:36:27'),(122,'The player <i>writhed in pain</i> after the fall.','remained still','cried out','walked out','shook violently','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3841,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(123,'The noise of the fan <i>unnerved</i>  the star player.','refreshed','confused','helped','calmed','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2004',3798,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(124,'The team got <i>an ecstatic</i> welcome from the crowd.','An unexpected','a joyous','a cold','a thunderous','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2004',3740,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(125,'We found a <i>shady</i> place for the display.','an open','an unsafe','a stuffy','an enclosed','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2004',3685,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(126,'expostulate','exposTUlate','expostuLATE','EXpostulate','exPOStulate','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2004',3661,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(127,'sufficiency','sufFIciency','SUFficiency','sufficienCY','suffiCIENcy','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2004',3814,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(128,'The town was in such a <i>turmoil</i> that the dance was called off.','mourning state','rainy state','state of darkness','state of confusion','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3780,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:38'),(129,'The festivals create in the people a feeling of price in the cultural <i>heritage</i>  ','history','heirloom','legacy','possession','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3699,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(130,'<i>Funnily enough,</i> the priest prayed for the robber who shot him.','Timidly','Unexpectedly','Disappointingly','Fearlessly.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3610,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:11'),(131,'The presence of the captain makes the sailors <i>ill at ease</i>.','uncomfortable ','sickly ','impatient','easily ill','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3709,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(132,'The press describe the efforts of the government in <i>pejorative</i> terms.','critical','contemptible','palpable','superlative','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3693,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(133,'Okonkwo manages his household <i>with a heavy hand.</i>','like a powerful dictator','using the cane on every occasion','without tolerating weakness','like a heavy weight champion.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3842,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(134,'The school’s badge is the <i>insignia</i> of office for all the prefects in the school.','Power','symbol','seal','recognition','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3726,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(135,'Ibro shows enough <i>liberality</i>  with his meager income.','generosity','frugality','prodigality','insensitivity','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2004',3723,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(136,'It is a <i>misnomer</i> to call three thousand naira a living wage.','an incontrovertible assertion','an appropriate term','a wrong description','a mishmash','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3795,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(137,'His plans <i>boomeranged</i> on him','bounce','fell','catapulted','backfired','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3748,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(138,'The manager’s knowledge of the strike is of <i>the utmost</i>  importance.','standard','genuine','paramount','basic','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2004',3698,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(139,'There has been a <i>downturn</i> in the affairs of the company.','a massive increase','little progress','a turn-around','a decline','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3703,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(140,'The <i>mottled</i> skin of a person with HIV indicates an advance stage  of its development.','Brown ','spotted','scaly','pimply','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3797,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(141,'In spite of constant financial support from his father, Udenyi treats his studies with considerable <i>levity</i>.','seriousness','enthusiasm ','wastefulness','lassitude','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2004',3834,'Admin','0000-00-00 00:00:00','2020-08-19 01:57:21'),(142,'The prosecutor was fully able to <i>substantiate</i> the charge.','expatiate on','prove','dismiss','weaken','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2004',3796,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:06'),(143,'The teacher wants MY pen.','Does the teacher want his pen?','What does the teacher want?','Does the teacher want your ruler?','Who wants my pen?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','a','','utme','2004',3790,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(144,'The student BOUGHT the book.','Who bought the book?','Did the student steal the book?','What did the student buy?','How will the student get the book?','the word in capital letters has the emphatic stress.  Choose the option to which the given sentence relates.','','b','','utme','2004',3801,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:02'),(145,'n<u>i</u>ne','pint','gill','pin','click','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2004',3732,'Admin','0000-00-00 00:00:00','2020-08-19 01:47:41'),(146,'b<u>ea</u>r','beer','steer','rare','fear','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','d','','utme','2004',3753,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:02'),(147,'',' Circulation','eleven',' impossible','criticism','choose the option that has the stress on the first syllable.','','d','','utme','2004',3819,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:03'),(148,'','bachelor','condemn',' afternoon','intact ','choose the option that has the stress on the first syllable.','','a','','utme','2004',3856,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(149,'',' foul','tout','owl','foe','choose the option that has a different vowel sound from the others.','','d','','utme','2004',3826,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(150,'','alter',' water',' pot','hall','choose the option that has a different vowel sound from the others.','','c','','utme','2004',3703,'Admin','0000-00-00 00:00:00','2020-08-20 16:35:01'),(151,'If the rain hadn’t fallen, we wouldn’t have missed the match.','The rain is falling, so we will miss the match.','The rain fell, so we didn’t watch the match','The rain fell, so we watched the match','The rain didn’t fall, so we didn’t watch the match.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3874,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(152,'The class was tired of the new boy jawing away all the time.','He bit off people’s jaws','He was always chewing in the class.','He was always making trouble for the class','He talked continuously in the class','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3796,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:07'),(153,'The new Headmaster hoped that his men would pull together','He expected that the men would cooperate with him','He thought that the men would compose themselves at work','He was certain that they would resign en masse','He was certain that their condition would improve under him.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3836,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(154,'If the trader paid in full, his order was not pruned down.','The trader who made full payment did not have his order reduced','The trader who made some payment did not have his order delayed.','Unless the trader paid in full his order would be rejected.','As the trader did not increase his order, he did not need to pay in full','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3792,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(155,'The men were not pawns in someone else’s political game.','The action they executed was their idea','The men used someone else’s plain','They were used by someone’s political game','They love playing political games','select the option that best explains the information conveyed in the sentence.','','a','','utme','2005',3862,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:32'),(156,'The crisis ended as suddenly as it began','The crisis ha suddenly as it began','The crisis will not end suddenly','The crisis stopped almost immediately','The crisis will stop immediately.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3807,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:39'),(157,'One thing I will not be complaining about in my new job is a lack of excitement','The job is bad  ','The job is exiting','The job is not too exciting','The job has been previously done','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3788,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(158,'The Governor parried all the questions put to him by the journalist.','The Governor answered all the questions brilliantly','The Governor evaded all the questions','The Governor failed all the questions','The Governor mastered all the questions','select the option that best explains the information conveyed in the sentence.','','b','','utme','2005',3835,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(159,'if I visited England, I might go to Manchester City ','When I go to England, I could go to Manchester City','Whenever I visit England, I must go to Manchester City','I did not go to England and could not go to Manchester City','I could not visit Manchester City because I did not want to go to England.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2005',3882,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:08'),(160,'The man puts his foot down whenever he is convince of his action','He desires to assert his will in the situation','He makes his mark wherever he goes','His attitude demonstrates someone who likes  to oppress others around him','He demonstrates firmness of character','select the option that best explains the information conveyed in the sentence.','','d','','utme','2005',3749,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:38'),(161,'The teacher recounted two events that were <i>analogous</i>  with  each other','similar with','Advantageous to','distant from','different from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3895,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(162,'The Principal was filled with <i>scorn</i>  when we gave  our reason for coming late','contempt','sympathy ','anger','pity','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3893,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(163,'After fifty years, he could not find anyone who was <i>contemporary</i> with him at college','strange to','friendly with','belonged to','contented against','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3794,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:08'),(164,'Idris gives me a <i>sour</i> look every time I pass by him','bad','satisfactory','friendly','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(165,'The officer was given an <i>invidious</i> task','vivid','cruel','pleasant','sinister','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3875,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(166,'The views of the plateau are in stark contrast to the <i>workaday</i> cottages below','ordinary an uninteresting','beautiful an interesting','comfortable an fascinating','ugly an unfascinating','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3788,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:37'),(167,'The President can afford to dispense with some of his <i>henchmen</i>','detractors','body guards','sycophants','advisers','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2005',3884,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(168,'Asabe bought a <i>glossy</i>  pair of shoes ','smooth and shiny','rough an dull','smooth and shining','rough an gummy','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3972,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(169,'Manu is hard to convince because he is an <i>opinionated</i>  person','an objective','an imperative','a subjective','a discursive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3845,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(170,'Some people consider the leather uphoistery and thick rugs a bit <i>sumptuous</i>  ','expensive','desirable','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3747,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(171,'The dramatist provided as satisfactory <i>denouement</i>  to the play','audition','climax','lavish','simple','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2005',3897,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(172,'Many Nigerians are <i>wary</i> of night journeys','worried about','unscarred of','satisfied with','troubled about','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2005',3803,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(173,'The proprietor accuse Uche of silently<i> acquiescing</i>  to the students’ demands','submitting to','adjusting','compromising on','resisting','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2005',3910,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(174,'No wonder Sikemi later became a detective; she has been very <i>observant </i>','curious','perceptive','inductive','inquisitive','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3848,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(175,'Nigeria has been playing a <i>vital role</i> in the political an economic development of Africa','creditable','crucial','respectable','laudable','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3746,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(176,'Emeka’s painting was <i>so realistic</i>  that it could almost have been a photograph','picture square','concrete','lively','authentic','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3910,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(177,'<i>Courteously</i>, Ade stood back to let his teacher go first through the door','patiently','politely','carefully','calmly','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3844,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(178,'Many people use to lie in <i>poverty</i>','instability','want','difficult','the slums','choose the option nearest in meaning to the word or phrase  in italics ','','c','','utme','2005',3792,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(179,'<i>Accountability</i> is certainly a desirable quality in a politician','respectability','responsibility','courage','Diligence','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3819,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:07'),(180,'The <i>common</i> practice among some media practitioners is to be sensational in their reporting','prevalent','rampant','ordinary','cogent','choose the option nearest in meaning to the word or phrase  in italics ','','a','','utme','2005',3830,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(181,'That <i>fateful</i> decision change the company’s outlook in many ways.','wonderful','uncontrollable','disastrous','unsuccessful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3905,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(182,'The accident victim received a <i>superficial</i> wound from the crash','a serious','a painless','an internal','an external','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3845,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:18'),(183,'The boxer <i>fizzled</i> out just in the sixth round','knocked out his opponent','showed off his talents','became tire out fought on spiritedly','surrendered rather disappointingly','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3769,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:35'),(184,'The manager describe Mfon as a man of vehement <i>character</i>','weak an uninterested','strong an insistent','troublesome an noisy','clever and helpful','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3770,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:08'),(185,'Obi’s dog is old but still <i>lively</i>','attractive','howling','barking','frisky','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3839,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(186,'His <i>taciturnity</i> amaze everyone in one court during the legal tussle','obliviousness','reticence','sensibility ','pervasiveness','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3872,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(187,'The greatness of the creator of the universe is always <i>inexpressible</i> to many adherents of certain faiths','inevitable','wonderful','unbearable','ineffable','choose the option nearest in meaning to the word or phrase  in italics ','','d','','utme','2005',3827,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(188,'We <i>made a pile</i> in the business deal','lost a lot of money','earned a lot of money','broke even        ','cut corners','choose the option nearest in meaning to the word or phrase  in italics ','','b','','utme','2005',3781,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(189,'Yesterday, my mother asked me.... ',' If I am tired? ','are you tired?',' whether was I tired?','If I was tired','choose the option that best completes the gap(s)','','d','','utme','2005',3826,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:39'),(190,'The Bank Manager assured us that there was nothing to worry about','as regard to the loan ','with regards to the loan','in regard of the loan  ','with regard to the loan','choose the option that best completes the gap(s)','','b','','utme','2005',3904,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(191,'The first prize was','a carved wooden, attractive ','a wooden attractive carved   ',' an attractive carved wooden   ','a carved attractive wooden tray ','choose the option that best completes the gap(s)','','c','','utme','2005',3876,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:58'),(192,'Tsadu always cautions that difficult jobs should be done','step from step ','step by step','steps after steps    ','steps by steps','choose the option that best completes the gap(s)','','b','','utme','2005',3891,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(193,'I was often angry …… Oche since he differed…   me often','with/to ','about/with   ','against/from','with/with','choose the option that best completes the gap(s)','','d','','utme','2005',3766,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:16'),(194,'I am writing to you for ……..  reasons','concerned ','several','plenty ','myriad of','choose the option that best completes the gap(s)','','b','','utme','2005',3937,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(195,'As we sat ………the silence, my eyes……..  the room','under/looked  ','over/surrounded ',' in/roamed',' along/observed','choose the option that best completes the gap(s)','','c','','utme','2005',3813,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(196,'Is it true that Okoro……..  when the gates were closed?','had returned','would return  ','should return    ','would have returned','choose the option that best completes the gap(s)','','a','','utme','2005',3901,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:35'),(197,'The public library has stopped………. books to readers','borrowing','lending ','renting ','loaning','choose the option that best completes the gap(s)','','a','','utme','2005',3735,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(198,'We won\\'t leave until it ……..  Raining','will stop ','stopped','stops    ','has stopped','choose the option that best completes the gap(s)','','c','','utme','2005',3866,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(199,'The …………   event marked the beginning of a new life for the entire cabinet','historical  ','historicity of the','historic ','history of the','choose the option that best completes the gap(s)','','c','','utme','2005',3788,'Admin','0000-00-00 00:00:00','2020-08-19 01:47:40'),(200,'The train ………. before I arrived','was leaving   ','has left','had left   ','would leave ','choose the option that best completes the gap(s)','','c','','utme','2005',3778,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:37'),(201,'You can travel on your own ……….. ?','isn\\'t it','can\\'t you   ','won\\'t you  ','shan\\'t you','choose the option that best completes the gap(s)','','b','','utme','2005',3784,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:58'),(202,'The man is refurbishing the flat with a view to ……. it.','sell   ','selling ','have sold ','be selling  ','choose the option that best completes the gap(s)','','d','','utme','2005',3691,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(203,'The Secretary-General was shocked at the number of…….','child\\'s soldiers   ','childish soldiers  ','children soldiers ','child soldiers','choose the option that best completes the gap(s)','','d','','utme','2005',3806,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(204,'In spite of Shade\\'s good looks, her hair is always………','unkept','unkempt   ','unwashed','uncared for','choose the option that best completes the gap(s)','','b','','utme','2005',3812,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:53'),(205,'By the end of the football match today, we ……. the best player','could have known  ','might have known','will have known ','would have known ','choose the option that best completes the gap(s)','','d','','utme','2005',3888,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(206,'It is African for a younger person to show……..to elders','understanding ','indifference ','deference','satisfaction ','choose the option that best completes the gap(s)','','c','','utme','2005',3770,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(207,'A nursery rhyme is used to teach pupils how to spell the word','hipoppotemus','hippoppotemus','hipoppotamus ','hippopotamus','choose the option that best completes the gap(s)','','d','','utme','2005',3723,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(208,'b<u>ee</u>r','bear',' pear ',' fair',' pier','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','d','','utme','2005',3773,'Admin','0000-00-00 00:00:00','2020-08-11 11:50:58'),(209,'g<u>uar</u>d','gourd','guide','argue','chat','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','c','','utme','2005',3900,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(210,'l<u>u</u>ck','lock','lack','brother','turn','choose the option that has the same vowel sound as the one represented by the letter(s) underlined','','a','','utme','2005',3801,'Admin','0000-00-00 00:00:00','2020-08-19 01:47:40'),(211,'fi<u>l</u>m','salt','walk','pslam','chalk','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','a','','utme','2005',3898,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(212,'heal<u>th</u>y    ','father','path','they','that','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2005',3804,'Admin','0000-00-00 00:00:00','2020-08-18 13:01:53'),(213,'E<u>n</u>glish','single','impugn','ink','orange','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2005',3832,'Admin','0000-00-00 00:00:00','2020-08-18 16:43:38'),(214,'jurisprudence','JUrisprudence','juRISprudence',' jurisPRUdence','jurispruDENCE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3754,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(215,'suburbanite','SUburbanite','suBURbanite','  suburBAnite','suburbaNITE','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','c','','utme','2005',3842,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:38'),(216,'departmentalize','departMENtalize         ','dePARTmentalize     ','DEpartmentalize','departmenTAIize','choose the appropriate stress pattern from the options. The syllables are written in capital letters','','d','','utme','2005',3800,'Admin','0000-00-00 00:00:00','2020-08-19 01:47:40'),(217,'refuse(noun)','reform   ','intact   ','obscure','phantom','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3793,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(218,'downtrodden','downgrading','prescribing','functional','internal','choose the option that has same stress pattern as the given word.','','d','','utme','2005',3939,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(219,'','interpreter',' remarkable','  impossible ','criticism','choose the option that has a different stress pattern from the others','','a','','utme','2005',3933,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(220,'','  impound','canoe','  subject(verb)',' knowledge','choose the option that has a different stress pattern from the others','','d','','utme','2005',3810,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(221,'Your mother CAN cook the meal',' Who will cook the meal?','Can my father cook the meal?','Isn\\'t my mother able to cook the meal7','What can my mother do?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','c','','utme','2005',3891,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(222,'The EAGLES won the match','Did the Eagles lose the match?','Who won the match?','What did the Eagles win?','Did the Eagles win the match?','the word in capital letters has the emphatic stress. Choose the option to which the given sentence relates','','b','','utme','2005',3869,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(223,'The police claim that a number of stolen cars…… recovered ','have been ','has been  ','has being',' have being ','choose the option that best completes the gap(s).','','b','','utme','2006',3821,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(224,'     ………….  been there to look for her several times without success.','He\\'ll','He’s  ','Is he ','He is','choose the option that best completes the gap(s).','','b','','utme','2006',3726,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:02'),(225,' Until he lost the election, Agbo…………… to be the Student Union president.','had been hoping ','has been hoping   ','would have hoped   ',' has hoped ','choose the option that best completes the gap(s).','','b','','utme','2006',3846,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(226,'The old man was rushed to hospital when his blood  pressure dropped to a ……..  level','dangerously lowly','dangerous lowly ',' dangerously low',' dangerous low','choose the option that best completes the gap(s).','','c','','utme','2006',3728,'Admin','0000-00-00 00:00:00','2020-08-18 11:04:50'),(227,'If he ……… for admission, I am sure he would succeed','will apply ','applied ','had applied ','has applied','choose the option that best completes the gap(s).','','c','','utme','2006',3662,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(228,'The ……….   robber showed no mercy during the attack. ','loquacious ','senseless ','ruthless ','benevolent','choose the option that best completes the gap(s).','','c','','utme','2006',3907,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(229,'Did you have ……… when you went to visit the medical doctor? ','diarrhea ','diarrhea','diarhoea  ','diarrhea ','choose the option that best completes the gap(s).','','a','','utme','2006',3725,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(230,'Your performance will improve if you…….  Hard','are practicing ','practical ','would practice ','practise','choose the option that best completes the gap(s).','','b','','utme','2006',3738,'Admin','0000-00-00 00:00:00','2020-08-18 10:56:19'),(231,'The brave hunter killed the ………… in the forest ','big spitting cobra black','Black big spitting cobra ','big black spitting cobra ','big spitting black cobra ','choose the option that best completes the gap(s).','','c','','utme','2006',3698,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(232,'He wrote to you,……….  ?','hadn’t he ','wouldn’t  he ','didn’t he','hasn’t he','choose the option that best completes the gap(s).','','c','','utme','2006',3726,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(233,'The clubs were not…….. on a solid ethical base ','funded','found ','created ','founded ','choose the option that best completes the gap(s).','','d','','utme','2006',3716,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(234,'I watched him as he……  the hole','dug ','digs','is digging ','dugged','choose the option that best completes the gap(s).','','a','','utme','2006',3655,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:24'),(235,'His father hardly misses the news because he goes about with his………..  Radio','pointable ','potable ','potable','portable','choose the option that best completes the gap(s).','','d','','utme','2006',3760,'Admin','0000-00-00 00:00:00','2020-08-19 01:47:40'),(236,'The investigation Commission has treated all the …… submitted to it by the warring factions','protests ','petitions ','applications','enquires ','choose the option that best completes the gap(s).','','b','','utme','2006',3739,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:07'),(237,'Olu brought his clothes and those of his………..','Senior brother’s','elder brothers','elder brother’s ','senior brother.','choose the option that best completes the gap(s).','','c','','utme','2006',3760,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(238,'Our neigbour was attracted by the ………. from my mother’s cooking ','flavour','stench','scent','aroma ','choose the option that best completes the gap(s).','','d','','utme','2006',3788,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(239,'Everybody is allowed to ………. his views on state matters ','Air ','hear ','show ','share ','choose the option that best completes the gap(s).','','a','','utme','2006',3842,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(240,'Despite all preparations, the wedding did not …..','come along ','come by','come on ','come off','choose the option that best completes the gap(s).','','d','','utme','2006',3759,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(241,'For beating ……. his course mate, Agbaji was……… from the university.','up/rusticated ','on/expelled','at/removed ','away/sent out ','choose the option that best completes the gap(s).','','a','','utme','2006',3770,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:39'),(242,'We have been living peacefully here but……….. hear rumours of war.','again ','slowly','occasionally ','eventually','choose the option that best completes the gap(s).','','c','','utme','2006',3836,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:36'),(243,'Genealogy ','GeneaLOGY','geneAlogy','geNEalogy ','GEnealogy ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','b ','','utme','2006',3769,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(244,'Catholicism ','caTHOlicism ','catholiCism','CAtholicism ','cathoLIcism ','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2006',3714,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:14'),(245,'','ability ','Registration ',' quadruplicate ','revivalist ','choose the option that has a different stress pattern from the others. ','','a','','utme','2006',3816,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(246,'','competent ','represent ',' syllabus ','quality ','choose the option that has a different stress pattern from the others. ','','b','','utme','2006',3781,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(247,'apparent ','arrested ','telephone ','paragraph ','appetite ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3632,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:14'),(248,'Unfair ','insight ','towards ','first-class','instant ','choose the option that has the same stress pattern as the given word.','','c','','utme','2006',3857,'Admin','0000-00-00 00:00:00','2020-08-19 07:36:27'),(249,'Dovetail ','proviso ','simplicity ','jargon ','psychiatry ','choose the option that has the same stress pattern as the given word.','','a','','utme','2006',3910,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(250,'',' Insult (noun)','prepare ',' provoke','pronounce ','choose the option that has the stress on the first syllable.','','a','','utme','2006',3736,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(251,'','Frequent (verb)','mature ','madam','convict (verb)','choose the option that has the stress on the first syllable.','','c','','utme','2006',3687,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(252,'In our college, the regulations concerning resists are a grey area','The regulations have just been revised','The regulations have often been ignored','The regulations are perfectly clear','The regulations are not very clear.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3755,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(253,'Ogiri takes after his father, he fawns upon anyone with influence.','Like his father, Ogiri likes to flatter people with influence in society','Like his father, Ogiri hates influential people','Ogiri. who always follows his father, tries to act like an influential man','Ogiri, who looks like his father, follows rich and influential people about','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3792,'Admin','0000-00-00 00:00:00','2020-08-18 11:54:31'),(254,'You are to write a report and give it to the security office','After writing your report, give it to the security office','You are writing a report, as the security office directed','The report you are writing should be given to the security office','You have been ordered to write a report, which you wilt give to the security office ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3716,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:36'),(255,'After the war the victors became Increasingly vindictive ','Vengeful attacks were Incessantly carried out on those who lost the war ','  Friendly measures were taken to heal the wounds','Repressive measures were taken against those who lost the war','Those who won the war became treacherous ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3800,'Admin','0000-00-00 00:00:00','2020-08-18 10:56:19'),(256,'The prefect reeled off the names of all the students who Drake the library law.','The prefect gave a disjointed list of the students in the law library.','  The prefect omitted the names of the students who broke into the law library ','The prefect submitted a complete list of the students who stole library books','The prefect gave an accurate list of the students who disobeyed library regulations.','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3639,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:18'),(257,'1 owe you far less than you owe me','My debt to you is greater than yours to me','Your debt is not much greater than mine','What we owe each other Is approximately the same','I owe you something, but you owe me much more','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3711,'Admin','0000-00-00 00:00:00','2020-08-17 22:02:37'),(258,'The dispute over land acquisition has now come a head','The problem has reached crisis proportions ','The problem has now been referred to the headquarters ','Because of the dispute, land acquisition has now been halted ','The problem has now been solved ','the option that best explains the information conveyed in the sentence. ','','a','','utme','2006',3721,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(259,'He has hardly spoken when the bell rang ','He found it difficult to speak, and then the bell rang','When the bell rang, he was still speaking ','The bell rang very soon after he spoke','He spoke in a harsh manner and the bell rang ','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3704,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(260,'I think she takes her guardian’s support for granted ','Her guardian has been helping her for a long time, and she is very grateful to him. ','She wants her guardian to grant her more support.','She thinks her guardian will no longer support her as he has been doing.',' Her guardian has been helping her for a long time, but she does not show enough gratitude. ','the option that best explains the information conveyed in the sentence. ','','d','','utme','2006',3682,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:46'),(261,'The class has fallen in with the teacher\\'s plans','The class has ignored the plans','The class has rejected the plans',' The class has accepted the plans','The class has modified the plans','the option that best explains the information conveyed in the sentence. ','','c','','utme','2006',3845,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:15'),(262,'The move to expel the chairman was <i>sanctioned</i> by members of the party       ','unleashed  ','opposed ','supported',' initiated','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3753,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:03'),(263,'Because Jamiu is so <i>easily offended,</i> he was not considered for the post of headboy','Irritable    ','stubborn   ','troublesome ','docile','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3763,'Admin','0000-00-00 00:00:00','2020-08-18 11:54:31'),(264,'The witness provided a <i>monstrous</i> account of the event','supportive  ','tragic','shocking ','verbatim','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3712,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:06'),(265,'Adamu is rather <i>meddlesome</i> in dealing with his friends','impertinent ','intimidating ','quarrelsome',' uncaring','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3526,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(266,'The commander said that the battle would be sustained, total and <i>relentless</i>','continuous ','brutal   ','fierce ','innocuous','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3766,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:39'),(267,'The government has announced its <i>preparedness for</i> the scheme','determination ','regret ','pleasure ','readiness','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3670,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(268,'The chairman advised the participants to follow <i>convention</i> in stating their points.','eloquence ','advice ','prudence ','tradition','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3700,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:17'),(269,'His discovery of the vaccine became a <i>quantum leap</i> in the search for a scientific cure for the illness','victorious battle ','slow but steady step',' great improvement   ','fast but sure step','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3696,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:57'),(270,'After the meeting, I read a <i>leer</i> on his face as he looked at the woman.   ','satisfying meaning ','bad look ','pleasant disposition ','poor smile','choose the option nearest in meaning to the word or phrase in italics','','b','','utme','2006',3774,'Admin','0000-00-00 00:00:00','2020-08-18 10:56:19'),(271,'His loss suddenly became <i>redeemable</i> ','Incurable  ','exclusive','recoverable ','repulsive','choose the option nearest in meaning to the word or phrase in italics','','c','','utme','2006',3742,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(272,'The plan has gone <i>awry</i>','wide   ','wrong   ','well    ',' wild','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3742,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(273,'The judge emphasized his <i>morbid</i> desire in his judgement','inordinate ','uncritical ','ravenous ',' Unpleasant','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3720,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(274,'77. The recommended novel has a <i>convoluted</i> theme',' a simple ','an attractive ','a disgusting ','a complicated ','choose the option nearest in meaning to the word or phrase in italics','','d','','utme','2006',3626,'Admin','0000-00-00 00:00:00','2020-08-18 10:56:19'),(275,'The party men <i>reveled</i> all night when the election results were announced.','Celebrated ','mourned','fought ','discussed ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3665,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:04'),(276,'He is <i>prolific</i>  writer ','a very productive','a well-known','a clever ','an influential ','choose the option nearest in meaning to the word or phrase in italics','','a','','utme','2006',3804,'Admin','0000-00-00 00:00:00','2020-08-18 10:56:19'),(277,'h<u>ur</u>t','hut ','girl ','hate   ','hot','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3731,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(278,'c<u>o</u>ck','cop   ','cope ','cork ','cup','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3688,'Admin','0000-00-00 00:00:00','2020-08-18 13:01:53'),(279,'s<u>ay</u>s','fierce  ','dam','wet','rain','choose the option that has the same vowel sound as the one represented by the letter(s) underlined.','','c','','utme','2006',3803,'Admin','0000-00-00 00:00:00','2020-08-18 11:54:31'),(280,'c<u>h</u>aracter','unique   ','charade   ','arch   ','church ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','a','','utme','2006',3855,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(281,'  bush<u>es</u>','shapes ','shoes  ','rapes   ','rakes','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2006',3774,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:44'),(282,'gara<u>ge</u>','gear   ','sure   ','pressure ','measure','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2006',3770,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:53'),(283,'The usually hostile crowd was captivated by the .player\\'s <i>winsome</i> attitude','obnoxious  ','friendly  ','colourful  ','drunken','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3643,'Admin','0000-00-00 00:00:00','2020-08-16 10:48:46'),(284,'The reporter made a <i>masterly</i> analysis of the situation','an unskilful ','a mistaken ','an indepth','a proper','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3786,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:37'),(285,'He has no reason to <i>have his heart in his mouth</i>',' think negatively',' feel guilty ',' be afraid',' be confident','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3801,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(286,'That little boy has become quite <i>chubby</i>','thin    ',' intelligent   ','huge    ','tall','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3714,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(287,'Akpan was able to <i>douse</i> the flames with the new piece of equipment','reduce ','extinguish ','ignite ','reinforce','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3683,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:13'),(288,'He gave himself up by his <i>plebeian</i> tastes','robust ','voracious ','patrician   ','laughable','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3788,'Admin','0000-00-00 00:00:00','2020-08-18 10:56:19'),(289,'<i>No sooner had</i> he arrived than it started to rain',' Long before ',' Seldom ','Simultaneously','Just before','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3751,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(290,'The action was <i>premeditated</i>','unnecessary ','catastrophic ','unplanned ','uncoordinated','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3767,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:14'),(291,'A <i>tentative</i> solution was provided','A convincing ',' provisional','An amicable ','A definite','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3673,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(292,'The chief said he would use the power <i>inherent</i> in his office to stop the celebration',' unrelated to ',' common to ',' allotted to ',' impervious to','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3785,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(293,'In our last play, Segun acted the <i>hero</i>','villain  ',' devil ','criminal ',' assassin','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2006',3783,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:08'),(294,'The police found a <i>conclusive</i> proof of the boy\\'s guilt','a corroborative ','A doubtful ','a consolatory',' an incriminating','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2006',3778,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:18'),(295,'The point you have made is quite <i>apt</i>','illogical ','helpful ','irrelevant ','insensitive','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2006',3865,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:20'),(296,'The man drew a sword as people <i>congregated round</i> him','praised',' gathered round ',' mobbed ',' fled from','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3819,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(297,'The notice reads, No <i>cash</i> transactions in this hall\\'','money   ','gainful ','business ','cheque','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2006',3779,'Admin','0000-00-00 00:00:00','2020-08-18 11:54:31'),(298,' He <i>deprecated</i> the attempts made to unseat him.','despised','challenged    ','resisted','condemned','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3707,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:58'),(299,'The striking workers have vowed not to return to work until the decision is <i>reversed.</i> ','rescinded         ','dismissed','implemented    ','reverted. ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3791,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:44'),(300,'The police are not happy with the growing number of <i>depraved</i> people around the politician.','violent ','immoral ','indolent ','loquacious ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3717,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:38'),(301,'The last criticism at the rally was made <i>in ignorance</i>','uniformed ','objective ','unimpeaccable','impeccable ','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3630,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(302,'The astute businessman neatly <i>fended</i> off questions off questions about his private life.','asked ','explained ','welcomed','sidestepped.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3675,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:39'),(303,'We were warned not to indulge in <i>recriminations.</i>','counter-charges      ','indiscretions  ','accusation','frivolous allegations.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3743,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:18'),(304,'The shortage of petrol was a <i>perennial</i> problem','a recurring   ','a seasonal ','an annual','an incurable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3794,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(305,'The rest of the boys admire Olu\\'s <i>verve</i>','intelligence','work  ','handsomeness     ',' energy.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3767,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:06'),(306,'He holds on firmly to his <i>hackneyed</i> view of life','wayward  ','principled',' obsolete','positive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3701,'Admin','0000-00-00 00:00:00','2020-08-19 01:47:41'),(307,'I visited Amina <i>umpteen times</i> in her college, but she never came to me','often   ',' seldom   ',' twice   ','occasionally.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3696,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:17'),(308,'The debt the company incurred became rather <i>intolerable</i>. ','inevitable   ','unprecedented','insupportable ','dangerous.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3774,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(309,'The tax rebate was a <i>concession</i> given to the civil servants ','a donation ',' an allowance','an incentive  ','an emolument. ','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2007',3738,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:04'),(310,' <i>Beads</i> of sweat ran down Ngozi\\'s armpit','Pools','Springs   ','Ponds    ','Rivulets.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2007',3865,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:37'),(311,'The noise across the road  <i>drowned</i> the sound of the keyboard in my room',' neutralized ',' overshadowed','balanced   ','equalized.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2007',3788,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:20'),(312,'Things may change soon, but at the moment our economic situation is <i>precarious.</i>',' redeemable','buoyant ','uncertain   ',' unattractive.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2007',3865,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:39'),(313,'shoe<u>s</u>','horse','house','loss','reason','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2007',3794,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(314,'E<u>ngs</u>lish','end','thin','think','edge','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3807,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:53'),(315,'clo<u>ths</u>e','thomas','three','they','mouth','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2007',3786,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(316,'p<u>os</u>table','paw','pot','port','post','choose the option that has the same vowel sound as the letter(s) underlined.','','b','','utme','2007',3705,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(317,'bl<u>ues</u>','book','root','foot','look','choose the option that has the same vowel sound as the letter(s) underlined.','','d','','utme','2007',3813,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:24'),(318,'p<u>ears</u>','dear','year','there','near','choose the option that has the same vowel sound as the letter(s) underlined.','','a','','utme','2007',3792,'Admin','0000-00-00 00:00:00','2020-08-19 01:57:21'),(319,'The refugees were received at the <i>transit</i> camp.','passage ',' permanent ','temporary ','nearby.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3710,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:08'),(320,'The man paid a large sum to <i>redeem</i> his mortgaged property ','ransom ','acquire ','pawn ','recover.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3770,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(321,'Lami and her husband are simply <i>munificent</i>','a wealthy   ','angry   ','happy  ','niggardly.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3835,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(322,'Is it necessary for us to go?\\' she asked in her <i>shrill</i> voice ','angry ','quiet',' indistinct ','aggressive.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3658,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(323,'The police demanded a <i>factual</i> account of the accident','a supportive  ','an uncorroborated','an admissible ','an undisguised.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3780,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:38'),(324,'The suggestions he made were very <i>unobtrusive</i>','forceful   ','helpful ','sincere    ','reasonable.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3752,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:44'),(325,'Mr. Adeyemo is quite a <i>conceited</i> young man','a resourceful','a practical ','an experienced ','an unassuming.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3820,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:37'),(326,'The stadium was <i>seething</i> with people when we entered',' filled ',' crowded ','empty   ','noisy.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3787,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(327,'The Vice-Chancellor <i>relinquished</i> power at the end of busterm ','abandoned   ','wielded  ','gave up',' clung on to.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2007',3834,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:43'),(328,'The students were <i>undeterred</i> by the noisy lecture environment. ','frustrated  ','encouraged','discouraged','challenged.','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3825,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(329,'For anything to do with academic work, he has a great  a <i>version</i>','conversion ','attention','contempt  ','predilection.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3750,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(330,'The study he carried out of the problem was quite <i>comprehensive</i>','detailed ',' sketch  ','inscrutable ','complete.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2007',3756,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:03'),(331,'The man advised his wife to steer a <i>middle course</i> the argument between her and her employers','be recalcitrant  ','be unrepentant','be compromising','be unrelenting','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3838,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(332,'Do not be <i>discouraged</i> by failure in life.','overjoyed','dissuaded','actuated ','disoriented.','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2007',3718,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(333,'Otokpa took after his late father who was a <i>tee totaller.</i>','a drunk ',' careless ','a disciplinarian ','sober','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2007',3797,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(334,'capitalism    ','capiTAIism   ','capitaLIsm','caPItalism ','CApitalism.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2007',3708,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(335,'association ','aSSociation    ','associaTION','associAtion   ','Association.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2007',3846,'Admin','0000-00-00 00:00:00','2020-08-17 16:18:09'),(336,'advertisement ','adVERtisement  ','advertiseMENT',' adverTISEment   ','ADvertisement.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2007',3762,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:57'),(337,'',' intact  ',' integral ','negotiate ','about.','choose the option that has the stress on the first syllable.','','b','','utme','2007',3760,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(338,'','conduce   ',' renewal ','calendar ','reproduce.','choose the option that has the stress on the first syllable.','','c','','utme','2007',3735,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(339,'','understand   ','address ','afternoon ','taxi.','choose the option that has the stress on the first syllable.','','d','','utme','2007',3777,'Admin','0000-00-00 00:00:00','2020-08-18 08:27:33'),(340,'',' superior ','surcharge','slaughter ','superman.','choose the option that has a different stress pattern from the others.','','a','','utme','2007',3599,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(341,'','education ','individual ','agriculture','Cinderella.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3752,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:11'),(342,'','cigarette ','European ','evacuee','expedite.','choose the option that has a different stress pattern from the others.','','d','','utme','2007',3594,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:43'),(343,'Because of his …… nature, Ayo was tricked out of his wrist watch. ','kind   ','pliable  ',' uncompromising ','uncalculating ','choose the option that best completes the gap(s).','','a','','utme','2007',3729,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(344,'He says he ............. find me a job, but will accommodate me.','could not ','was notable to','is not able to','cannot be able to ','choose the option that best completes the gap(s).','','a','','utme','2007',3766,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:39'),(345,'The idle steward could not see ....... on the wall, and he lost his job.','the writing','what will be written ','the handwriting','what is written','choose the option that best completes the gap(s).','','c','','utme','2007',3777,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:38'),(346,'... went to the stadium to watch a football match.','Amadi and me  ','Amadi and I   ','Me and  Amadi   ','Amadi and myself  ','choose the option that best completes the gap(s).','','b','','utme','2007',3717,'Admin','0000-00-00 00:00:00','2020-08-18 11:04:50'),(347,' If he arrived late, everyone... …….. him','would have blamed   ','will blame ','would  blame ','must blame','choose the option that best completes the gap(s).','','a','','utme','2007',3740,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(348,'When they examined his body, they found that he ...',' had been dead  ',' had been dying  ','died  ','was dead','choose the option that best completes the gap(s).','','d','','utme','2007',3731,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(349,'The rain fell for days... ','on ending ','at ending ','on end  ','at end','choose the option that best completes the gap(s).','','c','','utme','2007',3740,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(350,'Yesterday in the hall, Ola said that ...........  his watch.','he had mislaid ','he had forgot ','ne has misplaced  ','he have lost ','choose the option that best completes the gap(s).','','a','','utme','2007',3677,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:10'),(351,'Government should invest more in …...   training.','teacher\\'s  ','teacher  ','teachers  ','teachers','choose the option that best completes the gap(s).','','b','','utme','2007',3606,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:38'),(352,'The team has benefitted from the coach\\'s ………. of experience. ','minefield ','reservoir ','wealth ','world ','choose the option that best completes the gap(s).','','c','','utme','2007',3820,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:44'),(353,'There was …………. any traffic as he drove home.',' hardly ',' normally ','usually  ','no ','choose the option that best completes the gap(s).','','a','','utme','2007',3868,'Admin','0000-00-00 00:00:00','2020-08-18 13:01:53'),(354,'I look forward to ……. you next week.','seen ','seeing  ',' be seeing ','see ','choose the option that best completes the gap(s).','','b','','utme','2007',3794,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(355,'The girl cannot speak with a clear voice; she is always ………. ','blabbing ',' vociferating ',' stuttering ','gesticulating ','choose the option that best completes the gap(s).','','c','','utme','2007',3717,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:35'),(356,'The politician …….. the family of the deceased.  ',' greeted  ',' condoled  ','wept over ','commiserated with ','choose the option that best completes the gap(s).','','d','','utme','2007',3778,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:39'),(357,'Making a phone call instead of paying a visit represents a …….  trend ',' sudden new major social  ',' new social sudden major',' new sudden major social','sudden social new major','choose the option that best completes the gap(s).','','c','','utme','2007',3762,'Admin','0000-00-00 00:00:00','2020-08-13 10:38:26'),(358,'Our soldiers are starting to zero …………. the enemy.','at    ','in on ',' unto ','on at ','choose the option that best completes the gap(s).','','b','','utme','2007',3516,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(359,'My father has been away on a journey but my mother  says she …...he …… this Friday.',' expects/would arrive','expected/win arrive ','expects/will arrive','expected/would arrive ','choose the option that best completes the gap(s).','','a','','utme','2007',3786,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(360,'Kola was fined; ……….. thieves were given a jail sentence.','the rest of the','rest ','the rest','rest off ','choose the option that best completes the gap(s).','','a','','utme','2007',3720,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(361,'I………  to pursue my education.','did not chance   ','did not have the opportunity','was not chanced    ','was not opportuned ','choose the option that best completes the gap(s).','','a','','utme','2007',3758,'Admin','0000-00-00 00:00:00','2020-08-18 11:04:50'),(362,'Didn\\'t .......  draw your attention to the entry requirements?','anyone ','everyone ','everybody','no body','choose the option that best completes the gap(s).','','a','','utme','2007',3721,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:22'),(363,'He could not have rewarded them more handsomely.','He did not reward them very well,','He rewarded them well, and he was also a good- looking man.','He rewarded them very well.','He spoke to them in a very generous way.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3675,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:36'),(364,'My advice to Tolu was: \\'Look before you leap.\\'','Tolu was advised to consider her opinions before reaching any decisions.','Tolu was advised to consider the possible consequences before taking action.','Tolu was advised to weigh her decisions by looking and leaping.  ','Tolu was advised to leap only after looking.','select the option that best explains the information conveyed in the sentence.','','b','','utme','2007',3799,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:19'),(365,'The official had allegedly been taking bribes.','Some people accused the official of taking bribes.','The official had been taking bribes without feeling any guilt.  ','It was proved that the official had been taking bribes ','The official accused some people of taking bribes.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3784,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(366,'Emeka hardly ever holds with my view on good governance.','Emeka sometimes opposes my idea of good governance.  ','My view on what good Governance is conforms with that of Emeka.','Emeka never really supports my opinion of good governance ','Emeka may never hold a view which conflicts with mine on good governance.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3709,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(367,'The next village is at least 30 kilometres away.','The next village is 30 kilometres away, possibly less. ','The next village is approximately 30 kilometres away.    ','The next village is   only 30 kilometres away.','The next village is 30 kilometres away, or possibly more.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3760,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(368,'The woman won\\'t have lived through the night. ','It was likely that the woman died before morning ','The woman survived her ordeal but not without some help .   ','From all indications, the woman was taken much worse, though she overcame her ordeal','The woman might not have lived if she hadn’t got the right support','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3740,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:24'),(369,'There\\'s a door at either end of the building.','The building has two ends and two doors. ','The building has two ends, but only one doc\\'','The building has two ends, but I do not know which of the two has a door. ','The building has many ends each with a door.','select the option that best explains the information conveyed in the sentence.','','a','','utme','2007',3643,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:18'),(370,'We have to iron out our differences at once.','We must clear up without delay our misunderstanding ','We must sure that our problems are eliminated  at all costs ','We have to settle our disagreement once and for all.   ','We have to solve some of our problems for now.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3663,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(371,'There should be a level playing field for women entering  politics.  ','Women should not be allowed to enter  politics   ','Sports facilities should be provided for women entering politics.','Special privileges should be  given to women who want to enter politics','Men and women should be able to compete are political arena on an equal basis.','select the option that best explains the information conveyed in the sentence.','','d','','utme','2007',3705,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(372,'The country is holding its first free elections for five years. ','The last time the country held free electors  was five years ago. ','The first free elections in the  country have now taken five years to conduct.','The country held elections five years ago but they were not free. ','There were elections in the country five years ago.','select the option that best explains the information conveyed in the sentence.','','c','','utme','2007',3824,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(373,'He needn\\'t have bought that new table ','It isn\\'t possible that he bought the table ','He bought the table, but it wasn\\'t necessary ','He didn’t buy the table because it wasn\\'t necessary','He doesn\\'t need to buy the table ','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3708,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(374,'Thanks to that phone call, I was able to obtain the visa,','in spite of that phone call, I obtained the vist ',' It was because of that phone call that the visa','I am grateful to whoever phoned me and I obtained the visa','If I had not recieved that phone call, I would not have obtained the visa.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3789,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:36'),(375,'It is likely that the governor will exact his pound of flesh ','He will probably demand a hefty  bribe ','He will probably engineer the assassination of his opponents ','He will probably impose crushing new taxes','He will probably demand for and get all that is due to him ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3828,'Admin','0000-00-00 00:00:00','2020-08-15 01:25:00'),(376,'It was too cold for him to go out ','He had a bad cold, and did not go out,','Although it was very cold, he still went out ','As it was very cold, he did not go out','He was afraid to go out that day.','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3690,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:58'),(377,'Ado and Abu are always together these days. They must be up to something.','They must have reconciled after their quarrel','They are probably planning something bar','They are capable of a praiseworthy achievement ','They bear some responsibility for what has happened.','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3714,'Admin','0000-00-00 00:00:00','2020-08-13 17:53:06'),(378,'He wants the meeting to be adjourned,','He wants the meeting closed ','He wants the meeting cancelled ','He wants the meeting to continue till another day ','He want  the meeting to another day without delay ','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3727,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(379,'My father is one of the vociferous few challenging the company’s appointment of the manager.','My father is the one who shouts with a loud voice against the appointment of the manager','My father and others speak on behalf of the company against the appointment of the manager','My father is one of those objecting to the appointment of the manager','My father is agitated by the appointment of the manager','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3780,'Admin','0000-00-00 00:00:00','2020-08-18 11:04:50'),(380,'The voyagers fetched up in Nigeria','the foreigners finally settled in Nigeria','The journey by sea ended in Nigeria','The travellers made a stopover in Nigeria','The discoverers landed in Nigeria after a long journey,','select the option that bost explains the information conveyed in the sentence.','','d','','utme','2008',3841,'Admin','0000-00-00 00:00:00','2020-08-15 08:41:17'),(381,'In those days in this school, everyone who spoke in a','language other than English paid a fine of ten naira','  Everyone of us paid a fine of ten naira because we did not always speak in English  ',' Everyone would pay a fine of ten naira for wanting to use a language other than English ','Those who spoke a language other than English on the premises paid a fine  of ten naira ','select the option that bost explains the information conveyed in the sentence.','','c','','utme','2008',3713,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(382,'The officer has discussed the vexed issue of incessant power failure','In anger, the officer explained the problem of constant power failure','The officer added his voice to the much discussed problem of power cut','The officer\\'s explanations angered those who have suffered the effects of frequency power failure ','The officer told the people not , to be angered by the frequent power cut','select the option that bost explains the information conveyed in the sentence.','','b','','utme','2008',3649,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(383,'The weather condition now <i>prevailin</i>g in the town is unbearable   ','widespread   ','dominant','unconscious ','disappointed','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3755,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(384,'The lady was  completely <i>nonplussed when her suitor</i>  rejected her gifts ','unpuzzled ','surprised ',' unconscious ','disappointed  ','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3784,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:38'),(385,'As a public officer, he should act with <i>scrupulous</i>  honesty at all times  ','impeccable  ','careless ','transparent ','uncompromising ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3849,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(386,'Men from the agency went into the market in search of <i>unwholesome</i>  food items ','banned ','imported ','healthy ','uncooked ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3763,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:04'),(387,'The condition of the hostels has become <i>deplorable </i>','admirable ','regrettable ','bearable ','malignant','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3817,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:14'),(388,'The plan to merge the two local government areas has met with much <i>apathy.</i>','hospitality ','criticism ','consideration ','enthusiasm ','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3862,'Admin','0000-00-00 00:00:00','2020-08-18 11:54:31'),(389,'There is now a <i>dearth</i>  of talent in the industry; she said ','a lack ','an abundance ','a rebirth ','a shortage ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3659,'Admin','0000-00-00 00:00:00','2020-08-18 11:54:31'),(390,'The students  <i>vandalized </i> their hostel curing the riot.','  deserted ','Unrepaired  ',' protected','decorated.','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3785,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(391,'His <i>kind-hearted</i> master bought him a motorcycle',' stingy   ','generous    ',' shrewd ','angry.','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3600,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:24'),(392,'<i>Mutual</i> love is what Kabi and Musa have in common, and nothing else.   ',' insincere     ','unhappy','one-sided    ','disrespectful. ','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3719,'Admin','0000-00-00 00:00:00','2020-08-18 13:01:53'),(393,'Always strive to get what is <i>legitimate,</i>','illicit    ','legal',' good    ','impure','choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2008',3811,'Admin','0000-00-00 00:00:00','2020-08-18 13:01:53'),(394,'Some aspects of their culture are <i>out of date</i>','genuine  ','pragmatic ','fashionable ','fake','choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2008',3785,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(395,'On the first day of her examination, Amina felt very <i>confident.</i>','excited ','dull  ','beefed up','strung up. ','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3769,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(396,'My father is always very <i>frank</i> about his intentions','open   ','objective','secretive','deceitful','choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2008',3728,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:35'),(397,'The speaker was rather <i>bold</i> in his presentation of the case ','unfair ','reserved ','ashamed ','formal','choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2008',3812,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(398,'The doctor tried to <i>soothe</i> the patient before the operation  ','examine   ',' treat ',' calm ','induce','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3710,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:24'),(399,'The charge brought against my brother was hardly <i>tenable\\\\</i>','sensible  ','defensible   ','meaningful',' flimsy','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3793,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:56'),(400,'The man described his son as a <i>willful</i> character','   wicked ','obstinate','wild    ','tricky.','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3799,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(401,'Our teacher described Agbo\\'s story as a <i>phantom</i>','scary  ','realistic ','fanciful   ','interesting ','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3766,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(402,'I find the way she approaches her customers quite <i>repugnant</i> ','unpleasant   ','attractive. ','ungodly    ','encouraging','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3799,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:15'),(403,'Participation in the programme is <i>optional</i>','unnecessary   ',' recommended','hard to justify   ','a matter of choice','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3678,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:59'),(404,'Scientists have <i>invented</i> ways of preserving fruits much longer   ','coined ','devised   ','arranged','organized','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3676,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:40'),(405,'The attempt to count the population was <i>largely</i> successful.  ',' mostly ','completely   ',' hardly','totally.','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3692,'Admin','0000-00-00 00:00:00','2020-08-18 11:54:31'),(406,'The governor has <i>approved</i>  the award of the contract','appreciated ',' acknowledged ','vetoed ','endorsed','choose the option nearest in meaning to the word or phrase In Italics','','d','','utme','2008',3680,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(407,'I cannot stand Simon, I find his attitude <i>offensive</i>','unapproachable   ',' obnoxious ','wicked','  unpardonable','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3732,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:38'),(408,'The  man would not <i>withdraw</i>  what hi hid ','take back   ',' takeout   ','take','tike from','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3651,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:31'),(409,'The <i>disagreement</i> between the two men became obvious during the meeting','insult','confrontation','passion','insinuation','choose the option nearest in meaning to the word or phrase In Italics','','b','','utme','2008',3817,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:44'),(410,'The principal  detested his <i>recalcitrant</i> attitude ','disobedient ','arrogant ','voracious ','vengeful ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3864,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(411,'The union officials suddenly became <i>reactive</i>','unruly ','impatient ','calm  ','submissive ','choose the option nearest in meaning to the word or phrase In Italics','','a','','utme','2008',3727,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(412,'The popularity of the military dictator <i>waned</i>  after war ','increased ','changed ','declined ','skyrocketed.','choose the option nearest in meaning to the word or phrase In Italics','','c','','utme','2008',3691,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:57'),(413,'The chairman addressed the………… ','university French teacher','university of French teachers ','French one hundred university teachers ','university French one hundred teacher ','choose the option  best completes the gap(s) .','','a','','utme','2008',3806,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:18'),(414,'Kanuri is a language.........','I can\\'t speak it well ','that I cant speak it well ','of which I can\\'t speak it well','I can\\'t speak well ','choose the option  best completes the gap(s) .','','d','','utme','2008',3736,'Admin','0000-00-00 00:00:00','2020-08-18 11:04:50'),(415,'Last Tuesday, Ochonu asked me.........',' had I come yesterday ','did you come yesterday ','whether I had come the day before ','If I had come yesterday','choose the option  best completes the gap(s) .','','c','','utme','2008',3771,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(416,'The young man has..... to sober...……  after being drunk.','began/up ','begun/in    ','begun/up    ','began/down','choose the option  best completes the gap(s) .','','c','','utme','2008',3823,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(417,'My mother had........  the fire wood before it began to rain. ','splitting ','splited  ','splitted','splitting','choose the option  best completes the gap(s) .','','a','','utme','2008',3694,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:24'),(418,'The police officer warned the... communities against taking the law……… hands','feuding/into their own ','feudal/ to their own ','feuding to their own   ','feudal/in their own','choose the option  best completes the gap(s) .','','a','','utme','2008',3725,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:16'),(419,'Agbo could not travel as he had come...…  influenza','over with ','down with ','in from ','on to ','choose the option  best completes the gap(s) .','','b','','utme','2008',3666,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(420,'When he.........from his journey, I want to see him.','returns ','might have returned ','returned ','must have returned ','choose the option  best completes the gap(s) .','','a','','utme','2008',3753,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(421,'I knocked his door, but he.........','has already ten ','left already ','would already leave','had already left ','choose the option  best completes the gap(s) .','','d','','utme','2008',3713,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(422,'………of the students  turned up, so the lecture was cancelled.','few ','Little',' A few  ',' A little','choose the option  best completes the gap(s) .','','a','','utme','2008',3715,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(423,'He brought a  ……… against his neighbour.','complaint ','complains','complain ','complaining ','choose the option  best completes the gap(s) .','','a','','utme','2008',3680,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:19'),(424,'The hotel lacks the ..……. for accommodating so many guests.','ability','capability','capacity','competence ','choose the option  best completes the gap(s) .','','c','','utme','2008',3728,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(425,'If you are not careful, you would .......... your money.','toss  ','lose','loose   ','lost','choose the option  best completes the gap(s) .','','b','','utme','2008',3820,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(426,'You must practise in order to................perfection.','obtain   ','have','get ','achieve','choose the option  best completes the gap(s) .','','d','','utme','2008',3773,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:28'),(427,'The condition of the room was so………... so I went outside ','intolerant','intolerable ','inconstant ','invariabl ','choose the option  best completes the gap(s) .','','b','','utme','2008',3823,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(428,'You don\\'t like Mathematics, ........... you?','do','don\\'t','cant ','can ','choose the option  best completes the gap(s) .','','a','','utme','2008',3809,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(429,'They have had their debt written ........... by their creditors.','down ','on ','up ','off','choose the option  best completes the gap(s) .','','d','','utme','2008',3748,'Admin','0000-00-00 00:00:00','2020-08-18 08:29:57'),(430,'Uncle Ochai now has enough money to complete his…….. building.','two storey ','two-storeyed ','two-story ','two storeyed ','choose the option  best completes the gap(s) .','','a','','utme','2008',3714,'Admin','0000-00-00 00:00:00','2020-08-18 08:27:33'),(431,'By the end of this month……….for three years in this school.','I will study ','I  will have been studying ','I  am studying','I had been studying ','choose the option  best completes the gap(s) .','','b','','utme','2008',3837,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:53'),(432,'He ……… the picture on table','laid ','lay ',' lied  ','Iain ','choose the option  best completes the gap(s) .','','a','','utme','2008',3789,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(433,'Sc<u>oo</u> led ','cold ','could ','court','you','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3707,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(434,'sh<u>ir</u> t  ','shut ','shade','surf','shed','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','c','','utme','2008',3762,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:03'),(435,'w<u>ai</u> st ','fete ','says','plait','breakfast ','choose the option that has the same vowel sound as the represented by the letter(s) underlined.','','d','','utme','2008',3697,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:39'),(436,'<u>th</u> atch ','clothing   ','mother','then ','method','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','d','','utme','2008',3724,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(437,'<u> ch</u> ateau  ','chart    ','church ','champagne',' chemical.','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2008',3740,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(438,' ju<u>dge</u> ','measure','General ','Pressure','Grace ','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','b','','utme','2008',3817,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(439,'','distress','control','bottom','report','choose the option has a different stress pattern from the others.','','c','','utme','2008',3858,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:08'),(440,'','original','deplorable','ability','revolution','choose the option has a different stress pattern from the others.','','d','','utme','2008',3794,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:36'),(441,'','release','exit','exchange','explode','choose the option has a different stress pattern from the others.','','b','','utme','2008',3747,'Admin','0000-00-00 00:00:00','2020-08-18 08:27:33'),(442,'','bachelor','forget','cement','ago','choose the option that has the stress on the first syllable.','','a','','utme','2008',3757,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:49'),(443,'','librarian','immunize','militia','continuous','choose the option that has the stress on the first syllable.','','a','','utme','2008',3821,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(444,'','july','litereture','august','oesophagus','choose the option that has the stress on the first syllable.','','d','','utme','2008',3713,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:40'),(445,'xenophobia   ','XEndphobia   ','xeNOphobia',' xenoPHObia     ','xenophoBIA.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2008',3777,'Admin','0000-00-00 00:00:00','2020-08-13 10:40:28'),(446,'photography ','phoTOgraphy   ','PHOtograhy',' photoGRAphy   ','photograPHY','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2008',3684,'Admin','0000-00-00 00:00:00','2020-08-19 01:47:41'),(447,'melodramatic ','MEIodramatic  ','meLOdramatic',' meloDRAmatic ','melodraMAtic.','choose the appropriate  stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2008',3761,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(448,'It was our collective idea but Ado was doing every­ thing to steal the snow  ',' Ado was not part of the planning but he tried to rub us of the benefits of it.',' We planned the show together out Ado was trying to abort it. ','It was a joint project but Ado is trying to attract the most attention','We collated the idea for the show but Ado was trying to steal the programme.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3751,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(449,'As we watched, he just popped along to the shop for some bread  ',' He has walked slowly to the shop.',' He stole some bread from the shop but we could not stop him',' He broke into the bread shop before our very eyes    ','He went quickly to the shop for some bread.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3661,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:37'),(450,'In all ramifications, Chief Adeyemi was a successful principal of the school','He was partly a failure and partly a success    ','Everyone admitted that he was largely successful during his tenure ','He was not totally successful in the school  ','His tenure witnessed a huge success ','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3860,'Admin','0000-00-00 00:00:00','2020-08-19 01:47:41'),(451,'I couldn\\'t buy the biscuit because of the hold-up in the supermarket. ','The shop had not opened.','The attendant was slow  ',' Armed robbers were',' There was nobody to attend to me.','select the option that best explains the information conveyed in the sentence. ','','d','','utme','2009',3754,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(452,'You could have heard the sound, if you weren\\'t asleep.','You were not asleep so you heard the sound.','You were asleep so you did not hear the sound.','You heard the sound though you were asleep.','You did not hear the sound though you were not asleep','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3778,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(453,'Musa will not well because he has an itching palm.','He has rashes in his palm ','He is always looking for something to touch ','He is always read to accept bribe','He is always tapping people on the back','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3896,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:35'),(454,'Emeka was always conspicuous by his absence when it came to attending lecturers.','That Emeka always attended lecturer made him conspicuous at school.','Emeka’s absence from lecturers was all too glaring. ','It was obvious that Emeka was not present at lectures   ','What made Emeka conspicuous was his occasional absence from school','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3795,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:57'),(455,'He was injured by friend fire. ','He was wounded in a war by a friend of his who fired a shot mistakenly.','He was injured by a gunshot that was fired by a friend. ','He was gut in a war by a weapon fired by his own side    ','it was a war and he was hit by a bomb fired by an unknown soldier.','select the option that best explains the information conveyed in the sentence. ','','c','','utme','2009',3688,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:14'),(456,'Kola visits us on occasions, and I don\\'t like that.','I do not like Kola because he visits us only when an event is being celebrated. ','I hate the fact that Kola only visits us when something is being celebrated.','That Kola does not visit us often is something I object to.   ','Kola seldom visits us and that is because he is a fair-weather friend.','select the option that best explains the information conveyed in the sentence. ','','b','','utme','2009',3690,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:19'),(457,'At the time I arrived, Olu was lying in third place.',' Olu\\'s third position coincided with my arrival.',' When I arrived Olu was sleeping in the space reserved for him.',' It was a competition and Olu was in third position when I arrived. ','On my arrival at the competition, Olu went to sleep.','select the option that best explains the information conveyed in the sentence. ','','a','','utme','2009',3617,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(458,'We had difficulty eating the meat because was <i>leathery.</i>   ','bitter    ','stringy ','tough ','tender.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3789,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(459,'The boy is <i>indolent</i> to do well at school?','intelligent ','industrious  ','inactive  ','stothful.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3751,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(460,'Salasi\\'s <i>tremendous</i> effort has yielded results.','absolute  ','insignificant  ','unimaginable','prohibitive','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3743,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:38'),(461,'The <i>computerised</i> service of the new banks is heart­  warming. ','manual ','mechanical ','electrical','condensed.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3692,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(462,'Life has become a <i>misery</i> for many owing to the harsh economic condition in the country','drudgery   ','ridicule   ','ritual ','comfort. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(463,'The company director has a <i>vivacious</i> personality. ','a positive ','an unmanageable','an unimpressive ','a gregarious.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3699,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(464,'Young people have a <i>penchant</i> for fast cats ','likeness','passion ','madness ','dislike. ','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3675,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(465,'Most of his latest actions are <i>militant</i> in nature ','commanding ','civil ','zealous ','passionate. ','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3826,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:04'),(466,'His ideas sounded quite palatable yet they were <i>jettisoned</i> by the group, ','accepted ','clumped ','denied ','criticized.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3820,'Admin','0000-00-00 00:00:00','2020-08-15 08:40:45'),(467,'The compulsory leave made her feel <i>listless</i>',' restful   ',' great  ',' fat   ','energetic.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3788,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(468,'A novel is an <i>embellished</i> \\' falsehood\\', said the teacher','enriched ',' exaggerated ','adorned ','Obliterated.','Choose the option opposite in meaning to the word or phrase in italics.','','d','','utme','2009',3769,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:46'),(469,' I have had enough of your <i>impudence</i>','politeness ','incivility ','arrogance ','boldness.','Choose the option opposite in meaning to the word or phrase in italics.','','a','','utme','2009',3531,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:38'),(470,'We were <i>collectively</i> responsible for keeping the machine in good shape.','jointly ','severally ','dutifully ','socially.','Choose the option opposite in meaning to the word or phrase in italics.','','b','','utme','2009',3858,'Admin','0000-00-00 00:00:00','2020-08-18 19:56:39'),(471,'His comment was not <i>printable</i>','punishable  ','suitable ','offensive ','unfair.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3707,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(472,'<i>Curiously,</i> he escaped unhurt ','interestingly','unsurprisingly ','annoyingly ','unusually.','Choose the option opposite in meaning to the word or phrase in italics.','','c','','utme','2009',3818,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:02'),(473,'Agwube\\'s explanation of her poor performance at the examination only <i>begged the question.</i>','delayed her punishment   ','sounded quite convincing ',' did not address the issue','overflogged the matter','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3767,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(474,'We have every need to preserve some of our national monuments for <i>posterity.</i> ','prosperity ','future','national pride   ','collective gain.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3824,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:22'),(475,'He <i>commands</i> the confidence and respect of all his subordinates ','requests',' enjoys   ','enforces','conjures.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3793,'Admin','0000-00-00 00:00:00','2020-08-16 16:35:08'),(476,'The president has mapped out so many <i>laudable</i> projects to embark upon ','laughable   ','good',' praiseworthy   ','valuable.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3749,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(477,'Adamu\\'s father is a <i>stern</i> man ','wicked ','strict','playful ','conservative.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3717,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:06'),(478,'Nobody knew the source of the <i>altercation</i> between the couple  ','alter ego ','quarrel   ','deep love','wealth.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3677,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(479,'His poetry is said to be <i>inscrutable  </i> ','ludicrous','unlearnable ','inseparable ','mysterious.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-08-13 16:50:17'),(480,'Hers was a <i>specious</i> argument about the government of the day ','misleading ','precious ','spacious ','true.','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3781,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:13'),(481,'The Lagos bus conductor r wore his professional <i>livery</i>','badge   ','shoe ',' uniform ','cap.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3834,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:17'),(482,'If Joy hadn\\'t been <i>tripped up</i> halfway through the race, she would have came first  ','discouraged','disqualified ','interrupted   ','exhausted.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3800,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:32'),(483,'There must be something <i>sinister</i> about her late arrival','reasonable ','joyful ','hopeful ','ominous.','choose the option nearest in meaning to the word or phrase in italics.','','d','','utme','2009',3817,'Admin','0000-00-00 00:00:00','2020-08-13 16:19:38'),(484,'The <i>unification</i> of the country has brought about great technological advancement ','A restoration','agreement','cohesion ','stability.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3835,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(485,' His <i>amnesia</i> has affected his career ','loss of focus','loss of sight','loss of memory ','loss of direction.','choose the option nearest in meaning to the word or phrase in italics.','','c','','utme','2009',3725,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(486,' Idris\\' <i>forbearance</i> endeared him to us ','hard work','patience ','wisdom ','good manners.','choose the option nearest in meaning to the word or phrase in italics.','','b','','utme','2009',3657,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:24'),(487,'They hated the police and, by <i>implication,</i> me','extension',' inference ','examination','application','choose the option nearest in meaning to the word or phrase in italics.','','a','','utme','2009',3735,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:37'),(488,'He is really very mean. He…… not lend me the money I wanted. ','should ','could  ','would','won\\'t  ','choose the option that best completes the gap(s).','','c','','utme','2009',3739,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(489,'When the cashier told him to join the queue, he considered it……. his dignity.','a drawback to ','an affront on','withdrawal from  ','a strain on ','choose the option that best completes the gap(s).','','b','','utme','2009',3762,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(490,'If anyone greets you, it is only polite to return….. Greeting','your  ','the one\\'s   ','Anyone\\'s ','one\\'s ','choose the option that best completes the gap(s).','','d','','utme','2009',3670,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(491,'Amina lives…..  campus.','in the. ',' on','at the ','inside','choose the option that best completes the gap(s).','','b','','utme','2009',3793,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(492,'An acceptance of the offer would be a departure from the several rejections that….. ','had taken place ','have taken place','take place ','took place ','choose the option that best completes the gap(s).','','a','','utme','2009',3771,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(493,' The….. part of a new book is often written by a more experienced writer than the author. ','foreward','foreword','forward  ','forword  ','choose the option that best completes the gap(s).','','b','','utme','2009',3829,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:26'),(494,'The officer acted in….. the instructions. ','accordance ','accordance to','accordance of','accordance with ','choose the option that best completes the gap(s).','','d','','utme','2009',3682,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(495,'The bomb was... …….','detonated  ','dismantled ','deactivated ',' depleted','choose the option that best completes the gap(s).','','a','','utme','2009',3751,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:22'),(496,'If you want to succeed in life, don\\'t be envious….. other people\\'s achievement ','of     ',' to    ','with    ','on','choose the option that best completes the gap(s).','','a','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:14'),(497,'They are taught to value honour….. their lives.  ','from','in',' than ','above','choose the option that best completes the gap(s).','','b','','utme','2009',3809,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(498,'Our plan for the trip fell............when the rich man did not give us a life….. ?','off/boat','through/line','down/jacket ','in/help','choose the option that best completes the gap(s).','','b','','utme','2009',3745,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:57'),(499,'1 missed the match though it was shown on television on  two…….. nights. ','concurrent ','consistent ','concrete ','conservative ','choose the option that best completes the gap(s).','','d','','utme','2009',3672,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(500,'The company paid some money to Abu to... …..  him for the losses he suffered during the accident.','indemnify ',' condole with ','settle ','recompense','choose the option that best completes the gap(s).','','a','','utme','2009',3837,'Admin','0000-00-00 00:00:00','2020-08-15 01:24:55'),(501,'You are just-putting the hat on. ……?','don\\'t you  ','isn\\'t it ',' aren\\'t you  ','not so','choose the option that best completes the gap(s).','','c','','utme','2009',3804,'Admin','0000-00-00 00:00:00','2020-08-17 16:18:08'),(502,'Government\\'s frowned upon politicians who are out to…….... Wealth','gain  ',' amass  ','steal ','waste','choose the option that best completes the gap(s).','','b','','utme','2009',3851,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(503,'I tried to discourage him, but he persisted……… revealing the secret to his son','for  ','in','  on ','to ','choose the option that best completes the gap(s).','','b','','utme','2009',3911,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(504,'He was determined to……... all opposition into submission','push ','cow ','box   ','pound ','choose the option that best completes the gap(s).','','b','','utme','2009',3837,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(505,'I am told that the market is.-, in to the interests of people from all ………….of life','tuned/walks ','constructed /places ','designed/places  ','set/works ','choose the option that best completes the gap(s).','','a','','utme','2009',3828,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(506,'Uche has been in ……….with his pen pal  for years.','exchange','correspondence ','favour  ','cord','choose the option that best completes the gap(s).','','a','','utme','2009',3711,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:22'),(507,'Abba became …….... about his inability to pass the examination.','despondent ','disenchanted ','dogmatic','joyful','choose the option that best completes the gap(s).','','a','','utme','2009',3770,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(508,'c<u>aug</u>ht','hot','water','sup','wrong','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','b ','','utme','2009',3787,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:46'),(509,' c<u>ou</u>ntry','worry','courteous','bought','poultry','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','a','','utme','2009',3742,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(510,' tr<u>a</u>p','wonder','because','plait','quantity','choose the option that has the same vowel sound as the one represented the letter(s) underlined.','','c','','utme','2009',3705,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(511,'  re<u>s</u>t','result','show','unasked','wise','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3705,'Admin','0000-00-00 00:00:00','2020-08-15 00:57:24'),(512,'  <u>th</u>ought','taught','weather','theatre','fate','choose the option that has the same consonant sound as the one represented by the letter(s) underlined.','','c','','utme','2009',3760,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(513,'sheer','dear','shirt','spare','shade','choose the option that rhymes with the given word.','','a','','utme','2009',3707,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(514,'great','creek','crate','knit','treat','choose the option that rhymes with the given word.','','b','','utme','2009',3789,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:07'),(515,'own','brown','frown','gown','phone','choose the option that rhymes with the given word.','','d','','utme','2009',3913,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:35'),(516,'ceremoniously ','CEremoniously   ','ceREmoniously','cereMOniously      ','ceremoNlously.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','c','','utme','2009',3816,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(517,'  understandable ','unDERstandable','understandABLE','UNderstandable ','underSTANDable.','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','d','','utme','2009',3732,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:47'),(518,' management ','MAnagement ','maNAgement','manaGEment ','manageMENT','choose the appropriate stress pattern from the options. The syllables are written in capital letters.','','a','','utme','2009',3794,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:37'),(519,'I AM called Uche a pilot. ','What did Lam call Uche',' Did Okoro call Uche a pilot?    ','Did I am Uche a driver? ','Did Lam wish Uche to be a pilot?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','b','','utme','2009',3807,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:53'),(520,'The girl DANCED in the village square.   ','Who danced  in the village square?  ',' Is this the village square where the girl danced? ','Did the girl dance in the village square? ','Did the girl sing in the  village square?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','d','','utme','2009',3738,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(521,'My father READ the newspaper.','Did my father steal the newspaper? ','Who read the newspaper?',' What did my father read?','Whose father read the newspaper?','the word in capital letters has the emphatic stress. Choose the option which the given sentence relates.','','a','','utme','2009',3714,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(522,'Though Mr, Iro is our new chairman, he views other members with jaundiced eye, ',' He takes a rather forceful position on dealing with his members.','He takes an unfavourable position concerning his members','He takes a sickly view of his members. ','He takes a rather hazy view of his members.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3900,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:36'),(523,'People are not interested in who rules ','People are not ruled by the leaders they want ','People are not concerned about who rules them ','The rulers are not concerned about the people ','People who rule are not interested in the ruled.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3910,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:22'),(524,'It is always good to steer a middle course in whatever one does. ','It is always good to get midway in anything one does. ','It is always good to act with moderation. ','It is always good to move away from the forefront','It is always good to work very hard.',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3825,'Admin','0000-00-00 00:00:00','2020-08-18 13:01:53'),(525,'The witness said he had no axe to grind with his brothers.',' He had no hatred for the brothers ','He had no axe and therefore stole the matchet ','He had no axe and therefore borrowed their matchet ','He had no vested interest in the brothers.',' select the option that best explains the Information conveyed In the sentence. ','','d','','utme','2010',3876,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(526,'The footballers moved with their tails between their legs.','They moved happily because they won the match','They were unhappy because they had been despised  by their opponents. ','They were ashamed because they had been defeated ','they moved with their tails between their legs.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3954,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(527,'The headmaster managed to talk his way out of having  to give a speech ','He delivered a speech despite the difficulty ','He managed to give a speech out of a difficult situation ','He managed to get himself out of a difficult situation','He managed to talk on his way.',' select the option that best explains the Information conveyed In the sentence. ','','c','','utme','2010',3858,'Admin','0000-00-00 00:00:00','2020-08-18 09:50:33'),(528,'As regards the matter, we have crossed the rubicon','We are completely at a toss','We are irrevocably committed ',' We are already quaffed','We are perfectly committed.  ',' select the option that best explains the Information conveyed In the sentence. ','','b','','utme','2010',3829,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(529,'Uche is full of himself ','He is concerted ','He is complete  ','He is a rich man ','He is careful.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3825,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(530,'As debutants in that tournament, the Super Eagles were up against their first opponents by three goals to nil','The Super Eagles were playing in the tournament for the first time, but they won their match by three goals to nothing ','Though the Super Eagles were rated as the weakest side in the tournament they won their first match by three goals to nil ','Even though the Super Eagles were playing without some of their regulars, they won their match by three goals to nil.','As the best attackers in the match. the Super Eagles easily defeated their opponents by three goals to nothing.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3881,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(531,'The woman was mournful as her husband was found dead drunk  ','She was sad because her husband was absolutely drunk ','She was apprehensive that her husband would drink again as soon as he recovered from the drunken stupor. ','She was sad because her husband was drunk and always as helpless as a dead  man ','She was mourning because her husband drank and died.',' select the option that best explains the Information conveyed In the sentence. ','','a','','utme','2010',3814,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:02'),(532,'I am optimistic about the Interview though It was a <i>mind- bending</i>  exercise, ','an enervating ','a debilitating','a difficult ','an easy','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3883,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:38'),(533,'The trader was amused by the  <i>cutthroat</i>  rush for the goods ','worrisome','strange ','lacklustre ','mad','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3896,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:57'),(534,'The teacher said that All\\'s essay was full of many  <i>redundant</i>  details ','unexplained ','strange','necessary ','useful','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3856,'Admin','0000-00-00 00:00:00','2020-08-19 01:46:38'),(535,'His father surmounted the  <i>myriad</i>  of obstacles on his way ','most ','few ','all ','many','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3844,'Admin','0000-00-00 00:00:00','2020-08-17 22:24:26'),(536,'Her  <i>ingenuous</i>  smile drew our attention ','witty',' naive ','clever ','arrogant','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3901,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:35'),(537,'Ndeni gave a  <i>flawless</i>  speech at the party ','a wonderful ','a careless ','an interesting ','an imperfect','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3946,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(538,' Beneath Ado\\'s  <i>guff</i>  exterior, he\\'s really very kind-hearted','nice','harsh ','rough ','gentle','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3828,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(539,'The captain says sports is being  <i>debased</i>  by commercial sponsorship ','localized ','perverted','elevated ','overvalued','choose the option opposite In meaning to the word or phrase In Italics','','c','','utme','2010',3798,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:04'),(540,'Governing a country is not always as  <i>straightforward as</i>  people sometimes imagine.','complicated','troublesome   ','untoward   ','Irksome','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3710,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(541,'The crowd was very  <i>receptive </i>  to the speaker\\'s suggestion ','disobedient ','repellent ','alert','Hostile','choose the option opposite In meaning to the word or phrase In Italics','','d','','utme','2010',3852,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(542,'There was a general  <i>acquiescence</i>  on the new drug law ','resistance ','discrepancy ','compromise','agreement','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3841,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:08'),(543,'Aisha seems to feel  <i>ambivalent</i>  about her future','decisive ','anxious ','ambitious ','inconsiderate','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3753,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:14'),(544,'The report of the committee contained a  <i>plethora</i>  of details',' shortage ','simplicity ','multitude',' spectrum','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3822,'Admin','0000-00-00 00:00:00','2020-08-19 01:57:21'),(545,'The weather was still very  <i>heavy and sultry </i> ','wintry and shadowy ','cold and friendly ','cloudy and thundery','hot and uncomfortable','choose the option opposite In meaning to the word or phrase In Italics','','b','','utme','2010',3747,'Admin','0000-00-00 00:00:00','2020-08-18 21:12:02'),(546,'Ada gave her husband a look that made words  <i>superfluous</i> ','redundant ','spurious ','unnecessary',' scanty.','choose the option opposite In meaning to the word or phrase In Italics','','a','','utme','2010',3902,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(547,'A political  <i>impasse</i>  does not offer the best opportunity for merrymaking ','manifesto ','party ','gridlock',' rally','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3872,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(548,'We were all  <i>enthusiastic</i>  as we awaited the result of the election ','bemused ','agitated ','elated','nervous','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3906,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(549,'The uniform makes the guards look  <i>absurd</i>  ','dirty','smart ','sensible','ridiculous','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3805,'Admin','0000-00-00 00:00:00','2020-08-17 22:24:26'),(550,'The law is often  <i>tardy</i>  in reacting to changing attitude',' quick','low ','exclusive ','generous','choose the option nearest  in meaning to the word or phrase in Italics.','','b','','utme','2010',3891,'Admin','0000-00-00 00:00:00','2020-08-20 16:11:14'),(551,'Isa and llu  <i>ate sumptuous</i>  meals on their brother\\'s wedding day','expensive ','foreign ','insipid','cheap','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3918,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:36'),(552,'Kaltume  <i>crouched</i>  over the papers on her desk ','wrote on  ','stood on ','walked over','bent over','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3817,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(553,'The <i> panacea</i>  for a country\\'s economic mess lies in systematic planning and hard work ','cure  ','hope','foresight ','trouble','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3996,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:07'),(554,'Thousands of workers have been victims of  <i>retrenchment</i>  since the military came back to power.','unemployment ','trench mentality ','suffering ','increase in penury','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3789,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:38'),(555,'The principal gave his speech   <i>off hand</i>  at the sports  meeting ','calmly ','Beautifully ','unconcerned','unprepared','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3740,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:21'),(556,'Jankoli was dressed in an old  <i>assortment</i>  of clothes','avalanche ','homogeneity ','sameness','melange','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3843,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(557,'The girl\\'s father was  <i>astounded</i>  to see her appear from the shrine ','collected ','overwhelmed','embarrassed ','astonished','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3785,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(558,'The director\\'s remark was extremely  <i>apposite</i>  to the issue being discussed ','appropriate','inconsequential ','emphatic ','adequate','choose the option nearest  in meaning to the word or phrase in Italics.','','a','','utme','2010',3924,'Admin','0000-00-00 00:00:00','2020-08-18 08:29:56'),(559,'Her reputation is without a  <i>blemish </i> ','struggle','problem ','fault ','blessing','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3847,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(560,'Ugo is  <i>eligible</i>  for the post of secretary ','nominated','invited','qualified ','intelligent','choose the option nearest  in meaning to the word or phrase in Italics.','','c','','utme','2010',3772,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(561,'This is an  <i>abridged</i> version of No Longer at Ease','an outdated    ','an enlarged ','an illustrated ','a shortened','choose the option nearest  in meaning to the word or phrase in Italics.','','d','','utme','2010',3910,'Admin','0000-00-00 00:00:00','2020-08-19 01:49:38'),(562,'Lemoti ………..','is gifted only not ','is only not gifted  ','not only ','is only gifted','choose the option that best completes the gap(s)','','b','','utme','2010',3957,'Admin','0000-00-00 00:00:00','2020-08-19 10:00:22'),(563,'He can recall the important dates in the nation\\'s history; it is interesting to listen as he rattles…….','off','over','up   ','out','choose the option that best completes the gap(s)','','a','','utme','2010',3761,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:22'),(564,'The boy told his mother','that was the girl he told her about ','that was the girl I told you about her','that was the girl I told her about ','that is the girl he told her about','choose the option that best completes the gap(s)','','a','','utme','2010',3939,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(565,'Last Monday his father asked me, .......','if\\' had come some days before ','if I had come the day before','did you come yesterday ','had I come yesterday','choose the option that best completes the gap(s)','','a','','utme','2010',3871,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:45'),(566,'His wife was badly injured in the fracas, but I think  she will pull','up  ','over ','through ','back','choose the option that best completes the gap(s)','','c','','utme','2010',3860,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(567,'A wide range of options','is ','were   ','are',' was','choose the option that best completes the gap(s)','','d','','utme','2010',3742,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:10'),(568,'One of the women who .... in the premises.... been  ordered to quit ','sells/have ','sell/has  ','sell/have','sells/has','choose the option that best completes the gap(s)','','b','','utme','2010',3758,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(569,'The new trade agreement should facilitate…..... ','more economic rapid growth  ','economic more rapid  growth ','rapid economic more growth   ','more rapid economic growth.','choose the option that best completes the gap(s)','','d','','utme','2010',3893,'Admin','0000-00-00 00:00:00','2020-08-19 01:55:57'),(570,'The principal said that he was pleased......... my effort.',' on ','of ','with','about','choose the option that best completes the gap(s)','','c','','utme','2010',3831,'Admin','0000-00-00 00:00:00','2020-08-17 22:24:26'),(571,'Paper is made…….. wood pulp ','on ','of ','from ','with','choose the option that best completes the gap(s)','','c','','utme','2010',3791,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(572,'Long after everyone…... the hall, Obi still sat inside.','left','is leaving ','has left','had left','choose the option that best completes the gap(s)','','d','','utme','2010',3858,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:23'),(573,'They are the.... dresses ','babys\\' ','baby ','babies','babies\\'','choose the option that best completes the gap(s)','','d','','utme','2010',3868,'Admin','0000-00-00 00:00:00','2020-08-20 15:05:15'),(574,'The politician was sent …….. exile','onto ','into','on ','to','choose the option that best completes the gap(s)','','c','','utme','2010',3832,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:12'),(575,'When we looked up, we …….... the plane some miles away. ','site ','cited ','sited ','sighted','choose the option that best completes the gap(s)','','d','','utme','2010',3890,'Admin','0000-00-00 00:00:00','2020-08-19 01:57:22'),(576,'Vital... is still spread ……..... word of mouth in most villages in Africa. ','information/from  ','information/with','information/by ','information/through ','choose the option that best completes the gap(s)','','c','','utme','2010',3772,'Admin','0000-00-00 00:00:00','2020-08-18 08:27:33'),(577,'Western  education is one of the ... of colonial rule','legacies  ','evidence ','remnants ','inheritance ','choose the option that best completes the gap(s)','','a','','utme','2010',3817,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(578,'The Federal Government has .... child trafficking ','postulated  ','projected ','prescribed ','proscribed','choose the option that best completes the gap(s)','','d','','utme','2010',3968,'Admin','0000-00-00 00:00:00','2020-08-19 10:52:48'),(579,'The man was happy that his son confessed his guilt and so the others were .... ','implicated','accused ','punished ','Exonerated','choose the option that best completes the gap(s)','','d','','utme','2010',3852,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(580,'  Based on the facts before me, I have no alternative...........to hold you responsible ','only ','as ','than ','but','choose the option that best completes the gap(s)','','c','','utme','2010',3855,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:03'),(581,'Many people would always find reasons to ... the law','arrogate ','debase  ',' circumvent ','circumspect','choose the option that best completes the gap(s)','','c','','utme','2010',3727,'Admin','0000-00-00 00:00:00','2020-08-17 22:02:37'),(582,'c<u>oup</u> ','whup  ','shoot ','couple ','scout','choose the option that has the same vowel sound as the one represented by the letters underlined.','','b','','utme','2010',3948,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36'),(583,'ind<u>i</u>ct ','bright   ','fish ','pick ','brick','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3775,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:54'),(584,'r<u>oa</u>red ','towered ','coast ','brought ','rod','choose the option that has the same vowel sound as the one represented by the letters underlined.','','a','','utme','2010',3796,'Admin','0000-00-00 00:00:00','2020-08-19 14:43:06'),(585,'shea<u>th </u>','bathe ','length ','months ','paths','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','b','','utme','2010',3836,'Admin','0000-00-00 00:00:00','2020-08-19 23:43:11'),(586,'<u>h</u>igh ','what  ','honest ','who ','vehicle','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3904,'Admin','0000-00-00 00:00:00','2020-08-18 09:51:03'),(587,'o<u>f </u>course  ','plough ','dough ','over ','orphan','choose the option that has the same consonant sound as the one represented by the letter(s) underlined','','c','','utme','2010',3796,'Admin','0000-00-00 00:00:00','2020-08-20 08:11:55'),(588,'boys ','stays  ',' moist ','noise ','elbows','choose the option that rhymes with the given word.','','c','','utme','2010',3972,'Admin','0000-00-00 00:00:00','2020-08-18 13:39:29'),(589,'shine ','clean ','fine ',' machine ','lain','choose the option that rhymes with the given word.','','c','','utme','2010',3716,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:18'),(590,'seer ','snare   ','spare','spear ','square','choose the option that rhymes with the given word.','','c','','utme','2010',3776,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:46'),(591,'political ','politiCAL  ','POlitical','poliTlcal','poLltical','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3921,'Admin','0000-00-00 00:00:00','2020-08-19 07:03:13'),(592,'satisfactory ','satisfacTORY  ','saTISfactory','SATisfactory ','satisFACtory','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','d','','utme','2010',3743,'Admin','0000-00-00 00:00:00','2020-08-19 21:06:35'),(593,'captivity ','captiviTY   ','captiVIty  ','capTlvity','CAPtivity','choose the most appropriate stress pattern from the options. The stressed syllable are written in capital letter(s)','','c','','utme','2010',3754,'Admin','0000-00-00 00:00:00','2020-08-17 22:24:26'),(594,'EMEKA finished his home work yesterday ','Was Emeka helped to do his home work? ','Did Emeka do his home work yesterday?','When did Emeka finish his home work? ','Who finished his home work yesterday','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','d','','utme','2010',3807,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:16'),(595,'Taiwo SAILED to London','Did Taiwo fly to London?',' Did Taiwo sail to Brazil','Did Taiwo sail to London?','Where did Taiwo sail to?','the word in capital letters has the <i>emphatic stress</i>. Choose the option to which the given sentence relates','','a','','utme','2010',3788,'Admin','0000-00-00 00:00:00','2020-08-19 09:10:16'),(596,'My bag is made of LEATHER ','Whose bag is made of leather? ','Is my bag made of polythene? ','Is Abu\\'s bag made of leather? ','Is my bag made of leather','the word in capital letters has the <i>emphatic stress.</i> Choose the option to which the given sentence relates','','b','','utme','2010',3836,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:36');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `englishlit` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=362 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `englishlit` VALUES (1,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son','question is on William Shakespeare\\'s hamlet','','d','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(2,'Prince Hamlet refrains from killing King Claudius while the latter is praying because ','he does not want to murder a pious man ','he is not yet fully convinced of his uncle’s guilt  ','King Claudius might thereby gain eternal life ','murder of a person paying is an unpardonable sin ','question is on William Shakespeare\\'s hamlet','','b','','post-utme','2006',129,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(3,'Which of these best describes setting in a novel? ','the place where an event takes place ','the time when an event takes place ','the place and time of an event ','the back ground of an event ','question is on William Shakespeare\\'s hamlet','','c','','post-utme','2006',116,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(4,'The farm Flincomb-Ash is symbolic of: ','Tess\\'s fallen state ','Tess\\'s innocence ','Tess\\'s happiness ','the suffering and ill-luck that is Tess\\'s fate','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','d','','post-utme','2006',129,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(5,'Prince, in the novel, is','the title of Tess\\'s ravisher ','Angel Clare\\'s other name  ','the name of a horse ','the name of Tess\\'s brother ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','c','','post-utme','2006',114,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(6,'The period Tess spends at Talbothays is the period of her:','the happiest period of her life ','the period she suffers most horribly in the novel ','the period she falls into temptation ','the period when she became pregnant ','question is on Thomas hardy\\'s Tess of the d\\'Urbervilles','','a','','post-utme','2006',106,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(7,'The play starts with a ','flashback ','prayer ','muezzin ','dialogue ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',130,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(8,'Caliph: \\\"Atthiru invites Mallam because ','Mallam has offended the caliph ','Mai Worno needs to be talked to ','Attahiru wants Mallam to explain the dream he had ','Mallam and Mai Wurno are friends ','question is on Attahiru, Ahmed Yerima\\'s play','','a','','post-utme','2006',145,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(9,'Caliph: \\\"You have spoken well. I agree with the Waziri\\' s suggestion. You shall be organize your men and build in new well in the market. “That is our judgement\\\". What informed this statement? ','Waziri fight with the white man ','Waziri\\'s disagreement with Sarkin Zango ','the dispute between Caliph Attahiru and Prince Muhammed al-Tahir  ','the dispute between Sarkin Zango and Sarkin Fatake.','question is on Attahiru, Ahmed Yerima\\'s play','','d','','post-utme','2006',131,'Admin','0000-00-00 00:00:00','2020-08-08 07:51:03'),(10,'A five-line poem that treats a nonsensical subject with humour is a ','quartet ','limerick  ','panegyric  ','sestet.','','','b','','post-utme','2006',127,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(11,'Which of the following statement is most true about poetry?  ','the meanings of words are more important than their sounds  ','the sounds of words are more important than their meanings  ','the sounds of words are often more important than their meaning  ','sounds and meanings of words are of little consequence ','','','a','','post-utme','2006',136,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(12,'The expression “coin of gold” in “Naett, coin of gold” is ','personification ','epithet  ','metonymy  ','metaphor ','','','d','','post-utme','2006',124,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(13,'What figure of speech is “shining coal”?  ','paradox ','irony  ','oxymoron','paronomasia','','','c','','post-utme','2006',128,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(14,'The rhythm of the poem “Serenade” is  ','blue  ','jolting  ','jerky ','measured','','','c','','post-utme','2006',131,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(15,'Which of these best defined exposition in drama? ','the author’s own general introduction to the play  ','the author’s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals ','the first performance of the play on stage ','','','c','','post-utme','2006',132,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(16,'The tone or mood of the speaker in the poem is:  ','neutral  ','angry  ','happy  ','sad ','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.\\nAnd a few leaves lay on the starving sod,\\n…. They had fallen from an ash, and were gray\\n','','d','','post-utme','2006',137,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(17,'Starving sod\\\" here is: ','a metaphor ','a personification ','a simile ','a paradox.','question is on an extract form a poem by Thomas Hardy. Read the lines carefully and answer the question that follow:\\nWe stood by a pond that winter day.\\nAnd the sun was white, as though children of God.','','b','','post-utme','2006',138,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(18,'In Leopold Sedar Senghor\\'s \\\"I will pronounce Your Name\\\" Naeth represents ','Africa ','Senegal ','the poet\\'s mother ','the poet\\'s lover.','','','b','','post-utme','2006',122,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(19,'In Ofeimu\\'s \\\"we must learn Again to fly\\\" \\'Cumulus\\' symbolizes ','acloud ','old age ','sounded masses ','black hair.','','','b','','post-utme','2006',137,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(20,'A brief but witty expression is called: ','song ','epigram','enecdote ','joke ','','','b','','post-utme','2006',115,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:53'),(21,'Pastoral poetry refers to the poetic composition of ','clergyman ','friare ','scops ','shepherds.','','','d','','post-utme','2006',142,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(22,'A literary composition that employs wit and humor to ridicule person or institution is','drama ','satire','norella ','clergy.','','','b','','post-utme','2006',129,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(23,'In a tragedy, the moment when the protagonist suffers a reversal of fortune is know as ','eatharsis ','exposition ','enagnonsis ','peripeteia ','','','d','','post-utme','2006',141,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(24,'“When he was turned over, his eyeballs stared upward in amazement and horror, his mouth was locked torn wide: his trouser soaked with blood, were torn  open, and exposed to the cold , white air of morning the thick hairs of his groin, mattered together, black and rust red, and wound that seemed to be throbbing still\\\". This passage achieves realism through the use of ','details ','simple words ','the long sentence ','the past tense ','','','a','','post-utme','2007',132,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(25,'Earth has not anything to; show more  fair. Dull would he be of soul who could pass by a sight so touching in its majesty. This city now doth, like a garment, wear the beauty of the morning. It is suggested in this line that ','the beauty of the morning gains from the beauty of the city',' the beauty of the city gains  from the beauty of the morning','the beauty of the city and the beauty of the morning are unrelated ','there is no beauty on earth.','','','d','','post-utme','2007',135,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:53'),(26,'\\\"Of 0 cam fasten nut one cup upon him with that which he had drunk tonight already. He\\'ll be as full of quarrel and offence as my young mistress\\' dog ... \\\" Shakespeare, Othello  from the statement above it can be inferred that the speaker is ','disobedient ','quarrelsome ','drunkard ','scheming ','','','d','','post-utme','2007',146,'Admin','0000-00-00 00:00:00','2020-08-07 14:45:18'),(27,'\\\"That that is why we must acc-c-cept the universal d-d-dome, b-b-because there is no d-d-d-direction, The b-b-bridge is the d-d-dome of religion and b-b- bridges d-don\\'t just g-g-go from here to the there; a bridge also face backwards\\\". Wole Soyinka, The Interpreters. The idiolectical feature of the character\\'s speech is the ','repetition of consonant sounds ','repetition of initial consonant sounds ','duplication of consonant sound clusters ','multiplication of diphthongs.','','','c','','post-utme','2007',133,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(28,'\\\"As virtuous men pass wildly away, and higher to their souls, to go,  Whilst some of their sad friends to say,  \\\"The breadth goes now\\\", and some say \\\"No\\\".  The tone of this poem is generally ','appreciative ','serious','imaginative ','conversational.','','','d','','post-utme','2007',127,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(29,'I am alone, And the murmur of my lips carry song and tears homewards from a plain a way from home. Okogbule Wonodi. \\\"Lament for Shola\\\". The poet-persona here expresses a feeling of ','love ','anger ','nostalgia ','sorrow ','','','c','','post-utme','2007',120,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(30,'One rhyme scheme typical of the English sonnet is ','bba abba cde cde ','bba abba cde dce ','abab cdcd efef gg ','abcd babb cde cc','','','c','','post-utme','2007',144,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(31,'Face thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2007',125,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(32,'A short witty statement is an ','epistle ','eulogy','epigram ','anecdote','','','c','','post-utme','2007',119,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(33,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2007',121,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(34,'A literary device that creates a mental picture of a situation is ','imagery','symbolism ','flashback ','epilogue.','','','a','','post-utme','2007',135,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:12'),(35,'Periphrasis in poetic diction is marked by ','circumlocution ','irony ','proverb ','parable.','','','a','','post-utme','2007',131,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(36,'A deliberate imitation of a literary style with the intention to ridicule is ','lampoon ','prosody ','pun ','parody.','','','d','','post-utme','2007',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:14'),(37,'What happened to Tess at the end of Thomas Herds Tess of the D\\'urbervilles?','She is executed for committing murder ','She got married to Angel Clare ','She got married to Alec D’Urbervilles ','She gave birth to a baby boy.','','','c','','post-utme','2007',121,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(38,'The wood where Alec raped Tess is known as: ','Chase borough ','The Chase ','Greenhill ','Trantridge.','','','b','','post-utme','2007',132,'Admin','0000-00-00 00:00:00','2020-08-19 14:37:40'),(39,'The name of the place where Tess and Angel Clare meet each other the second time is: ','Tratridge ','Brazil ','Dubeyfield','Talbothays farm.','','','d','','post-utme','2007',127,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(40,'\\\"Taxi Driver\\\" in Timothy Wangusa\\'s \\\"A Taxi Driver on his Death\\\" can be interpreted as a metaphor describing ','a careful driver ','a ruthless dictator ','a drunkard ','a careless man.','','','b','','post-utme','2007',119,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(41,'The tone in Dennis Brutus\\' \\\"A Troubadour I Traverse .... \\\" can be described as: ','defiant ','submissive ','regretful ','arrogant.','','','a','','post-utme','2007',131,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:54'),(42,'\\\"Naett\\\" in Leopold Sedar Senmghor\\'s \\\"I will Pronounce you Name\\\" refers to: ','South Africa ','a women ','a man ','Black Africa.','','','d','','post-utme','2007',115,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(43,'\\\"Cloud I, early sequestered from my tribe, Free a lead - tethered scribe.\\\" The above lines\\' from J.P. Clark\\'s \\\"Agbor Dancer\\\" suggests that the persona is: ','one with his tribe ','alienated from his tribe ','one of the dancers ','one of the drummers.','','','b','','post-utme','2007',123,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:20'),(44,'The name of the author of \\\"We Must Learn to Fly\\\" is: ','Dennis Brutus ','Leopold Sedar Senghor ','Odia Ofeimun ','Wole Soyinka.','','','c','','post-utme','2007',138,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(45,'One of the following is a characteristic of a novel: ','It is written only in dialogues ','It adopts the poetic form ','It is written mainly in prose','It employs phrases and sentences.','','','d','','post-utme','2007',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:22'),(46,'The law protecting works of art from unlawful reproduction is called: ','plagiarism ','illegal photocopying ','It is written mainly in prose','copyright.','','','d','','post-utme','2007',126,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(47,'The play Hamlet may be described as a tragedy of: ','belief in ghosts ','marital infidelity ','indecision and procrastination ','inordinate love of father by son. ','','','d','','post-utme','2007',128,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(48,'What figure of speech does the following quotation contain? A life\\'s but a walking shadow (Macbeth)','a metaphor ','an image ','a synecdoche ','an allusion','','','a','','post-utme','2008',115,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(49,'Which of the following statement is most true about poetry? ','the meanings of words are more important than their sounds ','the sounds of words are more important than their meanings ','the sounds of words are often more important than their meanings ','sounds and meanings of words are of little consequence','','','a','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(50,'Which of these best define exposition in drama?','the author\\'s own general introduction to the play ','the author\\'s early exposure of his dramatis personae to conflict ','introduction to the characters and the general problem with which the play deals','the first performance of the play on stage.','','','c','','post-utme','2008',118,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(51,'When the speaker in a poem cannot be identified with poet, that speaker is called: ','a persona ','a dramatic persona ','a soliloquist','a ventriloquist.','','','a','','post-utme','2008',107,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(52,'Which of these definitions best described a lyric? ','a short poem','a short poem in which the poet is speaking','a poem expressing a personal idea, feeling or mood','a poem divided into stanza.','','','c','','post-utme','2008',110,'Admin','0000-00-00 00:00:00','2020-08-07 14:45:18'),(53,'An autobiographical novel is: ','a novel written about another novelist ','a true account of a novelist\\'s life by himself ','a novel in which h the novel 1st draws mainly on materials from his own life ','a novel using the\\' I\\' pronoun.','','','c','','post-utme','2008',139,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(54,'Plot in prose fiction is best defined as:  ','the cause and effect sequence of events  ','the brief summary of events  ','the central event  ','the subject-matter of a novel.','','','a','','post-utme','2008',140,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(55,'Which of these is not true about unity of action in a novel? ','action may be unified through a single main character  ','action may be unified by being set in one place  ','action may be unified by many characters  ','action may be unified by using set in one consistent point of view.','','','a','','post-utme','2008',157,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(56,'Action in a novel is best defined as:  ','the summary of the novel’s story  ','what the characters do or say in the novel  ','the numerous sub-plots of the novel put together ','the totality of all the episodes in a novel leading to the conclusion','','','b','','post-utme','2008',128,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(57,'Suspense in a novel means:  ','the postponement of the hero’s death till the last possible moment ','the intense emotions that the author conveys  ','the inconclusive end of a novel  ','when we are curious about what happens next in a novel.','','','d','','post-utme','2008',127,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(58,'A realistic novel is one in which the characters are:  ','real   ','historical ','just of above average intelligence  ','the types that we meet in everyday life.','','','a','','post-utme','2008',118,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(59,'Theme is best defined as:  ','the subject – matter of a novel or play ','the central idea in a play or novel  ','the point of view in that novel  ','the sum-total of all the characters’ experiences','','','a','','post-utme','2008',122,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:54'),(60,'What kind of repetition is used in the extract?  ','anaphora ','single word repetition  ','line repetition  ','phrase repetition.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',128,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(61,'A part from emphasis, what other effect does the repetition have?  ','makes the poem rhythmical  ','makes the poem tedious  ','makes the poem -notonous  ','makes the poem exhilarating.','Read the following extract from a poem to answer questions \\nAmong rocks, I am the loose one,\\nAmong arrows, I am the heart\\nAmong daughters, I am the recluse,\\nAmong sons, the one who dies young\\n','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(62,'The following line from a poem:  Western wind, when will thou blow? Is an example of: ','rhetorical question  ','caesura  ','alliteration  ','nature imagery.','','','a','','post-utme','2008',119,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(63,'Identify the odd one out of these types of imagery  ','visual imagery  ','tactile imagery  ','synesthesia  ','literal imagery.','','','d','','post-utme','2008',132,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(64,'When a poet uses mainly soft vowel sounds in a poem, the texture of the poem is ','mellifluous ','harsh ','assonantal ','neutral ','','','a','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:39'),(65,'The sounds in the following lines may be described as an example of: The moan of doves in immemorial elms, and murmuring of innumerable bees ','alliteration ','euphony ','cacophony ','a mixture of all the above.','','','b','','post-utme','2008',137,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(66,'\\\"The man dies in him who keeps silent in the face of tyranny.\\\" This statement can be described as: ','Metaphoric ','Literal ','Tragic ','A smile.','','','a','','post-utme','2008',118,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(67,'The literary technique in which a reader is taken to the past of a current action in known as:','rewinding ','fast forward ','flashback ','repetition.','','','c','','post-utme','2008',134,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:54'),(68,'One rhyme scheme typical of the English sonnet is ','abba abba cde dce ','abba abba cde cde ','abab cdcd efef gg ','abcd babb cde cc.','','','c','','post-utme','2008',126,'Admin','0000-00-00 00:00:00','2020-08-15 23:19:25'),(69,'The speaker of the above except is a ','son of Lord Montague ',' nephew to Lady Capulet ','kinsman to the Prince ',' servant to Paris.','\\\" ... This is a Montague, our foe; A villain, that is hither come in spit. To scorn at out solemnity this night. William Shakespeare: Romeo and Juliet I:V,61-63. ','','b','','post-utme','2008',116,'Admin','0000-00-00 00:00:00','2020-07-22 00:06:56'),(70,'In Gbemisola Adeoti\\'s \\\"Naked Soles\\\", the expression \\\"red milk of grief\\' means ','wine ','sea ','ink ','blood.','','','d','','post-utme','2008',107,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:44'),(71,'Farce thrives on ','big events ','promotion ','absurdity ','incidents.','','','c','','post-utme','2008',106,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(72,'A short witty statement is an ','epistle ','eulogy ','epigram ','anecdote.','','','c','','post-utme','2008',142,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(73,'In a narration, the first person is ','the author ','a participant ','the publisher ','an observer.','','','a','','post-utme','2008',114,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:47'),(74,'Literary device that creates a mental picture of   a situation is ','imagery ','symbolism ','flashback ','epilogue','','','a','','post-utme','2008',124,'Admin','0000-00-00 00:00:00','2020-08-19 14:37:40'),(75,'To whom does her in line 5 refers to?  ','God  ','Letter  ','World ','Nature','This is my letter to the world\\nThat never wrote to me\\nThe simple news nature told\\nWith tender majesty\\nHer message is committed\\nTo hands, I cannot see;\\nFor love of her, set countrymen,\\nJudge tenderly one me.\\n','','d','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(76,'The suddenly her heart was whipped up, she now rode on strange waves: alone defying the wind and the rain; alone, fighting hunger and thirst in the desert, alone, struggling with strange demons in the forest bringing  glad tidings to her people. The mood of the lady in this  passage is one of ','simple defiance ','defeat  ','triumphant  ','depression','','','c','','post-utme','2009',110,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(77,'Mother, didn’t you hear me? I’ve brought the goat, hen and yams. Don’t you want them anymore? Why do you continue to look at me like that? I haven’t done anything wrong, again, have I, answer me, speak to me, mother’  The  dominant mood in this passage is one of ','sadness ','anxiety  ','anger  ','nonchalance.','','','b','','post-utme','2009',132,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(78,'What distinguishes poetry from other  forms of literature is its  ','Rhyme and verse ','rhythm and metaphor ','emotion and feeling  ','irony and paradox','','','a','','post-utme','2009',129,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(79,'Assonance poetry is the repetition of ','internal vowels in words ','consonant sounds in words ','final sounds at the end of a line 1 ','final sounds at the beginning of a line','','','a','','post-utme','2009',113,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(80,'There knells a jigger, a louse , a weevil, a flea, a bedbug! He is mistletoe, a parasite that lives on the trees of other people’s! the speaker uses a string of ','metaphors  ','parables  ','hyperboles  ','riddles','','','a','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:54'),(81,'As literacy form the short  story is most closely related to ','the discourse ','the novel  ','story telling  ','poetry ','','','b','','post-utme','2009',109,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(82,'A poem written on a grand theme, in an appropriately grand style, dealing, with heroic figures is called ','an epigram  ','an epic ','a soliloquy ','heroic poem','','','b','','post-utme','2009',120,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(83,'The literary device which uses ridicule to correct social ills is known as ','anecdote  ','saturation  ','hyperbole  ','satire.','','','d','','post-utme','2009',133,'Admin','0000-00-00 00:00:00','2020-07-14 14:51:56'),(84,'Characterization is a novel means the ','list of characters featuring in it ','peculiar materialisms of the narrator ','mode of presenting the fictional individuals ','list of those that act the novel.','','','d','','post-utme','2009',136,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(85,'Caricature is used to ','censure an individual by emphasizing his weakness ','expose the folly  in literature  ','ridicule a person by distorting his most prominent features ','elicit the artistic potential of dramatist.','','','c','','post-utme','2009',117,'Admin','0000-00-00 00:00:00','2020-07-17 15:18:54'),(86,'The branch of knowledge that places emphasis on beauty is ','philosophy ','ode to pretty ','philology ','aesthetics.','','','d','','post-utme','2009',134,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(87,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','‘You kiss her on the cheek \\nYou kiss her open-sore lips\\nAs white people do.\\nYou suck slimy saliva\\nFrom each other’s moths.\\nAs white people do.\\nOkot P’ Breck’s song of larie\\n','','b','','post-utme','2009',128,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(88,'‘The madman has entered our house with violence  defiling our sacred grounds claiming the single truth of the universe bending down our priest with iron’. Mazzizi Kunnene’s progress the imagery of the line above captures the idea of ','coercion ','truth ','religiosity ','persuasion.','','','d','','post-utme','2009',138,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(89,'‘Beholds her, single in the field you solitary Highland Lass! Reaping and singing, by herself stop here, or gently pass! Alone she cuts and blinds the gram, and sings a melancholy strain, O listen! For the Vale profound Is overflowing with the sound. The rhyming schema in the first stanza of The Solitary Reaper above is ','abcbddee ','ababccdd ','alxabcdd ','abcbddef','','','a','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(90,'The tone of the poet is ','optimistic ','dupplicatory  ','sympathetic ','piteous','These only tears\\nDripping down the tears on your depressed face.\\nWill one day be staunche.\\nI swear’ \\n','','a','','post-utme','2009',106,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:03'),(91,'The literary device  which anticipates that an event will take place is best described as ','parody ','flashback ','foreshadowing ','rising action ','','','c','','post-utme','2009',119,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:04'),(92,'The multiple deaths in the play serve as a punishment for ','impatience on the part of  Romeo and Juliet; ','imposing life partners on children ','disobedience of the protagonists  ','Tybalt’s fiery temper.','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',123,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(93,'Romeo’s death becomes inevitable because ','Emire Lawrence’s is not delivered: ','Juliet is married to Paris ','Romeo kills Tybalt in a duel ','Juliet has committed suicide.','Question is based on William Shakespeare’s Romeo and Juliet','','a','','post-utme','2009',130,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(94,'Before he met Juliet, Romeo was in love with ','country Paris ','Rosaline  ','Benvolio  ','Mercuito','Question is based on William Shakespeare’s Romeo and Juliet','','b','','post-utme','2009',117,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(95,'The major reason for Juliet’s  grief is ','The death of her cousin; ','her reluctant marriage to Romeo  ','the banishment of her lover ','her imminent death.','Question is based on William Shakespeare’s Romeo and Juliet','','c','','post-utme','2009',124,'Admin','0000-00-00 00:00:00','2020-08-19 14:37:40'),(96,'Winston Smith begins his rebellion against the power of the state by ','educating the youth  ','keeping a private diary  ','purchasing arms ','disobeying Big Brother.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',142,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(97,'In the novel, Orwell attempts  to ','eulogizes the beauty of the socialist system; ','condemn the disgusting hypocrisy of all communist systems; ','satirize the artificiality  of a machine controlled society ','deride the political lock jam in Nigeria.','Question is based on George Orwell’s Nineteen Eighty-four','','b','','post-utme','2009',125,'Admin','0000-00-00 00:00:00','2020-07-26 12:11:56'),(98,'“The experts, of course disagree the urine test they ordered ‘said, Negative’. The lives above from acqah’s in the Nanel of the soul depict ','awareness ','inevitability ','progress ','contradiction.','Question is based on selected poems','','d','','post-utme','2009',127,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(99,'In Kunene’s Heritage of Liberation, freedom is to be achieved through the efforts of ','the new generation  ','the old generation ','present generation ','successive generations.','Question is based on selected poems','','d','','post-utme','2009',120,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(100,'The thematic pre-occupation of de Graft’s  Sons and Daughters can be summarized as ','the import of Western education ','the roles of women in modern economy ','how to become a lawyer ','dimly life in the face of social changes.','','','d','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-08-19 14:37:40'),(101,'Lawyer Bonu in de Grafts Sons and Daughters can be described as a: ','caring father ','faithful husband ','deceitful friend ','shrewd politician.','','','d','','post-utme','2010',119,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(102,'De graft’s Sons and Daughters is structured into: ','three acts ','four scenes ','two acts ','five Episodes.','','','a','','post-utme','2010',119,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(103,'The central  conflict in de Graft’s Sons and Daughter is primarily: ','political ','generational ','racial','communal','','','d','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(104,'He already had five wives and was soon going to break the legs of the antelope for the sixth time’. The expression ‘break the legs of the antelope’ means to: ','be ON honeymoon ','offer ritual sacrifice ','hunt for antelopes  ','have a  new baby.','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',126,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:26'),(105,'The medal in Oyono’s The Old man and the  two sons and his: ','house ','horse  ','land ','Job','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(106,'Kelara in Oyono’s The Old man and the Medal is: ','Mvodo’s sister ','commandant’s maid  ','Meka’s wife ','Agatha’s cousin.','Question is  based on Oyono’s Old man hand the medal','','c','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(107,'In Oyonon’s The Old Man and the Medal, Ignatius Obebe isa : ','driver ','soldier ','carpenter ','catechist.','Question is  based on Oyono’s Old man hand the medal','','d','','post-utme','2010',102,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(108,'The medal in Oyono’s The Old man and the medal is a symbol of: ','colonial deceit ','African pride  ','genuine reward for loyalty ','respect and honour','Question is  based on Oyono’s Old man hand the medal','','a','','post-utme','2010',112,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(109,'Dancing through blooming thorns” in Gbemisola  Adeoti’s Naked soles” connotes: ','hoeing a field of thorns ','dancing  in a keen competition ','being merry amidst suffering','playing flowers and plants.','Question is are based on selected African poems.','','c','','post-utme','2010',123,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(110,'In Gbemisola Adeoti’s Naked Soles”, the expression red milk of grief’ refers to: ','wine  ','Ink ','blood ','palm-oil','Question is are based on selected African poems.','','c','','post-utme','2010',127,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:54'),(111,'In Masizi Kunene’s “A Heritage of Liberation; this season’ refers to the period of: ','oppression ','freedom  ','migration  ','resettlement','Question is are based on selected African poems.','','b','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:37'),(112,'“Eagle in Kunene’s  “A Heritage  of  Liberation” is a symbol of: ','deceit ','peace ','agility ','death.','Question is are based on selected African poems.','','d','','post-utme','2010',121,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(113,'The tone in Gbemisola Adeoti’s Naked soles” is that of ','reconciliation  ','lamentation  ','exhortation ','admiration','Question is are based on selected African poems.','','b','','post-utme','2010',129,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:54'),(114,'The attitude of the poet-Persona toward bats in D.H. Lawrence’s “Bats” is that of ','revulsion ','veneration  ','admiration  ','indifference.','Questions is based on Non-African Poetry','','a','','post-utme','2010',135,'Admin','0000-00-00 00:00:00','2020-08-13 13:20:30'),(115,'In China, according to D.H. Lawrence, bats are symbols of: ','death  ','birth ','caution ','joy','Questions is based on Non-African Poetry','','d','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:03'),(116,'In Wendy Cope’s Sonnet VII,  poetry is regarded as a God –given weapon to: ','musicians ','recluses ','nomads ','pilgrims.','Questions is based on Non-African Poetry','','b','','post-utme','2010',133,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(117,'The greatest challenge to the poet-persona in Andrew Marvell’s “To His Coy Mistress’ is : ','chariot ','love  ','time ','youth','Questions is based on Non-African Poetry','','c','','post-utme','2010',134,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(118,'But the pigs were so clever that they could think of a way around every difficulty. As for the horses, they know every inch of the field and in fact understood the business of mowing and raking”. The dominant literary device in the excerpt above is ','repetition ','mimesis ','ellipsis ','personification.','Question is  based on literary appreciation','','d','','post-utme','2010',131,'Admin','0000-00-00 00:00:00','2020-08-13 13:20:30'),(119,'“The dairy maids and men had flocked down from their cottages and out of the dairy-house with the arrival of the cows from the meads: the maids walking in  patterns, not on account of weather, but to keep their shoes above the mulch of the barton”. The setting of the above  passage can be described as: ','urban  ','celestial ','pastoral  ','religious.','Question is  based on literary appreciation','','c','','post-utme','2010',122,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(120,'“O mother, my mother!...How could I be expected to know? I was a child when I left this house four months ago. Why didn’t  you tell me there was danger in men-folk? Why didn’t you warn me?” the speech above achieves its literary effect through the use of: ','litotes  ','onomatopoeia ','allusion  ','repetition.','Question is  based on literary appreciation','','d','','post-utme','2010',120,'Admin','0000-00-00 00:00:00','2020-07-14 14:52:46'),(121,'“The animals saw no reason to disbelieve him, especially as they could no longer remember very clearly  what conditions had been like before the rebellion. All the same, there were days when they felt that they would sooner have had less figures and more food”. The tone of the passage above is quite: ','exhilarating ','cynical ','optimistic ','obsequious.','Question is  based on literary appreciation','','b','','post-utme','2010',124,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(122,'“We are tired of waiting for another war our trees their leaves have shed the winter has come and gone spring flowers have blossomed and withered” in line 2 of the poem above, the poet uses:','ellipsis ','alliteration ','inversion  ','oxymoron.','Question is  based on literary appreciation','','c','','post-utme','2010',140,'Admin','0000-00-00 00:00:00','2020-08-15 23:19:25'),(123,'The poet personal in the poem above is: ','resigned to fate  ','a holy man  ','a daily traveler  ','suffering but optimistic. ','“I come and go\\na pilgrim\\ngrubbily unkempt\\nstubbornly cheerful\\ndefiantly whistling hope\\nand grubbing for crumbs of success\\nout of all near-defeats.\\n','','d','','post-utme','2010',116,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(124,'A novel that has a very strong presence of the supernatural is known as ______ ','faction  ','gothic  ','travel tale  ','fairy novel ','','','d','','post-utme','2012',131,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:53'),(125,'In a tragic-comedy, the unknotting of the plot, the resolution of the mystery and the resolution of the misunderstanding is called  ','exposition   ','denouement   ','catharsis  ','hubris','','','b','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(126,'The exclusive right given to authors to protect their works from unlawful production or reproduction is   ','A copyright  ','an authority to write  ','an author’s right   ','a constitutional provision ','','','a','','post-utme','2012',136,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(127,'An epic deals with  ','humour  ','tragedy  ','gothic  ','hero','','','d','','post-utme','2012',134,'Admin','0000-00-00 00:00:00','2020-08-19 14:37:40'),(128,'The sudden revelation of events as they happen is called  ','epiphany  ','revelation  ','relay-events  ','resonance ','','','d','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-08-06 06:25:46'),(129,'Comic relief is used in a work of art to  ','to suspend disbelief  ','to maneuver the portal of narration  ','to create chiaroscuro  ','to suspend to tension ','','','d','','post-utme','2012',125,'Admin','0000-00-00 00:00:00','2020-08-19 14:37:40'),(130,'The image in this excerpt suggest ','happiness  ','sorrow ','anger  ','kindness','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','b','','post-utme','2012',137,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(131,'The world as used above is an example of  ','irony  ','metaphor ','exaggeration  ','parody ','(Extract for question)I thank you God for creating me black\\nFor making of me\\nPorter of all sorrows\\nSetting on my mind\\nThe world\\n','','c','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:54'),(132,'This extract is an example of  ','dirge  ','satire  ','ode  ','sonnet','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',127,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(133,'The general  idea in the extract is ','neglect  ','praise  ','ridicule  ','worship','(Extract for question)\\nAgosu, if you go tell them,\\nTell Nyidevu, Kpeti, and Kove\\nThat they have done us evil;\\nTell them house is falling \\nAnd the tree in the fence\\nHave been eaten by termites \\n','','a','','post-utme','2012',128,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:24'),(134,'  The central motif in this excerpt is  ','religious  ','pride  ','poverty  ','deceit ','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',124,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(135,'The extract is an example of  ','pun  ','hyperbole  ','Irony  ','parody','(Extract for question )\\nBlessed Nigerians,\\nWho eat pestilence to sleep\\nBlessed the poor \\nWho inherit thorns. . . . . . \\n','','d','','post-utme','2012',118,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:17'),(136,'“Your hand is heavy, Night, upon by brow” is an example of  ','hyperbole  ','onomatopoeia  ','apostrophe  ','oxymoron ','','','a','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:18'),(137,'From this passage, the people that the writer admire are  ','poor  ','brilliant   ','rich   ','unassuming ','(Extract for question)\\nThe human beings who I most admire are those without sterling qualities but are extraordinary in their ordinariness, the unsung heroes who will never be in the limelight or boulevard of fame, people who do great things when no one is watching or those who are not marked with the maple leaves of chieftaincy titles. They only wear fate, hard work, perseverance, anonymity and time. Yet, they are passionate, caring, visionary, sincere, determined and honest. These qualities mold those that are special without being aware. I strive to stay true to some of these qualities that I admire. To find a person with a few of these qualities is rare these days. To know someone who has all of them is amazing and a true blessing. [Excerpt from Tomorrow Left Us Yesterday-Tayo Olafioye]\\n','','d','','post-utme','2012',117,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:19'),(138,'The writer informs the reader that people with good qualities are  ','many  ','few  ','fearful  ','famous','','','b','','post-utme','2012',132,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(139,'Aaron’s brother who trains as an accountant is  ','George  ','Awere  ','Owusu  ','Kofi','Question is based on Joe de Graft’s Sons and daughters','','d','','post-utme','2012',142,'Admin','0000-00-00 00:00:00','2020-08-20 16:10:33'),(140,'Which of the following is true of the Awere?  ','He is the fiancé of Maanan  ','He is a chartered accountant   ','He wins a scholarship to Goldsmith College  ','He wants to study dance and choreography ','Question is based on Joe de Graft’s Sons and daughters','','a','','post-utme','2012',135,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(141,'The conflict in the play centres around  ','gender  ','generation  ','religion  ','ethnicity ','Question is based on Joe de Graft’s Sons and daughters','','b','','post-utme','2012',115,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(142,' The text of Shakespeare’s Romeo and Juliet is sourced in ','1623 second Folio  ','1590 rehearsal guide  ','1599 Quarto  ','1616 manuscript ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','a','','post-utme','2012',119,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(143,'“There’s no trust No faith, no honesty in men, all perjured, All forsworn, all naught, all dissembles” The speaker of the above excerpt is ','Nurse  ','Juliet  ','Balthasaar  ','Capulet ','Question is drawn from William Shakespeare’s ROMEO and JULIET','','b','','post-utme','2012',122,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(144,'Another Suitor of Juliet in the play is  ','Mercutio  ','Gregory  ','Duke  ','Paris','Question is drawn from William Shakespeare’s ROMEO and JULIET','','d','','post-utme','2012',137,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:25'),(145,'In the novel, the Ministry that is responsible for news, entertainment and fine arts in the Ministry of  ','Peace  ','Love  ','Plenty  ','Truth','Question is based on George Orwell’s Nineteen Eight Four','','d','','post-utme','2012',110,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(146,'The Ministry of Plenty in the Novel is responsible for  ','War  ','economic affairs  ','Population  ','Agriculture ','Question is based on George Orwell’s Nineteen Eight Four','','b','','post-utme','2012',122,'Admin','0000-00-00 00:00:00','2020-08-07 08:03:09'),(147,'The national day in The Old Man and the Medal is  ','1st of October  ','27th of May  ','12th June  ','14th July','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','d','','post-utme','2012',128,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(148,'In Joys of Motherhood, Dr Meers is  ','Nnaife’s master  ','Nnuego’s uncle  ','The District Officer  ','An ombudsman','Question is based on Ferdinand Oyono’s\\nThe Old Man and medal and The joys of motherhood   \\n','','a','','post-utme','2012',116,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(149,'“ I don’t see how any mother who cares for the modesty of her daughter can coolly sit down there and defend such waywardness”. “way wardness” in the except above refers to  ','sexual immorality  ','painting  ','dancing  ','disobedience ','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-07-28 15:12:56'),(150,'Aaron’s painting is purchased by an American collector for the sum of ','250 dollars  ','220 pounds ','260 cedis  ','280 francs ','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',113,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:30'),(151,'James Ofosu is pleased with George because he studies ','Law  ','Accountancy ','Engineering   ','Medicine ','Question is  based  on Joe de Graft’s Sons and Daughters.','','d','','post-utme','2013',117,'Admin','0000-00-00 00:00:00','2020-08-19 14:37:40'),(152,'Joe de Graft’s Sons and daughters is an example of ','domestic comedy ','dark comedy ','restoration comedy ','comedy of error','Question is  based  on Joe de Graft’s Sons and Daughters.','','a','','post-utme','2013',121,'Admin','0000-00-00 00:00:00','2020-08-15 14:21:23'),(153,'The central conflict in the play is about  ','Lawyer Bonu’s attempt to seduce Maanan  ','career choice for James Ofosu’s children  ','Hannah’s lack of respect for James  ','Fosuwa’s bid to force Lawyer Bonu on Maanan','Question is  based  on Joe de Graft’s Sons and Daughters.','','b','','post-utme','2013',125,'Admin','0000-00-00 00:00:00','2020-08-10 09:07:23'),(154,'David Rubadiri in “An African Thunderstorm” paints a graphic picture of the Thunderstorm through  the use of ',' simile and personification  ',' Irony and imagery',' hyperbole and rhyme ','innuendo and satire ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',118,'Admin','0000-00-00 00:00:00','2020-08-19 14:37:40'),(155,'In Andrew Marvell’s “To his Coy mistress”, the poet adopts a consistent rhyming scheme of ','sestet    ','Couplet ',' tercet  ','free verse','Question is based on African and Non-African Poetry  ','','b','','post-utme','2013',126,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(156,'Mazisi Kunene is an African poet from  ','Ghana ','Nigeria  ','Malawi  ','South Africa','Question is based on African and Non-African Poetry  ','','d','','post-utme','2013',144,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(157,'In T.S. Eliot’s “The Journey of the Magi”, the journey can be described as  ','delightful   ','unnecessary ','allegorical  ','symbolic ','Question is based on African and Non-African Poetry  ','','c','','post-utme','2013',130,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(158,'The dominant figurative device  in Kobena Acquah’s “In the Navel of the Soul” is','metaphor   ','assonance  ','paradox   ','euphemism ','Question is based on African and Non-African Poetry  ','','a','','post-utme','2013',134,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(159,'‘fellow wayfarer…what good news do you bring me?\\\" The statement above is addressed by Meka to','the Commandant’s messenger ','a passing dog   ','a dove ','Engamba ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-07-26 20:56:08'),(160,'Gullet is so named by the natives because of his  ','razor-sharp wit  ','long neck ','closeness to the people ','hostility ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','b','','post-utme','2013',128,'Admin','0000-00-00 00:00:00','2020-08-13 06:17:03'),(161,'The medal in the novel is a symbol of  ','ungodliness   ','victory   ','admiration ','deceit ','Question is  based on Ferdinand Oyono’s The Old Man and the Medal.','','d','','post-utme','2013',121,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(162,'In the Joys of Motherhood, the joy of a mother is predicated on having ','husband    ','sons ','daughters   ','wealth ','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','b','','post-utme','2013',126,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(163,'The protagonist of the novel is  ','Nwokocha Agbadi ','Nnaife  ','Nwakusor ','Nnu Ego.','Question is based on Buchi Emecheta’s The Joys of Motherhood.','','d','','post-utme','2013',132,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(164,'From the conclusion of the novel, the author implies that ','rebellion is fruitless ','opposition pays ','two and two make four ','knowledge gives freedom.','Question is based on George Orwell’s Nineteen Eighty Four','','a','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-08-10 21:23:13'),(165,'“It was an enormous  pyramidal structure of glittering white concret, soaring up, terrace after terrace, 300 metres into the air”.','Being described in the except above is  ','The party secretariat','O’ Brien’s  residence  ','The ministry of truth ','The Ministry of Plenty ','','c','','post-utme','2013',123,'Admin','0000-00-00 00:00:00','2020-08-19 20:23:31'),(166,'In the novel, Oceania is at war with  ','Romania   ','Catalonia    ','Eastasia ','Rhodeia','','','c','','post-utme','2013',122,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:45'),(167,'“Minipax” in the true sense means ','ministry of Truth ','Ministry of Love  ','Ministry of War  ','Ministry of Plenty ','Question is based on George Orwell’s Nineteen Eighty Four','','d','','post-utme','2013',132,'Admin','0000-00-00 00:00:00','2020-08-19 15:03:06'),(168,'In the Newspeak language, “duckspeak” is a word that simultaneously  refers to ','love and admiration  ','knowledge and ignorance  ','now and then ','abuse and praise ','Question is based on George Orwell’s Nineteen Eighty Four','','b','','post-utme','2013',135,'Admin','0000-00-00 00:00:00','2020-08-19 15:02:53'),(169,'Hermeneutics is an art of  ','Calculation  ','exaggeration ','composition  ','interpretation ','Question is based on General literary principles.','','d','','post-utme','2013',112,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:24'),(170,'A poem written in unrhymed five stress lines is called  ','ballad  ','Blank verse ','sonnet      ','Ode','Question is based on General literary principles.','','b','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-07-14 14:53:49'),(171,'The type of sonnet that has an octave and a sestet has its origin in  ','England  ','Spain ','Portugal   ','Italy','Question is based on General literary principles.','','d','','post-utme','2013',144,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:29'),(172,'The tone of the excerpt above is  ','jubilant  ','condemnatory ','adulatory  ','defiant ','“We own this land \\n And the swamps\\n The palms\\n And the mangroves;\\n We ‘ll die defending them”\\n Tony Afejuku “Land Song”  \\n','','d','','post-utme','2013',115,'Admin','0000-00-00 00:00:00','2020-08-13 12:53:33'),(173,'The figurative devices in the excerpt above are  ','rhyme and metaphor  ','alliteration and assonance  ','repetition and simile  ','rhyme and onomatopoeia ','“Her voice is a shell borne by the waves to crack the egg my soul sorely craves”\\nSegun Adekoya  “Love Blues” \\n','','a','','post-utme','2013',120,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:14'),(174,'A speech in a play in which a character speaks his or her thoughts alone is','monologue','an aside','a soliloquy','an epilogue','','','c','','wassce','2015',100,'Admin','2016-12-12 05:41:49','2020-08-20 11:08:24'),(175,'In Literature, repetition is used essentially for','rhyme','suspense','allusion','emphasis','','','d','','wassce','2015',117,'Admin','2016-12-12 05:41:49','2020-08-10 09:07:23'),(176,'The pattern of poem without reference to its content is referred to as the','limerick','metre','free verse','form','','','c','','wassce','2015',112,'Admin','2016-12-12 05:41:49','2020-08-07 14:45:18'),(177,'The performers in a play constitute the','chorus','characters','audience','cast','','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:49','2020-07-28 15:12:56'),(178,'The stanza is an example of','appellation','apostrophe','euphemism','elegy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',130,'Admin','2016-12-12 05:41:49','2020-08-19 14:37:40'),(179,'Pan is used here as','an allusion','symbol','irony','metonymy','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','a','','wassce','2015',116,'Admin','2016-12-12 05:41:49','2020-08-19 14:37:40'),(180,'The rhyme scheme of the stanza is','abcabcc','ababcdd','babaccc','bcbccaa','Pan, O great Pan, to thee\\'<br> \t\tThus do we sing!<br> \t\tThou who keep’st chaste and free<br> \t\tAs the young spring<br> \t\tEver be thy honour spake<br> \t\tFrom that place the morn is broke<br> \t\tTo the place day doth unyoke','','b','','wassce','2015',111,'Admin','2016-12-12 05:41:49','2020-08-19 14:37:40'),(181,'A metrical foot in which a stressed syllable is followed by an unstressed syllable is','iambic','spondaic','trochaic','dactylic','','','c','','wassce','2015',110,'Admin','2016-12-12 05:41:49','2020-08-20 11:08:24'),(182,'________ is the location of the action of the plot','Setting','Narrative technique','Point of view','Characterization','','','a','','wassce','2015',108,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:26'),(183,'A ballad is essentially a ____________ poem','descriptive','dramatic','pastoral','narrative','','','d','','wassce','2015',118,'Admin','2016-12-12 05:41:49','2020-08-06 06:25:46'),(184,'The first four lines of the Shakespearean sonnet rhyme','abcd','abba','abab','cdcd','','','c','','wassce','2015',117,'Admin','2016-12-12 05:41:49','2020-08-20 11:08:24'),(185,'A story in which characters or actions represent abstract ideas or moral qualities is','an epic','a legend','an allegory','a satire','','','c','','wassce','2015',101,'Admin','2016-12-12 05:41:49','2020-08-20 16:10:33'),(186,'The use of imagery in prose or verse','appeals to the senses','develop the plot','create confusion','obscures meaning','','','a','','wassce','2015',106,'Admin','2016-12-12 05:41:49','2020-07-28 15:12:56'),(187,'The lines illustrate','soliloquy','parallelism','dialogue','contrast','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','b','','wassce','2015',117,'Admin','2016-12-12 05:41:49','2020-08-20 16:10:33'),(188,'‘heads’ in the second line is an example of','synecdoche','inversion','epithet','conceit','Our leaders will not compromise freedom<br> \tNor will our heads give up liberty.','','a','','wassce','2015',115,'Admin','2016-12-12 05:41:49','2020-08-13 12:53:29'),(189,'A character that develops in the course of  a novel or play is described as','flat','antagonist','round','protagonist','','','c','','wassce','2015',106,'Admin','2016-12-12 05:41:49','2020-07-14 14:54:32'),(190,'A dirge is a poem sung','to send a child to sleep','to make workers happy','at a birthday party','at a funeral','','','d','','wassce','2015',119,'Admin','2016-12-12 05:41:49','2020-08-10 21:23:13'),(191,'In drama, the ___________ creates humour','hero','clown','villain','chorus','','','b','','wassce','2015',116,'Admin','2016-12-12 05:41:50','2020-08-20 16:10:33'),(192,'<em>Let me not love thee if l love thee not</em> illustrates','metaphor','proverb','paradox','meiosis','','','c','','wassce','2015',111,'Admin','2016-12-12 05:41:50','2020-08-19 15:02:54'),(193,'__________ is a literary device used to express something unpleasant in a more acceptable manner','Epilogue','Epigram','Euphemism','Eulogy','','','c','','wassce','2015',128,'Admin','2016-12-12 05:41:50','2020-08-13 13:04:14'),(194,'The writer’s attitude to the couple is one of','resignation','indifference','patronage','praise','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','a','','wassce','2015',124,'Admin','2016-12-12 05:41:50','2020-08-19 15:02:54'),(195,'The dominant literary device used in the passage is','litotes','personification','simile','paradox','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',109,'Admin','2016-12-12 05:41:50','2020-08-15 23:19:25'),(196,'The rhetorical question that ends the passage stresses the','wickedness of thieves','poverty of the couple','security of the hut','filthiness of the surroundings','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','b','','wassce','2015',110,'Admin','2016-12-12 05:41:50','2020-08-19 20:23:31'),(197,'The expression ‘such a rude room of such a poor pair’ illustrates','onomatopoeia','pun','rhyme','alliteration','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',99,'Admin','2016-12-12 05:41:50','2020-07-14 14:54:39'),(198,'The setting is','dawn','sunset','midday','night','A modest two-room hut built of mud and roofed with straw graciously sheltered the Mensahs. One of the rooms advertised itself as a living room. The kind earthenware pot willingly kept company with four ever-smiling stools. The pot eternally contained cool water for guests. The second room was a warm-hearted bedroom without a bed. The poor pair had to sleep on bare straw mats on the polished dirt floor. Some over washed rags deputized for blankets and sheets and pillows. Two strong dry logs, facing each other like bitter rivals burned themselves out at night, not merely to keep the couple warm but mainly to ward off hungry mosquitoes and other hostile pests.<br><br> There was no door to ward off the cold night air. Some rude \tdevices, however, were contrived to keep the room quite safe from prying eyes and curious domestic animals. Would any thief be ever tempted to peep into <strong>such a rude room of such a poor pair</strong>?','','d','','wassce','2015',116,'Admin','2016-12-12 05:41:50','2020-08-13 12:53:29'),(199,'The rhyme scheme is','aabbccddeeff','ababababaabb','abcaabbcabab','abbaabcaabab','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',105,'Admin','2016-12-12 05:41:50','2020-08-19 15:03:06'),(200,'The theme of the poem is','the love of mother','invoking the spirit of womanhood','admiration for women’s hard work','the suffering of women','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','a','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-08-15 14:21:24'),(201,'The literary device used in line 7 is','conceit','personification','hyperbole','pathos','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',113,'Admin','2016-12-12 05:41:50','2020-08-19 20:23:31'),(202,'The poet’s tone is one of','sadness','joy','condemnation','sarcasm','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','b','','wassce','2015',110,'Admin','2016-12-12 05:41:50','2020-08-20 16:10:33'),(203,'“To bring forth sons and daughters brave” illustrates','paradox','zeugma','inversion','epigram','Proud mothers of the coming age,<br> \t\t‘Tis good to find you now engage<br> \t\tYour minds and time your lives to raise<br> \t\tAbove the level of bygone days<br> \t\t<br> \t\t‘Tis good to see you play your part<br> \t\tWith spirit and undaunted heart,<br> \t\tIt gives young Afric’s throbbing soul<br> \t\tA glimpse of a bright and glorious goal<br> \t\t<br> \t\tGod bless you, mothers of our race,<br> \t\tGod cause to shine on you His face;<br> \t\tAnd give you strength and all you crave<br> \t\tTo bring forth sons and daughters brave.','','c','','wassce','2015',114,'Admin','2016-12-12 05:41:50','2020-08-06 06:25:46'),(204,'The speaker is','Gonzalo','Antonio','Prospero','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',121,'Admin','2016-12-12 05:41:50','2020-08-13 12:53:33'),(205,'The addressee is','Ariel','Ferdinand','Caliban','Miranda','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',89,'Admin','2016-12-12 05:41:50','2020-08-20 11:08:24'),(206,'The “impostor” is','Sebastian','Antonio','Ferdinand','Alonso','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','c','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-08-07 08:03:09'),(207,'The “advocate” and the “impostor” are','conspirators','enemies','suspicious of each other','attracted to each other','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','d','','wassce','2015',102,'Admin','2016-12-12 05:41:50','2020-08-20 11:08:24'),(208,'The speaker’s utterance betrays his','anger','pretense','hatred','sorrow','\tWILLIAM SHAKESPEARE: The Tempest<br><br> \t\tSilence! One word more<br> \t\tShall make me chide thee, if not hate thee. What!<br> \t\tAn advocate for an impostor! Hush!<br> \t\t(Act I, Scene Two, lines 478 - 480)','','b','','wassce','2015',110,'Admin','2016-12-12 05:41:50','2020-08-20 11:08:24'),(209,'The speaker is','Gonzalo','Antonio','Sebastian','Alonso','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',132,'Admin','2016-12-12 05:41:50','2020-08-19 20:23:31'),(210,'“these words” refer to','the shipwreck','the son’s disappearance','the daughter’s wedding','Prospero’s magic','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','b','','wassce','2015',107,'Admin','2016-12-12 05:41:50','2020-08-20 16:10:33'),(211,'Where did the wedding take place?','Algiers','Milan','Tunis','Naples','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','c','','wassce','2015',128,'Admin','2016-12-12 05:41:50','2020-08-20 16:10:33'),(212,'The setting is','outside Prospero’s cell','on a ship','in front of Prospero’s cell','another part of the island','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',92,'Admin','2016-12-12 05:41:50','2020-08-06 06:25:46'),(213,'“.... in my rate” means','I’m very certain','so far as I can see','there’s no doubt','as it appears','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\tYou cram these words into mine ears against<br> \t\tThe stomach of my sense. Would l had never<br> \t\tMarried my daughter there! For, coming thence,<br> \t\tMy son is lost, and, in my rate, she too,<br> \t\t\t\t(Act II, Scene One, lines 99 - 102)<br>','','d','','wassce','2015',121,'Admin','2016-12-12 05:41:50','2020-08-07 08:03:09'),(214,'Ariel has ‘come’ because','he has been invited by Prospero','he wants to make a request','he desires a meeting','flying is no problem to him','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',103,'Admin','2016-12-12 05:41:50','2020-07-14 14:55:14'),(215,'Prospero has actually','raised a storm at sea','punished Miranda','dismissed Fedinand','commanded Ariel to disappear','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','a','','wassce','2015',120,'Admin','2016-12-12 05:41:50','2020-08-20 16:10:33'),(216,'Before Ariel’s entry','Ferdinand has brought in some wood','Prospero has put Miranda to sleep','Caliban had been swearing at Prospero','Trinculo had discovered Caliban’s cloak','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',118,'Admin','2016-12-12 05:41:50','2020-08-19 20:23:31'),(217,'‘Ariel and all his quality’ mean Ariel and','all at his command','the quality of a spirit','his band of spirits','an ability to cause mischief','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','d','','wassce','2015',125,'Admin','2016-12-12 05:41:50','2020-08-19 14:37:40'),(218,'Soon after, Ariel','files off to do his duty','recounts the confusion on board the ship','kneels down to worship Prospero','calls Ceres and another spirit','WILLIAM SHAKESPEARE: The Tempest<br><br>  \t\tAriel:\tAll hail, great master! Grave sir, hail! I come<br> \t\t\tTo answer thy best pleasure; be’t to fly, <br> \t\t\tTo swim, to dive into the fire, to ride<br> \t\t\tOn the curled clouds, to thy strong bidding task<br> \t\t\tAriel and all his quality. <br> \t\t\t(Act I, Scene  Two, lines 189 - 193)\t','','b','','wassce','2015',118,'Admin','2016-12-12 05:41:50','2020-08-19 20:23:31'),(219,'X and Y are','Antonio and Alonso','Sebastian and Alonso','Antonio and Gonzalo','Sebastian and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','a','','wassce','2015',119,'Admin','2016-12-12 05:41:51','2020-08-19 14:37:40'),(220,'“We two” are','Antonio and Adrian','Sebastian and Adrian','Sebastian and Francisco','Antonio and Sebastian','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',153,'Admin','2016-12-12 05:41:51','2020-08-15 23:19:25'),(221,'The situation in the extract is highly','satirical','prophetic','ironical','comical','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','c','','wassce','2015',117,'Admin','2016-12-12 05:41:51','2020-08-20 11:08:24'),(222,'What has happened to all the other characters in the scene?','They have been made deaf and dumb','Ariel has put them all to sleep','They have been sent away','Prospero has put them to sleep','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','b','','wassce','2015',117,'Admin','2016-12-12 05:41:51','2020-08-19 14:37:40'),(223,'The “two” later plot to','kill all the other characters','escape from the island','kill Prospero and Miranda','kill Alonso and Gonzalo','WILLIAM SHAKESPEARE: The Tempest<br><br> \t\t<strong>X:</strong> We two, my lord,<br> \t\t\tWill guard your person while you take your rest, <br> \t\t\tAnd watch your safety. <br> \t\t\t<br> \t\t<strong>Y:</strong> Thank you. - Wondrous heavy. <br> \t\t\t(Act II, Scene One, lines 184 - 187)','','d','','wassce','2015',127,'Admin','2016-12-12 05:41:51','2020-08-19 20:23:31'),(224,'‘I simply don’t understand what the matter with everybody is today. Everybody let me down, and ...’ The speaker above is referring to','Fosuwa and Maidservant','Hannah and George','Aaron and Maanan','Lawyer B and Mrs B','Based on J.C. De Graft’s  \tSons and Daughter. ','','b','','utme','2010',172,'Admin','2016-12-12 07:52:46','2020-08-20 11:08:24'),(225,'Maanan expresses dislike for Lawyer B because of','his condemnation of  her choice career','his recent advances towards her','the betrayal of her father’s trust','the betrayal of his wife’s trust','Based on J.C. De Graft’s  \tSons and Daughter. ','','c','','utme','2010',164,'Admin','2016-12-12 07:52:47','2020-08-20 16:10:33'),(226,'The traditional order in the play is represented by','Mrs. B','Hannah','Maanan','Aunt','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',163,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(227,'Where does the play take place?','On the street','In George’s place','In Aunt’s house','In Ofosu’s place','Based on J.C. De Graft’s  \tSons and Daughter. ','','d','','utme','2010',173,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(228,'‘O’ deadly sin! O rude unthankfulness! Thy fault our law calls death, but the kind Prince, Taking thy \t\tpart, hath rushed aside the law and turned that black word.....’ Deadly sin refers to the','suicide of Juliet','suicide of  Romeo','murder of  Paris','murder of  Tybalt','Based on William Shakespeare’s  \tRomeo and Juliet.','','d','','utme','2010',155,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(229,'The play is mostly written in','blank verse','free verse','metres','foot','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',137,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(230,'‘O” serpent heart, hid with a flowering face!’ The statement refers to','Juliet','Romeo','Tybalt','Benvolio','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',164,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(231,'The spatial setting of the play is','Athens','Verona','Padua','Venice','Based on William Shakespeare’s  \tRomeo and Juliet.','','b','','utme','2010',159,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(232,'Romeo is banished to Mantua because he','kills Tybalt in a street duel','marries Juliet without parental consent','attends Capulet’s party uninvited','attempts to kill Paris his rival','Based on William Shakespeare’s  \tRomeo and Juliet.','','a','','utme','2010',194,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(233,'In the novel, the society puts high value on','egalitarianism','male ascendancy','procreation','gender equity','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',164,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(234,'The medicine man links the lump discovered on the head of Nnu Ego at birth, to the','possession of physical admirable qualities that makes her an epitome of perfection','wound inflicted on the slave woman buried with Agbadi’s wife','coming back of the Agunwa to the society to live again','ill-luck and tragic events attributed to a predestined fate.','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',169,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(235,'The constant companions of  Nnaife family are','togetherness and happiness','poverty and hunger','sickness and joblessness','disagreement and humiliation','Based on Buchi Emecheta’s  \tThe Joys of  Motherhood.','','b','','utme','2010',172,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(236,'The disagreement between Mvondo and Nticentres on the latter’s claim to have','Assisted Meka in getting the medal','eaten the entire entrails of a sheep','eaten more than his share of the food','been in a Whiteman’s office','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','a','','utme','2010',140,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(237,'In the novel, the colonialists treat the Africans with','kids gloves','disdain','indifference','honour','Based on Ferdina  and Oyono’s  \tThe Old Man and the Medal.','','b','','utme','2010',155,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(238,'The Ministry of Peace is concerned with making','instruments','weapons','wars','reconciliation','Based on George Orwell’s  \tNineteen Eighty-Four.','','d','','utme','2010',160,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(239,'The subject matter of the novel is','Totalitarian dictatorship','exploitation and cruelty','retributive justice','class segregation','Based on George Orwell’s  \tNineteen Eighty-Four.','','a','','utme','2010',164,'Admin','2016-12-12 07:52:47','2020-08-20 16:10:33'),(240,'How did Winston start his rebellion against the state?','By engaging in anti-party activities','By keeping a private diary','When he started a secret affair','When he spied on the party','Based on George Orwell’s  \tNineteen Eighty-Four.','','b','','utme','2010',163,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(241,'The party seeks power for','the nation','its own sake','its members','peoples’ sake','','','b','','utme','2010',164,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(242,'A play which mainly aims at provoking excessive laughter is \tcalled','a tragi-comedy','comedy','a farce','satire','','','c','','utme','2010',152,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(243,'Both comedy and tragedy have','happy ending','climax','tragic hero','stanza','','','b','','utme','2010',175,'Admin','2016-12-12 07:52:47','2020-08-20 16:10:33'),(244,'A formal dignified speech or writing praising a person or a thing for past or present deeds is','premiere','eulogy','anthology','lampoon','','','b','','utme','2010',173,'Admin','2016-12-12 07:52:47','2020-08-20 16:10:33'),(245,'The narrative style in which the hero tells his own story directly is the','objective','subjective','first-person','third-person','','','c','','utme','2010',168,'Admin','2016-12-12 07:52:47','2020-08-20 16:10:33'),(246,'The physical, historical or cultural background of a literary work is referred to as','episode','plot','time','setting','','','d','','utme','2010',165,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(247,'A plot structure that defies chronology can be described as','open-ended','circular','episodic','organic','','','c','','utme','2010',172,'Admin','2016-12-12 07:52:47','2020-08-20 10:09:07'),(248,'Pun as a literary device deals with','placing two opposite phrase','placing words side by side','playing on words','arrangement of words','','','c','','utme','2010',156,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(249,'In a narrative poem, the poet attempts to','summarize a story','describe a place','preach a sermon','tell a story','','','d','','utme','2010',172,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(250,'The account of experiences of an individual during the course \tof a journey is known as','a travelogue','an autobiography','a catalogue','a memoir','','','a','','utme','2010',159,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(251,'Satirical writing employs','epigram','synecdoche','irony','onomatopoeia','','','c','','utme','2010',168,'Admin','2016-12-12 07:52:48','2020-08-20 16:10:33'),(252,'The person being addressed above is a','soldier','student','domestic servant','lawyer','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','c','','utme','2010',149,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(253,'From the tone of the speech above, the speaker is obviously','enraged','lackadaisical','elated','happy','‘Basha: You dumb skull of a bone head.... you will face court martial for this. You look everywhere? You search inside toilet bowl? ( Wole Soyinka: King Baabu)','','a','','utme','2010',169,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(254,'The mood conveyed in the excerpt above is one of','sadness','frustration','sympathy','dilemma','‘That year the harvest was sad, like a funeral, and many farmers wept as they dug up the miserable yams. One man tied his cloth to a tree branch and hanged himself.’ (Chinua Achebe: Things Fall Apart)','','a','','utme','2010',171,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(255,'The rhyme scheme in the excerpt above is','bbaa','aabb','abab','abba','That age is best which is the first,<br> \tWhen youth and blood are warmer, <br> \tBut being spent, the worse, and worst <br> \tTime still succeed the former. ','','c','','utme','2010',173,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(256,'The subject matter of the extract above is','Storm','sea waves','house movement','earthquake','But the towering earth was tired sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of a million years was lost\t','','d','','utme','2010',147,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(257,'From the poem above, shadow means','famine','bleak future','period of sufferings','abstract ideas','And your laughter like a flame<br>\t \tPiercing the shadows<br> \tHas revealed Africa to me beyond<br> \tThe snow of yesterday<br>','','c','','utme','2010',181,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(258,'The speaker in the excerpt above is','hopeless','uncertain','afraid','confident','Don’t panic. Be calm. If you are somehow upset.... try to regain your exposure.','','c','','utme','2010',170,'Admin','2016-12-12 07:52:48','2020-08-20 16:10:33'),(259,'The poem can be described as','a lyric','an epic','a sonnet','an elegy','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',178,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(260,'The theme of the poem is','futility of  life','distortion of  life','creation of  life','vanity of  life','Move him into the sun,<br> \tGently its touch awoke him once, ,<br> \tAt home, whispering of  fields unsown,<br> \tAlways it woke him even in France,<br> \tUntil this morning and this snow,<br> \tIf anything might rouse him now ,<br> \tThis kind old sun will know,<br> \tThink how it wakes the seeds,<br> \tWoke, once, the clays of a cold star,<br> \tAre limbs, so dear achieved, are,<br> \tsides Full nerved still warm too hard ,<br> \tto stir Was it, for this the clay grew,<br> \ttall? O what made fatuous sunbeams ,<br> \ttoil To break earth’s sleep at all. ,<br>','','c','','utme','2010',142,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(261,'The rhyme scheme of the stanza above is','aabb','abab','bbaa','abba','A cursing rogue with a merry farce,<br>  \tA bundle of rags upon a crutch, ,<br> \tStumbled upon that windy place,<br> \tCalled cruachan, and it was as much.\t','','b','','utme','2010',156,'Admin','2016-12-12 07:52:48','2020-08-20 10:09:07'),(262,'In the play, Fasuwa represents the','new culture','patriarchy','old order','African civilization.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',138,'Admin','2016-12-12 10:46:52','2020-07-22 22:14:20'),(263,'The play opens with a conversation between Aaron and Awere about','Aaron’s choice of course','Maanan’s encounter with the lawyer','George and Kofi','Hannah and George.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',122,'Admin','2016-12-12 10:46:52','2020-08-20 11:08:24'),(264,'‘I still think you can do something about it... persuade him; make him see how frustrating the whole business is bound to be for you.’  <em>The whole business in the excerpt above refers to </em>','marriage proposal','career choice','business contract','political transition.','Based on J.C. De Graft’s Sons and  \tDaughters.','','b','','utme','2008',129,'Admin','2016-12-12 10:46:52','2020-08-19 20:23:31'),(265,'The central conflict in the play is','religious','romantic','generational','communal.','Based on J.C. De Graft’s Sons and  \tDaughters.','','c','','utme','2008',134,'Admin','2016-12-12 10:46:52','2020-08-20 11:08:24'),(266,'The change in fortune is achieved in the play when','James agrees that Aaron and Maanan should study what they want','Lawyer B harasses Maanan in his office','Haanah, James’ wife convinces him','Aaron and Maanan agree to read the courses James chooses for them.','Based on J.C. De Graft’s Sons and  \tDaughters.','','a','','utme','2008',152,'Admin','2016-12-12 10:46:52','2020-08-13 13:04:14'),(267,'‘l will be brief, for my short date of breath Is not so long as is a tedious tale.’ The statement above is in reference to the speaker’s','retirement','imminent death','state of health','short-tempered nature.','Based on William Shakespeare’s Romeo and Juliet.','','b','','utme','2008',142,'Admin','2016-12-12 10:46:53','2020-08-10 21:23:13'),(268,'Romeo’s death becomes inevitable because','Friar Lawrence’s letter is not delivered','Juliet is married to Paris','Romeo kills Tybalt in a duel','Juliet has committed suicide.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',142,'Admin','2016-12-12 10:46:53','2020-08-07 14:45:18'),(269,'The multiple deaths in the play serve as a punishment for','imposing life partner on Children','treating others with hatred','disobeying one’s own parents','shedding kinsmen’s blood.','Based on William Shakespeare’s Romeo and Juliet.','','a','','utme','2008',135,'Admin','2016-12-12 10:46:53','2020-08-19 20:23:31'),(270,'The major reason for Juliet’s grief is','the death of her cousin','her reluctant marriage to the County','the banishment of her lover','her imminent death.','Based on William Shakespeare’s Romeo and Juliet.','','c','','utme','2008',129,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:28'),(271,'The chorus in the prologue of the play is essentially meant to','foreshadow the play','highlight the characters','estimate the actions','introduce the play.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',134,'Admin','2016-12-12 10:46:53','2020-08-20 11:08:24'),(272,'In the novel, Big Brother metaphorizes a','totalitarian authority','benevolent leader','revolutionary leader.','party brotherhood.','Based on George Orwell’s Nineteen  \tEighty-Four.','','a','','utme','2008',115,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:27'),(273,'In the novel, Orwell attempts to','satirize the artificiality of a machine ‘controlled society','eulogize the beauty of the socialist system','condemn the disgusting hypocrisy of all communist    \t systems','laud the boundless possibilities of the human intellect.','Based on George Orwell’s Nineteen  \tEighty-Four.','','c','','utme','2008',125,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:08'),(274,'Winston Smith begins his rebellion against the power of the state by','purchasing arms','keeping a private diary','opposing the law','educating the youth.','Based on George Orwell’s Nineteen  \tEighty-Four.','','b','','utme','2008',106,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:27'),(275,'The Ministry of Truth is concerned with','news, entertainment, education and fine arts','propaganda, war, publishing and enlightenment','investigation, propaganda and fine arts','economic affairs, education and propaganda.','Based on George Orwell’s Nineteen  \tEighty-Four.','','d','','utme','2008',147,'Admin','2016-12-12 10:46:53','2020-08-19 20:23:31'),(276,'The events following the ceremony confirm Meka’s','disillusion with the whites','satisfaction with the medal','contribution to the colonialists','admiration for the church.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','a','','utme','2008',137,'Admin','2016-12-12 10:46:53','2020-07-22 22:12:40'),(277,'“ ‘ By my mother!’ said Engamba. The night rat doesn’t tell what happened to him in the dark! Men are born and die...”  In the statement above, The night rat doesn’t tell what happened to him in the dark! refers to','the Whiteman’s treatment of Meka','Meka’s treatment of the medal in the whitewashed circle','people’s unwillingness to talk about how Whiteman treat them','people’s freedom of expression.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',170,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:27'),(278,'In the novel, the expression  <em>fobreak the leg of an antelope</em> means','hunting','marriage','fighting','honeymoon.','Based on Ferdinand Oyono’s The Old Man and the Medal.','','c','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-08-13 06:17:03'),(279,'Ona has to leave her father’s house because','of her love for Agbadi','that is the tradition','her father is dead','of the safety of her child.','Based on Buchi Emecheta’s The Joys of Motherhood.','','a','','utme','2008',131,'Admin','2016-12-12 10:46:53','2020-08-19 20:23:31'),(280,'Nnaife’s conscription into the army is portrayed as part of','family conflict','British oppression','family tradition','societal intrigue.','Based on Buchi Emecheta’s The Joys of Motherhood.','','d','','utme','2008',120,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:30'),(281,'The attitude of Nnu Ego when she was told that her Chi would not give her a child is one of','indifference','despair','apathy','hope.','Based on Buchi Emecheta’s The Joys of Motherhood.','','b','','utme','2008',132,'Admin','2016-12-12 10:46:53','2020-08-19 15:02:53'),(282,'The subject matter of Adeoti’s Naked Soles is','soul and mind','hunger and strife','suffering and despair','hatred and bitterness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',128,'Admin','2016-12-12 10:46:53','2020-08-19 14:37:40'),(283,'Rubadiri’s <em>An African Thunderstorm</em> appeals to the readers’ sense of','sight and taste','feeling and sight','smell, taste and hearing','sight, smell and hearing.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','b','','utme','2008',130,'Admin','2016-12-12 10:46:53','2020-08-19 20:23:31'),(284,'‘The experts, of course Disagree. The urine test they ordered Said, Negative.’ The lines above from Acqah’s “In the Navel of the Soul” depict','contradiction','inevitability','progress','awareness.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','a','','utme','2008',122,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:26'),(285,'In Kunene’s ‘A Heritage of Liberation,’ freedom is to be achieved through the efforts of','the old generation','new generation','present generation','successive generations.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',139,'Admin','2016-12-12 10:46:53','2020-08-20 16:10:33'),(286,'Launko’s ‘End of the’ War suggests that war brings about','ultimate solution to all problems','partial solution to problems','multifaceted problems','only temporary relief.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-08-15 01:01:26'),(287,'The persona in the poem <em>Give Me The Minstrel’s Seat</em> discourages','togetherness','hatred','isolation','poverty.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',133,'Admin','2016-12-12 10:46:53','2020-07-14 14:58:46'),(288,'Marvel’s To ‘His Coy Mistress’ is written mainly in','alternate rhymes','blank verse','heroic couplets','middle rhymes.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',130,'Admin','2016-12-12 10:46:53','2020-08-19 15:03:06'),(289,'The attitude of the poet-persona to bats, in Lawrence’s Baf is one of','satisfaction','reverence','hatred','repulsion.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',150,'Admin','2016-12-12 10:46:53','2020-08-20 11:08:24'),(290,'The language used, in Eliot’s ‘The Journey of the’ Magi is generally','difficult','complex','simple','complicated.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','c','','utme','2008',154,'Admin','2016-12-12 10:46:53','2020-08-19 15:02:53'),(291,'In Cope’s <em>Sonnet VII</em>, poetry is','a popular act','a boring act','an idle hobby','a useless undertaking.','Based on selected poems from Johnson, \tR. et al (eds.): New Poetry from Africa; Soyirvka, W. (ed.): Poems of Black Africa; Senanu, K.E. and Vincent, T. (eds.): A Selection of African Poetry; Maduka, C.T. et al: Exam Focus: Literature in English; Eruvbetine, A. E. et al (eds.): Longman Examination Guides; Nwoga, D. I. (ed.): West African Verse and Adeoti G.: Naked Soles.','','d','','utme','2008',138,'Admin','2016-12-12 10:46:53','2020-08-19 14:37:40'),(292,'An interlude is a brief','presentation in the interval of a dramatic performance','play before the main dramatic performance','presentation after the main dramatic performance','dialogue between two persons.','Based on General Literary Principles.','','a','','utme','2008',156,'Admin','2016-12-12 10:46:53','2020-08-19 14:37:40'),(293,'An epic is a heroic story which includes','ballad','lyric','myth','dialogue.','Based on General Literary Principles.','','c','','utme','2008',132,'Admin','2016-12-12 10:46:53','2020-08-06 06:25:46'),(294,'Farce can be described as a dramatic piece marked by','movement from serious to the light-hearted mood','comic and exaggerated actions','actions devoid of meaning','gloomy actions with momentary reliefs.','Based on General Literary Principles.','','b','','utme','2008',123,'Admin','2016-12-12 10:46:53','2020-08-19 15:03:06'),(295,'A long story narrating a series of complicated events is called a','saga .','discourse','monologue','harangue.','Based on General Literary Principles.','','d','','utme','2008',137,'Admin','2016-12-12 10:46:53','2020-08-20 11:08:24'),(296,'Oxymoron is the use of two contrasting words that are','placed far apart','different in meaning','placed side by side','similar in meaning.','Based on General Literary Principles.','','c','','utme','2008',124,'Admin','2016-12-12 10:46:54','2020-08-19 20:23:31'),(297,'A line or a group of lines repeated in the course of a poem is called','chorus','refrain','repetition','prologue.','Based on General Literary Principles.','','b','','utme','2008',108,'Admin','2016-12-12 10:46:54','2020-08-07 14:45:18'),(298,'Limerick is a light verse which consists of five lines that are','anapestic','trochaic','spondaic','dactylic.','Based on General Literary Principles.','','d','','utme','2008',121,'Admin','2016-12-12 10:46:54','2020-08-20 11:08:24'),(299,'A short narrative or lyrical poem intended to be sung is a','leich','lay','lauda','letrilla.','Based on General Literary Principles.','','a','','utme','2008',135,'Admin','2016-12-12 10:46:54','2020-08-07 14:45:18'),(300,'A figurative device in which a statement is made and then withdrawn is referred to as','metanoia','metaphysical','metalanguage','metalepsis.','Based on General Literary Principles.','','d','','utme','2008',133,'Admin','2016-12-12 10:46:54','2020-08-09 10:41:12'),(301,'A literary work which imitates another in a distorted form is called','exodium','isocohen','metonymy','burlesque.','Based on General Literary Principles.','','d','','utme','2008',125,'Admin','2016-12-12 10:46:54','2020-08-06 06:25:46'),(302,'‘You do not have to be brutal to be a soldier, or rather you are brutal not because you are a soldier, but because there is a sadist, a rapist, a fascist and a murderer in you who is waiting for war and army uniforms to give them expression.’ ( Festus lyayi: Heroes ) The speaker here contends that','soldiers are generally wicked','human nature has to do with a profession','soldiers are characteristically gentle','the latent brutality in man finds expression in war.','based on Literary Appreciation.','','b','','utme','2008',159,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:27'),(303,'‘But the towering earth was tired of sitting in one position. She moved, suddenly, and the houses crumbled, the mountains heaved horribly, and the work of million years was lost.’ The subject matter of the passage is','earthquake','Demolition','flood','storm.','based on Literary Appreciation.','','a','','utme','2008',129,'Admin','2016-12-12 10:46:54','2020-08-15 01:01:26'),(304,'The image depicted is one of','destruction','dejection','happiness','admiration.','based on Literary Appreciation.','','a','','utme','2008',123,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:28'),(305,'The tone of the poem above is','satiric','affectionate','indifferent','sympathetic.','based on Literary Appreciation.','','b','','utme','2008',137,'Admin','2016-12-12 10:46:54','2020-08-19 15:02:54'),(306,'Life, though a vanity Yet, not purposeful In drawling<br> resignation Life’s spice is in strive<br> From the extract above, the poet suggests that','life is full of care','there can’t be life without strive','life is worthwhile without care','strive makes life worth living.','based on Literary Appreciation.','','b','','utme','2008',122,'Admin','2016-12-12 10:46:54','2020-08-19 20:23:31'),(307,'The subject of the poem above is','a prostitute','the lying father','the son','the orphan.','based on Literary Appreciation.','','c','','utme','2008',114,'Admin','2016-12-12 10:46:54','2020-07-14 14:59:36'),(308,'The dominant rhetorical device in the excerpt above is','rhyme','alliteration','repetition','onomatopoeia.','based on Literary Appreciation.','','b','','utme','2008',153,'Admin','2016-12-12 10:46:54','2020-08-19 15:03:06'),(309,'The expression “The child is the father of the man” in the poem above is an example of','paradox','metaphor','simile','ellipsis','based on Literary Appreciation.','','a','','utme','2008',173,'Admin','2016-12-12 10:46:54','2020-08-19 20:23:31'),(310,'The technique employed in narrating the excerpt above is','flashback','stream of consciousness','foreshadowing','play-within-the-play.','based on Literary Appreciation.','','b','','utme','2008',144,'Admin','2016-12-12 10:46:54','2020-08-20 16:10:33'),(311,'The poet’s tone above can be described as','lamentative','satiric','imploring','adoring.','based on Literary Appreciation.','','a','','utme','2008',146,'Admin','2016-12-12 10:46:54','2020-08-19 15:02:53'),(312,'In the play, the character of Lawyer B is represented through the use of','flashback','dialogue','play-within-the-play','irony','','','d','','utme','2009',125,'Admin','2016-12-12 17:55:00','2020-08-15 01:01:26'),(313,'James Ofosu’s desire is to see Maanan trained as','a choreographer','an attorney','an accountant','a surgeon','','','b','','utme','2009',141,'Admin','2016-12-12 17:55:00','2020-08-20 16:10:33'),(314,'The plot of the play is,','linear','cyclical','complicated','episodic','','','d','','utme','2009',142,'Admin','2016-12-12 17:55:01','2020-08-19 15:02:53'),(315,'What causes the strained relationship between James and Lawyer B?','Betrayal of trust','Standard of education','Working experience','Family differences','','','a','','utme','2009',159,'Admin','2016-12-12 17:55:01','2020-08-20 11:08:24'),(316,'‘Now look what we have: a permanent bloom of ugly paper flowers! The device used by Aaron in the excerpt above is','suspense','rhetorical question','oxymoron','allegory','','','c','','utme','2009',142,'Admin','2016-12-12 17:55:01','2020-08-15 14:21:23'),(317,'When Friar Lawrence asks if the bride is ready, he wants to know if','Juliet is prepared','Rosaline is prepared','the corpse is ready','the bride is dressed','based on William Shake¬speare’s  \tRomeo and Juliet.','','c','','utme','2009',129,'Admin','2016-12-12 17:55:01','2020-08-13 12:53:33'),(318,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nWhat makes Juliet’s night so tedious is the','murder of Tybalt by Romeo','arranged marriage between her and Paris','Eagerness’ to be married to Romeo','unconsummated marriage with Romeo','based on William Shake¬speare’s  \tRomeo and Juliet.','','d','','utme','2009',120,'Admin','2016-12-12 17:55:01','2020-07-25 14:33:42'),(319,'‘...So tedious is this day<br>\\n\tAs is the night before some festival<br>\\n\tTo an impatient child that hath new robes<br>\\n\tAnd may not wear them.’<br>\\nThe literary device used in the excerpt is','euphemism','simile','sarcasm','bathos','based on William Shake¬speare’s  \tRomeo and Juliet.','','b','','utme','2009',134,'Admin','2016-12-12 17:55:01','2020-08-15 23:19:25'),(320,'The atmosphere of tragedy in the play is created through the use of','dreams and foreboding','fights and quarrels','wars and hatred','ideas and dramatization','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',135,'Admin','2016-12-12 17:55:01','2020-08-15 14:21:23'),(321,'Shakespeare depicts love and idealism through the','party at tire Capulets’','lovers’ tomb at the end','brawl between Romeo and Tybalt','balcony scene in the second Act.','based on William Shake¬speare’s  \tRomeo and Juliet.','','a','','utme','2009',135,'Admin','2016-12-12 17:55:01','2020-08-19 20:23:31'),(322,'In the novel, the party approves separation of couples only','on condition of infidelity','where there are no children','in situation of irreconcilable differences','on the death of one of the couples','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',157,'Admin','2016-12-12 17:55:01','2020-08-19 15:02:54'),(323,'One of the themes of the novel is','colonialism','repression','senility','destruction','based on George Orwell’s  \tNineteen Eighty-Four','','b','','utme','2009',143,'Admin','2016-12-12 17:55:01','2020-08-15 14:21:23'),(324,'Newspeak, the official language of Oceania, is devised to','meet the ideological needs of Ingsoc','help devoted party men and women','provide a medium of expression for world-view only','assist by cutting the choice of words for party members.','based on George Orwell’s  \tNineteen Eighty-Four','','c','','utme','2009',142,'Admin','2016-12-12 17:55:01','2020-08-19 20:23:31'),(325,'The main concern of Winston in the novel is to','take power for himself','acquire wealth','overthrow the party','bring social change','based on George Orwell’s  \tNineteen Eighty-Four','','d','','utme','2009',118,'Admin','2016-12-12 17:55:01','2020-08-15 01:01:26'),(326,'“We are hereto die of raget !say die of rage because this time the uncircumcised have gone too far...” The word uncircumcised in the statement above by Nli refers to','Nua and Mvondo','the whites','the people of Doum','the white farmers.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','b','','utme','2009',126,'Admin','2016-12-12 17:55:01','2020-08-20 11:08:24'),(327,'The only two sons of Meka die fighting for','independence','the colonialists','the church','the in people.','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',134,'Admin','2016-12-12 17:55:01','2020-08-20 16:10:33'),(328,'In the novel; Africanness is .achieved in both','setting and characterization','narration and style','diction and syntax','pun and style','based on Ferdinand Oyono’s,  \tThe Old Man and the Medal.','','a','','utme','2009',120,'Admin','2016-12-12 17:55:01','2020-08-19 14:37:40'),(329,'What prompts Nnu Ego to run to the effigy of her chi is that ...','she is worried and sick','she is pregnant','the chi asks her to come','milk is dripping from her breasts.','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','d','','utme','2009',141,'Admin','2016-12-12 17:55:02','2020-08-20 11:08:24'),(330,'In the society of Nwokocha Agbadi, a man’s social rating determined by his','oratorical power','physical prowess','gentle men','altruistic actions','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',147,'Admin','2016-12-12 17:55:02','2020-08-19 15:02:54'),(331,'‘look at me jubilant for being given another opportunity to \tlive longer, and see this foolish woman eager to end her own life when her Maker is not yet ready for her...’The opportunity referred to in the extract above is','the misunderstanding between Nnaife and his wife','narrowly escaping being knocked down','the driver’s encounter with Nnu Ego','ominous visit of Agunwa','based on Buchi Emecheta’s  \tThe Joys of Motherhood','','b','','utme','2009',138,'Admin','2016-12-12 17:55:02','2020-08-19 20:23:31'),(332,'Thorn in “Adeoti’sNaked Soles” symbolizes','victory','bleakness','destruction','suffering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',120,'Admin','2016-12-12 17:55:02','2020-08-20 16:10:33'),(333,'‘Pregnant clouds Ride Safely on its back’ Pregnant clouds in Rubadiri’s “An AfricanThunderstorm implies”','uncertainty','calmness','disbelief','fertility','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',142,'Admin','2016-12-12 17:55:02','2020-08-19 15:03:06'),(334,'The phrase the sunset in Kunene’s “A Heritage of Liberation” refers to','critical need','old age','patience','caution','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',149,'Admin','2016-12-12 17:55:02','2020-08-15 23:19:25'),(335,'‘The silence of the battlefield heralds the widow’s anguish’ The widow in the lines above in Launko’s “Endof the War” is in anguish because of the','confirmation of her husband’s death','uncertainty over her husband returning alive','delay in the husband’s return from the battlefield','death of all the soldiers in the battlefield','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',127,'Admin','2016-12-12 17:55:02','2020-08-13 12:53:33'),(336,'The end of “Give Me The Minstrel’s Seat”, seems to suggest that one needs the','support of others','complete command of one’s wives','support of one’s kinsmen','aid of poets','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit-erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',136,'Admin','2016-12-12 17:55:02','2020-08-20 16:10:33'),(337,'According to “Give Me The Minstrels Seat”, a woman is','a necessary evil','only fulfilled when married','naturally jealous','a harbinger of good luck','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','b','','utme','2009',132,'Admin','2016-12-12 17:55:02','2020-08-10 21:23:13'),(338,'In Marvel’s “To His Coy Mistress”, the poet-persona tries to','Build up the climax of expectation of women','discuss how a woman labour hard','meet the people’s expectation in a religious adventure','discuss the nature of man and the value of time.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','d','','utme','2009',118,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(339,'In Lawrence’s Bat, the poet’s attitude to bat is one of','fear','sarcasm','contempt','flattering','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','c','','utme','2009',125,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:42'),(340,'The first stariza of Eliot’s “The Journey of the Magi” depict the','hazards of the journey','increment of fortune for the pilgrims','blind acceptance of faith','journey as an influential factor.','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',138,'Admin','2016-12-12 17:55:02','2020-08-20 16:10:33'),(341,'In cope’s “Sonnet VII”, poets are presented; as','recluses','travelers','sociologists','searchers','based on selected poems from Ker, D. et al (eds.) New poetry from Africa; Soyinka W. (ed.): Poems of Black Africa: Senanu, K E and Vincent, T. (eds.): A Selection of African poetry; Umukoro, M et al (eels.): Exam Focus: Lit¬erature in English; Eruvbetine, A. E. et al (eds.): Longman Examination guides; Nwoga, D.I (ed.): West African Verse andAdeoti G: Naked Soles.','','a','','utme','2009',143,'Admin','2016-12-12 17:55:02','2020-07-25 14:33:41'),(342,'A poetic devices in which an idea in a line runs into another is called','rhyme scheme','enjambment','end rhyme','pathos','based on General Literary Principles.','','b','','utme','2009',144,'Admin','2016-12-12 17:55:02','2020-08-20 16:10:33'),(343,'The use of sound pattern to suggest meaning in poetry is','rhythm','mimics','lyric','metonymy','based on General Literary Principles.','','a','','utme','2009',143,'Admin','2016-12-12 17:55:02','2020-08-15 01:01:27'),(344,'A conscious imitation of a literary work by another with the aim of ridicule is','mimesis','performance','mockery','parody','based on General Literary Principles.','','d','','utme','2009',135,'Admin','2016-12-12 17:55:02','2020-08-19 15:03:06'),(345,'The use of gestures to communicate in drama is known as','burlesque','soliloquy','mime','melodrama','based on General Literary Principles.','','c','','utme','2009',140,'Admin','2016-12-12 17:55:03','2020-08-13 13:04:14'),(346,'A short and witty remark is','a limerick','a tercel','an epigram','a litotes','based on General Literary Principles.','','c','','utme','2009',128,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:42'),(347,'An expression that signifies a whole through its significant parts is','synesthesia','synecdoche','metonymy','allegory','based on General Literary Principles.','','b','','utme','2009',128,'Admin','2016-12-12 17:55:03','2020-08-19 14:37:40'),(348,'a structural arrangement of units of composition by which one element of equal importance with another is similarly placed is called','repetition','paradox','refrain','parallelism','based on General Literary Principles.','','d','','utme','2009',131,'Admin','2016-12-12 17:55:03','2020-08-07 14:45:18'),(349,'The pride that contributes to the fall of a tragic character in a play is known as','hamartia','catharsis','hubris','epistasis','based on General Literary Principles.','','a','','utme','2009',149,'Admin','2016-12-12 17:55:03','2020-08-15 01:01:26'),(350,'metrical foot of two stressed or long syllables is called','a spondee','a trochee','an anapest','an iamb','based on General Literary Principles.','','a','','utme','2009',140,'Admin','2016-12-12 17:55:03','2020-08-13 12:53:29'),(351,'A group of three lyric stanzas in classical Greek poetry is referred to as','triplet','triolet','trilogy.','triad','based on General Literary Principles.','','b','','utme','2009',137,'Admin','2016-12-12 17:55:03','2020-08-19 15:02:54'),(352,'Biokun:  I did it for her! Let them laugh!<br>\\n\t\t\t\tLet them condemn me. I who have always <br>\t\\n\t\t\t\tderided superstition. I have gone bach to the <br>\\n\t\t\t\tshrine of Olokun. At least if he dies, Oroki <br>\\n\t\t\t\twill know I tried everything. <br>\\n\t\t\t\t(Femi I Qsofisan: No More the Wasted Breed)<br>\\nBiokun’s mood in this passage is one of','desperation','frustration','anger','anxiety','based on Literary Appreciation','','b','','utme','2009',147,'Admin','2016-12-12 17:55:03','2020-08-20 11:08:24'),(353,'\t‘My song is the root<br>\\n\ttouching other roots <br>\\n\tin a covenant below the crust..’<br>\\n\t(Niyi  Osundare: Waiting Laughters)<br>\\n\\nThe imagery used in the second line of the extract above is','olfactory','visual','tactile','auditory','based on Literary Appreciation','','c','','utme','2009',123,'Admin','2016-12-12 17:55:03','2020-07-28 15:12:56'),(354,'‘The huge sacrifice that <br>\\n\twards off death <br>\\n\tThe big offering that <br>\\n\tprevents diseases....’ <br>\\n\t( Temi Osofison: Morountodun ) <br>\\nThe poem above can best be described as','epic','heroic','praise','quatrain','based on Literary Appreciation','','d','','utme','2009',144,'Admin','2016-12-12 17:55:03','2020-08-19 14:37:40'),(355,'Why blame her who denies love for the asking <br><br>\\n\tAnd not the Birds and Moths and Beetles <br>\\n\tThat after deep draughts from rich nectar wells <br>\\n\tFlee the drained petals to virgin flowers. <br>\\nThe lines above are an indictment of','adultery','gluttony','flirtation','infertility','based on Literary Appreciation','','b','','utme','2009',114,'Admin','2016-12-12 17:55:03','2020-07-26 20:56:08'),(356,'\tOh, the market is set like the hub of a wheel <br>\\n\tAnd it pulfs \tlike a magnet strong <br>\\n\tIt is easy to tell <br>\\n\tHow it casts its spell <br>\\n\tAnd draws all the crowds along. <br><br>\\nThe sound device used in the extract above is','rhyme','alliteration','emphasis','assonance','based on Literary Appreciation','','a','','utme','2009',140,'Admin','2016-12-12 17:55:03','2020-08-20 11:08:24'),(357,'A reference beyond the immediate purview of what is being presented is known as','allusion','diversion','inversion','imagery','based on Literary Appreciation','','a','','utme','2009',142,'Admin','2016-12-12 17:55:03','2020-07-25 14:33:41'),(358,'‘The how is her barber’ The line is an example','metaphor','hyperbole','personification','litotes','based on Literary Appreciation','','a','','utme','2009',141,'Admin','2016-12-12 17:55:04','2020-08-19 15:02:54'),(359,'‘From the sky suspended <br>\\n\tthe strings of tattered pants <br>\\n\tmarched on trembling feet <br>\\n\tunder stone heavy-kits <br>\\n\tmarched, on their breast <br>\\n\tscared, monogram of skulls and bones.’ <br>\\n\t( Ossie Enejwe: Mass for the Dead ) <br><br>\\n“The subject matter of the extract above is','wastage','war','love','hatred','based on Literary Appreciation','','b','','utme','2009',131,'Admin','2016-12-12 17:55:04','2020-08-20 11:08:24'),(360,'‘Tonderai was assisted by the villages in placing his truck box into the back for the car and he got into the passenger side of the truck. Initially, he was a bit nervous and clearly uncomfortable, his young mind was asking how someone whom, he had almost caused a serious accident could be his benefactor.’ ( Daniel T. Manyika: Two worlds Apart )\\n\\n<br><br>The narrative point of view used in the extract above can best be described as','omniscient','subjective','panoramic','scenic','based on Literary Appreciation','','a','','utme','2009',124,'Admin','2016-12-12 17:55:04','2020-08-19 20:23:31'),(361,'‘Me to the Orangery<br> \\n\tSolitude invites, <br>\\n\ta wagtail, to tell the<br>  \t\t\t\\n\ttangled-wood-tale.’ <br>\\n\t( Christopher Okigbo: Heavengate ) <br><br>\\nThe complexity of the poem can be ascribed to the poet’s use of','archaic diction','structural inversion','compound words','extended met','based on Literary Appreciation','','b','','utme','2009',178,'Admin','2016-12-12 17:55:04','2020-08-15 01:01:27');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `entertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `entertainment` VALUES (1,'What year was ?Africa Queen? music track released by Tu-face Idibia?','2001','2002','2003','2004','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track ?African Queen? came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D?Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D?Banj  first album released?','2002','2005','2001','2004','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `fashion` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `fashion` VALUES (1,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,' ?Ole ku? dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Nigeria won Miss World','2000','2001','2002','2003','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknowledge` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `section` varchar(10) COLLATE utf8_unicode_ci NOT NULL COMMENT 'used by zh round 3',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknowledge` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many planets do we have?','10','9','8','6','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,' What is the position of the Earth from the Sun?','1','2','3','4','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,' What year was Facebook created?','2001','2002','2003','2004','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'The first university in the world was?','Oxford','Al-Azhear of Cairo','Harvard','MIT','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,' What year did Nigeria became a republic?','1960','1965','1963','1914','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,' What year did Tsunami occur','2000','2004','2005','2006','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','b','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' When did World War 1 started','1918','1901','1914','1910','','a','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','c','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','d','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `generalknwbrag` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `generalknwbrag` VALUES (1,'What year was “Africa Queen” music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track “African Queen” came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo’ hit records','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D’Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D’Banj  first album released?','2002','2005','2001','2004','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'How many planets do we have?','10','9','8','6','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' What is the name of the largest planet?','Earth','Mars','Mercury','Jupital ','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' What is the name of the most beautiful plant in our solar system?','Earth','Mars','Saturn ','Jupital','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What is the position of the Earth from the Sun?','1','2','3','4','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What year was Facebook created?','2001','2002','2003','2004','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'The first university in the world was…','Oxford','Al-Azhear of Cairo','Harvard','MIT','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'Which country is the first democratic country to get independent?','Britain','America','Russia','Egypt','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria gain Independent?','1960','1965','1962','1914','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' What year did Nigeria became a republic?','1960','1965','1963','1914','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Which is the following county does not share board with Nigeria','Niger','Ghana','Chad','Cameroon','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which of  the following  has never being the Federal Capital of Nigeria?','Lagos','Abuja','Lokoja','Kano','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' What year did Tsunami occur','2000','2004','2005','2006','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Which country did the Tsunami affected?','England','India','Indonesia','Malaysia','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' Which of the following is not an Ocean?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Red ocean','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' Which Ocean is the largest in the world?','Pacific Ocean','Indian Ocean','Atlantic Ocean','Arctic ocean','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,' What percentage of the world is covered with Ocean?','91%','81%','71%','61%','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Which of the following is not in the dog family?','Foxes','Jackals','Hyena ','Wolves','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Which of the following is not in the Cat family?','Lion','Tiger','Hyena ','Jaguar','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,' Who gave the statue of Liberty to Americans?','Germany','France','United Kingdom','Russia  ','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'What year was the World Trade Centre in America attacked by terrorist?','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'  The world trade center that was destroy in America on September 11 terrorist attack is also called','Twin Building','Twin Skyscraper','Twin Tower','Twin Trade Center','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'What year was Hiroshima attacked with atomic bomb','1940','1945','1950','1942','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'Atomic bomb was first used on which country?','America','China','Japan','Germany','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' When did World War 1 started','1918','1901','1914','1910','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the minimum amount of water you should drink per day?','1 liter','2 liter','3 liter','4 liter','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,' How many days can humans survive without water?','1 day','2 days','3 days','4 days','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'How many days a humans stay without food','7 days','12 days','14 days','21 days','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' What is the name of Genevieve Label?','Genevieve Fashion','Saints  Genevieve','Genevieve designer',' St. Genevieve','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,' What year was St Genevieve fashion clothing line launched?','2006','2008','2010','2012','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,' What is the name of the famous Nigeria Cosmetic brand?','House of Tara','BMPRO','Zaron','Sleek','','','a','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(54,' Which hair attachment is the oldest in Nigeria?','Amigo','Amina','Expression','Brazilian hair','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(55,'When was the Most Beautiful Girl in Nigeria started?','1990','1983','1986','1980','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(56,' ‘Ole ku’ dressing style is associated with which tribe in Nigeria','Igbo','Hausa','Yoruba','Fulani','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(57,' Which of the following is not a top fashion designer in Nigeria?','Deola Sagoe','Zizi Cardow','Opeyemi Dora','Folake Folarin Coker','','','c','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(58,'What year did Nigeria won Miss World','2000','2001','2002','2003','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(59,'Who was the first black African woman to win Miss World?','Megan Young','Agbani Darego','Muda Jenifer','Numa  Ojezeerel','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(60,' What year was House of Tara cosmetics created?','2000','1998','2002','1996','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(61,'When was  Miss Universe  Nigeria started?','1990','1983','1986','1980','','','b','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(62,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','','','','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(63,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(64,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(65,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(66,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(67,'Who was the last successful Manchester United Coach?',' Sir Ali Ferguson.',' Alex Ferguson.',' Sir Alex Ferguson',' Sir Alex Fergson','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(68,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(69,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(70,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(71,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(72,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(73,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(74,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(75,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(76,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(77,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(78,'Which Nigeria football club won the Premiership title back –to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(79,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(80,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(81,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(82,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(83,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(84,'How many rings are in the Olympic colours?','6','5','4','3','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(85,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(86,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(87,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(88,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(89,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(90,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(91,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(92,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','','','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(93,'The current life expectancy in Nigeria is ','55','47','39','51','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(94,'Mr Dele Giwa was killed through a letter bomb on ','     October 19, 1986 ','September 17, 1987','10/19/1989','9/17/1986','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(95,'The following are spices except ','Rye ','Saffron ','Ginger ','Cloves ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(96,'Desmond Tutu was awarded the Nobel Peace Prize in ','1983','1987','2000','1984','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(97,'Victoria is the capital city of ','Somalia ','Morocco ','Seychelles ','Lesotho ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(98,'The Director-General of the Nigerian Institute of Advanced Legal Studies is ','Prof.  Dalhatu Musdapher ','Prof.  Pat Utomi ','Justice Nikki Tobi ','Prof.  Epiphany Azinge ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(99,'Centre of Unity is to Abuja as State of Hospitality is to ','Cross River ','Rivers ','Nassarawa ','Katsina','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(100,'The capital of Uruguay is ','Bangkok ','Montevideo','Bern ','Manila ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(101,'The Governor of Anambra State 2014 is  ','Mr. Peter Obi ','Owelle Rochas Okorocha ','Peter Odili ','Chris Ngige ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(102,'____ was the Chief Justice of Nigeria between 1995 and 2006 ','Justice Idris Lagbo Kutigi ','Justice Mohammad Lawal Uwais ','Justice George Sodeinde Sowemimo ','Justice Mohammed Bello ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(103,'The current Secretary-General of the United Nations is from ','United Kingdom ','South Africa ','South Korea ','Ukraine ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(104,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of English Football Associations ','Union of European Football Associations ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(105,'Nelson Mandela was awarded the Nobel Peace Prize in ','1993','1994','1995','1996','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(106,'Ibeno Beach is in  ','June 12 1993 ','June 14 1993 ','June 18 1993 ','June 23 1993 ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(107,'Gombe State belongs to the ____ geo-political zone in Nigeria ','North Central ','North East ','North West ','South West ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(108,'The full meaning of OECD is ','Order of the Economic Community and Development ','Organization for Economic Community and Development ','Organization for Economic Co-operation and Development ','Organization of Economic Co-operation and Development ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(109,'Paparada Square is in ','Ilorin ','Lokoja ','Kaduna ','Sokoto ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(110,'The former Eastern Region was proclaimed a sovereign nation, Biafra by Odumegu Ojukwu on ','5/30/1967','6/15/1966','1/10/1965','4/21/1969','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(111,'The Kruger National Park is in ','Tunisia ','Cameroon ','South Africa ','U.S. ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(112,'The official residence of the Secretary-General of the United Nations is in ','Washington D.C.','Atlanta Georgia, United States ','New York City, United States ','London ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(113,'Dar es Salaam is the capital of ','Zimbabwe ','Sudan ','Tunisia ','Tanzania ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(114,'Shanga and Kyenga are ethnic groups in ','Sokoto State ','Niger State ','Bauchi State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(115,'FESTAC started in ','10/1/1976','11/1/1977','11/1/1978','11/1/1978','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(116,'Which of these was never a Senate President in Nigeria? ','Chuba Okadigbo ','Pius Anyim ','Umaru Dikko ','Ameh Ebute ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(117,'The capital of Iran is  ','Iranian ','Dublin ','Teheran ','Baghdad ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(118,'The Executive Secretary of the National Universities Commission is ','Prof.  Dibu Ojerinde ','Prof.  Peter Okebukola ','Prof.  Julius Okojie ','Prof.  Jubril Aminu ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(119,'The United Nations Charter was formed on ','6/26/1945','2/1/1946','10/24/1945','3/15/1943','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(120,'Abayon, Adim and Adun are ethnic groups in  ','Adamawa Stat ','Rivers State ','Bauchi State ','Cross River State ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(121,'Barack Obama was awarded the Nobel Peace Prize in ','2003','2000','2009','2007','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(122,'The capital of Greece is  ','Greek ','Athens ','Rome ','Jerusalem ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(123,'Assop Falls can be found in ','Plateau State ','Kano State ','Taraba State ','Niger State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(124,'The Secretary-General of the United Nations between 1972 and 1981 was ','Javier Perez de Cuellar ','Kofi Annan ','Ahmed Salim ','Kurt Waldheim ','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(125,'Ken Saro-Wiwa and eight others were executed in ','1995','1994','1996','1997','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(126,'Gombe State belongs to the ____ geo-political zone in Nigeria ','South West ','North East ','North West ','South East ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(127,'Albert Lutuli was awarded the Nobel Peace Prize in ','1947','1909','1960','1970','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(128,'Ronald Reagan, the former US President, was a  ','Democrat','Democratic-Republican ','Federalist ','Republican','','','d','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(129,'The full meaning of UEFA is ','Union of European Federation Associations ','United European Football Associations ','Union of European Football Associations ','United English Football Associations ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(130,'Gurara Falls can be located in  ','Anambra State ','Niger State ','Adamawa State ','Imo State ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(131,'Obudu Cattle Ranch is in ','\\n \\nCross River State \\n','Akwa Ibom State ','Bayelsa State ','Delta State ','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(132,'Alau Dam and Alan Lake are located in  ','Calabar ','Okitipupa','Maiduguri ','Warri ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(133,'The Inspector-General of Police 2014 is ','Mr Iyami Aganike ','Alhaji Mohammed Dahiru Abubakar ','Mr Tafa Balogun ','Mr Sunday Ehindero ','','','b','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(134,'The Minster of Health 2014 is  ','Prof.  Olikoye Ransome Kuti ','Mr Muhammed Katsina ','Prof.  C.O.Onyebuchi ','Prof. Muhammed Katsina ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(135,'Maseru is the capital city of  ','Mauritius','Rwanda ','Lesotho ','Gambia ','','','c','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(136,'The National Security Adviser in 2014 was','Col. Sambo Dasuki ','Gen.  Aliyu Mohammed Gusau ','Gen.  Andrew Owoeye Azazi (rtd','Gen. Korede Bello','','','a','','post-utme-aaua','2013','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `geography` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=237 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `geography` VALUES (1,'The earth rotates through 150 of longitude once in  ','a minute  ','an hour  ','24 hours  ','a day','','','b','','post-utme','2006',211,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(2,'Aeolian erosion refers to the work of ','Plants ','Wind  ','Ice ','running water','','','b','','post-utme','2006',174,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(3,'The scale of a map is the ratio between the  ','distance over the land and the distance over the water ','distance on the map and the distance on the globe ','vertical and horizontal differences  ','distance on the map and that on the earth’s surface ','','','d','','post-utme','2006',190,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(4,'Which of the following scales should show the greatest amount of detail on a map?  ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2006',185,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(5,'Which of the following statements is not true for lines of latitude?  ','they form parallel circles   ','they range from 00 to 1800 N and S  ','only one line is also a Great Circle ','They form parallel circles','','','b','','post-utme','2006',187,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(6,'Large in area and high in population, which of the following countries fits this description?','Lesotho  ','Togo ','Nigeria  ','Zaire','','','c','','post-utme','2006',214,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(7,'One of these is NOT a landform in Africa   ','Scarp ','Inselberg  ','Drumlin','Doline','','','c','','post-utme','2006',209,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(8,' Which of these does not lie in the principal earthquake region of the world? ','Japan ','Kenya  ','Iran   ','Turkey ','','','b','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(9,'Which  of   these  soil  groups  is  considered   the  most  productive?   ','Chernozems   ','Latosols  ','Podozols   ','Sierozems','','','a','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-08-12 12:05:08'),(10,'One example of inland drainage lake in  Africa is  ','Lake Chad ','Lake Victoria ','Lake Malawi ','Lake Turkana','','','a','','post-utme','2006',176,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(11,'The African river that crosses the equator twice is  ','Zaire ','Nile ','Mississippi  ','Amazon','','','a','','post-utme','2006',224,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(12,'Some rivers in their delta regions breaks into many branches before entering the sea. These divisions are known as  ',' Creeks ','Distributaries','Tributaries ','Effluents','','','b','','post-utme','2006',205,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(13,'Kariba Dam is found in River  ','Zambezi ','Congo  ','Niger  ','Nile','','','a','','post-utme','2006',190,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(14,'The major air mass affecting the climate of West Africa in summer is the  ','harmattan wind  ','tropical continental  ','warm equatorial  ','tropical maritime ','','','b','','post-utme','2006',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:03:03'),(15,'If a map has a scale of 1:50,000 and a cocoa plantation is represented on the map by a rectangle 4cm by 3cm, what is the area of the plantation?  ','3 sq. km  ','30 sq. km  ','12 sq. km  ','20 sq. km','','','a','','post-utme','2006',191,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(16,'The gap between two ranges within which transportation is usually possible in a mountainous regions is called  ','Valley  ','Col  ','ridge  ','Spur','','','b','','post-utme','2006',165,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(17,'What are greenhouse gasses?  ','Gases found around green houses in botanical gardens  ','Gases which are able to trap heat on the earth surface  ','Gases which help global circulation of winds and plants it growths  ','Gases which help farmers grow certain crops during the dry seasons','','','b','','post-utme','2006',215,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(18,'The doldrums refer to  ','land areas bordering the confluence of the blue and white Nile  ','areas intense weather activities around the Mediterranean  ','areas of South Atlantic where cold and warm currents meet  ','area within a few degrees north and south of the equator.','','','d','','post-utme','2006',175,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(19,'Nigeria Sat I is designed by primarily to  ','help GSM provider in achieving a wide national coverage  ','strengthen rapid response by Nigeria’s Armed Forces  ','help in the 2006 Census  ','provide information about various regions of the earth','','','d','','post-utme','2006',190,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(20,'The major sedimentary minerals found in Nigeria include:  ','tin, columbite and gold ','tin, coal and salt  ','limestone, columbite and diamond  ','limestone, petroleum and coal','','','d','','post-utme','2006',197,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(21,'The cloud which are white globular masses, forming ripples in the sky is called  ','Cirrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2006',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:08:18'),(22,'Which of the following routes must have least gradient?  ','Motorway ','Rail line  ','Bush path  ','Carnal ','','','b','','post-utme','2006',174,'Admin','0000-00-00 00:00:00','2020-08-12 09:07:05'),(23,'The foremost producers of petroleum in the Middle East are:  ','Saudi Arabia, Kuwait, Libya and Iran  ','Saudi Arabia, Iraq, Iran and Kuwait  ','Saudi Arabia, Iran, Venezuela and Oman ','Saudi Arabia, Iraq, Libya and Venezuela','','','b','','post-utme','2006',186,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(24,'Which of the following is not an Anglophone country  ','Ghana  ','Gambia  ','Liberia  ','Senegal','','','d','','post-utme','2007',217,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(25,'The shallow part of the sea which separates the deep from the land is called  ','off shore coastal lowland  ','the on-shore tidal current  ','continental shelf formation  ','coastal coral cliff ','','','c','','post-utme','2007',168,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(26,'The port that handle the highest volume of cocoa export in Nigeria is  ','Sapele  ','Warri  ','Lagos  ','Port Harcourt','','','c','','post-utme','2007',186,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(27,'One major characteristics of rural settlements is that  ','are heterogeneous  ','are homogenous  ','are large in size  ','have more problems than urban settlements','','','b','','post-utme','2007',226,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(28,'Industrialization in Nigeria can best be promoted through the development of  ','textile industry  ','leather industry  ','iron and steel industry  ','automobile industry ','','','c','','post-utme','2007',195,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(29,'Most of the industries located in rural areas are  ','low energy consumers  ','high energy consumers  ','raw materials oriented  ','transport oriented ','','','c','','post-utme','2007',219,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(30,'The distribution of minerals resources in Nigeria is related to its:  ','relief  ','soil  ','vegetation  ','geology ','','','a','','post-utme','2007',183,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(31,'Which of the ocean currents is classified as cool?  ','Benguela  ','Kuro Siwo  ','Gulf Scream  ','Mozambique ','','','a','','post-utme','2007',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:02:23'),(32,'The sea area with the highest degree of salinity is the ','Baltic Sea  ','Caspian Sea  ','Dead Sea  ','Mediterranean Sea','','','c','','post-utme','2007',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(33,'The thermometric scale usually employed to described the absolute temperature of the atmosphere is  ','Centigrade  ','Celsius  ','Kelvin  ','Fahrenheit ','','','c','','post-utme','2007',212,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(34,'If the temperature at sea level in a particular place is 200C, place 3500m above sea level in the same area will have a temperature of  ','- 2.750C   ','2.250C  ','22750C  ','22.750C','','','a','','post-utme','2007',196,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(35,'Which of the following is not a form of precipitation? ','Dew   ','Snow   ','hail ','fog ','','','d','','post-utme','2007',196,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(36,'Which of the following pressure belts does not experienced descending air?  ','600N  ','600S  ','00 latitude   ','300N','','','a','','post-utme','2007',190,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(37,'In the tropics, the most variable climatic element inter-annually is  ','temperature  ','solar radiation   ','pressure  ','prairies ','','','a','','post-utme','2007',199,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(38,'Soil that are formed by the wind deposition are called ','Laterites  ','loess  ','podsols  ','prairies ','','','b','','post-utme','2007',179,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(39,'Desert soil are usually deficient in ','fertility  ','light grey colour  ','humus content  ','horizons ','','','c','','post-utme','2007',192,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(40,'Podsols and laterites share the following characteristics in common, except  ','infertility  ','high degree of leaching  ','associated with forest vegetation  ','colour ','','','c','','post-utme','2007',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(41,'The forest type which is the most rich in tree species is the  ','tropical  ','Deciduous  ','Coniferous  ','Mediterranean ','','','a','','post-utme','2007',178,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(42,'Linseed oil is associated with  ','flax  ','coconut  ','olives  ','rapeseeds','','','a','','post-utme','2007',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(43,'Which of the following is not correct with regards to the solar system?  ','The planets all orbit round the sun  ','The sun is only a source of the energy needed on the planets  ','The earth as well as other planets rotate round the sun  ','all the planets have definite orbits around the sun','','','c','','post-utme','2007',193,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(44,'Fossil fuel reserves are found in the Lake Chad basin because  ','The basin lies approximately along he axis on which the rich Bakassi oil fields are found  ','The basin is at the edge of the desert with conditions similar to that of Iraq  ','it is an inland drainage basin with many large rivers emptying into it  ','Its rocks are sedimentary ','','','d','','post-utme','2007',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(45,'Which of the following is correct?  ','The Canaries current is cold and washes the coast of NE Africa  ','The Peruvian current is warm and washes the West coast of America  ','The Gulf stream is warm and moves north eastward on the Atlantic  ','The middle east current is warm and washes the coast of Saudi Arabia ','','','c','','post-utme','2007',192,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(46,'Which of the following formulae is the correct one for converting X0 Fahrenheit temperature reading into Centigrade temperature readings (Y0)?  ','Y = (X + 32)5/90C ','Y = (X – 32)5/90C  ','Y =  (X – 32)9/50C  ','Y = (X+32)9/50C','','','c','','post-utme','2007',195,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(47,'Oxbow lakes are found in  ','lower courses of some rivers ','wind bow out sites  ','places with history of tectonism ','areas of subsidence ','','','a','','post-utme','2008',177,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(48,'Coombes are associated with  ','honey-bee farms  ','Karst environment  ','rift valley system  ','cases in the desert','','','b','','post-utme','2008',209,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(49,'The Stevenson’s screen is used to keep  ','barometer   ','thermometers  ','hygrometers  ','evapori meters','','','b','','post-utme','2008',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(50,'Global Positioning Systems (GPS) help in  ','combating crime  ','providing early warning against disasters  ','climate change monitoring ','locating positions on the earth surface ','','','d','','post-utme','2008',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(51,'One of these is not a factor of population growth  ','poverty  ','migration  ','prosperity  ','housing ','','','a','','post-utme','2008',196,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(52,'Which of the following is not a major problem of Kainji Dam?  ','increase in the herds of the cattle that depends on its waters  ','increase in usage of Niger in Niger Republic  ','silting of the dam  ','growing demand for irrigation water','','','b','','post-utme','2008',204,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(53,'The East Africa large lakes are together described as  ','Great Lakes St Lawrence Sea Ways  ','Rift Valley Lakes  ','Sources of large rivers like Nile  ','products of the formation of Mt Kilimanjaro ','','','b','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(54,'One of these is not true of rain gauges:  ','Rain gauge provide excellent measurement of rainfall ','Their measurements may be affected by the particular type used ','Their readings may be influenced by slope of the land  ','Rain splashes during heavy rains may lead to over estimation ','','','c','','post-utme','2008',200,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(55,'South East Asia is noted for its regular experience of  ','hurricane  ','tornadoes  ','typhoons  ','strong wind','','','c','','post-utme','2008',190,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(56,'Horse latitudes refers to  ','areas around the gulf of guinea ','areas around the equator  ','areas around the Mediterranean sea  ','areas around latitude 300 in both hemispheres.','','','d','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(57,'“High uniform temperature and heavy well distributed rainfall throughout the year” described ','Equaterial rainforest climate  ','Mid altitude friendly environment  ','the zone of forest with a lot of agricultural potentials  ','the great Amazon basin including the Brazilian forests','','','a','','post-utme','2008',200,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(58,'On of the following is least important to ocean movement  ','salinity of the ocean water  ','temperature of the water  ','planetary wind  ','curvature of the coastal areas','','','d','','post-utme','2008',186,'Admin','0000-00-00 00:00:00','2020-08-11 07:04:27'),(59,'The cloud which are white globular masses, forming ripples in the sky is called ','Citrus  ','Cirrocumulus  ','altocumulus  ','altostratus ','','','b','','post-utme','2008',201,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(60,'Which one of the following seas has highest degree of salinity in the world?  ','Caspian sea  ','Mediterranean sea  ','Dead Sea  ','Red sea','','','c','','post-utme','2008',199,'Admin','0000-00-00 00:00:00','2020-07-14 15:01:45'),(61,'Which of the following landforms is NOT due to the process of glacier erosion? ','Come  ','valley -bench  ','Hanging valley  ','Esker','','','b','','post-utme','2008',191,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(62,'Which of the following rivers does NOT drain into Atlantic Ocean? ','The Niger  ','The Indus  ','The Amazon  ','The Volta','','','b','','post-utme','2008',199,'Admin','0000-00-00 00:00:00','2020-08-18 10:07:46'),(63,'Which features on a  topographic sheet would you analyze to characterize the configuration of the area covered by the sheet  ','Isoyet and Isolines  ','ranges and spot heights ','Contour lines for cross section','Contour lines for slope estimates  ','','','d','','post-utme','2008',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:03:03'),(64,'The greatest challenge to future use of automobiles is  ','advances in air travel  ','identification of alternative to fossil fuels  ','changing and more reliable technology for rail transport ','population growth ','','','b','','post-utme','2008',173,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(65,'The statements ‘one cm 2 km can be represented by the ratio of  ','1:50,000 ','1:500,000  ','120,000','1:200,000','','','d','','post-utme','2008',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(66,'What is the Local Standard time in New York (750W) when it is 2 p.m. in Accra?  ','7 p.m. (19hrs)  ','7 a.m. (0700hrs)  ','9 p.m. (2100hrs)  ','9 a.m. (0900hrs)','','','d','','post-utme','2008',178,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(67,'On any day in the year at a specific time  ','the sun is overhead along the equator  ','the sun is overhead along the topic of cancer  ','the North Pole has 24 hours of daylight  ','one half of the earth is in darkness','','','d','','post-utme','2008',181,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(68,'Which of the following is not a true feature produced by volcanic activity? ','horst  ','caldera  ','dyke  ','geyser ','','','a','','post-utme','2008',216,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(69,'Which is the main crop grown in the Ghezira plains ','Wheat  ','Millet  ','Rice  ','Cotton','','','d','','post-utme','2008',221,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(70,'Which of the following countries has a large number of people of Africa descent? ','England  ','Canada  ','Chile  ','Brazil ','','','d','','post-utme','2008',176,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(71,'When it is 1200 noon on longitude 300E. What is the time on longitude 150W.  ','9.00 a.m. ','5.00 p.m.  ','9.00 p.m.  ','5.00 a.m. ','','','a','','post-utme','2008',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(72,'Which of the following Nigerian towns is Not situated near a big river? ','Lokoja ','Onitsha  ','Jebba  ','Abuja','','','d','','post-utme','2008',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(73,'Fishing is the mainstay of the economy of  ','Libya  ','Iran  ','Iceland  ','Chad','','','c','','post-utme','2008',179,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(74,'Which of the following features is produced by wave deposition  ','caves  ','stack  ','tomobolo  ','blow holes','','','c','','post-utme','2009',188,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(75,'Which of the following is the major factor responsible for Japan’s unparalleled industrial growth in the last few decades? ','Japan’s proximity to mainland ','Japan’s cargo population    ','availability of abundant coal and petroleum ','technological proficiency','','','d','','post-utme','2009',197,'Admin','0000-00-00 00:00:00','2020-08-18 10:07:46'),(76,'Which of the following timber trees are found in the tropical rain forest of Africa? ','Obeche and teak  ','Mahogany and teak  ','Obeche and Mahogany ','Iroko and Eucalyptus','','','c','','post-utme','2009',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:02:23'),(77,'Which of the following basins has the highest population concentration? the ','Indus  ','Niger  ','Nile  ','Mississippi ','','','b','','post-utme','2009',200,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(78,'Which of these economic activities is LEAST characteristics of typical urban centres?  ','Commerce ','quarrying  ','transportation  ','manufacturing ','','','b','','post-utme','2009',178,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(79,'In Karst region, when several dolines are joined together to form depression, it is known as ','cave  ','uvala  ','stalactite  ','calcite pallar','','','b','','post-utme','2009',195,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(80,'Rural settlements can be distinguished from urban settlements by their?  ','function  and population  ','Site and function  ','demography and morphology  ','morphology and location ','','','a','','post-utme','2009',196,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(81,'The scientist who propounded the theory of continental drift was?  ','Francis bacon  ','Alfred Wegener   ','Authur Holmes ','Williams Davis','','','b','','post-utme','2009',187,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(82,'The major world exports of wool are  ','Britain, Australia, Mediterranean Europe and Argentina   ','New Zealand, Uruguay, Australia and Argentina  ','Australia, India, Paraguay and Argentina  ','New Zealand, India, Uruguay and Peru','','','b','','post-utme','2009',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(83,'Blantyre, Rio Janeiro, New York and Lagos are similar in that they all serves as their countries ','major seaport  ','political headquarter ','commercial centres ','cultural centres','','','c','','post-utme','2009',173,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(84,'The dawn is a temperature grassland found in? ','Australia  ','South America  ','Eurasia  ','South Africa','','','a','','post-utme','2009',176,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(85,'Commercial grape cultivation is associated with?  ','cool temperature climate  ','monsoon regions  ','Mediterranean regions  ','Montane climate ','','','c','','post-utme','2009',182,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(86,'The highest volume of shipping across the Atlantic ocean is  ','between Europe and Africa  ','between North America and Europe  ','between African and South America ','between North America and South America','','','b','','post-utme','2009',194,'Admin','0000-00-00 00:00:00','2020-08-18 10:07:46'),(87,'The Ukraine of economic activities  ','commercial grain agriculture  and livestock random ','plantation agriculture and nomadic herding.','','','','','a','','post-utme','2009',189,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(88,'All planets have satellites except:  ','Earth & Venus ','Mars & Mercury  ','Mercury & Venus  ','Neptune & Venus','','','c','','post-utme','2010',194,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(89,'Which of the following location in Nigeria has the least mean annual rainfall total?  ','Sokoto  ','Maiduguri  ','Potiskum  ','Nguru','','','b','','post-utme','2010',203,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(90,'Which of the following is not the Karst features? ','Poljes  ','Uvala  ','Kopjes  ','Dolines ','','','c','','post-utme','2010',190,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(91,'The world’s longest river is ','Amazon  ','Mississippi  ','Nile  ','Chang Jiang','','','c','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(92,'One of these is a features of rejuvenated river: ','Incised menders  ','Braided channel  ','delta  ','Levees ','','','a','','post-utme','2010',171,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(93,'Which one of these is not a thermometric scale:  ','Celsius  ','Kelvin  ','Fahrenheit  ','Octas ','','','d','','post-utme','2010',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(94,'Which of these is not a form of condensation? ','Snow ','Rime  ','Cloud  ','Fog','','','b','','post-utme','2010',195,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(95,'Cyclones are centres of  ','relative low pressure  ','relative high pressure  ','Tsunamis  ','turning around of winds','','','a','','post-utme','2010',192,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(96,'The best natural harbour in West Africa is at  ','Lome  ','Tema ','Lagos ','Freetown ','','','d','','post-utme','2010',187,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(97,'Sandstone is metamorphosed into  ','Slate  ','Schist  ','graphite  ','Quartzite ','','','d','','post-utme','2010',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(98,'The navigability of River Nile is limited because  ','it is too long  ','it is too shallow  ','it flows during the wet season only  ','it has several cataracts. ','','','d','','post-utme','2010',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(99,'The cloud which is closely associated with thunderstorms is  ','strato-cumulus  ','Cirrocumulus  ','Cumulus-nimbus  ','Alto-stratus ','','','c','','post-utme','2010',179,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(100,'Drought-tolerant plants are  ','Epiphytes  ','Hydrophytes  ','Droughytes  ','Xerophytes ','','','d','','post-utme','2010',193,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(101,'Campos is the name for the grassland in  ','North America  ','South America  ','Africa  ','Asia ','','','b','','post-utme','2010',188,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(102,'When the moon comes in between the earth and the sun in a perfect straight line, it is known as','Eclipse of the moon  ','Lunar eclipse ','solar eclipse  ','eclipse of the earth ','','','c','','post-utme','2010',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(103,'The earth rotates ','South East-South West  ','South West South West  ','West East  ','East West','','','c','','post-utme','2010',193,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(104,'A degree latitudinal distance is approximately ','70km  ','111km  ','180km  ','360km','','','b','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(105,'Large masswa of moving ice in the oceans are  ','glacier  ','iceberg  ','ice-sheet  ','ice-caps','','','b','','post-utme','2010',189,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(106,'The world driest desert is  ','Atacama  ','Sahara  ','Kalahari  ','California ','','','a','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(107,'A line joining places of equal salinity is  ','isohaline  ','Isoneph  ','Isohyets  ','Isohel','','','a','','post-utme','2010',207,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(108,'Which of these is not on the western side of continental land masses? ','Agulhas  ','Canary  ','Penivian  ','California','','','a','','post-utme','2010',191,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(109,'In general, temperature decreases from the equator towards the Poles because  ','angle of incidence of sun’s rays increases towards the poles ','angles of incidence sun’s rays decreases towards the poles  ','Snow-cover of the higher latitudes reduces the temperature  ','snow falls rather than rain in the pole','','','a','','post-utme','2010',184,'Admin','0000-00-00 00:00:00','2020-08-12 12:03:03'),(110,'Which of the following continents is crossed by both the Tropic of Cancer and Tropic of Capricorn?  ','Asia  ','South America ','North America  ','Africa','','','d','','post-utme','2010',179,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(111,'The sea bed, bordering the continents which is covered by the shallow water is known as ','continental slope ','coral reef ','continental shelf  ','continental platform  ','','','c','','post-utme','2010',190,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(112,'The result of football match completed at 6.00p.m. at Accra (Ghana) and immediately announced over the wireless was heard at 12.00noon same day at another city. The longitude of the city is ','900E  ','600E  ','900W  ','450W ','','','c','','post-utme','2010',204,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(113,'Soil that are formed by wind deposition are called  ','laterites  ','prairies  ','podsols   ','Loess  ','','','d','','post-utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(114,'Which of the following is not a feature of sea deposition ','Shoal ','Beach ','Spit ','coal','','','d','','post-utme','2011',182,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(115,'Which of the following terms is associated with glaciations? ','Arête   ','Bay   ','Stacks   ','Reef   ','','','a','','post-utme','2011',191,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(116,'The lower part of a river valley that has been submerged by the sea is called ','Estuary   ','Reef    ','Spit   ','Bar  ','','','b','','post-utme','2011',192,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(117,'Which of the following is a cold ocean current ','Mozambique   ','gulf stream ','Kuro Siwo  ','Benguela   ','','','d','','post-utme','2011',174,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(118,'The most important cause of tides is the,','distribution of the prevailing winds ','rotation of the earth on its own axis  ','inclination of the earth’s axis  ','gravity attraction of the moon ','','','d','','post-utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(119,'Desert soils are usually deficient in ','fertility  ','humus content ','horizon ','light grey colour   ','','','b','','post-utme','2011',192,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(120,'At the summer solstice [June 21st], which of the following latitudes will have the longest day ','700S   ','900S  ','300N   ','650N   ','','','d','','post-utme','2011',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(121,'Cyclones refer to ','centers of relatively high pressure ','centers of relatively low pressure ','centers Tsunamis ','centers in the desert ','','','b','','post-utme','2011',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(122,'The wearing away of the sides and bottom of a river channel is called ','corrasion ','corrosion ','hydraulic action ','Complicated erosion ','','','a','','post-utme','2011',179,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(123,'When the moon comes in between the earth and the sun in a straight line, it is known as  ','solar eclipse ','eclipse of the earth ','eclipse of the moon ','lunar eclipse ','','','a','','post-utme','2011',182,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(124,'A degree of latitudinal distance is approximately  ','111km  ','221KM ',' 121km  ','212km  ','','','a','','post-utme','2011',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(125,'Which of the following places in Nigeria has the highest mean annual rainfall amount ','Sokoto  ','Maiduguri  ','Nguru   ','Kano  ','','','c','','post-utme','2011',218,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(126,'The formulae for converting temperature from a centigrade (0C) to a Fahrenheit (0F) thermometric scale? ','0F = 1.8 x 0C + 32  ','0F = 0.5x 0C + 32  ','0F = 1.8x 0C – 32   ','0F = 0.5x 0C – 32  ','','','a','','post-utme','2011',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:04:40'),(127,'The Northern Hemisphere’s Spring Equinox is during the month of','February ','march ','April   ','May  ','','','b','','post-utme','2011',209,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(128,'Noonday sun is vertically overhead along the Tropic of Cancer during the month of  ','June  ','July  ','August  ','September ','','','a','','post-utme','2011',170,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(129,'An instrument used in measuring the atmospheric pressure is called ','Barometer ','Thermomete','Hygrometer','Presometer','','','a','','post-utme','2011',190,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:00'),(130,'Orographic rainfall is also called ','Relief rainfall','cyclonic rainfall ','convectional rainfall ','frontal rainfall ','','','a','','post-utme','2011',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(131,'The forest type which is richest in tree species is the ','Deciduous forest ','Mediterranean forest ','Tropical Lowland  rainforest ','coniferous forest  ','','','c','','post-utme','2011',161,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(132,'Which of the following statements is not true for lines of latitudes?','they range from 00 to 1800 North and South ','they range from 00 to 900 North and South ','They vary in D. they form parallel circles','only one line is a great circle.','','','a','','post-utme','2011',175,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(133,'The earths rotates through 150C of longitude in  ','24hrs  ','15hrs  ','4hrs   ','1hrs   ','','','d','','post-utme','2011',206,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(134,'What is the local standard time in New York (750W) when it is 2pm in Accra? ','9.00pm  ','9.00 pm  ','7.00pm   ','7.00am ','','','b','','post-utme','2011',171,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(135,'Aeolian erosion refers to the work of  ','Wind ','Running water  ','Glacier  ','Ice  ','','','a','','post-utme','2011',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(136,'Which of the following landforms is the results of  river rejuvenated?  ','Ox-box lake ','flood plain ','terrace  ','alluvial fan  ','','','c','','post-utme','2011',208,'Admin','0000-00-00 00:00:00','2020-07-26 13:16:38'),(137,'The representative fraction of 1:50,000 can be converted to the following  ','one cm to 5km  ','one cm to 0.05km  ','one cm to 2km  ','one cm to 4km  ','','','b','','post-utme','2011',191,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(138,'Which of the following is not a rapid type of mass movement? ','Solidification ','Rockfall  ','Mudflow  ','Debris Slide','','','a','','post-utme','2012',196,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(139,'A front in which warm air is overtaken and lifted off the ground by cold air in a depression is known as  ','Cold front  ','Warm front  ','Mixed front  ','Occluded','','','d','','post-utme','2012',175,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(140,'The earth’s atmosphere is said to be stable  ','when the environmental laps rate is greater than the adiabatic lapse rate  ','When the adiabatic lapse rate is greater than the environmental lapse rate  ','When the environmental lapse rate is equal to the adiabatic lapse rate  ','When the environmental lapse rate is not equal to the adiabatic lapse rate.','','','b','','post-utme','2012',190,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(141,'Environmental lapse rate is  ','The rate of temperature changes of an air parcel undergoing vertical displacement  ','The rate of temperature decrease of an air parcel undergoing horizontal displacement  ','The actual rate decrease of temperature with increase in altitude at a given place at a given moment  ','The rate of horizontal temperature gradient of an air parcel','','','c','','post-utme','2012',203,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(142,'What is the Centigrade equivalent of 950 Fahrenheit? ','1390C  ','37.20C  ','350C','3.60C','','','c','','post-utme','2012',202,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(143,'Which of the following States in Nigeria would a person NOT pass over by crow fly (direct distance) from Ibadan to Makurdi? ','Osun  ','Ondo ','Kogi  ','Enugu','','','d','','post-utme','2012',241,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(144,'The Latitude which marks the limits of the overhead sun’s apparent movement is  ','0','66.5','32.5','23.5','','','d','','post-utme','2012',219,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(145,'Which of the following features is not commonly associated with a river at the floodplain stage? ','Meanders  ','Levees ','Braided channel  ','Knick point ','','','a','','post-utme','2012',202,'Admin','0000-00-00 00:00:00','2020-07-24 01:48:48'),(146,'The World’s richest fishing grounds are found  ','On the continental shelves  ','In oceanic deeps ','In big and fast-flowing river  ','In river estuaries ','','','a','','post-utme','2012',177,'Admin','0000-00-00 00:00:00','2020-08-18 10:07:46'),(147,'A deflation hollow is produced by  ','River erosion  ','Water action in a limestone area  ','Wind erosion in deserts  ','Wave erosion on the coast ','','','c','','post-utme','2012',200,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(148,'Akosomo dam is on the River  ','Niger  ','Nile  ','Congo  ','Volta','','','d','','post-utme','2012',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(149,'Which of the following is a not characteristic of the International Date Line? ','The Line is approximately along the 1800 meridian  ','The line has a zigzag shape  ','Local time is the same on either side of the line  ','A traveler gains a day when crossing the line from the west to the east ','','','c','','post-utme','2012',163,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(150,'Which of the following African cities is situated near the confluence of rivers? ','Niamey  ','Freetown  ','Cairo  ','Khartoum ','','','d','','post-utme','2012',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:08:18'),(151,'Ferrel’s law states that winds deflect to the  ','Left in the northern  ','Right in the Northern hemisphere and to the left in the Southern hemisphere  ','Right in both hemispheres  ','Left in both hemisphere.','','','b','','post-utme','2012',186,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(152,'Given an environmental lapse tate of 0.650C per 100 metres, a place with sea level temperature of 400 and 2500 metre above the sea level will approximately have a temperature of  ','31.250C  ','23.750C  ','32.50C  ','28.250C ','','','b','','post-utme','2012',214,'Admin','0000-00-00 00:00:00','2020-08-15 01:01:01'),(153,'At the summer solstice (June 21), which of the following latitudes will have the shortest night?','30 “N  ','30 “S  ','50 “N  ','50 “S','','','c','','post-utme','2012',183,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(154,'Which of the following landforms result from wind deposition? ','Playa  ','Barchan  ','Bajada  ','Fan','','','b','','post-utme','2012',215,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(155,'Which of the following farming practices can be used to check soil erosion? ','Contour ploughing  ','Ploughing of land upslope  ','Bush burning  ','Shifting','','','a','','post-utme','2012',205,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(156,'Aeolian erosion refers to the work of  ','Plants  ','Wind  ','Ice  ','Running water','','','b','','post-utme','2012',231,'Admin','0000-00-00 00:00:00','2020-08-15 01:00:59'),(157,'The difference in the readings on the dry and wet bulb thermometers used to determine  ','Relative humidity  ','Temperature range  ','Evaporation  ','Transpiration ','','','a','','post-utme','2012',181,'Admin','0000-00-00 00:00:00','2020-08-11 06:54:05'),(158,'Which of the following scales should show the greatest amount of detail on a map? ','1:50,000  ','1:500,000  ','1:20,000  ','1:200,000','','','c','','post-utme','2012',194,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(159,'Sandstone is metamorphosed into  ','Slate  ','Quartzite  ','Schiest  ','Graphite ','','','b','','post-utme','2012',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(160,'In humid areas, farmers add lime to the soil to  ','reduce acidity  ','Act as fertilizer  ','Facilitate the absorption of nutrient  ','Encourage the farmer','','','a','','post-utme','2012',203,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(161,'In the hydrological cycle, the transfer of water from the earth’s surface to the atmosphere is by ',' Evaporation only  ','Transpiration Only  ','Evaporation  ','Condensation ','','','c','','post-utme','2012',176,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(162,'The second Equinox in any year take place during the month of','March   ','June   ','September   ','December','','','c','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(163,'Which of the following countries in Africa would a person NOT pass over by crow fly (direct distance) from Abidjan to Cairo?  ','Niger    ','Libya','Burkina Faso  ','Chad','','','c','','post-utme','2013',217,'Admin','0000-00-00 00:00:00','2020-07-26 17:38:36'),(164,'The main work of a river in its torrent stage is  ','Widening its valley','Down cutting','Deposition  ','Bifurcation','','','a','','post-utme','2013',197,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(165,'Which of the locations in Nigeria has the highest mean annual rainfall total ?  ','Benin City  ','Port-Harcourt  ','C.Calabar   ','Ondo','','','b','','post-utme','2013',168,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(166,'The world’s longest river is  ','River Amazon    ','River-Mississippi   ','River Nile  ','River Chang Jiang','','','c','','post-utme','2013',197,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(167,'Which of the following is a feature  of a rejuvenated river?','Incised meanders   ',' Braided channel   ','Delta   ','Levees','','','a','','post-utme','2013',197,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(168,'Which of the following is not a thermometric scale?','Celsius     ','Kelvin','Fahrenheit   ','Octas','','','d','','post-utme','2013',189,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(169,'Which of the following is not a form of condensation?  ','Snow  ','Rime  ','C.Cloud  ','Fog','','','d','','post-utme','2013',199,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(170,'The surface of discontinuity between the earth’s crust and the mantle is know as','Lithosphere   ','Barysphere','Mohocivic Discontinuity','Gutenburg discontinuity','','','b','','post-utme','2013',182,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(171,'Where is Sahel Savanna vegetation belt found in Nigeria?','Northwest   ','Northeast','Both Northwest and Northeast','From the middle belt to the north','','','b','','post-utme','2013',174,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(172,'The largest soil group, found in the temperate grasslands, having a deep, black, nutrient-rich','A-horizon, a compact  B-horizon and a zone of calcium carbonate accumulation is called a','Chernozem  ','Pedocal   ','Podsol  ','Chestnut','','a','','post-utme','2013',200,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(173,'Drought-tolerant plants are known as  ','Epiphytes  ',' Hydrophytes','Drouphytes','Xerophytes','','','d','','post-utme','2013',174,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(174,'The major disadvantage of the River Nile as a trade route is that  ','it is too long   ','it is too shallow   ','it flows during the wet season only   ','it has several cataracts','','','d','','post-utme','2013',181,'Admin','0000-00-00 00:00:00','2020-08-18 10:07:46'),(175,'The earth rotates from  ','Southeast to Southwest','Southwest  to Southeast','West to East  ','East to West','','','c','','post-utme','2013',190,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(176,'The tropical maritime air mass attains its maximum incursion over West African hinterlands','When the sun is overhead on the tropic of Capricorn  ','When the sun is overhead on the tropic of Cancer ','When the sun is overhead on the Equator','When the sun is overhead on both the tropic of Cancer and Tropic of Capricom','','','c','','post-utme','2013',189,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(177,'A line joining places of equal salinity is known as','Isohaline   ','Isoneph','Isohyet   ','Isohel','','','a','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(178,'Which of the following continents has the largest area with a tropical type of climate?','Asia   ','South America','North America  ','Africa','','','a','','post-utme','2013',179,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(179,'One hour’s difference in mean solar time represents what angular difference in longitude?','15o ','23.5o  ','90o','66.5o','','','a','','post-utme','2013',203,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(180,'An extended urban area, typically consisting of several towns merging with the suburbs of one or more cities can best be referred to as  ','Conurbation','Urban decay  ','Growth pole','Urban Inertia','','','a','','post-utme','2013',189,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(181,'Which of the following terms is not associated with desert-type topography?','Zuegen    ','Yardang  ','Mesa  ','Uvala','','','d','','post-utme','2013',180,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(182,'The major characteristics of a karst scenery include','Excessive overland flow','Extensive and long surface flow  ','An underground network of caves and streams','Frequent  surface drainage','','','c','','post-utme','2013',195,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(183,'Which of the following landforms originates from Aeolian erosion?','Deflation hollow  ','Sand dune  ','Playa   ','Wadi','','','a','','post-utme','2013',183,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(184,'The cheapest means of transport for a long distance travel is by   ','Air   ','Rail','Water   ','Road','','','c','','post-utme','2013',215,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(185,'A traveler crossing the international Date line from America to Asia at 1.00 P.M. on Saturday, July 13th, 2013, would have to change his watch to 1.00 P.m. on','Sunday, July 14th, 2013','Friday, July 12th 2013','Saturday, July 13th, 2013','Monday, July 15th, 2013','','','a','','post-utme','2013',182,'Admin','0000-00-00 00:00:00','2020-07-26 16:39:13'),(186,'The shaduf method of irrigation was first practiced in','Sudan   ','Ghana   ','Egypt    ','Mali','','','c','','post-utme','2013',202,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(187,'Climate is the: ','Prevailing weather conditions of a region for 10 years ','Prevailing weather conditions of a region for 15 years  ','Prevailing weather conditions of a region for 35 years  ','Prevailing weather conditions of a region for 20 years  ','','','c','','post-utme-aaua','2014',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(188,'Igneous rocks are rocks formed by','The cooling of molten minerals from a liquid into a solid.','The change of minerals from a solid into a liquid','The deposition of minerals. ','The deposition of minerals a solid into a liquid. ','','','a','','post-utme-aaua','2014',158,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(189,'Temperature is a measure of: ','The average hotness','The average coolness','The average heat. ','The average emission.','','','c','','post-utme-aaua','2014',184,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(190,'Isotherm refers to: ','Line that connects points of equal sunshine','Line that connects points of equal rainfall','Line that connects points of equal pressure.  ','Line that connects points of equal temperature','','','d','','post-utme-aaua','2014',179,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(191,'The longest river in Africa is:  ','River Nile. ','River Niger. ','River Benue','River Zambezi ','','','a','','post-utme-aaua','2014',186,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(192,'Isobar refers to: ','Line that connects points of equal humidity. ','Line that connects points of equal rainfall.   ','Line that connects points of equal pressure.  ','Line that connects points of equal temperature. ','','','c','','post-utme-aaua','2014',179,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(193,'Topographic maps are: ','Representations of features on the Earth\\'s surface','Features on the Earth\\'s surface. ','Detailed and accurate graphic representations of features on the Earth\\'s surface ','Geographic coordinate grid on the Earth\\'s surface. ','','','c','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:01:42'),(194,'Lesotho is in: ','South Africa','West Africa.   ','East Africa','Central Africa','','','c','','post-utme-aaua','2014',177,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(195,'Weathering of rocks is: ','The formations of rocks','The breaking down of rocks.   ','The deformations of rocks','The accumulation of rocks. ','','','b','','post-utme-aaua','2014',159,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(196,'Scale of a map is defined as: ','The ratio of a distance on the drawing board to the corresponding distance on the ground. ','The ratio of a distance on the map to the corresponding distance on the ground','The ratio of a distance on the tape to the corresponding distance on the ground. ','The ratio of a distance on the ruler to the corresponding distance on the ground','','','b','','post-utme-aaua','2014',162,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(197,'The capital of Niger state in Nigeria is: ','Gusau','Yola','Makurdi','Minna','','','d','','post-utme-aaua','2014',158,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:41'),(198,'A valley is a:   ','Highland between hills','Lowland between hills','Rock between hills','Highland between trees. ','','','b','','post-utme-aaua','2014',193,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(199,'Nigeria has a total land area of: ','923,768 km2 ','823,768 km2 ','623,768 km2 ','723,768 km2 ','','','a','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(200,'A lake is a:   ','Large body of water surrounded by forest. ','Large body of water surrounded by land. ','Large body of water surrounded by rocks','Large body of water surrounded by water. ','','','b','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(201,'Nigeria is having','574 Local Government Areas','674 Local Government Areas. ','774 Local Government Areas. ','874 Local Government Areas','','','c','','post-utme-aaua','2014',164,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(202,'An island is a:   ','Piece of land surrounded by water.   ','Piece of land surrounded by land. ','Piece of land surrounded by forest. ','Piece of land surrounded by rocks. ','','','a','','post-utme-aaua','2014',164,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(203,'The ethnic groups in Nigeria are: ','More than 250  ','More than 150   ','More than 100   ','Less than 150 ','','','a','','post-utme-aaua','2014',179,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(204,'Orographic rainfall is a:   ','Temperate rainfall','Relief rainfall. ','Coastal rainfall','Forest rainfall.   ','b','','','','post-utme-aaua','2014',181,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:58'),(205,'One major societal issues in Nigeria is: ','Poor feeding. ','Poor human rights','Poor language','Poor religion. ','','','b','','post-utme-aaua','2014',174,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(206,'The United Nations estimate of Nigeria population in 2009 was','154,729,000','144,729,000.00','164,729,000.00','184,729,000.00','','','b','','post-utme-aaua','2014',184,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(207,'Nigeria lies between','Latitudes 4° and 13°N and longitudes 2° and 15°E. ','Latitudes 5° and 14°N and longitudes 4° and 15°E. ','Latitudes 4° and 14°N and longitudes 2° and 15°E. ','Latitudes 2° and 15°N and longitudes 4° and 14°E. ','','','c','','post-utme-aaua','2014',163,'Admin','0000-00-00 00:00:00','2020-08-12 09:07:05'),(208,'Kinshasa is a: ','Central African City ','North African City ','East African City ','South African City ','','','a','','post-utme-aaua','2014',178,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(209,'Freetown is a: ','North African City ','West African City ','South African City ','East African City ','','','b','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(210,'Which one of the following countries is having the highest quality of life? ','Sweden  ','Austria ','United States of America ','England  ','','','a','','post-utme-aaua','2014',202,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(211,'Nairobi is a: ','North African City ','West African City ','South African City ','East African City ','','','d','','post-utme-aaua','2014',173,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(212,'The most populated country in the world is: ','Austria ','China ','United States of America ','Brazil ','','','b','','post-utme-aaua','2014',187,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(213,'Casablanca is a','North African City ','West African City ','South African City ','Central African City ','','','a','','post-utme-aaua','2014',176,'Admin','0000-00-00 00:00:00','2020-08-12 12:07:08'),(214,'The World largest Ocean is: ','Pacific Ocean ','Atlantic Ocean ','Indian Ocean ','Arctic Ocean ','','','a','','post-utme-aaua','2014',172,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(215,'Dominican Republic is in: ','Europe ','Africa ','America ','Asia ','','','c','','post-utme-aaua','2014',192,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(216,'The World Longest Coastlines is in: ','Austria ','England  ','United States of America ','Canada ','','','d','','post-utme-aaua','2014',170,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(217,'Which of the following is an evidence to show that the earth is spherical in shape? ','Elliptical orbit ','Ea th s  u ed ho izo','Revolution of the earth ','Seasonal changes ','','','b','','post-utme-aaua','2014',191,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(218,'A lines drawn on a maps to show places of equal rainfall is called ','Rainline ','Isotope ','Isotherm ','Hydrotope ','','','b','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(219,'Wind erosion is most common in ','Rocky areas ','Riverine areas ','Arid areas ','Humid areas ','','','c','','post-utme-aaua','2014',145,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(220,'The act of graphical representation of places with identified scale and legend is called ','Scaling ','Mapping  ','Sketching ','Drawing ','','','b','','post-utme-aaua','2014',175,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(221,'A piece of land almost surrounded by water is called ','Headland ','Peninsula ','Island   ','Plateau ','','','c','','post-utme-aaua','2014',171,'Admin','0000-00-00 00:00:00','2020-08-12 12:09:24'),(222,'Planet warming the use of water transport is limited by all the following except  ','Wide valleys   ','Waterfalls ','Seasonality  ','Narrow gorges   ','','','a','','post-utme-aaua','2014',182,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(223,'To obtain the climate of a place the average atmospheric weather conditions should be considered ','20years ','24years','35years ','10years ','','','c','','post-utme-aaua','2014',209,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(224,'Which of the following is a major hindrance to H.E.P.','Inadequate capital  ','Unavailability of good sites  ','Absence of domestic market  ','Sufficient volume of water  ','','','d','','post-utme-aaua','2014',181,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24'),(225,'Isotherms are lines drawn on maps joining places having equal ','Temperature   ','Cloud cover ','Pressure ','Water level ','','','a','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(226,'Precipitation include all the following except ','Fog','Snow ','Dust   ','Dew ','','','c','','post-utme-aaua','2014',166,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(227,'The location of iron and steel industry at Ajaokuta in Nigeria is best explained by the presence of ','Limestone and coal  ','Iron ore   ','Bauxite  ','Manganese ','','','b','','post-utme-aaua','2014',188,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(228,'Settlements can be classified according to all the following except the   ','The arrangements of the building   ','Number of people per settlements   ','Functions  ','The type of people that live in the area   ','','','d','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-08-12 12:10:21'),(229,'The average hurricane exists, on the average, for about ________. ','one week ','two weeks ','three weeks ','four weeks ','','','d','','post-utme-aaua','2014',192,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(230,'……...Refers to the nature of the surface of an area and the features that abound therein above the sea level','Barchans ','Relief   ','Plateaux   ','Plain','','','b','','post-utme-aaua','2014',166,'Admin','0000-00-00 00:00:00','2020-08-13 12:56:51'),(231,'Any buoyant parcel of air is said to exhibit ________. ','Instability ','The dry adiabatic lapse rate ','The moist adiabatic lapse rate ','Advection','','','a','','post-utme-aaua','2014',182,'Admin','0000-00-00 00:00:00','2020-08-12 12:08:18'),(232,'The north east and south west trade winds meet along a plane surface where they continuously rub ','Abnormal front  ','Leeward front  ','Intertropical front ','Windward front  ','','','c','','post-utme-aaua','2014',185,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(233,'________ is the time of day when tornadoes are most likely to occur','Dawn ','Mid-afternoon ','Evening ','Noon ','','','b','','post-utme-aaua','2014',167,'Admin','0000-00-00 00:00:00','2020-08-12 12:08:18'),(234,'Crude oil is ------------  rock mineral   ','An igneous   ','A sedimentary  ','A metamorphic  ','A plutonic  ','','','b','','post-utme-aaua','2014',169,'Admin','0000-00-00 00:00:00','2020-08-12 12:20:02'),(235,'The new name of Calicut, a famous city of Kerala is ','Kozhikode','Trivendrum','Kalighat ','Koderma ','','','a','','post-utme-aaua','2014',174,'Admin','0000-00-00 00:00:00','2020-08-12 12:19:37'),(236,'An anemometer is used to measure','wind vane','wind direction','wind speed','wind pressure','','','c','','post-utme-aaua','2014',168,'Admin','0000-00-00 00:00:00','2020-08-13 13:04:24');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `government` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=724 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `government` VALUES (1,'In which of the following countries is governmental powers most fused? ','Nigeria ','United States of America ','France ','Canada','','','c','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(2,'The benefits of separation of powers include the following except ','prevention of tyranny ','check of abuse ','promoting democracy with free and fair election ','avoidance of arbitrariness','','','c','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:46'),(3,'Laws made by state   government are known as ','edicts ','bye-law ','acts  ','decrees','','','a','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:23'),(4,'In a parliamentary system of government, the function of the head of state and the head of government are vested in ','the inner cabinet ','an individual ','two different individuals ','the ministerial council','','','c','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(5,'In a modern democracy, the ultimate source of sovereignty is the ','legislature and executive ','judiciary ','ruling political party ','people','','','d','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(6,'The British took over Nigeria through ','negotiation ','bargaining  ','war ','the sea','','','a','','post-utme','2006',78,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:45'),(7,'Politics is an act for ','man to govern himself ','man to create governments ','states to control its destiny ','man to dominant others','','','a','','post-utme','2006',90,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:11'),(8,'A major issue that distinguishes pressure groups from political parties is ','membership drive ','objective ','vomiting pattern ','ideology','','','b','','post-utme','2006',87,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:25'),(9,'A nation consist of people with ','common history ','common ancestry ','a  shared set of values ','A, B and C above','','','d','','post-utme','2006',83,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(10,'A totalitarian state is based on  ','multi-party system ','total protection of civic rights ','the totality of the state processes ','coercion as the instrument of government','','','d','','post-utme','2006',98,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(11,'A political concept that defines  the beliefs, attitudes and values of a society is called ','political socialization ','political culture ','political transformation ','referendum','','','b','','post-utme','2006',81,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(12,'The agent of political socialization generally regarded as the most important is ','family ','peer group','school ','churches and mosques','','','a','','post-utme','2006',103,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(13,'A political ideology that defines a system of societal organization in which the state controls the commanding heights of the economy is called ','Totalitarianism ','Communalism ','socialism ','communism ','','','d','','post-utme','2006',101,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(14,'Which of the following best describes French colonial policy in Africa? ','policy of association ','policy of Casus Belli ','policy hostility ','policy of assimilation','','','d','','post-utme','2006',88,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:25'),(15,'What was the primary purpose of the Sir Henry Willink Commission of Inquiry? ','to approve the independence of Nigeria ','to allay the fears of minorities in Nigeria ','to amalgamate northern and southern  Nigeria ','to make Lagos a British Colony','','','b','','post-utme','2006',104,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(16,'The military coup of July 25, 1975 which toppled General Yakubu Gowon from power  took place when he was attending which important event? ','OAU Summit in Kampala ','UN General Assembly in New York ','Assembly of Heads of states of ECOWAS in Monrovia ','The Olympic Games','','','a','','post-utme','2006',80,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:13'),(17,'Which of the following political parties did not participate in the 1979 General Elections in Nigeria? ','Unity Party of Nigeria ','National Party of Nigeria ','social Democratic Party ','Great Nigeria People’s Party','','','c','','post-utme','2006',89,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(18,'Alhaji Shehu Shagari was sworn in as President of the Federal Republic of Nigeria in 1979 by ',' Justice Fata Williams ','Justice Adetokunbo Ademola ','Justice Salihu Modibbo  Alfa Belgore ','Justice Isa Mohammed','','','b','','post-utme','2006',85,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(19,'The electorate is generally  understood to refer to ','elected members of the National- Assembly ','elected members of the state house of assembly  ','candidates who can contest elections ','those citizens qualified to vote at elections','','','d','','post-utme','2006',82,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:12'),(20,'Into how many local government areas in Nigeria officially delineated? ','654','650','820','774','','','d','','post-utme','2006',76,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:45'),(21,'The centenary anniversary of the amalgamation of Northern and Southern Nigeria will be celebrated in ','2060','2063','2014','2007','','','c','','post-utme','2006',96,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(22,'Which of these men introduced indirect rule in Nigeria? ','Mungo Park ','Dr. Nnamdi Azikiwe ','Lord Lugard ','Sir James Robertson.','','','c','','post-utme','2006',86,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(23,'Democracy was first practiced in ','Ghana ','United States of America ','Greece ','Britain','','','c','','post-utme','2007',69,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(24,'Which of these countries has the highest population in West Africa? ','Mauritania','Ghana ','The Gambia ','Nigeria.','','','d','','post-utme','2007',100,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(25,'This African ruler resisted colonial rule and was later exiled by the colonial  officials ','Alaafin of Oyo ','Oba of Benin ','King Jaja of Opobo','Onisanbo of Ogbooro.','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(26,'The following countries are settler colonies except  ','Nigeria ','south Africa ','Angola ','Mozambique.','','','a','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:23'),(27,'Nigeria gained independence from colonial rule on ','1-Oct-60','November, 1963 ','29-May-99','1-Nov-60','','','a','','post-utme','2007',90,'Admin','0000-00-00 00:00:00','2020-08-18 05:13:19'),(28,'All but one of the following is not a symbol of political culture ','a national flag ','the government ','an anthem ','the constitution.','','','b','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:14'),(29,'All but one of these is not an agency of political socialization ','the constitution ','the family ','peer group ','schools ','','','a','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(30,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives ','propaganda ','lobbying ','assault ','boycott','','','c','','post-utme','2007',76,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(31,'The following are Anglophone West African countries except ','Ghana ','Nigeria ','Kenya ','The Gambia.','','','c','','post-utme','2007',85,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(32,'A Nigerian who has been the secretary of the Commonwealth of Nations Organizations is ','Dr. Ibrahim Gambari ','Professor Adebayo Adedeji ','Chief Jaja Nwachukwu ','Chief Emeka Anyaoku','','','d','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(33,'How many countries are in Africa? ','fifteen ','fifty-three ','fifty','fifty-five','','','b','','post-utme','2007',75,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(34,'Economic Community of West African States (ECOWAS) was based on the initiative of the heads of state  of these two countries ','Nigeria and Ghana ','Nigeria and Togo ','Senegal and Cote d’lvoire ','B and C above','','','b','','post-utme','2007',84,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(35,'ECOWAS Treaty was signed on ','28-May-74','1-Oct-60','12-Jun-75','none of the above','','','d','','post-utme','2007',82,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(36,'In which city was the ECOWAS Treaty signed ','Lagos ','Banjul ','Accra ','Abuja','','','a','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(37,'A capitalist state is based on ','religion ','creating job opportunities ','dictatorship ','free trade','','','d','','post-utme','2007',88,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(38,'In politics, power is all of the following except ','capacity to affect the actions of others ','ability to make people do things they otherwise not do ','an object ','it is part of a relationship ','','','c','','post-utme','2007',91,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(39,'Every political system performs the following basic functions except ','rule making ','rule transformation ','rule enforcement ','rule adjudication .','','','b','','post-utme','2007',71,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:24'),(40,'These are common forms of governments except ','federal ','Unitary ','Plural ','confederal','','','c','','post-utme','2007',81,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(41,'In a federal system ','the centre is weak ','plurality is abnormal ','there is nothing like autonomous units ','there is unit in diversity ','','','d','','post-utme','2007',80,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:02'),(42,'The legislature performs the following functions except ','determines  the general direction of public policies ','investigating and monitoring the activities of the officials of government ','exercises power of appointment of government officials ','enforcing the law','','','d','','post-utme','2007',86,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:26'),(43,'The independence constitution of 1960 ','introduced bicameral legislature ','catered for the three  regions of Nigeria ','provided for emergency powers ','provided for fundamental human rights','','','d','','post-utme','2007',74,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:15'),(44,'Nigeria became a republic in ','1960','1961','1963','1914','','','c','','post-utme','2007',87,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(45,'The amalgamation of the northern and southern protectorates and the colony of Lagos was in','1960','1966','1914','1957','','','c','','post-utme','2007',73,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(46,'catered for the three  regions of Nigeria ','a renewed concept in international studies ','limited to the west ','a process of making the world  smaller ','an increasing integration of the world.','','','b','','post-utme','2007',108,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(47,'The French colonial policy of Assimilation  was intended to ','to transfer technology to Africa ','to make Frenchmen out of African ','to produce well educated Africans ','to prepare Africans for the Olympic Games','','','b','','post-utme','2008',86,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(48,'One of these is not a characteristic  of the state ','selection of political leaders ','a written constitution ','monopoly of the legitimate use of armed force ','sovereignty','','','b','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(49,'The Economic Community of West African States was established in ','May-75','May-63','May-66','May-96','','','a','','post-utme','2008',86,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:25'),(50,'Nigeria became a republic on ','29-May-99','1-Oct-60','1-Jan-66','1-Oct-63','','','d','','post-utme','2008',102,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(51,'Which of the following is not one of the functions of the modern legislatures? ','making laws  ','collecting taxes ','Ratification of treaties ','Performing oversight functions ','','','c','','post-utme','2008',77,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(52,'The European Union (EU) is an ','Economic organization ','Association of former British colonies  ','Organization of European states ','Union  of European  organization','','','c','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:25'),(53,'What was the name of the highest ruling body during General Babangida’s rule?  ','The presidency  ','Armed Forces Ruling Council ','The National Council of states  ',' The Federal  Executive Council','','','b','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:25'),(54,'One of the following is not a specialized agency to the United Nations Organization ','security council ','International Labour Organization ','World Health Organization ','UNESCO','','','a','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(55,'Under which of the following conditions can a Nigerian be deprived of is or her citizenship? ','If married to a foreign  National ','If one holds a dual citizenship  ','If convicted of Armed robbery ','if one Abuse the National Flag.','','','b','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:11'),(56,'The first indigenous Governor-General of Nigeria is ','Donald Cameron ','Sir James Robertson  ','Sir Adesoji Aderemi  (the  Oni of Ife) ','Rt. Hon. Nnamdi  Aziwe','','','a','','post-utme','2008',74,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:25'),(57,'The Action Group crisis was is in which year? ','1966','1962','1963','1965','','','b','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:25'),(58,'Free education was introduced in west region by which of these premiers? ','Chief Obafemi Awolowo ','Chief S.L. Akintola  ','Chief Michael Adekunle Ajasin ','Chief Bola Ige','','','a','','post-utme','2008',86,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(59,'What does INEC stand for? ','Independent  National Elections Committee ','Independent  Newspapers executive  Committee ','Independent National Export Council ','independent National Electoral Commission ','','','d','','post-utme','2008',81,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:25'),(60,'The government of one of the following countries operates an unwritten constitution ','The United States ','The Union of Soviet Socialist Republics ','Post –apartheid  South Africa ','The United Kingdom ','','','d','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:25'),(61,'The Oldest written constitution is ','American constitution ','British Constitution ','German constitution ','Roman Constitution ','','','a','','post-utme','2008',89,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:08'),(62,'The EFCC was established to ','Arrest and try corrupt politicians ','Combat economic and financial crimes in Nigeria ','Arrest, detain and prosecute corrupt state governors and legislators  ','Assist the World Bank in monitoring economic projects in Nigeria.','','','c','','post-utme','2008',86,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:14'),(63,'The four British colonial territories in West Africa were ','Senegal, Ghana, Sierra Leone and Nigeria ','Nigeria, Ghana, Sierra Leone and Gambia ','Nigeria, Ghana, Togo and Gambia ','Gambia, Guinea, Ghana and Gabon','','','c','','post-utme','2008',82,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(64,'In many countries, citizenship can be acquired through the following processes except ','nationalization ','naturalization ','registration ','birth','','','a','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:15'),(65,'Which of the following does not describe a party system? ','one dominant party system  ','two party system','three party system ','multi party system','','','c','','post-utme','2008',63,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:12'),(66,'ECOMOG was set up primarily to ','drive away the Europeans from West Africa ','serve as a peace keeping force for ECOWAS ','help  Nigeria to control Africa  ','promote rapid economic development among ECOWAS members','','','b','','post-utme','2008',84,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:45'),(67,'The principle since independence include the following except ','peaceful coexistence ','legal  equality of state ','political dependence ','Non- alignment','','','c','','post-utme','2008',101,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:25'),(68,'The body charged with the trial of persons accused of crimes  against humanity is ','criminal Court of Justice ','International Criminal Court ','International Court of Justice ','ICPC','','','b','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:15'),(69,'The independence of the judiciary can be enhance by the following except ','when judges hold office for a fixed term ','when judges cannot be removed from offence even whey they commit crimes ','appointment of judges by and independent body','political neutrality of judges','','','b','','post-utme','2008',79,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:15'),(70,'Which of the following is not  a feature of Nigeria’s electoral system? ','direct election ','proportional representation ','general election  ','secret ballot','','','b','','post-utme','2008',72,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:44'),(71,'Laws made by local governments are called ','Acts of Parliament ','Local Government Acts ','Bye-laws ','Local Government Decrees','','','c','','post-utme','2008',78,'Admin','0000-00-00 00:00:00','2020-08-18 17:45:36'),(72,'In the pre-colonial era, which of the following was not a feature of the emirate administration? ','Madawakin ','Waziri ','Sarkin Dogari ','Sarkin Emir','','','d','','post-utme','2008',76,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:12'),(73,'Federalism was introduced in Nigeria by the ','Lyttleton Constitution ','Clifford constitution ','Macpheson constitution ','1999 constitution.','','','a','','post-utme','2008',91,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:24'),(74,'Traditional rulers were restricted to ceremonial rules by the local  government  reforms of ','1966','1976','1984','1987','','','b','','post-utme','2009',88,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(75,'In a parliamentary system, who ensures that members are in the house to vote on major issues? ','party leaders ','speaker of  the house ','clerk of the house  ','whip','','','d','','post-utme','2009',73,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(76,'A system in which no single person serves as the chief executive  is know as ','republican ','Revolutionary  ','Collegial  ','Parliamentary ','','','d','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:23'),(77,'A social system in which power is derived  from control over land is called ','Oligarchy  ','Feudalisms ','Socialism ','Welfarism ','','','b','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:24'),(78,'“Rule of law” refers to situations in which ','Lawyers are the rulers  ','Laws are supreme ','the judiciary is independent ','parliament makes laws ','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:13'),(79,'An important principle of the civil service is ','Authoritarianism  ','Anonymity ','Repotism  ','partisanship.','','','b','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-08-17 12:27:05'),(80,'Which of these constitutions recognized local government is the third tier of government? ','The 1946 constitution ','The 1960 constitution','The  1963 constitution ','the 1979 constitution.','','','d','','post-utme','2009',82,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:36'),(81,'A condition for judicial indolence is the appointment of judges by the  ','civil service commission ','judicial service commission ','low review constitution ',' code of conduct Bureau','','','b','','post-utme','2009',103,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:23'),(82,'The minorities  Commission appointed in Nigeria in 1957 recommended that ','More states should be create in the federation ','No more states should created before independence ','Nigeria should revert to a unitary structure ','The legislature  should legislature should legislature for the minority areas ','','','b','','post-utme','2009',90,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(83,'The second military coup data in Nigeria took place on ','15-Jan-66','1-Oct-66','29-Jul-66','13-Feb-76','','','c','','post-utme','2009',113,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(84,'One of these was in existence  before the outbreak of the Second World War ','The OAU  ','League of Nations ','The UNOD  ','The Commonwealth of nations ','','','b','','post-utme','2009',87,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:12'),(85,'In important advantage of creating more constituents in a federal state is to ','Enhance the people’s participation in government ','Enable ambitions politicians gain political power ','Make the states gain more power from the federal government ','curb the excesses of the federal government','','','a','','post-utme','2009',94,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:38'),(86,'Under the Presidential system ','The party with the majority of seat forms the executive ','there is the principles of collective responsibility ','the president may come from any of the parties ','the states take instructions from the federal government','','','c','','post-utme','2009',80,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(87,'Public opinion is important because it ','Tells government what action it must take ','Lets government know what the people want ','Allows police to manage crisis ','Mothers the minorities in resource learn areas ','','','b','','post-utme','2009',85,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(88,'Bicameral legislature exists ','where two cameras are used to monitor court proceedings ','To prevent the concentration of power on legislative house ','To provide jobs for more politicians ','to ensure that just laws are passed.','','','d','','post-utme','2009',97,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(89,'Africans were first elected to the legislature council in British West African ','Ghana ','Sierra Leone ','The Gambia ','Nigeria','','','d','','post-utme','2009',98,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(90,'One of the functions of the ministry of External Affairs is the ','Deportation of illegal aliens ','Issuance of passports ','Defense of the country’s boarders ','Promotion of national interest','','','d','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(91,'The leader of the northern people’s congress was ','Yakubu Maitama Sule ','Abubakar Tafawa Balewa ','Aminu Kano ','Ahmadu Bello','','','d','','post-utme','2009',84,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(92,'The idea of democracy started with the ','Romans ','Pensions ','Greeks ','Egyptians','','','c','','post-utme','2009',66,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(93,'In the Marxist theory, those who live by selling, their labour are called ','Bourgeoisie ','Proletariat ','Feudal lords ','Slaves','','','b','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:06'),(94,'Which of the following NOT an acceptable means of achieving democracy? ','Referendums ','Recall ','Initiative ','Riots','','','d','','post-utme','2009',117,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(95,'The branch of government responsible for implementing laws is the ','executive ','Legislature ','Judiciary ','Police ','','','a','','post-utme','2009',97,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:07'),(96,'In a democracy, sovereignty is vested in ','The community ','Public officials ','judges  ','the head of state ','','','a','','post-utme','2009',92,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(97,'Universal Adult Suffrage means all ','Adult citizens can vote ','citizens vote ','Qualified citizens  can vote ','Literate citizens can vote ','','','a','','post-utme','2009',79,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:11'),(98,'A bill that applies to the whole population and is intended to promote the general welfare is called ','A private bill ','a decree ','an appropriation bill ','a public deal ','','','d','','post-utme','2009',91,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(99,'The Arthur Richards Constitution was designed to last ','nine years  ','five years ','twelve years  ','six year','','','a','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(100,'Under the 1963 Republican constitution the president exercise ','judicial powers  ','executive powers  ','nominal powers ','concurrent powers','','','c','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(101,'The Clifford Constitution was notable for ','amalgamating the Northern and southern provinces ','introducing indirect rule ','establishing the legislature  council ','creating a Northern majority in the legislature council.','','','c','','post-utme','2010',99,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:08'),(102,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as ','exclusive ','extra-ordinary  ','residual  ','concurrent','','','d','','post-utme','2010',90,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:15'),(103,'During the period 1960-1966, Nigerian was governed under the ','presidential system of government ','Westminster system of government ','confederal system of government ','Unitary system of government.','','','b','','post-utme','2010',87,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:24'),(104,'Which of the following in the Sokoto Caliphate performed functions similar to that of the Bashorun in Oyo Kingdom? ','Waziri ','Galadima ','Ma’aji  ','Alkali  ','','','a','','post-utme','2010',71,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:13'),(105,'In the Igbo political system, the most senior  member of the council of elders is the ','Okpara  ',' Obi  ',' Eze  ',' Ofo','','','a','','post-utme','2010',70,'Admin','0000-00-00 00:00:00','2020-08-15 00:46:36'),(106,'A non-monarchial state can best be described as a ','republic ','confederation ','nation ','federation ','','','a','','post-utme','2010',69,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(107,'Proportional representation favours a ','multi-party system ','three party system ','two-party system ','one party system ','','','a','','post-utme','2010',82,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:11'),(108,'One major factor that differentiates the presidential from the parliamentary system is  ','separation of the powers ','judicial independence  ','passage of bills ','party system','','','a','','post-utme','2010',97,'Admin','0000-00-00 00:00:00','2020-07-28 00:06:45'),(109,'A state with a hegemonic party is one in which ','there is one dominant party ','there is no opposition party  ','there is only one party  ','other parties are officially recognized.','','','a','','post-utme','2010',67,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:25'),(110,'In the First Republic, Politics in Northern Nigeria was dominated by: ','NEPU ','UMBC ','NCNC ','NPC','','','d','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(111,'The creation of classless society is the ultimate aim of ','communism ','socialism  ','fascism ','capitalism.','','','a','','post-utme','2010',97,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(112,'Herbert Macaulay was the first president of ','NCNC ',' AG  ','UMBC ','NEPU','','','a','','post-utme','2010',76,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:12'),(113,'A special election organized to decide on a political issue is known as ','plebiscite ','by-election  ','general election ','primary election.','','','a','','post-utme','2010',62,'Admin','0000-00-00 00:00:00','2020-07-26 20:00:41'),(114,'Equality before the law is a component of: ','separation of powers ','checks and balances ','the rule of law  ','constitutional law','','','c','','post-utme','2010',94,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:12'),(115,'In the process of implementing laws, the executive sometimes performs: ','judicial function ','bureaucratic function ','oversight function ','legislative function','','','a','','post-utme','2010',89,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:24'),(116,'Which of the these was the main organ of the defunct OAU? ','The liberation committee ','The Council of Ministers  ','The commission for Mediation, Conciliation and Arbitration ','the Assembly of Heads of the state and Government.','','','d','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(117,'Nigeria hosted the commonwealth conference which eventually led to the independence of ','Mozambique ','Namibia  ','Zimbabwe ','Malawi','','','b','','post-utme','2010',77,'Admin','0000-00-00 00:00:00','2020-08-15 00:51:01'),(118,'Multilaterism in Nigeria’s foreign policy entails ','Africa being the centre piece of Nigeria’s foreign policy ','Non aligned posture in international affairs ',' Quest   for a permanent membership  of the UN security Council ','Membership of International Organizations','','','d','','post-utme','2010',84,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(119,'The ancient Greeks practiced: ','direct democracy ','representative democracy ','liberal democracy ','benevolent dictatorships','','','a','','post-utme','2010',95,'Admin','0000-00-00 00:00:00','2020-08-18 08:07:30'),(120,'Fascism originated from ','Greece ','Italy  ','China  ','Germany','','','b','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:46'),(121,'According to Karl Marx, the mode of production that precedes capitalism is ','mercantilism ','feudalism ','socialism ','communalism','','','b','','post-utme','2010',83,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(122,'One of the distinctive features of a democracy is that it ','Connotes civil rule ','facilitates popular participation ','provides for a unicameral legislature ','is not associated with one party state.','','','d','','post-utme','2010',75,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:11'),(123,'Serfs are the dominated class under ','capitalisms ','socialism ','fascism ','feudalism ','','','a','','post-utme','2010',79,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:24'),(124,'A human community that is usually cohesive and homogeneous is ','state ','kinship','clan','Nation.','','','d','','post-utme','2011',87,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(125,'Which of the following made the earliest contact with the Nigerian society? ','The British  ','The Portuguese ','The French ','The Germans','','','b','','post-utme','2011',97,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(126,'Under the 1963 Republican Constitution, the president exercised ','Judicial powers ','executive powers ','nominal powers ','concurrent powers.','','','c','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-08-17 12:27:05'),(127,'The principle of federal character was first enunciated in the: ','1989 constitution ','1963 constitution','1999 constitution ','1979 constitution','','','d','','post-utme','2011',85,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(128,'Between 1960 and 1966, Nigeria was governed under the  ','presidential system of government ','Westminster system of government ','confederal system of government ','unitary system of government.','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:08'),(129,'One major factor that differentiates the presidential from the parliamentary system is: ','separation of powers','judicial independence ','passage of bills  ','party system.','','','a','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:12'),(130,'A major feature of the policy of deregulation in Nigeria is the: ','enthronement of market forces mechanism ','increasing dominance of the economy by the state ','proliferations of public corporations ','phenomenal increase in direct foreign investment','','','a','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(131,'Bicameral legislature exists: ','where cameramen are allowed to cover the proceedings of the legislature ','to prevent the concentration of power in one legislative house ','to provide jobs for more politicians ','to ensure that just laws are passed','','','d','','post-utme','2011',89,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:46'),(132,'A major issue that distinguishes pressure groups from political parties is: ','membership drive  ','the objective','the voting pattern ','the ideology','','','b','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(133,'Equality before the law is a component of: ','separation of powers','checks and balances ','the rule of law','constitutional law.','','','c','','post-utme','2011',78,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(134,'A law passed by the legislature and assented to by the executive is: ','an act','a presidential proclamation ','a decree   ','a legislative order','','','a','','post-utme','2011',79,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(135,'The principle of checks and balances empowers the judiciary to: ','invalidate the actions of the other arms ','administer the criminal justice system ','abrogate the law','apply the law','','','a','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:12'),(136,'In a parliamentary, the term shadow cabinet is often used to refer to the: ','back benchers in the house ','deputy prime ministers and assistant ministers ','rebellious members of the ruling party ','portfolio designates of the party in opposition.','','','d','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:23'),(137,'The fundamental assumption on which the idea of the rule of law is based is: ','supremacy of the constitution','rationality of human beings ','equality of human beings','love for social justice.','','','a','','post-utme','2011',80,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(138,'Associations whose main interest is to influence public policies without attempting to capture state power are: ','communal groups','trade unions  ','political parties','pressure groups ','','','d','','post-utme','2011',99,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:14'),(139,'Multilaterism in Nigeria’s foreign policy entails: ','Africa being the centre piece of Nigeria’s foreign policy ','Non-aligned posture in international affairs ','Quest for a permanent membership of the UN Security Council ','Membership of International Organizations','','','d','','post-utme','2011',74,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(140,'The set of policies on the basis of which countries interact with one another is called: ','Diplomacy','Foreign policy ','National policy ','International relations.','','','b','','post-utme','2011',76,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:45'),(141,'After the defeat of Germany in World War 1, her former colonies were administered under the League of Nations as: ','occupied territories ','trust territories  ','crown colonies ','protectorates.','','','b','','post-utme','2011',75,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:44'),(142,'The Nigeria-Cameroon crisis over Bakaasi peninsula occurred owning to the interpretation of the Treaty of 1913 and the:','resolution of the OAU ','Maroua Accord','decision of the ECOWAS Tribunal ','decision of the International Court of Justice ','','','b','','post-utme','2011',91,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:41'),(143,'The first Nigeria leader to become chairman of the Organization of African Unity was:  ','Tafawa Balewa','Murtala Mohammed','Yakubu Gowon  ','Aguiyi-Ironsi','','','c','','post-utme','2011',73,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:45'),(144,'Nigeria’s non-aligned policy was criticized because of the: ','ECOWAS Treaty ','Nuclear Test Ban Treaty  ','Anglo-Nigerian Pact ','Non-Proliferation Treaty ','','','c','','post-utme','2011',83,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(145,'Fascism originated from: ','Greece','Italy ','China ','Germany ','','','b','','post-utme','2011',86,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:25'),(146,'Diarchy refers to the: ','rule by the government and the opposition parties ','mixture of parliamentary and presidential systems ','rule by political and economic elites ','rule by the military and civilians.','','','c','','post-utme','2011',68,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:26'),(147,'A major flaw in liberal democracy is: ','the limitation of the freedom of expression ','its emphasis on political rights over economic rights ','that it promotes political instability ','its emphasis on collective ownership.','','','b','','post-utme','2011',84,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:23'),(148,'Under military regimes in Nigeria, the branches of government that were fused are: ','executive and the legislature','executive and the judiciary ','legislature and the judiciary ','executive, the legislative and the judiciary ','','','a','','post-utme','2011',77,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(149,'Which of the following does not described a party system? ','one dominant party system  ','two party system  ','three party system  ','multi-party system','','','b','','post-utme','2012',63,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(150,'Laws made by local governments are called  ','Acts of Parliament ','Local Government Acts ','Bye-laws  ','Local Government Decrees ','','','b','','post-utme','2012',67,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:39'),(151,'The commission established to handle the electoral activities in the Second Republic of Nigeria was ','National Electoral Commission  ','National Electoral Commission of Nigeria  ','Federal Electoral Commission  ','Independent National Electoral Commission','','','c','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:03'),(152,'The principle of checks and balances modifies the theory of  ','Rule of law ','Supremacy of law  ','Separation of powers  ','Delegated Legislation ','','','c','','post-utme','2012',78,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(153,'The European Union (EU) is an  ','Economic organization  ','Association of former British Colonies ','Organization of European States ','Union European organization ','','','c','','post-utme','2012',93,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:10'),(154,'In Nigeria, promotion of judges is the responsibility of the ','Chief Justice of the Federation  ','Judicial Service Commission  ','Council of Legal Education  ','Attorney-General and Minister of Justice ','','','b','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:13'),(155,'The Legislature in Nigeria under the 1999 constitution is composed  ','109 senators and 360 members of the House of Representative  ','109 senators and 350 members of the House of Representative  ','108 senators and 350 members of the House of Representative  ','100 senators and 250 members of the House of the Representative ','','','a','','post-utme','2012',83,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:24'),(156,'Under a parliamentary system of government, the cabinet holds office at the pleasure of the ','head state ','electorate  ','legislature  ','opposition ','','','c','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(157,'The ultimate authority in a State is referred to as  ','president  ','sovereignty ','legislature  ','legitimacy ','','','b','','post-utme','2012',64,'Admin','0000-00-00 00:00:00','2020-08-15 00:49:37'),(158,'The most important aspect of political participation in a democracy is  ','attending political rallies  ','voting in elections  ','registration with a political party  ','the observance of electoral processes ','','','b','','post-utme','2012',70,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(159,'One of the foremost theorists of federalism was A. ','A.V Dicey  ','B. K.C Wheare ','C. Karl Marx  ','Baron de Montesquieu ','','','b','','post-utme','2012',80,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:25'),(160,'The judicial organ of the United Nations is the  ','security council  ','European court  ','general assembly  ','International court of Justice  ','','','d','','post-utme','2012',66,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:26'),(161,'The Universal Negro Improvement Association was founded by  ','Casely Hayford  ','Herber Macauly  ','Marcus Garvey  ','W.E.B. Du Bois','','','c','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:25'),(162,'The Chick’s Commission in Nigeria was set up to look into  ','state’s creation  ','revenue allocation  ','minorities issues  ','extra-judicial killings','','','b','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:25'),(163,'Nigeria observed the principal of collective responsibility between  ','1960 and 1966 ','1979 and 1983  ','1985 and 1993 ','1999 and 2003','','','a','','post-utme','2012',93,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(164,'The method used to determine the possible outcome of an electoral contest is ','conduct of elections into local government offices  ','registration of political party  ','conduct of gubernatorial elections  ','delineation of electoral constituencies ','','','a','','post-utme','2012',69,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:12'),(165,'The principle of checks and balances empowers the judiciary to  ','apply the law  ','administer the criminal justice system  ','abrogate the law  ','invalidate the actions of the other arms ','','','d','','post-utme','2012',86,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(166,'The final stage in the process of enacting legislation is  ','assent  ','final reading  ','notification  ','guillotine  ','','','a','','post-utme','2012',95,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:23'),(167,'Every political system performs the following basic functions excepts  ','Rule making  ','Rule transformation  ','Rule enforcement  ','Rule adjudication ','','','b','','post-utme','2012',98,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(168,'Globalization is all but one of these ','A renewed concepts in international studies  ','Limitation to the domination of the West  ','A process of making the world smaller  ','An increasing integration of the world ','','','c','','post-utme','2012',77,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:13'),(169,'A major factor that differentiates International politics from domestic politics is that International politics ','has no centralized institution of government ','cannot enforce sanctions  ','has centralized organs of administration  ','has a central law making body','','','a','','post-utme','2012',72,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(170,'Globalization encompasses all the following except  ','market integration  ','internationalization of politics  ','technology improvement  ','economic liberalism ','','','d','','post-utme','2012',90,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:24'),(171,'The ten non-permanent members of the security council are elected by the  ','general assembly ','trusteeship council  ','security council  ','economic and social council ','','','a','','post-utme','2012',81,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:26'),(172,'Under the independence constitution of Nigeria, Dr. Nnamdi Azikwe was  ','Prime Minister ','Governor General  ','Lieutenant – Government ','Head of State','','','b','','post-utme','2012',76,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(173,'Which organ is referred to as ‘the last hope’ of the common man  ','the parliament   ','the judiciary  ','the executive  ','the legislature','','','b','','post-utme','2012',87,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:44'),(174,'What does INEC stand for?','Independent National Election Committee  ','Independent Newspapers Executive Committee  ','Independent National Export Council  ','Independent National Electoral Commission','','','d','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-15 01:23:25'),(175,'Which of the following is not a feature of Nigeria’s electoral system?  ','direct election   ','general election  ','Proportional representation  ','secret ballot','','','c','','post-utme','2013',83,'Admin','0000-00-00 00:00:00','2020-08-20 10:09:50'),(176,'The head of the Nigerian judiciary is the','Chief Justice of the Federation','Solicitor-General of the Federation  ','Attorney-General and Minister of Justice  ','President of the Court of Appeal','','','a','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:25'),(177,'Manipulation of electoral boundaries for electoral purposes is known as  ','delimitation   ','gerrymandering','devolution   ','deconcentration','','','b','','post-utme','2013',95,'Admin','0000-00-00 00:00:00','2020-08-18 09:53:12'),(178,'A mechanism used in parliament to limit debate is called  ','guillotine','adjournment   ','Motion of censor   ','delimitation','','','a','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:24'),(179,'A major function of the State Independent Electoral Commissions in Nigeria is the  ','Conduct of elections into local government offices  ','registration of political parties','conduct of gubernatorial elections','delineation of electoral constituencies','','','a','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-08-15 08:43:04'),(180,'In politics, power is all of the following except  ','capacity to affect the actions of others  ','Ability to make people do things they otherwise would not do   ','An object   ','it is part of a relationship','','','c','','post-utme','2013',81,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:12'),(181,'Political activity at the diplomatic level is called  ','International relations','International law','International politics','All of the above','','','d','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(182,'Which of these is not an instrument of foreign policy','war    ','diplomacy  ','subversion   ','foreign aid','','','d','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-18 19:59:24'),(183,'The principles that have guided Nigeria’s foreign policy since independence include the following except  ','peaceful coexistence   ','political dependence  ','legal equality of states  ','non-alignment','','','b','','post-utme','2013',67,'Admin','0000-00-00 00:00:00','2020-08-15 08:45:15'),(184,'The independence  of the judiciary can be enhanced by the following except  ','when judges hold office for a fixed term','when judges cannot be removed from office even when they commit crimes','Appointment of judges by an independent body','political neutrality of judges','','','b','','post-utme','2013',76,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(185,'The Aba women riot in Nigeria took place in   ','1960','1950','1922','1929','','','d','','post-utme','2013',75,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(186,'The pressure group that resorts to unconventional methods to achieve its objectives is called ',' an institutional group  ',' a promotional group',' an interest group   ',' an anomic group','','','d','','post-utme','2013',77,'Admin','0000-00-00 00:00:00','2020-08-20 11:18:23'),(187,'All but one of the following is not a symbol of political culture','A national flag','The government   ','An anthem  ','The constitution','','','b','','post-utme','2013',69,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(188,'All but one of these is not a tactic adopted by pressure groups in the pursuit of their objectives',' propaganda','Lobbying  ','Assault',' Boycott','','','c','','post-utme','2013',82,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:11'),(189,'A capitalist state is based on','religion   ','creating job  opportunities  ','Dictatorship   ','Free trade','','','d','','post-utme','2013',62,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:15'),(190,'A major flaw in a liberal democracy is','that it promotes political instability','the limitation of the freedom of expression','its emphasis on political rights over economic rights','its emphasis on collection ownership','','','c','','post-utme','2013',72,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(191,'Nigeria’s voting at the United Nations is guided primarily by','her national interests   ','world peace   ','the cold war  ','her concern for Africa','','','a','','post-utme','2013',65,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(192,'On the basis of its structure, a political party can be classified an indirect if','it controls government indirectly  ','it contests elections by proxy','its membership is acquired through other groups  ','it campaigns for votes through agents.','','','c','','post-utme','2013',70,'Admin','0000-00-00 00:00:00','2020-08-15 01:22:40'),(193,'The study of government essentially facilitates the understanding of the','governance of human societies','functioning of the entire social formation  ','observance of fundamental human rights','organization of the executive arm of government','','','a','','post-utme','2013',94,'Admin','0000-00-00 00:00:00','2020-08-15 01:26:03'),(194,'In judicial administration, the term ‘the bench’ refers to the  ','lawyers   ','litigants    ','registrars','judges','','','d','','post-utme','2013',86,'Admin','0000-00-00 00:00:00','2020-08-19 10:56:09'),(195,'How does the president relieve a minister of his appointment in a presidential system of government?','In consultation with the legislature','In consultation with the judiciary  ','by executive action','after serving a full tenure','','','c','','post-utme','2013',92,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:13'),(196,'An elected legislator in a presidential system can lose his seat through  ','recall  ','cross-carpeting','a vote of no confidence','impeachment','','','a','','post-utme','2013',84,'Admin','0000-00-00 00:00:00','2020-08-20 11:09:01'),(197,'Which of the following modern principles of democracy is found in the Yoruba traditional political system  ','checks and balances  ','the constitution','multipartism  ','bicameralism','','','a','','post-utme','2013',91,'Admin','0000-00-00 00:00:00','2020-08-19 09:12:26'),(198,'The subject matter of politics is best described  as   ','political parties','political power  ','elections','people','','','b','','post-utme','2013',101,'Admin','0000-00-00 00:00:00','2020-08-20 08:04:14'),(199,'Government as an institution of a state can best be defined as a body that','recruits and trains political leaders','settles disputes and interprets laws for the state.','Legislates, executes and interprets laws for the state.','conducts elections for the state.','','','c','','wassce','2000',67,'Admin','2016-11-13 16:14:19','2020-08-20 10:09:50'),(200,'Political authority is the','legitimate right to exercise political power.','ability to control political behaviour.','right to participate in political campaigns.','right to form political parties.','','','a','','wassce','2000',68,'Admin','2016-11-13 16:14:22','2020-08-18 09:53:03'),(201,'The rule of law refers to the principle of','legality and impartiality','the supreme power of rulers.','the immunity of judges from legal actions.','the orderly execution of government policies.','','','a','','wassce','2000',66,'Admin','2016-11-13 16:14:22','2020-08-20 11:18:23'),(202,'Freedom of speech is a fundamental human right enjoyed by citizens but it may be limited if','loyalty is not shown to the ruling party','it exposes the wrong doings of the government','it endangers the security of the state.','it is used to cause embarrassment to the judiciary.','','','c','','wassce','2000',72,'Admin','2016-11-13 16:14:22','2020-08-19 09:12:21'),(203,'Which of the following is an obligation of a citizen?','Attending political rallies','Taking part in Independence Day celebrations','Contesting elections','Paying respect to the national flag.','','','d','','wassce','2000',65,'Admin','2016-11-13 16:14:22','2020-08-18 09:53:18'),(204,'The extent to which the citizens regard the institutions, officials and activities of government as right and acceptable is known as','power','legitimacy','influence','authority.','','','b','','wassce','2000',57,'Admin','2016-11-13 16:14:22','2020-08-19 09:12:23'),(205,'Diplomatic immunity is a limitation to','the theory of separation of powers.','principles of checks and balances.','parliamentary supremacy.','the rule of law','','','d','','wassce','2000',61,'Admin','2016-11-13 16:14:22','2020-08-19 09:12:23'),(206,'A federal state is always expensive to run because','every parliamentarian wants to become rich','government departments are duplicated','judges are highly paid from the consolidated fund.','maintenance of the army involves high expenditure.','','','b','','wassce','2000',80,'Admin','2016-11-13 16:14:22','2020-08-20 11:18:23'),(207,'In which of the following party systems are all shades of opinions and interests adequately represented?','Zero-party','One-party','Two-party','Multi-party','','','d','','wassce','2000',66,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:00'),(208,'Veto power in a presidential system lies with the','Attorney General','Chief of Army Staff','Executive President','Prime Minister.','','','c','','wassce','2000',74,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:40'),(209,'Which of the following is the lowest class of people in the hierarchy of a feudal system?','Nobles','Serfs','Lords','Manor.','','','b','','wassce','2000',57,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:38'),(210,'Mussolini’s fascism and Hitler’s Nazism are good examples of','anarchy','feudalism','totalitarianism','oligarchy','','','c','','wassce','2000',57,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:02'),(211,'Which of the following is supreme in a federal system?','Judiciary','legislature','Constitution','Executive.','','','c','','wassce','2000',75,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:07'),(212,'An order directing a detainee to be brought before the court is called','habeas corpus','an appearance','an injunction','a referendum','','','a','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-08-12 18:43:54'),(213,'Which of the following is a feature of an elite party?','Members are recruited from the working class.','The leadership is composed of aristocrats and wealthy merchants.','It usually consists of existing associations, clubs and trade unions.','Its leadership has certain techniques which attract supporters.','','','b','','wassce','2000',64,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:20'),(214,'All undesirable feature of capitalism is','exploitation','market economy','profit motive','free competition','','','a','','wassce','2000',78,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:18'),(215,'The system of voting on behalf of another person is known as','voting by lot','casting votes.','voting by proxy','preference voting','','','c','','wassce','2000',73,'Admin','2016-11-13 16:14:23','2020-08-18 09:54:10'),(216,'Authoritarianism is least Inherent in','feudalism','fascism','democracy','monarchy','','','c','','wassce','2000',98,'Admin','2016-11-13 16:14:23','2020-08-15 01:23:14'),(217,'In which of the following systems of government are ceremonial and executive powers usually fused?','Parliamentary','Presidential','Collegial','Confederal.','','','b','','wassce','2000',72,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:38'),(218,'The programme of a political party is known as its','constitution','document','manifesto','propaganda','','','c','','wassce','2000',81,'Admin','2016-11-13 16:14:23','2020-08-20 10:09:50'),(219,'Which of the following is a source of a country’s constitution','Mandamus','Judicial precedents','Injunctions','Political decisions','','','b','','wassce','2000',73,'Admin','2016-11-13 16:14:23','2020-08-15 00:49:00'),(220,'The acquisition of political power through hereditary means is a feature of','Communalism','Capitalism','Oligarchy','Monarch','','','d','','wassce','2000',57,'Admin','2016-11-13 16:14:23','2020-08-18 09:52:54'),(221,'Which of the following factors limits the expression of public opinion?','The type of government in a state','The establishment of private media organizations.','The high literacy rate of the citizens','Religious belief of the citizens.','','','a','','wassce','2000',55,'Admin','2016-11-13 16:14:23','2020-08-20 11:18:23'),(222,'If the federal government and the unit governments are to \tpreserve their autonomy, the','Federal government must be supreme','Unit governments must be supreme','Judiciary must be supreme','Constitution must be supreme','','','d','','wassce','2000',65,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:40'),(223,'Which of the following best describes the relationship between the central and the component government in a confederation?','The central government collects revenue for component government','The central and component governments have equal powers','The central government legislates for the component governments.','The central government is weaker than the component government.','','','d','','wassce','2000',71,'Admin','2016-11-13 16:14:23','2020-08-19 09:12:22'),(224,'The administrative head of a public corporation in Nigeria is the','Managing Directors','Secretary','Board of Directors','Chairman','','','a','','wassce','2000',63,'Admin','2016-11-13 16:14:23','2020-08-18 09:51:50'),(225,'The appointment, promotion and discipline of civil servants are the responsibility of the','Civil Service Union','Judicial Service Commission','Civil Service Commission','Electoral Commission.','','','c','','wassce','2000',62,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:40'),(226,'Red tapism in the civil service refers to','The use of red tapes on legal documents.','Sloness of action','Prevent entrance','the co-operation between civil servant s and politicians','','','b','','wassce','2000',81,'Admin','2016-11-13 16:14:23','2020-07-14 15:09:56'),(227,'The grant of the right to vote is called','enfranchisement','disqualification','prohibition','participation','','','a','','wassce','2000',75,'Admin','2016-11-13 16:14:23','2020-08-18 09:53:39'),(228,'The system which allows private individuals and companies to own and control the means of production is known as','socialism','fascism','capitalism','communism','','','c','','wassce','2000',69,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:40'),(229,'Which of the following factors may work against a representative system of government?','High literacy of the electorate','The introduction of universal adult suffrage','Independent electoral commission','Rigging of elections','','','d','','wassce','2000',77,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:18'),(230,'The powers allocated to the central government in a federation are contained in the','central legislative list','exclusive legislative list','residual legislative list','concurrent legislative list.','','','b','','wassce','2000',65,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:07'),(231,'The Nigerian federal legislature is called the','Senate','Congress','National Assembly','House of Representatives','','','c','','wassce','2000',72,'Admin','2016-11-13 16:14:24','2020-08-18 08:07:30'),(232,'Delegated legislation has the advantage of','enlightening the public about law making procedure','saving parliamentary time','reducing the expenses of the legislature','preventing the executive from becoming too powerful.','','','b','','wassce','2000',72,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:03'),(233,'Nigeria’s first constitution was the','Lyttleton Constitution','Clifford Constitution','Macpherson constitution','Independence Constitution','','','b','','wassce','2000',65,'Admin','2016-11-13 16:14:24','2020-08-18 09:54:09'),(234,'The Nigerian Macpherson Constitution of 1951 was significant for','the introduction of Electoral College','providing for the office of the Prime Minister','the creation of states.','establishing the Supreme Court','','','a','','wassce','2000',74,'Admin','2016-11-13 16:14:24','2020-08-20 11:18:23'),(235,'The concept of regionalism in Nigeria was first introduced by the','Independence Constitution','Macpherson Constitution','Richard’s Constitution','Lyttleton Constitution','','','c','','wassce','2000',77,'Admin','2016-11-13 16:14:24','2020-08-19 09:12:21'),(236,'Immediately after the Nigerian Civil War, Gowon’s regime embarked on','rejuvenation, resettlement and reconstruction','reconciliation, rehabilitation and reconstruction','rebuilding, rejuvenation and rehabilitation','rehabilitation, renaissance and repression.','','','b','','wassce','2000',77,'Admin','2016-11-13 16:14:24','2020-08-18 09:52:55'),(237,'Which of the following military regimes in Nigeria played a prominent role in the liberation of colonized African states?','Aguiyi Ironsi','Murtala / Obasanjo','Muhammadu Buhari','Ibrahim Babangida','','','b','','wassce','2000',72,'Admin','2016-11-13 16:14:24','2020-08-20 11:18:23'),(238,'Traditional rulers appointed by the British to implement indirect rule in Eastern Nigeria were called','palace chiefs','village chiefs','warrant chiefs','crown chiefs','','','c','','wassce','2000',66,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:20'),(239,'The bill introduced by a member of the legislature is known as','a-private member’s bill','an executive bill','a state bill','a political party’s bill','','','a','','wassce','2000',83,'Admin','2016-11-13 16:14:24','2020-08-20 11:18:23'),(240,'In the federation of Nigeria, states are equally represented in the','Senate','House of Representatives','Judiciary','National Population Commission','','','a','','wassce','2000',68,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:41'),(241,'In pre-colonial Igboland, administrative meetings were presided over by the','Mazi','Ogbuefi','Ozo title holder','Okpara','','','c','','wassce','2000',59,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:08'),(242,'Checks and balances was a feature of pre-colonial political administration of the','Hausa','Yoruba','1gbo','Fulani','','','b','','wassce','2000',63,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:39'),(243,'Which of the following groups had the best egalitarian traditional political system?','Hausa/Fulani','Yoruba','lgbo','Edo','','','c','','wassce','2000',95,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:07'),(244,'In the pre-colonial Hausa/Fulani system, the appointment of an Emir in the Caliphate was approved by the','Sardauna of Sokoto and the Alkali','Galadima and the Waziri','Shehu of Bomo and the Galadima','Sultan of Sokoto and the Emir of Gwandu','','','d','','wassce','2000',77,'Admin','2016-11-13 16:14:24','2020-08-18 09:54:10'),(245,'The French policy of Assimilation in West Africa was a form of','indirect rule','direct rule','democratic rule','monarchy','','','b','','wassce','2000',61,'Admin','2016-11-13 16:14:24','2020-08-19 09:12:22'),(246,'One of the problems facing the Economic Community of West African States (ECOWAS) is that','member states do not attend meetings regularly','member states do not have a common currency','some members states want to contribute larger funds to the community','it is a rival to the Organization of African Unity','','','b','','wassce','2000',63,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:08'),(247,'The world organization which existed before the United Nations Organization was the','League of Nations','European Economic Community','Organization of African Unity','Commonwealth of Nations.','','','a','','wassce','2000',82,'Admin','2016-11-13 16:14:24','2020-08-18 09:52:53'),(248,'Which of the following bodies is the most representative organ of the United Nations organization (UNO)?','The Economic and Social Council','The Trusteeship Council','The Security Council','The General Assembly.','','','d','','wassce','2000',75,'Admin','2016-11-13 16:14:24','2020-08-18 09:53:20'),(249,'Which of the following is NOT a feature of a state?','Government','Nationality','Sovereignty','Territory','','','b','','neco','2013',85,'Admin','2016-11-13 16:50:50','2020-08-13 13:03:52'),(250,'The legitimacy of government is established when','civil service commission reflects federal character','electoral commission is well funded','free and fair elections are conducted','ministers are appointed to head ministries','','','c','','neco','2013',87,'Admin','2016-11-13 16:50:50','2020-08-10 06:58:54'),(251,'The United Nations Organization (UNO) was founded in','1919','1935','1939','1945','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:50','2020-08-20 11:18:23'),(252,'Which of these best defines a state? A/An','country made up of heterogeneous people','.\\ncountry with definite territory free from external control.','independent country free from external control.','organized body of people occupying a definite territory with sovereign government.','','','b','','neco','2013',88,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:25'),(253,'To ensure impartiality and independence of electoral commission, the body should be','funded by political parties','headed by a justice of the Supreme Court','headed by a professor of political science','independent of government control','','','d','','neco','2013',75,'Admin','2016-11-13 16:50:50','2020-07-14 15:10:26'),(254,'The term ‘collective responsibility’ is an indispensable feature of ___ system of government.','diarchy','federal','parliamentary','presidential','','','c','','neco','2013',76,'Admin','2016-11-13 16:50:51','2020-08-10 06:58:54'),(255,'The Chick’s commission was set up to look into the issue of revenue allocation in','1946','1951','1953','1957','','','c','','neco','2013',95,'Admin','2016-11-13 16:50:51','2020-08-07 16:29:41'),(256,'In the Igbo pre-colonial administration, the council of elders was normally presided over by','Eze','Obi','Okpara','Onowu','','','c','','neco','2013',77,'Admin','2016-11-13 16:50:51','2020-08-10 06:58:54'),(257,'In Nigeria, the head of the electoral commission is called the','Administrative Secretary','Chairman','Electoral Commissioner','Presiding Officer','','','b','','neco','2013',91,'Admin','2016-11-13 16:50:51','2020-07-17 15:18:54'),(258,'Authority is the','ability to compel others to do what they do not want','ability to delegate power to other bodies','ability to rule without fear or favour','capacity to encourage others to do what they intended doing','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:31'),(259,'The Economic Community of West African States (ECOWAS) was formed on','28th May, 1975','29th May, 1976','28th June, 1975','28th July, 1975','','','a','','neco','2013',88,'Admin','2016-11-13 16:50:51','2020-08-08 15:42:24'),(260,'Revenue allocation means the sharing of the','national cake among the people','wealth of a nation among different levels of government','wealth of a nation among the state governments for specific purposes','wealth of a nation between the federal and local governments','','','b','','neco','2013',61,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:33'),(261,'The first military intervention in Nigeria politics was in','1960','1962.','1963','1966','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:34'),(262,'To contest an election, a candidate must be a member of a','campaign organization.','civil society organization.','national assembly','political party.','','','d','','neco','2013',90,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:35'),(263,'Military rule is an example of ______ authority.','charismatic','coercive','delegated','legal','','','b','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-29 10:00:02'),(264,'Which of these countries is NOT a member of Economic Community of West African States (ECOWAS).','Cameroon','Cape Verde','Ghana','Guinea','','','a','','neco','2013',78,'Admin','2016-11-13 16:50:51','2020-08-16 16:28:11'),(265,'Who among the following was NOT an officer in the pre-colonial Yoruba society?','Aremo','Are-Onakakanfo','Balogun','Oluwo','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:51','2020-08-20 10:09:50'),(266,'The 1957 commission of enquiry which investigated the problems of ethnic domination in Nigeria was chaired by','Arthur Richard.','Frederick Lugard.','Henry Willink.','Hicks Phillipon','','','c','','neco','2013',69,'Admin','2016-11-13 16:50:51','2020-07-29 10:00:02'),(267,'Which of these groups of people had no right to make law under the pre-colonial Igbo political structure?','Age grades','Council of Elders','Osu','Priests','','','c','','neco','2013',100,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:41'),(268,'21.\tIn a parliamentary system of government a general election is usually conducted after','dissolution of parliament.','plebiscite.','referendum.','resolution.','','','a','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-08-13 13:03:52'),(269,'A nation is made up of people who share','heterogeneous characteristics.','homogeneous and heterogeneous characteristics.','homogeneous characteristics.','same government only.','','','a','','neco','2013',81,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:43'),(270,'The Commonwealth of Nations consists of states formerly under ___colony.','Belgium','British','French','Portuguese','','','b','','neco','2013',82,'Admin','2016-11-13 16:50:51','2020-08-20 11:18:23'),(271,'Which of these is a feature of Nigeria federalism?','Conflict of authority does not arise','Minority groups are equally benefited','Parliamentary supremacy','Secession is constitutionally forbidden','','','b','','neco','2013',64,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:45'),(272,'Under the 1979 Nigeria constitution, the national assembly was made up of the','House of Chiefs and the Senate.','House of Lords and the House of Representatives.','Lower House and House of Representatives.','Senate and House of Representatives.','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:46'),(273,'','In a single member constituency the voters in that constituency have the right to','declare a winner of an election in their constituency','.\\nelect many representatives.','elect one representative.','','','a','','neco','2013',80,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:47'),(274,'Before the British colonialism in Nigeria, which of these was an instrument for dispensation of justice in !gbo land?','Cult','Land','Masquerade','Ofo','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:51','2020-07-14 15:10:48'),(275,'The special box prepared by the electoral commission into which voters cast their votes is called','ballot box.','ballot paper.','logo.','polling booth.','','','a','','neco','2013',71,'Admin','2016-11-13 16:50:51','2020-08-02 21:36:40'),(276,'An electoral officer charged with the responsibility of announcing election result at the local government level is known as','administrative secretary.','chairman.','polling clerk','presiding officer','','','d','','neco','2013',70,'Admin','2016-11-13 16:50:51','2020-08-10 06:58:54'),(277,'The idea of federalism in Nigeria started with ______ constitution.','Clifford','Independence','Lyttleton','Macpherson','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:52','2020-08-15 23:15:08'),(278,'Under the 1979 constitution of Nigeria, each state was allowed to elect','as many senators as the state could finance','five senators','from two to five senators depending on the population','three senators','','','b','','neco','2013',75,'Admin','2016-11-13 16:50:52','2020-08-18 08:07:30'),(279,'In the pre-colonial Hause/Fulani society, the political head was called','Alkali','Galadima','Ma `aji','Wasiri','','','d','','neco','2013',86,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:53'),(280,'In dividing a country into constituencies, it is important to','ask for permission from the traditional ruler in that area','consider historical','display the voters register','involve the politicians in the areas','','','b','','neco','2013',93,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:54'),(281,'The head of the Oyomesi in pre-colonial Yoruba traditional society was','Alaafin','Are - onakakanfo','Baale','Bashorun','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:55'),(282,'The age qualification required for a Nigerian to contest as a Senator is','18','21','30','40','','','d','','neco','2013',78,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:56'),(283,'Nigeria is presently divided into how many federal constituencies?','6','36','109','360','','','c','','neco','2013',75,'Admin','2016-11-13 16:50:52','2020-08-20 10:09:50'),(284,'Before an election is conducted, the country is divided into electoral districts mainly to','avoid double voting','avoid secret voting','enable the electoral commission have more people to register','make it possible for all people in various parts of the country to be represented.','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:52','2020-08-12 18:43:54'),(285,'The following were the consequences of the Nigeria civil war EXCEPT the','creation of more states','disruption of educational and economic activities','general feelings of insecurity','loss of lives and properties','','','a','','neco','2013',66,'Admin','2016-11-13 16:50:52','2020-07-14 15:10:59'),(286,'The parties that formed the coalition government in 1960 were ___ and ___','AG, NCNC','AG, NPC','NCNC.NEPU','NPC, NCNC','','','d','','neco','2013',84,'Admin','2016-11-13 16:50:52','2020-08-18 05:13:19'),(287,'In Igbo assembly during the pre-colonial era, decisions were normally reached by','balloting.','consensus','hand raising','queuing','','','b','','neco','2013',82,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:01'),(288,'Which of the following is a function of an electoral commission?','Contesting elections','Organizing and conducting elections','Organizing political parties','Settling disputes among political parties','','','b','','neco','2013',86,'Admin','2016-11-13 16:50:52','2020-08-07 16:29:41'),(289,'The cultural organisation which metamorphosed into \tNorthern People’s Congress (NPC) was','Arewa Consultative Forum','Borno Youth Movement','Egbe Omo Oduduwa','Jamiyyar Mutanen Arewa','','','d','','neco','2013',74,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:03'),(290,'Before a candidate is declared winner under absolute majority system of voting, the candidate must score more than ___ of the total vote cast.','half','one - quarter','one - third','three - quarter','','','a','','neco','2013',75,'Admin','2016-11-13 16:50:52','2020-08-08 15:42:24'),(291,'Nigeria became a member country of the Common wealth of Nations on 1st October','1922','1951','1960','1963','','','c','','neco','2013',90,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:05'),(292,'A constitution that requires stringent procedures for amendment is termed ___ constitution.','federal','flexible','rigid','unitary','','','c','','neco','2013',69,'Admin','2016-11-13 16:50:52','2020-07-23 23:51:42'),(293,'To conduct local government elections, the electoral commission divides the local government area into','branches','constituencies','secretariats','wards.','','','d','','neco','2013',73,'Admin','2016-11-13 16:50:52','2020-08-13 20:52:13'),(294,'Agents of political socialization include the following EXCEPT','educational institutions','political godfathers','political parties','religious institutions','','','b','','neco','2013',80,'Admin','2016-11-13 16:50:52','2020-08-17 12:27:05'),(295,'Ownership of land is a common feature of','aristocracy','capitalism','communalism','feudalism.','','','d','','neco','2013',70,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:09'),(296,'The term of the Secretary-General of United Nations (UN) is for ___ years.','eight','five','four','six','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:10'),(297,'How many members of the security council of the United Nations (UN) exercise veto power?','Eight','Five','Four','Six','','','b','','neco','2013',81,'Admin','2016-11-13 16:50:52','2020-08-17 12:27:05'),(298,'The head of the electoral commission at the local government area is referred to as the','chairman','electoral officer','resident commissioner','returning officer','','','d','','neco','2013',84,'Admin','2016-11-13 16:50:52','2020-07-14 15:11:12'),(299,'Who was the leader of the Northern Elements Progressive Union (NEPU)?','Alhaji Balarabe Musa','Alhaji Umaru Dikko','Mallam Aminu Kano','Sir Abubakar Tafawa Balewa','','','c','','neco','2013',81,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:13'),(300,'Which of the following is NOT a source of local government finance?','Commercial ventures','Grants','Rates','Sale of bonds','','','d','','neco','2013',87,'Admin','2016-11-13 16:50:53','2020-08-10 06:58:54'),(301,'The first ever civilian - to - civilian transition was recorded in Nigeria in','1966','1979','1999','2003','','','d','','neco','2013',83,'Admin','2016-11-13 16:50:53','2020-08-18 08:07:30'),(302,'A manifesto is essential to political parties because it enables them to','assess the electorates','gauge public opinion','manipulate election','present programme of action','','','d','','neco','2013',79,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:16'),(303,'The two Greek words that make up democracy are ___ and ___ ,','arita, demo','demo, aria','demo, krat','demo, kratia','','','d','','neco','2013',92,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:17'),(304,'The Headquarters of Organization of Petroleum Exporting Countries (OPEC) is located in','Algiers','Baghdad','Riyadh','Vienna','','','d','','neco','2013',76,'Admin','2016-11-13 16:50:53','2020-08-20 11:18:23'),(305,'The term, “Quorum” means the number of legislators chat','are absent from a day’s proceeding.','assent to any particular bill','belong to the opposition party in the house','must be present before business could start','','','d','','neco','2013',77,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:19'),(306,'The process of sensitizing the electorate on the need to vote on the election day and also observe the rules and regulations of election is referred to as','campaign','free and fair election','gerrymandering','political socialization.','','','d','','neco','2013',91,'Admin','2016-11-13 16:50:53','2020-08-13 13:03:52'),(307,'Which of the following is NOT a feature of the civil service?','Anonymity','Expertise','Impartiality','Rigidity','','','d','','neco','2013',94,'Admin','2016-11-13 16:50:53','2020-07-14 15:11:21'),(308,'In a federal state, power is shared','between the center government and the local authorities','among the state of the federation','among the major regions of the country','between the center government and other co-ordinate units.','','','d','','wassce','1999',76,'Admin','2016-11-13 17:15:28','2020-08-20 11:18:23'),(309,'In a federal system of government, the center is','superior to the other components','inferior to the other components','weak to the other components','equal to the other components','','','a','','wassce','1999',94,'Admin','2016-11-13 17:15:29','2020-08-18 09:53:19'),(310,'In a presidential system of government, ministers are','individually responsible to the president','individually responsible to the senate','collectively responsible to the president','collectively responsible to the electorate','','','a','','wassce','1999',73,'Admin','2016-11-13 17:15:29','2020-08-18 09:54:10'),(311,'The principle of collectively responsibility implies that','individual views cannot be expressed','decisions taken are defended in spite of individual opinions','those who hold different views must acquiesce','government cannot be personalized','','','b','','wassce','1999',82,'Admin','2016-11-13 17:15:29','2020-08-19 09:12:20'),(312,'A government controlled by a few people for their own interests is said to be','an autocracy','a tyranny','an oligarchy','a meritocracy','','','c','','wassce','1999',81,'Admin','2016-11-13 17:15:29','2020-08-18 09:53:19'),(313,'In the parliamentary system of government, formal legislation can take the following forms except','royal proclamations','order in council','acts of parliament','ministerial pronouncement','','','a','','wassce','1999',65,'Admin','2016-11-13 17:15:29','2020-08-20 11:18:23'),(314,'One of the distinctive features of democracy is that it','connotes civil rule','facilitates popular','provides for a unicameral legislature','is not associated with one-party system','','','b','','wassce','1999',58,'Admin','2016-11-13 17:15:29','2020-08-15 00:48:58'),(315,'A hereditary system of government is','an oligarchy','a gerontocracy','an aristocracy','a monarchy','','','d','','wassce','1999',56,'Admin','2016-11-13 17:15:29','2020-08-20 11:09:01'),(316,'The separation of judicial, legislative and executive function is designed to','promote freedom','prevent tyranny','promote peace','prevent anarchy','','','b','','wassce','1999',69,'Admin','2016-11-13 17:15:29','2020-08-18 09:53:03'),(317,'Bicameral legislature are a common feature of','monarchical systems','confederal systems','federal systems','unitary systems','','','c','','wassce','1999',61,'Admin','2016-11-13 17:15:29','2020-08-20 11:18:23'),(318,'In a federal constitution, legislative powers that are shared by two levels of government are referred to as','exclusive','extra-ordinary','residual','concurrent.','','','d','','wassce','1999',72,'Admin','2016-11-13 17:15:29','2020-08-19 09:12:22'),(319,'The most important function of the exclusive organ of government is to','formulate policies','give assent to bills','control foreign policies','enforce laws.','','','a','','wassce','1999',70,'Admin','2016-11-13 17:15:29','2020-07-14 15:11:33'),(320,'The process of learning the norms and values associated with a political system is referred to as political','socialization','indoctrination','culture','participation','','','a','','wassce','1999',64,'Admin','2016-11-13 17:15:29','2020-08-18 09:54:09'),(321,'Which of the following best describes the role of the civil service?','Promoting the interest of civil servants','Advising government and implementing its policies','Keeping records for government','Providing information on government and its agencies.','','','d','','wassce','1999',70,'Admin','2016-11-13 17:15:30','2020-08-18 09:52:54'),(322,'One instrument for safeguarding the rights of citizens is','judicial interpretation','presidential pardon','legislative intervention','writ of habeas corpus','','','d','','wassce','1999',65,'Admin','2016-11-13 17:15:30','2020-08-18 09:53:20'),(323,'Legislative control over delegated legislation can be performed through','withdrawal of delegated powers by the judiciary','nullification of unconstitutional legislation','investigation into the exercise of delegated powers','approval of legislation by the Chief Justice.','','','c','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-08-18 09:54:08'),(324,'The feature which best differentiates pressure group from political parties is that they do not','have interest in politics','seek to influences public opinion','have permanent organization','nominate ministers','','','d','','wassce','1999',70,'Admin','2016-11-13 17:15:30','2020-08-18 09:53:20'),(325,'The notion of equality before the law is the same as the principle of','supremacy of the constitution','rule of law','independence of the judiciary','nominate ministers','','','b','','wassce','1999',75,'Admin','2016-11-13 17:15:30','2020-08-18 09:53:06'),(326,'A constitution is classified as unwritten when it','does not emanate from the legislature','provides for separation of powers','originates from Britain','is not contained in any single document','','','d','','wassce','1999',55,'Admin','2016-11-13 17:15:30','2020-08-18 09:52:54'),(327,'.\\n\\nA state is said to be fascist when','its leader is patriotic but the citizens are not','all rights and liberties are subordinated to state interest','its citizens are fanatically in love with their leader','all rights and liberties are placed above state interests.','','','b','','wassce','1999',60,'Admin','2016-11-13 17:15:30','2020-08-18 09:52:07'),(328,'A dominant two-party system is operated in','the United Kingdom and the United States','India and Pakistan','France and Germany','South Africa and Senegal','','','a','','wassce','1999',73,'Admin','2016-11-13 17:15:30','2020-08-20 11:09:01'),(329,'Indirect legislation can be achieved by','judicial interpretation and precedent','passing a private member’s bill','second read of the law','the two legislative chambers considering a bill','','','a','','wassce','1999',77,'Admin','2016-11-13 17:15:30','2020-08-20 11:18:23'),(330,'Naturalization is a process of acquiring citizenship by','persons of dual nationality','foreign visitors to a country','resident foreigners of good character','persons born abroad.','','','c','','wassce','1999',62,'Admin','2016-11-13 17:15:30','2020-08-13 12:53:07'),(331,'The ideology which states that each person is the best judge of what is in his self-interest is','liberalism','socialism','fascism','feudalism','','','a','','wassce','1999',58,'Admin','2016-11-13 17:15:30','2020-08-19 09:12:20'),(332,'The Code of Conduct Bureau was established essentiality to','ensure the independence of the public service','enhance probity and accountability in public service','probe public office holders','reduce corruption in public life.','','','b','','wassce','1999',73,'Admin','2016-11-13 17:15:30','2020-08-18 09:53:39'),(333,'The British Government revoked the Character of the Royal Niger Company and took over the administration of Nigeria in','1861','1861','1900','1914','','','c','','wassce','1999',63,'Admin','2016-11-13 17:15:30','2020-08-20 11:18:23'),(334,'The Independence constitution can be described as','monarchical and presidential','republican and parliamentary','monarchical and parliamentary','federal and republican','','','c','','wassce','1999',68,'Admin','2016-11-13 17:15:30','2020-08-20 10:09:50'),(335,'Which of the following parties formed the opposition in the House of Representatives during Nigeria’s First Republic?','AG and UMBC','NCNC AND NEPU','NPC and NNDP','NCNC and AG','','','a','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-08-19 09:12:21'),(336,'The first Head of Government in Independent Nigeria was','Nnamdi Azikiwe','Ahmadu Bello','Tafawa Balewa','Herbert Macaulay','','','c','','wassce','1999',66,'Admin','2016-11-13 17:15:30','2020-08-18 09:52:54'),(337,'A feature common to the 1963, 1979 and 1989 constitutions of Nigeria was that they provided for a','republican system','prime minister','ceremonial head of state','president as head of government','','','a','','wassce','1999',86,'Admin','2016-11-13 17:15:30','2020-08-18 09:52:54'),(338,'The Lagos Colony and Protectorate was amalgamated with The Protectorate of Southern','1886','1893','1906','1922','','','c','','wassce','1999',62,'Admin','2016-11-13 17:15:30','2020-08-18 09:53:02'),(339,'During the 1957 constitutional conference, the Willink Commission was set up to','recommend a date for independence','suggest an equitable revenue allocation  \tformula','create new regions in Nigeria','recommend solutions to the problem of the minorities','','','d','','wassce','1999',61,'Admin','2016-11-13 17:15:30','2020-08-18 09:52:08'),(340,'The duty of an Alkali under the Hausa-Fulan political system is to','adjudicate under Islamic laws','make Islamic laws','execute Islamic laws','make treaties under Islamic laws','','','a','','wassce','1999',67,'Admin','2016-11-13 17:15:30','2020-08-20 11:18:23'),(341,'The motion for self-government in Nigeria was proposed by Chief Anthony Enahoro in','1956','1953','1956','1958','','','b','','wassce','1999',73,'Admin','2016-11-13 17:15:30','2020-08-18 09:54:10'),(342,'The legislative functions of the government of Benin Kingdom were performed by the','Esama','Ndichie','Uzama','Enigie','','','c','','wassce','1999',76,'Admin','2016-11-13 17:15:30','2020-08-18 09:53:39'),(343,'The highest ruling body under the Murtala Obasanjo regime differed remarkably from that of the Gowon','administration because of the','inclusion of civilians as members','exclusion of military governors from the council','inclusion of the Chief justice as member','','','b','','wassce','1999',70,'Admin','2016-11-13 17:15:30','2020-08-18 09:53:41'),(344,'Decree No.34 of May 1966 is also known as the','State Security Decree','Suspension and Modification Decree','Public Order Decree','Unification Decree','','','d','','wassce','1999',64,'Admin','2016-11-13 17:15:30','2020-08-18 09:53:19'),(345,'In 1979, the Unity Party of Nigeria contested and won gubernatorial elections in','Lagos, Ogun, imo, Oyo and Bendel','Lagos, Kwara,Oyo,Ogun, and Benue','Lagos, Ogun,Oyo,Ondo and Bendel','Lagos, Kwara,Ogun,Oyo,Ondo','','','c','','wassce','1999',61,'Admin','2016-11-13 17:15:31','2020-08-18 09:54:08'),(346,'Rate are usually collected in Nigeria by','ministries of commerce in the states','local government councils','the department of Inland Revenue','the traditional rulers','','','b','','wassce','1999',78,'Admin','2016-11-13 17:15:31','2020-08-18 09:53:40'),(347,'One of the main reasons for the creation of more local governments in Nigeria is to','make them more responsive to people’s needs','weaken the powers of traditional authorities','make them more receptive to traditional rule','establish them as the third tier in the federal structure','','','a','','wassce','1999',71,'Admin','2016-11-13 17:15:31','2020-08-18 09:52:55'),(348,'Based on its objectives, the Organization of African Unity can primarily be classified as','a social organization','a political organization','a cultural organization','an economic organization','','','b','','wassce','1999',68,'Admin','2016-11-13 17:15:31','2020-08-18 09:51:57'),(349,'Nigeria’s role in ECOMOG is essentially informed by her','desire for peace and stability','chairmanship of ECOWAS.','desire to establish democracy','member ship of ECOWAS.','','','a','','wassce','1999',67,'Admin','2016-11-13 17:15:31','2020-08-20 11:09:01'),(350,'The annual budget of the OAU is approved by the','Council of Ministers','Secretary General','Assembly of Heads of State and Government','General Assembly','','','c','','wassce','1999',73,'Admin','2016-11-13 17:15:31','2020-08-18 09:53:40'),(351,'The major strategy used by OPEC to influence oil price is by','allocating production quotas to members','influencing buyers at the international market to buyer at high prices','allowing member countries to produce at their discretion','increasing the supply of the commodity','','','a','','wassce','1999',61,'Admin','2016-11-13 17:15:31','2020-08-19 09:12:21'),(352,'Nigeria’s was suspended from the Commonwealth because of her','tacit approval of military dictatorship','negative position towards other nations','complete negligence of freedom of the press','violation of fundamental human rights','','','d','','wassce','1999',82,'Admin','2016-11-13 17:15:31','2020-08-19 09:12:22'),(353,'Nigeria’s non-aligned policy means that she will','have nothing to do with the super-powers','not take sides in international issues based on ideological considerations','avoid having any dealing with any country with Ideological','relate only with member countries of the Non-Aligned Movement','','','b','','wassce','1999',80,'Admin','2016-11-13 17:15:31','2020-08-18 09:53:40'),(354,'One of the underlying principles of Nigerian foreign policy is','encouragement of peace-keeping operations in Africa','interference in the internal activities of other countries','non-commitment towards Africa unity','respect for sovereign equality of all states.','','','d','','wassce','1999',76,'Admin','2016-11-13 17:15:31','2020-08-18 09:53:06'),(355,'Before a new member is admitted to the United Nations Organization, its application must be approved by all','permanent members of the Security Council','members of the General Assembly','members of the Economic and Social Council','members of the International Court of Justice','','','a','','wassce','1999',73,'Admin','2016-11-13 17:15:31','2020-08-19 09:12:21'),(356,'Which of the following international organizations was in existence before the outbreak of the Second World War?','The OAU','The League of Nations','The UNO','The ECOWAS','','','b','','wassce','1999',70,'Admin','2016-11-13 17:15:31','2020-08-20 11:18:23'),(357,'The organ of the United Nations Organization responsible for the former colonies of defeated World War II power is the','General Assembly','Security Council','Economic and Social Council','Trusteeship Council','','','d','','wassce','1999',73,'Admin','2016-11-13 17:15:31','2020-08-20 11:18:23'),(358,'The Land Use Decree of 1978 vested the ownership of land in Nigeria in the','State Governments','Federal Government','Local Governments','Local Chiefs','','','a','','utme','2016',76,'Admin','2016-11-13 17:26:43','2020-08-18 09:51:47'),(359,'During the civil war, the major power that expressed moral support for Biafra’s self-determination was','Great Britain','the United States','China','France','','','d','','utme','2016',91,'Admin','2016-11-13 17:26:44','2020-08-18 09:54:48'),(360,'How many states were created in Nigeria in 1967?','4','12','19','21','','','b','','utme','2016',77,'Admin','2016-11-13 17:26:45','2020-08-20 10:09:50'),(361,'Decree 34 of 1966 was unacceptable to many Nigeria because it was','seen as an instrument of impoverishment','perceived to abolish the federal system','promulgated without consultation with the people','considered as alien','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-08-18 09:53:23'),(362,'The Mid-Western Region was created in Nigeria in','1961','1962','1963','1964','','','c','','utme','2016',77,'Admin','2016-11-13 17:26:45','2020-08-18 09:51:02'),(363,'A major contentious issues confronting Nigerian Federalism is','poverty','education','health care delivery','revenue allocation','','','d','','utme','2016',65,'Admin','2016-11-13 17:26:45','2020-08-18 09:53:22'),(364,'A constitution of any country is basically','a mere piece of paper','a guide to how the country should be governed','a document stating what the leaders should do','a document stating how to power','','','b','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-08-18 09:53:39'),(365,'The term, Rule of Law means','nobody is above the law','everybody is equal before the law','we are being governed by lawyers','A and B above','','','d','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-08-19 09:12:24'),(366,'A good example of a country which operates a cabinet system of government is','France','United Kingdom','United States','Soviet Union','','','b','','utme','2016',66,'Admin','2016-11-13 17:26:45','2020-08-19 21:06:59'),(367,'Indirect Rule was first introduced into Nigeria by','Dame Margery Perham','Sir Donald Cameron','Sir Frederick Lugard','Sir Arthur Richards','','','c','','utme','2016',73,'Admin','2016-11-13 17:26:45','2020-08-19 09:12:23'),(368,'France introduced the policy of assimilation in her colonies primarily to','teach them the art of leadership','give them a sound education','change their way of life','discourage them from ritual killings','','','c','','utme','2016',63,'Admin','2016-11-13 17:26:45','2020-08-18 09:51:01'),(369,'The first Governor-General of Nigeria was','Lord Lugard','Dr. Nnamdi Azikwe','Sir James Robertson','Major-General Aguiyi Ironsi','','','a','','utme','2016',62,'Admin','2016-11-13 17:26:45','2020-08-18 09:52:20'),(370,'A disadvantage of the one-party system is that it','emphasizes political differences','makes accountability difficult','negates freedom of association','delays decision - making','','','c','','utme','2016',91,'Admin','2016-11-13 17:26:45','2020-08-18 09:51:36'),(371,'A typical form of delegated legislation is','an act','a bill','a decree','a bye-law','','','d','','utme','2016',83,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:11'),(372,'In federalism system of Government currency, Armed forces and National defense is the primary function o','f\\nLocal government Chairman','Armed Forces Ruling Council','Security and Exchange Commission','Exclusive list','','','d','','utme','2016',75,'Admin','2016-11-13 17:26:45','2020-08-15 08:43:15'),(373,'An electoral process in which candidates are selected for elective offices by party members is','Primary election','Electoral College','Bye election','General election','','','a','','utme','2016',100,'Admin','2016-11-13 17:26:45','2020-08-15 00:50:59'),(374,'The system of indirect rule failed in the former Eastern Nigeria primarily because','of the fragmented political structures','the chief refused to cooperate with colonial officer','the high incidence of taxation chief refused to cooperate with colonial officers','the colonial officers imposed warrant chiefs on the people','','','d','','utme','2016',92,'Admin','2016-11-13 17:26:45','2020-08-19 09:12:24'),(375,'Citizenship refers to the','legal status of a member of a state','indigenous member of a state','highest position in a state','social status of a person in a state','','','b','','utme','2016',94,'Admin','2016-11-13 17:26:45','2020-08-20 10:09:50'),(376,'Before Nigeria became a republic, the highest body charged with the administration of justice was the','Supreme Court','Court of Appeal','Privy court','High Court','','','c','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-08-18 09:53:39'),(377,'Nigeria’s withdrawal from the Edinburgh Commonwealth Games in July 1986 was in protest against British','supply of arms of Rhodesia','failure to improve sanctions on South Africa','negative utterances on Nigeria','support for UNITA rebels in Angola','','','b','','utme','2016',79,'Admin','2016-11-13 17:26:45','2020-08-18 09:54:47'),(378,'Which of these is not the supreme organ of the OAU?','the council of Ministers','The Administrative Secretary General','the Assembly of Heads of States and Government','Appointment of staff','','','d','','utme','2016',76,'Admin','2016-11-13 17:26:45','2020-08-20 11:09:01'),(379,'Which of the following electoral bodies in Nigeria conducted elections from 1979 to 1983?','Federal Electoral Commission','National Electoral Commission','National Electoral Commission of Nigeria','Independent National Electoral commission','','','b','','utme','2016',86,'Admin','2016-11-13 17:26:45','2020-08-15 08:44:29'),(380,'The Queen can do no wrong means','the Queen is above the law','the Queen acts on the advice of their ministers on matter of public policy','The Queen is the effective centre of power in the United Kingdom','The Queen has the loyalty of a vast number of the British population','','','a','','utme','2016',72,'Admin','2016-11-13 17:26:45','2020-08-19 21:07:00'),(381,'The main attributes of a state are','government, the police and the armed forces','population, territory, government and sovereignty','federal state and local governments','the press, the legislature, the executive and the judiciary','','','b','','utme','2016',91,'Admin','2016-11-13 17:26:45','2020-08-20 11:09:01'),(382,'Islam was introduced in Northern Nigeria','before the 13th century','in the 17th century','after the jihad of Uthman Dan Fodio','by the British in the early 20th century','','','c','','utme','2016',89,'Admin','2016-11-13 17:26:45','2020-08-19 21:06:58'),(383,'The Aro age-grade system in igboland was','a religious organization','a political organization','a commercial organization','an imperial organization','','','b','','utme','2016',75,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:28'),(384,'ECOWAS comprises','16 independent states','The whole Africa','All West African states','English speaking countries only','','','c','','utme','2016',89,'Admin','2016-11-13 17:26:46','2020-08-15 01:25:12'),(385,'Prior to the formation of the OAU in 1963, Nigeria Identified with the','Brazzaville Group','Casablanca group','Libreville Group','Monrovia Group','','','a','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-08-18 09:51:47'),(386,'How many countries are founding members of O. P. E. C?','13','5','18','25','','','b','','utme','2016',72,'Admin','2016-11-13 17:26:46','2020-08-19 09:12:23'),(387,'The foremost British trading company on the West African coast was','Royal Niger Company','United African Company','Lever Brothers','John Holt and Sons','','','c','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-08-20 10:09:50'),(388,'The Zikist Movement was popular for its','philosophy of non-violence','promotion of mass literacy','militant nationalism','encouragement of multi-party system','','','c','','utme','2016',75,'Admin','2016-11-13 17:26:46','2020-08-18 09:52:19'),(389,'Which of the following sets of factors contributed to the development of nationalism in Nigeria?','Racial discrimination and oppression','Corruption and ethnicity','Paternalism and indirect rule','Election malpractices and party differences','','','a','','utme','2016',79,'Admin','2016-11-13 17:26:46','2020-08-18 09:53:22'),(390,'Which constitution was created to legislate for the Lagos Colony and the Southern Provinces?','The Richard Constitution','The Clifford Constitution','The Lyttletion Constitution','the MacPherson Constitution','','','b','','utme','2016',83,'Admin','2016-11-13 17:26:46','2020-08-18 09:53:24'),(391,'Judges in Nigeria enjoy security of tenure','if they are appointed by the president','if they have the support of the Nigerian Bar Association','if they are of good behaviour','during the life of the government which appoints them','','','c','','utme','2016',85,'Admin','2016-11-13 17:26:46','2020-08-18 09:51:03'),(392,'Before the 1963 Constitution, the highest court of appeal for Nigeria was the','Supreme Court','Federal Court of Appeal','Privy Council','Federal High Court','','','c','','utme','2016',75,'Admin','2016-11-13 17:26:46','2020-08-19 21:06:58'),(393,'Which of the following is NOT a function of the Police Force in Nigeria?','Traffic control','Arrest of criminals','making of law','Prosecution of criminals','','','c','','utme','2016',72,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:06'),(394,'In Nigeria, the highest court for Muslims is the','Alkali Court','Sharia Court of Appeal','Supreme Court','Upper Area Court','','','b','','utme','2016',79,'Admin','2016-11-13 17:26:46','2020-08-18 09:51:46'),(395,'Who was appointed by the federal government of Nigeria as the administrator of western region in 1962?','Dr. M. A. Majekodunmi','Chief Odeleye Fadahunsi','Chief S. L. Akintola','Chief Remi Fani Kayode','','','c','','utme','2016',69,'Admin','2016-11-13 17:26:46','2020-08-18 09:53:23'),(396,'The head of state in the first republic of Nigeria was','an executive president','a nominal president','a party leader','a nominee of the whole country','','','b','','utme','2016',85,'Admin','2016-11-13 17:26:46','2020-08-18 09:51:47'),(397,'Which of the following parties formed the opposition in the House of Representatives during Nigerian first republic?','NCNC and NEPU','AG and UMBC','NPC and NNDP','NCNC and MDF','','','b','','utme','2016',87,'Admin','2016-11-13 17:26:46','2020-08-19 21:06:59'),(398,'A prominent feature of a presidential system of government is','dual executive','vote of no confidence','the rule of law','separation of powers','','','d','','utme','2016',84,'Admin','2016-11-13 17:26:46','2020-08-19 09:12:25'),(399,'The executive checks the excesses of the legislature through','assent to bills','the use of veto power','the ratification of treaties','issuance of orders','','','b','','utme','2016',69,'Admin','2016-11-13 17:26:46','2020-08-15 08:44:28'),(400,'The consciousness of a common identity of a people is called','nationalism','integration','indoctrination','emancipation','','','b','','utme','2016',86,'Admin','2016-11-13 17:26:46','2020-08-19 21:06:58'),(401,'Citizenship of a state by descent requires that','one is born and bred in the state','one’s mother was born in the state','one’s grandparents were citizens of that state','one is domiciled in that state','','','a','','utme','2016',76,'Admin','2016-11-13 17:26:46','2020-08-18 09:54:47'),(402,'In order to dispense justice impartially, the judiciary primarily needs','discipline','logistics','motivation','independence','','','d','','utme','2016',80,'Admin','2016-11-13 17:26:46','2020-08-18 09:51:36'),(403,'A state with a hegemonic political party is one in which','there is one dominant party','there is no opposition party','there is only one party','other parties are officially recognized','','','a','','utme','2016',87,'Admin','2016-11-13 17:26:46','2020-08-18 09:53:21'),(404,'Nigeria commitment to the liberation of Africa could best be seen in her policy towards','Namibia and Mozambique','the Congo and Zimbabwe','Sierra Leone and Chad','South Africa and Angola','','','d','','utme','2016',66,'Admin','2016-11-13 17:26:46','2020-08-18 09:53:22'),(405,'The set of policies on the basis of which countries interact with one another is called','constructive engagement policy','socio-economic policy','national policy','foreign policy','','','d','','utme','2016',110,'Admin','2016-11-13 17:26:46','2020-08-19 09:12:24'),(406,'Nigeria’s membership of the UN complements her foreign policy in the area of','bilateral diplomacy','regional diplomacy','sub-regional diplomacy','multi-lateral diplomacy','','','d','','utme','2016',85,'Admin','2016-11-13 17:26:47','2020-08-15 01:23:09'),(407,'Nigeria teamed up with other developing countries to assert a neutral posture under the platform of','Nationalist Movement','Pan - African Movement','Non - aligned Movement','Negritude Movement','','','c','','utme','2016',79,'Admin','2016-11-13 17:26:47','2020-08-18 09:49:46'),(408,'Nation-state is synonymous with','liberation','sovereignty','nationalism','self-actualization','','','b','','utme','2010',100,'Admin','2016-11-13 18:33:18','2020-08-20 00:00:39'),(409,'A fundamental component of political culture is','community structure','family values','economic values','social values','','','d','','utme','2010',109,'Admin','2016-11-13 18:33:18','2020-08-20 00:00:39'),(410,'A form of oligarchy in which gifted people are at the helm of affairs is','plutocracy','theocracy','gerontocracy','aristocracy','','','d','','utme','2010',95,'Admin','2016-11-13 18:33:18','2020-08-20 00:00:39'),(411,'A state that is ruled by an elected citizen is','a republic','a plutocracy','an empire','a monarchy.','','','a','','utme','2010',101,'Admin','2016-11-13 18:33:18','2020-08-18 09:49:29'),(412,'A true democracy in the modern sense exists where the','majority of the people vote','majority of the people rule','elite rules','elected representatives rule.','','','d','','utme','2010',102,'Admin','2016-11-13 18:33:18','2020-08-20 00:00:39'),(413,'In a parliamentary system, when the legislature passes a vote of no confidence on the executive, it means that the','executive is required to resign','legislature ceases to trust the executive','legislature commences legal proceeding against the executive','executive is expected to go on suspension','','','a','','utme','2010',107,'Admin','2016-11-13 18:33:18','2020-08-20 00:00:39'),(414,'The legislative body of the United States of America is the','Congress','National Assembly','Council','Parliament','','','a','','utme','2010',77,'Admin','2016-11-13 18:33:18','2020-08-18 09:52:20'),(415,'Unicameralism is a feature of the legislature in','the United Kingdom','the United States','Ghana','Israel','','','a','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-08-18 09:51:01'),(416,'The upper house in most federal systems is created to','oversee and check the lower house','prevent excesses of the executive','enable experienced elders make inputs to governance','ensure equality of federating units','','','d','','utme','2010',100,'Admin','2016-11-13 18:33:19','2020-08-19 09:12:22'),(417,'In which of the following systems is the power of the component units more than that of the central government?','Unitary.','Federal.','Confederal','Monarchical.','','','c','','utme','2010',87,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(418,'One of the general tenets of fascist doctrine is that the leader is','subordinate to the law of the state','weak relative to the constitution','subordinate to the norms of the society','supreme relative to the constitution','','','d','','utme','2010',96,'Admin','2016-11-13 18:33:19','2020-08-19 21:07:00'),(419,'In a cabinet system of government, executive power is exercised by the','president','monarch','dominant party','head of government','','','d','','utme','2010',99,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(420,'The principle of separation of powers is best practiced in the','monarchical system','parliamentary system.','feudal system','presidential system','','','d','','utme','2010',93,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(421,'A typical form of delegated legislation is','a decree','a bill','a bye-law','an act','','','c','','utme','2010',95,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(422,'16.\tThe rights of a citizen can be withdrawn by the state if the person','is convicted of a serious crime','leaves the country permanently','is pronounced dead','opposes the government violently.','','','a','','utme','2010',114,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(423,'An electoral process in which candidates are selected for elective offices by party members is','bye election','electoral college','general election','primary election.','','','d','','utme','2010',94,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(424,'In theory, one major advantage of the one-party systems is that it','promotes greater mass participation in government','serves as an instrument of national integration','guarantees social justice','eliminates intra-party conflict.','','','b','','utme','2010',92,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(425,'A tactic employed by pressure groups to achieve their objectives is','propaganda','electioneering campaign','lobbying','memorandum.','','','c','','utme','2010',95,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(426,'Public opinion can be measured through','strike action','referendum','rumour','negotiation.','','','b','','utme','2010',93,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(427,'Which of the following is the main function of the civil service?','Supporting the party in power.','Allocating resources to the federating units.','Mobilizing grassroots support for government.','Implementing government policies.','','','d','','utme','2010',79,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(428,'Who was the political head of the Old Oyo Empire?','Aremo.','Oyomesi.','Alaafin.','Bashorun.','','','c','','utme','2010',93,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(429,'The Igbo political system was based on','family ties','Umunna','Umuada','age grades','','','d','','utme','2010',101,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(430,'The Aro age-grade system in lgboland was','a commercial organization','a political organization','an imperial organization','a religious organization.','','','d','','utme','2010',92,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(431,'France introduced the policy of assimilation in her colonies primarily to','change their way of life','give them a sound education','discourage them from ritual killings','teach them the art of leadership','','','a','','utme','2010',103,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(432,'The foremost British trading company on the West African coast was','Lever Brothers','United African Company','John Holt and. Sons','Royal Niger Company','','','b','','utme','2010',101,'Admin','2016-11-13 18:33:19','2020-08-18 09:53:39'),(433,'Which of these rulers resisted colonial rule and was deported to Calabar?','Oba Ovoramwen.','King Dosunmu','King Jaja.','King Kosoko','','','b','','utme','2010',86,'Admin','2016-11-13 18:33:19','2020-08-19 09:12:22'),(434,'Nigerian nationalism was described as two-phased by','James S. Coleman','Edward Wilmot Blyden','David Ricardo','John Payne Jackson.','','','a','','utme','2010',88,'Admin','2016-11-13 18:33:19','2020-08-20 10:09:50'),(435,'One major weakness of the Independence constitution is that it','gave full powers to the Supreme Court in Nigeria','gave total independence to Nigeria','empowered Britain to continue to rule','failed to provide the country with full sovereignty.','','','d','','utme','2010',89,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(436,'The first law-making body in Nigeria after amalgamation was','Legislative Council','National Assembly','Regional Assembly','Nigerian Council.','','','a','','utme','2010',102,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(437,'The designation of ministers as chief executives and accounting officers was recommended by a commission headed by','Simeon Adebo','S.J.Cookey','Dotun Philips.','Jerome Udoji.','','','d','','utme','2010',95,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(438,'A major shortcoming of the Ombudsman is','its inability to restrain bureaucratic excesses','lack of clear-cut mandate','lack of executive power to enforce decisions','lack of adequate resources.','','','c','','utme','2010',96,'Admin','2016-11-13 18:33:19','2020-08-18 09:51:02'),(439,'One of the strong points of the multi-party system in Nigeria’s Fourth Republic is','government interference','wider political participation','wider anti-democracy campaign','the provision for a bicameral legislature.','','','b','','utme','2010',104,'Admin','2016-11-13 18:33:19','2020-08-20 11:18:23'),(440,'In which of the following is the ceremonial and executive powers fused?','Federal system of government','Parliamentary system of government','Unitary system of government','Presidential system of government','','','d','','utme','2010',92,'Admin','2016-11-13 18:33:19','2020-08-20 00:00:39'),(441,'A major contentious issue confronting Nigerian federalism is','health care delivery','education','revenue allocation','poverty','','','c','','utme','2010',104,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(442,'The main purpose of establishing public enterprises in Nigeria is to','enrich the elite','provide essential services','compete with the private sector','increase government revenue','','','b','','utme','2010',106,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(443,'Parastatals are established to','expand business transactions','maximize government profits','render social services','enhance entrepreneurial skills','','','c','','utme','2010',95,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(444,'The General Purpose Committee of the local government is the','body responsible for supervising self-help projects','local government public relations unit','body for awarding contracts','cabinet of the local government.','','','d','','utme','2010',96,'Admin','2016-11-13 18:33:20','2020-08-20 11:09:01'),(445,'The highest organ of the state during the Babangida Regime was the','Armed Forces Ruling Council','Supreme Military Council','Federal Executive Council .','Provisional Ruling Council.','','','d','','utme','2010',99,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(446,'Decree 34 of 1966 was unacceptable to many Nigerians because it was','promulgated without consultation with the people','perceived to abolish the federal system','considered as alien','seen as an instrument of impoverishment','','','a','','utme','2010',98,'Admin','2016-11-13 18:33:20','2020-08-18 09:49:29'),(447,'Nigeria broke diplomatic relations with France in 1961 because of:','her poor relations with the francophone countries','General de-Gaulle’s negative attitude towards her','France’s diplomatic relations with Israel','France’s atomic test in the Sahara Desert','','','d','','utme','2010',100,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(448,'An attribute that Nigeria shares with most non-aligned countries is','her large population','her heterogeneous population','her large size','the state of  her economy.','','','d','','utme','2010',91,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(449,'Nigeria spearheaded the formation of ECOWAS during the regime of','Murtala Muhammed','Yakubu Gowon','Ibrahim Babangida','Olusegun Obasanjo.','','','b','','utme','2010',111,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(450,'Nigeria was classified as a front line state for','spearheading the formation of African Union','supporting the liberation efforts in Southern Africa','helping to end the crisis in Liberia','participating in peacekeeping in the Congo','','','b','','utme','2010',86,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(451,'The prominent role Nigeria played in the UN in the 70’s earned her.','permanent representation at the UN','membership of the Security Council','chairmanship of the General Assembly','non-permanent membership position.','','','b','','utme','2010',107,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(452,'The head of Nigeria’s foreign mission in a Commonwealth nation is known as','ambassador','charge d’affaires.','attaché','high Commissioner','','','d','','utme','2010',100,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(453,'One major function of the Authority of Heads of State and Government of ECOWAS is','appointing staff of the Secretariat','appointing the Executive Secretary','preparing the budget of the Community','organizing international conferences','','','b','','utme','2010',84,'Admin','2016-11-13 18:33:20','2020-08-20 11:18:23'),(454,'The tenure of non-permanent members of the Security Council is','4 years','2 years','6 years','5 years','','','b','','utme','2010',119,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(455,'The Secretary-General of the United Nations is appointed by the','Permanent members of the Security Council on the   recommendation of the General Assembly','General Assembly on the recommendation of the Security Council','General Assembly in plenary session','Security Council acting alone.','','','b','','utme','2010',98,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(456,'The approval of treaties and agreements of the Economic Community of West African States is the responsibility of the','Council of Ministers','ECOWAS Tribunal','Assembly of Heads of State and Government','Secretariat.','','','c','','utme','2010',106,'Admin','2016-11-13 18:33:20','2020-08-20 00:00:39'),(457,'The distinctive attribute of a state is the monopoly of','control','power','violence','justice.','','','b','','utme','2012',77,'Admin','2016-11-13 18:42:18','2020-08-15 08:44:05'),(458,'State as a political entity refers to','an organized group within a definite territory','an association of men in a given society','a branch of a nation','a geographical location.','','','a','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-08-19 21:07:00'),(459,'Political values are acquired in any given society through','political re-orientation','political campaign','political socialization','political indoctrination.','','','c','','utme','2012',107,'Admin','2016-11-13 18:42:19','2020-08-20 11:18:23'),(460,'In a democratic government, political sovereignty is vested in the','legislature','elite','executive','electorate.','','','d','','utme','2012',87,'Admin','2016-11-13 18:42:19','2020-08-20 11:09:01'),(461,'One judicial function performed by the executive is','granting of amnesty','implementing judicial orders','ensuring obedience to the law','appointing judges.','','','a','','utme','2012',86,'Admin','2016-11-13 18:42:19','2020-08-20 11:09:01'),(462,'A governmental system in which constitutional supremacy resides in the centre is','federal','confederal','unitary','parliamentary.','','','c','','utme','2012',88,'Admin','2016-11-13 18:42:19','2020-08-19 21:06:59'),(463,'A political system which empowers the leader with the ultimate responsibility to execute laws is','parliamentarianism','presidentialism','dictatorship','autocracy.','','','b','','utme','2012',87,'Admin','2016-11-13 18:42:19','2020-08-19 21:07:00'),(464,'A bill is a draft which is awaiting the consideration of the','executive','party caucus','legislature','judiciary.','','','c','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-08-20 11:18:23'),(465,'The private ownership of the means of production is a feature of','capitalism','socialism','communalism','communism.','','','a','','utme','2012',75,'Admin','2016-11-13 18:42:19','2020-08-18 09:53:37'),(466,'In a feudal system, the two major classes are the serfs and the','masses','vassals','lords','elite.','','','c','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-08-15 00:48:44'),(467,'An example of a country with a flexible constitution is','South Africa','Britain','Benin Republic','the United States of America.','','','d','','utme','2012',82,'Admin','2016-11-13 18:42:19','2020-08-19 21:06:59'),(468,'The rule of law is a negation of','equality before the law','supremacy of the law','limited power','absolute power.','','','d','','utme','2012',82,'Admin','2016-11-13 18:42:19','2020-08-20 10:09:50'),(469,'To ensure the rights and freedom of citizens, the powers of the arms of government must be','fused','incorporated','separated','rotated.','','','c','','utme','2012',82,'Admin','2016-11-13 18:42:19','2020-08-19 09:12:23'),(470,'Delegated legislation is made by bodies other than the','president','governor','parliament','judiciary','','','c','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-08-15 08:43:15'),(471,'The bringing of a session of a parliament to an end through royal proclamation is known as','political impasse','dissolution of parliament','vote of no confidence','prorogation of parliament.','','','b','','utme','2012',77,'Admin','2016-11-13 18:42:19','2020-08-19 09:12:22'),(472,'The right of citizens to participate in the affairs of government of their country is called','economic right','civil right','political right','social light.','','','c','','utme','2012',87,'Admin','2016-11-13 18:42:19','2020-08-18 09:53:19'),(473,'The commission charged with the conduct of federal elections in Nigeria is','NEC','FEDECO','INEC','NECON.','','','c','','utme','2012',90,'Admin','2016-11-13 18:42:19','2020-08-18 09:53:22'),(474,'An electoral system in which parties are assigned seats in the parliament commensurate to the number of votes polled is','absolute majority','simple majority','proportional representation.','indirect election.','','','c','','utme','2012',82,'Admin','2016-11-13 18:42:19','2020-08-19 21:07:00'),(475,'An intra-party activity for the selection of candidates for elective positions is known as','primary election','general election','mid-term election','bye-election.','','','a','','utme','2012',92,'Admin','2016-11-13 18:42:19','2020-08-20 11:18:23'),(476,'The primary aim of pressure groups is to','attract people’s attention','protects the interest of members','capture political power','fight corrupt officials.','','','b','','utme','2012',85,'Admin','2016-11-13 18:42:19','2020-08-19 09:12:22'),(477,'Which of the following is used in gauging public opinion?','Constitution','.\t\t\\nEducational institution.','Mass media.','Electoral college.','','','c','','utme','2012',80,'Admin','2016-11-13 18:42:19','2020-08-18 09:53:24'),(478,'A permanent structure that facilitates continuity and guarantees orderly conduct in governance is','bureaucracy','public corporation','ombudsman','political party.','','','a','','utme','2012',100,'Admin','2016-11-13 18:42:19','2020-08-18 09:53:20'),(479,'In the Hausa pre-colonial political system, a district was headed by','a hakimi','a dagaci','an alkali','a waziri.','','','d','','utme','2012',79,'Admin','2016-11-13 18:42:19','2020-08-19 09:12:25'),(480,'Which of the following ensured the practice of democracy in the pre-colonial Yoruba political system?','Checks and balances.','Fusion of power.','Individual responsibility.','The rule of law.','','','a','','utme','2012',81,'Admin','2016-11-13 18:42:19','2020-08-20 11:18:23'),(481,'Colonization of Africa was mainly motivated by','security considerations','economic reasons','religious reasons','cultural factors.','','','b','','utme','2012',85,'Admin','2016-11-13 18:42:19','2020-08-18 09:54:46'),(482,'The French colonial system was underlined by the policy of','assimilation','paternalism','socialism','indirect rule.','','','a','','utme','2012',84,'Admin','2016-11-13 18:42:19','2020-08-18 09:51:36'),(483,'Radical nationalism in Nigeria is generally attributed to the influence of','Aminu Kano','Herbert Macaulay','Nnamdi Azikiwe','Mbonu Ojike.','','','b','','utme','2012',92,'Admin','2016-11-13 18:42:19','2020-08-19 09:12:24'),(484,'Two foreigners that directly aroused nationalist feelings among Nigerians are','Edward Blyden and Payne Jackson','Casely Hayford and James Horton','W.E.du Bois and H. O. Davies','Marcus Garvey and Casely Hayford.','','','d','','utme','2012',107,'Admin','2016-11-13 18:42:19','2020-08-18 09:53:22'),(485,'Members of the Senate in Nigeria’s First Republic were','elected directly by the people','elected by electoral college','nominated by regional and federal governments','nominated by the president of the house.','','','b','','utme','2012',68,'Admin','2016-11-13 18:42:19','2020-08-18 09:53:24'),(486,'In Nigeria, the agency mainly responsible for the maintenance of internal peace and security is the','Army','Navy','Civil Defense Corps','Police.','','','d','','utme','2012',97,'Admin','2016-11-13 18:42:20','2020-08-15 00:48:40'),(487,'The National Assembly in Nigeria is primarily responsible for','executing laws','interpreting laws','ratifying appointments','making laws.','','','d','','utme','2012',83,'Admin','2016-11-13 18:42:20','2020-08-18 09:51:35'),(488,'The major factor militating against the efficient operation of electoral commissions in Nigeria is','inadequate public support','population size','inadequate skilled manpower','excessive political interference.','','','d','','utme','2012',84,'Admin','2016-11-13 18:42:20','2020-08-20 11:09:01'),(489,'A major objective of the Public Complaints Commission is','training and promotion of public servants','settlement of disputes among individuals','addressing the grievances of individuals and groups','fighting corruption and indiscipline.','','','d','','utme','2012',79,'Admin','2016-11-13 18:42:20','2020-08-18 09:53:23'),(490,'The three registered political parties at the inception of Nigeria’s Fourth Republic were','PDP, DPP and PPA','PDP, AD and APP','PDP,  AD and PPA','PDP, APP and AC.','','','b','','utme','2012',80,'Admin','2016-11-13 18:42:20','2020-08-20 10:09:50'),(491,'The Sharia legal system was first introduced in the Fourth Republic in','Kano State','Katsina State','Zamfara State','Sokoto State.','','','c','','utme','2012',94,'Admin','2016-11-13 18:42:20','2020-08-20 11:18:23'),(492,'Quota system and federal character principles were entrenched in the 1979 Constitution to ensure','loyalty','economic empowerment','equity','even development.','','','d','','utme','2012',89,'Admin','2016-11-13 18:42:20','2020-08-18 09:53:40'),(493,'Workers in the public corporations are known as','civil servants','private employees','public servants','professional employees.','','','c','','utme','2012',80,'Admin','2016-11-13 18:42:20','2020-08-18 09:52:19'),(494,'The central objective of privatization in Nigeria is to','reduce the retrenchment of workers','encourage prompt payment of salaries','improve standard of living','improve the efficiency of enterprises.','','','d','','utme','2012',83,'Admin','2016-11-13 18:42:20','2020-08-18 09:53:22'),(495,'Military intervention in Nigeria arose from','perceived incapability of civilians to govern','international pressure for change','the desire for a military government','civilians’ desire to relinquish power.','','','a','','utme','2012',88,'Admin','2016-11-13 18:42:20','2020-08-18 09:54:46'),(496,'The first institution introduced by the military to exercise legislative power was the','Supreme Military Council','Armed Forces Ruling Council','Federal Executive Council','Provisional Ruling Council.','','','a','','utme','2012',83,'Admin','2016-11-13 18:42:20','2020-08-18 09:53:20'),(497,'The main focus of Nigeria’s foreign policy since independence centres on','south-south cooperation','sub-regionalism','globalism','Afrocentric.','','','d','','utme','2012',84,'Admin','2016-11-13 18:42:20','2020-08-18 09:49:46'),(498,'The country that championed decolonization in Africa was','Nigeria','South Africa','Ghana','Kenya.','','','c','','utme','2012',98,'Admin','2016-11-13 18:42:20','2020-08-20 10:09:50'),(499,'A major drawback to the NEPAD initiative is its','articulation by few African leaders','affiliation to the African union','inability to empower the youth','reliance on Western donors for funds.','','','d','','utme','2012',71,'Admin','2016-11-13 18:42:20','2020-08-18 09:49:45'),(500,'The structure of the African Union includes','The Court of Justice, Pan African Congress and People’s Assembly','Pan African Parliament, the Court of Justice and the Peace and Security Council','Specialized Technical Commission, the Court of Justice and Humanitarian Board','People’s Assembly, Humanitarian Board and the Peace and Security Council.','','','b','','utme','2012',79,'Admin','2016-11-13 18:42:20','2020-08-15 08:44:28'),(501,'ECOMOG at the initial stage of its intervention in Liberia was perceived as','neutral','incompetent','partisan','invaders.','','','d','','utme','2012',95,'Admin','2016-11-13 18:42:20','2020-08-18 09:54:48'),(502,'The African leader mostly credited for spearheading the formation of the African Union is','Muammar Ghaddafi','Abdelaziz Bouteflika','Abdoulaye Wade','Thabo Mbeki.','','','a','','utme','2012',72,'Admin','2016-11-13 18:42:20','2020-08-18 09:51:47'),(503,'One of the programmes binding members of the Commonwealth is the','food and aid programme','cultural programmes','agenda for peace','scholarship scheme.','','','d','','utme','2012',82,'Admin','2016-11-13 18:42:20','2020-08-19 21:06:59'),(504,'As part of the reforms in the UN, two slots were proposed in the Security Council for','Asia','Africa','America','Europe.','','','b','','utme','2012',80,'Admin','2016-11-13 18:42:20','2020-08-18 09:49:45'),(505,'The founding members of OPEC are','Algeria, Iran, Iraq, Saudi Arabia and Kuwait','Nigeria, Libya, Iran, Iraq and, Saudi Arabia','Venezuela, Nigeria, Libya, Iran and Iraq','Saudi Arabia, Iran, Iraq, Kuwait and Venezuela.','','','d','','utme','2012',88,'Admin','2016-11-13 18:42:20','2020-08-18 09:52:19'),(506,'Power that is delegated is exercised','indirectly','by devolution','directly','by coercion.','','','a','','utme','2013',81,'Admin','2016-11-13 20:36:42','2020-08-20 07:43:51'),(507,'De jure sovereignty is acquired through','force','law','grant','treaty.','','','b','','utme','2013',99,'Admin','2016-11-13 20:36:42','2020-08-20 07:43:51'),(508,'A group of people who live together under a common law within a definite territory is a','state','community','nation-state','nation.','','','a','','utme','2013',90,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(509,'Political socialization is associated with','free choice of party programmes','military take over of civilian government','the transmission of political values','political transition.','','','c','','utme','2013',87,'Admin','2016-11-13 20:36:43','2020-08-20 11:09:01'),(510,'According to Aristotle, a form of government in which the few rule for the benefit of all is','polyarchy','diarchy','aristocracy','autocracy.','','','c','','utme','2013',101,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(511,'Rule by the old people is known as','theocracy','monarchy','gerontocracy','feudalism.','','','c','','utme','2013',102,'Admin','2016-11-13 20:36:43','2020-08-20 10:09:50'),(512,'As an executive, the commissioner is charged with the responsibility of','making laws','implementing laws','writing laws','giving loans.','','','b','','utme','2013',115,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(513,'Rule adjudication is a primary function of the','legislature','judiciary','executive','government.','','','b','','utme','2013',93,'Admin','2016-11-13 20:36:43','2020-08-20 10:09:50'),(514,'The judiciary controls the executive in federal states through','motions','delegated legislation','judicial overview','judicial review.','','','d','','utme','2013',109,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(515,'One major advantage of the unitary system is that it tends to make government','strong and stable','free of controversy','distant from the people','popular among the masses.','','','a','','utme','2013',117,'Admin','2016-11-13 20:36:43','2020-08-20 11:09:01'),(516,'The presidential system differs from the parliamentary system of government in that','the tenure of office of the president is limited','the principle of collective responsibility applies','executive and legislative powers are fused','powers of the three arms of government are merged.','','','a','','utme','2013',105,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(517,'Which of the following advocates’ equitable distribution of wealth?','Plutocracy.','Capitalism.','Aristocracy.','Socialism.','','','d','','utme','2013',86,'Admin','2016-11-13 20:36:43','2020-08-19 21:01:31'),(518,'A constitution that is difficult to amend is','flexible','rigid','written','unwritten.','','','c','','utme','2013',91,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(519,'Which of the following constitutions is more suitable for centralization of political power?','Flexible constitution.','Unwritten constitution.','Rigid constitution','Written constitution.','','','d','','utme','2013',114,'Admin','2016-11-13 20:36:43','2020-08-20 10:09:50'),(520,'The act of transferring autonomous powers to subordinate agencies is','devolution','concentration','deconcentration','delegation.','','','a','','utme','2013',103,'Admin','2016-11-13 20:36:43','2020-08-19 21:01:31'),(521,'Which of the following types of citizenship cannot be withdrawn?','Citizenship by naturalization.','Citizenship by conquest.','Citizenship by birth.','Honorary citizenship.','','','c','','utme','2013',92,'Admin','2016-11-13 20:36:43','2020-08-19 21:01:31'),(522,'The right of citizens to vote is','adult suffrage','universal suffrage','nationality suffrage','electoral suffrage.','','','b','','utme','2013',95,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(523,'A political party is different from a pressure group in its','source of finance','objective','organization','strategy.','','','b','','utme','2013',86,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(524,'One of the functions of pressure groups is to','contest elections to serve the people','nominate the president','prepare the budget','articulate the opinion of their members.','','','d','','utme','2013',113,'Admin','2016-11-13 20:36:43','2020-08-20 10:09:50'),(525,'Public opinion refers to the','aggregate of attitudes held by members of the national assembly','aggregate views of groups on particular government activities','views held by the president of a country','views of the Chief Justice of a country.','','','b','','utme','2013',104,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(526,'The class that oversees the implementation of government decisions and policies is the','Administrative','Executive','Clerical','Technical.','','','b','','utme','2013',104,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(527,'The performance of ritual rites in the Yoruba empire is the responsibility of the','Oyo mesi','Aare-ona kakanfo','Oba','Ogboni.','','','d','','utme','2013',92,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(528,'Under the emirate system, the commander of the army is the','Alkali','Hakimi','Sarkin Fada','Madawaki.','','','d','','utme','2013',81,'Admin','2016-11-13 20:36:43','2020-08-20 10:09:50'),(529,'The indirect rule system of administration was more successful in Northern Nigeria because','the people were mainly interested in being governed indirectly','of the existence of an organized structure in the area','the Europeans ensured that the farmlands of the natives were not confiscated','the natives showed little or no resistance.','','','b','','utme','2013',97,'Admin','2016-11-13 20:36:43','2020-08-20 07:43:51'),(530,'The earliest nationalist activities in Nigeria were spearheaded by','educated elites','trade unions','traditional rulers','political parties.','','','a','','utme','2013',82,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(531,'The first notable nationalist movement in West Africa was the','National Congress of British West Africa','West African Students Union','Nigeria Youth Movement','Aborigines Rights Protection Society.','','','a','','utme','2013',83,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(532,'In Nigeria’s First Republic, the Prime Minister was both the','Head of government and a lawmaker','Head of State and Commander-in-Chief of the armed forces','Commander-in-Chief of the armed forces and Party leader','Head of State and Party leader.','','','a','','utme','2013',107,'Admin','2016-11-13 20:36:44','2020-08-19 21:07:00'),(533,'Under the 1979 Constitution, statutory allocation of revenue to local government councils is the responsibility of the','Council of State','Houses of Assembly','National Economic Council','Federal Legislature.','','','d','','utme','2013',105,'Admin','2016-11-13 20:36:44','2020-08-20 10:09:50'),(534,'Under Nigeria’s Second Republic, the Senate was under the leadership of','John Wash Pam','J. S. Tarka','Joseph Wayas','Godwin Ume-Ezeoke.','','','c','','utme','2013',105,'Admin','2016-11-13 20:36:44','2020-08-20 11:18:23'),(535,'The Revenue Mobilization, Allocation and Fiscal Commission is statutorily empowered to determine the remuneration of','all civil servants','only elected representatives','political office holders','employees of public corporations.','','','a','','utme','2013',89,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(536,'The primary function of the Code of Conduct Bureau is to','ensure due process by public officers','ensure minimum standard of morality','retain custody of declarations','receive declaration of assets.','','','d','','utme','2013',102,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(537,'The party system practiced in Nigeria’s Third Republic was','multi-party','two-party','zero-party','one-party.','','','b','','utme','2013',96,'Admin','2016-11-13 20:36:44','2020-08-19 21:06:58'),(538,'Nigeria adopted a federal system of government because of','the fear of domination of minorities','uneven development','the availability of limited resource','the adoption of a state religion.','','','a','','utme','2013',94,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(539,'The highest policy making body under the Gowon Regime was the','Federal Executive Council','Armed Forces Ruling Council','Provisional Ruling Council','Supreme Military Council.','','','d','','utme','2013',104,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(540,'Nigeria became a federation of thirty-six states during the era of','Yakubu Gowon','Ibrahim Babangida','Sani Abacha','Abdulsalami Abubakar.','','','d','','utme','2013',93,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(541,'Which of the following headed the committee that recommended the suitability of Abuja as a new federal city?','Justice Akinola Aguda.','Justice Buba Ardo.','Justice Atanda Fatai Williams.','Justice Udo Udoma.','','','a','','utme','2013',103,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(542,'A public corporation is managed by','the board of directors','a minister','a general manager','the board of governors.','','','a','','utme','2013',95,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(543,'A major source of revenue in the post -1976 local government in Nigeria is','the joint state-local government account','internally generated revenue','the federation account','grants and loans.','','','c','','utme','2013',102,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(544,'The Provisional Ruling Council was the highest ruling body during the regime of','Sani Abacha','Muhammadu Buhari','Ibrahim Babangida','Murtala Muhammed.','','','c','','utme','2013',87,'Admin','2016-11-13 20:36:44','2020-08-19 14:50:17'),(545,'Nigeria’s non-alignment policy in the sixties lacked real substance because of her','close ties with Britain','Afrocentric policy','poor economic potential','partnership with Asian countries.','','','a','','utme','2013',105,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(546,'Under the Technical Aid Corps, Nigerian experts are deployed to','Asia, Africa and the Pacific','Africa, the Pacific and the Caribbean','Europe, South America and Asia','the Pacific, the Caribbean and Europe.','','','b','','utme','2013',92,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(547,'The centre-piece of Nigeria’s foreign policy covers only','Asia','Europe','Africa','Latin America.','','','c','','utme','2013',87,'Admin','2016-11-13 20:36:44','2020-08-20 11:18:23'),(548,'Which of the following countries pioneered the establishment of ECOWAS alongside Nigeria?','Cameroun.','Ghana.','Togo.','Algeria.','','','c','','utme','2013',83,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(549,'Nigeria’s role in the African Union was most prominent during the regime of','President Ibrahim Babangida','President Olusegun Obasanjo','President Shehu Shagari','President Umaru Yar’adua.','','','b','','utme','2013',88,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(550,'A representative of a Commonwealth country in another member state is known as','High Commissioner','Consul-General','Ambassador','Attaché.','','','a','','utme','2013',105,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(551,'The organ of UN that promotes voluntary co­operation among member states in diverse areas is the','Security Council','International Court of Justice','General Assembly','Economic and Social Council.','','','d','','utme','2013',103,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(552,'The main representative body of the United Nations is the','Secretariat','Security Council','General Assembly','Trusteeship Council.','','','b','','utme','2013',98,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(553,'The AU differs from the OAU in having','no assembly of Heads of State','effective tools for decision enforcement.','no permanent headquarters','a minimum of divergent viewpoints','','','b','','utme','2013',87,'Admin','2016-11-13 20:36:44','2020-08-20 11:09:01'),(554,'OPEC has strong influence with the','IMF','EU','ADB','AU.','','','d','','utme','2013',108,'Admin','2016-11-13 20:36:44','2020-08-20 07:43:51'),(555,'The necessary attributes of a state are','resources, population, sovereignty and government','sovereignty, police, army and immigration','definite territory, population, sovereignty and government','police, army, sovereignty custom.','','','c','','utme','2014',85,'Admin','2016-11-13 20:49:36','2020-08-20 11:18:23'),(556,'The process of taking part in political and public affairs can be termed political','recognition','culture','participation','socialization','','','d','','utme','2014',83,'Admin','2016-11-13 20:49:40','2020-08-18 09:53:22'),(557,'Membership of a society is','conventional','mandatory','voluntary','constitutional','','','c','','utme','2014',123,'Admin','2016-11-13 20:49:40','2020-08-19 21:07:00'),(558,'In a democratic political system, the political sovereign is usually the','constitution','political parties','electorate','legislature','','','c','','utme','2014',69,'Admin','2016-11-13 20:49:40','2020-08-18 09:53:40'),(559,'One basic feature of a monarchical form of government is that','separation of powers is absolute','members of the executive are elected','succession is through heredity','the ruler has a fixed tenure','','','c','','utme','2014',74,'Admin','2016-11-13 20:49:40','2020-08-20 11:18:23'),(560,'One main advantage of bicameral legislature is that it','makes for quick deliberation during emergencies','makes passage of bills easy','is less cumbersome to pass bills','is not easy to manipulate bills','','','d','','utme','2014',72,'Admin','2016-11-13 20:49:40','2020-08-19 21:06:59'),(561,'The court that has ultimate power to interprets the constitution is the','Supreme Court','Magistrate Court','High Court','Court of Appeal','','','a','','utme','2014',97,'Admin','2016-11-13 20:49:40','2020-08-19 09:12:25'),(562,'Unitary system of government is more suitable to a country','that is sparsely populated','that possesses a strong and modern army','with a robust and dynamic economy','with a relatively small area and a homogenous population','','','d','','utme','2014',90,'Admin','2016-11-13 20:49:40','2020-08-18 09:52:19'),(563,'An example of a country ruled by a constitutional monarch is','Uganda','Morocco','Italy','Libya','','','c','','utme','2014',90,'Admin','2016-11-13 20:49:40','2020-08-18 09:51:01'),(564,'The development of a classless society is the goal of','conservatism','feudalism','liberalism','maxims','','','d','','utme','2014',78,'Admin','2016-11-13 20:49:40','2020-08-18 09:53:23'),(565,'A flexible constitution is one which is','easily amended','popular with the legislators','known to all the citizens','written by the parliament','','','a','','utme','2014',72,'Admin','2016-11-13 20:49:40','2020-08-15 01:23:10'),(566,'Which of the following is a feature of checks and balances?','judicial precedent','Judicial immunity','Judicial review','Code of conduct','','','c','','utme','2014',82,'Admin','2016-11-13 20:49:40','2020-08-18 09:53:38'),(567,'Laws made by military governments at the state level are called','decrees','bye-laws','edicts','acts','','','a','','utme','2014',80,'Admin','2016-11-13 20:49:40','2020-08-19 09:12:24'),(568,'Citizenship is acquired by an alien through','registration','birth','conferment','naturalization','','','d','','utme','2014',81,'Admin','2016-11-13 20:49:40','2020-08-18 09:53:22'),(569,'The officer responsible for announcing the result of an election is known as','ballot officer','presiding office','returning officer','electoral officer','','','c','','utme','2014',90,'Admin','2016-11-13 20:49:40','2020-08-18 17:45:36'),(570,'The ultimate aim of political parties is to','implement people-oriented programmes','acquire and exercise power','increase the political awareness of the electorate','formulate and implement policies','','','b','','utme','2014',84,'Admin','2016-11-13 20:49:40','2020-08-20 10:09:50'),(571,'The main objective of pressure groups is to','promote the interest of political parties','influence legislation for the benefit of their members','protect the interest of the country against foreigners','serve as opposition to the government','','','b','','utme','2014',76,'Admin','2016-11-13 20:49:40','2020-08-20 11:18:23'),(572,'Which of the following is not a dimension of public opinion?','Polling','Orientation','intensity','Substance','','','a','','utme','2014',85,'Admin','2016-11-13 20:49:40','2020-08-18 09:51:36'),(573,'The body that is responsible for the appointment, discipline, promotion and dismissal of civil servants is the','Ministry of Establishment','Bureau for Public Service Reforms','Civil Service Commission','Ministry of Labour and Productivity','','','c','','utme','2014',77,'Admin','2016-11-13 20:49:40','2020-08-15 08:44:06'),(574,'In the pre-colonial Hausa political system, the Madawaki performed the function of','Minister of Education','Minister of Defense','Minister of Interior','Minister of works','','','b','','utme','2014',74,'Admin','2016-11-13 20:49:40','2020-08-19 21:07:00'),(575,'In the Old Oyo Empire, the Ajele','ensured good governance of the districts','mobilized the army','was the Head of the army','ensured the safety of all trade routes','','','a','','utme','2014',87,'Admin','2016-11-13 20:49:40','2020-08-18 09:54:48'),(576,'The General Strike of 1945 was caused primarily by the','harshness in trade laws as it concerns the Africans','government’s rejection of a demand for an increase of 50 percent in the cost of living allowance','persistent implementation of discriminatory laws','disparity in the criteria for employment','','','a','','utme','2014',84,'Admin','2016-11-13 20:49:40','2020-08-15 00:47:34'),(577,'Before 1945, the component units of Nigeria were','districts','provinces','states','regions','','','b','','utme','2014',71,'Admin','2016-11-13 20:49:41','2020-08-15 00:48:46'),(578,'Nationalists agitation began in Nigeria with the','Lagos protest against water rate in 1908','introduction of indirect rule','annexation of Lagos in 1861','formation of West Africa Youth League','','','b','','utme','2014',64,'Admin','2016-11-13 20:49:41','2020-08-18 09:53:38'),(579,'The emergence of nationalism was essentially the result of the ills of','independence','slavery','colonialism','imperialism','','','c','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-07-14 15:19:11'),(580,'Which of the following nationalists was the founder of Nigeria’s first political party?','Abubakar Tafawa Balewa','Ahmadu Bello','Nnamdi Azikiwe','Herbert Macaulay','','','d','','utme','2014',75,'Admin','2016-11-13 20:49:41','2020-08-18 09:53:22'),(581,'The division of powers between the federal and regional governments into exclusive, concurrent and residual lists was done by the','1999 Constitution','Independence Constitution','Republican Constitution','1979 Constitution','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-08-18 09:49:46'),(582,'The Nigerian Independence Constitution was modified by the','1963 Constitution','1999 Constitution','1989 Constitution','1979 Constitution','','','a','','utme','2014',89,'Admin','2016-11-13 20:49:41','2020-08-18 09:51:48'),(583,'The President of Nigeria was indirectly elected through secret ballot for a period of five years by the senate in','1983','1960','1963','1979','','','c','','utme','2014',63,'Admin','2016-11-13 20:49:41','2020-08-18 09:53:38'),(584,'The main function of the Federal Character Commission in Nigeria is','ensuring fair representation of all states in the public service','reviewing unfair administrative decisions','settling disputes among societies','providing free social services to the citizens','','','a','','utme','2014',67,'Admin','2016-11-13 20:49:41','2020-08-20 11:09:01'),(585,'The power of appointing the chairman of the Independent National Electoral Commission is vested in the','Judicial Council','Council of State','President','Senate','','','c','','utme','2014',79,'Admin','2016-11-13 20:49:41','2020-08-18 09:53:20'),(586,'The NCNC and the NPC facilitated the creation of the','Mid-West Region','Northern Region','Western Region','Eastern Region','','','a','','utme','2014',75,'Admin','2016-11-13 20:49:41','2020-08-19 21:06:59'),(587,'One of the major problems of Nigerian federalism is','lack of revenue to cater for the demands of the federation','inadequate manpower to fill vacancies','imbalance in the structure and sizes of units of federation','pre-colonial administrative structure among the units of federation','','','c','','utme','2014',68,'Admin','2016-11-13 20:49:41','2020-08-18 09:53:21'),(588,'Which of the following was done during the Gowon administration to reduce regional structural imbalance in the federation?','Appointment of ministers','Creation of states','Increase in revenue allocation','Formation of political parties','','','b','','utme','2014',80,'Admin','2016-11-13 20:49:41','2020-08-20 11:09:01'),(589,'A problem of public corporations in Nigeria is','choice of leadership','public control','emphasis on subsidies','wastage of resources','','','d','','utme','2014',87,'Admin','2016-11-13 20:49:41','2020-08-18 09:51:34'),(590,'One feature of public corporations that was weakened by privatization is','social control','national integration','social harmony','government control','','','d','','utme','2014',76,'Admin','2016-11-13 20:49:41','2020-08-19 09:12:24'),(591,'One of the main duties of the Local Government Service Commission is to','supervise and manage the personnel of local governments','conduct election into Local Council','create an enabling working environment for council workers','handle requests for the creation of more local governments','','','a','','utme','2014',87,'Admin','2016-11-13 20:49:41','2020-08-15 08:43:14'),(592,'The option A4 model was used in the conduct of the','2007 elections','1983 elections','1993 elections','1999 elections','','','c','','utme','2014',82,'Admin','2016-11-13 20:49:41','2020-08-19 21:06:58'),(593,'The review of Nigeria foreign policy under the Murtala/Obasanjo regime was done by','Udoji Committee','Aboyade Committee','Adedeji Commission','Philips Commission','','','c','','utme','2014',80,'Admin','2016-11-13 20:49:41','2020-08-20 11:18:23'),(594,'Which of the following is a guiding principle of Nigeria’s foreign policy?','Total opposition to the Cold War','Posting of only carrier diplomats as envoys','Interference in the affairs of African countries','Decolonization of all African states','','','d','','utme','2014',87,'Admin','2016-11-13 20:49:41','2020-08-20 11:09:01'),(595,'The Technical Aids Corps was established during the regime of','Olusegun Obasanjo','Sani Abacha','Ibrahim Babangida','Muhanmmadu Buhari','','','a','','utme','2014',78,'Admin','2016-11-13 20:49:41','2020-08-18 09:54:46'),(596,'The granting of asylum to Charles Taylor by Nigeria was to','protect Nigerians in Liberia','promote peace in Liberia','defy the western powers','Control Liberia','','','b','','utme','2014',72,'Admin','2016-11-13 20:49:41','2020-08-15 01:23:11'),(597,'Nigeria is regarded as a frontline state because she','sent policemen for peacekeeping in Namibia','assisted the liberation struggle in Southern Africa','assisted ECOMOG troops in Liberia','sent troops for peacekeeping Somalia.','','','b','','utme','2014',78,'Admin','2016-11-13 20:49:41','2020-08-19 21:06:59'),(598,'The reason behind Nigeria’s suspension from the Commonwealth in 1995 was','legal','political','economic','socio-cultural','','','b','','utme','2014',80,'Admin','2016-11-13 20:49:41','2020-08-20 11:09:01'),(599,'Commonwealth nations are represented in other member nations by','charge d’ affaires','ambassadors','high commissioners','attaches','','','c','','utme','2014',80,'Admin','2016-11-13 20:49:41','2020-08-19 21:06:59'),(600,'The UN succeeded the','Warsaw Pact','NATO','SEATO','League of Nations','','','d','','utme','2014',86,'Admin','2016-11-13 20:49:41','2020-08-19 21:07:00'),(601,'The number of permanent members of the UN Security Council is','eight','five','six','seven','','','b','','utme','2014',75,'Admin','2016-11-13 20:49:41','2020-08-18 09:52:20'),(602,'The Secretary General of the OAU holds office for a renewable period of','six years','three years','four years','five years','','','c','','utme','2014',81,'Admin','2016-11-13 20:49:41','2020-08-18 09:53:20'),(603,'Former colonies of Britain belong to the association known as','OECD','NATO','European Union','Commonwealth','','','d','','utme','2014',66,'Admin','2016-11-13 20:49:41','2020-08-18 09:51:02'),(604,'Government refers to all the following, except','an institution of the state','the process of ruling a political community','the exercise of power and authority','the act of civil disobedience.','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:25','2020-08-18 09:53:40'),(605,'Government as the act of governing means the','activities of pressure groups and political parties','act of vetoing a bill','orders of judiciary and legislature','activities by which governmental policies are made and implemented','','','d','','wassce','1988',71,'Admin','2016-11-13 21:14:26','2020-08-18 09:53:39'),(606,'Unwritten constitution means that the constitution is','not written down','based only on conventions.','not contained in any single book','in draft','','','c','','wassce','1988',68,'Admin','2016-11-13 21:14:26','2020-08-18 09:53:38'),(607,'The delegation of Administrative Powers to the local units with the central supervision and control is called.','devolution','decentralization','deconcentration','centralization','','','a','','wassce','1988',99,'Admin','2016-11-13 21:14:26','2020-08-20 11:18:23'),(608,'Which of the following is not the function of the government?','Building of roads, bridges, canals, etc.','Provision of education.','Maintenance of relations with other states.','Provision of all the material needs of all citizens.','','','d','','wassce','1988',80,'Admin','2016-11-13 21:14:26','2020-08-15 00:48:58'),(609,'A flexible constitution can only be amended by','two-third (2/3) majority vote in the legislature.','referendum.','three-quarter (3/4) majority vote in the legislature.','simple majority vote in the legislature.','','','d','','wassce','1988',47,'Admin','2016-11-13 21:14:26','2020-08-19 09:12:21'),(610,'Which one of the following countries has an unwritten constitution?','Great Britain','France','United States of America','Federal Republic of Germany','','','a','','wassce','1988',77,'Admin','2016-11-13 21:14:26','2020-08-18 09:54:09'),(611,'A rigid constitution is said to be best suited for a','Federal Government','Socialist','Military Government','Unitary Government','','','a','','wassce','1988',67,'Admin','2016-11-13 21:14:26','2020-08-18 09:53:18'),(612,'Federal Election were held in Nigeria in','1946, 1951, 1954, 1979 and 1983','1954, 1959, 1964, 1979 and 1983.','1923, 1946, 1951, 1979 and 1983','1954, 1960, 1964, 1979 and 1983','','','b','','wassce','1988',70,'Admin','2016-11-13 21:14:26','2020-08-15 00:48:28'),(613,'The two components of sovereignty are','the rule of law and fundamental human rights.','political power and political authority','political culture and political socialization.','political independence and supreme authority of the state within its territory.','','','d','','wassce','1988',58,'Admin','2016-11-13 21:14:26','2020-08-18 09:53:02'),(614,'Nigeria broke diplomatic relations with Israel in 1973 because of Israeli.','recognition of Biafra.','occupation of Egyptian territory','refusal to give aid to Nigeria.','economic relations with South Africa.','','','b','','wassce','1988',77,'Admin','2016-11-13 21:14:26','2020-08-19 09:12:22'),(615,'The United Nations Organization [UNO] has its headquarters in','Britain','USSR','USA','China','','','c','','wassce','1988',71,'Admin','2016-11-13 21:14:26','2020-08-18 09:52:07'),(616,'The state is different from the government because','The state unlike the government is permanent','.\\nThe government is made up of powerful people.','Members of the government are elected.','The state is created by God.','','','a','','wassce','1988',68,'Admin','2016-11-13 21:14:26','2020-08-19 09:12:20'),(617,'A state is a special form of human association because it','has a legitimate monopoly of life and death penalties over its citizens','is the richest association in society.','has a constitution approved by the citizens','can punish law breakers','','','a','','wassce','1988',64,'Admin','2016-11-13 21:14:26','2020-08-19 09:12:23'),(618,'Which of the following is not relevant to communism','Democracy','Violent revolution','Friedrich Engels','Private Enterprise.','','','d','','wassce','1988',58,'Admin','2016-11-13 21:14:26','2020-08-18 09:54:10'),(619,'A Nigeria citizen can only be deprived of his citizenship if he is','condemned to death.','convicted by a Court of law','married to a foreigner','holding a dual citizenship.','','','d','','wassce','1988',66,'Admin','2016-11-13 21:14:26','2020-08-18 09:52:08'),(620,'In the process of governing. OUTPUT refers to','the influence of pressure group','demand of the political system','the decision of the government.','the opinion of the electorate','','','d','','wassce','1988',61,'Admin','2016-11-13 21:14:26','2020-08-18 09:53:20'),(621,'Another word for red-tapism is','democracy','autocracy','idiosyncrasy.','bureaucracy','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:27','2020-08-18 09:52:08'),(622,'Rule adjudication is the main function of the','Executive','President','legislature','judiciary','','','d','','wassce','1988',69,'Admin','2016-11-13 21:14:27','2020-08-18 09:52:06'),(623,'The major problem that arose from the 1979 election centred around the','inability of many voters to find their names on the voters register','cancellation of election results in many constituencies because of alleged irregularities','inability of some dissatisfied candidates to seek redress in the Court of law.','controversy over the presidential election result.','','','d','','wassce','1988',81,'Admin','2016-11-13 21:14:27','2020-08-19 09:12:21'),(624,'The following are the key factors which influence Nigeria’s foreign relations except','peaceful co-existence','economic dependence.','non-interference','respect for territorial integrity.','','','b','','wassce','1988',59,'Admin','2016-11-13 21:14:27','2020-08-20 11:18:23'),(625,'The independent of Nigeria was in 1945 with the coming to power in Britain of','Conservative party','Tory party','Liberal party','Labour party','','','d','','wassce','1988',77,'Admin','2016-11-13 21:14:27','2020-08-18 09:54:10'),(626,'Which of the following is not an accepted way of resolving international conflict','Diplomacy.','Non-military use of force.','Propaganda','Nuclear war.','','','d','','wassce','1988',72,'Admin','2016-11-13 21:14:27','2020-08-18 09:53:08'),(627,'The membership of the Council of States in Nigeria is made up of','Federal Ministers','State commissioners','State governors','the State Governors and the Head of State.','','','d','','wassce','1988',58,'Admin','2016-11-13 21:14:27','2020-08-20 10:09:50'),(628,'The common wealth is','an economic organization','made up of all independent ex-colonies of Britain','made up of all countries who are friendly with Britain.','made up of independent European countries.','','','b','','wassce','1988',71,'Admin','2016-11-13 21:14:27','2020-08-18 09:53:39'),(629,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known as the','Bales','Obas','Ogboni','Oyomesi.','','','d','','wassce','1988',91,'Admin','2016-11-13 21:14:27','2020-08-20 11:09:01'),(630,'The declaration of a state of emergency in Western Nigeria was protected by the constitution of','1954','1951','1960','1963','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:27','2020-08-20 11:09:01'),(631,'The primary purpose of the state is to','establish a system of law and order','train people to become good citizens','cater for all the needs of the citizens','ensure the self sufficiency of its people','','','a','','wassce','1988',63,'Admin','2016-11-13 21:14:27','2020-08-18 09:54:08'),(632,'The Armed Forces Ruling Council came into existence under the','Buhari Administration','Gowon  Administration','Ironsi Administration','Babangida Administration','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:27','2020-08-18 09:53:39'),(633,'Which of the following is not a specialized agency of the United Nations Organization?','World Health Organization','The Food and Agriculture Organization','The international Labour Organization','General Assembly','','','d','','wassce','1988',89,'Admin','2016-11-13 21:14:27','2020-08-18 09:53:02'),(634,'The creation of the office of the Prime Minister in Nigeria was accomplished in','1951','1954','1957','1959','','','c','','wassce','1988',59,'Admin','2016-11-13 21:14:27','2020-08-18 09:53:07'),(635,'Which of the following is not a function of a party secretariat?','Electing the leader of the party','Organizing party conferences','Publishing the party’s manifesto','Planning party strategy to win election','','','a','','wassce','1988',61,'Admin','2016-11-13 21:14:27','2020-08-18 09:51:55'),(636,'The first Military President of Nigeria is','Lt. General Olusegun Obasanjo','Major General J.T.U. Aguiyi-Ironsi','Major General Ibrahim Babangida','General Murtala Muhammed','','','c','','wassce','1988',69,'Admin','2016-11-13 21:14:27','2020-08-20 11:09:01'),(637,'The following factors favoured the introduction of indirect rule in Nigeria except the','Shortage of manpower','Shortage of funds','Existence of a system of taxation','Existence of educated elites','','','d','','wassce','1988',68,'Admin','2016-11-13 21:14:27','2020-08-18 09:53:03'),(638,'The psychological support a regime gets from its citizens. If they believe the regime is right and ought to be obeyed is known as','Sovereignty','power','authority','legitimacy','','','d','','wassce','1988',53,'Admin','2016-11-13 21:14:27','2020-08-19 09:12:21'),(639,'The voluntary activities of members of a society in the selection of rulers is known as','political participation','political socialization','political decision','political culture','','','a','','wassce','1988',69,'Admin','2016-11-13 21:14:27','2020-08-20 11:09:01'),(640,'Residual powers under the Nigerian independence constitution were the powers exercised by','the Federal Government','the Regional Governments','the Local Government','both the Federal and Regional Governments','','','b','','wassce','1988',70,'Admin','2016-11-13 21:14:27','2020-08-15 00:47:34'),(641,'The highest court of appeal under the Republican constitution of Nigeria was the','Federal High Court','Judicial Committee of the Privy Council','Regional court of Appeal','Supreme Court','','','d','','wassce','1988',64,'Admin','2016-11-13 21:14:27','2020-08-18 09:54:08'),(642,'Nigeria became a federation of 19 states in','1875','1976','1967','1978','','','b','','wassce','1988',65,'Admin','2016-11-13 21:14:27','2020-08-18 09:54:09'),(643,'A popular form of proportional representation is','communal representation','single transferable vote','the alternative vote','the second ballot','','','a','','wassce','1988',66,'Admin','2016-11-13 21:14:27','2020-08-19 09:12:21'),(644,'A political concept that is composed of the attitudes, beliefs, emotions and values of a society is called political','culture','single transferable vote','authority','socialization','','','a','','wassce','1988',68,'Admin','2016-11-13 21:14:28','2020-08-15 00:48:59'),(645,'flexible constitution is advantageous because it','guarantees political stability','prevents the passing of hasty bills by the legislature','can cope with emergency periods','allows for continuity','','','c','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-08-18 09:53:39'),(646,'The Economic community of West Africa state (E.C.O.W.A.S) is','an economic association','a political association','a cultural association','a social association','','','a','','wassce','1988',60,'Admin','2016-11-13 21:14:28','2020-08-18 09:52:54'),(647,'Which of the following is not an aim of the Organization of African Unity (O.A.U)','Promotion of unity and solidarity among African states','Co-operation of efforts to achieve a better life for the African people','Defense of the sovereignty and independence of African state','Enthronement of democratic governments in Africa.','','','d','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-08-18 17:45:36'),(648,'It is the duty of a government to perform all the following functions, except','Preventing internal disorder','Ensuring security of life and property','Providing basic welfare services','Providing all the needs of its citizens','','','d','','wassce','1988',73,'Admin','2016-11-13 21:14:28','2020-08-19 09:12:21'),(649,'Which of the following concepts is out of place?','Fascism','Welfarism','Totalitarianism','Authoritarianism','','','b','','wassce','1988',83,'Admin','2016-11-13 21:14:28','2020-08-18 09:54:08'),(650,'The primary objective of all political parties is to','Promote the general interest of members of the public','Eradicate corruption in public life','Control the government','Campaign for vote','','','c','','wassce','1988',61,'Admin','2016-11-13 21:14:28','2020-08-15 00:47:34'),(651,'The French policy of Assimilation','was a device to transfer technology to Africa','was the same in theory as the British policy of indirect rule','was aimed at converting Africans to Frenchmen','enabled the French to stay in Africa','','','c','','wassce','1988',71,'Admin','2016-11-13 21:14:28','2020-08-18 09:53:01'),(652,'Military Governors were members of the Supreme Military Council under the','Murtala Mohammed Regime','Yakubu Gowon Regime','Ibrahim Babangida Regime','Olusegun Obasanjo Regime','','','b','','wassce','1988',63,'Admin','2016-11-13 21:14:28','2020-08-18 09:54:09'),(653,'The use of forced labour was one of the features of','British colonial policy','French colonial policy','American colonial policy','Divide and rule policy','','','b','','wassce','1988',73,'Admin','2016-11-13 21:14:28','2020-08-19 09:12:22'),(654,'The controversy over the 1979 Presidential election result was','over the dispute on the conduct of the election','because educated Nigerians did not approve who received the number of votes','due to the interpretation of ¼   of the vote cast in 2/3 of all the states in the Federation.','because the winning candidate did not pay his taxes as and when due in the past three years.','','','c','','wassce','1988',84,'Admin','2016-11-13 21:14:28','2020-08-18 09:53:20'),(655,'All the following were frontline fighters for Nigeria’s Independence except','Obafemi Awolowo','Nnamdi Azikiwe','Lateef Jakande','Amino Kano','','','c','','wassce','1988',78,'Admin','2016-11-13 21:14:28','2020-08-15 01:23:15'),(656,'It is argued that most of the new States of Africa cannot remain faithful to the doctrines of non-alignment mainly because of','corruption','ethnic problems','bad leadership','poor economy','','','d','','wassce','1988',72,'Admin','2016-11-13 21:14:28','2020-08-18 09:53:18'),(657,'The first political party in Nigeria was','National Council of Nigerian Citizens (N.C.N.C)','Nigerian National Democratic Party (N.N.D.P)','Action group (A. G)','Northern Peoples Congress (N.P.C)','','','b','','wassce','1988',66,'Admin','2016-11-13 21:14:28','2020-08-18 09:53:02'),(658,'To which of these countries did Nigeria send peacekeeping force?','South Africa','Angola','Chad','Namibia','','','c','','wassce','1988',72,'Admin','2016-11-13 21:14:28','2020-08-18 09:54:09'),(659,'In the federation, the purpose of enumerating the powers of the central government is to','ensure efficient administration','ensure greater unity','reduce the financial burden of the units','limit its powers against those of the units','','','d','','wassce','1988',73,'Admin','2016-11-13 21:14:28','2020-08-18 05:13:19'),(660,'The ultimate aim of a communist system of government is \tthe distribution of goods and services according to','age','qualification','party loyalty','need, want and ability','','','d','','wassce','1988',84,'Admin','2016-11-13 21:14:28','2020-08-18 09:53:08'),(661,'Under what system of government does the state require ownership and control of the means of production for its use in benefiting the population?','Capitalism','Socialism','Feudalism','Welfarism','','','b','','wassce','1988',67,'Admin','2016-11-13 21:14:28','2020-08-19 09:12:21'),(662,'The question of civil war was raised for the first time at the \tmeeting of the O.A.U in September 1967 in','Kampala','Addis Ababa','Lagos','Kinshasa','','','d','','wassce','1988',74,'Admin','2016-11-13 21:14:28','2020-08-20 10:09:50'),(663,'Nigeria objected to the discussion of the civil war in the O.A. U. summit on the grounds that','it amount to interference in its internal affairs','some African countries recognized Biafra','Tanzania and Ivory Coast recognized Biafra','the resolution of the conflict was difficult','','','a','','wassce','1988',62,'Admin','2016-11-13 21:14:28','2020-08-18 09:52:07'),(664,'Government is the machinery established to manage the affairs of','rulers','aliens','the civil service','the state','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:41','2020-08-19 09:12:20'),(665,'The judicial organ of government is the body which','implements the law','makes the law','punishes lawmakers','interprets the law','','','d','','wassce','1989',74,'Admin','2016-11-13 21:30:42','2020-08-18 09:54:09'),(666,'Which of the following is a false description of the first Nigeria Prime Minister? He','was first among equals','presided over the cabinet','was the Head of Government','exercised the prerogative of mercy','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:42','2020-08-15 00:50:52'),(667,'The twelve state structure was created in Nigeria in','1965','1966','1967','1974','','','c','','wassce','1989',72,'Admin','2016-11-13 21:30:42','2020-08-18 09:54:09'),(668,'The laws which the state legislators make normally pass through','the commissioner','the process of deliberations','the judiciary','some committees in the civil service','','','b','','wassce','1989',101,'Admin','2016-11-13 21:30:42','2020-08-20 10:09:50'),(669,'In the parliamentary system of government, ministers are','chosen from the House as well as outside','collectively responsible to parliament','representatives of various interests in the country','not members of the legislature','','','b','','wassce','1989',77,'Admin','2016-11-13 21:30:42','2020-08-19 09:12:22'),(670,'Any type of restricted franchise is a violation of principle of','constitutionalism','sovereignty','political equally','popular election','','','c','','wassce','1989',65,'Admin','2016-11-13 21:30:42','2020-08-20 10:09:50'),(671,'Which of the following is not the responsibility of the Electoral Commission in Nigeria?','Swearing in of members of the House of Assembly','Counting and publication of election results','delimitation of constituencies','Compilation of electoral register','','','a','','wassce','1989',76,'Admin','2016-11-13 21:30:42','2020-08-19 09:12:21'),(672,'Which of the following is not civic obligation of a citizen?','Obedience to law','payment of taxes','voting during elections','freedom of conscience and religion','','','d','','wassce','1989',81,'Admin','2016-11-13 21:30:42','2020-08-20 11:18:23'),(673,'The study of Government offers an individual all the following, except a','knowledge of his rights and duties','training in good citizenship','knowledge of the processes of government','training to become a judge','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:42','2020-08-18 09:54:10'),(674,'Voting started in Nigeria in 1923 because the Clifford Constitution of 1922 granted','decolonization','independence','an elective principle','self-government','','','c','','wassce','1989',80,'Admin','2016-11-13 21:30:42','2020-08-18 09:53:40'),(675,'The organ of the UNO which can impose mandatory sanctions on any of its members is the','International Court of Justice','Economic and Social Council','General Assembly','Security Council','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:42','2020-08-18 09:53:38'),(676,'A unified - local government system was adopted in Nigeria under the','Tafawa Balewa administration','Yakubu Gowon administration','Shehu Shagari administration','Murtala / Obasanjo administration','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:42','2020-08-19 09:12:22'),(677,'The two parties which formed the coalition government in 1959 were the','NPC and the NCNC','NCNC and the AG','NPC and the NNA','PRP and the UPGA','','','a','','wassce','1989',77,'Admin','2016-11-13 21:30:42','2020-08-18 09:52:06'),(678,'Which of the following is not written into independence constitution of 1960?','Fundamental human rights','Exclusive powers','Concurrent list','Role of political parties','','','d','','wassce','1989',83,'Admin','2016-11-13 21:30:42','2020-08-18 09:53:08'),(679,'The process of depriving persons of the right of voting is known as','enfranchisement','disqualification','dismissal','disenfranchisement','','','d','','wassce','1989',71,'Admin','2016-11-13 21:30:42','2020-08-18 09:53:20'),(680,'The predominant influence of Northern Nigeria in the First Republic violated the federal principle of','effective co-operation among the constituent units','geographical contiguity','unity','absence of marked inequalities among the component units','','','d','','wassce','1989',64,'Admin','2016-11-13 21:30:42','2020-08-18 09:53:19'),(681,'Bicameralism refers to','a one chamber legislature','the process of voting in the legislature','the upper chamber in a legislature','a two-chamber legislature','','','d','','wassce','1989',73,'Admin','2016-11-13 21:30:43','2020-08-12 18:43:54'),(682,'The head of state under the independence constitution of Nigeria was','an absolute monarch','a constitution monarch','imposed by the British','invested with executive power','','','b','','wassce','1989',73,'Admin','2016-11-13 21:30:43','2020-08-20 11:09:01'),(683,'The principle of separation of powers implies that the three main organs of government work','separately','independently but co-operatively','against one another','reluctantly and gradually for the executive','','','b','','wassce','1989',64,'Admin','2016-11-13 21:30:43','2020-08-20 11:09:01'),(684,'The emergency powers conferred on the Federal Government under the independence constitution was first exercised in the','Western Region','Mid-Western Region','Eastern Region','Northern Region','','','a','','wassce','1989',64,'Admin','2016-11-13 21:30:43','2020-08-18 09:53:08'),(685,'A sovereign state in one','whose constitution can only be changed by a military government','where its citizens can speak without fear or favour','in which sovereignty is invested in the military','whose government decisions are made independent of foreign interference','','','d','','wassce','1989',71,'Admin','2016-11-13 21:30:43','2020-08-18 09:52:06'),(686,'Which of the following is not a component of political culture?','Attitudes','Beliefs','Emotions','Age','','','d','','wassce','1989',69,'Admin','2016-11-13 21:30:43','2020-08-18 09:53:39'),(687,'Representative democracy is characterized by','free election and proper register of voters','unlimited expenditure of political parties','a politically educated electorate','representation of the poor only','','','a','','wassce','1989',72,'Admin','2016-11-13 21:30:43','2020-08-18 09:53:01'),(688,'The ratification of the appointment and dismissal of an Emir in the pre-colonial Fulani Empire was done by the','Empire of Lafiagi and the Etsu of pategi','Emirs of Kano and Katsina','Emirs of Gwandu and Sokoto','Emir of llorin','','','c','','wassce','1989',65,'Admin','2016-11-13 21:30:43','2020-08-19 09:12:22'),(689,'The primary function of a legislature is the','appointment of the president','making of laws','voting of bills','monitoring of the judiciary','','','b','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-08-18 09:54:10'),(690,'Which of the following title among the Igbos in the pre-colonial era required substantial wealth before one could acquire it','Ofo','Okpara','Ozo','Eze','','','c','','wassce','1989',75,'Admin','2016-11-13 21:30:43','2020-08-15 00:49:59'),(691,'According to Marxist theory, those who own and control the means of production in a capitalist society are','exploiters','colonialists','workers','bourgeoisie','','','d','','wassce','1989',66,'Admin','2016-11-13 21:30:43','2020-08-20 11:09:01'),(692,'The head of the Oyomesi in the old Oyo Empire was','Aremo','Are Onakakanfo','Olowo','Bashorun','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:43','2020-08-19 09:12:22'),(693,'The head of the Nigerian Mission to the Commonwealth of Nations is','an Ambassador','a Consular','the Minister of External Affairs','a High Commissioner','','','d','','wassce','1989',71,'Admin','2016-11-13 21:30:43','2020-08-18 09:53:38'),(694,'While political parties aim at forming a government, pressure groups aim at','imposing a military rule','causing social unrest','influencing government decisions','controlling a nation’s economy','','','c','','wassce','1989',76,'Admin','2016-11-13 21:30:43','2020-08-18 09:53:03'),(695,'Nigeria does not maintain diplomatic relations with South Africa because of the latter’s','industrial policy','apartheid policy','foreign policy','agricultural policy','','','b','','wassce','1989',61,'Admin','2016-11-13 21:30:43','2020-08-20 11:09:01'),(696,'Which of the following countries does not operate a federal constitution?','USA','Canada','Nigeria','France','','','d','','wassce','1989',74,'Admin','2016-11-13 21:30:43','2020-08-18 09:54:10'),(697,'Socialism developed as a protest against the evils of','monarchy','oligarchy','feudalism','capitalism','','','d','','wassce','1989',73,'Admin','2016-11-13 21:30:43','2020-08-18 09:52:54'),(698,'The major advantage of the secret ballot is that','it is faster than other systems','nobody can be prevented from voting','it ensures the anonymity of each voter','losers can ask for another secret vote','','','c','','wassce','1989',93,'Admin','2016-11-13 21:30:43','2020-08-18 09:54:10'),(699,'One of the first action of military governments when they take over power in Nigeria is to','detain all the politicians','appoint new ministers and commissioners','tour the country to explain why they have taken over','suspend the constitution','','','d','','wassce','1989',58,'Admin','2016-11-13 21:30:43','2020-08-18 09:54:10'),(700,'A parliamentary-cabinet system of government is practiced in','Canada','Nigeria','the Soviet Union','all European countries','','','a','','wassce','1989',75,'Admin','2016-11-13 21:30:43','2020-08-18 09:53:08'),(701,'Foreign policy refers to','a policy made by a foreign country','a policy made by a country for foreigners','a policy made by a country when it is at war','the general principles which govern a state’s international behaviour','','','d','','wassce','1989',90,'Admin','2016-11-13 21:30:43','2020-08-20 10:09:50'),(702,'The constitution of the Federal Republic of Nigeria','promotes unity in diversity','allows for the dominance of the minority ethnic groups','concentrates governmental power at one level of government','advances the interest of the rich','','','a','','wassce','1989',75,'Admin','2016-11-13 21:30:43','2020-08-18 09:53:08'),(703,'Which of the following is not an objective in foreign policy?','Prestige','Large population','Territorial integrity','Survival','','','b','','wassce','1989',62,'Admin','2016-11-13 21:30:43','2020-08-18 09:54:10'),(704,'The principle of anonymity of civil servants means that they are','career officers','not the servants of a particular government','trained for the duties they perform','not credited or blamed for anything they do','','','d','','wassce','1989',85,'Admin','2016-11-13 21:30:43','2020-08-20 11:18:23'),(705,'During the 1964 Federal elections there was a total boycott of voting in','the Western Region','Lagos','the Northern Region','the Eastern Region','','','d','','wassce','1989',72,'Admin','2016-11-13 21:30:43','2020-08-18 09:52:07'),(706,'Which of the following is not a pressure group? The','Nigerian Farmers’ Council','Nigerian Union of Teachers','National Party of Nigeria','Academic Staff Union of Universities','','','c','','wassce','1989',58,'Admin','2016-11-13 21:30:43','2020-08-15 01:23:01'),(707,'Which of the following is not a public corporation? The','Nigerian Ports Authority','National Sports Commission','National Youth Service Corps','Nigerian Railway Corporation','','','c','','wassce','1989',70,'Admin','2016-11-13 21:30:43','2020-08-20 11:09:01'),(708,'Which of the following is not an academic discipline in which a student of Government can specialize','Public Administration','Local Government','Political Territory','Public Education','','','d','','wassce','1989',68,'Admin','2016-11-13 21:30:43','2020-08-18 09:53:07'),(709,'The Republican Constitution of 1963 was indigenous because it was approved by','a referendum','the representatives of the people in parliament','the British parliament','the colonial government','','','b','','wassce','1989',67,'Admin','2016-11-13 21:30:43','2020-08-20 10:09:50'),(710,'Local government reforms were carried out by the Federal Military Government in','1966','1967','1970','1976','','','d','','wassce','1989',67,'Admin','2016-11-13 21:30:44','2020-08-19 09:12:21'),(711,'With which country did Nigeria break diplomatic relations in 1963 for exploding a nuclear device in the Sahara?','The Soviet Union','The U.S.A','China','France','','','d','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-08-20 11:09:01'),(712,'The first political party in Nigeria was formed after the introduction of the','Richard constitution','Clifford constitution','Bourdillon constitution','Macpherson constitution','','','b','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-08-18 09:51:56'),(713,'Which of the following did not formally recognize Biafra’ as an independent state?','Sierra Leone','Tanzania','Gabon','Zambia','','','d','','wassce','1989',76,'Admin','2016-11-13 21:30:44','2020-08-18 09:53:03'),(714,'When there is a conflict between the regional and federal laws under the concurrent legislative list, the','Federal laws would prevail','Federal laws would be declared null and void','regional laws would prevail','Head of State would settle the conflict','','','a','','wassce','1989',74,'Admin','2016-11-13 21:30:44','2020-08-18 09:54:09'),(715,'Nigeria hosted the meeting of Commonwealth Heads of State in','1965','1966','1967','1968','','','b','','wassce','1989',70,'Admin','2016-11-13 21:30:44','2020-08-18 09:53:19'),(716,'A fascist regime is both','representative and accountable','responsive and responsible','fair and legitimate','authoritarian and totalitarian','','','d','','wassce','1989',70,'Admin','2016-11-13 21:30:44','2020-08-18 09:53:19'),(717,'Which of the following is not a function of the Secretary-General of the United Nations Organization?','Supervising the Secretariat','Interpreting the treaties','Alerting the Security Council on any matter that may threaten international peace','Making annual report','','','b','','wassce','1989',65,'Admin','2016-11-13 21:30:44','2020-08-19 09:12:21'),(718,'Capitalism often encourages','Private ownership of the means of production','Deconcentration of political and economic powers in the same hands','A centrally planned economy','Public ownership of all forms enterprises','','','a','','wassce','1989',71,'Admin','2016-11-13 21:30:44','2020-08-18 09:54:08'),(719,'Which of the following African countries has diplomatic relations with South Africa?','Malawi','Zambia','Gabon','Tanzania','','','a','','wassce','1989',72,'Admin','2016-11-13 21:30:44','2020-08-18 09:53:19'),(720,'Citizens who are legally qualified to vote form','Political parties','A Trade Union Congress','Members of the House of House Assembly','The electorate','','','d','','wassce','1989',77,'Admin','2016-11-13 21:30:44','2020-08-18 09:54:10'),(721,'Election among candidates from the same party before the final elections are called','Primaries','Running Mates','Second ballots','Party conventions','','','a','','wassce','1989',69,'Admin','2016-11-13 21:30:44','2020-08-18 09:54:08'),(722,'Which of the following countries is not a member of the Economic Community of West African States (ECOWAS)?','Nigeria','Cameroun','Ghana','Togo','','','b','','wassce','1989',66,'Admin','2016-11-13 21:30:44','2020-08-20 11:09:01'),(723,'The international organization formed after the Second World War to guarantee international peace and security is the','World Bank','United Nations Organization','League of Nations','British Commonwealth of Nations','','','b','','wassce','1989',73,'Admin','2016-11-13 21:30:44','2020-08-18 09:52:55');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `history` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `history` VALUES (1,'Islam was introduced in Northern Nigeria  ','before the 13th century  ','in the 17th century  ','in the 19th century  ','in the 18th century ','','','a','','posr-utme-aaua','2013',723,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(2,'Lagos became the crown colony in  ','1914','1861','1886','29-Mar-05','','','c','','posr-utme-aaua','2013',720,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(3,'In the pre-colonial Igbo political system, which of the following was the most democratic organ of government','The Umand ','Eze  ','Isu  ','Ohanaeze','','','d','','posr-utme-aaua','2013',748,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(4,'A historical feature of the legislative council that met in 1923 was that for the first time it  ','included the official members who were Nigerians  ','included only British officials  ','included elected African members ','acted in a deliberative capacity  ','','','d','','posr-utme-aaua','2013',743,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(5,'When was the emirate system of administration introduced in Northern Nigeria? ','19th century ','20th century ','18th century  ','17th century ','','','c','','posr-utme-aaua','2013',743,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(6,'Pre-colonial Igbo society was  ','centralised ','acephalous','feudal  ','capitalist ','','','b','','posr-utme-aaua','2013',758,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(7,'The Colonial Administration in Nigeria was  ','Authoritarian','Democratic  ','A&B  ','None of the above ','','','a','','posr-utme-aaua','2013',740,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(8,'In the traditional Hausa-Fulani political system, political authority was vested in the  ','Emir  ','Talakawa  ','Alkali ','Emirate Council ','','','a','','posr-utme-aaua','2013',745,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(9,'In the Oyo empire, the Alaafin was ','an absolute monarch  ','popularly elected  ','a constitutional  monarch ','worshipped as deity ','','','a','','posr-utme-aaua','2013',739,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(10,'The concept of Indirect Rule in Nigeria is usually associated with  ','Sir George T.  Goldie  ','Claude Macdonald  ','Lord Lugard  ','Consul Philip ','','','c','','posr-utme-aaua','2013',773,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(11,'The Lagos Colony and the Southern Protectorate of Nigeria were joined in the year ','1904','1906','1910','1914','','','b','','posr-utme-aaua','2013',726,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(12,'The Committee that recommended Abuja as the New Federal Capital was headed by  ','Graham Douglas  ','Mamman Nasir  ','Rotimi Williams  ','Akinola Aguda ','','','d','','posr-utme-aaua','2013',758,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(13,'In the Oyo traditional political system, the Alaafin of Oyo was elected or chosen by a group known ','Ogbon','Oyo Mesi ','Baale','Ohanaeze','','','b','','posr-utme-aaua','2013',753,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(14,'Galadima in the emirate refers to  ','a village head  ','the office in charge of the army  ','the administrator of the capital city  ','a judge ','','','c','','posr-utme-aaua','2013',778,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(15,'Which of the following was the last to win Independence from colonial rule?  ','Cote d I oi e','Algeria  ','Tanzania  ','Angola ','','','d','','posr-utme-aaua','2013',756,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(16,'Which of the following made the earliest contact with the Nigerian societies?  ','The Portuguese ','The Germans  ','The British ','The French','','','a','','posr-utme-aaua','2013',766,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(17,'In the pre-colonial Yoruba society, the power of the Oyo Mesi were checked by  ','Baale  ','Ogboni  ','Are Ona Kankafo  ','Bashorun ','','','d','','posr-utme-aaua','2013',726,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(18,'The Ogboni Cult in the pre-colonial Yoruba political system played the role of the  ','judiciary  ','executive  ','police  ','legislation ','','','a','','posr-utme-aaua','2013',763,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(19,'The Aro system in Igboland was a ','Political organisation  ','Commercial organisation  ','Religious organisation  ','Imperial organisation ','','','c','','posr-utme-aaua','2013',742,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(20,'Which of the following formalised colonial penetration into Africa?  ','Paris Treaty  ','Berlin Conference  ','Lagos Treaty  ','Cape Coast ','','','b','','posr-utme-aaua','2013',758,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(21,'An acephalous pre-colonial system is best represented by the  ','Oyo Empire  ','Igbo political organisation  ','Ijaw political organisation  ','Benin Empire ','','','b','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(22,'The use of forced labour was one of the features of  ','British colonial policy  ','French colonial policy  ','American colonial policy  ','divide and rule ','','','b','','posr-utme-aaua','2013',739,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(23,'During the early colonial period in Nigeria, the governor ruled the protectorate by  ','Crown Colony Orders  ','Proclamation  ','Order?in-Council  ','The Act of Parliament ','','','d','','posr-utme-aaua','2013',739,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(24,'The ratification of the appointment and dismissal of an emir in the pre-colonial Fulani empire was done by','Emir of Kano  ','Emir of Sokoto  ','Emir of Gwandu  ','B & C','','','d','','posr-utme-aaua','2013',744,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(25,'In the Hausa/Fulani traditional political system jingali was  ','one of the sources of revenue to cattle owners  ','tax paid on cattle  ','a property tax paid to land owners ','a type of flat rate tax ','','','b','','posr-utme-aaua','2013',726,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(26,'Which of the following titles among the Igbos in the pre-colonial era required substantial wealth before one could acquire it?','Obi  ','Eze  ','Ozo  ','Ofo ','','','c','','posr-utme-aaua','2013',764,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(27,'Nigerian educated elites agitated against colonial rule  ','by bribing colonial governors  ','through lobbying  ','through newspapers ','by fighting civil war ','','','c','','posr-utme-aaua','2013',752,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(28,'In the absence of the existence of traditional rulers in the Igbo communities the British Colonial administration appointed','Eze  ','Obi  ','Ozo  ','Warrant chiefs ','','','d','','posr-utme-aaua','2013',745,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(29,'The colonial government whose constitution introduced elective principle into Nigerian politics was  ','Arthur Richards  ','Fredrick Lugard  ','Hugh Clifford  ','John Macpherson ','','','c','','posr-utme-aaua','2013',729,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(30,'The introduction of indirect rule in eastern Nigeria led to the Aba Women Riots of  ','1914','1929','1935','1916','','','b','','posr-utme-aaua','2013',759,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(31,'A chief could be deposed in the pre-colonial era if he  ','violated the written constitution  ','persistently neglected the advice of the elders  ','refuse to collect taxes for the Britishs  ','married too many wives ','','','b','','posr-utme-aaua','2013',719,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(32,'Which of the following in the pre-colonial era had integrated political structure  ','Tiv  ','Ilaje ','Jukun  ','Nupe ','','','d','','posr-utme-aaua','2013',717,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(33,'The Yoruba, Edo, Nupe, and Ibo languages are classified as belonging to the  ','Arabic  ','Kwa-sub group  ','Kaw sub group  ','Kai sub group ','','','b','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(34,'Archaeology findings in Ugbo-Ukwu are suggestive of rich  ','Agricultural potentials  ','cultural civilization  ','mineral deposit  ','all of the above ','','','b','','posr-utme-aaua','2013',742,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(35,'Geographically, Nigeria lies between latitudes  ','40 and 140  ','4 and 100   ','140 and 4  ','all of the above ','','','a','','posr-utme-aaua','2013',761,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(36,'Ali Ghaji s  eig  e ded i  Ka e  Bo o in  ','1501','1502','1503','1504','','','d','','posr-utme-aaua','2013',746,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(37,'All of the following are renowned historians except  ','Prof Ade Ajayi ','Prof Toyin Falola  ','Prof Obaro Ikime  ','Prof Akin Oyebade ','','','d','','posr-utme-aaua','2013',762,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(38,'In Yorubaland, the concept which derived mainly from the wave of dispersal that attended the process of state formation is known as','Omo iya  ','Ebi  ','Oduduwa  ','all of the above ','','','b','','posr-utme-aaua','2013',741,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(39,'Oron and Ekoi people of the Cross River Basin might have migrated to Nigeria through the  ','sea  ','mountain  ','sky  ','none ','','','a','','posr-utme-aaua','2013',703,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(40,'The Portuguese first visited Benin around  ','1485','1484','1486','1483','','','a','','posr-utme-aaua','2013',770,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(41,'Songhai Empire fell in... ','1591','1691','1791','1891','','','a','','posr-utme-aaua','2013',726,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(42,'The Head of the Sokoto Caliphate was known as  ','Sultan  ','Caliph  ','Emir  ','Alhaji ','','','b','','posr-utme-aaua','2013',750,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(43,'The Ekitiparapo war lasted for  ','10 years  ','16 years  ','100years','50 years ','','','b','','posr-utme-aaua','2013',757,'Admin','0000-00-00 00:00:00','2020-08-17 09:50:10'),(44,'Yoruba inter-state wars lasted for  ','16 years  ','10 years  ','100 years  ','50 years ','','','c','','posr-utme-aaua','2013',737,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(45,'The Sokoto Jihad led to the formation of Islamic States in following States except  ','Senegal  ','Mali  ','Chad  ','Togo ','','','d','','posr-utme-aaua','2013',768,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(46,'Be li   Af i a   o fe e e took pla e et ee  ','1884 and 1885  ','1885 and 1886  ','1886 and 1887  ','1883 and 1884 ','','','a','','posr-utme-aaua','2013',732,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(47,'???. and slave raiding were complementary exercises among the Yoruba  ','farming  ','hunting  ','war  ','diplomacy ','','','c','','posr-utme-aaua','2013',719,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(48,'The 1804 Jihad in Northern Nigeria could be referred to all except  ','Sokoto Jihad  ','Uthman Dan Fodiyo Jihad  ','Fulani Jihad  ','Seku Ahmadu Jihad ','','','d','','posr-utme-aaua','2013',739,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(49,'Samori Toure was captured in 1893 by  ','French imperialism  ','British imperialism  ','Germany imperialist  ','none of the above ','','','a','','posr-utme-aaua','2013',743,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45'),(50,'The first independence day speech in Nigeria was given by??.','Muhammadu Buhari','Obafemi Awolowo','Tafawa Balewa','Nnamdi Azikwe','','','c','','posr-utme-aaua','2013',731,'Admin','0000-00-00 00:00:00','2020-08-20 11:08:45');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `image` (\n  `id` int(11) NOT NULL AUTO_INCREMENT,\n  `url` text NOT NULL,\n  `name` varchar(200) NOT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=MyISAM DEFAULT CHARSET=latin1;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `insurance` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `insurance` VALUES (1,'Which of the following policies will prevent loss of home if the wage earner dies?','Term assurance','Endowment assurance','Mortgage insurance','Whole life assurance','','','c','','wassce','2014',76,'Admin','2017-01-09 12:28:06','2020-07-14 15:23:56'),(2,'One of the objectives of buying a term assurance policy is to','protect  dependants  in  case  of  death  of  the  life assured','reduce financial burden of the life assured','supplement retirement income  of  the  life  assured','maximize savings from the life assured','','','a','','wassce','2014',69,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:57'),(3,'An assurance policy taken by experts to cover possible negligence arising from their duties is','consequential loss','professional indemnity','cargo','freight','','','b','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:58'),(4,'The class of insurance that  covers  legal  liability to a third party for bodily injury and property damage caused by goods supplied is','employer’s liability','public liability','professional indemnity','products liability','','','d','','wassce','2014',80,'Admin','2017-01-09 12:28:08','2020-07-14 15:23:59'),(5,'The  type  of  cover  that  is  designed  against  loss  of earnings following loss caused by fire and special perils is','product guarantee insurance','materials damage cover','fire damage policy','consequential loss cover','','','d','','wassce','2014',51,'Admin','2017-01-09 12:28:08','2020-08-13 12:52:49'),(6,'Which  of  the  following  risks  is  covered  by  insurance policy?','An investment loss on the stock market','Dishonesty of an employee leading to fraud','Failure of a business venture','Rise and fall of prices of goods in the market','','','b','','wassce','2014',70,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:01'),(7,'In  classification  of  risks, what is the name given to a risk  where  the  causes  of  events are linked to factors \tthat are due to the society we live in?','Dynamic risk','Particular risk','Speculative risk','Fundamental risk','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:02'),(8,'The evidence of the insurance contract is','proposal form','policy','schedule','endorsement','','','b','','wassce','2014',60,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:03'),(9,'The right of the insurer to step in place of the insured for the purpose of recovering damages is called','representation','indemnity','subrogation','contribution','','','c','','wassce','2014',75,'Admin','2017-01-09 12:28:08','2020-08-20 11:09:54'),(10,'Which of the following is a contract of benefit?','Personal accident insurance','Business interruption insurance','Fire insurance','Money insurance','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:08','2020-08-20 11:09:54'),(11,'Which of the following is not a feature of insurable interest?','Loss suffered','subject matter','Legal relationship','Financial value','','','a','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:06'),(12,'A prospective insured in an engineering insurance may be advised to purchase one of the following classes of insurance','fire cover','boiler cover','tempest cover','equipment cover','','','d','','wassce','2014',78,'Admin','2017-01-09 12:28:08','2020-08-20 11:09:54'),(13,'The class of non-life insurance policy where cover note is issued is','fire insurance','burglary insurance','motor insurance','fidelity guarantee','','','c','','wassce','2014',71,'Admin','2017-01-09 12:28:08','2020-08-13 06:19:42'),(14,'Abandonment is mostly applicable to','marine insurance','motor insurance','fire insurance','engineering insurance','','','b','','wassce','2014',82,'Admin','2017-01-09 12:28:08','2020-07-14 15:24:09'),(15,'Which of the following is not a benefit covered under a personal accident policy?','Death','Temporary disablement','Loss of baggage','Medical expenses','','','c','','wassce','2014',72,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:10'),(16,'In the preparation of food for eat - in - customers, the cooks made a mistake in using excess quantity of an \tingredient. A customer ate and  suffered  poisoning. \tWhich policy of the operator would pick this liability?','Public liability','Personal liability','All risks insurance','Loss of profit insurance','','','a','','wassce','2014',75,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:11'),(17,'How much premium will the insurer charge?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','b','','wassce','2014',90,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(18,'How  much  premium  will  the  insurer  return  to  the insured?','N= 3,750','N= 13,750','N= 17,500','N= 31,250','XYC Industries Limited proposed a fire risk to Adequate Insurance Plc. on a total sum insured of N= 5,000,000.00. The risk was accepted on a premium rate of 0.35%. After survey, the insurer charged a rate of 0.275%.','','a','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:13'),(19,'A policy that combines cover for many perils as a single policy  to  suit  the  insurance  needs of  an insured is','accident policy','protection policy','paternal policy','packaged policy','','','d','','wassce','2014',79,'Admin','2017-01-09 12:28:09','2020-08-20 11:09:54'),(20,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','wassce','2014',86,'Admin','2017-01-09 12:28:09','2020-08-20 11:09:54'),(21,'The document that sets out the list of items covered in insurance is a','manifest','bill of lading','policy list','policy specification or form','','','d','','wassce','2014',94,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:16'),(22,'One of the information contained in a motor insurance cover note is the','behaviour of the insured','occupation of the insured','commencement date','previous and present insurance history','','','c','','wassce','2014',81,'Admin','2017-01-09 12:28:09','2020-08-20 11:09:54'),(23,'In property insurance, which of the following is not a direct loss?','Reinstating the property destroyed','Replacing the property destroyed','Repairing the property damaged','Replacing third party property damaged','','','d','','wassce','2014',83,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:18'),(24,'Ade insured his property for N= 350,000.00. The property is subject to average condition. He suffered a loss amounting to N= 30,000.00 with the value of the property at the time of loss to be N= 370,000.00. How much will the insurer pay?','N= 14,583.33','N= 28,378.38','N= 30,000.00','N= 31,714.29','','','d','','wassce','2014',71,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(25,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of dispute','resolution of policy','','','a','','wassce','2014',79,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(26,'An insurer who buys reinsurance cover is insured as','retrocession','retrocedant','cession','cadent','','','d','','wassce','2014',73,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(27,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(28,'Family income option in a life policy provides that','the beneficiary will be paid for life','the beneficiary receives the policy sum','interest will be added monthly','salary will be paid to the insured until death','','','b','','wassce','2014',78,'Admin','2017-01-09 12:28:09','2020-08-20 11:09:54'),(29,'A provision in a policy that exempts an insurer from liability if the loss is less than a certain amount is','excess','transfer','lay days','franchise','','','a','','wassce','2014',92,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(30,'Which of the following policies is a peril covered under a standard fire policy?','Lightning','Storm','Civil commotion','Escape of oil','','','a','','wassce','2014',65,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:34'),(31,'A type of reinsurance where cession and acceptance is obligatory is','treaty','captive','facultative','retrocession','','','a','','wassce','2014',81,'Admin','2017-01-09 12:28:09','2020-08-20 11:09:54'),(32,'A contract sold  by  insurance companies that  pay  a monthly or  quarterly income  benefit for the  life  of a person is','endowment','annuity','income','freight','','','b','','wassce','2014',84,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(33,'George effected two personal accident policies. The first policy provides N= 25,000.00 cover for loss of limb. The second policy provides N= 30,000.00 cover for loss of limb. What is the total amount that  George  will receive in the event of a valid loss of limb claim?','N= 5,000.00','N= 25,000.00','N= 30,000.00','N= 55,000.00','','','a','','wassce','2014',76,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:37'),(34,'Renewal notice is  used by  insurers  to  remind the insured of the','reduction of cover','continuation of cover','expiration of cover','increase of cover','','','b','','wassce','2014',86,'Admin','2017-01-09 12:28:09','2020-08-20 11:09:54'),(35,'Risk Net Insurance Brokers Limited placed a business with an insurance company, in return the broker will be entitled to','fees','commission','profit','revenue','','','b','','wassce','2014',69,'Admin','2017-01-09 12:28:09','2020-08-13 13:03:27'),(36,'The professional service required for effective claims administration by insurers would be provided by','loss assessors','risk managers','loss adjusters','claims consultants','','','c','','wassce','2014',73,'Admin','2017-01-09 12:28:09','2020-07-14 15:24:40'),(37,'Which  of the following activities is  not a  function of the  Chartered  Insurance  Institute  of  Nigeria?','Setting a standard for members','Promoting Professional growth','Promoting the interest of insurers','Specifying professional qualification','','','d','','wassce','2014',80,'Admin','2017-01-09 12:28:09','2020-08-20 11:09:54'),(38,'Effective supervision and licensing of insurance firms in Nigeria is the function of','National Insurance Commission','Institute of Loss Adjusters of Nigeria','Chartered Insurance Institute of Nigeria','Nigerian Corporation of Registered Insurance Brokers','','','a','','wassce','2014',81,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(39,'The payment made when the insured is  not  entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','wassce','2014',85,'Admin','2017-01-09 12:28:09','2020-08-13 13:02:48'),(40,'The owner of a life assurance policy who enters into an agreement to sell the ownership of the policy and beneficiary rights upon the death of the insured is called','an underwriter','a aviator','a factor','an assessor','','','d','','wassce','2014',78,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:43'),(41,'A small fixed sum retained by the insured in the form of a claim is','slip','severity','excess','frequency','','','b','','wassce','2014',74,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:44'),(42,'A voucher signed by the insured before collecting his claim is','money collect receipt','discharge voucher','payment receipt','pay - in - slip','','','b','','wassce','2014',83,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:45'),(43,'To which of the following parties does the principle of utmost good faith apply in a contract of insurance?','The proposer only','The insurer only','The insurer and proposer','The third party and insured','','','c','','wassce','2014',81,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:46'),(44,'Insurers A and B cover a risk at the ratio of 2:5 for the sum insured of N= 1,800. How much would insurer  A get from the risk?','N= 1,285.00','N= 771.00','N= 514.00','N= 180.00','','','c','','wassce','2014',80,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:47'),(45,'The consideration paid for insurance contract is','money','commission','premium','fee','','','c','','wassce','2014',71,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:48'),(46,'The alternative to seeking for surrender value in a life assurance contract is','automatic non - forfeiture','revival condition','paid-up policy','standing order','','','c','','wassce','2014',76,'Admin','2017-01-09 12:28:10','2020-08-13 13:02:48'),(47,'Which of the following is a risk covered in endowment assurance?','Permanent disability','Bodily injury','Temporary disability','Death cover','','','d','','wassce','2014',71,'Admin','2017-01-09 12:28:10','2020-08-13 13:03:27'),(48,'A <em>revival clause</em> in a life policy will allow an insured to revive a policy that lapsed on account of nonpayment of premium, provided the insured','can prove he is sick at the time','cannot fall sick after the policy','can prove he is in good health','can recover from the ill health','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:51'),(49,'Which of  the  following  risks  are  covered  under engineering insurance?','Material damage and liability cover','Boiler and special perils cover','Computer and explosion cover','Property damage and business interruption cover','','','d','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:52'),(50,'Which of the following is not a function of an insurance broker?','Assisting clients in paying premium','Maintaining proper records of claims','Assisting clients in connecting to insurers','Assisting clients in effecting uninsured loss','','','a','','wassce','2014',67,'Admin','2017-01-09 12:28:10','2020-07-14 15:24:53'),(51,'The primary function of insurance is','making profit','managing of risk','spreading of risk','prevention of accident','','','c','','model','1',89,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:54'),(52,'An  insurance  feature  that  requires  the  parties  to disclose  all  material  facts  about  the  agreement is known as','Adhesion','Disclosure','Material fact','Utmost good faith','','','b','','model','1',91,'Admin','2017-01-09 13:02:56','2020-08-20 11:09:54'),(53,'An insurance principle that requires the insured to be honest and disclose all relevant facts is called','subrogation','utmost good faith','proximate cause','insurable interest','','','b','','model','1',93,'Admin','2017-01-09 13:02:56','2020-08-13 13:03:27'),(54,'The facts which might influence any party’s willingness to enter the contract or reject it is called','insurable fact','insurance fact','insured fact','material fact','','','d','','model','1',71,'Admin','2017-01-09 13:02:56','2020-07-14 15:24:57'),(55,'A  statement  of  fact  that  the insured must have an interest in the object of the contract is called','warranty','insurable interest','subrogation','object interest','','','b','','model','1',65,'Admin','2017-01-09 13:02:56','2020-08-13 13:02:48'),(56,'A fundamental condition which must be filled  by the  insured for compensation is','warranty','obligation','interest','premium','','','a','','model','1',73,'Admin','2017-01-09 13:02:57','2020-07-14 15:24:59'),(57,'The object of an insurance policy is equally known as','insurance title','insurance premium','subject matter','risk object','','','c','','model','1',69,'Admin','2017-01-09 13:02:57','2020-08-13 13:03:27'),(58,'In insurance contract the insured is the','offeror','offeree','Actuary','Ofree','','','a','','model','1',86,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:01'),(59,'In insurance contract offeree is the','insured','insurance company','client','Third party','','','b','','model','1',66,'Admin','2017-01-09 13:02:57','2020-08-13 06:19:42'),(60,'An individual who is interested in taking an insurance policy must fill a form of application called:','premium slip','policy document','proposal form','claim form','','','c','','model','1',85,'Admin','2017-01-09 13:02:57','2020-08-20 11:09:54'),(61,'The payment made by the insured to the insurer upon which the validity of insurance is based is called','Exgratia payment','Loss payment','Compensation','Premium','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:04'),(62,'The temporary document issued by the insurer to the insured while the policy is being prepared is','insurance certificate','promissory note','exchange slip','cover note','','','d','','model','1',75,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:05'),(63,'The evidence of the contractual agreement between the insured and insurer is','policy','proposal form','insurance certificate','cover note','','','a','','model','1',65,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:06'),(64,'Which of these is an aid to trade?','cover note','insurance','premium','policy','','','b','','model','1',88,'Admin','2017-01-09 13:02:57','2020-08-20 11:09:54'),(65,'The following are exempted from a contract because they do not have the contractual capacity except','Drunkard','Alien','Mental patient','Adult','','','d','','model','1',70,'Admin','2017-01-09 13:02:57','2020-08-13 13:02:48'),(66,'Insured is likewise known as','insuree','Insurer','policy holder','contractor','','','c','','model','1',91,'Admin','2017-01-09 13:02:57','2020-08-13 12:52:49'),(67,'Insurance contract is between','Broker and Agent','Insured and Insurer','Insurer  and Agent','Insured and Agent','','','b','','model','1',72,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:17'),(68,'The buyer of insurance product is','Agent','Broker','Insured','Insurer','','','c','','model','1',77,'Admin','2017-01-09 13:02:57','2020-08-13 06:19:42'),(69,'The seller of insurance product is','Insurer','Insured','Broker','Agent','','','a','','model','1',72,'Admin','2017-01-09 13:02:57','2020-08-20 11:09:54'),(70,'Which of this is an odd one out?','offer and acceptance','contractual capacity','legality of object','Adhesion','','','d','','model','1',85,'Admin','2017-01-09 13:02:57','2020-08-13 13:02:48'),(71,'The uncertainty as to the occurrence of a loos is','Hazard','Loss','Risk','insurance','','','c','','model','1',77,'Admin','2017-01-09 13:02:57','2020-08-20 11:09:54'),(72,'The risks which affect the society and whose causes are beyond human control is','particular risk','static','fundamental','speculative','','','c','','model','1',74,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:22'),(73,'Risks that are peculiar to an individual actions and decision is known as','fundamental risk','particular risk','pure risk','speculative risk','','','b','','model','1',70,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:23'),(74,'Risk of loss resulting from change in culture and taste is called','static risk','pure risk','dynamic risk','speculative risk','','','c','','model','1',79,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:24'),(75,'The following risks are insurable except','particular','pure','static','dynamic risk','','','d','','model','1',90,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:25'),(76,'The following are insurable except','Marine','Goods','Gambling','Accident','','','c','','model','1',60,'Admin','2017-01-09 13:02:57','2020-08-13 12:52:49'),(77,'The following are non-insurable except','Lose of profit as a result of change in fashion','Speculation','Lose of profit as a result of maladministration','Fire','','','d','','model','1',66,'Admin','2017-01-09 13:02:57','2020-08-13 13:02:48'),(78,'Factors which may influence the occurrence of a loss is','Risk','Loss','Peril','Hazard','','','d','','model','1',65,'Admin','2017-01-09 13:02:57','2020-08-13 13:02:48'),(79,'Hazard that relates to the attitude of the insured is known as','Physical hazard','Good physical hazard','Moral hazard','Good moral hazard','','','c','','model','1',82,'Admin','2017-01-09 13:02:57','2020-07-14 15:25:29'),(80,'Hazard that relates to the subject matter of insurance is called','moral','physical','peril','Good peril','','','b','','model','1',84,'Admin','2017-01-09 13:02:58','2020-08-20 11:09:54'),(81,'The following are examples of bad moral hazard except','Fraudulent activities','Carelessness','Honesty','Unreasonableness','','','c','','model','1',70,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:31'),(82,'The cause of a loss is known as','Risk','Peril','Hazard','Moral','','','b','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:32'),(83,'The  principle  of  insurance  which  states  that a person must be in a legally recognized relationship to what is  insured  such  that  he  will  benefit  from its existence or suffer by its loss is','utmost good faith','insurable interest','proximate cause','subrogation','','','b','','model','1',80,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:33'),(84,'A person who has lawful possession of goods belonging to another is known as','Owner','Bailee','Agent','Trustee','','','b','','model','1',76,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:34'),(85,'Transfer of rights and liabilities under a contract with the consent of the other party is known as','Assignment','liability','Interest','Legality','','','a','','model','1',74,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(86,'Another name for utmost good faith is','cadent','cede','ex gratia','uberrimae fidei','','','d','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:36'),(87,'The principle of insurance which states that the insure should be truthful and disclose all material fact is','subrogation','utmost good faith','indemnity','insurable interest','','','b','','model','1',78,'Admin','2017-01-09 13:02:58','2020-08-20 11:09:54'),(88,'A miss statement of fact that is made by the insured or his broker to an underwriter during negotiation is called','annuity','misrepresentation','endorsement','disclosure','','','b','','model','1',71,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:38'),(89,'Indemnity is provided through the following media except','cash','commission','reinstatement','repair','','','b','','model','1',68,'Admin','2017-01-09 13:02:58','2020-08-13 13:03:27'),(90,'Any circumstance that promotes the probability of a loss is called','accident','hazard','loss','risk','','','b','','model','1',107,'Admin','2017-01-09 13:02:58','2020-08-13 13:02:48'),(91,'A financial compensation sufficient to return the insured back to the original position after loss is known as','deposit','loan','indemnity','profit','','','c','','model','1',83,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:41'),(92,'Another name for business interruption insurance is','property insurance','consequential loss','credit insurance','excess loss','','','b','','model','1',87,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:42'),(93,'Subrogation principle can be applied in the following insurance policies except in','aviation policy','engineering policy','life policy','marine policy','','','c','','model','1',79,'Admin','2017-01-09 13:02:58','2020-08-13 13:03:27'),(94,'Payment of claims  in  liability  insurance are usually made in favour of','insurance agent','a third party','employees','employers','','','b','','model','1',86,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:44'),(95,'The person  that  brings  an insurance  contract  into existence between  the principal and third party  is a/an','agent','bailee','contractor','insurer','','','a','','model','1',76,'Admin','2017-01-09 13:02:58','2020-08-13 12:52:49'),(96,'“Hull” in marine policy refers to the','boiler','cost of transporting the goods','goods on board','ship','','','d','','model','1',96,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:46'),(97,'A formal document containing the condition of the insurance contract is called','agreement','contract form','contract slip','policy document','','','d','','model','1',67,'Admin','2017-01-09 13:02:58','2020-08-13 13:02:48'),(98,'Engineering insurance covers the following except','boiler explosion','building and civil','business interruption','machinery breakdown','','','c','','model','1',83,'Admin','2017-01-09 13:02:58','2020-08-02 04:36:46'),(99,'A policy designed to protect individuals against negligence while carrying out their daily activities is called','business interruption','employers liability','engineering','professional indemnity','','','d','','model','1',66,'Admin','2017-01-09 13:02:58','2020-07-14 15:25:49'),(100,'Unlawful breaking and entering into any premises or place of safe keeping is covered under which of these policies?','burglary','business interruption','employers liability','public liability','','','a','','model','1',72,'Admin','2017-01-09 13:02:58','2020-08-13 13:03:27'),(101,'When someone is placed back in the same financial position that he was in just prior to a loss, that is ----','Actual cash value','Consideration','Contribution','Indemnity','','','d','','model','2',74,'Admin','2017-01-09 13:21:17','2020-08-13 12:52:49'),(102,'Insurable interest means','Interest gained on money in a bank','Interest payable on a loan','Financial interest a person has in something he expects to inherit','The financial interest a person has in something of value','','','d','','model','2',94,'Admin','2017-01-09 13:21:18','2020-08-13 13:02:48'),(103,'Below are insurable policies except','Earthquake','Fire','Life','Marine','','','a','','model','2',83,'Admin','2017-01-09 13:21:18','2020-08-13 12:52:49'),(104,'The term pooling of risks in insurance means that','Many who face risks pay premium so that those who suffer loss may be reimbursed','Insurance companies share heavy losses','Insurance company re-assures with another','Insurance companies operates pool betting business','','','a','','model','2',81,'Admin','2017-01-09 13:21:18','2020-08-13 13:02:48'),(105,'Which of the following is not a principle of insurance?','Indemnity','Compensation','Proximate cause','Insurable interest','','','b','','model','2',78,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:55'),(106,'The amount of money paid periodically by an insured to the insurance company to cover risk is called','Commission','Premium','Cover note','Dividend','','','b','','model','2',81,'Admin','2017-01-09 13:21:18','2020-08-20 11:09:54'),(107,'Insurance was developed as a result of the existence of','Hazards','Loss','Risk','Indemnity','','','c','','model','2',79,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:57'),(108,'Which of the following is not a function of insurance?','Serves as collateral','Encouraging saving','Provides insecurity','Reduces risks','','','c','','model','2',89,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:58'),(109,'In the utmost good faith principle, the value of the subject matter should','Be over stated','Understated','Not be stated','Not be overstated nor understated','','','d','','model','2',66,'Admin','2017-01-09 13:21:18','2020-07-14 15:25:59'),(110,'Which of the following is non- insurable risk?','Gambling','Accident','Fire','Theft','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:00'),(111,'Which of the following is a temporary document given to the insured in an insurance contract?','Cover note','Subrogation','Policy document','Reinsurance','','','a','','model','2',88,'Admin','2017-01-09 13:21:19','2020-08-13 13:03:27'),(112,'Hazard that deals with the human habits and character that arises from human attitude and the conduct of people is called','physical','Moral','Static','Dynamic','','','b','','model','2',62,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:02'),(113,'A peril is best defined as','Chance of a loss','The occurrence of a loan','The cause of a loss','The result of a loss','','','c','','model','2',80,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:03'),(114,'One of the essential features of insurance contract is','Premium','Subrogation','Interest','Disclosure','','','d','','model','2',78,'Admin','2017-01-09 13:21:19','2020-08-13 12:52:49'),(115,'Insurance  feature  that  emphasized   the  fact  that insurance contract is a contract between the insurer and  the  insured  and  which states  that  the insured must  adhere to  the  agreement  is  called','Disclosure','Warranty','Adhesion','Material facts','','','c','','model','2',79,'Admin','2017-01-09 13:21:19','2020-08-13 12:52:49'),(116,'The principle that requires the insured to disclose to the insurer all matters relating to the object of insurance is called','Uberrimae fidei','Proximate cause','Abandonment','Subrogation','','','a','','model','2',77,'Admin','2017-01-09 13:21:19','2020-08-20 11:09:54'),(117,'There must  be  a  close  connection  between  the loss actually suffered and the risk is relating to the principle  of','Abandonment','Proximate cause','Utmost good faith','Adhesion','','','b','','model','2',77,'Admin','2017-01-09 13:21:19','2020-08-13 13:02:48'),(118,'The principle of subrogation imposed an obligation on the insured to','Disclose all material information','Have financial risks in the object','Press for compensation','Surrender legal right after compensation','','','d','','model','2',69,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:08'),(119,'Which of the following is not a principle of insurance','Indemnity','Insurable risk','Subrogation','Insurable interest','','','b','','model','2',74,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:09'),(120,'An application form which is filled by anyone taking out an insurance policy is called','A policy form','A claim form','A proposal form','Proximate cause form','','','c','','model','2',70,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:10'),(121,'Insurance is necessary because of the need to','Pool resources together','Meet uncertainties in future','Make profit','Lend money to individual','','','b','','model','2',86,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:11'),(122,'The policy that covers debt that cannot be recovered is called','Life assurance','Motor vehicle policy','Comprehensive policy','Bad debt insurance policy','','','d','','model','2',66,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:12'),(123,'Risk whose cause is beyond human control is','Fundamental','Speculative','Particular','Static','','','a','','model','2',87,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:13'),(124,'Cover note usually run for about','One month','Two days','5 years','3 days','','','a','','model','2',89,'Admin','2017-01-09 13:21:19','2020-08-20 11:09:54'),(125,'A card used by motorist in the West African sub-region is called','Brown card','Certificate','Insurance card','visa card','','','a','','model','2',76,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:14'),(126,'Uncertainty of loss is known as','Risk','Certainty','Insurance','Hazard','','','a','','model','2',116,'Admin','2017-01-09 13:21:19','2020-08-13 13:02:48'),(127,'Re-insurance contract is between','Re-insurer and insurer','Re- insurance and insurance','Co-insurer and insurer','Insurance broker and re-insurer','','','a','','model','2',77,'Admin','2017-01-09 13:21:19','2020-08-20 11:09:54'),(128,'The continuation of insurance contract after expiration is','Renewal','Revival','Resuscitation','Rejuvenation','','','a','','model','2',69,'Admin','2017-01-09 13:21:19','2020-08-20 11:09:54'),(129,'The  payment  made  by  underwriter  as  a  form  of  \tkindness  without  admission  of  liability  so  as  to maintain goodwill is known as ------------','Kindness payment','Ex-gratia payment','Favour payment','Claim','','','b','','model','2',72,'Admin','2017-01-09 13:21:19','2020-07-14 15:26:18'),(130,'One of the following is the duty of the insured in insurance claim process','Late report of the loss','Little idea of the loss size','Quick report of the loss','Hiding fact','','','c','','model','2',67,'Admin','2017-01-09 13:21:19','2020-08-13 13:02:48'),(131,'The prices set by the insurer for the insurance cover is known as','Due','Levy','Premium','Charge','','','c','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:20'),(132,'The transfer of risk already undertaken from one insurance company to another is','Over insurance','Re insurance','Under insurance','Group insurance','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:21'),(133,'When an insured person admits that he has indemnified, he means that','The damage proper by has been recovered','He was paid premium fully','The insurance company has restored him to his former position','He was paid his premium fully','','','c','','model','2',71,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:22'),(134,'A house worth N=60,000 insured against fire for N=40,000.  Fire destroyed and cause damage worth N=30,000. On the house under which insurance principle will the owner be entitled to compensation of N=30,000.','Contribution','Subrogation','indemnity','Uberrimae fidei','','','c','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:23'),(135,'The person who calculate the amount given to the insured if he does not want to continue with the contract of insurance is called','Actuary','Insurance agent','Insurance broker','Assessor loss adjuster','','','d','','model','2',87,'Admin','2017-01-09 13:21:20','2020-08-13 06:19:42'),(136,'The amount given to the insured if he does not want the contract to continue is called','Insurance broker','Premium','Surrender value','Assessor loss adjuster','','','c','','model','2',79,'Admin','2017-01-09 13:21:20','2020-08-13 12:52:49'),(137,'The sum paid for transporting the goods or for the hire of a ship is called','Marine cargo','Freight insurance','Hull insurance','Risk insurance','','','b','','model','2',87,'Admin','2017-01-09 13:21:20','2020-08-20 11:09:54'),(138,'The duty of the loss adjuster in insurance claims is to','Make loss','Prevent loss','Safeguard loss','Recommend appropriate payment','','','d','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:27'),(139,'Consequential loss is also known as','Business interruption insurance','Credit insurance','Excess loss','Property insurance','','','a','','model','2',74,'Admin','2017-01-09 13:21:20','2020-08-13 12:52:49'),(140,'Subrogation principle can be applied in the following insurance policies except in','motor','Life','Marine','Aviation','','','b','','model','2',103,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:44'),(141,'The acronym “CllN” refers to','Certified insurance institute','Certified insured institute','Certified international institute','Chartered insurance institute','','','d','','model','2',83,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:45'),(142,'Amount paid to the beneficiary upon the death of the insured is','Premium','Compensation','Declaration','Death benefit','','','d','','model','2',79,'Admin','2017-01-09 13:21:20','2020-07-14 15:26:46'),(143,'The clauses in the policy which make alterations or additions to the information stated in the policy is known as','correction','Modification','Change','Endorsement','','','d','','model','2',67,'Admin','2017-01-09 13:21:20','2020-08-20 11:09:54'),(144,'The date on which an insurance or reinsurance contract comes into force is known as','Starting point date','Inception date','Beginning date','Commencement date','','','b','','model','2',81,'Admin','2017-01-09 13:21:20','2020-08-13 12:52:49'),(145,'Factor that causes an exposure to injury, loss or damage is','Risk','Hazard','Peril','Accident','','','b','','model','2',66,'Admin','2017-01-09 13:21:20','2020-08-13 13:02:48'),(146,'Workman compensation is also referred to as','Fidelity insurance','Employment liability','Public liability','Product liability','','','a','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:09'),(147,'An insurance cover for lawyers, accountants and brokers is','Employment','Professional','Public','Product','','','b','','model','2',65,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:10'),(148,'The deliberate or intentional throwing over board of part of a cargo to lighten the ship in the interest of the reminder of the cargo is','Barratry','Jettison','Breach','Caveat emptor','','','b','','model','2',78,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:11'),(149,'The wrongful act willfully committed by either the master or the prejudice of either the owner or crew to the chatterer of the ship is','Barratry','Caveat emptor','Bailee','Jettison','','','a','','model','2',73,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:12'),(150,'The legal right to insure a subject matter is','Indemnity','Subject Matter','Subrogation','Insurable interest','','','d','','model','2',67,'Admin','2017-01-09 13:21:20','2020-07-14 15:27:13'),(151,'--------- shows what the insured should do or not do to maintain the existence of the policy','Cover note','Policy','Warranty','Certificate','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:14'),(152,'The uncertainty of an event occurring is known as','Hazard','Risk','Loss','Accident','','','b','','model','3',71,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:15'),(153,'The provider of protection to an insurance  company against the excess risk it has given insurance covers is called','Assurer','Insuring','Reinsurer','Insurer','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-08-13 13:03:27'),(154,'---------- is the evidence cover of the risk given to the insured by the insurer','Cover','Policy','Claim','Compensation','','','b','','model','3',78,'Admin','2017-01-09 13:38:38','2020-08-13 12:52:49'),(155,'------------ is the protection which the insured buys for his risk','Indemnity','Compensation','Cover','Subrogation','','','c','','model','3',76,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:20'),(156,'A temporary certificate to show that a cover is in existence is called','Policy','Certificate','Cover note','Claim slip','','','c','','model','3',73,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:21'),(157,'------------ is used to bring amendment in a policy that is either to add in a new thing or removal of an existing thing in the policy','Excess','Endorsement','Claim form','Policy','','','b','','model','3',67,'Admin','2017-01-09 13:38:38','2020-08-20 11:09:54'),(158,'The cause of a loss is known as','Peril','Hazard','Loss','Risk','','','a','','model','3',86,'Admin','2017-01-09 13:38:38','2020-08-20 11:09:54'),(159,'The price of insurance is known as','Rate','Interest','Premium','Profit','','','c','','model','3',80,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:25'),(160,'The monetary consideration paid by the insured to the insurers for the insurance granted by the policy is called','Premium','Money','Price','Benefit','','','a','','model','3',76,'Admin','2017-01-09 13:38:38','2020-08-13 13:02:48'),(161,'------------- is a policy designed to place the insured in the same financial position as he was immediately before the happening of the event insured against','Indemnity','Subrogation','Surrender value','Actuary','','','a','','model','3',83,'Admin','2017-01-09 13:38:38','2020-08-13 13:02:48'),(162,'The essential value of valid contract that states that the parties to a contract must be in perfect agreement and have a common mind is','Consideration','Perpetual existence','Excess','Consensus ad-idem','','','d','','model','3',72,'Admin','2017-01-09 13:38:38','2020-08-20 11:09:54'),(163,'A  Statement signed by the insured, certifying the Statement','Certificate','Declaration','Confirmation slip','Accuracy statement','','','b','','model','3',65,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:29'),(164,'Change for the transportation of goods by water is called','Bill','Ticket','Freight','Consideration','','','c','','model','3',88,'Admin','2017-01-09 13:38:38','2020-08-13 13:03:27'),(165,'Life assurance provides dual benefits of savings and ------------ to a policy holder','Acceptance','Consideration','Contribution','Security','','','d','','model','3',88,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:31'),(166,'Another name for consequential loss is','Stop loss','Credit insurance','Business interruption insurance','Excess loss','','','c','','model','3',74,'Admin','2017-01-09 13:38:38','2020-08-13 12:52:49'),(167,'Subrogation principle can be applied in the following insurance policies except in -------- policy','Life','Motor','Theft','Burglary','','','a','','model','3',61,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:33'),(168,'A place where the business of insurance is transacted is called a/an','Insurance market','Brokerage firm','Insurance house','Insurance conference room','','','a','','model','3',67,'Admin','2017-01-09 13:38:38','2020-08-20 11:09:54'),(169,'A customer that suffers loss or sustain injury while using a business outfit that belongs to another perosn, can sue the property owner under -------------- insurance','Professional indemnity','Public liability','Employers’ liability','Personal accident','','','b','','model','3',77,'Admin','2017-01-09 13:38:38','2020-07-14 15:27:35'),(170,'The type of questionnaire drawn up by   insurers, requesting certain information to assess risk is --------- form','Acceptance','Compensation','Credit','Proposal','','','d','','model','3',69,'Admin','2017-01-09 13:38:39','2020-08-13 13:03:27'),(171,'The shifting of responsibility of one’s own losses to another is known as ---------- transfer','Fund','Risk','Business','Policy','','','b','','model','3',72,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:39'),(172,'A financial compensation sufficient to return the insured back to his original position after loss is known as','Deposit','Loan','Indemnity','Overdraft','','','c','','model','3',74,'Admin','2017-01-09 13:38:39','2020-08-13 12:52:49'),(173,'The following are types of life assurances,  except','annuity','Endowment','Hire purchase','Whole life','','','c','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:41'),(174,'A marine policy that provider cover for the construction of sea vessels is called --------- policy','Building','Mixed','Port','Valued','','','a','','model','3',111,'Admin','2017-01-09 13:38:39','2020-08-09 20:48:31'),(175,'Spreading of risk to ensure that no insurer is liquidated by the occurrence of a large loss is the concept of','Insurance','Re insurance','Renewal','Treaty','','','b','','model','3',88,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:43'),(176,'The person  that  brings  an  insurance  contract into existence  between  the principal  and  third  party is a/an','Agent','Bailee','Contractor','Insurer','','','a','','model','3',85,'Admin','2017-01-09 13:38:39','2020-08-13 13:02:48'),(177,'Any circumstance that promotes the probability of a loss is called','Accident','Hazard','Loss','Risk','','','b','','model','3',64,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:45'),(178,'Indemnity is provided through the following media except','Cash','Commission','Reinstatement','Repair','','','b','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:47'),(179,'The policy that covers loss of cash while in transit or at home is --------------- insurance','Burglary','Business interruption','Credit','Money','','','d','','model','3',71,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:48'),(180,'A person who makes an insurance claim is called','Actuary','Adjustor','Claimant','Client','','','c','','model','3',91,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:49'),(181,'To break or act contrary to a law or promise means','Breach','Shake','Confirm','Disagreement','','','a','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:50'),(182,'A professional officer of an insurance company whose duty among others is to calculate the premium to be \tpaid by the insured is called','Agent','Principal','Actuarist','Adjuster','','','c','','model','3',72,'Admin','2017-01-09 13:38:39','2020-08-20 11:09:54'),(183,'Which of these is insurable?','Fire','Inflation','Bad publicity','Riot and war','','','a','','model','3',85,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:52'),(184,'The principle that requires all material facts to be disclosed is known as','Indemnity','Fidelity','Proximate cause','Utmost good faith','','','d','','model','3',84,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:53'),(185,'In insurance contract, failure to disclose all relevant material facts will render the contract','legal','Voidable','Void','Implied','','','c','','model','3',82,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:54'),(186,'Any information that will influence a prudent insurer is called','contract','misrepresentation','disclosure','Material facts','','','d','','model','3',70,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:55'),(187,'The insurance principle which implies that a proof is required that the direct and immediate cause of the loss suffered was by the occurrence of the risk insured against is called','Indemnity','Proximate cause','Insurable interest','Utmost good faith','','','b','','model','3',75,'Admin','2017-01-09 13:38:39','2020-08-13 13:02:48'),(188,'Method of providing indemnity whereby subject matter is being restored to its former position is','Repairs','Cash','Reinstatement','Replacement','','','c','','model','3',77,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:57'),(189,'A relief to insurer of each and every loss which does not exceed a specified amount is','Excess','Franchise','Deductible','Annuity','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:27:58'),(190,'When an   insurer agrees   to   replace   irreparably damaged or stolen goods with similar type it is called','Reinstatement','Cash','Repairs','Replacement','','','d','','model','3',75,'Admin','2017-01-09 13:38:39','2020-08-13 13:03:27'),(191,'Cover note usually run for about','21 days','one month','12 months','3 month','','','b','','model','3',85,'Admin','2017-01-09 13:38:39','2020-08-13 12:52:49'),(192,'The process of changing anything wrong with the policy to make it current is','Endorsement','Specification','Rectification','Correction','','','c','','model','3',60,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:01'),(193,'A syndicate or an insurance company that transfer risk under re-insurance is','Cede','Cession','Commutation','Cedant','','','d','','model','3',68,'Admin','2017-01-09 13:38:39','2020-08-13 13:03:27'),(194,'A particular risk which is transferred to another re-insurance under a re-insurance treaty is','Cedant','Cession','Facultative','Cede','','','b','','model','3',81,'Admin','2017-01-09 13:38:39','2020-07-14 15:28:03'),(195,'Application by the insured to the insurer for the payment of money due under his contract of insurance is','Proof','Evidence','Claim','Compensation','','','c','','model','3',82,'Admin','2017-01-09 13:38:39','2020-08-13 13:03:27'),(196,'The following are the methods of claim settlement except','Cash','Repair','Reinstatement','Repayment','','','d','','model','3',81,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:05'),(197,'Person who makes claim is called','Claimant','Client','Insured','Insurer','','','a','','model','3',65,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:06'),(198,'A payment made by insurer as a form of sympathy to maintain goodwill is','Compensation payment','Contract payment','Charity payment','Ex - gratia payment','','','d','','model','3',79,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:07'),(199,'The policy that provides protection for goods or cargoes and ships against the perils of the sea is','Fire','Marine','Aviation','Credit','','','b','','model','3',82,'Admin','2017-01-09 13:38:40','2020-07-14 15:28:08'),(200,'Another name for an insured in a life insurance contract is','Insurer','Assured','Assurer','Agent','','','b','','model','3',74,'Admin','2017-01-09 13:38:40','2020-08-13 13:02:48'),(201,'Insurance is defined as','risking of loss','pooling of risk','gathering of risk','waiving of risk','','','b','','model','4',77,'Admin','2017-01-09 13:49:45','2020-08-13 13:03:27'),(202,'In a contract of insurance, a firm statement is usually made by a person known as the','offeror','offeree','insur','client','','','a','','model','4',67,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:11'),(203,'The premium paid by the insured to the insurance company is','capital','commission','common fund','consideration','','','d','','model','4',87,'Admin','2017-01-09 13:49:46','2020-08-13 13:03:27'),(204,'The insured is also known as','the client','the consumer','the policy holder','agent','','','c','','model','4',81,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:13'),(205,'The coming together of minds of  the two parties to the insurance contract is called','surrender value','acceptance','consensus ad-idem','adhesion','','','c','','model','4',70,'Admin','2017-01-09 13:49:46','2020-08-20 11:09:54'),(206,'Uberrimae fidei is equally known as','contract','agreement','consensus','utmost good faith','','','d','','model','4',83,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:15'),(207,'The legal right that a person must have to enable him or her to insure his or her property is known as','freedom','franchise','insurable interest','Access right','','','c','','model','4',64,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:17'),(208,'An undertaking by the insured that certain things shall be done or not be done or certain things shall be put in place or not in place is called','warranties and representation','utmost good faith and uberrimae fidei','insurable and non-insurable','subrogation and indemnity','','','a','','model','4',67,'Admin','2017-01-09 13:49:46','2020-08-13 13:02:48'),(209,'In insurance, uncertainty of loss means','hazard','risk','accident','earthquake','','','b','','model','4',70,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:19'),(210,'Occurrence of an unplanned event is called','hazard','loss','risk','speculation','','','c','','model','4',77,'Admin','2017-01-09 13:49:46','2020-08-20 11:09:54'),(211,'An insurance contract where both parties signed the agreement which involve mutuality of agreement is known as','unilateral contract','multilateral contract','bilateral contract','united contract','','','c','','model','4',66,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:21'),(212,'An insurance contract which does not involve mutuality of agreement in which only one of the parties involved in the contract makes promises that are legally binding is called','double contract','single contract','multilateral contract','unilateral contract','','','d','','model','4',77,'Admin','2017-01-09 13:49:46','2020-08-20 11:09:54'),(213,'Insurance is a contract that is based on','possibility','probability','positivity','negativity','','','b','','model','4',98,'Admin','2017-01-09 13:49:46','2020-07-14 15:28:23'),(214,'Assurance is a contract that is based on','negativity','possibility','positivity','probability','','','d','','model','4',60,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:24'),(215,'With insurance contract there is','certainty of occurrence','uncertainty of occurrence','certainty of reward','uncertainty  of reward','','','b','','model','4',80,'Admin','2017-01-09 13:49:47','2020-08-13 06:19:42'),(216,'With assurance contract there is','uncertainly of reward','certainty of reward','certainty of occurrence','uncertainty of occurrence','','','c','','model','4',81,'Admin','2017-01-09 13:49:47','2020-08-13 12:52:49'),(217,'Indemnity is not applicable in','assurance contract','insurance contract','insurance terms','insurance content','','','a','','model','4',87,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:27'),(218,'Non- indemnity insurance means that the assured can','be restored back to his former position','not be restored back to his former position','be brought back to contract','not be brought back to contract','','','b','','model','4',83,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:28'),(219,'A seller of insurance product is','insurer','promisor','client','insured','','','a','','model','4',75,'Admin','2017-01-09 13:49:47','2020-08-13 13:02:48'),(220,'A buyer of insurance product is','insured','promise','insurer','insuree','','','a','','model','4',76,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:30'),(221,'A contract which has no legal effect is called','voidable contract','legal contract','void contract','valid contract','','','c','','model','4',77,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:31'),(222,'A contract that is contrary to public policy is','valid contract','legal contract','illegal contract','voidable contract','','','c','','model','4',88,'Admin','2017-01-09 13:49:47','2020-08-13 12:52:49'),(223,'Which of the following cannot enter into an insurance contract?','adult','insured','minor','insurer','','','c','','model','4',92,'Admin','2017-01-09 13:49:47','2020-08-20 11:09:54'),(224,'Risk that affect the society and whose causes are beyond human control is','particular risk','pure risk','fundamental risk','static risk','','','c','','model','4',84,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:35'),(225,'The process of evaluating and minimizing risk is','risk management','risk certainty','risk insurance','risk re-grouping','','','a','','model','4',77,'Admin','2017-01-09 13:49:47','2020-08-13 13:03:27'),(226,'Another name for utmost good faith','expirit - de - corps','uberrimae fidei','caveat emptor','proximate cause','','','b','','model','4',80,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:37'),(227,'Inter company agreement in which insurers agreed to waive their right against each other for loss is','knock for knock agreement','employers’ liability','tit for tat agreement','salvage agreement','','','a','','model','4',73,'Admin','2017-01-09 13:49:47','2020-08-13 13:03:27'),(228,'Contribution will only arise when','two or more parties disagree','two or more parties are promisor','two or more policies of indemnity exist','one policy of indemnity exist','','','c','','model','4',82,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:39'),(229,'One of the following is a condition for contribution','bilateral interest','multilatual interest','two subject matter','common subject matter','','','d','','model','4',80,'Admin','2017-01-09 13:49:47','2020-08-13 06:19:42'),(230,'one of these is a content of a proposal form','children of the proposer','education of the proposer','occupation of the proposer','educational','','','c','','model','4',74,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:41'),(231,'The statement “ I to the best of my knowledge hereby confirm that the statements contained in this prosal form are true and correct” represents','confirmation','declaration','witnessing','humility','','','b','','model','4',76,'Admin','2017-01-09 13:49:47','2020-08-13 13:03:27'),(232,'When the proposer fails to fill the proposal form truthfully, the contract will become','voidable','illegal','void','enforceable','','','c','','model','4',100,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:45'),(233,'Proposal form is used in the following classes of insurance except','Accident','theft','life','large risk of fire','','','d','','model','4',74,'Admin','2017-01-09 13:49:47','2020-08-13 13:02:48'),(234,'The following classes of insurance apply the use of proposal form except','public liability','large risk of marine insurance','small risk of marine insurance','theft','','','b','','model','4',79,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:47'),(235,'Proposal form is not applicable to the following except','aviation','engineering','large risk of fire','fidelity guarantee','','','d','','model','4',75,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:48'),(236,'Which of the method below can be used to provide indemnity in the event of loss','moral advice','resolution of policy','cash payment','professional encouragement','','','c','','model','4',85,'Admin','2017-01-09 13:49:47','2020-07-14 15:28:49'),(237,'A card used by motorist in the West African sub-region is called','insurance certificate','insurance register','insurance green card','Ecowas brown card','','','d','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:49'),(238,'Situation that are not included in the policy are usually referred to as','condition','exception','preamble','operative clause','','','b','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:51'),(239,'The part of a policy form that shows the name and address of the company is known as','heading','conclusion','condition','preamble','','','a','','model','4',85,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:52'),(240,'One of these shows the introduction to the details of the insurance policy, parties as well as the premium for the contract','preamble','heading','exception','condition','','','a','','model','4',75,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:53'),(241,'Policy condition which are automatically applicable and not stated in the contract of agreement is known as','agreed condition','agreed negotiation','implied condition','expressed condition','','','c','','model','4',85,'Admin','2017-01-09 13:49:48','2020-08-13 13:03:27'),(242,'A written amendment in addition or alterations to the information stated in the policy is called','endorsement','specification','construction','attestation','','','a','','model','4',67,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:55'),(243,'The process of changing what is wrong in the policy is called','specification','attestation clause','rectification','justification','','','c','','model','4',70,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:56'),(244,'The process of transferring risk from one insurer to another is called','contribution','re-insurance','re-processing','re-activating','','','b','','model','4',81,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:57'),(245,'A reminder to the insured that this existing contract is due to expire is','proposal form','slip','claim form','renewal notice','','','d','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:58'),(246,'One of these is a form of motor vehicle insurance policy','comprehensive','1st party only','2nd party only','accident','','','a','','model','4',76,'Admin','2017-01-09 13:49:48','2020-07-14 15:28:59'),(247,'Third party provides cover only for damages to','assurer','insurer','2nd party','another person','','','d','','model','4',84,'Admin','2017-01-09 13:49:48','2020-08-13 12:52:49'),(248,'The type of cover for violent and forcible entry into a premises is called','burglary and theft','third party fire and theft','third party and theft','stealing','','','a','','model','4',65,'Admin','2017-01-09 13:49:48','2020-08-13 13:03:27'),(249,'The deliberate throwing overboard of part of a cargo to lighten the ship is called','barratry','overthrown','voyaging','jettisoning','','','d','','model','4',86,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:02'),(250,'The deliberate throwing overboard of part of a cargo without a good intention is called','jettison','barratry','voyaging','overboard','','','b','','model','4',64,'Admin','2017-01-09 13:49:48','2020-07-14 15:29:03'),(251,'Insurance premium depends on the','amount of profit to be made by the insurer','various insurance companies in a place','extent of the possible loss and the frequency of risk','supply and demand','','','c','','model','5',88,'Admin','2017-01-09 13:58:40','2020-08-20 11:09:54'),(252,'Subrogation in insurance means that','the insured could not make a profit from the insurer','the insured must be fully indemnified','the insurer must take the place of the insured','the insured should pool their risks','','','c','','model','5',76,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:05'),(253,'Payment by the insurer to the insured out of sympathy is known as','utmost good faith','proximate cause','peril','ex-gratia payment','','','d','','model','5',75,'Admin','2017-01-09 13:58:44','2020-08-13 13:02:48'),(254,'If the insured does not want the contract to continue he receives','surrender value','consideration','premium','commission','','','a','','model','5',80,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:07'),(255,'Re-insurance means','accumulation of risk','multiplication of risk','transfer of risk','adding of risk','','','c','','model','5',86,'Admin','2017-01-09 13:58:44','2020-07-14 15:29:08'),(256,'Another name for the assured is','insurance company’s client','insurance broker','insurance company','insurance agent','','','c','','model','5',79,'Admin','2017-01-09 13:58:44','2020-08-13 13:03:27'),(257,'One of the following is legally used by the insured while the policy is being processed','indemnity form','claim form','cover note','proposal form','','','c','','model','5',76,'Admin','2017-01-09 13:58:48','2020-08-13 13:03:27'),(258,'One of the following is necessary to meet uncertainties in future','profit','capital','borrowing','insurance','','','d','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:11'),(259,'When an insured person admits that he has been indemnified, he means that','the insurance company has accepted his claims','the damaged property has been recovered','He has paid his premium','the insurance company has restored him to his former position','','','d','','model','5',78,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:12'),(260,'If the insured has been fully indemnified, the insurers are entitled to take any advantage due to the insured. Principle of insurance involved is','insurable interest','contribution','indemnity','subrogation','','','d','','model','5',77,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:13'),(261,'The settlement of disagreement between the insured and the insurer is called','litigation','arbitration','negotiation','compromising','','','c','','model','5',71,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:14'),(262,'One of this is a method of claim settlement','price','trade by barter','exchange','cash','','','d','','model','5',76,'Admin','2017-01-09 13:58:48','2020-08-13 13:02:48'),(263,'Replacement of damaged property by the insurance company is','arbitration','negotiation','Re-instatement','rectification','','','c','','model','5',85,'Admin','2017-01-09 13:58:48','2020-08-13 13:03:27'),(264,'A reminder to the insured who may have forgotten to seek for continuation after his policy expiry date is','notification message','renewal notice','registration notice','agreement notice','','','b','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:19'),(265,'Which of the following risks is covered by insurance policy?','an investment loss on the stock market','dishonesty of an employee leading to fraud','failure of a business venture','rise and fall of prices of goods in the market','','','b','','model','5',79,'Admin','2017-01-09 13:58:48','2020-08-13 12:52:49'),(266,'One of this is the evidence of insurance contract','schedule','policy','proposal form','endorsement','','','c','','model','5',76,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:21'),(267,'One of this is the consideration paid for insurance contract','fee','cheque','commission','premium','','','d','','model','5',75,'Admin','2017-01-09 13:58:48','2020-08-20 11:09:54'),(268,'The payment made when the insured is not entitled to claim under a policy is','voluntary excess','ex-gratia','return premium','premium','','','b','','model','5',69,'Admin','2017-01-09 13:58:48','2020-07-14 15:29:23'),(269,'To which of the following does the principle of utmost good faith apply in a contract of insurance?','the insurer only','the proposer only','the third party and insured','insurer and proposer','','','d','','model','5',73,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:24'),(270,'A method of providing indemnity in the event of loss is','cash payment','professional advice','resolution of policy','resolution of dispute','','','a','','model','5',95,'Admin','2017-01-09 13:58:49','2020-08-10 07:46:58'),(271,'One of the information contained in a renewal notice is the','previous losses','location of the risk','occupation of the insured','sum insured','','','d','','model','5',91,'Admin','2017-01-09 13:58:49','2020-07-14 15:29:26'),(272,'A factor which may influence the occurrence of a loss is','peril','loss','hazard','risk','','','c','','model','5',77,'Admin','2017-01-09 13:58:52','2020-08-13 12:52:49'),(273,'A residential building built beside a petrol filling station is described as a','risk','hazard','peril','liability','','','b','','model','5',78,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:28'),(274,'A reinsurance contract in which the reassured agrees to offer and the reinsurer agrees to accept all risks of certain size within a defined class is','underwriting','treaty','tort','syndicate','','','b','','model','5',73,'Admin','2017-01-09 13:58:53','2020-08-20 11:09:54'),(275,'A contract which has no legal effect is called','void policy','voidable policy','legal policy','formal policy','','','a','','model','5',81,'Admin','2017-01-09 13:58:53','2020-08-04 11:06:30'),(276,'The contract aimed at providing specific payment at regular intervals for a fixed   period or for life is','accident','annuity','average','term','','','b','','model','5',96,'Admin','2017-01-09 13:58:53','2020-08-13 12:52:49'),(277,'policy designed for the insured who is incapacitated to carry out normal duty is','medical expenses','temporary disablement','permanent disablement','medical expenses','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-08-13 13:03:27'),(278,'Physical loss of limbs or total blindness injury is an example of','permanent disablement','temporary disablement','mid-term disablement','total disablement','','','a','','model','5',75,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(279,'A policy that covers the peril of the sea is','aviation','marine','life','fire','','','b','','model','5',83,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:33'),(280,'An  attempt  to  deprive  someone of his  property is','theft','burglary','robbery','larceny','','','c','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:35'),(281,'The process of examining, accepting or rejecting risks and classifying the ones accepted is','underwriting','policy','procedures','warranty','','','a','','model','5',80,'Admin','2017-01-09 13:58:53','2020-08-13 12:52:49'),(282,'The periodic payment made by the insured to the insurer as financial cost of obtaining insurance','annuity','premium','claim','dividend','','','b','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:36'),(283,'The amount added to the standard premium in respect of the larger than standard risk presented by the proposer is called','premium increase','premium loading','premium payment','premium commission','','','b','','model','5',65,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:37'),(284,'Return premium is the same thing as','premium payment','premium refund','premium tax','premium bonus','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:38'),(285,'The principle of maritime law which makes owners of ship and cargo share in a lost incurred voluntarily is','general average','special average','specific average','particular average','','','a','','model','5',73,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:39'),(286,'The amount given to the insured if he does not want the contract to continue is called','premium','price','consideration','surrender value','','','d','','model','5',74,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:40'),(287,'Partial loss can be divided into','particular average and general average','particular average and total loss','actual loss and total loss','total loss and particular loss','','','a','','model','5',89,'Admin','2017-01-09 13:58:53','2020-08-20 11:09:54'),(288,'Marine  losses are divided into','actual total and total loss','total loss and partial loss','partial loss and actual loss','average loss and partial loss','','','b','','model','5',80,'Admin','2017-01-09 13:58:53','2020-07-14 15:29:42'),(289,'The division of total loss are','average loss and partial loss','partial loss and full loss','total loss and actual loss','actual total loss and constructive total loss','','','d','','model','5',71,'Admin','2017-01-09 13:58:53','2020-08-13 12:52:49'),(290,'Marine insurance policy which covers all the ship or vessels belonging to one owner is','flect policy','mixed policy','value policy','fixed policy','','','a','','model','5',87,'Admin','2017-01-09 13:58:57','2020-08-13 13:03:27'),(291,'The full meaning of NAICOM is','Nigerian insurance company','national insurance commission','national insurer commission','national insured commission','','','b','','model','5',83,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:45'),(292,'Speailative risks are','insurable risk','non insurable risk','financial risk','non financial risk','','','b','','model','5',85,'Admin','2017-01-09 13:58:57','2020-07-14 15:29:46'),(293,'The form of risk that can easily be calculated and estimated is known as','non insurable risk','non-financial risk','speculative risk','insurable risk','','','d','','model','5',83,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:47'),(294,'A risk that has its origin in the activities of an individual and the effects borne by this individual is called','pure risk','particular risk','speculative risk','fundamental risk','','','b','','model','5',68,'Admin','2017-01-09 13:58:58','2020-08-13 13:03:27'),(295,'Business interruption insurance can also be called','consequential loss','constructive loss','partial  loss','general loss','','','a','','model','5',89,'Admin','2017-01-09 13:58:58','2020-08-13 12:52:49'),(296,'The maximum number of days allowed for a policy holder to pay his renewal premium after it has become due is called','surrender value','conditions','days of grace','days of liberty','','','c','','model','5',74,'Admin','2017-01-09 13:58:58','2020-08-13 12:52:49'),(297,'The  factor  that has  the  tendency  to  increase  the occurrence of a risk is called','risk','loss','hazard','peril','','','d','','model','5',81,'Admin','2017-01-09 13:58:58','2020-08-13 13:02:48'),(298,'The cause of a loss is','peril','hazard','risk','loss','','','a','','model','5',86,'Admin','2017-01-09 13:58:58','2020-08-13 13:02:48'),(299,'The party who proposes to the insurance company to insure his properly is called','offeree','offeror','acceptance party','offer client','','','b','','model','5',75,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:55'),(300,'One of these is a full time professional','broker','agent','factor','insurer','','','a','','model','5',70,'Admin','2017-01-09 13:58:58','2020-07-14 15:29:56'),(301,'Insurance against risk is possible because of the law of','large numbers','few numbers','inverse proportion','diminishing returns','','','a','','wassce','2015',79,'Admin','2017-01-09 14:33:34','2020-08-13 13:03:27'),(302,'Which  of  the  following  is  not  a  component  of  an insurance policy?','Signature clause','Particular clause','Recital clause','Operative clause','','','b','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:01'),(303,'Which of the following is a component of premium in insurance?','Margin','Reserve','Funds','Capital','','','c','','wassce','2015',73,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:03'),(304,'In which of the following classes of insurance is no <em>claim discount</em> applicable?','Money insurance','Marine insurance','Motor insurance','Aviation insurance','','','a','','wassce','2015',79,'Admin','2017-01-09 14:33:34','2020-08-13 13:03:27'),(305,'The payment by an insurer to the insured in the event of loss is','claim','premium','fee','interest','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:07'),(306,'Which of the following is the function of a loss adjuster?','Ensures payment of adequate compensation','Advises the insurer on claim','Operates with unlimited authority','Notifies insurer of the loss','','','a','','wassce','2015',68,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:08'),(307,'A fire insurance policy guaranteed by the insured to be in place for a stated period with a particular insurer is granted a _____________','no claim discount','fleet discount','long - term agreement discount','plurality discount','','','a','','wassce','2015',75,'Admin','2017-01-09 14:33:34','2020-08-13 13:03:27'),(308,'A type of re - insurance  where  the re - insurer has  the option  to  accept  or  reject  any  risk  presented  for re-insurance is','stop loss','facultative','treaty','excess of loss','','','b','','wassce','2015',91,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:10'),(309,'A new Nissan car valued at N= 350,000 was used to replace a Peugeot car with a sum insured N= 250.000 in private policy. The Peugeot car enjoys a 25% no claim discount. If the rate of premium is 11% and the no claim discount is transferred to the  new vehicle, what  would be the premium for the new Nissan car?','N= 20,625','N= 27,500','N= 28,875','N= 38,500','','','b','','wassce','2015',85,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:12'),(310,'One of the features of term assurance is','investment','profit','protection','surrender','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:13'),(311,'Which  of  the  following  statements  is  true  about property insurance?','The probability that the event may occur','The probability that the event will not occur','The probability that the event may or may not occur','The probability that the event must occur','','','c','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:14'),(312,'In a life assurance contract, when does  the  principle of insurable interest arise?','At the beginning of the contract','At the time of claim','At the middle of the contract','At the time of payment of premium','','','a','','wassce','2015',72,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(313,'Which class of life assurance would a young couple who desires to start a new business in five years time purchase?','Whole life policy','Limited whole life policy','Keyman policy','Endowment policy','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:15'),(314,'In which of the following policies is <em>certificate of insurance</em>  used?','Burglary insurance','Product liability insurance','Employer’s liability insurance','Money insurance','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:34','2020-07-14 15:30:16'),(315,'Which  of  the  following  would  not  give  cause  for subrogation right?','Benefit','Contract','Statute','Salvage','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:17'),(316,'Educational endowment policy is designed to protect the interest of','father','mother','child','uncle','','','c','','wassce','2015',62,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:18'),(317,'A clause in an insurance policy that makes a claim jointly payable to the policyholder and the third party is','claim clause','mortgagee clause','mortgage clause','joint liability clause','','','d','','wassce','2015',79,'Admin','2017-01-09 14:33:35','2020-08-13 12:52:49'),(318,'The policy that covers  an  insured  employee  against injury  sustained  in  the  course  of  employment  is','professional indemnity','product liability','public liability','employer’s liability','','','d','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:22'),(319,'What is  the  maximum  liability which the insurer can pay on a particular loss?','Average','Sum insured','Franchise','Excess','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:23'),(320,'A policy taken to cover several shipments for a sum assured is','floating policy','valued policy','declaration policy','special policy','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-08-13 13:03:27'),(321,'A policy taken for full protection against fire and other risks such as flood, tempest, riot and civil commotion is','consequential loss','fire and all risks policy','combined householder’s policy','fire and special perils','','','a','','wassce','2015',79,'Admin','2017-01-09 14:33:35','2020-08-20 11:09:54'),(322,'The  person  that   transfers  risks  to  the  insurance company is called','a broker','an insured','an underwriter','a loss adjuster','','','b','','wassce','2015',83,'Admin','2017-01-09 14:33:35','2020-08-13 13:02:48'),(323,'A clause in marine insurance policy prohibiting the insured from giving up a damaged property is','deductible','abandonment','indemnity','compensation','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-08-13 13:02:48'),(324,'Insurance is described as a risk','avoidance mechanism','regulating mechanism','transfer mechanism','assessment mechanism','','','c','','wassce','2015',69,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:28'),(325,'A fire insurance policy valued at N= 250,000 is issued at the rate of 0.2%. How much would the premium be, if the policy is granted with 5% long - term agreement discount?','N= 475','N= 500','N= 12,500','N= 13,000','','','a','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:29'),(326,'What is the full meaning of “NCRIB” in the insurance industry?','National  Council of  Registered Insurance  Brokers','Nigerian  Council of  Registered Insurance  Brokers','Nigerian Corporation of Registered Insurance Brokers','National Corporation of Registered Insurance Brokers','','','b','','wassce','2015',82,'Admin','2017-01-09 14:33:35','2020-08-13 13:03:27'),(327,'Which of the following is not a function of an insurance underwriter?','Determining rates and coverage for the risk','Deciding whether to take the risk','Looking for an insurer to take the risk','Deciding whether to reject the risk','','','a','','wassce','2015',71,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:31'),(328,'The cover that is taken at the option of the motor vehicle owner is','a comprehensive cover','an act only cover','a third party only cover','a special type cover','','','c','','wassce','2015',93,'Admin','2017-01-09 14:33:35','2020-08-13 13:02:48'),(329,'The  sum  insured  for  a  risk  is  N= 150,000  and  was accepted  for  fire  insurance at a rate of  0.25%. How much will the insured pay as a premium?','N= 125','N= 375','N= 500','N= 875','','','b','','wassce','2015',67,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:32'),(330,'The amount payable to an insured in the event of fire damage of household items is the','cost of repair','actual cash value','replacement cost','sum insured','','','d','','wassce','2015',80,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:33'),(331,'A motorist travelling from Ghana to Nigeria would be required to obtain one of the following types of motor insurance cover','green card','brown card','yellow card','purple card','','','b','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-08-13 13:03:27'),(332,'One of the benefits payable under personal accident insurance policy is','retirement benefit','surrender benefit','death benefit','transfer benefit','','','c','','wassce','2015',78,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:35'),(333,'A  trade  group for insurance  companies in  Nigeria is called','Chartered Insurance Institute of Nigeria','National Insurance Commission','Nigerian Corporation of Registered Insurance Brokers','Nigerian Insurers Association','','','d','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:36'),(334,'The process of  assessing  risks  in  insurance  and classifying them according to their degree of insurability so  that  the  appropriate  rate  may  be  assigned  is','inspecting','underwriting','surveying','evaluating','','','d','','wassce','2015',87,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:37'),(335,'Who  among  the  following  is  an  employer  of  loss adjuster?','Insurer','Broker','Insured','Agent','','','a','','wassce','2015',75,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:38'),(336,'The meaning of with <em>profit policy</em>  in life assurance is that the sum assured is paid','without profit','with profit','with interest','without interest','','','c','','wassce','2015',86,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:39'),(337,'The  document issued by  the  insurer when there is a change in the particulars of a risk insured is','endorsement','certificate','voucher','policy','','','a','','wassce','2015',77,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:40'),(338,'The amount charged when a ship overstays at the port under a marine contract is','penalty','fine','overcharge','demurrage','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:41'),(339,'Which of the following documents forms the basis of a contract in insurance business?','Policy document','Proposal form','Claim form','Discharge form','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:42'),(340,'The  difference  between  theft  and burglary insurance lies in evidence of','pilfering  of insured items','removal of insured items by tricks','forceful violent entry or exit affecting insured items','threat leading to loss of insured items','','','c','','wassce','2015',74,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:43'),(341,'The right of choice of option for method of indemnity is exercised by the','insured','insurance broker','insurance consultant','insurer','','','d','','wassce','2015',72,'Admin','2017-01-09 14:33:35','2020-07-14 15:30:44'),(342,'Cover note  in  motor  insurance is issued for a period not exceeding','30 days','60 days','90 days','120 days','','','a','','wassce','2015',83,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:45'),(343,'Which of the following activities is not involved in claims management?','Proof of loss','Particulars of loss','Premium calculation','Primary investigation','','','c','','wassce','2015',72,'Admin','2017-01-09 14:33:36','2020-08-13 13:03:27'),(344,'Life  assurance  contract is useful to a policyholder in the area of','production','protection','industrialization','rehabilitation','','','b','','wassce','2015',81,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:47'),(345,'Which  of  the  following  functions  is  related  to  life assurance contract? Benefits are','determined  on  the  happening  of  insured  event','determined by the indemnity doctrine','determined at the inception of the policy','assessed by the extent of the loss','','','c','','wassce','2015',91,'Admin','2017-01-09 14:33:36','2020-08-20 11:09:54'),(346,'The saving element in a permanent life assurance policy which represent the policyholder’s interest in the policy is','surrender value','cash value','sum assured','residual value','','','c','','wassce','2015',80,'Admin','2017-01-09 14:33:36','2020-08-20 11:09:54'),(347,'Which of the following is a duty of an insured in an insurance contract?','Concealment of facts','Exposure of facts','Disclosure of facts','Acceptance of facts','','','c','','wassce','2015',72,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:50'),(348,'The principle of maritime law which makes owners of a ship and cargo share in a loss incurred voluntarily is','special average','general average','specific average','particular average','','','b','','wassce','2015',80,'Admin','2017-01-09 14:33:36','2020-07-14 15:30:51'),(349,'Which of the following factors limits indemnity?','Cession','Re - insurance','Excess','Co - insurance','','','b','','wassce','2015',75,'Admin','2017-01-09 14:33:36','2020-08-13 13:02:48'),(350,'A  temporary  insurance  document  providing  coverage until a permanent policy is issued is','proposal form','cover note','policy document','insurance certificate','','','b','','wassce','2015',92,'Admin','2017-01-09 14:33:36','2020-08-13 12:52:49');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `irk` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `irk` VALUES (1,'The reason Mecca suwar lay emphasis on oneness of Allah is because  ','it was the only way to call Mecca to Islam  ','it is the only article of faith  ','it is the only article of peace between Prophet Muhammad and the Mecca  ','the pre-Islamic Mecca were idolatrous ','','','d','','post-utme-aaua','2012',934,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(2,'Uthman B. Affan reigned between  ','644 and 656 ','657 and 688  ','655 and 657  ','644 and 655  ','','','a','','post-utme-aaua','2012',970,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(3,'The final and total prohibition of intoxicants is contained in Surah  ','al-Baqarah  ','an-Nisa  ','al-Maidah  ','al- I a  ','','','c','','post-utme-aaua','2012',944,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(4,'Hajjatul Wada of Prophet Muhammad was delivered in ','632','630','628','631','','','a','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(5,'Suratul-Kawthar was revealed following the _____ of the Mecca  ','uproar  ','insinuation  ','intolerance  ','resistance  ','','','b','','post-utme-aaua','2012',955,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(6,'Zakat is paid on the following except____  ','cash  ','cattle  ','slaves','all of the above ','','','c','','post-utme-aaua','2012',939,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(7,'The i itial suggestio  to o pile the Qu a   as aised   ','A u Bak  ','Umar B. Khattab  ','Zaid B. Thabit  ','Uthman B. Affan  ','','','b','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(8,'One importance of wearing the Ihram during Hajj is_____  ','it directs the mind of all Muslims towards Allah  ','it purifies the Muslims  ','it makes all Muslims equal  ','it distinguishes pilgrims by country of origin  ','','','c','','post-utme-aaua','2012',957,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(9,'The reason for the declaration of Jihad against the Islamic state of Borno by Muhammad Bello wasbecause of the people','rebellion  ','extremism ','syncretism  ','fundamentalism ','','','c','','post-utme-aaua','2012',944,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(10,'The oa d gi e  to P ophet Muhad is the first  e elatio  of the Qu a  tells us about ____ ','education  ','prosperity  ','worship  ','Allah ','','','a','','post-utme-aaua','2012',943,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(11,'?eek k o ledge, e e  u to Chi a   ea s ____ ','go to China to seek knowledge  ','knowledge is found in China  ','go at any length to seek knowledge  ','knowledge must be sought in china   ','','','c','','post-utme-aaua','2012',960,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(12,'The spokesman of the Muslims before Emperor Negus was ','Jaafar  ','Al-As  ','Abu Musa  ','Masa Musa  ','','','a','','post-utme-aaua','2012',931,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(13,'The first place of Muslims ig atio   as ___','Abyssinia  ','Taif  ','Medina  ','Yathrib ','','','b','','post-utme-aaua','2012',938,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(14,'Al-Tawrat was revealed to  ','Isa  ','Musa  ','Prophet Muhammad  ','Idris ','','','b','','post-utme-aaua','2012',936,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(15,'Literally, Boko Haram means  ','book is forbidden  ','education is forbidden  ','Western education is forbidden  ','school is forbidden  ','','','c','','post-utme-aaua','2012',922,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(16,'Wudu means  ','ablution','dry ablution  ','water ablution  ','wet ablution ','','','b','','post-utme-aaua','2012',958,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(17,'If Alhaji Musa Ayuba invested N10, 000: 00 in a business and made a profit of N2, 000: 00 at the','N215.00','N100: 00  ','N50:00  ','N1000:00 ','','','c','','post-utme-aaua','2012',956,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(18,'Ibadah refers to  ','worship of ancestors  ','worship of the Prophet  ','worship of the caliphs ','worship of Allah  ','','','d','','post-utme-aaua','2012',971,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(19,'Shirk means ____  ','monotheism ','polytheism','henotheism  ','syncretism ','','','b','','post-utme-aaua','2012',928,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(20,'Which one of the following is not associated with shirk _____ ','idol worship  ','trinity  ','monotheism  ','henotheism ','','','c','','post-utme-aaua','2012',941,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(21,'If a Muslim prays five times daily on a regular basis, how many times will he have prayed a regular ','1825','1835','1835','1845','','','a','','post-utme-aaua','2012',909,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(22,'Lakum dinukum wa Liya dinin means  ','religion is good  ','to you is my religion and to me yours  ','to you is your religion and to me is my religion ','my religion is better than yours  ','','','c','','post-utme-aaua','2012',919,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(23,'According to Islamic traditions, inability to marriage may rise as a consequence of   ','defects in sex organs  ','permanent illness  ','impotence  ','all of the above  ','','','d','','post-utme-aaua','2012',921,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(24,'Walam yakun lahu Kufuwan Ahadun is_____  ','the second ayat of the 112th surah  ','sixth ayat of the 111th surah  ','fourth ayat of the 112th surah ','seventh ayat of the 114th surah  ','','','c','','post-utme-aaua','2012',978,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(25,'The main message of ayay Amanar-Rasul is  ','the significance of knowledge  ','the articles of faith  ','the pillars of Islam  ','payment of Zakat ','','','b','','post-utme-aaua','2012',929,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(26,'Talaq al-','irrevocable ','revocable  ','impermissible  ','detestable ','','','a','','post-utme-aaua','2012',926,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(27,'The word Hafizi in Q.  82: 10 means  ','angels  ','jinns  ','spirits ','man  ','','','a','','post-utme-aaua','2012',933,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(28,'When Prophet Muhammad got to Yathrib, he had to first and foremost settle the feud between  ','Aws and Khazraj  ','banu Nadir and Mecca  ','Mecca and Medina ','Aws and Nadir  ','','','a','','post-utme-aaua','2012',936,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(29,'The prophet admonishes that if an abomination is found, a true Muslim should at least  ','hate if from his heart  ','change it with his hands immediately  ','condemn it publicly  ','declare Jihad  ','','','a','','post-utme-aaua','2012',937,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07'),(30,'The reason Q.  2: 219 forbids wine ad gambling is because  ','they lead one to greater sin than gain  ','they lead to poverty ultimately ','they lead to extravagance and intoxication  ','they make a Muslim to abandon religion  ','','','a','','post-utme-aaua','2012',948,'Admin','0000-00-00 00:00:00','2020-08-13 13:02:07');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `mathematics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `mathematics` VALUES (1,'A regular polygon has each of it angles at 160. What is the number of sides of the polygon? ','36','9','18','20','','','c','','post-utme','2006',1264,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(2,'A girl walks 30m from a point P on  a bearing of 040 to a point Q. she   then walks 30m on a bearing of 140 to a point R. the bearing of R from P is ','90','50 ','45','40','','','a','','post-utme','2006',1242,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(3,'How many different three digit numbers can be formed using the integers 1 to 6 if no integer 1 to 6 if no integer occurs twice in a number? ','720','1260','2520','5040','','','b','','post-utme','2006',1223,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:55'),(4,'In how many different ways can the letters of the word GEOLOGY be arranged in order? ','720','1260','2520','5040','','','c','','post-utme','2006',1252,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(5,'A cyclist rode for 30minutes at xhkm/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14   ','x<20  ','x<29  ','x< 28','','','d','','post-utme','2006',1245,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(6,'A business invested a total of N200,000 in two companies which paid dividends of 5% and 7% respectively. If the received a total of N11, 600 as dividend, how much did he invest at 5% ','N160,000 ','N140,000 ','N120,000 ','N80,000','','','c','','post-utme','2006',1234,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(7,'In a class, 37 students take a least one of chemistry, Economics and Government, 8 students take Chemistry, 19 take Economics and 25 take Government, 12 students take Economics and Government but nobody takes Chemistry and Economics. How many students take both chemistry and Government? ','3','4','5','6','','','a','','post-utme','2006',1270,'Admin','0000-00-00 00:00:00','2020-08-19 01:45:42'),(8,'Solve for p in the following  equation given in base two  11(p+ 110) = 1001p   ','10','11','110','111','','','b','','post-utme','2006',1259,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(9,'Factorize 16(3x+2y)2-25 (a+2b)2','(12x +8y+5a+10b)(12x+8y-5a-10b)    ','(12x+8y-5a-10b) (12x+8y-5a-10b),    ','20 (3x +2y-a-2b)(3x+2y+a+2b)  ','20(3x+2y+a+2b) (3x+2y+a+2b).','','','a','','post-utme','2006',1215,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(10,'1.3logx+logy =3. Then, y is  ','(10/x)3 ','(x/10)3  ','(x/10)-3 ','(10/x)1-1/3 ','','','a','','post-utme','2006',1246,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:53'),(11,'Z is partly constant and partly varies inversely as the square of d. when d = 1, z = 11 and when d = 2, z = 5. Find the value of z when d = 4.  ','2','3.5','5','5.5','','','b','','post-utme','2006',1220,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(12,'Expand the expression (x2-2x-3)(x2+x+1).  ','x4-4x2-5x-3  ','–x3-4x2+5x-3','x4-x3-4x2-5x-3  ','x4-4x2-5x -3','','','c','','post-utme','2006',1199,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:54'),(13,'The indefinite integral of the function f(x) = xcosx for any constant k, is ','–cos + sinx +k,  ','xsinx-cosx,   ','xsinx for any constant k,   ','x+sinx+cosx+k','','','c','','post-utme','2006',1188,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(14,'The trigonometric expression cos 2A +sin 2A can be written as    ','cosA (cosA-sinA),    ','Cos2A +sin2A-2sinAcosA,  ','Cos2A + sin2A = Cos2A –sin2A+2sinAcosA','cos2A+sin2A','','','c','','post-utme','2006',1252,'Admin','0000-00-00 00:00:00','2020-08-19 01:45:42'),(15,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is with replacement: ','0.9','1','0.47','0.49','','','d','','post-utme','2006',1234,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:54'),(16,'A bag contains 10 balls of which 3 are red and 7 are white. Two balls are drawn at random. Find the probability of none of the balls is red, if the draw is without replacement ','0.1','0.47','0.42','0.21','','','b','','post-utme','2006',1299,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:54'),(17,'The interior angles of a pentagon are: 180o, 118o, 78o, 84o and  x. The value of x is: ','80o ','108o  ','120o  ','134o','','','a','','post-utme','2007',1236,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(18,'All the vertices of an isosceles triangle lie on a circle and each of the base angles  of the triangle is 65o. The angle subtended at the centre of the circle by the base of the triangle is: ','130o  ','115o  ','50o  ','65o','','','c','','post-utme','2007',1240,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(19,'A square tile measures 20cm by 20cm. How many of such tiles will cover a floor measuring 5m by 4m? ','500','400','320','250','','','a','','post-utme','2007',1235,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:55'),(20,'The volume of a certain sphere is numerically equal to twice its surface area. The diameter of the sphere is: ','6','9','12','','','','c','','post-utme','2007',1241,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(21,'A bearing of 310o, expressed as a compass bearing is: ','N50oW  ','N40oW  ','S40oW  ','S50oW','','','a','','post-utme','2007',1196,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(22,'Which of the following specified sets of data is not necessarily sufficient for the construction of a triangle? ','three angles  ','two sides and a right angle  ','two sides and an included angle ','three sides','','','a','','post-utme','2007',1251,'Admin','0000-00-00 00:00:00','2020-08-19 01:45:44'),(23,'The average age of the three children in a family is 9 years. If the average age of their parent is 39 years, the average age of the whole family is: ','20 years  ','21years  ','24years  ','27years','','','b','','post-utme','2007',1193,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(24,'Evaluate x in base 3 if 41x-22x=17x. ','11','8','12','22','','','d','','post-utme','2007',1380,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(25,'When the price of egg was raised by N2 an egg, the number of eggs which can be bought for N 120 is reduced by 5. The present price of an egg is ','N 6. ','N 7  ','N 8','N10','','','c','','post-utme','2007',1210,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(26,'How long will take a sum of money invested at 8% simple interest to double the original sum? ','8 years  ','10.5years  ','(1years ','12.5years','','','d','','post-utme','2007',1211,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(27,'The journey from Lagos to Ibadan usually takes a motorist 1 hour 30 minutes. By increasing his average speed by 20km/hr, the motorist saves 15 minutes. His usual speed, in Km/hr is ','100','90','85','80','','','a','','post-utme','2007',1204,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(28,'The smallest section of a rod which can be cut 36cm in length is','90cm ','180cm ','360cm  ','540cm.','','','b','','post-utme','2007',1200,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(29,'If x= 0.0012 + 0.00074 + 0.003174, what is the difference between x to 2 decimal places and x to 1 significant figure? ','0.01','0.0051','0.1','0.005','','','d','','post-utme','2007',1230,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(30,'In a survey of 100 students in an institution, 80 students speak Yoruba, 22 speak Igbo, while 6 speak neither Igbo nor Yoruba. How many students speak Yoruba and Igbo? ','96','8','64','12','','','b','','post-utme','2007',1245,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(31,'The expression a 3 + b 3 is equal  to ','(a2 +b)(a-ab+b2 )','(a+b)(a2 –ab+b2 )  ','(a-b2)(a2-  ab+b)','(a­-b)(a2+ab+b2)','','','b','','post-utme','2008',1278,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(32,'Factorize 16(3x +2y)2 -25(a+2b)2  ','(12x + 8y -5a-10b)(12x+8y-5a-10b)','20(3x +2y-a-2b)(3x+2y+a+1-2b) ','(12x +8y+5a+10b)(12x +8y-5a-10b)','20(3x +2y+ a+2b)(3x + 2y+a+2b)','','','a','','post-utme','2008',1197,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(33,'A cone has base radius 4cm and  height 3cm. The area of its curved surface is','12pcm2     ','20pcm2','24pcm2 ','15cm2','','','b','','post-utme','2008',1220,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(34,'A. cylinder has height 4cm and base radius 5cm.its volume to 3 significant figure is  ','314.2cm2 ','31.42 cm2 ','251 4cm2 ','251cm2','','','b','','post-utme','2008',1254,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(35,'A cyclist rode for 30minutes at xkm/hr and due to a breakdown, he had to push the bike for 2hrs at (x – 5) km/hr. if the total distance covered is less than 60km, what is the range of values for x? ','x<14','x<29','x<28','x<20','','','c','','post-utme','2008',1234,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(36,'The expression ax2 + bx takes the value 6 when x = 1 and 10 when x = 2. Find its value when  x = 5       ','10','12','6','.-10','','','a','','post-utme','2008',1272,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(37,'Dividing 2x3 – x2 – 5x + 1 by x  + 3 gives the remainder ','.-3','47','61','-47','','','d','','post-utme','2008',1263,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(38,'The difference of two numbers is 10, while their product is 39. Find these numbers','– 3 and 10 or 13 and 10,','3 and – 10 or 3 and 13,  ','3 and – 3 or 3 and 13,     ',' – 3 and – 13 or   13 and  3 ','','','d','','post-utme','2008',1259,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(39,'The average age of x pupils in a class is 14 years 2 months. A pupils of 15years 2 months joins the class and  the average age is increased  by one month. Find x.      ','12, ',' 6, ','11,','14,','','','c','','post-utme','2008',1291,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(40,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. 13. How many learn both languages? ','60','45','15','120','','','c','','post-utme','2008',1193,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(41,'All the 120 pupils in a school learn Yoruba or Igbo or both. Given that 75 learn Yoruba and 60 learn Igbo. How many learn Igbo only?   ','45','30','15','60','','','a','','post-utme','2008',1225,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:55'),(42,'If the distance covered by a body in time t seconds is s = t2 - 6t2  - 5t, what is its initial velocity?  ','0ms-1    ','-4 ms-1 ','(13t2  - 12t + 5) ms-1   ','5ms-1 ','','','d','','post-utme','2008',1271,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(43,'The trigonometric expression cos2A + sin 2A can be written as:  ','cosA(cosA + sinA)  ','B.cos2A + sin2A – 2sinAcosA,  ','2sinAcosA + cos2A + sin2A,  ','D.cos2A +sinA  – 2sinAcosA','','','c','','post-utme','2008',1160,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(44,'With replacement ','0.9,','1, ','0.4,','0.49','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','d','','post-utme','2008',1198,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(45,'Without replacement ','0.1, ','0.47, ','0.42,   ','0.21','A bag contains 10 balls of which 3 are red 7 are white. Two balls are drawn at random. Find the probability   of none of the balls is red if the draw is','','b','','post-utme','2008',1286,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:56'),(46,'The fair coins are tossed simultaneously. What is the probability of obtaining at least 1 tail turns up? ','1/4','3/4','1/2','1','','','b','','post-utme','2008',1250,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(47,'A regular polygon has each of it angles as 1600. What is the number of sides of the polygon?  ','18,    ','36,       ','9,     ','20','','','a','','post-utme','2008',1234,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(48,'One angle of an octagon is 1000 while the other sides are equal. Find each of these exterior angles. ','800,','600,','1400,           ','400,   ','','','d','','post-utme','2008',1226,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(49,'A sector circle of radius 7.2cm which subtends an angle of 3000 at the centre is used to   form a cone. What is the radius of the base of the cone?. ','6cm ','7cm ','8cm    ','9cm      ','','','a','','post-utme','2009',1160,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(50,'If 32y – 6(3y) = 27, find y ','3','-1','2','-3','','','c','','post-utme','2009',1232,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(51,'An (n-2)2 sided figure has n diagonal, find the number n of diagonal for a 25 sided Figure   ','8','7','6','10','','','b','','post-utme','2009',1257,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(52,'A sum of money was invested at 8% per annum simple interest. If after 4 years, the   money became ','N180 ','N 165 ','N15   ','N 200','','','d','','post-utme','2009',1290,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(53,'Two fair dice are rolled. What is the probability that both show up the same number of point?','1/36 ','7/36 ','½ ','1/6','','','d','','post-utme','2009',1262,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(54,'Find the probability of selecting a figure which is parallelogram from a square, a rectangle, a rhombus, a kite and a trapezium  ','3/5 ','2/5 ','1/5 ','1/5 ','','','a','','post-utme','2009',1350,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(55,'A man kept 6 black, 5 brown and 7 purple shirts in a drawer. What is the probability of his picking a purple shirt with his eyes close ','1/7','7/18 ','11/18 ','7/11','','','b','','post-utme','2009',1252,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(56,'If P varies inversely as V and V varies directly as R2, find the relationship between P and R given that R = 7 when P = 2 ','P = 98R2 ','PR2 = 98 ','P2R = 89 ','P = 1/98R ','','','b','','post-utme','2009',1331,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:55'),(57,'If 7 and 189 are the first and fourth terms of a geometric progression respectively find the sum of the first three terms of the progression ','182','180','91','63','','','c','','post-utme','2009',1311,'Admin','0000-00-00 00:00:00','2020-08-19 01:45:42'),(58,'Find the positive number n such that thrice its square is equal to twelve time the number ','1','4','2','5','','','b','','post-utme','2009',1300,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(59,'Given a regular hexagon, calculate each interior angle of the hexagon ','60','30','120','15','','','c','','post-utme','2009',1274,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:55'),(60,'Factorize 6x2 – 14x – 12 ','2(x + 3)(3x – 2) ','6(x – 2)(x + 1) ','2(x – 3)(3x + 2) ','6(x + 2)(x – 1) ','','','c','','post-utme','2009',1248,'Admin','0000-00-00 00:00:00','2020-08-18 21:23:38'),(61,'The value of (0.303)3 – (0.02)3 is ','0.019','0.0019','0.0268','0.000019','','','c','','post-utme','2009',1273,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(62,'What is the product of 27/5 ¸(3)3 and (1/5) ','5','3','2','1','','','c','','post-utme','2009',1278,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(63,'Find the probability that a number selected at random 40 to 50 is a prime number   ','3/11','5/11','5/10','4/10','','','a','','post-utme','2009',1219,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(64,'If the length of the sides of a right angled triangle are (3x + 1)cm, (3x – 1)cm and xcm, what is x ? ','2','6','18','12','','','d','','post-utme','2009',1206,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(65,'A number of pencils were shared out among peter, Paul and Audu in the ratio 2:3:5 respectively. If Peter got 5, how many were shared? ','15','25','30','50','','','b','','post-utme','2009',1174,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(66,'Solve 4x2 +20x -24 =0',' 1, 6',' -1, -6','6, -1','-6, 1','','','d','','post-utme','2013',1246,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(67,'What is the 15th term of the sequence -3, 2,7,…? ','65','66','68','67','','','d','','post-utme','2013',1203,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:00'),(68,'What is the remainder when x3 +5x2-6x+1 is divided by x-1? ','-1','2','-2','1','','','d','','post-utme','2013',1243,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(69,'If  are the roots of equation 6 +5x –x2 =0, find  x','11','-11','1','-1','','','b','','post-utme','2013',1270,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(70,'Solve the equation  = 25x+4 ','-4, 2 ',' -4,-2 ','4, -2','4, 2','','','a','','post-utme','2013',1209,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:54'),(71,'What is the coordinate of centre of the circle X2+y2+2x-4y =10?  ','(-1,-2)','( 1, 2)',' (-1, 2) ',' (1, -2)','','','d','','post-utme','2013',1156,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:23'),(72,'Solve the equation 3x+1 = 271-x  ','1/2','-1/2','3/4','-3/4','','','a','','post-utme','2013',1254,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(73,'Given f(x) =3+x and g(x) =3-x, find g (f(x))','6','x','-x','0','','','b','','post-utme','2013',1180,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01'),(74,'Differentiate sin (2x-5) with respect to x. ','cos (2x-5)','–cos (2x-5)   ',' 2cos (2x-5)','-2cos (2x-5)','','','c','','post-utme','2013',1254,'Admin','0000-00-00 00:00:00','2020-08-20 11:20:01');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `naijafb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `naijafb` VALUES (1,'What year was Nigeria amalgamated?','1960','1914','1901','1965','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'Who became the first president of Nigeria?','Chief Obafemi Awolowo','Alhaji  Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen. Olusegun Obasanjo','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Who became the first Prime minister of Nigeria?','Chief Obafemi Awolowo','Alhaji Abubaka Tafawa Belewa','Dr. Nnamdi Azikiwe','Gen Olusegun Obasanjo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'Which river is the longest in Africa?','Niger','Congo','Nile','Amazone','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Pick put the odd Nigeria currency','25 kobo','1 kobo','50 kobo','100 kobo','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'What is the full meaning of APC','All progress Congress','Alliance progress Congress','All progressive Congress','Alliance progressive Congress','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full meaning of PDP','Power for the People','People Democracy Party','People Democratic Party','Share the money sharp sharp','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'How old was President Buhari when he won 2015 presidential general election','70','72','73','74','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'About how many million votes did General Buhari use to deaf President Goodluck Jonathan?','10.1 Million','5.1 Million','2.1 million','1.1 million','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Who was the spoken man of APC during the presidential elections?','Liel Mohammed','Lia Mohammed','Bello Mohammed','Adams Mohammed','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who was the spoken man of PDP during the presidential elections?','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'President Buhari is from what state?','Kano','Kaduna','Katsina','Jigawa','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many presidential elections did General Buhari contested in before wining in2015?','3','5','4','2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'The only woman that contested in 2015 presidential election was from which party','ANPP','CPC','AA','KOWA','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'What is the name of first female Nigerian to run for office as a democratic president?','Funmilayo Ransome Kuti','Remi Sonaiya','Oby Ezekweslli','Bola Ara','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'2015 general election INEC chairman was','Attahiru Hammed Jega','Attahiru Mohammed Jega','Attahiru Muhammadu Jega','Atta Muhammadu Jega','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'The official release of 2015 presidential general election results was on','March 30th','March 31th','March 29th','April 4th','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'2015 general presidential election took place on','14-Mar','28-Mar','1-Apr','14-Feb','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,' The spokesperson for President Goodluck Jonathan?s during 2015 election was','Olisa Metuh','Ruben Abati','Fani Kayode','Lia Mohammed','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,' Which country won 2015 FIFA U-17 world cup','Mali','Nigeria','Brazi','Spain','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,' Nigeria became a republic in','1960','1962','1963','1965','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,' What day is regarded as democracy day?','27-May','1-May','29-May','25-May','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,' What day is regarded as workers? day?','27-May','1-May','29-May','25-May','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,' What day is regarded as children?s day?','27-May','1-May','29-May','25-May','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,' In year 2015, Nigeria as an independent state will be how old','50','53','54','55','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' What are the colors of Nigeria Flag?','Green white green','Green and white','Green , green white','Green brown green','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,' Nigeria commercial capital is','Abuja','Port Harcourt','Lagos','Kano','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,' How many states are in Nigeria?','37','36','35','34','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,' Which of the following is not a minister of President Buhari administration 2015','Babatunde fashola','Chris Ngige','Kayode Fayemi','Solomon David','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' How many ministers were appointed by President Buhari Administration?','30','37','32','36','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Which Nigeria army office allegedly looted 32 billion naira?','Gen. Sambo Dasuki','Col. Sambo Dasuki','Major. Sambo Dasuki','Officer Sambo Dasuki','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' The full meaning of EFCC is','Economic and Financial Crimes Conduct','Economic and Finances Crimes Commission','Economic and Financial Crimes Commotion','Economic and Financial Crimes Commission','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' What is the Capital of Jigawa State?','Bornu','Maiduguri','Dutse','Makurdi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,' What is the Capital of Benue State?','Bornu','Maiduguri','Dutse','Makurdi','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,' What is the Capital of Zamfara State?','Bornu','Maiduguri','Gusau','Makudi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `physics` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `solution` text COLLATE utf8_unicode_ci NOT NULL,\n  `examtype` varchar(20) COLLATE utf8_unicode_ci NOT NULL,\n  `examyear` varchar(6) COLLATE utf8_unicode_ci NOT NULL,\n  `requestCount` mediumint(9) NOT NULL DEFAULT '0',\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=130 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `physics` VALUES (1,'A 70kg man ascends a flight of stairs of height 4m in 7s. The power expended by the man is;','40W ','100W ','280W ','400W','','','a','','post-utme','2006',3919,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(2,'A body accelerates uniformly from rest at 6ms-2 for 8 seconds and then decelerates uniformly to rest in the next 5 seconds. The magnitude of the deceleration is: ','9.6ms-2 ','48 ms-2 ',' 24 ms-2 ','39.2 ms-2','','','a','','post-utme','2006',3847,'Admin','0000-00-00 00:00:00','2020-08-19 17:37:34'),(3,'A nail is pulled from a wall with a string tied to the nail. If the string is inclined at an angle of 30oC to the wall and the tension in the string is 50N, the effective force used in pulling the nail is: ','25N ','25√3 N ','50N ','50√3N','','','a','','post-utme','2006',3789,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(4,'If M and R are the mass and radius of the earth respectively and G is the universal gravitational constant, the earth’s gravitational potential at an altitude H above the ground level is: ','A.-GM/H ','–GM/(R+H) ','C. -GM/2H ','D. –GM/(R-H)','','','b','','post-utme','2006',3871,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(5,'Which of the following statements is not true? ','as the slope of an incline plane increases, the velocity ratio decreases, ','the efficiency of an incline plane decreases as the slope increases ','the effort required to push a given load up an incline plane increases as the slope increases','The mechanical advantage of smooth incline plane depends on the ratio of the length to the height of the plane.','','','d','','post-utme','2006',3792,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:27'),(6,'The ice and steam point of a thermometer are 20mm and 100mm respectively: A temperature of 75oC correspond to Ymm on the thermometer. What is Y? ','100mm ','70mm ','80mm ','60mm','','','c','','post-utme','2006',3812,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(7,'  An electric kettle with negligible heat capacity is rated at 2000W, if 2.0kg of water is put in it, how long will it take temperature of water to rise from 20oC to 100oC? (specific heat capacity of water = 4200J/Kg-1K-1) ','336s ','240s ',' 168s ','84s','','','a','','post-utme','2006',3806,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(8,' A quantity of ice –10oc is heated until temperature of heating vessel is 90oc. Which of the following constant is NOT required to determine the quantity of heat supplied to the vessel? ','Specific latent heat of vaporization ','specific heat capacity of ice ','specific latent heat of fusion ','specific heat capacity of water','','','a','','post-utme','2006',3811,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(9,'The scent from a jar of perfume open move through the air molecules by ','evaporation ','osmosis ','diffusion ','Convection','','','c','','post-utme','2006',3960,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(10,'  A convex lens of focal length 10.0cm is used to form a real image which is half the size of the object. How far from the object is the image? ','45cm ','30cm ','15cm ','20cm','','','c','','post-utme','2006',3786,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(11,'An object of height 3.00cm is placed 10cm from a biconvex lens of 15cm, the image of the object is ','real and 3.00cm tall ','virtual and 3.00cm tall ',' virtual and 9.00cm tall ','real and 9.00cm tall','','','c','','post-utme','2006',3855,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(12,'The most suitable type of mirror used for the construction of search light is the: ','concave mirror ','Convex mirror ','Spherical mirror ','Parabolic Mirror','','','d','','post-utme','2006',3895,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(13,'Light wave and ripples of water are similar because both','are longitudinal waves ','have the same velocity ','can be diffracted and refracted ','have the same frequency ','','','c','','post-utme','2006',3914,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:28'),(14,'Three 4Ω resistors were connected in series by Tola, while Ade connected the ','1:02','1:09','1:10','1:15','','','b','','post-utme','2006',3901,'Admin','0000-00-00 00:00:00','2020-08-17 20:51:43'),(15,'A coil of copper wire of N turns is kept rotating between the poles of a magnet  such that the magnetic flux linking the coil changes continuously. Which of the  following statements is TRUE? ','An e.m.f is induced in the coil such that when  the change of flux is positive the e.m.f is positive, and when the change of flux is negative the e.m.f is negative. ','An e.m.f is induced in the coil whose magnitude  is inversely proportional to both the number of turns in the coil and the rate of  change of magnetic flux ','. An e.m.f is set up in the permanent magnet which  reduces the flux in the coil to zero ','A current flows in the coil and e.m.f is set  up proportional to both the rate of change of the flux and the number of turns','','','d','','post-utme','2006',3980,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(16,'The principle of operation of an induction coil is based on ','Ohm’s law ','Ampere’s Law ','Faraday’s Law ','Coulomb’s Law','','','c','','post-utme','2006',3861,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:07'),(17,'Which of the following radiations cannot be deflected by an electric field or ','(i) and (ii) only ','(ii) only ','(iii) and (iv) only ','(i) and (iii) only','','','c','','post-utme','2006',3848,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(18,'The half-life of a radioactive element is 9 days. What fraction of atoms has decayed in 36 days? ','16-Jan','¼ ',' ½ ','15/16','','','d','','post-utme','2006',3823,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(19,'What is the dimension of pressure? ','ML-1T-2 ','MLT-2 ','ML2T-3 ','ML-3','','','a','','post-utme','2007',3888,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(20,'Calculate the length of a displaced pendulum bob that passes its lowest point twice every second. [g=10ms-1] ','.100m ','0.253m ','0.450m ','0.58m','','','b','','post-utme','2007',3823,'Admin','0000-00-00 00:00:00','2020-08-19 17:37:35'),(21,'When a ball rolls on a  smooth level ground, the motion of its centre is ','translational ','Random ','Oscillatory ','Rotational','','','a','','post-utme','2007',3921,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:28'),(22,'A vehicle of mass m is driven by an engine of power P from rest. Find the minimum time it will take to acquire a speed v. ','mv2/p ','mv2/2p ','mv/p ','mv/2p','','','b','','post-utme','2007',3806,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(23,'A box of mass 40kg is being dragged  along by the rope inclined at 60o to the horizontal. The frictional force between the box and the floor is 100N and the tension on the rope is 300N. How much work is done in dragging the box through a distance of 4m? ','680J ','200J ','100J ','400J','','','c','','post-utme','2007',3884,'Admin','0000-00-00 00:00:00','2020-08-17 20:51:43'),(24,'A body is projected from the earth’s surface with the hope of letting it escape from the earth gravitational field. What is the minimum escape velocity?  [Earth’s radius = 6.4 x 103km, g = 10 ms-2]','11.3kms-1 ','13.3kms-1 ','12.3kms-1 ','14.3kms-1 ','','','a','','post-utme','2007',3828,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(25,'A uniform rod PQ of mass 2kg and length of 1m is pivoted at the end P, if a load of 14N is placed at the centre, find the force that should be applied vertically upwards at Q to maintain the rod in equilibrium ','7N ','28N ','68N ','17N','','','d','','post-utme','2007',3846,'Admin','0000-00-00 00:00:00','2020-08-19 01:58:52'),(26,'The energy contained in wire when it is extended by 0.02m by a force 500N is ','104J ','103J ','10J ','5J','','','d','','post-utme','2007',3934,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(27,'What is the acceleration due to gravity ‘g’ on the moon, if ‘g’ is   10ms-2 on the earth?','0.74ms-2 ','0.1ms-2 ','10.0 ms-2 ','1.67 ms-2','','','c','','post-utme','2007',3862,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(28,'A 5kg block is released from rest on a smooth plane inclined at an angle of 30o to the horizontal. What is the acceleration down the plane?  [ g = 10ms-2]','5.0 ms-2 ',' 8.7 ms-2 ','25.0 ms-2 ','5.8 ms-2   ','','','a','','post-utme','2007',3990,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:29'),(29,'A rectangular metal block of volume 10-6m3 at 273K is heated to 573K, if the coefficient of linear expansion is 1.2 x 10-5K-1, the percentage change of its volume is ','1.50%','1.10%','0.10%','0.40%','','','b','','post-utme','2007',3804,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(30,'A temperature scale has a lower fixed point of 40mm and an upper fixed point of 200mm. What is the reading on this scale when the temperature reads 60oc? ','136.omm ','33.3mm ','96.0mm ','36.0mm','','','a','','post-utme','2007',3860,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(31,'A 500kg car was initially at rest travelled with an acceleration of 5ms-2, what is its kinetic energy after 4s ','2.5 x 103J ','105J ','5 x 103J ','5 x 105J','','','b','','post-utme','2007',3854,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(32,'The temperature at which the water vapour in the air saturates the air and begins to condense is','melting point ','triple point ','dew point ','melting point','','','c','','post-utme','2007',3825,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(33,'The period of a simple pendulum will increase by what factor of its extensible length increased by a factor of four ','2','4','2','¼','','','c','','post-utme','2007',3903,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(34,'An air column 10cm in length is trapped into the sealed end of a capillary tube by a 15cm column of mercury with the tube held vertically. On inverting the tube, the air column becomes 15cm long, what is the atmospheric pressure during the experiment? ','76cm ','75cm ','60cm ','70cm','','','b','','post-utme','2007',3815,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(35,'An electric cell has an internal resistance of 2Ω. A current of 0.5A was measured when a resistor of resistance 5Ω was connected across it. Determine the electromotive force of the cell','3.5V ','2.5V ','4.5V ','2.35V','','','a','','post-utme','2007',3964,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:28'),(36,'The speed of light in air is 3 x 108ms-1. If the refractive index of light from air to water is 4/3, calculate the speed of light in water ','2.25 x 108ms-2 ','2.25ms-1 ','4.00ms-1 ','4.33ms-1','','','c','','post-utme','2007',3857,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(37,'It is known that an atomic nucleus comprises of positive charged protons. Which of the following also exist in the nucleus? ','a beta particle ','an Alpha particle ','A neutron ','An electron','','','c','','post-utme','2007',3892,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(38,'The silver wall of a vacuum flask prevents heat loss due to ','conduction ','Convection ','Radiation ','Diffraction','','','c','','post-utme','2007',3838,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(39,'The electromagnetic waves that are sensitive to temperature changes are','ultra-violet rays ','Gamma rays ','infrared-rays ','X-rays','','','c','','post-utme','2007',3787,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(40,'Under constant tension and constant mass per unit length, the note produced by a plucked string is 500Hz when the length of the string is 0.90m, at what length is the frequency 150Hz?','6m ','3m ','5m ','4m','','','b','','post-utme','2007',3912,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(41,'Two bodies P and Q are projected on the same horizontal plane, with the same initial speed but at different angles of 30o and 60o respectively to the horizontal. Neglecting air resistance, what is the ratio of range of P to that of Q? ','1:01','1:√3 ','√3:1 ','1:02','','','a','','post-utme','2007',3855,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(42,'A capacity of 2.0 x 10-11F and an inductor are joined in series. The value of the inductance that will give the circuit a resonant frequency of 200KHz is ','1/16H ','1/8H ','1/64H ','1/32H','','','d','','post-utme','2007',3898,'Admin','0000-00-00 00:00:00','2020-08-19 01:58:53'),(43,'Which of these is not a fundamental S.I unit ','Ampere ','Kelvin ','Seconds ','Radians','','','d','','post-utme','2009',3894,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(44,'If two masses 40g and 60g respectively, are attached firmly to end of a light metre rule, what is the centre of gravity of the system? ','at the mid point of the metre rule ','40cm from the lighter mass ','40cm from the heavier masses ','60cm from the heavier masses ','','','c','','post-utme','2009',3983,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(45,'To find the dept of the sea, a ship send out a second waves and an echo after one second. If the velocity of sound in water is 1500m/s, what is the depth of the sea ','0.75km ','1.50km ','2.20km ','3.00km ','','','a','','post-utme','2009',3727,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(46,'A machine has a velocity ratio of 5, if it requires a 50kg weight to overcome 200kg weight, the efficiency is? ','4%','5%','40%','80%','','','d','','post-utme','2009',3859,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(47,'If the force on a charge of 0.2 Coulomb in an electric field is 4N, then electric intensity of the field is ','0.8','0.8N/C  ','20.0 N/C ','4.2 N/C ','','','c','','post-utme','2009',3838,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(48,'The resistance of a wire depends on ','the length of the wire ','the diameter of the wire ','the temperature of the wire ','All of the above','','','d','','post-utme','2009',3966,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(49,'Which of these is not contained in a dry cell? ','carbon rod ','paste of magnesium dioxide ','paste of ammonium chloride ','zinc case ','','','c','','post-utme','2009',3931,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(50,'When a yellow card is observed through a blue glass, the card would appear as ','black ','green ','red ','white ','','','a','','post-utme','2009',3931,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(51,'A devise that converts sound energy into electrical energy is ','the horn of a motor car ','An AC generator ','A microphone ','Telephone earpiece ','','','c','','post-utme','2009',3846,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(52,'Radio waves have the velocity of 3 x 108ms-1. If a radio station sends out a broadcast on a frequency 800kHz, what is the wavelength of the broadcast? ','375.0m ','267.0m ','240.0m ','37.5m ','','','a','','post-utme','2009',3936,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(53,'The mode of heat transfer which does not require material medium is','conduction ','radiation ','convection ','propagation','','','b','','post-utme','2009',3860,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(54,'The height at which the atmosphere ceases to exist is about 80km, if the atmosphere pressure on the ground level is 760mmHg, the pressure at height of 20km above the ground is ','380mmHg ','570mmHg ','190mmHg ','480mmHg','','','c','','post-utme','2009',3834,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(55,'A simple pendulum 0.6 long has a period of 1.55, what is the period of a similar pendulum 0.4 long in the same direction ','1.4 √1/3s ','1.5 √1/3s ','2.25s ','None of the above','','','d','','post-utme','2009',3832,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(56,'Which of the following  is common to evaporation and boiling, they ','take place at any temperature ','are surface phenomena ','involve change of state ','take place at a definite pressure ','','','b','','post-utme','2009',3889,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(57,'A house hold refrigerator is rated 200 watts. If electricity cost 5k per Kwh, what is the cost of operating it for 20 days ','N4.80  ','N48.00 ','N480.00 ','N4800.00 ','','','a','','post-utme','2009',3935,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(58,'The resistance of a 5m uniform wire of cross sectional area of 0.2 x 106m2 is 0.45. What is the resistivity of the material of the wire ','1.10 x 105 ohms ','4.25 x106Ωm ','2.40 x 107Ωm ','1.70 x 108Ωm ','','','a','','post-utme','2009',3898,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(59,'Which of the following instruments has a pure tone? ','guitar ','Vibrating String ','Turning forks ','Screen ','','','c','','post-utme','2009',3898,'Admin','0000-00-00 00:00:00','2020-08-19 01:58:53'),(60,'Four lenses are being considered for use as a microscope object. Which of the following focal length is most suitable ','-5mm ','+5mm ','5cm ','+5cm ','','','b','','post-utme','2009',3792,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(61,'The product PV where P is pressure and V is a volume has the same unit as ','force ','power ','energy ','acceleration ','','','c','','post-utme','2009',3946,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(62,'The force with which an object is attracted to the earth is called ','acceleration ','mass ','gravity ','weight','','','d','','post-utme','2009',3852,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(63,'The refractive index of a liquid is 1.5, if the velocity of light in a vacuum is 3.0 x 108ms-1, the velocity of light in the liquid is ','1.5 x 108ms-2 ','2.0 x 108ms-1 ','3.1 x 108ms-1','4.5 x 108ms-1 ','','','d','','post-utme','2009',3815,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(64,'A train has an initial velocity of 44m/s and an acceleration of -4m/s2 what is its velocity after 10seconds? ','2m/s ','4m/s ','8m/s ','12m/s ','','','b','','post-utme','2009',3865,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(65,'A man of mass 50kg ascends a flight of stair 5m high in 5 seconds. If acceleration due to gravity is 10ms-2 the power expanded is ','100W ','300W ','250W ','500W','','','d','','post-utme','2009',3958,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(66,'Two strings of the same length and under the same tension give notes of frequency in the ratio 4:1, the masses of the string are in the ratio of ','2:01','1:02','1:04','1:16','','','d','','post-utme','2009',3826,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(67,'Which of the following phenomena cannot be explained by the molecular theory of matter? ','evaporation ','expansion ','conduction ','radiation','','','d','','post-utme','2010',3853,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(68,'The most likely measurement of length of an object using a venier caliper is: ','3.0cm ','3.3cm ','3.33cm ','3.333cm','','','b','','post-utme','2010',3988,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:27'),(69,'If 21g of alcohol of density 0.7gcm-3 is mixed with 10g of water, what would be the density of the resulting mixture? ','780gcm-3 ','0.78gcm-3 ','30gcm-3 ','10gcm-3','','','c','','post-utme','2010',3909,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(70,' For  a particle having an x co-ordinate that varies in time according to the express ion x = 4t -2t2 The instantaneous velocity for of the particle at t = 2.5s is:','12m/s ','6m/s ','0m/s ','10m/s','','','b','','post-utme','2010',3898,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(71,'  A long-jumper leaves the ground at an angle of 20o above the horizontal and at speed of 11m/s. How far does it jumps in the horizontal direction? ','0.384m ','7.94m ','8.45m ','5m','','','d','','post-utme','2010',3855,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(72,'A mass of 0.5kg is attached to one end of a helical spring and produces an extension of 2.5cm. The mass now set into vertically oscillation of amplitude 10mm. The period of oscillation is: (g = 10m/s2) ','0.33s ','100s ','200s ','280s','','','a','','post-utme','2010',3830,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(73,'A boat is passing under a bridge. The deck of the boat is 15m below the bridge. A small package is to be dropped from the bridge onto the deck of the boat is 25m from just below the drop point. What speed is necessary to have the package land in the boat? (g= 9.8ms-2)','17m/s ','14m/s ','1.7m/s ','4.9m/s','','','b','','post-utme','2010',3978,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:28'),(74,'A 0.60kg rubber stopper is whirled in a horizontal circle of 0.80m radius at a rate of 3.0 revolutions per second. What is the tension in the string? ','14N ','80N ','170N ','24N','','','c','','post-utme','2010',3943,'Admin','0000-00-00 00:00:00','2020-08-19 01:58:52'),(75,'An automobile is traveling at 60km/hr. calculate the angular velocity of the 0.35m radius wheels. ','16.67rad/s ','47.6 rad/s ','21 rad/s ','171.4 rad/s','','','b','','post-utme','2010',3849,'Admin','0000-00-00 00:00:00','2020-08-19 17:37:35'),(76,'An air bubble at the bottom of a lake has a volume of 20cm3, pressure of 4.9Pa, and temperature 4oc the bubble rises to the surface where the temperature is 20oc and the pressure 1.0Pa. Find the volume as the bubble reaches the surface. (take 1 atm = 1.0 x 105 N/m2) ','124cm3 ','319cm3 ','60cm3 ','104 cm3','','','d','','post-utme','2010',3900,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(77,'  A gas at constant pressure of 4.0 x 105 Pa is cooled so that its volume decreases from 1.6m3 to 1.2m3. What work is performed by the gas? ','6.4 x 105 J ','3.2 x 105 J  ','1.6 x 105 J ','0.4 x 105 J  ','','','c','','post-utme','2010',3872,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(78,'Highly polished silvery  surfaces are: ','poor absorbers but good emitter of radiation ','good absorbers and good emitters of radiation ','poor emitters but good reflectors of radiation ','poor emitters and poor reflectors of radiation','','','c','','post-utme','2010',3872,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:18'),(79,'A 0.040kg string 0.80m long is stretched and vibrated in a fundamental mode with a frequency of 40Hz. What is the speed (of propagation) of the wave and tension in the string? ','64m/s ','340m/s ','32m/s ','128m/s','','','a','','post-utme','2010',3986,'Admin','0000-00-00 00:00:00','2020-08-19 17:37:35'),(80,'What is the total power output of a source with intensity 0.050 W/m2 at a distance of 3.0m from the source? ','112W ','5.6W ','15W ','30W','','','b','','post-utme','2010',3777,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(81,'The superposition of two or more waves to produce a maximum or zero effect at a point is known as: ','reflection ','refraction ','diffraction ','interference','','','d','','post-utme','2010',3909,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:17'),(82,'The acceleration due to gravity ','increases with increasing altitude ','decreases with increasing altitude ','increases with increase in the square of the altitude ','is not affected by the altitude','','','b','','post-utme','2010',3936,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(83,'Which of the following statements are correct of nuclear fission? During the process \\nI. energy is released \\nII. More neutrons are released than those that cause fission \\nIII. Small nuclei merge into large nuclei \\nIV. There is a loss on mass\\n','II and I only','III','I,II and IV','IV and III','','','c','','post-utme','2010',3958,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(84,'Which of the following statements is not true? ','electric field intensity is force per unit charge. ','electric potential is a vector ','the S.I unit of electric field strength is N/C ','electric field intensity is equal to the potential gradient','','','b','','post-utme','2010',3819,'Admin','0000-00-00 00:00:00','2020-08-19 17:37:33'),(85,'Which of the following about electrolysis is false? ','liquid that conduct electricity and are split up chemically by the current are electrolyzed','the current into the electrolyte by the anode ','the current is taken away from the electrolyte by the cathode ','the container which holds the electrolyte and the electrode is the voltmeter','','','d','','post-utme','2010',3905,'Admin','0000-00-00 00:00:00','2020-08-15 00:59:48'),(86,'Which of the following is not true about the properties of x-rays? ','they are not deflected by magnetic or electric field','they ionized a gas making it a conductor ','they are massive ','they have high penetrating power ','','','c','','post-utme','2010',3923,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:29'),(87,'A transformer is connected to a 240 V supply. The primary coil has 40 turns, and the secondary is found to be 960V. What is the ratio of the number of turns of the primary coil to the number of turns of the secondary coil? ','4:01','1:04','1:06','6:01','','','a','','post-utme','2010',3831,'Admin','0000-00-00 00:00:00','2020-08-19 17:37:35'),(88,'Which of the following is not true about an object that is projected upwards at angle θ? ','the velocity is maximum at the maximum height ','the acceleration along the horizontal direction is zero ','the maximum range (Rmax) for an object moving with speed u is given by u2/g ','the time it takes to get the maximum height is equal to the time it takes to come back to the point of projection','','','a','','post-utme','2010',3880,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(89,'When three coplanar non-parallel forces are in equilibrium i. they can be represented in magnitude and direction by the three sides of a triangle taken in order ii. The lines of action meet at a point iii. The magnitude of any one force equals the magnitude of the other two forces iv. Any one force is the equivalent of the other two. Which of the following statements above are correct? ','i and iii only ','i and ii only','i, ii,iii and iv ','none of them','','','b','','post-utme','2010',3918,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(90,'Which of the following statements is not true about a body performing simple harmonic motion? ','the linear speed is the product of the angular speed and the radius or amplitude ','the linear acceleration is the product of the square of the angular speed and the displacement ','frequency is the number of complete revolution per second made by a vibrating body ','the S.I unit of amplitude is Hertz (Hz)','','','d','','post-utme','2010',3810,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(91,'In the force of gravity on an object of mass m, the gravitational field strength, g, is given by the following equation. ','g = √MF ','g = MF ','g = M√F ','g = F/M.','','','d','','post-utme','2010',3939,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:28'),(92,' A body of mass m slides down an inclined plane with a constant velocity. If the angle of the incline is Ø, the coefficient of kinetic friction between the body and the plane is  ','cot Ø ','cos Ø  ','tan Ø  ','sine Ø','','','c','','post-utme','2011',3912,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(93,'the velocity of a 500 kg car moving long a straight  road, changes from 12 m/s to 20 m/s in 5 sec. calculate the average force moving the car. ','2000N  ','1600N  ','1200N  ','800N','','','d','','post-utme','2011',3815,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(94,'When a 2kg body is at a height 5m above the floor, its velocity  is 4m/s. What is its total energy  at this height? (acceleration due to gravity = 10m/s2)  ','80J  ','00J  ','  116J  ',' 180J','','','c','','post-utme','2011',3892,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:19'),(95,'The density of sea water is 1030kg/m3. What is the pressure at a depth of  80 m below sea surface? Atmospheric pressure is 1.013 x 105 pa and acceleration  due to gravity is 10 m/s2  ','9.25 x  105 pa  ','8.24 105 pa   ','7.23 x 105 pa  ','8.34 x 109 pa','','','a','','post-utme','2011',3863,'Admin','0000-00-00 00:00:00','2020-08-20 07:52:35'),(96,'6000 J of heat is delivered to 10g of dry ice at O0C. What is the final temperature if the container has a heat capacity of 20J/K? (specific heat of water = 4200j/kg.k, latent heat of fusion of ice = 3.33 x 105J/kg)  ','142.90C  ','63.60C  ','43.00C  ','00C','','','c','','post-utme','2011',3765,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(97,'A sample of radioactive substance, whose half-life is 16 days, registers 32 decays per second. How long will it take for the rate of decay to reduce to 2 decays per second? ','80 days  ','64 days  ','48 days  ','32 days','','','b','','post-utme','2011',3949,'Admin','0000-00-00 00:00:00','2020-08-17 10:13:06'),(98,'When white light passes through a triangular prism, the emerging rays of light arranged in order of decreasing angle of deviation are ','red, orange, yellow, green  ','blue, green,  orange, yellow ','red, green, yellow, orange ','blue, green, yellow, orange','','','d','','post-utme','2011',3900,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(99,' The electric field between two parallel plates is E.  A particle of mass m and carrying charge q is released at a point half the distance between the plates. The velocity  of the particle t  seconds after its release is  ','qEt/m ','qEt2  ','mqt2/2E  ','MQT/2E','','','','','post-utme','2011',3850,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(100,'An airplane increases its speed 36 km/h to 360 km/h in 20.0 s. How far does it travel while accelerating.  ','4.4 km     ','1.1 km  ','2.3 km  ','1.0 km','','','b','','post-utme','2011',3784,'Admin','0000-00-00 00:00:00','2020-08-18 09:52:09'),(101,'An object is said to be in simple harmonic motion (SHM) if  ','the acceleration is directly proportional to the displacement and is directed towards the equilibrium position of the object. ','the acceleration is inversely proportional to the displacement and directed toward the equilibrium position  of the object  ','the displacement is directly proportional  to the momentum  and directed toward the equilibrium position of  the object ','the momentum is directly proportional to the displacement and directed toward the equilibrium position of the object.','','','a','','post-utme','2011',3869,'Admin','0000-00-00 00:00:00','2020-08-18 09:04:29'),(102,'A wheel and axle is used to raise a weight of 600n with an effort of 300n. if the radii of the wheel and axle are 50 cm and 10 cm respectively, what is the efficiency of the system      ','40%','50%','20%','10%','','','a','','post-utme','2011',3790,'Admin','0000-00-00 00:00:00','2020-08-19 17:37:34'),(103,'The  term “Viscosity” is used to describe  ','surface tension in fluids ','friction in fluids  ','surface tension in solids  ','moment in solids','','','b','','post-utme','2011',3964,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(104,' A particle is in equilibrium under the action of three forces. One force is 40N towards the west and another is 30N towards the south. What is the third force acting on the body?   ','40N, N530E  ','50N, N370E   ','50N, N530E     ','40N, N370E','','','b','','post-utme','2011',3819,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:28'),(105,'A hydraulic press works on the principle of transmission of   ','force  ','energy  ','volume  ','pressure','','','d','','post-utme','2011',3989,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:28'),(106,'Which of the following is not a thermometer?  ','thermocouple  ','pyrometer  ','hydrometer  ','platinum resistance thermometer. ','','','c','','post-utme','2011',3727,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:17'),(107,'Dry air of column length 10 cm is trapped by a pellet of mercury of length 15 cm, with the open end uppermost. When the capillary is inverted the length of the air column increased to 25 cm while that of mercury remained constant. Calculate the atmospheric pressure (in cm of Hg.)  ','35 cm Hg  ','15 cm Hg  ','20 cm Hg  ','35 cm Hg','','','d','','post-utme','2011',3890,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(108,'Which of the following is not true about a chemical cell?   ','in primary cells the process through which current is generated is irreversible  ','secondary cells can be recharged after they run down by passing a current into the cell in the  reverse direction ','positive ions are attracted to the positive electrode where they become neutralized by acquiring electrons  ','primary cells  can be recharged','','','d','','post-utme','2011',3813,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:16'),(109,'A cigarette lighter in a car is a resistor that, when activated, is connected across the 12 – V battery. If the lighter dissipates 33 W of power, find the current it delivers  to the lighter.  ','9.90 Ω  ','6.60 Ω  ','4.36','17.50Ω','','','c','','post-utme','2011',3876,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(110,'A p-n junction can act as  ','an amplifier  ','a rectifier  ','an inductor ','a capacitor ','','','b','','post-utme','2011',3928,'Admin','0000-00-00 00:00:00','2020-08-19 17:37:35'),(111,'  Calcium has a work function of 19 eV with a wavelength of 150 nm. Calculate the maximum energy of a photo electron emitted. (1 eV = 16.1 x 10-19J, h = 6.6 x 10-34Js)            ','6.35 Ev  ','8.25 cV  ','14.60eV  ','None of above','','','d','','post-utme','2011',4016,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(112,'Sound waves were sent out from a source and after being reflected from  an obstacle were received by a sensor placed beside the source. If the waves were received 10 seconds after they were sent out, calculate  the distance between the  source and the obstacle (speed of sound = 330 m/s) ','990m  ','660m ','1320 m ','None of above','','','d','','post-utme','2011',3874,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:19'),(113,'Two plane mirrors are inclined at angle 45 to another. A ray of light has incident angle of 20 at the surface of the first mirror. The reflected ray is then incident on the second mirror. Calculate the angle of reflection at the second mirror ','65','45','25','20','','','c','','post-utme','2012',3832,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(114,'When the length of the string of a simple pendulum is L its period is 0.5π second is 0.5π seconds. The period when the length is increased to 4L will be ','0.5π seconds','π seconds ','2π seconds ','4π seconds','','','b','','post-utme','2012',3905,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(115,'A uniform meter rule AB has a mass 15g. A 30g mass is suspended at the 10.0cm mark, and another 5g mass is suspended at the 65.0cm mark. Calculate the position of the fulcrum that will keep the meter rule balanced horizontally ','50.0cm ','32.0cm ','27.5cm ','17.9cm ','','','d','','post-utme','2012',3789,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(116,'rectangular block measures 40cm x 25cm and made of material of density 7800kg/m3. Calculate the pressure the block exerts on the floor when it stands on the smallest of its surfaces ','3.12 x 103N/m2 ','3.90 x 103N/m2 ','1.9 x 104N/m2 ','3.12 x 104N/m2','','','b','','post-utme','2012',3976,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:17'),(117,'A ship sinks to the bottom of a 250m deep lake. The atmospheric pressure over the lake is 1.03 x 105 Pa. Taking the density of water in the lake to be 1000 kg/m3, calculate the pressure exerted on the boat. [acceleration due to gravity = 10 m/s2] ','2.60 x 106Pa  ','2.50 x 106Pa ','2.60 x 105Pa ','1.03 x 105Pa','','','a','','post-utme','2012',3795,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(118,'Three knives made of steel, plastic and flat wood respectively are placed on the table for an equal amount of time. The steel knife feels coldest to touched because','The steel knife has the lowest temperature ','The plastic and wooden knives have absorbed more heat from the environment than the steel knife. ','Both wooden and plastic knives have lower densities than the steel ','The steel knife conducts heat faster from the finger than the wooden and plastic knives ','','','d','','post-utme','2012',3843,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(119,'Which of the following quantities is a scalar quantity?','Electric field ','Coulomb force','Electric potential ','Acceleration due to gravity','','','c','','post-utme','2012',3820,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(120,'A car accelerates at 5.0m/s2 for 6s, the travels at the speed attained for 20s, and comes to rest after another 4.0s. Calculate the average velocity of the car during the motion.','25.0m/s','20.0m/s ','1.25m/s ','0.16m/s','','','a','','post-utme','2012',3890,'Admin','0000-00-00 00:00:00','2020-08-19 01:58:52'),(121,'Which of the following quantities is equal to the area under a velocity-time graph?','Acceleration ','Distance travelled ','Average Velocity of motion ','Total time taken.','','','b','','post-utme','2012',3922,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(122,'A 25N force pulls a 2.0kg body up a 300 inclined plane. If force is parallel to the plane and the body moves up the plane at constant velocity. Calculate the magnitude of the frictional force between the body and the plane. [g =10m/s2]','25N','10N','5N','15N','','','d','','post-utme','2012',3921,'Admin','0000-00-00 00:00:00','2020-08-19 01:58:52'),(123,'The process by which solid change directly to vapour is called ','Evaporation','Fusion ','Condensation ','Sublimation ','','','d','','post-utme','2012',3787,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45'),(124,'A coin is at the bottom of a bucket filled with a liquid whose refractive index is 1.35. The coin appears to be 12.0cm below the surface of the liquid. Calculate the depth of the liquid.','16.2cm  ','13.4cm  ','8.9cm  ','5.4cm','','','a','','post-utme','2012',3904,'Admin','0000-00-00 00:00:00','2020-08-19 01:58:51'),(125,'A 3.0cm object is placed 12.0cm in front of bi-convex lens of focal length 8.0cm. Calculate the height of the image of the object.  ','3.0cm ','6.0cm ','12.0cm ','24.0cm','','','d','','post-utme','2012',3819,'Admin','0000-00-00 00:00:00','2020-08-18 09:04:29'),(126,'To use a milli-ammeter to measure current up to 10A, what connection needs to be made?','A small resistance must be connected in parallel with the milli-ammeter ','A small resistance must be connected in series with the milli-ammeter ','A high resistance must be connected in parallel with the milli-ammeter ','The milli-ammeter must be disconnected from the circuit.','','','b','','post-utme','2012',3891,'Admin','0000-00-00 00:00:00','2020-08-20 11:19:04'),(127,'Two 2µF capacitors are connected in parallel. The combination is connected in series with a 6µF capacitor. What is the equivalent capacitor for the combination?','10.0µF  ','8.0µF  ','1.5µF  ','2.4µF','','','c','','post-utme','2012',3838,'Admin','0000-00-00 00:00:00','2020-08-19 21:14:29'),(128,'Five 100-Watt bulbs are put on for 45days during which the home-owner is on vacation. If 1kW-hour of electricity cost N7.50, how much does it cost the home-owner? ','N168.75  ','N90.0  ','N4050.00  ','N810.00','','','d','','post-utme','2012',3885,'Admin','0000-00-00 00:00:00','2020-08-18 09:04:29'),(129,'To convert an a.c generator to d.c generator, one needs to ','Remove the brush touching the slip rings ','Laminate the armature ','Replace the permanent magnets with  iron-core armature. ','replace the slip rings with split rings','','','d','','post-utme','2012',3766,'Admin','0000-00-00 00:00:00','2020-08-20 11:17:45');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `proentertainment` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `progeneral` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `category` varchar(30) COLLATE utf8_unicode_ci NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `progeneral` VALUES (1,'World environmental day happened last week in what day of the week','Tuesday','Wednesday','Thursday','Friday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'World environmental day is on every','5th of June','1st of June','4th of June','3rd of June','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'ECOWAS is now how many years old','30','40','20','35','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'How many people died by Boko Haram since the inception of new government','over 20','over 50','30','50','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Ghana petrol station explosion happened on ','Monday','Tuesday','Wednesday','Friday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Which Nigeria artiste was nominated for Black Canadian award','Yemi Alade','Tu-face','Psquare','Asa','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'The new Nigeria elected nation assembly is the ','7th ','8th ','5th ','6th ','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'President Buhari is to participate in G7 summit when','Friday','Saturday','Sunday','Monday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'President Buhari attended what \\\"G\\\" summit','G8','G7','G16','G10','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'APC house of representative  speaker election was won by','Tinub','Gbajabiamila','Saraki','Dark Mark','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which state reinstate 480 sacked workers','Lagos','Yobe','Sokoto','Ogun','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which Sokoto local government area reinstate 480 sacked workers',' North ','South ','East','West','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'How many petrol tanker truck accident happened last week in Nigeria','1','2','3','4','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Some part of Afghanistan district was captured by','Boko Haram','Taliban','Islamic State','Islamic brother hood','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which country was affect by middle east respiratory syndrome (MERS)','North Korea','South Korea','China','Japan','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria state governor rode Okada(Motor bike) to state house of assembly inauguration','Lagos governor','Ogun governor','Ekiti governor','Rivers governor','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'About how many people where on board in China ship disaster','about 300','about 200','over 400','over 500','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which country in Africa asked Nigeria to help in training of army and police','Sudan','Egypt','South Sudan','Angola','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Which company sue PDP for 70 million campaign debt','Silon Concepts Limited','AIT','Media Technologies','Waat Concepts','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'The UEFA championship was played in','England','Moscow','Berlin','Paris','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Sexual intercourse with children under 11 bill was pass into laws when','5th of June','3rd June','4th of June','1st June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'did President Buhari travelled to Chad last week','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'What day of the week  did President Buhari travelled to Niger last week','Monday','Tuesday','Wednesday','Thursday','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'How many special advisers did the president presented to Nation assembly','3','10','15','12','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What is the name of governor of Kano state','Abdulia Ganduje','El Rfia','Hammed Musa','Atiku Abubaka','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,' How many CBN staff was sent to prison by EFCC ','10','8','7','6','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'When did world economic forum took place last week','4th of June','3rd of June','5th of June','1stof June','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Elected FIFA president resignation news broke out when last week','Monday','Tuesday','Wednesday','Friday','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Health  workers strike enters week ?.. Last week','2','4','1','3','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'The new coach of Real Madrid was assigned on','Monday','Tuesday','Wednesday','Thursday','','c',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Serena Williams wins??.. Grand slam','14','15','18','20','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Who is the third tennis player to win 20 grand slam ','Rafi Nadal','Serena Williams','Venus Williams','Joko','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'How many passenger escape death as Aero aircraft developers fault mid air','100','120','about 100','over 120','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The world oldest cat dies at','12','20','22','27','','d',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What was the score between Nigeria and Hungry in under 20 world cup match','4-0','2-0','1-0','2-2','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Nigeria team is to face which team in the round second round of under 20 world cup','Brazil','Germany','Italy','USA','','b',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'In woman world cup, Germany defeated Ivory coast by','10-0','4-0','7-0','2-0','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'Which team won the UEFA championship title last week','Barcelona','Juventus','Real Madrid','Chelsea','','a',0,0,0,'','','','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `propolitic` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `prosport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `protechy` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `day` int(11) NOT NULL,\n  `month` int(11) NOT NULL,\n  `year` int(11) NOT NULL,\n  `link` text COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `full_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Anonymous',\n  `question_id` mediumint(9) NOT NULL,\n  `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,\n  `message` text COLLATE utf8mb4_unicode_ci,\n  `type` enum('1','2','3','4','5','6','7') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `status` enum('0','1') COLLATE utf8mb4_unicode_ci NOT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question` VALUES (1,'Anonymous',4,'english',NULL,'1','0','2018-08-31 10:33:36','2018-08-31 10:33:36'),(2,'Anonymous',2,'english','You got busted','5','0','2018-08-31 11:05:51','2018-08-31 11:05:51');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `report_question_type` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,\n  `description` varchar(225) COLLATE utf8mb4_unicode_ci DEFAULT NULL,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `report_question_type` VALUES (1,'Question','There is an error in question',NULL,NULL),(2,'Option A','There is an error with option a',NULL,NULL),(3,'Option B','There is an error with option b',NULL,NULL),(4,'Option C','There is an error with option c',NULL,NULL),(5,'Option D','There is an error with option d',NULL,NULL),(6,'Answer','Something is wrong with the answer',NULL,NULL),(7,'Solution','Something is wrong with the solution',NULL,NULL);\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `socialfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `socialfb` VALUES (1,'What year was \\'Africa Queen\\' music track released by Tu-face Idibia?','2001','2002','2003','2004','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'The track \\'African Queen\\' came with what Tu-Face Idibia album?','The Ascension','Face 2 Face','The Unstoppable','Unthinkable','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'Which of the following is not a member of Nigeria music group Plantation Boiz?','Black Face','Tu- Face','Face','Rugged Man','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'What is the full name of Wizkid?','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Ibrahim Bale','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'What age did Wizkid first release an album?','16 years','14 years','11 years','21 years','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'Who was Wizkid first album producer?','OJB Jezreel','Kenins Music','Chocolate City','Mo? hit records','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'What is the full name of D\\'Banj','Balogun  Ayodeji','Dapo Oyebanjo','Kunle Bamitefa','Daniel Oyebanji','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'What year was D\\'Banj  first album released?','2002','2005','2001','2004','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Half of the yellow sun was release in what year?','2010','2011','2012','2013','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a popular Nollywood actor?','Pete Edochie','Richard Mofe','Ramsey Nouah','Desmond Ellia','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'What year did Michael Jackson die?','2007','2008','2009','2006','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Which of the following is not a popular Nollywood actress?','Genevieve Nnaji','Omotola Keinde','Mercy Johnson','Mary Idoche','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'What is the full name of Nigeria comedian Basket Mouth?','Bright Okpochia','Bright Okpocha','Bright Okpoch','Brights Okpocha','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'What is the full name of Nigeria comedian with stage name Ali Baba?','Atunde Alleluya Akporobomerere','Atunyota Alleluya Akporobomere','Babatunde Akporobomerere','Atunyota Alleluya Akporobomerere','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Ali Baba a Nigeria comedian was born in what state?','Rivers','Delta','Lagos','Ogun','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'What is the full meaning of NEA','National Entertainment Awards','Nigerian Entertainment Awards','Nigerian Entertainment Award','National Entertainment Award','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'Nigerian Entertainment Award (NEA) 2015 was held in','Lagos Nigeria','Abuja Nigeria','New York USA','London Britain','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Who won the best Female act award in Nigerian Entertainment Award (NEA)  2015','Cynthia Morgan','Yemi Alade','Seyi Shay','Tiwa savage','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'Who won the best Film Director of the Year (Indigenous Films) in Nigerian Entertainment Award (NEA)  2015','Kunle Afolayan','Alex Konstantaras','Olanrewaju Abiodun','Chiwetel Ejiofor','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Best Male act was given to ??.. in Nigerian Entertainment Award (NEA) 2015','Olamide','Davido','Wizkid','Shizzi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Best Rap act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Best Pop act was given to ?.. in Nigerian Entertainment Award (NEA)  2015','Olamide','Davido','Wizkid','Shizz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Best Afrobeat Act was given to ?. In Nigerian Entertainment Award (NEA)  2015','2face Idibia','Femi Kuti','Baba Fryo','Alariwo','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Olamide life in concert \\'Beast Mode \\'hold this year on','March 10 2015','December 27 2015','December 31 2015','March 21 2015','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Which of the following guest artiste will not feature in Olamide life concert 2015','Davido','D?Banji','Wizkid','Olamide','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'what is the full meaning of KADAMFEST','Kaduna Music Festival','Kano  Music Festival','Kaduna  Music Festivals','Kano Music Festivals','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What edition is Miss World 2015','60th','61th','62nd','63rd','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'Which country hosted Miss World 2015 edition','China','Japan','Singapore','India','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'What is the date of Miss World 2015 pageant?','10-Dec-15','16-Dec-15','19-Dec-15','21-Dec-15','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,' Which country won Miss World 2015 pageant?','China','South Africa','Spain','Norway','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,' Tiwa Savage is how old in 2015','28','30','35','32','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'Which of this song was release by Wizkid in 2015','On top matter','Love my babe','Expensive shit','Mummy mi','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'Who was the most nominated artiste for Tooxclusive award 2015','Davido','Olamide','Di?ja','Korede bello','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'Who is the fourth highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'Who is the Second highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'Who is the third highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'Who is the highest earning celeb after death?','Michel Jackson','Bob Marley','Elvis Presley','Charles Schulz','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'30 days in Alanta was released on','31-Oct-15','31-Oct-14','1-May-15','1-May-14','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is Miss Nollywood Queen 2015','Miss Gwendolyn Okutele','Miss Adebayo Kemi','Miss Basira Malla','Miss Obichi Emeka','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' Miss Nollywood Queen 2015 is from what state','Enugu','Delta','Ondo','Lagos','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'What is the name of Olamide ablum released in 2015','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' What is the full meaning of SMD','Super Michael Data','Supreme Mavin Dynasty','Shoki Makossa Dance','Simple Motion Dance','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Who started SMD?','Olamide','Davido','P-Square','Don Jazzy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' What is the name of Olamide ablum released in 2012','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,' What is the name of Olamide ablum release in 2014','Rapsodi','YBNL','Street OT','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'\\'Yemi my lover\\' is in which Olamide album','Rapsodi','YBNL','Baddest Guy Ever Liveth','Eyan Mayweather','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'What is the full name of Phyno','Godfrey Nelson','Azubuike Chibuzo Nelson','Phillip Onome','Paul Nwoko Godfrey','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(48,' Which of this artiste is not a Glo ambassador','D?Banj','Peter and Paul Okoye (PSquare)','Tu Face ','Wande Coal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(49,'Which of the following artiste is not a airtel ambassador','Phyno','Tu Face','Wande Coal','Patoranking','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(50,'Which Nigeria actress was a face of Lux?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Chika Ike','Damilola Adegite','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(51,' Which of the following is not a designer?','KC','Raphael loran','DandG','Ball berry','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(52,'Who was the former model that turned blogger?','Omotola  Jalade Ekeinde','Genevieve Nnaji','Linda Ikeji','Damilola Adegite','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(53,'Who was the founder of Mary Kay Cosmetics?','Mary Kay','Mary Kay Anna','Mary Kay Anima','Mary Kay Ash','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sport` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sport` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','Sir Ali Ferguson.','Alex Ferguson.','Sir Alex Ferguson','Sir Alex Fergson','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'Which of the following club is currently (2014/2015) in English Championship Division?','Leicester City FC','Burnley FC','Middlesbrough FC','Queens Park Ran FC','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'What is the name of the highest goal scorer in 2014 Nigeria Premier League','Ahmed Musa','Victor Namo','Mfon Udoh','Chibuzor Ozurumba','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'How many rings are in the Olympic colours?','6','5','4','3','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n/*!40101 SET @saved_cs_client     = @@character_set_client */;\n/*!40101 SET character_set_client = utf8 */;\nCREATE TABLE `sportfb` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,\n  `question` text COLLATE utf8_unicode_ci NOT NULL,\n  `optionA` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionB` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionC` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `optionD` varchar(225) COLLATE utf8_unicode_ci NOT NULL,\n  `image` text COLLATE utf8_unicode_ci NOT NULL,\n  `section` text COLLATE utf8_unicode_ci NOT NULL,\n  `answer` varchar(10) COLLATE utf8_unicode_ci NOT NULL,\n  `authorised` varchar(50) COLLATE utf8_unicode_ci NOT NULL,\n  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;\n/*!40101 SET character_set_client = @saved_cs_client */;\nINSERT INTO `sportfb` VALUES (1,'What is the name of England club football second division?','League 1','League 2','Championship','Division 2','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'What is the name of club football third division in England?','League 1','League 2','Championship','Division 1','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'The English Premier League is also called','League 1','League 2','Top Division','Division 1','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'When was the English Premier League official formed?','1992','1990','1988','1986','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'Who was the last successful Manchester?United Coach?','?Sir Ali Ferguson.','?Alex Ferguson.','?Sir Alex Ferguson','?Sir Alex Fergson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'How many times did Manchester United won the English Premier League under Sir Alex Ferguson?','10','12','11','8','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'Which club is the most successful in England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'Which English club won the most title outside of England?','Chelsea FC','Manchester United FC','Liverpool FC','Arsenal FC ','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'What is the name of Liverpool FC stadium?','Stamford Bridge','Old Trafford','Anfield','Emirates','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'Which of the following is not a football club in Spain?','Real Madrid','Eibar','Brighton & Hove Albion','Villarreal','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'Who won the UEFA Champions League in 2012?','Real Madrid FC','Liverpool FC','Bayern Munich FC','Chelsea FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'Bayern Munich is a football club from which country?','Spain','Germany','Italy','Belgium','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'Which team won the UEFA Champions League the most?','Bayern Munich FC','Real Madrid FC','Milan FC','Liverpool FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'Which Nigeria football club won the Premiership title the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'Which Nigeria football club won the Premiership title back ?to-back the most?','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'Which of the following is not a club in Nigeria Premier League?','Kano FC','Nasarawa United  FC','Akwa United FC','Heart Land FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'When was the Nigeria Premier League Founded','1975','1990','2003','2000','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'Which of the following is not a domestic cup in Nigeria Premier League?','Nigerian Shield Cup','FA Cup','Super 4','Nigerian FA Cup','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'What sport is the most physically demanding sport?','Football','Running','Boxing','Basket ball','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'How many rings are in the Olympic colours?','6','5','4','3','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'Which of the following colours is not present in the Olympic rings?','Black','Red','Blue','Purple ','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'Which Olympic sport is associated with first Persian invasions of Greece?','Badminton','Javelin ','Marathon','Discus','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'Who was the first Nigeria athletic to win gold medal in the Olympics','Mary Oyali-Omagbemi','Chioma Ajunwa-opara','Blessing Okagbare','Kanu Nwankwo','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'What year did Nigeria first won gold medal in the Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'What year did Nigeria first won gold medal in football event in Olympics','1996','2000','1992','1994','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'After football what sport is most popular in Nigeria?','Running','Dancing','Boxing','Karate','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'Pick out the odd one','100 meter race','200 meter race','300 meter race','400 meter race','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'What sport did Haruna Lukeman plays?','Football','Basketball','Beach soccer','Table tennis','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'When was Jose Mourinho sacked by Chelsea in 2015','15-Dec','5-Dec','27-Dec','17-Dec','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'Which coach is regarded as the Special One','Pep Guardiola','Raphael Benitez','Jose  Mourinho','?Sir Alex Ferguson','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'Which club in Nigeria premier league has the longest winning run in 2015','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,' Which club in Nigeria premier league has the longest unbeating run in','Warri Wolves FC','Kano Pillars FC','Enyimba FC','Shooting Star FC','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,' The 2015 Nigeria Professional Football League was won by','Kano Pillars FC','Enyimba FC','Shooting Star FC','Heart Land FC','','','b','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'The 2015 Nigeria Professional Football League second place winner was','Kano Pillars FC','Enyimba FC','Shooting Star FC','Warri Wolves FC','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'What is the name of Nigeria second football division','National Division league','Nigeria Second division league','Nigeria National league','Second National league','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'which of the following 2015 Nigeria Professional Football League was relegated','El-Kanemi Warriors','Enugu Rangers','Kwara United?','Abia Warriors','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'which of the following 2015 Nigeria Professional Football League was not relegated','Kwara United?','Bayelsa United','Sharks','El-Kanemi Warriors','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,' Kano Pillars\\' 12-year undefeated streak at home came to an end in a 2-1 loss to','Nasarawa United','Wikki Tourists','Kwara United?','Enyimba FC','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'Who is the president of Nigeria football federation?','Amaju Pinnick','Alhaji Ibrahim Galadim','Alh. Aminu Maigari','Alhaji Ibrahim Pinnick','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,' What is the full meaning of NFF','Nigeria Football Federation','Nation Football Federation','Nigerian Football Federation','National Football Federation','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'Which of the following is not a bet company in Nigeria','Bea Bet','Naira Bet','Surebet247 ','Bet9ja','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,' Which of the following is the first sport betting website in Nigeria','Surebet247','360bet','Bet365NAIJA','Naira Bet','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,' Leicester City F.C. is also known as ','Lei City','The Eagle','The Foxes','Blue team','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,' Leicester City F.C. is also known as the following expect','The Foxes','The Blues','The City ','Blue Army','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'Who is the current hit man for Leicester City','Jamie Vardy','Wes Morgan','Danny Simpson','Eden Hazard','','','a','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'Who is the current highest goal scorer as of December 2015 in English Premier League','Wilfried Bony','Robin van Persie','Diafra Sakho','Jamie Vardy','','','d','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'Who won the Ballon D?or cup 2015','Lionel Messi ','Neymar ','Cristiano Ronaldo','Robin van Persie','','','c','Admin','0000-00-00 00:00:00','0000-00-00 00:00:00');\n"
  },
  {
    "path": "storage/framework/.gitignore",
    "content": "compiled.php\nconfig.php\ndown\nevents.scanned.php\nmaintenance.php\nroutes.php\nroutes.scanned.php\nschedule-*\nservices.json\n"
  },
  {
    "path": "storage/framework/cache/.gitignore",
    "content": "*\n!data/\n!.gitignore\n"
  },
  {
    "path": "storage/framework/sessions/.gitignore",
    "content": "*\n!.gitignore\n"
  },
  {
    "path": "storage/framework/testing/.gitignore",
    "content": "*\n!.gitignore\n"
  },
  {
    "path": "storage/framework/views/.gitignore",
    "content": "*\n!.gitignore\n"
  },
  {
    "path": "storage/logs/.gitignore",
    "content": "*\n!.gitignore\n"
  },
  {
    "path": "tests/CreatesApplication.php",
    "content": "<?php\n\nnamespace Tests;\n\nuse Illuminate\\Contracts\\Console\\Kernel;\n\ntrait CreatesApplication\n{\n    /**\n     * Creates the application.\n     *\n     * @return \\Illuminate\\Foundation\\Application\n     */\n    public function createApplication()\n    {\n        $app = require __DIR__.'/../bootstrap/app.php';\n\n        $app->make(Kernel::class)->bootstrap();\n\n        return $app;\n    }\n}\n"
  },
  {
    "path": "tests/Feature/ExampleTest.php",
    "content": "<?php\n\nnamespace Tests\\Feature;\n\nuse Illuminate\\Foundation\\Testing\\RefreshDatabase;\nuse Tests\\TestCase;\n\nclass ExampleTest extends TestCase\n{\n    /**\n     * A basic test example.\n     *\n     * @return void\n     */\n    public function test_example()\n    {\n        $response = $this->get('/');\n\n        $response->assertStatus(200);\n    }\n}\n"
  },
  {
    "path": "tests/TestCase.php",
    "content": "<?php\n\nnamespace Tests;\n\nuse Illuminate\\Foundation\\Testing\\TestCase as BaseTestCase;\n\nabstract class TestCase extends BaseTestCase\n{\n    use CreatesApplication;\n}\n"
  },
  {
    "path": "tests/Unit/ExampleTest.php",
    "content": "<?php\n\nnamespace Tests\\Unit;\n\nuse PHPUnit\\Framework\\TestCase;\n\nclass ExampleTest extends TestCase\n{\n    /**\n     * A basic test example.\n     *\n     * @return void\n     */\n    public function test_example()\n    {\n        $this->assertTrue(true);\n    }\n}\n"
  },
  {
    "path": "webpack.mix.js",
    "content": "const mix = require('laravel-mix');\n\n/*\n |--------------------------------------------------------------------------\n | Mix Asset Management\n |--------------------------------------------------------------------------\n |\n | Mix provides a clean, fluent API for defining some Webpack build steps\n | for your Laravel applications. By default, we are compiling the CSS\n | file for the application as well as bundling up all the JS files.\n |\n */\n\nmix.js('resources/js/app.js', 'public/js')\n    .postCss('resources/css/app.css', 'public/css', [\n        //\n    ]);\n"
  }
]